--- linux-4.8.0.orig/Documentation/ABI/testing/debugfs-aufs +++ linux-4.8.0/Documentation/ABI/testing/debugfs-aufs @@ -0,0 +1,50 @@ +What: /debug/aufs/si_/ +Date: March 2009 +Contact: J. R. Okajima +Description: + Under /debug/aufs, a directory named si_ is created + per aufs mount, where is a unique id generated + internally. + +What: /debug/aufs/si_/plink +Date: Apr 2013 +Contact: J. R. Okajima +Description: + It has three lines and shows the information about the + pseudo-link. The first line is a single number + representing a number of buckets. The second line is a + number of pseudo-links per buckets (separated by a + blank). The last line is a single number representing a + total number of psedo-links. + When the aufs mount option 'noplink' is specified, it + will show "1\n0\n0\n". + +What: /debug/aufs/si_/xib +Date: March 2009 +Contact: J. R. Okajima +Description: + It shows the consumed blocks by xib (External Inode Number + Bitmap), its block size and file size. + When the aufs mount option 'noxino' is specified, it + will be empty. About XINO files, see the aufs manual. + +What: /debug/aufs/si_/xino0, xino1 ... xinoN +Date: March 2009 +Contact: J. R. Okajima +Description: + It shows the consumed blocks by xino (External Inode Number + Translation Table), its link count, block size and file + size. + When the aufs mount option 'noxino' is specified, it + will be empty. About XINO files, see the aufs manual. + +What: /debug/aufs/si_/xigen +Date: March 2009 +Contact: J. R. Okajima +Description: + It shows the consumed blocks by xigen (External Inode + Generation Table), its block size and file size. + If CONFIG_AUFS_EXPORT is disabled, this entry will not + be created. + When the aufs mount option 'noxino' is specified, it + will be empty. About XINO files, see the aufs manual. --- linux-4.8.0.orig/Documentation/ABI/testing/sysfs-aufs +++ linux-4.8.0/Documentation/ABI/testing/sysfs-aufs @@ -0,0 +1,31 @@ +What: /sys/fs/aufs/si_/ +Date: March 2009 +Contact: J. R. Okajima +Description: + Under /sys/fs/aufs, a directory named si_ is created + per aufs mount, where is a unique id generated + internally. + +What: /sys/fs/aufs/si_/br0, br1 ... brN +Date: March 2009 +Contact: J. R. Okajima +Description: + It shows the abolute path of a member directory (which + is called branch) in aufs, and its permission. + +What: /sys/fs/aufs/si_/brid0, brid1 ... bridN +Date: July 2013 +Contact: J. R. Okajima +Description: + It shows the id of a member directory (which is called + branch) in aufs. + +What: /sys/fs/aufs/si_/xi_path +Date: March 2009 +Contact: J. R. Okajima +Description: + It shows the abolute path of XINO (External Inode Number + Bitmap, Translation Table and Generation Table) file + even if it is the default path. + When the aufs mount option 'noxino' is specified, it + will be empty. About XINO files, see the aufs manual. --- linux-4.8.0.orig/Documentation/ABI/testing/sysfs-class-cxl +++ linux-4.8.0/Documentation/ABI/testing/sysfs-class-cxl @@ -220,8 +220,11 @@ Date: October 2014 Contact: linuxppc-dev@lists.ozlabs.org Description: write only - Writing 1 will issue a PERST to card which may cause the card - to reload the FPGA depending on load_image_on_perst. + Writing 1 will issue a PERST to card provided there are no + contexts active on any one of the card AFUs. This may cause + the card to reload the FPGA depending on load_image_on_perst. + Writing -1 will do a force PERST irrespective of any active + contexts on the card AFUs. Users: https://github.com/ibm-capi/libcxl What: /sys/class/cxl//perst_reloads_same_image (not in a guest) --- linux-4.8.0.orig/Documentation/DMA-attributes.txt +++ linux-4.8.0/Documentation/DMA-attributes.txt @@ -126,3 +126,20 @@ NOTE: At the moment DMA_ATTR_ALLOC_SINGLE_PAGES is only implemented on ARM, though ARM64 patches will likely be posted soon. + +DMA_ATTR_NO_WARN +---------------- + +This tells the DMA-mapping subsystem to suppress allocation failure reports +(similarly to __GFP_NOWARN). + +On some architectures allocation failures are reported with error messages +to the system logs. Although this can help to identify and debug problems, +drivers which handle failures (eg, retry later) have no problems with them, +and can actually flood the system logs with error messages that aren't any +problem at all, depending on the implementation of the retry mechanism. + +So, this provides a way for drivers to avoid those error messages on calls +where allocation failures are not a problem, and shouldn't bother the logs. + +NOTE: At the moment DMA_ATTR_NO_WARN is only implemented on PowerPC. --- linux-4.8.0.orig/Documentation/cgroups/namespace.txt +++ linux-4.8.0/Documentation/cgroups/namespace.txt @@ -0,0 +1,142 @@ + CGroup Namespaces + +CGroup Namespace provides a mechanism to virtualize the view of the +/proc//cgroup file. The CLONE_NEWCGROUP clone-flag can be used with +clone() and unshare() syscalls to create a new cgroup namespace. +The process running inside the cgroup namespace will have its /proc//cgroup +output restricted to cgroupns-root. cgroupns-root is the cgroup of the process +at the time of creation of the cgroup namespace. + +Prior to CGroup Namespace, the /proc//cgroup file used to show complete +path of the cgroup of a process. In a container setup (where a set of cgroups +and namespaces are intended to isolate processes), the /proc//cgroup file +may leak potential system level information to the isolated processes. + +For Example: + $ cat /proc/self/cgroup + 0:cpuset,cpu,cpuacct,memory,devices,freezer,hugetlb:/batchjobs/container_id1 + +The path '/batchjobs/container_id1' can generally be considered as system-data +and its desirable to not expose it to the isolated process. + +CGroup Namespaces can be used to restrict visibility of this path. +For Example: + # Before creating cgroup namespace + $ ls -l /proc/self/ns/cgroup + lrwxrwxrwx 1 root root 0 2014-07-15 10:37 /proc/self/ns/cgroup -> cgroup:[4026531835] + $ cat /proc/self/cgroup + 0:cpuset,cpu,cpuacct,memory,devices,freezer,hugetlb:/batchjobs/container_id1 + + # unshare(CLONE_NEWCGROUP) and exec /bin/bash + $ ~/unshare -c + [ns]$ ls -l /proc/self/ns/cgroup + lrwxrwxrwx 1 root root 0 2014-07-15 10:35 /proc/self/ns/cgroup -> cgroup:[4026532183] + # From within new cgroupns, process sees that its in the root cgroup + [ns]$ cat /proc/self/cgroup + 0:cpuset,cpu,cpuacct,memory,devices,freezer,hugetlb:/ + + # From global cgroupns: + $ cat /proc//cgroup + 0:cpuset,cpu,cpuacct,memory,devices,freezer,hugetlb:/batchjobs/container_id1 + + # Unshare cgroupns along with userns and mountns + # Following calls unshare(CLONE_NEWCGROUP|CLONE_NEWUSER|CLONE_NEWNS), then + # sets up uid/gid map and execs /bin/bash + $ ~/unshare -c -u -m + # Originally, we were in /batchjobs/container_id1 cgroup. Mount our own cgroup + # hierarchy. + [ns]$ mount -t cgroup cgroup /tmp/cgroup + [ns]$ ls -l /tmp/cgroup + total 0 + -r--r--r-- 1 root root 0 2014-10-13 09:32 cgroup.controllers + -r--r--r-- 1 root root 0 2014-10-13 09:32 cgroup.populated + -rw-r--r-- 1 root root 0 2014-10-13 09:25 cgroup.procs + -rw-r--r-- 1 root root 0 2014-10-13 09:32 cgroup.subtree_control + +The cgroupns-root (/batchjobs/container_id1 in above example) becomes the +filesystem root for the namespace specific cgroupfs mount. + +The virtualization of /proc/self/cgroup file combined with restricting +the view of cgroup hierarchy by namespace-private cgroupfs mount +should provide a completely isolated cgroup view inside the container. + +In its current form, the cgroup namespaces patcheset provides following +behavior: + +(1) The 'cgroupns-root' for a cgroup namespace is the cgroup in which + the process calling unshare is running. + For ex. if a process in /batchjobs/container_id1 cgroup calls unshare, + cgroup /batchjobs/container_id1 becomes the cgroupns-root. + For the init_cgroup_ns, this is the real root ('/') cgroup + (identified in code as cgrp_dfl_root.cgrp). + +(2) The cgroupns-root cgroup does not change even if the namespace + creator process later moves to a different cgroup. + $ ~/unshare -c # unshare cgroupns in some cgroup + [ns]$ cat /proc/self/cgroup + 0:cpuset,cpu,cpuacct,memory,devices,freezer,hugetlb:/ + [ns]$ mkdir sub_cgrp_1 + [ns]$ echo 0 > sub_cgrp_1/cgroup.procs + [ns]$ cat /proc/self/cgroup + 0:cpuset,cpu,cpuacct,memory,devices,freezer,hugetlb:/sub_cgrp_1 + +(3) Each process gets its CGROUPNS specific view of /proc//cgroup +(a) Processes running inside the cgroup namespace will be able to see + cgroup paths (in /proc/self/cgroup) only inside their root cgroup + [ns]$ sleep 100000 & # From within unshared cgroupns + [1] 7353 + [ns]$ echo 7353 > sub_cgrp_1/cgroup.procs + [ns]$ cat /proc/7353/cgroup + 0:cpuset,cpu,cpuacct,memory,devices,freezer,hugetlb:/sub_cgrp_1 + +(b) From global cgroupns, the real cgroup path will be visible: + $ cat /proc/7353/cgroup + 0:cpuset,cpu,cpuacct,memory,devices,freezer,hugetlb:/batchjobs/container_id1/sub_cgrp_1 + +(c) From a sibling cgroupns (cgroupns root-ed at a different cgroup), cgroup + path relative to its own cgroupns-root will be shown: + # ns2's cgroupns-root is at '/batchjobs/container_id2' + [ns2]$ cat /proc/7353/cgroup + 0:cpuset,cpu,cpuacct,memory,devices,freezer,hugetlb:/../container_id2/sub_cgrp_1 + + Note that the relative path always starts with '/' to indicate that its + relative to the cgroupns-root of the caller. + +(4) Processes inside a cgroupns can move in-and-out of the cgroupns-root + (if they have proper access to external cgroups). + # From inside cgroupns (with cgroupns-root at /batchjobs/container_id1), and + # assuming that the global hierarchy is still accessible inside cgroupns: + $ cat /proc/7353/cgroup + 0:cpuset,cpu,cpuacct,memory,devices,freezer,hugetlb:/sub_cgrp_1 + $ echo 7353 > batchjobs/container_id2/cgroup.procs + $ cat /proc/7353/cgroup + 0:cpuset,cpu,cpuacct,memory,devices,freezer,hugetlb:/../container_id2 + + Note that this kind of setup is not encouraged. A task inside cgroupns + should only be exposed to its own cgroupns hierarchy. Otherwise it makes + the virtualization of /proc//cgroup less useful. + +(5) Setns to another cgroup namespace is allowed when: + (a) the process has CAP_SYS_ADMIN in its current userns + (b) the process has CAP_SYS_ADMIN in the target cgroupns' userns + No implicit cgroup changes happen with attaching to another cgroupns. It + is expected that the somone moves the attaching process under the target + cgroupns-root. + +(6) When some thread from a multi-threaded process unshares its + cgroup-namespace, the new cgroupns gets applied to the entire process (all + the threads). For the unified-hierarchy this is expected as it only allows + process-level containerization. For the legacy hierarchies this may be + unexpected. So all the threads in the process will have the same cgroup. + +(7) The cgroup namespace is alive as long as there is atleast 1 + process inside it. When the last process exits, the cgroup + namespace is destroyed. The cgroupns-root and the actual cgroups + remain though. + +(8) Namespace specific cgroup hierarchy can be mounted by a process running + inside cgroupns: + $ mount -t cgroup -o __DEVEL__sane_behavior cgroup $MOUNT_POINT + + This will mount the unified cgroup hierarchy with cgroupns-root as the + filesystem root. The process needs CAP_SYS_ADMIN in its userns and mntns. --- linux-4.8.0.orig/Documentation/device-mapper/dm-raid.txt +++ linux-4.8.0/Documentation/device-mapper/dm-raid.txt @@ -309,3 +309,4 @@ with a reshape in progress. 1.9.0 Add support for RAID level takeover/reshape/region size and set size reduction. +1.9.1 Fix activation of existing RAID 4/10 mapped devices --- linux-4.8.0.orig/Documentation/devicetree/bindings/powerpc/opal/power-mgt.txt +++ linux-4.8.0/Documentation/devicetree/bindings/powerpc/opal/power-mgt.txt @@ -0,0 +1,118 @@ +IBM Power-Management Bindings +============================= + +Linux running on baremetal POWER machines has access to the processor +idle states. The description of these idle states is exposed via the +node @power-mgt in the device-tree by the firmware. + +Definitions: +---------------- +Typically each idle state has the following associated properties: + +- name: The name of the idle state as defined by the firmware. + +- flags: indicating some aspects of this idle states such as the + extent of state-loss, whether timebase is stopped on this + idle states and so on. The flag bits are as follows: + +- exit-latency: The latency involved in transitioning the state of the + CPU from idle to running. + +- target-residency: The minimum time that the CPU needs to reside in + this idle state in order to accrue power-savings + benefit. + +Properties +---------------- +The following properties provide details about the idle states. These +properties are exposed as arrays. Each entry in the property array +provides the value of that property for the idle state associated with +the array index of that entry. + +If idle-states are defined, then the properties +"ibm,cpu-idle-state-names" and "ibm,cpu-idle-state-flags" are +required. The other properties are required unless mentioned +otherwise. The length of all the property arrays must be the same. + +- ibm,cpu-idle-state-names: + Array of strings containing the names of the idle states. + +- ibm,cpu-idle-state-flags: + Array of unsigned 32-bit values containing the values of the + flags associated with the the aforementioned idle-states. The + flag bits are as follows: + 0x00000001 /* Decrementer would stop */ + 0x00000002 /* Needs timebase restore */ + 0x00001000 /* Restore GPRs like nap */ + 0x00002000 /* Restore hypervisor resource from PACA pointer */ + 0x00004000 /* Program PORE to restore PACA pointer */ + 0x00010000 /* This is a nap state (POWER7,POWER8) */ + 0x00020000 /* This is a fast-sleep state (POWER8)*/ + 0x00040000 /* This is a winkle state (POWER8) */ + 0x00080000 /* This is a fast-sleep state which requires a */ + /* software workaround for restoring the */ + /* timebase (POWER8) */ + 0x00800000 /* This state uses SPR PMICR instruction */ + /* (POWER8)*/ + 0x00100000 /* This is a fast stop state (POWER9) */ + 0x00200000 /* This is a deep-stop state (POWER9) */ + +- ibm,cpu-idle-state-latencies-ns: + Array of unsigned 32-bit values containing the values of the + exit-latencies (in ns) for the idle states in + ibm,cpu-idle-state-names. + +- ibm,cpu-idle-state-residency-ns: + Array of unsigned 32-bit values containing the values of the + target-residency (in ns) for the idle states in + ibm,cpu-idle-state-names. On POWER8 this is an optional + property. If the property is absent, the target residency for + the "Nap", "FastSleep" are defined to 10000 and 300000000 + respectively by the kernel. On POWER9 this property is required. + +- ibm,cpu-idle-state-psscr: + Array of unsigned 64-bit values containing the values for the + PSSCR for each of the idle states in ibm,cpu-idle-state-names. + This property is required on POWER9 and absent on POWER8. + +- ibm,cpu-idle-state-psscr-mask: + Array of unsigned 64-bit values containing the masks + indicating which psscr fields are set in the corresponding + entries of ibm,cpu-idle-state-psscr. This property is + required on POWER9 and absent on POWER8. + + Whenever the firmware sets an entry in + ibm,cpu-idle-state-psscr-mask value to 0xf, it implies that + only the Requested Level (RL) field of the corresponding entry + in ibm,cpu-idle-state-psscr should be considered by the + kernel. For such idle states, the kernel would set the + remaining fields of the psscr to the following sane-default + values. + + - ESL and EC bits are to 1. So wakeup from any stop + state will be at vector 0x100. + + - MTL and PSLL are set to the maximum allowed value as + per the ISA, i.e. 15. + + - The Transition Rate, TR is set to the Maximum value + 3. + + For all the other values of the entry in + ibm,cpu-idle-state-psscr-mask, the kernel expects all the + psscr fields of the corresponding entry in + ibm,cpu-idle-state-psscr to be correctly set by the firmware. + +- ibm,cpu-idle-state-pmicr: + Array of unsigned 64-bit values containing the pmicr values + for the idle states in ibm,cpu-idle-state-names. This 64-bit + register value is to be set in pmicr for the corresponding + state if the flag indicates that pmicr SPR should be set. This + is an optional property on POWER8 and is absent on + POWER9. + +- ibm,cpu-idle-state-pmicr-mask: + Array of unsigned 64-bit values containing the mask indicating + which of the fields of the PMICR are set in the corresponding + entries in ibm,cpu-idle-state-pmicr. This is an optional + property on POWER8 and is absent on POWER9. --- linux-4.8.0.orig/Documentation/devicetree/booting-without-of.txt +++ linux-4.8.0/Documentation/devicetree/booting-without-of.txt @@ -974,6 +974,13 @@ 4Gb. Some vendors prefer splitting those ranges into smaller segments, but the kernel doesn't care. + Additional properties: + + - hotpluggable : The presence of this property provides an explicit + hint to the operating system that this memory may potentially be + removed later. The kernel can take this into consideration when + doing nonmovable allocations and when laying out memory zones. + e) The /chosen node This node is a bit "special". Normally, that's where Open Firmware --- linux-4.8.0.orig/Documentation/filesystems/aufs/README +++ linux-4.8.0/Documentation/filesystems/aufs/README @@ -0,0 +1,392 @@ + +Aufs4 -- advanced multi layered unification filesystem version 4.x +http://aufs.sf.net +Junjiro R. Okajima + + +0. Introduction +---------------------------------------- +In the early days, aufs was entirely re-designed and re-implemented +Unionfs Version 1.x series. Adding many original ideas, approaches, +improvements and implementations, it becomes totally different from +Unionfs while keeping the basic features. +Recently, Unionfs Version 2.x series begin taking some of the same +approaches to aufs1's. +Unionfs is being developed by Professor Erez Zadok at Stony Brook +University and his team. + +Aufs4 supports linux-4.0 and later, and for linux-3.x series try aufs3. +If you want older kernel version support, try aufs2-2.6.git or +aufs2-standalone.git repository, aufs1 from CVS on SourceForge. + +Note: it becomes clear that "Aufs was rejected. Let's give it up." + According to Christoph Hellwig, linux rejects all union-type + filesystems but UnionMount. + + +PS. Al Viro seems have a plan to merge aufs as well as overlayfs and + UnionMount, and he pointed out an issue around a directory mutex + lock and aufs addressed it. But it is still unsure whether aufs will + be merged (or any other union solution). + + + +1. Features +---------------------------------------- +- unite several directories into a single virtual filesystem. The member + directory is called as a branch. +- you can specify the permission flags to the branch, which are 'readonly', + 'readwrite' and 'whiteout-able.' +- by upper writable branch, internal copyup and whiteout, files/dirs on + readonly branch are modifiable logically. +- dynamic branch manipulation, add, del. +- etc... + +Also there are many enhancements in aufs, such as: +- test only the highest one for the directory permission (dirperm1) +- copyup on open (coo=) +- 'move' policy for copy-up between two writable branches, after + checking free space. +- xattr, acl +- readdir(3) in userspace. +- keep inode number by external inode number table +- keep the timestamps of file/dir in internal copyup operation +- seekable directory, supporting NFS readdir. +- whiteout is hardlinked in order to reduce the consumption of inodes + on branch +- do not copyup, nor create a whiteout when it is unnecessary +- revert a single systemcall when an error occurs in aufs +- remount interface instead of ioctl +- maintain /etc/mtab by an external command, /sbin/mount.aufs. +- loopback mounted filesystem as a branch +- kernel thread for removing the dir who has a plenty of whiteouts +- support copyup sparse file (a file which has a 'hole' in it) +- default permission flags for branches +- selectable permission flags for ro branch, whether whiteout can + exist or not +- export via NFS. +- support /fs/aufs and /aufs. +- support multiple writable branches, some policies to select one + among multiple writable branches. +- a new semantics for link(2) and rename(2) to support multiple + writable branches. +- no glibc changes are required. +- pseudo hardlink (hardlink over branches) +- allow a direct access manually to a file on branch, e.g. bypassing aufs. + including NFS or remote filesystem branch. +- userspace wrapper for pathconf(3)/fpathconf(3) with _PC_LINK_MAX. +- and more... + +Currently these features are dropped temporary from aufs4. +See design/08plan.txt in detail. +- nested mount, i.e. aufs as readonly no-whiteout branch of another aufs + (robr) +- statistics of aufs thread (/sys/fs/aufs/stat) + +Features or just an idea in the future (see also design/*.txt), +- reorder the branch index without del/re-add. +- permanent xino files for NFSD +- an option for refreshing the opened files after add/del branches +- light version, without branch manipulation. (unnecessary?) +- copyup in userspace +- inotify in userspace +- readv/writev + + +2. Download +---------------------------------------- +There are three GIT trees for aufs4, aufs4-linux.git, +aufs4-standalone.git, and aufs-util.git. Note that there is no "4" in +"aufs-util.git." +While the aufs-util is always necessary, you need either of aufs4-linux +or aufs4-standalone. + +The aufs4-linux tree includes the whole linux mainline GIT tree, +git://git.kernel.org/.../torvalds/linux.git. +And you cannot select CONFIG_AUFS_FS=m for this version, eg. you cannot +build aufs4 as an external kernel module. +Several extra patches are not included in this tree. Only +aufs4-standalone tree contains them. They are described in the later +section "Configuration and Compilation." + +On the other hand, the aufs4-standalone tree has only aufs source files +and necessary patches, and you can select CONFIG_AUFS_FS=m. +But you need to apply all aufs patches manually. + +You will find GIT branches whose name is in form of "aufs4.x" where "x" +represents the linux kernel version, "linux-4.x". For instance, +"aufs4.0" is for linux-4.0. For latest "linux-4.x-rcN", use +"aufs4.x-rcN" branch. + +o aufs4-linux tree +$ git clone --reference /your/linux/git/tree \ + git://github.com/sfjro/aufs4-linux.git aufs4-linux.git +- if you don't have linux GIT tree, then remove "--reference ..." +$ cd aufs4-linux.git +$ git checkout origin/aufs4.0 + +Or You may want to directly git-pull aufs into your linux GIT tree, and +leave the patch-work to GIT. +$ cd /your/linux/git/tree +$ git remote add aufs4 git://github.com/sfjro/aufs4-linux.git +$ git fetch aufs4 +$ git checkout -b my4.0 v4.0 +$ (add your local change...) +$ git pull aufs4 aufs4.0 +- now you have v4.0 + your_changes + aufs4.0 in you my4.0 branch. +- you may need to solve some conflicts between your_changes and + aufs4.0. in this case, git-rerere is recommended so that you can + solve the similar conflicts automatically when you upgrade to 4.1 or + later in the future. + +o aufs4-standalone tree +$ git clone git://github.com/sfjro/aufs4-standalone.git aufs4-standalone.git +$ cd aufs4-standalone.git +$ git checkout origin/aufs4.0 + +o aufs-util tree +$ git clone git://git.code.sf.net/p/aufs/aufs-util aufs-util.git +- note that the public aufs-util.git is on SourceForge instead of + GitHUB. +$ cd aufs-util.git +$ git checkout origin/aufs4.0 + +Note: The 4.x-rcN branch is to be used with `rc' kernel versions ONLY. +The minor version number, 'x' in '4.x', of aufs may not always +follow the minor version number of the kernel. +Because changes in the kernel that cause the use of a new +minor version number do not always require changes to aufs-util. + +Since aufs-util has its own minor version number, you may not be +able to find a GIT branch in aufs-util for your kernel's +exact minor version number. +In this case, you should git-checkout the branch for the +nearest lower number. + +For (an unreleased) example: +If you are using "linux-4.10" and the "aufs4.10" branch +does not exist in aufs-util repository, then "aufs4.9", "aufs4.8" +or something numerically smaller is the branch for your kernel. + +Also you can view all branches by + $ git branch -a + + +3. Configuration and Compilation +---------------------------------------- +Make sure you have git-checkout'ed the correct branch. + +For aufs4-linux tree, +- enable CONFIG_AUFS_FS. +- set other aufs configurations if necessary. + +For aufs4-standalone tree, +There are several ways to build. + +1. +- apply ./aufs4-kbuild.patch to your kernel source files. +- apply ./aufs4-base.patch too. +- apply ./aufs4-mmap.patch too. +- apply ./aufs4-standalone.patch too, if you have a plan to set + CONFIG_AUFS_FS=m. otherwise you don't need ./aufs4-standalone.patch. +- copy ./{Documentation,fs,include/uapi/linux/aufs_type.h} files to your + kernel source tree. Never copy $PWD/include/uapi/linux/Kbuild. +- enable CONFIG_AUFS_FS, you can select either + =m or =y. +- and build your kernel as usual. +- install the built kernel. + Note: Since linux-3.9, every filesystem module requires an alias + "fs-". You should make sure that "fs-aufs" is listed in your + modules.aliases file if you set CONFIG_AUFS_FS=m. +- install the header files too by "make headers_install" to the + directory where you specify. By default, it is $PWD/usr. + "make help" shows a brief note for headers_install. +- and reboot your system. + +2. +- module only (CONFIG_AUFS_FS=m). +- apply ./aufs4-base.patch to your kernel source files. +- apply ./aufs4-mmap.patch too. +- apply ./aufs4-standalone.patch too. +- build your kernel, don't forget "make headers_install", and reboot. +- edit ./config.mk and set other aufs configurations if necessary. + Note: You should read $PWD/fs/aufs/Kconfig carefully which describes + every aufs configurations. +- build the module by simple "make". + Note: Since linux-3.9, every filesystem module requires an alias + "fs-". You should make sure that "fs-aufs" is listed in your + modules.aliases file. +- you can specify ${KDIR} make variable which points to your kernel + source tree. +- install the files + + run "make install" to install the aufs module, or copy the built + $PWD/aufs.ko to /lib/modules/... and run depmod -a (or reboot simply). + + run "make install_headers" (instead of headers_install) to install + the modified aufs header file (you can specify DESTDIR which is + available in aufs standalone version's Makefile only), or copy + $PWD/usr/include/linux/aufs_type.h to /usr/include/linux or wherever + you like manually. By default, the target directory is $PWD/usr. +- no need to apply aufs4-kbuild.patch, nor copying source files to your + kernel source tree. + +Note: The header file aufs_type.h is necessary to build aufs-util + as well as "make headers_install" in the kernel source tree. + headers_install is subject to be forgotten, but it is essentially + necessary, not only for building aufs-util. + You may not meet problems without headers_install in some older + version though. + +And then, +- read README in aufs-util, build and install it +- note that your distribution may contain an obsoleted version of + aufs_type.h in /usr/include/linux or something. When you build aufs + utilities, make sure that your compiler refers the correct aufs header + file which is built by "make headers_install." +- if you want to use readdir(3) in userspace or pathconf(3) wrapper, + then run "make install_ulib" too. And refer to the aufs manual in + detail. + +There several other patches in aufs4-standalone.git. They are all +optional. When you meet some problems, they will help you. +- aufs4-loopback.patch + Supports a nested loopback mount in a branch-fs. This patch is + unnecessary until aufs produces a message like "you may want to try + another patch for loopback file". +- vfs-ino.patch + Modifies a system global kernel internal function get_next_ino() in + order to stop assigning 0 for an inode-number. Not directly related to + aufs, but recommended generally. +- tmpfs-idr.patch + Keeps the tmpfs inode number as the lowest value. Effective to reduce + the size of aufs XINO files for tmpfs branch. Also it prevents the + duplication of inode number, which is important for backup tools and + other utilities. When you find aufs XINO files for tmpfs branch + growing too much, try this patch. +- lockdep-debug.patch + Because aufs is not only an ordinary filesystem (callee of VFS), but + also a caller of VFS functions for branch filesystems, subclassing of + the internal locks for LOCKDEP is necessary. LOCKDEP is a debugging + feature of linux kernel. If you enable CONFIG_LOCKDEP, then you will + need to apply this debug patch to expand several constant values. + If don't know what LOCKDEP, then you don't have apply this patch. + + +4. Usage +---------------------------------------- +At first, make sure aufs-util are installed, and please read the aufs +manual, aufs.5 in aufs-util.git tree. +$ man -l aufs.5 + +And then, +$ mkdir /tmp/rw /tmp/aufs +# mount -t aufs -o br=/tmp/rw:${HOME} none /tmp/aufs + +Here is another example. The result is equivalent. +# mount -t aufs -o br=/tmp/rw=rw:${HOME}=ro none /tmp/aufs + Or +# mount -t aufs -o br:/tmp/rw none /tmp/aufs +# mount -o remount,append:${HOME} /tmp/aufs + +Then, you can see whole tree of your home dir through /tmp/aufs. If +you modify a file under /tmp/aufs, the one on your home directory is +not affected, instead the same named file will be newly created under +/tmp/rw. And all of your modification to a file will be applied to +the one under /tmp/rw. This is called the file based Copy on Write +(COW) method. +Aufs mount options are described in aufs.5. +If you run chroot or something and make your aufs as a root directory, +then you need to customize the shutdown script. See the aufs manual in +detail. + +Additionally, there are some sample usages of aufs which are a +diskless system with network booting, and LiveCD over NFS. +See sample dir in CVS tree on SourceForge. + + +5. Contact +---------------------------------------- +When you have any problems or strange behaviour in aufs, please let me +know with: +- /proc/mounts (instead of the output of mount(8)) +- /sys/module/aufs/* +- /sys/fs/aufs/* (if you have them) +- /debug/aufs/* (if you have them) +- linux kernel version + if your kernel is not plain, for example modified by distributor, + the url where i can download its source is necessary too. +- aufs version which was printed at loading the module or booting the + system, instead of the date you downloaded. +- configuration (define/undefine CONFIG_AUFS_xxx) +- kernel configuration or /proc/config.gz (if you have it) +- behaviour which you think to be incorrect +- actual operation, reproducible one is better +- mailto: aufs-users at lists.sourceforge.net + +Usually, I don't watch the Public Areas(Bugs, Support Requests, Patches, +and Feature Requests) on SourceForge. Please join and write to +aufs-users ML. + + +6. Acknowledgements +---------------------------------------- +Thanks to everyone who have tried and are using aufs, whoever +have reported a bug or any feedback. + +Especially donators: +Tomas Matejicek(slax.org) made a donation (much more than once). + Since Apr 2010, Tomas M (the author of Slax and Linux Live + scripts) is making "doubling" donations. + Unfortunately I cannot list all of the donators, but I really + appreciate. + It ends Aug 2010, but the ordinary donation URL is still available. + +Dai Itasaka made a donation (2007/8). +Chuck Smith made a donation (2008/4, 10 and 12). +Henk Schoneveld made a donation (2008/9). +Chih-Wei Huang, ASUS, CTC donated Eee PC 4G (2008/10). +Francois Dupoux made a donation (2008/11). +Bruno Cesar Ribas and Luis Carlos Erpen de Bona, C3SL serves public + aufs2 GIT tree (2009/2). +William Grant made a donation (2009/3). +Patrick Lane made a donation (2009/4). +The Mail Archive (mail-archive.com) made donations (2009/5). +Nippy Networks (Ed Wildgoose) made a donation (2009/7). +New Dream Network, LLC (www.dreamhost.com) made a donation (2009/11). +Pavel Pronskiy made a donation (2011/2). +Iridium and Inmarsat satellite phone retailer (www.mailasail.com), Nippy + Networks (Ed Wildgoose) made a donation for hardware (2011/3). +Max Lekomcev (DOM-TV project) made a donation (2011/7, 12, 2012/3, 6 and +11). +Sam Liddicott made a donation (2011/9). +Era Scarecrow made a donation (2013/4). +Bor Ratajc made a donation (2013/4). +Alessandro Gorreta made a donation (2013/4). +POIRETTE Marc made a donation (2013/4). +Alessandro Gorreta made a donation (2013/4). +lauri kasvandik made a donation (2013/5). +"pemasu from Finland" made a donation (2013/7). +The Parted Magic Project made a donation (2013/9 and 11). +Pavel Barta made a donation (2013/10). +Nikolay Pertsev made a donation (2014/5). +James B made a donation (2014/7 and 2015/7). +Stefano Di Biase made a donation (2014/8). +Daniel Epellei made a donation (2015/1). +OmegaPhil made a donation (2016/1). +Tomasz Szewczyk made a donation (2016/4). + +Thank you very much. +Donations are always, including future donations, very important and +helpful for me to keep on developing aufs. + + +7. +---------------------------------------- +If you are an experienced user, no explanation is needed. Aufs is +just a linux filesystem. + + +Enjoy! + +# Local variables: ; +# mode: text; +# End: ; --- linux-4.8.0.orig/Documentation/filesystems/aufs/design/01intro.txt +++ linux-4.8.0/Documentation/filesystems/aufs/design/01intro.txt @@ -0,0 +1,170 @@ + +# Copyright (C) 2005-2016 Junjiro R. Okajima +# +# 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; either version 2 of the License, or +# (at your option) any later version. +# +# 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, see . + +Introduction +---------------------------------------- + +aufs [ei ju: ef es] | [a u f s] +1. abbrev. for "advanced multi-layered unification filesystem". +2. abbrev. for "another unionfs". +3. abbrev. for "auf das" in German which means "on the" in English. + Ex. "Butter aufs Brot"(G) means "butter onto bread"(E). + But "Filesystem aufs Filesystem" is hard to understand. + +AUFS is a filesystem with features: +- multi layered stackable unification filesystem, the member directory + is called as a branch. +- branch permission and attribute, 'readonly', 'real-readonly', + 'readwrite', 'whiteout-able', 'link-able whiteout', etc. and their + combination. +- internal "file copy-on-write". +- logical deletion, whiteout. +- dynamic branch manipulation, adding, deleting and changing permission. +- allow bypassing aufs, user's direct branch access. +- external inode number translation table and bitmap which maintains the + persistent aufs inode number. +- seekable directory, including NFS readdir. +- file mapping, mmap and sharing pages. +- pseudo-link, hardlink over branches. +- loopback mounted filesystem as a branch. +- several policies to select one among multiple writable branches. +- revert a single systemcall when an error occurs in aufs. +- and more... + + +Multi Layered Stackable Unification Filesystem +---------------------------------------------------------------------- +Most people already knows what it is. +It is a filesystem which unifies several directories and provides a +merged single directory. When users access a file, the access will be +passed/re-directed/converted (sorry, I am not sure which English word is +correct) to the real file on the member filesystem. The member +filesystem is called 'lower filesystem' or 'branch' and has a mode +'readonly' and 'readwrite.' And the deletion for a file on the lower +readonly branch is handled by creating 'whiteout' on the upper writable +branch. + +On LKML, there have been discussions about UnionMount (Jan Blunck, +Bharata B Rao and Valerie Aurora) and Unionfs (Erez Zadok). They took +different approaches to implement the merged-view. +The former tries putting it into VFS, and the latter implements as a +separate filesystem. +(If I misunderstand about these implementations, please let me know and +I shall correct it. Because it is a long time ago when I read their +source files last time). + +UnionMount's approach will be able to small, but may be hard to share +branches between several UnionMount since the whiteout in it is +implemented in the inode on branch filesystem and always +shared. According to Bharata's post, readdir does not seems to be +finished yet. +There are several missing features known in this implementations such as +- for users, the inode number may change silently. eg. copy-up. +- link(2) may break by copy-up. +- read(2) may get an obsoleted filedata (fstat(2) too). +- fcntl(F_SETLK) may be broken by copy-up. +- unnecessary copy-up may happen, for example mmap(MAP_PRIVATE) after + open(O_RDWR). + +In linux-3.18, "overlay" filesystem (formerly known as "overlayfs") was +merged into mainline. This is another implementation of UnionMount as a +separated filesystem. All the limitations and known problems which +UnionMount are equally inherited to "overlay" filesystem. + +Unionfs has a longer history. When I started implementing a stackable +filesystem (Aug 2005), it already existed. It has virtual super_block, +inode, dentry and file objects and they have an array pointing lower +same kind objects. After contributing many patches for Unionfs, I +re-started my project AUFS (Jun 2006). + +In AUFS, the structure of filesystem resembles to Unionfs, but I +implemented my own ideas, approaches and enhancements and it became +totally different one. + +Comparing DM snapshot and fs based implementation +- the number of bytes to be copied between devices is much smaller. +- the type of filesystem must be one and only. +- the fs must be writable, no readonly fs, even for the lower original + device. so the compression fs will not be usable. but if we use + loopback mount, we may address this issue. + for instance, + mount /cdrom/squashfs.img /sq + losetup /sq/ext2.img + losetup /somewhere/cow + dmsetup "snapshot /dev/loop0 /dev/loop1 ..." +- it will be difficult (or needs more operations) to extract the + difference between the original device and COW. +- DM snapshot-merge may help a lot when users try merging. in the + fs-layer union, users will use rsync(1). + +You may want to read my old paper "Filesystems in LiveCD" +(http://aufs.sourceforge.net/aufs2/report/sq/sq.pdf). + + +Several characters/aspects/persona of aufs +---------------------------------------------------------------------- + +Aufs has several characters, aspects or persona. +1. a filesystem, callee of VFS helper +2. sub-VFS, caller of VFS helper for branches +3. a virtual filesystem which maintains persistent inode number +4. reader/writer of files on branches such like an application + +1. Callee of VFS Helper +As an ordinary linux filesystem, aufs is a callee of VFS. For instance, +unlink(2) from an application reaches sys_unlink() kernel function and +then vfs_unlink() is called. vfs_unlink() is one of VFS helper and it +calls filesystem specific unlink operation. Actually aufs implements the +unlink operation but it behaves like a redirector. + +2. Caller of VFS Helper for Branches +aufs_unlink() passes the unlink request to the branch filesystem as if +it were called from VFS. So the called unlink operation of the branch +filesystem acts as usual. As a caller of VFS helper, aufs should handle +every necessary pre/post operation for the branch filesystem. +- acquire the lock for the parent dir on a branch +- lookup in a branch +- revalidate dentry on a branch +- mnt_want_write() for a branch +- vfs_unlink() for a branch +- mnt_drop_write() for a branch +- release the lock on a branch + +3. Persistent Inode Number +One of the most important issue for a filesystem is to maintain inode +numbers. This is particularly important to support exporting a +filesystem via NFS. Aufs is a virtual filesystem which doesn't have a +backend block device for its own. But some storage is necessary to +keep and maintain the inode numbers. It may be a large space and may not +suit to keep in memory. Aufs rents some space from its first writable +branch filesystem (by default) and creates file(s) on it. These files +are created by aufs internally and removed soon (currently) keeping +opened. +Note: Because these files are removed, they are totally gone after + unmounting aufs. It means the inode numbers are not persistent + across unmount or reboot. I have a plan to make them really + persistent which will be important for aufs on NFS server. + +4. Read/Write Files Internally (copy-on-write) +Because a branch can be readonly, when you write a file on it, aufs will +"copy-up" it to the upper writable branch internally. And then write the +originally requested thing to the file. Generally kernel doesn't +open/read/write file actively. In aufs, even a single write may cause a +internal "file copy". This behaviour is very similar to cp(1) command. + +Some people may think it is better to pass such work to user space +helper, instead of doing in kernel space. Actually I am still thinking +about it. But currently I have implemented it in kernel space. --- linux-4.8.0.orig/Documentation/filesystems/aufs/design/02struct.txt +++ linux-4.8.0/Documentation/filesystems/aufs/design/02struct.txt @@ -0,0 +1,258 @@ + +# Copyright (C) 2005-2016 Junjiro R. Okajima +# +# 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; either version 2 of the License, or +# (at your option) any later version. +# +# 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, see . + +Basic Aufs Internal Structure + +Superblock/Inode/Dentry/File Objects +---------------------------------------------------------------------- +As like an ordinary filesystem, aufs has its own +superblock/inode/dentry/file objects. All these objects have a +dynamically allocated array and store the same kind of pointers to the +lower filesystem, branch. +For example, when you build a union with one readwrite branch and one +readonly, mounted /au, /rw and /ro respectively. +- /au = /rw + /ro +- /ro/fileA exists but /rw/fileA + +Aufs lookup operation finds /ro/fileA and gets dentry for that. These +pointers are stored in a aufs dentry. The array in aufs dentry will be, +- [0] = NULL (because /rw/fileA doesn't exist) +- [1] = /ro/fileA + +This style of an array is essentially same to the aufs +superblock/inode/dentry/file objects. + +Because aufs supports manipulating branches, ie. add/delete/change +branches dynamically, these objects has its own generation. When +branches are changed, the generation in aufs superblock is +incremented. And a generation in other object are compared when it is +accessed. When a generation in other objects are obsoleted, aufs +refreshes the internal array. + + +Superblock +---------------------------------------------------------------------- +Additionally aufs superblock has some data for policies to select one +among multiple writable branches, XIB files, pseudo-links and kobject. +See below in detail. +About the policies which supports copy-down a directory, see +wbr_policy.txt too. + + +Branch and XINO(External Inode Number Translation Table) +---------------------------------------------------------------------- +Every branch has its own xino (external inode number translation table) +file. The xino file is created and unlinked by aufs internally. When two +members of a union exist on the same filesystem, they share the single +xino file. +The struct of a xino file is simple, just a sequence of aufs inode +numbers which is indexed by the lower inode number. +In the above sample, assume the inode number of /ro/fileA is i111 and +aufs assigns the inode number i999 for fileA. Then aufs writes 999 as +4(8) bytes at 111 * 4(8) bytes offset in the xino file. + +When the inode numbers are not contiguous, the xino file will be sparse +which has a hole in it and doesn't consume as much disk space as it +might appear. If your branch filesystem consumes disk space for such +holes, then you should specify 'xino=' option at mounting aufs. + +Aufs has a mount option to free the disk blocks for such holes in XINO +files on tmpfs or ramdisk. But it is not so effective actually. If you +meet a problem of disk shortage due to XINO files, then you should try +"tmpfs-ino.patch" (and "vfs-ino.patch" too) in aufs4-standalone.git. +The patch localizes the assignment inumbers per tmpfs-mount and avoid +the holes in XINO files. + +Also a writable branch has three kinds of "whiteout bases". All these +are existed when the branch is joined to aufs, and their names are +whiteout-ed doubly, so that users will never see their names in aufs +hierarchy. +1. a regular file which will be hardlinked to all whiteouts. +2. a directory to store a pseudo-link. +3. a directory to store an "orphan"-ed file temporary. + +1. Whiteout Base + When you remove a file on a readonly branch, aufs handles it as a + logical deletion and creates a whiteout on the upper writable branch + as a hardlink of this file in order not to consume inode on the + writable branch. +2. Pseudo-link Dir + See below, Pseudo-link. +3. Step-Parent Dir + When "fileC" exists on the lower readonly branch only and it is + opened and removed with its parent dir, and then user writes + something into it, then aufs copies-up fileC to this + directory. Because there is no other dir to store fileC. After + creating a file under this dir, the file is unlinked. + +Because aufs supports manipulating branches, ie. add/delete/change +dynamically, a branch has its own id. When the branch order changes, +aufs finds the new index by searching the branch id. + + +Pseudo-link +---------------------------------------------------------------------- +Assume "fileA" exists on the lower readonly branch only and it is +hardlinked to "fileB" on the branch. When you write something to fileA, +aufs copies-up it to the upper writable branch. Additionally aufs +creates a hardlink under the Pseudo-link Directory of the writable +branch. The inode of a pseudo-link is kept in aufs super_block as a +simple list. If fileB is read after unlinking fileA, aufs returns +filedata from the pseudo-link instead of the lower readonly +branch. Because the pseudo-link is based upon the inode, to keep the +inode number by xino (see above) is essentially necessary. + +All the hardlinks under the Pseudo-link Directory of the writable branch +should be restored in a proper location later. Aufs provides a utility +to do this. The userspace helpers executed at remounting and unmounting +aufs by default. +During this utility is running, it puts aufs into the pseudo-link +maintenance mode. In this mode, only the process which began the +maintenance mode (and its child processes) is allowed to operate in +aufs. Some other processes which are not related to the pseudo-link will +be allowed to run too, but the rest have to return an error or wait +until the maintenance mode ends. If a process already acquires an inode +mutex (in VFS), it has to return an error. + + +XIB(external inode number bitmap) +---------------------------------------------------------------------- +Addition to the xino file per a branch, aufs has an external inode number +bitmap in a superblock object. It is also an internal file such like a +xino file. +It is a simple bitmap to mark whether the aufs inode number is in-use or +not. +To reduce the file I/O, aufs prepares a single memory page to cache xib. + +As well as XINO files, aufs has a feature to truncate/refresh XIB to +reduce the number of consumed disk blocks for these files. + + +Virtual or Vertical Dir, and Readdir in Userspace +---------------------------------------------------------------------- +In order to support multiple layers (branches), aufs readdir operation +constructs a virtual dir block on memory. For readdir, aufs calls +vfs_readdir() internally for each dir on branches, merges their entries +with eliminating the whiteout-ed ones, and sets it to file (dir) +object. So the file object has its entry list until it is closed. The +entry list will be updated when the file position is zero and becomes +obsoleted. This decision is made in aufs automatically. + +The dynamically allocated memory block for the name of entries has a +unit of 512 bytes (by default) and stores the names contiguously (no +padding). Another block for each entry is handled by kmem_cache too. +During building dir blocks, aufs creates hash list and judging whether +the entry is whiteouted by its upper branch or already listed. +The merged result is cached in the corresponding inode object and +maintained by a customizable life-time option. + +Some people may call it can be a security hole or invite DoS attack +since the opened and once readdir-ed dir (file object) holds its entry +list and becomes a pressure for system memory. But I'd say it is similar +to files under /proc or /sys. The virtual files in them also holds a +memory page (generally) while they are opened. When an idea to reduce +memory for them is introduced, it will be applied to aufs too. +For those who really hate this situation, I've developed readdir(3) +library which operates this merging in userspace. You just need to set +LD_PRELOAD environment variable, and aufs will not consume no memory in +kernel space for readdir(3). + + +Workqueue +---------------------------------------------------------------------- +Aufs sometimes requires privilege access to a branch. For instance, +in copy-up/down operation. When a user process is going to make changes +to a file which exists in the lower readonly branch only, and the mode +of one of ancestor directories may not be writable by a user +process. Here aufs copy-up the file with its ancestors and they may +require privilege to set its owner/group/mode/etc. +This is a typical case of a application character of aufs (see +Introduction). + +Aufs uses workqueue synchronously for this case. It creates its own +workqueue. The workqueue is a kernel thread and has privilege. Aufs +passes the request to call mkdir or write (for example), and wait for +its completion. This approach solves a problem of a signal handler +simply. +If aufs didn't adopt the workqueue and changed the privilege of the +process, then the process may receive the unexpected SIGXFSZ or other +signals. + +Also aufs uses the system global workqueue ("events" kernel thread) too +for asynchronous tasks, such like handling inotify/fsnotify, re-creating a +whiteout base and etc. This is unrelated to a privilege. +Most of aufs operation tries acquiring a rw_semaphore for aufs +superblock at the beginning, at the same time waits for the completion +of all queued asynchronous tasks. + + +Whiteout +---------------------------------------------------------------------- +The whiteout in aufs is very similar to Unionfs's. That is represented +by its filename. UnionMount takes an approach of a file mode, but I am +afraid several utilities (find(1) or something) will have to support it. + +Basically the whiteout represents "logical deletion" which stops aufs to +lookup further, but also it represents "dir is opaque" which also stop +further lookup. + +In aufs, rmdir(2) and rename(2) for dir uses whiteout alternatively. +In order to make several functions in a single systemcall to be +revertible, aufs adopts an approach to rename a directory to a temporary +unique whiteouted name. +For example, in rename(2) dir where the target dir already existed, aufs +renames the target dir to a temporary unique whiteouted name before the +actual rename on a branch, and then handles other actions (make it opaque, +update the attributes, etc). If an error happens in these actions, aufs +simply renames the whiteouted name back and returns an error. If all are +succeeded, aufs registers a function to remove the whiteouted unique +temporary name completely and asynchronously to the system global +workqueue. + + +Copy-up +---------------------------------------------------------------------- +It is a well-known feature or concept. +When user modifies a file on a readonly branch, aufs operate "copy-up" +internally and makes change to the new file on the upper writable branch. +When the trigger systemcall does not update the timestamps of the parent +dir, aufs reverts it after copy-up. + + +Move-down (aufs3.9 and later) +---------------------------------------------------------------------- +"Copy-up" is one of the essential feature in aufs. It copies a file from +the lower readonly branch to the upper writable branch when a user +changes something about the file. +"Move-down" is an opposite action of copy-up. Basically this action is +ran manually instead of automatically and internally. +For desgin and implementation, aufs has to consider these issues. +- whiteout for the file may exist on the lower branch. +- ancestor directories may not exist on the lower branch. +- diropq for the ancestor directories may exist on the upper branch. +- free space on the lower branch will reduce. +- another access to the file may happen during moving-down, including + UDBA (see "Revalidate Dentry and UDBA"). +- the file should not be hard-linked nor pseudo-linked. they should be + handled by auplink utility later. + +Sometimes users want to move-down a file from the upper writable branch +to the lower readonly or writable branch. For instance, +- the free space of the upper writable branch is going to run out. +- create a new intermediate branch between the upper and lower branch. +- etc. + +For this purpose, use "aumvdown" command in aufs-util.git. --- linux-4.8.0.orig/Documentation/filesystems/aufs/design/03atomic_open.txt +++ linux-4.8.0/Documentation/filesystems/aufs/design/03atomic_open.txt @@ -0,0 +1,85 @@ + +# Copyright (C) 2015-2016 Junjiro R. Okajima +# +# 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; either version 2 of the License, or +# (at your option) any later version. +# +# 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, see . + +Support for a branch who has its ->atomic_open() +---------------------------------------------------------------------- +The filesystems who implement its ->atomic_open() are not majority. For +example NFSv4 does, and aufs should call NFSv4 ->atomic_open, +particularly for open(O_CREAT|O_EXCL, 0400) case. Other than +->atomic_open(), NFSv4 returns an error for this open(2). While I am not +sure whether all filesystems who have ->atomic_open() behave like this, +but NFSv4 surely returns the error. + +In order to support ->atomic_open() for aufs, there are a few +approaches. + +A. Introduce aufs_atomic_open() + - calls one of VFS:do_last(), lookup_open() or atomic_open() for + branch fs. +B. Introduce aufs_atomic_open() calling create, open and chmod. this is + an aufs user Pip Cet's approach + - calls aufs_create(), VFS finish_open() and notify_change(). + - pass fake-mode to finish_open(), and then correct the mode by + notify_change(). +C. Extend aufs_open() to call branch fs's ->atomic_open() + - no aufs_atomic_open(). + - aufs_lookup() registers the TID to an aufs internal object. + - aufs_create() does nothing when the matching TID is registered, but + registers the mode. + - aufs_open() calls branch fs's ->atomic_open() when the matching + TID is registered. +D. Extend aufs_open() to re-try branch fs's ->open() with superuser's + credential + - no aufs_atomic_open(). + - aufs_create() registers the TID to an internal object. this info + represents "this process created this file just now." + - when aufs gets EACCES from branch fs's ->open(), then confirm the + registered TID and re-try open() with superuser's credential. + +Pros and cons for each approach. + +A. + - straightforward but highly depends upon VFS internal. + - the atomic behavaiour is kept. + - some of parameters such as nameidata are hard to reproduce for + branch fs. + - large overhead. +B. + - easy to implement. + - the atomic behavaiour is lost. +C. + - the atomic behavaiour is kept. + - dirty and tricky. + - VFS checks whether the file is created correctly after calling + ->create(), which means this approach doesn't work. +D. + - easy to implement. + - the atomic behavaiour is lost. + - to open a file with superuser's credential and give it to a user + process is a bad idea, since the file object keeps the credential + in it. It may affect LSM or something. This approach doesn't work + either. + +The approach A is ideal, but it hard to implement. So here is a +variation of A, which is to be implemented. + +A-1. Introduce aufs_atomic_open() + - calls branch fs ->atomic_open() if exists. otherwise calls + vfs_create() and finish_open(). + - the demerit is that the several checks after branch fs + ->atomic_open() are lost. in the ordinary case, the checks are + done by VFS:do_last(), lookup_open() and atomic_open(). some can + be implemented in aufs, but not all I am afraid. --- linux-4.8.0.orig/Documentation/filesystems/aufs/design/03lookup.txt +++ linux-4.8.0/Documentation/filesystems/aufs/design/03lookup.txt @@ -0,0 +1,113 @@ + +# Copyright (C) 2005-2016 Junjiro R. Okajima +# +# 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; either version 2 of the License, or +# (at your option) any later version. +# +# 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, see . + +Lookup in a Branch +---------------------------------------------------------------------- +Since aufs has a character of sub-VFS (see Introduction), it operates +lookup for branches as VFS does. It may be a heavy work. But almost all +lookup operation in aufs is the simplest case, ie. lookup only an entry +directly connected to its parent. Digging down the directory hierarchy +is unnecessary. VFS has a function lookup_one_len() for that use, and +aufs calls it. + +When a branch is a remote filesystem, aufs basically relies upon its +->d_revalidate(), also aufs forces the hardest revalidate tests for +them. +For d_revalidate, aufs implements three levels of revalidate tests. See +"Revalidate Dentry and UDBA" in detail. + + +Test Only the Highest One for the Directory Permission (dirperm1 option) +---------------------------------------------------------------------- +Let's try case study. +- aufs has two branches, upper readwrite and lower readonly. + /au = /rw + /ro +- "dirA" exists under /ro, but /rw. and its mode is 0700. +- user invoked "chmod a+rx /au/dirA" +- the internal copy-up is activated and "/rw/dirA" is created and its + permission bits are set to world readable. +- then "/au/dirA" becomes world readable? + +In this case, /ro/dirA is still 0700 since it exists in readonly branch, +or it may be a natively readonly filesystem. If aufs respects the lower +branch, it should not respond readdir request from other users. But user +allowed it by chmod. Should really aufs rejects showing the entries +under /ro/dirA? + +To be honest, I don't have a good solution for this case. So aufs +implements 'dirperm1' and 'nodirperm1' mount options, and leave it to +users. +When dirperm1 is specified, aufs checks only the highest one for the +directory permission, and shows the entries. Otherwise, as usual, checks +every dir existing on all branches and rejects the request. + +As a side effect, dirperm1 option improves the performance of aufs +because the number of permission check is reduced when the number of +branch is many. + + +Revalidate Dentry and UDBA (User's Direct Branch Access) +---------------------------------------------------------------------- +Generally VFS helpers re-validate a dentry as a part of lookup. +0. digging down the directory hierarchy. +1. lock the parent dir by its i_mutex. +2. lookup the final (child) entry. +3. revalidate it. +4. call the actual operation (create, unlink, etc.) +5. unlock the parent dir + +If the filesystem implements its ->d_revalidate() (step 3), then it is +called. Actually aufs implements it and checks the dentry on a branch is +still valid. +But it is not enough. Because aufs has to release the lock for the +parent dir on a branch at the end of ->lookup() (step 2) and +->d_revalidate() (step 3) while the i_mutex of the aufs dir is still +held by VFS. +If the file on a branch is changed directly, eg. bypassing aufs, after +aufs released the lock, then the subsequent operation may cause +something unpleasant result. + +This situation is a result of VFS architecture, ->lookup() and +->d_revalidate() is separated. But I never say it is wrong. It is a good +design from VFS's point of view. It is just not suitable for sub-VFS +character in aufs. + +Aufs supports such case by three level of revalidation which is +selectable by user. +1. Simple Revalidate + Addition to the native flow in VFS's, confirm the child-parent + relationship on the branch just after locking the parent dir on the + branch in the "actual operation" (step 4). When this validation + fails, aufs returns EBUSY. ->d_revalidate() (step 3) in aufs still + checks the validation of the dentry on branches. +2. Monitor Changes Internally by Inotify/Fsnotify + Addition to above, in the "actual operation" (step 4) aufs re-lookup + the dentry on the branch, and returns EBUSY if it finds different + dentry. + Additionally, aufs sets the inotify/fsnotify watch for every dir on branches + during it is in cache. When the event is notified, aufs registers a + function to kernel 'events' thread by schedule_work(). And the + function sets some special status to the cached aufs dentry and inode + private data. If they are not cached, then aufs has nothing to + do. When the same file is accessed through aufs (step 0-3) later, + aufs will detect the status and refresh all necessary data. + In this mode, aufs has to ignore the event which is fired by aufs + itself. +3. No Extra Validation + This is the simplest test and doesn't add any additional revalidation + test, and skip the revalidation in step 4. It is useful and improves + aufs performance when system surely hide the aufs branches from user, + by over-mounting something (or another method). --- linux-4.8.0.orig/Documentation/filesystems/aufs/design/04branch.txt +++ linux-4.8.0/Documentation/filesystems/aufs/design/04branch.txt @@ -0,0 +1,74 @@ + +# Copyright (C) 2005-2016 Junjiro R. Okajima +# +# 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; either version 2 of the License, or +# (at your option) any later version. +# +# 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, see . + +Branch Manipulation + +Since aufs supports dynamic branch manipulation, ie. add/remove a branch +and changing its permission/attribute, there are a lot of works to do. + + +Add a Branch +---------------------------------------------------------------------- +o Confirm the adding dir exists outside of aufs, including loopback + mount, and its various attributes. +o Initialize the xino file and whiteout bases if necessary. + See struct.txt. + +o Check the owner/group/mode of the directory + When the owner/group/mode of the adding directory differs from the + existing branch, aufs issues a warning because it may impose a + security risk. + For example, when a upper writable branch has a world writable empty + top directory, a malicious user can create any files on the writable + branch directly, like copy-up and modify manually. If something like + /etc/{passwd,shadow} exists on the lower readonly branch but the upper + writable branch, and the writable branch is world-writable, then a + malicious guy may create /etc/passwd on the writable branch directly + and the infected file will be valid in aufs. + I am afraid it can be a security issue, but aufs can do nothing except + producing a warning. + + +Delete a Branch +---------------------------------------------------------------------- +o Confirm the deleting branch is not busy + To be general, there is one merit to adopt "remount" interface to + manipulate branches. It is to discard caches. At deleting a branch, + aufs checks the still cached (and connected) dentries and inodes. If + there are any, then they are all in-use. An inode without its + corresponding dentry can be alive alone (for example, inotify/fsnotify case). + + For the cached one, aufs checks whether the same named entry exists on + other branches. + If the cached one is a directory, because aufs provides a merged view + to users, as long as one dir is left on any branch aufs can show the + dir to users. In this case, the branch can be removed from aufs. + Otherwise aufs rejects deleting the branch. + + If any file on the deleting branch is opened by aufs, then aufs + rejects deleting. + + +Modify the Permission of a Branch +---------------------------------------------------------------------- +o Re-initialize or remove the xino file and whiteout bases if necessary. + See struct.txt. + +o rw --> ro: Confirm the modifying branch is not busy + Aufs rejects the request if any of these conditions are true. + - a file on the branch is mmap-ed. + - a regular file on the branch is opened for write and there is no + same named entry on the upper branch. --- linux-4.8.0.orig/Documentation/filesystems/aufs/design/05wbr_policy.txt +++ linux-4.8.0/Documentation/filesystems/aufs/design/05wbr_policy.txt @@ -0,0 +1,64 @@ + +# Copyright (C) 2005-2016 Junjiro R. Okajima +# +# 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; either version 2 of the License, or +# (at your option) any later version. +# +# 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, see . + +Policies to Select One among Multiple Writable Branches +---------------------------------------------------------------------- +When the number of writable branch is more than one, aufs has to decide +the target branch for file creation or copy-up. By default, the highest +writable branch which has the parent (or ancestor) dir of the target +file is chosen (top-down-parent policy). +By user's request, aufs implements some other policies to select the +writable branch, for file creation several policies, round-robin, +most-free-space, and other policies. For copy-up, top-down-parent, +bottom-up-parent, bottom-up and others. + +As expected, the round-robin policy selects the branch in circular. When +you have two writable branches and creates 10 new files, 5 files will be +created for each branch. mkdir(2) systemcall is an exception. When you +create 10 new directories, all will be created on the same branch. +And the most-free-space policy selects the one which has most free +space among the writable branches. The amount of free space will be +checked by aufs internally, and users can specify its time interval. + +The policies for copy-up is more simple, +top-down-parent is equivalent to the same named on in create policy, +bottom-up-parent selects the writable branch where the parent dir +exists and the nearest upper one from the copyup-source, +bottom-up selects the nearest upper writable branch from the +copyup-source, regardless the existence of the parent dir. + +There are some rules or exceptions to apply these policies. +- If there is a readonly branch above the policy-selected branch and + the parent dir is marked as opaque (a variation of whiteout), or the + target (creating) file is whiteout-ed on the upper readonly branch, + then the result of the policy is ignored and the target file will be + created on the nearest upper writable branch than the readonly branch. +- If there is a writable branch above the policy-selected branch and + the parent dir is marked as opaque or the target file is whiteouted + on the branch, then the result of the policy is ignored and the target + file will be created on the highest one among the upper writable + branches who has diropq or whiteout. In case of whiteout, aufs removes + it as usual. +- link(2) and rename(2) systemcalls are exceptions in every policy. + They try selecting the branch where the source exists as possible + since copyup a large file will take long time. If it can't be, + ie. the branch where the source exists is readonly, then they will + follow the copyup policy. +- There is an exception for rename(2) when the target exists. + If the rename target exists, aufs compares the index of the branches + where the source and the target exists and selects the higher + one. If the selected branch is readonly, then aufs follows the + copyup policy. --- linux-4.8.0.orig/Documentation/filesystems/aufs/design/06fhsm.txt +++ linux-4.8.0/Documentation/filesystems/aufs/design/06fhsm.txt @@ -0,0 +1,120 @@ + +# Copyright (C) 2011-2016 Junjiro R. Okajima +# +# 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; either version 2 of the License, or +# (at your option) any later version. +# +# 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 + + +File-based Hierarchical Storage Management (FHSM) +---------------------------------------------------------------------- +Hierarchical Storage Management (or HSM) is a well-known feature in the +storage world. Aufs provides this feature as file-based with multiple +writable branches, based upon the principle of "Colder, the Lower". +Here the word "colder" means that the less used files, and "lower" means +that the position in the order of the stacked branches vertically. +These multiple writable branches are prioritized, ie. the topmost one +should be the fastest drive and be used heavily. + +o Characters in aufs FHSM story +- aufs itself and a new branch attribute. +- a new ioctl interface to move-down and to establish a connection with + the daemon ("move-down" is a converse of "copy-up"). +- userspace tool and daemon. + +The userspace daemon establishes a connection with aufs and waits for +the notification. The notified information is very similar to struct +statfs containing the number of consumed blocks and inodes. +When the consumed blocks/inodes of a branch exceeds the user-specified +upper watermark, the daemon activates its move-down process until the +consumed blocks/inodes reaches the user-specified lower watermark. + +The actual move-down is done by aufs based upon the request from +user-space since we need to maintain the inode number and the internal +pointer arrays in aufs. + +Currently aufs FHSM handles the regular files only. Additionally they +must not be hard-linked nor pseudo-linked. + + +o Cowork of aufs and the user-space daemon + During the userspace daemon established the connection, aufs sends a + small notification to it whenever aufs writes something into the + writable branch. But it may cost high since aufs issues statfs(2) + internally. So user can specify a new option to cache the + info. Actually the notification is controlled by these factors. + + the specified cache time. + + classified as "force" by aufs internally. + Until the specified time expires, aufs doesn't send the info + except the forced cases. When aufs decide forcing, the info is always + notified to userspace. + For example, the number of free inodes is generally large enough and + the shortage of it happens rarely. So aufs doesn't force the + notification when creating a new file, directory and others. This is + the typical case which aufs doesn't force. + When aufs writes the actual filedata and the files consumes any of new + blocks, the aufs forces notifying. + + +o Interfaces in aufs +- New branch attribute. + + fhsm + Specifies that the branch is managed by FHSM feature. In other word, + participant in the FHSM. + When nofhsm is set to the branch, it will not be the source/target + branch of the move-down operation. This attribute is set + independently from coo and moo attributes, and if you want full + FHSM, you should specify them as well. +- New mount option. + + fhsm_sec + Specifies a second to suppress many less important info to be + notified. +- New ioctl. + + AUFS_CTL_FHSM_FD + create a new file descriptor which userspace can read the notification + (a subset of struct statfs) from aufs. +- Module parameter 'brs' + It has to be set to 1. Otherwise the new mount option 'fhsm' will not + be set. +- mount helpers /sbin/mount.aufs and /sbin/umount.aufs + When there are two or more branches with fhsm attributes, + /sbin/mount.aufs invokes the user-space daemon and /sbin/umount.aufs + terminates it. As a result of remounting and branch-manipulation, the + number of branches with fhsm attribute can be one. In this case, + /sbin/mount.aufs will terminate the user-space daemon. + + +Finally the operation is done as these steps in kernel-space. +- make sure that, + + no one else is using the file. + + the file is not hard-linked. + + the file is not pseudo-linked. + + the file is a regular file. + + the parent dir is not opaqued. +- find the target writable branch. +- make sure the file is not whiteout-ed by the upper (than the target) + branch. +- make the parent dir on the target branch. +- mutex lock the inode on the branch. +- unlink the whiteout on the target branch (if exists). +- lookup and create the whiteout-ed temporary name on the target branch. +- copy the file as the whiteout-ed temporary name on the target branch. +- rename the whiteout-ed temporary name to the original name. +- unlink the file on the source branch. +- maintain the internal pointer array and the external inode number + table (XINO). +- maintain the timestamps and other attributes of the parent dir and the + file. + +And of course, in every step, an error may happen. So the operation +should restore the original file state after an error happens. --- linux-4.8.0.orig/Documentation/filesystems/aufs/design/06mmap.txt +++ linux-4.8.0/Documentation/filesystems/aufs/design/06mmap.txt @@ -0,0 +1,72 @@ + +# Copyright (C) 2005-2016 Junjiro R. Okajima +# +# 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; either version 2 of the License, or +# (at your option) any later version. +# +# 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, see . + +mmap(2) -- File Memory Mapping +---------------------------------------------------------------------- +In aufs, the file-mapped pages are handled by a branch fs directly, no +interaction with aufs. It means aufs_mmap() calls the branch fs's +->mmap(). +This approach is simple and good, but there is one problem. +Under /proc, several entries show the mmapped files by its path (with +device and inode number), and the printed path will be the path on the +branch fs's instead of virtual aufs's. +This is not a problem in most cases, but some utilities lsof(1) (and its +user) may expect the path on aufs. + +To address this issue, aufs adds a new member called vm_prfile in struct +vm_area_struct (and struct vm_region). The original vm_file points to +the file on the branch fs in order to handle everything correctly as +usual. The new vm_prfile points to a virtual file in aufs, and the +show-functions in procfs refers to vm_prfile if it is set. +Also we need to maintain several other places where touching vm_file +such like +- fork()/clone() copies vma and the reference count of vm_file is + incremented. +- merging vma maintains the ref count too. + +This is not a good approach. It just fakes the printed path. But it +leaves all behaviour around f_mapping unchanged. This is surely an +advantage. +Actually aufs had adopted another complicated approach which calls +generic_file_mmap() and handles struct vm_operations_struct. In this +approach, aufs met a hard problem and I could not solve it without +switching the approach. + +There may be one more another approach which is +- bind-mount the branch-root onto the aufs-root internally +- grab the new vfsmount (ie. struct mount) +- lazy-umount the branch-root internally +- in open(2) the aufs-file, open the branch-file with the hidden + vfsmount (instead of the original branch's vfsmount) +- ideally this "bind-mount and lazy-umount" should be done atomically, + but it may be possible from userspace by the mount helper. + +Adding the internal hidden vfsmount and using it in opening a file, the +file path under /proc will be printed correctly. This approach looks +smarter, but is not possible I am afraid. +- aufs-root may be bind-mount later. when it happens, another hidden + vfsmount will be required. +- it is hard to get the chance to bind-mount and lazy-umount + + in kernel-space, FS can have vfsmount in open(2) via + file->f_path, and aufs can know its vfsmount. But several locks are + already acquired, and if aufs tries to bind-mount and lazy-umount + here, then it may cause a deadlock. + + in user-space, bind-mount doesn't invoke the mount helper. +- since /proc shows dev and ino, aufs has to give vma these info. it + means a new member vm_prinode will be necessary. this is essentially + equivalent to vm_prfile described above. + +I have to give up this "looks-smater" approach. --- linux-4.8.0.orig/Documentation/filesystems/aufs/design/06xattr.txt +++ linux-4.8.0/Documentation/filesystems/aufs/design/06xattr.txt @@ -0,0 +1,96 @@ + +# Copyright (C) 2014-2016 Junjiro R. Okajima +# +# 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; either version 2 of the License, or +# (at your option) any later version. +# +# 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 + + +Listing XATTR/EA and getting the value +---------------------------------------------------------------------- +For the inode standard attributes (owner, group, timestamps, etc.), aufs +shows the values from the topmost existing file. This behaviour is good +for the non-dir entries since the bahaviour exactly matches the shown +information. But for the directories, aufs considers all the same named +entries on the lower branches. Which means, if one of the lower entry +rejects readdir call, then aufs returns an error even if the topmost +entry allows it. This behaviour is necessary to respect the branch fs's +security, but can make users confused since the user-visible standard +attributes don't match the behaviour. +To address this issue, aufs has a mount option called dirperm1 which +checks the permission for the topmost entry only, and ignores the lower +entry's permission. + +A similar issue can happen around XATTR. +getxattr(2) and listxattr(2) families behave as if dirperm1 option is +always set. Otherwise these very unpleasant situation would happen. +- listxattr(2) may return the duplicated entries. +- users may not be able to remove or reset the XATTR forever, + + +XATTR/EA support in the internal (copy,move)-(up,down) +---------------------------------------------------------------------- +Generally the extended attributes of inode are categorized as these. +- "security" for LSM and capability. +- "system" for posix ACL, 'acl' mount option is required for the branch + fs generally. +- "trusted" for userspace, CAP_SYS_ADMIN is required. +- "user" for userspace, 'user_xattr' mount option is required for the + branch fs generally. + +Moreover there are some other categories. Aufs handles these rather +unpopular categories as the ordinary ones, ie. there is no special +condition nor exception. + +In copy-up, the support for XATTR on the dst branch may differ from the +src branch. In this case, the copy-up operation will get an error and +the original user operation which triggered the copy-up will fail. It +can happen that even all copy-up will fail. +When both of src and dst branches support XATTR and if an error occurs +during copying XATTR, then the copy-up should fail obviously. That is a +good reason and aufs should return an error to userspace. But when only +the src branch support that XATTR, aufs should not return an error. +For example, the src branch supports ACL but the dst branch doesn't +because the dst branch may natively un-support it or temporary +un-support it due to "noacl" mount option. Of course, the dst branch fs +may NOT return an error even if the XATTR is not supported. It is +totally up to the branch fs. + +Anyway when the aufs internal copy-up gets an error from the dst branch +fs, then aufs tries removing the just copied entry and returns the error +to the userspace. The worst case of this situation will be all copy-up +will fail. + +For the copy-up operation, there two basic approaches. +- copy the specified XATTR only (by category above), and return the + error unconditionally if it happens. +- copy all XATTR, and ignore the error on the specified category only. + +In order to support XATTR and to implement the correct behaviour, aufs +chooses the latter approach and introduces some new branch attributes, +"icexsec", "icexsys", "icextr", "icexusr", and "icexoth". +They correspond to the XATTR namespaces (see above). Additionally, to be +convenient, "icex" is also provided which means all "icex*" attributes +are set (here the word "icex" stands for "ignore copy-error on XATTR"). + +The meaning of these attributes is to ignore the error from setting +XATTR on that branch. +Note that aufs tries copying all XATTR unconditionally, and ignores the +error from the dst branch according to the specified attributes. + +Some XATTR may have its default value. The default value may come from +the parent dir or the environment. If the default value is set at the +file creating-time, it will be overwritten by copy-up. +Some contradiction may happen I am afraid. +Do we need another attribute to stop copying XATTR? I am unsure. For +now, aufs implements the branch attributes to ignore the error. --- linux-4.8.0.orig/Documentation/filesystems/aufs/design/07export.txt +++ linux-4.8.0/Documentation/filesystems/aufs/design/07export.txt @@ -0,0 +1,58 @@ + +# Copyright (C) 2005-2016 Junjiro R. Okajima +# +# 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; either version 2 of the License, or +# (at your option) any later version. +# +# 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, see . + +Export Aufs via NFS +---------------------------------------------------------------------- +Here is an approach. +- like xino/xib, add a new file 'xigen' which stores aufs inode + generation. +- iget_locked(): initialize aufs inode generation for a new inode, and + store it in xigen file. +- destroy_inode(): increment aufs inode generation and store it in xigen + file. it is necessary even if it is not unlinked, because any data of + inode may be changed by UDBA. +- encode_fh(): for a root dir, simply return FILEID_ROOT. otherwise + build file handle by + + branch id (4 bytes) + + superblock generation (4 bytes) + + inode number (4 or 8 bytes) + + parent dir inode number (4 or 8 bytes) + + inode generation (4 bytes)) + + return value of exportfs_encode_fh() for the parent on a branch (4 + bytes) + + file handle for a branch (by exportfs_encode_fh()) +- fh_to_dentry(): + + find the index of a branch from its id in handle, and check it is + still exist in aufs. + + 1st level: get the inode number from handle and search it in cache. + + 2nd level: if not found in cache, get the parent inode number from + the handle and search it in cache. and then open the found parent + dir, find the matching inode number by vfs_readdir() and get its + name, and call lookup_one_len() for the target dentry. + + 3rd level: if the parent dir is not cached, call + exportfs_decode_fh() for a branch and get the parent on a branch, + build a pathname of it, convert it a pathname in aufs, call + path_lookup(). now aufs gets a parent dir dentry, then handle it as + the 2nd level. + + to open the dir, aufs needs struct vfsmount. aufs keeps vfsmount + for every branch, but not itself. to get this, (currently) aufs + searches in current->nsproxy->mnt_ns list. it may not be a good + idea, but I didn't get other approach. + + test the generation of the gotten inode. +- every inode operation: they may get EBUSY due to UDBA. in this case, + convert it into ESTALE for NFSD. +- readdir(): call lockdep_on/off() because filldir in NFSD calls + lookup_one_len(), vfs_getattr(), encode_fh() and others. --- linux-4.8.0.orig/Documentation/filesystems/aufs/design/08shwh.txt +++ linux-4.8.0/Documentation/filesystems/aufs/design/08shwh.txt @@ -0,0 +1,52 @@ + +# Copyright (C) 2005-2016 Junjiro R. Okajima +# +# 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; either version 2 of the License, or +# (at your option) any later version. +# +# 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, see . + +Show Whiteout Mode (shwh) +---------------------------------------------------------------------- +Generally aufs hides the name of whiteouts. But in some cases, to show +them is very useful for users. For instance, creating a new middle layer +(branch) by merging existing layers. + +(borrowing aufs1 HOW-TO from a user, Michael Towers) +When you have three branches, +- Bottom: 'system', squashfs (underlying base system), read-only +- Middle: 'mods', squashfs, read-only +- Top: 'overlay', ram (tmpfs), read-write + +The top layer is loaded at boot time and saved at shutdown, to preserve +the changes made to the system during the session. +When larger changes have been made, or smaller changes have accumulated, +the size of the saved top layer data grows. At this point, it would be +nice to be able to merge the two overlay branches ('mods' and 'overlay') +and rewrite the 'mods' squashfs, clearing the top layer and thus +restoring save and load speed. + +This merging is simplified by the use of another aufs mount, of just the +two overlay branches using the 'shwh' option. +# mount -t aufs -o ro,shwh,br:/livesys/overlay=ro+wh:/livesys/mods=rr+wh \ + aufs /livesys/merge_union + +A merged view of these two branches is then available at +/livesys/merge_union, and the new feature is that the whiteouts are +visible! +Note that in 'shwh' mode the aufs mount must be 'ro', which will disable +writing to all branches. Also the default mode for all branches is 'ro'. +It is now possible to save the combined contents of the two overlay +branches to a new squashfs, e.g.: +# mksquashfs /livesys/merge_union /path/to/newmods.squash + +This new squashfs archive can be stored on the boot device and the +initramfs will use it to replace the old one at the next boot. --- linux-4.8.0.orig/Documentation/filesystems/aufs/design/10dynop.txt +++ linux-4.8.0/Documentation/filesystems/aufs/design/10dynop.txt @@ -0,0 +1,47 @@ + +# Copyright (C) 2010-2016 Junjiro R. Okajima +# +# 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; either version 2 of the License, or +# (at your option) any later version. +# +# 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, see . + +Dynamically customizable FS operations +---------------------------------------------------------------------- +Generally FS operations (struct inode_operations, struct +address_space_operations, struct file_operations, etc.) are defined as +"static const", but it never means that FS have only one set of +operation. Some FS have multiple sets of them. For instance, ext2 has +three sets, one for XIP, for NOBH, and for normal. +Since aufs overrides and redirects these operations, sometimes aufs has +to change its behaviour according to the branch FS type. More importantly +VFS acts differently if a function (member in the struct) is set or +not. It means aufs should have several sets of operations and select one +among them according to the branch FS definition. + +In order to solve this problem and not to affect the behaviour of VFS, +aufs defines these operations dynamically. For instance, aufs defines +dummy direct_IO function for struct address_space_operations, but it may +not be set to the address_space_operations actually. When the branch FS +doesn't have it, aufs doesn't set it to its address_space_operations +while the function definition itself is still alive. So the behaviour +itself will not change, and it will return an error when direct_IO is +not set. + +The lifetime of these dynamically generated operation object is +maintained by aufs branch object. When the branch is removed from aufs, +the reference counter of the object is decremented. When it reaches +zero, the dynamically generated operation object will be freed. + +This approach is designed to support AIO (io_submit), Direct I/O and +XIP (DAX) mainly. +Currently this approach is applied to address_space_operations for +regular files only. --- linux-4.8.0.orig/Documentation/kernel-parameters.txt +++ linux-4.8.0/Documentation/kernel-parameters.txt @@ -799,6 +799,10 @@ /proc//coredump_filter. See also Documentation/filesystems/proc.txt. + cpufreq_driver= [X86] Allow only the named cpu frequency scaling driver + to register. Example: cpufreq_driver=powernow-k8 + Format: { none | STRING } + cpuidle.off=1 [CPU_IDLE] disable the cpuidle sub-system @@ -1457,7 +1461,14 @@ i8042.nopnp [HW] Don't use ACPIPnP / PnPBIOS to discover KBD/AUX controllers i8042.notimeout [HW] Ignore timeout condition signalled by controller - i8042.reset [HW] Reset the controller during init and cleanup + i8042.reset [HW] Reset the controller during init, cleanup and + suspend-to-ram transitions, only during s2r + transitions, or never reset + Format: { 1 | Y | y | 0 | N | n } + 1, Y, y: always reset controller + 0, N, n: don't ever reset controller + Default: only on s2r transitions on x86; most other + architectures force reset to be always executed i8042.unlock [HW] Unlock (ignore) the keylock i8042.kbdreset [HW] Reset device connected to KBD port @@ -1643,6 +1654,11 @@ initrd= [BOOT] Specify the location of the initial ramdisk + init_pkru= [x86] Specify the default memory protection keys rights + register contents for all processes. 0x55555554 by + default (disallow access to all but pkey 0). Can + override in debugfs after boot. + inport.irq= [HW] Inport (ATI XL and Microsoft) busmouse driver Format: @@ -3845,6 +3861,13 @@ spia_pedr= spia_peddr= + stack_guard_gap= [MM] + override the default stack gap protection. The value + is in page units and it defines how many pages prior + to (for stacks growing down) resp. after (for stacks + growing up) the main stack are reserved for no other + mapping. Default value is 256 pages. + stacktrace [FTRACE] Enabled the stack tracer on boot up. --- linux-4.8.0.orig/Documentation/networking/00-INDEX +++ linux-4.8.0/Documentation/networking/00-INDEX @@ -74,6 +74,8 @@ - The DNS resolver module allows kernel servies to make DNS queries. driver.txt - Softnet driver issues. +ena.txt + - info on Amazon's Elastic Network Adapter (ENA) e100.txt - info on Intel's EtherExpress PRO/100 line of 10/100 boards e1000.txt --- linux-4.8.0.orig/Documentation/sphinx/rstFlatTable.py +++ linux-4.8.0/Documentation/sphinx/rstFlatTable.py @@ -151,6 +151,11 @@ def buildTableNode(self): colwidths = self.directive.get_column_widths(self.max_cols) + if isinstance(colwidths, tuple): + # Since docutils 0.13, get_column_widths returns a (widths, + # colwidths) tuple, where widths is a string (i.e. 'auto'). + # See https://sourceforge.net/p/docutils/patches/120/. + colwidths = colwidths[1] stub_columns = self.directive.options.get('stub-columns', 0) header_rows = self.directive.options.get('header-rows', 0) --- linux-4.8.0.orig/Documentation/sysctl/fs.txt +++ linux-4.8.0/Documentation/sysctl/fs.txt @@ -265,6 +265,13 @@ ============================================================== +mount-max: + +This denotes the maximum number of mounts that may exist +in a mount namespace. + +============================================================== + 2. /proc/sys/fs/binfmt_misc ---------------------------------------------------------- --- linux-4.8.0.orig/Documentation/virtual/kvm/api.txt +++ linux-4.8.0/Documentation/virtual/kvm/api.txt @@ -2023,6 +2023,8 @@ PPC | KVM_REG_PPC_WORT | 64 PPC | KVM_REG_PPC_SPRG9 | 64 PPC | KVM_REG_PPC_DBSR | 32 + PPC | KVM_REG_PPC_TIDR | 64 + PPC | KVM_REG_PPC_PSSCR | 64 PPC | KVM_REG_PPC_TM_GPR0 | 64 ... PPC | KVM_REG_PPC_TM_GPR31 | 64 @@ -2039,6 +2041,7 @@ PPC | KVM_REG_PPC_TM_VSCR | 32 PPC | KVM_REG_PPC_TM_DSCR | 64 PPC | KVM_REG_PPC_TM_TAR | 64 + PPC | KVM_REG_PPC_TM_XER | 64 | | MIPS | KVM_REG_MIPS_R0 | 64 ... --- linux-4.8.0.orig/Documentation/virtual/kvm/devices/vcpu.txt +++ linux-4.8.0/Documentation/virtual/kvm/devices/vcpu.txt @@ -30,4 +30,6 @@ attribute -EBUSY: PMUv3 already initialized -Request the initialization of the PMUv3. +Request the initialization of the PMUv3. This must be done after creating the +in-kernel irqchip. Creating a PMU with a userspace irqchip is currently not +supported. --- linux-4.8.0.orig/Documentation/x86/protection-keys.txt +++ linux-4.8.0/Documentation/x86/protection-keys.txt @@ -18,6 +18,68 @@ permissions are enforced on data access only and have no effect on instruction fetches. +=========================== Syscalls =========================== + +There are 2 system calls which directly interact with pkeys: + + int pkey_alloc(unsigned long flags, unsigned long init_access_rights) + int pkey_free(int pkey); + int pkey_mprotect(unsigned long start, size_t len, + unsigned long prot, int pkey); + +Before a pkey can be used, it must first be allocated with +pkey_alloc(). An application calls the WRPKRU instruction +directly in order to change access permissions to memory covered +with a key. In this example WRPKRU is wrapped by a C function +called pkey_set(). + + int real_prot = PROT_READ|PROT_WRITE; + pkey = pkey_alloc(0, PKEY_DENY_WRITE); + ptr = mmap(NULL, PAGE_SIZE, PROT_NONE, MAP_ANONYMOUS|MAP_PRIVATE, -1, 0); + ret = pkey_mprotect(ptr, PAGE_SIZE, real_prot, pkey); + ... application runs here + +Now, if the application needs to update the data at 'ptr', it can +gain access, do the update, then remove its write access: + + pkey_set(pkey, 0); // clear PKEY_DENY_WRITE + *ptr = foo; // assign something + pkey_set(pkey, PKEY_DENY_WRITE); // set PKEY_DENY_WRITE again + +Now when it frees the memory, it will also free the pkey since it +is no longer in use: + + munmap(ptr, PAGE_SIZE); + pkey_free(pkey); + +=========================== Behavior =========================== + +The kernel attempts to make protection keys consistent with the +behavior of a plain mprotect(). For instance if you do this: + + mprotect(ptr, size, PROT_NONE); + something(ptr); + +you can expect the same effects with protection keys when doing this: + + pkey = pkey_alloc(0, PKEY_DISABLE_WRITE | PKEY_DISABLE_READ); + pkey_mprotect(ptr, size, PROT_READ|PROT_WRITE, pkey); + something(ptr); + +That should be true whether something() is a direct access to 'ptr' +like: + + *ptr = foo; + +or when the kernel does the access on the application's behalf like +with a read(): + + read(fd, ptr, 1); + +The kernel will send a SIGSEGV in both cases, but si_code will be set +to SEGV_PKERR when violating protection keys versus SEGV_ACCERR when +the plain mprotect() permissions are violated. + =========================== Config Option =========================== This config option adds approximately 1.5kb of text. and 50 bytes of --- linux-4.8.0.orig/Documentation/x86/zero-page.txt +++ linux-4.8.0/Documentation/x86/zero-page.txt @@ -31,6 +31,8 @@ 1E9/001 ALL eddbuf_entries Number of entries in eddbuf (below) 1EA/001 ALL edd_mbr_sig_buf_entries Number of entries in edd_mbr_sig_buffer (below) +1EB/001 ALL kbd_status Numlock is enabled +1EC/001 ALL secure_boot Secure boot is enabled in the firmware 1EF/001 ALL sentinel Used to detect broken bootloaders 290/040 ALL edd_mbr_sig_buffer EDD MBR signatures 2D0/A00 ALL e820_map E820 memory map table --- linux-4.8.0.orig/MAINTAINERS +++ linux-4.8.0/MAINTAINERS @@ -636,6 +636,15 @@ F: include/linux/altera_uart.h F: include/linux/altera_jtaguart.h +AMAZON ETHERNET DRIVERS +M: Netanel Belgazal +R: Saeed Bishara +R: Zorik Machulsky +L: netdev@vger.kernel.org +S: Supported +F: Documentation/networking/ena.txt +F: drivers/net/ethernet/amazon/ + AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER M: Tom Lendacky M: Gary Hook @@ -2256,6 +2265,19 @@ F: include/uapi/linux/audit.h F: kernel/audit* +AUFS (advanced multi layered unification filesystem) FILESYSTEM +M: "J. R. Okajima" +L: linux-unionfs@vger.kernel.org +L: aufs-users@lists.sourceforge.net (members only) +W: http://aufs.sourceforge.net +T: git://github.com/sfjro/aufs4-linux.git +S: Supported +F: Documentation/filesystems/aufs/ +F: Documentation/ABI/testing/debugfs-aufs +F: Documentation/ABI/testing/sysfs-aufs +F: fs/aufs/ +F: include/uapi/linux/aufs_type.h + AUXILIARY DISPLAY DRIVERS M: Miguel Ojeda Sandonis W: http://miguelojeda.es/auxdisplay.htm @@ -2889,6 +2911,14 @@ F: drivers/iio/light/cm* F: Documentation/devicetree/bindings/i2c/trivial-devices.txt +CAVIUM I2C DRIVER +M: Jan Glauber +M: David Daney +W: http://www.cavium.com +S: Supported +F: drivers/i2c/busses/i2c-octeon* +F: drivers/i2c/busses/i2c-thunderx* + CAVIUM LIQUIDIO NETWORK DRIVER M: Derek Chickles M: Satanand Burla @@ -4584,6 +4614,13 @@ S: Maintained F: drivers/video/fbdev/efifb.c +EFI TEST DRIVER +L: linux-efi@vger.kernel.org +M: Ivan Hu +M: Matt Fleming +S: Maintained +F: drivers/firmware/efi/test/ + EFS FILESYSTEM W: http://aeschi.ch.eu.org/efs/ S: Orphan @@ -5660,6 +5697,7 @@ F: arch/x86/include/asm/mshyperv.h F: arch/x86/include/uapi/asm/hyperv.h F: arch/x86/kernel/cpu/mshyperv.c +F: arch/x86/hyperv F: drivers/hid/hid-hyperv.c F: drivers/hv/ F: drivers/input/serio/hyperv-keyboard.c @@ -12951,11 +12989,10 @@ F: drivers/xen/*swiotlb* XFS FILESYSTEM -P: Silicon Graphics Inc M: Dave Chinner -M: xfs@oss.sgi.com -L: xfs@oss.sgi.com -W: http://oss.sgi.com/projects/xfs +M: linux-xfs@vger.kernel.org +L: linux-xfs@vger.kernel.org +W: http://xfs.org/ T: git git://git.kernel.org/pub/scm/linux/kernel/git/dgc/linux-xfs.git S: Supported F: Documentation/filesystems/xfs.txt --- linux-4.8.0.orig/Makefile +++ linux-4.8.0/Makefile @@ -1,6 +1,6 @@ VERSION = 4 PATCHLEVEL = 8 -SUBLEVEL = 0 +SUBLEVEL = 17 EXTRAVERSION = NAME = Psychotic Stoned Sheep @@ -373,6 +373,12 @@ CFLAGS_GCOV = -fprofile-arcs -ftest-coverage -fno-tree-loop-im CFLAGS_KCOV := $(call cc-option,-fsanitize-coverage=trace-pc,) +# Prefer linux-backports-modules +ifneq ($(KBUILD_SRC),) +ifneq ($(shell if test -e $(KBUILD_OUTPUT)/ubuntu-build; then echo yes; fi),yes) +UBUNTUINCLUDE := -I/usr/src/linux-headers-lbm-$(KERNELRELEASE) +endif +endif # Use USERINCLUDE when you must reference the UAPI directories only. USERINCLUDE := \ @@ -385,6 +391,7 @@ # Use LINUXINCLUDE when you must reference the include/ directory. # Needed to be compatible with the O= option LINUXINCLUDE := \ + $(UBUNTUINCLUDE) \ -I$(srctree)/arch/$(hdr-arch)/include \ -I$(objtree)/arch/$(hdr-arch)/include/generated/uapi \ -I$(objtree)/arch/$(hdr-arch)/include/generated \ @@ -393,17 +400,21 @@ LINUXINCLUDE += $(filter-out $(LINUXINCLUDE),$(USERINCLUDE)) +# UBUNTU: Include our third party driver stuff too +LINUXINCLUDE += -Iubuntu/include $(if $(KBUILD_SRC),-I$(srctree)/ubuntu/include) + KBUILD_CPPFLAGS := -D__KERNEL__ KBUILD_CFLAGS := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \ -fno-strict-aliasing -fno-common \ -Werror-implicit-function-declaration \ -Wno-format-security \ - -std=gnu89 + -std=gnu89 $(call cc-option,-fno-PIE) + KBUILD_AFLAGS_KERNEL := KBUILD_CFLAGS_KERNEL := -KBUILD_AFLAGS := -D__ASSEMBLY__ +KBUILD_AFLAGS := -D__ASSEMBLY__ $(call cc-option,-fno-PIE) KBUILD_AFLAGS_MODULE := -DMODULE KBUILD_CFLAGS_MODULE := -DMODULE KBUILD_LDFLAGS_MODULE := -T $(srctree)/scripts/module-common.lds @@ -560,7 +571,7 @@ # Objects we will link into vmlinux / subdirs we need to visit init-y := init/ -drivers-y := drivers/ sound/ firmware/ +drivers-y := drivers/ sound/ firmware/ ubuntu/ net-y := net/ libs-y := lib/ core-y := usr/ @@ -612,6 +623,12 @@ # Defaults to vmlinux, but the arch makefile usually adds further targets all: vmlinux +# force no-pie for distro compilers that enable pie by default +KBUILD_CFLAGS += $(call cc-option, -fno-pie) +KBUILD_CFLAGS += $(call cc-option, -no-pie) +KBUILD_AFLAGS += $(call cc-option, -fno-pie) +KBUILD_CPPFLAGS += $(call cc-option, -fno-pie) + # The arch Makefile can set ARCH_{CPP,A,C}FLAGS to override the default # values of the respective KBUILD_* variables ARCH_CPPFLAGS := @@ -621,6 +638,7 @@ KBUILD_CFLAGS += $(call cc-option,-fno-delete-null-pointer-checks,) KBUILD_CFLAGS += $(call cc-disable-warning,maybe-uninitialized,) +KBUILD_CFLAGS += $(call cc-disable-warning,frame-address,) ifdef CONFIG_CC_OPTIMIZE_FOR_SIZE KBUILD_CFLAGS += -Os @@ -1130,6 +1148,7 @@ $(error Headers not exportable for the $(SRCARCH) architecture)) $(Q)$(MAKE) $(hdr-inst)=include/uapi $(Q)$(MAKE) $(hdr-inst)=arch/$(hdr-arch)/include/uapi/asm $(hdr-dst) + $(Q)$(MAKE) $(hdr-inst)=ubuntu/include dst=include oldheaders= PHONY += headers_check_all headers_check_all: headers_install_all @@ -1139,6 +1158,7 @@ headers_check: headers_install $(Q)$(MAKE) $(hdr-inst)=include/uapi HDRCHECK=1 $(Q)$(MAKE) $(hdr-inst)=arch/$(hdr-arch)/include/uapi/asm $(hdr-dst) HDRCHECK=1 + $(Q)$(MAKE) $(hdr-inst)=ubuntu/include dst=include oldheaders= HDRCHECK=1 # --------------------------------------------------------------------------- # Kernel selftest --- linux-4.8.0.orig/arch/alpha/include/uapi/asm/mman.h +++ linux-4.8.0/arch/alpha/include/uapi/asm/mman.h @@ -78,4 +78,9 @@ #define MAP_HUGE_SHIFT 26 #define MAP_HUGE_MASK 0x3f +#define PKEY_DISABLE_ACCESS 0x1 +#define PKEY_DISABLE_WRITE 0x2 +#define PKEY_ACCESS_MASK (PKEY_DISABLE_ACCESS |\ + PKEY_DISABLE_WRITE) + #endif /* __ALPHA_MMAN_H__ */ --- linux-4.8.0.orig/arch/arc/include/asm/cacheflush.h +++ linux-4.8.0/arch/arc/include/asm/cacheflush.h @@ -85,6 +85,10 @@ */ #define PG_dc_clean PG_arch_1 +#define CACHE_COLORS_NUM 4 +#define CACHE_COLORS_MSK (CACHE_COLORS_NUM - 1) +#define CACHE_COLOR(addr) (((unsigned long)(addr) >> (PAGE_SHIFT)) & CACHE_COLORS_MSK) + /* * Simple wrapper over config option * Bootup code ensures that hardware matches kernel configuration @@ -94,8 +98,6 @@ return IS_ENABLED(CONFIG_ARC_CACHE_VIPT_ALIASING); } -#define CACHE_COLOR(addr) (((unsigned long)(addr) >> (PAGE_SHIFT)) & 1) - /* * checks if two addresses (after page aligning) index into same cache set */ --- linux-4.8.0.orig/arch/arc/include/asm/delay.h +++ linux-4.8.0/arch/arc/include/asm/delay.h @@ -22,10 +22,11 @@ static inline void __delay(unsigned long loops) { __asm__ __volatile__( - " lp 1f \n" - " nop \n" - "1: \n" - : "+l"(loops)); + " mov lp_count, %0 \n" + " lp 1f \n" + " nop \n" + "1: \n" + : : "r"(loops)); } extern void __bad_udelay(void); --- linux-4.8.0.orig/arch/arc/include/asm/irqflags-arcv2.h +++ linux-4.8.0/arch/arc/include/asm/irqflags-arcv2.h @@ -112,7 +112,7 @@ */ temp = (1 << 5) | ((!!(temp & STATUS_IE_MASK)) << CLRI_STATUS_IE_BIT) | - (temp & CLRI_STATUS_E_MASK); + ((temp >> 1) & CLRI_STATUS_E_MASK); return temp; } --- linux-4.8.0.orig/arch/arc/include/asm/pgtable.h +++ linux-4.8.0/arch/arc/include/asm/pgtable.h @@ -280,7 +280,7 @@ #define pte_page(pte) pfn_to_page(pte_pfn(pte)) #define mk_pte(page, prot) pfn_pte(page_to_pfn(page), prot) -#define pfn_pte(pfn, prot) __pte(((pfn) << PAGE_SHIFT) | pgprot_val(prot)) +#define pfn_pte(pfn, prot) __pte(__pfn_to_phys(pfn) | pgprot_val(prot)) /* Don't use virt_to_pfn for macros below: could cause truncations for PAE40*/ #define pte_pfn(pte) (pte_val(pte) >> PAGE_SHIFT) --- linux-4.8.0.orig/arch/arc/kernel/intc-arcv2.c +++ linux-4.8.0/arch/arc/kernel/intc-arcv2.c @@ -74,7 +74,7 @@ tmp = read_aux_reg(0xa); tmp |= STATUS_AD_MASK | (irq_prio << 1); tmp &= ~STATUS_IE_MASK; - asm volatile("flag %0 \n"::"r"(tmp)); + asm volatile("kflag %0 \n"::"r"(tmp)); } static void arcv2_irq_mask(struct irq_data *data) --- linux-4.8.0.orig/arch/arc/kernel/signal.c +++ linux-4.8.0/arch/arc/kernel/signal.c @@ -107,13 +107,13 @@ struct user_regs_struct uregs; err = __copy_from_user(&set, &sf->uc.uc_sigmask, sizeof(set)); - if (!err) - set_current_blocked(&set); - err |= __copy_from_user(&uregs.scratch, &(sf->uc.uc_mcontext.regs.scratch), sizeof(sf->uc.uc_mcontext.regs.scratch)); + if (err) + return err; + set_current_blocked(&set); regs->bta = uregs.scratch.bta; regs->lp_start = uregs.scratch.lp_start; regs->lp_end = uregs.scratch.lp_end; @@ -138,7 +138,7 @@ regs->r0 = uregs.scratch.r0; regs->sp = uregs.scratch.sp; - return err; + return 0; } static inline int is_do_ss_needed(unsigned int magic) --- linux-4.8.0.orig/arch/arc/kernel/time.c +++ linux-4.8.0/arch/arc/kernel/time.c @@ -152,14 +152,17 @@ cycle_t full; } stamp; - - __asm__ __volatile( - "1: \n" - " lr %0, [AUX_RTC_LOW] \n" - " lr %1, [AUX_RTC_HIGH] \n" - " lr %2, [AUX_RTC_CTRL] \n" - " bbit0.nt %2, 31, 1b \n" - : "=r" (stamp.low), "=r" (stamp.high), "=r" (status)); + /* + * hardware has an internal state machine which tracks readout of + * low/high and updates the CTRL.status if + * - interrupt/exception taken between the two reads + * - high increments after low has been read + */ + do { + stamp.low = read_aux_reg(AUX_RTC_LOW); + stamp.high = read_aux_reg(AUX_RTC_HIGH); + status = read_aux_reg(AUX_RTC_CTRL); + } while (!(status & _BITUL(31))); return stamp.full; } --- linux-4.8.0.orig/arch/arc/mm/cache.c +++ linux-4.8.0/arch/arc/mm/cache.c @@ -967,11 +967,16 @@ /* check for D-Cache aliasing on ARCompact: ARCv2 has PIPT */ if (is_isa_arcompact()) { int handled = IS_ENABLED(CONFIG_ARC_CACHE_VIPT_ALIASING); + int num_colors = dc->sz_k/dc->assoc/TO_KB(PAGE_SIZE); - if (dc->alias && !handled) - panic("Enable CONFIG_ARC_CACHE_VIPT_ALIASING\n"); - else if (!dc->alias && handled) + if (dc->alias) { + if (!handled) + panic("Enable CONFIG_ARC_CACHE_VIPT_ALIASING\n"); + if (CACHE_COLORS_NUM != num_colors) + panic("CACHE_COLORS_NUM not optimized for config\n"); + } else if (!dc->alias && handled) { panic("Disable CONFIG_ARC_CACHE_VIPT_ALIASING\n"); + } } } --- linux-4.8.0.orig/arch/arc/mm/dma.c +++ linux-4.8.0/arch/arc/mm/dma.c @@ -105,6 +105,31 @@ __free_pages(page, get_order(size)); } +static int arc_dma_mmap(struct device *dev, struct vm_area_struct *vma, + void *cpu_addr, dma_addr_t dma_addr, size_t size, + unsigned long attrs) +{ + unsigned long user_count = vma_pages(vma); + unsigned long count = PAGE_ALIGN(size) >> PAGE_SHIFT; + unsigned long pfn = __phys_to_pfn(plat_dma_to_phys(dev, dma_addr)); + unsigned long off = vma->vm_pgoff; + int ret = -ENXIO; + + vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot); + + if (dma_mmap_from_coherent(dev, vma, cpu_addr, size, &ret)) + return ret; + + if (off < count && user_count <= (count - off)) { + ret = remap_pfn_range(vma, vma->vm_start, + pfn + off, + user_count << PAGE_SHIFT, + vma->vm_page_prot); + } + + return ret; +} + /* * streaming DMA Mapping API... * CPU accesses page via normal paddr, thus needs to explicitly made @@ -193,6 +218,7 @@ struct dma_map_ops arc_dma_ops = { .alloc = arc_dma_alloc, .free = arc_dma_free, + .mmap = arc_dma_mmap, .map_page = arc_dma_map_page, .map_sg = arc_dma_map_sg, .sync_single_for_device = arc_dma_sync_single_for_device, --- linux-4.8.0.orig/arch/arc/mm/mmap.c +++ linux-4.8.0/arch/arc/mm/mmap.c @@ -64,7 +64,7 @@ vma = find_vma(mm, addr); if (TASK_SIZE - len >= addr && - (!vma || addr + len <= vma->vm_start)) + (!vma || addr + len <= vm_start_gap(vma))) return addr; } --- linux-4.8.0.orig/arch/arm/Kconfig +++ linux-4.8.0/arch/arm/Kconfig @@ -2193,6 +2193,7 @@ source "drivers/Kconfig" source "drivers/firmware/Kconfig" +source "ubuntu/Kconfig" source "fs/Kconfig" --- linux-4.8.0.orig/arch/arm/boot/dts/arm-realview-eb.dtsi +++ linux-4.8.0/arch/arm/boot/dts/arm-realview-eb.dtsi @@ -51,14 +51,6 @@ regulator-boot-on; }; - veth: fixedregulator@0 { - compatible = "regulator-fixed"; - regulator-name = "veth"; - regulator-min-microvolt = <3300000>; - regulator-max-microvolt = <3300000>; - regulator-boot-on; - }; - xtal24mhz: xtal24mhz@24M { #clock-cells = <0>; compatible = "fixed-clock"; @@ -134,16 +126,15 @@ bank-width = <4>; }; - /* SMSC 9118 ethernet with PHY and EEPROM */ + /* SMSC LAN91C111 ethernet with PHY and EEPROM */ ethernet: ethernet@4e000000 { - compatible = "smsc,lan9118", "smsc,lan9115"; + compatible = "smsc,lan91c111"; reg = <0x4e000000 0x10000>; - phy-mode = "mii"; - reg-io-width = <4>; - smsc,irq-active-high; - smsc,irq-push-pull; - vdd33a-supply = <&veth>; - vddvario-supply = <&veth>; + /* + * This means the adapter can be accessed with 8, 16 or + * 32 bit reads/writes. + */ + reg-io-width = <7>; }; usb: usb@4f000000 { --- linux-4.8.0.orig/arch/arm/boot/dts/armada-390.dtsi +++ linux-4.8.0/arch/arm/boot/dts/armada-390.dtsi @@ -47,6 +47,8 @@ #include "armada-39x.dtsi" / { + compatible = "marvell,armada390"; + soc { internal-regs { pinctrl@18000 { @@ -54,4 +56,5 @@ reg = <0x18000 0x20>; }; }; + }; }; --- linux-4.8.0.orig/arch/arm/boot/dts/bcm958625hr.dts +++ linux-4.8.0/arch/arm/boot/dts/bcm958625hr.dts @@ -47,7 +47,8 @@ }; memory { - reg = <0x60000000 0x20000000>; + device_type = "memory"; + reg = <0x60000000 0x80000000>; }; }; --- linux-4.8.0.orig/arch/arm/boot/dts/imx53-qsb.dts +++ linux-4.8.0/arch/arm/boot/dts/imx53-qsb.dts @@ -64,8 +64,8 @@ }; ldo3_reg: ldo3 { - regulator-min-microvolt = <600000>; - regulator-max-microvolt = <1800000>; + regulator-min-microvolt = <1725000>; + regulator-max-microvolt = <3300000>; regulator-always-on; }; @@ -76,8 +76,8 @@ }; ldo5_reg: ldo5 { - regulator-min-microvolt = <1725000>; - regulator-max-microvolt = <3300000>; + regulator-min-microvolt = <1200000>; + regulator-max-microvolt = <3600000>; regulator-always-on; }; @@ -100,14 +100,14 @@ }; ldo9_reg: ldo9 { - regulator-min-microvolt = <1200000>; + regulator-min-microvolt = <1250000>; regulator-max-microvolt = <3600000>; regulator-always-on; }; ldo10_reg: ldo10 { - regulator-min-microvolt = <1250000>; - regulator-max-microvolt = <3650000>; + regulator-min-microvolt = <1200000>; + regulator-max-microvolt = <3600000>; regulator-always-on; }; }; --- linux-4.8.0.orig/arch/arm/boot/dts/imx7s.dtsi +++ linux-4.8.0/arch/arm/boot/dts/imx7s.dtsi @@ -640,9 +640,8 @@ reg = <0x30730000 0x10000>; interrupts = ; clocks = <&clks IMX7D_LCDIF_PIXEL_ROOT_CLK>, - <&clks IMX7D_CLK_DUMMY>, - <&clks IMX7D_CLK_DUMMY>; - clock-names = "pix", "axi", "disp_axi"; + <&clks IMX7D_LCDIF_PIXEL_ROOT_CLK>; + clock-names = "pix", "axi"; status = "disabled"; }; }; --- linux-4.8.0.orig/arch/arm/boot/dts/omap3-overo-common-lcd35.dtsi +++ linux-4.8.0/arch/arm/boot/dts/omap3-overo-common-lcd35.dtsi @@ -119,7 +119,7 @@ pinctrl-names = "default"; pinctrl-0 = <&mcspi1_pins>; - lcd0: display { + lcd0: display@1 { compatible = "lgphilips,lb035q02"; label = "lcd35"; --- linux-4.8.0.orig/arch/arm/boot/dts/orion5x-linkstation-lsgl.dts +++ linux-4.8.0/arch/arm/boot/dts/orion5x-linkstation-lsgl.dts @@ -82,6 +82,10 @@ gpios = <&gpio0 9 GPIO_ACTIVE_HIGH>; }; +&sata { + nr-ports = <2>; +}; + &ehci1 { status = "okay"; }; --- linux-4.8.0.orig/arch/arm/boot/dts/qcom-apq8064.dtsi +++ linux-4.8.0/arch/arm/boot/dts/qcom-apq8064.dtsi @@ -5,6 +5,7 @@ #include #include #include +#include #include / { model = "Qualcomm APQ8064"; @@ -559,22 +560,50 @@ compatible = "qcom,pm8921-gpio", "qcom,ssbi-gpio"; reg = <0x150>; - interrupts = <192 1>, <193 1>, <194 1>, - <195 1>, <196 1>, <197 1>, - <198 1>, <199 1>, <200 1>, - <201 1>, <202 1>, <203 1>, - <204 1>, <205 1>, <206 1>, - <207 1>, <208 1>, <209 1>, - <210 1>, <211 1>, <212 1>, - <213 1>, <214 1>, <215 1>, - <216 1>, <217 1>, <218 1>, - <219 1>, <220 1>, <221 1>, - <222 1>, <223 1>, <224 1>, - <225 1>, <226 1>, <227 1>, - <228 1>, <229 1>, <230 1>, - <231 1>, <232 1>, <233 1>, - <234 1>, <235 1>; - + interrupts = <192 IRQ_TYPE_NONE>, + <193 IRQ_TYPE_NONE>, + <194 IRQ_TYPE_NONE>, + <195 IRQ_TYPE_NONE>, + <196 IRQ_TYPE_NONE>, + <197 IRQ_TYPE_NONE>, + <198 IRQ_TYPE_NONE>, + <199 IRQ_TYPE_NONE>, + <200 IRQ_TYPE_NONE>, + <201 IRQ_TYPE_NONE>, + <202 IRQ_TYPE_NONE>, + <203 IRQ_TYPE_NONE>, + <204 IRQ_TYPE_NONE>, + <205 IRQ_TYPE_NONE>, + <206 IRQ_TYPE_NONE>, + <207 IRQ_TYPE_NONE>, + <208 IRQ_TYPE_NONE>, + <209 IRQ_TYPE_NONE>, + <210 IRQ_TYPE_NONE>, + <211 IRQ_TYPE_NONE>, + <212 IRQ_TYPE_NONE>, + <213 IRQ_TYPE_NONE>, + <214 IRQ_TYPE_NONE>, + <215 IRQ_TYPE_NONE>, + <216 IRQ_TYPE_NONE>, + <217 IRQ_TYPE_NONE>, + <218 IRQ_TYPE_NONE>, + <219 IRQ_TYPE_NONE>, + <220 IRQ_TYPE_NONE>, + <221 IRQ_TYPE_NONE>, + <222 IRQ_TYPE_NONE>, + <223 IRQ_TYPE_NONE>, + <224 IRQ_TYPE_NONE>, + <225 IRQ_TYPE_NONE>, + <226 IRQ_TYPE_NONE>, + <227 IRQ_TYPE_NONE>, + <228 IRQ_TYPE_NONE>, + <229 IRQ_TYPE_NONE>, + <230 IRQ_TYPE_NONE>, + <231 IRQ_TYPE_NONE>, + <232 IRQ_TYPE_NONE>, + <233 IRQ_TYPE_NONE>, + <234 IRQ_TYPE_NONE>, + <235 IRQ_TYPE_NONE>; gpio-controller; #gpio-cells = <2>; @@ -587,9 +616,18 @@ gpio-controller; #gpio-cells = <2>; interrupts = - <128 1>, <129 1>, <130 1>, <131 1>, - <132 1>, <133 1>, <134 1>, <135 1>, - <136 1>, <137 1>, <138 1>, <139 1>; + <128 IRQ_TYPE_NONE>, + <129 IRQ_TYPE_NONE>, + <130 IRQ_TYPE_NONE>, + <131 IRQ_TYPE_NONE>, + <132 IRQ_TYPE_NONE>, + <133 IRQ_TYPE_NONE>, + <134 IRQ_TYPE_NONE>, + <135 IRQ_TYPE_NONE>, + <136 IRQ_TYPE_NONE>, + <137 IRQ_TYPE_NONE>, + <138 IRQ_TYPE_NONE>, + <139 IRQ_TYPE_NONE>; }; rtc@11d { --- linux-4.8.0.orig/arch/arm/boot/dts/qcom-msm8660.dtsi +++ linux-4.8.0/arch/arm/boot/dts/qcom-msm8660.dtsi @@ -2,6 +2,7 @@ /include/ "skeleton.dtsi" +#include #include #include #include @@ -159,21 +160,50 @@ "qcom,ssbi-gpio"; reg = <0x150>; interrupt-parent = <&pmicintc>; - interrupts = <192 1>, <193 1>, <194 1>, - <195 1>, <196 1>, <197 1>, - <198 1>, <199 1>, <200 1>, - <201 1>, <202 1>, <203 1>, - <204 1>, <205 1>, <206 1>, - <207 1>, <208 1>, <209 1>, - <210 1>, <211 1>, <212 1>, - <213 1>, <214 1>, <215 1>, - <216 1>, <217 1>, <218 1>, - <219 1>, <220 1>, <221 1>, - <222 1>, <223 1>, <224 1>, - <225 1>, <226 1>, <227 1>, - <228 1>, <229 1>, <230 1>, - <231 1>, <232 1>, <233 1>, - <234 1>, <235 1>; + interrupts = <192 IRQ_TYPE_NONE>, + <193 IRQ_TYPE_NONE>, + <194 IRQ_TYPE_NONE>, + <195 IRQ_TYPE_NONE>, + <196 IRQ_TYPE_NONE>, + <197 IRQ_TYPE_NONE>, + <198 IRQ_TYPE_NONE>, + <199 IRQ_TYPE_NONE>, + <200 IRQ_TYPE_NONE>, + <201 IRQ_TYPE_NONE>, + <202 IRQ_TYPE_NONE>, + <203 IRQ_TYPE_NONE>, + <204 IRQ_TYPE_NONE>, + <205 IRQ_TYPE_NONE>, + <206 IRQ_TYPE_NONE>, + <207 IRQ_TYPE_NONE>, + <208 IRQ_TYPE_NONE>, + <209 IRQ_TYPE_NONE>, + <210 IRQ_TYPE_NONE>, + <211 IRQ_TYPE_NONE>, + <212 IRQ_TYPE_NONE>, + <213 IRQ_TYPE_NONE>, + <214 IRQ_TYPE_NONE>, + <215 IRQ_TYPE_NONE>, + <216 IRQ_TYPE_NONE>, + <217 IRQ_TYPE_NONE>, + <218 IRQ_TYPE_NONE>, + <219 IRQ_TYPE_NONE>, + <220 IRQ_TYPE_NONE>, + <221 IRQ_TYPE_NONE>, + <222 IRQ_TYPE_NONE>, + <223 IRQ_TYPE_NONE>, + <224 IRQ_TYPE_NONE>, + <225 IRQ_TYPE_NONE>, + <226 IRQ_TYPE_NONE>, + <227 IRQ_TYPE_NONE>, + <228 IRQ_TYPE_NONE>, + <229 IRQ_TYPE_NONE>, + <230 IRQ_TYPE_NONE>, + <231 IRQ_TYPE_NONE>, + <232 IRQ_TYPE_NONE>, + <233 IRQ_TYPE_NONE>, + <234 IRQ_TYPE_NONE>, + <235 IRQ_TYPE_NONE>; gpio-controller; #gpio-cells = <2>; @@ -187,9 +217,18 @@ #gpio-cells = <2>; interrupt-parent = <&pmicintc>; interrupts = - <128 1>, <129 1>, <130 1>, <131 1>, - <132 1>, <133 1>, <134 1>, <135 1>, - <136 1>, <137 1>, <138 1>, <139 1>; + <128 IRQ_TYPE_NONE>, + <129 IRQ_TYPE_NONE>, + <130 IRQ_TYPE_NONE>, + <131 IRQ_TYPE_NONE>, + <132 IRQ_TYPE_NONE>, + <133 IRQ_TYPE_NONE>, + <134 IRQ_TYPE_NONE>, + <135 IRQ_TYPE_NONE>, + <136 IRQ_TYPE_NONE>, + <137 IRQ_TYPE_NONE>, + <138 IRQ_TYPE_NONE>, + <139 IRQ_TYPE_NONE>; }; pwrkey@1c { --- linux-4.8.0.orig/arch/arm/boot/dts/ste-snowball.dts +++ linux-4.8.0/arch/arm/boot/dts/ste-snowball.dts @@ -239,14 +239,25 @@ arm,primecell-periphid = <0x10480180>; max-frequency = <100000000>; bus-width = <4>; + cap-sd-highspeed; cap-mmc-highspeed; + sd-uhs-sdr12; + sd-uhs-sdr25; + /* All direction control is used */ + st,sig-dir-cmd; + st,sig-dir-dat0; + st,sig-dir-dat2; + st,sig-dir-dat31; + st,sig-pin-fbclk; + full-pwr-cycle; vmmc-supply = <&ab8500_ldo_aux3_reg>; vqmmc-supply = <&vmmci>; pinctrl-names = "default", "sleep"; pinctrl-0 = <&sdi0_default_mode>; pinctrl-1 = <&sdi0_sleep_mode>; - cd-gpios = <&gpio6 26 GPIO_ACTIVE_LOW>; // 218 + /* GPIO218 MMC_CD */ + cd-gpios = <&gpio6 26 GPIO_ACTIVE_LOW>; status = "okay"; }; @@ -549,7 +560,7 @@ /* VMMCI level-shifter enable */ snowball_cfg3 { pins = "GPIO217_AH12"; - ste,config = <&gpio_out_lo>; + ste,config = <&gpio_out_hi>; }; /* VMMCI level-shifter voltage select */ snowball_cfg4 { --- linux-4.8.0.orig/arch/arm/boot/dts/sun9i-a80.dtsi +++ linux-4.8.0/arch/arm/boot/dts/sun9i-a80.dtsi @@ -899,8 +899,7 @@ resets = <&apbs_rst 0>; gpio-controller; interrupt-controller; - #address-cells = <1>; - #size-cells = <0>; + #interrupt-cells = <3>; #gpio-cells = <3>; r_ir_pins: r_ir { --- linux-4.8.0.orig/arch/arm/crypto/ghash-ce-glue.c +++ linux-4.8.0/arch/arm/crypto/ghash-ce-glue.c @@ -220,6 +220,27 @@ } } +static int ghash_async_import(struct ahash_request *req, const void *in) +{ + struct ahash_request *cryptd_req = ahash_request_ctx(req); + struct crypto_ahash *tfm = crypto_ahash_reqtfm(req); + struct ghash_async_ctx *ctx = crypto_ahash_ctx(tfm); + struct shash_desc *desc = cryptd_shash_desc(cryptd_req); + + desc->tfm = cryptd_ahash_child(ctx->cryptd_tfm); + desc->flags = req->base.flags; + + return crypto_shash_import(desc, in); +} + +static int ghash_async_export(struct ahash_request *req, void *out) +{ + struct ahash_request *cryptd_req = ahash_request_ctx(req); + struct shash_desc *desc = cryptd_shash_desc(cryptd_req); + + return crypto_shash_export(desc, out); +} + static int ghash_async_setkey(struct crypto_ahash *tfm, const u8 *key, unsigned int keylen) { @@ -268,7 +289,10 @@ .final = ghash_async_final, .setkey = ghash_async_setkey, .digest = ghash_async_digest, + .import = ghash_async_import, + .export = ghash_async_export, .halg.digestsize = GHASH_DIGEST_SIZE, + .halg.statesize = sizeof(struct ghash_desc_ctx), .halg.base = { .cra_name = "ghash", .cra_driver_name = "ghash-ce", --- linux-4.8.0.orig/arch/arm/include/asm/delay.h +++ linux-4.8.0/arch/arm/include/asm/delay.h @@ -10,7 +10,7 @@ #include /* HZ */ #define MAX_UDELAY_MS 2 -#define UDELAY_MULT UL(2047 * HZ + 483648 * HZ / 1000000) +#define UDELAY_MULT UL(2147 * HZ + 483648 * HZ / 1000000) #define UDELAY_SHIFT 31 #ifndef __ASSEMBLY__ --- linux-4.8.0.orig/arch/arm/include/asm/kvm_host.h +++ linux-4.8.0/arch/arm/include/asm/kvm_host.h @@ -183,15 +183,15 @@ }; struct kvm_vm_stat { - u32 remote_tlb_flush; + ulong remote_tlb_flush; }; struct kvm_vcpu_stat { - u32 halt_successful_poll; - u32 halt_attempted_poll; - u32 halt_poll_invalid; - u32 halt_wakeup; - u32 hvc_exit_stat; + u64 halt_successful_poll; + u64 halt_attempted_poll; + u64 halt_poll_invalid; + u64 halt_wakeup; + u64 hvc_exit_stat; u64 wfe_exit_stat; u64 wfi_exit_stat; u64 mmio_exit_user; --- linux-4.8.0.orig/arch/arm/include/asm/tlb.h +++ linux-4.8.0/arch/arm/include/asm/tlb.h @@ -186,6 +186,8 @@ tlb_add_flush(tlb, addr); } +#define tlb_remove_huge_tlb_entry(h, tlb, ptep, address) \ + tlb_remove_tlb_entry(tlb, ptep, address) /* * In the case of tlb vma handling, we can optimise these away in the * case where we're doing a full MM flush. When we're doing a munmap, @@ -284,5 +286,11 @@ #define tlb_migrate_finish(mm) do { } while (0) +#define tlb_remove_check_page_size_change tlb_remove_check_page_size_change +static inline void tlb_remove_check_page_size_change(struct mmu_gather *tlb, + unsigned int page_size) +{ +} + #endif /* CONFIG_MMU */ #endif --- linux-4.8.0.orig/arch/arm/kvm/arm.c +++ linux-4.8.0/arch/arm/kvm/arm.c @@ -144,6 +144,16 @@ return ret; } +bool kvm_arch_has_vcpu_debugfs(void) +{ + return false; +} + +int kvm_arch_create_vcpu_debugfs(struct kvm_vcpu *vcpu) +{ + return 0; +} + int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf) { return VM_FAULT_SIGBUS; --- linux-4.8.0.orig/arch/arm/mach-highbank/Makefile +++ linux-4.8.0/arch/arm/mach-highbank/Makefile @@ -1,3 +1,5 @@ +KBUILD_CFLAGS += -I$(srctree)/arch/arm/mach-highbank/include + obj-y := highbank.o system.o smc.o plus_sec := $(call as-instr,.arch_extension sec,+sec) --- linux-4.8.0.orig/arch/arm/mach-mvebu/Kconfig +++ linux-4.8.0/arch/arm/mach-mvebu/Kconfig @@ -23,6 +23,7 @@ select CACHE_L2X0 select ARM_CPU_SUSPEND select MACH_MVEBU_ANY + select MVEBU_CLK_COREDIV config MACH_ARMADA_370 bool "Marvell Armada 370 boards" @@ -32,7 +33,6 @@ select CPU_PJ4B select MACH_MVEBU_V7 select PINCTRL_ARMADA_370 - select MVEBU_CLK_COREDIV help Say 'Y' here if you want your kernel to support boards based on the Marvell Armada 370 SoC with device tree. @@ -50,7 +50,6 @@ select HAVE_SMP select MACH_MVEBU_V7 select PINCTRL_ARMADA_375 - select MVEBU_CLK_COREDIV help Say 'Y' here if you want your kernel to support boards based on the Marvell Armada 375 SoC with device tree. @@ -68,7 +67,6 @@ select HAVE_SMP select MACH_MVEBU_V7 select PINCTRL_ARMADA_38X - select MVEBU_CLK_COREDIV help Say 'Y' here if you want your kernel to support boards based on the Marvell Armada 380/385 SoC with device tree. --- linux-4.8.0.orig/arch/arm/mach-pxa/corgi_pm.c +++ linux-4.8.0/arch/arm/mach-pxa/corgi_pm.c @@ -131,16 +131,11 @@ return is_resume; } -static unsigned long corgi_charger_wakeup(void) +static bool corgi_charger_wakeup(void) { - unsigned long ret; - - ret = (!gpio_get_value(CORGI_GPIO_AC_IN) << GPIO_bit(CORGI_GPIO_AC_IN)) - | (!gpio_get_value(CORGI_GPIO_KEY_INT) - << GPIO_bit(CORGI_GPIO_KEY_INT)) - | (!gpio_get_value(CORGI_GPIO_WAKEUP) - << GPIO_bit(CORGI_GPIO_WAKEUP)); - return ret; + return !gpio_get_value(CORGI_GPIO_AC_IN) || + !gpio_get_value(CORGI_GPIO_KEY_INT) || + !gpio_get_value(CORGI_GPIO_WAKEUP); } unsigned long corgipm_read_devdata(int type) --- linux-4.8.0.orig/arch/arm/mach-pxa/pxa_cplds_irqs.c +++ linux-4.8.0/arch/arm/mach-pxa/pxa_cplds_irqs.c @@ -41,30 +41,35 @@ unsigned long pending; unsigned int bit; - pending = readl(fpga->base + FPGA_IRQ_SET_CLR) & fpga->irq_mask; - for_each_set_bit(bit, &pending, CPLDS_NB_IRQ) - generic_handle_irq(irq_find_mapping(fpga->irqdomain, bit)); + do { + pending = readl(fpga->base + FPGA_IRQ_SET_CLR) & fpga->irq_mask; + for_each_set_bit(bit, &pending, CPLDS_NB_IRQ) { + generic_handle_irq(irq_find_mapping(fpga->irqdomain, + bit)); + } + } while (pending); return IRQ_HANDLED; } -static void cplds_irq_mask_ack(struct irq_data *d) +static void cplds_irq_mask(struct irq_data *d) { struct cplds *fpga = irq_data_get_irq_chip_data(d); unsigned int cplds_irq = irqd_to_hwirq(d); - unsigned int set, bit = BIT(cplds_irq); + unsigned int bit = BIT(cplds_irq); fpga->irq_mask &= ~bit; writel(fpga->irq_mask, fpga->base + FPGA_IRQ_MASK_EN); - set = readl(fpga->base + FPGA_IRQ_SET_CLR); - writel(set & ~bit, fpga->base + FPGA_IRQ_SET_CLR); } static void cplds_irq_unmask(struct irq_data *d) { struct cplds *fpga = irq_data_get_irq_chip_data(d); unsigned int cplds_irq = irqd_to_hwirq(d); - unsigned int bit = BIT(cplds_irq); + unsigned int set, bit = BIT(cplds_irq); + + set = readl(fpga->base + FPGA_IRQ_SET_CLR); + writel(set & ~bit, fpga->base + FPGA_IRQ_SET_CLR); fpga->irq_mask |= bit; writel(fpga->irq_mask, fpga->base + FPGA_IRQ_MASK_EN); @@ -72,7 +77,8 @@ static struct irq_chip cplds_irq_chip = { .name = "pxa_cplds", - .irq_mask_ack = cplds_irq_mask_ack, + .irq_ack = cplds_irq_mask, + .irq_mask = cplds_irq_mask, .irq_unmask = cplds_irq_unmask, .flags = IRQCHIP_MASK_ON_SUSPEND | IRQCHIP_SKIP_SET_WAKE, }; --- linux-4.8.0.orig/arch/arm/mach-pxa/sharpsl_pm.c +++ linux-4.8.0/arch/arm/mach-pxa/sharpsl_pm.c @@ -744,7 +744,7 @@ time = RCNR; while (1) { /* Check if any wakeup event had occurred */ - if (sharpsl_pm.machinfo->charger_wakeup() != 0) + if (sharpsl_pm.machinfo->charger_wakeup()) return 0; /* Check for timeout */ if ((RCNR - time) > SHARPSL_WAIT_CO_TIME) --- linux-4.8.0.orig/arch/arm/mach-pxa/sharpsl_pm.h +++ linux-4.8.0/arch/arm/mach-pxa/sharpsl_pm.h @@ -34,7 +34,7 @@ #define SHARPSL_STATUS_LOCK 5 #define SHARPSL_STATUS_CHRGFULL 6 #define SHARPSL_STATUS_FATAL 7 - unsigned long (*charger_wakeup)(void); + bool (*charger_wakeup)(void); int (*should_wakeup)(unsigned int resume_on_alarm); void (*backlight_limit)(int); int (*backlight_get_status) (void); --- linux-4.8.0.orig/arch/arm/mach-pxa/spitz_pm.c +++ linux-4.8.0/arch/arm/mach-pxa/spitz_pm.c @@ -165,13 +165,10 @@ return is_resume; } -static unsigned long spitz_charger_wakeup(void) +static bool spitz_charger_wakeup(void) { - unsigned long ret; - ret = ((!gpio_get_value(SPITZ_GPIO_KEY_INT) - << GPIO_bit(SPITZ_GPIO_KEY_INT)) - | gpio_get_value(SPITZ_GPIO_SYNC)); - return ret; + return !gpio_get_value(SPITZ_GPIO_KEY_INT) || + gpio_get_value(SPITZ_GPIO_SYNC); } unsigned long spitzpm_read_devdata(int type) --- linux-4.8.0.orig/arch/arm/mm/abort-lv4t.S +++ linux-4.8.0/arch/arm/mm/abort-lv4t.S @@ -7,7 +7,7 @@ * : r4 = aborted context pc * : r5 = aborted context psr * - * Returns : r4-r5, r10-r11, r13 preserved + * Returns : r4-r5, r9-r11, r13 preserved * * Purpose : obtain information about current aborted instruction. * Note: we read user space. This means we might cause a data @@ -48,7 +48,10 @@ /* c */ b do_DataAbort @ ldc rd, [rn], #m @ Same as ldr rd, [rn], #m /* d */ b do_DataAbort @ ldc rd, [rn, #m] /* e */ b .data_unknown -/* f */ +/* f */ b .data_unknown + +.data_unknown_r9: + ldr r9, [sp], #4 .data_unknown: @ Part of jumptable mov r0, r4 mov r1, r8 @@ -57,6 +60,7 @@ .data_arm_ldmstm: tst r8, #1 << 21 @ check writeback bit beq do_DataAbort @ no writeback -> no fixup + str r9, [sp, #-4]! mov r7, #0x11 orr r7, r7, #0x1100 and r6, r8, r7 @@ -75,12 +79,14 @@ subne r7, r7, r6, lsl #2 @ Undo increment addeq r7, r7, r6, lsl #2 @ Undo decrement str r7, [r2, r9, lsr #14] @ Put register 'Rn' + ldr r9, [sp], #4 b do_DataAbort .data_arm_lateldrhpre: tst r8, #1 << 21 @ Check writeback bit beq do_DataAbort @ No writeback -> no fixup .data_arm_lateldrhpost: + str r9, [sp, #-4]! and r9, r8, #0x00f @ get Rm / low nibble of immediate value tst r8, #1 << 22 @ if (immediate offset) andne r6, r8, #0xf00 @ { immediate high nibble @@ -93,6 +99,7 @@ subne r7, r7, r6 @ Undo incrmenet addeq r7, r7, r6 @ Undo decrement str r7, [r2, r9, lsr #14] @ Put register 'Rn' + ldr r9, [sp], #4 b do_DataAbort .data_arm_lateldrpreconst: @@ -101,12 +108,14 @@ .data_arm_lateldrpostconst: movs r6, r8, lsl #20 @ Get offset beq do_DataAbort @ zero -> no fixup + str r9, [sp, #-4]! and r9, r8, #15 << 16 @ Extract 'n' from instruction ldr r7, [r2, r9, lsr #14] @ Get register 'Rn' tst r8, #1 << 23 @ Check U bit subne r7, r7, r6, lsr #20 @ Undo increment addeq r7, r7, r6, lsr #20 @ Undo decrement str r7, [r2, r9, lsr #14] @ Put register 'Rn' + ldr r9, [sp], #4 b do_DataAbort .data_arm_lateldrprereg: @@ -115,6 +124,7 @@ .data_arm_lateldrpostreg: and r7, r8, #15 @ Extract 'm' from instruction ldr r6, [r2, r7, lsl #2] @ Get register 'Rm' + str r9, [sp, #-4]! mov r9, r8, lsr #7 @ get shift count ands r9, r9, #31 and r7, r8, #0x70 @ get shift type @@ -126,33 +136,33 @@ b .data_arm_apply_r6_and_rn b .data_arm_apply_r6_and_rn @ 1: LSL #0 nop - b .data_unknown @ 2: MUL? + b .data_unknown_r9 @ 2: MUL? nop - b .data_unknown @ 3: MUL? + b .data_unknown_r9 @ 3: MUL? nop mov r6, r6, lsr r9 @ 4: LSR #!0 b .data_arm_apply_r6_and_rn mov r6, r6, lsr #32 @ 5: LSR #32 b .data_arm_apply_r6_and_rn - b .data_unknown @ 6: MUL? + b .data_unknown_r9 @ 6: MUL? nop - b .data_unknown @ 7: MUL? + b .data_unknown_r9 @ 7: MUL? nop mov r6, r6, asr r9 @ 8: ASR #!0 b .data_arm_apply_r6_and_rn mov r6, r6, asr #32 @ 9: ASR #32 b .data_arm_apply_r6_and_rn - b .data_unknown @ A: MUL? + b .data_unknown_r9 @ A: MUL? nop - b .data_unknown @ B: MUL? + b .data_unknown_r9 @ B: MUL? nop mov r6, r6, ror r9 @ C: ROR #!0 b .data_arm_apply_r6_and_rn mov r6, r6, rrx @ D: RRX b .data_arm_apply_r6_and_rn - b .data_unknown @ E: MUL? + b .data_unknown_r9 @ E: MUL? nop - b .data_unknown @ F: MUL? + b .data_unknown_r9 @ F: MUL? .data_thumb_abort: ldrh r8, [r4] @ read instruction @@ -190,6 +200,7 @@ .data_thumb_pushpop: tst r8, #1 << 10 beq .data_unknown + str r9, [sp, #-4]! and r6, r8, #0x55 @ hweight8(r8) + R bit and r9, r8, #0xaa add r6, r6, r9, lsr #1 @@ -204,9 +215,11 @@ addeq r7, r7, r6, lsl #2 @ increment SP if PUSH subne r7, r7, r6, lsl #2 @ decrement SP if POP str r7, [r2, #13 << 2] + ldr r9, [sp], #4 b do_DataAbort .data_thumb_ldmstm: + str r9, [sp, #-4]! and r6, r8, #0x55 @ hweight8(r8) and r9, r8, #0xaa add r6, r6, r9, lsr #1 @@ -219,4 +232,5 @@ and r6, r6, #15 @ number of regs to transfer sub r7, r7, r6, lsl #2 @ always decrement str r7, [r2, r9, lsr #6] + ldr r9, [sp], #4 b do_DataAbort --- linux-4.8.0.orig/arch/arm/mm/mmap.c +++ linux-4.8.0/arch/arm/mm/mmap.c @@ -89,7 +89,7 @@ vma = find_vma(mm, addr); if (TASK_SIZE - len >= addr && - (!vma || addr + len <= vma->vm_start)) + (!vma || addr + len <= vm_start_gap(vma))) return addr; } @@ -140,7 +140,7 @@ addr = PAGE_ALIGN(addr); vma = find_vma(mm, addr); if (TASK_SIZE - len >= addr && - (!vma || addr + len <= vma->vm_start)) + (!vma || addr + len <= vm_start_gap(vma))) return addr; } --- linux-4.8.0.orig/arch/arm/xen/enlighten.c +++ linux-4.8.0/arch/arm/xen/enlighten.c @@ -372,8 +372,7 @@ * for secondary CPUs as they are brought up. * For uniformity we use VCPUOP_register_vcpu_info even on cpu0. */ - xen_vcpu_info = __alloc_percpu(sizeof(struct vcpu_info), - sizeof(struct vcpu_info)); + xen_vcpu_info = alloc_percpu(struct vcpu_info); if (xen_vcpu_info == NULL) return -ENOMEM; --- linux-4.8.0.orig/arch/arm64/Kconfig +++ linux-4.8.0/arch/arm64/Kconfig @@ -4,6 +4,7 @@ select ACPI_GENERIC_GSI if ACPI select ACPI_REDUCED_HARDWARE_ONLY if ACPI select ACPI_MCFG if ACPI + select ACPI_SPCR_TABLE if ACPI select ARCH_HAS_DEVMEM_IS_ALLOWED select ARCH_HAS_ACPI_TABLE_UPGRADE if ACPI select ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE @@ -698,6 +699,7 @@ config FORCE_MAX_ZONEORDER int default "14" if (ARM64_64K_PAGES && TRANSPARENT_HUGEPAGE) + default "13" if (ARCH_THUNDER && ARM64_4K_PAGES) default "12" if (ARM64_16K_PAGES && TRANSPARENT_HUGEPAGE) default "11" help @@ -1043,6 +1045,8 @@ source "drivers/Kconfig" +source "ubuntu/Kconfig" + source "drivers/firmware/Kconfig" source "drivers/acpi/Kconfig" --- linux-4.8.0.orig/arch/arm64/boot/dts/arm/juno-r1.dts +++ linux-4.8.0/arch/arm64/boot/dts/arm/juno-r1.dts @@ -76,7 +76,7 @@ compatible = "arm,idle-state"; arm,psci-suspend-param = <0x1010000>; local-timer-stop; - entry-latency-us = <300>; + entry-latency-us = <400>; exit-latency-us = <1200>; min-residency-us = <2500>; }; --- linux-4.8.0.orig/arch/arm64/boot/dts/arm/juno-r2.dts +++ linux-4.8.0/arch/arm64/boot/dts/arm/juno-r2.dts @@ -76,7 +76,7 @@ compatible = "arm,idle-state"; arm,psci-suspend-param = <0x1010000>; local-timer-stop; - entry-latency-us = <300>; + entry-latency-us = <400>; exit-latency-us = <1200>; min-residency-us = <2500>; }; --- linux-4.8.0.orig/arch/arm64/boot/dts/arm/juno.dts +++ linux-4.8.0/arch/arm64/boot/dts/arm/juno.dts @@ -76,7 +76,7 @@ compatible = "arm,idle-state"; arm,psci-suspend-param = <0x1010000>; local-timer-stop; - entry-latency-us = <300>; + entry-latency-us = <400>; exit-latency-us = <1200>; min-residency-us = <2500>; }; --- linux-4.8.0.orig/arch/arm64/boot/dts/marvell/armada-cp110-master.dtsi +++ linux-4.8.0/arch/arm64/boot/dts/marvell/armada-cp110-master.dtsi @@ -131,7 +131,7 @@ #address-cells = <0x1>; #size-cells = <0x0>; cell-index = <1>; - clocks = <&cpm_syscon0 0 3>; + clocks = <&cpm_syscon0 1 21>; status = "disabled"; }; --- linux-4.8.0.orig/arch/arm64/boot/dts/nvidia/tegra210-p2180.dtsi +++ linux-4.8.0/arch/arm64/boot/dts/nvidia/tegra210-p2180.dtsi @@ -21,6 +21,10 @@ reg = <0x0 0x80000000 0x1 0x0>; }; + gpu@57000000 { + vdd-supply = <&vdd_gpu>; + }; + /* debug port */ serial@70006000 { status = "okay"; @@ -291,4 +295,18 @@ clock-frequency = <32768>; }; }; + + regulators { + vdd_gpu: regulator@100 { + compatible = "pwm-regulator"; + reg = <100>; + pwms = <&pwm 1 4880>; + regulator-name = "VDD_GPU"; + regulator-min-microvolt = <710000>; + regulator-max-microvolt = <1320000>; + enable-gpios = <&pmic 6 GPIO_ACTIVE_HIGH>; + regulator-ramp-delay = <80>; + regulator-enable-ramp-delay = <1000>; + }; + }; }; --- linux-4.8.0.orig/arch/arm64/include/asm/acpi.h +++ linux-4.8.0/arch/arm64/include/asm/acpi.h @@ -12,7 +12,7 @@ #ifndef _ASM_ACPI_H #define _ASM_ACPI_H -#include +#include #include #include @@ -32,7 +32,11 @@ static inline void __iomem *acpi_os_ioremap(acpi_physical_address phys, acpi_size size) { - if (!page_is_ram(phys >> PAGE_SHIFT)) + /* + * EFI's reserve_regions() call adds memory with the WB attribute + * to memblock via early_init_dt_add_memory_arch(). + */ + if (!memblock_is_memory(phys)) return ioremap(phys, size); return ioremap_cache(phys, size); --- linux-4.8.0.orig/arch/arm64/include/asm/cpufeature.h +++ linux-4.8.0/arch/arm64/include/asm/cpufeature.h @@ -90,7 +90,7 @@ u16 capability; int def_scope; /* default scope */ bool (*matches)(const struct arm64_cpu_capabilities *caps, int scope); - void (*enable)(void *); /* Called on all active CPUs */ + int (*enable)(void *); /* Called on all active CPUs */ union { struct { /* To be used for erratum handling only */ u32 midr_model; --- linux-4.8.0.orig/arch/arm64/include/asm/exec.h +++ linux-4.8.0/arch/arm64/include/asm/exec.h @@ -18,6 +18,9 @@ #ifndef __ASM_EXEC_H #define __ASM_EXEC_H +#include + extern unsigned long arch_align_stack(unsigned long sp); +void uao_thread_switch(struct task_struct *next); #endif /* __ASM_EXEC_H */ --- linux-4.8.0.orig/arch/arm64/include/asm/kvm_emulate.h +++ linux-4.8.0/arch/arm64/include/asm/kvm_emulate.h @@ -167,11 +167,6 @@ return !!(kvm_vcpu_get_hsr(vcpu) & ESR_ELx_ISV); } -static inline bool kvm_vcpu_dabt_iswrite(const struct kvm_vcpu *vcpu) -{ - return !!(kvm_vcpu_get_hsr(vcpu) & ESR_ELx_WNR); -} - static inline bool kvm_vcpu_dabt_issext(const struct kvm_vcpu *vcpu) { return !!(kvm_vcpu_get_hsr(vcpu) & ESR_ELx_SSE); @@ -192,6 +187,12 @@ return !!(kvm_vcpu_get_hsr(vcpu) & ESR_ELx_S1PTW); } +static inline bool kvm_vcpu_dabt_iswrite(const struct kvm_vcpu *vcpu) +{ + return !!(kvm_vcpu_get_hsr(vcpu) & ESR_ELx_WNR) || + kvm_vcpu_dabt_iss1tw(vcpu); /* AF/DBM update */ +} + static inline bool kvm_vcpu_dabt_is_cm(const struct kvm_vcpu *vcpu) { return !!(kvm_vcpu_get_hsr(vcpu) & ESR_ELx_CM); --- linux-4.8.0.orig/arch/arm64/include/asm/kvm_host.h +++ linux-4.8.0/arch/arm64/include/asm/kvm_host.h @@ -290,15 +290,15 @@ #endif struct kvm_vm_stat { - u32 remote_tlb_flush; + ulong remote_tlb_flush; }; struct kvm_vcpu_stat { - u32 halt_successful_poll; - u32 halt_attempted_poll; - u32 halt_poll_invalid; - u32 halt_wakeup; - u32 hvc_exit_stat; + u64 halt_successful_poll; + u64 halt_attempted_poll; + u64 halt_poll_invalid; + u64 halt_wakeup; + u64 hvc_exit_stat; u64 wfe_exit_stat; u64 wfi_exit_stat; u64 mmio_exit_user; --- linux-4.8.0.orig/arch/arm64/include/asm/module.h +++ linux-4.8.0/arch/arm64/include/asm/module.h @@ -17,6 +17,7 @@ #define __ASM_MODULE_H #include +#include #define MODULE_ARCH_VERMAGIC "aarch64" @@ -32,6 +33,10 @@ Elf64_Sym *sym); #ifdef CONFIG_RANDOMIZE_BASE +#ifdef CONFIG_MODVERSIONS +#define ARCH_RELOCATES_KCRCTAB +#define reloc_start (kimage_vaddr - KIMAGE_VADDR) +#endif extern u64 module_alloc_base; #else #define module_alloc_base ((u64)_etext - MODULES_VSIZE) --- linux-4.8.0.orig/arch/arm64/include/asm/percpu.h +++ linux-4.8.0/arch/arm64/include/asm/percpu.h @@ -44,48 +44,44 @@ \ switch (size) { \ case 1: \ - do { \ - asm ("//__per_cpu_" #op "_1\n" \ - "ldxrb %w[ret], %[ptr]\n" \ + asm ("//__per_cpu_" #op "_1\n" \ + "1: ldxrb %w[ret], %[ptr]\n" \ #asm_op " %w[ret], %w[ret], %w[val]\n" \ - "stxrb %w[loop], %w[ret], %[ptr]\n" \ - : [loop] "=&r" (loop), [ret] "=&r" (ret), \ - [ptr] "+Q"(*(u8 *)ptr) \ - : [val] "Ir" (val)); \ - } while (loop); \ + " stxrb %w[loop], %w[ret], %[ptr]\n" \ + " cbnz %w[loop], 1b" \ + : [loop] "=&r" (loop), [ret] "=&r" (ret), \ + [ptr] "+Q"(*(u8 *)ptr) \ + : [val] "Ir" (val)); \ break; \ case 2: \ - do { \ - asm ("//__per_cpu_" #op "_2\n" \ - "ldxrh %w[ret], %[ptr]\n" \ + asm ("//__per_cpu_" #op "_2\n" \ + "1: ldxrh %w[ret], %[ptr]\n" \ #asm_op " %w[ret], %w[ret], %w[val]\n" \ - "stxrh %w[loop], %w[ret], %[ptr]\n" \ - : [loop] "=&r" (loop), [ret] "=&r" (ret), \ - [ptr] "+Q"(*(u16 *)ptr) \ - : [val] "Ir" (val)); \ - } while (loop); \ + " stxrh %w[loop], %w[ret], %[ptr]\n" \ + " cbnz %w[loop], 1b" \ + : [loop] "=&r" (loop), [ret] "=&r" (ret), \ + [ptr] "+Q"(*(u16 *)ptr) \ + : [val] "Ir" (val)); \ break; \ case 4: \ - do { \ - asm ("//__per_cpu_" #op "_4\n" \ - "ldxr %w[ret], %[ptr]\n" \ + asm ("//__per_cpu_" #op "_4\n" \ + "1: ldxr %w[ret], %[ptr]\n" \ #asm_op " %w[ret], %w[ret], %w[val]\n" \ - "stxr %w[loop], %w[ret], %[ptr]\n" \ - : [loop] "=&r" (loop), [ret] "=&r" (ret), \ - [ptr] "+Q"(*(u32 *)ptr) \ - : [val] "Ir" (val)); \ - } while (loop); \ + " stxr %w[loop], %w[ret], %[ptr]\n" \ + " cbnz %w[loop], 1b" \ + : [loop] "=&r" (loop), [ret] "=&r" (ret), \ + [ptr] "+Q"(*(u32 *)ptr) \ + : [val] "Ir" (val)); \ break; \ case 8: \ - do { \ - asm ("//__per_cpu_" #op "_8\n" \ - "ldxr %[ret], %[ptr]\n" \ + asm ("//__per_cpu_" #op "_8\n" \ + "1: ldxr %[ret], %[ptr]\n" \ #asm_op " %[ret], %[ret], %[val]\n" \ - "stxr %w[loop], %[ret], %[ptr]\n" \ - : [loop] "=&r" (loop), [ret] "=&r" (ret), \ - [ptr] "+Q"(*(u64 *)ptr) \ - : [val] "Ir" (val)); \ - } while (loop); \ + " stxr %w[loop], %[ret], %[ptr]\n" \ + " cbnz %w[loop], 1b" \ + : [loop] "=&r" (loop), [ret] "=&r" (ret), \ + [ptr] "+Q"(*(u64 *)ptr) \ + : [val] "Ir" (val)); \ break; \ default: \ BUILD_BUG(); \ @@ -150,44 +146,40 @@ switch (size) { case 1: - do { - asm ("//__percpu_xchg_1\n" - "ldxrb %w[ret], %[ptr]\n" - "stxrb %w[loop], %w[val], %[ptr]\n" - : [loop] "=&r"(loop), [ret] "=&r"(ret), - [ptr] "+Q"(*(u8 *)ptr) - : [val] "r" (val)); - } while (loop); + asm ("//__percpu_xchg_1\n" + "1: ldxrb %w[ret], %[ptr]\n" + " stxrb %w[loop], %w[val], %[ptr]\n" + " cbnz %w[loop], 1b" + : [loop] "=&r"(loop), [ret] "=&r"(ret), + [ptr] "+Q"(*(u8 *)ptr) + : [val] "r" (val)); break; case 2: - do { - asm ("//__percpu_xchg_2\n" - "ldxrh %w[ret], %[ptr]\n" - "stxrh %w[loop], %w[val], %[ptr]\n" - : [loop] "=&r"(loop), [ret] "=&r"(ret), - [ptr] "+Q"(*(u16 *)ptr) - : [val] "r" (val)); - } while (loop); + asm ("//__percpu_xchg_2\n" + "1: ldxrh %w[ret], %[ptr]\n" + " stxrh %w[loop], %w[val], %[ptr]\n" + " cbnz %w[loop], 1b" + : [loop] "=&r"(loop), [ret] "=&r"(ret), + [ptr] "+Q"(*(u16 *)ptr) + : [val] "r" (val)); break; case 4: - do { - asm ("//__percpu_xchg_4\n" - "ldxr %w[ret], %[ptr]\n" - "stxr %w[loop], %w[val], %[ptr]\n" - : [loop] "=&r"(loop), [ret] "=&r"(ret), - [ptr] "+Q"(*(u32 *)ptr) - : [val] "r" (val)); - } while (loop); + asm ("//__percpu_xchg_4\n" + "1: ldxr %w[ret], %[ptr]\n" + " stxr %w[loop], %w[val], %[ptr]\n" + " cbnz %w[loop], 1b" + : [loop] "=&r"(loop), [ret] "=&r"(ret), + [ptr] "+Q"(*(u32 *)ptr) + : [val] "r" (val)); break; case 8: - do { - asm ("//__percpu_xchg_8\n" - "ldxr %[ret], %[ptr]\n" - "stxr %w[loop], %[val], %[ptr]\n" - : [loop] "=&r"(loop), [ret] "=&r"(ret), - [ptr] "+Q"(*(u64 *)ptr) - : [val] "r" (val)); - } while (loop); + asm ("//__percpu_xchg_8\n" + "1: ldxr %[ret], %[ptr]\n" + " stxr %w[loop], %[val], %[ptr]\n" + " cbnz %w[loop], 1b" + : [loop] "=&r"(loop), [ret] "=&r"(ret), + [ptr] "+Q"(*(u64 *)ptr) + : [val] "r" (val)); break; default: BUILD_BUG(); --- linux-4.8.0.orig/arch/arm64/include/asm/perf_event.h +++ linux-4.8.0/arch/arm64/include/asm/perf_event.h @@ -46,7 +46,15 @@ #define ARMV8_PMU_EVTYPE_MASK 0xc800ffff /* Mask for writable bits */ #define ARMV8_PMU_EVTYPE_EVENT 0xffff /* Mask for EVENT bits */ -#define ARMV8_PMU_EVTYPE_EVENT_SW_INCR 0 /* Software increment event */ +/* + * PMUv3 event types: required events + */ +#define ARMV8_PMUV3_PERFCTR_SW_INCR 0x00 +#define ARMV8_PMUV3_PERFCTR_L1D_CACHE_REFILL 0x03 +#define ARMV8_PMUV3_PERFCTR_L1D_CACHE 0x04 +#define ARMV8_PMUV3_PERFCTR_BR_MIS_PRED 0x10 +#define ARMV8_PMUV3_PERFCTR_CPU_CYCLES 0x11 +#define ARMV8_PMUV3_PERFCTR_BR_PRED 0x12 /* * Event filters for PMUv3 --- linux-4.8.0.orig/arch/arm64/include/asm/processor.h +++ linux-4.8.0/arch/arm64/include/asm/processor.h @@ -190,8 +190,8 @@ #endif -void cpu_enable_pan(void *__unused); -void cpu_enable_uao(void *__unused); -void cpu_enable_cache_maint_trap(void *__unused); +int cpu_enable_pan(void *__unused); +int cpu_enable_uao(void *__unused); +int cpu_enable_cache_maint_trap(void *__unused); #endif /* __ASM_PROCESSOR_H */ --- linux-4.8.0.orig/arch/arm64/include/asm/uaccess.h +++ linux-4.8.0/arch/arm64/include/asm/uaccess.h @@ -21,6 +21,7 @@ /* * User space memory access functions */ +#include #include #include #include @@ -102,6 +103,13 @@ flag; \ }) +/* + * When dealing with data aborts or instruction traps we may end up with + * a tagged userland pointer. Clear the tag to get a sane pointer to pass + * on to access_ok(), for instance. + */ +#define untagged_addr(addr) sign_extend64(addr, 55) + #define access_ok(type, addr, size) __range_ok(addr, size) #define user_addr_max get_fs --- linux-4.8.0.orig/arch/arm64/kernel/acpi.c +++ linux-4.8.0/arch/arm64/kernel/acpi.c @@ -24,6 +24,7 @@ #include #include #include +#include #include #include @@ -206,7 +207,7 @@ if (param_acpi_off || (!param_acpi_on && !param_acpi_force && of_scan_flat_dt(dt_scan_depth1_nodes, NULL))) - return; + goto done; /* * ACPI is disabled at this point. Enable it in order to parse @@ -226,6 +227,14 @@ if (!param_acpi_force) disable_acpi(); } + +done: + if (acpi_disabled) { + if (earlycon_init_is_deferred) + early_init_dt_scan_chosen_stdout(); + } else { + parse_spcr(earlycon_init_is_deferred); + } } #ifdef CONFIG_ACPI_APEI --- linux-4.8.0.orig/arch/arm64/kernel/armv8_deprecated.c +++ linux-4.8.0/arch/arm64/kernel/armv8_deprecated.c @@ -280,35 +280,43 @@ /* * Error-checking SWP macros implemented using ldxr{b}/stxr{b} */ -#define __user_swpX_asm(data, addr, res, temp, B) \ + +/* Arbitrary constant to ensure forward-progress of the LL/SC loop */ +#define __SWP_LL_SC_LOOPS 4 + +#define __user_swpX_asm(data, addr, res, temp, temp2, B) \ __asm__ __volatile__( \ + " mov %w3, %w7\n" \ ALTERNATIVE("nop", SET_PSTATE_PAN(0), ARM64_HAS_PAN, \ CONFIG_ARM64_PAN) \ - "0: ldxr"B" %w2, [%3]\n" \ - "1: stxr"B" %w0, %w1, [%3]\n" \ + "0: ldxr"B" %w2, [%4]\n" \ + "1: stxr"B" %w0, %w1, [%4]\n" \ " cbz %w0, 2f\n" \ - " mov %w0, %w4\n" \ + " sub %w3, %w3, #1\n" \ + " cbnz %w3, 0b\n" \ + " mov %w0, %w5\n" \ " b 3f\n" \ "2:\n" \ " mov %w1, %w2\n" \ "3:\n" \ " .pushsection .fixup,\"ax\"\n" \ " .align 2\n" \ - "4: mov %w0, %w5\n" \ + "4: mov %w0, %w6\n" \ " b 3b\n" \ " .popsection" \ _ASM_EXTABLE(0b, 4b) \ _ASM_EXTABLE(1b, 4b) \ ALTERNATIVE("nop", SET_PSTATE_PAN(1), ARM64_HAS_PAN, \ CONFIG_ARM64_PAN) \ - : "=&r" (res), "+r" (data), "=&r" (temp) \ - : "r" (addr), "i" (-EAGAIN), "i" (-EFAULT) \ + : "=&r" (res), "+r" (data), "=&r" (temp), "=&r" (temp2) \ + : "r" (addr), "i" (-EAGAIN), "i" (-EFAULT), \ + "i" (__SWP_LL_SC_LOOPS) \ : "memory") -#define __user_swp_asm(data, addr, res, temp) \ - __user_swpX_asm(data, addr, res, temp, "") -#define __user_swpb_asm(data, addr, res, temp) \ - __user_swpX_asm(data, addr, res, temp, "b") +#define __user_swp_asm(data, addr, res, temp, temp2) \ + __user_swpX_asm(data, addr, res, temp, temp2, "") +#define __user_swpb_asm(data, addr, res, temp, temp2) \ + __user_swpX_asm(data, addr, res, temp, temp2, "b") /* * Bit 22 of the instruction encoding distinguishes between @@ -328,12 +336,12 @@ } while (1) { - unsigned long temp; + unsigned long temp, temp2; if (type == TYPE_SWPB) - __user_swpb_asm(*data, address, res, temp); + __user_swpb_asm(*data, address, res, temp, temp2); else - __user_swp_asm(*data, address, res, temp); + __user_swp_asm(*data, address, res, temp, temp2); if (likely(res != -EAGAIN) || signal_pending(current)) break; --- linux-4.8.0.orig/arch/arm64/kernel/cpufeature.c +++ linux-4.8.0/arch/arm64/kernel/cpufeature.c @@ -19,7 +19,9 @@ #define pr_fmt(fmt) "CPU features: " fmt #include +#include #include +#include #include #include #include @@ -936,7 +938,13 @@ { for (; caps->matches; caps++) if (caps->enable && cpus_have_cap(caps->capability)) - on_each_cpu(caps->enable, NULL, true); + /* + * Use stop_machine() as it schedules the work allowing + * us to modify PSTATE, instead of on_each_cpu() which + * uses an IPI, giving us a PSTATE that disappears when + * we return. + */ + stop_machine(caps->enable, NULL, cpu_online_mask); } /* --- linux-4.8.0.orig/arch/arm64/kernel/debug-monitors.c +++ linux-4.8.0/arch/arm64/kernel/debug-monitors.c @@ -435,8 +435,10 @@ /* ptrace API */ void user_enable_single_step(struct task_struct *task) { - set_ti_thread_flag(task_thread_info(task), TIF_SINGLESTEP); - set_regs_spsr_ss(task_pt_regs(task)); + struct thread_info *ti = task_thread_info(task); + + if (!test_and_set_ti_thread_flag(ti, TIF_SINGLESTEP)) + set_regs_spsr_ss(task_pt_regs(task)); } NOKPROBE_SYMBOL(user_enable_single_step); --- linux-4.8.0.orig/arch/arm64/kernel/head.S +++ linux-4.8.0/arch/arm64/kernel/head.S @@ -578,8 +578,9 @@ b.lt 4f // Skip if no PMU present mrs x0, pmcr_el0 // Disable debug access traps ubfx x0, x0, #11, #5 // to EL2 and allow access to - msr mdcr_el2, x0 // all PMU counters from EL1 4: + csel x0, xzr, x0, lt // all PMU counters from EL1 + msr mdcr_el2, x0 // (if they exist) /* Stage-2 translation */ msr vttbr_el2, xzr --- linux-4.8.0.orig/arch/arm64/kernel/perf_event.c +++ linux-4.8.0/arch/arm64/kernel/perf_event.c @@ -30,17 +30,9 @@ /* * ARMv8 PMUv3 Performance Events handling code. - * Common event types. + * Common event types (some are defined in asm/perf_event.h). */ -/* Required events. */ -#define ARMV8_PMUV3_PERFCTR_SW_INCR 0x00 -#define ARMV8_PMUV3_PERFCTR_L1D_CACHE_REFILL 0x03 -#define ARMV8_PMUV3_PERFCTR_L1D_CACHE 0x04 -#define ARMV8_PMUV3_PERFCTR_BR_MIS_PRED 0x10 -#define ARMV8_PMUV3_PERFCTR_CPU_CYCLES 0x11 -#define ARMV8_PMUV3_PERFCTR_BR_PRED 0x12 - /* At least one of the following is required. */ #define ARMV8_PMUV3_PERFCTR_INST_RETIRED 0x08 #define ARMV8_PMUV3_PERFCTR_INST_SPEC 0x1B --- linux-4.8.0.orig/arch/arm64/kernel/process.c +++ linux-4.8.0/arch/arm64/kernel/process.c @@ -49,6 +49,7 @@ #include #include #include +#include #include #include #include @@ -303,7 +304,7 @@ } /* Restore the UAO state depending on next's addr_limit */ -static void uao_thread_switch(struct task_struct *next) +void uao_thread_switch(struct task_struct *next) { if (IS_ENABLED(CONFIG_ARM64_UAO)) { if (task_thread_info(next)->addr_limit == KERNEL_DS) --- linux-4.8.0.orig/arch/arm64/kernel/setup.c +++ linux-4.8.0/arch/arm64/kernel/setup.c @@ -206,10 +206,15 @@ for_each_memblock(memory, region) { res = alloc_bootmem_low(sizeof(*res)); - res->name = "System RAM"; + if (memblock_is_nomap(region)) { + res->name = "reserved"; + res->flags = IORESOURCE_MEM | IORESOURCE_BUSY; + } else { + res->name = "System RAM"; + res->flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY; + } res->start = __pfn_to_phys(memblock_region_memory_base_pfn(region)); res->end = __pfn_to_phys(memblock_region_memory_end_pfn(region)) - 1; - res->flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY; request_resource(&iomem_resource, res); --- linux-4.8.0.orig/arch/arm64/kernel/stacktrace.c +++ linux-4.8.0/arch/arm64/kernel/stacktrace.c @@ -43,6 +43,9 @@ unsigned long fp = frame->fp; unsigned long irq_stack_ptr; + if (!tsk) + tsk = current; + /* * Switching between stacks is valid when tracing current and in * non-preemptible context. @@ -67,7 +70,7 @@ frame->pc = READ_ONCE_NOCHECK(*(unsigned long *)(fp + 8)); #ifdef CONFIG_FUNCTION_GRAPH_TRACER - if (tsk && tsk->ret_stack && + if (tsk->ret_stack && (frame->pc == (unsigned long)return_to_handler)) { /* * This is a case where function graph tracer has --- linux-4.8.0.orig/arch/arm64/kernel/suspend.c +++ linux-4.8.0/arch/arm64/kernel/suspend.c @@ -1,8 +1,11 @@ #include #include #include +#include #include +#include #include +#include #include #include #include @@ -48,6 +51,14 @@ set_my_cpu_offset(per_cpu_offset(smp_processor_id())); /* + * PSTATE was not saved over suspend/resume, re-enable any detected + * features that might not have been set correctly. + */ + asm(ALTERNATIVE("nop", SET_PSTATE_PAN(1), ARM64_HAS_PAN, + CONFIG_ARM64_PAN)); + uao_thread_switch(current); + + /* * Restore HW breakpoint registers to sane values * before debug exceptions are possibly reenabled * through local_dbg_restore. --- linux-4.8.0.orig/arch/arm64/kernel/traps.c +++ linux-4.8.0/arch/arm64/kernel/traps.c @@ -142,6 +142,11 @@ unsigned long irq_stack_ptr; int skip; + pr_debug("%s(regs = %p tsk = %p)\n", __func__, regs, tsk); + + if (!tsk) + tsk = current; + /* * Switching between stacks is valid when tracing current and in * non-preemptible context. @@ -151,11 +156,6 @@ else irq_stack_ptr = 0; - pr_debug("%s(regs = %p tsk = %p)\n", __func__, regs, tsk); - - if (!tsk) - tsk = current; - if (tsk == current) { frame.fp = (unsigned long)__builtin_frame_address(0); frame.sp = current_stack_pointer; @@ -428,24 +428,28 @@ force_signal_inject(SIGILL, ILL_ILLOPC, regs, 0); } -void cpu_enable_cache_maint_trap(void *__unused) +int cpu_enable_cache_maint_trap(void *__unused) { config_sctlr_el1(SCTLR_EL1_UCI, 0); + return 0; } #define __user_cache_maint(insn, address, res) \ - asm volatile ( \ - "1: " insn ", %1\n" \ - " mov %w0, #0\n" \ - "2:\n" \ - " .pushsection .fixup,\"ax\"\n" \ - " .align 2\n" \ - "3: mov %w0, %w2\n" \ - " b 2b\n" \ - " .popsection\n" \ - _ASM_EXTABLE(1b, 3b) \ - : "=r" (res) \ - : "r" (address), "i" (-EFAULT) ) + if (untagged_addr(address) >= user_addr_max()) \ + res = -EFAULT; \ + else \ + asm volatile ( \ + "1: " insn ", %1\n" \ + " mov %w0, #0\n" \ + "2:\n" \ + " .pushsection .fixup,\"ax\"\n" \ + " .align 2\n" \ + "3: mov %w0, %w2\n" \ + " b 2b\n" \ + " .popsection\n" \ + _ASM_EXTABLE(1b, 3b) \ + : "=r" (res) \ + : "r" (address), "i" (-EFAULT) ) asmlinkage void __exception do_sysinstr(unsigned int esr, struct pt_regs *regs) { --- linux-4.8.0.orig/arch/arm64/kvm/hyp/entry.S +++ linux-4.8.0/arch/arm64/kvm/hyp/entry.S @@ -98,6 +98,8 @@ // x4-x29,lr: vcpu regs // vcpu x0-x3 on the stack + ALTERNATIVE(nop, SET_PSTATE_PAN(1), ARM64_HAS_PAN, CONFIG_ARM64_PAN) + add x2, x0, #VCPU_CONTEXT stp x4, x5, [x2, #CPU_XREG_OFFSET(4)] --- linux-4.8.0.orig/arch/arm64/kvm/hyp/switch.c +++ linux-4.8.0/arch/arm64/kvm/hyp/switch.c @@ -82,7 +82,13 @@ write_sysreg(val, hcr_el2); /* Trap on AArch32 cp15 c15 accesses (EL1 or EL0) */ write_sysreg(1 << 15, hstr_el2); - /* Make sure we trap PMU access from EL0 to EL2 */ + /* + * Make sure we trap PMU access from EL0 to EL2. Also sanitize + * PMSELR_EL0 to make sure it never contains the cycle + * counter, which could make a PMXEVCNTR_EL0 access UNDEF at + * EL1 instead of being trapped to EL2. + */ + write_sysreg(0, pmselr_el0); write_sysreg(ARMV8_PMU_USERENR_MASK, pmuserenr_el0); write_sysreg(vcpu->arch.mdcr_el2, mdcr_el2); __activate_traps_arch()(); --- linux-4.8.0.orig/arch/arm64/kvm/sys_regs.c +++ linux-4.8.0/arch/arm64/kvm/sys_regs.c @@ -602,8 +602,14 @@ idx = ARMV8_PMU_CYCLE_IDX; } else { - BUG(); + return false; } + } else if (r->CRn == 0 && r->CRm == 9) { + /* PMCCNTR */ + if (pmu_access_event_counter_el0_disabled(vcpu)) + return false; + + idx = ARMV8_PMU_CYCLE_IDX; } else if (r->CRn == 14 && (r->CRm & 12) == 8) { /* PMEVCNTRn_EL0 */ if (pmu_access_event_counter_el0_disabled(vcpu)) @@ -611,7 +617,7 @@ idx = ((r->CRm & 3) << 3) | (r->Op2 & 7); } else { - BUG(); + return false; } if (!pmu_counter_idx_valid(vcpu, idx)) --- linux-4.8.0.orig/arch/arm64/mm/fault.c +++ linux-4.8.0/arch/arm64/mm/fault.c @@ -29,7 +29,9 @@ #include #include #include +#include +#include #include #include #include @@ -671,9 +673,17 @@ NOKPROBE_SYMBOL(do_debug_exception); #ifdef CONFIG_ARM64_PAN -void cpu_enable_pan(void *__unused) +int cpu_enable_pan(void *__unused) { + /* + * We modify PSTATE. This won't work from irq context as the PSTATE + * is discarded once we return from the exception. + */ + WARN_ON_ONCE(in_interrupt()); + config_sctlr_el1(SCTLR_EL1_SPAN, 0); + asm(SET_PSTATE_PAN(1)); + return 0; } #endif /* CONFIG_ARM64_PAN */ @@ -684,8 +694,9 @@ * We need to enable the feature at runtime (instead of adding it to * PSR_MODE_EL1h) as the feature may not be implemented by the cpu. */ -void cpu_enable_uao(void *__unused) +int cpu_enable_uao(void *__unused) { asm(SET_PSTATE_UAO(1)); + return 0; } #endif /* CONFIG_ARM64_UAO */ --- linux-4.8.0.orig/arch/frv/mm/elf-fdpic.c +++ linux-4.8.0/arch/frv/mm/elf-fdpic.c @@ -74,7 +74,7 @@ addr = PAGE_ALIGN(addr); vma = find_vma(current->mm, addr); if (TASK_SIZE - len >= addr && - (!vma || addr + len <= vma->vm_start)) + (!vma || addr + len <= vm_start_gap(vma))) goto success; } --- linux-4.8.0.orig/arch/h8300/include/asm/thread_info.h +++ linux-4.8.0/arch/h8300/include/asm/thread_info.h @@ -31,7 +31,6 @@ int cpu; /* cpu we're on */ int preempt_count; /* 0 => preemptable, <0 => BUG */ mm_segment_t addr_limit; - struct restart_block restart_block; }; /* @@ -44,9 +43,6 @@ .cpu = 0, \ .preempt_count = INIT_PREEMPT_COUNT, \ .addr_limit = KERNEL_DS, \ - .restart_block = { \ - .fn = do_no_restart_syscall, \ - }, \ } #define init_thread_info (init_thread_union.thread_info) --- linux-4.8.0.orig/arch/h8300/kernel/signal.c +++ linux-4.8.0/arch/h8300/kernel/signal.c @@ -79,7 +79,7 @@ unsigned int er0; /* Always make any pending restarted system calls return -EINTR */ - current_thread_info()->restart_block.fn = do_no_restart_syscall; + current->restart_block.fn = do_no_restart_syscall; /* restore passed registers */ #define COPY(r) do { err |= get_user(regs->r, &usc->sc_##r); } while (0) --- linux-4.8.0.orig/arch/ia64/include/asm/tlb.h +++ linux-4.8.0/arch/ia64/include/asm/tlb.h @@ -283,6 +283,15 @@ __tlb_remove_tlb_entry(tlb, ptep, addr); \ } while (0) +#define tlb_remove_huge_tlb_entry(h, tlb, ptep, address) \ + tlb_remove_tlb_entry(tlb, ptep, address) + +#define tlb_remove_check_page_size_change tlb_remove_check_page_size_change +static inline void tlb_remove_check_page_size_change(struct mmu_gather *tlb, + unsigned int page_size) +{ +} + #define pte_free_tlb(tlb, ptep, address) \ do { \ tlb->need_flush = 1; \ --- linux-4.8.0.orig/arch/m68k/include/asm/delay.h +++ linux-4.8.0/arch/m68k/include/asm/delay.h @@ -114,6 +114,6 @@ */ #define HZSCALE (268435456 / (1000000 / HZ)) -#define ndelay(n) __delay(DIV_ROUND_UP((n) * ((((HZSCALE) >> 11) * (loops_per_jiffy >> 11)) >> 6), 1000)); +#define ndelay(n) __delay(DIV_ROUND_UP((n) * ((((HZSCALE) >> 11) * (loops_per_jiffy >> 11)) >> 6), 1000)) #endif /* defined(_M68K_DELAY_H) */ --- linux-4.8.0.orig/arch/metag/include/asm/atomic.h +++ linux-4.8.0/arch/metag/include/asm/atomic.h @@ -39,11 +39,10 @@ #define atomic_dec(v) atomic_sub(1, (v)) #define atomic_inc_not_zero(v) atomic_add_unless((v), 1, 0) +#define atomic_dec_if_positive(v) atomic_sub_if_positive(1, v) #endif -#define atomic_dec_if_positive(v) atomic_sub_if_positive(1, v) - #include #endif /* __ASM_METAG_ATOMIC_H */ --- linux-4.8.0.orig/arch/mips/include/asm/kvm_host.h +++ linux-4.8.0/arch/mips/include/asm/kvm_host.h @@ -110,32 +110,32 @@ extern atomic_t kvm_mips_instance; struct kvm_vm_stat { - u32 remote_tlb_flush; + ulong remote_tlb_flush; }; struct kvm_vcpu_stat { - u32 wait_exits; - u32 cache_exits; - u32 signal_exits; - u32 int_exits; - u32 cop_unusable_exits; - u32 tlbmod_exits; - u32 tlbmiss_ld_exits; - u32 tlbmiss_st_exits; - u32 addrerr_st_exits; - u32 addrerr_ld_exits; - u32 syscall_exits; - u32 resvd_inst_exits; - u32 break_inst_exits; - u32 trap_inst_exits; - u32 msa_fpe_exits; - u32 fpe_exits; - u32 msa_disabled_exits; - u32 flush_dcache_exits; - u32 halt_successful_poll; - u32 halt_attempted_poll; - u32 halt_poll_invalid; - u32 halt_wakeup; + u64 wait_exits; + u64 cache_exits; + u64 signal_exits; + u64 int_exits; + u64 cop_unusable_exits; + u64 tlbmod_exits; + u64 tlbmiss_ld_exits; + u64 tlbmiss_st_exits; + u64 addrerr_st_exits; + u64 addrerr_ld_exits; + u64 syscall_exits; + u64 resvd_inst_exits; + u64 break_inst_exits; + u64 trap_inst_exits; + u64 msa_fpe_exits; + u64 fpe_exits; + u64 msa_disabled_exits; + u64 flush_dcache_exits; + u64 halt_successful_poll; + u64 halt_attempted_poll; + u64 halt_poll_invalid; + u64 halt_wakeup; }; struct kvm_arch_memory_slot { @@ -279,7 +279,10 @@ /* Host KSEG0 address of the EI/DI offset */ void *kseg0_commpage; - u32 io_gpr; /* GPR used as IO source/target */ + /* Resume PC after MMIO completion */ + unsigned long io_pc; + /* GPR used as IO source/target */ + u32 io_gpr; struct hrtimer comparecount_timer; /* Count timer control KVM register */ @@ -301,8 +304,6 @@ /* Bitmask of pending exceptions to be cleared */ unsigned long pending_exceptions_clr; - u32 pending_load_cause; - /* Save/Restore the entryhi register when are are preempted/scheduled back in */ unsigned long preempt_entryhi; --- linux-4.8.0.orig/arch/mips/include/asm/ptrace.h +++ linux-4.8.0/arch/mips/include/asm/ptrace.h @@ -152,7 +152,7 @@ static inline long regs_return_value(struct pt_regs *regs) { - if (is_syscall_success(regs)) + if (is_syscall_success(regs) || !user_mode(regs)) return regs->regs[2]; else return -regs->regs[2]; --- linux-4.8.0.orig/arch/mips/include/uapi/asm/mman.h +++ linux-4.8.0/arch/mips/include/uapi/asm/mman.h @@ -105,4 +105,9 @@ #define MAP_HUGE_SHIFT 26 #define MAP_HUGE_MASK 0x3f +#define PKEY_DISABLE_ACCESS 0x1 +#define PKEY_DISABLE_WRITE 0x2 +#define PKEY_ACCESS_MASK (PKEY_DISABLE_ACCESS |\ + PKEY_DISABLE_WRITE) + #endif /* _ASM_MMAN_H */ --- linux-4.8.0.orig/arch/mips/kernel/relocate.c +++ linux-4.8.0/arch/mips/kernel/relocate.c @@ -200,7 +200,7 @@ #if defined(CONFIG_USE_OF) /* Get any additional entropy passed in device tree */ - { + if (initial_boot_params) { int node, len; u64 *prop; --- linux-4.8.0.orig/arch/mips/kvm/emulate.c +++ linux-4.8.0/arch/mips/kvm/emulate.c @@ -791,15 +791,15 @@ struct mips_coproc *cop0 = vcpu->arch.cop0; enum emulation_result er = EMULATE_DONE; - if (kvm_read_c0_guest_status(cop0) & ST0_EXL) { + if (kvm_read_c0_guest_status(cop0) & ST0_ERL) { + kvm_clear_c0_guest_status(cop0, ST0_ERL); + vcpu->arch.pc = kvm_read_c0_guest_errorepc(cop0); + } else if (kvm_read_c0_guest_status(cop0) & ST0_EXL) { kvm_debug("[%#lx] ERET to %#lx\n", vcpu->arch.pc, kvm_read_c0_guest_epc(cop0)); kvm_clear_c0_guest_status(cop0, ST0_EXL); vcpu->arch.pc = kvm_read_c0_guest_epc(cop0); - } else if (kvm_read_c0_guest_status(cop0) & ST0_ERL) { - kvm_clear_c0_guest_status(cop0, ST0_ERL); - vcpu->arch.pc = kvm_read_c0_guest_errorepc(cop0); } else { kvm_err("[%#lx] ERET when MIPS_SR_EXL|MIPS_SR_ERL == 0\n", vcpu->arch.pc); @@ -846,6 +846,47 @@ return EMULATE_FAIL; } +/** + * kvm_mips_invalidate_guest_tlb() - Indicates a change in guest MMU map. + * @vcpu: VCPU with changed mappings. + * @tlb: TLB entry being removed. + * + * This is called to indicate a single change in guest MMU mappings, so that we + * can arrange TLB flushes on this and other CPUs. + */ +static void kvm_mips_invalidate_guest_tlb(struct kvm_vcpu *vcpu, + struct kvm_mips_tlb *tlb) +{ + int cpu, i; + bool user; + + /* No need to flush for entries which are already invalid */ + if (!((tlb->tlb_lo[0] | tlb->tlb_lo[1]) & ENTRYLO_V)) + return; + /* User address space doesn't need flushing for KSeg2/3 changes */ + user = tlb->tlb_hi < KVM_GUEST_KSEG0; + + preempt_disable(); + + /* + * Probe the shadow host TLB for the entry being overwritten, if one + * matches, invalidate it + */ + kvm_mips_host_tlb_inv(vcpu, tlb->tlb_hi); + + /* Invalidate the whole ASID on other CPUs */ + cpu = smp_processor_id(); + for_each_possible_cpu(i) { + if (i == cpu) + continue; + if (user) + vcpu->arch.guest_user_asid[i] = 0; + vcpu->arch.guest_kernel_asid[i] = 0; + } + + preempt_enable(); +} + /* Write Guest TLB Entry @ Index */ enum emulation_result kvm_mips_emul_tlbwi(struct kvm_vcpu *vcpu) { @@ -865,11 +906,8 @@ } tlb = &vcpu->arch.guest_tlb[index]; - /* - * Probe the shadow host TLB for the entry being overwritten, if one - * matches, invalidate it - */ - kvm_mips_host_tlb_inv(vcpu, tlb->tlb_hi); + + kvm_mips_invalidate_guest_tlb(vcpu, tlb); tlb->tlb_mask = kvm_read_c0_guest_pagemask(cop0); tlb->tlb_hi = kvm_read_c0_guest_entryhi(cop0); @@ -898,11 +936,7 @@ tlb = &vcpu->arch.guest_tlb[index]; - /* - * Probe the shadow host TLB for the entry being overwritten, if one - * matches, invalidate it - */ - kvm_mips_host_tlb_inv(vcpu, tlb->tlb_hi); + kvm_mips_invalidate_guest_tlb(vcpu, tlb); tlb->tlb_mask = kvm_read_c0_guest_pagemask(cop0); tlb->tlb_hi = kvm_read_c0_guest_entryhi(cop0); @@ -1026,6 +1060,7 @@ enum emulation_result er = EMULATE_DONE; u32 rt, rd, sel; unsigned long curr_pc; + int cpu, i; /* * Update PC and hold onto current PC in case there is @@ -1135,8 +1170,16 @@ & KVM_ENTRYHI_ASID, nasid); + preempt_disable(); /* Blow away the shadow host TLBs */ kvm_mips_flush_host_tlb(1); + cpu = smp_processor_id(); + for_each_possible_cpu(i) + if (i != cpu) { + vcpu->arch.guest_user_asid[i] = 0; + vcpu->arch.guest_kernel_asid[i] = 0; + } + preempt_enable(); } kvm_write_c0_guest_entryhi(cop0, vcpu->arch.gprs[rt]); @@ -1479,13 +1522,25 @@ struct kvm_vcpu *vcpu) { enum emulation_result er = EMULATE_DO_MMIO; + unsigned long curr_pc; u32 op, rt; u32 bytes; rt = inst.i_format.rt; op = inst.i_format.opcode; - vcpu->arch.pending_load_cause = cause; + /* + * Find the resume PC now while we have safe and easy access to the + * prior branch instruction, and save it for + * kvm_mips_complete_mmio_load() to restore later. + */ + curr_pc = vcpu->arch.pc; + er = update_pc(vcpu, cause); + if (er == EMULATE_FAIL) + return er; + vcpu->arch.io_pc = vcpu->arch.pc; + vcpu->arch.pc = curr_pc; + vcpu->arch.io_gpr = rt; switch (op) { @@ -2445,9 +2500,8 @@ goto done; } - er = update_pc(vcpu, vcpu->arch.pending_load_cause); - if (er == EMULATE_FAIL) - return er; + /* Restore saved resume PC */ + vcpu->arch.pc = vcpu->arch.io_pc; switch (run->mmio.len) { case 4: @@ -2469,11 +2523,6 @@ break; } - if (vcpu->arch.pending_load_cause & CAUSEF_BD) - kvm_debug("[%#lx] Completing %d byte BD Load to gpr %d (0x%08lx) type %d\n", - vcpu->arch.pc, run->mmio.len, vcpu->arch.io_gpr, *gpr, - vcpu->mmio_needed); - done: return er; } --- linux-4.8.0.orig/arch/mips/kvm/mips.c +++ linux-4.8.0/arch/mips/kvm/mips.c @@ -140,6 +140,16 @@ return 0; } +bool kvm_arch_has_vcpu_debugfs(void) +{ + return false; +} + +int kvm_arch_create_vcpu_debugfs(struct kvm_vcpu *vcpu) +{ + return 0; +} + void kvm_mips_free_vcpus(struct kvm *kvm) { unsigned int i; --- linux-4.8.0.orig/arch/mips/mm/mmap.c +++ linux-4.8.0/arch/mips/mm/mmap.c @@ -92,7 +92,7 @@ vma = find_vma(mm, addr); if (TASK_SIZE - len >= addr && - (!vma || addr + len <= vma->vm_start)) + (!vma || addr + len <= vm_start_gap(vma))) return addr; } --- linux-4.8.0.orig/arch/mips/vdso/Makefile +++ linux-4.8.0/arch/mips/vdso/Makefile @@ -82,7 +82,7 @@ $(obj-vdso): KBUILD_CFLAGS := $(cflags-vdso) $(native-abi) $(obj-vdso): KBUILD_AFLAGS := $(aflags-vdso) $(native-abi) -$(obj)/vdso.lds: KBUILD_CPPFLAGS := $(native-abi) +$(obj)/vdso.lds: KBUILD_CPPFLAGS := $(ccflags-vdso) $(native-abi) $(obj)/vdso.so.dbg.raw: $(obj)/vdso.lds $(obj-vdso) FORCE $(call if_changed,vdsold) --- linux-4.8.0.orig/arch/parisc/Kconfig +++ linux-4.8.0/arch/parisc/Kconfig @@ -33,7 +33,9 @@ select HAVE_ARCH_HASH select HAVE_ARCH_SECCOMP_FILTER select HAVE_ARCH_TRACEHOOK - select HAVE_UNSTABLE_SCHED_CLOCK if (SMP || !64BIT) + select GENERIC_SCHED_CLOCK + select HAVE_UNSTABLE_SCHED_CLOCK if SMP + select GENERIC_CLOCKEVENTS select ARCH_NO_COHERENT_DMA_MMAP select CPU_NO_EFFICIENT_FFS --- linux-4.8.0.orig/arch/parisc/include/asm/pgtable.h +++ linux-4.8.0/arch/parisc/include/asm/pgtable.h @@ -65,9 +65,9 @@ unsigned long flags; \ spin_lock_irqsave(&pa_tlb_lock, flags); \ old_pte = *ptep; \ - set_pte(ptep, pteval); \ if (pte_inserted(old_pte)) \ purge_tlb_entries(mm, addr); \ + set_pte(ptep, pteval); \ spin_unlock_irqrestore(&pa_tlb_lock, flags); \ } while (0) @@ -83,10 +83,10 @@ printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, (unsigned long)pgd_val(e)) /* This is the size of the initially mapped kernel memory */ -#ifdef CONFIG_64BIT -#define KERNEL_INITIAL_ORDER 25 /* 1<<25 = 32MB */ +#if defined(CONFIG_64BIT) +#define KERNEL_INITIAL_ORDER 26 /* 1<<26 = 64MB */ #else -#define KERNEL_INITIAL_ORDER 24 /* 1<<24 = 16MB */ +#define KERNEL_INITIAL_ORDER 25 /* 1<<25 = 32MB */ #endif #define KERNEL_INITIAL_SIZE (1 << KERNEL_INITIAL_ORDER) @@ -478,8 +478,8 @@ spin_unlock_irqrestore(&pa_tlb_lock, flags); return 0; } - set_pte(ptep, pte_mkold(pte)); purge_tlb_entries(vma->vm_mm, addr); + set_pte(ptep, pte_mkold(pte)); spin_unlock_irqrestore(&pa_tlb_lock, flags); return 1; } @@ -492,9 +492,9 @@ spin_lock_irqsave(&pa_tlb_lock, flags); old_pte = *ptep; - set_pte(ptep, __pte(0)); if (pte_inserted(old_pte)) purge_tlb_entries(mm, addr); + set_pte(ptep, __pte(0)); spin_unlock_irqrestore(&pa_tlb_lock, flags); return old_pte; @@ -504,8 +504,8 @@ { unsigned long flags; spin_lock_irqsave(&pa_tlb_lock, flags); - set_pte(ptep, pte_wrprotect(*ptep)); purge_tlb_entries(mm, addr); + set_pte(ptep, pte_wrprotect(*ptep)); spin_unlock_irqrestore(&pa_tlb_lock, flags); } --- linux-4.8.0.orig/arch/parisc/include/uapi/asm/mman.h +++ linux-4.8.0/arch/parisc/include/uapi/asm/mman.h @@ -75,4 +75,9 @@ #define MAP_HUGE_SHIFT 26 #define MAP_HUGE_MASK 0x3f +#define PKEY_DISABLE_ACCESS 0x1 +#define PKEY_DISABLE_WRITE 0x2 +#define PKEY_ACCESS_MASK (PKEY_DISABLE_ACCESS |\ + PKEY_DISABLE_WRITE) + #endif /* __PARISC_MMAN_H__ */ --- linux-4.8.0.orig/arch/parisc/kernel/cache.c +++ linux-4.8.0/arch/parisc/kernel/cache.c @@ -369,6 +369,7 @@ { unsigned long rangetime, alltime; unsigned long size, start; + unsigned long threshold; alltime = mfctl(16); flush_data_cache(); @@ -382,26 +383,30 @@ printk(KERN_DEBUG "Whole cache flush %lu cycles, flushing %lu bytes %lu cycles\n", alltime, size, rangetime); - /* Racy, but if we see an intermediate value, it's ok too... */ - parisc_cache_flush_threshold = size * alltime / rangetime; - - parisc_cache_flush_threshold = L1_CACHE_ALIGN(parisc_cache_flush_threshold); - if (!parisc_cache_flush_threshold) - parisc_cache_flush_threshold = FLUSH_THRESHOLD; - - if (parisc_cache_flush_threshold > cache_info.dc_size) - parisc_cache_flush_threshold = cache_info.dc_size; - - printk(KERN_INFO "Setting cache flush threshold to %lu kB\n", + threshold = L1_CACHE_ALIGN(size * alltime / rangetime); + if (threshold > cache_info.dc_size) + threshold = cache_info.dc_size; + if (threshold) + parisc_cache_flush_threshold = threshold; + printk(KERN_INFO "Cache flush threshold set to %lu KiB\n", parisc_cache_flush_threshold/1024); /* calculate TLB flush threshold */ + /* On SMP machines, skip the TLB measure of kernel text which + * has been mapped as huge pages. */ + if (num_online_cpus() > 1 && !parisc_requires_coherency()) { + threshold = max(cache_info.it_size, cache_info.dt_size); + threshold *= PAGE_SIZE; + threshold /= num_online_cpus(); + goto set_tlb_threshold; + } + alltime = mfctl(16); flush_tlb_all(); alltime = mfctl(16) - alltime; - size = PAGE_SIZE; + size = 0; start = (unsigned long) _text; rangetime = mfctl(16); while (start < (unsigned long) _end) { @@ -414,13 +419,12 @@ printk(KERN_DEBUG "Whole TLB flush %lu cycles, flushing %lu bytes %lu cycles\n", alltime, size, rangetime); - parisc_tlb_flush_threshold = size * alltime / rangetime; - parisc_tlb_flush_threshold *= num_online_cpus(); - parisc_tlb_flush_threshold = PAGE_ALIGN(parisc_tlb_flush_threshold); - if (!parisc_tlb_flush_threshold) - parisc_tlb_flush_threshold = FLUSH_TLB_THRESHOLD; + threshold = PAGE_ALIGN(num_online_cpus() * size * alltime / rangetime); - printk(KERN_INFO "Setting TLB flush threshold to %lu kB\n", +set_tlb_threshold: + if (threshold) + parisc_tlb_flush_threshold = threshold; + printk(KERN_INFO "TLB flush threshold set to %lu KiB\n", parisc_tlb_flush_threshold/1024); } --- linux-4.8.0.orig/arch/parisc/kernel/pacache.S +++ linux-4.8.0/arch/parisc/kernel/pacache.S @@ -96,7 +96,7 @@ fitmanymiddle: /* Loop if LOOP >= 2 */ addib,COND(>) -1, %r31, fitmanymiddle /* Adjusted inner loop decr */ - pitlbe 0(%sr1, %r28) + pitlbe %r0(%sr1, %r28) pitlbe,m %arg1(%sr1, %r28) /* Last pitlbe and addr adjust */ addib,COND(>) -1, %r29, fitmanymiddle /* Middle loop decr */ copy %arg3, %r31 /* Re-init inner loop count */ @@ -139,7 +139,7 @@ fdtmanymiddle: /* Loop if LOOP >= 2 */ addib,COND(>) -1, %r31, fdtmanymiddle /* Adjusted inner loop decr */ - pdtlbe 0(%sr1, %r28) + pdtlbe %r0(%sr1, %r28) pdtlbe,m %arg1(%sr1, %r28) /* Last pdtlbe and addr adjust */ addib,COND(>) -1, %r29, fdtmanymiddle /* Middle loop decr */ copy %arg3, %r31 /* Re-init inner loop count */ @@ -620,12 +620,12 @@ /* Purge any old translations */ #ifdef CONFIG_PA20 - pdtlb,l 0(%r28) - pdtlb,l 0(%r29) + pdtlb,l %r0(%r28) + pdtlb,l %r0(%r29) #else tlb_lock %r20,%r21,%r22 - pdtlb 0(%r28) - pdtlb 0(%r29) + pdtlb %r0(%r28) + pdtlb %r0(%r29) tlb_unlock %r20,%r21,%r22 #endif @@ -768,10 +768,10 @@ /* Purge any old translation */ #ifdef CONFIG_PA20 - pdtlb,l 0(%r28) + pdtlb,l %r0(%r28) #else tlb_lock %r20,%r21,%r22 - pdtlb 0(%r28) + pdtlb %r0(%r28) tlb_unlock %r20,%r21,%r22 #endif @@ -852,10 +852,10 @@ /* Purge any old translation */ #ifdef CONFIG_PA20 - pdtlb,l 0(%r28) + pdtlb,l %r0(%r28) #else tlb_lock %r20,%r21,%r22 - pdtlb 0(%r28) + pdtlb %r0(%r28) tlb_unlock %r20,%r21,%r22 #endif @@ -886,19 +886,10 @@ fdc,m r31(%r28) fdc,m r31(%r28) fdc,m r31(%r28) - cmpb,COND(<<) %r28, %r25,1b + cmpb,COND(<<) %r28, %r25,1b fdc,m r31(%r28) sync - -#ifdef CONFIG_PA20 - pdtlb,l 0(%r25) -#else - tlb_lock %r20,%r21,%r22 - pdtlb 0(%r25) - tlb_unlock %r20,%r21,%r22 -#endif - bv %r0(%r2) nop .exit @@ -925,13 +916,18 @@ depwi 0, 31,PAGE_SHIFT, %r28 /* Clear any offset bits */ #endif - /* Purge any old translation */ + /* Purge any old translation. Note that the FIC instruction + * may use either the instruction or data TLB. Given that we + * have a flat address space, it's not clear which TLB will be + * used. So, we purge both entries. */ #ifdef CONFIG_PA20 + pdtlb,l %r0(%r28) pitlb,l %r0(%sr4,%r28) #else tlb_lock %r20,%r21,%r22 - pitlb (%sr4,%r28) + pdtlb %r0(%r28) + pitlb %r0(%sr4,%r28) tlb_unlock %r20,%r21,%r22 #endif @@ -968,15 +964,6 @@ fic,m %r31(%sr4,%r28) sync - -#ifdef CONFIG_PA20 - pitlb,l %r0(%sr4,%r25) -#else - tlb_lock %r20,%r21,%r22 - pitlb (%sr4,%r25) - tlb_unlock %r20,%r21,%r22 -#endif - bv %r0(%r2) nop .exit --- linux-4.8.0.orig/arch/parisc/kernel/pci-dma.c +++ linux-4.8.0/arch/parisc/kernel/pci-dma.c @@ -95,8 +95,8 @@ if (!pte_none(*pte)) printk(KERN_ERR "map_pte_uncached: page already exists\n"); - set_pte(pte, __mk_pte(*paddr_ptr, PAGE_KERNEL_UNC)); purge_tlb_start(flags); + set_pte(pte, __mk_pte(*paddr_ptr, PAGE_KERNEL_UNC)); pdtlb_kernel(orig_vaddr); purge_tlb_end(flags); vaddr += PAGE_SIZE; --- linux-4.8.0.orig/arch/parisc/kernel/setup.c +++ linux-4.8.0/arch/parisc/kernel/setup.c @@ -38,6 +38,7 @@ #include #include +#include #include #include #include /* for pa7300lc_init() proto */ @@ -140,6 +141,13 @@ #endif printk(KERN_CONT ".\n"); + /* + * Check if initial kernel page mappings are sufficient. + * panic early if not, else we may access kernel functions + * and variables which can't be reached. + */ + if (__pa((unsigned long) &_end) >= KERNEL_INITIAL_SIZE) + panic("KERNEL_INITIAL_ORDER too small!"); pdc_console_init(); @@ -326,6 +334,10 @@ /* tell PDC we're Linux. Nevermind failure. */ pdc_stable_write(0x40, &osid, sizeof(osid)); + /* start with known state */ + flush_cache_all_local(); + flush_tlb_all_local(NULL); + processor_init(); #ifdef CONFIG_SMP pr_info("CPU(s): %d out of %d %s at %d.%06d MHz online\n", --- linux-4.8.0.orig/arch/parisc/kernel/sys_parisc.c +++ linux-4.8.0/arch/parisc/kernel/sys_parisc.c @@ -88,7 +88,7 @@ unsigned long len, unsigned long pgoff, unsigned long flags) { struct mm_struct *mm = current->mm; - struct vm_area_struct *vma; + struct vm_area_struct *vma, *prev; unsigned long task_size = TASK_SIZE; int do_color_align, last_mmap; struct vm_unmapped_area_info info; @@ -115,9 +115,10 @@ else addr = PAGE_ALIGN(addr); - vma = find_vma(mm, addr); + vma = find_vma_prev(mm, addr, &prev); if (task_size - len >= addr && - (!vma || addr + len <= vma->vm_start)) + (!vma || addr + len <= vm_start_gap(vma)) && + (!prev || addr >= vm_end_gap(prev))) goto found_addr; } @@ -141,7 +142,7 @@ const unsigned long len, const unsigned long pgoff, const unsigned long flags) { - struct vm_area_struct *vma; + struct vm_area_struct *vma, *prev; struct mm_struct *mm = current->mm; unsigned long addr = addr0; int do_color_align, last_mmap; @@ -175,9 +176,11 @@ addr = COLOR_ALIGN(addr, last_mmap, pgoff); else addr = PAGE_ALIGN(addr); - vma = find_vma(mm, addr); + + vma = find_vma_prev(mm, addr, &prev); if (TASK_SIZE - len >= addr && - (!vma || addr + len <= vma->vm_start)) + (!vma || addr + len <= vm_start_gap(vma)) && + (!prev || addr >= vm_end_gap(prev))) goto found_addr; } --- linux-4.8.0.orig/arch/parisc/kernel/syscall.S +++ linux-4.8.0/arch/parisc/kernel/syscall.S @@ -106,8 +106,6 @@ mtsp %r0,%sr4 /* get kernel space into sr4 */ mtsp %r0,%sr5 /* get kernel space into sr5 */ mtsp %r0,%sr6 /* get kernel space into sr6 */ - mfsp %sr7,%r1 /* save user sr7 */ - mtsp %r1,%sr3 /* and store it in sr3 */ #ifdef CONFIG_64BIT /* for now we can *always* set the W bit on entry to the syscall @@ -133,6 +131,14 @@ depdi 0, 31, 32, %r21 1: #endif + + /* We use a rsm/ssm pair to prevent sr3 from being clobbered + * by external interrupts. + */ + mfsp %sr7,%r1 /* save user sr7 */ + rsm PSW_SM_I, %r0 /* disable interrupts */ + mtsp %r1,%sr3 /* and store it in sr3 */ + mfctl %cr30,%r1 xor %r1,%r30,%r30 /* ye olde xor trick */ xor %r1,%r30,%r1 @@ -147,6 +153,7 @@ */ mtsp %r0,%sr7 /* get kernel space into sr7 */ + ssm PSW_SM_I, %r0 /* enable interrupts */ STREGM %r1,FRAME_SIZE(%r30) /* save r1 (usp) here for now */ mfctl %cr30,%r1 /* get task ptr in %r1 */ LDREG TI_TASK(%r1),%r1 --- linux-4.8.0.orig/arch/parisc/kernel/time.c +++ linux-4.8.0/arch/parisc/kernel/time.c @@ -14,6 +14,7 @@ #include #include #include +#include #include #include #include @@ -39,18 +40,6 @@ static unsigned long clocktick __read_mostly; /* timer cycles per tick */ -#ifndef CONFIG_64BIT -/* - * The processor-internal cycle counter (Control Register 16) is used as time - * source for the sched_clock() function. This register is 64bit wide on a - * 64-bit kernel and 32bit on a 32-bit kernel. Since sched_clock() always - * requires a 64bit counter we emulate on the 32-bit kernel the higher 32bits - * with a per-cpu variable which we increase every time the counter - * wraps-around (which happens every ~4 secounds). - */ -static DEFINE_PER_CPU(unsigned long, cr16_high_32_bits); -#endif - /* * We keep time on PA-RISC Linux by using the Interval Timer which is * a pair of registers; one is read-only and one is write-only; both @@ -121,12 +110,6 @@ */ mtctl(next_tick, 16); -#if !defined(CONFIG_64BIT) - /* check for overflow on a 32bit kernel (every ~4 seconds). */ - if (unlikely(next_tick < now)) - this_cpu_inc(cr16_high_32_bits); -#endif - /* Skip one clocktick on purpose if we missed next_tick. * The new CR16 must be "later" than current CR16 otherwise * itimer would not fire until CR16 wrapped - e.g 4 seconds @@ -208,7 +191,7 @@ /* clock source code */ -static cycle_t read_cr16(struct clocksource *cs) +static cycle_t notrace read_cr16(struct clocksource *cs) { return get_cycles(); } @@ -226,12 +209,6 @@ unsigned int cpu = smp_processor_id(); unsigned long next_tick = mfctl(16) + clocktick; -#if defined(CONFIG_HAVE_UNSTABLE_SCHED_CLOCK) && defined(CONFIG_64BIT) - /* With multiple 64bit CPUs online, the cr16's are not syncronized. */ - if (cpu != 0) - clear_sched_clock_stable(); -#endif - mtctl(next_tick, 16); /* kick off Interval Timer (CR16) */ per_cpu(cpu_data, cpu).it_value = next_tick; @@ -293,26 +270,9 @@ } -/* - * sched_clock() framework - */ - -static u32 cyc2ns_mul __read_mostly; -static u32 cyc2ns_shift __read_mostly; - -u64 sched_clock(void) +static u64 notrace read_cr16_sched_clock(void) { - u64 now; - - /* Get current cycle counter (Control Register 16). */ -#ifdef CONFIG_64BIT - now = mfctl(16); -#else - now = mfctl(16) + (((u64) this_cpu_read(cr16_high_32_bits)) << 32); -#endif - - /* return the value in ns (cycles_2_ns) */ - return mul_u64_u32_shr(now, cyc2ns_mul, cyc2ns_shift); + return get_cycles(); } @@ -322,17 +282,16 @@ void __init time_init(void) { - unsigned long current_cr16_khz; + unsigned long cr16_hz; - current_cr16_khz = PAGE0->mem_10msec/10; /* kHz */ clocktick = (100 * PAGE0->mem_10msec) / HZ; - - /* calculate mult/shift values for cr16 */ - clocks_calc_mult_shift(&cyc2ns_mul, &cyc2ns_shift, current_cr16_khz, - NSEC_PER_MSEC, 0); - start_cpu_itimer(); /* get CPU 0 started */ + cr16_hz = 100 * PAGE0->mem_10msec; /* Hz */ + /* register at clocksource framework */ - clocksource_register_khz(&clocksource_cr16, current_cr16_khz); + clocksource_register_hz(&clocksource_cr16, cr16_hz); + + /* register as sched_clock source */ + sched_clock_register(read_cr16_sched_clock, BITS_PER_LONG, cr16_hz); } --- linux-4.8.0.orig/arch/parisc/kernel/vmlinux.lds.S +++ linux-4.8.0/arch/parisc/kernel/vmlinux.lds.S @@ -89,8 +89,9 @@ /* Start of data section */ _sdata = .; - RO_DATA_SECTION(8) - + /* Architecturally we need to keep __gp below 0x1000000 and thus + * in front of RO_DATA_SECTION() which stores lots of tracepoint + * and ftrace symbols. */ #ifdef CONFIG_64BIT . = ALIGN(16); /* Linkage tables */ @@ -105,6 +106,8 @@ } #endif + RO_DATA_SECTION(8) + /* unwind info */ .PARISC.unwind : { __start___unwind = .; --- linux-4.8.0.orig/arch/powerpc/Kconfig +++ linux-4.8.0/arch/powerpc/Kconfig @@ -12,11 +12,6 @@ bool default y if PPC64 -config WORD_SIZE - int - default 64 if PPC64 - default 32 if !PPC64 - config ARCH_PHYS_ADDR_T_64BIT def_bool PPC64 || PHYS_64BIT @@ -169,7 +164,7 @@ select HAVE_ARCH_HARDENED_USERCOPY config GENERIC_CSUM - def_bool CPU_LITTLE_ENDIAN + def_bool n config EARLY_PRINTK bool @@ -637,7 +632,7 @@ int "Maximum zone order" range 8 9 if PPC64 && PPC_64K_PAGES default "9" if PPC64 && PPC_64K_PAGES - range 9 13 if PPC64 && !PPC_64K_PAGES + range 13 13 if PPC64 && !PPC_64K_PAGES default "13" if PPC64 && !PPC_64K_PAGES range 9 64 if PPC32 && PPC_16K_PAGES default "9" if PPC32 && PPC_16K_PAGES @@ -1084,6 +1079,8 @@ source "drivers/Kconfig" +source "ubuntu/Kconfig" + source "fs/Kconfig" source "lib/Kconfig" --- linux-4.8.0.orig/arch/powerpc/Makefile +++ linux-4.8.0/arch/powerpc/Makefile @@ -57,10 +57,15 @@ endif endif -# It seems there are times we use this Makefile without -# including the config file, but this replicates the old behaviour -ifeq ($(CONFIG_WORD_SIZE),) -CONFIG_WORD_SIZE := 32 +# BITS is used as extension for files which are available in a 32 bit +# and a 64 bit version to simplify shared Makefiles. +# e.g.: obj-y += foo_$(BITS).o +export BITS + +ifdef CONFIG_PPC64 + BITS := 64 +else + BITS := 32 endif UTS_MACHINE := $(OLDARCH) @@ -89,10 +94,10 @@ aflags-$(CONFIG_CPU_LITTLE_ENDIAN) += -mlittle-endian ifeq ($(HAS_BIARCH),y) -override AS += -a$(CONFIG_WORD_SIZE) -override LD += -m elf$(CONFIG_WORD_SIZE)$(LDEMULATION) -override CC += -m$(CONFIG_WORD_SIZE) -override AR := GNUTARGET=elf$(CONFIG_WORD_SIZE)-$(GNUTARGET) $(AR) +override AS += -a$(BITS) +override LD += -m elf$(BITS)$(LDEMULATION) +override CC += -m$(BITS) +override AR := GNUTARGET=elf$(BITS)-$(GNUTARGET) $(AR) endif LDFLAGS_vmlinux-y := -Bstatic @@ -179,7 +184,7 @@ KBUILD_CFLAGS += -pipe -Iarch/$(ARCH) $(CFLAGS-y) CPP = $(CC) -E $(KBUILD_CFLAGS) -CHECKFLAGS += -m$(CONFIG_WORD_SIZE) -D__powerpc__ -D__powerpc$(CONFIG_WORD_SIZE)__ +CHECKFLAGS += -m$(BITS) -D__powerpc__ -D__powerpc$(BITS)__ ifdef CONFIG_CPU_BIG_ENDIAN CHECKFLAGS += -D__BIG_ENDIAN__ else @@ -234,7 +239,7 @@ KBUILD_AFLAGS += $(aflags-y) KBUILD_CFLAGS += $(cflags-y) -head-y := arch/powerpc/kernel/head_$(CONFIG_WORD_SIZE).o +head-y := arch/powerpc/kernel/head_$(BITS).o head-$(CONFIG_8xx) := arch/powerpc/kernel/head_8xx.o head-$(CONFIG_40x) := arch/powerpc/kernel/head_40x.o head-$(CONFIG_44x) := arch/powerpc/kernel/head_44x.o @@ -263,7 +268,7 @@ 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) --- linux-4.8.0.orig/arch/powerpc/boot/Makefile +++ linux-4.8.0/arch/powerpc/boot/Makefile @@ -78,7 +78,8 @@ ns16550.c serial.c simple_alloc.c div64.S util.S \ gunzip_util.c elf_util.c $(zlib) devtree.c stdlib.c \ oflib.c ofconsole.c cuboot.c mpsc.c cpm-serial.c \ - uartlite.c mpc52xx-psc.c opal.c opal-calls.S + uartlite.c mpc52xx-psc.c opal.c +src-wlib-$(CONFIG_PPC64_BOOT_WRAPPER) += opal-calls.S src-wlib-$(CONFIG_40x) += 4xx.c planetcore.c src-wlib-$(CONFIG_44x) += 4xx.c ebony.c bamboo.c src-wlib-$(CONFIG_8xx) += mpc8xx.c planetcore.c fsl-soc.c --- linux-4.8.0.orig/arch/powerpc/boot/main.c +++ linux-4.8.0/arch/powerpc/boot/main.c @@ -217,8 +217,12 @@ console_ops.close(); kentry = (kernel_entry_t) vmlinux.addr; - if (ft_addr) - kentry(ft_addr, 0, NULL); + if (ft_addr) { + if(platform_ops.kentry) + platform_ops.kentry(ft_addr, vmlinux.addr); + else + kentry(ft_addr, 0, NULL); + } else kentry((unsigned long)initrd.addr, initrd.size, loader_info.promptr); --- linux-4.8.0.orig/arch/powerpc/boot/opal-calls.S +++ linux-4.8.0/arch/powerpc/boot/opal-calls.S @@ -12,6 +12,19 @@ .text + .globl opal_kentry +opal_kentry: + /* r3 is the fdt ptr */ + mtctr r4 + li r4, 0 + li r5, 0 + li r6, 0 + li r7, 0 + ld r11,opal@got(r2) + ld r8,0(r11) + ld r9,8(r11) + bctr + #define OPAL_CALL(name, token) \ .globl name; \ name: \ --- linux-4.8.0.orig/arch/powerpc/boot/opal.c +++ linux-4.8.0/arch/powerpc/boot/opal.c @@ -13,7 +13,7 @@ #include #include "../include/asm/opal-api.h" -#ifdef __powerpc64__ +#ifdef CONFIG_PPC64_BOOT_WRAPPER /* Global OPAL struct used by opal-call.S */ struct opal { @@ -23,14 +23,25 @@ static u32 opal_con_id; +/* see opal-wrappers.S */ int64_t opal_console_write(int64_t term_number, u64 *length, const u8 *buffer); int64_t opal_console_read(int64_t term_number, uint64_t *length, u8 *buffer); int64_t opal_console_write_buffer_space(uint64_t term_number, uint64_t *length); int64_t opal_console_flush(uint64_t term_number); int64_t opal_poll_events(uint64_t *outstanding_event_mask); +void opal_kentry(unsigned long fdt_addr, void *vmlinux_addr); + static int opal_con_open(void) { + /* + * When OPAL loads the boot kernel it stashes the OPAL base and entry + * address in r8 and r9 so the kernel can use the OPAL console + * before unflattening the devicetree. While executing the wrapper will + * probably trash r8 and r9 so this kentry hook restores them before + * entering the decompressed kernel. + */ + platform_ops.kentry = opal_kentry; return 0; } --- linux-4.8.0.orig/arch/powerpc/boot/ops.h +++ linux-4.8.0/arch/powerpc/boot/ops.h @@ -30,6 +30,7 @@ void * (*realloc)(void *ptr, unsigned long size); void (*exit)(void); void * (*vmlinux_alloc)(unsigned long size); + void (*kentry)(unsigned long fdt_addr, void *vmlinux_addr); }; extern struct platform_ops platform_ops; --- linux-4.8.0.orig/arch/powerpc/boot/ps3-head.S +++ linux-4.8.0/arch/powerpc/boot/ps3-head.S @@ -57,11 +57,6 @@ bctr 1: - /* Save the value at addr zero for a null pointer write check later. */ - - li r4, 0 - lwz r3, 0(r4) - /* Primary delays then goes to _zimage_start in wrapper. */ or 31, 31, 31 /* db16cyc */ --- linux-4.8.0.orig/arch/powerpc/boot/ps3.c +++ linux-4.8.0/arch/powerpc/boot/ps3.c @@ -119,13 +119,12 @@ flush_cache((void *)0x100, 512); } -void platform_init(unsigned long null_check) +void platform_init(void) { const u32 heapsize = 0x1000000 - (u32)_end; /* 16MiB */ void *chosen; unsigned long ft_addr; u64 rm_size; - unsigned long val; console_ops.write = ps3_console_write; platform_ops.exit = ps3_exit; @@ -153,11 +152,6 @@ printf(" flat tree at 0x%lx\n\r", ft_addr); - val = *(unsigned long *)0; - - if (val != null_check) - printf("null check failed: %lx != %lx\n\r", val, null_check); - ((kernel_entry_t)0)(ft_addr, 0, NULL); ps3_exit(); --- linux-4.8.0.orig/arch/powerpc/crypto/sha1-powerpc-asm.S +++ linux-4.8.0/arch/powerpc/crypto/sha1-powerpc-asm.S @@ -7,6 +7,15 @@ #include #include +#ifdef __BIG_ENDIAN__ +#define LWZ(rt, d, ra) \ + lwz rt,d(ra) +#else +#define LWZ(rt, d, ra) \ + li rt,d; \ + lwbrx rt,rt,ra +#endif + /* * We roll the registers for T, A, B, C, D, E around on each * iteration; T on iteration t is A on iteration t+1, and so on. @@ -23,7 +32,7 @@ #define W(t) (((t)%16)+16) #define LOADW(t) \ - lwz W(t),(t)*4(r4) + LWZ(W(t),(t)*4,r4) #define STEPD0_LOAD(t) \ andc r0,RD(t),RB(t); \ @@ -33,7 +42,7 @@ add r0,RE(t),r15; \ add RT(t),RT(t),r6; \ add r14,r0,W(t); \ - lwz W((t)+4),((t)+4)*4(r4); \ + LWZ(W((t)+4),((t)+4)*4,r4); \ rotlwi RB(t),RB(t),30; \ add RT(t),RT(t),r14 --- linux-4.8.0.orig/arch/powerpc/include/asm/asm-prototypes.h +++ linux-4.8.0/arch/powerpc/include/asm/asm-prototypes.h @@ -15,6 +15,8 @@ #include #include +#include + /* SMP */ extern struct thread_info *current_set[NR_CPUS]; extern struct thread_info *secondary_ti; @@ -72,4 +74,39 @@ void machine_check_exception(struct pt_regs *regs); void __kprobes emulation_assist_interrupt(struct pt_regs *regs); +/* signals, syscalls and interrupts */ +#ifdef CONFIG_PPC64 +int sys_swapcontext(struct ucontext __user *old_ctx, + struct ucontext __user *new_ctx, + long ctx_size, long r6, long r7, long r8, struct pt_regs *regs); +#else +long sys_swapcontext(struct ucontext __user *old_ctx, + struct ucontext __user *new_ctx, + int ctx_size, int r6, int r7, int r8, struct pt_regs *regs); +#endif +long sys_switch_endian(void); +notrace unsigned int __check_irq_replay(void); +void notrace restore_interrupts(void); + +/* ptrace */ +long do_syscall_trace_enter(struct pt_regs *regs); +void do_syscall_trace_leave(struct pt_regs *regs); + +/* process */ +void restore_math(struct pt_regs *regs); +void restore_tm_state(struct pt_regs *regs); + +/* prom_init (OpenFirmware) */ +unsigned long __init prom_init(unsigned long r3, unsigned long r4, + unsigned long pp, + unsigned long r6, unsigned long r7, + unsigned long kbase); + +/* setup */ +void __init early_setup(unsigned long dt_ptr); +void early_setup_secondary(void); + +/* time */ +void accumulate_stolen_time(void); + #endif /* _ASM_POWERPC_ASM_PROTOTYPES_H */ --- linux-4.8.0.orig/arch/powerpc/include/asm/book3s/32/pgalloc.h +++ linux-4.8.0/arch/powerpc/include/asm/book3s/32/pgalloc.h @@ -2,14 +2,42 @@ #define _ASM_POWERPC_BOOK3S_32_PGALLOC_H #include +#include -/* For 32-bit, all levels of page tables are just drawn from get_free_page() */ -#define MAX_PGTABLE_INDEX_SIZE 0 +/* + * Functions that deal with pagetables that could be at any level of + * the table need to be passed an "index_size" so they know how to + * handle allocation. For PTE pages (which are linked to a struct + * page for now, and drawn from the main get_free_pages() pool), the + * allocation size will be (2^index_size * sizeof(pointer)) and + * allocations are drawn from the kmem_cache in PGT_CACHE(index_size). + * + * The maximum index size needs to be big enough to allow any + * pagetable sizes we need, but small enough to fit in the low bits of + * any page table pointer. In other words all pagetables, even tiny + * ones, must be aligned to allow at least enough low 0 bits to + * contain this value. This value is also used as a mask, so it must + * be one less than a power of two. + */ +#define MAX_PGTABLE_INDEX_SIZE 0xf extern void __bad_pte(pmd_t *pmd); -extern pgd_t *pgd_alloc(struct mm_struct *mm); -extern void pgd_free(struct mm_struct *mm, pgd_t *pgd); +extern struct kmem_cache *pgtable_cache[]; +#define PGT_CACHE(shift) ({ \ + BUG_ON(!(shift)); \ + pgtable_cache[(shift) - 1]; \ + }) + +static inline pgd_t *pgd_alloc(struct mm_struct *mm) +{ + return kmem_cache_alloc(PGT_CACHE(PGD_INDEX_SIZE), GFP_KERNEL); +} + +static inline void pgd_free(struct mm_struct *mm, pgd_t *pgd) +{ + kmem_cache_free(PGT_CACHE(PGD_INDEX_SIZE), pgd); +} /* * We don't have any real pmd's, and this code never triggers because @@ -68,8 +96,12 @@ static inline void pgtable_free(void *table, unsigned index_size) { - BUG_ON(index_size); /* 32-bit doesn't use this */ - free_page((unsigned long)table); + if (!index_size) { + free_page((unsigned long)table); + } else { + BUG_ON(index_size > MAX_PGTABLE_INDEX_SIZE); + kmem_cache_free(PGT_CACHE(index_size), table); + } } #define check_pgt_cache() do { } while (0) --- linux-4.8.0.orig/arch/powerpc/include/asm/book3s/32/pgtable.h +++ linux-4.8.0/arch/powerpc/include/asm/book3s/32/pgtable.h @@ -8,6 +8,23 @@ /* And here we include common definitions */ #include +#define PTE_INDEX_SIZE PTE_SHIFT +#define PMD_INDEX_SIZE 0 +#define PUD_INDEX_SIZE 0 +#define PGD_INDEX_SIZE (32 - PGDIR_SHIFT) + +#define PMD_CACHE_INDEX PMD_INDEX_SIZE + +#ifndef __ASSEMBLY__ +#define PTE_TABLE_SIZE (sizeof(pte_t) << PTE_INDEX_SIZE) +#define PMD_TABLE_SIZE 0 +#define PUD_TABLE_SIZE 0 +#define PGD_TABLE_SIZE (sizeof(pgd_t) << PGD_INDEX_SIZE) +#endif /* __ASSEMBLY__ */ + +#define PTRS_PER_PTE (1 << PTE_INDEX_SIZE) +#define PTRS_PER_PGD (1 << PGD_INDEX_SIZE) + /* * The normal case is that PTEs are 32-bits and we have a 1-page * 1024-entry pgdir pointing to 1-page 1024-entry PTE pages. -- paulus @@ -19,14 +36,10 @@ * -Matt */ /* PGDIR_SHIFT determines what a top-level page table entry can map */ -#define PGDIR_SHIFT (PAGE_SHIFT + PTE_SHIFT) +#define PGDIR_SHIFT (PAGE_SHIFT + PTE_INDEX_SIZE) #define PGDIR_SIZE (1UL << PGDIR_SHIFT) #define PGDIR_MASK (~(PGDIR_SIZE-1)) -#define PTRS_PER_PTE (1 << PTE_SHIFT) -#define PTRS_PER_PMD 1 -#define PTRS_PER_PGD (1 << (32 - PGDIR_SHIFT)) - #define USER_PTRS_PER_PGD (TASK_SIZE / PGDIR_SIZE) /* * This is the bottom of the PKMAP area with HIGHMEM or an arbitrary @@ -82,12 +95,8 @@ extern unsigned long ioremap_bot; -/* - * entries per page directory level: our page-table tree is two-level, so - * we don't really have any PMD directory. - */ -#define PTE_TABLE_SIZE (sizeof(pte_t) << PTE_SHIFT) -#define PGD_TABLE_SIZE (sizeof(pgd_t) << (32 - PGDIR_SHIFT)) +/* Bits to mask out from a PGD to get to the PUD page */ +#define PGD_MASKED_BITS 0 #define pte_ERROR(e) \ pr_err("%s:%d: bad pte %llx.\n", __FILE__, __LINE__, \ @@ -223,7 +232,9 @@ } -static inline void __ptep_set_access_flags(pte_t *ptep, pte_t entry) +static inline void __ptep_set_access_flags(struct mm_struct *mm, + pte_t *ptep, pte_t entry, + unsigned long address) { unsigned long set = pte_val(entry) & (_PAGE_DIRTY | _PAGE_ACCESSED | _PAGE_RW | _PAGE_EXEC); @@ -282,15 +293,6 @@ #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) >> 3 }) #define __swp_entry_to_pte(x) ((pte_t) { (x).val << 3 }) -#ifndef CONFIG_PPC_4K_PAGES -void pgtable_cache_init(void); -#else -/* - * No page table caches to initialise - */ -#define pgtable_cache_init() do { } while (0) -#endif - extern int get_pteptr(struct mm_struct *mm, unsigned long addr, pte_t **ptep, pmd_t **pmdp); --- linux-4.8.0.orig/arch/powerpc/include/asm/book3s/64/hash.h +++ linux-4.8.0/arch/powerpc/include/asm/book3s/64/hash.h @@ -201,6 +201,10 @@ unsigned long phys); extern void hash__vmemmap_remove_mapping(unsigned long start, unsigned long page_size); + +int hash__create_section_mapping(unsigned long start, unsigned long end); +int hash__remove_section_mapping(unsigned long start, unsigned long end); + #endif /* !__ASSEMBLY__ */ #endif /* __KERNEL__ */ #endif /* _ASM_POWERPC_BOOK3S_64_HASH_H */ --- linux-4.8.0.orig/arch/powerpc/include/asm/book3s/64/hugetlb.h +++ linux-4.8.0/arch/powerpc/include/asm/book3s/64/hugetlb.h @@ -0,0 +1,53 @@ +#ifndef _ASM_POWERPC_BOOK3S_64_HUGETLB_H +#define _ASM_POWERPC_BOOK3S_64_HUGETLB_H +/* + * For radix we want generic code to handle hugetlb. But then if we want + * both hash and radix to be enabled together we need to workaround the + * limitations. + */ +void radix__flush_hugetlb_page(struct vm_area_struct *vma, unsigned long vmaddr); +void radix__local_flush_hugetlb_page(struct vm_area_struct *vma, unsigned long vmaddr); +extern unsigned long +radix__hugetlb_get_unmapped_area(struct file *file, unsigned long addr, + unsigned long len, unsigned long pgoff, + unsigned long flags); + +static inline int hstate_get_psize(struct hstate *hstate) +{ + unsigned long shift; + + shift = huge_page_shift(hstate); + if (shift == mmu_psize_defs[MMU_PAGE_2M].shift) + return MMU_PAGE_2M; + else if (shift == mmu_psize_defs[MMU_PAGE_1G].shift) + return MMU_PAGE_1G; + else if (shift == mmu_psize_defs[MMU_PAGE_16M].shift) + return MMU_PAGE_16M; + else if (shift == mmu_psize_defs[MMU_PAGE_16G].shift) + return MMU_PAGE_16G; + else { + WARN(1, "Wrong huge page shift\n"); + return mmu_virtual_psize; + } +} + +#define arch_make_huge_pte arch_make_huge_pte +static inline pte_t arch_make_huge_pte(pte_t entry, struct vm_area_struct *vma, + struct page *page, int writable) +{ + unsigned long page_shift; + + if (!cpu_has_feature(CPU_FTR_POWER9_DD1)) + return entry; + + page_shift = huge_page_shift(hstate_vma(vma)); + /* + * We don't support 1G hugetlb pages yet. + */ + VM_WARN_ON(page_shift == mmu_psize_defs[MMU_PAGE_1G].shift); + if (page_shift == mmu_psize_defs[MMU_PAGE_2M].shift) + return __pte(pte_val(entry) | _PAGE_LARGE); + else + return entry; +} +#endif --- linux-4.8.0.orig/arch/powerpc/include/asm/book3s/64/mmu-hash.h +++ linux-4.8.0/arch/powerpc/include/asm/book3s/64/mmu-hash.h @@ -70,7 +70,9 @@ #define HPTE_V_SSIZE_SHIFT 62 #define HPTE_V_AVPN_SHIFT 7 +#define HPTE_V_COMMON_BITS ASM_CONST(0x000fffffffffffff) #define HPTE_V_AVPN ASM_CONST(0x3fffffffffffff80) +#define HPTE_V_AVPN_3_0 ASM_CONST(0x000fffffffffff80) #define HPTE_V_AVPN_VAL(x) (((x) & HPTE_V_AVPN) >> HPTE_V_AVPN_SHIFT) #define HPTE_V_COMPARE(x,y) (!(((x) ^ (y)) & 0xffffffffffffff80UL)) #define HPTE_V_BOLTED ASM_CONST(0x0000000000000010) @@ -80,14 +82,16 @@ #define HPTE_V_VALID ASM_CONST(0x0000000000000001) /* - * ISA 3.0 have a different HPTE format. + * ISA 3.0 has a different HPTE format. */ #define HPTE_R_3_0_SSIZE_SHIFT 58 +#define HPTE_R_3_0_SSIZE_MASK (3ull << HPTE_R_3_0_SSIZE_SHIFT) #define HPTE_R_PP0 ASM_CONST(0x8000000000000000) #define HPTE_R_TS ASM_CONST(0x4000000000000000) #define HPTE_R_KEY_HI ASM_CONST(0x3000000000000000) #define HPTE_R_RPN_SHIFT 12 #define HPTE_R_RPN ASM_CONST(0x0ffffffffffff000) +#define HPTE_R_RPN_3_0 ASM_CONST(0x01fffffffffff000) #define HPTE_R_PP ASM_CONST(0x0000000000000003) #define HPTE_R_PPP ASM_CONST(0x8000000000000003) #define HPTE_R_N ASM_CONST(0x0000000000000004) @@ -245,6 +249,43 @@ } /* + * This array is indexed by the LP field of the HPTE second dword. + * Since this field may contain some RPN bits, some entries are + * replicated so that we get the same value irrespective of RPN. + * The top 4 bits are the page size index (MMU_PAGE_*) for the + * actual page size, the bottom 4 bits are the base page size. + */ +extern u8 hpte_page_sizes[1 << LP_BITS]; + +static inline unsigned long __hpte_page_size(unsigned long h, unsigned long l, + bool is_base_size) +{ + unsigned int i, lp; + + if (!(h & HPTE_V_LARGE)) + return 1ul << 12; + + /* Look at the 8 bit LP value */ + lp = (l >> LP_SHIFT) & ((1 << LP_BITS) - 1); + i = hpte_page_sizes[lp]; + if (!i) + return 0; + if (!is_base_size) + i >>= 4; + return 1ul << mmu_psize_defs[i & 0xf].shift; +} + +static inline unsigned long hpte_page_size(unsigned long h, unsigned long l) +{ + return __hpte_page_size(h, l, 0); +} + +static inline unsigned long hpte_base_page_size(unsigned long h, unsigned long l) +{ + return __hpte_page_size(h, l, 1); +} + +/* * The current system page and segment sizes */ extern int mmu_kernel_ssize; @@ -279,12 +320,43 @@ */ v = (vpn >> (23 - VPN_SHIFT)) & ~(mmu_psize_defs[psize].avpnm); v <<= HPTE_V_AVPN_SHIFT; - if (!cpu_has_feature(CPU_FTR_ARCH_300)) - v |= ((unsigned long) ssize) << HPTE_V_SSIZE_SHIFT; + v |= ((unsigned long) ssize) << HPTE_V_SSIZE_SHIFT; return v; } /* + * ISA v3.0 defines a new HPTE format, which differs from the old + * format in having smaller AVPN and ARPN fields, and the B field + * in the second dword instead of the first. + */ +static inline unsigned long hpte_old_to_new_v(unsigned long v) +{ + /* trim AVPN, drop B */ + return v & HPTE_V_COMMON_BITS; +} + +static inline unsigned long hpte_old_to_new_r(unsigned long v, unsigned long r) +{ + /* move B field from 1st to 2nd dword, trim ARPN */ + return (r & ~HPTE_R_3_0_SSIZE_MASK) | + (((v) >> HPTE_V_SSIZE_SHIFT) << HPTE_R_3_0_SSIZE_SHIFT); +} + +static inline unsigned long hpte_new_to_old_v(unsigned long v, unsigned long r) +{ + /* insert B field */ + return (v & HPTE_V_COMMON_BITS) | + ((r & HPTE_R_3_0_SSIZE_MASK) << + (HPTE_V_SSIZE_SHIFT - HPTE_R_3_0_SSIZE_SHIFT)); +} + +static inline unsigned long hpte_new_to_old_r(unsigned long r) +{ + /* clear out B field */ + return r & ~HPTE_R_3_0_SSIZE_MASK; +} + +/* * This function sets the AVPN and L fields of the HPTE appropriately * using the base page size and actual page size. */ @@ -304,12 +376,8 @@ * aligned for the requested page size */ static inline unsigned long hpte_encode_r(unsigned long pa, int base_psize, - int actual_psize, int ssize) + int actual_psize) { - - if (cpu_has_feature(CPU_FTR_ARCH_300)) - pa |= ((unsigned long) ssize) << HPTE_R_3_0_SSIZE_SHIFT; - /* A 4K page needs no special encoding */ if (actual_psize == MMU_PAGE_4K) return pa & HPTE_R_RPN; --- linux-4.8.0.orig/arch/powerpc/include/asm/book3s/64/mmu.h +++ linux-4.8.0/arch/powerpc/include/asm/book3s/64/mmu.h @@ -138,5 +138,11 @@ extern int (*register_process_table)(unsigned long base, unsigned long page_size, unsigned long tbl_size); +#ifdef CONFIG_PPC_PSERIES +extern void radix_init_pseries(void); +#else +static inline void radix_init_pseries(void) { }; +#endif + #endif /* __ASSEMBLY__ */ #endif /* _ASM_POWERPC_BOOK3S_64_MMU_H_ */ --- linux-4.8.0.orig/arch/powerpc/include/asm/book3s/64/pgtable.h +++ linux-4.8.0/arch/powerpc/include/asm/book3s/64/pgtable.h @@ -6,6 +6,8 @@ */ #define _PAGE_BIT_SWAP_TYPE 0 +#define _PAGE_RO 0 + #define _PAGE_EXEC 0x00001 /* execute permission */ #define _PAGE_WRITE 0x00002 /* write access allowed */ #define _PAGE_READ 0x00004 /* read access allowed */ @@ -24,6 +26,11 @@ #define _RPAGE_SW1 0x00800 #define _RPAGE_SW2 0x00400 #define _RPAGE_SW3 0x00200 +#define _RPAGE_RSV1 0x1000000000000000UL +#define _RPAGE_RSV2 0x0800000000000000UL +#define _RPAGE_RSV3 0x0400000000000000UL +#define _RPAGE_RSV4 0x0200000000000000UL + #ifdef CONFIG_MEM_SOFT_DIRTY #define _PAGE_SOFT_DIRTY _RPAGE_SW3 /* software: software dirty tracking */ #else @@ -31,6 +38,11 @@ #endif #define _PAGE_SPECIAL _RPAGE_SW2 /* software: special page */ +/* + * For P9 DD1 only, we need to track whether the pte's huge. + */ +#define _PAGE_LARGE _RPAGE_RSV1 + #define _PAGE_PTE (1ul << 62) /* distinguishes PTEs from pointers */ #define _PAGE_PRESENT (1ul << 63) /* pte contains a translation */ @@ -359,6 +371,23 @@ return __pte(old); } +#define __HAVE_ARCH_PTEP_GET_AND_CLEAR_FULL +static inline pte_t ptep_get_and_clear_full(struct mm_struct *mm, + unsigned long addr, + pte_t *ptep, int full) +{ + if (full && radix_enabled()) { + /* + * Let's skip the DD1 style pte update here. We know that + * this is a full mm pte clear and hence can be sure there is + * no parallel set_pte. + */ + return radix__ptep_get_and_clear_full(mm, addr, ptep, full); + } + return ptep_get_and_clear(mm, addr, ptep); +} + + static inline void pte_clear(struct mm_struct *mm, unsigned long addr, pte_t * ptep) { @@ -565,10 +594,12 @@ * Generic functions with hash/radix callbacks */ -static inline void __ptep_set_access_flags(pte_t *ptep, pte_t entry) +static inline void __ptep_set_access_flags(struct mm_struct *mm, + pte_t *ptep, pte_t entry, + unsigned long address) { if (radix_enabled()) - return radix__ptep_set_access_flags(ptep, entry); + return radix__ptep_set_access_flags(mm, ptep, entry, address); return hash__ptep_set_access_flags(ptep, entry); } @@ -786,9 +817,6 @@ #define pgd_ERROR(e) \ pr_err("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e)) -void pgtable_cache_add(unsigned shift, void (*ctor)(void *)); -void pgtable_cache_init(void); - static inline int map_kernel_page(unsigned long ea, unsigned long pa, unsigned long flags) { --- linux-4.8.0.orig/arch/powerpc/include/asm/book3s/64/radix.h +++ linux-4.8.0/arch/powerpc/include/asm/book3s/64/radix.h @@ -11,6 +11,11 @@ #include #endif +#ifndef __ASSEMBLY__ +#include +#include +#endif + /* An empty PTE can still have a R or C writeback */ #define RADIX_PTE_NONE_MASK (_PAGE_DIRTY | _PAGE_ACCESSED) @@ -105,11 +110,8 @@ #define RADIX_PUD_TABLE_SIZE (sizeof(pud_t) << RADIX_PUD_INDEX_SIZE) #define RADIX_PGD_TABLE_SIZE (sizeof(pgd_t) << RADIX_PGD_INDEX_SIZE) -static inline unsigned long radix__pte_update(struct mm_struct *mm, - unsigned long addr, - pte_t *ptep, unsigned long clr, - unsigned long set, - int huge) +static inline unsigned long __radix_pte_update(pte_t *ptep, unsigned long clr, + unsigned long set) { pte_t pte; unsigned long old_pte, new_pte; @@ -121,33 +123,84 @@ } while (!pte_xchg(ptep, __pte(old_pte), __pte(new_pte))); - /* We already do a sync in cmpxchg, is ptesync needed ?*/ - asm volatile("ptesync" : : : "memory"); - /* huge pages use the old page table lock */ + return old_pte; +} + + +static inline unsigned long radix__pte_update(struct mm_struct *mm, + unsigned long addr, + pte_t *ptep, unsigned long clr, + unsigned long set, + int huge) +{ + unsigned long old_pte; + + if (cpu_has_feature(CPU_FTR_POWER9_DD1)) { + + unsigned long new_pte; + + old_pte = __radix_pte_update(ptep, ~0ul, 0); + /* + * new value of pte + */ + new_pte = (old_pte | set) & ~clr; + radix__flush_tlb_pte_p9_dd1(old_pte, mm, addr); + if (new_pte) + __radix_pte_update(ptep, 0, new_pte); + } else + old_pte = __radix_pte_update(ptep, clr, set); if (!huge) assert_pte_locked(mm, addr); return old_pte; } +static inline pte_t radix__ptep_get_and_clear_full(struct mm_struct *mm, + unsigned long addr, + pte_t *ptep, int full) +{ + unsigned long old_pte; + + if (full) { + /* + * If we are trying to clear the pte, we can skip + * the DD1 pte update sequence and batch the tlb flush. The + * tlb flush batching is done by mmu gather code. We + * still keep the cmp_xchg update to make sure we get + * correct R/C bit which might be updated via Nest MMU. + */ + old_pte = __radix_pte_update(ptep, ~0ul, 0); + } else + old_pte = radix__pte_update(mm, addr, ptep, ~0ul, 0, 0); + + return __pte(old_pte); +} + /* * Set the dirty and/or accessed bits atomically in a linux PTE, this * function doesn't need to invalidate tlb. */ -static inline void radix__ptep_set_access_flags(pte_t *ptep, pte_t entry) +static inline void radix__ptep_set_access_flags(struct mm_struct *mm, + pte_t *ptep, pte_t entry, + unsigned long address) { - pte_t pte; - unsigned long old_pte, new_pte; + unsigned long set = pte_val(entry) & (_PAGE_DIRTY | _PAGE_ACCESSED | _PAGE_RW | _PAGE_EXEC); - do { - pte = READ_ONCE(*ptep); - old_pte = pte_val(pte); - new_pte = old_pte | set; - } while (!pte_xchg(ptep, __pte(old_pte), __pte(new_pte))); + if (cpu_has_feature(CPU_FTR_POWER9_DD1)) { - /* We already do a sync in cmpxchg, is ptesync needed ?*/ + unsigned long old_pte, new_pte; + + old_pte = __radix_pte_update(ptep, ~0, 0); + /* + * new value of pte + */ + new_pte = old_pte | set; + radix__flush_tlb_pte_p9_dd1(old_pte, mm, address); + __radix_pte_update(ptep, 0, new_pte); + } else + __radix_pte_update(ptep, 0, set); asm volatile("ptesync" : : : "memory"); } @@ -198,6 +251,8 @@ static inline pmd_t radix__pmd_mkhuge(pmd_t pmd) { + if (cpu_has_feature(CPU_FTR_POWER9_DD1)) + return __pmd(pmd_val(pmd) | _PAGE_PTE | _PAGE_LARGE); return __pmd(pmd_val(pmd) | _PAGE_PTE); } static inline void radix__pmdp_huge_split_prepare(struct vm_area_struct *vma, @@ -233,15 +288,25 @@ { unsigned long rts_field; /* - * we support 52 bits, hence 52-31 = 21, 0b10101 + * We support 52 bits, hence: + * DD1 52-28 = 24, 0b11000 + * Others 52-31 = 21, 0b10101 * RTS encoding details * bits 0 - 3 of rts -> bits 6 - 8 unsigned long * bits 4 - 5 of rts -> bits 62 - 63 of unsigned long */ - rts_field = (0x5UL << 5); /* 6 - 8 bits */ - rts_field |= (0x2UL << 61); - + if (cpu_has_feature(CPU_FTR_POWER9_DD1)) + rts_field = (0x3UL << 61); + else { + rts_field = (0x5UL << 5); /* 6 - 8 bits */ + rts_field |= (0x2UL << 61); + } return rts_field; } + +#ifdef CONFIG_MEMORY_HOTPLUG +int radix__create_section_mapping(unsigned long start, unsigned long end); +int radix__remove_section_mapping(unsigned long start, unsigned long end); +#endif /* CONFIG_MEMORY_HOTPLUG */ #endif /* __ASSEMBLY__ */ #endif --- linux-4.8.0.orig/arch/powerpc/include/asm/book3s/64/tlbflush-radix.h +++ linux-4.8.0/arch/powerpc/include/asm/book3s/64/tlbflush-radix.h @@ -41,4 +41,7 @@ extern void radix__flush_tlb_lpid_va(unsigned long lpid, unsigned long gpa, unsigned long page_size); extern void radix__flush_tlb_lpid(unsigned long lpid); +extern void radix__flush_tlb_all(void); +extern void radix__flush_tlb_pte_p9_dd1(unsigned long old_pte, struct mm_struct *mm, + unsigned long address); #endif --- linux-4.8.0.orig/arch/powerpc/include/asm/checksum.h +++ linux-4.8.0/arch/powerpc/include/asm/checksum.h @@ -53,19 +53,29 @@ return (__force __sum16)(~((__force u32)sum + tmp) >> 16); } -static inline __wsum csum_tcpudp_nofold(__be32 saddr, __be32 daddr, - unsigned short len, - unsigned short proto, - __wsum sum) +static inline u32 from64to32(u64 x) +{ + /* add up 32-bit and 32-bit for 32+c bit */ + x = (x & 0xffffffff) + (x >> 32); + /* add up carry.. */ + x = (x & 0xffffffff) + (x >> 32); + return (u32)x; +} + +static inline __wsum csum_tcpudp_nofold(__be32 saddr, __be32 daddr, __u32 len, + __u8 proto, __wsum sum) { #ifdef __powerpc64__ - unsigned long s = (__force u32)sum; + u64 s = (__force u32)sum; s += (__force u32)saddr; s += (__force u32)daddr; +#ifdef __BIG_ENDIAN__ s += proto + len; - s += (s >> 32); - return (__force __wsum) s; +#else + s += (proto + len) << 8; +#endif + return (__force __wsum) from64to32(s); #else __asm__("\n\ addc %0,%0,%1 \n\ @@ -83,10 +93,8 @@ * computes the checksum of the TCP/UDP pseudo-header * returns a 16-bit checksum, already complemented */ -static inline __sum16 csum_tcpudp_magic(__be32 saddr, __be32 daddr, - unsigned short len, - unsigned short proto, - __wsum sum) +static inline __sum16 csum_tcpudp_magic(__be32 saddr, __be32 daddr, __u32 len, + __u8 proto, __wsum sum) { return csum_fold(csum_tcpudp_nofold(saddr, daddr, len, proto, sum)); } @@ -104,7 +112,7 @@ #ifdef __powerpc64__ res += (__force u64)addend; - return (__force __wsum)((u32)res + (res >> 32)); + return (__force __wsum) from64to32(res); #else asm("addc %0,%0,%1;" "addze %0,%0;" @@ -127,8 +135,7 @@ for (i = 0; i < ihl - 1; i++, ptr++) s += *ptr; - s += (s >> 32); - return (__force __wsum)s; + return (__force __wsum)from64to32(s); #else __wsum sum, tmp; --- linux-4.8.0.orig/arch/powerpc/include/asm/cpuidle.h +++ linux-4.8.0/arch/powerpc/include/asm/cpuidle.h @@ -10,11 +10,55 @@ #define PNV_CORE_IDLE_LOCK_BIT 0x100 #define PNV_CORE_IDLE_THREAD_BITS 0x0FF +/* + * ============================ NOTE ================================= + * The older firmware populates only the RL field in the psscr_val and + * sets the psscr_mask to 0xf. On such a firmware, the kernel sets the + * remaining PSSCR fields to default values as follows: + * + * - ESL and EC bits are to 1. So wakeup from any stop state will be + * at vector 0x100. + * + * - MTL and PSLL are set to the maximum allowed value as per the ISA, + * i.e. 15. + * + * - The Transition Rate, TR is set to the Maximum value 3. + */ +#define PSSCR_HV_DEFAULT_VAL (PSSCR_ESL | PSSCR_EC | \ + PSSCR_PSLL_MASK | PSSCR_TR_MASK | \ + PSSCR_MTL_MASK) + +#define PSSCR_HV_DEFAULT_MASK (PSSCR_ESL | PSSCR_EC | \ + PSSCR_PSLL_MASK | PSSCR_TR_MASK | \ + PSSCR_MTL_MASK | PSSCR_RL_MASK) +#define PSSCR_EC_SHIFT 20 +#define PSSCR_ESL_SHIFT 21 +#define GET_PSSCR_EC(x) (((x) & PSSCR_EC) >> PSSCR_EC_SHIFT) +#define GET_PSSCR_ESL(x) (((x) & PSSCR_ESL) >> PSSCR_ESL_SHIFT) +#define GET_PSSCR_RL(x) ((x) & PSSCR_RL_MASK) + +#define ERR_EC_ESL_MISMATCH -1 +#define ERR_DEEP_STATE_ESL_MISMATCH -2 + #ifndef __ASSEMBLY__ extern u32 pnv_fastsleep_workaround_at_entry[]; extern u32 pnv_fastsleep_workaround_at_exit[]; extern u64 pnv_first_deep_stop_state; + +int validate_psscr_val_mask(u64 *psscr_val, u64 *psscr_mask, u32 flags); +static inline void report_invalid_psscr_val(u64 psscr_val, int err) +{ + switch (err) { + case ERR_EC_ESL_MISMATCH: + pr_warn("Invalid psscr 0x%016llx : ESL,EC bits unequal", + psscr_val); + break; + case ERR_DEEP_STATE_ESL_MISMATCH: + pr_warn("Invalid psscr 0x%016llx : ESL cleared for deep stop-state", + psscr_val); + } +} #endif #endif @@ -26,9 +70,12 @@ std r0,0(r1); \ ptesync; \ ld r0,0(r1); \ -1: cmp cr0,r0,r0; \ - bne 1b; \ +236: cmpd cr0,r0,r0; \ + bne 236b; \ IDLE_INST; \ + +#define IDLE_STATE_ENTER_SEQ_NORET(IDLE_INST) \ + IDLE_STATE_ENTER_SEQ(IDLE_INST) \ b . #endif /* CONFIG_PPC_P7_NAP */ --- linux-4.8.0.orig/arch/powerpc/include/asm/cputable.h +++ linux-4.8.0/arch/powerpc/include/asm/cputable.h @@ -212,6 +212,7 @@ #define CPU_FTR_DABRX LONG_ASM_CONST(0x0800000000000000) #define CPU_FTR_PMAO_BUG LONG_ASM_CONST(0x1000000000000000) #define CPU_FTR_SUBCORE LONG_ASM_CONST(0x2000000000000000) +#define CPU_FTR_POWER9_DD1 LONG_ASM_CONST(0x4000000000000000) #ifndef __ASSEMBLY__ @@ -472,6 +473,7 @@ CPU_FTR_ICSWX | CPU_FTR_CFAR | CPU_FTR_HVMODE | CPU_FTR_VMX_COPY | \ CPU_FTR_DBELL | CPU_FTR_HAS_PPR | CPU_FTR_DAWR | \ CPU_FTR_ARCH_207S | CPU_FTR_TM_COMP | CPU_FTR_ARCH_300) +#define CPU_FTRS_POWER9_DD1 (CPU_FTRS_POWER9 | CPU_FTR_POWER9_DD1) #define CPU_FTRS_CELL (CPU_FTR_USE_TB | CPU_FTR_LWSYNC | \ CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | \ CPU_FTR_ALTIVEC_COMP | CPU_FTR_MMCRA | CPU_FTR_SMT | \ @@ -490,7 +492,7 @@ (CPU_FTRS_POWER4 | CPU_FTRS_PPC970 | CPU_FTRS_POWER5 | \ CPU_FTRS_POWER6 | CPU_FTRS_POWER7 | CPU_FTRS_POWER8E | \ CPU_FTRS_POWER8 | CPU_FTRS_POWER8_DD1 | CPU_FTRS_CELL | \ - CPU_FTRS_PA6T | CPU_FTR_VSX | CPU_FTRS_POWER9) + CPU_FTRS_PA6T | CPU_FTR_VSX | CPU_FTRS_POWER9 | CPU_FTRS_POWER9_DD1) #endif #else enum { --- linux-4.8.0.orig/arch/powerpc/include/asm/cputhreads.h +++ linux-4.8.0/arch/powerpc/include/asm/cputhreads.h @@ -2,6 +2,7 @@ #define _ASM_POWERPC_CPUTHREADS_H #ifndef __ASSEMBLY__ +#include #include #include --- linux-4.8.0.orig/arch/powerpc/include/asm/fadump.h +++ linux-4.8.0/arch/powerpc/include/asm/fadump.h @@ -45,10 +45,6 @@ #define memblock_num_regions(memblock_type) (memblock.memblock_type.cnt) -#ifndef ELF_CORE_EFLAGS -#define ELF_CORE_EFLAGS 0 -#endif - /* Firmware provided dump sections */ #define FADUMP_CPU_STATE_DATA 0x0001 #define FADUMP_HPTE_REGION 0x0002 --- linux-4.8.0.orig/arch/powerpc/include/asm/hugetlb.h +++ linux-4.8.0/arch/powerpc/include/asm/hugetlb.h @@ -9,7 +9,7 @@ #ifdef CONFIG_PPC_BOOK3S_64 -#include +#include /* * This should work for other subarchs too. But right now we use the * new format only for 64bit book3s --- linux-4.8.0.orig/arch/powerpc/include/asm/hvcall.h +++ linux-4.8.0/arch/powerpc/include/asm/hvcall.h @@ -275,7 +275,10 @@ #define H_COP 0x304 #define H_GET_MPP_X 0x314 #define H_SET_MODE 0x31C -#define MAX_HCALL_OPCODE H_SET_MODE +#define H_CLEAR_HPT 0x358 +#define H_REGISTER_PROC_TBL 0x37C +#define H_SIGNAL_SYS_RESET 0x380 +#define MAX_HCALL_OPCODE H_SIGNAL_SYS_RESET /* H_VIOCTL functions */ #define H_GET_VIOA_DUMP_SIZE 0x01 @@ -306,6 +309,21 @@ #define H_SET_MODE_RESOURCE_ADDR_TRANS_MODE 3 #define H_SET_MODE_RESOURCE_LE 4 +/* Values for argument to H_SIGNAL_SYS_RESET */ +#define H_SIGNAL_SYS_RESET_ALL -1 +#define H_SIGNAL_SYS_RESET_ALL_OTHERS -2 +/* >= 0 values are CPU number */ + +/* Flag values used in H_REGISTER_PROC_TBL hcall */ +#define PROC_TABLE_OP_MASK 0x18 +#define PROC_TABLE_DEREG 0x10 +#define PROC_TABLE_NEW 0x18 +#define PROC_TABLE_TYPE_MASK 0x06 +#define PROC_TABLE_HPT_SLB 0x00 +#define PROC_TABLE_HPT_PT 0x02 +#define PROC_TABLE_RADIX 0x04 +#define PROC_TABLE_GTSE 0x01 + #ifndef __ASSEMBLY__ /** @@ -412,27 +430,6 @@ } } -#ifdef CONFIG_PPC_PSERIES -extern int CMO_PrPSP; -extern int CMO_SecPSP; -extern unsigned long CMO_PageSize; - -static inline int cmo_get_primary_psp(void) -{ - return CMO_PrPSP; -} - -static inline int cmo_get_secondary_psp(void) -{ - return CMO_SecPSP; -} - -static inline unsigned long cmo_get_page_size(void) -{ - return CMO_PageSize; -} -#endif /* CONFIG_PPC_PSERIES */ - #endif /* __ASSEMBLY__ */ #endif /* __KERNEL__ */ #endif /* _ASM_POWERPC_HVCALL_H */ --- linux-4.8.0.orig/arch/powerpc/include/asm/io.h +++ linux-4.8.0/arch/powerpc/include/asm/io.h @@ -241,6 +241,35 @@ #endif #endif /* __powerpc64__ */ + +/* + * Simple Cache inhibited accessors + * Unlike the DEF_MMIO_* macros, these don't include any h/w memory + * barriers, callers need to manage memory barriers on their own. + * These can only be used in hypervisor real mode. + */ + +static inline u32 _lwzcix(unsigned long addr) +{ + u32 ret; + + __asm__ __volatile__("lwzcix %0,0, %1" + : "=r" (ret) : "r" (addr) : "memory"); + return ret; +} + +static inline void _stbcix(u64 addr, u8 val) +{ + __asm__ __volatile__("stbcix %0,0,%1" + : : "r" (val), "r" (addr) : "memory"); +} + +static inline void _stwcix(u64 addr, u32 val) +{ + __asm__ __volatile__("stwcix %0,0,%1" + : : "r" (val), "r" (addr) : "memory"); +} + /* * Low level IO stream instructions are defined out of line for now */ --- linux-4.8.0.orig/arch/powerpc/include/asm/kvm_asm.h +++ linux-4.8.0/arch/powerpc/include/asm/kvm_asm.h @@ -99,12 +99,22 @@ #define BOOK3S_INTERRUPT_H_EMUL_ASSIST 0xe40 #define BOOK3S_INTERRUPT_HMI 0xe60 #define BOOK3S_INTERRUPT_H_DOORBELL 0xe80 +#define BOOK3S_INTERRUPT_H_VIRT 0xea0 #define BOOK3S_INTERRUPT_PERFMON 0xf00 #define BOOK3S_INTERRUPT_ALTIVEC 0xf20 #define BOOK3S_INTERRUPT_VSX 0xf40 #define BOOK3S_INTERRUPT_FAC_UNAVAIL 0xf60 #define BOOK3S_INTERRUPT_H_FAC_UNAVAIL 0xf80 +/* book3s_hv */ + +/* + * Special trap used to indicate to host that this is a + * passthrough interrupt that could not be handled + * completely in the guest. + */ +#define BOOK3S_INTERRUPT_HV_RM_HARD 0x5555 + #define BOOK3S_IRQPRIO_SYSTEM_RESET 0 #define BOOK3S_IRQPRIO_DATA_SEGMENT 1 #define BOOK3S_IRQPRIO_INST_SEGMENT 2 @@ -136,6 +146,7 @@ #define RESUME_FLAG_NV (1<<0) /* Reload guest nonvolatile state? */ #define RESUME_FLAG_HOST (1<<1) /* Resume host? */ #define RESUME_FLAG_ARCH1 (1<<2) +#define RESUME_FLAG_ARCH2 (1<<3) #define RESUME_GUEST 0 #define RESUME_GUEST_NV RESUME_FLAG_NV --- linux-4.8.0.orig/arch/powerpc/include/asm/kvm_book3s.h +++ linux-4.8.0/arch/powerpc/include/asm/kvm_book3s.h @@ -69,6 +69,43 @@ int pagesize; }; +/* + * Struct for a virtual core. + * Note: entry_exit_map combines a bitmap of threads that have entered + * in the bottom 8 bits and a bitmap of threads that have exited in the + * next 8 bits. This is so that we can atomically set the entry bit + * iff the exit map is 0 without taking a lock. + */ +struct kvmppc_vcore { + int n_runnable; + int num_threads; + int entry_exit_map; + int napping_threads; + int first_vcpuid; + u16 pcpu; + u16 last_cpu; + u8 vcore_state; + u8 in_guest; + struct kvmppc_vcore *master_vcore; + struct kvm_vcpu *runnable_threads[MAX_SMT_THREADS]; + struct list_head preempt_list; + spinlock_t lock; + struct swait_queue_head wq; + spinlock_t stoltb_lock; /* protects stolen_tb and preempt_tb */ + u64 stolen_tb; + u64 preempt_tb; + struct kvm_vcpu *runner; + struct kvm *kvm; + u64 tb_offset; /* guest timebase - host timebase */ + ulong lpcr; + u32 arch_compat; + ulong pcr; + ulong dpdes; /* doorbell state (POWER8) */ + ulong vtb; /* virtual timebase */ + ulong conferring_threads; + unsigned int halt_poll_ns; +}; + struct kvmppc_vcpu_book3s { struct kvmppc_sid_map sid_map[SID_MAP_NUM]; struct { @@ -83,6 +120,7 @@ u64 sdr1; u64 hior; u64 msr_mask; + u64 vtb; #ifdef CONFIG_PPC_BOOK3S_32 u32 vsid_pool[VSID_POOL_SIZE]; u32 vsid_next; @@ -191,6 +229,7 @@ struct kvm_vcpu *vcpu); extern void kvmppc_copy_from_svcpu(struct kvm_vcpu *vcpu, struct kvmppc_book3s_shadow_vcpu *svcpu); +extern int kvm_irq_bypass; static inline struct kvmppc_vcpu_book3s *to_book3s(struct kvm_vcpu *vcpu) { --- linux-4.8.0.orig/arch/powerpc/include/asm/kvm_book3s_64.h +++ linux-4.8.0/arch/powerpc/include/asm/kvm_book3s_64.h @@ -20,6 +20,8 @@ #ifndef __ASM_KVM_BOOK3S_64_H__ #define __ASM_KVM_BOOK3S_64_H__ +#include + #ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE static inline struct kvmppc_book3s_shadow_vcpu *svcpu_get(struct kvm_vcpu *vcpu) { @@ -97,56 +99,20 @@ hpte[0] = cpu_to_be64(hpte_v); } -static inline int __hpte_actual_psize(unsigned int lp, int psize) -{ - int i, shift; - unsigned int mask; - - /* start from 1 ignoring MMU_PAGE_4K */ - for (i = 1; i < MMU_PAGE_COUNT; i++) { - - /* invalid penc */ - if (mmu_psize_defs[psize].penc[i] == -1) - continue; - /* - * encoding bits per actual page size - * PTE LP actual page size - * rrrr rrrz >=8KB - * rrrr rrzz >=16KB - * rrrr rzzz >=32KB - * rrrr zzzz >=64KB - * ....... - */ - shift = mmu_psize_defs[i].shift - LP_SHIFT; - if (shift > LP_BITS) - shift = LP_BITS; - mask = (1 << shift) - 1; - if ((lp & mask) == mmu_psize_defs[psize].penc[i]) - return i; - } - return -1; -} - static inline unsigned long compute_tlbie_rb(unsigned long v, unsigned long r, unsigned long pte_index) { - int b_psize = MMU_PAGE_4K, a_psize = MMU_PAGE_4K; + int i, b_psize = MMU_PAGE_4K, a_psize = MMU_PAGE_4K; unsigned int penc; unsigned long rb = 0, va_low, sllp; unsigned int lp = (r >> LP_SHIFT) & ((1 << LP_BITS) - 1); if (v & HPTE_V_LARGE) { - for (b_psize = 0; b_psize < MMU_PAGE_COUNT; b_psize++) { - - /* valid entries have a shift value */ - if (!mmu_psize_defs[b_psize].shift) - continue; - - a_psize = __hpte_actual_psize(lp, b_psize); - if (a_psize != -1) - break; - } + i = hpte_page_sizes[lp]; + b_psize = i & 0xf; + a_psize = i >> 4; } + /* * Ignore the top 14 bits of va * v have top two bits covering segment size, hence move @@ -159,7 +125,6 @@ /* This covers 14..54 bits of va*/ rb = (v & ~0x7fUL) << 16; /* AVA field */ - rb |= (v >> HPTE_V_SSIZE_SHIFT) << 8; /* B field */ /* * AVA in v had cleared lower 23 bits. We need to derive * that from pteg index @@ -211,49 +176,10 @@ break; } } - rb |= (v >> 54) & 0x300; /* B field */ + rb |= (v >> HPTE_V_SSIZE_SHIFT) << 8; /* B field */ return rb; } -static inline unsigned long __hpte_page_size(unsigned long h, unsigned long l, - bool is_base_size) -{ - - int size, a_psize; - /* Look at the 8 bit LP value */ - unsigned int lp = (l >> LP_SHIFT) & ((1 << LP_BITS) - 1); - - /* only handle 4k, 64k and 16M pages for now */ - if (!(h & HPTE_V_LARGE)) - return 1ul << 12; - else { - for (size = 0; size < MMU_PAGE_COUNT; size++) { - /* valid entries have a shift value */ - if (!mmu_psize_defs[size].shift) - continue; - - a_psize = __hpte_actual_psize(lp, size); - if (a_psize != -1) { - if (is_base_size) - return 1ul << mmu_psize_defs[size].shift; - return 1ul << mmu_psize_defs[a_psize].shift; - } - } - - } - return 0; -} - -static inline unsigned long hpte_page_size(unsigned long h, unsigned long l) -{ - return __hpte_page_size(h, l, 0); -} - -static inline unsigned long hpte_base_page_size(unsigned long h, unsigned long l) -{ - return __hpte_page_size(h, l, 1); -} - static inline unsigned long hpte_rpn(unsigned long ptel, unsigned long psize) { return ((ptel & HPTE_R_RPN) & ~(psize - 1)) >> PAGE_SHIFT; --- linux-4.8.0.orig/arch/powerpc/include/asm/kvm_host.h +++ linux-4.8.0/arch/powerpc/include/asm/kvm_host.h @@ -43,10 +43,12 @@ #include #define KVM_MAX_VCPU_ID (threads_per_subcore * KVM_MAX_VCORES) +#define __KVM_HAVE_ARCH_INTC_INITIALIZED + #ifdef CONFIG_KVM_MMIO #define KVM_COALESCED_MMIO_PAGE_OFFSET 1 #endif -#define KVM_HALT_POLL_NS_DEFAULT 500000 +#define KVM_HALT_POLL_NS_DEFAULT 10000 /* 10 us */ /* These values are internal and can be increased later */ #define KVM_NR_IRQCHIPS 1 @@ -95,42 +97,49 @@ struct kvmppc_book3s_shadow_vcpu; struct kvm_vm_stat { - u32 remote_tlb_flush; + ulong remote_tlb_flush; }; struct kvm_vcpu_stat { - u32 sum_exits; - u32 mmio_exits; - u32 signal_exits; - u32 light_exits; + u64 sum_exits; + u64 mmio_exits; + u64 signal_exits; + u64 light_exits; /* Account for special types of light exits: */ - u32 itlb_real_miss_exits; - u32 itlb_virt_miss_exits; - u32 dtlb_real_miss_exits; - u32 dtlb_virt_miss_exits; - u32 syscall_exits; - u32 isi_exits; - u32 dsi_exits; - u32 emulated_inst_exits; - u32 dec_exits; - u32 ext_intr_exits; - u32 halt_successful_poll; - u32 halt_attempted_poll; - u32 halt_poll_invalid; - u32 halt_wakeup; - u32 dbell_exits; - u32 gdbell_exits; - u32 ld; - u32 st; + u64 itlb_real_miss_exits; + u64 itlb_virt_miss_exits; + u64 dtlb_real_miss_exits; + u64 dtlb_virt_miss_exits; + u64 syscall_exits; + u64 isi_exits; + u64 dsi_exits; + u64 emulated_inst_exits; + u64 dec_exits; + u64 ext_intr_exits; + u64 halt_poll_success_ns; + u64 halt_poll_fail_ns; + u64 halt_wait_ns; + u64 halt_successful_poll; + u64 halt_attempted_poll; + u64 halt_successful_wait; + u64 halt_poll_invalid; + u64 halt_wakeup; + u64 dbell_exits; + u64 gdbell_exits; + u64 ld; + u64 st; #ifdef CONFIG_PPC_BOOK3S - u32 pf_storage; - u32 pf_instruc; - u32 sp_storage; - u32 sp_instruc; - u32 queue_intr; - u32 ld_slow; - u32 st_slow; -#endif + u64 pf_storage; + u64 pf_instruc; + u64 sp_storage; + u64 sp_instruc; + u64 queue_intr; + u64 ld_slow; + u64 st_slow; +#endif + u64 pthru_all; + u64 pthru_host; + u64 pthru_bad_aff; }; enum kvm_exit_types { @@ -197,6 +206,8 @@ struct kvmppc_xics; struct kvmppc_icp; +struct kvmppc_passthru_irqmap; + /* * The reverse mapping array has one entry for each HPTE, * which stores the guest's view of the second word of the HPTE @@ -233,8 +244,10 @@ struct kvm_arch { unsigned int lpid; #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE + unsigned int tlb_sets; unsigned long hpt_virt; struct revmap_entry *revmap; + atomic64_t mmio_update; unsigned int host_lpid; unsigned long host_lpcr; unsigned long sdr1; @@ -267,6 +280,7 @@ #endif #ifdef CONFIG_KVM_XICS struct kvmppc_xics *xics; + struct kvmppc_passthru_irqmap *pimap; #endif struct kvmppc_ops *kvm_ops; #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE @@ -275,41 +289,6 @@ #endif }; -/* - * Struct for a virtual core. - * Note: entry_exit_map combines a bitmap of threads that have entered - * in the bottom 8 bits and a bitmap of threads that have exited in the - * next 8 bits. This is so that we can atomically set the entry bit - * iff the exit map is 0 without taking a lock. - */ -struct kvmppc_vcore { - int n_runnable; - int num_threads; - int entry_exit_map; - int napping_threads; - int first_vcpuid; - u16 pcpu; - u16 last_cpu; - u8 vcore_state; - u8 in_guest; - struct kvmppc_vcore *master_vcore; - struct list_head runnable_threads; - struct list_head preempt_list; - spinlock_t lock; - struct swait_queue_head wq; - spinlock_t stoltb_lock; /* protects stolen_tb and preempt_tb */ - u64 stolen_tb; - u64 preempt_tb; - struct kvm_vcpu *runner; - struct kvm *kvm; - u64 tb_offset; /* guest timebase - host timebase */ - ulong lpcr; - u32 arch_compat; - ulong pcr; - ulong dpdes; /* doorbell state (POWER8) */ - ulong conferring_threads; -}; - #define VCORE_ENTRY_MAP(vc) ((vc)->entry_exit_map & 0xff) #define VCORE_EXIT_MAP(vc) ((vc)->entry_exit_map >> 8) #define VCORE_IS_EXITING(vc) (VCORE_EXIT_MAP(vc) != 0) @@ -329,6 +308,7 @@ #define VCORE_SLEEPING 3 #define VCORE_RUNNING 4 #define VCORE_EXITING 5 +#define VCORE_POLLING 6 /* * Struct used to manage memory for a virtual processor area @@ -397,6 +377,20 @@ u64 tb_max; /* max time */ }; +#ifdef CONFIG_PPC_BOOK3S_64 +struct kvmppc_irq_map { + u32 r_hwirq; + u32 v_hwirq; + struct irq_desc *desc; +}; + +#define KVMPPC_PIRQ_MAPPED 1024 +struct kvmppc_passthru_irqmap { + int n_mapped; + struct kvmppc_irq_map mapped[KVMPPC_PIRQ_MAPPED]; +}; +#endif + # ifdef CONFIG_PPC_FSL_BOOK3E #define KVMPPC_BOOKE_IAC_NUM 2 #define KVMPPC_BOOKE_DAC_NUM 2 @@ -416,6 +410,24 @@ #define KVMPPC_IRQ_MPIC 1 #define KVMPPC_IRQ_XICS 2 +#define MMIO_HPTE_CACHE_SIZE 4 + +struct mmio_hpte_cache_entry { + unsigned long hpte_v; + unsigned long hpte_r; + unsigned long rpte; + unsigned long pte_index; + unsigned long eaddr; + unsigned long slb_v; + long mmio_update; + unsigned int slb_base_pshift; +}; + +struct mmio_hpte_cache { + struct mmio_hpte_cache_entry entry[MMIO_HPTE_CACHE_SIZE]; + unsigned int index; +}; + struct openpic; struct kvm_vcpu_arch { @@ -483,7 +495,6 @@ ulong purr; ulong spurr; ulong ic; - ulong vtb; ulong dscr; ulong amr; ulong uamor; @@ -507,6 +518,8 @@ ulong tcscr; ulong acop; ulong wort; + ulong tid; + ulong psscr; ulong shadow_srr1; #endif u32 vrsave; /* also USPRG0 */ @@ -555,6 +568,7 @@ u64 tfiar; u32 cr_tm; + u64 xer_tm; u64 lr_tm; u64 ctr_tm; u64 amr_tm; @@ -664,11 +678,12 @@ #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE struct kvm_vcpu_arch_shared shregs; + struct mmio_hpte_cache mmio_cache; unsigned long pgfault_addr; long pgfault_index; unsigned long pgfault_hpte[2]; + struct mmio_hpte_cache_entry *pgfault_cache; - struct list_head run_list; struct task_struct *run_task; struct kvm_run *kvm_run; --- linux-4.8.0.orig/arch/powerpc/include/asm/kvm_ppc.h +++ linux-4.8.0/arch/powerpc/include/asm/kvm_ppc.h @@ -287,6 +287,10 @@ long (*arch_vm_ioctl)(struct file *filp, unsigned int ioctl, unsigned long arg); int (*hcall_implemented)(unsigned long hcall); + int (*irq_bypass_add_producer)(struct irq_bypass_consumer *, + struct irq_bypass_producer *); + void (*irq_bypass_del_producer)(struct irq_bypass_consumer *, + struct irq_bypass_producer *); }; extern struct kvmppc_ops *kvmppc_hv_ops; @@ -453,8 +457,19 @@ { return vcpu->arch.irq_type == KVMPPC_IRQ_XICS; } + +static inline struct kvmppc_passthru_irqmap *kvmppc_get_passthru_irqmap( + struct kvm *kvm) +{ + if (kvm && kvm_irq_bypass) + return kvm->arch.pimap; + return NULL; +} + extern void kvmppc_alloc_host_rm_ops(void); extern void kvmppc_free_host_rm_ops(void); +extern void kvmppc_free_pimap(struct kvm *kvm); +extern int kvmppc_xics_rm_complete(struct kvm_vcpu *vcpu, u32 hcall); extern void kvmppc_xics_free_icp(struct kvm_vcpu *vcpu); extern int kvmppc_xics_create_icp(struct kvm_vcpu *vcpu, unsigned long server); extern int kvm_vm_ioctl_xics_irq(struct kvm *kvm, struct kvm_irq_level *args); @@ -464,10 +479,24 @@ extern int kvmppc_xics_connect_vcpu(struct kvm_device *dev, struct kvm_vcpu *vcpu, u32 cpu); extern void kvmppc_xics_ipi_action(void); +extern void kvmppc_xics_set_mapped(struct kvm *kvm, unsigned long guest_irq, + unsigned long host_irq); +extern void kvmppc_xics_clr_mapped(struct kvm *kvm, unsigned long guest_irq, + unsigned long host_irq); +extern long kvmppc_deliver_irq_passthru(struct kvm_vcpu *vcpu, __be32 xirr, + struct kvmppc_irq_map *irq_map, + struct kvmppc_passthru_irqmap *pimap, + bool *again); extern int h_ipi_redirect; #else +static inline struct kvmppc_passthru_irqmap *kvmppc_get_passthru_irqmap( + struct kvm *kvm) + { return NULL; } static inline void kvmppc_alloc_host_rm_ops(void) {}; static inline void kvmppc_free_host_rm_ops(void) {}; +static inline void kvmppc_free_pimap(struct kvm *kvm) {}; +static inline int kvmppc_xics_rm_complete(struct kvm_vcpu *vcpu, u32 hcall) + { return 0; } static inline int kvmppc_xics_enabled(struct kvm_vcpu *vcpu) { return 0; } static inline void kvmppc_xics_free_icp(struct kvm_vcpu *vcpu) { } @@ -482,6 +511,48 @@ #endif /* + * Prototypes for functions called only from assembler code. + * Having prototypes reduces sparse errors. + */ +long kvmppc_rm_h_put_tce(struct kvm_vcpu *vcpu, unsigned long liobn, + unsigned long ioba, unsigned long tce); +long kvmppc_rm_h_put_tce_indirect(struct kvm_vcpu *vcpu, + unsigned long liobn, unsigned long ioba, + unsigned long tce_list, unsigned long npages); +long kvmppc_rm_h_stuff_tce(struct kvm_vcpu *vcpu, + unsigned long liobn, unsigned long ioba, + unsigned long tce_value, unsigned long npages); +long int kvmppc_rm_h_confer(struct kvm_vcpu *vcpu, int target, + unsigned int yield_count); +long kvmppc_h_random(struct kvm_vcpu *vcpu); +void kvmhv_commence_exit(int trap); +long kvmppc_realmode_machine_check(struct kvm_vcpu *vcpu); +void kvmppc_subcore_enter_guest(void); +void kvmppc_subcore_exit_guest(void); +long kvmppc_realmode_hmi_handler(void); +long kvmppc_h_enter(struct kvm_vcpu *vcpu, unsigned long flags, + long pte_index, unsigned long pteh, unsigned long ptel); +long kvmppc_h_remove(struct kvm_vcpu *vcpu, unsigned long flags, + unsigned long pte_index, unsigned long avpn); +long kvmppc_h_bulk_remove(struct kvm_vcpu *vcpu); +long kvmppc_h_protect(struct kvm_vcpu *vcpu, unsigned long flags, + unsigned long pte_index, unsigned long avpn, + unsigned long va); +long kvmppc_h_read(struct kvm_vcpu *vcpu, unsigned long flags, + unsigned long pte_index); +long kvmppc_h_clear_ref(struct kvm_vcpu *vcpu, unsigned long flags, + unsigned long pte_index); +long kvmppc_h_clear_mod(struct kvm_vcpu *vcpu, unsigned long flags, + unsigned long pte_index); +long kvmppc_hpte_hv_fault(struct kvm_vcpu *vcpu, unsigned long addr, + unsigned long slb_v, unsigned int status, bool data); +unsigned long kvmppc_rm_h_xirr(struct kvm_vcpu *vcpu); +int kvmppc_rm_h_ipi(struct kvm_vcpu *vcpu, unsigned long server, + unsigned long mfrr); +int kvmppc_rm_h_cppr(struct kvm_vcpu *vcpu, unsigned long cppr); +int kvmppc_rm_h_eoi(struct kvm_vcpu *vcpu, unsigned long xirr); + +/* * Host-side operations we want to set up while running in real * mode in the guest operating on the xics. * Currently only VCPU wakeup is supported. --- linux-4.8.0.orig/arch/powerpc/include/asm/mmu-book3e.h +++ linux-4.8.0/arch/powerpc/include/asm/mmu-book3e.h @@ -313,6 +313,9 @@ * return 1, indicating that the tlb requires preloading. */ #define HUGETLB_NEED_PRELOAD + +#define mmu_cleanup_all NULL + #endif #endif /* !__ASSEMBLY__ */ --- linux-4.8.0.orig/arch/powerpc/include/asm/mmu.h +++ linux-4.8.0/arch/powerpc/include/asm/mmu.h @@ -29,6 +29,12 @@ */ /* + * Kernel read only support. + * We added the ppp value 0b110 in ISA 2.04. + */ +#define MMU_FTR_KERNEL_RO ASM_CONST(0x00004000) + +/* * We need to clear top 16bits of va (from the remaining 64 bits )in * tlbie* instructions */ @@ -103,10 +109,10 @@ #define MMU_FTRS_POWER4 MMU_FTRS_DEFAULT_HPTE_ARCH_V2 #define MMU_FTRS_PPC970 MMU_FTRS_POWER4 | MMU_FTR_TLBIE_CROP_VA #define MMU_FTRS_POWER5 MMU_FTRS_POWER4 | MMU_FTR_LOCKLESS_TLBIE -#define MMU_FTRS_POWER6 MMU_FTRS_POWER4 | MMU_FTR_LOCKLESS_TLBIE -#define MMU_FTRS_POWER7 MMU_FTRS_POWER4 | MMU_FTR_LOCKLESS_TLBIE -#define MMU_FTRS_POWER8 MMU_FTRS_POWER4 | MMU_FTR_LOCKLESS_TLBIE -#define MMU_FTRS_POWER9 MMU_FTRS_POWER4 | MMU_FTR_LOCKLESS_TLBIE +#define MMU_FTRS_POWER6 MMU_FTRS_POWER4 | MMU_FTR_LOCKLESS_TLBIE | MMU_FTR_KERNEL_RO +#define MMU_FTRS_POWER7 MMU_FTRS_POWER4 | MMU_FTR_LOCKLESS_TLBIE | MMU_FTR_KERNEL_RO +#define MMU_FTRS_POWER8 MMU_FTRS_POWER4 | MMU_FTR_LOCKLESS_TLBIE | MMU_FTR_KERNEL_RO +#define MMU_FTRS_POWER9 MMU_FTRS_POWER4 | MMU_FTR_LOCKLESS_TLBIE | MMU_FTR_KERNEL_RO #define MMU_FTRS_CELL MMU_FTRS_DEFAULT_HPTE_ARCH_V2 | \ MMU_FTR_CI_LARGE_PAGE #define MMU_FTRS_PA6T MMU_FTRS_DEFAULT_HPTE_ARCH_V2 | \ @@ -204,6 +210,15 @@ * make it match the size our of bolted TLB area */ extern u64 ppc64_rma_size; + +/* Cleanup function used by kexec */ +extern void mmu_cleanup_all(void); +extern void radix__mmu_cleanup_all(void); + +/* Functions for creating and updating partition table on POWER9 */ +extern void mmu_partition_table_init(void); +extern void mmu_partition_table_set_entry(unsigned int lpid, unsigned long dw0, + unsigned long dw1); #endif /* CONFIG_PPC64 */ struct mm_struct; @@ -271,6 +286,7 @@ #define MMU_PAGE_16G 13 #define MMU_PAGE_64G 14 +/* N.B. we need to change the type of hpte_page_sizes if this gets to be > 16 */ #define MMU_PAGE_COUNT 15 #ifdef CONFIG_PPC_BOOK3S_64 --- linux-4.8.0.orig/arch/powerpc/include/asm/mmu_context.h +++ linux-4.8.0/arch/powerpc/include/asm/mmu_context.h @@ -18,16 +18,19 @@ #ifdef CONFIG_SPAPR_TCE_IOMMU struct mm_iommu_table_group_mem_t; -extern bool mm_iommu_preregistered(void); -extern long mm_iommu_get(unsigned long ua, unsigned long entries, +extern int isolate_lru_page(struct page *page); /* from internal.h */ +extern bool mm_iommu_preregistered(struct mm_struct *mm); +extern long mm_iommu_get(struct mm_struct *mm, + unsigned long ua, unsigned long entries, struct mm_iommu_table_group_mem_t **pmem); -extern long mm_iommu_put(struct mm_iommu_table_group_mem_t *mem); -extern void mm_iommu_init(mm_context_t *ctx); -extern void mm_iommu_cleanup(mm_context_t *ctx); -extern struct mm_iommu_table_group_mem_t *mm_iommu_lookup(unsigned long ua, - unsigned long size); -extern struct mm_iommu_table_group_mem_t *mm_iommu_find(unsigned long ua, - unsigned long entries); +extern long mm_iommu_put(struct mm_struct *mm, + struct mm_iommu_table_group_mem_t *mem); +extern void mm_iommu_init(struct mm_struct *mm); +extern void mm_iommu_cleanup(struct mm_struct *mm); +extern struct mm_iommu_table_group_mem_t *mm_iommu_lookup(struct mm_struct *mm, + unsigned long ua, unsigned long size); +extern struct mm_iommu_table_group_mem_t *mm_iommu_find(struct mm_struct *mm, + unsigned long ua, unsigned long entries); extern long mm_iommu_ua_to_hpa(struct mm_iommu_table_group_mem_t *mem, unsigned long ua, unsigned long *hpa); extern long mm_iommu_mapped_inc(struct mm_iommu_table_group_mem_t *mem); --- linux-4.8.0.orig/arch/powerpc/include/asm/nohash/32/pgalloc.h +++ linux-4.8.0/arch/powerpc/include/asm/nohash/32/pgalloc.h @@ -2,14 +2,42 @@ #define _ASM_POWERPC_PGALLOC_32_H #include +#include -/* For 32-bit, all levels of page tables are just drawn from get_free_page() */ -#define MAX_PGTABLE_INDEX_SIZE 0 +/* + * Functions that deal with pagetables that could be at any level of + * the table need to be passed an "index_size" so they know how to + * handle allocation. For PTE pages (which are linked to a struct + * page for now, and drawn from the main get_free_pages() pool), the + * allocation size will be (2^index_size * sizeof(pointer)) and + * allocations are drawn from the kmem_cache in PGT_CACHE(index_size). + * + * The maximum index size needs to be big enough to allow any + * pagetable sizes we need, but small enough to fit in the low bits of + * any page table pointer. In other words all pagetables, even tiny + * ones, must be aligned to allow at least enough low 0 bits to + * contain this value. This value is also used as a mask, so it must + * be one less than a power of two. + */ +#define MAX_PGTABLE_INDEX_SIZE 0xf extern void __bad_pte(pmd_t *pmd); -extern pgd_t *pgd_alloc(struct mm_struct *mm); -extern void pgd_free(struct mm_struct *mm, pgd_t *pgd); +extern struct kmem_cache *pgtable_cache[]; +#define PGT_CACHE(shift) ({ \ + BUG_ON(!(shift)); \ + pgtable_cache[(shift) - 1]; \ + }) + +static inline pgd_t *pgd_alloc(struct mm_struct *mm) +{ + return kmem_cache_alloc(PGT_CACHE(PGD_INDEX_SIZE), GFP_KERNEL); +} + +static inline void pgd_free(struct mm_struct *mm, pgd_t *pgd) +{ + kmem_cache_free(PGT_CACHE(PGD_INDEX_SIZE), pgd); +} /* * We don't have any real pmd's, and this code never triggers because @@ -68,8 +96,12 @@ static inline void pgtable_free(void *table, unsigned index_size) { - BUG_ON(index_size); /* 32-bit doesn't use this */ - free_page((unsigned long)table); + if (!index_size) { + free_page((unsigned long)table); + } else { + BUG_ON(index_size > MAX_PGTABLE_INDEX_SIZE); + kmem_cache_free(PGT_CACHE(index_size), table); + } } #define check_pgt_cache() do { } while (0) --- linux-4.8.0.orig/arch/powerpc/include/asm/nohash/32/pgtable.h +++ linux-4.8.0/arch/powerpc/include/asm/nohash/32/pgtable.h @@ -16,6 +16,23 @@ #endif /* __ASSEMBLY__ */ +#define PTE_INDEX_SIZE PTE_SHIFT +#define PMD_INDEX_SIZE 0 +#define PUD_INDEX_SIZE 0 +#define PGD_INDEX_SIZE (32 - PGDIR_SHIFT) + +#define PMD_CACHE_INDEX PMD_INDEX_SIZE + +#ifndef __ASSEMBLY__ +#define PTE_TABLE_SIZE (sizeof(pte_t) << PTE_INDEX_SIZE) +#define PMD_TABLE_SIZE 0 +#define PUD_TABLE_SIZE 0 +#define PGD_TABLE_SIZE (sizeof(pgd_t) << PGD_INDEX_SIZE) +#endif /* __ASSEMBLY__ */ + +#define PTRS_PER_PTE (1 << PTE_INDEX_SIZE) +#define PTRS_PER_PGD (1 << PGD_INDEX_SIZE) + /* * The normal case is that PTEs are 32-bits and we have a 1-page * 1024-entry pgdir pointing to 1-page 1024-entry PTE pages. -- paulus @@ -27,22 +44,12 @@ * -Matt */ /* PGDIR_SHIFT determines what a top-level page table entry can map */ -#define PGDIR_SHIFT (PAGE_SHIFT + PTE_SHIFT) +#define PGDIR_SHIFT (PAGE_SHIFT + PTE_INDEX_SIZE) #define PGDIR_SIZE (1UL << PGDIR_SHIFT) #define PGDIR_MASK (~(PGDIR_SIZE-1)) -/* - * entries per page directory level: our page-table tree is two-level, so - * we don't really have any PMD directory. - */ -#ifndef __ASSEMBLY__ -#define PTE_TABLE_SIZE (sizeof(pte_t) << PTE_SHIFT) -#define PGD_TABLE_SIZE (sizeof(pgd_t) << (32 - PGDIR_SHIFT)) -#endif /* __ASSEMBLY__ */ - -#define PTRS_PER_PTE (1 << PTE_SHIFT) -#define PTRS_PER_PMD 1 -#define PTRS_PER_PGD (1 << (32 - PGDIR_SHIFT)) +/* Bits to mask out from a PGD to get to the PUD page */ +#define PGD_MASKED_BITS 0 #define USER_PTRS_PER_PGD (TASK_SIZE / PGDIR_SIZE) #define FIRST_USER_ADDRESS 0UL @@ -267,7 +274,9 @@ } -static inline void __ptep_set_access_flags(pte_t *ptep, pte_t entry) +static inline void __ptep_set_access_flags(struct mm_struct *mm, + pte_t *ptep, pte_t entry, + unsigned long address) { unsigned long set = pte_val(entry) & (_PAGE_DIRTY | _PAGE_ACCESSED | _PAGE_RW | _PAGE_EXEC); @@ -327,15 +336,6 @@ #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) >> 3 }) #define __swp_entry_to_pte(x) ((pte_t) { (x).val << 3 }) -#ifndef CONFIG_PPC_4K_PAGES -void pgtable_cache_init(void); -#else -/* - * No page table caches to initialise - */ -#define pgtable_cache_init() do { } while (0) -#endif - extern int get_pteptr(struct mm_struct *mm, unsigned long addr, pte_t **ptep, pmd_t **pmdp); --- linux-4.8.0.orig/arch/powerpc/include/asm/nohash/64/pgtable.h +++ linux-4.8.0/arch/powerpc/include/asm/nohash/64/pgtable.h @@ -300,7 +300,9 @@ /* Set the dirty and/or accessed bits atomically in a linux PTE, this * function doesn't need to flush the hash entry */ -static inline void __ptep_set_access_flags(pte_t *ptep, pte_t entry) +static inline void __ptep_set_access_flags(struct mm_struct *mm, + pte_t *ptep, pte_t entry, + unsigned long address) { unsigned long bits = pte_val(entry) & (_PAGE_DIRTY | _PAGE_ACCESSED | _PAGE_RW | _PAGE_EXEC); @@ -357,8 +359,6 @@ #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val((pte)) }) #define __swp_entry_to_pte(x) __pte((x).val) -void pgtable_cache_add(unsigned shift, void (*ctor)(void *)); -void pgtable_cache_init(void); extern int map_kernel_page(unsigned long ea, unsigned long pa, unsigned long flags); extern int __meminit vmemmap_create_mapping(unsigned long start, --- linux-4.8.0.orig/arch/powerpc/include/asm/opal-api.h +++ linux-4.8.0/arch/powerpc/include/asm/opal-api.h @@ -167,7 +167,8 @@ #define OPAL_INT_EOI 124 #define OPAL_INT_SET_MFRR 125 #define OPAL_PCI_TCE_KILL 126 -#define OPAL_LAST 126 +#define OPAL_NMMU_SET_PTCR 127 +#define OPAL_LAST 127 /* Device tree flags */ --- linux-4.8.0.orig/arch/powerpc/include/asm/opal.h +++ linux-4.8.0/arch/powerpc/include/asm/opal.h @@ -67,6 +67,7 @@ int64_t opal_pci_config_write_word(uint64_t phb_id, uint64_t bus_dev_func, uint64_t offset, uint32_t data); int64_t opal_set_xive(uint32_t isn, uint16_t server, uint8_t priority); +int64_t opal_rm_set_xive(uint32_t isn, uint16_t server, uint8_t priority); int64_t opal_get_xive(uint32_t isn, __be16 *server, uint8_t *priority); int64_t opal_register_exception_handler(uint64_t opal_exception, uint64_t handler_address, @@ -219,15 +220,19 @@ int64_t opal_pci_poll2(uint64_t id, uint64_t data); int64_t opal_int_get_xirr(uint32_t *out_xirr, bool just_poll); +int64_t opal_rm_int_get_xirr(__be32 *out_xirr, bool just_poll); int64_t opal_int_set_cppr(uint8_t cppr); int64_t opal_int_eoi(uint32_t xirr); +int64_t opal_rm_int_eoi(uint32_t xirr); int64_t opal_int_set_mfrr(uint32_t cpu, uint8_t mfrr); +int64_t opal_rm_int_set_mfrr(uint32_t cpu, uint8_t mfrr); int64_t opal_pci_tce_kill(uint64_t phb_id, uint32_t kill_type, uint32_t pe_num, uint32_t tce_size, uint64_t dma_addr, uint32_t npages); int64_t opal_rm_pci_tce_kill(uint64_t phb_id, uint32_t kill_type, uint32_t pe_num, uint32_t tce_size, uint64_t dma_addr, uint32_t npages); +int64_t opal_nmmu_set_ptcr(uint64_t chip_id, uint64_t ptcr); /* Internal functions */ extern int early_init_dt_scan_opal(unsigned long node, const char *uname, --- linux-4.8.0.orig/arch/powerpc/include/asm/paca.h +++ linux-4.8.0/arch/powerpc/include/asm/paca.h @@ -44,6 +44,9 @@ #define get_lppaca() (get_paca()->lppaca_ptr) #define get_slb_shadow() (get_paca()->slb_shadow_ptr) +/* Maximum number of threads per core. */ +#define MAX_SMT 8 + struct task_struct; /* --- linux-4.8.0.orig/arch/powerpc/include/asm/pgtable.h +++ linux-4.8.0/arch/powerpc/include/asm/pgtable.h @@ -78,6 +78,8 @@ unsigned long vmalloc_to_phys(void *vmalloc_addr); +void pgtable_cache_add(unsigned shift, void (*ctor)(void *)); +void pgtable_cache_init(void); #endif /* __ASSEMBLY__ */ #endif /* _ASM_POWERPC_PGTABLE_H */ --- linux-4.8.0.orig/arch/powerpc/include/asm/plpar_wrappers.h +++ linux-4.8.0/arch/powerpc/include/asm/plpar_wrappers.h @@ -93,38 +93,6 @@ return vpa_call(H_VPA_REG_DTL, cpu, vpa); } -static inline long plpar_page_set_loaned(unsigned long vpa) -{ - unsigned long cmo_page_sz = cmo_get_page_size(); - long rc = 0; - int i; - - for (i = 0; !rc && i < PAGE_SIZE; i += cmo_page_sz) - rc = plpar_hcall_norets(H_PAGE_INIT, H_PAGE_SET_LOANED, vpa + i, 0); - - for (i -= cmo_page_sz; rc && i != 0; i -= cmo_page_sz) - plpar_hcall_norets(H_PAGE_INIT, H_PAGE_SET_ACTIVE, - vpa + i - cmo_page_sz, 0); - - return rc; -} - -static inline long plpar_page_set_active(unsigned long vpa) -{ - unsigned long cmo_page_sz = cmo_get_page_size(); - long rc = 0; - int i; - - for (i = 0; !rc && i < PAGE_SIZE; i += cmo_page_sz) - rc = plpar_hcall_norets(H_PAGE_INIT, H_PAGE_SET_ACTIVE, vpa + i, 0); - - for (i -= cmo_page_sz; rc && i != 0; i -= cmo_page_sz) - plpar_hcall_norets(H_PAGE_INIT, H_PAGE_SET_LOANED, - vpa + i - cmo_page_sz, 0); - - return rc; -} - extern void vpa_init(int cpu); static inline long plpar_pte_enter(unsigned long flags, @@ -340,4 +308,9 @@ return plpar_set_mode(0, H_SET_MODE_RESOURCE_SET_DAWR, dawr0, dawrx0); } +static inline long plapr_signal_sys_reset(long cpu) +{ + return plpar_hcall_norets(H_SIGNAL_SYS_RESET, cpu); +} + #endif /* _ASM_POWERPC_PLPAR_WRAPPERS_H */ --- linux-4.8.0.orig/arch/powerpc/include/asm/pnv-pci.h +++ linux-4.8.0/arch/powerpc/include/asm/pnv-pci.h @@ -12,6 +12,7 @@ #include #include +#include #include #include @@ -33,6 +34,8 @@ void pnv_cxl_release_hwirqs(struct pci_dev *dev, int hwirq, int num); int pnv_cxl_get_irq_count(struct pci_dev *dev); struct device_node *pnv_pci_get_phb_node(struct pci_dev *dev); +int64_t pnv_opal_pci_msi_eoi(struct irq_chip *chip, unsigned int hw_irq); +bool is_pnv_opal_msi(struct irq_chip *chip); #ifdef CONFIG_CXL_BASE int pnv_cxl_alloc_hwirq_ranges(struct cxl_irq_ranges *irqs, --- linux-4.8.0.orig/arch/powerpc/include/asm/powernv.h +++ linux-4.8.0/arch/powerpc/include/asm/powernv.h @@ -0,0 +1,19 @@ +/* + * Copyright 2017 IBM Corp. + * + * 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; either version + * 2 of the License, or (at your option) any later version. + */ + +#ifndef _ASM_POWERNV_H +#define _ASM_POWERNV_H + +#ifdef CONFIG_PPC_POWERNV +extern void powernv_set_nmmu_ptcr(unsigned long ptcr); +#else +static inline void powernv_set_nmmu_ptcr(unsigned long ptcr) { } +#endif + +#endif /* _ASM_POWERNV_H */ --- linux-4.8.0.orig/arch/powerpc/include/asm/ppc-opcode.h +++ linux-4.8.0/arch/powerpc/include/asm/ppc-opcode.h @@ -457,5 +457,6 @@ #define PPC_SLBIA(IH) stringify_in_c(.long PPC_INST_SLBIA | \ ((IH & 0x7) << 21)) +#define PPC_INVALIDATE_ERAT PPC_SLBIA(7) #endif /* _ASM_POWERPC_PPC_OPCODE_H */ --- linux-4.8.0.orig/arch/powerpc/include/asm/processor.h +++ linux-4.8.0/arch/powerpc/include/asm/processor.h @@ -314,8 +314,6 @@ unsigned long mmcr2; unsigned mmcr0; unsigned used_ebb; - unsigned long lmrr; - unsigned long lmser; #endif }; @@ -460,7 +458,8 @@ extern unsigned long power7_nap(int check_irq); extern unsigned long power7_sleep(void); extern unsigned long power7_winkle(void); -extern unsigned long power9_idle_stop(unsigned long stop_level); +extern unsigned long power9_idle_stop(unsigned long stop_psscr_val, + unsigned long stop_psscr_mask); extern void flush_instruction_cache(void); extern void hard_reset_now(void); --- linux-4.8.0.orig/arch/powerpc/include/asm/prom.h +++ linux-4.8.0/arch/powerpc/include/asm/prom.h @@ -121,6 +121,8 @@ #define OV1_PPC_2_06 0x02 /* set if we support PowerPC 2.06 */ #define OV1_PPC_2_07 0x01 /* set if we support PowerPC 2.07 */ +#define OV1_PPC_3_00 0x80 /* set if we support PowerPC 3.00 */ + /* Option vector 2: Open Firmware options supported */ #define OV2_REAL_MODE 0x20 /* set if we want OF in real mode */ @@ -151,19 +153,28 @@ #define OV5_XCMO 0x0440 /* Page Coalescing */ #define OV5_TYPE1_AFFINITY 0x0580 /* Type 1 NUMA affinity */ #define OV5_PRRN 0x0540 /* Platform Resource Reassignment */ -#define OV5_PFO_HW_RNG 0x0E80 /* PFO Random Number Generator */ -#define OV5_PFO_HW_842 0x0E40 /* PFO Compression Accelerator */ -#define OV5_PFO_HW_ENCR 0x0E20 /* PFO Encryption Accelerator */ -#define OV5_SUB_PROCESSORS 0x0F01 /* 1,2,or 4 Sub-Processors supported */ +#define OV5_HP_EVT 0x0604 /* Hot Plug Event support */ +#define OV5_RESIZE_HPT 0x0601 /* Hash Page Table resizing */ +#define OV5_PFO_HW_RNG 0x1180 /* PFO Random Number Generator */ +#define OV5_PFO_HW_842 0x1140 /* PFO Compression Accelerator */ +#define OV5_PFO_HW_ENCR 0x1120 /* PFO Encryption Accelerator */ +#define OV5_SUB_PROCESSORS 0x1501 /* 1,2,or 4 Sub-Processors supported */ +#define OV5_XIVE_EXPLOIT 0x1701 /* XIVE exploitation supported */ +/* MMU Base Architecture */ +#define OV5_MMU_SUPPORT 0x18C0 /* MMU Mode Support Mask */ +#define OV5_MMU_HASH 0x1800 /* Hash MMU Only */ +#define OV5_MMU_RADIX 0x1840 /* Radix MMU Only */ +#define OV5_MMU_EITHER 0x1880 /* Hash or Radix Supported */ +#define OV5_MMU_DYNAMIC 0x18C0 /* Hash or Radix Can Switch Later */ +#define OV5_NMMU 0x1820 /* Nest MMU Available */ +/* Hash Table Extensions */ +#define OV5_HASH_SEG_TBL 0x1980 /* In Memory Segment Tables Available */ +#define OV5_HASH_GTSE 0x1940 /* Guest Translation Shoot Down Avail */ +/* Radix Table Extensions */ +#define OV5_RADIX_GTSE 0x1A40 /* Guest Translation Shoot Down Avail */ /* Option Vector 6: IBM PAPR hints */ #define OV6_LINUX 0x02 /* Linux is our OS */ -/* - * The architecture vector has an array of PVR mask/value pairs, - * followed by # option vectors - 1, followed by the option vectors. - */ -extern unsigned char ibm_architecture_vec[]; - #endif /* __KERNEL__ */ #endif /* _POWERPC_PROM_H */ --- linux-4.8.0.orig/arch/powerpc/include/asm/reg.h +++ linux-4.8.0/arch/powerpc/include/asm/reg.h @@ -153,6 +153,8 @@ #define PSSCR_EC 0x00100000 /* Exit Criterion */ #define PSSCR_ESL 0x00200000 /* Enable State Loss */ #define PSSCR_SD 0x00400000 /* Status Disable */ +#define PSSCR_PLS 0xf000000000000000 /* Power-saving Level Status */ +#define PSSCR_GUEST_VIS 0xf0000000000003ff /* Guest-visible PSSCR fields */ /* Floating Point Status and Control Register (FPSCR) Fields */ #define FPSCR_FX 0x80000000 /* FPU exception summary */ @@ -236,6 +238,7 @@ #define SPRN_TEXASRU 0x83 /* '' '' '' Upper 32 */ #define TEXASR_FS __MASK(63-36) /* TEXASR Failure Summary */ #define SPRN_TFHAR 0x80 /* Transaction Failure Handler Addr */ +#define SPRN_TIDR 144 /* Thread ID register */ #define SPRN_CTRLF 0x088 #define SPRN_CTRLT 0x098 #define CTRL_CT 0xc0000000 /* current thread */ @@ -292,8 +295,7 @@ #define SPRN_HRMOR 0x139 /* Real mode offset register */ #define SPRN_HSRR0 0x13A /* Hypervisor Save/Restore 0 */ #define SPRN_HSRR1 0x13B /* Hypervisor Save/Restore 1 */ -#define SPRN_LMRR 0x32D /* Load Monitor Region Register */ -#define SPRN_LMSER 0x32E /* Load Monitor Section Enable Register */ +#define SPRN_ASDR 0x330 /* Access segment descriptor register */ #define SPRN_IC 0x350 /* Virtual Instruction Count */ #define SPRN_VTB 0x351 /* Virtual Time Base */ #define SPRN_LDBAR 0x352 /* LD Base Address Register */ @@ -304,7 +306,6 @@ #define SPRN_PMCR 0x374 /* Power Management Control Register */ /* HFSCR and FSCR bit numbers are the same */ -#define FSCR_LM_LG 11 /* Enable Load Monitor Registers */ #define FSCR_TAR_LG 8 /* Enable Target Address Register */ #define FSCR_EBB_LG 7 /* Enable Event Based Branching */ #define FSCR_TM_LG 5 /* Enable Transactional Memory */ @@ -314,12 +315,10 @@ #define FSCR_VECVSX_LG 1 /* Enable VMX/VSX */ #define FSCR_FP_LG 0 /* Enable Floating Point */ #define SPRN_FSCR 0x099 /* Facility Status & Control Register */ -#define FSCR_LM __MASK(FSCR_LM_LG) #define FSCR_TAR __MASK(FSCR_TAR_LG) #define FSCR_EBB __MASK(FSCR_EBB_LG) #define FSCR_DSCR __MASK(FSCR_DSCR_LG) #define SPRN_HFSCR 0xbe /* HV=1 Facility Status & Control Register */ -#define HFSCR_LM __MASK(FSCR_LM_LG) #define HFSCR_TAR __MASK(FSCR_TAR_LG) #define HFSCR_EBB __MASK(FSCR_EBB_LG) #define HFSCR_TM __MASK(FSCR_TM_LG) @@ -355,8 +354,10 @@ #define LPCR_PECE0 ASM_CONST(0x0000000000004000) /* ext. exceptions can cause exit */ #define LPCR_PECE1 ASM_CONST(0x0000000000002000) /* decrementer can cause exit */ #define LPCR_PECE2 ASM_CONST(0x0000000000001000) /* machine check etc can cause exit */ +#define LPCR_PECE_HVEE ASM_CONST(0x0000400000000000) /* P9 Wakeup on HV interrupts */ #define LPCR_MER ASM_CONST(0x0000000000000800) /* Mediated External Exception */ #define LPCR_MER_SH 11 +#define LPCR_GTSE ASM_CONST(0x0000000000000400) /* Guest Translation Shootdown Enable */ #define LPCR_TC ASM_CONST(0x0000000000000200) /* Translation control */ #define LPCR_LPES 0x0000000c #define LPCR_LPES0 ASM_CONST(0x0000000000000008) /* LPAR Env selector 0 */ @@ -377,6 +378,12 @@ #define PCR_VEC_DIS (1ul << (63-0)) /* Vec. disable (bit NA since POWER8) */ #define PCR_VSX_DIS (1ul << (63-1)) /* VSX disable (bit NA since POWER8) */ #define PCR_TM_DIS (1ul << (63-2)) /* Trans. memory disable (POWER8) */ +/* + * These bits are used in the function kvmppc_set_arch_compat() to specify and + * determine both the compatibility level which we want to emulate and the + * compatibility level which the host is capable of emulating. + */ +#define PCR_ARCH_207 0x8 /* Architecture 2.07 */ #define PCR_ARCH_206 0x4 /* Architecture 2.06 */ #define PCR_ARCH_205 0x2 /* Architecture 2.05 */ #define SPRN_HEIR 0x153 /* Hypervisor Emulated Instruction Register */ @@ -475,6 +482,9 @@ #define HID0_POWER8_1TO4LPAR __MASK(51) #define HID0_POWER8_DYNLPARDIS __MASK(48) +/* POWER9 HID0 bits */ +#define HID0_POWER9_RADIX __MASK(63 - 8) + #define SPRN_HID1 0x3F1 /* Hardware Implementation Register 1 */ #ifdef CONFIG_6xx #define HID1_EMCP (1<<31) /* 7450 Machine Check Pin Enable */ @@ -737,6 +747,7 @@ #define MMCR0_FCHV 0x00000001UL /* freeze conditions in hypervisor mode */ #define SPRN_MMCR1 798 #define SPRN_MMCR2 785 +#define SPRN_UMMCR2 769 #define SPRN_MMCRA 0x312 #define MMCRA_SDSYNC 0x80000000UL /* SDAR synced with SIAR */ #define MMCRA_SDAR_DCACHE_MISS 0x40000000UL @@ -1214,6 +1225,7 @@ #define PVR_ARCH_206 0x0f000003 #define PVR_ARCH_206p 0x0f100003 #define PVR_ARCH_207 0x0f000004 +#define PVR_ARCH_300 0x0f000005 /* Macros for setting and retrieving special purpose registers */ #ifndef __ASSEMBLY__ --- linux-4.8.0.orig/arch/powerpc/include/asm/smp.h +++ linux-4.8.0/arch/powerpc/include/asm/smp.h @@ -30,6 +30,7 @@ #include extern int boot_cpuid; +extern int boot_hw_cpuid; extern int spinning_secondaries; extern void cpu_die(void); --- linux-4.8.0.orig/arch/powerpc/include/asm/tlb.h +++ linux-4.8.0/arch/powerpc/include/asm/tlb.h @@ -28,6 +28,7 @@ #define tlb_start_vma(tlb, vma) do { } while (0) #define tlb_end_vma(tlb, vma) do { } while (0) #define __tlb_remove_tlb_entry __tlb_remove_tlb_entry +#define tlb_remove_check_page_size_change tlb_remove_check_page_size_change extern void tlb_flush(struct mmu_gather *tlb); @@ -46,17 +47,44 @@ #endif } +static inline void tlb_remove_check_page_size_change(struct mmu_gather *tlb, + unsigned int page_size) +{ + if (!tlb->page_size) + tlb->page_size = page_size; + else if (tlb->page_size != page_size) { + tlb_flush_mmu(tlb); + /* + * update the page size after flush for the new + * mmu_gather. + */ + tlb->page_size = page_size; + } +} + #ifdef CONFIG_SMP static inline int mm_is_core_local(struct mm_struct *mm) { return cpumask_subset(mm_cpumask(mm), topology_sibling_cpumask(smp_processor_id())); } + +static inline int mm_is_thread_local(struct mm_struct *mm) +{ + return cpumask_equal(mm_cpumask(mm), + cpumask_of(smp_processor_id())); +} + #else static inline int mm_is_core_local(struct mm_struct *mm) { return 1; } + +static inline int mm_is_thread_local(struct mm_struct *mm) +{ + return 1; +} #endif #endif /* __KERNEL__ */ --- linux-4.8.0.orig/arch/powerpc/include/asm/trace.h +++ linux-4.8.0/arch/powerpc/include/asm/trace.h @@ -54,7 +54,7 @@ ); #ifdef CONFIG_PPC_PSERIES -extern void hcall_tracepoint_regfunc(void); +extern int hcall_tracepoint_regfunc(void); extern void hcall_tracepoint_unregfunc(void); TRACE_EVENT_FN_COND(hcall_entry, @@ -104,7 +104,7 @@ #endif #ifdef CONFIG_PPC_POWERNV -extern void opal_tracepoint_regfunc(void); +extern int opal_tracepoint_regfunc(void); extern void opal_tracepoint_unregfunc(void); TRACE_EVENT_FN(opal_entry, --- linux-4.8.0.orig/arch/powerpc/include/uapi/asm/kvm.h +++ linux-4.8.0/arch/powerpc/include/uapi/asm/kvm.h @@ -573,6 +573,10 @@ #define KVM_REG_PPC_SPRG9 (KVM_REG_PPC | KVM_REG_SIZE_U64 | 0xba) #define KVM_REG_PPC_DBSR (KVM_REG_PPC | KVM_REG_SIZE_U32 | 0xbb) +/* POWER9 registers */ +#define KVM_REG_PPC_TIDR (KVM_REG_PPC | KVM_REG_SIZE_U64 | 0xbc) +#define KVM_REG_PPC_PSSCR (KVM_REG_PPC | KVM_REG_SIZE_U64 | 0xbd) + /* Transactional Memory checkpointed state: * This is all GPRs, all VSX regs and a subset of SPRs */ @@ -596,6 +600,7 @@ #define KVM_REG_PPC_TM_VSCR (KVM_REG_PPC_TM | KVM_REG_SIZE_U32 | 0x67) #define KVM_REG_PPC_TM_DSCR (KVM_REG_PPC_TM | KVM_REG_SIZE_U64 | 0x68) #define KVM_REG_PPC_TM_TAR (KVM_REG_PPC_TM | KVM_REG_SIZE_U64 | 0x69) +#define KVM_REG_PPC_TM_XER (KVM_REG_PPC_TM | KVM_REG_SIZE_U64 | 0x6a) /* PPC64 eXternal Interrupt Controller Specification */ #define KVM_DEV_XICS_GRP_SOURCES 1 /* 64-bit source attributes */ @@ -608,5 +613,7 @@ #define KVM_XICS_LEVEL_SENSITIVE (1ULL << 40) #define KVM_XICS_MASKED (1ULL << 41) #define KVM_XICS_PENDING (1ULL << 42) +#define KVM_XICS_PRESENTED (1ULL << 43) +#define KVM_XICS_QUEUED (1ULL << 44) #endif /* __LINUX_KVM_POWERPC_H */ --- linux-4.8.0.orig/arch/powerpc/kernel/Makefile +++ linux-4.8.0/arch/powerpc/kernel/Makefile @@ -31,8 +31,7 @@ process.o systbl.o idle.o \ signal.o sysfs.o cacheinfo.o time.o \ prom.o traps.o setup-common.o \ - udbg.o misc.o io.o dma.o \ - misc_$(CONFIG_WORD_SIZE).o \ + udbg.o misc.o io.o dma.o misc_$(BITS).o \ of_platform.o prom_parse.o obj-$(CONFIG_PPC64) += setup_64.o sys_ppc32.o \ signal_64.o ptrace32.o \ @@ -70,23 +69,23 @@ ifeq ($(CONFIG_FSL_BOOKE),y) obj-$(CONFIG_HIBERNATION) += swsusp_booke.o else -obj-$(CONFIG_HIBERNATION) += swsusp_$(CONFIG_WORD_SIZE).o +obj-$(CONFIG_HIBERNATION) += swsusp_$(BITS).o endif obj64-$(CONFIG_HIBERNATION) += swsusp_asm64.o -obj-$(CONFIG_MODULES) += module.o module_$(CONFIG_WORD_SIZE).o +obj-$(CONFIG_MODULES) += module.o module_$(BITS).o obj-$(CONFIG_44x) += cpu_setup_44x.o obj-$(CONFIG_PPC_FSL_BOOK3E) += cpu_setup_fsl_booke.o obj-$(CONFIG_PPC_DOORBELL) += dbell.o obj-$(CONFIG_JUMP_LABEL) += jump_label.o -extra-y := head_$(CONFIG_WORD_SIZE).o +extra-y := head_$(BITS).o extra-$(CONFIG_40x) := head_40x.o extra-$(CONFIG_44x) := head_44x.o extra-$(CONFIG_FSL_BOOKE) := head_fsl_booke.o extra-$(CONFIG_8xx) := head_8xx.o extra-y += vmlinux.lds -obj-$(CONFIG_RELOCATABLE) += reloc_$(CONFIG_WORD_SIZE).o +obj-$(CONFIG_RELOCATABLE) += reloc_$(BITS).o obj-$(CONFIG_PPC32) += entry_32.o setup_32.o obj-$(CONFIG_PPC64) += dma-iommu.o iommu.o @@ -104,11 +103,11 @@ obj-$(CONFIG_SWIOTLB) += dma-swiotlb.o pci64-$(CONFIG_PPC64) += pci_dn.o pci-hotplug.o isa-bridge.o -obj-$(CONFIG_PCI) += pci_$(CONFIG_WORD_SIZE).o $(pci64-y) \ +obj-$(CONFIG_PCI) += pci_$(BITS).o $(pci64-y) \ pci-common.o pci_of_scan.o obj-$(CONFIG_PCI_MSI) += msi.o obj-$(CONFIG_KEXEC) += machine_kexec.o crash.o \ - machine_kexec_$(CONFIG_WORD_SIZE).o + machine_kexec_$(BITS).o obj-$(CONFIG_AUDIT) += audit.o obj64-$(CONFIG_AUDIT) += compat_audit.o --- linux-4.8.0.orig/arch/powerpc/kernel/asm-offsets.c +++ linux-4.8.0/arch/powerpc/kernel/asm-offsets.c @@ -487,6 +487,7 @@ /* book3s */ #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE + DEFINE(KVM_TLB_SETS, offsetof(struct kvm, arch.tlb_sets)); DEFINE(KVM_SDR1, offsetof(struct kvm, arch.sdr1)); DEFINE(KVM_HOST_LPID, offsetof(struct kvm, arch.host_lpid)); DEFINE(KVM_HOST_LPCR, offsetof(struct kvm, arch.host_lpcr)); @@ -506,7 +507,6 @@ DEFINE(VCPU_PURR, offsetof(struct kvm_vcpu, arch.purr)); DEFINE(VCPU_SPURR, offsetof(struct kvm_vcpu, arch.spurr)); DEFINE(VCPU_IC, offsetof(struct kvm_vcpu, arch.ic)); - DEFINE(VCPU_VTB, offsetof(struct kvm_vcpu, arch.vtb)); DEFINE(VCPU_DSCR, offsetof(struct kvm_vcpu, arch.dscr)); DEFINE(VCPU_AMR, offsetof(struct kvm_vcpu, arch.amr)); DEFINE(VCPU_UAMOR, offsetof(struct kvm_vcpu, arch.uamor)); @@ -549,6 +549,8 @@ DEFINE(VCPU_TCSCR, offsetof(struct kvm_vcpu, arch.tcscr)); DEFINE(VCPU_ACOP, offsetof(struct kvm_vcpu, arch.acop)); DEFINE(VCPU_WORT, offsetof(struct kvm_vcpu, arch.wort)); + DEFINE(VCPU_TID, offsetof(struct kvm_vcpu, arch.tid)); + DEFINE(VCPU_PSSCR, offsetof(struct kvm_vcpu, arch.psscr)); DEFINE(VCORE_ENTRY_EXIT, offsetof(struct kvmppc_vcore, entry_exit_map)); DEFINE(VCORE_IN_GUEST, offsetof(struct kvmppc_vcore, in_guest)); DEFINE(VCORE_NAPPING_THREADS, offsetof(struct kvmppc_vcore, napping_threads)); @@ -557,6 +559,7 @@ DEFINE(VCORE_LPCR, offsetof(struct kvmppc_vcore, lpcr)); DEFINE(VCORE_PCR, offsetof(struct kvmppc_vcore, pcr)); DEFINE(VCORE_DPDES, offsetof(struct kvmppc_vcore, dpdes)); + DEFINE(VCORE_VTB, offsetof(struct kvmppc_vcore, vtb)); DEFINE(VCPU_SLB_E, offsetof(struct kvmppc_slb, orige)); DEFINE(VCPU_SLB_V, offsetof(struct kvmppc_slb, origv)); DEFINE(VCPU_SLB_SIZE, sizeof(struct kvmppc_slb)); @@ -569,6 +572,7 @@ DEFINE(VCPU_VRS_TM, offsetof(struct kvm_vcpu, arch.vr_tm.vr)); DEFINE(VCPU_VRSAVE_TM, offsetof(struct kvm_vcpu, arch.vrsave_tm)); DEFINE(VCPU_CR_TM, offsetof(struct kvm_vcpu, arch.cr_tm)); + DEFINE(VCPU_XER_TM, offsetof(struct kvm_vcpu, arch.xer_tm)); DEFINE(VCPU_LR_TM, offsetof(struct kvm_vcpu, arch.lr_tm)); DEFINE(VCPU_CTR_TM, offsetof(struct kvm_vcpu, arch.ctr_tm)); DEFINE(VCPU_AMR_TM, offsetof(struct kvm_vcpu, arch.amr_tm)); --- linux-4.8.0.orig/arch/powerpc/kernel/cpu_setup_power.S +++ linux-4.8.0/arch/powerpc/kernel/cpu_setup_power.S @@ -96,10 +96,13 @@ mtlr r11 beqlr li r0,0 + mtspr SPRN_PSSCR,r0 mtspr SPRN_LPID,r0 mfspr r3,SPRN_LPCR - ori r3, r3, LPCR_PECEDH - ori r3, r3, LPCR_HVICE + LOAD_REG_IMMEDIATE(r4, LPCR_PECEDH | LPCR_PECE_HVEE | LPCR_HVICE) + or r3, r3, r4 + LOAD_REG_IMMEDIATE(r4, LPCR_UPRT | LPCR_HR) + andc r3, r3, r4 bl __init_LPCR bl __init_HFSCR bl __init_tlb_power9 @@ -116,10 +119,13 @@ mtlr r11 beqlr li r0,0 + mtspr SPRN_PSSCR,r0 mtspr SPRN_LPID,r0 mfspr r3,SPRN_LPCR - ori r3, r3, LPCR_PECEDH - ori r3, r3, LPCR_HVICE + LOAD_REG_IMMEDIATE(r4, LPCR_PECEDH | LPCR_PECE_HVEE | LPCR_HVICE) + or r3, r3, r4 + LOAD_REG_IMMEDIATE(r4, LPCR_UPRT | LPCR_HR) + andc r3, r3, r4 bl __init_LPCR bl __init_HFSCR bl __init_tlb_power9 --- linux-4.8.0.orig/arch/powerpc/kernel/cputable.c +++ linux-4.8.0/arch/powerpc/kernel/cputable.c @@ -506,6 +506,25 @@ .machine_check_early = __machine_check_early_realmode_p8, .platform = "power8", }, + { /* Power9 DD1*/ + .pvr_mask = 0xffffff00, + .pvr_value = 0x004e0100, + .cpu_name = "POWER9 (raw)", + .cpu_features = CPU_FTRS_POWER9_DD1, + .cpu_user_features = COMMON_USER_POWER9, + .cpu_user_features2 = COMMON_USER2_POWER9, + .mmu_features = MMU_FTRS_POWER9, + .icache_bsize = 128, + .dcache_bsize = 128, + .num_pmcs = 6, + .pmc_type = PPC_PMC_IBM, + .oprofile_cpu_type = "ppc64/power9", + .oprofile_type = PPC_OPROFILE_INVALID, + .cpu_setup = __setup_cpu_power9, + .cpu_restore = __restore_cpu_power9, + .flush_tlb = __flush_tlb_power9, + .platform = "power9", + }, { /* Power9 */ .pvr_mask = 0xffff0000, .pvr_value = 0x004e0000, --- linux-4.8.0.orig/arch/powerpc/kernel/eeh_driver.c +++ linux-4.8.0/arch/powerpc/kernel/eeh_driver.c @@ -671,8 +671,10 @@ /* Clear frozen state */ rc = eeh_clear_pe_frozen_state(pe, false); - if (rc) + if (rc) { + pci_unlock_rescan_remove(); return rc; + } /* Give the system 5 seconds to finish running the user-space * hotplug shutdown scripts, e.g. ifdown for ethernet. Yes, @@ -994,6 +996,14 @@ /* Notify all devices to be down */ eeh_pe_state_clear(pe, EEH_PE_PRI_BUS); bus = eeh_pe_bus_get(phb_pe); + if (!bus) { + pr_err("%s: Cannot find PCI bus for " + "PHB#%d-PE#%x\n", + __func__, + pe->phb->global_number, + pe->addr); + break; + } eeh_pe_dev_traverse(pe, eeh_report_failure, NULL); pci_hp_remove_devices(bus); --- linux-4.8.0.orig/arch/powerpc/kernel/exceptions-64s.S +++ linux-4.8.0/arch/powerpc/kernel/exceptions-64s.S @@ -1301,12 +1301,12 @@ lbz r3,PACA_THREAD_IDLE_STATE(r13) cmpwi r3,PNV_THREAD_NAP bgt 10f - IDLE_STATE_ENTER_SEQ(PPC_NAP) + IDLE_STATE_ENTER_SEQ_NORET(PPC_NAP) /* No return */ 10: cmpwi r3,PNV_THREAD_SLEEP bgt 2f - IDLE_STATE_ENTER_SEQ(PPC_SLEEP) + IDLE_STATE_ENTER_SEQ_NORET(PPC_SLEEP) /* No return */ 2: @@ -1320,7 +1320,7 @@ */ ori r13,r13,1 SET_PACA(r13) - IDLE_STATE_ENTER_SEQ(PPC_WINKLE) + IDLE_STATE_ENTER_SEQ_NORET(PPC_WINKLE) /* No return */ 4: #endif --- linux-4.8.0.orig/arch/powerpc/kernel/fadump.c +++ linux-4.8.0/arch/powerpc/kernel/fadump.c @@ -778,7 +778,11 @@ elf->e_entry = 0; elf->e_phoff = sizeof(struct elfhdr); elf->e_shoff = 0; - elf->e_flags = ELF_CORE_EFLAGS; +#if defined(_CALL_ELF) + elf->e_flags = _CALL_ELF; +#else + elf->e_flags = 0; +#endif elf->e_ehsize = sizeof(struct elfhdr); elf->e_phentsize = sizeof(struct elf_phdr); elf->e_phnum = 0; --- linux-4.8.0.orig/arch/powerpc/kernel/head_64.S +++ linux-4.8.0/arch/powerpc/kernel/head_64.S @@ -201,9 +201,9 @@ */ _GLOBAL(book3e_start_thread) LOAD_REG_IMMEDIATE(r5, MSR_KERNEL) - cmpi 0, r3, 0 + cmpwi r3, 0 beq 10f - cmpi 0, r3, 1 + cmpwi r3, 1 beq 11f /* If the thread id is invalid, just exit. */ b 13f @@ -228,9 +228,9 @@ * r3 = the thread physical id */ _GLOBAL(book3e_stop_thread) - cmpi 0, r3, 0 + cmpwi r3, 0 beq 10f - cmpi 0, r3, 1 + cmpwi r3, 1 beq 10f /* If the thread id is invalid, just exit. */ b 13f --- linux-4.8.0.orig/arch/powerpc/kernel/idle_book3s.S +++ linux-4.8.0/arch/powerpc/kernel/idle_book3s.S @@ -40,9 +40,7 @@ #define _WORC GPR11 #define _PTCR GPR12 -#define PSSCR_HV_TEMPLATE PSSCR_ESL | PSSCR_EC | \ - PSSCR_PSLL_MASK | PSSCR_TR_MASK | \ - PSSCR_MTL_MASK +#define PSSCR_EC_ESL_MASK_SHIFTED (PSSCR_EC | PSSCR_ESL) >> 16 .text @@ -90,6 +88,7 @@ * Threads will spin in HMT_LOW until the lock bit is cleared. * r14 - pointer to core_idle_state * r15 - used to load contents of core_idle_state + * r9 - used as a temporary variable */ core_idle_lock_held: @@ -99,6 +98,8 @@ bne 3b HMT_MEDIUM lwarx r15,0,r14 + andi. r9,r15,PNV_CORE_IDLE_LOCK_BIT + bne core_idle_lock_held blr /* @@ -163,12 +164,6 @@ std r9,_MSR(r1) std r1,PACAR1(r13) -#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE - /* Tell KVM we're entering idle */ - li r4,KVM_HWTHREAD_IN_IDLE - stb r4,HSTATE_HWTHREAD_STATE(r13) -#endif - /* * Go to real mode to do the nap, as required by the architecture. * Also, we need to be in real mode before setting hwthread_state, @@ -185,10 +180,30 @@ .globl pnv_enter_arch207_idle_mode pnv_enter_arch207_idle_mode: +#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE + /* Tell KVM we're entering idle */ + li r4,KVM_HWTHREAD_IN_IDLE + /******************************************************/ + /* N O T E W E L L ! ! ! N O T E W E L L */ + /* The following store to HSTATE_HWTHREAD_STATE(r13) */ + /* MUST occur in real mode, i.e. with the MMU off, */ + /* and the MMU must stay off until we clear this flag */ + /* and test HSTATE_HWTHREAD_REQ(r13) in the system */ + /* reset interrupt vector in exceptions-64s.S. */ + /* The reason is that another thread can switch the */ + /* MMU to a guest context whenever this flag is set */ + /* to KVM_HWTHREAD_IN_IDLE, and if the MMU was on, */ + /* that would potentially cause this thread to start */ + /* executing instructions from guest memory in */ + /* hypervisor mode, leading to a host crash or data */ + /* corruption, or worse. */ + /******************************************************/ + stb r4,HSTATE_HWTHREAD_STATE(r13) +#endif stb r3,PACA_THREAD_IDLE_STATE(r13) cmpwi cr3,r3,PNV_THREAD_SLEEP bge cr3,2f - IDLE_STATE_ENTER_SEQ(PPC_NAP) + IDLE_STATE_ENTER_SEQ_NORET(PPC_NAP) /* No return */ 2: /* Sleep or winkle */ @@ -222,7 +237,7 @@ common_enter: /* common code for all the threads entering sleep or winkle */ bgt cr3,enter_winkle - IDLE_STATE_ENTER_SEQ(PPC_SLEEP) + IDLE_STATE_ENTER_SEQ_NORET(PPC_SLEEP) fastsleep_workaround_at_entry: ori r15,r15,PNV_CORE_IDLE_LOCK_BIT @@ -244,21 +259,38 @@ enter_winkle: bl save_sprs_to_stack - IDLE_STATE_ENTER_SEQ(PPC_WINKLE) + IDLE_STATE_ENTER_SEQ_NORET(PPC_WINKLE) /* - * r3 - requested stop state + * r3 - PSSCR value corresponding to the requested stop state. */ power_enter_stop: +#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE + /* Tell KVM we're entering idle */ + li r4,KVM_HWTHREAD_IN_IDLE + /* DO THIS IN REAL MODE! See comment above. */ + stb r4,HSTATE_HWTHREAD_STATE(r13) +#endif +/* + * Check if we are executing the lite variant with ESL=EC=0 + */ + andis. r4,r3,PSSCR_EC_ESL_MASK_SHIFTED + clrldi r3,r3,60 /* r3 = Bits[60:63] = Requested Level (RL) */ + bne .Lhandle_esl_ec_set + IDLE_STATE_ENTER_SEQ(PPC_STOP) + li r3,0 /* Since we didn't lose state, return 0 */ + b pnv_wakeup_noloss + +.Lhandle_esl_ec_set: /* * Check if the requested state is a deep idle state. */ LOAD_REG_ADDRBASE(r5,pnv_first_deep_stop_state) ld r4,ADDROFF(pnv_first_deep_stop_state)(r5) cmpd r3,r4 - bge 2f - IDLE_STATE_ENTER_SEQ(PPC_STOP) -2: + bge .Lhandle_deep_stop + IDLE_STATE_ENTER_SEQ_NORET(PPC_STOP) +.Lhandle_deep_stop: /* * Entering deep idle state. * Clear thread bit in PACA_CORE_IDLE_STATE, save SPRs to @@ -279,7 +311,7 @@ bl save_sprs_to_stack - IDLE_STATE_ENTER_SEQ(PPC_STOP) + IDLE_STATE_ENTER_SEQ_NORET(PPC_STOP) _GLOBAL(power7_idle) /* Now check if user or arch enabled NAP mode */ @@ -330,16 +362,17 @@ ld r3,ORIG_GPR3(r1); /* Restore original r3 */ \ 20: nop; - /* - * r3 - requested stop state + * r3 - The PSSCR value corresponding to the stop state. + * r4 - The PSSCR mask corrresonding to the stop state. */ _GLOBAL(power9_idle_stop) - LOAD_REG_IMMEDIATE(r4, PSSCR_HV_TEMPLATE) - or r4,r4,r3 - mtspr SPRN_PSSCR, r4 - li r4, 1 + mfspr r5,SPRN_PSSCR + andc r5,r5,r4 + or r3,r3,r5 + mtspr SPRN_PSSCR,r3 LOAD_REG_ADDR(r5,power_enter_stop) + li r4,1 b pnv_powersave_common /* No return */ /* --- linux-4.8.0.orig/arch/powerpc/kernel/iommu.c +++ linux-4.8.0/arch/powerpc/kernel/iommu.c @@ -479,7 +479,8 @@ /* Handle failure */ if (unlikely(entry == DMA_ERROR_CODE)) { - if (printk_ratelimit()) + if (!(attrs & DMA_ATTR_NO_WARN) && + printk_ratelimit()) dev_info(dev, "iommu_alloc failed, tbl %p " "vaddr %lx npages %lu\n", tbl, vaddr, npages); @@ -776,7 +777,8 @@ mask >> tbl->it_page_shift, align, attrs); if (dma_handle == DMA_ERROR_CODE) { - if (printk_ratelimit()) { + if (!(attrs & DMA_ATTR_NO_WARN) && + printk_ratelimit()) { dev_info(dev, "iommu_alloc failed, tbl %p " "vaddr %p npages %d\n", tbl, vaddr, npages); --- linux-4.8.0.orig/arch/powerpc/kernel/irq.c +++ linux-4.8.0/arch/powerpc/kernel/irq.c @@ -67,6 +67,7 @@ #include #include #include +#include #ifdef CONFIG_PPC64 #include --- linux-4.8.0.orig/arch/powerpc/kernel/machine_kexec_64.c +++ linux-4.8.0/arch/powerpc/kernel/machine_kexec_64.c @@ -23,6 +23,7 @@ #include #include #include +#include #include #include #include /* _end */ @@ -55,9 +56,6 @@ const unsigned long *basep; const unsigned int *sizep; - if (!mmu_hash_ops.hpte_clear_all) - return -ENOENT; - /* * Since we use the kernel fault handlers and paging code to * handle the virtual mode, we must make sure no destination @@ -67,31 +65,6 @@ if (image->segment[i].mem < __pa(_end)) return -ETXTBSY; - /* - * For non-LPAR, we absolutely can not overwrite the mmu hash - * table, since we are still using the bolted entries in it to - * do the copy. Check that here. - * - * It is safe if the end is below the start of the blocked - * region (end <= low), or if the beginning is after the - * end of the blocked region (begin >= high). Use the - * boolean identity !(a || b) === (!a && !b). - */ -#ifdef CONFIG_PPC_STD_MMU_64 - if (htab_address) { - low = __pa(htab_address); - high = low + htab_size_bytes; - - for (i = 0; i < image->nr_segments; i++) { - begin = image->segment[i].mem; - end = begin + image->segment[i].memsz; - - if ((begin < high) && (end > low)) - return -ETXTBSY; - } - } -#endif /* CONFIG_PPC_STD_MMU_64 */ - /* We also should not overwrite the tce tables */ for_each_node_by_type(node, "pci") { basep = of_get_property(node, "linux,tce-base", NULL); @@ -332,11 +305,14 @@ /* Our assembly helper, in misc_64.S */ extern void kexec_sequence(void *newstack, unsigned long start, void *image, void *control, - void (*clear_all)(void)) __noreturn; + void (*clear_all)(void), + bool copy_with_mmu_off) __noreturn; /* too late to fail here */ void default_machine_kexec(struct kimage *image) { + bool copy_with_mmu_off; + /* prepare control code if any */ /* @@ -374,18 +350,29 @@ /* XXX: If anyone does 'dynamic lppacas' this will also need to be * switched to a static version! */ + /* + * On Book3S, the copy must happen with the MMU off if we are either + * using Radix page tables or we are not in an LPAR since we can + * overwrite the page tables while copying. + * + * In an LPAR, we keep the MMU on otherwise we can't access beyond + * the RMA. On BookE there is no real MMU off mode, so we have to + * keep it enabled as well (but then we have bolted TLB entries). + */ +#ifdef CONFIG_PPC_BOOK3E + copy_with_mmu_off = false; +#else + copy_with_mmu_off = radix_enabled() || + !(firmware_has_feature(FW_FEATURE_LPAR) || + firmware_has_feature(FW_FEATURE_PS3_LV1)); +#endif /* Some things are best done in assembly. Finding globals with * a toc is easier in C, so pass in what we can. */ kexec_sequence(&kexec_stack, image->start, image, - page_address(image->control_code_page), -#ifdef CONFIG_PPC_STD_MMU - mmu_hash_ops.hpte_clear_all -#else - NULL -#endif - ); + page_address(image->control_code_page), + mmu_cleanup_all, copy_with_mmu_off); /* NOTREACHED */ } --- linux-4.8.0.orig/arch/powerpc/kernel/misc_64.S +++ linux-4.8.0/arch/powerpc/kernel/misc_64.S @@ -591,7 +591,8 @@ #endif /* - * kexec_sequence(newstack, start, image, control, clear_all()) + * kexec_sequence(newstack, start, image, control, clear_all(), + copy_with_mmu_off) * * does the grungy work with stack switching and real mode switches * also does simple calls to other code @@ -627,7 +628,7 @@ mr r29,r5 /* image (virt) */ mr r28,r6 /* control, unused */ mr r27,r7 /* clear_all() fn desc */ - mr r26,r8 /* spare */ + mr r26,r8 /* copy_with_mmu_off */ lhz r25,PACAHWCPUID(r13) /* get our phys cpu from paca */ /* disable interrupts, we are overwriting kernel data next */ @@ -639,15 +640,24 @@ mtmsrd r3,1 #endif + /* We need to turn the MMU off unless we are in hash mode + * under a hypervisor + */ + cmpdi r26,0 + beq 1f + bl real_mode +1: /* copy dest pages, flush whole dest image */ mr r3,r29 bl kexec_copy_flush /* (image) */ - /* turn off mmu */ + /* turn off mmu now if not done earlier */ + cmpdi r26,0 + bne 1f bl real_mode /* copy 0x100 bytes starting at start to 0 */ - li r3,0 +1: li r3,0 mr r4,r30 /* start, aka phys mem offset */ li r5,0x100 li r6,0 @@ -659,7 +669,9 @@ li r6,1 stw r6,kexec_flag-1b(5) -#ifndef CONFIG_PPC_BOOK3E + cmpdi r27,0 + beq 1f + /* clear out hardware hash page table and tlb */ #ifdef PPC64_ELF_ABI_v1 ld r12,0(r27) /* deref function descriptor */ @@ -668,7 +680,6 @@ #endif mtctr r12 bctrl /* mmu_hash_ops.hpte_clear_all(void); */ -#endif /* !CONFIG_PPC_BOOK3E */ /* * kexec image calling is: @@ -695,7 +706,7 @@ * are the boot cpu ????? * other device tree differences (prop sizes, va vs pa, etc)... */ - mr r3,r25 # my phys cpu +1: mr r3,r25 # my phys cpu mr r4,r30 # start, aka phys mem offset mtlr 4 li r5,0 --- linux-4.8.0.orig/arch/powerpc/kernel/module.c +++ linux-4.8.0/arch/powerpc/kernel/module.c @@ -27,7 +27,7 @@ #include #include -LIST_HEAD(module_bug_list); +static LIST_HEAD(module_bug_list); static const Elf_Shdr *find_section(const Elf_Ehdr *hdr, const Elf_Shdr *sechdrs, --- linux-4.8.0.orig/arch/powerpc/kernel/nvram_64.c +++ linux-4.8.0/arch/powerpc/kernel/nvram_64.c @@ -851,7 +851,7 @@ } } -const struct file_operations nvram_fops = { +static const struct file_operations nvram_fops = { .owner = THIS_MODULE, .llseek = dev_nvram_llseek, .read = dev_nvram_read, @@ -956,7 +956,7 @@ /* Make partition a free partition */ part->header.signature = NVRAM_SIG_FREE; - strncpy(part->header.name, "wwwwwwwwwwww", 12); + memset(part->header.name, 'w', 12); part->header.checksum = nvram_checksum(&part->header); rc = nvram_write_header(part); if (rc <= 0) { @@ -974,8 +974,8 @@ } if (prev) { prev->header.length += part->header.length; - prev->header.checksum = nvram_checksum(&part->header); - rc = nvram_write_header(part); + prev->header.checksum = nvram_checksum(&prev->header); + rc = nvram_write_header(prev); if (rc <= 0) { printk(KERN_ERR "nvram_remove_partition: nvram_write failed (%d)\n", rc); return rc; --- linux-4.8.0.orig/arch/powerpc/kernel/paca.c +++ linux-4.8.0/arch/powerpc/kernel/paca.c @@ -197,6 +197,7 @@ { u64 limit; int cpu; + int nr_cpus; limit = ppc64_rma_size; @@ -209,20 +210,32 @@ limit = min(0x10000000ULL, limit); #endif - paca_size = PAGE_ALIGN(sizeof(struct paca_struct) * nr_cpu_ids); + /* + * Always align up the nr_cpu_ids to SMT threads and allocate + * the paca. This will help us to prepare for a situation where + * boot cpu id > nr_cpus_id. We will use the last nthreads + * slots (nthreads == threads per core) to accommodate a core + * that contains boot cpu thread. + * + * Do not change nr_cpu_ids value here. Let us do that in + * early_init_dt_scan_cpus() where we know exact value + * of threads per core. + */ + nr_cpus = _ALIGN_UP(nr_cpu_ids, MAX_SMT); + paca_size = PAGE_ALIGN(sizeof(struct paca_struct) * nr_cpus); paca = __va(memblock_alloc_base(paca_size, PAGE_SIZE, limit)); memset(paca, 0, paca_size); printk(KERN_DEBUG "Allocated %u bytes for %d pacas at %p\n", - paca_size, nr_cpu_ids, paca); + paca_size, nr_cpus, paca); - allocate_lppacas(nr_cpu_ids, limit); + allocate_lppacas(nr_cpus, limit); - allocate_slb_shadows(nr_cpu_ids, limit); + allocate_slb_shadows(nr_cpus, limit); /* Can't use for_each_*_cpu, as they aren't functional yet */ - for (cpu = 0; cpu < nr_cpu_ids; cpu++) + for (cpu = 0; cpu < nr_cpus; cpu++) initialise_paca(&paca[cpu], cpu); } --- linux-4.8.0.orig/arch/powerpc/kernel/pci-common.c +++ linux-4.8.0/arch/powerpc/kernel/pci-common.c @@ -321,6 +321,7 @@ } return NULL; } +EXPORT_SYMBOL(pci_find_hose_for_OF_device); /* * Reads the interrupt pin to determine if interrupt is use by card. @@ -1643,6 +1644,7 @@ { return pci_bus_find_capability(fake_pci_bus(hose, bus), devfn, cap); } +EXPORT_SYMBOL_GPL(early_find_capability); struct device_node *pcibios_get_phb_of_node(struct pci_bus *bus) { --- linux-4.8.0.orig/arch/powerpc/kernel/process.c +++ linux-4.8.0/arch/powerpc/kernel/process.c @@ -59,6 +59,7 @@ #include #include #include +#include #include #include @@ -88,7 +89,13 @@ set_thread_flag(TIF_RESTORE_TM); } } + +static inline bool msr_tm_active(unsigned long msr) +{ + return MSR_TM_ACTIVE(msr); +} #else +static inline bool msr_tm_active(unsigned long msr) { return false; } static inline void check_if_tm_restore_required(struct task_struct *tsk) { } #endif /* CONFIG_PPC_TRANSACTIONAL_MEM */ @@ -208,7 +215,7 @@ EXPORT_SYMBOL(enable_kernel_fp); static int restore_fp(struct task_struct *tsk) { - if (tsk->thread.load_fp) { + if (tsk->thread.load_fp || msr_tm_active(tsk->thread.regs->msr)) { load_fp_state(¤t->thread.fp_state); current->thread.load_fp++; return 1; @@ -278,7 +285,8 @@ static int restore_altivec(struct task_struct *tsk) { - if (cpu_has_feature(CPU_FTR_ALTIVEC) && tsk->thread.load_vec) { + if (cpu_has_feature(CPU_FTR_ALTIVEC) && + (tsk->thread.load_vec || msr_tm_active(tsk->thread.regs->msr))) { load_vr_state(&tsk->thread.vr_state); tsk->thread.used_vr = 1; tsk->thread.load_vec++; @@ -438,6 +446,7 @@ return; msr_check_and_set(msr_all_available); + check_if_tm_restore_required(tsk); #ifdef CONFIG_PPC_FPU if (usermsr & MSR_FP) @@ -464,7 +473,8 @@ { unsigned long msr; - if (!current->thread.load_fp && !loadvec(current->thread)) + if (!msr_tm_active(regs->msr) && + !current->thread.load_fp && !loadvec(current->thread)) return; msr = regs->msr; @@ -983,6 +993,13 @@ msr_diff = current->thread.ckpt_regs.msr & ~regs->msr; msr_diff &= MSR_FP | MSR_VEC | MSR_VSX; + /* Ensure that restore_math() will restore */ + if (msr_diff & MSR_FP) + current->thread.load_fp = 1; +#ifdef CONFIG_ALTIVEC + if (cpu_has_feature(CPU_FTR_ALTIVEC) && msr_diff & MSR_VEC) + current->thread.load_vec = 1; +#endif restore_math(regs); regs->msr |= msr_diff; @@ -1018,14 +1035,6 @@ */ t->tar = mfspr(SPRN_TAR); } - - if (cpu_has_feature(CPU_FTR_ARCH_300)) { - /* Conditionally save Load Monitor registers, if enabled */ - if (t->fscr & FSCR_LM) { - t->lmrr = mfspr(SPRN_LMRR); - t->lmser = mfspr(SPRN_LMSER); - } - } #endif } @@ -1061,16 +1070,6 @@ if (old_thread->tar != new_thread->tar) mtspr(SPRN_TAR, new_thread->tar); } - - if (cpu_has_feature(CPU_FTR_ARCH_300)) { - /* Conditionally restore Load Monitor registers, if enabled */ - if (new_thread->fscr & FSCR_LM) { - if (old_thread->lmrr != new_thread->lmrr) - mtspr(SPRN_LMRR, new_thread->lmrr); - if (old_thread->lmser != new_thread->lmser) - mtspr(SPRN_LMSER, new_thread->lmser); - } - } #endif } --- linux-4.8.0.orig/arch/powerpc/kernel/prom.c +++ linux-4.8.0/arch/powerpc/kernel/prom.c @@ -299,6 +299,29 @@ } } +/* + * Adjust the logical id of a boot cpu to fall under nr_cpu_ids. Map it to + * last core slot in the allocated paca array. + * + * e.g. on SMT=8 system, kernel booted with nr_cpus=1 and boot cpu = 33, + * align nr_cpu_ids to MAX_SMT value 8. Allocate paca array to hold up-to + * MAX_SMT=8 cpus. Since boot cpu 33 is greater than nr_cpus (8), adjust + * its logical id so that new id becomes less than nr_cpu_ids. Make sure + * that boot cpu's new logical id is aligned to its thread id and falls + * under last nthreads slots available in paca array. In this case the + * boot cpu 33 is adjusted to new boot cpu id 1. + * + */ +static inline void adjust_boot_cpuid(int nthreads, int phys_id) +{ + boot_hw_cpuid = phys_id; + if (boot_cpuid >= nr_cpu_ids) { + boot_cpuid = (boot_cpuid % nthreads) + (nr_cpu_ids - nthreads); + pr_info("Adjusted logical boot cpu id: logical %d physical %d\n", + boot_cpuid, phys_id); + } +} + static int __init early_init_dt_scan_cpus(unsigned long node, const char *uname, int depth, void *data) @@ -322,6 +345,18 @@ nthreads = len / sizeof(int); +#ifdef CONFIG_SMP + /* + * Now that we know threads per core lets align nr_cpu_ids to + * correct SMT value. + */ + if (nr_cpu_ids % nthreads) { + nr_cpu_ids = _ALIGN_UP(nr_cpu_ids, nthreads); + pr_info("Aligned nr_cpus to SMT=%d, nr_cpu_ids = %d\n", + nthreads, nr_cpu_ids); + } +#endif + /* * Now see if any of these threads match our boot cpu. * NOTE: This must match the parsing done in smp_setup_cpu_maps. @@ -360,7 +395,9 @@ DBG("boot cpu: logical %d physical %d\n", found, be32_to_cpu(intserv[found_thread])); boot_cpuid = found; - set_hard_smp_processor_id(found, be32_to_cpu(intserv[found_thread])); + adjust_boot_cpuid(nthreads, be32_to_cpu(intserv[found_thread])); + set_hard_smp_processor_id(boot_cpuid, + be32_to_cpu(intserv[found_thread])); /* * PAPR defines "logical" PVR values for cpus that --- linux-4.8.0.orig/arch/powerpc/kernel/prom_init.c +++ linux-4.8.0/arch/powerpc/kernel/prom_init.c @@ -42,6 +42,7 @@ #include #include #include +#include #include @@ -167,6 +168,14 @@ static unsigned long __initdata prom_tce_alloc_end; #endif +static bool __initdata prom_radix_disable; + +struct platform_support { + bool hash_mmu; + bool radix_mmu; + bool radix_gtse; +}; + /* Platforms codes are now obsolete in the kernel. Now only used within this * file and ultimately gone too. Feel free to change them if you need, they * are not shared with anything outside of this file anymore @@ -460,14 +469,14 @@ } } -static int inline prom_getprop(phandle node, const char *pname, +static inline int prom_getprop(phandle node, const char *pname, void *value, size_t valuelen) { return call_prom("getprop", 4, 1, node, ADDR(pname), (u32)(unsigned long) value, (u32) valuelen); } -static int inline prom_getproplen(phandle node, const char *pname) +static inline int prom_getproplen(phandle node, const char *pname) { return call_prom("getproplen", 2, 1, node, ADDR(pname)); } @@ -625,6 +634,12 @@ prom_memory_limit = ALIGN(prom_memory_limit, 0x1000000); #endif } + + opt = strstr(prom_cmd_line, "disable_radix"); + if (opt) { + prom_debug("Radix disabled from cmdline\n"); + prom_radix_disable = true; + } } #if defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV) @@ -634,13 +649,7 @@ * * See prom.h for the definition of the bits specified in the * architecture vector. - * - * Because the description vector contains a mix of byte and word - * values, we declare it as an unsigned char array, and use this - * macro to put word values in. */ -#define W(x) ((x) >> 24) & 0xff, ((x) >> 16) & 0xff, \ - ((x) >> 8) & 0xff, (x) & 0xff /* Firmware expects the value to be n - 1, where n is the # of vectors */ #define NUM_VECTORS(n) ((n) - 1) @@ -651,92 +660,224 @@ */ #define VECTOR_LENGTH(n) (1 + (n) - 2) -unsigned char ibm_architecture_vec[] = { - W(0xfffe0000), W(0x003a0000), /* POWER5/POWER5+ */ - W(0xffff0000), W(0x003e0000), /* POWER6 */ - W(0xffff0000), W(0x003f0000), /* POWER7 */ - W(0xffff0000), W(0x004b0000), /* POWER8E */ - W(0xffff0000), W(0x004c0000), /* POWER8NVL */ - W(0xffff0000), W(0x004d0000), /* POWER8 */ - W(0xffffffff), W(0x0f000004), /* all 2.07-compliant */ - W(0xffffffff), W(0x0f000003), /* all 2.06-compliant */ - W(0xffffffff), W(0x0f000002), /* all 2.05-compliant */ - W(0xfffffffe), W(0x0f000001), /* all 2.04-compliant and earlier */ - NUM_VECTORS(6), /* 6 option vectors */ - - /* option vector 1: processor architectures supported */ - VECTOR_LENGTH(2), /* length */ - 0, /* don't ignore, don't halt */ - OV1_PPC_2_00 | OV1_PPC_2_01 | OV1_PPC_2_02 | OV1_PPC_2_03 | - OV1_PPC_2_04 | OV1_PPC_2_05 | OV1_PPC_2_06 | OV1_PPC_2_07, +struct option_vector1 { + u8 byte1; + u8 arch_versions; + u8 arch_versions3; +} __packed; + +struct option_vector2 { + u8 byte1; + __be16 reserved; + __be32 real_base; + __be32 real_size; + __be32 virt_base; + __be32 virt_size; + __be32 load_base; + __be32 min_rma; + __be32 min_load; + u8 min_rma_percent; + u8 max_pft_size; +} __packed; + +struct option_vector3 { + u8 byte1; + u8 byte2; +} __packed; + +struct option_vector4 { + u8 byte1; + u8 min_vp_cap; +} __packed; + +struct option_vector5 { + u8 byte1; + u8 byte2; + u8 byte3; + u8 cmo; + u8 associativity; + u8 bin_opts; + u8 micro_checkpoint; + u8 reserved0; + __be32 max_cpus; + __be16 papr_level; + __be16 reserved1; + u8 platform_facilities; + u8 reserved2; + __be16 reserved3; + u8 subprocessors; + u8 byte22; + u8 intarch; + u8 mmu; + u8 hash_ext; + u8 radix_ext; +} __packed; + +struct option_vector6 { + u8 reserved; + u8 secondary_pteg; + u8 os_name; +} __packed; + +struct ibm_arch_vec { + struct { u32 mask, val; } pvrs[12]; + + u8 num_vectors; + + u8 vec1_len; + struct option_vector1 vec1; + + u8 vec2_len; + struct option_vector2 vec2; + + u8 vec3_len; + struct option_vector3 vec3; + + u8 vec4_len; + struct option_vector4 vec4; + + u8 vec5_len; + struct option_vector5 vec5; + + u8 vec6_len; + struct option_vector6 vec6; +} __packed; + +struct ibm_arch_vec __cacheline_aligned ibm_architecture_vec = { + .pvrs = { + { + .mask = cpu_to_be32(0xfffe0000), /* POWER5/POWER5+ */ + .val = cpu_to_be32(0x003a0000), + }, + { + .mask = cpu_to_be32(0xffff0000), /* POWER6 */ + .val = cpu_to_be32(0x003e0000), + }, + { + .mask = cpu_to_be32(0xffff0000), /* POWER7 */ + .val = cpu_to_be32(0x003f0000), + }, + { + .mask = cpu_to_be32(0xffff0000), /* POWER8E */ + .val = cpu_to_be32(0x004b0000), + }, + { + .mask = cpu_to_be32(0xffff0000), /* POWER8NVL */ + .val = cpu_to_be32(0x004c0000), + }, + { + .mask = cpu_to_be32(0xffff0000), /* POWER8 */ + .val = cpu_to_be32(0x004d0000), + }, + { + .mask = cpu_to_be32(0xffff0000), /* POWER9 */ + .val = cpu_to_be32(0x004e0000), + }, + { + .mask = cpu_to_be32(0xffffffff), /* all 3.00-compliant */ + .val = cpu_to_be32(0x0f000005), + }, + { + .mask = cpu_to_be32(0xffffffff), /* all 2.07-compliant */ + .val = cpu_to_be32(0x0f000004), + }, + { + .mask = cpu_to_be32(0xffffffff), /* all 2.06-compliant */ + .val = cpu_to_be32(0x0f000003), + }, + { + .mask = cpu_to_be32(0xffffffff), /* all 2.05-compliant */ + .val = cpu_to_be32(0x0f000002), + }, + { + .mask = cpu_to_be32(0xfffffffe), /* all 2.04-compliant and earlier */ + .val = cpu_to_be32(0x0f000001), + }, + }, + + .num_vectors = NUM_VECTORS(6), + .vec1_len = VECTOR_LENGTH(sizeof(struct option_vector1)), + .vec1 = { + .byte1 = 0, + .arch_versions = OV1_PPC_2_00 | OV1_PPC_2_01 | OV1_PPC_2_02 | OV1_PPC_2_03 | + OV1_PPC_2_04 | OV1_PPC_2_05 | OV1_PPC_2_06 | OV1_PPC_2_07, + .arch_versions3 = OV1_PPC_3_00, + }, + + .vec2_len = VECTOR_LENGTH(sizeof(struct option_vector2)), /* option vector 2: Open Firmware options supported */ - VECTOR_LENGTH(33), /* length */ - OV2_REAL_MODE, - 0, 0, - W(0xffffffff), /* real_base */ - W(0xffffffff), /* real_size */ - W(0xffffffff), /* virt_base */ - W(0xffffffff), /* virt_size */ - W(0xffffffff), /* load_base */ - W(256), /* 256MB min RMA */ - W(0xffffffff), /* full client load */ - 0, /* min RMA percentage of total RAM */ - 48, /* max log_2(hash table size) */ + .vec2 = { + .byte1 = OV2_REAL_MODE, + .reserved = 0, + .real_base = cpu_to_be32(0xffffffff), + .real_size = cpu_to_be32(0xffffffff), + .virt_base = cpu_to_be32(0xffffffff), + .virt_size = cpu_to_be32(0xffffffff), + .load_base = cpu_to_be32(0xffffffff), + .min_rma = cpu_to_be32(256), /* 256MB min RMA */ + .min_load = cpu_to_be32(0xffffffff), /* full client load */ + .min_rma_percent = 0, /* min RMA percentage of total RAM */ + .max_pft_size = 48, /* max log_2(hash table size) */ + }, + .vec3_len = VECTOR_LENGTH(sizeof(struct option_vector3)), /* option vector 3: processor options supported */ - VECTOR_LENGTH(2), /* length */ - 0, /* don't ignore, don't halt */ - OV3_FP | OV3_VMX | OV3_DFP, + .vec3 = { + .byte1 = 0, /* don't ignore, don't halt */ + .byte2 = OV3_FP | OV3_VMX | OV3_DFP, + }, + .vec4_len = VECTOR_LENGTH(sizeof(struct option_vector4)), /* option vector 4: IBM PAPR implementation */ - VECTOR_LENGTH(2), /* length */ - 0, /* don't halt */ - OV4_MIN_ENT_CAP, /* minimum VP entitled capacity */ + .vec4 = { + .byte1 = 0, /* don't halt */ + .min_vp_cap = OV4_MIN_ENT_CAP, /* minimum VP entitled capacity */ + }, + .vec5_len = VECTOR_LENGTH(sizeof(struct option_vector5)), /* option vector 5: PAPR/OF options */ - VECTOR_LENGTH(21), /* length */ - 0, /* don't ignore, don't halt */ - OV5_FEAT(OV5_LPAR) | OV5_FEAT(OV5_SPLPAR) | OV5_FEAT(OV5_LARGE_PAGES) | - OV5_FEAT(OV5_DRCONF_MEMORY) | OV5_FEAT(OV5_DONATE_DEDICATE_CPU) | + .vec5 = { + .byte1 = 0, /* don't ignore, don't halt */ + .byte2 = OV5_FEAT(OV5_LPAR) | OV5_FEAT(OV5_SPLPAR) | OV5_FEAT(OV5_LARGE_PAGES) | + OV5_FEAT(OV5_DRCONF_MEMORY) | OV5_FEAT(OV5_DONATE_DEDICATE_CPU) | #ifdef CONFIG_PCI_MSI - /* PCIe/MSI support. Without MSI full PCIe is not supported */ - OV5_FEAT(OV5_MSI), + /* PCIe/MSI support. Without MSI full PCIe is not supported */ + OV5_FEAT(OV5_MSI), #else - 0, + 0, #endif - 0, + .byte3 = 0, + .cmo = #ifdef CONFIG_PPC_SMLPAR - OV5_FEAT(OV5_CMO) | OV5_FEAT(OV5_XCMO), + OV5_FEAT(OV5_CMO) | OV5_FEAT(OV5_XCMO), #else - 0, + 0, #endif - OV5_FEAT(OV5_TYPE1_AFFINITY) | OV5_FEAT(OV5_PRRN), - 0, - 0, - 0, - /* WARNING: The offset of the "number of cores" field below - * must match by the macro below. Update the definition if - * the structure layout changes. - */ -#define IBM_ARCH_VEC_NRCORES_OFFSET 133 - W(NR_CPUS), /* number of cores supported */ - 0, - 0, - 0, - 0, - OV5_FEAT(OV5_PFO_HW_RNG) | OV5_FEAT(OV5_PFO_HW_ENCR) | - OV5_FEAT(OV5_PFO_HW_842), /* Byte 17 */ - 0, /* Byte 18 */ - 0, /* Byte 19 */ - 0, /* Byte 20 */ - OV5_FEAT(OV5_SUB_PROCESSORS), /* Byte 21 */ + .associativity = OV5_FEAT(OV5_TYPE1_AFFINITY) | OV5_FEAT(OV5_PRRN), + .bin_opts = OV5_FEAT(OV5_RESIZE_HPT) | OV5_FEAT(OV5_HP_EVT), + .micro_checkpoint = 0, + .reserved0 = 0, + .max_cpus = cpu_to_be32(NR_CPUS), /* number of cores supported */ + .papr_level = 0, + .reserved1 = 0, + .platform_facilities = OV5_FEAT(OV5_PFO_HW_RNG) | OV5_FEAT(OV5_PFO_HW_ENCR) | OV5_FEAT(OV5_PFO_HW_842), + .reserved2 = 0, + .reserved3 = 0, + .subprocessors = 1, + .intarch = 0, + .mmu = 0, + .hash_ext = 0, + .radix_ext = 0, + }, /* option vector 6: IBM PAPR hints */ - VECTOR_LENGTH(3), /* length */ - 0, - 0, - OV6_LINUX, + .vec6_len = VECTOR_LENGTH(sizeof(struct option_vector6)), + .vec6 = { + .reserved = 0, + .secondary_pteg = 0, + .os_name = OV6_LINUX, + }, }; /* Old method - ELF header with PT_NOTE sections only works on BE */ @@ -866,13 +1007,101 @@ } +static void __init prom_parse_mmu_model(u8 val, + struct platform_support *support) +{ + switch (val) { + case OV5_FEAT(OV5_MMU_DYNAMIC): + case OV5_FEAT(OV5_MMU_EITHER): /* Either Available */ + prom_debug("MMU - either supported\n"); + support->radix_mmu = !prom_radix_disable; + support->hash_mmu = true; + break; + case OV5_FEAT(OV5_MMU_RADIX): /* Only Radix */ + prom_debug("MMU - radix only\n"); + if (prom_radix_disable) { + /* + * If we __have__ to do radix, we're better off ignoring + * the command line rather than not booting. + */ + prom_printf("WARNING: Ignoring cmdline option disable_radix\n"); + } + support->radix_mmu = true; + break; + case OV5_FEAT(OV5_MMU_HASH): + prom_debug("MMU - hash only\n"); + support->hash_mmu = true; + break; + default: + prom_debug("Unknown mmu support option: 0x%x\n", val); + break; + } +} + +static void __init prom_parse_platform_support(u8 index, u8 val, + struct platform_support *support) +{ + switch (index) { + case OV5_INDX(OV5_MMU_SUPPORT): /* MMU Model */ + prom_parse_mmu_model(val & OV5_FEAT(OV5_MMU_SUPPORT), support); + break; + case OV5_INDX(OV5_RADIX_GTSE): /* Radix Extensions */ + if (val & OV5_FEAT(OV5_RADIX_GTSE)) { + prom_debug("Radix - GTSE supported\n"); + support->radix_gtse = true; + } + break; + } +} + +static void __init prom_check_platform_support(void) +{ + struct platform_support supported = { + .hash_mmu = false, + .radix_mmu = false, + .radix_gtse = false + }; + int prop_len = prom_getproplen(prom.chosen, + "ibm,arch-vec-5-platform-support"); + if (prop_len > 1) { + int i; + u8 vec[prop_len]; + prom_debug("Found ibm,arch-vec-5-platform-support, len: %d\n", + prop_len); + prom_getprop(prom.chosen, "ibm,arch-vec-5-platform-support", + &vec, sizeof(vec)); + for (i = 0; i < prop_len; i += 2) { + prom_debug("%d: index = 0x%x val = 0x%x\n", i / 2 + , vec[i] + , vec[i + 1]); + prom_parse_platform_support(vec[i], vec[i + 1], + &supported); + } + } + + if (supported.radix_mmu && supported.radix_gtse) { + /* Radix preferred - but we require GTSE for now */ + prom_debug("Asking for radix with GTSE\n"); + ibm_architecture_vec.vec5.mmu = OV5_FEAT(OV5_MMU_RADIX); + ibm_architecture_vec.vec5.radix_ext = OV5_FEAT(OV5_RADIX_GTSE); + } else if (supported.hash_mmu) { + /* Default to hash mmu (if we can) */ + prom_debug("Asking for hash\n"); + ibm_architecture_vec.vec5.mmu = OV5_FEAT(OV5_MMU_HASH); + } else { + /* We're probably on a legacy hypervisor */ + prom_debug("Assuming legacy hash support\n"); + } +} static void __init prom_send_capabilities(void) { ihandle root; prom_arg_t ret; u32 cores; - unsigned char *ptcores; + + /* Check ibm,arch-vec-5-platform-support and fixup vec5 if required */ + prom_check_platform_support(); root = call_prom("open", 1, 1, ADDR("/")); if (root != 0) { @@ -883,37 +1112,18 @@ * divide NR_CPUS. */ - /* The core value may start at an odd address. If such a word - * access is made at a cache line boundary, this leads to an - * exception which may not be handled at this time. - * Forcing a per byte access to avoid exception. - */ - ptcores = &ibm_architecture_vec[IBM_ARCH_VEC_NRCORES_OFFSET]; - cores = 0; - cores |= ptcores[0] << 24; - cores |= ptcores[1] << 16; - cores |= ptcores[2] << 8; - cores |= ptcores[3]; - if (cores != NR_CPUS) { - prom_printf("WARNING ! " - "ibm_architecture_vec structure inconsistent: %lu!\n", - cores); - } else { - cores = DIV_ROUND_UP(NR_CPUS, prom_count_smt_threads()); - prom_printf("Max number of cores passed to firmware: %lu (NR_CPUS = %lu)\n", - cores, NR_CPUS); - ptcores[0] = (cores >> 24) & 0xff; - ptcores[1] = (cores >> 16) & 0xff; - ptcores[2] = (cores >> 8) & 0xff; - ptcores[3] = cores & 0xff; - } + cores = DIV_ROUND_UP(NR_CPUS, prom_count_smt_threads()); + prom_printf("Max number of cores passed to firmware: %lu (NR_CPUS = %lu)\n", + cores, NR_CPUS); + + ibm_architecture_vec.vec5.max_cpus = cpu_to_be32(cores); /* try calling the ibm,client-architecture-support method */ prom_printf("Calling ibm,client-architecture-support..."); if (call_prom_ret("call-method", 3, 2, &ret, ADDR("ibm,client-architecture-support"), root, - ADDR(ibm_architecture_vec)) == 0) { + ADDR(&ibm_architecture_vec)) == 0) { /* the call exists... */ if (ret) prom_printf("\nWARNING: ibm,client-architecture" @@ -2643,6 +2853,86 @@ #define fixup_device_tree_efika() #endif +#ifdef CONFIG_PPC_PASEMI_NEMO +/* + * CFE supplied on Nemo is broken in several ways, biggest + * problem is that it reassigns ISA interrupts to unused mpic ints. + * Add an interrupt-controller property for the io-bridge to use + * and correct the ints so we can attach them to an irq_domain + */ +static void __init fixup_device_tree_pasemi(void) +{ + u32 interrupts[2], parent, rval, val = 0; + char *name, *pci_name; + phandle iob, node; + + /* Find the root pci node */ + name = "/pxp@0,e0000000"; + iob = call_prom("finddevice", 1, 1, ADDR(name)); + if (!PHANDLE_VALID(iob)) + return; + + /* check if interrupt-controller node set yet */ + if (prom_getproplen(iob, "interrupt-controller") !=PROM_ERROR) + return; + + prom_printf("adding interrupt-controller property for SB600...\n"); + + prom_setprop(iob, name, "interrupt-controller", &val, 0); + + pci_name = "/pxp@0,e0000000/pci@11"; + node = call_prom("finddevice", 1, 1, ADDR(pci_name)); + parent = ADDR(iob); + + for( ; prom_next_node(&node); ) { + /* scan each node for one with an interrupt */ + if (!PHANDLE_VALID(node)) + continue; + + rval = prom_getproplen(node, "interrupts"); + if (rval == 0 || rval == PROM_ERROR) + continue; + + prom_getprop(node, "interrupts", &interrupts, sizeof(interrupts)); + if ((interrupts[0] < 212) || (interrupts[0] > 222)) + continue; + + /* found a node, update both interrupts and interrupt-parent */ + if ((interrupts[0] >= 212) && (interrupts[0] <= 215)) + interrupts[0] -= 203; + if ((interrupts[0] >= 216) && (interrupts[0] <= 220)) + interrupts[0] -= 213; + if (interrupts[0] == 221) + interrupts[0] = 14; + if (interrupts[0] == 222) + interrupts[0] = 8; + + prom_setprop(node, pci_name, "interrupts", interrupts, + sizeof(interrupts)); + prom_setprop(node, pci_name, "interrupt-parent", &parent, + sizeof(parent)); + } + + /* + * The io-bridge has device_type set to 'io-bridge' change it to 'isa' + * so that generic isa-bridge code can add the SB600 and its on-board + * peripherals. + */ + name = "/pxp@0,e0000000/io-bridge@0"; + iob = call_prom("finddevice", 1, 1, ADDR(name)); + if (!PHANDLE_VALID(iob)) + return; + + /* device_type is already set, just change it. */ + + prom_printf("Changing device_type of SB600 node...\n"); + + prom_setprop(iob, name, "device_type", "isa", sizeof("isa")); +} +#else /* !CONFIG_PPC_PASEMI_NEMO */ +static inline void fixup_device_tree_pasemi(void) { } +#endif + static void __init fixup_device_tree(void) { fixup_device_tree_maple(); @@ -2650,6 +2940,7 @@ fixup_device_tree_chrp(); fixup_device_tree_pmac(); fixup_device_tree_efika(); + fixup_device_tree_pasemi(); } static void __init prom_find_boot_cpu(void) @@ -2665,6 +2956,9 @@ cpu_pkg = call_prom("instance-to-package", 1, 1, prom_cpu); + if (!PHANDLE_VALID(cpu_pkg)) + return; + prom_getprop(cpu_pkg, "reg", &rval, sizeof(rval)); prom.cpu = be32_to_cpu(rval); @@ -2805,6 +3099,11 @@ */ prom_check_initrd(r3, r4); + /* + * Do early parsing of command line + */ + early_cmdline_parse(); + #if defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV) /* * On pSeries, inform the firmware about our capabilities @@ -2821,11 +3120,6 @@ copy_and_flush(0, kbase, 0x100, 0); /* - * Do early parsing of command line - */ - early_cmdline_parse(); - - /* * Initialize memory management within prom_init */ prom_init_mem(); --- linux-4.8.0.orig/arch/powerpc/kernel/ptrace.c +++ linux-4.8.0/arch/powerpc/kernel/ptrace.c @@ -39,6 +39,7 @@ #include #include #include +#include #define CREATE_TRACE_POINTS #include --- linux-4.8.0.orig/arch/powerpc/kernel/setup-common.c +++ linux-4.8.0/arch/powerpc/kernel/setup-common.c @@ -85,6 +85,7 @@ EXPORT_SYMBOL(machine_id); int boot_cpuid = -1; +int boot_hw_cpuid = -1; EXPORT_SYMBOL_GPL(boot_cpuid); unsigned long klimit = (unsigned long) _end; @@ -446,6 +447,7 @@ struct device_node *dn = NULL; int cpu = 0; int nthreads = 1; + bool boot_cpu_added = false; DBG("smp_setup_cpu_maps()\n"); @@ -472,6 +474,24 @@ } nthreads = len / sizeof(int); + /* + * If boot cpu hasn't been added to paca and there are only + * last nthreads slots available in paca array then wait + * for boot cpu to show up. + */ + if (!boot_cpu_added && (cpu + nthreads) >= nr_cpu_ids) { + int found = 0; + + DBG("Holding last nthreads paca slots for boot cpu\n"); + for (j = 0; j < nthreads && cpu < nr_cpu_ids; j++) { + if (boot_hw_cpuid == be32_to_cpu(intserv[j])) { + found = 1; + break; + } + } + if (!found) + continue; + } for (j = 0; j < nthreads && cpu < nr_cpu_ids; j++) { bool avail; @@ -487,6 +507,11 @@ set_cpu_present(cpu, avail); set_hard_smp_processor_id(cpu, be32_to_cpu(intserv[j])); set_cpu_possible(cpu, true); + if (boot_hw_cpuid == be32_to_cpu(intserv[j])) { + DBG("Boot cpu %d (hard id %d) added to paca\n", + cpu, be32_to_cpu(intserv[j])); + boot_cpu_added = true; + } cpu++; } } @@ -906,7 +931,7 @@ init_mm.context.pte_frag = NULL; #endif #ifdef CONFIG_SPAPR_TCE_IOMMU - mm_iommu_init(&init_mm.context); + mm_iommu_init(&init_mm); #endif irqstack_early_init(); exc_lvl_early_init(); --- linux-4.8.0.orig/arch/powerpc/kernel/setup_64.c +++ linux-4.8.0/arch/powerpc/kernel/setup_64.c @@ -226,17 +226,25 @@ if (firmware_has_feature(FW_FEATURE_OPAL)) opal_configure_cores(); - /* Enable AIL if supported, and we are in hypervisor mode */ - if (early_cpu_has_feature(CPU_FTR_HVMODE) && - early_cpu_has_feature(CPU_FTR_ARCH_207S)) { - unsigned long lpcr = mfspr(SPRN_LPCR); - mtspr(SPRN_LPCR, lpcr | LPCR_AIL_3); - } + /* AIL on native is done in cpu_ready_for_interrupts() */ } } static void cpu_ready_for_interrupts(void) { + /* + * Enable AIL if supported, and we are in hypervisor mode. This + * is called once for every processor. + * + * If we are not in hypervisor mode the job is done once for + * the whole partition in configure_exceptions(). + */ + if (early_cpu_has_feature(CPU_FTR_HVMODE) && + early_cpu_has_feature(CPU_FTR_ARCH_207S)) { + unsigned long lpcr = mfspr(SPRN_LPCR); + mtspr(SPRN_LPCR, lpcr | LPCR_AIL_3); + } + /* Set IR and DR in PACA MSR */ get_paca()->kernel_msr = MSR_KERNEL; } --- linux-4.8.0.orig/arch/powerpc/kernel/signal_32.c +++ linux-4.8.0/arch/powerpc/kernel/signal_32.c @@ -44,6 +44,7 @@ #include #include #include +#include #ifdef CONFIG_PPC64 #include "ppc32.h" #include --- linux-4.8.0.orig/arch/powerpc/kernel/signal_64.c +++ linux-4.8.0/arch/powerpc/kernel/signal_64.c @@ -35,6 +35,7 @@ #include #include #include +#include #include "signal.h" --- linux-4.8.0.orig/arch/powerpc/kernel/syscalls.c +++ linux-4.8.0/arch/powerpc/kernel/syscalls.c @@ -40,6 +40,7 @@ #include #include #include +#include static inline unsigned long do_mmap2(unsigned long addr, size_t len, unsigned long prot, unsigned long flags, --- linux-4.8.0.orig/arch/powerpc/kernel/time.c +++ linux-4.8.0/arch/powerpc/kernel/time.c @@ -73,6 +73,7 @@ #include #include #include +#include /* powerpc clocksource/clockevent code */ --- linux-4.8.0.orig/arch/powerpc/kernel/traps.c +++ linux-4.8.0/arch/powerpc/kernel/traps.c @@ -1383,7 +1383,6 @@ [FSCR_TM_LG] = "TM", [FSCR_EBB_LG] = "EBB", [FSCR_TAR_LG] = "TAR", - [FSCR_LM_LG] = "LM", }; char *facility = "unknown"; u64 value; @@ -1441,14 +1440,6 @@ emulate_single_step(regs); } return; - } else if ((status == FSCR_LM_LG) && cpu_has_feature(CPU_FTR_ARCH_300)) { - /* - * This process has touched LM, so turn it on forever - * for this process - */ - current->thread.fscr |= FSCR_LM; - mtspr(SPRN_FSCR, current->thread.fscr); - return; } if ((status < ARRAY_SIZE(facility_strings)) && --- linux-4.8.0.orig/arch/powerpc/kernel/vdso64/datapage.S +++ linux-4.8.0/arch/powerpc/kernel/vdso64/datapage.S @@ -59,7 +59,7 @@ bl V_LOCAL_FUNC(__get_datapage) mtlr r12 addi r3,r3,CFG_SYSCALL_MAP64 - cmpli cr0,r4,0 + cmpldi cr0,r4,0 crclr cr0*4+so beqlr li r0,NR_syscalls --- linux-4.8.0.orig/arch/powerpc/kernel/vdso64/gettimeofday.S +++ linux-4.8.0/arch/powerpc/kernel/vdso64/gettimeofday.S @@ -145,7 +145,7 @@ bne cr0,99f li r3,0 - cmpli cr0,r4,0 + cmpldi cr0,r4,0 crclr cr0*4+so beqlr lis r5,CLOCK_REALTIME_RES@h --- linux-4.8.0.orig/arch/powerpc/kvm/Kconfig +++ linux-4.8.0/arch/powerpc/kvm/Kconfig @@ -22,6 +22,9 @@ select ANON_INODES select HAVE_KVM_EVENTFD select SRCU + select KVM_VFIO + select IRQ_BYPASS_MANAGER + select HAVE_KVM_IRQ_BYPASS config KVM_BOOK3S_HANDLER bool --- linux-4.8.0.orig/arch/powerpc/kvm/Makefile +++ linux-4.8.0/arch/powerpc/kvm/Makefile @@ -7,16 +7,16 @@ ccflags-y := -Ivirt/kvm -Iarch/powerpc/kvm KVM := ../../../virt/kvm -common-objs-y = $(KVM)/kvm_main.o $(KVM)/coalesced_mmio.o \ - $(KVM)/eventfd.o +common-objs-y = $(KVM)/kvm_main.o $(KVM)/eventfd.o common-objs-$(CONFIG_KVM_VFIO) += $(KVM)/vfio.o +common-objs-$(CONFIG_KVM_MMIO) += $(KVM)/coalesced_mmio.o CFLAGS_e500_mmu.o := -I. CFLAGS_e500_mmu_host.o := -I. CFLAGS_emulate.o := -I. CFLAGS_emulate_loadstore.o := -I. -common-objs-y += powerpc.o emulate.o emulate_loadstore.o +common-objs-y += powerpc.o emulate_loadstore.o obj-$(CONFIG_KVM_EXIT_TIMING) += timing.o obj-$(CONFIG_KVM_BOOK3S_HANDLER) += book3s_exports.o @@ -24,6 +24,7 @@ kvm-e500-objs := \ $(common-objs-y) \ + emulate.o \ booke.o \ booke_emulate.o \ booke_interrupts.o \ @@ -35,6 +36,7 @@ kvm-e500mc-objs := \ $(common-objs-y) \ + emulate.o \ booke.o \ booke_emulate.o \ bookehv_interrupts.o \ @@ -61,9 +63,6 @@ book3s_32_mmu.o ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE -kvm-book3s_64-module-objs := \ - $(KVM)/coalesced_mmio.o - kvm-book3s_64-builtin-objs-$(CONFIG_KVM_BOOK3S_64_HANDLER) += \ book3s_rmhandlers.o endif @@ -89,11 +88,8 @@ kvm-book3s_64-objs-$(CONFIG_KVM_XICS) += \ book3s_xics.o -kvm-book3s_64-module-objs += \ - $(KVM)/kvm_main.o \ - $(KVM)/eventfd.o \ - powerpc.o \ - emulate_loadstore.o \ +kvm-book3s_64-module-objs := \ + $(common-objs-y) \ book3s.o \ book3s_64_vio.o \ book3s_rtas.o \ @@ -103,6 +99,7 @@ kvm-book3s_32-objs := \ $(common-objs-y) \ + emulate.o \ fpu.o \ book3s_paired_singles.o \ book3s.o \ --- linux-4.8.0.orig/arch/powerpc/kvm/book3s.c +++ linux-4.8.0/arch/powerpc/kvm/book3s.c @@ -52,8 +52,12 @@ { "dec", VCPU_STAT(dec_exits) }, { "ext_intr", VCPU_STAT(ext_intr_exits) }, { "queue_intr", VCPU_STAT(queue_intr) }, + { "halt_poll_success_ns", VCPU_STAT(halt_poll_success_ns) }, + { "halt_poll_fail_ns", VCPU_STAT(halt_poll_fail_ns) }, + { "halt_wait_ns", VCPU_STAT(halt_wait_ns) }, { "halt_successful_poll", VCPU_STAT(halt_successful_poll), }, { "halt_attempted_poll", VCPU_STAT(halt_attempted_poll), }, + { "halt_successful_wait", VCPU_STAT(halt_successful_wait) }, { "halt_poll_invalid", VCPU_STAT(halt_poll_invalid) }, { "halt_wakeup", VCPU_STAT(halt_wakeup) }, { "pf_storage", VCPU_STAT(pf_storage) }, @@ -64,6 +68,9 @@ { "ld_slow", VCPU_STAT(ld_slow) }, { "st", VCPU_STAT(st) }, { "st_slow", VCPU_STAT(st_slow) }, + { "pthru_all", VCPU_STAT(pthru_all) }, + { "pthru_host", VCPU_STAT(pthru_host) }, + { "pthru_bad_aff", VCPU_STAT(pthru_bad_aff) }, { NULL } }; @@ -592,9 +599,6 @@ case KVM_REG_PPC_BESCR: *val = get_reg_val(id, vcpu->arch.bescr); break; - case KVM_REG_PPC_VTB: - *val = get_reg_val(id, vcpu->arch.vtb); - break; case KVM_REG_PPC_IC: *val = get_reg_val(id, vcpu->arch.ic); break; @@ -666,9 +670,6 @@ case KVM_REG_PPC_BESCR: vcpu->arch.bescr = set_reg_val(id, *val); break; - case KVM_REG_PPC_VTB: - vcpu->arch.vtb = set_reg_val(id, *val); - break; case KVM_REG_PPC_IC: vcpu->arch.ic = set_reg_val(id, *val); break; --- linux-4.8.0.orig/arch/powerpc/kvm/book3s_32_mmu.c +++ linux-4.8.0/arch/powerpc/kvm/book3s_32_mmu.c @@ -224,7 +224,8 @@ ptem = kvmppc_mmu_book3s_32_get_ptem(sre, eaddr, primary); if(copy_from_user(pteg, (void __user *)ptegp, sizeof(pteg))) { - printk(KERN_ERR "KVM: Can't copy data from 0x%lx!\n", ptegp); + printk_ratelimited(KERN_ERR + "KVM: Can't copy data from 0x%lx!\n", ptegp); goto no_page_found; } --- linux-4.8.0.orig/arch/powerpc/kvm/book3s_64_mmu.c +++ linux-4.8.0/arch/powerpc/kvm/book3s_64_mmu.c @@ -265,7 +265,8 @@ goto no_page_found; if(copy_from_user(pteg, (void __user *)ptegp, sizeof(pteg))) { - printk(KERN_ERR "KVM can't copy data from 0x%lx!\n", ptegp); + printk_ratelimited(KERN_ERR + "KVM: Can't copy data from 0x%lx!\n", ptegp); goto no_page_found; } --- linux-4.8.0.orig/arch/powerpc/kvm/book3s_64_mmu_hv.c +++ linux-4.8.0/arch/powerpc/kvm/book3s_64_mmu_hv.c @@ -88,6 +88,8 @@ /* 128 (2**7) bytes in each HPTEG */ kvm->arch.hpt_mask = (1ul << (order - 7)) - 1; + atomic64_set(&kvm->arch.mmio_update, 0); + /* Allocate reverse map array */ rev = vmalloc(sizeof(struct revmap_entry) * kvm->arch.hpt_npte); if (!rev) { @@ -255,7 +257,7 @@ kvmppc_set_msr(vcpu, msr); } -long kvmppc_virtmode_do_h_enter(struct kvm *kvm, unsigned long flags, +static long kvmppc_virtmode_do_h_enter(struct kvm *kvm, unsigned long flags, long pte_index, unsigned long pteh, unsigned long ptel, unsigned long *pte_idx_ret) { @@ -312,7 +314,7 @@ struct kvmppc_slb *slbe; unsigned long slb_v; unsigned long pp, key; - unsigned long v, gr; + unsigned long v, orig_v, gr; __be64 *hptep; int index; int virtmode = vcpu->arch.shregs.msr & (data ? MSR_DR : MSR_IR); @@ -337,10 +339,12 @@ return -ENOENT; } hptep = (__be64 *)(kvm->arch.hpt_virt + (index << 4)); - v = be64_to_cpu(hptep[0]) & ~HPTE_V_HVLOCK; + v = orig_v = be64_to_cpu(hptep[0]) & ~HPTE_V_HVLOCK; + if (cpu_has_feature(CPU_FTR_ARCH_300)) + v = hpte_new_to_old_v(v, be64_to_cpu(hptep[1])); gr = kvm->arch.revmap[index].guest_rpte; - unlock_hpte(hptep, v); + unlock_hpte(hptep, orig_v); preempt_enable(); gpte->eaddr = eaddr; @@ -438,6 +442,7 @@ { struct kvm *kvm = vcpu->kvm; unsigned long hpte[3], r; + unsigned long hnow_v, hnow_r; __be64 *hptep; unsigned long mmu_seq, psize, pte_size; unsigned long gpa_base, gfn_base; @@ -451,6 +456,7 @@ unsigned int writing, write_ok; struct vm_area_struct *vma; unsigned long rcbits; + long mmio_update; /* * Real-mode code has already searched the HPT and found the @@ -460,6 +466,19 @@ */ if (ea != vcpu->arch.pgfault_addr) return RESUME_GUEST; + + if (vcpu->arch.pgfault_cache) { + mmio_update = atomic64_read(&kvm->arch.mmio_update); + if (mmio_update == vcpu->arch.pgfault_cache->mmio_update) { + r = vcpu->arch.pgfault_cache->rpte; + psize = hpte_page_size(vcpu->arch.pgfault_hpte[0], r); + gpa_base = r & HPTE_R_RPN & ~(psize - 1); + gfn_base = gpa_base >> PAGE_SHIFT; + gpa = gpa_base | (ea & (psize - 1)); + return kvmppc_hv_emulate_mmio(run, vcpu, gpa, ea, + dsisr & DSISR_ISSTORE); + } + } index = vcpu->arch.pgfault_index; hptep = (__be64 *)(kvm->arch.hpt_virt + (index << 4)); rev = &kvm->arch.revmap[index]; @@ -472,6 +491,10 @@ unlock_hpte(hptep, hpte[0]); preempt_enable(); + if (cpu_has_feature(CPU_FTR_ARCH_300)) { + hpte[0] = hpte_new_to_old_v(hpte[0], hpte[1]); + hpte[1] = hpte_new_to_old_r(hpte[1]); + } if (hpte[0] != vcpu->arch.pgfault_hpte[0] || hpte[1] != vcpu->arch.pgfault_hpte[1]) return RESUME_GUEST; @@ -575,16 +598,22 @@ */ if (psize < PAGE_SIZE) psize = PAGE_SIZE; - r = (r & ~(HPTE_R_PP0 - psize)) | ((pfn << PAGE_SHIFT) & ~(psize - 1)); + r = (r & HPTE_R_KEY_HI) | (r & ~(HPTE_R_PP0 - psize)) | + ((pfn << PAGE_SHIFT) & ~(psize - 1)); if (hpte_is_writable(r) && !write_ok) r = hpte_make_readonly(r); ret = RESUME_GUEST; preempt_disable(); while (!try_lock_hpte(hptep, HPTE_V_HVLOCK)) cpu_relax(); - if ((be64_to_cpu(hptep[0]) & ~HPTE_V_HVLOCK) != hpte[0] || - be64_to_cpu(hptep[1]) != hpte[1] || - rev->guest_rpte != hpte[2]) + hnow_v = be64_to_cpu(hptep[0]); + hnow_r = be64_to_cpu(hptep[1]); + if (cpu_has_feature(CPU_FTR_ARCH_300)) { + hnow_v = hpte_new_to_old_v(hnow_v, hnow_r); + hnow_r = hpte_new_to_old_r(hnow_r); + } + if ((hnow_v & ~HPTE_V_HVLOCK) != hpte[0] || hnow_r != hpte[1] || + rev->guest_rpte != hpte[2]) /* HPTE has been changed under us; let the guest retry */ goto out_unlock; hpte[0] = (hpte[0] & ~HPTE_V_ABSENT) | HPTE_V_VALID; @@ -615,6 +644,10 @@ kvmppc_add_revmap_chain(kvm, rev, rmap, index, 0); } + if (cpu_has_feature(CPU_FTR_ARCH_300)) { + r = hpte_old_to_new_r(hpte[0], r); + hpte[0] = hpte_old_to_new_v(hpte[0]); + } hptep[1] = cpu_to_be64(r); eieio(); __unlock_hpte(hptep, hpte[0]); @@ -758,6 +791,7 @@ hpte_rpn(ptel, psize) == gfn) { hptep[0] |= cpu_to_be64(HPTE_V_ABSENT); kvmppc_invalidate_hpte(kvm, hptep, i); + hptep[1] &= ~cpu_to_be64(HPTE_R_KEY_HI | HPTE_R_KEY_LO); /* Harvest R and C */ rcbits = be64_to_cpu(hptep[1]) & (HPTE_R_R | HPTE_R_C); *rmapp |= rcbits << KVMPPC_RMAP_RC_SHIFT; @@ -1165,7 +1199,7 @@ unsigned long *hpte, struct revmap_entry *revp, int want_valid, int first_pass) { - unsigned long v, r; + unsigned long v, r, hr; unsigned long rcbits_unset; int ok = 1; int valid, dirty; @@ -1192,6 +1226,11 @@ while (!try_lock_hpte(hptp, HPTE_V_HVLOCK)) cpu_relax(); v = be64_to_cpu(hptp[0]); + hr = be64_to_cpu(hptp[1]); + if (cpu_has_feature(CPU_FTR_ARCH_300)) { + v = hpte_new_to_old_v(v, hr); + hr = hpte_new_to_old_r(hr); + } /* re-evaluate valid and dirty from synchronized HPTE value */ valid = !!(v & HPTE_V_VALID); @@ -1199,8 +1238,8 @@ /* Harvest R and C into guest view if necessary */ rcbits_unset = ~revp->guest_rpte & (HPTE_R_R | HPTE_R_C); - if (valid && (rcbits_unset & be64_to_cpu(hptp[1]))) { - revp->guest_rpte |= (be64_to_cpu(hptp[1]) & + if (valid && (rcbits_unset & hr)) { + revp->guest_rpte |= (hr & (HPTE_R_R | HPTE_R_C)) | HPTE_GR_MODIFIED; dirty = 1; } @@ -1608,7 +1647,7 @@ return ret; } -ssize_t debugfs_htab_write(struct file *file, const char __user *buf, +static ssize_t debugfs_htab_write(struct file *file, const char __user *buf, size_t len, loff_t *ppos) { return -EACCES; --- linux-4.8.0.orig/arch/powerpc/kvm/book3s_64_vio_hv.c +++ linux-4.8.0/arch/powerpc/kvm/book3s_64_vio_hv.c @@ -39,7 +39,6 @@ #include #include #include -#include #define TCES_PER_PAGE (PAGE_SIZE / sizeof(u64)) --- linux-4.8.0.orig/arch/powerpc/kvm/book3s_emulate.c +++ linux-4.8.0/arch/powerpc/kvm/book3s_emulate.c @@ -498,6 +498,7 @@ case SPRN_MMCR0: case SPRN_MMCR1: case SPRN_MMCR2: + case SPRN_UMMCR2: #endif break; unprivileged: @@ -579,7 +580,7 @@ *spr_val = vcpu->arch.spurr; break; case SPRN_VTB: - *spr_val = vcpu->arch.vtb; + *spr_val = to_book3s(vcpu)->vtb; break; case SPRN_IC: *spr_val = vcpu->arch.ic; @@ -640,6 +641,7 @@ case SPRN_MMCR0: case SPRN_MMCR1: case SPRN_MMCR2: + case SPRN_UMMCR2: case SPRN_TIR: #endif *spr_val = 0; --- linux-4.8.0.orig/arch/powerpc/kvm/book3s_hv.c +++ linux-4.8.0/arch/powerpc/kvm/book3s_hv.c @@ -53,11 +53,19 @@ #include #include #include +#include +#include +#include +#include #include #include #include #include +#include +#include #include +#include +#include #include "book3s.h" @@ -70,6 +78,8 @@ /* Used to indicate that a guest page fault needs to be handled */ #define RESUME_PAGE_FAULT (RESUME_GUEST | RESUME_FLAG_ARCH1) +/* Used to indicate that a guest passthrough interrupt needs to be handled */ +#define RESUME_PASSTHROUGH (RESUME_GUEST | RESUME_FLAG_ARCH2) /* Used as a "null" value for timebase values */ #define TB_NIL (~(u64)0) @@ -89,6 +99,10 @@ .get = param_get_int, }; +module_param_cb(kvm_irq_bypass, &module_param_ops, &kvm_irq_bypass, + S_IRUGO | S_IWUSR); +MODULE_PARM_DESC(kvm_irq_bypass, "Bypass passthrough interrupt optimization"); + module_param_cb(h_ipi_redirect, &module_param_ops, &h_ipi_redirect, S_IRUGO | S_IWUSR); MODULE_PARM_DESC(h_ipi_redirect, "Redirect H_IPI wakeup to a free host core"); @@ -97,14 +111,43 @@ static void kvmppc_end_cede(struct kvm_vcpu *vcpu); static int kvmppc_hv_setup_htab_rma(struct kvm_vcpu *vcpu); +static inline struct kvm_vcpu *next_runnable_thread(struct kvmppc_vcore *vc, + int *ip) +{ + int i = *ip; + struct kvm_vcpu *vcpu; + + while (++i < MAX_SMT_THREADS) { + vcpu = READ_ONCE(vc->runnable_threads[i]); + if (vcpu) { + *ip = i; + return vcpu; + } + } + return NULL; +} + +/* Used to traverse the list of runnable threads for a given vcore */ +#define for_each_runnable_thread(i, vcpu, vc) \ + for (i = -1; (vcpu = next_runnable_thread(vc, &i)); ) + static bool kvmppc_ipi_thread(int cpu) { + unsigned long msg = PPC_DBELL_TYPE(PPC_DBELL_SERVER); + + /* On POWER9 we can use msgsnd to IPI any cpu */ + if (cpu_has_feature(CPU_FTR_ARCH_300)) { + msg |= get_hard_smp_processor_id(cpu); + smp_mb(); + __asm__ __volatile__ (PPC_MSGSND(%0) : : "r" (msg)); + return true; + } + /* On POWER8 for IPIs to threads in the same core, use msgsnd */ if (cpu_has_feature(CPU_FTR_ARCH_207S)) { preempt_disable(); if (cpu_first_thread_sibling(cpu) == cpu_first_thread_sibling(smp_processor_id())) { - unsigned long msg = PPC_DBELL_TYPE(PPC_DBELL_SERVER); msg |= cpu_thread_in_core(cpu); smp_mb(); __asm__ __volatile__ (PPC_MSGSND(%0) : : "r" (msg)); @@ -115,8 +158,12 @@ } #if defined(CONFIG_PPC_ICP_NATIVE) && defined(CONFIG_SMP) - if (cpu >= 0 && cpu < nr_cpu_ids && paca[cpu].kvm_hstate.xics_phys) { - xics_wake_cpu(cpu); + if (cpu >= 0 && cpu < nr_cpu_ids) { + if (paca[cpu].kvm_hstate.xics_phys) { + xics_wake_cpu(cpu); + return true; + } + opal_int_set_mfrr(get_hard_smp_processor_id(cpu), IPI_PRIORITY); return true; } #endif @@ -252,41 +299,54 @@ vcpu->arch.pvr = pvr; } +/* Dummy value used in computing PCR value below */ +#define PCR_ARCH_300 (PCR_ARCH_207 << 1) + static int kvmppc_set_arch_compat(struct kvm_vcpu *vcpu, u32 arch_compat) { - unsigned long pcr = 0; + unsigned long host_pcr_bit = 0, guest_pcr_bit = 0; struct kvmppc_vcore *vc = vcpu->arch.vcore; + /* We can (emulate) our own architecture version and anything older */ + if (cpu_has_feature(CPU_FTR_ARCH_300)) + host_pcr_bit = PCR_ARCH_300; + else if (cpu_has_feature(CPU_FTR_ARCH_207S)) + host_pcr_bit = PCR_ARCH_207; + else if (cpu_has_feature(CPU_FTR_ARCH_206)) + host_pcr_bit = PCR_ARCH_206; + else + host_pcr_bit = PCR_ARCH_205; + + /* Determine lowest PCR bit needed to run guest in given PVR level */ + guest_pcr_bit = host_pcr_bit; if (arch_compat) { switch (arch_compat) { case PVR_ARCH_205: - /* - * If an arch bit is set in PCR, all the defined - * higher-order arch bits also have to be set. - */ - pcr = PCR_ARCH_206 | PCR_ARCH_205; + guest_pcr_bit = PCR_ARCH_205; break; case PVR_ARCH_206: case PVR_ARCH_206p: - pcr = PCR_ARCH_206; + guest_pcr_bit = PCR_ARCH_206; break; case PVR_ARCH_207: + guest_pcr_bit = PCR_ARCH_207; + break; + case PVR_ARCH_300: + guest_pcr_bit = PCR_ARCH_300; break; default: return -EINVAL; } - - if (!cpu_has_feature(CPU_FTR_ARCH_207S)) { - /* POWER7 can't emulate POWER8 */ - if (!(pcr & PCR_ARCH_206)) - return -EINVAL; - pcr &= ~PCR_ARCH_206; - } } + /* Check requested PCR bits don't exceed our capabilities */ + if (guest_pcr_bit > host_pcr_bit) + return -EINVAL; + spin_lock(&vc->lock); vc->arch_compat = arch_compat; - vc->pcr = pcr; + /* Set all PCR bits for which guest_pcr_bit <= bit < host_pcr_bit */ + vc->pcr = host_pcr_bit - guest_pcr_bit; spin_unlock(&vc->lock); return 0; @@ -713,12 +773,8 @@ } tvcpu->arch.prodded = 1; smp_mb(); - if (vcpu->arch.ceded) { - if (swait_active(&vcpu->wq)) { - swake_up(&vcpu->wq); - vcpu->stat.halt_wakeup++; - } - } + if (tvcpu->arch.ceded) + kvmppc_fast_vcpu_kick_hv(tvcpu); break; case H_CONFER: target = kvmppc_get_gpr(vcpu, 4); @@ -898,6 +954,7 @@ break; case BOOK3S_INTERRUPT_EXTERNAL: case BOOK3S_INTERRUPT_H_DOORBELL: + case BOOK3S_INTERRUPT_H_VIRT: vcpu->stat.ext_intr_exits++; r = RESUME_GUEST; break; @@ -991,6 +1048,9 @@ kvmppc_core_queue_program(vcpu, SRR1_PROGILL); r = RESUME_GUEST; break; + case BOOK3S_INTERRUPT_HV_RM_HARD: + r = RESUME_PASSTHROUGH; + break; default: kvmppc_dump_regs(vcpu); printk(KERN_EMERG "trap=0x%x | pc=0x%lx | msr=0x%llx\n", @@ -1149,6 +1209,9 @@ case KVM_REG_PPC_DPDES: *val = get_reg_val(id, vcpu->arch.vcore->dpdes); break; + case KVM_REG_PPC_VTB: + *val = get_reg_val(id, vcpu->arch.vcore->vtb); + break; case KVM_REG_PPC_DAWR: *val = get_reg_val(id, vcpu->arch.dawr); break; @@ -1176,6 +1239,12 @@ case KVM_REG_PPC_WORT: *val = get_reg_val(id, vcpu->arch.wort); break; + case KVM_REG_PPC_TIDR: + *val = get_reg_val(id, vcpu->arch.tid); + break; + case KVM_REG_PPC_PSSCR: + *val = get_reg_val(id, vcpu->arch.psscr); + break; case KVM_REG_PPC_VPA_ADDR: spin_lock(&vcpu->arch.vpa_update_lock); *val = get_reg_val(id, vcpu->arch.vpa.next_gpa); @@ -1235,6 +1304,9 @@ case KVM_REG_PPC_TM_CR: *val = get_reg_val(id, vcpu->arch.cr_tm); break; + case KVM_REG_PPC_TM_XER: + *val = get_reg_val(id, vcpu->arch.xer_tm); + break; case KVM_REG_PPC_TM_LR: *val = get_reg_val(id, vcpu->arch.lr_tm); break; @@ -1341,6 +1413,9 @@ case KVM_REG_PPC_DPDES: vcpu->arch.vcore->dpdes = set_reg_val(id, *val); break; + case KVM_REG_PPC_VTB: + vcpu->arch.vcore->vtb = set_reg_val(id, *val); + break; case KVM_REG_PPC_DAWR: vcpu->arch.dawr = set_reg_val(id, *val); break; @@ -1371,6 +1446,12 @@ case KVM_REG_PPC_WORT: vcpu->arch.wort = set_reg_val(id, *val); break; + case KVM_REG_PPC_TIDR: + vcpu->arch.tid = set_reg_val(id, *val); + break; + case KVM_REG_PPC_PSSCR: + vcpu->arch.psscr = set_reg_val(id, *val) & PSSCR_GUEST_VIS; + break; case KVM_REG_PPC_VPA_ADDR: addr = set_reg_val(id, *val); r = -EINVAL; @@ -1442,6 +1523,9 @@ case KVM_REG_PPC_TM_CR: vcpu->arch.cr_tm = set_reg_val(id, *val); break; + case KVM_REG_PPC_TM_XER: + vcpu->arch.xer_tm = set_reg_val(id, *val); + break; case KVM_REG_PPC_TM_LR: vcpu->arch.lr_tm = set_reg_val(id, *val); break; @@ -1484,6 +1568,20 @@ return r; } +/* + * On POWER9, threads are independent and can be in different partitions. + * Therefore we consider each thread to be a subcore. + * There is a restriction that all threads have to be in the same + * MMU mode (radix or HPT), unfortunately, but since we only support + * HPT guests on a HPT host so far, that isn't an impediment yet. + */ +static int threads_per_vcore(void) +{ + if (cpu_has_feature(CPU_FTR_ARCH_300)) + return 1; + return threads_per_subcore; +} + static struct kvmppc_vcore *kvmppc_vcore_create(struct kvm *kvm, int core) { struct kvmppc_vcore *vcore; @@ -1493,13 +1591,12 @@ if (vcore == NULL) return NULL; - INIT_LIST_HEAD(&vcore->runnable_threads); spin_lock_init(&vcore->lock); spin_lock_init(&vcore->stoltb_lock); init_swait_queue_head(&vcore->wq); vcore->preempt_tb = TB_NIL; vcore->lpcr = kvm->arch.lpcr; - vcore->first_vcpuid = core * threads_per_subcore; + vcore->first_vcpuid = core * threads_per_vcore(); vcore->kvm = kvm; INIT_LIST_HEAD(&vcore->preempt_list); @@ -1662,7 +1759,7 @@ int core; struct kvmppc_vcore *vcore; - core = id / threads_per_subcore; + core = id / threads_per_vcore(); if (core >= KVM_MAX_VCORES) goto out; @@ -1802,7 +1899,7 @@ vcpu->arch.state = KVMPPC_VCPU_BUSY_IN_HOST; spin_unlock_irq(&vcpu->arch.tbacct_lock); --vc->n_runnable; - list_del(&vcpu->arch.run_list); + WRITE_ONCE(vc->runnable_threads[vcpu->arch.ptid], NULL); } static int kvmppc_grab_hwthread(int cpu) @@ -1880,7 +1977,10 @@ { int cpu = smp_processor_id(); int i, loops; + int n_threads = threads_per_vcore(); + if (n_threads <= 1) + return; for (loops = 0; loops < 1000000; ++loops) { /* * Check if all threads are finished. @@ -1888,17 +1988,17 @@ * and the thread clears it when finished, so we look * for any threads that still have a non-NULL vcore ptr. */ - for (i = 1; i < threads_per_subcore; ++i) + for (i = 1; i < n_threads; ++i) if (paca[cpu + i].kvm_hstate.kvm_vcore) break; - if (i == threads_per_subcore) { + if (i == n_threads) { HMT_medium(); return; } HMT_low(); } HMT_medium(); - for (i = 1; i < threads_per_subcore; ++i) + for (i = 1; i < n_threads; ++i) if (paca[cpu + i].kvm_hstate.kvm_vcore) pr_err("KVM: CPU %d seems to be stuck\n", cpu + i); } @@ -1964,7 +2064,7 @@ vc->vcore_state = VCORE_PREEMPT; vc->pcpu = smp_processor_id(); - if (vc->num_threads < threads_per_subcore) { + if (vc->num_threads < threads_per_vcore()) { spin_lock(&lp->lock); list_add_tail(&vc->preempt_list, &lp->list); spin_unlock(&lp->lock); @@ -2048,66 +2148,6 @@ vc->conferring_threads = 0; } -/* - * See if the existing subcores can be split into 3 (or fewer) subcores - * of at most two threads each, so we can fit in another vcore. This - * assumes there are at most two subcores and at most 6 threads in total. - */ -static bool can_split_piggybacked_subcores(struct core_info *cip) -{ - int sub, new_sub; - int large_sub = -1; - int thr; - int n_subcores = cip->n_subcores; - struct kvmppc_vcore *vc, *vcnext; - struct kvmppc_vcore *master_vc = NULL; - - for (sub = 0; sub < cip->n_subcores; ++sub) { - if (cip->subcore_threads[sub] <= 2) - continue; - if (large_sub >= 0) - return false; - large_sub = sub; - vc = list_first_entry(&cip->vcs[sub], struct kvmppc_vcore, - preempt_list); - if (vc->num_threads > 2) - return false; - n_subcores += (cip->subcore_threads[sub] - 1) >> 1; - } - if (large_sub < 0 || !subcore_config_ok(n_subcores + 1, 2)) - return false; - - /* - * Seems feasible, so go through and move vcores to new subcores. - * Note that when we have two or more vcores in one subcore, - * all those vcores must have only one thread each. - */ - new_sub = cip->n_subcores; - thr = 0; - sub = large_sub; - list_for_each_entry_safe(vc, vcnext, &cip->vcs[sub], preempt_list) { - if (thr >= 2) { - list_del(&vc->preempt_list); - list_add_tail(&vc->preempt_list, &cip->vcs[new_sub]); - /* vc->num_threads must be 1 */ - if (++cip->subcore_threads[new_sub] == 1) { - cip->subcore_vm[new_sub] = vc->kvm; - init_master_vcore(vc); - master_vc = vc; - ++cip->n_subcores; - } else { - vc->master_vcore = master_vc; - ++new_sub; - } - } - thr += vc->num_threads; - } - cip->subcore_threads[large_sub] = 2; - cip->max_subcore_threads = 2; - - return true; -} - static bool can_dynamic_split(struct kvmppc_vcore *vc, struct core_info *cip) { int n_threads = vc->num_threads; @@ -2118,23 +2158,9 @@ if (n_threads < cip->max_subcore_threads) n_threads = cip->max_subcore_threads; - if (subcore_config_ok(cip->n_subcores + 1, n_threads)) { - cip->max_subcore_threads = n_threads; - } else if (cip->n_subcores <= 2 && cip->total_threads <= 6 && - vc->num_threads <= 2) { - /* - * We may be able to fit another subcore in by - * splitting an existing subcore with 3 or 4 - * threads into two 2-thread subcores, or one - * with 5 or 6 threads into three subcores. - * We can only do this if those subcores have - * piggybacked virtual cores. - */ - if (!can_split_piggybacked_subcores(cip)) - return false; - } else { + if (!subcore_config_ok(cip->n_subcores + 1, n_threads)) return false; - } + cip->max_subcore_threads = n_threads; sub = cip->n_subcores; ++cip->n_subcores; @@ -2142,45 +2168,7 @@ cip->subcore_threads[sub] = vc->num_threads; cip->subcore_vm[sub] = vc->kvm; init_master_vcore(vc); - list_del(&vc->preempt_list); - list_add_tail(&vc->preempt_list, &cip->vcs[sub]); - - return true; -} - -static bool can_piggyback_subcore(struct kvmppc_vcore *pvc, - struct core_info *cip, int sub) -{ - struct kvmppc_vcore *vc; - int n_thr; - - vc = list_first_entry(&cip->vcs[sub], struct kvmppc_vcore, - preempt_list); - - /* require same VM and same per-core reg values */ - if (pvc->kvm != vc->kvm || - pvc->tb_offset != vc->tb_offset || - pvc->pcr != vc->pcr || - pvc->lpcr != vc->lpcr) - return false; - - /* P8 guest with > 1 thread per core would see wrong TIR value */ - if (cpu_has_feature(CPU_FTR_ARCH_207S) && - (vc->num_threads > 1 || pvc->num_threads > 1)) - return false; - - n_thr = cip->subcore_threads[sub] + pvc->num_threads; - if (n_thr > cip->max_subcore_threads) { - if (!subcore_config_ok(cip->n_subcores, n_thr)) - return false; - cip->max_subcore_threads = n_thr; - } - - cip->total_threads += pvc->num_threads; - cip->subcore_threads[sub] = n_thr; - pvc->master_vcore = vc; - list_del(&pvc->preempt_list); - list_add_tail(&pvc->preempt_list, &cip->vcs[sub]); + list_move_tail(&vc->preempt_list, &cip->vcs[sub]); return true; } @@ -2192,27 +2180,18 @@ static bool can_piggyback(struct kvmppc_vcore *pvc, struct core_info *cip, int target_threads) { - int sub; - if (cip->total_threads + pvc->num_threads > target_threads) return false; - for (sub = 0; sub < cip->n_subcores; ++sub) - if (cip->subcore_threads[sub] && - can_piggyback_subcore(pvc, cip, sub)) - return true; - if (can_dynamic_split(pvc, cip)) - return true; - - return false; + return can_dynamic_split(pvc, cip); } static void prepare_threads(struct kvmppc_vcore *vc) { - struct kvm_vcpu *vcpu, *vnext; + int i; + struct kvm_vcpu *vcpu; - list_for_each_entry_safe(vcpu, vnext, &vc->runnable_threads, - arch.run_list) { + for_each_runnable_thread(i, vcpu, vc) { if (signal_pending(vcpu->arch.run_task)) vcpu->arch.ret = -EINTR; else if (vcpu->arch.vpa.update_pending || @@ -2259,15 +2238,14 @@ static void post_guest_process(struct kvmppc_vcore *vc, bool is_master) { - int still_running = 0; + int still_running = 0, i; u64 now; long ret; - struct kvm_vcpu *vcpu, *vnext; + struct kvm_vcpu *vcpu; spin_lock(&vc->lock); now = get_tb(); - list_for_each_entry_safe(vcpu, vnext, &vc->runnable_threads, - arch.run_list) { + for_each_runnable_thread(i, vcpu, vc) { /* cancel pending dec exception if dec is positive */ if (now < vcpu->arch.dec_expires && kvmppc_core_pending_dec(vcpu)) @@ -2307,8 +2285,8 @@ } if (vc->n_runnable > 0 && vc->runner == NULL) { /* make sure there's a candidate runner awake */ - vcpu = list_first_entry(&vc->runnable_threads, - struct kvm_vcpu, arch.run_list); + i = -1; + vcpu = next_runnable_thread(vc, &i); wake_up(&vcpu->arch.cpu_run); } } @@ -2320,12 +2298,12 @@ * enter the guest. Only do this if it is the primary thread of the * core (not if a subcore) that is entering the guest. */ -static inline void kvmppc_clear_host_core(int cpu) +static inline int kvmppc_clear_host_core(unsigned int cpu) { int core; if (!kvmppc_host_rm_ops_hv || cpu_thread_in_core(cpu)) - return; + return 0; /* * Memory barrier can be omitted here as we will do a smp_wmb() * later in kvmppc_start_thread and we need ensure that state is @@ -2333,6 +2311,7 @@ */ core = cpu >> threads_shift; kvmppc_host_rm_ops_hv->rm_core[core].rm_state.in_host = 0; + return 0; } /* @@ -2340,12 +2319,12 @@ * Only need to do this if it is the primary thread of the core that is * exiting. */ -static inline void kvmppc_set_host_core(int cpu) +static inline int kvmppc_set_host_core(unsigned int cpu) { int core; if (!kvmppc_host_rm_ops_hv || cpu_thread_in_core(cpu)) - return; + return 0; /* * Memory barrier can be omitted here because we do a spin_unlock @@ -2353,6 +2332,7 @@ */ core = cpu >> threads_shift; kvmppc_host_rm_ops_hv->rm_core[core].rm_state.in_host = 1; + return 0; } /* @@ -2361,7 +2341,7 @@ */ static noinline void kvmppc_run_core(struct kvmppc_vcore *vc) { - struct kvm_vcpu *vcpu, *vnext; + struct kvm_vcpu *vcpu; int i; int srcu_idx; struct core_info core_info; @@ -2373,6 +2353,7 @@ unsigned long cmd_bit, stat_bit; int pcpu, thr; int target_threads; + int controlled_threads; /* * Remove from the list any threads that have a signal pending @@ -2391,14 +2372,20 @@ vc->preempt_tb = TB_NIL; /* + * Number of threads that we will be controlling: the same as + * the number of threads per subcore, except on POWER9, + * where it's 1 because the threads are (mostly) independent. + */ + controlled_threads = threads_per_vcore(); + + /* * Make sure we are running on primary threads, and that secondary * threads are offline. Also check if the number of threads in this * guest are greater than the current system threads per guest. */ - if ((threads_per_core > 1) && + if ((controlled_threads > 1) && ((vc->num_threads > threads_per_subcore) || !on_primary_thread())) { - list_for_each_entry_safe(vcpu, vnext, &vc->runnable_threads, - arch.run_list) { + for_each_runnable_thread(i, vcpu, vc) { vcpu->arch.ret = -EBUSY; kvmppc_remove_runnable(vc, vcpu); wake_up(&vcpu->arch.cpu_run); @@ -2412,7 +2399,7 @@ */ init_core_info(&core_info, vc); pcpu = smp_processor_id(); - target_threads = threads_per_subcore; + target_threads = controlled_threads; if (target_smt_mode && target_smt_mode < target_threads) target_threads = target_smt_mode; if (vc->num_threads < target_threads) @@ -2448,7 +2435,7 @@ smp_wmb(); } pcpu = smp_processor_id(); - for (thr = 0; thr < threads_per_subcore; ++thr) + for (thr = 0; thr < controlled_threads; ++thr) paca[pcpu + thr].kvm_hstate.kvm_split_mode = sip; /* Initiate micro-threading (split-core) if required */ @@ -2477,8 +2464,7 @@ active |= 1 << thr; list_for_each_entry(pvc, &core_info.vcs[sub], preempt_list) { pvc->pcpu = pcpu + thr; - list_for_each_entry(vcpu, &pvc->runnable_threads, - arch.run_list) { + for_each_runnable_thread(i, vcpu, pvc) { kvmppc_start_thread(vcpu, pvc); kvmppc_create_dtl_entry(vcpu, pvc); trace_kvm_guest_enter(vcpu); @@ -2559,7 +2545,7 @@ } /* Let secondaries go back to the offline loop */ - for (i = 0; i < threads_per_subcore; ++i) { + for (i = 0; i < controlled_threads; ++i) { kvmppc_release_hwthread(pcpu + i); if (sip && sip->napped[i]) kvmppc_ipi_thread(pcpu + i); @@ -2604,34 +2590,91 @@ finish_wait(&vcpu->arch.cpu_run, &wait); } +static void grow_halt_poll_ns(struct kvmppc_vcore *vc) +{ + /* 10us base */ + if (vc->halt_poll_ns == 0 && halt_poll_ns_grow) + vc->halt_poll_ns = 10000; + else + vc->halt_poll_ns *= halt_poll_ns_grow; +} + +static void shrink_halt_poll_ns(struct kvmppc_vcore *vc) +{ + if (halt_poll_ns_shrink == 0) + vc->halt_poll_ns = 0; + else + vc->halt_poll_ns /= halt_poll_ns_shrink; +} + +/* + * Check to see if any of the runnable vcpus on the vcore have pending + * exceptions or are no longer ceded + */ +static int kvmppc_vcore_check_block(struct kvmppc_vcore *vc) +{ + struct kvm_vcpu *vcpu; + int i; + + for_each_runnable_thread(i, vcpu, vc) { + if (vcpu->arch.pending_exceptions || !vcpu->arch.ceded || + vcpu->arch.prodded) + return 1; + } + + return 0; +} + /* * All the vcpus in this vcore are idle, so wait for a decrementer * or external interrupt to one of the vcpus. vc->lock is held. */ static void kvmppc_vcore_blocked(struct kvmppc_vcore *vc) { - struct kvm_vcpu *vcpu; + ktime_t cur, start_poll, start_wait; int do_sleep = 1; + u64 block_ns; DECLARE_SWAITQUEUE(wait); - prepare_to_swait(&vc->wq, &wait, TASK_INTERRUPTIBLE); + /* Poll for pending exceptions and ceded state */ + cur = start_poll = ktime_get(); + if (vc->halt_poll_ns) { + ktime_t stop = ktime_add_ns(start_poll, vc->halt_poll_ns); + ++vc->runner->stat.halt_attempted_poll; - /* - * Check one last time for pending exceptions and ceded state after - * we put ourselves on the wait queue - */ - list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list) { - if (vcpu->arch.pending_exceptions || !vcpu->arch.ceded) { - do_sleep = 0; - break; + vc->vcore_state = VCORE_POLLING; + spin_unlock(&vc->lock); + + do { + if (kvmppc_vcore_check_block(vc)) { + do_sleep = 0; + break; + } + cur = ktime_get(); + } while (single_task_running() && ktime_before(cur, stop)); + + spin_lock(&vc->lock); + vc->vcore_state = VCORE_INACTIVE; + + if (!do_sleep) { + ++vc->runner->stat.halt_successful_poll; + goto out; } } - if (!do_sleep) { + prepare_to_swait(&vc->wq, &wait, TASK_INTERRUPTIBLE); + + if (kvmppc_vcore_check_block(vc)) { finish_swait(&vc->wq, &wait); - return; + do_sleep = 0; + /* If we polled, count this as a successful poll */ + if (vc->halt_poll_ns) + ++vc->runner->stat.halt_successful_poll; + goto out; } + start_wait = ktime_get(); + vc->vcore_state = VCORE_SLEEPING; trace_kvmppc_vcore_blocked(vc, 0); spin_unlock(&vc->lock); @@ -2640,13 +2683,54 @@ spin_lock(&vc->lock); vc->vcore_state = VCORE_INACTIVE; trace_kvmppc_vcore_blocked(vc, 1); + ++vc->runner->stat.halt_successful_wait; + + cur = ktime_get(); + +out: + block_ns = ktime_to_ns(cur) - ktime_to_ns(start_poll); + + /* Attribute wait time */ + if (do_sleep) { + vc->runner->stat.halt_wait_ns += + ktime_to_ns(cur) - ktime_to_ns(start_wait); + /* Attribute failed poll time */ + if (vc->halt_poll_ns) + vc->runner->stat.halt_poll_fail_ns += + ktime_to_ns(start_wait) - + ktime_to_ns(start_poll); + } else { + /* Attribute successful poll time */ + if (vc->halt_poll_ns) + vc->runner->stat.halt_poll_success_ns += + ktime_to_ns(cur) - + ktime_to_ns(start_poll); + } + + /* Adjust poll time */ + if (halt_poll_ns) { + if (block_ns <= vc->halt_poll_ns) + ; + /* We slept and blocked for longer than the max halt time */ + else if (vc->halt_poll_ns && block_ns > halt_poll_ns) + shrink_halt_poll_ns(vc); + /* We slept and our poll time is too small */ + else if (vc->halt_poll_ns < halt_poll_ns && + block_ns < halt_poll_ns) + grow_halt_poll_ns(vc); + if (vc->halt_poll_ns > halt_poll_ns) + vc->halt_poll_ns = halt_poll_ns; + } else + vc->halt_poll_ns = 0; + + trace_kvmppc_vcore_wakeup(do_sleep, block_ns); } static int kvmppc_run_vcpu(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu) { - int n_ceded; + int n_ceded, i; struct kvmppc_vcore *vc; - struct kvm_vcpu *v, *vn; + struct kvm_vcpu *v; trace_kvmppc_run_vcpu_enter(vcpu); @@ -2666,7 +2750,7 @@ vcpu->arch.stolen_logged = vcore_stolen_time(vc, mftb()); vcpu->arch.state = KVMPPC_VCPU_RUNNABLE; vcpu->arch.busy_preempt = TB_NIL; - list_add_tail(&vcpu->arch.run_list, &vc->runnable_threads); + WRITE_ONCE(vc->runnable_threads[vcpu->arch.ptid], vcpu); ++vc->n_runnable; /* @@ -2706,8 +2790,7 @@ kvmppc_wait_for_exec(vc, vcpu, TASK_INTERRUPTIBLE); continue; } - list_for_each_entry_safe(v, vn, &vc->runnable_threads, - arch.run_list) { + for_each_runnable_thread(i, v, vc) { kvmppc_core_prepare_to_enter(v); if (signal_pending(v->arch.run_task)) { kvmppc_remove_runnable(vc, v); @@ -2720,8 +2803,8 @@ if (!vc->n_runnable || vcpu->arch.state != KVMPPC_VCPU_RUNNABLE) break; n_ceded = 0; - list_for_each_entry(v, &vc->runnable_threads, arch.run_list) { - if (!v->arch.pending_exceptions) + for_each_runnable_thread(i, v, vc) { + if (!v->arch.pending_exceptions && !v->arch.prodded) n_ceded += v->arch.ceded; else v->arch.ceded = 0; @@ -2759,8 +2842,8 @@ if (vc->n_runnable && vc->vcore_state == VCORE_INACTIVE) { /* Wake up some vcpu to run the core */ - v = list_first_entry(&vc->runnable_threads, - struct kvm_vcpu, arch.run_list); + i = -1; + v = next_runnable_thread(vc, &i); wake_up(&v->arch.cpu_run); } @@ -2818,7 +2901,8 @@ r = kvmppc_book3s_hv_page_fault(run, vcpu, vcpu->arch.fault_dar, vcpu->arch.fault_dsisr); srcu_read_unlock(&vcpu->kvm->srcu, srcu_idx); - } + } else if (r == RESUME_PASSTHROUGH) + r = kvmppc_xics_rm_complete(vcpu, 0); } while (is_kvmppc_resume_guest(r)); out: @@ -2942,6 +3026,15 @@ struct kvm_memslots *slots; struct kvm_memory_slot *memslot; + /* + * If we are making a new memslot, it might make + * some address that was previously cached as emulated + * MMIO be no longer emulated MMIO, so invalidate + * all the caches of emulated MMIO translations. + */ + if (npages) + atomic64_inc(&kvm->arch.mmio_update); + if (npages && old->npages) { /* * If modifying a memslot, reset all the rmap dirty bits. @@ -2986,6 +3079,22 @@ return; } +static void kvmppc_setup_partition_table(struct kvm *kvm) +{ + unsigned long dw0, dw1; + + /* PS field - page size for VRMA */ + dw0 = ((kvm->arch.vrma_slb_v & SLB_VSID_L) >> 1) | + ((kvm->arch.vrma_slb_v & SLB_VSID_LP) << 1); + /* HTABSIZE and HTABORG fields */ + dw0 |= kvm->arch.sdr1; + + /* Second dword has GR=0; other fields are unused since UPRT=0 */ + dw1 = 0; + + mmu_partition_table_set_entry(kvm->arch.lpid, dw0, dw1); +} + static int kvmppc_hv_setup_htab_rma(struct kvm_vcpu *vcpu) { int err = 0; @@ -3037,17 +3146,20 @@ psize == 0x1000000)) goto out_srcu; - /* Update VRMASD field in the LPCR */ senc = slb_pgsize_encoding(psize); kvm->arch.vrma_slb_v = senc | SLB_VSID_B_1T | (VRMA_VSID << SLB_VSID_SHIFT_1T); - /* the -4 is to account for senc values starting at 0x10 */ - lpcr = senc << (LPCR_VRMASD_SH - 4); - /* Create HPTEs in the hash page table for the VRMA */ kvmppc_map_vrma(vcpu, memslot, porder); - kvmppc_update_lpcr(kvm, lpcr, LPCR_VRMASD); + /* Update VRMASD field in the LPCR */ + if (!cpu_has_feature(CPU_FTR_ARCH_300)) { + /* the -4 is to account for senc values starting at 0x10 */ + lpcr = senc << (LPCR_VRMASD_SH - 4); + kvmppc_update_lpcr(kvm, lpcr, LPCR_VRMASD); + } else { + kvmppc_setup_partition_table(kvm); + } /* Order updates to kvm->arch.lpcr etc. vs. hpte_setup_done */ smp_wmb(); @@ -3065,36 +3177,6 @@ } #ifdef CONFIG_KVM_XICS -static int kvmppc_cpu_notify(struct notifier_block *self, unsigned long action, - void *hcpu) -{ - unsigned long cpu = (long)hcpu; - - switch (action) { - case CPU_UP_PREPARE: - case CPU_UP_PREPARE_FROZEN: - kvmppc_set_host_core(cpu); - break; - -#ifdef CONFIG_HOTPLUG_CPU - case CPU_DEAD: - case CPU_DEAD_FROZEN: - case CPU_UP_CANCELED: - case CPU_UP_CANCELED_FROZEN: - kvmppc_clear_host_core(cpu); - break; -#endif - default: - break; - } - - return NOTIFY_OK; -} - -static struct notifier_block kvmppc_cpu_notifier = { - .notifier_call = kvmppc_cpu_notify, -}; - /* * Allocate a per-core structure for managing state about which cores are * running in the host versus the guest and for exchanging data between @@ -3156,15 +3238,17 @@ return; } - register_cpu_notifier(&kvmppc_cpu_notifier); - + cpuhp_setup_state_nocalls(CPUHP_KVM_PPC_BOOK3S_PREPARE, + "ppc/kvm_book3s:prepare", + kvmppc_set_host_core, + kvmppc_clear_host_core); put_online_cpus(); } void kvmppc_free_host_rm_ops(void) { if (kvmppc_host_rm_ops_hv) { - unregister_cpu_notifier(&kvmppc_cpu_notifier); + cpuhp_remove_state_nocalls(CPUHP_KVM_PPC_BOOK3S_PREPARE); kfree(kvmppc_host_rm_ops_hv->rm_core); kfree(kvmppc_host_rm_ops_hv); kvmppc_host_rm_ops_hv = NULL; @@ -3190,14 +3274,18 @@ * Since we don't flush the TLB when tearing down a VM, * and this lpid might have previously been used, * make sure we flush on each core before running the new VM. + * On POWER9, the tlbie in mmu_partition_table_set_entry() + * does this flush for us. */ - cpumask_setall(&kvm->arch.need_tlb_flush); + if (!cpu_has_feature(CPU_FTR_ARCH_300)) + cpumask_setall(&kvm->arch.need_tlb_flush); /* Start out with the default set of hcalls enabled */ memcpy(kvm->arch.enabled_hcalls, default_enabled_hcalls, sizeof(kvm->arch.enabled_hcalls)); - kvm->arch.host_sdr1 = mfspr(SPRN_SDR1); + if (!cpu_has_feature(CPU_FTR_ARCH_300)) + kvm->arch.host_sdr1 = mfspr(SPRN_SDR1); /* Init LPCR for virtual RMA mode */ kvm->arch.host_lpid = mfspr(SPRN_LPID); @@ -3210,9 +3298,29 @@ /* On POWER8 turn on online bit to enable PURR/SPURR */ if (cpu_has_feature(CPU_FTR_ARCH_207S)) lpcr |= LPCR_ONL; + /* + * On POWER9, VPM0 bit is reserved (VPM0=1 behaviour is assumed) + * Set HVICE bit to enable hypervisor virtualization interrupts. + */ + if (cpu_has_feature(CPU_FTR_ARCH_300)) { + lpcr &= ~LPCR_VPM0; + lpcr |= LPCR_HVICE; + } + kvm->arch.lpcr = lpcr; /* + * Work out how many sets the TLB has, for the use of + * the TLB invalidation loop in book3s_hv_rmhandlers.S. + */ + if (cpu_has_feature(CPU_FTR_ARCH_300)) + kvm->arch.tlb_sets = POWER9_TLB_SETS_HASH; /* 256 */ + else if (cpu_has_feature(CPU_FTR_ARCH_207S)) + kvm->arch.tlb_sets = POWER8_TLB_SETS; /* 512 */ + else + kvm->arch.tlb_sets = POWER7_TLB_SETS; /* 128 */ + + /* * Track that we now have a HV mode VM active. This blocks secondary * CPU threads from coming online. */ @@ -3247,6 +3355,8 @@ kvmppc_free_vcores(kvm); kvmppc_free_hpt(kvm); + + kvmppc_free_pimap(kvm); } /* We don't need to emulate any privileged instructions or dcbz */ @@ -3274,14 +3384,192 @@ !cpu_has_feature(CPU_FTR_ARCH_206)) return -EIO; /* - * Disable KVM for Power9, untill the required bits merged. + * Disable KVM for Power9 in radix mode. */ - if (cpu_has_feature(CPU_FTR_ARCH_300)) + if (cpu_has_feature(CPU_FTR_ARCH_300) && radix_enabled()) return -EIO; return 0; } +#ifdef CONFIG_KVM_XICS + +void kvmppc_free_pimap(struct kvm *kvm) +{ + kfree(kvm->arch.pimap); +} + +static struct kvmppc_passthru_irqmap *kvmppc_alloc_pimap(void) +{ + return kzalloc(sizeof(struct kvmppc_passthru_irqmap), GFP_KERNEL); +} + +static int kvmppc_set_passthru_irq(struct kvm *kvm, int host_irq, int guest_gsi) +{ + struct irq_desc *desc; + struct kvmppc_irq_map *irq_map; + struct kvmppc_passthru_irqmap *pimap; + struct irq_chip *chip; + int i; + + if (!kvm_irq_bypass) + return 1; + + desc = irq_to_desc(host_irq); + if (!desc) + return -EIO; + + mutex_lock(&kvm->lock); + + pimap = kvm->arch.pimap; + if (pimap == NULL) { + /* First call, allocate structure to hold IRQ map */ + pimap = kvmppc_alloc_pimap(); + if (pimap == NULL) { + mutex_unlock(&kvm->lock); + return -ENOMEM; + } + kvm->arch.pimap = pimap; + } + + /* + * For now, we only support interrupts for which the EOI operation + * is an OPAL call followed by a write to XIRR, since that's + * what our real-mode EOI code does. + */ + chip = irq_data_get_irq_chip(&desc->irq_data); + if (!chip || !is_pnv_opal_msi(chip)) { + pr_warn("kvmppc_set_passthru_irq_hv: Could not assign IRQ map for (%d,%d)\n", + host_irq, guest_gsi); + mutex_unlock(&kvm->lock); + return -ENOENT; + } + + /* + * See if we already have an entry for this guest IRQ number. + * If it's mapped to a hardware IRQ number, that's an error, + * otherwise re-use this entry. + */ + for (i = 0; i < pimap->n_mapped; i++) { + if (guest_gsi == pimap->mapped[i].v_hwirq) { + if (pimap->mapped[i].r_hwirq) { + mutex_unlock(&kvm->lock); + return -EINVAL; + } + break; + } + } + + if (i == KVMPPC_PIRQ_MAPPED) { + mutex_unlock(&kvm->lock); + return -EAGAIN; /* table is full */ + } + + irq_map = &pimap->mapped[i]; + + irq_map->v_hwirq = guest_gsi; + irq_map->desc = desc; + + /* + * Order the above two stores before the next to serialize with + * the KVM real mode handler. + */ + smp_wmb(); + irq_map->r_hwirq = desc->irq_data.hwirq; + + if (i == pimap->n_mapped) + pimap->n_mapped++; + + kvmppc_xics_set_mapped(kvm, guest_gsi, desc->irq_data.hwirq); + + mutex_unlock(&kvm->lock); + + return 0; +} + +static int kvmppc_clr_passthru_irq(struct kvm *kvm, int host_irq, int guest_gsi) +{ + struct irq_desc *desc; + struct kvmppc_passthru_irqmap *pimap; + int i; + + if (!kvm_irq_bypass) + return 0; + + desc = irq_to_desc(host_irq); + if (!desc) + return -EIO; + + mutex_lock(&kvm->lock); + + if (kvm->arch.pimap == NULL) { + mutex_unlock(&kvm->lock); + return 0; + } + pimap = kvm->arch.pimap; + + for (i = 0; i < pimap->n_mapped; i++) { + if (guest_gsi == pimap->mapped[i].v_hwirq) + break; + } + + if (i == pimap->n_mapped) { + mutex_unlock(&kvm->lock); + return -ENODEV; + } + + kvmppc_xics_clr_mapped(kvm, guest_gsi, pimap->mapped[i].r_hwirq); + + /* invalidate the entry */ + pimap->mapped[i].r_hwirq = 0; + + /* + * We don't free this structure even when the count goes to + * zero. The structure is freed when we destroy the VM. + */ + + mutex_unlock(&kvm->lock); + return 0; +} + +static int kvmppc_irq_bypass_add_producer_hv(struct irq_bypass_consumer *cons, + struct irq_bypass_producer *prod) +{ + int ret = 0; + struct kvm_kernel_irqfd *irqfd = + container_of(cons, struct kvm_kernel_irqfd, consumer); + + irqfd->producer = prod; + + ret = kvmppc_set_passthru_irq(irqfd->kvm, prod->irq, irqfd->gsi); + if (ret) + pr_info("kvmppc_set_passthru_irq (irq %d, gsi %d) fails: %d\n", + prod->irq, irqfd->gsi, ret); + + return ret; +} + +static void kvmppc_irq_bypass_del_producer_hv(struct irq_bypass_consumer *cons, + struct irq_bypass_producer *prod) +{ + int ret; + struct kvm_kernel_irqfd *irqfd = + container_of(cons, struct kvm_kernel_irqfd, consumer); + + irqfd->producer = NULL; + + /* + * When producer of consumer is unregistered, we change back to + * default external interrupt handling mode - KVM real mode + * will switch back to host. + */ + ret = kvmppc_clr_passthru_irq(irqfd->kvm, prod->irq, irqfd->gsi); + if (ret) + pr_warn("kvmppc_clr_passthru_irq (irq %d, gsi %d) fails: %d\n", + prod->irq, irqfd->gsi, ret); +} +#endif + static long kvm_arch_vm_ioctl_hv(struct file *filp, unsigned int ioctl, unsigned long arg) { @@ -3400,6 +3688,10 @@ .fast_vcpu_kick = kvmppc_fast_vcpu_kick_hv, .arch_vm_ioctl = kvm_arch_vm_ioctl_hv, .hcall_implemented = kvmppc_hcall_impl_hv, +#ifdef CONFIG_KVM_XICS + .irq_bypass_add_producer = kvmppc_irq_bypass_add_producer_hv, + .irq_bypass_del_producer = kvmppc_irq_bypass_del_producer_hv, +#endif }; static int kvm_init_subcore_bitmap(void) @@ -3448,6 +3740,23 @@ if (r) return r; + /* + * We need a way of accessing the XICS interrupt controller, + * either directly, via paca[cpu].kvm_hstate.xics_phys, or + * indirectly, via OPAL. + */ +#ifdef CONFIG_SMP + if (!get_paca()->kvm_hstate.xics_phys) { + struct device_node *np; + + np = of_find_compatible_node(NULL, NULL, "ibm,opal-intc"); + if (!np) { + pr_err("KVM-HV: Cannot determine method for accessing XICS\n"); + return -ENODEV; + } + } +#endif + kvm_ops_hv.owner = THIS_MODULE; kvmppc_hv_ops = &kvm_ops_hv; @@ -3470,3 +3779,4 @@ MODULE_LICENSE("GPL"); MODULE_ALIAS_MISCDEV(KVM_MINOR); MODULE_ALIAS("devname:kvm"); + --- linux-4.8.0.orig/arch/powerpc/kvm/book3s_hv_builtin.c +++ linux-4.8.0/arch/powerpc/kvm/book3s_hv_builtin.c @@ -25,6 +25,9 @@ #include #include #include +#include +#include +#include #define KVM_CMA_CHUNK_ORDER 18 @@ -204,12 +207,18 @@ void kvmhv_rm_send_ipi(int cpu) { unsigned long xics_phys; + unsigned long msg = PPC_DBELL_TYPE(PPC_DBELL_SERVER); - /* On POWER8 for IPIs to threads in the same core, use msgsnd */ + /* On POWER9 we can use msgsnd for any destination cpu. */ + if (cpu_has_feature(CPU_FTR_ARCH_300)) { + msg |= get_hard_smp_processor_id(cpu); + __asm__ __volatile__ (PPC_MSGSND(%0) : : "r" (msg)); + return; + } + /* On POWER8 for IPIs to threads in the same core, use msgsnd. */ if (cpu_has_feature(CPU_FTR_ARCH_207S) && cpu_first_thread_sibling(cpu) == cpu_first_thread_sibling(raw_smp_processor_id())) { - unsigned long msg = PPC_DBELL_TYPE(PPC_DBELL_SERVER); msg |= cpu_thread_in_core(cpu); __asm__ __volatile__ (PPC_MSGSND(%0) : : "r" (msg)); return; @@ -217,7 +226,11 @@ /* Else poke the target with an IPI */ xics_phys = paca[cpu].kvm_hstate.xics_phys; - rm_writeb(xics_phys + XICS_MFRR, IPI_PRIORITY); + if (xics_phys) + rm_writeb(xics_phys + XICS_MFRR, IPI_PRIORITY); + else + opal_rm_int_set_mfrr(get_hard_smp_processor_id(cpu), + IPI_PRIORITY); } /* @@ -286,3 +299,192 @@ struct kvmppc_host_rm_ops *kvmppc_host_rm_ops_hv; EXPORT_SYMBOL_GPL(kvmppc_host_rm_ops_hv); + +#ifdef CONFIG_KVM_XICS +static struct kvmppc_irq_map *get_irqmap(struct kvmppc_passthru_irqmap *pimap, + u32 xisr) +{ + int i; + + /* + * We access the mapped array here without a lock. That + * is safe because we never reduce the number of entries + * in the array and we never change the v_hwirq field of + * an entry once it is set. + * + * We have also carefully ordered the stores in the writer + * and the loads here in the reader, so that if we find a matching + * hwirq here, the associated GSI and irq_desc fields are valid. + */ + for (i = 0; i < pimap->n_mapped; i++) { + if (xisr == pimap->mapped[i].r_hwirq) { + /* + * Order subsequent reads in the caller to serialize + * with the writer. + */ + smp_rmb(); + return &pimap->mapped[i]; + } + } + return NULL; +} + +/* + * If we have an interrupt that's not an IPI, check if we have a + * passthrough adapter and if so, check if this external interrupt + * is for the adapter. + * We will attempt to deliver the IRQ directly to the target VCPU's + * ICP, the virtual ICP (based on affinity - the xive value in ICS). + * + * If the delivery fails or if this is not for a passthrough adapter, + * return to the host to handle this interrupt. We earlier + * saved a copy of the XIRR in the PACA, it will be picked up by + * the host ICP driver. + */ +static int kvmppc_check_passthru(u32 xisr, __be32 xirr, bool *again) +{ + struct kvmppc_passthru_irqmap *pimap; + struct kvmppc_irq_map *irq_map; + struct kvm_vcpu *vcpu; + + vcpu = local_paca->kvm_hstate.kvm_vcpu; + if (!vcpu) + return 1; + pimap = kvmppc_get_passthru_irqmap(vcpu->kvm); + if (!pimap) + return 1; + irq_map = get_irqmap(pimap, xisr); + if (!irq_map) + return 1; + + /* We're handling this interrupt, generic code doesn't need to */ + local_paca->kvm_hstate.saved_xirr = 0; + + return kvmppc_deliver_irq_passthru(vcpu, xirr, irq_map, pimap, again); +} + +#else +static inline int kvmppc_check_passthru(u32 xisr, __be32 xirr, bool *again) +{ + return 1; +} +#endif + +/* + * Determine what sort of external interrupt is pending (if any). + * Returns: + * 0 if no interrupt is pending + * 1 if an interrupt is pending that needs to be handled by the host + * 2 Passthrough that needs completion in the host + * -1 if there was a guest wakeup IPI (which has now been cleared) + * -2 if there is PCI passthrough external interrupt that was handled + */ +static long kvmppc_read_one_intr(bool *again); + +long kvmppc_read_intr(void) +{ + long ret = 0; + long rc; + bool again; + + do { + again = false; + rc = kvmppc_read_one_intr(&again); + if (rc && (ret == 0 || rc > ret)) + ret = rc; + } while (again); + return ret; +} + +static long kvmppc_read_one_intr(bool *again) +{ + unsigned long xics_phys; + u32 h_xirr; + __be32 xirr; + u32 xisr; + u8 host_ipi; + int64_t rc; + + /* see if a host IPI is pending */ + host_ipi = local_paca->kvm_hstate.host_ipi; + if (host_ipi) + return 1; + + /* Now read the interrupt from the ICP */ + xics_phys = local_paca->kvm_hstate.xics_phys; + if (!xics_phys) { + /* Use OPAL to read the XIRR */ + rc = opal_rm_int_get_xirr(&xirr, false); + if (rc < 0) + return 1; + } else { + xirr = _lwzcix(xics_phys + XICS_XIRR); + } + + /* + * Save XIRR for later. Since we get control in reverse endian + * on LE systems, save it byte reversed and fetch it back in + * host endian. Note that xirr is the value read from the + * XIRR register, while h_xirr is the host endian version. + */ + h_xirr = be32_to_cpu(xirr); + local_paca->kvm_hstate.saved_xirr = h_xirr; + xisr = h_xirr & 0xffffff; + /* + * Ensure that the store/load complete to guarantee all side + * effects of loading from XIRR has completed + */ + smp_mb(); + + /* if nothing pending in the ICP */ + if (!xisr) + return 0; + + /* We found something in the ICP... + * + * If it is an IPI, clear the MFRR and EOI it. + */ + if (xisr == XICS_IPI) { + if (xics_phys) { + _stbcix(xics_phys + XICS_MFRR, 0xff); + _stwcix(xics_phys + XICS_XIRR, xirr); + } else { + opal_rm_int_set_mfrr(hard_smp_processor_id(), 0xff); + rc = opal_rm_int_eoi(h_xirr); + /* If rc > 0, there is another interrupt pending */ + *again = rc > 0; + } + + /* + * Need to ensure side effects of above stores + * complete before proceeding. + */ + smp_mb(); + + /* + * We need to re-check host IPI now in case it got set in the + * meantime. If it's clear, we bounce the interrupt to the + * guest + */ + host_ipi = local_paca->kvm_hstate.host_ipi; + if (unlikely(host_ipi != 0)) { + /* We raced with the host, + * we need to resend that IPI, bummer + */ + if (xics_phys) + _stbcix(xics_phys + XICS_MFRR, IPI_PRIORITY); + else + opal_rm_int_set_mfrr(hard_smp_processor_id(), + IPI_PRIORITY); + /* Let side effects complete */ + smp_mb(); + return 1; + } + + /* OK, it's an IPI for us */ + local_paca->kvm_hstate.saved_xirr = 0; + return -1; + } + + return kvmppc_check_passthru(xisr, xirr, again); +} --- linux-4.8.0.orig/arch/powerpc/kvm/book3s_hv_ras.c +++ linux-4.8.0/arch/powerpc/kvm/book3s_hv_ras.c @@ -16,6 +16,7 @@ #include #include #include +#include /* SRR1 bits for machine check on POWER7 */ #define SRR1_MC_LDSTERR (1ul << (63-42)) --- linux-4.8.0.orig/arch/powerpc/kvm/book3s_hv_rm_mmu.c +++ linux-4.8.0/arch/powerpc/kvm/book3s_hv_rm_mmu.c @@ -264,8 +264,10 @@ if (pa) pteh |= HPTE_V_VALID; - else + else { pteh |= HPTE_V_ABSENT; + ptel &= ~(HPTE_R_KEY_HI | HPTE_R_KEY_LO); + } /*If we had host pte mapping then Check WIMG */ if (ptep && !hpte_cache_flags_ok(ptel, is_ci)) { @@ -351,6 +353,7 @@ /* inval in progress, write a non-present HPTE */ pteh |= HPTE_V_ABSENT; pteh &= ~HPTE_V_VALID; + ptel &= ~(HPTE_R_KEY_HI | HPTE_R_KEY_LO); unlock_rmap(rmap); } else { kvmppc_add_revmap_chain(kvm, rev, rmap, pte_index, @@ -361,6 +364,11 @@ } } + /* Convert to new format on P9 */ + if (cpu_has_feature(CPU_FTR_ARCH_300)) { + ptel = hpte_old_to_new_r(pteh, ptel); + pteh = hpte_old_to_new_v(pteh); + } hpte[1] = cpu_to_be64(ptel); /* Write the first HPTE dword, unlocking the HPTE and making it valid */ @@ -386,6 +394,13 @@ #define LOCK_TOKEN (*(u32 *)(&get_paca()->paca_index)) #endif +static inline int is_mmio_hpte(unsigned long v, unsigned long r) +{ + return ((v & HPTE_V_ABSENT) && + (r & (HPTE_R_KEY_HI | HPTE_R_KEY_LO)) == + (HPTE_R_KEY_HI | HPTE_R_KEY_LO)); +} + static inline int try_lock_tlbie(unsigned int *lock) { unsigned int tmp, old; @@ -409,13 +424,18 @@ { long i; + /* + * We use the POWER9 5-operand versions of tlbie and tlbiel here. + * Since we are using RIC=0 PRS=0 R=0, and P7/P8 tlbiel ignores + * the RS field, this is backwards-compatible with P7 and P8. + */ if (global) { while (!try_lock_tlbie(&kvm->arch.tlbie_lock)) cpu_relax(); if (need_sync) asm volatile("ptesync" : : : "memory"); for (i = 0; i < npages; ++i) - asm volatile(PPC_TLBIE(%1,%0) : : + asm volatile(PPC_TLBIE_5(%0,%1,0,0,0) : : "r" (rbvalues[i]), "r" (kvm->arch.lpid)); asm volatile("eieio; tlbsync; ptesync" : : : "memory"); kvm->arch.tlbie_lock = 0; @@ -423,7 +443,8 @@ if (need_sync) asm volatile("ptesync" : : : "memory"); for (i = 0; i < npages; ++i) - asm volatile("tlbiel %0" : : "r" (rbvalues[i])); + asm volatile(PPC_TLBIEL(%0,%1,0,0,0) : : + "r" (rbvalues[i]), "r" (0)); asm volatile("ptesync" : : : "memory"); } } @@ -435,18 +456,23 @@ __be64 *hpte; unsigned long v, r, rb; struct revmap_entry *rev; - u64 pte; + u64 pte, orig_pte, pte_r; if (pte_index >= kvm->arch.hpt_npte) return H_PARAMETER; hpte = (__be64 *)(kvm->arch.hpt_virt + (pte_index << 4)); while (!try_lock_hpte(hpte, HPTE_V_HVLOCK)) cpu_relax(); - pte = be64_to_cpu(hpte[0]); + pte = orig_pte = be64_to_cpu(hpte[0]); + pte_r = be64_to_cpu(hpte[1]); + if (cpu_has_feature(CPU_FTR_ARCH_300)) { + pte = hpte_new_to_old_v(pte, pte_r); + pte_r = hpte_new_to_old_r(pte_r); + } if ((pte & (HPTE_V_ABSENT | HPTE_V_VALID)) == 0 || ((flags & H_AVPN) && (pte & ~0x7fUL) != avpn) || ((flags & H_ANDCOND) && (pte & avpn) != 0)) { - __unlock_hpte(hpte, pte); + __unlock_hpte(hpte, orig_pte); return H_NOT_FOUND; } @@ -454,7 +480,7 @@ v = pte & ~HPTE_V_HVLOCK; if (v & HPTE_V_VALID) { hpte[0] &= ~cpu_to_be64(HPTE_V_VALID); - rb = compute_tlbie_rb(v, be64_to_cpu(hpte[1]), pte_index); + rb = compute_tlbie_rb(v, pte_r, pte_index); do_tlbies(kvm, &rb, 1, global_invalidates(kvm, flags), true); /* * The reference (R) and change (C) bits in a HPT @@ -472,6 +498,9 @@ note_hpte_modification(kvm, rev); unlock_hpte(hpte, 0); + if (is_mmio_hpte(v, pte_r)) + atomic64_inc(&kvm->arch.mmio_update); + if (v & HPTE_V_ABSENT) v = (v & ~HPTE_V_ABSENT) | HPTE_V_VALID; hpret[0] = v; @@ -498,7 +527,7 @@ int global; long int ret = H_SUCCESS; struct revmap_entry *rev, *revs[4]; - u64 hp0; + u64 hp0, hp1; global = global_invalidates(kvm, 0); for (i = 0; i < 4 && ret == H_SUCCESS; ) { @@ -531,6 +560,11 @@ } found = 0; hp0 = be64_to_cpu(hp[0]); + hp1 = be64_to_cpu(hp[1]); + if (cpu_has_feature(CPU_FTR_ARCH_300)) { + hp0 = hpte_new_to_old_v(hp0, hp1); + hp1 = hpte_new_to_old_r(hp1); + } if (hp0 & (HPTE_V_ABSENT | HPTE_V_VALID)) { switch (flags & 3) { case 0: /* absolute */ @@ -561,13 +595,14 @@ rcbits = rev->guest_rpte & (HPTE_R_R|HPTE_R_C); args[j] |= rcbits << (56 - 5); hp[0] = 0; + if (is_mmio_hpte(hp0, hp1)) + atomic64_inc(&kvm->arch.mmio_update); continue; } /* leave it locked */ hp[0] &= ~cpu_to_be64(HPTE_V_VALID); - tlbrb[n] = compute_tlbie_rb(be64_to_cpu(hp[0]), - be64_to_cpu(hp[1]), pte_index); + tlbrb[n] = compute_tlbie_rb(hp0, hp1, pte_index); indexes[n] = j; hptes[n] = hp; revs[n] = rev; @@ -605,7 +640,7 @@ __be64 *hpte; struct revmap_entry *rev; unsigned long v, r, rb, mask, bits; - u64 pte; + u64 pte_v, pte_r; if (pte_index >= kvm->arch.hpt_npte) return H_PARAMETER; @@ -613,14 +648,16 @@ hpte = (__be64 *)(kvm->arch.hpt_virt + (pte_index << 4)); while (!try_lock_hpte(hpte, HPTE_V_HVLOCK)) cpu_relax(); - pte = be64_to_cpu(hpte[0]); - if ((pte & (HPTE_V_ABSENT | HPTE_V_VALID)) == 0 || - ((flags & H_AVPN) && (pte & ~0x7fUL) != avpn)) { - __unlock_hpte(hpte, pte); + v = pte_v = be64_to_cpu(hpte[0]); + if (cpu_has_feature(CPU_FTR_ARCH_300)) + v = hpte_new_to_old_v(v, be64_to_cpu(hpte[1])); + if ((v & (HPTE_V_ABSENT | HPTE_V_VALID)) == 0 || + ((flags & H_AVPN) && (v & ~0x7fUL) != avpn)) { + __unlock_hpte(hpte, pte_v); return H_NOT_FOUND; } - v = pte; + pte_r = be64_to_cpu(hpte[1]); bits = (flags << 55) & HPTE_R_PP0; bits |= (flags << 48) & HPTE_R_KEY_HI; bits |= flags & (HPTE_R_PP | HPTE_R_N | HPTE_R_KEY_LO); @@ -642,22 +679,26 @@ * readonly to writable. If it should be writable, we'll * take a trap and let the page fault code sort it out. */ - pte = be64_to_cpu(hpte[1]); - r = (pte & ~mask) | bits; - if (hpte_is_writable(r) && !hpte_is_writable(pte)) + r = (pte_r & ~mask) | bits; + if (hpte_is_writable(r) && !hpte_is_writable(pte_r)) r = hpte_make_readonly(r); /* If the PTE is changing, invalidate it first */ - if (r != pte) { + if (r != pte_r) { rb = compute_tlbie_rb(v, r, pte_index); - hpte[0] = cpu_to_be64((v & ~HPTE_V_VALID) | + hpte[0] = cpu_to_be64((pte_v & ~HPTE_V_VALID) | HPTE_V_ABSENT); do_tlbies(kvm, &rb, 1, global_invalidates(kvm, flags), true); + /* Don't lose R/C bit updates done by hardware */ + r |= be64_to_cpu(hpte[1]) & (HPTE_R_R | HPTE_R_C); hpte[1] = cpu_to_be64(r); } } - unlock_hpte(hpte, v & ~HPTE_V_HVLOCK); + unlock_hpte(hpte, pte_v & ~HPTE_V_HVLOCK); asm volatile("ptesync" : : : "memory"); + if (is_mmio_hpte(v, pte_r)) + atomic64_inc(&kvm->arch.mmio_update); + return H_SUCCESS; } @@ -681,6 +722,10 @@ hpte = (__be64 *)(kvm->arch.hpt_virt + (pte_index << 4)); v = be64_to_cpu(hpte[0]) & ~HPTE_V_HVLOCK; r = be64_to_cpu(hpte[1]); + if (cpu_has_feature(CPU_FTR_ARCH_300)) { + v = hpte_new_to_old_v(v, r); + r = hpte_new_to_old_r(r); + } if (v & HPTE_V_ABSENT) { v &= ~HPTE_V_ABSENT; v |= HPTE_V_VALID; @@ -798,10 +843,16 @@ unsigned long pte_index) { unsigned long rb; + u64 hp0, hp1; hptep[0] &= ~cpu_to_be64(HPTE_V_VALID); - rb = compute_tlbie_rb(be64_to_cpu(hptep[0]), be64_to_cpu(hptep[1]), - pte_index); + hp0 = be64_to_cpu(hptep[0]); + hp1 = be64_to_cpu(hptep[1]); + if (cpu_has_feature(CPU_FTR_ARCH_300)) { + hp0 = hpte_new_to_old_v(hp0, hp1); + hp1 = hpte_new_to_old_r(hp1); + } + rb = compute_tlbie_rb(hp0, hp1, pte_index); do_tlbies(kvm, &rb, 1, 1, true); } EXPORT_SYMBOL_GPL(kvmppc_invalidate_hpte); @@ -811,9 +862,15 @@ { unsigned long rb; unsigned char rbyte; + u64 hp0, hp1; - rb = compute_tlbie_rb(be64_to_cpu(hptep[0]), be64_to_cpu(hptep[1]), - pte_index); + hp0 = be64_to_cpu(hptep[0]); + hp1 = be64_to_cpu(hptep[1]); + if (cpu_has_feature(CPU_FTR_ARCH_300)) { + hp0 = hpte_new_to_old_v(hp0, hp1); + hp1 = hpte_new_to_old_r(hp1); + } + rb = compute_tlbie_rb(hp0, hp1, pte_index); rbyte = (be64_to_cpu(hptep[1]) & ~HPTE_R_R) >> 8; /* modify only the second-last byte, which contains the ref bit */ *((char *)hptep + 14) = rbyte; @@ -828,6 +885,37 @@ 20, /* 1M, unsupported */ }; +static struct mmio_hpte_cache_entry *mmio_cache_search(struct kvm_vcpu *vcpu, + unsigned long eaddr, unsigned long slb_v, long mmio_update) +{ + struct mmio_hpte_cache_entry *entry = NULL; + unsigned int pshift; + unsigned int i; + + for (i = 0; i < MMIO_HPTE_CACHE_SIZE; i++) { + entry = &vcpu->arch.mmio_cache.entry[i]; + if (entry->mmio_update == mmio_update) { + pshift = entry->slb_base_pshift; + if ((entry->eaddr >> pshift) == (eaddr >> pshift) && + entry->slb_v == slb_v) + return entry; + } + } + return NULL; +} + +static struct mmio_hpte_cache_entry * + next_mmio_cache_entry(struct kvm_vcpu *vcpu) +{ + unsigned int index = vcpu->arch.mmio_cache.index; + + vcpu->arch.mmio_cache.index++; + if (vcpu->arch.mmio_cache.index == MMIO_HPTE_CACHE_SIZE) + vcpu->arch.mmio_cache.index = 0; + + return &vcpu->arch.mmio_cache.entry[index]; +} + /* When called from virtmode, this func should be protected by * preempt_disable(), otherwise, the holding of HPTE_V_HVLOCK * can trigger deadlock issue. @@ -842,7 +930,7 @@ unsigned long avpn; __be64 *hpte; unsigned long mask, val; - unsigned long v, r; + unsigned long v, r, orig_v; /* Get page shift, work out hash and AVPN etc. */ mask = SLB_VSID_B | HPTE_V_AVPN | HPTE_V_SECONDARY; @@ -877,6 +965,8 @@ for (i = 0; i < 16; i += 2) { /* Read the PTE racily */ v = be64_to_cpu(hpte[i]) & ~HPTE_V_HVLOCK; + if (cpu_has_feature(CPU_FTR_ARCH_300)) + v = hpte_new_to_old_v(v, be64_to_cpu(hpte[i+1])); /* Check valid/absent, hash, segment size and AVPN */ if (!(v & valid) || (v & mask) != val) @@ -885,8 +975,12 @@ /* Lock the PTE and read it under the lock */ while (!try_lock_hpte(&hpte[i], HPTE_V_HVLOCK)) cpu_relax(); - v = be64_to_cpu(hpte[i]) & ~HPTE_V_HVLOCK; + v = orig_v = be64_to_cpu(hpte[i]) & ~HPTE_V_HVLOCK; r = be64_to_cpu(hpte[i+1]); + if (cpu_has_feature(CPU_FTR_ARCH_300)) { + v = hpte_new_to_old_v(v, r); + r = hpte_new_to_old_r(r); + } /* * Check the HPTE again, including base page size @@ -896,7 +990,7 @@ /* Return with the HPTE still locked */ return (hash << 3) + (i >> 1); - __unlock_hpte(&hpte[i], v); + __unlock_hpte(&hpte[i], orig_v); } if (val & HPTE_V_SECONDARY) @@ -924,30 +1018,45 @@ { struct kvm *kvm = vcpu->kvm; long int index; - unsigned long v, r, gr; + unsigned long v, r, gr, orig_v; __be64 *hpte; unsigned long valid; struct revmap_entry *rev; unsigned long pp, key; + struct mmio_hpte_cache_entry *cache_entry = NULL; + long mmio_update = 0; /* For protection fault, expect to find a valid HPTE */ valid = HPTE_V_VALID; - if (status & DSISR_NOHPTE) + if (status & DSISR_NOHPTE) { valid |= HPTE_V_ABSENT; - - index = kvmppc_hv_find_lock_hpte(kvm, addr, slb_v, valid); - if (index < 0) { - if (status & DSISR_NOHPTE) - return status; /* there really was no HPTE */ - return 0; /* for prot fault, HPTE disappeared */ + mmio_update = atomic64_read(&kvm->arch.mmio_update); + cache_entry = mmio_cache_search(vcpu, addr, slb_v, mmio_update); } - hpte = (__be64 *)(kvm->arch.hpt_virt + (index << 4)); - v = be64_to_cpu(hpte[0]) & ~HPTE_V_HVLOCK; - r = be64_to_cpu(hpte[1]); - rev = real_vmalloc_addr(&kvm->arch.revmap[index]); - gr = rev->guest_rpte; + if (cache_entry) { + index = cache_entry->pte_index; + v = cache_entry->hpte_v; + r = cache_entry->hpte_r; + gr = cache_entry->rpte; + } else { + index = kvmppc_hv_find_lock_hpte(kvm, addr, slb_v, valid); + if (index < 0) { + if (status & DSISR_NOHPTE) + return status; /* there really was no HPTE */ + return 0; /* for prot fault, HPTE disappeared */ + } + hpte = (__be64 *)(kvm->arch.hpt_virt + (index << 4)); + v = orig_v = be64_to_cpu(hpte[0]) & ~HPTE_V_HVLOCK; + r = be64_to_cpu(hpte[1]); + if (cpu_has_feature(CPU_FTR_ARCH_300)) { + v = hpte_new_to_old_v(v, r); + r = hpte_new_to_old_r(r); + } + rev = real_vmalloc_addr(&kvm->arch.revmap[index]); + gr = rev->guest_rpte; - unlock_hpte(hpte, v); + unlock_hpte(hpte, orig_v); + } /* For not found, if the HPTE is valid by now, retry the instruction */ if ((status & DSISR_NOHPTE) && (v & HPTE_V_VALID)) @@ -985,12 +1094,32 @@ vcpu->arch.pgfault_index = index; vcpu->arch.pgfault_hpte[0] = v; vcpu->arch.pgfault_hpte[1] = r; + vcpu->arch.pgfault_cache = cache_entry; /* Check the storage key to see if it is possibly emulated MMIO */ - if (data && (vcpu->arch.shregs.msr & MSR_IR) && - (r & (HPTE_R_KEY_HI | HPTE_R_KEY_LO)) == - (HPTE_R_KEY_HI | HPTE_R_KEY_LO)) - return -2; /* MMIO emulation - load instr word */ + if ((r & (HPTE_R_KEY_HI | HPTE_R_KEY_LO)) == + (HPTE_R_KEY_HI | HPTE_R_KEY_LO)) { + if (!cache_entry) { + unsigned int pshift = 12; + unsigned int pshift_index; + + if (slb_v & SLB_VSID_L) { + pshift_index = ((slb_v & SLB_VSID_LP) >> 4); + pshift = slb_base_page_shift[pshift_index]; + } + cache_entry = next_mmio_cache_entry(vcpu); + cache_entry->eaddr = addr; + cache_entry->slb_base_pshift = pshift; + cache_entry->pte_index = index; + cache_entry->hpte_v = v; + cache_entry->hpte_r = r; + cache_entry->rpte = gr; + cache_entry->slb_v = slb_v; + cache_entry->mmio_update = mmio_update; + } + if (data && (vcpu->arch.shregs.msr & MSR_IR)) + return -2; /* MMIO emulation - load instr word */ + } return -1; /* send fault up to host kernel mode */ } --- linux-4.8.0.orig/arch/powerpc/kvm/book3s_hv_rm_xics.c +++ linux-4.8.0/arch/powerpc/kvm/book3s_hv_rm_xics.c @@ -10,6 +10,7 @@ #include #include #include +#include #include #include @@ -18,7 +19,11 @@ #include #include #include +#include #include +#include +#include +#include #include "book3s_xics.h" @@ -26,9 +31,12 @@ int h_ipi_redirect = 1; EXPORT_SYMBOL(h_ipi_redirect); +int kvm_irq_bypass = 1; +EXPORT_SYMBOL(kvm_irq_bypass); static void icp_rm_deliver_irq(struct kvmppc_xics *xics, struct kvmppc_icp *icp, - u32 new_irq); + u32 new_irq, bool check_resend); +static int xics_opal_rm_set_server(unsigned int hw_irq, int server_cpu); /* -- ICS routines -- */ static void ics_rm_check_resend(struct kvmppc_xics *xics, @@ -36,20 +44,12 @@ { int i; - arch_spin_lock(&ics->lock); - for (i = 0; i < KVMPPC_XICS_IRQ_PER_ICS; i++) { struct ics_irq_state *state = &ics->irq_state[i]; - - if (!state->resend) - continue; - - arch_spin_unlock(&ics->lock); - icp_rm_deliver_irq(xics, icp, state->number); - arch_spin_lock(&ics->lock); + if (state->resend) + icp_rm_deliver_irq(xics, icp, state->number, true); } - arch_spin_unlock(&ics->lock); } /* -- ICP routines -- */ @@ -62,7 +62,11 @@ hcpu = hcore << threads_shift; kvmppc_host_rm_ops_hv->rm_core[hcore].rm_data = vcpu; smp_muxed_ipi_set_message(hcpu, PPC_MSG_RM_HOST_ACTION); - icp_native_cause_ipi_rm(hcpu); + if (paca[hcpu].kvm_hstate.xics_phys) + icp_native_cause_ipi_rm(hcpu); + else + opal_rm_int_set_mfrr(get_hard_smp_processor_id(hcpu), + IPI_PRIORITY); } #else static inline void icp_send_hcore_msg(int hcore, struct kvm_vcpu *vcpu) { } @@ -278,7 +282,7 @@ } static void icp_rm_deliver_irq(struct kvmppc_xics *xics, struct kvmppc_icp *icp, - u32 new_irq) + u32 new_irq, bool check_resend) { struct ics_irq_state *state; struct kvmppc_ics *ics; @@ -323,6 +327,10 @@ } } + if (check_resend) + if (!state->resend) + goto out; + /* Clear the resend bit of that interrupt */ state->resend = 0; @@ -368,7 +376,9 @@ */ if (reject && reject != XICS_IPI) { arch_spin_unlock(&ics->lock); + icp->n_reject++; new_irq = reject; + check_resend = 0; goto again; } } else { @@ -376,10 +386,16 @@ * We failed to deliver the interrupt we need to set the * resend map bit and mark the ICS state as needing a resend */ - set_bit(ics->icsid, icp->resend_map); state->resend = 1; /* + * Make sure when checking resend, we don't miss the resend + * if resend_map bit is seen and cleared. + */ + smp_wmb(); + set_bit(ics->icsid, icp->resend_map); + + /* * If the need_resend flag got cleared in the ICP some time * between icp_rm_try_to_deliver() atomic update and now, then * we know it might have missed the resend_map bit. So we @@ -387,7 +403,9 @@ */ smp_mb(); if (!icp->state.need_resend) { + state->resend = 0; arch_spin_unlock(&ics->lock); + check_resend = 0; goto again; } } @@ -582,7 +600,7 @@ /* Handle reject in real mode */ if (reject && reject != XICS_IPI) { this_icp->n_reject++; - icp_rm_deliver_irq(xics, icp, reject); + icp_rm_deliver_irq(xics, icp, reject, false); } /* Handle resends in real mode */ @@ -650,20 +668,75 @@ */ if (reject && reject != XICS_IPI) { icp->n_reject++; - icp_rm_deliver_irq(xics, icp, reject); + icp_rm_deliver_irq(xics, icp, reject, false); } bail: return check_too_hard(xics, icp); } -int kvmppc_rm_h_eoi(struct kvm_vcpu *vcpu, unsigned long xirr) +static int ics_rm_eoi(struct kvm_vcpu *vcpu, u32 irq) { struct kvmppc_xics *xics = vcpu->kvm->arch.xics; struct kvmppc_icp *icp = vcpu->arch.icp; struct kvmppc_ics *ics; struct ics_irq_state *state; - u32 irq = xirr & 0x00ffffff; u16 src; + u32 pq_old, pq_new; + + /* + * ICS EOI handling: For LSI, if P bit is still set, we need to + * resend it. + * + * For MSI, we move Q bit into P (and clear Q). If it is set, + * resend it. + */ + + ics = kvmppc_xics_find_ics(xics, irq, &src); + if (!ics) + goto bail; + + state = &ics->irq_state[src]; + + if (state->lsi) + pq_new = state->pq_state; + else + do { + pq_old = state->pq_state; + pq_new = pq_old >> 1; + } while (cmpxchg(&state->pq_state, pq_old, pq_new) != pq_old); + + if (pq_new & PQ_PRESENTED) + icp_rm_deliver_irq(xics, NULL, irq, false); + + if (!hlist_empty(&vcpu->kvm->irq_ack_notifier_list)) { + icp->rm_action |= XICS_RM_NOTIFY_EOI; + icp->rm_eoied_irq = irq; + } + + if (state->host_irq) { + ++vcpu->stat.pthru_all; + if (state->intr_cpu != -1) { + int pcpu = raw_smp_processor_id(); + + pcpu = cpu_first_thread_sibling(pcpu); + ++vcpu->stat.pthru_host; + if (state->intr_cpu != pcpu) { + ++vcpu->stat.pthru_bad_aff; + xics_opal_rm_set_server(state->host_irq, pcpu); + } + state->intr_cpu = -1; + } + } + + bail: + return check_too_hard(xics, icp); +} + +int kvmppc_rm_h_eoi(struct kvm_vcpu *vcpu, unsigned long xirr) +{ + struct kvmppc_xics *xics = vcpu->kvm->arch.xics; + struct kvmppc_icp *icp = vcpu->arch.icp; + u32 irq = xirr & 0x00ffffff; if (!xics || !xics->real_mode) return H_TOO_HARD; @@ -673,7 +746,7 @@ * * Note: If EOI is incorrectly used by SW to lower the CPPR * value (ie more favored), we do not check for rejection of - * a pending interrupt, this is a SW error and PAPR sepcifies + * a pending interrupt, this is a SW error and PAPR specifies * that we don't have to deal with it. * * The sending of an EOI to the ICS is handled after the @@ -686,30 +759,133 @@ /* IPIs have no EOI */ if (irq == XICS_IPI) - goto bail; - /* - * EOI handling: If the interrupt is still asserted, we need to - * resend it. We can take a lockless "peek" at the ICS state here. - * - * "Message" interrupts will never have "asserted" set - */ + return check_too_hard(xics, icp); + + return ics_rm_eoi(vcpu, irq); +} + +unsigned long eoi_rc; + +static void icp_eoi(struct irq_chip *c, u32 hwirq, __be32 xirr, bool *again) +{ + unsigned long xics_phys; + int64_t rc; + + rc = pnv_opal_pci_msi_eoi(c, hwirq); + + if (rc) + eoi_rc = rc; + + iosync(); + + /* EOI it */ + xics_phys = local_paca->kvm_hstate.xics_phys; + if (xics_phys) { + _stwcix(xics_phys + XICS_XIRR, xirr); + } else { + rc = opal_rm_int_eoi(be32_to_cpu(xirr)); + *again = rc > 0; + } +} + +static int xics_opal_rm_set_server(unsigned int hw_irq, int server_cpu) +{ + unsigned int mangle_cpu = get_hard_smp_processor_id(server_cpu) << 2; + + return opal_rm_set_xive(hw_irq, mangle_cpu, DEFAULT_PRIORITY); +} + +/* + * Increment a per-CPU 32-bit unsigned integer variable. + * Safe to call in real-mode. Handles vmalloc'ed addresses + * + * ToDo: Make this work for any integral type + */ + +static inline void this_cpu_inc_rm(unsigned int __percpu *addr) +{ + unsigned long l; + unsigned int *raddr; + int cpu = smp_processor_id(); + + raddr = per_cpu_ptr(addr, cpu); + l = (unsigned long)raddr; + + if (REGION_ID(l) == VMALLOC_REGION_ID) { + l = vmalloc_to_phys(raddr); + raddr = (unsigned int *)l; + } + ++*raddr; +} + +/* + * We don't try to update the flags in the irq_desc 'istate' field in + * here as would happen in the normal IRQ handling path for several reasons: + * - state flags represent internal IRQ state and are not expected to be + * updated outside the IRQ subsystem + * - more importantly, these are useful for edge triggered interrupts, + * IRQ probing, etc., but we are only handling MSI/MSIx interrupts here + * and these states shouldn't apply to us. + * + * However, we do update irq_stats - we somewhat duplicate the code in + * kstat_incr_irqs_this_cpu() for this since this function is defined + * in irq/internal.h which we don't want to include here. + * The only difference is that desc->kstat_irqs is an allocated per CPU + * variable and could have been vmalloc'ed, so we can't directly + * call __this_cpu_inc() on it. The kstat structure is a static + * per CPU variable and it should be accessible by real-mode KVM. + * + */ +static void kvmppc_rm_handle_irq_desc(struct irq_desc *desc) +{ + this_cpu_inc_rm(desc->kstat_irqs); + __this_cpu_inc(kstat.irqs_sum); +} + +long kvmppc_deliver_irq_passthru(struct kvm_vcpu *vcpu, + __be32 xirr, + struct kvmppc_irq_map *irq_map, + struct kvmppc_passthru_irqmap *pimap, + bool *again) +{ + struct kvmppc_xics *xics; + struct kvmppc_icp *icp; + struct kvmppc_ics *ics; + struct ics_irq_state *state; + u32 irq; + u16 src; + u32 pq_old, pq_new; + + irq = irq_map->v_hwirq; + xics = vcpu->kvm->arch.xics; + icp = vcpu->arch.icp; + + kvmppc_rm_handle_irq_desc(irq_map->desc); + ics = kvmppc_xics_find_ics(xics, irq, &src); if (!ics) - goto bail; + return 2; + state = &ics->irq_state[src]; - /* Still asserted, resend it */ - if (state->asserted) { - icp->n_reject++; - icp_rm_deliver_irq(xics, icp, irq); - } + /* only MSIs register bypass producers, so it must be MSI here */ + do { + pq_old = state->pq_state; + pq_new = ((pq_old << 1) & 3) | PQ_PRESENTED; + } while (cmpxchg(&state->pq_state, pq_old, pq_new) != pq_old); + + /* Test P=1, Q=0, this is the only case where we present */ + if (pq_new == PQ_PRESENTED) + icp_rm_deliver_irq(xics, icp, irq, false); + + /* EOI the interrupt */ + icp_eoi(irq_desc_get_chip(irq_map->desc), irq_map->r_hwirq, xirr, + again); - if (!hlist_empty(&vcpu->kvm->irq_ack_notifier_list)) { - icp->rm_action |= XICS_RM_NOTIFY_EOI; - icp->rm_eoied_irq = irq; - } - bail: - return check_too_hard(xics, icp); + if (check_too_hard(xics, icp) == H_TOO_HARD) + return 2; + else + return -2; } /* --- Non-real mode XICS-related built-in routines --- */ --- linux-4.8.0.orig/arch/powerpc/kvm/book3s_hv_rmhandlers.S +++ linux-4.8.0/arch/powerpc/kvm/book3s_hv_rmhandlers.S @@ -221,6 +221,13 @@ li r3, 0 /* Don't wake on privileged (OS) doorbell */ b kvm_do_nap +/* + * kvm_novcpu_wakeup + * Entered from kvm_start_guest if kvm_hstate.napping is set + * to NAPPING_NOVCPU + * r2 = kernel TOC + * r13 = paca + */ kvm_novcpu_wakeup: ld r1, HSTATE_HOST_R1(r13) ld r5, HSTATE_KVM_VCORE(r13) @@ -230,6 +237,13 @@ /* check the wake reason */ bl kvmppc_check_wake_reason + /* + * Restore volatile registers since we could have called + * a C routine in kvmppc_check_wake_reason. + * r5 = VCORE + */ + ld r5, HSTATE_KVM_VCORE(r13) + /* see if any other thread is already exiting */ lwz r0, VCORE_ENTRY_EXIT(r5) cmpwi r0, 0x100 @@ -322,6 +336,11 @@ /* Check the wake reason in SRR1 to see why we got here */ bl kvmppc_check_wake_reason + /* + * kvmppc_check_wake_reason could invoke a C routine, but we + * have no volatile registers to restore when we return. + */ + cmpdi r3, 0 bge kvm_no_guest @@ -482,17 +501,9 @@ cmpwi r0, 0 beq 57f li r3, (LPCR_PECEDH | LPCR_PECE0) >> 4 - mfspr r4, SPRN_LPCR - rlwimi r4, r3, 4, (LPCR_PECEDP | LPCR_PECEDH | LPCR_PECE0 | LPCR_PECE1) - mtspr SPRN_LPCR, r4 - isync - std r0, HSTATE_SCRATCH0(r13) - ptesync - ld r0, HSTATE_SCRATCH0(r13) -1: cmpd r0, r0 - bne 1b - nap - b . + mfspr r5, SPRN_LPCR + rlwimi r5, r3, 4, (LPCR_PECEDP | LPCR_PECEDH | LPCR_PECE0 | LPCR_PECE1) + b kvm_nap_sequence 57: li r0, 0 stbx r0, r3, r4 @@ -504,6 +515,10 @@ * * *****************************************************************************/ +/* Stack frame offsets */ +#define STACK_SLOT_TID (112-16) +#define STACK_SLOT_PSSCR (112-24) + .global kvmppc_hv_entry kvmppc_hv_entry: @@ -562,12 +577,14 @@ ld r9,VCORE_KVM(r5) /* pointer to struct kvm */ cmpwi r6,0 bne 10f - ld r6,KVM_SDR1(r9) lwz r7,KVM_LPID(r9) +BEGIN_FTR_SECTION + ld r6,KVM_SDR1(r9) li r0,LPID_RSVD /* switch to reserved LPID */ mtspr SPRN_LPID,r0 ptesync mtspr SPRN_SDR1,r6 /* switch to partition page table */ +END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_300) mtspr SPRN_LPID,r7 isync @@ -588,12 +605,8 @@ stdcx. r7,0,r6 bne 23b /* Flush the TLB of any entries for this LPID */ - /* use arch 2.07S as a proxy for POWER8 */ -BEGIN_FTR_SECTION - li r6,512 /* POWER8 has 512 sets */ -FTR_SECTION_ELSE - li r6,128 /* POWER7 has 128 sets */ -ALT_FTR_SECTION_END_IFSET(CPU_FTR_ARCH_207S) + lwz r6,KVM_TLB_SETS(r9) + li r0,0 /* RS for P9 version of tlbiel */ mtctr r6 li r7,0x800 /* IS field = 0b10 */ ptesync @@ -625,9 +638,11 @@ 38: BEGIN_FTR_SECTION - /* DPDES is shared between threads */ + /* DPDES and VTB are shared between threads */ ld r8, VCORE_DPDES(r5) + ld r7, VCORE_VTB(r5) mtspr SPRN_DPDES, r8 + mtspr SPRN_VTB, r7 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S) /* Mark the subcore state as inside guest */ @@ -677,6 +692,14 @@ mtspr SPRN_PURR,r7 mtspr SPRN_SPURR,r8 + /* Save host values of some registers */ +BEGIN_FTR_SECTION + mfspr r5, SPRN_TIDR + mfspr r6, SPRN_PSSCR + std r5, STACK_SLOT_TID(r1) + std r6, STACK_SLOT_PSSCR(r1) +END_FTR_SECTION_IFSET(CPU_FTR_ARCH_300) + BEGIN_FTR_SECTION /* Set partition DABR */ /* Do this before re-enabling PMU to avoid P7 DABR corruption bug */ @@ -729,14 +752,16 @@ BEGIN_FTR_SECTION ld r5, VCPU_MMCR + 24(r4) ld r6, VCPU_SIER(r4) + mtspr SPRN_MMCR2, r5 + mtspr SPRN_SIER, r6 +BEGIN_FTR_SECTION_NESTED(96) lwz r7, VCPU_PMC + 24(r4) lwz r8, VCPU_PMC + 28(r4) ld r9, VCPU_MMCR + 32(r4) - mtspr SPRN_MMCR2, r5 - mtspr SPRN_SIER, r6 mtspr SPRN_SPMC1, r7 mtspr SPRN_SPMC2, r8 mtspr SPRN_MMCRS, r9 +END_FTR_SECTION_NESTED(CPU_FTR_ARCH_300, 0, 96) END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S) mtspr SPRN_MMCR0, r3 isync @@ -787,27 +812,35 @@ mtspr SPRN_CIABR, r7 mtspr SPRN_TAR, r8 ld r5, VCPU_IC(r4) - ld r6, VCPU_VTB(r4) - mtspr SPRN_IC, r5 - mtspr SPRN_VTB, r6 ld r8, VCPU_EBBHR(r4) + mtspr SPRN_IC, r5 mtspr SPRN_EBBHR, r8 ld r5, VCPU_EBBRR(r4) ld r6, VCPU_BESCR(r4) - ld r7, VCPU_CSIGR(r4) - ld r8, VCPU_TACR(r4) + lwz r7, VCPU_GUEST_PID(r4) + ld r8, VCPU_WORT(r4) mtspr SPRN_EBBRR, r5 mtspr SPRN_BESCR, r6 - mtspr SPRN_CSIGR, r7 - mtspr SPRN_TACR, r8 + mtspr SPRN_PID, r7 + mtspr SPRN_WORT, r8 +BEGIN_FTR_SECTION + /* POWER8-only registers */ ld r5, VCPU_TCSCR(r4) ld r6, VCPU_ACOP(r4) - lwz r7, VCPU_GUEST_PID(r4) - ld r8, VCPU_WORT(r4) + ld r7, VCPU_CSIGR(r4) + ld r8, VCPU_TACR(r4) mtspr SPRN_TCSCR, r5 mtspr SPRN_ACOP, r6 - mtspr SPRN_PID, r7 - mtspr SPRN_WORT, r8 + mtspr SPRN_CSIGR, r7 + mtspr SPRN_TACR, r8 +FTR_SECTION_ELSE + /* POWER9-only registers */ + ld r5, VCPU_TID(r4) + ld r6, VCPU_PSSCR(r4) + oris r6, r6, PSSCR_EC@h /* This makes stop trap to HV */ + mtspr SPRN_TIDR, r5 + mtspr SPRN_PSSCR, r6 +ALT_FTR_SECTION_END_IFCLR(CPU_FTR_ARCH_300) 8: /* @@ -881,6 +914,7 @@ cmpwi r3, 512 /* 1 microsecond */ blt hdec_soon +deliver_guest_interrupt: ld r6, VCPU_CTR(r4) ld r7, VCPU_XER(r4) @@ -895,7 +929,6 @@ mtspr SPRN_SRR0, r6 mtspr SPRN_SRR1, r7 -deliver_guest_interrupt: /* r11 = vcpu->arch.msr & ~MSR_HV */ rldicl r11, r11, 63 - MSR_HV_LG, 1 rotldi r11, r11, 1 + MSR_HV_LG @@ -1155,10 +1188,54 @@ * set, we know the host wants us out so let's do it now */ bl kvmppc_read_intr + + /* + * Restore the active volatile registers after returning from + * a C function. + */ + ld r9, HSTATE_KVM_VCPU(r13) + li r12, BOOK3S_INTERRUPT_EXTERNAL + + /* + * kvmppc_read_intr return codes: + * + * Exit to host (r3 > 0) + * 1 An interrupt is pending that needs to be handled by the host + * Exit guest and return to host by branching to guest_exit_cont + * + * 2 Passthrough that needs completion in the host + * Exit guest and return to host by branching to guest_exit_cont + * However, we also set r12 to BOOK3S_INTERRUPT_HV_RM_HARD + * to indicate to the host to complete handling the interrupt + * + * Before returning to guest, we check if any CPU is heading out + * to the host and if so, we head out also. If no CPUs are heading + * check return values <= 0. + * + * Return to guest (r3 <= 0) + * 0 No external interrupt is pending + * -1 A guest wakeup IPI (which has now been cleared) + * In either case, we return to guest to deliver any pending + * guest interrupts. + * + * -2 A PCI passthrough external interrupt was handled + * (interrupt was delivered directly to guest) + * Return to guest to deliver any pending guest interrupts. + */ + + cmpdi r3, 1 + ble 1f + + /* Return code = 2 */ + li r12, BOOK3S_INTERRUPT_HV_RM_HARD + stw r12, VCPU_TRAP(r9) + b guest_exit_cont + +1: /* Return code <= 1 */ cmpdi r3, 0 bgt guest_exit_cont - /* Check if any CPU is heading out to the host, if so head out too */ + /* Return code <= 0 */ 4: ld r5, HSTATE_KVM_VCORE(r13) lwz r0, VCORE_ENTRY_EXIT(r5) cmpwi r0, 0x100 @@ -1271,29 +1348,36 @@ stw r6, VCPU_PSPB(r9) std r7, VCPU_FSCR(r9) mfspr r5, SPRN_IC - mfspr r6, SPRN_VTB mfspr r7, SPRN_TAR std r5, VCPU_IC(r9) - std r6, VCPU_VTB(r9) std r7, VCPU_TAR(r9) mfspr r8, SPRN_EBBHR std r8, VCPU_EBBHR(r9) mfspr r5, SPRN_EBBRR mfspr r6, SPRN_BESCR - mfspr r7, SPRN_CSIGR - mfspr r8, SPRN_TACR + mfspr r7, SPRN_PID + mfspr r8, SPRN_WORT std r5, VCPU_EBBRR(r9) std r6, VCPU_BESCR(r9) - std r7, VCPU_CSIGR(r9) - std r8, VCPU_TACR(r9) + stw r7, VCPU_GUEST_PID(r9) + std r8, VCPU_WORT(r9) +BEGIN_FTR_SECTION mfspr r5, SPRN_TCSCR mfspr r6, SPRN_ACOP - mfspr r7, SPRN_PID - mfspr r8, SPRN_WORT + mfspr r7, SPRN_CSIGR + mfspr r8, SPRN_TACR std r5, VCPU_TCSCR(r9) std r6, VCPU_ACOP(r9) - stw r7, VCPU_GUEST_PID(r9) - std r8, VCPU_WORT(r9) + std r7, VCPU_CSIGR(r9) + std r8, VCPU_TACR(r9) +FTR_SECTION_ELSE + mfspr r5, SPRN_TIDR + mfspr r6, SPRN_PSSCR + std r5, VCPU_TID(r9) + rldicl r6, r6, 4, 50 /* r6 &= PSSCR_GUEST_VIS */ + rotldi r6, r6, 60 + std r6, VCPU_PSSCR(r9) +ALT_FTR_SECTION_END_IFCLR(CPU_FTR_ARCH_300) /* * Restore various registers to 0, where non-zero values * set by the guest could disrupt the host. @@ -1302,12 +1386,14 @@ mtspr SPRN_IAMR, r0 mtspr SPRN_CIABR, r0 mtspr SPRN_DAWRX, r0 - mtspr SPRN_TCSCR, r0 mtspr SPRN_WORT, r0 +BEGIN_FTR_SECTION + mtspr SPRN_TCSCR, r0 /* Set MMCRS to 1<<31 to freeze and disable the SPMC counters */ li r0, 1 sldi r0, r0, 31 mtspr SPRN_MMCRS, r0 +END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_300) 8: /* Save and reset AMR and UAMOR before turning on the MMU */ @@ -1441,15 +1527,17 @@ stw r8, VCPU_PMC + 20(r9) BEGIN_FTR_SECTION mfspr r5, SPRN_SIER + std r5, VCPU_SIER(r9) +BEGIN_FTR_SECTION_NESTED(96) mfspr r6, SPRN_SPMC1 mfspr r7, SPRN_SPMC2 mfspr r8, SPRN_MMCRS - std r5, VCPU_SIER(r9) stw r6, VCPU_PMC + 24(r9) stw r7, VCPU_PMC + 28(r9) std r8, VCPU_MMCR + 32(r9) lis r4, 0x8000 mtspr SPRN_MMCRS, r4 +END_FTR_SECTION_NESTED(CPU_FTR_ARCH_300, 0, 96) END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S) 22: /* Clear out SLB */ @@ -1458,6 +1546,14 @@ slbia ptesync + /* Restore host values of some registers */ +BEGIN_FTR_SECTION + ld r5, STACK_SLOT_TID(r1) + ld r6, STACK_SLOT_PSSCR(r1) + mtspr SPRN_TIDR, r5 + mtspr SPRN_PSSCR, r6 +END_FTR_SECTION_IFSET(CPU_FTR_ARCH_300) + /* * POWER7/POWER8 guest -> host partition switch code. * We don't have to lock against tlbies but we do @@ -1491,19 +1587,23 @@ beq 19f /* Primary thread switches back to host partition */ - ld r6,KVM_HOST_SDR1(r4) lwz r7,KVM_HOST_LPID(r4) +BEGIN_FTR_SECTION + ld r6,KVM_HOST_SDR1(r4) li r8,LPID_RSVD /* switch to reserved LPID */ mtspr SPRN_LPID,r8 ptesync - mtspr SPRN_SDR1,r6 /* switch to partition page table */ + mtspr SPRN_SDR1,r6 /* switch to host page table */ +END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_300) mtspr SPRN_LPID,r7 isync BEGIN_FTR_SECTION - /* DPDES is shared between threads */ + /* DPDES and VTB are shared between threads */ mfspr r7, SPRN_DPDES + mfspr r8, SPRN_VTB std r7, VCORE_DPDES(r5) + std r8, VCORE_VTB(r5) /* clear DPDES so we don't get guest doorbells in the host */ li r8, 0 mtspr SPRN_DPDES, r8 @@ -2148,6 +2248,21 @@ ori r5, r5, LPCR_PECEDH rlwimi r5, r3, 0, LPCR_PECEDP END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S) + +kvm_nap_sequence: /* desired LPCR value in r5 */ +BEGIN_FTR_SECTION + /* + * PSSCR bits: exit criterion = 1 (wakeup based on LPCR at sreset) + * enable state loss = 1 (allow SMT mode switch) + * requested level = 0 (just stop dispatching) + */ + lis r3, (PSSCR_EC | PSSCR_ESL)@h + mtspr SPRN_PSSCR, r3 + /* Set LPCR_PECE_HVEE bit to enable wakeup by HV interrupts */ + li r4, LPCR_PECE_HVEE@higher + sldi r4, r4, 32 + or r5, r5, r4 +END_FTR_SECTION_IFSET(CPU_FTR_ARCH_300) mtspr SPRN_LPCR,r5 isync li r0, 0 @@ -2156,7 +2271,11 @@ ld r0, HSTATE_SCRATCH0(r13) 1: cmpd r0, r0 bne 1b +BEGIN_FTR_SECTION nap +FTR_SECTION_ELSE + PPC_STOP +ALT_FTR_SECTION_END_IFCLR(CPU_FTR_ARCH_300) b . 33: mr r4, r3 @@ -2213,10 +2332,20 @@ ld r29, VCPU_GPR(R29)(r4) ld r30, VCPU_GPR(R30)(r4) ld r31, VCPU_GPR(R31)(r4) - + /* Check the wake reason in SRR1 to see why we got here */ bl kvmppc_check_wake_reason + /* + * Restore volatile registers since we could have called a + * C routine in kvmppc_check_wake_reason + * r4 = VCPU + * r3 tells us whether we need to return to host or not + * WARNING: it gets checked further down: + * should not modify r3 until this check is done. + */ + ld r4, HSTATE_KVM_VCPU(r13) + /* clear our bit in vcore->napping_threads */ 34: ld r5,HSTATE_KVM_VCORE(r13) lbz r7,HSTATE_PTID(r13) @@ -2230,7 +2359,7 @@ li r0,0 stb r0,HSTATE_NAPPING(r13) - /* See if the wake reason means we need to exit */ + /* See if the wake reason saved in r3 means we need to exit */ stw r12, VCPU_TRAP(r4) mr r9, r4 cmpdi r3, 0 @@ -2297,10 +2426,14 @@ * 0 if nothing needs to be done * 1 if something happened that needs to be handled by the host * -1 if there was a guest wakeup (IPI or msgsnd) + * -2 if we handled a PCI passthrough interrupt (returned by + * kvmppc_read_intr only) * * Also sets r12 to the interrupt vector for any interrupt that needs * to be handled now by the host (0x500 for external interrupt), or zero. - * Modifies r0, r6, r7, r8. + * Modifies all volatile registers (since it may call a C function). + * This routine calls kvmppc_read_intr, a C function, if an external + * interrupt is pending. */ kvmppc_check_wake_reason: mfspr r6, SPRN_SRR1 @@ -2310,8 +2443,7 @@ rlwinm r6, r6, 45-31, 0xe /* P7 wake reason field is 3 bits */ ALT_FTR_SECTION_END_IFSET(CPU_FTR_ARCH_207S) cmpwi r6, 8 /* was it an external interrupt? */ - li r12, BOOK3S_INTERRUPT_EXTERNAL - beq kvmppc_read_intr /* if so, see what it was */ + beq 7f /* if so, see what it was */ li r3, 0 li r12, 0 cmpwi r6, 6 /* was it the decrementer? */ @@ -2350,83 +2482,28 @@ li r3, 1 blr -/* - * Determine what sort of external interrupt is pending (if any). - * Returns: - * 0 if no interrupt is pending - * 1 if an interrupt is pending that needs to be handled by the host - * -1 if there was a guest wakeup IPI (which has now been cleared) - * Modifies r0, r6, r7, r8, returns value in r3. - */ -kvmppc_read_intr: - /* see if a host IPI is pending */ - li r3, 1 - lbz r0, HSTATE_HOST_IPI(r13) - cmpwi r0, 0 - bne 1f + /* external interrupt - create a stack frame so we can call C */ +7: mflr r0 + std r0, PPC_LR_STKOFF(r1) + stdu r1, -PPC_MIN_STKFRM(r1) + bl kvmppc_read_intr + nop + li r12, BOOK3S_INTERRUPT_EXTERNAL + cmpdi r3, 1 + ble 1f - /* Now read the interrupt from the ICP */ - ld r6, HSTATE_XICS_PHYS(r13) - li r7, XICS_XIRR - cmpdi r6, 0 - beq- 1f - lwzcix r0, r6, r7 /* - * Save XIRR for later. Since we get in in reverse endian on LE - * systems, save it byte reversed and fetch it back in host endian. - */ - li r3, HSTATE_SAVED_XIRR - STWX_BE r0, r3, r13 -#ifdef __LITTLE_ENDIAN__ - lwz r3, HSTATE_SAVED_XIRR(r13) -#else - mr r3, r0 -#endif - rlwinm. r3, r3, 0, 0xffffff - sync - beq 1f /* if nothing pending in the ICP */ - - /* We found something in the ICP... - * - * If it's not an IPI, stash it in the PACA and return to - * the host, we don't (yet) handle directing real external - * interrupts directly to the guest - */ - cmpwi r3, XICS_IPI /* if there is, is it an IPI? */ - bne 42f - - /* It's an IPI, clear the MFRR and EOI it */ - li r3, 0xff - li r8, XICS_MFRR - stbcix r3, r6, r8 /* clear the IPI */ - stwcix r0, r6, r7 /* EOI it */ - sync - - /* We need to re-check host IPI now in case it got set in the - * meantime. If it's clear, we bounce the interrupt to the - * guest - */ - lbz r0, HSTATE_HOST_IPI(r13) - cmpwi r0, 0 - bne- 43f - - /* OK, it's an IPI for us */ - li r12, 0 - li r3, -1 -1: blr - -42: /* It's not an IPI and it's for the host. We saved a copy of XIRR in - * the PACA earlier, it will be picked up by the host ICP driver + * Return code of 2 means PCI passthrough interrupt, but + * we need to return back to host to complete handling the + * interrupt. Trap reason is expected in r12 by guest + * exit code. */ - li r3, 1 - b 1b - -43: /* We raced with the host, we need to resend that IPI, bummer */ - li r0, IPI_PRIORITY - stbcix r0, r6, r8 /* set the IPI */ - sync - li r3, 1 - b 1b + li r12, BOOK3S_INTERRUPT_HV_RM_HARD +1: + ld r0, PPC_MIN_STKFRM+PPC_LR_STKOFF(r1) + addi r1, r1, PPC_MIN_STKFRM + mtlr r0 + blr /* * Save away FP, VMX and VSX registers. @@ -2579,11 +2656,13 @@ mfctr r7 mfspr r8, SPRN_AMR mfspr r10, SPRN_TAR + mfxer r11 std r5, VCPU_LR_TM(r9) stw r6, VCPU_CR_TM(r9) std r7, VCPU_CTR_TM(r9) std r8, VCPU_AMR_TM(r9) std r10, VCPU_TAR_TM(r9) + std r11, VCPU_XER_TM(r9) /* Restore r12 as trap number. */ lwz r12, VCPU_TRAP(r9) @@ -2676,11 +2755,13 @@ ld r7, VCPU_CTR_TM(r4) ld r8, VCPU_AMR_TM(r4) ld r9, VCPU_TAR_TM(r4) + ld r10, VCPU_XER_TM(r4) mtlr r5 mtcr r6 mtctr r7 mtspr SPRN_AMR, r8 mtspr SPRN_TAR, r9 + mtxer r10 /* * Load up PPR and DSCR values but don't put them in the actual SPRs --- linux-4.8.0.orig/arch/powerpc/kvm/book3s_pr.c +++ linux-4.8.0/arch/powerpc/kvm/book3s_pr.c @@ -226,7 +226,7 @@ */ vcpu->arch.purr += get_tb() - vcpu->arch.entry_tb; vcpu->arch.spurr += get_tb() - vcpu->arch.entry_tb; - vcpu->arch.vtb += get_vtb() - vcpu->arch.entry_vtb; + to_book3s(vcpu)->vtb += get_vtb() - vcpu->arch.entry_vtb; if (cpu_has_feature(CPU_FTR_ARCH_207S)) vcpu->arch.ic += mfspr(SPRN_IC) - vcpu->arch.entry_ic; svcpu->in_use = false; @@ -448,6 +448,8 @@ case PVR_POWER7: case PVR_POWER7p: case PVR_POWER8: + case PVR_POWER8E: + case PVR_POWER8NVL: vcpu->arch.hflags |= BOOK3S_HFLAG_MULTI_PGSIZE | BOOK3S_HFLAG_NEW_TLBIE; break; @@ -1361,6 +1363,9 @@ case KVM_REG_PPC_HIOR: *val = get_reg_val(id, to_book3s(vcpu)->hior); break; + case KVM_REG_PPC_VTB: + *val = get_reg_val(id, to_book3s(vcpu)->vtb); + break; case KVM_REG_PPC_LPCR: case KVM_REG_PPC_LPCR_64: /* @@ -1397,6 +1402,9 @@ to_book3s(vcpu)->hior = set_reg_val(id, *val); to_book3s(vcpu)->hior_explicit = true; break; + case KVM_REG_PPC_VTB: + to_book3s(vcpu)->vtb = set_reg_val(id, *val); + break; case KVM_REG_PPC_LPCR: case KVM_REG_PPC_LPCR_64: kvmppc_set_lpcr_pr(vcpu, set_reg_val(id, *val)); --- linux-4.8.0.orig/arch/powerpc/kvm/book3s_xics.c +++ linux-4.8.0/arch/powerpc/kvm/book3s_xics.c @@ -63,7 +63,7 @@ /* -- ICS routines -- */ static void icp_deliver_irq(struct kvmppc_xics *xics, struct kvmppc_icp *icp, - u32 new_irq); + u32 new_irq, bool check_resend); /* * Return value ideally indicates how the interrupt was handled, but no @@ -75,6 +75,7 @@ struct ics_irq_state *state; struct kvmppc_ics *ics; u16 src; + u32 pq_old, pq_new; XICS_DBG("ics deliver %#x (level: %d)\n", irq, level); @@ -87,20 +88,40 @@ if (!state->exists) return -EINVAL; + if (level == KVM_INTERRUPT_SET_LEVEL || level == KVM_INTERRUPT_SET) + level = 1; + else if (level == KVM_INTERRUPT_UNSET) + level = 0; /* - * We set state->asserted locklessly. This should be fine as - * we are the only setter, thus concurrent access is undefined - * to begin with. + * Take other values the same as 1, consistent with original code. + * maybe WARN here? */ - if ((level == 1 && state->lsi) || level == KVM_INTERRUPT_SET_LEVEL) - state->asserted = 1; - else if (level == 0 || level == KVM_INTERRUPT_UNSET) { - state->asserted = 0; + + if (!state->lsi && level == 0) /* noop for MSI */ return 0; - } - /* Attempt delivery */ - icp_deliver_irq(xics, NULL, irq); + do { + pq_old = state->pq_state; + if (state->lsi) { + if (level) { + if (pq_old & PQ_PRESENTED) + /* Setting already set LSI ... */ + return 0; + + pq_new = PQ_PRESENTED; + } else + pq_new = 0; + } else + pq_new = ((pq_old << 1) & 3) | PQ_PRESENTED; + } while (cmpxchg(&state->pq_state, pq_old, pq_new) != pq_old); + + /* Test P=1, Q=0, this is the only case where we present */ + if (pq_new == PQ_PRESENTED) + icp_deliver_irq(xics, NULL, irq, false); + + /* Record which CPU this arrived on for passed-through interrupts */ + if (state->host_irq) + state->intr_cpu = raw_smp_processor_id(); return 0; } @@ -110,29 +131,14 @@ { int i; - unsigned long flags; - - local_irq_save(flags); - arch_spin_lock(&ics->lock); - for (i = 0; i < KVMPPC_XICS_IRQ_PER_ICS; i++) { struct ics_irq_state *state = &ics->irq_state[i]; - - if (!state->resend) - continue; - - XICS_DBG("resend %#x prio %#x\n", state->number, - state->priority); - - arch_spin_unlock(&ics->lock); - local_irq_restore(flags); - icp_deliver_irq(xics, icp, state->number); - local_irq_save(flags); - arch_spin_lock(&ics->lock); + if (state->resend) { + XICS_DBG("resend %#x prio %#x\n", state->number, + state->priority); + icp_deliver_irq(xics, icp, state->number, true); + } } - - arch_spin_unlock(&ics->lock); - local_irq_restore(flags); } static bool write_xive(struct kvmppc_xics *xics, struct kvmppc_ics *ics, @@ -151,6 +157,7 @@ deliver = false; if ((state->masked_pending || state->resend) && priority != MASKED) { state->masked_pending = 0; + state->resend = 0; deliver = true; } @@ -185,7 +192,7 @@ state->masked_pending, state->resend); if (write_xive(xics, ics, state, server, priority, priority)) - icp_deliver_irq(xics, icp, irq); + icp_deliver_irq(xics, icp, irq, false); return 0; } @@ -238,7 +245,7 @@ if (write_xive(xics, ics, state, state->server, state->saved_priority, state->saved_priority)) - icp_deliver_irq(xics, icp, irq); + icp_deliver_irq(xics, icp, irq, false); return 0; } @@ -372,7 +379,7 @@ } static void icp_deliver_irq(struct kvmppc_xics *xics, struct kvmppc_icp *icp, - u32 new_irq) + u32 new_irq, bool check_resend) { struct ics_irq_state *state; struct kvmppc_ics *ics; @@ -418,6 +425,10 @@ } } + if (check_resend) + if (!state->resend) + goto out; + /* Clear the resend bit of that interrupt */ state->resend = 0; @@ -466,6 +477,7 @@ arch_spin_unlock(&ics->lock); local_irq_restore(flags); new_irq = reject; + check_resend = 0; goto again; } } else { @@ -473,10 +485,16 @@ * We failed to deliver the interrupt we need to set the * resend map bit and mark the ICS state as needing a resend */ - set_bit(ics->icsid, icp->resend_map); state->resend = 1; /* + * Make sure when checking resend, we don't miss the resend + * if resend_map bit is seen and cleared. + */ + smp_wmb(); + set_bit(ics->icsid, icp->resend_map); + + /* * If the need_resend flag got cleared in the ICP some time * between icp_try_to_deliver() atomic update and now, then * we know it might have missed the resend_map bit. So we @@ -484,8 +502,10 @@ */ smp_mb(); if (!icp->state.need_resend) { + state->resend = 0; arch_spin_unlock(&ics->lock); local_irq_restore(flags); + check_resend = 0; goto again; } } @@ -677,7 +697,7 @@ /* Handle reject */ if (reject && reject != XICS_IPI) - icp_deliver_irq(xics, icp, reject); + icp_deliver_irq(xics, icp, reject, false); /* Handle resend */ if (resend) @@ -757,17 +777,54 @@ * attempt (see comments in icp_deliver_irq). */ if (reject && reject != XICS_IPI) - icp_deliver_irq(xics, icp, reject); + icp_deliver_irq(xics, icp, reject, false); } -static noinline int kvmppc_h_eoi(struct kvm_vcpu *vcpu, unsigned long xirr) +static int ics_eoi(struct kvm_vcpu *vcpu, u32 irq) { struct kvmppc_xics *xics = vcpu->kvm->arch.xics; struct kvmppc_icp *icp = vcpu->arch.icp; struct kvmppc_ics *ics; struct ics_irq_state *state; - u32 irq = xirr & 0x00ffffff; u16 src; + u32 pq_old, pq_new; + + /* + * ICS EOI handling: For LSI, if P bit is still set, we need to + * resend it. + * + * For MSI, we move Q bit into P (and clear Q). If it is set, + * resend it. + */ + + ics = kvmppc_xics_find_ics(xics, irq, &src); + if (!ics) { + XICS_DBG("ios_eoi: IRQ 0x%06x not found !\n", irq); + return H_PARAMETER; + } + state = &ics->irq_state[src]; + + if (state->lsi) + pq_new = state->pq_state; + else + do { + pq_old = state->pq_state; + pq_new = pq_old >> 1; + } while (cmpxchg(&state->pq_state, pq_old, pq_new) != pq_old); + + if (pq_new & PQ_PRESENTED) + icp_deliver_irq(xics, icp, irq, false); + + kvm_notify_acked_irq(vcpu->kvm, 0, irq); + + return H_SUCCESS; +} + +static noinline int kvmppc_h_eoi(struct kvm_vcpu *vcpu, unsigned long xirr) +{ + struct kvmppc_xics *xics = vcpu->kvm->arch.xics; + struct kvmppc_icp *icp = vcpu->arch.icp; + u32 irq = xirr & 0x00ffffff; XICS_DBG("h_eoi vcpu %d eoi %#lx\n", vcpu->vcpu_id, xirr); @@ -790,29 +847,11 @@ /* IPIs have no EOI */ if (irq == XICS_IPI) return H_SUCCESS; - /* - * EOI handling: If the interrupt is still asserted, we need to - * resend it. We can take a lockless "peek" at the ICS state here. - * - * "Message" interrupts will never have "asserted" set - */ - ics = kvmppc_xics_find_ics(xics, irq, &src); - if (!ics) { - XICS_DBG("h_eoi: IRQ 0x%06x not found !\n", irq); - return H_PARAMETER; - } - state = &ics->irq_state[src]; - - /* Still asserted, resend it */ - if (state->asserted) - icp_deliver_irq(xics, icp, irq); - - kvm_notify_acked_irq(vcpu->kvm, 0, irq); - return H_SUCCESS; + return ics_eoi(vcpu, irq); } -static noinline int kvmppc_xics_rm_complete(struct kvm_vcpu *vcpu, u32 hcall) +int kvmppc_xics_rm_complete(struct kvm_vcpu *vcpu, u32 hcall) { struct kvmppc_xics *xics = vcpu->kvm->arch.xics; struct kvmppc_icp *icp = vcpu->arch.icp; @@ -828,10 +867,6 @@ icp->n_rm_check_resend++; icp_check_resend(xics, icp->rm_resend_icp); } - if (icp->rm_action & XICS_RM_REJECT) { - icp->n_rm_reject++; - icp_deliver_irq(xics, icp, icp->rm_reject); - } if (icp->rm_action & XICS_RM_NOTIFY_EOI) { icp->n_rm_notify_eoi++; kvm_notify_acked_irq(vcpu->kvm, 0, icp->rm_eoied_irq); @@ -841,6 +876,7 @@ return H_SUCCESS; } +EXPORT_SYMBOL_GPL(kvmppc_xics_rm_complete); int kvmppc_xics_hcall(struct kvm_vcpu *vcpu, u32 req) { @@ -892,6 +928,21 @@ /* -- Initialisation code etc. -- */ +static void xics_debugfs_irqmap(struct seq_file *m, + struct kvmppc_passthru_irqmap *pimap) +{ + int i; + + if (!pimap) + return; + seq_printf(m, "========\nPIRQ mappings: %d maps\n===========\n", + pimap->n_mapped); + for (i = 0; i < pimap->n_mapped; i++) { + seq_printf(m, "r_hwirq=%x, v_hwirq=%x\n", + pimap->mapped[i].r_hwirq, pimap->mapped[i].v_hwirq); + } +} + static int xics_debug_show(struct seq_file *m, void *private) { struct kvmppc_xics *xics = m->private; @@ -900,7 +951,7 @@ int icsid, i; unsigned long flags; unsigned long t_rm_kick_vcpu, t_rm_check_resend; - unsigned long t_rm_reject, t_rm_notify_eoi; + unsigned long t_rm_notify_eoi; unsigned long t_reject, t_check_resend; if (!kvm) @@ -909,10 +960,11 @@ t_rm_kick_vcpu = 0; t_rm_notify_eoi = 0; t_rm_check_resend = 0; - t_rm_reject = 0; t_check_resend = 0; t_reject = 0; + xics_debugfs_irqmap(m, kvm->arch.pimap); + seq_printf(m, "=========\nICP state\n=========\n"); kvm_for_each_vcpu(i, vcpu, kvm) { @@ -930,14 +982,13 @@ t_rm_kick_vcpu += icp->n_rm_kick_vcpu; t_rm_notify_eoi += icp->n_rm_notify_eoi; t_rm_check_resend += icp->n_rm_check_resend; - t_rm_reject += icp->n_rm_reject; t_check_resend += icp->n_check_resend; t_reject += icp->n_reject; } - seq_printf(m, "ICP Guest->Host totals: kick_vcpu=%lu check_resend=%lu reject=%lu notify_eoi=%lu\n", + seq_printf(m, "ICP Guest->Host totals: kick_vcpu=%lu check_resend=%lu notify_eoi=%lu\n", t_rm_kick_vcpu, t_rm_check_resend, - t_rm_reject, t_rm_notify_eoi); + t_rm_notify_eoi); seq_printf(m, "ICP Real Mode totals: check_resend=%lu resend=%lu\n", t_check_resend, t_reject); for (icsid = 0; icsid <= KVMPPC_XICS_MAX_ICS_ID; icsid++) { @@ -955,9 +1006,9 @@ for (i = 0; i < KVMPPC_XICS_IRQ_PER_ICS; i++) { struct ics_irq_state *irq = &ics->irq_state[i]; - seq_printf(m, "irq 0x%06x: server %#x prio %#x save prio %#x asserted %d resend %d masked pending %d\n", + seq_printf(m, "irq 0x%06x: server %#x prio %#x save prio %#x pq_state %d resend %d masked pending %d\n", irq->number, irq->server, irq->priority, - irq->saved_priority, irq->asserted, + irq->saved_priority, irq->pq_state, irq->resend, irq->masked_pending); } @@ -1176,10 +1227,17 @@ val |= prio << KVM_XICS_PRIORITY_SHIFT; if (irqp->lsi) { val |= KVM_XICS_LEVEL_SENSITIVE; - if (irqp->asserted) + if (irqp->pq_state & PQ_PRESENTED) val |= KVM_XICS_PENDING; } else if (irqp->masked_pending || irqp->resend) val |= KVM_XICS_PENDING; + + if (irqp->pq_state & PQ_PRESENTED) + val |= KVM_XICS_PRESENTED; + + if (irqp->pq_state & PQ_QUEUED) + val |= KVM_XICS_QUEUED; + ret = 0; } arch_spin_unlock(&ics->lock); @@ -1231,18 +1289,20 @@ irqp->resend = 0; irqp->masked_pending = 0; irqp->lsi = 0; - irqp->asserted = 0; - if (val & KVM_XICS_LEVEL_SENSITIVE) { + irqp->pq_state = 0; + if (val & KVM_XICS_LEVEL_SENSITIVE) irqp->lsi = 1; - if (val & KVM_XICS_PENDING) - irqp->asserted = 1; - } + /* If PENDING, set P in case P is not saved because of old code */ + if (val & KVM_XICS_PRESENTED || val & KVM_XICS_PENDING) + irqp->pq_state |= PQ_PRESENTED; + if (val & KVM_XICS_QUEUED) + irqp->pq_state |= PQ_QUEUED; irqp->exists = 1; arch_spin_unlock(&ics->lock); local_irq_restore(flags); if (val & KVM_XICS_PENDING) - icp_deliver_irq(xics, NULL, irqp->number); + icp_deliver_irq(xics, NULL, irqp->number, false); return 0; } @@ -1252,6 +1312,8 @@ { struct kvmppc_xics *xics = kvm->arch.xics; + if (!xics) + return -ENODEV; return ics_deliver_irq(xics, irq, level); } @@ -1418,3 +1480,34 @@ { return pin; } + +void kvmppc_xics_set_mapped(struct kvm *kvm, unsigned long irq, + unsigned long host_irq) +{ + struct kvmppc_xics *xics = kvm->arch.xics; + struct kvmppc_ics *ics; + u16 idx; + + ics = kvmppc_xics_find_ics(xics, irq, &idx); + if (!ics) + return; + + ics->irq_state[idx].host_irq = host_irq; + ics->irq_state[idx].intr_cpu = -1; +} +EXPORT_SYMBOL_GPL(kvmppc_xics_set_mapped); + +void kvmppc_xics_clr_mapped(struct kvm *kvm, unsigned long irq, + unsigned long host_irq) +{ + struct kvmppc_xics *xics = kvm->arch.xics; + struct kvmppc_ics *ics; + u16 idx; + + ics = kvmppc_xics_find_ics(xics, irq, &idx); + if (!ics) + return; + + ics->irq_state[idx].host_irq = 0; +} +EXPORT_SYMBOL_GPL(kvmppc_xics_clr_mapped); --- linux-4.8.0.orig/arch/powerpc/kvm/book3s_xics.h +++ linux-4.8.0/arch/powerpc/kvm/book3s_xics.h @@ -31,17 +31,22 @@ /* Priority value to use for disabling an interrupt */ #define MASKED 0xff +#define PQ_PRESENTED 1 +#define PQ_QUEUED 2 + /* State for one irq source */ struct ics_irq_state { u32 number; u32 server; + u32 pq_state; u8 priority; u8 saved_priority; u8 resend; u8 masked_pending; u8 lsi; /* level-sensitive interrupt */ - u8 asserted; /* Only for LSI */ u8 exists; + int intr_cpu; + u32 host_irq; }; /* Atomic ICP state, updated with a single compare & swap */ @@ -71,7 +76,6 @@ */ #define XICS_RM_KICK_VCPU 0x1 #define XICS_RM_CHECK_RESEND 0x2 -#define XICS_RM_REJECT 0x4 #define XICS_RM_NOTIFY_EOI 0x8 u32 rm_action; struct kvm_vcpu *rm_kick_target; @@ -82,7 +86,6 @@ /* Counters for each reason we exited real mode */ unsigned long n_rm_kick_vcpu; unsigned long n_rm_check_resend; - unsigned long n_rm_reject; unsigned long n_rm_notify_eoi; /* Counters for handling ICP processing in real mode */ unsigned long n_check_resend; --- linux-4.8.0.orig/arch/powerpc/kvm/booke.c +++ linux-4.8.0/arch/powerpc/kvm/booke.c @@ -2038,7 +2038,7 @@ if (type == KVMPPC_DEBUG_NONE) continue; - if (type & !(KVMPPC_DEBUG_WATCH_READ | + if (type & ~(KVMPPC_DEBUG_WATCH_READ | KVMPPC_DEBUG_WATCH_WRITE | KVMPPC_DEBUG_BREAKPOINT)) return -EINVAL; --- linux-4.8.0.orig/arch/powerpc/kvm/e500_mmu.c +++ linux-4.8.0/arch/powerpc/kvm/e500_mmu.c @@ -743,7 +743,7 @@ char *virt; struct page **pages; struct tlbe_priv *privs[2] = {}; - u64 *g2h_bitmap = NULL; + u64 *g2h_bitmap; size_t array_len; u32 sets; int num_pages, ret, i; @@ -779,41 +779,44 @@ num_pages = DIV_ROUND_UP(cfg->array + array_len - 1, PAGE_SIZE) - cfg->array / PAGE_SIZE; - pages = kmalloc(sizeof(struct page *) * num_pages, GFP_KERNEL); + pages = kmalloc_array(num_pages, sizeof(*pages), GFP_KERNEL); if (!pages) return -ENOMEM; ret = get_user_pages_fast(cfg->array, num_pages, 1, pages); if (ret < 0) - goto err_pages; + goto free_pages; if (ret != num_pages) { num_pages = ret; ret = -EFAULT; - goto err_put_page; + goto put_pages; } virt = vmap(pages, num_pages, VM_MAP, PAGE_KERNEL); if (!virt) { ret = -ENOMEM; - goto err_put_page; + goto put_pages; } - privs[0] = kzalloc(sizeof(struct tlbe_priv) * params.tlb_sizes[0], - GFP_KERNEL); - privs[1] = kzalloc(sizeof(struct tlbe_priv) * params.tlb_sizes[1], - GFP_KERNEL); + privs[0] = kcalloc(params.tlb_sizes[0], sizeof(*privs[0]), GFP_KERNEL); + if (!privs[0]) { + ret = -ENOMEM; + goto put_pages; + } - if (!privs[0] || !privs[1]) { + privs[1] = kcalloc(params.tlb_sizes[1], sizeof(*privs[1]), GFP_KERNEL); + if (!privs[1]) { ret = -ENOMEM; - goto err_privs; + goto free_privs_first; } - g2h_bitmap = kzalloc(sizeof(u64) * params.tlb_sizes[1], - GFP_KERNEL); + g2h_bitmap = kcalloc(params.tlb_sizes[1], + sizeof(*g2h_bitmap), + GFP_KERNEL); if (!g2h_bitmap) { ret = -ENOMEM; - goto err_privs; + goto free_privs_second; } free_gtlb(vcpu_e500); @@ -845,16 +848,14 @@ kvmppc_recalc_tlb1map_range(vcpu_e500); return 0; - -err_privs: - kfree(privs[0]); + free_privs_second: kfree(privs[1]); - -err_put_page: + free_privs_first: + kfree(privs[0]); + put_pages: for (i = 0; i < num_pages; i++) put_page(pages[i]); - -err_pages: + free_pages: kfree(pages); return ret; } @@ -904,11 +905,9 @@ int kvmppc_e500_tlb_init(struct kvmppc_vcpu_e500 *vcpu_e500) { struct kvm_vcpu *vcpu = &vcpu_e500->vcpu; - int entry_size = sizeof(struct kvm_book3e_206_tlb_entry); - int entries = KVM_E500_TLB0_SIZE + KVM_E500_TLB1_SIZE; if (e500_mmu_host_init(vcpu_e500)) - goto err; + goto free_vcpu; vcpu_e500->gtlb_params[0].entries = KVM_E500_TLB0_SIZE; vcpu_e500->gtlb_params[1].entries = KVM_E500_TLB1_SIZE; @@ -920,37 +919,39 @@ vcpu_e500->gtlb_params[1].ways = KVM_E500_TLB1_SIZE; vcpu_e500->gtlb_params[1].sets = 1; - vcpu_e500->gtlb_arch = kmalloc(entries * entry_size, GFP_KERNEL); + vcpu_e500->gtlb_arch = kmalloc_array(KVM_E500_TLB0_SIZE + + KVM_E500_TLB1_SIZE, + sizeof(*vcpu_e500->gtlb_arch), + GFP_KERNEL); if (!vcpu_e500->gtlb_arch) return -ENOMEM; vcpu_e500->gtlb_offset[0] = 0; vcpu_e500->gtlb_offset[1] = KVM_E500_TLB0_SIZE; - vcpu_e500->gtlb_priv[0] = kzalloc(sizeof(struct tlbe_ref) * - vcpu_e500->gtlb_params[0].entries, + vcpu_e500->gtlb_priv[0] = kcalloc(vcpu_e500->gtlb_params[0].entries, + sizeof(struct tlbe_ref), GFP_KERNEL); if (!vcpu_e500->gtlb_priv[0]) - goto err; + goto free_vcpu; - vcpu_e500->gtlb_priv[1] = kzalloc(sizeof(struct tlbe_ref) * - vcpu_e500->gtlb_params[1].entries, + vcpu_e500->gtlb_priv[1] = kcalloc(vcpu_e500->gtlb_params[1].entries, + sizeof(struct tlbe_ref), GFP_KERNEL); if (!vcpu_e500->gtlb_priv[1]) - goto err; + goto free_vcpu; - vcpu_e500->g2h_tlb1_map = kzalloc(sizeof(u64) * - vcpu_e500->gtlb_params[1].entries, + vcpu_e500->g2h_tlb1_map = kcalloc(vcpu_e500->gtlb_params[1].entries, + sizeof(*vcpu_e500->g2h_tlb1_map), GFP_KERNEL); if (!vcpu_e500->g2h_tlb1_map) - goto err; + goto free_vcpu; vcpu_mmu_init(vcpu, vcpu_e500->gtlb_params); kvmppc_recalc_tlb1map_range(vcpu_e500); return 0; - -err: + free_vcpu: free_gtlb(vcpu_e500); return -1; } --- linux-4.8.0.orig/arch/powerpc/kvm/powerpc.c +++ linux-4.8.0/arch/powerpc/kvm/powerpc.c @@ -27,6 +27,8 @@ #include #include #include +#include +#include #include #include #include @@ -436,6 +438,16 @@ return -EINVAL; } +bool kvm_arch_has_vcpu_debugfs(void) +{ + return false; +} + +int kvm_arch_create_vcpu_debugfs(struct kvm_vcpu *vcpu) +{ + return 0; +} + void kvm_arch_destroy_vm(struct kvm *kvm) { unsigned int i; @@ -524,7 +536,6 @@ #ifdef CONFIG_PPC_BOOK3S_64 case KVM_CAP_SPAPR_TCE: case KVM_CAP_SPAPR_TCE_64: - case KVM_CAP_PPC_ALLOC_HTAB: case KVM_CAP_PPC_RTAS: case KVM_CAP_PPC_FIXUP_HCALL: case KVM_CAP_PPC_ENABLE_HCALL: @@ -533,13 +544,20 @@ #endif r = 1; break; + + case KVM_CAP_PPC_ALLOC_HTAB: + r = hv_enabled; + break; #endif /* CONFIG_PPC_BOOK3S_64 */ #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE case KVM_CAP_PPC_SMT: - if (hv_enabled) - r = threads_per_subcore; - else - r = 0; + r = 0; + if (hv_enabled) { + if (cpu_has_feature(CPU_FTR_ARCH_300)) + r = 1; + else + r = threads_per_subcore; + } break; case KVM_CAP_PPC_RMA: r = 0; @@ -739,6 +757,42 @@ #endif } +/* + * irq_bypass_add_producer and irq_bypass_del_producer are only + * useful if the architecture supports PCI passthrough. + * irq_bypass_stop and irq_bypass_start are not needed and so + * kvm_ops are not defined for them. + */ +bool kvm_arch_has_irq_bypass(void) +{ + return ((kvmppc_hv_ops && kvmppc_hv_ops->irq_bypass_add_producer) || + (kvmppc_pr_ops && kvmppc_pr_ops->irq_bypass_add_producer)); +} + +int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons, + struct irq_bypass_producer *prod) +{ + struct kvm_kernel_irqfd *irqfd = + container_of(cons, struct kvm_kernel_irqfd, consumer); + struct kvm *kvm = irqfd->kvm; + + if (kvm->arch.kvm_ops->irq_bypass_add_producer) + return kvm->arch.kvm_ops->irq_bypass_add_producer(cons, prod); + + return 0; +} + +void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons, + struct irq_bypass_producer *prod) +{ + struct kvm_kernel_irqfd *irqfd = + container_of(cons, struct kvm_kernel_irqfd, consumer); + struct kvm *kvm = irqfd->kvm; + + if (kvm->arch.kvm_ops->irq_bypass_del_producer) + kvm->arch.kvm_ops->irq_bypass_del_producer(cons, prod); +} + static void kvmppc_complete_mmio_load(struct kvm_vcpu *vcpu, struct kvm_run *run) { @@ -1167,6 +1221,19 @@ return r; } +bool kvm_arch_intc_initialized(struct kvm *kvm) +{ +#ifdef CONFIG_KVM_MPIC + if (kvm->arch.mpic) + return true; +#endif +#ifdef CONFIG_KVM_XICS + if (kvm->arch.xics) + return true; +#endif + return false; +} + int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu, struct kvm_mp_state *mp_state) { --- linux-4.8.0.orig/arch/powerpc/kvm/trace_hv.h +++ linux-4.8.0/arch/powerpc/kvm/trace_hv.h @@ -432,6 +432,28 @@ __entry->runner_vcpu, __entry->n_runnable, __entry->tgid) ); +TRACE_EVENT(kvmppc_vcore_wakeup, + TP_PROTO(int do_sleep, __u64 ns), + + TP_ARGS(do_sleep, ns), + + TP_STRUCT__entry( + __field(__u64, ns) + __field(int, waited) + __field(pid_t, tgid) + ), + + TP_fast_assign( + __entry->ns = ns; + __entry->waited = do_sleep; + __entry->tgid = current->tgid; + ), + + TP_printk("%s time %llu ns, tgid=%d", + __entry->waited ? "wait" : "poll", + __entry->ns, __entry->tgid) +); + TRACE_EVENT(kvmppc_run_vcpu_enter, TP_PROTO(struct kvm_vcpu *vcpu), --- linux-4.8.0.orig/arch/powerpc/lib/Makefile +++ linux-4.8.0/arch/powerpc/lib/Makefile @@ -21,9 +21,7 @@ obj64-$(CONFIG_SMP) += locks.o obj64-$(CONFIG_ALTIVEC) += vmx-helper.o -ifeq ($(CONFIG_GENERIC_CSUM),) -obj-y += checksum_$(CONFIG_WORD_SIZE).o checksum_wrappers.o -endif +obj-y += checksum_$(BITS).o checksum_wrappers.o obj-$(CONFIG_PPC_EMULATE_SSTEP) += sstep.o ldstfp.o --- linux-4.8.0.orig/arch/powerpc/lib/checksum_64.S +++ linux-4.8.0/arch/powerpc/lib/checksum_64.S @@ -35,7 +35,7 @@ * work to calculate the correct checksum, we ignore that case * and take the potential slowdown of unaligned loads. */ - rldicl. r6,r3,64-1,64-2 /* r6 = (r3 & 0x3) >> 1 */ + rldicl. r6,r3,64-1,64-2 /* r6 = (r3 >> 1) & 0x3 */ beq .Lcsum_aligned li r7,4 @@ -167,8 +167,12 @@ beq .Lcsum_finish lbz r6,0(r3) +#ifdef __BIG_ENDIAN__ sldi r9,r6,8 /* Pad the byte out to 16 bits */ adde r0,r0,r9 +#else + adde r0,r0,r6 +#endif .Lcsum_finish: addze r0,r0 /* add in final carry */ @@ -234,7 +238,7 @@ * If the source and destination are relatively unaligned we only * align the source. This keeps things simple. */ - rldicl. r6,r3,64-1,64-2 /* r6 = (r3 & 0x3) >> 1 */ + rldicl. r6,r3,64-1,64-2 /* r6 = (r3 >> 1) & 0x3 */ beq .Lcopy_aligned li r9,4 @@ -396,8 +400,12 @@ beq .Lcopy_finish srcnr; lbz r6,0(r3) +#ifdef __BIG_ENDIAN__ sldi r9,r6,8 /* Pad the byte out to 16 bits */ adde r0,r0,r9 +#else + adde r0,r0,r6 +#endif dstnr; stb r6,0(r4) .Lcopy_finish: --- linux-4.8.0.orig/arch/powerpc/lib/copyuser_64.S +++ linux-4.8.0/arch/powerpc/lib/copyuser_64.S @@ -359,6 +359,7 @@ addi r3,r3,8 171: 177: +179: addi r3,r3,8 370: 372: @@ -373,7 +374,6 @@ 173: 174: 175: -179: 181: 184: 186: --- linux-4.8.0.orig/arch/powerpc/lib/sstep.c +++ linux-4.8.0/arch/powerpc/lib/sstep.c @@ -12,6 +12,7 @@ #include #include #include +#include #include #include #include --- linux-4.8.0.orig/arch/powerpc/mm/Makefile +++ linux-4.8.0/arch/powerpc/mm/Makefile @@ -7,17 +7,17 @@ ccflags-$(CONFIG_PPC64) := $(NO_MINIMAL_TOC) obj-y := fault.o mem.o pgtable.o mmap.o \ - init_$(CONFIG_WORD_SIZE).o \ - pgtable_$(CONFIG_WORD_SIZE).o + init_$(BITS).o pgtable_$(BITS).o \ + init-common.o obj-$(CONFIG_PPC_MMU_NOHASH) += mmu_context_nohash.o tlb_nohash.o \ tlb_nohash_low.o -obj-$(CONFIG_PPC_BOOK3E) += tlb_low_$(CONFIG_WORD_SIZE)e.o +obj-$(CONFIG_PPC_BOOK3E) += tlb_low_$(BITS)e.o hash64-$(CONFIG_PPC_NATIVE) := hash_native_64.o obj-$(CONFIG_PPC_BOOK3E_64) += pgtable-book3e.o obj-$(CONFIG_PPC_STD_MMU_64) += pgtable-hash64.o hash_utils_64.o slb_low.o slb.o $(hash64-y) mmu_context_book3s64.o pgtable-book3s64.o obj-$(CONFIG_PPC_RADIX_MMU) += pgtable-radix.o tlb-radix.o obj-$(CONFIG_PPC_STD_MMU_32) += ppc_mmu_32.o hash_low_32.o mmu_context_hash32.o -obj-$(CONFIG_PPC_STD_MMU) += tlb_hash$(CONFIG_WORD_SIZE).o +obj-$(CONFIG_PPC_STD_MMU) += tlb_hash$(BITS).o ifeq ($(CONFIG_PPC_STD_MMU_64),y) obj-$(CONFIG_PPC_4K_PAGES) += hash64_4k.o obj-$(CONFIG_PPC_64K_PAGES) += hash64_64k.o --- linux-4.8.0.orig/arch/powerpc/mm/copro_fault.c +++ linux-4.8.0/arch/powerpc/mm/copro_fault.c @@ -67,11 +67,13 @@ if (!(vma->vm_flags & (VM_READ | VM_EXEC))) goto out_unlock; /* - * protfault should only happen due to us - * mapping a region readonly temporarily. PROT_NONE - * is also covered by the VMA check above. + * PROT_NONE is covered by the VMA check above. + * and hash should get a NOHPTE fault instead of + * a PROTFAULT in case fixup is needed for things + * like autonuma. */ - WARN_ON_ONCE(dsisr & DSISR_PROTFAULT); + if (!radix_enabled()) + WARN_ON_ONCE(dsisr & DSISR_PROTFAULT); } ret = 0; @@ -106,6 +108,8 @@ switch (REGION_ID(ea)) { case USER_REGION_ID: pr_devel("%s: 0x%llx -- USER_REGION_ID\n", __func__, ea); + if (mm == NULL) + return 1; psize = get_slice_psize(mm, ea); ssize = user_segment_size(ea); vsid = get_vsid(mm->context.id, ea, ssize); --- linux-4.8.0.orig/arch/powerpc/mm/fault.c +++ linux-4.8.0/arch/powerpc/mm/fault.c @@ -253,8 +253,11 @@ if (unlikely(debugger_fault_handler(regs))) goto bail; - /* On a kernel SLB miss we can only check for a valid exception entry */ - if (!user_mode(regs) && (address >= TASK_SIZE)) { + /* + * The kernel should never take an execute fault nor should it + * take a page fault to a kernel address. + */ + if (!user_mode(regs) && (is_exec || (address >= TASK_SIZE))) { rc = SIGSEGV; goto bail; } @@ -404,14 +407,6 @@ (cpu_has_feature(CPU_FTR_NOEXECUTE) || !(vma->vm_flags & (VM_READ | VM_WRITE)))) goto bad_area; -#ifdef CONFIG_PPC_STD_MMU - /* - * protfault should only happen due to us - * mapping a region readonly temporarily. PROT_NONE - * is also covered by the VMA check above. - */ - WARN_ON_ONCE(error_code & DSISR_PROTFAULT); -#endif /* CONFIG_PPC_STD_MMU */ /* a write */ } else if (is_write) { if (!(vma->vm_flags & VM_WRITE)) @@ -421,8 +416,40 @@ } else { if (!(vma->vm_flags & (VM_READ | VM_EXEC | VM_WRITE))) goto bad_area; - WARN_ON_ONCE(error_code & DSISR_PROTFAULT); } +#ifdef CONFIG_PPC_STD_MMU + /* + * For hash translation mode, we should never get a + * PROTFAULT. Any update to pte to reduce access will result in us + * removing the hash page table entry, thus resulting in a DSISR_NOHPTE + * fault instead of DSISR_PROTFAULT. + * + * A pte update to relax the access will not result in a hash page table + * entry invalidate and hence can result in DSISR_PROTFAULT. + * ptep_set_access_flags() doesn't do a hpte flush. This is why we have + * the special !is_write in the below conditional. + * + * For platforms that doesn't supports coherent icache and do support + * per page noexec bit, we do setup things such that we do the + * sync between D/I cache via fault. But that is handled via low level + * hash fault code (hash_page_do_lazy_icache()) and we should not reach + * here in such case. + * + * For wrong access that can result in PROTFAULT, the above vma->vm_flags + * check should handle those and hence we should fall to the bad_area + * handling correctly. + * + * For embedded with per page exec support that doesn't support coherent + * icache we do get PROTFAULT and we handle that D/I cache sync in + * set_pte_at while taking the noexec/prot fault. Hence this is WARN_ON + * is conditional for server MMU. + * + * For radix, we can get prot fault for autonuma case, because radix + * page table will have them marked noaccess for user. + */ + if (!radix_enabled() && !is_write) + WARN_ON_ONCE(error_code & DSISR_PROTFAULT); +#endif /* CONFIG_PPC_STD_MMU */ /* * If for any reason at all we couldn't handle the fault, --- linux-4.8.0.orig/arch/powerpc/mm/hash64_4k.c +++ linux-4.8.0/arch/powerpc/mm/hash64_4k.c @@ -55,7 +55,7 @@ */ rflags = htab_convert_pte_flags(new_pte); - if (!cpu_has_feature(CPU_FTR_NOEXECUTE) && + if (cpu_has_feature(CPU_FTR_NOEXECUTE) && !cpu_has_feature(CPU_FTR_COHERENT_ICACHE)) rflags = hash_page_do_lazy_icache(rflags, __pte(old_pte), trap); --- linux-4.8.0.orig/arch/powerpc/mm/hash64_64k.c +++ linux-4.8.0/arch/powerpc/mm/hash64_64k.c @@ -87,7 +87,7 @@ subpg_pte = new_pte & ~subpg_prot; rflags = htab_convert_pte_flags(subpg_pte); - if (!cpu_has_feature(CPU_FTR_NOEXECUTE) && + if (cpu_has_feature(CPU_FTR_NOEXECUTE) && !cpu_has_feature(CPU_FTR_COHERENT_ICACHE)) { /* @@ -258,7 +258,7 @@ rflags = htab_convert_pte_flags(new_pte); - if (!cpu_has_feature(CPU_FTR_NOEXECUTE) && + if (cpu_has_feature(CPU_FTR_NOEXECUTE) && !cpu_has_feature(CPU_FTR_COHERENT_ICACHE)) rflags = hash_page_do_lazy_icache(rflags, __pte(old_pte), trap); --- linux-4.8.0.orig/arch/powerpc/mm/hash_native_64.c +++ linux-4.8.0/arch/powerpc/mm/hash_native_64.c @@ -221,13 +221,18 @@ return -1; hpte_v = hpte_encode_v(vpn, psize, apsize, ssize) | vflags | HPTE_V_VALID; - hpte_r = hpte_encode_r(pa, psize, apsize, ssize) | rflags; + hpte_r = hpte_encode_r(pa, psize, apsize) | rflags; if (!(vflags & HPTE_V_BOLTED)) { DBG_LOW(" i=%x hpte_v=%016lx, hpte_r=%016lx\n", i, hpte_v, hpte_r); } + if (cpu_has_feature(CPU_FTR_ARCH_300)) { + hpte_r = hpte_old_to_new_r(hpte_v, hpte_r); + hpte_v = hpte_old_to_new_v(hpte_v); + } + hptep->r = cpu_to_be64(hpte_r); /* Guarantee the second dword is visible before the valid bit */ eieio(); @@ -295,6 +300,8 @@ vpn, want_v & HPTE_V_AVPN, slot, newpp); hpte_v = be64_to_cpu(hptep->v); + if (cpu_has_feature(CPU_FTR_ARCH_300)) + hpte_v = hpte_new_to_old_v(hpte_v, be64_to_cpu(hptep->r)); /* * We need to invalidate the TLB always because hpte_remove doesn't do * a tlb invalidate. If a hash bucket gets full, we "evict" a more/less @@ -309,6 +316,8 @@ native_lock_hpte(hptep); /* recheck with locks held */ hpte_v = be64_to_cpu(hptep->v); + if (cpu_has_feature(CPU_FTR_ARCH_300)) + hpte_v = hpte_new_to_old_v(hpte_v, be64_to_cpu(hptep->r)); if (unlikely(!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID))) { ret = -1; @@ -350,6 +359,8 @@ for (i = 0; i < HPTES_PER_GROUP; i++) { hptep = htab_address + slot; hpte_v = be64_to_cpu(hptep->v); + if (cpu_has_feature(CPU_FTR_ARCH_300)) + hpte_v = hpte_new_to_old_v(hpte_v, be64_to_cpu(hptep->r)); if (HPTE_V_COMPARE(hpte_v, want_v) && (hpte_v & HPTE_V_VALID)) /* HPTE matches */ @@ -409,6 +420,8 @@ want_v = hpte_encode_avpn(vpn, bpsize, ssize); native_lock_hpte(hptep); hpte_v = be64_to_cpu(hptep->v); + if (cpu_has_feature(CPU_FTR_ARCH_300)) + hpte_v = hpte_new_to_old_v(hpte_v, be64_to_cpu(hptep->r)); /* * We need to invalidate the TLB always because hpte_remove doesn't do @@ -467,6 +480,8 @@ want_v = hpte_encode_avpn(vpn, psize, ssize); native_lock_hpte(hptep); hpte_v = be64_to_cpu(hptep->v); + if (cpu_has_feature(CPU_FTR_ARCH_300)) + hpte_v = hpte_new_to_old_v(hpte_v, be64_to_cpu(hptep->r)); /* Even if we miss, we need to invalidate the TLB */ if (!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID)) @@ -493,36 +508,6 @@ } #endif -static inline int __hpte_actual_psize(unsigned int lp, int psize) -{ - int i, shift; - unsigned int mask; - - /* start from 1 ignoring MMU_PAGE_4K */ - for (i = 1; i < MMU_PAGE_COUNT; i++) { - - /* invalid penc */ - if (mmu_psize_defs[psize].penc[i] == -1) - continue; - /* - * encoding bits per actual page size - * PTE LP actual page size - * rrrr rrrz >=8KB - * rrrr rrzz >=16KB - * rrrr rzzz >=32KB - * rrrr zzzz >=64KB - * ....... - */ - shift = mmu_psize_defs[i].shift - LP_SHIFT; - if (shift > LP_BITS) - shift = LP_BITS; - mask = (1 << shift) - 1; - if ((lp & mask) == mmu_psize_defs[psize].penc[i]) - return i; - } - return -1; -} - static void hpte_decode(struct hash_pte *hpte, unsigned long slot, int *psize, int *apsize, int *ssize, unsigned long *vpn) { @@ -534,27 +519,19 @@ /* Look at the 8 bit LP value */ unsigned int lp = (hpte_r >> LP_SHIFT) & ((1 << LP_BITS) - 1); + if (cpu_has_feature(CPU_FTR_ARCH_300)) { + hpte_v = hpte_new_to_old_v(hpte_v, hpte_r); + hpte_r = hpte_new_to_old_r(hpte_r); + } if (!(hpte_v & HPTE_V_LARGE)) { size = MMU_PAGE_4K; a_size = MMU_PAGE_4K; } else { - for (size = 0; size < MMU_PAGE_COUNT; size++) { - - /* valid entries have a shift value */ - if (!mmu_psize_defs[size].shift) - continue; - - a_size = __hpte_actual_psize(lp, size); - if (a_size != -1) - break; - } + size = hpte_page_sizes[lp] & 0xf; + a_size = hpte_page_sizes[lp] >> 4; } /* This works for all page sizes, and for 256M and 1T segments */ - if (cpu_has_feature(CPU_FTR_ARCH_300)) - *ssize = hpte_r >> HPTE_R_3_0_SSIZE_SHIFT; - else - *ssize = hpte_v >> HPTE_V_SSIZE_SHIFT; - + *ssize = hpte_v >> HPTE_V_SSIZE_SHIFT; shift = mmu_psize_defs[size].shift; avpn = (HPTE_V_AVPN_VAL(hpte_v) & ~mmu_psize_defs[size].avpnm); @@ -659,6 +636,10 @@ unsigned long psize = batch->psize; int ssize = batch->ssize; int i; + unsigned int use_local; + + use_local = local && mmu_has_feature(MMU_FTR_TLBIEL) && + mmu_psize_defs[psize].tlbiel && !cxl_ctx_in_use(); local_irq_save(flags); @@ -677,6 +658,9 @@ want_v = hpte_encode_avpn(vpn, psize, ssize); native_lock_hpte(hptep); hpte_v = be64_to_cpu(hptep->v); + if (cpu_has_feature(CPU_FTR_ARCH_300)) + hpte_v = hpte_new_to_old_v(hpte_v, + be64_to_cpu(hptep->r)); if (!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID)) native_unlock_hpte(hptep); @@ -685,8 +669,7 @@ } pte_iterate_hashed_end(); } - if (mmu_has_feature(MMU_FTR_TLBIEL) && - mmu_psize_defs[psize].tlbiel && local) { + if (use_local) { asm volatile("ptesync":::"memory"); for (i = 0; i < number; i++) { vpn = batch->vpn[i]; --- linux-4.8.0.orig/arch/powerpc/mm/hash_utils_64.c +++ linux-4.8.0/arch/powerpc/mm/hash_utils_64.c @@ -93,6 +93,9 @@ struct mmu_psize_def mmu_psize_defs[MMU_PAGE_COUNT]; EXPORT_SYMBOL_GPL(mmu_psize_defs); +u8 hpte_page_sizes[1 << LP_BITS]; +EXPORT_SYMBOL_GPL(hpte_page_sizes); + struct hash_pte *htab_address; unsigned long htab_size_bytes; unsigned long htab_hash_mask; @@ -190,8 +193,12 @@ /* * Kernel read only mapped with ppp bits 0b110 */ - if (!(pteflags & _PAGE_WRITE)) - rflags |= (HPTE_R_PP0 | 0x2); + if (!(pteflags & _PAGE_WRITE)) { + if (mmu_has_feature(MMU_FTR_KERNEL_RO)) + rflags |= (HPTE_R_PP0 | 0x2); + else + rflags |= 0x3; + } } else { if (pteflags & _PAGE_RWX) rflags |= 0x2; @@ -526,7 +533,7 @@ */ #ifdef CONFIG_IBMEBUS return !cpu_has_feature(CPU_FTR_ARCH_207S) && - !firmware_has_feature(FW_FEATURE_SPLPAR); + firmware_has_feature(FW_FEATURE_SPLPAR); #else return false; #endif @@ -564,8 +571,60 @@ #endif /* CONFIG_HUGETLB_PAGE */ } +/* + * Fill in the hpte_page_sizes[] array. + * We go through the mmu_psize_defs[] array looking for all the + * supported base/actual page size combinations. Each combination + * has a unique pagesize encoding (penc) value in the low bits of + * the LP field of the HPTE. For actual page sizes less than 1MB, + * some of the upper LP bits are used for RPN bits, meaning that + * we need to fill in several entries in hpte_page_sizes[]. + * + * In diagrammatic form, with r = RPN bits and z = page size bits: + * PTE LP actual page size + * rrrr rrrz >=8KB + * rrrr rrzz >=16KB + * rrrr rzzz >=32KB + * rrrr zzzz >=64KB + * ... + * + * The zzzz bits are implementation-specific but are chosen so that + * no encoding for a larger page size uses the same value in its + * low-order N bits as the encoding for the 2^(12+N) byte page size + * (if it exists). + */ +static void init_hpte_page_sizes(void) +{ + long int ap, bp; + long int shift, penc; + + for (bp = 0; bp < MMU_PAGE_COUNT; ++bp) { + if (!mmu_psize_defs[bp].shift) + continue; /* not a supported page size */ + for (ap = bp; ap < MMU_PAGE_COUNT; ++ap) { + penc = mmu_psize_defs[bp].penc[ap]; + if (penc == -1) + continue; + shift = mmu_psize_defs[ap].shift - LP_SHIFT; + if (shift <= 0) + continue; /* should never happen */ + /* + * For page sizes less than 1MB, this loop + * replicates the entry for all possible values + * of the rrrr bits. + */ + while (penc < (1 << LP_BITS)) { + hpte_page_sizes[penc] = (ap << 4) | bp; + penc += 1 << shift; + } + } + } +} + static void __init htab_init_page_sizes(void) { + init_hpte_page_sizes(); + if (!debug_pagealloc_enabled()) { /* * Pick a size for the linear mapping. Currently, we only @@ -688,7 +747,7 @@ } #ifdef CONFIG_MEMORY_HOTPLUG -int create_section_mapping(unsigned long start, unsigned long end) +int hash__create_section_mapping(unsigned long start, unsigned long end) { int rc = htab_bolt_mapping(start, end, __pa(start), pgprot_val(PAGE_KERNEL), mmu_linear_psize, @@ -702,7 +761,7 @@ return rc; } -int remove_section_mapping(unsigned long start, unsigned long end) +int hash__remove_section_mapping(unsigned long start, unsigned long end) { int rc = htab_remove_mapping(start, end, mmu_linear_psize, mmu_kernel_ssize); @@ -711,38 +770,43 @@ } #endif /* CONFIG_MEMORY_HOTPLUG */ +static void update_hid_for_hash(void) +{ + unsigned long hid0; + unsigned long rb = 3UL << PPC_BITLSHIFT(53); /* IS = 3 */ + + asm volatile("ptesync": : :"memory"); + /* prs = 0, ric = 2, rs = 0, r = 1 is = 3 */ + asm volatile(PPC_TLBIE_5(%0, %4, %3, %2, %1) + : : "r"(rb), "i"(0), "i"(0), "i"(2), "r"(0) : "memory"); + asm volatile("eieio; tlbsync; ptesync; isync; slbia": : :"memory"); + /* + * now switch the HID + */ + hid0 = mfspr(SPRN_HID0); + hid0 &= ~HID0_POWER9_RADIX; + mtspr(SPRN_HID0, hid0); + asm volatile("isync": : :"memory"); + + /* Wait for it to happen */ + while ((mfspr(SPRN_HID0) & HID0_POWER9_RADIX)) + cpu_relax(); +} + static void __init hash_init_partition_table(phys_addr_t hash_table, unsigned long htab_size) { - unsigned long ps_field; - unsigned long patb_size = 1UL << PATB_SIZE_SHIFT; + mmu_partition_table_init(); /* - * slb llp encoding for the page size used in VPM real mode. - * We can ignore that for lpid 0 + * PS field (VRMA page size) is not used for LPID 0, hence set to 0. + * For now, UPRT is 0 and we have no segment table. */ - ps_field = 0; htab_size = __ilog2(htab_size) - 18; - - BUILD_BUG_ON_MSG((PATB_SIZE_SHIFT > 24), "Partition table size too large."); - partition_tb = __va(memblock_alloc_base(patb_size, patb_size, - MEMBLOCK_ALLOC_ANYWHERE)); - - /* Initialize the Partition Table with no entries */ - memset((void *)partition_tb, 0, patb_size); - partition_tb->patb0 = cpu_to_be64(ps_field | hash_table | htab_size); - /* - * FIXME!! This should be done via update_partition table - * For now UPRT is 0 for us. - */ - partition_tb->patb1 = 0; + mmu_partition_table_set_entry(0, hash_table | htab_size, 0); pr_info("Partition table %p\n", partition_tb); - /* - * update partition table control register, - * 64 K size. - */ - mtspr(SPRN_PTCR, __pa(partition_tb) | (PATB_SIZE_SHIFT - 12)); - + if (cpu_has_feature(CPU_FTR_POWER9_DD1)) + update_hid_for_hash(); } static void __init htab_initialize(void) @@ -949,6 +1013,10 @@ { /* Initialize hash table for that CPU */ if (!firmware_has_feature(FW_FEATURE_LPAR)) { + + if (cpu_has_feature(CPU_FTR_POWER9_DD1)) + update_hid_for_hash(); + if (!cpu_has_feature(CPU_FTR_ARCH_300)) mtspr(SPRN_SDR1, _SDR1); else --- linux-4.8.0.orig/arch/powerpc/mm/hugetlbpage-radix.c +++ linux-4.8.0/arch/powerpc/mm/hugetlbpage-radix.c @@ -65,7 +65,7 @@ addr = ALIGN(addr, huge_page_size(h)); vma = find_vma(mm, addr); if (TASK_SIZE - len >= addr && - (!vma || addr + len <= vma->vm_start)) + (!vma || addr + len <= vm_start_gap(vma))) return addr; } /* --- linux-4.8.0.orig/arch/powerpc/mm/hugetlbpage.c +++ linux-4.8.0/arch/powerpc/mm/hugetlbpage.c @@ -1019,8 +1019,15 @@ pte = READ_ONCE(*ptep); mask = _PAGE_PRESENT | _PAGE_READ; + + /* + * On some CPUs like the 8xx, _PAGE_RW hence _PAGE_WRITE is defined + * as 0 and _PAGE_RO has to be set when a page is not writable + */ if (write) mask |= _PAGE_WRITE; + else + mask |= _PAGE_RO; if ((pte_val(pte) & mask) != mask) return 0; --- linux-4.8.0.orig/arch/powerpc/mm/init-common.c +++ linux-4.8.0/arch/powerpc/mm/init-common.c @@ -0,0 +1,107 @@ +/* + * PowerPC version + * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org) + * + * Modifications by Paul Mackerras (PowerMac) (paulus@cs.anu.edu.au) + * and Cort Dougan (PReP) (cort@cs.nmt.edu) + * Copyright (C) 1996 Paul Mackerras + * + * Derived from "arch/i386/mm/init.c" + * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds + * + * Dave Engebretsen + * Rework for PPC64 port. + * + * 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; either version + * 2 of the License, or (at your option) any later version. + * + */ + +#undef DEBUG + +#include +#include +#include + +static void pgd_ctor(void *addr) +{ + memset(addr, 0, PGD_TABLE_SIZE); +} + +static void pud_ctor(void *addr) +{ + memset(addr, 0, PUD_TABLE_SIZE); +} + +static void pmd_ctor(void *addr) +{ + memset(addr, 0, PMD_TABLE_SIZE); +} + +struct kmem_cache *pgtable_cache[MAX_PGTABLE_INDEX_SIZE]; + +/* + * Create a kmem_cache() for pagetables. This is not used for PTE + * pages - they're linked to struct page, come from the normal free + * pages pool and have a different entry size (see real_pte_t) to + * everything else. Caches created by this function are used for all + * the higher level pagetables, and for hugepage pagetables. + */ +void pgtable_cache_add(unsigned shift, void (*ctor)(void *)) +{ + char *name; + unsigned long table_size = sizeof(void *) << shift; + unsigned long align = table_size; + + /* When batching pgtable pointers for RCU freeing, we store + * the index size in the low bits. Table alignment must be + * big enough to fit it. + * + * Likewise, hugeapge pagetable pointers contain a (different) + * shift value in the low bits. All tables must be aligned so + * as to leave enough 0 bits in the address to contain it. */ + unsigned long minalign = max(MAX_PGTABLE_INDEX_SIZE + 1, + HUGEPD_SHIFT_MASK + 1); + struct kmem_cache *new; + + /* It would be nice if this was a BUILD_BUG_ON(), but at the + * moment, gcc doesn't seem to recognize is_power_of_2 as a + * constant expression, so so much for that. */ + BUG_ON(!is_power_of_2(minalign)); + BUG_ON((shift < 1) || (shift > MAX_PGTABLE_INDEX_SIZE)); + + if (PGT_CACHE(shift)) + return; /* Already have a cache of this size */ + + align = max_t(unsigned long, align, minalign); + name = kasprintf(GFP_KERNEL, "pgtable-2^%d", shift); + new = kmem_cache_create(name, table_size, align, 0, ctor); + kfree(name); + pgtable_cache[shift - 1] = new; + pr_debug("Allocated pgtable cache for order %d\n", shift); +} + + +void pgtable_cache_init(void) +{ + pgtable_cache_add(PGD_INDEX_SIZE, pgd_ctor); + + if (PMD_INDEX_SIZE && !PGT_CACHE(PMD_INDEX_SIZE)) + pgtable_cache_add(PMD_CACHE_INDEX, pmd_ctor); + /* + * In all current configs, when the PUD index exists it's the + * same size as either the pgd or pmd index except with THP enabled + * on book3s 64 + */ + if (PUD_INDEX_SIZE && !PGT_CACHE(PUD_INDEX_SIZE)) + pgtable_cache_add(PUD_INDEX_SIZE, pud_ctor); + + if (!PGT_CACHE(PGD_INDEX_SIZE)) + panic("Couldn't allocate pgd cache"); + if (PMD_INDEX_SIZE && !PGT_CACHE(PMD_INDEX_SIZE)) + panic("Couldn't allocate pmd pgtable caches"); + if (PUD_INDEX_SIZE && !PGT_CACHE(PUD_INDEX_SIZE)) + panic("Couldn't allocate pud pgtable caches"); +} --- linux-4.8.0.orig/arch/powerpc/mm/init_64.c +++ linux-4.8.0/arch/powerpc/mm/init_64.c @@ -42,6 +42,8 @@ #include #include #include +#include +#include #include #include @@ -80,83 +82,6 @@ phys_addr_t kernstart_addr; EXPORT_SYMBOL_GPL(kernstart_addr); -static void pgd_ctor(void *addr) -{ - memset(addr, 0, PGD_TABLE_SIZE); -} - -static void pud_ctor(void *addr) -{ - memset(addr, 0, PUD_TABLE_SIZE); -} - -static void pmd_ctor(void *addr) -{ - memset(addr, 0, PMD_TABLE_SIZE); -} - -struct kmem_cache *pgtable_cache[MAX_PGTABLE_INDEX_SIZE]; - -/* - * Create a kmem_cache() for pagetables. This is not used for PTE - * pages - they're linked to struct page, come from the normal free - * pages pool and have a different entry size (see real_pte_t) to - * everything else. Caches created by this function are used for all - * the higher level pagetables, and for hugepage pagetables. - */ -void pgtable_cache_add(unsigned shift, void (*ctor)(void *)) -{ - char *name; - unsigned long table_size = sizeof(void *) << shift; - unsigned long align = table_size; - - /* When batching pgtable pointers for RCU freeing, we store - * the index size in the low bits. Table alignment must be - * big enough to fit it. - * - * Likewise, hugeapge pagetable pointers contain a (different) - * shift value in the low bits. All tables must be aligned so - * as to leave enough 0 bits in the address to contain it. */ - unsigned long minalign = max(MAX_PGTABLE_INDEX_SIZE + 1, - HUGEPD_SHIFT_MASK + 1); - struct kmem_cache *new; - - /* It would be nice if this was a BUILD_BUG_ON(), but at the - * moment, gcc doesn't seem to recognize is_power_of_2 as a - * constant expression, so so much for that. */ - BUG_ON(!is_power_of_2(minalign)); - BUG_ON((shift < 1) || (shift > MAX_PGTABLE_INDEX_SIZE)); - - if (PGT_CACHE(shift)) - return; /* Already have a cache of this size */ - - align = max_t(unsigned long, align, minalign); - name = kasprintf(GFP_KERNEL, "pgtable-2^%d", shift); - new = kmem_cache_create(name, table_size, align, 0, ctor); - kfree(name); - pgtable_cache[shift - 1] = new; - pr_debug("Allocated pgtable cache for order %d\n", shift); -} - - -void pgtable_cache_init(void) -{ - pgtable_cache_add(PGD_INDEX_SIZE, pgd_ctor); - pgtable_cache_add(PMD_CACHE_INDEX, pmd_ctor); - /* - * In all current configs, when the PUD index exists it's the - * same size as either the pgd or pmd index except with THP enabled - * on book3s 64 - */ - if (PUD_INDEX_SIZE && !PGT_CACHE(PUD_INDEX_SIZE)) - pgtable_cache_add(PUD_INDEX_SIZE, pud_ctor); - - if (!PGT_CACHE(PGD_INDEX_SIZE) || !PGT_CACHE(PMD_CACHE_INDEX)) - panic("Couldn't allocate pgtable caches"); - if (PUD_INDEX_SIZE && !PGT_CACHE(PUD_INDEX_SIZE)) - panic("Couldn't allocate pud pgtable caches"); -} - #ifdef CONFIG_SPARSEMEM_VMEMMAP /* * Given an address within the vmemmap, determine the pfn of the page that @@ -421,12 +346,70 @@ } early_param("disable_radix", parse_disable_radix); +/* + * If we're running under a hypervisor, we need to check the contents of + * /chosen/ibm,architecture-vec-5 to see if the hypervisor is willing to do + * radix. If not, we clear the radix feature bit so we fall back to hash. + */ +static void early_check_vec5(void) +{ + unsigned long root, chosen; + int size; + const u8 *vec5; + u8 mmu_supported; + + root = of_get_flat_dt_root(); + chosen = of_get_flat_dt_subnode_by_name(root, "chosen"); + if (chosen == -FDT_ERR_NOTFOUND) { + cur_cpu_spec->mmu_features &= ~MMU_FTR_TYPE_RADIX; + return; + } + vec5 = of_get_flat_dt_prop(chosen, "ibm,architecture-vec-5", &size); + if (!vec5) { + cur_cpu_spec->mmu_features &= ~MMU_FTR_TYPE_RADIX; + return; + } + if (size <= OV5_INDX(OV5_MMU_SUPPORT)) { + cur_cpu_spec->mmu_features &= ~MMU_FTR_TYPE_RADIX; + return; + } + + /* Check for supported configuration */ + mmu_supported = vec5[OV5_INDX(OV5_MMU_SUPPORT)] & + OV5_FEAT(OV5_MMU_SUPPORT); + if (mmu_supported == OV5_FEAT(OV5_MMU_RADIX)) { + /* Hypervisor only supports radix - check enabled && GTSE */ + if (!early_radix_enabled()) { + pr_warn("WARNING: Ignoring cmdline option disable_radix\n"); + } + if (!(vec5[OV5_INDX(OV5_RADIX_GTSE)] & + OV5_FEAT(OV5_RADIX_GTSE))) { + pr_warn("WARNING: Hypervisor doesn't support RADIX with GTSE\n"); + } + /* Do radix anyway - the hypervisor said we had to */ + cur_cpu_spec->mmu_features |= MMU_FTR_TYPE_RADIX; + } else if (mmu_supported == OV5_FEAT(OV5_MMU_HASH)) { + /* Hypervisor only supports hash - disable radix */ + cur_cpu_spec->mmu_features &= ~MMU_FTR_TYPE_RADIX; + } +} + void __init mmu_early_init_devtree(void) { /* Disable radix mode based on kernel command line. */ - if (disable_radix) + /* We don't yet have the machinery to do radix as a guest. */ + if (disable_radix || !(mfmsr() & MSR_HV)) cur_cpu_spec->mmu_features &= ~MMU_FTR_TYPE_RADIX; + /* + * Check /chosen/ibm,architecture-vec-5 if running as a guest. + * When running bare-metal, we can use radix if we like + * even though the ibm,architecture-vec-5 property created by + * skiboot doesn't have the necessary bits set. + */ + if (!(mfmsr() & MSR_HV)) + early_check_vec5(); + if (early_radix_enabled()) radix__early_init_devtree(); else --- linux-4.8.0.orig/arch/powerpc/mm/mmap.c +++ linux-4.8.0/arch/powerpc/mm/mmap.c @@ -106,7 +106,7 @@ addr = PAGE_ALIGN(addr); vma = find_vma(mm, addr); if (TASK_SIZE - len >= addr && addr >= mmap_min_addr && - (!vma || addr + len <= vma->vm_start)) + (!vma || addr + len <= vm_start_gap(vma))) return addr; } @@ -142,7 +142,7 @@ addr = PAGE_ALIGN(addr); vma = find_vma(mm, addr); if (TASK_SIZE - len >= addr && addr >= mmap_min_addr && - (!vma || addr + len <= vma->vm_start)) + (!vma || addr + len <= vm_start_gap(vma))) return addr; } --- linux-4.8.0.orig/arch/powerpc/mm/mmu_context_book3s64.c +++ linux-4.8.0/arch/powerpc/mm/mmu_context_book3s64.c @@ -115,7 +115,7 @@ mm->context.pte_frag = NULL; #endif #ifdef CONFIG_SPAPR_TCE_IOMMU - mm_iommu_init(&mm->context); + mm_iommu_init(mm); #endif return 0; } @@ -156,13 +156,11 @@ } #endif - void destroy_context(struct mm_struct *mm) { #ifdef CONFIG_SPAPR_TCE_IOMMU - mm_iommu_cleanup(&mm->context); + WARN_ON_ONCE(!list_empty(&mm->context.iommu_group_mem_list)); #endif - #ifdef CONFIG_PPC_ICSWX drop_cop(mm->context.acop, mm); kfree(mm->context.cop_lockp); --- linux-4.8.0.orig/arch/powerpc/mm/mmu_context_iommu.c +++ linux-4.8.0/arch/powerpc/mm/mmu_context_iommu.c @@ -15,6 +15,9 @@ #include #include #include +#include +#include +#include #include static DEFINE_MUTEX(mem_list_mutex); @@ -53,7 +56,7 @@ } pr_debug("[%d] RLIMIT_MEMLOCK HASH64 %c%ld %ld/%ld\n", - current->pid, + current ? current->pid : 0, incr ? '+' : '-', npages << PAGE_SHIFT, mm->locked_vm << PAGE_SHIFT, @@ -63,28 +66,71 @@ return ret; } -bool mm_iommu_preregistered(void) +bool mm_iommu_preregistered(struct mm_struct *mm) { - if (!current || !current->mm) - return false; - - return !list_empty(¤t->mm->context.iommu_group_mem_list); + return !list_empty(&mm->context.iommu_group_mem_list); } EXPORT_SYMBOL_GPL(mm_iommu_preregistered); -long mm_iommu_get(unsigned long ua, unsigned long entries, +/* + * Taken from alloc_migrate_target with changes to remove CMA allocations + */ +struct page *new_iommu_non_cma_page(struct page *page, unsigned long private, + int **resultp) +{ + gfp_t gfp_mask = GFP_USER; + struct page *new_page; + + if (PageHuge(page) || PageTransHuge(page) || PageCompound(page)) + return NULL; + + if (PageHighMem(page)) + gfp_mask |= __GFP_HIGHMEM; + + /* + * We don't want the allocation to force an OOM if possibe + */ + new_page = alloc_page(gfp_mask | __GFP_NORETRY | __GFP_NOWARN); + return new_page; +} + +static int mm_iommu_move_page_from_cma(struct page *page) +{ + int ret = 0; + LIST_HEAD(cma_migrate_pages); + + /* Ignore huge pages for now */ + if (PageHuge(page) || PageTransHuge(page) || PageCompound(page)) + return -EBUSY; + + lru_add_drain(); + ret = isolate_lru_page(page); + if (ret) + return ret; + + list_add(&page->lru, &cma_migrate_pages); + put_page(page); /* Drop the gup reference */ + + ret = migrate_pages(&cma_migrate_pages, new_iommu_non_cma_page, + NULL, 0, MIGRATE_SYNC, MR_CMA); + if (ret) { + if (!list_empty(&cma_migrate_pages)) + putback_movable_pages(&cma_migrate_pages); + } + + return 0; +} + +long mm_iommu_get(struct mm_struct *mm, unsigned long ua, unsigned long entries, struct mm_iommu_table_group_mem_t **pmem) { struct mm_iommu_table_group_mem_t *mem; long i, j, ret = 0, locked_entries = 0; struct page *page = NULL; - if (!current || !current->mm) - return -ESRCH; /* process exited */ - mutex_lock(&mem_list_mutex); - list_for_each_entry_rcu(mem, ¤t->mm->context.iommu_group_mem_list, + list_for_each_entry_rcu(mem, &mm->context.iommu_group_mem_list, next) { if ((mem->ua == ua) && (mem->entries == entries)) { ++mem->used; @@ -102,7 +148,7 @@ } - ret = mm_iommu_adjust_locked_vm(current->mm, entries, true); + ret = mm_iommu_adjust_locked_vm(mm, entries, true); if (ret) goto unlock_exit; @@ -124,15 +170,36 @@ for (i = 0; i < entries; ++i) { if (1 != get_user_pages_fast(ua + (i << PAGE_SHIFT), 1/* pages */, 1/* iswrite */, &page)) { + ret = -EFAULT; for (j = 0; j < i; ++j) - put_page(pfn_to_page( - mem->hpas[j] >> PAGE_SHIFT)); + put_page(pfn_to_page(mem->hpas[j] >> + PAGE_SHIFT)); vfree(mem->hpas); kfree(mem); - ret = -EFAULT; goto unlock_exit; } - + /* + * If we get a page from the CMA zone, since we are going to + * be pinning these entries, we might as well move them out + * of the CMA zone if possible. NOTE: faulting in + migration + * can be expensive. Batching can be considered later + */ + if (get_pageblock_migratetype(page) == MIGRATE_CMA) { + if (mm_iommu_move_page_from_cma(page)) + goto populate; + if (1 != get_user_pages_fast(ua + (i << PAGE_SHIFT), + 1/* pages */, 1/* iswrite */, + &page)) { + ret = -EFAULT; + for (j = 0; j < i; ++j) + put_page(pfn_to_page(mem->hpas[j] >> + PAGE_SHIFT)); + vfree(mem->hpas); + kfree(mem); + goto unlock_exit; + } + } +populate: mem->hpas[i] = page_to_pfn(page) << PAGE_SHIFT; } @@ -142,11 +209,11 @@ mem->entries = entries; *pmem = mem; - list_add_rcu(&mem->next, ¤t->mm->context.iommu_group_mem_list); + list_add_rcu(&mem->next, &mm->context.iommu_group_mem_list); unlock_exit: if (locked_entries && ret) - mm_iommu_adjust_locked_vm(current->mm, locked_entries, false); + mm_iommu_adjust_locked_vm(mm, locked_entries, false); mutex_unlock(&mem_list_mutex); @@ -191,17 +258,13 @@ static void mm_iommu_release(struct mm_iommu_table_group_mem_t *mem) { list_del_rcu(&mem->next); - mm_iommu_adjust_locked_vm(current->mm, mem->entries, false); call_rcu(&mem->rcu, mm_iommu_free); } -long mm_iommu_put(struct mm_iommu_table_group_mem_t *mem) +long mm_iommu_put(struct mm_struct *mm, struct mm_iommu_table_group_mem_t *mem) { long ret = 0; - if (!current || !current->mm) - return -ESRCH; /* process exited */ - mutex_lock(&mem_list_mutex); if (mem->used == 0) { @@ -224,6 +287,8 @@ /* @mapped became 0 so now mappings are disabled, release the region */ mm_iommu_release(mem); + mm_iommu_adjust_locked_vm(mm, mem->entries, false); + unlock_exit: mutex_unlock(&mem_list_mutex); @@ -231,14 +296,12 @@ } EXPORT_SYMBOL_GPL(mm_iommu_put); -struct mm_iommu_table_group_mem_t *mm_iommu_lookup(unsigned long ua, - unsigned long size) +struct mm_iommu_table_group_mem_t *mm_iommu_lookup(struct mm_struct *mm, + unsigned long ua, unsigned long size) { struct mm_iommu_table_group_mem_t *mem, *ret = NULL; - list_for_each_entry_rcu(mem, - ¤t->mm->context.iommu_group_mem_list, - next) { + list_for_each_entry_rcu(mem, &mm->context.iommu_group_mem_list, next) { if ((mem->ua <= ua) && (ua + size <= mem->ua + (mem->entries << PAGE_SHIFT))) { @@ -251,14 +314,12 @@ } EXPORT_SYMBOL_GPL(mm_iommu_lookup); -struct mm_iommu_table_group_mem_t *mm_iommu_find(unsigned long ua, - unsigned long entries) +struct mm_iommu_table_group_mem_t *mm_iommu_find(struct mm_struct *mm, + unsigned long ua, unsigned long entries) { struct mm_iommu_table_group_mem_t *mem, *ret = NULL; - list_for_each_entry_rcu(mem, - ¤t->mm->context.iommu_group_mem_list, - next) { + list_for_each_entry_rcu(mem, &mm->context.iommu_group_mem_list, next) { if ((mem->ua == ua) && (mem->entries == entries)) { ret = mem; break; @@ -300,17 +361,7 @@ } EXPORT_SYMBOL_GPL(mm_iommu_mapped_dec); -void mm_iommu_init(mm_context_t *ctx) -{ - INIT_LIST_HEAD_RCU(&ctx->iommu_group_mem_list); -} - -void mm_iommu_cleanup(mm_context_t *ctx) +void mm_iommu_init(struct mm_struct *mm) { - struct mm_iommu_table_group_mem_t *mem, *tmp; - - list_for_each_entry_safe(mem, tmp, &ctx->iommu_group_mem_list, next) { - list_del_rcu(&mem->next); - mm_iommu_do_free(mem); - } + INIT_LIST_HEAD_RCU(&mm->context.iommu_group_mem_list); } --- linux-4.8.0.orig/arch/powerpc/mm/pgtable-book3s64.c +++ linux-4.8.0/arch/powerpc/mm/pgtable-book3s64.c @@ -35,7 +35,8 @@ #endif changed = !pmd_same(*(pmdp), entry); if (changed) { - __ptep_set_access_flags(pmdp_ptep(pmdp), pmd_pte(entry)); + __ptep_set_access_flags(vma->vm_mm, pmdp_ptep(pmdp), + pmd_pte(entry), address); flush_pmd_tlb_range(vma, address, address + HPAGE_PMD_SIZE); } return changed; @@ -116,3 +117,30 @@ return; } #endif /* CONFIG_TRANSPARENT_HUGEPAGE */ + +/* For use by kexec */ +void mmu_cleanup_all(void) +{ + if (radix_enabled()) + radix__mmu_cleanup_all(); + else if (mmu_hash_ops.hpte_clear_all) + mmu_hash_ops.hpte_clear_all(); +} + +#ifdef CONFIG_MEMORY_HOTPLUG +int create_section_mapping(unsigned long start, unsigned long end) +{ + if (radix_enabled()) + return radix__create_section_mapping(start, end); + + return hash__create_section_mapping(start, end); +} + +int remove_section_mapping(unsigned long start, unsigned long end) +{ + if (radix_enabled()) + return radix__remove_section_mapping(start, end); + + return hash__remove_section_mapping(start, end); +} +#endif /* CONFIG_MEMORY_HOTPLUG */ --- linux-4.8.0.orig/arch/powerpc/mm/pgtable-radix.c +++ linux-4.8.0/arch/powerpc/mm/pgtable-radix.c @@ -18,6 +18,7 @@ #include #include #include +#include #include @@ -107,59 +108,71 @@ return 0; } +static inline void __meminit print_mapping(unsigned long start, + unsigned long end, + unsigned long size) +{ + if (end <= start) + return; + + pr_info("Mapped range 0x%lx - 0x%lx with 0x%lx\n", start, end, size); +} + +static int __meminit create_physical_mapping(unsigned long start, + unsigned long end) +{ + unsigned long addr, mapping_size = 0; + + start = _ALIGN_UP(start, PAGE_SIZE); + for (addr = start; addr < end; addr += mapping_size) { + unsigned long gap, previous_size; + int rc; + + gap = end - addr; + previous_size = mapping_size; + + if (IS_ALIGNED(addr, PUD_SIZE) && gap >= PUD_SIZE && + mmu_psize_defs[MMU_PAGE_1G].shift) + mapping_size = PUD_SIZE; + else if (IS_ALIGNED(addr, PMD_SIZE) && gap >= PMD_SIZE && + mmu_psize_defs[MMU_PAGE_2M].shift) + mapping_size = PMD_SIZE; + else + mapping_size = PAGE_SIZE; + + if (mapping_size != previous_size) { + print_mapping(start, addr, previous_size); + start = addr; + } + + rc = radix__map_kernel_page((unsigned long)__va(addr), addr, + PAGE_KERNEL_X, mapping_size); + if (rc) + return rc; + } + + print_mapping(start, addr, mapping_size); + return 0; +} + static void __init radix_init_pgtable(void) { - int loop_count; - u64 base, end, start_addr; unsigned long rts_field; struct memblock_region *reg; - unsigned long linear_page_size; /* We don't support slb for radix */ mmu_slb_size = 0; /* * Create the linear mapping, using standard page size for now */ - loop_count = 0; - for_each_memblock(memory, reg) { - - start_addr = reg->base; - -redo: - if (loop_count < 1 && mmu_psize_defs[MMU_PAGE_1G].shift) - linear_page_size = PUD_SIZE; - else if (loop_count < 2 && mmu_psize_defs[MMU_PAGE_2M].shift) - linear_page_size = PMD_SIZE; - else - linear_page_size = PAGE_SIZE; - - base = _ALIGN_UP(start_addr, linear_page_size); - end = _ALIGN_DOWN(reg->base + reg->size, linear_page_size); - - pr_info("Mapping range 0x%lx - 0x%lx with 0x%lx\n", - (unsigned long)base, (unsigned long)end, - linear_page_size); - - while (base < end) { - radix__map_kernel_page((unsigned long)__va(base), - base, PAGE_KERNEL_X, - linear_page_size); - base += linear_page_size; - } - /* - * map the rest using lower page size - */ - if (end < reg->base + reg->size) { - start_addr = end; - loop_count++; - goto redo; - } - } + for_each_memblock(memory, reg) + WARN_ON(create_physical_mapping(reg->base, + reg->base + reg->size)); /* * Allocate Partition table and process table for the * host. */ - BUILD_BUG_ON_MSG((PRTB_SIZE_SHIFT > 23), "Process table size too large."); + BUILD_BUG_ON_MSG((PRTB_SIZE_SHIFT > 36), "Process table size too large."); process_tb = early_alloc_pgtable(1UL << PRTB_SIZE_SHIFT); /* * Fill in the process table. @@ -177,23 +190,15 @@ static void __init radix_init_partition_table(void) { - unsigned long rts_field; + unsigned long rts_field, dw0; + mmu_partition_table_init(); rts_field = radix__get_tree_size(); + dw0 = rts_field | __pa(init_mm.pgd) | RADIX_PGD_INDEX_SIZE | PATB_HR; + mmu_partition_table_set_entry(0, dw0, 0); - BUILD_BUG_ON_MSG((PATB_SIZE_SHIFT > 24), "Partition table size too large."); - partition_tb = early_alloc_pgtable(1UL << PATB_SIZE_SHIFT); - partition_tb->patb0 = cpu_to_be64(rts_field | __pa(init_mm.pgd) | - RADIX_PGD_INDEX_SIZE | PATB_HR); pr_info("Initializing Radix MMU\n"); pr_info("Partition table %p\n", partition_tb); - - memblock_set_current_limit(MEMBLOCK_ALLOC_ANYWHERE); - /* - * update partition table control register, - * 64 K size. - */ - mtspr(SPRN_PTCR, __pa(partition_tb) | (PATB_SIZE_SHIFT - 12)); } void __init radix_init_native(void) @@ -248,7 +253,7 @@ /* top 3 bit is AP encoding */ shift = be32_to_cpu(prop[0]) & ~(0xe << 28); ap = be32_to_cpu(prop[0]) >> 29; - pr_info("Page size sift = %d AP=0x%x\n", shift, ap); + pr_info("Page size shift = %d AP=0x%x\n", shift, ap); idx = get_idx_from_shift(shift); if (idx < 0) @@ -294,6 +299,64 @@ return; } +static void update_hid_for_radix(void) +{ + unsigned long hid0; + unsigned long rb = 3UL << PPC_BITLSHIFT(53); /* IS = 3 */ + + asm volatile("ptesync": : :"memory"); + /* prs = 0, ric = 2, rs = 0, r = 1 is = 3 */ + asm volatile(PPC_TLBIE_5(%0, %4, %3, %2, %1) + : : "r"(rb), "i"(1), "i"(0), "i"(2), "r"(0) : "memory"); + /* prs = 1, ric = 2, rs = 0, r = 1 is = 3 */ + asm volatile(PPC_TLBIE_5(%0, %4, %3, %2, %1) + : : "r"(rb), "i"(1), "i"(1), "i"(2), "r"(0) : "memory"); + asm volatile("eieio; tlbsync; ptesync; isync; slbia": : :"memory"); + /* + * now switch the HID + */ + hid0 = mfspr(SPRN_HID0); + hid0 |= HID0_POWER9_RADIX; + mtspr(SPRN_HID0, hid0); + asm volatile("isync": : :"memory"); + + /* Wait for it to happen */ + while (!(mfspr(SPRN_HID0) & HID0_POWER9_RADIX)) + cpu_relax(); +} + +static void radix_init_amor(void) +{ + /* + * In HV mode, we init AMOR (Authority Mask Override Register) so that + * the hypervisor and guest can setup IAMR (Instruction Authority Mask + * Register), enable key 0 and set it to 1. + * + * AMOR = 0b1100 .... 0000 (Mask for key 0 is 11) + */ + mtspr(SPRN_AMOR, (3ul << 62)); +} + +static void radix_init_iamr(void) +{ + unsigned long iamr; + + /* + * The IAMR should set to 0 on DD1. + */ + if (cpu_has_feature(CPU_FTR_POWER9_DD1)) + iamr = 0; + else + iamr = (1ul << 62); + + /* + * Radix always uses key0 of the IAMR to determine if an access is + * allowed. We set bit 0 (IBM bit 1) of key0, to prevent instruction + * fetch. + */ + mtspr(SPRN_IAMR, iamr); +} + void __init radix__early_init_mmu(void) { unsigned long lpcr; @@ -345,11 +408,19 @@ if (!firmware_has_feature(FW_FEATURE_LPAR)) { radix_init_native(); + if (cpu_has_feature(CPU_FTR_POWER9_DD1)) + update_hid_for_radix(); lpcr = mfspr(SPRN_LPCR); mtspr(SPRN_LPCR, lpcr | LPCR_UPRT | LPCR_HR); radix_init_partition_table(); + radix_init_amor(); + } else { + radix_init_pseries(); } + memblock_set_current_limit(MEMBLOCK_ALLOC_ANYWHERE); + + radix_init_iamr(); radix_init_pgtable(); } @@ -360,11 +431,30 @@ * update partition table control register and UPRT */ if (!firmware_has_feature(FW_FEATURE_LPAR)) { + + if (cpu_has_feature(CPU_FTR_POWER9_DD1)) + update_hid_for_radix(); + lpcr = mfspr(SPRN_LPCR); mtspr(SPRN_LPCR, lpcr | LPCR_UPRT | LPCR_HR); mtspr(SPRN_PTCR, __pa(partition_tb) | (PATB_SIZE_SHIFT - 12)); + radix_init_amor(); + } + radix_init_iamr(); +} + +void radix__mmu_cleanup_all(void) +{ + unsigned long lpcr; + + if (!firmware_has_feature(FW_FEATURE_LPAR)) { + lpcr = mfspr(SPRN_LPCR); + mtspr(SPRN_LPCR, lpcr & ~LPCR_UPRT); + mtspr(SPRN_PTCR, 0); + powernv_set_nmmu_ptcr(0); + radix__flush_tlb_all(); } } @@ -393,6 +483,173 @@ memblock_set_current_limit(first_memblock_base + first_memblock_size); } +#ifdef CONFIG_MEMORY_HOTPLUG +static void free_pte_table(pte_t *pte_start, pmd_t *pmd) +{ + pte_t *pte; + int i; + + for (i = 0; i < PTRS_PER_PTE; i++) { + pte = pte_start + i; + if (!pte_none(*pte)) + return; + } + + pte_free_kernel(&init_mm, pte_start); + pmd_clear(pmd); +} + +static void free_pmd_table(pmd_t *pmd_start, pud_t *pud) +{ + pmd_t *pmd; + int i; + + for (i = 0; i < PTRS_PER_PMD; i++) { + pmd = pmd_start + i; + if (!pmd_none(*pmd)) + return; + } + + pmd_free(&init_mm, pmd_start); + pud_clear(pud); +} + +static void remove_pte_table(pte_t *pte_start, unsigned long addr, + unsigned long end) +{ + unsigned long next; + pte_t *pte; + + pte = pte_start + pte_index(addr); + for (; addr < end; addr = next, pte++) { + next = (addr + PAGE_SIZE) & PAGE_MASK; + if (next > end) + next = end; + + if (!pte_present(*pte)) + continue; + + if (!PAGE_ALIGNED(addr) || !PAGE_ALIGNED(next)) { + /* + * The vmemmap_free() and remove_section_mapping() + * codepaths call us with aligned addresses. + */ + WARN_ONCE(1, "%s: unaligned range\n", __func__); + continue; + } + + pte_clear(&init_mm, addr, pte); + } +} + +static void remove_pmd_table(pmd_t *pmd_start, unsigned long addr, + unsigned long end) +{ + unsigned long next; + pte_t *pte_base; + pmd_t *pmd; + + pmd = pmd_start + pmd_index(addr); + for (; addr < end; addr = next, pmd++) { + next = pmd_addr_end(addr, end); + + if (!pmd_present(*pmd)) + continue; + + if (pmd_huge(*pmd)) { + if (!IS_ALIGNED(addr, PMD_SIZE) || + !IS_ALIGNED(next, PMD_SIZE)) { + WARN_ONCE(1, "%s: unaligned range\n", __func__); + continue; + } + + pte_clear(&init_mm, addr, (pte_t *)pmd); + continue; + } + + pte_base = (pte_t *)pmd_page_vaddr(*pmd); + remove_pte_table(pte_base, addr, next); + free_pte_table(pte_base, pmd); + } +} + +static void remove_pud_table(pud_t *pud_start, unsigned long addr, + unsigned long end) +{ + unsigned long next; + pmd_t *pmd_base; + pud_t *pud; + + pud = pud_start + pud_index(addr); + for (; addr < end; addr = next, pud++) { + next = pud_addr_end(addr, end); + + if (!pud_present(*pud)) + continue; + + if (pud_huge(*pud)) { + if (!IS_ALIGNED(addr, PUD_SIZE) || + !IS_ALIGNED(next, PUD_SIZE)) { + WARN_ONCE(1, "%s: unaligned range\n", __func__); + continue; + } + + pte_clear(&init_mm, addr, (pte_t *)pud); + continue; + } + + pmd_base = (pmd_t *)pud_page_vaddr(*pud); + remove_pmd_table(pmd_base, addr, next); + free_pmd_table(pmd_base, pud); + } +} + +static void remove_pagetable(unsigned long start, unsigned long end) +{ + unsigned long addr, next; + pud_t *pud_base; + pgd_t *pgd; + + spin_lock(&init_mm.page_table_lock); + + for (addr = start; addr < end; addr = next) { + next = pgd_addr_end(addr, end); + + pgd = pgd_offset_k(addr); + if (!pgd_present(*pgd)) + continue; + + if (pgd_huge(*pgd)) { + if (!IS_ALIGNED(addr, PGDIR_SIZE) || + !IS_ALIGNED(next, PGDIR_SIZE)) { + WARN_ONCE(1, "%s: unaligned range\n", __func__); + continue; + } + + pte_clear(&init_mm, addr, (pte_t *)pgd); + continue; + } + + pud_base = (pud_t *)pgd_page_vaddr(*pgd); + remove_pud_table(pud_base, addr, next); + } + + spin_unlock(&init_mm.page_table_lock); + radix__flush_tlb_kernel_range(start, end); +} + +int __ref radix__create_section_mapping(unsigned long start, unsigned long end) +{ + return create_physical_mapping(start, end); +} + +int radix__remove_section_mapping(unsigned long start, unsigned long end) +{ + remove_pagetable(start, end); + return 0; +} +#endif /* CONFIG_MEMORY_HOTPLUG */ + #ifdef CONFIG_SPARSEMEM_VMEMMAP int __meminit radix__vmemmap_create_mapping(unsigned long start, unsigned long page_size, @@ -408,7 +665,7 @@ #ifdef CONFIG_MEMORY_HOTPLUG void radix__vmemmap_remove_mapping(unsigned long start, unsigned long page_size) { - /* FIXME!! intel does more. We should free page tables mapping vmemmap ? */ + remove_pagetable(start, start + page_size); } #endif #endif --- linux-4.8.0.orig/arch/powerpc/mm/pgtable.c +++ linux-4.8.0/arch/powerpc/mm/pgtable.c @@ -224,7 +224,7 @@ if (changed) { if (!is_vm_hugetlb_page(vma)) assert_pte_locked(vma->vm_mm, address); - __ptep_set_access_flags(ptep, entry); + __ptep_set_access_flags(vma->vm_mm, ptep, entry, address); flush_tlb_page(vma, address); } return changed; --- linux-4.8.0.orig/arch/powerpc/mm/pgtable_32.c +++ linux-4.8.0/arch/powerpc/mm/pgtable_32.c @@ -42,43 +42,6 @@ extern char etext[], _stext[], _sinittext[], _einittext[]; -#define PGDIR_ORDER (32 + PGD_T_LOG2 - PGDIR_SHIFT) - -#ifndef CONFIG_PPC_4K_PAGES -static struct kmem_cache *pgtable_cache; - -void pgtable_cache_init(void) -{ - pgtable_cache = kmem_cache_create("PGDIR cache", 1 << PGDIR_ORDER, - 1 << PGDIR_ORDER, 0, NULL); - if (pgtable_cache == NULL) - panic("Couldn't allocate pgtable caches"); -} -#endif - -pgd_t *pgd_alloc(struct mm_struct *mm) -{ - pgd_t *ret; - - /* pgdir take page or two with 4K pages and a page fraction otherwise */ -#ifndef CONFIG_PPC_4K_PAGES - ret = kmem_cache_alloc(pgtable_cache, GFP_KERNEL | __GFP_ZERO); -#else - ret = (pgd_t *)__get_free_pages(GFP_KERNEL|__GFP_ZERO, - PGDIR_ORDER - PAGE_SHIFT); -#endif - return ret; -} - -void pgd_free(struct mm_struct *mm, pgd_t *pgd) -{ -#ifndef CONFIG_PPC_4K_PAGES - kmem_cache_free(pgtable_cache, (void *)pgd); -#else - free_pages((unsigned long)pgd, PGDIR_ORDER - PAGE_SHIFT); -#endif -} - __ref pte_t *pte_alloc_one_kernel(struct mm_struct *mm, unsigned long address) { pte_t *pte; --- linux-4.8.0.orig/arch/powerpc/mm/pgtable_64.c +++ linux-4.8.0/arch/powerpc/mm/pgtable_64.c @@ -52,6 +52,7 @@ #include #include #include +#include #include "mmu_decl.h" @@ -431,3 +432,40 @@ } } #endif + +#ifdef CONFIG_PPC_BOOK3S_64 +void __init mmu_partition_table_init(void) +{ + unsigned long patb_size = 1UL << PATB_SIZE_SHIFT; + unsigned long ptcr; + + BUILD_BUG_ON_MSG((PATB_SIZE_SHIFT > 36), "Partition table size too large."); + partition_tb = __va(memblock_alloc_base(patb_size, patb_size, + MEMBLOCK_ALLOC_ANYWHERE)); + + /* Initialize the Partition Table with no entries */ + memset((void *)partition_tb, 0, patb_size); + + /* + * update partition table control register, + * 64 K size. + */ + ptcr = __pa(partition_tb) | (PATB_SIZE_SHIFT - 12); + mtspr(SPRN_PTCR, ptcr); + powernv_set_nmmu_ptcr(ptcr); +} + +void mmu_partition_table_set_entry(unsigned int lpid, unsigned long dw0, + unsigned long dw1) +{ + partition_tb[lpid].patb0 = cpu_to_be64(dw0); + partition_tb[lpid].patb1 = cpu_to_be64(dw1); + + /* Global flush of TLBs and partition table caches for this lpid */ + asm volatile("ptesync" : : : "memory"); + asm volatile(PPC_TLBIE_5(%0,%1,2,0,0) : : + "r" (TLBIEL_INVAL_SET_LPID), "r" (lpid)); + asm volatile("eieio; tlbsync; ptesync" : : : "memory"); +} +EXPORT_SYMBOL_GPL(mmu_partition_table_set_entry); +#endif /* CONFIG_PPC_BOOK3S_64 */ --- linux-4.8.0.orig/arch/powerpc/mm/slice.c +++ linux-4.8.0/arch/powerpc/mm/slice.c @@ -105,7 +105,7 @@ if ((mm->task_size - len) < addr) return 0; vma = find_vma(mm, addr); - return (!vma || (addr + len) <= vma->vm_start); + return (!vma || (addr + len) <= vm_start_gap(vma)); } static int slice_low_has_vma(struct mm_struct *mm, unsigned long slice) --- linux-4.8.0.orig/arch/powerpc/mm/tlb-radix.c +++ linux-4.8.0/arch/powerpc/mm/tlb-radix.c @@ -50,6 +50,8 @@ for (set = 0; set < POWER9_TLB_SETS_RADIX ; set++) { __tlbiel_pid(pid, set, ric); } + if (cpu_has_feature(CPU_FTR_POWER9_DD1)) + asm volatile(PPC_INVALIDATE_ERAT : : :"memory"); return; } @@ -83,6 +85,8 @@ asm volatile(PPC_TLBIEL(%0, %4, %3, %2, %1) : : "r"(rb), "i"(r), "i"(prs), "i"(ric), "r"(rs) : "memory"); asm volatile("ptesync": : :"memory"); + if (cpu_has_feature(CPU_FTR_POWER9_DD1)) + asm volatile(PPC_INVALIDATE_ERAT : : :"memory"); } static inline void _tlbie_va(unsigned long va, unsigned long pid, @@ -175,7 +179,7 @@ if (unlikely(pid == MMU_NO_CONTEXT)) goto no_context; - if (!mm_is_core_local(mm)) { + if (!mm_is_thread_local(mm)) { int lock_tlbie = !mmu_has_feature(MMU_FTR_LOCKLESS_TLBIE); if (lock_tlbie) @@ -201,7 +205,7 @@ if (unlikely(pid == MMU_NO_CONTEXT)) goto no_context; - if (!mm_is_core_local(mm)) { + if (!mm_is_thread_local(mm)) { int lock_tlbie = !mmu_has_feature(MMU_FTR_LOCKLESS_TLBIE); if (lock_tlbie) @@ -226,7 +230,7 @@ pid = mm ? mm->context.id : 0; if (unlikely(pid == MMU_NO_CONTEXT)) goto bail; - if (!mm_is_core_local(mm)) { + if (!mm_is_thread_local(mm)) { int lock_tlbie = !mmu_has_feature(MMU_FTR_LOCKLESS_TLBIE); if (lock_tlbie) @@ -321,7 +325,7 @@ { unsigned long pid; unsigned long addr; - int local = mm_is_core_local(mm); + int local = mm_is_thread_local(mm); unsigned long ap = mmu_get_ap(psize); int lock_tlbie = !mmu_has_feature(MMU_FTR_LOCKLESS_TLBIE); unsigned long page_size = 1UL << mmu_psize_defs[psize].shift; @@ -400,3 +404,45 @@ radix__flush_tlb_range_psize(vma->vm_mm, start, end, MMU_PAGE_2M); } EXPORT_SYMBOL(radix__flush_pmd_tlb_range); + +void radix__flush_tlb_all(void) +{ + unsigned long rb,prs,r,rs; + unsigned long ric = RIC_FLUSH_ALL; + + rb = 0x3 << PPC_BITLSHIFT(53); /* IS = 3 */ + prs = 0; /* partition scoped */ + r = 1; /* raidx format */ + rs = 1 & ((1UL << 32) - 1); /* any LPID value to flush guest mappings */ + + asm volatile("ptesync": : :"memory"); + /* + * now flush guest entries by passing PRS = 1 and LPID != 0 + */ + asm volatile(PPC_TLBIE_5(%0, %4, %3, %2, %1) + : : "r"(rb), "i"(r), "i"(1), "i"(ric), "r"(rs) : "memory"); + /* + * now flush host entires by passing PRS = 0 and LPID == 0 + */ + asm volatile(PPC_TLBIE_5(%0, %4, %3, %2, %1) + : : "r"(rb), "i"(r), "i"(prs), "i"(ric), "r"(0) : "memory"); + asm volatile("eieio; tlbsync; ptesync": : :"memory"); +} + +void radix__flush_tlb_pte_p9_dd1(unsigned long old_pte, struct mm_struct *mm, + unsigned long address) +{ + /* + * We track page size in pte only for DD1, So we can + * call this only on DD1. + */ + if (!cpu_has_feature(CPU_FTR_POWER9_DD1)) { + VM_WARN_ON(1); + return; + } + + if (old_pte & _PAGE_LARGE) + radix__flush_tlb_page_psize(mm, address, MMU_PAGE_2M); + else + radix__flush_tlb_page_psize(mm, address, mmu_virtual_psize); +} --- linux-4.8.0.orig/arch/powerpc/oprofile/cell/spu_profiler.c +++ linux-4.8.0/arch/powerpc/oprofile/cell/spu_profiler.c @@ -43,7 +43,7 @@ #define SPU_PC_MASK 0xFFFF DEFINE_SPINLOCK(oprof_spu_smpl_arry_lck); -unsigned long oprof_spu_smpl_arry_lck_flags; +static unsigned long oprof_spu_smpl_arry_lck_flags; void set_spu_profiling_frequency(unsigned int freq_khz, unsigned int cycles_reset) { --- linux-4.8.0.orig/arch/powerpc/oprofile/cell/spu_task_sync.c +++ linux-4.8.0/arch/powerpc/oprofile/cell/spu_task_sync.c @@ -36,7 +36,7 @@ static DEFINE_SPINLOCK(buffer_lock); static DEFINE_SPINLOCK(cache_lock); static int num_spu_nodes; -int spu_prof_num_nodes; +static int spu_prof_num_nodes; struct spu_buffer spu_buff[MAX_NUMNODES * SPUS_PER_NODE]; struct delayed_work spu_work; @@ -88,7 +88,7 @@ /* This function copies the per SPU buffers to the * OProfile kernel buffer. */ -void sync_spu_buff(void) +static void sync_spu_buff(void) { int spu; unsigned long flags; --- linux-4.8.0.orig/arch/powerpc/perf/core-book3s.c +++ linux-4.8.0/arch/powerpc/perf/core-book3s.c @@ -2158,7 +2158,7 @@ irq_exit(); } -int power_pmu_prepare_cpu(unsigned int cpu) +static int power_pmu_prepare_cpu(unsigned int cpu) { struct cpu_hw_events *cpuhw = &per_cpu(cpu_hw_events, cpu); --- linux-4.8.0.orig/arch/powerpc/perf/hv-gpci.c +++ linux-4.8.0/arch/powerpc/perf/hv-gpci.c @@ -131,7 +131,7 @@ #define HGPCI_MAX_DATA_BYTES \ (HGPCI_REQ_BUFFER_SIZE - sizeof(struct hv_get_perf_counter_info_params)) -DEFINE_PER_CPU(char, hv_gpci_reqb[HGPCI_REQ_BUFFER_SIZE]) __aligned(sizeof(uint64_t)); +static DEFINE_PER_CPU(char, hv_gpci_reqb[HGPCI_REQ_BUFFER_SIZE]) __aligned(sizeof(uint64_t)); struct hv_gpci_request_buffer { struct hv_get_perf_counter_info_params params; --- linux-4.8.0.orig/arch/powerpc/perf/isa207-common.c +++ linux-4.8.0/arch/powerpc/perf/isa207-common.c @@ -12,6 +12,40 @@ */ #include "isa207-common.h" +PMU_FORMAT_ATTR(event, "config:0-49"); +PMU_FORMAT_ATTR(pmcxsel, "config:0-7"); +PMU_FORMAT_ATTR(mark, "config:8"); +PMU_FORMAT_ATTR(combine, "config:11"); +PMU_FORMAT_ATTR(unit, "config:12-15"); +PMU_FORMAT_ATTR(pmc, "config:16-19"); +PMU_FORMAT_ATTR(cache_sel, "config:20-23"); +PMU_FORMAT_ATTR(sample_mode, "config:24-28"); +PMU_FORMAT_ATTR(thresh_sel, "config:29-31"); +PMU_FORMAT_ATTR(thresh_stop, "config:32-35"); +PMU_FORMAT_ATTR(thresh_start, "config:36-39"); +PMU_FORMAT_ATTR(thresh_cmp, "config:40-49"); + +struct attribute *isa207_pmu_format_attr[] = { + &format_attr_event.attr, + &format_attr_pmcxsel.attr, + &format_attr_mark.attr, + &format_attr_combine.attr, + &format_attr_unit.attr, + &format_attr_pmc.attr, + &format_attr_cache_sel.attr, + &format_attr_sample_mode.attr, + &format_attr_thresh_sel.attr, + &format_attr_thresh_stop.attr, + &format_attr_thresh_start.attr, + &format_attr_thresh_cmp.attr, + NULL, +}; + +struct attribute_group isa207_pmu_format_group = { + .name = "format", + .attrs = isa207_pmu_format_attr, +}; + static inline bool event_is_fab_match(u64 event) { /* Only check pmc, unit and pmcxsel, ignore the edge bit (0) */ @@ -21,6 +55,48 @@ return (event == 0x30056 || event == 0x4f052); } +static bool is_event_valid(u64 event) +{ + u64 valid_mask = EVENT_VALID_MASK; + + if (cpu_has_feature(CPU_FTR_ARCH_300) && !cpu_has_feature(CPU_FTR_POWER9_DD1)) + valid_mask = p9_EVENT_VALID_MASK; + + return !(event & ~valid_mask); +} + +static u64 mmcra_sdar_mode(u64 event) +{ + if (cpu_has_feature(CPU_FTR_ARCH_300) && !cpu_has_feature(CPU_FTR_POWER9_DD1)) + return p9_SDAR_MODE(event) << MMCRA_SDAR_MODE_SHIFT; + + return MMCRA_SDAR_MODE_TLB; +} + +static u64 thresh_cmp_val(u64 value) +{ + if (cpu_has_feature(CPU_FTR_ARCH_300) && !cpu_has_feature(CPU_FTR_POWER9_DD1)) + return value << p9_MMCRA_THR_CMP_SHIFT; + + return value << MMCRA_THR_CMP_SHIFT; +} + +static unsigned long combine_from_event(u64 event) +{ + if (cpu_has_feature(CPU_FTR_ARCH_300) && !cpu_has_feature(CPU_FTR_POWER9_DD1)) + return p9_EVENT_COMBINE(event); + + return EVENT_COMBINE(event); +} + +static unsigned long combine_shift(unsigned long pmc) +{ + if (cpu_has_feature(CPU_FTR_ARCH_300) && !cpu_has_feature(CPU_FTR_POWER9_DD1)) + return p9_MMCR1_COMBINE_SHIFT(pmc); + + return MMCR1_COMBINE_SHIFT(pmc); +} + int isa207_get_constraint(u64 event, unsigned long *maskp, unsigned long *valp) { unsigned int unit, pmc, cache, ebb; @@ -28,7 +104,7 @@ mask = value = 0; - if (event & ~EVENT_VALID_MASK) + if (!is_event_valid(event)) return -1; pmc = (event >> EVENT_PMC_SHIFT) & EVENT_PMC_MASK; @@ -155,15 +231,13 @@ pmc_inuse |= 1 << pmc; } - /* In continuous sampling mode, update SDAR on TLB miss */ - mmcra = MMCRA_SDAR_MODE_TLB; - mmcr1 = mmcr2 = 0; + mmcra = mmcr1 = mmcr2 = 0; /* Second pass: assign PMCs, set all MMCR1 fields */ for (i = 0; i < n_ev; ++i) { pmc = (event[i] >> EVENT_PMC_SHIFT) & EVENT_PMC_MASK; unit = (event[i] >> EVENT_UNIT_SHIFT) & EVENT_UNIT_MASK; - combine = (event[i] >> EVENT_COMBINE_SHIFT) & EVENT_COMBINE_MASK; + combine = combine_from_event(event[i]); psel = event[i] & EVENT_PSEL_MASK; if (!pmc) { @@ -177,10 +251,13 @@ if (pmc <= 4) { mmcr1 |= unit << MMCR1_UNIT_SHIFT(pmc); - mmcr1 |= combine << MMCR1_COMBINE_SHIFT(pmc); + mmcr1 |= combine << combine_shift(pmc); mmcr1 |= psel << MMCR1_PMCSEL_SHIFT(pmc); } + /* In continuous sampling mode, update SDAR on TLB miss */ + mmcra |= mmcra_sdar_mode(event[i]); + if (event[i] & EVENT_IS_L1) { cache = event[i] >> EVENT_CACHE_SEL_SHIFT; mmcr1 |= (cache & 1) << MMCR1_IC_QUAL_SHIFT; @@ -211,7 +288,7 @@ val = (event[i] >> EVENT_THR_SEL_SHIFT) & EVENT_THR_SEL_MASK; mmcra |= val << MMCRA_THR_SEL_SHIFT; val = (event[i] >> EVENT_THR_CMP_SHIFT) & EVENT_THR_CMP_MASK; - mmcra |= val << MMCRA_THR_CMP_SHIFT; + mmcra |= thresh_cmp_val(val); } if (event[i] & EVENT_WANTS_BHRB) { --- linux-4.8.0.orig/arch/powerpc/perf/isa207-common.h +++ linux-4.8.0/arch/powerpc/perf/isa207-common.h @@ -107,6 +107,7 @@ #define EVENT_UNIT_MASK 0xf #define EVENT_COMBINE_SHIFT 11 /* Combine bit */ #define EVENT_COMBINE_MASK 0x1 +#define EVENT_COMBINE(v) (((v) >> EVENT_COMBINE_SHIFT) & EVENT_COMBINE_MASK) #define EVENT_MARKED_SHIFT 8 /* Marked bit */ #define EVENT_MARKED_MASK 0x1 #define EVENT_IS_MARKED (EVENT_MARKED_MASK << EVENT_MARKED_SHIFT) @@ -134,6 +135,26 @@ PERF_SAMPLE_BRANCH_KERNEL |\ PERF_SAMPLE_BRANCH_HV) +/* Contants to support power9 raw encoding format */ +#define p9_EVENT_COMBINE_SHIFT 10 /* Combine bit */ +#define p9_EVENT_COMBINE_MASK 0x3ull +#define p9_EVENT_COMBINE(v) (((v) >> p9_EVENT_COMBINE_SHIFT) & p9_EVENT_COMBINE_MASK) +#define p9_SDAR_MODE_SHIFT 50 +#define p9_SDAR_MODE_MASK 0x3ull +#define p9_SDAR_MODE(v) (((v) >> p9_SDAR_MODE_SHIFT) & p9_SDAR_MODE_MASK) + +#define p9_EVENT_VALID_MASK \ + ((p9_SDAR_MODE_MASK << p9_SDAR_MODE_SHIFT | \ + (EVENT_THRESH_MASK << EVENT_THRESH_SHIFT) | \ + (EVENT_SAMPLE_MASK << EVENT_SAMPLE_SHIFT) | \ + (EVENT_CACHE_SEL_MASK << EVENT_CACHE_SEL_SHIFT) | \ + (EVENT_PMC_MASK << EVENT_PMC_SHIFT) | \ + (EVENT_UNIT_MASK << EVENT_UNIT_SHIFT) | \ + (p9_EVENT_COMBINE_MASK << p9_EVENT_COMBINE_SHIFT) | \ + (EVENT_MARKED_MASK << EVENT_MARKED_SHIFT) | \ + EVENT_LINUX_MASK | \ + EVENT_PSEL_MASK)) + /* * Layout of constraint bits: * @@ -210,15 +231,22 @@ #define MMCR1_DC_QUAL_SHIFT 47 #define MMCR1_IC_QUAL_SHIFT 46 +/* MMCR1 Combine bits macro for power9 */ +#define p9_MMCR1_COMBINE_SHIFT(pmc) (38 - ((pmc - 1) * 2)) + /* Bits in MMCRA for PowerISA v2.07 */ #define MMCRA_SAMP_MODE_SHIFT 1 #define MMCRA_SAMP_ELIG_SHIFT 4 #define MMCRA_THR_CTL_SHIFT 8 #define MMCRA_THR_SEL_SHIFT 16 #define MMCRA_THR_CMP_SHIFT 32 -#define MMCRA_SDAR_MODE_TLB (1ull << 42) +#define MMCRA_SDAR_MODE_SHIFT 42 +#define MMCRA_SDAR_MODE_TLB (1ull << MMCRA_SDAR_MODE_SHIFT) #define MMCRA_IFM_SHIFT 30 +/* MMCR1 Threshold Compare bit constant for power9 */ +#define p9_MMCRA_THR_CMP_SHIFT 45 + /* Bits in MMCR2 for PowerISA v2.07 */ #define MMCR2_FCS(pmc) (1ull << (63 - (((pmc) - 1) * 9))) #define MMCR2_FCP(pmc) (1ull << (62 - (((pmc) - 1) * 9))) --- linux-4.8.0.orig/arch/powerpc/perf/power7-pmu.c +++ linux-4.8.0/arch/powerpc/perf/power7-pmu.c @@ -416,7 +416,7 @@ NULL, }; -struct attribute_group power7_pmu_format_group = { +static struct attribute_group power7_pmu_format_group = { .name = "format", .attrs = power7_pmu_format_attr, }; --- linux-4.8.0.orig/arch/powerpc/perf/power8-pmu.c +++ linux-4.8.0/arch/powerpc/perf/power8-pmu.c @@ -30,6 +30,9 @@ #define POWER8_MMCRA_IFM2 0x0000000080000000UL #define POWER8_MMCRA_IFM3 0x00000000C0000000UL +/* PowerISA v2.07 format attribute structure*/ +extern struct attribute_group isa207_pmu_format_group; + /* Table of alternatives, sorted by column 0 */ static const unsigned int event_alternatives[][MAX_ALT] = { { PM_MRK_ST_CMPL, PM_MRK_ST_CMPL_ALT }, @@ -175,42 +178,8 @@ .attrs = power8_events_attr, }; -PMU_FORMAT_ATTR(event, "config:0-49"); -PMU_FORMAT_ATTR(pmcxsel, "config:0-7"); -PMU_FORMAT_ATTR(mark, "config:8"); -PMU_FORMAT_ATTR(combine, "config:11"); -PMU_FORMAT_ATTR(unit, "config:12-15"); -PMU_FORMAT_ATTR(pmc, "config:16-19"); -PMU_FORMAT_ATTR(cache_sel, "config:20-23"); -PMU_FORMAT_ATTR(sample_mode, "config:24-28"); -PMU_FORMAT_ATTR(thresh_sel, "config:29-31"); -PMU_FORMAT_ATTR(thresh_stop, "config:32-35"); -PMU_FORMAT_ATTR(thresh_start, "config:36-39"); -PMU_FORMAT_ATTR(thresh_cmp, "config:40-49"); - -static struct attribute *power8_pmu_format_attr[] = { - &format_attr_event.attr, - &format_attr_pmcxsel.attr, - &format_attr_mark.attr, - &format_attr_combine.attr, - &format_attr_unit.attr, - &format_attr_pmc.attr, - &format_attr_cache_sel.attr, - &format_attr_sample_mode.attr, - &format_attr_thresh_sel.attr, - &format_attr_thresh_stop.attr, - &format_attr_thresh_start.attr, - &format_attr_thresh_cmp.attr, - NULL, -}; - -struct attribute_group power8_pmu_format_group = { - .name = "format", - .attrs = power8_pmu_format_attr, -}; - static const struct attribute_group *power8_pmu_attr_groups[] = { - &power8_pmu_format_group, + &isa207_pmu_format_group, &power8_pmu_events_group, NULL, }; --- linux-4.8.0.orig/arch/powerpc/perf/power9-pmu.c +++ linux-4.8.0/arch/powerpc/perf/power9-pmu.c @@ -16,6 +16,78 @@ #include "isa207-common.h" /* + * Raw event encoding for Power9: + * + * 60 56 52 48 44 40 36 32 + * | - - - - | - - - - | - - - - | - - - - | - - - - | - - - - | - - - - | - - - - | + * | | [ ] [ ] [ thresh_cmp ] [ thresh_ctl ] + * | | | | | + * | | *- IFM (Linux) | thresh start/stop OR FAB match -* + * | *- BHRB (Linux) *sm + * *- EBB (Linux) + * + * 28 24 20 16 12 8 4 0 + * | - - - - | - - - - | - - - - | - - - - | - - - - | - - - - | - - - - | - - - - | + * [ ] [ sample ] [cache] [ pmc ] [unit ] [] m [ pmcxsel ] + * | | | | | + * | | | | *- mark + * | | *- L1/L2/L3 cache_sel | + * | | | + * | *- sampling mode for marked events *- combine + * | + * *- thresh_sel + * + * Below uses IBM bit numbering. + * + * MMCR1[x:y] = unit (PMCxUNIT) + * MMCR1[24] = pmc1combine[0] + * MMCR1[25] = pmc1combine[1] + * MMCR1[26] = pmc2combine[0] + * MMCR1[27] = pmc2combine[1] + * MMCR1[28] = pmc3combine[0] + * MMCR1[29] = pmc3combine[1] + * MMCR1[30] = pmc4combine[0] + * MMCR1[31] = pmc4combine[1] + * + * if pmc == 3 and unit == 0 and pmcxsel[0:6] == 0b0101011 + * # PM_MRK_FAB_RSP_MATCH + * MMCR1[20:27] = thresh_ctl (FAB_CRESP_MATCH / FAB_TYPE_MATCH) + * else if pmc == 4 and unit == 0xf and pmcxsel[0:6] == 0b0101001 + * # PM_MRK_FAB_RSP_MATCH_CYC + * MMCR1[20:27] = thresh_ctl (FAB_CRESP_MATCH / FAB_TYPE_MATCH) + * else + * MMCRA[48:55] = thresh_ctl (THRESH START/END) + * + * if thresh_sel: + * MMCRA[45:47] = thresh_sel + * + * if thresh_cmp: + * MMCRA[9:11] = thresh_cmp[0:2] + * MMCRA[12:18] = thresh_cmp[3:9] + * + * if unit == 6 or unit == 7 + * MMCRC[53:55] = cache_sel[1:3] (L2EVENT_SEL) + * else if unit == 8 or unit == 9: + * if cache_sel[0] == 0: # L3 bank + * MMCRC[47:49] = cache_sel[1:3] (L3EVENT_SEL0) + * else if cache_sel[0] == 1: + * MMCRC[50:51] = cache_sel[2:3] (L3EVENT_SEL1) + * else if cache_sel[1]: # L1 event + * MMCR1[16] = cache_sel[2] + * MMCR1[17] = cache_sel[3] + * + * if mark: + * MMCRA[63] = 1 (SAMPLE_ENABLE) + * MMCRA[57:59] = sample[0:2] (RAND_SAMP_ELIG) + * MMCRA[61:62] = sample[3:4] (RAND_SAMP_MODE) + * + * if EBB and BHRB: + * MMCRA[32:33] = IFM + * + * MMCRA[SDAR_MODE] = sm + */ + +/* * Some power9 event codes. */ #define EVENT(_name, _code) _name = _code, @@ -31,6 +103,9 @@ #define POWER9_MMCRA_IFM2 0x0000000080000000UL #define POWER9_MMCRA_IFM3 0x00000000C0000000UL +/* PowerISA v2.07 format attribute structure*/ +extern struct attribute_group isa207_pmu_format_group; + GENERIC_EVENT_ATTR(cpu-cycles, PM_CYC); GENERIC_EVENT_ATTR(stalled-cycles-frontend, PM_ICT_NOSLOT_CYC); GENERIC_EVENT_ATTR(stalled-cycles-backend, PM_CMPLU_STALL); @@ -90,10 +165,16 @@ .attrs = power9_events_attr, }; -PMU_FORMAT_ATTR(event, "config:0-49"); +static const struct attribute_group *power9_isa207_pmu_attr_groups[] = { + &isa207_pmu_format_group, + &power9_pmu_events_group, + NULL, +}; + +PMU_FORMAT_ATTR(event, "config:0-51"); PMU_FORMAT_ATTR(pmcxsel, "config:0-7"); PMU_FORMAT_ATTR(mark, "config:8"); -PMU_FORMAT_ATTR(combine, "config:11"); +PMU_FORMAT_ATTR(combine, "config:10-11"); PMU_FORMAT_ATTR(unit, "config:12-15"); PMU_FORMAT_ATTR(pmc, "config:16-19"); PMU_FORMAT_ATTR(cache_sel, "config:20-23"); @@ -102,6 +183,7 @@ PMU_FORMAT_ATTR(thresh_stop, "config:32-35"); PMU_FORMAT_ATTR(thresh_start, "config:36-39"); PMU_FORMAT_ATTR(thresh_cmp, "config:40-49"); +PMU_FORMAT_ATTR(sdar_mode, "config:50-51"); static struct attribute *power9_pmu_format_attr[] = { &format_attr_event.attr, @@ -116,10 +198,11 @@ &format_attr_thresh_stop.attr, &format_attr_thresh_start.attr, &format_attr_thresh_cmp.attr, + &format_attr_sdar_mode.attr, NULL, }; -struct attribute_group power9_pmu_format_group = { +static struct attribute_group power9_pmu_format_group = { .name = "format", .attrs = power9_pmu_format_attr, }; @@ -291,6 +374,24 @@ #undef C +static struct power_pmu power9_isa207_pmu = { + .name = "POWER9", + .n_counter = MAX_PMU_COUNTERS, + .add_fields = ISA207_ADD_FIELDS, + .test_adder = ISA207_TEST_ADDER, + .compute_mmcr = isa207_compute_mmcr, + .config_bhrb = power9_config_bhrb, + .bhrb_filter_map = power9_bhrb_filter_map, + .get_constraint = isa207_get_constraint, + .disable_pmc = isa207_disable_pmc, + .flags = PPMU_HAS_SIER | PPMU_ARCH_207S, + .n_generic = ARRAY_SIZE(power9_generic_events), + .generic_events = power9_generic_events, + .cache_events = &power9_cache_events, + .attr_groups = power9_isa207_pmu_attr_groups, + .bhrb_nr = 32, +}; + static struct power_pmu power9_pmu = { .name = "POWER9", .n_counter = MAX_PMU_COUNTERS, @@ -311,14 +412,19 @@ static int __init init_power9_pmu(void) { - int rc; + int rc = 0; /* Comes from cpu_specs[] */ if (!cur_cpu_spec->oprofile_cpu_type || strcmp(cur_cpu_spec->oprofile_cpu_type, "ppc64/power9")) return -ENODEV; - rc = register_power_pmu(&power9_pmu); + if (cpu_has_feature(CPU_FTR_POWER9_DD1)) { + rc = register_power_pmu(&power9_isa207_pmu); + } else { + rc = register_power_pmu(&power9_pmu); + } + if (rc) return rc; --- linux-4.8.0.orig/arch/powerpc/platforms/cell/cbe_regs.c +++ linux-4.8.0/arch/powerpc/platforms/cell/cbe_regs.c @@ -189,7 +189,7 @@ return NULL; } -void __init cbe_fill_regs_map(struct cbe_regs_map *map) +static void __init cbe_fill_regs_map(struct cbe_regs_map *map) { if(map->be_node) { struct device_node *be, *np; --- linux-4.8.0.orig/arch/powerpc/platforms/cell/iommu.c +++ linux-4.8.0/arch/powerpc/platforms/cell/iommu.c @@ -651,7 +651,7 @@ static int dma_set_mask_and_switch(struct device *dev, u64 dma_mask); -struct dma_map_ops dma_iommu_fixed_ops = { +static struct dma_map_ops dma_iommu_fixed_ops = { .alloc = dma_fixed_alloc_coherent, .free = dma_fixed_free_coherent, .map_sg = dma_fixed_map_sg, --- linux-4.8.0.orig/arch/powerpc/platforms/cell/ras.c +++ linux-4.8.0/arch/powerpc/platforms/cell/ras.c @@ -298,7 +298,7 @@ } #endif /* CONFIG_PPC_IBM_CELL_RESETBUTTON */ -int __init cbe_ptcal_init(void) +static int __init cbe_ptcal_init(void) { int ret; ptcal_start_tok = rtas_token("ibm,cbe-start-ptcal"); --- linux-4.8.0.orig/arch/powerpc/platforms/maple/setup.c +++ linux-4.8.0/arch/powerpc/platforms/maple/setup.c @@ -156,7 +156,7 @@ } #ifdef CONFIG_SMP -struct smp_ops_t maple_smp_ops = { +static struct smp_ops_t maple_smp_ops = { .probe = smp_mpic_probe, .message_pass = smp_mpic_message_pass, .kick_cpu = smp_generic_kick_cpu, @@ -176,7 +176,7 @@ } } -void __init maple_setup_arch(void) +static void __init maple_setup_arch(void) { /* init to some ~sane value until calibrate_delay() runs */ loops_per_jiffy = 50000000; --- linux-4.8.0.orig/arch/powerpc/platforms/pasemi/gpio_mdio.c +++ linux-4.8.0/arch/powerpc/platforms/pasemi/gpio_mdio.c @@ -306,7 +306,7 @@ }, }; -int gpio_mdio_init(void) +static int gpio_mdio_init(void) { struct device_node *np; @@ -326,7 +326,7 @@ } module_init(gpio_mdio_init); -void gpio_mdio_exit(void) +static void gpio_mdio_exit(void) { platform_driver_unregister(&gpio_mdio_driver); if (gpio_regs) --- linux-4.8.0.orig/arch/powerpc/platforms/pasemi/iommu.c +++ linux-4.8.0/arch/powerpc/platforms/pasemi/iommu.c @@ -199,7 +199,7 @@ set_iommu_table_base(&dev->dev, &iommu_table_iobmap); } -int __init iob_init(struct device_node *dn) +static int __init iob_init(struct device_node *dn) { unsigned long tmp; u32 regword; --- linux-4.8.0.orig/arch/powerpc/platforms/pasemi/setup.c +++ linux-4.8.0/arch/powerpc/platforms/pasemi/setup.c @@ -105,7 +105,7 @@ arch_spin_unlock(&timebase_lock); } -struct smp_ops_t pas_smp_ops = { +static struct smp_ops_t pas_smp_ops = { .probe = smp_mpic_probe, .message_pass = smp_mpic_message_pass, .kick_cpu = smp_generic_kick_cpu, @@ -115,7 +115,7 @@ }; #endif /* CONFIG_SMP */ -void __init pas_setup_arch(void) +static void __init pas_setup_arch(void) { #ifdef CONFIG_SMP /* Setup SMP callback */ --- linux-4.8.0.orig/arch/powerpc/platforms/powermac/pfunc_core.c +++ linux-4.8.0/arch/powerpc/platforms/powermac/pfunc_core.c @@ -804,7 +804,7 @@ } EXPORT_SYMBOL_GPL(pmf_unregister_driver); -struct pmf_function *__pmf_find_function(struct device_node *target, +static struct pmf_function *__pmf_find_function(struct device_node *target, const char *name, u32 flags) { struct device_node *actor = of_node_get(target); --- linux-4.8.0.orig/arch/powerpc/platforms/powermac/smp.c +++ linux-4.8.0/arch/powerpc/platforms/powermac/smp.c @@ -979,7 +979,7 @@ #endif /* CONFIG_HOTPLUG_CPU */ /* Core99 Macs (dual G4s and G5s) */ -struct smp_ops_t core99_smp_ops = { +static struct smp_ops_t core99_smp_ops = { .message_pass = smp_mpic_message_pass, .probe = smp_core99_probe, #ifdef CONFIG_PPC64 --- linux-4.8.0.orig/arch/powerpc/platforms/powernv/eeh-powernv.c +++ linux-4.8.0/arch/powerpc/platforms/powernv/eeh-powernv.c @@ -763,7 +763,8 @@ * reset followed by hot reset on root bus. So we also * need the PCI bus settlement delay. */ - rc = pnv_eeh_poll(phb->opal_id); + if (rc > 0) + rc = pnv_eeh_poll(phb->opal_id); if (option == EEH_RESET_DEACTIVATE) { if (system_state < SYSTEM_RUNNING) udelay(1000 * EEH_PE_RST_SETTLE_TIME); @@ -806,7 +807,8 @@ goto out; /* Poll state of the PHB until the request is done */ - rc = pnv_eeh_poll(phb->opal_id); + if (rc > 0) + rc = pnv_eeh_poll(phb->opal_id); if (option == EEH_RESET_DEACTIVATE) msleep(EEH_PE_RST_SETTLE_TIME); out: @@ -1091,6 +1093,11 @@ } bus = eeh_pe_bus_get(pe); + if (!bus) { + pr_err("%s: Cannot find PCI bus for PHB#%d-PE#%x\n", + __func__, pe->phb->global_number, pe->addr); + return -EIO; + } if (pe->type & EEH_PE_VF) return pnv_eeh_reset_vf_pe(pe, option); @@ -1306,7 +1313,7 @@ return; } - switch (data->type) { + switch (be16_to_cpu(data->type)) { case OPAL_P7IOC_DIAG_TYPE_RGC: pr_info("P7IOC diag-data for RGC\n\n"); pnv_eeh_dump_hub_diag_common(data); @@ -1538,7 +1545,7 @@ /* Try best to clear it */ opal_pci_eeh_freeze_clear(phb->opal_id, - frozen_pe_no, + be64_to_cpu(frozen_pe_no), OPAL_EEH_ACTION_CLEAR_FREEZE_ALL); ret = EEH_NEXT_ERR_NONE; } else if ((*pe)->state & EEH_PE_ISOLATED || --- linux-4.8.0.orig/arch/powerpc/platforms/powernv/idle.c +++ linux-4.8.0/arch/powerpc/platforms/powernv/idle.c @@ -237,15 +237,21 @@ show_fastsleep_workaround_applyonce, store_fastsleep_workaround_applyonce); +/* + * The default stop state that will be used by ppc_md.power_save + * function on platforms that support stop instruction. + */ +u64 pnv_default_stop_val; +u64 pnv_default_stop_mask; /* * Used for ppc_md.power_save which needs a function with no parameters */ static void power9_idle(void) { - /* Requesting stop state 0 */ - power9_idle_stop(0); + power9_idle_stop(pnv_default_stop_val, pnv_default_stop_mask); } + /* * First deep stop state. Used to figure out when to save/restore * hypervisor context. @@ -253,9 +259,11 @@ u64 pnv_first_deep_stop_state = MAX_STOP_STATE; /* - * Deepest stop idle state. Used when a cpu is offlined + * psscr value and mask of the deepest stop idle state. + * Used when a cpu is offlined. */ -u64 pnv_deepest_stop_state; +u64 pnv_deepest_stop_psscr_val; +u64 pnv_deepest_stop_psscr_mask; /* * Power ISA 3.0 idle initialization. @@ -292,53 +300,157 @@ * Bits 60:63 - Requested Level * Used to specify which power-saving level must be entered on executing * stop instruction + */ + +int validate_psscr_val_mask(u64 *psscr_val, u64 *psscr_mask, u32 flags) +{ + int err = 0; + + /* + * psscr_mask == 0xf indicates an older firmware. + * Set remaining fields of psscr to the default values. + * See NOTE above definition of PSSCR_HV_DEFAULT_VAL + */ + if (*psscr_mask == 0xf) { + *psscr_val = *psscr_val | PSSCR_HV_DEFAULT_VAL; + *psscr_mask = PSSCR_HV_DEFAULT_MASK; + return err; + } + + /* + * New firmware is expected to set the psscr_val bits correctly. + * Validate that the following invariants are correctly maintained by + * the new firmware. + * - ESL bit value matches the EC bit value. + * - ESL bit is set for all the deep stop states. + */ + if (GET_PSSCR_ESL(*psscr_val) != GET_PSSCR_EC(*psscr_val)) { + err = ERR_EC_ESL_MISMATCH; + } else if ((flags & OPAL_PM_LOSE_FULL_CONTEXT) && + GET_PSSCR_ESL(*psscr_val) == 0) { + err = ERR_DEEP_STATE_ESL_MISMATCH; + } + + return err; +} + +/* + * pnv_arch300_idle_init: Initializes the default idle state, first + * deep idle state and deepest idle state on + * ISA 3.0 CPUs. * * @np: /ibm,opal/power-mgt device node * @flags: cpu-idle-state-flags array * @dt_idle_states: Number of idle state entries * Returns 0 on success */ -static int __init pnv_arch300_idle_init(struct device_node *np, u32 *flags, +static int __init pnv_power9_idle_init(struct device_node *np, u32 *flags, int dt_idle_states) { u64 *psscr_val = NULL; + u64 *psscr_mask = NULL; + u32 *residency_ns = NULL; + u64 max_residency_ns = 0; int rc = 0, i; + bool default_stop_found = false, deepest_stop_found = false; + + psscr_val = kcalloc(dt_idle_states, sizeof(*psscr_val), GFP_KERNEL); + psscr_mask = kcalloc(dt_idle_states, sizeof(*psscr_mask), GFP_KERNEL); + residency_ns = kcalloc(dt_idle_states, sizeof(*residency_ns), + GFP_KERNEL); - psscr_val = kcalloc(dt_idle_states, sizeof(*psscr_val), - GFP_KERNEL); - if (!psscr_val) { + if (!psscr_val || !psscr_mask || !residency_ns) { rc = -1; goto out; } + if (of_property_read_u64_array(np, "ibm,cpu-idle-state-psscr", psscr_val, dt_idle_states)) { - pr_warn("cpuidle-powernv: missing ibm,cpu-idle-states-psscr in DT\n"); + pr_warn("cpuidle-powernv: missing ibm,cpu-idle-state-psscr in DT\n"); + rc = -1; + goto out; + } + + if (of_property_read_u64_array(np, + "ibm,cpu-idle-state-psscr-mask", + psscr_mask, dt_idle_states)) { + pr_warn("cpuidle-powernv: missing ibm,cpu-idle-state-psscr-mask in DT\n"); + rc = -1; + goto out; + } + + if (of_property_read_u32_array(np, + "ibm,cpu-idle-state-residency-ns", + residency_ns, dt_idle_states)) { + pr_warn("cpuidle-powernv: missing ibm,cpu-idle-state-residency-ns in DT\n"); rc = -1; goto out; } /* - * Set pnv_first_deep_stop_state and pnv_deepest_stop_state. + * Set pnv_first_deep_stop_state, pnv_deepest_stop_psscr_{val,mask}, + * and the pnv_default_stop_{val,mask}. + * * pnv_first_deep_stop_state should be set to the first stop * level to cause hypervisor state loss. - * pnv_deepest_stop_state should be set to the deepest stop - * stop state. + * + * pnv_deepest_stop_{val,mask} should be set to values corresponding to + * the deepest stop state. + * + * pnv_default_stop_{val,mask} should be set to values corresponding to + * the shallowest (OPAL_PM_STOP_INST_FAST) loss-less stop state. */ pnv_first_deep_stop_state = MAX_STOP_STATE; for (i = 0; i < dt_idle_states; i++) { + int err; u64 psscr_rl = psscr_val[i] & PSSCR_RL_MASK; if ((flags[i] & OPAL_PM_LOSE_FULL_CONTEXT) && (pnv_first_deep_stop_state > psscr_rl)) pnv_first_deep_stop_state = psscr_rl; - if (pnv_deepest_stop_state < psscr_rl) - pnv_deepest_stop_state = psscr_rl; + err = validate_psscr_val_mask(&psscr_val[i], &psscr_mask[i], + flags[i]); + if (err) { + report_invalid_psscr_val(psscr_val[i], err); + continue; + } + + if (max_residency_ns < residency_ns[i]) { + max_residency_ns = residency_ns[i]; + pnv_deepest_stop_psscr_val = psscr_val[i]; + pnv_deepest_stop_psscr_mask = psscr_mask[i]; + deepest_stop_found = true; + } + + if (!default_stop_found && + (flags[i] & OPAL_PM_STOP_INST_FAST)) { + pnv_default_stop_val = psscr_val[i]; + pnv_default_stop_mask = psscr_mask[i]; + default_stop_found = true; + } + } + + if (!default_stop_found) { + pnv_default_stop_val = PSSCR_HV_DEFAULT_VAL; + pnv_default_stop_mask = PSSCR_HV_DEFAULT_MASK; + pr_warn("Setting default stop psscr val=0x%016llx,mask=0x%016llx\n", + pnv_default_stop_val, pnv_default_stop_mask); + } + + if (!deepest_stop_found) { + pnv_deepest_stop_psscr_val = PSSCR_HV_DEFAULT_VAL; + pnv_deepest_stop_psscr_mask = PSSCR_HV_DEFAULT_MASK; + pr_warn("Setting default stop psscr val=0x%016llx,mask=0x%016llx\n", + pnv_deepest_stop_psscr_val, + pnv_deepest_stop_psscr_mask); } out: kfree(psscr_val); + kfree(psscr_mask); + kfree(residency_ns); return rc; } @@ -373,7 +485,7 @@ } if (cpu_has_feature(CPU_FTR_ARCH_300)) { - if (pnv_arch300_idle_init(np, flags, dt_idle_states)) + if (pnv_power9_idle_init(np, flags, dt_idle_states)) goto out; } --- linux-4.8.0.orig/arch/powerpc/platforms/powernv/npu-dma.c +++ linux-4.8.0/arch/powerpc/platforms/powernv/npu-dma.c @@ -115,7 +115,7 @@ return 0; } -struct dma_map_ops dma_npu_ops = { +static struct dma_map_ops dma_npu_ops = { .map_page = dma_npu_map_page, .map_sg = dma_npu_map_sg, .alloc = dma_npu_alloc, --- linux-4.8.0.orig/arch/powerpc/platforms/powernv/opal-tracepoints.c +++ linux-4.8.0/arch/powerpc/platforms/powernv/opal-tracepoints.c @@ -6,9 +6,10 @@ #ifdef HAVE_JUMP_LABEL struct static_key opal_tracepoint_key = STATIC_KEY_INIT; -void opal_tracepoint_regfunc(void) +int opal_tracepoint_regfunc(void) { static_key_slow_inc(&opal_tracepoint_key); + return 0; } void opal_tracepoint_unregfunc(void) @@ -25,9 +26,10 @@ /* NB: reg/unreg are called while guarded with the tracepoints_mutex */ extern long opal_tracepoint_refcount; -void opal_tracepoint_regfunc(void) +int opal_tracepoint_regfunc(void) { opal_tracepoint_refcount++; + return 0; } void opal_tracepoint_unregfunc(void) --- linux-4.8.0.orig/arch/powerpc/platforms/powernv/opal-wrappers.S +++ linux-4.8.0/arch/powerpc/platforms/powernv/opal-wrappers.S @@ -208,6 +208,7 @@ OPAL_CALL(opal_pci_config_write_half_word, OPAL_PCI_CONFIG_WRITE_HALF_WORD); OPAL_CALL(opal_pci_config_write_word, OPAL_PCI_CONFIG_WRITE_WORD); OPAL_CALL(opal_set_xive, OPAL_SET_XIVE); +OPAL_CALL_REAL(opal_rm_set_xive, OPAL_SET_XIVE); OPAL_CALL(opal_get_xive, OPAL_GET_XIVE); OPAL_CALL(opal_register_exception_handler, OPAL_REGISTER_OPAL_EXCEPTION_HANDLER); OPAL_CALL(opal_pci_eeh_freeze_status, OPAL_PCI_EEH_FREEZE_STATUS); @@ -303,8 +304,12 @@ OPAL_CALL(opal_pci_get_power_state, OPAL_PCI_GET_POWER_STATE); OPAL_CALL(opal_pci_set_power_state, OPAL_PCI_SET_POWER_STATE); OPAL_CALL(opal_int_get_xirr, OPAL_INT_GET_XIRR); +OPAL_CALL_REAL(opal_rm_int_get_xirr, OPAL_INT_GET_XIRR); OPAL_CALL(opal_int_set_cppr, OPAL_INT_SET_CPPR); OPAL_CALL(opal_int_eoi, OPAL_INT_EOI); +OPAL_CALL_REAL(opal_rm_int_eoi, OPAL_INT_EOI); OPAL_CALL(opal_int_set_mfrr, OPAL_INT_SET_MFRR); +OPAL_CALL_REAL(opal_rm_int_set_mfrr, OPAL_INT_SET_MFRR); OPAL_CALL(opal_pci_tce_kill, OPAL_PCI_TCE_KILL); +OPAL_CALL(opal_nmmu_set_ptcr, OPAL_NMMU_SET_PTCR); OPAL_CALL_REAL(opal_rm_pci_tce_kill, OPAL_PCI_TCE_KILL); --- linux-4.8.0.orig/arch/powerpc/platforms/powernv/opal.c +++ linux-4.8.0/arch/powerpc/platforms/powernv/opal.c @@ -885,6 +885,17 @@ } } +void powernv_set_nmmu_ptcr(unsigned long ptcr) +{ + int rc; + + if (firmware_has_feature(FW_FEATURE_OPAL)) { + rc = opal_nmmu_set_ptcr(-1UL, ptcr); + if (rc != OPAL_SUCCESS && rc != OPAL_UNSUPPORTED) + pr_warn("%s: Unable to set nest mmu ptcr\n", __func__); + } +} + EXPORT_SYMBOL_GPL(opal_poll_events); EXPORT_SYMBOL_GPL(opal_rtc_read); EXPORT_SYMBOL_GPL(opal_rtc_write); @@ -896,3 +907,5 @@ EXPORT_SYMBOL_GPL(opal_leds_set_ind); /* Export this symbol for PowerNV Operator Panel class driver */ EXPORT_SYMBOL_GPL(opal_write_oppanel_async); +/* Export this for KVM */ +EXPORT_SYMBOL_GPL(opal_int_set_mfrr); --- linux-4.8.0.orig/arch/powerpc/platforms/powernv/pci-ioda.c +++ linux-4.8.0/arch/powerpc/platforms/powernv/pci-ioda.c @@ -1937,7 +1937,12 @@ struct pnv_phb *phb = pe->phb; unsigned int shift = tbl->it_page_shift; - if (phb->type == PNV_PHB_NPU) { + /* + * NVLink1 can use the TCE kill register directly as + * it's the same as PHB3. NVLink2 is different and + * should go via the OPAL call. + */ + if (phb->model == PNV_PHB_MODEL_NPU) { /* * The NVLink hardware does not support TCE kill * per TCE entry so we have to invalidate @@ -2718,15 +2723,21 @@ } #ifdef CONFIG_PCI_MSI -static void pnv_ioda2_msi_eoi(struct irq_data *d) +int64_t pnv_opal_pci_msi_eoi(struct irq_chip *chip, unsigned int hw_irq) { - unsigned int hw_irq = (unsigned int)irqd_to_hwirq(d); - struct irq_chip *chip = irq_data_get_irq_chip(d); struct pnv_phb *phb = container_of(chip, struct pnv_phb, ioda.irq_chip); + + return opal_pci_msi_eoi(phb->opal_id, hw_irq); +} + +static void pnv_ioda2_msi_eoi(struct irq_data *d) +{ int64_t rc; + unsigned int hw_irq = (unsigned int)irqd_to_hwirq(d); + struct irq_chip *chip = irq_data_get_irq_chip(d); - rc = opal_pci_msi_eoi(phb->opal_id, hw_irq); + rc = pnv_opal_pci_msi_eoi(chip, hw_irq); WARN_ON_ONCE(rc); icp_native_eoi(d); @@ -2756,6 +2767,16 @@ irq_set_chip(virq, &phb->ioda.irq_chip); } +/* + * Returns true iff chip is something that we could call + * pnv_opal_pci_msi_eoi for. + */ +bool is_pnv_opal_msi(struct irq_chip *chip) +{ + return chip->irq_eoi == pnv_ioda2_msi_eoi; +} +EXPORT_SYMBOL_GPL(is_pnv_opal_msi); + static int pnv_pci_ioda_msi_setup(struct pnv_phb *phb, struct pci_dev *dev, unsigned int hwirq, unsigned int virq, unsigned int is_64, struct msi_msg *msg) @@ -3605,6 +3626,8 @@ phb->model = PNV_PHB_MODEL_PHB3; else if (of_device_is_compatible(np, "ibm,power8-npu-pciex")) phb->model = PNV_PHB_MODEL_NPU; + else if (of_device_is_compatible(np, "ibm,power9-npu-pciex")) + phb->model = PNV_PHB_MODEL_NPU2; else phb->model = PNV_PHB_MODEL_UNKNOWN; --- linux-4.8.0.orig/arch/powerpc/platforms/powernv/pci.c +++ linux-4.8.0/arch/powerpc/platforms/powernv/pci.c @@ -309,8 +309,8 @@ be64_to_cpu(data->dma1ErrorLog1)); for (i = 0; i < OPAL_P7IOC_NUM_PEST_REGS; i++) { - if ((data->pestA[i] >> 63) == 0 && - (data->pestB[i] >> 63) == 0) + if ((be64_to_cpu(data->pestA[i]) >> 63) == 0 && + (be64_to_cpu(data->pestB[i]) >> 63) == 0) continue; pr_info("PE[%3d] A/B: %016llx %016llx\n", @@ -940,6 +940,13 @@ for_each_compatible_node(np, NULL, "ibm,ioda2-npu-phb") pnv_pci_init_npu_phb(np); + /* + * Look for NPU2 PHBs which we treat mostly as NPU PHBs with + * the exception of TCE kill which requires an OPAL call. + */ + for_each_compatible_node(np, NULL, "ibm,ioda2-npu2-phb") + pnv_pci_init_npu_phb(np); + /* Configure IOMMU DMA hooks */ set_pci_dma_ops(&dma_iommu_ops); } --- linux-4.8.0.orig/arch/powerpc/platforms/powernv/pci.h +++ linux-4.8.0/arch/powerpc/platforms/powernv/pci.h @@ -19,6 +19,7 @@ PNV_PHB_MODEL_P7IOC, PNV_PHB_MODEL_PHB3, PNV_PHB_MODEL_NPU, + PNV_PHB_MODEL_NPU2, }; #define PNV_PCI_DIAG_BUF_SIZE 8192 --- linux-4.8.0.orig/arch/powerpc/platforms/powernv/powernv.h +++ linux-4.8.0/arch/powerpc/platforms/powernv/powernv.h @@ -18,7 +18,8 @@ #endif extern u32 pnv_get_supported_cpuidle_states(void); -extern u64 pnv_deepest_stop_state; +extern u64 pnv_deepest_stop_psscr_val; +extern u64 pnv_deepest_stop_psscr_mask; extern void pnv_lpc_init(void); --- linux-4.8.0.orig/arch/powerpc/platforms/powernv/smp.c +++ linux-4.8.0/arch/powerpc/platforms/powernv/smp.c @@ -182,15 +182,17 @@ ppc64_runlatch_off(); - if (cpu_has_feature(CPU_FTR_ARCH_300)) - srr1 = power9_idle_stop(pnv_deepest_stop_state); - else if (idle_states & OPAL_PM_WINKLE_ENABLED) + if (cpu_has_feature(CPU_FTR_ARCH_300)) { + srr1 = power9_idle_stop(pnv_deepest_stop_psscr_val, + pnv_deepest_stop_psscr_mask); + } else if (idle_states & OPAL_PM_WINKLE_ENABLED) { srr1 = power7_winkle(); - else if ((idle_states & OPAL_PM_SLEEP_ENABLED) || - (idle_states & OPAL_PM_SLEEP_ENABLED_ER1)) + } else if ((idle_states & OPAL_PM_SLEEP_ENABLED) || + (idle_states & OPAL_PM_SLEEP_ENABLED_ER1)) { srr1 = power7_sleep(); - else + } else { srr1 = power7_nap(1); + } ppc64_runlatch_on(); --- linux-4.8.0.orig/arch/powerpc/platforms/ps3/htab.c +++ linux-4.8.0/arch/powerpc/platforms/ps3/htab.c @@ -63,7 +63,7 @@ vflags &= ~HPTE_V_SECONDARY; hpte_v = hpte_encode_v(vpn, psize, apsize, ssize) | vflags | HPTE_V_VALID; - hpte_r = hpte_encode_r(ps3_mm_phys_to_lpar(pa), psize, apsize, ssize) | rflags; + hpte_r = hpte_encode_r(ps3_mm_phys_to_lpar(pa), psize, apsize) | rflags; spin_lock_irqsave(&ps3_htab_lock, flags); --- linux-4.8.0.orig/arch/powerpc/platforms/pseries/cmm.c +++ linux-4.8.0/arch/powerpc/platforms/pseries/cmm.c @@ -41,6 +41,8 @@ #include #include +#include "pseries.h" + #define CMM_DRIVER_VERSION "1.0.0" #define CMM_DEFAULT_DELAY 1 #define CMM_HOTPLUG_DELAY 5 @@ -109,6 +111,38 @@ static struct task_struct *cmm_thread_ptr; +static long plpar_page_set_loaned(unsigned long vpa) +{ + unsigned long cmo_page_sz = cmo_get_page_size(); + long rc = 0; + int i; + + for (i = 0; !rc && i < PAGE_SIZE; i += cmo_page_sz) + rc = plpar_hcall_norets(H_PAGE_INIT, H_PAGE_SET_LOANED, vpa + i, 0); + + for (i -= cmo_page_sz; rc && i != 0; i -= cmo_page_sz) + plpar_hcall_norets(H_PAGE_INIT, H_PAGE_SET_ACTIVE, + vpa + i - cmo_page_sz, 0); + + return rc; +} + +static long plpar_page_set_active(unsigned long vpa) +{ + unsigned long cmo_page_sz = cmo_get_page_size(); + long rc = 0; + int i; + + for (i = 0; !rc && i < PAGE_SIZE; i += cmo_page_sz) + rc = plpar_hcall_norets(H_PAGE_INIT, H_PAGE_SET_ACTIVE, vpa + i, 0); + + for (i -= cmo_page_sz; rc && i != 0; i -= cmo_page_sz) + plpar_hcall_norets(H_PAGE_INIT, H_PAGE_SET_LOANED, + vpa + i - cmo_page_sz, 0); + + return rc; +} + /** * cmm_alloc_pages - Allocate pages and mark them as loaned * @nr: number of pages to allocate --- linux-4.8.0.orig/arch/powerpc/platforms/pseries/dlpar.c +++ linux-4.8.0/arch/powerpc/platforms/pseries/dlpar.c @@ -27,7 +27,7 @@ #include #include -struct workqueue_struct *pseries_hp_wq; +static struct workqueue_struct *pseries_hp_wq; struct pseries_hp_work { struct work_struct work; @@ -377,7 +377,7 @@ return rc; } -void pseries_hp_work_fn(struct work_struct *work) +static void pseries_hp_work_fn(struct work_struct *work) { struct pseries_hp_work *hp_work = container_of(work, struct pseries_hp_work, work); --- linux-4.8.0.orig/arch/powerpc/platforms/pseries/firmware.c +++ linux-4.8.0/arch/powerpc/platforms/pseries/firmware.c @@ -126,7 +126,7 @@ index = OV5_INDX(vec5_fw_features_table[i].feature); feat = OV5_FEAT(vec5_fw_features_table[i].feature); - if (vec5[index] & feat) + if (index < len && (vec5[index] & feat)) powerpc_firmware_features |= vec5_fw_features_table[i].val; } --- linux-4.8.0.orig/arch/powerpc/platforms/pseries/lpar.c +++ linux-4.8.0/arch/powerpc/platforms/pseries/lpar.c @@ -145,7 +145,7 @@ hpte_group, vpn, pa, rflags, vflags, psize); hpte_v = hpte_encode_v(vpn, psize, apsize, ssize) | vflags | HPTE_V_VALID; - hpte_r = hpte_encode_r(pa, psize, apsize, ssize) | rflags; + hpte_r = hpte_encode_r(pa, psize, apsize) | rflags; if (!(vflags & HPTE_V_BOLTED)) pr_devel(" hpte_v=%016lx, hpte_r=%016lx\n", hpte_v, hpte_r); @@ -221,7 +221,7 @@ return -1; } -static void pSeries_lpar_hptab_clear(void) +static void manual_hpte_clear_all(void) { unsigned long size_bytes = 1UL << ppc64_pft_size; unsigned long hpte_count = size_bytes >> 4; @@ -249,6 +249,26 @@ &(ptes[j].pteh), &(ptes[j].ptel)); } } +} + +static int hcall_hpte_clear_all(void) +{ + int rc; + + do { + rc = plpar_hcall_norets(H_CLEAR_HPT); + } while (rc == H_CONTINUE); + + return rc; +} + +static void pseries_hpte_clear_all(void) +{ + int rc; + + rc = hcall_hpte_clear_all(); + if (rc != H_SUCCESS) + manual_hpte_clear_all(); #ifdef __LITTLE_ENDIAN__ /* @@ -393,7 +413,7 @@ unsigned long *vpn, int count, int psize, int ssize) { - unsigned long param[8]; + unsigned long param[PLPAR_HCALL9_BUFSIZE]; int i = 0, pix = 0, rc; unsigned long flags = 0; int lock_tlbie = !mmu_has_feature(MMU_FTR_LOCKLESS_TLBIE); @@ -522,7 +542,7 @@ unsigned long flags = 0; struct ppc64_tlb_batch *batch = this_cpu_ptr(&ppc64_tlb_batch); int lock_tlbie = !mmu_has_feature(MMU_FTR_LOCKLESS_TLBIE); - unsigned long param[9]; + unsigned long param[PLPAR_HCALL9_BUFSIZE]; unsigned long hash, index, shift, hidx, slot; real_pte_t pte; int psize, ssize; @@ -589,6 +609,29 @@ __setup("bulk_remove=", disable_bulk_remove); +/* Actually only used for radix, so far */ +static int pseries_lpar_register_process_table(unsigned long base, + unsigned long page_size, unsigned long table_size) +{ + long rc; + unsigned long flags = PROC_TABLE_NEW; + + if (radix_enabled()) + flags |= PROC_TABLE_RADIX | PROC_TABLE_GTSE; + for (;;) { + rc = plpar_hcall_norets(H_REGISTER_PROC_TBL, flags, base, + page_size, table_size); + if (!H_IS_LONG_BUSY(rc)) + break; + mdelay(get_longbusy_msecs(rc)); + } + if (rc != H_SUCCESS) { + pr_err("Failed to register process table (rc=%ld)\n", rc); + BUG(); + } + return rc; +} + void __init hpte_init_pseries(void) { mmu_hash_ops.hpte_invalidate = pSeries_lpar_hpte_invalidate; @@ -598,10 +641,16 @@ mmu_hash_ops.hpte_remove = pSeries_lpar_hpte_remove; mmu_hash_ops.hpte_removebolted = pSeries_lpar_hpte_removebolted; mmu_hash_ops.flush_hash_range = pSeries_lpar_flush_hash_range; - mmu_hash_ops.hpte_clear_all = pSeries_lpar_hptab_clear; + mmu_hash_ops.hpte_clear_all = pseries_hpte_clear_all; mmu_hash_ops.hugepage_invalidate = pSeries_lpar_hugepage_invalidate; } +void radix_init_pseries(void) +{ + pr_info("Using radix MMU under hypervisor\n"); + register_process_table = pseries_lpar_register_process_table; +} + #ifdef CONFIG_PPC_SMLPAR #define CMO_FREE_HINT_DEFAULT 1 static int cmo_free_hint_flag = CMO_FREE_HINT_DEFAULT; @@ -661,9 +710,10 @@ #ifdef HAVE_JUMP_LABEL struct static_key hcall_tracepoint_key = STATIC_KEY_INIT; -void hcall_tracepoint_regfunc(void) +int hcall_tracepoint_regfunc(void) { static_key_slow_inc(&hcall_tracepoint_key); + return 0; } void hcall_tracepoint_unregfunc(void) @@ -680,9 +730,10 @@ /* NB: reg/unreg are called while guarded with the tracepoints_mutex */ extern long hcall_tracepoint_refcount; -void hcall_tracepoint_regfunc(void) +int hcall_tracepoint_regfunc(void) { hcall_tracepoint_refcount++; + return 0; } void hcall_tracepoint_unregfunc(void) --- linux-4.8.0.orig/arch/powerpc/platforms/pseries/lparcfg.c +++ linux-4.8.0/arch/powerpc/platforms/pseries/lparcfg.c @@ -37,6 +37,7 @@ #include #include +#include "pseries.h" /* * This isn't a module but we expose that to userspace --- linux-4.8.0.orig/arch/powerpc/platforms/pseries/pseries.h +++ linux-4.8.0/arch/powerpc/platforms/pseries/pseries.h @@ -79,4 +79,23 @@ unsigned long pseries_memory_block_size(void); +extern int CMO_PrPSP; +extern int CMO_SecPSP; +extern unsigned long CMO_PageSize; + +static inline int cmo_get_primary_psp(void) +{ + return CMO_PrPSP; +} + +static inline int cmo_get_secondary_psp(void) +{ + return CMO_SecPSP; +} + +static inline unsigned long cmo_get_page_size(void) +{ + return CMO_PageSize; +} + #endif /* _PSERIES_PSERIES_H */ --- linux-4.8.0.orig/arch/powerpc/platforms/pseries/scanlog.c +++ linux-4.8.0/arch/powerpc/platforms/pseries/scanlog.c @@ -156,7 +156,7 @@ return 0; } -const struct file_operations scanlog_fops = { +static const struct file_operations scanlog_fops = { .owner = THIS_MODULE, .read = scanlog_read, .write = scanlog_write, --- linux-4.8.0.orig/arch/powerpc/sysdev/cpm1.c +++ linux-4.8.0/arch/powerpc/sysdev/cpm1.c @@ -233,8 +233,6 @@ else out_be32(&siu_conf->sc_sdcr, 1); immr_unmap(siu_conf); - - cpm_muram_init(); } static DEFINE_SPINLOCK(cmd_lock); --- linux-4.8.0.orig/arch/powerpc/sysdev/cpm2.c +++ linux-4.8.0/arch/powerpc/sysdev/cpm2.c @@ -66,10 +66,6 @@ cpm2_immr = ioremap(get_immrbase(), CPM_MAP_SIZE); #endif - /* Reclaim the DP memory for our use. - */ - cpm_muram_init(); - /* Tell everyone where the comm processor resides. */ cpmp = &cpm2_immr->im_cpm; --- linux-4.8.0.orig/arch/powerpc/sysdev/cpm_common.c +++ linux-4.8.0/arch/powerpc/sysdev/cpm_common.c @@ -37,6 +37,21 @@ #include #endif +static int __init cpm_init(void) +{ + struct device_node *np; + + np = of_find_compatible_node(NULL, NULL, "fsl,cpm1"); + if (!np) + np = of_find_compatible_node(NULL, NULL, "fsl,cpm2"); + if (!np) + return -ENODEV; + cpm_muram_init(); + of_node_put(np); + return 0; +} +subsys_initcall(cpm_init); + #ifdef CONFIG_PPC_EARLY_DEBUG_CPM static u32 __iomem *cpm_udbg_txdesc; static u8 __iomem *cpm_udbg_txbuf; --- linux-4.8.0.orig/arch/powerpc/sysdev/mmio_nvram.c +++ linux-4.8.0/arch/powerpc/sysdev/mmio_nvram.c @@ -89,7 +89,7 @@ return count; } -void mmio_nvram_write_val(int addr, unsigned char val) +static void mmio_nvram_write_val(int addr, unsigned char val) { unsigned long flags; --- linux-4.8.0.orig/arch/powerpc/xmon/spr_access.S +++ linux-4.8.0/arch/powerpc/xmon/spr_access.S @@ -2,12 +2,12 @@ /* unsigned long xmon_mfspr(sprn, default_value) */ _GLOBAL(xmon_mfspr) - ld r5, .Lmfspr_table@got(r2) + PPC_LL r5, .Lmfspr_table@got(r2) b xmon_mxspr /* void xmon_mtspr(sprn, new_value) */ _GLOBAL(xmon_mtspr) - ld r5, .Lmtspr_table@got(r2) + PPC_LL r5, .Lmtspr_table@got(r2) b xmon_mxspr /* --- linux-4.8.0.orig/arch/s390/hypfs/hypfs_diag.c +++ linux-4.8.0/arch/s390/hypfs/hypfs_diag.c @@ -363,11 +363,11 @@ static int diag224_get_name_table(void) { /* memory must be below 2GB */ - diag224_cpu_names = kmalloc(PAGE_SIZE, GFP_KERNEL | GFP_DMA); + diag224_cpu_names = (char *) __get_free_page(GFP_KERNEL | GFP_DMA); if (!diag224_cpu_names) return -ENOMEM; if (diag224(diag224_cpu_names)) { - kfree(diag224_cpu_names); + free_page((unsigned long) diag224_cpu_names); return -EOPNOTSUPP; } EBCASC(diag224_cpu_names + 16, (*diag224_cpu_names + 1) * 16); @@ -376,7 +376,7 @@ static void diag224_delete_name_table(void) { - kfree(diag224_cpu_names); + free_page((unsigned long) diag224_cpu_names); } static int diag224_idx2name(int index, char *name) --- linux-4.8.0.orig/arch/s390/include/asm/kvm_host.h +++ linux-4.8.0/arch/s390/include/asm/kvm_host.h @@ -245,72 +245,72 @@ } __packed; struct kvm_vcpu_stat { - u32 exit_userspace; - u32 exit_null; - u32 exit_external_request; - u32 exit_external_interrupt; - u32 exit_stop_request; - u32 exit_validity; - u32 exit_instruction; - u32 exit_pei; - u32 halt_successful_poll; - u32 halt_attempted_poll; - u32 halt_poll_invalid; - u32 halt_wakeup; - u32 instruction_lctl; - u32 instruction_lctlg; - u32 instruction_stctl; - u32 instruction_stctg; - u32 exit_program_interruption; - u32 exit_instr_and_program; - u32 exit_operation_exception; - u32 deliver_external_call; - u32 deliver_emergency_signal; - u32 deliver_service_signal; - u32 deliver_virtio_interrupt; - u32 deliver_stop_signal; - u32 deliver_prefix_signal; - u32 deliver_restart_signal; - u32 deliver_program_int; - u32 deliver_io_int; - u32 exit_wait_state; - u32 instruction_pfmf; - u32 instruction_stidp; - u32 instruction_spx; - u32 instruction_stpx; - u32 instruction_stap; - u32 instruction_storage_key; - u32 instruction_ipte_interlock; - u32 instruction_stsch; - u32 instruction_chsc; - u32 instruction_stsi; - u32 instruction_stfl; - u32 instruction_tprot; - u32 instruction_sie; - u32 instruction_essa; - u32 instruction_sthyi; - u32 instruction_sigp_sense; - u32 instruction_sigp_sense_running; - u32 instruction_sigp_external_call; - u32 instruction_sigp_emergency; - u32 instruction_sigp_cond_emergency; - u32 instruction_sigp_start; - u32 instruction_sigp_stop; - u32 instruction_sigp_stop_store_status; - u32 instruction_sigp_store_status; - u32 instruction_sigp_store_adtl_status; - u32 instruction_sigp_arch; - u32 instruction_sigp_prefix; - u32 instruction_sigp_restart; - u32 instruction_sigp_init_cpu_reset; - u32 instruction_sigp_cpu_reset; - u32 instruction_sigp_unknown; - u32 diagnose_10; - u32 diagnose_44; - u32 diagnose_9c; - u32 diagnose_258; - u32 diagnose_308; - u32 diagnose_500; + u64 exit_userspace; + u64 exit_null; + u64 exit_external_request; + u64 exit_external_interrupt; + u64 exit_stop_request; + u64 exit_validity; + u64 exit_instruction; + u64 exit_pei; + u64 halt_successful_poll; + u64 halt_attempted_poll; + u64 halt_poll_invalid; + u64 halt_wakeup; + u64 instruction_lctl; + u64 instruction_lctlg; + u64 instruction_stctl; + u64 instruction_stctg; + u64 exit_program_interruption; + u64 exit_instr_and_program; + u64 exit_operation_exception; + u64 deliver_external_call; + u64 deliver_emergency_signal; + u64 deliver_service_signal; + u64 deliver_virtio_interrupt; + u64 deliver_stop_signal; + u64 deliver_prefix_signal; + u64 deliver_restart_signal; + u64 deliver_program_int; + u64 deliver_io_int; + u64 exit_wait_state; + u64 instruction_pfmf; + u64 instruction_stidp; + u64 instruction_spx; + u64 instruction_stpx; + u64 instruction_stap; + u64 instruction_storage_key; + u64 instruction_ipte_interlock; + u64 instruction_stsch; + u64 instruction_chsc; + u64 instruction_stsi; + u64 instruction_stfl; + u64 instruction_tprot; + u64 instruction_sie; + u64 instruction_essa; + u64 instruction_sthyi; + u64 instruction_sigp_sense; + u64 instruction_sigp_sense_running; + u64 instruction_sigp_external_call; + u64 instruction_sigp_emergency; + u64 instruction_sigp_cond_emergency; + u64 instruction_sigp_start; + u64 instruction_sigp_stop; + u64 instruction_sigp_stop_store_status; + u64 instruction_sigp_store_status; + u64 instruction_sigp_store_adtl_status; + u64 instruction_sigp_arch; + u64 instruction_sigp_prefix; + u64 instruction_sigp_restart; + u64 instruction_sigp_init_cpu_reset; + u64 instruction_sigp_cpu_reset; + u64 instruction_sigp_unknown; + u64 diagnose_10; + u64 diagnose_44; + u64 diagnose_9c; + u64 diagnose_258; + u64 diagnose_308; + u64 diagnose_500; }; #define PGM_OPERATION 0x01 @@ -577,7 +577,7 @@ }; struct kvm_vm_stat { - u32 remote_tlb_flush; + ulong remote_tlb_flush; }; struct kvm_arch_memory_slot { --- linux-4.8.0.orig/arch/s390/include/asm/processor.h +++ linux-4.8.0/arch/s390/include/asm/processor.h @@ -192,7 +192,7 @@ struct mm_struct; struct seq_file; -typedef int (*dump_trace_func_t)(void *data, unsigned long address); +typedef int (*dump_trace_func_t)(void *data, unsigned long address, int reliable); void dump_trace(dump_trace_func_t func, void *data, struct task_struct *task, unsigned long sp); --- linux-4.8.0.orig/arch/s390/include/asm/tlb.h +++ linux-4.8.0/arch/s390/include/asm/tlb.h @@ -162,5 +162,13 @@ #define tlb_remove_tlb_entry(tlb, ptep, addr) do { } while (0) #define tlb_remove_pmd_tlb_entry(tlb, pmdp, addr) do { } while (0) #define tlb_migrate_finish(mm) do { } while (0) +#define tlb_remove_huge_tlb_entry(h, tlb, ptep, address) \ + tlb_remove_tlb_entry(tlb, ptep, address) + +#define tlb_remove_check_page_size_change tlb_remove_check_page_size_change +static inline void tlb_remove_check_page_size_change(struct mmu_gather *tlb, + unsigned int page_size) +{ +} #endif /* _S390_TLB_H */ --- linux-4.8.0.orig/arch/s390/kernel/dumpstack.c +++ linux-4.8.0/arch/s390/kernel/dumpstack.c @@ -38,10 +38,10 @@ if (sp < low || sp > high - sizeof(*sf)) return sp; sf = (struct stack_frame *) sp; + if (func(data, sf->gprs[8], 0)) + return sp; /* Follow the backchain. */ while (1) { - if (func(data, sf->gprs[8])) - return sp; low = sp; sp = sf->back_chain; if (!sp) @@ -49,6 +49,8 @@ if (sp <= low || sp > high - sizeof(*sf)) return sp; sf = (struct stack_frame *) sp; + if (func(data, sf->gprs[8], 1)) + return sp; } /* Zero backchain detected, check for interrupt frame. */ sp = (unsigned long) (sf + 1); @@ -56,7 +58,7 @@ return sp; regs = (struct pt_regs *) sp; if (!user_mode(regs)) { - if (func(data, regs->psw.addr)) + if (func(data, regs->psw.addr, 1)) return sp; } low = sp; @@ -90,7 +92,7 @@ int depth; }; -static int __return_address(void *data, unsigned long address) +static int __return_address(void *data, unsigned long address, int reliable) { struct return_address_data *rd = data; @@ -109,9 +111,12 @@ } EXPORT_SYMBOL_GPL(return_address); -static int show_address(void *data, unsigned long address) +static int show_address(void *data, unsigned long address, int reliable) { - printk("([<%016lx>] %pSR)\n", address, (void *)address); + if (reliable) + printk(" [<%016lx>] %pSR \n", address, (void *)address); + else + printk("([<%016lx>] %pSR)\n", address, (void *)address); return 0; } --- linux-4.8.0.orig/arch/s390/kernel/perf_event.c +++ linux-4.8.0/arch/s390/kernel/perf_event.c @@ -222,7 +222,7 @@ } arch_initcall(service_level_perf_register); -static int __perf_callchain_kernel(void *data, unsigned long address) +static int __perf_callchain_kernel(void *data, unsigned long address, int reliable) { struct perf_callchain_entry_ctx *entry = data; --- linux-4.8.0.orig/arch/s390/kernel/setup.c +++ linux-4.8.0/arch/s390/kernel/setup.c @@ -445,7 +445,7 @@ * part of the System RAM resource. */ if (crashk_res.end) { - memblock_add(crashk_res.start, resource_size(&crashk_res)); + memblock_add_node(crashk_res.start, resource_size(&crashk_res), 0); memblock_reserve(crashk_res.start, resource_size(&crashk_res)); insert_resource(&iomem_resource, &crashk_res); } --- linux-4.8.0.orig/arch/s390/kernel/stacktrace.c +++ linux-4.8.0/arch/s390/kernel/stacktrace.c @@ -27,12 +27,12 @@ return 1; } -static int save_address(void *data, unsigned long address) +static int save_address(void *data, unsigned long address, int reliable) { return __save_address(data, address, 0); } -static int save_address_nosched(void *data, unsigned long address) +static int save_address_nosched(void *data, unsigned long address, int reliable) { return __save_address(data, address, 1); } --- linux-4.8.0.orig/arch/s390/kvm/intercept.c +++ linux-4.8.0/arch/s390/kvm/intercept.c @@ -118,8 +118,13 @@ vcpu->stat.exit_validity++; trace_kvm_s390_intercept_validity(vcpu, viwhy); - WARN_ONCE(true, "kvm: unhandled validity intercept 0x%x\n", viwhy); - return -EOPNOTSUPP; + KVM_EVENT(3, "validity intercept 0x%x for pid %u (kvm 0x%pK)", viwhy, + current->pid, vcpu->kvm); + + /* do not warn on invalid runtime instrumentation mode */ + WARN_ONCE(viwhy != 0x44, "kvm: unhandled validity intercept 0x%x\n", + viwhy); + return -EINVAL; } static int handle_instruction(struct kvm_vcpu *vcpu) --- linux-4.8.0.orig/arch/s390/kvm/kvm-s390.c +++ linux-4.8.0/arch/s390/kvm/kvm-s390.c @@ -1490,6 +1490,16 @@ return rc; } +bool kvm_arch_has_vcpu_debugfs(void) +{ + return false; +} + +int kvm_arch_create_vcpu_debugfs(struct kvm_vcpu *vcpu) +{ + return 0; +} + void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu) { VCPU_EVENT(vcpu, 3, "%s", "free cpu"); --- linux-4.8.0.orig/arch/s390/kvm/sthyi.c +++ linux-4.8.0/arch/s390/kvm/sthyi.c @@ -315,7 +315,7 @@ if (r < 0) goto out; - diag224_buf = kmalloc(PAGE_SIZE, GFP_KERNEL | GFP_DMA); + diag224_buf = (void *)__get_free_page(GFP_KERNEL | GFP_DMA); if (!diag224_buf || diag224(diag224_buf)) goto out; @@ -378,7 +378,7 @@ sctns->par.infpval1 |= PAR_WGHT_VLD; out: - kfree(diag224_buf); + free_page((unsigned long)diag224_buf); vfree(diag204_buf); } --- linux-4.8.0.orig/arch/s390/mm/mmap.c +++ linux-4.8.0/arch/s390/mm/mmap.c @@ -98,7 +98,7 @@ addr = PAGE_ALIGN(addr); vma = find_vma(mm, addr); if (TASK_SIZE - len >= addr && addr >= mmap_min_addr && - (!vma || addr + len <= vma->vm_start)) + (!vma || addr + len <= vm_start_gap(vma))) return addr; } @@ -136,7 +136,7 @@ addr = PAGE_ALIGN(addr); vma = find_vma(mm, addr); if (TASK_SIZE - len >= addr && addr >= mmap_min_addr && - (!vma || addr + len <= vma->vm_start)) + (!vma || addr + len <= vm_start_gap(vma))) return addr; } --- linux-4.8.0.orig/arch/s390/oprofile/init.c +++ linux-4.8.0/arch/s390/oprofile/init.c @@ -13,7 +13,7 @@ #include #include -static int __s390_backtrace(void *data, unsigned long address) +static int __s390_backtrace(void *data, unsigned long address, int reliable) { unsigned int *depth = data; --- linux-4.8.0.orig/arch/sh/include/asm/tlb.h +++ linux-4.8.0/arch/sh/include/asm/tlb.h @@ -65,6 +65,9 @@ tlb->end = address + PAGE_SIZE; } +#define tlb_remove_huge_tlb_entry(h, tlb, ptep, address) \ + tlb_remove_tlb_entry(tlb, ptep, address) + /* * In the case of tlb vma handling, we can optimise these away in the * case where we're doing a full MM flush. When we're doing a munmap, @@ -127,6 +130,12 @@ return tlb_remove_page(tlb, page); } +#define tlb_remove_check_page_size_change tlb_remove_check_page_size_change +static inline void tlb_remove_check_page_size_change(struct mmu_gather *tlb, + unsigned int page_size) +{ +} + #define pte_free_tlb(tlb, ptep, addr) pte_free((tlb)->mm, ptep) #define pmd_free_tlb(tlb, pmdp, addr) pmd_free((tlb)->mm, pmdp) #define pud_free_tlb(tlb, pudp, addr) pud_free((tlb)->mm, pudp) --- linux-4.8.0.orig/arch/sh/mm/mmap.c +++ linux-4.8.0/arch/sh/mm/mmap.c @@ -63,7 +63,7 @@ vma = find_vma(mm, addr); if (TASK_SIZE - len >= addr && - (!vma || addr + len <= vma->vm_start)) + (!vma || addr + len <= vm_start_gap(vma))) return addr; } @@ -113,7 +113,7 @@ vma = find_vma(mm, addr); if (TASK_SIZE - len >= addr && - (!vma || addr + len <= vma->vm_start)) + (!vma || addr + len <= vm_start_gap(vma))) return addr; } --- linux-4.8.0.orig/arch/sparc/include/asm/uaccess_64.h +++ linux-4.8.0/arch/sparc/include/asm/uaccess_64.h @@ -98,7 +98,6 @@ unsigned int insn, fixup; }; -void __ret_efault(void); void __retl_efault(void); /* Uh, these should become the main single-value transfer routines.. @@ -205,55 +204,34 @@ unsigned long __must_check ___copy_from_user(void *to, const void __user *from, unsigned long size); -unsigned long copy_from_user_fixup(void *to, const void __user *from, - unsigned long size); static inline unsigned long __must_check copy_from_user(void *to, const void __user *from, unsigned long size) { - unsigned long ret; - check_object_size(to, size, false); - ret = ___copy_from_user(to, from, size); - if (unlikely(ret)) - ret = copy_from_user_fixup(to, from, size); - - return ret; + return ___copy_from_user(to, from, size); } #define __copy_from_user copy_from_user unsigned long __must_check ___copy_to_user(void __user *to, const void *from, unsigned long size); -unsigned long copy_to_user_fixup(void __user *to, const void *from, - unsigned long size); static inline unsigned long __must_check copy_to_user(void __user *to, const void *from, unsigned long size) { - unsigned long ret; - check_object_size(from, size, true); - ret = ___copy_to_user(to, from, size); - if (unlikely(ret)) - ret = copy_to_user_fixup(to, from, size); - return ret; + return ___copy_to_user(to, from, size); } #define __copy_to_user copy_to_user unsigned long __must_check ___copy_in_user(void __user *to, const void __user *from, unsigned long size); -unsigned long copy_in_user_fixup(void __user *to, void __user *from, - unsigned long size); static inline unsigned long __must_check copy_in_user(void __user *to, void __user *from, unsigned long size) { - unsigned long ret = ___copy_in_user(to, from, size); - - if (unlikely(ret)) - ret = copy_in_user_fixup(to, from, size); - return ret; + return ___copy_in_user(to, from, size); } #define __copy_in_user copy_in_user --- linux-4.8.0.orig/arch/sparc/kernel/head_64.S +++ linux-4.8.0/arch/sparc/kernel/head_64.S @@ -922,47 +922,11 @@ tlb_type: .word 0 /* Must NOT end up in BSS */ .section ".fixup",#alloc,#execinstr - .globl __ret_efault, __retl_efault, __ret_one, __retl_one -ENTRY(__ret_efault) - ret - restore %g0, -EFAULT, %o0 -ENDPROC(__ret_efault) - ENTRY(__retl_efault) retl mov -EFAULT, %o0 ENDPROC(__retl_efault) -ENTRY(__retl_one) - retl - mov 1, %o0 -ENDPROC(__retl_one) - -ENTRY(__retl_one_fp) - VISExitHalf - retl - mov 1, %o0 -ENDPROC(__retl_one_fp) - -ENTRY(__ret_one_asi) - wr %g0, ASI_AIUS, %asi - ret - restore %g0, 1, %o0 -ENDPROC(__ret_one_asi) - -ENTRY(__retl_one_asi) - wr %g0, ASI_AIUS, %asi - retl - mov 1, %o0 -ENDPROC(__retl_one_asi) - -ENTRY(__retl_one_asi_fp) - wr %g0, ASI_AIUS, %asi - VISExitHalf - retl - mov 1, %o0 -ENDPROC(__retl_one_asi_fp) - ENTRY(__retl_o1) retl mov %o1, %o0 --- linux-4.8.0.orig/arch/sparc/kernel/jump_label.c +++ linux-4.8.0/arch/sparc/kernel/jump_label.c @@ -13,19 +13,30 @@ void arch_jump_label_transform(struct jump_entry *entry, enum jump_label_type type) { - u32 val; u32 *insn = (u32 *) (unsigned long) entry->code; + u32 val; if (type == JUMP_LABEL_JMP) { s32 off = (s32)entry->target - (s32)entry->code; + bool use_v9_branch = false; + + BUG_ON(off & 3); #ifdef CONFIG_SPARC64 - /* ba,pt %xcc, . + (off << 2) */ - val = 0x10680000 | ((u32) off >> 2); -#else - /* ba . + (off << 2) */ - val = 0x10800000 | ((u32) off >> 2); + if (off <= 0xfffff && off >= -0x100000) + use_v9_branch = true; #endif + if (use_v9_branch) { + /* WDISP19 - target is . + immed << 2 */ + /* ba,pt %xcc, . + off */ + val = 0x10680000 | (((u32) off >> 2) & 0x7ffff); + } else { + /* WDISP22 - target is . + immed << 2 */ + BUG_ON(off > 0x7fffff); + BUG_ON(off < -0x800000); + /* ba . + off */ + val = 0x10800000 | (((u32) off >> 2) & 0x3fffff); + } } else { val = 0x01000000; } --- linux-4.8.0.orig/arch/sparc/kernel/signal_32.c +++ linux-4.8.0/arch/sparc/kernel/signal_32.c @@ -89,7 +89,7 @@ sf = (struct signal_frame __user *) regs->u_regs[UREG_FP]; /* 1. Make sure we are not getting garbage from the user */ - if (!invalid_frame_pointer(sf, sizeof(*sf))) + if (invalid_frame_pointer(sf, sizeof(*sf))) goto segv_and_exit; if (get_user(ufp, &sf->info.si_regs.u_regs[UREG_FP])) @@ -150,7 +150,7 @@ synchronize_user_stack(); sf = (struct rt_signal_frame __user *) regs->u_regs[UREG_FP]; - if (!invalid_frame_pointer(sf, sizeof(*sf))) + if (invalid_frame_pointer(sf, sizeof(*sf))) goto segv; if (get_user(ufp, &sf->regs.u_regs[UREG_FP])) --- linux-4.8.0.orig/arch/sparc/kernel/sparc_ksyms_64.c +++ linux-4.8.0/arch/sparc/kernel/sparc_ksyms_64.c @@ -27,7 +27,6 @@ EXPORT_SYMBOL_GPL(real_hard_smp_processor_id); /* from head_64.S */ -EXPORT_SYMBOL(__ret_efault); EXPORT_SYMBOL(tlb_type); EXPORT_SYMBOL(sun4v_chip_type); EXPORT_SYMBOL(prom_root_node); --- linux-4.8.0.orig/arch/sparc/kernel/sys_sparc_64.c +++ linux-4.8.0/arch/sparc/kernel/sys_sparc_64.c @@ -118,7 +118,7 @@ vma = find_vma(mm, addr); if (task_size - len >= addr && - (!vma || addr + len <= vma->vm_start)) + (!vma || addr + len <= vm_start_gap(vma))) return addr; } @@ -181,7 +181,7 @@ vma = find_vma(mm, addr); if (task_size - len >= addr && - (!vma || addr + len <= vma->vm_start)) + (!vma || addr + len <= vm_start_gap(vma))) return addr; } --- linux-4.8.0.orig/arch/sparc/lib/GENcopy_from_user.S +++ linux-4.8.0/arch/sparc/lib/GENcopy_from_user.S @@ -3,11 +3,11 @@ * Copyright (C) 2007 David S. Miller (davem@davemloft.net) */ -#define EX_LD(x) \ +#define EX_LD(x,y) \ 98: x; \ .section __ex_table,"a";\ .align 4; \ - .word 98b, __retl_one; \ + .word 98b, y; \ .text; \ .align 4; --- linux-4.8.0.orig/arch/sparc/lib/GENcopy_to_user.S +++ linux-4.8.0/arch/sparc/lib/GENcopy_to_user.S @@ -3,11 +3,11 @@ * Copyright (C) 2007 David S. Miller (davem@davemloft.net) */ -#define EX_ST(x) \ +#define EX_ST(x,y) \ 98: x; \ .section __ex_table,"a";\ .align 4; \ - .word 98b, __retl_one; \ + .word 98b, y; \ .text; \ .align 4; --- linux-4.8.0.orig/arch/sparc/lib/GENmemcpy.S +++ linux-4.8.0/arch/sparc/lib/GENmemcpy.S @@ -4,21 +4,18 @@ */ #ifdef __KERNEL__ +#include #define GLOBAL_SPARE %g7 #else #define GLOBAL_SPARE %g5 #endif #ifndef EX_LD -#define EX_LD(x) x +#define EX_LD(x,y) x #endif #ifndef EX_ST -#define EX_ST(x) x -#endif - -#ifndef EX_RETVAL -#define EX_RETVAL(x) x +#define EX_ST(x,y) x #endif #ifndef LOAD @@ -45,6 +42,29 @@ .register %g3,#scratch .text + +#ifndef EX_RETVAL +#define EX_RETVAL(x) x +ENTRY(GEN_retl_o4_1) + add %o4, %o2, %o4 + retl + add %o4, 1, %o0 +ENDPROC(GEN_retl_o4_1) +ENTRY(GEN_retl_g1_8) + add %g1, %o2, %g1 + retl + add %g1, 8, %o0 +ENDPROC(GEN_retl_g1_8) +ENTRY(GEN_retl_o2_4) + retl + add %o2, 4, %o0 +ENDPROC(GEN_retl_o2_4) +ENTRY(GEN_retl_o2_1) + retl + add %o2, 1, %o0 +ENDPROC(GEN_retl_o2_1) +#endif + .align 64 .globl FUNC_NAME @@ -73,8 +93,8 @@ sub %g0, %o4, %o4 sub %o2, %o4, %o2 1: subcc %o4, 1, %o4 - EX_LD(LOAD(ldub, %o1, %g1)) - EX_ST(STORE(stb, %g1, %o0)) + EX_LD(LOAD(ldub, %o1, %g1),GEN_retl_o4_1) + EX_ST(STORE(stb, %g1, %o0),GEN_retl_o4_1) add %o1, 1, %o1 bne,pt %XCC, 1b add %o0, 1, %o0 @@ -82,8 +102,8 @@ andn %o2, 0x7, %g1 sub %o2, %g1, %o2 1: subcc %g1, 0x8, %g1 - EX_LD(LOAD(ldx, %o1, %g2)) - EX_ST(STORE(stx, %g2, %o0)) + EX_LD(LOAD(ldx, %o1, %g2),GEN_retl_g1_8) + EX_ST(STORE(stx, %g2, %o0),GEN_retl_g1_8) add %o1, 0x8, %o1 bne,pt %XCC, 1b add %o0, 0x8, %o0 @@ -100,8 +120,8 @@ 1: subcc %o2, 4, %o2 - EX_LD(LOAD(lduw, %o1, %g1)) - EX_ST(STORE(stw, %g1, %o1 + %o3)) + EX_LD(LOAD(lduw, %o1, %g1),GEN_retl_o2_4) + EX_ST(STORE(stw, %g1, %o1 + %o3),GEN_retl_o2_4) bgu,pt %XCC, 1b add %o1, 4, %o1 @@ -111,8 +131,8 @@ .align 32 90: subcc %o2, 1, %o2 - EX_LD(LOAD(ldub, %o1, %g1)) - EX_ST(STORE(stb, %g1, %o1 + %o3)) + EX_LD(LOAD(ldub, %o1, %g1),GEN_retl_o2_1) + EX_ST(STORE(stb, %g1, %o1 + %o3),GEN_retl_o2_1) bgu,pt %XCC, 90b add %o1, 1, %o1 retl --- linux-4.8.0.orig/arch/sparc/lib/Makefile +++ linux-4.8.0/arch/sparc/lib/Makefile @@ -38,7 +38,7 @@ lib-$(CONFIG_SPARC64) += GENmemcpy.o GENcopy_from_user.o GENcopy_to_user.o lib-$(CONFIG_SPARC64) += GENpatch.o GENpage.o GENbzero.o -lib-$(CONFIG_SPARC64) += copy_in_user.o user_fixup.o memmove.o +lib-$(CONFIG_SPARC64) += copy_in_user.o memmove.o lib-$(CONFIG_SPARC64) += mcount.o ipcsum.o xor.o hweight.o ffs.o obj-$(CONFIG_SPARC64) += iomap.o --- linux-4.8.0.orig/arch/sparc/lib/NG2copy_from_user.S +++ linux-4.8.0/arch/sparc/lib/NG2copy_from_user.S @@ -3,19 +3,19 @@ * Copyright (C) 2007 David S. Miller (davem@davemloft.net) */ -#define EX_LD(x) \ +#define EX_LD(x,y) \ 98: x; \ .section __ex_table,"a";\ .align 4; \ - .word 98b, __retl_one_asi;\ + .word 98b, y; \ .text; \ .align 4; -#define EX_LD_FP(x) \ +#define EX_LD_FP(x,y) \ 98: x; \ .section __ex_table,"a";\ .align 4; \ - .word 98b, __retl_one_asi_fp;\ + .word 98b, y##_fp; \ .text; \ .align 4; --- linux-4.8.0.orig/arch/sparc/lib/NG2copy_to_user.S +++ linux-4.8.0/arch/sparc/lib/NG2copy_to_user.S @@ -3,19 +3,19 @@ * Copyright (C) 2007 David S. Miller (davem@davemloft.net) */ -#define EX_ST(x) \ +#define EX_ST(x,y) \ 98: x; \ .section __ex_table,"a";\ .align 4; \ - .word 98b, __retl_one_asi;\ + .word 98b, y; \ .text; \ .align 4; -#define EX_ST_FP(x) \ +#define EX_ST_FP(x,y) \ 98: x; \ .section __ex_table,"a";\ .align 4; \ - .word 98b, __retl_one_asi_fp;\ + .word 98b, y##_fp; \ .text; \ .align 4; --- linux-4.8.0.orig/arch/sparc/lib/NG2memcpy.S +++ linux-4.8.0/arch/sparc/lib/NG2memcpy.S @@ -4,6 +4,7 @@ */ #ifdef __KERNEL__ +#include #include #include #define GLOBAL_SPARE %g7 @@ -32,21 +33,17 @@ #endif #ifndef EX_LD -#define EX_LD(x) x +#define EX_LD(x,y) x #endif #ifndef EX_LD_FP -#define EX_LD_FP(x) x +#define EX_LD_FP(x,y) x #endif #ifndef EX_ST -#define EX_ST(x) x +#define EX_ST(x,y) x #endif #ifndef EX_ST_FP -#define EX_ST_FP(x) x -#endif - -#ifndef EX_RETVAL -#define EX_RETVAL(x) x +#define EX_ST_FP(x,y) x #endif #ifndef LOAD @@ -140,45 +137,110 @@ fsrc2 %x6, %f12; \ fsrc2 %x7, %f14; #define FREG_LOAD_1(base, x0) \ - EX_LD_FP(LOAD(ldd, base + 0x00, %x0)) + EX_LD_FP(LOAD(ldd, base + 0x00, %x0), NG2_retl_o2_plus_g1) #define FREG_LOAD_2(base, x0, x1) \ - EX_LD_FP(LOAD(ldd, base + 0x00, %x0)); \ - EX_LD_FP(LOAD(ldd, base + 0x08, %x1)); + EX_LD_FP(LOAD(ldd, base + 0x00, %x0), NG2_retl_o2_plus_g1); \ + EX_LD_FP(LOAD(ldd, base + 0x08, %x1), NG2_retl_o2_plus_g1); #define FREG_LOAD_3(base, x0, x1, x2) \ - EX_LD_FP(LOAD(ldd, base + 0x00, %x0)); \ - EX_LD_FP(LOAD(ldd, base + 0x08, %x1)); \ - EX_LD_FP(LOAD(ldd, base + 0x10, %x2)); + EX_LD_FP(LOAD(ldd, base + 0x00, %x0), NG2_retl_o2_plus_g1); \ + EX_LD_FP(LOAD(ldd, base + 0x08, %x1), NG2_retl_o2_plus_g1); \ + EX_LD_FP(LOAD(ldd, base + 0x10, %x2), NG2_retl_o2_plus_g1); #define FREG_LOAD_4(base, x0, x1, x2, x3) \ - EX_LD_FP(LOAD(ldd, base + 0x00, %x0)); \ - EX_LD_FP(LOAD(ldd, base + 0x08, %x1)); \ - EX_LD_FP(LOAD(ldd, base + 0x10, %x2)); \ - EX_LD_FP(LOAD(ldd, base + 0x18, %x3)); + EX_LD_FP(LOAD(ldd, base + 0x00, %x0), NG2_retl_o2_plus_g1); \ + EX_LD_FP(LOAD(ldd, base + 0x08, %x1), NG2_retl_o2_plus_g1); \ + EX_LD_FP(LOAD(ldd, base + 0x10, %x2), NG2_retl_o2_plus_g1); \ + EX_LD_FP(LOAD(ldd, base + 0x18, %x3), NG2_retl_o2_plus_g1); #define FREG_LOAD_5(base, x0, x1, x2, x3, x4) \ - EX_LD_FP(LOAD(ldd, base + 0x00, %x0)); \ - EX_LD_FP(LOAD(ldd, base + 0x08, %x1)); \ - EX_LD_FP(LOAD(ldd, base + 0x10, %x2)); \ - EX_LD_FP(LOAD(ldd, base + 0x18, %x3)); \ - EX_LD_FP(LOAD(ldd, base + 0x20, %x4)); + EX_LD_FP(LOAD(ldd, base + 0x00, %x0), NG2_retl_o2_plus_g1); \ + EX_LD_FP(LOAD(ldd, base + 0x08, %x1), NG2_retl_o2_plus_g1); \ + EX_LD_FP(LOAD(ldd, base + 0x10, %x2), NG2_retl_o2_plus_g1); \ + EX_LD_FP(LOAD(ldd, base + 0x18, %x3), NG2_retl_o2_plus_g1); \ + EX_LD_FP(LOAD(ldd, base + 0x20, %x4), NG2_retl_o2_plus_g1); #define FREG_LOAD_6(base, x0, x1, x2, x3, x4, x5) \ - EX_LD_FP(LOAD(ldd, base + 0x00, %x0)); \ - EX_LD_FP(LOAD(ldd, base + 0x08, %x1)); \ - EX_LD_FP(LOAD(ldd, base + 0x10, %x2)); \ - EX_LD_FP(LOAD(ldd, base + 0x18, %x3)); \ - EX_LD_FP(LOAD(ldd, base + 0x20, %x4)); \ - EX_LD_FP(LOAD(ldd, base + 0x28, %x5)); + EX_LD_FP(LOAD(ldd, base + 0x00, %x0), NG2_retl_o2_plus_g1); \ + EX_LD_FP(LOAD(ldd, base + 0x08, %x1), NG2_retl_o2_plus_g1); \ + EX_LD_FP(LOAD(ldd, base + 0x10, %x2), NG2_retl_o2_plus_g1); \ + EX_LD_FP(LOAD(ldd, base + 0x18, %x3), NG2_retl_o2_plus_g1); \ + EX_LD_FP(LOAD(ldd, base + 0x20, %x4), NG2_retl_o2_plus_g1); \ + EX_LD_FP(LOAD(ldd, base + 0x28, %x5), NG2_retl_o2_plus_g1); #define FREG_LOAD_7(base, x0, x1, x2, x3, x4, x5, x6) \ - EX_LD_FP(LOAD(ldd, base + 0x00, %x0)); \ - EX_LD_FP(LOAD(ldd, base + 0x08, %x1)); \ - EX_LD_FP(LOAD(ldd, base + 0x10, %x2)); \ - EX_LD_FP(LOAD(ldd, base + 0x18, %x3)); \ - EX_LD_FP(LOAD(ldd, base + 0x20, %x4)); \ - EX_LD_FP(LOAD(ldd, base + 0x28, %x5)); \ - EX_LD_FP(LOAD(ldd, base + 0x30, %x6)); + EX_LD_FP(LOAD(ldd, base + 0x00, %x0), NG2_retl_o2_plus_g1); \ + EX_LD_FP(LOAD(ldd, base + 0x08, %x1), NG2_retl_o2_plus_g1); \ + EX_LD_FP(LOAD(ldd, base + 0x10, %x2), NG2_retl_o2_plus_g1); \ + EX_LD_FP(LOAD(ldd, base + 0x18, %x3), NG2_retl_o2_plus_g1); \ + EX_LD_FP(LOAD(ldd, base + 0x20, %x4), NG2_retl_o2_plus_g1); \ + EX_LD_FP(LOAD(ldd, base + 0x28, %x5), NG2_retl_o2_plus_g1); \ + EX_LD_FP(LOAD(ldd, base + 0x30, %x6), NG2_retl_o2_plus_g1); .register %g2,#scratch .register %g3,#scratch .text +#ifndef EX_RETVAL +#define EX_RETVAL(x) x +__restore_fp: + VISExitHalf +__restore_asi: + retl + wr %g0, ASI_AIUS, %asi +ENTRY(NG2_retl_o2) + ba,pt %xcc, __restore_asi + mov %o2, %o0 +ENDPROC(NG2_retl_o2) +ENTRY(NG2_retl_o2_plus_1) + ba,pt %xcc, __restore_asi + add %o2, 1, %o0 +ENDPROC(NG2_retl_o2_plus_1) +ENTRY(NG2_retl_o2_plus_4) + ba,pt %xcc, __restore_asi + add %o2, 4, %o0 +ENDPROC(NG2_retl_o2_plus_4) +ENTRY(NG2_retl_o2_plus_8) + ba,pt %xcc, __restore_asi + add %o2, 8, %o0 +ENDPROC(NG2_retl_o2_plus_8) +ENTRY(NG2_retl_o2_plus_o4_plus_1) + add %o4, 1, %o4 + ba,pt %xcc, __restore_asi + add %o2, %o4, %o0 +ENDPROC(NG2_retl_o2_plus_o4_plus_1) +ENTRY(NG2_retl_o2_plus_o4_plus_8) + add %o4, 8, %o4 + ba,pt %xcc, __restore_asi + add %o2, %o4, %o0 +ENDPROC(NG2_retl_o2_plus_o4_plus_8) +ENTRY(NG2_retl_o2_plus_o4_plus_16) + add %o4, 16, %o4 + ba,pt %xcc, __restore_asi + add %o2, %o4, %o0 +ENDPROC(NG2_retl_o2_plus_o4_plus_16) +ENTRY(NG2_retl_o2_plus_g1_fp) + ba,pt %xcc, __restore_fp + add %o2, %g1, %o0 +ENDPROC(NG2_retl_o2_plus_g1_fp) +ENTRY(NG2_retl_o2_plus_g1_plus_64_fp) + add %g1, 64, %g1 + ba,pt %xcc, __restore_fp + add %o2, %g1, %o0 +ENDPROC(NG2_retl_o2_plus_g1_plus_64_fp) +ENTRY(NG2_retl_o2_plus_g1_plus_1) + add %g1, 1, %g1 + ba,pt %xcc, __restore_asi + add %o2, %g1, %o0 +ENDPROC(NG2_retl_o2_plus_g1_plus_1) +ENTRY(NG2_retl_o2_and_7_plus_o4) + and %o2, 7, %o2 + ba,pt %xcc, __restore_asi + add %o2, %o4, %o0 +ENDPROC(NG2_retl_o2_and_7_plus_o4) +ENTRY(NG2_retl_o2_and_7_plus_o4_plus_8) + and %o2, 7, %o2 + add %o4, 8, %o4 + ba,pt %xcc, __restore_asi + add %o2, %o4, %o0 +ENDPROC(NG2_retl_o2_and_7_plus_o4_plus_8) +#endif + .align 64 .globl FUNC_NAME @@ -230,8 +292,8 @@ sub %g0, %o4, %o4 ! bytes to align dst sub %o2, %o4, %o2 1: subcc %o4, 1, %o4 - EX_LD(LOAD(ldub, %o1, %g1)) - EX_ST(STORE(stb, %g1, %o0)) + EX_LD(LOAD(ldub, %o1, %g1), NG2_retl_o2_plus_o4_plus_1) + EX_ST(STORE(stb, %g1, %o0), NG2_retl_o2_plus_o4_plus_1) add %o1, 1, %o1 bne,pt %XCC, 1b add %o0, 1, %o0 @@ -281,11 +343,11 @@ nop /* fall through for 0 < low bits < 8 */ 110: sub %o4, 64, %g2 - EX_LD_FP(LOAD_BLK(%g2, %f0)) -1: EX_ST_FP(STORE_INIT(%g0, %o4 + %g3)) - EX_LD_FP(LOAD_BLK(%o4, %f16)) + EX_LD_FP(LOAD_BLK(%g2, %f0), NG2_retl_o2_plus_g1) +1: EX_ST_FP(STORE_INIT(%g0, %o4 + %g3), NG2_retl_o2_plus_g1) + EX_LD_FP(LOAD_BLK(%o4, %f16), NG2_retl_o2_plus_g1) FREG_FROB(f0, f2, f4, f6, f8, f10, f12, f14, f16) - EX_ST_FP(STORE_BLK(%f0, %o4 + %g3)) + EX_ST_FP(STORE_BLK(%f0, %o4 + %g3), NG2_retl_o2_plus_g1) FREG_MOVE_8(f16, f18, f20, f22, f24, f26, f28, f30) subcc %g1, 64, %g1 add %o4, 64, %o4 @@ -296,10 +358,10 @@ 120: sub %o4, 56, %g2 FREG_LOAD_7(%g2, f0, f2, f4, f6, f8, f10, f12) -1: EX_ST_FP(STORE_INIT(%g0, %o4 + %g3)) - EX_LD_FP(LOAD_BLK(%o4, %f16)) +1: EX_ST_FP(STORE_INIT(%g0, %o4 + %g3), NG2_retl_o2_plus_g1) + EX_LD_FP(LOAD_BLK(%o4, %f16), NG2_retl_o2_plus_g1) FREG_FROB(f0, f2, f4, f6, f8, f10, f12, f16, f18) - EX_ST_FP(STORE_BLK(%f0, %o4 + %g3)) + EX_ST_FP(STORE_BLK(%f0, %o4 + %g3), NG2_retl_o2_plus_g1) FREG_MOVE_7(f18, f20, f22, f24, f26, f28, f30) subcc %g1, 64, %g1 add %o4, 64, %o4 @@ -310,10 +372,10 @@ 130: sub %o4, 48, %g2 FREG_LOAD_6(%g2, f0, f2, f4, f6, f8, f10) -1: EX_ST_FP(STORE_INIT(%g0, %o4 + %g3)) - EX_LD_FP(LOAD_BLK(%o4, %f16)) +1: EX_ST_FP(STORE_INIT(%g0, %o4 + %g3), NG2_retl_o2_plus_g1) + EX_LD_FP(LOAD_BLK(%o4, %f16), NG2_retl_o2_plus_g1) FREG_FROB(f0, f2, f4, f6, f8, f10, f16, f18, f20) - EX_ST_FP(STORE_BLK(%f0, %o4 + %g3)) + EX_ST_FP(STORE_BLK(%f0, %o4 + %g3), NG2_retl_o2_plus_g1) FREG_MOVE_6(f20, f22, f24, f26, f28, f30) subcc %g1, 64, %g1 add %o4, 64, %o4 @@ -324,10 +386,10 @@ 140: sub %o4, 40, %g2 FREG_LOAD_5(%g2, f0, f2, f4, f6, f8) -1: EX_ST_FP(STORE_INIT(%g0, %o4 + %g3)) - EX_LD_FP(LOAD_BLK(%o4, %f16)) +1: EX_ST_FP(STORE_INIT(%g0, %o4 + %g3), NG2_retl_o2_plus_g1) + EX_LD_FP(LOAD_BLK(%o4, %f16), NG2_retl_o2_plus_g1) FREG_FROB(f0, f2, f4, f6, f8, f16, f18, f20, f22) - EX_ST_FP(STORE_BLK(%f0, %o4 + %g3)) + EX_ST_FP(STORE_BLK(%f0, %o4 + %g3), NG2_retl_o2_plus_g1) FREG_MOVE_5(f22, f24, f26, f28, f30) subcc %g1, 64, %g1 add %o4, 64, %o4 @@ -338,10 +400,10 @@ 150: sub %o4, 32, %g2 FREG_LOAD_4(%g2, f0, f2, f4, f6) -1: EX_ST_FP(STORE_INIT(%g0, %o4 + %g3)) - EX_LD_FP(LOAD_BLK(%o4, %f16)) +1: EX_ST_FP(STORE_INIT(%g0, %o4 + %g3), NG2_retl_o2_plus_g1) + EX_LD_FP(LOAD_BLK(%o4, %f16), NG2_retl_o2_plus_g1) FREG_FROB(f0, f2, f4, f6, f16, f18, f20, f22, f24) - EX_ST_FP(STORE_BLK(%f0, %o4 + %g3)) + EX_ST_FP(STORE_BLK(%f0, %o4 + %g3), NG2_retl_o2_plus_g1) FREG_MOVE_4(f24, f26, f28, f30) subcc %g1, 64, %g1 add %o4, 64, %o4 @@ -352,10 +414,10 @@ 160: sub %o4, 24, %g2 FREG_LOAD_3(%g2, f0, f2, f4) -1: EX_ST_FP(STORE_INIT(%g0, %o4 + %g3)) - EX_LD_FP(LOAD_BLK(%o4, %f16)) +1: EX_ST_FP(STORE_INIT(%g0, %o4 + %g3), NG2_retl_o2_plus_g1) + EX_LD_FP(LOAD_BLK(%o4, %f16), NG2_retl_o2_plus_g1) FREG_FROB(f0, f2, f4, f16, f18, f20, f22, f24, f26) - EX_ST_FP(STORE_BLK(%f0, %o4 + %g3)) + EX_ST_FP(STORE_BLK(%f0, %o4 + %g3), NG2_retl_o2_plus_g1) FREG_MOVE_3(f26, f28, f30) subcc %g1, 64, %g1 add %o4, 64, %o4 @@ -366,10 +428,10 @@ 170: sub %o4, 16, %g2 FREG_LOAD_2(%g2, f0, f2) -1: EX_ST_FP(STORE_INIT(%g0, %o4 + %g3)) - EX_LD_FP(LOAD_BLK(%o4, %f16)) +1: EX_ST_FP(STORE_INIT(%g0, %o4 + %g3), NG2_retl_o2_plus_g1) + EX_LD_FP(LOAD_BLK(%o4, %f16), NG2_retl_o2_plus_g1) FREG_FROB(f0, f2, f16, f18, f20, f22, f24, f26, f28) - EX_ST_FP(STORE_BLK(%f0, %o4 + %g3)) + EX_ST_FP(STORE_BLK(%f0, %o4 + %g3), NG2_retl_o2_plus_g1) FREG_MOVE_2(f28, f30) subcc %g1, 64, %g1 add %o4, 64, %o4 @@ -380,10 +442,10 @@ 180: sub %o4, 8, %g2 FREG_LOAD_1(%g2, f0) -1: EX_ST_FP(STORE_INIT(%g0, %o4 + %g3)) - EX_LD_FP(LOAD_BLK(%o4, %f16)) +1: EX_ST_FP(STORE_INIT(%g0, %o4 + %g3), NG2_retl_o2_plus_g1) + EX_LD_FP(LOAD_BLK(%o4, %f16), NG2_retl_o2_plus_g1) FREG_FROB(f0, f16, f18, f20, f22, f24, f26, f28, f30) - EX_ST_FP(STORE_BLK(%f0, %o4 + %g3)) + EX_ST_FP(STORE_BLK(%f0, %o4 + %g3), NG2_retl_o2_plus_g1) FREG_MOVE_1(f30) subcc %g1, 64, %g1 add %o4, 64, %o4 @@ -393,10 +455,10 @@ nop 190: -1: EX_ST_FP(STORE_INIT(%g0, %o4 + %g3)) +1: EX_ST_FP(STORE_INIT(%g0, %o4 + %g3), NG2_retl_o2_plus_g1) subcc %g1, 64, %g1 - EX_LD_FP(LOAD_BLK(%o4, %f0)) - EX_ST_FP(STORE_BLK(%f0, %o4 + %g3)) + EX_LD_FP(LOAD_BLK(%o4, %f0), NG2_retl_o2_plus_g1_plus_64) + EX_ST_FP(STORE_BLK(%f0, %o4 + %g3), NG2_retl_o2_plus_g1_plus_64) add %o4, 64, %o4 bne,pt %xcc, 1b LOAD(prefetch, %o4 + 64, #one_read) @@ -423,28 +485,28 @@ andn %o2, 0xf, %o4 and %o2, 0xf, %o2 1: subcc %o4, 0x10, %o4 - EX_LD(LOAD(ldx, %o1, %o5)) + EX_LD(LOAD(ldx, %o1, %o5), NG2_retl_o2_plus_o4_plus_16) add %o1, 0x08, %o1 - EX_LD(LOAD(ldx, %o1, %g1)) + EX_LD(LOAD(ldx, %o1, %g1), NG2_retl_o2_plus_o4_plus_16) sub %o1, 0x08, %o1 - EX_ST(STORE(stx, %o5, %o1 + GLOBAL_SPARE)) + EX_ST(STORE(stx, %o5, %o1 + GLOBAL_SPARE), NG2_retl_o2_plus_o4_plus_16) add %o1, 0x8, %o1 - EX_ST(STORE(stx, %g1, %o1 + GLOBAL_SPARE)) + EX_ST(STORE(stx, %g1, %o1 + GLOBAL_SPARE), NG2_retl_o2_plus_o4_plus_8) bgu,pt %XCC, 1b add %o1, 0x8, %o1 73: andcc %o2, 0x8, %g0 be,pt %XCC, 1f nop sub %o2, 0x8, %o2 - EX_LD(LOAD(ldx, %o1, %o5)) - EX_ST(STORE(stx, %o5, %o1 + GLOBAL_SPARE)) + EX_LD(LOAD(ldx, %o1, %o5), NG2_retl_o2_plus_8) + EX_ST(STORE(stx, %o5, %o1 + GLOBAL_SPARE), NG2_retl_o2_plus_8) add %o1, 0x8, %o1 1: andcc %o2, 0x4, %g0 be,pt %XCC, 1f nop sub %o2, 0x4, %o2 - EX_LD(LOAD(lduw, %o1, %o5)) - EX_ST(STORE(stw, %o5, %o1 + GLOBAL_SPARE)) + EX_LD(LOAD(lduw, %o1, %o5), NG2_retl_o2_plus_4) + EX_ST(STORE(stw, %o5, %o1 + GLOBAL_SPARE), NG2_retl_o2_plus_4) add %o1, 0x4, %o1 1: cmp %o2, 0 be,pt %XCC, 85f @@ -460,8 +522,8 @@ sub %o2, %g1, %o2 1: subcc %g1, 1, %g1 - EX_LD(LOAD(ldub, %o1, %o5)) - EX_ST(STORE(stb, %o5, %o1 + GLOBAL_SPARE)) + EX_LD(LOAD(ldub, %o1, %o5), NG2_retl_o2_plus_g1_plus_1) + EX_ST(STORE(stb, %o5, %o1 + GLOBAL_SPARE), NG2_retl_o2_plus_g1_plus_1) bgu,pt %icc, 1b add %o1, 1, %o1 @@ -477,16 +539,16 @@ 8: mov 64, GLOBAL_SPARE andn %o1, 0x7, %o1 - EX_LD(LOAD(ldx, %o1, %g2)) + EX_LD(LOAD(ldx, %o1, %g2), NG2_retl_o2) sub GLOBAL_SPARE, %g1, GLOBAL_SPARE andn %o2, 0x7, %o4 sllx %g2, %g1, %g2 1: add %o1, 0x8, %o1 - EX_LD(LOAD(ldx, %o1, %g3)) + EX_LD(LOAD(ldx, %o1, %g3), NG2_retl_o2_and_7_plus_o4) subcc %o4, 0x8, %o4 srlx %g3, GLOBAL_SPARE, %o5 or %o5, %g2, %o5 - EX_ST(STORE(stx, %o5, %o0)) + EX_ST(STORE(stx, %o5, %o0), NG2_retl_o2_and_7_plus_o4_plus_8) add %o0, 0x8, %o0 bgu,pt %icc, 1b sllx %g3, %g1, %g2 @@ -506,8 +568,8 @@ 1: subcc %o2, 4, %o2 - EX_LD(LOAD(lduw, %o1, %g1)) - EX_ST(STORE(stw, %g1, %o1 + GLOBAL_SPARE)) + EX_LD(LOAD(lduw, %o1, %g1), NG2_retl_o2_plus_4) + EX_ST(STORE(stw, %g1, %o1 + GLOBAL_SPARE), NG2_retl_o2_plus_4) bgu,pt %XCC, 1b add %o1, 4, %o1 @@ -517,8 +579,8 @@ .align 32 90: subcc %o2, 1, %o2 - EX_LD(LOAD(ldub, %o1, %g1)) - EX_ST(STORE(stb, %g1, %o1 + GLOBAL_SPARE)) + EX_LD(LOAD(ldub, %o1, %g1), NG2_retl_o2_plus_1) + EX_ST(STORE(stb, %g1, %o1 + GLOBAL_SPARE), NG2_retl_o2_plus_1) bgu,pt %XCC, 90b add %o1, 1, %o1 retl --- linux-4.8.0.orig/arch/sparc/lib/NG4copy_from_user.S +++ linux-4.8.0/arch/sparc/lib/NG4copy_from_user.S @@ -3,19 +3,19 @@ * Copyright (C) 2012 David S. Miller (davem@davemloft.net) */ -#define EX_LD(x) \ +#define EX_LD(x, y) \ 98: x; \ .section __ex_table,"a";\ .align 4; \ - .word 98b, __retl_one_asi;\ + .word 98b, y; \ .text; \ .align 4; -#define EX_LD_FP(x) \ +#define EX_LD_FP(x,y) \ 98: x; \ .section __ex_table,"a";\ .align 4; \ - .word 98b, __retl_one_asi_fp;\ + .word 98b, y##_fp; \ .text; \ .align 4; --- linux-4.8.0.orig/arch/sparc/lib/NG4copy_to_user.S +++ linux-4.8.0/arch/sparc/lib/NG4copy_to_user.S @@ -3,19 +3,19 @@ * Copyright (C) 2012 David S. Miller (davem@davemloft.net) */ -#define EX_ST(x) \ +#define EX_ST(x,y) \ 98: x; \ .section __ex_table,"a";\ .align 4; \ - .word 98b, __retl_one_asi;\ + .word 98b, y; \ .text; \ .align 4; -#define EX_ST_FP(x) \ +#define EX_ST_FP(x,y) \ 98: x; \ .section __ex_table,"a";\ .align 4; \ - .word 98b, __retl_one_asi_fp;\ + .word 98b, y##_fp; \ .text; \ .align 4; --- linux-4.8.0.orig/arch/sparc/lib/NG4memcpy.S +++ linux-4.8.0/arch/sparc/lib/NG4memcpy.S @@ -4,6 +4,7 @@ */ #ifdef __KERNEL__ +#include #include #include #define GLOBAL_SPARE %g7 @@ -46,22 +47,19 @@ #endif #ifndef EX_LD -#define EX_LD(x) x +#define EX_LD(x,y) x #endif #ifndef EX_LD_FP -#define EX_LD_FP(x) x +#define EX_LD_FP(x,y) x #endif #ifndef EX_ST -#define EX_ST(x) x +#define EX_ST(x,y) x #endif #ifndef EX_ST_FP -#define EX_ST_FP(x) x +#define EX_ST_FP(x,y) x #endif -#ifndef EX_RETVAL -#define EX_RETVAL(x) x -#endif #ifndef LOAD #define LOAD(type,addr,dest) type [addr], dest @@ -94,6 +92,158 @@ .register %g3,#scratch .text +#ifndef EX_RETVAL +#define EX_RETVAL(x) x +__restore_asi_fp: + VISExitHalf +__restore_asi: + retl + wr %g0, ASI_AIUS, %asi + +ENTRY(NG4_retl_o2) + ba,pt %xcc, __restore_asi + mov %o2, %o0 +ENDPROC(NG4_retl_o2) +ENTRY(NG4_retl_o2_plus_1) + ba,pt %xcc, __restore_asi + add %o2, 1, %o0 +ENDPROC(NG4_retl_o2_plus_1) +ENTRY(NG4_retl_o2_plus_4) + ba,pt %xcc, __restore_asi + add %o2, 4, %o0 +ENDPROC(NG4_retl_o2_plus_4) +ENTRY(NG4_retl_o2_plus_o5) + ba,pt %xcc, __restore_asi + add %o2, %o5, %o0 +ENDPROC(NG4_retl_o2_plus_o5) +ENTRY(NG4_retl_o2_plus_o5_plus_4) + add %o5, 4, %o5 + ba,pt %xcc, __restore_asi + add %o2, %o5, %o0 +ENDPROC(NG4_retl_o2_plus_o5_plus_4) +ENTRY(NG4_retl_o2_plus_o5_plus_8) + add %o5, 8, %o5 + ba,pt %xcc, __restore_asi + add %o2, %o5, %o0 +ENDPROC(NG4_retl_o2_plus_o5_plus_8) +ENTRY(NG4_retl_o2_plus_o5_plus_16) + add %o5, 16, %o5 + ba,pt %xcc, __restore_asi + add %o2, %o5, %o0 +ENDPROC(NG4_retl_o2_plus_o5_plus_16) +ENTRY(NG4_retl_o2_plus_o5_plus_24) + add %o5, 24, %o5 + ba,pt %xcc, __restore_asi + add %o2, %o5, %o0 +ENDPROC(NG4_retl_o2_plus_o5_plus_24) +ENTRY(NG4_retl_o2_plus_o5_plus_32) + add %o5, 32, %o5 + ba,pt %xcc, __restore_asi + add %o2, %o5, %o0 +ENDPROC(NG4_retl_o2_plus_o5_plus_32) +ENTRY(NG4_retl_o2_plus_g1) + ba,pt %xcc, __restore_asi + add %o2, %g1, %o0 +ENDPROC(NG4_retl_o2_plus_g1) +ENTRY(NG4_retl_o2_plus_g1_plus_1) + add %g1, 1, %g1 + ba,pt %xcc, __restore_asi + add %o2, %g1, %o0 +ENDPROC(NG4_retl_o2_plus_g1_plus_1) +ENTRY(NG4_retl_o2_plus_g1_plus_8) + add %g1, 8, %g1 + ba,pt %xcc, __restore_asi + add %o2, %g1, %o0 +ENDPROC(NG4_retl_o2_plus_g1_plus_8) +ENTRY(NG4_retl_o2_plus_o4) + ba,pt %xcc, __restore_asi + add %o2, %o4, %o0 +ENDPROC(NG4_retl_o2_plus_o4) +ENTRY(NG4_retl_o2_plus_o4_plus_8) + add %o4, 8, %o4 + ba,pt %xcc, __restore_asi + add %o2, %o4, %o0 +ENDPROC(NG4_retl_o2_plus_o4_plus_8) +ENTRY(NG4_retl_o2_plus_o4_plus_16) + add %o4, 16, %o4 + ba,pt %xcc, __restore_asi + add %o2, %o4, %o0 +ENDPROC(NG4_retl_o2_plus_o4_plus_16) +ENTRY(NG4_retl_o2_plus_o4_plus_24) + add %o4, 24, %o4 + ba,pt %xcc, __restore_asi + add %o2, %o4, %o0 +ENDPROC(NG4_retl_o2_plus_o4_plus_24) +ENTRY(NG4_retl_o2_plus_o4_plus_32) + add %o4, 32, %o4 + ba,pt %xcc, __restore_asi + add %o2, %o4, %o0 +ENDPROC(NG4_retl_o2_plus_o4_plus_32) +ENTRY(NG4_retl_o2_plus_o4_plus_40) + add %o4, 40, %o4 + ba,pt %xcc, __restore_asi + add %o2, %o4, %o0 +ENDPROC(NG4_retl_o2_plus_o4_plus_40) +ENTRY(NG4_retl_o2_plus_o4_plus_48) + add %o4, 48, %o4 + ba,pt %xcc, __restore_asi + add %o2, %o4, %o0 +ENDPROC(NG4_retl_o2_plus_o4_plus_48) +ENTRY(NG4_retl_o2_plus_o4_plus_56) + add %o4, 56, %o4 + ba,pt %xcc, __restore_asi + add %o2, %o4, %o0 +ENDPROC(NG4_retl_o2_plus_o4_plus_56) +ENTRY(NG4_retl_o2_plus_o4_plus_64) + add %o4, 64, %o4 + ba,pt %xcc, __restore_asi + add %o2, %o4, %o0 +ENDPROC(NG4_retl_o2_plus_o4_plus_64) +ENTRY(NG4_retl_o2_plus_o4_fp) + ba,pt %xcc, __restore_asi_fp + add %o2, %o4, %o0 +ENDPROC(NG4_retl_o2_plus_o4_fp) +ENTRY(NG4_retl_o2_plus_o4_plus_8_fp) + add %o4, 8, %o4 + ba,pt %xcc, __restore_asi_fp + add %o2, %o4, %o0 +ENDPROC(NG4_retl_o2_plus_o4_plus_8_fp) +ENTRY(NG4_retl_o2_plus_o4_plus_16_fp) + add %o4, 16, %o4 + ba,pt %xcc, __restore_asi_fp + add %o2, %o4, %o0 +ENDPROC(NG4_retl_o2_plus_o4_plus_16_fp) +ENTRY(NG4_retl_o2_plus_o4_plus_24_fp) + add %o4, 24, %o4 + ba,pt %xcc, __restore_asi_fp + add %o2, %o4, %o0 +ENDPROC(NG4_retl_o2_plus_o4_plus_24_fp) +ENTRY(NG4_retl_o2_plus_o4_plus_32_fp) + add %o4, 32, %o4 + ba,pt %xcc, __restore_asi_fp + add %o2, %o4, %o0 +ENDPROC(NG4_retl_o2_plus_o4_plus_32_fp) +ENTRY(NG4_retl_o2_plus_o4_plus_40_fp) + add %o4, 40, %o4 + ba,pt %xcc, __restore_asi_fp + add %o2, %o4, %o0 +ENDPROC(NG4_retl_o2_plus_o4_plus_40_fp) +ENTRY(NG4_retl_o2_plus_o4_plus_48_fp) + add %o4, 48, %o4 + ba,pt %xcc, __restore_asi_fp + add %o2, %o4, %o0 +ENDPROC(NG4_retl_o2_plus_o4_plus_48_fp) +ENTRY(NG4_retl_o2_plus_o4_plus_56_fp) + add %o4, 56, %o4 + ba,pt %xcc, __restore_asi_fp + add %o2, %o4, %o0 +ENDPROC(NG4_retl_o2_plus_o4_plus_56_fp) +ENTRY(NG4_retl_o2_plus_o4_plus_64_fp) + add %o4, 64, %o4 + ba,pt %xcc, __restore_asi_fp + add %o2, %o4, %o0 +ENDPROC(NG4_retl_o2_plus_o4_plus_64_fp) +#endif .align 64 .globl FUNC_NAME @@ -124,12 +274,13 @@ brz,pt %g1, 51f sub %o2, %g1, %o2 -1: EX_LD(LOAD(ldub, %o1 + 0x00, %g2)) + +1: EX_LD(LOAD(ldub, %o1 + 0x00, %g2), NG4_retl_o2_plus_g1) add %o1, 1, %o1 subcc %g1, 1, %g1 add %o0, 1, %o0 bne,pt %icc, 1b - EX_ST(STORE(stb, %g2, %o0 - 0x01)) + EX_ST(STORE(stb, %g2, %o0 - 0x01), NG4_retl_o2_plus_g1_plus_1) 51: LOAD(prefetch, %o1 + 0x040, #n_reads_strong) LOAD(prefetch, %o1 + 0x080, #n_reads_strong) @@ -154,43 +305,43 @@ brz,pt %g1, .Llarge_aligned sub %o2, %g1, %o2 -1: EX_LD(LOAD(ldx, %o1 + 0x00, %g2)) +1: EX_LD(LOAD(ldx, %o1 + 0x00, %g2), NG4_retl_o2_plus_g1) add %o1, 8, %o1 subcc %g1, 8, %g1 add %o0, 8, %o0 bne,pt %icc, 1b - EX_ST(STORE(stx, %g2, %o0 - 0x08)) + EX_ST(STORE(stx, %g2, %o0 - 0x08), NG4_retl_o2_plus_g1_plus_8) .Llarge_aligned: /* len >= 0x80 && src 8-byte aligned && dest 8-byte aligned */ andn %o2, 0x3f, %o4 sub %o2, %o4, %o2 -1: EX_LD(LOAD(ldx, %o1 + 0x00, %g1)) +1: EX_LD(LOAD(ldx, %o1 + 0x00, %g1), NG4_retl_o2_plus_o4) add %o1, 0x40, %o1 - EX_LD(LOAD(ldx, %o1 - 0x38, %g2)) + EX_LD(LOAD(ldx, %o1 - 0x38, %g2), NG4_retl_o2_plus_o4) subcc %o4, 0x40, %o4 - EX_LD(LOAD(ldx, %o1 - 0x30, %g3)) - EX_LD(LOAD(ldx, %o1 - 0x28, GLOBAL_SPARE)) - EX_LD(LOAD(ldx, %o1 - 0x20, %o5)) - EX_ST(STORE_INIT(%g1, %o0)) + EX_LD(LOAD(ldx, %o1 - 0x30, %g3), NG4_retl_o2_plus_o4_plus_64) + EX_LD(LOAD(ldx, %o1 - 0x28, GLOBAL_SPARE), NG4_retl_o2_plus_o4_plus_64) + EX_LD(LOAD(ldx, %o1 - 0x20, %o5), NG4_retl_o2_plus_o4_plus_64) + EX_ST(STORE_INIT(%g1, %o0), NG4_retl_o2_plus_o4_plus_64) add %o0, 0x08, %o0 - EX_ST(STORE_INIT(%g2, %o0)) + EX_ST(STORE_INIT(%g2, %o0), NG4_retl_o2_plus_o4_plus_56) add %o0, 0x08, %o0 - EX_LD(LOAD(ldx, %o1 - 0x18, %g2)) - EX_ST(STORE_INIT(%g3, %o0)) + EX_LD(LOAD(ldx, %o1 - 0x18, %g2), NG4_retl_o2_plus_o4_plus_48) + EX_ST(STORE_INIT(%g3, %o0), NG4_retl_o2_plus_o4_plus_48) add %o0, 0x08, %o0 - EX_LD(LOAD(ldx, %o1 - 0x10, %g3)) - EX_ST(STORE_INIT(GLOBAL_SPARE, %o0)) + EX_LD(LOAD(ldx, %o1 - 0x10, %g3), NG4_retl_o2_plus_o4_plus_40) + EX_ST(STORE_INIT(GLOBAL_SPARE, %o0), NG4_retl_o2_plus_o4_plus_40) add %o0, 0x08, %o0 - EX_LD(LOAD(ldx, %o1 - 0x08, GLOBAL_SPARE)) - EX_ST(STORE_INIT(%o5, %o0)) + EX_LD(LOAD(ldx, %o1 - 0x08, GLOBAL_SPARE), NG4_retl_o2_plus_o4_plus_32) + EX_ST(STORE_INIT(%o5, %o0), NG4_retl_o2_plus_o4_plus_32) add %o0, 0x08, %o0 - EX_ST(STORE_INIT(%g2, %o0)) + EX_ST(STORE_INIT(%g2, %o0), NG4_retl_o2_plus_o4_plus_24) add %o0, 0x08, %o0 - EX_ST(STORE_INIT(%g3, %o0)) + EX_ST(STORE_INIT(%g3, %o0), NG4_retl_o2_plus_o4_plus_16) add %o0, 0x08, %o0 - EX_ST(STORE_INIT(GLOBAL_SPARE, %o0)) + EX_ST(STORE_INIT(GLOBAL_SPARE, %o0), NG4_retl_o2_plus_o4_plus_8) add %o0, 0x08, %o0 bne,pt %icc, 1b LOAD(prefetch, %o1 + 0x200, #n_reads_strong) @@ -216,17 +367,17 @@ sub %o2, %o4, %o2 alignaddr %o1, %g0, %g1 add %o1, %o4, %o1 - EX_LD_FP(LOAD(ldd, %g1 + 0x00, %f0)) -1: EX_LD_FP(LOAD(ldd, %g1 + 0x08, %f2)) + EX_LD_FP(LOAD(ldd, %g1 + 0x00, %f0), NG4_retl_o2_plus_o4) +1: EX_LD_FP(LOAD(ldd, %g1 + 0x08, %f2), NG4_retl_o2_plus_o4) subcc %o4, 0x40, %o4 - EX_LD_FP(LOAD(ldd, %g1 + 0x10, %f4)) - EX_LD_FP(LOAD(ldd, %g1 + 0x18, %f6)) - EX_LD_FP(LOAD(ldd, %g1 + 0x20, %f8)) - EX_LD_FP(LOAD(ldd, %g1 + 0x28, %f10)) - EX_LD_FP(LOAD(ldd, %g1 + 0x30, %f12)) - EX_LD_FP(LOAD(ldd, %g1 + 0x38, %f14)) + EX_LD_FP(LOAD(ldd, %g1 + 0x10, %f4), NG4_retl_o2_plus_o4_plus_64) + EX_LD_FP(LOAD(ldd, %g1 + 0x18, %f6), NG4_retl_o2_plus_o4_plus_64) + EX_LD_FP(LOAD(ldd, %g1 + 0x20, %f8), NG4_retl_o2_plus_o4_plus_64) + EX_LD_FP(LOAD(ldd, %g1 + 0x28, %f10), NG4_retl_o2_plus_o4_plus_64) + EX_LD_FP(LOAD(ldd, %g1 + 0x30, %f12), NG4_retl_o2_plus_o4_plus_64) + EX_LD_FP(LOAD(ldd, %g1 + 0x38, %f14), NG4_retl_o2_plus_o4_plus_64) faligndata %f0, %f2, %f16 - EX_LD_FP(LOAD(ldd, %g1 + 0x40, %f0)) + EX_LD_FP(LOAD(ldd, %g1 + 0x40, %f0), NG4_retl_o2_plus_o4_plus_64) faligndata %f2, %f4, %f18 add %g1, 0x40, %g1 faligndata %f4, %f6, %f20 @@ -235,14 +386,14 @@ faligndata %f10, %f12, %f26 faligndata %f12, %f14, %f28 faligndata %f14, %f0, %f30 - EX_ST_FP(STORE(std, %f16, %o0 + 0x00)) - EX_ST_FP(STORE(std, %f18, %o0 + 0x08)) - EX_ST_FP(STORE(std, %f20, %o0 + 0x10)) - EX_ST_FP(STORE(std, %f22, %o0 + 0x18)) - EX_ST_FP(STORE(std, %f24, %o0 + 0x20)) - EX_ST_FP(STORE(std, %f26, %o0 + 0x28)) - EX_ST_FP(STORE(std, %f28, %o0 + 0x30)) - EX_ST_FP(STORE(std, %f30, %o0 + 0x38)) + EX_ST_FP(STORE(std, %f16, %o0 + 0x00), NG4_retl_o2_plus_o4_plus_64) + EX_ST_FP(STORE(std, %f18, %o0 + 0x08), NG4_retl_o2_plus_o4_plus_56) + EX_ST_FP(STORE(std, %f20, %o0 + 0x10), NG4_retl_o2_plus_o4_plus_48) + EX_ST_FP(STORE(std, %f22, %o0 + 0x18), NG4_retl_o2_plus_o4_plus_40) + EX_ST_FP(STORE(std, %f24, %o0 + 0x20), NG4_retl_o2_plus_o4_plus_32) + EX_ST_FP(STORE(std, %f26, %o0 + 0x28), NG4_retl_o2_plus_o4_plus_24) + EX_ST_FP(STORE(std, %f28, %o0 + 0x30), NG4_retl_o2_plus_o4_plus_16) + EX_ST_FP(STORE(std, %f30, %o0 + 0x38), NG4_retl_o2_plus_o4_plus_8) add %o0, 0x40, %o0 bne,pt %icc, 1b LOAD(prefetch, %g1 + 0x200, #n_reads_strong) @@ -270,37 +421,38 @@ andncc %o2, 0x20 - 1, %o5 be,pn %icc, 2f sub %o2, %o5, %o2 -1: EX_LD(LOAD(ldx, %o1 + 0x00, %g1)) - EX_LD(LOAD(ldx, %o1 + 0x08, %g2)) - EX_LD(LOAD(ldx, %o1 + 0x10, GLOBAL_SPARE)) - EX_LD(LOAD(ldx, %o1 + 0x18, %o4)) +1: EX_LD(LOAD(ldx, %o1 + 0x00, %g1), NG4_retl_o2_plus_o5) + EX_LD(LOAD(ldx, %o1 + 0x08, %g2), NG4_retl_o2_plus_o5) + EX_LD(LOAD(ldx, %o1 + 0x10, GLOBAL_SPARE), NG4_retl_o2_plus_o5) + EX_LD(LOAD(ldx, %o1 + 0x18, %o4), NG4_retl_o2_plus_o5) add %o1, 0x20, %o1 subcc %o5, 0x20, %o5 - EX_ST(STORE(stx, %g1, %o0 + 0x00)) - EX_ST(STORE(stx, %g2, %o0 + 0x08)) - EX_ST(STORE(stx, GLOBAL_SPARE, %o0 + 0x10)) - EX_ST(STORE(stx, %o4, %o0 + 0x18)) + EX_ST(STORE(stx, %g1, %o0 + 0x00), NG4_retl_o2_plus_o5_plus_32) + EX_ST(STORE(stx, %g2, %o0 + 0x08), NG4_retl_o2_plus_o5_plus_24) + EX_ST(STORE(stx, GLOBAL_SPARE, %o0 + 0x10), NG4_retl_o2_plus_o5_plus_24) + EX_ST(STORE(stx, %o4, %o0 + 0x18), NG4_retl_o2_plus_o5_plus_8) bne,pt %icc, 1b add %o0, 0x20, %o0 2: andcc %o2, 0x18, %o5 be,pt %icc, 3f sub %o2, %o5, %o2 -1: EX_LD(LOAD(ldx, %o1 + 0x00, %g1)) + +1: EX_LD(LOAD(ldx, %o1 + 0x00, %g1), NG4_retl_o2_plus_o5) add %o1, 0x08, %o1 add %o0, 0x08, %o0 subcc %o5, 0x08, %o5 bne,pt %icc, 1b - EX_ST(STORE(stx, %g1, %o0 - 0x08)) + EX_ST(STORE(stx, %g1, %o0 - 0x08), NG4_retl_o2_plus_o5_plus_8) 3: brz,pt %o2, .Lexit cmp %o2, 0x04 bl,pn %icc, .Ltiny nop - EX_LD(LOAD(lduw, %o1 + 0x00, %g1)) + EX_LD(LOAD(lduw, %o1 + 0x00, %g1), NG4_retl_o2) add %o1, 0x04, %o1 add %o0, 0x04, %o0 subcc %o2, 0x04, %o2 bne,pn %icc, .Ltiny - EX_ST(STORE(stw, %g1, %o0 - 0x04)) + EX_ST(STORE(stw, %g1, %o0 - 0x04), NG4_retl_o2_plus_4) ba,a,pt %icc, .Lexit .Lmedium_unaligned: /* First get dest 8 byte aligned. */ @@ -309,12 +461,12 @@ brz,pt %g1, 2f sub %o2, %g1, %o2 -1: EX_LD(LOAD(ldub, %o1 + 0x00, %g2)) +1: EX_LD(LOAD(ldub, %o1 + 0x00, %g2), NG4_retl_o2_plus_g1) add %o1, 1, %o1 subcc %g1, 1, %g1 add %o0, 1, %o0 bne,pt %icc, 1b - EX_ST(STORE(stb, %g2, %o0 - 0x01)) + EX_ST(STORE(stb, %g2, %o0 - 0x01), NG4_retl_o2_plus_g1_plus_1) 2: and %o1, 0x7, %g1 brz,pn %g1, .Lmedium_noprefetch @@ -322,16 +474,16 @@ mov 64, %g2 sub %g2, %g1, %g2 andn %o1, 0x7, %o1 - EX_LD(LOAD(ldx, %o1 + 0x00, %o4)) + EX_LD(LOAD(ldx, %o1 + 0x00, %o4), NG4_retl_o2) sllx %o4, %g1, %o4 andn %o2, 0x08 - 1, %o5 sub %o2, %o5, %o2 -1: EX_LD(LOAD(ldx, %o1 + 0x08, %g3)) +1: EX_LD(LOAD(ldx, %o1 + 0x08, %g3), NG4_retl_o2_plus_o5) add %o1, 0x08, %o1 subcc %o5, 0x08, %o5 srlx %g3, %g2, GLOBAL_SPARE or GLOBAL_SPARE, %o4, GLOBAL_SPARE - EX_ST(STORE(stx, GLOBAL_SPARE, %o0 + 0x00)) + EX_ST(STORE(stx, GLOBAL_SPARE, %o0 + 0x00), NG4_retl_o2_plus_o5_plus_8) add %o0, 0x08, %o0 bne,pt %icc, 1b sllx %g3, %g1, %o4 @@ -342,17 +494,17 @@ ba,pt %icc, .Lsmall_unaligned .Ltiny: - EX_LD(LOAD(ldub, %o1 + 0x00, %g1)) + EX_LD(LOAD(ldub, %o1 + 0x00, %g1), NG4_retl_o2) subcc %o2, 1, %o2 be,pn %icc, .Lexit - EX_ST(STORE(stb, %g1, %o0 + 0x00)) - EX_LD(LOAD(ldub, %o1 + 0x01, %g1)) + EX_ST(STORE(stb, %g1, %o0 + 0x00), NG4_retl_o2_plus_1) + EX_LD(LOAD(ldub, %o1 + 0x01, %g1), NG4_retl_o2) subcc %o2, 1, %o2 be,pn %icc, .Lexit - EX_ST(STORE(stb, %g1, %o0 + 0x01)) - EX_LD(LOAD(ldub, %o1 + 0x02, %g1)) + EX_ST(STORE(stb, %g1, %o0 + 0x01), NG4_retl_o2_plus_1) + EX_LD(LOAD(ldub, %o1 + 0x02, %g1), NG4_retl_o2) ba,pt %icc, .Lexit - EX_ST(STORE(stb, %g1, %o0 + 0x02)) + EX_ST(STORE(stb, %g1, %o0 + 0x02), NG4_retl_o2) .Lsmall: andcc %g2, 0x3, %g0 @@ -360,22 +512,22 @@ andn %o2, 0x4 - 1, %o5 sub %o2, %o5, %o2 1: - EX_LD(LOAD(lduw, %o1 + 0x00, %g1)) + EX_LD(LOAD(lduw, %o1 + 0x00, %g1), NG4_retl_o2_plus_o5) add %o1, 0x04, %o1 subcc %o5, 0x04, %o5 add %o0, 0x04, %o0 bne,pt %icc, 1b - EX_ST(STORE(stw, %g1, %o0 - 0x04)) + EX_ST(STORE(stw, %g1, %o0 - 0x04), NG4_retl_o2_plus_o5_plus_4) brz,pt %o2, .Lexit nop ba,a,pt %icc, .Ltiny .Lsmall_unaligned: -1: EX_LD(LOAD(ldub, %o1 + 0x00, %g1)) +1: EX_LD(LOAD(ldub, %o1 + 0x00, %g1), NG4_retl_o2) add %o1, 1, %o1 add %o0, 1, %o0 subcc %o2, 1, %o2 bne,pt %icc, 1b - EX_ST(STORE(stb, %g1, %o0 - 0x01)) + EX_ST(STORE(stb, %g1, %o0 - 0x01), NG4_retl_o2_plus_1) ba,a,pt %icc, .Lexit .size FUNC_NAME, .-FUNC_NAME --- linux-4.8.0.orig/arch/sparc/lib/NGcopy_from_user.S +++ linux-4.8.0/arch/sparc/lib/NGcopy_from_user.S @@ -3,11 +3,11 @@ * Copyright (C) 2006, 2007 David S. Miller (davem@davemloft.net) */ -#define EX_LD(x) \ +#define EX_LD(x,y) \ 98: x; \ .section __ex_table,"a";\ .align 4; \ - .word 98b, __ret_one_asi;\ + .word 98b, y; \ .text; \ .align 4; --- linux-4.8.0.orig/arch/sparc/lib/NGcopy_to_user.S +++ linux-4.8.0/arch/sparc/lib/NGcopy_to_user.S @@ -3,11 +3,11 @@ * Copyright (C) 2006, 2007 David S. Miller (davem@davemloft.net) */ -#define EX_ST(x) \ +#define EX_ST(x,y) \ 98: x; \ .section __ex_table,"a";\ .align 4; \ - .word 98b, __ret_one_asi;\ + .word 98b, y; \ .text; \ .align 4; --- linux-4.8.0.orig/arch/sparc/lib/NGmemcpy.S +++ linux-4.8.0/arch/sparc/lib/NGmemcpy.S @@ -4,6 +4,7 @@ */ #ifdef __KERNEL__ +#include #include #include #define GLOBAL_SPARE %g7 @@ -27,15 +28,11 @@ #endif #ifndef EX_LD -#define EX_LD(x) x +#define EX_LD(x,y) x #endif #ifndef EX_ST -#define EX_ST(x) x -#endif - -#ifndef EX_RETVAL -#define EX_RETVAL(x) x +#define EX_ST(x,y) x #endif #ifndef LOAD @@ -79,6 +76,92 @@ .register %g3,#scratch .text +#ifndef EX_RETVAL +#define EX_RETVAL(x) x +__restore_asi: + ret + wr %g0, ASI_AIUS, %asi + restore +ENTRY(NG_ret_i2_plus_i4_plus_1) + ba,pt %xcc, __restore_asi + add %i2, %i5, %i0 +ENDPROC(NG_ret_i2_plus_i4_plus_1) +ENTRY(NG_ret_i2_plus_g1) + ba,pt %xcc, __restore_asi + add %i2, %g1, %i0 +ENDPROC(NG_ret_i2_plus_g1) +ENTRY(NG_ret_i2_plus_g1_minus_8) + sub %g1, 8, %g1 + ba,pt %xcc, __restore_asi + add %i2, %g1, %i0 +ENDPROC(NG_ret_i2_plus_g1_minus_8) +ENTRY(NG_ret_i2_plus_g1_minus_16) + sub %g1, 16, %g1 + ba,pt %xcc, __restore_asi + add %i2, %g1, %i0 +ENDPROC(NG_ret_i2_plus_g1_minus_16) +ENTRY(NG_ret_i2_plus_g1_minus_24) + sub %g1, 24, %g1 + ba,pt %xcc, __restore_asi + add %i2, %g1, %i0 +ENDPROC(NG_ret_i2_plus_g1_minus_24) +ENTRY(NG_ret_i2_plus_g1_minus_32) + sub %g1, 32, %g1 + ba,pt %xcc, __restore_asi + add %i2, %g1, %i0 +ENDPROC(NG_ret_i2_plus_g1_minus_32) +ENTRY(NG_ret_i2_plus_g1_minus_40) + sub %g1, 40, %g1 + ba,pt %xcc, __restore_asi + add %i2, %g1, %i0 +ENDPROC(NG_ret_i2_plus_g1_minus_40) +ENTRY(NG_ret_i2_plus_g1_minus_48) + sub %g1, 48, %g1 + ba,pt %xcc, __restore_asi + add %i2, %g1, %i0 +ENDPROC(NG_ret_i2_plus_g1_minus_48) +ENTRY(NG_ret_i2_plus_g1_minus_56) + sub %g1, 56, %g1 + ba,pt %xcc, __restore_asi + add %i2, %g1, %i0 +ENDPROC(NG_ret_i2_plus_g1_minus_56) +ENTRY(NG_ret_i2_plus_i4) + ba,pt %xcc, __restore_asi + add %i2, %i4, %i0 +ENDPROC(NG_ret_i2_plus_i4) +ENTRY(NG_ret_i2_plus_i4_minus_8) + sub %i4, 8, %i4 + ba,pt %xcc, __restore_asi + add %i2, %i4, %i0 +ENDPROC(NG_ret_i2_plus_i4_minus_8) +ENTRY(NG_ret_i2_plus_8) + ba,pt %xcc, __restore_asi + add %i2, 8, %i0 +ENDPROC(NG_ret_i2_plus_8) +ENTRY(NG_ret_i2_plus_4) + ba,pt %xcc, __restore_asi + add %i2, 4, %i0 +ENDPROC(NG_ret_i2_plus_4) +ENTRY(NG_ret_i2_plus_1) + ba,pt %xcc, __restore_asi + add %i2, 1, %i0 +ENDPROC(NG_ret_i2_plus_1) +ENTRY(NG_ret_i2_plus_g1_plus_1) + add %g1, 1, %g1 + ba,pt %xcc, __restore_asi + add %i2, %g1, %i0 +ENDPROC(NG_ret_i2_plus_g1_plus_1) +ENTRY(NG_ret_i2) + ba,pt %xcc, __restore_asi + mov %i2, %i0 +ENDPROC(NG_ret_i2) +ENTRY(NG_ret_i2_and_7_plus_i4) + and %i2, 7, %i2 + ba,pt %xcc, __restore_asi + add %i2, %i4, %i0 +ENDPROC(NG_ret_i2_and_7_plus_i4) +#endif + .align 64 .globl FUNC_NAME @@ -126,8 +209,8 @@ sub %g0, %i4, %i4 ! bytes to align dst sub %i2, %i4, %i2 1: subcc %i4, 1, %i4 - EX_LD(LOAD(ldub, %i1, %g1)) - EX_ST(STORE(stb, %g1, %o0)) + EX_LD(LOAD(ldub, %i1, %g1), NG_ret_i2_plus_i4_plus_1) + EX_ST(STORE(stb, %g1, %o0), NG_ret_i2_plus_i4_plus_1) add %i1, 1, %i1 bne,pt %XCC, 1b add %o0, 1, %o0 @@ -160,7 +243,7 @@ and %i4, 0x7, GLOBAL_SPARE sll GLOBAL_SPARE, 3, GLOBAL_SPARE mov 64, %i5 - EX_LD(LOAD_TWIN(%i1, %g2, %g3)) + EX_LD(LOAD_TWIN(%i1, %g2, %g3), NG_ret_i2_plus_g1) sub %i5, GLOBAL_SPARE, %i5 mov 16, %o4 mov 32, %o5 @@ -178,31 +261,31 @@ srlx WORD3, PRE_SHIFT, TMP; \ or WORD2, TMP, WORD2; -8: EX_LD(LOAD_TWIN(%i1 + %o4, %o2, %o3)) +8: EX_LD(LOAD_TWIN(%i1 + %o4, %o2, %o3), NG_ret_i2_plus_g1) MIX_THREE_WORDS(%g2, %g3, %o2, %i5, GLOBAL_SPARE, %o1) LOAD(prefetch, %i1 + %i3, #one_read) - EX_ST(STORE_INIT(%g2, %o0 + 0x00)) - EX_ST(STORE_INIT(%g3, %o0 + 0x08)) + EX_ST(STORE_INIT(%g2, %o0 + 0x00), NG_ret_i2_plus_g1) + EX_ST(STORE_INIT(%g3, %o0 + 0x08), NG_ret_i2_plus_g1_minus_8) - EX_LD(LOAD_TWIN(%i1 + %o5, %g2, %g3)) + EX_LD(LOAD_TWIN(%i1 + %o5, %g2, %g3), NG_ret_i2_plus_g1_minus_16) MIX_THREE_WORDS(%o2, %o3, %g2, %i5, GLOBAL_SPARE, %o1) - EX_ST(STORE_INIT(%o2, %o0 + 0x10)) - EX_ST(STORE_INIT(%o3, %o0 + 0x18)) + EX_ST(STORE_INIT(%o2, %o0 + 0x10), NG_ret_i2_plus_g1_minus_16) + EX_ST(STORE_INIT(%o3, %o0 + 0x18), NG_ret_i2_plus_g1_minus_24) - EX_LD(LOAD_TWIN(%i1 + %o7, %o2, %o3)) + EX_LD(LOAD_TWIN(%i1 + %o7, %o2, %o3), NG_ret_i2_plus_g1_minus_32) MIX_THREE_WORDS(%g2, %g3, %o2, %i5, GLOBAL_SPARE, %o1) - EX_ST(STORE_INIT(%g2, %o0 + 0x20)) - EX_ST(STORE_INIT(%g3, %o0 + 0x28)) + EX_ST(STORE_INIT(%g2, %o0 + 0x20), NG_ret_i2_plus_g1_minus_32) + EX_ST(STORE_INIT(%g3, %o0 + 0x28), NG_ret_i2_plus_g1_minus_40) - EX_LD(LOAD_TWIN(%i1 + %i3, %g2, %g3)) + EX_LD(LOAD_TWIN(%i1 + %i3, %g2, %g3), NG_ret_i2_plus_g1_minus_48) add %i1, 64, %i1 MIX_THREE_WORDS(%o2, %o3, %g2, %i5, GLOBAL_SPARE, %o1) - EX_ST(STORE_INIT(%o2, %o0 + 0x30)) - EX_ST(STORE_INIT(%o3, %o0 + 0x38)) + EX_ST(STORE_INIT(%o2, %o0 + 0x30), NG_ret_i2_plus_g1_minus_48) + EX_ST(STORE_INIT(%o3, %o0 + 0x38), NG_ret_i2_plus_g1_minus_56) subcc %g1, 64, %g1 bne,pt %XCC, 8b @@ -211,31 +294,31 @@ ba,pt %XCC, 60f add %i1, %i4, %i1 -9: EX_LD(LOAD_TWIN(%i1 + %o4, %o2, %o3)) +9: EX_LD(LOAD_TWIN(%i1 + %o4, %o2, %o3), NG_ret_i2_plus_g1) MIX_THREE_WORDS(%g3, %o2, %o3, %i5, GLOBAL_SPARE, %o1) LOAD(prefetch, %i1 + %i3, #one_read) - EX_ST(STORE_INIT(%g3, %o0 + 0x00)) - EX_ST(STORE_INIT(%o2, %o0 + 0x08)) + EX_ST(STORE_INIT(%g3, %o0 + 0x00), NG_ret_i2_plus_g1) + EX_ST(STORE_INIT(%o2, %o0 + 0x08), NG_ret_i2_plus_g1_minus_8) - EX_LD(LOAD_TWIN(%i1 + %o5, %g2, %g3)) + EX_LD(LOAD_TWIN(%i1 + %o5, %g2, %g3), NG_ret_i2_plus_g1_minus_16) MIX_THREE_WORDS(%o3, %g2, %g3, %i5, GLOBAL_SPARE, %o1) - EX_ST(STORE_INIT(%o3, %o0 + 0x10)) - EX_ST(STORE_INIT(%g2, %o0 + 0x18)) + EX_ST(STORE_INIT(%o3, %o0 + 0x10), NG_ret_i2_plus_g1_minus_16) + EX_ST(STORE_INIT(%g2, %o0 + 0x18), NG_ret_i2_plus_g1_minus_24) - EX_LD(LOAD_TWIN(%i1 + %o7, %o2, %o3)) + EX_LD(LOAD_TWIN(%i1 + %o7, %o2, %o3), NG_ret_i2_plus_g1_minus_32) MIX_THREE_WORDS(%g3, %o2, %o3, %i5, GLOBAL_SPARE, %o1) - EX_ST(STORE_INIT(%g3, %o0 + 0x20)) - EX_ST(STORE_INIT(%o2, %o0 + 0x28)) + EX_ST(STORE_INIT(%g3, %o0 + 0x20), NG_ret_i2_plus_g1_minus_32) + EX_ST(STORE_INIT(%o2, %o0 + 0x28), NG_ret_i2_plus_g1_minus_40) - EX_LD(LOAD_TWIN(%i1 + %i3, %g2, %g3)) + EX_LD(LOAD_TWIN(%i1 + %i3, %g2, %g3), NG_ret_i2_plus_g1_minus_48) add %i1, 64, %i1 MIX_THREE_WORDS(%o3, %g2, %g3, %i5, GLOBAL_SPARE, %o1) - EX_ST(STORE_INIT(%o3, %o0 + 0x30)) - EX_ST(STORE_INIT(%g2, %o0 + 0x38)) + EX_ST(STORE_INIT(%o3, %o0 + 0x30), NG_ret_i2_plus_g1_minus_48) + EX_ST(STORE_INIT(%g2, %o0 + 0x38), NG_ret_i2_plus_g1_minus_56) subcc %g1, 64, %g1 bne,pt %XCC, 9b @@ -249,25 +332,25 @@ * one twin load ahead, then add 8 back into source when * we finish the loop. */ - EX_LD(LOAD_TWIN(%i1, %o4, %o5)) + EX_LD(LOAD_TWIN(%i1, %o4, %o5), NG_ret_i2_plus_g1) mov 16, %o7 mov 32, %g2 mov 48, %g3 mov 64, %o1 -1: EX_LD(LOAD_TWIN(%i1 + %o7, %o2, %o3)) +1: EX_LD(LOAD_TWIN(%i1 + %o7, %o2, %o3), NG_ret_i2_plus_g1) LOAD(prefetch, %i1 + %o1, #one_read) - EX_ST(STORE_INIT(%o5, %o0 + 0x00)) ! initializes cache line - EX_ST(STORE_INIT(%o2, %o0 + 0x08)) - EX_LD(LOAD_TWIN(%i1 + %g2, %o4, %o5)) - EX_ST(STORE_INIT(%o3, %o0 + 0x10)) - EX_ST(STORE_INIT(%o4, %o0 + 0x18)) - EX_LD(LOAD_TWIN(%i1 + %g3, %o2, %o3)) - EX_ST(STORE_INIT(%o5, %o0 + 0x20)) - EX_ST(STORE_INIT(%o2, %o0 + 0x28)) - EX_LD(LOAD_TWIN(%i1 + %o1, %o4, %o5)) + EX_ST(STORE_INIT(%o5, %o0 + 0x00), NG_ret_i2_plus_g1) ! initializes cache line + EX_ST(STORE_INIT(%o2, %o0 + 0x08), NG_ret_i2_plus_g1_minus_8) + EX_LD(LOAD_TWIN(%i1 + %g2, %o4, %o5), NG_ret_i2_plus_g1_minus_16) + EX_ST(STORE_INIT(%o3, %o0 + 0x10), NG_ret_i2_plus_g1_minus_16) + EX_ST(STORE_INIT(%o4, %o0 + 0x18), NG_ret_i2_plus_g1_minus_24) + EX_LD(LOAD_TWIN(%i1 + %g3, %o2, %o3), NG_ret_i2_plus_g1_minus_32) + EX_ST(STORE_INIT(%o5, %o0 + 0x20), NG_ret_i2_plus_g1_minus_32) + EX_ST(STORE_INIT(%o2, %o0 + 0x28), NG_ret_i2_plus_g1_minus_40) + EX_LD(LOAD_TWIN(%i1 + %o1, %o4, %o5), NG_ret_i2_plus_g1_minus_48) add %i1, 64, %i1 - EX_ST(STORE_INIT(%o3, %o0 + 0x30)) - EX_ST(STORE_INIT(%o4, %o0 + 0x38)) + EX_ST(STORE_INIT(%o3, %o0 + 0x30), NG_ret_i2_plus_g1_minus_48) + EX_ST(STORE_INIT(%o4, %o0 + 0x38), NG_ret_i2_plus_g1_minus_56) subcc %g1, 64, %g1 bne,pt %XCC, 1b add %o0, 64, %o0 @@ -282,20 +365,20 @@ mov 32, %g2 mov 48, %g3 mov 64, %o1 -1: EX_LD(LOAD_TWIN(%i1 + %g0, %o4, %o5)) - EX_LD(LOAD_TWIN(%i1 + %o7, %o2, %o3)) +1: EX_LD(LOAD_TWIN(%i1 + %g0, %o4, %o5), NG_ret_i2_plus_g1) + EX_LD(LOAD_TWIN(%i1 + %o7, %o2, %o3), NG_ret_i2_plus_g1) LOAD(prefetch, %i1 + %o1, #one_read) - EX_ST(STORE_INIT(%o4, %o0 + 0x00)) ! initializes cache line - EX_ST(STORE_INIT(%o5, %o0 + 0x08)) - EX_LD(LOAD_TWIN(%i1 + %g2, %o4, %o5)) - EX_ST(STORE_INIT(%o2, %o0 + 0x10)) - EX_ST(STORE_INIT(%o3, %o0 + 0x18)) - EX_LD(LOAD_TWIN(%i1 + %g3, %o2, %o3)) + EX_ST(STORE_INIT(%o4, %o0 + 0x00), NG_ret_i2_plus_g1) ! initializes cache line + EX_ST(STORE_INIT(%o5, %o0 + 0x08), NG_ret_i2_plus_g1_minus_8) + EX_LD(LOAD_TWIN(%i1 + %g2, %o4, %o5), NG_ret_i2_plus_g1_minus_16) + EX_ST(STORE_INIT(%o2, %o0 + 0x10), NG_ret_i2_plus_g1_minus_16) + EX_ST(STORE_INIT(%o3, %o0 + 0x18), NG_ret_i2_plus_g1_minus_24) + EX_LD(LOAD_TWIN(%i1 + %g3, %o2, %o3), NG_ret_i2_plus_g1_minus_32) add %i1, 64, %i1 - EX_ST(STORE_INIT(%o4, %o0 + 0x20)) - EX_ST(STORE_INIT(%o5, %o0 + 0x28)) - EX_ST(STORE_INIT(%o2, %o0 + 0x30)) - EX_ST(STORE_INIT(%o3, %o0 + 0x38)) + EX_ST(STORE_INIT(%o4, %o0 + 0x20), NG_ret_i2_plus_g1_minus_32) + EX_ST(STORE_INIT(%o5, %o0 + 0x28), NG_ret_i2_plus_g1_minus_40) + EX_ST(STORE_INIT(%o2, %o0 + 0x30), NG_ret_i2_plus_g1_minus_48) + EX_ST(STORE_INIT(%o3, %o0 + 0x38), NG_ret_i2_plus_g1_minus_56) subcc %g1, 64, %g1 bne,pt %XCC, 1b add %o0, 64, %o0 @@ -321,28 +404,28 @@ andn %i2, 0xf, %i4 and %i2, 0xf, %i2 1: subcc %i4, 0x10, %i4 - EX_LD(LOAD(ldx, %i1, %o4)) + EX_LD(LOAD(ldx, %i1, %o4), NG_ret_i2_plus_i4) add %i1, 0x08, %i1 - EX_LD(LOAD(ldx, %i1, %g1)) + EX_LD(LOAD(ldx, %i1, %g1), NG_ret_i2_plus_i4) sub %i1, 0x08, %i1 - EX_ST(STORE(stx, %o4, %i1 + %i3)) + EX_ST(STORE(stx, %o4, %i1 + %i3), NG_ret_i2_plus_i4) add %i1, 0x8, %i1 - EX_ST(STORE(stx, %g1, %i1 + %i3)) + EX_ST(STORE(stx, %g1, %i1 + %i3), NG_ret_i2_plus_i4_minus_8) bgu,pt %XCC, 1b add %i1, 0x8, %i1 73: andcc %i2, 0x8, %g0 be,pt %XCC, 1f nop sub %i2, 0x8, %i2 - EX_LD(LOAD(ldx, %i1, %o4)) - EX_ST(STORE(stx, %o4, %i1 + %i3)) + EX_LD(LOAD(ldx, %i1, %o4), NG_ret_i2_plus_8) + EX_ST(STORE(stx, %o4, %i1 + %i3), NG_ret_i2_plus_8) add %i1, 0x8, %i1 1: andcc %i2, 0x4, %g0 be,pt %XCC, 1f nop sub %i2, 0x4, %i2 - EX_LD(LOAD(lduw, %i1, %i5)) - EX_ST(STORE(stw, %i5, %i1 + %i3)) + EX_LD(LOAD(lduw, %i1, %i5), NG_ret_i2_plus_4) + EX_ST(STORE(stw, %i5, %i1 + %i3), NG_ret_i2_plus_4) add %i1, 0x4, %i1 1: cmp %i2, 0 be,pt %XCC, 85f @@ -358,8 +441,8 @@ sub %i2, %g1, %i2 1: subcc %g1, 1, %g1 - EX_LD(LOAD(ldub, %i1, %i5)) - EX_ST(STORE(stb, %i5, %i1 + %i3)) + EX_LD(LOAD(ldub, %i1, %i5), NG_ret_i2_plus_g1_plus_1) + EX_ST(STORE(stb, %i5, %i1 + %i3), NG_ret_i2_plus_g1_plus_1) bgu,pt %icc, 1b add %i1, 1, %i1 @@ -375,16 +458,16 @@ 8: mov 64, %i3 andn %i1, 0x7, %i1 - EX_LD(LOAD(ldx, %i1, %g2)) + EX_LD(LOAD(ldx, %i1, %g2), NG_ret_i2) sub %i3, %g1, %i3 andn %i2, 0x7, %i4 sllx %g2, %g1, %g2 1: add %i1, 0x8, %i1 - EX_LD(LOAD(ldx, %i1, %g3)) + EX_LD(LOAD(ldx, %i1, %g3), NG_ret_i2_and_7_plus_i4) subcc %i4, 0x8, %i4 srlx %g3, %i3, %i5 or %i5, %g2, %i5 - EX_ST(STORE(stx, %i5, %o0)) + EX_ST(STORE(stx, %i5, %o0), NG_ret_i2_and_7_plus_i4) add %o0, 0x8, %o0 bgu,pt %icc, 1b sllx %g3, %g1, %g2 @@ -404,8 +487,8 @@ 1: subcc %i2, 4, %i2 - EX_LD(LOAD(lduw, %i1, %g1)) - EX_ST(STORE(stw, %g1, %i1 + %i3)) + EX_LD(LOAD(lduw, %i1, %g1), NG_ret_i2_plus_4) + EX_ST(STORE(stw, %g1, %i1 + %i3), NG_ret_i2_plus_4) bgu,pt %XCC, 1b add %i1, 4, %i1 @@ -415,8 +498,8 @@ .align 32 90: subcc %i2, 1, %i2 - EX_LD(LOAD(ldub, %i1, %g1)) - EX_ST(STORE(stb, %g1, %i1 + %i3)) + EX_LD(LOAD(ldub, %i1, %g1), NG_ret_i2_plus_1) + EX_ST(STORE(stb, %g1, %i1 + %i3), NG_ret_i2_plus_1) bgu,pt %XCC, 90b add %i1, 1, %i1 ret --- linux-4.8.0.orig/arch/sparc/lib/U1copy_from_user.S +++ linux-4.8.0/arch/sparc/lib/U1copy_from_user.S @@ -3,19 +3,19 @@ * Copyright (C) 1999, 2000, 2004 David S. Miller (davem@redhat.com) */ -#define EX_LD(x) \ +#define EX_LD(x,y) \ 98: x; \ .section __ex_table,"a";\ .align 4; \ - .word 98b, __retl_one; \ + .word 98b, y; \ .text; \ .align 4; -#define EX_LD_FP(x) \ +#define EX_LD_FP(x,y) \ 98: x; \ .section __ex_table,"a";\ .align 4; \ - .word 98b, __retl_one_fp;\ + .word 98b, y; \ .text; \ .align 4; --- linux-4.8.0.orig/arch/sparc/lib/U1copy_to_user.S +++ linux-4.8.0/arch/sparc/lib/U1copy_to_user.S @@ -3,19 +3,19 @@ * Copyright (C) 1999, 2000, 2004 David S. Miller (davem@redhat.com) */ -#define EX_ST(x) \ +#define EX_ST(x,y) \ 98: x; \ .section __ex_table,"a";\ .align 4; \ - .word 98b, __retl_one; \ + .word 98b, y; \ .text; \ .align 4; -#define EX_ST_FP(x) \ +#define EX_ST_FP(x,y) \ 98: x; \ .section __ex_table,"a";\ .align 4; \ - .word 98b, __retl_one_fp;\ + .word 98b, y; \ .text; \ .align 4; --- linux-4.8.0.orig/arch/sparc/lib/U1memcpy.S +++ linux-4.8.0/arch/sparc/lib/U1memcpy.S @@ -5,6 +5,7 @@ */ #ifdef __KERNEL__ +#include #include #include #define GLOBAL_SPARE g7 @@ -23,21 +24,17 @@ #endif #ifndef EX_LD -#define EX_LD(x) x +#define EX_LD(x,y) x #endif #ifndef EX_LD_FP -#define EX_LD_FP(x) x +#define EX_LD_FP(x,y) x #endif #ifndef EX_ST -#define EX_ST(x) x +#define EX_ST(x,y) x #endif #ifndef EX_ST_FP -#define EX_ST_FP(x) x -#endif - -#ifndef EX_RETVAL -#define EX_RETVAL(x) x +#define EX_ST_FP(x,y) x #endif #ifndef LOAD @@ -78,53 +75,169 @@ faligndata %f7, %f8, %f60; \ faligndata %f8, %f9, %f62; -#define MAIN_LOOP_CHUNK(src, dest, fdest, fsrc, len, jmptgt) \ - EX_LD_FP(LOAD_BLK(%src, %fdest)); \ - EX_ST_FP(STORE_BLK(%fsrc, %dest)); \ - add %src, 0x40, %src; \ - subcc %len, 0x40, %len; \ - be,pn %xcc, jmptgt; \ - add %dest, 0x40, %dest; \ - -#define LOOP_CHUNK1(src, dest, len, branch_dest) \ - MAIN_LOOP_CHUNK(src, dest, f0, f48, len, branch_dest) -#define LOOP_CHUNK2(src, dest, len, branch_dest) \ - MAIN_LOOP_CHUNK(src, dest, f16, f48, len, branch_dest) -#define LOOP_CHUNK3(src, dest, len, branch_dest) \ - MAIN_LOOP_CHUNK(src, dest, f32, f48, len, branch_dest) +#define MAIN_LOOP_CHUNK(src, dest, fdest, fsrc, jmptgt) \ + EX_LD_FP(LOAD_BLK(%src, %fdest), U1_gs_80_fp); \ + EX_ST_FP(STORE_BLK(%fsrc, %dest), U1_gs_80_fp); \ + add %src, 0x40, %src; \ + subcc %GLOBAL_SPARE, 0x40, %GLOBAL_SPARE; \ + be,pn %xcc, jmptgt; \ + add %dest, 0x40, %dest; \ + +#define LOOP_CHUNK1(src, dest, branch_dest) \ + MAIN_LOOP_CHUNK(src, dest, f0, f48, branch_dest) +#define LOOP_CHUNK2(src, dest, branch_dest) \ + MAIN_LOOP_CHUNK(src, dest, f16, f48, branch_dest) +#define LOOP_CHUNK3(src, dest, branch_dest) \ + MAIN_LOOP_CHUNK(src, dest, f32, f48, branch_dest) #define DO_SYNC membar #Sync; #define STORE_SYNC(dest, fsrc) \ - EX_ST_FP(STORE_BLK(%fsrc, %dest)); \ + EX_ST_FP(STORE_BLK(%fsrc, %dest), U1_gs_80_fp); \ add %dest, 0x40, %dest; \ DO_SYNC #define STORE_JUMP(dest, fsrc, target) \ - EX_ST_FP(STORE_BLK(%fsrc, %dest)); \ + EX_ST_FP(STORE_BLK(%fsrc, %dest), U1_gs_40_fp); \ add %dest, 0x40, %dest; \ ba,pt %xcc, target; \ nop; -#define FINISH_VISCHUNK(dest, f0, f1, left) \ - subcc %left, 8, %left;\ - bl,pn %xcc, 95f; \ - faligndata %f0, %f1, %f48; \ - EX_ST_FP(STORE(std, %f48, %dest)); \ +#define FINISH_VISCHUNK(dest, f0, f1) \ + subcc %g3, 8, %g3; \ + bl,pn %xcc, 95f; \ + faligndata %f0, %f1, %f48; \ + EX_ST_FP(STORE(std, %f48, %dest), U1_g3_8_fp); \ add %dest, 8, %dest; -#define UNEVEN_VISCHUNK_LAST(dest, f0, f1, left) \ - subcc %left, 8, %left; \ - bl,pn %xcc, 95f; \ +#define UNEVEN_VISCHUNK_LAST(dest, f0, f1) \ + subcc %g3, 8, %g3; \ + bl,pn %xcc, 95f; \ fsrc2 %f0, %f1; -#define UNEVEN_VISCHUNK(dest, f0, f1, left) \ - UNEVEN_VISCHUNK_LAST(dest, f0, f1, left) \ +#define UNEVEN_VISCHUNK(dest, f0, f1) \ + UNEVEN_VISCHUNK_LAST(dest, f0, f1) \ ba,a,pt %xcc, 93f; .register %g2,#scratch .register %g3,#scratch .text +#ifndef EX_RETVAL +#define EX_RETVAL(x) x +ENTRY(U1_g1_1_fp) + VISExitHalf + add %g1, 1, %g1 + add %g1, %g2, %g1 + retl + add %g1, %o2, %o0 +ENDPROC(U1_g1_1_fp) +ENTRY(U1_g2_0_fp) + VISExitHalf + retl + add %g2, %o2, %o0 +ENDPROC(U1_g2_0_fp) +ENTRY(U1_g2_8_fp) + VISExitHalf + add %g2, 8, %g2 + retl + add %g2, %o2, %o0 +ENDPROC(U1_g2_8_fp) +ENTRY(U1_gs_0_fp) + VISExitHalf + add %GLOBAL_SPARE, %g3, %o0 + retl + add %o0, %o2, %o0 +ENDPROC(U1_gs_0_fp) +ENTRY(U1_gs_80_fp) + VISExitHalf + add %GLOBAL_SPARE, 0x80, %GLOBAL_SPARE + add %GLOBAL_SPARE, %g3, %o0 + retl + add %o0, %o2, %o0 +ENDPROC(U1_gs_80_fp) +ENTRY(U1_gs_40_fp) + VISExitHalf + add %GLOBAL_SPARE, 0x40, %GLOBAL_SPARE + add %GLOBAL_SPARE, %g3, %o0 + retl + add %o0, %o2, %o0 +ENDPROC(U1_gs_40_fp) +ENTRY(U1_g3_0_fp) + VISExitHalf + retl + add %g3, %o2, %o0 +ENDPROC(U1_g3_0_fp) +ENTRY(U1_g3_8_fp) + VISExitHalf + add %g3, 8, %g3 + retl + add %g3, %o2, %o0 +ENDPROC(U1_g3_8_fp) +ENTRY(U1_o2_0_fp) + VISExitHalf + retl + mov %o2, %o0 +ENDPROC(U1_o2_0_fp) +ENTRY(U1_o2_1_fp) + VISExitHalf + retl + add %o2, 1, %o0 +ENDPROC(U1_o2_1_fp) +ENTRY(U1_gs_0) + VISExitHalf + retl + add %GLOBAL_SPARE, %o2, %o0 +ENDPROC(U1_gs_0) +ENTRY(U1_gs_8) + VISExitHalf + add %GLOBAL_SPARE, %o2, %GLOBAL_SPARE + retl + add %GLOBAL_SPARE, 0x8, %o0 +ENDPROC(U1_gs_8) +ENTRY(U1_gs_10) + VISExitHalf + add %GLOBAL_SPARE, %o2, %GLOBAL_SPARE + retl + add %GLOBAL_SPARE, 0x10, %o0 +ENDPROC(U1_gs_10) +ENTRY(U1_o2_0) + retl + mov %o2, %o0 +ENDPROC(U1_o2_0) +ENTRY(U1_o2_8) + retl + add %o2, 8, %o0 +ENDPROC(U1_o2_8) +ENTRY(U1_o2_4) + retl + add %o2, 4, %o0 +ENDPROC(U1_o2_4) +ENTRY(U1_o2_1) + retl + add %o2, 1, %o0 +ENDPROC(U1_o2_1) +ENTRY(U1_g1_0) + retl + add %g1, %o2, %o0 +ENDPROC(U1_g1_0) +ENTRY(U1_g1_1) + add %g1, 1, %g1 + retl + add %g1, %o2, %o0 +ENDPROC(U1_g1_1) +ENTRY(U1_gs_0_o2_adj) + and %o2, 7, %o2 + retl + add %GLOBAL_SPARE, %o2, %o0 +ENDPROC(U1_gs_0_o2_adj) +ENTRY(U1_gs_8_o2_adj) + and %o2, 7, %o2 + add %GLOBAL_SPARE, 8, %GLOBAL_SPARE + retl + add %GLOBAL_SPARE, %o2, %o0 +ENDPROC(U1_gs_8_o2_adj) +#endif + .align 64 .globl FUNC_NAME @@ -166,8 +279,8 @@ and %g2, 0x38, %g2 1: subcc %g1, 0x1, %g1 - EX_LD_FP(LOAD(ldub, %o1 + 0x00, %o3)) - EX_ST_FP(STORE(stb, %o3, %o1 + %GLOBAL_SPARE)) + EX_LD_FP(LOAD(ldub, %o1 + 0x00, %o3), U1_g1_1_fp) + EX_ST_FP(STORE(stb, %o3, %o1 + %GLOBAL_SPARE), U1_g1_1_fp) bgu,pt %XCC, 1b add %o1, 0x1, %o1 @@ -178,20 +291,20 @@ be,pt %icc, 3f alignaddr %o1, %g0, %o1 - EX_LD_FP(LOAD(ldd, %o1, %f4)) -1: EX_LD_FP(LOAD(ldd, %o1 + 0x8, %f6)) + EX_LD_FP(LOAD(ldd, %o1, %f4), U1_g2_0_fp) +1: EX_LD_FP(LOAD(ldd, %o1 + 0x8, %f6), U1_g2_0_fp) add %o1, 0x8, %o1 subcc %g2, 0x8, %g2 faligndata %f4, %f6, %f0 - EX_ST_FP(STORE(std, %f0, %o0)) + EX_ST_FP(STORE(std, %f0, %o0), U1_g2_8_fp) be,pn %icc, 3f add %o0, 0x8, %o0 - EX_LD_FP(LOAD(ldd, %o1 + 0x8, %f4)) + EX_LD_FP(LOAD(ldd, %o1 + 0x8, %f4), U1_g2_0_fp) add %o1, 0x8, %o1 subcc %g2, 0x8, %g2 faligndata %f6, %f4, %f0 - EX_ST_FP(STORE(std, %f0, %o0)) + EX_ST_FP(STORE(std, %f0, %o0), U1_g2_8_fp) bne,pt %icc, 1b add %o0, 0x8, %o0 @@ -214,13 +327,13 @@ add %g1, %GLOBAL_SPARE, %g1 subcc %o2, %g3, %o2 - EX_LD_FP(LOAD_BLK(%o1, %f0)) + EX_LD_FP(LOAD_BLK(%o1, %f0), U1_gs_0_fp) add %o1, 0x40, %o1 add %g1, %g3, %g1 - EX_LD_FP(LOAD_BLK(%o1, %f16)) + EX_LD_FP(LOAD_BLK(%o1, %f16), U1_gs_0_fp) add %o1, 0x40, %o1 sub %GLOBAL_SPARE, 0x80, %GLOBAL_SPARE - EX_LD_FP(LOAD_BLK(%o1, %f32)) + EX_LD_FP(LOAD_BLK(%o1, %f32), U1_gs_80_fp) add %o1, 0x40, %o1 /* There are 8 instances of the unrolled loop, @@ -240,11 +353,11 @@ .align 64 1: FREG_FROB(f0, f2, f4, f6, f8, f10,f12,f14,f16) - LOOP_CHUNK1(o1, o0, GLOBAL_SPARE, 1f) + LOOP_CHUNK1(o1, o0, 1f) FREG_FROB(f16,f18,f20,f22,f24,f26,f28,f30,f32) - LOOP_CHUNK2(o1, o0, GLOBAL_SPARE, 2f) + LOOP_CHUNK2(o1, o0, 2f) FREG_FROB(f32,f34,f36,f38,f40,f42,f44,f46,f0) - LOOP_CHUNK3(o1, o0, GLOBAL_SPARE, 3f) + LOOP_CHUNK3(o1, o0, 3f) ba,pt %xcc, 1b+4 faligndata %f0, %f2, %f48 1: FREG_FROB(f16,f18,f20,f22,f24,f26,f28,f30,f32) @@ -261,11 +374,11 @@ STORE_JUMP(o0, f48, 56f) 1: FREG_FROB(f2, f4, f6, f8, f10,f12,f14,f16,f18) - LOOP_CHUNK1(o1, o0, GLOBAL_SPARE, 1f) + LOOP_CHUNK1(o1, o0, 1f) FREG_FROB(f18,f20,f22,f24,f26,f28,f30,f32,f34) - LOOP_CHUNK2(o1, o0, GLOBAL_SPARE, 2f) + LOOP_CHUNK2(o1, o0, 2f) FREG_FROB(f34,f36,f38,f40,f42,f44,f46,f0, f2) - LOOP_CHUNK3(o1, o0, GLOBAL_SPARE, 3f) + LOOP_CHUNK3(o1, o0, 3f) ba,pt %xcc, 1b+4 faligndata %f2, %f4, %f48 1: FREG_FROB(f18,f20,f22,f24,f26,f28,f30,f32,f34) @@ -282,11 +395,11 @@ STORE_JUMP(o0, f48, 57f) 1: FREG_FROB(f4, f6, f8, f10,f12,f14,f16,f18,f20) - LOOP_CHUNK1(o1, o0, GLOBAL_SPARE, 1f) + LOOP_CHUNK1(o1, o0, 1f) FREG_FROB(f20,f22,f24,f26,f28,f30,f32,f34,f36) - LOOP_CHUNK2(o1, o0, GLOBAL_SPARE, 2f) + LOOP_CHUNK2(o1, o0, 2f) FREG_FROB(f36,f38,f40,f42,f44,f46,f0, f2, f4) - LOOP_CHUNK3(o1, o0, GLOBAL_SPARE, 3f) + LOOP_CHUNK3(o1, o0, 3f) ba,pt %xcc, 1b+4 faligndata %f4, %f6, %f48 1: FREG_FROB(f20,f22,f24,f26,f28,f30,f32,f34,f36) @@ -303,11 +416,11 @@ STORE_JUMP(o0, f48, 58f) 1: FREG_FROB(f6, f8, f10,f12,f14,f16,f18,f20,f22) - LOOP_CHUNK1(o1, o0, GLOBAL_SPARE, 1f) + LOOP_CHUNK1(o1, o0, 1f) FREG_FROB(f22,f24,f26,f28,f30,f32,f34,f36,f38) - LOOP_CHUNK2(o1, o0, GLOBAL_SPARE, 2f) + LOOP_CHUNK2(o1, o0, 2f) FREG_FROB(f38,f40,f42,f44,f46,f0, f2, f4, f6) - LOOP_CHUNK3(o1, o0, GLOBAL_SPARE, 3f) + LOOP_CHUNK3(o1, o0, 3f) ba,pt %xcc, 1b+4 faligndata %f6, %f8, %f48 1: FREG_FROB(f22,f24,f26,f28,f30,f32,f34,f36,f38) @@ -324,11 +437,11 @@ STORE_JUMP(o0, f48, 59f) 1: FREG_FROB(f8, f10,f12,f14,f16,f18,f20,f22,f24) - LOOP_CHUNK1(o1, o0, GLOBAL_SPARE, 1f) + LOOP_CHUNK1(o1, o0, 1f) FREG_FROB(f24,f26,f28,f30,f32,f34,f36,f38,f40) - LOOP_CHUNK2(o1, o0, GLOBAL_SPARE, 2f) + LOOP_CHUNK2(o1, o0, 2f) FREG_FROB(f40,f42,f44,f46,f0, f2, f4, f6, f8) - LOOP_CHUNK3(o1, o0, GLOBAL_SPARE, 3f) + LOOP_CHUNK3(o1, o0, 3f) ba,pt %xcc, 1b+4 faligndata %f8, %f10, %f48 1: FREG_FROB(f24,f26,f28,f30,f32,f34,f36,f38,f40) @@ -345,11 +458,11 @@ STORE_JUMP(o0, f48, 60f) 1: FREG_FROB(f10,f12,f14,f16,f18,f20,f22,f24,f26) - LOOP_CHUNK1(o1, o0, GLOBAL_SPARE, 1f) + LOOP_CHUNK1(o1, o0, 1f) FREG_FROB(f26,f28,f30,f32,f34,f36,f38,f40,f42) - LOOP_CHUNK2(o1, o0, GLOBAL_SPARE, 2f) + LOOP_CHUNK2(o1, o0, 2f) FREG_FROB(f42,f44,f46,f0, f2, f4, f6, f8, f10) - LOOP_CHUNK3(o1, o0, GLOBAL_SPARE, 3f) + LOOP_CHUNK3(o1, o0, 3f) ba,pt %xcc, 1b+4 faligndata %f10, %f12, %f48 1: FREG_FROB(f26,f28,f30,f32,f34,f36,f38,f40,f42) @@ -366,11 +479,11 @@ STORE_JUMP(o0, f48, 61f) 1: FREG_FROB(f12,f14,f16,f18,f20,f22,f24,f26,f28) - LOOP_CHUNK1(o1, o0, GLOBAL_SPARE, 1f) + LOOP_CHUNK1(o1, o0, 1f) FREG_FROB(f28,f30,f32,f34,f36,f38,f40,f42,f44) - LOOP_CHUNK2(o1, o0, GLOBAL_SPARE, 2f) + LOOP_CHUNK2(o1, o0, 2f) FREG_FROB(f44,f46,f0, f2, f4, f6, f8, f10,f12) - LOOP_CHUNK3(o1, o0, GLOBAL_SPARE, 3f) + LOOP_CHUNK3(o1, o0, 3f) ba,pt %xcc, 1b+4 faligndata %f12, %f14, %f48 1: FREG_FROB(f28,f30,f32,f34,f36,f38,f40,f42,f44) @@ -387,11 +500,11 @@ STORE_JUMP(o0, f48, 62f) 1: FREG_FROB(f14,f16,f18,f20,f22,f24,f26,f28,f30) - LOOP_CHUNK1(o1, o0, GLOBAL_SPARE, 1f) + LOOP_CHUNK1(o1, o0, 1f) FREG_FROB(f30,f32,f34,f36,f38,f40,f42,f44,f46) - LOOP_CHUNK2(o1, o0, GLOBAL_SPARE, 2f) + LOOP_CHUNK2(o1, o0, 2f) FREG_FROB(f46,f0, f2, f4, f6, f8, f10,f12,f14) - LOOP_CHUNK3(o1, o0, GLOBAL_SPARE, 3f) + LOOP_CHUNK3(o1, o0, 3f) ba,pt %xcc, 1b+4 faligndata %f14, %f16, %f48 1: FREG_FROB(f30,f32,f34,f36,f38,f40,f42,f44,f46) @@ -407,53 +520,53 @@ FREG_FROB(f30,f32,f34,f36,f38,f40,f42,f44,f46) STORE_JUMP(o0, f48, 63f) -40: FINISH_VISCHUNK(o0, f0, f2, g3) -41: FINISH_VISCHUNK(o0, f2, f4, g3) -42: FINISH_VISCHUNK(o0, f4, f6, g3) -43: FINISH_VISCHUNK(o0, f6, f8, g3) -44: FINISH_VISCHUNK(o0, f8, f10, g3) -45: FINISH_VISCHUNK(o0, f10, f12, g3) -46: FINISH_VISCHUNK(o0, f12, f14, g3) -47: UNEVEN_VISCHUNK(o0, f14, f0, g3) -48: FINISH_VISCHUNK(o0, f16, f18, g3) -49: FINISH_VISCHUNK(o0, f18, f20, g3) -50: FINISH_VISCHUNK(o0, f20, f22, g3) -51: FINISH_VISCHUNK(o0, f22, f24, g3) -52: FINISH_VISCHUNK(o0, f24, f26, g3) -53: FINISH_VISCHUNK(o0, f26, f28, g3) -54: FINISH_VISCHUNK(o0, f28, f30, g3) -55: UNEVEN_VISCHUNK(o0, f30, f0, g3) -56: FINISH_VISCHUNK(o0, f32, f34, g3) -57: FINISH_VISCHUNK(o0, f34, f36, g3) -58: FINISH_VISCHUNK(o0, f36, f38, g3) -59: FINISH_VISCHUNK(o0, f38, f40, g3) -60: FINISH_VISCHUNK(o0, f40, f42, g3) -61: FINISH_VISCHUNK(o0, f42, f44, g3) -62: FINISH_VISCHUNK(o0, f44, f46, g3) -63: UNEVEN_VISCHUNK_LAST(o0, f46, f0, g3) +40: FINISH_VISCHUNK(o0, f0, f2) +41: FINISH_VISCHUNK(o0, f2, f4) +42: FINISH_VISCHUNK(o0, f4, f6) +43: FINISH_VISCHUNK(o0, f6, f8) +44: FINISH_VISCHUNK(o0, f8, f10) +45: FINISH_VISCHUNK(o0, f10, f12) +46: FINISH_VISCHUNK(o0, f12, f14) +47: UNEVEN_VISCHUNK(o0, f14, f0) +48: FINISH_VISCHUNK(o0, f16, f18) +49: FINISH_VISCHUNK(o0, f18, f20) +50: FINISH_VISCHUNK(o0, f20, f22) +51: FINISH_VISCHUNK(o0, f22, f24) +52: FINISH_VISCHUNK(o0, f24, f26) +53: FINISH_VISCHUNK(o0, f26, f28) +54: FINISH_VISCHUNK(o0, f28, f30) +55: UNEVEN_VISCHUNK(o0, f30, f0) +56: FINISH_VISCHUNK(o0, f32, f34) +57: FINISH_VISCHUNK(o0, f34, f36) +58: FINISH_VISCHUNK(o0, f36, f38) +59: FINISH_VISCHUNK(o0, f38, f40) +60: FINISH_VISCHUNK(o0, f40, f42) +61: FINISH_VISCHUNK(o0, f42, f44) +62: FINISH_VISCHUNK(o0, f44, f46) +63: UNEVEN_VISCHUNK_LAST(o0, f46, f0) -93: EX_LD_FP(LOAD(ldd, %o1, %f2)) +93: EX_LD_FP(LOAD(ldd, %o1, %f2), U1_g3_0_fp) add %o1, 8, %o1 subcc %g3, 8, %g3 faligndata %f0, %f2, %f8 - EX_ST_FP(STORE(std, %f8, %o0)) + EX_ST_FP(STORE(std, %f8, %o0), U1_g3_8_fp) bl,pn %xcc, 95f add %o0, 8, %o0 - EX_LD_FP(LOAD(ldd, %o1, %f0)) + EX_LD_FP(LOAD(ldd, %o1, %f0), U1_g3_0_fp) add %o1, 8, %o1 subcc %g3, 8, %g3 faligndata %f2, %f0, %f8 - EX_ST_FP(STORE(std, %f8, %o0)) + EX_ST_FP(STORE(std, %f8, %o0), U1_g3_8_fp) bge,pt %xcc, 93b add %o0, 8, %o0 95: brz,pt %o2, 2f mov %g1, %o1 -1: EX_LD_FP(LOAD(ldub, %o1, %o3)) +1: EX_LD_FP(LOAD(ldub, %o1, %o3), U1_o2_0_fp) add %o1, 1, %o1 subcc %o2, 1, %o2 - EX_ST_FP(STORE(stb, %o3, %o0)) + EX_ST_FP(STORE(stb, %o3, %o0), U1_o2_1_fp) bne,pt %xcc, 1b add %o0, 1, %o0 @@ -469,27 +582,27 @@ 72: andn %o2, 0xf, %GLOBAL_SPARE and %o2, 0xf, %o2 -1: EX_LD(LOAD(ldx, %o1 + 0x00, %o5)) - EX_LD(LOAD(ldx, %o1 + 0x08, %g1)) +1: EX_LD(LOAD(ldx, %o1 + 0x00, %o5), U1_gs_0) + EX_LD(LOAD(ldx, %o1 + 0x08, %g1), U1_gs_0) subcc %GLOBAL_SPARE, 0x10, %GLOBAL_SPARE - EX_ST(STORE(stx, %o5, %o1 + %o3)) + EX_ST(STORE(stx, %o5, %o1 + %o3), U1_gs_10) add %o1, 0x8, %o1 - EX_ST(STORE(stx, %g1, %o1 + %o3)) + EX_ST(STORE(stx, %g1, %o1 + %o3), U1_gs_8) bgu,pt %XCC, 1b add %o1, 0x8, %o1 73: andcc %o2, 0x8, %g0 be,pt %XCC, 1f nop - EX_LD(LOAD(ldx, %o1, %o5)) + EX_LD(LOAD(ldx, %o1, %o5), U1_o2_0) sub %o2, 0x8, %o2 - EX_ST(STORE(stx, %o5, %o1 + %o3)) + EX_ST(STORE(stx, %o5, %o1 + %o3), U1_o2_8) add %o1, 0x8, %o1 1: andcc %o2, 0x4, %g0 be,pt %XCC, 1f nop - EX_LD(LOAD(lduw, %o1, %o5)) + EX_LD(LOAD(lduw, %o1, %o5), U1_o2_0) sub %o2, 0x4, %o2 - EX_ST(STORE(stw, %o5, %o1 + %o3)) + EX_ST(STORE(stw, %o5, %o1 + %o3), U1_o2_4) add %o1, 0x4, %o1 1: cmp %o2, 0 be,pt %XCC, 85f @@ -503,9 +616,9 @@ sub %g0, %g1, %g1 sub %o2, %g1, %o2 -1: EX_LD(LOAD(ldub, %o1, %o5)) +1: EX_LD(LOAD(ldub, %o1, %o5), U1_g1_0) subcc %g1, 1, %g1 - EX_ST(STORE(stb, %o5, %o1 + %o3)) + EX_ST(STORE(stb, %o5, %o1 + %o3), U1_g1_1) bgu,pt %icc, 1b add %o1, 1, %o1 @@ -521,16 +634,16 @@ 8: mov 64, %o3 andn %o1, 0x7, %o1 - EX_LD(LOAD(ldx, %o1, %g2)) + EX_LD(LOAD(ldx, %o1, %g2), U1_o2_0) sub %o3, %g1, %o3 andn %o2, 0x7, %GLOBAL_SPARE sllx %g2, %g1, %g2 -1: EX_LD(LOAD(ldx, %o1 + 0x8, %g3)) +1: EX_LD(LOAD(ldx, %o1 + 0x8, %g3), U1_gs_0_o2_adj) subcc %GLOBAL_SPARE, 0x8, %GLOBAL_SPARE add %o1, 0x8, %o1 srlx %g3, %o3, %o5 or %o5, %g2, %o5 - EX_ST(STORE(stx, %o5, %o0)) + EX_ST(STORE(stx, %o5, %o0), U1_gs_8_o2_adj) add %o0, 0x8, %o0 bgu,pt %icc, 1b sllx %g3, %g1, %g2 @@ -548,9 +661,9 @@ bne,pn %XCC, 90f sub %o0, %o1, %o3 -1: EX_LD(LOAD(lduw, %o1, %g1)) +1: EX_LD(LOAD(lduw, %o1, %g1), U1_o2_0) subcc %o2, 4, %o2 - EX_ST(STORE(stw, %g1, %o1 + %o3)) + EX_ST(STORE(stw, %g1, %o1 + %o3), U1_o2_4) bgu,pt %XCC, 1b add %o1, 4, %o1 @@ -558,9 +671,9 @@ mov EX_RETVAL(%o4), %o0 .align 32 -90: EX_LD(LOAD(ldub, %o1, %g1)) +90: EX_LD(LOAD(ldub, %o1, %g1), U1_o2_0) subcc %o2, 1, %o2 - EX_ST(STORE(stb, %g1, %o1 + %o3)) + EX_ST(STORE(stb, %g1, %o1 + %o3), U1_o2_1) bgu,pt %XCC, 90b add %o1, 1, %o1 retl --- linux-4.8.0.orig/arch/sparc/lib/U3copy_from_user.S +++ linux-4.8.0/arch/sparc/lib/U3copy_from_user.S @@ -3,19 +3,19 @@ * Copyright (C) 1999, 2000, 2004 David S. Miller (davem@redhat.com) */ -#define EX_LD(x) \ +#define EX_LD(x,y) \ 98: x; \ .section __ex_table,"a";\ .align 4; \ - .word 98b, __retl_one; \ + .word 98b, y; \ .text; \ .align 4; -#define EX_LD_FP(x) \ +#define EX_LD_FP(x,y) \ 98: x; \ .section __ex_table,"a";\ .align 4; \ - .word 98b, __retl_one_fp;\ + .word 98b, y##_fp; \ .text; \ .align 4; --- linux-4.8.0.orig/arch/sparc/lib/U3copy_to_user.S +++ linux-4.8.0/arch/sparc/lib/U3copy_to_user.S @@ -3,19 +3,19 @@ * Copyright (C) 1999, 2000, 2004 David S. Miller (davem@redhat.com) */ -#define EX_ST(x) \ +#define EX_ST(x,y) \ 98: x; \ .section __ex_table,"a";\ .align 4; \ - .word 98b, __retl_one; \ + .word 98b, y; \ .text; \ .align 4; -#define EX_ST_FP(x) \ +#define EX_ST_FP(x,y) \ 98: x; \ .section __ex_table,"a";\ .align 4; \ - .word 98b, __retl_one_fp;\ + .word 98b, y##_fp; \ .text; \ .align 4; --- linux-4.8.0.orig/arch/sparc/lib/U3memcpy.S +++ linux-4.8.0/arch/sparc/lib/U3memcpy.S @@ -4,6 +4,7 @@ */ #ifdef __KERNEL__ +#include #include #include #define GLOBAL_SPARE %g7 @@ -22,21 +23,17 @@ #endif #ifndef EX_LD -#define EX_LD(x) x +#define EX_LD(x,y) x #endif #ifndef EX_LD_FP -#define EX_LD_FP(x) x +#define EX_LD_FP(x,y) x #endif #ifndef EX_ST -#define EX_ST(x) x +#define EX_ST(x,y) x #endif #ifndef EX_ST_FP -#define EX_ST_FP(x) x -#endif - -#ifndef EX_RETVAL -#define EX_RETVAL(x) x +#define EX_ST_FP(x,y) x #endif #ifndef LOAD @@ -77,6 +74,87 @@ */ .text +#ifndef EX_RETVAL +#define EX_RETVAL(x) x +__restore_fp: + VISExitHalf + retl + nop +ENTRY(U3_retl_o2_plus_g2_plus_g1_plus_1_fp) + add %g1, 1, %g1 + add %g2, %g1, %g2 + ba,pt %xcc, __restore_fp + add %o2, %g2, %o0 +ENDPROC(U3_retl_o2_plus_g2_plus_g1_plus_1_fp) +ENTRY(U3_retl_o2_plus_g2_fp) + ba,pt %xcc, __restore_fp + add %o2, %g2, %o0 +ENDPROC(U3_retl_o2_plus_g2_fp) +ENTRY(U3_retl_o2_plus_g2_plus_8_fp) + add %g2, 8, %g2 + ba,pt %xcc, __restore_fp + add %o2, %g2, %o0 +ENDPROC(U3_retl_o2_plus_g2_plus_8_fp) +ENTRY(U3_retl_o2) + retl + mov %o2, %o0 +ENDPROC(U3_retl_o2) +ENTRY(U3_retl_o2_plus_1) + retl + add %o2, 1, %o0 +ENDPROC(U3_retl_o2_plus_1) +ENTRY(U3_retl_o2_plus_4) + retl + add %o2, 4, %o0 +ENDPROC(U3_retl_o2_plus_4) +ENTRY(U3_retl_o2_plus_8) + retl + add %o2, 8, %o0 +ENDPROC(U3_retl_o2_plus_8) +ENTRY(U3_retl_o2_plus_g1_plus_1) + add %g1, 1, %g1 + retl + add %o2, %g1, %o0 +ENDPROC(U3_retl_o2_plus_g1_plus_1) +ENTRY(U3_retl_o2_fp) + ba,pt %xcc, __restore_fp + mov %o2, %o0 +ENDPROC(U3_retl_o2_fp) +ENTRY(U3_retl_o2_plus_o3_sll_6_plus_0x80_fp) + sll %o3, 6, %o3 + add %o3, 0x80, %o3 + ba,pt %xcc, __restore_fp + add %o2, %o3, %o0 +ENDPROC(U3_retl_o2_plus_o3_sll_6_plus_0x80_fp) +ENTRY(U3_retl_o2_plus_o3_sll_6_plus_0x40_fp) + sll %o3, 6, %o3 + add %o3, 0x40, %o3 + ba,pt %xcc, __restore_fp + add %o2, %o3, %o0 +ENDPROC(U3_retl_o2_plus_o3_sll_6_plus_0x40_fp) +ENTRY(U3_retl_o2_plus_GS_plus_0x10) + add GLOBAL_SPARE, 0x10, GLOBAL_SPARE + retl + add %o2, GLOBAL_SPARE, %o0 +ENDPROC(U3_retl_o2_plus_GS_plus_0x10) +ENTRY(U3_retl_o2_plus_GS_plus_0x08) + add GLOBAL_SPARE, 0x08, GLOBAL_SPARE + retl + add %o2, GLOBAL_SPARE, %o0 +ENDPROC(U3_retl_o2_plus_GS_plus_0x08) +ENTRY(U3_retl_o2_and_7_plus_GS) + and %o2, 7, %o2 + retl + add %o2, GLOBAL_SPARE, %o2 +ENDPROC(U3_retl_o2_and_7_plus_GS) +ENTRY(U3_retl_o2_and_7_plus_GS_plus_8) + add GLOBAL_SPARE, 8, GLOBAL_SPARE + and %o2, 7, %o2 + retl + add %o2, GLOBAL_SPARE, %o2 +ENDPROC(U3_retl_o2_and_7_plus_GS_plus_8) +#endif + .align 64 /* The cheetah's flexible spine, oversized liver, enlarged heart, @@ -126,8 +204,8 @@ and %g2, 0x38, %g2 1: subcc %g1, 0x1, %g1 - EX_LD_FP(LOAD(ldub, %o1 + 0x00, %o3)) - EX_ST_FP(STORE(stb, %o3, %o1 + GLOBAL_SPARE)) + EX_LD_FP(LOAD(ldub, %o1 + 0x00, %o3), U3_retl_o2_plus_g2_plus_g1_plus_1) + EX_ST_FP(STORE(stb, %o3, %o1 + GLOBAL_SPARE), U3_retl_o2_plus_g2_plus_g1_plus_1) bgu,pt %XCC, 1b add %o1, 0x1, %o1 @@ -138,20 +216,20 @@ be,pt %icc, 3f alignaddr %o1, %g0, %o1 - EX_LD_FP(LOAD(ldd, %o1, %f4)) -1: EX_LD_FP(LOAD(ldd, %o1 + 0x8, %f6)) + EX_LD_FP(LOAD(ldd, %o1, %f4), U3_retl_o2_plus_g2) +1: EX_LD_FP(LOAD(ldd, %o1 + 0x8, %f6), U3_retl_o2_plus_g2) add %o1, 0x8, %o1 subcc %g2, 0x8, %g2 faligndata %f4, %f6, %f0 - EX_ST_FP(STORE(std, %f0, %o0)) + EX_ST_FP(STORE(std, %f0, %o0), U3_retl_o2_plus_g2_plus_8) be,pn %icc, 3f add %o0, 0x8, %o0 - EX_LD_FP(LOAD(ldd, %o1 + 0x8, %f4)) + EX_LD_FP(LOAD(ldd, %o1 + 0x8, %f4), U3_retl_o2_plus_g2) add %o1, 0x8, %o1 subcc %g2, 0x8, %g2 faligndata %f6, %f4, %f2 - EX_ST_FP(STORE(std, %f2, %o0)) + EX_ST_FP(STORE(std, %f2, %o0), U3_retl_o2_plus_g2_plus_8) bne,pt %icc, 1b add %o0, 0x8, %o0 @@ -161,25 +239,25 @@ LOAD(prefetch, %o1 + 0x080, #one_read) LOAD(prefetch, %o1 + 0x0c0, #one_read) LOAD(prefetch, %o1 + 0x100, #one_read) - EX_LD_FP(LOAD(ldd, %o1 + 0x000, %f0)) + EX_LD_FP(LOAD(ldd, %o1 + 0x000, %f0), U3_retl_o2) LOAD(prefetch, %o1 + 0x140, #one_read) - EX_LD_FP(LOAD(ldd, %o1 + 0x008, %f2)) + EX_LD_FP(LOAD(ldd, %o1 + 0x008, %f2), U3_retl_o2) LOAD(prefetch, %o1 + 0x180, #one_read) - EX_LD_FP(LOAD(ldd, %o1 + 0x010, %f4)) + EX_LD_FP(LOAD(ldd, %o1 + 0x010, %f4), U3_retl_o2) LOAD(prefetch, %o1 + 0x1c0, #one_read) faligndata %f0, %f2, %f16 - EX_LD_FP(LOAD(ldd, %o1 + 0x018, %f6)) + EX_LD_FP(LOAD(ldd, %o1 + 0x018, %f6), U3_retl_o2) faligndata %f2, %f4, %f18 - EX_LD_FP(LOAD(ldd, %o1 + 0x020, %f8)) + EX_LD_FP(LOAD(ldd, %o1 + 0x020, %f8), U3_retl_o2) faligndata %f4, %f6, %f20 - EX_LD_FP(LOAD(ldd, %o1 + 0x028, %f10)) + EX_LD_FP(LOAD(ldd, %o1 + 0x028, %f10), U3_retl_o2) faligndata %f6, %f8, %f22 - EX_LD_FP(LOAD(ldd, %o1 + 0x030, %f12)) + EX_LD_FP(LOAD(ldd, %o1 + 0x030, %f12), U3_retl_o2) faligndata %f8, %f10, %f24 - EX_LD_FP(LOAD(ldd, %o1 + 0x038, %f14)) + EX_LD_FP(LOAD(ldd, %o1 + 0x038, %f14), U3_retl_o2) faligndata %f10, %f12, %f26 - EX_LD_FP(LOAD(ldd, %o1 + 0x040, %f0)) + EX_LD_FP(LOAD(ldd, %o1 + 0x040, %f0), U3_retl_o2) subcc GLOBAL_SPARE, 0x80, GLOBAL_SPARE add %o1, 0x40, %o1 @@ -190,26 +268,26 @@ .align 64 1: - EX_LD_FP(LOAD(ldd, %o1 + 0x008, %f2)) + EX_LD_FP(LOAD(ldd, %o1 + 0x008, %f2), U3_retl_o2_plus_o3_sll_6_plus_0x80) faligndata %f12, %f14, %f28 - EX_LD_FP(LOAD(ldd, %o1 + 0x010, %f4)) + EX_LD_FP(LOAD(ldd, %o1 + 0x010, %f4), U3_retl_o2_plus_o3_sll_6_plus_0x80) faligndata %f14, %f0, %f30 - EX_ST_FP(STORE_BLK(%f16, %o0)) - EX_LD_FP(LOAD(ldd, %o1 + 0x018, %f6)) + EX_ST_FP(STORE_BLK(%f16, %o0), U3_retl_o2_plus_o3_sll_6_plus_0x80) + EX_LD_FP(LOAD(ldd, %o1 + 0x018, %f6), U3_retl_o2_plus_o3_sll_6_plus_0x40) faligndata %f0, %f2, %f16 add %o0, 0x40, %o0 - EX_LD_FP(LOAD(ldd, %o1 + 0x020, %f8)) + EX_LD_FP(LOAD(ldd, %o1 + 0x020, %f8), U3_retl_o2_plus_o3_sll_6_plus_0x40) faligndata %f2, %f4, %f18 - EX_LD_FP(LOAD(ldd, %o1 + 0x028, %f10)) + EX_LD_FP(LOAD(ldd, %o1 + 0x028, %f10), U3_retl_o2_plus_o3_sll_6_plus_0x40) faligndata %f4, %f6, %f20 - EX_LD_FP(LOAD(ldd, %o1 + 0x030, %f12)) + EX_LD_FP(LOAD(ldd, %o1 + 0x030, %f12), U3_retl_o2_plus_o3_sll_6_plus_0x40) subcc %o3, 0x01, %o3 faligndata %f6, %f8, %f22 - EX_LD_FP(LOAD(ldd, %o1 + 0x038, %f14)) + EX_LD_FP(LOAD(ldd, %o1 + 0x038, %f14), U3_retl_o2_plus_o3_sll_6_plus_0x80) faligndata %f8, %f10, %f24 - EX_LD_FP(LOAD(ldd, %o1 + 0x040, %f0)) + EX_LD_FP(LOAD(ldd, %o1 + 0x040, %f0), U3_retl_o2_plus_o3_sll_6_plus_0x80) LOAD(prefetch, %o1 + 0x1c0, #one_read) faligndata %f10, %f12, %f26 bg,pt %XCC, 1b @@ -217,29 +295,29 @@ /* Finally we copy the last full 64-byte block. */ 2: - EX_LD_FP(LOAD(ldd, %o1 + 0x008, %f2)) + EX_LD_FP(LOAD(ldd, %o1 + 0x008, %f2), U3_retl_o2_plus_o3_sll_6_plus_0x80) faligndata %f12, %f14, %f28 - EX_LD_FP(LOAD(ldd, %o1 + 0x010, %f4)) + EX_LD_FP(LOAD(ldd, %o1 + 0x010, %f4), U3_retl_o2_plus_o3_sll_6_plus_0x80) faligndata %f14, %f0, %f30 - EX_ST_FP(STORE_BLK(%f16, %o0)) - EX_LD_FP(LOAD(ldd, %o1 + 0x018, %f6)) + EX_ST_FP(STORE_BLK(%f16, %o0), U3_retl_o2_plus_o3_sll_6_plus_0x80) + EX_LD_FP(LOAD(ldd, %o1 + 0x018, %f6), U3_retl_o2_plus_o3_sll_6_plus_0x40) faligndata %f0, %f2, %f16 - EX_LD_FP(LOAD(ldd, %o1 + 0x020, %f8)) + EX_LD_FP(LOAD(ldd, %o1 + 0x020, %f8), U3_retl_o2_plus_o3_sll_6_plus_0x40) faligndata %f2, %f4, %f18 - EX_LD_FP(LOAD(ldd, %o1 + 0x028, %f10)) + EX_LD_FP(LOAD(ldd, %o1 + 0x028, %f10), U3_retl_o2_plus_o3_sll_6_plus_0x40) faligndata %f4, %f6, %f20 - EX_LD_FP(LOAD(ldd, %o1 + 0x030, %f12)) + EX_LD_FP(LOAD(ldd, %o1 + 0x030, %f12), U3_retl_o2_plus_o3_sll_6_plus_0x40) faligndata %f6, %f8, %f22 - EX_LD_FP(LOAD(ldd, %o1 + 0x038, %f14)) + EX_LD_FP(LOAD(ldd, %o1 + 0x038, %f14), U3_retl_o2_plus_o3_sll_6_plus_0x40) faligndata %f8, %f10, %f24 cmp %g1, 0 be,pt %XCC, 1f add %o0, 0x40, %o0 - EX_LD_FP(LOAD(ldd, %o1 + 0x040, %f0)) + EX_LD_FP(LOAD(ldd, %o1 + 0x040, %f0), U3_retl_o2_plus_o3_sll_6_plus_0x40) 1: faligndata %f10, %f12, %f26 faligndata %f12, %f14, %f28 faligndata %f14, %f0, %f30 - EX_ST_FP(STORE_BLK(%f16, %o0)) + EX_ST_FP(STORE_BLK(%f16, %o0), U3_retl_o2_plus_o3_sll_6_plus_0x40) add %o0, 0x40, %o0 add %o1, 0x40, %o1 membar #Sync @@ -259,20 +337,20 @@ sub %o2, %g2, %o2 be,a,pt %XCC, 1f - EX_LD_FP(LOAD(ldd, %o1 + 0x00, %f0)) + EX_LD_FP(LOAD(ldd, %o1 + 0x00, %f0), U3_retl_o2_plus_g2) -1: EX_LD_FP(LOAD(ldd, %o1 + 0x08, %f2)) +1: EX_LD_FP(LOAD(ldd, %o1 + 0x08, %f2), U3_retl_o2_plus_g2) add %o1, 0x8, %o1 subcc %g2, 0x8, %g2 faligndata %f0, %f2, %f8 - EX_ST_FP(STORE(std, %f8, %o0)) + EX_ST_FP(STORE(std, %f8, %o0), U3_retl_o2_plus_g2_plus_8) be,pn %XCC, 2f add %o0, 0x8, %o0 - EX_LD_FP(LOAD(ldd, %o1 + 0x08, %f0)) + EX_LD_FP(LOAD(ldd, %o1 + 0x08, %f0), U3_retl_o2_plus_g2) add %o1, 0x8, %o1 subcc %g2, 0x8, %g2 faligndata %f2, %f0, %f8 - EX_ST_FP(STORE(std, %f8, %o0)) + EX_ST_FP(STORE(std, %f8, %o0), U3_retl_o2_plus_g2_plus_8) bne,pn %XCC, 1b add %o0, 0x8, %o0 @@ -292,30 +370,33 @@ andcc %o2, 0x8, %g0 be,pt %icc, 1f nop - EX_LD(LOAD(ldx, %o1, %o5)) - EX_ST(STORE(stx, %o5, %o1 + %o3)) + EX_LD(LOAD(ldx, %o1, %o5), U3_retl_o2) + EX_ST(STORE(stx, %o5, %o1 + %o3), U3_retl_o2) add %o1, 0x8, %o1 + sub %o2, 8, %o2 1: andcc %o2, 0x4, %g0 be,pt %icc, 1f nop - EX_LD(LOAD(lduw, %o1, %o5)) - EX_ST(STORE(stw, %o5, %o1 + %o3)) + EX_LD(LOAD(lduw, %o1, %o5), U3_retl_o2) + EX_ST(STORE(stw, %o5, %o1 + %o3), U3_retl_o2) add %o1, 0x4, %o1 + sub %o2, 4, %o2 1: andcc %o2, 0x2, %g0 be,pt %icc, 1f nop - EX_LD(LOAD(lduh, %o1, %o5)) - EX_ST(STORE(sth, %o5, %o1 + %o3)) + EX_LD(LOAD(lduh, %o1, %o5), U3_retl_o2) + EX_ST(STORE(sth, %o5, %o1 + %o3), U3_retl_o2) add %o1, 0x2, %o1 + sub %o2, 2, %o2 1: andcc %o2, 0x1, %g0 be,pt %icc, 85f nop - EX_LD(LOAD(ldub, %o1, %o5)) + EX_LD(LOAD(ldub, %o1, %o5), U3_retl_o2) ba,pt %xcc, 85f - EX_ST(STORE(stb, %o5, %o1 + %o3)) + EX_ST(STORE(stb, %o5, %o1 + %o3), U3_retl_o2) .align 64 70: /* 16 < len <= 64 */ @@ -326,26 +407,26 @@ andn %o2, 0xf, GLOBAL_SPARE and %o2, 0xf, %o2 1: subcc GLOBAL_SPARE, 0x10, GLOBAL_SPARE - EX_LD(LOAD(ldx, %o1 + 0x00, %o5)) - EX_LD(LOAD(ldx, %o1 + 0x08, %g1)) - EX_ST(STORE(stx, %o5, %o1 + %o3)) + EX_LD(LOAD(ldx, %o1 + 0x00, %o5), U3_retl_o2_plus_GS_plus_0x10) + EX_LD(LOAD(ldx, %o1 + 0x08, %g1), U3_retl_o2_plus_GS_plus_0x10) + EX_ST(STORE(stx, %o5, %o1 + %o3), U3_retl_o2_plus_GS_plus_0x10) add %o1, 0x8, %o1 - EX_ST(STORE(stx, %g1, %o1 + %o3)) + EX_ST(STORE(stx, %g1, %o1 + %o3), U3_retl_o2_plus_GS_plus_0x08) bgu,pt %XCC, 1b add %o1, 0x8, %o1 73: andcc %o2, 0x8, %g0 be,pt %XCC, 1f nop sub %o2, 0x8, %o2 - EX_LD(LOAD(ldx, %o1, %o5)) - EX_ST(STORE(stx, %o5, %o1 + %o3)) + EX_LD(LOAD(ldx, %o1, %o5), U3_retl_o2_plus_8) + EX_ST(STORE(stx, %o5, %o1 + %o3), U3_retl_o2_plus_8) add %o1, 0x8, %o1 1: andcc %o2, 0x4, %g0 be,pt %XCC, 1f nop sub %o2, 0x4, %o2 - EX_LD(LOAD(lduw, %o1, %o5)) - EX_ST(STORE(stw, %o5, %o1 + %o3)) + EX_LD(LOAD(lduw, %o1, %o5), U3_retl_o2_plus_4) + EX_ST(STORE(stw, %o5, %o1 + %o3), U3_retl_o2_plus_4) add %o1, 0x4, %o1 1: cmp %o2, 0 be,pt %XCC, 85f @@ -361,8 +442,8 @@ sub %o2, %g1, %o2 1: subcc %g1, 1, %g1 - EX_LD(LOAD(ldub, %o1, %o5)) - EX_ST(STORE(stb, %o5, %o1 + %o3)) + EX_LD(LOAD(ldub, %o1, %o5), U3_retl_o2_plus_g1_plus_1) + EX_ST(STORE(stb, %o5, %o1 + %o3), U3_retl_o2_plus_g1_plus_1) bgu,pt %icc, 1b add %o1, 1, %o1 @@ -378,16 +459,16 @@ 8: mov 64, %o3 andn %o1, 0x7, %o1 - EX_LD(LOAD(ldx, %o1, %g2)) + EX_LD(LOAD(ldx, %o1, %g2), U3_retl_o2) sub %o3, %g1, %o3 andn %o2, 0x7, GLOBAL_SPARE sllx %g2, %g1, %g2 -1: EX_LD(LOAD(ldx, %o1 + 0x8, %g3)) +1: EX_LD(LOAD(ldx, %o1 + 0x8, %g3), U3_retl_o2_and_7_plus_GS) subcc GLOBAL_SPARE, 0x8, GLOBAL_SPARE add %o1, 0x8, %o1 srlx %g3, %o3, %o5 or %o5, %g2, %o5 - EX_ST(STORE(stx, %o5, %o0)) + EX_ST(STORE(stx, %o5, %o0), U3_retl_o2_and_7_plus_GS_plus_8) add %o0, 0x8, %o0 bgu,pt %icc, 1b sllx %g3, %g1, %g2 @@ -407,8 +488,8 @@ 1: subcc %o2, 4, %o2 - EX_LD(LOAD(lduw, %o1, %g1)) - EX_ST(STORE(stw, %g1, %o1 + %o3)) + EX_LD(LOAD(lduw, %o1, %g1), U3_retl_o2_plus_4) + EX_ST(STORE(stw, %g1, %o1 + %o3), U3_retl_o2_plus_4) bgu,pt %XCC, 1b add %o1, 4, %o1 @@ -418,8 +499,8 @@ .align 32 90: subcc %o2, 1, %o2 - EX_LD(LOAD(ldub, %o1, %g1)) - EX_ST(STORE(stb, %g1, %o1 + %o3)) + EX_LD(LOAD(ldub, %o1, %g1), U3_retl_o2_plus_1) + EX_ST(STORE(stb, %g1, %o1 + %o3), U3_retl_o2_plus_1) bgu,pt %XCC, 90b add %o1, 1, %o1 retl --- linux-4.8.0.orig/arch/sparc/lib/copy_in_user.S +++ linux-4.8.0/arch/sparc/lib/copy_in_user.S @@ -8,18 +8,33 @@ #define XCC xcc -#define EX(x,y) \ +#define EX(x,y,z) \ 98: x,y; \ .section __ex_table,"a";\ .align 4; \ - .word 98b, __retl_one; \ + .word 98b, z; \ .text; \ .align 4; +#define EX_O4(x,y) EX(x,y,__retl_o4_plus_8) +#define EX_O2_4(x,y) EX(x,y,__retl_o2_plus_4) +#define EX_O2_1(x,y) EX(x,y,__retl_o2_plus_1) + .register %g2,#scratch .register %g3,#scratch .text +__retl_o4_plus_8: + add %o4, %o2, %o4 + retl + add %o4, 8, %o0 +__retl_o2_plus_4: + retl + add %o2, 4, %o0 +__retl_o2_plus_1: + retl + add %o2, 1, %o0 + .align 32 /* Don't try to get too fancy here, just nice and @@ -44,8 +59,8 @@ andn %o2, 0x7, %o4 and %o2, 0x7, %o2 1: subcc %o4, 0x8, %o4 - EX(ldxa [%o1] %asi, %o5) - EX(stxa %o5, [%o0] %asi) + EX_O4(ldxa [%o1] %asi, %o5) + EX_O4(stxa %o5, [%o0] %asi) add %o1, 0x8, %o1 bgu,pt %XCC, 1b add %o0, 0x8, %o0 @@ -53,8 +68,8 @@ be,pt %XCC, 1f nop sub %o2, 0x4, %o2 - EX(lduwa [%o1] %asi, %o5) - EX(stwa %o5, [%o0] %asi) + EX_O2_4(lduwa [%o1] %asi, %o5) + EX_O2_4(stwa %o5, [%o0] %asi) add %o1, 0x4, %o1 add %o0, 0x4, %o0 1: cmp %o2, 0 @@ -70,8 +85,8 @@ 82: subcc %o2, 4, %o2 - EX(lduwa [%o1] %asi, %g1) - EX(stwa %g1, [%o0] %asi) + EX_O2_4(lduwa [%o1] %asi, %g1) + EX_O2_4(stwa %g1, [%o0] %asi) add %o1, 4, %o1 bgu,pt %XCC, 82b add %o0, 4, %o0 @@ -82,8 +97,8 @@ .align 32 90: subcc %o2, 1, %o2 - EX(lduba [%o1] %asi, %g1) - EX(stba %g1, [%o0] %asi) + EX_O2_1(lduba [%o1] %asi, %g1) + EX_O2_1(stba %g1, [%o0] %asi) add %o1, 1, %o1 bgu,pt %XCC, 90b add %o0, 1, %o0 --- linux-4.8.0.orig/arch/sparc/mm/hugetlbpage.c +++ linux-4.8.0/arch/sparc/mm/hugetlbpage.c @@ -116,7 +116,7 @@ addr = ALIGN(addr, HPAGE_SIZE); vma = find_vma(mm, addr); if (task_size - len >= addr && - (!vma || addr + len <= vma->vm_start)) + (!vma || addr + len <= vm_start_gap(vma))) return addr; } if (mm->get_unmapped_area == arch_get_unmapped_area) --- linux-4.8.0.orig/arch/sparc/mm/init_64.c +++ linux-4.8.0/arch/sparc/mm/init_64.c @@ -802,8 +802,10 @@ }; static struct mdesc_mblock *mblocks; static int num_mblocks; +static int find_numa_node_for_addr(unsigned long pa, + struct node_mem_mask *pnode_mask); -static unsigned long ra_to_pa(unsigned long addr) +static unsigned long __init ra_to_pa(unsigned long addr) { int i; @@ -819,8 +821,11 @@ return addr; } -static int find_node(unsigned long addr) +static int __init find_node(unsigned long addr) { + static bool search_mdesc = true; + static struct node_mem_mask last_mem_mask = { ~0UL, ~0UL }; + static int last_index; int i; addr = ra_to_pa(addr); @@ -830,13 +835,30 @@ if ((addr & p->mask) == p->val) return i; } - /* The following condition has been observed on LDOM guests.*/ - WARN_ONCE(1, "find_node: A physical address doesn't match a NUMA node" - " rule. Some physical memory will be owned by node 0."); - return 0; + /* The following condition has been observed on LDOM guests because + * node_masks only contains the best latency mask and value. + * LDOM guest's mdesc can contain a single latency group to + * cover multiple address range. Print warning message only if the + * address cannot be found in node_masks nor mdesc. + */ + if ((search_mdesc) && + ((addr & last_mem_mask.mask) != last_mem_mask.val)) { + /* find the available node in the mdesc */ + last_index = find_numa_node_for_addr(addr, &last_mem_mask); + numadbg("find_node: latency group for address 0x%lx is %d\n", + addr, last_index); + if ((last_index < 0) || (last_index >= num_node_masks)) { + /* WARN_ONCE() and use default group 0 */ + WARN_ONCE(1, "find_node: A physical address doesn't match a NUMA node rule. Some physical memory will be owned by node 0."); + search_mdesc = false; + last_index = 0; + } + } + + return last_index; } -static u64 memblock_nid_range(u64 start, u64 end, int *nid) +static u64 __init memblock_nid_range(u64 start, u64 end, int *nid) { *nid = find_node(start); start += PAGE_SIZE; @@ -1160,6 +1182,41 @@ return numa_latency[from][to]; } +static int find_numa_node_for_addr(unsigned long pa, + struct node_mem_mask *pnode_mask) +{ + struct mdesc_handle *md = mdesc_grab(); + u64 node, arc; + int i = 0; + + node = mdesc_node_by_name(md, MDESC_NODE_NULL, "latency-groups"); + if (node == MDESC_NODE_NULL) + goto out; + + mdesc_for_each_node_by_name(md, node, "group") { + mdesc_for_each_arc(arc, md, node, MDESC_ARC_TYPE_FWD) { + u64 target = mdesc_arc_target(md, arc); + struct mdesc_mlgroup *m = find_mlgroup(target); + + if (!m) + continue; + if ((pa & m->mask) == m->match) { + if (pnode_mask) { + pnode_mask->mask = m->mask; + pnode_mask->val = m->match; + } + mdesc_release(md); + return i; + } + } + i++; + } + +out: + mdesc_release(md); + return -1; +} + static int __init find_best_numa_node_for_mlgroup(struct mdesc_mlgroup *grp) { int i; --- linux-4.8.0.orig/arch/sparc/mm/tsb.c +++ linux-4.8.0/arch/sparc/mm/tsb.c @@ -27,6 +27,20 @@ return (tag == (vaddr >> 22)); } +static void flush_tsb_kernel_range_scan(unsigned long start, unsigned long end) +{ + unsigned long idx; + + for (idx = 0; idx < KERNEL_TSB_NENTRIES; idx++) { + struct tsb *ent = &swapper_tsb[idx]; + unsigned long match = idx << 13; + + match |= (ent->tag << 22); + if (match >= start && match < end) + ent->tag = (1UL << TSB_TAG_INVALID_BIT); + } +} + /* TSB flushes need only occur on the processor initiating the address * space modification, not on each cpu the address space has run on. * Only the TLB flush needs that treatment. @@ -36,6 +50,9 @@ { unsigned long v; + if ((end - start) >> PAGE_SHIFT >= 2 * KERNEL_TSB_NENTRIES) + return flush_tsb_kernel_range_scan(start, end); + for (v = start; v < end; v += PAGE_SIZE) { unsigned long hash = tsb_hash(v, PAGE_SHIFT, KERNEL_TSB_NENTRIES); --- linux-4.8.0.orig/arch/sparc/mm/ultra.S +++ linux-4.8.0/arch/sparc/mm/ultra.S @@ -30,7 +30,7 @@ .text .align 32 .globl __flush_tlb_mm -__flush_tlb_mm: /* 18 insns */ +__flush_tlb_mm: /* 19 insns */ /* %o0=(ctx & TAG_CONTEXT_BITS), %o1=SECONDARY_CONTEXT */ ldxa [%o1] ASI_DMMU, %g2 cmp %g2, %o0 @@ -81,7 +81,7 @@ .align 32 .globl __flush_tlb_pending -__flush_tlb_pending: /* 26 insns */ +__flush_tlb_pending: /* 27 insns */ /* %o0 = context, %o1 = nr, %o2 = vaddrs[] */ rdpr %pstate, %g7 sllx %o1, 3, %o1 @@ -113,12 +113,14 @@ .align 32 .globl __flush_tlb_kernel_range -__flush_tlb_kernel_range: /* 16 insns */ +__flush_tlb_kernel_range: /* 31 insns */ /* %o0=start, %o1=end */ cmp %o0, %o1 be,pn %xcc, 2f + sub %o1, %o0, %o3 + srlx %o3, 18, %o4 + brnz,pn %o4, __spitfire_flush_tlb_kernel_range_slow sethi %hi(PAGE_SIZE), %o4 - sub %o1, %o0, %o3 sub %o3, %o4, %o3 or %o0, 0x20, %o0 ! Nucleus 1: stxa %g0, [%o0 + %o3] ASI_DMMU_DEMAP @@ -131,6 +133,41 @@ retl nop nop + nop + nop + nop + nop + nop + nop + nop + nop + nop + nop + nop + nop + nop + +__spitfire_flush_tlb_kernel_range_slow: + mov 63 * 8, %o4 +1: ldxa [%o4] ASI_ITLB_DATA_ACCESS, %o3 + andcc %o3, 0x40, %g0 /* _PAGE_L_4U */ + bne,pn %xcc, 2f + mov TLB_TAG_ACCESS, %o3 + stxa %g0, [%o3] ASI_IMMU + stxa %g0, [%o4] ASI_ITLB_DATA_ACCESS + membar #Sync +2: ldxa [%o4] ASI_DTLB_DATA_ACCESS, %o3 + andcc %o3, 0x40, %g0 + bne,pn %xcc, 2f + mov TLB_TAG_ACCESS, %o3 + stxa %g0, [%o3] ASI_DMMU + stxa %g0, [%o4] ASI_DTLB_DATA_ACCESS + membar #Sync +2: sub %o4, 8, %o4 + brgez,pt %o4, 1b + nop + retl + nop __spitfire_flush_tlb_mm_slow: rdpr %pstate, %g1 @@ -285,6 +322,40 @@ retl wrpr %g7, 0x0, %pstate +__cheetah_flush_tlb_kernel_range: /* 31 insns */ + /* %o0=start, %o1=end */ + cmp %o0, %o1 + be,pn %xcc, 2f + sub %o1, %o0, %o3 + srlx %o3, 18, %o4 + brnz,pn %o4, 3f + sethi %hi(PAGE_SIZE), %o4 + sub %o3, %o4, %o3 + or %o0, 0x20, %o0 ! Nucleus +1: stxa %g0, [%o0 + %o3] ASI_DMMU_DEMAP + stxa %g0, [%o0 + %o3] ASI_IMMU_DEMAP + membar #Sync + brnz,pt %o3, 1b + sub %o3, %o4, %o3 +2: sethi %hi(KERNBASE), %o3 + flush %o3 + retl + nop +3: mov 0x80, %o4 + stxa %g0, [%o4] ASI_DMMU_DEMAP + membar #Sync + stxa %g0, [%o4] ASI_IMMU_DEMAP + membar #Sync + retl + nop + nop + nop + nop + nop + nop + nop + nop + #ifdef DCACHE_ALIASING_POSSIBLE __cheetah_flush_dcache_page: /* 11 insns */ sethi %hi(PAGE_OFFSET), %g1 @@ -309,19 +380,28 @@ ret restore -__hypervisor_flush_tlb_mm: /* 10 insns */ +__hypervisor_flush_tlb_mm: /* 19 insns */ mov %o0, %o2 /* ARG2: mmu context */ mov 0, %o0 /* ARG0: CPU lists unimplemented */ mov 0, %o1 /* ARG1: CPU lists unimplemented */ mov HV_MMU_ALL, %o3 /* ARG3: flags */ mov HV_FAST_MMU_DEMAP_CTX, %o5 ta HV_FAST_TRAP - brnz,pn %o0, __hypervisor_tlb_tl0_error + brnz,pn %o0, 1f mov HV_FAST_MMU_DEMAP_CTX, %o1 retl nop +1: sethi %hi(__hypervisor_tlb_tl0_error), %o5 + jmpl %o5 + %lo(__hypervisor_tlb_tl0_error), %g0 + nop + nop + nop + nop + nop + nop + nop -__hypervisor_flush_tlb_page: /* 11 insns */ +__hypervisor_flush_tlb_page: /* 22 insns */ /* %o0 = context, %o1 = vaddr */ mov %o0, %g2 mov %o1, %o0 /* ARG0: vaddr + IMMU-bit */ @@ -330,12 +410,23 @@ srlx %o0, PAGE_SHIFT, %o0 sllx %o0, PAGE_SHIFT, %o0 ta HV_MMU_UNMAP_ADDR_TRAP - brnz,pn %o0, __hypervisor_tlb_tl0_error + brnz,pn %o0, 1f mov HV_MMU_UNMAP_ADDR_TRAP, %o1 retl nop +1: sethi %hi(__hypervisor_tlb_tl0_error), %o2 + jmpl %o2 + %lo(__hypervisor_tlb_tl0_error), %g0 + nop + nop + nop + nop + nop + nop + nop + nop + nop -__hypervisor_flush_tlb_pending: /* 16 insns */ +__hypervisor_flush_tlb_pending: /* 27 insns */ /* %o0 = context, %o1 = nr, %o2 = vaddrs[] */ sllx %o1, 3, %g1 mov %o2, %g2 @@ -347,31 +438,57 @@ srlx %o0, PAGE_SHIFT, %o0 sllx %o0, PAGE_SHIFT, %o0 ta HV_MMU_UNMAP_ADDR_TRAP - brnz,pn %o0, __hypervisor_tlb_tl0_error + brnz,pn %o0, 1f mov HV_MMU_UNMAP_ADDR_TRAP, %o1 brnz,pt %g1, 1b nop retl nop +1: sethi %hi(__hypervisor_tlb_tl0_error), %o2 + jmpl %o2 + %lo(__hypervisor_tlb_tl0_error), %g0 + nop + nop + nop + nop + nop + nop + nop + nop + nop -__hypervisor_flush_tlb_kernel_range: /* 16 insns */ +__hypervisor_flush_tlb_kernel_range: /* 31 insns */ /* %o0=start, %o1=end */ cmp %o0, %o1 be,pn %xcc, 2f - sethi %hi(PAGE_SIZE), %g3 - mov %o0, %g1 - sub %o1, %g1, %g2 + sub %o1, %o0, %g2 + srlx %g2, 18, %g3 + brnz,pn %g3, 4f + mov %o0, %g1 + sethi %hi(PAGE_SIZE), %g3 sub %g2, %g3, %g2 1: add %g1, %g2, %o0 /* ARG0: virtual address */ mov 0, %o1 /* ARG1: mmu context */ mov HV_MMU_ALL, %o2 /* ARG2: flags */ ta HV_MMU_UNMAP_ADDR_TRAP - brnz,pn %o0, __hypervisor_tlb_tl0_error + brnz,pn %o0, 3f mov HV_MMU_UNMAP_ADDR_TRAP, %o1 brnz,pt %g2, 1b sub %g2, %g3, %g2 2: retl nop +3: sethi %hi(__hypervisor_tlb_tl0_error), %o2 + jmpl %o2 + %lo(__hypervisor_tlb_tl0_error), %g0 + nop +4: mov 0, %o0 /* ARG0: CPU lists unimplemented */ + mov 0, %o1 /* ARG1: CPU lists unimplemented */ + mov 0, %o2 /* ARG2: mmu context == nucleus */ + mov HV_MMU_ALL, %o3 /* ARG3: flags */ + mov HV_FAST_MMU_DEMAP_CTX, %o5 + ta HV_FAST_TRAP + brnz,pn %o0, 3b + mov HV_FAST_MMU_DEMAP_CTX, %o1 + retl + nop #ifdef DCACHE_ALIASING_POSSIBLE /* XXX Niagara and friends have an 8K cache, so no aliasing is @@ -394,43 +511,6 @@ retl nop - .globl cheetah_patch_cachetlbops -cheetah_patch_cachetlbops: - save %sp, -128, %sp - - sethi %hi(__flush_tlb_mm), %o0 - or %o0, %lo(__flush_tlb_mm), %o0 - sethi %hi(__cheetah_flush_tlb_mm), %o1 - or %o1, %lo(__cheetah_flush_tlb_mm), %o1 - call tlb_patch_one - mov 19, %o2 - - sethi %hi(__flush_tlb_page), %o0 - or %o0, %lo(__flush_tlb_page), %o0 - sethi %hi(__cheetah_flush_tlb_page), %o1 - or %o1, %lo(__cheetah_flush_tlb_page), %o1 - call tlb_patch_one - mov 22, %o2 - - sethi %hi(__flush_tlb_pending), %o0 - or %o0, %lo(__flush_tlb_pending), %o0 - sethi %hi(__cheetah_flush_tlb_pending), %o1 - or %o1, %lo(__cheetah_flush_tlb_pending), %o1 - call tlb_patch_one - mov 27, %o2 - -#ifdef DCACHE_ALIASING_POSSIBLE - sethi %hi(__flush_dcache_page), %o0 - or %o0, %lo(__flush_dcache_page), %o0 - sethi %hi(__cheetah_flush_dcache_page), %o1 - or %o1, %lo(__cheetah_flush_dcache_page), %o1 - call tlb_patch_one - mov 11, %o2 -#endif /* DCACHE_ALIASING_POSSIBLE */ - - ret - restore - #ifdef CONFIG_SMP /* These are all called by the slaves of a cross call, at * trap level 1, with interrupts fully disabled. @@ -447,7 +527,7 @@ */ .align 32 .globl xcall_flush_tlb_mm -xcall_flush_tlb_mm: /* 21 insns */ +xcall_flush_tlb_mm: /* 24 insns */ mov PRIMARY_CONTEXT, %g2 ldxa [%g2] ASI_DMMU, %g3 srlx %g3, CTX_PGSZ1_NUC_SHIFT, %g4 @@ -469,9 +549,12 @@ nop nop nop + nop + nop + nop .globl xcall_flush_tlb_page -xcall_flush_tlb_page: /* 17 insns */ +xcall_flush_tlb_page: /* 20 insns */ /* %g5=context, %g1=vaddr */ mov PRIMARY_CONTEXT, %g4 ldxa [%g4] ASI_DMMU, %g2 @@ -490,15 +573,20 @@ retry nop nop + nop + nop + nop .globl xcall_flush_tlb_kernel_range -xcall_flush_tlb_kernel_range: /* 25 insns */ +xcall_flush_tlb_kernel_range: /* 44 insns */ sethi %hi(PAGE_SIZE - 1), %g2 or %g2, %lo(PAGE_SIZE - 1), %g2 andn %g1, %g2, %g1 andn %g7, %g2, %g7 sub %g7, %g1, %g3 - add %g2, 1, %g2 + srlx %g3, 18, %g2 + brnz,pn %g2, 2f + add %g2, 1, %g2 sub %g3, %g2, %g3 or %g1, 0x20, %g1 ! Nucleus 1: stxa %g0, [%g1 + %g3] ASI_DMMU_DEMAP @@ -507,8 +595,25 @@ brnz,pt %g3, 1b sub %g3, %g2, %g3 retry - nop - nop +2: mov 63 * 8, %g1 +1: ldxa [%g1] ASI_ITLB_DATA_ACCESS, %g2 + andcc %g2, 0x40, %g0 /* _PAGE_L_4U */ + bne,pn %xcc, 2f + mov TLB_TAG_ACCESS, %g2 + stxa %g0, [%g2] ASI_IMMU + stxa %g0, [%g1] ASI_ITLB_DATA_ACCESS + membar #Sync +2: ldxa [%g1] ASI_DTLB_DATA_ACCESS, %g2 + andcc %g2, 0x40, %g0 + bne,pn %xcc, 2f + mov TLB_TAG_ACCESS, %g2 + stxa %g0, [%g2] ASI_DMMU + stxa %g0, [%g1] ASI_DTLB_DATA_ACCESS + membar #Sync +2: sub %g1, 8, %g1 + brgez,pt %g1, 1b + nop + retry nop nop nop @@ -637,6 +742,52 @@ retry +__cheetah_xcall_flush_tlb_kernel_range: /* 44 insns */ + sethi %hi(PAGE_SIZE - 1), %g2 + or %g2, %lo(PAGE_SIZE - 1), %g2 + andn %g1, %g2, %g1 + andn %g7, %g2, %g7 + sub %g7, %g1, %g3 + srlx %g3, 18, %g2 + brnz,pn %g2, 2f + add %g2, 1, %g2 + sub %g3, %g2, %g3 + or %g1, 0x20, %g1 ! Nucleus +1: stxa %g0, [%g1 + %g3] ASI_DMMU_DEMAP + stxa %g0, [%g1 + %g3] ASI_IMMU_DEMAP + membar #Sync + brnz,pt %g3, 1b + sub %g3, %g2, %g3 + retry +2: mov 0x80, %g2 + stxa %g0, [%g2] ASI_DMMU_DEMAP + membar #Sync + stxa %g0, [%g2] ASI_IMMU_DEMAP + membar #Sync + retry + nop + nop + nop + nop + nop + nop + nop + nop + nop + nop + nop + nop + nop + nop + nop + nop + nop + nop + nop + nop + nop + nop + #ifdef DCACHE_ALIASING_POSSIBLE .align 32 .globl xcall_flush_dcache_page_cheetah @@ -700,7 +851,7 @@ ba,a,pt %xcc, rtrap .globl __hypervisor_xcall_flush_tlb_mm -__hypervisor_xcall_flush_tlb_mm: /* 21 insns */ +__hypervisor_xcall_flush_tlb_mm: /* 24 insns */ /* %g5=ctx, g1,g2,g3,g4,g7=scratch, %g6=unusable */ mov %o0, %g2 mov %o1, %g3 @@ -714,7 +865,7 @@ mov HV_FAST_MMU_DEMAP_CTX, %o5 ta HV_FAST_TRAP mov HV_FAST_MMU_DEMAP_CTX, %g6 - brnz,pn %o0, __hypervisor_tlb_xcall_error + brnz,pn %o0, 1f mov %o0, %g5 mov %g2, %o0 mov %g3, %o1 @@ -723,9 +874,12 @@ mov %g7, %o5 membar #Sync retry +1: sethi %hi(__hypervisor_tlb_xcall_error), %g4 + jmpl %g4 + %lo(__hypervisor_tlb_xcall_error), %g0 + nop .globl __hypervisor_xcall_flush_tlb_page -__hypervisor_xcall_flush_tlb_page: /* 17 insns */ +__hypervisor_xcall_flush_tlb_page: /* 20 insns */ /* %g5=ctx, %g1=vaddr */ mov %o0, %g2 mov %o1, %g3 @@ -737,42 +891,64 @@ sllx %o0, PAGE_SHIFT, %o0 ta HV_MMU_UNMAP_ADDR_TRAP mov HV_MMU_UNMAP_ADDR_TRAP, %g6 - brnz,a,pn %o0, __hypervisor_tlb_xcall_error + brnz,a,pn %o0, 1f mov %o0, %g5 mov %g2, %o0 mov %g3, %o1 mov %g4, %o2 membar #Sync retry +1: sethi %hi(__hypervisor_tlb_xcall_error), %g4 + jmpl %g4 + %lo(__hypervisor_tlb_xcall_error), %g0 + nop .globl __hypervisor_xcall_flush_tlb_kernel_range -__hypervisor_xcall_flush_tlb_kernel_range: /* 25 insns */ +__hypervisor_xcall_flush_tlb_kernel_range: /* 44 insns */ /* %g1=start, %g7=end, g2,g3,g4,g5,g6=scratch */ sethi %hi(PAGE_SIZE - 1), %g2 or %g2, %lo(PAGE_SIZE - 1), %g2 andn %g1, %g2, %g1 andn %g7, %g2, %g7 sub %g7, %g1, %g3 + srlx %g3, 18, %g7 add %g2, 1, %g2 sub %g3, %g2, %g3 mov %o0, %g2 mov %o1, %g4 - mov %o2, %g7 + brnz,pn %g7, 2f + mov %o2, %g7 1: add %g1, %g3, %o0 /* ARG0: virtual address */ mov 0, %o1 /* ARG1: mmu context */ mov HV_MMU_ALL, %o2 /* ARG2: flags */ ta HV_MMU_UNMAP_ADDR_TRAP mov HV_MMU_UNMAP_ADDR_TRAP, %g6 - brnz,pn %o0, __hypervisor_tlb_xcall_error + brnz,pn %o0, 1f mov %o0, %g5 sethi %hi(PAGE_SIZE), %o2 brnz,pt %g3, 1b sub %g3, %o2, %g3 - mov %g2, %o0 +5: mov %g2, %o0 mov %g4, %o1 mov %g7, %o2 membar #Sync retry +1: sethi %hi(__hypervisor_tlb_xcall_error), %g4 + jmpl %g4 + %lo(__hypervisor_tlb_xcall_error), %g0 + nop +2: mov %o3, %g1 + mov %o5, %g3 + mov 0, %o0 /* ARG0: CPU lists unimplemented */ + mov 0, %o1 /* ARG1: CPU lists unimplemented */ + mov 0, %o2 /* ARG2: mmu context == nucleus */ + mov HV_MMU_ALL, %o3 /* ARG3: flags */ + mov HV_FAST_MMU_DEMAP_CTX, %o5 + ta HV_FAST_TRAP + mov %g1, %o3 + brz,pt %o0, 5b + mov %g3, %o5 + mov HV_FAST_MMU_DEMAP_CTX, %g6 + ba,pt %xcc, 1b + clr %g5 /* These just get rescheduled to PIL vectors. */ .globl xcall_call_function @@ -809,6 +985,58 @@ #endif /* CONFIG_SMP */ + .globl cheetah_patch_cachetlbops +cheetah_patch_cachetlbops: + save %sp, -128, %sp + + sethi %hi(__flush_tlb_mm), %o0 + or %o0, %lo(__flush_tlb_mm), %o0 + sethi %hi(__cheetah_flush_tlb_mm), %o1 + or %o1, %lo(__cheetah_flush_tlb_mm), %o1 + call tlb_patch_one + mov 19, %o2 + + sethi %hi(__flush_tlb_page), %o0 + or %o0, %lo(__flush_tlb_page), %o0 + sethi %hi(__cheetah_flush_tlb_page), %o1 + or %o1, %lo(__cheetah_flush_tlb_page), %o1 + call tlb_patch_one + mov 22, %o2 + + sethi %hi(__flush_tlb_pending), %o0 + or %o0, %lo(__flush_tlb_pending), %o0 + sethi %hi(__cheetah_flush_tlb_pending), %o1 + or %o1, %lo(__cheetah_flush_tlb_pending), %o1 + call tlb_patch_one + mov 27, %o2 + + sethi %hi(__flush_tlb_kernel_range), %o0 + or %o0, %lo(__flush_tlb_kernel_range), %o0 + sethi %hi(__cheetah_flush_tlb_kernel_range), %o1 + or %o1, %lo(__cheetah_flush_tlb_kernel_range), %o1 + call tlb_patch_one + mov 31, %o2 + +#ifdef DCACHE_ALIASING_POSSIBLE + sethi %hi(__flush_dcache_page), %o0 + or %o0, %lo(__flush_dcache_page), %o0 + sethi %hi(__cheetah_flush_dcache_page), %o1 + or %o1, %lo(__cheetah_flush_dcache_page), %o1 + call tlb_patch_one + mov 11, %o2 +#endif /* DCACHE_ALIASING_POSSIBLE */ + +#ifdef CONFIG_SMP + sethi %hi(xcall_flush_tlb_kernel_range), %o0 + or %o0, %lo(xcall_flush_tlb_kernel_range), %o0 + sethi %hi(__cheetah_xcall_flush_tlb_kernel_range), %o1 + or %o1, %lo(__cheetah_xcall_flush_tlb_kernel_range), %o1 + call tlb_patch_one + mov 44, %o2 +#endif /* CONFIG_SMP */ + + ret + restore .globl hypervisor_patch_cachetlbops hypervisor_patch_cachetlbops: @@ -819,28 +1047,28 @@ sethi %hi(__hypervisor_flush_tlb_mm), %o1 or %o1, %lo(__hypervisor_flush_tlb_mm), %o1 call tlb_patch_one - mov 10, %o2 + mov 19, %o2 sethi %hi(__flush_tlb_page), %o0 or %o0, %lo(__flush_tlb_page), %o0 sethi %hi(__hypervisor_flush_tlb_page), %o1 or %o1, %lo(__hypervisor_flush_tlb_page), %o1 call tlb_patch_one - mov 11, %o2 + mov 22, %o2 sethi %hi(__flush_tlb_pending), %o0 or %o0, %lo(__flush_tlb_pending), %o0 sethi %hi(__hypervisor_flush_tlb_pending), %o1 or %o1, %lo(__hypervisor_flush_tlb_pending), %o1 call tlb_patch_one - mov 16, %o2 + mov 27, %o2 sethi %hi(__flush_tlb_kernel_range), %o0 or %o0, %lo(__flush_tlb_kernel_range), %o0 sethi %hi(__hypervisor_flush_tlb_kernel_range), %o1 or %o1, %lo(__hypervisor_flush_tlb_kernel_range), %o1 call tlb_patch_one - mov 16, %o2 + mov 31, %o2 #ifdef DCACHE_ALIASING_POSSIBLE sethi %hi(__flush_dcache_page), %o0 @@ -857,21 +1085,21 @@ sethi %hi(__hypervisor_xcall_flush_tlb_mm), %o1 or %o1, %lo(__hypervisor_xcall_flush_tlb_mm), %o1 call tlb_patch_one - mov 21, %o2 + mov 24, %o2 sethi %hi(xcall_flush_tlb_page), %o0 or %o0, %lo(xcall_flush_tlb_page), %o0 sethi %hi(__hypervisor_xcall_flush_tlb_page), %o1 or %o1, %lo(__hypervisor_xcall_flush_tlb_page), %o1 call tlb_patch_one - mov 17, %o2 + mov 20, %o2 sethi %hi(xcall_flush_tlb_kernel_range), %o0 or %o0, %lo(xcall_flush_tlb_kernel_range), %o0 sethi %hi(__hypervisor_xcall_flush_tlb_kernel_range), %o1 or %o1, %lo(__hypervisor_xcall_flush_tlb_kernel_range), %o1 call tlb_patch_one - mov 25, %o2 + mov 44, %o2 #endif /* CONFIG_SMP */ ret --- linux-4.8.0.orig/arch/tile/kernel/time.c +++ linux-4.8.0/arch/tile/kernel/time.c @@ -218,8 +218,8 @@ */ unsigned long long sched_clock(void) { - return clocksource_cyc2ns(get_cycles(), - sched_clock_mult, SCHED_CLOCK_SHIFT); + return mult_frac(get_cycles(), + sched_clock_mult, 1ULL << SCHED_CLOCK_SHIFT); } int setup_profiling_timer(unsigned int multiplier) --- linux-4.8.0.orig/arch/tile/mm/hugetlbpage.c +++ linux-4.8.0/arch/tile/mm/hugetlbpage.c @@ -232,7 +232,7 @@ addr = ALIGN(addr, huge_page_size(h)); vma = find_vma(mm, addr); if (TASK_SIZE - len >= addr && - (!vma || addr + len <= vma->vm_start)) + (!vma || addr + len <= vm_start_gap(vma))) return addr; } if (current->mm->get_unmapped_area == arch_get_unmapped_area) --- linux-4.8.0.orig/arch/um/include/asm/tlb.h +++ linux-4.8.0/arch/um/include/asm/tlb.h @@ -141,6 +141,15 @@ __tlb_remove_tlb_entry(tlb, ptep, address); \ } while (0) +#define tlb_remove_huge_tlb_entry(h, tlb, ptep, address) \ + tlb_remove_tlb_entry(tlb, ptep, address) + +#define tlb_remove_check_page_size_change tlb_remove_check_page_size_change +static inline void tlb_remove_check_page_size_change(struct mmu_gather *tlb, + unsigned int page_size) +{ +} + #define pte_free_tlb(tlb, ptep, addr) __pte_free_tlb(tlb, ptep, addr) #define pud_free_tlb(tlb, pudp, addr) __pud_free_tlb(tlb, pudp, addr) --- linux-4.8.0.orig/arch/x86/Kbuild +++ linux-4.8.0/arch/x86/Kbuild @@ -7,6 +7,9 @@ # Xen paravirtualization support obj-$(CONFIG_XEN) += xen/ +# Hyper-V paravirtualization support +obj-$(CONFIG_HYPERVISOR_GUEST) += hyperv/ + # lguest paravirtualization support obj-$(CONFIG_LGUEST_GUEST) += lguest/ --- linux-4.8.0.orig/arch/x86/Kconfig +++ linux-4.8.0/arch/x86/Kconfig @@ -1774,6 +1774,17 @@ If unsure, say N. +config EFI_SECURE_BOOT_SIG_ENFORCE + def_bool n + depends on EFI + prompt "Force module signing when UEFI Secure Boot is enabled" + ---help--- + UEFI Secure Boot provides a mechanism for ensuring that the + firmware will only load signed bootloaders and kernels. Certain + use cases may also require that all kernel modules also be signed. + Say Y here to automatically enable module signature enforcement + when a system boots with UEFI Secure Boot enabled. + config SECCOMP def_bool y prompt "Enable seccomp to safely compute untrusted bytecode" @@ -2762,6 +2773,8 @@ source "drivers/Kconfig" +source "ubuntu/Kconfig" + source "drivers/firmware/Kconfig" source "fs/Kconfig" --- linux-4.8.0.orig/arch/x86/boot/compressed/eboot.c +++ linux-4.8.0/arch/x86/boot/compressed/eboot.c @@ -12,6 +12,7 @@ #include #include #include +#include #include "../string.h" #include "eboot.h" @@ -571,6 +572,86 @@ efi_call_early(free_pool, pci_handle); } +static int get_secure_boot(void) +{ + u8 sb, setup, moksbstate; + unsigned long datasize = sizeof(sb); + u32 attr; + efi_guid_t var_guid = EFI_GLOBAL_VARIABLE_GUID; + efi_status_t status; + + status = efi_early->call((unsigned long)sys_table->runtime->get_variable, + L"SecureBoot", &var_guid, NULL, &datasize, &sb); + + if (status != EFI_SUCCESS) + return 0; + + if (sb == 0) + return 0; + + + status = efi_early->call((unsigned long)sys_table->runtime->get_variable, + L"SetupMode", &var_guid, NULL, &datasize, + &setup); + + if (status != EFI_SUCCESS) + return 0; + + if (setup == 1) + return 0; + + /* See if a user has put shim into insecure_mode. If so, and the variable + * doesn't have the runtime attribute set, we might as well honor that. + */ + var_guid = EFI_SHIM_LOCK_GUID; + status = efi_early->call((unsigned long)sys_table->runtime->get_variable, + L"MokSBState", &var_guid, &attr, &datasize, + &moksbstate); + + /* If it fails, we don't care why. Default to secure */ + if (status != EFI_SUCCESS) + return EFI_SECURE_BOOT; + + if (!(attr & EFI_VARIABLE_RUNTIME_ACCESS)) { + if (moksbstate == 1) { + return EFI_MOKSBSTATE_DISABLED; + } + } + + return EFI_SECURE_BOOT; +} + + +/* + * See if we have Graphics Output Protocol + */ +static efi_status_t setup_gop(struct screen_info *si, efi_guid_t *proto, + unsigned long size) +{ + efi_status_t status; + void **gop_handle = NULL; + + status = efi_call_early(allocate_pool, EFI_LOADER_DATA, + size, (void **)&gop_handle); + if (status != EFI_SUCCESS) + return status; + + status = efi_call_early(locate_handle, + EFI_LOCATE_BY_PROTOCOL, + proto, NULL, &size, gop_handle); + if (status != EFI_SUCCESS) + goto free_handle; + + if (efi_early->is64) + status = setup_gop64(si, proto, size, gop_handle); + else + status = setup_gop32(si, proto, size, gop_handle); + +free_handle: + efi_call_early(free_pool, gop_handle); + return status; +} + static efi_status_t setup_uga32(void **uga_handle, unsigned long size, u32 *width, u32 *height) { @@ -1128,6 +1209,10 @@ else setup_boot_services32(efi_early); + sanitize_boot_params(boot_params); + + boot_params->secure_boot = get_secure_boot(); + setup_graphics(boot_params); setup_efi_pci(boot_params); --- linux-4.8.0.orig/arch/x86/entry/Makefile +++ linux-4.8.0/arch/x86/entry/Makefile @@ -5,8 +5,8 @@ OBJECT_FILES_NON_STANDARD_entry_$(BITS).o := y OBJECT_FILES_NON_STANDARD_entry_64_compat.o := y -CFLAGS_syscall_64.o += -Wno-override-init -CFLAGS_syscall_32.o += -Wno-override-init +CFLAGS_syscall_64.o += $(call cc-option,-Wno-override-init,) +CFLAGS_syscall_32.o += $(call cc-option,-Wno-override-init,) obj-y := entry_$(BITS).o thunk_$(BITS).o syscall_$(BITS).o obj-y += common.o --- linux-4.8.0.orig/arch/x86/entry/entry_32.S +++ linux-4.8.0/arch/x86/entry/entry_32.S @@ -852,8 +852,8 @@ jmp ftrace_stub #endif -.globl ftrace_stub -ftrace_stub: +/* This is weak to keep gas from relaxing the jumps */ +WEAK(ftrace_stub) ret END(ftrace_caller) --- linux-4.8.0.orig/arch/x86/entry/syscalls/syscall_32.tbl +++ linux-4.8.0/arch/x86/entry/syscalls/syscall_32.tbl @@ -386,3 +386,8 @@ 377 i386 copy_file_range sys_copy_file_range 378 i386 preadv2 sys_preadv2 compat_sys_preadv2 379 i386 pwritev2 sys_pwritev2 compat_sys_pwritev2 +380 i386 pkey_mprotect sys_pkey_mprotect +381 i386 pkey_alloc sys_pkey_alloc +382 i386 pkey_free sys_pkey_free +#383 i386 pkey_get sys_pkey_get +#384 i386 pkey_set sys_pkey_set --- linux-4.8.0.orig/arch/x86/entry/syscalls/syscall_64.tbl +++ linux-4.8.0/arch/x86/entry/syscalls/syscall_64.tbl @@ -335,6 +335,11 @@ 326 common copy_file_range sys_copy_file_range 327 64 preadv2 sys_preadv2 328 64 pwritev2 sys_pwritev2 +329 common pkey_mprotect sys_pkey_mprotect +330 common pkey_alloc sys_pkey_alloc +331 common pkey_free sys_pkey_free +#332 common pkey_get sys_pkey_get +#333 common pkey_set sys_pkey_set # # x32-specific system call numbers start at 512 to avoid cache impact --- linux-4.8.0.orig/arch/x86/events/core.c +++ linux-4.8.0/arch/x86/events/core.c @@ -68,7 +68,7 @@ int shift = 64 - x86_pmu.cntval_bits; u64 prev_raw_count, new_raw_count; int idx = hwc->idx; - s64 delta; + u64 delta; if (idx == INTEL_PMC_IDX_FIXED_BTS) return 0; @@ -364,7 +364,11 @@ { int i; - if (x86_pmu.lbr_pt_coexist) + /* + * When lbr_pt_coexist we allow PT to coexist with either LBR or BTS. + * LBR and BTS are still mutually exclusive. + */ + if (x86_pmu.lbr_pt_coexist && what == x86_lbr_exclusive_pt) return 0; if (!atomic_inc_not_zero(&x86_pmu.lbr_exclusive[what])) { @@ -387,7 +391,7 @@ void x86_del_exclusive(unsigned int what) { - if (x86_pmu.lbr_pt_coexist) + if (x86_pmu.lbr_pt_coexist && what == x86_lbr_exclusive_pt) return; atomic_dec(&x86_pmu.lbr_exclusive[what]); @@ -2344,7 +2348,7 @@ frame.next_frame = 0; frame.return_address = 0; - if (!access_ok(VERIFY_READ, fp, 8)) + if (!valid_user_frame(fp, sizeof(frame))) break; bytes = __copy_from_user_nmi(&frame.next_frame, fp, 4); @@ -2354,9 +2358,6 @@ if (bytes != 0) break; - if (!valid_user_frame(fp, sizeof(frame))) - break; - perf_callchain_store(entry, cs_base + frame.return_address); fp = compat_ptr(ss_base + frame.next_frame); } @@ -2405,7 +2406,7 @@ frame.next_frame = NULL; frame.return_address = 0; - if (!access_ok(VERIFY_READ, fp, sizeof(*fp) * 2)) + if (!valid_user_frame(fp, sizeof(frame))) break; bytes = __copy_from_user_nmi(&frame.next_frame, fp, sizeof(*fp)); @@ -2415,9 +2416,6 @@ if (bytes != 0) break; - if (!valid_user_frame(fp, sizeof(frame))) - break; - perf_callchain_store(entry, frame.return_address); fp = (void __user *)frame.next_frame; } --- linux-4.8.0.orig/arch/x86/events/intel/core.c +++ linux-4.8.0/arch/x86/events/intel/core.c @@ -3893,6 +3893,7 @@ break; case INTEL_FAM6_XEON_PHI_KNL: + case INTEL_FAM6_XEON_PHI_KNM: memcpy(hw_cache_event_ids, slm_hw_cache_event_ids, sizeof(hw_cache_event_ids)); memcpy(hw_cache_extra_regs, @@ -3907,7 +3908,7 @@ x86_pmu.flags |= PMU_FL_HAS_RSP_1; x86_pmu.flags |= PMU_FL_NO_HT_SHARING; - pr_cont("Knights Landing events, "); + pr_cont("Knights Landing/Mill events, "); break; case INTEL_FAM6_SKYLAKE_MOBILE: @@ -4024,7 +4025,7 @@ /* Support full width counters using alternative MSR range */ if (x86_pmu.intel_cap.full_width_write) { - x86_pmu.max_period = x86_pmu.cntval_mask; + x86_pmu.max_period = x86_pmu.cntval_mask >> 1; x86_pmu.perfctr = MSR_IA32_PMC0; pr_cont("full-width counters, "); } --- linux-4.8.0.orig/arch/x86/events/intel/cstate.c +++ linux-4.8.0/arch/x86/events/intel/cstate.c @@ -571,6 +571,9 @@ static inline void cstate_cleanup(void) { + cpuhp_remove_state_nocalls(CPUHP_AP_PERF_X86_CSTATE_ONLINE); + cpuhp_remove_state_nocalls(CPUHP_AP_PERF_X86_CSTATE_STARTING); + if (has_cstate_core) perf_pmu_unregister(&cstate_core_pmu); @@ -583,16 +586,16 @@ int err; cpuhp_setup_state(CPUHP_AP_PERF_X86_CSTATE_STARTING, - "AP_PERF_X86_CSTATE_STARTING", cstate_cpu_init, - NULL); + "perf/x86/cstate:starting", cstate_cpu_init, NULL); cpuhp_setup_state(CPUHP_AP_PERF_X86_CSTATE_ONLINE, - "AP_PERF_X86_CSTATE_ONLINE", NULL, cstate_cpu_exit); + "perf/x86/cstate:online", NULL, cstate_cpu_exit); if (has_cstate_core) { err = perf_pmu_register(&cstate_core_pmu, cstate_core_pmu.name, -1); if (err) { has_cstate_core = false; pr_info("Failed to register cstate core pmu\n"); + cstate_cleanup(); return err; } } @@ -606,8 +609,7 @@ return err; } } - - return err; + return 0; } static int __init cstate_pmu_init(void) @@ -632,8 +634,6 @@ static void __exit cstate_pmu_exit(void) { - cpuhp_remove_state_nocalls(CPUHP_AP_PERF_X86_CSTATE_ONLINE); - cpuhp_remove_state_nocalls(CPUHP_AP_PERF_X86_CSTATE_STARTING); cstate_cleanup(); } module_exit(cstate_pmu_exit); --- linux-4.8.0.orig/arch/x86/events/intel/ds.c +++ linux-4.8.0/arch/x86/events/intel/ds.c @@ -1070,20 +1070,20 @@ } /* - * We use the interrupt regs as a base because the PEBS record - * does not contain a full regs set, specifically it seems to - * lack segment descriptors, which get used by things like - * user_mode(). + * We use the interrupt regs as a base because the PEBS record does not + * contain a full regs set, specifically it seems to lack segment + * descriptors, which get used by things like user_mode(). * - * In the simple case fix up only the IP and BP,SP regs, for - * PERF_SAMPLE_IP and PERF_SAMPLE_CALLCHAIN to function properly. - * A possible PERF_SAMPLE_REGS will have to transfer all regs. + * In the simple case fix up only the IP for PERF_SAMPLE_IP. + * + * We must however always use BP,SP from iregs for the unwinder to stay + * sane; the record BP,SP can point into thin air when the record is + * from a previous PMI context or an (I)RET happend between the record + * and PMI. */ *regs = *iregs; regs->flags = pebs->flags; set_linear_ip(regs, pebs->ip); - regs->bp = pebs->bp; - regs->sp = pebs->sp; if (sample_type & PERF_SAMPLE_REGS_INTR) { regs->ax = pebs->ax; @@ -1092,10 +1092,21 @@ regs->dx = pebs->dx; regs->si = pebs->si; regs->di = pebs->di; - regs->bp = pebs->bp; - regs->sp = pebs->sp; - regs->flags = pebs->flags; + /* + * Per the above; only set BP,SP if we don't need callchains. + * + * XXX: does this make sense? + */ + if (!(sample_type & PERF_SAMPLE_CALLCHAIN)) { + regs->bp = pebs->bp; + regs->sp = pebs->sp; + } + + /* + * Preserve PERF_EFLAGS_VM from set_linear_ip(). + */ + regs->flags = pebs->flags | (regs->flags & PERF_EFLAGS_VM); #ifndef CONFIG_X86_32 regs->r8 = pebs->r8; regs->r9 = pebs->r9; --- linux-4.8.0.orig/arch/x86/events/intel/rapl.c +++ linux-4.8.0/arch/x86/events/intel/rapl.c @@ -761,6 +761,7 @@ X86_RAPL_MODEL_MATCH(INTEL_FAM6_BROADWELL_XEON_D, hsw_rapl_init), X86_RAPL_MODEL_MATCH(INTEL_FAM6_XEON_PHI_KNL, knl_rapl_init), + X86_RAPL_MODEL_MATCH(INTEL_FAM6_XEON_PHI_KNM, knl_rapl_init), X86_RAPL_MODEL_MATCH(INTEL_FAM6_SKYLAKE_MOBILE, skl_rapl_init), X86_RAPL_MODEL_MATCH(INTEL_FAM6_SKYLAKE_DESKTOP, skl_rapl_init), --- linux-4.8.0.orig/arch/x86/events/intel/uncore.c +++ linux-4.8.0/arch/x86/events/intel/uncore.c @@ -683,7 +683,8 @@ /* fixed counters have event field hardcoded to zero */ hwc->config = 0ULL; } else { - hwc->config = event->attr.config & pmu->type->event_mask; + hwc->config = event->attr.config & + (pmu->type->event_mask | ((u64)pmu->type->event_mask_ext << 32)); if (pmu->type->ops->hw_config) { ret = pmu->type->ops->hw_config(box, event); if (ret) @@ -1321,6 +1322,11 @@ .pci_init = skl_uncore_pci_init, }; +static const struct intel_uncore_init_fun skx_uncore_init __initconst = { + .cpu_init = skx_uncore_cpu_init, + .pci_init = skx_uncore_pci_init, +}; + static const struct x86_cpu_id intel_uncore_match[] __initconst = { X86_UNCORE_MODEL_MATCH(INTEL_FAM6_NEHALEM_EP, nhm_uncore_init), X86_UNCORE_MODEL_MATCH(INTEL_FAM6_NEHALEM, nhm_uncore_init), @@ -1341,8 +1347,10 @@ X86_UNCORE_MODEL_MATCH(INTEL_FAM6_BROADWELL_X, bdx_uncore_init), X86_UNCORE_MODEL_MATCH(INTEL_FAM6_BROADWELL_XEON_D, bdx_uncore_init), X86_UNCORE_MODEL_MATCH(INTEL_FAM6_XEON_PHI_KNL, knl_uncore_init), + X86_UNCORE_MODEL_MATCH(INTEL_FAM6_XEON_PHI_KNM, knl_uncore_init), X86_UNCORE_MODEL_MATCH(INTEL_FAM6_SKYLAKE_DESKTOP,skl_uncore_init), X86_UNCORE_MODEL_MATCH(INTEL_FAM6_SKYLAKE_MOBILE, skl_uncore_init), + X86_UNCORE_MODEL_MATCH(INTEL_FAM6_SKYLAKE_X, skx_uncore_init), {}, }; --- linux-4.8.0.orig/arch/x86/events/intel/uncore.h +++ linux-4.8.0/arch/x86/events/intel/uncore.h @@ -44,6 +44,7 @@ unsigned perf_ctr; unsigned event_ctl; unsigned event_mask; + unsigned event_mask_ext; unsigned fixed_ctr; unsigned fixed_ctl; unsigned box_ctl; @@ -120,6 +121,7 @@ }; #define UNCORE_BOX_FLAG_INITIATED 0 +#define UNCORE_BOX_FLAG_CTL_OFFS8 1 /* event config registers are 8-byte apart */ struct uncore_event_desc { struct kobj_attribute attr; @@ -172,6 +174,9 @@ static inline unsigned uncore_pci_event_ctl(struct intel_uncore_box *box, int idx) { + if (test_bit(UNCORE_BOX_FLAG_CTL_OFFS8, &box->flags)) + return idx * 8 + box->pmu->type->event_ctl; + return idx * 4 + box->pmu->type->event_ctl; } @@ -377,6 +382,8 @@ void bdx_uncore_cpu_init(void); int knl_uncore_pci_init(void); void knl_uncore_cpu_init(void); +int skx_uncore_pci_init(void); +void skx_uncore_cpu_init(void); /* perf_event_intel_uncore_nhmex.c */ void nhmex_uncore_cpu_init(void); --- linux-4.8.0.orig/arch/x86/events/intel/uncore_snbep.c +++ linux-4.8.0/arch/x86/events/intel/uncore_snbep.c @@ -1,6 +1,10 @@ /* SandyBridge-EP/IvyTown uncore support */ #include "uncore.h" +/* SNB-EP pci bus to socket mapping */ +#define SNBEP_CPUNODEID 0x40 +#define SNBEP_GIDNIDMAP 0x54 + /* SNB-EP Box level control */ #define SNBEP_PMON_BOX_CTL_RST_CTRL (1 << 0) #define SNBEP_PMON_BOX_CTL_RST_CTRS (1 << 1) @@ -264,15 +268,72 @@ SNBEP_PCU_MSR_PMON_CTL_OCC_INVERT | \ SNBEP_PCU_MSR_PMON_CTL_OCC_EDGE_DET) +/* SKX pci bus to socket mapping */ +#define SKX_CPUNODEID 0xc0 +#define SKX_GIDNIDMAP 0xd4 + +/* SKX CHA */ +#define SKX_CHA_MSR_PMON_BOX_FILTER_TID (0x1ffULL << 0) +#define SKX_CHA_MSR_PMON_BOX_FILTER_LINK (0xfULL << 9) +#define SKX_CHA_MSR_PMON_BOX_FILTER_STATE (0x3ffULL << 17) +#define SKX_CHA_MSR_PMON_BOX_FILTER_REM (0x1ULL << 32) +#define SKX_CHA_MSR_PMON_BOX_FILTER_LOC (0x1ULL << 33) +#define SKX_CHA_MSR_PMON_BOX_FILTER_ALL_OPC (0x1ULL << 35) +#define SKX_CHA_MSR_PMON_BOX_FILTER_NM (0x1ULL << 36) +#define SKX_CHA_MSR_PMON_BOX_FILTER_NOT_NM (0x1ULL << 37) +#define SKX_CHA_MSR_PMON_BOX_FILTER_OPC0 (0x3ffULL << 41) +#define SKX_CHA_MSR_PMON_BOX_FILTER_OPC1 (0x3ffULL << 51) +#define SKX_CHA_MSR_PMON_BOX_FILTER_C6 (0x1ULL << 61) +#define SKX_CHA_MSR_PMON_BOX_FILTER_NC (0x1ULL << 62) +#define SKX_CHA_MSR_PMON_BOX_FILTER_ISOC (0x1ULL << 63) + +/* SKX IIO */ +#define SKX_IIO0_MSR_PMON_CTL0 0xa48 +#define SKX_IIO0_MSR_PMON_CTR0 0xa41 +#define SKX_IIO0_MSR_PMON_BOX_CTL 0xa40 +#define SKX_IIO_MSR_OFFSET 0x20 + +#define SKX_PMON_CTL_TRESH_MASK (0xff << 24) +#define SKX_PMON_CTL_TRESH_MASK_EXT (0xf) +#define SKX_PMON_CTL_CH_MASK (0xff << 4) +#define SKX_PMON_CTL_FC_MASK (0x7 << 12) +#define SKX_IIO_PMON_RAW_EVENT_MASK (SNBEP_PMON_CTL_EV_SEL_MASK | \ + SNBEP_PMON_CTL_UMASK_MASK | \ + SNBEP_PMON_CTL_EDGE_DET | \ + SNBEP_PMON_CTL_INVERT | \ + SKX_PMON_CTL_TRESH_MASK) +#define SKX_IIO_PMON_RAW_EVENT_MASK_EXT (SKX_PMON_CTL_TRESH_MASK_EXT | \ + SKX_PMON_CTL_CH_MASK | \ + SKX_PMON_CTL_FC_MASK) + +/* SKX IRP */ +#define SKX_IRP0_MSR_PMON_CTL0 0xa5b +#define SKX_IRP0_MSR_PMON_CTR0 0xa59 +#define SKX_IRP0_MSR_PMON_BOX_CTL 0xa58 +#define SKX_IRP_MSR_OFFSET 0x20 + +/* SKX UPI */ +#define SKX_UPI_PCI_PMON_CTL0 0x350 +#define SKX_UPI_PCI_PMON_CTR0 0x318 +#define SKX_UPI_PCI_PMON_BOX_CTL 0x378 +#define SKX_PMON_CTL_UMASK_EXT 0xff + +/* SKX M2M */ +#define SKX_M2M_PCI_PMON_CTL0 0x228 +#define SKX_M2M_PCI_PMON_CTR0 0x200 +#define SKX_M2M_PCI_PMON_BOX_CTL 0x258 + DEFINE_UNCORE_FORMAT_ATTR(event, event, "config:0-7"); DEFINE_UNCORE_FORMAT_ATTR(event2, event, "config:0-6"); DEFINE_UNCORE_FORMAT_ATTR(event_ext, event, "config:0-7,21"); DEFINE_UNCORE_FORMAT_ATTR(use_occ_ctr, use_occ_ctr, "config:7"); DEFINE_UNCORE_FORMAT_ATTR(umask, umask, "config:8-15"); +DEFINE_UNCORE_FORMAT_ATTR(umask_ext, umask, "config:8-15,32-39"); DEFINE_UNCORE_FORMAT_ATTR(qor, qor, "config:16"); DEFINE_UNCORE_FORMAT_ATTR(edge, edge, "config:18"); DEFINE_UNCORE_FORMAT_ATTR(tid_en, tid_en, "config:19"); DEFINE_UNCORE_FORMAT_ATTR(inv, inv, "config:23"); +DEFINE_UNCORE_FORMAT_ATTR(thresh9, thresh, "config:24-35"); DEFINE_UNCORE_FORMAT_ATTR(thresh8, thresh, "config:24-31"); DEFINE_UNCORE_FORMAT_ATTR(thresh6, thresh, "config:24-29"); DEFINE_UNCORE_FORMAT_ATTR(thresh5, thresh, "config:24-28"); @@ -280,6 +341,8 @@ DEFINE_UNCORE_FORMAT_ATTR(occ_invert, occ_invert, "config:30"); DEFINE_UNCORE_FORMAT_ATTR(occ_edge, occ_edge, "config:14-51"); DEFINE_UNCORE_FORMAT_ATTR(occ_edge_det, occ_edge_det, "config:31"); +DEFINE_UNCORE_FORMAT_ATTR(ch_mask, ch_mask, "config:36-43"); +DEFINE_UNCORE_FORMAT_ATTR(fc_mask, fc_mask, "config:44-46"); DEFINE_UNCORE_FORMAT_ATTR(filter_tid, filter_tid, "config1:0-4"); DEFINE_UNCORE_FORMAT_ATTR(filter_tid2, filter_tid, "config1:0"); DEFINE_UNCORE_FORMAT_ATTR(filter_tid3, filter_tid, "config1:0-5"); @@ -288,18 +351,26 @@ DEFINE_UNCORE_FORMAT_ATTR(filter_link, filter_link, "config1:5-8"); DEFINE_UNCORE_FORMAT_ATTR(filter_link2, filter_link, "config1:6-8"); DEFINE_UNCORE_FORMAT_ATTR(filter_link3, filter_link, "config1:12"); +DEFINE_UNCORE_FORMAT_ATTR(filter_link4, filter_link, "config1:9-12"); DEFINE_UNCORE_FORMAT_ATTR(filter_nid, filter_nid, "config1:10-17"); DEFINE_UNCORE_FORMAT_ATTR(filter_nid2, filter_nid, "config1:32-47"); DEFINE_UNCORE_FORMAT_ATTR(filter_state, filter_state, "config1:18-22"); DEFINE_UNCORE_FORMAT_ATTR(filter_state2, filter_state, "config1:17-22"); DEFINE_UNCORE_FORMAT_ATTR(filter_state3, filter_state, "config1:17-23"); DEFINE_UNCORE_FORMAT_ATTR(filter_state4, filter_state, "config1:18-20"); +DEFINE_UNCORE_FORMAT_ATTR(filter_state5, filter_state, "config1:17-26"); +DEFINE_UNCORE_FORMAT_ATTR(filter_rem, filter_rem, "config1:32"); +DEFINE_UNCORE_FORMAT_ATTR(filter_loc, filter_loc, "config1:33"); +DEFINE_UNCORE_FORMAT_ATTR(filter_nm, filter_nm, "config1:36"); +DEFINE_UNCORE_FORMAT_ATTR(filter_not_nm, filter_not_nm, "config1:37"); DEFINE_UNCORE_FORMAT_ATTR(filter_local, filter_local, "config1:33"); DEFINE_UNCORE_FORMAT_ATTR(filter_all_op, filter_all_op, "config1:35"); DEFINE_UNCORE_FORMAT_ATTR(filter_nnm, filter_nnm, "config1:37"); DEFINE_UNCORE_FORMAT_ATTR(filter_opc, filter_opc, "config1:23-31"); DEFINE_UNCORE_FORMAT_ATTR(filter_opc2, filter_opc, "config1:52-60"); DEFINE_UNCORE_FORMAT_ATTR(filter_opc3, filter_opc, "config1:41-60"); +DEFINE_UNCORE_FORMAT_ATTR(filter_opc_0, filter_opc0, "config1:41-50"); +DEFINE_UNCORE_FORMAT_ATTR(filter_opc_1, filter_opc1, "config1:51-60"); DEFINE_UNCORE_FORMAT_ATTR(filter_nc, filter_nc, "config1:62"); DEFINE_UNCORE_FORMAT_ATTR(filter_c6, filter_c6, "config1:61"); DEFINE_UNCORE_FORMAT_ATTR(filter_isoc, filter_isoc, "config1:63"); @@ -1153,7 +1224,7 @@ /* * build pci bus to socket mapping */ -static int snbep_pci2phy_map_init(int devid) +static int snbep_pci2phy_map_init(int devid, int nodeid_loc, int idmap_loc, bool reverse) { struct pci_dev *ubox_dev = NULL; int i, bus, nodeid, segment; @@ -1168,12 +1239,12 @@ break; bus = ubox_dev->bus->number; /* get the Node ID of the local register */ - err = pci_read_config_dword(ubox_dev, 0x40, &config); + err = pci_read_config_dword(ubox_dev, nodeid_loc, &config); if (err) break; nodeid = config; /* get the Node ID mapping */ - err = pci_read_config_dword(ubox_dev, 0x54, &config); + err = pci_read_config_dword(ubox_dev, idmap_loc, &config); if (err) break; @@ -1207,11 +1278,20 @@ raw_spin_lock(&pci2phy_map_lock); list_for_each_entry(map, &pci2phy_map_head, list) { i = -1; - for (bus = 255; bus >= 0; bus--) { - if (map->pbus_to_physid[bus] >= 0) - i = map->pbus_to_physid[bus]; - else - map->pbus_to_physid[bus] = i; + if (reverse) { + for (bus = 255; bus >= 0; bus--) { + if (map->pbus_to_physid[bus] >= 0) + i = map->pbus_to_physid[bus]; + else + map->pbus_to_physid[bus] = i; + } + } else { + for (bus = 0; bus <= 255; bus++) { + if (map->pbus_to_physid[bus] >= 0) + i = map->pbus_to_physid[bus]; + else + map->pbus_to_physid[bus] = i; + } } } raw_spin_unlock(&pci2phy_map_lock); @@ -1224,7 +1304,7 @@ int snbep_uncore_pci_init(void) { - int ret = snbep_pci2phy_map_init(0x3ce0); + int ret = snbep_pci2phy_map_init(0x3ce0, SNBEP_CPUNODEID, SNBEP_GIDNIDMAP, true); if (ret) return ret; uncore_pci_uncores = snbep_pci_uncores; @@ -1788,7 +1868,7 @@ int ivbep_uncore_pci_init(void) { - int ret = snbep_pci2phy_map_init(0x0e1e); + int ret = snbep_pci2phy_map_init(0x0e1e, SNBEP_CPUNODEID, SNBEP_GIDNIDMAP, true); if (ret) return ret; uncore_pci_uncores = ivbep_pci_uncores; @@ -2897,7 +2977,7 @@ int hswep_uncore_pci_init(void) { - int ret = snbep_pci2phy_map_init(0x2f1e); + int ret = snbep_pci2phy_map_init(0x2f1e, SNBEP_CPUNODEID, SNBEP_GIDNIDMAP, true); if (ret) return ret; uncore_pci_uncores = hswep_pci_uncores; @@ -3186,7 +3266,7 @@ int bdx_uncore_pci_init(void) { - int ret = snbep_pci2phy_map_init(0x6f1e); + int ret = snbep_pci2phy_map_init(0x6f1e, SNBEP_CPUNODEID, SNBEP_GIDNIDMAP, true); if (ret) return ret; @@ -3196,3 +3276,525 @@ } /* end of BDX uncore support */ + +/* SKX uncore support */ + +static struct intel_uncore_type skx_uncore_ubox = { + .name = "ubox", + .num_counters = 2, + .num_boxes = 1, + .perf_ctr_bits = 48, + .fixed_ctr_bits = 48, + .perf_ctr = HSWEP_U_MSR_PMON_CTR0, + .event_ctl = HSWEP_U_MSR_PMON_CTL0, + .event_mask = SNBEP_U_MSR_PMON_RAW_EVENT_MASK, + .fixed_ctr = HSWEP_U_MSR_PMON_UCLK_FIXED_CTR, + .fixed_ctl = HSWEP_U_MSR_PMON_UCLK_FIXED_CTL, + .ops = &ivbep_uncore_msr_ops, + .format_group = &ivbep_uncore_ubox_format_group, +}; + +static struct attribute *skx_uncore_cha_formats_attr[] = { + &format_attr_event.attr, + &format_attr_umask.attr, + &format_attr_edge.attr, + &format_attr_tid_en.attr, + &format_attr_inv.attr, + &format_attr_thresh8.attr, + &format_attr_filter_tid4.attr, + &format_attr_filter_link4.attr, + &format_attr_filter_state5.attr, + &format_attr_filter_rem.attr, + &format_attr_filter_loc.attr, + &format_attr_filter_nm.attr, + &format_attr_filter_all_op.attr, + &format_attr_filter_not_nm.attr, + &format_attr_filter_opc_0.attr, + &format_attr_filter_opc_1.attr, + &format_attr_filter_nc.attr, + &format_attr_filter_c6.attr, + &format_attr_filter_isoc.attr, + NULL, +}; + +static struct attribute_group skx_uncore_chabox_format_group = { + .name = "format", + .attrs = skx_uncore_cha_formats_attr, +}; + +static struct event_constraint skx_uncore_chabox_constraints[] = { + UNCORE_EVENT_CONSTRAINT(0x11, 0x1), + UNCORE_EVENT_CONSTRAINT(0x36, 0x1), + EVENT_CONSTRAINT_END +}; + +static struct extra_reg skx_uncore_cha_extra_regs[] = { + SNBEP_CBO_EVENT_EXTRA_REG(0x0334, 0xffff, 0x4), + SNBEP_CBO_EVENT_EXTRA_REG(0x0534, 0xffff, 0x4), + SNBEP_CBO_EVENT_EXTRA_REG(0x0934, 0xffff, 0x4), + SNBEP_CBO_EVENT_EXTRA_REG(0x1134, 0xffff, 0x4), + SNBEP_CBO_EVENT_EXTRA_REG(0x2134, 0xffff, 0x4), + SNBEP_CBO_EVENT_EXTRA_REG(0x8134, 0xffff, 0x4), +}; + +static u64 skx_cha_filter_mask(int fields) +{ + u64 mask = 0; + + if (fields & 0x1) + mask |= SKX_CHA_MSR_PMON_BOX_FILTER_TID; + if (fields & 0x2) + mask |= SKX_CHA_MSR_PMON_BOX_FILTER_LINK; + if (fields & 0x4) + mask |= SKX_CHA_MSR_PMON_BOX_FILTER_STATE; + return mask; +} + +static struct event_constraint * +skx_cha_get_constraint(struct intel_uncore_box *box, struct perf_event *event) +{ + return __snbep_cbox_get_constraint(box, event, skx_cha_filter_mask); +} + +static int skx_cha_hw_config(struct intel_uncore_box *box, struct perf_event *event) +{ + struct hw_perf_event_extra *reg1 = &event->hw.extra_reg; + struct extra_reg *er; + int idx = 0; + + for (er = skx_uncore_cha_extra_regs; er->msr; er++) { + if (er->event != (event->hw.config & er->config_mask)) + continue; + idx |= er->idx; + } + + if (idx) { + reg1->reg = HSWEP_C0_MSR_PMON_BOX_FILTER0 + + HSWEP_CBO_MSR_OFFSET * box->pmu->pmu_idx; + reg1->config = event->attr.config1 & skx_cha_filter_mask(idx); + reg1->idx = idx; + } + return 0; +} + +static struct intel_uncore_ops skx_uncore_chabox_ops = { + /* There is no frz_en for chabox ctl */ + .init_box = ivbep_uncore_msr_init_box, + .disable_box = snbep_uncore_msr_disable_box, + .enable_box = snbep_uncore_msr_enable_box, + .disable_event = snbep_uncore_msr_disable_event, + .enable_event = hswep_cbox_enable_event, + .read_counter = uncore_msr_read_counter, + .hw_config = skx_cha_hw_config, + .get_constraint = skx_cha_get_constraint, + .put_constraint = snbep_cbox_put_constraint, +}; + +static struct intel_uncore_type skx_uncore_chabox = { + .name = "cha", + .num_counters = 4, + .perf_ctr_bits = 48, + .event_ctl = HSWEP_C0_MSR_PMON_CTL0, + .perf_ctr = HSWEP_C0_MSR_PMON_CTR0, + .event_mask = HSWEP_S_MSR_PMON_RAW_EVENT_MASK, + .box_ctl = HSWEP_C0_MSR_PMON_BOX_CTL, + .msr_offset = HSWEP_CBO_MSR_OFFSET, + .num_shared_regs = 1, + .constraints = skx_uncore_chabox_constraints, + .ops = &skx_uncore_chabox_ops, + .format_group = &skx_uncore_chabox_format_group, +}; + +static struct attribute *skx_uncore_iio_formats_attr[] = { + &format_attr_event.attr, + &format_attr_umask.attr, + &format_attr_edge.attr, + &format_attr_inv.attr, + &format_attr_thresh9.attr, + &format_attr_ch_mask.attr, + &format_attr_fc_mask.attr, + NULL, +}; + +static struct attribute_group skx_uncore_iio_format_group = { + .name = "format", + .attrs = skx_uncore_iio_formats_attr, +}; + +static struct event_constraint skx_uncore_iio_constraints[] = { + UNCORE_EVENT_CONSTRAINT(0x83, 0x3), + UNCORE_EVENT_CONSTRAINT(0x88, 0xc), + UNCORE_EVENT_CONSTRAINT(0x95, 0xc), + UNCORE_EVENT_CONSTRAINT(0xc0, 0xc), + UNCORE_EVENT_CONSTRAINT(0xc5, 0xc), + UNCORE_EVENT_CONSTRAINT(0xd4, 0xc), + EVENT_CONSTRAINT_END +}; + +static void skx_iio_enable_event(struct intel_uncore_box *box, + struct perf_event *event) +{ + struct hw_perf_event *hwc = &event->hw; + + wrmsrl(hwc->config_base, hwc->config | SNBEP_PMON_CTL_EN); +} + +static struct intel_uncore_ops skx_uncore_iio_ops = { + .init_box = ivbep_uncore_msr_init_box, + .disable_box = snbep_uncore_msr_disable_box, + .enable_box = snbep_uncore_msr_enable_box, + .disable_event = snbep_uncore_msr_disable_event, + .enable_event = skx_iio_enable_event, + .read_counter = uncore_msr_read_counter, +}; + +static struct intel_uncore_type skx_uncore_iio = { + .name = "iio", + .num_counters = 4, + .num_boxes = 5, + .perf_ctr_bits = 48, + .event_ctl = SKX_IIO0_MSR_PMON_CTL0, + .perf_ctr = SKX_IIO0_MSR_PMON_CTR0, + .event_mask = SKX_IIO_PMON_RAW_EVENT_MASK, + .event_mask_ext = SKX_IIO_PMON_RAW_EVENT_MASK_EXT, + .box_ctl = SKX_IIO0_MSR_PMON_BOX_CTL, + .msr_offset = SKX_IIO_MSR_OFFSET, + .constraints = skx_uncore_iio_constraints, + .ops = &skx_uncore_iio_ops, + .format_group = &skx_uncore_iio_format_group, +}; + +static struct attribute *skx_uncore_formats_attr[] = { + &format_attr_event.attr, + &format_attr_umask.attr, + &format_attr_edge.attr, + &format_attr_inv.attr, + &format_attr_thresh8.attr, + NULL, +}; + +static struct attribute_group skx_uncore_format_group = { + .name = "format", + .attrs = skx_uncore_formats_attr, +}; + +static struct intel_uncore_type skx_uncore_irp = { + .name = "irp", + .num_counters = 2, + .num_boxes = 5, + .perf_ctr_bits = 48, + .event_ctl = SKX_IRP0_MSR_PMON_CTL0, + .perf_ctr = SKX_IRP0_MSR_PMON_CTR0, + .event_mask = SNBEP_PMON_RAW_EVENT_MASK, + .box_ctl = SKX_IRP0_MSR_PMON_BOX_CTL, + .msr_offset = SKX_IRP_MSR_OFFSET, + .ops = &skx_uncore_iio_ops, + .format_group = &skx_uncore_format_group, +}; + +static struct intel_uncore_ops skx_uncore_pcu_ops = { + IVBEP_UNCORE_MSR_OPS_COMMON_INIT(), + .hw_config = hswep_pcu_hw_config, + .get_constraint = snbep_pcu_get_constraint, + .put_constraint = snbep_pcu_put_constraint, +}; + +static struct intel_uncore_type skx_uncore_pcu = { + .name = "pcu", + .num_counters = 4, + .num_boxes = 1, + .perf_ctr_bits = 48, + .perf_ctr = HSWEP_PCU_MSR_PMON_CTR0, + .event_ctl = HSWEP_PCU_MSR_PMON_CTL0, + .event_mask = SNBEP_PCU_MSR_PMON_RAW_EVENT_MASK, + .box_ctl = HSWEP_PCU_MSR_PMON_BOX_CTL, + .num_shared_regs = 1, + .ops = &skx_uncore_pcu_ops, + .format_group = &snbep_uncore_pcu_format_group, +}; + +static struct intel_uncore_type *skx_msr_uncores[] = { + &skx_uncore_ubox, + &skx_uncore_chabox, + &skx_uncore_iio, + &skx_uncore_irp, + &skx_uncore_pcu, + NULL, +}; + +static int skx_count_chabox(void) +{ + struct pci_dev *chabox_dev = NULL; + int bus, count = 0; + + while (1) { + chabox_dev = pci_get_device(PCI_VENDOR_ID_INTEL, 0x208d, chabox_dev); + if (!chabox_dev) + break; + if (count == 0) + bus = chabox_dev->bus->number; + if (bus != chabox_dev->bus->number) + break; + count++; + } + + pci_dev_put(chabox_dev); + return count; +} + +void skx_uncore_cpu_init(void) +{ + skx_uncore_chabox.num_boxes = skx_count_chabox(); + uncore_msr_uncores = skx_msr_uncores; +} + +static struct intel_uncore_type skx_uncore_imc = { + .name = "imc", + .num_counters = 4, + .num_boxes = 6, + .perf_ctr_bits = 48, + .fixed_ctr_bits = 48, + .fixed_ctr = SNBEP_MC_CHy_PCI_PMON_FIXED_CTR, + .fixed_ctl = SNBEP_MC_CHy_PCI_PMON_FIXED_CTL, + .event_descs = hswep_uncore_imc_events, + .perf_ctr = SNBEP_PCI_PMON_CTR0, + .event_ctl = SNBEP_PCI_PMON_CTL0, + .event_mask = SNBEP_PMON_RAW_EVENT_MASK, + .box_ctl = SNBEP_PCI_PMON_BOX_CTL, + .ops = &ivbep_uncore_pci_ops, + .format_group = &skx_uncore_format_group, +}; + +static struct attribute *skx_upi_uncore_formats_attr[] = { + &format_attr_event_ext.attr, + &format_attr_umask_ext.attr, + &format_attr_edge.attr, + &format_attr_inv.attr, + &format_attr_thresh8.attr, + NULL, +}; + +static struct attribute_group skx_upi_uncore_format_group = { + .name = "format", + .attrs = skx_upi_uncore_formats_attr, +}; + +static void skx_upi_uncore_pci_init_box(struct intel_uncore_box *box) +{ + struct pci_dev *pdev = box->pci_dev; + + __set_bit(UNCORE_BOX_FLAG_CTL_OFFS8, &box->flags); + pci_write_config_dword(pdev, SKX_UPI_PCI_PMON_BOX_CTL, IVBEP_PMON_BOX_CTL_INT); +} + +static struct intel_uncore_ops skx_upi_uncore_pci_ops = { + .init_box = skx_upi_uncore_pci_init_box, + .disable_box = snbep_uncore_pci_disable_box, + .enable_box = snbep_uncore_pci_enable_box, + .disable_event = snbep_uncore_pci_disable_event, + .enable_event = snbep_uncore_pci_enable_event, + .read_counter = snbep_uncore_pci_read_counter, +}; + +static struct intel_uncore_type skx_uncore_upi = { + .name = "upi", + .num_counters = 4, + .num_boxes = 3, + .perf_ctr_bits = 48, + .perf_ctr = SKX_UPI_PCI_PMON_CTR0, + .event_ctl = SKX_UPI_PCI_PMON_CTL0, + .event_mask = SNBEP_QPI_PCI_PMON_RAW_EVENT_MASK, + .event_mask_ext = SKX_PMON_CTL_UMASK_EXT, + .box_ctl = SKX_UPI_PCI_PMON_BOX_CTL, + .ops = &skx_upi_uncore_pci_ops, + .format_group = &skx_upi_uncore_format_group, +}; + +static void skx_m2m_uncore_pci_init_box(struct intel_uncore_box *box) +{ + struct pci_dev *pdev = box->pci_dev; + + __set_bit(UNCORE_BOX_FLAG_CTL_OFFS8, &box->flags); + pci_write_config_dword(pdev, SKX_M2M_PCI_PMON_BOX_CTL, IVBEP_PMON_BOX_CTL_INT); +} + +static struct intel_uncore_ops skx_m2m_uncore_pci_ops = { + .init_box = skx_m2m_uncore_pci_init_box, + .disable_box = snbep_uncore_pci_disable_box, + .enable_box = snbep_uncore_pci_enable_box, + .disable_event = snbep_uncore_pci_disable_event, + .enable_event = snbep_uncore_pci_enable_event, + .read_counter = snbep_uncore_pci_read_counter, +}; + +static struct intel_uncore_type skx_uncore_m2m = { + .name = "m2m", + .num_counters = 4, + .num_boxes = 2, + .perf_ctr_bits = 48, + .perf_ctr = SKX_M2M_PCI_PMON_CTR0, + .event_ctl = SKX_M2M_PCI_PMON_CTL0, + .event_mask = SNBEP_PMON_RAW_EVENT_MASK, + .box_ctl = SKX_M2M_PCI_PMON_BOX_CTL, + .ops = &skx_m2m_uncore_pci_ops, + .format_group = &skx_uncore_format_group, +}; + +static struct event_constraint skx_uncore_m2pcie_constraints[] = { + UNCORE_EVENT_CONSTRAINT(0x23, 0x3), + EVENT_CONSTRAINT_END +}; + +static struct intel_uncore_type skx_uncore_m2pcie = { + .name = "m2pcie", + .num_counters = 4, + .num_boxes = 4, + .perf_ctr_bits = 48, + .constraints = skx_uncore_m2pcie_constraints, + .perf_ctr = SNBEP_PCI_PMON_CTR0, + .event_ctl = SNBEP_PCI_PMON_CTL0, + .event_mask = SNBEP_PMON_RAW_EVENT_MASK, + .box_ctl = SNBEP_PCI_PMON_BOX_CTL, + .ops = &ivbep_uncore_pci_ops, + .format_group = &skx_uncore_format_group, +}; + +static struct event_constraint skx_uncore_m3upi_constraints[] = { + UNCORE_EVENT_CONSTRAINT(0x1d, 0x1), + UNCORE_EVENT_CONSTRAINT(0x1e, 0x1), + UNCORE_EVENT_CONSTRAINT(0x40, 0x7), + UNCORE_EVENT_CONSTRAINT(0x4e, 0x7), + UNCORE_EVENT_CONSTRAINT(0x4f, 0x7), + UNCORE_EVENT_CONSTRAINT(0x50, 0x7), + UNCORE_EVENT_CONSTRAINT(0x51, 0x7), + UNCORE_EVENT_CONSTRAINT(0x52, 0x7), + EVENT_CONSTRAINT_END +}; + +static struct intel_uncore_type skx_uncore_m3upi = { + .name = "m3upi", + .num_counters = 3, + .num_boxes = 3, + .perf_ctr_bits = 48, + .constraints = skx_uncore_m3upi_constraints, + .perf_ctr = SNBEP_PCI_PMON_CTR0, + .event_ctl = SNBEP_PCI_PMON_CTL0, + .event_mask = SNBEP_PMON_RAW_EVENT_MASK, + .box_ctl = SNBEP_PCI_PMON_BOX_CTL, + .ops = &ivbep_uncore_pci_ops, + .format_group = &skx_uncore_format_group, +}; + +enum { + SKX_PCI_UNCORE_IMC, + SKX_PCI_UNCORE_M2M, + SKX_PCI_UNCORE_UPI, + SKX_PCI_UNCORE_M2PCIE, + SKX_PCI_UNCORE_M3UPI, +}; + +static struct intel_uncore_type *skx_pci_uncores[] = { + [SKX_PCI_UNCORE_IMC] = &skx_uncore_imc, + [SKX_PCI_UNCORE_M2M] = &skx_uncore_m2m, + [SKX_PCI_UNCORE_UPI] = &skx_uncore_upi, + [SKX_PCI_UNCORE_M2PCIE] = &skx_uncore_m2pcie, + [SKX_PCI_UNCORE_M3UPI] = &skx_uncore_m3upi, + NULL, +}; + +static const struct pci_device_id skx_uncore_pci_ids[] = { + { /* MC0 Channel 0 */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x2042), + .driver_data = UNCORE_PCI_DEV_FULL_DATA(10, 2, SKX_PCI_UNCORE_IMC, 0), + }, + { /* MC0 Channel 1 */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x2046), + .driver_data = UNCORE_PCI_DEV_FULL_DATA(10, 6, SKX_PCI_UNCORE_IMC, 1), + }, + { /* MC0 Channel 2 */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x204a), + .driver_data = UNCORE_PCI_DEV_FULL_DATA(11, 2, SKX_PCI_UNCORE_IMC, 2), + }, + { /* MC1 Channel 0 */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x2042), + .driver_data = UNCORE_PCI_DEV_FULL_DATA(12, 2, SKX_PCI_UNCORE_IMC, 3), + }, + { /* MC1 Channel 1 */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x2046), + .driver_data = UNCORE_PCI_DEV_FULL_DATA(12, 6, SKX_PCI_UNCORE_IMC, 4), + }, + { /* MC1 Channel 2 */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x204a), + .driver_data = UNCORE_PCI_DEV_FULL_DATA(13, 2, SKX_PCI_UNCORE_IMC, 5), + }, + { /* M2M0 */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x2066), + .driver_data = UNCORE_PCI_DEV_FULL_DATA(8, 0, SKX_PCI_UNCORE_M2M, 0), + }, + { /* M2M1 */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x2066), + .driver_data = UNCORE_PCI_DEV_FULL_DATA(9, 0, SKX_PCI_UNCORE_M2M, 1), + }, + { /* UPI0 Link 0 */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x2058), + .driver_data = UNCORE_PCI_DEV_FULL_DATA(14, 0, SKX_PCI_UNCORE_UPI, 0), + }, + { /* UPI0 Link 1 */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x2058), + .driver_data = UNCORE_PCI_DEV_FULL_DATA(15, 0, SKX_PCI_UNCORE_UPI, 1), + }, + { /* UPI1 Link 2 */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x2058), + .driver_data = UNCORE_PCI_DEV_FULL_DATA(16, 0, SKX_PCI_UNCORE_UPI, 2), + }, + { /* M2PCIe 0 */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x2088), + .driver_data = UNCORE_PCI_DEV_FULL_DATA(21, 1, SKX_PCI_UNCORE_M2PCIE, 0), + }, + { /* M2PCIe 1 */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x2088), + .driver_data = UNCORE_PCI_DEV_FULL_DATA(22, 1, SKX_PCI_UNCORE_M2PCIE, 1), + }, + { /* M2PCIe 2 */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x2088), + .driver_data = UNCORE_PCI_DEV_FULL_DATA(23, 1, SKX_PCI_UNCORE_M2PCIE, 2), + }, + { /* M2PCIe 3 */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x2088), + .driver_data = UNCORE_PCI_DEV_FULL_DATA(21, 5, SKX_PCI_UNCORE_M2PCIE, 3), + }, + { /* M3UPI0 Link 0 */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x204C), + .driver_data = UNCORE_PCI_DEV_FULL_DATA(18, 0, SKX_PCI_UNCORE_M3UPI, 0), + }, + { /* M3UPI0 Link 1 */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x204D), + .driver_data = UNCORE_PCI_DEV_FULL_DATA(18, 1, SKX_PCI_UNCORE_M3UPI, 1), + }, + { /* M3UPI1 Link 2 */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x204C), + .driver_data = UNCORE_PCI_DEV_FULL_DATA(18, 4, SKX_PCI_UNCORE_M3UPI, 2), + }, + { /* end: all zeroes */ } +}; + + +static struct pci_driver skx_uncore_pci_driver = { + .name = "skx_uncore", + .id_table = skx_uncore_pci_ids, +}; + +int skx_uncore_pci_init(void) +{ + /* need to double check pci address */ + int ret = snbep_pci2phy_map_init(0x2014, SKX_CPUNODEID, SKX_GIDNIDMAP, false); + + if (ret) + return ret; + + uncore_pci_uncores = skx_pci_uncores; + uncore_pci_driver = &skx_uncore_pci_driver; + return 0; +} + +/* end of SKX uncore support */ --- linux-4.8.0.orig/arch/x86/events/perf_event.h +++ linux-4.8.0/arch/x86/events/perf_event.h @@ -113,7 +113,7 @@ * Per register state. */ struct er_account { - raw_spinlock_t lock; /* per-core: protect structure */ + raw_spinlock_t lock; /* per-core: protect structure */ u64 config; /* extra MSR config */ u64 reg; /* extra MSR number */ atomic_t ref; /* reference count */ @@ -601,7 +601,7 @@ u64 lbr_sel_mask; /* LBR_SELECT valid bits */ const int *lbr_sel_map; /* lbr_select mappings */ bool lbr_double_abort; /* duplicated lbr aborts */ - bool lbr_pt_coexist; /* LBR may coexist with PT */ + bool lbr_pt_coexist; /* (LBR|BTS) may coexist with PT */ /* * Intel PT/LBR/BTS are exclusive --- linux-4.8.0.orig/arch/x86/hyperv/Makefile +++ linux-4.8.0/arch/x86/hyperv/Makefile @@ -0,0 +1 @@ +obj-y := hv_init.o --- linux-4.8.0.orig/arch/x86/hyperv/hv_init.c +++ linux-4.8.0/arch/x86/hyperv/hv_init.c @@ -0,0 +1,284 @@ +/* + * X86 specific Hyper-V initialization code. + * + * Copyright (C) 2016, Microsoft, Inc. + * + * Author : K. Y. Srinivasan + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 as published + * by the Free Software Foundation. + * + * 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, GOOD TITLE or + * NON INFRINGEMENT. See the GNU General Public License for more + * details. + * + */ + +#include +#include +#include +#include +#include +#include +#include +#include + +#ifndef PKG_ABI +/* + * Preserve the ability to 'make deb-pkg' since PKG_ABI is provided + * by the Ubuntu build rules. + */ +#define PKG_ABI 0 +#endif + +#ifdef CONFIG_X86_64 + +static struct ms_hyperv_tsc_page *tsc_pg; + +static u64 read_hv_clock_tsc(struct clocksource *arg) +{ + u64 current_tick; + + if (tsc_pg->tsc_sequence != 0) { + /* + * Use the tsc page to compute the value. + */ + + while (1) { + u64 tmp; + u32 sequence = tsc_pg->tsc_sequence; + u64 cur_tsc; + u64 scale = tsc_pg->tsc_scale; + s64 offset = tsc_pg->tsc_offset; + + rdtscll(cur_tsc); + /* current_tick = ((cur_tsc *scale) >> 64) + offset */ + asm("mulq %3" + : "=d" (current_tick), "=a" (tmp) + : "a" (cur_tsc), "r" (scale)); + + current_tick += offset; + if (tsc_pg->tsc_sequence == sequence) + return current_tick; + + if (tsc_pg->tsc_sequence != 0) + continue; + /* + * Fallback using MSR method. + */ + break; + } + } + rdmsrl(HV_X64_MSR_TIME_REF_COUNT, current_tick); + return current_tick; +} + +static struct clocksource hyperv_cs_tsc = { + .name = "hyperv_clocksource_tsc_page", + .rating = 400, + .read = read_hv_clock_tsc, + .mask = CLOCKSOURCE_MASK(64), + .flags = CLOCK_SOURCE_IS_CONTINUOUS, +}; +#endif + +static u64 read_hv_clock_msr(struct clocksource *arg) +{ + u64 current_tick; + /* + * Read the partition counter to get the current tick count. This count + * is set to 0 when the partition is created and is incremented in + * 100 nanosecond units. + */ + rdmsrl(HV_X64_MSR_TIME_REF_COUNT, current_tick); + return current_tick; +} + +static struct clocksource hyperv_cs_msr = { + .name = "hyperv_clocksource_msr", + .rating = 400, + .read = read_hv_clock_msr, + .mask = CLOCKSOURCE_MASK(64), + .flags = CLOCK_SOURCE_IS_CONTINUOUS, +}; + +static void *hypercall_pg; +struct clocksource *hyperv_cs; +EXPORT_SYMBOL_GPL(hyperv_cs); + +/* + * This function is to be invoked early in the boot sequence after the + * hypervisor has been detected. + * + * 1. Setup the hypercall page. + * 2. Register Hyper-V specific clocksource. + */ +void hyperv_init(void) +{ + u64 guest_id; + union hv_x64_msr_hypercall_contents hypercall_msr; + + if (x86_hyper != &x86_hyper_ms_hyperv) + return; + + /* + * Setup the hypercall page and enable hypercalls. + * 1. Register the guest ID + * 2. Enable the hypercall and register the hypercall page + */ + guest_id = generate_guest_id(0x80 /*Canonical*/, LINUX_VERSION_CODE, PKG_ABI); + wrmsrl(HV_X64_MSR_GUEST_OS_ID, guest_id); + + hypercall_pg = __vmalloc(PAGE_SIZE, GFP_KERNEL, PAGE_KERNEL_EXEC); + if (hypercall_pg == NULL) { + wrmsrl(HV_X64_MSR_GUEST_OS_ID, 0); + return; + } + + rdmsrl(HV_X64_MSR_HYPERCALL, hypercall_msr.as_uint64); + hypercall_msr.enable = 1; + hypercall_msr.guest_physical_address = vmalloc_to_pfn(hypercall_pg); + wrmsrl(HV_X64_MSR_HYPERCALL, hypercall_msr.as_uint64); + + /* + * Register Hyper-V specific clocksource. + */ +#ifdef CONFIG_X86_64 + if (ms_hyperv.features & HV_X64_MSR_REFERENCE_TSC_AVAILABLE) { + union hv_x64_msr_hypercall_contents tsc_msr; + + tsc_pg = __vmalloc(PAGE_SIZE, GFP_KERNEL, PAGE_KERNEL); + if (!tsc_pg) + goto register_msr_cs; + + hyperv_cs = &hyperv_cs_tsc; + + rdmsrl(HV_X64_MSR_REFERENCE_TSC, tsc_msr.as_uint64); + + tsc_msr.enable = 1; + tsc_msr.guest_physical_address = vmalloc_to_pfn(tsc_pg); + + wrmsrl(HV_X64_MSR_REFERENCE_TSC, tsc_msr.as_uint64); + clocksource_register_hz(&hyperv_cs_tsc, NSEC_PER_SEC/100); + return; + } +#endif + /* + * For 32 bit guests just use the MSR based mechanism for reading + * the partition counter. + */ + +register_msr_cs: + hyperv_cs = &hyperv_cs_msr; + if (ms_hyperv.features & HV_X64_MSR_TIME_REF_COUNT_AVAILABLE) + clocksource_register_hz(&hyperv_cs_msr, NSEC_PER_SEC/100); +} + +/* + * This routine is called before kexec/kdump, it does the required cleanup. + */ +void hyperv_cleanup(void) +{ + union hv_x64_msr_hypercall_contents hypercall_msr; + + /* Reset our OS id */ + wrmsrl(HV_X64_MSR_GUEST_OS_ID, 0); + + /* Reset the hypercall page */ + hypercall_msr.as_uint64 = 0; + wrmsrl(HV_X64_MSR_HYPERCALL, hypercall_msr.as_uint64); + + /* Reset the TSC page */ + hypercall_msr.as_uint64 = 0; + wrmsrl(HV_X64_MSR_REFERENCE_TSC, hypercall_msr.as_uint64); +} +EXPORT_SYMBOL_GPL(hyperv_cleanup); + +/* + * hv_do_hypercall- Invoke the specified hypercall + */ +u64 hv_do_hypercall(u64 control, void *input, void *output) +{ + u64 input_address = (input) ? virt_to_phys(input) : 0; + u64 output_address = (output) ? virt_to_phys(output) : 0; +#ifdef CONFIG_X86_64 + u64 hv_status = 0; + + if (!hypercall_pg) + return (u64)ULLONG_MAX; + + __asm__ __volatile__("mov %0, %%r8" : : "r" (output_address) : "r8"); + __asm__ __volatile__("call *%3" : "=a" (hv_status) : + "c" (control), "d" (input_address), + "m" (hypercall_pg)); + + return hv_status; + +#else + + u32 control_hi = control >> 32; + u32 control_lo = control & 0xFFFFFFFF; + u32 hv_status_hi = 1; + u32 hv_status_lo = 1; + u32 input_address_hi = input_address >> 32; + u32 input_address_lo = input_address & 0xFFFFFFFF; + u32 output_address_hi = output_address >> 32; + u32 output_address_lo = output_address & 0xFFFFFFFF; + + if (!hypercall_pg) + return (u64)ULLONG_MAX; + + __asm__ __volatile__ ("call *%8" : "=d"(hv_status_hi), + "=a"(hv_status_lo) : "d" (control_hi), + "a" (control_lo), "b" (input_address_hi), + "c" (input_address_lo), "D"(output_address_hi), + "S"(output_address_lo), "m" (hypercall_pg)); + + return hv_status_lo | ((u64)hv_status_hi << 32); +#endif /* !x86_64 */ +} +EXPORT_SYMBOL_GPL(hv_do_hypercall); + +void hyperv_report_panic(struct pt_regs *regs) +{ + static bool panic_reported; + + /* + * We prefer to report panic on 'die' chain as we have proper + * registers to report, but if we miss it (e.g. on BUG()) we need + * to report it on 'panic'. + */ + if (panic_reported) + return; + panic_reported = true; + + wrmsrl(HV_X64_MSR_CRASH_P0, regs->ip); + wrmsrl(HV_X64_MSR_CRASH_P1, regs->ax); + wrmsrl(HV_X64_MSR_CRASH_P2, regs->bx); + wrmsrl(HV_X64_MSR_CRASH_P3, regs->cx); + wrmsrl(HV_X64_MSR_CRASH_P4, regs->dx); + + /* + * Let Hyper-V know there is crash data available + */ + wrmsrl(HV_X64_MSR_CRASH_CTL, HV_CRASH_CTL_CRASH_NOTIFY); +} +EXPORT_SYMBOL_GPL(hyperv_report_panic); + +bool hv_is_hypercall_page_setup(void) +{ + union hv_x64_msr_hypercall_contents hypercall_msr; + + /* Check if the hypercall page is setup */ + hypercall_msr.as_uint64 = 0; + rdmsrl(HV_X64_MSR_HYPERCALL, hypercall_msr.as_uint64); + + if (!hypercall_msr.enable) + return false; + + return true; +} +EXPORT_SYMBOL_GPL(hv_is_hypercall_page_setup); --- linux-4.8.0.orig/arch/x86/include/asm/cpufeatures.h +++ linux-4.8.0/arch/x86/include/asm/cpufeatures.h @@ -195,6 +195,8 @@ #define X86_FEATURE_PROC_FEEDBACK ( 7*32+ 9) /* AMD ProcFeedbackInterface */ #define X86_FEATURE_INTEL_PT ( 7*32+15) /* Intel Processor Trace */ +#define X86_FEATURE_AVX512_4VNNIW (7*32+16) /* AVX-512 Neural Network Instructions */ +#define X86_FEATURE_AVX512_4FMAPS (7*32+17) /* AVX-512 Multiply Accumulation Single precision */ /* Virtualization flags: Linux defined, word 8 */ #define X86_FEATURE_TPR_SHADOW ( 8*32+ 0) /* Intel TPR Shadow */ --- linux-4.8.0.orig/arch/x86/include/asm/fpu/xstate.h +++ linux-4.8.0/arch/x86/include/asm/fpu/xstate.h @@ -27,11 +27,12 @@ XFEATURE_MASK_YMM | \ XFEATURE_MASK_OPMASK | \ XFEATURE_MASK_ZMM_Hi256 | \ - XFEATURE_MASK_Hi16_ZMM | \ - XFEATURE_MASK_PKRU) + XFEATURE_MASK_Hi16_ZMM) /* Supported features which require eager state saving */ -#define XFEATURE_MASK_EAGER (XFEATURE_MASK_BNDREGS | XFEATURE_MASK_BNDCSR) +#define XFEATURE_MASK_EAGER (XFEATURE_MASK_BNDREGS | \ + XFEATURE_MASK_BNDCSR | \ + XFEATURE_MASK_PKRU) /* All currently supported features */ #define XCNTXT_MASK (XFEATURE_MASK_LAZY | XFEATURE_MASK_EAGER) --- linux-4.8.0.orig/arch/x86/include/asm/intel-family.h +++ linux-4.8.0/arch/x86/include/asm/intel-family.h @@ -56,13 +56,14 @@ #define INTEL_FAM6_ATOM_SILVERMONT1 0x37 /* BayTrail/BYT / Valleyview */ #define INTEL_FAM6_ATOM_SILVERMONT2 0x4D /* Avaton/Rangely */ #define INTEL_FAM6_ATOM_AIRMONT 0x4C /* CherryTrail / Braswell */ -#define INTEL_FAM6_ATOM_MERRIFIELD1 0x4A /* Tangier */ -#define INTEL_FAM6_ATOM_MERRIFIELD2 0x5A /* Annidale */ +#define INTEL_FAM6_ATOM_MERRIFIELD 0x4A /* Tangier */ +#define INTEL_FAM6_ATOM_MOOREFIELD 0x5A /* Annidale */ #define INTEL_FAM6_ATOM_GOLDMONT 0x5C #define INTEL_FAM6_ATOM_DENVERTON 0x5F /* Goldmont Microserver */ /* Xeon Phi */ #define INTEL_FAM6_XEON_PHI_KNL 0x57 /* Knights Landing */ +#define INTEL_FAM6_XEON_PHI_KNM 0x85 /* Knights Mill */ #endif /* _ASM_X86_INTEL_FAMILY_H */ --- linux-4.8.0.orig/arch/x86/include/asm/kvm_host.h +++ linux-4.8.0/arch/x86/include/asm/kvm_host.h @@ -790,45 +790,45 @@ }; struct kvm_vm_stat { - u32 mmu_shadow_zapped; - u32 mmu_pte_write; - u32 mmu_pte_updated; - u32 mmu_pde_zapped; - u32 mmu_flooded; - u32 mmu_recycled; - u32 mmu_cache_miss; - u32 mmu_unsync; - u32 remote_tlb_flush; - u32 lpages; + ulong mmu_shadow_zapped; + ulong mmu_pte_write; + ulong mmu_pte_updated; + ulong mmu_pde_zapped; + ulong mmu_flooded; + ulong mmu_recycled; + ulong mmu_cache_miss; + ulong mmu_unsync; + ulong remote_tlb_flush; + ulong lpages; }; struct kvm_vcpu_stat { - u32 pf_fixed; - u32 pf_guest; - u32 tlb_flush; - u32 invlpg; + u64 pf_fixed; + u64 pf_guest; + u64 tlb_flush; + u64 invlpg; - u32 exits; - u32 io_exits; - u32 mmio_exits; - u32 signal_exits; - u32 irq_window_exits; - u32 nmi_window_exits; - u32 halt_exits; - u32 halt_successful_poll; - u32 halt_attempted_poll; - u32 halt_poll_invalid; - u32 halt_wakeup; - u32 request_irq_exits; - u32 irq_exits; - u32 host_state_reload; - u32 efer_reload; - u32 fpu_reload; - u32 insn_emulation; - u32 insn_emulation_fail; - u32 hypercalls; - u32 irq_injections; - u32 nmi_injections; + u64 exits; + u64 io_exits; + u64 mmio_exits; + u64 signal_exits; + u64 irq_window_exits; + u64 nmi_window_exits; + u64 halt_exits; + u64 halt_successful_poll; + u64 halt_attempted_poll; + u64 halt_poll_invalid; + u64 halt_wakeup; + u64 request_irq_exits; + u64 irq_exits; + u64 host_state_reload; + u64 efer_reload; + u64 fpu_reload; + u64 insn_emulation; + u64 insn_emulation_fail; + u64 hypercalls; + u64 irq_injections; + u64 nmi_injections; }; struct x86_instruction_info; --- linux-4.8.0.orig/arch/x86/include/asm/mmu.h +++ linux-4.8.0/arch/x86/include/asm/mmu.h @@ -23,6 +23,14 @@ const struct vdso_image *vdso_image; /* vdso image in use */ atomic_t perf_rdpmc_allowed; /* nonzero if rdpmc is allowed */ +#ifdef CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS + /* + * One bit per protection key says whether userspace can + * use it or not. protected by mmap_sem. + */ + u16 pkey_allocation_map; + s16 execute_only_pkey; +#endif } mm_context_t; #ifdef CONFIG_SMP --- linux-4.8.0.orig/arch/x86/include/asm/mmu_context.h +++ linux-4.8.0/arch/x86/include/asm/mmu_context.h @@ -4,6 +4,7 @@ #include #include #include +#include #include @@ -107,7 +108,16 @@ static inline int init_new_context(struct task_struct *tsk, struct mm_struct *mm) { + #ifdef CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS + if (cpu_feature_enabled(X86_FEATURE_OSPKE)) { + /* pkey 0 is the default and always allocated */ + mm->context.pkey_allocation_map = 0x1; + /* -1 means unallocated or invalid */ + mm->context.execute_only_pkey = -1; + } + #endif init_new_context_ldt(tsk, mm); + return 0; } static inline void destroy_context(struct mm_struct *mm) @@ -195,16 +205,20 @@ mpx_notify_unmap(mm, vma, start, end); } +#ifdef CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS static inline int vma_pkey(struct vm_area_struct *vma) { - u16 pkey = 0; -#ifdef CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS unsigned long vma_pkey_mask = VM_PKEY_BIT0 | VM_PKEY_BIT1 | VM_PKEY_BIT2 | VM_PKEY_BIT3; - pkey = (vma->vm_flags & vma_pkey_mask) >> VM_PKEY_SHIFT; -#endif - return pkey; + + return (vma->vm_flags & vma_pkey_mask) >> VM_PKEY_SHIFT; +} +#else +static inline int vma_pkey(struct vm_area_struct *vma) +{ + return 0; } +#endif static inline bool __pkru_allows_pkey(u16 pkey, bool write) { @@ -258,5 +272,4 @@ { return __pkru_allows_pkey(pte_flags_pkey(pte_flags(pte)), write); } - #endif /* _ASM_X86_MMU_CONTEXT_H */ --- linux-4.8.0.orig/arch/x86/include/asm/mpspec.h +++ linux-4.8.0/arch/x86/include/asm/mpspec.h @@ -6,7 +6,6 @@ #include #include -extern int apic_version[]; extern int pic_mode; #ifdef CONFIG_X86_32 @@ -40,6 +39,7 @@ extern DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES); extern unsigned int boot_cpu_physical_apicid; +extern u8 boot_cpu_apic_version; extern unsigned long mp_lapic_addr; #ifdef CONFIG_X86_LOCAL_APIC --- linux-4.8.0.orig/arch/x86/include/asm/mshyperv.h +++ linux-4.8.0/arch/x86/include/asm/mshyperv.h @@ -3,8 +3,28 @@ #include #include +#include #include +/* + * The below CPUID leaves are present if VersionAndFeatures.HypervisorPresent + * is set by CPUID(HVCPUID_VERSION_FEATURES). + */ +enum hv_cpuid_function { + HVCPUID_VERSION_FEATURES = 0x00000001, + HVCPUID_VENDOR_MAXFUNCTION = 0x40000000, + HVCPUID_INTERFACE = 0x40000001, + + /* + * The remaining functions depend on the value of + * HVCPUID_INTERFACE + */ + HVCPUID_VERSION = 0x40000002, + HVCPUID_FEATURES = 0x40000003, + HVCPUID_ENLIGHTENMENT_INFO = 0x40000004, + HVCPUID_IMPLEMENTATION_LIMITS = 0x40000005, +}; + struct ms_hyperv_info { u32 features; u32 misc_features; @@ -13,6 +33,128 @@ extern struct ms_hyperv_info ms_hyperv; +/* + * Declare the MSR used to setup pages used to communicate with the hypervisor. + */ +union hv_x64_msr_hypercall_contents { + u64 as_uint64; + struct { + u64 enable:1; + u64 reserved:11; + u64 guest_physical_address:52; + }; +}; + +/* + * TSC page layout. + */ + +struct ms_hyperv_tsc_page { + volatile u32 tsc_sequence; + u32 reserved1; + volatile u64 tsc_scale; + volatile s64 tsc_offset; + u64 reserved2[509]; +}; + +/* + * The guest OS needs to register the guest ID with the hypervisor. + * The guest ID is a 64 bit entity and the structure of this ID is + * specified in the Hyper-V specification: + * + * msdn.microsoft.com/en-us/library/windows/hardware/ff542653%28v=vs.85%29.aspx + * + * While the current guideline does not specify how Linux guest ID(s) + * need to be generated, our plan is to publish the guidelines for + * Linux and other guest operating systems that currently are hosted + * on Hyper-V. The implementation here conforms to this yet + * unpublished guidelines. + * + * + * Bit(s) + * 63 - Indicates if the OS is Open Source or not; 1 is Open Source + * 62:56 - Os Type; Linux is 0x100 + * 55:48 - Distro specific identification + * 47:16 - Linux kernel version number + * 15:0 - Distro specific identification + * + * + */ + +#define HV_LINUX_VENDOR_ID 0x8100 + +/* + * Generate the guest ID based on the guideline described above. + */ + +static inline __u64 generate_guest_id(__u64 d_info1, __u64 kernel_version, + __u64 d_info2) +{ + __u64 guest_id = 0; + + guest_id = (((__u64)HV_LINUX_VENDOR_ID) << 48); + guest_id |= (d_info1 << 48); + guest_id |= (kernel_version << 16); + guest_id |= d_info2; + + return guest_id; +} + + +/* Free the message slot and signal end-of-message if required */ +static inline void vmbus_signal_eom(struct hv_message *msg, u32 old_msg_type) +{ + /* + * On crash we're reading some other CPU's message page and we need + * to be careful: this other CPU may already had cleared the header + * and the host may already had delivered some other message there. + * In case we blindly write msg->header.message_type we're going + * to lose it. We can still lose a message of the same type but + * we count on the fact that there can only be one + * CHANNELMSG_UNLOAD_RESPONSE and we don't care about other messages + * on crash. + */ + if (cmpxchg(&msg->header.message_type, old_msg_type, + HVMSG_NONE) != old_msg_type) + return; + + /* + * Make sure the write to MessageType (ie set to + * HVMSG_NONE) happens before we read the + * MessagePending and EOMing. Otherwise, the EOMing + * will not deliver any more messages since there is + * no empty slot + */ + mb(); + + if (msg->header.message_flags.msg_pending) { + /* + * This will cause message queue rescan to + * possibly deliver another msg from the + * hypervisor + */ + wrmsrl(HV_X64_MSR_EOM, 0); + } +} + +#define hv_get_current_tick(tick) rdmsrl(HV_X64_MSR_TIME_REF_COUNT, tick) +#define hv_init_timer(timer, tick) wrmsrl(timer, tick) +#define hv_init_timer_config(config, val) wrmsrl(config, val) + +#define hv_get_simp(val) rdmsrl(HV_X64_MSR_SIMP, val) +#define hv_set_simp(val) wrmsrl(HV_X64_MSR_SIMP, val) + +#define hv_get_siefp(val) rdmsrl(HV_X64_MSR_SIEFP, val) +#define hv_set_siefp(val) wrmsrl(HV_X64_MSR_SIEFP, val) + +#define hv_get_synic_state(val) rdmsrl(HV_X64_MSR_SCONTROL, val) +#define hv_set_synic_state(val) wrmsrl(HV_X64_MSR_SCONTROL, val) + +#define hv_get_vp_index(index) rdmsrl(HV_X64_MSR_VP_INDEX, index) + +#define hv_get_synint_state(int_num, val) rdmsrl(int_num, val) +#define hv_set_synint_state(int_num, val) wrmsrl(int_num, val) + void hyperv_callback_vector(void); #ifdef CONFIG_TRACING #define trace_hyperv_callback_vector hyperv_callback_vector @@ -25,4 +167,13 @@ void hv_remove_kexec_handler(void); void hv_setup_crash_handler(void (*handler)(struct pt_regs *regs)); void hv_remove_crash_handler(void); + +#if IS_ENABLED(CONFIG_HYPERV) +extern struct clocksource *hyperv_cs; + +void hyperv_init(void); +void hyperv_report_panic(struct pt_regs *regs); +bool hv_is_hypercall_page_setup(void); +void hyperv_cleanup(void); +#endif #endif --- linux-4.8.0.orig/arch/x86/include/asm/pkeys.h +++ linux-4.8.0/arch/x86/include/asm/pkeys.h @@ -10,7 +10,6 @@ * Try to dedicate one of the protection keys to be used as an * execute-only protection key. */ -#define PKEY_DEDICATED_EXECUTE_ONLY 15 extern int __execute_only_pkey(struct mm_struct *mm); static inline int execute_only_pkey(struct mm_struct *mm) { @@ -31,4 +30,76 @@ return __arch_override_mprotect_pkey(vma, prot, pkey); } +extern int __arch_set_user_pkey_access(struct task_struct *tsk, int pkey, + unsigned long init_val); + +#define ARCH_VM_PKEY_FLAGS (VM_PKEY_BIT0 | VM_PKEY_BIT1 | VM_PKEY_BIT2 | VM_PKEY_BIT3) + +#define mm_pkey_allocation_map(mm) (mm->context.pkey_allocation_map) +#define mm_set_pkey_allocated(mm, pkey) do { \ + mm_pkey_allocation_map(mm) |= (1U << pkey); \ +} while (0) +#define mm_set_pkey_free(mm, pkey) do { \ + mm_pkey_allocation_map(mm) &= ~(1U << pkey); \ +} while (0) + +static inline +bool mm_pkey_is_allocated(struct mm_struct *mm, int pkey) +{ + return mm_pkey_allocation_map(mm) & (1U << pkey); +} + +/* + * Returns a positive, 4-bit key on success, or -1 on failure. + */ +static inline +int mm_pkey_alloc(struct mm_struct *mm) +{ + /* + * Note: this is the one and only place we make sure + * that the pkey is valid as far as the hardware is + * concerned. The rest of the kernel trusts that + * only good, valid pkeys come out of here. + */ + u16 all_pkeys_mask = ((1U << arch_max_pkey()) - 1); + int ret; + + /* + * Are we out of pkeys? We must handle this specially + * because ffz() behavior is undefined if there are no + * zeros. + */ + if (mm_pkey_allocation_map(mm) == all_pkeys_mask) + return -1; + + ret = ffz(mm_pkey_allocation_map(mm)); + + mm_set_pkey_allocated(mm, ret); + + return ret; +} + +static inline +int mm_pkey_free(struct mm_struct *mm, int pkey) +{ + /* + * pkey 0 is special, always allocated and can never + * be freed. + */ + if (!pkey) + return -EINVAL; + if (!mm_pkey_is_allocated(mm, pkey)) + return -EINVAL; + + mm_set_pkey_free(mm, pkey); + + return 0; +} + +extern int arch_set_user_pkey_access(struct task_struct *tsk, int pkey, + unsigned long init_val); +extern int __arch_set_user_pkey_access(struct task_struct *tsk, int pkey, + unsigned long init_val); +extern void copy_init_pkru_to_fpregs(void); + #endif /*_ASM_X86_PKEYS_H */ --- linux-4.8.0.orig/arch/x86/include/asm/trace/exceptions.h +++ linux-4.8.0/arch/x86/include/asm/trace/exceptions.h @@ -6,7 +6,7 @@ #include -extern void trace_irq_vector_regfunc(void); +extern int trace_irq_vector_regfunc(void); extern void trace_irq_vector_unregfunc(void); DECLARE_EVENT_CLASS(x86_exceptions, --- linux-4.8.0.orig/arch/x86/include/asm/trace/irq_vectors.h +++ linux-4.8.0/arch/x86/include/asm/trace/irq_vectors.h @@ -6,7 +6,7 @@ #include -extern void trace_irq_vector_regfunc(void); +extern int trace_irq_vector_regfunc(void); extern void trace_irq_vector_unregfunc(void); DECLARE_EVENT_CLASS(x86_irq_vector, --- linux-4.8.0.orig/arch/x86/include/uapi/asm/bootparam.h +++ linux-4.8.0/arch/x86/include/uapi/asm/bootparam.h @@ -134,7 +134,8 @@ __u8 eddbuf_entries; /* 0x1e9 */ __u8 edd_mbr_sig_buf_entries; /* 0x1ea */ __u8 kbd_status; /* 0x1eb */ - __u8 _pad5[3]; /* 0x1ec */ + __u8 secure_boot; /* 0x1ec */ + __u8 _pad5[2]; /* 0x1ed */ /* * The sentinel is set to a nonzero value (0xff) in header.S. * --- linux-4.8.0.orig/arch/x86/include/uapi/asm/hyperv.h +++ linux-4.8.0/arch/x86/include/uapi/asm/hyperv.h @@ -73,6 +73,9 @@ */ #define HV_X64_MSR_STAT_PAGES_AVAILABLE (1 << 8) +/* Crash MSR available */ +#define HV_FEATURE_GUEST_CRASH_MSR_AVAILABLE (1 << 10) + /* * Feature identification: EBX indicates which flags were specified at * partition creation. The format is the same as the partition creation @@ -144,6 +147,11 @@ */ #define HV_X64_RELAXED_TIMING_RECOMMENDED (1 << 5) +/* + * Crash notification flag. + */ +#define HV_CRASH_CTL_CRASH_NOTIFY (1ULL << 63) + /* MSR used to identify the guest OS. */ #define HV_X64_MSR_GUEST_OS_ID 0x40000000 --- linux-4.8.0.orig/arch/x86/kernel/acpi/boot.c +++ linux-4.8.0/arch/x86/kernel/acpi/boot.c @@ -182,7 +182,7 @@ } if (boot_cpu_physical_apicid != -1U) - ver = apic_version[boot_cpu_physical_apicid]; + ver = boot_cpu_apic_version; cpu = generic_processor_info(id, ver); if (cpu >= 0) @@ -453,6 +453,7 @@ polarity = acpi_sci_flags & ACPI_MADT_POLARITY_MASK; mp_override_legacy_irq(bus_irq, polarity, trigger, gsi); + acpi_penalize_sci_irq(bus_irq, trigger, polarity); /* * stash over-ride to indicate we've been here --- linux-4.8.0.orig/arch/x86/kernel/apic/apic.c +++ linux-4.8.0/arch/x86/kernel/apic/apic.c @@ -64,6 +64,8 @@ unsigned int boot_cpu_physical_apicid = -1U; EXPORT_SYMBOL_GPL(boot_cpu_physical_apicid); +u8 boot_cpu_apic_version; + /* * The highest APIC ID seen during enumeration. */ @@ -1816,8 +1818,7 @@ * since smp_sanity_check is prepared for such a case * and disable smp mode */ - apic_version[new_apicid] = - GET_APIC_VERSION(apic_read(APIC_LVR)); + boot_cpu_apic_version = GET_APIC_VERSION(apic_read(APIC_LVR)); } } @@ -1832,13 +1833,10 @@ } if (boot_cpu_physical_apicid == -1U) { boot_cpu_physical_apicid = read_apic_id(); - apic_version[boot_cpu_physical_apicid] = - GET_APIC_VERSION(apic_read(APIC_LVR)); + boot_cpu_apic_version = GET_APIC_VERSION(apic_read(APIC_LVR)); } } -int apic_version[MAX_LOCAL_APIC]; - /* * Local APIC interrupts */ @@ -2130,11 +2128,10 @@ cpu, apicid); version = 0x10; } - apic_version[apicid] = version; - if (version != apic_version[boot_cpu_physical_apicid]) { + if (version != boot_cpu_apic_version) { pr_warning("BIOS bug: APIC version mismatch, boot CPU: %x, CPU %d: version %x\n", - apic_version[boot_cpu_physical_apicid], cpu, version); + boot_cpu_apic_version, cpu, version); } physid_set(apicid, phys_cpu_present_map); @@ -2277,7 +2274,7 @@ * Complain if the BIOS pretends there is one. */ if (!boot_cpu_has(X86_FEATURE_APIC) && - APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) { + APIC_INTEGRATED(boot_cpu_apic_version)) { pr_err("BIOS bug, local APIC 0x%x not detected!...\n", boot_cpu_physical_apicid); return -1; --- linux-4.8.0.orig/arch/x86/kernel/apic/io_apic.c +++ linux-4.8.0/arch/x86/kernel/apic/io_apic.c @@ -1593,7 +1593,7 @@ * no meaning without the serial APIC bus. */ if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) - || APIC_XAPIC(apic_version[boot_cpu_physical_apicid])) + || APIC_XAPIC(boot_cpu_apic_version)) return; setup_ioapic_ids_from_mpc_nocheck(); } @@ -2423,7 +2423,7 @@ static u8 io_apic_unique_id(int idx, u8 id) { if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) && - !APIC_XAPIC(apic_version[boot_cpu_physical_apicid])) + !APIC_XAPIC(boot_cpu_apic_version)) return io_apic_get_unique_id(idx, id); else return id; --- linux-4.8.0.orig/arch/x86/kernel/apic/probe_32.c +++ linux-4.8.0/arch/x86/kernel/apic/probe_32.c @@ -152,7 +152,7 @@ void __init default_setup_apic_routing(void) { - int version = apic_version[boot_cpu_physical_apicid]; + int version = boot_cpu_apic_version; if (num_possible_cpus() > 8) { switch (boot_cpu_data.x86_vendor) { --- linux-4.8.0.orig/arch/x86/kernel/apic/vector.c +++ linux-4.8.0/arch/x86/kernel/apic/vector.c @@ -661,11 +661,28 @@ */ void irq_force_complete_move(struct irq_desc *desc) { - struct irq_data *irqdata = irq_desc_get_irq_data(desc); - struct apic_chip_data *data = apic_chip_data(irqdata); - struct irq_cfg *cfg = data ? &data->cfg : NULL; + struct irq_data *irqdata; + struct apic_chip_data *data; + struct irq_cfg *cfg; unsigned int cpu; + /* + * The function is called for all descriptors regardless of which + * irqdomain they belong to. For example if an IRQ is provided by + * an irq_chip as part of a GPIO driver, the chip data for that + * descriptor is specific to the irq_chip in question. + * + * Check first that the chip_data is what we expect + * (apic_chip_data) before touching it any further. + */ + irqdata = irq_domain_get_irq_data(x86_vector_domain, + irq_desc_get_irq(desc)); + if (!irqdata) + return; + + data = apic_chip_data(irqdata); + cfg = data ? &data->cfg : NULL; + if (!cfg) return; --- linux-4.8.0.orig/arch/x86/kernel/cpu/amd.c +++ linux-4.8.0/arch/x86/kernel/cpu/amd.c @@ -347,7 +347,6 @@ #ifdef CONFIG_SMP unsigned bits; int cpu = smp_processor_id(); - unsigned int socket_id, core_complex_id; bits = c->x86_coreid_bits; /* Low order bits define the core id (index of core in socket) */ @@ -365,10 +364,7 @@ if (c->x86 != 0x17 || !cpuid_edx(0x80000006)) return; - socket_id = (c->apicid >> bits) - 1; - core_complex_id = (c->apicid & ((1 << bits) - 1)) >> 3; - - per_cpu(cpu_llc_id, cpu) = (socket_id << 3) | core_complex_id; + per_cpu(cpu_llc_id, cpu) = c->apicid >> 3; #endif } --- linux-4.8.0.orig/arch/x86/kernel/cpu/microcode/amd.c +++ linux-4.8.0/arch/x86/kernel/cpu/microcode/amd.c @@ -429,7 +429,7 @@ * We need the physical address of the container for both bitness since * boot_params.hdr.ramdisk_image is a physical address. */ - cont = __pa(container); + cont = __pa_nodebug(container); cont_va = container; #endif --- linux-4.8.0.orig/arch/x86/kernel/cpu/mshyperv.c +++ linux-4.8.0/arch/x86/kernel/cpu/mshyperv.c @@ -31,6 +31,7 @@ #include #include #include +#include struct ms_hyperv_info ms_hyperv; EXPORT_SYMBOL_GPL(ms_hyperv); @@ -133,33 +134,38 @@ return 0; } -static cycle_t read_hv_clock(struct clocksource *arg) +static unsigned char hv_get_nmi_reason(void) { - cycle_t current_tick; - /* - * Read the partition counter to get the current tick count. This count - * is set to 0 when the partition is created and is incremented in - * 100 nanosecond units. - */ - rdmsrl(HV_X64_MSR_TIME_REF_COUNT, current_tick); - return current_tick; + return 0; } -static struct clocksource hyperv_cs = { - .name = "hyperv_clocksource", - .rating = 400, /* use this when running on Hyperv*/ - .read = read_hv_clock, - .mask = CLOCKSOURCE_MASK(64), - .flags = CLOCK_SOURCE_IS_CONTINUOUS, -}; +#ifdef CONFIG_X86_LOCAL_APIC +/* + * Prior to WS2016 Debug-VM sends NMIs to all CPUs which makes + * it dificult to process CHANNELMSG_UNLOAD in case of crash. Handle + * unknown NMI on the first CPU which gets it. + */ +static int hv_nmi_unknown(unsigned int val, struct pt_regs *regs) +{ + static atomic_t nmi_cpu = ATOMIC_INIT(-1); -static unsigned char hv_get_nmi_reason(void) -{ - return 0; + if (!unknown_nmi_panic) + return NMI_DONE; + + if (atomic_cmpxchg(&nmi_cpu, -1, raw_smp_processor_id()) != -1) + return NMI_HANDLED; + + return NMI_DONE; } +#endif static void __init ms_hyperv_init_platform(void) { + int hv_host_info_eax; + int hv_host_info_ebx; + int hv_host_info_ecx; + int hv_host_info_edx; + /* * Extract the features and hints */ @@ -170,6 +176,21 @@ pr_info("HyperV: features 0x%x, hints 0x%x\n", ms_hyperv.features, ms_hyperv.hints); + /* + * Extract host information. + */ + if (cpuid_eax(HVCPUID_VENDOR_MAXFUNCTION) >= HVCPUID_VERSION) { + hv_host_info_eax = cpuid_eax(HVCPUID_VERSION); + hv_host_info_ebx = cpuid_ebx(HVCPUID_VERSION); + hv_host_info_ecx = cpuid_ecx(HVCPUID_VERSION); + hv_host_info_edx = cpuid_edx(HVCPUID_VERSION); + + pr_info("Hyper-V Host Build:%d-%d.%d-%d-%d.%d\n", + hv_host_info_eax, hv_host_info_ebx >> 16, + hv_host_info_ebx & 0xFFFF, hv_host_info_ecx, + hv_host_info_edx >> 24, hv_host_info_edx & 0xFFFFFF); + } + #ifdef CONFIG_X86_LOCAL_APIC if (ms_hyperv.features & HV_X64_MSR_APIC_FREQUENCY_AVAILABLE) { /* @@ -183,10 +204,10 @@ pr_info("HyperV: LAPIC Timer Frequency: %#x\n", lapic_timer_frequency); } -#endif - if (ms_hyperv.features & HV_X64_MSR_TIME_REF_COUNT_AVAILABLE) - clocksource_register_hz(&hyperv_cs, NSEC_PER_SEC/100); + register_nmi_handler(NMI_UNKNOWN, hv_nmi_unknown, NMI_FLAG_FIRST, + "hv_nmi_unknown"); +#endif #ifdef CONFIG_X86_IO_APIC no_timer_check = 1; @@ -204,6 +225,13 @@ */ if (efi_enabled(EFI_BOOT)) x86_platform.get_nmi_reason = hv_get_nmi_reason; + +#if IS_ENABLED(CONFIG_HYPERV) + /* + * Setup the hook to get control post apic initialization. + */ + x86_platform.apic_post_init = hyperv_init; +#endif } const __refconst struct hypervisor_x86 x86_hyper_ms_hyperv = { --- linux-4.8.0.orig/arch/x86/kernel/cpu/scattered.c +++ linux-4.8.0/arch/x86/kernel/cpu/scattered.c @@ -32,6 +32,8 @@ static const struct cpuid_bit cpuid_bits[] = { { X86_FEATURE_INTEL_PT, CR_EBX,25, 0x00000007, 0 }, + { X86_FEATURE_AVX512_4VNNIW, CR_EDX, 2, 0x00000007, 0 }, + { X86_FEATURE_AVX512_4FMAPS, CR_EDX, 3, 0x00000007, 0 }, { X86_FEATURE_APERFMPERF, CR_ECX, 0, 0x00000006, 0 }, { X86_FEATURE_EPB, CR_ECX, 3, 0x00000006, 0 }, { X86_FEATURE_HW_PSTATE, CR_EDX, 7, 0x80000007, 0 }, --- linux-4.8.0.orig/arch/x86/kernel/e820.c +++ linux-4.8.0/arch/x86/kernel/e820.c @@ -754,7 +754,7 @@ /* * Find the highest page frame number we have available */ -static unsigned long __init e820_end_pfn(unsigned long limit_pfn) +static unsigned long __init e820_end_pfn(unsigned long limit_pfn, unsigned type) { int i; unsigned long last_pfn = 0; @@ -765,11 +765,7 @@ unsigned long start_pfn; unsigned long end_pfn; - /* - * Persistent memory is accounted as ram for purposes of - * establishing max_pfn and mem_map. - */ - if (ei->type != E820_RAM && ei->type != E820_PRAM) + if (ei->type != type) continue; start_pfn = ei->addr >> PAGE_SHIFT; @@ -794,12 +790,12 @@ } unsigned long __init e820_end_of_ram_pfn(void) { - return e820_end_pfn(MAX_ARCH_PFN); + return e820_end_pfn(MAX_ARCH_PFN, E820_RAM); } unsigned long __init e820_end_of_low_ram_pfn(void) { - return e820_end_pfn(1UL << (32-PAGE_SHIFT)); + return e820_end_pfn(1UL << (32 - PAGE_SHIFT), E820_RAM); } static void early_panic(char *msg) --- linux-4.8.0.orig/arch/x86/kernel/early-quirks.c +++ linux-4.8.0/arch/x86/kernel/early-quirks.c @@ -317,16 +317,11 @@ static phys_addr_t __init i865_stolen_base(int num, int slot, int func, size_t stolen_size) { - u16 toud; + u16 toud = 0; - /* - * FIXME is the graphics stolen memory region - * always at TOUD? Ie. is it always the last - * one to be allocated by the BIOS? - */ toud = read_pci_config_16(0, 0, 0, I865_TOUD); - return (phys_addr_t)toud << 16; + return (phys_addr_t)(toud << 16) + i845_tseg_size(); } static phys_addr_t __init gen3_stolen_base(int num, int slot, int func, --- linux-4.8.0.orig/arch/x86/kernel/fpu/core.c +++ linux-4.8.0/arch/x86/kernel/fpu/core.c @@ -12,6 +12,7 @@ #include #include +#include #define CREATE_TRACE_POINTS #include @@ -505,6 +506,9 @@ copy_kernel_to_fxregs(&init_fpstate.fxsave); else copy_kernel_to_fregs(&init_fpstate.fsave); + + if (boot_cpu_has(X86_FEATURE_OSPKE)) + copy_init_pkru_to_fpregs(); } /* @@ -517,14 +521,14 @@ { WARN_ON_FPU(fpu != ¤t->thread.fpu); /* Almost certainly an anomaly */ - if (!use_eager_fpu() || !static_cpu_has(X86_FEATURE_FPU)) { - /* FPU state will be reallocated lazily at the first use. */ - fpu__drop(fpu); - } else { - if (!fpu->fpstate_active) { - fpu__activate_curr(fpu); - user_fpu_begin(); - } + fpu__drop(fpu); + + /* + * Make sure fpstate is cleared and initialized. + */ + if (static_cpu_has(X86_FEATURE_FPU)) { + fpu__activate_curr(fpu); + user_fpu_begin(); copy_init_fpstate_to_fpregs(); } } --- linux-4.8.0.orig/arch/x86/kernel/fpu/xstate.c +++ linux-4.8.0/arch/x86/kernel/fpu/xstate.c @@ -5,6 +5,7 @@ */ #include #include +#include #include #include @@ -73,6 +74,8 @@ setup_clear_cpu_cap(X86_FEATURE_MPX); setup_clear_cpu_cap(X86_FEATURE_XGETBV1); setup_clear_cpu_cap(X86_FEATURE_PKU); + setup_clear_cpu_cap(X86_FEATURE_AVX512_4VNNIW); + setup_clear_cpu_cap(X86_FEATURE_AVX512_4FMAPS); } /* @@ -866,9 +869,10 @@ return get_xsave_addr(&fpu->state.xsave, xsave_state); } +#ifdef CONFIG_ARCH_HAS_PKEYS + #define NR_VALID_PKRU_BITS (CONFIG_NR_PROTECTION_KEYS * 2) #define PKRU_VALID_MASK (NR_VALID_PKRU_BITS - 1) - /* * This will go out and modify PKRU register to set the access * rights for @pkey to @init_val. @@ -914,6 +918,7 @@ return 0; } +#endif /* ! CONFIG_ARCH_HAS_PKEYS */ /* * This is similar to user_regset_copyout(), but will not add offset to --- linux-4.8.0.orig/arch/x86/kernel/hpet.c +++ linux-4.8.0/arch/x86/kernel/hpet.c @@ -756,10 +756,104 @@ /* * Clock source related code */ +#if defined(CONFIG_SMP) && defined(CONFIG_64BIT) +/* + * Reading the HPET counter is a very slow operation. If a large number of + * CPUs are trying to access the HPET counter simultaneously, it can cause + * massive delay and slow down system performance dramatically. This may + * happen when HPET is the default clock source instead of TSC. For a + * really large system with hundreds of CPUs, the slowdown may be so + * severe that it may actually crash the system because of a NMI watchdog + * soft lockup, for example. + * + * If multiple CPUs are trying to access the HPET counter at the same time, + * we don't actually need to read the counter multiple times. Instead, the + * other CPUs can use the counter value read by the first CPU in the group. + * + * This special feature is only enabled on x86-64 systems. It is unlikely + * that 32-bit x86 systems will have enough CPUs to require this feature + * with its associated locking overhead. And we also need 64-bit atomic + * read. + * + * The lock and the hpet value are stored together and can be read in a + * single atomic 64-bit read. It is explicitly assumed that arch_spinlock_t + * is 32 bits in size. + */ +union hpet_lock { + struct { + arch_spinlock_t lock; + u32 value; + }; + u64 lockval; +}; + +static union hpet_lock hpet __cacheline_aligned = { + { .lock = __ARCH_SPIN_LOCK_UNLOCKED, }, +}; + +static cycle_t read_hpet(struct clocksource *cs) +{ + unsigned long flags; + union hpet_lock old, new; + + BUILD_BUG_ON(sizeof(union hpet_lock) != 8); + + /* + * Read HPET directly if in NMI. + */ + if (in_nmi()) + return (cycle_t)hpet_readl(HPET_COUNTER); + + /* + * Read the current state of the lock and HPET value atomically. + */ + old.lockval = READ_ONCE(hpet.lockval); + + if (arch_spin_is_locked(&old.lock)) + goto contended; + + local_irq_save(flags); + if (arch_spin_trylock(&hpet.lock)) { + new.value = hpet_readl(HPET_COUNTER); + /* + * Use WRITE_ONCE() to prevent store tearing. + */ + WRITE_ONCE(hpet.value, new.value); + arch_spin_unlock(&hpet.lock); + local_irq_restore(flags); + return (cycle_t)new.value; + } + local_irq_restore(flags); + +contended: + /* + * Contended case + * -------------- + * Wait until the HPET value change or the lock is free to indicate + * its value is up-to-date. + * + * It is possible that old.value has already contained the latest + * HPET value while the lock holder was in the process of releasing + * the lock. Checking for lock state change will enable us to return + * the value immediately instead of waiting for the next HPET reader + * to come along. + */ + do { + cpu_relax(); + new.lockval = READ_ONCE(hpet.lockval); + } while ((new.value == old.value) && arch_spin_is_locked(&new.lock)); + + return (cycle_t)new.value; +} +#else +/* + * For UP or 32-bit. + */ static cycle_t read_hpet(struct clocksource *cs) { return (cycle_t)hpet_readl(HPET_COUNTER); } +#endif static struct clocksource clocksource_hpet = { .name = "hpet", --- linux-4.8.0.orig/arch/x86/kernel/ioport.c +++ linux-4.8.0/arch/x86/kernel/ioport.c @@ -15,6 +15,7 @@ #include #include #include +#include #include /* @@ -28,7 +29,7 @@ if ((from + num <= from) || (from + num > IO_BITMAP_BITS)) return -EINVAL; - if (turn_on && !capable(CAP_SYS_RAWIO)) + if (turn_on && (!capable(CAP_SYS_RAWIO) || secure_modules())) return -EPERM; /* @@ -108,7 +109,7 @@ return -EINVAL; /* Trying to gain more privileges? */ if (level > old) { - if (!capable(CAP_SYS_RAWIO)) + if (!capable(CAP_SYS_RAWIO) || secure_modules()) return -EPERM; } regs->flags = (regs->flags & ~X86_EFLAGS_IOPL) | --- linux-4.8.0.orig/arch/x86/kernel/kexec-bzimage64.c +++ linux-4.8.0/arch/x86/kernel/kexec-bzimage64.c @@ -179,6 +179,7 @@ if (efi_enabled(EFI_OLD_MEMMAP)) return 0; + params->secure_boot = boot_params.secure_boot; ei->efi_loader_signature = current_ei->efi_loader_signature; ei->efi_systab = current_ei->efi_systab; ei->efi_systab_hi = current_ei->efi_systab_hi; --- linux-4.8.0.orig/arch/x86/kernel/msr.c +++ linux-4.8.0/arch/x86/kernel/msr.c @@ -83,6 +83,9 @@ int err = 0; ssize_t bytes = 0; + if (secure_modules()) + return -EPERM; + if (count % 8) return -EINVAL; /* Invalid chunk size */ @@ -130,6 +133,10 @@ err = -EBADF; break; } + if (secure_modules()) { + err = -EPERM; + break; + } if (copy_from_user(®s, uregs, sizeof regs)) { err = -EFAULT; break; --- linux-4.8.0.orig/arch/x86/kernel/process_64.c +++ linux-4.8.0/arch/x86/kernel/process_64.c @@ -110,12 +110,13 @@ get_debugreg(d7, 7); /* Only print out debug registers if they are in their non-default state. */ - if ((d0 == 0) && (d1 == 0) && (d2 == 0) && (d3 == 0) && - (d6 == DR6_RESERVED) && (d7 == 0x400)) - return; - - printk(KERN_DEFAULT "DR0: %016lx DR1: %016lx DR2: %016lx\n", d0, d1, d2); - printk(KERN_DEFAULT "DR3: %016lx DR6: %016lx DR7: %016lx\n", d3, d6, d7); + if (!((d0 == 0) && (d1 == 0) && (d2 == 0) && (d3 == 0) && + (d6 == DR6_RESERVED) && (d7 == 0x400))) { + printk(KERN_DEFAULT "DR0: %016lx DR1: %016lx DR2: %016lx\n", + d0, d1, d2); + printk(KERN_DEFAULT "DR3: %016lx DR6: %016lx DR7: %016lx\n", + d3, d6, d7); + } if (boot_cpu_has(X86_FEATURE_OSPKE)) printk(KERN_DEFAULT "PKRU: %08x\n", read_pkru()); --- linux-4.8.0.orig/arch/x86/kernel/ptrace.c +++ linux-4.8.0/arch/x86/kernel/ptrace.c @@ -173,8 +173,8 @@ return sp; prev_esp = (u32 *)(context); - if (prev_esp) - return (unsigned long)prev_esp; + if (*prev_esp) + return (unsigned long)*prev_esp; return (unsigned long)regs; } --- linux-4.8.0.orig/arch/x86/kernel/reboot.c +++ linux-4.8.0/arch/x86/kernel/reboot.c @@ -436,7 +436,46 @@ DMI_MATCH(DMI_PRODUCT_NAME, "VGN-Z540N"), }, }, - + { /* Handle problems with rebooting on the Latitude E6520. */ + .callback = set_pci_reboot, + .ident = "Dell Latitude E6520", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "Latitude E6520"), + }, + }, + { /* Handle problems with rebooting on the OptiPlex 790. */ + .callback = set_pci_reboot, + .ident = "Dell OptiPlex 790", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex 790"), + }, + }, + { /* Handle problems with rebooting on the OptiPlex 990. */ + .callback = set_pci_reboot, + .ident = "Dell OptiPlex 990", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex 990"), + }, + }, + { /* Handle problems with rebooting on the Latitude E6220. */ + .callback = set_pci_reboot, + .ident = "Dell Latitude E6220", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "Latitude E6220"), + }, + }, + { /* Handle problems with rebooting on the OptiPlex 390. */ + .callback = set_pci_reboot, + .ident = "Dell OptiPlex 390", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex 390"), + }, + }, { } }; --- linux-4.8.0.orig/arch/x86/kernel/setup.c +++ linux-4.8.0/arch/x86/kernel/setup.c @@ -1160,6 +1160,19 @@ io_delay_init(); +#ifdef CONFIG_EFI_SECURE_BOOT_SIG_ENFORCE + if (boot_params.secure_boot == EFI_SECURE_BOOT) { + set_bit(EFI_SECURE_BOOT, &efi.flags); + enforce_signed_modules(); + pr_info("Secure boot enabled\n"); + } + else if (boot_params.secure_boot == EFI_MOKSBSTATE_DISABLED) { + set_bit(EFI_MOKSBSTATE_DISABLED, &efi.flags); + boot_params.secure_boot = 0; + pr_info("Secure boot MOKSBState disabled\n"); + } +#endif + /* * Parse the ACPI tables for possible boot-time SMP configuration. */ @@ -1222,11 +1235,16 @@ if (smp_found_config) get_smp_config(); + /* + * Systems w/o ACPI and mptables might not have it mapped the local + * APIC yet, but prefill_possible_map() might need to access it. + */ + init_apic_mappings(); + prefill_possible_map(); init_cpu_to_node(); - init_apic_mappings(); io_apic_init_mappings(); kvm_guest_init(); --- linux-4.8.0.orig/arch/x86/kernel/smpboot.c +++ linux-4.8.0/arch/x86/kernel/smpboot.c @@ -690,7 +690,7 @@ * Give the other CPU some time to accept the IPI. */ udelay(200); - if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) { + if (APIC_INTEGRATED(boot_cpu_apic_version)) { maxlvt = lapic_get_maxlvt(); if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */ apic_write(APIC_ESR, 0); @@ -717,7 +717,7 @@ /* * Be paranoid about clearing APIC errors. */ - if (APIC_INTEGRATED(apic_version[phys_apicid])) { + if (APIC_INTEGRATED(boot_cpu_apic_version)) { if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */ apic_write(APIC_ESR, 0); apic_read(APIC_ESR); @@ -756,7 +756,7 @@ * Determine this based on the APIC version. * If we don't have an integrated APIC, don't send the STARTUP IPIs. */ - if (APIC_INTEGRATED(apic_version[phys_apicid])) + if (APIC_INTEGRATED(boot_cpu_apic_version)) num_starts = 2; else num_starts = 0; @@ -994,7 +994,7 @@ /* * Be paranoid about clearing APIC errors. */ - if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) { + if (APIC_INTEGRATED(boot_cpu_apic_version)) { apic_write(APIC_ESR, 0); apic_read(APIC_ESR); } @@ -1249,7 +1249,7 @@ /* * If we couldn't find a local APIC, then get out of here now! */ - if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid]) && + if (APIC_INTEGRATED(boot_cpu_apic_version) && !boot_cpu_has(X86_FEATURE_APIC)) { if (!disable_apic) { pr_err("BIOS bug, local APIC #%d not detected!...\n", @@ -1406,9 +1406,23 @@ { int i, possible; - /* no processor from mptable or madt */ - if (!num_processors) - num_processors = 1; + /* No boot processor was found in mptable or ACPI MADT */ + if (!num_processors) { + if (boot_cpu_has(X86_FEATURE_APIC)) { + int apicid = boot_cpu_physical_apicid; + int cpu = hard_smp_processor_id(); + + pr_warn("Boot CPU (id %d) not listed by BIOS\n", cpu); + + /* Make sure boot cpu is enumerated */ + if (apic->cpu_present_to_apicid(0) == BAD_APICID && + apic->apic_id_valid(apicid)) + generic_processor_info(apicid, boot_cpu_apic_version); + } + + if (!num_processors) + num_processors = 1; + } i = setup_max_cpus ?: 1; if (setup_possible_cpus == -1) { --- linux-4.8.0.orig/arch/x86/kernel/sys_x86_64.c +++ linux-4.8.0/arch/x86/kernel/sys_x86_64.c @@ -143,7 +143,7 @@ addr = PAGE_ALIGN(addr); vma = find_vma(mm, addr); if (end - len >= addr && - (!vma || addr + len <= vma->vm_start)) + (!vma || addr + len <= vm_start_gap(vma))) return addr; } @@ -186,7 +186,7 @@ addr = PAGE_ALIGN(addr); vma = find_vma(mm, addr); if (TASK_SIZE - len >= addr && - (!vma || addr + len <= vma->vm_start)) + (!vma || addr + len <= vm_start_gap(vma))) return addr; } --- linux-4.8.0.orig/arch/x86/kernel/tracepoint.c +++ linux-4.8.0/arch/x86/kernel/tracepoint.c @@ -34,7 +34,7 @@ local_irq_restore(flags); } -void trace_irq_vector_regfunc(void) +int trace_irq_vector_regfunc(void) { mutex_lock(&irq_vector_mutex); if (!trace_irq_vector_refcount) { @@ -44,6 +44,7 @@ } trace_irq_vector_refcount++; mutex_unlock(&irq_vector_mutex); + return 0; } void trace_irq_vector_unregfunc(void) --- linux-4.8.0.orig/arch/x86/kernel/tsc.c +++ linux-4.8.0/arch/x86/kernel/tsc.c @@ -1378,6 +1378,9 @@ if (!tsc_disabled && !cpu_has(&cpu_data(cpu), X86_FEATURE_CONSTANT_TSC)) return 0; + if (cpu != 0) + return cpu_data(0).loops_per_jiffy; + if (!mask) return 0; --- linux-4.8.0.orig/arch/x86/kvm/Makefile +++ linux-4.8.0/arch/x86/kvm/Makefile @@ -13,7 +13,7 @@ kvm-y += x86.o mmu.o emulate.o i8259.o irq.o lapic.o \ i8254.o ioapic.o irq_comm.o cpuid.o pmu.o mtrr.o \ - hyperv.o page_track.o + hyperv.o page_track.o debugfs.o kvm-$(CONFIG_KVM_DEVICE_ASSIGNMENT) += assigned-dev.o iommu.o --- linux-4.8.0.orig/arch/x86/kvm/debugfs.c +++ linux-4.8.0/arch/x86/kvm/debugfs.c @@ -0,0 +1,20 @@ +/* + * Kernel-based Virtual Machine driver for Linux + * + * Copyright 2016 Red Hat, Inc. and/or its affiliates. + * + * This work is licensed under the terms of the GNU GPL, version 2. See + * the COPYING file in the top-level directory. + * + */ +#include + +bool kvm_arch_has_vcpu_debugfs(void) +{ + return false; +} + +int kvm_arch_create_vcpu_debugfs(struct kvm_vcpu *vcpu) +{ + return 0; +} --- linux-4.8.0.orig/arch/x86/kvm/emulate.c +++ linux-4.8.0/arch/x86/kvm/emulate.c @@ -2105,16 +2105,10 @@ static int em_jmp_far(struct x86_emulate_ctxt *ctxt) { int rc; - unsigned short sel, old_sel; - struct desc_struct old_desc, new_desc; - const struct x86_emulate_ops *ops = ctxt->ops; + unsigned short sel; + struct desc_struct new_desc; u8 cpl = ctxt->ops->cpl(ctxt); - /* Assignment of RIP may only fail in 64-bit mode */ - if (ctxt->mode == X86EMUL_MODE_PROT64) - ops->get_segment(ctxt, &old_sel, &old_desc, NULL, - VCPU_SREG_CS); - memcpy(&sel, ctxt->src.valptr + ctxt->op_bytes, 2); rc = __load_segment_descriptor(ctxt, sel, VCPU_SREG_CS, cpl, @@ -2124,12 +2118,10 @@ return rc; rc = assign_eip_far(ctxt, ctxt->src.val, &new_desc); - if (rc != X86EMUL_CONTINUE) { - WARN_ON(ctxt->mode != X86EMUL_MODE_PROT64); - /* assigning eip failed; restore the old cs */ - ops->set_segment(ctxt, old_sel, &old_desc, 0, VCPU_SREG_CS); - return rc; - } + /* Error handling is not implemented. */ + if (rc != X86EMUL_CONTINUE) + return X86EMUL_UNHANDLEABLE; + return rc; } @@ -2189,14 +2181,8 @@ { int rc; unsigned long eip, cs; - u16 old_cs; int cpl = ctxt->ops->cpl(ctxt); - struct desc_struct old_desc, new_desc; - const struct x86_emulate_ops *ops = ctxt->ops; - - if (ctxt->mode == X86EMUL_MODE_PROT64) - ops->get_segment(ctxt, &old_cs, &old_desc, NULL, - VCPU_SREG_CS); + struct desc_struct new_desc; rc = emulate_pop(ctxt, &eip, ctxt->op_bytes); if (rc != X86EMUL_CONTINUE) @@ -2213,10 +2199,10 @@ if (rc != X86EMUL_CONTINUE) return rc; rc = assign_eip_far(ctxt, eip, &new_desc); - if (rc != X86EMUL_CONTINUE) { - WARN_ON(ctxt->mode != X86EMUL_MODE_PROT64); - ops->set_segment(ctxt, old_cs, &old_desc, 0, VCPU_SREG_CS); - } + /* Error handling is not implemented. */ + if (rc != X86EMUL_CONTINUE) + return X86EMUL_UNHANDLEABLE; + return rc; } @@ -5045,7 +5031,7 @@ /* Decode and fetch the destination operand: register or memory. */ rc = decode_operand(ctxt, &ctxt->dst, (ctxt->d >> DstShift) & OpMask); - if (ctxt->rip_relative) + if (ctxt->rip_relative && likely(ctxt->memopp)) ctxt->memopp->addr.mem.ea = address_mask(ctxt, ctxt->memopp->addr.mem.ea + ctxt->_eip); --- linux-4.8.0.orig/arch/x86/kvm/ioapic.c +++ linux-4.8.0/arch/x86/kvm/ioapic.c @@ -94,7 +94,7 @@ static void rtc_irq_eoi_tracking_reset(struct kvm_ioapic *ioapic) { ioapic->rtc_status.pending_eoi = 0; - bitmap_zero(ioapic->rtc_status.dest_map.map, KVM_MAX_VCPUS); + bitmap_zero(ioapic->rtc_status.dest_map.map, KVM_MAX_VCPU_ID); } static void kvm_rtc_eoi_tracking_restore_all(struct kvm_ioapic *ioapic); @@ -594,7 +594,7 @@ ioapic->irr = 0; ioapic->irr_delivered = 0; ioapic->id = 0; - memset(ioapic->irq_eoi, 0x00, IOAPIC_NUM_PINS); + memset(ioapic->irq_eoi, 0x00, sizeof(ioapic->irq_eoi)); rtc_irq_eoi_tracking_reset(ioapic); } --- linux-4.8.0.orig/arch/x86/kvm/ioapic.h +++ linux-4.8.0/arch/x86/kvm/ioapic.h @@ -42,13 +42,13 @@ struct dest_map { /* vcpu bitmap where IRQ has been sent */ - DECLARE_BITMAP(map, KVM_MAX_VCPUS); + DECLARE_BITMAP(map, KVM_MAX_VCPU_ID); /* * Vector sent to a given vcpu, only valid when * the vcpu's bit in map is set */ - u8 vectors[KVM_MAX_VCPUS]; + u8 vectors[KVM_MAX_VCPU_ID]; }; --- linux-4.8.0.orig/arch/x86/kvm/irq_comm.c +++ linux-4.8.0/arch/x86/kvm/irq_comm.c @@ -41,6 +41,15 @@ bool line_status) { struct kvm_pic *pic = pic_irqchip(kvm); + + /* + * XXX: rejecting pic routes when pic isn't in use would be better, + * but the default routing table is installed while kvm->arch.vpic is + * NULL and KVM_CREATE_IRQCHIP can race with KVM_IRQ_LINE. + */ + if (!pic) + return -1; + return kvm_pic_set_irq(pic, e->irqchip.pin, irq_source_id, level); } @@ -49,6 +58,10 @@ bool line_status) { struct kvm_ioapic *ioapic = kvm->arch.vioapic; + + if (!ioapic) + return -1; + return kvm_ioapic_set_irq(ioapic, e->irqchip.pin, irq_source_id, level, line_status); } --- linux-4.8.0.orig/arch/x86/kvm/lapic.c +++ linux-4.8.0/arch/x86/kvm/lapic.c @@ -138,7 +138,7 @@ *mask = dest_id & 0xff; return true; case KVM_APIC_MODE_XAPIC_CLUSTER: - *cluster = map->xapic_cluster_map[dest_id >> 4]; + *cluster = map->xapic_cluster_map[(dest_id >> 4) & 0xf]; *mask = dest_id & 0xf; return true; default: --- linux-4.8.0.orig/arch/x86/kvm/vmx.c +++ linux-4.8.0/arch/x86/kvm/vmx.c @@ -1336,10 +1336,10 @@ return vmcs12->pin_based_vm_exec_control & PIN_BASED_POSTED_INTR; } -static inline bool is_exception(u32 intr_info) +static inline bool is_nmi(u32 intr_info) { return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK)) - == (INTR_TYPE_HARD_EXCEPTION | INTR_INFO_VALID_MASK); + == (INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK); } static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason, @@ -5467,7 +5467,7 @@ if (is_machine_check(intr_info)) return handle_machine_check(vcpu); - if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR) + if (is_nmi(intr_info)) return 1; /* already handled by vmx_vcpu_run() */ if (is_no_device(intr_info)) { @@ -7974,7 +7974,7 @@ switch (exit_reason) { case EXIT_REASON_EXCEPTION_NMI: - if (!is_exception(intr_info)) + if (is_nmi(intr_info)) return false; else if (is_page_fault(intr_info)) return enable_ept; @@ -8572,8 +8572,7 @@ kvm_machine_check(); /* We need to handle NMIs before interrupts are enabled */ - if ((exit_intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR && - (exit_intr_info & INTR_INFO_VALID_MASK)) { + if (is_nmi(exit_intr_info)) { kvm_before_handle_nmi(&vmx->vcpu); asm("int $2"); kvm_after_handle_nmi(&vmx->vcpu); --- linux-4.8.0.orig/arch/x86/kvm/x86.c +++ linux-4.8.0/arch/x86/kvm/x86.c @@ -210,7 +210,18 @@ struct kvm_shared_msrs *locals = container_of(urn, struct kvm_shared_msrs, urn); struct kvm_shared_msr_values *values; + unsigned long flags; + /* + * Disabling irqs at this point since the following code could be + * interrupted and executed through kvm_arch_hardware_disable() + */ + local_irq_save(flags); + if (locals->registered) { + locals->registered = false; + user_return_notifier_unregister(urn); + } + local_irq_restore(flags); for (slot = 0; slot < shared_msrs_global.nr; ++slot) { values = &locals->values[slot]; if (values->host != values->curr) { @@ -218,8 +229,6 @@ values->curr = values->host; } } - locals->registered = false; - user_return_notifier_unregister(urn); } static void shared_msr_update(unsigned slot, u32 msr) @@ -2449,7 +2458,7 @@ if (kvm_pmu_is_valid_msr(vcpu, msr_info->index)) return kvm_pmu_get_msr(vcpu, msr_info->index, &msr_info->data); if (!ignore_msrs) { - vcpu_unimpl(vcpu, "unhandled rdmsr: 0x%x\n", msr_info->index); +// vcpu_unimpl(vcpu, "unhandled rdmsr: 0x%x\n", msr_info->index); return 1; } else { vcpu_unimpl(vcpu, "ignored rdmsr: 0x%x\n", msr_info->index); @@ -3372,6 +3381,7 @@ }; case KVM_SET_VAPIC_ADDR: { struct kvm_vapic_addr va; + int idx; r = -EINVAL; if (!lapic_in_kernel(vcpu)) @@ -3379,7 +3389,9 @@ r = -EFAULT; if (copy_from_user(&va, argp, sizeof va)) goto out; + idx = srcu_read_lock(&vcpu->kvm->srcu); r = kvm_lapic_set_vapic_addr(vcpu, va.vapic_addr); + srcu_read_unlock(&vcpu->kvm->srcu, idx); break; } case KVM_X86_SETUP_MCE: { @@ -5853,7 +5865,7 @@ goto out; } if (ops->disabled_by_bios()) { - printk(KERN_ERR "kvm: disabled by bios\n"); + printk(KERN_WARNING "kvm: disabled by bios\n"); r = -EOPNOTSUPP; goto out; } @@ -7372,10 +7384,12 @@ void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu) { + void *wbinvd_dirty_mask = vcpu->arch.wbinvd_dirty_mask; + kvmclock_reset(vcpu); - free_cpumask_var(vcpu->arch.wbinvd_dirty_mask); kvm_x86_ops->vcpu_free(vcpu); + free_cpumask_var(wbinvd_dirty_mask); } struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, --- linux-4.8.0.orig/arch/x86/mm/extable.c +++ linux-4.8.0/arch/x86/mm/extable.c @@ -135,7 +135,12 @@ if (early_recursion_flag > 2) goto halt_loop; - if (regs->cs != __KERNEL_CS) + /* + * Old CPUs leave the high bits of CS on the stack + * undefined. I'm not sure which CPUs do this, but at least + * the 486 DX works this way. + */ + if ((regs->cs & 0xFFFF) != __KERNEL_CS) goto fail; /* --- linux-4.8.0.orig/arch/x86/mm/fault.c +++ linux-4.8.0/arch/x86/mm/fault.c @@ -1112,6 +1112,15 @@ { /* This is only called for the current mm, so: */ bool foreign = false; + + /* + * Read or write was blocked by protection keys. This is + * always an unconditional error and can never result in + * a follow-up action to resolve the fault, like a COW. + */ + if (error_code & PF_PK) + return 1; + /* * Make sure to check the VMA so that we do not perform * faults just to hit a PF_PK as soon as we fill in a --- linux-4.8.0.orig/arch/x86/mm/hugetlbpage.c +++ linux-4.8.0/arch/x86/mm/hugetlbpage.c @@ -144,7 +144,7 @@ addr = ALIGN(addr, huge_page_size(h)); vma = find_vma(mm, addr); if (TASK_SIZE - len >= addr && - (!vma || addr + len <= vma->vm_start)) + (!vma || addr + len <= vm_start_gap(vma))) return addr; } if (mm->get_unmapped_area == arch_get_unmapped_area) --- linux-4.8.0.orig/arch/x86/mm/pkeys.c +++ linux-4.8.0/arch/x86/mm/pkeys.c @@ -11,6 +11,7 @@ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. */ +#include /* debugfs_create_u32() */ #include /* mm_struct, vma, etc... */ #include /* PKEY_* */ #include @@ -21,8 +22,19 @@ int __execute_only_pkey(struct mm_struct *mm) { + bool need_to_set_mm_pkey = false; + int execute_only_pkey = mm->context.execute_only_pkey; int ret; + /* Do we need to assign a pkey for mm's execute-only maps? */ + if (execute_only_pkey == -1) { + /* Go allocate one to use, which might fail */ + execute_only_pkey = mm_pkey_alloc(mm); + if (execute_only_pkey < 0) + return -1; + need_to_set_mm_pkey = true; + } + /* * We do not want to go through the relatively costly * dance to set PKRU if we do not need to. Check it @@ -32,22 +44,33 @@ * can make fpregs inactive. */ preempt_disable(); - if (fpregs_active() && - !__pkru_allows_read(read_pkru(), PKEY_DEDICATED_EXECUTE_ONLY)) { + if (!need_to_set_mm_pkey && + fpregs_active() && + !__pkru_allows_read(read_pkru(), execute_only_pkey)) { preempt_enable(); - return PKEY_DEDICATED_EXECUTE_ONLY; + return execute_only_pkey; } preempt_enable(); - ret = arch_set_user_pkey_access(current, PKEY_DEDICATED_EXECUTE_ONLY, + + /* + * Set up PKRU so that it denies access for everything + * other than execution. + */ + ret = arch_set_user_pkey_access(current, execute_only_pkey, PKEY_DISABLE_ACCESS); /* * If the PKRU-set operation failed somehow, just return * 0 and effectively disable execute-only support. */ - if (ret) - return 0; + if (ret) { + mm_set_pkey_free(mm, execute_only_pkey); + return -1; + } - return PKEY_DEDICATED_EXECUTE_ONLY; + /* We got one, store it and use it from here on out */ + if (need_to_set_mm_pkey) + mm->context.execute_only_pkey = execute_only_pkey; + return execute_only_pkey; } static inline bool vma_is_pkey_exec_only(struct vm_area_struct *vma) @@ -55,7 +78,7 @@ /* Do this check first since the vm_flags should be hot */ if ((vma->vm_flags & (VM_READ | VM_WRITE | VM_EXEC)) != VM_EXEC) return false; - if (vma_pkey(vma) != PKEY_DEDICATED_EXECUTE_ONLY) + if (vma_pkey(vma) != vma->vm_mm->context.execute_only_pkey) return false; return true; @@ -99,3 +122,106 @@ */ return vma_pkey(vma); } + +#define PKRU_AD_KEY(pkey) (PKRU_AD_BIT << ((pkey) * PKRU_BITS_PER_PKEY)) + +/* + * Make the default PKRU value (at execve() time) as restrictive + * as possible. This ensures that any threads clone()'d early + * in the process's lifetime will not accidentally get access + * to data which is pkey-protected later on. + */ +u32 init_pkru_value = PKRU_AD_KEY( 1) | PKRU_AD_KEY( 2) | PKRU_AD_KEY( 3) | + PKRU_AD_KEY( 4) | PKRU_AD_KEY( 5) | PKRU_AD_KEY( 6) | + PKRU_AD_KEY( 7) | PKRU_AD_KEY( 8) | PKRU_AD_KEY( 9) | + PKRU_AD_KEY(10) | PKRU_AD_KEY(11) | PKRU_AD_KEY(12) | + PKRU_AD_KEY(13) | PKRU_AD_KEY(14) | PKRU_AD_KEY(15); + +/* + * Called from the FPU code when creating a fresh set of FPU + * registers. This is called from a very specific context where + * we know the FPU regstiers are safe for use and we can use PKRU + * directly. The fact that PKRU is only available when we are + * using eagerfpu mode makes this possible. + */ +void copy_init_pkru_to_fpregs(void) +{ + u32 init_pkru_value_snapshot = READ_ONCE(init_pkru_value); + /* + * Any write to PKRU takes it out of the XSAVE 'init + * state' which increases context switch cost. Avoid + * writing 0 when PKRU was already 0. + */ + if (!init_pkru_value_snapshot && !read_pkru()) + return; + /* + * Override the PKRU state that came from 'init_fpstate' + * with the baseline from the process. + */ + write_pkru(init_pkru_value_snapshot); +} + +static ssize_t init_pkru_read_file(struct file *file, char __user *user_buf, + size_t count, loff_t *ppos) +{ + char buf[32]; + unsigned int len; + + len = sprintf(buf, "0x%x\n", init_pkru_value); + return simple_read_from_buffer(user_buf, count, ppos, buf, len); +} + +static ssize_t init_pkru_write_file(struct file *file, + const char __user *user_buf, size_t count, loff_t *ppos) +{ + char buf[32]; + ssize_t len; + u32 new_init_pkru; + + len = min(count, sizeof(buf) - 1); + if (copy_from_user(buf, user_buf, len)) + return -EFAULT; + + /* Make the buffer a valid string that we can not overrun */ + buf[len] = '\0'; + if (kstrtouint(buf, 0, &new_init_pkru)) + return -EINVAL; + + /* + * Don't allow insane settings that will blow the system + * up immediately if someone attempts to disable access + * or writes to pkey 0. + */ + if (new_init_pkru & (PKRU_AD_BIT|PKRU_WD_BIT)) + return -EINVAL; + + WRITE_ONCE(init_pkru_value, new_init_pkru); + return count; +} + +static const struct file_operations fops_init_pkru = { + .read = init_pkru_read_file, + .write = init_pkru_write_file, + .llseek = default_llseek, +}; + +static int __init create_init_pkru_value(void) +{ + debugfs_create_file("init_pkru", S_IRUSR | S_IWUSR, + arch_debugfs_dir, NULL, &fops_init_pkru); + return 0; +} +late_initcall(create_init_pkru_value); + +static __init int setup_init_pkru(char *opt) +{ + u32 new_init_pkru; + + if (kstrtouint(opt, 0, &new_init_pkru)) + return 1; + + WRITE_ONCE(init_pkru_value, new_init_pkru); + + return 1; +} +__setup("init_pkru=", setup_init_pkru); --- linux-4.8.0.orig/arch/x86/pci/xen.c +++ linux-4.8.0/arch/x86/pci/xen.c @@ -234,23 +234,14 @@ return 1; for_each_pci_msi_entry(msidesc, dev) { - __pci_read_msi_msg(msidesc, &msg); - pirq = MSI_ADDR_EXT_DEST_ID(msg.address_hi) | - ((msg.address_lo >> MSI_ADDR_DEST_ID_SHIFT) & 0xff); - if (msg.data != XEN_PIRQ_MSI_DATA || - xen_irq_from_pirq(pirq) < 0) { - pirq = xen_allocate_pirq_msi(dev, msidesc); - if (pirq < 0) { - irq = -ENODEV; - goto error; - } - xen_msi_compose_msg(dev, pirq, &msg); - __pci_write_msi_msg(msidesc, &msg); - dev_dbg(&dev->dev, "xen: msi bound to pirq=%d\n", pirq); - } else { - dev_dbg(&dev->dev, - "xen: msi already bound to pirq=%d\n", pirq); + pirq = xen_allocate_pirq_msi(dev, msidesc); + if (pirq < 0) { + irq = -ENODEV; + goto error; } + xen_msi_compose_msg(dev, pirq, &msg); + __pci_write_msi_msg(msidesc, &msg); + dev_dbg(&dev->dev, "xen: msi bound to pirq=%d\n", pirq); irq = xen_bind_pirq_msi_to_irq(dev, msidesc, pirq, (type == PCI_CAP_ID_MSI) ? nvec : 1, (type == PCI_CAP_ID_MSIX) ? --- linux-4.8.0.orig/arch/x86/platform/atom/punit_atom_debug.c +++ linux-4.8.0/arch/x86/platform/atom/punit_atom_debug.c @@ -155,7 +155,7 @@ static const struct x86_cpu_id intel_punit_cpu_ids[] = { ICPU(INTEL_FAM6_ATOM_SILVERMONT1, punit_device_byt), - ICPU(INTEL_FAM6_ATOM_MERRIFIELD1, punit_device_tng), + ICPU(INTEL_FAM6_ATOM_MERRIFIELD, punit_device_tng), ICPU(INTEL_FAM6_ATOM_AIRMONT, punit_device_cht), {} }; --- linux-4.8.0.orig/arch/x86/platform/efi/efi_64.c +++ linux-4.8.0/arch/x86/platform/efi/efi_64.c @@ -240,6 +240,22 @@ efi_scratch.use_pgd = true; /* + * Certain firmware versions are way too sentimential and still believe + * they are exclusive and unquestionable owners of first physical page + * even though they explicitly mark it as EFI_CONVENTIONAL_MEMORY + * (but then write-access it later during SetVirtualAddressMap()). + * + * Create 1:1 mapping for this page to avoid triple faults during early + * boot with such firmware. We're on a safe side, as trim_bios_range() + * will reserve the first page and isolate it away from memory + * allocators anyway. + */ + if (kernel_map_pages_in_pgd(pgd, 0x0, 0x0, 1, _PAGE_RW)) { + pr_err("Failed to create 1:1 mapping of first page\n"); + return 1; + } + + /* * When making calls to the firmware everything needs to be 1:1 * mapped and addressable with 32-bit pointers. Map the kernel * text and allocate a new stack because we can't rely on the --- linux-4.8.0.orig/arch/x86/platform/intel-mid/pwr.c +++ linux-4.8.0/arch/x86/platform/intel-mid/pwr.c @@ -354,7 +354,7 @@ return 0; } -static int mid_set_initial_state(struct mid_pwr *pwr) +static int mid_set_initial_state(struct mid_pwr *pwr, const u32 *states) { unsigned int i, j; int ret; @@ -379,10 +379,10 @@ * NOTE: The actual device mapping is provided by a platform at run * time using vendor capability of PCI configuration space. */ - mid_pwr_set_state(pwr, 0, 0xffffffff); - mid_pwr_set_state(pwr, 1, 0xffffffff); - mid_pwr_set_state(pwr, 2, 0xffffffff); - mid_pwr_set_state(pwr, 3, 0xffffffff); + mid_pwr_set_state(pwr, 0, states[0]); + mid_pwr_set_state(pwr, 1, states[1]); + mid_pwr_set_state(pwr, 2, states[2]); + mid_pwr_set_state(pwr, 3, states[3]); /* Send command to SCU */ ret = mid_pwr_wait_for_cmd(pwr, CMD_SET_CFG); @@ -397,13 +397,41 @@ return 0; } -static const struct mid_pwr_device_info mid_info = { - .set_initial_state = mid_set_initial_state, +static int pnw_set_initial_state(struct mid_pwr *pwr) +{ + /* On Penwell SRAM must stay powered on */ + const u32 states[] = { + 0xf00fffff, /* PM_SSC(0) */ + 0xffffffff, /* PM_SSC(1) */ + 0xffffffff, /* PM_SSC(2) */ + 0xffffffff, /* PM_SSC(3) */ + }; + return mid_set_initial_state(pwr, states); +} + +static int tng_set_initial_state(struct mid_pwr *pwr) +{ + const u32 states[] = { + 0xffffffff, /* PM_SSC(0) */ + 0xffffffff, /* PM_SSC(1) */ + 0xffffffff, /* PM_SSC(2) */ + 0xffffffff, /* PM_SSC(3) */ + }; + return mid_set_initial_state(pwr, states); +} + +static const struct mid_pwr_device_info pnw_info = { + .set_initial_state = pnw_set_initial_state, +}; + +static const struct mid_pwr_device_info tng_info = { + .set_initial_state = tng_set_initial_state, }; +/* This table should be in sync with the one in drivers/pci/pci-mid.c */ static const struct pci_device_id mid_pwr_pci_ids[] = { - { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_PENWELL), (kernel_ulong_t)&mid_info }, - { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_TANGIER), (kernel_ulong_t)&mid_info }, + { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_PENWELL), (kernel_ulong_t)&pnw_info }, + { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_TANGIER), (kernel_ulong_t)&tng_info }, {} }; --- linux-4.8.0.orig/arch/x86/platform/uv/bios_uv.c +++ linux-4.8.0/arch/x86/platform/uv/bios_uv.c @@ -40,7 +40,15 @@ */ return BIOS_STATUS_UNIMPLEMENTED; - ret = efi_call_virt_pointer(tab, function, (u64)which, a1, a2, a3, a4, a5); + /* + * If EFI_OLD_MEMMAP is set, we need to fall back to using our old EFI + * callback method, which uses efi_call() directly, with the kernel page tables: + */ + if (unlikely(test_bit(EFI_OLD_MEMMAP, &efi.flags))) + ret = efi_call((void *)__va(tab->function), (u64)which, a1, a2, a3, a4, a5); + else + ret = efi_call_virt_pointer(tab, function, (u64)which, a1, a2, a3, a4, a5); + return ret; } EXPORT_SYMBOL_GPL(uv_bios_call); --- linux-4.8.0.orig/arch/x86/purgatory/Makefile +++ linux-4.8.0/arch/x86/purgatory/Makefile @@ -16,6 +16,7 @@ KBUILD_CFLAGS := -fno-strict-aliasing -Wall -Wstrict-prototypes -fno-zero-initialized-in-bss -fno-builtin -ffreestanding -c -MD -Os -mcmodel=large KBUILD_CFLAGS += -m$(BITS) +KBUILD_CFLAGS += $(call cc-option,-fno-PIE) $(obj)/purgatory.ro: $(PURGATORY_OBJS) FORCE $(call if_changed,ld) --- linux-4.8.0.orig/arch/x86/xen/smp.c +++ linux-4.8.0/arch/x86/xen/smp.c @@ -87,6 +87,12 @@ cpu_data(cpu).x86_max_cores = 1; set_cpu_sibling_map(cpu); + /* + * identify_cpu() may have set logical_pkg_id to -1 due + * to incorrect phys_proc_id. Let's re-comupte it. + */ + topology_update_package_map(apic->cpu_present_to_apicid(cpu), cpu); + xen_setup_cpu_clockevents(); notify_cpu_starting(cpu); --- linux-4.8.0.orig/arch/xtensa/include/uapi/asm/mman.h +++ linux-4.8.0/arch/xtensa/include/uapi/asm/mman.h @@ -117,4 +117,9 @@ #define MAP_HUGE_SHIFT 26 #define MAP_HUGE_MASK 0x3f +#define PKEY_DISABLE_ACCESS 0x1 +#define PKEY_DISABLE_WRITE 0x2 +#define PKEY_ACCESS_MASK (PKEY_DISABLE_ACCESS |\ + PKEY_DISABLE_WRITE) + #endif /* _XTENSA_MMAN_H */ --- linux-4.8.0.orig/arch/xtensa/kernel/syscall.c +++ linux-4.8.0/arch/xtensa/kernel/syscall.c @@ -87,7 +87,7 @@ /* At this point: (!vmm || addr < vmm->vm_end). */ if (TASK_SIZE - len < addr) return -ENOMEM; - if (!vmm || addr + len <= vmm->vm_start) + if (!vmm || addr + len <= vm_start_gap(vmm)) return addr; addr = vmm->vm_end; if (flags & MAP_SHARED) --- linux-4.8.0.orig/block/blk-cgroup.c +++ linux-4.8.0/block/blk-cgroup.c @@ -1340,10 +1340,8 @@ struct blkcg_policy_data *cpd; cpd = pol->cpd_alloc_fn(GFP_KERNEL); - if (!cpd) { - mutex_unlock(&blkcg_pol_mutex); + if (!cpd) goto err_free_cpds; - } blkcg->cpd[pol->plid] = cpd; cpd->blkcg = blkcg; --- linux-4.8.0.orig/block/blk-map.c +++ linux-4.8.0/block/blk-map.c @@ -118,6 +118,9 @@ struct iov_iter i; int ret; + if (!iter_is_iovec(iter)) + goto fail; + if (map_data) copy = true; else if (iov_iter_alignment(iter) & align) @@ -140,6 +143,7 @@ unmap_rq: __blk_rq_unmap_user(bio); +fail: rq->bio = NULL; return -EINVAL; } --- linux-4.8.0.orig/block/blk-mq.c +++ linux-4.8.0/block/blk-mq.c @@ -916,7 +916,7 @@ return WORK_CPU_UNBOUND; if (--hctx->next_cpu_batch <= 0) { - int cpu = hctx->next_cpu, next_cpu; + int next_cpu; next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask); if (next_cpu >= nr_cpu_ids) @@ -924,8 +924,6 @@ hctx->next_cpu = next_cpu; hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH; - - return cpu; } return hctx->next_cpu; @@ -1371,9 +1369,9 @@ blk_mq_put_ctx(data.ctx); if (!old_rq) goto done; - if (!blk_mq_direct_issue_request(old_rq, &cookie)) - goto done; - blk_mq_insert_request(old_rq, false, true, true); + if (test_bit(BLK_MQ_S_STOPPED, &data.hctx->state) || + blk_mq_direct_issue_request(old_rq, &cookie) != 0) + blk_mq_insert_request(old_rq, false, true, true); goto done; } @@ -1533,7 +1531,7 @@ INIT_LIST_HEAD(&tags->page_list); tags->rqs = kzalloc_node(set->queue_depth * sizeof(struct request *), - GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY, + GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY, set->numa_node); if (!tags->rqs) { blk_mq_free_tags(tags); @@ -1559,7 +1557,7 @@ do { page = alloc_pages_node(set->numa_node, - GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO, + GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO, this_order); if (page) break; @@ -1580,7 +1578,7 @@ * Allow kmemleak to scan these pages as they contain pointers * to additional allocations like via ops->init_request(). */ - kmemleak_alloc(p, order_to_size(this_order), 1, GFP_KERNEL); + kmemleak_alloc(p, order_to_size(this_order), 1, GFP_NOIO); entries_per_page = order_to_size(this_order) / rq_size; to_do = min(entries_per_page, set->queue_depth - i); left -= to_do * rq_size; @@ -1826,7 +1824,7 @@ static void blk_mq_map_swqueue(struct request_queue *q, const struct cpumask *online_mask) { - unsigned int i; + unsigned int i, hctx_idx; struct blk_mq_hw_ctx *hctx; struct blk_mq_ctx *ctx; struct blk_mq_tag_set *set = q->tag_set; @@ -1849,6 +1847,21 @@ if (!cpumask_test_cpu(i, online_mask)) continue; + hctx_idx = q->mq_map[i]; + /* unmapped hw queue can be remapped after CPU topo changed */ + if (!set->tags[hctx_idx]) { + set->tags[hctx_idx] = blk_mq_init_rq_map(set, hctx_idx); + + /* + * If tags initialization fail for some hctx, + * that hctx won't be brought online. In this + * case, remap the current ctx to hctx[0] which + * is guaranteed to always have tags allocated + */ + if (!set->tags[hctx_idx]) + q->mq_map[i] = 0; + } + ctx = per_cpu_ptr(q->queue_ctx, i); hctx = q->mq_ops->map_queue(q, i); @@ -1867,7 +1880,11 @@ * disable it and free the request entries. */ if (!hctx->nr_ctx) { - if (set->tags[i]) { + /* Never unmap queue 0. We need it as a + * fallback in case of a new remap fails + * allocation + */ + if (i && set->tags[i]) { blk_mq_free_rq_map(set, set->tags[i], i); set->tags[i] = NULL; } @@ -1875,9 +1892,6 @@ continue; } - /* unmapped hw queue can be remapped after CPU topo changed */ - if (!set->tags[i]) - set->tags[i] = blk_mq_init_rq_map(set, i); hctx->tags = set->tags[i]; WARN_ON(!hctx->tags); --- linux-4.8.0.orig/block/bsg.c +++ linux-4.8.0/block/bsg.c @@ -655,6 +655,9 @@ dprintk("%s: write %Zd bytes\n", bd->name, count); + if (unlikely(segment_eq(get_fs(), KERNEL_DS))) + return -EINVAL; + bsg_set_block(bd, file); bytes_written = 0; --- linux-4.8.0.orig/block/cfq-iosched.c +++ linux-4.8.0/block/cfq-iosched.c @@ -3042,7 +3042,6 @@ if (ktime_get_ns() < rq->fifo_time) rq = NULL; - cfq_log_cfqq(cfqq->cfqd, cfqq, "fifo=%p", rq); return rq; } @@ -3420,6 +3419,9 @@ { unsigned int max_dispatch; + if (cfq_cfqq_must_dispatch(cfqq)) + return true; + /* * Drain async requests before we start sync IO */ @@ -3511,15 +3513,20 @@ BUG_ON(RB_EMPTY_ROOT(&cfqq->sort_list)); + rq = cfq_check_fifo(cfqq); + if (rq) + cfq_mark_cfqq_must_dispatch(cfqq); + if (!cfq_may_dispatch(cfqd, cfqq)) return false; /* * follow expired path, else get first next available */ - rq = cfq_check_fifo(cfqq); if (!rq) rq = cfqq->next_rq; + else + cfq_log_cfqq(cfqq->cfqd, cfqq, "fifo=%p", rq); /* * insert request into driver dispatch list @@ -3989,7 +3996,7 @@ * if the new request is sync, but the currently running queue is * not, let the sync request have priority. */ - if (rq_is_sync(rq) && !cfq_cfqq_sync(cfqq)) + if (rq_is_sync(rq) && !cfq_cfqq_sync(cfqq) && !cfq_cfqq_must_dispatch(cfqq)) return true; /* --- linux-4.8.0.orig/block/scsi_ioctl.c +++ linux-4.8.0/block/scsi_ioctl.c @@ -28,6 +28,9 @@ #include #include #include +#include +#include +#include #include #include @@ -182,6 +185,9 @@ __set_bit(WRITE_16, filter->write_ok); __set_bit(WRITE_LONG, filter->write_ok); __set_bit(WRITE_LONG_2, filter->write_ok); + __set_bit(WRITE_SAME, filter->write_ok); + __set_bit(WRITE_SAME_16, filter->write_ok); + __set_bit(WRITE_SAME_32, filter->write_ok); __set_bit(ERASE, filter->write_ok); __set_bit(GPCMD_MODE_SELECT_10, filter->write_ok); __set_bit(MODE_SELECT, filter->write_ok); @@ -705,8 +711,17 @@ case SG_GET_RESERVED_SIZE: case SG_SET_RESERVED_SIZE: case SG_EMULATED_HOST: + case BLKFLSBUF: + case BLKROSET: return 0; case CDROM_GET_CAPABILITY: + case CDROM_DRIVE_STATUS: + case FDGETPRM: + case RAID_VERSION: + case MTIOCGET: +#ifdef CONFIG_COMPAT + case 0x801c6d02: /* MTIOCGET32 */ +#endif /* Keep this until we remove the printk below. udev sends it * and we do not want to spam dmesg about it. CD-ROMs do * not have partitions, so we get here only for disks. --- linux-4.8.0.orig/certs/system_keyring.c +++ linux-4.8.0/certs/system_keyring.c @@ -22,11 +22,27 @@ #ifdef CONFIG_SECONDARY_TRUSTED_KEYRING static struct key *secondary_trusted_keys; #endif +#ifdef CONFIG_SYSTEM_BLACKLIST_KEYRING +struct key *system_blacklist_keyring; +#endif extern __initconst const u8 system_certificate_list[]; extern __initconst const unsigned long system_certificate_list_size; /** + * get_system_keyring - Return a pointer to the system keyring + * + */ +struct key *get_system_keyring(void) +{ + struct key *system_keyring = NULL; + + system_keyring = builtin_trusted_keys; + return system_keyring; +} +EXPORT_SYMBOL_GPL(get_system_keyring); + +/** * restrict_link_to_builtin_trusted - Restrict keyring addition by built in CA * * Restrict the addition of keys into a keyring based on the key-to-be-added @@ -99,6 +115,16 @@ if (key_link(secondary_trusted_keys, builtin_trusted_keys) < 0) panic("Can't link trusted keyrings\n"); #endif +#ifdef CONFIG_SYSTEM_BLACKLIST_KEYRING + system_blacklist_keyring = keyring_alloc(".system_blacklist_keyring", + KUIDT_INIT(0), KGIDT_INIT(0), current_cred(), + ((KEY_POS_ALL & ~KEY_POS_SETATTR) | + KEY_USR_VIEW | KEY_USR_READ | KEY_USR_SEARCH), + KEY_ALLOC_NOT_IN_QUOTA, + NULL, NULL); + if (IS_ERR(system_blacklist_keyring)) + panic("Can't allocate system blacklist keyring\n"); +#endif return 0; } @@ -148,6 +174,7 @@ if (IS_ERR(key)) { pr_err("Problem loading in-kernel X.509 certificate (%ld)\n", PTR_ERR(key)); + WARN_ON_ONCE(1); } else { pr_notice("Loaded X.509 cert '%s'\n", key_ref_to_ptr(key)->description); @@ -214,6 +241,15 @@ trusted_keys = builtin_trusted_keys; #endif } +#ifdef CONFIG_SYSTEM_BLACKLIST_KEYRING + ret = pkcs7_validate_trust(pkcs7, system_blacklist_keyring); + if (!ret) { + /* module is signed with a cert in the blacklist. reject */ + pr_err("Module key is in the blacklist\n"); + ret = -EKEYREJECTED; + goto error; + } +#endif ret = pkcs7_validate_trust(pkcs7, trusted_keys); if (ret < 0) { if (ret == -ENOKEY) --- linux-4.8.0.orig/crypto/Makefile +++ linux-4.8.0/crypto/Makefile @@ -40,6 +40,7 @@ $(obj)/rsapubkey-asn1.o: $(obj)/rsapubkey-asn1.c $(obj)/rsapubkey-asn1.h $(obj)/rsaprivkey-asn1.o: $(obj)/rsaprivkey-asn1.c $(obj)/rsaprivkey-asn1.h +$(obj)/rsa_helper.o: $(obj)/rsapubkey-asn1.h $(obj)/rsaprivkey-asn1.h clean-files += rsapubkey-asn1.c rsapubkey-asn1.h clean-files += rsaprivkey-asn1.c rsaprivkey-asn1.h --- linux-4.8.0.orig/crypto/asymmetric_keys/Kconfig +++ linux-4.8.0/crypto/asymmetric_keys/Kconfig @@ -61,4 +61,12 @@ This option provides support for verifying the signature(s) on a signed PE binary. +config EFI_SIGNATURE_LIST_PARSER + bool "EFI signature list parser" + depends on EFI + select X509_CERTIFICATE_PARSER + help + This option provides support for parsing EFI signature lists for + X.509 certificates and turning them into keys. + endif # ASYMMETRIC_KEY_TYPE --- linux-4.8.0.orig/crypto/asymmetric_keys/Makefile +++ linux-4.8.0/crypto/asymmetric_keys/Makefile @@ -10,6 +10,7 @@ signature.o obj-$(CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE) += public_key.o +obj-$(CONFIG_EFI_SIGNATURE_LIST_PARSER) += efi_parser.o # # X.509 Certificate handling --- linux-4.8.0.orig/crypto/asymmetric_keys/efi_parser.c +++ linux-4.8.0/crypto/asymmetric_keys/efi_parser.c @@ -0,0 +1,108 @@ +/* EFI signature/key/certificate list parser + * + * Copyright (C) 2012 Red Hat, Inc. All Rights Reserved. + * Written by David Howells (dhowells@redhat.com) + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public Licence + * as published by the Free Software Foundation; either version + * 2 of the Licence, or (at your option) any later version. + */ + +#define pr_fmt(fmt) "EFI: "fmt +#include +#include +#include +#include +#include + +static __initdata efi_guid_t efi_cert_x509_guid = EFI_CERT_X509_GUID; + +/** + * parse_efi_signature_list - Parse an EFI signature list for certificates + * @data: The data blob to parse + * @size: The size of the data blob + * @keyring: The keyring to add extracted keys to + */ +int __init parse_efi_signature_list(const void *data, size_t size, struct key *keyring) +{ + unsigned offs = 0; + size_t lsize, esize, hsize, elsize; + + pr_devel("-->%s(,%zu)\n", __func__, size); + + while (size > 0) { + efi_signature_list_t list; + const efi_signature_data_t *elem; + key_ref_t key; + + if (size < sizeof(list)) + return -EBADMSG; + + memcpy(&list, data, sizeof(list)); + pr_devel("LIST[%04x] guid=%pUl ls=%x hs=%x ss=%x\n", + offs, + list.signature_type.b, list.signature_list_size, + list.signature_header_size, list.signature_size); + + lsize = list.signature_list_size; + hsize = list.signature_header_size; + esize = list.signature_size; + elsize = lsize - sizeof(list) - hsize; + + if (lsize > size) { + pr_devel("<--%s() = -EBADMSG [overrun @%x]\n", + __func__, offs); + return -EBADMSG; + } + if (lsize < sizeof(list) || + lsize - sizeof(list) < hsize || + esize < sizeof(*elem) || + elsize < esize || + elsize % esize != 0) { + pr_devel("- bad size combo @%x\n", offs); + return -EBADMSG; + } + + if (efi_guidcmp(list.signature_type, efi_cert_x509_guid) != 0) { + data += lsize; + size -= lsize; + offs += lsize; + continue; + } + + data += sizeof(list) + hsize; + size -= sizeof(list) + hsize; + offs += sizeof(list) + hsize; + + for (; elsize > 0; elsize -= esize) { + elem = data; + + pr_devel("ELEM[%04x]\n", offs); + + key = key_create_or_update( + make_key_ref(keyring, 1), + "asymmetric", + NULL, + &elem->signature_data, + esize - sizeof(*elem), + (KEY_POS_ALL & ~KEY_POS_SETATTR) | + KEY_USR_VIEW, + KEY_ALLOC_NOT_IN_QUOTA); + + if (IS_ERR(key)) + pr_err("Problem loading in-kernel X.509 certificate (%ld)\n", + PTR_ERR(key)); + else + pr_notice("Loaded cert '%s' linked to '%s'\n", + key_ref_to_ptr(key)->description, + keyring->description); + + data += esize; + size -= esize; + offs += esize; + } + } + + return 0; +} --- linux-4.8.0.orig/crypto/asymmetric_keys/x509_cert_parser.c +++ linux-4.8.0/crypto/asymmetric_keys/x509_cert_parser.c @@ -133,7 +133,6 @@ return cert; error_decode: - kfree(cert->pub->key); kfree(ctx); error_no_ctx: x509_free_certificate(cert); --- linux-4.8.0.orig/crypto/async_tx/async_pq.c +++ linux-4.8.0/crypto/async_tx/async_pq.c @@ -368,8 +368,6 @@ dma_set_unmap(tx, unmap); async_tx_submit(chan, tx, submit); - - return tx; } else { struct page *p_src = P(blocks, disks); struct page *q_src = Q(blocks, disks); @@ -424,9 +422,11 @@ submit->cb_param = cb_param_orig; submit->flags = flags_orig; async_tx_sync_epilog(submit); - - return NULL; + tx = NULL; } + dmaengine_unmap_put(unmap); + + return tx; } EXPORT_SYMBOL_GPL(async_syndrome_val); --- linux-4.8.0.orig/crypto/gcm.c +++ linux-4.8.0/crypto/gcm.c @@ -117,7 +117,7 @@ struct crypto_skcipher *ctr = ctx->ctr; struct { be128 hash; - u8 iv[8]; + u8 iv[16]; struct crypto_gcm_setkey_result result; --- linux-4.8.0.orig/crypto/ghash-generic.c +++ linux-4.8.0/crypto/ghash-generic.c @@ -14,24 +14,13 @@ #include #include +#include #include #include #include #include #include -#define GHASH_BLOCK_SIZE 16 -#define GHASH_DIGEST_SIZE 16 - -struct ghash_ctx { - struct gf128mul_4k *gf128; -}; - -struct ghash_desc_ctx { - u8 buffer[GHASH_BLOCK_SIZE]; - u32 bytes; -}; - static int ghash_init(struct shash_desc *desc) { struct ghash_desc_ctx *dctx = shash_desc_ctx(desc); --- linux-4.8.0.orig/crypto/mcryptd.c +++ linux-4.8.0/crypto/mcryptd.c @@ -254,18 +254,22 @@ goto out; } -static inline void mcryptd_check_internal(struct rtattr **tb, u32 *type, +static inline bool mcryptd_check_internal(struct rtattr **tb, u32 *type, u32 *mask) { struct crypto_attr_type *algt; algt = crypto_get_attr_type(tb); if (IS_ERR(algt)) - return; - if ((algt->type & CRYPTO_ALG_INTERNAL)) - *type |= CRYPTO_ALG_INTERNAL; - if ((algt->mask & CRYPTO_ALG_INTERNAL)) - *mask |= CRYPTO_ALG_INTERNAL; + return false; + + *type |= algt->type & CRYPTO_ALG_INTERNAL; + *mask |= algt->mask & CRYPTO_ALG_INTERNAL; + + if (*type & *mask & CRYPTO_ALG_INTERNAL) + return true; + else + return false; } static int mcryptd_hash_init_tfm(struct crypto_tfm *tfm) @@ -492,7 +496,8 @@ u32 mask = 0; int err; - mcryptd_check_internal(tb, &type, &mask); + if (!mcryptd_check_internal(tb, &type, &mask)) + return -EINVAL; halg = ahash_attr_alg(tb[1], type, mask); if (IS_ERR(halg)) --- linux-4.8.0.orig/crypto/xor.c +++ linux-4.8.0/crypto/xor.c @@ -110,18 +110,6 @@ struct xor_block_template *f, *fastest; /* - * Note: Since the memory is not actually used for _anything_ but to - * test the XOR speed, we don't really want kmemcheck to warn about - * reading uninitialized bytes here. - */ - b1 = (void *) __get_free_pages(GFP_KERNEL | __GFP_NOTRACK, 2); - if (!b1) { - printk(KERN_WARNING "xor: Yikes! No memory available.\n"); - return -ENOMEM; - } - b2 = b1 + 2*PAGE_SIZE + BENCH_SIZE; - - /* * If this arch/cpu has a short-circuited selection, don't loop through * all the possible functions, just test the best one */ @@ -136,26 +124,39 @@ if (fastest) { printk(KERN_INFO "xor: automatically using best " - "checksumming function:\n"); - xor_speed(fastest); + "checksumming function: %s\n", + fastest->name); goto out; - } else { - printk(KERN_INFO "xor: measuring software checksum speed\n"); - XOR_TRY_TEMPLATES; - fastest = template_list; - for (f = fastest; f; f = f->next) - if (f->speed > fastest->speed) - fastest = f; } + + /* + * Note: Since the memory is not actually used for _anything_ but to + * test the XOR speed, we don't really want kmemcheck to warn about + * reading uninitialized bytes here. + */ + b1 = (void *) __get_free_pages(GFP_KERNEL | __GFP_NOTRACK, 2); + if (!b1) { + printk(KERN_WARNING "xor: Yikes! No memory available.\n"); + return -ENOMEM; + } + b2 = b1 + 2*PAGE_SIZE + BENCH_SIZE; + + printk(KERN_INFO "xor: measuring software checksum speed\n"); + XOR_TRY_TEMPLATES; + fastest = template_list; + for (f = fastest; f; f = f->next) + if (f->speed > fastest->speed) + fastest = f; + printk(KERN_INFO "xor: using function: %s (%d.%03d MB/sec)\n", fastest->name, fastest->speed / 1000, fastest->speed % 1000); #undef xor_speed - out: free_pages((unsigned long)b1, 2); + out: active_template = fastest; return 0; } --- linux-4.8.0.orig/debian.master/NOTES +++ linux-4.8.0/debian.master/NOTES @@ -0,0 +1,4 @@ +eSCO patch removed. Replaced upstream with a disable_esco module parm. +airprime: Module gone, use option driver instead +AppArmor: Patch is all there and ported. Ooops when enabled, so default + off (still can be enabled apparmor=1) --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/abiname +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/abiname @@ -0,0 +1 @@ +57 --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/amd64/generic +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/amd64/generic @@ -0,0 +1,20879 @@ +EXPORT_SYMBOL arch/x86/kvm/kvm 0x8db6f150 kvm_cpu_has_pending_timer +EXPORT_SYMBOL crypto/mcryptd 0x3559070f mcryptd_arm_flusher +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/nfit/nfit 0x95b632d2 to_nfit_uuid +EXPORT_SYMBOL drivers/acpi/video 0x226e6aa1 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 0xe245fe7a acpi_video_get_levels +EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type +EXPORT_SYMBOL drivers/atm/suni 0x8bd2d7aa suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0xaf558d97 uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x1f27a197 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xc4e9829d 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 0x01b94d22 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x0954244d pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x16604f4d pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x1f48ce9a pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x325dd685 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x46851740 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x4ebb600c pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x80cefd4b pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x8e51103c paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xaa630f4e pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xb8c68efb pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xc6fe77ff pi_schedule_claimed +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xa4c43351 btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x19fdb3ae ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x2dd819c7 ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4dde7206 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa8d36c84 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xcfe0103c ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd15c3e35 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x73d1b04e st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x9f943965 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xaba3fc83 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xb7ea4f03 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x30499c0d xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x98875e52 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xda293d47 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x147cb3b2 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x700696db dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xa0cced26 dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xaa742dbd dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xe7ffe823 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xfcf06ae9 dw_dma_cyclic_free +EXPORT_SYMBOL drivers/edac/edac_core 0xe04ec31a edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f76a80b fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1557c6b0 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16cec8da fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1a7a63a3 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1aab8a24 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x27a390cb fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x299f9f65 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2ecefe3a fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x30643368 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x492d02c4 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5c8c5a68 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x606e694f fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x645b715f fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7eed20a9 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8180d93b fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x870ba7c5 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9a34b23c fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa37bf92a fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaae33911 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc66b6943 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc968064f fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd116c750 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd187c1c1 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe09884fc fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe665b950 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xef9174e3 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf39419fa fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firmware/dcdbas 0xa75079d6 dcdbas_smi_request +EXPORT_SYMBOL drivers/fmc/fmc 0x09a95fb9 fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x213ee27d fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x4748f9d7 fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x489d889e fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x69d0d815 fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0x6d090f83 fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0x87e42de0 fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0x96cdffa1 fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0xae9da62a fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0xc83c734b fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0xe451d5f3 fmc_reprogram +EXPORT_SYMBOL drivers/gpu/drm/amd/amdkfd/amdkfd 0xdcc03140 kgd2kfd_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01f6703b drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x022b4c4c drm_crtc_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03bcb2c8 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03e6b9cd drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04100925 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05a61e83 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06b9d017 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0770062b drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x080169ec drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08878f0d drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08aef90f drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x093b642c drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09f2132d drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a60be29 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ce267b5 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d2f4a68 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7d68e9 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0da42048 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e2af41f drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e566aca drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7f4748 drm_flip_work_init +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 0x107e0ff2 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1102a282 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11c13097 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11f3230f drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12311d5e drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12e53bfe drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13130c2f drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x156e2e14 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15c55dc1 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1653b774 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1662631f drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18716591 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a6b0d10 drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a8a735b drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ab2228e drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b936f57 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ba16c4b drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c38436d drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c5ebd65 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c9c1253 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e912ff8 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1eba1531 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fb43dac drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fc3d295 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x203b249a drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20600417 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20d7f4ef drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x229e2ff1 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22eeade3 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23ab475a drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24abdeb2 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25b4d988 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2689dbe0 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26c4207b drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27b7ee7b drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x294bf305 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b111092 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cb68ac6 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d576e06 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e29f8d5 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f4275d2 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3043e956 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x315cd6cb drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32217de4 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34b35441 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3820ae60 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x386f34c7 drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3919c274 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39962497 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c97cc0b drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e6153f9 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e7fccea drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f6af223 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f6d85c2 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f996cef drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40bcc659 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4235332c drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42627429 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46717be6 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46f6d034 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48c72eab drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x491bc43a drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a93b1a1 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b5d51da drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c98ac52 drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dae8733 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e2b4813 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f2416ce drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51487c63 drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x532fd6f9 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5361dea2 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53ac335d drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53b8452f drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x541f1a3d drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x542e3a8a drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55931f66 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55a8b4b5 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5640711a drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x565f1d4e drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x566e9d91 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x575955ee drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x578523bf drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58f12970 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58fd4ada drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59d811ee drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a98d98c drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ba2b63d drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5be06bf0 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d6cd0ce drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5db68b69 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e9176e3 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60db07de drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61903469 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61949c8f drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61e78984 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x648aaa91 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6532255f drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65426b1e drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6588280a drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65d17334 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65ff32cd drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6661d81d drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67bdb1b8 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b6d4dc1 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bf489ea drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c115ca5 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c2e4ce4 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cbf4084 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d977168 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e06d4c3 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ed9449b drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f4b5e94 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x703900fe drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x706a86f3 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71ae5be5 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7213ea99 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72c7b114 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7458b7be drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7471f953 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74ebbd37 drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75b7c3aa drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7626c886 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76758778 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77eeca8f drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77f5ae72 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x780f15bf drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78aa13fc drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c8dec58 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ca440b0 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ce70aca drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ff72470 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x801b71a6 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x803bb19d drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8336e8c9 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8357cd64 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8387ad8a drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x839b583e drm_mode_object_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83f93cae drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84438669 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85fcde7b drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8718852c drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x879f7f52 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x887ab196 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x890c0c70 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x895c6999 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c24fc9b drm_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x922c97fa drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92a53dd4 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x930cc32e drm_crtc_commit_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9723fa46 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x986d4462 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9898e95b drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a6c5700 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9caa52be drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d004c2c drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e197ae3 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e4439ad drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e79add5 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0804819 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa289a6f2 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3e7b913 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa47457c6 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4e23fca drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa50d6db8 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5ecb7cf drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6de119f drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa70eafc5 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa79a5697 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa94a770e drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9eab9db drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa7edc80 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac2032b7 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacca57a7 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad9c2967 drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae4ce2d0 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae82c144 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf1a6b68 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf600d24 drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaff7c0b8 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb34de41f drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb37d51ad drm_format_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3fb7142 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4f51b24 drm_gem_object_unreference_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb59c81f7 drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5afb239 drm_crtc_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6d7f9a5 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb76d3f12 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb824b010 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8e5bbb7 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb95b3dce drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc2be23c drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbce1a00c drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd04a0ad drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdf685ba drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdfeaeee drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbea6ecb2 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc083703e drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1e54825 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2220213 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc29a5309 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc33c6eed drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3516d75 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4f693b8 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc508cb80 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5cb3af6 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8065ea5 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca2e82b3 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca996283 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcacdc55c drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbaeac14 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdcd6bdf drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfced73b drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0903f15 drm_format_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2a827cc drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2d07987 drm_gem_object_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd440b068 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd50055fe drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5fedf2d drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd634a5f7 drm_mode_object_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6977765 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6a63166 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd73a4582 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd80170c0 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd92e83c4 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd97837d4 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9a5ca0c drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda6734b9 drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc09724c drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdda72426 drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde9c09dd drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdef4c718 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0692d9f drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe08da78a drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1e9a3da drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe320eeb7 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4985d65 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe522d4ba drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe56e7acd drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5ff0200 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe64a6c4f drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe77e317d drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe83e48ae drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9937fdb drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb07c44e drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb26890f drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedf732e1 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef249e29 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefffcd41 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0989446 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0c7e8b1 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf12709be drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1cd230a drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf234118a drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2fd5e8a drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf32da11e drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7e6f095 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81e44ba drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf888b3b1 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9887a91 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9e86fd5 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa90d6a9 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaf0fe41 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb325563 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbf34871 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdea1751 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdfd65f0 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe642796 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff5012a4 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff6ff40e drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc56b55 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00188dbe drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01293d72 drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0362c355 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x070396d4 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07282b56 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0890d823 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09538e05 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a886b2e drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c160ee7 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e4ab767 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f9850b7 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1212d45a drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13b334e7 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1452d628 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14db6389 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1524b11f drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15d19e38 drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17c52a27 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1814354d drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d22edf5 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d645f49 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dd7f743 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f70d2f9 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x207406ca drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20f91bed drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x212fcf90 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2428e641 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25b18db0 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2795a47c drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a8b257f drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cb5b88a __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d24aa75 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d586a7e drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d9f9780 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ed26544 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3243e32c drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36f1e4ba drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3806d71d drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d1f04f0 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e8b85ea drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3eff736c drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f4c88c2 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4066f23e drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42994c88 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4308f383 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x433233ef drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4661b824 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x468c6dce drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48e78b4c drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c2c53ef drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ec8cd82 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fa35252 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51dffb31 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51fa4bb0 drm_atomic_helper_connector_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 0x55d29906 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57596402 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59439bec drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b7aa28e drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ec105cd drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ee09c55 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f851fda drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62d9c45a drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63240379 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65bfaf1f drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66021e5a drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x668ec615 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x687be623 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68c322fb drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d2eed39 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x703d02a5 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7060907e drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7172ede1 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x735a5445 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7685eb4a drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x783bcec6 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x791c4375 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8078a891 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x810d7d35 drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88a2a675 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89528f57 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b27bb89 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e7e30d2 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f27aa72 drm_atomic_helper_best_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90302539 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90865ca6 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9199f608 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x920fceab drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x944d9d31 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x958ed01e drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x962236ed drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97e2e4bb drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99cff5bf drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d13a148 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d595703 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9de66fa1 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ec68d5f drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ed73bc7 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa37291f0 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3b883ad drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa43f68cf drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa95ac306 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9601f78 drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa1d04a7 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab5d9532 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1ef424e drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4454b5c drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb94ea92a drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf24f341 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0486fb1 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc09868d1 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc12d354a __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1471d21 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc15f445d drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2903ec6 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7d736b4 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8941a58 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc91d042b drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbecbe53 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce9c2e13 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd16ba644 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd39f5fe5 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3c8d8d8 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4efe4d3 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6b2512a drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd71371da drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd995d45b drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9e23a02 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdabba11c drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdae669c0 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde1f7282 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfe8741d drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe15dd588 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1793a5c drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3580ad2 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe359c38c drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4c1d3a4 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5ddcbdc drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe60357bf drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe799c330 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe95dc7fb drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea8dd45b drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xebbc0df6 drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec20ab84 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec58540a drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf02415bf drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf04a818c __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf51e3e48 drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5de9649 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7943f50 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7c4b007 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfaaec0e7 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb2be240 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe1e2798 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfffbfdee drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x038d2364 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06ad1204 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bab7f47 ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0d316ded ttm_bo_default_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0d417ec2 ttm_bo_default_swap_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1940e4cd ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1de5fbe6 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x200e380b ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22572abc ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22ec80fe ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22f1250b ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x232a4c64 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2359dab6 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24765c33 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2cbe825d ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x31d0dcf9 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x31ef3c9d ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x36f488ae ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x375ba6a6 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37ab955f ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x40bffd49 ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x424c0480 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x427435eb ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x447586d7 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4481fe5d ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x47a40f97 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x485a5bc0 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4880b741 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a2595e6 ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4bd606b8 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5644b321 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5b9aa29f ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5caaf9db ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6737fdd2 ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c8dc6bf ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6d422e7b ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e875de9 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6f895489 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x78704739 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7be1acbe ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x836d8fd0 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8aa0e625 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8aa49f0f ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d058282 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8dfb28fe ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8ef1982b ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8f5d12cb ttm_bo_pipeline_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x946d9ea3 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x962abaf6 ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa148b408 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2d62f4e ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa6e0dfae ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa7d7df15 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb163b906 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb66024c0 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2b144f7 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4d4618d ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc500ff87 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc6a90541 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc7edcd09 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc834147d ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcde3cce2 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf49f835 ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd516841c ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd6adf3aa ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8a44f70 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd9e4fbb1 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xea7d6117 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf0e59cc7 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf2372ad5 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf27b2073 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x6c269645 vmbus_sendpacket_ctl +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x8f9910fe vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xdcdb9d06 vmbus_sendpacket +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x1c323315 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x37ed3c12 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xd632c4b4 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xe090a484 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x9a2dda19 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xa74989b8 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x455fd591 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x011fac3d mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0f4bb916 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x27f201d3 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x311fd1d7 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3c8e09bf mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x549353b4 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x572fafbc mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x693e36a8 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6c2cb701 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x700b51c7 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x758393bd mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7da7d883 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x878991e8 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x974ae598 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdbc53d00 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe5b3f645 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x054b72d1 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xe3ab2fc2 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x1f00df0d iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xc175e981 iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x8b950ac7 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xe05521b9 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xe3c24be6 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xfe314ed0 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x4ec028f8 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x5414a203 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x6f20d36f hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xdb8a2b2d hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xec4f4374 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xff0f709c hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x3f6fb394 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x5a2c4b6c hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x784fdcf3 hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xd3ec144c hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x020027a9 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x073a043e ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3aa5436c ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4bc6185b ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4eb6cce5 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x9d8e3639 ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd6453a14 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe1157f0c ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xee0ee0ce ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x949f9bf6 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x95d76c54 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xdf1b8715 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xf3a36571 ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xf4f3685f ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x47011b16 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x8b6799bb ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xe202d1a9 ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0897514f st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x136a794e st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1e9ecc96 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2cfd3678 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2eb31422 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x30de6aa9 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x32874ce9 st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x538a7f65 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x732ed174 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7c2cf70b st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x99d1009e st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9bc39bf5 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa33a7c8d st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xaa8ca44a st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xda61923a st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdeba275f st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x37b746a1 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xdd1a1a08 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x55ff69f9 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x94dd1269 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x140abe8c adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x47b675fc adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x433c7114 bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x084baec9 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x2684931b iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0x2d1b1880 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x30ecce16 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0x321904a9 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x399caf36 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x46117b56 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x528efc87 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x66216520 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x70c55daf iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x86d12299 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x97c70bc6 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xa86294a6 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0xaef8d0ec iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xb6c9db95 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xb7cc0cba iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0xde5e06d2 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe20206ca iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xee82cf39 of_iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0xf90146fb iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x9c91412f iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x4985d60d iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xaebf85aa iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xda8b116c iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xea033289 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x7ab1443e iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x98d8c66f iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xb253e930 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xd6239dfc iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xbc7ca025 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xdd09a3f9 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x09fe39f5 bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x538e89d0 bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x78cdcc27 bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x99480c39 bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x034623d6 hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x45143c7f hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xb9ff32bd hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xeab23faf hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x043b2733 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x8e93e258 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x6fe9d8c5 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x7832a91a ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x67f9701d st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xe95573c2 st_press_common_probe +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x038ac4f8 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x12e220a9 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2d57949e ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x35918703 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x39ae87c1 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x515ca593 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x51aaca7b ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6b1435b8 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7906be13 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x85c8a559 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8afffd9b ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x910e871e ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xabc4bef4 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb00bc8ba ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd516db82 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdb27c284 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xee5367e8 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfbeba807 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x049ace30 rdma_addr_find_smac_by_sgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05e04018 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05f51c4a ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07c80eaf ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0865c9a8 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08d23602 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09a17487 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a1e62fb ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1316f368 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x135caa37 ib_destroy_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x139a5f99 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14f81e3e ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x163fa21b rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a99e86a ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1be49da6 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bf0f4b6 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1edc4064 rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x216b48d0 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x223fb6db ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24250acc ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25ab0223 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x264eaf3b ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2877a190 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x287d1e73 ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b06bc89 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ba60c23 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d780df0 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ec05782 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32092bca ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x379ec5a1 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37ca7a3c ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x385f9c9a ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39480bda ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39bf79b3 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bde5820 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cf79b56 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e89f40e ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fe8ca3f ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40634d1b ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44ab6c0e ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49e7785b rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a615563 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e9d46f4 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x512c7d05 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5151de45 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52a9d085 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53f84a37 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x576fdbac ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58123413 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59191bb1 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a8b13a7 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b2e05d3 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ebba275 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x634fa1ee ib_create_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64482895 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x665c85a4 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6718c9ea ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x679906d6 ib_sa_classport_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68686a23 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a23a27e ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a248288 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a7f71fe ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c272f6e ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e687b05 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x741e426e ib_destroy_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74635eba ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x763546cd ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x773e7106 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79cbcc8f ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7dfdb742 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e063a8c ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80e7973e ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x837b230b ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8afb9f63 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91a196dd ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x939e3d28 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97bdb9a6 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b9cf9a rdma_addr_find_l2_eth_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99d21108 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b8c1c64 ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d230a78 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d9cabc5 rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9df14991 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f900b59 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1449eb9 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2c92d40 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa337b6d5 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3e3ef98 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa56e7d88 ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5a9a60b ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa92d3317 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa2702a9 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab6852b4 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xacb548d3 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad9976bf ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0bfdf6b ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1aa2031 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb38d1294 ib_modify_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb411f61b ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb42d0624 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4373778 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4b0ec06 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb55a05de ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadde8f1 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbaf2e532 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf5a5fa3 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc034a023 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3a7f568 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5bc2597 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc62fb5a2 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6896ad4 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbca56b6 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc7a6a6f roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd10f448 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd7f755c ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0b5ab51 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd23fa145 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd546afe6 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd62a731a ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6de5228 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd71b5c4f ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7652649 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd99eae3a ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9dec0a0 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf3c8d96 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe20bb025 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3391c5e ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3774975 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe531c972 rdma_resolve_ip_route +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe57c3c01 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6a561fa ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe79669fc ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea72d3aa ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb091d4a ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee0c1559 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefd0a63f ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf04a6e92 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf22c5b10 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf80a0143 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf992a4c5 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa0b727e ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa8b754b ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbdc7a18 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfeab689a ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff391b6f ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5397d778 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa152d38d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xafd6e61d ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1c6ebbd5 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3661da2f iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6543368d iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x67000a0e iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x84f5709d iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x87cec4c1 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9114a240 iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9258e3dc iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9e77d377 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa03e7451 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc036596f iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc4e078cd iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd2deedd0 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xeee81e28 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xff911cd2 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0823273c rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0991b07e rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x09d60bc0 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x23cfd8aa rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x39ec90cd rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x434d8fc9 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x50b829ee rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x53ec11da rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6777b216 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6a9e0955 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6b05bcff rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x727bf6a2 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x78e4d424 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xab25d4e9 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbe33a185 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd2df30b3 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdaa781af rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe85e9309 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf0a2342c rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfb0d6e9c rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfcec8d8b rdma_listen +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e385842 ib_rvt_state_ops +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x14a3684d rvt_init_port +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1af0a9f9 rvt_lkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x43eae871 rvt_invalidate_rkey +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4470ac97 rvt_rkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x46d87685 rvt_unregister_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x48f0713c rvt_check_ah +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x66a6f164 rvt_alloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x66f6075c rvt_dealloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8cd75d94 rvt_register_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x91ede26e rvt_cq_enter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb3b99dbf rvt_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xef26a5bf rvt_error_qp +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf946c995 rvt_mcast_find +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x0edff7bd rxe_set_mtu +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x1047c347 rxe_remove +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x48f93f58 rxe_remove_all +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0xbcba0a8a rxe_rcv +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0xc1eec897 rxe_add +EXPORT_SYMBOL drivers/input/gameport/gameport 0x38fd0cc8 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x3dda1832 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7d0ee689 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9928f992 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb0ed8723 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc2774cc8 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xdd028f63 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xfbfb9709 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xfd7864d3 __gameport_register_port +EXPORT_SYMBOL drivers/input/input-polldev 0x00e700fb input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x4a8f965f devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x4b562279 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x84d5d89d input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xab283279 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xa022c337 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x068b32e6 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x9b05aeaf ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xa120c075 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x1cfea197 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 0xd4626b7c rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x334955ea sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4611a41c sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0xb196e84a sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xb793f5f2 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xb7d1d248 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xe0367b89 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x5ba9b724 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x7b2a77e8 ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x07de6f6a amd_iommu_bind_pasid +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x292a45de amd_iommu_init_device +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x34b41208 amd_iommu_free_device +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x37ec3ad2 amd_iommu_set_invalid_ppr_cb +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xaa6b579b amd_iommu_unbind_pasid +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xfc6df914 amd_iommu_set_invalidate_ctx_cb +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x03b2975c capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x192309be detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2dcdddc3 capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x398f9a68 capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4dd7d1a2 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x640ba9a1 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb9fa4364 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbbc2bc79 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc825776a capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xebcb35fd capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x060240bc b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x38bea74b b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3d0a80a0 b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x48a6b63d b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x713c349f avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x72054d30 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x73cd9a39 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x76bf66b0 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7f9e90a2 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7fadc8a4 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9511f501 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9f3c0a8f avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe927d445 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf835c229 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xff48086c b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x18269a30 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x203126cc b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x8e965e70 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x8ed87af8 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xa409ff1b b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc0954203 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xcbc02787 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf43604f2 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xfd8acf1a b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x076478c6 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x1808ef0a mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x2eee170e mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x394a74a8 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x2faee7fc mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x94075a7c mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x6dc56011 hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x7a1e9014 FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x8bc4b67f FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0ec1296 FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x0c671937 isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x593ff742 isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x6ce50780 isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x791f1014 isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xdeb66274 isac_init +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xa3bcf7da register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xa9080fb7 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xbbb9784e isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0c7df497 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0e668392 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x150ec170 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x15d06ccf recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1c4402d0 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x38758e96 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x39abf3b7 mISDN_ctrl_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 0x644b225a recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6b931887 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6e4c7d3b mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6f052312 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7166816d bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x77eb06a9 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7a27e51b mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7f178d48 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x81706e6d get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8478fe10 mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8549d8d0 mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa0c25094 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa76b465f queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb228a5e7 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc525fd78 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcb0fc5a8 mISDNDevName4ch +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 0xdd92c756 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe6a1402f create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xef0aa4e6 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf1bd97f2 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf84ae11f mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1f529ce8 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0x39e1dbbf closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0x43515d43 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x44a37d62 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x5b59b856 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7daccb73 bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7f2a56c0 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x82f53ad3 closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0x8833b0e8 bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0x8f8fc624 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0x97336151 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa3c5c702 bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xca5df778 __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0xce47a6d9 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd2813054 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd97c32a1 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0xdf892351 bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xec6f33d0 bch_bset_init_next +EXPORT_SYMBOL drivers/md/dm-bufio 0x268682d2 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-log 0x093969b2 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x6df9e3f6 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xa15bcc80 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xe194a4fa dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x03270b1c dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x0d8559c0 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x2172da9f dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xf418e560 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xf8b37001 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xfeb10d91 dm_snap_cow +EXPORT_SYMBOL drivers/md/raid456 0xb9876344 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x094d1c93 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x40aafd86 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x698433fc flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x86efd435 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x96229745 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc37e3f60 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcbebc446 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd10812bc flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd1c27862 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd22deb8f flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd4110cb3 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf600e353 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfa8d37d4 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/cx2341x 0x03887a73 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1d3604f4 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6086e12e cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6cc7797c cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0xd05bbac7 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x237f43ce cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x13257cce tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0x541f4b7d tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x017eb070 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x05ebae62 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x07040035 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08c0ecf2 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0d3c856a dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x12f5425e dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x14fdf0ee dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x17951fa4 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x183452aa dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1885c156 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x22eb5601 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x29dbec53 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2d550f61 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2ff505f9 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x30152e19 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3405dbfc dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4cf3b0d9 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x529da566 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x532db9b2 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5eec646d dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6435b746 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6560e532 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6ab3b1a4 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x82518afc dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8bcbbafd dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8d8fcb80 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x95739077 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa56e4ec6 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc69a5b53 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xca6cccbe dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xce4a068c dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8988b7b dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd935b0ef dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdba17b9e dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe4753ea6 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe7f5e295 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeaeffb93 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeaf47cb5 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0xa7bef10f af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xc2172a48 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x22c030a1 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0850d75d au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0b2ff96a au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1f1d6e0e au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x64d36af2 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8a92c00e au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa721544c au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xac6b27b8 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd0ad511f au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe7c0340c au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xb35bb93a au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x0d400a06 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xbb30b110 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x97fd113f cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xc3b50e02 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x6513065e cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xeee07f78 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xd23a8abd cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xf5abd9a5 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x003a37a7 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xf750d7ec cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xdf09f610 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x2617d984 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x2a1005b0 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x020503f8 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x0eee4589 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x1d0b6094 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x38fcdb14 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xdfbdb7ea dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x021f1d7f dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0c656751 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3d749320 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3dcd739b dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3ff104b6 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x55f09ce4 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5f22fdc8 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x833d356c dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8d2d2400 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x977744a2 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc9a5698a dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd3d2ce8d dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xee3ee527 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf4e263a1 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf5cf5dfb dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x4c182b5d dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x1a122b59 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x297ec71f dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x603d15c5 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x766f5d32 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x85cc2ddb dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xd5d00b2a dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xb0ab1e81 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xcd6ea13d dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xdbc44def dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xeca3bcff dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x94c788cb dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x9fa7c8b5 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x459202b0 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x829fd4ec dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8c503066 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xe89b6c00 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xeecfd7bf dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x9afc21eb drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x673e41b6 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x640545d9 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xa18e8b89 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x2e457040 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x31c66520 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x50574b5e helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x6a8713d8 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x782af2f9 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xb82a934f isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x6a72ae99 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xfc6f7d73 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x1e89dbd4 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x3a78520a ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xdb0a1779 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x6f0e7858 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x42d92cb4 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x700998ed lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x44360458 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xddced6f7 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x797950d0 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x2a345d55 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xeaffbe62 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x1514e939 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xa2416195 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xe18d7860 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x12646b62 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x3f0f5fe2 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x51afab64 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xf7e9a96f mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x28a1c8bd mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x47b0046d nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xa31d1036 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x192b708b or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x6d44b928 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xd27e6461 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x51327e2f s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x10a513c0 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x9f44537b s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xb6aa6132 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x6e417864 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x6fedbac7 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xe5b09fb4 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x6063afe2 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x47b4fe06 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xce7c77ce stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x217abc18 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x63ad69c0 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x92c35d07 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x8c234513 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x8323fc48 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xa7f1636d stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xb2725b5a stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x82a9d5fb stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x9bda13a3 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x2d85d5ad stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xe0e8b649 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x79fbfc73 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x4eb17f7c tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xb34f2406 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xd7435197 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x68eead39 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xbf549370 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xc1459d77 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x2a22f9b3 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x5365c107 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xd0a3a05a ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xfd64b08b tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xa268fb47 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x50c8309a ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x5191399f zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xc1e587a1 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x2d0895e5 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x32f4222b flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x94d95914 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9d2b2d2e flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc5465fc9 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xceeb0a2e flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe53e331d flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf6c7eb76 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x0be908fe bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xa0447fd8 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xad23cd62 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xee64ddff bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x6c47a62a bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x9e02dbe0 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xa20f9783 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x06f02c7f read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0804e601 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0ee90896 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x342daaac write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5078c265 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb0e49d7b dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xbfc68b1d dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xcc044b95 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe4d4a9b2 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x9f5fe65a dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4a061f77 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4f760c26 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x5825f952 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x8867967c cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xea9fbadc cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xb7cf915e 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 0x1fcd131f cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x669c46b7 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x72ee1ecf cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xce1b8ce1 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xdc9b7f85 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe865d21b cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xfdb996c9 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x8c8cb864 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xde49bd98 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x1b8baebb cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x6ce68256 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xd07cfb42 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xf8ba15f9 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x13d96a44 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x24381b85 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x50b9f1ae cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x79cdcdbb cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x81cc0a13 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa7a559bb cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe0006a25 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x118893b4 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2d7eff9e cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x66dc0816 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x713e90c0 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8bbb8b89 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8fc19059 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x92c8ded4 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x96e98d77 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa7558abd cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa9ba68fb cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb4d568bf cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd1b531d4 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd3834954 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd70d6da8 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe062347d cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe523ef88 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe56b826c cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe6a915b9 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xed4b3a84 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf6db88f7 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1ffc6316 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x26e528f5 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2e4fa2a2 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x40c39784 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x41506ed1 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x61df1bde ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6c8ae308 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7d9a4f54 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x84a18703 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x99045144 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa06322f4 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa0eb6580 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa580731c ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdce4f713 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe023ee83 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xeaf916cb ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xed1b53da 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 0x1f2bb426 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x22ea1bfd saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4574e0a4 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x485d24cf saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4f7812a6 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x52c6b6c2 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x64f7277c saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6751cb9d saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x73f23efe saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9fd9684f saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa35a1bc4 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xba2a9b65 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xbd9528f6 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x0955f3a6 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x958b61da videocodec_attach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xa9b0acb0 videocodec_detach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xf9561422 videocodec_unregister +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xfeadf551 videocodec_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x1ed98777 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x305d588f soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x4729ea65 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xafefb970 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xbfc6c117 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xc16002d3 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xc4b1b28c soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/radio/tea575x 0x2aef0fcb snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x38a9fbe1 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x50f05f9d snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x6b952f91 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa2811a0f snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xc1f26aba snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xce3e85b3 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x0c153f64 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x10ca9f61 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x245c1477 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x5ca59b45 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x880252ed lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x99f0e13d lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xab37ea2d lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xba5469dc lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/rc-core 0xb36ebafc ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0xde5ae73f ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x62041454 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x18565354 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x1f0e1f68 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x6cc156b5 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xcab9b5e1 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0xd7f2b609 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xfb950994 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x76bcec94 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xed93e911 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xd32d4f2c mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x7456b713 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x1204eb37 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xd4e09822 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x5777eccf xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x659af1f8 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x76ebc757 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x394bd96f cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x6f68d07a cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1bf77bf0 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1bfb2800 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1c1d03ef dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2aba7517 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x55bf0743 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8a673a87 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xaa99b808 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd6d7a1fb dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd70dce30 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0af3ea9e dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1927cb7f dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x778c7fcb dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xaa983572 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc6d0face dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd13d07bf dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf735b941 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x749665f4 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 0x001d673d dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1db3dbe4 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2804e78f dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4d9fcccc dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x754e3883 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x840b75ed dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xab153804 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb63989d3 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb8b80714 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd6f632d4 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf5fc88bb dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xb345a20d em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xdcbfdab9 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x17c87a15 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x228f468b go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2734816f go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3f8ace73 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x87df3c80 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x891805b6 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb9e86fac go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc191e8a6 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc2b8c33f go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x423ac856 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x42f8be96 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4ad92bd2 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x68958ca4 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x83dd464c gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9d4a7b67 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb6cae2a1 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf439b979 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x1a1803cc tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x6f08fb1a tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x92af2513 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x5312a222 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x78d5a3e8 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x51c41306 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x9ff5be46 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xc86b165f v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x27e2921a videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x36257832 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x60692c94 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x60de8ede videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xaa43df6b videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xcfd2b3f0 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x8edb4588 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xa240f7bb vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x039cba55 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x18b357cc vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x29b8dbd7 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x4c0ad239 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xa7e57b0d vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xb0b7f6b8 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x00554132 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x02d1b101 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x040b1d98 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0414acc0 v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x049d8341 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a7e07f8 video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0bfd2aef v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123f350d __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x13627563 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x156f49ec v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x18a18918 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1924454a v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1c19d444 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1c520612 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c93ed33 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x333f3e35 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a97b75c video_ioctl2 +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 0x419593ff v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x444f2f49 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x46383c40 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x508962e7 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x56044229 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x570fb59f v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5e4225f6 v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x61ecb0a2 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x67134738 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x69930995 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e810258 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x70015f83 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7210f859 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x75a6ccba v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7626b6af v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x77523fef v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x839882b3 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x849a29b1 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8777fa05 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x887d4a3c video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c4a3657 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x90133772 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x972cf0ae v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9ca25ad5 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5375841 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa8ed99ca v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf0fa680 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3626180 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb85c9b4a v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbbe8c1c6 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc0796554 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc37c02af v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcc79f5ef v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xce31d368 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda0acf94 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdae3af69 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdff6939b v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe6063730 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe8fcf010 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe9b2eb55 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xea080e5f v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeb2440a5 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeeba670c v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfeb74eb8 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1c8c00ec memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x280a4685 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x50240d94 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5b2e6957 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x90f8ce74 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x93fdb426 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9b21482e memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbb21fe0b memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc0e11050 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc4341ed7 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd98acbbe memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xeddb3094 memstick_free_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x07c366ff mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1313eaba mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1427166d mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x28887913 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3161d0be mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3827f78f mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3973283d mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4736ae9e mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4af6d5b6 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5284438c mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5b08c693 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6e50b0c2 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x897fbc14 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa0972acf mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa47dfcf2 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb2791479 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb429c509 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xba64153e mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc3fb4128 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcb743c0b mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd8ee0351 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdccbb902 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdfe28bc1 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe731ec61 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe9e7a18e mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xec357a62 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf3d4ecfd mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf3ede7e9 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf9257ba4 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x013f11c0 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x072ab317 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x09149cd2 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0dc0624d mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x198a423d mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x20c256a1 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x252d4ab0 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3dbf55d5 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5d6e16c7 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x69cf8525 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6b95ab52 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6e005043 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x71a6d574 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7a77c67e mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7c76c76c mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x820a63e1 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa02760db mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xacfe6dca mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb05351a7 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbbf7ae7d mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc3fbff15 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc9b958ba mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdeb05d1f mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe6fb6c23 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xefc975de mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf93cc219 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfc6b2597 mptscsih_shutdown +EXPORT_SYMBOL drivers/mfd/axp20x 0x925691b8 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0xcaefd907 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xe0dce13a axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/cros_ec 0x6f6ca364 cros_ec_remove +EXPORT_SYMBOL drivers/mfd/cros_ec 0xa2e9fb72 cros_ec_resume +EXPORT_SYMBOL drivers/mfd/cros_ec 0xb058ee0d cros_ec_register +EXPORT_SYMBOL drivers/mfd/cros_ec 0xc431d04c cros_ec_suspend +EXPORT_SYMBOL drivers/mfd/dln2 0x0b7dd8df dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x505b8661 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xf86bc65d dln2_transfer +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x39f9c375 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xdabc665e pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3515d8f1 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x589b0c7e mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x628f15dd mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6d451193 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7a46b07f mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7d05e9cc mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9fb98880 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb63dc491 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb912c0a9 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xbab9f4ce mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xdff60567 mc13xxx_irq_status +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 0x323f02cb wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x4eabafe0 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x7c911479 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xb24ae614 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0xb3ba176c wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0xd1c9adcd wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x15b04a86 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x933b2978 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0xfc393ee4 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x8274bf3a c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0x9e2b2166 c2port_device_register +EXPORT_SYMBOL drivers/misc/ioc4 0x59d16e5f ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xc50fe048 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/mei/mei 0x476b569b __tracepoint_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x58670421 __tracepoint_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x950a912a __tracepoint_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xe4d3e6fc __tracepoint_mei_pci_cfg_write +EXPORT_SYMBOL drivers/misc/tifm_core 0x4296967a tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x74ef7f7c tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x96fb8166 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x9c8cb5b5 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0xb180c033 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xc32fad11 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xce04545d tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xcf4f5141 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xd3b635b1 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xd631cfa8 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xe4066e5e tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xf02ef663 tifm_remove_adapter +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x6a500c20 mmc_cleanup_queue +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x12d24497 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8a514955 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xba01e3d0 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xbcdd4bbd cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd80e0207 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xeef3a4a5 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf982c2e6 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x1c02635a register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x40929bfc do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x636ef24c unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xf5114060 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x3243750c mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x231944d5 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x1e07f016 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x337bc8c8 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0x748e6245 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/denali 0x7032c9e8 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/denali 0xb110e726 denali_init +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x055784f6 of_mtk_ecc_get +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x4077c768 mtk_ecc_enable +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x5437e775 mtk_ecc_disable +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x67dc4d5c mtk_ecc_adjust_strength +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x6df58afb mtk_ecc_release +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x76e53683 mtk_ecc_wait_done +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x77ecf26d mtk_ecc_get_stats +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0xf00129a1 mtk_ecc_encode +EXPORT_SYMBOL drivers/mtd/nand/nand 0x1c9e217e nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0x260933ca nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/nand 0x4610f2b5 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x517d750a nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/nand 0x5ddf0728 nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ef5038a nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0xa0fb4a3f nand_read_oob_syndrome +EXPORT_SYMBOL drivers/mtd/nand/nand 0xadaba037 nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0xc4178ab8 nand_write_oob_syndrome +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x7fe8beaf nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xb5160b4a nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xd5b6ca2f nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x33f057b4 nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x70087a90 nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x08c53083 flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x812d49dd onenand_addr +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x22bbeffb arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x24e0a597 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x26bef926 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3ce70814 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5c096adb arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9ef367de arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9f2320b4 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc4dcab12 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc9dddb82 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xeff3c7ce arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x73f2d4fd com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x8845e4ea com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x95e62782 com20020_found +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x84a0321f b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe10fe507 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf238efec b53_switch_alloc +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1c453541 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3a81807a __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x47d75eb5 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbce17c09 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbe99c5ea ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd2ff96e5 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd9a5e1a5 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe1cc257d NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xebac1366 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf40960e4 ei_close +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x18014554 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x285bde59 bgx_get_rx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6dc1648d bgx_get_lmac_mac +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 0xe48ca42a bgx_get_tx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf9508980 bgx_set_lmac_mac +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x18b6ed8d t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1b09b02a cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2808b902 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x39095c2d cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x50b1635b cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x897c9f16 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x96cb1254 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9ef959eb t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa0f798d9 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa4db215a cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xafd725f1 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb4b38398 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdc5cdb2d cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdcec1fc8 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xed3b3054 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf5adff2d dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x03b450a0 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x126d5c83 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x12bcdb8d cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x149b6d04 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x154e8d1b cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1964d00e cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1a31ca40 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1a507ac7 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1a54cdb6 cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3273364c cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35d51ca9 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x45237e99 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x46d45045 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4890c65f cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57707dfc cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x67d7589e cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7cba3ca1 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7e18e176 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x81b4ec56 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x83438919 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x841d403d cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86b663bd cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8bf68f85 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8dfdf43e cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x922f78bf t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9256697f cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaed9933b cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb1a7edbb cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb55c1ff7 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xba8df7fc cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbdf22563 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbe29a2fc cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc2fa8b73 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd416dfa0 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedad6185 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe333f6e cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x04f7c848 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x27efd878 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x76416554 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc3dc7c77 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc4c30ee6 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x1ab9bbb9 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x20f4b7c8 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x43e1cd8f vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6a024582 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7f93d194 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x87df6f16 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4fe08585 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x92936ba0 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x89a86149 i40e_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0xe68eeb1f i40e_register_client +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0bdc1f99 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x150aed20 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b489b25 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b49d583 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b03fc9a set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c942d1f mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e1a8159 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3416a3ec mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ae68f44 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bdeb529 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43a2a2f8 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50530938 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53fd71fa get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e96a20f mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x609ac179 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x621343ea mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6660399a mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68722212 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b8667f7 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f1421b0 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79890025 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c1fd873 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ff2f07a mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x826cf197 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x898edeac mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b697f83 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bdad6b2 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c29df30 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d5836c8 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa430af9f mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xadd1b22a mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd728c26 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6c0de17 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe128e143 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5809f5a mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe64e552e mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe91231f7 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4718ceb mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9ee5f15 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd423386 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03ca40f0 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06bfa32d mlx5_core_destroy_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07c140fd mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c787915 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e8bd727 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10fbc637 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x123f88b3 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15bc6db3 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x169fde3d mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a6fc9e9 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bc68846 mlx5_del_flow_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x202ea56d mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x235379dd mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2450c92c mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x251e336b mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29986a0e mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d2cb28c mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fd49c02 mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x307c9dbe mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3de42858 mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40d9d23f mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4218b9d8 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42f68fab mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f3fc93c mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51474ed8 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x581e848d mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5efada07 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x610e3e50 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x633db848 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63bbae70 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x648af0ab mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6993a3c7 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bb5ff96 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7339a50d mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x753ed546 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81d90751 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x860f8887 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87d8e316 mlx5_add_flow_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c89f5ae mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8da14d95 mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x915acbf7 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92c6eace mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cf965a9 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0f91be0 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2965bfe mlx5_core_create_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa64d3185 mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb09934f1 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc831d40e mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc92db250 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca4abe59 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcae87a1a mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcebd9e72 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd8486b6 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe28baaa1 mlx5_core_create_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe337b22d mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe60776cd mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea32d0fe mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0e0beea mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2b226fb mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb0f0d3a mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe2bbe64 mlx5_core_destroy_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x00ae1665 mlxsw_reg_trans_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ab0c687 mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d07a992 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x30790801 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3247e4bb mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x39a96739 mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x668baa94 mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6b16f0c7 mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x72a05371 mlxsw_core_resources_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x85ddd2fd mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa30ed7f9 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5ff38e0 mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbb8f412c mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcaab942b mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xea9d95fe mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xec51e246 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xec8a4800 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfcd17cd5 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x109fb756 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x27498c22 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x35dd498d hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x5a206685 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc9edf4c9 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe376ada7 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0331cb83 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x28f1d4c8 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x36803988 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x52540933 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x5b138f55 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x75d2f977 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd38b3524 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd4ea6040 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf27f5b01 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xfa780efe sirdev_set_dongle +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mii 0x3d2249f2 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x873616f1 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x9445113a generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x9aa0e908 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xc69bb1bb mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xddc3faa6 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xfb7231ee mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xfbb8fbbe mii_check_gmii_support +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x8c4bac2e alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xf7dea4a2 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x6370aa7e cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xa3992836 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency +EXPORT_SYMBOL drivers/net/ppp/pppox 0x4c1a8b97 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x85d6a8a8 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xeb23b3e1 pppox_ioctl +EXPORT_SYMBOL drivers/net/sungem_phy 0x2d3bf973 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x1c9b0d3a team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x39da4fa9 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x52a7f1b8 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xa67d8a13 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xc9b9197d team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xd3a0b9dd team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xe0df7e43 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xf103752f team_option_inst_set_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x0f1974fc usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x1cae8561 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xe28521c0 usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x068c4c15 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x25452025 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3077408a alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5486e391 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x61416d61 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7cd5eaad register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x88ac7c66 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbc8787aa attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc765c6e3 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc934e8f7 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf414b4e3 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xfb850bcb i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x00a964ad ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0d0a8596 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x18b14043 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x191e3965 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2d2a76bb ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5093f43d ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5bc3fa0c ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x81b31781 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8c0f584b ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb03e90b5 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb3dd5a39 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc81dfaaa ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd1c77911 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2e97167c ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x303f8ff0 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x37a90fba ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x46483eca ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4a3b6e08 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4d95473c ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6a28470e ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6dd798c8 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6df3c9a3 ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x716179ac ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x74636c4e ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x859221a5 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb11bd8cd ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdcde0cc0 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe1b08c33 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf80de26d ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x106be7b7 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1c71f1f3 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2785f874 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x33393f5b ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7c86b0c1 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7f34a9db ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc80784c1 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe0a5dc34 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe729f138 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf7d227fe ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf8025770 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x082928e8 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x227b26d1 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x32269c8b ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x35af3095 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x38539292 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4851498f ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5afd89fc ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x60287b04 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x70e1d900 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7cdcf64c ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x948be482 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa50c4617 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaa4fcc36 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xacf1bd40 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd18ecd87 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 0xd6d8c08d ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd8a70789 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xda833b47 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe2f81604 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe39bb22b ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xecf227d9 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf38402b9 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfe82cb95 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05004c6e ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ae052dd ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c2342bd ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0cbfee8f ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d2d9d30 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15e0ad3c ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19c83dad ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ca7306e ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d4b9029 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f1227a7 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x215611a6 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21c4ba69 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21c97567 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21dd390a ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2816c62b ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31c8fb99 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x335d339d ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3897081b ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a8182ba ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x418dc4eb ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x423d2db3 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x444ba16a ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45463619 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x461c8e2b ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46c747ab ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48ef1df4 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ef99af3 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50e47f73 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51faebad ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5303c9ce ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54a20c5a ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54b1f1f3 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d5d8b36 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e36079e ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x604b2b64 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62be0c3f ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64e200a7 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x653c17c7 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x675ea1d9 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67fa1bc5 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b84fa0d ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e2e8084 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6fd20f92 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7029dfbd ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7209c50e ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x736f4174 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73ad974c ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73fbe8b3 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79ccc37a ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c453ec6 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d552d07 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8018e75c ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82841157 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8be1cbb8 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x901f0c71 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91982ef3 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x975269aa ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9daab33d ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e9d06aa ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa09b1bf6 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0bd1b75 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa19c6cdf ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa29ef17d ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4f12b68 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7e8deae ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7f5b9d8 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa81b1f17 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9e0d1ea ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab8bacd8 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xabd24fb7 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb66e3dd4 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7b4e8c2 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb90df355 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9e43fac ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9fedbf5 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb2f9f87 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd397835 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbea67a59 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc10da5d3 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc520e05e ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc756cce8 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7c5479e ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc107edd ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xccca3f48 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2100905 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd3ab4be5 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd45698f5 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7136074 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7540054 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd98f8fae ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdae15a53 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd20a2e3 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd74d7b2 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd86ac7c ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde186817 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde78948b ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe06973fc ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee50eca2 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf02da5cc ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4e0f9a2 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf5c7c140 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd57447d ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfdead2c0 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe16764b ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfed494b4 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x3a17cf78 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xe7e5e61c atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xe98f6310 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0079e1f4 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x11c0809c brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x12908fb2 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x26e888da brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x29648acc brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2fc96fbd brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x30729db8 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x410fc98b brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x512df6b4 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7ae0df22 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7af280ca brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbceaaf05 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xcd063ebc brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xee8a20f5 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x04f9c15e stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x6b24fd92 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xccf22922 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x00c884fb libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x08c6230f libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x117a8474 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3a6e2d16 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5482053c libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5a63eae3 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x62b64d87 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6671f541 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6e903e3e libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7516462a libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x76cd9297 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7dc0d490 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7f12e914 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x861de1a4 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8a647acd libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa72911cd libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xba99239e alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbc0b5f6f free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd288e290 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd53e6d78 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe624481f libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x01016ab4 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x06c98ebe il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x09bf100e il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x11d180dc il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x12fd2e0a il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x144e55e9 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x15600d7e il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x15756687 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x158969a6 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1665e8da il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19d9f260 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1e613aa1 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f2ed55e il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1fc8bc5b il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x24a77a1c il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2625b0ab il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2782538b il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b03acb3 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2d1dfaff il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2fbef971 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3198baaf il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x355fab87 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x37fc9ef0 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x38c6e0a7 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3bf969fe il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3cc28be2 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f09ff9d il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x40d3f7b1 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x412e2247 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42c2b37a il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4331abce il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x43dd87a0 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4b7688b8 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4bb21bb8 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4fc50ddb il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x52916cb7 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x577f3d92 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f3b730d il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x63c4e94e il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x63cc436e il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x647df49e il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x667e121c il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6955db32 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6958e804 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d2b6797 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7530e4e3 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e30ad1c il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7ffe3284 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x827f62f3 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x831ec389 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8576b0ef il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x85b60041 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86aa57de il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87f5c162 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8e66faee il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8fadad65 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x90d37abc il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x911ec2fc il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x916ebd04 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x95308dd3 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9aad1258 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa0015d38 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa1e75ed5 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa965e46a il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xadbd9aad il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb26a5d1a il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb2dceb9d il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbfb8d710 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc4922a27 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc5610922 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc65fe458 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc701ed95 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xca82fc62 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcab2fe98 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc778d1e il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd424088b il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd51999e5 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd5ad058f il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7097bdf il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd736780d il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdb0e7caf il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdb79074c il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdddf24b2 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe3458bb6 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe5a89d2a il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe63fb724 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeb9f62bc il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xebf3dd46 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec5776c5 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec7105ff _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xee1ca2d2 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf5770546 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf6698a02 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf67cdd7a il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf8e7ae3b il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa034647 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xff0f63d7 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xff415f5a il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x47bda8f9 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4e0c2b0e __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8b0e519b __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd031d4c3 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe4d855cc __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf050905c __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xffe01d38 __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0c327798 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x11db57fa hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x23e34987 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3d0069b9 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x616fa98a hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x66f3c104 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x67f64535 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7ddccad0 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9448a6a2 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x96f3b8b0 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x99eb535d hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa3259f39 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4c54e5a hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb5db473d hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc3849053 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xca8dd774 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcfc5ffc5 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd2981a2c hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd5ec09bd hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe266eda7 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe753a705 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xea704200 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xed12cb35 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf2246840 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfff0465f hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x02cf7fcf hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x06bcd339 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0ea9be08 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2f7ba16c orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x30f7b091 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x31340702 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x47a41026 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6977390e orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9ee3be56 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa056391d orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa56fada8 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xac189b79 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xbbe68028 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdaf08fbc orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdb51418e orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdc8025e5 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe5127b25 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x48a60522 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x04916583 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0a9b3fc7 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x205bc0de _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x22a58da8 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x23fdc4b9 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x255a900b _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x280fdb75 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x286b5bba rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x32723b9c rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x38082897 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3f2f429f rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x41d2ac7e rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x45b70022 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4eced3cc rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x512357f8 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x54e8dbf9 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5a1ac0cd rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5a2709fc rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5ae8751c rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5c63096f _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5f1e601e rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x646d009a rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x72618f77 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x798563ed _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7bd36cfe _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8a11da3c _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8ad3e5b3 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa11795e7 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb0fa2caf rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb7669321 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb7f54d27 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc1646487 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd462ffc7 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd4fea0ac rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd7f96d0a rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd9deaf52 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xde5c52d6 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeaca9838 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xef34f58b rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf125cc08 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfeb7d43f rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x061ae6f7 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x6e819069 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x71af8bf0 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xbaa1555c rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x1f54f07a rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x3456f6fd rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x9463ac36 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa944b270 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x030292ac rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x08328609 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x09238840 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x187c22c0 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x366ec906 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x374f6005 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e97f2cb rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x44c96bfa efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5b1e4363 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x702ceb6b rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7ff8fd70 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x83173aa3 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8b361502 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8f9cdba0 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90c202dc channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9873cffd rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa68fd595 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xad041b34 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xad6ecf91 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb09db972 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb3fcd714 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc0297a66 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc0d3d9d3 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd205dae8 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd2e22ae0 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd33834bf rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd6c4ec9f rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdeba4e0c rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf79fa0ee efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfe63c1e3 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xff31b2a4 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x24446d62 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x37da4f18 fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x4a822870 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x17d8177d microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xee907444 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x0b7be620 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x25fba871 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xfe02619b nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x43707de3 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x959174dc pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xa50ad5ab pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x5f0e18d0 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x6c390d27 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x9ff0ef46 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x25820494 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3337707d ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3c04f2dc ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5e5160e9 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x89909d29 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9793fb17 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x987494c1 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb493acac st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd4af3417 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfe52a2da st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x33d665b4 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x805602d9 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x80d7eaba st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8c50379b st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8c912932 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8e9b457f st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x949dee4a st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9d243788 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa428606a st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa510a59a st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa5cddf00 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xac0a11d7 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbc421d73 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc7693086 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcb44970f st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeb2f5eba st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf8fe6f54 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfd4037ef st21nfca_dep_event_received +EXPORT_SYMBOL drivers/ntb/ntb 0x72128834 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x7656dcad ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x9943eca4 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xa1ddab08 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xa90ad3b4 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xb26c7a0e ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xba513114 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xffb8f763 ntb_db_event +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x2d089b64 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xd9a80bee nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0xa63a4292 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x0231d376 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x02eec8ac parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x1502c954 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x18e5a126 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x19e5a643 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x31721c95 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x44447fc7 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4ff2cae5 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x51aae4bf parport_release +EXPORT_SYMBOL drivers/parport/parport 0x5253eb46 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x53692b67 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x64bcfabc parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x65ab211a parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x67baaec9 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x6d7d1378 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x7fc5e592 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x8092c99b parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x8cd2d6bf parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x8e2277a0 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x9678fd36 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x9b821c24 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xacfa5a66 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xb238f1de parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xb3d10678 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xc1c0d934 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xc3960912 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xc7a90161 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xd4d29d82 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0xd517cf13 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xd78f08cc parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xd9246e91 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xdef1ce2d parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport_pc 0x05b95802 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xcb4662c8 parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x12d8b83d pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2537ae4d pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2d88b5b2 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x311ba5ac pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x33521654 pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x48fcdabb pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4947a6d6 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x677ac324 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6bda56a9 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x835dcf95 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x94e24fcd pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9bb8a808 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa801bba5 __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc97962b8 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xcc96b142 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xcd586462 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe6c4be37 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe9323a3b pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfe7f53e2 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1c94f152 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2720ece7 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3ed6c989 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x540b41a5 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9fac5bf5 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa1bf87c2 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa726b5fd pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb1a3a93f pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbb5029fc pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf753ae13 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfeb0e8ea pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x05f8bd00 pccard_static_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xe350e42b pccard_nonstatic_ops +EXPORT_SYMBOL drivers/platform/x86/intel_punit_ipc 0x3a0b563a intel_punit_ipc_simple_command +EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0x5bb1e117 sony_pic_camera_command +EXPORT_SYMBOL drivers/pps/pps_core 0x50d7a6e6 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0x96e0f1a4 pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0xb5c9a67b pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0xfdc5bee2 pps_unregister_source +EXPORT_SYMBOL drivers/ptp/ptp 0x698a822e ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0x713fa976 ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0x785773e1 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0x8587fc4c ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0xb1b24e5f ptp_clock_event +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x10ff5985 rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x2226d588 rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x7a686956 rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x7acc0384 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x7e56605a rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x8c6d2aae rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xb4ee8f97 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc6dc75d1 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd5a9da90 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xff250e20 rproc_alloc +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xb9a1da18 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x5d10fd95 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xbb226de4 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xcc5abb6b scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xebe8a2e1 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1a46af3b fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1ae63c99 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x28372f85 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x64dfdf8c fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x699d6b31 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6a918576 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x82b8dfbd fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8836cc9d fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb95ae087 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc4481a8b fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe5c36627 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf2455be6 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x081f2dac libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x173fa80d fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x19eaf2a5 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1e32ba87 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x209e06db fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2520db03 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x26cad8fb fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2ec41af8 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x35a2a4a3 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36602464 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b2adb1b fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x406fdd25 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x40ff4899 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x540463e6 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x56656c2b fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x576416b4 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5c42ce98 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e77f79c fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x748564dc fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7987b23d fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7b65070a fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80db242a fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c81402b fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x92c20b50 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x94d36373 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x956ff278 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x97248c89 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x98c0b328 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9bb13fb0 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9e5228b8 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0a5b580 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa3808097 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa3b71444 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb49ba8dc fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbb6f1e46 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbee007ce fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc1034165 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc3985e11 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6215d5d fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcea7824b fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd9d248df fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe1f5a03e fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe668529a fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe6c9ef36 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe97f5222 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xef37ed3c fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf33b8882 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf5626428 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf9d36d0a fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfbca5f40 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6ade3d87 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7569a940 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x960315fe sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xaf4b0926 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x72af6d25 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00d93670 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x062b2cd5 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1861f392 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x355629e4 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x363ecfaa osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x37bafc47 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3a7b58be osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3e86d1a3 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4f261ca1 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4f38dd7f osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6bb256f7 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6d51beb2 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x77a99709 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7b1394f3 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x819e4d43 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x83af88c4 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x841926d2 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8c228240 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8eb604dc osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9ea04782 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9ebccb69 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa720bfba osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa8e7f4a8 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb4d77c66 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb6b066ac osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb7b77c43 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbc6577d8 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcfe37777 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd0431dcd osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe43f5ec5 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe96eaaff osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xea61893c osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xebd28c7a osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xec84dd0f osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xef298cbc osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfbe89d6c osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/osd 0x1bf293df osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0x2f9ef32d osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x471f41c6 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5343a79b osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x7868796a osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xd1550919 osduld_device_info +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1e75f286 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x34bf5635 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x63af3271 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7ccee409 qlt_put_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7d0ab98e qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x95bd4d2b qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9689ad25 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa1f786ab qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbbc28960 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbdb3a2f9 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf4762a68 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf532bf4c qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x002815c7 qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x2715ec2c qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x51ccf037 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x73e87b31 qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x8f55cd83 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xfe9af4a3 qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/raid_class 0x2f1e2e1c raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x5f9e3da6 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xcb29f3ae raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x11a21bb0 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1f57d2ec scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x255372e5 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2a970ab5 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x317ba576 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x522c3f2c fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5689fc84 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x695f0fdd fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8f28fb63 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9ce84237 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xae1ca3b3 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd63d5e56 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x02761dee sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0458d3bf sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x08723fc0 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x089cc9ea sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x150de6f4 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1b574129 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1be4e3b9 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x30959889 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x38f77b85 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x39eb126a sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x575f1efa sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x577a7e6b sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x61622539 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6192cf6e scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8fa62ee4 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9ad77261 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9f274878 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9f8784d7 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa4c758ad sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa711a2f9 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcc03c7dd sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd2eb7a65 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd32ae8be sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdcfaf473 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe440540a sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xed5cf1f1 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf908452a sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfeadcda4 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xff134a8a sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x333a405c spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x49df44d6 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x8ece7cd3 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe2813ce7 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xeb5dbcf2 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x06c3c03b srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x6b5d300c srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xc3491188 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xeb1a9f3b srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x0e888a57 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x31483db5 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x02211568 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x34bd599c ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x378f9525 ufshcd_read_string_desc +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x5847678b ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x629073b3 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x66416317 ufshcd_read_device_desc +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x6b4d1c19 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x7a2ca623 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x8bcc1edb ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x9b5c5610 ufshcd_query_descriptor_retry +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x9dc1f5e5 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x9782bae4 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xd34ec0a9 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/ssb/ssb 0x111571f0 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x4467cac3 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x4ad7de72 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x69baf021 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x733e3c85 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x7909ce8d ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x7b50f1e2 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x80cac74d ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x84c4f55d ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x895db5a2 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x8a91fa54 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x953a874c __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xa17f814e ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xa345e241 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xb9b30c9b ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xc03a12e3 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc744321d ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xd0ec8b4b ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xdcf1ea43 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xe86a8d2a ssb_bus_resume +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x17ccb52f fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x22458489 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2bbb8346 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2ef020fb fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2efe22ae fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x51de7711 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x61116058 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x757dffd0 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x77a693f6 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7be08f8e fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8443adc1 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8607555c fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8bca6b2b fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x97f187bc fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa9810c8e fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb8158cdd fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb94019e0 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc08f5d25 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd21016a8 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd430e607 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe380d6ca fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe978a2d0 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfa96570a fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfc422336 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xb4496370 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x8e1448f8 ade7854_probe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x000c507f libcfs_debug_dumplog +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x01fef7b4 libcfs_register_ioctl +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x06443cdb cfs_wi_deschedule +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0bb1866e cfs_cpt_set_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0de6c369 cfs_cap_lower +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0e8f253f cfs_cpt_table_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0f5eff79 cfs_percpt_number +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x10952de2 cfs_hash_findadd_unique +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x1689b22f cfs_cpt_online +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x23e25c18 cfs_wi_exit +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2663147a __cfs_fail_timeout_set +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x274e15ce cfs_hash_for_each_safe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x27ff182b cfs_hash_bd_del_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2dbe54b2 cfs_trimwhite +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3032b1c6 cfs_hash_for_each_empty +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x306f79f6 cfs_cpt_unset_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x31fc5082 cfs_crypto_hash_update +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x361e82d4 cfs_firststr +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x36b60398 cfs_race_waitq +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x370609c8 cfs_hash_bd_peek_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x37175882 cfs_expr_list_print +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x377f93fb cfs_srand +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x38879b03 cfs_hash_debug_header +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3c1285bd libcfs_subsystem_debug +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3c621068 cfs_hash_rehash_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3d5e6098 cfs_race_state +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3d94747d cfs_hash_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3ea730c0 cfs_gettok +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3fb74638 cfs_hash_add_unique +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3ffb8726 cfs_hash_bd_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4062f92b libcfs_run_lbug_upcall +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x411db754 cfs_crypto_hash_final +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x44839bbb cfs_rand +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x47c28f55 cfs_hash_putref +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4a99af72 cfs_clear_sigpending +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4bb88d29 cfs_crypto_hash_update_page +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4d3b4eaf cfs_fail_err +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4f7f4a71 cfs_hash_del +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x51b61051 cfs_percpt_lock_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x52b9c7e9 lbug_with_loc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x53ea1980 cfs_cpt_of_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x58a7ee00 libcfs_catastrophe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5c013b81 cfs_expr_list_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5d73c3e3 cfs_expr_list_free_list +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5e2140ba cfs_cpt_bind +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5f40f909 cfs_hash_bd_add_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x60b9ea65 cfs_cpt_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x62289d65 cfs_array_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x62ef9011 cfs_cpt_table_print +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x62f5a00a cfs_cpt_unset_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x6383a458 cfs_hash_for_each_nolock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x63b198ca cfs_hash_size_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x67398404 cfs_wi_sched_destroy +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x70b4894a cfs_cpt_set_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x71e3804b cfs_crypto_hash_digest +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x71f662a3 libcfs_debug +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x768e2fbd cfs_percpt_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x7fda989d cfs_fail_loc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8151c3aa cfs_cap_raised +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x84ada9bd cfs_hash_lookup +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x84d53c78 cfs_cpt_current +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x865483a9 libcfs_kvzalloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8840f591 cfs_block_allsigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8b8f321d cfs_crypto_hash_speed +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x92fb5f1a cfs_cpt_table_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x93896a8b cfs_crypto_hash_init +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x940ed192 libcfs_stack +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9606ad59 cfs_cpt_weight +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9879b229 cfs_get_random_bytes +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x98f0e065 libcfs_deregister_ioctl +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9d5a2ed1 cfs_hash_del_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9e420643 cfs_restore_sigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9f82f712 cfs_trace_copyout_string +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa2186911 cfs_cpt_set_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa2b68b2a cfs_array_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa76536a3 cfs_hash_add +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa9088531 cfs_expr_list_values +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa966bd99 libcfs_kvzalloc_cpt +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa9dc74e2 cfs_trace_copyin_string +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xaa7b6b8d cfs_wi_sched_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xad019238 cfs_str2num_check +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb74f8304 cfs_hash_bd_lookup_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb8354b83 lprocfs_call_handler +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb8ae9e22 cfs_hash_cond_del +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xbde28c50 cfs_hash_getref +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc00349ae cfs_cpt_set_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc0ea7fc0 cfs_expr_list_parse +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc2911d96 cfs_expr_list_match +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc45e5cdf cfs_cpt_table +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc485f875 cfs_cpt_number +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc4d9855c cfs_cpt_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc9e7c15f cfs_percpt_lock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xcc8bae96 cfs_cpt_unset_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xcf61bacb __cfs_fail_check_set +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd358fa6d cfs_hash_hlist_for_each +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd96f406d cfs_cap_raise +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xdc59ad5e cfs_percpt_unlock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xdd8716fd cfs_hash_debug_str +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xdf2789c0 cfs_curproc_cap_pack +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xdfecb98d cfs_block_sigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe13e0ead cfs_percpt_lock_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe2f91ce3 libcfs_debug_msg +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe3bf6897 cfs_percpt_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe8d8fad8 cfs_hash_is_empty +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xea411f63 cfs_block_sigsinv +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xeceac781 cfs_fail_val +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xefa4ca84 cfs_hash_for_each_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf03bdf11 cfs_wi_schedule +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf2d19711 cfs_cpt_spread_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf3565b71 libcfs_debug_vmsg2 +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xfb946daa cfs_cpt_clear +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xfd719637 cfs_cpt_unset_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xffa66c11 cfs_hash_for_each +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1366b7ac LNetSetLazyPortal +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x19670622 LNetNIInit +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1a60d439 cfs_parse_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1ee5f15e lnet_ipif_query +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1fe16fd5 LNetGet +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x2aa9953d lnet_cpt_of_nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x2ac93e90 lnet_connect_console_error +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x30d775a5 lnet_copy_kiov2kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x33202a6c LNetGetId +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x339f7a0c the_lnet +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x3c779ee0 LNetPut +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x3d7ddef3 lnet_notify +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x3f4f5b46 LNetNIFini +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x473ad33b LNetDist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x48f163c6 libcfs_str2anynid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x49993ea3 lnet_extract_iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x4ec864fa lnet_parse +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x50345570 libcfs_str2net +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x562b6bc5 lnet_connect +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x569697db lnet_sock_getaddr +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x58a1ca89 LNetMDUnlink +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x59c57476 lnet_extract_kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x5fee352c lnet_acceptor_timeout +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x61f784b2 LNetClearLazyPortal +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x64cdea3a LNetCtl +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x66d449b1 lnet_ipif_enumerate +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x675fc0c9 lnet_unregister_lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x6d615a27 lnet_register_lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x722c76e5 LNetMDAttach +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x76601e03 lnet_net2ni +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7d59a7fe LNetMEInsert +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7e473c59 lnet_copy_kiov2iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7e93080c libcfs_nid2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7ef21bee cfs_nidrange_find_min_max +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x83d795e4 cfs_match_nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x8e18dc7c LNetDebugPeer +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x94bc5a24 lnet_set_reply_msg_len +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x97f5966b libcfs_lnd2modname +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x9de986d3 LNetEQAlloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x9e20a4fc lnet_copy_iov2kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xa56de08d lnet_ipif_free_enumeration +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaa414970 LNetMEUnlink +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaa9b477e LNetMDBind +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xad09981b lnet_kiov_nob +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xad642e57 lnet_sock_read +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xade657cc libcfs_next_nidstring +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaed3e209 libcfs_net2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaf445eb5 lnet_sock_setbuf +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb0a85cb8 libcfs_lnd2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb20da2b1 lnet_copy_iov2iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb75f7953 LNetEQFree +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xba5566d2 lnet_acceptor_port +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xbe41fd20 lnet_sock_getbuf +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xbf0760a2 LNetMEAttach +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xccc45639 cfs_free_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xcf4eb544 cfs_print_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xd3501222 lnet_sock_write +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xe82b8a0c lnet_finalize +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xeaeb6565 cfs_nidrange_is_contiguous +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xec1f56d5 libcfs_str2nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf1b316bf LNetSnprintHandle +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf5dc6337 lnet_iov_nob +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf8a8644b libcfs_id2str +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf94025d1 libcfs_str2lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfa106804 lnet_counters_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfd70ea37 lnet_create_reply_msg +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfe7ca17c libcfs_isknown_lnd +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x1c4bb5f9 LU_OBF_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x375e6f8d LUSTRE_BFL_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x676fbd6e seq_client_alloc_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x7583a4a7 seq_client_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x78998a5c client_fid_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xae61cff5 LU_DOT_LUSTRE_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xc997a02f LUSTRE_SEQ_SPACE_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xcdec6a53 client_fid_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xecee2727 LUSTRE_SEQ_ZERO_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x3a5710b5 fld_client_debugfs_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x6bcc4c73 fld_client_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x9381bd01 fld_client_lookup +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x9b9b9a44 fld_client_del_target +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xc75e8118 fld_client_add_target +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xccc18d18 fld_client_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xde5ce1d4 fld_client_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0x070a38d8 ll_stats_ops_tally +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0x2da18446 ll_direct_rw_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0x2dbbd75d ll_iocontrol_register +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0xcd3cde92 ll_iocontrol_unregister +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x16e02d31 lov_device_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x331ba3c2 lov_read_and_clear_async_rc +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x83040bd9 lov_lsm_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0xb6e5485c lov_lsm_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/mdc/mdc 0x6e33d532 it_open_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/mgc/mgc 0xdc287f95 mgc_fsname2resid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x012f773b lu_object_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0254ca5a llog_cat_close +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x028dd952 cl_object_find +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x034e1217 lustre_register_client_fill_super +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x035852d0 lustre_swab_llog_rec +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x03b37a9c lu_kmem_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x03db8085 class_config_parse_llog +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x041971e0 lu_context_key_quiesce_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x04c715b0 lu_context_key_degister +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x04f2ddeb cl_object_attr_unlock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x06d82d96 class_handle_unhash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x073594d9 cl_page_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x07865fe4 cl_page_assume +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x07aa68bb lustre_swab_lustre_cfg +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x07d45876 obdo_set_parent_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x083942ff class_del_profile +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x088dccc2 lprocfs_oh_tally +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x09343c21 lu_stack_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0ad72e42 cl_req_page_done +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0b67b86e cl_page_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0c378d79 lustre_swab_llog_hdr +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0c5488b7 cl_page_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0cafcefe class_disconnect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0deb0b8d cl_page_completion +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0e1e3484 cl_io_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x11495519 lprocfs_write_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x127dafee class_num2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x147de208 lu_device_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x164626b0 obdo_refresh_inode +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1781cba9 lprocfs_exp_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x19decda0 cl_page_prep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1af4fd4f cl_io_commit_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1b999e04 lu_object_find_slice +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1ba233c4 cl_page_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1dbbeb5c lu_device_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1ec55a60 cl_page_is_under_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x20551f83 cl_io_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x21c7074a lu_object_locate +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x221826f1 class_parse_nid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x22f620e3 cl_lock_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x24223d3d cl_io_lock_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2547efae lustre_uuid_to_peer +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x275cdc7a cl_env_reexit +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x276f3bb9 lprocfs_single_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x28195111 lu_context_key_register +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x286860f5 class_handle_free_cb +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x297cf5e0 class_handle2object +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2cceb7a3 class_handle_hash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2db9efb3 cl_io_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2e83869a lprocfs_rd_conn_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2f10cd0c cl_object_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2f71824d cl_io_submit_sync +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2fadbf9e lu_env_refill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2fd0e05a lu_object_header_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2fed1467 lu_object_unhash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3242ed35 obdo_cachep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x33cf34db class_export_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3450c289 libcfs_kkuc_group_rem +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x359959bc lustre_end_log +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3726f79e cl_lvb2attr +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x37ed6e4b at_early_margin +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x383f4107 cl_2queue_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3ce78c6d class_fail_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3e0a16f0 cl_index +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3e20ce9e cl_page_is_vmlocked +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3e83bf55 cl_lock_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3f0a3de0 llog_init_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3f241ff7 lu_device_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x40c2327c lu_device_type_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x410de741 cl_page_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x414b9925 class_put_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4316bc28 cl_req_page_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4357b315 lprocfs_counter_sub +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x43e34f89 cl_object_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x44542a91 lprocfs_at_hist_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x47b35f7d statfs_unpack +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x481f61d4 class_new_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x48b41148 cl_2queue_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4a0c528a lustre_process_log +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4a322caa cl_io_iter_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4a41ccc9 libcfs_kkuc_group_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4ac58713 obd_connect_flags2str +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4bea1eae cl_page_list_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4c190aad lprocfs_find_named_value +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4c23fe87 cl_lock_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4dd90820 cl_lock_descr_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4ed95dbe llog_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4feaec7e lu_object_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x50c7fc36 ptlrpc_put_connection_superhack +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5140c9be cl_io_submit_rw +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x520306c6 lu_site_init_finish +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5277bcf9 cl_io_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x535ca7be lu_context_exit +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5386d666 __llog_ctxt_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x552c0ad9 cl_env_cache_purge +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x558bec27 obd_ioctl_getdata +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x55cd0681 lu_site_purge +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5705c749 cl_vmpage_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x570d09ae lustre_swab_lu_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x57a1d42f cl_lock_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x589bb53f cl_page_header_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5b5eeba4 class_connect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5c88edd2 cl_site_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5cf07a9c class_import_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5dc80193 class_manual_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5fe97b73 block_debug_check +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x611f45b3 cl_2queue_init_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x61e98df7 libcfs_kkuc_group_foreach +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x64c8d5de cl_page_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x64fd6451 class_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x66a4a406 class_conn2export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6734adbd lprocfs_read_frac_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6890d175 lustre_get_jobid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x68bd49da lprocfs_oh_clear +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x69a052ce cl_site_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x69c42114 at_min +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6a7df6db cl_page_find +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6cc3985b cl_object_kill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6d1011fb cl_cache_incref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6fcb7042 lprocfs_counter_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6ffe3683 cl_page_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x700a36c7 lu_context_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x72096374 lu_object_add_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x72c9aaa4 cl_page_own_try +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x742559b1 class_unregister_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x74459f33 cl_io_is_going +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x751f4f77 cl_page_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x752168d8 obd_unstable_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x752f71a8 class_get_profile +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x756a77f3 class_parse_nid_quiet +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x768c11dc cl_page_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x77d2089a class_name2dev +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7802fcd7 lustre_swab_llogd_conn_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x789796a1 obd_zombie_barrier +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x78c39af8 llog_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x78da42c3 class_process_proc_param +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7a6479bd lu_env_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7a902d3a obdo_from_inode +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7b4fc57b at_max +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7bdfab30 class_name2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7bfd7e06 cl_req_attr_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7c291a6a lu_context_key_register_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7c5a36cd cl_page_unassume +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7edcafa0 cl_env_reenter +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7fa1c517 cl_page_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7fe5561a obd_dirty_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x806cc497 class_add_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x80fc0ab6 lu_object_header_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x81742d89 obd_ioctl_popdata +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x81eb3905 lprocfs_free_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x825c0a7b lustre_common_put_super +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x831f656c class_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8446b9a8 obdo_to_ioobj +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x84b1f0ae lu_device_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x85898443 lprocfs_clear_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x869255c7 cl_lock_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x88bc7b11 cl_page_own +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x897ba863 cl_lock_enqueue +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8ba6e479 lustre_swab_lu_seq_range +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8c2f6fc0 cl_object_attr_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8ed75024 cl_env_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8ee0dd52 cl_page_list_del +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8f67314c obd_dump_on_eviction +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x90dd36eb cl_page_is_owned +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x918b7c0e cl_req_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x92e58479 obd_dump_on_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9306ebf1 cl_page_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x933e31b0 cl_page_list_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x94d6f684 class_incref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x95735c6c at_extra +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x963e0401 class_new_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9701bb82 lu_context_key_revive_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9767adce class_uuid2dev +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x97d03783 at_history +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9a100209 lprocfs_wr_uint +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9a3d0e85 cl_req_prep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9b1ed9d8 obd_jobid_var +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9b54d374 cl_io_rw_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9c172d0c cl_env_percpu_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9c1c7461 cl_req_completion +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9d046ab6 cl_page_list_splice +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9db02f1a lprocfs_rd_uint +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9dfaf45a llog_process +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9e1da48c cl_page_list_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9f996650 class_devices_in_group +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9fcd75e6 lu_site_stats_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa160da4a lu_object_header_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa26083b6 cl_page_list_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa27fcd5e cl_lock_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa4f8d2bf cl_env_percpu_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa590d335 cl_offset +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa5c91583 lu_object_find_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa5fb234f lprocfs_write_frac_u64_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa652d5eb class_find_client_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa7905619 cl_2queue_discard +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa7e16614 lu_kmem_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa81db21d cl_page_clip +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa8f48960 lu_context_key_revive +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa997358a lu_context_key_degister_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xaaf4b1cc cl_sync_io_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xab4f4e45 cl_cache_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xac50bae0 libcfs_kkuc_msg_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xaff8c821 lu_context_enter +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb01963a6 class_uuid_unparse +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb05232df lu_cdebug_printer +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb08f6903 lu_context_refill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb21cca51 cl_page_discard +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb35519ed lustre_swab_cfg_marker +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb3af8ae5 cl_object_attr_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb3d68c97 cl_env_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb4f8ee63 lprocfs_read_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb5d26a7b lu_device_type_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb86f82fe class_export_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb8c62bd0 lprocfs_oh_tally_log2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xba985283 lustre_register_client_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbacac922 lprocfs_write_frac_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbb805cd3 lu_env_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbb8c4055 cl_io_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbc5f3783 obd_devs +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbcf70d42 cl_page_list_move_head +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbf3bb77e cl_conf_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbf65fc32 class_import_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc0bf7ef2 obd_debug_peer_on_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc11909c2 lu_site_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc17b1ab0 cl_sync_io_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc1da9464 cl_io_loop +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc2047979 cl_env_nested_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc3296fa1 cl_sync_io_note +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc404837c lprocfs_stats_alloc_one +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc41b38ad cl_req_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc4b80263 class_exp2cliimp +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc5a0a2f3 lu_context_key_quiesce +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc74e1170 lu_object_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc81c0b63 cl_page_list_move +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc854314f class_unlink_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc888cbf0 lprocfs_rd_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc950628a cl_lock_mode_name +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc9813617 cl_env_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc9c2c222 lprocfs_alloc_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc9ffd940 md_from_obdo +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcab53c28 cl_lock_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcad2ae6e lprocfs_rd_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcb0ab67f obd_max_dirty_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xce3ba70d class_register_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcefe10fc cl_sync_io_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcfb76479 cl_type_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd0101fc1 lprocfs_counter_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd0258383 cl_io_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd0e38d49 cl_io_iter_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd0ff125c llog_cat_process +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd2017930 lprocfs_oh_sum +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd3f81183 cl_page_make_ready +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd4bf4386 cl_page_delete +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd70fe669 lustre_swab_llogd_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd76221fd llog_close +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd7bc8654 obd_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd8952c95 class_destroy_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xda5b1ced class_find_param +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xda92ae97 cl_object_attr_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdaad72fe lprocfs_rd_timeouts +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdab30471 cl_env_nested_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdab83fdd cl_stack_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdbfeec84 llog_process_or_fork +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdc539b9a lu_site_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdcc40af0 class_check_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdd082173 cl_object_header_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdd188b21 lustre_register_kill_super_cb +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xde7d985b obd_dirty_transit_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe0ccdd84 lu_context_key_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe1579bfb lprocfs_stats_collect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe324acae cl_env_implant +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe3f4eabd lu_object_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe3fd8f01 cl_io_sub_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe41ddada cl_cache_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe5abf7eb lu_context_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe6254713 lu_site_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe6580be1 cl_io_read_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe685ec1e cl_io_start +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe9f242f4 class_config_llog_handler +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xea0044f7 lu_object_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xeafec56d libcfs_kkuc_group_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xec6747b0 cl_io_lock_alloc_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xec7d6b85 obd_timeout_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xec889f88 llog_open +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xedeaec32 cl_site_stats_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xedf3300b class_exp2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xee171876 cl_env_unplant +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xeeda497f lprocfs_rd_connect_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xef3b64fa cl_object_prune +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xef76f858 block_debug_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf0e3bb13 cl_2queue_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf490d5f9 class_del_profiles +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf69388d3 cl_lock_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf6a81424 lprocfs_seq_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf7e3bde2 cl_object_glimpse +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf9623e76 lprocfs_rd_server_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfbea0098 lu_types_stop +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfc2908d5 cl_object_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfd68d17a class_notify_sptlrpc_conf +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfdbe1557 lprocfs_write_u64_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfe0d2769 llog_thread_key +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfeddc921 cl_io_unlock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfffc1f11 lustre_swab_ost_id +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00cb99c1 RQF_LDLM_INTENT_GETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00d95039 ptlrpcd_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x03d56b88 ldlm_namespace_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x04825c87 ptlrpc_fail_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x048b59d5 lustre_msg_set_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0515f93b RQF_FLD_QUERY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x06af69ff ptlrpc_add_rqs_to_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x06b3942b lustre_swab_lov_user_md_objects +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x06b46872 sptlrpc_import_flush_my_ctx +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x071fc74a RQF_LDLM_ENQUEUE_LVB +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x08bb2d27 lustre_swab_obd_ioobj +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x095587d0 lustre_msg_buflen +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0a3130b0 RMF_MDT_EPOCH +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0ac252b2 lustre_msg_set_jobid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0af0a957 ptlrpc_queue_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0b174c28 ptlrpc_set_destroy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0bcacb5d RMF_MDS_HSM_USER_ITEM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0c52c12a ptlrpc_send_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0cf343dd RQF_LDLM_INTENT_BASIC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0d18312a client_disconnect_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0e444248 ptlrpc_mark_interrupted +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0f4f8955 req_capsule_has_field +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0fc5a27a ptlrpc_at_set_req_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x10a1a86d ldlm_error2errno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x115017f6 req_layout_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x11ba484a ptlrpc_prep_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x11f7042f ldlm_lock_allow_match_locked +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x12b6f5a3 ptlrpc_connection_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x14041640 ldlm_lock_change_resource +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x14708afc lustre_swab_mdt_rec_reint +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x14d192db lustre_msg_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x152f066f sptlrpc_flavor_has_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x15a3e4db RMF_GETINFO_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x172fb86d lustre_msg_hdr_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1747d8b3 ldlm_lockname +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x17720de1 lock_res_and_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x17950f60 RQF_SEC_CTX +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x181ce3fe ldlm_lock_set_data +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1875be89 __ldlm_handle2lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19108a0f RQF_OST_DISCONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19c08934 RQF_LDLM_INTENT_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19f72bb9 ldlm_completion_ast +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1a6a3ce9 RQF_OST_GET_INFO_LAST_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1a9b76aa RMF_OBD_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1abd3258 RMF_SETINFO_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ace4b5f RQF_LDLM_BL_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ad6c330 RMF_EAVALS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1b22b9b4 ptlrpcd_alloc_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1be21715 lustre_msg_size_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1c300d8e lustre_msg_get_slv +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1c69d2c1 ptlrpc_request_free +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1dc2051d RMF_SEQ_OPC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1de9c288 lustre_swab_layout_intent +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1eb2a65f RQF_OST_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ee46b51 lustre_init_msg_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ee9eb3c RQF_MDS_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2096f5b5 RQF_OST_SET_GRANT_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x219391ec RMF_EAVALS_LENS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x22b92a16 ptlrpc_unregister_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x233790b5 RMF_OST_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x24aafdba RMF_MGS_TARGET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2585a629 RMF_SEQ_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2587513c RQF_LDLM_CP_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2682544a req_capsule_set_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x269554ce RQF_LDLM_INTENT_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x26f99d16 RQF_MGS_CONFIG_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x27c19e12 __ptlrpc_free_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x285e5b99 lustre_msg_set_conn_cnt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x29e0869a sptlrpc_get_hash_name +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2a63a472 lustre_swab_ptlrpc_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2ab85550 ldlm_lock2desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2c00c60d ptlrpc_sample_next_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2cec385f ldlm_lock_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d56f168 ptlrpc_pinger_ir_up +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d798316 RMF_MGS_CONFIG_RES +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e3aea34 ptlrpc_pinger_sending_on_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e4562fe RQF_LLOG_ORIGIN_HANDLE_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e4ca396 RQF_LDLM_INTENT_UNLINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e4d8b41 ptlrpc_request_committed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2f0e4f87 RQF_OST_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2f793215 lustre_swab_ost_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2fab3539 lustre_swab_ost_lvb_v1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2fd2f737 lustre_msg_set_limit +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x301d4fcd RQF_MDS_READPAGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x302937e0 RQF_MDS_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x32215d55 ptlrpc_check_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3261b862 RQF_OST_SYNC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x32d5f71e ldlm_resource_dump +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x32f5dd74 ldlm_namespace_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x343cd69e ptlrpc_prep_fcset +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x35939a3d lustre_swab_fiemap +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x36b5f72a ldlm_cli_cancel_unused_resource +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x383300e9 lustre_pack_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3835ab4b RQF_LLOG_ORIGIN_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3858fb94 RMF_OBD_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x38c01799 RQF_LDLM_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x38fce533 lustre_msg_set_versions +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x391e7a8f req_capsule_client_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x39f60a5f RMF_OST_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3a1e4bcb __lustre_unpack_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ab90f6e lustre_msg_bufcount +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ac00716 lustre_swab_hsm_user_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3b6b7cba dump_ioo +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3bedb0c7 RMF_LLOGD_CONN_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3bf87f0d do_set_info_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c63e62b RQF_MDS_REINT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c8b16ab lustre_swab_ost_lvb +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ca50f33 RQF_MDS_HSM_CT_REGISTER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3d61ea38 ldlm_resource_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3d7dc5f9 ldlm_pools_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3dc47695 lustre_msg_get_magic +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ddafef1 _debug_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f034caf lustre_msg_get_status +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f35a11d RQF_FLD_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f752e78 RQF_MDS_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x409d0a81 ptlrpc_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x40cfe8d0 lprocfs_wr_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x41008cef RQF_LDLM_CANCEL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4314b3f9 ptlrpc_send_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43168488 RQF_MDS_RELEASE_CLOSE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4351e916 lustre_swab_hsm_user_item +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x435be682 ldlm_namespace_dump +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43705ee4 RQF_LOG_CANCEL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43d7efc8 lustre_msg_set_transno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x44036eda RQF_MDS_GET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x440c2a71 RMF_FIEMAP_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4481591d RQF_OST_SET_INFO_LAST_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x44a00fb2 ptlrpc_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x44ee7db7 sptlrpc_conf_client_adapt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45d05893 lustre_swab_lustre_capa +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45e30cea lustre_swab_ldlm_intent +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45fef496 client_obd_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x46db9a00 ptlrpc_activate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x46f9dd03 ptlrpc_request_alloc_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x47f5e903 RMF_MDS_HSM_REQUEST +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x48fe1d6e req_capsule_extend +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4a5a2416 RMF_DLM_REQ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4bf995ef ldlm_lock_match +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4c153f07 ldlm_resource_unlink_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4c58362f ldlm_prep_enqueue_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4dcbdf1d ptlrpc_buf_need_swab +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e1706e5 lustre_msg_buf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e696b96 ptlrpcd_queue_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4eb03a6f ptlrpcd_destroy_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4f766c3b lustre_swab_generic_32s +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x50443f6a ptlrpc_init_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x50dd74f8 RMF_STRING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x513d4eab sptlrpc_gc_del_sec +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x514b3851 lustre_swab_ldlm_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x51e311e9 lustre_swab_ldlm_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x52bf9a8d ldlm_completion_ast_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x52c62150 RMF_RCS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x53411557 RMF_DLM_REP +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x53a4a004 bulk_sec_desc_unpack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x552fdb9d ptlrpc_init_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x555eb7fe RQF_MDS_HSM_STATE_SET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x570622a9 ldlm_cli_enqueue +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x58908351 req_capsule_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5954b3d3 target_send_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x595ab175 lustre_swab_obd_quotactl +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x596582bf RMF_GETINFO_VALLEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5a59bc09 sptlrpc_cli_unwrap_bulk_read +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5b6ba895 lustre_packed_msg_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5c6a3a83 RQF_SEQ_QUERY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ca1b491 lustre_swab_close_data +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5caae213 ptlrpc_next_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ccf3b6b ptlrpc_request_set_replen +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5d922024 ldlm_cli_cancel_unused +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5db1f0ff req_capsule_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e0b19b1 RMF_CLUUID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e2b7558 lustre_msghdr_get_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e6f435d RQF_OST_BRW_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e80f899 RQF_LLOG_ORIGIN_HANDLE_READ_HEADER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ec3284d RQF_MDS_HSM_CT_UNREGISTER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ee29fd8 ptlrpc_request_alloc_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ef831ee lustre_msg_get_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5f261998 target_pack_pool_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5f96ccdd ptlrpc_connection_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5fc9a455 RMF_CLOSE_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6033c4f9 ldlm_cli_cancel_list +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6042bc15 RQF_MDS_REINT_RENAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x604e2505 RMF_SWAP_LAYOUTS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x60cd26ad RQF_MDS_REINT_CREATE_SYM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x61646e1b RQF_MDS_SWAP_LAYOUTS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x618ad203 RQF_OST_GET_INFO_LAST_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x62aaae3f RQF_MDS_HSM_REQUEST +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6315dd4c RMF_LLOGD_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6352a62d ldlm_get_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x653723dc RMF_LOGCOOKIES +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x685eeaba RMF_DLM_GL_DESC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x68f49e5e ptlrpc_expired_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6912990a RQF_OST_QUOTACHECK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x696ba811 lustre_msg_get_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x69c9f04d RQF_MDS_REINT_LINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x69fc89e1 ptlrpc_pinger_del_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6a3785c9 RMF_EADATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6ce42969 ldlm_lock_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6d72828c sptlrpc_conf_log_update_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6e81712c ldlm_cli_enqueue_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6ea99146 ptlrpc_register_service +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6ecec0b0 ptlrpc_reconnect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6efa82b0 RQF_MGS_TARGET_REG +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6efb32a2 ptlrpc_set_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6fb92092 sptlrpc_flavor2name_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x703538e4 lustre_swab_hsm_current_action +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x725a892c RQF_MDS_REINT_OPEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x726ff1a2 ldlm_lock_allow_match +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x728bb706 ldlm_pool_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x740b65ea req_capsule_server_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x744b76e6 sptlrpc_cli_wrap_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x745e60fb sptlrpc_target_export_check +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x74840056 lustre_msg_set_status +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x750fcff9 client_import_find_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x75a2c40d ldlm_put_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x75e4ca61 RQF_OST_GET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x76b9813f req_capsule_server_sized_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x77d86582 ptlrpc_replay_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x782b8993 ldlm_lock_fail_match_locked +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x78ad61a3 ldlm_resource_iterate +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x796f045b client_obd_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7a832f10 RMF_CONN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7bbf8001 RMF_MDT_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7bf348f4 ptlrpc_wake_delayed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7c4c6107 RQF_LDLM_CONVERT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7c61b917 ldlm_lock_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7ca9fffb sptlrpc_cli_ctx_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7d1ecd7f RQF_LDLM_INTENT_LAYOUT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7dfb3c18 lustre_msg_clear_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7eadea3e ptlrpc_disconnect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7f5a1cc7 lustre_msg_set_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x80ecb4e3 RMF_MDS_HSM_CURRENT_ACTION +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x817d7f1f lustre_msg_add_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x818388ca ldlm_lock_decref_and_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x826d3c4f RQF_LDLM_GL_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x837efb00 RMF_NAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85135801 RMF_DLM_LVB +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85a9e0d8 RMF_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85eecf67 sptlrpc_get_hash_alg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x863db6eb RMF_HSM_USER_STATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x876c2551 RMF_GETINFO_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x87bf7b3c sptlrpc_get_next_secid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x87c008d3 sptlrpc_import_sec_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8872f3d2 RMF_SETINFO_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x88fff52d RMF_CAPA2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x89e9f1a5 ptlrpc_unpack_rep_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x89f9edf7 RQF_MDS_REINT_SETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8a1ea476 lustre_swab_hsm_state_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8a257736 RQF_MDS_HSM_STATE_GET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8a5d5338 __ptlrpc_prep_bulk_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8ac440fa ptlrpc_uuid_to_connection +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8b854254 lustre_swab_mgs_config_res +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8cb71d4b RQF_MDS_REINT_CREATE_SLAVE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d1ab900 ldlm_lock_dump_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d77ea75 lustre_msg_set_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8da3fca7 lustre_msg_add_version +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8e3899e4 ptlrpc_lprocfs_register_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8e9abe4d RMF_GENERIC_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8f0aceac RQF_MDS_HSM_ACTION +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8fe476dc llog_initiator_connect +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8fec0451 lustre_msg_get_limit +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x906a6445 client_import_del_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x90a44c75 ptlrpc_set_add_new_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9113f109 ldlm_cli_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x919c4ce3 RMF_OBD_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x91cf58d3 RQF_MDS_PIN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9218bf74 ptlrpc_set_import_active +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9228392f lustre_swab_mdt_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9277ae5e RQF_MDS_REINT_CREATE_ACL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x935d3181 sptlrpc_gc_add_sec +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x937b1ee0 lustre_swab_mdt_ioepoch +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9553c633 RQF_LDLM_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9564a202 ldlm_lock_addref_try +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x95d08f0c lustre_swab_mgs_target_info +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x960af375 client_destroy_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x96430d20 ptlrpc_request_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9660ace0 RMF_FLD_MDFLD +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9671798d ldlm_namespace_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x967bfd52 RQF_OBD_PING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9775f12c ptlrpc_request_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9798f2f1 RQF_MDS_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x980fcfdc ptlrpc_connection_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9999cf7a dump_ost_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9a258886 RQF_MDS_GETSTATUS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9a48df38 unlock_res_and_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9a6f2f6d lustre_msg_set_opc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9b88f6ce RMF_NIOBUF_REMOTE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9bb5198b RQF_MDS_CLOSE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9bf7f472 lustre_free_reply_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9d7ea314 sptlrpc_pack_user_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9d8e79d1 sptlrpc_target_sec_part +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9df2c6d9 ptlrpcd_add_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9e52b047 ptlrpc_free_rq_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9f524f7f _ldlm_lock_debug +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9fb088f1 lustre_swab_lov_mds_md +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa15faeac ldlm_flock_completion_ast +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa163f4c3 dump_rniobuf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa2244636 RQF_MDS_GETATTR_NAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa2d38f41 sptlrpc_unregister_policy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa3b46fc7 ptlrpc_lprocfs_unregister_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa3d2a6ee RMF_CAPA1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa47787ef RMF_PTLRPC_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa4a2d089 RQF_OST_PUNCH +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa5465961 sptlrpc_cli_ctx_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa60a6491 sptlrpc_get_bulk_checksum +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa674dc66 ptlrpc_req_finished +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa6c436ca RQF_MDS_WRITEPAGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7a03774 ldlm_cli_cancel_list_local +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7d82610 ptl_send_rpc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7e360b1 RMF_OBD_IOOBJ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7ec567d RMF_CONNECT_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9704f80 lustre_msg_get_last_committed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9b52e6f ldlm_cancel_resource_local +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9c4658e lustre_swab_lov_user_md_v3 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9e40b00 ldlm_lock_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xabadd150 lustre_pack_reply_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xac51573b ptlrpc_resend +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xacd6a7d7 lustre_swab_ost_last_id +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xad047592 ptlrpc_schedule_difficult_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xae9de7f4 ptlrpc_add_timeout_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf25d4ed ptlrpc_init_rq_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf4e9658 RQF_MDS_SYNC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf50a0d6 RMF_HSM_STATE_SET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb0751fa4 RQF_LLOG_ORIGIN_HANDLE_DESTROY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb12c6c36 ldlm_lock2handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb1b43d8a dump_rcs +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb291473d lustre_msg_early_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb3f2ea3a ptlrpc_retain_replayable_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb4a7ecf3 lustre_msg_add_op_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb4d6228d sptlrpc_register_policy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb512ebc2 sptlrpc_parse_flavor +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb61cb95a RQF_MDS_GETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb68476df interval_erase +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb6aafd03 RQF_MDS_DONE_WRITING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb6e62507 ptlrpc_set_add_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb7207f7d ptlrpc_recover_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb725b5d3 ptlrpc_request_bufs_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb7b38189 RMF_MDT_MD +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb7fa3cc8 RMF_LLOG_LOG_HDR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb903634e RQF_OST_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb9334e74 ptlrpc_pinger_add_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb9b631cf lustre_swab_mgs_config_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbaa76097 lustre_msg_string +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbc1370dc lustre_shrink_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbd479785 ldlm_prep_elc_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbd83bc44 RQF_OBD_SET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbed4c5f0 llog_client_ops +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbef769cc RQF_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbf38bdf8 ptlrpc_invalidate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbf98b86f RQF_MDS_QUOTACHECK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbfb86e25 ldlm_replay_locks +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbfd56993 client_import_add_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbffd4313 RQF_OST_BRW_WRITE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc06c4670 lustre_msg_get_versions +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc0867da7 RMF_REC_REINT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc0cdf55e RMF_MGS_SEND_PARAM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc2b1af57 RQF_MGS_SET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc2be922a RMF_SYMTGT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc483792e lprocfs_wr_pinger_recov +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc559a634 RMF_LAYOUT_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc60a60e1 RQF_OST_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc694be4b RQF_LLOG_ORIGIN_HANDLE_PREV_BLOCK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc6976323 lprocfs_rd_pinger_recov +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc763fabc sptlrpc_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc79b9c67 ldlm_pools_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc7ca8257 RQF_MDS_REINT_SETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc7e47564 ptlrpc_interrupted_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc891cc7d sptlrpc_cli_enlarge_reqbuf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc8f586a9 ptlrpc_connection_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc96547d6 ldlm_revalidate_lock_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xca5a81ec ptlrpc_pinger_ir_down +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcb2cc0cf lustre_swab_lquota_lvb +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcd9addd1 ldlm_pool_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcdd70394 sptlrpc_import_flush_all_ctx +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xce86066d lustre_msg_set_slv +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcea04b10 req_capsule_get_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcec513c9 RQF_MDS_UNPIN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcf941145 ptlrpc_unregister_service +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcf9963db lustre_msg_get_op_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcf9aab6a RQF_MDS_DISCONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd072f91a ldlm_namespace_new +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd1ba470f ldlm_cli_update_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2983334 lustre_swab_swap_layouts +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2af48fc ptlrpc_buf_set_swabbed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2d64da2 ptlrpc_unpack_req_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2e0d4eb lustre_msg_get_opc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2e4cf22 sptlrpc_cli_unwrap_bulk_write +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd3926162 req_capsule_server_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd3dae408 ldlm_it2str +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd53f41a6 lustre_pack_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd69e0a27 RQF_MDS_IS_SUBDIR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd6a6fea3 ptlrpc_obd_ping +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd6c3ebfb RMF_FIEMAP_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd7910326 lustre_swab_obd_statfs +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd8b91b3e lustre_swab_lov_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd8f06300 RQF_MDS_HSM_PROGRESS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd9561861 RQF_LDLM_INTENT_OPEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb1fb0a2 RQF_MDS_REINT_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb74057f lustre_swab_hsm_progress_kernel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb9d5a6a lustre_swab_niobuf_remote +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd0ffb04 sptlrpc_flavor2name +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd30d7bf RMF_ACL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd749298 ptlrpc_start_threads +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd8dde7f client_connect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xddc40a85 lustre_msg_get_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xde0ca7a5 ptlrpc_lprocfs_brw +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xde12d36b RMF_MDS_HSM_ARCHIVE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xde7dcddc ptlrpc_prep_bulk_imp +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdee87192 sptlrpc_conf_log_update_begin +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdf701ae7 lustre_swab_fid2path +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe012f7e9 ldlm_extent_shift_kms +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe0cc694c RQF_LLOG_ORIGIN_HANDLE_NEXT_BLOCK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe0dfade0 ptlrpc_req_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe192ac31 ldlm_lock_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe24644d7 lprocfs_wr_ping +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe2dd0648 sptlrpc_sec_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe3738053 ptlrpc_set_next_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe40e0a50 lustre_msg_get_transno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe57bd972 sptlrpc_current_user_desc_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe643998e RQF_OST_SETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe6615154 ptlrpc_request_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe6f0dc96 RQF_OST_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe7062b5f RMF_U32 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe7512278 ptlrpcd_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe781045b ldlm_pool_del +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe89fefbd ldlm_resource_putref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe8bedc7c ptlrpc_resend_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe965676b ptlrpc_unregister_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xea9957ef req_capsule_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xebb64e68 req_layout_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xebd61e9a req_capsule_shrink +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xec939a00 RQF_MDS_REINT_UNLINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xed0846a9 ldlm_pool_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xed1c10d6 ptlrpc_connection_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xedc49af5 req_capsule_server_sized_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xedcb740d sptlrpc_name2flavor_base +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xee419752 ptlrpc_abort_inflight +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xeea8e57d req_capsule_client_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xef1aeca9 RMF_FLD_OPC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xef6aef5b sptlrpc_enc_pool_put_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xef83bd66 sptlrpc_lprocfs_cliobd_attach +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf1300275 _sptlrpc_enlarge_msg_inplace +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf1e1ca43 sec2target_str +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf1ed2147 ptlrpc_connect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf277c125 RQF_OST_GET_INFO_FIEMAP +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf31df8a3 ptlrpc_deactivate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf3d44370 RQF_OST_DESTROY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf43540b9 lustre_swab_mgs_nidtbl_entry +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf45085e1 sptlrpc_conf_log_stop +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf4df9b11 req_capsule_client_sized_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf55c033b RMF_MGS_CONFIG_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf596e9ae sptlrpc_conf_log_start +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf5a4f87f req_capsule_filled_sizes +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf5ad1509 ptlrpcd_wake +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf607fc23 sptlrpc_flavor2name_base +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf617ab8a lustre_msg_get_conn_cnt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf697b756 ldlm_dump_all_namespaces +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf7408f84 lustre_swab_hsm_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf7ba40c0 RMF_MDS_HSM_PROGRESS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf870fed9 RQF_LDLM_GL_DESC_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf9051bd6 RQF_QC_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf973aa93 lustre_swab_lov_user_md_v1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf97ad9ae lustre_pack_reply_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf9f72dfc RMF_TGTUUID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfa51688d interval_insert +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfb748208 req_capsule_server_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfc2fa83f ptlrpc_del_timeout_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfd148bf8 RMF_LDLM_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xffc807e8 sptlrpc_unpack_user_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xffe29c3f RQF_LDLM_ENQUEUE +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x65610739 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0xb08f862c most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x072a6fca rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0a7dfac0 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0ac85ea9 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d1b4d84 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x18dc8d87 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x19b235fd rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1fbd5813 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d18b2a9 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3a684c81 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3d63d273 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x40535269 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4a432254 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4ab50c62 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4e9c68b5 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x535f136e rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5b4d0972 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x61213bb0 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x69f77c21 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6fc6fd79 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7ee2c1e4 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x84e5c597 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x881f567a notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8e9a15b8 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x91676da4 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x99128686 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9a9e687b rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9cfabd87 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa1008c3b rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xab589692 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xab734336 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb138fe3f rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb6afd583 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbfb8f646 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc1524b86 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc222b298 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc37397f0 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc37e706a rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc7a1da58 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcaf30fbb rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcd92da2f rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd2bb363a rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd7f2c8eb free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdb360aea rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe05c06e2 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe0d326cf rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe119e4e9 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe1ad3470 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xecc3236f rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xed89c6cc rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfcce5f9a rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x03121906 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x09b7f534 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0b1a1044 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0bf346bd ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0c7c6b4e ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f7072f4 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x131b8b55 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x13b33b6d ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x148d9a21 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1878c7bb ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1a862863 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1ce3a21b DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1ec3cabb ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2073306c DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x21fb79d0 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x273acd96 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x31725c6f ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3247df7c ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3afe797b ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3b4b1fe1 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x418c10ec ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4578e025 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a77e3a9 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d16119d ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x579a9bb5 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5bf8f047 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x62cdad34 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x73c0fb05 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x770f5d86 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7b6d3674 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7e221b6e ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x881bc455 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8d277e11 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8ea71de3 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x94b0325b ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9966db56 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9a80ef80 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa0e087bc ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb6b264ed ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbf05ff42 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc1e31f81 IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc2e059dd ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb19655e ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcc080d70 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xceade8f1 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd34b3cb9 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd3760f9c ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd6ef7b72 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdf14646e ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdfd9bd7b ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe50d95b6 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf7022b26 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xff66e2cf ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/unisys/visorbus/visorbus 0x95c44f0f visorbus_get_device_by_id +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x035fa91c iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x118c7349 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x11f658c0 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1b63cde3 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1ceea50e iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x21cfc378 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x271bf080 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2bb5cf86 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2e7e5009 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3940acd0 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4c5b7f6f iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4e5b8a70 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5dd0367f iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x604a3573 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x64ce540c iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65eb6cef iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7070f1f6 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7d307d7a iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fac36ee iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8270ebc8 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8a738d5c iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9c6c287a iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa328e1fe iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa6336e54 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa806ade7 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xac39e93c iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xadaaa4ff iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaf556f23 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb0fb8faa iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb783a325 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbbda3bee iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbed2db9b iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc18f6ec7 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd00f84e1 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd18563c1 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd34b57f5 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd843b1c8 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd926cea2 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdaaffe82 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe3848228 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe4e73a3a iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf1026b56 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf8b49b19 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/target_core_mod 0x018203bb target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x028ce117 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0395a60d target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x05d55881 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x0bd4450e transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1c10500d core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x1c4e942f target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x1f375dcd transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x27773997 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x2d8c2919 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x2f78f17e transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x32b4c0db target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x37b93606 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x39bd9b0b target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4187e33b transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x444ce7e1 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x488b6c12 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x4ae144d1 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x50f14a40 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x53d13344 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x552101ba target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x588247a6 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x5f033e6f sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x5f2b53c2 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x61c58058 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x64377bf9 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x682b473e target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x7200e95c core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x748dd15d transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x77de7f18 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x7b6f1c67 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x85c9adec transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x85cb82af transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x86eef1d2 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x8d29b9b0 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x8e99281d sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x920a326f target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x92a9f3a1 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x93ab7816 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x94807db8 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x9b424a5b passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xa1130f30 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xa5d49a98 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0xa6b992f2 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xa791c715 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xaae2dbc4 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xae042b07 target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0xaf0bf622 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0xb0aca471 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xb833f207 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xb8a07664 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xbf2e1dce core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xbf325b59 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xc00a437e target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0xc1415b42 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xc22036cb transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xcd0e23b0 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd2cb95e7 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xda39cf19 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xdb2e82d0 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xdbba881f target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xdc21936a core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xe16cc2da spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xe7372048 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xec54332f target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xef484483 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf5194f4d target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xf5373475 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf7a37271 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x1887763e acpi_thermal_rel_misc_device_add +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x5007fc2c acpi_parse_art +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x86c998e6 acpi_thermal_rel_misc_device_remove +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0xdf707fab acpi_parse_trt +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xb51b8716 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xbd1b0616 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x01d7240f sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0f482b72 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x10d444d0 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3484c572 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x56ea0300 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x96b29fad usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x98d43fb3 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9e404c7a usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xac2b64ea usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb0568690 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc836d680 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf19af93e usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf78993cf usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x683410ed usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x7e85c020 usb_serial_resume +EXPORT_SYMBOL drivers/vhost/vhost 0xc1f77bd9 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0xc772ec03 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3c71c418 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x5fedea44 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/video/backlight/lcd 0x04806cf3 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x3b8168f2 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x86b9aae2 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xe43e91ca 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 0x3edfb29d svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4d2e8b75 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5fa6c562 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x99b1535a svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x9f160adf svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd45cb429 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xed1c8661 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x2e80d9bf sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x2c26cfa7 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x5b472f72 sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x410d00bf 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 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xfcdb7901 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x3684a8b4 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x74587092 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xc83fc862 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x13af3e1f matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x530085c2 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x911d4507 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xe39faa11 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x5fe72edb matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x873e0d93 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x0283288d matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x7f710bb7 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x91d10c28 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xedff07db matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x0962fcc9 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x4e5858ee matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x319380b8 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x9834aed2 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xa8698936 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xa9c28781 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xd8cae27c matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x04436cea mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x371d7c80 w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x5989748b w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x7f81a3b4 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xd25aa899 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xa39a7beb w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xe8d1b579 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x08fa7b07 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x66a34faf w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x1c2bc01f w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x3d04d462 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x77e20622 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xc0aef20b w1_add_master_device +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x5efa3140 iTCO_vendor_pre_keepalive +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa78bd894 iTCO_vendor_pre_set_heartbeat +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xb44b081d iTCO_vendor_pre_start +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xf5002331 iTCO_vendor_pre_stop +EXPORT_SYMBOL fs/configfs/configfs 0x09eee22c configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x0ba4f204 configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x3cf796af config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x3d65f274 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x4853b955 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x4a120b23 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0x50ab3b5f config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x71fbe5a0 configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xa057523f configfs_remove_default_groups +EXPORT_SYMBOL fs/configfs/configfs 0xa7516b97 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xafd3bac9 configfs_depend_item_unlocked +EXPORT_SYMBOL fs/configfs/configfs 0xbabddb53 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xc2869d8b config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0xc84a7e62 configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xd540feb7 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xfad7bc11 config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0xfae9ce48 configfs_unregister_group +EXPORT_SYMBOL fs/exofs/libore 0x14c5c860 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0x17a7a6de ore_create +EXPORT_SYMBOL fs/exofs/libore 0x1b7d6f44 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x43227ec5 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x72468eea ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0x989a261f ore_write +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xb30079cd ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0xc87cf979 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0xed1e4441 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0xfa1e5cdc ore_read +EXPORT_SYMBOL fs/fscache/fscache 0x0b2a4545 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x0ba60787 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x1334e5f7 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x19b4fb2d __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x1ab68db4 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x4407806f fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x45e4f319 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x47773769 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x4b73349c __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x4f423f20 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x547dd680 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x5f6e2049 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x68a39a6e fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x6aba9574 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6ee3552a __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x74e6f84c fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x76987d25 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x8233cab3 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x899a42ef fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x8f6dc165 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x8ffa55e9 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x950523a0 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x9bdf323e fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0xb0354702 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xb087b6d8 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xbd843291 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xc1061bb8 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0xc63bc4c4 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xd2eb7239 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xd40b4d2d fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xd52d6c97 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xd6197744 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xdac20b74 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xdbd4867c __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xdc9fbaa3 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xe3ddf40d fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xe6434951 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xe9a04ae0 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xef39a9a4 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xf6480c67 fscache_fsdef_index +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x38215fb7 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x4b9bd4e0 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x91526049 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xa8e5a1ed qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0xe1a624fc qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xe310adbb qtree_write_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-itu-t 0x6d356209 crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x56329ecc crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd09b2cba crc8 +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 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 0x970b0489 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 0xca906eb1 lc_seq_dump_details +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 0x0c222eb5 lz4_compress +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x682a23e0 lz4hc_compress +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul +EXPORT_SYMBOL net/6lowpan/6lowpan 0x15643047 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x2222d24b lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x583bb993 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xc644a78e lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xc82c0c8a lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xd7df45aa lowpan_unregister_netdev +EXPORT_SYMBOL net/802/p8022 0x4391e03b unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0x8c49deda register_8022_client +EXPORT_SYMBOL net/802/p8023 0x5641da0f destroy_8023_client +EXPORT_SYMBOL net/802/p8023 0xbbbfdcff make_8023_client +EXPORT_SYMBOL net/802/psnap 0x20b262c8 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0xf21e4912 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x045f29ad p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x0756a62b p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x0e172a4a p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x156c9de4 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x182728ac p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x1851ee53 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x1a3bbc48 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x1b56a593 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x299eb7a2 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x2f897c75 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x39104eb0 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x3aeaa2d6 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x47a637e3 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x53dbadd1 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x5d0fd9e9 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x5e034f29 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x60804bff p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x644cca31 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x66104cde p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x6bf55923 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x71133267 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x74e7dcb9 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x7be734e7 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x7f38d290 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x82b067d8 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x82de5df3 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x8362f312 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x8983ee92 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x8ae1889f p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8b8d9d97 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x90c81ae1 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x90f66a5c p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x99214759 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x9f6e1f42 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xab3cdfdd p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xba709ebb p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xcbfd2dc3 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xd3b606b3 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xe27629bc p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xea5b3f12 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xeaace441 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xf23ba9d5 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0xb00f4234 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xc4002b45 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xd12c411f atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xea5deac4 alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x0e1f0c77 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x13f83d2c atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x1e016d9c atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x40777b90 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x51dd8d4d vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x6d616a50 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x7083a407 atm_charge +EXPORT_SYMBOL net/atm/atm 0x8ddbfc86 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x9482b3c9 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x9d65dc12 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa342fe44 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xbac2a268 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xd3845f53 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xd9bdfb08 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x0532b509 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x1b5a0e64 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x4bbee670 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x5e51ccfa ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xa95757e7 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xb1b55426 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xbd44e2cf ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xddabb0ce ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xe9aaf0a4 ax25_display_timer +EXPORT_SYMBOL net/bluetooth/bluetooth 0x02642eff bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x07e87ef6 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0b971fcb l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0bb68780 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0e708eb6 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x11aa9045 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1581f1f7 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1a553633 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x36da2b3c bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x413662ea hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x462d33a2 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5bbed5d1 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5ffc259f hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x60f71917 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6248c4b8 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6aa54511 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6c19d6bd bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6f2f9ac0 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x70125337 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7ba8bd67 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x819f8d86 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8820b23f hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8ce89864 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8d6e9aeb bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8ee91210 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x99a832bb hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9be0c9db bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9cea9018 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb2ac8fda bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb7d32398 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xba25569b hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xba892db3 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbdb710a5 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc685cf89 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xce09850b bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd51d9ca6 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd63ec028 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd74947f7 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe3395e10 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xecb9084f hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xed3b2b6c bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf779defc hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf7afda11 hci_free_dev +EXPORT_SYMBOL net/bridge/bridge 0xe9362d32 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x1394b8ba ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x228d3ee4 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa08400ab ebt_do_table +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x2324dd04 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 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x5c748e6c cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x9901714f caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xe995033d caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0xf55b35e1 get_cfcnfg +EXPORT_SYMBOL net/can/can 0x481566b7 can_proto_register +EXPORT_SYMBOL net/can/can 0x4cc5a1ef can_rx_unregister +EXPORT_SYMBOL net/can/can 0x576cad0c can_send +EXPORT_SYMBOL net/can/can 0xad5424cc can_rx_register +EXPORT_SYMBOL net/can/can 0xc8426291 can_ioctl +EXPORT_SYMBOL net/can/can 0xdb603dc1 can_proto_unregister +EXPORT_SYMBOL net/ceph/libceph 0x018d9eed ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x063325e8 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x089b8358 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0b01405b ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x0c0c4c34 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x0e90b87b ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x0ee81253 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x12a96478 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x13157cd9 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x14476b82 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x14d6a400 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x16e080d3 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x17f8bf64 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x1c7adea7 ceph_file_layout_from_legacy +EXPORT_SYMBOL net/ceph/libceph 0x1cc4e1c2 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x20f2dc54 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2db717f3 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x2dd53d2d osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x310c1520 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x37b3448e ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x3ff46d44 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x419cb09b ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x41ec0fa2 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x48a48ff5 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x4e734c88 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x4fcddd48 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x572e507a ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x57f8ecc3 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x585a2c88 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x63238b7a ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6c2815fa ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x6ed985c4 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x71079920 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x7161909c ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x71ee773f ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x738f5742 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x802f43ea ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x849fb961 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x8534d7c8 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x858be67e ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x85d03a9e ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0x8630f4cc ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x87149c85 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x880dbd17 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x8921a137 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x8a2a5676 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x8ace4a13 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x903fc386 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x96dd105d ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x987955da ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0x98a3d3d5 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9adae3d1 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x9b864560 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x9c233224 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa3bdeff5 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0xa489ec4b ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xa503be46 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xa66bce6e ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xa74f427d ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xa917ed88 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xa99eb508 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xabd4034f ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xad722621 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb04db2ca ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0xb0892771 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb818c4cb osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xbb138730 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xbf15e03c ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0xc0aa8e96 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xc2826bbc ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0xc2f4e385 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc7596eca ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcc9f93a7 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xcd70125c ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xcd811425 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xcedd87b8 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0xd13641b2 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xd18f563f ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xd19cdd0e osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd72ab153 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xdc5bda71 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xdd1bba8f osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xdd8e7550 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xe39324ec ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xe63cd322 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xeb7a9825 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0xedf77ad3 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xee1ac17c ceph_file_layout_to_legacy +EXPORT_SYMBOL net/ceph/libceph 0xf13af00c ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xf242d4f4 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xf387074f ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xf3ed1bfe osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xf878da81 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xfdc9a73a osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xaf447fcf dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xb6f7b67d dccp_req_err +EXPORT_SYMBOL net/ieee802154/ieee802154 0x1803897a wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x316b13e9 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xac10a9be wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc3d9ff0f wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xce8fa880 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xdefad54e wpan_phy_new +EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x787fae6b __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xc9c1af36 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xeab50ff7 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xffde9cbf fou_build_header +EXPORT_SYMBOL net/ipv4/gre 0x8d636f58 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x001304f6 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x371b5cb2 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x8ec0e7f4 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xae49458c ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x08bef93f arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x58010327 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x8e6e0969 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x4b22dd4e ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x99e3a77a ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xdf6a6b88 ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x797d579a xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x7f1a1294 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xff4bf100 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/fou6 0x4f939111 fou6_build_header +EXPORT_SYMBOL net/ipv6/fou6 0x57417d49 gue6_build_header +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2905757c ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2caaa8b1 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4d5a96e6 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4e6576bc ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x64c59f10 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x665dbc88 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc420e65a ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd47ae7d7 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd9d8bf78 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x963dfdf4 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xa871bc51 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf2700fd8 ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x3f0d399d xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x5124a94e xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x0f767ce4 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xd2f90695 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x10b7b1e2 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x529f920a ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x7fb2180e ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa5716436 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb15af848 ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xc3cb2e01 ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xd6bc41d0 ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe45d2039 ircomm_control_request +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x0963c24b irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x09939c11 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x1fe7dc6a irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x2003da3b irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x23bbc2ce irias_find_object +EXPORT_SYMBOL net/irda/irda 0x26b9ba39 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x2b432980 hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x36dd1cc0 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x385847aa irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x43407ec4 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46b00fdf irias_insert_object +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x52b6d399 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x599be0d7 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0x639b7918 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x70a3f20f hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x81b86a11 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x83d74341 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0x84c10359 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x8763c9fa iriap_close +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x98a8b3b4 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0x9ccbdfca hashbin_insert +EXPORT_SYMBOL net/irda/irda 0xa9171178 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0xaae63235 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0xac3dc858 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xad91dd35 irlap_close +EXPORT_SYMBOL net/irda/irda 0xaeeff2b5 hashbin_find +EXPORT_SYMBOL net/irda/irda 0xb2f6e350 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0xb9279ba3 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe330e8a alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xbfb997fc iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0xca7c56e9 irlap_open +EXPORT_SYMBOL net/irda/irda 0xcfc6bb36 iriap_open +EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xdc0196c2 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe1ba6308 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xe329462a hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0xe4d48a7e irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0xe7b2a4e3 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0xeb78333e hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0xec242b93 hashbin_new +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xeefecea6 irttp_dup +EXPORT_SYMBOL net/irda/irda 0xf06c335a irlmp_close_lsap +EXPORT_SYMBOL net/kcm/kcm 0x58b5642f kcm_proc_register +EXPORT_SYMBOL net/kcm/kcm 0x632edc03 kcm_proc_unregister +EXPORT_SYMBOL net/l2tp/l2tp_core 0x09077696 l2tp_recv_common +EXPORT_SYMBOL net/lapb/lapb 0x0185f320 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x1c42bdcc lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x6c034058 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x76f5a78a lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x863e9d33 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x95fe3105 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xb3aad3c4 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xd8cb688c lapb_data_received +EXPORT_SYMBOL net/llc/llc 0x07622ab2 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x22053344 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x23fa6728 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0xbd0c760d llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xd43497ad llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xd7817766 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xe9a8c470 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/mac80211/mac80211 0x01c0a024 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x04a3d00b __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x04d0e9e0 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x053427a9 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x07b35955 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x1104d4f8 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x117b3b77 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x11b04e8b ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x1a1099f0 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x1c7b296d ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x200fff56 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x254067d9 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x256d303b ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x25ad1958 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x2aff556a ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x2b318ce0 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x2b3240dc __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x2c5fbc9a ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x33369b65 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x33c7bc84 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x37871300 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x3d7ba706 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x3df74a13 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x3fe62d6e ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x42838a42 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x474b8e1f ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x4996b9bd ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x4fc2b348 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x52552be9 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x55b5ef8a ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x56576aa0 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x57ba46a8 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x590324f1 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x5ccf0a0e ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0x5d547b5c __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x5f469693 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x60051ea6 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x630132a7 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x66799319 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x69d1b4f9 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x6daf304e ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x6ebe70c3 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x6f4c988d ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x709a04f9 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x72572d8e ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x785cb83f ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x7920a5c0 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x7a5f784e ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x7bc51493 ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x8011b3c2 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x80f946db ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x83215fed ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x83edd07b ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x86cb08e1 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x87be21c5 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x8881eb7c ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x890a3b21 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x8bd139a6 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x8df37d54 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x8ff9f056 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x9d58f6c3 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x9f6adb29 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xa2f13689 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xa6b11e03 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa85c9bf9 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xb04c59fe ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xb0ed9a6a ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xbc2065ec ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xc1084f72 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xc122bb50 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0xc1c9d2f9 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xc545714d ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xc68e100a ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xc6e50cc8 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xce2fbb0c ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xd1104065 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xd6710279 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xdc85e983 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe084f4bd ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xe6157767 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xe66e11eb ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xef227787 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xef35f08a ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0xf3f6a6e9 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac802154/mac802154 0x0f096cec ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x5abc13d3 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x67ff58e2 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x867ba9f9 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x9b493402 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xa180c98a ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xb058f586 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xb2bd6d82 ieee802154_stop_queue +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x01bcb6ec ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x10b61288 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x183d6307 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1c15aad4 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x21d8699a register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2750c487 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5ac76c9a unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5c1a46b6 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x67033a1a ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x81ebd82e ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9c879aa1 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb3e5d69f ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd027b7a3 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd7f609d5 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdc2aede9 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x4a4f3f18 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x5848c656 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x7761943a nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x564a405b __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x5f126061 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xa8e183ff nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0xab7cec43 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xaef9585b nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xc7f7b033 nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/x_tables 0x0be0664e xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x340fed82 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x3f143b67 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x46ccc6e3 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x51dca613 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x5b1d0653 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x75529053 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x96ab3323 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xd10cc65e xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xf9870081 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x03c146e7 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x07028325 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x07f1abbe nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x0b11f83d nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x116d8c6f nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x1719df93 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x1967f568 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x370f715c nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x3a674cab nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x4b71e7dd nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x6f090862 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x8361fdef nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x8d2cbd59 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xaada313e nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0xad1b1d46 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xbcdb9bc8 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xd01387b2 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xd95bb151 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xdebe5e57 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xf2c13a80 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xfc1509e7 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x059c078d nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x05e5262d nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x11f19513 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x147d66af nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x1c3eb590 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x1f058ca1 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x34937068 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x367e80ce nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x49ed5dc6 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x4cf44d67 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x52148209 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x57364da6 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x57ae19c5 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x5861f721 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x8c3de6de nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x8fb89853 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x9465387d nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x96fcd30b nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xa2821673 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xabc2aaf8 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xb67bd360 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc007b48e nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xcf872c61 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xd5e01aea nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xe43ccb9d nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xe7817b0c nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xeb7c0df3 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xee843a12 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xf4565cf2 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nfc 0x02eb241e nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x04a3c287 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x24329ad1 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x25a88053 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x2ba2724b nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x4789781e nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x4990ed6f nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x56c053f6 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x6e64907c nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x7ac76f09 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x7d9f79ba nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x847f6b20 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x8fbcb5e7 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x960e21f4 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x98479ab6 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xa3341ebe nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xc1008aa2 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xc3423b97 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xc64e9e16 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xe0f7b53e nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xe59ff363 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xe5f8ebb9 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xf14de805 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xfcb59482 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xfd2b21e3 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc_digital 0x1827c406 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x2ef1ee40 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x66e4c467 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xb97d94be nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x2c0722e4 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x4635f3a5 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x48aa66e9 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x6aef1837 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x775530da pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x8e2ebde7 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xa409f5b0 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xa8d91cd6 phonet_proto_unregister +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x167208b4 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x24e6edb8 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x680a2815 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x76a202c1 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x86a60764 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x892d5047 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x940fb25e rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa7816c9f rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb0958727 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc1f8ae34 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc3b13cfa rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc43203d0 rxrpc_kernel_data_consumed +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd5d1249c rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf3127bcc rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xff2cda59 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/sctp/sctp 0x005d3509 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x29ef3e0d gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xeb27e33b gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf89336cc gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x13965967 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x500a1cc8 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xf7e7aa48 xdr_restrict_buflen +EXPORT_SYMBOL net/wimax/wimax 0x54985385 wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0xa32b9a05 wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x00612584 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x0381820b cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0544e420 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x076ad1cb ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0c855b25 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x0d016eec cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x0db03728 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x1315764d cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x140abfce ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x16696ff8 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x1987b6cb cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1adc6d71 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x1b8f64b8 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x1c00f8ea ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x1d41820e __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x23448976 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x26b2ea4a cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x297a67f4 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x2af341a2 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x30293e60 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x31f51976 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x327ee76c cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x364685c2 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x3831539e cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x3d127173 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x3d49611a cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x4449ed91 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x446e0a3e cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x4761e721 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x52b560b8 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x536d4762 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x553c53f7 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x5cc9c34c cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x5db560a6 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x6190b4c3 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x621cc639 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x63bc35d8 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x66c2f838 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x694c456f cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6c040132 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x714ffb2a wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x71cf54e6 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x727f5397 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x75c957d8 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x7956c962 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x899379ef ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x8bc758db wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x8e6c9a77 cfg80211_connect_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x8fde474f cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x93b87cc2 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x947953c6 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x951a5775 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x9552b56e cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x9606feab ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x9ffe9c1f cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xa4b03786 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0xb06d4ff0 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xb6b26618 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xb812edc8 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xbbe3e245 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xbc4ea972 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xbe0c2d12 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xbe4026dc cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xc26a0de0 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc776097c __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xc9442f5d ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0xcda7772b cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xd5982edd cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xd60f7b36 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xd6d6356e cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xd8056570 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xd81cd52b ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xd83485c7 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xdb529d21 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdc3469b8 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/cfg80211 0xde19c7f5 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe015b4df wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xe47737ed cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe48eb3f2 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xe574373d cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xe6172def cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xe7536f2e cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xe8172af0 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xe8663ae6 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0xed2690be cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xf1c4cacb cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xfa11a603 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xfa72d231 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xfcda5e7b cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xfd83fd82 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xfdc83287 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xfde7bcb0 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/lib80211 0x1cda3258 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x2aff626a lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x61ed69f3 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x70e93aa3 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xa9a10ff0 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xd9b0a085 lib80211_get_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0x48b4ff0d ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x91803be8 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 0x30ed2630 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x5717625f snd_seq_kernel_client_enqueue_blocking +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 0x7c63a8fd snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x813315f9 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 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6d77a18d snd_seq_device_new +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 0xf0a1fdb3 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x205395a0 snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x614705ff snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7746bb9b snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x79794472 snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x991c0f60 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xef8fa3d2 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf3f0324e snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf6fdda44 snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xbcf16b9d snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x07b050ee snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x0dca41b3 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x0ebfe1f0 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x171888b6 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x184f74ab snd_power_wait +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 0x2016d03c snd_device_free +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x2f465eee snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x35149469 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x37753566 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x415819d4 snd_device_register +EXPORT_SYMBOL sound/core/snd 0x46ac025e snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4abb8b35 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x57bca90c snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x60f00ab1 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x65a1f0f1 snd_cards +EXPORT_SYMBOL sound/core/snd 0x66d8a1d8 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x6dd42cdf snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x6ff7d658 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x704c1f59 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x776ea1c4 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x7b14547c snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x7c35b1c0 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x7df2dc9e snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x81928344 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x889dedcb snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x8cda2a05 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x908baf99 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x944fe581 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x95aa0d88 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x98831678 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x99d340af snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x9b2807d0 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x9dc4afa1 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xa69be93a snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xa907978f snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xaf38b2b3 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xb0940f91 snd_card_new +EXPORT_SYMBOL sound/core/snd 0xb16ac487 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xb27a065d snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb57a3dbb snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xb85f6fff snd_component_add +EXPORT_SYMBOL sound/core/snd 0xc93e2af9 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xcac7ebaa snd_device_new +EXPORT_SYMBOL sound/core/snd 0xcce61ae8 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xcd5ca4eb snd_register_device +EXPORT_SYMBOL sound/core/snd 0xddcf91c8 release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xf0b073d9 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xf3a19f4a snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xf6e802dd snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-hwdep 0x30275929 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 0x06b310c9 snd_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x10a3295c snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x11aa10dd snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x1829c6b4 snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1ea78e82 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x22f00196 snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0x28a6d0c2 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x2f56f384 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x37a60627 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3f7ff7b7 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x41a4bf44 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x42250515 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x47558707 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x4943e4ea snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x4d43c3a0 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x4e063827 snd_pcm_lib_writev +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 0x522da632 snd_pcm_sgbuf_ops_page +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x56463e25 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x5792dca6 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x5898dcba snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5e55765d snd_pcm_notify +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 0x66ba7bc5 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x688abc33 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x6f75bcb3 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x7502d8d1 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x7b441ef1 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x81a332cd snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x81afbc89 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0xa52ce548 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa7004dc2 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0xab081cce snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xac0c742a snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xafea3627 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xb8a7c84e snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbb804409 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xc8e7ea59 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xca34c226 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xd5c63d6c snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0xd8e7bc00 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xd9f0b3ba snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xdaa50c7d _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xdd3c2c6d snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xe0f1ba1d snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe72ebf87 snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0xe8fd368e snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xeeb74ccb snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0xf2ae38e6 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xf2af47c7 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xf452f19f snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xfc817483 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xfcfbaee1 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x01f0ed2a __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x048d1e38 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x14ecd3e1 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x180e33ba snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1ba79631 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x22ca418d snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x50cf5217 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5286c6f0 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x648385ca snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6781c4ec __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6983935d snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8b8ffeaa snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x95bae953 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x97ecd238 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xaf41a823 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbe3d7e22 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc45d9397 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xeeeff2f5 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf844fd8e snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-timer 0x14b29e46 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x16a12018 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x40b7eb8a snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x584a7dc3 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x62e0beef snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x75fc3da7 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x838c05ed snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x87b70e51 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xaf6bc949 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xb2b5a877 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xb716b703 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xc6ff2296 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xd41477ad snd_timer_resolution +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x342ac0e4 snd_mpu401_uart_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/opl3/snd-opl3-lib 0x047b63c9 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x25b6dcdb snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4a57dd4b snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4c79e5e3 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6b6d77b1 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xaac2898e snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb79ec22f snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe0ca926b snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe63663da snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6d5632c6 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7363fa82 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8d48c86f snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x92460194 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9ed7b64a snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa836ff71 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xdb3667c8 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xde1f28ec snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf0580920 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0b83325e fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x22dfb5c5 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x258708ef amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2e16dfaf amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2f2bf5e7 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x38afb7e9 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4b9000a3 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4d34b2e1 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5339e948 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x643b335e cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6673fa3c amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6b615263 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x71cc7dce snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8774478a snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8b3aac20 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8c42be7c fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x93d9ec69 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9a7ac3b7 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9e542c76 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa580162b amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xae942f45 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb62d85b8 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb97544a9 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc7b0aec3 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcddce252 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd12db926 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd31a159f amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd7f2699b cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe2668c0c amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xec6ed3a7 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xef9b7b18 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf29a3041 snd_fw_schedule_registration +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf38f7e18 fcp_bus_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xae24913c snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xfb722eb8 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x13856c7f snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2c1a9283 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x486ec013 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5e7419de snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6d4b5991 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8713e651 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbe2300f6 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd90535b3 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x092ed1e7 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x1275b6ed snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x2799d9fe snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x4b2e270a snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x53034c62 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xb46004e7 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x46ccef9b snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x9815d55a snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xbd82ea28 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xddff344b snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x28d0a046 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x383d3626 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x4efb41ba snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x605a082b snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x614086a2 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x872500e3 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xa4536776 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xef10f4aa snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-i2c 0x0b81e9a6 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x10011e60 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x4e8b92a3 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x8233a365 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xa77e9eca snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xdb5bc8e2 snd_i2c_device_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x3d1d8851 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x3e3dc4da snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x44978438 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x59f8a924 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x6978bcb0 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8fb3970f snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x95194161 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xac82accf snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xde935014 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf17dc465 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2d54e61f snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x51e6ce99 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x58a4948b snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5cd63168 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5f79863a snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6bda1905 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6c1b2773 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x83afb395 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x99ba0ed0 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9d1e8d61 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xaeed5dbc snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb821617e snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcff686d3 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd9d8dd24 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe0351971 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xeb11642c snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xee483413 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x5d37cd78 hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x139290b9 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x355b777d snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3af4c8ff snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6408446a snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6f4d72e9 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x966ac31f snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xde16cfaf snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe2ebfd20 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf88db3f5 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x16ee9036 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x86e70f7a snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xd83eff2a snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0c82b2e5 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1b64148d oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x35a76f5e oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x500a62be oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5c5539b9 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6522885f oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x67e54acc oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6ab2dbee oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x772ac845 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7c5e2c28 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8db9def4 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x93e5d974 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb020c93c oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb48dc0da oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xceca3ac4 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd540caab oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe68e3182 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe9abbc70 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xec4bbac6 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf1b1699e oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfeccb813 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x7f586d68 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xb89df2ab snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc65552db snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xcb329dc8 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xf3c9b250 snd_trident_free_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x68186f3f tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x72b04a49 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-firmware 0xdc045797 sst_dma_free +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-firmware 0xf09d814c sst_dma_new +EXPORT_SYMBOL sound/soc/snd-soc-core 0x5e264b79 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x18185dfb register_sound_special +EXPORT_SYMBOL sound/soundcore 0x34b5d37d register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x4a15318c sound_class +EXPORT_SYMBOL sound/soundcore 0x556c4ebb register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xccd3b19c register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xe14f6681 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x0156efa9 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x16656038 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 0x7be45f69 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xadd305cd snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xbb9dd5b5 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xf2a217c2 snd_emux_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x1d345b1e snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x20d0dcea snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x49232a8b snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x5a3fee5d snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x76c2ef8b __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x87ab0bf9 __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xc3026666 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xdaeca60a snd_util_mem_avail +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 0x9894e8b0 __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 ubuntu/hio/hio 0x0d318d5d ssd_submit_pbio +EXPORT_SYMBOL ubuntu/hio/hio 0x1e015f9c ssd_bm_status +EXPORT_SYMBOL ubuntu/hio/hio 0x46a984bc ssd_reset +EXPORT_SYMBOL ubuntu/hio/hio 0x69dc945b ssd_unregister_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0x8979fc15 ssd_set_wmode +EXPORT_SYMBOL ubuntu/hio/hio 0xb32f533c ssd_get_version +EXPORT_SYMBOL ubuntu/hio/hio 0xb6745fbb ssd_register_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0xdb1da5e5 ssd_get_pciaddr +EXPORT_SYMBOL ubuntu/hio/hio 0xdfd1a48b ssd_get_temperature +EXPORT_SYMBOL ubuntu/hio/hio 0xe6be6849 ssd_set_otprotect +EXPORT_SYMBOL ubuntu/hio/hio 0xeae1198a ssd_get_label +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x00322056 VBoxGuest_RTMpCpuIdFromSetIndex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x01674ab7 VBoxGuest_RTSemMutexRequestNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0429a6f0 VBoxGuest_RTThreadCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x057fd386 VBoxGuest_RTR0MemObjLockKernelTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0731e88d VBoxGuest_RTAssertMsg2Add +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x079b132d VBoxGuest_RTMemTmpAllocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x08ed98db VBoxGuest_RTMemDupExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x09a88bc3 VBoxGuest_RTTimeExplode +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0a442050 VBoxGuest_RTAssertAreQuiet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b94344b VBoxGuest_g_pszRTAssertExpr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0beb235d VBoxGuest_RTMpIsCpuWorkPending +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0cd1b64d VBoxGuest_RTMpCurSetIndex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0d10d1ca VBoxGuest_RTTimeNormalize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0f3e114a VBoxGuest_RTSemSpinMutexCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0f884b3a VBoxGuest_RTStrToInt64Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x11ced39a VBoxGuest_RTSemEventWaitEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x11e95d2e VBoxGuest_RTLogLoggerEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x11f80121 VBoxGuest_RTSemMutexRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x12614b82 VBoxGuest_RTStrToInt8Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x12f430f3 VBoxGuest_RTAssertMsg2AddV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x147206e1 VBoxGuest_RTStrToUInt64 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x151752ec VBoxGuest_RTHeapSimpleGetFreeSize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1520b2c8 VBoxGuest_RTLogCreateEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x160b14d4 VBoxGuest_RTMpGetPresentSet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1926b25c VBoxGuest_RTLogRelLogger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x19790b4c VBoxGuest_RTLogFlags +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x197acd65 VBoxGuest_RTR0Init +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1a6d7d86 VBoxGuest_RTThreadPreemptIsEnabled +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1ae28abb VBoxGuest_RTThreadIsSelfAlive +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1c3b0f90 VBoxGuest_RTR0MemObjAddressR3 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1dc5ebbe VBoxGuest_RTThreadWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1f3e577b VBoxGuest_RTMemTmpAllocZTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1f70d065 VBoxGuest_RTErrConvertToErrno +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2003169b VBoxGuest_RTSpinlockAcquire +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x20728ae6 VBoxGuest_RTThreadCreateV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x20d9d625 VBoxGuest_RTTimeToString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x22058511 VBoxGuest_RTSemMutexRequestDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2254228b VBoxGuest_RTMpGetPresentCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2387f039 VBoxGuest_RTMpIsCpuPresent +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x25219f5e VBoxGuest_RTR0Term +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2580d04c VBoxGuest_RTSemEventMultiSignal +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2632a013 VBoxGuest_RTLogRelLoggerV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x29708cf0 VBoxGuest_RTR0MemUserCopyTo +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2a2284fb VBoxGuest_RTAssertMayPanic +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2af3453c VBoxGuest_RTLogPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2c2b5b46 VBoxGuest_RTTimerGetSystemGranularity +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2cfefa48 VBoxGuest_RTLogBackdoorPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2d445217 VBoxGuest_RTStrToInt64Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2d581c06 VBoxGuest_RTMpCurSetIndexAndId +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2eca7777 VBoxGuest_RTHeapSimpleAlloc +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2fb7502f VBoxGuest_RTThreadSetName +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x30e40c69 VBoxGuest_RTLogSetDefaultInstanceThread +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3168cadf VBoxGuest_RTTimeSystemMilliTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x31ac4c5f VBoxGuest_RTThreadIsInitialized +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x33d7313a VBoxGuest_RTMpCpuId +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x343e3e1b VBoxGuest_RTLogGetDestinations +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3480f453 VBoxGuest_RTSemMutexDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x358153bb VBoxGuest_RTStrCopy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x362275e8 VBoxGuest_RTMemContFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x372d5e29 VBoxGuest_RTPowerNotificationDeregister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x376d539c VBoxGuest_RTThreadGetType +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x381d7c24 VBoxGuest_RTMemAllocVarTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x383a0b9d VBoxGuest_RTMpPokeCpu +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3a47392e VBoxGuest_RTErrConvertFromErrno +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3b04381e VBoxGuest_RTSemEventMultiReset +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3b231c95 VBoxGuest_RTTimeNanoTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3bcf543a VBoxGuest_RTLogGetDefaultInstanceEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3d00f113 VBoxGuest_g_u32RTAssertLine +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3de43f66 VBoxGuest_RTSemEventCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3dfc9ab8 VBoxGuest_RTSemMutexIsOwned +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3fbf3c07 VBoxGuest_RTThreadIsInInterrupt +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x40996438 VBoxGuest_RTSemEventMultiWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x42ecc6d1 VBoxGuest_RTThreadPreemptRestore +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x43fdd8d9 VBoxGuest_RTSemFastMutexRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x44cfbc28 VBoxGuest_RTThreadGetNative +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x461fa9fe VBoxGuest_RTLogRelGetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x46c14223 VBoxGuest_RTLogSetCustomPrefixCallback +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x49f1be17 VBoxGuest_RTThreadFromNative +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x49f4d19c VBoxGuest_RTLogDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4ba5006e VBoxGuest_RTLogPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4bbec091 VBoxGuest_RTR0MemObjGetPagePhysAddr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4c7d8a56 VBoxGuest_RTSemEventMultiCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4cac3157 VBoxGuest_RTLogFormatV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4cecc93d VBoxGuest_RTR0MemObjEnterPhysTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4cf913a1 VBoxGuest_RTThreadGetName +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4ea67110 VBoxGuest_RTStrToInt32 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4f041d39 VBoxGuest_RTMemContAlloc +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4fc8e10c VBoxGuest_RTMpGetSet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4fe9e5f1 VBoxGuest_RTR0MemObjProtect +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5040043b VBoxGuest_RTSemEventWaitExDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x508bb2c4 VBoxGuest_RTLogSetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x51ec28bd VBoxGuest_RTLogGetFlags +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x53265abc VBoxGuest_RTLogSetBuffering +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5352c915 VBoxGuest_RTSemMutexRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54098f34 VBoxGuest_RTTimerStop +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54ddf87c VBoxGuest_RTThreadPreemptIsPossible +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5595fc22 VBoxGuest_RTSpinlockDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x56596e82 VBoxGuest_RTThreadSelfName +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x56c939fe VBoxGuest_RTAssertMsg1 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5847ae52 VBoxGuest_RTMpGetCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x58d1b65e VBoxGuest_RTThreadPreemptIsPending +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x598d3622 VBoxGuest_RTAssertMsg2AddWeak +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5a97195c VBoxGuest_RTHeapSimpleRelocate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5aa6ed66 VBoxGuest_RTPowerSignalEvent +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5b3a5164 VBoxGuest_RTLogWriteUser +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5cc0b1b2 VBoxGuest_RTProcSelf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5d3b1bd6 VBoxGuest_RTSemSpinMutexRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5e071eb3 VBoxGuest_RTSemEventMultiDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5e17b70e VBoxGuest_RTSpinlockRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5e75c570 VBoxGuest_RTStrToUInt16 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5eaea89a VBoxGuest_RTSemFastMutexCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ee65bb7 VBoxGuest_RTStrToUInt16Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ef42fe5 VBoxGuest_RTTimerStart +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5f2f48bb VBoxGuest_RTLogWriteStdErr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x61143878 VBoxGuestIDCCall +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6173b384 VBoxGuest_RTMpOnPairIsConcurrentExecSupported +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x61770e8c VBoxGuest_RTStrToUInt32 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63378722 VBoxGuest_RTLogBackdoorPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x634946f7 VBoxGuest_RTMpIsCpuOnline +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x637a1d69 VBoxGuest_RTLogWriteStdOut +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6381bb97 VBoxGuest_RTStrFormat +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63b1fde6 VBoxGuest_RTMpCpuIdToSetIndex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63bc10b0 VBoxGuest_RTLogCreateExV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x658cd915 VBoxGuest_RTR0MemObjFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x67135d2b VBoxGuest_RTSemFastMutexRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6862822a VBoxGuest_RTHeapSimpleSize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x695d63ad VBoxGuest_RTMpNotificationDeregister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6b01bbf3 VBoxGuest_RTMpOnSpecific +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6b58b79d VBoxGuest_RTSemSpinMutexDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6b91f1ce VBoxGuest_RTStrFormatTypeDeregister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6c8460ac VBoxGuest_RTLogRelGetDefaultInstanceEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6cec7c3b VBoxGuest_RTTimerCreateEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6d8e9c87 VBoxGuest_RTTimeNow +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6e8541b7 VBoxGuest_RTAssertMsg2Weak +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x704e1f6f VBoxGuest_RTAssertMsg2AddWeakV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x70867323 VBoxGuest_RTStrToUInt8Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x71060970 VBoxGuest_RTStrToUInt16Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x716e3be3 VBoxGuest_RTMpGetOnlineCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x729cc4ab VBoxGuest_RTR0MemObjSize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x72ff1bc3 VBoxGuest_RTTimeIsLeapYear +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x730a01b0 VBoxGuest_RTLogRelSetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x74812dde VBoxGuest_RTStrToInt32Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x759e7492 VBoxGuest_RTSemFastMutexDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x764ecb18 VBoxGuest_RTR0MemObjAllocLowTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76a3c47b VBoxGuest_RTMemAllocZVarTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x79d59e24 VBoxGuest_RTSemSpinMutexRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7d0d9dae VBoxGuest_RTR0MemObjAllocPhysNCTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7d15e878 VBoxGuest_RTMpGetOnlineSet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7dcc30d8 VBoxGuest_RTStrToInt32Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7e29739a VBoxGuest_RTStrToInt16 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7f0a40ea VBoxGuest_RTLogComPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7fc5bdcf VBoxGuest_RTR0MemObjAllocPhysTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8196c4e6 VBoxGuest_RTSemSpinMutexTryRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x82e081bc VBoxGuest_RTStrFormatTypeSetUser +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x83e78406 VBoxGuest_RTR0MemAreKrnlAndUsrDifferent +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x841e42e9 VBoxGuest_RTSemMutexCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8484a0d6 VBoxGuest_RTStrToInt16Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x84e227f6 VBoxGuest_RTThreadIsSelfKnown +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x86120100 VBoxGuest_RTLogDumpPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x867be0d2 VBoxGuest_RTLogDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x868b79a5 VBoxGuest_RTStrPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x879761cf VBoxGuest_RTR0MemObjAllocPhysExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x87da3860 VBoxGuest_RTAssertSetQuiet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8826d9de VBoxGuest_RTMpGetMaxCpuId +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x883d496c VBoxGuest_RTMpGetCoreCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x885274fe VBoxGuest_RTThreadUserWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x89117f68 VBoxGuest_RTMemExecAllocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8a3c154f VBoxGuest_RTR0MemObjLockUserTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8a454b31 VBoxGuest_RTSemEventGetResolution +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8e01e3fd VBoxGuest_RTStrFormatV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8f1309e3 VBoxGuest_RTAssertMsg2 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x90312938 VBoxGuest_RTStrToUInt64Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x91204a9b VBoxGuest_RTTimeSpecToString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x916e42f0 VBoxGuest_RTAssertMsg1Weak +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9264ffc0 VBoxGuest_RTLogRelPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x926bf9f7 VBoxGuest_RTThreadPreemptDisable +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x92e716ae VBoxGuest_RTLogGetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x94f7365f VBoxGuest_RTPowerNotificationRegister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x95fa480d VBoxGuest_RTSpinlockCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x961772f3 VBoxGuestIDCOpen +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x967ea4b6 VBoxGuest_RTStrToInt64 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x96893ce3 VBoxGuest_RTR0MemObjAllocPageTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x96f2e65b VBoxGuest_RTR0MemUserCopyFrom +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9796440b VBoxGuest_RTSemEventWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x97eb2414 VBoxGuest_RTThreadNativeSelf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9874cd16 VBoxGuest_RTMpIsCpuPossible +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9909ff3d VBoxGuest_g_pszRTAssertFunction +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9a2ee747 VBoxGuest_RTSemEventDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9bcc539d VBoxGuest_RTThreadUserReset +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9cd9213f VBoxGuest_RTR0MemKernelIsValidAddr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9d6b527c VBoxGuest_RTThreadWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9dbd63d6 VBoxGuest_RTStrPrintfEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9eaecd9d VBoxGuest_RTStrPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9f301085 VBoxGuest_RTTimeSpecFromString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9f4f616a VBoxGuest_RTLogLogger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9fb0596d VBoxGuest_RTMemDupTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa168a070 VBoxGuest_RTLogLoggerExV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa34eb1b3 VBoxGuest_RTTimeSystemNanoTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa486e710 VBoxGuestIDCClose +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa554bd97 VBoxGuest_RTLogFlushRC +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa5a26703 VBoxGuest_RTMpNotificationRegister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa696baed VBoxGuest_RTR0MemObjAddress +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa6a22472 VBoxGuest_RTThreadUserWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa6de1bcd VBoxGuest_RTTimerChangeInterval +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa86c5a96 VBoxGuest_RTSemEventSignal +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaba9bc9c VBoxGuest_RTLogCloneRC +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xac990d74 VBoxGuest_RTTimerCanDoHighResolution +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xacaac41d VBoxGuest_g_szRTAssertMsg1 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xad4fdf4e VBoxGuest_RTSemMutexRequestNoResumeDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xad649089 VBoxGuest_RTStrToUInt64Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xae3e0ecd VBoxGuest_RTLogRelPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaf6ffbfc VBoxGuest_RTThreadSleep +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb05840a7 VBoxGuest_RTSemEventMultiWaitExDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb1cc9148 VBoxGuest_RTLogWriteCom +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb42ea0e3 VBoxGuest_g_pszRTAssertFile +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb444f4a1 VBoxGuest_RTLogDestinations +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb6941b2e VBoxGuest_RTStrToUInt8 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb8c6e615 VBoxGuest_RTStrToUInt32Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb8ca8fcb VBoxGuest_RTMpOnPair +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb8df2b3a VBoxGuest_RTAssertShouldPanic +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9b070b7 VBoxGuest_RTAssertMsg2V +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9d7a27d VBoxGuest_RTHeapSimpleDump +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbaa97421 VBoxGuest_g_szRTAssertMsg2 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbb1ead73 VBoxGuest_RTR0MemKernelCopyTo +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbba928e6 VBoxGuest_RTHeapSimpleGetHeapSize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbc4d30f6 VBoxGuest_RTR0MemObjAllocContTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbc85935a VBoxGuest_RTR0MemKernelCopyFrom +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbe4e6114 VBoxGuest_RTLogFlushToLogger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbffedb55 VBoxGuest_RTMemAllocExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc1095c44 VBoxGuest_RTTimeImplode +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc1b3ada4 VBoxGuest_RTAssertMsg2WeakV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc3a1e5de VBoxGuest_RTLogGetGroupSettings +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc3fee96e VBoxGuest_RTMemAllocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc4bd5fd8 VBoxGuest_RTStrPrintfExV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc63cc2f0 VBoxGuest_RTR0MemExecDonate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc71362b7 VBoxGuest_RTLogRelSetBuffering +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc8fbf4aa VBoxGuest_RTHeapSimpleInit +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc91cea98 VBoxGuest_RTStrCopyEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc9a6a8e7 VBoxGuest_RTThreadCreateF +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcaee97bf VBoxGuest_RTLogComPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcb2a6b54 VBoxGuest_RTMemExecFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xceae9d6a VBoxGuest_RTStrConvertHexBytes +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd14e8ec2 VBoxGuest_RTTimerDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd1f3f0b9 VBoxGuest_RTSemEventWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd2a37e73 VBoxGuest_RTTimerReleaseSystemGranularity +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd2d290ab VBoxGuest_RTStrToUInt8Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd3a125cb VBoxGuest_RTR0MemObjMapKernelTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd46c35d4 VBoxGuest_RTMpOnAll +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd4b597fc VBoxGuest_RTStrCopyP +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd5bfc897 VBoxGuest_RTHeapSimpleAllocZ +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd637869e VBoxGuest_RTMemReallocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd69bc8e4 VBoxGuest_RTR0MemObjReserveUserTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd706d85c VBoxGuest_RTTimeFromString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd88c9330 VBoxGuest_RTLogLoggerV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd984a7f4 VBoxGuest_RTStrFormatTypeRegister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdc700594 VBoxGuest_RTSemEventMultiGetResolution +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xde9ca744 VBoxGuest_RTThreadYield +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdfbc69bb VBoxGuest_RTThreadPreemptIsPendingTrusty +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe054d759 VBoxGuest_RTMemTmpFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe095cef8 VBoxGuest_RTThreadSetType +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe0dc7391 VBoxGuest_RTThreadIsMain +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe1c6b3d7 VBoxGuest_RTR0MemObjMapKernelExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe2765c54 VBoxGuest_RTR0AssertPanicSystem +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe38d562c VBoxGuest_RTStrFormatNumber +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe3fd228f VBoxGuest_RTTimeMilliTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe7e42113 VBoxGuest_RTThreadSleepNoLog +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe88dae73 VBoxGuest_RTMemFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe8fad285 VBoxGuest_RTSemEventMultiWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xea2f2944 VBoxGuest_RTStrToInt8Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xea38e4f7 VBoxGuest_RTLogDefaultInstanceEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xea71842b VBoxGuest_RTMpGetPresentCoreCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xebeefa0e VBoxGuest_RTR0ProcHandleSelf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xec3cc9a6 VBoxGuest_RTSemEventMultiWaitEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xee774b8e VBoxGuest_RTLogWriteDebugger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xeea4ee73 VBoxGuest_RTR0MemObjMapUserTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xef6e1359 VBoxGuest_RTMpOnOthers +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf02f22ab VBoxGuest_RTMemAllocZTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf0dbb702 VBoxGuest_RTHeapSimpleFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf26294bb VBoxGuest_RTR0MemObjIsMapping +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf2aa79bb VBoxGuest_RTThreadUserSignal +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf3943009 VBoxGuest_RTTimerRequestSystemGranularity +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf5d89855 VBoxGuest_RTLogGroupSettings +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf69aec24 VBoxGuest_RTStrToInt16Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf7397dd2 VBoxGuest_RTAssertSetMayPanic +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf8113d66 VBoxGuest_RTMpOnAllIsConcurrentSafe +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf956a4e8 VBoxGuest_RTLogFlush +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf958d9cb VBoxGuest_RTLogCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfa7d95c9 VBoxGuest_RTR0MemUserIsValidAddr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfb31e12b VBoxGuest_RTStrToUInt32Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfba93ac9 VBoxGuest_RTR0MemObjReserveKernelTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfbc67e88 VBoxGuest_RTMemFreeEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfe72cef7 VBoxGuest_RTStrToInt8 +EXPORT_SYMBOL vmlinux 0x002683c0 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x003e07ae inet_listen +EXPORT_SYMBOL vmlinux 0x004c1c5b do_trace_write_msr +EXPORT_SYMBOL vmlinux 0x00636688 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x00649852 register_shrinker +EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done +EXPORT_SYMBOL vmlinux 0x00980e44 ht_create_irq +EXPORT_SYMBOL vmlinux 0x009f7868 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x00a69da1 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x00b8c3a7 mempool_alloc +EXPORT_SYMBOL vmlinux 0x00bc5f94 iov_iter_init +EXPORT_SYMBOL vmlinux 0x00c85050 prepare_binprm +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00dae7b6 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x0105b708 __module_get +EXPORT_SYMBOL vmlinux 0x010c74ee blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x0126c473 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x015c568a x86_hyper_xen +EXPORT_SYMBOL vmlinux 0x017bdfff blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x017bf2bf bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x018d28b5 param_set_short +EXPORT_SYMBOL vmlinux 0x01c03e3f gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x01c82d7e tty_write_room +EXPORT_SYMBOL vmlinux 0x01d56f11 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x01d5c1f5 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x01dadf26 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x01eceb89 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x01fb74e1 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x02100c39 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x0210240c __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x021f51a9 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x0224106a deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x0235e51c find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02eaabcc copy_to_iter +EXPORT_SYMBOL vmlinux 0x0305f22e fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0x032ceda8 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x03334547 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03466469 cdev_alloc +EXPORT_SYMBOL vmlinux 0x034e9755 get_phy_device +EXPORT_SYMBOL vmlinux 0x034e9b07 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x036247c7 datagram_poll +EXPORT_SYMBOL vmlinux 0x03642d7d netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x0373566e i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03ab317a blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x03b8a4c5 setattr_copy +EXPORT_SYMBOL vmlinux 0x03cc595b file_update_time +EXPORT_SYMBOL vmlinux 0x03d7ccd6 dev_get_flags +EXPORT_SYMBOL vmlinux 0x03e39161 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x03fb533a lease_get_mtime +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0406cae3 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x0414872f kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x0416835f bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x041998fd unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x04201017 fence_init +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0426ba24 idr_for_each +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044ba1bd complete_request_key +EXPORT_SYMBOL vmlinux 0x04741692 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x049801b3 noop_fsync +EXPORT_SYMBOL vmlinux 0x04a8d981 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x04ae136a bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x04b197f2 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x04b753eb mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset +EXPORT_SYMBOL vmlinux 0x04c695e0 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x04d1e48b pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04e909b5 skb_find_text +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x0504a11f blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x0511369a register_framebuffer +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0535dadc lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x053c8a2c nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x054922d9 nd_device_register +EXPORT_SYMBOL vmlinux 0x055326b3 phy_resume +EXPORT_SYMBOL vmlinux 0x055b816a ilookup +EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x0566c5fc tty_port_close +EXPORT_SYMBOL vmlinux 0x056f0345 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x057e4c5c dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x05817c67 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x05837e99 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x05a1cddc page_get_link +EXPORT_SYMBOL vmlinux 0x05a2bd33 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x05cea0d1 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x05e25804 __request_region +EXPORT_SYMBOL vmlinux 0x06052f8d __memmove +EXPORT_SYMBOL vmlinux 0x06061c29 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061f4039 acpi_get_table_with_size +EXPORT_SYMBOL vmlinux 0x0620996e devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0x0623743b proc_douintvec +EXPORT_SYMBOL vmlinux 0x062b6cc7 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x0633f075 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06346d3a simple_readpage +EXPORT_SYMBOL vmlinux 0x06349fdd request_firmware +EXPORT_SYMBOL vmlinux 0x0650d5af done_path_create +EXPORT_SYMBOL vmlinux 0x06780dd1 param_set_ulong +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x068c7263 ioremap_cache +EXPORT_SYMBOL vmlinux 0x069508a0 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x069e079c seq_open_private +EXPORT_SYMBOL vmlinux 0x06bbbe17 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x06c0dae5 __kernel_fpu_end +EXPORT_SYMBOL vmlinux 0x06ca50b6 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x06e9d33c jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x06f05409 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x06fd8dae tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x07351a4a textsearch_prepare +EXPORT_SYMBOL vmlinux 0x076edcf9 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x0778ac6d __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x0788d79b dev_change_xdp_fd +EXPORT_SYMBOL vmlinux 0x0789eee1 tcp_prot +EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07b70a4c lease_modify +EXPORT_SYMBOL vmlinux 0x07c866b1 inet_gro_complete +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07dde556 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x07f973bd ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x08018bc5 dev_get_stats +EXPORT_SYMBOL vmlinux 0x0803c716 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x080407ca locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x085877c0 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x085be174 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x0897287b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x08a4c98d to_nd_btt +EXPORT_SYMBOL vmlinux 0x08a5840c skb_checksum +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08f83126 dec_node_page_state +EXPORT_SYMBOL vmlinux 0x09303c06 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x09464c6f pnp_get_resource +EXPORT_SYMBOL vmlinux 0x096618cb fence_free +EXPORT_SYMBOL vmlinux 0x09696626 acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x0980ca43 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x098431ba acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x0992a022 md_write_start +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c6411f schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09d7d3aa nvm_bb_tbl_fold +EXPORT_SYMBOL vmlinux 0x09dff898 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x09e88526 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x09f3acce try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x0a07d4db fscrypt_get_ctx +EXPORT_SYMBOL vmlinux 0x0a236b9a netif_napi_del +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a4c7f1f key_reject_and_link +EXPORT_SYMBOL vmlinux 0x0a661faa lg_local_unlock +EXPORT_SYMBOL vmlinux 0x0a6c009b netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x0a6fde82 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a9b2c0a tty_port_destroy +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0aee7837 dump_page +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b6f4c54 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b83993c unregister_filesystem +EXPORT_SYMBOL vmlinux 0x0b905c66 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x0b9afad9 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x0ba0bcbf dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc0e1e1 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bd4725b bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x0c12f8dd skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x0c2265ef ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c46d724 neigh_for_each +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c69c353 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c75efb3 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x0c88609d param_set_charp +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cd0daae netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x0cdb7d12 __kernel_fpu_begin +EXPORT_SYMBOL vmlinux 0x0d0b7597 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x0d1c0db2 nd_device_notify +EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type +EXPORT_SYMBOL vmlinux 0x0d48889e da903x_query_status +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d56ec32 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x0d5f23b8 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d80efb5 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da38e69 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x0db8ad27 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x0dd599df __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x0dd59a7c inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x0de10eca tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x0e06c632 sock_create +EXPORT_SYMBOL vmlinux 0x0e104225 component_match_add_release +EXPORT_SYMBOL vmlinux 0x0e329c4d bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x0e401c11 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x0e41f4b3 dquot_disable +EXPORT_SYMBOL vmlinux 0x0e485be1 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e8062f7 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x0e9b11ab mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x0eb4ab1f block_read_full_page +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ed8cc7b acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x0edb254e tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x0ee30cc7 dev_add_offload +EXPORT_SYMBOL vmlinux 0x0ee52f2d nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f2bf0b6 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x0f2f5de2 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x0f35a0a7 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x0f3ca3da jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x0f3fdd38 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x0f4516c3 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f81f8b3 genlmsg_put +EXPORT_SYMBOL vmlinux 0x0f99400c mpage_writepages +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fc14805 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x0fc99777 invalidate_partition +EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x1026b576 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x1043f36e sock_kfree_s +EXPORT_SYMBOL vmlinux 0x105b5bdd start_tty +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x106dfcea skb_trim +EXPORT_SYMBOL vmlinux 0x10717f98 poll_freewait +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x1076729b tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x10816823 mmc_release_host +EXPORT_SYMBOL vmlinux 0x10880ff3 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x10b0ab1b sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x10bd3631 install_exec_creds +EXPORT_SYMBOL vmlinux 0x10caae50 input_release_device +EXPORT_SYMBOL vmlinux 0x10d21058 release_pages +EXPORT_SYMBOL vmlinux 0x10d2ff58 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x10e00a61 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x10e64ee7 brioctl_set +EXPORT_SYMBOL vmlinux 0x10eb594e sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x10f5b75c dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x110fa0b5 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x1112e3a1 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x115c56d0 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x11615a42 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1177b706 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x117c2931 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x1180ce42 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x1186fca9 netdev_notice +EXPORT_SYMBOL vmlinux 0x119205fc audit_log_task_info +EXPORT_SYMBOL vmlinux 0x11dc5d85 bio_add_page +EXPORT_SYMBOL vmlinux 0x11e8afa1 register_key_type +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x11ff22fe agp_put_bridge +EXPORT_SYMBOL vmlinux 0x120295a6 account_page_dirtied +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x1226bdb6 ex_handler_default +EXPORT_SYMBOL vmlinux 0x122cfaa2 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x122e6e41 cpu_tss +EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x123fe020 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x1250c7e1 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x125945b6 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x12997fa6 __napi_complete +EXPORT_SYMBOL vmlinux 0x129d96ca blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12d43fba generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit +EXPORT_SYMBOL vmlinux 0x12ec7a0a scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x12f103c2 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x12f33d5a arch_dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x1305d532 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x130a3be4 __check_sticky +EXPORT_SYMBOL vmlinux 0x1314dfa0 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x131f0be1 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x13265e2c xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x1329edf8 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x1365bb5c mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x136ae933 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x13865151 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x1390e230 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x13937568 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x13a9dfc2 d_delete +EXPORT_SYMBOL vmlinux 0x13ba084e phy_find_first +EXPORT_SYMBOL vmlinux 0x13c6bebf uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x13ccd851 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13fc06ed phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x1401fcb6 netdev_state_change +EXPORT_SYMBOL vmlinux 0x141209f2 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x141debb9 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x142e32f8 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x143ec49d acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x1440e437 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x1446865b fb_class +EXPORT_SYMBOL vmlinux 0x144f2441 set_create_files_as +EXPORT_SYMBOL vmlinux 0x14814d24 abx500_register_ops +EXPORT_SYMBOL vmlinux 0x1482ad2e eth_header_parse +EXPORT_SYMBOL vmlinux 0x14854254 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x148c225f inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x148d86f5 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x14a43b9c rtnl_create_link +EXPORT_SYMBOL vmlinux 0x14a5fb6f send_sig +EXPORT_SYMBOL vmlinux 0x14c803de param_get_bool +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14e55057 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x14f836e3 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x150ad92b ioport_resource +EXPORT_SYMBOL vmlinux 0x15314e59 d_alloc +EXPORT_SYMBOL vmlinux 0x1547bfd6 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x15498dbf dev_uc_add +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x156a8a59 down_trylock +EXPORT_SYMBOL vmlinux 0x15799c11 _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x158879e9 vme_slave_request +EXPORT_SYMBOL vmlinux 0x159ae9ea __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x15ab5632 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x15b4db44 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15c727f1 param_get_charp +EXPORT_SYMBOL vmlinux 0x15d2d082 inet_add_offload +EXPORT_SYMBOL vmlinux 0x15d5eb67 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x1603e3f4 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled +EXPORT_SYMBOL vmlinux 0x161650ac cdev_add +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x16522b53 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x1656b2dc compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x16596e45 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x166aca30 dev_set_group +EXPORT_SYMBOL vmlinux 0x166ad00b tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x16750751 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x16a69dd2 vga_get +EXPORT_SYMBOL vmlinux 0x16c41aec phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x16d4403c pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x16e15b46 nvm_get_blk +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e67a83 tcp_req_err +EXPORT_SYMBOL vmlinux 0x16ee9c5b lwtunnel_output +EXPORT_SYMBOL vmlinux 0x16f1c806 follow_down +EXPORT_SYMBOL vmlinux 0x16f453f9 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x170476cb seq_release +EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x170f0f29 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x171151f5 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x172cc38e phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x173b5cdc sock_edemux +EXPORT_SYMBOL vmlinux 0x17506383 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x176f4fcd inet_frags_init +EXPORT_SYMBOL vmlinux 0x1772a5b8 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x179651ac _raw_read_lock +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17b360fb ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x17b61554 seq_escape +EXPORT_SYMBOL vmlinux 0x17cc8c11 module_refcount +EXPORT_SYMBOL vmlinux 0x17e4fcd0 dput +EXPORT_SYMBOL vmlinux 0x17f21b4b agp_generic_enable +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x1806831a misc_deregister +EXPORT_SYMBOL vmlinux 0x181f46c3 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x182d9585 unload_nls +EXPORT_SYMBOL vmlinux 0x183a7ccb nvm_unregister_tgt_type +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x18527e6f scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x18606dd4 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x1868bb63 mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x18a51180 register_gifconf +EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe +EXPORT_SYMBOL vmlinux 0x18ba8f1a mmc_add_host +EXPORT_SYMBOL vmlinux 0x18bf9235 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x18ca6192 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x18cd5c84 dev_mc_del +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18e6a97f __serio_register_driver +EXPORT_SYMBOL vmlinux 0x18fe9514 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x19117d9f seq_hex_dump +EXPORT_SYMBOL vmlinux 0x1916e38c _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x193ebc3c page_readlink +EXPORT_SYMBOL vmlinux 0x19406c43 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x1940a0a1 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x196196a3 acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x196c498e __bforget +EXPORT_SYMBOL vmlinux 0x19755bc4 __frontswap_store +EXPORT_SYMBOL vmlinux 0x1992d486 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a25a31 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x19af7346 input_close_device +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c35a4f __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x19c85478 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x19cc384a swake_up_locked +EXPORT_SYMBOL vmlinux 0x19f6dc54 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x1a06e11b tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x1a3b2bba tcp_check_req +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a51c20f set_bh_page +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a675365 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x1a703ba1 crc_ccitt +EXPORT_SYMBOL vmlinux 0x1a8687a1 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x1aa2693a radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x1aaa0ef5 param_get_invbool +EXPORT_SYMBOL vmlinux 0x1aaffca4 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x1ab23aff inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x1ab5080b __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x1ab7a9ab kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ac5f0db acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x1afab522 mutex_unlock +EXPORT_SYMBOL vmlinux 0x1afb1aaa acpi_mark_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b142479 inet_release +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b1e3650 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x1b53523e phy_start +EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b746fd3 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x1b7a5bf2 nvm_get_bb_tbl +EXPORT_SYMBOL vmlinux 0x1b7a80d8 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x1b7a90c7 x86_hyper_vmware +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1bab90a9 blk_get_queue +EXPORT_SYMBOL vmlinux 0x1bb173b0 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x1bd94726 cdrom_release +EXPORT_SYMBOL vmlinux 0x1be1dd26 lg_global_lock +EXPORT_SYMBOL vmlinux 0x1be239fe blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x1c015dd9 clear_nlink +EXPORT_SYMBOL vmlinux 0x1c06bdd1 noop_llseek +EXPORT_SYMBOL vmlinux 0x1c168782 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x1c524984 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x1c6405b8 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x1c7a2914 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset +EXPORT_SYMBOL vmlinux 0x1c8c5812 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x1cace06f tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x1cbd7a08 __destroy_inode +EXPORT_SYMBOL vmlinux 0x1cbfd2eb __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x1cda249b kernel_write +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d09bb8f eth_header +EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be +EXPORT_SYMBOL vmlinux 0x1d4994eb dcache_dir_open +EXPORT_SYMBOL vmlinux 0x1d56f1df dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x1d671bed ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x1d7ad6ac gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x1d7f2b28 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x1d984b4d inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x1d9af456 fb_find_mode +EXPORT_SYMBOL vmlinux 0x1da67082 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd195c6 cdrom_open +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de38978 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x1de74f72 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0x1e036c98 acpi_set_gpe +EXPORT_SYMBOL vmlinux 0x1e03cc2b pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x1e0c2be4 ioremap_wc +EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query +EXPORT_SYMBOL vmlinux 0x1e127260 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x1e12b7e2 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x1e1fc076 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e4c9407 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x1e5b607c bio_split +EXPORT_SYMBOL vmlinux 0x1e622280 phy_device_free +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e90132d cdev_init +EXPORT_SYMBOL vmlinux 0x1e99f844 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x1ec772bd netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x1ed1726f seq_pad +EXPORT_SYMBOL vmlinux 0x1eda1ace kernel_param_lock +EXPORT_SYMBOL vmlinux 0x1ef7b8b5 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x1f06c227 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x1f2d800c ppp_unit_number +EXPORT_SYMBOL vmlinux 0x1f3c9015 dev_addr_init +EXPORT_SYMBOL vmlinux 0x1f45b668 pci_bus_type +EXPORT_SYMBOL vmlinux 0x1f5171d6 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x1f534a49 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x1f578bd9 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x1f64640f jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1f7b228d iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x1f80cc68 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x1f9056af devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0x1f9c41a0 tcp_filter +EXPORT_SYMBOL vmlinux 0x1faff266 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fdf6331 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1ff110ee blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x1ff50722 get_agp_version +EXPORT_SYMBOL vmlinux 0x1ff7d448 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x2005e68a acpi_remove_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x20092385 acpi_enter_sleep_state_s4bios +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x201629ca from_kgid +EXPORT_SYMBOL vmlinux 0x2017b2ea input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x2019406f pnp_device_attach +EXPORT_SYMBOL vmlinux 0x201b0ac0 lg_global_unlock +EXPORT_SYMBOL vmlinux 0x201d9f35 sock_update_memcg +EXPORT_SYMBOL vmlinux 0x202d0c8d finish_swait +EXPORT_SYMBOL vmlinux 0x20304e84 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x204284e1 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x2044aea7 amd_iommu_pc_get_max_banks +EXPORT_SYMBOL vmlinux 0x2049e424 seq_path +EXPORT_SYMBOL vmlinux 0x204b8c16 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table +EXPORT_SYMBOL vmlinux 0x20883994 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x208b21a8 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x2096ddc7 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x209e1677 dquot_acquire +EXPORT_SYMBOL vmlinux 0x209f0e50 genl_notify +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20a8429e netif_rx_ni +EXPORT_SYMBOL vmlinux 0x20c26325 dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20d76abb ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x20d84691 unlock_page +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20f2224e pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x213dfbbc mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x214dc8d2 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x21514586 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x2154c96e find_get_entry +EXPORT_SYMBOL vmlinux 0x216615e2 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x21666b86 param_get_long +EXPORT_SYMBOL vmlinux 0x216b5edc mntget +EXPORT_SYMBOL vmlinux 0x21aeafb1 is_nd_btt +EXPORT_SYMBOL vmlinux 0x21ba94b0 mdiobus_read +EXPORT_SYMBOL vmlinux 0x21be331a dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x21d82ff1 mount_subtree +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e992a5 ida_simple_get +EXPORT_SYMBOL vmlinux 0x21fa6fbc mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x2202dec9 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x22072c02 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x2207a57f prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x221c241e neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x224304e7 elv_rb_add +EXPORT_SYMBOL vmlinux 0x22517864 proc_set_user +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x2270cd45 current_task +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2298b12d sock_sendmsg +EXPORT_SYMBOL vmlinux 0x22a64cc7 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x22a7ab36 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b87f50 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x22c579d0 netlink_unicast +EXPORT_SYMBOL vmlinux 0x22cb3162 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x22de19c0 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x22ed5522 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x23145ab2 pskb_extract +EXPORT_SYMBOL vmlinux 0x23151cf3 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x231efe84 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x232874ae input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x232d18ec rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2338346d bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x233eb48f rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x237235e3 drop_nlink +EXPORT_SYMBOL vmlinux 0x23a40634 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x23f10b8d devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x23f5e70d udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x241e37b1 pci_restore_state +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x2432176f tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245a5724 acpi_device_hid +EXPORT_SYMBOL vmlinux 0x247249d7 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x24adbc46 set_device_ro +EXPORT_SYMBOL vmlinux 0x24bb20cf ___pskb_trim +EXPORT_SYMBOL vmlinux 0x24c131fa inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x24c25e4f memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0x24cc67ea vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x24cf372a pnp_possible_config +EXPORT_SYMBOL vmlinux 0x24e0b736 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x24f6d40b sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x24fcb5c4 pci_find_bus +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x251cb503 import_iovec +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x252d6493 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x253d1b9f ihold +EXPORT_SYMBOL vmlinux 0x254723ef vfs_whiteout +EXPORT_SYMBOL vmlinux 0x255d95a4 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x2568cfc9 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x256c62af redraw_screen +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25a6f9a2 nobh_writepage +EXPORT_SYMBOL vmlinux 0x25a8d34c pci_add_resource +EXPORT_SYMBOL vmlinux 0x25ac1ebf do_trace_rdpmc +EXPORT_SYMBOL vmlinux 0x25bdfc50 check_disk_change +EXPORT_SYMBOL vmlinux 0x25d4d1a2 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x25d72a60 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x25dfbab5 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25eb9e9a abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x2607d063 finish_open +EXPORT_SYMBOL vmlinux 0x261fa514 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x26278b7b mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263dcf24 backlight_device_register +EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update +EXPORT_SYMBOL vmlinux 0x266b49c1 seq_puts +EXPORT_SYMBOL vmlinux 0x267309dd vme_irq_request +EXPORT_SYMBOL vmlinux 0x267ff4d4 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x26948d96 copy_user_enhanced_fast_string +EXPORT_SYMBOL vmlinux 0x2699934c generic_block_bmap +EXPORT_SYMBOL vmlinux 0x26cb34a2 mempool_create +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x2709784e tso_start +EXPORT_SYMBOL vmlinux 0x27158a59 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x271693f6 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x272c2235 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x27329afb pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x27546f16 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x2759d02e sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x27661da0 mmc_put_card +EXPORT_SYMBOL vmlinux 0x27665302 sk_busy_loop +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x27882b9b ida_simple_remove +EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction +EXPORT_SYMBOL vmlinux 0x27b9c5da alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27d6d9b1 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x27db2374 tty_do_resize +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x2807e8a6 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x28120be8 vga_switcheroo_unlock_ddc +EXPORT_SYMBOL vmlinux 0x2814802f devm_gpio_request +EXPORT_SYMBOL vmlinux 0x28166464 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28318305 snprintf +EXPORT_SYMBOL vmlinux 0x283942d4 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x283bbebe jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x28680de3 param_set_byte +EXPORT_SYMBOL vmlinux 0x287ce4ad blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x287fcd4f skb_push +EXPORT_SYMBOL vmlinux 0x28949ef8 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x28972f66 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x289df003 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28a90f8c reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x28abfe6e scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x28af8851 bio_map_kern +EXPORT_SYMBOL vmlinux 0x28b5cacc sync_blockdev +EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x290bd860 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x292a4f05 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0x29310578 nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x2935f239 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x297e262f dev_change_flags +EXPORT_SYMBOL vmlinux 0x297e41a0 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x29b3c072 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x29b919a7 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x29cb5cc8 __invalidate_device +EXPORT_SYMBOL vmlinux 0x29d3a51d flow_cache_init +EXPORT_SYMBOL vmlinux 0x29d4c0ce xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x2a0c616e rwsem_wake +EXPORT_SYMBOL vmlinux 0x2a13ec7f __bread_gfp +EXPORT_SYMBOL vmlinux 0x2a1b8f76 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x2a1f9fae thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a3d2c29 blkdev_put +EXPORT_SYMBOL vmlinux 0x2a49e6e1 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x2a565a25 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x2aaceac0 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ae67a20 iunique +EXPORT_SYMBOL vmlinux 0x2af45cb7 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x2b05a21b intel_gtt_get +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b1ffa4e abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x2b204e6e single_open_size +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b4da9e4 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x2b665a1f deactivate_super +EXPORT_SYMBOL vmlinux 0x2b74a64b blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x2b82e618 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba4922b pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2baffd04 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x2bbc247a ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x2bc713cd skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x2bdfa458 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x2bf14fe2 skb_copy +EXPORT_SYMBOL vmlinux 0x2bfdecd7 security_path_mknod +EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x2c01ff90 d_tmpfile +EXPORT_SYMBOL vmlinux 0x2c12adc2 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x2c14fc17 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x2c1eaecb max8925_reg_read +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c27da14 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x2c39db00 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x2c4a6bc1 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x2c8a6116 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x2ca319a6 wrmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x2ca3458d pcie_get_mps +EXPORT_SYMBOL vmlinux 0x2caf848e would_dump +EXPORT_SYMBOL vmlinux 0x2cb3ac7c migrate_page +EXPORT_SYMBOL vmlinux 0x2cc0ef52 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x2ccbb229 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d144e21 rdmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x2d19e2c0 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3336bb param_array_ops +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d4448e7 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x2d5dc8d3 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0x2d74214a mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x2d852503 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x2d91a3fd seq_putc +EXPORT_SYMBOL vmlinux 0x2d944f05 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x2dbb2cdc tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception +EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2e063f29 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e1f8999 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2c87a7 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x2e629bae amd_northbridges +EXPORT_SYMBOL vmlinux 0x2e87ada0 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x2e9976cf xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x2ef2a021 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f140982 dev_open +EXPORT_SYMBOL vmlinux 0x2f175c84 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f471ad3 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x2f6dbc60 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x2f7d2c12 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x2f80cb82 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x2f98dcb2 fs_bio_set +EXPORT_SYMBOL vmlinux 0x2fa2e445 inet_put_port +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fdb564b bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2ff063b5 acpi_get_name +EXPORT_SYMBOL vmlinux 0x3000437b __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x30187301 revalidate_disk +EXPORT_SYMBOL vmlinux 0x301a9b0b mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x3026efd2 fb_deferred_io_mmap +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x303b62aa mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x304895bc proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x3058e97e fscrypt_fname_usr_to_disk +EXPORT_SYMBOL vmlinux 0x30723ef1 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x308a21a3 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30a8dea3 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x30b04526 ida_init +EXPORT_SYMBOL vmlinux 0x30c29d9e inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x30ce4d13 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x30d17cd9 sg_miter_start +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30f043c0 tcf_hash_check +EXPORT_SYMBOL vmlinux 0x30fdec0f skb_split +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x3108bbea phy_attach_direct +EXPORT_SYMBOL vmlinux 0x310f02ec memremap +EXPORT_SYMBOL vmlinux 0x311f8b06 dget_parent +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x31454d81 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x31596c48 blk_requeue_request +EXPORT_SYMBOL vmlinux 0x31599a3f vfs_getattr +EXPORT_SYMBOL vmlinux 0x31638e50 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x317822a2 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x31a54bc8 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x31d855bb gen_pool_free +EXPORT_SYMBOL vmlinux 0x31e76b57 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0x31ec44a0 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x31f07d79 jbd2_journal_inode_add_wait +EXPORT_SYMBOL vmlinux 0x31f9d01d sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x3202435a wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x3206eb3e wireless_send_event +EXPORT_SYMBOL vmlinux 0x3215ddd8 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x321bf988 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x321e0e40 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x322e6651 tty_register_device +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x32766cee tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x3296897c ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x329b9277 nvm_submit_ppa_list +EXPORT_SYMBOL vmlinux 0x329bba6d fb_show_logo +EXPORT_SYMBOL vmlinux 0x329daa8b seqno_fence_ops +EXPORT_SYMBOL vmlinux 0x32a6a5ff seq_file_path +EXPORT_SYMBOL vmlinux 0x32ad20b8 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x32be0c3d dcb_setapp +EXPORT_SYMBOL vmlinux 0x32c761f9 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x32c93fc0 set_pages_wb +EXPORT_SYMBOL vmlinux 0x32cdaa26 md_check_recovery +EXPORT_SYMBOL vmlinux 0x32dd58ee dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32eec6bd param_ops_int +EXPORT_SYMBOL vmlinux 0x330193db __dst_free +EXPORT_SYMBOL vmlinux 0x3301a9bd phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x335efa2d acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x3366438b dquot_operations +EXPORT_SYMBOL vmlinux 0x33849689 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x3395eda6 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x339e58c0 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x33a77cd4 inet_select_addr +EXPORT_SYMBOL vmlinux 0x33b124b8 elv_add_request +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x34085762 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x340be866 compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x3412bf4e dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0x341c01f3 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x342cc73c blk_execute_rq +EXPORT_SYMBOL vmlinux 0x3434aa99 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x34353c59 skb_make_writable +EXPORT_SYMBOL vmlinux 0x343c3828 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x3452a027 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x3461bd5c devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x347863c3 scsi_device_get +EXPORT_SYMBOL vmlinux 0x3484abfd km_report +EXPORT_SYMBOL vmlinux 0x34850853 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x349080de skb_append +EXPORT_SYMBOL vmlinux 0x3491da5a kdb_current_task +EXPORT_SYMBOL vmlinux 0x349213ef cpu_core_map +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x349f7734 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x34a181e8 key_validate +EXPORT_SYMBOL vmlinux 0x34a5bb8f blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x34a9f1ee vm_zone_stat +EXPORT_SYMBOL vmlinux 0x34ad5ab9 address_space_init_once +EXPORT_SYMBOL vmlinux 0x34b9cc06 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x34cb20ed devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x34d8120d arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0x34dc36b5 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x352adba3 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x35384a96 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x353da98d tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x353dddb6 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x353e21e3 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x35465aaf __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x3548e418 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x3549270d devm_gpiod_put +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x3585b60b sock_i_ino +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35ad541c kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x35d00023 dst_discard_out +EXPORT_SYMBOL vmlinux 0x35d9e4e2 PageMovable +EXPORT_SYMBOL vmlinux 0x35e75094 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x36241aa6 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x3629cd3c inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x3635be4f may_umount_tree +EXPORT_SYMBOL vmlinux 0x363a8bce __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x364fd67c blk_integrity_register +EXPORT_SYMBOL vmlinux 0x365dacc4 __init_rwsem +EXPORT_SYMBOL vmlinux 0x3677a30b padata_do_parallel +EXPORT_SYMBOL vmlinux 0x3678779c genphy_resume +EXPORT_SYMBOL vmlinux 0x3695edda request_resource +EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x3701a196 csum_partial_copy_to_user +EXPORT_SYMBOL vmlinux 0x370d83cb put_disk +EXPORT_SYMBOL vmlinux 0x371e9c2f pci_set_power_state +EXPORT_SYMBOL vmlinux 0x3725893a radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x375070ce nf_log_unregister +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x37613521 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x378afe79 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x379aa72e alloc_disk +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37affb8f blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x37b61452 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e3d518 inc_nlink +EXPORT_SYMBOL vmlinux 0x37f4e0cd nf_setsockopt +EXPORT_SYMBOL vmlinux 0x38099e13 wrmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x380aac05 netdev_err +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x382df951 fence_add_callback +EXPORT_SYMBOL vmlinux 0x382f48c1 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x3838ecec __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x3845eb3a blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x385e3eff agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x386fe97d nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x3874b097 consume_skb +EXPORT_SYMBOL vmlinux 0x38762100 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x38942af1 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x389b8e5a rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38adacd4 elevator_change +EXPORT_SYMBOL vmlinux 0x38af09e7 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x38b2dee1 bdev_read_only +EXPORT_SYMBOL vmlinux 0x38c22327 pci_release_region +EXPORT_SYMBOL vmlinux 0x38d89e55 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x38dfd0fb neigh_connected_output +EXPORT_SYMBOL vmlinux 0x38e04551 unregister_console +EXPORT_SYMBOL vmlinux 0x38e1f6cf d_obtain_alias +EXPORT_SYMBOL vmlinux 0x38e2f79a create_empty_buffers +EXPORT_SYMBOL vmlinux 0x38e80187 kobject_init +EXPORT_SYMBOL vmlinux 0x38f33bed dump_fpu +EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x39121f5d lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x3918343f generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x39228fff xfrm_init_state +EXPORT_SYMBOL vmlinux 0x3925ea95 user_revoke +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le +EXPORT_SYMBOL vmlinux 0x39405f37 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x39479a30 eth_header_cache +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x395e6006 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x3972b721 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x397da276 _dev_info +EXPORT_SYMBOL vmlinux 0x3998f50e __register_nls +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39a055f3 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39cdd6eb mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x39eda6de dev_mc_flush +EXPORT_SYMBOL vmlinux 0x39f19b0c dma_pool_create +EXPORT_SYMBOL vmlinux 0x39f1c2f4 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x39f215b6 tty_name +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a1715ea seq_dentry +EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush +EXPORT_SYMBOL vmlinux 0x3a4de076 cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x3a61d45e acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0x3a667837 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x3a680332 tty_hangup +EXPORT_SYMBOL vmlinux 0x3a796ffd netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x3a7c9abb mod_node_page_state +EXPORT_SYMBOL vmlinux 0x3a8548de __tracepoint_rdpmc +EXPORT_SYMBOL vmlinux 0x3a859369 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x3a942a8a lwtunnel_input +EXPORT_SYMBOL vmlinux 0x3a982257 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aa590f6 update_devfreq +EXPORT_SYMBOL vmlinux 0x3aa925d1 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x3aaff88e mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x3acd24cd pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x3acfdbb7 pci_get_class +EXPORT_SYMBOL vmlinux 0x3ae384b2 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x3ae60639 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x3ae65cbd pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x3b148454 dquot_release +EXPORT_SYMBOL vmlinux 0x3b290c5d netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x3b3c5cf9 set_pages_uc +EXPORT_SYMBOL vmlinux 0x3b475b41 ether_setup +EXPORT_SYMBOL vmlinux 0x3b5213df sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x3b59ad0b nf_log_trace +EXPORT_SYMBOL vmlinux 0x3b5ca118 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6ad17b devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x3b6bb83d mmc_of_parse +EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x3b953a70 allocate_resource +EXPORT_SYMBOL vmlinux 0x3b9b81b7 vga_tryget +EXPORT_SYMBOL vmlinux 0x3bb5114a prepare_to_wait +EXPORT_SYMBOL vmlinux 0x3bf71c62 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x3bfff76c proc_symlink +EXPORT_SYMBOL vmlinux 0x3c01e730 __vfs_write +EXPORT_SYMBOL vmlinux 0x3c051321 nf_reinject +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c1e66e8 proc_mkdir +EXPORT_SYMBOL vmlinux 0x3c21a94d follow_up +EXPORT_SYMBOL vmlinux 0x3c3195f7 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x3c378d60 param_set_long +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c51d923 kthread_stop +EXPORT_SYMBOL vmlinux 0x3c5821ad jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3cc8f66b tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x3cc9fde4 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ce8c42b agp_copy_info +EXPORT_SYMBOL vmlinux 0x3cebeea2 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x3d01b863 simple_link +EXPORT_SYMBOL vmlinux 0x3d0c2cc5 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x3d1391e2 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x3d15ab06 __next_node_in +EXPORT_SYMBOL vmlinux 0x3d196009 dentry_open +EXPORT_SYMBOL vmlinux 0x3d404573 input_flush_device +EXPORT_SYMBOL vmlinux 0x3d48fdce ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x3d5ec6de cpu_info +EXPORT_SYMBOL vmlinux 0x3d671c64 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x3d681c69 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x3d757d74 blk_end_request_all +EXPORT_SYMBOL vmlinux 0x3d7c1ed7 msrs_alloc +EXPORT_SYMBOL vmlinux 0x3d971ad0 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x3d996eae udp_prot +EXPORT_SYMBOL vmlinux 0x3d9bbced pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x3dc7140b inet_offloads +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3ddc1011 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x3dfc5dd8 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e018752 dquot_file_open +EXPORT_SYMBOL vmlinux 0x3e02bfe6 mmc_erase +EXPORT_SYMBOL vmlinux 0x3e11921b skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x3e1e5326 vfs_link +EXPORT_SYMBOL vmlinux 0x3e205b41 phy_stop +EXPORT_SYMBOL vmlinux 0x3e2286cd __radix_tree_insert +EXPORT_SYMBOL vmlinux 0x3e228c16 input_free_device +EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0x3e2f7a32 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x3e756f7c param_get_byte +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e926ab4 dquot_transfer +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3e9a8677 dqget +EXPORT_SYMBOL vmlinux 0x3ea88eda sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x3eb09c5e init_buffer +EXPORT_SYMBOL vmlinux 0x3eb2ed40 napi_get_frags +EXPORT_SYMBOL vmlinux 0x3ee21273 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f20ca97 rtc_lock +EXPORT_SYMBOL vmlinux 0x3f2f2ce0 param_set_int +EXPORT_SYMBOL vmlinux 0x3f37f538 devm_memremap_pages +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f52033d nonseekable_open +EXPORT_SYMBOL vmlinux 0x3f5c6471 del_timer_sync +EXPORT_SYMBOL vmlinux 0x3f7c54b1 qdisc_reset +EXPORT_SYMBOL vmlinux 0x3fbf1d8b dev_addr_add +EXPORT_SYMBOL vmlinux 0x3fbfe6cb keyring_alloc +EXPORT_SYMBOL vmlinux 0x3fc0ec76 free_netdev +EXPORT_SYMBOL vmlinux 0x3fcf1f22 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fe8c33e unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3fef3964 compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x3ff262f7 iget5_locked +EXPORT_SYMBOL vmlinux 0x40021bd5 mpage_writepage +EXPORT_SYMBOL vmlinux 0x400390fb acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x40322add bio_integrity_free +EXPORT_SYMBOL vmlinux 0x4044f88a nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0x40475a53 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x4058cd93 __d_drop +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x4069ca73 mutex_trylock +EXPORT_SYMBOL vmlinux 0x4082f05a set_blocksize +EXPORT_SYMBOL vmlinux 0x4088c77f nd_dax_probe +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x4097fa45 acpi_read_bit_register +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x409c7eef is_nd_dax +EXPORT_SYMBOL vmlinux 0x40a00868 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40c3f9b6 compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40c89d46 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40e6f92f proc_remove +EXPORT_SYMBOL vmlinux 0x40f75cfd agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x40fab5a0 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x40fad99e kernel_accept +EXPORT_SYMBOL vmlinux 0x40fd8a96 pci_bus_put +EXPORT_SYMBOL vmlinux 0x4118c961 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x411c6c55 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x411e93cd __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x41243f45 set_pages_array_wc +EXPORT_SYMBOL vmlinux 0x4127212a jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x4128f5de sk_stop_timer +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414c2388 tcf_hashinfo_destroy +EXPORT_SYMBOL vmlinux 0x4185a7fd padata_start +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x419590d1 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x41b3f0fc touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x41ebdc96 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x4201eb7e swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x420f1289 inet6_protos +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x4226d3d5 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x4234f096 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x42350e8d ucs2_strlen +EXPORT_SYMBOL vmlinux 0x4239351e tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x425d5f12 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x428fd550 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x42a140d7 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x42c8de35 ioremap_nocache +EXPORT_SYMBOL vmlinux 0x42cb01f7 serio_bus +EXPORT_SYMBOL vmlinux 0x42da6677 kernel_bind +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x433dc970 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x43531748 try_module_get +EXPORT_SYMBOL vmlinux 0x4364455b truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x436bee71 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x4395ae51 amd_iommu_complete_ppr +EXPORT_SYMBOL vmlinux 0x43b2b917 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x43b84a4c ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x43c3d0aa xattr_full_name +EXPORT_SYMBOL vmlinux 0x43cfe6cb lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x43da5cab csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x43e47fe4 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x441f36d9 generic_setlease +EXPORT_SYMBOL vmlinux 0x44504061 inet_addr_type +EXPORT_SYMBOL vmlinux 0x447198e2 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x447a2844 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x4489da02 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x448e085f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x44a81d5f acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0x44a8ae9b nla_reserve +EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44abb146 dst_destroy +EXPORT_SYMBOL vmlinux 0x44b5ee9a kasprintf +EXPORT_SYMBOL vmlinux 0x44b8d313 inode_permission +EXPORT_SYMBOL vmlinux 0x44c6c9a8 ipv4_specific +EXPORT_SYMBOL vmlinux 0x44d6427b netdev_update_features +EXPORT_SYMBOL vmlinux 0x44e77665 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44ed9a19 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x44ee2f13 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x44f3f17b irq_set_chip +EXPORT_SYMBOL vmlinux 0x44fae37e unregister_key_type +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x452de52a sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x454c0c60 fence_array_create +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x4579314e migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x4579de04 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x458eff9d mmc_start_req +EXPORT_SYMBOL vmlinux 0x45968382 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x4599a5ab dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x45b39be3 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x45d89b22 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x4604a43a mem_section +EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x461dd45a reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x46277aed jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count +EXPORT_SYMBOL vmlinux 0x462b8dcd get_super +EXPORT_SYMBOL vmlinux 0x464bcf69 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x464d63c0 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x4657ebaa fence_context_alloc +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46641bd2 vme_irq_free +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x46787ce2 __SetPageMovable +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x46c4208d mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46c4fb20 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x46f58204 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x46fc03e1 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x47275ef0 seq_read +EXPORT_SYMBOL vmlinux 0x47360bd7 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x4752cef8 proc_create_data +EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x47627b2b tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x476f30c9 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x477411cb fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x477e59a3 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x477e6dcb amd_iommu_pc_get_set_reg_val +EXPORT_SYMBOL vmlinux 0x47832615 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x478d10b2 ht_destroy_irq +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47ad025c d_drop +EXPORT_SYMBOL vmlinux 0x47dee9cc nf_getsockopt +EXPORT_SYMBOL vmlinux 0x48030791 kobject_set_name +EXPORT_SYMBOL vmlinux 0x48123723 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x48224da5 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x4855e720 fscrypt_process_policy +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x48670e61 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x48694442 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x4883663d simple_empty +EXPORT_SYMBOL vmlinux 0x48862663 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0x48868bb3 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48bb797d devm_release_resource +EXPORT_SYMBOL vmlinux 0x48c1278e vfs_setpos +EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier +EXPORT_SYMBOL vmlinux 0x49031655 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x492fc4e7 finish_no_open +EXPORT_SYMBOL vmlinux 0x49317a5f blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x49368832 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x49409d00 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x494f0235 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x494f1233 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x495dc4a2 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x496d97c1 devm_request_resource +EXPORT_SYMBOL vmlinux 0x4999a0e4 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49c95c1a sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x49cadcd6 locks_init_lock +EXPORT_SYMBOL vmlinux 0x49f5b31c jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a0970a4 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x4a0c8bfa tty_vhangup +EXPORT_SYMBOL vmlinux 0x4a1bd1be mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x4a203216 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x4a205f5a seq_release_private +EXPORT_SYMBOL vmlinux 0x4a214954 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x4a253c7f __kernel_write +EXPORT_SYMBOL vmlinux 0x4a2ea25b __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x4a38b698 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x4a4dd251 dm_io +EXPORT_SYMBOL vmlinux 0x4a5154aa dev_crit +EXPORT_SYMBOL vmlinux 0x4a6254e1 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x4a8dc5b9 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x4aad53fd scsi_register +EXPORT_SYMBOL vmlinux 0x4ab0d71c block_write_full_page +EXPORT_SYMBOL vmlinux 0x4abc1a46 fence_remove_callback +EXPORT_SYMBOL vmlinux 0x4ac555e1 ata_link_printk +EXPORT_SYMBOL vmlinux 0x4ac7d5e2 acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x4ad85616 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x4ae53bca bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b181df2 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x4b1a8b10 kset_register +EXPORT_SYMBOL vmlinux 0x4b2f61cd serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x4b438659 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x4b48a71a tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b667176 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x4b903a0a dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x4b90dfed md_cluster_mod +EXPORT_SYMBOL vmlinux 0x4b9dfb04 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x4ba04dd7 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bd0289a locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x4bfe1b2d blk_finish_request +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c07f0ae simple_get_link +EXPORT_SYMBOL vmlinux 0x4c252596 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x4c3ca6c1 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x4c53f58f elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x4c73d96f __inode_permission +EXPORT_SYMBOL vmlinux 0x4c7c82ef pci_get_subsys +EXPORT_SYMBOL vmlinux 0x4c8667e7 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x4c878322 iosf_mbi_modify +EXPORT_SYMBOL vmlinux 0x4c89f263 touch_buffer +EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base +EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf +EXPORT_SYMBOL vmlinux 0x4caf2c51 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x4cb8ecde msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x4cd0c40d md_write_end +EXPORT_SYMBOL vmlinux 0x4cd0fb12 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x4cda3037 mdiobus_write +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4cdcd3a8 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x4ce1bf31 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x4d05e294 lock_rename +EXPORT_SYMBOL vmlinux 0x4d0da733 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x4d111e6d fb_get_mode +EXPORT_SYMBOL vmlinux 0x4d1aeec1 vfs_fsync +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d2dec11 commit_creds +EXPORT_SYMBOL vmlinux 0x4d520524 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x4d522791 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x4d535d5f tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x4d593a38 unlock_buffer +EXPORT_SYMBOL vmlinux 0x4d67cfcb key_unlink +EXPORT_SYMBOL vmlinux 0x4d701f46 current_fs_time +EXPORT_SYMBOL vmlinux 0x4d7ec576 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x4d8375af page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x4d8f1140 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4db48ce3 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x4dbdda0b mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x4dda0b7b __skb_checksum +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4dea6fb6 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4e0a7c12 filemap_fault +EXPORT_SYMBOL vmlinux 0x4e2b609c pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x4e30f48b generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e6752ee iget_locked +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e9a43bb nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4ea5c2de copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x4eaa21ad nvm_mark_blk +EXPORT_SYMBOL vmlinux 0x4eb4665b __elv_add_request +EXPORT_SYMBOL vmlinux 0x4ec1c4a8 read_cache_pages +EXPORT_SYMBOL vmlinux 0x4efb6a64 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x4efde56a x86_dma_fallback_dev +EXPORT_SYMBOL vmlinux 0x4f0e17e6 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f2a712c pid_task +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f48f7a7 tty_register_driver +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f6b400b _copy_from_user +EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read +EXPORT_SYMBOL vmlinux 0x4f7a4827 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x4f89cb0a inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x4f8b5ddb _copy_to_user +EXPORT_SYMBOL vmlinux 0x4f8c81da kset_unregister +EXPORT_SYMBOL vmlinux 0x4f9ae281 kfree_skb +EXPORT_SYMBOL vmlinux 0x4fa2ceb0 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x4faf4a7f netpoll_print_options +EXPORT_SYMBOL vmlinux 0x4fb79442 unregister_nls +EXPORT_SYMBOL vmlinux 0x4fbae6a6 uuid_le_to_bin +EXPORT_SYMBOL vmlinux 0x4fbc5fa1 make_kuid +EXPORT_SYMBOL vmlinux 0x4fc0dcec tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x4fd682be inode_init_always +EXPORT_SYMBOL vmlinux 0x4fd80387 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fe474cf debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x4fea8e88 empty_aops +EXPORT_SYMBOL vmlinux 0x4ff6e614 sk_dst_check +EXPORT_SYMBOL vmlinux 0x4ff737b9 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x502afa98 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x50433a61 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x504aeb31 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x50529870 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x505bb983 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x5067f766 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x50843d4c blk_recount_segments +EXPORT_SYMBOL vmlinux 0x5097f30c sock_create_lite +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x509cb64e iov_iter_zero +EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x50c045ea param_ops_charp +EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del +EXPORT_SYMBOL vmlinux 0x50e666ef fscrypt_free_filename +EXPORT_SYMBOL vmlinux 0x50ea0b9a nf_register_hook +EXPORT_SYMBOL vmlinux 0x50eb457a pnp_device_detach +EXPORT_SYMBOL vmlinux 0x50f0a941 __register_chrdev +EXPORT_SYMBOL vmlinux 0x510409f0 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x5106e1c6 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x5129dc90 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x516024b4 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x516854fd pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x51719973 dq_data_lock +EXPORT_SYMBOL vmlinux 0x51752d10 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x51765933 icmp_send +EXPORT_SYMBOL vmlinux 0x517a28fa generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x51802ceb iterate_dir +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51ea794d locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x51f244a2 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data +EXPORT_SYMBOL vmlinux 0x520dffef phy_device_create +EXPORT_SYMBOL vmlinux 0x52130046 acpi_check_address_range +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x52462c94 agp_bind_memory +EXPORT_SYMBOL vmlinux 0x524646d5 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x524df9e8 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0x52676f62 tso_build_data +EXPORT_SYMBOL vmlinux 0x5294cf57 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52a5f179 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x53081e77 km_query +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x532add0d param_set_bint +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x5343167e iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53aa46ae __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x53bbdcf1 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x53cc82bf noop_qdisc +EXPORT_SYMBOL vmlinux 0x53d19793 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x53d8f2df register_md_personality +EXPORT_SYMBOL vmlinux 0x53fad6fb fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x53ffaad2 to_nd_dax +EXPORT_SYMBOL vmlinux 0x540289ce param_get_ulong +EXPORT_SYMBOL vmlinux 0x54059a2a amd_iommu_pc_get_max_counters +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x540d5148 do_SAK +EXPORT_SYMBOL vmlinux 0x540dd7f2 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x540e404c freeze_super +EXPORT_SYMBOL vmlinux 0x5417df6b skb_vlan_push +EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54428968 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register +EXPORT_SYMBOL vmlinux 0x5464d3f6 acpi_remove_sci_handler +EXPORT_SYMBOL vmlinux 0x54767f4f __lock_buffer +EXPORT_SYMBOL vmlinux 0x54814685 phy_suspend +EXPORT_SYMBOL vmlinux 0x54873f26 __nla_reserve +EXPORT_SYMBOL vmlinux 0x54919a44 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x54a02ced buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54b8fe3c mapping_tagged +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54c6379a kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0x54d8402a bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54ff5134 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x551bac52 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x552c790d phy_init_eee +EXPORT_SYMBOL vmlinux 0x552f28de bdget +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x555f6938 lockref_get +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x5586c8f6 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x558c25f2 d_add +EXPORT_SYMBOL vmlinux 0x55b23b9f get_unmapped_area +EXPORT_SYMBOL vmlinux 0x55c4085e dev_get_iflink +EXPORT_SYMBOL vmlinux 0x55c70a18 __f_setown +EXPORT_SYMBOL vmlinux 0x55cbc876 search_binary_handler +EXPORT_SYMBOL vmlinux 0x55ccb09a pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55d6efa1 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x55e60a36 queued_spin_unlock_wait +EXPORT_SYMBOL vmlinux 0x55ed4cba netdev_all_lower_get_next +EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node +EXPORT_SYMBOL vmlinux 0x55fc575d agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x55ffa91a xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x5639552b mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x5639f8a5 i2c_master_send +EXPORT_SYMBOL vmlinux 0x5641419b wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x566a3b11 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x566c087a netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x566cd854 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x56707f70 acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x567b9e1d blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x567c6d38 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x56948bca tty_port_init +EXPORT_SYMBOL vmlinux 0x569da7c6 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x56a53e90 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x56a8983c input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56ef1a2c nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x56fb5969 pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x5704299b __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x5714c499 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x5720dbbb mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x57329366 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x5745b407 pci_iomap +EXPORT_SYMBOL vmlinux 0x57462533 phy_attached_info +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x574c672f __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x5771f2e5 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x5773ad08 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x57784bf5 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5780912b ip6_xmit +EXPORT_SYMBOL vmlinux 0x5780ddee dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x5792946b pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57966e4a security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x57e502a2 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x57f44fdf __brelse +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5826c1d5 make_kprojid +EXPORT_SYMBOL vmlinux 0x582d1510 lock_fb_info +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x5843bed4 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x5843e234 pci_get_device +EXPORT_SYMBOL vmlinux 0x584738f9 rdmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem +EXPORT_SYMBOL vmlinux 0x586103be acpi_setup_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x58841d6f i2c_master_recv +EXPORT_SYMBOL vmlinux 0x58a8c7b6 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x58b22794 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58da5354 read_cache_page +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58e94a35 pci_pme_active +EXPORT_SYMBOL vmlinux 0x58fb37af blk_put_queue +EXPORT_SYMBOL vmlinux 0x59054ae5 __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x59268551 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x592ae3ee phy_drivers_register +EXPORT_SYMBOL vmlinux 0x592b2119 vfs_rename +EXPORT_SYMBOL vmlinux 0x592d8f32 genphy_config_init +EXPORT_SYMBOL vmlinux 0x5944d015 __cachemode2pte_tbl +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x59543aeb blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x596f3462 nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x5979ffd9 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x5980a6b5 device_add_disk +EXPORT_SYMBOL vmlinux 0x598a3f4d kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x599a8a5e max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59b1cce3 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x59bc9609 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0x59d56209 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x59d75a59 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x59eca294 locks_free_lock +EXPORT_SYMBOL vmlinux 0x59f14bc8 bio_reset +EXPORT_SYMBOL vmlinux 0x59f653c2 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a2ca2d1 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x5a32f974 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x5a3a0d08 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a5efebf set_nlink +EXPORT_SYMBOL vmlinux 0x5a64bedc __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x5a681453 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x5a82c44a complete_and_exit +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a9e547e xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x5aadd7df km_policy_expired +EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x5ad1b1bb prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x5ad4ee9b devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x5ad748f7 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x5ad8164f __mutex_init +EXPORT_SYMBOL vmlinux 0x5ae0303b blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x5af6a211 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b08ec5b fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x5b279631 serio_interrupt +EXPORT_SYMBOL vmlinux 0x5b295fc4 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x5b31ac01 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x5b49b08f neigh_destroy +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b5ea87c compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0x5b64fcf1 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x5b6535b1 ip_options_compile +EXPORT_SYMBOL vmlinux 0x5b700d4f fscrypt_d_ops +EXPORT_SYMBOL vmlinux 0x5b9c808a acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0x5bb88d00 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit +EXPORT_SYMBOL vmlinux 0x5bd4aa59 dev_notice +EXPORT_SYMBOL vmlinux 0x5bf5de99 get_super_thawed +EXPORT_SYMBOL vmlinux 0x5bfc92b0 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x5c06ed05 override_creds +EXPORT_SYMBOL vmlinux 0x5c1059e9 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x5c110042 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x5c33d25d xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x5c4344d1 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x5c6411ef force_sig +EXPORT_SYMBOL vmlinux 0x5c69b415 arp_tbl +EXPORT_SYMBOL vmlinux 0x5c743fc9 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x5c942219 scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x5ca64274 generic_file_open +EXPORT_SYMBOL vmlinux 0x5cbd67c0 devm_free_irq +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d00700a sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x5d0161ec proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x5d1b0cd8 neigh_table_init +EXPORT_SYMBOL vmlinux 0x5d253952 ata_print_version +EXPORT_SYMBOL vmlinux 0x5d303352 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x5d33a242 mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x5d4a8320 kvasprintf +EXPORT_SYMBOL vmlinux 0x5d5082e6 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d559619 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved +EXPORT_SYMBOL vmlinux 0x5d8475e0 completion_done +EXPORT_SYMBOL vmlinux 0x5d8ba5ba __sb_start_write +EXPORT_SYMBOL vmlinux 0x5dcc22d4 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x5de819a0 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x5de86a1d vlan_vid_add +EXPORT_SYMBOL vmlinux 0x5df92598 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x5dfe2e40 alloc_pages_current +EXPORT_SYMBOL vmlinux 0x5e0b5b5d kill_pgrp +EXPORT_SYMBOL vmlinux 0x5e3d69fc wait_iff_congested +EXPORT_SYMBOL vmlinux 0x5e737ff8 vga_put +EXPORT_SYMBOL vmlinux 0x5e7d2453 clone_cred +EXPORT_SYMBOL vmlinux 0x5e8c8ea4 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x5e8eb7a6 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x5e91c585 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ecfeec6 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5eddb14c radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x5ef4260a tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f09ffec from_kgid_munged +EXPORT_SYMBOL vmlinux 0x5f190b3c nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x5f1bdcf5 blk_stop_queue +EXPORT_SYMBOL vmlinux 0x5f1d4ba1 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x5f20c046 first_ec +EXPORT_SYMBOL vmlinux 0x5f2c1cb7 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x5f5327fa phy_register_fixup +EXPORT_SYMBOL vmlinux 0x5f5c7e65 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x5f5fb85f lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x5f788e0a twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x5f7e9afc blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x5f9cc0db kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x5fb2e8ef idr_init +EXPORT_SYMBOL vmlinux 0x5fceffe0 clk_get +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fda77ef simple_write_end +EXPORT_SYMBOL vmlinux 0x5fdd66e7 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x5fe8a334 set_posix_acl +EXPORT_SYMBOL vmlinux 0x5ff001a3 d_invalidate +EXPORT_SYMBOL vmlinux 0x5ffdf2c4 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x6013ecc1 vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60237865 cpumask_any_but +EXPORT_SYMBOL vmlinux 0x6029c059 thaw_bdev +EXPORT_SYMBOL vmlinux 0x602e9025 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x6038b868 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x60412cfc vfs_symlink +EXPORT_SYMBOL vmlinux 0x604316d8 acpi_finish_gpe +EXPORT_SYMBOL vmlinux 0x60560f3b fence_signal +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x60806921 get_gendisk +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x609f5b35 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60abb0e3 kill_block_super +EXPORT_SYMBOL vmlinux 0x60af158f agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x60b62ade devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0x60bd506b block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x60d560a5 __ps2_command +EXPORT_SYMBOL vmlinux 0x60dbedf0 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x60dce600 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x610aaa40 mempool_destroy +EXPORT_SYMBOL vmlinux 0x61176baf tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x612b21d7 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x6143450c tcp_close +EXPORT_SYMBOL vmlinux 0x61520529 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x615f4f0f scm_detach_fds +EXPORT_SYMBOL vmlinux 0x61847242 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61abfb03 nf_afinfo +EXPORT_SYMBOL vmlinux 0x61aed399 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61ca5aae scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x61d9d29a dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x61e9119e simple_write_begin +EXPORT_SYMBOL vmlinux 0x61fb248a node_states +EXPORT_SYMBOL vmlinux 0x62049256 acpi_disable +EXPORT_SYMBOL vmlinux 0x620b59f4 dev_load +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x6237f6b5 acpi_enable_event +EXPORT_SYMBOL vmlinux 0x626f35ee dev_warn +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62748e70 acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x628edb7c devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x629d3d29 ll_rw_block +EXPORT_SYMBOL vmlinux 0x62adeaf3 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x62b008eb gnttab_alloc_pages +EXPORT_SYMBOL vmlinux 0x62c237ad default_file_splice_read +EXPORT_SYMBOL vmlinux 0x62c2bec3 tty_port_put +EXPORT_SYMBOL vmlinux 0x62c64ab9 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x62d25675 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x62d403fa inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x62db3909 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x62eda89f blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x6307438b tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x6341fd71 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x634ddbaf generic_removexattr +EXPORT_SYMBOL vmlinux 0x636692f5 iptun_encaps +EXPORT_SYMBOL vmlinux 0x6367863b setup_arg_pages +EXPORT_SYMBOL vmlinux 0x636a5691 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0x6382c1e8 md_update_sb +EXPORT_SYMBOL vmlinux 0x638852f4 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x6388591c down_timeout +EXPORT_SYMBOL vmlinux 0x638ff99b skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x63a01291 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63ee0539 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x63f5ff85 __frontswap_load +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x63fd3bd6 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x63fdd336 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x641806ab skb_pad +EXPORT_SYMBOL vmlinux 0x6426a748 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x642ce58e __netif_schedule +EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0x646479a7 down_write_trylock +EXPORT_SYMBOL vmlinux 0x6468e6ce page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x64715cbd dump_emit +EXPORT_SYMBOL vmlinux 0x64895fb9 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x6492b725 dquot_drop +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x649beea7 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x64a106f2 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x64a2ca84 register_netdev +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64ab0e98 wait_for_completion +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64d0d5d0 task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0x64dc4443 tcp_connect +EXPORT_SYMBOL vmlinux 0x64eae7ad set_memory_array_wb +EXPORT_SYMBOL vmlinux 0x64fce602 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x6515a0e6 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x6517fa5d request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652870bf inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x654f172f udp_proc_register +EXPORT_SYMBOL vmlinux 0x655f1ab0 set_memory_array_wc +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656c3cde arp_create +EXPORT_SYMBOL vmlinux 0x658f3c37 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x65958069 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x65a4398d sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x65a86f59 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x65ad1693 genphy_read_status +EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry +EXPORT_SYMBOL vmlinux 0x65d462c4 pci_set_master +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65f03d73 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x661282a9 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x661e7695 end_page_writeback +EXPORT_SYMBOL vmlinux 0x661ff29a param_set_copystring +EXPORT_SYMBOL vmlinux 0x663140f9 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0x66560183 file_open_root +EXPORT_SYMBOL vmlinux 0x666191c8 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x666b7cd8 init_special_inode +EXPORT_SYMBOL vmlinux 0x667cecc9 acpi_os_printf +EXPORT_SYMBOL vmlinux 0x66af6224 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x66b185e4 udp_seq_open +EXPORT_SYMBOL vmlinux 0x66d6f1fc mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x66d804b1 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x66e2f5fc proc_set_size +EXPORT_SYMBOL vmlinux 0x67056251 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x670d4301 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x67261bee sock_alloc +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x672c5471 pv_cpu_ops +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x676b6262 d_splice_alias +EXPORT_SYMBOL vmlinux 0x676d3d94 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x6774c2b3 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x6778b84f dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67bdc73d gnttab_free_pages +EXPORT_SYMBOL vmlinux 0x67c46707 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x67d4456b pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x67f1b185 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x67fad7c7 tcf_em_register +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680ec266 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x68105ce2 nla_append +EXPORT_SYMBOL vmlinux 0x6817d463 x86_cpu_to_acpiid +EXPORT_SYMBOL vmlinux 0x6819b5af __ip_select_ident +EXPORT_SYMBOL vmlinux 0x683cfe8d module_layout +EXPORT_SYMBOL vmlinux 0x6840a727 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x68423999 unregister_netdev +EXPORT_SYMBOL vmlinux 0x68612a67 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x686bc5f1 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x687a66aa dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68b75867 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x68c05b8c get_task_exe_file +EXPORT_SYMBOL vmlinux 0x68d175bf freeze_bdev +EXPORT_SYMBOL vmlinux 0x68f498a3 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x6920ff27 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x6922e7d8 kern_unmount +EXPORT_SYMBOL vmlinux 0x6939f5fd set_page_dirty +EXPORT_SYMBOL vmlinux 0x6962c720 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x6963431c iov_iter_npages +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a81e92 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69c0dd4f input_open_device +EXPORT_SYMBOL vmlinux 0x69e91c46 skb_queue_head +EXPORT_SYMBOL vmlinux 0x69fbc0a2 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a27bb42 misc_register +EXPORT_SYMBOL vmlinux 0x6a47e317 __page_symlink +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a70b74a mount_nodev +EXPORT_SYMBOL vmlinux 0x6a7a0e5e skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x6a882396 give_up_console +EXPORT_SYMBOL vmlinux 0x6a8c5c30 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x6ab96da7 serio_reconnect +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6acf7eef pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x6ad04ab1 vmap +EXPORT_SYMBOL vmlinux 0x6ad85887 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6ae65a20 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b23580f truncate_setsize +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b3a169f sget_userns +EXPORT_SYMBOL vmlinux 0x6b3fe6f6 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6b6cc31a scsi_device_resume +EXPORT_SYMBOL vmlinux 0x6b6e361c pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x6b74b9be bit_waitqueue +EXPORT_SYMBOL vmlinux 0x6b74c72b softnet_data +EXPORT_SYMBOL vmlinux 0x6b9e0bc5 param_ops_byte +EXPORT_SYMBOL vmlinux 0x6ba0ebfc nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x6ba70a06 scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bcf066d _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x6bd21f86 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6bea647b dquot_free_inode +EXPORT_SYMBOL vmlinux 0x6bf1c17f pv_lock_ops +EXPORT_SYMBOL vmlinux 0x6bf1ebec d_add_ci +EXPORT_SYMBOL vmlinux 0x6bf2e863 file_path +EXPORT_SYMBOL vmlinux 0x6bff4868 bdi_destroy +EXPORT_SYMBOL vmlinux 0x6c44bc15 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x6c510100 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c73ab20 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x6cb21586 blk_put_request +EXPORT_SYMBOL vmlinux 0x6cb6e984 path_nosuid +EXPORT_SYMBOL vmlinux 0x6cc42aee proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x6cf3c552 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x6d0e6ce8 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d1d5d9b iosf_mbi_write +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 0x6d3d02f1 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x6d55026b mutex_lock +EXPORT_SYMBOL vmlinux 0x6d597e37 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x6d6929b2 serio_rescan +EXPORT_SYMBOL vmlinux 0x6d769b59 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x6d936325 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x6db0473a input_allocate_device +EXPORT_SYMBOL vmlinux 0x6db16b2d dump_skip +EXPORT_SYMBOL vmlinux 0x6db51ac7 dma_ops +EXPORT_SYMBOL vmlinux 0x6dc0c9dc down_interruptible +EXPORT_SYMBOL vmlinux 0x6dc6dd56 down +EXPORT_SYMBOL vmlinux 0x6dd80921 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e07f28e touch_atime +EXPORT_SYMBOL vmlinux 0x6e2dc733 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x6e382423 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x6e39bf6a vfs_statfs +EXPORT_SYMBOL vmlinux 0x6e52019c __find_get_block +EXPORT_SYMBOL vmlinux 0x6e60c338 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e790467 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x6e7e67ea dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6eaea220 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x6eb77eda ata_port_printk +EXPORT_SYMBOL vmlinux 0x6eca4d4f mod_timer_pending +EXPORT_SYMBOL vmlinux 0x6ef00279 iterate_fd +EXPORT_SYMBOL vmlinux 0x6ef66e8a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x6efa6ba1 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x6f0c128a scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x6f1bf786 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x6f20d88e elevator_init +EXPORT_SYMBOL vmlinux 0x6f2a3cce kern_path_create +EXPORT_SYMBOL vmlinux 0x6f2e4f46 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x6f556bdb acpi_get_gpe_device +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f8a80a1 dev_add_pack +EXPORT_SYMBOL vmlinux 0x6fb84047 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fdb430a dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x6fde62ad blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write +EXPORT_SYMBOL vmlinux 0x6ff4f026 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x6ffd2780 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x700bddd9 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x70131818 d_lookup +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x7029f11b iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0x702e092a vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x702f5241 try_to_release_page +EXPORT_SYMBOL vmlinux 0x704a22ba neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x705bfb1c __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x708a79f7 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x70cd44c1 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x70d050c6 kobject_add +EXPORT_SYMBOL vmlinux 0x70d7563d pci_disable_device +EXPORT_SYMBOL vmlinux 0x70d80b93 __nd_iostat_start +EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0x70e97597 vfs_mknod +EXPORT_SYMBOL vmlinux 0x70eb961d filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x70f67ead netpoll_setup +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x70fcfdd1 down_read_trylock +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7149a9c8 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71828a66 proc_dostring +EXPORT_SYMBOL vmlinux 0x718f03f6 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x7192f716 sk_alloc +EXPORT_SYMBOL vmlinux 0x71a36ca0 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71dd7d99 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x72169185 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x72220176 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x72220f81 backlight_force_update +EXPORT_SYMBOL vmlinux 0x7224a77e pcim_iounmap +EXPORT_SYMBOL vmlinux 0x722989f7 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x7239e7b4 bio_phys_segments +EXPORT_SYMBOL vmlinux 0x7253d855 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x7255f358 dev_emerg +EXPORT_SYMBOL vmlinux 0x72577e6b get_monotonic_coarse64 +EXPORT_SYMBOL vmlinux 0x725c910c devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x725f3387 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x7262b2af get_io_context +EXPORT_SYMBOL vmlinux 0x72667d11 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x7286bd43 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x7290959e devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x729e8ed4 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x72a98fdb copy_user_generic_unrolled +EXPORT_SYMBOL vmlinux 0x72abb252 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72d389ac i2c_transfer +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72ed4def account_page_redirty +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x7317917e proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x733340c4 to_ndd +EXPORT_SYMBOL vmlinux 0x7347cdc2 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x7359ca1e xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x737cff1c xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x738714db ida_pre_get +EXPORT_SYMBOL vmlinux 0x73c8293b xfrm_lookup +EXPORT_SYMBOL vmlinux 0x73c84560 ex_handler_ext +EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x73df0615 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x73e689b4 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x73f85c13 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x73fae77e sg_miter_next +EXPORT_SYMBOL vmlinux 0x73fb5f17 dump_align +EXPORT_SYMBOL vmlinux 0x73fbcb97 fscrypt_decrypt_page +EXPORT_SYMBOL vmlinux 0x74029d78 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x74081158 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x743c5ba2 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x7443ef60 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x745f20a3 idr_is_empty +EXPORT_SYMBOL vmlinux 0x746241e2 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x7465c5a5 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x7468d6dd dmam_pool_create +EXPORT_SYMBOL vmlinux 0x746a0d91 km_new_mapping +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x74780fe7 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74a6a372 twl6040_power +EXPORT_SYMBOL vmlinux 0x74b4c1a2 filemap_flush +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74d68a37 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x74d700e0 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74ee3d9f md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x74f14e0a simple_transaction_set +EXPORT_SYMBOL vmlinux 0x750b67b5 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x752c7cbd vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x7537a057 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x754d539c strlen +EXPORT_SYMBOL vmlinux 0x75811312 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7595eb50 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x75964d5c devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x75aebee9 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x75b391b9 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x75bc549a x86_cpu_to_apicid +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75be704d __vfs_read +EXPORT_SYMBOL vmlinux 0x75c125f8 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x75cdf4ce simple_statfs +EXPORT_SYMBOL vmlinux 0x75d6850f bd_set_size +EXPORT_SYMBOL vmlinux 0x75e6fe88 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x76001a6d jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x760a0019 generic_setxattr +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7633622b netif_device_detach +EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764b0a91 d_path +EXPORT_SYMBOL vmlinux 0x764cb64d dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x76608bc7 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x767dd8fd acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x7682ecd7 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x7687b142 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x76ad3bd8 vga_switcheroo_init_domain_pm_optimus_hdmi_audio +EXPORT_SYMBOL vmlinux 0x76b07ccf twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x76b59d0e mmc_can_reset +EXPORT_SYMBOL vmlinux 0x76c7c26a kern_path +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76e67494 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x76f1c34e elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x76f6b75b swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier +EXPORT_SYMBOL vmlinux 0x770a32f0 reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x77206756 pcim_iomap +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x774f9750 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x7758015e netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77b6f718 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77e7cdaa netlink_set_err +EXPORT_SYMBOL vmlinux 0x77f233e3 sock_no_connect +EXPORT_SYMBOL vmlinux 0x77f53abc acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x77fbc2ec scsi_execute +EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt +EXPORT_SYMBOL vmlinux 0x7839da82 clkdev_alloc +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x78465fc2 posix_acl_init +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x787297ce dst_release +EXPORT_SYMBOL vmlinux 0x7875fbf2 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x78764f4e pv_irq_ops +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x7891f358 blk_queue_split +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78aceefc locks_remove_posix +EXPORT_SYMBOL vmlinux 0x78b0cdf7 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x78b55452 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x78ba4b20 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x78c42094 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e739aa up +EXPORT_SYMBOL vmlinux 0x78f5be20 simple_open +EXPORT_SYMBOL vmlinux 0x78f77276 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method +EXPORT_SYMBOL vmlinux 0x7909e72f ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x791d115d flush_signals +EXPORT_SYMBOL vmlinux 0x791ed1c9 rename_lock +EXPORT_SYMBOL vmlinux 0x792b3339 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x7957e651 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x79601e58 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x7982ae6a agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x79947498 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79e135ab compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x79ef59ec param_ops_bint +EXPORT_SYMBOL vmlinux 0x79f22909 have_submounts +EXPORT_SYMBOL vmlinux 0x79fc319b skb_checksum_help +EXPORT_SYMBOL vmlinux 0x7a025120 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x7a0e58ff pci_remove_bus +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a306f2f inet_csk_accept +EXPORT_SYMBOL vmlinux 0x7a38f823 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a540538 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a7ff1b0 phy_init_hw +EXPORT_SYMBOL vmlinux 0x7a800218 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x7a82cb47 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7a872fce devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x7a92af22 devm_clk_get +EXPORT_SYMBOL vmlinux 0x7a9ccb02 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa3ff1d security_d_instantiate +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ade08a8 is_bad_inode +EXPORT_SYMBOL vmlinux 0x7ae359e1 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user +EXPORT_SYMBOL vmlinux 0x7afadd4d md_reload_sb +EXPORT_SYMBOL vmlinux 0x7b08b7c7 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b294c76 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc +EXPORT_SYMBOL vmlinux 0x7b38db9a bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7b7189bd padata_free +EXPORT_SYMBOL vmlinux 0x7b737f15 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x7bb4fa78 __blk_end_request +EXPORT_SYMBOL vmlinux 0x7bbeb1f3 del_gendisk +EXPORT_SYMBOL vmlinux 0x7bcffb35 generic_getxattr +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c25d2e2 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc +EXPORT_SYMBOL vmlinux 0x7c448bf7 set_cached_acl +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c64e54e compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x7c71a92f simple_getattr +EXPORT_SYMBOL vmlinux 0x7c8165a6 phy_detach +EXPORT_SYMBOL vmlinux 0x7c88062b reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7caa66ec pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb79176 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x7cc25a9b __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x7cd20baf down_write +EXPORT_SYMBOL vmlinux 0x7cd8d75e page_offset_base +EXPORT_SYMBOL vmlinux 0x7cda9322 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce83365 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0x7ce83cfa set_pages_array_uc +EXPORT_SYMBOL vmlinux 0x7cf09ea3 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x7cf23949 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf4105a mmc_register_driver +EXPORT_SYMBOL vmlinux 0x7cfe3ac7 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x7cffcfed cont_write_begin +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d15415f clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x7d1c9b46 bioset_free +EXPORT_SYMBOL vmlinux 0x7d287136 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x7d350227 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x7d425178 compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x7d647b0b agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x7d650075 phy_disconnect +EXPORT_SYMBOL vmlinux 0x7d66b823 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x7d6afa36 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d79f9b3 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port +EXPORT_SYMBOL vmlinux 0x7d96cea3 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x7da5d6f3 intel_gmch_probe +EXPORT_SYMBOL vmlinux 0x7dae9068 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x7db6bbea ip6_frag_init +EXPORT_SYMBOL vmlinux 0x7dbc2e57 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0x7dc00404 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7dfa1389 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x7e051d0f kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x7e0af491 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x7e1966c0 fence_signal_locked +EXPORT_SYMBOL vmlinux 0x7e3315f5 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x7e642bab swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x7e65b005 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x7e7c7707 mdiobus_free +EXPORT_SYMBOL vmlinux 0x7e7fc3fb __wake_up_bit +EXPORT_SYMBOL vmlinux 0x7ea07169 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x7ea37f56 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x7eaebb6f default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x7eb67af2 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x7ebd4be4 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x7ec8a063 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7efa3b10 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f14ce34 dev_close +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7f2e5799 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x7f324f4d try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7f5a89a1 xfrm_input +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f63d5c3 pipe_lock +EXPORT_SYMBOL vmlinux 0x7f6e1fd6 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x7f76b8b6 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f9399a8 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x7fa0101b d_set_d_op +EXPORT_SYMBOL vmlinux 0x7fac60e1 init_task +EXPORT_SYMBOL vmlinux 0x7fb0ad8f blk_run_queue +EXPORT_SYMBOL vmlinux 0x7fbdd496 free_buffer_head +EXPORT_SYMBOL vmlinux 0x7fd8ef87 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe38f48 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x80031da6 pci_biosrom_size +EXPORT_SYMBOL vmlinux 0x800fb92b full_name_hash +EXPORT_SYMBOL vmlinux 0x80164598 mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x801d389e pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x80216639 __register_binfmt +EXPORT_SYMBOL vmlinux 0x803d3788 blk_get_request +EXPORT_SYMBOL vmlinux 0x80586a1c pci_scan_bus +EXPORT_SYMBOL vmlinux 0x8071566c amd_iommu_domain_set_gcr3 +EXPORT_SYMBOL vmlinux 0x8074485a pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x809388ca idr_destroy +EXPORT_SYMBOL vmlinux 0x809f61b4 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x80a94e04 dm_put_device +EXPORT_SYMBOL vmlinux 0x80afab1d param_ops_ulong +EXPORT_SYMBOL vmlinux 0x80bdd566 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d98624 get_fs_type +EXPORT_SYMBOL vmlinux 0x80da2788 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x80fac5d5 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x810519fd hashlen_string +EXPORT_SYMBOL vmlinux 0x81144f9d idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x8133cfdc scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x81346dc6 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table +EXPORT_SYMBOL vmlinux 0x814a28bc delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x8153b7ab __serio_register_port +EXPORT_SYMBOL vmlinux 0x8159092d km_state_expired +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x816bbb83 __pagevec_release +EXPORT_SYMBOL vmlinux 0x817a6a43 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x817e3c1d gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x81979d14 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x81a74110 inet_shutdown +EXPORT_SYMBOL vmlinux 0x81cb4d5e bdi_register_dev +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81fb6706 put_io_context +EXPORT_SYMBOL vmlinux 0x81fc00c6 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x81ffca65 elevator_alloc +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x82073035 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0x823352aa vme_bus_type +EXPORT_SYMBOL vmlinux 0x825a3ab4 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x825be63d __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x825bf9c3 param_ops_long +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x827f1b19 nobh_write_end +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x828532d9 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x828d995a writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x8290ec12 vme_init_bridge +EXPORT_SYMBOL vmlinux 0x829471bc devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0x8299fb3d sockfd_lookup +EXPORT_SYMBOL vmlinux 0x829a9611 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x82a199a7 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x82a4daa9 keyring_clear +EXPORT_SYMBOL vmlinux 0x82adfb6a node_data +EXPORT_SYMBOL vmlinux 0x82b90132 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x82c8ad91 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x82cb17e7 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x82cf4b2f skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x82dae8ee inet_gro_receive +EXPORT_SYMBOL vmlinux 0x82dfb440 d_find_alias +EXPORT_SYMBOL vmlinux 0x82e75d63 bio_chain +EXPORT_SYMBOL vmlinux 0x830e547b ioremap_prot +EXPORT_SYMBOL vmlinux 0x83317a65 km_is_alive +EXPORT_SYMBOL vmlinux 0x833c03aa acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x833ebdf1 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x8344533c vga_con +EXPORT_SYMBOL vmlinux 0x834e061e scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x835871ae blk_get_backing_dev_info +EXPORT_SYMBOL vmlinux 0x835e81ca gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x836f2463 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x8381ee4d mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x8384647a acpi_map_pxm_to_online_node +EXPORT_SYMBOL vmlinux 0x838c6602 load_nls +EXPORT_SYMBOL vmlinux 0x838ec456 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83bacc56 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x8417f512 acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0x8494ddea ip_defrag +EXPORT_SYMBOL vmlinux 0x84add498 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x84c6ed1e amd_iommu_device_info +EXPORT_SYMBOL vmlinux 0x84d157df generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x84e5530f blk_rq_init +EXPORT_SYMBOL vmlinux 0x84eb4437 rps_needed +EXPORT_SYMBOL vmlinux 0x84f8f882 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x84fd0c69 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x8507c383 proc_dointvec +EXPORT_SYMBOL vmlinux 0x85267b8d padata_stop +EXPORT_SYMBOL vmlinux 0x8526c35a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x852eb270 find_get_entries_tag +EXPORT_SYMBOL vmlinux 0x853d483b console_stop +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x856975e7 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x857582f7 acpi_enable_all_wakeup_gpes +EXPORT_SYMBOL vmlinux 0x85825898 add_timer +EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x8596caed abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x859ff611 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x85a5141b kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85c8082e poll_initwait +EXPORT_SYMBOL vmlinux 0x85c83c53 vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85fdb238 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x86097c24 neigh_xmit +EXPORT_SYMBOL vmlinux 0x860b0465 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x861e22a4 acpi_map_cpu +EXPORT_SYMBOL vmlinux 0x86271413 fscrypt_get_policy +EXPORT_SYMBOL vmlinux 0x86371acd ex_handler_rdmsr_unsafe +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x86545906 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x865bd123 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x865d263c tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x86693ae3 may_umount +EXPORT_SYMBOL vmlinux 0x86887ec0 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x86891d2c iterate_supers_type +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x868d350a thaw_super +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86ab99f4 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x86b1cf36 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x86de593e devm_memremap +EXPORT_SYMBOL vmlinux 0x86e71f44 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0x86e9fd65 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x870cc25d inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x870e13d3 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x8724f598 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x87477ce2 wake_up_process +EXPORT_SYMBOL vmlinux 0x87602762 kobject_put +EXPORT_SYMBOL vmlinux 0x8762efe4 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write +EXPORT_SYMBOL vmlinux 0x877aa3e1 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x878cd015 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x879dde92 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x87aa0379 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x87aaddf8 wrmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x87c65cc4 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x87e94820 copy_from_iter +EXPORT_SYMBOL vmlinux 0x87f63d92 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x87fb647f inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x88013214 scmd_printk +EXPORT_SYMBOL vmlinux 0x88047379 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x8828a754 vm_map_ram +EXPORT_SYMBOL vmlinux 0x8868185a mount_ns +EXPORT_SYMBOL vmlinux 0x8879f7cb ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x88853ef0 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x888929ee notify_change +EXPORT_SYMBOL vmlinux 0x88b670a4 i2c_use_client +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x890b8fd6 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x890e3586 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x8927232f generic_update_time +EXPORT_SYMBOL vmlinux 0x892b26a0 set_memory_nx +EXPORT_SYMBOL vmlinux 0x8944c972 ilookup5 +EXPORT_SYMBOL vmlinux 0x894694ca pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x895ec325 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x8998ba02 set_wb_congested +EXPORT_SYMBOL vmlinux 0x89a681d5 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89ca7fd6 bmap +EXPORT_SYMBOL vmlinux 0x89cd8d78 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x89d4ddb7 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89db3e4b pagecache_write_end +EXPORT_SYMBOL vmlinux 0x89e2c611 tty_lock +EXPORT_SYMBOL vmlinux 0x89f47d7e submit_bh +EXPORT_SYMBOL vmlinux 0x8a0b12c6 complete_all +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a328800 __scm_destroy +EXPORT_SYMBOL vmlinux 0x8a352887 nf_log_packet +EXPORT_SYMBOL vmlinux 0x8a37e407 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x8a3b17f2 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x8a3e4715 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x8a3f5aa1 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a578d4e __tracepoint_read_msr +EXPORT_SYMBOL vmlinux 0x8a6944f9 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x8a7693b9 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a80d7a5 acpi_error +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa169a9 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x8aa51186 blk_init_queue +EXPORT_SYMBOL vmlinux 0x8ab0dee5 flush_old_exec +EXPORT_SYMBOL vmlinux 0x8ab2aee2 __block_write_begin +EXPORT_SYMBOL vmlinux 0x8add5823 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0x8ae438af ip_setsockopt +EXPORT_SYMBOL vmlinux 0x8ae565ee pci_clear_master +EXPORT_SYMBOL vmlinux 0x8ae99469 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0x8aed94d1 dm_get_device +EXPORT_SYMBOL vmlinux 0x8aeec772 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x8b17907c amd_iommu_enable_device_erratum +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b615ae0 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b6a3dde abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x8b6ec0dc dma_find_channel +EXPORT_SYMBOL vmlinux 0x8b7b69bb input_unregister_handle +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b8f5bc9 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8bb0432f elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x8bb545a3 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x8bb8f56d input_grab_device +EXPORT_SYMBOL vmlinux 0x8bbb78c0 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x8bce54ef d_prune_aliases +EXPORT_SYMBOL vmlinux 0x8bd77359 follow_pfn +EXPORT_SYMBOL vmlinux 0x8bf16e7f d_alloc_name +EXPORT_SYMBOL vmlinux 0x8c181c2d flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c20b13c bitmap_unplug +EXPORT_SYMBOL vmlinux 0x8c3d8949 fsync_bdev +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c63c66b phy_device_register +EXPORT_SYMBOL vmlinux 0x8c6f640a iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x8c77607f cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x8c7770a7 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x8ca40b3e netlink_ack +EXPORT_SYMBOL vmlinux 0x8ca445cb __get_user_pages +EXPORT_SYMBOL vmlinux 0x8cb62b3a __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8cf09a12 inet_accept +EXPORT_SYMBOL vmlinux 0x8cf5c5bd pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x8cfbb69e udp_table +EXPORT_SYMBOL vmlinux 0x8d15114a __release_region +EXPORT_SYMBOL vmlinux 0x8d186f1d vga_switcheroo_client_probe_defer +EXPORT_SYMBOL vmlinux 0x8d1eabce __secpath_destroy +EXPORT_SYMBOL vmlinux 0x8d2bdba2 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x8d335c26 devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x8d3bb837 pci_find_capability +EXPORT_SYMBOL vmlinux 0x8d48a837 sk_free +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d7e414b try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x8d838d91 ida_remove +EXPORT_SYMBOL vmlinux 0x8d899a8c submit_bio +EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface +EXPORT_SYMBOL vmlinux 0x8daf8c42 dql_init +EXPORT_SYMBOL vmlinux 0x8ddfd104 bio_init +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0x8e0b8f4f jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x8e16982a keyring_search +EXPORT_SYMBOL vmlinux 0x8e2c83be sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x8e2d83b6 node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x8e6d0325 bdi_register +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e7d7ce2 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x8e813b12 posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x8e81a578 phy_attached_print +EXPORT_SYMBOL vmlinux 0x8eab47f3 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8ebda731 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x8eceded5 tty_throttle +EXPORT_SYMBOL vmlinux 0x8ede2007 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x8efb1ee3 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x8f17304c dquot_quota_off +EXPORT_SYMBOL vmlinux 0x8f183883 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x8f18a479 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x8f20de53 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x8f244594 sync_filesystem +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f2f2ff3 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x8f4bdbf3 tcp_seq_open +EXPORT_SYMBOL vmlinux 0x8f5ac5e5 ps2_command +EXPORT_SYMBOL vmlinux 0x8f67d785 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x8f78baa7 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x8f7c63aa abort_creds +EXPORT_SYMBOL vmlinux 0x8f85c87a dma_sync_wait +EXPORT_SYMBOL vmlinux 0x8f95b6fd __neigh_create +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fdf772a init_timer_key +EXPORT_SYMBOL vmlinux 0x8fe59cef convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0x90032b30 efi +EXPORT_SYMBOL vmlinux 0x900ff7b6 filp_close +EXPORT_SYMBOL vmlinux 0x901fb6c7 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x90680159 key_task_permission +EXPORT_SYMBOL vmlinux 0x906b838d rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x9083349e security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x908575fe queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0x90b80538 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x90c97fa4 set_security_override +EXPORT_SYMBOL vmlinux 0x90fb6f1b fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x9111136e mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x91140013 register_console +EXPORT_SYMBOL vmlinux 0x911851f7 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x911c3b3c ns_capable +EXPORT_SYMBOL vmlinux 0x9144899e iget_failed +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x914eec68 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x915287b2 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x915e48e3 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x916a6ed9 vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x9195d1ad generic_perform_write +EXPORT_SYMBOL vmlinux 0x91967e8e xen_selfballoon_init +EXPORT_SYMBOL vmlinux 0x91a0d4f2 sock_i_uid +EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf +EXPORT_SYMBOL vmlinux 0x91afb2ef registered_fb +EXPORT_SYMBOL vmlinux 0x91b6fe9d gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x91c3e067 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x91d164a7 set_groups +EXPORT_SYMBOL vmlinux 0x91d54579 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x920445f1 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x9211a008 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x9218cff1 adjust_resource +EXPORT_SYMBOL vmlinux 0x92232ab4 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x9229cf76 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x922aecea sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923b6734 agp_find_bridge +EXPORT_SYMBOL vmlinux 0x924eea08 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x92741bed module_put +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92ae93cd lock_sock_fast +EXPORT_SYMBOL vmlinux 0x92b00e16 tc_classify +EXPORT_SYMBOL vmlinux 0x92c608c7 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x92caca3a jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x92dbe7b9 __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x92e03846 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0x92ed1faf inode_needs_sync +EXPORT_SYMBOL vmlinux 0x92f61978 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x92f6767f lg_local_lock +EXPORT_SYMBOL vmlinux 0x92f83b39 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x92f8ed3f i2c_verify_client +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x9319444f unlock_rename +EXPORT_SYMBOL vmlinux 0x932493a8 iosf_mbi_read +EXPORT_SYMBOL vmlinux 0x9346d9e9 pci_platform_rom +EXPORT_SYMBOL vmlinux 0x934be40c pci_pme_capable +EXPORT_SYMBOL vmlinux 0x9363b47b devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x93836050 fd_install +EXPORT_SYMBOL vmlinux 0x938d88b4 nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x93ae72b8 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93b605b5 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x93b996a2 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x93bd8ff2 __d_lookup_done +EXPORT_SYMBOL vmlinux 0x93c7b0ef bh_submit_read +EXPORT_SYMBOL vmlinux 0x93c8e4b6 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x93d43d09 nvm_register +EXPORT_SYMBOL vmlinux 0x93e31d65 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x93e6a7ce key_invalidate +EXPORT_SYMBOL vmlinux 0x93e8abe3 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x93f3e52b acpi_extract_package +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x94013c18 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x946a8a0d i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x94724fc6 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x947b49ff sock_rfree +EXPORT_SYMBOL vmlinux 0x9481644c __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x94910a54 lookup_bdev +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94ba36cd phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x94becf64 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x94eab9ed set_anon_super +EXPORT_SYMBOL vmlinux 0x94f5aa6c acpi_pm_device_run_wake +EXPORT_SYMBOL vmlinux 0x950b2186 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x950f7c41 inet_getname +EXPORT_SYMBOL vmlinux 0x9511621c request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x95202667 tty_kref_put +EXPORT_SYMBOL vmlinux 0x95263096 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x952af230 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x9537f8a3 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception +EXPORT_SYMBOL vmlinux 0x953dfc3b filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x95617202 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x956449f8 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x95bd0833 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x95bd6e26 acpi_install_sci_handler +EXPORT_SYMBOL vmlinux 0x95bd7632 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x95be92b4 pnp_is_active +EXPORT_SYMBOL vmlinux 0x95f7f589 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x960b5e72 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x962989bf put_cmsg +EXPORT_SYMBOL vmlinux 0x96546468 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x968dce0a ip_getsockopt +EXPORT_SYMBOL vmlinux 0x969da5c3 get_user_pages +EXPORT_SYMBOL vmlinux 0x96aba385 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d31b36 phy_device_remove +EXPORT_SYMBOL vmlinux 0x96d56573 amd_iommu_flush_tlb +EXPORT_SYMBOL vmlinux 0x96dc7658 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x97363543 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x9742b8e6 dquot_initialize +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x975c5f81 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x977bd921 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x9785e33d dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97aea08a invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x97c3600f agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x97c9f4a1 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x97d8451b twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x97de0ddd acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x97e55576 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x97f18b46 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x97f1ed65 __nla_put +EXPORT_SYMBOL vmlinux 0x980ca6d5 path_get +EXPORT_SYMBOL vmlinux 0x9812f218 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x9823af41 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x985468e6 key_link +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x9875e5d9 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x9878745c _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x987e8ec4 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x98887a3b i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x988cad29 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x988ed85d set_memory_x +EXPORT_SYMBOL vmlinux 0x9892bc93 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x98afeb68 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x98d59807 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x98da58ea mdio_device_register +EXPORT_SYMBOL vmlinux 0x98e2d245 fget +EXPORT_SYMBOL vmlinux 0x98ef2dca vfs_read +EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf +EXPORT_SYMBOL vmlinux 0x99357b73 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x9951d2b0 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x99567487 amd_iommu_domain_clear_gcr3 +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x995c9ff6 inet_gso_segment +EXPORT_SYMBOL vmlinux 0x99897e40 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a140c8 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x99b16f8c release_resource +EXPORT_SYMBOL vmlinux 0x99ba661b ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x99c3d74d pci_bus_get +EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99dc6850 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a578b8f bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x9a6481fe input_register_handle +EXPORT_SYMBOL vmlinux 0x9a6cd77c sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x9a8c80ec uart_match_port +EXPORT_SYMBOL vmlinux 0x9a8d4557 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x9a9b0c29 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9af07a9f pnp_register_driver +EXPORT_SYMBOL vmlinux 0x9af95f9a lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x9afa039e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x9b00983f skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x9b0e6ec0 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x9b14b0ea fb_set_cmap +EXPORT_SYMBOL vmlinux 0x9b1d039a mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b2ba01b bdput +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b3bc5f9 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x9b438429 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x9b4b9b39 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x9b73d333 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x9b97e73a ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba146bf wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bb9e760 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9bf12e47 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x9c15d6e1 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x9c39c463 dquot_commit +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c5b7a06 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x9c66de19 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x9c6af4ec fb_pan_display +EXPORT_SYMBOL vmlinux 0x9c7651ca vme_slot_num +EXPORT_SYMBOL vmlinux 0x9c8f3694 tcf_register_action +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9caea540 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x9cb24b38 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x9cb986f2 vmalloc_base +EXPORT_SYMBOL vmlinux 0x9cc9d7fa blk_free_tags +EXPORT_SYMBOL vmlinux 0x9cd84815 put_tty_driver +EXPORT_SYMBOL vmlinux 0x9cd84eb9 __sock_create +EXPORT_SYMBOL vmlinux 0x9ce27d85 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x9ce9d0ac dst_alloc +EXPORT_SYMBOL vmlinux 0x9cefee74 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x9d053c32 inet_ioctl +EXPORT_SYMBOL vmlinux 0x9d05a363 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x9d0b64e5 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d12f64c set_binfmt +EXPORT_SYMBOL vmlinux 0x9d2c4f2f pci_read_vpd +EXPORT_SYMBOL vmlinux 0x9d33ef5e acpi_enable +EXPORT_SYMBOL vmlinux 0x9d3635fd proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x9d378f70 queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x9d5dc612 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x9d6c1b52 scsi_print_command +EXPORT_SYMBOL vmlinux 0x9d7cbff8 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x9d8b4233 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x9d9aff64 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x9db5a7c1 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x9dc88b21 fget_raw +EXPORT_SYMBOL vmlinux 0x9dd5a734 dup_iter +EXPORT_SYMBOL vmlinux 0x9de4a039 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x9dfcda8d eth_gro_receive +EXPORT_SYMBOL vmlinux 0x9e098e2b cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0c96bb sock_from_file +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e212a40 sync_inode +EXPORT_SYMBOL vmlinux 0x9e26d8dc cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e363b6b acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e5158a2 mmc_free_host +EXPORT_SYMBOL vmlinux 0x9e552979 gen_pool_create +EXPORT_SYMBOL vmlinux 0x9e5b1e66 sock_wfree +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e6af43e sock_register +EXPORT_SYMBOL vmlinux 0x9e6c7bda agp_enable +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e9eb34c acpi_check_dsm +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9eaf4194 dev_base_lock +EXPORT_SYMBOL vmlinux 0x9ec98ca8 vm_node_stat +EXPORT_SYMBOL vmlinux 0x9ee82cd6 uuid_be_index +EXPORT_SYMBOL vmlinux 0x9eff5fc3 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x9f251471 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x9f3de8bb scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f67e4a0 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x9f91a047 fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa993d5 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x9fb1d0ed uuid_is_valid +EXPORT_SYMBOL vmlinux 0x9fb27fc0 tcp_child_process +EXPORT_SYMBOL vmlinux 0x9fc4789d inode_set_flags +EXPORT_SYMBOL vmlinux 0x9fd1184f i2c_clients_command +EXPORT_SYMBOL vmlinux 0x9fd302e3 padata_do_serial +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa0031c20 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xa0073dd8 kfree_skb_list +EXPORT_SYMBOL vmlinux 0xa007f9c1 genl_unregister_family +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa03009ce pci_enable_msix +EXPORT_SYMBOL vmlinux 0xa03389de __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa04bcf2f lock_sock_nested +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa05ecd13 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0xa06ff399 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xa073e7c5 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa085ae6d zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0xa09432d2 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0xa097308c agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0xa09d96ff blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0babe6b prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0xa0c982d0 downgrade_write +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0fcd8ac vme_register_bridge +EXPORT_SYMBOL vmlinux 0xa0fd13a4 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa11c85db pci_request_region +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa128c386 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa141f871 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0xa142cc34 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts +EXPORT_SYMBOL vmlinux 0xa17a0d7d nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xa19f7626 zero_fill_bio +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1b90868 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1c84130 set_disk_ro +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1dfc876 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xa1ebabab devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xa1fd1c4d blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa24da1e2 compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0xa2703947 dquot_resume +EXPORT_SYMBOL vmlinux 0xa27f8b91 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa2871921 vm_insert_page +EXPORT_SYMBOL vmlinux 0xa2914018 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xa29de219 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0xa2b8a607 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xa2c88fea amd_iommu_domain_direct_map +EXPORT_SYMBOL vmlinux 0xa2e757d0 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xa31653f0 amd_iommu_flush_page +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa31daed0 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xa31df149 pci_iounmap +EXPORT_SYMBOL vmlinux 0xa321e4d2 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xa32919d4 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xa34fcb2d mempool_create_node +EXPORT_SYMBOL vmlinux 0xa350a8f8 set_memory_array_uc +EXPORT_SYMBOL vmlinux 0xa356000b vfs_iter_write +EXPORT_SYMBOL vmlinux 0xa35fe34d acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0xa36f4c67 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa3a3a079 input_unregister_device +EXPORT_SYMBOL vmlinux 0xa3a4bf57 kthread_bind +EXPORT_SYMBOL vmlinux 0xa3b5a2a8 dev_uc_del +EXPORT_SYMBOL vmlinux 0xa3b8337c dquot_destroy +EXPORT_SYMBOL vmlinux 0xa3c507b3 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xa3d643f4 km_policy_notify +EXPORT_SYMBOL vmlinux 0xa3db8c75 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xa3e17afd user_path_create +EXPORT_SYMBOL vmlinux 0xa3eb730e mdiobus_scan +EXPORT_SYMBOL vmlinux 0xa3f5ef10 freezing_slow_path +EXPORT_SYMBOL vmlinux 0xa3fe439c dm_put_table_device +EXPORT_SYMBOL vmlinux 0xa402c42c skb_unlink +EXPORT_SYMBOL vmlinux 0xa4033aaa save_mount_options +EXPORT_SYMBOL vmlinux 0xa40faea1 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0xa44a22ae __sk_dst_check +EXPORT_SYMBOL vmlinux 0xa4511467 crc16 +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa48b33b3 bio_advance +EXPORT_SYMBOL vmlinux 0xa48c322d sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xa49f8f38 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xa4a212cb icmpv6_send +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4bbbc40 sync_file_create +EXPORT_SYMBOL vmlinux 0xa4c1629e mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4d5ed0d inet_sendmsg +EXPORT_SYMBOL vmlinux 0xa4dae1e6 load_nls_default +EXPORT_SYMBOL vmlinux 0xa4db24c8 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xa4eca6a8 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xa4f0e26e udp_disconnect +EXPORT_SYMBOL vmlinux 0xa50b6b56 ex_handler_clear_fs +EXPORT_SYMBOL vmlinux 0xa516be4c napi_consume_skb +EXPORT_SYMBOL vmlinux 0xa543b36e posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xa5472dd3 pci_set_mwi +EXPORT_SYMBOL vmlinux 0xa5492a81 secpath_dup +EXPORT_SYMBOL vmlinux 0xa549a0b5 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa557ab19 dump_trace +EXPORT_SYMBOL vmlinux 0xa5603f32 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xa569ef34 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xa5720d67 qdisc_list_add +EXPORT_SYMBOL vmlinux 0xa577f089 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xa57e6a9a bioset_create +EXPORT_SYMBOL vmlinux 0xa596289b pci_irq_vector +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le +EXPORT_SYMBOL vmlinux 0xa5b82db8 __tracepoint_write_msr +EXPORT_SYMBOL vmlinux 0xa5bc038e simple_nosetlease +EXPORT_SYMBOL vmlinux 0xa5cb2910 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xa5e75e9a acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xa61668e4 compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0xa61a35fc get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xa627d39a ppp_dev_name +EXPORT_SYMBOL vmlinux 0xa6292f59 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xa6318001 phy_driver_register +EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa65f4ddb tcp_prequeue +EXPORT_SYMBOL vmlinux 0xa6690258 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa697f66c twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xa69910b5 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xa6ae36e1 vfs_rmdir +EXPORT_SYMBOL vmlinux 0xa6bbd805 __wake_up +EXPORT_SYMBOL vmlinux 0xa6bc07d7 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error +EXPORT_SYMBOL vmlinux 0xa6bdfc46 gen_pool_alloc_algo +EXPORT_SYMBOL vmlinux 0xa6cc7e9c dev_activate +EXPORT_SYMBOL vmlinux 0xa6d15716 blkdev_get +EXPORT_SYMBOL vmlinux 0xa6d281da tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xa6d78857 set_pages_array_wb +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa705b45b simple_dname +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa7165324 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xa724989c mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xa72785a0 tcf_hash_search +EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa73d6d42 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xa7403220 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0xa74bcd62 rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xa75131db rt6_lookup +EXPORT_SYMBOL vmlinux 0xa788f1a0 i8253_lock +EXPORT_SYMBOL vmlinux 0xa7904be1 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xa7a8d4aa md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xa7cf91db skb_insert +EXPORT_SYMBOL vmlinux 0xa7ed7af6 vga_switcheroo_lock_ddc +EXPORT_SYMBOL vmlinux 0xa7f959e3 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xa806cf80 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xa80c060b vme_master_request +EXPORT_SYMBOL vmlinux 0xa81111d5 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xa818c158 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xa82a819e import_single_range +EXPORT_SYMBOL vmlinux 0xa82c4a51 md_finish_reshape +EXPORT_SYMBOL vmlinux 0xa82cdfff key_revoke +EXPORT_SYMBOL vmlinux 0xa82d9e4b dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xa83913bd mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa859eb29 tty_unlock +EXPORT_SYMBOL vmlinux 0xa86b51be migrate_page_copy +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa87fc4b1 ppp_input_error +EXPORT_SYMBOL vmlinux 0xa8b521ad dev_mc_sync +EXPORT_SYMBOL vmlinux 0xa8c62c77 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xa8f05179 compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa902b117 make_kgid +EXPORT_SYMBOL vmlinux 0xa90f9ccf __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa91a9fbb xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xa93f40ca agp_backend_release +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9786162 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xa9794e89 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0xa9bd2676 __vmalloc +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9c7de39 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xa9dbacc1 kill_litter_super +EXPORT_SYMBOL vmlinux 0xa9f7c2f5 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xaa2b8c8b security_path_unlink +EXPORT_SYMBOL vmlinux 0xaa5bd08d __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa7e6ffe netdev_printk +EXPORT_SYMBOL vmlinux 0xaab1555c mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xaab42af1 scsi_remove_target +EXPORT_SYMBOL vmlinux 0xaaccba2b mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaadb50d8 path_is_under +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaaf94cd8 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab0303b3 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xab13b42d devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xab2419f8 max8925_set_bits +EXPORT_SYMBOL vmlinux 0xab264fde chacha20_block +EXPORT_SYMBOL vmlinux 0xab29e8a2 inet_del_offload +EXPORT_SYMBOL vmlinux 0xab2f127e param_ops_uint +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3fb8b7 input_get_keycode +EXPORT_SYMBOL vmlinux 0xab494d25 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xab551fad acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab770678 rdmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab83f61f udp6_csum_init +EXPORT_SYMBOL vmlinux 0xab90ad8d fput +EXPORT_SYMBOL vmlinux 0xabb47824 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabd70500 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xabed84a9 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xac062074 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xac172a09 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac30fb55 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac45ae9f rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xac52ee93 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xac87b6a9 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xaca9cdf8 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb99769 ida_destroy +EXPORT_SYMBOL vmlinux 0xacc76868 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0xacc9c85e remove_proc_entry +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacfaa4a3 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad082f75 simple_unlink +EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xad23ab9d acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0xad404659 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xad5139b1 fscrypt_restore_control_page +EXPORT_SYMBOL vmlinux 0xad5a74a6 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xad698f77 dqstats +EXPORT_SYMBOL vmlinux 0xad6e4bb6 mempool_free +EXPORT_SYMBOL vmlinux 0xad71493c nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xadb5bc15 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xadef8e55 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae044bc7 panic_notifier_list +EXPORT_SYMBOL vmlinux 0xae317393 dev_mc_add +EXPORT_SYMBOL vmlinux 0xae412636 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xae465340 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0xae4f3113 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xae5cdb25 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xae8e252d scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xaeab1f68 send_sig_info +EXPORT_SYMBOL vmlinux 0xaeb3d785 max8925_reg_write +EXPORT_SYMBOL vmlinux 0xaec3bcea read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xaecdc6be input_set_capability +EXPORT_SYMBOL vmlinux 0xaf1702ea vm_insert_mixed +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf480737 ab3100_event_register +EXPORT_SYMBOL vmlinux 0xaf5e17c6 dqput +EXPORT_SYMBOL vmlinux 0xaf611eac amd_nb_misc_ids +EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup +EXPORT_SYMBOL vmlinux 0xaf7df2b6 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xaf86d68a tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xaf924e9c abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0xaf9fcc79 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xafae2443 free_task +EXPORT_SYMBOL vmlinux 0xafb8c6ff copy_user_generic_string +EXPORT_SYMBOL vmlinux 0xafca7649 dev_alert +EXPORT_SYMBOL vmlinux 0xafcbe289 skb_queue_purge +EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported +EXPORT_SYMBOL vmlinux 0xafd6f866 scsi_host_put +EXPORT_SYMBOL vmlinux 0xb01b1db8 intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0xb01f9241 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xb020e8e8 inet6_bind +EXPORT_SYMBOL vmlinux 0xb024790d iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xb024861b fscrypt_inherit_context +EXPORT_SYMBOL vmlinux 0xb038d413 proto_unregister +EXPORT_SYMBOL vmlinux 0xb03b6659 current_in_userns +EXPORT_SYMBOL vmlinux 0xb05b9b46 kobject_get +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb0648e5e inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xb06a0ccb textsearch_destroy +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0cf9a92 nvm_end_io +EXPORT_SYMBOL vmlinux 0xb0ddf42d seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e43c4d mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xb0e602eb memmove +EXPORT_SYMBOL vmlinux 0xb0eb41ff iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0xb0edb0cd md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xb0f62a09 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xb10f31bb jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb126031e xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb1342b70 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xb1363c54 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xb140b848 kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb16c749d pci_dev_put +EXPORT_SYMBOL vmlinux 0xb1706408 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0xb187b3a8 lg_lock_init +EXPORT_SYMBOL vmlinux 0xb1903e77 seq_printf +EXPORT_SYMBOL vmlinux 0xb1986a40 nobh_write_begin +EXPORT_SYMBOL vmlinux 0xb1b43428 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xb1b6c4cd param_get_ushort +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1cae8d9 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0xb1ce4419 __ht_create_irq +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1cfad22 rdmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xb1e435cc nf_register_hooks +EXPORT_SYMBOL vmlinux 0xb1f43163 no_llseek +EXPORT_SYMBOL vmlinux 0xb1f67b20 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xb1ffb3da netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0xb2072c99 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xb20ecf88 acpi_run_osc +EXPORT_SYMBOL vmlinux 0xb2172067 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb224a4cc eth_type_trans +EXPORT_SYMBOL vmlinux 0xb22d2e89 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xb23ae8e9 block_write_begin +EXPORT_SYMBOL vmlinux 0xb2468244 blk_start_queue +EXPORT_SYMBOL vmlinux 0xb2486b67 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb26e6b53 intel_gtt_insert_page +EXPORT_SYMBOL vmlinux 0xb298de6d always_delete_dentry +EXPORT_SYMBOL vmlinux 0xb2b5d719 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xb2d389fa irq_domain_set_info +EXPORT_SYMBOL vmlinux 0xb2d5a552 complete +EXPORT_SYMBOL vmlinux 0xb2da2e7c mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xb2e8a8a6 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xb2ebc273 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove +EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb3081430 set_trace_device +EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xb32d968b phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0xb33ee376 jbd2_journal_inode_add_write +EXPORT_SYMBOL vmlinux 0xb340a1ae cad_pid +EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit +EXPORT_SYMBOL vmlinux 0xb35aac82 __sb_end_write +EXPORT_SYMBOL vmlinux 0xb368fb8b fscrypt_initialize +EXPORT_SYMBOL vmlinux 0xb375d318 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0xb376a994 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xb3a2dfdf nmi_panic +EXPORT_SYMBOL vmlinux 0xb3a6ef0d md_error +EXPORT_SYMBOL vmlinux 0xb3c3eebb phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xb3ca3fe6 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3d3a74f mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xb3ebdfb0 clk_add_alias +EXPORT_SYMBOL vmlinux 0xb3f1303c param_ops_string +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb41b697f linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb428d652 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xb43f84b1 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class +EXPORT_SYMBOL vmlinux 0xb47cca30 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xb48f553d agp_bridge +EXPORT_SYMBOL vmlinux 0xb49b838d ps2_handle_response +EXPORT_SYMBOL vmlinux 0xb4a97048 blk_init_tags +EXPORT_SYMBOL vmlinux 0xb4bb1aae fscrypt_encrypt_page +EXPORT_SYMBOL vmlinux 0xb4d936b8 security_task_getsecid +EXPORT_SYMBOL vmlinux 0xb4db2928 set_user_nice +EXPORT_SYMBOL vmlinux 0xb4f4bf97 simple_lookup +EXPORT_SYMBOL vmlinux 0xb4f745e2 tcp_poll +EXPORT_SYMBOL vmlinux 0xb5062de9 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xb50d21b0 down_read +EXPORT_SYMBOL vmlinux 0xb51aefa1 sget +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb53042b1 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xb542d315 tty_check_change +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb581290c boot_cpu_data +EXPORT_SYMBOL vmlinux 0xb5828a7f cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xb593cbeb netif_receive_skb +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5c0e9cd devm_clk_put +EXPORT_SYMBOL vmlinux 0xb5c35b1a pci_map_rom +EXPORT_SYMBOL vmlinux 0xb5c63afd fasync_helper +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5dbd16a __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xb5f13bc0 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xb5f7714e i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xb5f869e8 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xb6085f9c ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb65084c5 vfs_create +EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6b951e0 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xb6ccfec7 param_ops_ushort +EXPORT_SYMBOL vmlinux 0xb6d0df10 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0xb6d35d6e __devm_request_region +EXPORT_SYMBOL vmlinux 0xb6d5686d napi_gro_frags +EXPORT_SYMBOL vmlinux 0xb6e04270 neigh_lookup +EXPORT_SYMBOL vmlinux 0xb6f583e9 file_ns_capable +EXPORT_SYMBOL vmlinux 0xb6f664ab lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0xb70ea5bb serio_open +EXPORT_SYMBOL vmlinux 0xb71753ce eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xb718d696 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xb7227680 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xb7260ac3 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0xb735e0a2 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xb73e26fa netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb74f5467 vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event +EXPORT_SYMBOL vmlinux 0xb76f1b8e blk_start_request +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb77e21c4 skb_queue_tail +EXPORT_SYMBOL vmlinux 0xb7a29ee2 neigh_parms_release +EXPORT_SYMBOL vmlinux 0xb7a680c2 blk_peek_request +EXPORT_SYMBOL vmlinux 0xb7ac5539 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xb7c1d237 ps2_end_command +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7da0e27 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0xb7eaeea7 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xb7ef7ae4 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xb824b6f4 register_netdevice +EXPORT_SYMBOL vmlinux 0xb8299486 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0xb83e3a6b bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0xb840e2f7 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb88bd24d capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xb88f403b check_disk_size_change +EXPORT_SYMBOL vmlinux 0xb893ea6c genphy_update_link +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b36856 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0xb8b6a76c __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xb8c1aa0f ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xb8c20dc3 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xb8cefafc bdi_init +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb8eec98b del_timer +EXPORT_SYMBOL vmlinux 0xb8ef6bab nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xb8fdcd10 mempool_resize +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb92158d0 __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xb92b0b5e md_unregister_thread +EXPORT_SYMBOL vmlinux 0xb935f3e2 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0xb9507ba1 submit_bio_wait +EXPORT_SYMBOL vmlinux 0xb95a1650 param_set_ullong +EXPORT_SYMBOL vmlinux 0xb968c168 open_exec +EXPORT_SYMBOL vmlinux 0xb96f5911 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xb97fa44b radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0xb989a20e register_xen_selfballooning +EXPORT_SYMBOL vmlinux 0xb99a342e mount_bdev +EXPORT_SYMBOL vmlinux 0xb9c97b7f blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xb9d11414 __devm_release_region +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9edd10a jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xb9edee6a mark_info_dirty +EXPORT_SYMBOL vmlinux 0xb9f66e97 xfrm_register_type +EXPORT_SYMBOL vmlinux 0xb9faa381 flow_cache_fini +EXPORT_SYMBOL vmlinux 0xba0ee5f2 soft_cursor +EXPORT_SYMBOL vmlinux 0xba1452f2 simple_rename +EXPORT_SYMBOL vmlinux 0xba24e0e7 generic_permission +EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read +EXPORT_SYMBOL vmlinux 0xba351942 vme_register_driver +EXPORT_SYMBOL vmlinux 0xba36c93a compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0xba3de922 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xba492f1e default_llseek +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba63a69b filemap_map_pages +EXPORT_SYMBOL vmlinux 0xba63e27a swake_up_all +EXPORT_SYMBOL vmlinux 0xba6e542a tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xba7dad34 fscrypt_pullback_bio_page +EXPORT_SYMBOL vmlinux 0xbaa21dd3 drop_super +EXPORT_SYMBOL vmlinux 0xbaa2e39e fscrypt_fname_encrypted_size +EXPORT_SYMBOL vmlinux 0xbaa6b7f5 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xbab8bff1 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xbae5daec sock_efree +EXPORT_SYMBOL vmlinux 0xbaed2ea3 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0xbb043f8c sock_wake_async +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb0c9fb9 generic_show_options +EXPORT_SYMBOL vmlinux 0xbb10bce2 set_pages_nx +EXPORT_SYMBOL vmlinux 0xbb10c081 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xbb304170 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb5c6b7e blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb8e169a vga_switcheroo_handler_flags +EXPORT_SYMBOL vmlinux 0xbb93a3af xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xbb967498 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbba70a2d _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xbbd46afb tcp_proc_register +EXPORT_SYMBOL vmlinux 0xbbeb1ec6 ioremap_wt +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc23a1b4 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xbc300258 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xbc33fc0c dev_addr_del +EXPORT_SYMBOL vmlinux 0xbc3b6576 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xbc404b23 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0xbc4778fd skb_pull +EXPORT_SYMBOL vmlinux 0xbc64a808 neigh_update +EXPORT_SYMBOL vmlinux 0xbc7277e8 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xbc78ef3c seq_lseek +EXPORT_SYMBOL vmlinux 0xbc868abc ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xbc8d8cf5 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xbcad0e1e udp_set_csum +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcc3b3e8 make_bad_inode +EXPORT_SYMBOL vmlinux 0xbcc6c4f3 phy_print_status +EXPORT_SYMBOL vmlinux 0xbcf2d904 napi_disable +EXPORT_SYMBOL vmlinux 0xbd00f2dc pci_dev_get +EXPORT_SYMBOL vmlinux 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0xbd3d74d2 serio_close +EXPORT_SYMBOL vmlinux 0xbd44239b cfb_fillrect +EXPORT_SYMBOL vmlinux 0xbd44d7b5 d_find_any_alias +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd5a0bb6 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xbd6252d5 skb_store_bits +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xbdb53b18 audit_log_start +EXPORT_SYMBOL vmlinux 0xbdba3773 page_mapping +EXPORT_SYMBOL vmlinux 0xbdd1e42f param_set_ushort +EXPORT_SYMBOL vmlinux 0xbde7d6bb __quota_error +EXPORT_SYMBOL vmlinux 0xbdefa6be dm_register_target +EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ +EXPORT_SYMBOL vmlinux 0xbe190743 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe355f84 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0xbe3b0309 alloc_fddidev +EXPORT_SYMBOL vmlinux 0xbe4bba8a input_event +EXPORT_SYMBOL vmlinux 0xbe555b6c swake_up +EXPORT_SYMBOL vmlinux 0xbe5922da iput +EXPORT_SYMBOL vmlinux 0xbe5d2266 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xbe6ada7d uuid_le_index +EXPORT_SYMBOL vmlinux 0xbe733c4b blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0xbe7d8772 skb_free_datagram +EXPORT_SYMBOL vmlinux 0xbe84ed4e inet_add_protocol +EXPORT_SYMBOL vmlinux 0xbec30d05 x86_match_cpu +EXPORT_SYMBOL vmlinux 0xbed61d2d framebuffer_release +EXPORT_SYMBOL vmlinux 0xbed6d8d2 compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xbede8ebe __seq_open_private +EXPORT_SYMBOL vmlinux 0xbef1a8d9 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbef9803c __pci_register_driver +EXPORT_SYMBOL vmlinux 0xbf01ad8e inode_init_owner +EXPORT_SYMBOL vmlinux 0xbf1e96ee serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xbf3f9430 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xbf3f9d4d __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xbf455d03 vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0xbf658e33 sock_setsockopt +EXPORT_SYMBOL vmlinux 0xbf6c1653 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xbf74c420 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf904216 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbf9c49fc __put_cred +EXPORT_SYMBOL vmlinux 0xbfb1fea9 sk_mc_loop +EXPORT_SYMBOL vmlinux 0xbfbb5f90 request_key +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfe02302 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xbfe23583 cfb_copyarea +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc003305b __kfree_skb +EXPORT_SYMBOL vmlinux 0xc0116c7e swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xc02c02e8 kernel_read +EXPORT_SYMBOL vmlinux 0xc05e355f idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xc062f51c mb_cache_entry_delete_block +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0771cf1 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xc0786bd1 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL vmlinux 0xc08b0431 free_user_ns +EXPORT_SYMBOL vmlinux 0xc09e6d4b vlan_vid_del +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0a690d3 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0xc0bd126e cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xc0c52e3d textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xc0d1a7b1 dev_printk +EXPORT_SYMBOL vmlinux 0xc0d68e64 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0xc14f04e6 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit +EXPORT_SYMBOL vmlinux 0xc1b7402a iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1fe759a set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xc1fe79ea inet_del_protocol +EXPORT_SYMBOL vmlinux 0xc211f222 md_integrity_register +EXPORT_SYMBOL vmlinux 0xc21c86f7 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xc22384e9 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xc226a26e mpage_readpages +EXPORT_SYMBOL vmlinux 0xc2356435 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc24fead3 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xc25218a8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0xc266dcc6 textsearch_register +EXPORT_SYMBOL vmlinux 0xc2777f23 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xc27aa591 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0xc280c4fb vfs_writev +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2c1932a blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2f8271d del_random_ready_callback +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc3226aaf xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xc33c0ff7 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xc350b4eb wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xc364ae22 iomem_resource +EXPORT_SYMBOL vmlinux 0xc3694ac9 param_get_int +EXPORT_SYMBOL vmlinux 0xc3696f35 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xc38316ac filp_clone_open +EXPORT_SYMBOL vmlinux 0xc3a090e9 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3c76ab0 inet6_release +EXPORT_SYMBOL vmlinux 0xc3e9e50c __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xc3fe0ea9 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xc4041f10 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0xc4490c40 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xc4525dc2 key_put +EXPORT_SYMBOL vmlinux 0xc459e6a7 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xc463de18 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xc469e478 generic_write_end +EXPORT_SYMBOL vmlinux 0xc478f446 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xc4795aae dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress +EXPORT_SYMBOL vmlinux 0xc48e98b3 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4d2314c vm_event_states +EXPORT_SYMBOL vmlinux 0xc4ec55de mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xc4f48d9d pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xc4f8e2e0 prepare_creds +EXPORT_SYMBOL vmlinux 0xc4ff9870 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xc50ccf3c pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xc5137552 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0xc51ff3cf param_ops_ullong +EXPORT_SYMBOL vmlinux 0xc52e6055 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0xc53645ca __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xc53766d4 dcb_getapp +EXPORT_SYMBOL vmlinux 0xc53b9ff4 register_qdisc +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc554765d netif_device_attach +EXPORT_SYMBOL vmlinux 0xc558530d profile_pc +EXPORT_SYMBOL vmlinux 0xc5778293 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0xc5906267 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5f7c03a seq_vprintf +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc5fe5381 param_set_uint +EXPORT_SYMBOL vmlinux 0xc615aa72 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc63d6729 proto_register +EXPORT_SYMBOL vmlinux 0xc641fa9b jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xc6458cd4 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xc649c8a8 lock_page_memcg +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc668d11f register_cdrom +EXPORT_SYMBOL vmlinux 0xc66b2bb0 mntput +EXPORT_SYMBOL vmlinux 0xc6768a6b km_state_notify +EXPORT_SYMBOL vmlinux 0xc676a064 eth_gro_complete +EXPORT_SYMBOL vmlinux 0xc6a077ce sk_ns_capable +EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d3e909 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xc6ea3058 xen_biovec_phys_mergeable +EXPORT_SYMBOL vmlinux 0xc709c267 nvm_register_tgt_type +EXPORT_SYMBOL vmlinux 0xc719ae6e scsi_dma_map +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc7359e07 udplite_prot +EXPORT_SYMBOL vmlinux 0xc73a8771 do_trace_read_msr +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc76aa744 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xc7717b1d acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xc77b8f8a dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc78891ab __getblk_slow +EXPORT_SYMBOL vmlinux 0xc78c5255 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xc78ef023 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7c8d408 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xc806507d rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xc837a9a7 netdev_change_features +EXPORT_SYMBOL vmlinux 0xc83d3cd6 eth_change_mtu +EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc88e670e netlink_capable +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8caea66 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xc8ea09ec amd_iommu_domain_enable_v2 +EXPORT_SYMBOL vmlinux 0xc8ead10f uart_register_driver +EXPORT_SYMBOL vmlinux 0xc906b1f9 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xc90f4207 kill_fasync +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc91d0b8e generic_read_dir +EXPORT_SYMBOL vmlinux 0xc91e9ef1 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xc940cd17 tty_devnum +EXPORT_SYMBOL vmlinux 0xc945c016 follow_down_one +EXPORT_SYMBOL vmlinux 0xc94a5870 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0xc94f9cef simple_release_fs +EXPORT_SYMBOL vmlinux 0xc962307d __skb_csum_offload_chk +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc96c635d neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xc971ba78 dev_deactivate +EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run +EXPORT_SYMBOL vmlinux 0xc980ed4b gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc99f6aae dma_spin_lock +EXPORT_SYMBOL vmlinux 0xc9b0722d nd_btt_probe +EXPORT_SYMBOL vmlinux 0xc9b0fc0c genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xc9c4698d param_get_short +EXPORT_SYMBOL vmlinux 0xc9f3a928 sk_net_capable +EXPORT_SYMBOL vmlinux 0xc9fef317 add_wait_queue +EXPORT_SYMBOL vmlinux 0xca284599 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xca2c0220 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xca2f70d4 d_move +EXPORT_SYMBOL vmlinux 0xca3c5168 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent +EXPORT_SYMBOL vmlinux 0xca607b5f generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xca7e4a29 xfrm_register_km +EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order +EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca97f784 bdget_disk +EXPORT_SYMBOL vmlinux 0xcaa6912b vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0xcaae358b input_reset_device +EXPORT_SYMBOL vmlinux 0xcabda12b mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0xcad979cc amd_iommu_get_v2_domain +EXPORT_SYMBOL vmlinux 0xcaecc231 phy_start_aneg +EXPORT_SYMBOL vmlinux 0xcaf0358c vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb02430d skb_put +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb195fee ps2_init +EXPORT_SYMBOL vmlinux 0xcb28a2f2 sock_no_accept +EXPORT_SYMBOL vmlinux 0xcb2e66f1 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xcb4ab04a console_start +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb83a9e3 pci_fixup_device +EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcb98e30d dev_alloc_name +EXPORT_SYMBOL vmlinux 0xcba2ede8 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0xcbb9c466 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbca7de8 rwsem_down_write_failed_killable +EXPORT_SYMBOL vmlinux 0xcc0d12b0 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xcc1e1906 scsi_print_result +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc272860 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xcc2c12e8 rtnl_notify +EXPORT_SYMBOL vmlinux 0xcc3a1901 handle_edge_irq +EXPORT_SYMBOL vmlinux 0xcc3b7065 input_inject_event +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc60f7c7 page_symlink +EXPORT_SYMBOL vmlinux 0xcc71a739 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xcc7b3909 blk_fetch_request +EXPORT_SYMBOL vmlinux 0xcc82add3 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xcc838223 __pte2cachemode_tbl +EXPORT_SYMBOL vmlinux 0xcc83e081 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xcc8988f3 netdev_alert +EXPORT_SYMBOL vmlinux 0xcc8d3f4f acpi_os_execute +EXPORT_SYMBOL vmlinux 0xcc9aa2a6 register_sysctl +EXPORT_SYMBOL vmlinux 0xcca34fe2 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xccb487c2 __napi_schedule +EXPORT_SYMBOL vmlinux 0xccbfb029 fence_default_wait +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccc313dc kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0xccca000a kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xccda01be blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0xccf6d674 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xccfaf4db __put_page +EXPORT_SYMBOL vmlinux 0xcd03df5e resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xcd0bc091 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xcd199f15 neigh_seq_start +EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd289e0b param_get_uint +EXPORT_SYMBOL vmlinux 0xcd955c9e mount_pseudo +EXPORT_SYMBOL vmlinux 0xcda95f22 sock_no_bind +EXPORT_SYMBOL vmlinux 0xcdab8af1 sock_no_poll +EXPORT_SYMBOL vmlinux 0xcdaee8f4 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xcdc0feba bdevname +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdcfef98 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xcdd69ae7 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xcdd9f596 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xcddac7e0 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xcddeb00f __scm_send +EXPORT_SYMBOL vmlinux 0xcdea2603 inode_change_ok +EXPORT_SYMBOL vmlinux 0xcdf43173 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xce044029 blk_end_request +EXPORT_SYMBOL vmlinux 0xce095859 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xce1f2168 read_dev_sector +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2c45cc wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xce4c1d3a scsi_target_resume +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce528130 ps2_drain +EXPORT_SYMBOL vmlinux 0xce53e426 nd_iostat_end +EXPORT_SYMBOL vmlinux 0xce565df6 sk_wait_data +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce5edb79 nf_hook_slow +EXPORT_SYMBOL vmlinux 0xce676ff3 from_kuid +EXPORT_SYMBOL vmlinux 0xce6fe793 nvm_put_blk +EXPORT_SYMBOL vmlinux 0xce75f73a xfrm_state_add +EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift +EXPORT_SYMBOL vmlinux 0xce7bfe70 vm_brk +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free +EXPORT_SYMBOL vmlinux 0xceaf360b vme_lm_request +EXPORT_SYMBOL vmlinux 0xcedddb1c inet_recvmsg +EXPORT_SYMBOL vmlinux 0xceea8648 input_set_keycode +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefc00b5 input_register_handler +EXPORT_SYMBOL vmlinux 0xcefc1b46 scsi_host_get +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xceffad45 PDE_DATA +EXPORT_SYMBOL vmlinux 0xcf155997 generic_file_mmap +EXPORT_SYMBOL vmlinux 0xcf16d8a5 con_is_bound +EXPORT_SYMBOL vmlinux 0xcf2e0aab fb_set_suspend +EXPORT_SYMBOL vmlinux 0xcf3a6182 sk_stream_error +EXPORT_SYMBOL vmlinux 0xcf4f7605 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xcf56b2e4 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0xcf571d02 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xcf5efb3e __frontswap_test +EXPORT_SYMBOL vmlinux 0xcf6cfe1f msrs_free +EXPORT_SYMBOL vmlinux 0xcf6d40e4 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xcf77804a cdev_del +EXPORT_SYMBOL vmlinux 0xcfa76bf0 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0xcfa9908a unlock_page_memcg +EXPORT_SYMBOL vmlinux 0xcfb291e8 inet6_add_offload +EXPORT_SYMBOL vmlinux 0xcfb4a296 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xcfc65402 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0xcff2ef42 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xcff815dc dev_err +EXPORT_SYMBOL vmlinux 0xcffe080e scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xd00a262b sock_recvmsg +EXPORT_SYMBOL vmlinux 0xd0118407 replace_mount_options +EXPORT_SYMBOL vmlinux 0xd0183dc0 mfd_add_devices +EXPORT_SYMBOL vmlinux 0xd01a7221 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0xd03a43bc __ip_dev_find +EXPORT_SYMBOL vmlinux 0xd055ac18 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xd062185c nf_log_unset +EXPORT_SYMBOL vmlinux 0xd064e155 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xd067e78c request_key_async +EXPORT_SYMBOL vmlinux 0xd06bc5e9 ip6_frag_match +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0b0f8fb padata_alloc_possible +EXPORT_SYMBOL vmlinux 0xd0d0406f cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xd0d513e9 block_write_end +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0ee9175 __free_pages +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd117cb39 vga_client_register +EXPORT_SYMBOL vmlinux 0xd11a02e4 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xd11a0e20 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xd121877b n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0xd12e04da xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0xd131ffd0 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0xd138423f nla_put +EXPORT_SYMBOL vmlinux 0xd1514d10 bdgrab +EXPORT_SYMBOL vmlinux 0xd1755d8a __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xd17d171c setup_new_exec +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd196c2ea blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xd1a8a496 vm_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xd1d46783 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd205270e blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xd2064e2f idr_replace +EXPORT_SYMBOL vmlinux 0xd20f3020 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xd22e61e0 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xd2404d7b kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xd2424a57 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd2668ea5 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd27fde4a fscrypt_decrypt_bio_pages +EXPORT_SYMBOL vmlinux 0xd28c3f6b sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xd2a1bfe7 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xd2a6516a dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xd2aed98b max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc +EXPORT_SYMBOL vmlinux 0xd2d417ba i8042_install_filter +EXPORT_SYMBOL vmlinux 0xd2d50bcd d_exact_alias +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2ded9a7 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0xd3051b24 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xd308d0c7 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xd312b99d clkdev_drop +EXPORT_SYMBOL vmlinux 0xd31ed88c mdio_device_create +EXPORT_SYMBOL vmlinux 0xd329538c single_release +EXPORT_SYMBOL vmlinux 0xd3352c1d down_write_killable +EXPORT_SYMBOL vmlinux 0xd34d082b inet_frag_kill +EXPORT_SYMBOL vmlinux 0xd36a8f86 inet_frag_find +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd3719d59 paravirt_ticketlocks_enabled +EXPORT_SYMBOL vmlinux 0xd378b5d4 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xd38c09e7 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xd3bb2fd0 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3caf076 pci_choose_state +EXPORT_SYMBOL vmlinux 0xd3d2a2e3 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xd3d79a4e phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xd3fb650e generic_readlink +EXPORT_SYMBOL vmlinux 0xd426c65d tcp_ioctl +EXPORT_SYMBOL vmlinux 0xd43768d6 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd4966385 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0xd499fece key_type_keyring +EXPORT_SYMBOL vmlinux 0xd4bec25a param_get_ullong +EXPORT_SYMBOL vmlinux 0xd4d81031 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xd4ed551c dquot_get_state +EXPORT_SYMBOL vmlinux 0xd4f165e5 pci_select_bars +EXPORT_SYMBOL vmlinux 0xd5049680 x86_hyper_ms_hyperv +EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data +EXPORT_SYMBOL vmlinux 0xd51255ff __lock_page +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd52c166d pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xd54c684a pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xd56133a2 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xd562f400 generic_fillattr +EXPORT_SYMBOL vmlinux 0xd56a8c52 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xd57f3f29 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xd5814ede up_read +EXPORT_SYMBOL vmlinux 0xd5819e55 blk_complete_request +EXPORT_SYMBOL vmlinux 0xd583419e prepare_to_swait +EXPORT_SYMBOL vmlinux 0xd5894106 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd5b8d8ee revert_creds +EXPORT_SYMBOL vmlinux 0xd5eb3a02 processors +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd617cb57 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xd61a3dba ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd63f135f buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd64fa3b1 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xd6583353 param_get_string +EXPORT_SYMBOL vmlinux 0xd682f752 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68d0ae0 netdev_crit +EXPORT_SYMBOL vmlinux 0xd68e1d1b _raw_read_trylock +EXPORT_SYMBOL vmlinux 0xd69c5c3b inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xd69ef97d posix_acl_alloc +EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6b64222 passthru_features_check +EXPORT_SYMBOL vmlinux 0xd6b8cb9f up_write +EXPORT_SYMBOL vmlinux 0xd6be1a4f find_vma +EXPORT_SYMBOL vmlinux 0xd6e1337d xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f77586 nf_log_register +EXPORT_SYMBOL vmlinux 0xd6fc82d1 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xd70a92a3 __genl_register_family +EXPORT_SYMBOL vmlinux 0xd70be349 max8998_update_reg +EXPORT_SYMBOL vmlinux 0xd72d8594 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xd7375942 nf_log_set +EXPORT_SYMBOL vmlinux 0xd7392a0c blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0xd73c3821 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xd75aef70 udp_poll +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd7638a14 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xd77a5ced dev_remove_pack +EXPORT_SYMBOL vmlinux 0xd77c8178 pagevec_lookup +EXPORT_SYMBOL vmlinux 0xd7a01602 bio_copy_data +EXPORT_SYMBOL vmlinux 0xd7a5f546 param_ops_short +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7e372d5 inode_init_once +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7f57255 radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xd807b6b6 inet_stream_connect +EXPORT_SYMBOL vmlinux 0xd80ed108 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xd81edb06 acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0xd83fd174 pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0xd8434f6c release_sock +EXPORT_SYMBOL vmlinux 0xd8567eb9 posix_test_lock +EXPORT_SYMBOL vmlinux 0xd8602f04 netdev_warn +EXPORT_SYMBOL vmlinux 0xd869816b vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xd877a400 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xd88ea15d nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0xd894e811 sk_common_release +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b1e4f8 fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xd8c3447a d_rehash +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8e845ed xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xd8f560dd pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xd9021a03 sk_capable +EXPORT_SYMBOL vmlinux 0xd903ca5e ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0xd91779b6 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0xd96243d2 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0xd969b2c7 amd_e400_c1e_detected +EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu +EXPORT_SYMBOL vmlinux 0xd977d4dd generic_listxattr +EXPORT_SYMBOL vmlinux 0xd97cb872 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd99b40a9 skb_clone +EXPORT_SYMBOL vmlinux 0xd9bf98d9 should_remove_suid +EXPORT_SYMBOL vmlinux 0xd9d3bcd3 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9f44bc2 rfkill_alloc +EXPORT_SYMBOL vmlinux 0xda2c6d99 pcim_enable_device +EXPORT_SYMBOL vmlinux 0xda2da3a9 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda532599 uart_resume_port +EXPORT_SYMBOL vmlinux 0xda5b76c7 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0xda74271b __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda9d58fa pci_enable_device +EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xdab02190 __posix_acl_create +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdae17ccc dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xdae82c32 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdaebb376 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xdaf0324b blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xdb00e5f0 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xdb053846 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xdb0c0e18 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0xdb1cf2ce skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xdb293598 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xdb524513 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb701072 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdbad036a jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xdbd6732b radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xdbd8095b page_waitqueue +EXPORT_SYMBOL vmlinux 0xdbdcfb18 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0xdbde6ae4 clear_inode +EXPORT_SYMBOL vmlinux 0xdbf97180 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc124006 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc270588 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xdc362526 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc458990 read_code +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc57f532 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0xdc5aa19d generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xdc5f5da8 lockref_put_return +EXPORT_SYMBOL vmlinux 0xdc670cbe sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xdc7f49aa agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xdc938dd8 bio_endio +EXPORT_SYMBOL vmlinux 0xdca0ce97 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcbb0f21 nvm_find_target_type +EXPORT_SYMBOL vmlinux 0xdce36404 __breadahead +EXPORT_SYMBOL vmlinux 0xdcedbf32 set_pages_x +EXPORT_SYMBOL vmlinux 0xdd1f6be6 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd3a6108 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xdd4a96cf simple_transaction_read +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd7a2eee inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xdd800d9c tty_port_open +EXPORT_SYMBOL vmlinux 0xdd93b4f5 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0xdd9b2cfa blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xdd9ca9f6 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xdda18ed0 tcf_hash_create +EXPORT_SYMBOL vmlinux 0xddb48f5b pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xddba259a __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xddd05425 devm_gpio_free +EXPORT_SYMBOL vmlinux 0xddd45cb4 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xdde1262e fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0xdde6a351 stop_tty +EXPORT_SYMBOL vmlinux 0xddf68289 netdev_features_change +EXPORT_SYMBOL vmlinux 0xde16dc16 tboot +EXPORT_SYMBOL vmlinux 0xde379faa adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xde594763 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xde5b9607 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0xde674da4 fb_set_var +EXPORT_SYMBOL vmlinux 0xde7bfa45 netif_rx +EXPORT_SYMBOL vmlinux 0xde834a86 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xde9cd503 is_nd_pfn +EXPORT_SYMBOL vmlinux 0xdea0b1a2 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xdeae3015 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xdec92490 tso_count_descs +EXPORT_SYMBOL vmlinux 0xdec93d05 clear_wb_congested +EXPORT_SYMBOL vmlinux 0xdeda1c34 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xdedb6611 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0xdef57300 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xdefa1cab dev_remove_offload +EXPORT_SYMBOL vmlinux 0xdf03fe2c ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xdf0b412a phy_connect +EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices +EXPORT_SYMBOL vmlinux 0xdf1427e5 idr_remove +EXPORT_SYMBOL vmlinux 0xdf281f54 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf57ae3f blk_start_queue_async +EXPORT_SYMBOL vmlinux 0xdf5b5014 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xdf5df45e param_ops_bool +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf6a5047 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xdf6ad3c4 __getblk_gfp +EXPORT_SYMBOL vmlinux 0xdf6bbfd2 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xdf6e3ed3 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xdf74434d pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xdf7d6a58 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf940eaa xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xdfa3e31e lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xdfadd0ab xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfca5118 __alloc_skb +EXPORT_SYMBOL vmlinux 0xdfd3a075 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0xdfd4ddd9 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xdfded320 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xdfe2f47d ex_handler_wrmsr_unsafe +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe00b6808 reuseport_alloc +EXPORT_SYMBOL vmlinux 0xe022afcf elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xe02fe3b7 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xe0391128 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xe04045e5 kernel_listen +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe056fd55 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0xe05b7110 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe0662f2e ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xe073c9a5 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe08ae250 dma_common_mmap +EXPORT_SYMBOL vmlinux 0xe0a2d199 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0xe0aa7165 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0bbe7ab pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xe0c657fb vfs_write +EXPORT_SYMBOL vmlinux 0xe0e884b8 vfs_unlink +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe11b400a vfs_readv +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe1544c07 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xe17538ec d_instantiate +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe17e4123 udp_sendmsg +EXPORT_SYMBOL vmlinux 0xe187ab97 mdio_device_free +EXPORT_SYMBOL vmlinux 0xe19a2363 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xe19db9ce blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xe1b16998 kill_bdev +EXPORT_SYMBOL vmlinux 0xe1b8d5fe dm_table_get_md +EXPORT_SYMBOL vmlinux 0xe1b906a2 devm_iounmap +EXPORT_SYMBOL vmlinux 0xe1bfa81a pci_assign_resource +EXPORT_SYMBOL vmlinux 0xe1eb6f0d __blk_run_queue +EXPORT_SYMBOL vmlinux 0xe1f3c530 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe21af219 get_task_io_context +EXPORT_SYMBOL vmlinux 0xe21b624f scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xe235c326 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xe2434888 skb_tx_error +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe250c32c tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xe25154e6 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0xe259ae9e _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xe2737955 kill_anon_super +EXPORT_SYMBOL vmlinux 0xe27b4e8c devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0xe27eb93c scsi_init_io +EXPORT_SYMBOL vmlinux 0xe298b23d neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xe29c1be3 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2a8f195 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2f4ac93 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0xe301e701 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xe30e69b2 inet_bind +EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0xe323b6d2 page_mapped +EXPORT_SYMBOL vmlinux 0xe3399a75 native_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xe342ee63 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xe3477666 find_lock_entry +EXPORT_SYMBOL vmlinux 0xe34a27d5 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xe34b8538 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xe34bb1a0 mmc_detect_change +EXPORT_SYMBOL vmlinux 0xe399436d inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xe39a50c0 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xe3a462bf clkdev_add +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3e8bd65 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xe3fb03d2 release_firmware +EXPORT_SYMBOL vmlinux 0xe4083d77 get_disk +EXPORT_SYMBOL vmlinux 0xe418d4da block_commit_write +EXPORT_SYMBOL vmlinux 0xe43108e2 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xe46a99d0 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe491b15a tcp_release_cb +EXPORT_SYMBOL vmlinux 0xe4add4de tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xe4b54d0b scsi_device_put +EXPORT_SYMBOL vmlinux 0xe4bd44da kobject_del +EXPORT_SYMBOL vmlinux 0xe4cc0327 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xe4d612d5 put_zone_device_page +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe4eda52c netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xe50d90de dev_uc_init +EXPORT_SYMBOL vmlinux 0xe510cc9b bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xe516951a pci_match_id +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe530d757 acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xe538f96d __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xe547fb05 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xe56fcad5 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5815f8a _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe58a691a netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xe5ad3c1a vga_switcheroo_set_dynamic_switch +EXPORT_SYMBOL vmlinux 0xe5afcd1b seq_open +EXPORT_SYMBOL vmlinux 0xe5ba91c6 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5c9a130 param_set_invbool +EXPORT_SYMBOL vmlinux 0xe5ce27b7 phy_attach +EXPORT_SYMBOL vmlinux 0xe5df879f from_kprojid +EXPORT_SYMBOL vmlinux 0xe5dff9ce tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe6102fa3 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xe6152e50 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0xe6161383 elv_rb_del +EXPORT_SYMBOL vmlinux 0xe6162877 down_killable +EXPORT_SYMBOL vmlinux 0xe6392385 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xe64d98fe rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xe65d6891 sock_no_getname +EXPORT_SYMBOL vmlinux 0xe66e8e6c sock_kmalloc +EXPORT_SYMBOL vmlinux 0xe690b8d8 udplite_table +EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe6c7a5c5 sock_no_listen +EXPORT_SYMBOL vmlinux 0xe6c7afee pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0xe6d6ca06 fscrypt_release_ctx +EXPORT_SYMBOL vmlinux 0xe6f1fc76 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xe704a16e igrab +EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xe71a2ef6 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xe7204e9f devm_ioremap +EXPORT_SYMBOL vmlinux 0xe74194a1 generic_writepages +EXPORT_SYMBOL vmlinux 0xe7444cab inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xe7499a2e __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xe757a57f inode_add_bytes +EXPORT_SYMBOL vmlinux 0xe761f8f2 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xe77ba65e sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xe77d45cb vc_resize +EXPORT_SYMBOL vmlinux 0xe795f5f2 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7ade6b8 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7e0ba37 dev_mc_init +EXPORT_SYMBOL vmlinux 0xe801ae3f devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe860edd6 agp_create_memory +EXPORT_SYMBOL vmlinux 0xe871ee21 bdi_register_owner +EXPORT_SYMBOL vmlinux 0xe872653b inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe87ec310 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0xe887b579 write_inode_now +EXPORT_SYMBOL vmlinux 0xe887faf4 xen_vcpu_id +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8d53117 mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0xe8db8dd2 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe8eeb2c2 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 +EXPORT_SYMBOL vmlinux 0xe8f4f173 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xe8f5db41 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xe8fb15a5 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xe9144fa5 udp_ioctl +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91e3168 d_make_root +EXPORT_SYMBOL vmlinux 0xe927eaa4 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0xe92acf6b get_zone_device_page +EXPORT_SYMBOL vmlinux 0xe9346a60 iov_iter_advance +EXPORT_SYMBOL vmlinux 0xe93ff181 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95af65e fb_blank +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe997667b wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xe9a03ece dst_init +EXPORT_SYMBOL vmlinux 0xe9ae12d0 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xe9c12b29 d_obtain_root +EXPORT_SYMBOL vmlinux 0xe9d18093 sock_release +EXPORT_SYMBOL vmlinux 0xe9d64908 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xe9dcdddd posix_lock_file +EXPORT_SYMBOL vmlinux 0xe9f0929b jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea20a136 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xea2ec9da gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xea3f725d _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xea555c09 md_flush_request +EXPORT_SYMBOL vmlinux 0xea62a67a jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xea67a0e9 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xea95400b dquot_scan_active +EXPORT_SYMBOL vmlinux 0xeab12d78 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xeab39f2f mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xeabc98c8 devm_ioport_map +EXPORT_SYMBOL vmlinux 0xeac45e60 blkdev_fsync +EXPORT_SYMBOL vmlinux 0xeac73847 irq_regs +EXPORT_SYMBOL vmlinux 0xeada5fd8 elevator_exit +EXPORT_SYMBOL vmlinux 0xeaddfed2 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeaf31376 alloc_disk_node +EXPORT_SYMBOL vmlinux 0xeb240c22 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb4da5c3 dquot_alloc +EXPORT_SYMBOL vmlinux 0xeb53b96b nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xeba0657d generic_end_io_acct +EXPORT_SYMBOL vmlinux 0xeba1b958 mmc_can_discard +EXPORT_SYMBOL vmlinux 0xeba7db3f pcim_pin_device +EXPORT_SYMBOL vmlinux 0xebd03d29 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0xec0d0288 zpool_register_driver +EXPORT_SYMBOL vmlinux 0xec18b5be md_done_sync +EXPORT_SYMBOL vmlinux 0xec288f6f security_path_rename +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec51969b mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0xec60a2b6 scsi_register_interface +EXPORT_SYMBOL vmlinux 0xec834ca2 alloc_file +EXPORT_SYMBOL vmlinux 0xec838a00 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xeca0f12f pci_request_regions +EXPORT_SYMBOL vmlinux 0xeca2919d skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy +EXPORT_SYMBOL vmlinux 0xecb824bb jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xece348af crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecf921cc vme_dma_request +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed132595 netif_napi_add +EXPORT_SYMBOL vmlinux 0xed162cac register_quota_format +EXPORT_SYMBOL vmlinux 0xed1644e7 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xed203757 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xed23c0a0 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xed35eb4d con_copy_unimap +EXPORT_SYMBOL vmlinux 0xed3ad821 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xed3e3cd7 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xed40a55b mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0xed49f077 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xed4ed37a simple_dir_operations +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed599c67 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xed6586e0 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xed79c286 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0xed7b7254 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xed910d29 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedd0cd89 radix_tree_delete +EXPORT_SYMBOL vmlinux 0xeddd345e skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xee0bbe2d kill_pid +EXPORT_SYMBOL vmlinux 0xee0c1ba0 clkdev_hw_alloc +EXPORT_SYMBOL vmlinux 0xee2bcfb7 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee35923d tty_set_operations +EXPORT_SYMBOL vmlinux 0xee42d3ad __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xee45bde1 netdev_emerg +EXPORT_SYMBOL vmlinux 0xee47e942 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xee4f2d84 block_truncate_page +EXPORT_SYMBOL vmlinux 0xee7084a9 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0xee72b1be in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee7f374e blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xee8701cf __block_write_full_page +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee978b1c elv_register_queue +EXPORT_SYMBOL vmlinux 0xee9f5470 scsi_add_device +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeec04c53 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xeec2c7cf ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0xeec3329c agp_free_memory +EXPORT_SYMBOL vmlinux 0xeec77cb0 blk_sync_queue +EXPORT_SYMBOL vmlinux 0xeecdc6d1 sock_init_data +EXPORT_SYMBOL vmlinux 0xeedebc59 do_splice_direct +EXPORT_SYMBOL vmlinux 0xeedf57c2 kernel_connect +EXPORT_SYMBOL vmlinux 0xeeea15ce simple_pin_fs +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeef427cb lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xeefe2ab8 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xef13f0d8 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xef30098c x86_hyper +EXPORT_SYMBOL vmlinux 0xef378fa9 fscrypt_get_encryption_info +EXPORT_SYMBOL vmlinux 0xef389a19 inet6_offloads +EXPORT_SYMBOL vmlinux 0xef3f06d8 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xef3f77e3 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0xef68a960 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xef6ee5aa udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xef6f90fa pv_mmu_ops +EXPORT_SYMBOL vmlinux 0xef70ac70 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xef92415b clocksource_unregister +EXPORT_SYMBOL vmlinux 0xef94316d pneigh_lookup +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xefa8e2c8 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xefc4f04c dev_trans_start +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefda8d99 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefe099c3 acpi_get_event_status +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf00c53f0 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf01b8568 forget_cached_acl +EXPORT_SYMBOL vmlinux 0xf0234b76 simple_fill_super +EXPORT_SYMBOL vmlinux 0xf026ba18 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xf036f4a0 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xf03f2b41 netif_skb_features +EXPORT_SYMBOL vmlinux 0xf056bbb3 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf062576b ucs2_utf8size +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0xf0686358 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xf06a26b0 input_register_device +EXPORT_SYMBOL vmlinux 0xf0822947 inet6_getname +EXPORT_SYMBOL vmlinux 0xf08242c2 finish_wait +EXPORT_SYMBOL vmlinux 0xf08bb827 pipe_unlock +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0cbb94c ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xf0e0c590 build_skb +EXPORT_SYMBOL vmlinux 0xf0e31e7c pnp_start_dev +EXPORT_SYMBOL vmlinux 0xf0eaffce _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xf0eba9ad blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0f4ab46 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xf0f5a468 path_put +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf10d20df __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit +EXPORT_SYMBOL vmlinux 0xf116d4b5 copy_in_user +EXPORT_SYMBOL vmlinux 0xf1336813 netlink_net_capable +EXPORT_SYMBOL vmlinux 0xf1398e2e lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xf13a4060 scsi_unregister +EXPORT_SYMBOL vmlinux 0xf13e87b5 mpage_readpage +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf1512177 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xf15473e4 __nd_driver_register +EXPORT_SYMBOL vmlinux 0xf15ae8ef dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xf188a561 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1973019 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xf19ac988 generic_write_checks +EXPORT_SYMBOL vmlinux 0xf1d4d334 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf21dfa6a napi_complete_done +EXPORT_SYMBOL vmlinux 0xf225daf3 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xf2280da0 d_genocide +EXPORT_SYMBOL vmlinux 0xf22cde29 __inet_hash +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf251fa46 skb_dequeue +EXPORT_SYMBOL vmlinux 0xf2615491 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xf2713250 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xf2833a63 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xf2863470 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr +EXPORT_SYMBOL vmlinux 0xf2936818 write_one_page +EXPORT_SYMBOL vmlinux 0xf2979bb2 sk_reset_timer +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf2b89fa8 dcache_readdir +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2d090f1 unregister_cdrom +EXPORT_SYMBOL vmlinux 0xf2e0a30e file_remove_privs +EXPORT_SYMBOL vmlinux 0xf2fb1f3c touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf31989dc xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0xf32077fa ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xf331fa46 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf345840a unregister_md_personality +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf348f2e0 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xf349b760 fence_wait_timeout +EXPORT_SYMBOL vmlinux 0xf34a47a0 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf36b98b0 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xf37b1293 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xf3986b06 acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0xf39b92b6 mmc_request_done +EXPORT_SYMBOL vmlinux 0xf3a053be skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xf3a34a3a fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0xf3b7f565 lookup_one_len +EXPORT_SYMBOL vmlinux 0xf3bfe4bf scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xf3c66436 nla_put_64bit +EXPORT_SYMBOL vmlinux 0xf3d9994c I_BDEV +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3f1ba4f pcibios_align_resource +EXPORT_SYMBOL vmlinux 0xf40353ca new_inode +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf447f883 update_region +EXPORT_SYMBOL vmlinux 0xf450788d ping_prot +EXPORT_SYMBOL vmlinux 0xf463137a __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0xf46cdd01 dquot_enable +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4768125 netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0xf4828e6d elv_rb_find +EXPORT_SYMBOL vmlinux 0xf4869359 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xf487e7af vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xf487ec74 dev_driver_string +EXPORT_SYMBOL vmlinux 0xf48a4cae dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xf49192d3 blk_register_region +EXPORT_SYMBOL vmlinux 0xf4934533 netdev_info +EXPORT_SYMBOL vmlinux 0xf4a1738f ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4bf1017 tty_unthrottle +EXPORT_SYMBOL vmlinux 0xf4e51dc2 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4fded96 ___ratelimit +EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xf51bf88b nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf536d22e acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf5458b88 qdisc_list_del +EXPORT_SYMBOL vmlinux 0xf5966675 irq_to_desc +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5a1a046 init_net +EXPORT_SYMBOL vmlinux 0xf5b10e67 acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5ed7eaa devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xf5f7fe7c ppp_input +EXPORT_SYMBOL vmlinux 0xf6123fe3 simple_setattr +EXPORT_SYMBOL vmlinux 0xf61ebebc scsi_print_sense +EXPORT_SYMBOL vmlinux 0xf636643b jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xf64602fe devm_memunmap +EXPORT_SYMBOL vmlinux 0xf66e5997 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf67d261e generic_make_request +EXPORT_SYMBOL vmlinux 0xf67d5b25 qdisc_destroy +EXPORT_SYMBOL vmlinux 0xf67f1cb6 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf690af6b remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xf693a145 irq_stat +EXPORT_SYMBOL vmlinux 0xf693fbb8 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0xf6b11813 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0xf6c0a424 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0xf6c4fd3f alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xf6d8d765 single_open +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf706d5f9 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xf753741c pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf777022c __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xf7879a58 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xf7929565 mmc_get_card +EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0xf7b07bae pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xf7c66d74 vfs_llseek +EXPORT_SYMBOL vmlinux 0xf7cdc59e inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xf7ef5088 filp_open +EXPORT_SYMBOL vmlinux 0xf7f16b88 pci_set_vpd_size +EXPORT_SYMBOL vmlinux 0xf81103ea radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf81d6142 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82b6c78 get_tz_trend +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf831ab68 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xf84d603e bio_put +EXPORT_SYMBOL vmlinux 0xf8578561 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xf8609370 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header +EXPORT_SYMBOL vmlinux 0xf8a30398 i2c_release_client +EXPORT_SYMBOL vmlinux 0xf8b211b8 seq_write +EXPORT_SYMBOL vmlinux 0xf8b7c07c inet_sendpage +EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0xf8d45a88 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xf8d4f1d9 rio_query_mport +EXPORT_SYMBOL vmlinux 0xf8de093d netdev_all_lower_get_next_rcu +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf8fd7be4 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0xf90a3dc1 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0xf919aad3 sock_create_kern +EXPORT_SYMBOL vmlinux 0xf93f6c08 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xf963163f blk_delay_queue +EXPORT_SYMBOL vmlinux 0xf985f436 vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0xf99ff02e acpi_os_get_line +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9ad5661 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0xf9bfa8ec free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9e54aec __break_lease +EXPORT_SYMBOL vmlinux 0xf9faaf48 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xfa1a0cd9 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xfa1fd513 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xfa23328f skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xfa2c6c0c inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xfa431f12 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xfa516773 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5bcf35 mod_timer +EXPORT_SYMBOL vmlinux 0xfa64074d pskb_expand_head +EXPORT_SYMBOL vmlinux 0xfa6d3962 vc_cons +EXPORT_SYMBOL vmlinux 0xfa820de1 get_cached_acl +EXPORT_SYMBOL vmlinux 0xfa86a28b vme_bus_num +EXPORT_SYMBOL vmlinux 0xfa8d069a serio_unregister_port +EXPORT_SYMBOL vmlinux 0xfa95136b netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xfab4776a alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xfabc723b param_set_bool +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfadb64c1 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xfadcd3a0 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xfaedcc80 get_acl +EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent +EXPORT_SYMBOL vmlinux 0xfb0456ee pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xfb21e043 vm_mmap +EXPORT_SYMBOL vmlinux 0xfb3d7380 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xfb4cfbac f_setown +EXPORT_SYMBOL vmlinux 0xfb4e5b58 mount_single +EXPORT_SYMBOL vmlinux 0xfb5023e3 write_cache_pages +EXPORT_SYMBOL vmlinux 0xfb527c5f scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xfb578fc5 memset +EXPORT_SYMBOL vmlinux 0xfb5e1afd gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xfb64f0d4 skb_seq_read +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb746b07 alloc_fcdev +EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfb999935 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbb66587 md_register_thread +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbe6c3db pci_save_state +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc0d297c d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xfc1c5ff1 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xfc269950 to_nd_pfn +EXPORT_SYMBOL vmlinux 0xfc2aa5f0 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3e65aa xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0xfc5876ed scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xfc71179b truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xfc734327 queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0xfc83c44f nd_integrity_init +EXPORT_SYMBOL vmlinux 0xfc872fd1 get_ibs_caps +EXPORT_SYMBOL vmlinux 0xfc9eafbf filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcc3c3dd compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0xfcd842c1 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfce6add6 dma_supported +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf5ec7b bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xfcf94cb5 nvm_submit_io +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd076bfd eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xfd537b11 register_filesystem +EXPORT_SYMBOL vmlinux 0xfd787d1c tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xfd7c07ae call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xfd843e30 simple_rmdir +EXPORT_SYMBOL vmlinux 0xfd880a44 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfd9c6542 pci_get_slot +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdd5af76 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xfdec9ed1 pci_release_regions +EXPORT_SYMBOL vmlinux 0xfdee43a8 arp_xmit +EXPORT_SYMBOL vmlinux 0xfdf5fdea tso_build_hdr +EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfdfd6c90 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe047ce6 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0xfe13c522 acpi_install_gpe_raw_handler +EXPORT_SYMBOL vmlinux 0xfe23b854 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids +EXPORT_SYMBOL vmlinux 0xfe2dd1d2 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xfe5d30e9 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe72be4f kmem_cache_size +EXPORT_SYMBOL vmlinux 0xfe73c0ab dcache_dir_close +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe8030b3 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xfe80cae1 uuid_be_to_bin +EXPORT_SYMBOL vmlinux 0xfe890d2a arp_send +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe9869cb ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0xfe9ac652 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef2c78f idr_get_next +EXPORT_SYMBOL vmlinux 0xfefc2c38 __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xff07dcbb key_alloc +EXPORT_SYMBOL vmlinux 0xff141813 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff211d47 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xff425281 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xff603619 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xff63508d genphy_suspend +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff73d7b7 audit_log +EXPORT_SYMBOL vmlinux 0xff844dc0 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff996e7c page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffa355d1 __register_nmi_handler +EXPORT_SYMBOL vmlinux 0xffa5f0fe sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xffae2ec5 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xffcf204a ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xffd327aa __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffe4664a inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0xffeff964 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xfffbdf22 block_is_partially_uptodate +EXPORT_SYMBOL_GPL arch/x86/crypto/aes-x86_64 0x7060bf0a crypto_aes_encrypt_x86 +EXPORT_SYMBOL_GPL arch/x86/crypto/aes-x86_64 0xe409b491 crypto_aes_decrypt_x86 +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x13a65ecf camellia_ecb_enc_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x17bf48dc camellia_xts_dec_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x1a08ded1 camellia_xts_enc +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x47129015 camellia_xts_enc_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x7d54edc2 camellia_cbc_dec_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x7e87ef55 camellia_ecb_dec_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x8f185793 camellia_xts_dec +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x9e8086dc camellia_ctr_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x16061d06 __camellia_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x1636abdf __camellia_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x168e1d2b xts_camellia_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x1b32e5b8 lrw_camellia_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x1da0e256 camellia_crypt_ctr +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x31bbe42b camellia_crypt_ctr_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x50dc55b6 __camellia_enc_blk_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x930f687f camellia_decrypt_cbc_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xa41a5ad3 camellia_dec_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xd1dd0f4b lrw_camellia_exit_tfm +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xf4521fda camellia_dec_blk_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x32b5d066 glue_ecb_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x8f02ac4d glue_xts_crypt_128bit_one +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xad3287ec glue_xts_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xd55c2fb0 glue_cbc_encrypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xe65d50ea glue_cbc_decrypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xf171a9ba glue_ctr_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x016a957f serpent_xts_enc_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x0c5a8af6 serpent_xts_dec_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x0ff3c26d serpent_xts_dec +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x130e9cdb xts_serpent_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x606a8162 serpent_cbc_dec_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x796343e2 lrw_serpent_exit_tfm +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x79ff0b7a serpent_ecb_dec_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x9ae34b2f serpent_xts_enc +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x9e018632 __serpent_crypt_ctr +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x9f99663c serpent_ctr_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xa84ea33d serpent_ecb_enc_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xc29c3151 lrw_serpent_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x19dc7881 twofish_dec_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x5e752773 twofish_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x168e403e lrw_twofish_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x1fd77fb1 twofish_dec_blk_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x4359de58 lrw_twofish_exit_tfm +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x61694b97 twofish_dec_blk_cbc_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x8d75ab44 twofish_enc_blk_ctr +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x8e856922 twofish_enc_blk_ctr_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xc71cedb4 xts_twofish_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xf2e80e9c __twofish_enc_blk_3way +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00afaffb kvm_default_tsc_scaling_ratio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00c19cc1 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x025b3c7d __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0410a6cc reprogram_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0471e450 kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08cb4ddc kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0bf086dc kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d8a5b50 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0efa4194 kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x103b509c kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x115c25be kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1164a014 x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1272b16e kvm_vector_hashing_enabled +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x12da20a0 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13748b5f __tracepoint_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15beb11f kvm_init_shadow_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a847ca7 kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1aa0541c __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1c3b19ad kvm_fast_pio_out +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ceeaf9d gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2008d8a2 kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x211d9aad kvm_mmu_sync_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23547c07 kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2598f1cf __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x272dcc59 kvm_lapic_reg_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28ab475c kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x29283119 gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ab4fdf6 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c84b973 gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d4be37d kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d515fe5 kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317f9e6b kvm_enable_efer_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x34b4a559 kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x34d01a87 kvm_mce_cap_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x35167917 kvm_set_xcr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x355a0d7f kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x369051ca kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36c78f47 kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x37156be1 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38def4ee kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39991401 kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39ee04b7 kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a1d6225 kvm_lapic_reg_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a578ab6 kvm_mmu_slot_set_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3bdba514 kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d0a1203 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f410713 handle_mmio_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f8f9119 kvm_no_apic_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43314194 kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x433afcc0 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4391ec38 kvm_scale_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x474edc47 reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48cdf94b kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49085dc0 kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a05702b kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a359606 kvm_mmu_unprotect_page_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c079c9a kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4cdeeb79 kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4d4c2636 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4df348fc kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e630d25 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ef2b7de __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4efc0326 kvm_mmu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x511e2181 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54c8d486 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x57699fe9 kvm_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x57de9401 kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c09e908 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c4fc9ce gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d92fcef kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63e22500 kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64020e10 kvm_set_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6551c23c kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x669dce87 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66abf603 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68da08de mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6934b57d kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x693befa0 __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ac32275 kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d5324e2 kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6db85d39 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ef2dfe0 kvm_lapic_switch_to_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f98435b __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x702dd022 kvm_lapic_hv_timer_in_use +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72c20542 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74278155 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x76649161 kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x77712861 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x793b886b __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a3684a0 __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a75a2a9 kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7bf6da91 kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7d239b25 x86_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7eba939c __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831327da kvm_max_guest_tsc_khz +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x841bd3b5 kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x84b05423 __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x85007b46 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x87640bbd kvm_vcpu_reload_apic_access_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8867731c kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x89437973 vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a3526c3 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8aafc462 kvm_after_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ab2baf7 kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8bfc819e kvm_apic_match_dest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ca35ba8 kvm_write_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f2e335e kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x913f878b kvm_before_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x930a2801 kvm_mmu_slot_leaf_clear_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96dbe382 kvm_mpx_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x986c948b kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x988c83e1 reset_shadow_zero_bits_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x990de97f __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a216313 kvm_define_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a6bf67c kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9b43f936 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9bdc79b8 kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9dc006fa reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0e07e59 kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa18bb283 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa40792d3 __tracepoint_kvm_ple_window +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa41c8383 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa5197487 kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6240cdd kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa652769f kvm_mmu_slot_largepage_remove_write_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7d9c68f kvm_mmu_set_mask_ptes +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa83e8952 kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa87a86b7 __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8aa8aab kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaba63a29 kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf4b4b0a kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1593ff5 kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb36cc0aa kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb38c1dd9 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb41519d6 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb456c403 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb576ee71 kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb68827fc kvm_get_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb762b4fa kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb7b746f8 kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb900e8ce kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba079821 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba5af19b cpuid_query_maxphyaddr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9ed435 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb62d51d __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb8f02ab kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbc395186 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbcf1ed4a kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbfe7c6d5 kvm_mmu_unload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc0b85b7d __tracepoint_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1094582 kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4e14ad8 __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc55b518e kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc56d75ce __kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc599bc18 kvm_max_tsc_scaling_ratio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca25e63e kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca2c706a kvm_mmu_clear_dirty_pt_masked +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcb8e420f kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcfa8a86a kvm_valid_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd1569caa kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd178359e kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd2d0c03b __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd463165d kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd4734915 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd4e69767 kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd5f16041 kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6bddd87 __tracepoint_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd6dae0f kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd817fbf load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdecf559c kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe16c8bf0 kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1c6ab13 kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe45e555f kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe482a9a6 kvm_lapic_expired_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe709eaa1 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe826e8c7 kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe834f9ca kvm_mmu_unprotect_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8a74a3a kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea5ef1f0 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf28d940d kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2af7943 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2f286c4 kvm_tsc_scaling_ratio_frac_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf351d5ca kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf3b17066 kvm_lapic_switch_to_sw_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf534e350 vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf5c50e85 kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf756ba8f kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8523930 kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb6e49d6 __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfbd5ce98 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc69993a kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd8e016b kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfdf1a39f gfn_to_hva +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x20a11e70 ablk_set_key +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x487201f2 ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x5651c6f8 ablk_decrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x65b92225 __ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xa69ee553 ablk_init +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xad4142d6 ablk_exit +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xbbd53896 ablk_init_common +EXPORT_SYMBOL_GPL crypto/af_alg 0x11badcb8 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x12a7e2fd af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x3e2a3e2d af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x5c104a2d af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x625bf0be af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x83eb6bac af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x8a98a213 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x8cd926af af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xba06c5ff af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xc4c6757c af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xc71dedbc af_alg_accept +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x06cd8dc0 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xb90f2e6e async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xe9993e76 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xbe64b29a async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xdce0b5d8 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x11922f6f async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x2cdd87a7 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x52a1eb2e async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf0bc6cdc async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x301dee37 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x31b19c29 async_xor +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xbfe6dc89 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xce81f505 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x19106e60 cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 +EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x7c85e65a crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xecd726cf crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x027e5f87 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x14cb5096 cryptd_ablkcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x30fe12e7 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x390ddbad cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x3ed30835 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x68efc8ae cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x832ee03b cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x8adeabb0 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x9056d644 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xa95fed0c cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xaf01f3ce cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xaff27722 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xe562ca94 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey +EXPORT_SYMBOL_GPL crypto/dh_generic 0x9edeb49b crypto_dh_decode_key +EXPORT_SYMBOL_GPL crypto/dh_generic 0xa9c31fb3 crypto_dh_key_len +EXPORT_SYMBOL_GPL crypto/dh_generic 0xb25efd9f crypto_dh_encode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x597307c5 crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/lrw 0x31d83d72 lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x5a785812 mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8f740d4c mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0xd8f75af7 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xf742e76b mcryptd_ahash_desc +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x240ce6b8 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x32472c50 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xc5acc3b1 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xfe555823 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x60fffc2e serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/twofish_common 0x43a137c0 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x51e6802b acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xd16e56bd acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x1c8984c7 acpi_smbus_unregister_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x87bd07bd acpi_smbus_register_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xb9a141b0 acpi_smbus_read +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xe1372311 acpi_smbus_write +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1c6f5c7d ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x25376031 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2a12416a ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x33190fe5 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x372e6d46 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5cd9062d ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6fe09d9c ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x73522e78 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x86c1bfc0 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x970687af ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa577eb29 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa6b9c424 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaad7c910 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc385f846 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc96497e8 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd0ce9a44 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd5f41b52 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd731659b ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd88dc6ba ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xeabcad8b ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xeae72485 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xef60aa9d ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf309b295 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1438bbfd ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x24de12c4 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2bdc704b ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x67a3b307 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7fcd93b5 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x82438da8 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa818fb02 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc20b0217 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc2403a6a ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd0791166 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd59476d2 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xdf53b571 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe6f9994e ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x241ea014 __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/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-spmi 0x1979e930 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x277636bb __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xdee8afd1 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xf0bc7513 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0f95c7b1 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1cb13ac1 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2e9d6395 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3f7d1040 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4be03e69 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4be04e32 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4cf16427 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x53053bde bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5f2c4e9b bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7bcf8ce6 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7d5f0f01 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x84c25b64 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9e346046 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb628abb7 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb7fec67d bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc1e329ca bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc9db668c __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcdca4cd9 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd1655ab8 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd1aba577 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdb1464d8 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdb7f39e6 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xde422018 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfb8a1fab bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0de07103 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3808e7e2 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x39368406 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x66918355 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb73c7510 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd4390a7f btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0f47bc14 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x22299ee1 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2d92cfaf btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x308ac73c btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x38192d9e btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4c46b4d4 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7fff3746 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x89e4578a btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa9cf1334 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb612830f btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdbcb0020 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xef1b6e67 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf035c550 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf32b2d46 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0066cedb btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0f0afa51 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1aec0387 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1ccd7709 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2eab5e0e btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x559ea83e btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x95ac15a1 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9c96b839 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa8f7b643 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc6219408 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdc089f13 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x03f7a368 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x71d262d7 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x4c205051 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xbab7d544 h4_recv_buf +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 0x0a793d0c ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3a1a3979 ccp_version +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x038ac85d adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x110b58de adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x155c881f adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1824ed6d adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x190fb4f4 adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1e04d239 adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x21339f74 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x216608d8 adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x27e4268f adf_iov_putmsg +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x281e6757 adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3b864498 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x450ca986 adf_vf2pf_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x55352ae1 adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6c37dbf6 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6c9bed84 adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x71b0b201 adf_vf2pf_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7696a9aa adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x77b0ba74 adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7bade68a adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7c7762e1 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x819defc0 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x825a493a adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8ecd68e8 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9c7f4ed6 adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa32e8cc8 adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa613ab5a adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xad1048ff qat_crypto_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xaeef725c adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb1878bda adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb6fa5ad6 adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb7bb4176 adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbe9d9acb adf_dev_started +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 0xd3db8ff1 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd7a5d069 adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd8fe8666 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe43e06af adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe539bce3 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xee6bbc48 adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf4fa5c65 adf_disable_aer +EXPORT_SYMBOL_GPL drivers/dax/dax 0x17bce14a devm_create_dax_dev +EXPORT_SYMBOL_GPL drivers/dax/dax 0x424c4f35 alloc_dax_region +EXPORT_SYMBOL_GPL drivers/dax/dax 0x85fc80e9 dax_region_put +EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x118293d9 dca3_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x1876d928 dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x31a2c8df dca_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x4805b532 register_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x52c9b73f unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x60480dce alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xac34ecec dca_register_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0xbbf9d68c dca_add_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0xe8c58ca2 free_dca_provider +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x03c5b091 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0c4f3397 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1a2d2973 dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x3c480066 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9b54c65c dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x104132a6 hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x16e3506f hsu_dma_do_irq +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xa4578241 hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xb16fa9d8 hsu_dma_get_status +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x22121780 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xf5201664 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x22b5e35c vchan_tx_desc_free +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x99ad0c2d vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xd0538d7c vchan_init +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xd3e83718 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xeb446077 vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0x0e26f972 amd64_get_dram_hole_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x043cb3ab edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0a259248 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0a8a531f edac_stop_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x32fa165d edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x373bc2cf edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3c2b6a97 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x427ac165 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x481ffbfe find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x54317117 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5c4e73f3 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x730fe26a edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7bf978bb edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7d6ba02a edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x83dcd16f edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa2930864 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa3695636 edac_queue_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa50dfcb0 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa92325ff edac_mod_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb5d3ee3f edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb858c9d9 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd976d13d edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdd81192c edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe414a8d0 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe443d7af edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xef45c0bc edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfced92d7 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x14878009 amd_report_gart_errors +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x1d34e996 pp_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xb30b7e56 amd_decode_mce +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xc389e498 amd_register_ecc_decoder +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xd062ca76 amd_unregister_ecc_decoder +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x9bd94b27 get_scpi_ops +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1413a4dc fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3b8d9e4d fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x458df068 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x516252e2 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5aa8111f of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa23b4411 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x3fcda8cb bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xb415e99d __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xf8a75498 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2a0885a1 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3f2f9091 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb8c822af drm_class_device_register +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 0xe7237b0b i915_gpu_turbo_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x1079eb40 ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x5d26790f ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xc6b6940c ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0c7a7bde hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0cb15428 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1e38f330 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x24077a3d hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x301ebd38 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x39ed4a6a hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3be317be hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3f9905e8 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x41ebc833 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x44509883 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4c2e949c hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x62efb860 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x654216e8 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x68d1eb57 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x695e10b7 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6a985120 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6fe54267 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x777f5d49 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8c8ca612 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8f3ee1eb hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9033fafc __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x928c9b13 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x96573a05 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9813991a __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9cb2e21c hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9eadf7b3 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa4c67f88 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb0f721e4 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb20fb1f6 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb2754ab5 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xba999491 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc249080a hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd7593cea hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe529ba48 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe63ffec2 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf4a16997 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x5113d451 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0a5d7ca7 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x295d6558 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6ce9731c roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x80d15e3a roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xab96242e roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xab9c9303 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x08444376 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0a2a2a33 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0c77cee0 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2abdc14e hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x414ee492 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x669cba3a sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xba1a5c77 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe280182d sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe59e5a78 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x31f08cf0 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1d2dff1a hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1dc8a99a hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x23cfcf53 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x24681f8c hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3269ab92 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x38dc2688 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4d9ea690 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5822a0d2 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x63d43060 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6def839a hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x79a296d2 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xadfa706a hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb648c619 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf0326792 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf55ce428 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf9f2b97d hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfb0082e2 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x028bba33 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x07185dbb vmbus_sendpacket_multipagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x100d031b vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x101a27fc vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1865c293 vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1b6590d8 vmbus_get_outgoing_channel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1ed19866 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x22e0e059 vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x25a0a3d2 vmbus_cpu_number_to_vp_number +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2c2253c9 vmbus_sendpacket_pagebuffer_ctl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x35665180 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3e6c6bbf vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x40060c23 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x52f2f004 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x53274271 vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x687d66b6 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8a911516 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbf12075f vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc81d2bd8 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdb2f6047 vmbus_free_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdf1b30a5 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeadb5fcc vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfe03ad95 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x3ca8de36 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xd66524aa adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xd8fbe157 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0b817d08 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0bffa6e2 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x366efa9d pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4edcbd26 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x60795904 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x64634634 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7a33f5de pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8d1572a2 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9167efe7 pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc150713a pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xead13ada pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xecfcd0ed pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xed5b6853 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf171434f pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf50f3e6a pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x20d764dd intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x95e6b43b intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x97540db2 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa940b4d7 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc123e25f intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc74a41b3 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc7fce67c intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x030457bb stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x08b11254 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5362c626 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xac8fa80b stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf0bb92b5 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x1b0e38de i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x395161ca i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x7dc2b5d8 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xfae5d8a6 i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xfb6a9959 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x4dd8c84d nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x079b6765 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7cec4b83 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x91a69f59 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xad4d66c5 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x2f11abf7 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x626a2d0f i2c_setup_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x80608b98 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xea68cbdb i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x58d0003a bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x6064dc17 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x87044455 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xd4ea49ab bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x5a77096c mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x678983bf mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xbb4832e0 mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x104f2d8d ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4d7c61f3 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x645dd6f4 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7a974487 ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x92a047e8 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xbcb0d4a8 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd1014f2e ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe523b153 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf32cd808 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion +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 0x8ba083ee iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x98207025 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xcd2d951f ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xfcca725e ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x6b491fb3 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xa74e21ff bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xc8ed89cb bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x48373d20 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x59f65301 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8067ac9b adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9c428489 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa8cef054 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xae2c4577 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb91db35b adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc3dcadc1 adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xdf06d663 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf0f4ba4c adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf1c73511 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf37e0821 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x393e5f10 bmi160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x428b908d bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x261effdf inv_mpu6050_set_power_itg +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x4324588e inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x4c3f545d inv_mpu_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x5da52ccc inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0140052c devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x01beae52 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0f665cfc iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x144d1c47 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1ebbb107 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20a4d616 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2350287d devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2bb06f21 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x33552645 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3e840e3b iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x463fd52f iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x46708524 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4a209c9b iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4d06d839 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x513d60a4 devm_iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5db8714f iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6203f1ef devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6477e48c iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6b2eb46d iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x74557a94 devm_iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7736cfe1 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x812db718 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x816ad2dc iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x843c215c iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa554c0ff iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb3c9a964 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb5d5d3cb devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb71d00e4 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xba8f77ef iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc494ed64 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcf0e11c2 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcfb40736 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdb0309dd iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe682aff5 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeabd92dd iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xedb0a81d iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf1148a61 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf684a018 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0xe90181e9 mpl115_probe +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/sw/rxe/rdma_rxe 0x5ea75bdd rxe_dev_put +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x1f2de937 input_ff_create_memless +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/misc/adxl34x 0xeb38d1cc adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0520b439 rmi_read_register_desc +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x13302e5e rmi_get_register_desc_item +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1fcd0b6f rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x249f8f21 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x474bfae9 rmi_process_interrupt_requests +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x52d78c5a rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5a8de015 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5c550dfa rmi_register_desc_calc_size +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x69b3fed3 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7059825a rmi_register_desc_calc_reg_offset +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x81d5378e rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8ee640d7 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa6fefe3b rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb6940242 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xbde63d73 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xbecfe75d rmi_read_pdt_entry +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd313516f rmi_2d_sensor_set_input_params +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd485638d rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf6194f4a rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x465da99e cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x872b46c8 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xe4353b00 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x6038cc8f cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xd5bed7f3 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x70017ca2 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x7128545b cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x4d7b2648 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x7349e251 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xddcaad37 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xf66147b2 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x192ee8a8 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x30411fac wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x38bfe125 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4fa18c11 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x76b99747 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x830b8c8f wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9eb591d5 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb469e043 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbb91f67a wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdd6ef227 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe8cc98eb wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xef4806e2 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x38a4d48a ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x56c6722d ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5de494d8 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x88ba3876 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbc7a0aec ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xdec12c03 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xed38127a ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf247e9db ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf5fc62d0 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0128a6a3 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x013ce59a gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0a76f633 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x133c0b64 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1e2e6d72 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x24acc366 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6dbeedcd gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x73d1fadc gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x91797744 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa543a6b3 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa625d062 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa79b4238 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa8d79db2 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc0a5b190 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd0727249 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd3b7e9d1 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe121ec29 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/leds/dell-led 0x86fd1ffb dell_app_wmi_led_set +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x02e97697 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x404c1145 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9173d6b4 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb817177f led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc66d067d led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd03f0bec led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0b9d0098 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2d9217d8 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x52a6dcae lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6741e43d lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9be8ebd8 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9d2c43c4 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa2b6bf91 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa34457a0 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa4b901de lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xada528c7 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcd963534 lp55xx_init_device +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/mcb/mcb 0x07efd9ee mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x1e2b26c3 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x1e997d6d mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2ada56bb mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x48d7a2b1 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x6641b5d5 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x6987818b mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x71475177 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x97dbde15 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa53cf950 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb667298e mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xdb6990b4 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xebf36699 mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf0d38f9d mcb_get_irq +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x07b0caf6 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1bcb69cf __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x290dee5b __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x29bfa0b4 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2e9a0300 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x350f0b52 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3eabc650 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x40978466 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4797ee5e __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4c5dce08 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51c85a21 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5930cf1d __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cb40ec5 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6d024748 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6f4bb251 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7a8a162a __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7c234702 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x898239dd __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x940edb75 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x94287194 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9dcb7c83 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9fb22838 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa4f27010 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7c2e5d1 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbb4a3f4a __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd4abe767 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9dc9cfa __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda147480 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe16ef8f4 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe43c667b __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf16c2227 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x02d01cfd dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x218e1b82 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2de1e405 dm_cell_release_no_holder +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 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x77d0784b dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x87dd1ae4 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8d9c1b1f dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8e5defc6 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb3019980 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 0xb7b20c76 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +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 0x9310ba06 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa448e19f dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +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 0xfa70420c dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x1118acbb dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x6dc6ecf8 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x80c34a52 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x913de270 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x949722c5 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9f7a0894 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xaf3f8732 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x2b50bbeb dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xa01a3aa0 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 0x07f5bb48 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x2a07075e dm_rh_delay +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 0x4430764e dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4ea97b62 dm_rh_dirty_log +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 0x819a94ae dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x94808c73 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state +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 0xd8f67159 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key +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 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x17c36f29 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +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 0x32b5f546 dm_array_empty +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 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42dbdfc3 dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49b35849 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x55b4bd4d dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk +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 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit +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 0x827a42f4 dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify +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 0x966a8838 dm_btree_lookup +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 0x9f624559 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xafeda29f dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd134ee10 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd29923fb dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf375d009 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf5455120 dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0x00096a0f cec_set_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0x4961a844 cec_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0xbff6533d cec_phys_addr_validate +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0xd2f2eac1 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5bf75863 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x75ceeb22 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x79e2ba42 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9296303b saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x971fab42 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb61134a0 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb7e3d5d3 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc96e7f53 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xde848d69 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf921b65d saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1236870a saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x480e49ab saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5eff7fb4 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x6d4d3cd9 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7b372106 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa3b5a72f saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb9c88a38 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0c6593f3 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x219bc742 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2310b7f7 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x239d9780 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3585d77e smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x35967d98 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x36a64c90 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3c8895fd smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x435cc4d7 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x525beeee 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 0x8409461f smscore_register_hotplug +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 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xada3a6de smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb6eb7bce sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbe4d5a76 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc6970735 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd1266833 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xeea1aaca sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x0756995d tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x0b63430e tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x1c236f52 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x395504e9 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4cf9e178 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x5c15f12d tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6da054cc tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7527c0ad tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x89685ab4 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x8deb2d91 tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x9e9e5267 tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xbbf641fb tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe01d21d2 tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf26d0c08 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xe78d69af as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x316bb2a9 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x1e38fe93 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x0302a6ff media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x057e6bed media_device_init +EXPORT_SYMBOL_GPL drivers/media/media 0x09e5bf8b media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/media 0x0ac8bb96 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/media 0x0c12193e media_device_find_devres +EXPORT_SYMBOL_GPL drivers/media/media 0x3805ace4 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x3be44d6a media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0x40710b39 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x41b5d152 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/media 0x436ed015 media_device_get_devres +EXPORT_SYMBOL_GPL drivers/media/media 0x45bcd86c media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/media 0x48708fb2 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/media 0x51205fdf media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x569d69b4 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/media 0x5cc4fec0 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x724ef0e7 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x82ea9cdf media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0x84da302b media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x8ca3bad4 media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x8e827fcc media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/media 0x9823bf17 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x98d97463 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0x9ccbe6ef __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x9e8aa31b media_entity_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x9e9ceeff media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/media 0xa323f48c media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0xba4c7573 media_entity_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/media 0xba8a76a8 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/media 0xbfd4bb86 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0xc7b38e7a media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/media 0xcfa31dca __media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0xd7f86752 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xd8299ea9 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0xd8de2771 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xdc581289 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/media 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xeeb8b018 media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0xf34808ed __media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0xf4f53e86 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/media 0xf764c10e __media_device_register +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x45a3aa41 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x03e0036a mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x098a6a08 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0b10bfaf mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0cd9a337 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1559f2ff mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1b26a5c2 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2a1078e4 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2ae31106 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x323c1a5e mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5a640e2a mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x61134558 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x61c9d88a mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x74743f0b mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7636de7f mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x76ec43ad mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x80900930 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x877033ee mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xab882040 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xca713366 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x06991889 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x10804575 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x131e6ffe saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1d0a12c8 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x22e5114d saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x37c8d9bb saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x70396d07 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa2d328b7 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa5149f1c saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa9c4053b saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xab325aaa saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xac96294f saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb7e215f6 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc6cf8154 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd4f75ac2 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd5434507 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xda270e26 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfeebf645 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xff483536 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3be65b30 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x670ddeaf ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6e74d50f ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb30302b2 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xbe7e8ad8 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd1ffb38e ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf4315910 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x46fc564d radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x90bcf502 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x048c1c82 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0ad9525a rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x12fcd894 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x18713dda rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x25b53d9f ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x32ce019c rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4bab0aa1 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x53efda4b rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x59c0b596 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6732a4d4 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x975bc7d2 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa31ddb8b ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xac1c46eb rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xacc53442 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb4f6cb0f rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb996dc50 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc8829488 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdd402e3d ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe0d49d86 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x1dd1cbfd mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xe46345a4 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x7aab011e mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x2d7339f8 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x91cdb221 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xe57bad4a tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x69447dbc tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xb1512a0b tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x4621c904 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x3ad81dcf tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x48ddbc32 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x1c92c6ff tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x6ab66e64 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x186052d9 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x03aab65a cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0c4e48a3 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x29c29ccd cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x315d2099 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3fba59e4 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4ab054d6 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x75356e46 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x92dde244 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x99203730 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaadf0f38 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb82d0646 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbb159307 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbd20fc5b cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbe5e6096 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc2ba3932 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcba864c1 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd89a4132 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdc295f35 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfc8a3ce2 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfe138796 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x3347f2c4 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xf5000de6 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0763a74b em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x10c23ad9 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1130b094 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x170b0a8e em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1f2b18a0 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x384b710e em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x47fb4bf2 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x51180a80 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x54c5b4ee em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5faebc8f em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8e8f84fe em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xaf1f7594 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbc1ff75d em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbc7dcfe9 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc623cf53 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdcc7e133 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe5358fb5 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf96c0623 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf9f65337 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x55ac63d3 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x6686bdd0 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x768a3653 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xd6f6422a tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x21744a54 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x3b917c4a v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x8172af83 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x833e7e1a v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x9cc9f4b4 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x9e1dbcb4 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x363ad524 v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x9cc2520f v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x9d1e894e v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x00b72452 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x04a39329 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0bfac447 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0dd6ee8d v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2fd02144 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x35bead05 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x382ed73e v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3a5f7c3a v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x595d9eed v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5d5f237e v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x74432f39 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x885f766e v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8b5e2a9f v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8c0135e5 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9e696d7d v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaed01019 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbdf75e32 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc799e9d0 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcab5d4b4 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd004fce2 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd7ad039e v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe7f21802 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xed1debc4 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf142f199 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf438c065 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfea8cdb4 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xff14f908 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0b1acd5a videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0fa0ec7a videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x307fff4d videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x31ce3109 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x325f661c videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4889032a videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4bfba8e1 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6b2f952b videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6daf50d8 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x93313dc5 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x957d845e videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9820c512 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9a08143b videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9cf1b1f5 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa4ac0f1e videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa9c3e3a4 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xad1f5089 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb217a46f videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb7337899 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbbda8aa8 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc0183424 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd4e8afea videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf76a1b4d videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xff0d33b3 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x046e5ba4 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 0x77fe71ca videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x8073935b videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xaee96bb3 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x1d71082c videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x2fd105b7 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x9f921282 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x02fcc7b1 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x16ba87f2 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x195a0269 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1f32832c vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2b5f3603 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x42507665 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4c37547c vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x55f5c86f vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6f03dec7 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x71ea6712 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x72e3afc2 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x81eb34eb vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x86fce027 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8a154cad vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x9147a735 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x95e8ea42 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xac1f4874 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb3e91128 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xcd8a7559 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xcdf27956 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd3057293 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf607f2d4 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf86ee19f vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x2870fa6e vb2_dma_contig_clear_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x974db026 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xb57bde4f vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x96f25bc2 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0xf293a79f vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0f40360b vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1bb6698f vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2d1b958b _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2dbaf826 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2dfbf00e vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x364180ac vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3dbb039e vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3e7181fe vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6321ea16 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x63e46ed2 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x69ad3a01 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6b70b154 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x88d7fc57 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x919907dc vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x921a899e vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9722ad50 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa1f31504 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa3630ff7 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa39bf087 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xafb20eac vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc0520c22 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc31f9f86 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc526b07c vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc80e373b vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd630d03d vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf4ce86ad vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfa32a5a9 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfb15b1e1 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x0c212bfa vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0297f5cf v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x09e3d5fb v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x16acf9c6 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2748975c v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x29ded27f __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2dcb1f71 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2dda82fa v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x32108650 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x482aab00 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x495dcf70 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4970ed36 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4c32b124 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50d65b11 v4l2_subdev_free_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x53cf4cb8 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x584065d1 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5852b28b v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5feae5aa v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x65373de7 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x70374310 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x75ec7ba6 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x848ff47c v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8a9eabfe v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9e028ec5 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa41f8703 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa5b040e3 v4l2_pipeline_pm_use +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa63747be v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa71d47ed v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xabe2d552 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad4ffbcb __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb7ebea3c v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb83aa783 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb9252d52 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcb0f7cb8 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd1f4b86c v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd47cea68 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdc7bc6db v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdce05f36 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdf1fe906 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdff470d9 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe44f1e6b v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4a17f70 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5c6847c v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xed06cfe0 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfd422587 v4l2_subdev_alloc_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xffe41944 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x15c81f1e pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x195f4a13 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd4202884 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0b8c0891 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x6abc5fb0 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x94a3baf4 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x9ecec26f da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb89246a7 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe452826a da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xfb0c40f2 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x3b7536d1 intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x527b6cf2 intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x786fc196 intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xbda4497c intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xef80609f intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x40221e1e kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x60ed3882 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x63cc4344 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7fe277b3 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9e1c32e0 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb3dfb3f7 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xbfdd52b4 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xc443c1ed kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x18b832c0 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x7778ddc8 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xe332b559 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x203485c4 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x403d2553 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x6ef1b65b lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7321813c lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x92fbc99b lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9e406261 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf659e0ea lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x3cc246c7 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x4ad742fa lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xd64558dd lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x0a51554d mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2a686c9e mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x386799f6 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5270ac5a mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x752f232e mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x78ddd2d6 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x00ceca55 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x16cfd5fb pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1d96d65d pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x630253ec pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x696c1e40 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x702335c0 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7676cb62 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb4a93706 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc622fcce pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xcf8b7018 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd5c6eef1 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x8c76fff0 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x96d1d9f0 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x07b02e3f pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x2cd38fe3 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x37bae60b pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x37f5327c pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6ee9cdc5 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3a3846f2 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x528b5409 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5328d345 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x53dbba6d rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5a1c04ab rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5cc24aee rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x61c2775c rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x68faef3e rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x698822f2 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x700b4991 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x70f49209 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7fbdb7b9 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8188abcb rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x867c402c rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8a70b566 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8ab677f8 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x914ae6f3 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa0ec89cf rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa8d1fa91 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb204c2e4 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc2b99a3e rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc4bf9b48 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf818fbf7 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xfcfd30e8 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x028e7193 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2963c6a3 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x31551578 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x31b399d0 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x35b93896 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x36d0e32b rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x42b474fe rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x524d4f56 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x53ed1b99 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x57007024 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x74a5a8f8 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xda178fd9 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe42b0554 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x01784308 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x02b93ddc si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x05fdd94e si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x06b0b5e1 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1a61495f si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1ae7dfd2 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2c6063ff si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2deba974 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x35cd7664 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3cac1869 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x46c2bae3 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x47fbfa44 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x52c8c58d si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x58f87e6d si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x63e7b568 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x64e6a991 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x68bd352f si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6cd6d0af devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6e7a432a si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7f50196f si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8399aa8c si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8c34580a si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8dd1252e si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8fefc80f si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa2aa4c6f si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa95e9a3c si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc38d698a si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc4d02121 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd76452c6 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd913981f si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdb58b0b6 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdc881f01 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe982c5a8 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeb6d4e32 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2bfafe4f sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x50863c38 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x65a76c39 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x9b4f3b72 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xe35ff881 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x04f0716b am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x55e6d33f am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x745af2dc am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xa361ec41 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x7e6e5f80 tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x82fd4121 tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x889bd87a tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xf66bc7a2 tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x6ee43305 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xc5aadb06 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xe4918e46 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xfbe460e3 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xdda1b267 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x1b19f2a0 bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x35cb00b5 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x7b485ec8 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xf09d1a1c bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x3095125c cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x7b00b57d cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x8feece09 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xfe3b7d1a cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x0ae36cf4 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1ec435a9 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x293d5714 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5ca30ff0 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x953e5c69 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xacf05b6f enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb847d6c6 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xeaf47ec8 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x15cc8b81 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4635db23 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4a5aaafb lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x55ec420f lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x72dcd1b0 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x90602271 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x909cb8dc lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xea669c5a lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x022a65fa mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0b94c647 mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0d5c389c mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x10422241 mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1439090a mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x153125ca mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1cc96b4b mei_cldev_register_event_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1dd3b98e mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2101eb49 __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2f591ddf mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x34b0b430 mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3f575f36 mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x48ecb229 mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x499e5880 mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4c829ab1 mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x62fa641f mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x65e9b653 mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6776533d mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6ff91e94 mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x782c22f2 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7b5d6527 mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xaea57be9 mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbe4dcc34 mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbfe21c8d mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe102427e mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe8dd0278 mei_fw_status2str +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfd611f88 mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x1b61dd36 cosm_find_cdev_by_id +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x5ecd9fc1 cosm_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0xa09f3ef5 cosm_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0xc85b38fd cosm_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0xf055c787 cosm_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x375e6e95 mbus_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x6240f54f mbus_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0xdd158692 mbus_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0xf7f06150 mbus_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x34342c76 scif_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x6a0b6609 scif_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x80b40067 scif_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0xb264ce72 scif_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/vop_bus 0x1c3819ff vop_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/vop_bus 0x8a4b730c vop_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/vop_bus 0xae038faa vop_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/vop_bus 0xfa7f56f8 vop_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x19e46bd8 scif_fence_mark +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x27e49b7c scif_vwriteto +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x31f517c5 scif_get_node_ids +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x3effc240 scif_writeto +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x4361f8de scif_fence_wait +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x46df48ce scif_accept +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x4eccb713 scif_unpin_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x4f208209 scif_connect +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x6ce656e1 scif_client_register +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x70e7991c scif_poll +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x7767857c scif_pin_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x7d041be7 scif_send +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x8c379820 scif_close +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x8d26a2fc scif_recv +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xa2aaed97 scif_readfrom +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xabf055db scif_open +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xb5d5bb8b scif_vreadfrom +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xbc1dd1f8 scif_put_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xbe47e2a0 scif_listen +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xd647825b scif_unregister +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xd78f6575 scif_get_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xe4446bf1 scif_register_pinned_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xed2715a4 scif_register +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xf8b160ee scif_fence_signal +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xf9e0ed6e scif_bind +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xfe0c1f06 scif_client_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xb94303a6 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xd32c34c9 st_register +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x0f6680ea vmci_qpair_produce_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1152e318 vmci_qpair_get_produce_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x13aa5a5d vmci_datagram_create_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1872c7af vmci_qpair_produce_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1a195863 vmci_context_get_priv_flags +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3ef56cd5 vmci_qpair_alloc +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4b630dac vmci_get_context_id +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ddc388f vmci_qpair_dequev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x50a255c9 vmci_doorbell_create +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x677c36d0 vmci_is_context_owner +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x69ef87ff vmci_datagram_destroy_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x6cc1a5f7 vmci_datagram_create_handle_priv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x722d488a vmci_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7d540b50 vmci_qpair_consume_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x81d61eef vmci_qpair_dequeue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x907166e7 vmci_qpair_peekv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9624c58c vmci_datagram_send +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9973b9b2 vmci_qpair_consume_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9d16164a vmci_send_datagram +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xccbb53d1 vmci_doorbell_notify +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xcf5ed7ef vmci_event_subscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xdac94780 vmci_qpair_get_consume_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe7e7c107 vmci_doorbell_destroy +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xf6c71169 vmci_qpair_enquev +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1e1569c8 sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2a1177f1 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x301b5b1a __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x37482b57 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x49b1a8a4 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x58f5b67e sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5f99a21b sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6dafacdd sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x761742e1 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x891047d7 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x92358742 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x95d839c2 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa185df50 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa5478502 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa6f6092f sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd0723b6a sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd74aa1d3 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdaaefdaf sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdb40d388 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4269622f sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x52295f9f sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x7660b8ba sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8458b7d4 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa6d6e486 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb8f044d2 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xfdbe8258 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x00d72fd3 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x3ffe0a3b cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xfdc90a45 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x01435ad4 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x7f111104 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x8ce8de82 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x8e84dba0 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x238fc2d9 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x5a2ff2f4 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x9089d1f7 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0018c849 mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00227f42 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0aebf17f mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0b6e69aa kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0f4fdc7b mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0fa57183 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x17d2b6a6 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x243b809e mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x25ff7a8a get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x33145b27 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3384ab43 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3453c954 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x34c79270 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3a080781 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3e3d18f9 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4033cb97 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x40bedd57 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4154797a unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x466c354c mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x56b2e2f9 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5b51e3f3 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5d53f111 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x60a76cea deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x65d7fd45 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6771bb08 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x686402a5 mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6a12a580 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6d5059c3 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6de0c4a7 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6ed547b6 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x72f21c87 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7677dd5f mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7c9930a3 mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x819b5773 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x86c6ee94 mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x90c52534 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x91e82e9f mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x964a176f mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa5b51eff register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaac2e841 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb30f59b9 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb66b98b9 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc4dd65a4 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc6e8da76 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcdad4e88 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcebe70f2 mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd069c1d4 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe0828390 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf254b892 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfc447bc2 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfe70e4fc __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xff359cc5 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x0a44ce5e register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x201696ee mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x4023cd31 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa6abb730 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xab192a1c add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x2bfe3322 nand_ooblayout_sp_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x5941c307 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x97193b41 nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xba68df05 nand_ooblayout_lp_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0xb4ed486b sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x83a6cd9a onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xf638cc56 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xa547bbc8 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x023068c2 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0936b0b1 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x291346fc ubi_leb_read_sg +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 0x5718f9a5 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5b819ea3 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5db673ae ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5ea0c9aa ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6ec1406b ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x71473598 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8a1f603c ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8da9782d ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc7d99702 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdd354e3d ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdf8c0e5d ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x118123ec devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xc5bab7aa arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x099f7d8b register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x116e7a5b c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x14bd9434 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6255130f free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6f95ed11 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x91d2409c alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x24f2c837 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x29fc4bc4 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x37678fdc can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x45c53e5c devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4e0eacf0 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x63f8fd70 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x725df784 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x751b19e3 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x76574b72 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7f79f1a2 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x85bd6f2d alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x87470e82 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb3a1156e can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb5496e80 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbed8feec can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc6f17f4b free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd6a1c80f safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe8955e9f alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x2f88568b unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x579940da free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x6542dbb0 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x754da4d8 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x6fb2d19b register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xad9716f9 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc4ca306c alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xfae3b7ac free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01cc9c20 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01fabe95 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03bbab8e mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06b65eb7 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06c2644f mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08bf02c8 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09e37710 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b0bea99 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0bb62b12 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fd47068 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11194ea6 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1319be5b mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14b110bc mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18233145 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1880b61e mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18f3deb1 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a55f22c mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ae1637c mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c5c3ab5 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1cb5dbdc mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1dc2da36 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e777894 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f648634 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2678758e mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26d8072d mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28610053 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x296343f9 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29c41a1d mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29c49ac5 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b3a34de mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b8219e1 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31b041c2 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x353c7876 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x373c555b mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x375e2c90 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f48668e mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42eebeaf mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42f6ccfd mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44372da8 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44fe7df7 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x461d72fb mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4690f0af mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ad30f18 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ed1fad4 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51fb631a mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53ea6ee4 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a3fe083 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ceeec4f mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5efc2810 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f0527d7 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f867499 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66cefd64 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d181ba8 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6eebe22d mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7183883b mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7364caed mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x757fa1b0 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x763fd4bd mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76a5c36b mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77829aa6 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78369465 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bbe699b mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f2e7fcc mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8269ed12 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x842779e2 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86f9446a __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87a45290 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88d41745 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a46a94e mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b2a163b mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bd6bdcd __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f4cecfc mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92acc28b mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x960b4095 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bf55fc2 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2b3726f mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3939381 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa81fba10 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac86a759 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad0a139c mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf29fec8 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf3c64bd mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0b8ff6a mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb67bb4d7 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb829ba1f mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8772ee3 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbb5fafe mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc107f30 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc06c2108 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2ee8c56 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3251904 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6e59ae9 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc829fad4 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce4352b9 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf5588be mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf86c505 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd00a58c3 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd042db10 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd04905aa mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0f54f12 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd638d410 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7eb686c mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd83c52a6 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd89143f3 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda0b8058 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe011f235 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe05c4a95 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe10974bc mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1a16732 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe339cd0a mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe43b584c mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe62c0fae mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8660510 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe94a63df mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec690a35 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf061a96a mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf40f0f8a mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5c55b85 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6e38147 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf88f9597 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbe81cf0 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc2e1de9 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc7fb839 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcdb8583 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe687206 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff263785 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0113ff00 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02d29493 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x076e75c8 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0936776f mlx5_query_vport_admin_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11b76932 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13a19c2f mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bfd693b mlx5_core_dealloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c3fdeb6 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cf0ad91 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e785031 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f93790a mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22ada145 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x235f914d mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bf9a515 mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33d06c87 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x379ea956 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39adfb17 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c3b580a mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e7a8e16 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ee24fbb mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41a8bf2c mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x420d5d36 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4800cdd7 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4db48769 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54182324 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55f7e745 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a9e5fde mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60fae16d mlx5_core_query_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6130a161 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x619def09 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65c0d166 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66b8ed1b mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68a72c46 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6aa1f81e mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7124f296 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x721780e5 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72f110e4 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75972e40 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c8309c5 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ff86a31 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81e7b312 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86fd0854 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89167fcb mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92dd8fd7 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x954b9b5c mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96d96b23 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98fcf845 mlx5_modify_vport_admin_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bd834ad mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e0ae1ca mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3a2c4fb mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa2b88fc mlx5_core_alloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabad11ac mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1679a24 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb270d29c mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2d6c074 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3001d5d mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb519f026 mlx5_query_port_autoneg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9a7ccb8 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9cc60d5 mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbddea18e mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc266c8dd mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc56ab153 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9264607 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc76a58c mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd53960a4 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd77bb176 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde02f1c8 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf7f8578 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe21d8c27 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xebbf7c0a mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xecaa8efa mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2b80d7d mlx5_set_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf90a7255 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfba68856 mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x39168de1 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x5e28947e regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xac144314 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x05c81d4c stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x59ef9f5b stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x6db95a37 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa35c5964 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x2d79c1f6 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x8a6645d7 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x94d46830 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x9a85c52c stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x0479dc7d cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x27843d3a cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x2c60a12e cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x30eb5d27 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x34539b19 cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x396b853d cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5fccc33a cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x6c133ba5 cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x6fae2dfa cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x967e7aa4 cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa2e186e0 cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xac6457dd cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xaef74a2f cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd1780614 cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xfa7cba94 cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x123e0238 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x245931fa w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x353c5f9e w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xdc454e0b w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/geneve 0x1ea3b874 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x836cb25e macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x97eeb101 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd7cb534f macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf4af6803 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0xf86808a6 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3c950d9f bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5756cad2 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8a46ce7c bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9848af0a bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaa839cc2 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb0a0da8b bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc1537970 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdcd1b17d bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe7df6b25 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf9fbed0a bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x76dfe40f usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7a7dbdd8 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa97cf840 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf1c197bb usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x011f4224 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x59c8b890 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7052cf47 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x70a7d17f cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7b69e9fd cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x81b9bd1c cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xcd4534b5 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe7fe5bac cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xef74a939 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1649b62b generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x679ca7d5 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8acdb3e6 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x90bc6af6 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe6bbc088 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf3c2f664 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0fd9e9e5 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x10d0c8ce usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x194caa60 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2a312714 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x38023da8 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3abd1029 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4b9df328 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4dcbf522 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x62b96f49 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x64239bd0 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x67624cf2 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x67637c9c usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6b0bd60b usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6d085957 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6d3deead usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6dbec5cc usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x72d9c06a usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x794da2d5 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7e80cec1 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x81184d44 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x85277ab4 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8c1c29b5 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x921c2a04 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x93efed51 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9624c02f usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb336f6ea usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xca0da18b usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcb109f71 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd61aa64c usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe8383d44 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf926f7d9 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf9765328 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x367e3362 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x06c89ee9 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x124d7c6b i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x14266445 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1504ab8d i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x22ab53ee i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2dc6f26c i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3b0a0689 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x46d9267d i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x703d938d i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7d84bf81 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa52df1c8 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa725c1be i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd843b293 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xdbfc2aa0 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe10cf6e5 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xeb410c88 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xcf1ae983 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x308e42ec _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x870b8a17 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9990484b il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c9e9ac0 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaa3a1f22 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x06338e02 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x07b87628 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x10d3ebee iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1618d3c6 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x17b76970 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1b074767 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1b3bc40f iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x20f1ba3e iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2198093f iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x23fef742 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2a049da0 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3191c78e iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3d8bee5d iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3d9f490b iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x43f024bd __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4c950f76 iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4cc17905 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x512a2413 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x58183157 iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5ded6fc3 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5ee5ab54 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x61c4a84b iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6ed0037d iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x763188ab iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8708e909 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8ab14d93 iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x95965ded iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xae530be7 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb11767fa __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb42f3372 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb5465cc1 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb8979af3 iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbfa6914c iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc4a8fc91 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd2837af2 iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd49b4b3e iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe1e78c07 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe50a2b85 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xedd6cebc iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf4e338e7 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfe938339 iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x190329ff p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x36c31e41 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x4e452f49 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6a8aef48 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x79e8f708 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd0fdb054 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd5d78f0e p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe2e86e35 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf2042175 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x01b129bd __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0fb51331 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x11e683ba lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4006fdae lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x69a92076 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7ced45b0 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7e856781 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x98a64df6 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9d133e59 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xab852c0b lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xabab1b50 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb9963a8e lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd079c813 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd73e6839 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdef1286b lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe415f7ca lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x4117b0c4 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x4de01396 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6dbb01b5 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6f1b0cee lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x8e0663e7 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x96db881a __lbtf_cmd +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 0xd84c47cc lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xfc4872df lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x06c9f04e mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1343b9e4 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x13a9dca8 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1697b464 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x58793248 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x756aea9b mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8bc8e9b9 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9711d8d6 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa396efec mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xba2dfb9d mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc04dad4f mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc4f8cd99 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc94d10d2 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe3718308 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe88f3a7e mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xec2f1e4b mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf00a83eb mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf1c7239e mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf7bac893 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfd3eec59 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x01c61f74 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x172f54ce rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x17f28476 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1b11bdf5 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x20c80cdd rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x215e94e6 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x36d7245e rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x37480da8 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x381980c9 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x38205a2e rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3852f442 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3d241bb3 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x417d2388 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4a8b244c rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4bce0602 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4c18e99b rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4c1c1b29 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4e8c3761 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x533a4ad6 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x64c2c82d rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x67fd2d55 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x713a3542 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7b271097 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x870de1e4 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x94eb165a rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x94f9ff80 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x98fa3942 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb11aa236 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb325f19a rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb4cee263 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbd09dc51 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc0584c4e rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc4817d0d rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc942088e rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe39ddabc rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf04472ed rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf6e8adb9 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xff32dd30 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x620aca5c rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x63253845 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6a8246f6 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6c45d8c3 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7642e67c rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x88650f9d rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x926f7089 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9d77f10b rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa8517aa7 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd215c694 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe51a26b0 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xee18e241 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf972103e rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x01ce8c24 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0609df54 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x06c34244 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x09683086 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0a0ac486 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0b7c9ff0 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1924aaaa rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x21863853 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3839f820 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x38800291 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x477a2126 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5862864f rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5ac4a1d7 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x65c7bb20 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x69154622 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x75315464 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x785487d8 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fc1d86f rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fff2239 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x80b8aa14 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x814ed1a9 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x853a4021 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x89a02db1 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x94184a11 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9f19ca13 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb19dd58a rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb557c1ad rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb714e9ff rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbae37ac4 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbe5927ea rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbeb3e4c9 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbfed786e rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc40ba2c4 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc5b63863 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcf53f50c rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcfa44cbe rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe1b94ff3 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe22db3b4 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xec25d895 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xef83b48d rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf2ee780c rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf815ce53 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf9028377 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfac779fc rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfae35f56 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xff535ed0 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x134f4808 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x85b33b96 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xd9ef44d9 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xe6c7b18e rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xec449f27 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x0721470d rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x281f98a9 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x9a5daa5d rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xa05b80fd rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0939d7f0 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1aa40841 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x200104ef rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5ce0d0e6 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6a4ecdba rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6c345ef1 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x73ea9651 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7ae06ee0 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x859b4523 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8e935c1f rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x90f3c786 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa6967783 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc9e638a0 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdb72fde5 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe4736797 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xebef2722 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0aa8c996 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0fe20247 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3ea0cfd3 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4de11278 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x04c84d10 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0b273d2b rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x162fe83d rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2025f036 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2182b4a2 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2b5bf0a0 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3256d0bc rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x33726a6b rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3d4dfe7b rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4f96b607 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4ff65b15 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x75388e46 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x79b66e07 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7b233d17 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7c898d6b rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7cb8a630 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7ce4ec2c rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8980d7b4 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa1fb9fb6 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xba28132b rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc046947e rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc0e772ad rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcb757969 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcbb5a2d1 rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd295ee8a rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe5b64e2d rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf3cb2bc2 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x087ee673 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x121c4a26 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1d678412 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x254fd959 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x570bce1e rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5ec2fd0a rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x61d3894a rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x662f6d08 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b4de810 rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8e566b2d rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x96840101 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x99b40dce rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa15e4859 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafcdc668 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc6a76716 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc979524c rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd72634db rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xde805d05 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe277624d rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeee79084 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf055f69b rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf4550b84 rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x02ee317c rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8be53d4f rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xe63cab5f rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf6e2709d rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x42fe82a4 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x9b11cf34 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xa21615aa cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xd236ebc1 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x26abc2ae nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x9f382b11 mei_phy_ops +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xa29ceaa9 nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x86df97ca nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x92d9ca9a nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xde3bc2fc nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xf073434a nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x17784d92 pn533_unregister_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x390f4f6d pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x6cd4e45a pn533_register_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x168d2401 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x42b2e421 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4f49a8cf st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5f0f8624 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8d950722 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9162566e st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xcc44724b st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe31d9202 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x2118caae st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x55e02533 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xa3da92df st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x304a4260 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 0x3dc3abef ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x620138a6 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 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 0x16be543f nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x177739f3 nvme_queue_async_events +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x25f3ce1e nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x28e5d48e nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x30d56382 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x327858b1 nvme_max_retries +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x37d22d63 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x40b996d7 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x506d7dc4 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5665d68b nvme_requeue_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x611ef6ce nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x620b55d7 nvme_init_identify +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x72028ac8 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x745e7c74 nvme_start_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x90e8c903 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x95a11cc6 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x96b06c3a nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbe1938a7 nvme_queue_scan +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbe81f60f nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcc12859f nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd0996e0f nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd3f8c5d4 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd591045a nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf902df80 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf958ab24 admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfab3c9b5 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfef430a6 nvme_put_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x066c4aeb nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1c7e9a23 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x28a3fac1 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3fe7c785 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6464a37d nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9d3abd4c nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb567e014 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xccba6e91 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xfa26f5f3 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xfa545a23 nvmf_get_subsysnqn +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x39001212 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5f9a19b7 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x74698375 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8f65d7cb nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb513a5e1 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc7fdc1a7 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd2898222 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x224f51bf nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4bf9251a devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x594908c6 nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x5e0624a1 nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x63a3c9a3 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x83b4b997 devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xb35ecd97 nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x01b257d0 intel_pinctrl_resume +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x7aaab8cf intel_pinctrl_suspend +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x853c9515 intel_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xa1b1fee9 intel_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x07616fdc asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x1f5ff906 asus_wmi_unregister_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0x51552fca dell_rbtn_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0xa060fe7d dell_rbtn_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x6fc812f8 dell_smbios_clear_buffer +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x8a79b3de dell_smbios_release_buffer +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xbde33baf dell_smbios_get_buffer +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xc2871e79 dell_smbios_error +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xd816c94e dell_smbios_send_request +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xf5197de4 dell_smbios_find_token +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x56235c72 intel_pmc_ipc_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x75068282 intel_pmc_ipc_raw_cmd +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xdea07053 intel_pmc_ipc_simple_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_punit_ipc 0xa6c87106 intel_punit_ipc_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x111aafa7 telemetry_set_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x1bbf0813 telemetry_add_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x1be25432 telemetry_get_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x4294042b telemetry_get_eventconfig +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x4cb51f18 telemetry_pltconfig_valid +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x50c1c0a8 telemetry_get_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x5847f501 telemetry_clear_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x611fd2a7 telemetry_read_eventlog +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x64c6a83e telemetry_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x73dcd24f telemetry_raw_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x82bb2dbe telemetry_get_evtname +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x86847dd9 telemetry_set_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xb78846ce telemetry_set_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xbb9a2726 telemetry_reset_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xcbdc93cf telemetry_update_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xe7eb1528 telemetry_raw_read_eventlog +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/thinkpad_acpi 0x706cdcef tpacpi_led_set +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x3ecf6cfc wmi_install_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x561c634a wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x876d29f1 wmi_get_event_data +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xb5a6ebe2 wmi_remove_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xda29f8b0 wmi_set_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xfb882fb7 wmi_query_block +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0x8dfe0e0d bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0x8f7c7bd7 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0xc56c3e71 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x86f83f2c pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xb83808a4 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xca04a5d3 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x04d849aa pwm_lpss_probe +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x6365870a pwm_lpss_byt_info +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xafcf8794 pwm_lpss_bxt_info +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xb563cdb0 pwm_lpss_remove +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xc34d815f pwm_lpss_bsw_info +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x53c12e9c mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x710b9bd2 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf84a1836 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x0c770e9a wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3c35c13d wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x554cf1b7 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x5c8cfc57 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xcb688f2f wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xdf9f75c0 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x820ce83b wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x05e74910 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1ba0513d cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x219387d6 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x25837fb6 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2abad62e cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3cc4f5c9 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x41cfb47e cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x47f7bfa8 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5449c8e9 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5feb7edb cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x63c4058a cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x70b8bd00 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x72be0868 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x73ed14b9 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x753832bb cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x77987912 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x77e59cb4 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7aeec843 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7ec76f6a cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fae9a55 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8b016fd2 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8da188b5 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x908f7806 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa016d780 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa3472183 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa51d3e50 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xacdb2a5d cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb38e59cd cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xba2c8baa cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbfdc0bc5 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc684b805 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xce3bf893 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xce4343d0 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd22b2155 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd2cde2c6 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe0a37e5b cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe20b1bb4 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe3c7686c cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe9278551 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xea17f28f cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xecbda604 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf229d720 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf450aa8f cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf75840a1 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfd10995e cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0f8464ff fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x14a2d25d fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2c795fd1 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x30c2853e fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x461e8a72 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4d353b09 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6c0f9ccd fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6dcfc333 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6e97595a fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9a5453fc fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb7be40ed fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc17f49d6 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe5f61316 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe61beb9a __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe66925d7 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe84cd02e fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0318cd2d iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7223fa78 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xcf5f5208 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd0926bc1 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xdc0f3cdd iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe2b3cbd5 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xf027a0b0 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x05486b2c __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1426b822 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1d0509b8 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x249dd65c iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x30aec2d5 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x320d207c iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x336ba63f iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x340621b8 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39d867d6 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4166c5a4 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x512fda4f iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x554ff2af iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x57d66580 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x60556079 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x60690a92 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x68174f43 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d2f1b71 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7281fd97 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x73535ffc iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x783d665d iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a10da22 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ffa189e iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x90e36808 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x93ee2b4c iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9ebddeaf iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa3f8dc63 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa6561d06 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa771ee5a iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa9b55f24 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xac1ea775 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xac3264b5 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb5277743 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf927a2c __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc385123a iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc4de9790 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcb3c90e6 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd01dd99f iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdd9bc435 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xefc4af24 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf06d9d23 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xffeca8df iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0a1a4094 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x136a3fad iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2b304681 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3416f991 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x362b3fc7 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x51149e17 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x53eefe34 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5bd60f86 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x672cc283 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6bc8d291 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6dd20a7c iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x789f5c8c iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x84a24c95 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x92c9e398 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbf092a58 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcdfbaa33 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd14bb87a iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0919036d sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0bd058a8 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x10ff9945 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x15f8b8ce sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x171eeb37 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x317efc23 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3b1e10e8 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4cffac98 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x50e83e44 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x51690efc sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x54af2b12 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x587167b2 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x639a806a sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x68a6e325 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x73407cc1 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x74ea382f sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x93867f90 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa0b1788a sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa9d5eea2 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xae8d6309 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb96fc120 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf439824f sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfc38c8b5 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xffe53c13 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x06cd8ac1 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x098e832d iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0f48609d iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x137ee14a iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x13f43f87 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x147ef41f iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15db8b12 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x27a5dc8e iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2fbbe689 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x39fa6010 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3d5ead6f iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3e9aad90 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4cb2420d iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4dc61cf4 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5161e358 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5e5940a8 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x67f709c6 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x68b93b92 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6cf49e50 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x70d3b1c7 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x79ca1848 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7bf8df33 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 0x87183545 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88ae9f45 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x948d3481 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x96c524c9 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9842d74e iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9bef019f iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9c5354c9 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb0ace08f iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb21c37bc iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb9671582 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbac6735f iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xccaab343 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4080df1 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd6a4cf6e iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde18181e iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xff4dedbc iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfff5178b iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x36a1c22c sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x531292ea sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc707d38d sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf535946d sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x05ac1a1b spi_populate_tag_msg +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_srp 0x31aa92f7 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x529e7549 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5bfde078 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xab589d4a srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc046f814 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe8d4f0ef srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x08b8c50c ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x275ed2f1 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x5ad29c86 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xbaf3446e ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc2180a48 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc5f7dca8 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xdf915cb6 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x3444da87 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x64243c09 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x94f5bd49 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xa94367e1 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xaaf105e8 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe7ca6bf6 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xf106ed86 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x5b4b92fb spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x5e46c9c0 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x88641b63 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa477695f spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xdf295c04 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x30a87da3 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x3da917bb dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x4a278e51 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x84da6261 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x0edd5222 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xe7f61db0 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xf7d39166 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0d362949 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x11b61223 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x12d26d80 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2264bf19 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x34a2cd31 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x379cc9f8 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x42a27cb4 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x63f88fa0 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x73880edd spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x85947629 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb3eca82a spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc9b18b44 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcd0bef44 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd5b1ea7e spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe97b4c36 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xed3067e0 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf94c1d43 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfe8d29c7 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x0018c580 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x02a9d6d0 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0ab39619 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x11a0e3ab comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x18589005 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x193ef185 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1b7ae9f5 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x278632e6 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f8e27b1 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x307caadf comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3a247c80 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x63a23ef4 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6ae4ebd2 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x71cb0fe1 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x795bcb1d comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x795d4445 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7a3906f5 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x808e9be7 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x942da1b9 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x94c41eeb comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x99f2e268 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaeb7e30b comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb92c4630 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb077c3d comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbe66819c comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbeb58705 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc3007796 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcd1ba5a4 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcdd08220 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcede0482 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd606ecff comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdbe31587 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe233d9c4 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe2389262 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe748ee39 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf70412c5 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x00eb9660 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x28e6749b comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x4bbadb68 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x50879e18 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x5be0a9fd comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x9cb0e23a comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xcd24f91c comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xd967bf34 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x025bc275 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x163004ee comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x607d4e07 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x6d8f9b74 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x8cbb9eae comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xa2002856 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xfc3086ab comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x3209fbef comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x3a0f59f1 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x685e330f comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xc40c8785 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xde2764eb comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xefc6aea6 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x14554ede addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x9a791654 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xb410b2bc amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x3d440b75 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0d02402c comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x194480b2 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x321a6cf3 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x4cfef420 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x4eece8db comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x737b0c63 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x8b99ead7 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xae0cbcda comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb19d6aff comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc5d625da comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd99a865c comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf45373c1 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfc4041f5 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x7c5c0006 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xb5129714 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xf7e3da74 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6a52d11e comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x3cbaaff9 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1da6c16a mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x454ac36d mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4fc84149 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4ff4ecb3 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x500a296e mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x503b9f6c mite_sync_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5745b455 mite_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5a8d4114 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x878dd29a mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8a56c3f2 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x91667203 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa616507f mite_request_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb2852008 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc3d4043a mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd1e96626 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xff980cff mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x823d6386 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xb5db5e2b labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x42c8a032 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x558aa6c9 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xbe284786 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xf406a029 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xfb755fd0 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x0866e34d ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x0eb8bdc5 ni_tio_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x19402a50 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x3904b4e9 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x4b1232b7 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x6f22d43c ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb8f2438f ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xbe56540b ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc15f8d8a ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xce592564 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xd582e226 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xdcca4fa8 ni_tio_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x3f02ea00 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x4a1cbaee ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb57b1e92 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xbf0a7ac9 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xc296eb63 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xd8f643a5 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x629245c6 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x822b5103 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x8c5afa57 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x9fa957c2 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xac7a6d8a comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xb6ec84eb comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xfce9fc8d comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0x81cf510e ad7606_probe +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0xb569fa4b ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0xdd375184 ad7606_remove +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x42009048 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/lustre/lnet/libcfs/libcfs 0x7c478bfb lustre_insert_debugfs +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x0c2e8503 ldebugfs_register_stats +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x1c3a7bf4 lustre_kobj +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x34cdc30c lustre_sysfs_ops +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x5a1275f8 lprocfs_obd_setup +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x6893f35e lprocfs_obd_cleanup +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x6e4874a3 ldebugfs_add_simple +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x903261df ldebugfs_add_vars +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x97730218 ldebugfs_register +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xa26fa78e ldebugfs_seq_create +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xb542bf89 debugfs_lustre_root +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xc5e4c914 ldebugfs_obd_seq_create +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xc7abd801 ldebugfs_remove +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x15094757 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x17ece087 cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x7b2ba6d3 cec_received_msg +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x826756c7 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x92713523 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x99a6c759 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xa1650f9c cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xb336ee69 cec_transmit_done +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xbd7d147c cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x01ab2c14 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x042d15d1 most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0b7d4064 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1a80c42b most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1f28008f most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x43b6c1b5 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4b08d125 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x792d9327 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb28ccce4 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xbe96ae23 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc2cd257a most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf7f03a82 most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2ab8daa7 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x49b32dac synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x62a511aa spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6437e113 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8b3aeb81 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8cb06f19 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x947702d3 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc8b69944 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd08c0a69 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xdb52ab80 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xfa4114fe synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xfca17fa8 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x0877dd5c visor_periodic_work_start +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x0ec0434e visorchannel_zoneid +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x12578599 visorbus_disable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x149bde55 visorchannel_clear +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x1582a13b visorchannel_signalempty +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x1f0e0f19 visorbus_write_channel +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x2521bd6b visorbus_register_visor_driver +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x37626eff visorchannel_get_clientpartition +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x39fe5de1 visorchannel_signalqueue_max_slots +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x4063ea9d visorchannel_signalqueue_slots_avail +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x4d1c8cc5 visorbus_clear_channel +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x4e4bfbe5 visorchannel_signalremove +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x5e533597 visor_periodic_work_nextperiod +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x60aaf74b visorchannel_uuid_id +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x720775df visorchannel_set_clientpartition +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x7948d062 visorchannel_get_header +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x7a4ec5c5 visor_periodic_work_stop +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x85b49e2d visorchannel_get_uuid +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x865e5ab6 visor_periodic_work_destroy +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x96401fe5 visor_periodic_work_create +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xa428b832 visorchannel_create +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xac7771ac visorchannel_signalinsert +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xae9128e9 visorchannel_create_with_lock +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xb4aab617 visorchannel_write +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xbffbaf78 visorchannel_debug +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xc6abcd8d visorbus_unregister_visor_driver +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xca18358d visorchannel_id +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xcc89f91f visorchannel_destroy +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xd371d2a6 visorbus_read_channel +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xd61f1c03 visorbus_enable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xe3b5efe1 visorchannel_get_physaddr +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xe5a95703 visorchipset_register_busdev +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xed313c21 visorchannel_read +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xf990f627 visorchannel_get_nbytes +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x14428015 wilc_chip_sleep_manually +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x242470d1 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x39cf1eaf wilc_netdev_init +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x51af4f9c chip_wakeup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x5cb26e24 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x76838e84 WILC_DEBUG_LEVEL +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x9de25997 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xb272bbe1 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xcf884801 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x7700fb30 int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0xa6c4ba22 int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x0806284e intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x226a29e9 intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x5b0b1de3 intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xa52e0d04 intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x02f590f7 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xdf2126ba uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xe0e0c599 __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x2804f46d usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x6a9ff5d3 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x60f04e05 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x628ca2ca ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x31f829a9 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x5e1156d3 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa22bb86b ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xbb1d4fc0 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xbd4db7b8 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe5c1da3b ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0fa6bc2b gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x311398b9 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3570bb2a gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3c6a1281 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3fab52f6 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6887ab7d gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6b4b390e gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7f998760 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8d9ed069 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa781535a gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbcff139f gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc19e0630 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc957b1d3 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd8ba90ec gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe0b1c7e8 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x301319db gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xee0601f9 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x1387b37f ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x3d1f737f ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x8a1de98d 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 0x1b1cc3af store_cdrom_address +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 0x2bc46298 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2c979885 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2e3d9eee fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x34e2f0a6 fsg_show_removable +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 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4b8204ca fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4c3240dc fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5398857f fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns +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 0x5772ab35 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 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x854cceef 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 0x87414910 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x88cc00aa 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 0x987bc0cf fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put +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 0xa46e6443 fsg_common_get +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 0xaaea3aef fsg_lun_open +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 0xb999b776 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xce7ad7c2 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xedae4375 fsg_show_nofua +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 0x08f862c0 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0e559b6d rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x15d3b09c rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x265a0d0d rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2eb3b362 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x48695820 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x64b49b10 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x913229fd rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x98436598 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa6ed281b rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb413479a rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc9eed4f6 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcb3bec28 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xde1ea594 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfe185d0c rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x00a3e7db unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c5072e1 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0ec4b767 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x225375de usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3da63324 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x499f837b usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x51efecba usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x596b9411 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x63d46519 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x66b6c82e usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7e24778d usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7ef43872 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8f5e6938 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x965ed828 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9aec0a8a usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa1baf619 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa3187d45 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa4b35341 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb81d6962 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc1899824 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd173bce2 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd19d38c7 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd429a27d usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd70ceadf usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd7c3cb8d usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd94beb89 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xed5075f3 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf0b4dbed usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf7a8bade usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfa20258f usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x009d1d8d usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0a18734a usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0c900b81 usb_ep_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x103395fd usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1940540c usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1a69a2d4 usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2539d982 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x28f88cbb usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2dbe69fe usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2e9029b3 usb_ep_fifo_flush +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3a53b0d2 usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3c01002c usb_ep_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x48f86097 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5162f30b usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5dfd8d26 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5f4e490c usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x653b3753 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x68f51e93 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6df3b831 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x77fc629c usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x86aa9286 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8f56931d usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x95f90d1f usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x99c74f29 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa176f511 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xafe8e0bd usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb6fa8d98 usb_ep_fifo_status +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xce3d337b usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd16b6bce usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd2d53c4f usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd2efec2e usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd67d8fa1 usb_ep_set_wedge +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd7ee30ec usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd8d32b10 usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe4bd6991 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf09df76e usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf5d60f5e usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x689ec4bd ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x86b85a7a ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4897f325 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4fc7313d usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x56641685 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5e157599 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6f9720c6 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8029e4d8 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9147dc65 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc1f11ceb usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xfe378573 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x9d20d4af musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x1e1a50a8 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x51c85f38 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xbee7b5bf usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xdc933bfc usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xf74e87bf usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x0612ec6a isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x5026309e usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x03a31482 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x16840d69 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3f171e6b usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x47f8297d usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x484d129e usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6c208aa6 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7212bd1f usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x82f53b69 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x909e5b0b usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x90fb1949 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xadfe2346 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb01fb210 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbfc7bd41 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc2ea3bb7 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd15c3efb usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xda0a8e1b usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe4173512 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf00daba4 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf4fec38a usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf5222c92 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfc478904 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0c0e6b80 usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0d50ff4b usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x470a0047 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x513ea390 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x551ce5b1 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5ee6b72e usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6c1131c3 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7a8eb9bb usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7c1bd090 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8d092a50 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9b82b584 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa1b54f07 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa76f047a usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xaca04891 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xadb3b723 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb516e2e4 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc3426f17 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xce6624e7 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdfccd729 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdfd487ac usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe3a09a02 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xea1be078 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xed1c1020 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xef1f5b37 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x17288c1c dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1cfb3b68 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2775bc2d usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6232180b usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x792de941 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x842f665f usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9d265cc1 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xabe4ec3a usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb0829a41 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb2e90eee 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/usb/usbip/usbip-core 0xea076949 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xed290a93 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf44c1b6a usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0800d46f rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0bd816f0 wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x150f1037 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x36d6eaa0 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x67e3ff5a rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x9d877773 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xd72eef26 wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xec19227a __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x00169ffe wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x1fd81b11 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x30b88871 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x59e0b4c2 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x604ea262 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7358f89a wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7d120623 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb52ccb12 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb991897c wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbc84f7c3 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc30ccd3f wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd5bf36d6 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xdda5c92f wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xeeea22b0 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x81d29a32 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xada90c96 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xb2f16cf0 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x1b86f662 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x2b6557de __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x2f237a1e umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x3edd351a umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x5235f0be umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x6262668b umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x7e94464b umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xb4a88602 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x084b3499 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0a06725f uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0ce147e0 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d78016e __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0ddbb7a5 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fc02440 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x164278ce uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x234e6198 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x26cc2750 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x29ae014d uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x45f368fb uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x55c196a8 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x582126ba uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5c0f9f22 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6242aad2 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6669cec9 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x681003b2 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x755bd7a5 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x787f7d4c uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x79906e68 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7a725adf uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x802b851a uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x885324e3 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8f991a65 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x90e2bdc7 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x937b766b uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x977d2d97 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa5578463 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xafe10401 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbd854b18 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc9711445 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcb82b4aa uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd27c5cf4 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd27d7f51 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe7f41e76 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xed73c416 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf9d63069 uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfaaecafa uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfb782a32 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x710fd38f whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3006c118 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x30dfb7de vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x63cb0ad5 vfio_iommu_group_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8817ffb3 vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9c93a4b8 vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa0193a9e vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa7ee383d vfio_group_get_external_user +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 0xc4aabeca vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd9e91be4 vfio_iommu_group_get +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xd929b882 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xfb266823 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x000c3c65 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x037df7d1 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x07bacd45 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x08bdc8b7 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0efdeb03 vq_iotlb_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x114a9cc9 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x17f53fb0 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1b6c30e2 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x221ccf95 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x28c29b33 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x29def37c vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2b220203 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2f1c7911 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x334c623d vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3453350d vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x40ff6122 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4a3fec82 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4aaa677a vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5011cd64 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5c8c050f vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5cddb1e8 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6b18b275 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7eeb1e10 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x80bb1029 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x843f6fc2 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x887769b3 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x89b9e97e vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x956f9645 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa0d45f90 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa0f10c52 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbe40d9aa vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbf77f871 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc01030b0 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcdd73bd8 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xedecede9 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xefc8bdce vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf1f63e3a vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf9f877ef vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfc11147e vhost_log_write +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 0x12e9d466 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x279f88ac ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9653d787 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb02a0151 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb8023edb ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xbc6a9714 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xfc64eb31 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x087aa031 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x158b90ad auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x341c97d9 auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x34c68e6d auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x64f3bb6d auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x760193ad auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x84757442 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xc92eee9f auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd1ad83d7 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xdc5d9867 auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xeb5a13f8 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x32894a6b fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x67522124 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x2e2b0281 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x5caf4b6d 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 0x22a7af24 viafb_dma_copy_out_sg +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x292da7a2 viafb_irq_enable +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 0x79e6190a viafb_irq_disable +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x99a81903 viafb_find_i2c_adapter +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 0xfff2dfd2 viafb_gpio_lookup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3beda810 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x73de48a9 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c935f67 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8598c544 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd9046992 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xdf37d9dd w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xfbc39b7f w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xfc4ca60c w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xfd83b608 w1_read_8 +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x7384d70f xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x1991ade2 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x21a0291e dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x5f54d336 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x163ac6d7 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1dc98937 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x29ba45c2 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3c0ad6b7 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x439a56b8 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7829a34a nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xcb051d3a nlmclnt_proc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0598ebf9 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0896f96c nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09802960 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b2b4ec6 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x166a6d29 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1cb724ff nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ddfbca9 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ec8d97b nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2185a8e4 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x226428e9 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22f0184c nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x238375ab nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2642bd28 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a8cd7d7 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b012a24 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b55a56a nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d6ab67a nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fab261f __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33258db2 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x334fa961 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33c7679e nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37227d5d nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3839b24f nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39325407 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x399a7076 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a0c42c0 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b28c363 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e032877 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e488e58 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ef3b1f0 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f231493 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f9655b3 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40207f11 nfs_permission +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 0x491a6b61 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x493aefcc nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x496f2ad3 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c5b06ae nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4caf8d8d nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51527421 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x550d53c7 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e8272af nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ef28004 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62414d7e nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6530b868 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65d6e24c nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6700f317 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69f98956 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a7fdc0f nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b345b09 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b7d41fc nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c2c9498 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6cfbfe1f nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f0ca15e nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71a6cb56 nfs_commit_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74598343 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74a81faf nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74ee8f24 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75f4b564 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76ace13c nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77657ba1 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78102c7d nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x794d5f3c nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a77af77 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b64047b nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d31bb62 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8180ea0e nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82e98181 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87e2c1b6 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b46a5be nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d5fe8aa nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d6eb0fb nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e614658 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x907e1a74 nfs_show_path +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 0x937c579b nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x950e5e66 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95e5eafd nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c2ff468 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0150f32 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa186b976 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa27aad92 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa45f2d80 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4807b86 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa486c6ff nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa687b24e nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab56cba8 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac1e60f4 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaec55084 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafacd1e2 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1b14bc8 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1e6970e nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2c668f6 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3bd7672 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6633fca nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb83fa04b nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba22677a nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb6c812b nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbae47a8 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcf17267 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdd4ecd3 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbecd2a07 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbef0b534 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8703832 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb5679cb nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb71f866 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd0ab28b nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd3eec99 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd40e2ac nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce1ad1b5 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0bc2973 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1334e5e nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2eb5d2c nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5d67a2e nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdaf9a265 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde0d8c6e nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdee294a8 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdfd5f701 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5205023 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb522fe3 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee0513df nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefbd4211 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4846e43 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf76a56d9 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7f2861e nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9bb5d5c nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbe0a20f nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbfbeedb nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe7b456b nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff6f8f3e nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x3a64ad26 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00b44caa pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02a5ad17 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x05297368 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16a26f2c __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d1d2fe1 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2139f331 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x21c9f31b pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2688ee25 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26d7c8ba pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31be0987 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31f92a41 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3a9c5a34 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3fed4576 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x409a751f nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x40e52562 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4179e2ef pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b60d6fc nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c99359d nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f7b3d19 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5035f87f pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50ac0ad1 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51e1d919 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x586b044d pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5d3cc3bd nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5de5d65b pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62253f84 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x669dcbd1 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x67631025 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69ab4432 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71a7e7d4 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79e5c325 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a00684a nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7bd59f72 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e39373b nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86830f79 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86941b8c pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x89af8c76 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d58203d pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c1947f3 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa25ff68e pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4d2f535 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6f1f2a4 nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac4fc03d pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb03294be nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb113430e nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc95a46b __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc148b631 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc72571c4 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc9c2727c nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce2c879a nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0685c91 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd10630a0 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd76cee36 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf1ef2c9 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe23548d0 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe2492a06 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe321a6af pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe4a94a58 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5f4cb0f pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf0bb87b4 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe14b099 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x0e9577ad locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x6655ec53 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xb5b542b4 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x5c27159e nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x9a317f88 nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0574a3cd o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x231328d5 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36a28a9e o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3ceead6c o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6e71c8ef o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x858d3cf1 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xdc3efe26 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe5172319 o2hb_setup_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/dlm/ocfs2_dlm 0x4f1e0a5c dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x50ff1bfe dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x8d73ec0b dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x944209ce 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 0xe07cf0dc dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xe71cef5f dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xb135e563 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbdf105e5 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xce1eb897 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd9a73ce6 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x3bf2cf19 _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online +EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xa627de2b _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xd46eb273 torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x7a93cf30 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xb0b18dd6 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 0x201d8ea3 encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x0adcb055 base_inv_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x221df614 base_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x4da25bec base_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x63f42b6a base_inv_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x76203267 base_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xca3140ce base_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfa5eee0a base_inv_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfc02472a base_inv_true_key +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xb5a4f8d0 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xd619933b lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x4c307c2e garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xb5d21b94 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xc84fa868 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xdb39f99d garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xe33dd78f garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xe3e3b525 garp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x1f47d8d6 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x316b180f mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x7c78e37a mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xda72a146 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xe0bb3466 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xe6d616fd mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x42a3fd66 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0x75d8bd77 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x33899b3a p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x43ecc1f0 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 0x16f393a2 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 0x44e1d7cb l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5c8b6a40 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x64f96436 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xad93354d l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc20072d0 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd170bc1f l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe3586b13 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe9affb7a l2cap_chan_put +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x107a1834 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x181daebf br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1d76b9ca br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x273ce6b5 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x83aa7a11 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc94cdcf5 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe1d2d5a4 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe37b4861 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x09fee55b nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xe2fa9d90 nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/core/devlink 0x14b7ad2f devlink_alloc +EXPORT_SYMBOL_GPL net/core/devlink 0x1fcebd58 devlink_sb_register +EXPORT_SYMBOL_GPL net/core/devlink 0x35a73249 devlink_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0x39559350 devlink_port_type_clear +EXPORT_SYMBOL_GPL net/core/devlink 0x3a47c8df devlink_free +EXPORT_SYMBOL_GPL net/core/devlink 0x422e6222 devlink_port_register +EXPORT_SYMBOL_GPL net/core/devlink 0x56fe4f2f devlink_port_type_eth_set +EXPORT_SYMBOL_GPL net/core/devlink 0x5d437c3d devlink_sb_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0xb1fa8912 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL net/core/devlink 0xb2baa138 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL net/core/devlink 0xe3c82dd4 devlink_register +EXPORT_SYMBOL_GPL net/core/devlink 0xe8d09184 devlink_port_split_set +EXPORT_SYMBOL_GPL net/core/devlink 0xef0fc1a5 devlink_port_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x09eba106 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0ac37f7c dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1efefd4a dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x22e621f5 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x28b74081 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2a897abb dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2e9cddc9 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3066b7f6 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x309a5576 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3ee09bf6 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x427919c3 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x49ffba98 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4dcacb42 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5b052d9b dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x63fd73f1 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x68343c71 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7a917337 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7e9f66a7 compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8d937b29 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x97b50e18 compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9c02ff87 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa03b2a29 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa79f98fe dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb850108a inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbc3308b0 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc874393e dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcd1b39f6 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd0f7e9c1 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xda4405c2 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xde4e2552 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdf0b738a dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdf443dba dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xebb9fabb dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf2cdf32a dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf59373b5 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfc52f6cd dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x04eb211b dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2ebbef3a dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3c2b1e02 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x43d77333 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd3a0b288 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd68b0ec6 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x08077d33 register_switch_driver +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x99964d0f dsa_host_dev_to_mii_bus +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd42c189c dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe30447f4 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xee6c665d unregister_switch_driver +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x18a06d05 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x68002a40 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7af427cd ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd6698465 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ipv4/gre 0x7e861883 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xc38c8932 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x36b38e3a inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3e336b05 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x64d6ee1a inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6e7689fb inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x862bb38c inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb13b8356 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xcb9fe030 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe32243dd inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xed26a8ee inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xaa6632b8 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x06f2f50b ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x07b9179f ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0d90584e ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1473f7a6 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1d472872 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6ad966ec __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6c8ecf8a ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x83ebac5d ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8e259375 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9220ece0 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb79162ff ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xba2c00af ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc55f9097 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd8c37319 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe1cbb242 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xd56028fe arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x8236dbe7 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x03ea0fd9 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x49114c95 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x6e622fb9 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x7e0185c0 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x8048fce5 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xac0d6d5c nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x670c3c94 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x13349b5a nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x14d97719 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x26e99d84 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x28f29453 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4244b472 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x251113a9 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_nv 0xb2a4bd5f tcpnv_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x17d6602f tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xca187d50 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xe4ad34ad tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xe5b2b816 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf5c1a0fe tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0aabe368 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0e1789d0 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x21fe9488 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x577f71d7 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7906b74b udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x88d395da udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xfb09453e udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x4f19b8b6 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5b5bd466 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xbf2fb973 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x2f955336 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xa0ea83f4 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x7db5c5dd ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xd19862ae nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x1673ad9d nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x6b9f52eb nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x6dad9b12 nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x7fef827a nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x9a8a1d4c nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xde825813 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x79cfea01 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x11b323d5 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2ce5d60a nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x39b74b86 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x923ec3f6 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xcfac4450 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x687801f7 nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x02bea775 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1851be35 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x624734f7 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x63fd558f l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6e72ca24 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x73df4f98 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7b2bfb41 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x81538548 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x846b9561 l2tp_session_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x873ebd9f __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9bd895ce l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xad7e158e l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xae573d37 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe32fafa3 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xecb5fc15 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf929b554 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x4547c5aa l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x04313051 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11e1f72f ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x12ec1b34 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x18ab70f7 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f9aac4f ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x40db49ea ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4cbf3e5d wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5dc58d00 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x996cf7e4 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa0e88ff7 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1100127 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa606bdda ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xaddd4eee ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc26ea024 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xce7bc03f ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xce7d52e6 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd718bb6c ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8636a0c ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x012d8170 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x0678499f mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4888733d nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xaac9f58b mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1c4251fa ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2637493e ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x29ad1d6b ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3c992a49 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x46736a83 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x47c1973e ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4ee47e23 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5c46a49b ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x63fd0e17 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 0x79acbe71 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x906c2327 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9f20423a ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb90b4332 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbda9cabe ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc6cb1114 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf5f5ad4f ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0c96a207 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0e7c693a ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0f73ab88 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe500df01 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x044e228b __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ef03ee1 nf_conntrack_get_ht +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x103f284c nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11bdd15b nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1497885b nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x180ca8b0 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c0a4404 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1dc87311 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1df44363 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20e5917e nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22718892 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25e89098 nf_ct_timeout_find_get_hook +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 0x32aba53e nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32dc5090 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ac678ee __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4289b80c nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x42d24931 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x49430c46 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b539e86 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b7f5281 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c80682c nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4db8cec7 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4dd04991 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x51dadfb3 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57429c45 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x58f5187f nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x58f70e38 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a3f010f nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60976579 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x659b3a8a nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a18dc58 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a83dacd nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6db175a2 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6db83f5a nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7077c93e nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70c5baad nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70daf7a8 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7213f071 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73c4fa3e nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73cd4f61 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74ead9df nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b7cb746 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ba67c94 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8095bc5e nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x81346277 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8412772e nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x878fab05 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b3a6b39 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c8246dc nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e7543d9 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90f60ceb nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92f8c7fb nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f533689 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2c06e69 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3fc73f6 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4c4bb6c nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae09d6ea nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb3f66f7b nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5f1dbf4 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6cd1889 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb82e93df nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba9d58fb nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe283369 nf_ct_expect_register_notifier +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 0xc964aeb3 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb8a4f77 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd14f154 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd079a805 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0a3b4a1 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd476f8bb nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd668922d nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd732540b nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9d2da0c nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9f77d3a nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf9712f7 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2f8da22 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe5ae3450 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6409a39 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7a3b563 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea3d0eae nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea7c1514 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeeb40382 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0ae058b nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe3abac3 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff780999 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x9b83897b nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x6c9db0a4 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x035d5755 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4a9cf840 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x660cffa8 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x69dda751 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7ea63da5 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9fa5a5a8 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb334eebd nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc5926f3b nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd8c388e5 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe5fc2839 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf2db67a1 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x302e55a2 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x22f5c6c9 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x3a85c715 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x746dd220 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x9bfbafa4 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xb3545a96 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xd7461043 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0f4555f1 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x817e10c6 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8535d6df ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc1be2b11 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xdedebbe8 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf5177f0e ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf6e240a8 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x356ddfcd nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xf55164b1 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xefc03973 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x2176546d nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x481cae17 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x538e88fb nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x54272a00 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x166d3760 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x20fbd78c nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2470587a nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x37632575 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5393ff26 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x58714e58 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6174c5b9 nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbed9ebf4 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf55f54a7 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x6af388ac nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xb43fdf7d nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x108d4287 synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd8de311d synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x16531e25 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1ef23326 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x213a8729 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x251c41c5 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2bd87894 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x319f0041 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x34ed28b0 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4d652f90 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5a8fb46b nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5c797afe nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x697ba9c5 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7e5386c1 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x858def3b nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x899dca98 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb6f114fa nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbdb9d0a4 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe48adc81 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe9f5fabd nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf8a51af2 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xffc07784 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1869d26f nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x212a4a31 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x29cc1f31 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9038c33a nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x97a79a74 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdecd35c0 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x4c3922a8 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x95b6d93a nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xb6a95c34 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x9f0f681c nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x3209cebf nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x90c4c52a nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x9ef37c63 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x089c0cb0 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x18502292 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x56b4bd06 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x5d8dc876 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x7e8f4e92 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x7ff2c033 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x893ac919 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xc0360b82 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x2ad226c2 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x8141cb41 nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xc0beb102 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x0f570d7c nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x563bb0f7 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x58e014a3 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x004c857f xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0654f258 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x100469e7 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2111af7d xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x27c350b3 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2c8cea34 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3c9a2757 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x418ecb94 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x517ec1e4 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f377343 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7f03a253 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x84044937 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8767af15 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x879e06d7 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa6dcbe14 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xba5fe9cc xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc34e81c6 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd940513e xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x4c32c169 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xb7459345 xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x34955061 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x5863b9bb nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xe4bd3bf5 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x0524a4c8 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x0f861846 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x9407861c nci_uart_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x04fdb1e5 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0c0ebe35 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x47cc6f87 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6273fa2a ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x97558035 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9de75fc5 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa5a2ac2c ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb50fbb53 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc53e7daa ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x0b4060aa rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x11110322 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x126e24d7 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x19cc5b60 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x259d3a70 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x29b53a20 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2e9f43af rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x41500b2e rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x4332b920 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x4d2afb95 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x4d49a98f rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x4f78a571 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x5b19f44b rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x6bd55ee2 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x6f3b31de rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x72a86430 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x7d72090b rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x80bc05cc rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x88efb493 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x8cea99d8 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xb3d6a612 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xb7f66844 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xc12f02f7 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc5c3830b rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xde673448 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xe8cdd33b rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xe93c3bc5 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xfafb87cf rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/sctp/sctp 0x41f7dbc0 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x6d5d8f4c sctp_for_each_transport +EXPORT_SYMBOL_GPL net/sctp/sctp 0xba757a66 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xbf98b98e sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x1aa2f71d gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2f0cd28b svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x77f6c513 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02bc4b4c rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x032c6308 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x039736e1 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0465fda1 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0657d590 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08e1072c xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09e755f8 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a18a1cd rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c4b9ada gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d839b67 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0de2b6ef svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f366964 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fc48a00 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ff07ed9 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x125287b0 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1253ddf3 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x129125b1 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14b271f1 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14c16a63 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15a0a916 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1618773a sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16e782c2 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16eaca25 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x184b8c49 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x187d5202 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19360814 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x193d6663 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ac099ce rpc_lookup_generic_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bb85e80 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d7d6973 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1de83318 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f81a39a rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23871da8 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23890037 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2454554f _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27336abf xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27ff243d rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a12021b rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a809b46 cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2baad671 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c037db6 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cd990fc xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d16294a svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ed308 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33385340 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3453b1a6 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3486cf7a rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x352cb7cb svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x358440e6 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x364ee7ae xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x375a837b xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37c3c34d rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x381278d0 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3938ef3c svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x399be051 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39dbafa4 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a890bc6 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b1aacbb svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b647b6d rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bd0c80d rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c48b4de rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d8a2f98 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x408e678b rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4289ca9b bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44b9e6e9 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4680ce1a rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47b64e2e xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x498a98fb xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a626255 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c5f912e xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d8347c9 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e240ea1 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e764f3d xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x511284a5 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5446bbda xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54db75a1 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x551d04ff rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56ada937 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57750b29 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5890ce08 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58d2ebd8 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x598dc003 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59f09af7 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a04e589 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b16c553 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bacbae4 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5be182e9 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c88c6d1 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d9f2bc4 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x600c61fd xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6036707d rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61ed1635 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64f71196 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x653a3176 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67e40230 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a4d4c46 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a7d78d2 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cb99272 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e87b1b5 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f6714d7 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ffb148d rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x708a59d0 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74ba319b xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7518b195 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7540ae8d sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x754f2b72 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75ec77fb rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x770cf9f0 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x777f3b87 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78ba686a svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c620c30 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d5cf139 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d9e1d86 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80c6a808 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x819ae49a xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8240b021 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85a8a8fb cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x860341f1 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86260723 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88ebf96c rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ab8bd21 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b455c52 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ceba2f5 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dd4f1ae rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f761455 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x904b7f48 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94a0dbb1 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94e98a8d rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x952820e7 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95e79601 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96925b14 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98f60271 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b0d2fe4 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ecc9d99 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0776a73 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa091aef8 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0d4ed5f rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa15eb44f rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4b708f7 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa50b8ef9 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa58a8840 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa76b242b rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9a906dd svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaaada512 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac3c9b34 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad45c6f7 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadc5ac31 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafe3f54f xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4ff0c56 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb57b4bf0 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5c33e94 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb612b223 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb72a9a44 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb764f10a rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8ce556b xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8e2f26e rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9edcf74 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbac16ae4 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb5e9c8a cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb9984ce write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbd76961 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbca27fff sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcb14682 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd403561 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdc89857 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbec25cdf rpc_uaddr2sockaddr +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 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4af8f08 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5616de8 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7acad25 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7e684a9 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc827e58e svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca3689e8 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb7f48c5 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd422b64 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd09fc029 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd126d1aa xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd288411c svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd37dd848 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5788176 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd60ec5ae rpc_cap_max_reconnect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd70db0b5 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7d843f0 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8c62abd rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9915f70 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9c740d1 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdaadaebd svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb4439bd rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd4ceed6 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddef894e xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe11a02a9 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe11ea56f cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2f7a7b2 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe412c8c0 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe469d5f8 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5b72d4a rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe98ba91c svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec4c068e rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee4cfd45 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf336d517 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3a56794 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6745a7c xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf738b53d xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf80d4c02 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8738948 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd361f3f svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd659076 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0bfc0527 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0e05c878 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1e77868e virtio_transport_get_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x21409eba virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x23e29af0 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2b10cb73 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2cca2268 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x30d3b4e8 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3c934653 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x414a8be1 virtio_transport_get_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4471068b virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4e87b9bf virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4ec96a05 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x65f9b3a3 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6b5c2b5d virtio_transport_set_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6f1a6447 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x73d3909f virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7dd73a1e virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8c109203 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x98d42558 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa1c808f5 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa5aa489e virtio_transport_set_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa6e7fbca virtio_transport_alloc_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa9e289e1 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaac2e03e virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xab15c273 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xac719825 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb220343f virtio_transport_set_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbcb59b40 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc10f119e virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc5c1914f virtio_transport_get_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xda275db4 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdd24cb71 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe16ca3f8 virtio_transport_stream_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe49249cc virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe5dadcc3 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe7b7477f virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeb08f5ce virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x25133ec5 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2e496815 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x38e0976e vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3cfc0e87 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x41b29f91 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b8705c4 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7879c5fd vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8605d9b8 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9d0bc213 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9d2b77d7 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa7207da9 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa981bca9 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdeb15999 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe53e259b vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe644cb8e vsock_remove_pending +EXPORT_SYMBOL_GPL net/wimax/wimax 0x02a1958a wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x29e22c4d wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5a7040ec wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa4e190ea wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa9b81291 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xba37db10 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xbe59c6b8 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd293f50d wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd9fee8a4 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0xddfbb664 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0xec891a22 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0xf46139f7 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0xfa4723ca wimax_msg_send +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0e88a765 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x382feb69 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3be5d7a2 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4f58d84a cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x55395088 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x66d4641c cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x784c03f2 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7d008fe9 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8373547d cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa5b304e2 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb81ea996 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbdb303b6 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdd2eb106 cfg80211_wext_giwmode +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 0x3bf471d7 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x68255f37 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7a84135a ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x8793847d ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xce0fdb2d ipcomp_destroy +EXPORT_SYMBOL_GPL sound/ac97_bus 0xedd9b70b snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x829d4314 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xb770bc8a __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd 0x2d7c6f63 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x4d35c885 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x4fb6b4ed snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x54bf4421 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x74ad349b snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xd47cc1fb snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xf242d5dd snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x8ff12ae5 snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xa45b0d48 snd_compress_register +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xad2b8460 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xc0606f2e snd_compress_deregister +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 0x1e2301e2 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x272f6971 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3593f55a snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x41758e3e snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x567e7dca snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x671e2c00 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x68900cde snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8b3eeb82 snd_pcm_stream_lock_irq +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 0xd79e796a snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfbd8538f snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x13b45ed5 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x25fe3bb5 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x409bbb95 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4462150d snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4805ce9f snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5559183d snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x568ed69b snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa5248700 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd1a2639e snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd1daa968 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdb72fa8b snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x67efd2fa amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6adfe2d0 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7626ccd3 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa47acaae amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbebeac9c amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd452d158 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdba7b74b amdtp_am824_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x077b8432 snd_hdac_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0ffd1111 snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x127a287a snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x174ab6e9 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1af1fb5d snd_hdac_ext_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3083c038 snd_hdac_ext_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x33a7f3b3 snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x33c33139 snd_hdac_ext_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3cc98774 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3d61c489 snd_hdac_ext_bus_device_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x40197439 snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x43739e3b snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x501b7318 snd_hdac_ext_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x59fd3dfa snd_hdac_ext_link_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6371b411 snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x675ebf1b snd_hdac_ext_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6d2654bb snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x70689665 snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x73a5d8d3 snd_hdac_ext_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x79978017 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7dd88152 snd_hdac_ext_bus_get_link +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7f39f4d1 snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x871b285d snd_hdac_ext_link_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x93e14d00 snd_hdac_ext_stream_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x99265a92 snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa74c2635 snd_hdac_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa7971fe3 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb155b8c7 snd_hdac_ext_bus_device_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbb0970b9 snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc2ca8563 snd_hdac_ext_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd7828b55 snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xda275749 snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdca67337 snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdfe3ce0b snd_hdac_ext_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe2a20a7c snd_hdac_ext_link_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe702b660 snd_hdac_ext_link_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xef3c0d8d snd_hdac_ext_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xfe3fc969 snd_hdac_ext_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x03eb6c16 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x04ff54cd snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0566eadf snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a8973f5 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b9433c4 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0df494d8 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10b00509 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x126de135 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1290f86b snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12c31f41 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x13df3e95 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a37a1c8 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1b3996d4 snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x224aaeb0 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22798ee2 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x27850e70 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2dfa1796 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2f11d707 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x334463e4 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3783819b snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b923d42 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x435a8129 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x44ddd8f9 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4d0f2139 snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5205c82a snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5252a667 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53706a7b snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x57222aff snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d4966c8 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f07396b snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x605619b8 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6268f9b9 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x65bd0a77 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6687afe2 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 0x6903739b snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x69ab2acc snd_hdac_i915_set_bclk +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6af25315 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d7a3690 snd_hdac_i915_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72318ac9 snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7445c845 snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x75ab32ed snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x761bbeac snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7673260d snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x76cd7b0c snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x78a62497 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x79ff7b6a hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7cd56bc8 snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fe25ece snd_hdac_i915_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ff96739 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8412ef99 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8906caf0 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x89cd3dd7 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x967b7360 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9caf161a snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9eba354c snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa172e0be snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3f5e839 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa5056bb2 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa8efeefa snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9644535 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad49512f snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4283577 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb9cc0710 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbab25ab6 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe03ad3d snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc83a194f snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcaa2c20e snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcf7a208a snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2c5d1c0 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd66ebe2b snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd6e85b73 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf946ad3 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4eab0f0 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe5be2782 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeea3571d snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeeef2ae8 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xef0fcf36 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf1a7621b snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf58a9e76 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf78e1b6a snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfd12c145 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfdf73f0f snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xff438fd4 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x817ffdf6 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x8526bffe snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x8f8ae555 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa2fdb3f0 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf5be108e snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xfef77440 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02a3825b __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03724c38 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0517cc0c snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05c6d26f snd_hda_correct_pin_ctl +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 0x0b5e659f snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c5dcc6e azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1098b7c0 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10f87079 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12368c31 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14bb187f snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18947f5d snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18a10c11 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x193bc0d0 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1aa2fdc6 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1afba61b snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c18effb snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1fe090db azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21134825 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2190c606 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2543cbbb snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25691830 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2cfc7c97 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x343c3e94 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38c47a1f 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 0x3eb71fa8 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x407b7010 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45559e88 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x455e14e0 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47593630 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x497583e7 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e1ecd2e snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f877053 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5002ebfa snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5530c997 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6477edbe snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69fa3714 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x734c8574 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73d4346c snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x744f1ae4 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x745c3dfe hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7631c796 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x780afe5b snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7960668e snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c158c47 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7cd57434 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7cf91794 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d54c9ce snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e9529d0 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e99f5d3 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fc4de03 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x801cc7b9 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8310c197 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84b11978 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85b72fae snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87ed39ae snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88d2b324 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8bf1f1b9 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x903acf0e snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9128d2a1 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x928d6488 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92e2d71d snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x940f95f7 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x993fef9b azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e0e9366 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa12f0ae8 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa24ba147 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa89d3781 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab623da1 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac985012 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xacc23fd4 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xada39ea4 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0c7590c snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb260a4d6 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2a4fd05 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5e31a40 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb644ed1b snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8a4bed8 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcc05e87 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd24ce2c snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd4a141e snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdb198b2 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdebdd95 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbec5b07f snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc07d0fca snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc433eb40 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6471d38 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc66a2135 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc86f8a3c snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8ed9009 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc907c826 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca61d5f2 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc160067 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcdd4bae3 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1303454 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2b8e9fa __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5e1dff7 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb05fd63 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdee584b2 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdfafbd00 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe079cac1 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe261ae73 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe29b41d8 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2d753ca snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3160b3b __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4cbe4c3 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe569c6b6 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5cf502a snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe62ff5c9 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7656e0e snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9cedf9b snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea544a6c snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebad88ab snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec0f3eab snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xece8a302 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed9e10f1 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee58ab3c snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef3f8321 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef57a225 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf03ca26a snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf16b4042 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2ce9e4e snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf32d6da0 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf894be4b snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd865c55 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x09c0696a snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0dc07428 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2c135b06 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2cb1894d snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3590723e snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x45bb7116 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7436e45f snd_hda_get_path_from_idx +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 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x886f31a8 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc4fdc96d snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc84fda9b snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc9c12e28 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd4f8df37 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd9e3c9e4 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xda22c862 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdfc88150 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe000383a snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xec1b1027 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfab1e380 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfb2e0c0f snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x6fa0ca0b cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xc0d05bb9 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x10e46c7c cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x212aff13 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7717a33c cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xab40fb99 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xfc455f69 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x1091d10a da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x4ed56fff da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xfc1481dc da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x5e3c0d19 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x6ba50811 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x35a10f39 hdac_hdmi_jack_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x3a0c20c0 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0xb77a5d83 nau8825_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x4693e25f pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x6fa23f1f pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x757bfbb8 pcm179x_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x38650958 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x64a2a4ea pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xca8642ae pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xecfe7c99 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x717d2511 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x79e057c1 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xecca3ce4 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xfa094f36 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc +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 0xc49f899e rt286_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt298 0x220db4d7 rt298_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x635029cb rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xdb981d96 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x67ae2685 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xdfe8a0f5 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x359c0032 rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x4d0a83e8 rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xb671abe5 rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xfc0d1f68 rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x06661d01 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x23200126 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5b7f233f sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb4876232 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc2536e8b devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xfacb3d12 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x0fb1b0ec ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xc370a5b0 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x16ec13f0 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x56cc3532 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x76f3818b wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x86ebceab wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x91e0ad7d wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x9c1d7eaf wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xd4c97c46 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/dwc/designware_pcm 0x7abd6f51 dw_pcm_register +EXPORT_SYMBOL_GPL sound/soc/dwc/designware_pcm 0xd3503f2a dw_pcm_push_tx +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xcf28c301 fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xfa895b22 fsl_asrc_get_dma_channel +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 0x211b42fa asoc_simple_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc4e60223 asoc_simple_card_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xde2be3bd asoc_simple_card_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0x098cc3c6 sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0xe3815d7c sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x0f55432e sst_context_init +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x37846d5f intel_sst_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xab14edd5 relocate_imr_addr_mrfld +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xbce7ca5b sst_context_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xdcd0aedb sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xee299ce7 sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0fc2ff57 sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1131f964 sst_dsp_shim_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1b5e8b82 sst_shim32_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1ef0ac24 sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x25f9b570 sst_dsp_register_poll +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x36c9379f sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x416f464d sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x45c434fd sst_dsp_shim_update_bits_forced_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4a045773 sst_shim32_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4ba6f35e sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x64ce397e sst_memcpy_toio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x66aaa87c sst_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x66adbb1b sst_dsp_shim_update_bits64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6cbfbf1c sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x736eca75 sst_dsp_boot +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x73f8b03b sst_dsp_stall +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7c9fad29 sst_memcpy_fromio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7d225e3b sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x81620c72 sst_dsp_shim_update_bits64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8e57260b sst_dsp_shim_write64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9aa0e4f4 sst_dsp_reset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9be98208 sst_dsp_dump +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb1af5528 sst_dsp_shim_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbcec5387 sst_shim32_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbd4f3384 sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc8e3fbf9 sst_dsp_shim_read64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xcefe565d sst_dsp_shim_update_bits +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd09f40f3 sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd0b5021a sst_dsp_ipc_msg_tx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd9a2c94c sst_shim32_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe281d72c sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf8422b96 sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfb944c08 sst_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfda8decc sst_dsp_ipc_msg_rx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x01923352 sst_block_free_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x091113ef sst_fw_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x1b19617d sst_dsp_dma_copyto +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x1f2665be sst_dsp_dma_copyfrom +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x25a18d3b sst_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x2931273f sst_mem_block_register +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x3a8f3ff8 sst_fw_free_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x3a956de9 sst_module_runtime_restore +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x3d240133 sst_module_runtime_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x3e2f65f1 sst_fw_reload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x3f7f1dbd sst_module_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x45c3eb7c sst_module_runtime_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x4800dc50 sst_module_runtime_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x48796e1f sst_dsp_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x493d5112 sst_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x4abc3c6b sst_module_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x55a35cea sst_module_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x6987700a sst_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x75dbdd2d sst_fw_unload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x7b7e4c5c sst_module_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x838be84f sst_module_runtime_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x9124f894 sst_module_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x971c7ac4 sst_module_runtime_save +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x9c3defe4 sst_dsp_dma_get_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xcf2bc017 sst_dsp_get_offset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xd0bbad63 sst_fw_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xd46b7555 sst_mem_block_unregister_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xe7c74252 sst_dsp_dma_put_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xecd6e577 sst_block_alloc_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xf9bc6ec1 sst_module_runtime_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x1a24670b sst_ipc_drop_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x28ba63cb sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x61b77120 sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x6730c22e sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xa74c968c sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xb49cc5ab sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xbe657e6e sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-match 0x4ed20969 sst_acpi_find_machine +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-match 0xa150755f sst_acpi_find_name_from_hid +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x8c25c8bd sst_hsw_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xc2060e3e sst_hsw_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xd1f69f64 sst_hsw_device_set_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x006e6153 skl_ipc_unload_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x251a81fc snd_skl_get_module_info +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x28f2d644 skl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x342df358 skl_ipc_get_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x39f4fa47 skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x4247f0d5 skl_ipc_restore_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x4b51454a bxt_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x53c8576c skl_ipc_init_instance +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x5913177d skl_ipc_bind_unbind +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x640a2fa8 skl_dsp_get_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x6c16c551 skl_dsp_put_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x90ec82bc skl_clear_module_cnt +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x93df4825 skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x9f09419a skl_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xb63d762f skl_ipc_set_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xc55bf143 skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xc7532001 skl_ipc_load_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xda8a3431 skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xdcd0a6d4 skl_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xe941df75 is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xeb639a1e skl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xed7fc592 bxt_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xef4bc765 skl_ipc_save_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xf54315fa skl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0089c072 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01a33041 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01b8cfd5 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01f98dff snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04485f15 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0451d126 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04ecdc85 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07b0e020 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08cb7517 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b68e5f9 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0bf84f38 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ca2dc51 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0dfeba8e snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f5e1288 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x100c170a snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10eb6e3c snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x120b5fa5 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1349772b snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16f906ea snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17634d92 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19432e64 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x198f39e6 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a0ebc63 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ae6db5c snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d6e217c snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1df243c4 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e5515e7 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ea4b322 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2350adea snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25829ea4 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29091ec9 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x296347c2 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bcb243d snd_soc_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d84df3a snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f180d06 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30d1a8d5 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32ee0593 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x366eb93f snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a1d1f67 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a60ee8d snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3af42910 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bb0db4f snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3cb5fb98 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d828e58 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3eb7a7d2 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3fd904f9 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40dc5922 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43c62ada snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44266d51 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x452700ad snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46d41910 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49f235fe snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b4af76e snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f1ba256 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51bfb9d8 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55082499 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a30b572 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a3f5e57 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ae4cdff dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d231ada snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5df63dc1 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fbcedfd snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x609d2d6b snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x610e8b74 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63071232 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x643e1651 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64affbd1 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65275215 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66981455 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6703cbd4 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b0f38ac snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b8a49a7 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6dfa5a48 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e052595 snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70d19ac5 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71246045 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x718fe015 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x725de8bc snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72da536d snd_soc_tplg_widget_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73cc6609 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x750d628e snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75894167 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7801d503 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x780fdb87 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7cd1a71a snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7dbb9a71 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f1cb593 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80b65aac snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80bd7d40 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x830be68a snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x834095ce snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x863a5b69 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86de4ec9 snd_soc_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89bce9a2 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f290e5e dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x900bf426 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x912ebadc snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x926a0193 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x967b3a77 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9779c219 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9788795d snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x980dc811 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9825d29c snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9925cafc snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x998f1cbc snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9aee9166 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e28da34 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f599dff snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0ce1758 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa12906a3 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa33735dd snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6222af0 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6c12490 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6f3c559 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7727d05 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7db4239 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7f0d95d snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa919cf0a snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaac9e0ef snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf05e2a3 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf90fe43 snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafbad61c snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb04b254b snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1988291 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2ba19ed snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3e4e964 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb72c8c47 snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8780678 snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba4ef4eb snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbaadb817 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe5a7f69 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0c77ced snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0cc38c3 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1157b2a snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1f8f10a snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc24d335e snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3d001cf snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc696b3c5 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc919a76d snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc94e7cf5 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9cbf2ba snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce1243cb snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd033ae5b snd_soc_tplg_widget_remove_all +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd384671d snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3efaa01 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd56b9115 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc010895 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc5999dc snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc5a37aa devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf892689 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3d7878f snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7cdadb4 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec1d16b5 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0c45f87 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf46eefb7 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7e0358f snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd574c3f snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd664d71 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe87ebbc snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x099399a7 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1e5de4d5 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 0x20b5cc53 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x23212fdd line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2cd20d13 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x35de897e line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6dbe3960 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x80b3d17a line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbfe59b4f line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd0802d84 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdb6ee792 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe1000e1f line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe1be36b4 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe367be47 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xeb47a818 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf5cdc633 line6_write_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 0x0034f3b6 xen_has_pv_nic_devices +EXPORT_SYMBOL_GPL vmlinux 0x0037e607 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x004d193f dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x006ffe55 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x007028b0 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x0097abc5 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x00a6c4f8 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x00e77953 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00fe49e5 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x01114a5b digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x01272790 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x01274221 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x012a8b9f pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x01339d69 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x01410b4f key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x0145f7e9 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x01474181 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x01591e5d xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x0160248d regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x01691daf acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x017cb9d6 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x018cb82d ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x0197aa41 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x01b85f46 debugfs_use_file_start +EXPORT_SYMBOL_GPL vmlinux 0x01bb2db7 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x01bb578b adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x01cbc624 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01f1a127 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x0221ce5d dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x0259caa1 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x026211e2 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x026fdc3c efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x029084c7 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x02cc229b usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x02debff4 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x02ed9acd pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x02ef3f73 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x030369ae acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x030c034d pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343862f usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0356c94a of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x03613e28 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x03707bed pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x0387ea0f da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03adbac9 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x03bb7402 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x03c08b40 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x03e198e4 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03e81583 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x03e8a34f pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x03f6dbe1 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x040797f0 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x042d5ea1 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x0431125c blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x045e7cc4 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0465e1bd tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x04689db1 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0475bc14 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x0485655f amd_get_nodes_per_socket +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x048f700b acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x04985490 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x04c3f2c1 gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04caf671 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x04d00b16 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04e2a0af register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x04e5683d wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x04e721f7 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x04ecfb5c set_memory_wt +EXPORT_SYMBOL_GPL vmlinux 0x04fa0e83 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x05045d93 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0517b9ba tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x0519697c devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x052225e9 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x054f8783 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x05570dcd usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x05646eb6 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x056b2851 xen_swiotlb_dma_mapping_error +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x059cdd8c __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x05c3e317 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x05c80dd5 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x05d0319c devm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x05f025be posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x060763d4 xen_swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x061bc9fa thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x062f898f __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x063299b1 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x064be957 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x064d5c0e sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x066c3f05 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x0673e8e8 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x069260b7 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x06972746 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x069878a9 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x0699e0eb xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x069d04ef pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x06a29a6d spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x06b1ba41 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x06b41888 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio +EXPORT_SYMBOL_GPL vmlinux 0x06dc21c3 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x070aea6b cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x0734557f regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x074b2a2f usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x0765af09 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x07838395 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x07854ce2 rio_dma_prep_xfer +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 0x07c57ffd phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x07ca9b54 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x0811cc9d vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x0813e87b handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x082ee602 xen_efi_set_variable +EXPORT_SYMBOL_GPL vmlinux 0x083cfcca perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x084af304 hv_is_hypercall_page_setup +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x0894b329 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x08a0eab3 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x08a4e017 tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x08a7adfe nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08c3233a disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x08eb93e8 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x08fce27c dm_use_blk_mq +EXPORT_SYMBOL_GPL vmlinux 0x090ae864 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x0940c3eb clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0961b62e public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x0962a031 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x097722ef serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x09777c7c spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0x097eebbc blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x0980fce5 isa_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x09861417 xen_swiotlb_sync_sg_for_device +EXPORT_SYMBOL_GPL vmlinux 0x09da7afc usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x09f61352 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x0a133026 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x0a42ff70 acpi_dev_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x0a4fde00 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0a67a801 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x0a6c1b8a spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x0a7b1507 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x0ad8cb26 devm_nsio_disable +EXPORT_SYMBOL_GPL vmlinux 0x0ae75454 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0af094f7 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x0af51dad blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x0af641d7 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x0b06ffc8 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b0f1094 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x0b15cd40 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b2e1a75 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x0b4d4e49 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b7a0604 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x0b949884 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0b9e3096 fpu__save +EXPORT_SYMBOL_GPL vmlinux 0x0bad5658 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x0bd597ff iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x0be967fb ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x0bec547e __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c17d573 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x0c208c9f mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0c2a1dc7 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c48ca52 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x0c652d33 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x0c7ddf9f alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c893d24 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x0c931817 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0ce50325 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x0d3b08ac ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d689858 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x0d6eee9e cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d849d2f virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x0d852e0f pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x0d9dde96 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x0da75a22 acpi_dev_gpio_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x0da7df1c regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x0dd944bc usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0dded9f4 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x0df925f6 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e09267d dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e175336 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x0e4e9e32 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x0e5ecd08 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x0e6ef321 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x0e87930a md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x0e973b75 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x0e9812f9 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x0edbbc59 __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0x0edbe971 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x0ee2b736 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x0ee96bb0 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x0f004781 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x0f0fdf26 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x0f1ce799 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f36a170 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x0f3ec29e efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x0f43efb7 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0f471690 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x0f53dff7 user_update +EXPORT_SYMBOL_GPL vmlinux 0x0f57702a badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f847c4e acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x0f9b9c92 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x0fa138de xen_hvm_need_lapic +EXPORT_SYMBOL_GPL vmlinux 0x0fc2d41e kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fcd36f3 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x0fd6c9ec perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0x0ff4cff4 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x0ffb78ad scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x100a7997 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x105603bf md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x108117d2 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x1084fb62 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1099de55 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x10a97eff cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x10c4b145 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x10e0056d to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x10e9e7b5 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10f8901a __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x10fc8ad2 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x110022d3 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x1109da89 cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x1117897a uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x11499aaa rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x115b5e38 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x1162b011 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x116eed9b crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x117c7305 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x118064fb ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x11ac8d29 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x11c1ebd9 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x11caddc7 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x11d5e8c2 xen_xlate_map_ballooned_pages +EXPORT_SYMBOL_GPL vmlinux 0x11d9ee0b file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x12095051 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1252110b pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x125884e2 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x12676a78 nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x12771f1a jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0x127afed3 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x1290ea92 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x12a4fa14 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x12bdf8e3 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x12d0f0b5 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0x12de91ba tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x12ea3c14 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x130de01d trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1372f3e7 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x137e7fb9 dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x13806e07 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x13880e57 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x138ae8e5 hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x13b0226a __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio +EXPORT_SYMBOL_GPL vmlinux 0x13c0c3c7 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13eca7e3 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x13f51fc3 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x14046e0b xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x14130742 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x141e4a3e set_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x1454f446 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x1459087b platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x146da08a usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x1477850d relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x148531d6 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x148a6c79 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x14b51c46 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x14be4b06 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x14f21a04 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x14f26615 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x15010e1f arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x152887f5 spi_flash_read +EXPORT_SYMBOL_GPL vmlinux 0x15407702 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x1541af53 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x15422f30 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x15456da6 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x15608605 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x1561929c ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x15633bee input_class +EXPORT_SYMBOL_GPL vmlinux 0x156445eb single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped +EXPORT_SYMBOL_GPL vmlinux 0x15b789dc __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x15c2ce1b blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x15e08881 security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x16492b6c sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x164b090a dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x165ac6fe register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x1680166a bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x16882298 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x16b6bb0d cs47l24_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x16cdf821 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x16d6a62b addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x16d971a1 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x16dd2da5 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x16eb25cd usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x170d4b01 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0x1723c410 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x1726a2de rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x172817ee list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x173d4ede rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x1788c36e ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x179b5129 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x17c05173 add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0x17dfca41 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x17e857a5 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x17e859bf clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x17f27da0 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x17fe275c pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x18134f5e da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x1815a574 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x1818399a trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x1829b9ed hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x1831fa2b aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x186cf410 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x18730e07 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x18841578 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x18cba4ef get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x18d33402 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18f5e50e arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x1905ec76 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x1946048d regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x196443b9 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x196449c6 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x196bfb48 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x19910818 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x19963729 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a986c6 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x19e08e01 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0x19e2b4a8 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a1be58a device_rename +EXPORT_SYMBOL_GPL vmlinux 0x1a25cd8a hv_do_hypercall +EXPORT_SYMBOL_GPL vmlinux 0x1a3cea0d ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x1a407306 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1a4e624b acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x1a702b3b dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x1a70b054 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1a8ac82a get_system_keyring +EXPORT_SYMBOL_GPL vmlinux 0x1a8cd3eb ref_module +EXPORT_SYMBOL_GPL vmlinux 0x1ab4c7d1 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x1ac9f943 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1acf7c88 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x1ad57fe2 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x1ae1b7ee sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x1afacaa7 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x1b0ce863 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x1b38b3c6 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x1b3de969 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x1b5ac0e5 device_move +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b96b37b cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1ba9c682 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x1bb972aa cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x1bbd1acd usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bddfd13 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1bf72513 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x1c111c62 xen_efi_set_time +EXPORT_SYMBOL_GPL vmlinux 0x1c1423d7 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x1c2ec424 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5b83d0 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c6660c7 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0x1c7191f2 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c82e35e rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c90598f pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x1ca0f154 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x1cad9fc7 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x1ce134a8 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1ce25f37 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x1ceb1b1f dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x1ceccce2 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x1cfa7afc pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x1cfde389 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x1d19516a ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d2b20ca power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x1d4fa14a sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x1d54458e __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d716301 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x1d739e1c xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x1d830cbb arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x1d89976b devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x1da3b26d raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x1da58051 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x1dc2fc1c dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x1dc5fa2c pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x1de15d8e nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x1e000879 hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e2ac3b2 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e61556c xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x1e68ce14 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e849a74 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e8c69e6 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e96796d crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1eb963f3 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec90b26 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x1ecc368a cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1ed19819 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x1edc21cb hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x1ee1401a led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x1ee77b43 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1eef0cb7 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x1f1988f7 hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x1f1f5793 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x1f25334a ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x1f6fcc9a pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x1f700167 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8d1174 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x1f8d71c4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f91e943 xen_swiotlb_set_dma_mask +EXPORT_SYMBOL_GPL vmlinux 0x1fa4e62f gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x1fa6a25c pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x1fac2db8 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x1fcc9166 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x1fd43c89 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x1fec5315 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x1ff0c1b1 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x1ff3a36e xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x200d34dc dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x2017b68d blk_poll +EXPORT_SYMBOL_GPL vmlinux 0x20289c0c rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x205f11da regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x2060efcb pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x2068219d i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x207f2ede hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x209c0235 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x209ec764 xen_event_channel_op_compat +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20ace072 intel_svm_bind_mm +EXPORT_SYMBOL_GPL vmlinux 0x20b1a606 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x20c6f0d8 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x20cea7bf dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x20cf5147 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x20f935a0 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x21154a65 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2130ee78 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x2134a7ee ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x21874ad1 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x21963d20 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21bd5a3b ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x21c09718 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x21c1be62 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d65c42 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x21f10b82 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x21f23bbb rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x220bbb7f blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x2250a2e4 blk_mq_reinit_tagset +EXPORT_SYMBOL_GPL vmlinux 0x225f6908 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x227f0dc9 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x227f9cef pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x22842ce7 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2299ec81 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x22cb0df1 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x22d52534 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x22dcea32 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x22e3a820 irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x22edf6b3 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x23070cf2 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x2336f86b gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x23626800 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x23659eb2 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata +EXPORT_SYMBOL_GPL vmlinux 0x2369008b cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2389bd36 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x239f3999 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x23aa8645 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x23bd4378 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x23d00dd0 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x23d98781 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x23db110c cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x23df702c eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x23e33f30 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x23f66ddf clear_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x24201249 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x2420e694 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x2423d388 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x24482e0b hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x2450ed4d iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x24524fcb regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x24584112 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x247b4f89 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24a07eaa user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x24a28b00 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x24a918e2 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x24db1bec __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f45195 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x24f779b9 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x24f779f3 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x24fb9280 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x2502add0 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x2519cb5d unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x25226785 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x253a1d35 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x25645d60 ptdump_walk_pgd_level +EXPORT_SYMBOL_GPL vmlinux 0x2574c2f5 clk_hw_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x25b0f2fd pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x25b70cea bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x25d58709 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr +EXPORT_SYMBOL_GPL vmlinux 0x25f79bb5 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x264ae4c6 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x2678640f power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x267bc1e2 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x2684e1a0 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x26965721 slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x26b3c701 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26b86ea5 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x26c8894b usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26dceeb9 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x271e44eb badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x2724c186 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x273cd8b5 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x275349db scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x276249bd register_mce_write_callback +EXPORT_SYMBOL_GPL vmlinux 0x27816a77 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x279cb985 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x279ffde6 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27d6b2f1 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x27e69bf0 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x27ee5f13 xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fda45b security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x2815adfc __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28328453 clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x285187ab ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x287809ba fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0x28834b70 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x289af4eb inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x289fc024 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x28a83825 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x28c7e9ad replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0x28e7c7e7 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x28f80eb5 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x290917f5 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x290a6135 udp4_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0x290cc89c regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x2921804e key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x2935c4ed acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x29364a64 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x295807b9 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x2968510d regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x29719db6 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x2971bc78 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x297463e4 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0x297946b2 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x29ab740a dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x29c845dc fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x29d51e5a security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x29df8587 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x29ea054d dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f3edb4 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x29fe648b addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x29ff2e8e rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x2a2c0f8a devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x2a2fd2e7 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x2a5b6079 pci_get_hp_params +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a72dba0 dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x2aab0170 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x2abc6324 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x2abd68b5 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x2ae7c178 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x2b087356 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x2b17a40a ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x2b21e38a sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x2b2291ef l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b3858c1 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x2b558519 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x2b6f6cf9 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x2b7f83f7 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x2b820dd6 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2bb81a55 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x2bb9fe7d gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x2be50f46 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x2bec5f45 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2bf0c544 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x2c07fd7a trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x2c08f6cd clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x2c180ed3 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c2f5a09 x86_family +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c3ec051 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x2c6b64ac l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c9026a2 xen_swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x2ca943ad platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x2cc29fd1 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x2cc9ca3c __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x2cd81f0f adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x2cdd16e7 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cfcd206 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x2d03f3fc dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x2d0a0e20 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d280783 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d44b392 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d61e02b subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2d672928 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x2d7c73b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0x2d7f118f pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x2d93d17c fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x2d94f9a2 rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x2d966b92 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2dabb8ce anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2db94e34 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2dd13834 apic +EXPORT_SYMBOL_GPL vmlinux 0x2ddd3040 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x2dfb5ca5 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x2e005f66 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x2e125965 free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e245de8 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x2e2b1827 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e49ff93 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x2e5691c4 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x2e78c8ff security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0x2e89f767 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x2e91c1fc gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x2ea24b3b led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x2ea5c2ea crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x2ea70ff0 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2eabe914 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x2eb59992 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2efe17aa uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x2f0d8c8b balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f1531c0 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x2f3ec8e0 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f5392f2 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x2f579ced cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x2f5d69ff rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f945144 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x2f99cfeb ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x2f9b1539 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x2fae7311 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2fda4f12 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x2fed6047 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x2ff188d9 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x30062aeb crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x302ae037 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x30304ebc acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x304eeba4 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x305d3a79 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x30635782 cpu_has_xfeatures +EXPORT_SYMBOL_GPL vmlinux 0x306a82b6 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x307eece5 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x30a34f57 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x30ad5fb6 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x30bb2cdc posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x30c873b1 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x3127d90d cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x31545169 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x316a2b0e debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x3175dd58 clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x318b6108 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31e62c48 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x31f76382 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x32138319 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x3220bd0a user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x3235926a crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x323d8a63 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x3275eaf6 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x32a6b578 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32acc109 inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0x32b1fc46 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x32b50ead __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x32b9846e dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c32372 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32c4fe17 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x32d47b96 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x32e30c1e regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x32eea9bc subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x32eec77b ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x32f9f133 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x3303454a phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x332a1e9a sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x3330c30f request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x333f1ce7 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x334a43d0 do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0x33558ddd acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size +EXPORT_SYMBOL_GPL vmlinux 0x33655159 xen_pcpu_hotplug_sync +EXPORT_SYMBOL_GPL vmlinux 0x33663423 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x336d533b fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x337593fd pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x337c26e9 i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x33830bfc wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x338435c3 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x3387abf6 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x339ee455 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x33af7ecb __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x33b96e5d apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x33babf22 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x33be228c metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x33d45f7a cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x33d81631 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x33e3f815 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x33f55d82 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x340b337d xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x340c7950 update_time +EXPORT_SYMBOL_GPL vmlinux 0x3412578c regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x3415cd69 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x3453b7b4 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x3453bce8 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x345775e9 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0x345b513e regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x349dfde1 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34c95f04 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x34ccf6d5 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x35174227 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x35186119 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0x352a00bf fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x357e091d rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35910f72 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x35a0830e clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x35b572b7 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x35b90c03 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x35bb0c2a ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x35bf3489 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x35c475b8 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x35c4b0c2 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x35f1abaf pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x35fa6ed2 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x35fb0944 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x35fccae7 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x36077c24 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x3622ab77 device_del +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x362d19ba gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x36573b5d dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x365ed85e sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x368a080e clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x368cb880 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x36965451 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36b1f37b xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36bb35b5 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36c7720e usb_string +EXPORT_SYMBOL_GPL vmlinux 0x36d0996a mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36dfa3ac perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x3707c760 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x372c565d usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x3738859f crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x3753da40 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x377bf9a6 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x37a43240 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x37abca50 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x37ad0d42 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x37b88d01 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x37cbdff2 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x37e99847 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37f1ffbf gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x37f9c97c ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x383fcaef da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x384dd6b3 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x385b0b27 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end +EXPORT_SYMBOL_GPL vmlinux 0x38a35d6f __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x38a3fa61 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x38c9654c gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x38e55af5 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38ff0202 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x390b3f35 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x39285f78 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x3930c189 do_truncate +EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x3963f338 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x3964d258 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x39676120 sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x397a32d7 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x397ff237 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x3985044b devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x3988437e regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x3999204e tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x39abd06f devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x39baca90 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x39c85c5c dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x39c9cf5c regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39e7fc60 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a38dc65 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a453f87 mce_inject_log +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a5ba1e7 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x3a6c90e6 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn +EXPORT_SYMBOL_GPL vmlinux 0x3a7dd984 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a8ab84f regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3a93f1e7 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa18fc3 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x3aa24810 dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x3ad17903 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x3ad95d45 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x3ae33f7b devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x3b002012 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x3b07e499 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x3b14dfa8 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x3b25a4f1 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x3b38d720 security_inode_readlink +EXPORT_SYMBOL_GPL vmlinux 0x3b3b2b34 acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x3b7145bb apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x3b7fdfb2 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3b91db5b intel_pt_handle_vmx +EXPORT_SYMBOL_GPL vmlinux 0x3ba37549 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x3ba46790 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x3bb279ba clk_hw_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x3bcfd8a5 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x3c07dc26 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x3c3b50c5 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x3c728ffc serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x3c7b389a smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3caa8f1e screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x3cae1a7f lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x3cbe6851 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd40176 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x3d2666e5 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x3d299c20 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d3cedfe usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x3d4521c7 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x3d5f392d acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x3d6258b6 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x3d72b6ab iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x3d75a9f1 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3d77e980 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3d8a370b locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x3d93e4a1 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x3da2cdee security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x3dae6404 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x3dafae8c scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x3dc7bcf1 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3dd5477b usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x3de76778 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x3e0472c5 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x3e05cc3b extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x3e0b86ec __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x3e1c6e76 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e400a78 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x3e54b244 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3e5989ae __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e7714fc virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x3e7b3728 switchdev_trans_item_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x3e7e3420 add_memory_resource +EXPORT_SYMBOL_GPL vmlinux 0x3e8c0db3 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3eb868ed blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x3ec096ab cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x3ee0cbe3 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x3ee573b6 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x3ee95a44 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f229c4c oops_begin +EXPORT_SYMBOL_GPL vmlinux 0x3f2f2576 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x3f3d73d0 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x3f40e5b4 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3f420953 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x3f48f019 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x3f68e7f5 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x3f7a2789 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x3f8b42da phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x3fb77050 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x3fde73d0 set_pages_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x4010b80f pmc_atom_read +EXPORT_SYMBOL_GPL vmlinux 0x401e84c8 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x4045f4cc led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x404a7036 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x404e2ed0 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x4051b7c2 netdev_default_l2upper_neigh_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4051c279 switchdev_port_bridge_dellink +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x408212ba hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x408cda67 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x408e1482 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40c39766 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40db48ad crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x40ef167d regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x4122fc46 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x41322612 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x4151ff9a ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x415ef0e5 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x41634df2 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x417611aa __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41e278b4 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x41f7b510 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x41fb54cd klp_disable_patch +EXPORT_SYMBOL_GPL vmlinux 0x4215bd1c ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x422046d0 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x427d5c68 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42a8a281 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x42abaf2d usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x42b9f3da cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x42bb68b6 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x42c31a79 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x42dbe152 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x42fbeb5c bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x4322ae72 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x432afad6 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x43453654 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x4360bbf6 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x43655860 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x436df58c watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x4395953e usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43c3a0e7 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43d6a0ea pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x43de72aa isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x43ed6844 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x4404769d unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x441fa356 irq_ts_save +EXPORT_SYMBOL_GPL vmlinux 0x44293afc anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x4436082a posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x44489cf6 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x4460d45b da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x4476c9b6 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x448087b5 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x448989bf serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x44a181a8 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c30a72 x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44efcc02 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x44febae3 device_add +EXPORT_SYMBOL_GPL vmlinux 0x45046818 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x4543fe73 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x4548b6fa security_path_link +EXPORT_SYMBOL_GPL vmlinux 0x454f1cb4 efi_query_variable_store +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x457e1819 get_empty_filp +EXPORT_SYMBOL_GPL vmlinux 0x45876c50 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x45a3071b nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x45a9b3a2 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x45b7d6a0 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45c67eb3 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x460875e2 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x460f31aa rodata_test_data +EXPORT_SYMBOL_GPL vmlinux 0x461ee0a9 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x4624a441 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x46434934 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x465c8dd3 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x4665810e class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x467670dd spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4688f953 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x46995e1b mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x46c236b6 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x46fb0d26 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x4705877c tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x470f8752 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x471b310c crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x4722887b devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x472edbc9 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x47446245 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x474753c8 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x4754d3ae of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x476788f4 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x476a38fb led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x476e852f irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x47723757 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x47798762 md_run +EXPORT_SYMBOL_GPL vmlinux 0x4780f6fc __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x479c0b6d irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x47a45022 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47b440b5 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x47b4d277 xen_swiotlb_sync_single_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x47cf4427 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47e689f5 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x47f1710b efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0x47fd5333 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0x480c0e61 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0x4813de18 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x4826dc25 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x48682db9 perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x48728196 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x487a98c8 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x487ecaf2 memcpy_mcsafe +EXPORT_SYMBOL_GPL vmlinux 0x488cb0b6 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x48bc7799 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x48c58a5e led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x48c8c6ba blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x48cce269 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x48f56c38 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x49100765 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x4922e47c usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x494607ef apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x49713e85 store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0x497d5e40 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x497efcda __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x4981bbdd virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x498317ff __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x49892092 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x498fb534 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x4998d230 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49ae13b2 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x49b585c8 switchdev_fib_ipv4_del +EXPORT_SYMBOL_GPL vmlinux 0x49d62185 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f0db82 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x49fed98a static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0x4a2f9d30 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a5dc78c tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf +EXPORT_SYMBOL_GPL vmlinux 0x4aa9bc19 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ac9c858 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4adaa139 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x4b0baa46 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0x4b20d445 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4b371d71 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x4b38955c crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x4b51a914 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x4b5af3a7 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4b65f225 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x4b7c5d3f ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x4baa7188 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x4bb605a5 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x4bc67b6a gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4bd43afa gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x4c0589a8 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x4c12a3a8 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0x4c1d16f9 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x4c4102e1 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c762b5c x86_stepping +EXPORT_SYMBOL_GPL vmlinux 0x4c7b0ac1 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4c917aea dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x4c9ca79a raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x4cba2423 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x4cbd4e3e bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x4cd985a3 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x4cddb12b open_check_o_direct +EXPORT_SYMBOL_GPL vmlinux 0x4ce0ea11 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x4cea63da debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x4cf24bec linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d0261f6 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4d1c7988 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4d31bdc4 find_module +EXPORT_SYMBOL_GPL vmlinux 0x4d3971d3 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x4d49a5d5 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x4d512519 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x4d533a11 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x4d58a01b dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x4d72a42f wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x4da3f3b9 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x4dbeaad3 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x4dc86e01 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x4dde6e13 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e14ef29 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x4e15a63a device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x4e1ea947 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x4e223503 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e253678 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x4e4131f7 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x4e57723d apei_read +EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4e7150a1 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x4e71a27b usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x4e722196 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x4e74e625 gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0x4e806c84 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x4ea17d30 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x4eb0b6b5 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x4eb34231 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x4eceb1cd pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4f05d0a1 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x4f15ca7f sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x4f16275f led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x4f22df5c rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x4f301f2c tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f43739e bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x4f63bf5e securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x4f699b8d gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f7505de elv_register +EXPORT_SYMBOL_GPL vmlinux 0x4f80f68e acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x4f8ad38e sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x4fcf43ac ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fec28bf pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x4fec3a0d map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x4fed2be9 pv_info +EXPORT_SYMBOL_GPL vmlinux 0x5002fe05 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x500320c0 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x500f90e3 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x5016c184 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x50261727 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x50359de9 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x503bc676 klp_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x505cb395 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x5075a763 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50a716c2 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0x50e1cb1d cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x50fad560 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x512b1d19 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x515eb579 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x51623571 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x517f56c2 iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x51811f94 wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq +EXPORT_SYMBOL_GPL vmlinux 0x5191bd3c efivar_work +EXPORT_SYMBOL_GPL vmlinux 0x519f3846 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x51af8c0c regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x51d4bc11 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x51d8e48c __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x51f5f258 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x520d279f rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x5211aa0d sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x52227a9b efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x5242eaa4 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x526ca787 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x52950db4 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52cac9b2 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x52cb5e32 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x52d8c375 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x52e04258 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x52f988cf wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x530abfad usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x53417bd0 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x534e3559 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x5350d6d3 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x5357390f bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x535d636e devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x538b4e7f remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late +EXPORT_SYMBOL_GPL vmlinux 0x53b433d9 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x53c51f21 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x53ce4318 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x53da5f0f devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x53f7f09c debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x5408c011 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x5442d262 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x545ee955 fpu__activate_curr +EXPORT_SYMBOL_GPL vmlinux 0x545ef11a devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5460b89e ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x546c11ee rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54a56e47 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x54b06528 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x54bb8410 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54dceed6 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled +EXPORT_SYMBOL_GPL vmlinux 0x55181725 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x551af8dd pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x5527f5c0 handle_bad_irq +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 0x55526907 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x5557839c regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x55620851 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x55680635 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x5568b46b irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x5574d7fa fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x5595d26a regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x5596ee7d crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x559a37cd unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x55ac307b acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x55adb9e8 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x55bd8275 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x55d1c676 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5631d87d usb_of_get_child_node +EXPORT_SYMBOL_GPL vmlinux 0x56371409 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x5649f51b crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x5654f836 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x565800dc fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x566c1544 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x56718886 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x56814d6c __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x5682595e regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x56c7a3ea extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x56c961e6 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x56ca32cb devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x56cedcaf crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56f04bfc use_mm +EXPORT_SYMBOL_GPL vmlinux 0x5709fea5 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x571e6949 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x572e2909 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x57653f17 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x5795828c __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a2def5 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x57a62fcb thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x57be9e4b ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x57bfb715 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57f10c73 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x5801be4f wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x58036a97 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x5810a8c5 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x581af3d6 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x581f5597 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x583c4a9d scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x584d46b9 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x585704ab aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0x5858104e pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x585d1fbd ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x5864b2ac noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x586fa5f1 bdev_dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x58731aef usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x587bd46f alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x5883f065 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58a1214e wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x58a1292f percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x58c6dfa1 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x58e33ebc irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x58f981f3 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x5905159f blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x593cf828 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x5944870c get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x59688cf7 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x59767e90 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59db18e7 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5a0f74cc fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x5a1d784c device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5a60707e __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x5a6467e6 xen_efi_get_time +EXPORT_SYMBOL_GPL vmlinux 0x5a676550 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a95710a fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x5ac466db perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5b1879f5 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x5b80df8b devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x5b83144a crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x5b8f3f9f ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x5b930edd tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x5b995a50 clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x5b9cc572 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x5ba41e35 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x5bc98db4 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x5bce8ca1 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5c03caf9 vfs_writef +EXPORT_SYMBOL_GPL vmlinux 0x5c0c7637 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x5c348c5e crypto_has_skcipher2 +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c614d47 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker +EXPORT_SYMBOL_GPL vmlinux 0x5c8e94c0 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x5c8e96b5 security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5ccf99af show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x5d113cfb relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x5d3d9f28 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x5d4e516e mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5d5ca512 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x5d778745 setfl +EXPORT_SYMBOL_GPL vmlinux 0x5d937458 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x5d9f200f crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5db9f251 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid +EXPORT_SYMBOL_GPL vmlinux 0x5dbdf727 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x5dcd7160 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x5dcf07df regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x5dd57f0a usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x5e07ffb5 vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5e235d30 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x5e384b1f cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x5e4ad75b disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e5223a9 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x5e76a019 acpi_dev_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x5e8c6761 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x5eb825d1 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x5eca61bc key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x5f0f16cd cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f31bb97 efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x5f356f03 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0x5f75fc27 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x5f78cbf4 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x5f7c49a7 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x5fa2b608 ex_handler_fault +EXPORT_SYMBOL_GPL vmlinux 0x5faea861 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x5faf3c4f clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x5fc201f1 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x5fd73e73 sched_clock_cpu +EXPORT_SYMBOL_GPL vmlinux 0x5fd823d5 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x5fe907b7 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x5fea6b3f fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x60026a90 clk_hw_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x60044ce8 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x601607e9 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x604007bb pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x604aad88 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x6072b89d dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x607a626a __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x607ce264 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x6095d95a ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60b2e040 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x60b5e405 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x60bf260b agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x60d77522 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x60e22574 device_reset +EXPORT_SYMBOL_GPL vmlinux 0x60ed8884 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x60f0f0e2 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x60feee78 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x6102aa21 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x610d3317 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x6117df0c regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x611f1069 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x614f2591 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x61597d2c shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x615b4c40 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x616bd1c6 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x618e9522 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x61a50f0e dm_put +EXPORT_SYMBOL_GPL vmlinux 0x61c89e10 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x61cbdb18 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x6205f79b xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x620641c0 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x62083939 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x62145271 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x62291f72 efivar_init +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6232f6d2 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x62375b0f fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x623803c8 hest_disable +EXPORT_SYMBOL_GPL vmlinux 0x6268604f tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x626aecea ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x627233df dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x62797e04 switchdev_port_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x629c01a1 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x62a1c981 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x62c34540 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x62f29051 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x62f41154 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x6301f6b3 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x63242dd4 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x6340434e x86_model +EXPORT_SYMBOL_GPL vmlinux 0x634e7e7a ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x635ec980 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0x6377c3d1 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x63864653 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x638f57fd pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x638fe045 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x63902757 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x6392d760 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x63944fe5 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x6396fe13 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x63a14fb8 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x63dffea4 path_noexec +EXPORT_SYMBOL_GPL vmlinux 0x63e00847 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6402a221 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x641e3296 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x64253fc9 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x643948e1 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6439c248 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x645c67e6 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x646348c5 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x64724c4b tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x64a6bd03 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x64b66f2c register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x64b7069e apei_mce_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x64e55256 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x652952fb device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x6536953b btree_last +EXPORT_SYMBOL_GPL vmlinux 0x65477dfd acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x65700aa9 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x6573cf20 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x6577a8a1 amd_hwids +EXPORT_SYMBOL_GPL vmlinux 0x658c1660 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x658c8186 amd_get_nb_id +EXPORT_SYMBOL_GPL vmlinux 0x65931e6f skb_gso_validate_mtu +EXPORT_SYMBOL_GPL vmlinux 0x65aa6a15 clk_hw_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x65b2e786 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x65c2cc61 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65cced25 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x65eb295b synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x65f6257f acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x65f7f10d usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x662bd9b4 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x665ecab0 pv_time_ops +EXPORT_SYMBOL_GPL vmlinux 0x666bd295 xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x6677e530 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x668235da dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x668e6b3c dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x66910de0 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x66a93064 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x66af50e6 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x66b9b861 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x66c24c96 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x66c397f7 nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66d1963b generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66fcef77 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x67224ce9 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x6727dbe7 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x67284468 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x672d5c11 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x67427b64 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x67720e88 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x678a6444 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x678b8cbb kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x678fc4d4 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x679ad769 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x679f2125 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x67a5a539 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x67d61bdc usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x67f36d37 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x67fc6127 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x680b12ba acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x680e84e2 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x681aed44 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x681eef54 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x683c85ad __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x68516a31 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x68674698 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x686d5bb9 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x686ff262 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x68866a89 user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x689375c1 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x68b0fc9b usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x68b25230 __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0x68d80f33 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x68d8d39b crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x68e62a2b nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x68f6db75 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x69189a0b l3mdev_get_rt6_dst +EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x6957d126 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x6979fd29 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x69a664a3 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x69bcd11f rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x69d4f6bd pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a25b65b led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a51f22e spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x6a5b3245 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a6a6b7d xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6ab1b8bb usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x6ab9425a tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x6ac2cd02 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x6acff805 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x6ad1c0c2 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x6ad9b958 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x6adbab79 security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0x6ae2accf tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x6b07ec1b __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b1480a7 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b348725 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x6b3f5cfd rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x6b4cd88c hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b83c411 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6b87262e pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x6b8d8285 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x6b9d8528 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x6b9f4a15 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x6bb596d3 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x6bc37bf3 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x6bd811a3 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x6bf1b90d dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x6bfe5116 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c096937 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x6c1233de fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x6c1251fd apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x6c16f2bc reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c5d0471 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x6c5e077d fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x6c5e9c9b skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x6c63c5fc netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c65761d rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x6c67a007 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x6c6a04d3 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x6c6c5f0a perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6c7364da bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x6c80f6f4 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c8798e8 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6cc33f95 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cd89e0e ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x6cd98bea skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0x6cf5cb1c ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x6d01995f xen_efi_query_variable_info +EXPORT_SYMBOL_GPL vmlinux 0x6d09fd4a kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x6d20f875 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x6d212251 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6d2bcb3c usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d39a7d0 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x6d42e1f5 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d8db615 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x6d9511cb skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x6db68ac8 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x6ddda02c swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e19b540 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x6e1d18ec crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x6e215f66 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x6e23b1df each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x6e3ce7f4 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e54533b ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x6e54e75c usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x6e55e337 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x6e5e813a tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x6e5ec3f8 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x6e683296 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x6e6e9e1f blk_queue_write_cache +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 0x6e8f7e8f devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x6e99ad39 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x6e9e5d44 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x6ea5fad8 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x6ea98361 ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c892 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x6eeed48b rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x6f02f6c6 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f461ba5 print_context_stack +EXPORT_SYMBOL_GPL vmlinux 0x6f5e1aca verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x6f891d8e led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x6f9b0ef0 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x6fc3726a ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x6fce3049 switchdev_trans_item_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6fe9e1dc trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x700d377a syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x70111e2b usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x702136b7 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x702989b9 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x703c90a8 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x70447fef ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x70566e38 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x7067c9ba cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x7094cf1c blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x709c667f regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x709fcc2e usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x70a3505a dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x70acb4aa rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x70bbcab0 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time +EXPORT_SYMBOL_GPL vmlinux 0x70cbfbb7 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70eb712a dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x70f4147e pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x70fc8323 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x70ffce86 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x7109a7c1 phy_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7111f6cb inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x711371b2 switchdev_port_bridge_setlink +EXPORT_SYMBOL_GPL vmlinux 0x71239640 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x713be883 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x713daea0 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x714420bb kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x716f5adf xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x7180d7e0 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x7188c214 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a851da n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x71c99e22 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71e173f0 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x71e42998 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x71fe7f6f cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x72007c25 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x722801c0 loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0x722ab069 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x723ece94 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x7240fb03 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x724e443c blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x7263f295 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x7268939f regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x726c7b38 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7298c129 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x72c3115c __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x72cf714d klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x73234ae1 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x734a13d1 security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x7360d9e0 pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x739dc45e ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x73a0191d sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73afb372 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x73ba6e3b xen_efi_set_wakeup_time +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c6d77e cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73d49fd8 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73eb6337 free_iova +EXPORT_SYMBOL_GPL vmlinux 0x73ed267b acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x74006856 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x7417cb5e pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x742f794e ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x74461f19 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x746a7a57 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x7474647a tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x747d155a pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74b9f79b hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c08941 kvm_async_pf_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x74d6c132 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x74deb10c used_vectors +EXPORT_SYMBOL_GPL vmlinux 0x74eb3568 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x7513855b ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7530e144 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7567d284 xen_efi_get_variable +EXPORT_SYMBOL_GPL vmlinux 0x7567de1e regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x756d69f8 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x75846fd9 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x75c3e805 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75d5c01b regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x75e53c32 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x75fbdf39 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x7610550c input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x762ead2e crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x76302eca pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x7636b6ec xen_remap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x764877e0 pm_genpd_syscore_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x765f8043 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x766510b5 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x766ccc42 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7684d5fc rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x76a17d65 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x76ba672f blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x76bcba58 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x76bde011 x86_hyper_kvm +EXPORT_SYMBOL_GPL vmlinux 0x76ca8178 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76ecfdd3 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x76ef84cb get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x7755e22b init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775a6ef5 kvm_read_and_reset_pf_reason +EXPORT_SYMBOL_GPL vmlinux 0x776b0f91 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x776be488 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x7777f2c4 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x778b675a pmc_atom_write +EXPORT_SYMBOL_GPL vmlinux 0x77984f13 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x77988edc usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x77a1cff5 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x77ac006b gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77e494d5 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x78376b5a register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x783ba564 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x78575bee atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x786179a3 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x7874b5ec unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x7881de20 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x78965a30 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x78d38a6e rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x78d5a73d devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x78da312b clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0x78ff6bcf __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x7908be5d ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x791a6319 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x7920b958 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x792f7cc5 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x793efc03 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x793f0b92 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x7963528d tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x7988a2a3 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x799041b8 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss +EXPORT_SYMBOL_GPL vmlinux 0x79a3bdd3 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x79b67a9c crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x79cf1043 fpu_kernel_xstate_size +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e265a1 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped +EXPORT_SYMBOL_GPL vmlinux 0x7a093833 set_memory_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x7a0b6453 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x7a14185a regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x7a27e9f1 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x7a2bf685 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a34a451 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a3a44ec pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7a477bb2 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x7a492015 put_filp +EXPORT_SYMBOL_GPL vmlinux 0x7a501648 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x7a68d5bd register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x7a7a3639 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x7a893ef0 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x7a8ea6d4 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a9b30bd __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x7aaf1ed9 __devcgroup_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7acd4567 nvdimm_bus_add_poison +EXPORT_SYMBOL_GPL vmlinux 0x7ad1874d pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x7ae7b36f raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x7aee6323 xenbus_unmap_ring +EXPORT_SYMBOL_GPL vmlinux 0x7af95c85 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x7b0bb73f __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b202401 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x7b3a1d4c device_create +EXPORT_SYMBOL_GPL vmlinux 0x7b478909 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x7b63f698 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x7b69e9e8 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x7b706420 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7b780d0e pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7b9f91f3 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x7ba39c99 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7bacc5c7 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7bc54983 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x7bf413b6 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x7c04471b _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x7c07677c pin_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x7c351459 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7c559685 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x7c5e3456 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x7c6ba2e0 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x7c7ee960 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x7c855c00 securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x7c8705cb component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7cb4bb05 xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x7cd1cd38 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cd8c6e5 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x7cdecd2a sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d095de2 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x7d1bf901 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x7d2526a8 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x7d366f97 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d6e4bde user_read +EXPORT_SYMBOL_GPL vmlinux 0x7d9c2402 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x7da3f5ee __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x7de713c6 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x7decee74 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x7df4d2ea usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x7e1c657c transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x7e2675f1 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7e3033d0 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x7e3c3329 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x7e477cc3 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x7e49dfc4 __pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e6582e1 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x7e66b5cf mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x7e72dab9 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7e75224e tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x7e813170 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x7e847d46 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7ea8a470 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x7eb258bc power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x7ed84674 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7f17bf5b pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x7f238879 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x7f3658e6 fpstate_init +EXPORT_SYMBOL_GPL vmlinux 0x7f555e1d fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f9a9263 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7f9ac1fc spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7fb610ba aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fdb1aaa ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x800093dd __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x8007efb0 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x80156244 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x80334a06 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x8041c333 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x804f291f ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x805ffcb9 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x807e6e72 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80af611b ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x80b9bac7 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x80bc7cbe sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80ecb2d2 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x8105f536 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x813114f7 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x8147156a __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x8152e111 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8152ead2 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x81a84515 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x81a884ce pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x81b88efd mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x81bc5327 clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x81c506c8 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x81dabc2c sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x81e47594 sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x820a25c5 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x821d0eaa devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x82232231 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x82233692 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x82606629 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x82863fd7 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x82900766 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x82a78d92 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x82ae43e9 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x82b6b487 xen_efi_get_next_high_mono_count +EXPORT_SYMBOL_GPL vmlinux 0x82cb3581 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x82d5c53e ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82d7c2c0 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x82dbec19 erst_write +EXPORT_SYMBOL_GPL vmlinux 0x82e54e25 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x82f3192e pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x830e8d3b get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x830f7c75 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x831411ad sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x831872e0 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x8324b67b wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x832dbdda clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x833229bb ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x83388b1b regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x8348ce95 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x8354c821 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x836666ce alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x837c05aa __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0x838a3a69 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x838ca0ae device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x83aeccfb rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x83b61060 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x83ba5fbb hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x83e799dc power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x84078c5c usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x84630233 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x84724619 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x847bfb2d ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84ecfc9f usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x84f1bc47 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0x8500ed34 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x852b2b87 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x853315d6 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x8582c12f blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x85943e16 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x859a2c12 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x859a757c __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x859aea9a xen_set_domain_pte +EXPORT_SYMBOL_GPL vmlinux 0x85a86c1a pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x85aa4c1b dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices +EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq +EXPORT_SYMBOL_GPL vmlinux 0x85dc445d free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x85dc7a1b i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x85dd0ff1 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x85ecf9b0 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x860045cb pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x861593ce ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x86393ec1 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x863b2f76 klp_unregister_patch +EXPORT_SYMBOL_GPL vmlinux 0x864c2168 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8651edb8 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x8654be58 hv_remove_vmbus_irq +EXPORT_SYMBOL_GPL vmlinux 0x86587615 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x8676d26b cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x867bb0f5 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x86819bc6 irq_ts_restore +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86a50b17 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x86b0d4ce platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x86b5b481 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x86ba5192 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x86cdd8b1 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x86ce20fc device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x86ce7053 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f5b841 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x86ff5fa6 hyperv_cs +EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x8712eaf0 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x87177aab __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x8722082e irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x8727444e relay_open +EXPORT_SYMBOL_GPL vmlinux 0x87361c26 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x873c0a55 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x87409f78 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x874e26dc regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8757f85e rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x876c40ac extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x8770b2e9 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x878c5e95 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x8795400a fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x87980a6d crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x87b25dd7 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x87dcfa65 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x87e61a0e badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x87f81f18 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x87ffd6c4 __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x88399971 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x883c2a27 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x88563c65 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x8882192d da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x888d1456 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x8895d8d2 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x88a5bf55 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x88a96c75 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b405fa xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88b8e329 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x88cfef47 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x88da3c14 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x88df5b52 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892fcc58 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x89352b31 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x893e20bc fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x8956aeae apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0x895f9f99 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x896f3a85 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x899062a7 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x89b78c30 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89cca149 switchdev_fib_ipv4_abort +EXPORT_SYMBOL_GPL vmlinux 0x89df850b dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x89e0b2ec set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x89ec5c9b gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x89fa4c2e flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x8a134b3f unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x8a23c05a sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8a4b8066 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x8a559846 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0x8a571a93 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x8a713db6 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8a7b2985 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control +EXPORT_SYMBOL_GPL vmlinux 0x8a82730c get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8a85ccf0 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x8a98a600 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x8aa3bdc0 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ad2a844 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x8afb516e devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x8b07142c __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x8b113726 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b32ec79 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x8b475852 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x8b55ca8b ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x8b5d0969 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x8b73a073 vmf_insert_pfn_pmd +EXPORT_SYMBOL_GPL vmlinux 0x8b79abd2 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x8b7b7a09 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x8b95cb75 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8ba3eaa3 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x8ba52d19 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x8bc5a86a kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x8bdd3ea2 nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c06a108 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x8c10b405 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x8c300391 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x8c3a539a fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x8c3f9d58 l3mdev_get_saddr +EXPORT_SYMBOL_GPL vmlinux 0x8c643e1e dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c77c517 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x8c993c3f regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x8c99b8bd devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x8c9d1661 arch_phys_wc_index +EXPORT_SYMBOL_GPL vmlinux 0x8ca8210c usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x8cac7826 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8cbbe615 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x8cd9f935 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0x8cde48b0 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x8ce306fb blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x8ce73d08 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x8ce849de iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x8cfca0b9 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x8cfe891e ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x8d1031ee pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d2be6da usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x8d2efbd4 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x8d3a6da3 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x8d67c432 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8d7a0e0e crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x8d840105 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x8d876bae mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x8d9fa235 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x8db05746 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x8dba9edb efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x8dd85075 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x8ddd0b8c mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x8de89e8d wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8dfc1da2 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x8e0a26d5 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x8e15f668 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e2f8cc2 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8e542fbf fpu__restore +EXPORT_SYMBOL_GPL vmlinux 0x8e5d096e srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x8e68a6e6 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x8e7c79af pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x8eb0c929 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x8ebac5ce cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x8ec931f6 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x8efa1984 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x8efdddb8 acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f21234b gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x8f27986a device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x8f38554e dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x8f62f95b gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x8f655956 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f7613e5 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x8f81e3a9 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x8f9f80a1 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8f9f9a29 efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x8faf436e devm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x8fbb8f45 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x8ffa9446 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9003d239 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x900a6d00 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x902d3ce7 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x903d8469 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x90426389 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x90864b7e gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x908a1c0f kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90a15a89 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x90b5390b device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0x90bcd5a2 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x90bdc899 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x90c1bd09 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x90c4ca06 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x90cf62cf xen_swiotlb_sync_single_for_device +EXPORT_SYMBOL_GPL vmlinux 0x90dc29df aout_dump_debugregs +EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify +EXPORT_SYMBOL_GPL vmlinux 0x90eba9c5 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x91519520 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x91543b3f set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x915beff1 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x915d021a component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x917d1fd5 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x9195cd33 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x91b2bcd8 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x91c4ef98 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91e3b40a inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x91e53db3 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x91fae352 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x9242bb80 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x927867f3 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x9299008c led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x92a23fd2 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92fd2bee crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9349e8cf ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x9351f25e ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x938aeff0 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x93922111 get_compat_bpf_fprog +EXPORT_SYMBOL_GPL vmlinux 0x93b88d53 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x93b9d724 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x93d382aa list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x93eaff3f regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x93f15d69 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x9418f4d5 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x941ab861 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x942d1b23 get_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0x94383e8d __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x94423315 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x944ca395 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x9450550e percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9461cd73 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x94662b4f virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x947137d0 x86_platform +EXPORT_SYMBOL_GPL vmlinux 0x94716af2 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x947450df ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x948591f2 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x9485b381 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x948f9710 xen_swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94a088d5 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x94c318be apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x9538a006 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x95415390 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x9550ff4d regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x956de911 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x95769196 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x9585a19b add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x959fd6bb fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x95ae84f0 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x95b98e7c __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x9602331f clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x960932d8 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x96237695 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0x96276d31 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x964add15 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x964d5c39 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x966124da fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x966bc759 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x967ac3b4 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x969223d0 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x96aecc43 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x96c0f71b _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x96c379a7 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x96df375f usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x96e1abc5 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x96e5242c get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x970c850a pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x970d9e4a gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x973ab8ad cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0x974777c7 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x977107b8 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x9787e840 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x97a296e8 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x97c90b9a rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x97ca9627 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x97ca99f5 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97ed6a7e rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x97f21d3e serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x984d67c1 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985fcc0b ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x9877e038 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98a805a3 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x98aa2ca4 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x98cf87f6 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x98ef4ea4 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x98f9f73d fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x991bc46e fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x9927c65f devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x99442de4 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x9954ab39 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x99857e71 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x99943301 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99ce3f07 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x99d9982c sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x9a06dec7 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a14952d subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x9a39f2f6 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x9a42ac9a ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x9a5ff314 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9a7949e1 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9aa4b022 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x9aadf048 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9ab953c7 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ac121e4 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x9aca4eb0 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x9ad62668 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af2b985 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x9affcf5e da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x9b24974d usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x9b3218b1 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x9b60cb27 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x9b6a7412 idle_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x9b720312 acpi_target_system_state +EXPORT_SYMBOL_GPL vmlinux 0x9b7789f5 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x9b7ede3d dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x9b82ed29 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bad6b50 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x9bc66123 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x9bd2a997 do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0x9bd72b78 apei_write +EXPORT_SYMBOL_GPL vmlinux 0x9be7c8e1 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bf31d8c unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x9c013556 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x9c09dc5c nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x9c27baac shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x9c2de449 memory_add_physaddr_to_nid +EXPORT_SYMBOL_GPL vmlinux 0x9c2e4b66 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x9c388abb xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x9c462261 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x9c5d7e40 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x9c7d82c8 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x9ca7e92f dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x9cc14fc0 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cc61686 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x9cca40e2 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x9ccdf526 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x9ccef749 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x9cf82ca7 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x9cfbd1bc ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x9d409da6 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x9d6e9700 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x9d7efef7 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x9d91e36d sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x9dc5772e device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9de22a49 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9e0c535e napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x9e0c5884 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x9e0dfe75 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x9e1e87c3 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x9e35a5c6 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x9e40c132 devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e58f31a gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x9e5eb9ab regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x9e75734c shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x9ea6297f devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x9ea63d2f xenbus_map_ring +EXPORT_SYMBOL_GPL vmlinux 0x9eaa7fa2 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x9ecde996 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x9ed34576 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ed6b2bf pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x9ed84cb3 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x9eda6cf0 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x9ede13fc handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x9eed426e ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x9f0d187b usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x9f22e510 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9f4844b5 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x9f5f60ae iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x9f6259a2 amd_df_mcablock_names +EXPORT_SYMBOL_GPL vmlinux 0x9f6e23ea tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x9fada840 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd76fc4 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x9fd8a549 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9fe3bc04 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9ff03318 cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0xa014a6ac trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xa0152c42 xen_efi_get_next_variable +EXPORT_SYMBOL_GPL vmlinux 0xa05e67f3 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0xa083c560 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xa0adb60c pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0xa0ca6968 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xa0db0762 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xa0e167c3 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0xa0f08a95 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xa0f1bc5e ping_close +EXPORT_SYMBOL_GPL vmlinux 0xa0f334d1 arch_add_memory +EXPORT_SYMBOL_GPL vmlinux 0xa109df4c usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa116e320 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xa11b55b2 xen_start_info +EXPORT_SYMBOL_GPL vmlinux 0xa11ed2de badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0xa123b225 switchdev_port_attr_get +EXPORT_SYMBOL_GPL vmlinux 0xa134d4c3 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xa13582c0 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa15ef2ab __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa16894d5 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1b2b5dd platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xa1df2623 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa1f79553 xen_create_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xa20adc12 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xa2173fe4 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xa21d9c9d wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xa22ae552 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xa2349ad9 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xa236b8f7 copy_reserved_iova +EXPORT_SYMBOL_GPL vmlinux 0xa25fc183 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa2975e41 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xa2981f59 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xa2996af7 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0xa2b4b932 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2bd33cf __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xa2e35d30 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xa2f04394 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xa3341b57 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xa33bf4f9 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xa34d4839 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xa380422f virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa386c029 trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa3903714 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xa39deb22 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3b5b29e ipv6_rcv_saddr_equal +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3d8149f md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xa3df0926 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3f53a9e pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xa417c6fd ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa41e976a iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xa4339f5c con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xa437cdf7 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xa4507175 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa4641047 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xa466de38 acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0xa4698729 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4bacb77 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xa4ee7a6d sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xa500a9a2 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0xa505526f raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xa55866f4 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xa568f441 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xa5a97027 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa60046de crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xa6112f38 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list +EXPORT_SYMBOL_GPL vmlinux 0xa628f1f7 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xa6432aed register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xa6565c46 __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0xa66438e8 erst_read +EXPORT_SYMBOL_GPL vmlinux 0xa66495a7 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xa66c749f crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa678e49b usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xa684456c crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6cbd958 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xa6d56195 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa716c74c ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xa71b2f45 __add_pages +EXPORT_SYMBOL_GPL vmlinux 0xa7215606 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xa72a4caf zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xa743d1fa devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xa74bd499 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0xa7a5326d watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0xa7b65773 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa7cd8f7c switchdev_port_same_parent_id +EXPORT_SYMBOL_GPL vmlinux 0xa7cdd8ca wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0xa7e5e80a sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xa7ea35f9 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xa7fae3cb alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xa801b359 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0xa82e5a57 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xa837ba87 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa87c9034 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa8a35cef ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8ec61e4 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0xa8f78f13 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xa9071067 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa919c077 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xa929861c fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0xa92ce54c usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa932da96 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xa9366475 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xa952b0fe dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xa958183a nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0xa95f9957 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xa96a6c6f devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xa99d9733 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xa9a6ee8f tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xa9c37d2a cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xa9d4efe4 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa2a7d9b regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xaa2c5c51 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xaa308cd5 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0xaa5fd429 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xaa8fed20 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaab25dfc clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xaac5e9e1 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab3b4cb5 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xab4fad15 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab7b791a regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xab8d5af7 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0xab98c029 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xab9ac53b netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xabac6e5c switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xabb5d4fa __dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xabbc4087 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabfa24d7 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xac1f7c74 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0xac3567ae rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0xac66c48c __put_net +EXPORT_SYMBOL_GPL vmlinux 0xac6f5bfd perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xac88cafa devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xac8ed9ed sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xac9ce195 kvm_async_pf_task_wait +EXPORT_SYMBOL_GPL vmlinux 0xacadd183 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xacafa8e7 vector_used_by_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xacb48ece power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xacc3d527 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0xacd06955 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xacdbc24c xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xacfe917a __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xad25ec45 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xad3311fa clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xad4c99f2 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0xad5f0017 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad650649 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xad6ab3a7 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xad773c52 switchdev_fib_ipv4_add +EXPORT_SYMBOL_GPL vmlinux 0xad8d8ab0 xen_physdev_op_compat +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadb44cd2 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadcb342c switchdev_port_obj_dump +EXPORT_SYMBOL_GPL vmlinux 0xadcf3dde devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xadd4f271 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae038e57 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0xae15d2ea xen_swiotlb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xae16a258 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xae1aeded tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xae26099f dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0xae2eb93b hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6eaf93 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0xae6eed7e fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xae73d291 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae7f3fb9 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xae9e3869 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xaea3d080 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xaecba6be percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0xaedac5e6 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xaedaddce regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xaee61f45 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xaefa8154 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xaf095c4d of_css +EXPORT_SYMBOL_GPL vmlinux 0xaf11c55b xts_crypt +EXPORT_SYMBOL_GPL vmlinux 0xaf2d6c3d events_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xaf551154 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xaf68eca4 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xaf745494 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0xaf7d0721 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xaf95e4f5 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xaf9b3660 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xafd5d048 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0xaff01c13 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xb00352f2 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0xb00cb754 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb02c4263 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xb058978e gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb080df6c register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xb09720dd unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb09fc481 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0ba57b5 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xb0cc50b8 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0d728cb sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xb0ecae23 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xb0fec145 xen_swiotlb_unmap_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0xb0ffbb11 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xb1002e55 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xb100b07c input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xb10d2161 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xb11c243c platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xb139bd86 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb1474738 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xb151327e ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xb155cc51 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xb165a79f __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xb1676249 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init +EXPORT_SYMBOL_GPL vmlinux 0xb17ccc3f pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xb180d753 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb19a3856 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xb1a5f2fe usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1b2818d fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1bedeb7 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1ce612a ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xb1d36b0b crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb20b2fbf nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2632957 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb27bf7ea dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0xb2844df2 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb285b8f8 xen_in_preemptible_hcall +EXPORT_SYMBOL_GPL vmlinux 0xb2ab6d25 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xb2b46855 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb2c2e6e4 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xb2de9d43 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2eec9f4 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xb311c2b6 extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0xb322f63d sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb33dad00 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb39a0f97 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xb3a7a2d3 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xb3abd3e6 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xb3b7b0ad sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xb3b88b5a handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xb3f59cc3 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb404c5ce region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xb4129ba9 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb428c145 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xb42b3320 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xb43d2070 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xb44a184f sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xb44eb11d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xb4557e67 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xb46414e6 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xb47fc3b8 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xb4b84208 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb4e553c7 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4ff8bc8 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0xb50895c6 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb508afcd iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0xb51898c1 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb5373f90 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xb558c9f9 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xb56a82a3 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb59b79e6 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5b1a25c page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0xb5e8f8dd platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5e9d579 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb5ea266d da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xb5eea923 vfs_readf +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb5f5066e scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xb617d360 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb622d57b nvdimm_clear_from_poison_list +EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb6267432 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb6298b6d klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0xb63bad56 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xb652eda5 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid +EXPORT_SYMBOL_GPL vmlinux 0xb66fed44 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0xb693c0be xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0xb69eeacd regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb6a78aea usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6cc4397 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0xb6e58db4 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6e9ad42 spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0xb70fe065 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xb718e174 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0xb718f2f9 sfi_table_parse +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73b740a trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0xb74d85fa debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xb7602def gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xb774b046 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xb7752fed iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xb7896bf9 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xb78dff43 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xb79c87da da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb7b81689 default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xb7ba513b switchdev_port_fdb_dump +EXPORT_SYMBOL_GPL vmlinux 0xb7c11546 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb813b05b power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xb81b72c3 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xb82aa1e1 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xb83e5b2f gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0xb84df5b1 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0xb8571b96 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xb86f3bc3 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xb8844a37 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb8873478 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xb88a8cfd percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0xb88bc2c3 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb89b2c5b regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xb8adfc32 __module_address +EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0xb8b57aea acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0xb8bc4127 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8ed5a39 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb906bc11 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xb90bc9f7 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xb9181138 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xb91d2876 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xb9210a9f add_dma_domain +EXPORT_SYMBOL_GPL vmlinux 0xb92bc515 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xb9539f99 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb956bb7f debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xb96273e1 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xb978e334 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xb9945156 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xb9b04383 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0xb9b3bd13 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c24c0e pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d2bce9 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xb9ea833a kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xb9f8d6bb acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0xba018a5f usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xba10934f usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xba1c7a7b __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba4d6f8c class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xba59af0c smp_ops +EXPORT_SYMBOL_GPL vmlinux 0xba83b1ad spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xba94c685 cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0xbaab478a inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xbaab85be regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbac1e53e blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0xbac79470 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xbad45fa4 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xbad4cb82 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xbaf37ba2 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb107c87 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xbb1208d0 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xbb419a41 cs47l24_patch +EXPORT_SYMBOL_GPL vmlinux 0xbb4df32e ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xbb68d613 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb70f5db fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xbb80d24b public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xbba8739b pm_genpd_syscore_poweron +EXPORT_SYMBOL_GPL vmlinux 0xbbb04b8b pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbcdfced pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0xbbd4f657 xen_pcpu_id +EXPORT_SYMBOL_GPL vmlinux 0xbbec275d pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0xbbf89d9f static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0xbc0249b2 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xbc2db25e power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbc2f3edc vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xbc3e126c crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbc4217d4 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0xbc4617c5 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xbc54cdb0 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xbc6928ed usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc6f6f15 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xbc9360c0 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc94d16f xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0xbca49fc8 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcd0f06b pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbd067dd2 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xbd0d9ad7 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xbd132ab6 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xbd13c6cf rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xbd182d1d nl_table +EXPORT_SYMBOL_GPL vmlinux 0xbd1945e1 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xbd23e129 arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0xbd278770 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xbd30c813 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xbd34e841 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd48487f pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xbd4e4f50 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xbd82d8ac pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xbd86b127 usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xbd8cb696 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xbd8e5da3 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xbd99aba2 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xbda34570 ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xbdad62fa tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xbdbd043c ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbdc926da usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbdd483fb gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xbdd5f10f apei_hest_parse +EXPORT_SYMBOL_GPL vmlinux 0xbdecf6ea usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe36ce8a dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0xbe377808 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe38ed5b driver_find +EXPORT_SYMBOL_GPL vmlinux 0xbe4393de tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xbe44fd75 mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbe5d0996 idle_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe60b402 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe7d1690 cpu_tlbstate +EXPORT_SYMBOL_GPL vmlinux 0xbe82087a tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xbe826ebf pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xbea2f5f3 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeabb314 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbeb8326c rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xbebca112 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbec80feb device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xbed88358 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0xbefac7ab xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xbf01901b subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xbf019cb2 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xbf01dfb1 put_device +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf079e9f ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xbf0c2359 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xbf3b2f6b injectm +EXPORT_SYMBOL_GPL vmlinux 0xbfa1168b rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0xbfa776b2 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xbfaa6c56 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xbfb1be70 hv_setup_vmbus_irq +EXPORT_SYMBOL_GPL vmlinux 0xbfbbf820 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfc08033 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xbfd10bb7 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xbfdf13cd devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfe7eb50 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc00af1ee debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xc0370666 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xc04061db pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xc04b21bd acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc059627b usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xc05c0ddd dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xc07c547a unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xc07e10f3 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0900fcf acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc09862b4 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xc09ace1b irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0add99e dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0xc0b72527 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0xc0bd0a0a pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xc0c0e7b4 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xc0c8598a pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0e7d864 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f2749a blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xc123fb69 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xc14742d1 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xc14c2824 xenbus_probe +EXPORT_SYMBOL_GPL vmlinux 0xc14ea211 switchdev_port_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc177c4d7 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xc1795ca7 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xc1ad6a93 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc1b06bb3 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xc1ef4de5 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xc1fa6c5c ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xc20de5c5 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc20e2ca1 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0xc20e2df1 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xc21e9d40 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc22783fa gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xc279ae3b ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2bac3d5 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc2ee5242 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xc2f40057 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xc30802b4 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0xc31e6c30 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xc33058cb cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc34420fa ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0xc34659a0 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xc3559239 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xc364ca07 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc376f4c1 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc3b58536 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xc3b72246 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xc3cabb95 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc3cec014 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xc3f2993e scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xc4147ba1 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xc4185202 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc447dd93 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xc44e698a spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc4602098 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xc463aa37 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xc46886a2 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc49257cf nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0xc4a56ce6 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xc4bd20ac regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xc4ccef84 xen_swiotlb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xc4d3af9c crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xc4d760c7 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc4dd6aa1 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0xc4e17de4 xen_remap_domain_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xc4eb805e clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xc4f5f0d7 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xc5045c51 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xc5205260 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0xc53096a5 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xc53637ea blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xc53b3738 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc55779e2 iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0xc565dd29 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5878314 blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0xc58eec86 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xc59fa4f3 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0xc5c07175 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xc5c49ee6 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5db2626 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xc5eccaaf ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xc60114e6 acpi_subsys_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xc601acc9 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc6170125 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc637be9a ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xc638674b devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc64973c3 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66eed10 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xc694ac7c gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc69c80ca part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6b7ee02 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xc6b92f34 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0xc6bd4c28 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xc6ccc12c clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xc6f32906 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0xc6f50f9d tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc70c9b1f power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xc7158535 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc7193d66 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0xc723e546 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc7300335 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0xc7739386 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xc776b01c __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc7869a25 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0xc787f82f crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc78b44b5 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xc79af66a fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7ccc216 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0xc7d13c0f switchdev_port_fwd_mark_set +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7e80f6b crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0xc7f69737 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xc7ff192e phy_create +EXPORT_SYMBOL_GPL vmlinux 0xc8128ef4 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xc81455ad irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xc8207672 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xc82247d0 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xc8361fda shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0xc84f9f9d __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xc853c599 component_del +EXPORT_SYMBOL_GPL vmlinux 0xc8575b98 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xc86a20d2 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc87f4cca ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xc87f5d57 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc89394c0 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xc8abd8e1 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8b6988b pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xc8d562fa nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8e854ce devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8ecf14f pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xc8f0d60d acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xc909b53a udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc935ec6d gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xc93a4f60 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc967b510 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0xc99a1a1e del_dma_domain +EXPORT_SYMBOL_GPL vmlinux 0xc9a05ea5 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xc9c3d14a blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9d1ead1 sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0xc9deb756 split_page +EXPORT_SYMBOL_GPL vmlinux 0xc9e25e82 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9f79727 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xca01ea2a vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xca0c03a2 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xca193ddb __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xca2bfb3e pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xca340fc7 udp6_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0xca47f3c7 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xca56df6a acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xca5e92fe lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xca7903a1 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca8143cf ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0xca904836 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xca9824e5 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0xca9d8b85 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcacae67a tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xcae87bb1 regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xcafd285e virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb1e8436 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xcb1ee867 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xcb28a34d serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xcb51b8f7 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xcb69e387 bpf_prog_get_type +EXPORT_SYMBOL_GPL vmlinux 0xcb8205a2 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xcb87014a ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xcb87489f __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xcb89baf8 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xcb8e77da rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xcbdc8014 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcbe331ff mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcc150660 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xcc26c8c2 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xcc26d4b7 component_add +EXPORT_SYMBOL_GPL vmlinux 0xcc2dc9a3 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xcc3550a4 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xcc3c218d ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xcc455bc6 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xcc4d1828 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xcc5d64e4 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0xcc7a716b serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc91cbdf task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd69a5d unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0xccf53b0f md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xcd0f7ea4 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xcd100624 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xcd100922 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcd333282 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xcd42117f rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0xcd452c2c rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0xcd4c0964 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xcd5d4ef9 btree_update +EXPORT_SYMBOL_GPL vmlinux 0xcd5d561f find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xcd8144df phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xcd82b22b thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcd8ad5e1 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd9715fd ip_route_output_flow +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 0xcdc95246 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdd233f3 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xcddfa2cf trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xcdf2a804 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0xcdf56763 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xce12d037 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0xce163089 devm_nsio_enable +EXPORT_SYMBOL_GPL vmlinux 0xce2c459a cs47l24_irq +EXPORT_SYMBOL_GPL vmlinux 0xce353634 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xce609779 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xceb17eca ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xcec41b61 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xced05fc1 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xced9c1c5 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee34e3c sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xceed1366 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0xcef1dd0e perf_check_microcode +EXPORT_SYMBOL_GPL vmlinux 0xcef20870 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xcef7e9c6 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0xcf12f84f sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xcf24e958 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf5a07c8 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xcf652a89 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xcf67f079 security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0xcf68d45d tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xcf9880cc rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xcf9db168 put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xcfb1c533 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfbc7b9a list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfc9cf89 debugfs_use_file_finish +EXPORT_SYMBOL_GPL vmlinux 0xcfd072ec __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xcfe7e5cb __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xcfe9aed0 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xcff07e8b devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xd00ac1a6 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xd0173120 clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xd01ddef9 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xd0291956 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xd02d021a efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd07e020a rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd09e40b2 device_register +EXPORT_SYMBOL_GPL vmlinux 0xd0a4d65b blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd0ba0823 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c5e3f1 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xd0e7de82 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xd0f46481 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xd0f9eea5 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd0fb69d1 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xd0feb7f1 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xd0ff27e5 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xd0ff3062 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0xd108793a inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xd109c671 l3mdev_get_saddr6 +EXPORT_SYMBOL_GPL vmlinux 0xd10c0a73 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xd1274891 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xd14293e7 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xd1507e59 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd16ca89c tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xd17ac573 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xd1c89c4c xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd2060435 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xd207e23d vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd2356f42 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd250f700 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd253d9ef arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0xd261b6b7 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd279fe7e ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xd28285ef power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd2a95872 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0xd2b4ad40 acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0xd2c58ab2 apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0xd2d1927b hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xd2dcb5b6 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2e88de5 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd31e3ba4 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd320278f sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xd3272ef9 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xd32e7703 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xd344c32b pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xd36da819 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xd3ae417d blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0xd3c9da17 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd3daf63e serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd4222aa5 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd4647e67 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd48e070f spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xd4aab77a pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c2a956 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xd4f70fcb usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xd50b9d21 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xd51666e9 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd52e62d6 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xd55821e1 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd55a8530 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0xd56c04a6 xen_efi_update_capsule +EXPORT_SYMBOL_GPL vmlinux 0xd56c7d1e palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xd571035e irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xd584b044 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xd5a73709 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xd5b34eb6 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5bfce16 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xd5c2c9d2 shake_page +EXPORT_SYMBOL_GPL vmlinux 0xd5c5cae4 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xd5c8f641 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd5dfa0cf __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd5e00898 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xd5f0bed5 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xd6055b65 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd60d89dd acpi_dev_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xd60dbfd3 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xd60dca7d security_mmap_file +EXPORT_SYMBOL_GPL vmlinux 0xd6555070 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xd661893b gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0xd661d080 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xd66a46b4 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xd67282a9 devres_find +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd673844d crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xd67797b9 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xd695d2bb irqd_cfg +EXPORT_SYMBOL_GPL vmlinux 0xd6eac0b5 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xd6ed3a8e cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0xd6ee63ae sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xd6f5af10 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd7330463 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd73e7b95 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xd746ffb2 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd7900744 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xd79ada43 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xd79c89de clk_hw_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7da1ccf skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xd7e83a2c spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd8375a54 amd_core_mcablock_names +EXPORT_SYMBOL_GPL vmlinux 0xd84125dc dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xd847415e devres_release +EXPORT_SYMBOL_GPL vmlinux 0xd869e1e6 xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xd86ccc0d device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd88a47db sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xd893db69 clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xd8b6017b i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd8d49927 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0xd8e52017 insert_resource +EXPORT_SYMBOL_GPL vmlinux 0xd8ea2619 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0xd8f2e233 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd8fd75f3 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xd902dac2 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges +EXPORT_SYMBOL_GPL vmlinux 0xd934560b dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd93cd13a sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd9497e98 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd94fa823 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0xd9602ed2 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd98194ac gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0xd986dad1 kernel_fpu_begin +EXPORT_SYMBOL_GPL vmlinux 0xd9ba0d43 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xd9beb18b debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xd9c78757 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xd9c91c54 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd9e10bc4 xenbus_dev_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xda000150 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xda0666b9 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xda0f0ca8 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0xda28e4e7 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xda34038a sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0xda34d2a4 user_describe +EXPORT_SYMBOL_GPL vmlinux 0xda389561 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdab395fa __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xdad050b6 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf1fa54 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb04d3e8 xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0xdb08be89 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0xdb2fd6eb dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb749ecf trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xdb7a5051 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb8bc105 i2c_new_secondary_device +EXPORT_SYMBOL_GPL vmlinux 0xdb916fd0 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xdb9be713 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xdb9d09f9 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xdbbbecf9 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xdbda9975 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xdbe79c27 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xdbf06d6a pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xdbf1b5d7 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbf86e2e pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xdbff920b sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xdc0ef9e3 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc2338c1 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdc257a7d rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xdc2df07b vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xdc2faec1 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xdc347c99 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xdc4cebac device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc68be9a __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc881cb9 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcffaefc spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0xdd09c341 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xdd0b5dc6 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xdd11854d rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xdd140fe1 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd28197d set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdd2be307 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd3374e8 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd4780d1 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0xdd58aa1d lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0xdd5b4bd4 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xdd622a89 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdd686be6 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xdd883bd7 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xdd95a4f9 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xdd99e5c3 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xdd9cd501 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0xdd9e0534 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xdda3a2d7 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddcb7a1f ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddd9cb9c __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xddf46f77 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xde010b68 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xde0e286d __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xde176bf2 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xde24c63e ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xde265592 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xde2b1e06 xen_efi_query_capsule_caps +EXPORT_SYMBOL_GPL vmlinux 0xde3342d9 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0xde4427f1 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde482fb7 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xde61709d print_context_stack_bp +EXPORT_SYMBOL_GPL vmlinux 0xde78b429 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xde80db80 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xde8dd926 klist_next +EXPORT_SYMBOL_GPL vmlinux 0xde9611a8 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdea33bce dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xdebb6cdc debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xdec1af51 alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0xded29c5e init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xdeefc24f dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xdef79364 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xdf013aaa pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xdf01d407 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf13a4d5 clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xdf15679a devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xdf228935 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdf254999 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdf40757a sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xdf534c88 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xdf622181 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xdf906f85 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xdf957f48 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xdfa15efe pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdfbd44a9 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xdfbd7256 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xdfd9f101 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xdfe5d1e6 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe00da078 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xe0227e6e ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe04b7dfc clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe06339e6 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe07452c8 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xe07f1fb4 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b8148c ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0d96eee pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe10f2fac acpi_dev_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe12c56ac tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xe136c86e xen_swiotlb_map_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0xe13e9b27 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xe13eea2a thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe142839b ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xe1443118 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xe14d8575 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xe14fac5d badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0xe156945b tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe16ad39b pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xe16b0d30 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe1843e4c usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xe1847fe3 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xe1b6f220 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1d39286 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0xe1d988ab shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0xe1f51085 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xe2048a55 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xe21c872b ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xe2348d79 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0xe26ef1a9 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0xe2825fc3 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe2a8caaa driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2c21dfd inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xe2ca1aa0 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2f5a764 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xe2f83058 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xe3009ff9 relay_close +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe30e0c06 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0xe3183bff security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xe31e5c49 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xe346b5cc pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xe348610b srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xe3520c54 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xe3581d21 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xe37cd48b kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0xe38007e3 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xe386c738 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xe38bb87c ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list +EXPORT_SYMBOL_GPL vmlinux 0xe3b2e4be led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe3b9c680 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3bd478e __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xe3d2fcf9 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xe3d8214e phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xe3e180fd xen_efi_get_wakeup_time +EXPORT_SYMBOL_GPL vmlinux 0xe3e58e9f crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xe3ff14e8 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0xe40bd9a8 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xe40e5d7d rcu_exp_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0xe418fde4 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe44718ba crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xe449115f rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4beffc5 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe4cbf79e crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xe4d20e4f get_device +EXPORT_SYMBOL_GPL vmlinux 0xe4e003b5 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4e68bc8 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0xe4ef22d1 md_stop +EXPORT_SYMBOL_GPL vmlinux 0xe5049998 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe514d401 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xe53ea74f ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xe545a811 get_xsave_addr +EXPORT_SYMBOL_GPL vmlinux 0xe546ed19 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xe547544a syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe55ff52d inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xe57522d4 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xe57ac400 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe597bfe8 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0xe5b8082b cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0xe5c3e52d phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xe5ea06cc x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xe5ea1a15 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xe5f09474 driver_register +EXPORT_SYMBOL_GPL vmlinux 0xe5f25383 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe605a6d6 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xe616bcd1 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xe625d5da inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0xe6300b0e xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xe63f437f gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xe6416b3b crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xe649777c rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe6509fed clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe66d05d1 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xe6714934 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0xe683f2e7 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xe692d664 d_walk +EXPORT_SYMBOL_GPL vmlinux 0xe6993573 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe6a177f0 mmput +EXPORT_SYMBOL_GPL vmlinux 0xe6abcde1 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6de31cd bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6f1ced7 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe70607fa key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xe70e8414 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe726003d is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xe731dfc5 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xe742ff43 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe754185c tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe7817978 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe785c818 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xe7abd40e device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xe7bd8cd4 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xe7dec1c6 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xe7eaffba ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe7f08e70 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0xe7f0ea8a devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe812f1a4 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe865d482 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe8b9e808 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xe8c59c67 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0xe8e30e27 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe8f215e1 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe9073138 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xe90cf884 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xe90d4a81 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xe91eb485 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9474bde dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xe94e2986 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xe96a5a53 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xe96e667f devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xe97528c4 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xe97fc4fc find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xe987f539 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xe9c2b125 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0xe9cf9f3d crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea4e8ecc swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0xea4ee525 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0xea66db12 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xea69a60c ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xea7b151f ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xea7fe424 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xeab64640 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xeab9e7fe device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xeae2bb96 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xeaf7b841 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xeb037783 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0xeb2798f7 xen_destroy_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xeb2a7f78 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xeb370805 __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xeb3b6f8d rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xeb3f866b devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xeb4aab16 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0xeb5bed0c wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xeb6d0ecc nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xeb7130ae rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xeb8274d2 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0xeb82deab pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0xeb873c33 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xeb8fd3f3 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xeb955f95 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xeb989b05 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0xeba0cfd2 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xeba7045e devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xeba76da5 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xebcfd470 pci_msi_set_desc +EXPORT_SYMBOL_GPL vmlinux 0xebd2073a dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebf3afab udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec318ed3 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0xec7ab0d4 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xec83bca1 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xecad3b34 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0xecafa80e crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xecd2c31d __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xeceb0310 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xed047387 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0xed17c2f7 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xed2a8894 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xed39df5b uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xed43c0a9 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xed73e1ec __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0xed92e60f dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xed9711a8 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xed9ce7ef inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0xedb0b981 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xedbb9cce pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xedca62d2 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xedcdffd4 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0xedd5e54d wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0xedd69cec shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xee07c1ff sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 +EXPORT_SYMBOL_GPL vmlinux 0xee2f9d28 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0xee4ec51e xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0xee5804bc class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xee682e14 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xee68db14 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee720154 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xee72e4a2 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xee8ffaa4 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xee95a20c led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xeec18bf7 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xeedd755c ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run +EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xeee30832 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xeef9e67f fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xeeffbeb4 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xef166b65 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef27fb31 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xef58aa2f mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xef682073 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat +EXPORT_SYMBOL_GPL vmlinux 0xef7a424b alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefaead1f rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xefb342d7 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xefb616fb netdev_default_l2upper_neigh_construct +EXPORT_SYMBOL_GPL vmlinux 0xefb8d565 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xefe9ce16 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xeff6c739 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xf0026a9e phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xf0160ec3 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xf033938b shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xf033eab2 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf03d6df4 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xf051f467 cap_mmap_file +EXPORT_SYMBOL_GPL vmlinux 0xf06695e5 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf0856283 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xf08e63df pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf090318a rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0xf095d1f0 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xf0961720 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xf096c7b3 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xf0a7a9ab ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf0c4cfa3 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xf0c53f52 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xf0dd98b4 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0xf0e8ed87 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf0fa5c96 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xf109ab30 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xf111ce49 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xf15e28bc pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0xf1649259 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0xf16ab76e debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1854d3e rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0xf191efb8 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf1a4b036 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1b551d9 ibft_addr +EXPORT_SYMBOL_GPL vmlinux 0xf1ba3488 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0xf1bdd2d3 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xf1c346b6 nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xf1c7e142 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xf1cfd99b bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf20c3414 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf23862e9 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xf23a08c7 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xf25ddfe1 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0xf278798e usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf27b777e irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xf2909077 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xf291252d alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0xf294fbd7 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xf29d1c4c max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xf2a35dfc regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xf2a5ef50 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2c63e6e scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xf2c8032d balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0xf2ec6784 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xf2f07b33 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf330b271 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xf3407ca2 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xf3465953 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf37d82ef pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf386a245 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xf3a32008 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0xf3b2fb48 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3c3d309 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xf3c41f50 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xf3ca60a4 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xf3d16a69 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0xf3dd3ec1 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf3ea13d3 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xf3ea3588 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xf3ebf4eb arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xf3ec64a4 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3f721e2 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xf3f94cef cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xf40da08c devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xf40ea364 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xf455c27f rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf45a32a2 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0xf46ec105 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xf48129d7 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4d5c2d0 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xf4ddbf4d crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xf4ddc087 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf50df10a inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf544950b __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf54c9cf8 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf565d1a1 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf56916a5 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xf584f446 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5c2b44f __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0xf5d2d073 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xf5d39bcc nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xf5f976c8 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xf62207fd device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xf639d18b da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xf650888e mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xf68ae1c8 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf6a236ac devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf6a9556a btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xf6b4e5ec pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks +EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0xf7426899 ping_err +EXPORT_SYMBOL_GPL vmlinux 0xf76d6f47 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xf78032a5 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xf78f99de blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf7b192f7 blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xf7c34914 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7c561ea cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xf7ca3b29 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xf7eb43ae sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0xf7fc4a3f __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xf80c80d0 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xf8253f83 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xf82af1e5 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf8344cfe rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xf83fb8b9 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xf8588f86 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xf87255cf pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf8a3c9de vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8e7a9cb pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf90a7413 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0xf9258d7f pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf92f6052 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf95da66b devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xf9652ce4 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match +EXPORT_SYMBOL_GPL vmlinux 0xf987e0de pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf9947169 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9c5043e __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xf9c725f3 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9d9264e xen_have_vector_callback +EXPORT_SYMBOL_GPL vmlinux 0xf9e7d0e8 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0xf9f3e623 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xfa0cefde inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa32ab79 intel_svm_unbind_mm +EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched +EXPORT_SYMBOL_GPL vmlinux 0xfa398457 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfa4be8cc crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xfa62c76d xen_swiotlb_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xfa75b75e acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfa9e33f7 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xfaa248a2 devres_add +EXPORT_SYMBOL_GPL vmlinux 0xfab61b7d cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xfabd1002 spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0xfacd2fc5 switchdev_port_fdb_del +EXPORT_SYMBOL_GPL vmlinux 0xface030b input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfad93a6f regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xfae3d2dd iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xfae452e9 find_iova +EXPORT_SYMBOL_GPL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL_GPL vmlinux 0xfb0127dd irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xfb25ce06 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb3c13e5 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xfb502c23 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xfb64b230 acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb7a0226 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xfba09176 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc8dab1 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xfbd32597 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xfbd3d383 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xfbe1ea92 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xfbe2ddca remove_resource +EXPORT_SYMBOL_GPL vmlinux 0xfbea34d2 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc132d1c root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfc151d68 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xfc1d9145 policy_has_boost_freq +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 0xfc4512a8 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0xfc4c6263 __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0xfc4eb7eb usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xfc71f358 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xfc8c6004 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xfc8c62ce inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xfc8d5c59 serial8250_em485_init +EXPORT_SYMBOL_GPL vmlinux 0xfc968c8b apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0xfc9e4162 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xfc9f6752 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xfca16733 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfcaf6923 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xfcc2de92 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xfccd34f8 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0xfcd7f327 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfcdf4b3f crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xfce6fa6e __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0xfd25e0b9 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xfd2b2025 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xfd348a26 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xfd3a393b mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd8697fa sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xfd893ca4 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xfd8c3aeb usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xfd9305a8 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xfdaf3dbc __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xfdd82c47 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0xfddd59b5 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xfdea66ae i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0xfdfe7090 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xfe045537 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xfe48e19c inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xfe5afcdd skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xfe5dd336 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xfe6bb157 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe744c2f devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xfe89ab55 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe994f3c ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xfebf63d1 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xfec2e013 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfee02f24 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfee2d8b9 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xfeedd1bf ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xfef6a921 arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff250297 pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff2ce747 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0xff37d958 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xff47959a ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff60e8dc intel_pmc_slp_s0_counter_read +EXPORT_SYMBOL_GPL vmlinux 0xff7c1332 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xff864b4c irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffc72820 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xffcb90c6 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xffe17893 public_key_free --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/amd64/generic.compiler +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/amd64/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 6.2.0-5ubuntu12) 6.2.0 20161005 --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/amd64/generic.modules +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/amd64/generic.modules @@ -0,0 +1,4820 @@ +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_dw +8250_mid +8250_moxa +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +BusLogic +DAC960 +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +abituguru +abituguru3 +ablk_helper +ac97_bus +acard-ahci +acecad +acenic +acer-wmi +acerhdf +acpi-als +acpi_configfs +acpi_extlog +acpi_ipmi +acpi_pad +acpi_power_meter +acpi_thermal_rel +acpiphp_ibm +acquirewdt +act200l-sir +act8865-regulator +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5761 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7606_par +ad7606_spi +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +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 +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adf7242 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16209 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7170 +adv7175 +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +advantechwdt +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +aes-x86_64 +aesni-intel +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +afe4403 +afe4404 +affs +ah4 +ah6 +aha152x_cs +ahci +ahci_platform +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airo_cs +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +ali-ircc +alienware-wmi +alim1535_wdt +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am2315 +am53c974 +ambassador +amc6821 +amd +amd-rng +amd5536udc +amd64_edac_mod +amd76xrom +amd8111e +amd_freq_sensitivity +amd_iommu_v2 +amdgpu +amdkfd +amilo-rfkill +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 +anatop-regulator +ansi_cprng +anubis +aoe +apanel +apds9300 +apds9802als +apds990x +apds9960 +apple-gmux +apple_bl +appledisplay +applesmc +appletalk +appletouch +applicom +aquantia +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_ps2 +arc_uart +arcfb +arcmsr +arcnet +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arm_scpi +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3935 +as5011 +asb100 +asc7621 +ascot2e +asix +ast +asus-laptop +asus-nb-wmi +asus-wireless +asus-wmi +asus_atk0110 +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atlas-ph-sensor +atlas_btns +atm +atmel +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avm_cs +avma1_cs +avmfritz +ax25 +ax88179_178a +axnet_cs +axp20x +axp20x-i2c +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +b53_common +b53_mdio +b53_mmap +b53_spi +b53_srab +bas_gigaset +batman-adv +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7xxx +bcm87xx +bcm_sf2 +bcma +bcma-hcd +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780 +binfmt_misc +block2mtd +blocklayoutdriver +blowfish-x86_64 +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bma220_spi +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmc150_magn_i2c +bmc150_magn_spi +bmg160_core +bmg160_i2c +bmg160_spi +bmi160_core +bmi160_i2c +bmi160_spi +bmp085 +bmp085-i2c +bmp085-spi +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bonding +bpa10x +bpck +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +bq27xxx_battery_i2c +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt3c_cs +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btuart_cs +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c2port-duramar2150 +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +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-raw +capi +capidrv +capmode +capsule-loader +carl9170 +carminefb +cassini +cast5-avx-x86_64 +cast5_generic +cast6-avx-x86_64 +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +ccp +ccp-crypto +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +cec +cec-edid +ceph +cfag12864b +cfag12864bfb +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20-x86_64 +chacha20_generic +chacha20poly1305 +chaoskey +chip +chipreg +chnl_net +chromeos_laptop +chromeos_pstore +ci_hdrc +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +ck804xrom +classmate-laptop +clip +clk-cdce706 +clk-cs2000-cp +clk-palmas +clk-pwm +clk-s2mps11 +clk-scpi +clk-si5351 +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 +configfs +contec_pci_dio +cordic +core +coretemp +cosm_bus +cosm_client +cp210x +cpcihp_generic +cpcihp_zt5550 +cpia2 +cpsw_ale +cpu-notifier-error-inject +cpu5wdt +cpufreq_schedutil +cpuid +cr_bllcd +cramfs +crc-itu-t +crc32-pclmul +crc32_generic +crc7 +crc8 +crct10dif-pclmul +cros_ec +cros_ec_devs +cros_ec_i2c +cros_ec_keyb +cros_ec_lpc +cros_ec_spi +cros_kbd_led_backlight +crvml +cryptd +crypto_user +cryptoloop +cs3308 +cs5345 +cs53l32a +csiostor +ct82c710 +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +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 +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cxgbit +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +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-regulator +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 +dax_pmem +db9 +dc395x +dca +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +dcdbas +ddbridge +de2104x +de4x5 +decnet +deflate +defxx +dell-laptop +dell-led +dell-rbtn +dell-smbios +dell-smm-hwmon +dell-smo8800 +dell-wmi +dell-wmi-aio +dell_rbu +denali +denali_pci +des3_ede-x86_64 +des_generic +designware_i2s +designware_pcm +devlink +dgnc +dh_generic +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +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-verity +dm-zero +dm1105 +dm9601 +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +dp83848 +dp83867 +dpt_i2o +dptf_power +drbd +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1803 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsa_core +dsbr100 +dscc4 +dss1_divert +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-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +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_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc2_pci +dwc3 +dwc3-pci +dwmac-generic +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +e752x_edac +earth-pt1 +earth-pt3 +eata +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 +ecdh_generic +echainiv +echo +edac_core +edac_mce_amd +edt-ft5x06 +eeepc-laptop +eeepc-wmi +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efi-pstore +efi_test +efibc +efs +egalax_ts_serial +ehset +einj +elan_i2c +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +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 +esas2r +esb2rom +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +eurotechwdt +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max3355 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f71805f +f71808e_wdt +f71882fg +f75375s +f81232 +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_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 +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdp +fdp_i2c +fealnx +ff-memless +fid +fintek-cir +firedtv +firestream +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fjes +fl512 +fld +flexfb +floppy +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +fmvj18x_cs +fnic +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fou6 +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fschmd +fsl_lpuart +ft6236 +ftdi-elan +ftdi_sio +ftl +ftsteutates +fujitsu-laptop +fujitsu-tablet +fujitsu_ts +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 +gcm +gdmtty +gdmulte +gdth +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +genwqe_card +gf2k +gfs2 +ghash-clmulni-intel +ghash-generic +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +glue_helper +gluebi +gma500_gfx +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-104-dio-48e +gpio-104-idi-48 +gpio-104-idio-16 +gpio-addr-flash +gpio-adp5520 +gpio-adp5588 +gpio-amd8111 +gpio-amdpt +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-f7188x +gpio-fan +gpio-generic +gpio-ich +gpio-ir-recv +gpio-it87 +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-menz127 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-pisosr +gpio-rdc321x +gpio-regulator +gpio-sch +gpio-sch311x +gpio-tpic2810 +gpio-tps65086 +gpio-tps65218 +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio-ws16c48 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gr_udc +grace +gre +grip +grip_mp +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 +gtco +gtp +guillemot +gunze +hackrf +hamachi +hampshire +hangcheck-timer +hanwang +hci +hci_uart +hci_vhci +hdaps +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdma +hdma_mgmt +hdpvr +he +hecubafb +helene +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfi1 +hfs +hfsplus +hgafb +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-asus +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-cmedia +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-hyperv +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-led +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +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-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hih6130 +hio +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi504_nand +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horizon +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hp-wireless +hp-wmi +hp03 +hp100 +hp206c +hp_accel +hpfs +hpilo +hpsa +hptiop +hpwdt +hsi +hsi_char +hso +hsr +hsu_dma +htc-pasic3 +htu21 +huawei_cdc_ncm +hv_balloon +hv_netvsc +hv_storvsc +hv_utils +hv_vmbus +hwa-hc +hwa-rc +hwmon-vid +hwpoison-inject +hx8357 +hyperv-keyboard +hyperv_fb +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd756-s4882 +i2c-amd8111 +i2c-cbus-gpio +i2c-cros-ec-tunnel +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-emev2 +i2c-gpio +i2c-hid +i2c-i801 +i2c-isch +i2c-ismt +i2c-kempld +i2c-matroxfb +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-pinctrl +i2c-mux-reg +i2c-nforce2 +i2c-nforce2-s4985 +i2c-ocores +i2c-parport +i2c-parport-light +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-xiic +i3000_edac +i3200_edac +i40e +i40evf +i40iw +i5000_edac +i5100_edac +i5400_edac +i5500_temp +i5k_amb +i6300esb +i7300_edac +i7300_idle +i740fb +i7core_edac +i810 +i82092 +i82975x_edac +i915 +iTCO_vendor_support +iTCO_wdt +ib700wdt +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_qib +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibm_rtl +ibmaem +ibmasm +ibmasr +ibmpex +ichxrom +icp_multi +icplus +ics932s401 +ideapad-laptop +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_gen2 +idt_gen3 +idtcps +ie31200_edac +ie6xx_wdt +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ifi_canfd +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-hrtimer +iio-trig-interrupt +iio-trig-loop +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +img-i2s-in +img-i2s-out +img-parallel-out +img-spdif-in +img-spdif-out +imm +imon +ims-pcu +imx074 +ina209 +ina2xx +ina2xx-adc +ina3221 +industrialio +industrialio-buffer-cb +industrialio-configfs +industrialio-sw-device +industrialio-sw-trigger +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int3400_thermal +int3402_thermal +int3403_thermal +int3406_thermal +int340x_thermal_zone +int51x1 +intel-cstate +intel-hid +intel-lpss +intel-lpss-acpi +intel-lpss-pci +intel-rapl-perf +intel-rng +intel-rst +intel-smartconnect +intel-vbtn +intel-xway +intel_ips +intel_menlow +intel_oaktrail +intel_pch_thermal +intel_pmc_ipc +intel_powerclamp +intel_punit_ipc +intel_qat +intel_quark_i2c_gpio +intel_rapl +intel_soc_dts_iosf +intel_soc_dts_thermal +intel_telemetry_core +intel_telemetry_debugfs +intel_telemetry_pltdrv +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +intelfb +interact +interval_tree_test +inv-mpu6050 +inv-mpu6050-i2c +inv-mpu6050-spi +io_edgeport +io_ti +ioatdma +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +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_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_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 +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipwireless +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irqbypass +irtty-sir +isci +iscsi_boot_sysfs +iscsi_ibft +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it87 +it8712f_wdt +it87_wdt +it913x +itd1000 +ite-cir +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +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 +khazad +kingsun-sir +kl5kusb105 +kmx61 +ko2iblnd +kobil_sct +ks0108 +ks0127 +ks7010 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksocklnd +ksz884x +ktti +kvaser_pci +kvaser_usb +kvm +kvm-amd +kvm-intel +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l440gx +l4f00242t03 +l64781 +lan78xx +lanai +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-adp5520 +leds-bd2802 +leds-blinkm +leds-clevo-mail +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp3952 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-ss4200 +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libceph +libcfs +libcomposite +libcrc32c +libcxgb +libcxgbi +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +liquidio +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3lv02d +lis3lv02d_i2c +litelink-sir +lkkbd +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lmc +lms283gf05 +lms501kf03 +lmv +lnbh25 +lnbp21 +lnbp22 +lnet +lnet_selftest +lockd +locktorture +lov +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc2990 +ltc3589 +ltc3815 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lustre +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +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 +mac_hid +macb +machzwd +macmodes +macsec +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577-regulator +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max30100 +max3100 +max31722 +max31790 +max3421-hcd +max34440 +max44000 +max517 +max5487 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77693-haptic +max77693-regulator +max77693_charger +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8997-regulator +max8997_charger +max8997_haptic +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mce-inject +mce_amd_inj +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4131 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +mdc +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-cavium +mdio-gpio +mdio-octeon +mdio-thunder +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +mei +mei-me +mei-txe +mei_phy +mei_wdt +melfas_mip4 +memory-notifier-error-inject +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +metro-usb +metronomefb +meye +mf6x4 +mga +mgc +mic_bus +mic_card +mic_cosm +mic_host +mic_x100_dma +michael_mic +micrel +microchip +microread +microread_i2c +microread_mei +microtek +mii +minix +mip6 +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mlxsw_spectrum +mlxsw_switchx2 +mma7455_core +mma7455_i2c +mma7455_spi +mma7660 +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_block +mmc_spi +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpl115 +mpl115_i2c +mpl115_spi +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi-laptop +msi-wmi +msi001 +msi2500 +msp3400 +mspro_block +msr +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6323-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-quadspi +mtk-sd +mtk_ecc +mtk_nand +mtouch +multipath +multiq3 +musb_hdrc +mv88e6060 +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwave +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxc6255 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxm-wmi +mxser +mxuport +myri10ge +n411 +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nand +nand_bch +nand_ecc +nand_ids +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +ncpfs +nct6683 +nct6775 +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +nettel +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +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_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfit +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfp_netvf +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_exthdr +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +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_tio +ni_tiocmd +ni_usb6501 +nicpf +nicstar +nicvf +nilfs2 +niu +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-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 +nosy +notifier-error-inject +nouveau +nozomi +ns558 +ns83820 +nsc-ircc +ntb +ntb_hw_intel +ntb_netdev +ntb_perf +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nuvoton-cir +nv_tco +nvidiafb +nvme +nvme-core +nvme-fabrics +nvme-loop +nvme-rdma +nvmem_core +nvmet +nvmet-rdma +nvram +nxp-nci +nxp-nci_i2c +nxt200x +nxt6000 +obdclass +obdecho +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_xilinx_wdt +old_belkin-sir +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osc +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p4-clockmod +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +padlock-aes +padlock-sha +palmas-pwrbutton +palmas-regulator +palmas_gpadc +panasonic-laptop +pandora_bl +panel +paride +parkbd +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 +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-hyperv +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 +pcspkr +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +pdc_adma +peak_pci +peak_pcmcia +peak_usb +pegasus +pegasus_notetaker +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-exynos-usb2 +phy-generic +phy-gpio-vbus-usb +phy-isp1301 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-tahvo +phy-tusb1210 +physmap +pinctrl-broxton +pinctrl-intel +pinctrl-sunrisepoint +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pn533 +pn533_i2c +pn533_usb +pn544 +pn544_i2c +pn544_mei +pn_pep +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_core +pps_parport +pptp +prism2_usb +processor_thermal_device +ps2mult +psmouse +psnap +pt +ptlrpc +ptp +pulse8-cec +pulsedlight-lidar-lite-v2 +punit_atom_debug +pv88060-regulator +pv88080-regulator +pv88090-regulator +pvpanic +pvrusb2 +pwc +pwm-beeper +pwm-cros-ec +pwm-lp3943 +pwm-lpss +pwm-lpss-pci +pwm-lpss-platform +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pxa27x_udc +qat_dh895xcc +qat_dh895xccvf +qcaux +qcom-spmi-iadc +qcom-spmi-vadc +qcom_spmi-regulator +qcserial +qed +qede +qemu_fw_cfg +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas408 +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quatech_daqp_cs +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +ray_cs +raydium_i2c_ts +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +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-behold +rc-behold-columbus +rc-budget-ci-old +rc-cec +rc-cinergy +rc-cinergy-1400 +rc-core +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-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-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +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-pctv-sedna +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-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-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rcuperf +rdc321x-southbridge +rdma_cm +rdma_rxe +rdma_ucm +rdmavt +rds +rds_rdma +rds_tcp +realtek +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +reset-ti-syscon +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio-scan +rio500 +rio_cm +rio_mport_cdev +rionet +rivafb +rj54n1cb0c +rmd128 +rmd160 +rmd256 +rmd320 +rmi_core +rmi_i2c +rmi_spi +rndis_host +rndis_wlan +rocker +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-bq32k +rtc-bq4802 +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-hid-sensor-time +rtc-isl12022 +rtc-isl12057 +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-pcf8563 +rtc-pcf8583 +rtc-r9701 +rtc-rc5t583 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx6110 +rtc-rx8010 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +rtc-v3020 +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 +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +salsa20-x86_64 +salsa20_generic +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 +savage +savagefb +sb1000 +sb_edac +sbc60xxwdt +sbc_epx_c3 +sbc_fitpc2_wdt +sbc_gxx +sbni +sbp_target +sbs +sbs-battery +sbshc +sc1200wdt +sc16is7xx +sc92031 +sca3000 +scb2_flash +sch311x_wdt +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +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_tbf +sch_teql +scif +scif_bus +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 +sctp_probe +sdhci +sdhci-acpi +sdhci-pci +sdhci-pltfm +sdio_uart +sdricoh_cs +sedlbauer_cs +seed +sensorhub +ser_gigaset +serial2002 +serial_cs +serio_raw +sermouse +serpent-avx-x86_64 +serpent-avx2 +serpent-sse2-x86_64 +serpent_generic +serport +ses +sfc +sh_veu +sha1-mb +sha1-ssse3 +sha256-mb +sha256-ssse3 +sha3_generic +sha512-mb +sha512-ssse3 +shark2 +shpchp +sht15 +sht21 +sht3x +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +silead +sir-dev +sis +sis-agp +sis190 +sis5595 +sis900 +sis_i2c +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skd +skfp +skge +skx_edac +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +sl811_cs +slcan +slicoss +slip +slram +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smc91c92_cs +smipcie +smm665 +smsc +smsc-ircc2 +smsc37b787_wdt +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +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-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-firewire-digi00x +snd-firewire-lib +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-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-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-sst-acpi +snd-intel-sst-core +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-pcsp +snd-pcxhr +snd-pdaudiocf +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-skl_nau88l25_max98357a +snd-soc-ac97 +snd-soc-acp-pcm +snd-soc-adau1701 +snd-soc-adau7002 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-bt-sco +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs35l33 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +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-cs4349 +snd-soc-cs53l30 +snd-soc-da7219 +snd-soc-dmic +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-hdac-hdmi +snd-soc-imx-audmux +snd-soc-inno-rk3036 +snd-soc-max98090 +snd-soc-max98357a +snd-soc-max98504 +snd-soc-max9860 +snd-soc-nau8825 +snd-soc-pcm1681 +snd-soc-pcm179x-codec +snd-soc-pcm179x-i2c +snd-soc-pcm179x-spi +snd-soc-pcm3168a +snd-soc-pcm3168a-i2c +snd-soc-pcm3168a-spi +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rl6231 +snd-soc-rl6347a +snd-soc-rt286 +snd-soc-rt298 +snd-soc-rt5616 +snd-soc-rt5631 +snd-soc-rt5640 +snd-soc-rt5645 +snd-soc-rt5651 +snd-soc-rt5670 +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-simple-card-utils +snd-soc-skl +snd-soc-skl-ipc +snd-soc-skl_nau88l25_ssm4567 +snd-soc-skl_rt286 +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sst-acpi +snd-soc-sst-broadwell +snd-soc-sst-bxt-da7219_max98357a +snd-soc-sst-bxt-rt298 +snd-soc-sst-bytcr-rt5640 +snd-soc-sst-bytcr-rt5651 +snd-soc-sst-cht-bsw-max98090_ti +snd-soc-sst-cht-bsw-rt5645 +snd-soc-sst-cht-bsw-rt5672 +snd-soc-sst-dsp +snd-soc-sst-firmware +snd-soc-sst-haswell +snd-soc-sst-haswell-pcm +snd-soc-sst-ipc +snd-soc-sst-match +snd-soc-sst-mfld-platform +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tas5720 +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +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-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8960 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-xtfpga-i2s +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 +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +softing_cs +solo6x10 +solos-pci +sony-btf-mpx +sony-laptop +soundcore +sp2 +sp5100_tco +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedstep-lib +speedtch +spi-altera +spi-axi-spi-engine +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-loopback-test +spi-nor +spi-oc-tiny +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-sc18is602 +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spl +splat +spmi +sr9700 +sr9800 +ssb +ssb-hcd +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st95hf +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_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 +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stm_heartbeat +stmmac +stmmac-platform +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +stx104 +sun4i-codec +sun4i-i2s +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +surface3_spi +surfacepro3_button +svgalib +sx8 +sx8654 +sx9500 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_usb +synclink +synclink_cs +synclink_gt +synclinkmp +syscopyarea +sysfillrect +sysimgblt +sysv +t1pci +t5403 +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 +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_nv +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teles_cs +teranetics +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_hash +test_hexdump +test_module +test_power +test_static_key_base +test_static_keys +test_udelay +test_user_copy +test_uuid +tg3 +tgr192 +thermal-generic-adc +thinkpad_acpi +thmc50 +thunder_bgx +thunderbolt +ti-adc081c +ti-adc0832 +ti-adc128s052 +ti-ads1015 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tlclk +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmem +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +topstar-laptop +torture +toshiba_acpi +toshiba_bluetooth +toshiba_haps +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm-rng +tpm_atmel +tpm_crb +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_infineon +tpm_nsc +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tpm_tis_spi +tpm_vtpm_proxy +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65086 +tps65086-regulator +tps65090-charger +tps65090-regulator +tps65217 +tps65217-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw686x +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish-avx-x86_64 +twofish-x86_64 +twofish-x86_64-3way +twofish_common +twofish_generic +typhoon +u132-hcd +uPD98402 +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +ucsi +uda1342 +udc-core +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-dwc +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +umc +umem +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 +us5182d +usb-serial-simple +usb-storage +usb3503 +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_uac2 +usb_f_uvc +usb_gigaset +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 +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +usnic_verbs +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +v4l2-tpg +vboxguest +vboxsf +vboxvideo +vcan +vcnl4000 +veml6070 +ves1820 +ves1x93 +veth +vfio +vfio-pci +vfio_iommu_type1 +vfio_virqfd +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +vhost_vsock +via +via-camera +via-cputemp +via-ircc +via-rhine +via-rng +via-sdmmc +via-velocity +via686a +via_wdt +viafb +video +videobuf-core +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videocodec +videodev +vim2m +viperboard +viperboard_adc +virt-dma +virtio-gpu +virtio-rng +virtio_blk +virtio_input +virtio_net +virtio_scsi +virtual +visor +visorbus +visorhba +visorinput +visornic +vitesse +vivid +vlsi_ir +vmac +vmd +vme_ca91cx42 +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmlfb +vmw_balloon +vmw_pvscsi +vmw_vmci +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vmw_vsock_vmci_transport +vmwgfx +vmxnet3 +vop +vop_bus +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vrf +vringh +vsock +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5100-spi +w5300 +w6692 +w83627ehf +w83627hf +w83627hf_wdt +w83781d +w83791d +w83792d +w83793 +w83795 +w83877f_wdt +w83977af_ir +w83977f_wdt +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +wafer5823wdt +walkera0701 +wanxl +warrior +wbsd +wcn36xx +wd719x +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wilc1000 +wilc1000-sdio +wilc1000-spi +wimax +winbond-840 +winbond-cir +wire +wishbone-serial +wl1273-core +wl3501_cs +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 +wp512 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x38_edac +x86_pkg_temp_thermal +x_tables +xc4000 +xc5000 +xcbc +xen-blkback +xen-evtchn +xen-fbfront +xen-gntalloc +xen-gntdev +xen-kbdfront +xen-netback +xen-pciback +xen-pcifront +xen-privcmd +xen-scsiback +xen-scsifront +xen-tpmfront +xen_wdt +xenfs +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xhci-plat-hcd +xillybus_core +xillybus_pcie +xirc2ps_cs +xircom_cb +xor +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +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 +xz_dec_test +yam +yealink +yellowfin +yenta_socket +yurex +z3fold +zatm +zaurus +zavl +zcommon +zd1201 +zd1211rw +zforce_ts +zfs +zhenhua +ziirave_wdt +zl10036 +zl10039 +zl10353 +zl6100 +znvpair +zpios +zr36016 +zr36050 +zr36060 +zr36067 +zr364xx +zram +zunicode +zynq-fpga --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/amd64/lowlatency +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/amd64/lowlatency @@ -0,0 +1,20892 @@ +EXPORT_SYMBOL arch/x86/kvm/kvm 0x3fdafd3a kvm_cpu_has_pending_timer +EXPORT_SYMBOL crypto/mcryptd 0x3559070f mcryptd_arm_flusher +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/nfit/nfit 0x95b632d2 to_nfit_uuid +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 0x8e753ecb acpi_video_get_edid +EXPORT_SYMBOL drivers/acpi/video 0xcbb6f080 acpi_video_get_levels +EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type +EXPORT_SYMBOL drivers/atm/suni 0xc64e6d2d suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0x0d5215c5 uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x96a78c43 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xfa643fbc 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 0x14e23f16 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x1a54d03d pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x2e2a3379 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x52d6bbe6 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x7a44da0a pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x7ed54ec6 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x97e97fd3 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0xa71608d3 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xac28ea14 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xcf6e84fe pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xdd065db3 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xe751f0b4 pi_read_block +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xd1934720 btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x25375a1e ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4dde7206 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa5984b58 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xab374b06 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xac4697a6 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf1f5fedd ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x4012f690 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x4daeb862 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x898fdd88 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xda73e9f8 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x2331351d xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x3bcd94e6 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x457712de xillybus_init_endpoint +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x16921687 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x39159e3b dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x6575693b dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xdb7ebebf dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xf22c2403 dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xf3d3b7d3 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/edac/edac_core 0x4f994188 edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x073d3bd2 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1c7a248f fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1eb3c2ff fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x30bbb2dd fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3f4a13c3 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x62cc0ca8 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x645b715f fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6c0cbba0 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x728f2db2 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7a089e3e fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7b27a0fa fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8f556581 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9df996b2 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa95ec7eb fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb3c3f658 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb6006a68 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc2b034b9 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc69d5a51 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc9439a3a fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcb86b9c5 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xddd95262 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xddef7bb5 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdf4f76c2 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe08cc364 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe176143f fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3d76daa fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3e2b670 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firmware/dcdbas 0xa75079d6 dcdbas_smi_request +EXPORT_SYMBOL drivers/fmc/fmc 0x09a082cf fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x2cafddfc fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0x38def0fd fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x3a5b8da2 fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x4b8e4046 fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0x55008940 fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x84268501 fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xb5ea3894 fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0xe043b8ec fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0xf1d40cc0 fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0xfa675b53 fmc_device_unregister_n +EXPORT_SYMBOL drivers/gpu/drm/amd/amdkfd/amdkfd 0x6bd4cf67 kgd2kfd_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01ac537b drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01ca47a7 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04c590fe drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04ea16fe drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x057f606c drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05e41b7d drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x073b6355 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07932019 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c47cda0 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dcb52a4 drm_mode_object_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0def6b65 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ef04883 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7f4748 drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x102b5aa0 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11af72a1 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11d9c1d8 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13b69807 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13e09e84 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13f415ef drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x140b9e60 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x142bbaad drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x168bb5ef drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x196e0ada drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x197d83d2 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19c50d02 drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a8cdd41 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c10d5a2 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c201be4 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dabb4b1 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fc22c5d drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20c88fe3 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x214ff087 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2196b063 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21cd0f97 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21f5c901 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25c62a20 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2643ded6 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2689dbe0 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26d1553e drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26d2219a drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x275de4a9 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x282a4946 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28837490 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28b76b09 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a2bdc8 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f5978f drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a12d44f drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a16206f drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e9da79a drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30e23ce3 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3213a088 drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x338620b3 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x338ef431 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33d95858 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3548c909 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3691d786 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37960cbf drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3830db53 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3abcaf7e drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac101f3 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3aeeba5c drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c89a3b8 drm_gem_object_unreference_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ed8e2be drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3edb0aa1 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ee2ed45 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f43d590 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4009bacf drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40177a96 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x405cc3ab drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4095574d drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40e3340b drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4109f106 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4181d8cc drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41f736f3 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4212b0ae drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x423fa9e4 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42631121 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42ba5be7 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x432808f4 drm_crtc_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4458e6a4 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44aee9b6 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x469b27b0 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x472ae564 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48278cb8 drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49151fc7 drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49b38944 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a175007 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bbd8898 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c317dfa drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cb6f360 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d9bdfd0 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e5ba4fd drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ec68326 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fecf987 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x505c183f drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x518b98f0 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x520a367e drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x530a3279 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x555aa9e6 drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x559104b8 drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x563d3a03 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5695aeaa drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56cd30a2 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5787aae4 drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x584bd1a1 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x590c5588 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x598e481f drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5be513fb drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d50174f drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ee832fc drm_gem_object_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f1310b7 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f72014d drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f95f755 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x602f5c44 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x605f96ca drm_crtc_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60944774 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62588113 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x632f3d49 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65616de7 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65921472 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6595aa4d drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6883cbf2 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x690d5869 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a4b9062 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b72cf06 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cc93086 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d347998 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6db930eb drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6df75392 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef33128 drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f2a9b6e drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x700f8f5d drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x702f7a68 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7084705b drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72fc17b5 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x736a2e7c drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7430746d drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74efb988 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75a1cf5c drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76188570 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76758778 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x772871d1 drm_mode_object_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78949e56 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78a21f3b drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bc95899 drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bea3961 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c3e6ec0 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c874dc2 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d6e7635 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e159b1d drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7eb28d18 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ede429a drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f1a5e24 drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80c5f934 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8309423f drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8357cd64 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84af489b drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84c857b0 drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8530a75d drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8618fad7 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8623377b drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x878ec3ef drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87d00197 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x895bbe88 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b7d65d3 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d8c3f4f drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e3cb9b7 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8edc1dc7 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x907b9a5e drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9175c842 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91b818c5 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91b91f22 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91babc71 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9723fa46 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9738ae72 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9898e95b drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a92eaa3 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b22e4b9 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cdefb13 drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d478350 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dea8e70 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e788704 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ee7ef6d drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f7b39c5 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fb5e876 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa10c037a drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1cf9d35 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa39c4585 drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4205a29 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa42ab42b drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4d59e31 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa70e52d1 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa80046ce drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9bc008f drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9f88cea drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaaf19514 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab9d6d34 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabbd90cf drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacca57a7 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xade1d3e4 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae236a05 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae352774 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae452c48 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaec593d5 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0ebd6ee drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2489b31 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb28d1060 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb34de41f drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb37d51ad drm_format_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb39d41e8 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb58e7616 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb66af0b1 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6f8cc06 drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb70c46d5 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7226f58 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb755aeb4 drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7f3925d drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8e0ad1c drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb95edaab drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9d0083c drm_crtc_commit_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb45cd17 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb7bb669 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe196ec6 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe610a73 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbff1688f drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0a5d602 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0f82ef7 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1858b9e drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1d0aaff drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1d10b70 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc23f9c29 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc58447bf drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5fc6bb9 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6f6202c drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6f7a840 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcae1f750 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcca2420a drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcce1496c drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0bef47 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf6f5dc0 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0874624 drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0903f15 drm_format_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd10b886a drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd283f3ef drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2d1a6a2 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd44bc101 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7d465af drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd890b8ed drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda7de381 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdae5b2e3 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd25563c drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd33b6ff drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde7d56ba drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1620c28 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2db1482 drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3cf1062 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe522d4ba drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe52d3613 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe76baf20 drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7b454c1 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe85a7204 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8712be6 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8f3a529 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9425f19 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea94b430 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea98f17f drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeab149ed drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeaea3458 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec75af07 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed8d7423 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefa588af drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeff8b1a3 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf01752d8 drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0cd8050 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0fb2c50 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf32ac3ad drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3e43a2f drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4a4db82 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5c0693a drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81e44ba drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8d5b501 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9ab0ba7 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9c444bf drm_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9d88813 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb157d8a drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb325563 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbf34871 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc49a0ef drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdb568e8 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdd0b0fc drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe38a6e3 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x033d14ca drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x034fd774 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04be5584 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05ef8ec4 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05fd1266 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b4f7fc5 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b65bbff drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ce0986b drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e0e10da drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1065ad8b drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x134e602b drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19290411 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1996b1a7 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1afd9281 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e36e11a drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f1a518b drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f6bc7ee drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x205945f5 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20671bd3 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2192a62e drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23babdc7 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28339925 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28e4c7bf drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b48f6fd drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bc3faad drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ca174e2 drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d205a0b drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d4c4c1d drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2dc35725 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f612751 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30a2da19 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31160c66 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31d356f8 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x322a2978 drm_atomic_helper_best_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x347b893c drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x385eeb4c drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x399a6fdc drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a906d8e drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3cdeee62 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ce30bd6 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d6a501a drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e50a57a drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4043531d drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x417124b4 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43113987 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43503b63 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43e0326e drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45b0822b drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x495a0c9f drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a128d11 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a94a56d drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50c728f1 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5135b4f0 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x525c4597 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53ec827f drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54a2a893 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56df8a91 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57cd5c30 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58a3ce2b drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58f91952 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ad33403 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d0601d2 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d2c0112 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x603c4d18 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x607fba29 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62871e41 drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x643046c2 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64708afa drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6562c989 drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66d3fbd8 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x683d1834 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69c3c97e drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6aad06a1 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x702992a6 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x745baaa2 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75f18a50 drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a2022fd drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fefb310 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80d462ec drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x810d7d35 drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x814b2a28 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82a0dadd drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82d1a845 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x876059bb __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8841cb52 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89d6bf95 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a0d3085 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b678017 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b74f924 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92c4ed07 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95a97662 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x971de9cd drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x976a0a8c drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a20b9e3 drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9aed0bb8 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b84a2b8 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9beede3b __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e897228 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fb002cb drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fcd6b14 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1bd7833 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa25ee971 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa380d50 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaad21ead drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab472f85 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac4dd76b drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xada9f45a drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae674f29 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf6cd3ad drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0ae43c6 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2270cdf drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4b61aab drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5769381 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6dbf11c drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb88a242a drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9857116 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9ec2d80 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba6f6067 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbb4d3a7 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbffb26e drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc9b2ed0 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbedc756b drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf2d0315 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0e6f9da drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1ff24e3 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc221d4b5 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc501516e drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6d862dd drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7980151 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd09e7028 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd22110f7 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2a77057 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4448dd7 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd573e888 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8a180a0 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb19de6d drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb5d668d drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc1ab417 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdffc4d4e drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe145206f drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2db3a57 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4de3912 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe780cc6c drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7a44f8e __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7d4c309 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7f9fa0e drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe89f35b7 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf08f9f57 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2c74aad drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8b910e3 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8c705b3 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfaf47365 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbf36762 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd43819a drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bab7f47 ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0c3ddf9b ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0e4b61d3 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x113abcec ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x126968f7 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x12b53721 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1720d7a8 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1940e4cd ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1b296984 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f03b526 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2070dbda ttm_bo_pipeline_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22ec80fe ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24765c33 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x28499c34 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x29df35e6 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b083327 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2cd71928 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f36ac1d ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x40445b5f ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x425dcbd0 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x45097130 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x485a5bc0 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ebd8f99 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ffe8071 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x55bc6f26 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63b2a494 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63fd0df4 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x687cfbb9 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c8dc6bf ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e875de9 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7193d53a ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x75a90578 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x77e81a79 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7986d445 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8227cd6a ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x836d8fd0 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x837959f7 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8ccc361e ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e528853 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e7385ef ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x901454f8 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x92598252 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x946d9ea3 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99214dda ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9affbbd9 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9cbc195a ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa47a1343 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa9cd8f89 ttm_bo_default_swap_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xab646883 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb46ebbcf ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb66024c0 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbaa7a674 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbf64fdb7 ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4c69405 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4d4618d ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc7452492 ttm_bo_default_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcb94eab7 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf49f835 ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdb227bd5 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdc1226d5 ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xde5884e8 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe0ffbe82 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe12068ec ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe25cdf1d ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe33f00fe ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeb149b81 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xec738c2b ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xee39d8e6 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeeaec15e ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xef6ca90d ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf493d7ee ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x707c3f31 vmbus_sendpacket_ctl +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xa1840f1b vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xdb6b4c32 vmbus_sendpacket +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x2c3779fa sch56xx_watchdog_register +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x31ad5f6f i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x45e19d7d i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x76177386 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x1a0f8c87 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xd5c544b4 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x227e4761 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2beb7a5c mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x38b1805f mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x395b6d91 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3ef97d4e mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4d80be56 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4d8fa2e2 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4e752b1e mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x847ffde0 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x882e4e66 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8a540e63 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9262e163 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9fdafa0f mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb7753d08 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbc5e66be mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xeba6571a mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfc91b7dd mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x8f1e2919 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xde86d885 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x02ed6532 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x77556dfe iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x2ee5776a devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x64cc711a iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x76cd18b9 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xa6304edc devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x0b3918e5 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x11944f13 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x35d2558d hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x42f28ba7 hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x8057ca80 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x8a215c6a hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x2c71edad hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x79878cb4 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xad8ee24f hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xe10b453a hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x12503bf7 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4a68a42b ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x7caf60d5 ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa14462f4 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa469ea17 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xcdf70ef2 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xdfae0adc ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe967729e ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf69a7b59 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x5dd4312d ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x6c6d8aca ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x7c18b00f ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xa26a8e75 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xd9df8eb9 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x442a2fe1 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x8e1a10e4 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xa31f46c0 ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x11b204ad st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1638fa3f st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x36f1bf8b st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x408a5b31 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4dae9123 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x530ba8ac st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x56557757 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5f462bdb st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7ec88ba6 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x845d1658 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8699234b st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x92f6a901 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb9d0b320 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbc313411 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc516d317 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe2d4cc9a st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xd78a62ed st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x6260cb9a st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x400ac92a st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x76a9e9e4 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x186e03f6 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xc4e1d4f9 adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x222ee18f bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x37f53495 iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0x3b9e879a iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x45e53ac6 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x4c31ce8e iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x650c47ee iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xadd23aff iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xae6feed8 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xb10bd804 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0xb33ec6be iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0xb941eb53 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0xc57ec728 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xc7a0c7a1 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0xca103ea9 of_iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0xcb5778ea iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xd6e55199 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xd9ea9948 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe327ae85 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0xf1f7a167 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xfa504c77 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0xfca17622 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x0ae6be8f iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x3e97a329 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x4bec614c iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x4ef077e2 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xfaab6dd9 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x0d5d2083 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x11e791a1 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x25fe34f1 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xab8d1b92 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x67a102c9 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xa06a098d iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x13915dcf bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x85797b37 bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xb05cb59b bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xe19ad664 bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x198b5352 hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x7d3dd09f hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x97b9d681 hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xe757f526 hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x7a161548 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x9f669915 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x2bd3f19c ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x5deeb30c ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x1b44b93f st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xa46fb1ea st_press_common_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x02ed852c ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x174a7933 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x187fc4ef cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x21d7901b ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4affd744 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4becc7b6 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x550a8ddc ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x626dd83c ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8cd7aaa0 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9be27ac9 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa16653e2 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa861982a ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbcc714e7 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc016d68c ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc9e4ff08 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe8fa180a ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xee98dcc3 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfcee6266 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00fe1173 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02b94266 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x049ace30 rdma_addr_find_smac_by_sgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05f51c4a ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x061d4398 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07401fa0 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07ecabb2 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a1e62fb ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a8e4691 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1372bd5f ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x137e250d ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18386177 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a94e2db ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1aec0e1d ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b45670d ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1edc4064 rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f7961d5 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fa6a937 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2212b502 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23bb8a6a ib_create_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x246c6e6c ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24be7e18 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x287d1e73 ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2898abe4 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x294bec27 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c63cc1d ib_sa_classport_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cb17aa4 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d967dcb ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30a2d566 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30b063d6 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36c7cb14 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36d64b5b ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3744299e ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3796e80a ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x425b66ac ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44505b45 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x455419dd ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45def900 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4837f96f ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ba6be77 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ba8bc69 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4eec59bb ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f725639 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f9743eb ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fae95bf ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50c47267 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51255861 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x526a0595 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53eafbe2 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x576fdbac ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58b61a68 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58cff5e3 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c07d2f1 ib_destroy_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c3e5fc0 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63380fe3 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6383a03e ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x646a1402 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66071128 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x665c85a4 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69086de4 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ad9bdfe ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b323063 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b553838 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x719d6051 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7291ab4f ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72feaaa4 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x756228f8 ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7714454d ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7951d13f ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7afb519f ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b1c3bc0 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d56efe9 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d725f01 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d732d12 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ee4d6ad ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f0911dd ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fbd8724 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80e7973e ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x842f891d ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x853016da ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85de8733 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8af397bf ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ce919d3 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d7a991f ib_modify_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d8ce50f ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91d4bcb1 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95e49dea ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b9cf9a rdma_addr_find_l2_eth_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99ed535b ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bd3131d ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d1db95e rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d9cabc5 rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9eef45b2 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0b628b5 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa82618e5 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9438b20 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa3e88b0 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac828df8 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xace3dfbe ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae519de8 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0f7b569 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb639d296 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb74b1e89 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8512852 ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb99e4307 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbaea26fe ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc17e1791 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc48ad7bb ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc62fb5a2 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc665c479 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7b78437 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcaebbf9d ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb1d4131 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb8d324b ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc8a6d53 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd841e41 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd987427 ib_destroy_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd211d568 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2cb1a35 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd348daf8 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6a97d1d rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6f49727 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7960153 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7eafa00 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8650965 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd965569c ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd4f9931 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde268a5c ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde32ab84 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf68d74c ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe104cea0 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a74376 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe869881e ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebb0114e ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeef36fa6 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf28f505a ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5610f53 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6d652b0 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7011c51 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8085107 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9d3d027 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb863907 rdma_resolve_ip_route +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe67f9fa ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfea91d2a ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfefe950a ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5397d778 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7e87bf0d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x839f7d01 ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x08201f8a iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x17a79262 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1a6eb9f9 iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1ae2dc65 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x240dc98a iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x48a99823 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6952888d iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8782da41 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa05c445c iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc734c639 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdee828a7 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe44dd3bb iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe865d765 iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe86cdc14 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xec0b710c iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0bb35207 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x114cd732 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1423f06d rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1b433bda rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x37d23ef6 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4397f239 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5135c562 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x57fa9976 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9d29a392 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9e6994f5 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa6e6a92e rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xab8074d7 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xace525b1 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xae9ac6a2 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb0ac1b19 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbacbc510 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbbf240fd rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc77d52dc rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd658801d rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xda370b30 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdd2e8800 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e385842 ib_rvt_state_ops +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x15261ad5 rvt_alloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x344dcf6c rvt_check_ah +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x50b11bc2 rvt_rkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6df583ac rvt_invalidate_rkey +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7763ae96 rvt_dealloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8b1d1415 rvt_lkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa895cb6c rvt_mcast_find +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb436dda8 rvt_init_port +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb468dc51 rvt_cq_enter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc1363cc8 rvt_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc78811e8 rvt_unregister_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xecc48d47 rvt_error_qp +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xffacccad rvt_register_device +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x48f93f58 rxe_remove_all +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x49960935 rxe_add +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0xb5605b84 rxe_rcv +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0xc7e088fe rxe_remove +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0xc87b6128 rxe_set_mtu +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1df74f9a __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x29586cdf gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x3dedf5fa gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x42a8de6b gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x772d6685 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x996a5a8f gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb4d60688 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xd033e779 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xeec022bb gameport_set_phys +EXPORT_SYMBOL drivers/input/input-polldev 0x073c7b3a input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x42b0c33c input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x65a852c1 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x6dca1679 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x802f39b8 input_register_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xe627793c matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x3132352d ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x66a54f28 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xef6da3d1 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 0x8d0e3444 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x99b49fe8 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x2693f96c sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x2a69559d sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x712c004e sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0xa3e9340f sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xb08131e2 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xd8670078 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x6b73f081 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x88710752 ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x3f64a2fc amd_iommu_set_invalidate_ctx_cb +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x591cb937 amd_iommu_bind_pasid +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x7c431650 amd_iommu_unbind_pasid +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xaa964ab7 amd_iommu_init_device +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xccc6c92d amd_iommu_set_invalid_ppr_cb +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xf7600739 amd_iommu_free_device +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x00722ecf capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0f0dddd8 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1afb6849 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1cc437fd capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x323c158f detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9296dd03 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x983eedb0 capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbc2e257e capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc21d2579 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc2ea7b4e capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0c21271c b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0e75cd4a b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x102bcc04 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x129283f6 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1cf6b27a b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3e99eb5c b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3fad1246 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x592ab97d b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x98f1a87b b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb3295373 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbc72de09 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xcae9b1fe avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd3b74b45 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd4607c0a b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf8a8e82a b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x26a6a2db b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x64dd4871 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x7be3ca8b b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xa8851431 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6124d56 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xdb381876 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xe1c36738 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xe3d1a397 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xed174668 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x3483cc27 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x6cc9355b mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x73ff3c74 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xa7721081 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x01499753 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xe1b25648 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x771886b3 hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x7a1e9014 FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x8bc4b67f FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0ec1296 FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3eb73aca isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x7ec9d026 isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x9d8e2741 isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xad97b3e0 isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xfebeb6ed isac_init +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x92f4b084 register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xa7168469 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xd43ebf60 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x00272595 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x010d7f2a mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0533a390 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0b05e70b mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1049ebe1 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x12cd0aa6 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf1ede5 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1f105be7 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3ae98bef mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4d70bdd4 mISDN_initdchannel +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 0x63f62c9f mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x70fef08d recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x774405b5 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7a27e51b mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x81f64bf3 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8478fe10 mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8549d8d0 mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8badbcfb get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x932383c2 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9592d0b9 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc525fd78 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcb09122c mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd060822c bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd078c16b 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 0xde68c8fa queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe9495624 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf0bbefb0 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf84ae11f mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1f529ce8 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0x2f0966b1 closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x44a37d62 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x5b59b856 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7daccb73 bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7f2a56c0 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x8833b0e8 bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0x8f8fc624 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa37368db closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa3c5c702 bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xca5df778 __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0xce47a6d9 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xcf1fe180 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd2813054 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd97c32a1 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0xdf892351 bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xec6f33d0 bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0xfbc456c1 closure_wait +EXPORT_SYMBOL drivers/md/dm-bufio 0x268682d2 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-log 0x611d3d60 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x7b8223eb dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xdaff0148 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xf7a51d2f dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x0a71fe82 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x3709c69d dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x5e2bd5d7 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x99cd6d9f dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc712016e dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xd93421ff dm_snap_origin +EXPORT_SYMBOL drivers/md/raid456 0x9b1b75e7 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0750a402 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2c9a4877 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3394e216 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x41645b86 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x516c1a24 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x53a24723 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5aedbb9f flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x655055fc flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa8a7e596 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xaa2fa50b flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb263f326 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd2c11a46 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd98de573 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/cx2341x 0x0b93f728 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6cc7797c cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0xaa3722d1 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xbbc51973 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0xeeafbb3b cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xab67c584 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x2335cb15 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0x4110b2f2 tveeprom_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x00fd3cbb dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x079aeb6b dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08c0ecf2 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0d3c856a dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x12f5425e dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1473db5a dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x14fdf0ee dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1c3e94b2 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x21253d2f dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2a40b89b dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3405dbfc dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3c0cf335 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4b91d95e dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4cf3b0d9 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4eae4ed4 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x522f4e71 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54d42f6e dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5794592c dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5ecf8160 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x60aac56f dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6560e532 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x682414bd dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x795a7b9c dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x805f9a4e dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8274a312 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x848738ae dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8b9ef55c dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8bcbbafd dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c21d5a8 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa03dbd20 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa114d835 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xad8fe3db dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbf5ecac3 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd3bc3c1b dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8988b7b dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeaf47cb5 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf20ad4c6 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf805790d dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x56103ef4 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xcfb5cb49 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xaf835dbc atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0b1a19ea au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3208cff3 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3b189bfd au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x46a45d9f au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6ac53b9c au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x96b3599a au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc98e8c9c au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf43a8410 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xfa4c26d4 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x950c3008 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xa7613e6c bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xcbf14430 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x97744355 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xb374fb22 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x88ebbcac cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xd825fdfc cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xd5b641d8 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x8a351954 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x862cddb3 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x8e1fbd01 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x3bcf4973 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x7098c9be cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xfdede194 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x116d1df6 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x6359ee45 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x6d92040f dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xdd6f99d1 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xf9c4166f dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2eaa8889 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x352c6f09 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5d460985 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x617ec94d dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x762c2583 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x84e59d62 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8755b9d4 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8949e3d4 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9bfc221a dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbea0f022 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc6b6d868 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd8063038 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xeeed39c6 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf212ca23 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf8f8d6b1 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xac69d87e dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x75b356ce dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa7adb253 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb586596a dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xbe99e917 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xeb6df1eb dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf30d74e1 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x326519ef dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x51e2ced8 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x843729f4 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x895f02e1 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x217457a0 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x42e355e5 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x841b17fb dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xa9cea9fa dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xb2c45f65 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xb979ee9e dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc62c6f8e dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xed2f880b drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x5e0bcfa1 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x355a60c6 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x10d72bb3 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xb6700856 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x191ece73 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x65825ba7 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xe14b1199 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x758813f8 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xc7def7c2 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x9e3e2eb0 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xaabe9807 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x97dbb1d4 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x528c863b ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x0b984b56 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x9bc33214 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x26a60be9 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x300d5b69 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xe047ddb0 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x78c26581 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xbdd248ea lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x26bc2a32 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x7496882e lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x24ed07c9 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x21abd1dc m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x427f22fd m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x73493ac1 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x513f5fa9 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xb9efd895 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x3342b155 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x30ab8f9b mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x613629eb nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x6fc311cb nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x3fad5d0d or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xaf15580e or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x23d0ab9a s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xec91b5df s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x1952b96f s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x2de4c0f8 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xc5df8959 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x08e0ff1c si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x6f64e8ad si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x29df630e sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xac0c5358 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x6cb889e8 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x8bff9a0d stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x3c341124 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x2503191e stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xcdde7737 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xaebb4e9e stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xc9c16326 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xed13fc03 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x4e7a29d1 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xb391e405 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x83782b9a stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x7a57a363 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xfa9f0535 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x18d6add0 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xc8eff4fa tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x2c016b48 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x480d1ed9 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x001a7908 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xc9dd5204 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xb1846857 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xf4e0281c tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x9de0f88d tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x81fc8545 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xb8e75d48 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xfb5437f4 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xb888436b ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xc5abba43 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x9d54318c zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x11f96d4b zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x079f237c flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x2858e926 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb71d3df3 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc6b16483 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xcc5d5589 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xdb1b2043 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xdce228f5 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x68086873 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb6732329 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xcf8fb875 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xf23bac10 bt878_device_control +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 0x9aa705b5 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xa42d76ba bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xb7cbd890 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x58c78080 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x708c53d1 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7b42f7a6 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa2ce4eb1 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb4cb2fd5 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe5e63a71 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf351a4d7 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf49bdae5 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf8d0f528 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x9687a21b dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x1bdcfcab cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x99df769a cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa3414ea1 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb41dda1a cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe8fbbb4f cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x75a33931 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 0x025e60b1 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x0e7dcb4c cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x3b5efe1a cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x893b333d cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9bec19a6 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xba621220 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe5087dc3 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x6448a00e vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xb0fb8023 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x0a74fe42 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x1a54ba32 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x9a804a04 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xbfc71150 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1d849d67 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4bad47e6 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x503ed2ab cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x6fc945ed cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x92a3715e cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc281f377 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd001eaad cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x11837847 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1261d477 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1e448b64 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x22d69196 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3da36ab1 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4bce771f cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x54873221 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5dfe1413 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x605291ec cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6faf95b7 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7273930c cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x99d239a3 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa0758e22 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa8338851 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xaaffd945 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc016f1dc cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc05b91a4 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd430724a cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe1d01b09 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xed4af4ce cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x04da8391 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x13c188d0 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x21ad814a ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2801b6f0 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2f692a6d ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x31090264 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x37010023 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3d0ca6a8 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5a46ac40 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5d195794 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x66eee314 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x99573306 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb0038ff2 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb7c28bf5 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcb06eab3 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd5bde232 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe3051ed5 ivtv_udma_alloc +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 0x3d5f6381 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x485d24cf saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5b6a5fbd saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x716ccb76 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x739f5366 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x935944f7 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa17d18ec saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xadf77480 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb6e81778 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc267b779 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcf11b4b5 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe9477549 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfa20a6fd saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x54df92ce ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x0c18b501 videocodec_register +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x5f44ccb0 videocodec_detach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x9c0a2823 videocodec_unregister +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xa6dc6664 videocodec_attach +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x11284225 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x4d6139e7 soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x673e5fce soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xa9a6cdc0 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xadbbfc34 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xbad98afc soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xd509636b soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/radio/tea575x 0x1b8b44c2 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x28635d59 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x3319fdf7 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x4553352a snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x461f9581 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x52eb1963 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xd1484e39 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x24c7c549 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x3869d547 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x841642e8 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x9ae46372 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xd425be7f lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xe1de35de lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xe44f7a97 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xf34e8800 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/rc-core 0x676cdbc1 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x6b3f98df ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x3bad5ef0 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0xb59bfa26 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x021e6093 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x37085a56 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x9d557795 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0x2f55744e max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x31c78b6d mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x9c5f6e2f mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x07706baa mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x2cdb1bf8 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x2509920c mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0xedf2bfe3 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xcc42a01b tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xe3a1f461 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xd8393a08 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x4baa146f xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x37d3d714 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xefca52da cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x31eaa866 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x33cfbdca dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3aea907e dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x48a51ad0 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x755b0856 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9d4f920f dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xac719b71 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc0f79fdb dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc7bc2450 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x2d18c77f dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x43f1a70e dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x68592e1d usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x85968be1 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb9c0c8ef dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe8c08309 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf7c8142a dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 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 0xea039ad6 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0acd0cfe dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2adfd14e dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x53bd8971 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x61bf10df dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8f33b5d1 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9a1a8fd0 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa24abfdb dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa7b8313f dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd29b2442 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd4631527 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xeba0032f dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x9fd859ba em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xfb8c4c0a em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2375d67f go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8a94baf3 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbf496d76 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xcaa19a87 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe34bddbe go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe735dc7d go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf300fd5a go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfeea8a62 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xffa58bea go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0ec06ba2 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1795e75a gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x72b96ece gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8334add8 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x84a2dafe gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x87d43452 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc61621c8 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf4573fcb gspca_resume +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x78dc272d tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xb8783775 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xf01b2113 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x4b6faef9 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x60a8af33 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x8bff0ad9 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xa38a09ce v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xd0de42ce v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x17eb1653 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x2f4b83b5 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x4f3b00e1 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x73951a3d videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x7fa5b5b2 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xfcd39c8a videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x6a4f0c6f vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xba3a719f vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x11016d80 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x3340c4e2 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x626b2ac4 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x90f7cda1 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xac8ea220 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xeb37fc85 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0xfc082be7 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x02277c59 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x034b6f91 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0997e979 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x15262848 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x18ea036c v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1980099a v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1e3b525b v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x202f4709 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30410458 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x323efa46 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x327fa6cb __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x33a70da3 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x387d4d75 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3976c2f8 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3977e825 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3acef7b1 v4l2_queryctrl +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 0x3e8cabbf v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x476f7a6c v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x47db632a __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b307c5c v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4df1b476 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e52e116 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x50bf2167 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x55a37ab7 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x561afe41 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x59446f95 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5cd6aa94 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x62d84af0 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6866f204 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7017d431 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x73053b02 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x75cb894d v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7dbb0794 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7dc97864 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e0aa6d5 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x82a769d5 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x841431bf v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x84a035de v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8e49a0b0 v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x93eeff5f v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x94a62322 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa67c7577 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa98dcec7 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad95700b __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xadd23af2 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb4deb351 v4l2_ctrl_handler_free +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 0xbe63ec32 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc387c294 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xce28e773 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd1774daa v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd3b7012b v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd5066846 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd8180f16 v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdeb1737c v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe77ea3d6 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe7fdc2a8 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed9acc8c v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf24fbd2e video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf543efe7 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xffc190ca v4l2_ctrl_find +EXPORT_SYMBOL drivers/memstick/core/memstick 0x29093950 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x360f22be memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6cae724c memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x70d39831 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7311a455 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x73d8ce54 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9a302249 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xaff2c86f memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb2476e38 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc70ff0d memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe6a1eaa6 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xeb04fac8 memstick_next_req +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x04104223 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x088dfcce mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0e2ee016 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x151e5ac8 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1aac227a mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1d89af0e mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1dc57fe2 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1f7565e4 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x39563c13 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x41667bad mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x491bcd07 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x570c465d mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x615fbd75 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x77ec08a0 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x899b7ca9 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8ded258a mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb30b8b57 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb421661f mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb8c2aceb mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc378b960 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc61e150a mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc9e3d09c mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdf383bb8 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xec046761 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf204a962 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf2cc0c11 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf9872a72 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfa83f859 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfc74241b mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0078cec3 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x353273ad mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3d569935 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4bdd0635 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x549fab75 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6373e753 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6aaa6463 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x729df930 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x795f7569 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7f6ae99e mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fd35043 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x890ca40a mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8d80cc77 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9693e7cc mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9a2401c1 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa569ca70 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa895e0fc mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa8d9f55b mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaecbf65b mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc7c79842 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe0dccd87 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe73489d7 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe887f723 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xeb9035e0 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf34e7621 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfcda30f4 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xff406764 mptscsih_show_info +EXPORT_SYMBOL drivers/mfd/axp20x 0x56f76f05 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0x93a71ee7 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xc8a8deea axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/cros_ec 0x1ae7cead cros_ec_register +EXPORT_SYMBOL drivers/mfd/cros_ec 0x30a7efb1 cros_ec_suspend +EXPORT_SYMBOL drivers/mfd/cros_ec 0x624d3a37 cros_ec_resume +EXPORT_SYMBOL drivers/mfd/cros_ec 0xb5367463 cros_ec_remove +EXPORT_SYMBOL drivers/mfd/dln2 0x0e63a411 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x3b9260fe dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x45a53da8 dln2_transfer +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x8989f79d pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xf03729bd pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x18196ec0 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1ea4ec24 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2767a5da mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x30f07e28 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3e5fd41b mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x56e5b008 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x957f568d mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x981d059d mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd7620de7 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe5310772 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xeb746637 mc13xxx_reg_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 0x2575947e wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x28aefdf9 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x80360997 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x85f6444d wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xb7ccffd4 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xeca52925 wm8994_irq_init +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x4b3e5065 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x9a8ad84a ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0xfc393ee4 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x6d14d52c c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0x90de1e4c c2port_device_register +EXPORT_SYMBOL drivers/misc/ioc4 0x9ab67008 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xb06cb697 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/mei/mei 0x476b569b __tracepoint_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x58670421 __tracepoint_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x950a912a __tracepoint_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xe4d3e6fc __tracepoint_mei_pci_cfg_write +EXPORT_SYMBOL drivers/misc/tifm_core 0x181e830b tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x1d194600 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x2b9ee8f5 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x4d7c8169 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x59630879 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x61d4f70d tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x87a81b77 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x8c30dfa6 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0xacadf131 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xc9b2ca1b tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xfe4c71a1 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xff8b89ad tifm_add_adapter +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0xc88bf19a mmc_cleanup_queue +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x1ffddacc cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7c4c61f9 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x80cb9a04 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9eee800d cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xae6b7946 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xbc584f9e cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc06370ac cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x092a2083 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x667ad271 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x7b8a6293 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xae4b3bc6 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xa5b4d903 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xb2f001aa lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x1e07f016 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x1bd968c1 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0x86ea6073 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/denali 0xbbd3a1d1 denali_init +EXPORT_SYMBOL drivers/mtd/nand/denali 0xdfdaa8c5 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x35116413 of_mtk_ecc_get +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x4077c768 mtk_ecc_enable +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x5437e775 mtk_ecc_disable +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x67dc4d5c mtk_ecc_adjust_strength +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x6df58afb mtk_ecc_release +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x76e53683 mtk_ecc_wait_done +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x77ecf26d mtk_ecc_get_stats +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0xf00129a1 mtk_ecc_encode +EXPORT_SYMBOL drivers/mtd/nand/nand 0x0570a6d1 nand_read_oob_syndrome +EXPORT_SYMBOL drivers/mtd/nand/nand 0x1213ac68 nand_write_oob_syndrome +EXPORT_SYMBOL drivers/mtd/nand/nand 0x221ab252 nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x52a4ba45 nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0x944da032 nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0xcf5e3b0f nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0xd73cb032 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/nand 0xd918ce0e nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand 0xf7f99c94 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x4f000834 nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xe2e6d538 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xf6c4a56c nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x25d2a6b1 nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x37cc8368 nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xad457764 onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xb84c503b flexonenand_region +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x149a0b77 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3307ab29 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x40dbcee8 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x53778e4a arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x54fdd2d6 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x74a06ad2 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9826e719 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9a3ecd3e alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa6bfbdcc arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecf127b1 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x508138c4 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xbd721fa2 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xcca83ed5 com20020_check +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x414ef87e b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4a4a8ef4 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd86d883f b53_switch_detect +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0134411e ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1141b79d ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4550c23f NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4c69ef89 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x705cd815 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x86962979 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9c5195b6 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9e2436db __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb198110d ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbeffa8b7 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x11c2c7bd cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x285bde59 bgx_get_rx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6dc1648d bgx_get_lmac_mac +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 0xe48ca42a bgx_get_tx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf9508980 bgx_set_lmac_mac +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x25110e3c cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x34c1f82d dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6ed92fa5 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x736ebd54 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x77e16d98 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8469b73e cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9c8b96bb cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb1bb24e2 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb4297556 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc8550c51 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcabcb29f cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcd9d277f cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xce9d746d cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xddc5a6df cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe3d59140 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf3d08dfa t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0225ed11 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ab07c86 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2a73841f cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2f8054fb cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x32003308 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3273364c cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x331db8c3 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35d51ca9 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x36f12fcb cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3edf1f12 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x42be205a cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4a9fed42 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4d0bebac cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4de751af cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x54414126 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57707dfc cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5b4457c7 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6608ecd4 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x687b7846 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x869c02d3 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86b663bd cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8a118ad0 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x97120156 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x97261716 cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaed9933b cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb28b850d cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc5435456 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc7915436 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcde6b577 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd2fa626e cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd793abb2 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe1ed7a85 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe3e99b99 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedad6185 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe333f6e cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe658257 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x32e142a2 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x3ae0094a cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xbcbc7ff9 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xd04502b2 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xf98151a7 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x090da5cf vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x21e65c39 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x483f7ef1 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x77573554 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd5275917 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xef991fec vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x041a4a98 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xa97e6448 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x47e5b015 i40e_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x52cd99b4 i40e_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00a91395 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ca48341 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f2ee426 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18cde7dc mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f3f3aa2 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21b7eafb mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2606921f mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e9cde52 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3481410b mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x375d7713 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3eca2ea2 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fca7271 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44b669f5 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46625dff mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d7fe5b9 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5123db67 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52be943e mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x571aea43 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5978fa0c mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x680e8613 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x699ff831 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f289acc mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7df9f29e mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94117a24 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x945299eb mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ba406cf mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa10e8c8b mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1c579f3 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb82d9e04 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2452135 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3163055 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc36692e4 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3a7b627 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb0c9be6 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9dab9eb mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebe460d5 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3f4a08b mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf97795f1 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa18a81f mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe983609 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08150a90 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0860ce99 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b0ddf0d mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d8f2ca0 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f32a02f mlx5_add_flow_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13f6eaad mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c866bd9 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e043068 mlx5_core_create_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fb7f7e6 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20509072 mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2554563b mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b6877f8 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2caaa222 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ab18cf7 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ecc3176 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45f9dab3 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5304321f mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x579dafbb mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x581053f0 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5873f107 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59bd70b9 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5aa918a1 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62feab78 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66750d0f mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x684f1bec mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68800227 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71ade24c mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7278c239 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73c0ac36 mlx5_del_flow_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74d88d91 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b01c169 mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8457db9c mlx5_core_create_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8cc29eb3 mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9199e116 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9490bc34 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x956cc402 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x966523b2 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5bb0e3f mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa91f213a mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9c09350 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9d237ac mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad63db91 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3df21c7 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8d72f7a mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf966f6b mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb924bb3 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf5e6e43 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd75799cb mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdacee842 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdca3a630 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe43f7f7b mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec1e7168 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed45b1db mlx5_core_destroy_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee8e0365 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef04e7ff mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef069d6e mlx5_core_destroy_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf12d72eb mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3b92259 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf449ff3e mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf54dc2c6 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7a41160 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x00ae1665 mlxsw_reg_trans_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ab0c687 mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x27b3cf5c mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d07a992 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3247e4bb mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x377f5dec mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x39a96739 mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3c720bba mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x668baa94 mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x72a05371 mlxsw_core_resources_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5ff38e0 mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb838d431 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xba8d741e mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbbcfd8f4 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd47e3671 mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdbf793da mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xec51e246 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf001a318 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x8c30405f qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x20ecefba hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x3065bf60 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x35997773 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x3dd629fa hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xbb33a3e3 hdlcdrv_register +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0138af48 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x2336e1bd sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x350c245e irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x424bc228 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x480e58c0 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x62def379 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x754f2959 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x84484dc9 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc4c45ebc sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xcd070336 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mii 0x06534851 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x66a4c5a4 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x7b2244a4 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x8f9998c5 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xafd63ba4 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xbdb33199 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0xd710bae6 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xea857cbc mii_link_ok +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x8666480b free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xc52af074 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x0622f120 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xa61ac35d cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency +EXPORT_SYMBOL drivers/net/ppp/pppox 0x17cf9599 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x44833e8e pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xc3a56580 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0xbe733211 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x0b4900b3 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x11c85197 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x37b9a828 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x52b3ff09 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xcb1dac29 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xccef55d3 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xda743670 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xf6846909 team_options_register +EXPORT_SYMBOL drivers/net/usb/usbnet 0x8b24a8b8 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x9211dfef usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x9dbdc391 usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x133963a8 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2d251523 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x60017666 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7e187bc9 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0x83f7f64e detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x968ea3bc unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc1433145 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xcc938594 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xdec024a8 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe9f5776b unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xfe187f4f hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x7b0e0132 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x02f5adab ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0465704e ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x08744f89 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b5640de ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x18b14043 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2e2cc893 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3dcfc4c0 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x43a3789c ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x99bc5a85 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa2e6d403 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd224dae9 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe783f984 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf1867c12 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x030326c7 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x060861e6 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x08cdfa00 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x14a241c6 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x25d93701 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2fc9a0ac ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6c7b470d ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7cc1c481 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x805dbe06 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8a8e084a ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc3768385 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcbdf80b8 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe323c3dd ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xeb6de70b ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xeed992a4 ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xff3bc21b ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2b81c7d3 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x317ed423 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x42bf3d64 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4ec8fe33 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5b035e3d ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x66259210 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x77b29d8a ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x84ad37a2 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 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xdf3fcaed ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe83150be ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf31941fe ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x001f8199 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0a4c2a8a ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x255e9c79 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2626ee75 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x33f39fd9 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3c165813 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4b8cb83d ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4d844b79 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7d55e504 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7e3c0f90 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x82c1af05 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8d5f083a ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8fcd4126 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8fffae5f ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x948392db ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x94df4635 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9eb2b185 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xae68d042 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaff75cb0 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb977d807 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc055461f ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc6f96445 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xce1784cc ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00774472 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0170bea4 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01877a88 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0218dfff ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0464a748 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x055f99cb ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x058e0b6b ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13eb290f ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19b139d0 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d74c04a ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ed1abd0 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21c253d9 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22feee20 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24bb9c57 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24fba455 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x280592ce ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2880208e ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28c8480a ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e2ee71d ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f58efd2 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f7dbfdf ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31342fdc ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3499ad9a ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x375f4ccd ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x377700ad ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38752088 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b10cb46 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x412e5d2a ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x424e82de ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45529b66 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ea1c5b2 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ec938c2 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50304e0c ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x513326f7 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54aec7ff ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5661e285 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b51cdd8 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60593736 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x615b1140 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64701f7f ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67eac8d3 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68b6002b ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x718420ca ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x718a05b3 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7651f29a ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79d0cf5b ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a327093 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c3a8a59 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80541ef1 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82cbcf4a ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x853a5367 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88d90523 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a58aa7c ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c0a0cfa ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8cad6ec6 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8cdd7926 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x927ab11f ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94f45339 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9664d31a ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98afcc3e ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99f431aa ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d177a95 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9eb8d3df ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9fd373ba ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa06b0f0c ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3373204 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaaa6ede6 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab167db0 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb0331f6d ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb28c66be ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb31f3d28 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb34c1a22 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb76821f3 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7e91b49 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba773e14 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbe60124 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbcaa364e ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf8938bf ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2d7a312 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2f6f04c ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4d60b23 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6f1804f ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc83429b4 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9dd8506 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcaa5c063 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd30f2463 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd380eb86 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd38e678f ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd55e7725 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdaf742f7 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xddad9bc8 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdfb5a08a ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0b6d93c ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe361b222 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6e0f66c ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7ed79a6 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea7f1c1f ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1e21263 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf40c1c17 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf943ac04 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb5a5df7 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd022bd6 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfdb6e0b6 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe028502 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffddf1eb ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x2b7f1f03 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x543da1c6 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xeb0e6f42 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0c19a14a brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x154a9a9d brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x25063e9b brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x253f5242 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x349a4733 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x423ca7de brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6ae0fd11 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6d5637e6 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8da59bd2 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x976893cd brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbceaaf05 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe83ab0d1 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe90f045f brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xec7c9824 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x4c8283ca stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x83e4474f reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xdc51bb5c init_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x004caab8 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1869beab libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x20435cd5 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4763428c libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4d981583 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x592c4f54 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x680ad750 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7ceed0b6 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x82429248 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x83082280 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8699d796 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa2a15c7a libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xad8aee21 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb6999d59 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb86db9eb libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc31115c4 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcd63cb12 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe0e61494 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe627d713 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfa658889 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfd72057c libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x01233eda il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x056d6d21 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x05a22a4c il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0a7c2f3d il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0abb39fa il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b5016be il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x148158a3 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x14c6caee il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x15e89623 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x177e1463 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a3d6a33 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d55230c il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x20a7f5dd il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x22c0fc30 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2d2afb2c il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2dce3686 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36b4aae8 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3b50c8b3 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f279bb2 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3fd2c42f il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x431b41ad il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x43c6a9d0 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x46d201a6 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4b2a1926 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4d553c68 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4d62c78a il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4eda956d il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x549d0c60 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x575d2e8e il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x57b7eb71 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x581218fd il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5a4c2858 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5b316c2c il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64160e91 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x642c2a35 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x650b7193 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6534bca8 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x67727e7e il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x67f5a149 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b5a5ac2 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7317b2ec il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7704e65f il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7cc47f7b il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e35e79f il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x828fb1f7 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8545564d il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x88743e68 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a45fde7 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a97690e il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ba5e129 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8bbe4c81 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8db47383 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8dc7760c il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x910ee46d il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x97625402 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9a4df2fe il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b538187 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c5ce7a5 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa19df4e1 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa23199fe il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa3196e17 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa5a90fda il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa5b36296 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa7194446 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaa68020d il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xac3a329b il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb0975fe8 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb0ab98b2 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb0d71194 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb3f9432a il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb66cee6b il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xba7143b5 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbb455875 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbc056b97 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbda78741 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbdc94c35 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbdf0be73 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbe7f4b78 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf6f2585 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc03a5e10 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc92e1e04 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcbf73a54 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd14be0e5 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd2137c33 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd2866ab3 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd486b9af il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd9a98825 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdaf043fa il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe133aa03 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe2a5a5df il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe2c9aaef il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe4c83ec3 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe69dee05 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe98afadb il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xead0f065 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec6a453a il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfb7f3170 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfbf653e1 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x47bda8f9 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4e0c2b0e __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8b0e519b __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd031d4c3 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe4d855cc __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf050905c __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xffe01d38 __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x140e8bce hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1d8ad08a hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1ef5e9ae hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1f4d4d5f hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2829c8d4 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x33d035ad hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3b7eda12 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x541c0915 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5bf3d82f hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5c631884 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x64833ce8 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x66117389 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x76858608 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7db379d5 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x86c43c43 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8de046f7 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9b4e371a hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xac7acf4e hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbbe9024b hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc3dc10c9 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcd6b5a87 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd43ef395 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe0223265 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe4ce5745 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf5769e97 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x02cf7fcf hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0c544290 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1d73b32b orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1ec25272 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1f0f9dc6 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x225ffc1f orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4325f6a0 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x44439f19 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4ce1710e orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x89e94251 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x91b4909e orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9e0273ad orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa3b74db8 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd42490be __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe5fea417 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xed15cf50 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xee8ccfb6 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x52a064bd rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x01854a16 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x06b31dfd _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x07d659aa rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0a2baf8c rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x10315a04 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x16696a9f _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1a016443 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x26f31ca3 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2b63c471 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x32bb91f6 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x33f4c95a rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4b15a5bc _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x508eaaa7 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x692523d1 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x730ee812 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x743b83f8 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x75d41770 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7cc397a5 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x87c7b5fd rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x87e39b56 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8921da7c rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x92f5628c rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x949e0412 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa068d9a2 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa59f7908 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xac44f691 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb253ddcc rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb2eb55fd rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbecbb44f _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc5613cca _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc8972817 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcc0ce410 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd13d9dfc rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe6f6bd8d rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe81b2268 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeb03865a rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xef516686 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf0594162 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf960dbb9 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf98db7d4 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfe91b6e3 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x4b384698 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb98799c8 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xbf550a57 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xcc2a20df rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x53a0a228 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x6133c7b2 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x811eeca8 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf1865413 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0cb36cb2 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x319d9c46 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e97f2cb rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3fdb0539 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x427f67ff rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x51c20344 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54adb791 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x592eb4f9 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5efe6ba1 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b2441a4 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x702ceb6b rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x77c244d2 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x78c14f16 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7c2f94a3 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x85f75690 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x87ebc502 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c19f8df rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90c202dc channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9ceb5f95 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa31582cc rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xabfe7b1e rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xad041b34 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb0b1f6e4 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5e2503c rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc0a57c1f rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc160f079 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc19b6ee9 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc1dfff15 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc393d72a rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe96cac20 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfc3f2a2f rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x982861cb fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xa3e3e408 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xd64f7875 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x15e1ccb6 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x8172e9a4 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x8bdf4a7b nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x9df5ec64 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xaf9cc377 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x3586187c pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x7adb8c96 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xecdc008c pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x27c8704e s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x310ad659 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xce004a60 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1e7fdd4f ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x36fbe922 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3ba230e7 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x566dd8e5 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7f3935a0 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa6136805 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc00a923c ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc571e077 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc9500d0c ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xee50c41f st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x049ffc0c st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x04bd8084 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x11d55f0d st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x18026db0 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1adb3468 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3275fa79 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4a97636b st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6848a057 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6c486863 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7add9943 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x89923996 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8c279b74 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa4804f8b st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb4bd5005 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdbb182b8 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xed4bb002 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf2ef1fad st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfd1bce1d st21nfca_dep_deinit +EXPORT_SYMBOL drivers/ntb/ntb 0x2748c40d ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x36331c50 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x4345dc45 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x656aa73a ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x68eac901 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x7a6b773c ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x83323016 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xd69d8e84 __ntb_register_client +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x321cdbba nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xaa069857 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x0b2d831a devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x04d73fff __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x0b1b9538 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x100c571c parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x18158122 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x1a1bcbc4 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x1b00ee3a parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x1cfedfc9 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x2a7462cc parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x2e5eafc8 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x32fcab1f parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x3f460361 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4f780eb8 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x519b785a parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x5e831db9 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x5ee89075 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x5feb4a9e parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x72fcd2fb parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x780828a7 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x80828a83 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x81361b3d parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x83920444 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x8a14c192 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x9ee2ddb3 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xa9204e6e parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xaa3a31c3 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xb22b99e0 parport_read +EXPORT_SYMBOL drivers/parport/parport 0xc136599d parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0xdace14d9 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xdba643fe parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xdbf4b214 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xee882602 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xeec72383 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport_pc 0x1abeb9a1 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x36c0344b parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x04bbb56a __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x06660f60 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x09392439 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0ceabdda pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x10128705 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3adcdfb4 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x510fccd9 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x51ddbbfe pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5969393a pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5e4cca27 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7027b071 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x867b487d pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9a7dd74b pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd0e1b50d pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd2d442e3 pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdf3fb30a pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe6e68ebe pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xeaffd208 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf2540892 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0b73de44 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x25fbc84f pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x28f56e42 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2c26c25c pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4100a542 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x43922fa4 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa08c7fbb pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa9e7be4d pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd378ef73 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf8b75409 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfd66e11d pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x7b4ccb53 pccard_static_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xc048552d pccard_nonstatic_ops +EXPORT_SYMBOL drivers/platform/x86/intel_punit_ipc 0x3a0b563a intel_punit_ipc_simple_command +EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0x5bb1e117 sony_pic_camera_command +EXPORT_SYMBOL drivers/pps/pps_core 0x0c985eea pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0x30d44c45 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0x6162643a pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0xa2d79591 pps_unregister_source +EXPORT_SYMBOL drivers/ptp/ptp 0x4d296ce8 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0xa78dd1bc ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0xa97f5099 ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0xd72941e1 ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0xe1091259 ptp_clock_register +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x2795784f rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x2d4d608e rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x432d46cd rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4c2e5fef rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4d4a9f64 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x9819971c rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xafdf5a20 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc66f498a rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc767478c rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xfe3f1bbe rproc_shutdown +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x95ca9fb1 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x0b2b9992 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x19e1fdf6 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x28a305ec scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xb5a0a052 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x00a2213c fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x16e801b8 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1cecd776 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x25217361 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x26a4f20a fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2a2f2de5 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5209bb86 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x54742f98 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x929c5324 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x95402095 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc58a92a6 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xcba25d75 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x020e7f6f fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x029c8e9f fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0675d9c3 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x137583e0 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1e32ba87 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2400ec1d fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2ac75a5f fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2bb9e934 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2bc4e26a fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c8dea0e fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x336904d5 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36602464 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x423985e9 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x425d8e99 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x495a0014 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5507be04 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x589aa56d libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x59ab00ca fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5a7a1a2c fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ad65ad7 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x65df152d fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e77f79c fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7046ff70 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x76b80923 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7b857bee fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fab7a5b fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80db242a fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x827037a3 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x908f1443 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x92c20b50 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x956ff278 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa5257eb4 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa8fea36d fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa995a625 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaada43d2 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaf5b6e2d fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb10daae5 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb34c35fd fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc2d6e75a fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc3985e11 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc47ec03a fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc64c9842 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc663ee95 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd016b054 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xda31a0c3 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdd37777c fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe308886b fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3e0feb0 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf08ae082 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xffa31385 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x136d6c59 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x17465356 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6dfd06a2 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xf78c0690 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x1070610f mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x003404a7 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x03ee3a4f osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0cae340e osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x184fce6c osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x19f920b6 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x26374d65 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2715f66a osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x29d5a9cb osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3458b92e osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x368e6a44 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4a6a0529 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x57e2ef31 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x59753ca2 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5a2a05d7 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5f248d30 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6618af81 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x680f286f osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6bf3cd77 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x709de3d4 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7f423aeb osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x819fb7d3 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x86e8b3d8 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9ba07e23 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa7b2853b osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa97ad646 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xab695c85 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xad56660e osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xafd8484e osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb0201d22 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb57226fb osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbff11865 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc2d76faa osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcc96cb46 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdb6a8991 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdca9b6cc osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe427e9c5 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/osd 0x3c4487d1 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x4fd0346e osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5b028d50 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x8cf1571b osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0xa65282b8 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0xb80bc8a9 osduld_device_info +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x05bdffff qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x176d0209 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1904157d qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5d8f69f9 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x76f24b49 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8a2e63a7 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb1175b6e qlt_put_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb5223b68 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd604f9c3 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe14d16de qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xefce37c6 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf69d4fa0 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x047f4fb1 qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1dc7fef2 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x906b99bf qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xc7f5e876 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xdae936ed qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe2462aff qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0x19ff253a raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x5ec076a8 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xa0b1547f raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x31174602 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x38de46b4 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x64f3fbce fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6fe48e88 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x726657c3 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x75d53aff fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7b9acb86 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x868ccfce fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x965a18d8 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcc3ba5e0 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdb721710 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf743484d fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x02dcfdba sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x037c9351 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0e3cae14 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x103b1fdd scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x167df897 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2f0f4486 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x38319a38 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x39f8ba42 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4c95d901 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5bd4d613 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x64857415 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6f8ba89d sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x780e0197 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x79e76075 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7ad7d134 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8557c939 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8c7061ef sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8e63cb50 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x93c434f6 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9fa3bb1f sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaf0c3638 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbe688a8c sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbf41531d sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd1655745 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdffc2c9e sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe8357cca sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xef3b9dc5 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf254be59 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfad4bd45 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x5718c92b spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7acb7eec spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb0d56bd6 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb1c9d2b5 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xcd193327 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x16b8f665 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x3a65d24a srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x56181d87 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x940e0adb srp_rport_put +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x2803c8c7 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x6f4d1346 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x16a85f17 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x18e77587 ufshcd_read_string_desc +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x220d836e ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x46df8436 ufshcd_read_device_desc +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x4e0cee8b ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x7a3e8efb ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x85b8b1fa ufshcd_query_descriptor_retry +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x959ea392 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xa3daa907 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xd3d5eab5 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xdfc16978 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x04ae7dd0 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x3163402a ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/ssb/ssb 0x0a8f9c8c ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x1c900dcf ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x25c7d31e ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x385e4629 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x393ec2e0 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x5094432c ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x56485339 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x57eef3f5 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x64e24779 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x65763ede ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x6a2071a4 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x79557e37 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x7b929e08 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x7f3fed68 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x96e8e1d8 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xaa6cc1cc ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xae3af15b ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xb4c854f7 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd424acd3 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xebe54e71 ssb_bus_suspend +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1021958d fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x42cc96a9 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5e7e8474 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5f2e142b fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x607eeb0b fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x73dc0f40 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x79a3fcf6 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7ffc422a fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x84aab0dd fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x84aeb920 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x862bd45a fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8be90bc3 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8e605bd7 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x950b44ed fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa47393a1 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa834c8b5 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa99ce453 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaaa8903b fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaba742b1 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb8219744 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbce9bbdf fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcb6766c0 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xce3a770f fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe52148e3 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x37adf7a1 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x823a6668 ade7854_probe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x000c507f libcfs_debug_dumplog +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x01fef7b4 libcfs_register_ioctl +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x06443cdb cfs_wi_deschedule +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0bb1866e cfs_cpt_set_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0de6c369 cfs_cap_lower +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0e8f253f cfs_cpt_table_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0f5eff79 cfs_percpt_number +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x10952de2 cfs_hash_findadd_unique +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x1689b22f cfs_cpt_online +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x23e25c18 cfs_wi_exit +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2663147a __cfs_fail_timeout_set +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x274e15ce cfs_hash_for_each_safe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x27ff182b cfs_hash_bd_del_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2dbe54b2 cfs_trimwhite +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3032b1c6 cfs_hash_for_each_empty +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x306f79f6 cfs_cpt_unset_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x31fc5082 cfs_crypto_hash_update +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x361e82d4 cfs_firststr +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x36b60398 cfs_race_waitq +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x370609c8 cfs_hash_bd_peek_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x37175882 cfs_expr_list_print +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x377f93fb cfs_srand +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3c1285bd libcfs_subsystem_debug +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3c621068 cfs_hash_rehash_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3d5e6098 cfs_race_state +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3d94747d cfs_hash_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3ea730c0 cfs_gettok +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3fb74638 cfs_hash_add_unique +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3ffb8726 cfs_hash_bd_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4062f92b libcfs_run_lbug_upcall +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x411db754 cfs_crypto_hash_final +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x44839bbb cfs_rand +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x47c28f55 cfs_hash_putref +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4a99af72 cfs_clear_sigpending +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4d3b4eaf cfs_fail_err +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4f7f4a71 cfs_hash_del +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x51b61051 cfs_percpt_lock_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x52b9c7e9 lbug_with_loc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x53ea1980 cfs_cpt_of_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x58a7ee00 libcfs_catastrophe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5c013b81 cfs_expr_list_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5d73c3e3 cfs_expr_list_free_list +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5e2140ba cfs_cpt_bind +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5f40f909 cfs_hash_bd_add_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x60b9ea65 cfs_cpt_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x62289d65 cfs_array_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x62ef9011 cfs_cpt_table_print +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x62f5a00a cfs_cpt_unset_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x6383a458 cfs_hash_for_each_nolock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x63b198ca cfs_hash_size_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x67398404 cfs_wi_sched_destroy +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x70b4894a cfs_cpt_set_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x71e3804b cfs_crypto_hash_digest +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x71f662a3 libcfs_debug +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x768e2fbd cfs_percpt_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x7fda989d cfs_fail_loc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8151c3aa cfs_cap_raised +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x84ada9bd cfs_hash_lookup +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x84d53c78 cfs_cpt_current +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x865483a9 libcfs_kvzalloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8840f591 cfs_block_allsigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x888eff64 cfs_crypto_hash_update_page +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8b8f321d cfs_crypto_hash_speed +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x92fb5f1a cfs_cpt_table_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x93896a8b cfs_crypto_hash_init +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x940ed192 libcfs_stack +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9606ad59 cfs_cpt_weight +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9879b229 cfs_get_random_bytes +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x98f0e065 libcfs_deregister_ioctl +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9d5a2ed1 cfs_hash_del_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9e420643 cfs_restore_sigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9f82f712 cfs_trace_copyout_string +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa2186911 cfs_cpt_set_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa2b68b2a cfs_array_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa76536a3 cfs_hash_add +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa9088531 cfs_expr_list_values +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa966bd99 libcfs_kvzalloc_cpt +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa9dc74e2 cfs_trace_copyin_string +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xaa7b6b8d cfs_wi_sched_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xad019238 cfs_str2num_check +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb74f8304 cfs_hash_bd_lookup_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb8354b83 lprocfs_call_handler +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb8ae9e22 cfs_hash_cond_del +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xbde28c50 cfs_hash_getref +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc00349ae cfs_cpt_set_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc0ea7fc0 cfs_expr_list_parse +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc2911d96 cfs_expr_list_match +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc45e5cdf cfs_cpt_table +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc483893c cfs_hash_debug_str +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc485f875 cfs_cpt_number +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc4d9855c cfs_cpt_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc9e7c15f cfs_percpt_lock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xcc8bae96 cfs_cpt_unset_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xcf61bacb __cfs_fail_check_set +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd358fa6d cfs_hash_hlist_for_each +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd96f406d cfs_cap_raise +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xdc59ad5e cfs_percpt_unlock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xdf2789c0 cfs_curproc_cap_pack +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xdfecb98d cfs_block_sigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe13e0ead cfs_percpt_lock_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe2f91ce3 libcfs_debug_msg +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe3bf6897 cfs_percpt_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe73800b9 cfs_hash_debug_header +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe8d8fad8 cfs_hash_is_empty +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xea411f63 cfs_block_sigsinv +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xeceac781 cfs_fail_val +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xefa4ca84 cfs_hash_for_each_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf03bdf11 cfs_wi_schedule +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf2d19711 cfs_cpt_spread_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf3565b71 libcfs_debug_vmsg2 +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xfb946daa cfs_cpt_clear +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xfd719637 cfs_cpt_unset_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xffa66c11 cfs_hash_for_each +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x07451f73 lnet_sock_setbuf +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1366b7ac LNetSetLazyPortal +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x152abba9 the_lnet +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x15b6f7bc lnet_create_reply_msg +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1827b80d lnet_copy_kiov2iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x19670622 LNetNIInit +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1a60d439 cfs_parse_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1e523e3c lnet_sock_read +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1ee5f15e lnet_ipif_query +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1fe16fd5 LNetGet +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x2aa9953d lnet_cpt_of_nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x2ac93e90 lnet_connect_console_error +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x33202a6c LNetGetId +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x3c779ee0 LNetPut +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x3f4f5b46 LNetNIFini +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x473ad33b LNetDist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x47f7afc5 lnet_notify +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x48f163c6 libcfs_str2anynid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x49993ea3 lnet_extract_iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x4b8618d6 lnet_extract_kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x50345570 libcfs_str2net +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x58a1ca89 LNetMDUnlink +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x5a172e13 lnet_copy_iov2kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x5fee352c lnet_acceptor_timeout +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x61f784b2 LNetClearLazyPortal +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x62941413 lnet_kiov_nob +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x64cdea3a LNetCtl +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x66d449b1 lnet_ipif_enumerate +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x722c76e5 LNetMDAttach +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x75ee37b5 lnet_set_reply_msg_len +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7830209d lnet_parse +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7d59a7fe LNetMEInsert +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7e93080c libcfs_nid2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7ef21bee cfs_nidrange_find_min_max +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7fbe8c70 lnet_finalize +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x83d795e4 cfs_match_nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x8e18dc7c LNetDebugPeer +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x961128a3 lnet_sock_getbuf +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x97f5966b libcfs_lnd2modname +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x9de986d3 LNetEQAlloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xa1a60157 lnet_sock_getaddr +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xa56de08d lnet_ipif_free_enumeration +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaa414970 LNetMEUnlink +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaa9b477e LNetMDBind +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xade657cc libcfs_next_nidstring +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaed3e209 libcfs_net2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb0a85cb8 libcfs_lnd2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb20da2b1 lnet_copy_iov2iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb75f7953 LNetEQFree +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xba5566d2 lnet_acceptor_port +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xbe73eecb lnet_register_lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xbf0760a2 LNetMEAttach +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xc0511fc1 lnet_sock_write +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xca9f836e lnet_copy_kiov2kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xccc45639 cfs_free_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xcf4eb544 cfs_print_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xd5832acf lnet_connect +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xdafa8811 lnet_unregister_lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xe6036cfc lnet_net2ni +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xeaeb6565 cfs_nidrange_is_contiguous +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xec1f56d5 libcfs_str2nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf1b316bf LNetSnprintHandle +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf5dc6337 lnet_iov_nob +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf8a8644b libcfs_id2str +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf94025d1 libcfs_str2lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfa106804 lnet_counters_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfe7ca17c libcfs_isknown_lnd +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x1363d79b client_fid_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x1c4bb5f9 LU_OBF_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x375e6f8d LUSTRE_BFL_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x3f46699f client_fid_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x7f7112b6 seq_client_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xae61cff5 LU_DOT_LUSTRE_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xc997a02f LUSTRE_SEQ_SPACE_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xcc50c71b seq_client_alloc_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xecee2727 LUSTRE_SEQ_ZERO_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x079c9087 fld_client_add_target +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x20cc7c6d fld_client_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x2628f20d fld_client_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x5b4d2751 fld_client_del_target +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x861705ba fld_client_debugfs_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xfcfb55c0 fld_client_lookup +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xfea62565 fld_client_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0x1b06da38 ll_iocontrol_register +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0x9a81063f ll_stats_ops_tally +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0xb42b7d69 ll_direct_rw_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0xcd3cde92 ll_iocontrol_unregister +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x027f14cf lov_lsm_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x042810df lov_read_and_clear_async_rc +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x83a8dd4b lov_device_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0xae76b6af lov_lsm_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/mdc/mdc 0x39219300 it_open_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/mgc/mgc 0xdc287f95 mgc_fsname2resid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x00bed5fd llog_cat_close +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x00c45e61 cl_page_list_del +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x014e7ac5 lu_context_key_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x018f2610 cl_page_is_under_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x01b1201b cl_env_percpu_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0297e6e8 lu_env_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x035852d0 lustre_swab_llog_rec +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x03b37a9c lu_kmem_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x05a079fe lu_context_refill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x05f2eebf cl_index +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x06d82d96 class_handle_unhash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x07aa68bb lustre_swab_lustre_cfg +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x07d45876 obdo_set_parent_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x083942ff class_del_profile +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x088dccc2 lprocfs_oh_tally +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x08e81149 cl_page_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0bc40ace cl_page_unassume +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0c378d79 lustre_swab_llog_hdr +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0c747611 cl_req_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0e0d3c49 cl_page_list_move_head +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0f0e7261 lu_device_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0f175584 lu_site_purge +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0f282284 cl_offset +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0fc52574 lprocfs_single_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x105294ab cl_lock_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x10a1cb7a lu_context_key_register +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x11495519 lprocfs_write_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x119090ee class_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1315e761 lprocfs_rd_conn_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x14014c59 llog_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x16332600 cl_page_own +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x16dacbb8 lu_site_init_finish +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x17e1966d lu_context_key_quiesce +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x17f357db lu_object_add_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x189a2f9d cl_object_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1963b608 cl_object_attr_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1a78bcef class_export_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1bdf432b cl_req_prep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1c578d96 cl_lock_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1efa8278 cl_page_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x221826f1 class_parse_nid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x225e4b8d lprocfs_at_hist_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2270b0c7 lustre_common_put_super +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x22dc450f cl_env_percpu_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x25263e26 cl_req_completion +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2547efae lustre_uuid_to_peer +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x26c5e972 cl_sync_io_note +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x275cdc7a cl_env_reexit +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x286860f5 class_handle_free_cb +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2921ea5b lu_context_key_quiesce_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x297cf5e0 class_handle2object +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x29af8101 cl_object_find +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x29f7f54f llog_process_or_fork +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2ab44dc9 lprocfs_rd_uint +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2cceb7a3 class_handle_hash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2e1fe4ad cl_object_kill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2ea4cb9a obdo_refresh_inode +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2f447048 lu_site_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x31b1b1f9 llog_init_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x31d7ff09 lu_context_key_degister +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x31f8aaed lu_context_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3242ed35 obdo_cachep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3243f753 cl_lock_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x326da50c cl_site_stats_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x33ae264b cl_page_list_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3450c289 libcfs_kkuc_group_rem +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3618581d lprocfs_rd_timeouts +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x362566c9 cl_page_assume +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x364ccced class_disconnect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x36513cf5 lu_context_key_register_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x37022043 cl_io_unlock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3726f79e cl_lvb2attr +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3734751c cl_page_own_try +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x37bc88cd cl_page_prep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x37ed6e4b at_early_margin +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x38dc269d cl_lock_enqueue +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3a8f25b6 cl_vmpage_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3bdbb6c0 libcfs_kkuc_msg_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3c6ce020 class_register_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3c8333ea cl_page_is_vmlocked +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3f0c8adc lprocfs_rd_server_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3f2ca4f5 cl_page_completion +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4247f86f lu_stack_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4357b315 lprocfs_counter_sub +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x45a06f12 lu_object_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x461bacf1 class_name2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x466d34ff class_import_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x46f52c6c cl_page_list_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x47b35f7d statfs_unpack +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x48ffbf52 cl_site_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4a41ccc9 libcfs_kkuc_group_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4ac58713 obd_connect_flags2str +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4c190aad lprocfs_find_named_value +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4d092716 cl_io_commit_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4d66e036 obdo_from_inode +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4ef789c6 class_export_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x50c7fc36 ptlrpc_put_connection_superhack +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x50fb2e98 class_exp2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x51932fb6 llog_close +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x539431fb cl_page_list_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x53cbe7ad cl_object_attr_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x53f6aef3 cl_env_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x552c0ad9 cl_env_cache_purge +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x558bec27 obd_ioctl_getdata +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x55ab7c2c lu_site_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x570d09ae lustre_swab_lu_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5e821133 lprocfs_rd_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5fe97b73 block_debug_check +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x60c35c71 cl_page_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x61e98df7 libcfs_kkuc_group_foreach +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x637c4e48 cl_io_lock_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x63a9678f cl_env_nested_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6734adbd lprocfs_read_frac_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6890d175 lustre_get_jobid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x68bd49da lprocfs_oh_clear +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6926b3f2 cl_io_submit_sync +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x69c42114 at_min +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6afdfb88 lu_object_find_slice +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6b9c7162 class_new_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6bb75fed class_manual_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6cd99dc5 cl_env_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6cf7b3f5 cl_2queue_init_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6d1011fb cl_cache_incref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6fcb7042 lprocfs_counter_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x71cbff28 cl_lock_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x73b39468 cl_env_implant +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x74115d11 cl_page_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x742559b1 class_unregister_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x752168d8 obd_unstable_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x752f71a8 class_get_profile +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x753b29a3 cl_io_iter_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x756a77f3 class_parse_nid_quiet +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x77d2089a class_name2dev +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7802fcd7 lustre_swab_llogd_conn_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x789796a1 obd_zombie_barrier +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x789a8fb9 cl_object_prune +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x78dbb4af cl_page_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x79a0b204 cl_req_page_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7b1f9494 cl_req_page_done +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7b4fc57b at_max +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7bd75c74 cl_lock_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7edcafa0 cl_env_reenter +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7f700479 llog_thread_key +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7fa9dff5 cl_env_unplant +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7fe5561a obd_dirty_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x806cc497 class_add_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x808a2807 lu_device_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x80fc0ab6 lu_object_header_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x81742d89 obd_ioctl_popdata +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x81eb3905 lprocfs_free_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x82377cbf cl_type_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x82594154 lustre_process_log +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x831f656c class_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x83bcf4bc cl_io_sub_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x83f84aa1 cl_io_is_going +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x840efc16 lu_object_find_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8446b9a8 obdo_to_ioobj +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x85898443 lprocfs_clear_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x86ec4a0b cl_req_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x86ecf2d2 lu_context_key_degister_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x87d2b78b cl_2queue_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x88c010c9 lu_device_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8a3d7735 cl_io_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8ba6e479 lustre_swab_lu_seq_range +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8bdfa8b1 class_config_llog_handler +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8ca34a62 class_new_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8d4ac7b0 cl_io_loop +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8d995706 lu_object_locate +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8e897067 lu_env_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8f67314c obd_dump_on_eviction +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x91a07554 lu_context_key_revive +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x92792507 class_connect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x92e58479 obd_dump_on_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9395858e class_destroy_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x95735c6c at_extra +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9767adce class_uuid2dev +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x97ca5257 cl_page_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x97d03783 at_history +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x989eb5ff __llog_ctxt_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x996a8156 class_devices_in_group +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x99c8f230 cl_sync_io_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9b1ed9d8 obd_jobid_var +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa06e0de5 cl_page_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa160da4a lu_object_header_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa1841103 cl_page_list_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa2b2408b cl_page_clip +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa321e610 obd_devs +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa32761b0 cl_page_delete +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa35d68a8 llog_open +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa38cb407 cl_lock_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa39ebb26 llog_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa3cbabcb cl_env_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa3f579a3 lu_cdebug_printer +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa45fa6d2 class_unlink_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa50ba8bb cl_env_nested_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa5fb234f lprocfs_write_frac_u64_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa7e16614 lu_kmem_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xaa849dfa cl_page_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xab0f429b cl_object_glimpse +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xab4f4e45 cl_cache_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xad1a5ba3 cl_lock_descr_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xad719d8d cl_io_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xae1331b6 lu_object_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xaea70a8f lprocfs_seq_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xaef945ae class_find_client_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb01963a6 class_uuid_unparse +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb12d2f53 lu_object_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb228cc92 class_conn2export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb252cee0 lprocfs_rd_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb281e396 cl_2queue_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb35519ed lustre_swab_cfg_marker +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb3fb2f15 cl_io_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb4f8ee63 lprocfs_read_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb85133e1 lu_device_type_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb8b38212 cl_io_start +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb8c62bd0 lprocfs_oh_tally_log2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xba7a277f cl_page_discard +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xba985283 lustre_register_client_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbacac922 lprocfs_write_frac_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbace0627 libcfs_kkuc_group_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbbbf5f34 lu_site_stats_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbc5622b7 lustre_register_client_fill_super +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbd487d0e cl_sync_io_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbd526f39 cl_object_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbeeb9578 cl_2queue_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbf972de4 cl_page_is_owned +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc0bf7ef2 obd_debug_peer_on_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc1623c1c cl_io_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc20cc8f8 cl_conf_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc22a7b0c class_incref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc249f3cc lu_env_refill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc404837c lprocfs_stats_alloc_one +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc56f44b7 class_import_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc6d55041 cl_page_make_ready +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc7ef5c61 cl_2queue_discard +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc82bc925 lu_context_enter +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc842752e cl_page_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc893b53a lu_device_type_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc935f361 cl_io_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc950628a cl_lock_mode_name +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc9c2c222 lprocfs_alloc_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcae3c70d cl_io_read_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcb0ab67f obd_max_dirty_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcc5e669c cl_page_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcd30497d cl_lock_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcd7d08f6 class_fail_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcf6f0686 lustre_register_kill_super_cb +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd0101fc1 lprocfs_counter_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd09611f8 lustre_end_log +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd18b37c9 cl_page_find +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd199fd55 cl_page_list_splice +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd2017930 lprocfs_oh_sum +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd321f760 lu_device_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd429877a cl_req_attr_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd4318638 cl_object_attr_unlock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd4e6be2e lu_object_unhash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd5cb433c cl_stack_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd70fe669 lustre_swab_llogd_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd7bc8654 obd_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xda5b1ced class_find_param +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdbfd526d cl_io_rw_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdcc40af0 class_check_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdd082173 cl_object_header_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xde254c00 class_exp2cliimp +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xde37c2db lu_context_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xde7d985b obd_dirty_transit_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe11af77e llog_cat_process +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe1579bfb lprocfs_stats_collect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe1951dda class_config_parse_llog +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe19d1dc1 cl_page_list_move +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe2be69b2 cl_page_header_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe2fef386 cl_sync_io_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe41ddada cl_cache_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe4ce2df8 class_num2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe5a2e4cd llog_process +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe5ca6c8e lprocfs_rd_connect_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe7e70ed8 cl_site_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xeb4bebb1 cl_object_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xec565dd7 cl_object_attr_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xec7d6b85 obd_timeout_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xef14798b lprocfs_exp_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xef53c894 cl_io_submit_rw +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xef76f858 block_debug_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf0cf4193 lu_site_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf186d501 class_put_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf260602e cl_io_iter_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf490d5f9 class_del_profiles +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf5e8eb6b class_process_proc_param +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf639963d cl_io_lock_alloc_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf72736a5 lprocfs_wr_uint +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf8cd7cdd cl_io_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf8d460e5 md_from_obdo +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf8e16a23 lu_object_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfa2dae6c lu_object_header_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfa6e07b6 lu_context_exit +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfa6eb2a9 lu_context_key_revive_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfb28a68f cl_page_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfb6aca7d lu_object_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfbea0098 lu_types_stop +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfd68d17a class_notify_sptlrpc_conf +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfdbe1557 lprocfs_write_u64_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xff5149ac cl_lock_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfffc1f11 lustre_swab_ost_id +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00cb99c1 RQF_LDLM_INTENT_GETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00d0ef36 ptlrpc_at_set_req_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00d95039 ptlrpcd_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x01a002ad client_import_find_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x01f137fa client_obd_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x031b4d90 ptlrpc_activate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x03a2a72e ldlm_cli_cancel_unused +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x048b59d5 lustre_msg_set_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0515f93b RQF_FLD_QUERY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x05462535 ldlm_lock_allow_match +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x06860088 ptlrpc_request_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x06af69ff ptlrpc_add_rqs_to_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x06b3942b lustre_swab_lov_user_md_objects +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x071fc74a RQF_LDLM_ENQUEUE_LVB +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0852422a ptlrpc_reconnect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0891eac7 client_disconnect_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x08bb2d27 lustre_swab_obd_ioobj +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x08dfd645 ptlrpc_request_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x095587d0 lustre_msg_buflen +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0a3130b0 RMF_MDT_EPOCH +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0ac252b2 lustre_msg_set_jobid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0b174c28 ptlrpc_set_destroy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0b69df7b ptlrpc_pinger_del_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0bcacb5d RMF_MDS_HSM_USER_ITEM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0ca63de4 req_capsule_server_sized_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0cf343dd RQF_LDLM_INTENT_BASIC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x10a1a86d ldlm_error2errno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x115017f6 req_layout_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x11ba484a ptlrpc_prep_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x12b6f5a3 ptlrpc_connection_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x14708afc lustre_swab_mdt_rec_reint +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x14d192db lustre_msg_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x152f066f sptlrpc_flavor_has_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x15a3e4db RMF_GETINFO_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x164f2a09 ptlrpc_set_add_new_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x172fb86d lustre_msg_hdr_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1747d8b3 ldlm_lockname +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x17950f60 RQF_SEC_CTX +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x181ce3fe ldlm_lock_set_data +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19108a0f RQF_OST_DISCONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19c08934 RQF_LDLM_INTENT_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1a5ee4b2 ptlrpc_request_alloc_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1a6a3ce9 RQF_OST_GET_INFO_LAST_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1a9b76aa RMF_OBD_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1abd3258 RMF_SETINFO_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ace4b5f RQF_LDLM_BL_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ad6c330 RMF_EAVALS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1b62edeb ldlm_cli_enqueue +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1be21715 lustre_msg_size_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1c300d8e lustre_msg_get_slv +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1c74af34 ptlrpc_resend +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1d4d4d94 ptlrpc_request_alloc_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1dc2051d RMF_SEQ_OPC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1de9c288 lustre_swab_layout_intent +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1eb2a65f RQF_OST_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ee46b51 lustre_init_msg_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ee9eb3c RQF_MDS_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1efe6786 _ldlm_lock_debug +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1fcabd3c lustre_pack_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ffc1bbb ldlm_lock_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x203aad5d req_capsule_server_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2096f5b5 RQF_OST_SET_GRANT_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x219391ec RMF_EAVALS_LENS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x233790b5 RMF_OST_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x24aafdba RMF_MGS_TARGET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2585a629 RMF_SEQ_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2587513c RQF_LDLM_CP_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x269554ce RQF_LDLM_INTENT_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x26f99d16 RQF_MGS_CONFIG_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2774fac7 ldlm_resource_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x27cbffa7 sptlrpc_cli_unwrap_bulk_read +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x285e5b99 lustre_msg_set_conn_cnt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x28900557 lustre_pack_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x29e0869a sptlrpc_get_hash_name +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2a63a472 lustre_swab_ptlrpc_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2b3a4df5 llog_initiator_connect +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2c00c60d ptlrpc_sample_next_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2cec385f ldlm_lock_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d56f168 ptlrpc_pinger_ir_up +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d798316 RMF_MGS_CONFIG_RES +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2ddd8d2c req_capsule_server_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e166051 ptlrpc_request_set_replen +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e4562fe RQF_LLOG_ORIGIN_HANDLE_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e4ca396 RQF_LDLM_INTENT_UNLINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2f0e4f87 RQF_OST_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2f793215 lustre_swab_ost_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2fab3539 lustre_swab_ost_lvb_v1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2fcb2311 sptlrpc_target_sec_part +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2fd2f737 lustre_msg_set_limit +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3011b8d6 ptlrpc_set_add_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x301d4fcd RQF_MDS_READPAGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x302937e0 RQF_MDS_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x32265456 client_destroy_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3261b862 RQF_OST_SYNC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x33453ade ldlm_lock_allow_match_locked +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x343cd69e ptlrpc_prep_fcset +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x35939a3d lustre_swab_fiemap +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x35b39160 ldlm_namespace_new +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3785e2ac sptlrpc_cli_unwrap_bulk_write +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3835ab4b RQF_LLOG_ORIGIN_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3858fb94 RMF_OBD_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x38c01799 RQF_LDLM_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x38fce533 lustre_msg_set_versions +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x395f2b94 do_set_info_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x39f60a5f RMF_OST_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3a1e4bcb __lustre_unpack_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ab90f6e lustre_msg_bufcount +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ac00716 lustre_swab_hsm_user_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3b6b7cba dump_ioo +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3bedb0c7 RMF_LLOGD_CONN_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c63e62b RQF_MDS_REINT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c8b16ab lustre_swab_ost_lvb +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ca50f33 RQF_MDS_HSM_CT_REGISTER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3d3423db ptlrpc_disconnect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3d7dc5f9 ldlm_pools_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3dc47695 lustre_msg_get_magic +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3e5fb361 ptlrpc_start_threads +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f034caf lustre_msg_get_status +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f35a11d RQF_FLD_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f752e78 RQF_MDS_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x40d687f0 ldlm_prep_enqueue_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x41008cef RQF_LDLM_CANCEL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x41879882 ptlrpc_lprocfs_brw +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4266d5a6 sptlrpc_import_flush_my_ctx +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43168488 RQF_MDS_RELEASE_CLOSE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4351e916 lustre_swab_hsm_user_item +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43705ee4 RQF_LOG_CANCEL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43d7efc8 lustre_msg_set_transno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x44036eda RQF_MDS_GET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x440c2a71 RMF_FIEMAP_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4477960d lustre_free_reply_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4481591d RQF_OST_SET_INFO_LAST_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x44fd3ea0 ldlm_resource_iterate +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x456f4744 ptlrpc_send_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45d05893 lustre_swab_lustre_capa +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45e30cea lustre_swab_ldlm_intent +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x47228a13 ptlrpc_send_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x47f5e903 RMF_MDS_HSM_REQUEST +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x49346ca9 ptlrpc_set_import_active +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4a5a2416 RMF_DLM_REQ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4a682eb6 req_capsule_server_sized_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4b4da9e5 req_capsule_get_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4cadd8c9 req_capsule_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e1706e5 lustre_msg_buf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e696b96 ptlrpcd_queue_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4eb03a6f ptlrpcd_destroy_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4f766c3b lustre_swab_generic_32s +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x500cb8d7 req_capsule_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x50443f6a ptlrpc_init_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x50dd74f8 RMF_STRING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x514b3851 lustre_swab_ldlm_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x51e311e9 lustre_swab_ldlm_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x526ffc0f ptlrpc_retain_replayable_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x52c62150 RMF_RCS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x53411557 RMF_DLM_REP +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x53a4a004 bulk_sec_desc_unpack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x555eb7fe RQF_MDS_HSM_STATE_SET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x55be0c15 lustre_pack_reply_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x56afaf18 ldlm_lock_match +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x590241bc ptlrpcd_alloc_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x594905ea ptlrpc_prep_bulk_imp +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x595ab175 lustre_swab_obd_quotactl +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x596582bf RMF_GETINFO_VALLEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x59b2ce40 ldlm_lock_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x59b48e75 client_connect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5a5b62f2 lprocfs_wr_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5a67603d ldlm_cli_cancel_unused_resource +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5acc0dbd unlock_res_and_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5b6ba895 lustre_packed_msg_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5c6a3a83 RQF_SEQ_QUERY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ca1b491 lustre_swab_close_data +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5caae213 ptlrpc_next_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5dc0426f sptlrpc_lprocfs_cliobd_attach +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e0b19b1 RMF_CLUUID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e2b7558 lustre_msghdr_get_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e6f435d RQF_OST_BRW_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e80f899 RQF_LLOG_ORIGIN_HANDLE_READ_HEADER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e8c92e5 ptlrpc_pinger_add_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ec3284d RQF_MDS_HSM_CT_UNREGISTER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ef831ee lustre_msg_get_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5f96ccdd ptlrpc_connection_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5fc9a455 RMF_CLOSE_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6042bc15 RQF_MDS_REINT_RENAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x604e2505 RMF_SWAP_LAYOUTS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x60cd26ad RQF_MDS_REINT_CREATE_SYM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x61646e1b RQF_MDS_SWAP_LAYOUTS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x618ad203 RQF_OST_GET_INFO_LAST_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x629cb96c ldlm_namespace_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x62aaae3f RQF_MDS_HSM_REQUEST +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6315dd4c RMF_LLOGD_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6352a62d ldlm_get_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x64323595 ldlm_replay_locks +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x653723dc RMF_LOGCOOKIES +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x68073df3 ptlrpc_register_service +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x685eeaba RMF_DLM_GL_DESC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x68f49e5e ptlrpc_expired_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6912990a RQF_OST_QUOTACHECK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x695bbd29 ldlm_cancel_resource_local +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x696ba811 lustre_msg_get_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x69c9f04d RQF_MDS_REINT_LINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6a3785c9 RMF_EADATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6a80a29f ldlm_pool_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6ab5240d req_capsule_set_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6d72828c sptlrpc_conf_log_update_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6eaafcea ptlrpc_req_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6ed17133 lprocfs_wr_pinger_recov +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6efa82b0 RQF_MGS_TARGET_REG +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6efb32a2 ptlrpc_set_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6fb92092 sptlrpc_flavor2name_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x703538e4 lustre_swab_hsm_current_action +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7036a435 ptlrpc_request_bufs_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7042b8d8 lock_res_and_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x71185fdc sptlrpc_cli_enlarge_reqbuf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x71ab8cf9 req_capsule_client_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x725a892c RQF_MDS_REINT_OPEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x72a3f965 ldlm_lock_change_resource +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x74840056 lustre_msg_set_status +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x75a2c40d ldlm_put_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x75e4ca61 RQF_OST_GET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x76982c69 ptlrpc_unregister_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7837f0bf ldlm_pool_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x79ae67b7 ptlrpc_abort_inflight +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7a832f10 RMF_CONN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7b219f5c client_import_del_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7bb26740 _debug_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7bbf8001 RMF_MDT_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7c4c6107 RQF_LDLM_CONVERT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7c5e7be6 ldlm_cli_enqueue_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7d12111f ldlm_namespace_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7d1ccbb9 req_capsule_extend +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7d1ecd7f RQF_LDLM_INTENT_LAYOUT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7dfb3c18 lustre_msg_clear_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7f433e6c ldlm_lock2handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7f5a1cc7 lustre_msg_set_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x80ecb4e3 RMF_MDS_HSM_CURRENT_ACTION +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x817d7f1f lustre_msg_add_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x818388ca ldlm_lock_decref_and_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x81feeb0d client_import_add_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x825665cf ptlrpc_unpack_rep_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x826d3c4f RQF_LDLM_GL_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x837efb00 RMF_NAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x83eff78a sptlrpc_gc_add_sec +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x84067b13 ldlm_lock_fail_match_locked +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85135801 RMF_DLM_LVB +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85a9e0d8 RMF_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85bbff8b ldlm_pool_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85eecf67 sptlrpc_get_hash_alg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x863db6eb RMF_HSM_USER_STATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8691f3d9 ldlm_resource_unlink_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8710ac82 sptlrpc_conf_client_adapt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x876c2551 RMF_GETINFO_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x87bf7b3c sptlrpc_get_next_secid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8872f3d2 RMF_SETINFO_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x88ed381b client_obd_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x88fff52d RMF_CAPA2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x89f9edf7 RQF_MDS_REINT_SETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8a1ea476 lustre_swab_hsm_state_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8a257736 RQF_MDS_HSM_STATE_GET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8a311430 req_capsule_has_field +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8ac440fa ptlrpc_uuid_to_connection +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8b44977b lprocfs_rd_pinger_recov +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8b854254 lustre_swab_mgs_config_res +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8c6919d7 ldlm_namespace_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8cb71d4b RQF_MDS_REINT_CREATE_SLAVE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d1ab900 ldlm_lock_dump_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d77ea75 lustre_msg_set_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8da3fca7 lustre_msg_add_version +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8e9788ca ptlrpc_resend_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8e9abe4d RMF_GENERIC_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8f0aceac RQF_MDS_HSM_ACTION +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8fec0451 lustre_msg_get_limit +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9113f109 ldlm_cli_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x919c4ce3 RMF_OBD_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x91c41821 ptlrpc_unregister_service +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x91cf58d3 RQF_MDS_PIN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9228392f lustre_swab_mdt_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9277ae5e RQF_MDS_REINT_CREATE_ACL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x937b1ee0 lustre_swab_mdt_ioepoch +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x94cd4d36 ldlm_flock_completion_ast +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9553c633 RQF_LDLM_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9564a202 ldlm_lock_addref_try +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x95d08f0c lustre_swab_mgs_target_info +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9660ace0 RMF_FLD_MDFLD +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x967bfd52 RQF_OBD_PING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x96a3c1f3 target_pack_pool_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9798f2f1 RQF_MDS_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x980fcfdc ptlrpc_connection_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x997b0396 lustre_pack_reply_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9999cf7a dump_ost_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9a258886 RQF_MDS_GETSTATUS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9a6f2f6d lustre_msg_set_opc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9b88f6ce RMF_NIOBUF_REMOTE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9bb5198b RQF_MDS_CLOSE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9bf5081b sptlrpc_cli_ctx_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9d7ea314 sptlrpc_pack_user_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9deb0c48 ldlm_namespace_dump +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9e52b047 ptlrpc_free_rq_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9eb37b7a llog_client_ops +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9f3cefcd ldlm_lock_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9fb088f1 lustre_swab_lov_mds_md +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa054541b ptlrpc_buf_need_swab +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa163f4c3 dump_rniobuf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa1fcb87c target_send_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa2244636 RQF_MDS_GETATTR_NAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa2b98c00 req_capsule_client_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa3814ff9 lprocfs_wr_ping +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa3d2a6ee RMF_CAPA1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa47787ef RMF_PTLRPC_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa4a2d089 RQF_OST_PUNCH +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa67f8d48 ptlrpc_lprocfs_register_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa6c436ca RQF_MDS_WRITEPAGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa6ec9415 ptlrpc_buf_set_swabbed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7a03774 ldlm_cli_cancel_list_local +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7e360b1 RMF_OBD_IOOBJ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7ec567d RMF_CONNECT_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa822de61 ptlrpc_mark_interrupted +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9704f80 lustre_msg_get_last_committed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa989361b ptlrpc_schedule_difficult_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9c4658e lustre_swab_lov_user_md_v3 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9e40b00 ldlm_lock_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9e8c483 __ldlm_handle2lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xab2a71a4 __ptlrpc_prep_bulk_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xabe307ba ldlm_completion_ast_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xacd6a7d7 lustre_swab_ost_last_id +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xad140666 ptlrpcd_wake +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xae9de7f4 ptlrpc_add_timeout_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf25d4ed ptlrpc_init_rq_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf4e9658 RQF_MDS_SYNC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf50a0d6 RMF_HSM_STATE_SET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb0751fa4 RQF_LLOG_ORIGIN_HANDLE_DESTROY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb1b43d8a dump_rcs +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb291473d lustre_msg_early_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb3a77128 ldlm_pool_del +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb4a7ecf3 lustre_msg_add_op_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb512ebc2 sptlrpc_parse_flavor +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb5821f50 ptlrpc_invalidate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb61cb95a RQF_MDS_GETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb68476df interval_erase +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb6aafd03 RQF_MDS_DONE_WRITING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb6ef9775 ptlrpc_fail_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb74afa0b sptlrpc_cli_ctx_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb7b38189 RMF_MDT_MD +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb7dd4b84 sptlrpc_get_bulk_checksum +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb7fa3cc8 RMF_LLOG_LOG_HDR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb903634e RQF_OST_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb9b631cf lustre_swab_mgs_config_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbaa76097 lustre_msg_string +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbaf588aa ptlrpc_deactivate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbba49191 ptlrpc_unpack_req_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbc1370dc lustre_shrink_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbc19adf2 ldlm_completion_ast +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbccf0f92 ptlrpc_queue_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbd37b14b ptlrpc_req_finished +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbd83bc44 RQF_OBD_SET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbef769cc RQF_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbf6512cf ldlm_resource_putref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbf98b86f RQF_MDS_QUOTACHECK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbffd4313 RQF_OST_BRW_WRITE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc06c4670 lustre_msg_get_versions +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc0867da7 RMF_REC_REINT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc0cdf55e RMF_MGS_SEND_PARAM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc2b1af57 RQF_MGS_SET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc2be922a RMF_SYMTGT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc431bff2 ptl_send_rpc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc559a634 RMF_LAYOUT_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc60a60e1 RQF_OST_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc694be4b RQF_LLOG_ORIGIN_HANDLE_PREV_BLOCK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc763fabc sptlrpc_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc793012d sptlrpc_import_flush_all_ctx +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc79b9c67 ldlm_pools_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc7ca8257 RQF_MDS_REINT_SETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc7e47564 ptlrpc_interrupted_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc8757ab0 ptlrpc_unregister_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc8f586a9 ptlrpc_connection_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc96547d6 ldlm_revalidate_lock_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xca5a81ec ptlrpc_pinger_ir_down +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcb2cc0cf lustre_swab_lquota_lvb +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcc90648b sptlrpc_cli_wrap_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xce86066d lustre_msg_set_slv +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcec513c9 RQF_MDS_UNPIN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcf5601e8 ptlrpc_wake_delayed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcf9963db lustre_msg_get_op_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcf9aab6a RQF_MDS_DISCONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd056edf8 sptlrpc_gc_del_sec +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd0974747 ptlrpc_obd_ping +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2983334 lustre_swab_swap_layouts +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2e0d4eb lustre_msg_get_opc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd3dae408 ldlm_it2str +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd3dee9bd ptlrpc_connect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd4c511a6 ptlrpc_request_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd504885f ptlrpc_request_free +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd56f3e98 req_capsule_filled_sizes +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd69e0a27 RQF_MDS_IS_SUBDIR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd6c3ebfb RMF_FIEMAP_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd7910326 lustre_swab_obd_statfs +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd8958f3d ldlm_cli_update_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd8b91b3e lustre_swab_lov_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd8f06300 RQF_MDS_HSM_PROGRESS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd9561861 RQF_LDLM_INTENT_OPEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd9c4bf3c req_capsule_server_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb1fb0a2 RQF_MDS_REINT_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb74057f lustre_swab_hsm_progress_kernel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb9d5a6a lustre_swab_niobuf_remote +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdca046ad sptlrpc_register_policy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdce2a4a9 ptlrpc_check_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdcf777d9 __ptlrpc_free_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd0ffb04 sptlrpc_flavor2name +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd30d7bf RMF_ACL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd4c385c req_capsule_client_sized_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xddc40a85 lustre_msg_get_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xddc499c5 ptlrpc_init_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xde12d36b RMF_MDS_HSM_ARCHIVE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdee87192 sptlrpc_conf_log_update_begin +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdf701ae7 lustre_swab_fid2path +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdfdfee19 req_capsule_shrink +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe0cc694c RQF_LLOG_ORIGIN_HANDLE_NEXT_BLOCK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe18c677e ldlm_cli_cancel_list +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe1a8aa96 sptlrpc_import_sec_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe3738053 ptlrpc_set_next_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe40e0a50 lustre_msg_get_transno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe504a79e sptlrpc_enc_pool_put_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe57bd972 sptlrpc_current_user_desc_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe5df14a4 ptlrpcd_add_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe63efb4a sptlrpc_unregister_policy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe643998e RQF_OST_SETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe6bea6dc ptlrpc_recover_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe6f0dc96 RQF_OST_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe6fbc8ea ptlrpc_pinger_sending_on_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe7062b5f RMF_U32 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe7512278 ptlrpcd_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe9514cb9 ldlm_extent_shift_kms +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xebb64e68 req_layout_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xec799410 ptlrpc_lprocfs_unregister_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xec939a00 RQF_MDS_REINT_UNLINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xed1c10d6 ptlrpc_connection_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xedcb740d sptlrpc_name2flavor_base +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xef1aeca9 RMF_FLD_OPC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf1300275 _sptlrpc_enlarge_msg_inplace +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf277c125 RQF_OST_GET_INFO_FIEMAP +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf3bd717c ldlm_lock2desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf3d44370 RQF_OST_DESTROY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf3fea44f sec2target_str +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf43540b9 lustre_swab_mgs_nidtbl_entry +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf45085e1 sptlrpc_conf_log_stop +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf4c54e77 ptlrpc_replay_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf55c033b RMF_MGS_CONFIG_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf596e9ae sptlrpc_conf_log_start +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf607fc23 sptlrpc_flavor2name_base +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf617ab8a lustre_msg_get_conn_cnt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf697b756 ldlm_dump_all_namespaces +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf7408f84 lustre_swab_hsm_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf7b05c5d sptlrpc_target_export_check +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf7ba40c0 RMF_MDS_HSM_PROGRESS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf870fed9 RQF_LDLM_GL_DESC_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf9051bd6 RQF_QC_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf969b189 ptlrpc_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf973aa93 lustre_swab_lov_user_md_v1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf9f72dfc RMF_TGTUUID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfa3335d1 ptlrpc_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfa51688d interval_insert +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfb85763e ldlm_prep_elc_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfc2fa83f ptlrpc_del_timeout_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfceef431 ldlm_resource_dump +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfd148bf8 RMF_LDLM_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfed2b192 sptlrpc_sec_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xff605670 req_capsule_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xff966b73 ptlrpc_request_committed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xffc807e8 sptlrpc_unpack_user_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xffe29c3f RQF_LDLM_ENQUEUE +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xa15bbd55 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x908d22ea most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x01db5064 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0482ac67 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d2fbb87 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1146a921 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1ef14696 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1f6d9476 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1fa9c69f rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x21f451dc rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x252763ab rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2b644be5 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2b7e0c26 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e9dc8c8 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3727ae04 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3c267f03 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4385c11c rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x43a9decc rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4ae348d5 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4cfc2e65 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x58c703f7 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5acbd641 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6402fd87 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x68a0609f rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6b709fae rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x70c6d458 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x74f4a7ed rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fedc596 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8e3c46ae rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8e51aa53 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8f14fd27 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8f1e8809 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x90067f80 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x94f802c4 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x95d37ebf rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9794a514 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9cdae0e0 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa03c63bb rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb394e44f rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb4cf85bf rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe432b6c rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc42525d1 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc616161f rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xca97ac71 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xce2306b1 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd9aa3769 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe3b2d1d2 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe85d6165 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf06c2cc3 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf3b25974 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf3fc2320 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfc8c353f rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x005bce06 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0777ec82 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x15904b66 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x19730762 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1a66842c IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1ae4878f HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1b29baec Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x202081fb ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x21476767 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x25e27513 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x274a6f58 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x289d361b ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2ef37d9b ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x318073c8 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3189e53f ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x31ad6209 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x364525f0 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x36e47a53 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x457ed084 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5469d38d ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5ae83a2e notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5aeedeea ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5cb843a0 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x634e11ea DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x681bc3b0 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x68f80594 ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6c356798 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x741524c9 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x77222b4c ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7a3bf50c ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7c47430c ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7cebe7f5 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x804d3701 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x98cc9082 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xab0ab29b ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaf32b638 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb5b33c42 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb8118314 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb89231b9 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb8b6b68f ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbe760e88 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0bf3702 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcc418334 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd29b8bbd ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd5871010 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd61810cb ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xda34e8eb SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdd25aaef ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe4e79141 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xebc80d24 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf617e325 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf9571040 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfebc6f68 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/unisys/visorbus/visorbus 0x2e745d2b visorbus_get_device_by_id +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x013c42c7 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0cbfd0a8 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x14642862 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x14cf039c iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x158503c1 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x16ae79ce iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1c0927da iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1e9085a9 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x24afb48c iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2e58ee09 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x30704d7b iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x309b5f23 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x32d2e80b iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3d9d21df iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3e8cb3fb iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x415cd04c iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4534648f iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x520449f9 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5543c3fd iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5be8e396 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65eb6cef iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x705591f3 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x717dfe32 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7be1f0bb iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x91d04ade iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa23e0cef iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa8fd384f iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa9c13082 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaea22dbc iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb3e49c62 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb595eabb iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd2df10ef iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd35797fb iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd4a18dac iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd938ab51 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe52b176f iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe5c3d94a iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe651a7b9 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe8d9c12b iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xec129dec iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xef1ec7ba iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf15be0b0 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfe262200 iscsit_build_reject +EXPORT_SYMBOL drivers/target/target_core_mod 0x015823f6 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x04456993 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x05d55881 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x0a6dcccb transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0b1ab40c sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x0d71fad5 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ecdea4a passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x106ba405 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x12229f6d transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x18b70ddf target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x23537da5 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x28fd3212 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x2a4de8a4 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x37a0d6c6 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x3962e426 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x39cb99ff transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x4355f5f9 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x439cff8d transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x48d670d3 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x4cd2c953 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4d059392 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x4ec1bd48 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x5228755b target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x52e3c916 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x56d0f928 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x621462d0 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6fa6c8ef sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x723e41ae spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x72822692 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x72b4f950 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x74c0fd02 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x7b0bf2cd core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x7be3d192 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x7c503c88 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7d6dcada transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x82fecb09 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x885ddbe8 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x8f9e5b55 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9ae16f56 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x9b13a348 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9bc3f385 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x9cf4152e target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0xa153f184 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xae042b07 target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0xb7cf6d5b transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xbb77bd10 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xbd045ce2 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xbd1119f9 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xbdc846ab target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xbe7a0223 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xbf6ae9aa transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc0ac519a target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc3ab52ab target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xc5a00bbf __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc85705f4 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc71cffb target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xd7212909 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xdc183beb transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xdd2a64ce transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xdf810bcb target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xe3b3d9be target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xe51cc7c5 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xe61429dc sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xe992d445 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xee1520c1 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf5344840 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xfbb71157 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xfd3035c4 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfe38e796 target_backend_unregister +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x1887763e acpi_thermal_rel_misc_device_add +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x5007fc2c acpi_parse_art +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x86c998e6 acpi_thermal_rel_misc_device_remove +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0xdf707fab acpi_parse_trt +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x1a9e79a1 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x1812f408 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x08dc270c sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0fbbaabe usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x10e2136f usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x19f92a6b usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1d7b0f59 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x652276d8 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x664ea2ad usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6af1a06d usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x749a1fba usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x816b9baa usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb9da2b5e usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbfa0057e usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc009b7a4 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x1b4aec41 usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x75b901a0 usb_serial_resume +EXPORT_SYMBOL drivers/vhost/vhost 0x3933c279 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0xd8058381 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3c71c418 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x5fedea44 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/video/backlight/lcd 0x51effafc devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x6cfedd0d lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x71a17ce9 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xeb827f87 lcd_device_register +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x00c0b4b3 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0cfe7f91 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x18dffdfa svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x308c2e62 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x42106990 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x715984cf svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdc278317 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xb943c8c1 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xd78876c7 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x4e783f66 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 0xa3e101ac 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 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe8990b1d mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x6872942a matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xbbe083ac g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xf4de9a54 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x2bc0c74d matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x40afef9c matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x4f755e3f DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x8acd997d DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xbe9d5411 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xcbc479b4 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x1080ba93 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x254bc2d1 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x6d3b2777 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x8d83e422 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x181194ac matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x4a09b267 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x185ab297 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x625421bb matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xca4a91f4 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe49d8345 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xff28c494 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x6118f50d mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x38f89771 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x49835c87 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x62a7ab28 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x95936bcd w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x95d186bb w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xeaafc1c1 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x42af4b11 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xcae301af w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x41a7f96d w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x534cb6c5 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x81e92b7f w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x99d76d2a w1_add_master_device +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x5efa3140 iTCO_vendor_pre_keepalive +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa78bd894 iTCO_vendor_pre_set_heartbeat +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xb44b081d iTCO_vendor_pre_start +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xf5002331 iTCO_vendor_pre_stop +EXPORT_SYMBOL fs/configfs/configfs 0x02baefa0 config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0x0e277a5c configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x182a78bd config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x28ae42b2 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0x29c0ff90 configfs_remove_default_groups +EXPORT_SYMBOL fs/configfs/configfs 0x416b6e77 config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0x4da207c1 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x53b3aed2 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x6fbf5d0b configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x741add2d configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x77ae9d59 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0xa6a6e0b8 configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xb0a634e1 configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0xcd28e5a0 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0xd4852fa7 configfs_depend_item_unlocked +EXPORT_SYMBOL fs/configfs/configfs 0xe7781dd9 configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xfe151787 config_item_put +EXPORT_SYMBOL fs/exofs/libore 0x027a2656 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0x0cc64325 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0x212968f8 ore_write +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x403e2048 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0x43631b03 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x84d59928 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x8808660d ore_create +EXPORT_SYMBOL fs/exofs/libore 0xa2c5a4d0 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xafe74020 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0xc980fed0 ore_read +EXPORT_SYMBOL fs/fscache/fscache 0x033ef370 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x065e1545 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x07eabcf7 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x09dc52c0 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x0c1c7b67 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x15cd81f7 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x1724b14b __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x1e00a72e __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x22f3054b fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x3c0ed56a fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x41454235 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x54b7428e __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x6050e6fc fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x679cca2a __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x73fe179a fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7744ab8c __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x77f9d01a fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x79d3dfe1 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x8b45aba0 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x8cbc6cb5 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x9bdf323e fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0xab5ad42b __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xaf6370ed fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xb1010d84 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xbea8d3af __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0xc1188dff __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xc2cfb5b7 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xc4ad09a0 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xca3c183d __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xd0447f97 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xd0fed5e6 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xd47ea721 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xd656bbba __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xd9ae90b4 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xdebb9bca fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xe2ccd8fa fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xeea8bd51 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xf5aacc1b fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xfa9288c1 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xfad3813f fscache_object_retrying_stale +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x014f38b3 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x50f683ab qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x5edb3ace qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x718a60ed qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x74c87cfa qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xdc4ece28 qtree_get_next_id +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-itu-t 0x6d356209 crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x56329ecc crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd09b2cba crc8 +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 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 0x73b0c595 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get +EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create +EXPORT_SYMBOL lib/lru_cache 0xbc76ecc0 lc_seq_printf_stats +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 0x0c222eb5 lz4_compress +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x682a23e0 lz4hc_compress +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul +EXPORT_SYMBOL net/6lowpan/6lowpan 0x19d0ccdc lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x200d697d lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x424649dc lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x9c7e0a51 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xc83f67ec lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xdbf2a112 lowpan_nhc_del +EXPORT_SYMBOL net/802/p8022 0x0b3daf6e unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0x73c72f9b register_8022_client +EXPORT_SYMBOL net/802/p8023 0x874af109 make_8023_client +EXPORT_SYMBOL net/802/p8023 0x9450bb44 destroy_8023_client +EXPORT_SYMBOL net/802/psnap 0x3bfe0828 register_snap_client +EXPORT_SYMBOL net/802/psnap 0x7bbeffb2 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x00fad334 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x05781215 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x09752177 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x097fc34a p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x1b77bc0d p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x1bced9f2 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x22764e5d p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x278072b0 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x330926ee p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x3aeaa2d6 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x4b77a12e p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x55813dc1 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x57275402 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x5bca62fc p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x63d2bf75 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x6a5fca70 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x6a82d252 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x6b89d0a8 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x7d5cf22b v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x87df8de8 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x88d7eacf p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x8b8d9d97 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x8eefbb00 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x90f66a5c p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x94a941c1 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x9fdcd626 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xa0d6f74f p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xa44279d5 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa6ce4a82 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xabe59f4b p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xbb4c3057 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xbdb3b6cc p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xd183818e p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xd3b606b3 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xdd5f3758 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xdf06cc46 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xe5115c25 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe6c8fe38 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xe7a3f81a p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf6bb89bc p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfaa5068b p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xfaf1e3d4 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x94f48ecb atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xd7ee3129 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xe7812fef atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xf82fc839 alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x15cbbb48 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x3af40096 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x508681bc atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x510c146f atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x64b30b81 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x73439541 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x8ddbfc86 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x9494b683 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xb5d07385 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xd9f1c072 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xedb22c4f vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xf220ff02 atm_charge +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xffd4c89a atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xffdb843f atm_init_aal5 +EXPORT_SYMBOL net/ax25/ax25 0x02c9f306 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x1b3504d7 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x1f3d069d ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x4f3673d0 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x5f762b8d ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xaed2110c ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xbbc82331 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xe10f7acc ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xe9aaf0a4 ax25_display_timer +EXPORT_SYMBOL net/bluetooth/bluetooth 0x10d5e954 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x13fb3039 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x19d4dc88 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1c7206bb l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x218368aa hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x25477680 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x29dee911 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2ceb73bc l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3d67ad1d hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4455a8d5 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4591a193 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4fdf3e06 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x52a010a8 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x549f4b05 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x56a5b684 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5d350165 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6a397e80 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6b537949 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x73d762ae __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x83efaf06 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x85519664 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8688aae6 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8ad86af8 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9818276b bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9ceb92dd l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9dcf86c3 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9ec5ade5 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa4cd246b hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb83f8359 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xba85a394 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbbbce9e7 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc839dee6 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcf1a617c bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd1f9d758 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd9a36a81 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xde083ba6 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xee0a1c43 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeeb54d04 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xef1188ff hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf0d3efc2 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf9ab44e5 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfa880b16 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfac9c41e hci_free_dev +EXPORT_SYMBOL net/bridge/bridge 0xdb752ae7 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7bca18f0 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x9cd139f6 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xfa9d1572 ebt_do_table +EXPORT_SYMBOL net/caif/caif 0x02a19da9 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x0bc91d82 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 0x2e61b20a caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x42f2857a caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x4e20ae84 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/can/can 0x136e6b80 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x18fe6980 can_rx_register +EXPORT_SYMBOL net/can/can 0x57410da6 can_ioctl +EXPORT_SYMBOL net/can/can 0xa4c6699c can_proto_register +EXPORT_SYMBOL net/can/can 0xb29d3537 can_send +EXPORT_SYMBOL net/can/can 0xf5cbff7f can_proto_unregister +EXPORT_SYMBOL net/ceph/libceph 0x020259f9 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x051eaac3 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x06be5bb9 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0edc0ff7 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x1035c36e ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x108f170e ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x1430eb8f ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x1479503c ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x155c15ab ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x17f8bf64 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x1ab8ed17 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x1c7adea7 ceph_file_layout_from_legacy +EXPORT_SYMBOL net/ceph/libceph 0x1d7c8202 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x25fbb971 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x29992846 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x2a5a9fae ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x2db717f3 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x351eaca8 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x35f98d07 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x360b4f09 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x38d7a8ec osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x393565db ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x419cb09b ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x4399a21d ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x48a48ff5 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x4fc4e30e ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x50c3b337 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x53805f87 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x546be91e osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5a25cb28 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x5a891c5f ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x5d477826 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x5d5529f5 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x5e6f5551 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x62be1cff osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x656e1755 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x65eeea52 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x685e442d ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x68a0767a ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x69395dc2 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x699c6448 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x7166b763 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x76148e56 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x7f089cd1 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x80d90b8d ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x824ff099 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x82521ea4 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x826e48ac ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x82883534 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x85d03a9e ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0x86162248 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x8dca6241 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x950d0d18 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x987955da ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9a5e1e22 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x9ba748f9 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x9c36d91b ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x9d01bb63 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x9ea75281 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0x9fe38e5b ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xa3bdeff5 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0xa5fe484d osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xa9ade51e ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xaaa42825 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xabec8f58 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xadec8908 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb3050428 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0xb3728240 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb559ce47 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xbaddd0ce ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0xbf15e03c ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0xbf7c17e3 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc5495b0f ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xc7de7154 ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0xc97ff0b9 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xc9be32ad ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xca2e4876 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcec15da8 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd04b9d16 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd476ceef ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xda4062b1 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xdaa7fece ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xdd8e7550 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xde2f427d ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xe0078ad0 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xe0a1a966 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xee1ac17c ceph_file_layout_to_legacy +EXPORT_SYMBOL net/ceph/libceph 0xee3ad4c1 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xf13af00c ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xf4f1d901 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xf5d86c5e osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xf6eace6b ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xfc9915f7 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xff3024ee ceph_create_client +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x510ff0ff dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x96d12d04 dccp_syn_ack_timeout +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0ef3da76 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x3eb1672b wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x403e2f3f wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xacfcfa4b wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc97ac1d4 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe81bfdfb wpan_phy_unregister +EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x692ccaab fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x985fb363 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xb8cc1ad5 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xc3e83cc7 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x25a7cd2b gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x1915603e ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x19aa27aa ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x8268f6b5 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb2817220 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x00cd2290 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x91e7e459 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xba898082 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x4c60b894 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x53fd1681 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xfa741c82 ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x47b2bb6f xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x80eafd21 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xa42e5457 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/fou6 0x48098cd5 fou6_build_header +EXPORT_SYMBOL net/ipv6/fou6 0xd0a9780d gue6_build_header +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0857cca4 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2c7699c6 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3067c47f ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8e2ae81a ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa0ff89bf ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa91b15c0 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb55f29f5 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb770bd54 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xdaef9d21 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xaccb6859 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xc27c771d ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xfdc08e46 ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x046eb454 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xeedf6f68 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x3dd5f7c4 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x506920a5 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x4ac2a8aa ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x73cc3d7f ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x7d48ec37 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb844540d ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xdc22cdcc ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe7fbc1ef ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xfb011b52 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xfbb3cf80 ircomm_control_request +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x0963c24b irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x09939c11 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x1215c4e1 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0x1deb3aef alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x2211ec77 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0x23bbc2ce irias_find_object +EXPORT_SYMBOL net/irda/irda 0x29125491 irttp_dup +EXPORT_SYMBOL net/irda/irda 0x2b432980 hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x32d6f3a2 irlap_close +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x385847aa irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x391946e6 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0x4032640a irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46b00fdf irias_insert_object +EXPORT_SYMBOL net/irda/irda 0x46b304b7 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x51cc764b iriap_open +EXPORT_SYMBOL net/irda/irda 0x536cdfa9 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x63c07666 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0x66207e28 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x70a3f20f hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x8239c054 irlap_open +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x98a8b3b4 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0x9ccbdfca hashbin_insert +EXPORT_SYMBOL net/irda/irda 0xa0214336 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0xa6830278 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0xac3dc858 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xaeeff2b5 hashbin_find +EXPORT_SYMBOL net/irda/irda 0xb10274c1 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbcf5b50e iriap_close +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xc0415b2e iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0xd591071a irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xdc0196c2 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0xdc9bae1d irttp_data_request +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe0d8bb44 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0xe1ba6308 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xe329462a hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0xe8970a8c irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xeb0b7cdc irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0xeb78333e hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0xec242b93 hashbin_new +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xfa14193a irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0xfaf9ba15 irlmp_open_lsap +EXPORT_SYMBOL net/kcm/kcm 0xd2da544b kcm_proc_register +EXPORT_SYMBOL net/kcm/kcm 0xf19e590f kcm_proc_unregister +EXPORT_SYMBOL net/l2tp/l2tp_core 0x3669e7f3 l2tp_recv_common +EXPORT_SYMBOL net/lapb/lapb 0x12419c1a lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x4456931d lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x485dfced lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x533c4f46 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x572a0318 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x7ee6bb1e lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x870c8c63 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xdbb68d4b lapb_data_request +EXPORT_SYMBOL net/llc/llc 0x0a73bd50 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x0b3d50e0 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x43df6d5f llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x4fe02395 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x5c4b1f3a llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xd18401be llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xf909d680 llc_mac_hdr_init +EXPORT_SYMBOL net/mac80211/mac80211 0x012e7206 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x016f3c68 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x05ade528 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x05df7eb3 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x075c8a73 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x0ce54d84 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x1528b568 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x16b3f413 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x199454a8 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x1b603654 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x1b7ae71f ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x1cd7ba3a ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x1fc55155 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x23278fe3 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x255439cf ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x26028789 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x27a08542 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x3226dafe ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x38664fca ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x387bde6d ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x3bbe4439 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x3fa55e5a ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x412cb797 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x46220894 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x4b3d232e ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x4e12eff9 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x50752245 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x51b886e4 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x55b1d0f9 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x57105089 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x5d59dcca ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x60a3be5b ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x621fa90b ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x67a87da9 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x67b0d841 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x6c8af498 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x6cf642d3 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x72ef2612 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x74bd9207 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x7970625b ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x7a84a5e1 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x7bc74e00 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x7e5b408b ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x821417b8 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x85a5e7b1 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x877c428c ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x897e7e0e ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x89b1ec23 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0x8ad056a3 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x8e67072b ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x8fe077b9 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x900ccfee ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x90cf84f5 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x9659bdee rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x9d16987f ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x9f61ebc1 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xa093d26c ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xaa148742 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xaa822f4f ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0xac7e0cfd ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xae549a0c ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xb0a4e190 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xb2f03e66 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xb333e953 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xb3379c2b ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xb3ddf227 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xc4e17c45 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xc766e05b ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xc9ad4183 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xce8a7f5b ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xd38617ec ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xd519bad0 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd800e868 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xd980d23a ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xddd4b2d2 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xdeec0cde ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xdf63747f ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xe0dc5d44 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0xe424634a ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xe9ca6ebc ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xecc7418f __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xedfec754 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xf994b58f ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xfd132e69 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac802154/mac802154 0x35cb73ab ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x3819e225 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x6186e62c ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x661df79f ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x8cea9403 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x92b15474 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xa57907dd ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xe984eaff ieee802154_free_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x22160734 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x285f1b70 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x36bcad1b ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4945dd34 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x56544d42 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5b64a8bf ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8eabf420 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9ea164b8 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb1ac33d9 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdbb88299 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdc52a0e8 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdcdc7acc ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe099eca5 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe99386d3 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf9b7568b ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x1688cfd9 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x95830444 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x9df1688f nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x202d528e nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x40670afa nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x84bc884c nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xa478fcce __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xb1298379 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0xc571c07b nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/x_tables 0x008536e3 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x28796498 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x34cbf686 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x84dda50e xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x8f1506d1 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xb41fc88a xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xba23eb96 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xd4248fcd xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xdd1217d8 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xe68f153d xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x08177db3 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x1729f4e9 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x1a8d7c41 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x52f68669 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x55b4cf8f nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x620da681 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x6a56e30a nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x8389d354 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x8412e58d nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x87caf1c9 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x8a48e955 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x8d160544 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x91c590bb nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x94bfd272 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xbeb6f969 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xc2957c7e nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xca624c20 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xd581c6e4 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xda108b87 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xdf3c985b nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xe78aa968 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x00f05790 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x0e262a0d nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x1369c08d nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x1920458b nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x2133660f nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x2827623a nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x2e396e78 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x3f76cdcf nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x5de6fc9e nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x668d1b47 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x77a1dbb8 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x8c19fa61 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x9179d67b nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x917f9907 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x931fad16 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x94281990 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x9f7e254d nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xa5068f1c nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xac2394aa nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xb18f2b9b nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xb69ce1b0 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xba0137c7 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc4fce69b nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xcca5e689 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xe03d2380 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xe3c09a66 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0xef1a95e5 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xf529e4cb nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xff23c4db nci_send_cmd +EXPORT_SYMBOL net/nfc/nfc 0x02c8e2b9 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x09e1c44e nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x0ec0b321 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x27838751 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x29579170 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x2e016f3c nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x2fb4d2a2 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x3da605e5 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x6eddd5f8 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x743291aa nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x94fbd912 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x9fa878f3 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xa317b399 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xa5d139fa nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xadecb9af nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xb40bf2fe nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xb626d2f7 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xbc7202c1 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xd1bffe8e nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xd6ed6f21 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xdbc3778b nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xdeb821e4 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xf5dee7eb nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xf82a82d6 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xff2e4597 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc_digital 0x92eda282 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x93c07ca6 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xcd39de72 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xfa4c0d32 nfc_digital_allocate_device +EXPORT_SYMBOL net/phonet/phonet 0x06258939 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x1fdf6520 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x443cfccc phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x497b15f8 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xae2940c4 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xd3641fb3 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xd91fe84e pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xd93146ee phonet_header_ops +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4ef01691 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x785c5598 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8b5b1719 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8c4fd6e6 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8cb340d2 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x95b2d4f6 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa54a81b8 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xaa5d6b78 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xab847c51 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd2d4bf77 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd6da41ba rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe0a289ef rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe4613adb rxrpc_kernel_data_consumed +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf4aa973b key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xfa111b1c rxrpc_kernel_send_data +EXPORT_SYMBOL net/sctp/sctp 0xcb1bc14d sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x122b10a2 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xaecda053 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xbb08ced9 gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x1e88bfcc xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x817e1160 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xbb044906 xdr_truncate_encode +EXPORT_SYMBOL net/wimax/wimax 0x106a9e6c wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0x69756269 wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x01a78aee regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x090f48a4 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0be67cda cfg80211_connect_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x0c855b25 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x0efa8955 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x13e995b4 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x162c44f5 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x164a4184 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x191d7bdd cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1c00f8ea ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x21d390f6 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x236fc8a0 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x2570734c cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x27351288 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x28b4c110 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x297a67f4 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x2c9be4dc cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x312faea0 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x32fe2f30 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x330ee28c regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x3bbf2611 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x3bfc5f94 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x3e5f877f cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x404822c9 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x416a9100 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x41a0045c cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x44824547 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x455ced5c cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x475f1fd3 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x497a25ce cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x4d9f4d87 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x59f54645 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5b30ebd2 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x64073285 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x6436288e cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x64b1e8f1 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x657e3a9d cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x65984a52 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x65ef9080 ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6a9f7e9c cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x6c040132 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x6d1f3042 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x6eebf6d4 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x6fe7147c wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x71023f5b cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x73cf6391 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x759eb90c cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x7c8791b0 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7f5dea4e cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x84c6dd7d cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x899379ef ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x8a86b43d cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x8df91601 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x90795b4e cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x91de170d ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x9300ea11 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x9552b56e cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x95c60ce8 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x97e2d1c4 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0xa06964cd cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xa4b03786 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0xa5ace579 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xa765e2f2 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xad689df2 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0xb025fcef cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xb129da08 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xbec374f9 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xc131bffb cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc793ae09 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xc7b65653 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xc9442f5d ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0xd5a9c2c7 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xdaffc46c ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xdb56bb92 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdc3469b8 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/cfg80211 0xdeb85286 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xdf276d0e cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xe1105e33 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xe46de617 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xe634fa61 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xe8663ae6 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0xe91a3f29 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xe9f7cb5a cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xec5c730b cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xeefd7e19 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xf23d4d50 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xf5b8bc7e cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xf93b460a freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xfa00ad18 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xfacef1a9 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xfaeda838 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xfd2274f0 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/lib80211 0x1075ae72 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x4b6cae72 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x851119fc lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x8cc7c5b4 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x916ce3f4 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xc98a3501 lib80211_register_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0x5f1d5022 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x6b23aa99 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x0d04b402 snd_seq_kernel_client_enqueue_blocking +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 0x3f8c6ae9 snd_seq_event_port_attach +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 0x931eaacb 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 0xbb1f3a25 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x8bc6ec69 snd_seq_device_new +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 0xf0a1fdb3 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x205395a0 snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x614705ff snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7746bb9b snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x79794472 snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x991c0f60 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xef8fa3d2 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf3f0324e snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf6fdda44 snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x7b2847d2 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x01e206a8 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x070a4f5e snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x0b9b4cef snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x0e461aaa snd_device_new +EXPORT_SYMBOL sound/core/snd 0x18c1a7f5 snd_info_create_card_entry +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 0x1c300a2e snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x1d9ba886 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x27467082 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x28390ed2 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x2ee39080 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x319a73f3 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3c757977 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x3d3cc2db snd_component_add +EXPORT_SYMBOL sound/core/snd 0x4068aa85 snd_card_new +EXPORT_SYMBOL sound/core/snd 0x430e4bc6 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x43b7b60f snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x51837142 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x5195ad27 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x56419648 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x604dd823 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x61962b01 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x67c7021b snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x68fdeab9 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x6dc48cc3 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x75e9fa58 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x77302ae0 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x7c41b957 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x85cba835 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x90887678 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x94a1b649 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x955f4ee5 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xa67504cc snd_cards +EXPORT_SYMBOL sound/core/snd 0xa9139b2e snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xae34c551 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb6e4a19f snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xb82a4cd5 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xb9a28f20 snd_info_register +EXPORT_SYMBOL sound/core/snd 0xc50812fc snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xd2c0e128 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xd6d7e480 snd_device_free +EXPORT_SYMBOL sound/core/snd 0xd7bba57e snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xddcf91c8 release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xe0198cb8 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xe17c72a0 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xe207a366 snd_device_register +EXPORT_SYMBOL sound/core/snd 0xeabf3c1c snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xf4153673 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0xf7152420 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xf9b1fb62 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-hwdep 0x1b5b49e3 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0035939c snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x045b8e2e snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x06b310c9 snd_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x0781cb73 snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0x09b42a63 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x2711964d snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x2aa9c791 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x2ad15845 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x315f2f25 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x317fd985 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x35a46f6a snd_pcm_sgbuf_ops_page +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x389c76c0 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3b93daf2 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x413b481d snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x4bcdb181 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x4ddb14c2 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x4eb7b55f snd_pcm_lib_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 0x52370c55 snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x53ac86b5 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x5898dcba snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5a640911 snd_pcm_period_elapsed +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 0x69969fb5 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x6d69aa58 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x75d57b26 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x795bbb0f snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x8dc17169 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x9d950abc snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xa14e4a9c snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xa3c0c852 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa6af2b2b snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xa6de700d snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xb32e1f9f snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbbb41621 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xbec1e6d0 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xc85d645f snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xc9b20d78 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xca34c226 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xcef00f69 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xcf58ab76 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xcf893110 snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0xddde14aa snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xe5163d3b snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe76b1b60 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xe92622b6 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xec4658a2 snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0xed011946 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xed120069 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xf6faf232 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xf7c6036c snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xfd91ad16 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xfef6ea75 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0c23d766 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3d0fb38c snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4082e40a snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x45b51f7e snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x63ca91cf snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x652be9b9 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x68730889 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x78e5ba07 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x837f6f33 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x877146f4 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8cbc5769 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x91e5f252 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x988b7110 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x997c56db snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9d598f89 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc06eeabd snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcb4d13ea snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe58fee19 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf537c614 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-timer 0x1d36be45 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x24f87489 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x32f85d68 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x410ae5c2 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x5d41425a snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x69fd30ad snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x7cfebc13 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x88863fbd snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x9d2a480c snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xc4033de9 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xd2760955 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xe52c7143 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xf3a0281b snd_timer_start +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 0xc5fc428e snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x34bdcff2 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x83f36320 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8bc5e4a1 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8ed11584 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb5209b8f snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc5f25e4c snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc8db376c snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc8e1eacc snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd1c2dff0 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0ebdbca9 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 0x510da587 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x708b7465 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x776bbba5 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x802e95b0 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x97e185d2 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb4783637 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xbe850c88 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 0xfb057256 snd_vx_create +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x004d7971 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0268709d avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x05b5cfe3 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x09bb2fe4 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1522d9f2 snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1a2e7c5c amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2087b2c4 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2703bc37 snd_fw_schedule_registration +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x33d0ef5e cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x43b892bc fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x47156a18 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4b95945e cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x629d5c8b amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6617c2e8 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6c899d3c amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6d1998ac snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6d7297f9 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x76136854 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7d43fe52 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7d4e073b fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7e23f1ca amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7f6297ca fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x82127160 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x859487a0 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9368647d snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa038b828 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xae314f2c fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb50a8690 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc0804261 amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc108c8c3 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdb87573d amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe9f68273 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xec422519 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x01833ef5 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xf7acf147 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x29a85518 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x30ff6ec1 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x33061101 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4b32a4b7 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6362a699 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x63d5653f snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x84822eb3 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf6c689aa snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x1bb129a2 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x2ce502f8 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x4f0d92cb snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x66429010 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xbf55c37e snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xe6529cb3 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x1f07e0af snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x21ca6879 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xaf78205c snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xfb647c2b snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xa8ff57ba snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xd3ed3245 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x39019f97 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x55fff85d snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5c13126b snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7188b66a snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xa301c5fa snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xa40bac5d snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-i2c 0x0c3cf52b snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x1f1f6bd2 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x75cd5fd1 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x9d278a45 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xdc4532ca snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xe2d7f83f snd_i2c_probeaddr +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x23135013 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x42dc91ba snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5197bcc3 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x593c20a5 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x9ef9d28c snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa03786fb snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa0ad2d02 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xca71575b snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xe6927d7a snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xe8f4a12d snd_sbdsp_command +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0e6ac172 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2c4f306e snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x34dafb79 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5a9a1a02 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5f8bcf23 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x604e9842 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x648bed90 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x66e1fa05 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6a0d0ecc snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8f0a8fb7 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa192ce87 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa704ce84 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb6ddbb14 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe8910101 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf5906c29 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfa6a2ad2 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfaf0fc6b snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x7a2559b1 hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1f77db7a snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x44e307de snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4c22c043 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x5e8c1257 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6629447a snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x84677f10 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9bbed85d snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xcdfdf242 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf046a8aa snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x5062b09b snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xd9e92046 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xe14bd162 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x03108f6f oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x08ca1cf1 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x11b74249 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x12828d22 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1304fc7d oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x27d0cbcf oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2d302170 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x305140fe oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x31156407 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4295a341 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x51aa3961 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6450d635 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x67d9b6e1 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x772acee5 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x77b321c7 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7d7e7e49 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8bb22bae oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbc1df20f oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe387ebbb oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe9c61000 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfdb130bf oxygen_pci_remove +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x5de470a8 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xa99cf708 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xba74f593 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc4a80556 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xcdfc2700 snd_trident_alloc_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x20cc72ac tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x98010f50 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-firmware 0xb7059cf9 sst_dma_new +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-firmware 0xdc045797 sst_dma_free +EXPORT_SYMBOL sound/soc/snd-soc-core 0xdd9ca6a6 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x059dab5b register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x10102da7 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x2aee02c4 sound_class +EXPORT_SYMBOL sound/soundcore 0x79228334 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x8553ca9a register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xc38797b2 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x0239d925 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x0ede6959 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x2d0efe52 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x80692cf9 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x85abf01f snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x8cc850d7 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/snd-util-mem 0x1a9e1ad5 __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x3a5baee3 __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x4536dbe3 snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x62ca1779 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0x84c856da snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x874440ea __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x9059080c snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xf8fc8e1a snd_util_memhdr_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 0x936c5b65 __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 ubuntu/hio/hio 0x1682bb50 ssd_get_version +EXPORT_SYMBOL ubuntu/hio/hio 0x20a238b2 ssd_reset +EXPORT_SYMBOL ubuntu/hio/hio 0x217d1dd5 ssd_submit_pbio +EXPORT_SYMBOL ubuntu/hio/hio 0x2d568530 ssd_register_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0x55e54536 ssd_unregister_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0x5c106608 ssd_get_pciaddr +EXPORT_SYMBOL ubuntu/hio/hio 0x66bb6a90 ssd_set_otprotect +EXPORT_SYMBOL ubuntu/hio/hio 0x78a784b9 ssd_set_wmode +EXPORT_SYMBOL ubuntu/hio/hio 0xd4b5336f ssd_get_label +EXPORT_SYMBOL ubuntu/hio/hio 0xd6d48a67 ssd_get_temperature +EXPORT_SYMBOL ubuntu/hio/hio 0xeacb6752 ssd_bm_status +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x00322056 VBoxGuest_RTMpCpuIdFromSetIndex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x01674ab7 VBoxGuest_RTSemMutexRequestNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0429a6f0 VBoxGuest_RTThreadCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x057fd386 VBoxGuest_RTR0MemObjLockKernelTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0731e88d VBoxGuest_RTAssertMsg2Add +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x079b132d VBoxGuest_RTMemTmpAllocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x08ed98db VBoxGuest_RTMemDupExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x09a88bc3 VBoxGuest_RTTimeExplode +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0a442050 VBoxGuest_RTAssertAreQuiet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b94344b VBoxGuest_g_pszRTAssertExpr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0beb235d VBoxGuest_RTMpIsCpuWorkPending +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0cd1b64d VBoxGuest_RTMpCurSetIndex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0d10d1ca VBoxGuest_RTTimeNormalize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0f3e114a VBoxGuest_RTSemSpinMutexCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0f884b3a VBoxGuest_RTStrToInt64Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x11ced39a VBoxGuest_RTSemEventWaitEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x11e95d2e VBoxGuest_RTLogLoggerEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x11f80121 VBoxGuest_RTSemMutexRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x12614b82 VBoxGuest_RTStrToInt8Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x12f430f3 VBoxGuest_RTAssertMsg2AddV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x147206e1 VBoxGuest_RTStrToUInt64 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x151752ec VBoxGuest_RTHeapSimpleGetFreeSize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1520b2c8 VBoxGuest_RTLogCreateEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x160b14d4 VBoxGuest_RTMpGetPresentSet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1926b25c VBoxGuest_RTLogRelLogger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x19790b4c VBoxGuest_RTLogFlags +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x197acd65 VBoxGuest_RTR0Init +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1a6d7d86 VBoxGuest_RTThreadPreemptIsEnabled +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1ae28abb VBoxGuest_RTThreadIsSelfAlive +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1c3b0f90 VBoxGuest_RTR0MemObjAddressR3 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1dc5ebbe VBoxGuest_RTThreadWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1f3e577b VBoxGuest_RTMemTmpAllocZTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1f70d065 VBoxGuest_RTErrConvertToErrno +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2003169b VBoxGuest_RTSpinlockAcquire +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x20728ae6 VBoxGuest_RTThreadCreateV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x20d9d625 VBoxGuest_RTTimeToString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x22058511 VBoxGuest_RTSemMutexRequestDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2254228b VBoxGuest_RTMpGetPresentCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2387f039 VBoxGuest_RTMpIsCpuPresent +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x25219f5e VBoxGuest_RTR0Term +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2580d04c VBoxGuest_RTSemEventMultiSignal +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2632a013 VBoxGuest_RTLogRelLoggerV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x29708cf0 VBoxGuest_RTR0MemUserCopyTo +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2a2284fb VBoxGuest_RTAssertMayPanic +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2af3453c VBoxGuest_RTLogPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2c2b5b46 VBoxGuest_RTTimerGetSystemGranularity +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2cfefa48 VBoxGuest_RTLogBackdoorPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2d445217 VBoxGuest_RTStrToInt64Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2d581c06 VBoxGuest_RTMpCurSetIndexAndId +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2eca7777 VBoxGuest_RTHeapSimpleAlloc +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2fb7502f VBoxGuest_RTThreadSetName +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x30e40c69 VBoxGuest_RTLogSetDefaultInstanceThread +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3168cadf VBoxGuest_RTTimeSystemMilliTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x31ac4c5f VBoxGuest_RTThreadIsInitialized +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x33d7313a VBoxGuest_RTMpCpuId +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x343e3e1b VBoxGuest_RTLogGetDestinations +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3480f453 VBoxGuest_RTSemMutexDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x358153bb VBoxGuest_RTStrCopy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x362275e8 VBoxGuest_RTMemContFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x372d5e29 VBoxGuest_RTPowerNotificationDeregister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x376d539c VBoxGuest_RTThreadGetType +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x381d7c24 VBoxGuest_RTMemAllocVarTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x383a0b9d VBoxGuest_RTMpPokeCpu +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3a47392e VBoxGuest_RTErrConvertFromErrno +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3b04381e VBoxGuest_RTSemEventMultiReset +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3b231c95 VBoxGuest_RTTimeNanoTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3bcf543a VBoxGuest_RTLogGetDefaultInstanceEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3d00f113 VBoxGuest_g_u32RTAssertLine +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3de43f66 VBoxGuest_RTSemEventCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3dfc9ab8 VBoxGuest_RTSemMutexIsOwned +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3fbf3c07 VBoxGuest_RTThreadIsInInterrupt +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x40996438 VBoxGuest_RTSemEventMultiWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x42ecc6d1 VBoxGuest_RTThreadPreemptRestore +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x43fdd8d9 VBoxGuest_RTSemFastMutexRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x44cfbc28 VBoxGuest_RTThreadGetNative +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x461fa9fe VBoxGuest_RTLogRelGetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x46c14223 VBoxGuest_RTLogSetCustomPrefixCallback +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x49f1be17 VBoxGuest_RTThreadFromNative +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x49f4d19c VBoxGuest_RTLogDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4ba5006e VBoxGuest_RTLogPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4bbec091 VBoxGuest_RTR0MemObjGetPagePhysAddr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4c7d8a56 VBoxGuest_RTSemEventMultiCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4cac3157 VBoxGuest_RTLogFormatV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4cecc93d VBoxGuest_RTR0MemObjEnterPhysTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4cf913a1 VBoxGuest_RTThreadGetName +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4ea67110 VBoxGuest_RTStrToInt32 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4f041d39 VBoxGuest_RTMemContAlloc +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4fc8e10c VBoxGuest_RTMpGetSet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4fe9e5f1 VBoxGuest_RTR0MemObjProtect +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5040043b VBoxGuest_RTSemEventWaitExDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x508bb2c4 VBoxGuest_RTLogSetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x51ec28bd VBoxGuest_RTLogGetFlags +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x53265abc VBoxGuest_RTLogSetBuffering +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5352c915 VBoxGuest_RTSemMutexRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54098f34 VBoxGuest_RTTimerStop +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54ddf87c VBoxGuest_RTThreadPreemptIsPossible +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5595fc22 VBoxGuest_RTSpinlockDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x56596e82 VBoxGuest_RTThreadSelfName +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x56c939fe VBoxGuest_RTAssertMsg1 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5847ae52 VBoxGuest_RTMpGetCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x58d1b65e VBoxGuest_RTThreadPreemptIsPending +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x598d3622 VBoxGuest_RTAssertMsg2AddWeak +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5a97195c VBoxGuest_RTHeapSimpleRelocate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5aa6ed66 VBoxGuest_RTPowerSignalEvent +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5b3a5164 VBoxGuest_RTLogWriteUser +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5cc0b1b2 VBoxGuest_RTProcSelf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5d3b1bd6 VBoxGuest_RTSemSpinMutexRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5e071eb3 VBoxGuest_RTSemEventMultiDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5e17b70e VBoxGuest_RTSpinlockRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5e75c570 VBoxGuest_RTStrToUInt16 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5eaea89a VBoxGuest_RTSemFastMutexCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ee65bb7 VBoxGuest_RTStrToUInt16Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5ef42fe5 VBoxGuest_RTTimerStart +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5f2f48bb VBoxGuest_RTLogWriteStdErr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x61143878 VBoxGuestIDCCall +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6173b384 VBoxGuest_RTMpOnPairIsConcurrentExecSupported +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x61770e8c VBoxGuest_RTStrToUInt32 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63378722 VBoxGuest_RTLogBackdoorPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x634946f7 VBoxGuest_RTMpIsCpuOnline +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x637a1d69 VBoxGuest_RTLogWriteStdOut +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6381bb97 VBoxGuest_RTStrFormat +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63b1fde6 VBoxGuest_RTMpCpuIdToSetIndex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63bc10b0 VBoxGuest_RTLogCreateExV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x658cd915 VBoxGuest_RTR0MemObjFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x67135d2b VBoxGuest_RTSemFastMutexRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6862822a VBoxGuest_RTHeapSimpleSize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x695d63ad VBoxGuest_RTMpNotificationDeregister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6b01bbf3 VBoxGuest_RTMpOnSpecific +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6b58b79d VBoxGuest_RTSemSpinMutexDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6b91f1ce VBoxGuest_RTStrFormatTypeDeregister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6c8460ac VBoxGuest_RTLogRelGetDefaultInstanceEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6cec7c3b VBoxGuest_RTTimerCreateEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6d8e9c87 VBoxGuest_RTTimeNow +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6e8541b7 VBoxGuest_RTAssertMsg2Weak +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x704e1f6f VBoxGuest_RTAssertMsg2AddWeakV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x70867323 VBoxGuest_RTStrToUInt8Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x71060970 VBoxGuest_RTStrToUInt16Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x716e3be3 VBoxGuest_RTMpGetOnlineCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x729cc4ab VBoxGuest_RTR0MemObjSize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x72ff1bc3 VBoxGuest_RTTimeIsLeapYear +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x730a01b0 VBoxGuest_RTLogRelSetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x74812dde VBoxGuest_RTStrToInt32Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x759e7492 VBoxGuest_RTSemFastMutexDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x764ecb18 VBoxGuest_RTR0MemObjAllocLowTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76a3c47b VBoxGuest_RTMemAllocZVarTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x79d59e24 VBoxGuest_RTSemSpinMutexRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7d0d9dae VBoxGuest_RTR0MemObjAllocPhysNCTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7d15e878 VBoxGuest_RTMpGetOnlineSet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7dcc30d8 VBoxGuest_RTStrToInt32Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7e29739a VBoxGuest_RTStrToInt16 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7f0a40ea VBoxGuest_RTLogComPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7fc5bdcf VBoxGuest_RTR0MemObjAllocPhysTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8196c4e6 VBoxGuest_RTSemSpinMutexTryRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x82e081bc VBoxGuest_RTStrFormatTypeSetUser +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x83e78406 VBoxGuest_RTR0MemAreKrnlAndUsrDifferent +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x841e42e9 VBoxGuest_RTSemMutexCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8484a0d6 VBoxGuest_RTStrToInt16Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x84e227f6 VBoxGuest_RTThreadIsSelfKnown +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x86120100 VBoxGuest_RTLogDumpPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x867be0d2 VBoxGuest_RTLogDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x868b79a5 VBoxGuest_RTStrPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x879761cf VBoxGuest_RTR0MemObjAllocPhysExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x87da3860 VBoxGuest_RTAssertSetQuiet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8826d9de VBoxGuest_RTMpGetMaxCpuId +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x883d496c VBoxGuest_RTMpGetCoreCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x885274fe VBoxGuest_RTThreadUserWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x89117f68 VBoxGuest_RTMemExecAllocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8a3c154f VBoxGuest_RTR0MemObjLockUserTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8a454b31 VBoxGuest_RTSemEventGetResolution +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8e01e3fd VBoxGuest_RTStrFormatV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8f1309e3 VBoxGuest_RTAssertMsg2 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x90312938 VBoxGuest_RTStrToUInt64Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x91204a9b VBoxGuest_RTTimeSpecToString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x916e42f0 VBoxGuest_RTAssertMsg1Weak +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9264ffc0 VBoxGuest_RTLogRelPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x926bf9f7 VBoxGuest_RTThreadPreemptDisable +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x92e716ae VBoxGuest_RTLogGetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x94f7365f VBoxGuest_RTPowerNotificationRegister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x95fa480d VBoxGuest_RTSpinlockCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x961772f3 VBoxGuestIDCOpen +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x967ea4b6 VBoxGuest_RTStrToInt64 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x96893ce3 VBoxGuest_RTR0MemObjAllocPageTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x96f2e65b VBoxGuest_RTR0MemUserCopyFrom +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9796440b VBoxGuest_RTSemEventWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x97eb2414 VBoxGuest_RTThreadNativeSelf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9874cd16 VBoxGuest_RTMpIsCpuPossible +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9909ff3d VBoxGuest_g_pszRTAssertFunction +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9a2ee747 VBoxGuest_RTSemEventDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9bcc539d VBoxGuest_RTThreadUserReset +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9cd9213f VBoxGuest_RTR0MemKernelIsValidAddr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9d6b527c VBoxGuest_RTThreadWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9dbd63d6 VBoxGuest_RTStrPrintfEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9eaecd9d VBoxGuest_RTStrPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9f301085 VBoxGuest_RTTimeSpecFromString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9f4f616a VBoxGuest_RTLogLogger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9fb0596d VBoxGuest_RTMemDupTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa168a070 VBoxGuest_RTLogLoggerExV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa34eb1b3 VBoxGuest_RTTimeSystemNanoTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa486e710 VBoxGuestIDCClose +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa554bd97 VBoxGuest_RTLogFlushRC +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa5a26703 VBoxGuest_RTMpNotificationRegister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa696baed VBoxGuest_RTR0MemObjAddress +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa6a22472 VBoxGuest_RTThreadUserWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa6de1bcd VBoxGuest_RTTimerChangeInterval +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa86c5a96 VBoxGuest_RTSemEventSignal +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaba9bc9c VBoxGuest_RTLogCloneRC +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xac990d74 VBoxGuest_RTTimerCanDoHighResolution +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xacaac41d VBoxGuest_g_szRTAssertMsg1 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xad4fdf4e VBoxGuest_RTSemMutexRequestNoResumeDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xad649089 VBoxGuest_RTStrToUInt64Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xae3e0ecd VBoxGuest_RTLogRelPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaf6ffbfc VBoxGuest_RTThreadSleep +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb05840a7 VBoxGuest_RTSemEventMultiWaitExDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb1cc9148 VBoxGuest_RTLogWriteCom +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb42ea0e3 VBoxGuest_g_pszRTAssertFile +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb444f4a1 VBoxGuest_RTLogDestinations +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb6941b2e VBoxGuest_RTStrToUInt8 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb8c6e615 VBoxGuest_RTStrToUInt32Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb8ca8fcb VBoxGuest_RTMpOnPair +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb8df2b3a VBoxGuest_RTAssertShouldPanic +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9b070b7 VBoxGuest_RTAssertMsg2V +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb9d7a27d VBoxGuest_RTHeapSimpleDump +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbaa97421 VBoxGuest_g_szRTAssertMsg2 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbb1ead73 VBoxGuest_RTR0MemKernelCopyTo +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbba928e6 VBoxGuest_RTHeapSimpleGetHeapSize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbc4d30f6 VBoxGuest_RTR0MemObjAllocContTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbc85935a VBoxGuest_RTR0MemKernelCopyFrom +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbe4e6114 VBoxGuest_RTLogFlushToLogger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbffedb55 VBoxGuest_RTMemAllocExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc1095c44 VBoxGuest_RTTimeImplode +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc1b3ada4 VBoxGuest_RTAssertMsg2WeakV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc3a1e5de VBoxGuest_RTLogGetGroupSettings +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc3fee96e VBoxGuest_RTMemAllocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc4bd5fd8 VBoxGuest_RTStrPrintfExV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc63cc2f0 VBoxGuest_RTR0MemExecDonate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc71362b7 VBoxGuest_RTLogRelSetBuffering +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc8fbf4aa VBoxGuest_RTHeapSimpleInit +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc91cea98 VBoxGuest_RTStrCopyEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc9a6a8e7 VBoxGuest_RTThreadCreateF +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcaee97bf VBoxGuest_RTLogComPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcb2a6b54 VBoxGuest_RTMemExecFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xceae9d6a VBoxGuest_RTStrConvertHexBytes +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd14e8ec2 VBoxGuest_RTTimerDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd1f3f0b9 VBoxGuest_RTSemEventWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd2a37e73 VBoxGuest_RTTimerReleaseSystemGranularity +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd2d290ab VBoxGuest_RTStrToUInt8Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd3a125cb VBoxGuest_RTR0MemObjMapKernelTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd46c35d4 VBoxGuest_RTMpOnAll +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd4b597fc VBoxGuest_RTStrCopyP +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd5bfc897 VBoxGuest_RTHeapSimpleAllocZ +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd637869e VBoxGuest_RTMemReallocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd69bc8e4 VBoxGuest_RTR0MemObjReserveUserTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd706d85c VBoxGuest_RTTimeFromString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd88c9330 VBoxGuest_RTLogLoggerV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd984a7f4 VBoxGuest_RTStrFormatTypeRegister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdc700594 VBoxGuest_RTSemEventMultiGetResolution +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xde9ca744 VBoxGuest_RTThreadYield +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdfbc69bb VBoxGuest_RTThreadPreemptIsPendingTrusty +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe054d759 VBoxGuest_RTMemTmpFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe095cef8 VBoxGuest_RTThreadSetType +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe0dc7391 VBoxGuest_RTThreadIsMain +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe1c6b3d7 VBoxGuest_RTR0MemObjMapKernelExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe2765c54 VBoxGuest_RTR0AssertPanicSystem +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe38d562c VBoxGuest_RTStrFormatNumber +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe3fd228f VBoxGuest_RTTimeMilliTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe7e42113 VBoxGuest_RTThreadSleepNoLog +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe88dae73 VBoxGuest_RTMemFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe8fad285 VBoxGuest_RTSemEventMultiWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xea2f2944 VBoxGuest_RTStrToInt8Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xea38e4f7 VBoxGuest_RTLogDefaultInstanceEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xea71842b VBoxGuest_RTMpGetPresentCoreCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xebeefa0e VBoxGuest_RTR0ProcHandleSelf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xec3cc9a6 VBoxGuest_RTSemEventMultiWaitEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xee774b8e VBoxGuest_RTLogWriteDebugger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xeea4ee73 VBoxGuest_RTR0MemObjMapUserTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xef6e1359 VBoxGuest_RTMpOnOthers +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf02f22ab VBoxGuest_RTMemAllocZTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf0dbb702 VBoxGuest_RTHeapSimpleFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf26294bb VBoxGuest_RTR0MemObjIsMapping +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf2aa79bb VBoxGuest_RTThreadUserSignal +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf3943009 VBoxGuest_RTTimerRequestSystemGranularity +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf5d89855 VBoxGuest_RTLogGroupSettings +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf69aec24 VBoxGuest_RTStrToInt16Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf7397dd2 VBoxGuest_RTAssertSetMayPanic +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf8113d66 VBoxGuest_RTMpOnAllIsConcurrentSafe +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf956a4e8 VBoxGuest_RTLogFlush +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf958d9cb VBoxGuest_RTLogCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfa7d95c9 VBoxGuest_RTR0MemUserIsValidAddr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfb31e12b VBoxGuest_RTStrToUInt32Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfba93ac9 VBoxGuest_RTR0MemObjReserveKernelTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfbc67e88 VBoxGuest_RTMemFreeEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfe72cef7 VBoxGuest_RTStrToInt8 +EXPORT_SYMBOL vmlinux 0x00160420 pci_iomap +EXPORT_SYMBOL vmlinux 0x00323689 dqput +EXPORT_SYMBOL vmlinux 0x003c19ca bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x004c1c5b do_trace_write_msr +EXPORT_SYMBOL vmlinux 0x0068c792 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x0084b37e blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done +EXPORT_SYMBOL vmlinux 0x008d785f vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x00a8e3d1 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x00b8c3a7 mempool_alloc +EXPORT_SYMBOL vmlinux 0x00cfa8f4 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00e0a722 filp_open +EXPORT_SYMBOL vmlinux 0x00ed81ba block_truncate_page +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x010e667e iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x0113e8d5 register_gifconf +EXPORT_SYMBOL vmlinux 0x012a6917 dev_set_group +EXPORT_SYMBOL vmlinux 0x012f6051 filemap_fault +EXPORT_SYMBOL vmlinux 0x0137b83a mutex_lock +EXPORT_SYMBOL vmlinux 0x015c568a x86_hyper_xen +EXPORT_SYMBOL vmlinux 0x01688471 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x016bd784 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x0173be31 vme_init_bridge +EXPORT_SYMBOL vmlinux 0x017dfefb inet_stream_connect +EXPORT_SYMBOL vmlinux 0x017f0fe8 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x01a104c0 vmap +EXPORT_SYMBOL vmlinux 0x01ba39b4 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x01f5d80b neigh_event_ns +EXPORT_SYMBOL vmlinux 0x01f78b47 fscrypt_get_policy +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x021d5d84 uart_resume_port +EXPORT_SYMBOL vmlinux 0x022bd74e vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x029d7e5d bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a410af eth_change_mtu +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02ac1f71 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x02c9326e ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x02dc3bb2 input_close_device +EXPORT_SYMBOL vmlinux 0x02e18477 write_cache_pages +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x0309db19 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x031123d6 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x03144516 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x03171d11 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x03174a2e path_is_under +EXPORT_SYMBOL vmlinux 0x0331f965 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0350f487 lock_rename +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x03630f0a __lock_page +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x0373b4cb netlink_broadcast +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x0385b22a skb_dequeue +EXPORT_SYMBOL vmlinux 0x03ba16d1 set_nlink +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x040d9987 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x040dea53 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x04201017 fence_init +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0426ba24 idr_for_each +EXPORT_SYMBOL vmlinux 0x042e802d sock_wfree +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x045629c7 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x0473e59c agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x04749091 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x048d576b devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x04b197f2 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset +EXPORT_SYMBOL vmlinux 0x04d0b2a9 tty_name +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04e9d9c6 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04f359f0 registered_fb +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x05202d4b mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x05372aec mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x054b1224 generic_file_open +EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x056e1071 pci_find_capability +EXPORT_SYMBOL vmlinux 0x056f664c __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x057927df vme_dma_request +EXPORT_SYMBOL vmlinux 0x05868bb0 bdi_register_owner +EXPORT_SYMBOL vmlinux 0x059100df phy_device_free +EXPORT_SYMBOL vmlinux 0x0593c57a sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x05987bc8 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x0599e9f0 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x05a06ed2 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x05a2bd33 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x05b1a910 __destroy_inode +EXPORT_SYMBOL vmlinux 0x05e25804 __request_region +EXPORT_SYMBOL vmlinux 0x05f23204 page_mapped +EXPORT_SYMBOL vmlinux 0x06052f8d __memmove +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061f4039 acpi_get_table_with_size +EXPORT_SYMBOL vmlinux 0x0623743b proc_douintvec +EXPORT_SYMBOL vmlinux 0x0625d161 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06348ffb dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x064027fb fb_get_mode +EXPORT_SYMBOL vmlinux 0x06451337 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x064aa125 md_cluster_mod +EXPORT_SYMBOL vmlinux 0x06503357 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x065a5138 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x0680f6bf xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x0684c0e7 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x068af32b inet6_getname +EXPORT_SYMBOL vmlinux 0x068c7263 ioremap_cache +EXPORT_SYMBOL vmlinux 0x06b11c1f generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x06ba7a63 find_lock_entry +EXPORT_SYMBOL vmlinux 0x06c0dae5 __kernel_fpu_end +EXPORT_SYMBOL vmlinux 0x06e991b9 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x06f0f3cb clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x06f3cbfe padata_do_serial +EXPORT_SYMBOL vmlinux 0x07020da7 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072adf07 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0747149a neigh_app_ns +EXPORT_SYMBOL vmlinux 0x0764449e sock_wake_async +EXPORT_SYMBOL vmlinux 0x07762350 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x07906e24 register_cdrom +EXPORT_SYMBOL vmlinux 0x0794af17 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07bb07e9 vga_tryget +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07db7375 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x080b4cee amd_iommu_flush_page +EXPORT_SYMBOL vmlinux 0x0822eb6f kernel_accept +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x08382c62 tcp_close +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0889a8dc phy_drivers_register +EXPORT_SYMBOL vmlinux 0x0894d3cb generic_ro_fops +EXPORT_SYMBOL vmlinux 0x0897287b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x08a1e7cd blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x08a8a056 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x08b43172 would_dump +EXPORT_SYMBOL vmlinux 0x08d3359c neigh_lookup +EXPORT_SYMBOL vmlinux 0x08d3b3d7 tcp_seq_open +EXPORT_SYMBOL vmlinux 0x08e5e1c1 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x08e81a4d dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x09004d12 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x09078a8c blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x09194efe skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x09302939 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x09414b53 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x094c3eb3 udp_prot +EXPORT_SYMBOL vmlinux 0x09517df9 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x09633c76 serio_open +EXPORT_SYMBOL vmlinux 0x096618cb fence_free +EXPORT_SYMBOL vmlinux 0x09696626 acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x097298a8 param_set_short +EXPORT_SYMBOL vmlinux 0x098431ba acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09bd5b12 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x09c30bb2 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c6411f schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09e6c1a3 find_get_entry +EXPORT_SYMBOL vmlinux 0x09e88526 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x09ed92f4 uart_register_driver +EXPORT_SYMBOL vmlinux 0x09f97d5e sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x09faf82a netlink_set_err +EXPORT_SYMBOL vmlinux 0x0a17d559 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x0a1bae27 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a2d4db4 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x0a661faa lg_local_unlock +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a789752 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x0a8c251f vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0x0a9526cc __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aca2f98 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad68957 may_umount_tree +EXPORT_SYMBOL vmlinux 0x0af2d367 kobject_set_name +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b10278a pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b256de5 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x0b4a13da bio_endio +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b6636ea eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x0b67f444 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b776344 devm_clk_get +EXPORT_SYMBOL vmlinux 0x0b8f9b1d generic_perform_write +EXPORT_SYMBOL vmlinux 0x0b905c66 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x0b90b8e2 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x0b9bd6bc inet_frag_find +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bbfd46d netdev_all_lower_get_next +EXPORT_SYMBOL vmlinux 0x0bc45fe9 dst_destroy +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0c117436 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0x0c3a81d4 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c51080e scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c5e944a ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x0c69c353 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c75efb3 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x0c78077b current_task +EXPORT_SYMBOL vmlinux 0x0c810fca tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region +EXPORT_SYMBOL vmlinux 0x0cab5ded pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cc81bdb jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x0cd35b95 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x0cdb7d12 __kernel_fpu_begin +EXPORT_SYMBOL vmlinux 0x0ce32ea4 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x0cfe899e mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x0d136fab phy_device_create +EXPORT_SYMBOL vmlinux 0x0d2c83a4 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x0d2d4bc2 xen_biovec_phys_mergeable +EXPORT_SYMBOL vmlinux 0x0d2fa1b7 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x0d3cfbf6 agp_bind_memory +EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type +EXPORT_SYMBOL vmlinux 0x0d46300e remap_pfn_range +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d7f3416 revalidate_disk +EXPORT_SYMBOL vmlinux 0x0d80efb5 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0x0d92b54b scsi_remove_target +EXPORT_SYMBOL vmlinux 0x0d92f47f bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x0d9b1bdc md_finish_reshape +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0dd10e01 keyring_search +EXPORT_SYMBOL vmlinux 0x0dd599df __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x0dd6af28 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x0df8c7d1 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x0e058b03 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x0e1e7ea9 napi_get_frags +EXPORT_SYMBOL vmlinux 0x0e25542e jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x0e4cd9f6 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e8062f7 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x0e80fc09 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x0e927da5 ipv4_specific +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ed464c2 bdget +EXPORT_SYMBOL vmlinux 0x0ed8cc7b acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x0efc444b eth_header_cache +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0efd17d8 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x0f16b54c alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x0f1c6037 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x0f201e04 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x0f35155c tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x0f3b0fb2 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x0f44ca32 arp_tbl +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f684da6 skb_checksum +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f70ecf8 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f8720e6 security_task_getsecid +EXPORT_SYMBOL vmlinux 0x0f88557b nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x0f92fb6c bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x0f9d20ac ether_setup +EXPORT_SYMBOL vmlinux 0x0fa81b6e unlock_page +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event +EXPORT_SYMBOL vmlinux 0x0fea671d blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x0fee7c75 clear_inode +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x1026b576 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x1037af7d thaw_bdev +EXPORT_SYMBOL vmlinux 0x10486947 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x1066573a acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x107bf5f4 ll_rw_block +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x107fdde9 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x1084a69b inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x10867ef2 block_write_end +EXPORT_SYMBOL vmlinux 0x10b46bb6 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x10c23118 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x10c934ce textsearch_unregister +EXPORT_SYMBOL vmlinux 0x10d7b63b tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x1106e9a1 register_netdev +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x1134784e __get_user_pages +EXPORT_SYMBOL vmlinux 0x11425266 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x1144c792 devm_ioremap +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x1169a7aa sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x11996839 tty_do_resize +EXPORT_SYMBOL vmlinux 0x11afb762 sync_inode +EXPORT_SYMBOL vmlinux 0x11b72128 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x11c0c973 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x11c88d7c pci_pme_active +EXPORT_SYMBOL vmlinux 0x11cb6a46 __genl_register_family +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x1205c317 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120bfd8c mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x120fd1bb sock_alloc_file +EXPORT_SYMBOL vmlinux 0x1226bdb6 ex_handler_default +EXPORT_SYMBOL vmlinux 0x122e6e41 cpu_tss +EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x123fe020 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x12409f2a __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x1242f62f nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x1250c7e1 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x12737b1b vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0x12814fa0 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x128e335d dst_discard_out +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12cc7bf5 file_update_time +EXPORT_SYMBOL vmlinux 0x12de549c __ht_create_irq +EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit +EXPORT_SYMBOL vmlinux 0x12f51742 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x12fab41b netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x1305d532 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x132f8c7e dev_crit +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x13388d6f ip_setsockopt +EXPORT_SYMBOL vmlinux 0x13448d74 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x136df4d1 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x137290fd sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x13790afe scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x1382ee12 bio_put +EXPORT_SYMBOL vmlinux 0x13865151 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x13a5e6cd param_set_int +EXPORT_SYMBOL vmlinux 0x13b03aaf buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x13b65ea8 devm_request_resource +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x1413b101 fs_bio_set +EXPORT_SYMBOL vmlinux 0x141739a6 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x1418fced bd_set_size +EXPORT_SYMBOL vmlinux 0x14363c80 pci_dev_put +EXPORT_SYMBOL vmlinux 0x143ca00b pci_find_bus +EXPORT_SYMBOL vmlinux 0x1442be11 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x1484f647 qdisc_reset +EXPORT_SYMBOL vmlinux 0x149f8df9 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x14b3657a phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x14b3914b __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x14b4e585 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x14b9b41f csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14dbf2c2 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x14ecb10a tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x150975fd phy_detach +EXPORT_SYMBOL vmlinux 0x150ad92b ioport_resource +EXPORT_SYMBOL vmlinux 0x15413759 seq_write +EXPORT_SYMBOL vmlinux 0x1547bfd6 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x154a03a6 compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x156a8a59 down_trylock +EXPORT_SYMBOL vmlinux 0x15799c11 _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x158968fd pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x1598749b param_ops_long +EXPORT_SYMBOL vmlinux 0x159ae9ea __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x159e0c2b __dquot_transfer +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15c0c8c1 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x15c960a9 i2c_master_recv +EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled +EXPORT_SYMBOL vmlinux 0x161a6c81 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x1638d157 km_new_mapping +EXPORT_SYMBOL vmlinux 0x163d6d60 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x16413d57 ata_link_printk +EXPORT_SYMBOL vmlinux 0x1659cb91 generic_read_dir +EXPORT_SYMBOL vmlinux 0x16601912 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x166725cf bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x16821ba3 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x168d991b blk_register_region +EXPORT_SYMBOL vmlinux 0x16d46be1 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16eae7bc dev_change_flags +EXPORT_SYMBOL vmlinux 0x16eaff1f lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x172566a4 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x17422003 pci_platform_rom +EXPORT_SYMBOL vmlinux 0x177f81f5 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x17862d1f __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x179651ac _raw_read_lock +EXPORT_SYMBOL vmlinux 0x17aaea21 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x17afd5e4 dma_ops +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17b911f7 kill_anon_super +EXPORT_SYMBOL vmlinux 0x17c1671d tcf_hash_search +EXPORT_SYMBOL vmlinux 0x17ec6834 acpi_device_hid +EXPORT_SYMBOL vmlinux 0x17eebbea fddi_type_trans +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x1809c266 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x180cc84e iov_iter_npages +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x182d9585 unload_nls +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x18518c1f dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x1868bb63 mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x18913977 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x189f36b1 bio_chain +EXPORT_SYMBOL vmlinux 0x18b3baba crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x18b63774 file_open_root +EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe +EXPORT_SYMBOL vmlinux 0x18ca6192 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18f3d2e0 update_devfreq +EXPORT_SYMBOL vmlinux 0x1906c790 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x19122ecc kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x1916e38c _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x19396604 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x19406c43 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x195082ad locks_init_lock +EXPORT_SYMBOL vmlinux 0x1954ddb8 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x1957333f generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x198643c2 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0x198c3851 seq_open +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19b5bb2b tcp_read_sock +EXPORT_SYMBOL vmlinux 0x19ba167d ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c85478 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x19cc384a swake_up_locked +EXPORT_SYMBOL vmlinux 0x19db4c94 backlight_force_update +EXPORT_SYMBOL vmlinux 0x1a1d3a43 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x1a2b0bd3 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a703ba1 crc_ccitt +EXPORT_SYMBOL vmlinux 0x1aa2693a radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1acc4d1f jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x1ae09f75 _raw_write_unlock_irq +EXPORT_SYMBOL vmlinux 0x1aec259e __i2c_transfer +EXPORT_SYMBOL vmlinux 0x1aee0653 dst_release +EXPORT_SYMBOL vmlinux 0x1afa0c11 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x1afb1aaa acpi_mark_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x1aff2028 dma_find_channel +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b13a973 sock_alloc +EXPORT_SYMBOL vmlinux 0x1b1b70f7 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b42024a blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x1b50c684 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x1b53c623 mdio_device_create +EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning +EXPORT_SYMBOL vmlinux 0x1b5e3136 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x1b5ea814 page_get_link +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b7a90c7 x86_hyper_vmware +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b8c4877 sock_create_lite +EXPORT_SYMBOL vmlinux 0x1b8ea1b4 elv_register_queue +EXPORT_SYMBOL vmlinux 0x1ba1f4d5 ata_print_version +EXPORT_SYMBOL vmlinux 0x1ba676bb inet_stream_ops +EXPORT_SYMBOL vmlinux 0x1bc76b30 seq_lseek +EXPORT_SYMBOL vmlinux 0x1bd657e1 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x1bd9a7f3 param_get_ulong +EXPORT_SYMBOL vmlinux 0x1be1dd26 lg_global_lock +EXPORT_SYMBOL vmlinux 0x1be44396 clkdev_alloc +EXPORT_SYMBOL vmlinux 0x1be44397 mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x1bf06641 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x1bf5f2e9 mmc_free_host +EXPORT_SYMBOL vmlinux 0x1c0b1303 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x1c18f74f sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x1c1aa104 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x1c359659 iterate_dir +EXPORT_SYMBOL vmlinux 0x1c3ffff2 kfree_skb +EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset +EXPORT_SYMBOL vmlinux 0x1c8fe2de page_mapping +EXPORT_SYMBOL vmlinux 0x1cab8c87 register_key_type +EXPORT_SYMBOL vmlinux 0x1cdb3df4 arp_xmit +EXPORT_SYMBOL vmlinux 0x1cddc1c6 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x1cdfacdd fscrypt_restore_control_page +EXPORT_SYMBOL vmlinux 0x1ce66141 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x1ce9fff1 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x1d01803d udp_disconnect +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be +EXPORT_SYMBOL vmlinux 0x1d10c77a tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x1d1ad71d mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x1d1d4022 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x1d414665 dev_addr_add +EXPORT_SYMBOL vmlinux 0x1d41531b blk_requeue_request +EXPORT_SYMBOL vmlinux 0x1d661225 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x1d6ffe36 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x1d7ad6ac gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x1d86c165 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x1d912748 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x1da04e88 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache +EXPORT_SYMBOL vmlinux 0x1db9a985 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x1dc0d3b5 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd1b505 dquot_resume +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de74f72 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0x1dfd06d1 pci_request_region +EXPORT_SYMBOL vmlinux 0x1e036c98 acpi_set_gpe +EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x1e0c2be4 ioremap_wc +EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e8dc6d5 __kernel_write +EXPORT_SYMBOL vmlinux 0x1e901e2f irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x1eb9e5d1 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x1efef8ae qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x1f3671f1 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x1f605573 alloc_disk +EXPORT_SYMBOL vmlinux 0x1f619088 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x1f6b6436 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1f6e5a3a mmc_start_bkops +EXPORT_SYMBOL vmlinux 0x1f79b0c0 pci_get_device +EXPORT_SYMBOL vmlinux 0x1f8204d2 cdev_init +EXPORT_SYMBOL vmlinux 0x1f82b828 lookup_one_len +EXPORT_SYMBOL vmlinux 0x1f9f3564 wireless_send_event +EXPORT_SYMBOL vmlinux 0x1fa0603a genlmsg_put +EXPORT_SYMBOL vmlinux 0x1fbc57a4 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fd01473 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd541c0 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1ffe46de param_get_int +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x2005e68a acpi_remove_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x20092385 acpi_enter_sleep_state_s4bios +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x201b0ac0 lg_global_unlock +EXPORT_SYMBOL vmlinux 0x20317168 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x2031b09a dm_register_target +EXPORT_SYMBOL vmlinux 0x2044aea7 amd_iommu_pc_get_max_banks +EXPORT_SYMBOL vmlinux 0x204b8c16 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x205bb41a jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x205e3983 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x206792e6 devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x20689c4b netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x2072a304 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table +EXPORT_SYMBOL vmlinux 0x209583c1 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x209921a9 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x20a65676 param_set_invbool +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20a8d709 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x20c26325 dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20c84c31 register_netdevice +EXPORT_SYMBOL vmlinux 0x20d9eb1b clocksource_unregister +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20e83553 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20f5fae3 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x210e2745 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x21165e6f phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x21440db1 netpoll_setup +EXPORT_SYMBOL vmlinux 0x214f1641 dup_iter +EXPORT_SYMBOL vmlinux 0x216615e2 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x2174a462 skb_copy +EXPORT_SYMBOL vmlinux 0x2184cfb6 bioset_free +EXPORT_SYMBOL vmlinux 0x2185d192 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x21988d1d pci_release_regions +EXPORT_SYMBOL vmlinux 0x21d52efe tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e91616 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x21e992a5 ida_simple_get +EXPORT_SYMBOL vmlinux 0x2207a57f prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x2209a3d1 d_splice_alias +EXPORT_SYMBOL vmlinux 0x22137803 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x223071f5 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x22308afa pcim_enable_device +EXPORT_SYMBOL vmlinux 0x223a57f3 tty_set_operations +EXPORT_SYMBOL vmlinux 0x224e9041 vfs_llseek +EXPORT_SYMBOL vmlinux 0x2259d23e netif_device_attach +EXPORT_SYMBOL vmlinux 0x226013eb eth_mac_addr +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x227e959e key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x22854b53 phy_init_hw +EXPORT_SYMBOL vmlinux 0x2295e9ba vga_client_register +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22d18ffa skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x22d43c01 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x22d6cad9 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x22ed4272 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x22fbe6f4 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x23092832 kill_fasync +EXPORT_SYMBOL vmlinux 0x231c9802 vme_irq_free +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x231e3970 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x231efe84 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x2325c3e2 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x232d18ec rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2345d05e iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x23631f5f filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x236de85e fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x23a4930e posix_test_lock +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23ba16b6 param_ops_int +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x23ca821a skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x23cee0b2 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x23d4ba2a sock_kfree_s +EXPORT_SYMBOL vmlinux 0x23ec9676 xfrm_input +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x240ebfe0 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x2415a206 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x2433d0f2 dput +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x244587ca notify_change +EXPORT_SYMBOL vmlinux 0x2458e597 bdgrab +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x24744ccd param_ops_ullong +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x2491a0a4 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x24a302f0 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x24ae5d80 keyring_alloc +EXPORT_SYMBOL vmlinux 0x24ae8efe rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x24b54e5e max8998_read_reg +EXPORT_SYMBOL vmlinux 0x24b97624 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x24c25e4f memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0x24ca254e tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x24f24429 dma_common_mmap +EXPORT_SYMBOL vmlinux 0x24f64e53 set_groups +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x2510170a sget_userns +EXPORT_SYMBOL vmlinux 0x2513bcac pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x2536989f devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x2539318a key_unlink +EXPORT_SYMBOL vmlinux 0x254980f0 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x254f548c mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x257131c5 d_add_ci +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258fbb11 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x2598bcd4 vga_switcheroo_client_probe_defer +EXPORT_SYMBOL vmlinux 0x259c5a9c padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x25a8d34c pci_add_resource +EXPORT_SYMBOL vmlinux 0x25aa2c87 blk_end_request_all +EXPORT_SYMBOL vmlinux 0x25aacb3f twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x25ac1ebf do_trace_rdpmc +EXPORT_SYMBOL vmlinux 0x25ac6216 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x25ad2461 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x25babd48 flush_old_exec +EXPORT_SYMBOL vmlinux 0x25c2908d mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x25d524d2 set_page_dirty +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f95bcf inet_gro_complete +EXPORT_SYMBOL vmlinux 0x260347cb sock_release +EXPORT_SYMBOL vmlinux 0x261f206c blkdev_put +EXPORT_SYMBOL vmlinux 0x262a41bb dquot_operations +EXPORT_SYMBOL vmlinux 0x262add23 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x26551be4 param_set_bool +EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update +EXPORT_SYMBOL vmlinux 0x267db36b generic_readlink +EXPORT_SYMBOL vmlinux 0x2685df14 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x268962f2 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x2689d556 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x26948d96 copy_user_enhanced_fast_string +EXPORT_SYMBOL vmlinux 0x26983fa3 inet6_offloads +EXPORT_SYMBOL vmlinux 0x26cb34a2 mempool_create +EXPORT_SYMBOL vmlinux 0x26d59ac6 skb_trim +EXPORT_SYMBOL vmlinux 0x26e28881 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26fe43e9 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x271e9555 kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0x27252fc7 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x275207b9 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x2755a9ea ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x277177a3 dev_activate +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x27882b9b ida_simple_remove +EXPORT_SYMBOL vmlinux 0x27a02cf7 filp_close +EXPORT_SYMBOL vmlinux 0x27a0c0b5 find_get_entries_tag +EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction +EXPORT_SYMBOL vmlinux 0x27b595fb mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27e054d2 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x281594ec security_path_unlink +EXPORT_SYMBOL vmlinux 0x28166464 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28210b73 skb_store_bits +EXPORT_SYMBOL vmlinux 0x28318305 snprintf +EXPORT_SYMBOL vmlinux 0x285a30ca devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x2868e7db bdev_read_only +EXPORT_SYMBOL vmlinux 0x286b7541 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x286e0c9f touch_buffer +EXPORT_SYMBOL vmlinux 0x287e44df twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x2888ed1a tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x28913076 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x289b1e4f sock_no_mmap +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28abfe6e scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x28b97ccd cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x28c23b48 down_write_trylock +EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x28ebe9ce mdiobus_scan +EXPORT_SYMBOL vmlinux 0x28ee1a42 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x28f2ba59 dump_emit +EXPORT_SYMBOL vmlinux 0x290c8c40 mntget +EXPORT_SYMBOL vmlinux 0x290fb87a vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x291be434 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x291c6070 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x2927f422 input_release_device +EXPORT_SYMBOL vmlinux 0x292a4f05 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0x293e9b5a netdev_notice +EXPORT_SYMBOL vmlinux 0x294f2e47 pci_bus_type +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x298093cb __getblk_gfp +EXPORT_SYMBOL vmlinux 0x29ca5129 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x29cec73e scsi_register_interface +EXPORT_SYMBOL vmlinux 0x29d857b5 scsi_print_command +EXPORT_SYMBOL vmlinux 0x2a020e11 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x2a1b0223 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x2a1c6350 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x2a21039f devm_gpio_request +EXPORT_SYMBOL vmlinux 0x2a2fd101 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a565a25 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x2acb5c82 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ad43171 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x2ad76771 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x2af037a8 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x2b02841b file_ns_capable +EXPORT_SYMBOL vmlinux 0x2b05a21b intel_gtt_get +EXPORT_SYMBOL vmlinux 0x2b09b0dc blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b180d3b phy_connect_direct +EXPORT_SYMBOL vmlinux 0x2b28c710 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b325f9c mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x2b3ee147 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x2b4da9e4 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x2b67ad0e md_write_end +EXPORT_SYMBOL vmlinux 0x2b6b53f4 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x2b6bb28f serio_reconnect +EXPORT_SYMBOL vmlinux 0x2b79d0c3 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x2b7f0e46 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba316b8 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x2bead5ab netlink_net_capable +EXPORT_SYMBOL vmlinux 0x2bf06d1c kernel_sendpage +EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x2c1838ad __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c444ac5 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x2c4a6c51 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x2c4c2ad5 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x2c4cd46d mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x2c623c51 nf_reinject +EXPORT_SYMBOL vmlinux 0x2c9a08f2 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x2ca319a6 wrmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x2ca83bc0 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x2ca8af51 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x2ccc77e2 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x2ccf0650 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x2ce4916f migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d144e21 rdmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d7597a4 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x2d8c89e0 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x2d8ca20a bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x2d987922 tcp_req_err +EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2de4d19e genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception +EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2e069b66 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e36fa56 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x2e4c1ca9 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x2e54ad61 inet_gro_receive +EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x2e5ff239 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x2e62f500 dev_mc_del +EXPORT_SYMBOL vmlinux 0x2e89bbee dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x2ea00a42 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x2eb83340 ip6_frag_match +EXPORT_SYMBOL vmlinux 0x2ebf0d6a fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x2ec7b30f netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x2edd581c iget5_locked +EXPORT_SYMBOL vmlinux 0x2ee9c990 pci_get_class +EXPORT_SYMBOL vmlinux 0x2ee9c9ff x86_dma_fallback_dev +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f242b74 dst_alloc +EXPORT_SYMBOL vmlinux 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f6c71cd d_prune_aliases +EXPORT_SYMBOL vmlinux 0x2fa73ea0 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x2fad1389 reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fd847b1 d_lookup +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe2e365 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x2fe7ab8c consume_skb +EXPORT_SYMBOL vmlinux 0x2ff063b5 acpi_get_name +EXPORT_SYMBOL vmlinux 0x2ff77dcc skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x301a2a05 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x302d4920 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x3030164f phy_stop +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x303b62aa mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x304720b8 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x304895bc proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x30562bad scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x306716e5 key_link +EXPORT_SYMBOL vmlinux 0x306ac402 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3095e3de mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a3a940 input_reset_device +EXPORT_SYMBOL vmlinux 0x30a5daca nd_device_notify +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b04526 ida_init +EXPORT_SYMBOL vmlinux 0x30c2a00b xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x30df81ec sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30f02fe2 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310582dd fd_install +EXPORT_SYMBOL vmlinux 0x310f02ec memremap +EXPORT_SYMBOL vmlinux 0x3122ed5b __seq_open_private +EXPORT_SYMBOL vmlinux 0x3130c024 get_zone_device_page +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3157eee2 pipe_unlock +EXPORT_SYMBOL vmlinux 0x3158048b touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x3180bb78 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x318a7f38 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x31a15a3e nf_ct_attach +EXPORT_SYMBOL vmlinux 0x31ae6935 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x31b8fd61 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x31d855bb gen_pool_free +EXPORT_SYMBOL vmlinux 0x31dfa31c dev_uc_sync +EXPORT_SYMBOL vmlinux 0x31e1a7c6 sock_no_accept +EXPORT_SYMBOL vmlinux 0x31e24cb9 fget_raw +EXPORT_SYMBOL vmlinux 0x31e602bc sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x31e76b57 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0x31ebf4c4 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x31ec44a0 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x31f10539 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x31faaa6c lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x3202435a wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x3208f511 netif_device_detach +EXPORT_SYMBOL vmlinux 0x32199854 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x321facf0 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x325c929a get_disk +EXPORT_SYMBOL vmlinux 0x326360c3 phy_resume +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x327903e3 d_find_alias +EXPORT_SYMBOL vmlinux 0x3281cc18 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x328630e4 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x3292e2c3 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x329daa8b seqno_fence_ops +EXPORT_SYMBOL vmlinux 0x329e2034 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x32a32e5b __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x32a7fe2c bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x32c18c0c textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x32c3235b vme_irq_generate +EXPORT_SYMBOL vmlinux 0x32c68aed dcache_dir_open +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32e5ed6d mdio_device_register +EXPORT_SYMBOL vmlinux 0x32e628b1 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32f0b0fa redraw_screen +EXPORT_SYMBOL vmlinux 0x330a27c0 alloc_pages_current +EXPORT_SYMBOL vmlinux 0x33196d5a register_quota_format +EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x3345bc60 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x33517e2c udp_proc_register +EXPORT_SYMBOL vmlinux 0x3359b971 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x338e1949 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x3393267a ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x339f199d vme_lm_request +EXPORT_SYMBOL vmlinux 0x33afe1df __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33d26850 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x33d3f094 generic_write_end +EXPORT_SYMBOL vmlinux 0x33e82aae serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f527ee pci_iomap_range +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x3405a894 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x343b26a8 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x3441a75f debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x34448161 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x345408cd sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x3455dd24 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x348c4590 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x348d07e6 vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0x349213ef cpu_core_map +EXPORT_SYMBOL vmlinux 0x34940ff1 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x349ee473 user_path_create +EXPORT_SYMBOL vmlinux 0x34a9f1ee vm_zone_stat +EXPORT_SYMBOL vmlinux 0x34cd30ab blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x34db50f9 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x34f20a71 clkdev_hw_alloc +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34fe12e1 amd_iommu_get_v2_domain +EXPORT_SYMBOL vmlinux 0x3500d5ba generic_show_options +EXPORT_SYMBOL vmlinux 0x35057fa9 d_alloc +EXPORT_SYMBOL vmlinux 0x3510518b security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x353e21e3 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x354211e4 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x355ce9f5 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x3563da0c mdio_device_free +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x356d0fd2 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x3571cef6 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x357ad1fc invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x358c9c1e ps2_command +EXPORT_SYMBOL vmlinux 0x3591969e vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35ad42b9 fb_blank +EXPORT_SYMBOL vmlinux 0x35ba0555 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x35c41bae dev_alloc_name +EXPORT_SYMBOL vmlinux 0x35e75fa1 param_ops_charp +EXPORT_SYMBOL vmlinux 0x35fb295b blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x35ff2f4b __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x3601b52c filemap_flush +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x361449c3 blk_finish_request +EXPORT_SYMBOL vmlinux 0x362659bc xfrm_register_km +EXPORT_SYMBOL vmlinux 0x36345e9f lwtunnel_input +EXPORT_SYMBOL vmlinux 0x363d4726 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x3657069d mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x365ad6f6 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x3661a372 dm_put_device +EXPORT_SYMBOL vmlinux 0x36630d83 kernel_listen +EXPORT_SYMBOL vmlinux 0x3672d277 set_pages_nx +EXPORT_SYMBOL vmlinux 0x367ec2e4 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x3695edda request_resource +EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x36a374a1 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x36ae0cfa reuseport_alloc +EXPORT_SYMBOL vmlinux 0x36b14640 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x36bbf739 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36c24032 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x36c7f923 dquot_disable +EXPORT_SYMBOL vmlinux 0x3701a196 csum_partial_copy_to_user +EXPORT_SYMBOL vmlinux 0x37199707 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x371b0c65 netif_skb_features +EXPORT_SYMBOL vmlinux 0x3725893a radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x37539cda security_d_instantiate +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x375782ec inode_set_bytes +EXPORT_SYMBOL vmlinux 0x37613521 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x3768d7cb pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x376c10ad i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x378afe79 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x37a17758 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x37acb187 set_binfmt +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37ee485d tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x37f7f02e dquot_alloc +EXPORT_SYMBOL vmlinux 0x3800d772 phy_print_status +EXPORT_SYMBOL vmlinux 0x38099e13 wrmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x3818191d tso_start +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x38229448 vme_slave_request +EXPORT_SYMBOL vmlinux 0x382df951 fence_add_callback +EXPORT_SYMBOL vmlinux 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x385af740 register_console +EXPORT_SYMBOL vmlinux 0x385eda0b lookup_bdev +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x3892864c alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x389d3d99 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38f17729 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x38f33bed dump_fpu +EXPORT_SYMBOL vmlinux 0x38fddea8 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x3904f8fd get_super_thawed +EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x392daaf9 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x395be116 phy_attach +EXPORT_SYMBOL vmlinux 0x3971cf43 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x3987b418 freeze_bdev +EXPORT_SYMBOL vmlinux 0x399855d9 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x3998f50e __register_nls +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39a055f3 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x39b1925c should_remove_suid +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39b7b2c1 serio_rescan +EXPORT_SYMBOL vmlinux 0x39bf888c iunique +EXPORT_SYMBOL vmlinux 0x39c78ebd cdev_add +EXPORT_SYMBOL vmlinux 0x39f1c2f4 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x3a061c3d nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush +EXPORT_SYMBOL vmlinux 0x3a3f4e53 noop_qdisc +EXPORT_SYMBOL vmlinux 0x3a41c2d9 bioset_create +EXPORT_SYMBOL vmlinux 0x3a4de076 cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x3a61d45e acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0x3a667837 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x3a79540c pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x3a8417b1 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x3a8548de __tracepoint_rdpmc +EXPORT_SYMBOL vmlinux 0x3a90b4c7 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x3a919814 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3a9f664b blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x3aa4c848 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x3ab86ebe qdisc_destroy +EXPORT_SYMBOL vmlinux 0x3ac19f0c grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x3ac951ef inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x3aca75a6 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x3ae3e522 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x3ae4be92 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x3ae5d473 page_waitqueue +EXPORT_SYMBOL vmlinux 0x3b1e3be4 d_rehash +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x3b7cf1d8 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x3b812650 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x3b86dfc4 kset_register +EXPORT_SYMBOL vmlinux 0x3b94ec3c pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x3b953a70 allocate_resource +EXPORT_SYMBOL vmlinux 0x3ba1174a vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x3bb5114a prepare_to_wait +EXPORT_SYMBOL vmlinux 0x3bc15e49 dquot_initialize +EXPORT_SYMBOL vmlinux 0x3bcee38a neigh_for_each +EXPORT_SYMBOL vmlinux 0x3bd0cf81 tty_lock +EXPORT_SYMBOL vmlinux 0x3bde7b91 nf_register_hook +EXPORT_SYMBOL vmlinux 0x3bf89878 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x3c0f912d udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x3c1663ad blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c401cbf generic_permission +EXPORT_SYMBOL vmlinux 0x3c73e328 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x3c78bae6 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3ca3ae3a km_query +EXPORT_SYMBOL vmlinux 0x3ccb02d4 ip_options_compile +EXPORT_SYMBOL vmlinux 0x3cd9018c i2c_master_send +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cebc8d9 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x3cec9f26 param_ops_uint +EXPORT_SYMBOL vmlinux 0x3cf1dc4f phy_attach_direct +EXPORT_SYMBOL vmlinux 0x3cf9ef3a xfrm_state_add +EXPORT_SYMBOL vmlinux 0x3d134c61 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x3d1391e2 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x3d15ab06 __next_node_in +EXPORT_SYMBOL vmlinux 0x3d1d6210 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x3d33c569 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x3d4beac1 pci_match_id +EXPORT_SYMBOL vmlinux 0x3d5118ce dev_get_stats +EXPORT_SYMBOL vmlinux 0x3d5ec6de cpu_info +EXPORT_SYMBOL vmlinux 0x3d72243f fb_pan_display +EXPORT_SYMBOL vmlinux 0x3d7c1ed7 msrs_alloc +EXPORT_SYMBOL vmlinux 0x3d99fca1 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd21e7b devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x3dde1df3 udp_poll +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3dfd4c15 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x3e04dafa param_set_long +EXPORT_SYMBOL vmlinux 0x3e17fe5e pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x3e2286cd __radix_tree_insert +EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0x3e3369f6 unregister_key_type +EXPORT_SYMBOL vmlinux 0x3e434009 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e93085c genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3eb14ee5 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x3ec31f80 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x3ec4bce5 sock_no_connect +EXPORT_SYMBOL vmlinux 0x3eeaae4e phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x3efa620e key_revoke +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f20ca97 rtc_lock +EXPORT_SYMBOL vmlinux 0x3f21e841 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x3f23aff0 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x3f364c6a kobject_del +EXPORT_SYMBOL vmlinux 0x3f3c8d3b dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4b69af fb_deferred_io_mmap +EXPORT_SYMBOL vmlinux 0x3f4b9ce9 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x3f4f945d sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x3f5294a6 __register_chrdev +EXPORT_SYMBOL vmlinux 0x3f5aa67d inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x3f5c6471 del_timer_sync +EXPORT_SYMBOL vmlinux 0x3f649459 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x3f70adcb ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x3f7f117b nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0x3fa0e956 reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x3fb8ca70 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x3fc2251b sg_miter_skip +EXPORT_SYMBOL vmlinux 0x3fcbd38e pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3fecbee5 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x3ff5978a scsi_ioctl +EXPORT_SYMBOL vmlinux 0x400390fb acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0x40119ecd xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x40127c92 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x4097fa45 acpi_read_bit_register +EXPORT_SYMBOL vmlinux 0x40980bc4 search_binary_handler +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a3abfc alloc_file +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b0be76 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x40b1fd09 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40c89d46 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d5a207 generic_setlease +EXPORT_SYMBOL vmlinux 0x40e8810d pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x410d55ed mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x411c6c55 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x4135cd9f pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x41377006 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x413c0433 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x41593f4f nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x4168d4fd dev_open +EXPORT_SYMBOL vmlinux 0x416c0ee8 d_invalidate +EXPORT_SYMBOL vmlinux 0x417dbe7c set_trace_device +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41986b0f blk_put_queue +EXPORT_SYMBOL vmlinux 0x41ae5296 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x41b3f0fc touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x41d20daf bio_reset +EXPORT_SYMBOL vmlinux 0x41f68e33 simple_readpage +EXPORT_SYMBOL vmlinux 0x4214d9b6 free_buffer_head +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x42291d8b page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x4234f096 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x42350e8d ucs2_strlen +EXPORT_SYMBOL vmlinux 0x4235d9e7 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x4277b026 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x4285cc4f to_nd_btt +EXPORT_SYMBOL vmlinux 0x42934492 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x429570ac netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x42a76f3f swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x42b053bb generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x42c8de35 ioremap_nocache +EXPORT_SYMBOL vmlinux 0x42d39a36 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x42e6019f crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x42e72709 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x42e8a19d bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x42ff722c sk_alloc +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x430abed8 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x430cd587 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x4354c7b1 set_disk_ro +EXPORT_SYMBOL vmlinux 0x4368c708 sock_edemux +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x437378e8 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x43816d5f sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43885b88 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x439a22b5 padata_stop +EXPORT_SYMBOL vmlinux 0x43a6bfda mdiobus_free +EXPORT_SYMBOL vmlinux 0x43b0c9c3 preempt_schedule +EXPORT_SYMBOL vmlinux 0x43b785cb xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x43ba8e1a dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x43c7f4b0 bio_copy_data +EXPORT_SYMBOL vmlinux 0x43cfc1b3 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x43cfe6cb lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x43d68fd6 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x43e1eb05 d_genocide +EXPORT_SYMBOL vmlinux 0x43f6ef82 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x440614d9 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x4410683b acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x442f7bd4 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x44359e9e blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x445d2533 fscrypt_process_policy +EXPORT_SYMBOL vmlinux 0x446c2cd0 nvm_get_blk +EXPORT_SYMBOL vmlinux 0x44735a4a pci_bus_put +EXPORT_SYMBOL vmlinux 0x4476d3fb netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x44779340 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x4489da02 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x448e085f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup +EXPORT_SYMBOL vmlinux 0x44915a41 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x44943426 prepare_to_swait +EXPORT_SYMBOL vmlinux 0x4499c94b md_error +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x449cda3d abx500_register_ops +EXPORT_SYMBOL vmlinux 0x44a81d5f acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0x44a8ae9b nla_reserve +EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44b5ee9a kasprintf +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x451e5b14 d_add +EXPORT_SYMBOL vmlinux 0x45208c8a register_shrinker +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x454c0c60 fence_array_create +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45897f0f acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x458e7d4b submit_bio_wait +EXPORT_SYMBOL vmlinux 0x459cdc20 alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x45a387f5 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x45a464c8 tso_count_descs +EXPORT_SYMBOL vmlinux 0x45d74a43 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x45db458d dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x45f5e08c complete_request_key +EXPORT_SYMBOL vmlinux 0x4604a43a mem_section +EXPORT_SYMBOL vmlinux 0x461982b9 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count +EXPORT_SYMBOL vmlinux 0x46296920 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x4657ebaa fence_context_alloc +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x4664709b xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x468351e5 param_get_invbool +EXPORT_SYMBOL vmlinux 0x46aba585 kernel_read +EXPORT_SYMBOL vmlinux 0x46bf253b xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x46c45b3d dev_mc_sync +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46c4fb20 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x46ef934d mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x46f6678c nf_log_unset +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x47009b9a kernel_connect +EXPORT_SYMBOL vmlinux 0x47047b47 seq_pad +EXPORT_SYMBOL vmlinux 0x4704f9e0 console_stop +EXPORT_SYMBOL vmlinux 0x471d676d sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x47265e7d blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x47309ee1 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x4730a5ff __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x4734c9ca md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x47471291 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x475a3a73 vme_slot_num +EXPORT_SYMBOL vmlinux 0x475a473a __breadahead +EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x477e59a3 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x477e6dcb amd_iommu_pc_get_set_reg_val +EXPORT_SYMBOL vmlinux 0x4787e239 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x47887702 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x478d10b2 ht_destroy_irq +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x4796d16c pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47a379e5 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x47dddc29 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x47ede3f3 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x47f3e55e skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x48142cf0 param_array_ops +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x482bf4e2 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x482ddec8 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x48442898 serio_interrupt +EXPORT_SYMBOL vmlinux 0x484d1cf8 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x48687ebc pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x4872eadf i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x48787a35 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x48958e64 simple_fill_super +EXPORT_SYMBOL vmlinux 0x489e7906 param_ops_bool +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48bc1351 user_revoke +EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier +EXPORT_SYMBOL vmlinux 0x48e0ab3d skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x48e58485 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x48ebf66a add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x490c2d18 sock_register +EXPORT_SYMBOL vmlinux 0x490f9050 compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0x4911a0ba bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x491d7f75 netif_napi_add +EXPORT_SYMBOL vmlinux 0x49437114 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x4956f785 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x4965cc95 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x49a98f98 ns_capable +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49d1f487 vga_get +EXPORT_SYMBOL vmlinux 0x49d69cf6 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x49f66dac pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x49f9ba70 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x4a0bc868 register_qdisc +EXPORT_SYMBOL vmlinux 0x4a203216 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x4a207f1a inode_permission +EXPORT_SYMBOL vmlinux 0x4a26f2e6 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x4a38b698 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x4a3f2636 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x4a531b92 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x4a6102eb twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x4a83c474 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x4a8bbb48 generic_make_request +EXPORT_SYMBOL vmlinux 0x4a8dbf48 kill_block_super +EXPORT_SYMBOL vmlinux 0x4a9cf902 __napi_schedule +EXPORT_SYMBOL vmlinux 0x4aa63d02 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x4abc1a46 fence_remove_callback +EXPORT_SYMBOL vmlinux 0x4ac7d5e2 acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x4ae36231 dev_notice +EXPORT_SYMBOL vmlinux 0x4ae67592 file_remove_privs +EXPORT_SYMBOL vmlinux 0x4afa804b seq_path +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b0a1aa5 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x4b10f838 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x4b2a3056 proc_mkdir +EXPORT_SYMBOL vmlinux 0x4b494d02 cdev_alloc +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b667176 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x4b85fdac nvm_put_blk +EXPORT_SYMBOL vmlinux 0x4b9dfb04 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x4bae7770 fsync_bdev +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bbcebbc agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x4bc52463 simple_release_fs +EXPORT_SYMBOL vmlinux 0x4bcb16b2 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x4be48b3a __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x4bf06867 dquot_drop +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c1d2509 vme_master_request +EXPORT_SYMBOL vmlinux 0x4c499141 __neigh_create +EXPORT_SYMBOL vmlinux 0x4c550530 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x4c7d7074 __module_get +EXPORT_SYMBOL vmlinux 0x4c878322 iosf_mbi_modify +EXPORT_SYMBOL vmlinux 0x4c9999b8 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base +EXPORT_SYMBOL vmlinux 0x4c9e210b i2c_use_client +EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf +EXPORT_SYMBOL vmlinux 0x4cc9b51b vme_master_mmap +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4cf8a124 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x4cfd1145 pagevec_lookup +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d44e10f sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x4d806367 mmc_can_reset +EXPORT_SYMBOL vmlinux 0x4d83f6fb framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x4d865018 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x4d87d4f3 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d97a3db jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4dafc52b simple_unlink +EXPORT_SYMBOL vmlinux 0x4db48ce3 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x4dbc6bff twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x4dd1cd68 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4decc2ae nf_log_set +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4e01d6a4 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x4e16e392 blk_rq_init +EXPORT_SYMBOL vmlinux 0x4e1855b6 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x4e2fedb2 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e487e3d i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x4e560f7b kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e72b9ac pci_enable_msix +EXPORT_SYMBOL vmlinux 0x4e8294d0 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x4e86d793 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x4e94abcc __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x4e9ae82f mdio_driver_register +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4eaae7e2 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4ed323ea tcf_hashinfo_destroy +EXPORT_SYMBOL vmlinux 0x4ef1be94 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x4efa987f blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f20d052 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f3905be agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f6b400b _copy_from_user +EXPORT_SYMBOL vmlinux 0x4f6eb397 __sb_end_write +EXPORT_SYMBOL vmlinux 0x4f73b477 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read +EXPORT_SYMBOL vmlinux 0x4f7a4827 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x4f8b5ddb _copy_to_user +EXPORT_SYMBOL vmlinux 0x4f8c9439 blk_start_queue +EXPORT_SYMBOL vmlinux 0x4f96d404 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x4f9c2e94 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x4f9e9545 fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x4fb79442 unregister_nls +EXPORT_SYMBOL vmlinux 0x4fbae6a6 uuid_le_to_bin +EXPORT_SYMBOL vmlinux 0x4fcc68ea devm_gpiod_put +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4ff32221 sg_miter_next +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5011d432 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x5011f716 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x5019d8fd nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x501f95eb devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x50265a34 nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x504e91f5 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x50529870 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x506e8394 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x5073f77d jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x507812dc dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x5092343a security_path_rename +EXPORT_SYMBOL vmlinux 0x509b26e0 cdrom_open +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch +EXPORT_SYMBOL vmlinux 0x50a99d0b __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x50af9d08 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x50c03095 mmc_put_card +EXPORT_SYMBOL vmlinux 0x50c2fd39 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del +EXPORT_SYMBOL vmlinux 0x50e666ef fscrypt_free_filename +EXPORT_SYMBOL vmlinux 0x50ed28bf request_firmware +EXPORT_SYMBOL vmlinux 0x5105f73f xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x510ff773 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x511aaea1 xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x513c73ef inet_gso_segment +EXPORT_SYMBOL vmlinux 0x514a3968 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x51537670 netdev_warn +EXPORT_SYMBOL vmlinux 0x516024b4 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x51665ac6 keyring_clear +EXPORT_SYMBOL vmlinux 0x517046c6 sk_net_capable +EXPORT_SYMBOL vmlinux 0x5170cf97 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x51719973 dq_data_lock +EXPORT_SYMBOL vmlinux 0x518dfc95 km_policy_notify +EXPORT_SYMBOL vmlinux 0x519834cc no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x51aca632 amd_iommu_domain_enable_v2 +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51deb5de mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x51ef80b3 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x51fa8701 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data +EXPORT_SYMBOL vmlinux 0x52130046 acpi_check_address_range +EXPORT_SYMBOL vmlinux 0x5218cfe5 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x52344984 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0x5238b174 simple_rename +EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0x525e8491 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x528af969 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x528ed4d5 fb_set_var +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x529a8f3e param_ops_string +EXPORT_SYMBOL vmlinux 0x52b2c4fe dquot_destroy +EXPORT_SYMBOL vmlinux 0x52ced7fc __blk_end_request +EXPORT_SYMBOL vmlinux 0x52e40d4e seq_printf +EXPORT_SYMBOL vmlinux 0x52f1fced qdisc_list_add +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x53232a0e input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x535f8d66 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x5370903c mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x539e0527 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x53bb0e7e pnp_device_attach +EXPORT_SYMBOL vmlinux 0x53bf2c37 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x53d44047 tcp_prot +EXPORT_SYMBOL vmlinux 0x53eee614 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x53f21ffa nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x54059a2a amd_iommu_pc_get_max_counters +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x5428b76f skb_insert +EXPORT_SYMBOL vmlinux 0x542a43a2 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x543a246e finish_open +EXPORT_SYMBOL vmlinux 0x543a303f md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register +EXPORT_SYMBOL vmlinux 0x545ecc2f ata_dev_printk +EXPORT_SYMBOL vmlinux 0x54601643 ps2_end_command +EXPORT_SYMBOL vmlinux 0x5464d3f6 acpi_remove_sci_handler +EXPORT_SYMBOL vmlinux 0x5471a6e4 seq_putc +EXPORT_SYMBOL vmlinux 0x54873f26 __nla_reserve +EXPORT_SYMBOL vmlinux 0x54919a44 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x549fb788 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54b3ad00 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x54bb798d devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54c6379a kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0x54ca642c tcp_prequeue +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54ec5685 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x55074e03 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x551aab89 i2c_transfer +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x55318eee read_cache_pages +EXPORT_SYMBOL vmlinux 0x553c109c security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x555131aa blk_recount_segments +EXPORT_SYMBOL vmlinux 0x555dd399 mpage_writepages +EXPORT_SYMBOL vmlinux 0x555f6938 lockref_get +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x5574cc21 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x55859c87 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x5587e5a8 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x55b660e2 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55e10c12 fscrypt_get_ctx +EXPORT_SYMBOL vmlinux 0x55e129b9 prepare_binprm +EXPORT_SYMBOL vmlinux 0x55e60a36 queued_spin_unlock_wait +EXPORT_SYMBOL vmlinux 0x55e615fe skb_vlan_push +EXPORT_SYMBOL vmlinux 0x55ede541 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node +EXPORT_SYMBOL vmlinux 0x55f582bc mmc_can_trim +EXPORT_SYMBOL vmlinux 0x560de9f3 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x5611abfa page_symlink +EXPORT_SYMBOL vmlinux 0x5617d8af soft_cursor +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x5641419b wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x5658942b dmam_pool_create +EXPORT_SYMBOL vmlinux 0x56707f70 acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x5675ec8d genphy_read_status +EXPORT_SYMBOL vmlinux 0x567d5ab5 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x5688ae25 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x568c553f vlan_vid_add +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x56a01021 input_grab_device +EXPORT_SYMBOL vmlinux 0x56a53e90 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x56a670a2 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56ef1a2c nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57570057 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x5766eac2 phy_attached_info +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x578ed73f pci_biosrom_size +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57a741c5 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x57c0d84b update_region +EXPORT_SYMBOL vmlinux 0x57c1667a __getblk_slow +EXPORT_SYMBOL vmlinux 0x57cd740d pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x57d95d03 vfs_write +EXPORT_SYMBOL vmlinux 0x57d9e818 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x57dc3c98 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x57ddbba4 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x57e099e1 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x58114055 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x58185cde __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x581f9aae uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x583d1cc2 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x583ed949 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x583f7775 kernel_bind +EXPORT_SYMBOL vmlinux 0x584207e8 proc_set_user +EXPORT_SYMBOL vmlinux 0x584738f9 rdmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x584bb634 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem +EXPORT_SYMBOL vmlinux 0x586103be acpi_setup_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x58771b4c qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x5883878f fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x58a33082 fscrypt_pullback_bio_page +EXPORT_SYMBOL vmlinux 0x58ac3434 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58bb1b50 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x58d9494c invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58e469ec napi_disable +EXPORT_SYMBOL vmlinux 0x58eb6e14 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x58f4e54c clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x59054ae5 __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x59145fd0 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x5944d015 __cachemode2pte_tbl +EXPORT_SYMBOL vmlinux 0x594a1d27 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x5956664e vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x596f3462 nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x599f3884 seq_vprintf +EXPORT_SYMBOL vmlinux 0x59a4c9ab unlock_rename +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59bc9609 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0x59ce00e7 pci_select_bars +EXPORT_SYMBOL vmlinux 0x59f22ba7 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x59f9ec58 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x59fcedb3 cad_pid +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a1a9840 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x5a1f0b24 migrate_page +EXPORT_SYMBOL vmlinux 0x5a2e65a4 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a5a0353 igrab +EXPORT_SYMBOL vmlinux 0x5a7400e1 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x5a79da8e xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x5a82c44a complete_and_exit +EXPORT_SYMBOL vmlinux 0x5a838870 dev_err +EXPORT_SYMBOL vmlinux 0x5a8469b1 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5aa381ea kset_unregister +EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x5ace1490 build_skb +EXPORT_SYMBOL vmlinux 0x5ad2ea46 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x5ae551b8 genphy_config_init +EXPORT_SYMBOL vmlinux 0x5af31032 misc_register +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b09fae0 pci_restore_state +EXPORT_SYMBOL vmlinux 0x5b0efd21 blk_stop_queue +EXPORT_SYMBOL vmlinux 0x5b27706b simple_dir_operations +EXPORT_SYMBOL vmlinux 0x5b3b15cc get_unmapped_area +EXPORT_SYMBOL vmlinux 0x5b53ac3e netdev_info +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b70e97a xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x5b763e6f arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0x5b7f5f06 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x5b9c808a acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0x5bb01c01 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x5bb40a47 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit +EXPORT_SYMBOL vmlinux 0x5bd63204 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x5bdeb82f cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x5bea6de4 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x5c044626 brioctl_set +EXPORT_SYMBOL vmlinux 0x5c0d87cb pci_read_vpd +EXPORT_SYMBOL vmlinux 0x5c1e56ae put_disk +EXPORT_SYMBOL vmlinux 0x5c2b956f simple_transaction_release +EXPORT_SYMBOL vmlinux 0x5c380d26 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x5c3f2007 get_acl +EXPORT_SYMBOL vmlinux 0x5c4344d1 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x5c4674d1 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x5c67f680 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x5c6973a5 mpage_readpage +EXPORT_SYMBOL vmlinux 0x5c6d1201 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x5c75cd7c lock_sock_nested +EXPORT_SYMBOL vmlinux 0x5c7ccdda dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x5c942219 scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x5c9847be __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x5ca73144 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x5cba9b5a blk_run_queue +EXPORT_SYMBOL vmlinux 0x5cde37e4 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cf736c3 request_key +EXPORT_SYMBOL vmlinux 0x5d005dda key_invalidate +EXPORT_SYMBOL vmlinux 0x5d0161ec proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x5d01c4e7 __break_lease +EXPORT_SYMBOL vmlinux 0x5d20afc3 _dev_info +EXPORT_SYMBOL vmlinux 0x5d216e27 stop_tty +EXPORT_SYMBOL vmlinux 0x5d4a8320 kvasprintf +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d5d1dcd phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x5d7251dc tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved +EXPORT_SYMBOL vmlinux 0x5d77fb02 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x5d8475e0 completion_done +EXPORT_SYMBOL vmlinux 0x5d976ec1 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x5db7d0de inode_change_ok +EXPORT_SYMBOL vmlinux 0x5dd3c838 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x5ddb4c64 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x5e10c482 kobject_get +EXPORT_SYMBOL vmlinux 0x5e12ba0f posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x5e23ae13 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x5e2ba0fb sock_create +EXPORT_SYMBOL vmlinux 0x5e3ec892 pci_set_vpd_size +EXPORT_SYMBOL vmlinux 0x5e4164b0 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x5e5a62ef get_agp_version +EXPORT_SYMBOL vmlinux 0x5e6f7429 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x5e77565b tcf_exts_change +EXPORT_SYMBOL vmlinux 0x5e77d398 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e9802ba iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x5ea0d5e6 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ec76d59 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x5ecfeec6 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed2f0ca buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x5eddb14c radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x5ee74d19 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x5eee9fdb scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x5ef815b4 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f075ea0 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0a009d netdev_crit +EXPORT_SYMBOL vmlinux 0x5f0bbb91 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x5f1caddb ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x5f222e94 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x5f22b02c of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x5f307eeb fb_is_primary_device +EXPORT_SYMBOL vmlinux 0x5f366506 agp_bridge +EXPORT_SYMBOL vmlinux 0x5f423e41 seq_file_path +EXPORT_SYMBOL vmlinux 0x5f437430 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x5f557113 nf_register_hooks +EXPORT_SYMBOL vmlinux 0x5f5fb85f lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x5f7606b0 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x5f787b5d reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x5f99895d netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x5fb2e8ef idr_init +EXPORT_SYMBOL vmlinux 0x5fd16801 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fecbaea dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x5fee480f blk_init_queue +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x6012c721 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x601398d8 __scm_send +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60237865 cpumask_any_but +EXPORT_SYMBOL vmlinux 0x602a60dc inetdev_by_index +EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x604316d8 acpi_finish_gpe +EXPORT_SYMBOL vmlinux 0x60482bee neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x604fb9a4 tcp_connect +EXPORT_SYMBOL vmlinux 0x60560f3b fence_signal +EXPORT_SYMBOL vmlinux 0x605fbb04 scmd_printk +EXPORT_SYMBOL vmlinux 0x6067e305 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x606c0916 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x6096a870 make_kgid +EXPORT_SYMBOL vmlinux 0x6096fd9a inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x609f5b35 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60addcb9 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x61096d4e cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x610aaa40 mempool_destroy +EXPORT_SYMBOL vmlinux 0x6111d8af tso_build_data +EXPORT_SYMBOL vmlinux 0x6111da19 free_user_ns +EXPORT_SYMBOL vmlinux 0x611ff2d6 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x61205df1 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x6122feac mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x612bbf24 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x612f5ecd blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x614b4b30 bdi_init +EXPORT_SYMBOL vmlinux 0x61520529 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x6174b2c0 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x61847242 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x61876ce8 fget +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61a37c7d ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61cd3412 module_refcount +EXPORT_SYMBOL vmlinux 0x61d6325e cdrom_check_events +EXPORT_SYMBOL vmlinux 0x61fb248a node_states +EXPORT_SYMBOL vmlinux 0x62012e8d xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x62049256 acpi_disable +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x62190951 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x6223baf3 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x622ffbc0 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x6237f6b5 acpi_enable_event +EXPORT_SYMBOL vmlinux 0x623b9499 scsi_register +EXPORT_SYMBOL vmlinux 0x6240412d dev_add_offload +EXPORT_SYMBOL vmlinux 0x624f2c1e blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x6263ca6f netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62748e70 acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x62776b58 task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0x627cfea6 dev_uc_del +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62842165 inet_add_offload +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x629a87dd max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x62a65cda loop_register_transfer +EXPORT_SYMBOL vmlinux 0x62b008eb gnttab_alloc_pages +EXPORT_SYMBOL vmlinux 0x62bee405 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x62c96871 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x62f77d97 pci_dev_get +EXPORT_SYMBOL vmlinux 0x62ff3582 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631a65a0 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x63412f11 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x6355e495 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x6364f1cf __brelse +EXPORT_SYMBOL vmlinux 0x636a5691 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0x638086a9 devm_memremap +EXPORT_SYMBOL vmlinux 0x6388591c down_timeout +EXPORT_SYMBOL vmlinux 0x639d8ffd input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x63a01291 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x63a362c0 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63ac8bd2 fb_class +EXPORT_SYMBOL vmlinux 0x63c3898e __frontswap_load +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63ce9fe3 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x63cf3a5b __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x63d92dc1 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63ed5115 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64124bbe compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6426e38d vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x6426ecbf dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x642bef16 alloc_disk_node +EXPORT_SYMBOL vmlinux 0x6431624d __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x643222d4 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x64366cea neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0x64517b60 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x6480e9e9 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64aa5065 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x64ab0e98 wait_for_completion +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64bccc17 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x64bebbef mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x64c101c6 scsi_host_get +EXPORT_SYMBOL vmlinux 0x64d24475 phy_start +EXPORT_SYMBOL vmlinux 0x64eae7ad set_memory_array_wb +EXPORT_SYMBOL vmlinux 0x64ec2ec0 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x65090777 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x650d257f xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x65196544 kobject_init +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x651ee343 compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x6524c57d __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x6527dacf blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x6537741f pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x654d1c59 file_path +EXPORT_SYMBOL vmlinux 0x655f1ab0 set_memory_array_wc +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x65763ec5 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x65b29a73 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x65b81ab0 skb_put +EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry +EXPORT_SYMBOL vmlinux 0x65bc0463 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x661c48b4 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x66270677 drop_super +EXPORT_SYMBOL vmlinux 0x6631b6bd __put_cred +EXPORT_SYMBOL vmlinux 0x66366558 clkdev_add +EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0x6650781b jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x66511f0c bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x665d8b5e dquot_enable +EXPORT_SYMBOL vmlinux 0x665ee856 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x666611bf tty_port_put +EXPORT_SYMBOL vmlinux 0x666a1ea2 dev_close +EXPORT_SYMBOL vmlinux 0x66778ccd ping_prot +EXPORT_SYMBOL vmlinux 0x667cecc9 acpi_os_printf +EXPORT_SYMBOL vmlinux 0x669e87cf skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x66b13f0b uart_get_divisor +EXPORT_SYMBOL vmlinux 0x66bc163f ip_getsockopt +EXPORT_SYMBOL vmlinux 0x66beaf12 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x66d3fbfc icmpv6_send +EXPORT_SYMBOL vmlinux 0x66d804b1 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x66db1e0b ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x66ef94b4 proto_unregister +EXPORT_SYMBOL vmlinux 0x66fd7e83 compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0x67068b38 input_flush_device +EXPORT_SYMBOL vmlinux 0x67111cfb submit_bio +EXPORT_SYMBOL vmlinux 0x671459be netif_rx_ni +EXPORT_SYMBOL vmlinux 0x671b3bac locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x6732343b dump_align +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x67476f90 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x674b9e25 generic_update_time +EXPORT_SYMBOL vmlinux 0x677e44b9 component_match_add_release +EXPORT_SYMBOL vmlinux 0x678df1b2 __skb_csum_offload_chk +EXPORT_SYMBOL vmlinux 0x67902eb3 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67bdc73d gnttab_free_pages +EXPORT_SYMBOL vmlinux 0x67e2ac9e mutex_unlock +EXPORT_SYMBOL vmlinux 0x67efe014 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680ec266 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x68105ce2 nla_append +EXPORT_SYMBOL vmlinux 0x6817d463 x86_cpu_to_acpiid +EXPORT_SYMBOL vmlinux 0x6871d1f3 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x687a5a87 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68a763d8 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x68b94268 sg_miter_start +EXPORT_SYMBOL vmlinux 0x68c74278 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x68e7ab4b vga_switcheroo_lock_ddc +EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x691fc3b4 skb_queue_head +EXPORT_SYMBOL vmlinux 0x6920ff27 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x6923e82e pipe_lock +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6983b705 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x698bbb0f devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69d4363a amd_iommu_device_info +EXPORT_SYMBOL vmlinux 0x69e84eb2 import_single_range +EXPORT_SYMBOL vmlinux 0x69eddd29 mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0x69f11e70 nonseekable_open +EXPORT_SYMBOL vmlinux 0x69fbc0a2 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a09fc2c posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x6a1331c9 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x6a1bbfa3 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x6a48528c unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x6a5697eb agp_generic_enable +EXPORT_SYMBOL vmlinux 0x6a56b8be dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a889755 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x6a972457 __vfs_read +EXPORT_SYMBOL vmlinux 0x6aa283e7 md_update_sb +EXPORT_SYMBOL vmlinux 0x6aacda53 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x6abe2bfb __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x6ac28a83 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6ad85887 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2397a9 sk_dst_check +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b5b0d42 pnp_is_active +EXPORT_SYMBOL vmlinux 0x6b615479 amd_iommu_enable_device_erratum +EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6b74b9be bit_waitqueue +EXPORT_SYMBOL vmlinux 0x6b7c9f27 proc_remove +EXPORT_SYMBOL vmlinux 0x6b8c6b2f eth_validate_addr +EXPORT_SYMBOL vmlinux 0x6b980e1c posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x6b9cd802 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x6ba10717 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x6bbb597b input_unregister_handle +EXPORT_SYMBOL vmlinux 0x6bbf8b32 dump_trace +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bccaaa6 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x6bcf066d _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x6bd21f86 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x6bd5e006 inet_put_port +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6becf732 rio_query_mport +EXPORT_SYMBOL vmlinux 0x6bf1c17f pv_lock_ops +EXPORT_SYMBOL vmlinux 0x6c44bc15 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x6c57ea89 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c6b4896 kern_unmount +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c7783bf neigh_table_clear +EXPORT_SYMBOL vmlinux 0x6c7b91af unregister_console +EXPORT_SYMBOL vmlinux 0x6c7d7050 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x6ca2bbe2 sget +EXPORT_SYMBOL vmlinux 0x6ca5853c mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x6cc42aee proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x6cdda42b blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x6cde5852 path_get +EXPORT_SYMBOL vmlinux 0x6d017952 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d1d5d9b iosf_mbi_write +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 0x6d59e333 netif_rx +EXPORT_SYMBOL vmlinux 0x6d836e95 poll_freewait +EXPORT_SYMBOL vmlinux 0x6d88f2dd tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x6d89056b blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x6d8a540d nvm_register +EXPORT_SYMBOL vmlinux 0x6db0db0d vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0x6dc0c605 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x6dc0c9dc down_interruptible +EXPORT_SYMBOL vmlinux 0x6dc6dd56 down +EXPORT_SYMBOL vmlinux 0x6dd681fc free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e1a9dc0 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x6e1c8fda ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x6e1e9565 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x6e1ef3a7 fscrypt_inherit_context +EXPORT_SYMBOL vmlinux 0x6e2dc733 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x6e6f50cf pci_assign_resource +EXPORT_SYMBOL vmlinux 0x6e7032dc xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x6e806fba address_space_init_once +EXPORT_SYMBOL vmlinux 0x6e8539be security_inode_init_security +EXPORT_SYMBOL vmlinux 0x6e915f0f phy_device_register +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea47ccd dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x6ea911e0 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x6eca4d4f mod_timer_pending +EXPORT_SYMBOL vmlinux 0x6ed3be9c truncate_pagecache +EXPORT_SYMBOL vmlinux 0x6ef66e8a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x6efb727f acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x6f05d65f kobject_put +EXPORT_SYMBOL vmlinux 0x6f126d0d n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0x6f1bf786 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x6f2e4f46 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x6f2f5d8f mfd_add_devices +EXPORT_SYMBOL vmlinux 0x6f2f6dd5 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x6f301a50 __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x6f39e04c filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x6f48cde0 d_exact_alias +EXPORT_SYMBOL vmlinux 0x6f556bdb acpi_get_gpe_device +EXPORT_SYMBOL vmlinux 0x6f7ad867 module_layout +EXPORT_SYMBOL vmlinux 0x6f865c08 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f8d0249 padata_free +EXPORT_SYMBOL vmlinux 0x6f9da8e8 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x6fb61d6b dump_skip +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fc1c8ab udp_gro_complete +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write +EXPORT_SYMBOL vmlinux 0x6ff4f026 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x6ffd0da4 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x7019e5ac mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x7023689b kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x7029f11b iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0x703396ee mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x703b4b74 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x704998d0 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x7050e352 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x70575188 cont_write_begin +EXPORT_SYMBOL vmlinux 0x7062ef30 devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x706cfe82 phy_init_eee +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x70821ecd dev_get_by_name +EXPORT_SYMBOL vmlinux 0x708a79f7 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x708ddd30 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0x7093b0d1 fscrypt_decrypt_bio_pages +EXPORT_SYMBOL vmlinux 0x70a25f45 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x70a5e6d9 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x70a9ba4e __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x70c7ff07 neigh_table_init +EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0x70e078f0 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x70e7d12b dm_kobject_release +EXPORT_SYMBOL vmlinux 0x70eba314 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x712609fc phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x714a9075 netlink_ack +EXPORT_SYMBOL vmlinux 0x71692958 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x717824b7 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x71828a66 proc_dostring +EXPORT_SYMBOL vmlinux 0x719ed96c get_task_exe_file +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71bed83f get_phy_device +EXPORT_SYMBOL vmlinux 0x71c36221 free_task +EXPORT_SYMBOL vmlinux 0x71c3e1e6 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x71d19671 bdi_register_dev +EXPORT_SYMBOL vmlinux 0x721eb3bd sock_kmalloc +EXPORT_SYMBOL vmlinux 0x72220176 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x72431652 __alloc_skb +EXPORT_SYMBOL vmlinux 0x72577e6b get_monotonic_coarse64 +EXPORT_SYMBOL vmlinux 0x7260e249 ___preempt_schedule_notrace +EXPORT_SYMBOL vmlinux 0x726dafff param_set_ushort +EXPORT_SYMBOL vmlinux 0x7277ec6f nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x72810d47 vga_switcheroo_unlock_ddc +EXPORT_SYMBOL vmlinux 0x729170d5 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x72a7991c tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x72a7a8e4 set_security_override +EXPORT_SYMBOL vmlinux 0x72a8b240 init_buffer +EXPORT_SYMBOL vmlinux 0x72a98fdb copy_user_generic_unrolled +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72e0e89c sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x72e46930 input_inject_event +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72ece5e6 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x73035d4e blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x730da22f udp_set_csum +EXPORT_SYMBOL vmlinux 0x730db441 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x7313b345 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x737e7505 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x738714db ida_pre_get +EXPORT_SYMBOL vmlinux 0x73c84560 ex_handler_ext +EXPORT_SYMBOL vmlinux 0x73d3d216 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x73f604bd pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x73f85c13 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7439c929 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x7442c7cd vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0x745f20a3 idr_is_empty +EXPORT_SYMBOL vmlinux 0x746241e2 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c29630 skb_tx_error +EXPORT_SYMBOL vmlinux 0x74dd92f2 seq_dentry +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74eb5975 netdev_err +EXPORT_SYMBOL vmlinux 0x75034331 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x750cccae pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x7534e0e6 request_key_async +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x753ebd68 I_BDEV +EXPORT_SYMBOL vmlinux 0x754d539c strlen +EXPORT_SYMBOL vmlinux 0x755b1bcd __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x755fbef4 padata_start +EXPORT_SYMBOL vmlinux 0x7567a3f4 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x7568eba8 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x756b2441 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x7579a83e __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x757d6d5b to_nd_pfn +EXPORT_SYMBOL vmlinux 0x75811312 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7585100f xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x75afb46a pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x75bbb0ec in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x75bc549a x86_cpu_to_apicid +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75bfd361 scsi_execute +EXPORT_SYMBOL vmlinux 0x75d057dc devm_ioport_map +EXPORT_SYMBOL vmlinux 0x75d95475 compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7625cdf0 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x76264cdf gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x765e893a tty_port_close +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x767ac145 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x767dd8fd acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x768b9c23 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x76a1e3d9 simple_statfs +EXPORT_SYMBOL vmlinux 0x76af0198 put_tty_driver +EXPORT_SYMBOL vmlinux 0x76c79283 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier +EXPORT_SYMBOL vmlinux 0x76fcb5aa inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x774b1548 bio_init +EXPORT_SYMBOL vmlinux 0x77600ad8 inet_del_offload +EXPORT_SYMBOL vmlinux 0x77616da6 arp_send +EXPORT_SYMBOL vmlinux 0x7771a817 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x77971b44 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77a29c9e copy_to_iter +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77d20600 dev_change_xdp_fd +EXPORT_SYMBOL vmlinux 0x77d46b71 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x77ece502 param_set_charp +EXPORT_SYMBOL vmlinux 0x77f53abc acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x77f55f46 param_get_short +EXPORT_SYMBOL vmlinux 0x78053d75 eth_type_trans +EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt +EXPORT_SYMBOL vmlinux 0x78346089 pcim_iomap +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x78465fc2 posix_acl_init +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x784f33b0 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x784fa736 netdev_state_change +EXPORT_SYMBOL vmlinux 0x7855fd26 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x7861b8cd __dst_free +EXPORT_SYMBOL vmlinux 0x78764f4e pv_irq_ops +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x78875fea pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x789c3669 first_ec +EXPORT_SYMBOL vmlinux 0x78a09132 blk_start_request +EXPORT_SYMBOL vmlinux 0x78b4afa6 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x78b96ba3 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x78d694fd kthread_stop +EXPORT_SYMBOL vmlinux 0x78d82f17 abort_creds +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78df8d70 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x78e739aa up +EXPORT_SYMBOL vmlinux 0x78f90353 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x78f93b69 elv_rb_find +EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method +EXPORT_SYMBOL vmlinux 0x790d662f always_delete_dentry +EXPORT_SYMBOL vmlinux 0x791ed1c9 rename_lock +EXPORT_SYMBOL vmlinux 0x792e2d07 bio_add_page +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x79738b05 dev_uc_init +EXPORT_SYMBOL vmlinux 0x7975b8aa __bread_gfp +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x7998b22c wait_iff_congested +EXPORT_SYMBOL vmlinux 0x799bcbc6 elv_rb_add +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79a8b194 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79eb2591 nvm_end_io +EXPORT_SYMBOL vmlinux 0x79f756eb vlan_vid_del +EXPORT_SYMBOL vmlinux 0x79fc3597 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x7a0e2faa clkdev_drop +EXPORT_SYMBOL vmlinux 0x7a1f406c tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a620024 rwsem_down_write_failed_killable +EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a764ebf scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x7a7e562c iov_iter_init +EXPORT_SYMBOL vmlinux 0x7a82cb47 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7a8ccec4 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x7a947353 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa48850 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x7aa8bde7 commit_creds +EXPORT_SYMBOL vmlinux 0x7ab73ffe mount_pseudo +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ac65e5f blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x7acc6abf inet_shutdown +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ade08a8 is_bad_inode +EXPORT_SYMBOL vmlinux 0x7aea2e8c ip6_xmit +EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user +EXPORT_SYMBOL vmlinux 0x7afcc9df scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b237f38 scsi_init_io +EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc +EXPORT_SYMBOL vmlinux 0x7b32a567 __quota_error +EXPORT_SYMBOL vmlinux 0x7b48b9e9 amd_iommu_domain_clear_gcr3 +EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7b545003 elevator_alloc +EXPORT_SYMBOL vmlinux 0x7b6a3fee inet_select_addr +EXPORT_SYMBOL vmlinux 0x7b8cca17 fasync_helper +EXPORT_SYMBOL vmlinux 0x7bd56bad mmc_request_done +EXPORT_SYMBOL vmlinux 0x7be76990 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x7bfee6fa mmc_start_req +EXPORT_SYMBOL vmlinux 0x7c095e2b dm_unregister_target +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c268337 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x7c2852d2 tcf_hash_check +EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c48198c peernet2id_alloc +EXPORT_SYMBOL vmlinux 0x7c76983a napi_complete_done +EXPORT_SYMBOL vmlinux 0x7c783daf truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x7c95abc2 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7ca40cb8 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x7ca6ccd2 audit_log_task_info +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb4ba2e elevator_exit +EXPORT_SYMBOL vmlinux 0x7cc25a9b __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x7cc29969 nvm_submit_ppa_list +EXPORT_SYMBOL vmlinux 0x7cd8d75e page_offset_base +EXPORT_SYMBOL vmlinux 0x7cd9d7c1 __devm_release_region +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce83365 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0x7cea74e6 phy_disconnect +EXPORT_SYMBOL vmlinux 0x7cf0f131 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf694bc input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d287136 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x7d2af85e fb_find_mode +EXPORT_SYMBOL vmlinux 0x7d5e1c9c agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d77893b ilookup5 +EXPORT_SYMBOL vmlinux 0x7d7bcec9 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x7d7ee588 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x7d889bf8 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port +EXPORT_SYMBOL vmlinux 0x7d964d0e i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x7d96cea3 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x7dbc2e57 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0x7dcce31a i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x7dd14ffd mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x7de89c67 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x7de9a901 account_page_dirtied +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7dfae71b __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x7e19273a lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x7e1966c0 fence_signal_locked +EXPORT_SYMBOL vmlinux 0x7e2c3638 simple_rmdir +EXPORT_SYMBOL vmlinux 0x7e2e2188 ppp_input_error +EXPORT_SYMBOL vmlinux 0x7e35eecc km_state_expired +EXPORT_SYMBOL vmlinux 0x7e4367ac tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x7e4707b7 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x7e4f1613 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x7e7fc3fb __wake_up_bit +EXPORT_SYMBOL vmlinux 0x7e824329 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x7e9b2eb4 blk_init_tags +EXPORT_SYMBOL vmlinux 0x7eaca1e1 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x7eb3687f xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x7eb5cb2e blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x7ebd4be4 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f132c34 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x7f23e2cc replace_mount_options +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7f324f4d try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7f355a07 sock_no_bind +EXPORT_SYMBOL vmlinux 0x7f4e2ebb blk_queue_split +EXPORT_SYMBOL vmlinux 0x7f578733 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f6d2d7f xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x7f6ea900 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x7f76aac0 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f8eff46 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x7faa6a45 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x7fb41336 md_integrity_register +EXPORT_SYMBOL vmlinux 0x7fd61802 touch_atime +EXPORT_SYMBOL vmlinux 0x7fe2e32e scsi_scan_target +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe38f48 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x7fe4296d blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x7fe72b57 noop_fsync +EXPORT_SYMBOL vmlinux 0x80068c7e mntput +EXPORT_SYMBOL vmlinux 0x800fb92b full_name_hash +EXPORT_SYMBOL vmlinux 0x802c6660 simple_dname +EXPORT_SYMBOL vmlinux 0x803391ad amd_northbridges +EXPORT_SYMBOL vmlinux 0x8050c60a set_cached_acl +EXPORT_SYMBOL vmlinux 0x8061d9e9 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x809388ca idr_destroy +EXPORT_SYMBOL vmlinux 0x80b63595 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x80be1c87 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x80bf7981 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d9b116 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x810519fd hashlen_string +EXPORT_SYMBOL vmlinux 0x81096274 fscrypt_decrypt_page +EXPORT_SYMBOL vmlinux 0x81144f9d idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x812d20c7 dev_load +EXPORT_SYMBOL vmlinux 0x81346dc6 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x8140ace7 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table +EXPORT_SYMBOL vmlinux 0x8149b565 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x814b4b7c posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x816ab266 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x817e3c1d gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x81805ab8 simple_link +EXPORT_SYMBOL vmlinux 0x8195f521 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x81a9651a blk_fetch_request +EXPORT_SYMBOL vmlinux 0x81aac050 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x81ad27aa thaw_super +EXPORT_SYMBOL vmlinux 0x81b371bb amd_iommu_flush_tlb +EXPORT_SYMBOL vmlinux 0x81b93ca5 dget_parent +EXPORT_SYMBOL vmlinux 0x81bd6c04 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x81c2adc7 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e2ae4f devfreq_add_device +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81eb0452 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x81f5d2c3 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x81fe81a4 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0x821effbe xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x822a0408 sk_stream_error +EXPORT_SYMBOL vmlinux 0x822c65fc ps2_drain +EXPORT_SYMBOL vmlinux 0x825a3ab4 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x82891f55 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x82c87f0f xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x82eb8040 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x82f981fc scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x82fd229b from_kgid +EXPORT_SYMBOL vmlinux 0x830e547b ioremap_prot +EXPORT_SYMBOL vmlinux 0x83343bda rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x8334966e clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x833c03aa acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x834916fa km_report +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x835e81ca gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x8368e03d bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x8372f407 nd_device_register +EXPORT_SYMBOL vmlinux 0x8384647a acpi_map_pxm_to_online_node +EXPORT_SYMBOL vmlinux 0x83848095 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x838c6602 load_nls +EXPORT_SYMBOL vmlinux 0x83921833 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83c57eb9 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x83cd8802 posix_lock_file +EXPORT_SYMBOL vmlinux 0x83df2b5c blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x83fcb4ba tcp_shutdown +EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x8417f512 acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0x8451c0e1 __frontswap_test +EXPORT_SYMBOL vmlinux 0x8453559c ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x84630b3d agp_copy_info +EXPORT_SYMBOL vmlinux 0x84641d0a mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x846e7878 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x849c2b88 __free_pages +EXPORT_SYMBOL vmlinux 0x84cda076 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x84d0fbc5 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x84eb4437 rps_needed +EXPORT_SYMBOL vmlinux 0x84f8f882 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x8507c383 proc_dointvec +EXPORT_SYMBOL vmlinux 0x85199c42 mmc_add_host +EXPORT_SYMBOL vmlinux 0x851dcb2c devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x8526c35a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x8530f28c blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x85417985 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x8541c0dc input_allocate_device +EXPORT_SYMBOL vmlinux 0x854d3024 make_kuid +EXPORT_SYMBOL vmlinux 0x8565e851 bdget_disk +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x857474ee xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x857582f7 acpi_enable_all_wakeup_gpes +EXPORT_SYMBOL vmlinux 0x857778f6 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x85825898 add_timer +EXPORT_SYMBOL vmlinux 0x8582d46c inode_init_once +EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x85a6d216 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x85b46dd1 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85caa471 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85fa0a77 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x861e22a4 acpi_map_cpu +EXPORT_SYMBOL vmlinux 0x86371acd ex_handler_rdmsr_unsafe +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x8644d007 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x865d263c tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x8687f5bc irq_to_desc +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x869738c5 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86bb1d9d blk_put_request +EXPORT_SYMBOL vmlinux 0x86e3c573 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x87044a29 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x8706062c nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x871ae978 d_tmpfile +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x87202af3 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x8732272d pci_reenable_device +EXPORT_SYMBOL vmlinux 0x873df742 ht_create_irq +EXPORT_SYMBOL vmlinux 0x8740f197 tcp_check_req +EXPORT_SYMBOL vmlinux 0x87538fd4 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x8753f14b pci_disable_device +EXPORT_SYMBOL vmlinux 0x8761e5f2 init_special_inode +EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write +EXPORT_SYMBOL vmlinux 0x87776657 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x878cd015 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x878d72f7 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x879dde92 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x87a00ec4 __blk_run_queue +EXPORT_SYMBOL vmlinux 0x87a0234d seq_read +EXPORT_SYMBOL vmlinux 0x87aaddf8 wrmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x87acccf6 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x87d1f73e copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x87e23c59 save_mount_options +EXPORT_SYMBOL vmlinux 0x87ef9827 vfs_link +EXPORT_SYMBOL vmlinux 0x8817f0ca md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x883a5530 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x883fc998 tty_vhangup +EXPORT_SYMBOL vmlinux 0x8855363f write_one_page +EXPORT_SYMBOL vmlinux 0x886ad325 read_dev_sector +EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x8884bfd5 devm_clk_put +EXPORT_SYMBOL vmlinux 0x88d19cdf dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x88d3b6db inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88dcca4b account_page_redirty +EXPORT_SYMBOL vmlinux 0x88e12198 flow_cache_fini +EXPORT_SYMBOL vmlinux 0x88ff008a inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x89022381 tty_register_device +EXPORT_SYMBOL vmlinux 0x892972dc __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x892b26a0 set_memory_nx +EXPORT_SYMBOL vmlinux 0x897c473f fput +EXPORT_SYMBOL vmlinux 0x897d0671 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x899c49eb nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x89a30806 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x89ab123a blk_integrity_register +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89c39126 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89e1376c devm_iounmap +EXPORT_SYMBOL vmlinux 0x8a0b12c6 complete_all +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a27bdc7 tty_unlock +EXPORT_SYMBOL vmlinux 0x8a3f5aa1 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0x8a3fe005 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a578d4e __tracepoint_read_msr +EXPORT_SYMBOL vmlinux 0x8a5dde4b unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x8a6944f9 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a80d7a5 acpi_error +EXPORT_SYMBOL vmlinux 0x8a8ce9a6 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8abcba2f param_set_bint +EXPORT_SYMBOL vmlinux 0x8add5823 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0x8ae99469 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0x8aef7dfe tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b37a1b3 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b93361a skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8bc075af gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x8bc8c1ff kernel_write +EXPORT_SYMBOL vmlinux 0x8be93891 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x8bfab386 input_register_handle +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c531f93 dquot_commit +EXPORT_SYMBOL vmlinux 0x8c5c9e00 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c85077b ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x8c906694 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x8c9563b1 block_commit_write +EXPORT_SYMBOL vmlinux 0x8c984548 tty_port_init +EXPORT_SYMBOL vmlinux 0x8c9bc12b param_set_byte +EXPORT_SYMBOL vmlinux 0x8cbd94d6 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8ccbb944 sync_filesystem +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8cddfa29 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x8cfbb69e udp_table +EXPORT_SYMBOL vmlinux 0x8d15114a __release_region +EXPORT_SYMBOL vmlinux 0x8d1f1c57 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x8d5125fd jbd2_journal_inode_add_write +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d728b47 d_move +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d7c1588 da903x_query_status +EXPORT_SYMBOL vmlinux 0x8d7f96b6 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x8d838d91 ida_remove +EXPORT_SYMBOL vmlinux 0x8d8d4360 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x8d98dc2a tcf_hash_create +EXPORT_SYMBOL vmlinux 0x8d98f038 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface +EXPORT_SYMBOL vmlinux 0x8daf8c42 dql_init +EXPORT_SYMBOL vmlinux 0x8db61bea netif_receive_skb +EXPORT_SYMBOL vmlinux 0x8dbf154b tcp_proc_register +EXPORT_SYMBOL vmlinux 0x8dc799dd __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x8de9d27b generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0x8e2d83b6 node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x8e494f77 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x8e6cd4fe lease_get_mtime +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e813b12 posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x8e99ae1b bmap +EXPORT_SYMBOL vmlinux 0x8ead5648 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8eb0d833 dquot_transfer +EXPORT_SYMBOL vmlinux 0x8edfe644 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x8efb1ee3 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x8f0953f8 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f43bf18 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x8f5749ad neigh_xmit +EXPORT_SYMBOL vmlinux 0x8f6879e6 mdiobus_read +EXPORT_SYMBOL vmlinux 0x8f8af192 pci_choose_state +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fa2660a skb_append +EXPORT_SYMBOL vmlinux 0x8fb809ba sk_capable +EXPORT_SYMBOL vmlinux 0x8fbe9fe1 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x8fced150 import_iovec +EXPORT_SYMBOL vmlinux 0x8fcfe064 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x8fd1152e _raw_write_unlock +EXPORT_SYMBOL vmlinux 0x8fdf772a init_timer_key +EXPORT_SYMBOL vmlinux 0x8fe59cef convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0x90032b30 efi +EXPORT_SYMBOL vmlinux 0x9005d544 fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x90182330 param_set_ulong +EXPORT_SYMBOL vmlinux 0x90203112 netlink_unicast +EXPORT_SYMBOL vmlinux 0x90251a73 misc_deregister +EXPORT_SYMBOL vmlinux 0x902ede9a mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x903cc471 del_gendisk +EXPORT_SYMBOL vmlinux 0x90517730 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x90562d39 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x908575fe queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0x90a571b2 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x90c4efc1 tty_check_change +EXPORT_SYMBOL vmlinux 0x90d36a6e unregister_filesystem +EXPORT_SYMBOL vmlinux 0x90f65c72 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x910748bd pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x910f36eb __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x912057a3 vfs_read +EXPORT_SYMBOL vmlinux 0x91422878 inet_offloads +EXPORT_SYMBOL vmlinux 0x9144899e iget_failed +EXPORT_SYMBOL vmlinux 0x9144ca1f rtnl_create_link +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x9158389a inet6_protos +EXPORT_SYMBOL vmlinux 0x91599d29 down_write_killable +EXPORT_SYMBOL vmlinux 0x915cb12b ppp_unit_number +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x91967e8e xen_selfballoon_init +EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf +EXPORT_SYMBOL vmlinux 0x91d12aaf blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x91de77ca nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x91e801f3 clear_nlink +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x920aa7f9 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x9218cff1 adjust_resource +EXPORT_SYMBOL vmlinux 0x9225b5af dev_printk +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x924340a1 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x9280471d __sb_start_write +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92c41d55 follow_up +EXPORT_SYMBOL vmlinux 0x92ca77f9 fscrypt_release_ctx +EXPORT_SYMBOL vmlinux 0x92d72dea agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x92dbe7b9 __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x92f6767f lg_local_lock +EXPORT_SYMBOL vmlinux 0x92f8a5ea pci_set_power_state +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x930e1658 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x9312978c iov_iter_zero +EXPORT_SYMBOL vmlinux 0x9315f97f __mdiobus_register +EXPORT_SYMBOL vmlinux 0x932493a8 iosf_mbi_read +EXPORT_SYMBOL vmlinux 0x932619f0 mdiobus_write +EXPORT_SYMBOL vmlinux 0x93271d26 md_check_recovery +EXPORT_SYMBOL vmlinux 0x934c186e d_delete +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x9377b995 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x9388d495 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x9397ebc0 tc_classify +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93c0bc02 serio_close +EXPORT_SYMBOL vmlinux 0x93c37f2f ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x93cea057 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x93eb0e1c __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x93f3e52b acpi_extract_package +EXPORT_SYMBOL vmlinux 0x93f64a86 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x94075304 __register_binfmt +EXPORT_SYMBOL vmlinux 0x94234451 is_nd_btt +EXPORT_SYMBOL vmlinux 0x9437bb65 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x9450a41e vme_irq_handler +EXPORT_SYMBOL vmlinux 0x9455e189 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x94690097 dev_uc_add +EXPORT_SYMBOL vmlinux 0x946fddf4 agp_find_bridge +EXPORT_SYMBOL vmlinux 0x9481644c __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x9483c710 nf_log_register +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94bbb3ca inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x94c54133 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x94ce75da neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x94e6aa59 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x94e93b24 dev_alert +EXPORT_SYMBOL vmlinux 0x94ecd0fb nd_btt_probe +EXPORT_SYMBOL vmlinux 0x950a485a simple_write_end +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9515af43 rtnl_notify +EXPORT_SYMBOL vmlinux 0x95168560 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x95229c14 sock_rfree +EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x955a832f ___preempt_schedule +EXPORT_SYMBOL vmlinux 0x9575a719 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x9596fcc3 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x95b7643a pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x95bd6e26 acpi_install_sci_handler +EXPORT_SYMBOL vmlinux 0x95c15a7d fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x95dc5c00 clk_add_alias +EXPORT_SYMBOL vmlinux 0x95f4e356 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x961e5718 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x962d4c10 sk_free +EXPORT_SYMBOL vmlinux 0x9684faae neigh_update +EXPORT_SYMBOL vmlinux 0x96948e21 vme_register_driver +EXPORT_SYMBOL vmlinux 0x9694c96a block_read_full_page +EXPORT_SYMBOL vmlinux 0x96aba385 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96b3691a request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x96b75e5e forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x96c11484 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96dc7658 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x96de41a4 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x96e38bea seq_escape +EXPORT_SYMBOL vmlinux 0x96e8e3ec block_write_begin +EXPORT_SYMBOL vmlinux 0x9718f068 acpi_pm_device_run_wake +EXPORT_SYMBOL vmlinux 0x9733a361 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x97363543 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x975e8c49 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0x977f09fe writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97bdf500 sk_busy_loop +EXPORT_SYMBOL vmlinux 0x97c36f4b input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x97de0ddd acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x97f18b46 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x97f1ed65 __nla_put +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x982b3f45 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x983b79d1 nvm_submit_io +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x98783803 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x9878745c _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x988a29a2 nvm_get_bb_tbl +EXPORT_SYMBOL vmlinux 0x988cad29 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x988ed85d set_memory_x +EXPORT_SYMBOL vmlinux 0x9895b42e truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x98c98114 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x98cc6932 tcp_filter +EXPORT_SYMBOL vmlinux 0x9908fa75 seq_release_private +EXPORT_SYMBOL vmlinux 0x990f6b79 dquot_acquire +EXPORT_SYMBOL vmlinux 0x99138441 dev_trans_start +EXPORT_SYMBOL vmlinux 0x9916111e netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x9940da10 input_open_device +EXPORT_SYMBOL vmlinux 0x99447af0 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99590012 __kfree_skb +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x996bf421 processors +EXPORT_SYMBOL vmlinux 0x9989dd2b __SetPageMovable +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a45f3e tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x99b16f8c release_resource +EXPORT_SYMBOL vmlinux 0x99b80982 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x99c4ee40 f_setown +EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size +EXPORT_SYMBOL vmlinux 0x99d6e0a4 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99db6af3 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map +EXPORT_SYMBOL vmlinux 0x99fb3cbd nobh_writepage +EXPORT_SYMBOL vmlinux 0x9a0b730e nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x9a18a7d8 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a4fd5db xfrm_state_update +EXPORT_SYMBOL vmlinux 0x9a57c1ce nf_log_packet +EXPORT_SYMBOL vmlinux 0x9a7aee6d blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x9a7dae13 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x9aa23cd9 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x9aa36765 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x9abfb917 put_cmsg +EXPORT_SYMBOL vmlinux 0x9ac802cd cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x9ad31f70 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x9ad5571a tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x9ae4a1ab pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9afa039e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x9b0ae221 secpath_dup +EXPORT_SYMBOL vmlinux 0x9b0c7412 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x9b210644 fscrypt_fname_usr_to_disk +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b300430 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b3bc5f9 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x9b3dc2ae proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x9b691047 bio_integrity_free +EXPORT_SYMBOL vmlinux 0x9b6b217f blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x9b6f1432 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba146bf wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9ba84cd5 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9bc3a302 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x9bc5caad phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x9bcbfd68 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x9bda3bde dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x9bdf2c9f inet_recvmsg +EXPORT_SYMBOL vmlinux 0x9be17293 dm_io +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9bf42340 netdev_printk +EXPORT_SYMBOL vmlinux 0x9c1bc3f1 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x9c1d4c44 inet6_release +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c587a78 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x9c65456d __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x9c673ee9 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x9c801815 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x9c898a5c try_module_get +EXPORT_SYMBOL vmlinux 0x9c9c26f0 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x9c9d7a4c tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x9ca078d3 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cafab28 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x9cb11d6e no_llseek +EXPORT_SYMBOL vmlinux 0x9cb986f2 vmalloc_base +EXPORT_SYMBOL vmlinux 0x9cbcc18d kill_bdev +EXPORT_SYMBOL vmlinux 0x9cc0d136 set_blocksize +EXPORT_SYMBOL vmlinux 0x9cd8416b deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x9ced7160 vfs_unlink +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d1236d4 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x9d23f330 to_ndd +EXPORT_SYMBOL vmlinux 0x9d33ef5e acpi_enable +EXPORT_SYMBOL vmlinux 0x9d3635fd proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x9d378f70 queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x9d582bd0 fscrypt_fname_encrypted_size +EXPORT_SYMBOL vmlinux 0x9d6b29ca inode_set_flags +EXPORT_SYMBOL vmlinux 0x9d6b5182 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x9d6eb992 skb_clone +EXPORT_SYMBOL vmlinux 0x9d7839ea ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x9d81d9ab setup_arg_pages +EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x9da28d1b dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x9e018654 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x9e03c864 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x9e098e2b cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e363b6b acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0x9e4dda1d __put_page +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e552979 gen_pool_create +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e8997b9 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x9e9e9873 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x9e9eb34c acpi_check_dsm +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea23cb9 vfs_setpos +EXPORT_SYMBOL vmlinux 0x9eaf4194 dev_base_lock +EXPORT_SYMBOL vmlinux 0x9ec562eb generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x9ec98ca8 vm_node_stat +EXPORT_SYMBOL vmlinux 0x9ed7b594 scsi_host_put +EXPORT_SYMBOL vmlinux 0x9ee82cd6 uuid_be_index +EXPORT_SYMBOL vmlinux 0x9ef41499 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x9efe81cd touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x9f23eb30 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x9f2e8f04 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x9f31b012 d_make_root +EXPORT_SYMBOL vmlinux 0x9f3c6fe0 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x9f3f2478 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4a96c3 get_user_pages +EXPORT_SYMBOL vmlinux 0x9f5ec4bf __check_sticky +EXPORT_SYMBOL vmlinux 0x9f723b23 mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x9f777e6e dev_mc_init +EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x9f844171 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x9f8b8582 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x9f940f93 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f98ada6 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x9fa9b556 sk_common_release +EXPORT_SYMBOL vmlinux 0x9fb1d0ed uuid_is_valid +EXPORT_SYMBOL vmlinux 0x9fc05c42 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9ff8e0a2 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa02aa27a km_is_alive +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa049c971 vfs_iter_read +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa064bfa9 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0xa06ff399 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa09a1fc5 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0xa0acd4ec dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b69876 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e793b6 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa12114cc dev_driver_string +EXPORT_SYMBOL vmlinux 0xa1376556 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa149c7ac param_get_uint +EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts +EXPORT_SYMBOL vmlinux 0xa14b9b76 flow_cache_init +EXPORT_SYMBOL vmlinux 0xa163a76f security_path_mknod +EXPORT_SYMBOL vmlinux 0xa17a0d7d nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xa1ab3637 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xa1b6e86f dev_get_flags +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1b90868 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1cc5c98 scsi_device_put +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa2010e76 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa21c0dd6 vfs_whiteout +EXPORT_SYMBOL vmlinux 0xa2321a56 device_add_disk +EXPORT_SYMBOL vmlinux 0xa2378abe blk_start_queue_async +EXPORT_SYMBOL vmlinux 0xa23f2031 audit_log +EXPORT_SYMBOL vmlinux 0xa23fc175 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xa2509bdf backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xa2523fbc new_inode +EXPORT_SYMBOL vmlinux 0xa269e827 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xa271ec2c do_splice_direct +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa28d63fc rwsem_wake +EXPORT_SYMBOL vmlinux 0xa2a13fc2 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0xa2b8a607 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xa2e0e26d jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xa313c496 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa325d511 alloc_fddidev +EXPORT_SYMBOL vmlinux 0xa3288f41 netif_napi_del +EXPORT_SYMBOL vmlinux 0xa32c9087 inet_accept +EXPORT_SYMBOL vmlinux 0xa34bf11b sock_init_data +EXPORT_SYMBOL vmlinux 0xa34ebb95 __d_lookup_done +EXPORT_SYMBOL vmlinux 0xa34fcb2d mempool_create_node +EXPORT_SYMBOL vmlinux 0xa350a8f8 set_memory_array_uc +EXPORT_SYMBOL vmlinux 0xa3536e2b block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xa35d513d generic_getxattr +EXPORT_SYMBOL vmlinux 0xa35df12f sock_no_listen +EXPORT_SYMBOL vmlinux 0xa35fe34d acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa38e5f65 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xa398e418 set_pages_array_uc +EXPORT_SYMBOL vmlinux 0xa39a77ae serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xa3ad58a5 skb_split +EXPORT_SYMBOL vmlinux 0xa3bd575b pnp_get_resource +EXPORT_SYMBOL vmlinux 0xa3bf0523 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xa3d64144 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xa3ec6bff find_inode_nowait +EXPORT_SYMBOL vmlinux 0xa3ee32ef mmc_detect_change +EXPORT_SYMBOL vmlinux 0xa400aa38 blk_get_backing_dev_info +EXPORT_SYMBOL vmlinux 0xa41389c2 pcim_iounmap +EXPORT_SYMBOL vmlinux 0xa419cc80 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0xa4203647 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xa422b8f0 freeze_super +EXPORT_SYMBOL vmlinux 0xa4351e72 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xa439dd5c mutex_trylock +EXPORT_SYMBOL vmlinux 0xa43bb695 vc_cons +EXPORT_SYMBOL vmlinux 0xa43db7fa dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xa44afbd3 key_validate +EXPORT_SYMBOL vmlinux 0xa4511467 crc16 +EXPORT_SYMBOL vmlinux 0xa45b7cac phy_attached_print +EXPORT_SYMBOL vmlinux 0xa45c805d __nd_iostat_start +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa4715327 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0xa474ca62 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xa47e5fa8 __ps2_command +EXPORT_SYMBOL vmlinux 0xa4966d3c ab3100_event_register +EXPORT_SYMBOL vmlinux 0xa49b277c pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xa49f04b2 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4c2e2d3 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xa4d26b8b dev_addr_init +EXPORT_SYMBOL vmlinux 0xa4d46753 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4dae1e6 load_nls_default +EXPORT_SYMBOL vmlinux 0xa4eca6a8 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xa50b6b56 ex_handler_clear_fs +EXPORT_SYMBOL vmlinux 0xa50c4527 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xa51a39a7 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xa51d96e3 compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xa52b03b0 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xa550e700 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0xa5513157 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5589efe __blk_end_request_all +EXPORT_SYMBOL vmlinux 0xa56c0062 param_get_long +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le +EXPORT_SYMBOL vmlinux 0xa5aec595 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xa5b3b54c pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xa5b6147a scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xa5b82db8 __tracepoint_write_msr +EXPORT_SYMBOL vmlinux 0xa5d1ba1c blkdev_fsync +EXPORT_SYMBOL vmlinux 0xa5dc2c49 iget_locked +EXPORT_SYMBOL vmlinux 0xa5e75e9a acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xa5f12d96 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0xa5f6667b cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa651c3d8 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa67ffd67 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa688d762 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xa697f1c8 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xa6a86a4d free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xa6abe579 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0xa6ae7fcc d_obtain_root +EXPORT_SYMBOL vmlinux 0xa6b799af dev_remove_offload +EXPORT_SYMBOL vmlinux 0xa6bbd805 __wake_up +EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error +EXPORT_SYMBOL vmlinux 0xa6bdfc46 gen_pool_alloc_algo +EXPORT_SYMBOL vmlinux 0xa6ca7212 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xa6d7278d tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xa6f0de88 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes +EXPORT_SYMBOL vmlinux 0xa72f0585 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xa73022eb key_task_permission +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa746c007 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xa74bcd62 rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xa765be6e dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xa7664d89 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0xa7709243 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xa788f1a0 i8253_lock +EXPORT_SYMBOL vmlinux 0xa7904be1 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xa7b551c7 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xa7cf9213 key_alloc +EXPORT_SYMBOL vmlinux 0xa7e0e8a3 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xa8301f1e icmp_send +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa84461ed rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xa8541891 irq_set_chip +EXPORT_SYMBOL vmlinux 0xa85b55bd sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xa867247c pci_irq_vector +EXPORT_SYMBOL vmlinux 0xa86b2eaa scsi_scan_host +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa87371b0 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xa8754022 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xa8971c14 do_SAK +EXPORT_SYMBOL vmlinux 0xa8adee4c __frontswap_store +EXPORT_SYMBOL vmlinux 0xa8cdcb8b rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0xa8cf7a72 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xa8df9245 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xa8eef749 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa90c93fa sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xa9287c4c swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xa952c374 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xa9549ace wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xa9667299 setup_new_exec +EXPORT_SYMBOL vmlinux 0xa9699ab0 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa97d5384 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xa97ef3d8 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9a5aa04 vfs_rmdir +EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0xa9a9f5f8 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0xa9b81439 compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xa9bd2676 __vmalloc +EXPORT_SYMBOL vmlinux 0xa9c40859 tcf_action_exec +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9cd50ec phy_driver_register +EXPORT_SYMBOL vmlinux 0xa9db8a3a skb_pull +EXPORT_SYMBOL vmlinux 0xa9f6689c netdev_update_features +EXPORT_SYMBOL vmlinux 0xaa0b63fd register_filesystem +EXPORT_SYMBOL vmlinux 0xaa1609e8 cfb_copyarea +EXPORT_SYMBOL vmlinux 0xaa1a4e92 generic_writepages +EXPORT_SYMBOL vmlinux 0xaa1fe08d pagecache_write_end +EXPORT_SYMBOL vmlinux 0xaa25c2d7 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xaa455743 override_creds +EXPORT_SYMBOL vmlinux 0xaa4abad8 eth_header_parse +EXPORT_SYMBOL vmlinux 0xaa57d177 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xaa5bd08d __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xaa63b2b3 iput +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa7804f2 inet_bind +EXPORT_SYMBOL vmlinux 0xaa97c70d dquot_commit_info +EXPORT_SYMBOL vmlinux 0xaaace75e tcp_init_sock +EXPORT_SYMBOL vmlinux 0xaab93d72 end_page_writeback +EXPORT_SYMBOL vmlinux 0xaac03f24 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0xaaceefde tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaafb7375 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab141322 proc_symlink +EXPORT_SYMBOL vmlinux 0xab19e293 tty_write_room +EXPORT_SYMBOL vmlinux 0xab1a9704 md_reload_sb +EXPORT_SYMBOL vmlinux 0xab264fde chacha20_block +EXPORT_SYMBOL vmlinux 0xab2ab60d scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xab2ae070 dm_put_table_device +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab515828 fb_show_logo +EXPORT_SYMBOL vmlinux 0xab551fad acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab770678 rdmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab9f22d0 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xabc5715a devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xabc5d5b4 udp_sendmsg +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabd3e0d0 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0xabee524a sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xabfb4f21 inet_csk_accept +EXPORT_SYMBOL vmlinux 0xac07e029 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0xac0b074b dquot_file_open +EXPORT_SYMBOL vmlinux 0xac0ba6f1 prepare_creds +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac2d47d7 set_wb_congested +EXPORT_SYMBOL vmlinux 0xac30d686 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xac366aa6 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac676e84 alloc_fcdev +EXPORT_SYMBOL vmlinux 0xac95df93 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0xac9f7c7e pci_clear_master +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb99769 ida_destroy +EXPORT_SYMBOL vmlinux 0xacc76868 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacda2c77 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacfe0fc1 generic_fillattr +EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xad026f64 tcp_poll +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xad1c55f7 lock_fb_info +EXPORT_SYMBOL vmlinux 0xad400dcf from_kuid_munged +EXPORT_SYMBOL vmlinux 0xad624278 __find_get_block +EXPORT_SYMBOL vmlinux 0xad698f77 dqstats +EXPORT_SYMBOL vmlinux 0xad6e4bb6 mempool_free +EXPORT_SYMBOL vmlinux 0xad7d0e35 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad875768 PDE_DATA +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xad99bfc5 uart_match_port +EXPORT_SYMBOL vmlinux 0xada521fb blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xadd9161f amd_iommu_domain_set_gcr3 +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae044bc7 panic_notifier_list +EXPORT_SYMBOL vmlinux 0xae084c4e tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xae1cd955 backlight_device_register +EXPORT_SYMBOL vmlinux 0xae56cb8a skb_clone_sk +EXPORT_SYMBOL vmlinux 0xae7f2e75 down_write +EXPORT_SYMBOL vmlinux 0xae8d12da cdrom_release +EXPORT_SYMBOL vmlinux 0xae9a4106 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xaecb45d5 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0xaed0bd64 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xaedf4d48 pnp_start_dev +EXPORT_SYMBOL vmlinux 0xaef04b51 bio_phys_segments +EXPORT_SYMBOL vmlinux 0xaef481ad nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0xaf324ea2 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf47b284 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xaf611eac amd_nb_misc_ids +EXPORT_SYMBOL vmlinux 0xaf631a35 dev_emerg +EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup +EXPORT_SYMBOL vmlinux 0xafb6f207 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xafb8c6ff copy_user_generic_string +EXPORT_SYMBOL vmlinux 0xafd52199 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported +EXPORT_SYMBOL vmlinux 0xafe58f76 proc_set_size +EXPORT_SYMBOL vmlinux 0xafe9f06a xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xaff66050 mdio_device_remove +EXPORT_SYMBOL vmlinux 0xaffeaaad get_io_context +EXPORT_SYMBOL vmlinux 0xb007322a dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0xb00c3d39 find_vma +EXPORT_SYMBOL vmlinux 0xb01b1db8 intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0xb02bd591 _raw_read_unlock_irq +EXPORT_SYMBOL vmlinux 0xb02cfa62 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0xb0302e4f dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xb037f3d6 input_register_handler +EXPORT_SYMBOL vmlinux 0xb046a665 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xb0522fef sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb075930a block_invalidatepage +EXPORT_SYMBOL vmlinux 0xb08d5934 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xb09c16fd jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a3b714 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xb0ae69a6 set_create_files_as +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0c7e4ed netpoll_print_options +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e602eb memmove +EXPORT_SYMBOL vmlinux 0xb0eb41ff iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0xb0fa8ba6 i2c_clients_command +EXPORT_SYMBOL vmlinux 0xb10820e4 _raw_read_unlock +EXPORT_SYMBOL vmlinux 0xb10a22f5 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0xb1138313 current_in_userns +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb1251b0e phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb187b3a8 lg_lock_init +EXPORT_SYMBOL vmlinux 0xb194c705 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0xb1b3d682 pci_enable_device +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c67239 vm_mmap +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1cfad22 rdmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xb1ffb3da netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0xb20ecf88 acpi_run_osc +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb2230091 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xb22d0d62 compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xb23af061 inet_getname +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb26e6b53 intel_gtt_insert_page +EXPORT_SYMBOL vmlinux 0xb282ef0d param_ops_short +EXPORT_SYMBOL vmlinux 0xb2a4b882 vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0xb2d50ca1 nobh_write_end +EXPORT_SYMBOL vmlinux 0xb2d5a552 complete +EXPORT_SYMBOL vmlinux 0xb2f0564f block_write_full_page +EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove +EXPORT_SYMBOL vmlinux 0xb2f86810 generic_write_checks +EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb302ca4e framebuffer_release +EXPORT_SYMBOL vmlinux 0xb30a5011 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xb311359b inode_init_owner +EXPORT_SYMBOL vmlinux 0xb3207f8e blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xb34292c6 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xb350099e bprm_change_interp +EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit +EXPORT_SYMBOL vmlinux 0xb368fb8b fscrypt_initialize +EXPORT_SYMBOL vmlinux 0xb36f228b __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xb391fb8b clone_cred +EXPORT_SYMBOL vmlinux 0xb3a2dfdf nmi_panic +EXPORT_SYMBOL vmlinux 0xb3b9dccf jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xb3cade6b cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0xb3cdafec dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xb3cfce8e pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0xb3d0f691 pv_cpu_ops +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb4032270 netdev_all_lower_get_next_rcu +EXPORT_SYMBOL vmlinux 0xb404b2b5 pci_save_state +EXPORT_SYMBOL vmlinux 0xb41cec73 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb428c1e4 twl6040_power +EXPORT_SYMBOL vmlinux 0xb431d039 path_nosuid +EXPORT_SYMBOL vmlinux 0xb43e1895 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xb46a1b38 ilookup +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb470a16b __mod_node_page_state +EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class +EXPORT_SYMBOL vmlinux 0xb473a57e vfs_getattr +EXPORT_SYMBOL vmlinux 0xb47cca30 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xb4b99f22 inet_release +EXPORT_SYMBOL vmlinux 0xb4c576ef udp_proc_unregister +EXPORT_SYMBOL vmlinux 0xb4c5d4a3 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xb4d18f71 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xb4d404b0 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0xb4d9ec50 mpage_writepage +EXPORT_SYMBOL vmlinux 0xb4e6ab28 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xb4f66eed skb_unlink +EXPORT_SYMBOL vmlinux 0xb501443f padata_alloc_possible +EXPORT_SYMBOL vmlinux 0xb5152189 __sock_create +EXPORT_SYMBOL vmlinux 0xb51f8b62 kmem_cache_size +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb53307d4 tty_port_destroy +EXPORT_SYMBOL vmlinux 0xb540433e send_sig +EXPORT_SYMBOL vmlinux 0xb56aa63d serio_bus +EXPORT_SYMBOL vmlinux 0xb56b4bc1 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb581290c boot_cpu_data +EXPORT_SYMBOL vmlinux 0xb59ca319 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5a5b789 mount_subtree +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5d0c6d4 xattr_full_name +EXPORT_SYMBOL vmlinux 0xb5dbd16a __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xb607704b iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xb6113c90 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xb6147817 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb63f8936 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xb65d0bab bitmap_unplug +EXPORT_SYMBOL vmlinux 0xb65e09a4 read_code +EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu +EXPORT_SYMBOL vmlinux 0xb67547d4 inet_ioctl +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb686f87a dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb695a70e nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xb699121b mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6b34ba4 vga_switcheroo_set_dynamic_switch +EXPORT_SYMBOL vmlinux 0xb6b7996a netdev_emerg +EXPORT_SYMBOL vmlinux 0xb6d04a79 nvm_bb_tbl_fold +EXPORT_SYMBOL vmlinux 0xb6dc0728 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0xb6e819fe skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xb6f0b328 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xb6f167cb __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xb6fe132a bh_submit_read +EXPORT_SYMBOL vmlinux 0xb70e6e99 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xb7288409 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xb7361654 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event +EXPORT_SYMBOL vmlinux 0xb75e416c pcie_get_mps +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb772b412 follow_pfn +EXPORT_SYMBOL vmlinux 0xb780360b proc_create_data +EXPORT_SYMBOL vmlinux 0xb78d7dda netdev_change_features +EXPORT_SYMBOL vmlinux 0xb79e764c cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xb7bd0daf input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xb7c05050 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb812b4b7 ___pskb_trim +EXPORT_SYMBOL vmlinux 0xb83d94d6 put_io_context +EXPORT_SYMBOL vmlinux 0xb85a15f3 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0xb863e9a7 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb893d29d pnp_register_driver +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b6a76c __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xb8d02459 set_pages_array_wb +EXPORT_SYMBOL vmlinux 0xb8e41803 unregister_shrinker +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb8eec98b del_timer +EXPORT_SYMBOL vmlinux 0xb8fdcd10 mempool_resize +EXPORT_SYMBOL vmlinux 0xb9005c4f __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb90bf9b2 empty_aops +EXPORT_SYMBOL vmlinux 0xb915064e bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xb9164f4e devm_gpiod_get +EXPORT_SYMBOL vmlinux 0xb92158d0 __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xb928a74d serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0xb951a184 bio_advance +EXPORT_SYMBOL vmlinux 0xb95c7df2 key_type_keyring +EXPORT_SYMBOL vmlinux 0xb97fa44b radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0xb9ab33e6 param_get_ullong +EXPORT_SYMBOL vmlinux 0xb9b88486 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xb9ca6ea3 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xb9d5382a blk_end_request +EXPORT_SYMBOL vmlinux 0xb9de7904 __vfs_write +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9ef001e max8925_set_bits +EXPORT_SYMBOL vmlinux 0xb9f8cf9f pci_write_vpd +EXPORT_SYMBOL vmlinux 0xba0100ac release_sock +EXPORT_SYMBOL vmlinux 0xba0f6529 ata_port_printk +EXPORT_SYMBOL vmlinux 0xba13dca3 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xba1c51c5 lease_modify +EXPORT_SYMBOL vmlinux 0xba26bf43 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read +EXPORT_SYMBOL vmlinux 0xba41e319 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba63e27a swake_up_all +EXPORT_SYMBOL vmlinux 0xba642e50 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xbac3edb9 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xbadb675b pci_disable_msix +EXPORT_SYMBOL vmlinux 0xbafdec07 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb057688 set_device_ro +EXPORT_SYMBOL vmlinux 0xbb1366a6 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xbb22e151 vm_insert_page +EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb3fb7eb __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb706a5c __inet_hash +EXPORT_SYMBOL vmlinux 0xbb8e169a vga_switcheroo_handler_flags +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbba70a2d _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xbbbdc793 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0xbbc2735a __serio_register_port +EXPORT_SYMBOL vmlinux 0xbbcd910a end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xbbd25b44 release_firmware +EXPORT_SYMBOL vmlinux 0xbbe4524f __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xbbeb1ec6 ioremap_wt +EXPORT_SYMBOL vmlinux 0xbc132037 __pagevec_release +EXPORT_SYMBOL vmlinux 0xbc1b27f4 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc3676c7 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xbc38f257 __f_setown +EXPORT_SYMBOL vmlinux 0xbc436269 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xbc746925 tty_hangup +EXPORT_SYMBOL vmlinux 0xbc9ebd90 drop_nlink +EXPORT_SYMBOL vmlinux 0xbcb59ac8 install_exec_creds +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcc3b3e8 make_bad_inode +EXPORT_SYMBOL vmlinux 0xbcc5f74b end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xbccdf8d8 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xbcceb48c blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xbcf2919c truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xbcf8e424 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0xbd1df775 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xbd2cd8a2 lock_page_memcg +EXPORT_SYMBOL vmlinux 0xbd3115d9 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd51f35f inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xbd5a2eac phy_start_interrupts +EXPORT_SYMBOL vmlinux 0xbd5e355d __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xbd634649 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xbd6ec0e1 free_netdev +EXPORT_SYMBOL vmlinux 0xbd75032f blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xbd759b78 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbd929a0a scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xbd9c1028 done_path_create +EXPORT_SYMBOL vmlinux 0xbda008dc ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xbda8c1be km_policy_expired +EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xbdb08d42 register_xen_selfballooning +EXPORT_SYMBOL vmlinux 0xbdd1c357 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe505522 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xbe555b6c swake_up +EXPORT_SYMBOL vmlinux 0xbe5d560b inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0xbe696e4b tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0xbe6ada7d uuid_le_index +EXPORT_SYMBOL vmlinux 0xbe6be740 param_set_copystring +EXPORT_SYMBOL vmlinux 0xbe6cf43c locks_free_lock +EXPORT_SYMBOL vmlinux 0xbe91e335 tcf_em_register +EXPORT_SYMBOL vmlinux 0xbec30d05 x86_match_cpu +EXPORT_SYMBOL vmlinux 0xbee303cf send_sig_info +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf398246 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xbf444407 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xbf548f41 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xbf6e8454 md_done_sync +EXPORT_SYMBOL vmlinux 0xbf7c8956 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf80ecd6 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfad56d1 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xbfb79ad1 kernel_param_lock +EXPORT_SYMBOL vmlinux 0xbfb9534e devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfe1447f xfrm_lookup +EXPORT_SYMBOL vmlinux 0xbfe6f427 _raw_spin_unlock_irq +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff3743a dev_addr_del +EXPORT_SYMBOL vmlinux 0xc0162842 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xc03899cb tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xc03c06ca phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0xc0557780 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xc05e355f idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xc062f51c mb_cache_entry_delete_block +EXPORT_SYMBOL vmlinux 0xc066c3bc nf_setsockopt +EXPORT_SYMBOL vmlinux 0xc06c80c0 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0xc073e274 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07829c5 vfs_statfs +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL vmlinux 0xc08a783c input_set_keycode +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0b33bac from_kuid +EXPORT_SYMBOL vmlinux 0xc0c3dd07 amd_iommu_domain_direct_map +EXPORT_SYMBOL vmlinux 0xc0dc567a cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0xc0e93d72 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xc0f256b9 simple_write_begin +EXPORT_SYMBOL vmlinux 0xc12951c3 single_release +EXPORT_SYMBOL vmlinux 0xc140b6f3 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0xc14e66c2 bio_map_kern +EXPORT_SYMBOL vmlinux 0xc14f7e1b sock_i_ino +EXPORT_SYMBOL vmlinux 0xc153549e tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit +EXPORT_SYMBOL vmlinux 0xc172f6a1 nd_device_unregister +EXPORT_SYMBOL vmlinux 0xc19231e9 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xc19ba746 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1dea8ab bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1eee476 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0xc2000b69 set_anon_super +EXPORT_SYMBOL vmlinux 0xc21f4d81 vga_switcheroo_init_domain_pm_optimus_hdmi_audio +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc25218a8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0xc253e275 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xc27de69b padata_do_parallel +EXPORT_SYMBOL vmlinux 0xc28a215b kernel_getsockopt +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a6b444 amd_iommu_complete_ppr +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2cb3238 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xc2d99875 pskb_extract +EXPORT_SYMBOL vmlinux 0xc2dd57e8 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2f66cf8 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc312c181 textsearch_register +EXPORT_SYMBOL vmlinux 0xc33f6135 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xc350b4eb wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xc361ff7b console_start +EXPORT_SYMBOL vmlinux 0xc364ae22 iomem_resource +EXPORT_SYMBOL vmlinux 0xc36fc837 __skb_checksum +EXPORT_SYMBOL vmlinux 0xc3813952 nobh_write_begin +EXPORT_SYMBOL vmlinux 0xc383af3f write_inode_now +EXPORT_SYMBOL vmlinux 0xc386504f alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xc38da21a locks_remove_posix +EXPORT_SYMBOL vmlinux 0xc393e37c set_pages_uc +EXPORT_SYMBOL vmlinux 0xc39aaed1 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xc3a0d8f0 agp_enable +EXPORT_SYMBOL vmlinux 0xc3aad69c jbd2_journal_inode_add_wait +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3e883b3 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xc3f67eb0 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0xc3ff7704 default_llseek +EXPORT_SYMBOL vmlinux 0xc410fe5c pci_release_region +EXPORT_SYMBOL vmlinux 0xc4188cc0 get_task_io_context +EXPORT_SYMBOL vmlinux 0xc420c443 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xc4278f7b pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0xc42ed44f __block_write_full_page +EXPORT_SYMBOL vmlinux 0xc4334e68 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0xc454c7fe abx500_remove_ops +EXPORT_SYMBOL vmlinux 0xc45e1a3a genphy_suspend +EXPORT_SYMBOL vmlinux 0xc46d19b1 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xc46f9f6a phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0xc47aadb0 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress +EXPORT_SYMBOL vmlinux 0xc497deb3 mount_bdev +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4b780c5 devm_release_resource +EXPORT_SYMBOL vmlinux 0xc4c56179 mod_node_page_state +EXPORT_SYMBOL vmlinux 0xc4d2314c vm_event_states +EXPORT_SYMBOL vmlinux 0xc4ddb7ee cfb_fillrect +EXPORT_SYMBOL vmlinux 0xc4ec55de mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xc4f55149 vme_bus_num +EXPORT_SYMBOL vmlinux 0xc510d718 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xc5137552 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0xc524fee9 current_fs_time +EXPORT_SYMBOL vmlinux 0xc535a0ab nf_afinfo +EXPORT_SYMBOL vmlinux 0xc53ef7a9 cdev_del +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc558530d profile_pc +EXPORT_SYMBOL vmlinux 0xc5723088 vfs_mknod +EXPORT_SYMBOL vmlinux 0xc5766b74 qdisc_list_del +EXPORT_SYMBOL vmlinux 0xc5776a5f skb_make_writable +EXPORT_SYMBOL vmlinux 0xc591cc11 simple_setattr +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5a5e30c finish_swait +EXPORT_SYMBOL vmlinux 0xc5aaf0f6 __secpath_destroy +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5dc0981 is_nd_pfn +EXPORT_SYMBOL vmlinux 0xc5e7d0fe mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc5ff88a3 invalidate_partition +EXPORT_SYMBOL vmlinux 0xc606c97d simple_lookup +EXPORT_SYMBOL vmlinux 0xc61666b8 i2c_del_driver +EXPORT_SYMBOL vmlinux 0xc62eefb3 pci_fixup_device +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc636915b uart_update_timeout +EXPORT_SYMBOL vmlinux 0xc6477222 nd_dax_probe +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66cdd28 pci_remove_bus +EXPORT_SYMBOL vmlinux 0xc677ee4e jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xc6a534c2 vc_resize +EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6cd8059 sync_blockdev +EXPORT_SYMBOL vmlinux 0xc6cfdbdd ppp_input +EXPORT_SYMBOL vmlinux 0xc70bd440 sync_file_create +EXPORT_SYMBOL vmlinux 0xc711ed8b __mutex_init +EXPORT_SYMBOL vmlinux 0xc71e1975 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc735d338 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0xc73a8771 do_trace_read_msr +EXPORT_SYMBOL vmlinux 0xc7437d33 release_pages +EXPORT_SYMBOL vmlinux 0xc74b87e8 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc7717b1d acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xc77ba18f unregister_binfmt +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc784c6c6 fscrypt_encrypt_page +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc78ca850 udp_ioctl +EXPORT_SYMBOL vmlinux 0xc794bd21 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a0beb8 follow_down +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7c4a289 fb_validate_mode +EXPORT_SYMBOL vmlinux 0xc7c8d408 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xc7ce1103 kern_path +EXPORT_SYMBOL vmlinux 0xc7d3403a vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xc7db858d skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xc7e40f38 blkdev_get +EXPORT_SYMBOL vmlinux 0xc7e50178 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc870f49d elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc873384d starget_for_each_device +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc890eec2 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xc892d45f shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc898e341 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8ab7114 dcb_setapp +EXPORT_SYMBOL vmlinux 0xc8ae9584 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8ba6308 finish_no_open +EXPORT_SYMBOL vmlinux 0xc8c5c1a1 tcf_register_action +EXPORT_SYMBOL vmlinux 0xc8c80130 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xc8dacdb5 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0xc8df29d7 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xc8e12b37 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0xc8ed9df3 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xc8fc90e3 sock_no_getname +EXPORT_SYMBOL vmlinux 0xc902110a nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xc908ed90 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xc9112c5b xfrm_init_state +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc932fc56 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xc9470b22 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xc94f67d7 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xc95c94f3 agp_backend_release +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc96c635d neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc9930199 elevator_init +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc99f6aae dma_spin_lock +EXPORT_SYMBOL vmlinux 0xc9a25d00 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xc9cc3670 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xc9d5bc22 truncate_setsize +EXPORT_SYMBOL vmlinux 0xc9fef317 add_wait_queue +EXPORT_SYMBOL vmlinux 0xca298e13 input_free_device +EXPORT_SYMBOL vmlinux 0xca3a5878 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0xca3e0b33 set_pages_x +EXPORT_SYMBOL vmlinux 0xca5277cf sock_from_file +EXPORT_SYMBOL vmlinux 0xca542ca0 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xca596c1a bdi_register +EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent +EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order +EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xca92642a eth_header +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcaa24ed4 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xcaa4898d skb_find_text +EXPORT_SYMBOL vmlinux 0xcaa4a321 dcb_getapp +EXPORT_SYMBOL vmlinux 0xcaa8f8de bdput +EXPORT_SYMBOL vmlinux 0xcaaa0818 elv_rb_del +EXPORT_SYMBOL vmlinux 0xcaaeef30 i8042_install_filter +EXPORT_SYMBOL vmlinux 0xcaed6237 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaffc222 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xcb026b34 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb110999 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xcb2bffe6 eth_gro_receive +EXPORT_SYMBOL vmlinux 0xcb3623bc neigh_connected_output +EXPORT_SYMBOL vmlinux 0xcb37a666 zpool_register_driver +EXPORT_SYMBOL vmlinux 0xcb5e4a3c __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb888660 __serio_register_driver +EXPORT_SYMBOL vmlinux 0xcb8b0f93 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcbab4049 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbd176f2 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xcbfcbf50 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0xcc06adca xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xcc227796 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc38aa3f inet_listen +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5c2420 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc7a1224 sock_efree +EXPORT_SYMBOL vmlinux 0xcc81398a try_to_release_page +EXPORT_SYMBOL vmlinux 0xcc82add3 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xcc838223 __pte2cachemode_tbl +EXPORT_SYMBOL vmlinux 0xcc8d3f4f acpi_os_execute +EXPORT_SYMBOL vmlinux 0xcc94b0ab blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xcc9aa2a6 register_sysctl +EXPORT_SYMBOL vmlinux 0xcca2aba0 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0xcca70a39 open_exec +EXPORT_SYMBOL vmlinux 0xccae3dce compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0xccbfb029 fence_default_wait +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccc313dc kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0xcccc02d0 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xcce6d068 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xccfccf51 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xcd02a749 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xcd03df5e resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xcd063c41 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0xcd1ef2b9 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd2d6e9a mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xcd427493 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xcd43bc18 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xcd485e7a inet6_bind +EXPORT_SYMBOL vmlinux 0xcd49a737 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xcd4d41bf tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0xcd5448e0 input_get_keycode +EXPORT_SYMBOL vmlinux 0xcd654094 __block_write_begin +EXPORT_SYMBOL vmlinux 0xcd73e916 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xcd7c5aed __napi_complete +EXPORT_SYMBOL vmlinux 0xcdbbd32d iov_iter_advance +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcde1e3b6 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0xcdfbc954 __devm_request_region +EXPORT_SYMBOL vmlinux 0xce137133 wake_up_process +EXPORT_SYMBOL vmlinux 0xce20b3ea ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce29e079 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xce2c45cc wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xce4073d6 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xce464a3b simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xce4b7217 dqget +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce5705ff poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift +EXPORT_SYMBOL vmlinux 0xce7bfe70 vm_brk +EXPORT_SYMBOL vmlinux 0xce857010 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xce874710 mmc_can_discard +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free +EXPORT_SYMBOL vmlinux 0xcebc1e12 kthread_bind +EXPORT_SYMBOL vmlinux 0xcebf78d6 nvm_unregister_tgt_type +EXPORT_SYMBOL vmlinux 0xced75f9b generic_listxattr +EXPORT_SYMBOL vmlinux 0xcedf9491 register_md_personality +EXPORT_SYMBOL vmlinux 0xcef18c17 ip_defrag +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf211fb3 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xcf2e6051 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xcf53b3ac inode_dio_wait +EXPORT_SYMBOL vmlinux 0xcf540b5d make_kprojid +EXPORT_SYMBOL vmlinux 0xcf6cfe1f msrs_free +EXPORT_SYMBOL vmlinux 0xcf89f0ea tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xcfb4a296 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xcfc455fa blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0xcfc8a60a dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xcfeefb9a set_pages_wb +EXPORT_SYMBOL vmlinux 0xd0151a32 dma_async_device_register +EXPORT_SYMBOL vmlinux 0xd024b69b vfs_fsync +EXPORT_SYMBOL vmlinux 0xd02e26ea udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xd03c9909 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xd053777b xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xd058b0d5 mmc_release_host +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd077b4e2 compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xd095b38b vfs_create +EXPORT_SYMBOL vmlinux 0xd0a03060 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0aab196 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xd0b289c9 bio_clone_fast +EXPORT_SYMBOL vmlinux 0xd0b31126 sock_update_memcg +EXPORT_SYMBOL vmlinux 0xd0d6290f pci_map_rom +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0f8234d vme_irq_request +EXPORT_SYMBOL vmlinux 0xd0f9888c crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd1076e50 skb_seq_read +EXPORT_SYMBOL vmlinux 0xd11486d5 up_read +EXPORT_SYMBOL vmlinux 0xd11a02e4 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xd125c55b mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0xd1281042 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xd138423f nla_put +EXPORT_SYMBOL vmlinux 0xd156a0da inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xd176a3b2 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd1b6fb60 tty_port_open +EXPORT_SYMBOL vmlinux 0xd1d7c907 vga_put +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd1f95d9c tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xd1fdcc24 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xd2064e2f idr_replace +EXPORT_SYMBOL vmlinux 0xd20df176 sock_setsockopt +EXPORT_SYMBOL vmlinux 0xd20f1271 nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0xd20f3020 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xd2239724 __sk_dst_check +EXPORT_SYMBOL vmlinux 0xd2303a96 genl_notify +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd25d19f0 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd25f8462 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xd26bba11 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2a204a6 set_posix_acl +EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc +EXPORT_SYMBOL vmlinux 0xd2cff5fd filemap_check_errors +EXPORT_SYMBOL vmlinux 0xd2d649c8 kill_pgrp +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2dc98fd tty_unthrottle +EXPORT_SYMBOL vmlinux 0xd2dee54e rt_dst_alloc +EXPORT_SYMBOL vmlinux 0xd2e22bfb tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xd2fa2bf9 proto_register +EXPORT_SYMBOL vmlinux 0xd3015efd scsi_block_requests +EXPORT_SYMBOL vmlinux 0xd30b4965 arch_dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0xd30c9887 skb_free_datagram +EXPORT_SYMBOL vmlinux 0xd3273fdf softnet_data +EXPORT_SYMBOL vmlinux 0xd329a06a __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xd3318981 md_register_thread +EXPORT_SYMBOL vmlinux 0xd3481aab down_read_trylock +EXPORT_SYMBOL vmlinux 0xd360b532 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd3719d59 paravirt_ticketlocks_enabled +EXPORT_SYMBOL vmlinux 0xd399c281 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xd3b20728 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3d78151 simple_getattr +EXPORT_SYMBOL vmlinux 0xd3fa2a38 mmc_remove_host +EXPORT_SYMBOL vmlinux 0xd4511d7f jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd467f4f0 kill_litter_super +EXPORT_SYMBOL vmlinux 0xd468c81a dcache_readdir +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd488d4bd blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xd4c99b06 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0xd4d06a6b unlock_buffer +EXPORT_SYMBOL vmlinux 0xd4f51f26 dev_warn +EXPORT_SYMBOL vmlinux 0xd5049680 x86_hyper_ms_hyperv +EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data +EXPORT_SYMBOL vmlinux 0xd51c7a24 dst_init +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd53c8c13 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xd53f7280 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xd546b63a skb_push +EXPORT_SYMBOL vmlinux 0xd5699dfa audit_log_start +EXPORT_SYMBOL vmlinux 0xd5788f02 neigh_direct_output +EXPORT_SYMBOL vmlinux 0xd59487fa sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd5a71bb2 input_set_capability +EXPORT_SYMBOL vmlinux 0xd5cc77e9 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xd5f6050b dev_deactivate +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd6284711 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd62eac4c mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xd638cd63 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd64bf5ea dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xd64d2832 simple_open +EXPORT_SYMBOL vmlinux 0xd66a6aa6 dump_page +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68e1d1b _raw_read_trylock +EXPORT_SYMBOL vmlinux 0xd68f175d put_zone_device_page +EXPORT_SYMBOL vmlinux 0xd69dd63b tty_devnum +EXPORT_SYMBOL vmlinux 0xd69ef97d posix_acl_alloc +EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6d3517b scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xd6dc4403 iterate_fd +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd71600bb atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xd7332cf4 tcp_disconnect +EXPORT_SYMBOL vmlinux 0xd74d632d iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd77eb475 mmc_get_card +EXPORT_SYMBOL vmlinux 0xd792d26e scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xd79bcba2 blk_peek_request +EXPORT_SYMBOL vmlinux 0xd7c5fe36 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xd7c824f0 compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7dd77ab vme_bus_type +EXPORT_SYMBOL vmlinux 0xd7e1c372 noop_llseek +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7f57255 radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xd8105121 single_open +EXPORT_SYMBOL vmlinux 0xd81edb06 acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0xd8291a25 dma_supported +EXPORT_SYMBOL vmlinux 0xd834906e mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xd83c30fa mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xd8755f97 deactivate_super +EXPORT_SYMBOL vmlinux 0xd8770b31 dev_mc_add +EXPORT_SYMBOL vmlinux 0xd88bb639 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a2fa85 input_register_device +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b1e4f8 fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xd8ccc0e9 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xd8cda772 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0xd8d828a6 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xd8dc7848 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0xd924821d mdio_bus_type +EXPORT_SYMBOL vmlinux 0xd930e121 seq_open_private +EXPORT_SYMBOL vmlinux 0xd93763a8 pv_mmu_ops +EXPORT_SYMBOL vmlinux 0xd93b817e lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0xd965b322 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xd9677e0e km_state_notify +EXPORT_SYMBOL vmlinux 0xd969b2c7 amd_e400_c1e_detected +EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd98e1aaa invalidate_bdev +EXPORT_SYMBOL vmlinux 0xd991839d dentry_open +EXPORT_SYMBOL vmlinux 0xd9b5c0de page_readlink +EXPORT_SYMBOL vmlinux 0xd9b9aedf fscrypt_get_encryption_info +EXPORT_SYMBOL vmlinux 0xd9d3bcd3 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xda111866 d_set_d_op +EXPORT_SYMBOL vmlinux 0xda346a72 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda3dff84 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xda49bc1b dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xda4c2f7e security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xda4e22f4 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xda623b13 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xda6f9ef8 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xda71abcb netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xda74271b __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0xda7b2cd8 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xdab02190 __posix_acl_create +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad20d5e pci_get_slot +EXPORT_SYMBOL vmlinux 0xdae80100 _raw_spin_unlock +EXPORT_SYMBOL vmlinux 0xdae82c32 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdaebb376 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xdaf86561 unregister_netdev +EXPORT_SYMBOL vmlinux 0xdafa2685 udp6_csum_init +EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0xdb1c98b2 inode_init_always +EXPORT_SYMBOL vmlinux 0xdb2f2b69 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0xdb2f596d module_put +EXPORT_SYMBOL vmlinux 0xdb34157b phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xdb39d713 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0xdb53a917 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0xdb5f153f scsi_device_get +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb85f949 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0xdbcbe2a0 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xdbd6732b radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xdbdba3ec kernel_getpeername +EXPORT_SYMBOL vmlinux 0xdbe3fac6 i2c_verify_client +EXPORT_SYMBOL vmlinux 0xdbe55658 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xdbf1fec5 flush_signals +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc297bce phy_suspend +EXPORT_SYMBOL vmlinux 0xdc3a97fd pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc57f532 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0xdc5f5da8 lockref_put_return +EXPORT_SYMBOL vmlinux 0xdc6c678b bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0xdc6ccf30 __lock_buffer +EXPORT_SYMBOL vmlinux 0xdc6d37ad blk_get_queue +EXPORT_SYMBOL vmlinux 0xdc8f2975 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xdcabe768 md_write_start +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcda6027 register_framebuffer +EXPORT_SYMBOL vmlinux 0xdce48dfa __nd_driver_register +EXPORT_SYMBOL vmlinux 0xdce7ddee blk_delay_queue +EXPORT_SYMBOL vmlinux 0xdcf746f5 revert_creds +EXPORT_SYMBOL vmlinux 0xdd0da93d d_drop +EXPORT_SYMBOL vmlinux 0xdd1aed8c __invalidate_device +EXPORT_SYMBOL vmlinux 0xdd24ee58 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd30ba26 datagram_poll +EXPORT_SYMBOL vmlinux 0xdd476145 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd66bf1e input_unregister_device +EXPORT_SYMBOL vmlinux 0xdda1f404 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0xdda28888 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xdda6931c skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xddd38f7c cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xddd96a86 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0xdddc97e1 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0xdde094db tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xde0031b6 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0xde16dc16 tboot +EXPORT_SYMBOL vmlinux 0xde1f4a11 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0xde3164bf bio_split +EXPORT_SYMBOL vmlinux 0xde343661 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0xde366625 param_set_uint +EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0xde670a7b kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xde6d2e51 pci_set_master +EXPORT_SYMBOL vmlinux 0xde724f15 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdea0d485 i2c_release_client +EXPORT_SYMBOL vmlinux 0xded8daf1 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xdedb6611 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0xdedf09d7 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xdf00444d dm_get_device +EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices +EXPORT_SYMBOL vmlinux 0xdf1427e5 idr_remove +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf475b43 phy_connect +EXPORT_SYMBOL vmlinux 0xdf50b579 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf587afa generic_removexattr +EXPORT_SYMBOL vmlinux 0xdf5b6663 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xdf5c6374 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0xdf5dcf1c __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf61e232 tty_kref_put +EXPORT_SYMBOL vmlinux 0xdf6d87a5 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xdf716735 __netif_schedule +EXPORT_SYMBOL vmlinux 0xdf7e3b2a nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0xdf861ca3 simple_get_link +EXPORT_SYMBOL vmlinux 0xdf866343 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xdf871320 scsi_add_device +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf8d227d tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdfc21900 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xdfc50270 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfc8773a mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xdfd3a075 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0xdfd54f9e tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xdfe2f47d ex_handler_wrmsr_unsafe +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffd2774 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0xe00a1f9d devfreq_interval_update +EXPORT_SYMBOL vmlinux 0xe017ab7e __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xe03850e2 pci_bus_get +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe06d3028 scsi_print_result +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister +EXPORT_SYMBOL vmlinux 0xe0857926 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0xe0869c7a rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe0a9aacc agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe0af6254 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0cb2bf3 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xe0cfa978 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xe0ea39c2 pci_scan_bus +EXPORT_SYMBOL vmlinux 0xe0f6acc8 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xe0f86491 from_kprojid +EXPORT_SYMBOL vmlinux 0xe108753f inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0xe10a7f73 from_kgid_munged +EXPORT_SYMBOL vmlinux 0xe10f3ca4 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe11a1958 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xe11c06c0 d_alloc_name +EXPORT_SYMBOL vmlinux 0xe1260bef follow_down_one +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe140a8d8 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xe1485343 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xe14d7479 elv_add_request +EXPORT_SYMBOL vmlinux 0xe16863cb genphy_update_link +EXPORT_SYMBOL vmlinux 0xe16ce186 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe17774d5 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xe17e879d vfs_symlink +EXPORT_SYMBOL vmlinux 0xe1a22388 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xe1a55913 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xe1b58982 dquot_quota_off +EXPORT_SYMBOL vmlinux 0xe1bcf36a PageMovable +EXPORT_SYMBOL vmlinux 0xe1c4365f udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xe1d83304 key_put +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe2018fa4 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xe22a38b3 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xe22e693f input_event +EXPORT_SYMBOL vmlinux 0xe22fc8fe set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe259ae9e _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xe277cb0c dev_mc_flush +EXPORT_SYMBOL vmlinux 0xe27e4e89 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xe28debad dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xe2959796 dquot_free_inode +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2f6bcc4 seq_release +EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0xe31dc4cf mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xe3399a75 native_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xe36cdcea __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xe37d35f8 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xe395bf92 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xe39a081f __ClearPageMovable +EXPORT_SYMBOL vmlinux 0xe39cc6c0 sock_no_poll +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3aabc90 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xe3b8956d __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3bd0c9a phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xe3c9da25 dev_addr_flush +EXPORT_SYMBOL vmlinux 0xe3d3dfd0 get_fs_type +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3ef0951 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xe3f62ecc devm_gpio_free +EXPORT_SYMBOL vmlinux 0xe3fc1faa simple_pin_fs +EXPORT_SYMBOL vmlinux 0xe41f1353 set_user_nice +EXPORT_SYMBOL vmlinux 0xe4410712 seq_puts +EXPORT_SYMBOL vmlinux 0xe446fd89 tso_build_hdr +EXPORT_SYMBOL vmlinux 0xe448f02d scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xe45da969 ihold +EXPORT_SYMBOL vmlinux 0xe46a5ce0 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xe4704c93 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe4a27cc8 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xe4ce1df8 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xe4d11259 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe508ebc3 sock_i_uid +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe530d757 acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xe5429e4c __init_rwsem +EXPORT_SYMBOL vmlinux 0xe56557cd sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xe565e3c7 set_bh_page +EXPORT_SYMBOL vmlinux 0xe5663f7a pci_pme_capable +EXPORT_SYMBOL vmlinux 0xe5709586 generic_file_fsync +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5815f8a _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe588b156 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5d00674 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xe5d87513 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe607e4f8 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xe6110f1f pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0xe6162877 down_killable +EXPORT_SYMBOL vmlinux 0xe642520f pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xe64d98fe rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xe650402a netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xe65caaf5 skb_copy_expand +EXPORT_SYMBOL vmlinux 0xe6721377 downgrade_write +EXPORT_SYMBOL vmlinux 0xe67e4324 simple_empty +EXPORT_SYMBOL vmlinux 0xe690b8d8 udplite_table +EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe6a30651 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xe6b0b030 read_cache_page +EXPORT_SYMBOL vmlinux 0xe6ca5e15 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xe6df7cd7 inet_sendpage +EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xe728fb55 __d_drop +EXPORT_SYMBOL vmlinux 0xe72ff28a pid_task +EXPORT_SYMBOL vmlinux 0xe7338c3a vfs_rename +EXPORT_SYMBOL vmlinux 0xe7499a2e __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xe7588652 __bforget +EXPORT_SYMBOL vmlinux 0xe76f62dd __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xe788788c sock_create_kern +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7f2047f xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xe7fdbbc5 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xe81ae37a inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xe81b7b87 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe824df64 inet_addr_type +EXPORT_SYMBOL vmlinux 0xe84bfab0 lwtunnel_output +EXPORT_SYMBOL vmlinux 0xe8609710 udp_seq_open +EXPORT_SYMBOL vmlinux 0xe86cdba1 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xe8737b2d rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xe878f513 mount_nodev +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe8814b24 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xe8849161 mmc_power_save_host +EXPORT_SYMBOL vmlinux 0xe887faf4 xen_vcpu_id +EXPORT_SYMBOL vmlinux 0xe89034fc phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xe894d52a tty_throttle +EXPORT_SYMBOL vmlinux 0xe89548d8 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8b5b5bd param_get_bool +EXPORT_SYMBOL vmlinux 0xe8b89c4c nvm_register_tgt_type +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8ce8f6c d_obtain_alias +EXPORT_SYMBOL vmlinux 0xe8db8dd2 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe8e041d7 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 +EXPORT_SYMBOL vmlinux 0xe905a989 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xe90bb2fe phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95c462f __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xe95dd8ca netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe96acbb2 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0xe9742549 scm_detach_fds +EXPORT_SYMBOL vmlinux 0xe9772d5a scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xe97bba4a mount_single +EXPORT_SYMBOL vmlinux 0xe984c87e d_path +EXPORT_SYMBOL vmlinux 0xe997667b wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xe9aea545 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xe9bf9153 dquot_get_state +EXPORT_SYMBOL vmlinux 0xe9f61146 up_write +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9fb2bf8 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea121ba2 ppp_channel_index +EXPORT_SYMBOL vmlinux 0xea1629fd uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xea3c1319 ip_check_defrag +EXPORT_SYMBOL vmlinux 0xea3f725d _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xea3f8170 tcp_child_process +EXPORT_SYMBOL vmlinux 0xea643bee kill_pid +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xea8826c0 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xeab12d78 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xeac73847 irq_regs +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeae4ca3b down_read +EXPORT_SYMBOL vmlinux 0xeaf57eef setattr_copy +EXPORT_SYMBOL vmlinux 0xeaff79cd __neigh_event_send +EXPORT_SYMBOL vmlinux 0xeb0460e8 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0xeb06047f __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xeb33a2d7 fscrypt_d_ops +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb551c7f devm_free_irq +EXPORT_SYMBOL vmlinux 0xeb63952c textsearch_destroy +EXPORT_SYMBOL vmlinux 0xeb78ee66 force_sig +EXPORT_SYMBOL vmlinux 0xeb81b994 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xeb88436b textsearch_prepare +EXPORT_SYMBOL vmlinux 0xeb89d355 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xebac625f delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xebb5f328 simple_transaction_set +EXPORT_SYMBOL vmlinux 0xebbfa29f d_instantiate +EXPORT_SYMBOL vmlinux 0xebcf7e64 skb_queue_tail +EXPORT_SYMBOL vmlinux 0xebd2e28b dquot_quota_on +EXPORT_SYMBOL vmlinux 0xec175224 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xec3742b5 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec6d1de1 udplite_prot +EXPORT_SYMBOL vmlinux 0xec84e618 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy +EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xecdab22a get_cached_acl +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecee10a6 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xecefd95d dcache_dir_close +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xecfee50c rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0xed012983 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xed01c872 kobject_add +EXPORT_SYMBOL vmlinux 0xed1a129b intel_gmch_probe +EXPORT_SYMBOL vmlinux 0xed23743f blk_execute_rq +EXPORT_SYMBOL vmlinux 0xed23e826 agp_put_bridge +EXPORT_SYMBOL vmlinux 0xed49f077 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed672d3e __elv_add_request +EXPORT_SYMBOL vmlinux 0xed74fe6d security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xed825bf6 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedb4ff38 md_flush_request +EXPORT_SYMBOL vmlinux 0xedb89581 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedbb6ac9 devm_memremap_pages +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedd0cd89 radix_tree_delete +EXPORT_SYMBOL vmlinux 0xedd87dc5 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xeddbe353 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xedfda523 vm_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xee0bb687 scsi_unregister +EXPORT_SYMBOL vmlinux 0xee1422a4 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xee2cd4b4 param_ops_bint +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee589541 get_gendisk +EXPORT_SYMBOL vmlinux 0xee5a133d jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee9e5fb3 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeb87b56 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xeec2c7cf ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0xeec5681c vfs_writev +EXPORT_SYMBOL vmlinux 0xeec6f0fe clk_get +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeef427cb lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xef11f119 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xef2c495b mapping_tagged +EXPORT_SYMBOL vmlinux 0xef30098c x86_hyper +EXPORT_SYMBOL vmlinux 0xef30bdc5 pci_request_regions +EXPORT_SYMBOL vmlinux 0xef3c18eb acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0xef713814 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xef79d9b9 nd_pfn_validate +EXPORT_SYMBOL vmlinux 0xef7c0595 param_set_ullong +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xefc0c2a7 inc_nlink +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefda8d99 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefe099c3 acpi_get_event_status +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf01d3bc4 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xf02bc1ab sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0xf03afe81 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xf0434933 param_get_ushort +EXPORT_SYMBOL vmlinux 0xf04d91ef reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0xf053d7f2 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf062576b ucs2_utf8size +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0xf08242c2 finish_wait +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09b77ba generic_setxattr +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0aeee58 dma_pool_create +EXPORT_SYMBOL vmlinux 0xf0b4d8f5 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xf0bba020 set_pages_array_wc +EXPORT_SYMBOL vmlinux 0xf0bee321 bdi_destroy +EXPORT_SYMBOL vmlinux 0xf0c83b1d dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xf0d82745 vga_con +EXPORT_SYMBOL vmlinux 0xf0dcd74a dquot_release +EXPORT_SYMBOL vmlinux 0xf0e55cb3 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xf0eaffce _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xf0ebbe6c lru_cache_add_file +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit +EXPORT_SYMBOL vmlinux 0xf116d4b5 copy_in_user +EXPORT_SYMBOL vmlinux 0xf12decad compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xf1398e2e lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xf13b2c0b param_get_charp +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf16eaa18 dev_disable_lro +EXPORT_SYMBOL vmlinux 0xf17b5de4 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xf186ecdf bdevname +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1b59e0b pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf210f883 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xf23f2ecb pnp_request_card_device +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf245e314 genphy_resume +EXPORT_SYMBOL vmlinux 0xf25b009d vfs_readv +EXPORT_SYMBOL vmlinux 0xf2625595 node_data +EXPORT_SYMBOL vmlinux 0xf267a455 start_tty +EXPORT_SYMBOL vmlinux 0xf28c6d3b pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf2a6807a nf_log_trace +EXPORT_SYMBOL vmlinux 0xf2afd4a4 eth_gro_complete +EXPORT_SYMBOL vmlinux 0xf2b3548a phy_device_remove +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2d32129 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xf2f29faa scsi_device_resume +EXPORT_SYMBOL vmlinux 0xf2f39861 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0xf2f58310 passthru_features_check +EXPORT_SYMBOL vmlinux 0xf2ff1b6d get_super +EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf319632f tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xf31981f0 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf349b760 fence_wait_timeout +EXPORT_SYMBOL vmlinux 0xf34a47a0 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0xf34f2043 blk_free_tags +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf356c46e mount_ns +EXPORT_SYMBOL vmlinux 0xf3572d53 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xf35b63c6 phy_find_first +EXPORT_SYMBOL vmlinux 0xf386da5a agp_allocate_memory +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xf3986b06 acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0xf3a34a3a fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0xf3a5024f __inode_permission +EXPORT_SYMBOL vmlinux 0xf3b22016 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xf3bf57f8 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xf3c66436 nla_put_64bit +EXPORT_SYMBOL vmlinux 0xf3d0115b pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3effb12 __page_symlink +EXPORT_SYMBOL vmlinux 0xf3f1ba4f pcibios_align_resource +EXPORT_SYMBOL vmlinux 0xf3f4893b tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xf41b28c7 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xf42abb85 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0xf435d02c scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf463137a __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4768125 netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0xf47d5615 netlink_capable +EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4e1c06e tty_register_driver +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4fded96 ___ratelimit +EXPORT_SYMBOL vmlinux 0xf513e864 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xf51bf88b nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf51ca634 devm_memunmap +EXPORT_SYMBOL vmlinux 0xf526ddfd ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xf531efd3 to_nd_dax +EXPORT_SYMBOL vmlinux 0xf536d22e acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xf5385d64 init_task +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf562079b ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0xf567db4b nvm_dev_factory +EXPORT_SYMBOL vmlinux 0xf589ee77 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xf59193d7 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5b10e67 acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf63e7606 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xf647aaf2 skb_pad +EXPORT_SYMBOL vmlinux 0xf66369e2 mmc_erase +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf679678d backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf6939307 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xf693a145 irq_stat +EXPORT_SYMBOL vmlinux 0xf6a6c215 is_nd_dax +EXPORT_SYMBOL vmlinux 0xf6ab0e40 nd_iostat_end +EXPORT_SYMBOL vmlinux 0xf6c61f45 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xf6c655fb netdev_alert +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f794ce get_mm_exe_file +EXPORT_SYMBOL vmlinux 0xf6f89388 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf719d55e fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0xf72b1c1a ps2_init +EXPORT_SYMBOL vmlinux 0xf7336db6 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xf7364bbb i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xf73a5888 check_disk_change +EXPORT_SYMBOL vmlinux 0xf73dc4c6 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xf7520d34 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf76d6cb5 dec_node_page_state +EXPORT_SYMBOL vmlinux 0xf78e4e60 have_submounts +EXPORT_SYMBOL vmlinux 0xf79db479 dev_add_pack +EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0xf7d39100 path_put +EXPORT_SYMBOL vmlinux 0xf7d9e369 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xf7eba07e sk_wait_data +EXPORT_SYMBOL vmlinux 0xf7f9e314 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xf80c3b07 submit_bh +EXPORT_SYMBOL vmlinux 0xf81103ea radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf82746b5 pci_iounmap +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf8288d3b filp_clone_open +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf837fd3f kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xf84a6d84 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0xf850315e qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xf855a240 kern_path_create +EXPORT_SYMBOL vmlinux 0xf86d6cdc __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header +EXPORT_SYMBOL vmlinux 0xf891af3a con_is_bound +EXPORT_SYMBOL vmlinux 0xf8a601b6 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0xf8e279e1 inet_frags_init +EXPORT_SYMBOL vmlinux 0xf8ebc4cf netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf9172842 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xf920c9c5 vm_map_ram +EXPORT_SYMBOL vmlinux 0xf9261b4d pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0xf958027b copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xf9827217 arp_create +EXPORT_SYMBOL vmlinux 0xf9865cf4 elevator_change +EXPORT_SYMBOL vmlinux 0xf98868f9 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xf99509ce agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xf99ff02e acpi_os_get_line +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9b0ee69 kdb_current_task +EXPORT_SYMBOL vmlinux 0xf9b74ab0 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9f316fc agp_create_memory +EXPORT_SYMBOL vmlinux 0xf9f77da3 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xf9f89266 may_umount +EXPORT_SYMBOL vmlinux 0xf9fa432f blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xfa05d645 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xfa4a024e kernel_getsockname +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa5299f4 iptun_encaps +EXPORT_SYMBOL vmlinux 0xfa58b6b2 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5bcf35 mod_timer +EXPORT_SYMBOL vmlinux 0xfa69e50f blk_complete_request +EXPORT_SYMBOL vmlinux 0xfa8703c2 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xfa9eda50 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xfaaa533e single_open_size +EXPORT_SYMBOL vmlinux 0xfab1e4ea agp_free_memory +EXPORT_SYMBOL vmlinux 0xfab5b59f __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xfac09b7e param_get_byte +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfaf2289d mpage_readpages +EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent +EXPORT_SYMBOL vmlinux 0xfb154e77 __scm_destroy +EXPORT_SYMBOL vmlinux 0xfb237a3a netdev_features_change +EXPORT_SYMBOL vmlinux 0xfb2580ad vfs_mkdir +EXPORT_SYMBOL vmlinux 0xfb339fa6 mark_info_dirty +EXPORT_SYMBOL vmlinux 0xfb503396 pnp_device_detach +EXPORT_SYMBOL vmlinux 0xfb578fc5 memset +EXPORT_SYMBOL vmlinux 0xfb6432e2 get_tz_trend +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xfb86cbc7 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbb7d7b3 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbeaf180 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0xfbf1561e inet_register_protosw +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc5d869d param_ops_byte +EXPORT_SYMBOL vmlinux 0xfc734327 queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0xfc78b99f scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xfc7ebab0 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xfc872fd1 get_ibs_caps +EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0xfcaf6ea2 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfce90241 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd046a6a inet6_add_offload +EXPORT_SYMBOL vmlinux 0xfd092335 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xfd26fc43 blk_get_request +EXPORT_SYMBOL vmlinux 0xfd371383 nvm_mark_blk +EXPORT_SYMBOL vmlinux 0xfd45ee82 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xfd72e931 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xfd752518 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xfd8205e3 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xfd950f57 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdd01f6b give_up_console +EXPORT_SYMBOL vmlinux 0xfde508e3 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfdfd6c90 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe047ce6 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0xfe13c522 acpi_install_gpe_raw_handler +EXPORT_SYMBOL vmlinux 0xfe1e5310 init_net +EXPORT_SYMBOL vmlinux 0xfe25f544 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids +EXPORT_SYMBOL vmlinux 0xfe291bab nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xfe2f4ef5 nvm_find_target_type +EXPORT_SYMBOL vmlinux 0xfe3acd50 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xfe55768f reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0xfe5d30e9 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe6a4da6 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xfe73198b xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xfe7bfec7 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe7df4f1 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xfe80cae1 uuid_be_to_bin +EXPORT_SYMBOL vmlinux 0xfe8a4d43 max8998_update_reg +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe9869cb ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfea6f98f rt6_lookup +EXPORT_SYMBOL vmlinux 0xfeb03435 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xfec9b24e compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee12bfe sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef2c78f idr_get_next +EXPORT_SYMBOL vmlinux 0xfefc2c38 __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xfefd969f copy_from_iter +EXPORT_SYMBOL vmlinux 0xff0a78d1 neigh_destroy +EXPORT_SYMBOL vmlinux 0xff19aca7 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff673d0c __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff7aa7cc tcp_parse_options +EXPORT_SYMBOL vmlinux 0xff844dc0 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff9a9df3 param_get_string +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffa355d1 __register_nmi_handler +EXPORT_SYMBOL vmlinux 0xffb585b9 vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0xffc22884 poll_initwait +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xfffb3a3d skb_checksum_trimmed +EXPORT_SYMBOL_GPL arch/x86/crypto/aes-x86_64 0x7060bf0a crypto_aes_encrypt_x86 +EXPORT_SYMBOL_GPL arch/x86/crypto/aes-x86_64 0xe409b491 crypto_aes_decrypt_x86 +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x13a65ecf camellia_ecb_enc_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x17bf48dc camellia_xts_dec_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x1a08ded1 camellia_xts_enc +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x47129015 camellia_xts_enc_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x7d54edc2 camellia_cbc_dec_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x7e87ef55 camellia_ecb_dec_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x8f185793 camellia_xts_dec +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x9e8086dc camellia_ctr_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x16061d06 __camellia_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x1636abdf __camellia_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x1da0e256 camellia_crypt_ctr +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x2d47f895 lrw_camellia_exit_tfm +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x31bbe42b camellia_crypt_ctr_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x50dc55b6 __camellia_enc_blk_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x5ad0a78a xts_camellia_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x8d24e716 lrw_camellia_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x930f687f camellia_decrypt_cbc_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xa41a5ad3 camellia_dec_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xf4521fda camellia_dec_blk_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x3880e8fb glue_cbc_encrypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x8f02ac4d glue_xts_crypt_128bit_one +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xb0c545aa glue_xts_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xd3b1be94 glue_ctr_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xe657fa0a glue_ecb_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xf0850c51 glue_cbc_decrypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x016a957f serpent_xts_enc_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x0c5a8af6 serpent_xts_dec_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x0ff3c26d serpent_xts_dec +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x606a8162 serpent_cbc_dec_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x716d2fc7 lrw_serpent_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x79ff0b7a serpent_ecb_dec_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x88ff5d26 xts_serpent_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x9ae34b2f serpent_xts_enc +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x9e018632 __serpent_crypt_ctr +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x9f99663c serpent_ctr_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xa84ea33d serpent_ecb_enc_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xb912e55a lrw_serpent_exit_tfm +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x19dc7881 twofish_dec_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x5e752773 twofish_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x18efd107 lrw_twofish_exit_tfm +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x1fd77fb1 twofish_dec_blk_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x2fa7c2b3 xts_twofish_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x61694b97 twofish_dec_blk_cbc_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x8d75ab44 twofish_enc_blk_ctr +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x8e856922 twofish_enc_blk_ctr_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xd635b052 lrw_twofish_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xf2e80e9c __twofish_enc_blk_3way +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00448522 kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00afaffb kvm_default_tsc_scaling_ratio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x025b3c7d __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x082c1e2c kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09dcff38 kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b03d249 kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b61d4f7 kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b9e47bf kvm_lapic_expired_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0c62d19c kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ef4e6cf kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1059fcc0 kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x10ca42c1 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1272b16e kvm_vector_hashing_enabled +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x12837d8f kvm_mmu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13748b5f __tracepoint_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1481b2a5 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x14ccbc41 kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15df548e kvm_apic_match_dest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x174e55f0 mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1876ea2f kvm_mmu_clear_dirty_pt_masked +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1aa0541c __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d0df29b kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d2a41e4 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1dbd261f kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1dca24a3 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e83731e kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2153fd48 kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x22a7546a kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24480d0e kvm_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24834b92 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2598b367 kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2598f1cf __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2644b0e8 reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27325eb4 kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27d19228 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2877176a kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x29c39934 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c84b973 gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317f9e6b kvm_enable_efer_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x33fc06d2 kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x34d01a87 kvm_mce_cap_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x366601ea kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3805e474 kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a65a400 kvm_init_shadow_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3aaeb139 kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b45d88b kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b619995 kvm_set_xcr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3df914a1 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e36e7b0 kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f8f9119 kvm_no_apic_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3fcb7ab9 kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3fd58cf5 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4116d08f kvm_lapic_reg_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41e4ee3c kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42544c94 handle_mmio_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43624e32 kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43912624 kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43b00f02 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49e26e7f kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ef2b7de __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ff4e0c8 kvm_mmu_unprotect_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5135b400 kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51c6b134 cpuid_query_maxphyaddr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53792f4a kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54c8d486 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x556200be kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55f45259 kvm_lapic_hv_timer_in_use +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5a1e9c2b kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5a1f9299 kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5adbf4a6 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c4fc9ce gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d84c596 x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5e7e473a kvm_mmu_unload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x60d2eb01 kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x622bebf6 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6271c967 kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64020e10 kvm_set_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x650cb4e7 kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x675101e2 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x693befa0 __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x69fecb4c kvm_write_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6cc302ac kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d55b559 kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d813ca9 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6e0713fb kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6e26ae32 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x707bd1af kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70e78d3e kvm_after_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x716fc9de kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72331b9f kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7252893d kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72c20542 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x751376b0 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x753bb04f kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x76649161 kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x77712861 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x78457ef6 kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x793b886b __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a3684a0 __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7b009ee9 kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7b8065bc kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e017d4e kvm_mmu_slot_leaf_clear_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7eba939c __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fc86342 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ff8463a kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831327da kvm_max_guest_tsc_khz +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x84b05423 __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x85374674 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x860161b1 kvm_lapic_switch_to_sw_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x882064f3 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ab7a963 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b014a38 load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8bf0cdd0 kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c965b72 vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f68d821 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8faaa945 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8fcce0b8 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x90c1ea4b kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x921be9bd kvm_lapic_switch_to_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x928606ed kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x941a55e3 kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x961fffa4 kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96dbe382 kvm_mpx_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x990de97f __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x997b74f8 kvm_valid_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a216313 kvm_define_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ac769a5 kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9b43f936 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cec0609 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d556429 kvm_vcpu_reload_apic_access_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0d034c5 reset_shadow_zero_bits_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa18bb283 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1b08e53 kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa40792d3 __tracepoint_kvm_ple_window +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa5a86c6a kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa5e073fc kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6f3e838 reprogram_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6fabdbd kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7608f9e kvm_mmu_unprotect_page_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7d9c68f kvm_mmu_set_mask_ptes +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa87a86b7 __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacb36c13 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf060898 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb116c78a kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1575b34 kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb21feccd kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5350dc7 kvm_mmu_slot_set_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5d851f4 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb68827fc kvm_get_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb68c7b69 kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6ceca19 kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6d14955 kvm_mmu_sync_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb9102afe kvm_fast_pio_out +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9ed435 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb072aef kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb62d51d __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbcf1ed4a kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbe4649c0 kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc0b85b7d __tracepoint_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc401906d kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4b51f9c kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4e14ad8 __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc56d75ce __kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc599bc18 kvm_max_tsc_scaling_ratio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc76d33db kvm_mmu_slot_largepage_remove_write_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7f5ca3b kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca7817ac kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcac4def7 kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd161ed2b reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd1bbbdce gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd2d0c03b __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd30eea75 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6bddd87 __tracepoint_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd767c127 kvm_scale_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd97e2574 vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd98c8a9c kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe33cdc00 kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe431af77 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe7c95b04 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea574374 x86_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeaf8f009 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed14517d kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee407d0f kvm_lapic_reg_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf298ef82 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2f286c4 kvm_tsc_scaling_ratio_frac_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf7ba696d kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf91933d5 kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa6c2cc2 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb6e49d6 __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe1c5d25 kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfed01f28 __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff2f07ea kvm_before_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff4a4ab8 kvm_requeue_exception_e +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x19f30d00 ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x551fe44f ablk_exit +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x6d99c62f ablk_init +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x763ed1ab __ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x81f76ada ablk_init_common +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xc14a35f5 ablk_set_key +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xd882a168 ablk_decrypt +EXPORT_SYMBOL_GPL crypto/af_alg 0x115df17c af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x11badcb8 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x1a6bd43f af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x444c20fb af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x51e5038f af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xa9673184 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xdbd4b5e5 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xdc729477 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xe6273ad5 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xe6f7ac6f af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0xf2043eec af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x7d4f2814 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x34419444 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x3a8a9982 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x651771c5 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xacf245f6 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x6cb414ff async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xaab02e8c __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xacecd552 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd71beb17 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xd3bcbc59 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xe1f4107a async_xor_val +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x583dca43 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xa2859ff0 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xfff99910 cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 +EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x41356c39 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xd1b1fbc9 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/cryptd 0x06f81c5c cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x0bfbb4a1 cryptd_ablkcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x4022e933 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x5beb8146 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x6d46cc7d cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x7d0b4b6b cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x81437b08 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xa5328e10 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xa874b361 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xab710bdf cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xc794d620 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xefe7b100 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xf334471c cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey +EXPORT_SYMBOL_GPL crypto/dh_generic 0x9edeb49b crypto_dh_decode_key +EXPORT_SYMBOL_GPL crypto/dh_generic 0xa9c31fb3 crypto_dh_key_len +EXPORT_SYMBOL_GPL crypto/dh_generic 0xb25efd9f crypto_dh_encode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x597307c5 crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/lrw 0x18745d3c lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x40e41947 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0x5074ac50 mcryptd_ahash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0x52b89ba6 mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0xdd8f4e88 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x47c90161 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x7364efbe crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x8743f854 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xb945d692 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xc7effa97 serpent_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x8ecae8aa twofish_setkey +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x6523e1ea acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xfabd64ac acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x1c8984c7 acpi_smbus_unregister_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x87bd07bd acpi_smbus_register_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xb9a141b0 acpi_smbus_read +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xe1372311 acpi_smbus_write +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0541b1aa ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0c1fccb4 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x11ad80f3 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1320ba66 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3428cd15 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x35f14faf ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x56162da1 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5b20374c ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5f8a9f94 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x64c0586d ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6a4461a6 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6a717ac9 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x71bd8d82 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9a7a7f67 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9ec319b0 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa7eca848 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb30f9d19 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc1707726 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc3a30cc2 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc6bb1c34 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe748d01d ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xed134a38 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfbfd527c ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0bd1c592 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x26bca554 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2a7d9183 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2b4a955b ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3f3f2c83 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x41ce5b40 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x63bd3b09 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x88dca55f ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9b02bf14 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa20c6114 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xae313dd7 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb0940e9b ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc7a50e89 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x39f480b2 __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/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-spmi 0x05073519 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4a1fd5dd __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x61b2cb92 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xa6a05d31 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x03c8b651 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0b5c6645 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1b977c5e bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2f4281b3 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3efbf616 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4274e7ad bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x447a10e9 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x48bffb53 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x63232d77 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6cf3e1d2 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6d3d803a bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x74a5155a __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7ff08126 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x81993c46 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x97f6eb2e bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa5dadb32 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaed8c8ea bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb54883f6 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbbc70a36 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc48ab75e bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc56d4a23 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc9720f71 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe108d294 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfff9dfa1 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x08d66dff btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x20724110 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x364be8d8 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x58014993 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb5aef6d4 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf391aba0 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x05e40d9e btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x196c7959 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3342c29d btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x67b7ba60 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7302d242 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7ed29e8a btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x827fd4ed btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9de94191 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa905d13b btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb010087f btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd0a7acd5 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe5a4a7e8 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf1c11e8e btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf98a4816 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x108ec2dc btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1b6f3df5 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3147c653 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5cd313d9 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x64d104fb btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x74814012 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x835a1354 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x96cb52fc btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb7ecac6f btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xcbb932e5 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xde88d33b btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xd3713437 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xdcb47717 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x614f8173 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x8272c2b4 h4_recv_buf +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 0x3a1a3979 ccp_version +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xda48ce3f ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x02ef9a44 adf_vf2pf_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x03062bea adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x03949527 adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0d164767 adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x31e1f486 adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x48586828 adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x48c9b806 adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x55df464e adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5addeda9 adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5b88f7d8 adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x60a2cf21 adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6123eecd adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x626781fe adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x69ad7448 adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6bd0872d adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x77aaf029 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7db69f5a adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fb9ee93 adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x809f6023 adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x80b472d5 adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x86b704c0 adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8a666030 qat_crypto_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x91fca33c adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9bc6f1c2 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9caad57a adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9de9df4f adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa380c9d6 adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa712b7aa adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xafa92e6d adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb38b911b adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb6e62a38 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbb422189 adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc6c824b9 adf_dev_start +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 0xceb0ae36 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xda938d56 adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xdec91a05 adf_iov_putmsg +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe0f95c28 adf_vf2pf_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf1001576 adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfd61871e adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/dax/dax 0x17bce14a devm_create_dax_dev +EXPORT_SYMBOL_GPL drivers/dax/dax 0x7132dc68 alloc_dax_region +EXPORT_SYMBOL_GPL drivers/dax/dax 0x85fc80e9 dax_region_put +EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x1780571a unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x31a2c8df dca_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x522317a2 dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x890c2c62 dca_add_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0xa7297c03 free_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xac34ecec dca_register_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0xcf0ff8e1 register_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xd4107dc7 alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xe999ea60 dca3_get_tag +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x380c9251 dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4294f745 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x6978c4b7 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x6e83fa09 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xcf32ff40 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x20c6a699 hsu_dma_do_irq +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x9e3880eb hsu_dma_get_status +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xfd9dfb66 hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xff3fb45d hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x52e548dc hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x5de77d14 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x21e7161f vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x5d014d85 vchan_tx_desc_free +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xa20b4175 vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xe34597a4 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xf4f6bb47 vchan_init +EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0xa7a7f7d6 amd64_get_dram_hole_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x02b9a12b edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0a8a531f edac_stop_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0f7cd763 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x12680e0c edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x137ff094 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x189cf231 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2191bab9 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x22d6cf16 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2f17402e edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x370d9378 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x38548bcd edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x43282c20 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4909e4f4 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4e508041 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5479a4e2 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x56903183 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x746d905b edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x841d87da edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8b2a7b14 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa3695636 edac_queue_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa92325ff edac_mod_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb14d054d edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbc0aff77 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xcf36c9ac edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdd847a99 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf7cdf0be edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x14878009 amd_report_gart_errors +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x1d34e996 pp_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xb30b7e56 amd_decode_mce +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xc389e498 amd_register_ecc_decoder +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xd062ca76 amd_unregister_ecc_decoder +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x9bd94b27 get_scpi_ops +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x02f37271 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5fa211f9 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x89465055 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x908ad890 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb2bcd75a fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xef2094de fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xd1dc6603 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x6bf7a559 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x709b187d __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0667f5bb drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb0472484 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf74adef8 drm_class_device_unregister +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 0xe7237b0b i915_gpu_turbo_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x66842d34 ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xb040a906 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xc8c9f97f ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0bd1d977 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x12823fda hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1aced7ab __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2d5fb9c6 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3326396f hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x41babc19 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x440771f6 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4541a0d7 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x476f631b hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x597b9280 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6085fe4f hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x711857e5 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7594f3c2 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x79530e39 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7d84539c hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8d9f9f46 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x93a04d7b hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x998fe736 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x99c80986 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9ae04818 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9aec3a5b hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa807b9e7 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xac1fb410 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb018c211 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb1cbce43 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb2d08fe7 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc89c6201 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcebbb634 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd5a8fa83 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xddd895a4 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xde4ee29d hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdee2a7c5 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe132f231 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe33b3e5a hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xee05c0af hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf59a7002 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x244e0ce3 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1c66d4df roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5e376c0a roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x75e91d94 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x92160c57 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb1d5ae85 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf5a0959f roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0314b40a sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x11cff585 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x3ac1c681 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x46e32ffd sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4ab8941a sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x85845fef sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9acb28db sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xaa1d4e76 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf82342f8 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x10a0a197 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1931db65 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2fafefbc hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4ba577b5 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x62f03d02 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x69264be6 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x86bf1008 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8939ec5d hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8b6e7ad0 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x981a956b hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa03de9a8 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb05e2ad2 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb96f8555 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbb326a41 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc741afbb hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xca592edb hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xce92a358 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe45b7062 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x17e58b1c __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x25a0a3d2 vmbus_cpu_number_to_vp_number +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x294a8fcb vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x49a414ee vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4ac1c293 vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4dc067a8 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x53274271 vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x64806492 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6aa34549 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x95d2d664 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xac190aaf vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb7236667 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb93e3544 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xba7a520b vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbfd5f1f8 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc4dfe1e8 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xce1ff543 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdb2f6047 vmbus_free_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xddb2b0be vmbus_sendpacket_pagebuffer_ctl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe233c4fb vmbus_get_outgoing_channel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe8253ce2 vmbus_sendpacket_multipagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeabe6679 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeadb5fcc vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x8a0664bd adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xbb9543ff adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xf5545045 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x107f1fcd pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x118d7d9f pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1afcf0fd pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2c0c9e74 pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2ca69e0c pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4de943a1 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x56862caa pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5ec44e60 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6df717ec pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x93db9327 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9e4b51b7 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa1d1a5a8 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xac2dd676 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe1be79bd pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf4cbcb28 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x091e7574 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1fffae0b intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x42e375a8 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7b440671 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9e48a859 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb1c6b24b intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb7824ca4 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4ffa1723 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xafea8d9a stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb28fb723 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe99054c2 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf94e7c43 stm_source_write +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x069ac032 i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x8210b97c i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xca7f9e8e i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xd727c0a9 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xe3f6e625 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0xf702433c nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x22963e76 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x5eb6027f i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xa39e60af i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xbee25b8a i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x36c04f87 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x925c3d3a i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xac3fa74a i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xb01e139e i2c_setup_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x1cca5ecf bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x2d3624e4 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x671a33a2 bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x7a255b72 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x1523ebcb mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x231841b2 mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x86d5adca mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0e2891ef ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x17b98ebb ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1e84c7b1 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x28b96e07 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x318fdde3 ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x48134c8a ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4d52b8e6 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x834afd5a ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xcabf8cbc ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion +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 0x577ec478 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 0xb1b70d81 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x4de9d882 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x6ae9ef4e ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x57c4b022 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x5c69a77a bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x956ab538 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x19836bf9 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x33a82005 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4dda15ea adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x54e19b05 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x648806c1 adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb197d6ee adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xbaee035f adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd4a3f483 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd4bb9ae3 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe9b5189c adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf1586d61 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xfaf9038c adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xa6ad3f37 bmi160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xc4577b91 bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x12d64113 inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x26b2f9af inv_mpu6050_set_power_itg +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x87844191 inv_mpu_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x92042e8b inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x05876538 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x08f24ed9 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x165a2b2f iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1af5181c iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1d7f51e1 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1e378eb2 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x23d98c4e iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x33e1a4a1 iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x36a0a91b devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x445fb9b0 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4795c051 devm_iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5372ec49 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x666b5439 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6e1cc505 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7717536b devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7953e0f9 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7ef55ea1 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8403b00a iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x85d09c9e iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8f14e288 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x91e4d583 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9998ab34 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x99d36259 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9d38aa67 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa3901a95 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb32ef446 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc0c6a4a4 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc240dd54 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc618ecb1 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc94cd407 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd26c126b devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdc38ad38 devm_iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe182aaa3 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe45f5c60 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe8112503 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf1548331 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf18054a0 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf6af32b2 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0xb5422088 mpl115_probe +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/sw/rxe/rdma_rxe 0x3fecc576 rxe_dev_put +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x5e763ae0 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x0a78363d 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 0x0c56eeff rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x13302e5e rmi_get_register_desc_item +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2a20706b rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x466651f1 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x466a618d rmi_read_pdt_entry +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x50810d3a rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5c550dfa rmi_register_desc_calc_size +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6cbc4677 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6eb26e0d rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7059825a rmi_register_desc_calc_reg_offset +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x715c31ff rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x74894dea rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x97f48a9b rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb14231ff rmi_read_register_desc +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb9bc05ad rmi_2d_sensor_set_input_params +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xdd4dbe55 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe95e4b1a rmi_process_interrupt_requests +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf7fc5195 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xfd61c52a rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x175f5d7e cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x203be8dc cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x772e1db4 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xa58a2944 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xc884125d cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xe06c0bd5 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xf64c1c7d cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x24e47594 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x32706e76 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xb282de08 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xf568f924 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x086140d7 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x27de61d4 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3a607c8e wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x665880c5 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc50e31f4 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc75680c4 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xca0e86ae wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd2507ff8 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe7c043cc wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe9c1867e wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xeb74614a wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xffff3dbc wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x039d25db ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x464a8c3d ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4cd1a59e ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6b5920a9 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x73d130e8 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x957edfae ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xaa5779f3 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xaef1fe47 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xce0ab6e8 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0885e161 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0d585135 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0db003f3 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x35457b04 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x38a5db07 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4ab6630a gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5141ac3c gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6a3db290 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6b6677f5 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8a32b6b8 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x96e174bb gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3622354 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa80b5cb2 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xbd822d09 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd17c57a9 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe0ce6f37 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xed008e13 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/leds/dell-led 0x86fd1ffb dell_app_wmi_led_set +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3311c9dc led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x5ab77121 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x66322496 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7206050d led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9aea425c led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb3d933f4 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x02160ce0 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0b65a19e lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x11b1e0dc lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2000d69b lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2bb1cbbb lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x49737056 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5501c896 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9fd769a1 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb674147a lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbc34bc49 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xccbf6f50 lp55xx_read +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/mcb/mcb 0x0066b995 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x07efd9ee mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x1ab2ad6f mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x27f3062d mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x45e0e7d0 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x54b40684 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x68e29227 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x70c98bf9 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x986b52ce mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9fc4af7d mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb2df0f64 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc7b2a03f mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd7689b83 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe6941215 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x07b0caf6 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1bcb69cf __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x290dee5b __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x29bfa0b4 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2e9a0300 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x350f0b52 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3eabc650 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x40978466 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4797ee5e __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4c5dce08 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51c85a21 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5930cf1d __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cb40ec5 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6d024748 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6f4bb251 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7a8a162a __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7c234702 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x898239dd __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x940edb75 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x94287194 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9dcb7c83 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9fb22838 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa4f27010 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7c2e5d1 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbb4a3f4a __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd4abe767 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9dc9cfa __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda147480 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe16ef8f4 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe43c667b __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf16c2227 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x013dc837 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x04ad697f dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0512c7e6 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 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3e909be2 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5b19936b dm_bio_detain +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 0x761d1054 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8d15f668 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 0xd899b2a6 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf9ca8e6a dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +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 0x9310ba06 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa448e19f dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc984681f dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +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-cache 0x1a44ab4a dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x1cfc6bc6 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7f1b417c dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa02ed538 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbcbf5e4f dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbe8c67f3 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xfcf2e63a dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x5f284296 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xc27a1f9c 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 0x239b779a dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x32b270f1 dm_rh_mark_nosync +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 0x3fc2102c dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4430764e dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x569f625a 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 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state +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 0xc5ed8166 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc7481247 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key +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 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x17c36f29 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +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 0x32b5f546 dm_array_empty +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 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42dbdfc3 dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x489e526b dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49b35849 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x55b4bd4d dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk +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 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit +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 0x827a42f4 dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify +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 0x966a8838 dm_btree_lookup +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 0x9f624559 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xafeda29f dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd29923fb dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf375d009 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf5455120 dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0x00096a0f cec_set_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0x4961a844 cec_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0xbff6533d cec_phys_addr_validate +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0xd2f2eac1 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x14358acd saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x271bf8ba saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2f37f107 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x477f8091 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6f92c468 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa498f492 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa6e38a06 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb493ae5d saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf5342f1e saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf5a5402a saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1e0aaebc saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x20078430 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x665320bc saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x68de454b saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xc6b8b667 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd13228fb saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xdad1df8c saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x05da06ad smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2d778db9 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x338ab590 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x40590e66 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x51708dd9 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x551263eb smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x56bbc41f smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5bb655d2 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5f54bc4f sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5f92d291 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6b8202b9 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6d0f8416 smscore_get_board_id +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 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa7c17b27 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbd9eb7e4 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbe529961 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd8bb6e97 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfba51a9a smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x0756995d tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x0b63430e tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x1c236f52 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x395504e9 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4cf9e178 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x5c15f12d tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6da054cc tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7527c0ad tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x89685ab4 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x8deb2d91 tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x9e9e5267 tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xbbf641fb tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe01d21d2 tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf26d0c08 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x724868b2 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x41aa4789 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xcde2821f tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x01160ae8 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x061eefec __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x0720fbee media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0x0b9d6688 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/media 0x0dc65e03 media_entity_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/media 0x0fcc6289 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0x194ef324 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/media 0x29cd76c5 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x2d435100 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/media 0x39073183 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x43a634ef media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0x63d3d36a __media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x66f8eb83 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/media 0x68950b0f media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0x6f0ca04a media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/media 0x7846ed8f media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0x812e789d media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x8233491f media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x8cbceb0d media_entity_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x8e746545 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/media 0x9fc72c92 media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0xa288e813 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/media 0xa81bbf35 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xa8851638 media_device_init +EXPORT_SYMBOL_GPL drivers/media/media 0xad9cabec media_device_get_devres +EXPORT_SYMBOL_GPL drivers/media/media 0xb88ceace media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/media 0xc69b4539 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0xc89da1fd media_device_find_devres +EXPORT_SYMBOL_GPL drivers/media/media 0xcbcd99a2 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xd1d45bdd __media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0xdc581289 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/media 0xdee71599 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xe7c580e9 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/media 0xe959e3e3 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xef0e9581 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/media 0xf47b4d3d media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xf4e9450b media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0xfc8ab31e media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0xfcc98526 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xa53d1e42 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0c483b1b mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1c3c8f77 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2c3d3466 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x39898ed3 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x40340249 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x50b74a06 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x53075ee9 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x661feb11 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6a6b1b52 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6f743d10 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x78428b91 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8aa665ce mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x920e079a mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9214797c mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xae7cac0b mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb15adf95 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbce3d680 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xed5252ab mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfdd11ae4 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x153aef28 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x22d44e4f saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x29ef7888 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x41937910 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4fe5c009 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6c8c6298 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x811fcb93 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xad474ce3 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbefccd4f saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc2c57a88 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc6d1af83 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc76672b1 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd2794ff3 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd42aa7bc saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd5898dae saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdf26b671 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xea439e41 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf37cd1ef saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf811babc saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4fbb0902 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x597d0842 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5e7c426a ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa10997ed ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa810c58e ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd1d2aa5a ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf388b72a ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xc9ff82f3 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xfe555745 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x20266413 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2e004d5f ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x42d535dd rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x457c5b7e ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x53efda4b rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5e070cc0 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6732a4d4 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7a581b6b rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7f1b14d1 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x859ca594 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xaaf7c53f rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb445a418 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb4f6cb0f rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd611cff1 rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd63e2fb0 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xde1f0f18 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe639f349 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe692f05d ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xff468dc3 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xd7834904 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xe64b5543 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x6442a378 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xe59f0cd5 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xaebf7dd9 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x950b08ae tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xe7b1d905 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xeba02fc4 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x6d2dbeea tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x6669abe2 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xa51699c6 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x09fb386d tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x3607d849 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xf04ddc18 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0849a019 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x19bac791 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2e69185b cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x31b32789 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x492f3ff9 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4ecad0e4 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x55ad23a1 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x572a213b cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5b97f444 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5c36d74a cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x63ce62cb cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa8698dc1 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xadb4d348 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb0a2561c cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb9776cc6 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc864b451 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd174b4d2 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd312f4a8 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe71e769a cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf5a1e458 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xa4623fef mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xe9f88cb2 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x11cd104d em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x170b0a8e em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2e1c41ac em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5b590a1d em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6a8a7fe5 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6fdde860 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x72e86d93 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7323c509 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x814b4103 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x88c0c16b em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8a22322d em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x92844435 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x99a45124 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd059627c em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe2fd09a5 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe69876a5 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xeeba3f5f em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xeeff0448 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf156f6bc em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x580e1c5d tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xca4e0995 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xd9e54107 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xea00e72e tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x1b5e70f5 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x2d7c7e1b v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x6f858a8c v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x85a198f8 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xa4769695 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xebe228e6 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x363ad524 v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x1ea91d13 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x3ae8501b v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x01a10bbf v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0cbc777f v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x19b26ab3 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1bc4f1fe v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1edd8287 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2125a8aa v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2a060d4e v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3b7a5374 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x423368e1 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x42356b75 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x61ef64d9 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x63bc6e4c v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6b463dd9 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7065f8c2 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x962c3363 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9b5d262b v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa19aa679 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb5da3af1 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbb281c87 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbcd9b80a v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6e0fb97 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd91bf834 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xda5f135f v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdd0cdfb3 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe270d415 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe55be16a v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe96640c5 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0e380790 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x16d58347 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1cbac3b4 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x489b6565 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x530c54eb videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x580a6b48 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5ec16dbb videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x62f1d0b8 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6674a1da videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6aa64b7b videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x799006a7 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa3e557a8 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa45b78ee videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb3d793d5 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbaa7e822 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc3a43164 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc89c3de6 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd28d5eab videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd835791b videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd9e3be52 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe4017afa videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe96fa958 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xeab6cc8f videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xec0c35c8 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x5e7840cf videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x853e376a videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xb8958267 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xe7db6c6a videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x034ce301 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x8c0ff961 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xe5f5f9a4 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x03911930 vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0a601317 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0c38d6f7 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1a1e756c vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2abf76df vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x36021b74 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3716bfed vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4692a61b vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x49a5bfea vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x49b0bec9 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x630db371 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x66963379 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6908bc9b vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6e3e41b3 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7815ca79 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xae5b439d vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb85a238c vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc00ebe30 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc3473707 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd31c5559 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xed20f1fc vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xfb8effb8 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xfcfaf00e vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x00ffa4dd vb2_dma_contig_clear_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x126056ef vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xabea7940 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x7b7005bb vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x9a82e510 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x017e5ece vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x100bf0dd vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x17def3a6 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1abdb5bf vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1d2ee263 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1f9a947a vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x243819da vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x292185a9 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x341e7d26 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x409c1aa5 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x494bc5e8 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x506d52b9 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x56d612f1 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6978b168 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7a7ba0ce vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x83690e2f vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x869f8c51 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8bba3d6e vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8d3420f0 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8df9bbae vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9ef3209d vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa904ae31 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc71b0a58 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdd65d0b6 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xddb2611a vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe9fd85c2 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xef728671 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfc8732b5 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x2515603c vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x09bf24c8 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0e295565 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x12fe176a v4l2_subdev_alloc_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x16acf9c6 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x17c1f7e4 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x189ac4ca v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x29ded27f __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2dcb1f71 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3b95828f v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3ede7bca v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x40c8fdee v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x46e6ff46 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50d65b11 v4l2_subdev_free_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5132e234 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x52a2c16f v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5ba2d5a9 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5c4002bd v4l2_pipeline_pm_use +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x66e2d9b4 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6b46371e v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ccfb6b2 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x73a4ebf8 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x753f5d54 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x800f0bd8 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x802da970 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x80d57551 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x83c6d3ce v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x88b65ae9 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8db6c2de v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9600f805 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa31ac8b1 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa41f8703 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xabc7f54a v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xac0ef1cf v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad4ffbcb __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbb2fe576 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc2c5c338 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcb0f7cb8 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcd5c3cdc v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd5bba620 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdff470d9 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4a17f70 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe6d92357 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeae8d411 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf0c3ffa0 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf7644398 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xbe69814d pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xc8226bb8 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xff36aa51 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x043af70b da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x18e02d46 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2719d7b8 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x755710d6 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8bac37b3 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa2cd3396 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd3817e6c da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x0cc86e73 intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x206990bf intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xab63b2cb intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xe691447d intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xfde96222 intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x05ed2f49 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0bbe9f69 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4a9490c8 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x70ccbd92 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x80e3450a kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb1e7dbdc kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xc22cd536 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf588359b kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x5ca6ffc9 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xc1af4c80 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xc406a310 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x3037335a lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7dbabf75 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x819e05af lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8ed0a317 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x92884103 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb5081376 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xd790e7be lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x7b6e4ab7 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xcf2c2641 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xf7b05adc lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x22eb409d mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x30e4b5f5 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x62510bbd mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7208ec5a mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x900bb584 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x97e4547c mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3a0d0878 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x587b967f pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6c1190d4 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6e66381a pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6eae2e4a pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x71f029d3 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x79c38166 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9c75639b pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9fdbb1e8 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa4a99897 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf4ccb585 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x09d4e677 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x95bf20b3 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x11f74526 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x393bcc6a pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6d166cc6 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xdb2970c8 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf5e159a9 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x03f4f040 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x17111643 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3940459c rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3cb412ee rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3dbff6db rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x499c02d8 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5c9cb99f rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5cca3b0a rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x62ea7b14 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x95001a86 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb137e38b rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb7ed51b8 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbd279721 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc2ee1d0d rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcd868f18 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcdd7c197 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd2fccabe rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd8d3f10a rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe4cc52b5 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe9a4870e rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xec69cfd1 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf48662cd rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf5b3d16c rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf5d5b2a9 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x3b5d610d rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x619a46d0 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x685dee73 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x78672d6b rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7a161098 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x8d0025fb rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x8e0674e1 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x97ace31b rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x99eecb7a rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xcaa07250 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xcee8f062 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xdc3f69d2 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf812bb04 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x02d05928 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0f47bd2b si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x199aeed1 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1ca048da si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x27c789f3 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2ef2b10a si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x34782669 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x38536f69 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4310e0b1 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4adea98f si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x507862d0 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x507a67de si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x52d038c5 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x686d3baf si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6dc69bed si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6f106132 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7448fe84 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7806fede si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x878bb0a1 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8f3b35de si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x91c161bd si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x96f637f5 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa7937d54 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa92309c9 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xad84c7b9 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb2d56162 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbdbb024f si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd0ac6185 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xde5db944 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdecf33fd si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe1501a02 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe2f57c2e si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf61323f9 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfa919e4d si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x20cbb69f sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6a8d4974 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x752882bc sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x97b1b989 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xb0a94962 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x18a71fe8 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x46efc3a9 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x97d1f1e5 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x9fbc255c am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x5b01c39d tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x5e1c0bca tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xb7b92a98 tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xbf6950dd tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x11b4dfd3 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x213faff6 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x9b2d3f61 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xdcbf7455 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xd1fa27ab ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x00b3122c bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x67fd57a5 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xc53e02c2 bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xf6fd9476 bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x10a4f237 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x206238df cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x328b4e52 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xcc24645d cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x13432988 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x22ffe0f5 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x50d3c10c enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5b515d2b enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5ca08353 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6c460ca6 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x71114311 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd9d4f43e enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0054a0f3 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x355b86d7 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5aefd805 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5c307f6d lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbbe04f50 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xce030748 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf4034c66 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf7cb1fea lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x08d74620 mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0dd587fb mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x23050c58 mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2591431c mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x28d355b0 mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x336e3bd7 mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x341c3dcf mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x36f7d504 mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3b2f468e mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3ee0639f mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5772502d mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5c81a272 mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x653e0816 mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6c2a943e mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x77cb3179 mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x89e425bd mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9bf8a156 mei_cldev_register_event_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa7902e3b mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa9b1a133 mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb2340089 __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd435f7c6 mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd5e96584 mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd85adb19 mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe8dd0278 mei_fw_status2str +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf028edab mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf3ec223f mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf823008c mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x00a71f46 cosm_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x28f32b82 cosm_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x4ee1becc cosm_find_cdev_by_id +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x8177f027 cosm_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0xf320af5f cosm_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x15d38c9c mbus_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x1ca3732d mbus_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x6441612f mbus_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0xa62fd22c mbus_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x421587b7 scif_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x5235ec0a scif_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0xa704dcc6 scif_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0xfd304250 scif_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/vop_bus 0x130ce553 vop_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/vop_bus 0x36c4b0f4 vop_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/vop_bus 0x3b8890a0 vop_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/vop_bus 0x81b65ad2 vop_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x02709f6d scif_listen +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x03184372 scif_fence_mark +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x13456d45 scif_fence_signal +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x16261e85 scif_pin_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x16875988 scif_get_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x1ba146f0 scif_client_register +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x1ca1f3a7 scif_bind +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x23398dc9 scif_poll +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x31f517c5 scif_get_node_ids +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x47446001 scif_recv +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x4b81fd2f scif_register_pinned_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x5e8f6f43 scif_vwriteto +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x603f3722 scif_unregister +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x918d8343 scif_register +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x997649c1 scif_open +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xa204b5fb scif_readfrom +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xb5079302 scif_close +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xbc058070 scif_connect +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xbc1dd1f8 scif_put_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xbe7324dd scif_send +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xc1755059 scif_writeto +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xc2cfda93 scif_vreadfrom +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xc4dd1e5e scif_fence_wait +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xcb9711de scif_client_unregister +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xd6e2a0d0 scif_accept +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xfd611f07 scif_unpin_pages +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xb94303a6 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xd32c34c9 st_register +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x0f6680ea vmci_qpair_produce_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1152e318 vmci_qpair_get_produce_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x13aa5a5d vmci_datagram_create_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1872c7af vmci_qpair_produce_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1a195863 vmci_context_get_priv_flags +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x28526257 vmci_qpair_dequev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3ef56cd5 vmci_qpair_alloc +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4b630dac vmci_get_context_id +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x50a255c9 vmci_doorbell_create +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x677c36d0 vmci_is_context_owner +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x69ef87ff vmci_datagram_destroy_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x6cc1a5f7 vmci_datagram_create_handle_priv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x722d488a vmci_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7d540b50 vmci_qpair_consume_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x81d61eef vmci_qpair_dequeue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9624c58c vmci_datagram_send +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9973b9b2 vmci_qpair_consume_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9d16164a vmci_send_datagram +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xcbbfa089 vmci_qpair_enquev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xccbb53d1 vmci_doorbell_notify +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xcf5ed7ef vmci_event_subscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xdac94780 vmci_qpair_get_consume_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe7e7c107 vmci_doorbell_destroy +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe9065a39 vmci_qpair_peekv +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0268a634 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0ec78cb8 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x17d3ffbb sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x25324b73 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2b515eba sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x493cc502 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5a1a506f sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x61a46e00 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x708d68f9 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x79bd1f18 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7f6fff2e sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x98ee1783 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdb023266 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdee3e3ab sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe0750b09 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe795c6b4 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xeb4706a1 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xed58a3ff sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xefca0920 sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0ab92fd5 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x300e9d80 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x356933ae sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9455a13d sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb3bb4a59 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc3137888 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe0d804cc sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x5a6d1585 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x6544306d cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x985a15fb cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x012b6993 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x7f792243 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xf2d2a615 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xeb17c41e cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x098eba1b cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xc117f106 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xc76ed63a cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x001911d6 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x04566b61 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0805cfdf mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0b87ef66 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0e4c9a61 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x11150764 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x11ddf6a4 mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x124d7b71 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1586e5c7 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1bc4ac78 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1c762f65 mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x24ceeb62 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x29f934ca mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x301d332b mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x352d58ee unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3a3171ed mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3aecf199 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3afab283 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3c7c9ff1 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3e56e575 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3f386fc8 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x40c0944b mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x40d6e062 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4bd73eee mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4d45037f mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4e502602 mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5301af61 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x66b9300f mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x695c7582 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x697b2c9d mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7a5cfa45 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8336c810 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8671ee59 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x896ff4b3 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8acdd36d mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8f2e485e mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x95d24c6c mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9610fba5 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xba1dea08 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbdb887a1 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbf082d7b mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc1552964 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc21213aa mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc6f5061f mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc7e8d95d get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcd3dc2a5 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd0597fec mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd5c0c9be mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdfc4a0d7 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe798598a mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xef713d0c mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf0b4ca1c get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x40f65ea1 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x4b88ebf4 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x59adeb33 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x76308e06 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa3998886 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x0b12908c nand_ooblayout_sp_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x718ddc20 nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x859f17f1 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x9a847cab nand_ooblayout_lp_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x2277d09f sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x4b7e5d8f onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xf2cb91c2 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x94d158c3 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x02999711 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x02c51a01 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2dc60c3e ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3b76a624 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3dfc1471 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x40f2a473 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5bba0fc1 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x681e2101 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x90018c38 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb1c0c8f9 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbd917857 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc47a010a ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc72ff168 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc7410176 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x3e0bbac1 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xfa33e65a devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x06fb14fd c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2aaa9b0a c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5c418845 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbfb094b5 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe5a08cfa alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xfe1549bc free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0573d1b6 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2a189078 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x329e8db0 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x32a93041 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x35b5e794 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x38e4eb1f can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3d1b8583 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4841355a can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5485ffbe register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x573460c1 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x591837e2 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7269560e can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x73057ba5 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7e17924e free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x981abcfe can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xcc07e518 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe23d3ff0 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe5520eb5 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x457696a1 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x5e46112c free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x8f67dc89 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xae1ac0b3 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x08c2d63c register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x542ac250 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xf23eb942 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xf5333d89 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0265b3c0 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0415df8a mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05307568 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05d4f518 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x077a37da mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x078c317d mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08443597 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x089fbcd4 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c15fb14 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fb54e4f mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fcd248a mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10ad41ee mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13175915 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15e625c3 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x175dd7fe mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18439eea mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18a9ee5a mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f747b7b mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fcc9a6b mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x220a5afe mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22431712 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x285f4a49 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f8a04ce mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33c2dc7e mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a523b30 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d11a766 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46588890 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47b4c668 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49dedf17 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a41fe61 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b00dbe1 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ea6af81 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ed0b7f4 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f06259f mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x525cfd3f mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52e0d608 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53c706f5 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5496395b mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5914136c mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59e9ac51 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b0b0ea5 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d4935e4 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e33d972 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f600695 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6195d34f mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x645c154c mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6524c143 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d824c32 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e979425 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72a8633d mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x738734e5 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x746611fb mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x786b6b98 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7acb9348 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b65da16 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c546803 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c951f40 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7db3a9eb mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e3f51b8 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84630df7 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84872569 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x849c2b28 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ad8db7d mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bf062e5 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c30dc43 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d356b54 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d46eaf0 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e6a8d6c mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ecb116b mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ecd89fb mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94978cb9 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x950b2b0d mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9685842f mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99ad1a90 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ac5d468 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bebc08c mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f2f7a8b mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa03258ea mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1ca1a79 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa322384e mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3c97c55 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa874249c mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9d4947b mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad888379 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb186acec mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2dceb06 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb44aa458 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7336235 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb77f0d28 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc2b5828 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe2e8887 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbea1774e mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf3af7c6 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfc6b5d6 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc02b860a __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc08b8e33 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc43fc8dd mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc60bb6ae mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8832fdd mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8b03867 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9286b9e mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbe28257 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc2ff530 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc9bc084 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdb0c745 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf5e8506 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd41387af __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd488f1dd __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd746db8e mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8efbe2b mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd965b7ad mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde0793a9 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0d0c6b0 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0f5d74b mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe307185b mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4e4757b mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe63820c5 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6500a46 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeef4f865 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4bb9cca mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5e1dc1a mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7bf344e mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8d8a633 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcb29a82 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcb8a6b2 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdd4f42c mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02d3b5d1 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x036c604d mlx5_core_dealloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07d49ff9 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09a56e8a mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a77f31a mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b722f0b mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0da61f6e mlx5_query_vport_admin_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13721800 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x162d8795 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19517c4c mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a44da36 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20b5ff6a mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20e70119 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21e09495 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x249b0fd7 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26902354 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e2f12f4 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30773350 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35835191 mlx5_set_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35d5dc77 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38649ddf mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x387a0cf0 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x397eae0f mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3de7c75e mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4011c786 mlx5_modify_vport_admin_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41d4b197 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e52d2d5 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x531f542b mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57f669a0 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62ec04f9 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6400eeab mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64493e66 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c22b299 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d8aa210 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7101cf70 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72ebf2cf mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x739be01b mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7580a208 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75e6880d mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76ccec42 mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81774ded mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x820dbac4 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87182cfb mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89886b97 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e4e5612 mlx5_core_alloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bf2d22a mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e285242 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ee65d99 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f23ab41 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1eb7194 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9a69214 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9b9745e mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa887efd mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaedfc6a5 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf010d9d mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5c38811 mlx5_core_query_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8da039c mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba5c49d7 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6777125 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8960d2e mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcceb6778 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf209015 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd35d0b87 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd77a1f1a mlx5_nic_vport_disable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde885c67 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe684ffe6 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb93210e mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec5e3279 mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee0fb530 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0c715ea mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2102e08 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2fbf7f6 mlx5_query_port_autoneg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff4dd53f mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff6c8971 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x5e28947e regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x8b673431 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xac144314 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x18989158 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xbd889680 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd0a26d98 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xff3aaf96 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x406a0ceb stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xa89d0400 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xb18412e9 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe6e9795b stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x010847e7 cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x01f4bd1f cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x139fe7cf cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x2966b238 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x3c50d216 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x3e1e133e cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5efd3333 cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x726b8533 cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x83029ed9 cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x83051e35 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xaab7ec84 cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb2424f10 cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc1c6c00a cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xcc974aa3 cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf680cdd1 cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x17406fb9 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xcc732483 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xdb0fb574 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xf5fdb9f0 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/geneve 0x5496311f geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8e7c05db macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x932c0804 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xbefa66f7 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xfed046bf macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0xc3faa786 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x14baa465 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1d65cb2e bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x23e3246a bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3865160f bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x56729960 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb5909803 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb7629215 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcd2da297 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe0785b1a bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf5f6271b bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x270e29da usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x292387af usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x30d06fc7 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa4b436ff usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1021ba36 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1640ab37 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x292a432f cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x58f48f01 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8734f680 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa9715e9a cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb377ee78 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe1c29711 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe491b7c6 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x278e467c generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6fcd9e3b rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa7887bde rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xaf189e31 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc6e7a6c0 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xfd109502 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x019bea20 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x093be24a usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x099a1404 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0fe7ca37 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x138bf292 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1655875b usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x16804a10 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x24be3f1d usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x36e6712e usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x37d8d3da usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x43f57483 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5899d905 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x64011bc1 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x70abe9e2 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x72374236 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x728703c3 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7976348c usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7e9f4dc4 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x82501777 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8c7bca40 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8ce7111a usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x92c709f2 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9583e4b5 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9d6846ca usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa12db917 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa1978530 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa2a03ec5 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa692c22e usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbe1726e0 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd4ec5dcf usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdabb31a3 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf28cd7d6 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xa123eb74 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0e953187 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1d4fe400 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x245b07a9 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x35a9aa02 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x41dc28ef i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4b6d81dc i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5ddcfef9 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x779fc576 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8d1a50ce i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xab2a9779 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd686654a i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd81b8581 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe4079b86 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe8a394c1 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf64cfb0e i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfda419d1 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x925b9a8e libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x187dfd02 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb74fda44 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb76297fd il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc8b487b1 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe5546fea il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x04035b16 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0deb9cf0 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1aa8f16d iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1b074767 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x232eb969 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x276eb3d5 iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2e913a42 iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3b7fb744 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3c51b479 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3c86e321 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x42470a49 iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x426e0dd8 iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4da2ef5e __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x50ae83e3 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x512a2413 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5a878190 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5ee5ab54 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6d96008f iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6dd2bdd2 iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x72bb62ed __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x74969c32 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x77f6012e iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7de5e5d5 iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x80277344 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8ab14d93 iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x92b15a52 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x95965ded iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9a3194b6 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa3e46e31 iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb306599d __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb3471afc iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb8979af3 iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbd17e615 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbf48a552 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc4a8fc91 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xca5344e8 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd279035b iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd49b4b3e iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd53f756a iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe6dc2bcf iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea80f394 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x44d47a75 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x46e587d3 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x70e0197e p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xa317612d p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xab45426e p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc4210543 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd49841a5 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xdc01c6dc p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe4b3b804 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x04317137 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x072f5c95 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x31bb91a7 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3924b1ca lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x464477aa 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 0x74884ac8 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7c5b4c1f lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8526f6c0 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x97f2ec77 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa3a9f430 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa7a5e099 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xadfa8f16 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc890b28a lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd8a8693b lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe89633e8 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfe8508ea lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x05a335d7 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x2b62acc9 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x4f8b8b47 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x565c53e7 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x8024eb5a lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x98d00dd7 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa458e04c lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xaa145a9c lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x12463481 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x125243ee mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3687c0c3 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5a2bd1c9 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5af82cb4 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5b2086df mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5d711917 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6eddf0b7 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x85848420 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8eb798d6 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9fe09286 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa916ccd4 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb7afe70a mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbc526708 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc1f76428 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc9a43f66 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd7848a71 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdc33c530 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf37854c5 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf647822a mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x046176bf rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x046b5fe0 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x071ea835 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x081fea00 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0fae9fb0 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x10d59b12 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x20818405 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x23500067 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x248f7143 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2cb89319 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2d95c433 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x334993ec rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3e0d3b57 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x40e3dcee rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x461ae7df rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x510239f8 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5a0b9bfd rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5a528a14 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6483af3b rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x71e5da51 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x73c54f60 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x74679a6f rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7d0b1d6e rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7d30d59a rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8206ac63 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x865961db rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8e635ff2 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x91b2740d rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaf3cdba0 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbc358080 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc2db67c2 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc4e30aa5 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc71b19f4 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc9be76cd rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe5afce78 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf25a353e rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf689c83e rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfd39af25 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0c50f92a rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0ca1ce12 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0e0552e6 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1af052c8 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1e12ed9d rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2269048b rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x37a03ffa rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x73e5ca73 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb68bcee3 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc154b7e2 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe7c2a3ba rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf8163dec rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf9eeaaa9 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0746361f rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0c574eda rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0da675df rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0ddbc959 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0fcd5d8c rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x16101d16 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1ce13207 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1eaa667c rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x21be6df4 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x22df8fe6 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x22fe0f6f rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2a9e5c96 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2e08cd30 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3ac727f4 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x48d729df rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x57d1c15b rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x59facd10 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5d121838 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6912cadc rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6bccdf32 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6d2e4924 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x705276a9 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x741120aa rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x75bc4a53 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x76ff4cad rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fe08c37 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x83b1f4a5 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8a65b581 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8b3589b4 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x914c4530 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xae199394 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaea5422c rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaf67389e rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb03eca57 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb143c822 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb9f065f7 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcad585f5 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd04de6e4 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd2498f65 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd4d30a35 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd7cf91a6 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd84cc104 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe5974dc9 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe68b0f21 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xead45909 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf714d01d rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x10db22dc rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x39232eaf rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x39e2b15f rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x80185c3e rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xfe42a127 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x4719f038 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x5b1acbc7 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x8ca55fe9 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xa21c4a93 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0af8a385 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1422e089 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x190ad670 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x24bf41f3 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x255bf73a rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2b10a885 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3753544f rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3b015e36 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x487586ff rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4ea6aa1e rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x558bc5ec rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x66fef1a4 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x672800dc rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8f19b377 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x976e237d rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd06895e2 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x103a1ebe rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x12fdae1d dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x220666ce dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5591db4a dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x16e976c5 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1ad91bec rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1e329587 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1fc47dbf rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2f6219aa rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3b3bbda0 rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4219530f rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4e46ae5d rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x52ab585c rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x56e5d3b0 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x57cf4fc7 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5b250b28 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5c62b391 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6455475d rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x70589720 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x762f62d2 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x76cd79a4 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x76fa300d rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x79df219b rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x80e8a60f rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x84138ecf rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8b2b0d0d rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa3e2a9cc rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb932e7db rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd5318391 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe1ab8e12 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xeb1bd0bf rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x03a7524d rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1044d682 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d5f321b rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x34244e7a rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x397ed77e rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a57f2dc rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6abb998a rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b4de810 rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x74624e7f rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x76bd9204 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7be1ed85 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8134ec3f rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x89ed6915 rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8eeca9b2 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa02e7f91 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa08b9e86 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafcdc668 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb8a69787 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf0e859e read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd23a3d0c rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe879e5c6 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf96a6303 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x31866a8a rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7fd333e9 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x804aae25 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xbe40d86d rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x4193f435 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x6b9293f9 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xaac2707c cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xebdd08b6 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x81f08efe nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x9a6e4138 nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x9f382b11 mei_phy_ops +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x8c1bd8e0 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xa7b0fc60 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xacbeeb31 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xb25caac9 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x16ed165f pn533_unregister_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x7e32f9e0 pn533_register_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x9f649758 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 0x1a92f192 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x38a24dc8 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x598c92ba st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x6e04fe94 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x858ee3f3 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9bfb5df9 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb88f2477 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd5893885 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x6a72696b st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xd3b92caf st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xd6013712 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x085b9790 ntb_transport_unregister_client +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 0x6a7befd2 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 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 0xf0b84a86 ntb_transport_register_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/nvme/host/nvme-core 0x04a780ae nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x096acf8f nvme_put_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0f5ecbd8 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11297dbf __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x327858b1 nvme_max_retries +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x33162792 nvme_queue_async_events +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3bc803b6 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3c1506fc nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x570ac7fe nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5b531818 nvme_queue_scan +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6ee36568 nvme_start_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x862b2881 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8df4cd7a nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8ff9bd7a nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x96431f9f nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x988bfec2 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa1c1e3ab nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa9df8390 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xabdd3ef9 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb6bca64a nvme_requeue_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc4af2df8 nvme_init_identify +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc9f95bfa nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xccd63615 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcf1de49f nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd0996e0f nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf01579ee nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf958ab24 admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x066c4aeb nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x08cad66a nvmf_get_subsysnqn +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3ee07db6 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x42f15812 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4a23a31a nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4d805900 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x758450ed nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8d5a1d0c nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9a55f5de nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa7d5c713 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x33517ab5 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x38df0d30 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4a29a807 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6cbebfb3 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x731a5986 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8ed2560e nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xadec7f31 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x078e77f5 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x0e608d1a nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x14b48ff4 nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x224f51bf nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36d6e6b8 nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x758690f6 devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xffc11fdc devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x02c7d7e9 intel_pinctrl_resume +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x4d0501fa intel_pinctrl_suspend +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x4f3e8bb0 intel_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x527498e5 intel_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xb2d37c29 asus_wmi_unregister_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xead64890 asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0x51552fca dell_rbtn_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0xa060fe7d dell_rbtn_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x6fc812f8 dell_smbios_clear_buffer +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x8a79b3de dell_smbios_release_buffer +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xbde33baf dell_smbios_get_buffer +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xc2871e79 dell_smbios_error +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xd816c94e dell_smbios_send_request +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xf5197de4 dell_smbios_find_token +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x56235c72 intel_pmc_ipc_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x75068282 intel_pmc_ipc_raw_cmd +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xdea07053 intel_pmc_ipc_simple_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_punit_ipc 0xa6c87106 intel_punit_ipc_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x03584cfe telemetry_set_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x111aafa7 telemetry_set_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x1bbf0813 telemetry_add_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x1be25432 telemetry_get_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x4294042b telemetry_get_eventconfig +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x4cb51f18 telemetry_pltconfig_valid +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x50c1c0a8 telemetry_get_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x5847f501 telemetry_clear_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x611fd2a7 telemetry_read_eventlog +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x64c6a83e telemetry_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x73dcd24f telemetry_raw_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x82bb2dbe telemetry_get_evtname +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xb78846ce telemetry_set_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xbb9a2726 telemetry_reset_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xcbdc93cf telemetry_update_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xe7eb1528 telemetry_raw_read_eventlog +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/thinkpad_acpi 0x706cdcef tpacpi_led_set +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x3ecf6cfc wmi_install_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x561c634a wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x876d29f1 wmi_get_event_data +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xb5a6ebe2 wmi_remove_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xda29f8b0 wmi_set_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xfb882fb7 wmi_query_block +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0x7f7936d0 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0xace788cb bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0xbe802b1b bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x3a1c8d91 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x75ba438a pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xae3929d0 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x6365870a pwm_lpss_byt_info +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xafcf8794 pwm_lpss_bxt_info +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xb563cdb0 pwm_lpss_remove +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xbd93dae1 pwm_lpss_probe +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xc34d815f pwm_lpss_bsw_info +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3a16c74a mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xe56c3325 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xfd988ec7 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x047e2476 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x04d8341a wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x1f9bd9f7 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x448ee45e wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x95207f16 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x9f3f4f44 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xf06a5a5f wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0245d71b cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x091fa9fc cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x26ab5764 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2b63f89e cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x36e62435 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x42d64b4e cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x45117b63 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x48e89eb2 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5113539c cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x587bb2c5 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5aa891d9 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x64e63482 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x67feec28 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6ac6969c cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7026db29 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7578fab4 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7c247b4c cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7d8b779d cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x81f0add6 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8602371f cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8933d10f cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a71e428 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8e86da2e cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8f160225 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x94b249ce cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x980ac819 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x98f70f3a cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e295250 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa1f6eb42 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb38e59cd cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb3e570ed cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb8825160 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbabecefb cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbeab4d47 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbffe8cd1 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc90d1523 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd3622730 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd672a547 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe168355f cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe40ded92 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe5996b82 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe59b3b2c cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe670ddfb cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe6afbf24 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf94dd9bf cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x02768a6c fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0bdb99eb fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2e851b11 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3c2a8258 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4720899b fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4e14bb52 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8765168b fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa6f8b9da fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xaf121250 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb001a6c2 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb01136d9 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc7c46253 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd37e8eaa fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdb4db976 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdff09509 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe13d86fc fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x081632b8 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x355054bb iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x848c32a2 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9c21a2b9 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa597175d iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xdb0ab80f iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe97dde58 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x05bb5808 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x08af1c5c iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0c7af5ba iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e9c92f0 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x13a4015d __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x211c2b78 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x27641066 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2beb5edf iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2e05e57f iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x386c09a1 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x388bbc1d iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3a83a76a iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4202c3bf iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ce54e89 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5d681904 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6467c0a4 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x741e1870 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x746719d4 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ac2f413 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x813fd6b3 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x81717cbe iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x86e1e238 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8b63e415 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa0cdafaa iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa21a942e iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa4e40dfb iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa5147fcc iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7eb6ba1 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xabf511cf iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaf594029 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbcdde8cd iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc0df7eb8 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc4e62492 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdff009dd iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe09da593 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe296666b iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe8cdca6b __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xef00a0c4 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf13fc305 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf14bb2bf iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf2a011d0 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x01821ef9 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x01de5136 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1dadf441 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x39c1238c iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3f743df4 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4a56f199 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4e0217da iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6aa9f775 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x80ef49b2 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x849411fc iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x925a0229 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa82c60a3 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xab4229c5 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb6fc9b07 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd57ff9cc iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe549269c iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xed50bb0f iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x043ed131 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x07b989d7 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x121e2094 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x214ae3c6 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x382de027 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3cf0cd56 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5008a572 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x54b73907 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5ed1f196 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x71d6c2bc sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x72457370 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7e0cd8a4 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x87a14d16 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x87ecb31f sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x91398395 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x982f2898 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9ce617ce sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa19fdc3f sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd3c5701f sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xde110bb6 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdfafaee6 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe1c48f78 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xee78a59f sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfab7fadd sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0158a7d1 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x032ec8a8 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0acf83c9 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1ecd6c2b iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x200a0276 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x20ee42b4 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f03d63f iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x472c9424 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4a60f641 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x531cdefd iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x54bd9559 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5a5348ad iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5c557c44 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5faa2e05 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x645a404a iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x69e810bd iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x739c411b iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x74e9ab3d iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82334bec iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a64fc4 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x850269be iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8f9a7b7c iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x911d9dd0 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9663d93a iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9d93eb44 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e760401 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa7a972cc iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb98ce49a iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbcb54f04 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf875738 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc1b9e089 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc2825478 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc9314fb0 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xca78070f iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcde2ce88 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd01cdf2c iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdfb0ced2 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeb23339a iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfa1e0fc1 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1be01ffc sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x468b182c sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x9fba3b10 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd1858753 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x3bf3809d 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 0x05153052 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5c40df26 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x67ec8cd7 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6f7ba541 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7cc4945b srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc4c5c249 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x03396d1d ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x0e908686 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x16c10b7a ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x2a74828a ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x60210247 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x88bae8f6 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc720d35b ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x0ac119f7 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x1cb21c2d ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x2840bdae ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x3953bce5 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x62845a4e ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x701132ba ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xa1354e96 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x1a115f46 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3fde7200 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x5b364cfb spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x8d4bf6cf spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x8e57023d spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xad2f68f6 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xe17a0d3f dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf5c48c70 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xfc095ee0 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x75da6056 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x8b532afd spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xe315a2b3 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x03674513 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0c77a0ef spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x38cf7e00 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3c0a2d9e spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x52fc56da spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6c7545a1 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x70bc0781 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7cb55adb spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7cc24ee7 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8773a12c spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x90a7101b spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x990d699e __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa09d23cc spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe11b4cae spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe604c581 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xeae13a9f spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xed13922a spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf2f5e679 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xbef0db4a ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x09a1e62b comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x114bfbfc comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x15c84899 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x16a290b9 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x18b93d4b comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2524cf57 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x279aaf3b comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2804d939 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x322203d1 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x40aaaf4c comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5cec53f2 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x604a5214 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x65f1af02 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7453808e comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x79a04da9 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x819791ed comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x85f6ab09 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8c3ccbc6 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8c824592 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8dbe4e1a comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x97676e0b comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa2ede353 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa503a8c8 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xac46adb0 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xac8327ef comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb1f741d comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc15da366 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc1d5e8a0 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc469ab98 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc76c22f2 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xce6742a6 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd9c8f0d2 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xde787289 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe1dc0d65 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf70d4806 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x0c6ede1b comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x8200f1d9 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x9ea4533a comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa47bb655 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xbf034665 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xe6757e9e comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xe927cbd4 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xf7a0ad25 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x2aa29316 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x4afa9c01 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x5684c009 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x8bd07b8e comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x97d24dab comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x9b944023 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xdba89efd comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x45caecfe comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x670468c4 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x8394e3c0 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xc0d712d7 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xcd8c6a10 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xf16700f3 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0xf6d00946 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x71928ce0 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x8944fdf0 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xee6803c9 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x035732a0 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x067a7f6d comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2144dcc1 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2a34cb1e comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x38478134 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3c89ea96 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3de2fdf3 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7e90e154 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x85d86264 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x97c99a62 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb180ce4a comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xcc9362d9 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd84d2abe comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x87a646ad subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x949a5913 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xed043f1c subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x472a984f comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x5d1908f0 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x05f528f8 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1d21daf9 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1ea92a43 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5f3e9ca1 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x60f7ac1d mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7ac45203 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x86571fe5 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x89f0b040 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8c1d5a95 mite_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x93401a07 mite_request_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x953d2889 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa481f4b2 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xab94c4f5 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdcb42605 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe5f18369 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xebb7b3b8 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x116d92eb labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xc56b45c3 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x15f433c5 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x3edeb777 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x8dedc305 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xd03c054b labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xed841766 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2c8301b1 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x3ab26fc7 ni_tio_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x3e6d1089 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x4da010a0 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x54346f4d ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x7be3c8ff ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x7eb24a28 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9b167e15 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9d3c48b4 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb09eb6fe ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb814309b ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xccd3cc7e ni_tio_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x2fb85014 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x4275b6f0 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x6c07a678 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x823b1488 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb3638924 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xcf2d43f2 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x314746bd comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x3540756b comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x55a86a71 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x613ed3f1 comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x739e37a7 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xb6e71486 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xc8188cd0 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0x1130043c ad7606_probe +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0x7204f98a ad7606_remove +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0x89757f5e ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x995ead84 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/lustre/lnet/libcfs/libcfs 0x7c478bfb lustre_insert_debugfs +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x0bbe1998 lprocfs_obd_setup +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x0d4123e5 ldebugfs_register_stats +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x3acdda9a lprocfs_obd_cleanup +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x4d202888 ldebugfs_add_simple +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x582a8ee7 ldebugfs_obd_seq_create +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x7cf8d4f7 ldebugfs_register +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xa10baae0 ldebugfs_remove +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xa73986dc lustre_kobj +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xbffe51bc lustre_sysfs_ops +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xc2104540 debugfs_lustre_root +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xca8fffde ldebugfs_add_vars +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xf925d159 ldebugfs_seq_create +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x029929d2 cec_received_msg +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x0323dcca cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x15605f99 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x38e4b903 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x69123ae9 cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x9a5d38ef cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xc0613d67 cec_transmit_done +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xd295a702 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xf7cc66d1 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x24877a83 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x6de50959 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x74336e28 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x78c335a6 most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x8ba70f08 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x8c97205e channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa4c00ce1 most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc2fac244 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xcfd3786f most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe8187f07 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xecd7f1f2 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xedd48989 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x017cfb20 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1a8047de spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2ab8daa7 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x602f53d5 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6565847a spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x71e9ee16 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8b3aeb81 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xa124fc83 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xba8b45d3 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc968a085 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xebc3d783 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf570891e spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x0877dd5c visor_periodic_work_start +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x0ec0434e visorchannel_zoneid +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x149bde55 visorchannel_clear +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x1582a13b visorchannel_signalempty +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x37626eff visorchannel_get_clientpartition +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x39fe5de1 visorchannel_signalqueue_max_slots +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x4063ea9d visorchannel_signalqueue_slots_avail +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x444fb100 visorchipset_register_busdev +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x4e4bfbe5 visorchannel_signalremove +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x5af31560 visorbus_unregister_visor_driver +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x5c14cb14 visorbus_read_channel +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x5e533597 visor_periodic_work_nextperiod +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x60aaf74b visorchannel_uuid_id +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x720775df visorchannel_set_clientpartition +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x7948d062 visorchannel_get_header +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x7a4ec5c5 visor_periodic_work_stop +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x85b49e2d visorchannel_get_uuid +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x865e5ab6 visor_periodic_work_destroy +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x8c81e65e visorbus_disable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x96401fe5 visor_periodic_work_create +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xa428b832 visorchannel_create +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xac7771ac visorchannel_signalinsert +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xae9128e9 visorchannel_create_with_lock +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xb13b1563 visorbus_register_visor_driver +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xb4aab617 visorchannel_write +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xbcf16203 visorchannel_debug +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xca18358d visorchannel_id +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xcc89f91f visorchannel_destroy +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xd29b794e visorbus_clear_channel +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xe3b5efe1 visorchannel_get_physaddr +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xec775f7a visorbus_enable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xed313c21 visorchannel_read +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xee7d5b95 visorbus_write_channel +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xf990f627 visorchannel_get_nbytes +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x4b094dd9 wilc_chip_sleep_manually +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x639b388c host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x76838e84 WILC_DEBUG_LEVEL +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x97f14748 chip_wakeup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xac230a0d chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xb77b7f06 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xcfc6720b wilc_netdev_init +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xdc84b1a8 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xf971aacb wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x4959c0db int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x9dec929b int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x536e82df intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x6591ccff intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xd7b98d2d intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xfa8f6442 intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x1afb5a62 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xb4c17e53 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xd04a5591 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x3b96c2a5 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x6ce701a8 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x97b1283d ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xd8f45b4c ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1df68ecc ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2fefff4a ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x44aff975 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x734289d9 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x895846a9 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe70739a8 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x08da3398 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2d550d3a gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5f181d15 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6ac70fcb gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6c1418b6 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6c954b32 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7028c9db gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x73697c53 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9e3a8c66 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa06951a1 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xad732e67 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb84553d0 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbd9f13b2 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe4c77e29 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xec529b2c gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x2b609b29 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x87adbe2c gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x8adcc555 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xe92c98bd ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xf3efc05a ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x02ada3c4 fsg_store_ro +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 0x1977ccad fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address +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 0x2d10b6a7 fsg_common_create_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 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5227aa87 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns +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 0x5974de2d fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x59bde386 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x62ae47a2 fsg_lun_close +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 0x839358f9 fsg_store_removable +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 0x8dd68fdd fsg_store_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 0x987bc0cf fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put +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 0xa46e6443 fsg_common_get +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 0xb1671f15 fsg_store_nofua +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 0xb93d8e44 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc1080d21 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc2fda93c fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc3cc7f14 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc548c8e2 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcb4bfb08 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops +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 0x04ee166c rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0f7ce832 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2f5fe088 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3d877daa rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x617b8b6c rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x62df67b0 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x68c258ce rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6fd3b681 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7d584b88 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9ae7481f rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb3a0a974 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc342d436 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc5074f5e rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcf3f25f3 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe9413b2f rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0e1108ed usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0e9d09a9 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x105d3ade usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2b6d41e7 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x32ac8d68 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x32accd99 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x35a3d035 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x41c153a5 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x422626ac usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x43171a79 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4840edcf usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6347f49f usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68b49b06 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6cd7c8ba usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x72da77db usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x744b37e5 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8187be42 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x84affdd0 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x936e72e3 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x950c6760 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x99bb6ec7 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9baed2c1 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb34bfdf8 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbc4ded8e usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc6d3da55 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe0dfa525 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf00e45d0 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf9068f11 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfc41e471 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfeda0464 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x009d1d8d usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0c900b81 usb_ep_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x152e785d usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x155b9629 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x175aaf7e usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x19c4f2f8 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1a0a16d2 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1a69a2d4 usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1fe28cd6 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x20d2a8c8 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x213a7a31 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2e9029b3 usb_ep_fifo_flush +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3a53b0d2 usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3c01002c usb_ep_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3dba9b29 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4e723f9e usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5162f30b usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5a59d2c5 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7b5427cc usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x86574acd usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8fac60aa usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x965392fb usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x98d38685 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9911a6d1 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9d211cdb usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xad7c2ec2 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb40e0a52 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb6c1b7da usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb6fa8d98 usb_ep_fifo_status +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbed4237f usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcbc3f2ed usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xce3d337b usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd16b6bce usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd1f812db usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd67d8fa1 usb_ep_set_wedge +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd8d32b10 usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe1d970a6 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x3b567322 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x5cacd8bc ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x01dfcb70 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x18021763 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3e208016 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5c95ebb5 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6490f164 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7708151c ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x86471bf7 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd82471de usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe0f25cd9 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x4aa77d19 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x0abbbbd0 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x31b8b095 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x726c2078 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xae220797 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xcc5ae2e6 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xdaf05c2d isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xca9ef52f usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x051aa984 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x055ed547 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1035ca83 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x13a6f9c2 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2a392245 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x372dac24 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4664f77d usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4a341db8 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5b9ba000 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x61a0914e usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x64834d5c usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x65ba9c08 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x718863d3 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x818f5598 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9823cbf9 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xacd3cccd usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xafb6d3e2 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbbc98e2b usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xded992dd usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe8cfdf91 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfb6fd0d9 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0d723ba8 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1ae1cacf usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2727fd69 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2a956905 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x45290769 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x543a34ed usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5b64dae2 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x65eeeee4 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x66daacf0 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x68f55c5e usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6a9e55d4 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x75f4accc usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7cdd0512 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7e13a914 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x87c5598b usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x98909869 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9ff2d754 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xac5ed540 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd64205e7 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe1b8c969 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xecc4fc28 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfbbaff07 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfc632a9d usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfe237c0e usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x031b489b usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x051e8f12 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2d6dfafa usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2e062eb1 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x338d6323 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x41fcda58 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x620e8b60 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x66c95dcf usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa58f71db usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xabc0eb3e usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc9ea6878 dev_attr_usbip_debug +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 0xfb5309cf usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfc8e20d3 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0bd816f0 wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x5151570b wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x6cfa38bf wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x7f91f502 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x8454d50e rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x9edd6195 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa6b74751 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xbe948ad7 wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x05cd637d wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x1330b1e0 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x1a01841b wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2cbfd91d wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x55d9d387 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x797d0063 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8e15c0c8 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa0891ebd wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xad1b3a82 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbbc3b5a2 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbc1ff0f4 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd5a489c3 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfd43ea47 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe4c372b wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x4315f910 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x48cf9e9e i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xa8f8d413 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x2285e97f umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x28227805 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x351becc2 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x76b75a74 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x7c63a8ed umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xa6bf9238 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xac72694e __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xe52ce523 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x091ed882 uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d78016e __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fc02440 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1f5fb52c uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2c60d8f9 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x31e4676b uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3543934f uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3ca06419 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3df2b7d5 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x448c6250 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4514576a uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x45dd1990 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x487a3246 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4a961b2d __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5245331d uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e184c5e uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x60dc0bc0 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6437dfac uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6b010301 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x891caf35 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8a4fd160 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8ff6ad41 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x929e85d9 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x96455369 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x96f7abd2 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9842dfcf uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9d7d1981 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xad9d3007 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xaefec5d5 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb2729bf2 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc698b9d7 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd0bdd745 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd58fc341 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd70667d7 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdea43b8b uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe2f227f1 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xec0721cf uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf3384b86 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf651a948 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/whci 0xece2f1dd whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x40b3b46f vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4c4dfb3b vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4fdfdbd4 vfio_iommu_group_get +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x82035f33 vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9c93a4b8 vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xaf582722 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb1070cdf vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb3580af9 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 0xed8035f4 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x7c274f7d vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x905973fd vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x01c8e11b vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x051e1b25 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x05b88020 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0cfb2d71 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x114a9cc9 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1c3c4f76 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1f65c813 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x21629567 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x22a2c61b vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x34bf92a0 vq_iotlb_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x354256ef vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x400dc649 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4ddbc287 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4e3de296 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x51adaf1f vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6b5e182f vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6f6916cf vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x81ef9b28 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8ae2ac10 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x936378cc vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x979f4083 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9df0d2f3 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xad37dc51 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xada2bd68 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb39a70f4 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbe40d9aa vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xccfe91c0 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xce6afc42 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd0518234 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd266b01d vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd2d9f919 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd4e73e24 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd5a39c6d vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd6824967 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe28f6ff8 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe65d7987 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf1854e73 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf388e013 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf7d7413b vhost_signal +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 0x1794cc8f ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa007ff4a ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xacb3f0e9 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xaf69125f ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd5485b96 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe66f6796 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xfa0e28f7 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x102815a5 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x12cb02bf auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x1efc07cf auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x1fa72e72 auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x32b7e281 auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x89451987 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x8bbbe665 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa12ca4e2 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb1ebef5a auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xfd2b84b6 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x86cf5308 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x73ee031f fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xb571bded fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x41c764fb sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x8642cf4e 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 0x22a7af24 viafb_dma_copy_out_sg +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x292da7a2 viafb_irq_enable +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 0x79e6190a viafb_irq_disable +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x8a24ad39 viafb_find_i2c_adapter +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 0xfff2dfd2 viafb_gpio_lookup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x1624a052 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x562ec5ae w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9376b0f9 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9bd2314a w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9da7aca5 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xab7a0ab5 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xaf9da4d6 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xe7d9fc9d w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xef59b0f1 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x99e13654 xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x2733d55f dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x3f8395eb dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xf89ffd3c dlm_posix_lock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0517a096 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x502bd9aa nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x61d691c7 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6992fe60 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7f6b6299 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xaa7c5502 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc8b80ee4 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00ed286f register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x010b8d9f nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02dd9fd5 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04051967 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05bdc063 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x065f2e1c nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0bd288df nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0dd46332 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f6a1be3 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10a402db nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x136c5e0e nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1546f310 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x173e132d nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19a08d30 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19d08a2b nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a111b42 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a897f74 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20e231cf nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20ff6f74 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22e2a592 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25ab2351 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b3a9419 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b4a39fb nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2bb71026 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c01edec nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c544d78 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2df10d01 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f7f2d48 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fab261f __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x310b2a10 nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3143758a nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33f7ad59 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35cf8261 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x363f3709 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37af3a0b nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37e731c7 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x385db747 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e914763 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ea19021 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ffa0c2c nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41d7cd77 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4700541f nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4baead0e nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d03c6db nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51920bbd nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52639389 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5359acce nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54031a0f nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54c91646 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5523c5ed nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5793aa8d nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57d62a5d nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e0c9faf nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60f7f298 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x613cb005 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61d31e1f nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62c40568 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62fe9269 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66ef825b nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x697dece5 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ac5071f nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c641398 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fa88533 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7307c2c1 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b4d784e nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f0f5405 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84ab989c nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x886e4d76 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a52f7a0 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d9a0537 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x914086aa nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91449072 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x946b889d nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99dff7f1 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a60dd66 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bc7a41d nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e6235ff nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9fd5284a nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1385417 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2e8d56a nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5105708 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7b650b6 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac70c73e nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1ce1311 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb206c4c6 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb24fcad5 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4f431f0 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7dc18be nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb832b58 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc880265 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcf17267 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd266835 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd7a4212 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd90b250 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0bcb6b6 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1da6828 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1e27b55 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc29d9a0f nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6bea556 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcca0c6f8 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd6d7516 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcdbffe59 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf3125da nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2c79385 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd50c33d nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde93eb85 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0568e8b nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0819574 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1aec818 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe459e1ff nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe47cf5b8 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe632b6d8 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe703f644 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe860d8c6 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8906a1b nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe918a027 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed0dc028 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf037e401 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf50596dc nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf537853a nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf544fc25 nfs_commit_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf60d5c19 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7639d8c nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8bc37f8 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd07162c nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd635d4d nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfdd53a36 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe30d400 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x3b6f6f58 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x019aa785 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0dba2fb0 nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x13e9fc08 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16a26f2c __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c95706b nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x223a6d2d pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e126148 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e768006 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f0906cb pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3288f9a6 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35877180 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3613f367 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3dad8f1f nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x43627593 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x43ac8c53 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c2f92ab pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51968a5c pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5209de9f pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53d8b06b pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x541e79b9 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b74d030 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c9cdc7d pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5d172d59 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x64117273 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x65160677 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d0e00ae pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7bbf530e nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d102c15 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e666af8 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86830f79 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87dd2016 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x89bd3db1 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ac98c4b pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96fea305 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x97fef610 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x992e8536 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa11ec398 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa997c083 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaa4b2747 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb20b3cd3 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc3d26b9 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc95a46b __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbda19a15 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe675d33 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc5247534 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7732654 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc905e77f pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb580820 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf7b6124 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd3dfecef nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6e4f4f9 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdcaf2ee5 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdee5f02d nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdef18040 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5b325cb pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe8973d0d nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea549832 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb92505f pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3b73eb4 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4e6ff37 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfb45f3c7 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x235cb819 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x52b13b35 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x619e83f0 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc21224e1 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xea799e32 nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36a28a9e 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 0x5e7491a1 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x79aba6c9 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8a6c3350 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x93d555d1 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa064cce9 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbb5a1591 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +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 0xf41fdef9 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5107af89 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x61a71d44 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x66227e1c 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 0x94a4f05a dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb5054784 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 0xdca39bf0 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x04da55d6 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x065a5585 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4e546701 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4edc541a ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online +EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0x7573902d _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0x96293c5c torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc908e064 _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x7a93cf30 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xb0b18dd6 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 0x201d8ea3 encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x0adcb055 base_inv_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x221df614 base_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x4da25bec base_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x63f42b6a base_inv_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x76203267 base_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xca3140ce base_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfa5eee0a base_inv_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfc02472a base_inv_true_key +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xcbb64590 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xeaf896f9 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x16050d5e garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x451ec2c5 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x5d1857ff garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x5f0f3469 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x614fe112 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xae3cf1bd garp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x10a64585 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x1347beb8 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x1fbf52d7 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x26f186a4 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xcbbbd6a0 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xd6b30a2b mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/stp 0xa19afd49 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xfd2780cf stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x1f37dbe6 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xfbbf3145 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 0x0587fccd 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 0x09510bbc l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x247a6c37 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x467035f8 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4e90d2f8 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7a868191 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd4800100 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xdc7fca53 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe30ad66b l2cap_chan_send +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1d69fc19 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x256fc00c br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x54451f04 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6d880d07 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x75970b6f nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xaf5bd9fb br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xba174d11 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfcb337aa br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x13b09c3c nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x8de57820 nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/core/devlink 0x1e490da0 devlink_port_register +EXPORT_SYMBOL_GPL net/core/devlink 0x2adfaef1 devlink_alloc +EXPORT_SYMBOL_GPL net/core/devlink 0x754a0d09 devlink_free +EXPORT_SYMBOL_GPL net/core/devlink 0x7a194722 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL net/core/devlink 0x81db7bae devlink_register +EXPORT_SYMBOL_GPL net/core/devlink 0x86b8a497 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL net/core/devlink 0xa2579630 devlink_port_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0xb1fa8912 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL net/core/devlink 0xbe699bae devlink_port_split_set +EXPORT_SYMBOL_GPL net/core/devlink 0xc4b4a961 devlink_sb_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0xe142b4b9 devlink_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0xe8ceeb53 devlink_port_type_clear +EXPORT_SYMBOL_GPL net/core/devlink 0xf577e8d5 devlink_sb_register +EXPORT_SYMBOL_GPL net/dccp/dccp 0x05d1d0a0 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x13dca2ee dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x21fa3ea3 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2a897abb dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2b640b09 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2b71931c dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2e68f24b dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x31529d2d dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x34696363 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3d8fddec dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x47ef020d dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x49ffba98 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x54ff438f dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x57306b49 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x60eac93b dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x69ea9571 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x746a9da2 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7a01aa0e dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7c81d8cc dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8ec2d00b dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9125e71d dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x94fbf6e9 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x98806326 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9e618e80 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9e7cf905 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa798113b dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb27fa26d dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb61e034e dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbbd0db79 compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbd9aea70 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd46b3efa dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd6c4f98b compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xda4405c2 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdcb2b70f dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdebb3951 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xee197144 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x10133b4e dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x18449c49 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x37f2c7ce dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x549ec78d dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x62acfd12 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd699ec3a dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3c057b29 dsa_host_dev_to_mii_bus +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x52ba3a0a dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x751f3e38 register_switch_driver +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xafe06294 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe6911c8 unregister_switch_driver +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x183fc541 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7cd7a616 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x99b4c630 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xfc81ed0a ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ipv4/gre 0x224831a5 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x4eacc7f4 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1462a903 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x19d147ba inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x207991f1 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x591711a0 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6610cde3 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7ea7f5ef inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb020260f inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc9b3e69e inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xceca4e95 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xe9616b4f gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1e0e0469 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x380e17d0 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4ac8cf58 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x51fdb7b3 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x57d1a7cb ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7530a596 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x863553fd ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x937aab3e ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x95b5a103 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xac7fc7dc __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb2ddd9f6 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc46b58fe ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe24b193e ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf2c2a572 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf4415530 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xaadcb0f7 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x93e2c3c0 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xbc7f836a nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x0dd4dffa nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xa140333f nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xb57a4f45 nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xcdb24779 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xe809aa81 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xb05bab53 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7a5d2a12 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8f31ec72 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb9d89f89 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf6b58ccd nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xfa888971 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xff15d737 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_nv 0xff2014da tcpnv_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x1021aaaa tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x3da53b12 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x5e1714c1 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9847a485 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf214c8fc tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0a0f36ba udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0e48b3c0 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1f294296 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2109ac0e setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x29ad94fe udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x39a88110 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb5ac9a22 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x76cdb34c ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb85449e5 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc7a584ff ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x2984c404 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x59a0d395 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xa5f3128a ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x76c1c6c2 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xd4925982 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x3d6ed426 nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x47a35225 nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xbe1d03bc nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xe39eb83a nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xf3b809e9 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x775e6a77 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0e153061 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x899fb2c6 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc3c840bd nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xcca922f5 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf0ec2d10 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x0d623100 nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x03ff2ad8 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0d02e2f5 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1e65f17f l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2d29f7fb l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x364393c4 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4c483cce l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x52931f1b l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x53e33b04 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x58cb9c2c l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x72163cca __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x770d39e1 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa83a2a19 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcb244b42 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe2b2be40 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe5465718 l2tp_session_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf9752cfc l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xd3648a09 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x044186bc ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11e1f72f ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x14a91149 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f9aac4f ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2adcb0f9 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2c46eb48 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3e074d2c ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5ec9056c ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x79746283 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x799b5d94 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8868cebc ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x90baf9b4 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9380b860 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9694ba3c ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb5747df6 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb61a48c2 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfabb8ba2 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfcf9d749 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4b20b699 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x56e65530 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc7f2d9ea mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe07ead08 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0433a9df ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x09765902 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0bd7bcf5 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x21993fbe ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x24d4b981 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3e10ee52 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4ba3465f ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x588da54c ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6179ce28 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x65c19a97 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x70828022 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 0x829b309d ip_set_get_byname +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 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb3e93e3b ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc0ae02a1 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xce48fb11 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcf030090 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x08a1e51c register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x720730f6 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc4911579 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe3895f51 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00c447d1 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00da02d8 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01c8c826 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01ed8f1a nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x046b0d07 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0480871a __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07efe1ec nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a01a083 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ef03ee1 nf_conntrack_get_ht +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0fb5e89a nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0fd26bc2 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10b7011b nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12fe6e74 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x142f0517 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1468a528 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1497885b nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14c0d9d0 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18762e8e nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25066871 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2799aebc __nf_ct_refresh_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 0x2e24ba06 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x30dff382 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31381378 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x326086c8 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x327e9648 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c0359b3 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f566f7c nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4289b80c nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x475dc10b nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x501720b9 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ce453d2 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5eadadc3 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63da8647 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x653393c6 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x663b2336 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a18dc58 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d1c886c nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ddf55c2 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x71cb0e07 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x785057c8 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ccf2bc7 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f45ee3b nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82e05f97 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8572db5f __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c3372ef nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ce8204a nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f2f0555 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9033c815 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ddd8ed6 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa0477b95 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa37ae5fb nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4d06da3 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa704c111 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa72cfbf0 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xadb548c1 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae920348 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0d9941c nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0ee169c nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb17f302b nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb3c43d3a nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb98d5951 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe7bdac6 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbedaff90 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc30aa0aa seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc322024d nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc50c5419 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc746d1b1 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0426db5 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd41a78c5 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd68a0015 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8848093 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb49c67a nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba4b3c2 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde28a76f nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2423608 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2740f37 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe349ad1c __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6adba1a nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe96cbd15 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf496795f nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5fdafe0 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf73a369b nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb1d8904 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd0f8bcf nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x0e9a4fdb nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xca9b2219 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xcc67f66c nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0168194f nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x13c3c52f nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x208a4b9e nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x342e06e6 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3b30abc2 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6390f9c0 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x65af2ff5 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa66149de nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbb7e90fb nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xeebf22e0 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xfbd26f3a nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x04127c68 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x9ec095c0 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xddbd1b2c nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xf8c15bf8 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x069ac4c0 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x66335b9f nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x705eb27a ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8097d068 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9ecf145f ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa1ee3914 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd3bb6a3a ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xdd7b9a2d nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe8967d94 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x4ebfdf3c nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xd104127c nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xbaa05545 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x5dbd4cca nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x899a70b2 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xb969c50e nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xc7682e85 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x013d6422 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1bd92189 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x376a8b26 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3ead955e nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8901a003 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb5bb2018 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcbda264d __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcbdc78ae nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf3f031fb nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xb083cf5f nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xc515759c nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe263f817 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf8f3e327 synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0201a56f nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x34ed28b0 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3f55a969 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41c5448e nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x44f89ffc nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5c797afe nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7c62d3a1 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7d9c763c nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fde54c0 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x858def3b nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x93b57bf7 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa35b7748 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa4bf0d56 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbcdadb03 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc5c25414 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdd9ec57a nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdf125cb4 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe04e54ab nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe48adc81 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf06f6c0e nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x26a7827b nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2f4e7957 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x400b436c nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x405ee6d7 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8f66139c nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe4c99115 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x270b1e2a nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x27598259 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x922bfe2a nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x659578ad nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x57b4e7bf nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xb5f5895c nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xdd09151b nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x00cef071 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x2c6ec9cc nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x2d1b33ed nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x33242308 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x3598b3b6 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x55adbcd4 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x6fbb0d71 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x8bb2e416 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x56ca4c0e nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa02399a0 nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xc8f90f9b nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x43e91cfc nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x50f353c8 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x7b853c60 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0315b77e xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x039f36b4 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3909cf11 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4ceabf07 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4f3700c3 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x52028dd3 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6ab903f2 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7b7abfa4 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7d263388 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x80a76194 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x82340965 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x876c2b0b xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xaab6b244 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xad0ab337 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb462704d xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcd6f01e5 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe4f0cddc xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf2f79d24 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x4c32c169 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xb7459345 xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x53d25b9b nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x90849d42 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xea8de3ed nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x16323134 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x4d68cb64 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xb2ef35c6 nci_uart_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x303c2e93 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6fad87a2 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x79180480 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x82ddc129 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9234fc0e __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9e18a713 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc9931827 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe5bbb7fc ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf8dfd497 ovs_vport_free +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x04b0d961 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x063919d6 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x12c90950 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x1f460c9c rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2f75c729 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3283d0d5 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x3df24518 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x44dc1957 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x4a671476 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x4e57384f rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x5fce73c8 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x68587d63 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x7758d22a rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x7c329720 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x804be77e rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x82dbc349 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x8651e7a8 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x8d736e64 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xb721934c rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc98491ba rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xd50df893 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xde673448 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xea325813 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xecf6f676 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xedc266bb rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xef644eb7 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xf9b2f73a rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xff64ee82 rds_send_path_reset +EXPORT_SYMBOL_GPL net/sctp/sctp 0x4674ba2f sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x692add26 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xdd963afe sctp_for_each_transport +EXPORT_SYMBOL_GPL net/sctp/sctp 0xf5da8a7c sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x53ab8ede gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xdcf4a2e4 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xe88b2301 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00d80a65 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02d6b033 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03a0ec54 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0465fda1 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x049f7ed4 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05b77c5b rpc_init_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 0x0b4230ad rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fcdcb7a xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1079410e xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1137eb0b rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11e8eaf4 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1200c9c5 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x125b4a77 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15063991 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15d10ef4 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16eaca25 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17c14e65 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1afef7f5 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b606ac6 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cb096b4 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e6ad45f rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20d979a6 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x214f7c6b rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22282f75 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22c30a1a xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23d83ac2 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24008128 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24073413 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x240e38ae rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24401223 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x271dd9cd xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2809caa7 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29771a3a svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c06e58b svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fe344eb rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30372005 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31800832 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x326d33f1 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3587a3bf bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x359c23be svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37c3c34d rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x386b30ca rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x386d677e svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x395d3419 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39f63534 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bc9fd0e rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ce2ea03 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d5ed67c xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x408e678b rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42b6845d rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42ec2755 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43077f5a xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44398619 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453fda9e svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4581ac31 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45ef91af rpc_lookup_generic_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4687bbb2 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46969d4b svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46c071b1 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47168616 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47b1e34d rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ba9dc6f auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c5d3f3a auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cc3e9a2 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d736a77 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e628bfd cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e6ffcac rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f22fc05 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fa2096f xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x521b905c rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53543482 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54cbe10e rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x551fc79a rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5646a76a cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5913b4a0 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x598e41cb svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a1e84b9 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ada0183 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b6c7f5d rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b9a122f cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c9c986a rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5df12e94 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f22054c xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6104b6f5 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61e8fe51 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x630392c4 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6616b532 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67decb1b svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c61cf2b rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70400a61 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70a349df xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74392334 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76188d08 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x768fd49b svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7875edd3 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7884ccc3 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ab87c7e xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c2d6cfe xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c4b6974 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ea54d19 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80157748 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80afdfe1 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x827a4369 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82a830f1 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x832af507 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85c46aa3 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88021381 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x899afe16 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8aa1824e svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b5bda31 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dc535e3 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dd2be1f rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e9f93a4 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91b045e8 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92ff3c45 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94407fcd rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9568ee76 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x973cfabc svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9786ffd8 rpc_cap_max_reconnect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97b6115b svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9822da28 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9951acda rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b69fffa rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bacdc4e rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ddc0ed0 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9df4d313 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dfd5777 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ed2ba67 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa154a6d4 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3bf6ae3 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa434e5f9 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4886606 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa58a8840 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa66cc10e svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6daf6b4 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6f35d40 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa80b0b4a cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa880b85b sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacaf5166 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadaa3fa1 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadcb51a3 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae7ee564 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0279e5a xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb04c05cd svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0a780bb xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0b83fad rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0d72a60 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb258a536 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4b95930 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb634ba25 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7683623 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7cd1432 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8b7123a xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb935ceac xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9bd2a41 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9d01bcb cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba1bfcc2 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbac7396d svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe082674 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe62dc01 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbec2f6fa xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf23bd59 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0bf109c svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1ecf156 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc206a42a rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5f2d824 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc73105e6 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc886bf22 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8ead51c svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca26b48f svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc656e46 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0ad0184 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd266e074 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2ac4058 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd31c318e xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd40e8a54 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd410b3af svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6d8a2d5 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7a5cdcb auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f52a6c xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd801b48e rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd86e021f rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9a3aea7 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda338179 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb3ec41c rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc2e3d39 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe245c172 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe33a44b9 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe44f3b0a xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4ee6f72 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe96acffc svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee70e5fd rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf000ebfc svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2e26da0 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3213e10 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3a14ebb xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf67e8d4b rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6c5e38b rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7dd9eb1 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf80d4c02 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfaeb4acc rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb3f5e6a svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc2a4ee2 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc2c87d4 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdd1f714 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff71a4b1 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x02c45171 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x05c3329d virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0e44e5bc virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x11aa8b3b virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2b9ae66c virtio_transport_get_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2c73e699 virtio_transport_set_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2da39f26 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2e524376 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x38831c20 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3b17f26e virtio_transport_get_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x42e744bd virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x52294ec3 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x52e5d6ce virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6c7d9853 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6d59f321 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x79651a79 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7b219f2a virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7d07ef9f virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7dd73a1e virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8aea55d5 virtio_transport_alloc_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8cc61f20 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x98d42558 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9a7c622a virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9d9fa3b3 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9e72d496 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa38eee2a virtio_transport_set_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa593db91 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa9e289e1 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaa6db288 virtio_transport_set_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb544a2d3 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb961cea8 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcde36afa virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd5db7e92 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd9db9b0e virtio_transport_get_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe16ca3f8 virtio_transport_stream_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xed1551ff virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeec266b4 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfe370d4b virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0b434e7a vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x341d338c __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3f70a794 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x41aea280 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77faf187 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7b7d9a4f vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f655fa4 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8ff2ce68 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90de766e vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x912e1e6d vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc1f191a1 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc29df443 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf73f1586 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf74a76c3 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfbf321e7 vsock_remove_bound +EXPORT_SYMBOL_GPL net/wimax/wimax 0x1880286f wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x4d5ecfd8 wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x7f61d62a wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x7fda3cbc wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x86975c70 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0xac3ab64f wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0xbc339439 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0xcffa8901 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd1db4e3f wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xe665484d wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0xe69ac4ab wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xf71b6c63 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0xffd03d57 wimax_msg_data +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1128d800 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x15399e17 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1f962087 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2a4c09c5 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6040c68a cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x75fab1ac cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x86d4efbb cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8bc8ed9b cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x92b13585 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc0c369a2 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xceb4229f cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xec7ba7cd cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf7b1c8ff cfg80211_wext_giwname +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 0x3bf471d7 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x5b50d443 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x616214cc ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7395fab5 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xc0500235 ipcomp_input +EXPORT_SYMBOL_GPL sound/ac97_bus 0x70c0d5e7 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x8039b9a8 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xb9464ebf snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd 0x06fe589d snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x1d57ac58 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x1f71dcd8 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x4fb2e62c snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xa978a68b snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xdbe1e343 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0xf03bc6ec snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x0842e49f snd_compress_deregister +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x4bc7c2c1 snd_compress_register +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xadca5374 snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xdcd8f186 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 0x116e6002 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x32830d55 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5fd09a08 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7e77ca16 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8287d07f snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9d43688b _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa1be0e85 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 0xbea8fcdf snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xbf98b76c snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc933bc02 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x02ee753a snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1072c38b snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2156b452 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x402f2384 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5057636f snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5b666946 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x605e01dc snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd4bb85e6 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdddf112f snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xea23597e snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf7010b7a snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3a35e537 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7b673264 amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc311ffba amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc7305820 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd6c558c9 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdc88a59c amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdfdeed6d amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x06efa27d snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x08f7fbd4 snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x09d62e45 snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1babff5d snd_hdac_ext_link_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1c427136 snd_hdac_ext_link_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1c6a9357 snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1df77372 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x20d4b467 snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x30db45eb snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x317c56a5 snd_hdac_ext_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x33537d7e snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3f96cf7c snd_hdac_ext_stop_streams +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x47f886e1 snd_hdac_ext_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4e8eb0d9 snd_hdac_ext_stream_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5eae7e9d snd_hdac_ext_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6ca74de7 snd_hdac_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x71825e55 snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x76a4af12 snd_hdac_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7938155e snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x847520b8 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x86acb91c snd_hdac_ext_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x958b0807 snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x96f306c1 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9a89e4f3 snd_hdac_ext_bus_device_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9aeb7d67 snd_hdac_ext_link_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9f6a5cfb snd_hdac_ext_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa0909108 snd_hdac_ext_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb0c5786c snd_hdac_ext_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb7410815 snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbdbbca40 snd_hdac_ext_bus_get_link +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc887f18f snd_hdac_ext_bus_device_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcf32a92a snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd109bfc3 snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe42b6f4a snd_hdac_ext_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe7794932 snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf166b049 snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf18f0d92 snd_hdac_ext_link_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf84139a0 snd_hdac_ext_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x03095223 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x04cc191a snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x04e283c5 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05d53651 snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x08322aed snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0aaf5c67 snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1046d57f snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x141a77a7 snd_hdac_i915_set_bclk +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ab658b9 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1b3d8533 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22e8a8b5 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x275c306a snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28e44723 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2b83e955 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2f2a370f snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x366b4be8 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x37562434 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x382efad1 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3fe49374 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x442ecffd snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49075629 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49203940 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4b019c0c snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4db958c9 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x506a6bdf snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x57966484 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x58cd1bde snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x59cbc550 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e0b76c9 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x671167e3 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6f065dbf snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6f3fc6fa snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6f905aac snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x75120753 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x760dc95a snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x76a6c5d4 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x78316b2c snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a1ceb42 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fe25ece snd_hdac_i915_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8095c454 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x861d5202 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88a413e8 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8d07323f snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x96e6671d snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x989e05c9 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9c0dad52 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9da57cc6 snd_hdac_i915_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9ee6ae17 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9ef71d5f snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f10cb8d snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa1520ab2 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa4df9630 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa5cf9f8c snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa735af31 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa79d2879 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7d73aed snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9ef2340 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd8961be snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbfbca464 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc167ebbd snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc2366264 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc3de8019 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4718e37 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc776836a snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc7fbe4f1 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc9c6bed3 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcca4c747 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce249e22 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce894cd7 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xceb82943 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcf78e423 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd155565b snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd17330c7 snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xde739db8 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe073349e snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4fe39d3 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe953c0d2 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec51623b snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf006688f snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf06681dc snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf7d58990 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf991c30e hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe0d5b7f snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x065cf168 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x1d15f5f8 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x2fad8cab snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa76ea2a8 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xcba908c7 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xede42cca snd_ak4113_build +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x003fb3b1 snd_hda_add_vmaster_hook +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 0x08ee5249 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b1ee190 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11a6df68 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13f099ed snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16255248 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18580a8a snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x198d94dc azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d2894d7 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d550dee snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2323e9e6 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e044f5e azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35bb1e57 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3685111e hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x393c7d48 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b8ffff0 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3dc06656 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e9943e4 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f3589b1 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x418ec0e0 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43a9e7fd snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x447d9310 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x462cc11b snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47f0fa0d snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x487be5a0 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b24cdd1 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ba00eb1 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4bd08aa9 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c5b9fcc snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e2c40b5 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ebc31a6 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4eeaf498 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x504be355 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5280ce2d snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5304eaf0 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x535f79d3 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a9f29df snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5db317d5 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f3c7f8c snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60649640 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60f4565c snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x641d2575 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x679a590c snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6966d9d2 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6abf8a93 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f2ad4b8 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6fb5b612 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x707782e2 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x723716a5 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75315ea8 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78ef2e1e snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b07fdbd snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7bbbe3e6 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7bdae510 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7eabd88f snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f32e8b8 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81434446 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x820d3b83 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84f20866 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x855f44f8 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86f481c6 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ec4caa3 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92d0f284 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94fe7f5d snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c3e0f7a azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c80ecf7 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9cd8587d snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9fe7f0e6 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa00a7892 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa967bdce snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab1d9732 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf6593eb snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0bdab63 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb349c1be snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb59c2586 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5d51315 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5d91033 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7f0dbc6 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9e616f7 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb888902 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc075fcb snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc00d6fd3 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc400a56d snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc54162eb snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc68be16a snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc255151 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd44bd90 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce112886 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce4efcae snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcefeb5fa snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3cdeaee snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd49b82f5 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5edffd3 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7211df5 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd738dd74 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7ffac93 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda786de1 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdaf96da6 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdaff0a90 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb338b5d snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdcbeb962 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0c5c308 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1855e0b azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe277160c _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6315eb3 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7000982 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7809f34 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb9e663b snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec3f37f0 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xece04177 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed4f251b snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed5c4b24 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee7fd544 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeef2f4f8 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef2c4479 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf02c677a snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf34bc131 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf40cd34d snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7629425 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7bfa164 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf91a6b07 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfaa764e8 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfcfeadbb snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd886eb8 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x165d8e26 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x308a57ad snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x31485eb4 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4a847e3d snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4ee2ea12 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5466fffe snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x55a9e2fe snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5f153dbd snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6362ae5d snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x754ac78e snd_hda_gen_path_power_filter +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 0x7c13e5ef snd_hda_get_path_idx +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 0x9a0e990c snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9f20db28 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xaad70b30 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb78ca72e snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe339bb2a snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf5d7ceba snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf6b98aa0 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf7626809 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x023b60fc cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x87b0acff cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x4bf7ba15 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x9667c354 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x150f34a2 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x1c50ea51 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x4a45686c 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 0xada9b99d da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xcbd255bb da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xf6a16864 da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x5537e052 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x9724ca55 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0xd99e5fe6 hdac_hdmi_jack_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x206bb467 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0xd5b0e0ba nau8825_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x78739b5c pcm179x_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xa79671aa pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xd77b6a9c pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x50976ec0 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xc70bd6c0 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xda945d13 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xedc3728e pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x1855bf18 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x639ae2a3 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xa11a995f pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xcad6faad pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc +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 0x75442ab9 rt286_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt298 0x7e33eaff rt298_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x552fe862 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xadaffb73 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x4ad596dd rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xe7a90052 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x0132818c rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x2738448e rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xb7945414 rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xd1c7c6bc rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x1f14fdc1 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x3a605b41 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x6d8416f1 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc2bf48ed sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xf445114a sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x6f2a854e devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x22753645 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x9d6ac368 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x29575f03 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x37794127 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x8de023e0 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x96901338 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xa73285d4 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x4c88dcee wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x4e0349dd wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/dwc/designware_pcm 0x20298b6c dw_pcm_register +EXPORT_SYMBOL_GPL sound/soc/dwc/designware_pcm 0x8940260c dw_pcm_push_tx +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x2f5107df fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xf770a87b fsl_asrc_get_dma_channel +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 0x7988633b asoc_simple_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbfb62dac asoc_simple_card_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf9282e67 asoc_simple_card_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0x03c6a3c1 sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0x7561fd30 sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x2c90217d sst_context_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x32e0d688 sst_context_init +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x4c5e81ee sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x9b1076b2 intel_sst_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xab14edd5 relocate_imr_addr_mrfld +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xf2143a5a sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x096c3592 sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1677e06b sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1b5e8b82 sst_shim32_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x28ae65fc sst_dsp_shim_write64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2ae532eb sst_dsp_ipc_msg_tx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x32d593b4 sst_dsp_shim_update_bits_forced_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3cf904a4 sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4695e727 sst_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x47a58ad1 sst_dsp_reset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4a045773 sst_shim32_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5937d9c5 sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5a943a8b sst_dsp_shim_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5f237695 sst_dsp_dump +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x64c6ca19 sst_dsp_shim_read64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6ef80a32 sst_memcpy_fromio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6fe53391 sst_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x72753933 sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x79d6d5d3 sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x931432d3 sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9bc2b55e sst_dsp_stall +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xaa8b524a sst_dsp_ipc_msg_rx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb16b5b9a sst_dsp_shim_update_bits64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb54acddc sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbcec5387 sst_shim32_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbd0d2485 sst_dsp_boot +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc044d5d1 sst_dsp_shim_update_bits +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd0a281ad sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd1151494 sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd5e0801f sst_dsp_register_poll +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd9a2c94c sst_shim32_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xdcd6ff92 sst_dsp_shim_update_bits64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf06b6de7 sst_dsp_shim_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf110d60f sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfd1f987e sst_memcpy_toio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x1078ed58 sst_dsp_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x191435a1 sst_module_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x28eb0b1d sst_dsp_get_offset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x2da21efd sst_module_runtime_restore +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x360c047e sst_block_free_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x440bc758 sst_module_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x4932f894 sst_fw_reload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x4e168986 sst_block_alloc_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x541c0118 sst_fw_unload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x60c51674 sst_dsp_dma_copyfrom +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x709fb0dd sst_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x7b3a9810 sst_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x8152de93 sst_fw_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x826e9c64 sst_module_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x843f93f3 sst_module_runtime_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x8452f023 sst_mem_block_unregister_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x912a0316 sst_dsp_dma_get_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x994615b8 sst_module_runtime_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x9d2ac65c sst_module_runtime_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xa1ab2865 sst_module_runtime_save +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xb2917e03 sst_fw_free_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xb908fb39 sst_module_runtime_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xb961891b sst_module_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xbca616ef sst_dsp_dma_put_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xcb0dc2e3 sst_mem_block_register +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xcffed6a0 sst_module_runtime_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xd09c9517 sst_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xd18a8ea0 sst_dsp_dma_copyto +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xd768fb13 sst_fw_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xec863b3d sst_module_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x02f2e477 sst_ipc_drop_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x23df521c sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x34411295 sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x36081b01 sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xb51db1d0 sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xf8c19533 sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xfda998f7 sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-match 0x4ed20969 sst_acpi_find_machine +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-match 0xa150755f sst_acpi_find_name_from_hid +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x3425cefa sst_hsw_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xb14212d2 sst_hsw_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xd1f69f64 sst_hsw_device_set_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x0c415a74 skl_dsp_get_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x23961fff skl_dsp_put_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x276998f2 skl_ipc_set_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x3cd53f30 skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x5213c223 skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x6390094f skl_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x78d51fe0 bxt_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x7fe00b43 skl_ipc_init_instance +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x8f8e28d5 skl_ipc_unload_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x944d635f skl_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x9650db3d skl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xa17ac519 skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xa39e653e skl_clear_module_cnt +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xa894ef7b skl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xafc654ac skl_ipc_load_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xb0567827 skl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xb0f66f01 skl_ipc_save_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xb4e2fe7b skl_ipc_bind_unbind +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xc8ce98a2 is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xcad697ea skl_ipc_restore_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xcde264cc bxt_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xd813bc77 skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xe529aefe snd_skl_get_module_info +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xfd35538b skl_ipc_get_large_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02989cc2 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0614b600 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09e7a321 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0aea317f devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c6c9244 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0dbae13f snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1003c067 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x102834ea snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x107ea0e6 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11e675ca snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1209e415 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12c49512 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13cf522f snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13ea3270 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1429e828 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x199822e3 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a399ece snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d672c0d snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e6ad95e snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ea72218 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f8c58d5 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2038de52 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24ba0a19 snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x278cfb8b snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x296e6961 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f810f89 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x302372b5 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x320a3c3d snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x343c3e17 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35eaef27 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35fb9ff6 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36a9e06b snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3aa430af snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3cae73e1 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3eb31349 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f75d02f snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40dd1d47 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40f1d107 snd_soc_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43f7a713 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44434d5e snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x444c13ef snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x495a4986 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x497d2dbb snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49d221f5 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a9b02cf snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4adb97b4 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4af03225 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4dfe0395 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e2f8eef snd_soc_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f80ef5c snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58966a70 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b254109 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c4b9853 snd_soc_tplg_widget_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f18de1d snd_soc_tplg_widget_remove_all +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fd339ee dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60c6c623 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61860ef9 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6279b882 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6285e6e3 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x643a1859 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65dc5dde snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x662f8dcb snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x668bd2d7 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6706ad46 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6894c652 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6940d8cc snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x699ee9ee dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69ba86a9 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a526fec snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ac0551b snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x708a8ca7 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x712e8df6 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71449c80 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75bf8e6e snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75e91a62 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x790858f6 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a905715 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a9fb6aa snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f7073e0 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82c320e6 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x839d107a snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87c50c4a snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87f6a814 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x887f4e9f snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88ab734f snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88fa75fc snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89580801 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b6e31b1 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e6ac5d9 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x900bd1d1 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90e7731a snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9174832f snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92a0465c snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92c5c57a snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96322c47 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99b7ba98 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ba1c58d snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c434717 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f24e01d snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa22a893c snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa332f253 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa35c2e0e snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5459000 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa933f7ed snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab31da84 snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac92a8ec snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacc798f4 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad2e69d7 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafa130ea dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7921ec7 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba6abde2 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbaa799d7 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc5fc6d2 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc8a9df0 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd4106af snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbff71f14 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3282fef snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3c2b96d snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc54a5efe snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc608db72 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc790f897 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7db3a44 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca0aeaee snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb5314a8 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbce1618 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce1123ae snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd04fa851 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd09252be devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd23f8369 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3c62ac6 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd41a4a6e snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd656e0a5 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8d0b1bc snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8ff6aba snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc25efe2 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xded1b3d9 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdfef147d snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1088872 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe17cb86f dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe222d32d snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3e0bb38 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6f5bc5e snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea8140ed snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea817f08 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebb73113 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec3395d7 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1744744 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1df735c snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf284e993 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3f02d1c snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7abc296 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf82fa5ef snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb1a7004 snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc235fcd snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd2b6589 snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdc3b1cb soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe929c24 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfee66c1f snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffd253c3 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x115d27a2 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1250ab32 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 0x72548c40 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8165f396 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8f561653 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x93606d44 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa7a9f45a line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb2e6a76a line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb625084d line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc54c27a3 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcba90d0e line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xce6b8ec6 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd013b286 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd4234a5f line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe1000e1f line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf3304664 line6_resume +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 0x00017d02 find_module +EXPORT_SYMBOL_GPL vmlinux 0x000ea4ed mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x00227cbf platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x002eb9db task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices +EXPORT_SYMBOL_GPL vmlinux 0x003760de devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x005182df blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x005b73f8 xen_swiotlb_unmap_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0x00650cac usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x00703392 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x00778c68 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x0079f4b6 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x0098bd41 i2c_new_secondary_device +EXPORT_SYMBOL_GPL vmlinux 0x00ac8e0a hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x00b731d8 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x00cc3c53 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00ecdde2 arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x00ff8613 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x01001080 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x0109bbd8 dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x013dd079 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x0140f525 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x01570278 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x01691daf acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x016f0167 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0176b813 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x0177952b add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x019045d2 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x0196e252 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x01bb2db7 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01ef6c02 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x01f1a127 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x0202c306 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x02054791 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x02138c19 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x021d1293 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x023d325e inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x024f51b7 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x026211e2 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x0264a216 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x026bbf8e gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x026df26b mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x02784b4b irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x027d210c regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x0289f552 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x029084c7 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x02a74de8 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x02ab27f7 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x02ad0ad4 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x02b59104 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x02cd2539 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x02e51c4a find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x030da406 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x034974f3 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x0392a05d wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03f678c0 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x041dc60d rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x04377944 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x04500a0b ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x04534216 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046e0c9e bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x0475bc14 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x0485655f amd_get_nodes_per_socket +EXPORT_SYMBOL_GPL vmlinux 0x0487958c devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x048c9112 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x04c3f2c1 gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04ecfb5c set_memory_wt +EXPORT_SYMBOL_GPL vmlinux 0x04ef03fa vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x04f6bfb5 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x04f872f8 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0501a75a regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x05051587 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x05147aa0 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x0521ef2d dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x055614f5 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x056092f9 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x057fa543 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x05849e72 print_context_stack_bp +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x058bd7ce device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x058d9320 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x05be7279 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x05e7d475 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x05f7aa62 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x06046f04 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x062f898f __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x062f9d59 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x063d470f __put_net +EXPORT_SYMBOL_GPL vmlinux 0x06414c86 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x067c2d6a cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x067f8205 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x06a14ead crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x06aea088 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x06ba2b94 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x06d35ab0 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio +EXPORT_SYMBOL_GPL vmlinux 0x06e54cdb dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0x06e613b8 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x070347ff skb_gso_validate_mtu +EXPORT_SYMBOL_GPL vmlinux 0x070aea6b cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x074f2ada gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x076bd6da xts_crypt +EXPORT_SYMBOL_GPL vmlinux 0x07700449 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x077f8612 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x07a5a40e bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x07ae9298 regulator_get_drvdata +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 0x080a547c acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x0824e7c8 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x082e78f2 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x082ee602 xen_efi_set_variable +EXPORT_SYMBOL_GPL vmlinux 0x0836d11a regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x084af304 hv_is_hypercall_page_setup +EXPORT_SYMBOL_GPL vmlinux 0x085108ee clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x086421dc platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x08674fd5 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x086d2c01 xen_swiotlb_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x08764298 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x08b91ee7 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08be539e skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x08c7e397 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x08d95aae digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x08eaf59a pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x08f164e9 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x08f64d08 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x090ae864 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x09458414 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x09535d51 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x0961b62e public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x0980ba7c clk_register +EXPORT_SYMBOL_GPL vmlinux 0x09941a0d __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x09992f11 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x099b1b92 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x09a04372 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x09a127d0 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x09a47597 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x09af0fef power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x09b5e880 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x09d0394d pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x09d35b3d pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x09f8cfbc usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x09fc4562 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0a01b931 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x0a19985d tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x0a271e9b rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x0a4d2f99 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x0a4fde00 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0a5479b0 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x0a7b1507 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x0a8a8db3 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x0a945156 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x0a966db5 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x0a970035 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x0aa4c9f5 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x0aa4deab ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x0aa83785 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x0ab63f9c __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x0ae9358b usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x0af9b337 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b133637 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b29f6f4 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x0b3259ae inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x0b3e8beb efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b7d6503 blk_mq_reinit_tagset +EXPORT_SYMBOL_GPL vmlinux 0x0b835a75 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x0b9e3096 fpu__save +EXPORT_SYMBOL_GPL vmlinux 0x0bcf1bfa crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x0bda2dd4 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x0bdc43b0 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x0bebdaf9 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x0bf8e292 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0bfcb820 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c2689fe rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c3c7b63 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x0c652d33 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c928116 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x0ca10228 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x0cb028af regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cc80783 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x0cc98828 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x0cd6174b thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0cf1aae7 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x0d17e0f5 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x0d1cd399 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x0d230191 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x0d231730 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d5baec6 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x0d62af81 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x0d797f3c pci_get_hp_params +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d89a1af add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x0d9acec6 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x0db7aaaf ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x0dd6271f ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0ded880d rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0df925f6 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e2dcd2c single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x0e31da7c led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x0e469ede mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x0e6d4351 intel_svm_unbind_mm +EXPORT_SYMBOL_GPL vmlinux 0x0e761571 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x0e99c5c0 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x0eaaf21d rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x0ebaa0ad dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x0ebd6c04 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x0ecdc88f clear_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x0ecf32dd rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x0efb4c56 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0f0cbe1e clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x0f1583a3 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f6e1784 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f784e7f rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x0f9312ce sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x0f99c5b9 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x0fa138de xen_hvm_need_lapic +EXPORT_SYMBOL_GPL vmlinux 0x0fb062f3 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x0fb7ba67 skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0x0fbabaf2 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x0fbba8d7 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fe039f4 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0x0ff54990 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10236ae2 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x10685023 switchdev_fib_ipv4_add +EXPORT_SYMBOL_GPL vmlinux 0x106c53f1 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x106c81ac xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x10735ec7 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x10a166f2 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x10d9ca56 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10f8901a __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x10fc3ff4 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x10fc7962 extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x1104d0ed kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x1109da89 cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x110b863a xenbus_unmap_ring +EXPORT_SYMBOL_GPL vmlinux 0x112c70f0 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x117c7305 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x11909dc9 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x11ac8d29 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x11acc98c bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x11b15964 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x11b66b6b serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x11c5c689 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x11caddc7 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x11cb948b ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x11d5e8c2 xen_xlate_map_ballooned_pages +EXPORT_SYMBOL_GPL vmlinux 0x11df4235 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0x12027cdb i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x1203a7e3 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x122ef7ad xen_swiotlb_sync_single_for_device +EXPORT_SYMBOL_GPL vmlinux 0x1234110e sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x1241bc7f pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x12434008 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x125884e2 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x1263ffd4 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x12771f1a jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0x12818f68 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x128b6e5f clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x128bff22 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x12a6492b platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x12af3639 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x12d0f0b5 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0x12dae3e1 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x12e9a9d1 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x12ea3c14 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x1304074b iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x130c00da clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x130c6a24 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x130de01d trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x13241484 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x1336e290 vfs_writef +EXPORT_SYMBOL_GPL vmlinux 0x13518394 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x137c056f dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x1381b5ff rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x138ae8e5 hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x13a60fbb gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x13ae1af0 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x13b76896 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x13b7cd6e ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13db6154 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x13df6e48 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x13f51fc3 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x13fdb6a5 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x14090deb scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x1418a3b2 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x14226923 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x142ecbfd spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x14378c12 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x14397f34 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x144e4110 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x1463f0a8 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x146f93f2 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x1477f92f usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x14789cf7 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x147db44e regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x14927a1e tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x14ca3d52 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x14dceba5 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x14f3dc55 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x1500ba02 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x15010e1f arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x152160e5 security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0x153c2153 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x1541ddb3 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x154227d8 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x156efef7 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x15707d45 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x158a9dc8 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x159aff33 devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped +EXPORT_SYMBOL_GPL vmlinux 0x15d37258 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x15d483af subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x15e1945e devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x15e7a683 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x163ce0f8 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x164229ad ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x16492b6c sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x165ea97c netdev_default_l2upper_neigh_construct +EXPORT_SYMBOL_GPL vmlinux 0x166a83f8 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x168503dc pci_msi_set_desc +EXPORT_SYMBOL_GPL vmlinux 0x168c6bc3 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x169b325c sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x16a2d4bf ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x16a794d4 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x16a81f71 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x16b92c43 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x16be6f65 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0x16ec9495 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x16fbfa06 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x16fea9f6 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x1720cfb8 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x172817ee list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x173f26a7 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x173f8616 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x1752222b platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x176195a3 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x1783d321 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x17941cde user_describe +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x17a5f422 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x17c05173 add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0x17db6a8a ref_module +EXPORT_SYMBOL_GPL vmlinux 0x17e54088 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x181a076e pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x18212ad5 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x1829b9ed hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x1850710f ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x185dcc51 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x18c0eac1 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x18c39913 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x18c7395c blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18eb8612 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x18ec47d9 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x18f5e50e arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x18faf47f blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1913112d ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x1916b3a6 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x1930306e max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x1937cc3d led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x1948d8e0 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x19550696 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x195e98fd exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x1969f5d2 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19d7a59b device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x19e08e01 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0x19e40568 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x19ebcf8b acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19f87170 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x19fc9353 iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x1a25cd8a hv_do_hypercall +EXPORT_SYMBOL_GPL vmlinux 0x1a4ce07a rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0x1a4f7784 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x1a5e8ad1 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x1a630a44 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x1a6a9834 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x1a7460ae acpi_subsys_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x1a7e5e4b regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x1a7f8090 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x1a82ab69 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x1a82dda3 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x1aa7e2db crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x1abb4814 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x1ac013be pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x1acbdce1 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1af67131 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x1afe970c posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x1b0ce863 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x1b1095a2 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x1b38b3c6 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x1b38f210 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x1b4aee2a kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x1b51647f dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x1b748180 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x1b777b4d cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x1b80e649 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b96b37b cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1bc28418 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bcd412c tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x1bd6684e clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x1be7b842 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x1bf9093c crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x1c049f0a usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x1c111c62 xen_efi_set_time +EXPORT_SYMBOL_GPL vmlinux 0x1c5501a2 pwm_adjust_config +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 0x1c6660c7 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0x1c75ddd5 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c971783 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x1ca746ef crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x1ce82ea1 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x1cf5ddf6 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x1cfa0f49 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1d1b7977 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d2812b9 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x1d454faf fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x1d4ab841 user_read +EXPORT_SYMBOL_GPL vmlinux 0x1d4e8cde invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d5a5bb9 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x1d5bc7d6 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x1d625ca5 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x1d65ec8a bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x1d6daba8 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x1d739e1c xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x1da5c2e3 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x1db7bb0b usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x1dbb6a08 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x1e000879 hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e1f28c1 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1e4879f4 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x1e496e7e da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e600f72 __module_address +EXPORT_SYMBOL_GPL vmlinux 0x1e68ce14 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e849a74 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e9ea919 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x1ea135c8 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x1ea2194f wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x1eb230a8 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1eb895f4 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0x1ebb670c ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ecc368a cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1edc21cb hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x1efb061e netdev_default_l2upper_neigh_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1f1988f7 hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x1f3653ed screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x1f4ab4e7 acpi_dev_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x1f4cf839 mmput +EXPORT_SYMBOL_GPL vmlinux 0x1f569225 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x1f712dc8 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x1f7296ae pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8d71c4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1fa58f7c ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x1faa4e62 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1fb6f02b cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x1fcee17e rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x1fcf69b6 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1fd33919 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x2016c568 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x20226858 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x203951c3 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x204ca928 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x2054be57 acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x2073c3ec sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x207f2ede hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x209cb32b pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x209ec764 xen_event_channel_op_compat +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20f935a0 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x2114e05c __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x211b427e tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2121b0ed blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x212c4f91 security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0x2130924f bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x21383edb regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x214d2def usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2150dff5 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21a7e0a8 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x21a927f3 security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21c40e05 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21ddac8b ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x21f1d8b8 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x22083798 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x2216c048 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2299ec81 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x22a83b28 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x22b434fc spi_async +EXPORT_SYMBOL_GPL vmlinux 0x22be5016 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x22c81e94 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x22cb0df1 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x22dcea32 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x230e473e pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata +EXPORT_SYMBOL_GPL vmlinux 0x2369008b cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x238240b3 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x238d36c9 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23aaeaf7 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x23b1dab1 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x23c6ab89 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x23db110c cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x2411ca25 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x24199066 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x243115fb blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x244a3e22 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x249db541 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x24a74aad ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24bc260c crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x24dd2931 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f45195 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x2506d5d7 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x250724b4 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x2510f990 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x2522f50b led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x254c365d regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x25645d60 ptdump_walk_pgd_level +EXPORT_SYMBOL_GPL vmlinux 0x2567e20e virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x256b7e28 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x25819cfc platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x25c2cf89 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x25d151f5 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x25ec5a40 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr +EXPORT_SYMBOL_GPL vmlinux 0x261ada21 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x262c5344 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x26405b4f securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x264ae4c6 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x2662260f sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x26965721 slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x26b3c701 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26b9edc8 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x27084c49 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0x271fa7de pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2725832b crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x272bbcd1 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x27427489 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x274388c7 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x2749565c cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x27734df7 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x277e5a45 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x278fd5fa i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x27920f7c pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x279cb985 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27c6848c crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x27d0931f put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x27e977d8 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fbe0fc vmf_insert_pfn_pmd +EXPORT_SYMBOL_GPL vmlinux 0x28061c2d irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x2815c6dc cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x281aa48d md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28328453 clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x285007d8 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x28671461 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x2870e478 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x28745cf8 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x28933dd0 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x289aadac iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28cff005 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x28dc17e7 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0x28faf6e0 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x28ffb76a page_endio +EXPORT_SYMBOL_GPL vmlinux 0x290917f5 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x292d83ea phy_put +EXPORT_SYMBOL_GPL vmlinux 0x292e9f3e raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x292ffcfe switchdev_port_same_parent_id +EXPORT_SYMBOL_GPL vmlinux 0x2937a958 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x29553033 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x295550d9 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x296cd196 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x297463e4 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0x297ddd2a iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x29bc1e48 __devcgroup_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x29d843d9 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x29d90c1e blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a6170ab rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a8ae47f exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x2aa3baaf usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x2aa92a01 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x2aab0170 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x2ab5effe regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x2b03d80f rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x2b2779e4 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b300e80 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x2b30b3c9 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x2b421863 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x2b506ca2 devm_nsio_enable +EXPORT_SYMBOL_GPL vmlinux 0x2b5afdc8 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x2b627042 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x2b874f45 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2ba7f8dc cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x2bb8a5ac page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x2bd4e5e4 __pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x2bdda2eb trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x2be81b32 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2bf7d852 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x2c000a1a clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0x2c135b93 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x2c176e28 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c2f5a09 x86_family +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c4a4d24 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x2c50c1ec platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x2c537036 __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0x2c561694 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c7df1bc dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x2c955751 nvdimm_bus_add_poison +EXPORT_SYMBOL_GPL vmlinux 0x2c9c9510 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2ccfa1aa phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cf0e262 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d1eb089 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x2d29586c bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d517f6f ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d61bb41 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x2d678621 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2d7c73b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0x2d8459c3 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x2d8ac474 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2da8bad1 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x2dc0410e devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x2dd13834 apic +EXPORT_SYMBOL_GPL vmlinux 0x2df6160d bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2df6cc1c rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x2e125965 free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x2e190d6f usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2a9ac2 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e369a82 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x2e3a3fb8 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x2e5691c4 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x2e65255e usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x2e77e76b posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x2e788470 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x2e7f7f8b device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0x2ea12164 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x2eb44d20 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x2ebb6997 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ebf746b to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ec85591 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x2eeec2f2 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f1f034c param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x2f1f7667 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x2f24708d pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x2f361674 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f47d01c led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x2f49232c usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2f4fabf9 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2f5265bb driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f752c14 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x2f81ff09 inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0x2f977f13 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x2fa42574 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x2fad67d4 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x2fb46c07 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x2fbd90c5 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2fe6bd32 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x2feca701 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x2ff130a0 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x2ff781a9 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x2ff8d1ec path_noexec +EXPORT_SYMBOL_GPL vmlinux 0x300b6340 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x3018c1a4 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x30272480 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x30282d4a regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x302ef4ce rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x305c3ad9 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x30635782 cpu_has_xfeatures +EXPORT_SYMBOL_GPL vmlinux 0x306e3bea blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x3097da60 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x30ec4c8e ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x30f7433f clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x30faa230 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x3106474e nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x3117aa4a security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x3138f648 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x31466e06 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x316d006b pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x3190f661 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x31a5b1fe inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x31aff96f rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x31b8965e da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31ce25fe sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x31ecccad pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x31f01c57 __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x3220bd0a user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x322feee6 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x32397c77 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x323e6939 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x3275eaf6 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x32956e06 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x32a26f4c __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32af26d4 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32de56ae wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size +EXPORT_SYMBOL_GPL vmlinux 0x33655159 xen_pcpu_hotplug_sync +EXPORT_SYMBOL_GPL vmlinux 0x336cfdd9 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x33831711 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x338ad8ca regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x338c9927 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x33a2ae70 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x33b495aa sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x33b96e5d apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x33cf5fc5 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x33d00917 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x33dd7eab do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0x341d64b8 udp4_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0x342f6090 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x34545d55 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x345775e9 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0x347de6a4 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x3490b043 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x34a2b2ac ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34c68496 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0x34c692de pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x34e334fa blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x34ea96cf xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x34f4ca1e inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x34f52627 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x34f9dacd efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0x3507a4de skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x3520600b ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0x3540e40f perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x354c2ece sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x354cef26 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x35548693 phy_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x35693afc tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x3571e499 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x358c71e7 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35910f72 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x359ca644 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x35a0736c phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x35a0830e clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x35a306a0 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x35a81308 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x35ce7f21 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x35dedc10 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0x35f392c3 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x35faef4d handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x35fccae7 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x361c1718 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x361e002a devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x3622f57b class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x362d12bd device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x3665411c ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36b1ff29 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36c29870 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36ec995f syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x36f88e38 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x36f91032 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x3706bbff rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x3708b14b module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x3712e0a6 of_css +EXPORT_SYMBOL_GPL vmlinux 0x374155fa __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x375a45e6 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x37778226 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x3789e138 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x3795691a pin_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x379958d2 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x37c99c5b device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x37d852cc pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x37ea17d5 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x37f1ffbf gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x3819ff1e virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x382cc588 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x382ef343 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x3833b8af xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x3835773b serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x384fb88d dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end +EXPORT_SYMBOL_GPL vmlinux 0x38894a1a crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x3911730b regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x3952beb5 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x396121a3 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x39676120 sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x39a74bd4 xen_swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x39c52dd6 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x3a01fb2f regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3a1ad093 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a272ffc xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x3a38dc65 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a453f87 mce_inject_log +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a5ba1e7 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x3a5ff38f power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x3a6c50c5 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn +EXPORT_SYMBOL_GPL vmlinux 0x3a848210 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x3a889d63 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x3a985ec8 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3ab65739 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x3abec285 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x3ac13b88 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x3ac87979 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x3ae26a33 d_walk +EXPORT_SYMBOL_GPL vmlinux 0x3ae2a164 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x3ae3315f xen_swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x3b262fc9 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x3b34b8ab part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x3b529b23 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x3b646e05 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3b6688eb device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x3b7145bb apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x3b91db5b intel_pt_handle_vmx +EXPORT_SYMBOL_GPL vmlinux 0x3bcba386 sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x3bdca5b2 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x3c0f2270 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x3c29c8ba pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x3c2ef5d2 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x3c387bb2 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x3c46aa20 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x3c83e3ee dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c9c9ae6 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3caf9af3 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x3cb2f2ff vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x3cb82c9a crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x3cc23f16 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cdaabe5 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x3d1be3db shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d3d6dc8 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x3d448d93 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3d51c140 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x3d5f392d acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x3d626e09 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3d78bfd4 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3d8cee45 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x3d93e4a1 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x3d9f6d7c skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x3dae6404 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x3dbf58b3 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x3e07cd27 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3e0db7b1 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e54b244 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e6c3e80 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e7b3728 switchdev_trans_item_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x3e7e3420 add_memory_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ea119f9 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3eae3206 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x3eced595 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x3ef8d791 l3mdev_get_saddr +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f06a229 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x3f229c4c oops_begin +EXPORT_SYMBOL_GPL vmlinux 0x3f241bac devres_get +EXPORT_SYMBOL_GPL vmlinux 0x3f425743 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x3f4ad7a9 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x3f7f7120 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x3f89afbe ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x3f8e6e24 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x3f92d10f devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x3f92f135 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x3f9880d9 dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x3f995fae xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x3fab6252 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x3fad355b security_inode_readlink +EXPORT_SYMBOL_GPL vmlinux 0x3fbd412a thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x3feddbf8 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x3ff97d2b dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x40017124 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x4003ca22 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x4010b80f pmc_atom_read +EXPORT_SYMBOL_GPL vmlinux 0x4018d45e fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0x401de9c6 split_page +EXPORT_SYMBOL_GPL vmlinux 0x401e84c8 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x40251f12 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x402a7eb6 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x403df083 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x404a7036 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x404cb4ae raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x408212ba hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x409325f0 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40c1a242 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f89a8c tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x40f9d4b8 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x410be000 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x410e6062 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x412d604f unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x41322612 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x4165a1fe mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x417ea988 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x4199e118 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x419aa26f devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x41a0471a fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41d9ba85 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x41ee7b54 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x41f9d49c thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x422d15d7 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x42361d0d driver_register +EXPORT_SYMBOL_GPL vmlinux 0x425dd16a tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426fc3d1 device_move +EXPORT_SYMBOL_GPL vmlinux 0x42747e5c remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x427d5c68 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x428b04dd pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x42abc71d skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x42b3f2ac blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x42c18599 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x42d81619 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x43183025 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x432c9ac3 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x4331ba44 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x436baf17 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x43850513 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x4395953e usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43ad6ba4 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43d1811f xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x43f2867c generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x44018fa4 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x4408dd6f unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x441fa356 irq_ts_save +EXPORT_SYMBOL_GPL vmlinux 0x4427900c register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x4436a07f tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x4443f5ff usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x4482e2d5 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x4487493a regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c04e2e dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x44c8cb59 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x44cb28b4 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x44cc8c62 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x44d449d0 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x4501cd6d spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x452a4cc7 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x453c59d4 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x45407b9f dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x4544cc89 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0x454be876 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x454f1cb4 efi_query_variable_store +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x459ae28c __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x459c7178 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x459d6c3c badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x45b7d6a0 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page +EXPORT_SYMBOL_GPL vmlinux 0x45d947d1 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x45dfef0b acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x45e08454 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x45e31330 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x460d8769 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x460f31aa rodata_test_data +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x46434934 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x465c6b7b usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x468824fd crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4688f953 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x46982731 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x469b71f2 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x46b3e4f8 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x46d2f257 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x471c9eae wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x47336deb xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x4736f782 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x4738fbee usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4780f6fc __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47d46507 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47f03717 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x47f1710b efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0x481c1c3c skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x4820f3ba switchdev_port_fdb_dump +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x485282f4 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x485294da sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x48545a95 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x485ee360 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x48682db9 perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x48762099 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x487ecaf2 memcpy_mcsafe +EXPORT_SYMBOL_GPL vmlinux 0x48927c0d rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x48c18364 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x48e975c1 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x48ee34ff pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x48f7c122 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x48f8f4c6 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x49050f17 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x490571b8 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x49378254 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x4967d2fd crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x4970cf82 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x4972b209 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x497d7f2c rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x49859e79 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x499ffe87 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x49a0f9a2 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x49ddb59b efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x49dfbaf1 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49ed0ede dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0x49fed98a static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a56b735 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4a6360e1 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf +EXPORT_SYMBOL_GPL vmlinux 0x4aad8ba9 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ad25d8a xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x4ae35f54 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x4af6b3af ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x4b2b8a8b tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x4b35927a ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4b51ec45 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x4b543286 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x4b5ea7cf sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x4b725806 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x4b88cb43 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x4b8ffda5 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x4bdb57e4 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x4be362c2 acpi_dev_gpio_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x4be8f476 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x4bf3a4ad spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0x4bfbb1af fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x4c0f641a led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x4c12a3a8 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0x4c14c229 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x4c2356ba irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x4c2be02a led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x4c3f0f32 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c762b5c x86_stepping +EXPORT_SYMBOL_GPL vmlinux 0x4c8e3974 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x4cbf1b6a tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x4cc0c621 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x4cd4984d dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x4cd87e9e mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x4cdd03c2 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x4cecd22d dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d1eec76 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x4d2bef60 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x4d445701 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4d467e0e nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x4d49a5d5 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x4d54fe6d mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x4d72a42f wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x4d7e5154 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x4d8152a7 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x4da40168 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x4dc81342 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x4ddf18b1 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e19d39e swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x4e1afd94 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x4e1ea947 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e444b84 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x4e46a65b skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x4e57723d apei_read +EXPORT_SYMBOL_GPL vmlinux 0x4e5d73e1 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4e61718b regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x4e65607a led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x4e6f601f devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x4e74e625 gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0x4e784723 sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x4e81f773 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x4e823d25 spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0x4ebcab26 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x4ee78967 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x4eeed4c4 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efc6bb5 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4f22aca5 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f3eda5b device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x4f43739e bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x4f4832fa iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x4f566be5 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x4f64ff7d devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6c2c6d spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0x4f8822d4 default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x4fa9fcc2 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x4fb2f3d2 shake_page +EXPORT_SYMBOL_GPL vmlinux 0x4fbaff42 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x4fbe8ed4 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x4fd3936e _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe3ba63 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x4fe9ebe6 switchdev_port_fwd_mark_set +EXPORT_SYMBOL_GPL vmlinux 0x4fed2be9 pv_info +EXPORT_SYMBOL_GPL vmlinux 0x5003b81a register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x501a020f kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x502c96cd regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x50420025 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x504646e0 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x5055c174 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory +EXPORT_SYMBOL_GPL vmlinux 0x508155da input_class +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x509e5b0d virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x50a5d9a6 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x50aade7f clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x50b52caa platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x50c1d81a blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0x50d4c1d0 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x50dfc52c irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x50e59db3 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f1ad24 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x50ff4b80 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x5105f6bc crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x5118c1e3 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x512b1d19 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x513b8003 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5162b65e msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x51735dfe pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5178af61 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x517d1044 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x51811f94 wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq +EXPORT_SYMBOL_GPL vmlinux 0x5191bd3c efivar_work +EXPORT_SYMBOL_GPL vmlinux 0x51a0611c cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x51a8c95e __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x51afe593 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x51d73e30 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x51d8e48c __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x51e66802 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x51ebcdb9 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x520ae2a0 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x52489fd7 pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x52539430 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5260fc72 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x52617d60 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x52a1a331 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52c3b6d8 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x52cfac08 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x52d8c375 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x52eb2ef7 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x5305dfa0 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x530f1f19 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x5314fec1 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x532fe349 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x534bccc1 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x5354c64d rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x5357f09b dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53608d36 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x5367ae2f pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x5396ce3d fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late +EXPORT_SYMBOL_GPL vmlinux 0x53ae6aa5 update_time +EXPORT_SYMBOL_GPL vmlinux 0x53b52fb0 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x53ba0cb1 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x53bcbfb6 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x53e130be ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x53f3eec4 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x540e7653 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x542de489 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x543d8f7e pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x54544f60 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x545ee955 fpu__activate_curr +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x5474bb48 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x5474bbc2 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x547bb54e ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x5488a729 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x5489c5b7 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x548bc01f kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x5498c55c key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x54a1f29d nvdimm_clear_from_poison_list +EXPORT_SYMBOL_GPL vmlinux 0x54a4e004 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x54c45875 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x54c4f4c4 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54d6f4e6 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x54d9375b ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x54d95c72 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x54e5cff5 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x54fa8b3d __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled +EXPORT_SYMBOL_GPL vmlinux 0x55181725 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x552e6f4f phy_pm_runtime_get +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 0x5544f82c devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x554e9b24 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x55526907 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x557073a1 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x559f6393 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x55e25561 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5631d87d usb_of_get_child_node +EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x563c1976 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x563e72a0 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x5654f836 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x5665964b max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x566feb0c rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x56814d6c __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x5685b9d5 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x56bb2b84 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56d93070 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56f2744f __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0x56f5b387 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x56f69a57 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x5705a11d sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x570a1e1a fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x570e461e devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x5719c000 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x571c0f1a fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x5721963f scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x572e2909 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x573dae52 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0x578693b2 pm_genpd_syscore_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57b26a78 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57c7f7c3 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x57d04eb7 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x57dadab3 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x57f53b4b replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x5805ed11 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x58074e3f __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x5821de0b of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x584e92d1 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x585704ab aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0x587bd46f alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x588ef81b sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58c5abc6 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x58c62aad rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x58c728e2 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x58cb8235 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x58d1744d led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x58d7f40f spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x58e6ec21 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5964c3df __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x59688cf7 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x597d0744 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x598377e7 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x5999f545 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59c38b8e tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x59c8b9f4 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59fb4089 component_del +EXPORT_SYMBOL_GPL vmlinux 0x5a0acb56 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5a38cf5f rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x5a6467e6 xen_efi_get_time +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a7e2e31 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x5a8a22d1 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x5a91d10d xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x5a9f4633 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x5aa102cd reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5aa417fb shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x5ac3e977 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5af0b17f blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x5af3d63d ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x5b54d23e dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x5b550d64 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x5b5745c6 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x5b8690fa __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x5b995a50 clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x5b9ebf79 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5ba3e338 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x5babf728 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x5bc451b3 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x5bce8ca1 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5be10bec __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x5c1b197f wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x5c348c5e crypto_has_skcipher2 +EXPORT_SYMBOL_GPL vmlinux 0x5c393fa5 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x5c3cc5f8 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x5c46d60a crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker +EXPORT_SYMBOL_GPL vmlinux 0x5c6e2350 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x5c6f9760 arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x5c908b27 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x5ca16284 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x5ca667aa regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x5caa935c ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cba5081 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cc715bd __class_register +EXPORT_SYMBOL_GPL vmlinux 0x5cf2b67c led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x5d01d767 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d09ae76 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d308843 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x5d39318f ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x5d5ca512 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x5d7fcd28 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x5da54fe4 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5db29cf7 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid +EXPORT_SYMBOL_GPL vmlinux 0x5dcd7160 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x5ddf5d9d ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x5de83649 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x5ded3c85 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x5defb64b clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x5dfcbd32 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x5dffb6e8 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5e140cc0 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e6a9f48 loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0x5e6d01e8 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x5ea7c648 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5eb9e9ea pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x5ecaef8b iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x5edae8cc rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x5ef2198f perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f2db218 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5f2f8a8f device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x5f31bb97 efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x5f36c576 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x5f66d015 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x5f6a2f70 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x5f92e13d ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5fa2b608 ex_handler_fault +EXPORT_SYMBOL_GPL vmlinux 0x5fbb0c0a blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x5fbd84c4 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x5fd73e73 sched_clock_cpu +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x5fe907b7 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x5ff4f002 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x60026a90 clk_hw_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x60144116 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x60213bb8 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x60541576 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x607ffb0f __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x608b38b2 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x608cb2b0 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x609516c8 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a62ca5 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x60ac6024 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x60b28372 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x60c82275 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x60d77522 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x60dab9d6 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x60f93489 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x60ffde81 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x6105a3df seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x610a0b79 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x61131231 spi_flash_read +EXPORT_SYMBOL_GPL vmlinux 0x6116abb9 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x61192795 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x613dc9dc tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x6149e1bf class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x614f2591 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x6150f286 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x615b4c40 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x6175fc0b blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x61a175d0 __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x61b41673 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x62145271 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x621878e7 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x621ba7b5 switchdev_fib_ipv4_abort +EXPORT_SYMBOL_GPL vmlinux 0x622743c3 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x62291f72 efivar_init +EXPORT_SYMBOL_GPL vmlinux 0x622afead trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x623803c8 hest_disable +EXPORT_SYMBOL_GPL vmlinux 0x623af100 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x62474105 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x625a8d4c ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x6280863e devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x629990e8 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x62a1c981 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x62a8c597 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x62f41154 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x63149ca1 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6320ded4 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x63336a2e pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x6340434e x86_model +EXPORT_SYMBOL_GPL vmlinux 0x634c332e cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x634ceadd eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x635d60fd fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x635ec980 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0x6381b22a pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x638fe045 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x6396fe13 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x63981d6e xenbus_map_ring +EXPORT_SYMBOL_GPL vmlinux 0x63c7d4bf tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63e38145 efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63eded5b dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x644dec90 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x64b275fe blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x64b7069e apei_mce_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x64be7ee3 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x64c9c6f2 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x64dcd989 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x64f6b39a pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x6511f63d __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x6521e010 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x652a138c smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x6536953b btree_last +EXPORT_SYMBOL_GPL vmlinux 0x653c02d7 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x6572978a devres_find +EXPORT_SYMBOL_GPL vmlinux 0x6577a8a1 amd_hwids +EXPORT_SYMBOL_GPL vmlinux 0x6577f68f ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x6579c471 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x65888f26 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x658c8186 amd_get_nb_id +EXPORT_SYMBOL_GPL vmlinux 0x65a766ee dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x65a855fb debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x65aa6a15 clk_hw_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x65bf19d7 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x65c1c086 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65eb295b synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x65ede41c sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x66101aab usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661da13c ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6641606c power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x665ecab0 pv_time_ops +EXPORT_SYMBOL_GPL vmlinux 0x665f859d max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x667ac976 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x667c9756 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x668b2fb9 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x66a6d805 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x66c397f7 nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66cb9e67 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x671dcc4c gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x672312a6 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x67297877 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x673550a5 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x6736fd86 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x6743d101 __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0x674ef881 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x675655eb crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x676db0de switchdev_port_bridge_dellink +EXPORT_SYMBOL_GPL vmlinux 0x67842e5a usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x678b8cbb kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x679f7744 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x67c01c83 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x67d714d6 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x67e09192 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x67e4fc30 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x67e51dc1 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x67e61149 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x67f2cc20 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x67f38a8a irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x681a6849 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x6822f70b regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x682c27e6 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x6838230e i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x683c85ad __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x6844dcc3 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x684b6e04 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x685279c4 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x685f1d06 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x686d5bb9 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x68799f7f acpi_dev_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x68866a89 user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x68a26b23 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x68a7f9a0 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x68c50b8d devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x68f2f6ad netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x69049651 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x6933f3b5 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x69439fe2 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x69506b71 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x69705d7e usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x697afa13 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x698308be blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x69a47de5 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x69aa90c7 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x69bc2be7 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x69c66738 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x69dc3c45 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x69e36c22 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x69ede7ec regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x69ffb15d inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x69ffbe07 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x6a090fa3 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a28dc9d cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x6a2b3373 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x6a7adfc6 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x6a7ed561 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a8e6fff skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x6ab1b8bb usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x6abbb404 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6ac548e6 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x6ae00f53 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x6af8bb2e blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x6afa387a inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x6afa60be regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6afb6c4f ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x6b07ec1b __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b5d580d platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x6b6da9aa acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x6b6ed9ed klp_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x6b76e016 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6b7d1456 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b95aa39 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x6b97d3ea ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x6b9f2f92 cap_mmap_file +EXPORT_SYMBOL_GPL vmlinux 0x6baca255 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x6bb128d8 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x6bb3a7d6 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x6bf1b90d dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c11bd31 do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0x6c1251fd apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x6c1bb5e7 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x6c2daec0 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c798187 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c857956 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x6c86b1b3 spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6c89941a irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cd9bc5f dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x6ce7105f security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x6cf6eadd __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x6d01995f xen_efi_query_variable_info +EXPORT_SYMBOL_GPL vmlinux 0x6d11a29c percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x6d252ab3 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d46098b acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x6d4a5843 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x6d5c174d rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x6d73ee85 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d935f54 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0x6dd581f4 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x6ddcd390 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x6df0476d find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x6e019636 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e54e75c usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x6e693796 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x6e71c7b9 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x6e730008 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e7ef90f rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x6e85501d xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e8e5fd4 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x6ea98361 ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x6ea9c8a2 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x6eb06fd6 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x6eb127d0 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x6ebb4140 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x6ebd97d2 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x6ed2637f nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c892 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x6ef86337 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f233f0f xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x6f643a63 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x6f64b44b ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6f7e528d reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6f83cea9 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x6fb0773f nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x6fce3049 switchdev_trans_item_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6fe76c2b dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x6febeb51 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x7014e231 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x702cc834 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x7036a1a4 device_create +EXPORT_SYMBOL_GPL vmlinux 0x704c7ccb rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x704e5500 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x70585ae4 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x70613f93 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x70861068 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x7091f212 get_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0x7096f26c __add_pages +EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key +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 0x70d17f32 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x70f8ab5c fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7138bc6d crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x7139f6a4 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x713c682a devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x715b0e08 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7170477f devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x71740dac wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7195f2c6 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x7198f68f gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a807d0 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71e697e2 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x71eb33ab task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x71f1a3b2 debugfs_use_file_start +EXPORT_SYMBOL_GPL vmlinux 0x71fe7f6f cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x72166324 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x7261932d fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x729909aa disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x72cf714d klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x73016f55 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x7305596b get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x731023b5 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x73689d99 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x737ecf93 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x737ee02e md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x73852d10 device_reset +EXPORT_SYMBOL_GPL vmlinux 0x7393da06 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x73a37bf4 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73afb372 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x73ba6e3b xen_efi_set_wakeup_time +EXPORT_SYMBOL_GPL vmlinux 0x73ba725f ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x73bc9f1d devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c323bd dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73d49fd8 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73eb6337 free_iova +EXPORT_SYMBOL_GPL vmlinux 0x73ecc6a5 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x73ed7116 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x740e4a3e call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x74105d16 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x741339b7 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x741aef5a tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x744b5b82 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x746e458b fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x7474501b cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x7474647a tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x74830163 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x74a84058 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74b9f79b hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c08941 kvm_async_pf_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x74deb10c used_vectors +EXPORT_SYMBOL_GPL vmlinux 0x74e04ad1 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x7501f7c1 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x755101d0 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x755c8df4 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0x7567d284 xen_efi_get_variable +EXPORT_SYMBOL_GPL vmlinux 0x757a5312 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x75933a10 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x75b5330e devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75ed46b9 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x7632fc1f gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x7634d9b4 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x76414a83 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x764e3a85 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76843152 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x76876f1a bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x768aa6fa ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x76a51133 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x76a82311 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x76bde011 x86_hyper_kvm +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76da0394 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x76ee2333 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x770aebe4 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x77149a88 security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0x77194c1e gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x77213e69 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7724300d __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x772776cb pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x7732ff60 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x7739ade6 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x774844f9 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x7749fc99 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x774a1756 i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775a6ef5 kvm_read_and_reset_pf_reason +EXPORT_SYMBOL_GPL vmlinux 0x775f2df7 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x7768e0dc tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x778b675a pmc_atom_write +EXPORT_SYMBOL_GPL vmlinux 0x778bd998 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x77a902a3 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x77ac006b gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b0a25c wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x77be1ec6 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x77e4d94e regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x7815aea3 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x781ea27f unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x78575bee atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785fa0fc usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x786179a3 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x7874b5ec unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x789a1b60 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x78d1acab power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x78eade40 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x78ef11c5 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x79153288 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x79207932 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x792fb51b irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x7938a0ea thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7939df9b ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x79452319 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x7950036f elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7957b1db __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x7978ab50 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss +EXPORT_SYMBOL_GPL vmlinux 0x79c89991 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x79cf1043 fpu_kernel_xstate_size +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped +EXPORT_SYMBOL_GPL vmlinux 0x79f06267 xen_remap_domain_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x79f2559a raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x7a093833 set_memory_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x7a20dfe5 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a3f5fa6 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x7a4b5b71 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a9b30bd __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x7aabbcd4 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x7aaebb8b spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x7abdfac9 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ad0f852 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7b02fccb bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x7b0bb73f __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b202401 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x7b2cdb9f gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7b3fd516 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x7b78bbb2 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x7b83ee37 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x7b858d4e rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7bad54c4 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x7bb2215a disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x7bdf8955 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x7be7a1b3 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7be87a2e device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x7beda097 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x7c09918f power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x7c1558ca pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x7c1adeb4 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x7c435a24 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7cb1e8db tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x7ccc8199 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cd8c6e5 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x7ce23fb9 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cffcb06 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x7d1a6c3e balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d759093 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x7d9c2402 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x7da16d7f tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7db9b16c rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x7dcb5cf8 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x7e2675f1 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7e3823e8 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x7e47baa4 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x7e4a418c gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e818121 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x7e8c1868 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7ea52b63 pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x7ee26f12 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7efb9575 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x7f1830c9 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x7f2ee407 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x7f3658e6 fpstate_init +EXPORT_SYMBOL_GPL vmlinux 0x7f7ac1e2 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7fb16f00 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x7fbc7dfd switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fe9ee1f gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x80156244 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x801b0503 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x803114aa usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x804c0e3c da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80a958b5 xen_swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x80ad8514 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x80beaaaa ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80cd3be7 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x80ce7a03 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x80cf73b1 bdev_dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80e2bf2f __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x80f9a6e4 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x80fb15d6 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x811dffdb gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x8147156a __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x8152e111 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x818b6cf4 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x819eaf4c sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x81a84515 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x81c2e98e pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x81dabc2c sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x81e41f3e mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x820845d8 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x82153f97 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x82202630 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x8234c88e subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x82417710 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x82433701 bpf_prog_get_type +EXPORT_SYMBOL_GPL vmlinux 0x824f3010 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x82863fd7 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x82a78d92 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x82b6b487 xen_efi_get_next_high_mono_count +EXPORT_SYMBOL_GPL vmlinux 0x82caef91 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82da9dbe ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x82dbec19 erst_write +EXPORT_SYMBOL_GPL vmlinux 0x82de1676 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x82e85c73 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x82f29255 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x831872e0 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x83191ecd xen_swiotlb_set_dma_mask +EXPORT_SYMBOL_GPL vmlinux 0x8330c42e swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x836666ce alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x8367a63e usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x836cdbd6 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x837b6a89 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x837e1016 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x8380974e watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83b57e96 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x83ba5fbb hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x83ca5797 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x83dcce63 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x83e1967f spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x83ed1b0b extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x83f312c2 acpi_dev_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x84034dcc xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x840dd978 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x8413e856 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x84390d7d regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x84716490 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8480f8a5 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x8488b83f pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84bc21c4 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x84f1bc47 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0x84f7e7fa crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x84fe2b1b xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x8513f51b security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x852f9ff3 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x85528638 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x859aea9a xen_set_domain_pte +EXPORT_SYMBOL_GPL vmlinux 0x85b907c5 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x85bdf952 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices +EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq +EXPORT_SYMBOL_GPL vmlinux 0x85dd0ff1 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x85fe1d55 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x8601c533 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x8611da31 use_mm +EXPORT_SYMBOL_GPL vmlinux 0x861206ef dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x8618fcb1 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x86297aa5 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x863ae686 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x86535967 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x8654be58 hv_remove_vmbus_irq +EXPORT_SYMBOL_GPL vmlinux 0x8655ea16 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x866a6aad ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x867b1a29 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x867bb0f5 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x86819bc6 irq_ts_restore +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x86a77292 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x86b42e15 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x86c3aff9 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x86cb0677 security_mmap_file +EXPORT_SYMBOL_GPL vmlinux 0x86d5774e devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x86da914b crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x86fe3d64 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x86ff5fa6 hyperv_cs +EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x87177aab __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x87270787 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x87499d3e phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x87a7359c transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x87bd47a9 clk_hw_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x87d01109 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x87d169f5 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x87ee0291 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x87f1374b devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x87f40c2f wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x887a5692 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x888f9c4a device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88b61664 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x88c3c5f5 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x8910f013 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892bdf5e irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x892d31c3 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x895077a8 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x8956aeae apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0x8976eaa9 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x89b0c329 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89d04cdf crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x89f24a36 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x8a23d1bd device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x8a4b8066 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x8a559846 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control +EXPORT_SYMBOL_GPL vmlinux 0x8a83bf89 set_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8a849f9b kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8add293f crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x8ae00137 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x8af306f3 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x8b072220 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b1e8e06 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x8b378009 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x8b548abe perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8b5cf43d cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x8b662e09 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x8b6ac09c cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x8b6fb2d2 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x8b9f7865 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x8ba586cc sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x8ba60c43 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x8bae3e06 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x8bb8b2f6 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x8bc8d060 intel_svm_bind_mm +EXPORT_SYMBOL_GPL vmlinux 0x8bd931d0 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x8be9170a dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x8bfe00b4 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8c00aecb blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c06a108 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x8c0a7dcf ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x8c145df9 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x8c173641 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x8c1aba81 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x8c2baff7 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x8c3a9622 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x8c4c13d4 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x8c56a4d8 device_register +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c69c194 switchdev_fib_ipv4_del +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c91b6c4 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x8c945fb5 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x8c9d1661 arch_phys_wc_index +EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8cb154b6 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x8cb3ad48 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x8cb5c3df wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8cd9f935 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0x8ce6fc52 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x8cee62e1 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x8cf31661 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d0a65c0 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8d0a9e41 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x8d0cdd49 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x8d1031ee pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d323c7c find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x8d3bd8fa br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x8d52e2cb regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x8d547fd1 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x8d5c3271 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x8d76430b platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x8d9fa235 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x8dad4056 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x8dc37228 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8ddb5a30 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x8de69eb1 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x8de72b71 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x8dec2996 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x8df159bb ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x8dffff8a wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x8e0f53c1 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x8e16656d da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e301ca2 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x8e364e39 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x8e542fbf fpu__restore +EXPORT_SYMBOL_GPL vmlinux 0x8e5d096e srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x8efabc7f blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f193a45 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x8f25cbd1 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x8f2c17a7 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x8f2fef8d switchdev_port_attr_get +EXPORT_SYMBOL_GPL vmlinux 0x8f3cc3bf mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x8f4062c3 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x8f466918 set_pages_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x8f51f09f modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x8f674dd9 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f9a1e22 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8fa256e3 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x8fa793c2 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x8fb72ef5 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x8fc276e6 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x8fcd531e thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x8fdd85ef regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8fe2e7ca devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8fe30893 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x900058c1 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x906b1c19 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x906d23ef crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x907539b8 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90b1aaa8 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x90b60456 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x90bef935 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x90dc29df aout_dump_debugregs +EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify +EXPORT_SYMBOL_GPL vmlinux 0x90dfb00a ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x90e1e9cb usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x9112b8e9 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x91138380 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x91344974 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x915bda4b serial8250_em485_init +EXPORT_SYMBOL_GPL vmlinux 0x916a6943 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x91879eef inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91a738de xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x91ad5bcf bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91eac90a pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x920210f0 __dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x921286ef devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x921b29ca __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x92210caf skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x92377b58 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x9242bb80 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x925e9739 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x92661953 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x926ba4f3 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x92902ae9 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x92a12226 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x92a66e44 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e0a2c0 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x92f0737e apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x92fac65e ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x9313061b fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x93430a2c pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x934aad11 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x936128b3 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x93622956 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x937227cb crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x938085c6 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x938663b4 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x938b9d23 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x93922111 get_compat_bpf_fprog +EXPORT_SYMBOL_GPL vmlinux 0x939ce8d9 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x93b3776a led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x93b88d53 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x93bed64d usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x93d7b01b __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x93df3a91 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x93fb3fa5 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x94205950 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x94332218 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x944d6cb2 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x9450550e percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0x946d0720 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x947137d0 x86_platform +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x94846447 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94a1d758 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x94a386bd ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x94c1b799 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x94c318be apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x94ca646a debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x94e25b1a usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f10d8c rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x950a228f blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x9559ab2e class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x955e2ec4 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x9572346b xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x9594c303 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x95a0ac12 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x95a2de70 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x95b3671e usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x95b98e7c __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95cf12e3 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x95d73d83 component_add +EXPORT_SYMBOL_GPL vmlinux 0x95ee6891 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x960cd611 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x964add15 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x964d5c39 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96636276 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x96670cf1 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x968d0fdd device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x96959fc8 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x96cb048e phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x96e1abc5 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x96fa57e9 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x9717dca2 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x972a829c raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x973ab8ad cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9774e19e crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x978f14b2 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x979500f5 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x97b738a4 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e0e854 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x97f64269 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x980ff387 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x983d30b5 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x983d7395 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x98717eb6 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98807745 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x988771e9 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x988bf18c iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x989e66b5 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x98a9d94b __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x98b4bf26 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x98c71dd5 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x98d9c80b serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x98e7f7d6 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x98f9f73d fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x991c4400 nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x9920bb6a unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x993fc175 vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9956d8af to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x995ad823 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x995da96b crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x9965e3e3 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x997fe9af cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x998eaeda sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x99946a50 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x99993e6f key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x999ead56 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x999f4802 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x99a9bf6e ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99b627ce __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99c8d466 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a266e55 nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x9a316abe pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x9a42ac9a ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x9a5ff314 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9a8452f2 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9a8c4a18 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ad0fd86 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x9ad2d74d skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9aee1da7 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x9af75939 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9b041341 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x9b08b70a kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x9b11aadc rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x9b2f96f6 xen_swiotlb_sync_sg_for_device +EXPORT_SYMBOL_GPL vmlinux 0x9b663003 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x9b6a7412 idle_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x9b720312 acpi_target_system_state +EXPORT_SYMBOL_GPL vmlinux 0x9b7589ca pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x9b94de46 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bb581c0 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x9bc025a2 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x9bc3e543 clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x9bc66123 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x9bd72b78 apei_write +EXPORT_SYMBOL_GPL vmlinux 0x9be84a16 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x9be86c36 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bfa008d crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x9c09dc5c nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x9c11d2cc nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x9c1d039a blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x9c237a1e dm_put +EXPORT_SYMBOL_GPL vmlinux 0x9c2de449 memory_add_physaddr_to_nid +EXPORT_SYMBOL_GPL vmlinux 0x9c2e4b66 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x9c3b9b2d pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x9c462261 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x9c4de7de reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9c538b7a dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x9c5b4033 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x9c77d6b4 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x9c85d4d1 get_system_keyring +EXPORT_SYMBOL_GPL vmlinux 0x9c9a855b irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ccdf526 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x9cce49b7 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x9ccf8245 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x9cfa1901 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x9cff8e9f gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x9d313cfd gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x9d427308 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x9d6e9700 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x9d8fc42d __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x9d9810ee blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x9dacbe76 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x9db21745 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x9ddb7956 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x9deb23ce rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x9df2c661 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x9df7a8ff exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x9e20f3fa sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x9e458dc6 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9eacc0b9 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x9eb5e728 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x9ec95c76 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ed9ef3d clk_hw_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x9ee7c037 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x9eef044e dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x9f10e953 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x9f38be64 put_device +EXPORT_SYMBOL_GPL vmlinux 0x9f5eab75 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x9f6259a2 amd_df_mcablock_names +EXPORT_SYMBOL_GPL vmlinux 0x9fa6f800 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x9faa487b gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x9fada840 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x9fbff1d1 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9ff03318 cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x9ff242df class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xa001da10 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xa014a6ac trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xa0152c42 xen_efi_get_next_variable +EXPORT_SYMBOL_GPL vmlinux 0xa0245d51 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xa04fe0c2 smp_ops +EXPORT_SYMBOL_GPL vmlinux 0xa05ef609 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xa091b1a4 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xa0a1a6f0 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xa0a85ab5 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xa0b55417 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xa0ba8344 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xa0be3b94 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xa0cbe69b _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0xa0cd0abe tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xa0d208ec unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xa0f334d1 arch_add_memory +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa1161c8f dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xa11b55b2 xen_start_info +EXPORT_SYMBOL_GPL vmlinux 0xa126a454 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xa14e289a led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa1664977 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xa1679e80 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xa17cec7d of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xa17ecd85 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0xa180b6a4 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1d5ff02 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xa1daab19 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xa1dbe348 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa1f10453 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xa1f79553 xen_create_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xa2098582 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xa23188ab blk_poll +EXPORT_SYMBOL_GPL vmlinux 0xa2357eaa __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xa236b8f7 copy_reserved_iova +EXPORT_SYMBOL_GPL vmlinux 0xa24e60d4 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa2576dc7 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2708a09 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa283c99a task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xa297b3cd __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0xa2b6c3f7 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa2ba18ce iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2d05991 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xa2d6c670 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xa2db6404 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xa2dd0d91 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa308a7e4 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xa327b3b4 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xa36135aa ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xa37e0aa6 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa386c029 trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa38dac41 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa38f74d2 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0xa39f18f7 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a556e1 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3bc0695 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa43649e7 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0xa4397586 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0xa43c5040 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa466de38 acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa486f6cb register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xa4a41a77 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xa4d3bcbe pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xa4d99e71 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xa500a9a2 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0xa503755f da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa5247f50 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xa53dc5a4 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0xa54508a9 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xa55435b7 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xa562db75 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xa56de7e9 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xa572fc4a __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xa573a9de usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xa5799dd5 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xa57b78d4 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xa57d3896 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xa58576c8 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xa58ce72f isa_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xa59b6a2d ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xa5cdd26b register_mce_write_callback +EXPORT_SYMBOL_GPL vmlinux 0xa5ee29bc nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa605d61c hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list +EXPORT_SYMBOL_GPL vmlinux 0xa66438e8 erst_read +EXPORT_SYMBOL_GPL vmlinux 0xa67da9fe fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0xa69b51ea posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xa69cd192 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xa6a239e0 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6bb3e35 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0xa6ce392d regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xa6d08a7c blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6faad82 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xa71ee5e9 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xa7215606 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xa7225553 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xa74c2598 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xa7532f01 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xa75a2964 switchdev_port_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xa7670de2 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xa7684cb3 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0xa77b9b84 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xa789ad24 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xa78d78c9 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa7918d2b srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xa79b42f9 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xa7a1b97c ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xa7b65773 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xa7bc3eb8 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa7cdd8ca wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0xa7e3bbb2 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xa7fae3cb alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xa801b359 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0xa80d9890 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xa81db05f apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xa8241c33 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xa83de982 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xa8507888 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa8641a1d nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0xa8aa6b6c wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8c80b13 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xa8d104df __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xa8d9e6db devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa925a0e4 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa94c5915 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xa981df58 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa99e5b2b iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xa9de7e0f isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e49b92 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xaa10d9a6 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xaa21380f devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xaa27b88f ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xaa2832cd __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xaa32fa1d pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xaa4295ac show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xaa49d6ed pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0xaa6bdd39 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xaa805549 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xaa98d146 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xaaa61c8b tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0xab0b7690 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xab148b90 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab2b771b xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xab6943a4 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab83d0a7 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0xab8d5af7 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0xab9b54bb switchdev_port_bridge_setlink +EXPORT_SYMBOL_GPL vmlinux 0xabb09c79 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0xabb5b1d8 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabdf5b23 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xabe63b60 print_context_stack +EXPORT_SYMBOL_GPL vmlinux 0xabea3959 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xabf85721 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xac04e700 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0xac1f9c3f crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xac53005b ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xac7cc39e ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xac9696d7 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0xac9ce195 kvm_async_pf_task_wait +EXPORT_SYMBOL_GPL vmlinux 0xaca1bbea usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xacafa8e7 vector_used_by_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xacbe8bbb store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0xaced0b18 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xacf1c5fb mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xad0653d5 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xad0b28e2 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xad21eb76 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xad4307ce usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xad4459e3 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xad5b7aeb ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xad5e1836 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xad5f0017 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad81756d kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xad8d8ab0 xen_physdev_op_compat +EXPORT_SYMBOL_GPL vmlinux 0xad9778e0 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xada8d066 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xadafe33b fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xadb0b833 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadecae8b skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae00655e virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xae0341d1 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xae62c7ce netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6eaf93 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae7c8291 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0xae810f0e sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xae85d8ed iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xae863f35 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xae882a95 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0xaea7b4c3 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0xaeb0480c regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xaecba6be percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0xaecbfca7 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xaed193b3 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0xaef46491 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xaef61ed6 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xaf0443d0 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xaf1c9677 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xaf46b370 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xaf77b298 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xaf98818f crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xafbf6b77 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xafc75057 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xafcde996 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xafceaf00 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xafd21f81 acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0xafe657a0 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xafee6117 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0xb009b8f8 user_update +EXPORT_SYMBOL_GPL vmlinux 0xb0210776 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb0360b88 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0xb038bfc9 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb048b954 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb09f8e28 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb0a0700b inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xb0a982fe regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xb0aaf27b usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0fcc65d dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb1279d83 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb14a9b60 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xb150044f bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xb15983dd pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb16269c9 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xb170dce2 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init +EXPORT_SYMBOL_GPL vmlinux 0xb179960e __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb19a3856 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xb1a5f2fe usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xb1a94b29 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1bedeb7 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1ca768d open_check_o_direct +EXPORT_SYMBOL_GPL vmlinux 0xb1dfd5da spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1ee72b3 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xb1f679d8 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xb20bd30b efivars_register +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb221582a crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xb237c12e rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xb24458eb usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xb25f6644 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xb2667a18 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb2758826 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xb2833da7 devm_nsio_disable +EXPORT_SYMBOL_GPL vmlinux 0xb2889ccb relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xb28d8d77 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xb29cd19a rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xb2a1e2c4 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xb2ab6d25 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xb2b0c9ff devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xb2b2f2da rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xb2d8cd46 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb3018d81 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb33dad00 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb34808a2 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xb348562a scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xb34b6647 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xb35e3614 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xb3790666 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb3a6ce87 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb3bf7243 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb3c47ce0 phy_get +EXPORT_SYMBOL_GPL vmlinux 0xb3c9672d pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xb3d55dee irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xb3d6abce usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xb3da724d ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xb3f27c58 rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0xb4013c9f usb_string +EXPORT_SYMBOL_GPL vmlinux 0xb404c5ce region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xb40a5fba iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xb4244759 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xb428cfeb power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xb43bab90 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xb4416d4e dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xb4557e67 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xb45adc7b devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xb4643fec wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb46a636e ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0xb46efcb7 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb4846f48 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xb4ad69fa pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4d21e95 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xb4d24362 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xb4d68925 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0xb4dac31d led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb5071bd5 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xb50f4b4f max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xb517e9a0 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb520e9be ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb53ec51b crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xb54ace6c irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xb565d7b7 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xb58a5d28 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb58dda03 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5a93fa7 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xb5aa0371 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0xb5af2883 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xb5b2275b pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xb5bdadb7 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xb5dcd1f8 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xb5e70fcd rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xb5e7a9f3 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb5f693fb rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb65e3dc1 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid +EXPORT_SYMBOL_GPL vmlinux 0xb6660c14 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xb679bbc8 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0xb683b1f6 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xb68afb4b bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xb697a250 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xb69face4 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6affa4d sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0xb6b0c57c pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xb6c753bd transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6e72510 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0xb6efb854 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xb6f31da5 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xb7132fd9 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xb718f2f9 sfi_table_parse +EXPORT_SYMBOL_GPL vmlinux 0xb71d41fb blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0xb728bffb platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73b740a trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0xb73cef81 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0xb73e5ebe gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xb73f2c43 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0xb74b09c2 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xb7541a9d pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xb75fb81d fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0xb76929ef dm_use_blk_mq +EXPORT_SYMBOL_GPL vmlinux 0xb779ed8d pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xb77bdfa6 devm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0xb7831614 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xb79016f8 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0xb79de2d1 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xb7a4bd85 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xb7a6a992 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xb7ae92e9 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xb7c605cf mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7cc56eb usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xb7d5a4a4 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7f2f245 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb82f3dfc ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xb83d4ee1 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xb8487dfa xen_swiotlb_map_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0xb8584229 device_del +EXPORT_SYMBOL_GPL vmlinux 0xb878ad0a rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb88f0b8a class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xb89302eb regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xb89cda32 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xb8a5e48d gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0xb8b57aea acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0xb8be57db ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8cdd949 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0xb8e7b79f driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xb8f33348 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb90bc9f7 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xb91dcdea __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xb91f3cf7 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xb9205695 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xb9246fec events_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xb9539f99 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb971be2d pm_genpd_syscore_poweron +EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read +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 0xb9ecc97a ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xb9f8d6bb acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0xba040775 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xba0c018d napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xba1234cc put_filp +EXPORT_SYMBOL_GPL vmlinux 0xba20da5d acpi_dev_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xba2b356b fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba2bf065 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xba2e21e5 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xba3c9ed4 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xba666d27 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xba78f042 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xba8e06b9 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xba94c685 cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbae4d350 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbb0244b5 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb078647 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb285a96 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xbb423c76 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xbb45675f acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xbb4d9a0b device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xbb537769 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xbb642e11 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb70f5db fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xbb80d24b public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xbb89b947 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbc0e60b device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xbbd35837 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xbbd4f657 xen_pcpu_id +EXPORT_SYMBOL_GPL vmlinux 0xbbedfd8b usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xbbf89d9f static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0xbbfd824e regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xbc089555 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xbc161034 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xbc385a47 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbc4217d4 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc8deaba crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xbca224fe nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xbca7d36a md_run +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcad4152 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0xbcba36a7 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xbcbd388c da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xbcc3cc6b ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcfa9ba6 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xbcfe805b xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0xbd0c879c regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbd198024 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xbd1cda70 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xbd354db1 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd4ca8c3 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xbd737cbd ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbd7fdf45 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xbd86b127 usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xbd8e5da3 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xbd92292c pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xbd94f643 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xbda34570 ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xbdba4d8e da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbdd5f10f apei_hest_parse +EXPORT_SYMBOL_GPL vmlinux 0xbdd92129 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xbde82b8b pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe329e28 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xbe44fd75 mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbe50bf60 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xbe5d0996 idle_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe8a9623 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xbe968059 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xbe9be272 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeaa8ee1 nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xbebba94c arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbec850dd sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xbedfc80e to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xbee1451c dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xbee38801 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf18fbc7 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xbf2e0f75 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbf3b2f6b injectm +EXPORT_SYMBOL_GPL vmlinux 0xbf47d75b devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xbf567a47 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xbf58ad45 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xbf60b589 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xbf63de5e md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xbf883e9a component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xbf8f43e8 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xbfa02a8b i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xbfa5f73b agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xbfb1be70 hv_setup_vmbus_irq +EXPORT_SYMBOL_GPL vmlinux 0xbfb8f6c7 xen_swiotlb_dma_mapping_error +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfcd9b29 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xbfd10bb7 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbffcb67f usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc00affa0 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xc01d1d0d ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xc01e67c3 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xc0273c6d ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xc04b21bd acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc057253d nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc086f7aa pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xc0877271 switchdev_port_obj_dump +EXPORT_SYMBOL_GPL vmlinux 0xc0900fcf acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0c9b185 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0dbfe77 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xc0dea70f fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f0aa7f __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc0f8f1b8 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xc0fca5de led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc1026a61 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xc1317793 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xc13810dc clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc13fe0df mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xc14c2824 xenbus_probe +EXPORT_SYMBOL_GPL vmlinux 0xc155e57d irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xc156d435 ipv6_rcv_saddr_equal +EXPORT_SYMBOL_GPL vmlinux 0xc156e137 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xc16d2182 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xc171e76d gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc18c0263 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xc1a43a2a tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xc1aaf053 devm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xc1aba344 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xc1c2e511 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xc1e2570a pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0xc1f9bea3 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc22e279b dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0xc241921a acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0xc24eef4d spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xc258529b ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xc259127c fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xc2592f06 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc260ce85 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xc26a2adf device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xc27b9e67 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc283d5e3 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0xc28857fd sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xc2a7272e ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xc2ae9656 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xc2bb28b5 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0xc2d9bba9 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xc2e30559 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xc2f9c123 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc2fb44af ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xc3038316 wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xc324fb47 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xc340c0a7 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc351b727 efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xc36923f8 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc37a1ba4 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xc387a038 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc3b63e38 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xc3c1a184 xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0xc3cabb95 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc3d19498 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0xc3f11d8f kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xc4033bb5 klp_unregister_patch +EXPORT_SYMBOL_GPL vmlinux 0xc4126c5e ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0xc420b651 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc434f1c1 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xc447dd93 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xc4544942 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc4572398 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xc46ed443 devres_release +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc47cb4a7 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc48dee7d regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xc4ba886f nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xc4be174b iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc4d61a2f ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xc4d760c7 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc4da321a crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xc525e48c ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xc52de466 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc54390de irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xc55a4ba4 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xc55bd176 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xc565dd29 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xc568c60b of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5878314 blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0xc591cd09 security_path_link +EXPORT_SYMBOL_GPL vmlinux 0xc5aaa491 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc5b30c74 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5ccad32 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5d6aa61 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5d745be virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xc5d858c7 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xc6024f99 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc6277c8b driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xc628f14c bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xc62edf88 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xc63cc012 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc65a3410 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xc65ceb97 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6c701d8 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xc6ccc12c clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xc6e1ff85 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xc6ebfcae virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc7345a3b adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xc73b7e35 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc74a9f37 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xc7643859 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xc7698adc acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0xc76e5d08 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xc776b01c __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc78df5b6 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7b636aa spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0xc7ccc216 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0xc7d99182 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7f411a8 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xc81c2a48 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xc82bbfb5 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xc83100a0 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0xc858659f reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc87f5d57 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc899555f inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0xc8a17ad6 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0xc8ace722 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8af2199 switchdev_port_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xc8b35e07 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xc8b6988b pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xc8bb6262 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc8dd29b5 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8e35208 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xc8f7bddd pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xc8fa0e0c da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc92b0c14 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xc93424c5 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc965e93c fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc9734ac5 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xc991f751 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xc9a021e6 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xc9a16c47 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xc9be60f8 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9cc6a18 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xc9ce827f usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0xc9e93247 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9f8e403 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xc9fdce6b efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0xca274c96 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xca290c8b setfl +EXPORT_SYMBOL_GPL vmlinux 0xca3d60ba swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0xca45cacc blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xca629a8d spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0xca7903a1 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0xca99b6b0 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcabf0598 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0xcad8a804 xen_swiotlb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xcae87bb1 regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xcb10c523 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcb12bd19 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb27820e pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xcb51b8f7 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xcb5608d6 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xcb634798 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xcb660102 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xcb808ddb wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xcb87014a ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xcbbefaa9 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xcbd9e5f8 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xcbdf4569 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcc005256 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xcc33d27c register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xcc4c0a12 device_add +EXPORT_SYMBOL_GPL vmlinux 0xcc728ad8 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xcc7afb0c rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xccb6f9d8 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xccb864b6 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd42a87 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcce47cf7 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0xccf355e4 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xccf49ac7 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xccf53b0f md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xcd0d924b __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xcd17e6ff xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0xcd51406e unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xcd5d4ef9 btree_update +EXPORT_SYMBOL_GPL vmlinux 0xcd5e5acf device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcd8c3118 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xcd8ea787 agp_remove_bridge +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 0xcdafd722 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdfcb65a cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0xcdfeb9de pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xcdffae94 security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0xce12d037 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0xce2c459a cs47l24_irq +EXPORT_SYMBOL_GPL vmlinux 0xce2fbf13 xen_swiotlb_sync_single_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0xce5b569c pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xce5f1f34 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce78846d l3mdev_get_rt6_dst +EXPORT_SYMBOL_GPL vmlinux 0xce7914ad ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xce8c10aa tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xcea21192 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xcec386e8 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xced4d6d8 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcef01ebd scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xcef1dd0e perf_check_microcode +EXPORT_SYMBOL_GPL vmlinux 0xcef486af devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xcf03bdb5 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0xcf06676e inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xcf14daeb ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xcf19e7b6 iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0xcf1b0597 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0xcf457f52 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xcf48cbf1 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xcf4b6d31 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xcf4b767a gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf5550ca devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xcf62a11a tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xcf89a83c spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xcf8b1afb adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xcf8bd117 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0xcf8d0293 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcf8e0e56 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xcf96608f irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xcf9bdb07 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xcf9db168 put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfbc7b9a list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xcfc5f362 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xcfc675fc scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfc7e1c8 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xcfc9cf89 debugfs_use_file_finish +EXPORT_SYMBOL_GPL vmlinux 0xcfd072ec __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xcfe4c3ff gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xcfe89d1c tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xcfecde9f mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xcff9fffc sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xd0173120 clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xd01fc322 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xd02b892b get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd05a1d3a acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd0837584 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd0a334a5 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c5e3f1 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xd0c6b14a rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0xd0f6f4bd crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xd0f9eea5 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd101b2ae fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0xd10465db __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xd10731f5 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xd11b424d mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xd11c830b __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xd130ee96 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xd14df7cb ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xd14ea7f7 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xd1507e59 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0xd155fe90 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd182386a key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xd191d952 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xd1d7fd46 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xd1d875ad ping_err +EXPORT_SYMBOL_GPL vmlinux 0xd1dec2d4 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd2124086 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd276c26c perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xd28285ef power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd284a5f3 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xd2ab9c1d crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xd2b4ad40 acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0xd2b6ae5e ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xd2c58ab2 apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0xd2d1927b hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2e7470b ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xd2e88de5 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xd2edcd5e dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd2ef122a tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xd2f8a828 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xd2fa8f89 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xd30aa340 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0xd30c1a0d efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd32cfadd uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd35d6276 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xd35fe937 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xd391222b transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xd391a29d shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xd3d27cd7 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xd3e7ebae debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xd3e944b7 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd4393afa __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd44bad49 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xd477a394 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xd483b7d5 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xd48d3160 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xd48ede9a sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xd4a732bd fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0xd4afe9c0 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xd4bb6914 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c6962a mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd4c87f03 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xd4db0c15 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xd4e43304 xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0xd4f5f064 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd4f9dfd9 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xd50e94e4 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xd5264c98 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xd55a7a06 l3mdev_get_saddr6 +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd564649a uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xd567a627 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0xd56c04a6 xen_efi_update_capsule +EXPORT_SYMBOL_GPL vmlinux 0xd56dfe1a regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xd580f7c1 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xd596d266 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xd5a53016 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd5bcd746 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5c72be4 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd5dbd38e bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0xd5faf0a2 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xd609f59b hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd6326e34 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xd63845fa pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xd644386c cs47l24_patch +EXPORT_SYMBOL_GPL vmlinux 0xd647946e crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xd648edd5 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xd64c22e5 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xd650af9b dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xd6559d28 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0xd661893b gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd673fdb7 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xd67c6abb sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xd6920159 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0xd6ec8205 iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0xd6ed3a8e cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd708ac9b ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xd7138d91 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xd717c705 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd7415f79 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xd74be9ae xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0xd7541ab3 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd77d0f93 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0xd78bb7cc irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0xd79c89de clk_hw_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xd7c0814d rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xd7cd0aba pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xd7d750ad single_open_net +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd8011064 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xd815964f devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd8375a54 amd_core_mcablock_names +EXPORT_SYMBOL_GPL vmlinux 0xd86600f5 blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0xd86d1909 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd89082f3 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xd893db69 clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xd898e4ae devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xd89fcafa ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd8a89109 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xd8d6761c regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xd8e52017 insert_resource +EXPORT_SYMBOL_GPL vmlinux 0xd8e61940 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xd8ec3de3 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd8efbc61 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xd8f108c8 klp_disable_patch +EXPORT_SYMBOL_GPL vmlinux 0xd8f72b68 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xd9069333 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges +EXPORT_SYMBOL_GPL vmlinux 0xd921aba1 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94fa823 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0xd9543440 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xd95abc22 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xd9665e75 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd986dad1 kernel_fpu_begin +EXPORT_SYMBOL_GPL vmlinux 0xd9966817 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xd9a426a2 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xd9b7cee9 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xd9c72eba do_truncate +EXPORT_SYMBOL_GPL vmlinux 0xd9d56f9a rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xd9d62704 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xda18ffb8 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xda2102af acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0xda301ec6 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xda389561 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0xda46e7eb blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xda567bfd unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xda631701 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xda69fbe9 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xda712121 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xda79762d class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xda8e9887 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xda9c763f usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdaacdfb4 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xdac7cd3b pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0xdad6132d pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xdad90070 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdadee205 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaed409f tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdaf0e9d2 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb0e8f16 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xdb0f40ae rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xdb156959 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xdb1da31d sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xdb2927c4 xen_swiotlb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb580cdc bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdb621dba acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb6be5f6 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xdb852172 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb916fd0 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xdb9ef19e platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xdbb9690f xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0xdbc32dfa fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0xdbcb6548 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xdbd9194f devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xdbe73c09 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xdbed8499 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbfe04e7 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc0ef9e3 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc248a25 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xdc579200 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc68be9a __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xdc6b813c lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xdc712d84 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcad4fb6 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdcd05439 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xdd039db4 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0xdd1049d1 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd2d04fc device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0xdd603864 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xdd6df9d4 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xdd927561 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdd9620e7 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xddbba40d usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xdddeb9fa rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xde06874e usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xde2223b3 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xde2ada21 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xde2b1e06 xen_efi_query_capsule_caps +EXPORT_SYMBOL_GPL vmlinux 0xde38cf74 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde7cb9fd add_dma_domain +EXPORT_SYMBOL_GPL vmlinux 0xde8dd926 klist_next +EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdea2e2d6 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xdeb16507 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xdeb544b1 get_empty_filp +EXPORT_SYMBOL_GPL vmlinux 0xdec1af51 alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0xdec70449 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0xdecf1a55 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xded29c5e init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xdef5617c efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf0fef77 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xdf13a4d5 clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xdf1d4ae1 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xdf263f7b ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xdf2d49c7 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdf3e1be0 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xdf622181 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xdf6d2593 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xdf6e2081 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xdf79e9ea pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xdf9ef683 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xdfa78218 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xdfefe0f9 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xe000ba01 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe008fc3a regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xe00e2a23 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe04946fd usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xe04b7dfc clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe0733a18 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0bb8a1e acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0cf878e pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0xe0d989e7 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0xe10a2931 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe138657a get_device +EXPORT_SYMBOL_GPL vmlinux 0xe162e766 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe16acd1f tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xe16b0d30 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe1ab011e crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xe1accb5a dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xe1adab72 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1ce50ba tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xe201f67c pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xe23e87f7 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xe270a517 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xe2816132 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe29747c9 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xe2a44587 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2d4909a sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe32662d5 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0xe34a320d class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xe3747e1e xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xe386cbd5 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list +EXPORT_SYMBOL_GPL vmlinux 0xe3a7b5aa i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0xe3babd6a ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3dfd047 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe3e180fd xen_efi_get_wakeup_time +EXPORT_SYMBOL_GPL vmlinux 0xe3e43ae3 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xe3f39aa3 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0xe3f504cc device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe403ba4a regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xe40e5d7d rcu_exp_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0xe415e488 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xe418fde4 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe436afee extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xe4476631 xen_remap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xe44b1077 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xe45152b7 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe49e46a6 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xe4b42b3c pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xe4c05187 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0xe4c0d484 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xe4c21752 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0xe4de0dd9 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4e68bc8 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0xe514d401 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xe5209f98 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xe545a811 get_xsave_addr +EXPORT_SYMBOL_GPL vmlinux 0xe54e3351 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xe54f0c04 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0xe556e55b vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xe577a418 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xe579481e nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0xe5842f4f bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe591bfa7 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xe5a74f9e __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xe5b8082b cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0xe5ea06cc x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xe5f677a6 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0xe5f69281 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xe5ff7c23 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xe60aa38f switchdev_port_fdb_del +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe656284b locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xe6638b49 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xe66e2cec rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6cc907b devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6e85dd7 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0xe6efe8e3 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe6fa7616 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xe702ec6f xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xe718548a crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xe71daf8a usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe74b7979 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe75882da powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe76ff0b9 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe7779acf devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0xe7817978 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe785c818 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xe78ce7e1 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0xe78fa425 udp6_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0xe7aac51c clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xe7aedd68 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0xe7da7e86 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xe7e3f737 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xe7f61dda acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe809f7be rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe848d6ca tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xe84b5730 __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe8618ff2 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0xe862b992 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe865d482 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xe8981a62 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe8a4086e rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe8ab2763 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xe8da4f2c vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xe8e07551 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xe8f5154a powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0xe90cf884 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xe90d7ad5 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xe9208a28 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe945bc1b debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xe9474bde dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xe982268c pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xe987f539 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xe99a07f0 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xe9aec087 extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xe9b8b993 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9ea1194 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xe9eb7a23 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xe9f7e79f __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xe9f9fbc0 x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea33341b iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xea3753b5 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea626807 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea9a6dba regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xeabfb3e5 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xead1277b __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xeaecaa2e tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xeb037783 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0xeb2798f7 xen_destroy_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xeb2a7f78 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xeb2f6080 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xeb370805 __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xeb4047db fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xeb548bba wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xeb5c7a9c clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xeb67ddc8 vfs_readf +EXPORT_SYMBOL_GPL vmlinux 0xeb8274d2 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0xeb82deab pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0xeb8813bb dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xeb8c1083 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0xeba8190e usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xebb98de7 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xebc9342e ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xebd707c3 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xebd79545 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec38cdf1 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xec4e7f8f rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xec5d42fa reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0xec78c88a sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xec817313 gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0xeca900db __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xecaaec7c nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0xecad3b34 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0xecc28362 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xeccc5ea9 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xecd140a0 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xecf54588 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xecf94e99 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xed15a112 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xed17c2f7 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xed1d4ad4 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xed2c3576 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xed35d522 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xed4332ef pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xed45ad19 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xed5e4ab4 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0xed6169d4 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xed66d37c debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xed728228 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xed843549 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xed96edc0 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xed9711a8 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xed9ce7ef inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xedbf4018 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xedc482b5 security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0xedca62d2 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xedcdffd4 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0xedec4aae dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0xee0c559f gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 +EXPORT_SYMBOL_GPL vmlinux 0xee1f20fa sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xee24cd2a switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xee299241 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xee4d2907 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee881c03 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xeec18bf7 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xeec3d9f0 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0xeeddd815 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run +EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xeeee81b5 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xeef0e55f i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef202cf3 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0xef601136 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0xef62b926 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat +EXPORT_SYMBOL_GPL vmlinux 0xef7a424b alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa63236 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xefaead1f rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xefc8b4a3 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0xeffc0f1e to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xf00723b7 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xf02d2a83 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf04f59fa sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xf05fc29b blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf0701bbd tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf08e158c pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xf0937e08 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xf0ae15d7 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xf0b2d215 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf0c4cfa3 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xf0e4d28f bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf0fd4e5d crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xf131022a hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf1466140 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xf15b61f6 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xf16552ec scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xf1699f0d ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf190c196 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf1a4b036 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xf1a9b3ae serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1b551d9 ibft_addr +EXPORT_SYMBOL_GPL vmlinux 0xf1c346b6 nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xf1cda7ae bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0xf1cef43f sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xf1e7abd5 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf1e98c43 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xf1feed13 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xf20bb565 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xf210b236 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0xf216ee00 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf252c39b irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf2606ad6 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf2727332 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xf275c2c1 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf291252d alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0xf2a50ad7 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf302cc0f serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xf304a216 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf32413e5 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33151a5 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xf3401613 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf34fda16 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xf35d1d17 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xf3717d9d devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf376b728 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf39ec768 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0xf39fb9d5 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3bf4f63 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xf3c55d47 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xf3d16a69 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0xf3dd3ec1 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf3ddc56e raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xf3ebf4eb arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf412d395 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xf419c46f ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf4303d9d tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf45ea288 blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4a3aa7a pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4b61b97 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xf4bb2bc0 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0xf4c8376e ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0xf4dca3fe register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xf4eb4091 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xf4ef4e73 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf5276777 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xf52c58a4 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf539c26c pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xf541f4bf blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xf544950b __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xf59deb53 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xf5a16f7f devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5adc563 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xf5ef7b15 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xf5fc637f irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0xf645f533 xenbus_dev_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xf651bd8d ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xf6546f8c ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xf659f0e3 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xf66fc49d aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf67d06c2 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0xf687498f perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xf69ae354 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0xf6a16068 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xf6a9556a btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xf6b25731 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks +EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0xf70e4a4d preempt_schedule_notrace +EXPORT_SYMBOL_GPL vmlinux 0xf74fcea9 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf757ea8e securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xf75c696b skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xf7859093 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf7b6bc0f uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7ca9f47 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xf7cd246e iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xf7eb43ae sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf8344cfe rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xf842efaa pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0xf861158d serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xf861dd21 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xf8795711 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xf87a37c9 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf89c25e7 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xf8c11698 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0xf8c7605a flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf91f38a4 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf969bee1 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match +EXPORT_SYMBOL_GPL vmlinux 0xf97c0fae anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf9836676 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0xf99036c0 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf9942a15 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a27ae4 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0xf9adb33a pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9d9264e xen_have_vector_callback +EXPORT_SYMBOL_GPL vmlinux 0xf9e2d59d dbs_update +EXPORT_SYMBOL_GPL vmlinux 0xfa0cefde inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched +EXPORT_SYMBOL_GPL vmlinux 0xfa3b3beb uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xfa46cb65 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xfa564ebe fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xfa5ea4fe irqd_cfg +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfa9e33f7 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xfaab1596 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfab41e2e ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xfacdceea device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xfadafbaf gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xfadc4bf7 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xfae2c000 tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0xfae452e9 find_iova +EXPORT_SYMBOL_GPL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL_GPL vmlinux 0xfae84193 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xfaf46f4b pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0xfb11f84b virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xfb14418e pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xfb25ce06 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0xfb2e2c88 del_dma_domain +EXPORT_SYMBOL_GPL vmlinux 0xfb2ebae6 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb45824b wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xfb64b230 acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0xfb6a8f53 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb6fa007 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xfba5fc9e virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc86344 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xfbcaa84e get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xfbcd1bae da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xfbcd3b5f scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xfbe2ddca remove_resource +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc1d9145 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc347060 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xfc37f1ae cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc4c6263 __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0xfc6d17a2 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xfc81be04 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xfc968c8b apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0xfcaa7a72 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xfcbd98fd irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0xfcd987b3 cpu_tlbstate +EXPORT_SYMBOL_GPL vmlinux 0xfceddee0 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfcf5c45d irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xfd11109a platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xfd2b2025 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xfd2d77b4 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0xfd3a393b mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xfd471e00 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0xfd4f09af xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xfd6bec95 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0xfd701ede pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd77dfc9 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xfd78a56a __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0xfda26e77 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xfda57b98 __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0xfdb80315 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xfdc9930e spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0xfdd1bc4d iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xfdd7a68a debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xfdf01e36 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xfdf0573d led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xfdf10856 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0xfe314622 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfe3a24a2 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xfe3e93d5 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe7d2e9e devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xfe81f733 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xfe88b74b gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xfe92ac76 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfea0a6c9 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xfeb97380 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xfec458d9 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xfecd43ca regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfedfc048 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xfee02f24 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfee726f2 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xfeef72bb shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0xfefb2ae0 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff129e71 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xff12a6cb crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff2ce747 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0xff54d989 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff606afe pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xff60e8dc intel_pmc_slp_s0_counter_read +EXPORT_SYMBOL_GPL vmlinux 0xff754a25 xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0xff929ac5 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xff9e8613 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffe17893 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xffe978be attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xffe9e27e public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xfffbda6f to_nvdimm --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/amd64/lowlatency.compiler +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/amd64/lowlatency.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 6.2.0-5ubuntu12) 6.2.0 20161005 --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/amd64/lowlatency.modules +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/amd64/lowlatency.modules @@ -0,0 +1,4819 @@ +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_dw +8250_mid +8250_moxa +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +BusLogic +DAC960 +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +abituguru +abituguru3 +ablk_helper +ac97_bus +acard-ahci +acecad +acenic +acer-wmi +acerhdf +acpi-als +acpi_configfs +acpi_extlog +acpi_ipmi +acpi_pad +acpi_power_meter +acpi_thermal_rel +acpiphp_ibm +acquirewdt +act200l-sir +act8865-regulator +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5761 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7606_par +ad7606_spi +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +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 +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adf7242 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16209 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7170 +adv7175 +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +advantechwdt +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +aes-x86_64 +aesni-intel +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +afe4403 +afe4404 +affs +ah4 +ah6 +aha152x_cs +ahci +ahci_platform +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airo_cs +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +ali-ircc +alienware-wmi +alim1535_wdt +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am2315 +am53c974 +ambassador +amc6821 +amd +amd-rng +amd5536udc +amd64_edac_mod +amd76xrom +amd8111e +amd_freq_sensitivity +amd_iommu_v2 +amdgpu +amdkfd +amilo-rfkill +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 +anatop-regulator +ansi_cprng +anubis +aoe +apanel +apds9300 +apds9802als +apds990x +apds9960 +apple-gmux +apple_bl +appledisplay +applesmc +appletalk +appletouch +applicom +aquantia +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_ps2 +arc_uart +arcfb +arcmsr +arcnet +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arm_scpi +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3935 +as5011 +asb100 +asc7621 +ascot2e +asix +ast +asus-laptop +asus-nb-wmi +asus-wireless +asus-wmi +asus_atk0110 +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atlas-ph-sensor +atlas_btns +atm +atmel +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avm_cs +avma1_cs +avmfritz +ax25 +ax88179_178a +axnet_cs +axp20x +axp20x-i2c +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +b53_common +b53_mdio +b53_mmap +b53_spi +b53_srab +bas_gigaset +batman-adv +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7xxx +bcm87xx +bcm_sf2 +bcma +bcma-hcd +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780 +binfmt_misc +block2mtd +blocklayoutdriver +blowfish-x86_64 +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bma220_spi +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmc150_magn_i2c +bmc150_magn_spi +bmg160_core +bmg160_i2c +bmg160_spi +bmi160_core +bmi160_i2c +bmi160_spi +bmp085 +bmp085-i2c +bmp085-spi +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bonding +bpa10x +bpck +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +bq27xxx_battery_i2c +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt3c_cs +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btuart_cs +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c2port-duramar2150 +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +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-raw +capi +capidrv +capmode +capsule-loader +carl9170 +carminefb +cassini +cast5-avx-x86_64 +cast5_generic +cast6-avx-x86_64 +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +ccp +ccp-crypto +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +cec +cec-edid +ceph +cfag12864b +cfag12864bfb +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20-x86_64 +chacha20_generic +chacha20poly1305 +chaoskey +chip +chipreg +chnl_net +chromeos_laptop +chromeos_pstore +ci_hdrc +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +ck804xrom +classmate-laptop +clip +clk-cdce706 +clk-cs2000-cp +clk-palmas +clk-pwm +clk-s2mps11 +clk-scpi +clk-si5351 +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 +configfs +contec_pci_dio +cordic +core +coretemp +cosm_bus +cosm_client +cp210x +cpcihp_generic +cpcihp_zt5550 +cpia2 +cpsw_ale +cpu-notifier-error-inject +cpu5wdt +cpufreq_schedutil +cpuid +cr_bllcd +cramfs +crc-itu-t +crc32-pclmul +crc32_generic +crc7 +crc8 +crct10dif-pclmul +cros_ec +cros_ec_devs +cros_ec_i2c +cros_ec_keyb +cros_ec_lpc +cros_ec_spi +cros_kbd_led_backlight +crvml +cryptd +crypto_user +cryptoloop +cs3308 +cs5345 +cs53l32a +csiostor +ct82c710 +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +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 +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cxgbit +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +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-regulator +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 +dax_pmem +db9 +dc395x +dca +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +dcdbas +ddbridge +de2104x +de4x5 +decnet +deflate +defxx +dell-laptop +dell-led +dell-rbtn +dell-smbios +dell-smm-hwmon +dell-smo8800 +dell-wmi +dell-wmi-aio +dell_rbu +denali +denali_pci +des3_ede-x86_64 +des_generic +designware_i2s +designware_pcm +devlink +dgnc +dh_generic +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +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-verity +dm-zero +dm1105 +dm9601 +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +dp83848 +dp83867 +dpt_i2o +dptf_power +drbd +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1803 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsa_core +dsbr100 +dscc4 +dss1_divert +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-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +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_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc2_pci +dwc3 +dwc3-pci +dwmac-generic +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +e752x_edac +earth-pt1 +earth-pt3 +eata +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 +ecdh_generic +echainiv +echo +edac_core +edac_mce_amd +edt-ft5x06 +eeepc-laptop +eeepc-wmi +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efi-pstore +efi_test +efibc +efs +egalax_ts_serial +ehset +einj +elan_i2c +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +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 +esas2r +esb2rom +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +eurotechwdt +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max3355 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f71805f +f71808e_wdt +f71882fg +f75375s +f81232 +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_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 +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdp +fdp_i2c +fealnx +ff-memless +fid +fintek-cir +firedtv +firestream +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fjes +fl512 +fld +flexfb +floppy +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +fmvj18x_cs +fnic +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fou6 +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fschmd +fsl_lpuart +ft6236 +ftdi-elan +ftdi_sio +ftl +ftsteutates +fujitsu-laptop +fujitsu-tablet +fujitsu_ts +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 +gcm +gdmtty +gdmulte +gdth +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +genwqe_card +gf2k +gfs2 +ghash-clmulni-intel +ghash-generic +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +glue_helper +gluebi +gma500_gfx +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-104-dio-48e +gpio-104-idi-48 +gpio-104-idio-16 +gpio-addr-flash +gpio-adp5520 +gpio-adp5588 +gpio-amd8111 +gpio-amdpt +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-f7188x +gpio-fan +gpio-generic +gpio-ich +gpio-ir-recv +gpio-it87 +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-menz127 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-pisosr +gpio-rdc321x +gpio-regulator +gpio-sch +gpio-sch311x +gpio-tpic2810 +gpio-tps65086 +gpio-tps65218 +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio-ws16c48 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gr_udc +grace +gre +grip +grip_mp +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 +gtco +gtp +guillemot +gunze +hackrf +hamachi +hampshire +hangcheck-timer +hanwang +hci +hci_uart +hci_vhci +hdaps +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdma +hdma_mgmt +hdpvr +he +hecubafb +helene +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfi1 +hfs +hfsplus +hgafb +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-asus +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-cmedia +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-hyperv +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-led +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +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-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hih6130 +hio +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi504_nand +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horizon +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hp-wireless +hp-wmi +hp03 +hp100 +hp206c +hp_accel +hpfs +hpilo +hpsa +hptiop +hpwdt +hsi +hsi_char +hso +hsr +hsu_dma +htc-pasic3 +htu21 +huawei_cdc_ncm +hv_balloon +hv_netvsc +hv_storvsc +hv_utils +hv_vmbus +hwa-hc +hwa-rc +hwmon-vid +hwpoison-inject +hx8357 +hyperv-keyboard +hyperv_fb +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd756-s4882 +i2c-amd8111 +i2c-cbus-gpio +i2c-cros-ec-tunnel +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-emev2 +i2c-gpio +i2c-hid +i2c-i801 +i2c-isch +i2c-ismt +i2c-kempld +i2c-matroxfb +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-pinctrl +i2c-mux-reg +i2c-nforce2 +i2c-nforce2-s4985 +i2c-ocores +i2c-parport +i2c-parport-light +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-xiic +i3000_edac +i3200_edac +i40e +i40evf +i40iw +i5000_edac +i5100_edac +i5400_edac +i5500_temp +i5k_amb +i6300esb +i7300_edac +i7300_idle +i740fb +i7core_edac +i82092 +i82975x_edac +i915 +iTCO_vendor_support +iTCO_wdt +ib700wdt +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_qib +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibm_rtl +ibmaem +ibmasm +ibmasr +ibmpex +ichxrom +icp_multi +icplus +ics932s401 +ideapad-laptop +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_gen2 +idt_gen3 +idtcps +ie31200_edac +ie6xx_wdt +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ifi_canfd +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-hrtimer +iio-trig-interrupt +iio-trig-loop +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +img-i2s-in +img-i2s-out +img-parallel-out +img-spdif-in +img-spdif-out +imm +imon +ims-pcu +imx074 +ina209 +ina2xx +ina2xx-adc +ina3221 +industrialio +industrialio-buffer-cb +industrialio-configfs +industrialio-sw-device +industrialio-sw-trigger +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int3400_thermal +int3402_thermal +int3403_thermal +int3406_thermal +int340x_thermal_zone +int51x1 +intel-cstate +intel-hid +intel-lpss +intel-lpss-acpi +intel-lpss-pci +intel-rapl-perf +intel-rng +intel-rst +intel-smartconnect +intel-vbtn +intel-xway +intel_ips +intel_menlow +intel_oaktrail +intel_pch_thermal +intel_pmc_ipc +intel_powerclamp +intel_punit_ipc +intel_qat +intel_quark_i2c_gpio +intel_rapl +intel_soc_dts_iosf +intel_soc_dts_thermal +intel_telemetry_core +intel_telemetry_debugfs +intel_telemetry_pltdrv +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +intelfb +interact +interval_tree_test +inv-mpu6050 +inv-mpu6050-i2c +inv-mpu6050-spi +io_edgeport +io_ti +ioatdma +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +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_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_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 +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipwireless +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irqbypass +irtty-sir +isci +iscsi_boot_sysfs +iscsi_ibft +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it87 +it8712f_wdt +it87_wdt +it913x +itd1000 +ite-cir +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +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 +khazad +kingsun-sir +kl5kusb105 +kmx61 +ko2iblnd +kobil_sct +ks0108 +ks0127 +ks7010 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksocklnd +ksz884x +ktti +kvaser_pci +kvaser_usb +kvm +kvm-amd +kvm-intel +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l440gx +l4f00242t03 +l64781 +lan78xx +lanai +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-adp5520 +leds-bd2802 +leds-blinkm +leds-clevo-mail +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp3952 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-ss4200 +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libceph +libcfs +libcomposite +libcrc32c +libcxgb +libcxgbi +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +liquidio +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3lv02d +lis3lv02d_i2c +litelink-sir +lkkbd +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lmc +lms283gf05 +lms501kf03 +lmv +lnbh25 +lnbp21 +lnbp22 +lnet +lnet_selftest +lockd +locktorture +lov +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc2990 +ltc3589 +ltc3815 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lustre +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +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 +mac_hid +macb +machzwd +macmodes +macsec +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577-regulator +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max30100 +max3100 +max31722 +max31790 +max3421-hcd +max34440 +max44000 +max517 +max5487 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77693-haptic +max77693-regulator +max77693_charger +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8997-regulator +max8997_charger +max8997_haptic +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mce-inject +mce_amd_inj +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4131 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +mdc +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-cavium +mdio-gpio +mdio-octeon +mdio-thunder +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +mei +mei-me +mei-txe +mei_phy +mei_wdt +melfas_mip4 +memory-notifier-error-inject +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +metro-usb +metronomefb +meye +mf6x4 +mga +mgc +mic_bus +mic_card +mic_cosm +mic_host +mic_x100_dma +michael_mic +micrel +microchip +microread +microread_i2c +microread_mei +microtek +mii +minix +mip6 +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mlxsw_spectrum +mlxsw_switchx2 +mma7455_core +mma7455_i2c +mma7455_spi +mma7660 +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_block +mmc_spi +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpl115 +mpl115_i2c +mpl115_spi +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi-laptop +msi-wmi +msi001 +msi2500 +msp3400 +mspro_block +msr +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6323-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-quadspi +mtk-sd +mtk_ecc +mtk_nand +mtouch +multipath +multiq3 +musb_hdrc +mv88e6060 +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwave +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxc6255 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxm-wmi +mxser +mxuport +myri10ge +n411 +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nand +nand_bch +nand_ecc +nand_ids +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +ncpfs +nct6683 +nct6775 +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +nettel +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +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_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfit +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfp_netvf +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_exthdr +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +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_tio +ni_tiocmd +ni_usb6501 +nicpf +nicstar +nicvf +nilfs2 +niu +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-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 +nosy +notifier-error-inject +nouveau +nozomi +ns558 +ns83820 +nsc-ircc +ntb +ntb_hw_intel +ntb_netdev +ntb_perf +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nuvoton-cir +nv_tco +nvidiafb +nvme +nvme-core +nvme-fabrics +nvme-loop +nvme-rdma +nvmem_core +nvmet +nvmet-rdma +nvram +nxp-nci +nxp-nci_i2c +nxt200x +nxt6000 +obdclass +obdecho +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_xilinx_wdt +old_belkin-sir +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osc +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p4-clockmod +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +padlock-aes +padlock-sha +palmas-pwrbutton +palmas-regulator +palmas_gpadc +panasonic-laptop +pandora_bl +panel +paride +parkbd +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 +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-hyperv +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 +pcspkr +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +pdc_adma +peak_pci +peak_pcmcia +peak_usb +pegasus +pegasus_notetaker +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-exynos-usb2 +phy-generic +phy-gpio-vbus-usb +phy-isp1301 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-tahvo +phy-tusb1210 +physmap +pinctrl-broxton +pinctrl-intel +pinctrl-sunrisepoint +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pn533 +pn533_i2c +pn533_usb +pn544 +pn544_i2c +pn544_mei +pn_pep +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_core +pps_parport +pptp +prism2_usb +processor_thermal_device +ps2mult +psmouse +psnap +pt +ptlrpc +ptp +pulse8-cec +pulsedlight-lidar-lite-v2 +punit_atom_debug +pv88060-regulator +pv88080-regulator +pv88090-regulator +pvpanic +pvrusb2 +pwc +pwm-beeper +pwm-cros-ec +pwm-lp3943 +pwm-lpss +pwm-lpss-pci +pwm-lpss-platform +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pxa27x_udc +qat_dh895xcc +qat_dh895xccvf +qcaux +qcom-spmi-iadc +qcom-spmi-vadc +qcom_spmi-regulator +qcserial +qed +qede +qemu_fw_cfg +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas408 +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quatech_daqp_cs +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +ray_cs +raydium_i2c_ts +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +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-behold +rc-behold-columbus +rc-budget-ci-old +rc-cec +rc-cinergy +rc-cinergy-1400 +rc-core +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-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-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +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-pctv-sedna +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-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-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rcuperf +rdc321x-southbridge +rdma_cm +rdma_rxe +rdma_ucm +rdmavt +rds +rds_rdma +rds_tcp +realtek +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +reset-ti-syscon +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio-scan +rio500 +rio_cm +rio_mport_cdev +rionet +rivafb +rj54n1cb0c +rmd128 +rmd160 +rmd256 +rmd320 +rmi_core +rmi_i2c +rmi_spi +rndis_host +rndis_wlan +rocker +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-bq32k +rtc-bq4802 +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-hid-sensor-time +rtc-isl12022 +rtc-isl12057 +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-pcf8563 +rtc-pcf8583 +rtc-r9701 +rtc-rc5t583 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx6110 +rtc-rx8010 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +rtc-v3020 +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 +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +salsa20-x86_64 +salsa20_generic +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 +savage +savagefb +sb1000 +sb_edac +sbc60xxwdt +sbc_epx_c3 +sbc_fitpc2_wdt +sbc_gxx +sbni +sbp_target +sbs +sbs-battery +sbshc +sc1200wdt +sc16is7xx +sc92031 +sca3000 +scb2_flash +sch311x_wdt +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +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_tbf +sch_teql +scif +scif_bus +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 +sctp_probe +sdhci +sdhci-acpi +sdhci-pci +sdhci-pltfm +sdio_uart +sdricoh_cs +sedlbauer_cs +seed +sensorhub +ser_gigaset +serial2002 +serial_cs +serio_raw +sermouse +serpent-avx-x86_64 +serpent-avx2 +serpent-sse2-x86_64 +serpent_generic +serport +ses +sfc +sh_veu +sha1-mb +sha1-ssse3 +sha256-mb +sha256-ssse3 +sha3_generic +sha512-mb +sha512-ssse3 +shark2 +shpchp +sht15 +sht21 +sht3x +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +silead +sir-dev +sis +sis-agp +sis190 +sis5595 +sis900 +sis_i2c +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skd +skfp +skge +skx_edac +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +sl811_cs +slcan +slicoss +slip +slram +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smc91c92_cs +smipcie +smm665 +smsc +smsc-ircc2 +smsc37b787_wdt +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +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-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-firewire-digi00x +snd-firewire-lib +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-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-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-sst-acpi +snd-intel-sst-core +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-pcsp +snd-pcxhr +snd-pdaudiocf +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-skl_nau88l25_max98357a +snd-soc-ac97 +snd-soc-acp-pcm +snd-soc-adau1701 +snd-soc-adau7002 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-bt-sco +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs35l33 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +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-cs4349 +snd-soc-cs53l30 +snd-soc-da7219 +snd-soc-dmic +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-hdac-hdmi +snd-soc-imx-audmux +snd-soc-inno-rk3036 +snd-soc-max98090 +snd-soc-max98357a +snd-soc-max98504 +snd-soc-max9860 +snd-soc-nau8825 +snd-soc-pcm1681 +snd-soc-pcm179x-codec +snd-soc-pcm179x-i2c +snd-soc-pcm179x-spi +snd-soc-pcm3168a +snd-soc-pcm3168a-i2c +snd-soc-pcm3168a-spi +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rl6231 +snd-soc-rl6347a +snd-soc-rt286 +snd-soc-rt298 +snd-soc-rt5616 +snd-soc-rt5631 +snd-soc-rt5640 +snd-soc-rt5645 +snd-soc-rt5651 +snd-soc-rt5670 +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-simple-card-utils +snd-soc-skl +snd-soc-skl-ipc +snd-soc-skl_nau88l25_ssm4567 +snd-soc-skl_rt286 +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sst-acpi +snd-soc-sst-broadwell +snd-soc-sst-bxt-da7219_max98357a +snd-soc-sst-bxt-rt298 +snd-soc-sst-bytcr-rt5640 +snd-soc-sst-bytcr-rt5651 +snd-soc-sst-cht-bsw-max98090_ti +snd-soc-sst-cht-bsw-rt5645 +snd-soc-sst-cht-bsw-rt5672 +snd-soc-sst-dsp +snd-soc-sst-firmware +snd-soc-sst-haswell +snd-soc-sst-haswell-pcm +snd-soc-sst-ipc +snd-soc-sst-match +snd-soc-sst-mfld-platform +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tas5720 +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +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-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8960 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-xtfpga-i2s +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 +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +softing_cs +solo6x10 +solos-pci +sony-btf-mpx +sony-laptop +soundcore +sp2 +sp5100_tco +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedstep-lib +speedtch +spi-altera +spi-axi-spi-engine +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-loopback-test +spi-nor +spi-oc-tiny +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-sc18is602 +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spl +splat +spmi +sr9700 +sr9800 +ssb +ssb-hcd +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st95hf +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_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 +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stm_heartbeat +stmmac +stmmac-platform +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +stx104 +sun4i-codec +sun4i-i2s +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +surface3_spi +surfacepro3_button +svgalib +sx8 +sx8654 +sx9500 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_usb +synclink +synclink_cs +synclink_gt +synclinkmp +syscopyarea +sysfillrect +sysimgblt +sysv +t1pci +t5403 +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 +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_nv +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teles_cs +teranetics +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_hash +test_hexdump +test_module +test_power +test_static_key_base +test_static_keys +test_udelay +test_user_copy +test_uuid +tg3 +tgr192 +thermal-generic-adc +thinkpad_acpi +thmc50 +thunder_bgx +thunderbolt +ti-adc081c +ti-adc0832 +ti-adc128s052 +ti-ads1015 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tlclk +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmem +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +topstar-laptop +torture +toshiba_acpi +toshiba_bluetooth +toshiba_haps +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm-rng +tpm_atmel +tpm_crb +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_infineon +tpm_nsc +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tpm_tis_spi +tpm_vtpm_proxy +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65086 +tps65086-regulator +tps65090-charger +tps65090-regulator +tps65217 +tps65217-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw686x +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish-avx-x86_64 +twofish-x86_64 +twofish-x86_64-3way +twofish_common +twofish_generic +typhoon +u132-hcd +uPD98402 +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +ucsi +uda1342 +udc-core +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-dwc +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +umc +umem +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 +us5182d +usb-serial-simple +usb-storage +usb3503 +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_uac2 +usb_f_uvc +usb_gigaset +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 +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +usnic_verbs +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +v4l2-tpg +vboxguest +vboxsf +vboxvideo +vcan +vcnl4000 +veml6070 +ves1820 +ves1x93 +veth +vfio +vfio-pci +vfio_iommu_type1 +vfio_virqfd +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +vhost_vsock +via +via-camera +via-cputemp +via-ircc +via-rhine +via-rng +via-sdmmc +via-velocity +via686a +via_wdt +viafb +video +videobuf-core +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videocodec +videodev +vim2m +viperboard +viperboard_adc +virt-dma +virtio-gpu +virtio-rng +virtio_blk +virtio_input +virtio_net +virtio_scsi +virtual +visor +visorbus +visorhba +visorinput +visornic +vitesse +vivid +vlsi_ir +vmac +vmd +vme_ca91cx42 +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmlfb +vmw_balloon +vmw_pvscsi +vmw_vmci +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vmw_vsock_vmci_transport +vmwgfx +vmxnet3 +vop +vop_bus +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vrf +vringh +vsock +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5100-spi +w5300 +w6692 +w83627ehf +w83627hf +w83627hf_wdt +w83781d +w83791d +w83792d +w83793 +w83795 +w83877f_wdt +w83977af_ir +w83977f_wdt +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +wafer5823wdt +walkera0701 +wanxl +warrior +wbsd +wcn36xx +wd719x +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wilc1000 +wilc1000-sdio +wilc1000-spi +wimax +winbond-840 +winbond-cir +wire +wishbone-serial +wl1273-core +wl3501_cs +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 +wp512 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x38_edac +x86_pkg_temp_thermal +x_tables +xc4000 +xc5000 +xcbc +xen-blkback +xen-evtchn +xen-fbfront +xen-gntalloc +xen-gntdev +xen-kbdfront +xen-netback +xen-pciback +xen-pcifront +xen-privcmd +xen-scsiback +xen-scsifront +xen-tpmfront +xen_wdt +xenfs +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xhci-plat-hcd +xillybus_core +xillybus_pcie +xirc2ps_cs +xircom_cb +xor +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +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 +xz_dec_test +yam +yealink +yellowfin +yenta_socket +yurex +z3fold +zatm +zaurus +zavl +zcommon +zd1201 +zd1211rw +zforce_ts +zfs +zhenhua +ziirave_wdt +zl10036 +zl10039 +zl10353 +zl6100 +znvpair +zpios +zr36016 +zr36050 +zr36060 +zr36067 +zr364xx +zram +zunicode +zynq-fpga --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/arm64/generic +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/arm64/generic @@ -0,0 +1,19696 @@ +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0xa2125399 ce_aes_expandkey +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0xff0443e5 ce_aes_setkey +EXPORT_SYMBOL crypto/mcryptd 0x7ae7dc2e mcryptd_arm_flusher +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0x29729d43 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0xdcec359b bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xfa9c80e7 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 0x5f356560 btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x014682ac ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0e2dc75a ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1d867d4c ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c9d7aed ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4dde7206 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x6be0c342 ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x2153d264 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x2605f9ba st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x91a0420e st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xaebe77be st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x36034473 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xe2da4e8f xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xe5df4e46 xillybus_init_endpoint +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x26184e23 dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x2dee0117 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x42803dfd dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x7be71773 dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x95875735 dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xae91d792 dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/pl330 0xc835342c pl330_filter +EXPORT_SYMBOL drivers/dma/xilinx/xilinx_dma 0x64fe4f85 xilinx_vdma_channel_set_config +EXPORT_SYMBOL drivers/edac/edac_core 0x6ccb1d58 edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0e0a440d fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1bb748e1 fw_core_handle_bus_reset +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 0x3c61c770 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4336aeb9 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d081c6f fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x58429f7c fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5957be35 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5dd8d812 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6178c897 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x645b715f fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6992bbde fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7bf5c5eb fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8313c21f fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8a4d2a86 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x985a6c92 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa28976a7 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xab289761 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaf929c06 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xafe0111c fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb2260dac fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb2875a5b fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbc406ae2 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcdcd369d fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd08b8f3d fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd600550b fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf79f4645 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfbdba852 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/fmc/fmc 0x0469df8b fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x0b658067 fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x17c94d51 fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0x18ebb628 fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0x3102ef38 fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0x413b62d6 fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x56e27c7a fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0x5ce9784b fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0x7b091b38 fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0xbe1f6e3b fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xe693ecd8 fmc_device_unregister_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0x018c82cb drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01d03bdb drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01d88066 drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02f569c2 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03b5eac5 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x045094da drm_gem_object_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0565a9d0 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05817c42 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0686a33b drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x069944f4 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x088e51a8 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0963580b drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a192b08 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a1e06e0 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0aa2c88f drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0aecce99 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b0517a4 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b18925e drm_crtc_commit_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b27ada1 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b39fb79 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7e5175 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f662e7f drm_mode_destroy +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 0x10e563f1 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10eda09a drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11cef0de drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13dbcf1d drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1435016b drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a63fd7 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15648beb drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16730394 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16733380 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16b0bd26 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17d875a5 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1834ea07 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18d364b2 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1902bd74 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1af842ef drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b8e298d drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f2485be drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fcb283f drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2209fe1a drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2393e3e5 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25a83987 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26242bf7 drm_crtc_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2689dbe0 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26af2495 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2799f9e2 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x287a5410 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x290d4ee3 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2961317b drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a902c8 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a975e1e drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2adb73ee drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c5c8b92 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e2cd5e4 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ef86544 drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fc9b52f of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30149402 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3065044f drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x306538b4 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30d8769b drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31926af4 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x337712fa drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x339d6029 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34cf2156 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x354a6684 drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x358fb17f drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x372b746d drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37502e8c drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3869cc4e drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38e5fb4e drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3acab6cc drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bca550e drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c287978 drm_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c990748 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3daf331b drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e0b81a3 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e0fa4d1 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e6bb71c drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e8cbdd1 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f42751e drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43a3ff94 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x443283f7 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46a994e1 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47f22f61 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48971dad drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49b39cd1 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a74b94a drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b99b1b4 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cdd9094 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e1af0a3 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ff73e45 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x519880d0 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5275ca3a drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52c0f575 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5341a17b drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5460b765 drm_crtc_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55c79946 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55f703b2 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56f8e19d drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cc37b96 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d3d65fc drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7b02c1 drm_mode_object_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7f0e8b drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dfcf90a drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f648953 drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fd52627 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60d1f1bb drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6114064f drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6340418e drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64224764 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65af32ca drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65d43d01 drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67604cec drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67c54d74 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x683a4fd9 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68970a89 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6aa68216 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6aff1c48 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cd914d8 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d6b9e22 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d9745c0 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6da03dad drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dd30eb3 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e137723 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e52ac4e drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e7d1f16 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fd1d673 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71a56cb4 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x727a8132 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x742cba92 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x746bb808 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74f4c3e6 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75a883e5 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76c2966f of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76d8a00b drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x773c36f9 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78432194 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7891f4c7 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78c67694 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79e36b68 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7adf84c5 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cbf41f8 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e920ea9 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f8a5db6 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7feb461a drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8161e01d drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81c1d77d drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84c9bca7 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x854da9e3 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88634f5d drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a7e1bad drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a9fc3cc drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8aed86ca drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c30c96f drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d179526 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dc5c58a drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dd564eb drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ec6f3d1 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f6e2407 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90b30cfd drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90cb971d drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90d28ac7 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9127c051 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91b00975 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91e75589 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91e9ead4 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94d900ae drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9503e1a0 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x952151c1 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9596497e drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95f9dc40 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x963d2ca4 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96d294ec drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9723fa46 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97b49d54 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x984dd406 drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98b6304b drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a0f7cb5 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a178b6e drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a955964 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b241fc6 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b45f807 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b9861b9 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c85ab6c drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c926acd drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ea5e5b3 drm_mode_object_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1885b3e drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa34cb584 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4850303 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4f3ac5b drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5fa0862 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa61fea38 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7a4cb18 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8956ffb drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabdffbe7 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac97675d drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad254ffa drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaed1db83 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaee438d3 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf4c7fed drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb03ee626 drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb10016c5 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22eb631 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2767c5b drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2b1a512 drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb37d51ad drm_format_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb605b689 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb69563d6 drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7c932bf drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8d8a256 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb96c6ffd drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbabf9a15 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbac4eb44 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc57ac84 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc73bc88 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbced5094 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf0dcdf0 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfae4afc drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfd28609 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc186c468 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3ea1e90 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5c63c30 drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5c992b2 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6334591 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6b7a4aa drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc72f2072 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc72f626a drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7a8d3b0 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc803863b drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb078a70 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbdc7eee drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc396b61 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd359415 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb45868 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce635e64 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcebba0a4 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcec81ca8 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0903f15 drm_format_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0aaf4c2 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd103f593 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1456a73 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2a0f6a8 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd324e0b5 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd404e5eb drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd567a50a drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd678ad0f drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8b6e9a9 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8dde161 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd962a59b drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9b3fd87 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb481627 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbee15d0 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdda4e117 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf228340 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf4e3c4b drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf576951 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe186bcf8 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe426e583 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4880bbf drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe577acc3 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5b45818 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6db517c drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe895225d drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe94d0f02 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec76a7e5 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeeafc0d0 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefab48a9 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf067b663 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1fcb07c drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf25a5339 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2fa2917 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf36682c7 drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf475a706 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf47e07b6 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5a20247 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8c8450c drm_gem_object_unreference_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf966ecb1 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa01caaf drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa76a5de drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb1839e7 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbe17974 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd3c4adc drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe231427 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfec52ecd drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0013cbc6 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02430c59 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02453820 drm_fbdev_cma_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0332fb02 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06ed5573 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07871146 drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x090a2560 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x092ea829 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09c80a22 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b5dbeeb drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ba2def7 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c093919 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0df2461f drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x106ad260 drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11aee124 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12a9da36 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13eb053b drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x186d87cc drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a9c6e01 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b70aa41 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c15477e drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1de43c60 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e514224 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e65c68d drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ed89e65 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f052919 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f436409 drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x200ffaf9 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2149ccb4 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x264a4067 drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x282930d3 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28c10314 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d869c66 drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e0704cf drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33eb54a0 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x347a3d8a drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35dfecc2 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x368ed8a8 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x386b3b47 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38f2dd8c drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3949980d drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x397675bc __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b0f0748 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bccc6c1 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x419399e4 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4451aecd drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x449c0da5 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44a512fe drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45bbe153 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47fd1bad drm_atomic_helper_best_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b6440a7 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b90ef5e __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c4a8a8f drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c4f3fe9 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d520249 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4dc91b1c drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f7a7c91 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f9df3b0 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x502883ad drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53b79367 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x543570a5 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x545f30f1 drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5508165c drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5579f29b drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56808483 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56d34691 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56e534a0 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b1e307c drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d17e866 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6315ed4e drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64d04a2c drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6561be89 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66ef1462 drm_fb_cma_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x685072f0 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6bb25a1e drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d535bb2 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70aae56a drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70f401f0 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73e1d68a drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7429760d drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x767a58e3 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x768f33e0 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76efd4d5 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76fa816c drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7786abdf drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7baeacc1 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d14742c drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d53fbe3 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f58f54e drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x810d7d35 drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83cb37bf drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85efd0d1 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x881fb602 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88e543a7 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b8f6597 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b9f9984 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bbc5aa9 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d25fecd drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94c861b6 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9610fa9e drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9710236e __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97ab562b __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9837e19d drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9942e81c drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a4ab08b drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9dd9899b drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ebed0d6 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa183e07c drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa33d8abb drm_fbdev_cma_create_with_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3711b94 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa38decc2 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6851ed9 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8b67d14 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa83e8f7 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb05a58c0 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb05b80e5 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb157078d drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb59ca7fb drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5c07edb drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb881ae1d drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9444159 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb682b20 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbefbb12 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd29443e drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc558f9c9 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6026857 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc99409a6 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcacc6fe1 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbe61f71 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4805842 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5b6d2cd drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd666e604 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6f755b4 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd762062c drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8202a15 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda7cd9d3 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc91c6db drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdda59c8d drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8b119a6 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe96d2433 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb01f47b drm_fb_cma_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef5e4241 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefdef159 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf090af5c drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf210a8af drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf39f530a drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf63e8ce5 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7d504eb drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8884d75 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8ffafe3 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfaacecc9 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd17c675 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdc782a5 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe1ea610 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe85d9f5 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfefb337d drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff68a462 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffb86811 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x027d8fc5 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x030b9053 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x038f8194 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0444fe3f ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1026abeb ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x17ce330b ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1ec844c8 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x263756e0 ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c1fc621 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2d7c39f2 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x32bbf081 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x32c83c2f ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3529eec0 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x36c93584 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3c94fec6 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x42442940 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x42704861 ttm_bo_pipeline_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x48085143 ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4819f4cb ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x485a5bc0 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4b7d18cb ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4c493128 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5249da79 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5570c7f7 ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x55ae12d2 ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x591d7b41 ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cac130f ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ee757e7 ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x666f4419 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6fa23711 ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x716e7bdb ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x77069131 ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8080abd4 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x847983f3 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84b2087d ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x856c79e7 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x95d2ff0e ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9b804ba8 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9c8dce2e ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa0aa2820 ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa0e1f89b ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa3a1cbe1 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa3ec4486 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa97a8bb8 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xab94f41d ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae5201f1 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb1d82cac ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb66024c0 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd9f3ca1 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbf4e0fee ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbf8891db ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbfdfc3f0 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd4025e55 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd4d4db94 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xde9cbecf ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdf349e7f ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1c55318 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe5698633 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe6ec87f5 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xee0d4f87 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xee12c359 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf01c6bae ttm_bo_default_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf0ffea9f ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf1230497 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf4fc3496 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf5514b53 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf74cd441 ttm_bo_default_swap_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfc6ae70f ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe18f6f16 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x4e1c6934 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x77c446ec i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x93e18a36 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x4f35bc73 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xa3cb8e84 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x0e67fbf9 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x029a787e mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2233b506 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3103f45d mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x36f85ac3 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4ac254fa mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x667725f2 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x727dccf2 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x74cbc7c2 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8dcb69c4 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xaa0a67c0 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbfccbbd5 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc6a6301c mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd506d881 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe21c4e5d mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf3832f8e mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfcb6468c mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x487e9977 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xbd62ef3d st_accel_common_probe +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x54e628ba iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x6fcfe49c iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x40f34963 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xa2f96282 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xada4d8f0 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xcc15a684 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x3498186a hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x89bbd2e5 hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x97e78333 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xafb73fa4 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xb0c6b8e9 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xce6b1a82 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x02b7252e hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x2880a1c4 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x368e0285 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xda59320a hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x21b39472 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x22e1a371 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2657e21d ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x54d6d467 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x57d90a0e ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5e084657 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa996304f ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xab2ee58b ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe0eb549d ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x040cd21c ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x1a43ba2f ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xd524d9dc ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xeb47c805 ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xee348931 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x5d1775bd ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x9c185405 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xb06199ae 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 0x2d8e1e7b st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3a848f38 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x48e6033d st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4ac8af1d st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x56a22304 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5c89f6bc st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x71980ced st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7e3b9cb5 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x851c2df7 st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x93dceaa1 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9dd77058 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xab91eb89 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd1a7ab1b st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd4ffe184 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdd379c44 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe2d8f90c st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x3b91370a st_sensors_of_i2c_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x6c3d5e26 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xbd4b8d1d st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x6bb21860 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xdb7ac88d st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x18479084 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x24355629 adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xae595733 bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x13eca126 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0x2395ccb0 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x3326e1de iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x530ed8be iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x5754ffa6 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x60a351c1 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x62f673a0 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x842c92d6 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x8bb86c8c iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x9d184893 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x9edaf5a7 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xa17e4674 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xbc82fd0e iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xc6e2cfce iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xc9c0c321 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0xd10c6d8e iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0xdec5207b iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xea67ab6c iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0xef2133c0 of_iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0xfc5025c7 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x7fa04bcd iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x25bc9298 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x8b0921a2 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x94989441 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x9e815a76 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x03915f70 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x8139c42f iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xa99b5141 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xea3792c2 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x709d1e7e iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x9f616da4 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x02e4b767 bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xca3c8ba5 bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xf2e673b6 bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xf759d6d0 bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x482c445f hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x77e80630 hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xe07609a6 hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xec9b62ae hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x5a4d804e st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x695ebc22 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xbea087e1 ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xe87c71d0 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x222fb719 st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x74e230fe st_press_common_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x138294eb ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x18ab84e7 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1b40cab7 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x235c2499 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3bdaa626 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x46e7d979 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4e572303 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x76fb8c83 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x85e66b49 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb1bca01a ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc7429eba ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcb704575 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcd91a6e8 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdd7ff239 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xed2bb120 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xef021390 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf026a49b ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf2857539 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x049ace30 rdma_addr_find_smac_by_sgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04a69a56 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07963134 ib_create_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08329062 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x097e9606 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a1e62fb ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d21f155 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d4c7e27 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f401c50 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ac0ac34 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b4b226b ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c8e2dce ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e30678f ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fe2ba9a ib_modify_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20a573b6 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x222e3505 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x223e65f1 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27fddb51 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29cb8cc4 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2aa22aea ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ab86a1c ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b0a253e roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b3b27b2 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c0653f9 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c768e9a ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d46ed95 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d5610b2 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x302ab8a4 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31acf700 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3515c6d8 ib_destroy_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38afd6e6 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x391129a5 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3926c4a1 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43a8cc15 ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44d8a51c ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45c2a325 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45c2cdc4 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46117292 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x480c8293 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b13f789 ib_sa_classport_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c33e170 rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4dd336ef ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5348166b ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x566e18e0 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x576fdbac ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57ac4d21 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58ed4f4a ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x592c26e3 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a00020d ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a2220f7 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5bafc71c ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c58aa89 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d81b6e5 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e4286c1 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fbbf40d ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x601ef680 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62b74ade ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x665c85a4 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67354eed ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69a00b75 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6aa68f4f ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6bc75dbf ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c54da5a ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f7e97ab ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70c5967c rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x743f1e11 ib_destroy_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7726000d ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x784f2511 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x790baf4d ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7cfc6991 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80482ae3 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80e7973e ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81f0196d ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81f950e4 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x839a88ed ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86728da4 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8802a678 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x880ca43f ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x880f21c2 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89259508 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a18d894 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8cdef078 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ed9af46 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ee9e2ec ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f84300f ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91488a99 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92988018 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x931acd80 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x938d3a2b ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94521a00 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9958f085 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b9cf9a rdma_addr_find_l2_eth_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a387dae ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4c1d2f8 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaeb04643 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf5b40fd ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb07cdc2f ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0f58eaa ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb186e84f ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2cd8f8a ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3c63147 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4590d07 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb50ef65f ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb66bf5c0 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6abb3ac ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb70669d7 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb83efd8b ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8532e22 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8c71c68 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbe1596a ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd7f3a07 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf815531 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc29a998d ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc62fb5a2 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb7e8197 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcff112d2 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3e8f409 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd48a5afd ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd595582d ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7c49f9d ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9d099a2 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9e16d60 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbea2287 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc91bce6 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde750c10 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe70e57dc ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b03831 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8223dea rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9a2c51c rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea767524 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea94c162 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee548246 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef02c5e7 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef1b87dc rdma_resolve_ip_route +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0d6cf92 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf10b7309 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2adede9 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf41915c9 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf66bc0f1 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6f2b87a ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9e1f5c6 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa1e2325 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd7dcdcd ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe6e58a5 rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfeeef95f ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5397d778 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x845b57b3 ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcd88ac3e ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3ddee408 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x495c5b4d iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x64049f7c iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x76eab281 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x94422d34 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa4df7aa1 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xaca8f17b iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbd21cbca iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbe2c7083 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe0f76482 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xeb683d94 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xebba5e30 iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf56a65e3 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfc6d6972 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfcc68c61 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2ca9ad02 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x33e949eb rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x491ac89a rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4f25cebf rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x65595751 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6e072121 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x70d06764 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7f00039a rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x83ade534 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x976c598e rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaa0c97fe rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaf6158de rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb67b1252 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc48dc362 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc69ec7ca rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd1304c0a rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdd885132 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe3058fc9 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe4bf72f0 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe62d775a rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf988b48a rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0d9db2f6 rvt_dealloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e385842 ib_rvt_state_ops +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x2990acc5 rvt_check_ah +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x303d1fe2 rvt_init_port +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa1e63d2c rvt_unregister_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xbb3aaeed rvt_invalidate_rkey +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc6dc7550 rvt_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd0ec8d76 rvt_register_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe02faead rvt_rkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe2c26a55 rvt_lkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xfad9763a rvt_mcast_find +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xfaee68ae rvt_cq_enter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xfe331ec7 rvt_error_qp +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xffa608ff rvt_alloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x3507ee0a rxe_remove +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x48f93f58 rxe_remove_all +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x976a0283 rxe_set_mtu +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0xe4d2b5fd rxe_add +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0xefb063c9 rxe_rcv +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2528dffb __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2872a9a1 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2e7f43b0 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x5d06feba gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x78b36802 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7c9a10f1 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x83163502 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x88e93c2d gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf53cd771 __gameport_register_port +EXPORT_SYMBOL drivers/input/input-polldev 0x41a96ac2 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x602d2fd1 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x8cbd7b48 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x9577cb4a input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xff0961b1 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x02810883 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x684c6761 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x75eeea59 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x9e7887e4 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 0x9d0caeea cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0xedf32136 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x0c0c7c0c sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x2602011d sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x5480a943 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xc1ce5d1a sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xd4266250 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xf7291550 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x561b2c09 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x6687ee2f ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1ee96915 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x25ccd63b attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4d2087c4 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x55f7032e detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x684790dc capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x75c7cd50 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x79e0f8f0 capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa3e009ea capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa1aa08d capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfa958bef capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0dd03f12 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x16ececfb b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x48aeeb69 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x67671e86 b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x77bb33f6 b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7b5d8b56 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x87453d32 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x88da972b b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa6307a5a avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xafadfcb9 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb7f8fbe6 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc9da8f71 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd1a55688 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd7a9f6c0 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe97197c5 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x38eec5fa b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x7698c03e b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x83497199 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x9557b579 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x9b06a88a b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x9dda4cb0 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb64db579 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xe7bf2a02 b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf2e73e02 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x7c7dd50f mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x7cd42b38 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x99d80e8a mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xc144aaf3 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x4eea974e mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xeee05586 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x7a1e9014 FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x8bc4b67f FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xb52e4fd7 hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0ec1296 FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x2dbe0213 isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x70461619 isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x77305f9b isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xe57054e2 isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xf89fb368 isac_setup +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x9be4c4ab register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xc84429c3 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xe1233db3 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0cfbc579 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x252f58bd recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3753c501 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x41afcad9 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4484a879 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x46021fb5 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x56adc254 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x61b9cb4e recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7a27e51b mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8478fe10 mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8549d8d0 mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x976380c6 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x993607c6 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa22e3c64 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb8ef9348 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb8ff059c mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc024782a mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc175bc1c queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc525fd78 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcd559783 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd4d30513 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdd3071c0 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe560300b bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe5aaba1e mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xefcc4d3d mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf2495d2f recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf84ae11f mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfd16e372 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/bcache/bcache 0x0c161f5b bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1199ca55 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0x11f9991b bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1f529ce8 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1f7dcb79 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x29933bb0 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0x3f8dc405 closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x44a37d62 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x5b59b856 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6d7dda0f bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7daccb73 bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0x8833b0e8 bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa3c5c702 bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xca5df778 __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0xce47a6d9 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd2813054 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0xdf892351 bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xec6f33d0 bch_bset_init_next +EXPORT_SYMBOL drivers/md/dm-bufio 0x268682d2 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-log 0xa4d712ae dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xadaa9a58 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xc606975f dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xff8e084f dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x70d98782 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x8724a4e5 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x96a6ed24 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe94c40cd dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xea20afd8 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xf54b6565 dm_exception_store_create +EXPORT_SYMBOL drivers/md/raid456 0xb998063a raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x19f92bad flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x20f0ee8e flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x26795212 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4539a12b flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x68dcb32d flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8640aea8 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x89d8bd9a flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x96b867e0 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9bd7c204 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xacc13b0b flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc8ca1359 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xccb568e7 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdd6dba77 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ef9abb5 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6cc7797c cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x83054797 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x9883700d cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xa1c765ad cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xc34fb25d cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x8fb0f1d3 tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0xeb68df1b tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0c14d518 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2975b9bd dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2c255999 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x492369a9 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4eb486ea dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5ab4496e dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5e6a7439 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x619b7d6c dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6442a9ee dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a7b15ed dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6f4e5767 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7092ba42 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7ba4cb53 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7c98b807 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7caa224e dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80721940 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x810cf0db dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x82bdef70 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x84b0f8e7 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x930b2ddd dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9510a851 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa10e976c dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa172798e dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa36e00aa dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xab56e804 dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xadb58cbb dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbbc00a5c dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3c77f8d dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcba99fd1 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd33e6626 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd7dd16a1 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdcf8e25b dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe60d865f dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe7c2c1e4 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xea37b8d2 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf23a08e3 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf50fa68c dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf77f4aed dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x75b19275 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x6052f87a ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xf241f6ec atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x343f2430 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3eabf3a8 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x62845778 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6fcd93e4 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7eaa27ce au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x87095e9e au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa4220400 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc3ddcc45 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xcbb4ecaf au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xb17f1011 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x55571bca bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x3bfe8457 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x8b14ec24 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x437b3b45 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xb98c610c cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xf066e1dd cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x5458cb8c cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xfd63f355 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x3cc565cd cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x86064191 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xc10e39f4 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x1eed7580 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x46c61e06 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb17e814b dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xc16e92ac dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xc44a02a9 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xc690aa0a dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd338386b dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x13122d07 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2463d131 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3884fe13 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x598c3e57 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5e100f89 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6f389877 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7364cf88 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x80d4c993 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x85dc73f1 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x88ce3bc7 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x986bf509 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9e2a065d dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa66b96ab dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xaf566566 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc80a994c dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x97456ba8 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5bebbb03 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x8e6101d9 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x9c86d8fc dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xcc449fe6 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xdf29cd4e dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xeeb946ca dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x1e80a0fb dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x478513ad dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x4ffa1d2a dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x800e3f28 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xc4e08527 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xb20e954d dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x38e92fc0 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8cdc9f6b dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xb369dd55 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd524c9a8 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xf22efdf8 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xd9c6982b drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x96c658ac drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x9f60d8b2 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x235b6fd4 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xfb32e784 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xa533ad7c ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x427b67c1 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x48cb05c6 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xda6f20cb horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xe569fdcf isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xf6aedfa7 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x3727c4e2 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x9b15a285 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xa41d5764 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x58bbdb56 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xca19a515 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xdfc6dc7c lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xaf95ac22 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x2c18e27e lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x3fd8579c lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x1d171041 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x39ba16b9 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xc18a3c98 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x87719adf lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x48979c1a m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x4ffe7bed m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xbf690549 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xbedc3233 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xb9a9a1a3 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x9387e9fe mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xc544bad7 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x5e5e7466 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x133e569b nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x00c50080 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x0c51af39 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x0071071b s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xc863fcd5 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x1978254d s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xa17280f8 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x211e7f7c s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x2862a527 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x730447dc si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xd26019f8 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x57b329ae sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x6edab5c6 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x65214a9e stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xf5db6284 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x094b04aa stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x10852791 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xda8f96bf stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x02f09199 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x26220ebc stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x07c190d7 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x9f65b446 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xd55444f5 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x6833cf7f stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x8ad2ef9b tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xd4f69258 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x4606d98c tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x0c1727cf tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x681b525e tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xf68ba857 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x915087fb tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x418ba830 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x66807c5f tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xea10d039 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x2bc63d31 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x56398ddb tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x8f8e3933 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xb8ce3a5d ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x72a7cd13 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x4de58e8e zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x90d49e51 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0dc13f4a flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1c3a8416 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x297c2475 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x299676f9 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x44240957 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x53bba69a flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa3a943c3 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x3c283c05 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xa4e730a4 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd6882b64 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xe19146e1 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x009510c4 bttv_sub_register +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 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xcee4a834 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xd57444c4 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x21a1a105 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x378256d5 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x42c4af14 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4fce53bd dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5f68cf63 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7b33147e dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8256a0e0 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9a221091 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe722dd06 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x50b2440f dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x0884c4b2 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4a7d1915 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xcf8bad2c cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd328b3fb cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xfbbcf628 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xa47fd875 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 0x234929ca cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x41c95126 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x476c1779 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x50d69b75 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x855ee09d cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb1998d4f cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe78779c8 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x3eac58d9 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x90630cd8 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x13ef7b1b cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x5393f1a9 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x5592106c cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xb1ce582b cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1a158dab cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x53c3febe cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7288a629 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7c7a0709 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb4947e92 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc964bb96 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xfd892e75 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x04251ea0 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x25a1562a cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x37b64df7 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3b38b8e5 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4ad03e16 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x55438f37 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x63bc9739 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6a04879e cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6c7758ad cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x819923d7 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x88770d1a cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x991fae58 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa0a26437 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa8de5a1a cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb211a133 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbab46d9c cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbb315440 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xec79ea7e cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf062ec8b cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf764801a cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x01583303 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0b6cb59d ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x456fe593 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4b34de24 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5018305f ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x530a81a1 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x58f09eef ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6d71b7d6 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x793554ff ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7ab27f9c ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7b60cba5 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x910498dc ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x91cab302 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xaf4de64b ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc3740862 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd051972c ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf3c08477 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x08939bb2 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x11bda855 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x418a6cbd saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x42d53510 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4497f83e saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x485d24cf saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x498b8187 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4a19085c saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x64217c12 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x68bca77b saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb5aad8b0 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc3401750 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcf1c9597 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xfa63f57a ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x71ab05db soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xb2085d93 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xb923ce64 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xba63f741 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xcd92c033 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xdf9b0f4d soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xf79347c0 soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/radio/tea575x 0x18092818 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x24005b73 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x40b6d25e snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x4a51512e snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x6b150373 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xaede4a5c snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xcabf7412 snd_tea575x_init +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x2b1c93d2 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x40aa514b lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x4842a13c lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x9fdb9b80 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xaba23ee7 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xb11ba405 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xdeeb6676 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xf2ee93b1 lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/rc-core 0x8e396407 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0xbee23bf0 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x0ab39df5 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x8adccade fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x3c6ff143 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x6c71963e fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xacffae71 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0x692c424e max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xfe7d588d mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xd01e3d6d mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x4b3138e8 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x237b72b0 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x8f332a78 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0xe252d6ab qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x9a6ecf74 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xb6abc381 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xfccb7302 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xc73c546f xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x8b030db0 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xa1754f80 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x07aa1133 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x08e93520 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1fc1aabb dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3923e7f4 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6dac7999 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8cc0da05 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x978bb3d4 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb372f1b2 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xcc42d8ab dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1a5cc6b9 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3afa13b9 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4072bfbf dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x86cefd28 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x96a86ba7 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc02aaa7f dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xda9572f5 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd25bc17f 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 0x10d2acd6 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4cba0089 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5d4f6394 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5deae004 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x60e28499 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6293d73d dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7426a36f dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb2bb93e6 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xbacba85b dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc2adb642 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf5b362a6 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x8e9e124b em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xaf19e3d8 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x512e00ab go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x60865316 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6d83134e go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x99b4dedc go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbeb1eb94 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xcea359de go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd80d9291 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xdaff5931 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xdf2373c0 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x39baa241 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4e21b2fa gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x58252467 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6c518325 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8860b74e gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd7ffac38 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xde5c35bf gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf3083d5a gspca_resume +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x72a26e68 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x957bd9cc tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xb89d56a9 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xc61465c9 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xedd36403 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x17a2f2f8 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x2c8aa0af 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 0x78959dfc v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x1afabefe videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x5a8d24ee videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x8b187fec videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xad4e4cea videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xca2b8035 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xdb9d9ee9 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x1ec65179 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xac030920 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x17c259c7 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x27200118 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x44451265 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xa16332b0 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xbc678ba6 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xdef8fb07 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x201a7f7b vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x05411a41 v4l2_of_alloc_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0741763f v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x080990d7 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0b89b522 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0c2140cd v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0e9cd35e v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1015b212 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x110d5c8e __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1161f6a1 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x132ad500 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x208f5d63 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x245813e3 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2612810c v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x26ae000a v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2950421f v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c7456a1 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2dbcadb4 v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2f269107 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30a5bc1f v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a00c898 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a1f0a02 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a9db1de video_device_release_empty +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 0x3dc91881 v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x460d29b6 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x48ba4e28 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4a7abc03 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x57565690 video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x575fac63 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5a93336d v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x64de20e3 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x662c5e6f v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x688b7be3 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x696d58bb v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6c4278d1 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6df90116 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6ed41629 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a9de050 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x80ae4138 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x83956af1 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x85c62554 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8835e17b __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8b1cbe00 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x970d3816 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9b161f81 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa57c818f v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5c0e3d7 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae54e498 v4l2_of_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb402207e v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb486e0c9 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbb170208 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc9feb0d v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc1af8dc3 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc5699acb v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc597f395 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc601bce1 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc86be9e3 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcb499a5f v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd1d23691 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd6f26367 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd8bae35e v4l2_of_parse_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf52d252 v4l2_of_free_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeb80c109 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf581c45b v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf621d5c5 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf777cf5b v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0976d24e memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0ac09381 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0f392db1 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x12457458 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x145fbe0f memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3b4c1af7 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x51e29717 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6b1dbc22 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x863102a0 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x981180a7 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbaec71f9 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbf15acfd memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0b87d996 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x10b48517 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1341d990 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1f687e1a mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x354b9b5e mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3c17928c mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x41e97069 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x459d4a5d mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x48a69fae mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x51fa2ed1 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x54c31d87 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x60e11e10 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6d986c1c mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x80b7d256 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x87a0f7c6 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8d9a38ed mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x90065610 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x921104bf mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9d1a7667 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa2b770a7 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa8eb8989 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xac3dd972 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xacdac298 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb038f230 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd4916300 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xde11e3d4 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xea8b661f mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf1c58448 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf7f445a5 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x23eb18ad mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2d015823 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2f29bbd9 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x31037a8b mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x37d37403 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x42702681 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x47184846 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5f5f35c4 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5fac90c8 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x79039b83 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7a6ffcf6 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x88b1f307 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x89f56557 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9b9d2278 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9f5e3040 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9fb682e7 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb78a3b9a mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc0306f97 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcbc6fda4 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcd76fb1a mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xded71cc8 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xed73c4a2 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf06b675e mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf3da913c mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf64ae327 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf6b26d69 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfc7a675d mptscsih_info +EXPORT_SYMBOL drivers/mfd/axp20x 0x705e7e5c axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0x7811c03b axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0x92c715ee axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/dln2 0x0f61f349 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xea46e9bf dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xf4edd9d4 dln2_transfer +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x587d9250 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xc1c4c1b0 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0c8a6800 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x27743d2f mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x37d0c231 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3879bd70 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3d77b68d mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6e204613 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xab19ca6d mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xce489665 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe5be3ae8 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xebe0d23c mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfe6aabb4 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/qcom_rpm 0x295fb567 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 0x5df92894 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x79cab5c4 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xce1a9772 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xd4920c70 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xdfae3579 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0xe6a8b7e9 wm8958_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x69f90adb ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x7f87e289 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x75028232 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x0895c7c9 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x86882dd9 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/ioc4 0xb1223a6a ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xef44b67a ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x16bbce95 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x21bd687d tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x281300b4 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x3d5dc80d tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x60b7aacc tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x692c5512 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x78cdf23d tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x9ae934f5 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x9d658c6f tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0xabfa4374 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xae4ed351 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xc665ae8c tifm_free_adapter +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x6b08e242 dw_mci_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xb09e5c7b dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xbb290bbc dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xd91ef22f dw_mci_suspend +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x42284c76 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x47c8739d mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x10e39540 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x202fbbc2 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x55b39dd0 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa0d12d6f cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd2944623 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe6aa367d cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xfa0fedad cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x37e475db do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x72efa832 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xc11dcf09 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xf9aeccdc register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x6ecb72ea mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x6186ed18 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xeae4f9b1 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x18df69f3 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0x68ed2355 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/denali 0x4fddd891 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/denali 0x8cbc0ccf denali_init +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x4077c768 mtk_ecc_enable +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x5437e775 mtk_ecc_disable +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x67dc4d5c mtk_ecc_adjust_strength +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x6df58afb mtk_ecc_release +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x76e53683 mtk_ecc_wait_done +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x77ecf26d mtk_ecc_get_stats +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x8fa4dce1 of_mtk_ecc_get +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0xf00129a1 mtk_ecc_encode +EXPORT_SYMBOL drivers/mtd/nand/nand 0x0044a3a9 nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0x66168c51 nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0x6b8608bc nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0x6c8f7636 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x7ba11e61 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/nand 0x85c744ff nand_write_oob_syndrome +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0xb75f3d5f nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/nand 0xe92ac05d nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand 0xf1448450 nand_read_oob_syndrome +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x50d8ceb8 nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x6d377d9b nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xd6cf2a97 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xe3442f60 nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xfe8914cd nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xc6be8de8 flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xc7589132 onenand_addr +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1259e12f arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3717de31 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x43c93580 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5cb3c771 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x64b17db8 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x674a3586 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8500b1ef arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x85ec98fa arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa0d177f5 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc4fe8b19 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x086aebe1 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x3b288931 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xf2b96d9f com20020_netdev_ops +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x285e15a4 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x56e14fc2 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfc75a9db b53_switch_detect +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x183661f0 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x41636c52 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4e0191e7 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6628acfb ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6dd84ca6 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x74e16d94 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x80970260 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9caa326b ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa913aa23 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfca38dca ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x6c33889a cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x285bde59 bgx_get_rx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6dc1648d bgx_get_lmac_mac +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 0xe48ca42a bgx_get_tx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf9508980 bgx_set_lmac_mac +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0d61fb4d t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0f845d33 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x29b580d9 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2a6be787 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2e6a691f cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x352ff901 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4b00a570 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x75258fb6 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x76caf33e cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaa90c1ac t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc9aa8251 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd06652e5 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xeca2452e dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xef352ba0 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf3676f8c cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfa7bd1a1 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x010b6143 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0507c731 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x12cefbd2 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x19f7b605 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1b386527 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2490c4cb cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x29a0e103 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3075776c cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3a8496ba cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3d2f3089 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x55c7f34f cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5c38f891 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5d76c8d8 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6ae77d7e cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6e11c645 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6eefc850 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6f77db51 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7159b5ff cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x71bbb78a cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7d0a542d cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86b663bd cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8e05de49 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x90a4b4dd cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x96719219 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9b446e65 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa35da4da cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa775a186 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb6160433 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb6a243da cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb8394ada cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcb8c985b cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcb94c3ea cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcf165385 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xde1830e4 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xded1d584 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf7c40b30 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x280412b2 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x401c6410 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x66362232 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc5c5b6f8 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xdb09fdf0 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x43d176ed vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6146fd19 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6416520e enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6e29e4f0 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa1a9d7d4 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd25852dd vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x2e2d0815 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x89774d69 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x3255bcd8 i40e_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x49f15fe2 i40e_register_client +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x060939de mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07ce3e9d mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b499530 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x332a0caa mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34e7dbf3 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c3e5f04 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4438c09b mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e61e96e set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5587e4b9 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b210bfb mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61e0fd8a mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67bd4788 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x724d2750 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7483353f mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7534f805 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a499ec8 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x878e64e4 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89acbd6b mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x919ef7e8 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab3b737a mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacabef2e mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae61e2e8 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc34fa7bd mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc403c894 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8fa1726 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4d6de8d mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd77dd906 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd928bc9e mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdddeca5e mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdde14022 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf14851a mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf2ab273 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe357a037 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe41327a2 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0508756 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1aa80ff mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf34a6d4c mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf460843c mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfec7715d set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffd6fb55 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x011c7253 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b8b3327 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f24df1c mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10807e3d mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1380bb8a mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17d17e4a mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1954e530 mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e9a9790 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24c132c3 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2709553d mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27deb41a mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2915ce5d mlx5_add_flow_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a88b310 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cf0d61a mlx5_core_destroy_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f78b89f mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31b4c98c mlx5_del_flow_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c81e420 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4111c7ec mlx5_core_create_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x452b2e01 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x463b17c6 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48b3679a mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c8c0e50 mlx5_core_destroy_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4feb6358 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50374a39 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5098e510 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50e871c0 mlx5_core_create_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5234d98c mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x526f6e00 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5296333b mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53ef9ba7 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e326e03 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f00da1f mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62d30c26 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x734362df mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80c367b2 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x812ccfb2 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84a13ebe mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8acfc335 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90954db3 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cd99973 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f27ec99 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0ce807a mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa500cf2f mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75a1c80 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaafa5008 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba64fb58 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba8520c2 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbaf99606 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc08db9ce mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc15bc474 mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2815584 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6d9e3bf mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc78d1167 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca918673 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc8624ba mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd39a178 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe47c7142 mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8c12c54 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef2d6085 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0bbac2b mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff90fb7b mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x00ae1665 mlxsw_reg_trans_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ab0c687 mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ed8faa7 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1bf0582b mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x29b1505c mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d07a992 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3247e4bb mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x39a96739 mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4c5b06aa mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x650ad665 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x661034ec mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x668baa94 mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x72a05371 mlxsw_core_resources_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x87b445d4 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5ff38e0 mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb7aa8562 mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xec51e246 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf7cad8d0 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x0d90bbf3 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0dcbae6d hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc944ba45 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xdd14f32c hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xdf2452eb hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xedb5b99a hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0498cd66 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x30713c0f sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x30e5be05 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x67cf333a sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7e4a2500 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x8746c5de sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa7a42afe sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xbf8779ad irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc21e8de3 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xe41169e8 sirdev_put_instance +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x01c35d2e free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x54bfb388 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x10b9e85d cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x23265b11 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x8625ff23 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xc7c39c72 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xfd9a4d1b xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x0ee9a7cb pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x6797f063 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x7392886f pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x6bc732d3 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x0d965427 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x48428035 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x6d2ffa06 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x8b1f695c team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x9a52e802 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xea7ef702 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xeaa8e72c team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xf5a13a5e team_options_change_check +EXPORT_SYMBOL drivers/net/usb/usbnet 0x10e78089 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xaec606c0 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xe8a27989 usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x202a2cb1 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x311693ef alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x467ddb87 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0x647de04b register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x72e0b574 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x758d0304 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x802603eb detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8a1c66da hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa25aadb5 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc643a1e1 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xcb2ea12b attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x04695aa8 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x070e0e1d dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x18b14043 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x33691589 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x72fd9fed ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x872358e5 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8e1375cb ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc85698a9 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcc7c042d ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd09f1865 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd2aae9d0 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd65bd4b6 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdc16a48f ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe8e4d649 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x07389dfd ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x078fb4f3 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1726b146 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2bdab952 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x35249f21 ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x50ce21b3 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x625e4552 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x78ce88b2 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x824d7f8a ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8d27a819 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa3307ad1 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb977ccc3 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd46f0632 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe07c72eb ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xed1b3431 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf2dac5d3 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x188ca563 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x344dd70a ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x524ca0a7 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5478e786 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8511a077 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8ad6ed83 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8e95a358 ath6kl_core_tx_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 0xa6e1ff98 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xaa8f705d ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xac7e37af ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb2007db6 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0b6df90c ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x14709894 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1558716c ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x17a3154a ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1a8c9015 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2200c67a ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x29e400b5 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6c28638f ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7685727a ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7da254fc ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x89564ecc ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x92d80faa ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x955df7dc ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x95f4d9eb ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa4ac7cb4 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xabf72c92 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb43dd4fb ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb78b4c0c ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbacfc82d ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbe2d68c4 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc9ad406b ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xead0cdff ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xed95a189 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0028b1fc ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x023e90b5 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03a30797 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04dd8fe9 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x066665cd ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x093f20a6 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b3b1a71 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11fb6493 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a7c76c7 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b3b5438 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b5f147b ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c7bbbd1 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d5b467c ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1eb5f6d8 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20921615 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2830ce3e ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x298af67e ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29ead5b9 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c120c0b ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2cefe14a ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f22661e ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x316cd22d ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ca103e3 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3cd4d2f4 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3da14414 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e803067 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f233f9e ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46eabc3e ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47add8cc ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4962d041 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ecfed09 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f168420 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53a9ec0f ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59acded3 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59b63466 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b69b826 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b8dedd3 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c95c17d ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e4ef812 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62c23496 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6696d7a7 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66c29a00 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66fae62b ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68ee2513 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6acc7474 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f23b747 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71f19ff2 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x726a4071 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74606757 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78afca30 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7979b928 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7adfc230 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7af6c107 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7dbedaed ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7dce425a ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f222601 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f884c6d ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x804c6019 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x820ce26e ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86fb45e1 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87730f70 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87e9856e ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93dd276b ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97444a6a ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9777d513 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98088d52 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c219e53 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c5c6fad ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1f6f9f8 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa244eced ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa25c8ef0 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa320df64 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4d18eed ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa58f50bf ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa93b64b4 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaaab17b9 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb19abc5e ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3c8de96 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9d4185e ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb606569 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc21fa661 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc34b2e02 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc54a6b4f ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7553701 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb754183 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd02e5f2b ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd3f0ef28 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd63f2d79 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd74e2af7 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8f39946 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe04d4866 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2a8c319 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2d4cb14 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2fde4b8 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3ed8aaf ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5070dbe ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea1106e8 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeaa9f1b9 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeaf373c8 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed396b8b ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf57f40a2 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6cfcbb5 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7f6ae24 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff3cecd0 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff73f67a ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x2f9db965 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x8d6276bf stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xab27b277 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x074d0a31 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0e087fa0 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x11852987 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x177b1bb0 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5706e089 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x577384ca brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x60cd5911 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7a2f6efb brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x93f09bea brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x99ff5c10 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9bfcd687 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbceaaf05 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe157666b brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe1e6eed8 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x11cf4987 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2606fa8e libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x337db0ab libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x407e7e20 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x41b1f2dd libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x56197eca libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x59afceee free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x59dddcb6 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x72c4255f libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x75ba01b3 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x77199e58 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8805c757 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa6763183 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc30a44e5 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc333423c libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc7ede929 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd066a2a1 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd343a7b5 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe0d1104c libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe4a99629 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfa83e670 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x01786886 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x03ea3f12 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04b82489 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x08bb0045 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0933c98e il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x14371c0f il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1626307e il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1c932a63 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1cbe1847 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1cf88f7f il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d2765cd il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d8a99f7 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f284a5e il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x20adfc1d il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x26c48950 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2f8df604 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x302fcd32 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31bacbb4 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31c5b4e7 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31faadbb il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x35427b22 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x35c4a6d9 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36c1afb3 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f63ce6b il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4051ce7f il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x405347fd il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x49ac99f9 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4b935e30 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4da4217a il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4f9480df _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4feae0b2 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x50587234 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x516c90c8 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5457154a il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ada9761 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x60fd9e93 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x678fe38d il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6848ed66 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ceed5c0 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x708c82a6 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x70da1ac0 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x741af6b1 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x77e13462 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x78af2dae il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x78eb7cf8 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a18838f il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b9065f0 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7bd8ed79 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x846d5f9e il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x85291949 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ba30738 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8f0a39d8 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8f332636 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x958392fa il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x95a661af il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9986f9c0 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9abc196b il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b50fc95 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b710d06 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cf582b7 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa3de5990 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa46493fd il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa57e4838 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa648f906 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae401f15 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb2d09e41 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb3c2d156 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb791503f il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7c69acf il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb8587b7e il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc14236d6 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc510c304 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc6e6f433 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc85b3a68 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc8adcb69 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcd2917e0 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd288dd1f il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3f655a7 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd4101912 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd60b753e il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd6cc7758 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd826ef69 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd94ac8c2 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdb1cc947 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdcfbb9c5 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe03fa923 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe082c7b3 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe3fa5409 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe90d27cb il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec14fd54 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf098fff2 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf0a2ab21 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf0c63968 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf8338c45 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfb3827ca il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfc21c0bb il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfdf958af il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe5b4d68 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x47bda8f9 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4e0c2b0e __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8b0e519b __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd031d4c3 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe4d855cc __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf050905c __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xffe01d38 __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x010e35eb hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0494952e prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0d6c2da6 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2613a54b hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2de44834 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4a35b4c9 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x52d7ea9c hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5d08dc5d hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x63f6d889 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x66fa0285 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6f1f2988 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x72b5c53d hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7f00888e hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8e0fdb59 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8f0ae986 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9847ada7 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa1c02cc1 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa680fe0c hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb9d7cd04 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcb0dcebf hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe6fecd81 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xef9019a2 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf7289fdd hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf879b22b hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfd9b625c hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0ad1db48 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0e49f63e free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x132084cc orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2d44935c orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3823d808 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5f33a9a1 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5fe7609b orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6d97cee1 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8369cd7d orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa119e369 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xae8f8d5b __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xaf3ecb8f __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xde993e58 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe61d699c orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe6e50e5e alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xea81a596 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xef64033b hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xc09694bd rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0001cfb6 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x03cd0d36 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0d1ea450 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x20dd844a _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x253d4c6a rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2e96d386 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3bf49cbc rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x438210af rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4d23d6dc rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4ec3a99a _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5bdb7272 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6a07e346 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6e4b3fc0 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6f87827f _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x70d01dc3 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x745315cd _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x758f1ca4 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7a15b8f9 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7b4bc435 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8893558d rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8a7af987 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8ee3fefe _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9413e046 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x97caa005 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9ebc8ef6 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa0803972 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa5ce46cb rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa76e5ee7 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xafcd9f5f rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb89c49f2 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb9e4cf9f _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbbbc3114 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc528e4c6 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc8b5f284 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd034abe7 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd193b53e rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xef20ae02 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xef8a2019 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf1ccce6b rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfcc5087c rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfd129fd8 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x5b16fd83 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x74272207 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x781bcff6 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xe08ca156 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4ca786f3 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x5621ab72 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8836cfbc rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xfe844310 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x077640f5 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2695a844 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x28532edb rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2f434abe rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3d7fe32d rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e97f2cb rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4c40a4fa rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x55a32961 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x590b1ddd rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5ac7d00e rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6ded1780 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x702ceb6b rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7539198b rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x769ccf23 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x83ab00cb rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8fa97cd0 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90c202dc channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x942e005e rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9f04e61e rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xad041b34 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb1389977 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb7a2a744 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc681a33f rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcce70e4d rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd09c21e8 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd32731b8 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd8d41742 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xda3daf40 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe5e04528 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xee58c52b rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8018271 efuse_read_1byte +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xae9ee462 fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xe35463ef fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xe706f296 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x989630ce microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xaf584b37 microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x21a4553a nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x312e1699 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x7654b6bf nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x7e11ba4f pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x21c31a59 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xe587c51b pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x94354209 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xfcb1afa2 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xfcff5d7d s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1bc01607 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1cf09a20 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x55de0269 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7334727f st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x767d2b28 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb3b7e1c1 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb4e42cc2 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbd55bfff ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdc8ba11e ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdd17eddb st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3230191d st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x344e190c st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3a91e78d st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5101af6d st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x65d22d28 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8043348f st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x831d248a st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x84760c81 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8bcbb978 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8e7fa3ee st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xaa445ba0 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc2b9193a st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xca25502c st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd189d8d0 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd6a0f777 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdf3a7af7 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeaafd24f st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xef88903c st21nfca_dep_init +EXPORT_SYMBOL drivers/ntb/ntb 0x043a67d4 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x1512dbbd ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x2b52437e ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x5c66a20a ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x7cbc2e80 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xbde34b93 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xc8519e9c ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xe5002da5 __ntb_register_client +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x46bffa56 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xcd953be1 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x8fbee611 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x061ceaa6 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x113560ce parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x116edc2d parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x13d60582 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x1c2f9896 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x35a9a3f4 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x3af495cb parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x3d87bea9 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x3d9e9b8d parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x4b53afa9 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4ed1a322 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x518de6d7 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x57c9837d __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x583b21aa parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x7082e148 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x72b71851 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x88c71ebf parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x901efa3c parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xa54acfbb parport_release +EXPORT_SYMBOL drivers/parport/parport 0xb0ccf8a2 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xb6a7272f parport_write +EXPORT_SYMBOL drivers/parport/parport 0xbf009aa2 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xcfc12ee5 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xd2aff1ed parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xd6e38c53 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xd6fb655d parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xdc89f530 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xe8e54978 parport_read +EXPORT_SYMBOL drivers/parport/parport 0xe907215a parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xead027aa parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0xf03d6ae2 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xfb918aa8 parport_wait_event +EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0x570e678b iproc_pcie_setup +EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0xda3844f8 iproc_pcie_remove +EXPORT_SYMBOL drivers/pps/pps_core 0x148571a4 pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0x46e01bdd pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0x79917c18 pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0x81ca59fb pps_register_source +EXPORT_SYMBOL drivers/ptp/ptp 0x2a8ad9a6 ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0x40adb997 ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0xb15739f0 ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0xbb51ac09 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0xbd758a82 ptp_clock_unregister +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x09738fb1 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x2f1266e4 rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x38f1eb56 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3be63998 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x9d5ae3ba rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x9d9eda70 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xb74ea700 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xb834c492 rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xbe8ce39c rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xebd02100 rproc_boot +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x5884fd13 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x1cfedf6e scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x847d72b7 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x894604bf scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe0d2ee68 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x123fc937 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2b3edd7b fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2f30e1aa fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3887d4fe fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3e4d78c1 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x41509f86 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x44ebe45e fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x79f501c3 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8a12f19c fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc36a3f54 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc6cc279d fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc724ab17 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x07350393 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0eb54fa0 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11d4c1fc fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1423d0cb fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x17873eb0 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1ad14c1a libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1e32ba87 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2519db80 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c5be80f fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30a443e0 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30e9db97 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36602464 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3af100f9 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3c58de42 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3f2b970f fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x466e7ef3 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x46c12037 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x498ab9b2 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f79cbc4 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x552e06f5 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5b209ddb fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5d4d19ba fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63b0bd68 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x664b056a fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e77f79c fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6eaef1d2 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x734e9868 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ce16059 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80db242a fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8ac07cd8 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8af632e2 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x904ca108 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x92c20b50 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x94bf1078 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x956ff278 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9a72caee fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb57750d1 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb7913e78 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb7a366f6 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc3985e11 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcbd79a1d fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcc4a5bf3 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd1368e38 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd4739921 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xda4df67f fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb36ed73 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdc77b46a fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe2f4a5d0 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe4089aca fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea10425b fc_disc_init +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x1b20a9f5 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6635c9c7 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x9ea26ccc sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xc0668958 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x0896c73e mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x06aa29a7 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x16f90865 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x16ff782c osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1bcdab30 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x200f7a90 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x22af8ff9 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x22aff3c8 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x26a18e31 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3281abc3 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3fc56af7 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x41f8433c osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x441a07db osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x50e12e3f osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x647011d6 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x660c1cba osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6bcf5836 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x769d5fe0 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7e72b146 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8fe22525 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x93930555 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa16c3f9a osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa46234f7 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xaf5e9dc8 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb0382c37 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb5e8d3bc osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb83161c2 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbf17b4ac osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc795ca32 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc7aa6a16 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xca5e17ba osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcdfe5c9f osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdbe62ab9 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xee0cdd36 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf8559595 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfcdca65b osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfebd61bf osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/osd 0x0f07dd56 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5762ff90 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x61c1ff86 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x9d102c45 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x9e5d5537 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xfedea676 osduld_device_info +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x01a91a5f qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1321c21d qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2c3faab9 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3cba9a1b qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4b1c2a44 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5a00895b qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x68894f42 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x873e5693 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9762b5e2 qlt_put_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb0a9d1a3 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc59a049e qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe348dcce qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/raid_class 0x3c32dacd raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x78db27e9 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xfa32512f raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1d64d445 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2a04bab9 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5b0735eb scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x723f5bab fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x73de7bb5 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb2f3f037 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb98ea1b4 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbbec9501 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcca5bdcc fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd68f8e82 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe7913c49 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf1ad8312 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0349afea sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0d5b97f4 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0eadfad1 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2bf73dc2 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2d9fe66d sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2ff5af2e sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x35f6e3f2 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x37d065f0 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3a6c42a2 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3b272cb4 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3e7b699d sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x44fbb7a8 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x490464f6 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4be91ad3 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5b25b7de sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x61739f89 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x66ca40c8 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7e86b6b3 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x833ee261 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8a0eadf6 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8f417be1 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa1bab0b5 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa3bd7775 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xac30deb0 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb6244d03 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc22ab1cc sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd667ada5 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe2643da4 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe93bea75 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0a9247d3 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0fb332f8 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x5a3d1dee spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7a44dc9c spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x895873b9 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2cb3e905 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xce8ce4fc srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe6c88c04 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xea8f800b srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xbcdd53ed tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xdfe19238 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x05b2b9cc ufshcd_query_descriptor_retry +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x5ceed93a ufshcd_read_device_desc +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x717a47a5 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x7389d8d3 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x7f7f8aa5 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x8d751029 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xa912f5d9 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xb079f749 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xcaa6d305 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xcbc3ddaa ufshcd_read_string_desc +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xd8b6741a ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x1c9922a9 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x44bde2a2 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/soc/qcom/smd 0x263c91bc qcom_smd_driver_register +EXPORT_SYMBOL drivers/soc/qcom/smd 0x322e4a7f qcom_smd_open_channel +EXPORT_SYMBOL drivers/soc/qcom/smd 0x6714ccf2 qcom_smd_set_drvdata +EXPORT_SYMBOL drivers/soc/qcom/smd 0x84abd03a qcom_smd_get_drvdata +EXPORT_SYMBOL drivers/soc/qcom/smd 0x9df9f10d qcom_smd_driver_unregister +EXPORT_SYMBOL drivers/soc/qcom/smd 0xeda44e54 qcom_smd_send +EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0xad43c23b 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 0xeeffa750 qcom_smem_get +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x6edd6e08 qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/ssb/ssb 0x0396c0e0 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x05656d72 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x094e9ebd ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x1b938548 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x1dafb294 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x55a1edf6 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x5e1414e8 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x736eaec2 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x7d7e8454 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x88b081aa ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x9b80edcc ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x9f05ca9c ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xa4b4bd1a ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xcc1d8b29 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xdbb64c11 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xe263db65 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xecb1e9ff ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xf1ab5867 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xfd9fac69 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xfdc55aa0 ssb_pcihost_register +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0839edaf fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3015e60e fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x414d6d52 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4321836e fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x45f02caf fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x51519f73 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x594d14b1 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5aeb3f1c fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5d41850d fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x67b70885 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8408c3f5 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x84685ffb fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x867e368c fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8c0de1af fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa176c762 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa2bfc892 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xab51be64 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbd36aa7a fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc515c4bb fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe039a97c fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe9524f87 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xee4a96e2 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf832e30a fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf8e79d8e fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x02f4eaea adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xf0ecd904 ade7854_probe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x000c507f libcfs_debug_dumplog +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x00e3c630 cfs_hash_putref +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x01fef7b4 libcfs_register_ioctl +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0364f248 cfs_hash_findadd_unique +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x03dea4d3 cfs_race_waitq +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x06443cdb cfs_wi_deschedule +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0a2d7060 cfs_cpt_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0de6c369 cfs_cap_lower +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0e6e828c cfs_cpt_table_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0f5eff79 cfs_percpt_number +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x1936cbbb cfs_crypto_hash_update_page +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x1bb186d5 cfs_cpt_unset_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x1d2223d0 cfs_cpt_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x1e5e7625 cfs_hash_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x23e25c18 cfs_wi_exit +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x24044819 cfs_hash_add_unique +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2663147a __cfs_fail_timeout_set +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2711600f cfs_hash_for_each +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2dbe54b2 cfs_trimwhite +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2dec62d7 cfs_hash_size_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x31fc5082 cfs_crypto_hash_update +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x361e82d4 cfs_firststr +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3699fd8c cfs_cpt_bind +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x37175882 cfs_expr_list_print +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x377f93fb cfs_srand +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3837f399 cfs_hash_add +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3b52a4b6 cfs_cpt_of_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3c1285bd libcfs_subsystem_debug +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3d5e6098 cfs_race_state +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3ea730c0 cfs_gettok +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4062f92b libcfs_run_lbug_upcall +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x411db754 cfs_crypto_hash_final +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4442634c cfs_hash_del +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x44839bbb cfs_rand +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x44a31acd cfs_percpt_lock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4a99af72 cfs_clear_sigpending +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4d3b4eaf cfs_fail_err +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x51a891a4 cfs_hash_debug_header +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x52b9c7e9 lbug_with_loc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x53957726 cfs_hash_bd_peek_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x580c627b cfs_hash_bd_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x58a7ee00 libcfs_catastrophe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x590742cf cfs_cpt_unset_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5c013b81 cfs_expr_list_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5d73c3e3 cfs_expr_list_free_list +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5e9048ee cfs_hash_bd_lookup_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x60288827 cfs_cpt_table +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x62289d65 cfs_array_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x624fe623 cfs_cpt_set_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x648c840e libcfs_kvzalloc_cpt +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x67398404 cfs_wi_sched_destroy +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x6b53c921 cfs_hash_lookup +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x6d0a31c9 cfs_hash_cond_del +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x6ec7011b cfs_cpt_unset_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x71e3804b cfs_crypto_hash_digest +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x71f662a3 libcfs_debug +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x7219c936 cfs_hash_bd_del_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x7993a629 cfs_cpt_table_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x7e310f19 cfs_cpt_online +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x7fda989d cfs_fail_loc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8033c4dc cfs_hash_bd_add_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8151c3aa cfs_cap_raised +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x850a66cf cfs_cpt_table_print +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x865483a9 libcfs_kvzalloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8840f591 cfs_block_allsigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x89c69632 cfs_cpt_set_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8a9620c4 cfs_hash_hlist_for_each +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8b7598c2 cfs_percpt_lock_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8b8f321d cfs_crypto_hash_speed +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8d5cd7d3 cfs_hash_debug_str +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x916bd963 cfs_percpt_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x932cd09c cfs_cpt_clear +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x93896a8b cfs_crypto_hash_init +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x940ed192 libcfs_stack +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x96c65a49 cfs_hash_for_each_safe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9879b229 cfs_get_random_bytes +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x98f0e065 libcfs_deregister_ioctl +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9a692a27 cfs_cpt_spread_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9e420643 cfs_restore_sigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9f82f712 cfs_trace_copyout_string +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa1bcf8f3 cfs_percpt_unlock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa2b68b2a cfs_array_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa4bca442 cfs_hash_for_each_empty +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa9088531 cfs_expr_list_values +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa9dc74e2 cfs_trace_copyin_string +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa9e28208 cfs_hash_for_each_nolock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xaa1519fd cfs_hash_getref +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xad019238 cfs_str2num_check +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xafc75296 cfs_cpt_set_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb2aca266 cfs_hash_is_empty +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb3997b63 cfs_cpt_number +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb4cbe9c5 cfs_hash_del_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb8354b83 lprocfs_call_handler +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc0ea7fc0 cfs_expr_list_parse +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc2911d96 cfs_expr_list_match +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc68374f2 cfs_cpt_unset_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc814dea9 cfs_hash_for_each_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xcf61bacb __cfs_fail_check_set +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd4c25db2 cfs_cpt_set_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd96f406d cfs_cap_raise +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xdf2789c0 cfs_curproc_cap_pack +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xdfecb98d cfs_block_sigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe2f91ce3 libcfs_debug_msg +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe3bf6897 cfs_percpt_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe495fbda cfs_percpt_lock_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xea411f63 cfs_block_sigsinv +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xec6d814e cfs_cpt_current +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xeceac781 cfs_fail_val +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf03bdf11 cfs_wi_schedule +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf1717bec cfs_wi_sched_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf299671e cfs_hash_rehash_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf3565b71 libcfs_debug_vmsg2 +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xfebe106f cfs_cpt_weight +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x06e41905 lnet_sock_setbuf +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x0ecafbbb lnet_sock_getaddr +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x0f0d67f0 lnet_connect +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x115517aa lnet_set_reply_msg_len +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1366b7ac LNetSetLazyPortal +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x19670622 LNetNIInit +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1a60d439 cfs_parse_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1a911f23 lnet_parse +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1ee5f15e lnet_ipif_query +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1fe16fd5 LNetGet +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x2aa9953d lnet_cpt_of_nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x2ac93e90 lnet_connect_console_error +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x33202a6c LNetGetId +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x3c779ee0 LNetPut +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x3f4f5b46 LNetNIFini +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x45116cae the_lnet +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x473ad33b LNetDist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x48f163c6 libcfs_str2anynid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x49993ea3 lnet_extract_iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x4ab5425f lnet_sock_write +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x4b8768b2 lnet_sock_getbuf +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x50345570 libcfs_str2net +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x58a1ca89 LNetMDUnlink +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x5fee352c lnet_acceptor_timeout +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x61f784b2 LNetClearLazyPortal +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x6205efb8 lnet_notify +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x62da1ef8 lnet_finalize +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x64590a83 lnet_create_reply_msg +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x64cdea3a LNetCtl +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x66d449b1 lnet_ipif_enumerate +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x66db192f lnet_sock_read +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x722c76e5 LNetMDAttach +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7c0daa66 lnet_register_lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7d59a7fe LNetMEInsert +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7e93080c libcfs_nid2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7ef21bee cfs_nidrange_find_min_max +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x83d795e4 cfs_match_nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x86931958 lnet_net2ni +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x8e18dc7c LNetDebugPeer +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x97f5966b libcfs_lnd2modname +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x9de986d3 LNetEQAlloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xa56de08d lnet_ipif_free_enumeration +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaa414970 LNetMEUnlink +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaa9b477e LNetMDBind +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xade657cc libcfs_next_nidstring +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaed3e209 libcfs_net2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xafffc8ca lnet_copy_kiov2iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb0a85cb8 libcfs_lnd2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb20da2b1 lnet_copy_iov2iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb75f7953 LNetEQFree +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xba5566d2 lnet_acceptor_port +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xbf0760a2 LNetMEAttach +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xccc45639 cfs_free_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xcf4eb544 cfs_print_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xe7370e37 lnet_extract_kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xeaeb6565 cfs_nidrange_is_contiguous +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xec1f56d5 libcfs_str2nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf1b316bf LNetSnprintHandle +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf3474906 lnet_unregister_lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf5dc6337 lnet_iov_nob +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf8707d21 lnet_kiov_nob +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf8a8644b libcfs_id2str +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf94025d1 libcfs_str2lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfa106804 lnet_counters_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfa52634f lnet_copy_kiov2kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfe7ca17c libcfs_isknown_lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfe84f46b lnet_copy_iov2kiov +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x14e1baa5 seq_client_alloc_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x1c4bb5f9 LU_OBF_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x375e6f8d LUSTRE_BFL_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x78f0ccac client_fid_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xae61cff5 LU_DOT_LUSTRE_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xc997a02f LUSTRE_SEQ_SPACE_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xcc78f481 seq_client_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xdcab658d client_fid_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xecee2727 LUSTRE_SEQ_ZERO_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x00449f71 fld_client_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x03b01511 fld_client_lookup +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x07165be7 fld_client_add_target +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x77815008 fld_client_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x9c0194e0 fld_client_del_target +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xbfa16aeb fld_client_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xcde4224e fld_client_debugfs_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0x1a3fd6ca ll_iocontrol_register +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0x89ef100d ll_direct_rw_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0x9986cde1 ll_stats_ops_tally +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0xcd3cde92 ll_iocontrol_unregister +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x16913d57 lov_device_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x3e7e1b48 lov_read_and_clear_async_rc +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x814b47d1 lov_lsm_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0xf40d760e lov_lsm_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/mdc/mdc 0xde3a15a9 it_open_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/mgc/mgc 0xdc287f95 mgc_fsname2resid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x014cab33 cl_2queue_init_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x01d8c36e cl_page_clip +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x021b28c6 cl_env_nested_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x035852d0 lustre_swab_llog_rec +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x03b37a9c lu_kmem_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0659bca8 llog_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x065f54a3 llog_init_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x07aa68bb lustre_swab_lustre_cfg +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x07d45876 obdo_set_parent_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x083942ff class_del_profile +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x085ce3d2 cl_io_rw_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x08ca8c35 cl_env_nested_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0a9ec4fd lu_context_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0b0f4ad7 lprocfs_rd_conn_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0b3c0995 cl_object_attr_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0bf57445 class_fail_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0c378d79 lustre_swab_llog_hdr +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0c6a9b10 cl_cache_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0f0f17b5 class_new_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0f521f25 cl_page_make_ready +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x11495519 lprocfs_write_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x123bbd61 lu_device_type_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x130b51b7 cl_env_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x14be7d90 lprocfs_rd_uint +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x16657f64 lprocfs_counter_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x178e04bc cl_object_attr_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x18bc51c6 obdo_from_inode +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x18e5a4a1 class_register_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x19eb3d78 cl_io_sub_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1a258e56 cl_lock_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1ab223f4 cl_offset +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1b0e665e cl_site_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1cae6aa9 lprocfs_rd_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1d38c161 cl_env_percpu_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1e3fb4d9 cl_2queue_discard +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1f8ed8c7 cl_page_is_owned +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x221826f1 class_parse_nid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x22c2b00d class_config_parse_llog +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x23947a44 llog_cat_close +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2473e0a9 lprocfs_clear_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2547efae lustre_uuid_to_peer +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x262576d5 class_find_client_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2671babb cl_page_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2685939e class_process_proc_param +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x26eb0253 class_export_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x275cdc7a cl_env_reexit +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x27d5af93 cl_object_header_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2801f596 libcfs_kkuc_group_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x286860f5 class_handle_free_cb +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x297cf5e0 class_handle2object +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x299cfc1b lprocfs_oh_tally +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x29be85b7 cl_2queue_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2b08d4db cl_page_delete +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2bbf14f3 cl_object_find +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2bfa3a85 lprocfs_wr_uint +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2c8e0eb4 lu_context_refill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2d982d5b lu_object_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x30ece62a lu_context_key_register_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x30ed4717 lu_env_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3154339f class_exp2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3242ed35 obdo_cachep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x337a477f class_num2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3380439b lu_context_key_quiesce +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3450c289 libcfs_kkuc_group_rem +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x34a2b8fd class_export_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x34dbf893 lprocfs_alloc_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3613b46a cl_object_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3726f79e cl_lvb2attr +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x37ed6e4b at_early_margin +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x39fc817e cl_lock_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3ad79862 lu_context_key_quiesce_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3b371a52 cl_page_discard +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3e039003 cl_io_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3fcf044d cl_io_iter_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x40e96628 lprocfs_exp_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x414a7369 cl_req_prep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x42ebfb6e cl_page_list_move +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4426d51d llog_close +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x44feb3c3 cl_lock_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x45650e28 cl_page_is_under_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x47678704 lu_context_key_revive +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x47b35f7d statfs_unpack +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x48b6b719 cl_page_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4a313f2a cl_site_stats_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4a41ccc9 libcfs_kkuc_group_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4aa8585a cl_page_list_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4ac58713 obd_connect_flags2str +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4c190aad lprocfs_find_named_value +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4e99ad12 lprocfs_seq_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x505019ef cl_object_prune +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x50c7fc36 ptlrpc_put_connection_superhack +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5124f25f lprocfs_oh_tally_log2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x519cdf91 cl_env_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x54844178 class_disconnect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x54b059cb class_devices_in_group +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x552c0ad9 cl_env_cache_purge +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x558bec27 obd_ioctl_getdata +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x55b67e30 lu_object_locate +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x570d09ae lustre_swab_lu_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x597fcf4f lu_device_type_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5ad1cadc lu_context_enter +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5bf95554 llog_thread_key +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5c68348a class_new_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5c70dc2f lu_device_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5c7d9af0 lu_context_key_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5d8911d7 class_exp2cliimp +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5e27e9bf __llog_ctxt_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5f4b1abb lustre_common_put_super +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5f5ccc1f cl_io_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5fe97b73 block_debug_check +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x60172a1d lprocfs_counter_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x60895485 lprocfs_at_hist_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x618afff2 cl_page_find +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x61d1c140 cl_index +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x61e90bef cl_2queue_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x61e98df7 libcfs_kkuc_group_foreach +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x627257c4 cl_io_is_going +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x636e35e6 class_unlink_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x63e31321 cl_page_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x640143e3 lu_cdebug_printer +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x65e0bb14 cl_io_submit_sync +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x66ecaf7b cl_object_attr_unlock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6730a437 lu_object_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6734adbd lprocfs_read_frac_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x67f3f085 lu_site_purge +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x683b3b3b cl_lock_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x688f605d cl_page_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6890d175 lustre_get_jobid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x69c42114 at_min +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6adf3bdd class_connect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6d9f4e0a cl_page_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6e17d08e lu_site_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6e5a382d lu_device_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6ec8a791 class_manual_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6f286c17 cl_page_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x70c89d52 class_conn2export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x724766b1 lu_site_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7377d94a lu_stack_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x742559b1 class_unregister_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x74b9bb42 lu_site_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x752168d8 obd_unstable_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x752f71a8 class_get_profile +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x756a77f3 class_parse_nid_quiet +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x75ee206d lu_site_stats_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x764fbe6c cl_type_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x76ad6833 cl_lock_descr_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x77214063 lu_context_key_revive_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x77d2089a class_name2dev +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7802fcd7 lustre_swab_llogd_conn_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x783c1268 lprocfs_rd_connect_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x789796a1 obd_zombie_barrier +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7b4fc57b at_max +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7bedc50a cl_io_lock_alloc_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7e3ed35b cl_io_submit_rw +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7edcafa0 cl_env_reenter +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7fe5561a obd_dirty_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x806cc497 class_add_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x809d9180 class_incref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x80bfa0ce cl_io_lock_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x80ec1a7f lu_object_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x80fc0ab6 lu_object_header_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8117b1b6 cl_io_commit_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x81742d89 obd_ioctl_popdata +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x831f656c class_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x844616a4 lu_device_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8446b9a8 obdo_to_ioobj +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x86f7ab62 cl_object_glimpse +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x87f57c3f lu_object_unhash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x88c5aa99 lu_context_key_degister_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8957d05d cl_vmpage_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8ab1e25f cl_lock_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8ba6e479 lustre_swab_lu_seq_range +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8bc09c85 cl_2queue_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8c3422a3 cl_conf_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8ef70e0a cl_page_is_vmlocked +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8f67314c obd_dump_on_eviction +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8fc1fc91 llog_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x90303b96 cl_page_completion +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9031dc48 lprocfs_oh_sum +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9124253e cl_req_attr_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9239b724 lu_object_header_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x92e58479 obd_dump_on_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x942147da lprocfs_rd_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x94dd3c50 obdo_refresh_inode +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x95735c6c at_extra +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x96148cfb class_handle_hash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9718a22b cl_object_attr_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9767adce class_uuid2dev +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x97d03783 at_history +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x99128fcc cl_sync_io_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9b1ed9d8 obd_jobid_var +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9b23b260 cl_env_percpu_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9bb8c0c0 lu_object_add_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9bf5f23d cl_site_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9c26c539 cl_object_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9ca6a3d3 lu_env_refill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9dae83d4 lprocfs_stats_collect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9f19d24f lu_context_key_register +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9f763fcd class_config_llog_handler +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9fa05fdb lustre_register_kill_super_cb +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa0aa7009 cl_page_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa12c64fe lu_object_find_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa14fe795 llog_process_or_fork +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa160da4a lu_object_header_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa1680790 cl_io_loop +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa1a01131 lu_object_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa1f43b43 lu_object_find_slice +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa5347ef1 cl_page_prep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa54a496d lprocfs_counter_sub +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa5fb234f lprocfs_write_frac_u64_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa7a40430 cl_cache_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa7e16614 lu_kmem_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa9edd959 lprocfs_oh_clear +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xaa3277d9 lu_context_exit +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xaa8d0e04 cl_req_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xaaa08d2a lprocfs_rd_server_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xaaeddc89 cl_io_iter_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xabe5651a lustre_register_client_fill_super +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xac25ce2e cl_lock_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xacae7561 lu_context_key_degister +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xacaecaaf cl_lock_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xad0b87a4 llog_open +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xae872359 cl_env_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb01963a6 class_uuid_unparse +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb21416af cl_io_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb3309421 obd_devs +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb35519ed lustre_swab_cfg_marker +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb4a42703 class_put_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb4a870f9 lprocfs_stats_alloc_one +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb4f8ee63 lprocfs_read_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb53e1d58 llog_cat_process +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb64660d0 cl_lock_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb7575025 class_name2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb80b9119 cl_lock_enqueue +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb84ec285 cl_sync_io_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xba985283 lustre_register_client_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbacac922 lprocfs_write_frac_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbc5e8696 class_destroy_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbd85dd6b cl_page_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbf07a98d cl_io_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc0bf7ef2 obd_debug_peer_on_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc2921d2f cl_stack_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc31a47b0 cl_req_page_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc47dd8ed lu_context_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc51fd05d lu_device_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc5c16928 class_import_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc5dcc4c6 class_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc635c731 class_handle_unhash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc6677224 cl_page_unassume +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc6b26dd6 libcfs_kkuc_msg_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc71703a0 cl_io_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc82ed1b5 cl_object_kill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc950628a cl_lock_mode_name +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcb0ab67f obd_max_dirty_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcb17e80e cl_page_list_move_head +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcd0f977b cl_io_unlock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcdcc7829 cl_env_unplant +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xce975c45 lprocfs_free_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcf4d6e7b cl_io_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd06ea282 cl_req_page_done +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd1864233 cl_object_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd27d61ac cl_sync_io_note +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd2ae6a3b cl_page_list_splice +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd6108efa lprocfs_single_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd6a2bb8b cl_page_list_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd70fe669 lustre_swab_llogd_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd7bc8654 obd_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xda5b1ced class_find_param +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdae1da7b cl_page_list_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdba07d11 lprocfs_rd_timeouts +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdbd3486c cl_cache_incref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdcc40af0 class_check_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xde7d985b obd_dirty_transit_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdf68219b class_import_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe0c6bcc0 cl_page_list_del +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe2f812a5 cl_page_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe6a02c74 cl_page_assume +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe6fb9670 cl_page_header_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe97a0601 cl_page_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe9dead69 cl_io_start +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xec619a99 cl_page_own +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xec7d6b85 obd_timeout_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xec9c77fa lustre_process_log +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xecab6df6 cl_page_own_try +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xecf82f53 cl_req_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xee511467 cl_io_read_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xee82d831 lu_object_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xeedb6652 cl_page_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xef76f858 block_debug_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf0c94379 md_from_obdo +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf2bac6ef llog_process +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf490d5f9 class_del_profiles +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf5e270fb cl_sync_io_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf60f7c45 cl_req_completion +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf9738099 cl_env_implant +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf9a49697 lu_site_init_finish +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfbea0098 lu_types_stop +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfc2c569e cl_page_list_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfcacc7b2 lustre_end_log +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfd68d17a class_notify_sptlrpc_conf +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfdbe1557 lprocfs_write_u64_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfe768f85 lu_env_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfffc1f11 lustre_swab_ost_id +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00cb99c1 RQF_LDLM_INTENT_GETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00d95039 ptlrpcd_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x03660745 req_capsule_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x04073f37 ptlrpc_at_set_req_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x048b59d5 lustre_msg_set_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0515f93b RQF_FLD_QUERY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x054dc96d ptlrpc_fail_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x05bfc76f ptlrpc_invalidate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x06b3942b lustre_swab_lov_user_md_objects +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x071fc74a RQF_LDLM_ENQUEUE_LVB +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x076c7117 sptlrpc_unregister_policy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x08bb2d27 lustre_swab_obd_ioobj +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x08bd07b9 target_send_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x095587d0 lustre_msg_buflen +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0969a106 ptl_send_rpc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0a3130b0 RMF_MDT_EPOCH +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0ac252b2 lustre_msg_set_jobid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0ac54708 lustre_errno_hton +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0bcacb5d RMF_MDS_HSM_USER_ITEM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0cf343dd RQF_LDLM_INTENT_BASIC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0e29d7a5 req_capsule_server_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0f86df6c ldlm_resource_putref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x10a1a86d ldlm_error2errno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x10b53f08 ptlrpc_init_rq_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x10d96402 req_capsule_filled_sizes +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x115017f6 req_layout_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1257e396 ldlm_namespace_new +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x12765821 ldlm_cancel_resource_local +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x12b6f5a3 ptlrpc_connection_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x14708afc lustre_swab_mdt_rec_reint +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x14c94b73 sptlrpc_target_sec_part +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x14d192db lustre_msg_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x152f066f sptlrpc_flavor_has_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x152fd92f ptlrpc_request_bufs_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x15a3e4db RMF_GETINFO_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x15c3c86f req_capsule_get_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x15dd3ca3 req_capsule_server_sized_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x172fb86d lustre_msg_hdr_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1747d8b3 ldlm_lockname +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x175aee41 ldlm_cli_enqueue_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x17950f60 RQF_SEC_CTX +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x181ce3fe ldlm_lock_set_data +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19108a0f RQF_OST_DISCONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19c08934 RQF_LDLM_INTENT_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1a6a3ce9 RQF_OST_GET_INFO_LAST_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1a9b76aa RMF_OBD_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1abd3258 RMF_SETINFO_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ace4b5f RQF_LDLM_BL_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ad6c330 RMF_EAVALS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1b53cf54 sptlrpc_gc_add_sec +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1be21715 lustre_msg_size_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1c300d8e lustre_msg_get_slv +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1dc2051d RMF_SEQ_OPC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1de9c288 lustre_swab_layout_intent +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1eb2a65f RQF_OST_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ee46b51 lustre_init_msg_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ee9eb3c RQF_MDS_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2096f5b5 RQF_OST_SET_GRANT_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x20ac8098 ldlm_namespace_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x21609551 ptlrpcd_wake +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x219391ec RMF_EAVALS_LENS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x233790b5 RMF_OST_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x23648e14 ptlrpc_unregister_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x24aafdba RMF_MGS_TARGET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2585a629 RMF_SEQ_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2587513c RQF_LDLM_CP_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x269554ce RQF_LDLM_INTENT_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x26f99d16 RQF_MGS_CONFIG_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2830d0cf sptlrpc_cli_ctx_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x285e5b99 lustre_msg_set_conn_cnt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x29e0869a sptlrpc_get_hash_name +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2a63a472 lustre_swab_ptlrpc_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2b14c8a3 ptlrpc_set_destroy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2c00c60d ptlrpc_sample_next_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2cec385f ldlm_lock_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d56f168 ptlrpc_pinger_ir_up +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d798316 RMF_MGS_CONFIG_RES +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e4562fe RQF_LLOG_ORIGIN_HANDLE_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e4ca396 RQF_LDLM_INTENT_UNLINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2ed0e46a ldlm_lock_fail_match_locked +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2f0e4f87 RQF_OST_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2f793215 lustre_swab_ost_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2fab3539 lustre_swab_ost_lvb_v1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2fd2f737 lustre_msg_set_limit +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x301d4fcd RQF_MDS_READPAGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x302937e0 RQF_MDS_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x305b7caa lprocfs_wr_pinger_recov +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x306429d6 lprocfs_rd_pinger_recov +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3261b862 RQF_OST_SYNC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x33d7226e sptlrpc_conf_client_adapt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x35939a3d lustre_swab_fiemap +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3835ab4b RQF_LLOG_ORIGIN_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3858fb94 RMF_OBD_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x389549dc ptlrpc_request_free +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x38c01799 RQF_LDLM_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x38fce533 lustre_msg_set_versions +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x39001f0a ptlrpc_request_set_replen +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x397bc9ce ldlm_completion_ast_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x39f60a5f RMF_OST_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3a1e4bcb __lustre_unpack_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ab90f6e lustre_msg_bufcount +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ac00716 lustre_swab_hsm_user_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3b6b7cba dump_ioo +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3bedb0c7 RMF_LLOGD_CONN_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c63e62b RQF_MDS_REINT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c82dca7 ptlrpc_mark_interrupted +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c8b16ab lustre_swab_ost_lvb +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ca50f33 RQF_MDS_HSM_CT_REGISTER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3d7dc5f9 ldlm_pools_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3dc47695 lustre_msg_get_magic +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f034caf lustre_msg_get_status +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f35a11d RQF_FLD_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f4fa2df __ptlrpc_prep_bulk_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f752e78 RQF_MDS_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x41008cef RQF_LDLM_CANCEL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x415c01e9 ldlm_pool_del +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4222b7e9 ldlm_extent_shift_kms +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43168488 RQF_MDS_RELEASE_CLOSE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4351e916 lustre_swab_hsm_user_item +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x435abb1f lustre_pack_reply_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43705ee4 RQF_LOG_CANCEL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43d7efc8 lustre_msg_set_transno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x44036eda RQF_MDS_GET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x440c2a71 RMF_FIEMAP_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4481591d RQF_OST_SET_INFO_LAST_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x44c047fd ptlrpc_req_finished +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45056825 ptlrpc_req_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45b8428f ptlrpc_pinger_add_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45d05893 lustre_swab_lustre_capa +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45e30cea lustre_swab_ldlm_intent +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4620b1e6 ldlm_lock_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x46c0a5c1 ptlrpc_queue_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x46d93d06 ptlrpc_unregister_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x47f5e903 RMF_MDS_HSM_REQUEST +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x487895bf ldlm_pool_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4a5a2416 RMF_DLM_REQ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4b33d181 ptlrpc_request_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4df9970e ptlrpc_retain_replayable_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e1706e5 lustre_msg_buf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e696b96 ptlrpcd_queue_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4eb03a6f ptlrpcd_destroy_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4f766c3b lustre_swab_generic_32s +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x50443f6a ptlrpc_init_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x50dd74f8 RMF_STRING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x514b3851 lustre_swab_ldlm_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x51e311e9 lustre_swab_ldlm_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x52c62150 RMF_RCS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x53411557 RMF_DLM_REP +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x53a4a004 bulk_sec_desc_unpack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x53d9ed2a ldlm_namespace_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x543693be ptlrpc_connect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x546793e2 ptlrpc_set_add_new_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x555eb7fe RQF_MDS_HSM_STATE_SET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x559bafc2 req_capsule_client_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x560cb0ba ptlrpc_set_next_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5743e3c9 client_disconnect_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x58d3d382 ldlm_flock_completion_ast +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5930b014 ptlrpc_init_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x595ab175 lustre_swab_obd_quotactl +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x596582bf RMF_GETINFO_VALLEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5a8bfeb0 ptlrpc_reconnect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5b0c3601 ptlrpc_request_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5b6ba895 lustre_packed_msg_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5bcf2921 ptlrpc_unregister_service +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5c6a3a83 RQF_SEQ_QUERY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ca1b491 lustre_swab_close_data +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5caae213 ptlrpc_next_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e0b19b1 RMF_CLUUID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e2b7558 lustre_msghdr_get_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e6f435d RQF_OST_BRW_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e80f899 RQF_LLOG_ORIGIN_HANDLE_READ_HEADER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ec3284d RQF_MDS_HSM_CT_UNREGISTER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ef831ee lustre_msg_get_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5f96ccdd ptlrpc_connection_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5faa839f ldlm_lock_allow_match_locked +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5fc9a455 RMF_CLOSE_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6042bc15 RQF_MDS_REINT_RENAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x604e2505 RMF_SWAP_LAYOUTS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x60cd26ad RQF_MDS_REINT_CREATE_SYM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x61646e1b RQF_MDS_SWAP_LAYOUTS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x618ad203 RQF_OST_GET_INFO_LAST_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x624995bf __ptlrpc_free_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x62aaae3f RQF_MDS_HSM_REQUEST +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6315dd4c RMF_LLOGD_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6352a62d ldlm_get_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x63586169 ptlrpc_prep_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x653723dc RMF_LOGCOOKIES +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x680d6ac1 req_capsule_server_sized_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x685eeaba RMF_DLM_GL_DESC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x68f29d03 ptlrpc_register_service +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x68f49e5e ptlrpc_expired_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6912990a RQF_OST_QUOTACHECK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x696ba811 lustre_msg_get_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x69c9f04d RQF_MDS_REINT_LINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6a0eb08a ptlrpc_resend_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6a3785c9 RMF_EADATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6a3a858a req_capsule_server_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6aa0cbdd target_pack_pool_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6b6902d4 sptlrpc_cli_unwrap_bulk_write +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6d1b4241 ptlrpc_lprocfs_brw +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6d72828c sptlrpc_conf_log_update_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6efa82b0 RQF_MGS_TARGET_REG +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6f547331 ptlrpc_free_rq_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6fb0d8ee ptlrpcd_add_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6fb92092 sptlrpc_flavor2name_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6febdbbb lustre_free_reply_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x70295a1e sptlrpc_get_bulk_checksum +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x703538e4 lustre_swab_hsm_current_action +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x705a3055 ptlrpc_abort_inflight +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x70d40546 ptlrpc_replay_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x71e25a8e sptlrpc_lprocfs_cliobd_attach +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x725a892c RQF_MDS_REINT_OPEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x743ea971 ldlm_lock_allow_match +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x74840056 lustre_msg_set_status +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x75a2c40d ldlm_put_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x75a3d4d9 ptlrpc_recover_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x75e4ca61 RQF_OST_GET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x765431da sptlrpc_cli_wrap_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7700689a ptlrpc_prep_bulk_imp +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7a5b1cb3 ldlm_lock_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7a832f10 RMF_CONN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7b3d839d sptlrpc_register_policy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7b8febd2 ldlm_lock_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7bbf8001 RMF_MDT_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7c4c6107 RQF_LDLM_CONVERT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7d1ecd7f RQF_LDLM_INTENT_LAYOUT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7da8d79e ldlm_resource_unlink_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7dfb3c18 lustre_msg_clear_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7f5a1cc7 lustre_msg_set_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x80bac363 ldlm_lock_match +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x80ecb4e3 RMF_MDS_HSM_CURRENT_ACTION +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8113948e lustre_pack_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x817d7f1f lustre_msg_add_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x818388ca ldlm_lock_decref_and_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8196cb61 ptlrpc_check_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x826d3c4f RQF_LDLM_GL_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x837efb00 RMF_NAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x839d1b9f ptlrpc_pinger_sending_on_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85135801 RMF_DLM_LVB +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85175ceb ptlrpc_request_alloc_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85a9e0d8 RMF_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85eecf67 sptlrpc_get_hash_alg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x863db6eb RMF_HSM_USER_STATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x86d704a3 ptlrpc_obd_ping +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x876c2551 RMF_GETINFO_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x87bf7b3c sptlrpc_get_next_secid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8872f3d2 RMF_SETINFO_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x88fff52d RMF_CAPA2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x89e4beaa ptlrpc_buf_need_swab +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x89f9edf7 RQF_MDS_REINT_SETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8a1ea476 lustre_swab_hsm_state_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8a257736 RQF_MDS_HSM_STATE_GET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8aa44b50 ptlrpcd_alloc_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8ac440fa ptlrpc_uuid_to_connection +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8b854254 lustre_swab_mgs_config_res +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8cb71d4b RQF_MDS_REINT_CREATE_SLAVE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d1ab900 ldlm_lock_dump_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d418f4b ldlm_pool_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d431270 req_capsule_client_sized_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d77ea75 lustre_msg_set_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8da3fca7 lustre_msg_add_version +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8e9abe4d RMF_GENERIC_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8f0aceac RQF_MDS_HSM_ACTION +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8fec0451 lustre_msg_get_limit +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9113f109 ldlm_cli_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x919c4ce3 RMF_OBD_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x91cf58d3 RQF_MDS_PIN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9228392f lustre_swab_mdt_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9277ae5e RQF_MDS_REINT_CREATE_ACL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x937b1ee0 lustre_swab_mdt_ioepoch +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x94e08d3c ptlrpc_unpack_req_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x950d7b7d ptlrpc_prep_fcset +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9553c633 RQF_LDLM_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x955b01a2 ldlm_prep_elc_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9564a202 ldlm_lock_addref_try +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x95d08f0c lustre_swab_mgs_target_info +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9660ace0 RMF_FLD_MDFLD +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x967bfd52 RQF_OBD_PING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9798f2f1 RQF_MDS_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x980fcfdc ptlrpc_connection_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x98716032 ldlm_prep_enqueue_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9999cf7a dump_ost_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9a258886 RQF_MDS_GETSTATUS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9a6f2f6d lustre_msg_set_opc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9afd5362 ldlm_namespace_dump +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9b81948a ldlm_namespace_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9b88f6ce RMF_NIOBUF_REMOTE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9bb5198b RQF_MDS_CLOSE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9bd46843 ptlrpc_pinger_del_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9c3fb6f7 req_capsule_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9c57bf93 ptlrpc_request_committed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9d7ea314 sptlrpc_pack_user_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9ded84d7 ldlm_cli_cancel_unused_resource +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9deddecc ldlm_pool_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9fb088f1 lustre_swab_lov_mds_md +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa12fb033 ptlrpc_lprocfs_unregister_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa163f4c3 dump_rniobuf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa1df9971 do_set_info_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa2244636 RQF_MDS_GETATTR_NAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa3aa9aab ldlm_resource_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa3d2a6ee RMF_CAPA1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa47787ef RMF_PTLRPC_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa4a2d089 RQF_OST_PUNCH +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa579cf6a ldlm_cli_cancel_list +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa5a5c101 llog_client_ops +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa6842722 sptlrpc_gc_del_sec +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa6c436ca RQF_MDS_WRITEPAGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7a03774 ldlm_cli_cancel_list_local +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7e360b1 RMF_OBD_IOOBJ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7ec567d RMF_CONNECT_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa8508fe0 ldlm_resource_iterate +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9704f80 lustre_msg_get_last_committed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa99e4863 req_capsule_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9a0e7f2 client_import_find_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9c4658e lustre_swab_lov_user_md_v3 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9e40b00 ldlm_lock_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xabe62676 ptlrpc_send_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xacd6a7d7 lustre_swab_ost_last_id +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xad29541c req_capsule_client_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xad9f726f client_import_del_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xae9de7f4 ptlrpc_add_timeout_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf4e9658 RQF_MDS_SYNC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf50a0d6 RMF_HSM_STATE_SET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb0751fa4 RQF_LLOG_ORIGIN_HANDLE_DESTROY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb0cdb919 ptlrpc_add_rqs_to_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb126e8b2 ptlrpc_buf_set_swabbed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb1b43d8a dump_rcs +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb291473d lustre_msg_early_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb303e83c ptlrpc_deactivate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb3c8d131 ldlm_resource_dump +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb413086e ptlrpc_disconnect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb4a7ecf3 lustre_msg_add_op_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb512ebc2 sptlrpc_parse_flavor +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb61cb95a RQF_MDS_GETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb68476df interval_erase +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb6aafd03 RQF_MDS_DONE_WRITING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb7b38189 RMF_MDT_MD +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb7fa3cc8 RMF_LLOG_LOG_HDR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb903634e RQF_OST_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb90eccdb client_obd_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb9b631cf lustre_swab_mgs_config_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbaa76097 lustre_msg_string +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbc1370dc lustre_shrink_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbd0a247d ptlrpc_wake_delayed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbd83bc44 RQF_OBD_SET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbef6e908 req_capsule_set_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbef769cc RQF_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbf98b86f RQF_MDS_QUOTACHECK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbffd4313 RQF_OST_BRW_WRITE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc06c4670 lustre_msg_get_versions +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc0867da7 RMF_REC_REINT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc0cdf55e RMF_MGS_SEND_PARAM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc1b9a80a lustre_pack_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc1c3374b ptlrpc_set_import_active +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc2b1af57 RQF_MGS_SET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc2be922a RMF_SYMTGT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc2c8dee9 sec2target_str +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc388e454 ldlm_lock2handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc4348c44 req_capsule_server_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc44bc02e sptlrpc_import_flush_my_ctx +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc53e0592 sptlrpc_cli_enlarge_reqbuf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc559a634 RMF_LAYOUT_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc5c9e1cf ldlm_completion_ast +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc60a60e1 RQF_OST_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc694be4b RQF_LLOG_ORIGIN_HANDLE_PREV_BLOCK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc763fabc sptlrpc_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc79b9c67 ldlm_pools_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc7a162ab ptlrpc_set_add_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc7ca8257 RQF_MDS_REINT_SETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc7e47564 ptlrpc_interrupted_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc8f586a9 ptlrpc_connection_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc96547d6 ldlm_revalidate_lock_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xca141215 req_capsule_has_field +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xca5a81ec ptlrpc_pinger_ir_down +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcb2cc0cf lustre_swab_lquota_lvb +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcc368e16 lustre_pack_reply_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xce86066d lustre_msg_set_slv +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xce9abcef unlock_res_and_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcec513c9 RQF_MDS_UNPIN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcf9963db lustre_msg_get_op_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcf9aab6a RQF_MDS_DISCONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2983334 lustre_swab_swap_layouts +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2e0d4eb lustre_msg_get_opc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd3069bb3 sptlrpc_cli_ctx_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd3a5b1cc ptlrpc_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd3dae408 ldlm_it2str +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd4f184a5 ptlrpc_resend +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd56b2c6a ptlrpc_schedule_difficult_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd69e0a27 RQF_MDS_IS_SUBDIR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd6a4cbcb ldlm_cli_update_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd6c3ebfb RMF_FIEMAP_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd7910326 lustre_swab_obd_statfs +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd8b91b3e lustre_swab_lov_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd8f06300 RQF_MDS_HSM_PROGRESS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd9561861 RQF_LDLM_INTENT_OPEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb06ab8b ptlrpc_lprocfs_register_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb1fb0a2 RQF_MDS_REINT_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb3e3cf3 client_import_add_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb74057f lustre_swab_hsm_progress_kernel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb9d5a6a lustre_swab_niobuf_remote +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdc0bc178 llog_initiator_connect +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdccd51f9 ldlm_cli_enqueue +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd0ffb04 sptlrpc_flavor2name +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd30d7bf RMF_ACL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xddc40a85 lustre_msg_get_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xde12d36b RMF_MDS_HSM_ARCHIVE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdee87192 sptlrpc_conf_log_update_begin +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdf701ae7 lustre_swab_fid2path +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdfaab99d ptlrpc_unpack_rep_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdfb96cdc sptlrpc_import_flush_all_ctx +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe0ab9d1c lprocfs_wr_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe0cc694c RQF_LLOG_ORIGIN_HANDLE_NEXT_BLOCK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe40e0a50 lustre_msg_get_transno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe4ee11a6 req_capsule_extend +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe57bd972 sptlrpc_current_user_desc_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe5e8169b lustre_errno_ntoh +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe643998e RQF_OST_SETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe6f0dc96 RQF_OST_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe7062b5f RMF_U32 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe7512278 ptlrpcd_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe7c609f2 ptlrpc_request_alloc_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe88b2bd8 lock_res_and_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe9782b95 ptlrpc_start_threads +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xeaa77d28 ldlm_replay_locks +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xebb64e68 req_layout_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xec928f3e ptlrpc_request_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xec939a00 RQF_MDS_REINT_UNLINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xecd9f265 client_connect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xed1c10d6 ptlrpc_connection_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xed3a63db ptlrpc_activate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xedcb740d sptlrpc_name2flavor_base +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xee308006 ldlm_lock_change_resource +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xef1aeca9 RMF_FLD_OPC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xef971f27 lprocfs_wr_ping +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xefc49f02 _ldlm_lock_debug +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf078801a sptlrpc_cli_unwrap_bulk_read +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf1300275 _sptlrpc_enlarge_msg_inplace +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf19846a6 __ldlm_handle2lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf1b20265 sptlrpc_enc_pool_put_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf277c125 RQF_OST_GET_INFO_FIEMAP +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf2b34300 sptlrpc_sec_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf3d44370 RQF_OST_DESTROY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf3dbe418 sptlrpc_target_export_check +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf43540b9 lustre_swab_mgs_nidtbl_entry +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf45085e1 sptlrpc_conf_log_stop +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf55c033b RMF_MGS_CONFIG_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf596e9ae sptlrpc_conf_log_start +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf59a09ef client_destroy_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf607fc23 sptlrpc_flavor2name_base +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf617ab8a lustre_msg_get_conn_cnt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf697b756 ldlm_dump_all_namespaces +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf7408f84 lustre_swab_hsm_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf7ba40c0 RMF_MDS_HSM_PROGRESS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf870fed9 RQF_LDLM_GL_DESC_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf8a8bfcf ptlrpc_send_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf8b1a154 ldlm_cli_cancel_unused +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf9051bd6 RQF_QC_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf94bad9b client_obd_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf973aa93 lustre_swab_lov_user_md_v1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf9f72dfc RMF_TGTUUID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfa51688d interval_insert +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfae31761 req_capsule_shrink +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfb91d625 ptlrpc_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfc2fa83f ptlrpc_del_timeout_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfc8eeee2 ptlrpc_set_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfcbc4424 ldlm_lock2desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfd148bf8 RMF_LDLM_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xff387025 sptlrpc_import_sec_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xff3e28d8 _debug_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xffc807e8 sptlrpc_unpack_user_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xffe29c3f RQF_LDLM_ENQUEUE +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x85a9f009 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x48ec686f most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x019974a6 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x06dd894b rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x078a1965 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x07b699d4 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1c7fc162 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2494ef06 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x259c08b8 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x25ac226d Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2ecdb7f3 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x312cef18 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x31403c86 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x315e4464 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x33650c5a rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x377b1a0d rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x45e0e217 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x563e3755 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x56e30159 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5d01bbfc rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5d670d4d rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x64232919 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6e471f66 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x719b45c9 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x72e5d876 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x762e6289 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x81fbcde7 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x82d9be37 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x89fe19e1 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8f3005b2 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9143320c rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9607cfe1 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x97d9b1c6 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9b49d5cf rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa14a2176 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa19a7a2c rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb93b2dfc rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbc5210a5 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbf6d8951 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc4d4f618 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc5c0b017 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcdbd4be7 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd37ac915 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd41b03e1 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd9092baa rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xef928b7a rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf0e1cab9 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf4aa8937 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfc2c3a11 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfc84f39d alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfd00485e rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfeaeca7b rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0102f1b8 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x080bef8a ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x09062337 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x19b06818 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1ae4eb80 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x214e32e9 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x22f3036c ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x265bcd1d ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3940e37a ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3fb7f939 IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x496f02c2 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4cc126c7 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4fc0c5b7 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x52f55c81 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x56fa51c2 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x597b1a7c ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5ad66e24 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x627768bd ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6f359c70 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x797266de ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x79c83e72 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7a21b7ae ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7a5d9fb6 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x83c68d71 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x869f52ce ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8f159d6c ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8ff9aa57 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9358843c DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x93740556 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x93d8ca0f ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x966ec0e2 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x97a7a322 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x98fccaef ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9a3281f4 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9c63a124 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa664f0f8 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa75bf7e1 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa7a8c522 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa814701c ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xabdae2da ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbedf2d3a ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbef37cbc ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc84b3d6c ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc8783f16 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcaa15d7e ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcbd50ff7 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf2718c8 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd1261cbe ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdb3c6066 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdb7a9288 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xddc97762 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf55eb90e ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfec1f918 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x08ea2cc2 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0ec2fc77 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0f1b2ef4 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x179f27c8 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1c49e3c0 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2996a289 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2dab8e4f iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2e8e23c8 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x33565ff8 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x390f53ae iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3a26a4e0 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x435ecf35 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x44a5baf8 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x49602e77 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x49b794c2 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4eb3af11 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x545d0059 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x55f97666 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65eb6cef iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x67b6503e iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e1b78b4 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x716fc935 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x76ee3833 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x81e14b79 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x82479be9 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x91a25b0a iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa5581798 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb0872524 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb0c59fbe iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xba7e94fa iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbb56a260 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc65b5d10 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd0286e29 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd31eea03 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd8b8a828 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdb5b83d4 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe02c000a iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe46cfa68 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf18e8bf7 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf1d2e549 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf5089036 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf5b1c6e1 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xff80867d iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x03a0f7c1 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x0481734d spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x05d55881 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x067eb06c transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x07aa2ab8 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x085cbf26 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x11b65bec transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x24bc9f4f target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x285942cc spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x293e3e07 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2fe35376 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x33a67a9e core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x33c51687 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x388f4c09 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x3e30f24c sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x42f935c3 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x49262212 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x4aacbb95 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x4b2f96fe target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x4f777340 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x513b76f1 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x5662d6c1 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5f48242d target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x61b6b247 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x61f1a1e9 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x6358bb4c core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x67046aeb target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x6a8c43a8 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6b17eb80 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x6ecc0993 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x719acd47 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x73d0f8e6 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7522ed9c core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x75c026c1 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x779d5683 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x7b1deb12 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x7b20aa71 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x7f4e1b55 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x8783eeb3 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x8891eaad transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x89c31b90 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x8d4d97c8 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x8dc35f5c target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x92489b8f target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x99c6cccf target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x9d31f909 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9e099a27 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xa1237f7b transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xa58cbc77 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xa919bbbf sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xa98bca45 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xae042b07 target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0xae404dce transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xaefaef08 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xb7ead214 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xba0dd375 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xc6a91b9f target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0xcb6ad4e2 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xcdcc1665 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xcf67696e target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xd3e2c4b1 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xd40fae3e core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xdedaf6fb target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xea85c6ff core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xebb9541f transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xef2bba00 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf12364c1 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf158a62d target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xf18b52e1 core_tpg_deregister +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x89c97606 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xf1eb385e usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x9f9ed91a sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0c227905 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x52fd7afa usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x56ce0b7d usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5fe72c5a usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6a518011 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6a89388c usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x85701e26 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb3fc3398 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb44ba011 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbe3c84ca usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xefc236a4 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf3f0126d usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xe4e404bd usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xf9127f57 usb_serial_resume +EXPORT_SYMBOL drivers/vhost/vhost 0xcf108322 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0xd7ca5ec1 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3c71c418 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x5fedea44 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/video/backlight/lcd 0x1faabb9c lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x5d2f1684 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xcd0fc63a devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xf3bca6ef devm_lcd_device_register +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0db5847a svga_tilecopy +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 0x1c0ff660 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x30749f00 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3db03125 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb073bf2a svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xcaba78e9 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xfc16c68e svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xb41d5f32 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x526755d0 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xbe03dbef sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x3889d275 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 0x83bb9769 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x4894787a matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x9fc8d463 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xc404d76a g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x159b387c matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x2e8edd81 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x958934c2 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xb3cc7e86 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x892607ac matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x19122fe6 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x20939840 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x286fd7ae matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x3b2d1544 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x4e9b1f8f matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x77d0d6d6 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xec685e19 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x57c8d7ba matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7e1a5575 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xabbc58ec matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb7086b5a matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xbbfcc102 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xf32b76f7 mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x5bbbb6ca w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x62efa279 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x8182c49e w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xa3fd5a0e w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x451fe201 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x80282242 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x01ec9821 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x352bd32d w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x357513d0 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x677e2f11 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xbd7b895a w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xfcc014e8 w1_remove_master_device +EXPORT_SYMBOL fs/configfs/configfs 0x091b8666 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x172155fa configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x1784e2ef configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x21cfd7ea configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x317d2055 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x434ef5c1 configfs_remove_default_groups +EXPORT_SYMBOL fs/configfs/configfs 0x4569bce7 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x4702d39b config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x7c671d2b configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x83f2b6db config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0x89724e3e config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x923ee7fb configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x96b4aedc config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x9a350977 configfs_depend_item_unlocked +EXPORT_SYMBOL fs/configfs/configfs 0xb321f8d0 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0xe9ae88fa configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0xf6e234b8 config_item_set_name +EXPORT_SYMBOL fs/exofs/libore 0x0ee147dc extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0x184127d3 ore_read +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x55062470 ore_create +EXPORT_SYMBOL fs/exofs/libore 0x7e786cd8 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x86f17c20 ore_write +EXPORT_SYMBOL fs/exofs/libore 0x99d4ec7a ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0x9bd54daa ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xab2f4fbe ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0xab45dcdb ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0xbc9c36d8 ore_get_io_state +EXPORT_SYMBOL fs/fscache/fscache 0x01573ab3 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x14b85853 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x2047d19f __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x242f9a98 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x276a7299 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x296681a3 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x2a7d3dc1 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x2fccf343 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x335947c3 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x389d2b7a fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x431fad38 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x4a0c2af3 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x4d1caef9 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x50197e62 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x55071d8f __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x58536a40 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x63b9e5ce __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6ae610fb fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x6d951de9 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x777c517c __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x824a2b11 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x841510b7 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x9324dda5 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x9912c354 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x9db737f1 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xa77390ab fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xaad5bac8 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xb49b2768 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0xb8cc3b16 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xb8fed71e __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xbd6e808c fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xbfeb591c __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xc86a2dc6 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xd68e8017 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xdb2dd28f __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xdd5ac2e3 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xdf48101f __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xe973c931 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xf12a3659 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xf915a9be fscache_mark_page_cached +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x13f10196 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x5854b713 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x962fc6a4 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x9f8a1bb3 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xbecf4a65 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xf29559ac qtree_get_next_id +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-itu-t 0x6d356209 crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x56329ecc crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd09b2cba crc8 +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 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 0x36a7dbe0 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 0x7257beee lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x865c50db lc_seq_dump_details +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 0x0c222eb5 lz4_compress +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x682a23e0 lz4hc_compress +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul +EXPORT_SYMBOL net/6lowpan/6lowpan 0x02d43375 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x211a78df lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xb01301a4 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xc131432a lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xf2252eee lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xf75c60cf lowpan_nhc_add +EXPORT_SYMBOL net/802/p8022 0x0e213086 register_8022_client +EXPORT_SYMBOL net/802/p8022 0xdfb35658 unregister_8022_client +EXPORT_SYMBOL net/802/p8023 0x0bca8f86 destroy_8023_client +EXPORT_SYMBOL net/802/p8023 0xab723154 make_8023_client +EXPORT_SYMBOL net/802/psnap 0x73835192 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0x8c891c14 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x07400bdc p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x08b9c508 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x08e1aa97 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x0a24417c p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x0ea327d5 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x116cbd1a p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x1b17e092 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x1d237028 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x259a2edb p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x29db6aa2 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x37deeeca p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3abec89f p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x3aeaa2d6 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x408ca2ab p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x416be942 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x451f2036 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x4bc24861 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x4d2e71e1 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x4e9e7ef2 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x62d5a947 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x6b2f6ff5 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x72137617 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x737ff1a6 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x7b17ce87 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x7e4eceda p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x80215afc v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x8089f75c p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x89a300c7 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x90bdea4f p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x916993a0 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xb3729ba8 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xb9410cff p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xba2c0084 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0xbd40bb99 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc6bcaf8a v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xd15154de v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xdc671395 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xdca42698 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe27a2e80 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xf8e385f4 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xfb3bab09 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/9p/9pnet 0xffc2ef07 p9_is_proto_dotu +EXPORT_SYMBOL net/appletalk/appletalk 0x212391bc atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x91bedff3 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x9df5efe5 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xa090f519 aarp_send_ddp +EXPORT_SYMBOL net/atm/atm 0x251fc710 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x33389e74 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x66ec6956 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x697c3cde atm_charge +EXPORT_SYMBOL net/atm/atm 0x7ea8a717 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x86fb4d3b vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x8e16f06d vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x9c86325b atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa1302267 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xb86cc8fc register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xbe61f0dd atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xc73d65a5 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xe94c4425 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xfac5ae25 vcc_sklist_lock +EXPORT_SYMBOL net/ax25/ax25 0x0f3603b0 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x1e2dc129 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x46d4965f ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x50632e64 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x536dd397 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x61bebaa7 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xbd5d768b ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd0abba97 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xe9aaf0a4 ax25_display_timer +EXPORT_SYMBOL net/bluetooth/bluetooth 0x07cf503c hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0b2de196 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x18210ee0 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x26102a45 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x273291f4 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2823443b l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x29a4eb7e __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2ba66112 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x30f9067a hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3533d7db hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x363fd964 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3d339d8e bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3f9ae866 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x418b3ce9 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47f6e0f3 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6184b026 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x794f245d bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7cc3bf6a l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7e5d3d00 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x878e9774 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8d57e78c bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8eb4e7b3 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8f5fb0a0 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x93cdbbe6 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x96455bc3 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9d676496 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa08252a3 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa3fae343 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaa6b928f hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xab6931a7 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xac8cc016 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb81d469d hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbec1c8d4 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xca033c06 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xccbdd574 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xce1a92c1 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd465e897 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdf8ac30b bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe390e2ac l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe98ccc01 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xea89eeb2 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf111a504 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xff07e1bd bt_sock_recvmsg +EXPORT_SYMBOL net/bridge/bridge 0x36247084 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x071ff02f ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xcafde687 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xddf26a20 ebt_register_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 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x4ffe5849 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x51f2090d caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x5fc0d0cf get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x7c6d04d0 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x95c9ec0b cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/can/can 0x42300362 can_send +EXPORT_SYMBOL net/can/can 0x552a6338 can_proto_register +EXPORT_SYMBOL net/can/can 0x8dbcd189 can_proto_unregister +EXPORT_SYMBOL net/can/can 0x8fe1651c can_rx_register +EXPORT_SYMBOL net/can/can 0xd0e6e7fd can_rx_unregister +EXPORT_SYMBOL net/can/can 0xdadd4124 can_ioctl +EXPORT_SYMBOL net/ceph/libceph 0x015e4f4a ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x02245aff osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x053fd82f ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x07645ac1 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x08242923 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0fb2077d ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x179c676c ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x17f8bf64 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x19e74c84 ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0x1a7d9539 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x1b8926e8 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x1c7adea7 ceph_file_layout_from_legacy +EXPORT_SYMBOL net/ceph/libceph 0x1fee2282 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x22c02f8d ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2afb14f1 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x2db717f3 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x2e3d1d3e ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x313c550e ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x3767ecf6 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3d8c797b ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x419cb09b ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x42e385b1 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x4417d17a ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x48a48ff5 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x4c5c0a65 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x50db1022 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x510fcdf0 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x53e84953 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x5682a9da ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x598d8e8a ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x5bb85e5b ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x5ee3b269 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x614b6170 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x63e53f14 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x64235b7b ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x68d78834 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x6a374d30 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6b48867b ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x7ace0b2a ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x7b684c34 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x7c42ced9 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x82acce1b osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x82c1125d ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x85d03a9e ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0x884b0e2f ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x89ed4f10 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x8aec0daf osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x93d6825e ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x93f1de9e ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x942bd40b ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x960bebb6 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x985c608b ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x987955da ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9bd3207e osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x9e6d8f52 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0x9fe6f948 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0xa0cd6744 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xa3bdeff5 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0xa482f356 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xa55ac353 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xa63e0051 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xa691e2bb ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xae29a496 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb4a000e7 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb6421bc5 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xb670c021 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xba87d2de osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xbcebd60a ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xbdb57df1 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xbf15e03c ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0xc130bf7c ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xc141e29f osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xc206b20e osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xc28d2f76 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc8c49388 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcf16e9cd osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xd190f5f1 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xda02e170 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xdd8e7550 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xdf94154f ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xe29cf920 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xe6f1ab98 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xe6ff1aa2 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xee1ac17c ceph_file_layout_to_legacy +EXPORT_SYMBOL net/ceph/libceph 0xf13af00c ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xf20061e2 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xf2154b0f ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xf2f05d2c ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xf439e204 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xf81b6dcc ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xf9e45f60 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xfd738f6b osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xfe1ea84a ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xffe19161 ceph_msg_data_add_bio +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x3c9ac4c2 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x9de982d1 dccp_req_err +EXPORT_SYMBOL net/ieee802154/ieee802154 0x01a4389b wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0a608483 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x972c9ec9 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xbe134d43 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xbedac06b wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xfbb5d46d wpan_phy_find +EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x409e0330 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x64169d90 fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x9c9da1a4 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xa0a0a757 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x7dd4199a gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x0b8c72fa ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x43bc6572 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x53b45208 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe3bad48b ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7dd61e23 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x93404917 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xfe72df54 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x5ace769c ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xdc220775 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xfc8ae776 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x221cc183 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xcb40d20c xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x40166bcd udp_sock_create4 +EXPORT_SYMBOL net/ipv6/fou6 0x8b5b4b18 gue6_build_header +EXPORT_SYMBOL net/ipv6/fou6 0xd6889518 fou6_build_header +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x02ce6296 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x142660b3 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2437352c ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x57660896 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x69318657 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x84a48333 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc040177a ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc8570250 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd1928de4 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x84d4e06f ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x95dbb24c ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xad5a0ff9 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/tunnel6 0xa0b443b3 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xb9c98087 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x118739ac xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x4c8304aa xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x0391ebf6 ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x04ff095b ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x4e901673 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x5f155c17 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x6d826f7f ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb49a6cd9 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb8937e42 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xd0bee05a ircomm_close +EXPORT_SYMBOL net/irda/irda 0x01590a8b irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x041570a9 irias_insert_object +EXPORT_SYMBOL net/irda/irda 0x04eabfc3 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07015ee1 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x16b0daa5 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x197d6ee3 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x1a9f11b6 hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x28ee99ad irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x2a17732a hashbin_insert +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x44c90b3c async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x4b9f37c9 irttp_dup +EXPORT_SYMBOL net/irda/irda 0x50362158 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x52f2ea7d irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x56b99f6a hashbin_new +EXPORT_SYMBOL net/irda/irda 0x57414dd1 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x5fea5c88 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x6aa9bfc6 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6b7f50b3 hashbin_find +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x7428af05 irlap_close +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x82b2c89a irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x83d57649 irlap_open +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x945f3de3 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x9516f690 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x975927b4 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xaad2d90a irias_find_object +EXPORT_SYMBOL net/irda/irda 0xaec635e4 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xb51e4928 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xd22e8861 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0xd291e7d6 iriap_close +EXPORT_SYMBOL net/irda/irda 0xd7702e20 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xdd988ce6 hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe0648be2 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0xe58ba397 hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0xe7aa593d hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0xe9ff48e7 iriap_open +EXPORT_SYMBOL net/irda/irda 0xedc2711b irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xeeeba448 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0xf046c196 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0xf0577125 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0xf0f25ffe hashbin_remove +EXPORT_SYMBOL net/irda/irda 0xf656cfaa irttp_flow_request +EXPORT_SYMBOL net/kcm/kcm 0x67a8a3e9 kcm_proc_unregister +EXPORT_SYMBOL net/kcm/kcm 0x8816dd9f kcm_proc_register +EXPORT_SYMBOL net/l2tp/l2tp_core 0xbfd15416 l2tp_recv_common +EXPORT_SYMBOL net/lapb/lapb 0x06a4a211 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x3c1407fe lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x5245cb14 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x6fb4ba14 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x92324623 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xa6b6235c lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xd1d4792e lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xe02f9959 lapb_setparms +EXPORT_SYMBOL net/llc/llc 0x0d31d8df llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x190ff318 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x2a7524ef llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x2b9c9182 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x4da69076 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x5051cc42 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0xbf6c8cc0 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/mac80211/mac80211 0x013dbe37 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x026fb925 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x0b4a8b39 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x0d4a7586 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x0de57a42 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x1036e539 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x1357a8e7 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x14d88b40 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x1593749d ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x1659070e ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x18ae7ce3 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x1c1c7622 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x23137def ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x298bcfef ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x2ae590fc ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x2b3dd5b5 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x348cf68b ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x34a21288 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x35e63082 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x366491af ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x377501c0 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x3fb6c4e6 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x40f577cf ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x48ee86ae ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x4a3f1c39 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x594e7779 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x69e231b4 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x6d9683e4 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x6dfdf85a ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x75e8ba5e ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x78b7db28 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x798a71a6 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x79c6b927 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x7b0cf43e ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x83708cf3 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x84abbe7c ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x857c4b7c ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x87f4197b ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x8a15742e ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x8b2e71f1 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x8dd96ba5 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x8f15c434 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x92a827e8 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x94773738 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x95a49e45 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x9b603553 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x9dc7f417 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x9ddc4c9e __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xa0b20037 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xa455fc0a ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xa58a5e59 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xb22cebdf ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xb858e7e4 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xba932a6e ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xbb29b3fd ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xbba0d55c ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xc2088e9d ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xc2e42acd ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xc4e7c6c4 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0xc53f384e ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xc96c27cf ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xcea7a5e0 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xcf0938e8 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xd0999322 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd1335ba6 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xd3b944a6 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd88e3a0d ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0xdade09c5 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xdaeb750b __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xdb018c71 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xe005710e ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xe7289345 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xe82aae3d ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xe992f726 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xe9c5e865 ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xea92ffde ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xef9cd44d __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xf0b0bac2 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0xf279bdec rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0xf6cd1e05 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xf80853de ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xf98ce1e0 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xf9a0d8b0 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xfe4f8c25 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac802154/mac802154 0x35a4ab49 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x3f874b2d ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x57158568 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x8ea9c635 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x911ba852 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xc2dbf8cf ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xd356937c ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xe35c825e ieee802154_xmit_complete +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x01d334ef register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0eaa0bc1 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x44720c70 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x46640831 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x556341eb ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7f62991b ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9476c8a0 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa3e7d4f9 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xaf2ebdc2 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd938079e ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe7591901 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe828ee78 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xef2be056 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf167d3fe ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfded5911 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x0a7ef0cb __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x4680c296 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x98ebf4e5 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x0dd3004b nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x0e85ffe7 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x2fd5a83a nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0x6bce26be nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x85d65d5c nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0xc6265068 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/x_tables 0x07690775 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x0cffdd7f xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x1c030b98 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x42e8d5a8 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x58a70146 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x5c871896 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x6212bfa5 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x633ed1ef xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xb4aae172 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xbcb24b6c xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x1c77491f nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x246ebc51 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x28746011 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x32961441 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x38fff42f nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x4a33c644 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x5acd4343 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x64e4f44f nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x6eecc71f nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x78b28647 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x7feae4bd nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x8040344c nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x88440f7f nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x9737ece5 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xab5e0ef2 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xbaf2001e nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xdb68d0a4 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xf00b3a9d nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xf301cd22 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xf6c1204b nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xfa4d2d4e nfc_llc_start +EXPORT_SYMBOL net/nfc/nci/nci 0x0001ecf2 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x01e8dfca nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x06d5a6e9 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x0f403b66 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x1955a0ae nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x27ad6632 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x28af3e43 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x2c53f587 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x31d5ab85 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x3b62f321 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x49e9d417 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x51abbac4 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x5edc08f9 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x60385cbd nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x7924f282 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x820fdc4b nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x8e867cb8 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x94f3a8f1 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x98d8f4ee nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x9c4a9a64 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xa0e53c83 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xa4ae06ac nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xccbac289 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xcda2eb15 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xdf4a72da nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xe6a6125c nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xf17cfd27 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xf240298b nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xf5586eee nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nfc 0x07cb09fc nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x08c6b656 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x15a6fdcf nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x212df785 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x24086562 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x35e8d3f8 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x39b4c979 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x47b7f025 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x495ebe31 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x4d261f6d nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x4eb20cb9 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x5b0870a9 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x6f09eaa6 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x8667aca0 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x882ac7f9 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x90404428 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x9d22a4fd nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x9d3d3c2a nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xbdaf4be5 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xc12f3767 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xc196e75b nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xd52c5c59 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xdaebb13d nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xdff2d61b nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xfa5b7c86 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc_digital 0x2b713b9b nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x367fdf74 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xc0ae6b4a nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xeb1b5e31 nfc_digital_unregister_device +EXPORT_SYMBOL net/phonet/phonet 0x4f94d0ad pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x54a5b833 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x61a2c083 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x932b764a phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xe0d8208f pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xe30c8913 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xe3e16767 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xf7c8f3dd pn_sock_unhash +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1885228c rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3b337862 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3b90bcf5 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x40476347 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x49bd5ac7 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4b25bddf rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x73b2ad2c rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x74c8bd04 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x876e73b6 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9e2dee3e rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb7176733 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xed70a861 rxrpc_kernel_data_consumed +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf0733b1a rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf71ae4d3 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xfd0681e5 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/sctp/sctp 0x29d1ebc4 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x2b5d16ae gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x54fd84d0 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xec13faed gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x27145ec1 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x4cf24b0a xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xacb540f6 svc_pool_stats_open +EXPORT_SYMBOL net/wimax/wimax 0x78ab5cfd wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0xfddfc97f wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x04e21d77 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x05ff6cea wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x09634b92 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0a853064 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x0c855b25 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x0f51dc41 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x0f8a63d0 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x1240f3ef cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x13fbb970 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x14bf611d regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x16470b4c wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1b5dd4d2 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x1ba4b2c8 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x1c00f8ea ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x1d660226 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x2065e3d9 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x20f86fe2 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x26581340 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x279dc7bc cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x297a67f4 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x2d679dac cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x2d9e22db cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x302b7164 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x320b41f8 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x3331f87f cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x333e3501 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x35d03f5e cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x38a2aa4d cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x3d7dba99 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3e7dbd42 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x3ef75579 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x3f8b821e cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x4448b47d cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4c718228 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x4cd68d59 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x4ec54c02 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x55efd38a cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x575a1bad cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5aa16bbb cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x5e488dcc cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x5e793608 cfg80211_connect_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x6398bf63 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x63e93288 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x677c5fcf cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6a2dc0ba ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x6b13000a cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x6c040132 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x706e21a5 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x70e489a3 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x7a50847a cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7a8d1280 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x7ed2bced __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x847233b0 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x899379ef ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x8c4ed8ab cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x8ec33427 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x94c5d0d3 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x9552b56e cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x988553c6 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x98f9a95a cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x9cb26834 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xa303f12e wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xa38664be cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xa4b03786 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0xa8085fd3 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xa8aeefa4 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xa9c8602a ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xad7cf328 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xafc9b420 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xb38ed902 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xb645b0c8 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xbcca73d9 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xbeacb881 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xbebd9407 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc6647fb8 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xc9442f5d ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0xcacc8f18 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xcacd44b3 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xd0f2bc0f cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xdaddc1ec cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdc3469b8 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/cfg80211 0xddd50d68 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xe729399f cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xe8663ae6 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0xe9f91c6b ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xeb240bba cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xef331035 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xefe98109 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xf03827c5 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xff433b7c cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xffc32400 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xffd07a39 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/lib80211 0x04e4871b lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x704412c9 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x93416882 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xa18af865 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xabd505b7 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xf8ae29cb lib80211_register_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0xc3b60ff0 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x3659307c 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 0x2028860d snd_seq_kernel_client_enqueue_blocking +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 0x719ae636 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 0x9f128405 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xdeffc73c 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-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xbad2da65 snd_seq_device_new +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 0xf0a1fdb3 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x045df6a4 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x19644b06 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x237c480c snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x46d509d4 snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x48501cc2 snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x57427cce snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x6e4581b3 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xfdab5ab4 snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x3b9ef9ef snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x0287a4fd snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x0adf20e8 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x0cf2ada5 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x1146483c snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x1454b6a6 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x164d7623 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x19ba1fe0 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x1ea20780 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x216950a0 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x2438c3da snd_component_add +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x28ab968f snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x2bd7493a snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3f183626 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x3feb5ac2 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x406e2a0b snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x431c2434 snd_device_register +EXPORT_SYMBOL sound/core/snd 0x4770aab7 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x47f13642 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x4893abd6 snd_cards +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x5172dbb1 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x5c8d051d snd_device_new +EXPORT_SYMBOL sound/core/snd 0x65e2ba5f snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x6e2b7eb1 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x6f12efd5 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x707c6315 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x724b0ca1 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x7356ff18 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x780d23be snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x7c2bd633 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x7ffd5992 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x87bd0845 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8e2c88fc snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x92ac21ae snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x9b607c08 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x9bddebc0 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x9e09c69a snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xa5cdfeeb snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xae2423ab snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb6664353 snd_info_register +EXPORT_SYMBOL sound/core/snd 0xb94f9b80 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xc27458e4 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xd0750368 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xd51202d0 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0xd5225340 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0xddcf91c8 release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xe0809c9c snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xe2c1f160 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xf1dced8e snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xfe33d56e snd_card_new +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-hwdep 0xa28e6bce 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 0x06b310c9 snd_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x0fb3ee74 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x245e4ffa snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x2ceadbd6 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x314fa5f6 snd_pcm_hw_constraint_ranges +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 0x3b1181fb _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x4034d9cf snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0x44197a02 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x48b09107 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x4c61d3df snd_pcm_hw_constraint_list +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 0x53be52e0 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x54418b57 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x58271ab4 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x5898dcba snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5d8a8c4d snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x5e630a20 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x61697608 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x6323b549 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x66626f70 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x75f33fea snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x8a834536 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x8bad624e snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x8e0cc4da snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x8f8cbbc7 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x90fcad25 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x92b1c426 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x986c0921 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x994c20c4 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x9e465446 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xa166e8bd snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xa5bf1b3e snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa6ae3260 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xa828e9af snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0xaa954e9e snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xb42db1dc snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xb5f82488 snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xc27e8826 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xc5530a07 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xc836e530 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0xc96ae6f2 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xceed8a07 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0xcfbaa9ab snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL sound/core/snd-pcm 0xd617909c snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xdb6b42e2 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xe55f9b22 snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xec38e1c5 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xef4dc858 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xf44353ef snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xf6307ddf snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xf97c3235 snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x109b3c5e snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2fa4b968 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x318b4081 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x33e01b11 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3c057399 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3df8d21e snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3e49e963 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5d87c571 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6046dace __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x656ddd87 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x67eb02c8 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6e26eb3d snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x90c57c77 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb461f46a snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb4b9d9b9 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc2126885 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd32d22af __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf0e81a4f snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfc5eb394 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-timer 0x0ba85b72 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x0cdb00c0 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x2455ea3b snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x29a6b2df snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x2edee536 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x3be67408 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x6dd82e6a snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x7b0d9359 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xa0bf34bc snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xaab57eec snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xd45ddc4c snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xdd34bd8c snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xf1916ce0 snd_timer_global_register +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xa1326a08 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 0x09d61b67 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x23e057b3 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x49e6b129 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x60976a48 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x61789d04 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x95482279 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xae64426d snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbf0e2fb9 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf55d7e6b 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 0x2bdc5f83 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2e04cf27 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2fbb73f3 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6401f5e9 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x72a0fe85 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xcf6e3bba snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd1a78b40 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xec798508 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 0xf623cb0b snd_vx_check_reg_bit +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0fad0f23 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1da03cb5 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x285d7d1a amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x359a91b4 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x363b159e fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x40e1e6e5 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4673cf3b cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x47a22f8c fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4c025b80 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x50a1ba59 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x51259fbe amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5161d343 snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x54cb4446 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5b7372ef fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5ba99f47 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5f692239 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7143b39d fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8f64e21b amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9227e678 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x966a017b cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x984519a1 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9d417a9e iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa5e014dd avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xacdd4ad0 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb5415289 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc39b72de snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd1fd80f2 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xda7ee968 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe4639fa4 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe544b097 amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe93ca00e snd_fw_schedule_registration +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xeb4de8bb cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xff04fcd2 fcp_bus_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x19eebab5 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xadbf1c9e snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0d725e11 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x150283b0 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2f27ae6a snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x548f2b20 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x621a19e6 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7a14cf8d snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x898ff3fc snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbdce5312 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x0dc7ae00 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x4e72ab29 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x4ff99f74 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xe3cd6f9e snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x4619c043 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x85de9b5f snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2a53665e snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x461d7971 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x99697746 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xb7b1344b snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xca7f6d14 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xdb7d5189 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-i2c 0x24ebce64 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x42faee0a snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x8e0f0747 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xa70cb1d1 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xb6b0cb52 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xd6c5e273 snd_i2c_probeaddr +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0446bb2c snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x09d8b88b snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x11a1f302 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x159df9bf snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x18584b31 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2d5aa2bd snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x43ee29d8 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5130d68b snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x57f44862 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9e43488f snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xab6c6b8f snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb26948a1 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc0a00fdd snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc25c7174 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xda9d04e5 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xedd7de84 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf49e9fe0 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x011a8a2f snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3ef7aa29 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x58b8f29a snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x59705e90 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x74b1c27d snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7e4e9b4f snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8d17d57d snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xbc15ef7f snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe1bd0578 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x04b68fa9 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x08b5accc snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xb6a8a5ed snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0330c386 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x06616253 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0d3bd16f oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1458d675 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2e13d547 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3bf3434e oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4636a7c3 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x67553e49 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7557ff68 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x90a4e8cd oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x93fee5d6 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x98a1bc87 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa68db5c9 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb1960a8f oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc0e9a373 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc441d5f5 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc8e43f9f oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcfe36ba3 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xda08ef5d oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe0af352d oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe6a1e7de oxygen_read32 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x01ffe782 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x259196f8 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x7860ab4b snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x8b0bac0a snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xfce9cf45 snd_trident_start_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x7ca116e6 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xc0dcbd30 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/snd-soc-core 0x48d94747 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x0e4c50e0 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0x24d8b3c5 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xb02a7320 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0xbf31d4cb register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xdb2b9de2 register_sound_special +EXPORT_SYMBOL sound/soundcore 0xe879ccc4 sound_class +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x3e9f6fe8 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x51850379 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xac13fb36 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xd4de3bfa snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xd5b67a1e snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe568f41f snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/snd-util-mem 0x255f0b5d __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x28eb5bd9 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0x5023d210 snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x79a59fa6 snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x925fb7ad __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xbff9e5df __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xfaa41d4f snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xff222ac5 snd_util_memhdr_new +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 0xdf706edd __snd_usbmidi_create +EXPORT_SYMBOL vmlinux 0x000dc6e9 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x003a94ae __nd_iostat_start +EXPORT_SYMBOL vmlinux 0x00694268 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x006e85ad generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x0077f42d icmp_send +EXPORT_SYMBOL vmlinux 0x00804b3a dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done +EXPORT_SYMBOL vmlinux 0x008bc889 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x0095c638 init_net +EXPORT_SYMBOL vmlinux 0x009b08c0 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x00ad119e dev_remove_offload +EXPORT_SYMBOL vmlinux 0x00adaca7 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x00c3dfad scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x00c7fb52 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x00d68ef4 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00fe633f devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x013a4547 file_ns_capable +EXPORT_SYMBOL vmlinux 0x013af636 sock_efree +EXPORT_SYMBOL vmlinux 0x01451caa cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x015538cd __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x016fa47f dquot_free_inode +EXPORT_SYMBOL vmlinux 0x0171d14d tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x01748198 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x01790e94 csum_partial_copy +EXPORT_SYMBOL vmlinux 0x01908fa8 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x01988510 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x01a5f3a8 ps2_end_command +EXPORT_SYMBOL vmlinux 0x01c3bfb5 simple_rmdir +EXPORT_SYMBOL vmlinux 0x01c6ce3d mdiobus_free +EXPORT_SYMBOL vmlinux 0x01d73bcd unlock_rename +EXPORT_SYMBOL vmlinux 0x01edbe20 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x02344708 sk_stream_error +EXPORT_SYMBOL vmlinux 0x0236f569 empty_aops +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x027f7c06 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x0282e695 eth_header_parse +EXPORT_SYMBOL vmlinux 0x029ba823 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x029d1514 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x02a0cb93 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02a880c4 down_write_killable +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02f6bff1 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x030bfa80 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x033b0fd3 devm_memremap +EXPORT_SYMBOL vmlinux 0x033ba24d free_task +EXPORT_SYMBOL vmlinux 0x033ce2be sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x03506acf vfs_iter_write +EXPORT_SYMBOL vmlinux 0x035923aa __blk_end_request +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x035f891b down_interruptible +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x0379e038 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03a175d9 inet6_protos +EXPORT_SYMBOL vmlinux 0x03a9b496 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x03c1a5a3 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x03f29ec8 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x03f2bca7 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x03f5f5fd fscrypt_get_encryption_info +EXPORT_SYMBOL vmlinux 0x03f887b7 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0402818b napi_gro_frags +EXPORT_SYMBOL vmlinux 0x04057f00 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x040add82 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x041501c9 netlink_unicast +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x04814bda forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x049c787d tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x04affbde netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x04b9a6d8 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x04c18e3f copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x04d71e0d param_ops_long +EXPORT_SYMBOL vmlinux 0x04e63ee6 generic_make_request +EXPORT_SYMBOL vmlinux 0x04e9b43c blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04fbf07c crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x0505c6b3 set_disk_ro +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x05124142 proc_mkdir +EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range +EXPORT_SYMBOL vmlinux 0x05207f90 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x052df3c2 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x053a07c5 of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x053cf69e input_unregister_device +EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x0561cdf2 vme_irq_free +EXPORT_SYMBOL vmlinux 0x05639841 dcache_readdir +EXPORT_SYMBOL vmlinux 0x057033ff tty_vhangup +EXPORT_SYMBOL vmlinux 0x05a5acd8 sync_blockdev +EXPORT_SYMBOL vmlinux 0x05bab915 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x05bcbb0c tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x05be7ffb blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x05bf33de device_get_mac_address +EXPORT_SYMBOL vmlinux 0x05ca4eca mmc_start_req +EXPORT_SYMBOL vmlinux 0x05cda5b4 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x05e25804 __request_region +EXPORT_SYMBOL vmlinux 0x05ec3de0 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x05fd6df5 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x0611d795 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061f4039 acpi_get_table_with_size +EXPORT_SYMBOL vmlinux 0x06271b8f km_state_notify +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x064feac7 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x065b9da5 tcp_prequeue +EXPORT_SYMBOL vmlinux 0x06678e06 dquot_initialize +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x068e99e1 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x06cc9925 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x06d36127 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x06ed1dde dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x06f7206c mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x06f9045f netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x0710f617 generic_fillattr +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x07399b57 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x07514aac of_get_pci_address +EXPORT_SYMBOL vmlinux 0x07a02334 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07cea8db napi_gro_receive +EXPORT_SYMBOL vmlinux 0x07d0d195 kill_anon_super +EXPORT_SYMBOL vmlinux 0x07fc6477 down_write_trylock +EXPORT_SYMBOL vmlinux 0x07fd7763 nf_log_trace +EXPORT_SYMBOL vmlinux 0x07fdf24f mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x081e32e8 cdrom_open +EXPORT_SYMBOL vmlinux 0x08201559 framebuffer_release +EXPORT_SYMBOL vmlinux 0x0829883b get_acl +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083e90a2 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x086bb516 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x086c7720 finish_no_open +EXPORT_SYMBOL vmlinux 0x086f6b24 fsync_bdev +EXPORT_SYMBOL vmlinux 0x08a2ea11 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x08df7c75 PDE_DATA +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x091489ea account_page_dirtied +EXPORT_SYMBOL vmlinux 0x093076e3 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x093bfc3f proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x0953c51c kill_litter_super +EXPORT_SYMBOL vmlinux 0x095b0105 vm_event_states +EXPORT_SYMBOL vmlinux 0x095dd202 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x09696626 acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x098431ba acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x098994f6 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x098c9780 neigh_xmit +EXPORT_SYMBOL vmlinux 0x099719a8 abx500_register_ops +EXPORT_SYMBOL vmlinux 0x09a6b992 bio_endio +EXPORT_SYMBOL vmlinux 0x09a84850 key_link +EXPORT_SYMBOL vmlinux 0x09b23d79 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x09bc92f5 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c6411f schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09ce9959 pci_set_master +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09e9d041 pagevec_lookup +EXPORT_SYMBOL vmlinux 0x0a207fc0 km_is_alive +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0ab590aa bdi_register_owner +EXPORT_SYMBOL vmlinux 0x0ab7c6aa sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad08746 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x0aea0c89 __block_write_begin +EXPORT_SYMBOL vmlinux 0x0aff0361 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x0b016c79 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x0b0651d0 mii_check_link +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b19bbd1 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b21d2cc pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x0b4eb109 swake_up_all +EXPORT_SYMBOL vmlinux 0x0b509fcd __dquot_transfer +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b8e6da1 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x0b8f5793 blk_finish_request +EXPORT_SYMBOL vmlinux 0x0b9b0e56 mpage_readpages +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bca46de pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0x0bd0ffa9 submit_bio +EXPORT_SYMBOL vmlinux 0x0bdaf3ca clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x0bf96a1b gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x0bf9906e param_get_ulong +EXPORT_SYMBOL vmlinux 0x0c07f838 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x0c0bffbf nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c5d226b mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x0c6b6073 new_inode +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c75efb3 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x0c785640 scsi_execute +EXPORT_SYMBOL vmlinux 0x0c7ca5d9 param_set_byte +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca71eec brioctl_set +EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cb907ca jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x0cbb9ced inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x0cc54eea pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x0ce4946b generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x0d013d64 console_stop +EXPORT_SYMBOL vmlinux 0x0d03013d param_set_ulong +EXPORT_SYMBOL vmlinux 0x0d0bce1b __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x0d0ff4b6 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x0d3d58fb pcim_iounmap +EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type +EXPORT_SYMBOL vmlinux 0x0d40ee5c mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x0d4f9f76 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d697f5e check_disk_change +EXPORT_SYMBOL vmlinux 0x0d6e0af4 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x0d71077a of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x0d7818f9 fscrypt_get_policy +EXPORT_SYMBOL vmlinux 0x0d80efb5 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0db323af netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x0ddb9870 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x0df42081 audit_log_task_info +EXPORT_SYMBOL vmlinux 0x0df54063 netdev_err +EXPORT_SYMBOL vmlinux 0x0e124511 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x0e17d83c generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x0e1ff2de skb_copy +EXPORT_SYMBOL vmlinux 0x0e2032f8 bdi_destroy +EXPORT_SYMBOL vmlinux 0x0e28d9a0 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x0e355e79 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x0e46361e neigh_connected_output +EXPORT_SYMBOL vmlinux 0x0e467fca tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x0e4d6cf5 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x0e4fa7cd audit_log +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e77a781 lockref_put_return +EXPORT_SYMBOL vmlinux 0x0e7fc26c wait_iff_congested +EXPORT_SYMBOL vmlinux 0x0e8062f7 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x0e80fedf of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x0e917f72 param_get_long +EXPORT_SYMBOL vmlinux 0x0e9b7d4c acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x0ea50e3b devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ecf01eb __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x0ed603cb tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x0ed8cc7b acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x0ee9a52b revert_creds +EXPORT_SYMBOL vmlinux 0x0eee635a ping_prot +EXPORT_SYMBOL vmlinux 0x0ef151fa netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f0eeb73 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x0f13f17e __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x0f2897ce swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x0f2dd158 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x0f35533f unlock_page +EXPORT_SYMBOL vmlinux 0x0f3d566f thaw_bdev +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f6a49ca nvm_submit_ppa_list +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f8400f8 qcom_scm_pas_auth_and_reset +EXPORT_SYMBOL vmlinux 0x0f9cd8d7 nf_log_register +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fca3169 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x0fcea480 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x0fdd02ea of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x0fdd7a54 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x0fe3db23 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x0ff2c759 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x10050c1d noop_llseek +EXPORT_SYMBOL vmlinux 0x10175184 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x101d837e invalidate_partition +EXPORT_SYMBOL vmlinux 0x1026b576 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x102b3f81 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x103ec558 vc_resize +EXPORT_SYMBOL vmlinux 0x1067cae4 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1080bcd2 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x1098ad29 clone_cred +EXPORT_SYMBOL vmlinux 0x10a8359a nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x10b58cc3 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x10d11dc3 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x10d47410 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x10db9ffe mpage_readpage +EXPORT_SYMBOL vmlinux 0x10df8877 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x10dfeb8e cdrom_release +EXPORT_SYMBOL vmlinux 0x10fad0f4 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x110db709 page_readlink +EXPORT_SYMBOL vmlinux 0x110fb9a7 dquot_alloc +EXPORT_SYMBOL vmlinux 0x1119b1d4 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x1123f59c netdev_all_lower_get_next +EXPORT_SYMBOL vmlinux 0x1131b0a4 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x1133dae6 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x11391a99 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x11444293 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x1148efb9 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x115f683f add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x1164ba40 param_set_invbool +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1179f709 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x11b59980 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x11c0383f sk_dst_check +EXPORT_SYMBOL vmlinux 0x11cee12d i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x11e530b4 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x11fbf854 ata_port_printk +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x120fd8f1 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x12213ec7 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x12307811 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x125a1689 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x12672516 block_write_begin +EXPORT_SYMBOL vmlinux 0x12748546 backlight_force_update +EXPORT_SYMBOL vmlinux 0x1275d6e1 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x127b835b create_empty_buffers +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12af958b __register_binfmt +EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit +EXPORT_SYMBOL vmlinux 0x12ed725e dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x1304d882 notify_change +EXPORT_SYMBOL vmlinux 0x1305ca83 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x1305d532 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x130d02ed pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x1311420e iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x1312c7b5 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x131731ee iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x131c646a fb_validate_mode +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x1333b22e md_flush_request +EXPORT_SYMBOL vmlinux 0x133a08e0 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x135eafb9 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x136a7ee2 blk_complete_request +EXPORT_SYMBOL vmlinux 0x1385a032 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x1388a513 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x138cf084 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x139042a8 tso_build_data +EXPORT_SYMBOL vmlinux 0x13b28b29 qcom_scm_pas_shutdown +EXPORT_SYMBOL vmlinux 0x13bafd74 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x13c53560 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x13c5eb22 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13e75e43 __destroy_inode +EXPORT_SYMBOL vmlinux 0x13eff96f bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x13fa66ab dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x14050c65 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x140fbd4f max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x1441058a vm_mmap +EXPORT_SYMBOL vmlinux 0x145361ad fb_find_mode +EXPORT_SYMBOL vmlinux 0x1454cd41 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x146df283 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x147591e7 __cpu_active_mask +EXPORT_SYMBOL vmlinux 0x1479dc91 phy_device_free +EXPORT_SYMBOL vmlinux 0x147bf77d con_copy_unimap +EXPORT_SYMBOL vmlinux 0x147d9608 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x14904491 sock_no_poll +EXPORT_SYMBOL vmlinux 0x14a293a8 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x14b53407 nf_register_hook +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14d21998 search_binary_handler +EXPORT_SYMBOL vmlinux 0x14ea2880 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x150aa998 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x150ad92b ioport_resource +EXPORT_SYMBOL vmlinux 0x153074f3 revalidate_disk +EXPORT_SYMBOL vmlinux 0x15364b63 ida_remove +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x155fa2da genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x15607531 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x1573968f scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x1575873e block_write_end +EXPORT_SYMBOL vmlinux 0x157cf826 tcp_prot +EXPORT_SYMBOL vmlinux 0x159e680c vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x15ac1d5d fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x15ad4f7c submit_bh +EXPORT_SYMBOL vmlinux 0x15b630b3 qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15d00b8c migrate_page +EXPORT_SYMBOL vmlinux 0x15e48942 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x160439a2 clk_add_alias +EXPORT_SYMBOL vmlinux 0x16097912 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x161d26bf __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x1682ea05 proc_douintvec +EXPORT_SYMBOL vmlinux 0x168c9c9f bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x16a1ccf9 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x16b10b9b swake_up +EXPORT_SYMBOL vmlinux 0x16d5d2cd cpu_all_bits +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16ea3870 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x16f1c3e0 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x16f3b902 __secpath_destroy +EXPORT_SYMBOL vmlinux 0x1707d345 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x171c60e2 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x17303b47 sock_create_lite +EXPORT_SYMBOL vmlinux 0x175b19cd scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17f8f011 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x180a05f5 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x1812cfaf serio_close +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b183b __pci_register_driver +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x184f3f0e scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x1850e561 simple_write_end +EXPORT_SYMBOL vmlinux 0x1868bb63 mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x187f3930 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x18a99aa2 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x18af1dfd generic_update_time +EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io +EXPORT_SYMBOL vmlinux 0x18e03063 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18e96cc7 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x18ed28a7 ip6_xmit +EXPORT_SYMBOL vmlinux 0x18fef9cb xen_start_info +EXPORT_SYMBOL vmlinux 0x1902f3dc account_page_redirty +EXPORT_SYMBOL vmlinux 0x1916e7a3 blk_peek_request +EXPORT_SYMBOL vmlinux 0x193cc52a fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x19406c43 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x1967e2cb sock_release +EXPORT_SYMBOL vmlinux 0x196a6c9a xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x1997401f request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c85478 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x19d21234 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x19e49d28 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x19e6a277 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x19f3f92b blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x1a047f33 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x1a1bbee1 skb_queue_head +EXPORT_SYMBOL vmlinux 0x1a2966d1 keyring_alloc +EXPORT_SYMBOL vmlinux 0x1a29d1b6 sock_no_getname +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a703ba1 crc_ccitt +EXPORT_SYMBOL vmlinux 0x1aa2693a radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x1ab06748 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ace6b73 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x1af172a2 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b107ad3 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x1b19b51a eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b2d6d2c qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0x1b2fdb34 complete_request_key +EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning +EXPORT_SYMBOL vmlinux 0x1b583d5f softnet_data +EXPORT_SYMBOL vmlinux 0x1b58fbde pnp_possible_config +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b856be1 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x1b8c5414 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x1b8d9d3e buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x1bba9076 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x1bc7ab0b scsi_register_interface +EXPORT_SYMBOL vmlinux 0x1bca2a90 prepare_to_wait +EXPORT_SYMBOL vmlinux 0x1beec4bd write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x1c06c0bf nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x1c45578e pci_save_state +EXPORT_SYMBOL vmlinux 0x1c520220 phy_detach +EXPORT_SYMBOL vmlinux 0x1c6139f4 dentry_open +EXPORT_SYMBOL vmlinux 0x1c701c6c bio_advance +EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset +EXPORT_SYMBOL vmlinux 0x1ca546e2 profile_pc +EXPORT_SYMBOL vmlinux 0x1cad0ba7 mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0x1caddca3 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x1cba0fd0 __vfs_write +EXPORT_SYMBOL vmlinux 0x1cca5fdc md_register_thread +EXPORT_SYMBOL vmlinux 0x1cd1575d sg_miter_skip +EXPORT_SYMBOL vmlinux 0x1cdf4ae4 dprc_get_obj +EXPORT_SYMBOL vmlinux 0x1ce15873 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x1d07522f shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be +EXPORT_SYMBOL vmlinux 0x1d2096cf scm_detach_fds +EXPORT_SYMBOL vmlinux 0x1d26c3f1 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x1d3b841f of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x1d420156 netif_napi_add +EXPORT_SYMBOL vmlinux 0x1d54c716 set_wb_congested +EXPORT_SYMBOL vmlinux 0x1d5b05d2 filp_close +EXPORT_SYMBOL vmlinux 0x1d7e9ad1 tty_port_close +EXPORT_SYMBOL vmlinux 0x1d89bdac neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x1d92d898 complete_and_exit +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dc636f6 md_update_sb +EXPORT_SYMBOL vmlinux 0x1dc7f0f8 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de74f72 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0x1df357ed tty_register_driver +EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query +EXPORT_SYMBOL vmlinux 0x1e0dc71b phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x1e2166de of_get_address +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e44b613 __bforget +EXPORT_SYMBOL vmlinux 0x1e534ab8 commit_creds +EXPORT_SYMBOL vmlinux 0x1e5968c6 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x1e603635 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e7fb5e5 should_remove_suid +EXPORT_SYMBOL vmlinux 0x1e97f298 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea06663 _raw_write_lock +EXPORT_SYMBOL vmlinux 0x1ea0a7ab kernel_neon_begin_partial +EXPORT_SYMBOL vmlinux 0x1ea63e43 register_quota_format +EXPORT_SYMBOL vmlinux 0x1ed07c69 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x1ed56e07 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x1edb5730 nvm_register +EXPORT_SYMBOL vmlinux 0x1eeb219f unregister_console +EXPORT_SYMBOL vmlinux 0x1ef47ff4 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x1ef8769e mmc_register_driver +EXPORT_SYMBOL vmlinux 0x1f0e3b12 iget5_locked +EXPORT_SYMBOL vmlinux 0x1f105fbe kfree_skb_list +EXPORT_SYMBOL vmlinux 0x1f1099b9 blk_stop_queue +EXPORT_SYMBOL vmlinux 0x1f1ba763 devm_clk_put +EXPORT_SYMBOL vmlinux 0x1f257cba tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x1f410370 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x1f5f6784 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1f7cf6d5 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x1f8cbf95 __alloc_skb +EXPORT_SYMBOL vmlinux 0x1f968b57 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x1f9b2b7a devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x1fa26185 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fcdad98 devm_iounmap +EXPORT_SYMBOL vmlinux 0x1fcf4d4b _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fdc7df2 _mcount +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1febda4e skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x1fed4353 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x1ffa38c7 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x1ffca45f tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200608b2 mmc_free_host +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x2015dc1d d_find_any_alias +EXPORT_SYMBOL vmlinux 0x2015e950 security_path_unlink +EXPORT_SYMBOL vmlinux 0x202ae47d xfrm_state_add +EXPORT_SYMBOL vmlinux 0x20348b03 free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x204346af proc_dostring +EXPORT_SYMBOL vmlinux 0x20453966 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x205c95b4 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x206ff49d blk_end_request +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table +EXPORT_SYMBOL vmlinux 0x20906cd5 idr_destroy +EXPORT_SYMBOL vmlinux 0x2097460e gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x209c504b pagecache_get_page +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20b61c7f page_get_link +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20d87d94 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20f3c038 dev_addr_add +EXPORT_SYMBOL vmlinux 0x20ffa7f6 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x211d16fe input_inject_event +EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x2128accc vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x21320eb4 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x2168bc9d crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x216e33f4 md_cluster_mod +EXPORT_SYMBOL vmlinux 0x2191002d __init_rwsem +EXPORT_SYMBOL vmlinux 0x219c8acb register_sysctl +EXPORT_SYMBOL vmlinux 0x21b03002 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x21c0fd87 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x21d64309 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21fa8281 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x21fb7bea from_kuid +EXPORT_SYMBOL vmlinux 0x21fe4b0d ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x2227b995 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x224ff4ad wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x22699e32 fb_show_logo +EXPORT_SYMBOL vmlinux 0x2274ae31 path_put +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x227ece4b of_iomap +EXPORT_SYMBOL vmlinux 0x2285f09d vfs_getattr +EXPORT_SYMBOL vmlinux 0x228f4555 kimage_voffset +EXPORT_SYMBOL vmlinux 0x22b0d52f __frontswap_load +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b83fbf unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x22ba6afc jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x22baea3d proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x22bc37bb disk_stack_limits +EXPORT_SYMBOL vmlinux 0x22ca2f51 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x22ef3a96 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x22f83b1d mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x22fc603e backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x231d9670 cdev_del +EXPORT_SYMBOL vmlinux 0x231efe84 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x2338bf3a input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x236357a2 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x2364c326 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x2374300d elevator_init +EXPORT_SYMBOL vmlinux 0x2386b641 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x2397d00b devm_gpio_request +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x23fc0ebc vc_cons +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x23fec8ad seq_puts +EXPORT_SYMBOL vmlinux 0x2403c7dd finish_swait +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2445c842 ilookup +EXPORT_SYMBOL vmlinux 0x24546935 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x24554b35 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x24568209 page_mapped +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2460627d vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x248a9ce4 tty_port_init +EXPORT_SYMBOL vmlinux 0x24980a54 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x24a7dcae qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x24b55d64 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x24c25e4f memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0x24c95a3a md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x24cbc95c inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x24cea7aa tcp_parse_options +EXPORT_SYMBOL vmlinux 0x24d3421f simple_link +EXPORT_SYMBOL vmlinux 0x24ebefcd crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x25123aa4 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x2514ffea param_set_long +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x25375967 i2c_master_send +EXPORT_SYMBOL vmlinux 0x25551a75 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x255bb072 change_bit +EXPORT_SYMBOL vmlinux 0x256d7973 input_event +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x259de38f mount_pseudo +EXPORT_SYMBOL vmlinux 0x25a8d34c pci_add_resource +EXPORT_SYMBOL vmlinux 0x25b4c305 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x25dcfa34 pipe_lock +EXPORT_SYMBOL vmlinux 0x25df7b7b __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x25e88bc9 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25fa3201 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x2636e92b blk_delay_queue +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update +EXPORT_SYMBOL vmlinux 0x266ca50a pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x26720fd8 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x2674adb6 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x2683f0a7 inet_frag_find +EXPORT_SYMBOL vmlinux 0x268f3864 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x26902425 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x2693574e kernel_accept +EXPORT_SYMBOL vmlinux 0x269f6419 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x26b74042 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x2700c201 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x27017365 __frontswap_store +EXPORT_SYMBOL vmlinux 0x270ade5e block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x270b68d1 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x270d3636 kernel_read +EXPORT_SYMBOL vmlinux 0x27160877 i2c_release_client +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x273a82e1 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x273c1e66 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x27407564 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x27415a6c genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x274e99f2 bdget_disk +EXPORT_SYMBOL vmlinux 0x275ae002 pci_find_bus +EXPORT_SYMBOL vmlinux 0x276abf29 lease_modify +EXPORT_SYMBOL vmlinux 0x2773fd19 generic_setxattr +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x27a32044 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27bef119 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x27d647e2 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x27db9061 compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0x27dcde87 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x2814401f file_path +EXPORT_SYMBOL vmlinux 0x28166464 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28318305 snprintf +EXPORT_SYMBOL vmlinux 0x283206f3 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x28531f3d mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x285f2625 md_done_sync +EXPORT_SYMBOL vmlinux 0x286ab611 kernel_listen +EXPORT_SYMBOL vmlinux 0x287e3646 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28abfe6e scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x28adcda9 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x28d0dfc3 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x28d7ffea lg_local_unlock +EXPORT_SYMBOL vmlinux 0x28ec4c3c jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x29037d4d mount_single +EXPORT_SYMBOL vmlinux 0x290868ae blk_run_queue +EXPORT_SYMBOL vmlinux 0x2908b353 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x290b4701 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x29104536 sync_file_create +EXPORT_SYMBOL vmlinux 0x29296289 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x292a4f05 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x29737287 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x2987ba74 current_fs_time +EXPORT_SYMBOL vmlinux 0x2996ca41 simple_unlink +EXPORT_SYMBOL vmlinux 0x29c2fd61 __pagevec_release +EXPORT_SYMBOL vmlinux 0x29dcc8bf of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x29e6e2ef of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x29f77176 pid_task +EXPORT_SYMBOL vmlinux 0x2a00266c nf_hook_slow +EXPORT_SYMBOL vmlinux 0x2a044f1a pipe_unlock +EXPORT_SYMBOL vmlinux 0x2a0fd06b is_nd_btt +EXPORT_SYMBOL vmlinux 0x2a1d5b4b ll_rw_block +EXPORT_SYMBOL vmlinux 0x2a2778cb rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a3dd7e1 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x2a795175 cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x2a8b77ab pcim_enable_device +EXPORT_SYMBOL vmlinux 0x2aa1ad41 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x2aa85e89 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x2aaaffd9 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x2aac73aa padata_free +EXPORT_SYMBOL vmlinux 0x2aca1f8a bio_reset +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ad35f6c mount_nodev +EXPORT_SYMBOL vmlinux 0x2aecd402 serio_open +EXPORT_SYMBOL vmlinux 0x2af1cde3 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x2af571e0 blk_register_region +EXPORT_SYMBOL vmlinux 0x2af748b8 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x2b0a8ed9 dqget +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b2438cd msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b469915 scsi_device_put +EXPORT_SYMBOL vmlinux 0x2b4d271c tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x2b5011f1 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x2b7c34a1 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x2bd7fd6b skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x2be57799 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x2be87d5a md_cluster_ops +EXPORT_SYMBOL vmlinux 0x2bf753a7 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove +EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x2c0230c1 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c2cab0c dcache_dir_open +EXPORT_SYMBOL vmlinux 0x2c36b3fd __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x2c3c0350 del_gendisk +EXPORT_SYMBOL vmlinux 0x2c468b2d mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x2c4a86d4 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x2c58a41f locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x2c7240e9 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x2c8fb3c7 amba_request_regions +EXPORT_SYMBOL vmlinux 0x2c937756 devm_clk_get +EXPORT_SYMBOL vmlinux 0x2c9a26ba param_ops_charp +EXPORT_SYMBOL vmlinux 0x2ca66d21 write_one_page +EXPORT_SYMBOL vmlinux 0x2ca7b961 bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0x2cb03968 sk_capable +EXPORT_SYMBOL vmlinux 0x2cd9a855 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x2d080663 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x2d0c7c2a lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d2ff571 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d3d4140 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x2d3ee823 amba_release_regions +EXPORT_SYMBOL vmlinux 0x2d49392a follow_up +EXPORT_SYMBOL vmlinux 0x2d49863d poll_freewait +EXPORT_SYMBOL vmlinux 0x2d5475eb napi_complete_done +EXPORT_SYMBOL vmlinux 0x2d55bec4 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x2d6bea0e of_device_register +EXPORT_SYMBOL vmlinux 0x2d7d4786 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x2da3f5b0 param_ops_uint +EXPORT_SYMBOL vmlinux 0x2db1e0c6 dql_init +EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2de1327b bit_waitqueue +EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception +EXPORT_SYMBOL vmlinux 0x2dedee44 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x2df0b131 of_device_is_available +EXPORT_SYMBOL vmlinux 0x2df13be3 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x2df337dd blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x2df54f31 sk_net_capable +EXPORT_SYMBOL vmlinux 0x2df93247 phy_start +EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2faf68 inet_offloads +EXPORT_SYMBOL vmlinux 0x2e4b08a1 dma_pool_create +EXPORT_SYMBOL vmlinux 0x2e56e367 bdput +EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x2e68f7f4 simple_lookup +EXPORT_SYMBOL vmlinux 0x2e7be112 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0x2e9ec7c6 of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0x2ea4c1c9 lg_global_unlock +EXPORT_SYMBOL vmlinux 0x2ea7a950 scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x2ec618a0 devm_gpio_free +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f1d5054 __breadahead +EXPORT_SYMBOL vmlinux 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL vmlinux 0x2f30f2c7 bio_add_page +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f3857e2 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f5b15f9 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x2f9502eb is_bad_inode +EXPORT_SYMBOL vmlinux 0x2f964fad unregister_netdev +EXPORT_SYMBOL vmlinux 0x2fb35bef ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fbf8ef7 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x2fbfd729 nf_register_hooks +EXPORT_SYMBOL vmlinux 0x2fd4ae01 page_waitqueue +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2feb8e62 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x2ff045ae twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x2ff063b5 acpi_get_name +EXPORT_SYMBOL vmlinux 0x2fffb2e9 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x3004b50e set_blocksize +EXPORT_SYMBOL vmlinux 0x302171f6 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x303b62aa mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x304a2fd7 udp_set_csum +EXPORT_SYMBOL vmlinux 0x304ec72b _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x30531830 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x305cccde jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x305cec12 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x3067fa00 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0x30703121 nvm_register_tgt_type +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3080060f default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x3092be92 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30d6a40f cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x30da74bd mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x30e0c9fa netpoll_setup +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310a6f08 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x310f02ec memremap +EXPORT_SYMBOL vmlinux 0x31269516 copy_from_iter +EXPORT_SYMBOL vmlinux 0x312c6653 __kfree_skb +EXPORT_SYMBOL vmlinux 0x3137306e skb_clone_sk +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31b857e6 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x31c37fd5 phy_attached_print +EXPORT_SYMBOL vmlinux 0x31da3c90 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x3202c732 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x32088aa3 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x321ff118 nd_iostat_end +EXPORT_SYMBOL vmlinux 0x322696ac of_get_property +EXPORT_SYMBOL vmlinux 0x324b3877 up +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x325fc9be pci_bus_get +EXPORT_SYMBOL vmlinux 0x32691182 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x32814d8b xen_biovec_phys_mergeable +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x328de268 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x32b47fcb d_drop +EXPORT_SYMBOL vmlinux 0x32c5f7a4 get_phy_device +EXPORT_SYMBOL vmlinux 0x32cbbbcc __getblk_gfp +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32f20e37 kern_path_create +EXPORT_SYMBOL vmlinux 0x32fe56c3 neigh_destroy +EXPORT_SYMBOL vmlinux 0x33178d7c dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x3321599b skb_checksum_help +EXPORT_SYMBOL vmlinux 0x332504f6 devm_request_resource +EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x334e4e18 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x334fb10d phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x33540d7c jbd2_journal_inode_add_write +EXPORT_SYMBOL vmlinux 0x33733eca scsi_add_device +EXPORT_SYMBOL vmlinux 0x33766802 cdev_add +EXPORT_SYMBOL vmlinux 0x337e7f0e bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x3389b3ce tty_lock +EXPORT_SYMBOL vmlinux 0x33966776 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x33a65173 netdev_change_features +EXPORT_SYMBOL vmlinux 0x33b417c8 eth_header +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33ed1125 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f8c4ff __bread_gfp +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x34390b4d tso_count_descs +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x3465ea65 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x346f44a4 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x34813acc tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a9f1ee vm_zone_stat +EXPORT_SYMBOL vmlinux 0x34bb0dbf mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x34c3dc73 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x34d0d3ec block_commit_write +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f397e2 find_get_entries_tag +EXPORT_SYMBOL vmlinux 0x3502ed45 inet_release +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x351d6afc napi_get_frags +EXPORT_SYMBOL vmlinux 0x352a6b6f skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x353e21e3 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x3555d25c swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x35709421 sock_no_listen +EXPORT_SYMBOL vmlinux 0x3578a876 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x35a22017 inet_put_port +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35b3abad truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x35bbd4f8 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x35daf7ed skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x360716b1 tty_hangup +EXPORT_SYMBOL vmlinux 0x360a6a18 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x360f8f8a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x360ff19f down +EXPORT_SYMBOL vmlinux 0x364e1f8a iproc_msi_init +EXPORT_SYMBOL vmlinux 0x36504981 compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x3651d359 d_make_root +EXPORT_SYMBOL vmlinux 0x365f5f7e fence_default_wait +EXPORT_SYMBOL vmlinux 0x36717279 seq_dentry +EXPORT_SYMBOL vmlinux 0x367785c4 ipv4_specific +EXPORT_SYMBOL vmlinux 0x36943b68 filemap_fault +EXPORT_SYMBOL vmlinux 0x3695edda request_resource +EXPORT_SYMBOL vmlinux 0x36977533 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36c8b2a6 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x36f85830 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x3725893a radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x373570aa sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3747860e scsi_print_command +EXPORT_SYMBOL vmlinux 0x374bc086 import_single_range +EXPORT_SYMBOL vmlinux 0x374f403f proc_symlink +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x37613521 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x3788795c sg_miter_start +EXPORT_SYMBOL vmlinux 0x378afe79 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x3796f432 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37fda56b pcibus_to_node +EXPORT_SYMBOL vmlinux 0x380e3db1 free_buffer_head +EXPORT_SYMBOL vmlinux 0x380ee87a abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381ab2e7 f_setown +EXPORT_SYMBOL vmlinux 0x38231065 d_lookup +EXPORT_SYMBOL vmlinux 0x38285f74 nvm_submit_io +EXPORT_SYMBOL vmlinux 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x385413db swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x38703d40 node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x38804151 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388e05a5 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b152fd arp_tbl +EXPORT_SYMBOL vmlinux 0x38b43d74 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x38cc4018 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x38ce283d iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x38f46493 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x38f720ca of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x38fc0000 prepare_creds +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394c8fc9 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x3956ae75 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x395a6d1a pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x397fd044 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x39991e5d mntput +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39a513ab dma_release_declared_memory +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39c76a8a filemap_map_pages +EXPORT_SYMBOL vmlinux 0x39c82636 alloc_disk_node +EXPORT_SYMBOL vmlinux 0x39dadda3 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x3a1c9611 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x3a428428 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x3a4de076 cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x3a54c143 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x3a61d45e acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0x3a730a71 mdio_device_register +EXPORT_SYMBOL vmlinux 0x3a7a59fe security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x3a89aab5 key_unlink +EXPORT_SYMBOL vmlinux 0x3a8e891c pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x3a92a8d0 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x3a9542d8 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3ab07085 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x3ab41b25 __copy_in_user +EXPORT_SYMBOL vmlinux 0x3ab707a1 seq_pad +EXPORT_SYMBOL vmlinux 0x3abff071 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x3ad20265 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x3aebd2c6 d_alloc +EXPORT_SYMBOL vmlinux 0x3aecc385 serio_interrupt +EXPORT_SYMBOL vmlinux 0x3af69f40 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x3b2503f4 __lock_buffer +EXPORT_SYMBOL vmlinux 0x3b2e880f vga_put +EXPORT_SYMBOL vmlinux 0x3b300948 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x3b308b3e devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x3b4cc956 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x3b5dc797 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b700bcd tcp_init_sock +EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x3b89c2aa dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x3b904240 inet6_offloads +EXPORT_SYMBOL vmlinux 0x3b953a70 allocate_resource +EXPORT_SYMBOL vmlinux 0x3bd72c02 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x3be4c6c2 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x3beab458 tcp_close +EXPORT_SYMBOL vmlinux 0x3bf2a184 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x3c0644c1 prepare_binprm +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c18e882 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x3c331450 __skb_csum_offload_chk +EXPORT_SYMBOL vmlinux 0x3c3f9c6b dev_close +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c464e3e bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x3c498523 param_get_ullong +EXPORT_SYMBOL vmlinux 0x3c4ecb92 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x3c6cab34 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c8b633c lwtunnel_output +EXPORT_SYMBOL vmlinux 0x3c8e992d inet_register_protosw +EXPORT_SYMBOL vmlinux 0x3c90c99c inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x3caf7d52 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x3cbfdb94 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x3cc342fb pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x3ccd8b69 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x3cd15a15 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x3cd320f8 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cfae893 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x3d093081 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0x3d15ab06 __next_node_in +EXPORT_SYMBOL vmlinux 0x3d2189d6 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x3d26cdf5 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x3d433b4d setup_arg_pages +EXPORT_SYMBOL vmlinux 0x3d829729 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page +EXPORT_SYMBOL vmlinux 0x3da34bab zero_fill_bio +EXPORT_SYMBOL vmlinux 0x3db48351 textsearch_register +EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x3dc135f6 gen_pool_create +EXPORT_SYMBOL vmlinux 0x3dc6c6a5 dev_open +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dfbe4ea mapping_tagged +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e0d24e6 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x3e1d3345 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x3e2286cd __radix_tree_insert +EXPORT_SYMBOL vmlinux 0x3e3127c7 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x3e3f60d8 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x3e4c013e unload_nls +EXPORT_SYMBOL vmlinux 0x3e54d28a phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3e5bd1c7 netdev_notice +EXPORT_SYMBOL vmlinux 0x3e64b586 dev_activate +EXPORT_SYMBOL vmlinux 0x3e6840a8 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x3e7aa88d I_BDEV +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3e9df9fb clear_nlink +EXPORT_SYMBOL vmlinux 0x3eaf9ecc pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x3ecd27d9 dquot_drop +EXPORT_SYMBOL vmlinux 0x3ed99540 genphy_read_status +EXPORT_SYMBOL vmlinux 0x3edf4977 seq_open +EXPORT_SYMBOL vmlinux 0x3ee393f5 make_bad_inode +EXPORT_SYMBOL vmlinux 0x3eef9322 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x3ef1f4d4 __ps2_command +EXPORT_SYMBOL vmlinux 0x3ef23ff9 dquot_operations +EXPORT_SYMBOL vmlinux 0x3f19cbdd abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x3f3e510b phy_device_register +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f47a268 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x3f4a6480 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x3f52d74a dev_mc_sync +EXPORT_SYMBOL vmlinux 0x3f5c6471 del_timer_sync +EXPORT_SYMBOL vmlinux 0x3f6b376e km_new_mapping +EXPORT_SYMBOL vmlinux 0x3f6c8ea9 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x3f7d392a kthread_bind +EXPORT_SYMBOL vmlinux 0x3f8f9fe9 __invalidate_device +EXPORT_SYMBOL vmlinux 0x3f9c93ef in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x3fc74e53 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x3fce39a1 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x3fd3adce proc_set_size +EXPORT_SYMBOL vmlinux 0x3fde5583 kdb_current_task +EXPORT_SYMBOL vmlinux 0x3fe0a376 simple_open +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ff6b1c5 mount_subtree +EXPORT_SYMBOL vmlinux 0x400390fb acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0x400cb998 sock_create_kern +EXPORT_SYMBOL vmlinux 0x4022ca5d bprm_change_interp +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x40376cde generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x403acf21 nvm_unregister_tgt_type +EXPORT_SYMBOL vmlinux 0x404aa953 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x404f810d mutex_trylock +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x406164b1 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x4081ce39 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x40903134 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x409b37dc i2c_use_client +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40bca21a con_is_bound +EXPORT_SYMBOL vmlinux 0x40bd07a6 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x40c716e0 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40c7563b __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x40c89d46 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0x40c94063 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40dc5b6f phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x40ea1f2b sk_common_release +EXPORT_SYMBOL vmlinux 0x41048790 skb_find_text +EXPORT_SYMBOL vmlinux 0x4130da6c sk_busy_loop +EXPORT_SYMBOL vmlinux 0x413e4aba scsi_register_driver +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x419399ba skb_queue_purge +EXPORT_SYMBOL vmlinux 0x41a05f0d scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x41b3f0fc touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x41c65475 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x41ef4572 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x41f4475a iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x41f6f594 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x41fe9955 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x420080e5 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x42350e8d ucs2_strlen +EXPORT_SYMBOL vmlinux 0x423776f4 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x423f1370 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x427914c2 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x4290165a cfb_fillrect +EXPORT_SYMBOL vmlinux 0x4296129f twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x42a65699 dev_load +EXPORT_SYMBOL vmlinux 0x42abb47a ip6_frag_init +EXPORT_SYMBOL vmlinux 0x42ae5af0 dqstats +EXPORT_SYMBOL vmlinux 0x42b4d563 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x42e242ea kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x42e92faf iget_failed +EXPORT_SYMBOL vmlinux 0x42fc0e6f dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4324ada1 of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0x43365c48 md_integrity_register +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x435b8606 tty_kref_put +EXPORT_SYMBOL vmlinux 0x4375bb4d mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x437c96ae lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43971f4c of_dev_get +EXPORT_SYMBOL vmlinux 0x43cd8254 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x43d5949a i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x43d8ed27 input_allocate_device +EXPORT_SYMBOL vmlinux 0x43e5f632 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x43e85a6d scsi_host_put +EXPORT_SYMBOL vmlinux 0x43f91939 of_dev_put +EXPORT_SYMBOL vmlinux 0x43fadf9d bh_submit_read +EXPORT_SYMBOL vmlinux 0x4402ebd1 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x444ba42e dquot_release +EXPORT_SYMBOL vmlinux 0x445ec187 mmc_add_host +EXPORT_SYMBOL vmlinux 0x4482aef3 tty_throttle +EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x44a81d5f acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0x44a8ae9b nla_reserve +EXPORT_SYMBOL vmlinux 0x44ac9179 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x44b2f1f5 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x44b5ee9a kasprintf +EXPORT_SYMBOL vmlinux 0x44c7e19b migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x44cf881f inc_node_page_state +EXPORT_SYMBOL vmlinux 0x44dc67a9 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44ee5049 blk_recount_segments +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45452cf0 ___ratelimit +EXPORT_SYMBOL vmlinux 0x455a5799 secpath_dup +EXPORT_SYMBOL vmlinux 0x455cf462 inet_select_addr +EXPORT_SYMBOL vmlinux 0x4566f6ba netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457e9061 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x4588d2e8 km_report +EXPORT_SYMBOL vmlinux 0x458c8b3d param_get_invbool +EXPORT_SYMBOL vmlinux 0x45a55ec8 __iounmap +EXPORT_SYMBOL vmlinux 0x45cb638b __vmalloc +EXPORT_SYMBOL vmlinux 0x45d68c18 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x45f45c2f mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x4608d895 proc_create_data +EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x462c660f proc_dointvec +EXPORT_SYMBOL vmlinux 0x464c9c6d ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x4657ebaa fence_context_alloc +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x46687fcc free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x468c96f0 xfrm_input +EXPORT_SYMBOL vmlinux 0x46935d77 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x46aa76a2 vmap +EXPORT_SYMBOL vmlinux 0x46be1b84 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x46c245f1 phy_print_status +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46c4fb20 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x46ca439f gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x46e054d5 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x46fbbb11 dquot_commit +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x474a34d8 mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x47863120 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x478a130b dprc_open +EXPORT_SYMBOL vmlinux 0x478c00f6 path_get +EXPORT_SYMBOL vmlinux 0x4792b33d cont_write_begin +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x4798cf7d iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47e40a6d dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x47e508e7 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x47ed088a write_cache_pages +EXPORT_SYMBOL vmlinux 0x47f87570 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x4808a665 install_exec_creds +EXPORT_SYMBOL vmlinux 0x48185605 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x483cdf54 md_error +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x484292ff dm_kobject_release +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x485c8624 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x486634f8 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x487cb4e3 dump_align +EXPORT_SYMBOL vmlinux 0x4892a55b sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48bc1823 n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0x48be0231 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x48e1bafe xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x49104e25 lookup_one_len +EXPORT_SYMBOL vmlinux 0x492a4e0e skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x4953c561 alloc_file +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x49645d87 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x49690bed iunique +EXPORT_SYMBOL vmlinux 0x496d1276 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x4972e567 dma_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x498fee26 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x49930938 idr_replace +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49cdec04 d_invalidate +EXPORT_SYMBOL vmlinux 0x49cf2cdc dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x49cfa516 alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x49d2fddb kmem_cache_size +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a0ae4ef blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x4a0b738e dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x4a0d1663 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x4a0dbf9a pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x4a165308 iput +EXPORT_SYMBOL vmlinux 0x4a2c9049 arm_smccc_smc +EXPORT_SYMBOL vmlinux 0x4a38b698 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x4a5e3993 dup_iter +EXPORT_SYMBOL vmlinux 0x4a6f03a6 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x4a7f1ba2 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x4a80c520 fb_class +EXPORT_SYMBOL vmlinux 0x4aa75463 dpbp_close +EXPORT_SYMBOL vmlinux 0x4ab3968d build_skb +EXPORT_SYMBOL vmlinux 0x4ac7d5e2 acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x4ad356ab filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b155b1c pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x4b1b3141 seq_printf +EXPORT_SYMBOL vmlinux 0x4b237c15 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x4b266344 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x4b340004 ps2_init +EXPORT_SYMBOL vmlinux 0x4b5f81c3 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b8fcba7 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x4bab9a88 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bc1beee netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x4bc59e63 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x4bc5f9c5 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x4beccb2f pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x4bfa8477 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c0fe947 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x4c26bf84 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x4c33a123 dpbp_enable +EXPORT_SYMBOL vmlinux 0x4c5d68f0 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x4c6cca83 gnttab_alloc_pages +EXPORT_SYMBOL vmlinux 0x4c6f9ef3 test_and_change_bit +EXPORT_SYMBOL vmlinux 0x4c8dcc56 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x4c9169f2 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf +EXPORT_SYMBOL vmlinux 0x4cc3d2b3 kset_unregister +EXPORT_SYMBOL vmlinux 0x4cd34093 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4ce2ced0 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x4cf2d643 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d14b178 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x4d2589c9 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d535e01 input_reset_device +EXPORT_SYMBOL vmlinux 0x4d64cffe __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x4d662801 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x4d6a1fde skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x4d6b361d blk_get_backing_dev_info +EXPORT_SYMBOL vmlinux 0x4d8339bd nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x4d890f3f dev_uc_init +EXPORT_SYMBOL vmlinux 0x4d926554 flush_dcache_page +EXPORT_SYMBOL vmlinux 0x4d969d7f inet_del_offload +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4db48ce3 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x4db583ba dquot_disable +EXPORT_SYMBOL vmlinux 0x4dd0f7f8 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x4de321f0 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4dfbc404 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x4e0f86ec acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x4e2b0225 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e58465b pci_pme_active +EXPORT_SYMBOL vmlinux 0x4e64d691 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6de7fc dmam_release_declared_memory +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4ebbb411 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x4ed0e01d register_filesystem +EXPORT_SYMBOL vmlinux 0x4ee93d03 follow_down_one +EXPORT_SYMBOL vmlinux 0x4ef005ac sock_rfree +EXPORT_SYMBOL vmlinux 0x4f06cac5 tty_devnum +EXPORT_SYMBOL vmlinux 0x4f1c5129 __skb_checksum +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f2c2bac try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f3e4c8e acpi_pm_device_run_wake +EXPORT_SYMBOL vmlinux 0x4f41667e ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f47fa26 seq_release +EXPORT_SYMBOL vmlinux 0x4f49fc8c devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x4f57d5e8 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x4f637955 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read +EXPORT_SYMBOL vmlinux 0x4f7a4827 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x4f84cfde jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x4f985576 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x4fa41da9 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x4fa58b67 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x4fa9f226 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x4fbae6a6 uuid_le_to_bin +EXPORT_SYMBOL vmlinux 0x4fd1d5ce xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x4ffb4e7d lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x50260aa4 lock_rename +EXPORT_SYMBOL vmlinux 0x50271572 of_find_property +EXPORT_SYMBOL vmlinux 0x502b4060 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x503047c4 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x5030e261 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x50542d11 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x505a1027 follow_down +EXPORT_SYMBOL vmlinux 0x50611f74 get_super +EXPORT_SYMBOL vmlinux 0x506e5eb3 pci_request_regions +EXPORT_SYMBOL vmlinux 0x507622dd skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x509147cf bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x509a8f3f scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x50d9d543 __find_get_block +EXPORT_SYMBOL vmlinux 0x50e666ef fscrypt_free_filename +EXPORT_SYMBOL vmlinux 0x51127fd5 filemap_flush +EXPORT_SYMBOL vmlinux 0x5114ee1c md_write_start +EXPORT_SYMBOL vmlinux 0x51152b67 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x5130602b bio_copy_data +EXPORT_SYMBOL vmlinux 0x51315aae blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x514e92e7 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x51556b3a jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x5166d421 truncate_setsize +EXPORT_SYMBOL vmlinux 0x516955eb param_array_ops +EXPORT_SYMBOL vmlinux 0x51749fc8 _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x5197d782 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x51b62c39 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid +EXPORT_SYMBOL vmlinux 0x51f51f91 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data +EXPORT_SYMBOL vmlinux 0x52130046 acpi_check_address_range +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x52288278 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x523c7249 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x52420a5e pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x524e2e61 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x525248c0 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0x526fffe1 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0x527490bd jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x5288dcbb crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x52907d97 fscrypt_restore_control_page +EXPORT_SYMBOL vmlinux 0x52952118 inode_init_once +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52a37c50 follow_pfn +EXPORT_SYMBOL vmlinux 0x52c22a52 genphy_resume +EXPORT_SYMBOL vmlinux 0x52ca5cd1 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x52f18b4d d_move +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x534b879a reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x5355c77f inode_set_bytes +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x535cc609 netdev_info +EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin +EXPORT_SYMBOL vmlinux 0x537f0df3 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53a86c81 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x53aa62c2 task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0x53ab352d blk_sync_queue +EXPORT_SYMBOL vmlinux 0x53e1cea3 elevator_alloc +EXPORT_SYMBOL vmlinux 0x53f6caee register_cdrom +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x54105092 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x5410ab4b scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x5411f4eb set_binfmt +EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x544b085e of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register +EXPORT_SYMBOL vmlinux 0x54548417 ip_defrag +EXPORT_SYMBOL vmlinux 0x545d819b xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x54873f26 __nla_reserve +EXPORT_SYMBOL vmlinux 0x54919a44 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x549b81e0 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54adc0f5 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x54b5ab9c vm_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54c606db generic_file_open +EXPORT_SYMBOL vmlinux 0x54c6379a kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0x54ca6ddd netif_receive_skb +EXPORT_SYMBOL vmlinux 0x54d4bded ida_init +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x5506b1fc vfs_read +EXPORT_SYMBOL vmlinux 0x5510a3ee posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x551406f6 __frontswap_test +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x551c2491 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x551e342c vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x55331ab6 dma_alloc_from_coherent +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x55491251 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x55660013 set_user_nice +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x55b2c786 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x55d44863 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55df893a genphy_suspend +EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node +EXPORT_SYMBOL vmlinux 0x5600e520 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x561c0829 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x56250923 bitmap_unplug +EXPORT_SYMBOL vmlinux 0x562f0f22 ida_simple_remove +EXPORT_SYMBOL vmlinux 0x56342ce1 down_timeout +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x564cc388 skb_unlink +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x565ef90e vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x5684c2da read_code +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x5693867e simple_write_begin +EXPORT_SYMBOL vmlinux 0x56a53e90 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56da6496 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x56e34c63 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x56e7fb0c sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x56eb0ba3 __sock_create +EXPORT_SYMBOL vmlinux 0x56ef1a2c nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x570a4788 fscrypt_decrypt_bio_pages +EXPORT_SYMBOL vmlinux 0x57142b38 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x572d0104 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x5736302c ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x573a43e6 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x573e68e1 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x578d2f6a netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x578e6743 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x578f77dd blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57977790 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x579a6fd1 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x57a8a6ae inet_shutdown +EXPORT_SYMBOL vmlinux 0x57a8e5d3 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x57bf8e15 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x57c60f31 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x57c9188c generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x57ec8585 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x5809234a md_write_end +EXPORT_SYMBOL vmlinux 0x581bb64d lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5823b1d6 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x582e6b0c fscrypt_inherit_context +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem +EXPORT_SYMBOL vmlinux 0x5860d546 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x58aed100 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58ba23a5 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x58c262c4 freeze_super +EXPORT_SYMBOL vmlinux 0x58dc945a __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x58dea278 sk_wait_data +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x59054ae5 __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x59438fae dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x594bb5e5 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x595cc50f vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x595ff0e0 request_firmware +EXPORT_SYMBOL vmlinux 0x596f3462 nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x5974c95d of_phy_connect +EXPORT_SYMBOL vmlinux 0x5994b614 dprc_get_res_ids +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59b0bfa1 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x59b47d5b jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x59c1d110 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x59cb8b14 of_translate_address +EXPORT_SYMBOL vmlinux 0x59d11390 param_ops_bool +EXPORT_SYMBOL vmlinux 0x59d4691f dev_printk +EXPORT_SYMBOL vmlinux 0x59e81b11 mpage_writepage +EXPORT_SYMBOL vmlinux 0x59e97b9a ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x59f7a378 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x59fa3075 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a1c29c3 of_get_min_tck +EXPORT_SYMBOL vmlinux 0x5a20e64f unregister_quota_format +EXPORT_SYMBOL vmlinux 0x5a2165a5 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x5a59af7e sk_mc_loop +EXPORT_SYMBOL vmlinux 0x5a68051d security_task_getsecid +EXPORT_SYMBOL vmlinux 0x5a6cfba5 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x5a6f2b40 i2c_transfer +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a926b05 sync_filesystem +EXPORT_SYMBOL vmlinux 0x5a9b141f mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x5a9c9cf3 lg_lock_init +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5a9ffe06 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x5ab2f4af udp_prot +EXPORT_SYMBOL vmlinux 0x5ab5e51b of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x5ac7518d wireless_spy_update +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b05c6c7 dmam_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x5b066ff5 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x5b078762 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x5b0cf392 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x5b0ea7a8 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x5b3e6870 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b73c141 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x5b99f9ce pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x5b9c808a acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0x5b9de28d ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x5b9e2472 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit +EXPORT_SYMBOL vmlinux 0x5bc6f324 register_netdevice +EXPORT_SYMBOL vmlinux 0x5be8fbf5 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0x5beb74bd gnttab_free_pages +EXPORT_SYMBOL vmlinux 0x5c02deba vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x5c4344d1 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x5c63a560 __netif_schedule +EXPORT_SYMBOL vmlinux 0x5c7bcc26 bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x5c7fea41 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x5c942219 scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x5c9b9dcc blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x5cd2d0fd skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x5cd680f0 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x5cd885d5 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0x5ce537d7 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x5cedcd79 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d0b02c8 keyring_search +EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio +EXPORT_SYMBOL vmlinux 0x5d195fc0 netdev_warn +EXPORT_SYMBOL vmlinux 0x5d2869c2 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x5d327b57 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x5d35fab5 phy_find_first +EXPORT_SYMBOL vmlinux 0x5d4a8320 kvasprintf +EXPORT_SYMBOL vmlinux 0x5d50091d vfs_fsync +EXPORT_SYMBOL vmlinux 0x5d535143 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x5d539b8c tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved +EXPORT_SYMBOL vmlinux 0x5df79c93 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x5e236dde input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x5e29ecf0 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x5e2e76d3 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x5e599fc0 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x5e623a09 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x5e93c3b2 devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x5e942d78 phy_disconnect +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb25b9e scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x5eb88367 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x5ebc9405 fput +EXPORT_SYMBOL vmlinux 0x5ec24027 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5eddb14c radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x5efd681a nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f0170a2 dev_uc_del +EXPORT_SYMBOL vmlinux 0x5f0466b3 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f2cdfce udp_disconnect +EXPORT_SYMBOL vmlinux 0x5f2e6e08 netdev_crit +EXPORT_SYMBOL vmlinux 0x5f3928b3 tcf_register_action +EXPORT_SYMBOL vmlinux 0x5f3a9125 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x5f406096 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x5f4e7c15 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x5f529c16 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x5f56fac4 __dst_free +EXPORT_SYMBOL vmlinux 0x5f61dffa simple_rename +EXPORT_SYMBOL vmlinux 0x5f6babd0 fb_get_mode +EXPORT_SYMBOL vmlinux 0x5f702cc7 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x5f7e44ce block_truncate_page +EXPORT_SYMBOL vmlinux 0x5f891626 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x5f94977d blk_requeue_request +EXPORT_SYMBOL vmlinux 0x5fb11520 dprc_get_obj_desc +EXPORT_SYMBOL vmlinux 0x5fb200a9 input_get_keycode +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x6012fff0 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x601ec4de dget_parent +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0x602fcd73 dev_trans_start +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x605a3bcc init_buffer +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x6072f28f __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x607ef954 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x609f5b35 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x60b3be2e dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x60f16886 dcb_setapp +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x6144f940 set_create_files_as +EXPORT_SYMBOL vmlinux 0x61520529 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x615a1fe0 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x617351ad twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x617f223f elevator_exit +EXPORT_SYMBOL vmlinux 0x61847242 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x618aafb5 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x61987080 d_obtain_root +EXPORT_SYMBOL vmlinux 0x619ae03b sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61b8de2b blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x61bbfaae bioset_free +EXPORT_SYMBOL vmlinux 0x61d65448 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x61dd82ef qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x61ee7328 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x61f3ab81 phy_attached_info +EXPORT_SYMBOL vmlinux 0x61f71fa1 seq_write +EXPORT_SYMBOL vmlinux 0x61fbf108 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x6208a2e0 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x621416fd walk_stackframe +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x62427b1b dma_mmap_from_coherent +EXPORT_SYMBOL vmlinux 0x62467101 iommu_dma_init_domain +EXPORT_SYMBOL vmlinux 0x625ba420 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x62614dc3 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62748e70 acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x6287722b unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x62928294 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x6296c76b generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x62988b47 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x6299fa17 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x629a4454 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x62be3c50 bio_map_kern +EXPORT_SYMBOL vmlinux 0x62f37714 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x62f78d0a netif_napi_del +EXPORT_SYMBOL vmlinux 0x62faa178 put_disk +EXPORT_SYMBOL vmlinux 0x63001250 init_task +EXPORT_SYMBOL vmlinux 0x63021df8 pci_iomap +EXPORT_SYMBOL vmlinux 0x630a5cad mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631e03bc mmc_remove_host +EXPORT_SYMBOL vmlinux 0x6340ab56 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x6341af2c __break_lease +EXPORT_SYMBOL vmlinux 0x634f4d59 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x63699fb8 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x6379c33b shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x63920c88 set_cached_acl +EXPORT_SYMBOL vmlinux 0x639dd0af iommu_put_dma_cookie +EXPORT_SYMBOL vmlinux 0x63a01291 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63bd717b noop_qdisc +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d187b6 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x63d521cf pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f4a127 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x6403b6de iterate_fd +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x643b19e4 blk_rq_init +EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0x64531131 filp_open +EXPORT_SYMBOL vmlinux 0x645c285c scsi_unregister +EXPORT_SYMBOL vmlinux 0x646d7025 dev_uc_add +EXPORT_SYMBOL vmlinux 0x64870d45 soft_cursor +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x649b8ff7 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64b92ebf kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x6511d48c ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x651e87bb eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x652f3706 force_sig +EXPORT_SYMBOL vmlinux 0x65345022 __wake_up +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x655611d5 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x656babde get_task_io_context +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x65720ece icmpv6_send +EXPORT_SYMBOL vmlinux 0x65743839 kill_pid +EXPORT_SYMBOL vmlinux 0x65a90613 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x65b19ac3 of_device_unregister +EXPORT_SYMBOL vmlinux 0x65c823f9 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dc5da6 dev_notice +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x66000077 kobject_put +EXPORT_SYMBOL vmlinux 0x660ee597 end_page_writeback +EXPORT_SYMBOL vmlinux 0x6629faea generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0x663f9f1d qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x665e406e input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x6660286a pnp_is_active +EXPORT_SYMBOL vmlinux 0x6663e9f7 thaw_super +EXPORT_SYMBOL vmlinux 0x667cecc9 acpi_os_printf +EXPORT_SYMBOL vmlinux 0x6699d1e6 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x66a64620 padata_do_serial +EXPORT_SYMBOL vmlinux 0x66c407e9 flow_cache_fini +EXPORT_SYMBOL vmlinux 0x66c68132 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x66cf9316 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x66d14f43 skb_trim +EXPORT_SYMBOL vmlinux 0x66e893c3 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x6703ff90 ip_options_compile +EXPORT_SYMBOL vmlinux 0x670d7923 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x67135917 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x671af283 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x671e2edd inode_dio_wait +EXPORT_SYMBOL vmlinux 0x67321328 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x673a3bd3 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x674e1d59 phy_attach +EXPORT_SYMBOL vmlinux 0x6752f8c4 inet_getname +EXPORT_SYMBOL vmlinux 0x67538ae0 fget_raw +EXPORT_SYMBOL vmlinux 0x676772a1 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x676df2ba ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x677f87d3 get_tz_trend +EXPORT_SYMBOL vmlinux 0x678218e5 d_tmpfile +EXPORT_SYMBOL vmlinux 0x67860c46 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b42ae3 inet_addr_type +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c0cde0 generic_show_options +EXPORT_SYMBOL vmlinux 0x67cc6d85 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x67dd2765 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x67f54991 inet_listen +EXPORT_SYMBOL vmlinux 0x67f650b6 of_match_device +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680b0402 d_splice_alias +EXPORT_SYMBOL vmlinux 0x68105ce2 nla_append +EXPORT_SYMBOL vmlinux 0x6819a189 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x6883a199 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x6897c3f5 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x689c4702 kernel_bind +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68a3fc1c dquot_commit_info +EXPORT_SYMBOL vmlinux 0x68bf25b6 __page_symlink +EXPORT_SYMBOL vmlinux 0x68c70f02 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x68c85d90 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x68da1b44 md_reload_sb +EXPORT_SYMBOL vmlinux 0x68e38b1b tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x68ee150d i2c_verify_client +EXPORT_SYMBOL vmlinux 0x690609fe vme_irq_request +EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x69321614 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x693360c8 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x693cc423 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6981ef89 vme_register_driver +EXPORT_SYMBOL vmlinux 0x698460aa set_security_override +EXPORT_SYMBOL vmlinux 0x69870172 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x6996f6eb unregister_key_type +EXPORT_SYMBOL vmlinux 0x69aa322d input_grab_device +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69b3ad05 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x69b571b0 reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x69b788be mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x69c9453b proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x69cae19c kern_path +EXPORT_SYMBOL vmlinux 0x69d3321d simple_readpage +EXPORT_SYMBOL vmlinux 0x69fbc0a2 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0x6a009879 tty_port_open +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a0dd714 scsi_device_get +EXPORT_SYMBOL vmlinux 0x6a1394f0 set_groups +EXPORT_SYMBOL vmlinux 0x6a1a0930 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x6a47543c param_set_int +EXPORT_SYMBOL vmlinux 0x6a47711c tty_port_destroy +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a6e831a neigh_direct_output +EXPORT_SYMBOL vmlinux 0x6a78a9ac __register_chrdev +EXPORT_SYMBOL vmlinux 0x6a7e5f47 fs_bio_set +EXPORT_SYMBOL vmlinux 0x6a8b5fd4 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x6a9d620a blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x6aa545ba security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x6ab242aa dev_get_by_name +EXPORT_SYMBOL vmlinux 0x6abc2dd7 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6ad42ee9 touch_buffer +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b27eaaa udplite_table +EXPORT_SYMBOL vmlinux 0x6b2941b2 __arch_copy_to_user +EXPORT_SYMBOL vmlinux 0x6b2ae873 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b430822 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x6b4a399a seq_vprintf +EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6b69bb62 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x6b82ff03 setattr_copy +EXPORT_SYMBOL vmlinux 0x6b882c05 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x6b974217 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x6bb34cbd fence_init +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc4820b __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x6bdac757 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6be31be2 pci_bus_put +EXPORT_SYMBOL vmlinux 0x6c03eb69 elv_rb_add +EXPORT_SYMBOL vmlinux 0x6c0c036f pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x6c132218 sock_alloc +EXPORT_SYMBOL vmlinux 0x6c2cdc47 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x6c2fd8af fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x6c4391a5 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x6c447d75 vga_tryget +EXPORT_SYMBOL vmlinux 0x6c4e84eb mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x6c5d8806 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c9faa7a generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x6caae072 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x6ccf91dc rtnl_notify +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d169e93 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d35af1a xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x6d369c2a __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x6d39c80f max8925_set_bits +EXPORT_SYMBOL vmlinux 0x6d3c4f5d pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x6d45bc58 user_revoke +EXPORT_SYMBOL vmlinux 0x6d6060dd tty_name +EXPORT_SYMBOL vmlinux 0x6d98fbe1 datagram_poll +EXPORT_SYMBOL vmlinux 0x6db4168d xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x6ddbdc6d param_ops_int +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e1cfb57 init_special_inode +EXPORT_SYMBOL vmlinux 0x6e255d14 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x6e2dc733 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x6e437c89 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x6e5291d9 misc_register +EXPORT_SYMBOL vmlinux 0x6e533603 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x6e651140 cdev_init +EXPORT_SYMBOL vmlinux 0x6e6816c7 fasync_helper +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e73d892 generic_setlease +EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x6e8970ba inode_add_bytes +EXPORT_SYMBOL vmlinux 0x6e8dc56d dev_uc_sync +EXPORT_SYMBOL vmlinux 0x6e912f46 nvm_find_target_type +EXPORT_SYMBOL vmlinux 0x6e99f56d input_register_handle +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea52094 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x6ea76843 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x6ebaea5e end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x6ec8d9b4 skb_store_bits +EXPORT_SYMBOL vmlinux 0x6eca4d4f mod_timer_pending +EXPORT_SYMBOL vmlinux 0x6ed6c5bc __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x6ee2378d serio_unregister_port +EXPORT_SYMBOL vmlinux 0x6ee9a598 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x6f11d487 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x6f26cb7b idr_get_next +EXPORT_SYMBOL vmlinux 0x6f3c8731 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x6f5ec7ec idr_init +EXPORT_SYMBOL vmlinux 0x6f6feec9 vm_insert_page +EXPORT_SYMBOL vmlinux 0x6f736f68 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x6f75d061 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x6f88af14 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f993887 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x6fa5ff29 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fe6cab9 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write +EXPORT_SYMBOL vmlinux 0x6ff4f026 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x6ff50db8 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x6ff87dae ppp_channel_index +EXPORT_SYMBOL vmlinux 0x70060203 sync_inode +EXPORT_SYMBOL vmlinux 0x7018a332 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x701b241b cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x701c1e71 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x701e009b dst_alloc +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x70291652 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x703fa1ad get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x704d9774 arp_create +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x70617d19 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x708e0c21 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x70bae2e8 compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0x70c29c5e genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x70cd4965 tcp_connect +EXPORT_SYMBOL vmlinux 0x70d5341c cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x70d5a0b9 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x70dd395a mc_send_command +EXPORT_SYMBOL vmlinux 0x70f779a1 no_llseek +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x70fc0720 __napi_schedule +EXPORT_SYMBOL vmlinux 0x7123e2cf pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712d9519 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x713b5545 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x7153c625 sock_no_bind +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71748179 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71b46c18 acpi_device_hid +EXPORT_SYMBOL vmlinux 0x71bd1a12 mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0x71e71520 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x720314dd neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x72099e29 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x723036e1 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x72320347 skb_split +EXPORT_SYMBOL vmlinux 0x723dd6c9 pnp_device_detach +EXPORT_SYMBOL vmlinux 0x72485baf blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x7249e0a7 mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0x724aade0 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x72577e6b get_monotonic_coarse64 +EXPORT_SYMBOL vmlinux 0x725d5f3b poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x72658cb4 netdev_update_features +EXPORT_SYMBOL vmlinux 0x72669394 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x726c0641 filp_clone_open +EXPORT_SYMBOL vmlinux 0x72ac1e3d starget_for_each_device +EXPORT_SYMBOL vmlinux 0x72ade22d fb_pan_display +EXPORT_SYMBOL vmlinux 0x72af281f of_node_get +EXPORT_SYMBOL vmlinux 0x72aff507 get_user_pages +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72cc85bf blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x73024065 locks_init_lock +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL vmlinux 0x732840e7 cad_pid +EXPORT_SYMBOL vmlinux 0x732d1ecc phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x733067d9 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x733f3392 wireless_send_event +EXPORT_SYMBOL vmlinux 0x73463313 kern_unmount +EXPORT_SYMBOL vmlinux 0x739bf8c1 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x73ca86ba phy_device_remove +EXPORT_SYMBOL vmlinux 0x73f85c13 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x73ffb679 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x74004fd2 inode_permission +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x74172eeb mpage_writepages +EXPORT_SYMBOL vmlinux 0x74342c2a pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x746241e2 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x746e2f35 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74a8a534 dump_page +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74cfede8 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x74d4c33b fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x74dcb4c2 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x74e4b4c0 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74fa9cd6 lwtunnel_input +EXPORT_SYMBOL vmlinux 0x750b5951 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x751d7d0c inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x752d544f inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x753ecc6a neigh_table_init +EXPORT_SYMBOL vmlinux 0x755d664a blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x7565e296 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x75811312 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x759926de release_firmware +EXPORT_SYMBOL vmlinux 0x75ad8416 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75bf12b4 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x75c3f58a framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x75d10f97 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x75da2c24 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x75da9103 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x761a2034 simple_getattr +EXPORT_SYMBOL vmlinux 0x76313cab rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764f7514 phy_resume +EXPORT_SYMBOL vmlinux 0x765af271 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x7667bfdf blk_end_request_all +EXPORT_SYMBOL vmlinux 0x76680f1c dprc_set_obj_irq +EXPORT_SYMBOL vmlinux 0x76706088 rwsem_wake +EXPORT_SYMBOL vmlinux 0x767a624f blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x767dd8fd acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0x7681c7a1 unregister_nls +EXPORT_SYMBOL vmlinux 0x76a53e9d cpumask_any_but +EXPORT_SYMBOL vmlinux 0x76a57007 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x76a580bd arp_send +EXPORT_SYMBOL vmlinux 0x76a5b343 iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x76b104be kernel_write +EXPORT_SYMBOL vmlinux 0x76b4c149 input_register_device +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76f723c4 drop_super +EXPORT_SYMBOL vmlinux 0x771a81d5 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x771bc283 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x773da5d8 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x774e8f4f elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x775930c7 tcf_hash_create +EXPORT_SYMBOL vmlinux 0x776fcc8a security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x77756a7c dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x7793c021 dcb_getapp +EXPORT_SYMBOL vmlinux 0x77988e86 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77bed1d9 tc_classify +EXPORT_SYMBOL vmlinux 0x77f53abc acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x7810bdf0 register_gifconf +EXPORT_SYMBOL vmlinux 0x7814f09c zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x7826499a pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x78286ab2 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x7832ac8a __ip_select_ident +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x78454e41 mount_ns +EXPORT_SYMBOL vmlinux 0x78465fc2 posix_acl_init +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x78536340 of_node_put +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x789cc514 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x78a597c8 bd_set_size +EXPORT_SYMBOL vmlinux 0x78b94408 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x78c19a6d mempool_resize +EXPORT_SYMBOL vmlinux 0x78d105aa md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x78d6544b ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x78d66cab abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78ee68b8 dquot_enable +EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method +EXPORT_SYMBOL vmlinux 0x793d871e sock_init_data +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x798dac19 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79a98ea7 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79b2bc1d input_register_handler +EXPORT_SYMBOL vmlinux 0x7a0630c3 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x7a3a74b9 input_flush_device +EXPORT_SYMBOL vmlinux 0x7a449331 __free_pages +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a5fb5be scsi_block_requests +EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a842832 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x7a872367 scmd_printk +EXPORT_SYMBOL vmlinux 0x7a8b885c dprc_close +EXPORT_SYMBOL vmlinux 0x7a9fdbf6 devm_release_resource +EXPORT_SYMBOL vmlinux 0x7a9fe38d dev_add_offload +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab1548f sk_alloc +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7abb1ae4 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x7acb3c53 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ae01821 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x7ae5c63f xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x7af2e5ec pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x7b01ec2a scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc +EXPORT_SYMBOL vmlinux 0x7b2da43c mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x7b4d3076 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x7b6646bb _raw_read_lock +EXPORT_SYMBOL vmlinux 0x7b6b06b6 nvm_put_blk +EXPORT_SYMBOL vmlinux 0x7b726e7f ip6_frag_match +EXPORT_SYMBOL vmlinux 0x7b72a95c of_device_alloc +EXPORT_SYMBOL vmlinux 0x7b809578 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x7b8e049c compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0x7bb84501 tcf_hash_check +EXPORT_SYMBOL vmlinux 0x7bbb1112 pci_get_device +EXPORT_SYMBOL vmlinux 0x7bd3a1d8 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x7bd86c85 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x7bdedc24 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x7be728c4 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x7bfa1975 of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c140587 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c2c7264 __register_nls +EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc +EXPORT_SYMBOL vmlinux 0x7c35ef57 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x7c429dc6 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c51619a __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x7c59752f padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x7c604cd5 sg_miter_next +EXPORT_SYMBOL vmlinux 0x7c6ace2c blk_init_tags +EXPORT_SYMBOL vmlinux 0x7c6b6377 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7c9c58ad freeze_bdev +EXPORT_SYMBOL vmlinux 0x7cab2e2c __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x7cac6b1c first_ec +EXPORT_SYMBOL vmlinux 0x7cac921e from_kprojid +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cc25a9b __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x7cc47853 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x7ccf4526 tcp_req_err +EXPORT_SYMBOL vmlinux 0x7ce06639 param_set_bint +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce83365 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0x7cf1a2b1 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d447efd udp_proc_register +EXPORT_SYMBOL vmlinux 0x7d4f19f2 block_read_full_page +EXPORT_SYMBOL vmlinux 0x7d62447f mii_link_ok +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d7d63df cpumask_next_and +EXPORT_SYMBOL vmlinux 0x7d8119c1 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port +EXPORT_SYMBOL vmlinux 0x7dae469c pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x7dba4e9b processors +EXPORT_SYMBOL vmlinux 0x7dc7e6a3 xattr_full_name +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e0e8c3c key_task_permission +EXPORT_SYMBOL vmlinux 0x7e1937c2 __sb_end_write +EXPORT_SYMBOL vmlinux 0x7e20646f page_mapping +EXPORT_SYMBOL vmlinux 0x7e37a4f5 pci_request_region +EXPORT_SYMBOL vmlinux 0x7e3834bc genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x7e55ea5c __neigh_create +EXPORT_SYMBOL vmlinux 0x7e62eb93 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x7e7a7cc7 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x7e8baaca dm_put_table_device +EXPORT_SYMBOL vmlinux 0x7e9da777 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x7e9f054f tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x7ea40708 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x7ebd4be4 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x7edc317a compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ee7a42a __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x7ef30d95 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x7f011d04 param_set_uint +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f171d56 dprc_get_obj_count +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7f2749b5 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x7f2e5c10 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x7f324f4d try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7f3c49f5 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x7f456a69 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x7f46bb7e param_set_bool +EXPORT_SYMBOL vmlinux 0x7f4fba4d unregister_shrinker +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f8faa58 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x7f9c9fef tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x7fb508fe abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x7fba1731 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x7fc1c746 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe38f48 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x7ffc0d39 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x800fb92b full_name_hash +EXPORT_SYMBOL vmlinux 0x801cc594 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x80212a3e registered_fb +EXPORT_SYMBOL vmlinux 0x80235e45 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x8030e956 copy_to_iter +EXPORT_SYMBOL vmlinux 0x8047f8ae param_ops_invbool +EXPORT_SYMBOL vmlinux 0x8058004e register_console +EXPORT_SYMBOL vmlinux 0x80630a8b eth_validate_addr +EXPORT_SYMBOL vmlinux 0x806b4d80 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x8076ae15 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x807f7c94 inet6_getname +EXPORT_SYMBOL vmlinux 0x80877ce8 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x80a04525 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x80c1f727 flow_cache_init +EXPORT_SYMBOL vmlinux 0x80c2e8f3 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x80c6c1d3 replace_mount_options +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80cd6042 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d6f5bb input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x810519fd hashlen_string +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x812106a2 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x81251b18 single_open +EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x8164ecfe kernel_sendpage +EXPORT_SYMBOL vmlinux 0x81751562 __quota_error +EXPORT_SYMBOL vmlinux 0x81add1bc nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x81ae3501 dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x81b48565 vme_slot_num +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x8201020a tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x82035e1f set_anon_super +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x820a5062 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0x821d0464 mmc_release_host +EXPORT_SYMBOL vmlinux 0x8226636c pci_map_rom +EXPORT_SYMBOL vmlinux 0x82391707 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x82490c3e nf_afinfo +EXPORT_SYMBOL vmlinux 0x825f288b fb_set_suspend +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x8271d275 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x827ba108 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x827df327 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x82ac85a2 input_release_device +EXPORT_SYMBOL vmlinux 0x82af1d80 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x82ba1603 vfs_writev +EXPORT_SYMBOL vmlinux 0x82dd9c19 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x82eda649 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x82edddcb __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x8305cf30 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x830f5dcc __get_user_pages +EXPORT_SYMBOL vmlinux 0x834f5ac7 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x83724b10 tcp_poll +EXPORT_SYMBOL vmlinux 0x8377a63b dpbp_get_attributes +EXPORT_SYMBOL vmlinux 0x8377b6e4 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x8379814a set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x8380d2b5 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x8384647a acpi_map_pxm_to_online_node +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x83a0ad1e unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83ec4412 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x83fa6236 clkdev_add +EXPORT_SYMBOL vmlinux 0x84012b86 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x8402aa33 of_root +EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x8419f7cb ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x841aa14b phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x843000db i2c_master_recv +EXPORT_SYMBOL vmlinux 0x843f5070 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x844c0369 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x846ccf04 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x8473d809 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x84890390 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x84a165fb call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x84b9b01f vga_client_register +EXPORT_SYMBOL vmlinux 0x84c4ff4d nobh_write_begin +EXPORT_SYMBOL vmlinux 0x84eb4437 rps_needed +EXPORT_SYMBOL vmlinux 0x84eb6abe xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x84f8f882 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x85061b76 _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x85263904 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x853aec7c xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x853ccc10 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x857c1e79 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x85825898 add_timer +EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x85b20672 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85caf5d6 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x85cdffcb tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x85d826d3 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e73d49 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x862e17b6 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x8652d10b sock_from_file +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x866badb8 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x86710e66 scsi_print_result +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x869387a1 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86ab627d backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x86b1de3b irq_to_desc +EXPORT_SYMBOL vmlinux 0x86ea4d38 complete_all +EXPORT_SYMBOL vmlinux 0x86eb46bf scsi_device_resume +EXPORT_SYMBOL vmlinux 0x86f3a6a4 da903x_query_status +EXPORT_SYMBOL vmlinux 0x86fa22cc elevator_change +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x8708ef7d phy_device_create +EXPORT_SYMBOL vmlinux 0x87109b57 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x871d2f37 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x87628c2e dev_uc_flush +EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write +EXPORT_SYMBOL vmlinux 0x877c8326 compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x879dde92 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x87b70c09 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x87e2b293 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x87eb69f5 irq_stat +EXPORT_SYMBOL vmlinux 0x87fd468d vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x88255e3a ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x882e6ebd fscrypt_fname_encrypted_size +EXPORT_SYMBOL vmlinux 0x88468648 audit_log_start +EXPORT_SYMBOL vmlinux 0x88472040 dpbp_open +EXPORT_SYMBOL vmlinux 0x88496cce mmc_cleanup_queue +EXPORT_SYMBOL vmlinux 0x885aaad8 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x8862b9b7 generic_write_end +EXPORT_SYMBOL vmlinux 0x88648e10 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x88900e17 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x88a163cf fifo_set_limit +EXPORT_SYMBOL vmlinux 0x88b4e83b down_trylock +EXPORT_SYMBOL vmlinux 0x88c5b8de sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x88c6276c alloc_pages_current +EXPORT_SYMBOL vmlinux 0x88c74d1e qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x88c8f085 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x88d3f12c jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88df2409 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x890fcb85 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x892ba14b xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x89311dad pci_clear_master +EXPORT_SYMBOL vmlinux 0x89362797 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x89578abb pcim_iomap +EXPORT_SYMBOL vmlinux 0x8957ac94 put_io_context +EXPORT_SYMBOL vmlinux 0x895cd145 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x89728145 fscrypt_fname_usr_to_disk +EXPORT_SYMBOL vmlinux 0x89aaf5ab rwsem_down_write_failed_killable +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89edacd5 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x8a0cd7cb devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x8a0e96be tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x8a0fb697 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a2ec366 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x8a3a5a00 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0x8a3ab6a7 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a529dc7 up_write +EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x8a6c4f2c __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a7ddae7 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x8a80d7a5 acpi_error +EXPORT_SYMBOL vmlinux 0x8a85f039 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x8a876da2 dev_change_xdp_fd +EXPORT_SYMBOL vmlinux 0x8a92f8ad pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x8a93ac99 page_symlink +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8add5823 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0x8ae99469 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b4139ab fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b43c8d1 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x8b484538 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b7817d4 rt6_lookup +EXPORT_SYMBOL vmlinux 0x8b79b094 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x8b79e176 alloc_disk +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8bb941bc i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x8bbe96ff blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x8bccca37 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x8bd0a3fd _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x8c5a4467 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c744b65 passthru_features_check +EXPORT_SYMBOL vmlinux 0x8c930ca6 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x8cacda5b ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x8cafdaa2 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x8cd7fb45 get_cached_acl +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8d15114a __release_region +EXPORT_SYMBOL vmlinux 0x8d21e6fd mmc_get_card +EXPORT_SYMBOL vmlinux 0x8d3941c8 bmap +EXPORT_SYMBOL vmlinux 0x8d3b3a9e twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x8d4c20b8 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x8d521157 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d569839 sock_wfree +EXPORT_SYMBOL vmlinux 0x8d6b3cff twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d740b87 pci_get_slot +EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x8d8f3621 tso_start +EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface +EXPORT_SYMBOL vmlinux 0x8db0d329 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x8db9f941 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x8de2af67 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x8defdc6d seq_putc +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8dfff466 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x8e1e0f7e __put_page +EXPORT_SYMBOL vmlinux 0x8e2093a1 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x8e31b623 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x8e716a09 inet_sendpage +EXPORT_SYMBOL vmlinux 0x8e720af8 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e813b12 posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x8e8999fd d_instantiate +EXPORT_SYMBOL vmlinux 0x8ebaa876 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x8ed14077 sget +EXPORT_SYMBOL vmlinux 0x8ee6ad63 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x8ef5f705 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x8efb1ee3 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x8efe91cb nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x8f0a4513 skb_pad +EXPORT_SYMBOL vmlinux 0x8f0bcd1f mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x8f3787be panic_notifier_list +EXPORT_SYMBOL vmlinux 0x8f4ce6e4 amba_find_device +EXPORT_SYMBOL vmlinux 0x8f554147 skb_make_writable +EXPORT_SYMBOL vmlinux 0x8f5f1c43 __lock_page +EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard +EXPORT_SYMBOL vmlinux 0x8f70be70 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x8f725604 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x8f806649 vme_dma_request +EXPORT_SYMBOL vmlinux 0x8f88823e migrate_page_copy +EXPORT_SYMBOL vmlinux 0x8fa091aa clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x8fb362a3 of_phy_attach +EXPORT_SYMBOL vmlinux 0x8fc418b4 downgrade_write +EXPORT_SYMBOL vmlinux 0x8fdf772a init_timer_key +EXPORT_SYMBOL vmlinux 0x8fffdfb2 param_set_short +EXPORT_SYMBOL vmlinux 0x90032b30 efi +EXPORT_SYMBOL vmlinux 0x901cf952 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x901db35a blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x903fd015 __kernel_write +EXPORT_SYMBOL vmlinux 0x90518e6e bio_integrity_free +EXPORT_SYMBOL vmlinux 0x90589b12 param_get_byte +EXPORT_SYMBOL vmlinux 0x905ad9cc page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x9071981e sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x9072743c genlmsg_put +EXPORT_SYMBOL vmlinux 0x908dc5cd d_add +EXPORT_SYMBOL vmlinux 0x90925dd6 dprc_get_res_count +EXPORT_SYMBOL vmlinux 0x909469ca copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x90955b0a stop_tty +EXPORT_SYMBOL vmlinux 0x90abadb7 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x90ac3102 dev_base_lock +EXPORT_SYMBOL vmlinux 0x90b1b345 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x90c68f2b consume_skb +EXPORT_SYMBOL vmlinux 0x90dc03d5 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x90e8fba0 kobject_get +EXPORT_SYMBOL vmlinux 0x90ff9e30 dquot_resume +EXPORT_SYMBOL vmlinux 0x91002f8d PageMovable +EXPORT_SYMBOL vmlinux 0x913d3547 dquot_destroy +EXPORT_SYMBOL vmlinux 0x9141718e inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x914ebf71 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x9173e0b1 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x918353d5 __genl_register_family +EXPORT_SYMBOL vmlinux 0x918c6374 mempool_alloc +EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x920319d8 nvm_get_bb_tbl +EXPORT_SYMBOL vmlinux 0x920e4808 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x9218cff1 adjust_resource +EXPORT_SYMBOL vmlinux 0x921d618e tty_unlock +EXPORT_SYMBOL vmlinux 0x92252a1b sock_i_uid +EXPORT_SYMBOL vmlinux 0x9225558b twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x9226e993 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x922c9187 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923b64d7 skb_put +EXPORT_SYMBOL vmlinux 0x9242e9ce dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x92484c4c set_posix_acl +EXPORT_SYMBOL vmlinux 0x924d84d9 vme_slave_request +EXPORT_SYMBOL vmlinux 0x92672eca zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x92730b8d vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x9281a886 xen_dma_ops +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x9291ddf6 release_pages +EXPORT_SYMBOL vmlinux 0x92ab2e5d d_rehash +EXPORT_SYMBOL vmlinux 0x92d1a342 mdiobus_read +EXPORT_SYMBOL vmlinux 0x92d3bc35 may_umount +EXPORT_SYMBOL vmlinux 0x92dbe7b9 __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x92ed2a55 sock_create +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x93048b28 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x93177bf7 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x932339f1 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x933819d5 nvm_get_blk +EXPORT_SYMBOL vmlinux 0x933e1809 simple_empty +EXPORT_SYMBOL vmlinux 0x93505f48 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x935dedfc input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x936791f3 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x9390f226 ida_destroy +EXPORT_SYMBOL vmlinux 0x93af035f blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93b5f12d xfrm_state_update +EXPORT_SYMBOL vmlinux 0x93c04309 netdev_all_lower_get_next_rcu +EXPORT_SYMBOL vmlinux 0x93c1a079 igrab +EXPORT_SYMBOL vmlinux 0x93cec7b3 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x93f3e52b acpi_extract_package +EXPORT_SYMBOL vmlinux 0x93f411dc inet_frags_init +EXPORT_SYMBOL vmlinux 0x93fab054 nobh_writepage +EXPORT_SYMBOL vmlinux 0x93fc5bd7 compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x93fddb0a lock_page_memcg +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x941617ff lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x941cf877 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x941ffbf4 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x942ec26b devm_ioport_map +EXPORT_SYMBOL vmlinux 0x94596dda rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x946d0f10 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x9481a63b cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x94839dd9 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x94878f97 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x9487ada4 make_kprojid +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x949b754f mempool_destroy +EXPORT_SYMBOL vmlinux 0x94b456c3 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x94df92f6 mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x94e8be33 pnp_device_attach +EXPORT_SYMBOL vmlinux 0x94e9a404 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x94fc00e5 dq_data_lock +EXPORT_SYMBOL vmlinux 0x94fe5b0a try_module_get +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception +EXPORT_SYMBOL vmlinux 0x953b7d8d input_unregister_handle +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x95577553 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x9558b2e7 jbd2_journal_inode_add_wait +EXPORT_SYMBOL vmlinux 0x95615017 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x956c9030 security_path_mknod +EXPORT_SYMBOL vmlinux 0x95702170 nd_device_notify +EXPORT_SYMBOL vmlinux 0x95a4def0 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x95b629a1 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x95b831fb skb_insert +EXPORT_SYMBOL vmlinux 0x95d51e3f vfs_setpos +EXPORT_SYMBOL vmlinux 0x95ef4efd sock_edemux +EXPORT_SYMBOL vmlinux 0x95f82f0d tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x95ffe1d0 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0x9605c4fa file_open_root +EXPORT_SYMBOL vmlinux 0x961946bb gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x96220280 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x962808f0 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x9638581d inet_ioctl +EXPORT_SYMBOL vmlinux 0x9639e7d9 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x964d77e8 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x966bccdf smp_call_function_many +EXPORT_SYMBOL vmlinux 0x966d749c default_llseek +EXPORT_SYMBOL vmlinux 0x967a1aac kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x967aa18a of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x96813ce0 inet_gso_segment +EXPORT_SYMBOL vmlinux 0x96910a2a seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x96917992 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96beecf2 dquot_get_state +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96dc7658 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x97047bca bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x973033c4 dput +EXPORT_SYMBOL vmlinux 0x9731a6c0 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x97608f3b param_set_ushort +EXPORT_SYMBOL vmlinux 0x9763b4d8 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x97878627 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x979c09c1 pci_dev_get +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97be51b2 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x97bfd754 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x97ce4f60 vme_lm_request +EXPORT_SYMBOL vmlinux 0x97db8d9c pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x97ea5400 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x97f100ec truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x97f18b46 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x97f1ed65 __nla_put +EXPORT_SYMBOL vmlinux 0x97fdbab9 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x9801425a inet_bind +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x983732c8 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x984c5a7e nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x985bbac2 dev_driver_string +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x986f936b fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x9877c562 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x987fda24 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x989bd8e4 current_in_userns +EXPORT_SYMBOL vmlinux 0x98a502cb invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x98b62324 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98dc4132 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x98f59fe6 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x98f6843a dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available +EXPORT_SYMBOL vmlinux 0x990b48fa swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x990c353a __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x990d6e64 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x99110b03 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf +EXPORT_SYMBOL vmlinux 0x992e5e6f ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x994912a4 mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x994b0ddd of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99577fab sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x995db6cf inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x99702079 vfs_unlink +EXPORT_SYMBOL vmlinux 0x99849750 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x9988ec5b neigh_lookup +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99b16f8c release_resource +EXPORT_SYMBOL vmlinux 0x99d16880 kobject_set_name +EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size +EXPORT_SYMBOL vmlinux 0x99f35cf2 lock_fb_info +EXPORT_SYMBOL vmlinux 0x9a02e7e4 tty_write_room +EXPORT_SYMBOL vmlinux 0x9a0524b4 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x9a12a9c5 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a2ecbce xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x9a453fee padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x9a471ff0 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x9a4e1384 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x9a4e87e3 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x9a58b401 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x9a61fe38 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x9a81c4e1 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x9a908b80 test_and_clear_bit +EXPORT_SYMBOL vmlinux 0x9a98ad94 fget +EXPORT_SYMBOL vmlinux 0x9aaae67e devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x9aad6cd2 inode_change_ok +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9b07f02a qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x9b0bb9a3 mmc_can_reset +EXPORT_SYMBOL vmlinux 0x9b1ceeca netdev_emerg +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b6a48b6 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x9b7276c4 uart_match_port +EXPORT_SYMBOL vmlinux 0x9b8706ff tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x9b894625 dprc_get_obj_region +EXPORT_SYMBOL vmlinux 0x9b92e0fc km_state_expired +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9bc6ef31 add_wait_queue +EXPORT_SYMBOL vmlinux 0x9bcc2716 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9bea3cd6 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x9bf9841e posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x9c235844 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c58e893 pci_match_id +EXPORT_SYMBOL vmlinux 0x9c5bc552 finish_wait +EXPORT_SYMBOL vmlinux 0x9c8f015d compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x9c929563 bio_split +EXPORT_SYMBOL vmlinux 0x9c9a6326 of_get_next_parent +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cdba3ac fscrypt_decrypt_page +EXPORT_SYMBOL vmlinux 0x9cea7ed7 elv_add_request +EXPORT_SYMBOL vmlinux 0x9cecaeb5 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d104b2d xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy +EXPORT_SYMBOL vmlinux 0x9d378f70 queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x9d396460 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x9d41a23f mc_get_version +EXPORT_SYMBOL vmlinux 0x9d57e2f5 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x9d5e84c4 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x9d6c8a0e bdget +EXPORT_SYMBOL vmlinux 0x9d6eb83c netdev_state_change +EXPORT_SYMBOL vmlinux 0x9d74176f xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x9d780c79 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x9d8bab9c d_path +EXPORT_SYMBOL vmlinux 0x9d9cb617 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x9dbd3a70 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x9dc15d15 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x9dc81e85 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x9dd62023 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x9e05cd90 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e1e037e xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x9e2c87f9 blkdev_get +EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e32474b mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x9e489416 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e562a9e iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e711641 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e9eb34c acpi_check_dsm +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9eabcc9f input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x9ebadc62 kobject_init +EXPORT_SYMBOL vmlinux 0x9ec36ea3 input_close_device +EXPORT_SYMBOL vmlinux 0x9ec98ca8 vm_node_stat +EXPORT_SYMBOL vmlinux 0x9ee82cd6 uuid_be_index +EXPORT_SYMBOL vmlinux 0x9f1008d4 dm_register_target +EXPORT_SYMBOL vmlinux 0x9f11be7e down_killable +EXPORT_SYMBOL vmlinux 0x9f26abe6 ns_capable +EXPORT_SYMBOL vmlinux 0x9f279709 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x9f31e3fd param_get_int +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4eed45 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x9f518afa __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x9f67375e dm_get_device +EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa47415 fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x9fb1d0ed uuid_is_valid +EXPORT_SYMBOL vmlinux 0x9fbe84f3 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe40735 phy_stop +EXPORT_SYMBOL vmlinux 0x9fe7104e blk_start_queue +EXPORT_SYMBOL vmlinux 0x9ff7b8e1 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa010db0d gen_pool_alloc_algo +EXPORT_SYMBOL vmlinux 0xa0149394 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xa01a0361 single_open_size +EXPORT_SYMBOL vmlinux 0xa02f33fc mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xa0355171 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xa03c43dd i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa0574a45 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa07275d3 register_key_type +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa0a7ef65 file_update_time +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b9f944 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xa0be2351 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xa0d5d3f3 dev_change_carrier +EXPORT_SYMBOL vmlinux 0xa0d7a8a4 iterate_dir +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fb7122 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0xa103252e phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts +EXPORT_SYMBOL vmlinux 0xa17a0d7d nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xa1865463 mount_bdev +EXPORT_SYMBOL vmlinux 0xa18fb6ce to_nd_btt +EXPORT_SYMBOL vmlinux 0xa196809f ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1c169b1 neigh_for_each +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1e149e8 dqput +EXPORT_SYMBOL vmlinux 0xa1e4bea6 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xa1ff5336 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xa1ffc02e nf_getsockopt +EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa2206011 request_key_async +EXPORT_SYMBOL vmlinux 0xa239bdcc skb_tx_error +EXPORT_SYMBOL vmlinux 0xa25ed9f9 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0xa267a4a8 phy_init_hw +EXPORT_SYMBOL vmlinux 0xa2769f45 fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0xa2b25e71 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xa2b8a2d6 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0xa2b8a607 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xa2c2ab41 __vfs_read +EXPORT_SYMBOL vmlinux 0xa2cb493b netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xa2e04efe pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xa2f6e0bf neigh_table_clear +EXPORT_SYMBOL vmlinux 0xa2fcc0d5 get_disk +EXPORT_SYMBOL vmlinux 0xa3091a42 netlink_ack +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa323e3f4 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xa329b1fe of_io_request_and_map +EXPORT_SYMBOL vmlinux 0xa35edcaa blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xa35fe34d acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa395ea37 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xa3a86346 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xa3ad379a gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xa3b3e3a3 vfs_whiteout +EXPORT_SYMBOL vmlinux 0xa3c7942f rfkill_alloc +EXPORT_SYMBOL vmlinux 0xa3c8d8e5 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xa3cf966f skb_pull +EXPORT_SYMBOL vmlinux 0xa4020d64 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0xa40ba163 vfs_symlink +EXPORT_SYMBOL vmlinux 0xa42794e1 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xa4446e25 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xa44db13f xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xa4511467 crc16 +EXPORT_SYMBOL vmlinux 0xa453cca5 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xa459b836 block_invalidatepage +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa494a9b4 vme_bus_type +EXPORT_SYMBOL vmlinux 0xa4b95d9d input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xa4c1f57c vfs_rename +EXPORT_SYMBOL vmlinux 0xa4db486a pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xa4ea1cb8 cfb_copyarea +EXPORT_SYMBOL vmlinux 0xa4f49332 udp_poll +EXPORT_SYMBOL vmlinux 0xa510c182 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa56b73d3 do_splice_direct +EXPORT_SYMBOL vmlinux 0xa58303ad nd_btt_probe +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa59bebc5 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0xa5a2554c ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le +EXPORT_SYMBOL vmlinux 0xa5afd267 fscrypt_encrypt_page +EXPORT_SYMBOL vmlinux 0xa5e75e9a acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xa600faf9 deactivate_super +EXPORT_SYMBOL vmlinux 0xa6159171 zpool_register_driver +EXPORT_SYMBOL vmlinux 0xa61cbd5f posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xa62323d1 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xa62629f9 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xa635b864 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0xa63b9746 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa64d8c5b inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xa6564e14 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xa656fd42 open_exec +EXPORT_SYMBOL vmlinux 0xa65d10be vfs_create +EXPORT_SYMBOL vmlinux 0xa66117a8 inet_add_offload +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6840b1d xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xa684d7bc iproc_msi_exit +EXPORT_SYMBOL vmlinux 0xa6867769 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0xa6960d38 register_md_personality +EXPORT_SYMBOL vmlinux 0xa6ae9dcb pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error +EXPORT_SYMBOL vmlinux 0xa6da3390 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xa6df8774 set_device_ro +EXPORT_SYMBOL vmlinux 0xa6ed8889 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xa6ee656c crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xa6fccfa3 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes +EXPORT_SYMBOL vmlinux 0xa72f6505 __scsi_add_device +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa7360d26 of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0xa742ad0b tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xa7473a09 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xa74a279b read_dev_sector +EXPORT_SYMBOL vmlinux 0xa77620f8 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xa78dffd6 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xa7904be1 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xa7921cb3 ps2_handle_response +EXPORT_SYMBOL vmlinux 0xa7be526f _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xa7c0d544 forget_cached_acl +EXPORT_SYMBOL vmlinux 0xa7c17ec0 path_nosuid +EXPORT_SYMBOL vmlinux 0xa7c46958 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xa7c9e7e4 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xa7ca3456 neigh_update +EXPORT_SYMBOL vmlinux 0xa7d7e5e4 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xa7f362b6 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0xa80512ac phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0xa820e66f msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0xa82749ea pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xa8277700 nvm_erase_blk +EXPORT_SYMBOL vmlinux 0xa82b3b21 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xa833d22d blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0xa838c6c3 ata_dev_printk +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8582e40 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xa864d3de udplite_prot +EXPORT_SYMBOL vmlinux 0xa868002d blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xa86ebd18 skb_seq_read +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa87cf413 clear_bit +EXPORT_SYMBOL vmlinux 0xa885c654 set_bh_page +EXPORT_SYMBOL vmlinux 0xa8866216 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xa887743d skb_free_datagram +EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end +EXPORT_SYMBOL vmlinux 0xa8d6b8fd mmc_request_done +EXPORT_SYMBOL vmlinux 0xa8da7825 to_ndd +EXPORT_SYMBOL vmlinux 0xa8e3a06d free_netdev +EXPORT_SYMBOL vmlinux 0xa8e3f588 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa9218a88 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xa93e3303 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa97f8a25 lookup_bdev +EXPORT_SYMBOL vmlinux 0xa981f3e5 single_release +EXPORT_SYMBOL vmlinux 0xa99538a3 __sb_start_write +EXPORT_SYMBOL vmlinux 0xa9979ff4 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9b248b6 idr_for_each +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9db6c6f blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xa9de469b dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xa9ed04c3 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xaa1f744c abort_creds +EXPORT_SYMBOL vmlinux 0xaa3db5ce xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xaa48dbd2 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xaa4ae268 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xaa582651 pcim_pin_device +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa77e6b3 wake_up_process +EXPORT_SYMBOL vmlinux 0xaab30f74 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xaaca8d9e pci_set_power_state +EXPORT_SYMBOL vmlinux 0xaacc3134 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad9fd42 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xaadb20c7 start_tty +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaaf414f9 dev_change_flags +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab16b0b5 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xab264fde chacha20_block +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3f0b15 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0xab40cca9 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xab535393 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xab551fad acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xab57c5d4 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab77f674 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab8d09de generic_getxattr +EXPORT_SYMBOL vmlinux 0xabbbd444 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xabc8e806 register_framebuffer +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabd3a0ba tty_do_resize +EXPORT_SYMBOL vmlinux 0xabde2af8 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xabea15a9 kfree_skb +EXPORT_SYMBOL vmlinux 0xabff9616 param_ops_short +EXPORT_SYMBOL vmlinux 0xabff96fa tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xac04ba2d __page_cache_alloc +EXPORT_SYMBOL vmlinux 0xac0a5387 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xac11847e dst_discard_out +EXPORT_SYMBOL vmlinux 0xac15a90d filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac22989c sock_no_connect +EXPORT_SYMBOL vmlinux 0xac2e8eb1 param_get_ushort +EXPORT_SYMBOL vmlinux 0xac346fc4 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac614c4f dm_table_get_md +EXPORT_SYMBOL vmlinux 0xac6737d5 blk_init_queue +EXPORT_SYMBOL vmlinux 0xac78aa8b input_open_device +EXPORT_SYMBOL vmlinux 0xac838f1f nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xac8d91aa get_io_context +EXPORT_SYMBOL vmlinux 0xac8ee2a7 __put_cred +EXPORT_SYMBOL vmlinux 0xac93ee64 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xac9d2d83 register_sysctl_table +EXPORT_SYMBOL vmlinux 0xaca56bd8 arm_smccc_hvc +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb4663e request_key +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd81e8e ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacde6818 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xacedfd9c tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xacf01938 iommu_get_dma_cookie +EXPORT_SYMBOL vmlinux 0xacf2b649 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xacf47211 loop_register_transfer +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xad1d1170 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xad225f66 i2c_clients_command +EXPORT_SYMBOL vmlinux 0xad3408e7 ether_setup +EXPORT_SYMBOL vmlinux 0xad50b647 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xad585425 qcom_scm_pas_supported +EXPORT_SYMBOL vmlinux 0xad6261f4 vfs_readv +EXPORT_SYMBOL vmlinux 0xad6650c8 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xad7dfc49 swake_up_locked +EXPORT_SYMBOL vmlinux 0xad849b90 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad976a89 dmam_pool_create +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xadca8652 udp6_csum_init +EXPORT_SYMBOL vmlinux 0xadcb48bd nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xadf7e47c __cpu_online_mask +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae08f858 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xae15ac74 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xae40fc3e filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xae4837df prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xae510eb0 kobject_del +EXPORT_SYMBOL vmlinux 0xae5772d2 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xae7db00a fscrypt_process_policy +EXPORT_SYMBOL vmlinux 0xae8574fa kernel_connect +EXPORT_SYMBOL vmlinux 0xae8c4d0c set_bit +EXPORT_SYMBOL vmlinux 0xae917ee9 skb_clone +EXPORT_SYMBOL vmlinux 0xaeb9e808 fscrypt_pullback_bio_page +EXPORT_SYMBOL vmlinux 0xaebf51ac __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xaed89f13 vfs_rmdir +EXPORT_SYMBOL vmlinux 0xaedce30a __block_write_full_page +EXPORT_SYMBOL vmlinux 0xaedd095b nf_reinject +EXPORT_SYMBOL vmlinux 0xaee084b7 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xaf05a18f backlight_device_register +EXPORT_SYMBOL vmlinux 0xaf1b4d12 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xaf1f5055 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf507de1 __arch_copy_from_user +EXPORT_SYMBOL vmlinux 0xaf5b24b3 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xaf5b9530 key_validate +EXPORT_SYMBOL vmlinux 0xaf642d6f xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup +EXPORT_SYMBOL vmlinux 0xaf89a31f md_check_recovery +EXPORT_SYMBOL vmlinux 0xaf9a24fb address_space_init_once +EXPORT_SYMBOL vmlinux 0xafb2f1bc bio_put +EXPORT_SYMBOL vmlinux 0xaff5e5cf of_get_next_child +EXPORT_SYMBOL vmlinux 0xb00b6f01 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0xb030daaa nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xb0322b7b dev_warn +EXPORT_SYMBOL vmlinux 0xb040c7e7 mdio_device_remove +EXPORT_SYMBOL vmlinux 0xb0530235 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb0698bb9 seq_release_private +EXPORT_SYMBOL vmlinux 0xb08fedd1 vm_map_ram +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0c84e6d touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xb0cef060 inode_set_flags +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb106fc15 ab3100_event_register +EXPORT_SYMBOL vmlinux 0xb10e470b mdio_bus_type +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb137f4ad __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset +EXPORT_SYMBOL vmlinux 0xb14f0386 unlock_buffer +EXPORT_SYMBOL vmlinux 0xb1545eec cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb1896db7 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0xb195ad83 block_write_full_page +EXPORT_SYMBOL vmlinux 0xb19f2015 vme_master_request +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1e522ac __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xb1f7b290 netif_device_detach +EXPORT_SYMBOL vmlinux 0xb1ffb3da netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0xb201e162 tcp_check_req +EXPORT_SYMBOL vmlinux 0xb208fd1d seq_file_path +EXPORT_SYMBOL vmlinux 0xb20ecf88 acpi_run_osc +EXPORT_SYMBOL vmlinux 0xb22fa5b1 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xb23ccd2c skb_append +EXPORT_SYMBOL vmlinux 0xb244b65d fence_array_create +EXPORT_SYMBOL vmlinux 0xb24a5f84 d_exact_alias +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb26e028b inet_gro_complete +EXPORT_SYMBOL vmlinux 0xb27da1a9 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xb2845834 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0xb289414f blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xb28d3a4b tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xb2a210f7 __seq_open_private +EXPORT_SYMBOL vmlinux 0xb2c6e6ab pci_release_region +EXPORT_SYMBOL vmlinux 0xb2f05527 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0xb3008418 simple_release_fs +EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xb34294c0 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0xb350298e get_mm_exe_file +EXPORT_SYMBOL vmlinux 0xb3517e22 __sk_dst_check +EXPORT_SYMBOL vmlinux 0xb368fb8b fscrypt_initialize +EXPORT_SYMBOL vmlinux 0xb37bee52 rename_lock +EXPORT_SYMBOL vmlinux 0xb39382de dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xb39cb1da ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xb3aa21e8 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0xb3ae7f0b eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xb3bb5c61 get_gendisk +EXPORT_SYMBOL vmlinux 0xb3ccc7e0 d_add_ci +EXPORT_SYMBOL vmlinux 0xb3d29d1c of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3e590f8 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xb3e73bda phy_driver_register +EXPORT_SYMBOL vmlinux 0xb3edd28b dquot_quota_on +EXPORT_SYMBOL vmlinux 0xb3f0f71b lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xb3f1cd20 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xb3f32f6e sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb4235fea vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb43a637d mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xb446800b __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xb46bba49 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class +EXPORT_SYMBOL vmlinux 0xb4888f09 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xb48cfb2a __mdiobus_register +EXPORT_SYMBOL vmlinux 0xb48ec691 kthread_stop +EXPORT_SYMBOL vmlinux 0xb49d81d9 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xb4a3cb57 dpbp_disable +EXPORT_SYMBOL vmlinux 0xb4a7931d alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xb4a9caef bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0xb4b16231 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xb4bebb2c poll_initwait +EXPORT_SYMBOL vmlinux 0xb4d1440c pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xb4d4f9ee udp_gro_complete +EXPORT_SYMBOL vmlinux 0xb4ec2bda bdi_init +EXPORT_SYMBOL vmlinux 0xb4ec43ee __nd_driver_register +EXPORT_SYMBOL vmlinux 0xb4f62c10 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xb4fc735b idr_remove +EXPORT_SYMBOL vmlinux 0xb50dcd3d __d_lookup_done +EXPORT_SYMBOL vmlinux 0xb51ec178 input_free_device +EXPORT_SYMBOL vmlinux 0xb5359208 blk_integrity_register +EXPORT_SYMBOL vmlinux 0xb552e40f pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb57b3853 generic_ro_fops +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5d48928 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xb5e80195 set_nlink +EXPORT_SYMBOL vmlinux 0xb5fe6b28 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xb605ff85 of_get_mac_address +EXPORT_SYMBOL vmlinux 0xb60825fd ip_getsockopt +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb6280ae6 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xb628df3e dev_get_iflink +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb635f5e5 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xb63892c4 pci_bus_type +EXPORT_SYMBOL vmlinux 0xb6403a11 pci_fixup_device +EXPORT_SYMBOL vmlinux 0xb6477f78 inode_needs_sync +EXPORT_SYMBOL vmlinux 0xb649961e __scm_destroy +EXPORT_SYMBOL vmlinux 0xb65b74a6 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xb66f3b51 dma_mark_declared_memory_occupied +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67da1ed mii_check_media +EXPORT_SYMBOL vmlinux 0xb68b5bc8 simple_pin_fs +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb69f9b00 mempool_free +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6ba5c7d pci_choose_state +EXPORT_SYMBOL vmlinux 0xb6cbf23b compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xb6d3daf1 qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0xb71ce653 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xb71fb74f _raw_read_trylock +EXPORT_SYMBOL vmlinux 0xb7420ec7 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xb742e687 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb74e6b59 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xb74ec4b8 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xb752dc85 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb7810e6c nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xb7a55e6c misc_deregister +EXPORT_SYMBOL vmlinux 0xb7c240ff scsi_target_resume +EXPORT_SYMBOL vmlinux 0xb7c31cd2 fscrypt_get_ctx +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d857ba iptun_encaps +EXPORT_SYMBOL vmlinux 0xb7f511da lockref_get +EXPORT_SYMBOL vmlinux 0xb81c1645 pci_set_vpd_size +EXPORT_SYMBOL vmlinux 0xb82aba11 param_get_short +EXPORT_SYMBOL vmlinux 0xb84d8fdb gen_pool_free +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb87e86c8 udp_gro_receive +EXPORT_SYMBOL vmlinux 0xb8875172 kill_bdev +EXPORT_SYMBOL vmlinux 0xb89b96d0 mmc_detect_change +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8eec98b del_timer +EXPORT_SYMBOL vmlinux 0xb8f5e865 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0xb91d31d2 bdev_read_only +EXPORT_SYMBOL vmlinux 0xb92158d0 __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xb9348de0 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xb935de49 node_data +EXPORT_SYMBOL vmlinux 0xb93c4e20 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xb93d1970 skb_push +EXPORT_SYMBOL vmlinux 0xb94b8897 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xb97fa44b radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0xb981cb7f nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xb9890642 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xb9d241ea md_unregister_thread +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9f5c2ac blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0xb9f68fa5 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xba142962 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xba27fbf4 nvm_bb_tbl_fold +EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read +EXPORT_SYMBOL vmlinux 0xba2ffec2 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xba3a001d rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0xba3cf658 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xba3d6e09 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xbab3988b netdev_features_change +EXPORT_SYMBOL vmlinux 0xbad0c402 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xbae5d504 inet_stream_connect +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb2663c2 d_alloc_name +EXPORT_SYMBOL vmlinux 0xbb2731a1 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb3ca6cc blk_get_queue +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb7761fc ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xbb7c5680 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0xbb7deb64 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbbe169dc dev_set_mtu +EXPORT_SYMBOL vmlinux 0xbc173fcd gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc3ed028 kobject_add +EXPORT_SYMBOL vmlinux 0xbc3edbb9 fscrypt_release_ctx +EXPORT_SYMBOL vmlinux 0xbc49f1b5 __inet_hash +EXPORT_SYMBOL vmlinux 0xbc5ac74b tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xbc5b03bd acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xbc6a2e17 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xbca84faa of_find_node_by_name +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcd69779 max8925_reg_read +EXPORT_SYMBOL vmlinux 0xbce3face mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0xbce4c4ee swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0xbcf232f6 __check_sticky +EXPORT_SYMBOL vmlinux 0xbcf5f97f vfs_llseek +EXPORT_SYMBOL vmlinux 0xbd1127b6 inode_init_owner +EXPORT_SYMBOL vmlinux 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd5e2e9f scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xbd60fc50 read_cache_page +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbda8981f mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xbdbc13a1 complete +EXPORT_SYMBOL vmlinux 0xbdc97773 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xbdde0062 mmc_fixup_device +EXPORT_SYMBOL vmlinux 0xbde8e3e2 __devm_request_region +EXPORT_SYMBOL vmlinux 0xbdf67e13 have_submounts +EXPORT_SYMBOL vmlinux 0xbdf78fc8 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xbdfd9884 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0xbe1add73 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe1fe92b find_get_entry +EXPORT_SYMBOL vmlinux 0xbe248a39 read_cache_pages +EXPORT_SYMBOL vmlinux 0xbe4d0c7f netdev_alert +EXPORT_SYMBOL vmlinux 0xbe4f96df nvm_end_io +EXPORT_SYMBOL vmlinux 0xbe54683d vme_irq_generate +EXPORT_SYMBOL vmlinux 0xbe6342c0 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xbe6390a5 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xbe6ada7d uuid_le_index +EXPORT_SYMBOL vmlinux 0xbe775c07 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xbe951529 devm_ioremap +EXPORT_SYMBOL vmlinux 0xbeb08a41 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xbebc63b2 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xbec5e1b4 pci_platform_rom +EXPORT_SYMBOL vmlinux 0xbec8993e devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0xbecd193e vga_get +EXPORT_SYMBOL vmlinux 0xbed9b261 sget_userns +EXPORT_SYMBOL vmlinux 0xbedbe719 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xbedcad15 ip_do_fragment +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf04bb55 mdio_device_create +EXPORT_SYMBOL vmlinux 0xbf27b129 netdev_printk +EXPORT_SYMBOL vmlinux 0xbf2db3d2 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xbf2e8db4 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xbf4bd945 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xbf546a15 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xbf7014f4 inet6_bind +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8a4ac2 simple_dname +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfc4c0ee blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xbfd9a207 fence_signal +EXPORT_SYMBOL vmlinux 0xbfe7fb62 param_get_charp +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff7ad6d jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xc00e5c52 serio_reconnect +EXPORT_SYMBOL vmlinux 0xc0123864 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xc03706d2 fb_set_var +EXPORT_SYMBOL vmlinux 0xc0548dcd mntget +EXPORT_SYMBOL vmlinux 0xc062f51c mb_cache_entry_delete_block +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07ad130 seq_escape +EXPORT_SYMBOL vmlinux 0xc07c2f98 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0872a25 of_platform_device_create +EXPORT_SYMBOL vmlinux 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL vmlinux 0xc0948e32 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xc097ba9d mutex_unlock +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0af4f06 input_set_keycode +EXPORT_SYMBOL vmlinux 0xc0c03e3d kill_fasync +EXPORT_SYMBOL vmlinux 0xc0c71bf3 vme_init_bridge +EXPORT_SYMBOL vmlinux 0xc0f1e22c vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xc0fc7323 get_task_exe_file +EXPORT_SYMBOL vmlinux 0xc10d7521 fd_install +EXPORT_SYMBOL vmlinux 0xc1319e85 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xc1361a5c dev_mc_add +EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit +EXPORT_SYMBOL vmlinux 0xc162ddf8 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xc1676470 dcache_dir_close +EXPORT_SYMBOL vmlinux 0xc18bc924 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0xc18f3aff send_sig +EXPORT_SYMBOL vmlinux 0xc194e089 simple_setattr +EXPORT_SYMBOL vmlinux 0xc1aa5686 neigh_parms_release +EXPORT_SYMBOL vmlinux 0xc1bbae66 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1db39e0 bio_clone_fast +EXPORT_SYMBOL vmlinux 0xc1deb35b __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc208cfa8 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xc21ab2c7 tcp_disconnect +EXPORT_SYMBOL vmlinux 0xc235488e cdev_alloc +EXPORT_SYMBOL vmlinux 0xc23da166 km_policy_expired +EXPORT_SYMBOL vmlinux 0xc25218a8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0xc267a69e dprc_get_obj_irq +EXPORT_SYMBOL vmlinux 0xc2738fd0 put_tty_driver +EXPORT_SYMBOL vmlinux 0xc28e79e9 compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xc28ea13d netpoll_print_options +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2bbbc06 d_delete +EXPORT_SYMBOL vmlinux 0xc2bf9106 generic_removexattr +EXPORT_SYMBOL vmlinux 0xc2d084ea get_fs_type +EXPORT_SYMBOL vmlinux 0xc2d1aa33 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2ea4327 __d_drop +EXPORT_SYMBOL vmlinux 0xc2ed4f27 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xc2fcf6f9 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xc2ff67d7 tcp_seq_open +EXPORT_SYMBOL vmlinux 0xc304850b alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc31671f4 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xc31a795b alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xc355c467 generic_file_mmap +EXPORT_SYMBOL vmlinux 0xc364ae22 iomem_resource +EXPORT_SYMBOL vmlinux 0xc36e4a27 vfs_link +EXPORT_SYMBOL vmlinux 0xc37a47df of_clk_get +EXPORT_SYMBOL vmlinux 0xc385ccef dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xc38cba50 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0xc3a7be25 lg_global_lock +EXPORT_SYMBOL vmlinux 0xc3bfea21 find_inode_nowait +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3d00b7f kill_pgrp +EXPORT_SYMBOL vmlinux 0xc3d543f6 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xc40cac02 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xc414d653 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xc42133d0 up_read +EXPORT_SYMBOL vmlinux 0xc44f2cd2 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xc45553ad d_set_fallthru +EXPORT_SYMBOL vmlinux 0xc46fa638 module_layout +EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress +EXPORT_SYMBOL vmlinux 0xc4867e59 phy_connect +EXPORT_SYMBOL vmlinux 0xc496c90c alloc_fcdev +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4afbf41 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xc4b3fea1 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xc4b7879e fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0xc4cbcf6d pci_disable_device +EXPORT_SYMBOL vmlinux 0xc4d8b853 module_refcount +EXPORT_SYMBOL vmlinux 0xc4ec55de mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xc4f2b05f generic_start_io_acct +EXPORT_SYMBOL vmlinux 0xc51072fa netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xc5169ea2 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xc52e6f93 make_kgid +EXPORT_SYMBOL vmlinux 0xc52e960b submit_bio_wait +EXPORT_SYMBOL vmlinux 0xc53ba6b4 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0xc5466625 flush_signals +EXPORT_SYMBOL vmlinux 0xc556f798 key_revoke +EXPORT_SYMBOL vmlinux 0xc55b761a dev_addr_init +EXPORT_SYMBOL vmlinux 0xc565f6c5 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xc56a0a7f gen_new_estimator +EXPORT_SYMBOL vmlinux 0xc56a199e uart_resume_port +EXPORT_SYMBOL vmlinux 0xc57253d9 pnp_register_driver +EXPORT_SYMBOL vmlinux 0xc58435a4 console_start +EXPORT_SYMBOL vmlinux 0xc584cff4 acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0xc58da090 unregister_cdrom +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5d0a1db inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xc5dbc130 sock_update_memcg +EXPORT_SYMBOL vmlinux 0xc5e10915 pci_enable_device +EXPORT_SYMBOL vmlinux 0xc5fbab28 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xc5fccab6 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc60c3393 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xc60fb766 key_put +EXPORT_SYMBOL vmlinux 0xc6152873 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xc61789fe tcp_child_process +EXPORT_SYMBOL vmlinux 0xc61df6d1 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc635cc36 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xc662f977 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xc665f163 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc67c020e uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xc6a4a29b dev_err +EXPORT_SYMBOL vmlinux 0xc6a6d375 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xc6b3a9f6 tty_register_device +EXPORT_SYMBOL vmlinux 0xc6c4c17f set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6cc50c1 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xc6ed6be3 compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc7241666 serio_bus +EXPORT_SYMBOL vmlinux 0xc72a64bd dm_put_device +EXPORT_SYMBOL vmlinux 0xc73f42ec devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc75bd4c1 prepare_to_swait +EXPORT_SYMBOL vmlinux 0xc763d777 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xc76f9931 dev_addr_del +EXPORT_SYMBOL vmlinux 0xc77751ea dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xc77af40f tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7933cd9 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7aa1c19 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xc7b1e4fb inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xc7ba79bd pskb_expand_head +EXPORT_SYMBOL vmlinux 0xc7bad054 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xc7bddeba bdgrab +EXPORT_SYMBOL vmlinux 0xc7c361a1 dump_skip +EXPORT_SYMBOL vmlinux 0xc7c8d408 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xc7f43889 mdio_device_free +EXPORT_SYMBOL vmlinux 0xc806b399 netlink_set_err +EXPORT_SYMBOL vmlinux 0xc8195a3a i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xc8203eb4 seq_lseek +EXPORT_SYMBOL vmlinux 0xc8338f87 dev_alert +EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xc846e574 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc8546373 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc886ddf7 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc898130a udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xc89f79d4 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8ad1169 acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xc8b2ad89 udp_table +EXPORT_SYMBOL vmlinux 0xc8b3fca2 generic_readlink +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8d1392f bio_alloc_pages +EXPORT_SYMBOL vmlinux 0xc8f6f5f6 generic_listxattr +EXPORT_SYMBOL vmlinux 0xc90c2745 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc946f209 xfrm_register_type +EXPORT_SYMBOL vmlinux 0xc953a945 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xc958ee8c posix_test_lock +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc99e2d62 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xc9beb8f1 __getblk_slow +EXPORT_SYMBOL vmlinux 0xc9f9d2e0 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xca189862 param_set_copystring +EXPORT_SYMBOL vmlinux 0xca30cd9e scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xca427249 of_mm_gpiochip_add_data +EXPORT_SYMBOL vmlinux 0xca44e0c0 phy_suspend +EXPORT_SYMBOL vmlinux 0xca52e215 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent +EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order +EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xca8d3f70 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcabc7888 idr_is_empty +EXPORT_SYMBOL vmlinux 0xcac48425 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0xcad9df3f jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xcadd551c try_to_release_page +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaf3ac29 dquot_transfer +EXPORT_SYMBOL vmlinux 0xcb0206ce scsi_register +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb128141 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0xcb527fcb xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcb99c178 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0xcb9fc3bb nvm_register_mgr +EXPORT_SYMBOL vmlinux 0xcba5a52b path_is_under +EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbdb8c1b __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xcbec3ccf drop_nlink +EXPORT_SYMBOL vmlinux 0xcbeeb765 sk_free +EXPORT_SYMBOL vmlinux 0xcbf660a1 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xcbfa1c25 amba_driver_unregister +EXPORT_SYMBOL vmlinux 0xcbff5e68 mempool_create +EXPORT_SYMBOL vmlinux 0xcbffc183 blk_put_request +EXPORT_SYMBOL vmlinux 0xcc0a10cd inet_csk_accept +EXPORT_SYMBOL vmlinux 0xcc196090 amba_device_register +EXPORT_SYMBOL vmlinux 0xcc1d52d3 free_user_ns +EXPORT_SYMBOL vmlinux 0xcc22276b setup_new_exec +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc41c552 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xcc442d8f xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xcc461484 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc5f40ca dev_alloc_name +EXPORT_SYMBOL vmlinux 0xcc824cf1 iget_locked +EXPORT_SYMBOL vmlinux 0xcc836c98 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xcc8d3f4f acpi_os_execute +EXPORT_SYMBOL vmlinux 0xcca3fed4 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xcca86991 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xccb2a252 simple_get_link +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccc313dc kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0xccfd9b9a jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xccfef9a9 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0xcd03df5e resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xcd15ccb2 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xcd1951e4 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xcd1bc526 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd487f08 serio_rescan +EXPORT_SYMBOL vmlinux 0xcd52043a padata_start +EXPORT_SYMBOL vmlinux 0xcd5957f2 tcp_shutdown +EXPORT_SYMBOL vmlinux 0xcd66e12c ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xcd7acced generic_end_io_acct +EXPORT_SYMBOL vmlinux 0xcd7e4483 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xcd83a121 elv_rb_find +EXPORT_SYMBOL vmlinux 0xcd86f26b freezing_slow_path +EXPORT_SYMBOL vmlinux 0xcd876aac qcom_scm_pas_init_image +EXPORT_SYMBOL vmlinux 0xcd93a496 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xcdc034c1 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcde48f11 dev_get_flags +EXPORT_SYMBOL vmlinux 0xce07d70b ps2_drain +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce78333b simple_nosetlease +EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift +EXPORT_SYMBOL vmlinux 0xce7bfe70 vm_brk +EXPORT_SYMBOL vmlinux 0xce8ababc __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xce955456 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free +EXPORT_SYMBOL vmlinux 0xceaf4780 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xceb1717d completion_done +EXPORT_SYMBOL vmlinux 0xceccd3da blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0xceccddbb kernel_param_lock +EXPORT_SYMBOL vmlinux 0xced71c7c netlink_capable +EXPORT_SYMBOL vmlinux 0xcede8e98 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xcee1f245 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xcee45178 compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xceed096c netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xceff8e36 inc_nlink +EXPORT_SYMBOL vmlinux 0xcf2f9f7e pci_restore_state +EXPORT_SYMBOL vmlinux 0xcf312ff5 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0xcf38c0ec blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xcf3cacf3 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xcf43f8d9 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xcf5a4294 tty_port_hangup +EXPORT_SYMBOL vmlinux 0xcf683c12 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xcf8c35b0 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xcf9ace6d clkdev_hw_alloc +EXPORT_SYMBOL vmlinux 0xcf9adb09 fb_deferred_io_mmap +EXPORT_SYMBOL vmlinux 0xcfb4a296 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xcfd90b38 i2c_del_driver +EXPORT_SYMBOL vmlinux 0xcff733ca jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xd0026d1e import_iovec +EXPORT_SYMBOL vmlinux 0xd005aaeb arp_xmit +EXPORT_SYMBOL vmlinux 0xd00cad5b i2c_register_driver +EXPORT_SYMBOL vmlinux 0xd015d6f5 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0xd026271a dma_async_device_register +EXPORT_SYMBOL vmlinux 0xd0539ddc amba_driver_register +EXPORT_SYMBOL vmlinux 0xd06a837c devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0bdfb47 dst_release +EXPORT_SYMBOL vmlinux 0xd0d1af26 pci_write_vpd +EXPORT_SYMBOL vmlinux 0xd0df9f95 __f_setown +EXPORT_SYMBOL vmlinux 0xd0ec115b neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f28ece key_reject_and_link +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd11a02e4 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xd124cc51 dst_init +EXPORT_SYMBOL vmlinux 0xd138423f nla_put +EXPORT_SYMBOL vmlinux 0xd15abba4 of_node_to_nid +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd187117f abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0xd18e1dec unregister_md_personality +EXPORT_SYMBOL vmlinux 0xd19da337 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xd1aeffb6 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xd1b105e6 pci_get_class +EXPORT_SYMBOL vmlinux 0xd1d2ad94 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xd1d87dc2 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1db09e1 dm_io +EXPORT_SYMBOL vmlinux 0xd2129554 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xd2212ef8 inet_recvmsg +EXPORT_SYMBOL vmlinux 0xd2286c03 tcf_hashinfo_destroy +EXPORT_SYMBOL vmlinux 0xd22f86c5 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xd2422575 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xd251445f gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd2579ab1 dev_set_group +EXPORT_SYMBOL vmlinux 0xd25bc5d4 csum_tcpudp_nofold +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd25e16e3 remove_wait_queue +EXPORT_SYMBOL vmlinux 0xd2737889 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd27ba6f2 generic_perform_write +EXPORT_SYMBOL vmlinux 0xd28795a2 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xd28cee96 of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0xd2a621b1 pci_get_subsys +EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc +EXPORT_SYMBOL vmlinux 0xd2b2b8c1 phy_init_eee +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2ff009e dec_node_page_state +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd32402d0 scsi_host_get +EXPORT_SYMBOL vmlinux 0xd3259d65 test_and_set_bit +EXPORT_SYMBOL vmlinux 0xd3559ef4 __memset +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd3740851 fence_add_callback +EXPORT_SYMBOL vmlinux 0xd3990865 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xd3a82a9e eth_gro_receive +EXPORT_SYMBOL vmlinux 0xd3af3b07 __elv_add_request +EXPORT_SYMBOL vmlinux 0xd3b12742 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3c77732 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xd3defb98 d_find_alias +EXPORT_SYMBOL vmlinux 0xd3fbb02a param_get_bool +EXPORT_SYMBOL vmlinux 0xd41508b6 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0xd41fe818 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xd431157e __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xd44da3d7 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xd44ecd44 would_dump +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd466a6e1 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xd4718ad6 load_nls +EXPORT_SYMBOL vmlinux 0xd475fd63 nf_log_set +EXPORT_SYMBOL vmlinux 0xd47e5589 vfs_mknod +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed +EXPORT_SYMBOL vmlinux 0xd49e6198 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xd4a73818 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xd4d3a5c7 generic_write_checks +EXPORT_SYMBOL vmlinux 0xd4d8a972 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xd4e4811d genphy_config_init +EXPORT_SYMBOL vmlinux 0xd4e7aa3d ioremap_cache +EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd52b66cb proc_remove +EXPORT_SYMBOL vmlinux 0xd56b6490 nvm_mark_blk +EXPORT_SYMBOL vmlinux 0xd5745749 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xd578c0e2 devm_memunmap +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd5d0db86 km_query +EXPORT_SYMBOL vmlinux 0xd5e92070 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xd5feb5cd jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd63472d9 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd6536793 __module_get +EXPORT_SYMBOL vmlinux 0xd655f199 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xd668f4dd scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xd677e496 vme_register_bridge +EXPORT_SYMBOL vmlinux 0xd68452ac gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68dc26a pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xd6946a3c security_d_instantiate +EXPORT_SYMBOL vmlinux 0xd69ef97d posix_acl_alloc +EXPORT_SYMBOL vmlinux 0xd6a6214d cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xd6ae393e pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xd6b70b78 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xd6d20e87 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fdc2d9 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xd712807c scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xd71a2cbc ip_setsockopt +EXPORT_SYMBOL vmlinux 0xd71ec430 generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0xd722945d mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xd73c223b noop_fsync +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd7708da1 qdisc_list_del +EXPORT_SYMBOL vmlinux 0xd77289fb blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0xd7bf2e04 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xd7bf88e4 dma_release_from_coherent +EXPORT_SYMBOL vmlinux 0xd7c47ec5 pci_enable_msix +EXPORT_SYMBOL vmlinux 0xd7ccc4db jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7f57255 radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xd7f70e64 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xd7fc9371 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0xd8293414 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0xd82d5e0b xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xd836b5f4 kset_register +EXPORT_SYMBOL vmlinux 0xd838ff7b check_disk_size_change +EXPORT_SYMBOL vmlinux 0xd83ef998 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0xd841a12b xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0xd8482a23 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0xd85839b4 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b1e4f8 fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xd8b4bb8f blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xd8d1dfaf _dev_info +EXPORT_SYMBOL vmlinux 0xd8d9930d truncate_pagecache +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8e63bab param_ops_string +EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0xd92f4364 get_thermal_instance +EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0xd9468197 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xd94743ef node_states +EXPORT_SYMBOL vmlinux 0xd94fc9f1 sock_register +EXPORT_SYMBOL vmlinux 0xd96d1d7b neigh_seq_next +EXPORT_SYMBOL vmlinux 0xd979fb18 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd986e4a6 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xd9872b09 get_super_thawed +EXPORT_SYMBOL vmlinux 0xd98870a6 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xd9934d8c delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xd9ad8823 nmi_panic +EXPORT_SYMBOL vmlinux 0xd9c144ef key_alloc +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9e55039 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xd9eb303e __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xd9ede00c inode_init_always +EXPORT_SYMBOL vmlinux 0xd9f46adc dquot_file_open +EXPORT_SYMBOL vmlinux 0xd9f779e7 clkdev_alloc +EXPORT_SYMBOL vmlinux 0xda01479c mempool_create_node +EXPORT_SYMBOL vmlinux 0xda0f41a6 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xda25c90d sk_stop_timer +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda40e61d clk_get +EXPORT_SYMBOL vmlinux 0xda4200d7 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0xda5f1168 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0xda74271b __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda7e2aec scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xdaaccbe1 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xdab02190 __posix_acl_create +EXPORT_SYMBOL vmlinux 0xdab1e49e elv_register_queue +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdac72f64 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdb12ea59 bio_phys_segments +EXPORT_SYMBOL vmlinux 0xdb3ec0de fddi_type_trans +EXPORT_SYMBOL vmlinux 0xdb44fc6f phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xdb4e55f7 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xdb5472fe tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb9209f0 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0xdb99a006 __scm_send +EXPORT_SYMBOL vmlinux 0xdbd04f9e xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xdbd6732b radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xdbede9a8 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc0c96ef pci_release_regions +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc1ac4fb wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xdc26ccf5 dev_add_pack +EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc4da319 component_match_add_release +EXPORT_SYMBOL vmlinux 0xdc4faa4c twl6040_power +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc824174 mutex_lock +EXPORT_SYMBOL vmlinux 0xdc990ced seq_read +EXPORT_SYMBOL vmlinux 0xdc9a46ee ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xdc9fb972 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xdcaffae8 pnp_start_dev +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdcbfa9da send_sig_info +EXPORT_SYMBOL vmlinux 0xdccf7ee1 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xdce6045b __napi_complete +EXPORT_SYMBOL vmlinux 0xdce9e510 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xdcf16c49 compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0xdcf3ea11 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0xdcfb4a02 d_set_d_op +EXPORT_SYMBOL vmlinux 0xdd1090b8 dma_common_mmap +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd34226c bioset_create +EXPORT_SYMBOL vmlinux 0xdd61a6a8 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd7c0d56 pci_irq_vector +EXPORT_SYMBOL vmlinux 0xdda0e7c3 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0xddae634e load_nls_default +EXPORT_SYMBOL vmlinux 0xddcd5612 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xdddbf550 param_ops_ushort +EXPORT_SYMBOL vmlinux 0xddea9863 bio_init +EXPORT_SYMBOL vmlinux 0xde434656 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0xde85288c uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xdebd9e97 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xdec26950 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xdecc389a locks_copy_lock +EXPORT_SYMBOL vmlinux 0xded9ab0f __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xdee58efc from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xdeead34a scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xdefe8032 inet6_release +EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices +EXPORT_SYMBOL vmlinux 0xdf16ccf6 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xdf20b403 tcp_proc_register +EXPORT_SYMBOL vmlinux 0xdf25b424 mmc_erase +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf355970 fscrypt_d_ops +EXPORT_SYMBOL vmlinux 0xdf368dfb lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0xdf408d3e nobh_write_end +EXPORT_SYMBOL vmlinux 0xdf46e745 dev_deactivate +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf629628 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xdf787369 dummy_dma_ops +EXPORT_SYMBOL vmlinux 0xdf8b2ea1 genphy_update_link +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdfa1c81f xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xdfb253f2 kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0xdfb5bb3b file_remove_privs +EXPORT_SYMBOL vmlinux 0xdfb95928 netif_skb_features +EXPORT_SYMBOL vmlinux 0xdfbf11d3 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfc65b8d blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xdfd56323 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xdff047fa pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffb03da netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xe02f139b __devm_release_region +EXPORT_SYMBOL vmlinux 0xe038afc0 dquot_acquire +EXPORT_SYMBOL vmlinux 0xe03e8295 dst_destroy +EXPORT_SYMBOL vmlinux 0xe045bacf padata_do_parallel +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe059b65e pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xe05faa51 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe0636c8e netif_device_attach +EXPORT_SYMBOL vmlinux 0xe065be60 blk_free_tags +EXPORT_SYMBOL vmlinux 0xe06a8a9d iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister +EXPORT_SYMBOL vmlinux 0xe08507be netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe087df31 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xe0944452 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0xe0950c2f nonseekable_open +EXPORT_SYMBOL vmlinux 0xe0a864ea proc_set_user +EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe0aca5e5 __inode_permission +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b55355 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xe0bb72e6 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xe0c628fe __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xe0d63450 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0xe0e27bf7 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xe110189e ida_pre_get +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe11f3cbc _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0xe12cb1fb mii_nway_restart +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe1a64432 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0xe1aebeaf blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe2393786 override_creds +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2ad7714 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0xe2c1ec10 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xe2d11b7d fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e06529 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe3023183 ppp_input_error +EXPORT_SYMBOL vmlinux 0xe3049bce netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xe3081d06 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0xe32f37ee con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xe32f3ea6 pskb_extract +EXPORT_SYMBOL vmlinux 0xe338ec2c ppp_input +EXPORT_SYMBOL vmlinux 0xe358cd48 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xe35d6dea phy_start_aneg +EXPORT_SYMBOL vmlinux 0xe36e7c47 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xe37c616b __blk_run_queue +EXPORT_SYMBOL vmlinux 0xe381ca89 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3b4da56 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xe3b9526d may_umount_tree +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3c6b7bb qdisc_destroy +EXPORT_SYMBOL vmlinux 0xe3cd6e94 tso_build_hdr +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3dcee1b locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xe3ddc63d ata_link_printk +EXPORT_SYMBOL vmlinux 0xe3f0e9e2 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xe400cef4 pci_find_capability +EXPORT_SYMBOL vmlinux 0xe414f040 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xe42f4e85 inet_accept +EXPORT_SYMBOL vmlinux 0xe4361516 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xe43853b3 skb_checksum +EXPORT_SYMBOL vmlinux 0xe4461605 key_type_keyring +EXPORT_SYMBOL vmlinux 0xe45a1e04 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xe45dd245 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0xe469671f phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xe47f3e57 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xe47f9c74 iov_iter_init +EXPORT_SYMBOL vmlinux 0xe48f41c8 nd_device_unregister +EXPORT_SYMBOL vmlinux 0xe4975efe blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xe4b24594 pci_scan_bus +EXPORT_SYMBOL vmlinux 0xe4b970e8 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xe4d144cc devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xe4dfbc2d __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xe4e537e1 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xe4e8054b free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe4eb1e93 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe555a7ed i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xe566da71 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xe5677d4a default_file_splice_read +EXPORT_SYMBOL vmlinux 0xe56e8859 find_lock_entry +EXPORT_SYMBOL vmlinux 0xe5765799 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe58bb41d bdevname +EXPORT_SYMBOL vmlinux 0xe59fa7c0 netif_rx_ni +EXPORT_SYMBOL vmlinux 0xe5acba8b release_sock +EXPORT_SYMBOL vmlinux 0xe5b95046 invalidate_bdev +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5cb874c flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe648e6e6 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xe6511a8e input_set_capability +EXPORT_SYMBOL vmlinux 0xe65453fb devm_gpiod_get +EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xe67c01db xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xe682643b xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xe694daef key_payload_reserve +EXPORT_SYMBOL vmlinux 0xe695d1b8 dev_mc_init +EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe6b19340 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xe6b2f17a param_set_charp +EXPORT_SYMBOL vmlinux 0xe6befef0 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0xe6c26945 save_mount_options +EXPORT_SYMBOL vmlinux 0xe6c4e8d6 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xe6c8b441 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xe6fb8e93 update_devfreq +EXPORT_SYMBOL vmlinux 0xe6fe049a tty_check_change +EXPORT_SYMBOL vmlinux 0xe70d9383 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xe71ce8cd dump_emit +EXPORT_SYMBOL vmlinux 0xe729e425 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0xe7307046 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xe7397660 inet_gro_receive +EXPORT_SYMBOL vmlinux 0xe7499a2e __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xe75d0246 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xe76df328 reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0xe7781113 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0xe784b0d1 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0xe788f535 blk_get_request +EXPORT_SYMBOL vmlinux 0xe78eb9ef blkdev_put +EXPORT_SYMBOL vmlinux 0xe79d6754 mdiobus_write +EXPORT_SYMBOL vmlinux 0xe79d8021 tty_port_close_start +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7aafd9d fence_free +EXPORT_SYMBOL vmlinux 0xe7b49162 bdi_register +EXPORT_SYMBOL vmlinux 0xe7b8b4d3 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe81a9213 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xe81caa4b down_read +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe824cf11 fb_blank +EXPORT_SYMBOL vmlinux 0xe838e649 __brelse +EXPORT_SYMBOL vmlinux 0xe8457eb2 clkdev_drop +EXPORT_SYMBOL vmlinux 0xe8540107 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xe860954b tty_port_put +EXPORT_SYMBOL vmlinux 0xe8672091 qdisc_list_add +EXPORT_SYMBOL vmlinux 0xe86a80a2 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xe86b8f0d unregister_binfmt +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe8851da2 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xe887faf4 xen_vcpu_id +EXPORT_SYMBOL vmlinux 0xe89e8964 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8b3c801 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xe8b48c59 vfs_statfs +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8e2b499 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe960875d elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0xe9762202 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0xe97b62ee xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xe99bcdaa dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xe9cfcfa6 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xe9d1f0b2 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9fa0f86 irq_set_chip +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea1046e6 scsi_init_io +EXPORT_SYMBOL vmlinux 0xea11dec0 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xea17af86 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xea2fd4c1 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0xea303a08 done_path_create +EXPORT_SYMBOL vmlinux 0xea78cadd param_get_string +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xeaa4fac5 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xeaa59644 rtnl_unicast +EXPORT_SYMBOL vmlinux 0xeab42842 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xeac0a23c blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xeac88768 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeaf552de seq_hex_dump +EXPORT_SYMBOL vmlinux 0xeafdbefb generic_writepages +EXPORT_SYMBOL vmlinux 0xeb0e8631 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb43bf95 seq_path +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb4c862f csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xeb6379fb inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xeb6ad259 register_shrinker +EXPORT_SYMBOL vmlinux 0xeb79df00 nf_log_packet +EXPORT_SYMBOL vmlinux 0xeb884ab7 nd_device_register +EXPORT_SYMBOL vmlinux 0xebab77ff dev_get_stats +EXPORT_SYMBOL vmlinux 0xebe658a5 tty_set_operations +EXPORT_SYMBOL vmlinux 0xebfc7e28 param_set_ullong +EXPORT_SYMBOL vmlinux 0xec147461 register_qdisc +EXPORT_SYMBOL vmlinux 0xec1d9c8b elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xec2cfdeb dev_crit +EXPORT_SYMBOL vmlinux 0xec2d1b68 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xec2d7a28 pnp_get_resource +EXPORT_SYMBOL vmlinux 0xec43fb30 do_SAK +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec4d9f75 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0xec7651ad __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xec8123dd blk_queue_split +EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xecd0a0fa devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0xece39896 km_policy_notify +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecfa4055 sock_no_accept +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed00ef63 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xed08c799 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xed12ec0b param_ops_byte +EXPORT_SYMBOL vmlinux 0xed433664 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xeda3ea92 down_write +EXPORT_SYMBOL vmlinux 0xedb095f5 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xedb14de7 dprc_set_obj_label +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc917b3 padata_stop +EXPORT_SYMBOL vmlinux 0xedcce6c0 eth_type_trans +EXPORT_SYMBOL vmlinux 0xedd0cd89 radix_tree_delete +EXPORT_SYMBOL vmlinux 0xedd70878 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xedfaaea8 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xee1f5e56 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee43b816 lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xee658470 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee7fad84 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xee86eda0 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea69cca pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeebb3f19 napi_disable +EXPORT_SYMBOL vmlinux 0xeebb515d devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0xeec2c7cf ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0xeecbc8a8 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0xeed42a3c __SetPageMovable +EXPORT_SYMBOL vmlinux 0xeee1c87e dev_emerg +EXPORT_SYMBOL vmlinux 0xeeef9516 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xeef0c08c finish_open +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xef093525 sock_alloc_file +EXPORT_SYMBOL vmlinux 0xef26e0af simple_transaction_read +EXPORT_SYMBOL vmlinux 0xef33cb5e netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0xef3739d8 pci_select_bars +EXPORT_SYMBOL vmlinux 0xef3764eb set_page_dirty +EXPORT_SYMBOL vmlinux 0xef401307 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xef4c232a fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0xef583c02 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xef7186f0 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0xef8c30db netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xef948f34 tcf_em_register +EXPORT_SYMBOL vmlinux 0xefa149a2 vme_bus_num +EXPORT_SYMBOL vmlinux 0xefa70b9b tty_port_close_end +EXPORT_SYMBOL vmlinux 0xefbe8030 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefdbdc4b down_read_trylock +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefe2a846 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf0394fcc tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xf03b195c __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xf046f7c5 tcf_hash_search +EXPORT_SYMBOL vmlinux 0xf04db9a4 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf062576b ucs2_utf8size +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09ab2c9 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0a70b52 xfrm_lookup +EXPORT_SYMBOL vmlinux 0xf0c0c406 redraw_screen +EXPORT_SYMBOL vmlinux 0xf0d24212 clear_inode +EXPORT_SYMBOL vmlinux 0xf0e2ed63 kill_block_super +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0f9bba9 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf137c905 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0xf13f800e sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xf1428401 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf16b7d6b rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xf17f9323 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xf1909ff6 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1974ad8 devm_free_irq +EXPORT_SYMBOL vmlinux 0xf1a51df7 blk_put_queue +EXPORT_SYMBOL vmlinux 0xf1d91acb swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e32001 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf20c3815 uart_register_driver +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf227109a find_vma +EXPORT_SYMBOL vmlinux 0xf23a0f5f seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf2450cec posix_lock_file +EXPORT_SYMBOL vmlinux 0xf24b3dfe __ioremap +EXPORT_SYMBOL vmlinux 0xf24b4266 bio_chain +EXPORT_SYMBOL vmlinux 0xf26a7aa3 __serio_register_port +EXPORT_SYMBOL vmlinux 0xf2780835 elv_rb_del +EXPORT_SYMBOL vmlinux 0xf29430df xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf2a0459d lg_local_lock +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2c58d5a update_region +EXPORT_SYMBOL vmlinux 0xf2cfea97 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xf30916e9 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xf30cca64 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf3458c36 make_kuid +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf347f1a0 register_netdev +EXPORT_SYMBOL vmlinux 0xf34a47a0 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf35accf1 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xf36de7c0 __mutex_init +EXPORT_SYMBOL vmlinux 0xf37b0107 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xf3986b06 acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0xf3a07584 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xf3a426a4 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xf3c66436 nla_put_64bit +EXPORT_SYMBOL vmlinux 0xf3dd91b8 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0xf3e15f19 iov_iter_npages +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3f4dc98 ilookup5 +EXPORT_SYMBOL vmlinux 0xf40153a9 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xf40cc8d7 xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0xf40fe3d0 of_match_node +EXPORT_SYMBOL vmlinux 0xf413ac54 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0xf4158673 dev_mc_flush +EXPORT_SYMBOL vmlinux 0xf41d5ec7 proto_register +EXPORT_SYMBOL vmlinux 0xf431d9df __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xf44afc1b of_n_size_cells +EXPORT_SYMBOL vmlinux 0xf454a933 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xf458bc88 d_genocide +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4768125 netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0xf4835f92 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xf48b7c02 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4cf4438 seq_open_private +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f16e5e inet_add_protocol +EXPORT_SYMBOL vmlinux 0xf5100e86 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xf5111ce0 put_cmsg +EXPORT_SYMBOL vmlinux 0xf51bf88b nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf539014f sock_wake_async +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf5749201 simple_fill_super +EXPORT_SYMBOL vmlinux 0xf5770ad0 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xf577704a sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xf58358e3 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xf59861d7 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0xf59dc6a5 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5a1856e blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xf5b0c185 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5c376e3 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xf5cd0459 eth_header_cache +EXPORT_SYMBOL vmlinux 0xf5d7715d module_put +EXPORT_SYMBOL vmlinux 0xf5d8da6b bdi_register_dev +EXPORT_SYMBOL vmlinux 0xf5e2a6ca xfrm_init_state +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf62ffef3 qcom_scm_pas_mem_setup +EXPORT_SYMBOL vmlinux 0xf6446934 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xf657ec28 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0xf660d8a0 blk_fetch_request +EXPORT_SYMBOL vmlinux 0xf6656bf2 sk_ns_capable +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf678fef2 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0xf6793936 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf6a44b12 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xf6b0b2a6 blk_start_queue_async +EXPORT_SYMBOL vmlinux 0xf6bcfb6d twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xf6c04847 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xf6cc5632 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xf6d1a3bb write_inode_now +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f0ffed _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xf6f50d83 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xf6f6bb41 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf70184fb fence_wait_timeout +EXPORT_SYMBOL vmlinux 0xf709ee8d key_invalidate +EXPORT_SYMBOL vmlinux 0xf72219f4 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xf726ec36 dma_find_channel +EXPORT_SYMBOL vmlinux 0xf72d8ad0 iov_iter_advance +EXPORT_SYMBOL vmlinux 0xf741e050 amba_device_unregister +EXPORT_SYMBOL vmlinux 0xf750a1ea generic_permission +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf7587dfa fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xf75a8231 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xf76c580c scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio +EXPORT_SYMBOL vmlinux 0xf7819430 genl_notify +EXPORT_SYMBOL vmlinux 0xf789ec3a param_get_uint +EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0xf7af8fbc jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xf7b0695a mem_section +EXPORT_SYMBOL vmlinux 0xf7bf41e5 give_up_console +EXPORT_SYMBOL vmlinux 0xf7c38cea jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xf7d59fff simple_statfs +EXPORT_SYMBOL vmlinux 0xf7ee7d31 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xf81103ea radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf83a1c71 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0xf85339a0 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xf8606c0f ps2_command +EXPORT_SYMBOL vmlinux 0xf8716048 vfs_write +EXPORT_SYMBOL vmlinux 0xf872222f pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header +EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf8f86cdf __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xf925afd6 compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xf92ce063 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0xf9437eef nf_log_unset +EXPORT_SYMBOL vmlinux 0xf944ee79 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0xf953cc92 sock_kmalloc +EXPORT_SYMBOL vmlinux 0xf956c339 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xf95d5613 proto_unregister +EXPORT_SYMBOL vmlinux 0xf95e7257 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xf963b5f1 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xf97ba586 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0xf987f157 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xf99ff02e acpi_os_get_line +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9dde891 wait_for_completion +EXPORT_SYMBOL vmlinux 0xf9f2abc4 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0xfa22c204 touch_atime +EXPORT_SYMBOL vmlinux 0xfa28a475 filemap_check_errors +EXPORT_SYMBOL vmlinux 0xfa2f6a11 neigh_seq_start +EXPORT_SYMBOL vmlinux 0xfa32c890 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xfa32cde9 flush_old_exec +EXPORT_SYMBOL vmlinux 0xfa36d5a1 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xfa47465f ida_simple_get +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5a1adb dev_mc_del +EXPORT_SYMBOL vmlinux 0xfa5bcf35 mod_timer +EXPORT_SYMBOL vmlinux 0xfa5d1bf5 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xfa64c66b udp_ioctl +EXPORT_SYMBOL vmlinux 0xfa9de461 napi_gro_flush +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfaca8418 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfadb2c29 netif_rx +EXPORT_SYMBOL vmlinux 0xfadf2436 memstart_addr +EXPORT_SYMBOL vmlinux 0xfae0920d keyring_clear +EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent +EXPORT_SYMBOL vmlinux 0xfb11ba3d kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0xfb19c186 sock_i_ino +EXPORT_SYMBOL vmlinux 0xfb241d48 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xfb2aa31b blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xfb5f1983 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb71b3fc ppp_unit_number +EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xfb83b5fc inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfb96af62 clocksource_unregister +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbac529d mdio_driver_register +EXPORT_SYMBOL vmlinux 0xfbb514d9 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbf35900 locks_free_lock +EXPORT_SYMBOL vmlinux 0xfbf512ef ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc0c53bf pci_dev_put +EXPORT_SYMBOL vmlinux 0xfc1c8e28 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0xfc2fbf0e device_add_disk +EXPORT_SYMBOL vmlinux 0xfc3df469 of_parse_phandle +EXPORT_SYMBOL vmlinux 0xfc4b6d0a __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xfc52047f __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc5f3ce3 fence_remove_callback +EXPORT_SYMBOL vmlinux 0xfc7547aa scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xfc8a65a9 tcp_filter +EXPORT_SYMBOL vmlinux 0xfca5995f vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xfcba430d devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfccdaad2 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfceaf091 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcef857a mfd_add_devices +EXPORT_SYMBOL vmlinux 0xfcf5c84d param_ops_ulong +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfcfa0fcf tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xfd1dce5a seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xfd355e69 mmc_put_card +EXPORT_SYMBOL vmlinux 0xfd89ff4c kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xfd9357f9 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfda1f90b udp_seq_open +EXPORT_SYMBOL vmlinux 0xfda53516 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xfddac977 simple_dir_operations +EXPORT_SYMBOL vmlinux 0xfde144ec gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0xfde4e5bd ata_print_version +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe047ce6 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids +EXPORT_SYMBOL vmlinux 0xfe301c8d inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xfe31dae2 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xfe394804 user_path_create +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe77b542 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe7d109a ihold +EXPORT_SYMBOL vmlinux 0xfe80cae1 uuid_be_to_bin +EXPORT_SYMBOL vmlinux 0xfe8ff746 of_get_parent +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe9869cb ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0xfe9d0517 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfeb696b1 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xfeb73437 from_kgid +EXPORT_SYMBOL vmlinux 0xfec85102 blk_start_request +EXPORT_SYMBOL vmlinux 0xfed6360f blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xfed86862 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee0a156 iov_iter_zero +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef5278d security_path_rename +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff236db7 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0xff4213d6 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xff543e24 generic_read_dir +EXPORT_SYMBOL vmlinux 0xff5cd2db sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xff5f2c47 skb_dequeue +EXPORT_SYMBOL vmlinux 0xff60a3d4 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xff63be22 param_ops_bint +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffbcd33f i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xffc124c4 qdisc_reset +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffdb7e6d vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xffdf4f81 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xfff407c3 netlink_net_capable +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x26de106c __ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x31b408e1 ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x5ceeaae4 ablk_init_common +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x6cdc4057 ablk_exit +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x76cb92d6 ablk_set_key +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x804ba12f ablk_init +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x942d5d65 ablk_decrypt +EXPORT_SYMBOL_GPL crypto/af_alg 0x025ee24e af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x03c913e9 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x17a9f9b0 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x19de5620 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x67675142 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x7a0f5cf9 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xa91cc20a af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xc7bf2243 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0xcb39de78 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0xe677e159 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xf8222923 af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x26a8fd5d async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x36c86ddb async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x6ff7c512 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x57afaf21 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xa230b358 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x07b30fc7 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xbd87d9eb async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd98ae54d async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xeb76021c __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x29057ff5 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xa4784000 async_xor +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x759eda2b blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x2c23877e cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xe4e088aa cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 +EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x225ab3a6 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x925ad4c9 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x049e7a30 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x0f9f2b30 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x2e7a88c1 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x43bb2455 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x63b2be1b cryptd_ablkcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x7d5dff3d cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x9eebb681 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xa171aa2d cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xa964dc6d cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xb8a05b85 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xc5659c57 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xcd344868 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xd1b38435 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey +EXPORT_SYMBOL_GPL crypto/dh_generic 0x9edeb49b crypto_dh_decode_key +EXPORT_SYMBOL_GPL crypto/dh_generic 0xa9c31fb3 crypto_dh_key_len +EXPORT_SYMBOL_GPL crypto/dh_generic 0xb25efd9f crypto_dh_encode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x597307c5 crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/lrw 0xdc09b069 lrw_crypt +EXPORT_SYMBOL_GPL crypto/mcryptd 0x1efc4374 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x687b0ba4 mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8db0bb25 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0xa63ece34 mcryptd_ahash_desc +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x0832b5e8 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x2b9d2d77 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x573e5407 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x66ffc695 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8b51f70e serpent_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x1ad4c800 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x02b6b84e ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x048f408a ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x197b0ac2 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2329e3e4 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x26d763c3 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3b60db99 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x44e60d56 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6eb30757 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x71190a4e ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8339f71c ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9880186c ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa13f4791 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa98bd498 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xafbea347 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbc2e328d ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc236a687 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc3e82ba1 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc8821985 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc8a248eb ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcfe2b9b2 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd134dc2f ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdfdbd8ba ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf5bad652 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x023a2223 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x166e584a ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x16db71f5 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x17ce3ff5 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x540427be ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x591b6919 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6055c8b7 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6302862d ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x85fe0641 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x94f017ff ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa0984fce ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe6d48e75 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf9470a8a ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x7dfceb45 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x77922f3b sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x1c030f53 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x42d620f6 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x74a3dd99 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xc1380667 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1f34d156 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1f75b162 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x202a860a bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2bde7d23 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x311a7593 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x33a6b868 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x53f70aaf bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x68038f40 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7a91121a bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7cbdcccb bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x86df1eb1 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x87289870 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8ff641d2 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9f3cc1da bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa11ba885 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa4708909 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb60082ee bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdbb9df1d __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe80730a2 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xed752e9d bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xedf2e487 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf35167ce bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf47983f1 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfd7a370a bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x125bd0fc btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x145e518c btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3d0fb052 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbf39b3c0 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf32f3088 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf3d2b547 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x123d2940 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3bd13b10 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x40e2db11 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4c62c456 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5aaeaac7 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5ef66ab7 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x719e8874 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x780419b1 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8895ca2e btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8c3e24b9 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa4f73866 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb7c4075d btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbf00add3 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xef228444 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x004a900d btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5530d8b0 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x930a09ff btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa5ce0716 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa6d007e6 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xad18ad3b btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc0656d77 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdd292c6d btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf17fc6d2 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfd9e6ecc btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfeed75a3 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xbf10b403 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xf6beaf97 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x4f8cbd5a btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x3af79190 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/char/tpm/tpm_tis_core 0x73a4fa90 tpm_tis_remove +EXPORT_SYMBOL_GPL drivers/char/tpm/tpm_tis_core 0x948d1c9d tpm_tis_resume +EXPORT_SYMBOL_GPL drivers/char/tpm/tpm_tis_core 0xb2c0a961 tpm_tis_core_init +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1ad28e9c clk_rcg_bypass_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1b173428 qcom_cc_register_board_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f4159b0 clk_byte2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x338370e2 qcom_cc_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3b0b58e5 clk_regmap_mux_closest_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x40c8bac4 clk_alpha_pll_postdiv_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x476c3d7c clk_gfx3d_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4c419375 clk_enable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x53f95e39 clk_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5e8160d8 qcom_cc_really_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x612214bd clk_edp_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x661435a5 qcom_find_src_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x669bd1fd qcom_find_freq +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x67ae803a clk_rcg_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x709d9cf0 clk_pll_configure_sr +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x73964fc2 clk_dyn_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x741cb112 devm_clk_register_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fbce31f qcom_cc_register_sleep_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8a2a303a qcom_reset_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8c4dbdbe clk_branch_simple_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8d53d96e clk_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x90b53166 clk_pll_configure_sr_hpm_lp +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x999e1e71 clk_branch2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x99d2c773 clk_rcg2_shared_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9e2e91a1 clk_rcg_bypass2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaace56b1 clk_rcg_esc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb5c863b5 clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xbb500f8b qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc7994798 clk_branch_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcb0c5248 clk_byte_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcd0a83c6 clk_rcg2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcd73b149 clk_disable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd25fd154 clk_rcg_lcc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe703bcad clk_pll_vote_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf0e61bbc clk_alpha_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf1f136dc clk_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf69c2f55 clk_pll_sr2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf93e315f clk_regmap_div_ops +EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0x6327e80a bL_cpufreq_unregister +EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0xf61b1c83 bL_cpufreq_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 0xe53ff9cb ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/dax/dax 0x17bce14a devm_create_dax_dev +EXPORT_SYMBOL_GPL drivers/dax/dax 0x85fc80e9 dax_region_put +EXPORT_SYMBOL_GPL drivers/dax/dax 0x8792135e alloc_dax_region +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x2d9ef386 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x371ddb95 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x3a8f5a12 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x40af25a7 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9d3c3e1a dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x3f75c1da hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x75e3324f hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0a8a531f edac_stop_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x11b0ac25 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x184bed75 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2175597b edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x22f5dc06 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c277856 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2de6efd5 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x33df4566 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x48563486 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5f161c76 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x636d804e edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7a41c0c7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7c6b006a edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x91c75ba4 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x98ed6b0c edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9d09f488 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9f746773 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa3695636 edac_queue_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa882ff90 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa92325ff edac_mod_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd0c35329 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd99f1b4a edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdebb4c10 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf7c0898c edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfa88296c edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfeeb47e7 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x9bd94b27 get_scpi_ops +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x42f4cd84 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x64aec0f0 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa3af9742 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc46a8103 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe7fa566e of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfbe4e6f5 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x38e81657 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x8a629ee0 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0bf9d56d drm_gem_cma_prime_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1dd689a1 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x23786d49 drm_gem_cma_prime_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2da422fb drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3ede9846 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x45009f28 drm_gem_cma_prime_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4b7336e7 drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x53ac490e drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7f3eff85 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x99fbb9c5 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa06caffc drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa99923dc drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc79b840d drm_gem_cma_prime_vunmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xced71beb drm_gem_cma_describe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd43ed566 drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd4913a85 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe867d279 drm_gem_cma_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xeab05d23 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf514ee10 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xff1c0af5 drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1148b623 drm_fbdev_cma_fini +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x18deeed8 drm_fb_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x43fe9cf4 drm_fb_cma_debugfs_show +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x512f19bb drm_fb_cma_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6bec2f19 drm_fbdev_cma_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x77c875dc drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x89ba3413 drm_fbdev_cma_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb2c912af drm_fbdev_cma_hotplug_event +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcc337fd5 drm_fbdev_cma_restore_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x92a64f58 ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x94d92ec9 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xe28580a2 ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0d8a8713 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0d97e3ea __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0f047b7f hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1d9f14c3 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x21f7f925 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x25ead2d0 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x311690a1 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x33666dbd hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x38209a86 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x416317fb hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x41805dba hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x575bf423 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x685e35e0 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6f1f87a3 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7c755857 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7d7e4bb8 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8435d368 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8988ecdf hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8f834f86 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x938f2181 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x99f623fa hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa697ff4c hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xab3ab2b4 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbaf16f18 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc0dab1aa hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc819f2b6 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc99eb8ce hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcac1ca64 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcbf03cb9 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcd062202 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcf71ff28 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdf04c3aa hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdfbb371d hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe02d157c hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf9ddef02 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfedcfc96 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x47e69869 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x045bf02e roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1860228e roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2a680b36 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xc7a342da roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xe7829968 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf1f944d1 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0032a131 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x335a7eac sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x349b529b sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x608222fc sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6d6ef6bb sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7ab78f10 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa212f189 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb4a8b377 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfcfe7e96 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x269379fe hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x060cace0 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x097ce527 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x14906f46 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x25f7b721 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2de6bf41 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2dfbbdc2 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x47eb7196 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x49d1d601 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x594046bb hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x771bf592 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x80b02d5c hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x90c6cee4 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb3ecead2 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd21d0cf7 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xed7d7a7e hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xeddc7f9e hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf15fe325 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf5da167e hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x5c27c909 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x85ad9046 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xa32ef8e5 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0c59834e pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x15294d54 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x18813ebb pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x21eafdd5 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2405a79c pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5c7ded5c pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x79cb13e5 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x83735f71 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x948310d2 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9d39d613 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa76e971c pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa928961d pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc26d8e2b pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd837ee28 pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xeee70108 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x627f6cce hwspin_lock_unregister +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x8d30a01a of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xaf27509f __hwspin_lock_timeout +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xb8f20d77 __hwspin_trylock +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xbafc600e hwspin_lock_request_specific +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xbc8c63a5 hwspin_lock_free +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xc29e80cf hwspin_lock_request +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xe6768d8f hwspin_lock_get_id +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xe84f1cbf hwspin_lock_register +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xeea77e9f __hwspin_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x306e246a intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4145b5d6 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x83dc4340 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xccc22649 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd0a45203 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe98042a6 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xfcd145e1 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5fd37faf stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x665d030c stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x76df4d03 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xbe53869a stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xeda5df04 stm_register_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x64eaeeef i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x8a7d15bf i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xb4af9ea2 i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xb703bbca i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xfe1bd103 i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x214849eb i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x3b898012 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x43024323 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x68a8b435 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x2e09b38c i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x86bbda11 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xaffb8ef9 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xd8f4e0e0 i2c_setup_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x695ad389 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x7c9100c4 bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xb7fe085a bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xfc9e457b bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x4834fb7b mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x5bf8cc29 mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x999c6e77 mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0bbf6ef9 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2da453a7 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x38381b7e ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x45cdd71a ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x58d88f0e ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7d36b357 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa98dc81d ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd2b646a5 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xeaaeafc9 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x21977d60 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 0x5bbba70f 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/dac/ad5592r-base 0x073d9f86 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x79de49bc ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x502bd4c9 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x929a3ce5 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xe4cc150b bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0c5151a7 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4bae71ae adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4f0cd119 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x511426e1 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x608fa10d adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7273d36c adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x72a21304 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xeffb98b4 adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf6193c39 adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf963d4e9 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xfb5dc02a adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xffa79ec0 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xbed8b080 bmi160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xc665add5 bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x226f71ad inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x29aded75 inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x646ccdf7 inv_mpu6050_set_power_itg +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xf4753c9e inv_mpu_core_remove +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x00c7dc72 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x055496d5 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x15050a55 iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1505c5fc iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2b201e36 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2b6ebbb9 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2e898605 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3ba1828d iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4398c107 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4c5ec09c iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4e1981a1 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4e57bbc7 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x50c0e5d5 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x552b1676 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x55e124d4 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6468a526 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x67263243 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6e26c9fa devm_iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x82e6194d iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x835f4350 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x84cf8133 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8e8b9ed2 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9561d2a3 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x96b60ac0 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9fa38185 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa0418b49 devm_iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa5d3dd86 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa9e35448 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xad5275b8 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb3806720 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc33cfe68 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc52db363 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcd17aca1 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd5d84154 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe632dae4 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf17b5168 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf4e3f40a iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xffcb8ebb iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0xe6fd9b1b mpl115_probe +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/sw/rxe/rdma_rxe 0xd6b5e168 rxe_dev_put +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x21887a4c input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xc775898c matrix_keypad_parse_of_params +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 0xd6878563 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x03e31643 rmi_2d_sensor_set_input_params +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x07b5a935 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x13302e5e rmi_get_register_desc_item +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2d4e5e2b rmi_process_interrupt_requests +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4fd1e632 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5bb77705 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5c550dfa rmi_register_desc_calc_size +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x61bcacc8 rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7059825a rmi_register_desc_calc_reg_offset +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7f6acdda rmi_read_pdt_entry +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x98584ef5 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9a27b7ed rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9debecef rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa746c7d9 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb0819faf rmi_read_register_desc +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd3e4bbc4 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd4d3f663 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf406e49d rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xfdebb3bb rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x5fc31042 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xded7d307 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xe17b3d5f cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x641a8ec4 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x940c7717 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x51f05ba1 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xb7cd1a3c cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x58896c00 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x7beb30c5 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xa3f1bc77 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xfb1bf3fc tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0014828d wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0f801bc9 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x42a7ba7b wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x43522b47 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4458f980 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x764ababd wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7fe1bb5b wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9d449360 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xccbe8213 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd1009f49 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd368b743 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf8cdd9a2 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0210cf02 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x342a2d48 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4953feed ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5033fede ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb57ab946 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc4527006 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xda207c6f ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe01aedec ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe145ccfe ipack_put_device +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0dbdb852 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0e9d1f40 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x10136018 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1025d6f7 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2352622a gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x385d475b gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x39f57c0a gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3e588d55 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4607a46a gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4f5e24f4 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x55e9c1c1 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x58e4cfc5 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6dcd96d6 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x77fa72b7 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x98188dc3 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc05439b3 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc4426144 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1b10ab65 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x893cd869 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x89bcfa54 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb0b5d998 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb3982c2f led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd71fdddb led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x05c996b2 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1d89ab7e lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3865309e lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x50792773 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6f1296ce lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8f3b867a lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9f3a72ee lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb4c154d6 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdfb7f18a lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe01eab85 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf6b53fca lp55xx_unregister_leds +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/mcb/mcb 0x07efd9ee mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x20c179e9 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x3e3cbaaa mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4160b26f mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5cd39309 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5d963968 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7f4a9a3d mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xad5cd889 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xaeaf795e chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb6e048a2 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd9014fe5 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe0bc8fab mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe384d305 mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf0d11540 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x07b0caf6 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1bcb69cf __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x290dee5b __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x29bfa0b4 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2e9a0300 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x350f0b52 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3eabc650 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x40978466 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4797ee5e __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4c5dce08 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51c85a21 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5930cf1d __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cb40ec5 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6d024748 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6f4bb251 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7a8a162a __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7c234702 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x898239dd __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x940edb75 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x94287194 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9dcb7c83 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9fb22838 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa4f27010 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7c2e5d1 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbb4a3f4a __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd4abe767 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9dc9cfa __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda147480 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe16ef8f4 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe43c667b __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf16c2227 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x19cd36eb dm_bio_detain +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 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x785fe2e8 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x889531f4 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8a26815e dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa5b86b78 dm_cell_error +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 0xb789e2dc dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbd8fa8d3 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd2314fe9 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd58bc3e5 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x45e8060e dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +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 0x9310ba06 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa448e19f dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +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-cache 0x38c93093 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x4d3f9806 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x86618c03 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xad92f313 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xb520b7cc dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf0083bc5 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf05f7a1e dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x8f23b6de dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x9a0e40fc 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 0x2e67eaae dm_rh_delay +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 0x4430764e dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7be19475 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x80d763a9 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x9fde426c dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa26ee92d 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 0xa68e1f06 dm_rh_get_state +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 0xf36ea381 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key +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 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x17c36f29 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +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 0x32b5f546 dm_array_empty +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 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42dbdfc3 dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49b35849 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x55b4bd4d dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6262bde0 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk +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 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit +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 0x827a42f4 dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify +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 0x966a8838 dm_btree_lookup +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 0x9f624559 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xafeda29f dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd29923fb dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf375d009 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf5455120 dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0x00096a0f cec_set_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0x4961a844 cec_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0xbff6533d cec_phys_addr_validate +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0xd2f2eac1 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x01449571 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0bfbc706 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2f603ccf saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3192a903 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x50962c8f saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x89640901 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9e7f58bc saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xcdfb9b5a saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3126a04 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf9c40ac5 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x02156238 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0e637d4c saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1569d8c6 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7ce6889d saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8a649198 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa37ee5de saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xbb54aa87 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x02d36fe6 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x041f8b9a smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0a0a00a3 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x18b9491d sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1a91f478 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x20759db7 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x248a8863 smscore_unregister_device +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 0x4b50ef64 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x52f9fae8 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x58e01379 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x630c1caf sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7197b41f 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 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa2bc9dc7 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xaa079584 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbe9905ca smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd74be59b smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe2c53238 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x0756995d tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x0b63430e tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x1c236f52 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x395504e9 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4cf9e178 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x5c15f12d tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6da054cc tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7527c0ad tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x89685ab4 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x8deb2d91 tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x9e9e5267 tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xbbf641fb tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe01d21d2 tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf26d0c08 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x5da1ce61 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xb1a587ee cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xb797de8b tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x18d49fa4 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/media 0x22a9e6ea media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0x29120de4 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x2ba7fb47 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/media 0x31f76990 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x3563cbb4 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x35cf437c __media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x3b9bd827 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/media 0x47637e01 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x4920ccbf media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/media 0x4ad1319c media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/media 0x517b29d5 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x528d23d4 media_device_get_devres +EXPORT_SYMBOL_GPL drivers/media/media 0x57487484 media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x5952ba84 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/media 0x67640d28 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x6c6c4933 media_device_init +EXPORT_SYMBOL_GPL drivers/media/media 0x6f8eccc8 media_entity_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/media 0x72603e7b media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/media 0x73382ab8 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x7a748ad8 __media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x8bf78c83 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x8c928b59 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/media 0x90aa3124 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/media 0x9a163ca1 media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0x9e315b1c media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0xa0a091b0 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0xac5c681e media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0xaff488ea __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0xb1c00d94 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xb2442f17 media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0xb3d4f009 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0xbb0f8a51 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/media 0xc53c0311 media_entity_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xd5c93298 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0xdc581289 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/media 0xe06008eb media_device_find_devres +EXPORT_SYMBOL_GPL drivers/media/media 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xe9072cb8 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/media 0xf45fdacc media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x80b0259e cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0007859b mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0869e108 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0c4e1bf6 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x116cc387 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x14bb1b9c mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2cc788fc mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x32674fec mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x45ce0cab mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x53ec61ec mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x56532ed5 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5d3b0cc1 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6b5a9e83 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7d94326a mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x85239b86 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8bea424a mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb0252421 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc47deea6 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcde9b78c mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdc88eecc mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x03066e22 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x15e03248 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3c1de93d saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x69bc54f3 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x69d332e2 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x75dccfe9 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9f061006 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa645d70f saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa8aafd26 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc6c4baba saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc9c0dbab saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd846ebc2 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdc6eedc7 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe251691f saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe4a5f826 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf2e7b7a1 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf3d78e09 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfcdf3a59 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xff956bcf saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x01cd3642 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x24aed03c ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x67260064 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8946ac8d ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa66d73c1 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd8299a58 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xfdc19007 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x450af3fa vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x49200a3d vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x6d9cb308 vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x8afd81c6 vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x8d1b2ab1 vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xb135759e vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xcf88c02a vpu_get_venc_hw_capa +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/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x11968698 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x26c3f48d xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x4da68208 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7dfd939d xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x84bf88f3 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xaa259fe0 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xc753d516 xvip_clr_or_set +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 0x51b804e4 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x78645f86 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xe6dbc9f2 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0390d52a rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x04a374c8 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x32467759 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x336ba54f ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x492f9de4 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5bedd42e ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x656098e7 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x65bd210f rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6c6574af rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7255b766 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8473f549 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x87c7f1f7 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8f87522e rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa2dc54c9 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xca04f847 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd3a9b39a rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xda7621a3 rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe99abf58 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfaad4587 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x18399ae4 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x8fa3496d microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x767d5b2f mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x91d1e952 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x0934955e tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xa06330f7 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x55c6a620 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x70486e4f tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xd0f5b282 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xb6d814e0 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xf3e7a743 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x3c9ac765 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xe6b6674b tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x1e8f4d58 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1090d9e9 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1452e43a cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1ed0b9d3 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1ee75c1c cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x44f62742 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4f7df7a6 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x55611b06 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6149fc20 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6daafac8 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7f1f13af cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x87b29faa cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x93757906 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9ef2bc86 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9f51cc72 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa76e11d4 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xadbb8530 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd22da6f1 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe6b7e4d5 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf4d546b2 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfa382d02 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xc288260b mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x776bc1ef mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0b104745 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1250294f em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x12764d2a em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x170b0a8e em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x33e904b8 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x69d06da7 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x769d0519 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8025e45b em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x83a0e01f em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x86dd1b26 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9aeccacf em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9b35043f em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa608c11d em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xab516f31 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xabbf59a2 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb79a1393 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc05f210b em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd3109dcd em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe83382ca em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x4197b6d7 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x9445a699 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xb8b4f4e5 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xe42cd6f3 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x1674f186 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x7a0ecde0 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xb75728f4 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xbca1aa2e v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xdde2348e v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf45aedc8 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x363ad524 v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x3ce9900a v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xe8faf2a2 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0406fa0b v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0c2cdfeb v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x15dac403 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1f82d3f7 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x24f09ffb v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3215c391 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4238320f v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x46de8007 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4d117f50 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x641bc190 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6b27194a v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x86c206d6 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8b5b05b5 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9b2d851c v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9f5925f8 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xba533afa v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc1fe8109 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xce4eebae v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd77199d6 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xddca7460 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe30a44f6 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe3ab986b v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf1980a1b v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf2f205e5 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf38a4bc4 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf5d36922 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf6cd7d51 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x09b1a21f videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x11c651ca videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1706a3b2 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1f152539 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x46652ea4 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5beb6962 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x68844a1f videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6945fb0a videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6e6331b9 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x754b440a videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8db4c563 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x92639a12 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9db50878 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa24fddc8 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa6b2ae80 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa9cc210e videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xaaf8dcba videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb457a1ec videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb9db9083 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc32262c2 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd819c1b6 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdb874f80 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe91c5b71 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf7c6d827 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x3e3a6fad videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x48d179fa 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 0x5cadc07d videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x9bf3ccc7 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x70236710 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x70f2ff00 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xf71aa9d4 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x113a9b97 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x13577295 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x18651745 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1c1cf42d vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x30563a79 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3af6ef52 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3e932a9a vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x420e8835 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6513a3f4 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x90af86b2 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x9a9a3306 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa7ed18bf vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa8b8144d vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa9ba7653 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xaeffa2f4 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb26baea5 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc35a4d00 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc68334f2 vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd1fb8450 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xdfc0c9a7 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe3e27723 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe3f0f80e vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf38f67c8 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x127bb75f vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x679a0f91 vb2_dma_contig_clear_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xebc5aef2 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xe6d86325 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0xf2ce4263 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x02367dfc vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0adfb7a7 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0ef495a3 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x15a20a9f vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x188dd567 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1f1811ed vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2b60003f vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4d3b5562 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x587ebd57 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6b3e0c46 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6f7b34a1 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x745fd8ae vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x76dc8d03 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7c180a96 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7d0d512e vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x992c641d vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa6d48f79 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb28dd7eb vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc12a70bc vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc1ad45de vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xda321902 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdd22fbcb vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdd531e91 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe13a5192 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xea2b60d6 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xee1a345e vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf5a4b37a vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfd36424e _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x323f7619 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1371b785 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1614845c v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x16acf9c6 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1a56e679 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x22d3dd77 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x29ded27f __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2aaa8784 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2dcb1f71 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3f1a7521 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x472faf2b v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4a0d6935 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4b9e4323 v4l2_pipeline_pm_use +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4ccba9a4 v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50d65b11 v4l2_subdev_free_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x52418292 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x52d1a761 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x572dd1f4 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5789edd3 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x58a6e8eb v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5d3e1326 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x625f43f1 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6b137692 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x70aee9de v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x747e839e v4l2_subdev_alloc_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x85b3f6f7 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x85da487c v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8cdcd133 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8da101a3 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8e328c05 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8f5e0c81 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa41f8703 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa81fff41 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad4ffbcb __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbdf4a7c6 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc4a502e8 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcb0f7cb8 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd285b01f v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdff470d9 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdffd70e1 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4a17f70 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe96f9e80 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf15e72cc v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf1d557c3 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf7f746bf v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfb505b93 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x5776b706 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x871da2bb pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xf8ee6434 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x02da9a64 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x27621f12 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x64efda03 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x868e1141 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xdae5ea9a da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf23937b7 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf2c17e4b da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0db8c32f kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3c7f46c3 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x43f73849 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x669eab7c kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xbf048687 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xdd317069 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe6ef6125 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xfb0262f4 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x5a50623c lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x6c936b12 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x9e322bb2 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x215c3b8e lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x49ff4e8d lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8579b119 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x93a8249a lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9b50a174 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xbb8f14de lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe28aea55 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x007018e6 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x0dc2764c lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x97534ce5 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x20aedf1e mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x43225809 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6014943e mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x721b6156 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8f957951 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd7b57fa9 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x18c728e7 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x346743ea pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x36e2b2db pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6780d76b pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x84c88cec pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x863922a7 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xaff6ef1d pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbd4b03a2 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc737a6d2 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf0646018 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xff765146 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x37eb04ea pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x56e4c83f pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x26751b0a pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x3a0009ea pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x604b3d4d pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xaa4f1312 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf405e372 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x022a9047 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x042eee69 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x05012c87 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x09f14fc7 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0c7678ea rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1440c602 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x14fd35e8 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x222f6051 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x22332012 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x25f5ebea rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3634f7fe rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3f89da8c rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x445c38a9 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x75649d33 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x858378e6 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x87c007ee rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8b1fe1b8 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x914ee9ce rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9b5bd8f7 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa6fa6d38 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb97dd670 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbe44b1a2 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbff74b71 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd7d5a063 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x135f63e4 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x16257c64 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x45e56ea0 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4c792939 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x54587126 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5499971e rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5869b5d5 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x638da49d rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7f72042a rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x86e19fab rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa19a2975 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xbbcefd9c rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd4e56e52 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x05bfe7b6 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x08ac7c2a si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1c7c585d si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2032cea2 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x26176f01 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x33e1063f si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x36d0b33f si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3a5dfae7 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x47ecef23 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x53db7113 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5c3d900e si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x72fe58b5 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7e6fb735 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x81a33868 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x85f4dfcf si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8a7a0620 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8fc359d8 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x91f114ee si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x99496540 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9a260c34 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9b9b8f3f si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9cb815f5 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa4ac63d5 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbdc22eb0 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc9c8679e si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xccfd9d38 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd4767bea si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd73d3030 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd83cb8b3 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdfaf9cb9 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf672b949 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf7339f3f si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfcc9478a si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfddd23a7 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x0c63fd5c sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x33adb392 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6fb59f45 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x97786275 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa856641d sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x9d985912 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc66aba2e am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xd4d87c16 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xddae21c9 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x43b31b8f tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xa4032467 tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xb9d1511f tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xeba4e6ef tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x29366abe tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x2a17fc7e tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xd03ddc79 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xfd86d9dd tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x276e95a7 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x1eb13278 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x29f12f9a bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xb6ad4649 bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xc4b8cb03 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x0e938b4b cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x7ab37f04 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x7c66f49d cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xadf9de2f cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3df7d888 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6fc08abe enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x70f57ff8 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7af0a587 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7d44280f enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xae8d60de enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfcc2f831 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xffca1be1 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1aa32df8 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1b0c3a7e lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2922ed1b lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x361fe024 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa6b32fdd lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xac58139e lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb4f3d65d lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd31e50e5 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xb94303a6 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xd32c34c9 st_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x52f4d0d4 dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x842cc3dd dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xdae60174 dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x03de2968 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x08701f8b sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x190d4a89 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x334c3185 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3d921036 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x58307a08 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5cd24bb8 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x77c6d0ae sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x94d788fe sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x97d7db93 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa3b9c935 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc85ffa24 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd67fc5a5 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xee126539 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf3652433 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf64a654c __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf836379c sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfd0f5fdf sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xff59c61b sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x494c3682 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5156f600 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5fc0ea14 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8bafa33b sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb0cc8327 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb340d740 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe635aab6 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x762a3584 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x8b341012 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xb41d35fa cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x30b78e3a cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x4ee5c5ea cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xc34e41bc cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x0567e461 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x5ad87224 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xb864b5fa cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xe0131466 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/maps/physmap_of_versatile 0xfdd60b7a of_flash_probe_versatile +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0892133d mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x08b0e1d5 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0cce43ab mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x105c5a1a __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1233d42a mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x13e2d272 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x15dbbf36 mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ba8de93 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1cb4fcc0 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ea6a9c8 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x260460ef mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2a0acc12 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2b50d2eb mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x31f6717d mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x334b9dcc mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x35c842b1 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x376a68a1 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3d27ed63 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x52416342 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x55dcc60e mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5dff5b4f mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x60dd9262 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x61a2e543 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x644a03e4 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x660d9945 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6c3deb0c mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x75698f7b __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x75ca17b0 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7a32d668 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7db73d35 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x82c3f3ce mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8306b37e register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x859028a8 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x91ba3c47 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa8789b50 mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb431febf mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb614c7fd mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xba42fdd8 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbfe9cede mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc0905ecb mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd1803b80 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd5a2e816 mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd5dd6833 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd6469d7a mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdada761a mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdc3c9ce7 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdebc062e __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe0c7339f kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe79c32ae mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf59855fc unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf6431b40 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfb841a02 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x0a0a652f del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x4f96ca49 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x50c8a5de deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xab2ffdb0 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xee718179 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x39a8b4e7 nand_ooblayout_lp_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x91b59aa1 nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x9e64009c nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xa83e58c0 nand_ooblayout_sp_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x701cce5a sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x1fe5ac94 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xfe012b29 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x4fbe9a01 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0888a3d9 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2eb1ada9 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x32a831aa ubi_leb_read_sg +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 0x498d8468 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x683da60f ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x92660be5 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa50016f1 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa7db1606 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xadb2e40e ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd78615ca ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdf6bf2c0 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe470b1f3 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf10e58ec ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf649d783 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x7fc33df3 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xb013b123 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x010b018e unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x57665f68 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5bb01f64 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7b1f10e1 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8d5795de c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe411505c free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x02647f1f open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x06322124 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x06fc56c0 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x21204a8d can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x30d5243b can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x48fa73e9 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x668a0e5c alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x70be7bde alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x88e3c600 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x92cc59fe can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa1d2c004 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xaf91c38f devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb0e25e18 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb7282d2d unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xba05d602 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xba697049 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc71abc63 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc79cf14e can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x012c4c1c free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x80553ad3 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xd9d8177d unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xedfafb04 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x1733c183 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x5d173ff1 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x976ccbed unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc02d9323 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x60394ddb arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x9376f642 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00c994d0 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00fe833e mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02812bef mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02a14165 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06e21e73 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0791a299 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0872a493 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b669d03 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b9cbbc2 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1216def1 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x194f4f04 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a47d1aa mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d21bb6b mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1df8b472 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ff0e694 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x207800d3 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f2c2632 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x307106b1 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x309b3108 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3207126e mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36638324 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39866cba mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39c8f4f5 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c2afd65 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e7f5e01 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e899603 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4019e708 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40347f81 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41c45936 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44fc07e2 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x466295c0 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4db39bfd mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ddcc0e5 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4eb6cbb4 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5045b7e0 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x511e9cc0 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52534231 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x541e0a5c mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x589b8026 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a7ab5ff mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ad7448e mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b5dd543 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bca278b mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5be8016b mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e2dbcc1 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60108092 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64f1d1b1 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66b03091 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68388c3e mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6aa12557 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c7b3b7a mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x703d89d0 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72602e79 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74fe1007 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75391218 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76e45df1 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d717542 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e74aef1 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7eb655fc mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ff57378 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8047ef50 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8375c2db __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84570ad6 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86d0f614 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x873ae38d mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x887773e8 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8daa9d17 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e33d466 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fd7cc8f mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93bff5d1 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95c1fa2e mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97756cd5 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x996e5600 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99afb9d1 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a0e05a4 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c171610 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d9c73bf mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa09eeb16 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa121cb39 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa19a553a mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3046f54 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa62ba2c mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacaf66e3 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae480b9b mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb168364a mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6362ec6 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6798d97 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb88cc713 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb90726d7 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb96a3620 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9b5bc7c mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc34c521 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfbcbc4a mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc256bf73 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc42ae771 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc597d0be mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc607ef2e mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc61b9593 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7aec6b1 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8059226 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc87a320a mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9d780c7 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce52b008 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0383b3f mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd318dcb1 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd31b6e84 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd526b216 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdee5ae7b mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf98669b mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0bb1f81 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7861c71 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe92b26a1 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb6e4070 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecd61a3d mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed44dbcc mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf03e8017 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0893c5f mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf09a1453 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3592688 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6d31aaf mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6d57dc6 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf720c995 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa0e638d mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfaf2f610 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd3b84cc mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdb726ba mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b539238 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d28a41a mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x111d405e mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13c4abe4 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x156fa0be mlx5_modify_vport_admin_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16b0e102 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x171504c9 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18d2a31e mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bb7294b mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d6abd09 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f63bc61 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20198f26 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2167ef02 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x229d12e5 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x248899bc mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26520ede mlx5_nic_vport_disable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a8dde53 mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c2b8e07 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e232656 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x380ba1df mlx5_query_port_autoneg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f7a3d8b mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41a88ca1 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42c9fb1f mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bd9439c mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5472c1de mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5826caab mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5903ba39 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6006260c mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x641b0f1c mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e14bd23 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f696c88 mlx5_set_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71bb2754 mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x816de155 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8223ebc4 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85acefe2 mlx5_core_alloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x909103bb mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91540413 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x971df1f4 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x986ab646 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b6095cd mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d80927d mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e3fcf40 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e4ea39b mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa233c113 mlx5_query_vport_admin_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa334e46c mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3b66b0d mlx5_core_dealloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5055f3e mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5460069 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9218598 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaed8db04 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6239009 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb807b8a6 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc248d099 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2fc768d mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8f09ea8 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbbcfc6e mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf8fb90d mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd91126ad mlx5_core_query_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbb30c0d mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdff28c89 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe044e4f3 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe10a1ffd mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1c281fd mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe271a161 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2b9757c mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe906f775 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed00b3a3 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf079a17e mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf41db7e8 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4418f72 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4784ecb mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8504adb mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8c7bfb2 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdc8542a mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x2c738d1d devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x5e28947e regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xac144314 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x78e339ea stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x8990810b stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe82422df stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xed547476 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x0f61de88 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x2e2a81cd stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x8cdcbaea stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xb79f9949 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x0011a491 cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x0437e089 cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x1c01888b cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x416dc67d cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5ac15c16 cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x635b84e9 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x6c0891b5 cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9b3fdc79 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9d1bcb0c cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb96d994b cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xbd44cb0f cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xbda8bb3a cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc823478e cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xdf0dabe4 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf2932a23 cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x2f9152e4 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x7f19b48c w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xde1949b5 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xf0d9a0ab w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/geneve 0x9bd0811a geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x499ec317 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5be5ff1e macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x77f8617f macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8ae922bf macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x79d0fbd5 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x17b55dd7 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x49b151d5 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x70432bb8 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7645f2b1 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7ac43a10 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8c5604af bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8f715714 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x960027f1 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc23dccd6 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf707b30b bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x4986379c usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6a011831 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe5b2c7ea usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xef1858d4 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1c5651f2 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2b9655f3 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x38441e56 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x68c62a6a cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6bc25326 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xaa1d567c cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc019994d cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd6c8f371 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xefdaf110 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x05799ae3 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x428b18fb rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x69dd1370 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc5cfb7bf generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xcb45afc3 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xeba79b48 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0bb476b1 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x12ed2d2f usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x321a0b67 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x324502cc usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x334e3df6 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3eb36758 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x429b8c98 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4b3bc51d usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4f9c2782 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5059c861 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x52c17140 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5d0b4f30 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5d7b2648 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5e8cbb9a usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x68baecdd usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x696b9321 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6ba7022c usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x70b8a103 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7187101a usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x81f1a634 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8564fdb6 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9fee1e68 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa33f09a3 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa55c98af usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xad957300 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb63a84e0 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc78506b2 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe66c4f21 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xedf7abd0 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf0fb1dcd usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf7a8d41f usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfb38b38e usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xc9b38115 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x171bc756 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1a732aba i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1ea499e0 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x392831e4 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3a8442da i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3da7a464 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3dc9d92b i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x47c54059 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4ffff110 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x52a0d049 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x54b0cb04 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x980ec986 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb670719b i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc945faa2 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcd66f925 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xeb567fda i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x039fb3f1 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b938014 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x40bb3b12 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x96e752d5 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc008da6e il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf1dccd80 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x03810b71 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x08bf1ba8 iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x08d97b06 iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x19498381 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1e54b1be iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1fdf55ed __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x216d960a iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x28e3c09d iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2c8673bb iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2e4c4937 iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2fa97a2c __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x33492fb1 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3b4ef623 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x469cb1b9 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x47e5051f iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x50dea68c iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x51e65bd7 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x539e0ead iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x56845365 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x621b56b3 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x63291c68 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6cd1e784 iwl_write_prph64_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 0x7ab0e0f7 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7dde5b58 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8ab14d93 iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8da16094 iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x95965ded iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9960a192 iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa605a515 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa77b3440 iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb0b40ee6 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1ab56c1 iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb43d9459 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb531d62a iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb7de9fd9 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd3f0a114 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd8061bd1 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xddcd63ff iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xde539dc5 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0e34f83 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe32455df iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x187dc552 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x1d4caeef p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6be8152a p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7e7b70e5 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x956403a8 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xad3d352a p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb6b5c44a p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb9cf1d28 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf142e296 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0b8d0f21 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x42672c7a lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4329eee6 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x505c9fe1 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x53ad70e0 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x67667cf8 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x88668c20 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x91867838 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9316353b lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x95234e9c lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x993b3a26 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb4c18974 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbe4bd6bd lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc25620cd lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdb0cb658 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 0xf8355c49 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x309e9d68 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x3332c94c lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x4acaf289 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x64725504 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xaed49978 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xb13435d3 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 0xd754654d lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xedc3103b lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0f3b896b mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x125fba45 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2190b125 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2fa2a87d mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2ff319a1 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x63a0a220 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x708d24f9 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x79651647 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x88b86db9 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9889e9c9 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x98a84d63 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa83c4a35 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbe6f70c7 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc8d8c037 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcd8cf450 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xce26bf63 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcec382ae mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe1b0a0fc mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf25d7494 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf5ef5aff mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0042ef0e rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x04fb3086 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x063c247f rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x07e1b75d rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x08fcb4a7 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0b6d4a4b rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x18edf951 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1c755cc9 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1d3bf8ce rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x23554ca8 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x25324453 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x29467c30 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2a3e3d74 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2de77e8c rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2ffe0201 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3a855232 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x44f5b950 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x54d98304 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5b88e9e3 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6bd6cee3 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x71addc23 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7436143c rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x84147ebd rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x89f322d1 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8aafa608 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x92e0682f rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9b76ec10 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9cbf8e47 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa0b7e9d4 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa256851a rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaab7d817 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb14905f9 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd3e85947 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xde4be7c0 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe1b58f05 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe8879b01 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf605d830 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xff0d088a rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0dd28096 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x434f43cb rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x56f6e2d1 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7e400695 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x80a2a8f2 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x87d21535 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9d2debdd rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb099c474 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc95a73b0 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xce638d47 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd895dbb9 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe10604a5 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe1a62116 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x09879623 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0bf33bbe rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0e4564d8 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1b347ed1 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x27f0095d rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x37ba608f rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3a22d187 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3d00be26 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3dc4beac rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3f747c3e rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x41ecfd88 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x440dc08d rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x48ecc151 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x491fb9d9 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5d845df3 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x602fd904 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x62a73d9f rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x62bab129 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6a08cb5a rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6a1e0a23 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x700d5671 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7837feab rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x789348a9 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7c55cd67 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8087573a rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x812c0246 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x826c094f rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x82e16088 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8c7861cf rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8cdd0129 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x95637c42 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x96e8159c rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9c9a75ea rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa4b1f051 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa9a3f748 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xab0cfbea rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb215d732 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb217f8ba rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb39674ae rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb4ff82e0 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbbf2e349 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbecb0fd7 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd7152ac9 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdfb72c53 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeed551a1 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfe5facf4 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x43e508ca rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x631b9709 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x859e448a rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xb071156e rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xced818dc rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x01b5c3b5 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x0ec294de rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xc98741ab rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xf2ce8168 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0541b984 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4108dca4 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x525f43fb rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x60ea611e rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6e069871 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7f343567 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x90e6a033 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x93cb8977 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9f4c4c37 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb0887330 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xba1ceb15 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc7da730a rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd041d4e6 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdca6170d rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe044f26b rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf611d6c8 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0da6f79b dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1b485b2f dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7e99541b rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7ff437ff dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x01654659 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0363ef72 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x03c001f7 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0f15e739 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x18fd1be1 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1b7a4893 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1f3fbfc3 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x341a5f33 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x43cce3b9 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4d666d24 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x55ad0080 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5a3d38c5 rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5ef69703 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x67bdc9ac rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x79c154aa rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7e7b22a2 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x879bb5ba rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8c5ce983 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa0deb10c rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa16a9cf2 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb853c743 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbf6123d6 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc8427167 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd7f372c3 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe0d234d9 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xecb5ec8a rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf4041b2c rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x11efd4f4 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x242cc57a rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2a72bbd4 rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x34cbb9f2 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a3c3b64 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4481604f rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x44fdb0cc rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x658982c0 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6ada0c93 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6af1b227 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b4de810 rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x867fdf8e rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x886b2c19 rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9e39be02 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa0d4b667 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb07d23ef rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc091cfdb rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcbabea58 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd3ba34ad rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xee4b6a8f rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf0f5cec9 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf9976d05 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x55cd9640 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x684e996b rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xeb6d775f rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xfb8586f7 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x0bb07baf cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x5481f01d cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x841fb067 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x89b49907 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x636dc226 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x6fb48f5d nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x73af816e nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xd03a88d5 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x320cdc53 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x9ed0e7bf pn533_unregister_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xc68e3a68 pn533_register_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x334fe25d st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x58c411ee st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x6ada0303 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa5051606 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb00ba09f st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xba0fbf96 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc27575c5 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc359609c st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x2903eb8b st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xa0f315b1 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xf21abafc 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 0x236747fc 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 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 0xd41a9fed ntb_transport_register_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/ntb/ntb_transport 0xfc535dec ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1619b4d7 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x19865359 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1a18ce9f nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1f6c1dfc nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2927ed4e nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2de3900d nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x327858b1 nvme_max_retries +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3f342e27 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4540700f nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x51115169 nvme_requeue_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x549c8266 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x58695919 nvme_start_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x612e05ed nvme_init_identify +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6557b2d3 nvme_queue_scan +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x66fa4764 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7770ae27 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7be648fa nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7c5877c3 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb120ad50 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbea48160 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc6c79a40 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd0996e0f nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd22f25a3 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd8011dfb nvme_put_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe789e931 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf958ab24 admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfbfff970 nvme_queue_async_events +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x066c4aeb nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0c091fd4 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2914f37b nvmf_get_subsysnqn +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x62a953e4 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa9f061e6 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xcd87d78f nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd4dd32fe nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe2cc7433 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xeacf4cfe nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xfc6ac8fd nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3c19fe34 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3c22031c nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x586da6b4 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x845d27a0 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd26e9d76 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd82eed9c nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf0cc0612 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x0ae6079d of_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x224f51bf nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x22d49307 nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x596cd900 nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x7cb2d2fb devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x7e4ef16d of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x859e8c1c nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x9a122ea5 devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xce82f518 devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x160c33a7 ufs_qcom_phy_disable_iface_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x16b08216 ufs_qcom_phy_enable_iface_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x35fb8415 ufs_qcom_phy_start_serdes +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x3ddab706 ufs_qcom_phy_calibrate_phy +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x4adcfcd8 ufs_qcom_phy_set_tx_lane_enable +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x642bf09b ufs_qcom_phy_disable_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x6584a0b1 ufs_qcom_phy_exit +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xa1294cb2 ufs_qcom_phy_init_clks +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xa4ec5a62 ufs_qcom_phy_remove +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xb319ea2a ufs_qcom_phy_enable_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xb48701bd ufs_qcom_phy_generic_probe +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xbd816676 ufs_qcom_phy_init_vregulators +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xd038dbbe ufs_qcom_phy_power_off +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xd0f3bb41 get_ufs_qcom_phy +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xd893eafb ufs_qcom_phy_save_controller_version +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xd9608868 ufs_qcom_phy_power_on +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xdac4469a ufs_qcom_phy_calibrate +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xe2ad4d19 ufs_qcom_phy_is_pcs_ready +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xe929defd ufs_qcom_phy_enable_dev_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xf75556c5 ufs_qcom_phy_disable_dev_ref_clk +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0x09fb6826 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0x74ed1279 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0xf7e6beda bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x28bdb3a2 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x45b58c79 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x4f6a3fdd pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x33c46126 reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x9bf4baef reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x13f05ed1 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x8530db72 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xe1ed6808 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xe6e6929a mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xfb2e76da mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x42091994 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x894e7dc7 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xaf11b89f wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xdd8b15f0 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe1408a05 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xfcb85e3e wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xebbd68ab wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_mdt_loader 0x598371a0 qcom_mdt_find_rsc_table +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_mdt_loader 0x7a21b03e qcom_mdt_parse +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_mdt_loader 0xb67b1528 qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x04d3a299 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0c5ccd90 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1a566ab5 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x26c7fff7 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x26d4835c cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x355bc982 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a6010af cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3ef0419e cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4215a376 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x467c307f cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x519098f4 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x519ffb21 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x54e41a11 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5a0b835b cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5bc3accc cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c2ad27e cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x635ef5c3 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x69013b04 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6d2467a8 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x71cd836f cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x86a21866 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x88ac0875 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8bf42fa2 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x938862cc cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x99e8fa68 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9f915741 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa74407b1 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa8e52833 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb27d517b cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb38e59cd cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbab1eddb cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc5250d4a cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcbaa4981 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd24951de cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd30fb6b1 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd85de804 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd9e42b14 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe61b7071 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe756752e cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe764705f cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe8a4b7e5 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef0319e5 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeff35e21 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf3393aff cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf887be8b cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x07252a96 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x132f6fd6 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2413620c fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4d930962 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x721b0318 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x857ac153 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8cc57f05 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa5cb5038 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xafc2c071 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb2338f39 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xce7456bb fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd8a21f50 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdf56a5ae fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe93a6ea5 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xeaf88924 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xff29db6d fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3e854100 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x488b707e iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x735fd39e iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x91cd0dbd iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9241e8ba iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb84d1871 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc5c69540 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x00f7f4d8 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x01b67a9c iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12bfab1c iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1ca07246 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x28651912 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x30fd68df iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x31a95a9e iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3334e974 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3ed5da60 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3f92fa17 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x424a7448 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x478ab7b6 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4db9ba39 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4fb6cd73 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x501ff92d iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x50ef96be iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x68120dab iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x69925818 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x75605f51 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7c22d359 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8288396f iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9037f1b2 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x939a418e __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9408e924 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x943bfff8 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9850256a iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9a86426f __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9d5c1123 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa2d8baaf iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa62d84d5 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7754ef5 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb05e41af __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb3c9c90e iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc20b4b9b iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc64a7733 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcca6deed iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd39d4513 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd993c12e iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdae6169d iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdd2d6bcc iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeb5061db iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0b4d030e iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0dc4e3c0 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x11e7085c iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1abc1f7d iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3a5f6f92 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x445054a0 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4fddef75 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x580cade0 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x59e49e4b iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fdf83e6 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8fa3f783 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x90313da7 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb039d165 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb2aa8567 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xca1bd7be iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcd951cd9 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe5e0e704 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x022def1d sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x15de6012 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x16c7a811 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x189e44c1 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1a31775d sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1c743cb9 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x24fc3d58 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x30b5cefd sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x365a8696 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x37340de9 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4a310ed2 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4ae5efff sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6ae02c15 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6eace789 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7c05212e sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x934274ef sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xacc9b3d3 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb447cfd9 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc53aa9ab sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc5cf89b4 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc936af45 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe10db069 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe7f2c8a6 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf18a33e2 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0367297d iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x104aa73f iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x191c8da7 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x21863f3d iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x29ac48ef iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2d261a22 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4448b92b iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x44985dd7 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4e05982d iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x522a33c5 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x58f54b15 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5cf8bea1 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5e0edd18 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x721d644b iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x736a7928 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x78b796e1 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7dd4c4d5 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7f648a06 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7f7e2e11 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x83fa0679 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x876ade80 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x87dd5b3c iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9f190b50 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa1c13711 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xac532d72 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb0248c11 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb92527bc iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc914ed50 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xccdf4463 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcdfd3825 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd130be4b iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdc09d165 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2898dda iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe375d2d2 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe752787e iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe83e6679 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe984908a iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf07a1fc8 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xff7c7b48 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x16adc1c6 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1f314ccb sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xb9c618c3 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc490c102 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x90650813 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 0x13c12c39 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x16fa14d8 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2e749db5 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x51e033db srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x98d769c6 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf4da3a60 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x0e89dea8 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x8a5a8cde ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xa4b17f4e ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xa943bd97 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xaf36ba2a ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xd74e667b ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xf360c596 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x04c1eb6a ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x0b66274f ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x3e4501b9 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xbb4f1d9b ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xc333912b ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xf158ed6c ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xfc0d7620 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x0e79d4a5 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7ff9d056 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x84bc6dda spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9effc9d7 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xcbe6f7d9 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x439ce297 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x505ffc38 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x6ab0c4b7 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xafacbce8 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x0cebf83d spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x7d9404eb spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xdc19795e spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1104ff7a spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x12b0c2e7 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x26425c0e spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x330a5298 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3ae6fd49 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x42a9d18e spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x54115cc8 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5761acda spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x71d2ec30 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x78f87d69 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8734b845 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xad3c887f spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb48aa466 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc5d5394b spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd43cfa8e spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd4890589 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe3961af5 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf5960ea2 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xed66413c ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x00f1435c comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x10ad4818 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x10f9f33b comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x14e64c52 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x168f814b comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1fc6bfb7 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21b26805 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x33a026fd comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x37c3ed17 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3a60a10f comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x572983ed comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5e621f43 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6ab69ec3 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6b49ec03 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6cf5bcf7 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x75516b52 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x79e5020c comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7cb77a1a comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7e2f1cd4 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x85eed77a comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x869308a9 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8bf01e32 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8f33a6cc comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x94ddb079 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9a412c59 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa2bf4276 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb9722a2e comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbf24c955 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc133fd77 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc4f4a507 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xca56aaec comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd6c76599 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd8e19b65 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf45e1c21 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf6c5a52a comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x05e350c1 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x21b488f6 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x23219886 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x2b1daafa comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x34e7e395 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x8d0f40cf comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xebd14585 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xf5ee5dbd comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x0842a837 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x37a1902a comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x57df465e comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x5ff3459f comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xc3166dc6 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xc9c67887 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x5b63bed1 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x4ca5ee8b amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x9f02380a amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x342d04d4 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x135b9a98 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1c420e07 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3f139960 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x416e27a1 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x57a59f23 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x598701ec comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x59f15036 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5c874000 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6f093fd4 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x90b6074d comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9b051089 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9fa79cee comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd1bb8b48 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x4cad5dec subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x86520bcf subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xbc163e90 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0xda50d0db das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x174dd244 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x26131958 mite_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x27ff586f mite_request_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3a73ae46 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x592d26f0 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x64b298ea mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7a3d77d1 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xaaa32dc5 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb8233711 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc0c1cc49 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcf7018df mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdc58318c mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe55e18ca mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe5c05414 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xeddf5c03 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf578d7b6 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x87406d56 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x8fbe56c7 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x06f62871 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x08a66f76 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x10810d6b ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x1227683b ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x1724d51b ni_tio_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x77d1a382 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9182e67a ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xac7fa1ec ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xd4a2f0e5 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe9ef94bf ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xec1116a0 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xf02c1114 ni_tio_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x23263196 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x2e48d5fe ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x5f9eaa46 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x81ba17fd ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x845b66e4 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x9850b296 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x429df4b3 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x95ef8e18 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa0b99d72 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa2bfe516 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa69d3bb6 comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe11e04ee comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xfc12d3c3 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0x22116873 ad7606_probe +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0xaf780ab3 ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0xf5570314 ad7606_remove +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x338468cb adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/lustre/lnet/libcfs/libcfs 0x5b52463f lustre_insert_debugfs +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x29ea0dac ldebugfs_remove +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x521f3aca ldebugfs_obd_seq_create +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x65c910bd ldebugfs_add_simple +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x66cd36b4 ldebugfs_add_vars +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x6904da78 debugfs_lustre_root +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x75082e89 ldebugfs_register_stats +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x95d3bfe2 lustre_kobj +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xa587ab1f ldebugfs_seq_create +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xaf144be4 lustre_sysfs_ops +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xda222c50 ldebugfs_register +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xde51f928 lprocfs_obd_cleanup +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xefcf5629 lprocfs_obd_setup +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x283e6cb1 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x3945be1f cec_register_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x4b8074dc cec_transmit_done +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x623beeef cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x6372dd13 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x79e1cca0 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x7f62e9d2 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x8ea80e4f cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xc7e5631b cec_received_msg +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x277ceb01 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x31d78210 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4bd75116 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x52c2d901 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x762ba618 most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc7358b8e most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc9388778 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd07502fa most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd1faadde most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe1531528 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe66f83ff most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf992154f most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0d2ff0d9 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1b8405aa speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x217a8e09 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x30b6f309 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3457ba1b spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x56355aa9 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x7d6283f9 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x83b11f50 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb87a9705 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbd9b18de synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc10df1dd spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xfd58c957 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x00a1799f host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x5275752f wilc_chip_sleep_manually +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x73db3277 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x74195346 chip_wakeup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x76838e84 WILC_DEBUG_LEVEL +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x8e8207ee wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xae7f59d3 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xb7658efb chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xca0435e7 wilc_netdev_init +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x43fa8168 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x8fd3b6bb uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xb2227b43 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x94681a5d usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xe2b194b4 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x94dbd5cc ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xa2e179ba ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x05795af9 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xd2473577 imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xdef2ae46 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x20bb3eb7 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x46fc3eed ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x952d5922 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa3592ec8 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb793a45f ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xec0c8ec6 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x099203c4 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3508059f gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x42194009 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x58cc600a gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5d81e635 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6ec10df3 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7c59d378 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7ffca826 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x817d671d gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x843956a0 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x972ed1c1 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9b93affd gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb84bddca gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc5729269 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc849b09a gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x01259568 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x7fbb061d gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x084c3f8f ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x421daa05 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xb09b67bf ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0c40117b 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 0x176a09df fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1bc44d9a fsg_common_set_cdev +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 0x2265fb5c fsg_show_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 0x2d10b6a7 fsg_common_create_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 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x434f3399 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x43f75d5b fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns +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 0x56fafa10 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5816fe00 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5f7122db fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x66ae554a fsg_lun_close +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 0x74fd0cb8 fsg_store_ro +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 0x959225a0 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 0x987bc0cf fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put +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 0xa46e6443 fsg_common_get +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa4cf400c fsg_lun_fsync_sub +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 0xac19f703 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xac9086d3 fsg_store_nofua +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 0xd468f882 fsg_common_set_ops +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 0x1ccbe909 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x263d5d5f rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x415403b0 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x64709d9b rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x71ff5b87 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7494c665 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7bb2aeca rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7c18b12e rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8cdf3675 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb0365049 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xba29e644 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xde2b0fb9 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xec82fbc3 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf78e0a7f rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xffdffb7e rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0441a926 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x052f182e usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x07df10d3 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0d9ce371 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0f5e3687 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x182d64ff unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x18497c85 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1f8cdfd2 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x21eb22a0 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2a9a3ffc usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3580e768 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3d8e7404 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x52b6bb66 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x78d94632 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9a3b6d45 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa0fce984 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa17f9b98 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb7dfe53a usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbd6114bd usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc02e578f usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc0a1671e usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc7da644f config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xccaaf612 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xced94749 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdaebb7d3 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdc58a6b1 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdef1a6c2 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf0c17d1d usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf1e76496 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfaee7597 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x009d1d8d usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x00a0738e usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0c900b81 usb_ep_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0f659da9 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1a69a2d4 usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1ae680ae usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x22088363 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x27221536 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2e9029b3 usb_ep_fifo_flush +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x36096990 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3a53b0d2 usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3c01002c usb_ep_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4af2e62d usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4bbb5518 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5162f30b usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x557e557f usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x59c91e0f usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5d5845a0 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6007eafd gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x70ed282c usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x768ab48c usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7ae1ab87 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x852138e6 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x95dc79ef usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9db2f765 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9ea5a26e usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb136be9b usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb6fa8d98 usb_ep_fifo_status +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb9b7c003 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcacd268f usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcc74e629 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xce3d337b usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd16b6bce usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd67d8fa1 usb_ep_set_wedge +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd8d32b10 usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe1eb06fb usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf204e048 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x2bc4aa7f ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x64ee0dd8 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1cd5b9b6 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2f016090 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x57212250 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5d119a28 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x61d2e085 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9ccb599e usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xaabad32b usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe3c2ffbb usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xfc0248a6 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x55c9bf89 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x05e24513 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x084fee84 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x19d05dcd usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x440bd4c9 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x58ce8188 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x824b5ec5 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xebef31fe usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x01523b3d usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0b054584 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x38de314f usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x52c5a0f0 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x52cf9762 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x65e6577f usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x70822ddc usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x76571e99 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7a40df3d usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7bb8ab0a usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8b6d535b usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8ff66bc6 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9618a716 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbf823541 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd79d361f usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe33169ce usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe9267c39 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xef9e7ff7 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf2fe02a9 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfbf4a9ac usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xffba40a0 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x01ae86d4 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x079013ba usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0deb7442 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1fa64de7 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2dc1dfab usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x34c3fab4 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x40ed2306 usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x42e9b84a usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x439cfe34 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x43c683ce usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x57b75d58 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5d00d1da usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5e636458 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x73e9cdae usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7dad680f usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x806c605b usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8c1f77f2 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x97f02385 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa2b2f238 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa7e84ddf fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc1479a33 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcd52952e usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd7db1ea4 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd85d08c0 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x00256c83 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0b9512fd usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x30426d41 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5bed166f usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x775a7b2c usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8a02bed5 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x93935116 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xca02aa4d usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xcb9e7ab8 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xcccc2d4a usbip_start_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 0xe210f22a usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf241e3dc usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf68990b6 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0bd816f0 wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x483e143d wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x4857682e rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x7906b946 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x7d755202 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x87567b31 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x9b4051b8 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xe669b50c wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x00234084 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x03ff9a8e wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x269993d2 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2fbef63f wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x39b74b47 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3afc4325 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x850f5edc wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9c7a4073 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xaff6697f wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb5e46670 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xba639bf7 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc2755ee6 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd77aa02c __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xdbf48e69 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x1d723ba0 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x563d59a1 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xe92af792 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x2d6054f7 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x3b6923de umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x514e9ae7 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x90324b57 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x95b505d6 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x99db7ed5 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xb9c4447b __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xfa143946 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x05eae80b uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x074dfcb6 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x093c9ccd uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d78016e __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fc02440 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x136766f7 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1754337f __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1c608cfe uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2253cb90 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x29273b9b uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2a0ca4f4 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2b3e5f58 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x39f3dd09 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3a0fafcc uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x40fb2326 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4a454492 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4e378e64 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x533ce83b uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5921ab65 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5bb35b5f uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5fee7f1a uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6282915f uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6a2427e2 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6c30d85e uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6e1b860e uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8351781d uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x87da2a6f uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x92242c6f uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa147608a uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa2d29da8 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xba3d1c5b uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbee7d562 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc6a81f6d uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd126435d uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdc799124 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe69a0bfd uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xed88fc2c uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf5c7b7bc uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf6ab5b69 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x5e79136b whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x619c9e55 vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x79cb9e54 vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xc7f3c47a __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xd91972c1 vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1b655e1d vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x301d68d5 vfio_iommu_group_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3ef8dd49 vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x425afe89 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5ceef139 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7d475bb0 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8252f970 vfio_iommu_group_get +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x896beb2b vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9c93a4b8 vfio_info_cap_add +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_virqfd 0x465f6b36 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x8dd05238 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x113a5056 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x11f15378 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x16be7c40 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1d56c0e6 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x35d83b81 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3af5a8f3 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3c75d5c8 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3d20099a vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x47563690 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4a371e0b vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4d943b03 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x50bba848 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x56e01bd2 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x69eab3ca vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6cc67974 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6eed7e1f vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6eee7c52 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x72d908b1 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x76a0f199 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7a310a4a vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8526bdd8 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8e1944b7 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9789cebc vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x97a9645a vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa09e837e vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa1f1eece vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa9d2344c vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xab81a98e vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0aee8ea vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbe40d9aa vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc31a1ed9 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc5d8ad8f vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc8469c43 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc8f41d58 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc921a12b vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdf8a7f23 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf93c4ba8 vq_iotlb_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfc134824 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfca4d865 vhost_add_used +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x34cae13a ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x3e193613 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5c8fd12a ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x62f83511 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7fd56827 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8849e828 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xbdc42843 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x45a4bcb1 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x4645c0a2 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x52331a82 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x77768121 auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x966e9ff6 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xc2bf28c5 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe8a67974 auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xfc616180 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xfce81a65 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xffcd3b01 auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x6ae7369d fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x6c763cc5 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xaf69df89 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xc9a613fb sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xdb6814b4 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x2f4abfc6 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x45e5ba68 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6f881002 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8fb8d6db w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x94b890eb w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xbd0dd981 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xcf9be05c w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf35f3c22 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xfdf60bad w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x5f459ea2 xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x6fc00002 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x82732049 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc730324f dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2a5a1827 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3f2b2849 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb3b24d12 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbaada8b8 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd2c2e022 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd56972a8 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xeadc9016 nlmclnt_done +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x010085cb nfs_commit_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0202357c unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x022b6e78 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04034f3c nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06161b0a nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09d2215d nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b5a67fd nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0cc8e6a8 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d6e4e24 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1033eb07 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x137494fa nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13781066 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14bd8376 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1929e1db nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b5c97b3 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d66ecf7 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d89ed70 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x205f933c nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20897e0b nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20b7cda8 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2437bc55 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b426900 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e7ec418 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fab261f __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35cf31c8 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37ee698d nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x389681d6 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39bc55ca nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bf2bb15 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c23c848 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e12d912 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e7fd874 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f0a9efc nfs_pgheader_init +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 0x40daf9e4 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x414a95fe nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x420134ee nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42dac274 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46455297 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x469b958f nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47d1fb70 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d2b7768 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4de66d76 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f02bfb7 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x532578e6 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x533bbac1 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53a99a2a nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5426bff5 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58d68e7d nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a8c2452 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ab5b078 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d048e8e nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5fad69d3 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61504ab0 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62596204 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x652bab98 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65dd5353 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x679caf87 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67b440ad nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6bdeac45 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6dc0fccc nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6eb8fda1 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7317121e nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73192542 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x744df252 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74a2b4ee put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7690318a nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x771711c6 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x781a8959 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7856f6ff alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ada1979 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c86c7f0 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cee8bdd nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fc840ea nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81d1bc1d nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82b6bee8 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82ea31e1 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84e0a117 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8540ce08 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87904225 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x880dd199 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88f9236c nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f2b13f6 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9087dfe5 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9126d7a5 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93a039e2 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x966d547c nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9954db99 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9fe52a93 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0327391 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2b02a80 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6d29428 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa74f1f82 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa75883eb nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xacee452c nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf91b683 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3a4dfec nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba6bf612 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcf17267 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbfc79855 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0e9c1e7 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2348852 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3c1e2f8 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc54c5a99 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5b39c00 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7a3f2d2 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbf6ab17 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc0136f4 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcca3d3c3 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xccb85c90 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xccc10352 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf0d7874 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5e65193 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd67ef727 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7d7da6c nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc582074 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdce400a0 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1527dbe nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2c2fe57 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe845a972 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec92f7e5 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeef14e36 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefc1f598 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf274bc9a nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2b43518 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3e17551 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf715d0de nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9f48e34 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe71c236 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x863785b5 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00d280c7 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0693e9dc nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a2b4e73 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x11be5873 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16a26f2c __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b846f42 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1cbedcc7 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x308021f5 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x339e4860 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3a22212c nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c01a8aa nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c81b70c pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x563e47a9 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x567799f5 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61121c02 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6236ec48 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x68265618 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c022ffa nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6fc59ab7 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7089e0e2 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x717d7463 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x731149a7 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75c84842 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x817782fd nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81ae31df nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83a2adac nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x861f6dd0 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86830f79 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8bd57d33 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8cb6a210 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ce5c968 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d8fb462 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ef8cda5 nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9466bef5 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94f7d8c8 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96fc24ba nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c65775c nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa0f23957 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa229449c pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa875c18b nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0ebd7a5 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb219b970 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5e067b1 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb86caf69 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9613be2 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc95a46b __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe47dbc3 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbfd40f95 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce565015 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf2bcf2d pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd04bdae9 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd27f8cd9 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd92b0188 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9c56f11 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd4fb7c8 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde22fc78 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe56d1846 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeed26e34 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf82bf192 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfadecd38 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfb270f43 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x2d23f024 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xa09adadf locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xf62e2f5c locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x25a80e2a nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xd4f009b6 nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x21a6d605 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36a28a9e 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 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x86750b4c o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8c5a648e o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9647e3b4 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb4881f9a o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xdaa88c77 o2nm_get_node_by_num +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 0xffb9fa26 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7bba62fa dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x837e0ab5 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x83c0dc6b dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa7a235bf dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd5dbb504 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 0xdd0529f2 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0283113b ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x103a293a ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x24b3bdf2 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe29f08c1 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL kernel/torture 0x0ed31127 torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online +EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xae4d1080 _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xb2903c58 _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xe05cdb87 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xe0bdffcd 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 0x201d8ea3 encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x0adcb055 base_inv_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x221df614 base_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x4da25bec base_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x63f42b6a base_inv_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x76203267 base_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xca3140ce base_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfa5eee0a base_inv_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfc02472a base_inv_true_key +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x135b2c2b lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x48f0fc03 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x03359a25 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x18773a2f garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x263cb686 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xc19a153b garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xd4ee7c0e garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xfd91d9c1 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x038ebfc0 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x80d54519 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x9973c262 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xa5c63ee2 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xa82bb3e4 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xe0c3baf1 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x0e995d32 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0x4685c6d2 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x78ee73ec p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xf9afb4e7 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 0x73a974a5 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 0x02e2e8c0 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x18de0774 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x52e43338 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8bb6127a l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa28cd99c l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xae6b08d4 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe58d5162 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf8150a00 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x26ad4970 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3009af42 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x462a99aa br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x55861e85 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x81755f92 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbf7dbd9d br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xea3cb280 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf8dbe317 br_forward +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x1fb1cbcc nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xd9b84da0 nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/core/devlink 0x3d6a9124 devlink_port_register +EXPORT_SYMBOL_GPL net/core/devlink 0x5c4fa782 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL net/core/devlink 0x5cf6bb96 devlink_alloc +EXPORT_SYMBOL_GPL net/core/devlink 0x6ad0fc0d devlink_port_type_eth_set +EXPORT_SYMBOL_GPL net/core/devlink 0x81a2c684 devlink_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0x876c28d9 devlink_register +EXPORT_SYMBOL_GPL net/core/devlink 0x9dbb430b devlink_sb_register +EXPORT_SYMBOL_GPL net/core/devlink 0xb1fa8912 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL net/core/devlink 0xb416d7b3 devlink_port_type_clear +EXPORT_SYMBOL_GPL net/core/devlink 0xbcc01888 devlink_free +EXPORT_SYMBOL_GPL net/core/devlink 0xc2b1d94b devlink_sb_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0xcd26c675 devlink_port_split_set +EXPORT_SYMBOL_GPL net/core/devlink 0xf2697808 devlink_port_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0328654b dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x046215ca dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0d7c1032 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1698a69f dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1f3cff4c dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x294af13b dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2999cac0 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3180b635 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x359cafb0 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x37ab184f dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5ac4f7fa dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5b8268d9 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5e30c09d dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5fe0bbd4 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x63c42387 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x64e8ebe0 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0x66ef0604 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7399914c dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x75417f77 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7ebd8172 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x82bae1cc dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x83ecc4d4 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x87095a63 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa4ded4db dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb1ce25e8 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb7f8eebf dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc00955bd dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc27547d1 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcf443d36 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd5d5f441 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd9f6285b compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdca7906f dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe5cd2926 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe8596b0c dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe8e0388f dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf9956023 compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x41e2b0d4 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x50375225 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x53ead8e3 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x85573234 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8fce1a6d dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xcee4cabd dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1bc277ea register_switch_driver +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4abfa11d dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa0a09c36 unregister_switch_driver +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb6855d78 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xeb38f7cb dsa_host_dev_to_mii_bus +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x22854c78 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87b057d9 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xcf34cf43 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xfb2101b8 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ipv4/gre 0x4637aeda gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xa1b09ee9 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x325eff65 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x50174dba inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x555f8442 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5a20df92 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x60c328db inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa7331ac3 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc5da1828 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe1ca60b9 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe3665d99 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x071cd533 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x105e0bec ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x256cf964 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2e4050d9 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x529960d2 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6dace9a0 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x91a8a4a0 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x94011c0c ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x98cdaf7b ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa1477d63 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xab8b6d93 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb419a04f ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb98a86bf ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcc825eb3 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf79af3d2 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf994dd81 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xb5a04558 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xfecfc92f ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xd971382f nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x4ba63d58 nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x693f0f50 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x7befd48f nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xbe4bcce8 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xe7431d46 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xa05c2f81 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2d3b83cd nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4a23d633 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbcd271e2 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf287f681 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xfb238d1e nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xc6047085 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_nv 0xd686a850 tcpnv_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x335f4399 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x709ab90d tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x85382a94 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa14a6569 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xdc7a2e0c tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0a4da512 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0ca4f6d7 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4474380b udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6804c939 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8b7cc0aa udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xca664468 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xcb063ec8 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x55d251c2 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc8ebbf39 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xfbf50b78 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x0443fc63 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x9217cd6f udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x27275dc2 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x205ea23b nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x778453c6 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x0362d707 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x1337d49f nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x1689e6e0 nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x47d41d2d nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x57db83bd nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x3ec1dc3b nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0c4c45f9 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2bd52976 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6dfeb46e nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xaa49acba nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe35d7985 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xb2d5d8d3 nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1cd211fa l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x27dce0d5 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2f3c6451 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3ad604c9 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x40d7b123 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4d77f6e9 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x60a9d160 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x76c8e7c2 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7f59cb27 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8b460bc7 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa0cbe2fa l2tp_session_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd56dd172 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdd773b4c l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xece3937f l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf3bc3b20 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf64b7519 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xd4d07e3f l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x08103f07 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0a649340 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11e1f72f ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x143f3a1e ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f9aac4f ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x27fb3807 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x41e6a61f ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4fa72d45 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7457a46d ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9c1b2448 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9fcf7fc6 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa3a26ea5 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbb25448e ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc9fc033f ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcc932871 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcf9d226e ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xec9b66ff ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfb6cefb0 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x11e1584c mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x6020f03f mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x6ad58d46 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd820adab mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x00ec59ad ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x057a118b ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x144e656c ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1a7e2a6b ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x209a666c ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22905f5e ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x409205f4 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x43661594 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x56d5279f ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x582074ed ip_set_get_extensions +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 0x9a443887 ip_set_get_byname +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 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb9a7a795 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbe6bc736 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc238f7c1 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd2c7e184 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfcfc4e7e ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1218cac0 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x5fe0fe45 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xcc7d523d ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xff41f521 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05c75f17 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x060b6489 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06202837 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ef03ee1 nf_conntrack_get_ht +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f516744 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x120730d3 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14a6efed nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c4d3c7d nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20da33b0 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x210a2d53 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22d58be4 nf_ct_helper_ext_add +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 0x2adb548e nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b8e9e08 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f40b8a3 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2fe20df4 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x30ab2341 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31b4c674 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31f625ad nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3271581a nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32762d5a nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x384035e1 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3954ff81 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a881507 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3aefd4da nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c4eec78 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f0b4c4c nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f7de445 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x410493b1 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x42111fa8 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x431079ca nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x441b798d nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x535b9075 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x585ef5fa nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x58f6bb5d nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a5d023d nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70277d2a nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72e02124 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x773be80c nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7876a271 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7950db06 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7cc396c2 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7cf38b43 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x834a1598 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87c2becb seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x890630d2 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91dbed34 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92c056fa __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92c4ae80 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ab852c9 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b89a415 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa0f2cc02 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3765758 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6416383 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8f0e430 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa0bf0c3 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa93ee22 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb201bd41 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2061261 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb320544a nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbecd8800 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc107bdff nf_ct_seq_offset +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 0xcb3b24ce nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc3921b5 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xccdd5c2f nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd6ffb9a0 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb3b79ef nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde4783ba nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdeda6c1f nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf38b2c4 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe31e02d6 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe39fafe1 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe52242f6 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6ff1043 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec2fcb47 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xefac8967 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2aaa9de nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6808f59 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa2360ee nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc41cb10 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc6425a0 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc6f477c nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd27fa63 nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd587525 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfdca3b79 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x7e75ba9a nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x65651d27 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xf85a0c00 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0ad846bc set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0bb34c40 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x13da757d set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x42fe4bf4 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7d271bbb get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xac999f20 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc4b87ed4 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc661d23b nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcadf6adb nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcd4b9c38 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xe54e4d9c nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x14fc1517 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x374d2958 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x691653a4 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xf1db3d69 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x0257cdff nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xf785b78b nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3521e82e ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7edfcffd ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8cb0a09a ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xbbc7909c ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd967218f ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe0774345 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfe7b1053 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x8cb21d6b nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x812b5537 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xfa4f8f67 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x1650d4ec nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x2faada12 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x932cd1b3 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xf466b100 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1b0afad6 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x69af70fb nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7619b4b9 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x830beb6d nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x83e5ef91 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x851b7d01 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9c132af9 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xad11a3f8 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfd036304 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x2496ef91 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xab8a87ba nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4fa802cf synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe5dad18b synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x04013a93 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x16ce25cb nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1843d0dd nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x27eb68c6 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2a2d9a4a nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x34ed28b0 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3e4b628c nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x44194a3d nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4bc391fb nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5c797afe nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5e3c2f18 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7a62e6b0 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x820da05f nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x858def3b nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x88c15b07 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9e8ca784 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb7643c6b nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdb418bfa nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe48adc81 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xff8bea74 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2d62baf7 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x38cb2043 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x57901760 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x65775681 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6fe0b535 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa5104c9f nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x3e1ca709 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xb078e221 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xd833debb nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x0901c08c nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x1f01ef80 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x2e903e45 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x44ec6dab nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x07234ec9 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x54a9c4ac nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x7620a93f nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x8e521764 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x8ec36117 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb47c7e63 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xd5539692 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xf0e47c75 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x74ff9341 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xb127057f nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xbcefec8d nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x235e9ac5 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x47e6eb76 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6f8f6a9c nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x05fb0353 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0d2eb5ad xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x156c89c9 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x186a960a xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2b34c817 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x31a33088 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3832b207 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x48975970 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x558e762f xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x65bf07e0 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x70ec7368 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x74a189e6 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x90cc2130 xt_unregister_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 0xe0b4971b xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xea0ee3cf xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeb4275d7 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeb691ea9 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf1a76f8f xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf6015f4e xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xe9ef9dd0 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xf156a7fd xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x2005eac8 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x58419708 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xe349d81d nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x16b7a67b nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x9a46b509 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xdc5239c2 nci_uart_set_config +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x15a89458 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1a17e422 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x5dd252d8 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x81e10445 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa6d3ebd5 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb3f9378f ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd4a085c1 ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xec5a8257 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xfe99f8d4 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x6ba37e16 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xc3fa301b qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xc439321c qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x099e3769 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x117306e6 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x14874bbb rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x19eb61ce rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x1ecdd78e rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x254e3f74 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x30f71b97 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x32be809a rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x34087e31 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x3c5f8133 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x541d84d0 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x599cb838 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x822dbe33 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x82cdf6a7 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x83a7c276 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x8494cc16 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x8f070cf6 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x93890bbb rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xa0fac4f9 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xa32e4272 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xae0e7141 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xaf8af567 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xbcfc9d0d rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xd6ecf301 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xdb8c48ff rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xddb89e2c rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xe2eae850 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xf4678aad rds_inc_init +EXPORT_SYMBOL_GPL net/sctp/sctp 0x27c8853e sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x45171499 sctp_for_each_transport +EXPORT_SYMBOL_GPL net/sctp/sctp 0x5716cccd sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x84e60aa0 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x259fd4a5 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x6695431c gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xcc329e8e gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01642db7 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01e06f0f xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x020afcaa xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x028b9984 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02e64f74 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x040302af xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045a817b rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04fe6d8a cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x055bd50a rpcauth_cred_key_to_expire +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 0x0974f2e5 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a54628b svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b66f8f3 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cee6cb6 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d0e9571 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d78e148 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ee0f77f svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1008f766 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11285ef9 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1158e354 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x115f5331 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11923f6f xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13b0e59b rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13ed3d92 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1779ce30 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17ca1f22 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b53ab60 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bd64c84 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20f585f5 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22219cbd sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x227c9d39 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23488826 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x238c3492 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2464d1b6 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25d38c54 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26b3ffcc xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x273fc7d1 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29b63530 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ad8118b rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ba7db7a xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e129c4c rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f85958c svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30a53435 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31bc5b73 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32e56b95 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33d22650 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33e9fdb4 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3437101e xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x353adb05 rpc_lookup_generic_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3585f13b rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3623c7a1 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a815df4 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cd1b83b rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d8567c4 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dca8181 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e14beb8 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4069883c rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41e9cfa6 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42718803 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4538e777 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47ca2ef8 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4854347b xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b438d92 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bf8cc90 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c50a688 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dbbffb8 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x506edecb rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x531521d0 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54e33a34 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5578527a cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x557f48ce svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5641240f svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56e7a272 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ac03035 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d2c6bde rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d4372ff rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e68b3e0 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ec12783 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f0da9e4 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6047f391 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61fee2a5 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66c144eb xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66c184df xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x691246ce sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a316764 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6aacbf06 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ac8a24d svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b34f544 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b46e0f8 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bb90fa4 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d666fec xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e02eea8 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x702e9db8 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70be17ef rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70d946b9 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71d6f7d8 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x723d18e2 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x735e384d svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x736510a5 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73ab5edc svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77d17bf3 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x783bd94b xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x799900f5 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a152abd svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b5c997c rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c1e1722 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c6f186a rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c966f50 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d208e15 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d8725b0 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x801f4ddd cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81632b31 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x840c84fd xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84c82d6a svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a9bc1c4 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b781af6 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c5c217a rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e351a38 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92dc21c3 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92feae28 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x934d877e rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x950fdc56 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97098d69 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x970ca0ec xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x973fd3db rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97799a68 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x987cc7b8 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d8cce45 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e5f00b1 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e9acf50 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f809333 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fdb8eb5 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1723a13 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1c525b7 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa22201b9 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa243c9f2 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2e1ff83 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa351bd1f svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3d9aa4c rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa433f914 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa75ab4c0 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa943f3c8 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaad89c48 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad913dde cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae1a1880 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf165db3 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2170115 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2f181a4 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb35f3560 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb546b3fd xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb56126f0 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6806036 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6aff302 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7349b57 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb87bcc0c rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaa917d9 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbacacbb9 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc8a37f5 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbde609a0 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe59c7b7 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0c958ba rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1974d52 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc19bc1ca rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc33bbd76 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3bc12a6 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5615335 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8797b02 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9c7444b xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9f561b7 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca5f08c0 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc2f54b1 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcea4310c svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2d2ecbc read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2eb0cad rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd44902cc svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4828bd8 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd509d7d7 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd572f3f3 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8148675 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8943ac5 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdaa2f4de rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb0a6699 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb10cd40 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb46d87c cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdeba40d4 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0f0f845 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1478e0c rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1c4cd39 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe45a465c write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe51dca24 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb09de84 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb7db248 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec3a0089 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecb5bff6 rpc_cap_max_reconnect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeda036d3 rpc_release_client +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 0xf16c1026 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3868315 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3add92d rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4a79123 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf568728c svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5a73e0b xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf61fad81 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf869c28e svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9380d62 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9f745b6 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbc483ad xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffa2eac4 rpc_proc_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0bbce7ff virtio_transport_get_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0fee6d49 virtio_transport_get_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x144b1e9e virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x270345a0 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x285d85a4 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x36863892 virtio_transport_alloc_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4514432d virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5065bda9 virtio_transport_set_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5e67c51e virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x69a7bf69 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6b2cd636 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6d7c59de virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6e2aa7e9 virtio_transport_get_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x75cd5ab0 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7dd73a1e virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7e35f4ef virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x814fe3dc virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8f470adc virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x98821efb virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x98d42558 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x98f4cc79 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa9aa4428 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa9e289e1 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xac80f307 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb509fd6b virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb5874b34 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb95e3adf virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbb5e1870 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcf6bae8c virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd077fb62 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd200df18 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd75dbf57 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdddfa969 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe00a27c1 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe0371f34 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe16ca3f8 virtio_transport_stream_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xebdeccb3 virtio_transport_set_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfba969e6 virtio_transport_set_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x03271cfe vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x114e5903 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x25b27edb vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4e403cef __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x53e298ff vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x560853ad vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x67a881e6 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x69856e1e vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9011e140 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9ed9cd8a vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9f713bc5 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa5d985bb vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc9a7f349 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcedb8f6b vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe76b557d vsock_remove_sock +EXPORT_SYMBOL_GPL net/wimax/wimax 0x026cdfc6 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x4276c484 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0x44cc2a74 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5ab1ccce wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5d29995d wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x6bf96eec wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x96e3da47 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x97692640 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc23f9bce wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0xcc0dbe85 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd60ef928 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0xfab645ed wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0xffbec0a5 wimax_msg_len +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x07ec3e08 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x08d576d7 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0d0fcebd cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x54ddb237 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6350842e cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x78399513 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8e6e73c4 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x99531f21 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xaa50ac54 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xaad91ac0 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xad6a0bfd cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xda50c6d1 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdd7826ff cfg80211_wext_siwmode +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 0x3bf471d7 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x4d6d4d20 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x6a60810b ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x9f22dd1f ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xbf18683a ipcomp_destroy +EXPORT_SYMBOL_GPL sound/ac97_bus 0x6a04a6f2 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x51339469 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xc6fa56c6 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd 0x0823ee94 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x1d8a33e2 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x3b5807d7 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x59bd2483 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x7c0be518 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x9ebeece1 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xa56d06df 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 0x2e49fd26 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x42f06ad9 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4dbd61ae snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x61fb0de7 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x65be88e3 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7d472ca0 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x84ba2af9 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x86e63e57 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 0x93796576 snd_pcm_lib_default_mmap +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 0xe5ea16c6 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0f776d66 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x17364e4a snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2adcc2ee snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3a6510be snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x481323ac snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x49f3e16d snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa520fe1c snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xad482b34 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb35ec0e1 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc2b64fe1 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe4aed628 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1ea379b9 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x50e9903a amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x613b4158 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x61e47ddf amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7e504553 amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8b03db54 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe7bc8a66 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x03bc7ced snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x047ba6e3 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x06e5c62f snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x07ff50d7 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0dd964d7 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11234a03 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2209b373 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x32b4b55c snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33856484 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35d1ee79 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b176d06 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd7108d snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c9ac68b snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e588e9d snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49a05712 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4d7e9ea4 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x506c1abc snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x55a4bb0e snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x57341b89 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x59a96558 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b8e7fa4 snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x613c71d8 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x650958f3 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x68dfb884 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x69c730c0 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x75af6484 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8052e41f snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8371bd75 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8631cc87 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8887ee74 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ca401f2 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x934c71ce snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x954c56e7 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x96a84be1 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x97db432e snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x97fe3e1e snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x98e58879 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x99605dd9 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a4509ea snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9aa75e2f snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f767f85 snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa8024fc5 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaad6de35 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xabeb98e6 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad932088 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf20a056 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb16c37c6 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4fcd2cb snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb5a35996 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf70b15d snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc122e6dd snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc3eab3b2 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc42764e3 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc75a0877 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc804a8a snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4f41773 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd6468c53 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb90636b snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd4394ba snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd55ac3b snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe1671654 snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe22b90b5 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe39f9748 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe6a8a6b6 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe97ebcdd snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea265677 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb8281b8 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeed69fdd snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0504c72 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf2c6d63f snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf4ff02fa snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa80229a snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfadf5add snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfccd6394 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xff0dd9ab snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4d36a57f snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xac2073bb snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb02768a2 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc5e32c1d snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd1820d33 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe88ff09e snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00aad3ec _snd_hda_set_pin_ctl +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 0x07b2f934 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x084bddfc snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c8320e6 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e29bb6a snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e4b1b02 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e96d361 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x136cda00 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1570bcf4 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17e52b72 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18df7c53 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19dcdbe6 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ab56b52 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c970424 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1cb623c2 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d988d60 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e9326b2 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f8151fb snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x207f3bfd snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2267a883 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x227b1ce6 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26dcffa0 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2bf792ea snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2fb0d07c snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x318b2f71 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x387976bf 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 0x3aaae6b4 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3becae96 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d26782d snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44a2c5ba snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4860700b snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4fc1e999 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x564e910f snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x569dfc2b snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5780061a snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57c21857 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a07ab58 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b74e365 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c7946c4 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f5f5f18 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f7e992f snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64bce6ee snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64bd520e snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69fad056 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c87fcc5 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d3c7627 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6db01966 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e5c60f4 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f4eda6f snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7357472c snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76b741c3 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7860c664 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b3329c6 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b8ae45a snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c014931 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e4be781 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81e9aeea snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8236287a snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x831acbb3 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85b25ba1 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86b1f3b7 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x892da248 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b6bc93c snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f8f3738 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90b795a9 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x962bbbcd azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99ea74ef snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d521f1d azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2a68f88 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6202aab snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa80a1f2a snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa220b36 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaafa4503 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac00c0d7 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac2984ac azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac617df0 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xacf76ba1 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad5dea44 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xadcddb17 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae5e6d71 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf2679d5 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1893479 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3d03a01 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb54a58dc snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb55028db snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7d8a345 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbbe3aba0 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd315152 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd731357 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe048496 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc30e396a __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc37bd65b snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3fd96a4 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7c4f79f snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcbbbe921 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcfeeffa2 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0756b03 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5183ca8 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd75791d1 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdaa60859 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb6ad3f1 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc21e229 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd5133d0 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe157f968 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3febf34 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe409cbc4 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe43e4384 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe83aab87 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe88d7b56 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea40e0a7 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec30d1b0 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed7bd554 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf04caaa6 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf21b3543 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2be3dfb snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2c9afb3 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2f39546 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5b4bfe9 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5c53716 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6be641d snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa3c9600 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb944ef5 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd60882f snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd83fbe6 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x006e9551 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0eeaa2db snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x128e11a1 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x13d4c850 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x207a801f snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2778685c snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5ec14725 snd_hda_activate_path +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 0x76ebbe8b snd_hda_gen_update_outputs +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 0x88f3e3de snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x95a7de55 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb6d2fb0c snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb8974afa snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbd77a013 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe5be6743 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe6cbb6d4 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xec2f0a94 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf941a79c snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfa3c34e2 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfeffaa95 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x8aa7dfd0 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xb88dc7fe cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xb74cb163 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xfa2b0715 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x05dad360 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xc0668923 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xc6b26d10 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x0cf032cd es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x157ebef1 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xc444016b pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xcb6d93d4 pcm179x_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xe809caa6 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x5026b27d pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x60e12eb3 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x9520a985 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xe147075b pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x10c6245f pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x252675ae pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x463af0dd pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x958badfc pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc +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-sigmadsp 0x0c349ed9 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7357761c sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9b23be50 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd5fe2861 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd627b014 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x9caf01bb devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x684799e6 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x6dea8d49 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xc4a66cf6 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x14c8e4d6 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x47cd463b wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x76feae16 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xcda97d43 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x065402b3 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xe77e07d2 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/dwc/designware_pcm 0x4ea78384 dw_pcm_register +EXPORT_SYMBOL_GPL sound/soc/dwc/designware_pcm 0xb22b5fc1 dw_pcm_push_tx +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x682e9108 fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x90c8cae4 fsl_asrc_platform +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 0x2dce0762 asoc_simple_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x323c158f asoc_simple_card_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe6d51333 asoc_simple_card_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x0bbce7cd asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x781cf8f3 asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xac5fb1ea asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xf79c930e asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xd54574ea asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02329904 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02548909 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04becb9f snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0616e9a6 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08af5836 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09c5ff23 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ad0378a snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d39dabb snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d5c6c7f soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d6a7307 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d71a2fc snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f5eb8f7 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f6155b9 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11de76dd snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1258ee61 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12b7551d dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15ce0d54 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18d4095b snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b03cbd7 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c2f8c5c snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e74ecb6 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20611526 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x209df1e9 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x218d4a04 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2242775f snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22cc579a snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28fc15fb snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b762357 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bb7ab9d snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d5f87cc snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d8fdb63 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2df476cf snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3046fac3 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30f486c9 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x319111bc snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x325b107e snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3428b38d snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3502f52d snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3676e401 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b3853b4 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e1841c8 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3eb2eafa snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ec752bb snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4125db61 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43af2614 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x444e4b61 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4519a3db snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46078b1a snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x472a9071 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49993d5a snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c7d8239 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e311fe5 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fa71032 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fc24bc1 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51c173e2 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52adf074 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5438e560 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57a4563e snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5910ecbb snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59735a87 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5aab00fb snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e1e16c5 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fa72d69 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x616a92e9 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6292fefb snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64768f90 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6505b1c9 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67b87700 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67f3ba69 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x686a8523 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x686efefa snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a22f603 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6be2106b snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f608629 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71b1189f snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72892912 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x731cfc0f snd_soc_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75175d86 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7562e6d7 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75ff2ca5 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7637ba9d snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a485bca snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d8d6d72 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82424b00 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8304b901 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83761cab snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x838da36d snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83a4b57f snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86630672 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x868efb3d snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88bee228 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89495986 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c4848f1 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8dbb5950 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e15fae4 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ea9e284 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f10ab0a snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fdef2e7 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9162660c snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9223c150 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x922624a2 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93732a48 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98c310e0 snd_soc_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b2c8261 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ecb99e7 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f94ab16 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3170a00 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa51d038b snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6420a9a snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaaed59b7 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab857b81 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad03431a snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad1f9552 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae517e05 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf258be6 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf7eeaf1 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb441430e snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb46c0c1b snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb61d3bba snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfd88fdd snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbff96bae snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc23d573e snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2f99f3c snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3ae309a snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc412c78e snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc978e3d2 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbef38f0 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd06cb052 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1174bcd snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd13498ae snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7550b10 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdaca9eab snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddd5fd79 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf46aca0 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0f576c6 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe14c0e9b snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5417b36 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe787a384 snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea274d95 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebaa40a3 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeca78585 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed679c7c snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef6898b1 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0306719 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0b17080 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf311e49e snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5d06e4c snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6403fee snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6df83b4 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7d6d3a2 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9842da6 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc28247b snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff72b6f7 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1fb16ddf line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1fc55bb3 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 0x43d842af line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x45d57ae6 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x47bc299c line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4dff04c1 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x53d3957e line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x59a4a17b line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9a34cc9f line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa29d84dc line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc5b4db6a line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcc0bb5c5 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd742ebe1 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd8da5cfa line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe1000e1f line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfa7f878f line6_pcm_acquire +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 0x000cf531 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x0047b49f phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x00564f2c pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x005ae534 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x006dc7ab pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x007015ef sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x007dafb8 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x0083c301 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x008bc22e fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00b30a7d mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x00e29bc4 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00ee895e ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x011d2a01 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x012a7fd0 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x0134e076 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x0135b0cc of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x0135cb19 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x0136f483 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x014f5160 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x015c8c4f driver_register +EXPORT_SYMBOL_GPL vmlinux 0x01641724 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x01691daf acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x017917c0 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x01aeed46 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x01bb2db7 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01c9c921 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x01d1ee1c kvm_clear_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x01d35d6e udp4_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e429aa dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x01eca5ee bgmac_enet_probe +EXPORT_SYMBOL_GPL vmlinux 0x01f1a127 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x01fa129a rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x01fbfa34 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x02250718 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x022f1f6d virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x023d7253 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x02594e1c scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x026b1b7c security_path_link +EXPORT_SYMBOL_GPL vmlinux 0x027cbbee pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x02806a62 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x02a66585 kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x030f55e8 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x031c549d ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x03275457 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x03283f72 pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x032e800c crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0348472d usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x034ee54f irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x035d8de5 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x036446a1 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x036d6c82 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x037534be __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x037aff59 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x03897c93 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x039f9389 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03fbbe0b regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x04371635 fsl_mc_resource_allocate +EXPORT_SYMBOL_GPL vmlinux 0x04533ebc kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046ed7e6 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04a78e63 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x04a7d297 hisi_clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x04bba623 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x04bc53ff cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x04c3f2c1 gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04cc0276 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04f7ad33 clk_hw_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x051059f5 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x052aed2e inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x052bd551 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x053d45f5 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x054cc119 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0566f8b9 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x057db067 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x059fb442 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x05bfec44 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x05d03636 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x05f935a6 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x05fde457 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x062f898f __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x063c4c2f cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x064ce21c ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x065e08a1 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x065feb77 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x0665bbd0 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0678f224 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x067dae89 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x068697c1 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x06903bc2 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x06975e1a setfl +EXPORT_SYMBOL_GPL vmlinux 0x06976a9b pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x06acf48b bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio +EXPORT_SYMBOL_GPL vmlinux 0x07199dac fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x075cf822 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x07a7f59e stmpe_reg_read +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 0x07c0c2ed dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x07c42920 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x07ccae3d pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x07ebed68 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x07fa955f pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x08264448 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x082b0c4c cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x082ee602 xen_efi_set_variable +EXPORT_SYMBOL_GPL vmlinux 0x0832fa4c devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x084b0a02 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x084ff9aa pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x086e736a __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x08822110 security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x0885f206 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x088c8f68 fsl_mc_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x08b488ec wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08be7b48 arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x08d23a75 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x08e74697 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x08e81215 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x08e939a5 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x090ae864 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x092a2bc4 xts_crypt +EXPORT_SYMBOL_GPL vmlinux 0x092d568a kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x09416004 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0943a723 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x0961b62e public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x0962a58b device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0x09677a01 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x09a3b287 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x09b473f0 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x09b498d9 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x09bdc544 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x09d444b5 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x09df30cb key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x09eb196d devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x09fa43e4 of_css +EXPORT_SYMBOL_GPL vmlinux 0x0a195c17 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x0a25bfbe usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x0a5247db blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x0a603916 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0a7727f1 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x0a7bd5d2 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x0ae6bee9 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x0aed2b3f xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x0af96929 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x0b063bd4 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b0a5181 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b291eb6 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x0b33647e ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x0b3becc7 vfs_readf +EXPORT_SYMBOL_GPL vmlinux 0x0b3c7640 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x0b52f936 hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0b5f71da dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x0b893857 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0bb9a7de device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x0bc80e7d pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x0bcb198c spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x0bcfe2d9 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x0bdeda9c kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x0be13fff smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x0be8c58d fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x0bead70b get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x0bef3239 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c06164c dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x0c1c7b5f __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c327b76 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x0c3308d6 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x0c6d8580 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x0c7cfa0b usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x0c85223b register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x0c8672b6 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x0c8f0a38 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x0cbe4634 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cc3d1c9 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x0cf6b2e1 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x0d047ecc ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x0d068db1 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x0d39b8a1 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d78bea2 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x0d79b6ef clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0dcebd33 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x0dd4ee0c synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x0dd50e4b policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0ddd1dc3 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0de94454 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x0def8346 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0df49c64 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x0df52662 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e1eaf52 fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0x0e2ccb97 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x0e2e1bc3 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x0e382f89 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0x0e3dd822 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x0e5cdfd3 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x0e6ac0bf irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x0eaad641 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x0ebc333b cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x0ed1d660 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x0efd2bc3 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x0f0d4fc9 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x0f1cc5c7 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x0f227dc0 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x0f23e7b1 efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0f31dd3c task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f3b4897 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x0f4e81d6 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x0f51d0db serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x0f574add spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f7689b6 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x0f855cab regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0f8e4e3a devm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x0fa143ca subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x0fa89bb5 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x0fce8b28 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x0fd624a9 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0x0ff75b14 dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x100ee565 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x101000dd of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10168eb8 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1028fbc2 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x1042515b thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x10489616 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x104ac1fd ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x104bb64f of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x108e5153 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x10a76d6b tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x10cb62b1 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x10dc3181 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x10deac2a inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10f53602 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x11108366 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x11291164 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x11383b1f kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x1138cfd0 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x11434bb4 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x1171adb9 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x11853111 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x11954623 pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0x1196c223 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x11982818 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x11a6e873 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x11ac8d29 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x11b9ddf4 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x11c6327b i2c_new_secondary_device +EXPORT_SYMBOL_GPL vmlinux 0x11c6db9a usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x11caddc7 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x11cd039e regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x11d08715 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x11edc326 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x11ff2ed2 of_fixed_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x11ff3880 netdev_default_l2upper_neigh_destroy +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x12335197 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x123c1852 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x124bb33c inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x125099f9 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x125884e2 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x12669202 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x12771f1a jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0x1278351a regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x1282e408 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x1285ed53 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x128655ae rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x12b11cf9 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x12d99fc3 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x130de01d trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x1312c9f4 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x13175016 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x1319851a usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x1325a0f0 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x135eee80 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x1361f168 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x137de731 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x137feafa to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x13816877 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x1381b81f dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x1393c34d sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x139ee6ad dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x13b3cccc register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio +EXPORT_SYMBOL_GPL vmlinux 0x13c0f4b9 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x13c86c54 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13cf50b6 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x13da2ce4 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x140660fe pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x14177d8f default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x141aeab6 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x14347d69 xen_swiotlb_dma_mapping_error +EXPORT_SYMBOL_GPL vmlinux 0x143eae5d blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x14423abf gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x1455a87b crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x14a13b35 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x14bfc35f ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x14c97d15 xen_swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x14cdaa1a uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x1507bb68 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x15083847 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x150acbbd dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x151455fd tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x1516031b regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x15173278 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x151c3a68 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x153f7952 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x1543856e platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1552713f ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x15609d00 nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x1569eb78 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x1585a156 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x15c18e7a __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x15c44b5f skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x15cde23b proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x15d77e5d unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x160c97fc acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x163d6e3a register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x1643f13d of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x1653f1dd efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x166bb7e9 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x1673cfce cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x1679439c fsl_mc_object_free +EXPORT_SYMBOL_GPL vmlinux 0x1680072e devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x168ad287 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x168c9be2 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x168d970f hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x16a8b59a pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x16a91128 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x16c38f54 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x16d19440 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x16d8c186 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x16dd9797 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x16e2fec4 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x16f97c78 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x16fc939d rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x170c4ccf usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x171da667 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x172de59c sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x17373cc3 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x173d2aa1 init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x174771ff init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x17485b40 xenbus_dev_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x174e437c ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x1793892f blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x179ab7d6 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x179c2866 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x179e308a exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x17ae805e class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x17b0366e ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x17c05173 add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0x17deb162 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x17fda492 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x17ffc3d9 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x1809afd2 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x180b711b devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x181d73ff device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x1849a262 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x185c98e7 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x1865e04c inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x187236bc ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x18814d55 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x1890f91e kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x18b54c82 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x18b7ce73 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x18bf9a66 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x18cdd1d1 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x18d44ba3 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x18e003c5 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e5378a skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x18ed9df8 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x18fe65fd blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x190f267b ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x191ef13d swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x1978d1f0 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x19837852 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x198d4a16 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x1991c99f crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x1992a227 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a468db __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x19c3f2d6 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19f65b21 gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x19f97673 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x1a1eff74 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x1a3c7e61 dev_pm_opp_put_regulator +EXPORT_SYMBOL_GPL vmlinux 0x1a4f9543 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x1a603436 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x1a921dba device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x1a973922 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x1a9a337f subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x1a9e005e sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1aae8306 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x1ab02361 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x1abd7cab sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x1ac83da4 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1ad4b90a mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x1af49224 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1af8e560 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x1afcbeaa pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x1b036d83 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x1b14228e ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x1b1733b7 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x1b1952f3 clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x1b26db64 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x1b38a2cc of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0x1b7c365c tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b8e6fbe tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x1b987b8b task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x1b99bc65 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1bbcd4e7 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bd7e8d2 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x1bda7f50 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1bee0729 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x1c111c62 xen_efi_set_time +EXPORT_SYMBOL_GPL vmlinux 0x1c1bd7c4 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x1c2de52a devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x1c2ef162 fsl_mc_portal_free +EXPORT_SYMBOL_GPL vmlinux 0x1c4e9e7e ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5e0073 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c662319 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x1c6fd32f device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x1c728ec0 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c857e97 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c88d110 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x1c9cb74c dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x1cb67d1e usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x1cd6c250 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x1ce6ac25 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x1d033ae9 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x1d03cc42 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x1d1ae410 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d2e3af9 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x1d37a3bc fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x1d394d3a usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x1d3f3fca usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d59d692 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1d5ca3ff power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x1d6af009 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x1d739e1c xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d79133e ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x1d7f5254 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x1d851a4e ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x1d94a95d fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1d9e0e49 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x1da4d94b devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x1dca7327 extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x1de06830 fsl_mc_portal_reset +EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x1e0a0a76 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x1e27e002 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x1e2c03fc dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x1e5018cd iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x1e515b3b bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x1e59ea62 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e5e989b crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x1e68ce14 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1e748234 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e83fee6 HYPERVISOR_physdev_op +EXPORT_SYMBOL_GPL vmlinux 0x1e849a74 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e872da4 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1ead9c09 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ecc368a cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1ecd3bff device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x1ed4458c fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x1eede6c8 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x1eef0ded iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x1f0b12c9 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x1f1c8515 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x1f29f49f clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x1f2f9e5b ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x1f3f2cb8 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x1f416943 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x1f4c0b74 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1f689504 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x1f74e2ca gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0x1f7f94c6 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x1f832a8b switchdev_port_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8d71c4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f92701d tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x1f9bd7ee xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x1f9e4496 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x1fa679cd blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x1fac4555 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1fb79766 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x1fe08e83 amba_apb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x1fff12d3 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x20194f26 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x203df498 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x204b4eef vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x208944e3 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x20909c24 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20ac7ba6 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x20ad4153 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x20d25efc regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x20d2ce7b unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL vmlinux 0x210c23cb fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x211ca02e alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x212b0ba4 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x21343d51 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x21469d93 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x215400d7 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x215aed81 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x216a1f15 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x216d56ac nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21a58999 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21acdb55 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21e898dc power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x21f43fa4 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x21f52856 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x22115245 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x221eb471 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x22267b03 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x223cf9d7 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x224aa358 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x2269f73a device_register +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22a1f73e kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x22aca81b tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x22be744f regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x22d83fd0 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x22dc854a watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x22dcea32 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x22f32756 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x230aa92c __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x23295bc0 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x2330a9d8 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x2339e5cc gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x23440585 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x234da01a regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x23561b83 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x2358a9a4 dm_use_blk_mq +EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata +EXPORT_SYMBOL_GPL vmlinux 0x2369008b cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x23703e36 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x238f682c get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x2397c6f4 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x23a03ccd iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x23b3b332 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x23b5a2f7 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x23b797db btree_last +EXPORT_SYMBOL_GPL vmlinux 0x23b8a401 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x23bb9a74 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x23d2be37 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x23ebc8ea ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x23edd7dd class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x2422a013 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x2443e903 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x245394b6 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x245a22be __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x248324a8 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x24890157 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x24a7b844 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24bb5fc4 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x24db4921 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x24e3bc4c ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f74344 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x250615e1 fsl_mc_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x254234a5 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x254d95ef raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x2572226d of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x259313e6 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x25b631b0 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x25c6ac77 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x25fdfe70 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x25fecc4f iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x26471aa2 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x2658a5d0 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x265adc55 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x266b2c71 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x267cdf15 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x2681eee1 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x26970e28 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x26a005f1 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c5cb1d sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26cec827 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x26d1712b get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x26d2ef07 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x26d75cbb vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26f38a12 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x26f63e8c xen_swiotlb_sync_single_for_device +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x270e50a7 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x27117d0b cs47l24_patch +EXPORT_SYMBOL_GPL vmlinux 0x272b47d1 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit +EXPORT_SYMBOL_GPL vmlinux 0x273d0ef4 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x274ddaf1 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x275556e9 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x27611e96 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x27745f66 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x279a3d05 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x27a5ddfa devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x27ba319b tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x27bc791d dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27d42960 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x27e31606 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x28149ac1 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x2819bf70 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x28224f12 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x2828bfe7 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28328453 clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x2833967a vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x285ce5c0 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x2862f61c user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x28aeb5e4 mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28bc5ede pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x29049e6c cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x290917f5 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x29250907 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x29293188 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x29401afb led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x294dcd48 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x295383fb pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x2958e87d ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x297463e4 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0x297e40f6 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x29a84d77 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x29e11380 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a27a4f3 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x2a2d2bf0 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x2a309d60 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x2a33cddb fsl_destroy_mc_io +EXPORT_SYMBOL_GPL vmlinux 0x2a492824 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x2a5b4965 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a7c5ab3 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2a868f8d mtk_smi_larb_put +EXPORT_SYMBOL_GPL vmlinux 0x2a9e420a clk_hw_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x2ab2ce48 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x2ab4dc57 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x2ac021a7 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x2afa3952 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x2b01a725 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x2b156d38 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x2b167837 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x2b18a647 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b2fa6a0 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x2b43bccf crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x2b8e3eea debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2ba0a066 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2bb74e51 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x2bc723c1 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x2be8aeac devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2be9e084 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x2bec3adf max_gen_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x2bf0867a rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c2c7871 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c36707c __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x2c3c3416 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x2c510fac tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c806b52 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x2c92d75f regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2c9eb11e powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x2ca89447 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x2ca97f08 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x2cbb51c8 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x2cc495c5 rpi_firmware_property_list +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cf35b78 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x2cff5240 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d52f80c usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d62308c platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x2d7c73b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0x2d8d3710 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x2dcb419d dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x2ddc799e kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x2e1fa672 device_create +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e46ce75 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x2e5b329a fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x2e5b574c phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x2e5c51c2 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x2e6b9529 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2e7a38a3 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x2e8bf80f adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2e8c1fec mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x2e9670c0 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0x2ea1faa8 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x2eb5e3bd sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ef050a4 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f152481 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2f22060a ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x2f22351b iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x2f3beb41 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f4222b5 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x2f605e63 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f67f577 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x2f7ac1ce set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x2f7b8eb2 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2f7d0bb4 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x2f879911 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x2f9fa792 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2ff1a73c pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x30174571 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x30542d28 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x30593fd2 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x306b16de rpi_firmware_property +EXPORT_SYMBOL_GPL vmlinux 0x306bc769 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x30749eef dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x3083ad5b badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x308df98f device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x30a60979 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x30b11c62 fsl_mc_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x30c53bd0 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x310022c5 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x3162be51 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x316c46d4 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x317267ec fsl_mc_resource_free +EXPORT_SYMBOL_GPL vmlinux 0x3172a2fe kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0x3190cbcb of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x3196addb tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x31b77632 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31dc21a6 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x31f5b8c2 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x31f6f2a8 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x31f94b29 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x320687ec devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x3220bd0a user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x3248712f user_update +EXPORT_SYMBOL_GPL vmlinux 0x325116f0 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x327984de fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x328c7930 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c1559d usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32eafd90 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x32f85c48 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x333fa37a devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x3345bb61 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x3360083c init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x336770d0 alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0x3378bf17 spi_flash_read +EXPORT_SYMBOL_GPL vmlinux 0x3378d28f pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x33831c26 cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x339ad9ba alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x33acf445 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x33c6ad94 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x33d4128d regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x33d496c2 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x33e6f602 iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0x33e8e882 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x3405de74 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x343c7bec wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x344aed4b extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x346ef407 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x3496cf84 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x34a683ff posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34ad9a03 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x34dcb3a1 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x35226d07 xhci_mtk_add_ep_quirk +EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0x353330ef usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x35344169 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3539ec80 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x3558176e regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x355b7164 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x356a84de hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x356c60fa crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x35814f68 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35a0830e clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x35e74508 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x35f76ec6 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x35f99ac4 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x360f85a3 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x3636859e pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x365bee4b __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x36851884 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x36976103 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36daa901 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x37206bad ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x37278306 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x374f6909 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x37701618 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x377730f4 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x3793e90e devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x379ca4ed ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x37d98468 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x37ddb6f7 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x37f7759a split_page +EXPORT_SYMBOL_GPL vmlinux 0x38000838 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x3800b7c7 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x3801413b amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x380c5f63 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x3827c782 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x382e7f97 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x383b2729 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x384fadfb __dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x386cc8c3 spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0x38727beb regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x38ad442c extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x38b2856b of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38f2f5c6 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x38f87f31 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x38ff1828 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x390945e0 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x3909f1d4 devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x391abeac usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x3922e58d devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x39235806 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x39490610 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x3949d608 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x39589816 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x39676120 sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x396d0df3 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x3977c9ef xen_swiotlb_set_dma_mask +EXPORT_SYMBOL_GPL vmlinux 0x397a6a4b tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x398dd22a pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x398e061f do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x3990bad0 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x39a14e45 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39d0b97f ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x39de2f84 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39eeb981 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x39f54939 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x39fd7bbb usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL vmlinux 0x3a0edb17 acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x3a1745b2 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a3c88bd devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3a3db233 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a5ba1e7 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x3a808fef ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa93818 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x3ad31dc4 of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0x3af04eb5 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x3af7e319 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x3b0316eb __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x3b166b9e inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3b2eac37 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x3b309774 blk_poll +EXPORT_SYMBOL_GPL vmlinux 0x3b38642d __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x3b3d35e7 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x3b431d4b put_device +EXPORT_SYMBOL_GPL vmlinux 0x3b9fe6a9 i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3bcf7713 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x3bd38592 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x3bd79620 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3bdc5e08 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x3bdda4f1 use_mm +EXPORT_SYMBOL_GPL vmlinux 0x3be98287 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x3bf5a280 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x3c0098c4 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x3c0eec1b security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c2d3583 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x3c34747f spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x3c492dd3 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x3c5451a1 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x3c56890c scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x3c5ed7c0 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x3c6593a3 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x3c77441d ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3ca278c6 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x3ca889c5 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x3cc7641a da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x3ccd9cf7 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3ce8d245 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x3cf2ca5e of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x3d014881 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x3d0d3302 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x3d245cc7 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x3d3273b1 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x3d3657b5 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d399716 security_inode_readlink +EXPORT_SYMBOL_GPL vmlinux 0x3d5e7ea7 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x3d5f392d acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x3d64abc6 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x3d6c1e1e regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x3d7c369b perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3d8ac874 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x3d93e4a1 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x3d97ff89 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x3dacdd40 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x3db253cf bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x3db5978e vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3dd502a6 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x3ddcd70f platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x3ddf922c elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df71275 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x3df93da6 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL vmlinux 0x3e24cce7 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e3a1a95 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e6086f4 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x3e636312 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x3e682483 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x3e6e953b lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e7b3728 switchdev_trans_item_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x3ea12a85 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x3eac0409 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x3eaf6835 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x3eb277ce da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x3ed3de94 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x3ee949a1 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x3ef030f5 blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f089c73 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x3f16bfec gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x3f23aea4 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x3f43fc44 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x3f4a051b fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x3f4db4ba xen_efi_runtime_setup +EXPORT_SYMBOL_GPL vmlinux 0x3f5838d5 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3f73eb10 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x3f807afa gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x3f95d266 acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x3fb5d997 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x3fb92430 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x3fcb2696 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x3fde17a5 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x3ff1a973 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x3ffc01d1 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x4001609b pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x401a89cc acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x4027524a kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x4048e60e xen_xlate_map_ballooned_pages +EXPORT_SYMBOL_GPL vmlinux 0x404a7036 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x404eda75 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x4055261e crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x40602d60 xen_swiotlb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x4063b9cc switchdev_port_attr_get +EXPORT_SYMBOL_GPL vmlinux 0x40656ba1 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x40685dcc __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x406cfde5 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x407d913c find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x408b5aa2 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4094df7e crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40d17e5c usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40dbc442 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x40e49df8 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x40e87ded pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f808a5 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x41021977 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x4119913e kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x41322612 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x413c1d38 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x4154e106 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x415ae632 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x41afb6e3 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x420a85e9 xenbus_unmap_ring +EXPORT_SYMBOL_GPL vmlinux 0x4218cc38 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x422a8c3e tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x423b8520 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x4259b670 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426efea6 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x428c331c ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x429a2241 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x42a14ed2 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x42a4098d device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x42b6cc30 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x42cf0330 clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x42f7b082 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x431dbccd component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x434cc0f2 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x436101df rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x438bcf0d ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x4398283f unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43c2a786 __cpu_clear_user_page +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43d4ec4d of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x43ee723e xen_dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x43f0b02d hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x43f566da phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x44240ed4 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x442e42d8 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x444c4552 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x445470d6 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x447d3ccb usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x4480f468 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x449a0660 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op +EXPORT_SYMBOL_GPL vmlinux 0x44a96e95 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x44adb992 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c2b8d6 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44e3e922 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x44fa7c67 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x4500ca7d mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x45070120 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x45164d14 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x454cd330 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister +EXPORT_SYMBOL_GPL vmlinux 0x456eae8b pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x456eb5d7 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x45723682 phy_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x45748a2f kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x457590df unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x4576337f atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x4591bc11 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x45be4f8a usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45eb343b irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x45f64986 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x4600ff07 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x460866b3 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x461227a6 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x461a2e5d clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x46681ebd gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x466826c7 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x46682cd5 fsl_mc_allocate_irqs +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4688f953 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x468dfeaf __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x46a07cf4 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x46aede58 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x46bb1913 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x46cc41ea crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x46f41416 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x47015c6a fsl_mc_populate_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0x470fabe1 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x470fd696 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x471daf86 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4736c5c5 hisi_clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4774931e nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x47776775 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x4780f6fc __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x4797c607 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x47a959bf thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47b0c3ef ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x47b1de73 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x47bd8211 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x47bea5c2 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x47c602c5 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47f1710b efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0x481322f7 spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0x481d89d3 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x4824d16b extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x4834e0bc wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x483f7825 HYPERVISOR_platform_op +EXPORT_SYMBOL_GPL vmlinux 0x4840640a clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x48471f3d xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x484afeef tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x4877e495 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x488e2bd4 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x48dfacd8 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x48e3fa42 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x48e9fcdc crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x48f612e3 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x4908311d hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x4912dc93 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x492399a4 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x4935c420 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x493d20ae genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x49474f1c devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x4963efb0 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x499ffc8c ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x49b79819 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x49ce25b8 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x49e0fd21 __cpu_copy_user_page +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f6ff2b dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x49fed98a static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0x4a18f54a __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x4a1a8466 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x4a27729b unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x4a330f69 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4a403a58 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a462516 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x4a6cd4b1 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x4a797227 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf +EXPORT_SYMBOL_GPL vmlinux 0x4aa17796 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x4aa41113 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4abacd43 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x4af32eae qcom_smem_state_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x4b13b959 wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x4b21147e sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x4b2788ac set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4b53b1d6 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x4b625388 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x4b764f15 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4b8d6cdb rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x4bbb10fa bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x4bfb0b1f xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x4c0311d7 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x4c106a51 open_check_o_direct +EXPORT_SYMBOL_GPL vmlinux 0x4c10f0cd balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x4c12a3a8 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0x4c2419f6 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x4c381c6e gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x4c4b2ddf __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c7e6e7c pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x4cbd5123 nvdimm_bus_add_poison +EXPORT_SYMBOL_GPL vmlinux 0x4cdab895 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x4cf09438 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d183577 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x4d38675e of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0x4d4d2dfb inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x4d6a5eaf switchdev_port_fwd_mark_set +EXPORT_SYMBOL_GPL vmlinux 0x4d6c015b debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x4d72a42f wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x4db0f23d pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x4db5d4f6 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x4dc5d7f6 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x4dce57aa of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de1a371 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e113519 elf_hwcap +EXPORT_SYMBOL_GPL vmlinux 0x4e126d10 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x4e1c65dd pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e3d7823 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4e69c1a8 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x4e875904 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x4e8b9d55 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x4e9a7345 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x4eaa46a7 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x4ec7a0e0 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x4ed5f026 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x4ede1b23 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x4ede7b86 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x4eeac4d9 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x4ef55ba1 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4ef9d021 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4f15e9c3 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x4f17330d perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x4f2b72fd register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f353048 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x4f410700 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x4f43739e bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x4f4b27ed iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x4f567682 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6bf924 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x4f974041 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4f9dda5c devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4fadbcbc security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1aa6d cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5005b69e btree_update +EXPORT_SYMBOL_GPL vmlinux 0x50157ff0 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x50381c9b addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x5040c08f rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x504bceec nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x505617a3 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x505f796b irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x50648775 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x50676e88 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x50681404 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x506cadfa vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50aa7f3f power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x50b1a2ed rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x50b764df wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x50cd9984 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x50d28e35 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x511a989d pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x51268aad dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x514274b3 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x514d4b00 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5152aa01 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x516e8b3e nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x51701c0c ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x5180714a blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x51811f94 wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x518ce349 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x5191bd3c efivar_work +EXPORT_SYMBOL_GPL vmlinux 0x51940991 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x5196e314 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x51a79605 dev_pm_opp_set_regulator +EXPORT_SYMBOL_GPL vmlinux 0x51d49254 xen_swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x51d8e48c __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x51e1beda acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x51e3fc7b sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x521f626e tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x522ea1e4 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x526fea9a __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x5275c507 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x52858599 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x5292ce86 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52d88943 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x530736f6 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x532e551d mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x53676320 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x53680d32 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x537d6f96 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x538b7d0d devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x538f3a29 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x53bdcd34 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x53c48a02 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x53c98587 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x53cfa3e6 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x53d46e69 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x53dcfa65 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x53e000e7 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x53fbb6f6 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215078 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x54483c97 of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x544fb7f0 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x545411a5 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x5473d844 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x54802dce devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put +EXPORT_SYMBOL_GPL vmlinux 0x54ad06ba ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x54b0326a kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x54ba74fa raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x54c81a50 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x54c8d486 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54e28cb9 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x54f93ac7 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x553b9c41 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x55526907 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x55533c4f gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x556eb327 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x55ecc3e8 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55efdacd blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x56012a24 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5606adb5 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x560906f1 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x5627c8ce xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0x562ac121 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x563114d1 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x565bb8af __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x5680ca7a pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x56814d6c __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56e8aac7 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56f264c5 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x56fcd164 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x570166a8 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x5719d55a dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x572890c8 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x5746b54d max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x57516af8 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x576fb680 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x57729787 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x57742af3 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x5774bd00 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0x577d031a fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x578961f4 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x57934db6 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a69470 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x57b50d69 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57c975b1 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x57ce15a0 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x58113465 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x583ad86c usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x58441217 amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x584e1b7b acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x5871d4dd ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58a0e333 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x58a3fbfd usb_string +EXPORT_SYMBOL_GPL vmlinux 0x58d8790a rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op +EXPORT_SYMBOL_GPL vmlinux 0x5900ff3e usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x590ad6e1 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x593a1fad scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x594b93f8 debugfs_use_file_start +EXPORT_SYMBOL_GPL vmlinux 0x596e96b3 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x5971f19f of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x59aba7d2 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59e44aa1 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59f9a6e4 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x59fbf1a1 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x5a032b74 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x5a250e5f crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5a3486ec pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x5a3b9334 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5a3d3e52 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x5a40eff1 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x5a6467e6 xen_efi_get_time +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a85b320 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x5a9da369 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x5ab2ff13 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x5acda04e acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0x5ae79466 percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5af452f7 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x5af5f93a xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x5b24bbba noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x5b49428e wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x5b58a17d of_genpd_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x5b68dd61 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5b8de959 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x5b970393 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5b9bb108 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x5bb547dd crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x5bbc1a6b regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5be14e2d switchdev_port_obj_dump +EXPORT_SYMBOL_GPL vmlinux 0x5c348c5e crypto_has_skcipher2 +EXPORT_SYMBOL_GPL vmlinux 0x5c46cc81 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker +EXPORT_SYMBOL_GPL vmlinux 0x5c77098f usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x5c8d05f8 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x5c8d139a efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x5c96ba95 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x5c9b88d1 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cb983c7 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x5cc4b9a3 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cc5333c pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x5ce9d085 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x5cee31be __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x5cf14bd2 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d1693f0 free_iova +EXPORT_SYMBOL_GPL vmlinux 0x5d2bbbf8 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x5d50c157 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5d555c3d relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x5d688929 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x5d715b95 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x5d736b9d __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5d7ef4d5 l3mdev_get_saddr +EXPORT_SYMBOL_GPL vmlinux 0x5d9d3936 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x5da416ea led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5daed4ec inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x5db8f37e xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x5dc94d8d nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x5dcd7160 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x5dcdbc7c ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x5df3a8f2 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5df6c5af cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x5dfd74b4 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x5e07e9d1 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x5e365675 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x5e378c17 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x5e407973 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x5e40b970 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x5e4227c0 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e5450d8 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x5e5632d3 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x5e7d8ade firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x5e9383ee thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x5e96b436 of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0x5e977408 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x5e992d80 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x5ea98a7b of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x5ec39eac nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x5ef01646 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x5f19b62c __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x5f1e6058 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x5f31bb97 efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x5f5c3734 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x5f84b444 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5f908434 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x5f9b0e68 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x5fa0a966 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x5fd09c61 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6017c72e ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x6036036b blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x60379f35 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x60442822 phys_to_mach +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x605ca8e1 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x60622f2f devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x606db3b2 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x60787196 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x607fe5f1 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x60817388 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x608dd8be device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60b828a2 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x60d3de2e fsl_mc_object_allocate +EXPORT_SYMBOL_GPL vmlinux 0x611ad05b input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x611c4fe4 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x612592b4 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x614f2591 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x6164b37a fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x6173ed36 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x617f94cc da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x61804e20 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x6182017f blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x61a5b7cb cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x620136fe ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x620bf64b cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0x62104ada xen_remap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x62145271 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x621bb788 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x62291f72 efivar_init +EXPORT_SYMBOL_GPL vmlinux 0x622baf07 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x622fe410 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x6231a142 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x6245f525 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x62622ccd wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x627f1d95 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6285de08 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x62a95004 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x62b55c97 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x62d0a114 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x62de85df yield_to +EXPORT_SYMBOL_GPL vmlinux 0x62f41154 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x63091ecb dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x631448f2 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL vmlinux 0x632557d4 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x633f0465 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x636a043d to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x636b57be show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x6373f4a7 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x637c9b0a usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x638d8688 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x639e0288 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x63b33cd6 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x63b3b2eb bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x63d2e8aa blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63e681e7 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x63e72bd3 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x63f0c44d serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6400f95f inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x64148d44 pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x641d809c clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x641e0974 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x642536a3 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x642de72c syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x642ea7dd pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x643bfeaf ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x6440e084 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x6442bfb2 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x645c81be switchdev_port_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x649291db blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x64a1f147 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x64abf916 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x64de730c dev_pm_opp_get_suspend_opp +EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x64ff9561 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x65079a9b xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x650b5ded ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x651feee5 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x654074d3 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x6549cce8 kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0x6555723e arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x655b23b9 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x6580e89b iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x65883075 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x65962de0 dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0x65aa6a15 clk_hw_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x65ab1e46 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x65b18914 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x65c7bc98 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d02c84 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x65e4d58f set_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x65f4e8f4 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x6603909d switchdev_port_fdb_dump +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661c4a27 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x661cb926 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x66579ef9 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x6663b459 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x66752793 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x667ae575 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x668251e4 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x669484da preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6695d682 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x66996553 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x66a85cf9 acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x66ab55c2 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0x66aed4d0 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x66b3f53c pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x66c397f7 nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66c97e29 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x66ce36b4 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66fb791a dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x6730df78 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x675281ce __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x678847f9 get_device +EXPORT_SYMBOL_GPL vmlinux 0x678b8cbb kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67992270 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x67ac6212 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x67bba906 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x67e0f868 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x68093fcc setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x68143248 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x6846283f bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x686b58c2 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x686d5bb9 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x68866a89 user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x689cdc58 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x68ae678f perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x68c20662 clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x68fe3778 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x692a7822 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6931ac97 acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x696422d5 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x696e3de7 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x697b0ea4 inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x69861daf pci_get_hp_params +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x69c27f15 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x69cadcda usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x69dce290 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x69e47e80 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x69fce81f blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x6a08edb8 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x6a0dfe32 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a26e806 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x6a2bb6c5 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x6a3005a5 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x6a37593c securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x6a45e7d1 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x6a4b5316 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x6a6d0d44 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x6a77853d scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6ac3a149 vmf_insert_pfn_pmd +EXPORT_SYMBOL_GPL vmlinux 0x6ac6ad89 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x6acf02e3 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x6ad766dd ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x6af70d2c ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b369661 user_read +EXPORT_SYMBOL_GPL vmlinux 0x6b3c2f1a crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x6b41eec4 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x6b586c46 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x6b58a972 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x6b6e0a04 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x6b6f093d fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x6b746ef0 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b8afaa8 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x6b9fec93 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6bb1f986 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x6bd62753 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x6bf1b90d dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x6c070fee unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c11aafb relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x6c1729b2 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x6c187db9 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6c18d944 __of_genpd_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x6c1cedf7 kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0x6c1fd9fb class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c3de1b5 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c619dd8 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c683d0f ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x6c684d0a fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x6c6861ba shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6cafa048 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x6cc9316f pin_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x6ccfe781 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cdf1f4b fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x6cec3b88 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x6cfc6da1 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x6d01995f xen_efi_query_variable_info +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d457b53 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x6d48e82f fsl_mc_bus_exists +EXPORT_SYMBOL_GPL vmlinux 0x6d5a458d alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x6d70703f devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d825284 of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0x6d8abea8 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x6d950e60 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x6dae1b23 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x6db9b9cb rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x6dc0d400 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x6dd85032 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6dddcd43 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x6df2a4c2 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e050b06 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x6e06479c debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x6e0e9e66 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x6e1834c3 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x6e74370a of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e8f06c0 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x6e93cd71 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x6e9a3091 cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x6e9e18f8 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x6e9f09df kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x6ebdf63e platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x6ec0c23b stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x6ed0a761 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x6ee8a804 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c892 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x6f1462ff crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f223832 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x6f27dfff map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x6f32ce77 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x6f36f606 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x6f7bb0e5 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x6f869a0f sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x6fce3049 switchdev_trans_item_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6fe4b336 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x6fecd520 netdev_default_l2upper_neigh_construct +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ffdcada gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7022a44c handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x7023ea39 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x702a8559 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x70379d95 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7038daaf pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x703cf7a6 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x704e9a07 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0x7064da8b btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x70820445 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x708e4bb3 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x7094c1c1 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x709501c5 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x709853b1 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x70a1a408 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x70afed2e __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70cd1a1e of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70e14234 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x70ef79e9 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x71350d5c inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x71551326 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7165add7 fsl_create_mc_io +EXPORT_SYMBOL_GPL vmlinux 0x7177b975 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71ad3a7a ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x71b22d68 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x71b3710a invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x71b7968c ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x7215df1e pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x723c83c5 otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x723eb546 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x724d7823 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x72580367 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x727b6620 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x728f9b74 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x72a84222 md_run +EXPORT_SYMBOL_GPL vmlinux 0x72b2e7c9 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x72c20542 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x72c415a5 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x72ccdc2e crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x72d13e02 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x72d270b2 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x72d79f97 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x72ebda61 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x72f5b534 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x72f6bbf2 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x730375fc fsl_mc_cleanup_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0x7306e752 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x73373908 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x73816fc5 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x7390fa39 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73b2635d mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x73ba6e3b xen_efi_set_wakeup_time +EXPORT_SYMBOL_GPL vmlinux 0x73bd8430 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x73c24529 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73dd75e9 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x73e38731 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x74060a3b pm_genpd_syscore_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x74189590 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x742dc9c4 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x7435747d pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x7464cd52 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7474647a tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x747f529e rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74bcc72b bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x74c74e22 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x74ecd31c netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x74f8b770 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x75155864 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x75185b00 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75328ba3 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x753602b8 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x754e469c hisi_clk_register_gate_sep +EXPORT_SYMBOL_GPL vmlinux 0x7567d284 xen_efi_get_variable +EXPORT_SYMBOL_GPL vmlinux 0x757a775e reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x75910130 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x75b0a485 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75e2e630 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x7610cc52 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x7615cb49 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x76241465 irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x7650a6ad crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x76758764 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x767ed148 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x768de8cb regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x76a6aae7 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x76a8c6a0 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76de5f09 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x76e981cf regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x76f1ca1c scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x77025df0 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x770545cb mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x77172676 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x772522d2 update_time +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x773a41c2 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x773e6353 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7761f75f usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x77675de7 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x777e71d7 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x77841d01 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x778a35c2 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x778b9ce8 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x77a207cb gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77c3e2f7 udp6_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0x77ca7e10 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x77f3c723 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x77fd7835 get_system_keyring +EXPORT_SYMBOL_GPL vmlinux 0x78115eaa aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x782ec005 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x78349d62 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x784cc257 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x786179a3 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x788bbae7 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x78a7c9aa ref_module +EXPORT_SYMBOL_GPL vmlinux 0x78a7cec8 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78b7f13f ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x78c66370 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x78cbf1b0 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x78fdcab9 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x79307a22 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x795dd72c regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x796642e5 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x79755a64 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x797d5c6d skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x7980a14d of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0x79940403 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x799cd2c9 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x79a724b6 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x79bae00b request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e344c8 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x79e5dea7 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x79e99b58 xen_swiotlb_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x79e9b406 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x79edd650 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x79fa0e51 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x7a097d6a skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a261700 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x7a2dbc4f ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a3125f4 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a381290 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x7a39bfe2 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7a3cfc4a ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x7a498e23 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x7a4e3026 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7a4f03c1 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x7a5d708f pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x7a5e3d1f ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x7a65498c md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x7a68c2c0 l3mdev_get_rt6_dst +EXPORT_SYMBOL_GPL vmlinux 0x7a87a830 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a976806 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7aa81232 switchdev_port_same_parent_id +EXPORT_SYMBOL_GPL vmlinux 0x7aab1c07 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x7ab3d4de usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x7ac51414 devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7afbdc6c ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL vmlinux 0x7b0530de iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x7b0bb73f __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b2163bd HYPERVISOR_tmem_op +EXPORT_SYMBOL_GPL vmlinux 0x7b303500 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x7b348baa usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x7b39f1af wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x7b68ddf5 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x7b6acbab efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x7b6e8be4 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x7b79e1d3 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7b7f66d3 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7b953a7c of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x7b9664f9 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x7babb113 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x7bd07a98 acpi_subsys_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x7be10f82 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x7be69157 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x7be7e1bb dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x7bf9aa6c pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x7c12b8d5 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x7c147be2 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7c1493e0 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7c1e04bb ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x7c3f67f7 dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x7c5c8518 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x7c5ceb2d gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x7c684030 amba_ahb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x7c997564 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7cb02c66 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x7cc9c521 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cd76820 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x7cd8c6e5 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x7cd9289d put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x7cdd3ee8 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d086edd switchdev_port_bridge_setlink +EXPORT_SYMBOL_GPL vmlinux 0x7d1a3106 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7d1c9a93 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x7d272617 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x7d36657c __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d75608e rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x7da7046a usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dca0518 HYPERVISOR_multicall +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x7df6c711 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x7e00259d crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x7e2143cd ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x7e24235e cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x7e2675f1 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7e41a8ae md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x7e4949aa ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e71b4fa xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x7e729abe of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x7e80ac0d security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x7e8d8acf netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7e98ea80 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x7e9f8398 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7eaff11b __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x7edcae32 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x7eeae795 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x7f28406c dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x7f37b4c8 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x7f608a50 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f7d9f76 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x7f9f437a __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x7fa5adbf devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fa5fb24 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x7fb38efb rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fd71a62 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x801456cf hisi_clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x801df607 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x80704dcf blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x808d6090 pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80b3f710 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x80bb5545 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x80bdb877 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x80bfb595 security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d158cd da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x8100ca4d inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x810fac02 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x812e79f1 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x8136c1ac wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x8140b5ed blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x8143b386 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x8147156a __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x8152e111 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x816d81d2 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x8175b509 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x817ed796 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x818aa1f3 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x81e238c3 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x81f08b89 __fsl_mc_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x81f48f76 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x81f751ae of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x81ff5eac pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x820f2fbc unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x821949db pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x82197f1e ipv6_rcv_saddr_equal +EXPORT_SYMBOL_GPL vmlinux 0x8239e063 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x823b3ba4 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x8292a788 nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x8295d22b security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x82a78d92 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x82b6b487 xen_efi_get_next_high_mono_count +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82df122f ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x82f39852 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x834d5902 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x83508c8f usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x837dd445 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83953fae of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x83a22ec5 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x83a5ad94 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x83c6680a rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x83c7d683 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x83c7e82b __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x83dbf3ce blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x83ebceb3 pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x83f59bd6 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x84161774 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x841a4be2 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x845f0ba4 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x8464abde irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x848327f3 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x84849f94 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x849b4fba fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x84ac0dc4 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84ca5c56 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x84e4e9fa scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x84f1bc47 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x852a9932 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x854249e2 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x8543e271 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x854ad7ba tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x856a6762 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8577e2bf security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x85787f3e user_describe +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85cb4a4d device_rename +EXPORT_SYMBOL_GPL vmlinux 0x85e7d864 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x85f8b0f9 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x860edf3d device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x86395b1f tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x863edf76 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x865bda40 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x867bb0f5 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x867c49ae to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x8682d843 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x869f17f6 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x86aacdb6 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x8700269e devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x8714ccbe ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x87177aab __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x8740693c inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x875c3957 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x878adfb9 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x878caf45 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x8790bf13 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x87a12920 shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0x87b5984b single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x87c412a2 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x87cd27ed blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x87cfe738 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0x87d514f1 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x87de2f01 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x87e745aa __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x87e9f8c8 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x87f27398 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8817d7f0 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x881d5512 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x88243176 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x885b8fb1 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x886562b9 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x888ae8ef bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88ac88ff __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88c87aa8 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x88ebceb8 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x891d7f7e devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892b26a0 set_memory_nx +EXPORT_SYMBOL_GPL vmlinux 0x892e04d7 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x892fe61e cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x89477e96 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x89867f0a io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x8989c6db virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x89b3ff14 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x89bacf81 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89be44be of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x89cc2e1d to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x89e6d630 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x89ed9b78 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x89f855d7 xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0x8a2930b2 acpi_dev_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a559846 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0x8a56a26d i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x8a6398e5 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8a902346 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x8a9a12f9 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x8a9b61af wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x8aa18302 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8acde575 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x8af61720 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b3fcb6c bpf_prog_get_type +EXPORT_SYMBOL_GPL vmlinux 0x8b47c12c ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x8b55a404 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x8b71fcad phy_init +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b95d459 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x8b9d230d crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op +EXPORT_SYMBOL_GPL vmlinux 0x8bcae9d2 bdev_dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x8bd0d012 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x8c002827 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c06a108 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x8c17a7b0 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x8c1dd54d xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x8c3420ce __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x8c3f5446 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x8c4c4182 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x8c625915 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c659b6c btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c813701 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8c85f119 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x8ca1e204 percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8caef132 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x8cd51074 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x8cd8413d platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x8ce7cbc8 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x8d0741e8 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x8d1031ee pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x8d17d7c6 bgmac_enet_remove +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d3fb50f usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x8d52462c pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x8d577425 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x8d5c24d3 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x8d5ff858 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x8d6234d0 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x8d66e48a ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x8d87b8bb xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x8d8fb860 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x8d956a93 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x8d9fa235 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x8da3017b da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x8db086ad crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x8db3dbb8 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call +EXPORT_SYMBOL_GPL vmlinux 0x8dc3610a power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x8dc954a6 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x8ddeb3d8 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x8e0e2975 device_move +EXPORT_SYMBOL_GPL vmlinux 0x8e1f5064 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x8e263b74 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e84ee1e tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x8ea56243 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x8eab694e tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x8eb94533 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x8ecdabe2 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x8ece0caa fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f1f7304 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x8f221978 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x8f575217 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f7b1813 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x8f8ec20c ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x8f9268ab bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x8faac947 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x8fb64093 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x8fc3abe2 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x8fce9034 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x8fd0598c irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8fd16b07 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x8fdc1389 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x8fe6897f usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x8ff4e8a7 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x90136f7a irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x905361b7 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x905d2417 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x9097a3ca register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x909b10cb da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x909cc8a0 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x90a0f52d devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90b763f1 HYPERVISOR_console_io +EXPORT_SYMBOL_GPL vmlinux 0x90f017e5 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x90f4e2ef platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x90feb01e fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x910b6eba device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x911dfdf2 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x913ca777 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x91826c1d pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x919d7080 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x919d853e fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x91b7cf8b dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91db1586 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x91e30809 HYPERVISOR_vm_assist +EXPORT_SYMBOL_GPL vmlinux 0x91f6a2d6 arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0x920aacca nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x921ce351 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x921f789c blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x922b1ef4 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x9242bb80 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x926f3d00 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x92738e61 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x9283166a __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x92934663 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x93169aaf devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9339cca6 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x93589990 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x93922111 get_compat_bpf_fprog +EXPORT_SYMBOL_GPL vmlinux 0x939fbd0f i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x93a7f67a pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x93aa3c4a usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x93b88d53 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x93daa0d6 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x93dc5f4b blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x9400a9e3 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x942c8a6e __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x9436ebfa sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x94543310 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x9495656d cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94ae1637 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL vmlinux 0x94bb101d __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x94c2abdb crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x94e33ecb xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x94e62d2e __set_phys_to_machine_multi +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94fbade4 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x9503786f bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x95049f0b wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x9530d5f0 of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x9538f058 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x953cc69e mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x9555fa81 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x9575cbc6 fsl_mc_io_set_dpmcp +EXPORT_SYMBOL_GPL vmlinux 0x957d70ed dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95961989 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x95b3973c devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x95b98e7c __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x95ba5465 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x95ba7985 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95d6115a pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x95d62414 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x95ea37f7 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x95f46276 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x96029f38 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x960ecaf5 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9625e652 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x963f261b srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x964add15 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x964d5c39 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0x964fa435 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96a47767 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x96b5d3ce gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x96bdfbe5 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x96f003c5 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x97021c39 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x9709e45e devm_nsio_enable +EXPORT_SYMBOL_GPL vmlinux 0x970f0981 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x971b67a5 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x971cd1c9 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x9727644f of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x9751e4fb blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x97755899 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x977fadf0 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x97812006 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x978dafec nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x97b6933c get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e15e12 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x97e614e4 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x97f59f72 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x980f2cb1 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9836a155 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x9845aefb apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x98636807 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9879efe5 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x988cdbdb crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x988ed85d set_memory_x +EXPORT_SYMBOL_GPL vmlinux 0x989fc456 clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x98afed6f pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x98f9f73d fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x992e3c8c iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x9944996f da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x9954deac scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x995606db ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x996c2483 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x99976c43 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x99a3558e gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99cb9aeb sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x99f9763f aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x99fb1ed4 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x99fe4b60 mtk_smi_larb_get +EXPORT_SYMBOL_GPL vmlinux 0x9a0c1a6a platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9a0d73f2 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a16e9fe sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x9a42ac9a ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x9a458609 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x9a7c3da1 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9a8b3942 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x9a923583 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x9a9cbcf9 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9b010c82 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x9b0f147d acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9b1af08c regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x9b279cf4 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x9b39a8d9 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x9b578b8a virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x9b63bacb unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x9b6b58c9 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x9b6ffd93 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x9b8ece2f pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x9b96d595 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x9b9942ff event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9ba340b4 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x9bd5612e adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x9be55b2c i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9befac70 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x9bfaa03b dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x9c152941 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9c174859 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x9c18b3cf platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x9c2283c3 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x9c2d7fa5 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x9c2e4b66 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x9c34eb7c ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x9c603bce max_gen_clk_probe +EXPORT_SYMBOL_GPL vmlinux 0x9c608ccd regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x9c866cb9 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x9cb63735 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x9cb8843f register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cd37390 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x9cd3d6b9 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x9cdd9c1f single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x9d17094a stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x9d1d718b kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x9d291e28 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9d2b99ac class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9d2e0d87 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x9d3de74b spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x9d4dd681 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x9d5ca7f0 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x9d6e9700 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x9d7ed0e4 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x9d874be5 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x9d997e79 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x9db86bc3 spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0x9dbd8228 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x9dc9d19b sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x9dda4887 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x9dfe7862 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x9e12becf dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x9e1c07a0 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x9e209559 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x9e3247b6 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x9e38894c __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e4bb73d ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x9e57b502 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x9e61a17d inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x9e61ddc9 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x9e768904 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x9e928409 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x9e97fde5 xen_swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x9e9fec0c shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x9ecb2a73 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9edff591 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x9ee80f92 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x9ef7dfda btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9f05f9c2 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x9f0607c0 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x9f0addf2 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x9f0b926a serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x9f3178f0 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9f4e32a8 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x9f4f9861 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x9f517986 HYPERVISOR_hvm_op +EXPORT_SYMBOL_GPL vmlinux 0x9f6302dc i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x9f7830e5 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x9f7ae64a ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9f88e9d7 vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x9fb72ced handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x9fc61c47 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x9fc88e83 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fed415f wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x9fefbcb0 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xa014a6ac trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xa0152c42 xen_efi_get_next_variable +EXPORT_SYMBOL_GPL vmlinux 0xa02c70b2 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xa04364fe pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xa047e314 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xa0806bf3 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xa0855993 component_add +EXPORT_SYMBOL_GPL vmlinux 0xa0e18404 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xa0f7d0a7 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa0ff49e2 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa1153728 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xa1440bd3 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xa150510e __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1a8f895 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0xa1b4b40d sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xa1b6a337 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xa1d340d6 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xa1d6cf26 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa1dff7bf sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa1f79553 xen_create_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xa2047085 blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xa218edb5 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xa21d20f9 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xa2200b24 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xa22d4bb8 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa234b50c device_attach +EXPORT_SYMBOL_GPL vmlinux 0xa234df1a of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xa2474cec sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xa248a05b arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xa24b0a82 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xa24de7c5 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xa25e1d73 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa272a9e4 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xa2810de4 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xa2a57393 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0xa2b48d16 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xa2b5cba3 hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2d18258 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xa2d9fdf9 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa2dab85b usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xa2fadfbb gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xa3001469 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xa31972dc dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xa34e22b6 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa386c029 trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xa38799f0 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xa387b836 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3bdaa7f clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xa3c7cf07 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3f755bc dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xa402b19e anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xa425d665 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa43478d4 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xa438b53f fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xa44f1011 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa461091b param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xa477759e queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xa4805986 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa492c23e led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0xa493e561 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xa4a10fdd __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa4ce400e ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0xa4dbf766 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xa500a9a2 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0xa5021d08 kvm_get_dirty_log +EXPORT_SYMBOL_GPL vmlinux 0xa523b230 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xa5351196 switchdev_fib_ipv4_del +EXPORT_SYMBOL_GPL vmlinux 0xa55ed531 cap_mmap_file +EXPORT_SYMBOL_GPL vmlinux 0xa5653dba irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xa5672bd1 vfs_writef +EXPORT_SYMBOL_GPL vmlinux 0xa5871e82 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xa5d768e8 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xa5e20cf7 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f35f16 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xa602922a subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa6186c0e devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list +EXPORT_SYMBOL_GPL vmlinux 0xa628b732 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xa63b667c rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0xa63c2984 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xa644b323 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xa650c88c device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xa65b08e0 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xa681ee8d uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xa685a299 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xa68dfb6e clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xa6994b45 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xa6a07849 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xa6b088bf devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6c20b5a dprc_scan_container +EXPORT_SYMBOL_GPL vmlinux 0xa6d21358 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6e66666 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa6ec4e6f ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xa708e117 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xa7132c39 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xa71a2e3a device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xa7215606 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xa7287626 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xa73910bc __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0xa73b376c iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xa7542609 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xa75c7f91 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0xa75c9a11 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xa7b65773 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa7cdd8ca wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0xa7d15c1c list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xa7df1487 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xa7e0640f cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xa7e86bce sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xa7e8c41d fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xa801b359 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0xa826a80b tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa82c6943 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xa83a2dbf dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xa850dafc idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa8545a79 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xa8596a92 xenbus_map_ring +EXPORT_SYMBOL_GPL vmlinux 0xa85ae862 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xa898689b ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8c50bdf tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xa8ea613c srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xa8f40db5 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0xa9152931 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xa92302bc led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0xa929c53f bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa937372b usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xa94cd517 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xa968a67a nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0xa990ef5c clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xa9a4ea0a switchdev_port_bridge_dellink +EXPORT_SYMBOL_GPL vmlinux 0xa9a8934a file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xa9aef2e1 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0xa9b08bf1 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0xa9b9f794 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xa9cd8a14 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e37bd4 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xaa192f0b __pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xaa72cbcf rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0xaa8822ed blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xaa993820 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaab9fca0 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xaac55268 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xaac88961 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab4633e0 kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0xab4a4e19 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab706356 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xab896927 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xab8b91f8 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xab8ceced gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0xab8d5af7 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0xabab79ed usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabd09122 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xabde692a __class_create +EXPORT_SYMBOL_GPL vmlinux 0xabe17a5c dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0xabf85d59 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xac009b4b spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0xac1cb379 kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0xac1cbe6c usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xac230e6c dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xac586682 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xac5f844a spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0xac68232a __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xac764fb4 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0xac78a1f1 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xac7b4a71 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xac879bcd crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xac8be090 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xac931850 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0xad0a37fa debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xad2e8d95 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad67a917 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xad6e7416 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xad83bce2 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xad886eaf acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xada83534 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xadc128bf msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae15ac4f iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0xae1c7963 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xae1d5150 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xae204bf1 qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0xae28540f devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xae4d7b78 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae72c63b pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xae745f5d __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all +EXPORT_SYMBOL_GPL vmlinux 0xae89b785 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xae908218 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0xaea572df ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xaeb7a2d9 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaeba1d7f usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xaebaa7ec trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xaee2adda wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xaef024ac power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xaef1c6e3 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xaefb5f9b regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xaf1d9455 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xaf319d91 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xaf32740b sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf359c5c trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xaf4625c5 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0xaf5181d5 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xaf650286 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xaf66e881 device_add +EXPORT_SYMBOL_GPL vmlinux 0xaf6a26a1 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xaf72b2d9 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xaf838f87 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0xaf86ce6a of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0xaf8ac3b5 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0xafad885c trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn +EXPORT_SYMBOL_GPL vmlinux 0xafd4b04a srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xafda9395 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaff097e1 securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0xaff1d123 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xb012f794 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb0339ea0 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb03a39d4 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0xb03e8748 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xb073f3bf dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb0809acb crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xb097621f crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xb0b5a62f do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bde23e __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xb0bed1b0 acpi_dev_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xb0c60cb7 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0f11fdf nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xb13d4120 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb19ec90c acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0xb1a034f8 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1b4a741 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xb1bd4557 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1d22773 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1f520e6 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xb1f63c7c fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xb1ff5efb sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2249d48 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xb24cc3aa mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb24de676 store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0xb2575e51 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xb25fea73 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xb260bfa5 unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xb26a0210 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xb27a8a1e gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xb285b8f8 xen_in_preemptible_hcall +EXPORT_SYMBOL_GPL vmlinux 0xb2885a28 hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xb28ec550 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xb2ab6d25 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xb2c7c3b2 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2ef254d sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xb3126274 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xb31f4b75 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xb33ad69f i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0xb33dad00 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb349e2ea unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xb34edd28 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xb35e9982 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xb36879c1 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb379d2ca devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xb3902fdd sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb39952cb xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0xb3abd7f4 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0xb3b44ef1 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb3b8e9f4 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xb3d1c05f pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xb3de8a8d input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xb3e5794e usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xb3eaa897 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xb3ef9870 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xb404c5ce region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xb4097570 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xb40b4578 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xb417cacf put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xb438fc75 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0xb45e9334 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xb485e060 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xb488646b irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xb494c197 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0xb49a8d03 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xb4a1e194 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xb4b4838e xen_swiotlb_sync_single_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4c4bd9b __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0xb4cac147 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xb4e017e7 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb5179c11 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb52c29f5 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb54f2320 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xb55610a5 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xb566c523 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xb57eec0a get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xb58b203e tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xb58c128d kvm_init +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5ae42ab transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xb5b74b71 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb5e723db crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb607c9eb fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xb60c2e26 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb6188ce4 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb62bfed4 of_fixed_factor_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0xb6339ee9 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xb63d36c5 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0xb644b1a6 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xb64d61e4 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xb65b4c53 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid +EXPORT_SYMBOL_GPL vmlinux 0xb677ea11 do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0xb686672d of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xb68827fc kvm_get_pfn +EXPORT_SYMBOL_GPL vmlinux 0xb6a58723 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb6a6d358 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6bc6f8d tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xb6c5f222 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0xb6da293a powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6e8031c dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xb707318b usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb7341ee7 __class_register +EXPORT_SYMBOL_GPL vmlinux 0xb73b740a trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0xb73e90f9 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xb7459c96 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xb7564b63 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xb7862b13 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xb78bbe91 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb78cfec8 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xb7997249 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xb7aca978 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xb7b907c8 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xb7c30155 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7c8a695 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb7f20500 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb81db861 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xb8280532 switchdev_fib_ipv4_abort +EXPORT_SYMBOL_GPL vmlinux 0xb82a3a98 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0xb82db4c6 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xb846ce20 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xb84d8e55 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xb860507b xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0xb8686cf3 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb889cd2e sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb88dbf7d regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8a4edf6 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb8afc6d1 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xb8b57aea acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0xb8bb0791 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8edad93 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb9048f23 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0xb90bc9f7 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address +EXPORT_SYMBOL_GPL vmlinux 0xb91a5bea nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xb91f32a6 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0xb9262299 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0xb9539f99 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb97b12f6 device_reset +EXPORT_SYMBOL_GPL vmlinux 0xb9800341 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xb98f8f9a ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xb9a0592d pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9bf9ba0 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d32309 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xb9d35375 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xb9f8d6bb acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0xba013112 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xba022f2c usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xba031543 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xba2137c8 gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba538c32 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xba5cd2e1 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xba625aad xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0xba6c6382 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xba72a5d7 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xba7a6a7b get_empty_filp +EXPORT_SYMBOL_GPL vmlinux 0xbaae3060 dprc_scan_objects +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbac663f0 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xbac9f324 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb1e554e spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xbb253be1 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xbb54a6c2 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xbb54a950 alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0xbb69d250 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb80d24b public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xbbbaab4c get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xbbce648b usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xbbd6062f devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xbbd99e02 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xbbf5e428 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xbbf89d9f static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0xbbfc02ff of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xbc0f440f of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0xbc11ed6c xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xbc3029f5 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xbc4eaf02 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0xbc6159e8 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc72429f virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xbc729ba3 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcafe2a9 xen_swiotlb_sync_sg_for_device +EXPORT_SYMBOL_GPL vmlinux 0xbcbcdd2f hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xbcbe07d9 free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0xbcc1ae7c devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xbcc9f59b sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcf1ed4a kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcfde9e6 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xbd15a50a wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xbd1d48bc usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xbd329c34 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xbd3c8424 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd668302 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xbd8cc888 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0xbda34570 ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xbdab5ec0 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xbdca6872 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbddc9328 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xbddd0dcd virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xbdecc9c7 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xbdef1aae crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xbdf1e874 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xbdf875ae get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xbdff4475 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xbe0d5fb7 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xbe126af2 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe26e0e4 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbe297f3d switchdev_fib_ipv4_add +EXPORT_SYMBOL_GPL vmlinux 0xbe30b748 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0xbe3387f6 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xbe41b355 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xbe44fd75 mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbe4c685d of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xbe4efe20 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xbe4f117f regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbe5c1bb5 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xbe5cdbaf sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe8d0cfc fsl_mc_device_add +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbea3866b irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeade8f8 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbebcaaae module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbef445c4 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xbefc9365 clk_hw_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf35d062 __of_genpd_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xbf8462fe of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xbf902389 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfc1c0c9 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xbfdb66a6 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfed5265 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc008f029 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0xc0392160 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc04b21bd acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc073e051 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc08848ab of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0xc0895519 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xc0900fcf acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc091f33e swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0xc09d02f7 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc09fc45b clear_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0ac6798 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xc0b2beda crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xc0b5c45f of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0ef3840 devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f42225 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xc1042ebb find_module +EXPORT_SYMBOL_GPL vmlinux 0xc11fe0c1 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc12e79c0 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xc131335f security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xc14c2824 xenbus_probe +EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xc16c26c2 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0xc172977c led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc185edc4 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xc18a2bfc gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xc18b68dc bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xc18f98ca i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xc19ea8e9 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xc1e0bf9a unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xc1efd927 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xc1f33f90 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xc1f4ce83 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xc1fd099d __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc209a7bf vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0xc222762b blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc251da21 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc29e4b26 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xc2a32adb gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xc2a6a62a pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xc2a8a629 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xc2ace277 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xc2bd7249 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xc2d88700 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xc2dfc32b perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xc2e4a24f __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xc2f4b877 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xc2fd23fb rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xc32bd8d4 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc352cb02 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xc3579aa2 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc35a96ec do_truncate +EXPORT_SYMBOL_GPL vmlinux 0xc365730a acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xc36fba64 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc39bb2de kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc3a813b6 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xc3a90f2f invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xc3ad8e19 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xc3c004bb regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xc3cabb95 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc3d86f2c irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xc3e56bc1 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc4229ef7 acpi_dev_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc42994a7 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xc43be786 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xc4409425 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xc4409cba pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc45cc58d __devcgroup_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4932c3c pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xc4ac00f0 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xc4c1a4b8 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0xc4e9e47b percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc4ffb325 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xc519a53d cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xc5268a9e gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xc5427597 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc564db0a dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0xc565eb07 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc570c29b of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc57a4acf usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xc583fd04 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xc5878314 blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0xc588a14e power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc5a83bbb ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0xc5b8ff92 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xc5c2f25f max_gen_clk_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5d0c9f0 amba_apb_device_add +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5d9d27e percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0xc5e63221 security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0xc5ee38d3 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0xc5f32bb6 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xc5f426cd pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xc6058345 arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc65cf2f0 kvm_vcpu_init +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc66958df ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc687aa85 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a31428 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xc6a40c2d crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6bebcd2 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xc6c30cd7 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc6ccc12c clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xc6d1bc4f device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xc6fcefb7 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc728472d crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc73666f2 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xc73c928e tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc748a829 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xc74e141f pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xc7646a05 xen_swiotlb_map_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0xc776b01c __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a61ee6 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xc7ba0584 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xc7be2461 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xc7cc9d54 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xc7ccc216 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0xc7ce2405 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xc7ce99ac kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0xc7ded60e skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc816ed22 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xc83ea892 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xc8436554 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xc84d4f6f arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0xc8528e4b usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xc85f7ae6 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xc8604c3e pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8b15e17 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xc8b6988b pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xc8c5d3ae led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8fa9d40 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc934932b power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc95b16ef bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc9823ea2 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xc98842ca elv_register +EXPORT_SYMBOL_GPL vmlinux 0xc98a79a9 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xc9a0db48 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xc9b1c154 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc9b409d2 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xc9bfc758 xen_remap_domain_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xc9eb91b4 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xc9ebc1e8 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9ecb9ec usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xc9f0c400 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xca33c3e2 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0xca486193 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xca4dcdc0 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xca6b0148 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xca6e076f gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0xca8c1797 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xca8ce013 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xca9d6403 gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xcaaa6318 xhci_mtk_drop_ep_quirk +EXPORT_SYMBOL_GPL vmlinux 0xcabbee90 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcabf3728 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xcac039e3 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xcae87bb1 regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xcaf91945 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xcb0fb069 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb34d2a5 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xcb4066fa sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcb427e84 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xcb499655 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xcb49ac70 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcb6910d3 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xcba40192 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xcbbe5686 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xcbdda9e3 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xcbe29fc2 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbe94420 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcc5e6cb6 input_class +EXPORT_SYMBOL_GPL vmlinux 0xcc79c7f1 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xccae6613 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xccb480f0 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xccb54eee perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xcce07bf7 xhci_mtk_sch_init +EXPORT_SYMBOL_GPL vmlinux 0xcce0996b __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0xccefd4ac anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xccf53b0f md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xccfbbb49 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xcd0443ba cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xcd08ad5c regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xcd1e39b6 loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0xcd33c855 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xcd61c391 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcd6d19e5 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xcd7fecae call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xcd88dfb6 efivars_register +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 0xcdb4c2f1 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdfbe813 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xce17e931 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xce20f463 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0xce2c459a cs47l24_irq +EXPORT_SYMBOL_GPL vmlinux 0xce3030bc ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xce3f1f3f usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xce5be304 of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce85428d usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xce945598 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xce9484a1 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb5857e pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xced01dd7 xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xcf11e919 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcf32383c regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xcf3a2e2b __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf6afb38 dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0xcf71ac9d fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xcf76700f regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xcf93c3e4 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xcf9bd43b tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xcfa3280e debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfbc3fae mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfc9cf89 debugfs_use_file_finish +EXPORT_SYMBOL_GPL vmlinux 0xcfd072ec __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xcfd3c498 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xcffee5df inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xd0111dce usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op +EXPORT_SYMBOL_GPL vmlinux 0xd0371ee9 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd04497b4 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd07980e0 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xd07b44ee inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xd081ccf4 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd099fc3f ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd0a10547 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0xd0b887d9 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0cdbd99 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xd0d3dea8 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0xd0d6f1a8 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0xd0d750c3 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0xd1017e28 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xd1366c53 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd1a37fd3 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xd1b9fc50 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0xd1c31586 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd22b4ac8 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xd23d216e tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd25ecc1c __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd29d9fbc pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xd2ab202f usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xd2aca946 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd2ada135 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd2afdfef evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xd2b4ad40 acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0xd2d846a2 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2eda707 clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd3204737 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xd3271af5 pm_genpd_syscore_poweron +EXPORT_SYMBOL_GPL vmlinux 0xd32e8082 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd33cb80c unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xd3429459 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0xd351a5e6 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xd35314f2 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xd3541052 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xd37e4932 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0xd38d0a4e bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xd3a9c5ce ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xd3c9c678 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xd3d4f404 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xd3d5152c reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0xd3e21930 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xd3f7d667 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd463caa0 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd4990955 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xd49b8f81 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd49d4a70 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4ca6879 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd4cf942f virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xd4effa43 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xd52d0be1 blk_mq_reinit_tagset +EXPORT_SYMBOL_GPL vmlinux 0xd52f2c76 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xd536f7fe devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd5491276 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xd5538119 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0xd56c04a6 xen_efi_update_capsule +EXPORT_SYMBOL_GPL vmlinux 0xd56c4530 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0xd5770777 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xd57761b1 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xd57a8fbb ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5d10938 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xd5e67268 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xd5eb28a0 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd60fc7a7 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xd6151e50 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd6270e6a bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd63a7ace scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd67fc5b0 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xd6bc6685 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xd6c009f7 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xd6df3c36 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xd6e8a678 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd6ee9429 tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xd6ee9527 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0xd703e32f __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd7421e7f led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xd7464599 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0xd759bbd9 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd76c68d2 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd792294d klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xd797efbf usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xd7a72c22 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xd7ab29c9 phy_put +EXPORT_SYMBOL_GPL vmlinux 0xd7bb2b7b tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7e71725 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xd7f15cc7 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xd7f579e9 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xd8035e3b __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xd8095268 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd8210652 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0xd8261885 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xd845b5a0 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xd85ec916 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0xd85f437d crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xd86db4d7 of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xd8725190 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd882178a devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xd893db69 clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xd8980c30 sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0xd8b11df3 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd8b237e4 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd8d1c2a2 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xd8dc9ee0 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xd8e52017 insert_resource +EXPORT_SYMBOL_GPL vmlinux 0xd9049519 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0xd9071fcd transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xd9238e2c vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xd93b2a84 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xd93b9fbe sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0xd94c7dfe switchdev_port_fdb_del +EXPORT_SYMBOL_GPL vmlinux 0xd954648f gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xd96391c4 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd973bc2a crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xd9820c53 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd9be5d6e devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xd9c1a72b acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9fe53d2 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xda247a28 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0xda459029 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xda50f83c serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdaab6e67 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xdab5a074 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xdad4febc serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdafd124e wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xdb111e8a spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xdb2e6091 fsl_mc_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xdb34d2d7 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb45ca68 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb64a27f gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0xdb71b013 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdb7dcbd5 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb916fd0 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xdb92322d ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xdbcc9135 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xdbcfe097 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xdbdb3cd1 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xdbeb6605 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xdbf450b9 usb_of_get_child_node +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbfcc7e4 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xdc09b9bc wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdc13232e __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc1ccfcb blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xdc3c6bf5 qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc686bff tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xdc68be9a __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xdc741100 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0xdc74fa5e kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc881545 dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0xdc8bd0a4 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xdc908fd8 kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca52499 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xdca770ee gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xdca8578a fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0xdcc234de efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xdceeb3c4 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd51bd42 devm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0xdd7a9527 of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0xdd844dff dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0xdd9a55e2 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xdda0ff57 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xddaa5d7f rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc76c83 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xddd34a32 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xdde52910 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xdde7c28d dev_pm_opp_get_notifier +EXPORT_SYMBOL_GPL vmlinux 0xddf6addc tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0xde0343de devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xde0ae08a dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xde112131 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xde212217 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xde284981 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xde2b1e06 xen_efi_query_capsule_caps +EXPORT_SYMBOL_GPL vmlinux 0xde2f6bf0 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xde42f718 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde583a85 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xde5ae471 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xde88fcf1 nvdimm_clear_from_poison_list +EXPORT_SYMBOL_GPL vmlinux 0xde8c888b of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xde939667 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdeb095c2 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xdecbdcab usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xded59e28 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xdee6fd07 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0xdf02c1ef find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xdf07a0c6 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf130200 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xdf156a8f alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0xdf197a51 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0xdf2dd035 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xdf42887e tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0xdf541d3b __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xdf87f923 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xdf8f4a21 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xdf9754a1 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xdfaa2f84 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdfaa53ad spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xdfe7a0ad ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xdff25b28 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xe004d409 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0xe0055f22 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe03f01d9 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0xe05f9aeb acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe078d31f acpi_dev_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xe07f9735 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xe089c41b md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xe0ae71bf of_display_timings_exist +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b6b1bb usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xe0db6d47 xen_swiotlb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op +EXPORT_SYMBOL_GPL vmlinux 0xe0f92f2d sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xe106d711 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xe11b5074 skb_gso_validate_mtu +EXPORT_SYMBOL_GPL vmlinux 0xe147e526 xen_swiotlb_unmap_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0xe14fda4c rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0xe17074d3 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17b046d usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xe187638d __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1a105ff pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0xe1a4cee4 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0xe1afccf1 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xe1bf1215 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xe240305c ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xe24cf459 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe26ffc77 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe28a399e simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xe2930241 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0xe2a3cd6b ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xe2ae40a4 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2b65397 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xe2b72e4d pci_fixup_irqs +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2ec1d3c replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xe2f1e82c vchan_init +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe30e810d sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xe3176e88 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xe3488008 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xe3668081 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xe36aa11b debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xe37b0e53 driver_find +EXPORT_SYMBOL_GPL vmlinux 0xe37fdd6a regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe3830db2 amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0xe38eecce usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list +EXPORT_SYMBOL_GPL vmlinux 0xe398c9ba ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xe39ebb0d cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xe3c816ab pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0xe3d12830 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xe3d4e103 xen_dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xe3e180fd xen_efi_get_wakeup_time +EXPORT_SYMBOL_GPL vmlinux 0xe3e2fc06 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xe3f1ab54 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xe3ff72ea dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xe40e5d7d rcu_exp_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0xe40f84da perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0xe418ecf6 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe475cfbb pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xe47cc0db perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4be6444 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe4d7dc6a arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0xe4d95192 devres_get +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe515568e gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0xe51b040d i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0xe532be06 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0xe5369be7 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0xe53d056d klist_next +EXPORT_SYMBOL_GPL vmlinux 0xe542d53f device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe554ffcf usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xe55d1a8f cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xe562bf2a crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xe56a3686 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xe56b3298 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xe578ed13 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5922210 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xe59d720c i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0xe5a036d5 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5a357ca wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0xe5a9d5ab stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xe5bbd2dc mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe5c9ade9 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0xe5cda274 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0xe5ea06cc x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xe5eb9895 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xe5fd6bf2 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xe635be52 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe657e0d6 inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0xe65fe481 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xe6629983 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0xe692f4ce ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xe69a7f53 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xe6b20382 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xe6b2d66a gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0xe6be8198 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe708dda9 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe7216340 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xe722644f scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xe730b369 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xe730cbcb devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xe7476983 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe761c22e crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe7817978 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe785c818 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xe7ac3cef usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe83384d6 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xe83a7719 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xe84a97bc list_lru_walk_one +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 0xe8746c1a usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xe896c9f1 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe89c3b2e device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xe8a96073 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xe8b7aa30 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xe8b7b05d gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0xe8ff0637 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xe9104bba __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xe9280f4b usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xe92b3362 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0xe93a5497 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xe93d2b75 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9456c75 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xe9474bde dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xe948bb24 d_walk +EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe967f351 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xe96c0cff mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xe96ebe2e smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xe98038d4 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xe981e40e of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xe987cb4f regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xe989f6ff unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xe9af438b pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea207c57 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xea2736a9 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0xea3249c9 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xea40945a sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea46f81d bus_register +EXPORT_SYMBOL_GPL vmlinux 0xea5a5f8c cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0xea652824 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xea6af168 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xea6bf390 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xea7a5120 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xea811e27 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xea8ebf19 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0xea8ef41f crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea99a15e of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0xea9da000 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0xeab5f628 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xeadd21ef rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeb037783 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0xeb2798f7 xen_destroy_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xeb2a7f78 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xeb324f13 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xeb437b51 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xeb4540f6 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0xeb5c0d2e __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xeb82deab pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xeba98c37 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0xebd1c576 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xebda06d0 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xec0185c8 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xec14f5ad pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xec1916cc acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec366726 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0xec3f84bc tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xec45b861 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0xec4fce9b get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xec63dbe8 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0xec702ce0 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0xec71a8f2 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0xec8b17e6 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xecce72c4 fsl_mc_io_unset_dpmcp +EXPORT_SYMBOL_GPL vmlinux 0xecd0c817 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xecdcaab2 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xecec7e17 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xecf6dd79 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xed154980 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xed1713d6 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xed22cb9c mdio_mux_init +EXPORT_SYMBOL_GPL vmlinux 0xed3d64d9 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xed4761cf handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xed5625e4 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xed82d86d ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xed858005 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xed87f6db reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xedba0eca mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xedbe70b4 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xedca62d2 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xedcd9a6b fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xedd26dec cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xedec78c8 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0xee0039ec rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xee3491a4 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xee36c9dc usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xee40f73b spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0xee49c636 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xee4f534c cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xee5778da efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee7102b0 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xee7624f2 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xee90976c class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xee94466e register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xee9dcb1a badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xeeba3427 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0xeec18bf7 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xeecaefb9 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xeed93ac0 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run +EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xeee3dfc4 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xef03a79d nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0xef277f39 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xef302581 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xef39b512 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xef60280b cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat +EXPORT_SYMBOL_GPL vmlinux 0xef7472ea sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xef96f029 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xef9bffa1 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefaead1f rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xefaf5f49 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xefeceb22 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf01a68f2 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xf02c3523 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf0417b07 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf04884e4 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf0704c92 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf07a6f37 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xf07b79f2 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xf082595f sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xf08538de regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xf08e75db l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf0c76e0b acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xf0d4d08e vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf1201985 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xf1241441 path_noexec +EXPORT_SYMBOL_GPL vmlinux 0xf1277f2c unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xf130500d device_del +EXPORT_SYMBOL_GPL vmlinux 0xf13199a6 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0xf13cc790 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0xf145d319 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xf14cc1c5 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xf15f013e dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xf15fd044 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xf161694a platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xf1713bf1 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xf1750a33 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xf176eff7 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1874fb1 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0xf1a26b10 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1b92747 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0xf1c346b6 nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xf1e87ec0 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xf1f52791 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xf202584f kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf202c1b3 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xf21ce95c usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2286625 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0xf230eabf kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xf2348309 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xf2507d59 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xf2551aed simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xf2589f66 of_get_dma_window +EXPORT_SYMBOL_GPL vmlinux 0xf25d017e pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xf2607859 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf268fe7e usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2ad7f84 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xf2adcf88 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xf2c2fb52 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0xf2d237e2 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xf2da3ed6 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xf2e8286c dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xf2f3928d vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf3137fa7 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0xf31444a3 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf31e126d put_filp +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33aa8d8 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xf344cffb usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xf3487507 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xf36a86d2 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xf36ee05c of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf37ab175 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xf37ad8f9 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf38cfab5 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xf39ef1f8 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b4616c nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0xf3c142b1 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0xf3c2474a disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xf3d16a69 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0xf3d177a1 find_iova +EXPORT_SYMBOL_GPL vmlinux 0xf3e0b18d regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xf3e51c58 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xf3e879d0 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf410b05c udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf41637f1 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf4239bd9 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0xf42c9ce3 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xf4306e40 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xf436b059 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xf4427bae irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0xf453e4a5 devm_nsio_disable +EXPORT_SYMBOL_GPL vmlinux 0xf45897f3 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xf460db6a regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xf4777436 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0xf483f2b9 component_del +EXPORT_SYMBOL_GPL vmlinux 0xf4857e9c irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xf486f131 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0xf48cc7fc pv_time_ops +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4b56da7 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xf4c589da regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xf4d65b9f pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xf4da7116 rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0xf4dfa622 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf4fea306 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xf509702b mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xf5207882 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xf52a52a1 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf53a2e44 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf5437f55 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0xf544950b __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf555c092 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xf590c823 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xf59e5454 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5b24804 security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0xf5ba641c dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xf5c7b4fa __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xf5cb0aff kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0xf5ef3348 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xf60ac1cf gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xf61fd6db power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xf62aff91 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xf62c1a3b devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf668e91c __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xf680ccd0 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xf6a51e5d cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0xf6b5e377 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xf6c2fcb7 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf6c7db2d badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6ce18f4 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xf6d3722e __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf6d96988 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf6df1d90 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6ee13a5 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks +EXPORT_SYMBOL_GPL vmlinux 0xf6f5135d power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0xf701f512 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xf73545d4 do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0xf75533ff dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0xf7595a2e fsl_mc_portal_allocate +EXPORT_SYMBOL_GPL vmlinux 0xf76cbe06 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0xf76f7f6d phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf7830265 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xf784555d dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xf787bee5 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xf78bbc71 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0xf79e0900 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf7b4d808 __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xf7b87292 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7ce5ce1 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xf7eb43ae sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0xf800ea98 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xf803bb9b add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xf81e4dd0 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf8344cfe rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xf83fa8c8 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xf854889c of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0xf85bbc63 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf866c15a clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0xf8673131 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf8ad9306 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0xf8ca70f2 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf90fbd0e wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0xf91a6b11 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xf9285c87 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf9549bc2 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf95b5118 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xf967422b HYPERVISOR_xen_version +EXPORT_SYMBOL_GPL vmlinux 0xf9728597 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match +EXPORT_SYMBOL_GPL vmlinux 0xf977b848 clk_hw_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0xf977d2af dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xf985adb5 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xf98c2140 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xf98ef200 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf9924d1d unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9b38094 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xf9c7ae33 xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9ce5fb6 of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xf9d616e9 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa209183 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xfa343245 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xfa358459 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xfa4457aa mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xfa62635e led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0xfa74a6fd power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfaa2a8e3 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xfac23330 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xfaddbd63 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xfae48b63 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL_GPL vmlinux 0xfaecd5b2 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xfafc3f76 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xfb03a8c5 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xfb0a7b0c devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xfb0d55c4 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xfb0f79c9 copy_reserved_iova +EXPORT_SYMBOL_GPL vmlinux 0xfb25a55f dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb3d9b78 ping_err +EXPORT_SYMBOL_GPL vmlinux 0xfb4c7433 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xfb52426c tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xfb5351d8 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb821310 xhci_mtk_sch_exit +EXPORT_SYMBOL_GPL vmlinux 0xfb857bee cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xfb916167 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfb94ce7c extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfba5f491 __module_address +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc12a43 serial8250_em485_init +EXPORT_SYMBOL_GPL vmlinux 0xfbc8eeba acpi_dev_gpio_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xfbdfd3a2 mmput +EXPORT_SYMBOL_GPL vmlinux 0xfbe2ddca remove_resource +EXPORT_SYMBOL_GPL vmlinux 0xfbf65161 acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc0df61a scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc2a40d4 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xfc3526df dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc4b5254 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xfc552605 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xfc716c0c pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xfc9ed0e6 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfca56c5b __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xfcaac00d pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xfcc1b099 l3mdev_get_saddr6 +EXPORT_SYMBOL_GPL vmlinux 0xfccaa58a dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xfcfd7e14 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xfd18724d regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xfd3a393b mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xfd6b3242 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0xfd8e616e _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0xfd9a007b tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xfda04c33 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xfdbf1daa dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0xfdbf3bcb scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xfdd000b4 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xfdee720e pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xfe02082f clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0xfe0585ca devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfe260e19 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0xfe298465 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0xfe302170 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xfe32a722 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xfe3c6c64 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xfe3c7f90 amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0xfe968499 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfeb778d2 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xfec06b5f vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xfecf26cd i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfeda9c9b trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xfedacd0b pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xfeeff958 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff1acecd clk_register +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff2bfbda regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff65b86b spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xffa91769 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffd9a332 __of_genpd_xlate_simple +EXPORT_SYMBOL_GPL vmlinux 0xffe17893 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xffe5669f security_mmap_file --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/arm64/generic.compiler +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/arm64/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 6.2.0-5ubuntu12) 6.2.0 20161005 --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/arm64/generic.modules +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/arm64/generic.modules @@ -0,0 +1,4623 @@ +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_moxa +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +DAC960 +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +ablk_helper +ac97_bus +acard-ahci +acecad +acenic +acpi-als +acpi_configfs +acpi_ipmi +acpi_power_meter +acpiphp_ibm +act200l-sir +act8865-regulator +act8945a +act8945a-regulator +act8945a_charger +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5761 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7606_par +ad7606_spi +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +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 +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adf7242 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16209 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +aes-ce-blk +aes-ce-ccm +aes-ce-cipher +aes-neon-blk +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +afe4403 +afe4404 +affs +ah4 +ah6 +ahci +ahci_ceva +ahci_platform +ahci_qoriq +ahci_seattle +ahci_xgene +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am2315 +am53c974 +amba-pl010 +ambakmi +amc6821 +amd +amd-xgbe +amd5536udc +amd8111e +amdgpu +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 +anatop-regulator +ansi_cprng +anubis +aoe +apbps2 +apds9300 +apds9802als +apds990x +apds9960 +appledisplay +appletalk +appletouch +applicom +aquantia +ar1021_i2c +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arcpgu +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arm_big_little +arm_big_little_dt +arm_mhu +arm_scpi +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +asc7621 +ascot2e +asix +ast +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atlas-ph-sensor +atm +atmel +atmel-flexcom +atmel-hlcdc +atmel_captouch +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avmfritz +ax25 +ax88179_178a +axp20x +axp20x-i2c +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1pci +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +b53_common +b53_mdio +b53_mmap +b53_spi +b53_srab +bam_dma +bas_gigaset +batman-adv +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-keypad +bcm-pdc-mailbox +bcm-phy-lib +bcm203x +bcm2835-rng +bcm2835_wdt +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7xxx +bcm87xx +bcm_iproc_adc +bcm_iproc_tsc +bcm_sf2 +bcma +bcma-hcd +bcmsysport +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +berlin2-adc +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780 +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bma220_spi +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmc150_magn_i2c +bmc150_magn_spi +bmg160_core +bmg160_i2c +bmg160_spi +bmi160_core +bmi160_i2c +bmi160_spi +bmp085 +bmp085-i2c +bmp085-spi +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bonding +bpa10x +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +bq27xxx_battery_i2c +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +cap11xx +capi +capidrv +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 +cciss +ccm +ccp +ccp-crypto +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +cec +cec-edid +ceph +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chip +chipone_icn8318 +chipreg +chnl_net +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +clip +clk-cdce706 +clk-cdce925 +clk-cs2000-cp +clk-hi3519 +clk-max77686 +clk-max77802 +clk-palmas +clk-pwm +clk-qcom +clk-rk808 +clk-s2mps11 +clk-scpi +clk-si514 +clk-si5351 +clk-si570 +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 +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cnic +cobalt +cobra +coda +colibri-vf50-ts +com20020 +com20020-pci +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_parport +comedi_pci +comedi_test +comedi_usb +configfs +contec_pci_dio +cordic +core +cp210x +cpia2 +cppc_cpufreq +cpsw_ale +cpu-notifier-error-inject +cpufreq_schedutil +cramfs +crc-itu-t +crc32_generic +crc7 +crc8 +cros_kbd_led_backlight +cryptd +crypto_user +cryptoloop +cs3308 +cs5345 +cs53l32a +csiostor +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +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 +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cxgbit +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +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-regulator +da9063_onkey +da9063_wdt +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 +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +ddbridge +de2104x +decnet +deflate +defxx +denali +denali_dt +denali_pci +des_generic +designware_i2s +designware_pcm +devlink +dgnc +dh_generic +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +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-verity +dm-zero +dm1105 +dm9601 +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +dp83848 +dp83867 +drbd +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1803 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsa_core +dsbr100 +dscc4 +dss1_divert +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-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +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_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_drm_dsi +dw_mmc +dw_mmc-exynos +dw_mmc-k3 +dw_mmc-pci +dw_mmc-pltfm +dw_wdt +dwc2_pci +dwc3 +dwc3-of-simple +dwc3-pci +dwc_eth_qos +dwmac-generic +dwmac-ipq806x +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 +ecdh_generic +echainiv +echo +edac_core +edt-ft5x06 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efi-pstore +efi_test +efibc +efs +egalax_ts +egalax_ts_serial +ehci-msm +ehci-platform +ehset +elan_i2c +elo +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emac_arc +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_usb +emu10k1-gp +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +ene_ir +eni +enic +epic100 +eql +esas2r +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max3355 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f71805f +f71882fg +f75375s +f81232 +fakelb +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_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 +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdp +fdp_i2c +fealnx +ff-memless +fid +fintek-cir +firedtv +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fixed +fjes +fl512 +fld +flexfb +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fou6 +fpga-mgr +freevxfs +fsa9480 +fscache +fsl-edma +fsl_lpuart +ft6236 +ftdi-elan +ftdi_sio +ftl +ftsteutates +fujitsu_ts +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 +gcc-apq8084 +gcc-ipq4019 +gcc-ipq806x +gcc-msm8660 +gcc-msm8916 +gcc-msm8960 +gcc-msm8974 +gcc-msm8996 +gcm +gdmtty +gdmulte +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +genwqe_card +gf2k +gfs2 +ghash-ce +ghash-generic +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-addr-flash +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-altera +gpio-amd8111 +gpio-amdpt +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-fan +gpio-grgpio +gpio-ir-recv +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-max77620 +gpio-mc33880 +gpio-mcp23s08 +gpio-menz127 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-pisosr +gpio-rdc321x +gpio-regulator +gpio-syscon +gpio-tpic2810 +gpio-tps65086 +gpio-tps65218 +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio-xgene-sb +gpio-xlp +gpio-zynq +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gpio_wdt +gr_udc +grace +grcan +gre +grip +grip_mp +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 +gtco +gtp +guillemot +gunze +hackrf +hamachi +hampshire +hanwang +hci +hci_uart +hci_vhci +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcd +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdma +hdma_mgmt +hdpvr +he +helene +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hi6220-mailbox +hi6220_reset +hi6421-pmic-core +hi6421-regulator +hi655x-pmic +hi655x-regulator +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-asus +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-cmedia +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-led +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +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-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hih6130 +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi-rng +hisi-sfc +hisi504_nand +hisi_powerkey +hisi_thermal +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horus3a +hostap +hostap_pci +hostap_plx +hp03 +hp100 +hp206c +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +htc-pasic3 +htu21 +huawei_cdc_ncm +hwa-hc +hwa-rc +hwmon-vid +hwspinlock_core +hx8357 +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-bcm-iproc +i2c-bcm2835 +i2c-cbus-gpio +i2c-demux-pinctrl +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-emev2 +i2c-gpio +i2c-hid +i2c-i801 +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-mt65xx +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-pinctrl +i2c-mux-reg +i2c-nforce2 +i2c-nomadik +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-piix4 +i2c-qup +i2c-rk3x +i2c-robotfuzz-osif +i2c-scmi +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-thunderx +i2c-tiny-usb +i2c-versatile +i2c-via +i2c-viapro +i2c-viperboard +i2c-xgene-slimpro +i2c-xiic +i40e +i40evf +i40iw +i5k_amb +i6300esb +i740fb +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_qib +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibmaem +ibmpex +icp_multi +icplus +ics932s401 +idma64 +idmouse +idt77252 +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ifi_canfd +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-hrtimer +iio-trig-interrupt +iio-trig-loop +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +img-i2s-in +img-i2s-out +img-parallel-out +img-spdif-in +img-spdif-out +imon +ims-pcu +imx074 +imx6ul_tsc +imx_thermal +ina209 +ina2xx +ina2xx-adc +ina3221 +industrialio +industrialio-buffer-cb +industrialio-configfs +industrialio-sw-device +industrialio-sw-trigger +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int51x1 +intel-xway +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +interval_tree_test +inv-mpu6050 +inv-mpu6050-i2c +inv-mpu6050-spi +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +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_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_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 +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +iproc-rng200 +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irqbypass +irtty-sir +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it87 +it913x +itd1000 +ite-cir +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +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 +kbtab +kcm +kcomedilib +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khazad +kingsun-sir +kirin-drm +kl5kusb105 +kmx61 +ko2iblnd +kobil_sct +ks7010 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksocklnd +ksz884x +kvaser_pci +kvaser_usb +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan78xx +lanai +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcc-ipq806x +lcc-msm8960 +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-aat1290 +leds-adp5520 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-is31fl32xx +leds-ktd2692 +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp3952 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libceph +libcfs +libcomposite +libcrc32c +libcxgb +libcxgbi +libertas +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +liquidio +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3lv02d +lis3lv02d_i2c +litelink-sir +lkkbd +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lms283gf05 +lms501kf03 +lmv +lnbh25 +lnbp21 +lnbp22 +lnet +lnet_selftest +lockd +locktorture +lov +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc2990 +ltc3589 +ltc3815 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lustre +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +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 +macb +macmodes +macsec +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mailbox-test +mailbox-xgene-slimpro +mali-dp +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577-regulator +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max30100 +max3100 +max31722 +max31790 +max3421-hcd +max34440 +max44000 +max517 +max5487 +max5821 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77620-regulator +max77620_wdt +max77686-regulator +max77693-haptic +max77693-regulator +max77693_charger +max77802-regulator +max8649 +max8660 +max8688 +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 +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4131 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +mdc +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-cavium +mdio-gpio +mdio-hisi-femac +mdio-mux-gpio +mdio-mux-mmioreg +mdio-octeon +mdio-thunder +mdio-xgene +me4000 +me_daq +media +mediatek-drm +mediatek-drm-hdmi +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +melfas_mip4 +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +metro-usb +metronomefb +mf6x4 +mga +mgc +michael_mic +micrel +microchip +microread +microread_i2c +microtek +minix +mip6 +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mlxsw_spectrum +mlxsw_switchx2 +mma7455_core +mma7455_i2c +mma7455_spi +mma7660 +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_spi +mmcc-apq8084 +mmcc-msm8960 +mmcc-msm8974 +mmcc-msm8996 +mmci_qcom_dml +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpl115 +mpl115_i2c +mpl115_spi +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi001 +msi2500 +msm +msm-rng +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6323-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-pmic-wrap +mtk-quadspi +mtk-sd +mtk-vpu +mtk_ecc +mtk_nand +mtk_thermal +mtk_wdt +mtouch +multipath +multiq3 +musb_hdrc +mv88e6060 +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxc6255 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxser +mxuport +myri10ge +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nand +nand_bch +nand_ecc +nand_ids +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +ncpfs +nct6683 +nct6775 +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +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_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfp_netvf +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_exthdr +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +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_tio +ni_tiocmd +ni_usb6501 +nicpf +nicstar +nicvf +nilfs2 +niu +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-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 +nosy +notifier-error-inject +nouveau +nozomi +nps_enet +ns558 +ns83820 +ntb +ntb_netdev +ntb_perf +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nuvoton-cir +nvidiafb +nvme +nvme-core +nvme-fabrics +nvme-loop +nvme-rdma +nvmem_core +nvmem_qfprom +nvmet +nvmet-rdma +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxt200x +nxt6000 +obdclass +obdecho +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_mmc_spi +of_xilinx_wdt +ofpart +ohci-platform +old_belkin-sir +omap4-keypad +omfs +omninet +onenand +opencores-kbd +openvswitch +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osc +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +palmas-pwrbutton +palmas-regulator +palmas_gpadc +pandora_bl +panel +panel-lg-lg4573 +panel-panasonic-vvx10f034n00 +panel-samsung-ld9040 +panel-samsung-s6e8aa0 +panel-sharp-lq101r1sx01 +panel-sharp-ls043t1le01 +panel-simple +parade-ps8622 +parkbd +parport +parport_ax88796 +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_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 +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-stub +pci200syn +pcie-iproc +pcie-iproc-platform +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmda12 +pcmmio +pcmuio +pcnet32 +pcrypt +pcwd_pci +pcwd_usb +pda_power +pdc_adma +peak_pci +peak_usb +pegasus +pegasus_notetaker +penmount +percpu_test +pfuze100-regulator +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-bcm-ns-usb2 +phy-berlin-sata +phy-berlin-usb +phy-exynos-usb2 +phy-generic +phy-gpio-vbus-usb +phy-hi6220-usb +phy-isp1301 +phy-msm-usb +phy-mt65xx-usb3 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-qcom-8x16-usb +phy-qcom-apq8064-sata +phy-qcom-ipq806x-sata +phy-qcom-ufs +phy-qcom-ufs-qmp-14nm +phy-qcom-ufs-qmp-20nm +phy-rcar-gen3-usb2 +phy-tahvo +phy-tusb1210 +physmap +physmap_of +physmap_of_versatile +pinctrl-apq8064 +pinctrl-apq8084 +pinctrl-ipq4019 +pinctrl-ipq8064 +pinctrl-max77620 +pinctrl-mdm9615 +pinctrl-msm8660 +pinctrl-msm8916 +pinctrl-msm8960 +pinctrl-msm8996 +pinctrl-msm8x74 +pinctrl-qdf2xxx +pinctrl-spmi-gpio +pinctrl-spmi-mpp +pinctrl-ssbi-gpio +pinctrl-ssbi-mpp +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl172 +pl2303 +pl330 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-pwrkey +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pn533 +pn533_i2c +pn533_usb +pn544 +pn544_i2c +pn_pep +poly1305_generic +port100 +powermate +powr1220 +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_core +pps_parport +pptp +prism2_usb +ps2mult +psmouse +psnap +ptlrpc +ptp +pulse8-cec +pulsedlight-lidar-lite-v2 +pv88060-regulator +pv88080-regulator +pv88090-regulator +pvrusb2 +pwc +pwm-atmel-hlcdc +pwm-bcm-iproc +pwm-bcm2835 +pwm-beeper +pwm-berlin +pwm-fan +pwm-fsl-ftm +pwm-lp3943 +pwm-mtk-disp +pwm-pca9685 +pwm-rcar +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pwrseq_emmc +pwrseq_simple +pxa168_eth +pxa27x_udc +qcaspi +qcaux +qcom-coincell +qcom-spmi-iadc +qcom-spmi-pmic +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom-wdt +qcom_gsbi +qcom_hwspinlock +qcom_mdt_loader +qcom_nandc +qcom_q6v5_pil +qcom_rpm +qcom_rpm-regulator +qcom_smbb +qcom_smd-regulator +qcom_spmi-regulator +qcrypto +qcserial +qed +qede +qemu_fw_cfg +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qrtr +qrtr-smd +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +raydium_i2c_ts +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +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-behold +rc-behold-columbus +rc-budget-ci-old +rc-cec +rc-cinergy +rc-cinergy-1400 +rc-core +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-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-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +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-pctv-sedna +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-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-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rcar-fcp +rcar_canfd +rcuperf +rdc321x-southbridge +rdma_cm +rdma_rxe +rdma_ucm +rdmavt +rds +rds_rdma +rds_tcp +realtek +reboot-mode +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +renesas_wdt +reset-ti-syscon +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio500 +rivafb +rj54n1cb0c +rk808 +rk808-regulator +rmd128 +rmd160 +rmd256 +rmd320 +rmi_core +rmi_i2c +rmi_spi +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rocker +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-as3722 +rtc-bq32k +rtc-bq4802 +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-hid-sensor-time +rtc-hym8563 +rtc-isl12022 +rtc-isl12057 +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-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-pl030 +rtc-pl031 +rtc-pm8xxx +rtc-r9701 +rtc-rc5t583 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx6110 +rtc-rx8010 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-snvs +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +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 +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7706h +safe_serial +salsa20_generic +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 +savage +savagefb +sb1000 +sbp_target +sbs-battery +sbsa_gwdt +sc16is7xx +sc92031 +sca3000 +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +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_tbf +sch_teql +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 +sctp_probe +sdhci +sdhci-acpi +sdhci-iproc +sdhci-msm +sdhci-of-arasan +sdhci-of-at91 +sdhci-pci +sdhci-pltfm +sdhci-pxav3 +sdhci_f_sdh30 +sdio_uart +seed +sensorhub +ser_gigaset +serial2002 +serio_raw +sermouse +serpent_generic +serport +ses +sfc +sh_veu +sha1-ce +sha2-ce +sha3_generic +shark2 +shpchp +sht15 +sht21 +sht3x +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sii902x +sil164 +silead +sir-dev +sis190 +sis5595 +sis900 +sis_i2c +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skd +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +slcan +slic_ds26522 +slip +slram +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smd +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-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-cs4281 +snd-cs46xx +snd-cs8427 +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-firewire-digi00x +snd-firewire-lib +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-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-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-ac97 +snd-soc-acp-pcm +snd-soc-adau1701 +snd-soc-adau7002 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-apq8016-sbc +snd-soc-bcm2835-i2s +snd-soc-bt-sco +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs35l33 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +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-cs4349 +snd-soc-cs53l30 +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-hdmi-codec +snd-soc-imx-audmux +snd-soc-inno-rk3036 +snd-soc-lpass-apq8016 +snd-soc-lpass-cpu +snd-soc-lpass-ipq806x +snd-soc-lpass-platform +snd-soc-max98357a +snd-soc-max98504 +snd-soc-max9860 +snd-soc-pcm1681 +snd-soc-pcm179x-codec +snd-soc-pcm179x-i2c +snd-soc-pcm179x-spi +snd-soc-pcm3168a +snd-soc-pcm3168a-i2c +snd-soc-pcm3168a-spi +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rl6231 +snd-soc-rt5616 +snd-soc-rt5631 +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-simple-card-utils +snd-soc-spdif-rx +snd-soc-spdif-tx +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-tas5086 +snd-soc-tas571x +snd-soc-tas5720 +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +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-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8960 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-xtfpga-i2s +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 +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +solo6x10 +solos-pci +sony-btf-mpx +soundcore +sp2 +sp805_wdt +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +speedfax +speedtch +spi-altera +spi-axi-spi-engine +spi-bcm2835 +spi-bcm2835aux +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-loopback-test +spi-mt65xx +spi-nor +spi-oc-tiny +spi-pl022 +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-qup +spi-rockchip +spi-sc18is602 +spi-tle62x0 +spi-xcomm +spi-xlp +spi-zynqmp-gqspi +spi_ks8995 +spidev +spl +splat +spmi +spmi-pmic-arb +sprd_serial +sr9700 +sr9800 +ssb +ssb-hcd +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st95hf +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_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 +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stm_heartbeat +stmmac +stmmac-platform +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sun4i-codec +sun4i-i2s +sun4i-spdif +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +surface3_spi +svgalib +sx8 +sx8654 +sx9500 +sym53c8xx +symbolserial +synaptics_i2c +synaptics_usb +synclink_gt +synclinkmp +syscon-reboot-mode +syscopyarea +sysfillrect +sysimgblt +sysv +t1pci +t5403 +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 +tc358767 +tc3589x-keypad +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_nv +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teranetics +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_hash +test_hexdump +test_module +test_power +test_static_key_base +test_static_keys +test_udelay +test_user_copy +test_uuid +tg3 +tgr192 +thermal-generic-adc +thmc50 +thunder_bgx +thunderbolt +ti-adc081c +ti-adc0832 +ti-adc128s052 +ti-ads1015 +ti-ads8688 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +torture +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm-rng +tpm_atmel +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_infineon +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tpm_tis_core +tpm_tis_spi +tpm_vtpm_proxy +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65086 +tps65086-regulator +tps65090-charger +tps65090-regulator +tps65217 +tps65217-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw686x +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish_common +twofish_generic +typhoon +u132-hcd +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +ucsi +uda1342 +udc-core +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-dwc +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +umc +umem +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 +us5182d +usb-serial-simple +usb-storage +usb3503 +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_uac2 +usb_f_uvc +usb_gigaset +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 +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +v4l2-tpg +vc4 +vcan +vcnl4000 +veml6070 +ves1820 +ves1x93 +veth +vexpress-hwmon +vexpress-regulator +vf610_adc +vf610_dac +vfio +vfio-amba +vfio-pci +vfio-platform +vfio-platform-amdxgbe +vfio-platform-base +vfio-platform-calxedaxgmac +vfio_iommu_type1 +vfio_virqfd +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +vhost_vsock +via +via-rhine +via-sdmmc +via-velocity +via686a +videobuf-core +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videodev +vim2m +viperboard +viperboard_adc +virtio-gpu +virtio-rng +virtio_blk +virtio_input +virtio_net +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vrf +vringh +vsock +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5100-spi +w5300 +w6692 +w83627ehf +w83627hf +w83781d +w83791d +w83792d +w83793 +w83795 +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +wanxl +warrior +wcn36xx +wcnss_ctrl +wd719x +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wilc1000 +wilc1000-sdio +wilc1000-spi +wimax +winbond-840 +wire +wishbone-serial +wl1273-core +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 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x_tables +xc4000 +xc5000 +xcbc +xen-blkback +xen-evtchn +xen-fbfront +xen-gntalloc +xen-gntdev +xen-kbdfront +xen-netback +xen-privcmd +xen-scsiback +xen-scsifront +xen-tpmfront +xen_wdt +xenfs +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgene-dma +xgene-enet +xgene-rng +xgene_edac +xgifb +xhci-mtk +xhci-plat-hcd +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx_can +xilinx_dma +xilinx_uartps +xillybus_core +xillybus_of +xillybus_pcie +xor +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +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 +xz_dec_test +yam +yealink +yellowfin +yurex +z3fold +zaurus +zavl +zcommon +zd1201 +zd1211rw +zforce_ts +zfs +zhenhua +ziirave_wdt +zl10036 +zl10039 +zl10353 +zl6100 +znvpair +zpios +zr364xx +zram +zunicode +zynq-fpga +zynqmp_dma --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/armhf/generic +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/armhf/generic @@ -0,0 +1,19610 @@ +EXPORT_SYMBOL arch/arm/crypto/aes-arm 0x276b2f72 private_AES_set_encrypt_key +EXPORT_SYMBOL arch/arm/crypto/aes-arm 0x6c62e582 AES_decrypt +EXPORT_SYMBOL arch/arm/crypto/aes-arm 0xc30fcbed AES_encrypt +EXPORT_SYMBOL arch/arm/crypto/aes-arm 0xcf024ae9 private_AES_set_decrypt_key +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x90a7bc95 crypto_sha256_arm_update +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0xe8404d72 crypto_sha256_arm_finup +EXPORT_SYMBOL arch/arm/lib/xor-neon 0x0f051164 xor_block_neon_inner +EXPORT_SYMBOL crypto/mcryptd 0xe6c709de mcryptd_arm_flusher +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0x08747e0c suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x3ee831f5 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xa591dae3 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 0x1da1fc88 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x43ca0602 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x4513acff pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x4b37349d pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x567ad8b3 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x7c2529a9 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x8599ee8b pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x9d9a7d74 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xb3802a10 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xb7c5146b pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0xbf138b07 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0xc0d6e58f paride_unregister +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xa558a900 btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0fd6a0bd ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x18c99c06 ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4ddd6644 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4dde7206 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7975327e ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xb0e0afd9 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x2c93b891 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x4b2c4768 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xa57d2b40 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xef8a4b3e st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xa4cc5922 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xdd700068 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xeb6034a1 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/crypto/caam/caam 0x1c758e97 caam_get_era +EXPORT_SYMBOL drivers/crypto/caam/caam 0xa51f16c7 caam_little_end +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x3f8ab075 split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xae4dd96f caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xb6542124 caam_jr_strstatus +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xc5dc4b61 gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xd9248564 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xed8d0144 caam_jr_enqueue +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x12bad613 dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x5d86933c dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x79ef6af3 dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x8e2f84b0 dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x8ecf6c53 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xbfb99cde dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/pl330 0xb186f29a pl330_filter +EXPORT_SYMBOL drivers/edac/edac_core 0x3e65a4a5 edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0972b9ea fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x234d00ea fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2e71d1f5 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x31f467f7 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x333c2751 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4f0ce047 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6060f49a fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x622f50fb fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65807fb3 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x689609f6 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6a9af11c fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9f66c2c1 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa87c2174 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaa940ac0 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb9fa4fcd fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc7711b91 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd5a2950a fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd868a07c fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdfe33152 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe9846b8a fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xee32b3a2 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf16b6a0a fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf17b04a8 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfb45fc0e fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfc111dbd fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfc77e3b0 fw_core_handle_response +EXPORT_SYMBOL drivers/fmc/fmc 0x2b455841 fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x35b17799 fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0x37ed3974 fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x589f923a fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x5e6dfa39 fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0x6a3c706c fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0x6d319b5e fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0x8f182e33 fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x8f645550 fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0x93bd989a fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xce3ed572 fmc_device_unregister_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0077f039 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x012b842e drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04a33008 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x058f41a3 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x066ead92 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0760e2ad drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x089053f2 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x092df048 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x093b3755 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09a5f29c drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bf15cdf drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d4da9ec drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fe3cb2e drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10891a28 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11acb0b3 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x139940e6 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1482df61 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x154b1fc7 drm_mode_object_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ae18c7 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c2fd8d drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ed2279 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1763696b drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17a11a75 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17a52b44 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18da7312 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a0348f3 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c05a565 drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cec388f drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d63691f drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d7bb4c0 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e6ed52a drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fba83a4 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fdfbac3 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2023ff7e drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21bf1c79 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21c72da0 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x227fa890 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22c1d7a0 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22cb3e42 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22dfe8a7 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23e9e417 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2460e0e7 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24de41b4 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25779b2b drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2689dbe0 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26bfb1b4 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x272f00cd drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x274f1c7f drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27b11676 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28445303 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2886b813 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2973f933 drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29894740 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a9bd461 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2aaed03e drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b735b73 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bc36e85 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c966d0c drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cae8d29 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d72564d drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f413b9e drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f9516d8 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ff4216a drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30c93e63 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32027c1b drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3358c06f of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33b9d81a drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34232290 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x380e8c89 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x384e066f drm_mode_object_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38de1654 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x393dc1ca drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b773a43 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b7a8f6b drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bbf09b6 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cddd94e drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d991f12 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3daa6b2d drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dfab632 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40c27084 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x415406ab drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41d4bf0b drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42f04b86 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4377a2c4 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x447abc7d drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4703fc3f drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x488b2e72 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x493ce5c1 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a4ebecf drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ac41bf3 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b4574c6 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bcb7765 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c2ac597 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c32438c drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f6bb5b9 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x509267eb drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50c1be64 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x539b8c68 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54541cfc drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54facd34 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x561a81f0 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x564628e1 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56f15191 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x571684ac drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57ba0e9c drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57c2c5fd drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57c6f357 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58006f36 drm_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x583a94ce drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59a4a7f8 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59e6f881 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a268d54 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b5b2db4 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e207daf drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e32e963 drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f725db0 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6006f708 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6010f044 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60f3672c drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6330f23b drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64ef153c drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65c6124a drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65f58655 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x672c6952 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x694a8a02 drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a76a733 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ba2a714 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bb1b0f1 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d26bfe8 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d2fd2a4 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dcd4ddc drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e53e4b3 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e607654 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e838d57 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e9ac1fd drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70673660 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x709324f8 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7126a664 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71a06b9d drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71fb62dc drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7305590b drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x738ff225 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7674d48f drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77d3929d drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78047611 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7966967f drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x796c2282 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x799c4547 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b9fbf85 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bd40ed8 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c33891d drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c77c8f4 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c9f707f drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d5b932f drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f889ed3 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fad7147 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8022949d drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x802f596c drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81a5e039 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83e526ac drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83ea6d55 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8471ed95 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8570e272 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8607f75a drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86239d64 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86b09d74 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x877e2673 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87e5e9be drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x883bb89c drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x886eb3de drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88df078a drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a36d5b7 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a4530dc drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a4ffbfd drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d050139 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ec8d614 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ee2c4f3 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f1651e8 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x926df5c0 drm_gem_object_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92bb95a0 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92f9b107 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x933e386e of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x934e2586 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96669246 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9723fa46 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x987f8f41 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a4bd0be drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9acdc938 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b628de8 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c35b628 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cfdd12e drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d9dcac6 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9edf56e3 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f298f22 drm_crtc_commit_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa064366f drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa142614c drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa74ebcde drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7ade1e3 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8aa212e drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaaac90f6 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab9e1a1f drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac6a061f drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad8d0816 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae5467ef drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf047bb1 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb00d18f7 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb16a82fa drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb198cca0 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1e7969e drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb20b63ce drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22c4a8c drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb290a040 drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb37d51ad drm_format_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3903b44 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5326b35 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb663520b drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb71de264 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb735c56c drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7a1c046 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8acbe9f drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb973ad8d drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba30e0eb drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc103219 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc8623ba drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcbaecaf drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd5eaae4 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd673d34 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdd1b6ac drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfea5292 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0598823 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc084b7f7 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2331ebc drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc30483c1 drm_gem_object_unreference_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc439213e drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6857670 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6933e8d drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6b9afbf drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8aadd44 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbad55ba drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc437580 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb7ffe8 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfc96193 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0305370 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0903f15 drm_format_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd188cab4 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd21ba252 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3a8aac4 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4404851 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4e8e266 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd501cf36 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd532df8d drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5eecdb1 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd64afb6f drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdaddbc90 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb0c8c1f drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb313550 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb3f40ca drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb97937a drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc604d31 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdddba7ca drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdddd7bc1 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1e6f71f drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe221bf9d drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ac3843 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe46e2bbc drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe70399fc drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7f3f30c drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec5cf995 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed2d37f5 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf052456e drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1900184 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3f0b0a2 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf403bc35 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5832692 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf60564a5 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf66eba7b drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf68ab5d0 drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6d790c3 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb14f6dc drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb30de8d drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb55234a drm_crtc_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc083dfa drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc64e629 drm_crtc_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcb6486d drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdcc913d drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01b04995 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02453820 drm_fbdev_cma_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x062dac96 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0830a957 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08a8016e drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08ce650d drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09570c2e drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d8830c3 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x143eaebf drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15ad1b84 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x196aaf36 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1aa736e0 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b25f417 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ecd6aab drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f2687ca drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20a07f35 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x276560c9 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29364e0c drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a72e5a5 drm_fb_cma_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ae61132 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c5b7462 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d70a91d drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e16d40e drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f494524 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fd3ec12 drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30d510fb drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36908195 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37fdfa28 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3861e44d drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38808592 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bfac70c drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3daeb515 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f5c689f __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42778c50 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x436d1d8e drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x437805ab drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43d39f57 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x444c76a5 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45d7e3cc drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47923574 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x480fa61c drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48f21079 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a60b92b drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c3c5569 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4dcf6259 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50c48418 drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56f6cf85 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5759036b drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57f9323e drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b4b9248 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bb7e9f5 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d47c05a drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5dd9f5de drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e2bfa81 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5eeb3a41 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63196958 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63256008 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x635caf8e drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67724fab drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6950f8f2 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b8216a5 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7011e1c5 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x707d814f drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70dec53e drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7364e874 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73b7531d drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x746cc6c5 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7512f16e drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x753622d1 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7537283b drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76617d79 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76b62f91 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77a6074a drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x780b5d31 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a5366c9 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e953136 drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80924691 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x810d7d35 drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81a84ed0 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8227b024 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82fb870d drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838d2ea8 drm_fb_cma_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8394a5e8 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8572ef58 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89d8734c drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ac1ee4d drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b346e37 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d4ab06b drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8dbd3092 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f6b71a1 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90879a60 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92c2fe58 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94792e91 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x984fad32 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x986e9a41 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ae4ea80 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b2a6e9b drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bc73928 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0ec33c1 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fbce66 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2183733 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2743402 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad534bf0 drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaeffd8c2 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf9a9ea8 drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1dcf753 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5065ddb drm_atomic_helper_best_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb593b1da drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9d8d5a9 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9f0c9ee drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc088b9c drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdbd33b0 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf972424 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc026f83b drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc056595a drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc48f4700 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5a766ac drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5a76950 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc61df807 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9e58a74 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb687d75 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf1c47ce drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf3416df drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfff1105 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0946ee4 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd335d13d drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd339504d drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4adede7 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6645dd8 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd691f5d4 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd730bc3e __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd77cfc95 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd92b0413 drm_fbdev_cma_create_with_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9ddf65f drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdddfdb44 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde01eaeb drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde94d4f0 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf95f02c drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1eecafa drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3c5f34e drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4e15324 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe59dbc20 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6d72c06 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9de74b7 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea90b475 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeabd3f4d drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb30e465 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xebbb7bad drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec5c4077 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed2b8fb0 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed75b863 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf53c85f2 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7063370 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf74f69fc drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfac7b6f1 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfaf2afad drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd0770f3 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdcb4a42 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x00284d5f ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0af2cdc7 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0c775596 ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0f639091 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x136ec7fa ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x138fb7cb ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c567c67 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1e8564d9 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x20d398c9 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2100b7d3 ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b962ed0 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c7fac9b ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x35be54c9 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x395373eb ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x39d607f1 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3c3d999b ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4628b006 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x485a5bc0 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a7c7359 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4eae34ac ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ecfe2c3 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5869b275 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5896b6a9 ttm_bo_default_swap_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5b8d2d1f ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5c223115 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5f373cb1 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60ea7d8c ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x620e005e ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x62753959 ttm_bo_pipeline_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x62be8bdd ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67ebb56c ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c0ec969 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ff74d3e ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7bb2203c ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x81971922 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84757bf0 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8589758d ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86bb8a6c ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8a3fe1e0 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8bf2220f ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8c04c225 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x93b7d896 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x940f8905 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x977541bf ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa0e3056e ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa61d8d4a ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa7d8f238 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa844b640 ttm_bo_default_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa875c15b ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa8f8e6f9 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xafe17175 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb61da4c6 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbb0e1a3c ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc0dbb04a ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc50a2ff7 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5bc824d ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc8f04511 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc968d68f ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcde4c502 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd79acfd6 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdc08fe34 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1ee8734 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe21c2262 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xefc4df0d ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd7484d3 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe8cc064 ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe98f81a ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe9f6a82 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x01978cd0 host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x05cf21e3 host1x_syncpt_read +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0614cfb8 host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x075475a3 host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2378678d host1x_channel_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2c6a141a host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2f703054 host1x_channel_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3b55260f host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x43799a4e tegra_mipi_calibrate +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x48852534 host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x48c5b8de host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4912d3d3 host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x492208e0 host1x_syncpt_incr_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4bb2fa8b host1x_channel_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5244ff65 host1x_syncpt_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x61ad0d75 host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6e453f66 host1x_syncpt_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7505cd3b host1x_syncpt_get_base +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x76d1deac host1x_syncpt_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x82667b1e host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x85b9e0e2 host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9ecbcbe3 host1x_job_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa158b6e7 host1x_syncpt_base_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa6490c51 host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc3ef0a2c host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xca0c3604 host1x_job_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd3886bd0 host1x_job_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd7d1b900 host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe7db9cba tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xec27125b host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf9eeabf6 host1x_job_pin +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xa25072fe sch56xx_watchdog_register +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x190ba01f i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x516e4e42 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x8f012665 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x726ee9a2 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x94873e83 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x9d3dbfd1 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x24aace29 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41c77bd7 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x470d28ca mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5550b160 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x72376ef7 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x73b6e7ed mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8005daa1 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x97d01b4e mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x993a236a mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa76832d9 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xab965ea8 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xabbaef94 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc0cd676c mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe40605e5 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf7e8c329 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfe038d97 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x7a7caddd st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x9e2228f9 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x16a6fb0d iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xc5b46422 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x19309556 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x7a1c3eea devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x8f9b6e31 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xf0a86379 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x3623cdb1 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x76946157 hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x77e6e5c3 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc3042204 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xdbf92591 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xe6b82b17 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x23a7d510 hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x541702fc hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x5ea6178c hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xaf1471a3 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x167dc6e1 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1a4ee0e7 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2493f0e4 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x26614326 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5366ec27 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x93bdd25a ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xcd644d46 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd731c82d ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf33852ee ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x3f6cb10a ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x46d00b37 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x9bd2ff12 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xb0ccc0bf ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xeff3554c ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x426c26bb ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xd1a063ff ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xe7e6c468 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 0x07b53661 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1206f93a st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1a067a18 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x22ab39b6 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4e2c7fbb st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x51d03d68 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x65dc0e9b st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x700d2e74 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x80f8ccb7 st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x95a19b35 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9894c452 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa6559fa0 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbe2e163f st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc2d18bba st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe8380e6e st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf56061b9 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x60264e0a st_sensors_of_i2c_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x860a34f2 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x523b60b2 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x6a3c1ed9 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xdf6a070b st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x24532d50 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xa4af79cf adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x8273d793 bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x0dd46e07 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0x17f927e5 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x299bb984 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x2d646e3a iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x53e2de81 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x63757e45 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x66d6535b iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x69274adf of_iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0x6bc5e140 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x7428420a iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x8da8f2de iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0x922f9d77 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xa393d1fd iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0xab09c16d iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xae40b726 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xbcef483c iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xc119b623 iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0xc47791f9 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xdb43708e iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xdb82196e iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x8afa61ba iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x254798a0 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x36e735e8 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x4b8b7b8a iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xcccebec8 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x04bcf056 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x89536028 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x9fe17ac8 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xe43a8887 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x10adf176 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x8626f1b2 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x30a6623e bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x4be4249d bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x5ba90a90 bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xaa9a7a69 bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x1acb0208 hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x3289d35b hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x426aa3cf hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xe33b108a hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x66aceac2 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x883da220 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xd5d14245 ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xdc91132d ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x6a3bb34f st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xb7524acb st_press_common_probe +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0a7fe0ce ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x281c0ea1 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2c899754 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x321918db ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x446077e8 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4a706d42 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x58432719 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x60f103ad cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6266b53c ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6d923e0b ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x761c485e ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaaa4ecd5 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb63a98a0 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd2f327c5 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd5cd913b ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdedd28fa ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdef3a030 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfde42575 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00163966 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x025e7ccf ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02a00d46 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03108a12 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x049ace30 rdma_addr_find_smac_by_sgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04ec49f3 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x066c19c8 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06b4030b ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0847a1d4 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08b83a22 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a1e62fb ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a94d3de rdma_resolve_ip_route +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0aaa7c53 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d59a4d2 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d81f332 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0df15bc2 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e2fa1c2 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f5926a7 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11ed860e ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12a28cab ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13bb85e9 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16fa4ca5 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x177c4657 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x178f3d21 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19326e29 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19384458 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b081a2b ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d3c482d ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1dbf243a ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f60c4bb rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f76b879 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f7be707 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20dc4b78 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x222117e6 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26ea37d5 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2770ed0d ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27a2ef89 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2aa73a87 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ebfbe30 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x355bc48b ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3690a344 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36a0fe86 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36b0f183 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39b41ec7 ib_destroy_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cb25fb4 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40b066cc ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42264fdf ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42bccca5 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4647cd15 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4846fb70 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a75c77f rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ad0160b rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cd305e8 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ce8e9aa ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5093a52c rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53153316 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5347cc38 rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x539855ae ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54b5ed76 ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55e3ef5e ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x576fdbac ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57b58109 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5826bb45 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x585271c5 ib_sa_classport_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5af65d09 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5bb07c0b ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5bcef306 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c98bfd4 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f46ee17 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f802537 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x665c85a4 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6867b83e ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6886996d ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e291333 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x707aaac7 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70900076 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72984e7c ib_modify_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76805a83 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x774f5ffb ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x799a816b ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7da8d5c1 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7df81f32 rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f2fd678 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80e7973e ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x822fdf17 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82f808b2 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85a81f14 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88623d6f ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c155b5d ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c7735cd ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8db1a9ec ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x915770ff ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91b7ac5a ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x931e77a1 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9476a907 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9801fdd9 ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x991d0252 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b9cf9a rdma_addr_find_l2_eth_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a085d60 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a4a0cbb ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e7aad54 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e9a2d9d ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ebe51c2 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa094dedf ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa245dc80 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4d09edd ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa538ac94 ib_destroy_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaadec1b1 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab8b6caa ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad3e3466 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb02a961e ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb22d10e1 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb686dbd6 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb92f8b3d ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb97187d5 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf4f1d36 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbfff2471 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc12c4a76 ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1facab9 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5fd2db7 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc60a122e ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc62fb5a2 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc691f2ee ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc700f82b ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca8ed5dc ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd20d309e ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd22eda47 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd355db81 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd50eabc7 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6c4d074 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6ec012d rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd706e08c ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7c11e9d rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdaa54616 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbb077ab ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde9e1b2c ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8585381 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeaae2316 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef4f605f ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1f80563 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf256080c ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf44750e6 ib_create_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8da6cf0 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfebc99f4 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xffb03dee ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x426a8730 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5397d778 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8f0992d6 ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0f5b4829 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x18c07f7f iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2ac8d23a iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3648a6ce iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6fd139c0 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7bf77848 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x98ef06b2 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb39bb330 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbb60ce24 iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbfb5cb50 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xca89c96b iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcbdf9c60 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdf91e5f2 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf69c0d86 iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfc461840 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x19e10318 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x20b8363d rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x236d9769 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3359bf0d rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3bf3a4ec rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4b4ac484 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4fd78945 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5434524f rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5879cc53 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5b5b2161 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5d4a58aa rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5fbe2359 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x688b5b7a rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x99b39d3b rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9fa2fa74 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa120a3cc rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa32e312f rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa5d56800 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb64d6165 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xde85c31a rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xef710a24 rdma_reject +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x14f50d78 rxe_rcv +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x48f93f58 rxe_remove_all +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x7106a5ef rxe_add +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0xa007448e rxe_remove +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0xe2e19b2d rxe_set_mtu +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1081b40e __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x168ef5d7 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x984117da gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x98f362ad gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa6e39a73 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xae5de0f6 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb09b4a76 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xcc01cc10 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xed6db5ba __gameport_register_driver +EXPORT_SYMBOL drivers/input/input-polldev 0x43816f01 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x58190627 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x621a56c8 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x75a47694 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x987ffcf0 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x026a3188 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x4f078de3 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xa7d49dc0 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xfcd41b4e ad714x_probe +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x6a6e9cda 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 0x83a4ce57 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x00cb6876 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x088bd492 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x16e32e23 sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x6d7bba8d sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x82c83219 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xb266deb4 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xf5961aeb ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xffc036eb ad7879_probe +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x020f6259 capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x54154bc9 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x879772aa capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8d725f0d capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8e493828 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbc0edcc1 capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcee34d68 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd526bda3 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe44fbadd attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe805fc12 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x05966df1 b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1c7c35fe b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1d4b3f73 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3400a62f b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4158c1f9 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6507575d b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x65378968 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x727f6332 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x72b328d0 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x86ab47de b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x93dd821a avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa64e8fa3 b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd4eb49e2 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd6340952 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdb52dfbe avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x0888c993 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x126c1bfc b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x1f3c5158 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x78a9bc0a b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x9f04acf5 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xa3f75a63 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb4c753a7 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xe4382066 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf4f6a594 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x0c3bdb73 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x353c0dd1 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xeba7ce4c mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xfc782174 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x9891ae05 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xa8d36747 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x7a1e9014 FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x8bc4b67f FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xa093f05a hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0ec1296 FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x05954786 isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x2d7ed34e isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x38047ff4 isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xc4dffb0d isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xd58e7492 isac_init +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x18d6160a isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x26f41e8b isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x539c6106 register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0243a960 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0a32a5d2 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x27a8defa mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x285fb6f9 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x288c6283 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2fd5ec86 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x41a623e6 dchannel_senddata +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 0x5beffc36 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x684a8108 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x74ca3d7b mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x76be5a0a bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7a27e51b mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8478fe10 mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8549d8d0 mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8d9e7000 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xad26d4fb bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb2b88770 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb3b64a9c mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbd17f10c mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc0f7126b mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc1c3a6eb mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc4a09d95 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc525fd78 mISDN_clock_update +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 0xdd125de0 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe15bfe4c recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf4d32112 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf52204c5 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf84ae11f mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x20ca0d65 omap_mbox_disable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x3bf85120 omap_mbox_enable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xafd85492 omap_mbox_request_channel +EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0x21c7828c bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0x3361c614 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x66d28e22 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6969b5d8 bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6a480853 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7b55ca4f bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x9e8b3cee bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaace0bad closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0xab2d2b84 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xad29a6f5 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaec09a2b bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf77343c bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0xbe2ec5cb closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0xca580595 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xdb3bc3ab closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe47e0829 __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0xf8fd4bac bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-bufio 0xa7978f56 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-log 0x1660f9fb dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x2ebb85e8 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x7ce412d3 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xb82f4f68 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x0c0a94cc dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x0e71a6e8 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x12909a43 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xda54ab90 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe82e456e dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xfd4e456e dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/raid456 0xf047d559 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1d86b127 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x485da3f4 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x68c53fc8 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x69d4b53b flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x72daa0a3 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x87df665f flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8e5ff4cd flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x943615d3 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa018b9d7 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc9c8a2ac flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd2a0c11c flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf6e242eb flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfb9e5741 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0x34c6c72f cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x5e68d151 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6cc7797c cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0xad886891 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0xeb83c9b4 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xb0fc97b4 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x51001b91 tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0x790c7a2f tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x01b0a3fc dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0406338f dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1449629c dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1f523cee dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x30348bf1 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x344908d4 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3656cb10 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3838a56b dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3ca8da35 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3ef9477c dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4f64f601 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x629f9d31 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x72180695 dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x73b6ea1c dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8633f37b dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x86e120df dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x87d9ad3b dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x880aeeb7 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9366169b dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x942dbf45 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9850cb88 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x991855f2 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x99394724 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9c19040b dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa05b716c dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xab0388d1 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaee7d1c4 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb4ffd987 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc9a80488 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcaaf3892 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcdee76eb dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb1a8bd4 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdc094c39 dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xddf90d42 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdf4d82a1 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdfe81212 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf48116c6 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf58280d7 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x744a1040 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xaf667607 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x1bf84d19 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1bb6d7d7 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4e9fd6bb au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x66f5ce25 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x838d06c2 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc86ae82a au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd783ee39 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe1ca70fa au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe62602d7 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xfd2468dc au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x150831e4 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xc135a383 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xe54d5c0f cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x3c1aaf00 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x9dc8e31d cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x0a60af03 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xf9024a5c cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x3ff45088 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x13858446 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x37c96e75 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xdb0ecd71 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x0dc716f2 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x765d8cd3 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xd1892713 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa7a07ec3 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xaae84d85 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xad03c04b dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb983b5a9 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xff86f212 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x026abf45 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1784e27c dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3806bec2 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3ac79fa2 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x410e10aa dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x426efde6 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x584122a9 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x58c82894 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x968968ee dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbe943f4e dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc6aeea83 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc9652825 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd2aafd4d dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf5852c9c dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfc28b7dc dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x570d5f94 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x678e4850 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x67d7d568 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x97e3d8c6 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x99c0797e dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x9f5f7cb1 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xaf8171ec dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7626d591 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x85ad2484 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc359936b dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xe8b44169 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x9a8c3ffc dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x0dcfbf2f dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x0765a3b4 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x65430db4 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8ad87a47 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xa651d564 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd4d9ea4f dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x2fb8d458 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xfe00e5aa drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x1462188d drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x013c50a0 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x2a5fb0b1 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x3eb05860 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x4d20ce94 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xc6045179 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x155baeb6 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x6f3f4c80 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xa0cc76d3 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xed4b7396 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x280abdfb itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x80a08557 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x731b1b1b l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x220f9a17 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xd32ce872 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x8c1ea6e5 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x0bf929d4 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x1561fd53 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xd8e6254d lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x83c82f47 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xf2f29f83 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x3ffceecc lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x24effa71 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x2e387510 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x4fb6b074 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x6bbc5fd6 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xb3cf5e86 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x5676dcf2 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x51cc26a0 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x6960f7eb nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x830ce0a7 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x37fb830d or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x98af0340 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x018a852e s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x0c625314 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x021f6373 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x4470a9ad s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xae9fb872 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x1f69e016 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xc40a04f8 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xe7188fbd sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x62cbbfeb sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x136c3731 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x3214914c stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x520bf937 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xd96d7d3a stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xf63d5a7a stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x34d3b0de stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xd790fc7c stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xf3426359 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x7feb2953 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x624281b4 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x0e75aeba stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x29041d20 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x94efa919 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x24292765 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x85bcba02 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x35fba624 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x51f7d3b5 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xd2367a64 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x648782a5 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x9f387068 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xa3314bea tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xe5c513f3 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xa0c4fd0e ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x010c5609 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xea019518 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xb2a8c578 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xb24c48b5 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x108b79fa zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xf310fdea zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0ed335a2 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4db498e1 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x566f992e flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc65dd8c4 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd2062da2 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd4209920 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xfd70a84b flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x3c913016 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x43b308eb bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x589aa18f bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xaaa8ffd7 bt878_device_control +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 0x563748be bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x56ba9dc6 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x667d03bb bttv_get_pcidev +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/dst 0x0078f239 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3bca1ca6 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x408da4b1 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x428d22cc dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x510ca2d3 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5d6c5dba dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6d200094 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x79b0f113 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8ae86561 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xabd729f7 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x0e4c507f cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4b5a8c20 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4d0cfa58 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb3e61044 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc6cbd865 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x2bfef907 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 0x07e225ae cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x38c0ddca cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xafe72d7d cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc6e3cb2b cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xcb82750f cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd50b6915 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xef08a83a cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x5fcc7662 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xd5d5cb33 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x28a6b6ca cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x3f0985de cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x9936d5d0 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xd34962db cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x105fecba cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1d60ecc4 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x228f53fa cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2a3f01ad cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x6cf3252a cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x99530085 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf299fe11 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0f1688d4 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x15797e7c cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x32ec193a cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x370428d2 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3e7e3ed0 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3fd7c4ad cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x48606b9b cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4c42b373 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4f5b584a cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x507b7736 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x516722d7 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x70e8238b cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x750ed813 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7aeebc14 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x89a6cdc8 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcc73a9a0 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdfdbb3b0 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xece6e8f2 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xefb2d373 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf2a790a8 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x12e932a0 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x32d98cd9 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x465457f4 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4b1e5d18 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4b9b2a82 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x913f1883 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa50b9727 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xac92f6b3 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb5da75b4 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb6afa141 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc0e99c54 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc1ece6ff ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc2abe1b3 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xca4720c6 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xca58009e ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xff082159 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xffd9aaaa ivtv_set_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 0x2f3e9195 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x442a9f56 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x485d24cf saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x705077e1 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x85ac2c9e saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8fdb174b saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa4230ec7 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xaf1f1977 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc721a9d8 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcb9ab04b saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd265ca0f saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe56883fa saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xeb12fdb9 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xdf7e223f ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x04d4312b soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x1a1bdcfc soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x53a757da soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x84311c6d soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xdc3f0eda soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xe7efa906 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xfb74e4c7 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0x3dd78888 soc_camera_client_s_crop +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0x7c3dfbb3 soc_camera_client_g_rect +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0xa7deffe0 soc_camera_client_scale +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0xdceea91b soc_camera_calc_client_output +EXPORT_SYMBOL drivers/media/radio/tea575x 0x0a7190e4 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x365e485d snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x743d74cd snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x8ee9eb7d snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa9c9d060 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xd6d03e24 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xedbfd8fe snd_tea575x_init +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x275f5c33 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x322fe162 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x39524e71 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x3f109803 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x8a0feef7 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x9548dc3c lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x9d46a47e lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xf10432bc lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/rc-core 0x11b17005 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0x4a501961 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x091b42bf fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x85485152 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x0c737134 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x5663add3 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xdabfbfee fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0x0f7d40c0 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xb573ea35 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xb18fc4f0 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x2aa0c175 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x9a932eb9 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x0431ea47 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x5bba8aa2 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x414f253b tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xc4a6f2a5 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x38cadcc3 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x6451b7e4 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x264cd266 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x5263784d cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1e2f21ab dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x216e5798 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x76b77060 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8e292508 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x929b63d0 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa6d39d69 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe201dd77 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xee30df78 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xff8a8916 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0ff42ac5 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x52240a3c dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xce287f96 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe121721e usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe5b4f064 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xecfd5ecf dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf3f37692 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x3013c417 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 0x14568137 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x48dc6466 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4acaba15 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x64bf0b20 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x663cc89a dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7bb424a9 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x89a60bd8 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8c45de11 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb452b888 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xda386883 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xeb8e0df1 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x0f6c7900 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x998210db em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0269a886 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0a2e4d64 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0e271ee0 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3454b9e8 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x544b8da7 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7c7539c0 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa74be666 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xab5211d9 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc694f20b go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0635855c gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x17a3864e gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3d22ed47 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x89a6fe6d gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa3f215f4 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa9b4ccbe gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd39cb172 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xdb49fea3 gspca_resume +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xc4977681 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xd33cab90 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xf3b86224 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x99e404c7 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xb223050d ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x052aa3cb 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 0x4facec14 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x874dc83f v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x0ab84db1 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x61844835 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x994063ca videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x9c0f893d videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xe96bdee7 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xec97e798 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x4901d1bc vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x92ff564b vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x043ea7e1 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x0f457e33 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x6309afd4 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xcd6ccd4e vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xda27ff43 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xfff2dbcc vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x5ed85fc8 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x01e95020 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x03798cf9 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09aed9fb __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0e7d488f v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x14913ec4 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1e1394d8 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1e627908 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2140ce69 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x23849205 video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x26fa4720 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2a18d5d9 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x369c0407 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3ad02e35 __v4l2_ctrl_s_ctrl_string +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 0x3e9f64b7 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x40cd703d v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x413f80a7 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x443f9e16 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4be5495c v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5350db6b v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x58e01b1a __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x600004b4 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60b52256 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60cec2d8 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60d6ee4c __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6b7e7065 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x708a8e91 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x783c79e0 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7d822a19 v4l2_of_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x863019c4 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x892c2822 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9096daa5 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x992a940f v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9bec6b8f v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa135f59c v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2bddc1c v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa339c746 v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa531265c v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa7189f77 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaba2e3c4 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae795a14 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3ebd731 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb4179eb7 v4l2_ctrl_sub_ev_ops +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 0xbc7e5906 v4l2_of_free_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbdd31ba3 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc353491b v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc4738e5e v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc8ee2944 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xccdbd652 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xce52e425 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xce86475c v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd059ff7c v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd07e22bc v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd4efbaad video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd6b0becf v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd82bbb19 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda566dac v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdad41740 v4l2_of_parse_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe29f853b v4l2_of_alloc_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xebc7c03e v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf04b9852 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf0b78d06 v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf6a6d6f9 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf848101b v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf969d7eb v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfbc4a0be v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/memstick/core/memstick 0x36855b41 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3a5c854f memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3f38ddac memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x54165c90 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5b5c17c8 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x844130d0 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8b944552 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8ba229d0 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8c9b5da4 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x97d8c064 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xaf711c95 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb1a79756 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb5b9f5ab memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc2ca7037 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0421a162 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0f74b44f mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x158ea032 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x15e5ea70 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x16fd68e7 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1f18be47 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x28a3ce3b mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x30fc5076 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4147cde3 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x48253f88 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4ee8c92b mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5208558a mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5beb989b mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5e12ac4f mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74222118 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7d82534d mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x877b46c4 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9066b15a mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9b6da1b1 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa76266e5 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbb3bced4 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbfb9abfd mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd6458c05 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd270dbd mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xde53df1e mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xee3168a0 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeffca1ad mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfb1f404b mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xff03aba8 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x08250fe0 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x144cea55 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1b1a05f6 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x299220e4 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2ab1447e mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x392f3308 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x44f801b3 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x46a4eb34 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4940b1b1 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x495ffd86 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x563f5dbd mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x64267edf mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6b211c60 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9aae5ee6 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9beb696e mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa1545787 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa91cc1a9 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb1218b6b mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb49d6cbf mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbb0ee997 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc819765b mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcf883c32 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd1bf5cce mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd412fe8b mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf9b8f4c6 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfa6b6889 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xff35e1ec mptscsih_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0x0fda6c05 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0xa8a98e4c axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0xbd80e241 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/cros_ec 0x1668d299 cros_ec_suspend +EXPORT_SYMBOL drivers/mfd/cros_ec 0x5665efe8 cros_ec_register +EXPORT_SYMBOL drivers/mfd/cros_ec 0xafd2fe45 cros_ec_resume +EXPORT_SYMBOL drivers/mfd/cros_ec 0xf1f0f099 cros_ec_remove +EXPORT_SYMBOL drivers/mfd/dln2 0x66326272 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xa5b65409 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xe82d8494 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x02f1cf5f pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xc7b87eac pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0b64578e mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x13676197 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x34342686 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x35141865 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x74a764d2 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x79f52d85 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8a8f7cfd mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x985d7f21 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb2c4217c mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe3fda31a mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfdaf95eb mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/qcom_rpm 0xd042c9be 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 0x2a4cbc67 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x491e838f wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x61bff248 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xa63d3e85 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0xd67c81a2 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xe4463a3b wm8994_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x18a7e0b8 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x22b822f1 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5eddc54e altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0xc19d62d4 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0xc2c8a99c c2port_device_register +EXPORT_SYMBOL drivers/misc/ioc4 0x6047c7f5 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xe6692a2f ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x0dd5ebcd tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x4523099d tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x5420386a tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x811dc3d1 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x9752a261 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x9b521e10 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xadedd9ea tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xafde6822 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xdbdc7e1d tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xe88aa813 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xfebdd447 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xff2fccd7 tifm_has_ms_pif +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x22c4de4d dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x66fef30e dw_mci_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xca4f4deb dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xfa0e69c6 dw_mci_suspend +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x14615750 tmio_mmc_host_free +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x1ae3f83c tmio_mmc_host_probe +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x4720c6d4 tmio_mmc_host_remove +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x5cc7eeff tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x72683793 tmio_mmc_host_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x917973c4 tmio_mmc_host_alloc +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x0f0520d8 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5b778775 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5bd6e127 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xaa039ea3 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc75444b2 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd7baca27 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff1f6078 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x775fd33b mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x3cc941fe lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/nand/denali 0x2653a7e9 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/denali 0xa980d62b denali_init +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x2bd372c7 mtk_ecc_encode +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x5437e775 mtk_ecc_disable +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x67dc4d5c mtk_ecc_adjust_strength +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x6df58afb mtk_ecc_release +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x76e53683 mtk_ecc_wait_done +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x77ecf26d mtk_ecc_get_stats +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0xa008c028 of_mtk_ecc_get +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0xb5bec54c mtk_ecc_enable +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xda9af031 onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xecb13fb3 flexonenand_region +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1e1dd119 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x54954a49 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x605fbdbe arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8f92899a arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x98dee152 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xab2bc31d arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xae4ff610 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc4132efe arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xed3acb01 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfa14fc56 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x669ac3aa com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xc1d62e8b com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xd285ce74 com20020_check +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x226283e9 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x26a38935 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4b7e5184 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5be77f67 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x76609347 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7c9c0e5d ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x901574c1 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x90626087 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xec65414f ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf824a58b ei_close +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x8b9adf9c cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0697a1a3 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x12f2bf48 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x175b659c t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x49c9d26f cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5e8d3bed cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7d6d7838 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8b4414b2 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8cf12f42 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8fe72a40 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x928f2a69 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9aaf2065 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbad516fc cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd3fb17ac cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd603e0e4 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd7efd349 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfdd12eb9 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x04b76d94 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x04db83c3 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ec3aa1a cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2ef0f41d cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x31ae9f94 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35de4629 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x448f3b34 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x44ecff35 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4de31aaf cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x607fe39c cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6b26c9c2 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6bb1564a cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6cda2603 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6ea75aee cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7d58c108 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7f7c1770 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7f85641f cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x830fb314 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86b663bd cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x95880491 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa0abd924 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa924fbc7 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaee8393d cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb429ac98 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb524afde cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb71f0534 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc0827a0d cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc531fffc cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc86d1fb3 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcc576999 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00a4f2f cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd7fdf24f cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe57eac32 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe68a9aae cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe74f3899 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xee9fbeb9 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x10ea3458 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x36410bc5 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x589fbed3 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xe85e5ce5 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xf6c71990 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x34c29ab4 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7abe63a4 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8a1f6bc4 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb15b708d vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb1f711c4 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xdb675f05 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xb0b6ff2b be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xd23648ec be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/gianfar_driver 0x79f28897 gfar_phc_index +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x30996080 hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x3db51ed1 hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x77802e25 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x77c8eb27 hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x90f1948a hnae_ae_unregister +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/intel/i40e/i40e 0x42637ef1 i40e_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x7038370f i40e_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d342eb2 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fc3aef6 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15c2a68d mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x192d06d0 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c888441 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f2d0cd4 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27437599 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x292072ff mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36ffa052 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c37a3b8 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e1b606c mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59b08b65 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a988ce1 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d6004c0 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fcbeda7 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x641013e7 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64553911 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77467480 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fa24509 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81f6b4b0 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x825bf6c9 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x862ce82c set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a2b924f mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f8f46e0 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90057d14 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90d66851 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ad3b31e mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0f083bb mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad6d4621 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb812ab0 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcb3db0a set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3025992 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdeefaf3e mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8a6b29c mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf77eafbb mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf78fc284 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8f98ba4 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf963e55d mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb49f4e9 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb66acc9 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06cceb98 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07b93a6b mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0946454a mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10182992 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12f25e41 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16814e72 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ab93877 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1aed7f75 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f9cabd9 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ff6dddf mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26774c10 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3804b1bb mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3bd58b38 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3eaca1fa mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4abc5b64 mlx5_core_create_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b54743c mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bf5453a mlx5_core_create_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55f0644d mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5963f25f mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59f5a99e mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b97c112 mlx5_core_destroy_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x655c1218 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6817a535 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70e38a9d mlx5_del_flow_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71bc6c6e mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71d4394c mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x738a4d76 mlx5_core_destroy_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x788a3e1f mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x795dc6ca mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b3eae65 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86407a0d mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88a9b20d mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x950b2446 mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9562cd8c mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96b55b9b mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99ed8d9f mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a80d277 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9dfed1f8 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa56d7b2c mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5ba105a mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadc56541 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaec822b0 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf9cb9ab mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc036ee7c mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1038c02 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2148ad2 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc336b599 mlx5_add_flow_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5acacd4 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5b2da01 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7e10bb4 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcccd78a4 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd0f2ee2 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd066e0f5 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd99b6480 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcdde2be mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd82e768 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8a729ba mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf15e917b mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4122940 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf59fae30 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf63ab8af mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0223a67f mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ab0c687 mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x27281a3b mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x296bc461 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x39a96739 mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5212fb74 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x67cd9644 mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6d6c1f6c mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x714dccc2 mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x72a05371 mlxsw_core_resources_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f539b8e mlxsw_reg_trans_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xabb55e88 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb2e2483f mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5ff38e0 mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb5c8545 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdbe9cd9f mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xec51e246 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfe1e6330 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa57bf2df qed_get_eth_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x00f753a4 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0ff193de hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x17e9316c hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x92a6b14d hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe1985a0a hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x05c355ba sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0c18df0a sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x5c1449be sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x5e02fe56 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x5feaa1df irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x6ad8901a sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xaad44eb2 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd67f3d43 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xdbea4ba4 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xff5a2a7f sirdev_write_complete +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mii 0x02a91b7a mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x2e986918 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x8e871835 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xa48717f4 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xcfd6ce2e mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xf589816f mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xf6d8f46a mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0xfc976cc8 mii_link_ok +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x344eb6da free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x5e3f5029 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/ppp/pppox 0x38672cbb pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x5441cbc9 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xad8c38ef pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x46fcf6a8 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x36b93552 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x57deee2b team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x7e110903 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x87adbbf1 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xbb4778f6 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xc53ba8e0 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xdf953f73 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xfc55ae9c team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/usb/usbnet 0x5b0ade4f usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x614a582e usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xd33fc86e usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x02e22842 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x082d096e alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0f880f83 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2300c266 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x387d167a register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4bc9839d hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x60363d50 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0x772995b2 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8444a248 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe648622b unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xfc94f521 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x385b5552 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x18b14043 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x24692122 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x34861e8d ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x39497c28 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x998ad305 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa1974c9f ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa28b9469 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xba9a7d49 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc2d167ab ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc2ed32c1 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcb34d969 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd2245d13 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdf2ab99b ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x160e1cd8 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x18644040 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2a2f4f1a ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3a76f79e ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x66d600e7 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x86b7d2fe ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x92bbee97 ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa99bb338 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb3804fe7 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc0ccf4b8 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc3aa893f ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc7eac11c ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xca962fa7 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd4551e89 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdf420a6a ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf392b5a2 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1861971e ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1dbe5934 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2a86090a ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x43004974 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5b64bc0d ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6c38bc63 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x82afcae6 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 0x92287a7b ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x93474649 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xab7db56b ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbb7a7325 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x10f4bd1d ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1329c2c8 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1f7852da ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1fa34746 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x21d92c23 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3125546d ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x339d35f2 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x34674383 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4757223e ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x539a2bbf ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x547431ec ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x56ffbb86 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x62284180 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x66f269d7 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6c3b9992 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x89bb6a8c ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa042ff86 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa6036e9c ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaa4ecfa1 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbad31865 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdf4c3f94 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xeb22e1d3 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfa9756ab ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0065280c ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x006e320c ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0082597a ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02b79da2 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03e67504 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05a62099 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x063392e1 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a3d5877 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0df5377c ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1060a152 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10944ed1 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18864958 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a5b4aba ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x211d4bbc ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x245a0a82 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25811861 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d27a874 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d2a37d4 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2fbf3cd7 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3068acba ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3212f1e7 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32fef60e ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34f66d34 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36d14454 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37420c04 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3bc32266 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c8b8de5 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43df6e5f ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45a60f51 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45ab6c0d ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4680187f ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49e600ad ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5155fa96 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51c3f5fc ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x524ebe07 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5346b47d ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b157820 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x627f92c1 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64505738 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64a212e9 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x671274d4 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c12ee19 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e4c66a5 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ea7b818 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6eefab34 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f97c16e ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f98c285 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7079d007 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x717e6778 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7567f1d3 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75e4cfad ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76aa4bc3 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x794e07a2 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7efc2bd3 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f8af08b ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81de94fc ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x825bcd30 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a3d3f43 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c2c16e7 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8cac6fa6 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8de5f650 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91cd0efc ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x955b68d0 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96b6caa0 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99fea5e5 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b938d1f ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f1f5449 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa19fc20a ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa249982f ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6784df9 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa1f3930 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xabe6e578 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae913cd3 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb030d07b ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3a2ce17 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7bb180c ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9726dcc ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbcea10c2 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd42888a ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2ec7c50 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8254900 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc87bd005 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc994c0f8 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd01dc96f ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd186e6c6 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2c413a5 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd77f9ee6 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9c95dcb ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb8df2bc ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdefbd843 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2130ef3 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3baac78 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe606843c ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7f67981 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe92369fd ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec766efc ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed1aea20 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xedf9ccc4 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf125131c ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf20f01cc ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf26ba00a ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4d2ae2b ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf563331c ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9fbc874 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfaf1d0a3 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x6991d303 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x80260e5b stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xb050ea08 atmel_open +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x058547b6 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1e886708 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3e1026da brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3f6cf9a5 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4280505d brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x503e875d brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x53706796 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x72ca6a39 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8a60318e brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb3cd9926 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb4ad7b8a brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb529bfdc brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbceaaf05 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe0bedde7 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x186625fe libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1908434a libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1b29b132 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x561b5b1f libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x64328c5e libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x64ca04a3 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x64dd2c84 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6a1ec2f9 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6a41aa01 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6d04f220 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6e820adb libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7402b4a1 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa234f3fc libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa9e54ba7 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xaed19414 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb753b6e5 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbcde4891 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbeb41847 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc59a80ab libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdd42219b libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf69e15a0 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0010b905 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x074d8034 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x096686ff il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x097d1863 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b92e806 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0caef46a il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0def63b1 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x10afb09d il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x17612587 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19167319 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1949b7f5 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b72d91b il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1c30fa55 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x21d29ce7 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x229e5b7c il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x24bd05c9 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2a2e9fc1 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x30030159 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x305edc2d il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x311b5309 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33aa80d1 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33f061ae il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36a79361 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x391908ac il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f3c2707 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x40a98243 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x43236411 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x43b86cbf il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4b2b6866 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4baf4617 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4c3ac897 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4e680462 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51762b45 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51f24047 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5240bff5 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x53875da7 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55c2c36a il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x569e4f35 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x57880cca il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ad9102f il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x60b0755f il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x624cd7e4 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x664436a6 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x68733f2e il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x68af6890 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a103b1f il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x73485bc4 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x75f10b23 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e06c4e4 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7f7d024b il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7ff4ec38 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8124c4ef il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86aeb37a il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89836a6b il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b2dc90b il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ca103be il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x91fc8f01 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x950a7138 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9ca78714 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9d22c1b0 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa317a3e2 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa9239c54 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaa3196a0 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaad51354 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae756cc8 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaec58407 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb1b38a8b il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb4c7e52d il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb530f0df il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb6f213ea _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbe03c688 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc04dfe02 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc3f83819 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc5c5a73c il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc726afd1 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc7d5c69d il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc94a3239 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcaca457b il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcde47ea7 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xce133bb3 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd40e1df1 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd8044f13 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdbb730b7 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdd692f1b il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdfee61de il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe11e9324 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe16c2178 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe2e2072f il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe659ae08 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe9b1ae76 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeb1e84b8 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xef888573 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf1efd590 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf295cea8 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf2cb0dd9 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf30387bc il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf3b11e18 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4226db6 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfda78746 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x26931463 __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x33c2544a __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x550317b5 __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa44e2870 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xab9db4d3 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc44bb084 __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xeb5face7 __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x026b99fe hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x03a0e765 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x03a8af62 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x11aed999 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x21e4e027 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x25f0f588 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x39f0cc9e hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3aa873f8 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x49674b22 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4e00fd8f hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x53297a8f hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6b8bd632 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x730ce78b hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7ddd0311 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x85cf3da1 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8c0462c3 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8eccc197 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8fc0444b hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x969f1905 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x985d9170 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xab2a9a2d hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd0776fa5 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd5d56c5a hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdd452cf6 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xea075bc1 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x01828c1b __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x046cfdeb __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x38114079 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3b4cfa3d orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4213c512 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4e7e2247 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x512f8438 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5bfb0c47 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6261e62b orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x934512d1 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9a1552bd alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa8720eef orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xacf71871 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xbfbe8fbb orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc20fc9c4 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xed952972 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xfd290872 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xd241befd rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0623513a rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0bbc6169 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0c944b04 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1881f61a rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1c521442 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x215254ab rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x264fd794 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x30d0af54 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x30faa6cf _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x422ab19a _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x42e6ef92 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x466df597 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4c1b70c3 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x53ab6ad3 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5631a359 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x61e44a0b rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6a38c429 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x767ad941 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x76befe8b rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x80fd63cd rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x83ab47a3 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x89248b77 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa20f315b rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa43087ea _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa63bb626 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xae70d217 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb4fa3950 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb6cab0b7 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbe70071f _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc40e560b rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc65742a2 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc73962ed rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd84fadac rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd925c0d0 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdcb468f4 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe5dd83ba _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe9b3ab8c rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeca9a3c5 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf6e7d485 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfe224f80 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xff928a13 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x4cbe96dc rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x8abdcf03 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xe0969721 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xff9b4ce1 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x26ddab9c rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x41e0dd9c rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xb3b6b53c rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf2d9243f rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x103ffb90 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x10bfe3e5 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2c8dcab3 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e97f2cb rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3ebd742f rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x488a45ab rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4979cf02 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4b2092d6 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5a1a0dbc efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6561b839 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x67f8ad67 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x702ceb6b rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x75cb501e rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c889b04 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90c202dc channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90c3f1a9 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9b77a20f rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa0076be5 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa8bdb5a9 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xab4838d6 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xad041b34 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdf063b30 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdfde51b6 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe0985b4d rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe31657de rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe560e9d8 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe796a884 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xec8a3467 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xee15217a efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xef86287b rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf0671572 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x137c2fc2 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x5852c462 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x7a555dd8 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x99c53472 wl1271_free_tx_id +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x16c3ee91 fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x249b85a1 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xb529276b fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x160d42dd microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xce9deff0 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x7cfcd13e nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xc5d8599a nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xe5e4b7ac nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x9168775f pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x50e4017e pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x6584d1b9 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x294859ba s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x6411db49 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xbc70e18c s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1197df9e st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x184e9dd5 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1859f8da ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3afd04c4 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3d1672a4 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4edc4c1d st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9a2eaf09 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9ca6148f ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd0e60457 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdb9302ab st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0a33efaa st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x130fc9e9 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1395c49f st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x25b16eef st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x37ad39d6 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6164671d st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x64bb8aa6 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7ea269c9 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x964b3c07 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa59b1b51 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbbe4f5a4 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc829137b st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe28a92da st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeb770f9e st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf1ac4b22 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf5cf7709 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfce1164e st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xffbceebd st21nfca_hci_probe +EXPORT_SYMBOL drivers/ntb/ntb 0x1f0524b1 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x34055d43 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x5e5bfbbe ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x6194b9ac ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x91391145 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xaf39c413 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xe0123191 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xe7ba2cd3 ntb_db_event +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x05dbb77e devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x01bcce76 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x03d2391c parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x07008f01 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x0a2a2c36 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x245c862a parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x3142bd6c parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x37c2b64e parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x37fb2152 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x3881d2ef parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x56bac8a1 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x748441d5 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x7b3b9430 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x83378bc7 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x8bc893ce parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x8f281367 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x9a01eafc parport_release +EXPORT_SYMBOL drivers/parport/parport 0xbe72f9a7 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xc7353315 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0xc7b60433 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xc94a11ec parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xcb5c58fc parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xcf0980e5 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xd124faf2 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xd59128ff parport_read +EXPORT_SYMBOL drivers/parport/parport 0xddd9c933 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xe5ef4b8f parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xe7965493 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xe99af366 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0xed0c9189 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xfb6382bf parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xfba53edc parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xffde0b3b parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport_pc 0x4c539439 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xd96afb53 parport_pc_unregister_port +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x221eaa09 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x2abb36c0 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x2d9133be rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x32864c47 rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x6c98a426 rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x7119a3ed rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x814595e0 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x889f726b rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xa273cb94 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xca65092e rproc_put +EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0x7ce7cde8 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0x893599ff rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0xa7a4967c rpmsg_send_offchannel_raw +EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0xb0c2950a __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0xd0024de5 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xd80b1d33 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x2eb14073 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4101bdf9 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xdbab1ea6 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xdbc3e5bb scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x04d5cb3f fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x12ad5b86 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x14aad5cb fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x28f095b4 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5d66f435 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x82713a89 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x95e6fb0b fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbb3e0581 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbdbe2968 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd09075a7 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe50013cb fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xea4bab1d fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13706ba7 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1a66f4f6 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1cdbd4d5 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x215ebf25 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x282877e3 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c25bf09 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2dabdd20 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2f86a4e8 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30e7d55e fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x339bc935 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3763b06c fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x40b16974 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x40f82581 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4a97e7d8 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4b8eb8d5 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x51319450 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x524dab5d fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x542704f5 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5be1ac17 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69ae3313 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6aac9ed2 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x735c3bed fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7b0c29d1 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x85495891 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x87ca4cbc fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8b2e6b10 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x928bc2b8 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0b22001 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa30d3cf4 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xac5512a0 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb051d8a3 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb1fadf6e fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb318db48 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb52e0933 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc255a116 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc4dff822 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5386c8e fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0d8ff25 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd107a0a9 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd138715e fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd911208e fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb065c93 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdd04d67a fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5c4e00c fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe6dfe370 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe75a70e5 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea238bb9 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xee6a35fb fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeeda09ca fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf1893164 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x0d5053bf sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x525064ce sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x961471aa sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xefb9ee8a sas_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x068b29b0 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x121f1e74 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x154d43d4 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1e100da5 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1eb442fc osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1ee80f40 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x23a09b01 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x24f8d96b osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2bb8f403 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2e30acf5 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2e6d402d osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2fd037e8 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x315ffae9 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x32729032 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3766399b osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3ae041b1 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x40be012a osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4e72537e osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4e73c89e osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6a686619 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6c8e4260 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x734370c4 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7bad4751 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x808a3ae8 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9e29f827 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb8d88a4c osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb9f5e995 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbba77591 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc2334db6 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcb64951d osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd7c72ef8 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe88ec6f1 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xea6b4271 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xeeabb28b osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf27e28c0 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf816bb83 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfaefecdc osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/osd 0x3880f6b5 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fda45c3 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x85a6b12d osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0xadf3a066 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xce1546c4 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xdd4a627d osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x05a2f15f qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2334b9ae qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x45eb99e0 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4cadcf5b qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x539939a2 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8feb34dd qlt_put_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc8eaba16 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe5fc7eb8 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xea4c4194 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xed39296f qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xed978f2f qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf4bf5b51 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/raid_class 0x0a6a4b99 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x25f56f8f raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xf7c3e73a raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0708f9d7 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x149a164d fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x22f2f112 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2367d582 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3e28ce92 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa292e744 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbc8d7202 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcedcf4b3 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd1e4ea65 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd6f733a0 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf6e24094 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfb1b0ec1 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x148f0798 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x15bdcb65 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x20943cb2 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2107b53c sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x271b02b1 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x36de75b5 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x39762b9c sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x44d09e99 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x45457244 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5e1e87b5 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x664c9a49 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x68d70548 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x697f0aae sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6e6d6f3d sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x77415583 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8ed677f1 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x97b8cedc sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9e952fc3 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa2e1ca3c sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xadd460d9 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xade8f33f sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb2575724 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb74afb44 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb8b3c417 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbcd3d989 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbfd06602 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xca4d02e0 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd644d1ff sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdcb784b2 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x1984d991 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x38f34610 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x5fea9ecc spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x705ca7a8 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa57d6676 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2739955c srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7e17729c srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe124737c srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xfe0d9711 srp_rport_put +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x23192567 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x23b94879 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x2d84ab06 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x2dee39ea ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x39c45d7e ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x50474d32 ufshcd_read_string_desc +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x686d52c4 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x78f6a450 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x9c6cb44d ufshcd_read_device_desc +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xaea3d022 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xb00ba27c ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xc1ed6456 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xf8d89549 ufshcd_query_descriptor_retry +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x58fd5d4c ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xe05a1b90 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/soc/qcom/smd 0x2cb76f3d qcom_smd_driver_register +EXPORT_SYMBOL drivers/soc/qcom/smd 0x6714ccf2 qcom_smd_set_drvdata +EXPORT_SYMBOL drivers/soc/qcom/smd 0x8443ba91 qcom_smd_driver_unregister +EXPORT_SYMBOL drivers/soc/qcom/smd 0x84abd03a qcom_smd_get_drvdata +EXPORT_SYMBOL drivers/soc/qcom/smd 0x8d1fe532 qcom_smd_open_channel +EXPORT_SYMBOL drivers/soc/qcom/smd 0xeda44e54 qcom_smd_send +EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x2f5501c0 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/wcnss_ctrl 0xef11e766 qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/ssb/ssb 0x22559ee2 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x2b0436d8 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x2c302713 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x4a0ac11c ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x4b357fab ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x51f650bb ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x55724bbd ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x6a752d09 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x7bf78ad1 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x84975e59 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x97ca19a8 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xb4f3abcd ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc260043c ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xc2c903ef ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xc3576198 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xdeaa96b7 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xdeb00d3d __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xe4e91713 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xf8099008 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xfb6f1af2 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x08953b62 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x117e71b7 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x122d48a6 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1ee7c922 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x37eda511 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3b709ee9 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3bed8ead fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3d331ec9 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4f9b229e fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6576514b fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9a415290 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9d4b0b09 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa84d33cb fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb7b7659c fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbdbac990 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcfaafdd7 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd4db567c fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xea039ff5 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeb3bc1da fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xee1b9537 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xefa81185 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf5726436 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf834d7b0 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfcb13a4e fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x01a03bae adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x48ff4733 ade7854_probe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x000c507f libcfs_debug_dumplog +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x00c881f6 cfs_cpt_number +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x01fef7b4 libcfs_register_ioctl +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0389f857 cfs_cpt_spread_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x06443cdb cfs_wi_deschedule +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x08d9841f cfs_hash_bd_peek_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0c68bc45 cfs_cpt_clear +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0d18a8f8 cfs_hash_for_each_nolock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0de6c369 cfs_cap_lower +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0f5eff79 cfs_percpt_number +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x107e6acf cfs_hash_debug_header +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x10b7e9c3 cfs_cpt_unset_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x130d5d56 cfs_hash_del +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x151e7546 cfs_cpt_table_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x22319718 cfs_percpt_unlock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x229c4b06 cfs_hash_putref +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x23e25c18 cfs_wi_exit +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x23f6f445 cfs_restore_sigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x247da28c libcfs_kvzalloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2663147a __cfs_fail_timeout_set +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2aec458c cfs_hash_for_each_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2dbe54b2 cfs_trimwhite +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2e5044c7 cfs_cpt_set_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2efcc0e6 cfs_block_sigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x31fc5082 cfs_crypto_hash_update +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x37175882 cfs_expr_list_print +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x377f93fb cfs_srand +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3c1285bd libcfs_subsystem_debug +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3d5e6098 cfs_race_state +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3ea730c0 cfs_gettok +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4062f92b libcfs_run_lbug_upcall +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x411db754 cfs_crypto_hash_final +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x44688a0a cfs_block_allsigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x44728d76 cfs_cpt_bind +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x44839bbb cfs_rand +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4613e57a cfs_hash_cond_del +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x482deff7 cfs_cpt_unset_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4a99af72 cfs_clear_sigpending +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4ad27c29 cfs_hash_rehash_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4d3b4eaf cfs_fail_err +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4d89e988 cfs_block_sigsinv +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x52b9c7e9 lbug_with_loc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x54b760ef cfs_hash_findadd_unique +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x58a7ee00 libcfs_catastrophe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5a785762 cfs_cpt_online +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5c013b81 cfs_expr_list_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5d73c3e3 cfs_expr_list_free_list +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5df8c623 cfs_cpt_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5e0e7e45 cfs_hash_add +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5fc606ca cfs_hash_bd_add_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x61ed4a68 cfs_hash_bd_del_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x62289d65 cfs_array_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x630344ba cfs_hash_del_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x63be5b7f cfs_race_waitq +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x67398404 cfs_wi_sched_destroy +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x71601354 cfs_hash_debug_str +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x71e3804b cfs_crypto_hash_digest +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x71f662a3 libcfs_debug +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x73d92a0d cfs_hash_bd_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x79804350 cfs_hash_lookup +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x7f4a1511 cfs_hash_size_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x7fda989d cfs_fail_loc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8151c3aa cfs_cap_raised +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x828d16a2 cfs_cpt_table +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x880a8731 cfs_hash_add_unique +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8b8f321d cfs_crypto_hash_speed +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x93361e2b cfs_hash_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x93896a8b cfs_crypto_hash_init +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x940ed192 libcfs_stack +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9879b229 cfs_get_random_bytes +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x98f0e065 libcfs_deregister_ioctl +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9f82f712 cfs_trace_copyout_string +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa28a6757 cfs_percpt_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa2b68b2a cfs_array_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa328af13 cfs_hash_is_empty +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa9088531 cfs_expr_list_values +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa9dc74e2 cfs_trace_copyin_string +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xac0f67e3 cfs_cpt_unset_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xad019238 cfs_str2num_check +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xadb100a9 lprocfs_call_handler +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xae8346a6 cfs_hash_for_each_safe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb238f333 cfs_hash_bd_lookup_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb473e79e cfs_wi_sched_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb56c4c2e cfs_percpt_lock_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb7b53599 cfs_hash_for_each +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xbc275420 cfs_cpt_unset_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xbfde5427 cfs_hash_getref +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc0ea7fc0 cfs_expr_list_parse +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc2911d96 cfs_expr_list_match +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xcb2160d3 cfs_cpt_of_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xcc7e1d13 cfs_percpt_lock_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xcf61bacb __cfs_fail_check_set +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xcf90528c cfs_cpt_table_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd1319447 cfs_cpt_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd5396536 cfs_cpt_set_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd96f406d cfs_cap_raise +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xdbc40be0 cfs_hash_hlist_for_each +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xdce448d0 cfs_cpt_set_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xde83075f libcfs_kvzalloc_cpt +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xdf2789c0 cfs_curproc_cap_pack +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe2f91ce3 libcfs_debug_msg +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe3bf6897 cfs_percpt_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe45b62ff cfs_cpt_current +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xeceac781 cfs_fail_val +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xee92bb75 cfs_percpt_lock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf0246bf2 cfs_cpt_table_print +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf03bdf11 cfs_wi_schedule +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf2456875 cfs_hash_for_each_empty +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf3565b71 libcfs_debug_vmsg2 +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf372d1c2 cfs_firststr +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf6a22985 cfs_crypto_hash_update_page +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf782fbe6 cfs_cpt_weight +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xfa0d98ca cfs_cpt_set_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x0090e935 libcfs_net2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1366b7ac LNetSetLazyPortal +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x19670622 LNetNIInit +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1a60d439 cfs_parse_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1ee5f15e lnet_ipif_query +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1fe16fd5 LNetGet +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x2aa9953d lnet_cpt_of_nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x2ac93e90 lnet_connect_console_error +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x33202a6c LNetGetId +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x3c779ee0 LNetPut +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x3f4f5b46 LNetNIFini +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x46046bd0 lnet_register_lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x473ad33b LNetDist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x48f163c6 libcfs_str2anynid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x50345570 libcfs_str2net +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x55db5324 lnet_iov_nob +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x58a1ca89 LNetMDUnlink +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x5958df13 lnet_copy_kiov2kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x5e91cfec lnet_copy_iov2iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x5e935ba7 the_lnet +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x5fee352c lnet_acceptor_timeout +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x600ff944 lnet_notify +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x61f784b2 LNetClearLazyPortal +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x64cdea3a LNetCtl +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x66d449b1 lnet_ipif_enumerate +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x6aa4cf47 lnet_sock_getbuf +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x722c76e5 LNetMDAttach +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x786b467a libcfs_nid2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7d59a7fe LNetMEInsert +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x81566626 lnet_unregister_lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x83d795e4 cfs_match_nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x85835602 lnet_net2ni +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x8e18dc7c LNetDebugPeer +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x949b0873 lnet_create_reply_msg +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x97f5966b libcfs_lnd2modname +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x9de986d3 LNetEQAlloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xa56de08d lnet_ipif_free_enumeration +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaa414970 LNetMEUnlink +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaa9b477e LNetMDBind +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaacd6274 lnet_kiov_nob +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xad0d3242 lnet_connect +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xade657cc libcfs_next_nidstring +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaf6bedce lnet_finalize +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb3235c5b cfs_nidrange_find_min_max +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb49ab35b lnet_sock_setbuf +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb75f7953 LNetEQFree +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xba5566d2 lnet_acceptor_port +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xbf0760a2 LNetMEAttach +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xc1b6d86d lnet_copy_kiov2iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xc93f35ee lnet_sock_write +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xccc45639 cfs_free_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xcf4eb544 cfs_print_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xd1c2f3e4 lnet_extract_iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xe20e00d8 lnet_extract_kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xe4c814dc lnet_sock_getaddr +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xeaeb6565 cfs_nidrange_is_contiguous +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xec1f56d5 libcfs_str2nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xed93a938 lnet_set_reply_msg_len +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf011b796 lnet_parse +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf1b316bf LNetSnprintHandle +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf30efdf5 libcfs_lnd2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf8a8644b libcfs_id2str +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf94025d1 libcfs_str2lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfa106804 lnet_counters_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfd93a13e lnet_sock_read +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfe7ca17c libcfs_isknown_lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xff445fc4 lnet_copy_iov2kiov +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x1c4bb5f9 LU_OBF_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x375e6f8d LUSTRE_BFL_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x4f3500f7 client_fid_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x653232d6 seq_client_alloc_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xae61cff5 LU_DOT_LUSTRE_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xc997a02f LUSTRE_SEQ_SPACE_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xecee2727 LUSTRE_SEQ_ZERO_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xf1e9c985 client_fid_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xfb1ecfef seq_client_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x4c2ed9be fld_client_debugfs_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x75f1c9f5 fld_client_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xad4950cd fld_client_add_target +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xbb43f1d0 fld_client_lookup +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xde7511f4 fld_client_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xe169c91b fld_client_del_target +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xf50a1174 fld_client_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0x1e34f4bb ll_direct_rw_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0x5ceb2185 ll_iocontrol_register +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0x7c0bb6bc ll_stats_ops_tally +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0xcd3cde92 ll_iocontrol_unregister +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x1fa9027e lov_lsm_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x25b8cc4d lov_lsm_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x6aff8f3b lov_device_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x98c4c231 lov_read_and_clear_async_rc +EXPORT_SYMBOL drivers/staging/lustre/lustre/mdc/mdc 0xcc1913ce it_open_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/mgc/mgc 0xdc287f95 mgc_fsname2resid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x00d003be cl_page_own +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x010a69f7 lu_site_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x034a0709 cl_site_stats_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x035852d0 lustre_swab_llog_rec +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x03760272 cl_2queue_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0765a65e cl_type_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x07aa68bb lustre_swab_lustre_cfg +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x07d45876 obdo_set_parent_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x083942ff class_del_profile +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x08b84776 cl_page_is_owned +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0af4cd22 cl_2queue_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0c378d79 lustre_swab_llog_hdr +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0d1ac589 cl_page_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0e8e7570 lu_context_exit +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0f746562 lu_object_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x10681b80 cl_page_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x109a06bd cl_page_unassume +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x112ab4a0 cl_page_is_under_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x11495519 lprocfs_write_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x12fd74f0 class_config_llog_handler +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x14302221 cl_page_is_vmlocked +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1551b030 cl_io_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x15cf7c04 lu_device_type_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x16ff519f cl_page_prep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x174337d5 cl_object_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x18380bf4 cl_lock_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x18913ba7 cl_page_list_move +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x19316f5a cl_object_find +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x19cfbfda cl_io_rw_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1a78e22a lprocfs_rd_timeouts +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1bbe4618 class_name2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1cce225e lu_context_key_revive +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1d05ef78 class_exp2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1e49a9f9 lu_context_key_quiesce_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1f3dfb0d lprocfs_stats_collect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2170f9cd class_new_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x221826f1 class_parse_nid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x24385b8d class_import_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x252407df lu_kmem_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2547efae lustre_uuid_to_peer +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x275cdc7a cl_env_reexit +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x27f58fa1 lu_context_enter +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x286860f5 class_handle_free_cb +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x291c3530 llog_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x297cf5e0 class_handle2object +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2a28ec51 lu_object_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2c48964f cl_object_glimpse +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2cf8bf6c lprocfs_rd_server_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2d6b07f0 cl_page_discard +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2dacb5eb cl_page_clip +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2efe1259 cl_page_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2f15f7ea llog_close +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x322beec7 lustre_register_kill_super_cb +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3242ed35 obdo_cachep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x32481880 cl_lock_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3450c289 libcfs_kkuc_group_rem +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3726f79e cl_lvb2attr +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x37ed6e4b at_early_margin +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x396a01bc lu_site_stats_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3b224f7f lu_site_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3c573b6b class_num2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3dfa60e6 class_conn2export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3f15f630 cl_env_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3fcce606 cl_io_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x417f98f9 lu_site_init_finish +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x419d3b7d cl_io_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x41ea3fe7 cl_vmpage_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x424ae8ac lprocfs_rd_conn_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x42646d43 llog_cat_close +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x42f13adb cl_object_prune +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x46f44318 cl_io_iter_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x47b35f7d statfs_unpack +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x47fc5ad4 cl_lock_descr_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x49504d8e cl_io_start +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x49a29223 lprocfs_find_named_value +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4a41ccc9 libcfs_kkuc_group_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4ac58713 obd_connect_flags2str +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4efbb748 cl_env_unplant +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4f165453 cl_req_page_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4febb533 lprocfs_rd_uint +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x509f7653 libcfs_kkuc_msg_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x50c7fc36 ptlrpc_put_connection_superhack +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x52322ff6 lu_object_unhash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5325b3ea cl_lock_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x540b91c5 cl_page_delete +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x552c0ad9 cl_env_cache_purge +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5561d9db lu_context_key_revive_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x558bec27 obd_ioctl_getdata +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5594b56d cl_req_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5627cce8 lprocfs_oh_tally +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x56756041 cl_io_unlock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x570d09ae lustre_swab_lu_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x58c304dc cl_object_attr_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x591c15e8 lu_env_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5a64d92d lprocfs_counter_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5caaebae cl_conf_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5cdf25f7 cl_req_page_done +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5d603c8a lprocfs_seq_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5d89bd9b class_unlink_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5de01627 lprocfs_counter_sub +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5fe97b73 block_debug_check +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6018cbab lu_device_type_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x611a8b47 cl_io_lock_alloc_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x61e98df7 libcfs_kkuc_group_foreach +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x63e76827 lu_context_key_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x64ac1f47 cl_object_attr_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x65e7e1bb cl_io_sub_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x66b3be03 lustre_register_client_fill_super +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x66e1990d llog_process +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x670fc433 cl_site_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6734adbd lprocfs_read_frac_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6890d175 lustre_get_jobid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x699bd270 lprocfs_alloc_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x69c42114 at_min +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6be78bf9 cl_page_list_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6cf0cac0 cl_lock_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6db1c6e7 __llog_ctxt_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6dcea3a3 cl_page_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6f7e988c cl_page_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x701cdf42 cl_page_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x722ae892 class_find_client_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x72fc7c7a cl_io_read_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x734c5836 cl_offset +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x742559b1 class_unregister_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x746b08c9 cl_env_nested_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x750a1d0e cl_env_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x752168d8 obd_unstable_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x752f71a8 class_get_profile +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7556aaef class_manual_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x756a77f3 class_parse_nid_quiet +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x759d540a cl_object_attr_unlock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x75b21edd cl_io_submit_rw +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x77d2089a class_name2dev +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x77d87fbc cl_object_header_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7802fcd7 lustre_swab_llogd_conn_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x781015d3 cl_page_own_try +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x789796a1 obd_zombie_barrier +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x79a53160 class_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x79b4d7ed cl_page_list_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7a846265 llog_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7b246b67 cl_req_completion +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7b4fc57b at_max +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7eb1e42e lprocfs_at_hist_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7eca012f llog_process_or_fork +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7edcafa0 cl_env_reenter +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7fe5561a obd_dirty_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8021b45b class_destroy_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x803a45d4 cl_io_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x806cc497 class_add_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x80fc0ab6 lu_object_header_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x814790e8 cl_object_attr_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x81742d89 obd_ioctl_popdata +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x82785a37 lu_context_key_degister_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x831f656c class_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x83fdc7ca lu_object_header_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8446b9a8 obdo_to_ioobj +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x84a07f97 cl_page_list_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x84a22e56 class_devices_in_group +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x84f687a0 cl_page_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x86b93114 cl_env_implant +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x87225817 cl_page_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x886eb475 lu_object_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x892a1dbf lu_object_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x898a0d09 cl_lock_enqueue +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8a7d7d7f class_export_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8ba6e479 lustre_swab_lu_seq_range +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8bc4fd8a llog_cat_process +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8cfb9206 lprocfs_rd_connect_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8d5f6c64 lprocfs_rd_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8d830031 class_incref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8f67314c obd_dump_on_eviction +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x90eff25a llog_open +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9184e2f6 lu_object_locate +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x91f004d7 lustre_process_log +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x920c23a8 cl_lock_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x92e58479 obd_dump_on_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x94677235 lprocfs_clear_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x949b3c14 class_config_parse_llog +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x95735c6c at_extra +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x96a8e517 cl_io_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9738347d cl_page_list_splice +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9767adce class_uuid2dev +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x97a07f97 cl_page_make_ready +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x97d03783 at_history +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x98971559 lu_object_find_slice +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9932c9ea class_register_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x995cbdeb cl_2queue_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9b1ed9d8 obd_jobid_var +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9e2e24ac llog_thread_key +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9eca0360 cl_object_kill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9f084fb9 lu_context_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9f7a32aa cl_lock_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9f902311 class_process_proc_param +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa0626228 lprocfs_wr_uint +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa160da4a lu_object_header_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa16c600c cl_io_loop +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa17d8f9c cl_object_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa21aa733 cl_sync_io_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa326b4bc cl_cache_incref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa5fb234f lprocfs_write_frac_u64_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa862d221 lprocfs_oh_clear +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa992f977 obd_devs +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa9c11488 lu_object_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xaacc909d lu_context_key_register_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xab7dca7f cl_page_list_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xacd95661 lprocfs_single_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xad09e72b lu_context_key_degister +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xaebe6b69 cl_page_completion +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb01963a6 class_uuid_unparse +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb238b2ab class_connect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb35519ed lustre_swab_cfg_marker +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb4f8ee63 lprocfs_read_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb81eabb3 class_put_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb93f3753 obdo_from_inode +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb9dfa513 class_handle_unhash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xba1418df cl_page_list_del +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xba985283 lustre_register_client_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbacac922 lprocfs_write_frac_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbb86b210 obdo_refresh_inode +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbba2854e lu_context_key_register +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbc11bac9 cl_io_submit_sync +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbc702372 class_exp2cliimp +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbe5a2ce8 cl_sync_io_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbeaf5f48 cl_page_find +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbf4aa228 cl_io_is_going +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbf51899b cl_2queue_init_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbf9e695e lprocfs_oh_tally_log2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc0238aa4 lu_context_key_quiesce +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc026f90f lu_object_add_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc0bf7ef2 obd_debug_peer_on_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc0fbf4cf lu_device_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc1b9a319 lprocfs_oh_sum +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc1d21520 cl_io_lock_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc24d3f57 cl_io_commit_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc304af16 cl_page_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc32270ea cl_object_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc38c1b0f class_disconnect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc497aea8 cl_env_nested_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc56d149f cl_page_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc70cc70f lu_site_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc7ae4fc1 lu_device_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc950628a cl_lock_mode_name +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xca5084c5 lu_site_purge +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcb0ab67f obd_max_dirty_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcc546fb1 cl_env_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xce2b7a9d llog_init_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcf039562 cl_env_percpu_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd11e3b04 lprocfs_rd_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd1cfcade lu_context_refill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd291be3a class_export_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd291caa7 cl_cache_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd3ab9d54 lu_device_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd3d934fe lustre_end_log +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd6f1d05d cl_cache_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd70fe669 lustre_swab_llogd_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd79a24cb lu_env_refill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd7a97c2f lu_cdebug_printer +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd7bc8654 obd_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd8060056 cl_page_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd93854bd cl_io_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd94212be lprocfs_counter_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xda5b1ced class_find_param +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdaaba025 cl_index +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdcc40af0 class_check_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdd2dc5f8 class_fail_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xddd20b54 class_handle_hash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xde7d985b obd_dirty_transit_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdf2d086e cl_lock_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdf623799 lprocfs_stats_alloc_one +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdfc9d8ca lu_device_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdff01fe0 lu_context_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe0e9825c lu_stack_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe2ec5551 cl_req_attr_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe455b01a lustre_common_put_super +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe48b03ec md_from_obdo +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe491b2d3 cl_req_prep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe583b23b lu_kmem_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe5b6d301 cl_site_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe62ff4c5 cl_sync_io_note +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe65d346d lu_env_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xebff854d cl_2queue_discard +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xec5c63ab cl_stack_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xec7d6b85 obd_timeout_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xeef62510 class_new_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xef76f858 block_debug_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf101e094 cl_io_iter_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf23be926 cl_page_list_move_head +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf36e7a06 libcfs_kkuc_group_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf3a1cadb lprocfs_exp_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf3ac7d72 cl_page_header_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf46630b8 cl_env_percpu_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf490d5f9 class_del_profiles +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf596b245 cl_lock_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf5f57601 lu_object_find_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf6b1754a cl_req_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf72993d3 cl_sync_io_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf7f42641 lprocfs_free_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfbea0098 lu_types_stop +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfd68d17a class_notify_sptlrpc_conf +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfd8a0c19 class_import_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfdbe1557 lprocfs_write_u64_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xff1bcbba cl_page_assume +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfffc1f11 lustre_swab_ost_id +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00956318 req_capsule_server_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00cb99c1 RQF_LDLM_INTENT_GETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00d95039 ptlrpcd_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0355ccab ptlrpc_start_threads +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x048b59d5 lustre_msg_set_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x04a46755 ldlm_lock_match +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0515f93b RQF_FLD_QUERY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x06b3942b lustre_swab_lov_user_md_objects +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x06c3eb7e ldlm_resource_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x071fc74a RQF_LDLM_ENQUEUE_LVB +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x074d3d09 req_capsule_client_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x07e9b19c ptlrpc_deactivate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x081bf333 ptlrpc_mark_interrupted +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x08bb2d27 lustre_swab_obd_ioobj +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x090b75cf client_connect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x095587d0 lustre_msg_buflen +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x097e98f3 ptlrpc_request_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0a3130b0 RMF_MDT_EPOCH +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0ac252b2 lustre_msg_set_jobid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0ac54708 lustre_errno_hton +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0bcacb5d RMF_MDS_HSM_USER_ITEM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0c155f13 ptlrpc_at_set_req_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0c90bac7 sptlrpc_get_bulk_checksum +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0cf343dd RQF_LDLM_INTENT_BASIC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0d12528a ptlrpc_activate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0e5511d4 ldlm_cancel_resource_local +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x10a1a86d ldlm_error2errno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x10cf6298 ptlrpc_lprocfs_brw +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x115017f6 req_layout_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x11bd21b8 req_capsule_shrink +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x12b6f5a3 ptlrpc_connection_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x132e5332 ptlrpc_unpack_rep_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1353e827 sptlrpc_import_sec_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x13ff1926 sptlrpc_target_export_check +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x14708afc lustre_swab_mdt_rec_reint +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x14d192db lustre_msg_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x152f066f sptlrpc_flavor_has_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x15a3e4db RMF_GETINFO_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x16bb3f49 req_capsule_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1711d0ea ptlrpc_request_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x172fb86d lustre_msg_hdr_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1747d8b3 ldlm_lockname +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1770ccfb __ldlm_handle2lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x17950f60 RQF_SEC_CTX +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x181ce3fe ldlm_lock_set_data +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19108a0f RQF_OST_DISCONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x191681dc lustre_pack_reply_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19c08934 RQF_LDLM_INTENT_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1a6a3ce9 RQF_OST_GET_INFO_LAST_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1a9b76aa RMF_OBD_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1abd3258 RMF_SETINFO_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ace4b5f RQF_LDLM_BL_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ad6c330 RMF_EAVALS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1b7e9c44 ptlrpc_init_rq_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1be21715 lustre_msg_size_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1c300d8e lustre_msg_get_slv +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1dc2051d RMF_SEQ_OPC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1de9c288 lustre_swab_layout_intent +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1e81fbfe ptlrpc_schedule_difficult_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1eb2a65f RQF_OST_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ee46b51 lustre_init_msg_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ee9eb3c RQF_MDS_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1f11221b req_capsule_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1fcab6c5 client_disconnect_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2096f5b5 RQF_OST_SET_GRANT_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x219391ec RMF_EAVALS_LENS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x230f5208 ptlrpc_wake_delayed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x233790b5 RMF_OST_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x24aafdba RMF_MGS_TARGET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2585a629 RMF_SEQ_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2587513c RQF_LDLM_CP_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2641dba1 llog_initiator_connect +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x269554ce RQF_LDLM_INTENT_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x26f99d16 RQF_MGS_CONFIG_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x285e5b99 lustre_msg_set_conn_cnt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x29dcdc62 ldlm_lock_change_resource +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x29e0869a sptlrpc_get_hash_name +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2a63a472 lustre_swab_ptlrpc_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2ba2c623 ptlrpc_set_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2c00c60d ptlrpc_sample_next_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2cec385f ldlm_lock_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d56f168 ptlrpc_pinger_ir_up +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d798316 RMF_MGS_CONFIG_RES +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d816376 client_obd_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d95996a sptlrpc_cli_unwrap_bulk_write +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e4562fe RQF_LLOG_ORIGIN_HANDLE_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e4ca396 RQF_LDLM_INTENT_UNLINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e7fe175 ldlm_completion_ast_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2f0e4f87 RQF_OST_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2f5497cb ldlm_lock2desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2f793215 lustre_swab_ost_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2fab3539 lustre_swab_ost_lvb_v1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2fd2f737 lustre_msg_set_limit +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x301d4fcd RQF_MDS_READPAGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x302937e0 RQF_MDS_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x30e4436a ldlm_resource_unlink_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3195e2bb lprocfs_wr_ping +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3261b862 RQF_OST_SYNC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x345b564b ptlrpc_register_service +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x34a3c476 ldlm_lock_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3567d970 ptlrpc_lprocfs_register_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x35939a3d lustre_swab_fiemap +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3623ef67 ldlm_pool_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x370f729b ptlrpc_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x37a44d98 ptlrpc_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3835ab4b RQF_LLOG_ORIGIN_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3858fb94 RMF_OBD_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x386c78fe req_capsule_client_sized_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x38c01799 RQF_LDLM_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x38fce533 lustre_msg_set_versions +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x39f60a5f RMF_OST_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x39ff9e29 ldlm_lock_allow_match_locked +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3a1e4bcb __lustre_unpack_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3aa694cd ptlrpc_prep_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ab90f6e lustre_msg_bufcount +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ac00716 lustre_swab_hsm_user_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3b176fb6 ptlrpc_abort_inflight +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3b6b7cba dump_ioo +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3bedb0c7 RMF_LLOGD_CONN_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c263ec7 ldlm_pool_del +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c63e62b RQF_MDS_REINT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c8b16ab lustre_swab_ost_lvb +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ca50f33 RQF_MDS_HSM_CT_REGISTER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3d7dc5f9 ldlm_pools_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3dc47695 lustre_msg_get_magic +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3e336a45 ldlm_cli_enqueue +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ee83de9 ptlrpc_buf_set_swabbed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f034caf lustre_msg_get_status +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f35a11d RQF_FLD_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f752e78 RQF_MDS_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x41008cef RQF_LDLM_CANCEL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x41011756 ldlm_replay_locks +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43168488 RQF_MDS_RELEASE_CLOSE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4351e916 lustre_swab_hsm_user_item +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43705ee4 RQF_LOG_CANCEL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43d7efc8 lustre_msg_set_transno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x44036eda RQF_MDS_GET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x440c2a71 RMF_FIEMAP_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4481591d RQF_OST_SET_INFO_LAST_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45842afc lustre_pack_reply_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x458dae7c sptlrpc_cli_enlarge_reqbuf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45b713dc ptlrpc_unpack_req_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45d05893 lustre_swab_lustre_capa +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45e30cea lustre_swab_ldlm_intent +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x46900026 ldlm_cli_cancel_unused_resource +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x46ced3e7 do_set_info_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x47f5e903 RMF_MDS_HSM_REQUEST +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4821a9f0 ldlm_resource_iterate +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x483e1407 ptlrpc_request_alloc_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4a48b28e ldlm_namespace_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4a5a2416 RMF_DLM_REQ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4bed3cb9 req_capsule_get_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e1706e5 lustre_msg_buf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e696b96 ptlrpcd_queue_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4eb03a6f ptlrpcd_destroy_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4ec8440a sptlrpc_enc_pool_put_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4f192621 ptlrpc_fail_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4f766c3b lustre_swab_generic_32s +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4f92f50b client_import_del_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x50443f6a ptlrpc_init_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x50dd74f8 RMF_STRING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x514b3851 lustre_swab_ldlm_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x51cbc776 ptlrpc_obd_ping +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x51e311e9 lustre_swab_ldlm_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x52c62150 RMF_RCS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x53411557 RMF_DLM_REP +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x53a4a004 bulk_sec_desc_unpack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x54cae34f ptlrpc_send_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x555eb7fe RQF_MDS_HSM_STATE_SET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5852754c ldlm_flock_completion_ast +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x595ab175 lustre_swab_obd_quotactl +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x596582bf RMF_GETINFO_VALLEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5b6ba895 lustre_packed_msg_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5c506a30 ptlrpc_req_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5c6a3a83 RQF_SEQ_QUERY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5c7e3bf0 ptlrpc_recover_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ca1b491 lustre_swab_close_data +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5caae213 ptlrpc_next_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5d387d52 sptlrpc_cli_ctx_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5d7ecd18 ptlrpc_request_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e0b19b1 RMF_CLUUID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e2b7558 lustre_msghdr_get_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e6f435d RQF_OST_BRW_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e80f899 RQF_LLOG_ORIGIN_HANDLE_READ_HEADER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ec3284d RQF_MDS_HSM_CT_UNREGISTER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ef831ee lustre_msg_get_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5f96ccdd ptlrpc_connection_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5fc9a455 RMF_CLOSE_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6042bc15 RQF_MDS_REINT_RENAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x604e2505 RMF_SWAP_LAYOUTS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6089695e lprocfs_rd_pinger_recov +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x60cd26ad RQF_MDS_REINT_CREATE_SYM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x61219320 __ptlrpc_prep_bulk_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x61646e1b RQF_MDS_SWAP_LAYOUTS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x618ad203 RQF_OST_GET_INFO_LAST_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x625feb9f ldlm_resource_dump +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x62aaae3f RQF_MDS_HSM_REQUEST +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6315dd4c RMF_LLOGD_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6352a62d ldlm_get_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x645a5107 lustre_pack_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x653723dc RMF_LOGCOOKIES +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6541900b ptlrpc_request_bufs_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x660df036 ptlrpcd_alloc_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x66e56e65 sptlrpc_import_flush_my_ctx +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x685eeaba RMF_DLM_GL_DESC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x68f49e5e ptlrpc_expired_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6912990a RQF_OST_QUOTACHECK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x696ba811 lustre_msg_get_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x69c9f04d RQF_MDS_REINT_LINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6a3785c9 RMF_EADATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6b4520b2 ptlrpc_send_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6c27977a ptlrpc_set_import_active +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6cc76e67 ldlm_cli_cancel_unused +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6cdac464 ldlm_cli_cancel_list +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6d72828c sptlrpc_conf_log_update_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6d782645 sptlrpc_cli_unwrap_bulk_read +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6e3799f5 sptlrpc_cli_wrap_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6efa82b0 RQF_MGS_TARGET_REG +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6f464d24 req_capsule_set_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6fb92092 sptlrpc_flavor2name_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x703538e4 lustre_swab_hsm_current_action +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x725a892c RQF_MDS_REINT_OPEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x72ab4d43 req_capsule_server_sized_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x74840056 lustre_msg_set_status +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x75a2c40d ldlm_put_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x75e4ca61 RQF_OST_GET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x762f2ecc ptlrpc_set_add_new_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x78dc25a1 ldlm_pool_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7a832f10 RMF_CONN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7bbf8001 RMF_MDT_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7be3584b lprocfs_wr_pinger_recov +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7c4c6107 RQF_LDLM_CONVERT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7d1ecd7f RQF_LDLM_INTENT_LAYOUT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7dfb3c18 lustre_msg_clear_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7f5a1cc7 lustre_msg_set_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7f72d1d1 sptlrpc_register_policy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8059fa6d client_import_find_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x80ecb4e3 RMF_MDS_HSM_CURRENT_ACTION +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x817d7f1f lustre_msg_add_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x818388ca ldlm_lock_decref_and_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x81d6a8f8 ptlrpc_add_rqs_to_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x826d3c4f RQF_LDLM_GL_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x837efb00 RMF_NAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8465ba5f ldlm_pool_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85135801 RMF_DLM_LVB +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85a9e0d8 RMF_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85c4ff55 sptlrpc_lprocfs_cliobd_attach +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85eecf67 sptlrpc_get_hash_alg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x863db6eb RMF_HSM_USER_STATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x876c2551 RMF_GETINFO_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x87bf7b3c sptlrpc_get_next_secid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8872f3d2 RMF_SETINFO_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x889f43ed ptlrpc_req_finished +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x88fff52d RMF_CAPA2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x89ec9a94 ptlrpc_prep_fcset +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x89f9edf7 RQF_MDS_REINT_SETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8a1ea476 lustre_swab_hsm_state_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8a257736 RQF_MDS_HSM_STATE_GET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8ac440fa ptlrpc_uuid_to_connection +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8b56add6 ptlrpc_request_set_replen +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8b854254 lustre_swab_mgs_config_res +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8cb71d4b RQF_MDS_REINT_CREATE_SLAVE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d1ab900 ldlm_lock_dump_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d3d3dd2 ptl_send_rpc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d77ea75 lustre_msg_set_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8da3fca7 lustre_msg_add_version +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8e9abe4d RMF_GENERIC_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8e9d0d9d target_send_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8f0aceac RQF_MDS_HSM_ACTION +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8fec0451 lustre_msg_get_limit +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x90255814 __ptlrpc_free_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x91010321 lock_res_and_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9113f109 ldlm_cli_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x919c4ce3 RMF_OBD_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x91cf58d3 RQF_MDS_PIN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9228392f lustre_swab_mdt_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9277ae5e RQF_MDS_REINT_CREATE_ACL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x937b1ee0 lustre_swab_mdt_ioepoch +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x93b88b65 ptlrpc_pinger_add_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x93d5644b ldlm_lock_allow_match +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x95356d9a ptlrpc_lprocfs_unregister_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9553c633 RQF_LDLM_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9564a202 ldlm_lock_addref_try +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x95d08f0c lustre_swab_mgs_target_info +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9660ace0 RMF_FLD_MDFLD +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x967bfd52 RQF_OBD_PING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x96b00539 ptlrpc_init_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9798f2f1 RQF_MDS_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x979b8e40 sptlrpc_import_flush_all_ctx +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x980fcfdc ptlrpc_connection_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x987a5781 ldlm_namespace_dump +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x98c1fb23 _debug_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9999cf7a dump_ost_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9a258886 RQF_MDS_GETSTATUS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9a6f2f6d lustre_msg_set_opc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9b674f58 sec2target_str +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9b88f6ce RMF_NIOBUF_REMOTE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9bb5198b RQF_MDS_CLOSE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9d7ea314 sptlrpc_pack_user_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9e4dc6e2 ptlrpc_pinger_sending_on_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9fb088f1 lustre_swab_lov_mds_md +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa0fe7efc req_capsule_server_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa163f4c3 dump_rniobuf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa2244636 RQF_MDS_GETATTR_NAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa3d2a6ee RMF_CAPA1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa47787ef RMF_PTLRPC_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa4a2d089 RQF_OST_PUNCH +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa67c538a ldlm_prep_enqueue_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa6c436ca RQF_MDS_WRITEPAGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7a03774 ldlm_cli_cancel_list_local +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7cd229f client_destroy_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7e360b1 RMF_OBD_IOOBJ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7ec567d RMF_CONNECT_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9704f80 lustre_msg_get_last_committed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9c4658e lustre_swab_lov_user_md_v3 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9e40b00 ldlm_lock_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xacd6a7d7 lustre_swab_ost_last_id +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xadf4703d ptlrpc_replay_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xae7c8566 sptlrpc_conf_client_adapt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xae9de7f4 ptlrpc_add_timeout_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaeaceb61 req_capsule_filled_sizes +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf4e9658 RQF_MDS_SYNC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf50a0d6 RMF_HSM_STATE_SET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb0751fa4 RQF_LLOG_ORIGIN_HANDLE_DESTROY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb0a7ca3e req_capsule_has_field +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb1b43d8a dump_rcs +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb25b041b req_capsule_server_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb291473d lustre_msg_early_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb2b8e189 lustre_free_reply_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb3dc3d0d ldlm_extent_shift_kms +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb43c4afc ptlrpc_retain_replayable_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb4a7ecf3 lustre_msg_add_op_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb512ebc2 sptlrpc_parse_flavor +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb541ab71 ptlrpc_unregister_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb61cb95a RQF_MDS_GETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb6728635 sptlrpc_gc_add_sec +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb68476df interval_erase +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb6aafd03 RQF_MDS_DONE_WRITING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb75ceec6 ptlrpc_request_free +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb7b38189 RMF_MDT_MD +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb7fa3cc8 RMF_LLOG_LOG_HDR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb903634e RQF_OST_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb919d363 lustre_pack_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb9b631cf lustre_swab_mgs_config_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xba263a8c ldlm_lock_fail_match_locked +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xba6c9074 unlock_res_and_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbaa76097 lustre_msg_string +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbb156bed ldlm_cli_enqueue_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbc1370dc lustre_shrink_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbcc56c7c ptlrpc_connect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbd83bc44 RQF_OBD_SET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbeb7e023 ptlrpc_set_next_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbef769cc RQF_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbf98b86f RQF_MDS_QUOTACHECK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbffd4313 RQF_OST_BRW_WRITE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc06c4670 lustre_msg_get_versions +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc0867da7 RMF_REC_REINT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc0cdf55e RMF_MGS_SEND_PARAM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc16b0355 sptlrpc_target_sec_part +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc1c2fc2b ptlrpc_check_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc1c72ba8 req_capsule_server_sized_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc2b1af57 RQF_MGS_SET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc2be922a RMF_SYMTGT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc3d024f7 ptlrpc_set_add_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc435784d ldlm_namespace_new +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc43d8a07 req_capsule_extend +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc559a634 RMF_LAYOUT_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc5aed81a ptlrpc_prep_bulk_imp +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc60a60e1 RQF_OST_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc694be4b RQF_LLOG_ORIGIN_HANDLE_PREV_BLOCK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc763fabc sptlrpc_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc79b9c67 ldlm_pools_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc7ca8257 RQF_MDS_REINT_SETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc7e47564 ptlrpc_interrupted_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc8b97022 ptlrpc_reconnect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc8f586a9 ptlrpc_connection_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc96547d6 ldlm_revalidate_lock_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xca5a81ec ptlrpc_pinger_ir_down +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcb2cc0cf lustre_swab_lquota_lvb +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcb7ce6ce req_capsule_client_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcc97cc43 ldlm_cli_update_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xce03a021 ldlm_resource_putref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xce86066d lustre_msg_set_slv +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcec513c9 RQF_MDS_UNPIN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcf9963db lustre_msg_get_op_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcf9aab6a RQF_MDS_DISCONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd01c0809 _ldlm_lock_debug +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd057eb9b ldlm_prep_elc_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd10951cb ldlm_lock2handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd1f58722 lprocfs_wr_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2983334 lustre_swab_swap_layouts +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2c0a125 ptlrpc_queue_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2e0d4eb lustre_msg_get_opc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd3dae408 ldlm_it2str +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd69e0a27 RQF_MDS_IS_SUBDIR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd6c3ebfb RMF_FIEMAP_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd7910326 lustre_swab_obd_statfs +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd8b91b3e lustre_swab_lov_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd8f06300 RQF_MDS_HSM_PROGRESS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd9561861 RQF_LDLM_INTENT_OPEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb1fb0a2 RQF_MDS_REINT_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb74057f lustre_swab_hsm_progress_kernel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb9d5a6a lustre_swab_niobuf_remote +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdc68de0f sptlrpc_sec_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdce45e77 ldlm_lock_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd0ffb04 sptlrpc_flavor2name +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd30d7bf RMF_ACL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xddc40a85 lustre_msg_get_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xde12d36b RMF_MDS_HSM_ARCHIVE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdee87192 sptlrpc_conf_log_update_begin +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdf696d96 ptlrpc_resend_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdf701ae7 lustre_swab_fid2path +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe05d25a1 ptlrpc_resend +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe0cc694c RQF_LLOG_ORIGIN_HANDLE_NEXT_BLOCK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe18d0ea7 sptlrpc_unregister_policy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe2308dc7 llog_client_ops +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe2af2cf8 ptlrpc_disconnect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe40e0a50 lustre_msg_get_transno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe46e90ed client_obd_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe57bd972 sptlrpc_current_user_desc_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe5e8169b lustre_errno_ntoh +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe643998e RQF_OST_SETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe6f0dc96 RQF_OST_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe7062b5f RMF_U32 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe7512278 ptlrpcd_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe81770fb ldlm_lock_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe850d3bb ptlrpcd_wake +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe85d15ab ldlm_namespace_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe93ce702 ptlrpc_request_alloc_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe9ae09db ptlrpc_buf_need_swab +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xead75af4 ptlrpc_pinger_del_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xeaef8e52 ptlrpcd_add_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xebb64e68 req_layout_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xec939a00 RQF_MDS_REINT_UNLINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xed1c10d6 ptlrpc_connection_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xedcb740d sptlrpc_name2flavor_base +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xef1aeca9 RMF_FLD_OPC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xef601e5b sptlrpc_cli_ctx_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf1300275 _sptlrpc_enlarge_msg_inplace +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf15875fd ptlrpc_unregister_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf19f5c82 ldlm_completion_ast +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf277c125 RQF_OST_GET_INFO_FIEMAP +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf2c7f793 ptlrpc_set_destroy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf2f20bec ldlm_namespace_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf3d44370 RQF_OST_DESTROY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf40020f1 ptlrpc_unregister_service +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf43540b9 lustre_swab_mgs_nidtbl_entry +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf45085e1 sptlrpc_conf_log_stop +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf48ed6cb ptlrpc_free_rq_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf4adfe80 target_pack_pool_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf55c033b RMF_MGS_CONFIG_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf596e9ae sptlrpc_conf_log_start +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf607fc23 sptlrpc_flavor2name_base +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf617ab8a lustre_msg_get_conn_cnt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf697b756 ldlm_dump_all_namespaces +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf7408f84 lustre_swab_hsm_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf7a77419 ptlrpc_request_committed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf7ba40c0 RMF_MDS_HSM_PROGRESS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf870fed9 RQF_LDLM_GL_DESC_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf9051bd6 RQF_QC_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf973aa93 lustre_swab_lov_user_md_v1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf9ac4a7c sptlrpc_gc_del_sec +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf9f72dfc RMF_TGTUUID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfa51688d interval_insert +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfc2fa83f ptlrpc_del_timeout_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfcc3b4a2 ptlrpc_invalidate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfd148bf8 RMF_LDLM_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfe79cb9c client_import_add_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xff7fb094 req_capsule_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xffc807e8 sptlrpc_unpack_user_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xffe29c3f RQF_LDLM_ENQUEUE +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xa449bf05 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0xab350876 most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x27505e82 nvec_write_async +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x99d77acf nvec_write_sync +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x01175e9d rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0220c112 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x074026c9 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x137c1a24 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x28976a45 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2c4bfd5f rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3199ac11 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x33a3fd85 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3657adb1 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3758a9ec rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x39694e74 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3df59d6b rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3ea74fd4 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4575eeab rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4682fa93 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4b53f5fd alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4bf634ac rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x50c7054b HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x51e8cb9d rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x52ce82f1 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x55008351 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5870f0de rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5f14af38 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x64be3526 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x69e368c0 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6a77369a RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x78a3f547 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x87fa2392 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x88a1d8b2 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x89e611a1 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8a36ff22 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8b53a28c rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8c9da32c rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8ea19d37 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x93a48342 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9cabef18 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa1e57816 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb9ef92b2 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbfc47a6a rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc2c5bc8a rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc7b4695b rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc9f4f6f0 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xde40ad78 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe0fa8192 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe30943f2 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe4abd169 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeb35897b rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfa588cef rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfcd1163c rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfe38c74b rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x03679263 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x07e05872 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x083eac46 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1771032c IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1a1fc372 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1be42bc2 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1c47fd84 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x269294f1 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x275b95d0 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2854ea34 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2c90628e ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2d5d807e SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x37aca6b5 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3cdd6c88 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x43a2f3ce ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a988ab4 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4b3de493 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4c20fe51 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x52f5e054 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x56033560 ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5b63d930 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5de098fc ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61c95627 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x620b6c5a ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x667ee4c4 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x66b144ad DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x68f9d6e8 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6956417a ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x76ca0645 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x780152e0 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x787211c8 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7ae9481b ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7b1fe2f5 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7f799b2c Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8a55b8b8 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8b32d71d ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8bbdbd95 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9cc0dedd ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa1c665a9 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa5ca1e21 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa5e67761 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc4182f61 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc65a0587 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc7cdffb2 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc960c369 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd4e5dab2 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd586224a notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd78de93c Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd7b9deaa ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd873eb66 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3eb3133 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeb7d16f7 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf66d42c6 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x033b68d6 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x046b2267 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x05c3328a iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x06cc696a iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x07e8392f iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x087d7ed1 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x09fad209 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0a244c23 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0d729172 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0efb3f51 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x116ecc1c iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x130b5ccc iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x17eea905 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x19e67333 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1c427580 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x35709549 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x38e219ea iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4088308e iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x45b1c20e iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x50da3134 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5285dc6d iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5340c69e iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5a93037a iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65eb6cef iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7116add9 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x753fca14 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8c5259a1 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x96876ea0 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa5e45410 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xad0772e4 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xafaba109 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbfc5faf2 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc28e6d57 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc48f35af iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcef75200 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd4e31b5d iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeaa1fd38 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xec84485d iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xee4430ae iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf444dc53 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf4c6ed2e iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfb5fe4e3 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfc117a62 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ab77319 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ced66ab target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x11db1b60 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x16dc2895 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x1dd0ff28 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x24b73c64 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x266f1afb target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x2b094fc9 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x2b800a33 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x30a4e367 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x316598b7 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x317a1951 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x33929a5f core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x364e5f22 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3763a10a transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x38aab7b2 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x3d9741e7 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x3eabce42 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x4262c5e6 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x44a3b5f0 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x48af8833 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x498514fa transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x4e5da166 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x53331250 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x57061cc4 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5b053661 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x5b775e8f target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x5bedb124 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x5d8ea270 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x60c5b227 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x651352fe transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x68ae8e7f transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6a9da3ad target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x738cadd0 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x73b220c4 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x76f78a86 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x7797789f target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x77d46a6c transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a54e447 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a876cd5 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x7d14d7df core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x8408698a sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x878224b1 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x87df7e6a core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x94301425 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9576a035 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x96f5df69 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x9afb67a9 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9d96ef82 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x9e5d4a4c core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xa001cf5e core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xa7d124aa target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xa9e1c789 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0xaa351195 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xc02169cd target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0xca7287e5 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd2366b30 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xd5f88289 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xda000c60 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xda1f2216 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xde591e4e target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe3398bf7 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xe70c9eeb transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xebf6d606 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0xeec79917 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf2f0ab24 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xf901ebc3 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xf94be7cf core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xfe021ccf target_execute_cmd +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x06e03687 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x40073370 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x7f4a5470 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x18822bf6 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3503c81a usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7355d2c7 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x92328a19 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x96bea03d usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9d72a0a1 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xabe48da3 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xaffa4cc9 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdbaae559 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf3246914 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfb613967 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xff965d15 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x53513c40 usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x9502305b usb_serial_resume +EXPORT_SYMBOL drivers/vhost/vhost 0x2380c337 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0xf854c7c8 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x59f824d9 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x937e412c vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user +EXPORT_SYMBOL drivers/video/backlight/lcd 0x4451ca0a devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x65bf86a0 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x80afb5cb lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xdb8313f4 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 0x2816ab13 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x317f1533 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc159352a svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc44fb805 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc61a431f svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xcd0822a7 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe8d34f0b svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x928ea691 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x3db78d1f sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x4d3eeed7 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 0x7320a69e 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 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xf69cf381 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x25834836 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x5a2ca997 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x87816b50 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x04857c1f matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x992f0b7d DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xb608b6a4 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xce7fbf5d matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x07176d3a matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x2f9985f4 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x545b5f97 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x59334cbb matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x5d0348d1 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xcb2768cb matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x7f93d643 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xfdfb132c matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x77f1bf3b matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7d44436f matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x9fb5bc06 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xbea8c000 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xedc4e2e7 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x51fb4338 mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x00c4500f omap_dss_get_overlay +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x01b7fd59 dispc_read_irqstatus +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x01ea132e dispc_runtime_put +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x02ee61d4 omap_video_timings_to_videomode +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x03005606 omapdss_get_version +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x040d2cb9 dss_install_mgr_ops +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x0c55fa06 omap_dss_get_next_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x205ec8de omap_dispc_register_isr +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2168cc92 dss_mgr_connect +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x21feca25 omap_dss_get_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x228d0d12 omap_dss_find_output_by_port_node +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x22f836b7 videomode_to_omap_video_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2e97b92f omapdss_unregister_output +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 0x364a0924 omapdss_output_unset_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3897c3ce omap_dss_get_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x391c4874 omap_dss_find_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x45d74ef6 dispc_mgr_enable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4822fb22 omap_dss_find_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x49b436c1 omapdss_find_output_from_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4c33081d omapdss_compat_uninit +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4fc07222 dispc_mgr_setup +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x547ce898 dispc_read_irqenable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x54f6830a omapdss_get_default_display_name +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x559a5d8d omapdss_output_set_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x5689afe7 dispc_ovl_enable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x5e4d8065 omapdss_default_get_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x5f286391 dispc_ovl_setup +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x5fcb25af dss_mgr_enable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6219469d omapdss_register_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x636b3461 omap_dss_get_num_overlays +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x70e39dae dss_uninstall_mgr_ops +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7d5b7c22 dispc_mgr_set_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7dcd3406 dss_mgr_disconnect +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x8133c399 omapdss_find_mgr_from_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x87fdb051 dispc_mgr_go +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x8c49f3f8 dss_mgr_set_lcd_config +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x8e90d4a1 dispc_mgr_get_sync_lost_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x93963a85 dss_feat_get_num_mgrs +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x93b77e29 dss_mgr_start_update +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x967cb4e8 dispc_ovl_set_channel_out +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x9a238203 omap_dss_put_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x9b89a95e dispc_mgr_set_lcd_config +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x9e5646ae omapdss_default_get_recommended_bpp +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa2567b07 omapdss_default_get_resolution +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa35444e4 dispc_write_irqenable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb3ed5aa9 dispc_mgr_is_enabled +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb50cac16 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 0xc45105c3 dispc_mgr_go_busy +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xc55d5241 dispc_mgr_get_framedone_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xc67ba320 dss_mgr_unregister_framedone_handler +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xc7d475d8 dss_mgr_set_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xcdd18d69 omap_dss_get_overlay_manager +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd1067ba7 dispc_ovl_enabled +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd2140dcd omapdss_unregister_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd29fcbee omap_dss_pal_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd5959c19 dispc_ovl_check +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xdb93b838 dispc_free_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xe37d10ae omap_dispc_unregister_isr +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xe7e15910 dispc_clear_irqstatus +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xe90a32e5 dss_mgr_disable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xee2bc2d0 omapdss_is_initialized +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf344cb55 omapdss_register_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf4a7fc6d omapdss_compat_init +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf6c235ec omap_dss_ntsc_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf9427374 dispc_request_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xfe40bf95 dss_feat_get_num_ovls +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xff749291 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 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x9211a3a7 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xb626667c w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xc46425e0 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xc5cbb28e w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x86d7bded w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x8c8beed3 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x238dea6d w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xadc8d8aa w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x00fb1356 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x0e735eb4 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xb20d6dc4 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xc1bff6c5 w1_remove_master_device +EXPORT_SYMBOL fs/configfs/configfs 0x1140c395 config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0x1cac86e3 configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x2c94a972 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x33d10cec configfs_remove_default_groups +EXPORT_SYMBOL fs/configfs/configfs 0x37c0f668 configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x46d29c53 configfs_depend_item_unlocked +EXPORT_SYMBOL fs/configfs/configfs 0x4b347cbb configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x4dc543b5 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x533fb9db config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0x556064d2 configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x79beae2f config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0xa4d2902c configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0xb4f56ee1 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0xbbadb118 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xd5d0af31 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xe4b3bc07 configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xea50317d configfs_undepend_item +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x34e91686 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x56d845ad ore_create +EXPORT_SYMBOL fs/exofs/libore 0x670d0bdc ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x6ab2f54c ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0x8708f2ad ore_write +EXPORT_SYMBOL fs/exofs/libore 0x935d77f9 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xab9f555e ore_remove +EXPORT_SYMBOL fs/exofs/libore 0xbde78e58 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0xcc71145c ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0xe8c0fca7 ore_read +EXPORT_SYMBOL fs/fscache/fscache 0x0189d15a fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x0e8712f0 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x11a8a684 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x17d4120c fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x197135a8 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x1f833658 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x25631afd fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x34e27f35 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x426e9523 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x43af6a7c __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x59762aaa __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x5f950ff9 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x6241ecd0 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x69b422f3 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7bacf734 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x7e04d1b7 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x813a8708 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x8c207039 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x922bbd1e fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x94cda19f fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x9572ff2f __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x9a4017a1 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x9b99e123 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xa47af9ae __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xa9dcc312 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xb0338949 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xb3a7c6aa __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xbc756fa4 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0xbd66f8f3 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xbe6488f3 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xc0eebb57 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0xc2535e43 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xc8ed69ae fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xd4e673bb __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xd9d1d005 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xdfe57f35 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xe57cbce5 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xe682aa4c fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xefb16a79 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xf185c0c0 __fscache_write_page +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x298db532 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x35e4ae12 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x58ec6247 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x831f3093 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xa2cb67a3 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xd6c90c10 qtree_entry_unused +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t +EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create +EXPORT_SYMBOL lib/lru_cache 0x54e3fe32 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 0x74b8b588 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 0xcbc5d521 lz4_compress +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x26c3aa22 lz4hc_compress +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul +EXPORT_SYMBOL net/6lowpan/6lowpan 0x0e55999e lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x1df6a010 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x885a7828 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x8dd30cdc lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x9d02dd9b lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xa101ea08 lowpan_register_netdev +EXPORT_SYMBOL net/802/p8022 0x4fbfcccd unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0x9d7081b4 register_8022_client +EXPORT_SYMBOL net/802/p8023 0x2debcbd7 destroy_8023_client +EXPORT_SYMBOL net/802/p8023 0xb52b0e91 make_8023_client +EXPORT_SYMBOL net/802/psnap 0x87578482 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0x9c178a92 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0a0e64f5 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x12b40e8d p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x15f0e843 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x163eecb3 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x1d7b1732 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x27baa71c p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x2973b11d p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x2cb54f37 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x30429ff7 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x3313de2f p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3418cd7c p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x39ea71f5 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x449918b5 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x45946329 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x4eae68d4 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x5eb9e5ce p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x6735a299 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x6b45575f p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x7540e66d v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x82fb03a9 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x86043376 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x870cae23 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x9ce58e4f p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0xa26237dd p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xa38d3bfa p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xa3996590 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xaa5d77d0 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xaaf85f3d p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xad67b512 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xb6826256 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xb73a073f v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xcc92e65f p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xcf6de818 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xd334ef42 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xdf880f37 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe92796ec p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xeef89f34 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xef6b7e68 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf0616113 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf804d491 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfcc05a42 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x57239088 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x6e73bec2 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xd350bcf8 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xe610aa45 alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x006c5755 atm_charge +EXPORT_SYMBOL net/atm/atm 0x1c43eeee register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x37b5e3e3 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x3db51544 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x4189b2d2 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x5ffe2ba6 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x8e69eeb5 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x91c8e77b atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xaa5096ac deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xdd582ca0 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0xdf81b137 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xe999be30 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xee96691b atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xf1774b53 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x23798691 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x2d6c41b6 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x3d81609f ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x3f235ef2 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x4e13a846 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x89458773 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x94fbce77 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xe4f78657 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xe9aaf0a4 ax25_display_timer +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0374e1a9 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x06b5f7d0 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x07284e9c bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x10c4add2 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x181a0072 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x25bc7528 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2897ab20 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2ebcb685 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x33c88e04 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x384ad37a l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3a100537 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3e8ed3ba __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x419cfa94 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b351248 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4e1bc2ec hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4eef7d69 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x550ebfab bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5cc67efb hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x711c6cf5 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x87fafc2d hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8c68bcf5 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8e02847f hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x93ebc9c9 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x955b8bed l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa4d97e45 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb17b4566 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb8c3f921 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbe5c52ec hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc15f587c l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcec8235d hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd2d4a953 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd45339f4 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd6196602 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd93ee5b1 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xda923ccd hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdca8b1bf bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe03f7a6a bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe7cc1fd0 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf3ada26b hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf50e57c0 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf68dab4d bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf9af6844 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfbdc362d bt_sock_ioctl +EXPORT_SYMBOL net/bridge/bridge 0xdae60b26 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x98ac8a98 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xdb383e62 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe24d04e5 ebt_register_table +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x22de5682 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x2590b794 cfcnfg_add_phy_layer +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 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x7a6892e9 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x94cde91f get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xa2de96a2 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/can/can 0x69533238 can_rx_register +EXPORT_SYMBOL net/can/can 0x8a10c717 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x8d54de3f can_send +EXPORT_SYMBOL net/can/can 0xa2c9c320 can_proto_register +EXPORT_SYMBOL net/can/can 0xa94ac5ce can_proto_unregister +EXPORT_SYMBOL net/can/can 0xc4887ba0 can_ioctl +EXPORT_SYMBOL net/ceph/libceph 0x009cad6f ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x02437f87 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x054b1f61 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x0726b0dc ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x073deb7c ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x09a2f5c2 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x0d0de48b osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x0f7a93c2 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x10832363 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x11c7de8f osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x164de648 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x16602c85 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x1c7adea7 ceph_file_layout_from_legacy +EXPORT_SYMBOL net/ceph/libceph 0x1d0177ec ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x22d6b424 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x23638f41 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x28ae9a4c osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x29cbdc3f ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x29d46442 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x2db717f3 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x30952c0d ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x33895bd2 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x370525a7 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x37776dad ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x393b0aa6 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x40d80cc8 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x4341fd8b ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x480ff1be ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x4bbc26af ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x4e719094 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x50edc5de ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x5199d2e8 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x54a1cb36 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5830b144 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x5a31396c ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x5f75294e ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x5fde5620 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x6141c0c2 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x654d525d ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x66c00f1b ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x67d0ea6e ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6b60cbae ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x6c1e37d9 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x72ae0fa2 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7851006a ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x7b4df7ae ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x81375fd0 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x8326cea5 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x853d02c3 ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0x85d03a9e ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0x8bb6f365 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x97e25c1c ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x987955da ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0x998df86f ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9a674aa0 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x9d46f43d ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa0b4bf89 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xa1d7e2de ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xa226d62b __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xa2deb564 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa72f9b3d ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xa94b5e5c ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xab5771c5 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xabe09d05 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xacfb949d osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xb21c08da osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xb4dbf357 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xbaf6508a osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xbe0bcef0 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xbf15e03c ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc6a8fe41 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xc6c76f74 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xc6e2accf ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0xc720ee46 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0xc75448c3 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcb93e413 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xcbac9ee8 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xcdbebc55 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xcf97debc ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd23ad620 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd2eb0fbc ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd7aa87d7 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xd9659df2 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xdd8e7550 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xe95e1af0 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xebc8d181 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0xee1ac17c ceph_file_layout_to_legacy +EXPORT_SYMBOL net/ceph/libceph 0xf464bc6e osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xf5b30947 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0xf9aa66ed ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xfa6b9df6 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xfe3083dc ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xff9a175b ceph_oloc_copy +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x134f7d62 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x296ea62d dccp_syn_ack_timeout +EXPORT_SYMBOL net/ieee802154/ieee802154 0x02d923ec wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x101e3989 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x1179569f wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x43866183 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x74139498 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xd398ff08 wpan_phy_new +EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x0f1dafec gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x4443e717 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x4868384c __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xf3a80c4f fou_build_header +EXPORT_SYMBOL net/ipv4/gre 0x171c2fa7 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x1deeeb13 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6ae2ca5a ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc0aac4d3 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf6439777 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6dc3d872 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x91f12187 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf4fe71e1 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x36878a61 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x4053860d ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x9de17d58 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x069055e7 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x8ba27320 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x57db621d udp_sock_create4 +EXPORT_SYMBOL net/ipv6/fou6 0x4c36b085 fou6_build_header +EXPORT_SYMBOL net/ipv6/fou6 0xf44a0d9c gue6_build_header +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x202a1c62 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4072b861 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x520169d6 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5ca28243 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5d5e5339 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5e9f4828 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x891b7eab ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf4886646 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xfc19a328 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7f49e431 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xa87453d7 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xe980a91b ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x4bfc289a xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xcee5712e xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x2234ccb9 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xb32031a8 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x01340fa1 ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x319afece ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x3b29dad9 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x46668b56 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xad404510 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xbc14d8ed ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xc5209290 ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xeb825292 ircomm_connect_response +EXPORT_SYMBOL net/irda/irda 0x0229034f irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x0c36750a irttp_dup +EXPORT_SYMBOL net/irda/irda 0x0f95fc19 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0x17a491c5 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x36cad55b hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0x37791344 hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x5a89a433 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x633d41d3 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0x6492e28c hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x67a10aa9 iriap_close +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6b76aa70 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x731cec71 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x763ee986 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x784f649c irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7cd8f26b alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x7e67ca6e irias_new_object +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x83b86a0a irlap_close +EXPORT_SYMBOL net/irda/irda 0x85e4ef2f irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x8982c8d9 irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x8a44dd5e hashbin_new +EXPORT_SYMBOL net/irda/irda 0x8cd59e77 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x8f879263 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x90ddb6bd hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x9ffda243 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0xa0e84ad8 irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xa6943644 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0xa855bc9f irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0xad864845 irlap_open +EXPORT_SYMBOL net/irda/irda 0xaf1c97ba async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0xaf38a319 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0xaf7711ec irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0xb3c13d7f irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xbf7dd554 hashbin_find +EXPORT_SYMBOL net/irda/irda 0xbfa7c08d hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0xc477368d irias_find_object +EXPORT_SYMBOL net/irda/irda 0xc5985642 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0xdb9b30ba irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe17a735e irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0xe1ab504c async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xf199cba4 irias_insert_object +EXPORT_SYMBOL net/irda/irda 0xf7b5f147 iriap_open +EXPORT_SYMBOL net/kcm/kcm 0x5f26c540 kcm_proc_unregister +EXPORT_SYMBOL net/kcm/kcm 0xf567d950 kcm_proc_register +EXPORT_SYMBOL net/l2tp/l2tp_core 0x0609a533 l2tp_recv_common +EXPORT_SYMBOL net/lapb/lapb 0x21984e2d lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x34ff4a52 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x8a689230 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x9666d60e lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xae7617b0 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xb051e0d8 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xb31be37d lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xdd540fe3 lapb_unregister +EXPORT_SYMBOL net/llc/llc 0x3150b425 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0xb0361441 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xb1d23dfe llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xc248777f llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xd651ace9 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xd8edba25 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xed86f835 llc_sap_find +EXPORT_SYMBOL net/mac80211/mac80211 0x01883124 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x02166686 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x048e72f4 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x0a02cc3b ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x0a33f8cf ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x0fcc1e70 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x11ea93fe ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x12eee7bc ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x148bbe30 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x14ba434e ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x1617698f ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x18b7ce00 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x1c79b729 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x1ddfadaf ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x1ef45b99 ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x1fdb861a ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x2428d9cf ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x28d71cee wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x290e33b5 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x2960a319 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x30bcbb92 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x3169044b ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x32fc201f ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x35bf4452 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3865ae6a ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x3a4172b0 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x4289faa8 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x42b1740a ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x43da7ae9 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x4c4503e6 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x4d1dff04 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x4dd72f0e ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x4facbe11 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x52a758d4 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x54db67f9 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x550d77b0 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x555abb28 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x5ac7bd65 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x5b6ee358 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x5c718b42 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x5c8efb08 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x5d53c1b9 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x5e37fa30 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x5eb9e548 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x5fa4a953 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x60a318d2 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x61af9953 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x62e3ad50 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x69989e1c ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x69de096c ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x6e0e4e8b ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x721105f9 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x76b9ef28 ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x80c8141f ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x87b790a1 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x92198b17 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x93904dde ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x96a921b2 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x97493510 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x977d5c6c ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x9b8e0f5c ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x9dc5cf4d ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x9e4bb2fa ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xaf26e3d7 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xb76aba38 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xbc77dcae ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xbc7d3539 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xbf519158 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xbfcc15a7 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xc072a2c4 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xc0730b64 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xc1950757 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xc89b4623 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xc91cf5a8 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xcd476a4c ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xd54e70a4 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd9494383 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xdd29443f ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xe1d0a01b ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xe1eb192a ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xe578ae71 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xeb65cd12 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xed582f16 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0xf62fa6b1 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xf64c1c86 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xfc62ee9c ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xfd3ddc9e ieee80211_wake_queues +EXPORT_SYMBOL net/mac802154/mac802154 0x68d15672 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x68f47ab8 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x7abc68db ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xb1903b1a ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xcc74a711 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xf132c3c5 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xfbffa5e2 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xfdcbb65b ieee802154_wake_queue +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x63d78db1 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7308fd6e ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x89d060d4 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x89d666d2 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x90942e66 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9ebd9f5c ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xac359acb ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb53a805c register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb9aac4ef ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xca024dec ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcace14bc unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcbbe66ff register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd90f2624 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf1cada44 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfd0f1230 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x04aa710f nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3902abda __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x9ad72a13 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x36a711a7 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x492df8c3 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xb0066804 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xc123822d nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0xc8c7df7d nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0xf19a3d8c nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/x_tables 0x07c32bb8 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x1cc3d144 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x1fb92b4e xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x27410c11 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x4c5d747c xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x4d0e98e0 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x73872138 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x860ab4de xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x8b816893 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x931fee73 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x042d4ae4 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x0dedcacb nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x2088333a nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x21931f3b nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x24a0fb9d nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x2f48aad6 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x31aeff2a nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x36251f3b nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x3d5f6d0b nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x4f2a40d6 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x5151fa73 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x56c1b049 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x5fc4044f nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x6132066c nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x6590f7a2 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x6bf99729 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x99c96f22 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x9a71d3e8 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xb41b5e21 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xe7ce77da nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xf103d589 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x03c86b22 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x16421231 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x1b960ba2 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x261d5b6f nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x33f81cd9 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x3a067f9e nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x3b8ee5c1 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x42f54de8 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x5c314cce nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x6b09f670 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x7eb52bc1 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x81f81d44 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x828ac7fe nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x865e6c25 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x9147fd9e nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xb3cebeff nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xb70de3b3 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc15c5c1d nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xc3a0ab37 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xc55e9180 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xc675e6de nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xcafe2157 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xdcec0934 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0xe869967d nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xea258262 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xed867bbc nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xeedc72c3 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xf3458896 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xf64e8511 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nfc 0x04981983 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x07772229 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x14335711 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x205efeab nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x326ceec0 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x37497cda nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x49b438eb nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x52c01d58 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x619dbcdb nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x65a20d03 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x987513dd nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x9a9cbaeb nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x9e3e5b3d __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xac4feebd nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xac845d5f nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0xba5c7312 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xbbd95f93 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xbe3da2fd nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xc7ac0e33 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xcdedb3c1 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xdc6c3581 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xddd30ec9 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xf39dcce7 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xf513959c nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xf73c89b9 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc_digital 0x1c87bd7f nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x516bf14b nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xcf36b320 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xec19bd38 nfc_digital_allocate_device +EXPORT_SYMBOL net/phonet/phonet 0x0e39280e phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x2faed8bf pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x92b29ddc pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x9bccc5b5 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xbf808bca phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xc69874da pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xd75bbefd phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xf1266a65 phonet_proto_register +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0ee77237 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x17cdf6bd rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x22a24a63 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2d1be30e rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x62dc4357 rxrpc_kernel_data_consumed +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x64ee4a6b rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x69b9db4f rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6a7388f9 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6ebe31bb key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x767b81f2 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8b1dedd4 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8d157fc9 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9e6a96d3 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd3cde517 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xec3f6a32 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/sctp/sctp 0xa59110b8 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x079a1c53 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x0e9978d5 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x9d7f39d1 gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x4fcebe6b xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x9af79ad9 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xadcccc9c xdr_truncate_encode +EXPORT_SYMBOL net/wimax/wimax 0x584a526b wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0xefbafc4b wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x04923ccc cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x06217278 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0a9dbbb5 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x0b666880 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x0c855b25 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x146f110d cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x14e369a4 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x189cd535 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x19139224 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1c00f8ea ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x1fbf9519 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x251c0260 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x28939806 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x29770a07 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x297a67f4 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x2d78215d __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x2da4d4bd cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x2f972d8a cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x30dcc814 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x326b7302 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x38da9530 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x392adaca cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x3b34fe38 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x417eaec7 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4e53f9a6 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x510c4885 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x562f2e98 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x582749e7 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x59204a9c cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x5a9c5d32 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x5eec4003 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x6114b4c6 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x632479c5 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x6415dee6 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x65407cf4 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6c040132 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x74f76549 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x753c3bd0 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x77a54d0d cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x786faa6d cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7939da5c cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x7c95d885 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x81fb6cb7 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x820740c5 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x83ce384c cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x85884213 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x8631250b cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x88ec3607 cfg80211_connect_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x899379ef ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x8cace6d5 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x8d614eea cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x8d8fc064 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x8e96eb3c ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x92086bb8 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x924da66c cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x92a525a7 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x9552b56e cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x976f76a8 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x9a498338 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x9b9ab6e1 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9e89ecde ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xa3cc246e cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xa4b03786 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0xa71c4671 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xb1fb5a01 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xb2179478 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xb2350b2e ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xba1f139b wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xbaf15348 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xc1add82d cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xc4045830 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xc435b134 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xc543b1c4 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc9442f5d ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0xca65455c freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xd5011229 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xd5141ff4 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xd70d1fc3 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xda1c0859 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xdb52f561 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xdb63e8ee cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdc3469b8 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/cfg80211 0xdd64956e cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe188821f cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe8663ae6 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0xe8d53ad0 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xf01d849d __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xf1900e7a cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xf21e5def cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xf4792b8f cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xf6f63839 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xf91e5113 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/lib80211 0x5845557f lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x8b2503b0 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xb5a5a224 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xd0204340 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xdcd7bfc9 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xeaa16c92 lib80211_register_crypto_ops +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x7ddab0dd 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 0x6ebdb2e0 snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7a1c97c9 snd_seq_create_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 0xa0b7adf8 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 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe387a4e1 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-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x28b71753 snd_seq_device_new +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +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 0xf0a1fdb3 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x127b30fb snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x1cdc0812 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x59eb74ae snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x8102ed2f snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb11ba32d snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb2c7f684 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xea0e5748 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xed42580b snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x47eb3c04 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd-hwdep 0xbbc52c0b snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x10323c11 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4426802a snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5a916587 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5ba09188 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6fb4a37d __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x812be339 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x846aa7b4 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x894f86d1 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8f2621e9 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x921ead91 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x97d1ba2d snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa673d297 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbd5f9103 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc2ca39a2 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc6c063e9 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe77c6cf6 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe96bc4a9 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf68bfe97 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfd135598 snd_rawmidi_receive +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x01162b82 snd_mpu401_uart_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/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0922fc79 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x29a7ab58 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5a4758e3 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6a69dc63 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7958e36f snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7cec375d snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd7812da5 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe6ece6b7 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xec6e5590 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 0x2dd03d24 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x44023a0d snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5cc2731a snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6d064a1f snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa930b310 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb5fc7d40 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xdf951462 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe6af1633 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf328e7ac snd_vx_create +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x07f5c1c8 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0f512907 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1175eac5 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x170c5183 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1db51f03 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1ebf5cd7 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x208b45bf fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x24c70d34 snd_fw_schedule_registration +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2bf3b83e cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2da633b7 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2f26d7bf amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2f736521 snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3784df63 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3ba571ca cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4d12f20d fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x50beca55 amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7790e510 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x797e16c1 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fbd8980 amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8e9e2e38 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x923de414 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x962d8c5f fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9a2cbd87 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9c830e95 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaf5fc098 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc4851987 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc9959001 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcf6b2b83 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd3400ce6 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd8a7aa0e snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xea66dbff iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf49ab013 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf8e2bb9c avc_general_get_sig_fmt +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x3298918e snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x6da5edf3 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0f33498e snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x222accc3 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x391e310d snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x59b54fe6 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbca60d97 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc8411bfc snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf46cb52f snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf8631660 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x0f5ee2b6 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x343b2cb8 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x8441920f snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xd6d75167 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x5f9762f6 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xfe2761ad snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-i2c 0x2a1eec86 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x3db06a51 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x838846d8 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x93206470 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc37fcfc0 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xdac9475e snd_i2c_bus_create +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x02565e9a snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1e6406d8 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3dc1f2ab snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5478286d snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x555aa476 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5afd33cf snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5fc60ce1 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x657231cb snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6862fb49 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x701fd961 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7d679d34 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9386e0f9 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa59e5578 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xba7d0a0f snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc7fb87b9 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcc2fa7d2 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xec5c1f0a snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x0def5238 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x8171b04c snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xd003fbfb snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x02fb44d7 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0aa0ea50 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x129076fa oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1651eb2f oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x26f004a8 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x321b297d oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x42ff62a4 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4912c1a6 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6b668e41 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x79aedc09 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x815d0d51 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8ed87c8e oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x953df52f oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9fa4c632 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa6657210 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb0b796b0 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb48616c0 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb7a69486 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbc6f9dd2 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xec236344 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfa647114 oxygen_write8 +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x49ec0647 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x9a8ee5b3 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0xfad0012f fsl_asoc_get_dma_channel +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 0xb7f13d7a __snd_usbmidi_create +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 0x000f3007 pci_find_capability +EXPORT_SYMBOL vmlinux 0x0013b03a pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x00197279 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x001ee95a imx_ssi_fiq_base +EXPORT_SYMBOL vmlinux 0x00330484 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x00397eeb __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x003a6258 bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x003b5da8 snd_pcm_limit_hw_rates +EXPORT_SYMBOL vmlinux 0x003ed69a __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x0046570a scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x004b363e xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x00672812 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x00703991 vme_init_bridge +EXPORT_SYMBOL vmlinux 0x00847062 snd_ctl_rename_id +EXPORT_SYMBOL vmlinux 0x009f8673 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x00d703ea tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00dbf470 devm_release_resource +EXPORT_SYMBOL vmlinux 0x00e1bfd2 generic_read_dir +EXPORT_SYMBOL vmlinux 0x00ebc093 md_error +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x0102125c __alloc_skb +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 +EXPORT_SYMBOL vmlinux 0x0186e2de smp_call_function_many +EXPORT_SYMBOL vmlinux 0x01876295 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x019393cb ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x019db55a radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0x01a3d310 omap_set_dma_channel_mode +EXPORT_SYMBOL vmlinux 0x01a63b63 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x01ae4475 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x01c897bb filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x01d74d0f phy_connect +EXPORT_SYMBOL vmlinux 0x01d7c096 seq_release_private +EXPORT_SYMBOL vmlinux 0x01e6fae5 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv +EXPORT_SYMBOL vmlinux 0x0220ef43 send_sig_info +EXPORT_SYMBOL vmlinux 0x022d1adf pagecache_get_page +EXPORT_SYMBOL vmlinux 0x02573b36 omap_disable_dma_irq +EXPORT_SYMBOL vmlinux 0x025f04d0 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x025fd0ce mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x0261b779 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x026a7fcb single_open +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL vmlinux 0x0289c767 snd_pcm_lib_free_pages +EXPORT_SYMBOL vmlinux 0x028d971c sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x029fb05e ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02ad7f8d nvm_mark_blk +EXPORT_SYMBOL vmlinux 0x02b045cd __getblk_slow +EXPORT_SYMBOL vmlinux 0x02bd0e02 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x02be5283 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x02bfe560 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x02d5ccd3 lookup_one_len +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02eb5ba3 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x02ef6c49 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x02ef742b percpu_counter_set +EXPORT_SYMBOL vmlinux 0x02fbc91d dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x03026722 mempool_alloc +EXPORT_SYMBOL vmlinux 0x030d78a1 fb_get_mode +EXPORT_SYMBOL vmlinux 0x03144447 clkdev_alloc +EXPORT_SYMBOL vmlinux 0x0332cb7f input_register_handler +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03863727 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x038c8c6d snd_card_new +EXPORT_SYMBOL vmlinux 0x03ad8fc3 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x03adf2d4 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all +EXPORT_SYMBOL vmlinux 0x03f6d895 fscrypt_release_ctx +EXPORT_SYMBOL vmlinux 0x03f8bd89 nobh_write_end +EXPORT_SYMBOL vmlinux 0x03fced26 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x040033fd md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x04086286 PDE_DATA +EXPORT_SYMBOL vmlinux 0x04094137 irq_set_chip +EXPORT_SYMBOL vmlinux 0x040cc92a gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x0419f1f4 sk_common_release +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0442f7e2 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x04528440 serio_rescan +EXPORT_SYMBOL vmlinux 0x0458f740 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x045e3717 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x0463153b pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x047dbf8d blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x04819d19 get_acl +EXPORT_SYMBOL vmlinux 0x0486e2a9 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x0487f073 snd_card_register +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x048d1b6a blk_end_request +EXPORT_SYMBOL vmlinux 0x04956117 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0x04b426de inode_needs_sync +EXPORT_SYMBOL vmlinux 0x04b76cdd uart_get_divisor +EXPORT_SYMBOL vmlinux 0x04bc39ad phy_device_remove +EXPORT_SYMBOL vmlinux 0x04c5749f param_set_long +EXPORT_SYMBOL vmlinux 0x04cb2877 request_firmware +EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine +EXPORT_SYMBOL vmlinux 0x04cfc685 vfs_getattr +EXPORT_SYMBOL vmlinux 0x04e05a2a of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x04e275a8 dquot_drop +EXPORT_SYMBOL vmlinux 0x04e61f92 blk_complete_request +EXPORT_SYMBOL vmlinux 0x04e8eddf ata_dev_printk +EXPORT_SYMBOL vmlinux 0x04ea320d bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea72f6 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x04f69d97 snd_device_new +EXPORT_SYMBOL vmlinux 0x04f79b19 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x050593c0 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x05192d44 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x05407a7b blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x05877b50 blk_start_queue +EXPORT_SYMBOL vmlinux 0x059e99a9 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x05a57afc soft_cursor +EXPORT_SYMBOL vmlinux 0x05b75353 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x05cf08d5 d_delete +EXPORT_SYMBOL vmlinux 0x05daec64 con_is_bound +EXPORT_SYMBOL vmlinux 0x05e82fc1 put_io_context +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x062f9811 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x0646d11a inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x0650992f netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x065c7184 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x06739eb0 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x067ff210 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x06898214 tty_vhangup +EXPORT_SYMBOL vmlinux 0x068da3f8 __dst_free +EXPORT_SYMBOL vmlinux 0x069afbc2 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x06a4b2e8 iget5_locked +EXPORT_SYMBOL vmlinux 0x06b22469 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x06dbcdaf iput +EXPORT_SYMBOL vmlinux 0x06ed331c generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x06fef9f6 simple_write_end +EXPORT_SYMBOL vmlinux 0x07078526 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x0718ed63 __lock_page +EXPORT_SYMBOL vmlinux 0x0722a77a padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x072a8f8d __set_fiq_regs +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0736d7fc swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x073a1647 may_umount_tree +EXPORT_SYMBOL vmlinux 0x075c442c seq_lseek +EXPORT_SYMBOL vmlinux 0x0763909a pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x07766422 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x078634c2 kill_litter_super +EXPORT_SYMBOL vmlinux 0x078b84ab generic_block_bmap +EXPORT_SYMBOL vmlinux 0x07a343b7 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07a8e906 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x07aa2ac5 unregister_console +EXPORT_SYMBOL vmlinux 0x07ad897b cdrom_release +EXPORT_SYMBOL vmlinux 0x07b7b2b3 inet_add_offload +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07cf9099 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x07d00222 snd_card_file_add +EXPORT_SYMBOL vmlinux 0x07d399aa cdev_init +EXPORT_SYMBOL vmlinux 0x081269ac __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x08166223 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x08167ab4 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x0817d9ad param_set_ullong +EXPORT_SYMBOL vmlinux 0x081f3afb complete_all +EXPORT_SYMBOL vmlinux 0x081f4127 neigh_destroy +EXPORT_SYMBOL vmlinux 0x08265f13 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x082b482d mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x082fb9de tty_port_destroy +EXPORT_SYMBOL vmlinux 0x083dc0d8 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x08449a0f sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x085028c7 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x08690bbf __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x0876bace __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x08ab6081 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x08dbbf82 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x08df8079 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0x08e6fe89 skb_seq_read +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08edc227 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x08fd671b copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x090458be dev_load +EXPORT_SYMBOL vmlinux 0x0920e7aa secpath_dup +EXPORT_SYMBOL vmlinux 0x096a27ce rtnl_notify +EXPORT_SYMBOL vmlinux 0x09712ef1 vme_master_request +EXPORT_SYMBOL vmlinux 0x097ec1ff _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x098114ea mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x098ae5aa sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x098b5a9f fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x099e9ff9 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c6411f schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09cf1b46 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09e88a45 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x09f507cd xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x0a03d2dc __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x0a118750 fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x0a2002b8 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a2b7ab4 snd_pcm_set_sync +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x0a412aaf truncate_setsize +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a7a5401 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x0a7bf950 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0ab1206d inet_frag_kill +EXPORT_SYMBOL vmlinux 0x0ab2e543 sk_net_capable +EXPORT_SYMBOL vmlinux 0x0acef4d9 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad4dc37 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x0ae645d0 fence_init +EXPORT_SYMBOL vmlinux 0x0b027fa6 __block_write_begin +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b169662 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b36698e of_get_min_tck +EXPORT_SYMBOL vmlinux 0x0b38a39c kernel_connect +EXPORT_SYMBOL vmlinux 0x0b45f2d4 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b50cc0b blk_run_queue +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b679fa1 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b7cfb5e skb_find_text +EXPORT_SYMBOL vmlinux 0x0b977829 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x0ba86102 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bdfc447 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x0beb3cfc cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x0bfed84a gen_pool_alloc_algo +EXPORT_SYMBOL vmlinux 0x0c10fccc i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x0c1b0bb9 d_instantiate +EXPORT_SYMBOL vmlinux 0x0c1bc1bc scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x0c2daf6b unlock_new_inode +EXPORT_SYMBOL vmlinux 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0x0c3cc217 unlock_rename +EXPORT_SYMBOL vmlinux 0x0c42e7e0 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c4a938f xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c59a0bb register_quota_format +EXPORT_SYMBOL vmlinux 0x0c9f1b3b fget +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit +EXPORT_SYMBOL vmlinux 0x0ca6f455 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cbd8f5e kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x0cdbfe33 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x0cfefe1e percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x0cfffe60 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x0d1fca8a inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x0d21e88b inet_stream_connect +EXPORT_SYMBOL vmlinux 0x0d2428cc iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x0d3f57a2 _find_next_bit_le +EXPORT_SYMBOL vmlinux 0x0d4d7a32 _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x0d4d8e54 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d838919 neigh_for_each +EXPORT_SYMBOL vmlinux 0x0d84761d padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x0d859498 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x0d8fb6f8 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0db4a83a register_netdevice +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0dc4ad73 phy_disconnect +EXPORT_SYMBOL vmlinux 0x0e113701 mmc_request_done +EXPORT_SYMBOL vmlinux 0x0e1f8bd5 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x0e26508b nvm_find_target_type +EXPORT_SYMBOL vmlinux 0x0e3f4c69 down_read +EXPORT_SYMBOL vmlinux 0x0e4efa67 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e89659f md_unregister_thread +EXPORT_SYMBOL vmlinux 0x0e8b2951 pci_bus_type +EXPORT_SYMBOL vmlinux 0x0e98f4a3 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x0e9a4094 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x0ea1adb5 proc_remove +EXPORT_SYMBOL vmlinux 0x0ead1192 md_write_end +EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0eb2488a blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ee30889 snd_pcm_period_elapsed +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0ef30e5b dcb_setapp +EXPORT_SYMBOL vmlinux 0x0ef3d81c input_flush_device +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f007aa6 force_sig +EXPORT_SYMBOL vmlinux 0x0f0cb5f3 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x0f0f71a6 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x0f37b74d elv_rb_find +EXPORT_SYMBOL vmlinux 0x0f439e14 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x0f43ec7d genphy_config_init +EXPORT_SYMBOL vmlinux 0x0f447629 arp_send +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f8400f8 qcom_scm_pas_auth_and_reset +EXPORT_SYMBOL vmlinux 0x0fa2a45e __memzero +EXPORT_SYMBOL vmlinux 0x0fa41ed7 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x0fab80b8 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fe55f8b scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x0ff771bd __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x10045f8c pci_get_device +EXPORT_SYMBOL vmlinux 0x10060cd7 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x1009e3ad serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x1016a98b try_module_get +EXPORT_SYMBOL vmlinux 0x10587a51 scsi_unregister +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x107c4411 param_get_ulong +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x108bfe2a nvm_register_tgt_type +EXPORT_SYMBOL vmlinux 0x108fc0f3 netdev_err +EXPORT_SYMBOL vmlinux 0x10964460 blk_put_queue +EXPORT_SYMBOL vmlinux 0x10bd8941 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x10cd41f4 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x10da537a check_disk_change +EXPORT_SYMBOL vmlinux 0x10f8772b __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x110eae1f dma_common_mmap +EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x1114a7d3 generic_getxattr +EXPORT_SYMBOL vmlinux 0x1120a643 __frontswap_test +EXPORT_SYMBOL vmlinux 0x1122b7fc __netif_schedule +EXPORT_SYMBOL vmlinux 0x11248c44 simple_get_link +EXPORT_SYMBOL vmlinux 0x112748bd omap_vrfb_adjust_size +EXPORT_SYMBOL vmlinux 0x112a13ee scm_fp_dup +EXPORT_SYMBOL vmlinux 0x112ed561 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x113fb471 tcp_child_process +EXPORT_SYMBOL vmlinux 0x1144c1d2 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x116397d6 request_key +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch +EXPORT_SYMBOL vmlinux 0x11a10884 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x11b3f31e max8925_reg_read +EXPORT_SYMBOL vmlinux 0x11cac285 fscrypt_decrypt_page +EXPORT_SYMBOL vmlinux 0x11d1d8cf snd_unregister_device +EXPORT_SYMBOL vmlinux 0x11dc0fdf gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x11ff63a6 scsi_device_get +EXPORT_SYMBOL vmlinux 0x1203812d abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x121b0ead devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x121cef51 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x12203119 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x12210c31 generic_show_options +EXPORT_SYMBOL vmlinux 0x122a69ee __devm_request_region +EXPORT_SYMBOL vmlinux 0x12331af6 bdev_read_only +EXPORT_SYMBOL vmlinux 0x123b4364 generic_readlink +EXPORT_SYMBOL vmlinux 0x12564576 blk_free_tags +EXPORT_SYMBOL vmlinux 0x12859a4a netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x1289cd45 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x128a5f32 dma_supported +EXPORT_SYMBOL vmlinux 0x12974767 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x129c372f fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12a9ebc2 param_set_ulong +EXPORT_SYMBOL vmlinux 0x12abbd71 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x12bd91be find_vma +EXPORT_SYMBOL vmlinux 0x12ceacce __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x12d6e31d xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x12d8706e inode_set_bytes +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x12e10a2f __put_page +EXPORT_SYMBOL vmlinux 0x12e645c4 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x12f5395b inet_release +EXPORT_SYMBOL vmlinux 0x12f60c87 __bforget +EXPORT_SYMBOL vmlinux 0x130099df iget_locked +EXPORT_SYMBOL vmlinux 0x1302c723 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x1314c4b6 nf_log_unset +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x134addaf sock_i_uid +EXPORT_SYMBOL vmlinux 0x1362eecc __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x1369a185 dev_addr_add +EXPORT_SYMBOL vmlinux 0x137ecb5d lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x1387650e of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x13ad75e5 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x13b28b29 qcom_scm_pas_shutdown +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13db53d5 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x13e059d9 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13f9804d sock_no_bind +EXPORT_SYMBOL vmlinux 0x13ffad8a lwtunnel_output +EXPORT_SYMBOL vmlinux 0x141afe5d tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x141dee44 dma_pool_create +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x14241fa0 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x1429e0d8 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x143a2e8b blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x1468f3dc devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0x147dc388 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x147fae64 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x14811db4 napi_disable +EXPORT_SYMBOL vmlinux 0x149c7790 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x14a22976 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit +EXPORT_SYMBOL vmlinux 0x14e9a2ec rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x14effa72 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x1504ddd9 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x15120c74 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x1516a6c6 snd_register_oss_device +EXPORT_SYMBOL vmlinux 0x153be769 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x154b8065 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1562aa20 snd_pcm_lib_readv +EXPORT_SYMBOL vmlinux 0x157d3f9c pci_iounmap +EXPORT_SYMBOL vmlinux 0x158287ce tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bc785c dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x15bd519c km_policy_expired +EXPORT_SYMBOL vmlinux 0x15ce51ae __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x15d3b723 get_user_pages +EXPORT_SYMBOL vmlinux 0x15d69c51 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x15e2074d blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x160467bd dqput +EXPORT_SYMBOL vmlinux 0x16062fb5 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x160af22e xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x1615ac49 of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x161c0b0d tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0x161c7a1c netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x162ccc0c lg_local_lock +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x1632c12a dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off +EXPORT_SYMBOL vmlinux 0x163d6e7d free_task +EXPORT_SYMBOL vmlinux 0x165557d1 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x166f0d77 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x16a5640b elv_add_request +EXPORT_SYMBOL vmlinux 0x16aaf5b1 vc_cons +EXPORT_SYMBOL vmlinux 0x16c334e2 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e66c8c i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x17126c20 vfs_llseek +EXPORT_SYMBOL vmlinux 0x1715e615 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x172a0043 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x172c022e get_gendisk +EXPORT_SYMBOL vmlinux 0x1739b2cb mmc_can_erase +EXPORT_SYMBOL vmlinux 0x174afb1a __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x17568b97 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x176f87b5 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x17abd8fd __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17c8a7d0 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x17d54454 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x17df6fc5 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x17f7575c mdiobus_free +EXPORT_SYMBOL vmlinux 0x181cf5e2 input_register_handle +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x182d0b36 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x183f371b generic_fillattr +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x18455a2b jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x1862de57 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x18786f6c pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x188fa185 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x189365f3 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x189c5980 arm_copy_to_user +EXPORT_SYMBOL vmlinux 0x18a62efa pci_platform_rom +EXPORT_SYMBOL vmlinux 0x18bd76a4 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x18c2227f cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x18d84d59 ptp_find_pin +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18e830bf input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x18f359f6 dm_register_target +EXPORT_SYMBOL vmlinux 0x18f8a97c generic_file_mmap +EXPORT_SYMBOL vmlinux 0x190cd8ea touch_atime +EXPORT_SYMBOL vmlinux 0x19217e5b dqget +EXPORT_SYMBOL vmlinux 0x193da072 simple_statfs +EXPORT_SYMBOL vmlinux 0x19535e2e param_ops_charp +EXPORT_SYMBOL vmlinux 0x19610e1f cpu_all_bits +EXPORT_SYMBOL vmlinux 0x197dc3b3 omap_set_dma_src_burst_mode +EXPORT_SYMBOL vmlinux 0x1986418e xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL vmlinux 0x198cea18 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x199d429a simple_fill_super +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19b4a264 param_get_short +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19cf1aa3 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x19d1f6dd __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x19d26006 phy_find_first +EXPORT_SYMBOL vmlinux 0x19e3c0d1 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x19ef5e25 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x19f3d8e1 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x19fe7559 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x1a20c540 omap_vrfb_supported +EXPORT_SYMBOL vmlinux 0x1a27c946 noop_llseek +EXPORT_SYMBOL vmlinux 0x1a29c1a3 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x1a40b4b5 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn +EXPORT_SYMBOL vmlinux 0x1a981e17 unlock_buffer +EXPORT_SYMBOL vmlinux 0x1aaa82c1 snd_pcm_new +EXPORT_SYMBOL vmlinux 0x1ab054ff tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x1ace6e7f neigh_xmit +EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0x1ae2a7cf blkdev_put +EXPORT_SYMBOL vmlinux 0x1af0e5ae simple_rmdir +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b2d6d2c qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0x1b4cfafa sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x1b617a04 snd_card_disconnect +EXPORT_SYMBOL vmlinux 0x1b61db47 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b6859c2 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x1b802a10 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8f71bd ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x1b984072 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x1bc91df5 nonseekable_open +EXPORT_SYMBOL vmlinux 0x1bd17a08 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x1bd1ff11 get_task_exe_file +EXPORT_SYMBOL vmlinux 0x1be0ad85 skb_trim +EXPORT_SYMBOL vmlinux 0x1be63e64 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x1bf618c4 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x1c0798c9 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x1c0ab85f init_net +EXPORT_SYMBOL vmlinux 0x1c10b225 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x1c1d7524 shdma_cleanup +EXPORT_SYMBOL vmlinux 0x1c34e1a8 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x1c3c00c9 pipe_lock +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c6fa500 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x1c8120ca mutex_unlock +EXPORT_SYMBOL vmlinux 0x1ca34cb6 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x1cacd126 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x1cd7f75e dquot_disable +EXPORT_SYMBOL vmlinux 0x1ce7a402 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x1cfb04fa finish_wait +EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL vmlinux 0x1d03f813 netlink_set_err +EXPORT_SYMBOL vmlinux 0x1d334228 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x1d4eb2bd ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x1d599d3a seq_open +EXPORT_SYMBOL vmlinux 0x1d5bc9cf sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x1d6c8d92 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0x1d89f81a frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x1d8dbf20 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x1d8eeac5 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x1db7dc40 pgprot_kernel +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dca4456 swake_up_all +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de31fda tcf_exts_change +EXPORT_SYMBOL vmlinux 0x1dea7009 of_dev_get +EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x1e14e01f filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x1e1fe747 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e2d9d74 pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0x1e5a6074 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x1e5d9c85 bio_phys_segments +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e6e88e7 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x1e8bc919 simple_getattr +EXPORT_SYMBOL vmlinux 0x1e92166e ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ec37aac max8998_update_reg +EXPORT_SYMBOL vmlinux 0x1ecb1b46 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x1eccaceb netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x1ee4986f dst_alloc +EXPORT_SYMBOL vmlinux 0x1eeb848e __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x1ef69429 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x1f25eaea inode_permission +EXPORT_SYMBOL vmlinux 0x1f5250f6 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x1f54aec2 end_page_writeback +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1f8973df dquot_release +EXPORT_SYMBOL vmlinux 0x1fab5905 wait_for_completion +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc12ce2 netdev_state_change +EXPORT_SYMBOL vmlinux 0x1fc4ccb0 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x2004e669 find_get_entry +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x20205f64 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x20225c62 unlock_page +EXPORT_SYMBOL vmlinux 0x203570ac param_set_int +EXPORT_SYMBOL vmlinux 0x20421305 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x2042622f grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x20656873 param_set_uint +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x207c6279 devm_gpio_free +EXPORT_SYMBOL vmlinux 0x208f5a8b __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20bd371d xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x20bd5596 mutex_trylock +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20f95599 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x20feb72a register_cdrom +EXPORT_SYMBOL vmlinux 0x21110dbf mmioset +EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 +EXPORT_SYMBOL vmlinux 0x212aecb0 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x21510563 __register_chrdev +EXPORT_SYMBOL vmlinux 0x2157965d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x215888af fence_default_wait +EXPORT_SYMBOL vmlinux 0x215dcd45 kfree_skb +EXPORT_SYMBOL vmlinux 0x2167db87 nla_reserve +EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy +EXPORT_SYMBOL vmlinux 0x2174025c tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x21785a8e skb_copy_expand +EXPORT_SYMBOL vmlinux 0x2179d985 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x2190b5bf set_cached_acl +EXPORT_SYMBOL vmlinux 0x21a20263 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x21a95c01 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x21b85888 clone_cred +EXPORT_SYMBOL vmlinux 0x21ca3f33 generic_write_end +EXPORT_SYMBOL vmlinux 0x21ce52d2 unregister_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0x21d09e7a vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e41377 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x21ecdf94 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x21f39a6c pci_set_mwi +EXPORT_SYMBOL vmlinux 0x21f7eb8f claim_fiq +EXPORT_SYMBOL vmlinux 0x22293f9a lwtunnel_input +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222f6207 __nla_reserve +EXPORT_SYMBOL vmlinux 0x222fa684 lg_global_lock +EXPORT_SYMBOL vmlinux 0x2232a8a5 mempool_free +EXPORT_SYMBOL vmlinux 0x223cc898 omap_vrfb_max_height +EXPORT_SYMBOL vmlinux 0x224e09e1 vfs_rename +EXPORT_SYMBOL vmlinux 0x2256c012 __skb_csum_offload_chk +EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem +EXPORT_SYMBOL vmlinux 0x2262f4a4 mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x226e5a47 md_write_start +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2277d558 mx53_revision +EXPORT_SYMBOL vmlinux 0x229fb9d0 genlmsg_put +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b67e2a of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x22b7777f twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x22c182cb generic_file_llseek +EXPORT_SYMBOL vmlinux 0x22c955ba write_one_page +EXPORT_SYMBOL vmlinux 0x22db2de9 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x22f9d999 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x22fc4f3a trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x231aec44 seq_putc +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x231eb2f0 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x2333cf91 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x234d6a9b xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x2364d07a pci_pme_capable +EXPORT_SYMBOL vmlinux 0x237ae780 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x2381bf10 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x238bc9cb free_user_ns +EXPORT_SYMBOL vmlinux 0x2390c116 dquot_enable +EXPORT_SYMBOL vmlinux 0x239350f7 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23aa49d3 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x23b44ff1 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23baaa3f napi_gro_frags +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23f49750 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24013f94 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x2416bcb8 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x2430e21b generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x24376c03 vme_bus_type +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x244f4151 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x248c53b2 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x248f3350 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x2496690f mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x24a4ea95 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x24a7c5c9 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL vmlinux 0x24b4fd8e unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x24d3d742 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x24d4d957 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x24fb2b02 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x24fb8eed netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x25017db8 param_ops_bool +EXPORT_SYMBOL vmlinux 0x2509fac2 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x2527a087 vme_slave_set +EXPORT_SYMBOL vmlinux 0x25362aa6 shdma_chan_filter +EXPORT_SYMBOL vmlinux 0x2565f206 netif_napi_del +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25a0e0a8 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x25a3eaca blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x260debfb mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x261bf5c7 seq_printf +EXPORT_SYMBOL vmlinux 0x262c306c elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x265e999a tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x266f2c18 simple_readpage +EXPORT_SYMBOL vmlinux 0x269b38cc rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x26a67fab key_alloc +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26c2128c lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x26d474ae snd_ctl_unregister_ioctl +EXPORT_SYMBOL vmlinux 0x26d671bb bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x27555e1a __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x275ef902 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x275fa936 kill_block_super +EXPORT_SYMBOL vmlinux 0x276987e3 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x2788f01d dquot_commit_info +EXPORT_SYMBOL vmlinux 0x278f9d78 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27ca9032 pci_choose_state +EXPORT_SYMBOL vmlinux 0x27dd671a input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27e2a184 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x27ee078f netdev_change_features +EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 +EXPORT_SYMBOL vmlinux 0x28166464 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x2818dfbe jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x283e807c posix_lock_file +EXPORT_SYMBOL vmlinux 0x284228c0 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x2844a458 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x28680f25 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x2877b976 backlight_device_register +EXPORT_SYMBOL vmlinux 0x2880de0a inet6_offloads +EXPORT_SYMBOL vmlinux 0x2894658d inet_addr_type +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28d6861d __vmalloc +EXPORT_SYMBOL vmlinux 0x28e0af1b __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x291b70b6 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x29330b5c generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x2939610d kernel_listen +EXPORT_SYMBOL vmlinux 0x29403998 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x2951816a netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x296c029d vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x29770c4f find_get_entries_tag +EXPORT_SYMBOL vmlinux 0x2991b4b6 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x299faa26 snd_pcm_stop +EXPORT_SYMBOL vmlinux 0x29decadd blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x29e1b020 ida_simple_remove +EXPORT_SYMBOL vmlinux 0x29e37f0f rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x2a1c3726 register_netdev +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a3185b0 dev_emerg +EXPORT_SYMBOL vmlinux 0x2a3a96c5 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit +EXPORT_SYMBOL vmlinux 0x2a4b7126 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x2a4e6ba6 dump_skip +EXPORT_SYMBOL vmlinux 0x2a8c459b blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x2a8c6b75 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2ab2b3bd blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x2ab3cc9d __release_region +EXPORT_SYMBOL vmlinux 0x2ab7095a __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x2ac66942 pci_set_master +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2acfca6b phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x2adaa7a4 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x2aee58d5 tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0x2b0a3c64 amba_release_regions +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b106457 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x2b12925d cpumask_next_and +EXPORT_SYMBOL vmlinux 0x2b1b4b16 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b496e4a xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x2b4e956e mempool_create +EXPORT_SYMBOL vmlinux 0x2b737332 nvm_unregister_tgt_type +EXPORT_SYMBOL vmlinux 0x2b74b762 sk_stream_error +EXPORT_SYMBOL vmlinux 0x2b76bb17 dev_notice +EXPORT_SYMBOL vmlinux 0x2b781b51 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x2b784155 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x2b796a23 bio_put +EXPORT_SYMBOL vmlinux 0x2b849d49 dquot_get_state +EXPORT_SYMBOL vmlinux 0x2b9d3407 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bb616cf f_setown +EXPORT_SYMBOL vmlinux 0x2bbe98f6 vfs_readv +EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed +EXPORT_SYMBOL vmlinux 0x2bfc4215 pid_task +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c22a62e filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c2ad7af of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x2c314902 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up +EXPORT_SYMBOL vmlinux 0x2c3bdc9f nf_log_set +EXPORT_SYMBOL vmlinux 0x2c487764 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x2c649351 md_flush_request +EXPORT_SYMBOL vmlinux 0x2c67097e blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x2c6a24e6 pci_map_rom +EXPORT_SYMBOL vmlinux 0x2c70064f fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x2c7276ad tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem +EXPORT_SYMBOL vmlinux 0x2c7dfbda padata_do_serial +EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs +EXPORT_SYMBOL vmlinux 0x2c9151ae pcim_pin_device +EXPORT_SYMBOL vmlinux 0x2c988955 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x2ca5ee05 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x2cb6e8f0 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x2cc371e4 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x2cf6bc33 blk_requeue_request +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d1a32cd blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d31cf52 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x2d324248 skb_queue_head +EXPORT_SYMBOL vmlinux 0x2d325e6c xfrm_register_km +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d5b6c09 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x2d6507b5 _find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0x2d70ee2e nand_scan +EXPORT_SYMBOL vmlinux 0x2d748a33 bdi_register_owner +EXPORT_SYMBOL vmlinux 0x2d75a39a tcp_prequeue +EXPORT_SYMBOL vmlinux 0x2d8dc7fd d_add_ci +EXPORT_SYMBOL vmlinux 0x2d93205f nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x2d97bf48 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x2da331d0 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x2dadc7c2 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x2dbcbea4 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2de7f58e clk_add_alias +EXPORT_SYMBOL vmlinux 0x2deb3c95 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x2df91799 start_tty +EXPORT_SYMBOL vmlinux 0x2df9db88 sock_no_poll +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2810d8 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x2e3b3793 pci_bus_get +EXPORT_SYMBOL vmlinux 0x2e457dc3 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x2e5810c6 __aeabi_unwind_cpp_pr1 +EXPORT_SYMBOL vmlinux 0x2e694821 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x2e6b9491 make_kprojid +EXPORT_SYMBOL vmlinux 0x2e7a7109 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x2e813b3d __frontswap_store +EXPORT_SYMBOL vmlinux 0x2e91b648 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x2ea620cd get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x2eaf186c get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2edb2562 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2ef72fb0 register_sound_dsp +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f0bbb9f __mdiobus_register +EXPORT_SYMBOL vmlinux 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f52ff85 d_alloc +EXPORT_SYMBOL vmlinux 0x2f5f2a57 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2f89ce5a xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x2f8c2942 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x2fb1a58e param_ops_string +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2ff8d8c0 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0x3015d669 file_open_root +EXPORT_SYMBOL vmlinux 0x301629a5 amba_driver_unregister +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x30376040 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x3038f8ed netif_skb_features +EXPORT_SYMBOL vmlinux 0x304263aa of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x305047e4 tcf_hash_search +EXPORT_SYMBOL vmlinux 0x3051b010 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x305fc8cd swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x30637b48 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x308aad56 omap_vrfb_min_phys_size +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30c89a68 rt6_lookup +EXPORT_SYMBOL vmlinux 0x30ca0631 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x30d05620 inet6_getname +EXPORT_SYMBOL vmlinux 0x30daeeeb uart_add_one_port +EXPORT_SYMBOL vmlinux 0x30de991d inet_put_port +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30ff8be6 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x3104abe2 param_get_invbool +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x31196242 d_genocide +EXPORT_SYMBOL vmlinux 0x311c04a9 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x313e0a9c ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x315e101d mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x317eed40 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x3183e49a tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x318583c4 phy_stop +EXPORT_SYMBOL vmlinux 0x3185dcf4 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31ade203 dquot_acquire +EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x31d881aa nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x31f09008 nvm_get_blk +EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx +EXPORT_SYMBOL vmlinux 0x32002e12 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x3203afb3 console_stop +EXPORT_SYMBOL vmlinux 0x321848c1 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x3230052b dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x3234d11f tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x3238363f shdma_reset +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x32573b0a thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy +EXPORT_SYMBOL vmlinux 0x32907b91 idr_remove +EXPORT_SYMBOL vmlinux 0x32999fff mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x32a3de60 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x32a8c22a pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x32ad225a netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x32b4b52e mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x32d78ce8 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x32e66e55 sk_free +EXPORT_SYMBOL vmlinux 0x32e96bbc __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x32eb6219 phy_start +EXPORT_SYMBOL vmlinux 0x3303c161 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x330938e4 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x3316845e idr_get_next +EXPORT_SYMBOL vmlinux 0x331fb592 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x332cefd2 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x33595858 pps_event +EXPORT_SYMBOL vmlinux 0x335d39fa pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x336ecb33 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x336fcf95 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x338e66a5 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x33930449 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33d3166d bio_map_kern +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33e5961f genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33fe1ce8 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x3402176a ppp_input +EXPORT_SYMBOL vmlinux 0x341d11bd sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x341fddb5 dquot_alloc +EXPORT_SYMBOL vmlinux 0x3445e9a0 down_write_trylock +EXPORT_SYMBOL vmlinux 0x344b7739 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x347cbb5e param_get_string +EXPORT_SYMBOL vmlinux 0x348a2ab8 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34cbb4d4 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x34d20946 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x34d8ed62 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x34daef28 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x34e04e64 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x3501a105 netlink_unicast +EXPORT_SYMBOL vmlinux 0x3507a132 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x350cf0c7 from_kprojid +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x35181333 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x351c7ded dev_get_stats +EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x35781078 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x357ab4d9 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x3583d442 devm_memunmap +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35ae59ca sock_no_connect +EXPORT_SYMBOL vmlinux 0x35b1cefb filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x35b48a52 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x35ced73b page_address +EXPORT_SYMBOL vmlinux 0x35fbd6a1 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x35fc8d25 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x36020ca3 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable +EXPORT_SYMBOL vmlinux 0x3633d8d9 tty_devnum +EXPORT_SYMBOL vmlinux 0x363ee495 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x3676e7a4 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x369be285 skb_push +EXPORT_SYMBOL vmlinux 0x36a21aa6 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x36bb9547 fscrypt_fname_encrypted_size +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36cbf0de blk_sync_queue +EXPORT_SYMBOL vmlinux 0x36cee138 param_set_copystring +EXPORT_SYMBOL vmlinux 0x36e30189 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x36e3b9f1 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x36e8efe5 security_path_rename +EXPORT_SYMBOL vmlinux 0x36fb2b99 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x3723329d fb_blank +EXPORT_SYMBOL vmlinux 0x3729e635 __kfree_skb +EXPORT_SYMBOL vmlinux 0x3743728b __f_setown +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x375ab786 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x37613521 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x376e8db3 page_waitqueue +EXPORT_SYMBOL vmlinux 0x3771b461 crc_ccitt +EXPORT_SYMBOL vmlinux 0x378a2758 setattr_copy +EXPORT_SYMBOL vmlinux 0x378afe79 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x3794490d simple_link +EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL vmlinux 0x379894fc scsi_device_put +EXPORT_SYMBOL vmlinux 0x379abb50 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x379b28d4 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x379dee5f trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x37ab28d1 get_phy_device +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b0f163 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c0b107 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x37c432b3 block_write_end +EXPORT_SYMBOL vmlinux 0x37e07ebb blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x380cde96 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x38172291 netif_device_detach +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x382e2ef0 skb_pad +EXPORT_SYMBOL vmlinux 0x38332dda file_ns_capable +EXPORT_SYMBOL vmlinux 0x38359305 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x383f7aaa blk_start_request +EXPORT_SYMBOL vmlinux 0x384b1374 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x3892404d tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x3893926c skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure +EXPORT_SYMBOL vmlinux 0x389b3d8e tty_unlock +EXPORT_SYMBOL vmlinux 0x389ecf9e __bswapdi2 +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38bd449d inet_accept +EXPORT_SYMBOL vmlinux 0x38d3e38e blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x38ddbbe5 tc6393xb_lcd_mode +EXPORT_SYMBOL vmlinux 0x3924dd56 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x3942c678 dma_alloc_from_coherent +EXPORT_SYMBOL vmlinux 0x39431b99 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x39468b3d sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x395c2aec i2c_master_send +EXPORT_SYMBOL vmlinux 0x396209ba snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL vmlinux 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL vmlinux 0x39730d06 atomic_io_modify +EXPORT_SYMBOL vmlinux 0x398c9288 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x39982f87 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399c8680 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x39a24d5b fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x39a82c72 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL vmlinux 0x39bf9f03 da903x_query_status +EXPORT_SYMBOL vmlinux 0x39c27593 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x39c48809 put_cmsg +EXPORT_SYMBOL vmlinux 0x39d42596 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x39e26417 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x39e48d63 amba_device_unregister +EXPORT_SYMBOL vmlinux 0x39eff317 elevator_exit +EXPORT_SYMBOL vmlinux 0x39fbbcce sync_inode +EXPORT_SYMBOL vmlinux 0x39ffc896 kthread_bind +EXPORT_SYMBOL vmlinux 0x3a007ed8 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x3a078d8a netdev_warn +EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x3a233b36 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x3a48649c snd_pcm_suspend +EXPORT_SYMBOL vmlinux 0x3a53b8a6 tty_check_change +EXPORT_SYMBOL vmlinux 0x3a6246b8 simple_lookup +EXPORT_SYMBOL vmlinux 0x3a6a102b sk_busy_loop +EXPORT_SYMBOL vmlinux 0x3a6b4b73 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x3a772ea4 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x3a797a7a vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x3a8902e7 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x3a8ac087 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aa0b3d4 fence_signal +EXPORT_SYMBOL vmlinux 0x3aa968b3 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x3abb26b0 ioremap_wc +EXPORT_SYMBOL vmlinux 0x3abe57dd tcf_register_action +EXPORT_SYMBOL vmlinux 0x3ad04ee6 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x3adbb374 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x3ae13321 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x3af0fe77 snd_card_file_remove +EXPORT_SYMBOL vmlinux 0x3af2b2f0 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x3af963a5 dev_mc_add +EXPORT_SYMBOL vmlinux 0x3afe1e0a xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x3b0e0ebb dma_release_from_coherent +EXPORT_SYMBOL vmlinux 0x3b0fc4d6 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x3b1ce240 fscrypt_fname_usr_to_disk +EXPORT_SYMBOL vmlinux 0x3b1d0ab2 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x3b46774e inode_init_always +EXPORT_SYMBOL vmlinux 0x3b477830 import_single_range +EXPORT_SYMBOL vmlinux 0x3b49c618 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x3b5c4c53 nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x3b5f8805 fscrypt_inherit_context +EXPORT_SYMBOL vmlinux 0x3b6058ae zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x3b62042e blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b72a3ff generic_file_fsync +EXPORT_SYMBOL vmlinux 0x3b7698ac genphy_suspend +EXPORT_SYMBOL vmlinux 0x3b84bb09 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x3b91a1b1 clear_nlink +EXPORT_SYMBOL vmlinux 0x3b91f3af snd_free_pages +EXPORT_SYMBOL vmlinux 0x3ba66ca4 audit_log +EXPORT_SYMBOL vmlinux 0x3bb57661 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x3bbcc8d8 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base +EXPORT_SYMBOL vmlinux 0x3bc3cfa2 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x3bd0e786 blk_fetch_request +EXPORT_SYMBOL vmlinux 0x3bd98ec8 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x3bda7c7e blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x3bdc9890 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x3bfd2a41 dcache_readdir +EXPORT_SYMBOL vmlinux 0x3c0048d3 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c189644 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x3c29f40d neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x3c364e7a __napi_schedule +EXPORT_SYMBOL vmlinux 0x3c39c425 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c506eca blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x3c7abc61 put_disk +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3ca9763b kernel_accept +EXPORT_SYMBOL vmlinux 0x3cb8b07f bd_set_size +EXPORT_SYMBOL vmlinux 0x3cb94baa __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x3cca824b dget_parent +EXPORT_SYMBOL vmlinux 0x3ce266d7 cad_pid +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ce9fa39 kill_pgrp +EXPORT_SYMBOL vmlinux 0x3cf1a6c6 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL vmlinux 0x3cfa969a proc_douintvec +EXPORT_SYMBOL vmlinux 0x3d30409d iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap +EXPORT_SYMBOL vmlinux 0x3d460cc2 nf_register_hook +EXPORT_SYMBOL vmlinux 0x3d4a5829 load_nls_default +EXPORT_SYMBOL vmlinux 0x3d64ac44 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x3d9caa65 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x3d9d4008 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x3da9b7bd vga_get +EXPORT_SYMBOL vmlinux 0x3db0eed0 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x3db6cdba __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e0503a6 unregister_netdev +EXPORT_SYMBOL vmlinux 0x3e202736 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x3e27633a dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x3e30af83 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x3e5ca178 pci_disable_device +EXPORT_SYMBOL vmlinux 0x3e62bfd6 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x3e65ec21 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x3e884f4b vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e9399a2 tty_port_close +EXPORT_SYMBOL vmlinux 0x3eb6dbc7 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x3ed394c9 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x3ee85bc6 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x3ef64ee7 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x3f1b5673 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x3f1f9073 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x3f220d88 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x3f268a85 amba_device_register +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f55e749 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x3f5b67d5 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3f5c6471 del_timer_sync +EXPORT_SYMBOL vmlinux 0x3f5f9370 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x3f606071 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x3fab3ca9 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x3fab5e82 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x3fbc838e nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x3fc1aa9e sock_create_lite +EXPORT_SYMBOL vmlinux 0x3fce6190 device_add_disk +EXPORT_SYMBOL vmlinux 0x3ff8d37d mmc_release_host +EXPORT_SYMBOL vmlinux 0x4006ebbd neigh_connected_output +EXPORT_SYMBOL vmlinux 0x40079931 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x4018641a shdma_chan_probe +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x402c4d0c pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x40602fae pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x40607e4a snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL vmlinux 0x406af1b9 pci_set_vpd_size +EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 +EXPORT_SYMBOL vmlinux 0x4074374e inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x407a3275 omap_start_dma +EXPORT_SYMBOL vmlinux 0x407ae5f8 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x40813545 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x408b6219 generic_file_open +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x409a3510 of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40ad3abc neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x40ad456c tcf_em_register +EXPORT_SYMBOL vmlinux 0x40c01c2f __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x40c3f909 __nla_put +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d59ddd km_is_alive +EXPORT_SYMBOL vmlinux 0x40e48512 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x40ea83cc of_device_is_available +EXPORT_SYMBOL vmlinux 0x40ed524a _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 +EXPORT_SYMBOL vmlinux 0x412efe98 tso_build_data +EXPORT_SYMBOL vmlinux 0x413dd776 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x41a019de blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x41a641b1 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x41b3f0fc touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0x41c8f831 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x41f5a55c kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x41f8647f radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x422006b0 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x4220c94f invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x423d4e8c dm_put_table_device +EXPORT_SYMBOL vmlinux 0x423d81ed ida_pre_get +EXPORT_SYMBOL vmlinux 0x42404132 mpage_readpages +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42576997 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x42585511 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x425bbd06 page_get_link +EXPORT_SYMBOL vmlinux 0x426cd73c pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x4276369e bdput +EXPORT_SYMBOL vmlinux 0x4287eda8 d_drop +EXPORT_SYMBOL vmlinux 0x42883906 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all +EXPORT_SYMBOL vmlinux 0x429be6d3 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0x42b5c1fc of_device_register +EXPORT_SYMBOL vmlinux 0x42c4f149 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x42c58aba __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x42d11429 inode_set_flags +EXPORT_SYMBOL vmlinux 0x42d2ab0d input_get_keycode +EXPORT_SYMBOL vmlinux 0x42d9a34d mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x42f94e08 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x43071981 inet_shutdown +EXPORT_SYMBOL vmlinux 0x43121664 param_get_ushort +EXPORT_SYMBOL vmlinux 0x43462ab6 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x434d257c kobject_put +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x4352f25e dev_remove_offload +EXPORT_SYMBOL vmlinux 0x4360db76 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x436bcd93 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438201f9 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43968888 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x43bc79a8 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x43bd648c simple_map_init +EXPORT_SYMBOL vmlinux 0x43bfb0d2 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x43d2da38 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x43de9fdb __frontswap_load +EXPORT_SYMBOL vmlinux 0x43ec72c3 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x441ed159 omap_get_dma_src_pos +EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume +EXPORT_SYMBOL vmlinux 0x4425f60c pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x444293e5 release_sock +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x44449a20 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x444710fb consume_skb +EXPORT_SYMBOL vmlinux 0x445ace27 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x44643b93 __aeabi_lmul +EXPORT_SYMBOL vmlinux 0x4479315d dm_table_get_md +EXPORT_SYMBOL vmlinux 0x447a83bd genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x4482cde5 mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0x448b7eea of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x448fb032 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x449cc359 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x44aa2097 get_cached_acl +EXPORT_SYMBOL vmlinux 0x44afd6a4 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44b5ee9a kasprintf +EXPORT_SYMBOL vmlinux 0x44bf32ff inode_init_owner +EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x44dc200b blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x44dd3d8d completion_done +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x4506e804 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x4525f1d0 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x453b56c1 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x4541c507 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x4562a134 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low +EXPORT_SYMBOL vmlinux 0x45d63fe1 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x46084295 kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x4655ccf2 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x4657ebaa fence_context_alloc +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x4684e1b3 serio_close +EXPORT_SYMBOL vmlinux 0x468dcf23 pci_enable_msix +EXPORT_SYMBOL vmlinux 0x469c4577 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x46a43bd4 I_BDEV +EXPORT_SYMBOL vmlinux 0x46b195de __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 +EXPORT_SYMBOL vmlinux 0x46ded414 dev_uc_del +EXPORT_SYMBOL vmlinux 0x46fd7bd9 param_get_ullong +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x4733b9e2 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x4736f97f param_set_ushort +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x474b4f13 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x476a7aaf fb_validate_mode +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x47c09d73 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x47c2d358 skb_store_bits +EXPORT_SYMBOL vmlinux 0x47ce2745 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range +EXPORT_SYMBOL vmlinux 0x47ea3e55 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x47f757de elf_platform +EXPORT_SYMBOL vmlinux 0x47fa2e1f netif_carrier_on +EXPORT_SYMBOL vmlinux 0x48058101 of_root +EXPORT_SYMBOL vmlinux 0x4809e838 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x481b561e of_phy_find_device +EXPORT_SYMBOL vmlinux 0x48208280 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x4842a161 pci_get_class +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x486f903d ipv4_specific +EXPORT_SYMBOL vmlinux 0x48828842 dquot_destroy +EXPORT_SYMBOL vmlinux 0x48a46b4c kmem_cache_create +EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type +EXPORT_SYMBOL vmlinux 0x48a879ed jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x48b68c08 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48be0071 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x48ead470 tcf_hash_check +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x491caf04 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x4941b4a5 snd_timer_stop +EXPORT_SYMBOL vmlinux 0x494ff375 dm_io +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x496f8e16 filp_close +EXPORT_SYMBOL vmlinux 0x497bd842 pci_request_region +EXPORT_SYMBOL vmlinux 0x4984757a jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x499cb58c prepare_to_wait +EXPORT_SYMBOL vmlinux 0x49a32e0a ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x49a44e68 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49bc9f20 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x49bf4418 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x49ce1902 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x49dd996f __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x49dfa8bd pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x49ea58be radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit +EXPORT_SYMBOL vmlinux 0x49ee5127 of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a02fcec xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x4a05ef76 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x4a0b6f0c skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x4a0d26d8 dm_put_device +EXPORT_SYMBOL vmlinux 0x4a13d135 __napi_complete +EXPORT_SYMBOL vmlinux 0x4a1a023c blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x4a1b882a del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x4a23184e snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL vmlinux 0x4a2c9049 arm_smccc_smc +EXPORT_SYMBOL vmlinux 0x4a39e5a1 omap_set_dma_src_params +EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL vmlinux 0x4a45004a ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x4a49ab50 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x4a52682d filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x4a545dee dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x4a567e02 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x4a57b339 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x4a59d19a tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x4a5ab109 genphy_update_link +EXPORT_SYMBOL vmlinux 0x4a8916f2 snd_ctl_find_id +EXPORT_SYMBOL vmlinux 0x4aa10879 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x4aaf73e1 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x4ab60b09 vfs_statfs +EXPORT_SYMBOL vmlinux 0x4ab984dd pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x4ac928d7 mdio_device_create +EXPORT_SYMBOL vmlinux 0x4ae12cf9 register_filesystem +EXPORT_SYMBOL vmlinux 0x4afe471b mdio_device_free +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b14dc15 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b20af66 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x4b292462 rwsem_down_write_failed_killable +EXPORT_SYMBOL vmlinux 0x4b3bff24 register_qdisc +EXPORT_SYMBOL vmlinux 0x4b462aad elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x4b4fe75b radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x4b5a637e should_remove_suid +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b785da3 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x4b78933c qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bb25498 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x4bb5f985 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x4bde6757 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x4be7fb63 up +EXPORT_SYMBOL vmlinux 0x4be8215c netdev_notice +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4c03e8bb new_inode +EXPORT_SYMBOL vmlinux 0x4c233a44 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x4c244f50 bmap +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c37672d serio_interrupt +EXPORT_SYMBOL vmlinux 0x4c418516 vfs_mknod +EXPORT_SYMBOL vmlinux 0x4c5fc58c _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c63dec4 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x4c790715 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x4c84ee5d blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x4c86184b remove_wait_queue +EXPORT_SYMBOL vmlinux 0x4c8cbdbe flush_old_exec +EXPORT_SYMBOL vmlinux 0x4c929cfe fence_array_create +EXPORT_SYMBOL vmlinux 0x4c984bc0 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x4cc2854d tegra114_clock_assert_dfll_dvco_reset +EXPORT_SYMBOL vmlinux 0x4ccd53c1 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4ce2db50 try_to_release_page +EXPORT_SYMBOL vmlinux 0x4d0569a8 reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d179b23 mdiobus_write +EXPORT_SYMBOL vmlinux 0x4d25953d pci_reenable_device +EXPORT_SYMBOL vmlinux 0x4d3ac3b6 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d771a0b d_path +EXPORT_SYMBOL vmlinux 0x4d7991cd dquot_quota_off +EXPORT_SYMBOL vmlinux 0x4d83b295 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x4d8d8609 scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4de78390 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x4dec6038 memscan +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df12e87 vfs_write +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e40883a always_delete_dentry +EXPORT_SYMBOL vmlinux 0x4e506013 omap_dma_link_lch +EXPORT_SYMBOL vmlinux 0x4e542501 snd_register_device +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e690f9e revalidate_disk +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4eade61d twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x4ecd0a16 seq_file_path +EXPORT_SYMBOL vmlinux 0x4ee108ff jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x4efa34dd cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x4f0e47f9 current_in_userns +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f241401 ptp_clock_index +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f6c15e4 shdma_chan_remove +EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free +EXPORT_SYMBOL vmlinux 0x4f99624b bioset_free +EXPORT_SYMBOL vmlinux 0x4f9d9f67 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x4fb66ccf tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x4fb69454 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x4fbae6a6 uuid_le_to_bin +EXPORT_SYMBOL vmlinux 0x4fc289b5 submit_bh +EXPORT_SYMBOL vmlinux 0x4fc33c80 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x4fdc9b12 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x4fdcf197 cpu_user +EXPORT_SYMBOL vmlinux 0x4fe983bf pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x4ff389d8 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x501375b3 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x501c1231 ata_port_printk +EXPORT_SYMBOL vmlinux 0x5025bd99 scsi_init_io +EXPORT_SYMBOL vmlinux 0x502dbd92 netpoll_setup +EXPORT_SYMBOL vmlinux 0x502eb3bb xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL vmlinux 0x5047704f follow_down +EXPORT_SYMBOL vmlinux 0x505eb54e jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x50749d68 abx500_register_ops +EXPORT_SYMBOL vmlinux 0x5079d1d4 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x507a36dd inet_frag_find +EXPORT_SYMBOL vmlinux 0x508cdb85 udp_prot +EXPORT_SYMBOL vmlinux 0x509817cf vprintk_emit +EXPORT_SYMBOL vmlinux 0x509bf218 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x50b3359a nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50be70fe blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x50e666ef fscrypt_free_filename +EXPORT_SYMBOL vmlinux 0x50f30926 poll_freewait +EXPORT_SYMBOL vmlinux 0x50f8e98b dev_uc_sync +EXPORT_SYMBOL vmlinux 0x511746c1 dump_fpu +EXPORT_SYMBOL vmlinux 0x5117f9e2 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x513b02cb d_set_d_op +EXPORT_SYMBOL vmlinux 0x514cc273 arm_copy_from_user +EXPORT_SYMBOL vmlinux 0x51739b98 param_ops_uint +EXPORT_SYMBOL vmlinux 0x517d42e2 d_make_root +EXPORT_SYMBOL vmlinux 0x51b8fda2 key_type_keyring +EXPORT_SYMBOL vmlinux 0x51d52d97 snd_timer_new +EXPORT_SYMBOL vmlinux 0x51d559d1 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x51d90965 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x51e24fba mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid +EXPORT_SYMBOL vmlinux 0x51e9b82d wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x51e9de1c inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup +EXPORT_SYMBOL vmlinux 0x51f02959 proc_create_data +EXPORT_SYMBOL vmlinux 0x51f249b4 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x5212c72f snd_timer_start +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x5222a4ec dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x52259f99 of_find_property +EXPORT_SYMBOL vmlinux 0x5229bd5e prepare_creds +EXPORT_SYMBOL vmlinux 0x522bb370 inet_offloads +EXPORT_SYMBOL vmlinux 0x524f69f6 mb_cache_entry_delete_block +EXPORT_SYMBOL vmlinux 0x525c9e61 misc_register +EXPORT_SYMBOL vmlinux 0x527460e5 __serio_register_port +EXPORT_SYMBOL vmlinux 0x52851060 keyring_clear +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x528d0c14 idr_init +EXPORT_SYMBOL vmlinux 0x529fe2ba fence_signal_locked +EXPORT_SYMBOL vmlinux 0x529fe6b4 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le +EXPORT_SYMBOL vmlinux 0x52bb841c atomic_io_modify_relaxed +EXPORT_SYMBOL vmlinux 0x52ca152b sk_dst_check +EXPORT_SYMBOL vmlinux 0x52ce2b73 igrab +EXPORT_SYMBOL vmlinux 0x52d227ee inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL vmlinux 0x52fab8a9 param_set_short +EXPORT_SYMBOL vmlinux 0x52fc862d bio_split +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x534c53f6 md_check_recovery +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x538fa9fb dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x53c31da6 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x53c50a4b sock_wfree +EXPORT_SYMBOL vmlinux 0x53d06746 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x53d46b74 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x53d5c4bf swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x5403d52c writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x54102317 netif_device_attach +EXPORT_SYMBOL vmlinux 0x541da859 __pagevec_release +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5444c652 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x544950db serio_bus +EXPORT_SYMBOL vmlinux 0x546b82ff vme_irq_free +EXPORT_SYMBOL vmlinux 0x546c7fa9 of_get_pci_address +EXPORT_SYMBOL vmlinux 0x547077ec __wake_up_bit +EXPORT_SYMBOL vmlinux 0x548ecb7a mount_nodev +EXPORT_SYMBOL vmlinux 0x54995602 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x549fdd91 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54b88ee3 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54c523c9 nf_log_register +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54efadb2 wireless_send_event +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x55359e74 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x553634af cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x553f7aa7 generic_setxattr +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x554a925e vc_resize +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x55590553 km_state_expired +EXPORT_SYMBOL vmlinux 0x55645d7c simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x558f939c tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x55ac2c4f netlink_ack +EXPORT_SYMBOL vmlinux 0x55b7e8d4 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55d6c4d2 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x55de4e59 bh_submit_read +EXPORT_SYMBOL vmlinux 0x5615b15d set_anon_super +EXPORT_SYMBOL vmlinux 0x5622cf00 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x564a709b tcp_connect +EXPORT_SYMBOL vmlinux 0x56761f3f neigh_table_init +EXPORT_SYMBOL vmlinux 0x568626ac vme_lm_request +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x5697bef1 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x56a4d154 sg_split +EXPORT_SYMBOL vmlinux 0x56a53e90 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56cb2629 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x56e02bb0 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x571b2a4e tcp_prot +EXPORT_SYMBOL vmlinux 0x57278657 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x573d916b scsi_device_resume +EXPORT_SYMBOL vmlinux 0x57495334 input_close_device +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x574c917b skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x576c85fc skb_checksum_help +EXPORT_SYMBOL vmlinux 0x5781378e mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x57828259 skb_insert +EXPORT_SYMBOL vmlinux 0x578bcef5 skb_checksum +EXPORT_SYMBOL vmlinux 0x578cc625 fence_free +EXPORT_SYMBOL vmlinux 0x579153db swake_up +EXPORT_SYMBOL vmlinux 0x57989e24 seqno_fence_ops +EXPORT_SYMBOL vmlinux 0x57b5ae0e copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits +EXPORT_SYMBOL vmlinux 0x57ee4991 arp_create +EXPORT_SYMBOL vmlinux 0x57f77337 snd_ctl_make_virtual_master +EXPORT_SYMBOL vmlinux 0x580bfbc1 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x580e89f2 simple_setattr +EXPORT_SYMBOL vmlinux 0x58151eae rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582d9528 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x584b57e3 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x58516557 omap_set_dma_src_data_pack +EXPORT_SYMBOL vmlinux 0x5861bd96 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x5883db5f submit_bio +EXPORT_SYMBOL vmlinux 0x589cab35 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58c065f7 notify_change +EXPORT_SYMBOL vmlinux 0x58d633c7 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58f22d2a bdi_destroy +EXPORT_SYMBOL vmlinux 0x59054ae5 __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x5915213d d_find_any_alias +EXPORT_SYMBOL vmlinux 0x5920d2e5 input_open_device +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 +EXPORT_SYMBOL vmlinux 0x595f667d param_ops_ullong +EXPORT_SYMBOL vmlinux 0x598542b2 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x598d04a3 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x599c1e01 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x599d3422 component_match_add_release +EXPORT_SYMBOL vmlinux 0x59a0e5ba of_parse_phandle +EXPORT_SYMBOL vmlinux 0x59a17bfc tegra114_clock_tune_cpu_trimmers_high +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59cdd0e1 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x59d0e4d4 fscrypt_encrypt_page +EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area +EXPORT_SYMBOL vmlinux 0x59d62196 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x59db04e8 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 +EXPORT_SYMBOL vmlinux 0x59e76333 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x59ee741e reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x59eef78d input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x59f7378c __ps2_command +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a2a6e1f cdev_add +EXPORT_SYMBOL vmlinux 0x5a35de47 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x5a3ce2ea fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x5a4555d3 clkdev_drop +EXPORT_SYMBOL vmlinux 0x5a8c6e7b pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x5a8c7f0b kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x5aa980e1 __mutex_init +EXPORT_SYMBOL vmlinux 0x5ab630a6 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x5ac54a5f snd_timer_notify +EXPORT_SYMBOL vmlinux 0x5ac89fd7 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x5acd86ef devm_memremap +EXPORT_SYMBOL vmlinux 0x5ae5be44 lg_lock_init +EXPORT_SYMBOL vmlinux 0x5aea5c70 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x5afcbbd5 snd_pcm_new_stream +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b04be5a disable_fiq +EXPORT_SYMBOL vmlinux 0x5b16e1ec d_invalidate +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b2c7693 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x5b3d53ff netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x5b4cfc1a kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x5b581f88 elm_decode_bch_error_page +EXPORT_SYMBOL vmlinux 0x5b5b5975 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x5b5d7993 open_exec +EXPORT_SYMBOL vmlinux 0x5b730864 kernel_write +EXPORT_SYMBOL vmlinux 0x5b7618c5 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x5b93887f tcp_parse_options +EXPORT_SYMBOL vmlinux 0x5b95748f abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x5b999a9a pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x5bb043da pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x5bb9daec __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0x5bbc078a tso_start +EXPORT_SYMBOL vmlinux 0x5bc1c0d8 audit_log_start +EXPORT_SYMBOL vmlinux 0x5be9a502 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x5c0ad9ac scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x5c1ad622 do_splice_direct +EXPORT_SYMBOL vmlinux 0x5c265cba sg_init_one +EXPORT_SYMBOL vmlinux 0x5c2b20ce posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x5c3efbed snd_pcm_open_substream +EXPORT_SYMBOL vmlinux 0x5c415329 fscrypt_restore_control_page +EXPORT_SYMBOL vmlinux 0x5c436cdc phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x5c55d7de inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x5c620e2c mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x5c622e00 inet_bind +EXPORT_SYMBOL vmlinux 0x5c6f1d2a tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x5c8391a9 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x5c84a9b1 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x5c90402e devm_request_resource +EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id +EXPORT_SYMBOL vmlinux 0x5c942219 scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x5c9a4f77 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x5c9b2cd6 simple_open +EXPORT_SYMBOL vmlinux 0x5ca126e9 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x5ccfde94 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x5cd0ecb6 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d0989bb netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x5d18de25 irq_stat +EXPORT_SYMBOL vmlinux 0x5d27067f vm_map_ram +EXPORT_SYMBOL vmlinux 0x5d4a8320 kvasprintf +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d780a9b netdev_info +EXPORT_SYMBOL vmlinux 0x5d850b7c __getblk_gfp +EXPORT_SYMBOL vmlinux 0x5d89cb8c make_bad_inode +EXPORT_SYMBOL vmlinux 0x5d8af683 d_exact_alias +EXPORT_SYMBOL vmlinux 0x5d9ab321 down_write +EXPORT_SYMBOL vmlinux 0x5daea29e reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x5dcebe68 flush_signals +EXPORT_SYMBOL vmlinux 0x5dcf6341 outer_cache +EXPORT_SYMBOL vmlinux 0x5ddda0dc fence_add_callback +EXPORT_SYMBOL vmlinux 0x5dee4144 give_up_console +EXPORT_SYMBOL vmlinux 0x5df735de pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x5dfee94f current_fs_time +EXPORT_SYMBOL vmlinux 0x5e0cb8f9 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x5e14ac00 udp_proc_register +EXPORT_SYMBOL vmlinux 0x5e210a14 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x5e447023 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x5e4dd429 nand_write_oob_std +EXPORT_SYMBOL vmlinux 0x5e571250 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x5e6ed032 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x5e6f77ce sock_create_kern +EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping +EXPORT_SYMBOL vmlinux 0x5e7ad375 tcp_proc_register +EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL vmlinux 0x5e825786 cpumask_any_but +EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e8c7aad d_add +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e9718d3 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ebe2861 iov_iter_init +EXPORT_SYMBOL vmlinux 0x5ec50fb1 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ee5bed1 tty_throttle +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f163c19 sock_rfree +EXPORT_SYMBOL vmlinux 0x5f231305 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x5f27323c _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x5f51caa3 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x5f754e5a memset +EXPORT_SYMBOL vmlinux 0x5f8c63c8 md_integrity_register +EXPORT_SYMBOL vmlinux 0x5f8c6f71 textsearch_register +EXPORT_SYMBOL vmlinux 0x5f941d90 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fdad723 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x5febef1c proc_set_size +EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602483fc __ip_select_ident +EXPORT_SYMBOL vmlinux 0x6027a70d insert_inode_locked +EXPORT_SYMBOL vmlinux 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x604a380a rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x60525f21 inet_ioctl +EXPORT_SYMBOL vmlinux 0x605bd802 ip6_xmit +EXPORT_SYMBOL vmlinux 0x6065e071 page_mapping +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x6077e49d param_get_int +EXPORT_SYMBOL vmlinux 0x6090259b xfrm_init_state +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x6097387f blk_recount_segments +EXPORT_SYMBOL vmlinux 0x609d1007 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x609ee004 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60c7289f scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x60df8df6 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x60e192ce phy_start_aneg +EXPORT_SYMBOL vmlinux 0x60fd01ec inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x60fffebc input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x610c3bf1 of_platform_device_create +EXPORT_SYMBOL vmlinux 0x611b41a8 dquot_initialize +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x6139f293 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x6148a4a1 snd_timer_open +EXPORT_SYMBOL vmlinux 0x61498b38 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x614fdc57 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x6151365f netlink_net_capable +EXPORT_SYMBOL vmlinux 0x61549e88 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x615a43a3 param_ops_int +EXPORT_SYMBOL vmlinux 0x6164a532 read_code +EXPORT_SYMBOL vmlinux 0x6179e81c audit_log_task_info +EXPORT_SYMBOL vmlinux 0x617a218d __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x61815ef1 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x61a4d937 mapping_tagged +EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61bde4ca blk_integrity_register +EXPORT_SYMBOL vmlinux 0x61c03b39 dst_discard_out +EXPORT_SYMBOL vmlinux 0x61d48975 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x61d94ef1 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x61e8e000 inet_gro_receive +EXPORT_SYMBOL vmlinux 0x61fe3437 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x61ffc136 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x620bb1b8 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le +EXPORT_SYMBOL vmlinux 0x62249735 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x62296be1 qcom_scm_get_version +EXPORT_SYMBOL vmlinux 0x62434e3a param_get_bool +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x628c1e6d udplite_table +EXPORT_SYMBOL vmlinux 0x629ec483 __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x62b23d62 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x62cda48b invalidate_partition +EXPORT_SYMBOL vmlinux 0x62e4d92e pci_iomap +EXPORT_SYMBOL vmlinux 0x62f569a7 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x63002806 fb_pan_display +EXPORT_SYMBOL vmlinux 0x630103e0 no_llseek +EXPORT_SYMBOL vmlinux 0x63089754 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x630fab7e mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x63134ef2 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631e6987 mount_ns +EXPORT_SYMBOL vmlinux 0x631fa071 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x6335de48 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x634c7e8c release_resource +EXPORT_SYMBOL vmlinux 0x636945f9 unregister_key_type +EXPORT_SYMBOL vmlinux 0x636c83b3 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x638e1dbd jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63aadf42 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x63aba82e scsi_remove_target +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63cf8f26 pci_select_bars +EXPORT_SYMBOL vmlinux 0x63e4c28f account_page_dirtied +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6413f348 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x643fa6d0 __radix_tree_insert +EXPORT_SYMBOL vmlinux 0x64739bb8 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x6497ac36 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a02d7f param_array_ops +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64be3e3c dev_get_by_index +EXPORT_SYMBOL vmlinux 0x64c1fce6 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x64efadb0 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x650f628f ip_do_fragment +EXPORT_SYMBOL vmlinux 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL vmlinux 0x6512fee9 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x6522cd3e check_disk_size_change +EXPORT_SYMBOL vmlinux 0x6524d3ee remap_pfn_range +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65466939 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x65557a81 mdio_device_register +EXPORT_SYMBOL vmlinux 0x6558e909 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x655b2acd snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL vmlinux 0x65728402 datagram_poll +EXPORT_SYMBOL vmlinux 0x6579c28d __secpath_destroy +EXPORT_SYMBOL vmlinux 0x65867cc5 __neigh_create +EXPORT_SYMBOL vmlinux 0x65961fbd security_path_mknod +EXPORT_SYMBOL vmlinux 0x65c40795 dentry_open +EXPORT_SYMBOL vmlinux 0x65d46d97 unregister_nls +EXPORT_SYMBOL vmlinux 0x65d81022 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65dd2860 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x65e34eae pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x65ea3b6e pcie_get_mps +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x661ccbc8 seq_release +EXPORT_SYMBOL vmlinux 0x661ede3a dquot_commit +EXPORT_SYMBOL vmlinux 0x66227eae vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x662472fc elevator_alloc +EXPORT_SYMBOL vmlinux 0x66342a7f __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x663f91ba try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x6670f237 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x66788386 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x66790052 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x66818938 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x668236c1 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x66affea2 skb_copy +EXPORT_SYMBOL vmlinux 0x66c1245c key_unlink +EXPORT_SYMBOL vmlinux 0x66c330d6 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x6720f1b7 tcf_hashinfo_destroy +EXPORT_SYMBOL vmlinux 0x6721acf0 tso_count_descs +EXPORT_SYMBOL vmlinux 0x6732c785 pci_enable_device +EXPORT_SYMBOL vmlinux 0x6750a2e8 cpu_tlb +EXPORT_SYMBOL vmlinux 0x675381b3 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit +EXPORT_SYMBOL vmlinux 0x6786c624 snd_pcm_lib_read +EXPORT_SYMBOL vmlinux 0x67917e47 nvm_submit_io +EXPORT_SYMBOL vmlinux 0x67ad9a44 follow_up +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67cdcff7 devm_free_irq +EXPORT_SYMBOL vmlinux 0x67db701a key_link +EXPORT_SYMBOL vmlinux 0x67e61a70 simple_unlink +EXPORT_SYMBOL vmlinux 0x67ecb373 snd_pcm_mmap_data +EXPORT_SYMBOL vmlinux 0x67f161ab skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x67f92ebc __next_node_in +EXPORT_SYMBOL vmlinux 0x67fc1379 inode_change_ok +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680decc0 noop_fsync +EXPORT_SYMBOL vmlinux 0x680f8b62 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x6814089f sock_efree +EXPORT_SYMBOL vmlinux 0x6816fe8b call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x682af47c tty_port_close_end +EXPORT_SYMBOL vmlinux 0x684ee648 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x6852aaf6 irq_to_desc +EXPORT_SYMBOL vmlinux 0x68640290 gen_pool_free +EXPORT_SYMBOL vmlinux 0x687083a6 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x68869bae panic_notifier_list +EXPORT_SYMBOL vmlinux 0x68926799 inet_gso_segment +EXPORT_SYMBOL vmlinux 0x6896a83c get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x689beb4d block_invalidatepage +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL vmlinux 0x68aa4fea bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x68bd8ec7 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x68be65ea arp_xmit +EXPORT_SYMBOL vmlinux 0x68c3df02 fput +EXPORT_SYMBOL vmlinux 0x68e705f0 dev_close +EXPORT_SYMBOL vmlinux 0x68e75d21 snd_pcm_hw_constraint_step +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x69007c63 fb_show_logo +EXPORT_SYMBOL vmlinux 0x6910a2d8 mpage_readpage +EXPORT_SYMBOL vmlinux 0x6915eb38 down_interruptible +EXPORT_SYMBOL vmlinux 0x6927bbb7 snd_timer_continue +EXPORT_SYMBOL vmlinux 0x694602ba cont_write_begin +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x69a3f96b netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69ae1d03 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x69b594c8 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x69b6f8d9 omap_set_dma_transfer_params +EXPORT_SYMBOL vmlinux 0x69c93e5a napi_complete_done +EXPORT_SYMBOL vmlinux 0x69ed414d pcim_enable_device +EXPORT_SYMBOL vmlinux 0x69eedc10 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x69fa34ba kernel_getsockname +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a0455a5 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x6a0f5135 __inode_permission +EXPORT_SYMBOL vmlinux 0x6a333fbd generic_permission +EXPORT_SYMBOL vmlinux 0x6a3e29a0 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x6a3f3b91 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0x6a472659 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6aba319f n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x6abcd3c7 dmam_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x6ac91d5e input_allocate_device +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6aec94be set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b1db1a8 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x6b29aded serio_unregister_port +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b2e3333 netdev_emerg +EXPORT_SYMBOL vmlinux 0x6b413fa8 path_get +EXPORT_SYMBOL vmlinux 0x6b444930 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x6b6dca8c phy_driver_register +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bca6b38 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6bf5737a lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x6bfc3694 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x6c1c40e6 set_user_nice +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c247593 __blk_run_queue +EXPORT_SYMBOL vmlinux 0x6c2dcd83 snd_component_add +EXPORT_SYMBOL vmlinux 0x6c2e497d ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x6c32e6c8 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x6c3bd761 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x6c471426 install_exec_creds +EXPORT_SYMBOL vmlinux 0x6c4831db page_symlink +EXPORT_SYMBOL vmlinux 0x6c5882aa of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c685bd1 blk_get_request +EXPORT_SYMBOL vmlinux 0x6c699443 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x6c6cdd4d wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x6c6e85e4 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x6c6eeec1 snd_pcm_set_ops +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c9fad32 bio_advance +EXPORT_SYMBOL vmlinux 0x6cc9d670 dump_align +EXPORT_SYMBOL vmlinux 0x6cd0bb66 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x6cd9aa97 init_special_inode +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6ce21df0 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x6cfad96c vfs_rmdir +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d10bafd pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x6d1c44dd lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x6d1efac0 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x6d20877d dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d296205 vme_register_driver +EXPORT_SYMBOL vmlinux 0x6d340272 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d4ccd6f uart_update_timeout +EXPORT_SYMBOL vmlinux 0x6d4fc520 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x6d662533 _find_first_bit_le +EXPORT_SYMBOL vmlinux 0x6d6ab0d4 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x6d896d4b bio_endio +EXPORT_SYMBOL vmlinux 0x6d9703ec key_task_permission +EXPORT_SYMBOL vmlinux 0x6d976b81 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x6dcc6ae5 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x6dcdff8c mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e143569 freeze_bdev +EXPORT_SYMBOL vmlinux 0x6e282498 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x6e2de999 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x6e3b819f sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x6e508a13 prepare_to_swait +EXPORT_SYMBOL vmlinux 0x6e58596f ps2_handle_response +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7661aa netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x6e93d4b9 vga_put +EXPORT_SYMBOL vmlinux 0x6e9d83a8 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6eac0c88 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x6eb2bdc4 km_query +EXPORT_SYMBOL vmlinux 0x6ec9ccdb _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x6eca4d4f mod_timer_pending +EXPORT_SYMBOL vmlinux 0x6ee6fe84 seq_pad +EXPORT_SYMBOL vmlinux 0x6ef3082c passthru_features_check +EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL vmlinux 0x6f12c5fb of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x6f154be7 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x6f250495 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x6f4659c6 thaw_super +EXPORT_SYMBOL vmlinux 0x6f58ca5e seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x6f84463c __kernel_write +EXPORT_SYMBOL vmlinux 0x6f845e8c poll_initwait +EXPORT_SYMBOL vmlinux 0x6f856a34 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6faac907 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fc0da62 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fcd914b make_kuid +EXPORT_SYMBOL vmlinux 0x6fdd76d2 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x6fdf1079 blk_delay_queue +EXPORT_SYMBOL vmlinux 0x6ffcfeed crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x70097aa0 nand_bch_free +EXPORT_SYMBOL vmlinux 0x700c1fae __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x700c6a2e pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x703e43aa netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x704c94a1 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x705e92a3 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x706546b5 snd_timer_interrupt +EXPORT_SYMBOL vmlinux 0x706a0b1b blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x706e04c1 padata_start +EXPORT_SYMBOL vmlinux 0x7075ca15 mmc_add_host +EXPORT_SYMBOL vmlinux 0x707ea59e __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x70b0242a pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x70bc313b softnet_data +EXPORT_SYMBOL vmlinux 0x70c0f0e7 snd_mixer_oss_notify_callback +EXPORT_SYMBOL vmlinux 0x70dcc158 dup_iter +EXPORT_SYMBOL vmlinux 0x70e4faa1 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x70e89925 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x71221153 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x71240513 eth_header_cache +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x71308dcc elv_rb_del +EXPORT_SYMBOL vmlinux 0x71477181 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x714bdcd8 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x716aebfd __invalidate_device +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71722dce netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x7174c1f2 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x7180173b mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x71980810 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71bd24a0 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71ce3f97 blk_start_queue_async +EXPORT_SYMBOL vmlinux 0x71da735e twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x71e41c6c elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x720f9067 vfs_setpos +EXPORT_SYMBOL vmlinux 0x72240371 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x723a5ed9 tcp_filter +EXPORT_SYMBOL vmlinux 0x7240d746 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x724c5f78 bdgrab +EXPORT_SYMBOL vmlinux 0x7250b35c scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x727624cc snd_ctl_remove_id +EXPORT_SYMBOL vmlinux 0x7295db72 udp_disconnect +EXPORT_SYMBOL vmlinux 0x72a0e6f2 __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72c5d604 skb_make_writable +EXPORT_SYMBOL vmlinux 0x72c7a7ef kmap_atomic +EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x72e4ec59 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72eb3eef security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x72f4559f skb_clone_sk +EXPORT_SYMBOL vmlinux 0x73000512 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x732fd122 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x7343f072 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x734754f2 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x737e1093 mdiobus_read +EXPORT_SYMBOL vmlinux 0x73957159 __module_get +EXPORT_SYMBOL vmlinux 0x739c5972 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x739d2a63 serio_reconnect +EXPORT_SYMBOL vmlinux 0x73ae6582 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x73b752f5 iterate_dir +EXPORT_SYMBOL vmlinux 0x73da94aa dev_open +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73e9efb9 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x73f4b2b7 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x7400631b htc_egpio_get_wakeup_irq +EXPORT_SYMBOL vmlinux 0x740c08db nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x742a31a7 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x74324739 register_shrinker +EXPORT_SYMBOL vmlinux 0x7447270a inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7477bd94 filemap_fault +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x7494f10a padata_free +EXPORT_SYMBOL vmlinux 0x74abd29d mmc_get_card +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c4d980 padata_stop +EXPORT_SYMBOL vmlinux 0x74e46dac imx_ssi_fiq_tx_buffer +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74ec6dc9 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x7518f834 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x753c7c46 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x754fa98d seq_read +EXPORT_SYMBOL vmlinux 0x75557ec1 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x7567d381 __get_fiq_regs +EXPORT_SYMBOL vmlinux 0x7572e402 pci_release_regions +EXPORT_SYMBOL vmlinux 0x75811312 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x75875fb3 qdisc_list_del +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +EXPORT_SYMBOL vmlinux 0x759799ea generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x75b04dff mpage_writepage +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75c4f08e inode_nohighmem +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764c58cf dmam_pool_create +EXPORT_SYMBOL vmlinux 0x765aaad2 nla_append +EXPORT_SYMBOL vmlinux 0x765d4631 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x767227db __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x76748663 dev_alert +EXPORT_SYMBOL vmlinux 0x76ba83fe snd_pcm_hw_constraint_list +EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be +EXPORT_SYMBOL vmlinux 0x76eb26fc blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order +EXPORT_SYMBOL vmlinux 0x770ce93a security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x7719d806 cdrom_open +EXPORT_SYMBOL vmlinux 0x772c3fe2 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x775a130e __sg_free_table +EXPORT_SYMBOL vmlinux 0x777ea7d7 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x77813684 pci_get_slot +EXPORT_SYMBOL vmlinux 0x77820c37 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x77960beb ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x7797baa5 ip_defrag +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c23534 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x77e16eeb do_map_probe +EXPORT_SYMBOL vmlinux 0x77f30106 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x77f3168b __register_binfmt +EXPORT_SYMBOL vmlinux 0x77fa1a63 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x78077025 param_ops_long +EXPORT_SYMBOL vmlinux 0x780c34fd iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x781320ef migrate_page +EXPORT_SYMBOL vmlinux 0x7816dea9 pci_save_state +EXPORT_SYMBOL vmlinux 0x78338ff1 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x783ef4d2 phy_resume +EXPORT_SYMBOL vmlinux 0x78465fc2 posix_acl_init +EXPORT_SYMBOL vmlinux 0x78779c0b set_fiq_handler +EXPORT_SYMBOL vmlinux 0x787fd531 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x78926305 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x7892fe8e __scsi_add_device +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a29b71 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x78ba66a2 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x78c2d44c snd_ctl_remove +EXPORT_SYMBOL vmlinux 0x78c772f5 get_super +EXPORT_SYMBOL vmlinux 0x78dc2086 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e475e2 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x78ea6d4f i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x78f17589 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x79147e0e bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x7937c57d sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x79405b78 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x794712d8 setup_new_exec +EXPORT_SYMBOL vmlinux 0x7958b13f pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x7961e9ed ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x7978736c ll_rw_block +EXPORT_SYMBOL vmlinux 0x797f958f thaw_bdev +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79b25c21 ppp_input_error +EXPORT_SYMBOL vmlinux 0x79c3e1f8 genphy_resume +EXPORT_SYMBOL vmlinux 0x79c5a9f0 ioremap +EXPORT_SYMBOL vmlinux 0x79d0946e param_set_byte +EXPORT_SYMBOL vmlinux 0x79fa1deb imx_ssi_fiq_rx_buffer +EXPORT_SYMBOL vmlinux 0x79fd019e pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x7a0f6351 skb_pull +EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a44a934 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x7a59214d gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x7a72597a tty_port_put +EXPORT_SYMBOL vmlinux 0x7a794cfd xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7acc9065 build_skb +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad384ed udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ae534d1 snd_seq_root +EXPORT_SYMBOL vmlinux 0x7af209de posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL vmlinux 0x7b008c62 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x7b166493 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b2a3a46 register_console +EXPORT_SYMBOL vmlinux 0x7b3f0dae rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x7b532f45 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x7b59dbae inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x7b5afd02 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b5f39ec icmpv6_send +EXPORT_SYMBOL vmlinux 0x7b867424 vme_bus_num +EXPORT_SYMBOL vmlinux 0x7ba4638d snd_pcm_lib_ioctl +EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off +EXPORT_SYMBOL vmlinux 0x7bc5622d block_write_full_page +EXPORT_SYMBOL vmlinux 0x7bca1b55 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x7beaead3 of_dev_put +EXPORT_SYMBOL vmlinux 0x7bf7cfcc kern_path_create +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1b4778 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x7c272b66 of_translate_address +EXPORT_SYMBOL vmlinux 0x7c460265 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c54545e xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x7c733bdd snd_timer_global_free +EXPORT_SYMBOL vmlinux 0x7c86abc7 qcom_scm_pas_mem_setup +EXPORT_SYMBOL vmlinux 0x7c89cf1d genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x7c92484e scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x7c92dc6b fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x7c96899f devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 +EXPORT_SYMBOL vmlinux 0x7cc8d5ae phy_attached_info +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cec01e3 bdi_init +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf54ddf pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d1be878 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x7d22b3ea find_lock_entry +EXPORT_SYMBOL vmlinux 0x7d27064b dst_init +EXPORT_SYMBOL vmlinux 0x7d52c2f4 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x7d5c7057 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x7d6051b6 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d7889c8 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x7d99ab39 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x7d9a778a ab3100_event_register +EXPORT_SYMBOL vmlinux 0x7da8d6f5 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x7dccc294 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x7ddb767f __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x7de5f070 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e04d699 register_framebuffer +EXPORT_SYMBOL vmlinux 0x7e10aae4 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x7e26394d sg_miter_skip +EXPORT_SYMBOL vmlinux 0x7e2f5256 blk_peek_request +EXPORT_SYMBOL vmlinux 0x7e312492 netdev_alert +EXPORT_SYMBOL vmlinux 0x7e37119f udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x7e4351ce blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x7e68c32f seq_vprintf +EXPORT_SYMBOL vmlinux 0x7e6dcd7e devm_clk_put +EXPORT_SYMBOL vmlinux 0x7e800461 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x7e8982d1 kernel_bind +EXPORT_SYMBOL vmlinux 0x7e9efe8e complete_and_exit +EXPORT_SYMBOL vmlinux 0x7eb7a2ff init_task +EXPORT_SYMBOL vmlinux 0x7ee2b68e pci_dev_put +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f1010de iget_failed +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f324f4d try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7f3fb857 dma_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x7f620dc2 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio +EXPORT_SYMBOL vmlinux 0x7f68fed0 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f819f93 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x7f9e9f3e have_submounts +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7ff3b187 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x7ffe84cb sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 +EXPORT_SYMBOL vmlinux 0x800fb92b full_name_hash +EXPORT_SYMBOL vmlinux 0x80156751 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x8036d573 phy_init_hw +EXPORT_SYMBOL vmlinux 0x803cd2de inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x804aabdf idr_is_empty +EXPORT_SYMBOL vmlinux 0x806e0044 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x8076b0b6 stop_tty +EXPORT_SYMBOL vmlinux 0x809bc0e9 skb_dequeue +EXPORT_SYMBOL vmlinux 0x809e0c6d sk_capable +EXPORT_SYMBOL vmlinux 0x80c7a258 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d81308 omap_vrfb_release_ctx +EXPORT_SYMBOL vmlinux 0x80d9cf0e skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x80e001bb nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x80e63c17 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x80e7608b gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x80f47540 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x80fef907 default_llseek +EXPORT_SYMBOL vmlinux 0x810519fd hashlen_string +EXPORT_SYMBOL vmlinux 0x811263d8 inet_frags_init +EXPORT_SYMBOL vmlinux 0x813b7add get_io_context +EXPORT_SYMBOL vmlinux 0x813cab53 save_mount_options +EXPORT_SYMBOL vmlinux 0x8149cc20 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x8159968b generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815ec97c kmem_cache_size +EXPORT_SYMBOL vmlinux 0x8162cc0a single_open_size +EXPORT_SYMBOL vmlinux 0x81647348 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x816a7848 inet_gro_complete +EXPORT_SYMBOL vmlinux 0x81a5bf80 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL vmlinux 0x81ce4191 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x81d16a1f devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x81d33990 of_get_parent +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81eb4d77 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x82077120 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x822137e2 arm_heavy_mb +EXPORT_SYMBOL vmlinux 0x824a4367 tmio_core_mmc_pwr +EXPORT_SYMBOL vmlinux 0x82602c91 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x82657625 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x8274ebef udp6_csum_init +EXPORT_SYMBOL vmlinux 0x82792a5e inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x827a15bb vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x827d71df fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x829cfa1c dev_mc_del +EXPORT_SYMBOL vmlinux 0x829df839 snd_timer_global_new +EXPORT_SYMBOL vmlinux 0x82ce4d92 commit_creds +EXPORT_SYMBOL vmlinux 0x82d59190 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x82dcb7d5 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x82e8636c of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x82e9e73d eth_gro_receive +EXPORT_SYMBOL vmlinux 0x82f07ec7 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x82f0c924 d_tmpfile +EXPORT_SYMBOL vmlinux 0x831793d2 bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 +EXPORT_SYMBOL vmlinux 0x832eda6e padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x8333a78a pci_claim_resource +EXPORT_SYMBOL vmlinux 0x83419641 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x834eb257 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x8350465c vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x8353f19e filp_clone_open +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x8361127e input_unregister_device +EXPORT_SYMBOL vmlinux 0x8375d79d ida_destroy +EXPORT_SYMBOL vmlinux 0x837f7324 tty_do_resize +EXPORT_SYMBOL vmlinux 0x838442eb security_task_getsecid +EXPORT_SYMBOL vmlinux 0x838f77fe del_gendisk +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x83a6bf24 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83b3d00a param_ops_bint +EXPORT_SYMBOL vmlinux 0x83c3c5c0 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83c84fc7 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x83ca7a6c inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x83e62aa2 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x83e7c785 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x83f239f2 is_bad_inode +EXPORT_SYMBOL vmlinux 0x83fde33a snd_timer_close +EXPORT_SYMBOL vmlinux 0x840197c6 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x84110f8d inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x84481ede prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x8472c914 msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x848dd4e4 kobject_del +EXPORT_SYMBOL vmlinux 0x8494e928 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x84a69fdc vme_slave_get +EXPORT_SYMBOL vmlinux 0x84b183ae strncmp +EXPORT_SYMBOL vmlinux 0x84b1f5dc udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x84d92711 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x84eb1fa8 release_and_free_resource +EXPORT_SYMBOL vmlinux 0x84ed7493 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x84f8f882 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x85288dfc get_unmapped_area +EXPORT_SYMBOL vmlinux 0x852a0a15 snd_jack_report +EXPORT_SYMBOL vmlinux 0x852a2988 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x854e1c0b sg_nents +EXPORT_SYMBOL vmlinux 0x854fec83 tegra_sku_info +EXPORT_SYMBOL vmlinux 0x855e9a05 __inet_hash +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x8572ee4f truncate_pagecache +EXPORT_SYMBOL vmlinux 0x8574480f netif_receive_skb +EXPORT_SYMBOL vmlinux 0x85765fee omap_enable_dma_irq +EXPORT_SYMBOL vmlinux 0x85825898 add_timer +EXPORT_SYMBOL vmlinux 0x8590c8aa seq_open_private +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x8591f1f6 snd_pcm_notify +EXPORT_SYMBOL vmlinux 0x85952f78 netdev_update_features +EXPORT_SYMBOL vmlinux 0x85b42eda abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x85b4bbc6 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85d472aa queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x85d4bff6 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e00bcd snd_power_wait +EXPORT_SYMBOL vmlinux 0x85e74631 fasync_helper +EXPORT_SYMBOL vmlinux 0x85eb028c pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x85eb92ab cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f4136b netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x85f74b00 iomem_resource +EXPORT_SYMBOL vmlinux 0x85fe596b __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x86012433 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x86106bce pci_write_vpd +EXPORT_SYMBOL vmlinux 0x8618f63f mount_pseudo +EXPORT_SYMBOL vmlinux 0x86238d64 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x86348042 input_inject_event +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x86402a64 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x8651263c ip6_frag_init +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x867ca30f lock_page_memcg +EXPORT_SYMBOL vmlinux 0x867f5046 register_md_personality +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x8694a546 __brelse +EXPORT_SYMBOL vmlinux 0x869b1485 bdi_register +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86b27d5e read_dev_sector +EXPORT_SYMBOL vmlinux 0x86b312a8 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x86b8e86f of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x86db1135 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x873e10fe __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x87543381 gen_pool_create +EXPORT_SYMBOL vmlinux 0x8761511f pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x876288a8 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x8766ced3 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x876711a6 i2c_use_client +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x8791d410 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x87928065 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x879dde92 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x879eb5f9 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x879ec869 sget +EXPORT_SYMBOL vmlinux 0x87a61f2d of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0x87b3081e __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x87c17c81 pskb_extract +EXPORT_SYMBOL vmlinux 0x87c292e2 snd_card_free_when_closed +EXPORT_SYMBOL vmlinux 0x87d54a3a phy_print_status +EXPORT_SYMBOL vmlinux 0x87dd1655 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x88008676 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x884276e0 snd_device_free +EXPORT_SYMBOL vmlinux 0x8865cf1a devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x886bc76f mempool_resize +EXPORT_SYMBOL vmlinux 0x889d1409 dev_change_flags +EXPORT_SYMBOL vmlinux 0x88b19f45 system_serial +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88db9ff3 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x88deee33 inet6_bind +EXPORT_SYMBOL vmlinux 0x8910eb7b __SetPageMovable +EXPORT_SYMBOL vmlinux 0x892c78c1 put_tty_driver +EXPORT_SYMBOL vmlinux 0x892d2ce1 filemap_flush +EXPORT_SYMBOL vmlinux 0x8939bbd7 mntget +EXPORT_SYMBOL vmlinux 0x8989b87d scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x898df283 iptun_encaps +EXPORT_SYMBOL vmlinux 0x899a0469 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x89a6141f tcp_ioctl +EXPORT_SYMBOL vmlinux 0x89ba091a ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89d811f3 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x8a0f4230 rename_lock +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a2bea10 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a4fa83b __aeabi_llsr +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a5a05a9 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x8a69a114 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x8a6a5035 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x8a6a853c devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8ac61646 snd_ctl_new1 +EXPORT_SYMBOL vmlinux 0x8adf70d2 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x8ae99469 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0x8aee5443 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x8aef445c dev_mc_init +EXPORT_SYMBOL vmlinux 0x8af4935f radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x8af8060b neigh_event_ns +EXPORT_SYMBOL vmlinux 0x8b27a4d1 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b434545 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b728d6f tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b80b84b iov_iter_npages +EXPORT_SYMBOL vmlinux 0x8b8f6808 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0x8b99071e ns_capable +EXPORT_SYMBOL vmlinux 0x8ba86526 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x8bc2bb8f iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x8be00ca3 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x8bea37ea kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x8c30dbff nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x8c454d69 blk_get_backing_dev_info +EXPORT_SYMBOL vmlinux 0x8c4b2f38 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x8c53c13e lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c65c74b snd_ctl_boolean_mono_info +EXPORT_SYMBOL vmlinux 0x8c80f9c7 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x8ca6d37f seq_escape +EXPORT_SYMBOL vmlinux 0x8cb0e642 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x8cb84ca4 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x8cc8855f nf_afinfo +EXPORT_SYMBOL vmlinux 0x8cd8c339 omap_free_dma +EXPORT_SYMBOL vmlinux 0x8cdfcb3d fscrypt_get_encryption_info +EXPORT_SYMBOL vmlinux 0x8ce2a4a1 d_lookup +EXPORT_SYMBOL vmlinux 0x8cfcf75c nand_flash_ids +EXPORT_SYMBOL vmlinux 0x8d08ef28 udp_gro_complete +EXPORT_SYMBOL vmlinux 0x8d134c39 idr_replace +EXPORT_SYMBOL vmlinux 0x8d282a85 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x8d408a73 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d8a5ea9 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x8d8b6353 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x8d912043 file_update_time +EXPORT_SYMBOL vmlinux 0x8d97725a sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x8db1f131 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x8dcbab94 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x8dcff6e2 __pv_offset +EXPORT_SYMBOL vmlinux 0x8dd76dff simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x8deea5e4 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x8def4986 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL vmlinux 0x8dfd21c6 input_reset_device +EXPORT_SYMBOL vmlinux 0x8e0342d6 qcom_scm_pas_init_image +EXPORT_SYMBOL vmlinux 0x8e30b7eb touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x8e677b36 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x8e6c88cd file_path +EXPORT_SYMBOL vmlinux 0x8e70956b of_mm_gpiochip_add_data +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e7e46ab user_revoke +EXPORT_SYMBOL vmlinux 0x8e813b12 posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x8e814128 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x8e865d3c arm_delay_ops +EXPORT_SYMBOL vmlinux 0x8e9e1342 ps2_end_command +EXPORT_SYMBOL vmlinux 0x8eb6a162 dmam_release_declared_memory +EXPORT_SYMBOL vmlinux 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL vmlinux 0x8ee03208 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x8ef4850e pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x8f0abd0d d_find_alias +EXPORT_SYMBOL vmlinux 0x8f0fc406 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x8f4e4562 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x8f595b11 snd_major +EXPORT_SYMBOL vmlinux 0x8f5fe1fb skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x8f660118 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard +EXPORT_SYMBOL vmlinux 0x8f6a326e page_readlink +EXPORT_SYMBOL vmlinux 0x8f765bb9 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x8f76dab1 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x8f8299b0 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x8f880fe2 sock_no_getname +EXPORT_SYMBOL vmlinux 0x8f952b6e tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x8f9a36f1 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x8f9e5dfd tcp_req_err +EXPORT_SYMBOL vmlinux 0x8fa4130a omap_set_dma_callback +EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x8fdf772a init_timer_key +EXPORT_SYMBOL vmlinux 0x8ffb059c devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x8ffb82de kill_pid +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x901f80c4 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x9021bcd3 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x90442110 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x904b3813 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x904e2cb9 ioremap_cached +EXPORT_SYMBOL vmlinux 0x9057f7b7 input_release_device +EXPORT_SYMBOL vmlinux 0x90864885 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x90a6e899 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x90c197d1 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x90c68a91 of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0x90cc0087 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x90ea6fbe mmc_cleanup_queue +EXPORT_SYMBOL vmlinux 0x911accb0 mmc_put_card +EXPORT_SYMBOL vmlinux 0x911cbc6d serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x9127e353 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x917f0b75 dma_mark_declared_memory_occupied +EXPORT_SYMBOL vmlinux 0x919029aa __readwrite_bug +EXPORT_SYMBOL vmlinux 0x91aab8ac dquot_resume +EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz +EXPORT_SYMBOL vmlinux 0x91c28223 param_ops_byte +EXPORT_SYMBOL vmlinux 0x91c44bee unregister_cdrom +EXPORT_SYMBOL vmlinux 0x91c955c4 inet_del_offload +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x91fd2285 dev_get_flags +EXPORT_SYMBOL vmlinux 0x9222052a eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x922bafe1 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x922ce609 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x923204d8 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x92417122 kmap_to_page +EXPORT_SYMBOL vmlinux 0x9252dd4e import_iovec +EXPORT_SYMBOL vmlinux 0x925c2008 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x925d2c96 key_validate +EXPORT_SYMBOL vmlinux 0x928ad3ea i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x9292dcba sock_update_memcg +EXPORT_SYMBOL vmlinux 0x92b7eff0 follow_down_one +EXPORT_SYMBOL vmlinux 0x92bdfe0b nand_calculate_ecc +EXPORT_SYMBOL vmlinux 0x92c575f3 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x92e5ad78 register_sound_special_device +EXPORT_SYMBOL vmlinux 0x92e8a9d6 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x930f64cc gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x9330cb9f sg_alloc_table +EXPORT_SYMBOL vmlinux 0x93371ea5 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x93456ee1 param_set_bint +EXPORT_SYMBOL vmlinux 0x9356293d key_revoke +EXPORT_SYMBOL vmlinux 0x9363dee3 send_sig +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x937cc437 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x93995bb0 nobh_writepage +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93c3b875 blk_put_request +EXPORT_SYMBOL vmlinux 0x93dc9b43 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x9404aa79 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x94098ff8 snd_interval_list +EXPORT_SYMBOL vmlinux 0x940b1e75 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x9416e1d8 __request_region +EXPORT_SYMBOL vmlinux 0x94401b34 tty_write_room +EXPORT_SYMBOL vmlinux 0x946cbe25 iterate_fd +EXPORT_SYMBOL vmlinux 0x946efbfa __wait_on_bit +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94b2590f vme_free_consistent +EXPORT_SYMBOL vmlinux 0x94b8ac0e rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x94c0b8d3 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x94c10217 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x94ca647a mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x94cb76d2 simple_release_fs +EXPORT_SYMBOL vmlinux 0x94ce5e7a bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x94ce82db inet6_protos +EXPORT_SYMBOL vmlinux 0x94d3da68 rtc_lock +EXPORT_SYMBOL vmlinux 0x94d73fa3 generic_writepages +EXPORT_SYMBOL vmlinux 0x94ee67de mmc_remove_host +EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x94f9969b wake_up_process +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x952bc91d tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x95368d33 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x953d1fbc __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x95521f25 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x955390f8 uart_match_port +EXPORT_SYMBOL vmlinux 0x9557cb74 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x95622f41 down_timeout +EXPORT_SYMBOL vmlinux 0x95d98bc0 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 +EXPORT_SYMBOL vmlinux 0x95fb6aa7 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x96235497 write_cache_pages +EXPORT_SYMBOL vmlinux 0x96399f95 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x966abb61 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x966ffade tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x968a7823 kern_path +EXPORT_SYMBOL vmlinux 0x96951570 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x96b166e0 copy_to_iter +EXPORT_SYMBOL vmlinux 0x96b42a33 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96dec31b vfs_read +EXPORT_SYMBOL vmlinux 0x96df1882 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x97046309 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x970c172f ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x97106714 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x97209001 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x97255bdf strlen +EXPORT_SYMBOL vmlinux 0x973a62ee mntput +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x975c0e25 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x976b61c2 fence_remove_callback +EXPORT_SYMBOL vmlinux 0x976e700f down_trylock +EXPORT_SYMBOL vmlinux 0x976ed16e register_gifconf +EXPORT_SYMBOL vmlinux 0x97707f79 key_put +EXPORT_SYMBOL vmlinux 0x97711b52 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x9772f260 get_fs_type +EXPORT_SYMBOL vmlinux 0x9780e447 input_set_capability +EXPORT_SYMBOL vmlinux 0x978585f0 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x97890ef4 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x979834bf of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x9798fbc1 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97ab8e2e netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x97b2c268 mpage_writepages +EXPORT_SYMBOL vmlinux 0x97b4db09 down_read_trylock +EXPORT_SYMBOL vmlinux 0x98063d06 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x9808207c sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x980c10ff skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x981dd4ea blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x984f3b01 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x9862cc11 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x986d440c sock_from_file +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x987c11c7 __pv_phys_pfn_offset +EXPORT_SYMBOL vmlinux 0x9891b992 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x9899abc6 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x98a7cd9c neigh_lookup +EXPORT_SYMBOL vmlinux 0x98aab7ff ip6_frag_match +EXPORT_SYMBOL vmlinux 0x98af0b8f dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x98c6ecf9 swake_up_locked +EXPORT_SYMBOL vmlinux 0x98cc539a tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x98cf4f09 of_match_node +EXPORT_SYMBOL vmlinux 0x990815ed radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available +EXPORT_SYMBOL vmlinux 0x992b1279 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x9935cf12 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x993cf39e drop_super +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x9969b148 fscrypt_get_policy +EXPORT_SYMBOL vmlinux 0x996c4d30 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x9985aed5 framebuffer_release +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a00971 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x99b5238a of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x99b7b0c3 inet_select_addr +EXPORT_SYMBOL vmlinux 0x99bb8806 memmove +EXPORT_SYMBOL vmlinux 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL vmlinux 0x99d8aee3 md_cluster_mod +EXPORT_SYMBOL vmlinux 0x99df4001 pci_match_id +EXPORT_SYMBOL vmlinux 0x99eff449 __lock_buffer +EXPORT_SYMBOL vmlinux 0x99f58330 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x99fc9586 of_get_address +EXPORT_SYMBOL vmlinux 0x9a082891 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a26475e kmem_cache_free +EXPORT_SYMBOL vmlinux 0x9a37d75a sk_wait_data +EXPORT_SYMBOL vmlinux 0x9a49d2d3 snd_pcm_hw_param_first +EXPORT_SYMBOL vmlinux 0x9a5afd29 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x9a61091e iov_iter_advance +EXPORT_SYMBOL vmlinux 0x9a623142 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x9a6da27f loop_register_transfer +EXPORT_SYMBOL vmlinux 0x9a6db5ee snd_timer_global_register +EXPORT_SYMBOL vmlinux 0x9a74ba0a fb_set_cmap +EXPORT_SYMBOL vmlinux 0x9a810208 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x9a8318ef v7_coherent_kern_range +EXPORT_SYMBOL vmlinux 0x9a93f0dd udplite_prot +EXPORT_SYMBOL vmlinux 0x9a98d7d7 flow_cache_init +EXPORT_SYMBOL vmlinux 0x9a9e4b2a ps2_command +EXPORT_SYMBOL vmlinux 0x9aa4fc21 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x9aaffa3c pci_set_power_state +EXPORT_SYMBOL vmlinux 0x9ad83733 register_sound_midi +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9aef6124 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x9af6a866 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b337fb2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b4d3f53 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x9b5a4527 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x9b6bcae4 kset_register +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b8177ef gen_new_estimator +EXPORT_SYMBOL vmlinux 0x9b9b3d30 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9ba75668 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9c0bd51f _raw_spin_lock +EXPORT_SYMBOL vmlinux 0x9c1f8bc4 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x9c2ba188 blk_finish_request +EXPORT_SYMBOL vmlinux 0x9c306ba1 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x9c59933d dev_set_group +EXPORT_SYMBOL vmlinux 0x9c671737 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x9c7cba1a security_inode_init_security +EXPORT_SYMBOL vmlinux 0x9c7f0db3 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0x9c8e8e9f vme_slave_request +EXPORT_SYMBOL vmlinux 0x9c92d94d radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x9c9ec2a0 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cba3c37 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x9cd78490 seq_dentry +EXPORT_SYMBOL vmlinux 0x9ce06228 scmd_printk +EXPORT_SYMBOL vmlinux 0x9cfbb661 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x9d0118ea md_register_thread +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d340227 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x9d4b36c8 vga_tryget +EXPORT_SYMBOL vmlinux 0x9d4bd9f7 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x9d4c2ff3 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x9d5f7879 alloc_disk_node +EXPORT_SYMBOL vmlinux 0x9d669763 memcpy +EXPORT_SYMBOL vmlinux 0x9d6efcef vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x9db33e54 get_disk +EXPORT_SYMBOL vmlinux 0x9dc057f5 bio_chain +EXPORT_SYMBOL vmlinux 0x9dcdf222 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e024373 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x9e090edf vfs_create +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e107c2a sock_register +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e36ee82 param_ops_short +EXPORT_SYMBOL vmlinux 0x9e3aa520 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x9e444c46 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e672ff6 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e7c74e4 snd_jack_new +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9eab351c nf_log_trace +EXPORT_SYMBOL vmlinux 0x9ecc234d xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x9ece71af mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x9eda4718 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x9ee82cd6 uuid_be_index +EXPORT_SYMBOL vmlinux 0x9ef3c0c4 kobject_get +EXPORT_SYMBOL vmlinux 0x9ef793ae inode_get_bytes +EXPORT_SYMBOL vmlinux 0x9efb4c9b netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x9f245422 nf_reinject +EXPORT_SYMBOL vmlinux 0x9f310128 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x9f36aab3 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4caea8 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x9f534ac4 dev_crit +EXPORT_SYMBOL vmlinux 0x9f6ebe84 input_event +EXPORT_SYMBOL vmlinux 0x9f7fe9f7 update_region +EXPORT_SYMBOL vmlinux 0x9f8034ea skb_clone +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa68062 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x9fab6757 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x9fad2cf6 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x9fb1d0ed uuid_is_valid +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fd92f90 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe14e00 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x9ff467f1 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa0055df7 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0xa0086616 snd_unregister_oss_device +EXPORT_SYMBOL vmlinux 0xa00eb15b ioremap_page +EXPORT_SYMBOL vmlinux 0xa015a6ca eth_change_mtu +EXPORT_SYMBOL vmlinux 0xa01eab3d snd_timer_pause +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa05902d4 arp_tbl +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa062dcf8 skb_unlink +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa0744ea9 cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0xa0760eca inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xa07ab59a cfb_fillrect +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa08a4c0e sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xa08e32b5 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0xa0a23b51 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xa0aae687 imx_ssi_fiq_end +EXPORT_SYMBOL vmlinux 0xa0ad18dc twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0cd6f74 dec_node_page_state +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa1421182 snd_cards +EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts +EXPORT_SYMBOL vmlinux 0xa160d21d sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xa162eea7 get_tz_trend +EXPORT_SYMBOL vmlinux 0xa1743a1d d_move +EXPORT_SYMBOL vmlinux 0xa1804c92 kernel_read +EXPORT_SYMBOL vmlinux 0xa1839690 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xa18d2c73 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xa192813b idr_for_each +EXPORT_SYMBOL vmlinux 0xa1a2bffd mmc_start_req +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1c346be kobject_init +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1cb9e1a icmp_send +EXPORT_SYMBOL vmlinux 0xa1d55e90 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xa1dec52f clear_inode +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1f0ebea bit_waitqueue +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa20fe942 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0xa2160d33 clkdev_add +EXPORT_SYMBOL vmlinux 0xa21b7e3d keyring_alloc +EXPORT_SYMBOL vmlinux 0xa23329e4 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xa244f771 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xa258bc09 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xa25ae41d max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xa2674517 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa28aec52 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xa29f13d0 bio_copy_data +EXPORT_SYMBOL vmlinux 0xa2b8a607 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xa2bb5a92 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xa2c91a48 __vfs_read +EXPORT_SYMBOL vmlinux 0xa2cea3fa tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xa2d0e2ee uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xa2dedee6 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xa3035b4f dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xa31a8d9c radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa330dfab dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL vmlinux 0xa34465b1 nand_correct_data +EXPORT_SYMBOL vmlinux 0xa36f2581 bio_init +EXPORT_SYMBOL vmlinux 0xa37de0e4 sk_alloc +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa381944f dql_reset +EXPORT_SYMBOL vmlinux 0xa3915280 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xa3b9e9af sg_miter_next +EXPORT_SYMBOL vmlinux 0xa3c00c06 memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0xa3c5aae6 max8925_set_bits +EXPORT_SYMBOL vmlinux 0xa3deaafd dump_page +EXPORT_SYMBOL vmlinux 0xa3f7afbc kobject_add +EXPORT_SYMBOL vmlinux 0xa3fdcc2b mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xa414882d add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xa426ab65 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xa428b0e5 _dev_info +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa4487f86 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xa4610bc6 omap_rev +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa48f5b09 omap_dma_set_global_params +EXPORT_SYMBOL vmlinux 0xa4ad2ab5 tty_name +EXPORT_SYMBOL vmlinux 0xa4af6ba3 copy_from_iter +EXPORT_SYMBOL vmlinux 0xa4b42c55 omap_set_dma_priority +EXPORT_SYMBOL vmlinux 0xa4c99da5 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xa4d2d72c skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xa4d9e91e register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xa4da0e49 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xa4e7743c mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xa50b1f69 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xa50ca3cb pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0xa51fd978 tty_register_device +EXPORT_SYMBOL vmlinux 0xa5409079 tcp_init_sock +EXPORT_SYMBOL vmlinux 0xa541b201 tty_kref_put +EXPORT_SYMBOL vmlinux 0xa55072be dst_release +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa57e41a3 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xa5842243 dev_addr_init +EXPORT_SYMBOL vmlinux 0xa58eb16e inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xa58fea9d mempool_destroy +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a633b9 sg_last +EXPORT_SYMBOL vmlinux 0xa5a82dca phy_attach +EXPORT_SYMBOL vmlinux 0xa5b9f324 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xa5d045b3 generic_write_checks +EXPORT_SYMBOL vmlinux 0xa5d97999 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0xa5ed6424 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xa6017f13 replace_mount_options +EXPORT_SYMBOL vmlinux 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL vmlinux 0xa61b292d misc_deregister +EXPORT_SYMBOL vmlinux 0xa61e4362 omap_request_dma +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa64d6d85 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0xa652c4ef __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xa668f2e8 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0xa671cf60 skb_put +EXPORT_SYMBOL vmlinux 0xa67374f0 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa699ba13 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xa6b9bb42 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xa6bab23d dqstats +EXPORT_SYMBOL vmlinux 0xa6e76cd1 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa7005c90 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xa704ccc1 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xa710100a ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xa71be113 nvm_submit_ppa_list +EXPORT_SYMBOL vmlinux 0xa734a3e9 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa757de1b set_bh_page +EXPORT_SYMBOL vmlinux 0xa7580f78 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xa75ea614 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xa77a4228 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xa786a38d qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xa78fdfb0 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xa7c69f13 from_kgid +EXPORT_SYMBOL vmlinux 0xa7da6b33 ata_print_version +EXPORT_SYMBOL vmlinux 0xa7f2b15a __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xa7f2ff3c ___pskb_trim +EXPORT_SYMBOL vmlinux 0xa7f57e9c snd_pcm_create_iec958_consumer +EXPORT_SYMBOL vmlinux 0xa7fdafa2 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xa816f5ca security_path_mkdir +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa86d16b8 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end +EXPORT_SYMBOL vmlinux 0xa8a93084 phy_attached_print +EXPORT_SYMBOL vmlinux 0xa8aaad37 dst_destroy +EXPORT_SYMBOL vmlinux 0xa8b62089 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xa8c23286 blkdev_get +EXPORT_SYMBOL vmlinux 0xa8c3f21f elevator_init +EXPORT_SYMBOL vmlinux 0xa8c54311 get_thermal_instance +EXPORT_SYMBOL vmlinux 0xa8ea13ef netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xa8edff01 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xa8fa8e66 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa93f7888 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request +EXPORT_SYMBOL vmlinux 0xa971fe12 __i2c_transfer +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa98527d8 alloc_fddidev +EXPORT_SYMBOL vmlinux 0xa9a54a48 scsi_target_resume +EXPORT_SYMBOL vmlinux 0xa9b82744 arm_dma_ops +EXPORT_SYMBOL vmlinux 0xa9c3286d tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9c7698a xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xa9d2f3f7 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xa9f04eb6 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0xa9fa4c61 nand_lock +EXPORT_SYMBOL vmlinux 0xa9fd9e58 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xaa053637 __break_lease +EXPORT_SYMBOL vmlinux 0xaa0a415a edma_filter_fn +EXPORT_SYMBOL vmlinux 0xaa1de24c lock_sock_nested +EXPORT_SYMBOL vmlinux 0xaa2fc40e capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xaa2ff3b9 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xaa590e6a of_get_next_parent +EXPORT_SYMBOL vmlinux 0xaa59b552 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xaa63f4d3 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa7cc4f0 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xaa8869fc iunique +EXPORT_SYMBOL vmlinux 0xaab129e4 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xaab42efd devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0xaab7a7bc udp_poll +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaaef1cad fd_install +EXPORT_SYMBOL vmlinux 0xaaf1f1bc set_security_override +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab0c46be unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xab23491c inet_register_protosw +EXPORT_SYMBOL vmlinux 0xab264fde chacha20_block +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab476f47 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xab5334bf ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab694444 bsearch +EXPORT_SYMBOL vmlinux 0xab6bbcbc nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab705d2f jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xab7603e7 imx_ssi_fiq_start +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab80abf4 shdma_request_irq +EXPORT_SYMBOL vmlinux 0xab8e7888 proc_set_user +EXPORT_SYMBOL vmlinux 0xab9e64d6 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xaba36e49 block_read_full_page +EXPORT_SYMBOL vmlinux 0xaba76253 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xabc5ff93 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabd1e82b request_key_async +EXPORT_SYMBOL vmlinux 0xabdea4ce of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xabf89b83 adjust_resource +EXPORT_SYMBOL vmlinux 0xac046ad1 make_kgid +EXPORT_SYMBOL vmlinux 0xac0818fa dev_uc_init +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac28c676 nand_write_oob_syndrome +EXPORT_SYMBOL vmlinux 0xac317818 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xac384a17 proto_unregister +EXPORT_SYMBOL vmlinux 0xac390091 dev_base_lock +EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL vmlinux 0xac4dab26 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xac6b19ff dquot_free_inode +EXPORT_SYMBOL vmlinux 0xac73bd72 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xac7acbea sock_create +EXPORT_SYMBOL vmlinux 0xac99857f generic_removexattr +EXPORT_SYMBOL vmlinux 0xaca56bd8 arm_smccc_hvc +EXPORT_SYMBOL vmlinux 0xaca8d066 PageMovable +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb872b3 snd_card_free +EXPORT_SYMBOL vmlinux 0xacb9ded1 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd7914a blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacdcda4d locks_remove_posix +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad0efeb2 reuseport_alloc +EXPORT_SYMBOL vmlinux 0xad234e68 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xad26ce1e udp6_set_csum +EXPORT_SYMBOL vmlinux 0xad2a5f64 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xad4d0d00 _snd_ctl_add_slave +EXPORT_SYMBOL vmlinux 0xad53a77a msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0xad585425 qcom_scm_pas_supported +EXPORT_SYMBOL vmlinux 0xad59958e blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xad6bb779 netdev_crit +EXPORT_SYMBOL vmlinux 0xad6f7144 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xad782453 dcb_getapp +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad8827bd pci_dev_get +EXPORT_SYMBOL vmlinux 0xad8ba964 nf_log_packet +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xada9c69f pcim_iomap +EXPORT_SYMBOL vmlinux 0xadac1138 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0xadc11839 snd_pcm_hw_rule_add +EXPORT_SYMBOL vmlinux 0xade88e76 snd_malloc_pages +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae00229e ac97_bus_type +EXPORT_SYMBOL vmlinux 0xae12ba45 down_write_killable +EXPORT_SYMBOL vmlinux 0xae13bb1e pipe_unlock +EXPORT_SYMBOL vmlinux 0xae262d68 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xae3bad19 lock_sock_fast +EXPORT_SYMBOL vmlinux 0xae452a34 sock_release +EXPORT_SYMBOL vmlinux 0xae494bc9 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xae5dae88 dev_addr_flush +EXPORT_SYMBOL vmlinux 0xae6e36ca dentry_update_name_case +EXPORT_SYMBOL vmlinux 0xae74a9cf from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xae9b57f3 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xae9d1006 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0xaeb46461 dev_printk +EXPORT_SYMBOL vmlinux 0xaec0c15e dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaecca4c3 freeze_super +EXPORT_SYMBOL vmlinux 0xaee9051a pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xaf258a29 pagevec_lookup +EXPORT_SYMBOL vmlinux 0xaf34af8c request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0xaf373a2c pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xaf3d70da tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf4dbbde scsi_print_result +EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality +EXPORT_SYMBOL vmlinux 0xaf602ab3 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xaf6d0a37 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xaf769579 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xaf84865e __get_user_8 +EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev +EXPORT_SYMBOL vmlinux 0xafbdfb22 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xafc52025 dquot_transfer +EXPORT_SYMBOL vmlinux 0xb0044cbd skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xb01ee24e tcp_close +EXPORT_SYMBOL vmlinux 0xb030bdd7 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL vmlinux 0xb04cf0fe lg_local_unlock +EXPORT_SYMBOL vmlinux 0xb058fad2 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb066b530 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0xb070b3bc pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xb071ef9a dm_get_device +EXPORT_SYMBOL vmlinux 0xb073038b __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xb09a7ced of_device_alloc +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0bb6c92 fscrypt_d_ops +EXPORT_SYMBOL vmlinux 0xb0c421cb fscrypt_get_ctx +EXPORT_SYMBOL vmlinux 0xb0d73380 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e5fa26 jbd2_journal_inode_add_write +EXPORT_SYMBOL vmlinux 0xb0f4fc05 set_blocksize +EXPORT_SYMBOL vmlinux 0xb119a31b from_kuid +EXPORT_SYMBOL vmlinux 0xb11c8373 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb1276173 __find_get_block +EXPORT_SYMBOL vmlinux 0xb129bb95 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb14205fb map_destroy +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb161e747 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xb1784ac4 drop_nlink +EXPORT_SYMBOL vmlinux 0xb1939c17 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xb1ad28e0 __gnu_mcount_nc +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1caa6d8 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1d380d9 tty_set_operations +EXPORT_SYMBOL vmlinux 0xb1d9aabd lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xb1ef2b2d twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xb1fa786b load_nls +EXPORT_SYMBOL vmlinux 0xb1ffb3da netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0xb21411cc mmc_free_host +EXPORT_SYMBOL vmlinux 0xb22cdac5 __destroy_inode +EXPORT_SYMBOL vmlinux 0xb23454fd blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xb245b2e2 netif_napi_add +EXPORT_SYMBOL vmlinux 0xb24bbe01 security_path_unlink +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb268842e scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xb28916d3 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xb2af079b crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xb2ba97d1 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0xb2bcf863 devm_ioremap +EXPORT_SYMBOL vmlinux 0xb2c4aa10 devm_gpio_request +EXPORT_SYMBOL vmlinux 0xb2c77ff2 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xb2d463ef dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on +EXPORT_SYMBOL vmlinux 0xb2da56a9 inode_init_once +EXPORT_SYMBOL vmlinux 0xb2e43dc9 clk_get +EXPORT_SYMBOL vmlinux 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL vmlinux 0xb2f8b311 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xb3175fef param_get_long +EXPORT_SYMBOL vmlinux 0xb31e858d xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xb3308cd6 udp_seq_open +EXPORT_SYMBOL vmlinux 0xb342de84 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xb34d61ab pci_scan_bus +EXPORT_SYMBOL vmlinux 0xb367c984 mxc_set_irq_fiq +EXPORT_SYMBOL vmlinux 0xb368fb8b fscrypt_initialize +EXPORT_SYMBOL vmlinux 0xb39d35f7 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xb3b2666d devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xb3bd5c26 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL vmlinux 0xb3c64764 disk_stack_limits +EXPORT_SYMBOL vmlinux 0xb3ce2a15 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3e0640e dm_kobject_release +EXPORT_SYMBOL vmlinux 0xb3e6b8b3 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xb3f5021d snd_timer_resolution +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3fc514c tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xb3fdfb02 ata_link_printk +EXPORT_SYMBOL vmlinux 0xb40590b2 single_release +EXPORT_SYMBOL vmlinux 0xb422b7a7 override_creds +EXPORT_SYMBOL vmlinux 0xb422f894 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4390f9a mcount +EXPORT_SYMBOL vmlinux 0xb43ddf85 blk_end_request_all +EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb4b00538 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL vmlinux 0xb4c79c60 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xb4d74df2 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0xb4e4c66c dma_release_declared_memory +EXPORT_SYMBOL vmlinux 0xb4f8c348 km_report +EXPORT_SYMBOL vmlinux 0xb5198b77 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xb52aaf7c __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xb53d7c3f pci_add_resource +EXPORT_SYMBOL vmlinux 0xb542a086 registered_fb +EXPORT_SYMBOL vmlinux 0xb543ac0e blk_execute_rq +EXPORT_SYMBOL vmlinux 0xb555f2ac phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xb5684e29 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0xb56d57f7 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb58581f2 nvm_register +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5c00014 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5ce6c36 ether_setup +EXPORT_SYMBOL vmlinux 0xb5d9454c printk_emit +EXPORT_SYMBOL vmlinux 0xb5e661c5 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xb6266e85 sock_edemux +EXPORT_SYMBOL vmlinux 0xb63050fd vfs_fsync +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb64e0aab __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0xb6517faa __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xb6525053 qdisc_list_add +EXPORT_SYMBOL vmlinux 0xb6540c86 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xb6581617 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xb65d9f9d scsi_register_driver +EXPORT_SYMBOL vmlinux 0xb674ee38 snd_pcm_kernel_ioctl +EXPORT_SYMBOL vmlinux 0xb6750426 __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6820b1d register_sound_special +EXPORT_SYMBOL vmlinux 0xb68604c0 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb69761e8 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6d3daf1 qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0xb6dc368b jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0xb6e115c3 tty_port_init +EXPORT_SYMBOL vmlinux 0xb6e82b52 input_grab_device +EXPORT_SYMBOL vmlinux 0xb712e4a8 prepare_binprm +EXPORT_SYMBOL vmlinux 0xb7241b82 sync_filesystem +EXPORT_SYMBOL vmlinux 0xb728cde3 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xb73c89ff user_path_create +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb753f6c0 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0xb7661440 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xb76c6eff param_get_uint +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb78f1b48 blk_get_queue +EXPORT_SYMBOL vmlinux 0xb78fd669 up_write +EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0xb7b92492 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xb7ba76c7 __aeabi_unwind_cpp_pr2 +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7cc2514 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xb7da5afb __skb_checksum +EXPORT_SYMBOL vmlinux 0xb7e216b3 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xb7eb778d of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0xb7f90a63 __devm_release_region +EXPORT_SYMBOL vmlinux 0xb7ffef6f padata_do_parallel +EXPORT_SYMBOL vmlinux 0xb8023a9a pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xb810a2ed dma_async_device_register +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb8431344 of_phy_attach +EXPORT_SYMBOL vmlinux 0xb8434441 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xb85613a5 simple_dir_operations +EXPORT_SYMBOL vmlinux 0xb859f232 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xb865cd60 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xb867575e irq_domain_set_info +EXPORT_SYMBOL vmlinux 0xb86aa083 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb87d00b7 tcf_hash_create +EXPORT_SYMBOL vmlinux 0xb888638d clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0xb89afecb vfs_mkdir +EXPORT_SYMBOL vmlinux 0xb8a207c3 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0xb8a4f2be mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8bff6c4 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0xb8e61f26 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb8eec98b del_timer +EXPORT_SYMBOL vmlinux 0xb8f9d3ad mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xb915e9c8 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xb92eeb68 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xb9353600 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xb94b4ca1 alloc_file +EXPORT_SYMBOL vmlinux 0xb94e6559 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xb950788f read_cache_page +EXPORT_SYMBOL vmlinux 0xb95cd5fb kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xb95f98d6 _memset_io +EXPORT_SYMBOL vmlinux 0xb962a597 empty_zero_page +EXPORT_SYMBOL vmlinux 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL vmlinux 0xb988a838 snd_card_set_id +EXPORT_SYMBOL vmlinux 0xb9a8f03b omap_stop_dma +EXPORT_SYMBOL vmlinux 0xb9abcff8 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xb9acd3d9 __put_user_2 +EXPORT_SYMBOL vmlinux 0xb9bd829d scsi_print_command +EXPORT_SYMBOL vmlinux 0xb9d2d092 seq_puts +EXPORT_SYMBOL vmlinux 0xb9dcf1d3 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9efdc3f vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xb9f04002 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xba16ea4d eth_type_trans +EXPORT_SYMBOL vmlinux 0xba209d09 nand_bch_init +EXPORT_SYMBOL vmlinux 0xba341ebe simple_dname +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4ae097 enable_fiq +EXPORT_SYMBOL vmlinux 0xba5e5dac scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xba7c8f91 __blk_end_request +EXPORT_SYMBOL vmlinux 0xba8bb333 ___ratelimit +EXPORT_SYMBOL vmlinux 0xbaac994b snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0xbacd1ef2 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xbae33ef2 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xbae51102 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xbaf34b66 vme_irq_handler +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb36c520 input_free_device +EXPORT_SYMBOL vmlinux 0xbb538262 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb6e9dad inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xbb72d4fe __put_user_1 +EXPORT_SYMBOL vmlinux 0xbb82135c proc_mkdir +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbbb55ef0 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0xbbd6f79b tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xbbdca44d i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xbbde23a4 block_write_begin +EXPORT_SYMBOL vmlinux 0xbbf8498c pci_pme_active +EXPORT_SYMBOL vmlinux 0xbbf84b7f devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xbc08efd5 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0xbc0d220f pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 +EXPORT_SYMBOL vmlinux 0xbc295a75 of_get_property +EXPORT_SYMBOL vmlinux 0xbc45bc52 sock_no_accept +EXPORT_SYMBOL vmlinux 0xbc46f396 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xbc4ed836 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xbc5f2497 __elv_add_request +EXPORT_SYMBOL vmlinux 0xbc864fa3 mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0xbc9a6a82 snd_dma_alloc_pages +EXPORT_SYMBOL vmlinux 0xbc9d4dfd tcp_disconnect +EXPORT_SYMBOL vmlinux 0xbcad5c86 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xbcb8852f lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xbcbac1a8 elv_register_queue +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcc8ab3f nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0xbcea208a fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xbcf354af input_set_keycode +EXPORT_SYMBOL vmlinux 0xbcf69372 allocate_resource +EXPORT_SYMBOL vmlinux 0xbd0933f9 d_rehash +EXPORT_SYMBOL vmlinux 0xbd10bea0 generic_listxattr +EXPORT_SYMBOL vmlinux 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0xbd18e9d9 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xbd3415ae generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xbd36b7c5 qdisc_destroy +EXPORT_SYMBOL vmlinux 0xbd40921f scsi_ioctl +EXPORT_SYMBOL vmlinux 0xbd40e7df d_alloc_name +EXPORT_SYMBOL vmlinux 0xbd4a6d89 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0xbd55a755 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0xbd6522c3 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xbd6b5835 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xbd6f6706 sync_file_create +EXPORT_SYMBOL vmlinux 0xbd76a6d3 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0xbd84deb6 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbdaeb133 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0xbde1235a simple_nosetlease +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe1f4a9a blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xbe3f9d31 dev_activate +EXPORT_SYMBOL vmlinux 0xbe4d33d0 noop_qdisc +EXPORT_SYMBOL vmlinux 0xbe5b42f5 vfs_whiteout +EXPORT_SYMBOL vmlinux 0xbe6ada7d uuid_le_index +EXPORT_SYMBOL vmlinux 0xbe7bb60a pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xbe80735e simple_empty +EXPORT_SYMBOL vmlinux 0xbe965aac __sb_end_write +EXPORT_SYMBOL vmlinux 0xbea9230f netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xbeae3a6d tty_port_close_start +EXPORT_SYMBOL vmlinux 0xbeb488b0 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbef579b9 netdev_printk +EXPORT_SYMBOL vmlinux 0xbf169b92 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xbf271b20 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xbf3963bb input_register_device +EXPORT_SYMBOL vmlinux 0xbf58a47b xfrm_input +EXPORT_SYMBOL vmlinux 0xbf75ea6c tegra114_clock_tune_cpu_trimmers_low +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf863c37 tty_hangup +EXPORT_SYMBOL vmlinux 0xbf8686d0 dev_mc_flush +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfaa306b ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block +EXPORT_SYMBOL vmlinux 0xbfeb9717 md_reload_sb +EXPORT_SYMBOL vmlinux 0xbfecbed0 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbffc5746 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xc0056be5 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xc00c69e5 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xc01b8207 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xc01f9ffb ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xc026e1ea snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL vmlinux 0xc02b158d neigh_update +EXPORT_SYMBOL vmlinux 0xc02c0b2a ioport_resource +EXPORT_SYMBOL vmlinux 0xc05119fe sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xc051a54a simple_write_begin +EXPORT_SYMBOL vmlinux 0xc052afa4 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xc052f271 register_sound_mixer +EXPORT_SYMBOL vmlinux 0xc05fc13c __ip_dev_find +EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xc0685b5d kernel_setsockopt +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc078a0d6 kunmap_high +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL vmlinux 0xc094c50e abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0xc0a3279d pps_unregister_source +EXPORT_SYMBOL vmlinux 0xc0a3f7eb blk_register_region +EXPORT_SYMBOL vmlinux 0xc0a6a8c5 omap_set_dma_dest_burst_mode +EXPORT_SYMBOL vmlinux 0xc0a98385 profile_pc +EXPORT_SYMBOL vmlinux 0xc0b2403c sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xc0bc24b9 user_path_at_empty +EXPORT_SYMBOL vmlinux 0xc0c31022 inet_sendpage +EXPORT_SYMBOL vmlinux 0xc0cf95f9 omap_vrfb_request_ctx +EXPORT_SYMBOL vmlinux 0xc0d15cce dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xc0deb060 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xc0f1e069 module_refcount +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc13a7ba6 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0xc1569d4a rps_needed +EXPORT_SYMBOL vmlinux 0xc15a76bb amba_find_device +EXPORT_SYMBOL vmlinux 0xc1618dd5 snd_pcm_hw_refine +EXPORT_SYMBOL vmlinux 0xc16238ee kset_unregister +EXPORT_SYMBOL vmlinux 0xc176caba elv_rb_add +EXPORT_SYMBOL vmlinux 0xc193e4d8 find_inode_nowait +EXPORT_SYMBOL vmlinux 0xc1a350fa mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xc1a6e924 inet_recvmsg +EXPORT_SYMBOL vmlinux 0xc1c973eb rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xc1ca3493 kunmap +EXPORT_SYMBOL vmlinux 0xc1d51790 tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1dfe0fc gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xc1e0bc1b tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1f50751 of_get_mac_address +EXPORT_SYMBOL vmlinux 0xc1f7be22 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL vmlinux 0xc1ff9e13 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xc2023f15 sync_blockdev +EXPORT_SYMBOL vmlinux 0xc204b569 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xc2097435 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xc249c55e alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xc28478dd nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xc2ae4265 uart_register_driver +EXPORT_SYMBOL vmlinux 0xc2bfca04 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xc2cd290d done_path_create +EXPORT_SYMBOL vmlinux 0xc2d07759 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2e8525b snd_soc_alloc_ac97_codec +EXPORT_SYMBOL vmlinux 0xc2e98549 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xc2f44245 set_disk_ro +EXPORT_SYMBOL vmlinux 0xc30f5637 snd_pcm_lib_write +EXPORT_SYMBOL vmlinux 0xc359fb65 abort +EXPORT_SYMBOL vmlinux 0xc35ca4d0 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xc39cfbba pci_find_bus +EXPORT_SYMBOL vmlinux 0xc3a6cc20 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xc3b22fce blk_queue_split +EXPORT_SYMBOL vmlinux 0xc3b95dd7 seq_write +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3d11c55 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xc3d5856f vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xc3e33e5c vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0xc3e9430b arm_coherent_dma_ops +EXPORT_SYMBOL vmlinux 0xc3f0f708 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0xc3f56fd8 md_done_sync +EXPORT_SYMBOL vmlinux 0xc41f0516 node_states +EXPORT_SYMBOL vmlinux 0xc46b409c wait_iff_congested +EXPORT_SYMBOL vmlinux 0xc48026ae of_n_size_cells +EXPORT_SYMBOL vmlinux 0xc492ea68 xattr_full_name +EXPORT_SYMBOL vmlinux 0xc4944930 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc49dda1b page_mapped +EXPORT_SYMBOL vmlinux 0xc4a0ecab __d_lookup_done +EXPORT_SYMBOL vmlinux 0xc4b09e94 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xc4b93547 ip_setsockopt +EXPORT_SYMBOL vmlinux 0xc4c0b39b eth_header +EXPORT_SYMBOL vmlinux 0xc4d5713e dentry_path_raw +EXPORT_SYMBOL vmlinux 0xc5173dac pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xc52da066 omap_set_dma_dest_params +EXPORT_SYMBOL vmlinux 0xc5718627 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0xc572946b inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xc5833a92 fb_deferred_io_mmap +EXPORT_SYMBOL vmlinux 0xc58c2ce5 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5a6c52f snd_ctl_add +EXPORT_SYMBOL vmlinux 0xc5ba4606 filemap_map_pages +EXPORT_SYMBOL vmlinux 0xc5d03f5f register_key_type +EXPORT_SYMBOL vmlinux 0xc5d28aaa bio_integrity_free +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc6013997 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xc60743f2 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc6455abc fscrypt_process_policy +EXPORT_SYMBOL vmlinux 0xc6540dfb pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xc65537d0 memremap +EXPORT_SYMBOL vmlinux 0xc66e26e8 __genl_register_family +EXPORT_SYMBOL vmlinux 0xc66fa6a6 ida_remove +EXPORT_SYMBOL vmlinux 0xc68f0c92 of_node_get +EXPORT_SYMBOL vmlinux 0xc6bcfeff posix_acl_valid +EXPORT_SYMBOL vmlinux 0xc6c294b3 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6e80835 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xc6f276a1 blk_rq_init +EXPORT_SYMBOL vmlinux 0xc6fbc09a mmc_power_save_host +EXPORT_SYMBOL vmlinux 0xc7088e0b may_umount +EXPORT_SYMBOL vmlinux 0xc7185df1 proc_symlink +EXPORT_SYMBOL vmlinux 0xc71b5890 radix_tree_delete +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc727b44c scsi_add_device +EXPORT_SYMBOL vmlinux 0xc72dcf3d block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xc7302cbe vm_insert_page +EXPORT_SYMBOL vmlinux 0xc73496e2 sock_alloc_file +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc75ccbe9 downgrade_write +EXPORT_SYMBOL vmlinux 0xc7625e26 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xc774b42e __vfs_write +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc797fc96 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a06332 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7b5a3da pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xc7bcbc8d add_wait_queue +EXPORT_SYMBOL vmlinux 0xc7d6dd8c __get_user_pages +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc7edbc73 jbd2_journal_inode_add_wait +EXPORT_SYMBOL vmlinux 0xc7fb0480 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xc804a3dd kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0xc80fa10a inetdev_by_index +EXPORT_SYMBOL vmlinux 0xc8203a26 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc856f587 generic_make_request +EXPORT_SYMBOL vmlinux 0xc859d5ab writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xc85b1bf9 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8dd909b twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xc8df7e5d dput +EXPORT_SYMBOL vmlinux 0xc90728df scsi_block_requests +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc93cb0d9 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xc94375b4 bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0xc95c562a md_update_sb +EXPORT_SYMBOL vmlinux 0xc95cab41 snd_info_create_module_entry +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc96352d4 abort_creds +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc9883da1 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xc99d6b65 inc_node_state +EXPORT_SYMBOL vmlinux 0xc99d9b9c follow_pfn +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9a67938 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0xc9b8c308 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xc9c4da53 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xc9e535cd devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0xca0bc3b9 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xca0c39ae lookup_bdev +EXPORT_SYMBOL vmlinux 0xca108ae2 remove_arg_zero +EXPORT_SYMBOL vmlinux 0xca200e19 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xca27b3d2 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0xca4111b5 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xca595893 iov_iter_zero +EXPORT_SYMBOL vmlinux 0xca5ce77e serio_open +EXPORT_SYMBOL vmlinux 0xca86bf59 sock_init_data +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcaa46fb5 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xcad0113a bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xcaec2d0c pci_clear_master +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb273b55 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xcb4158d1 nand_scan_tail +EXPORT_SYMBOL vmlinux 0xcb466063 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xcb46f07b jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xcb47d764 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0xcb5ea68e mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xcb7c2f9f tc_classify +EXPORT_SYMBOL vmlinux 0xcb800d29 revert_creds +EXPORT_SYMBOL vmlinux 0xcb802f25 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xcb85fa7f block_commit_write +EXPORT_SYMBOL vmlinux 0xcb86bad1 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0xcbb47b77 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xcbbd1824 __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc2ac52 set_wb_congested +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbce8ef4 __sock_create +EXPORT_SYMBOL vmlinux 0xcbd032e5 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xcbe3fd84 clkdev_hw_alloc +EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcbee6439 ida_simple_get +EXPORT_SYMBOL vmlinux 0xcbfb2b19 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xcc15606a sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc3cba3c xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xcc4a356b kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc637eab tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xcc77608e genphy_read_status +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccd1ea4f mmc_fixup_device +EXPORT_SYMBOL vmlinux 0xcce09b3b blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xccfd6917 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL vmlinux 0xcd116f94 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xcd23b8ff i2c_release_client +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd2eefb7 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xcd30b95a tmio_core_mmc_clk_div +EXPORT_SYMBOL vmlinux 0xcd3f9529 __bread_gfp +EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr +EXPORT_SYMBOL vmlinux 0xcd65aa78 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0xcd7cb47b jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xcd8d45d8 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xcd972a7a phy_connect_direct +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc49e19 lockref_get +EXPORT_SYMBOL vmlinux 0xcdf10c5d inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xcdf17b1e inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0xce1d3ded up_read +EXPORT_SYMBOL vmlinux 0xce267ecf skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2ce897 bio_clone_fast +EXPORT_SYMBOL vmlinux 0xce341bd5 backlight_force_update +EXPORT_SYMBOL vmlinux 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL vmlinux 0xce4485d1 mutex_lock +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce6fa9c0 bio_reset +EXPORT_SYMBOL vmlinux 0xce7b2e37 blk_init_queue +EXPORT_SYMBOL vmlinux 0xce7bfe70 vm_brk +EXPORT_SYMBOL vmlinux 0xce81cca3 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xce90091c jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceb999f5 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xceed7f85 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcef83fb2 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf094be3 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xcf3dae7e tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xcf3db764 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xcf3ea73a of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xcf526ab7 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xcf5ec6cd iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xcf63c0da deactivate_super +EXPORT_SYMBOL vmlinux 0xcf66c32a skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xcf674f1b devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0xcf6d35a2 __register_nls +EXPORT_SYMBOL vmlinux 0xcf6e7893 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xcf7b30ec xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xcf88625f mempool_create_node +EXPORT_SYMBOL vmlinux 0xcf989b99 of_clk_get +EXPORT_SYMBOL vmlinux 0xcf9b8d9d nvm_end_io +EXPORT_SYMBOL vmlinux 0xcfae7a3b swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0xcfcc314a vme_slot_num +EXPORT_SYMBOL vmlinux 0xcfda64fc tty_register_driver +EXPORT_SYMBOL vmlinux 0xcfe52bee ptp_clock_register +EXPORT_SYMBOL vmlinux 0xcfea24bf path_is_under +EXPORT_SYMBOL vmlinux 0xcff6b676 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0xd0024b12 brioctl_set +EXPORT_SYMBOL vmlinux 0xd01838df lock_rename +EXPORT_SYMBOL vmlinux 0xd031417d splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xd034105f lockref_put_return +EXPORT_SYMBOL vmlinux 0xd04c7414 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0xd0552d0c i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd086e13e skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xd0895876 twl6040_power +EXPORT_SYMBOL vmlinux 0xd09992b8 kobject_set_name +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0c365d9 cdev_del +EXPORT_SYMBOL vmlinux 0xd0deb817 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xd0e11728 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd100acbd _raw_write_lock +EXPORT_SYMBOL vmlinux 0xd1021fa3 napi_get_frags +EXPORT_SYMBOL vmlinux 0xd13d2c63 mmc_can_discard +EXPORT_SYMBOL vmlinux 0xd147d871 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0xd1551f51 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xd15a7263 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xd1772491 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xd179c802 nand_unlock +EXPORT_SYMBOL vmlinux 0xd17d4fcf csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd1931940 i2c_master_recv +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd1a2ddae dev_deactivate +EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1d9d59b __serio_register_driver +EXPORT_SYMBOL vmlinux 0xd1e76055 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xd200d7ad tcp_check_req +EXPORT_SYMBOL vmlinux 0xd20ba198 flow_cache_fini +EXPORT_SYMBOL vmlinux 0xd23bbe82 proto_register +EXPORT_SYMBOL vmlinux 0xd242b072 vfs_writev +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd2604079 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xd2729b64 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xd275379f nvm_bb_tbl_fold +EXPORT_SYMBOL vmlinux 0xd27a0163 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xd27a4cf0 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2855f5b __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xd288f9de blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xd289a6d9 flush_dcache_page +EXPORT_SYMBOL vmlinux 0xd28f8fe0 __block_write_full_page +EXPORT_SYMBOL vmlinux 0xd2a8003b devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xd2a941d4 sg_init_table +EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e402b5 do_SAK +EXPORT_SYMBOL vmlinux 0xd2e59585 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd325e42a tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0xd32a2e35 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xd32a7d56 get_task_io_context +EXPORT_SYMBOL vmlinux 0xd35f75a1 match_string +EXPORT_SYMBOL vmlinux 0xd36d11e6 inet6_release +EXPORT_SYMBOL vmlinux 0xd370d609 nand_read_oob_syndrome +EXPORT_SYMBOL vmlinux 0xd39280c3 param_set_bool +EXPORT_SYMBOL vmlinux 0xd3a375f7 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xd3b26cdd end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3c5f467 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xd3cd19f4 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xd3da0907 nvm_get_bb_tbl +EXPORT_SYMBOL vmlinux 0xd3dbfbc4 _find_first_zero_bit_le +EXPORT_SYMBOL vmlinux 0xd40616c0 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xd40725e0 pci_scan_slot +EXPORT_SYMBOL vmlinux 0xd408f4c6 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xd42a2d3f of_device_unregister +EXPORT_SYMBOL vmlinux 0xd42ed9f2 mmc_can_trim +EXPORT_SYMBOL vmlinux 0xd4433787 vm_event_states +EXPORT_SYMBOL vmlinux 0xd4669fad complete +EXPORT_SYMBOL vmlinux 0xd490f69d __scm_destroy +EXPORT_SYMBOL vmlinux 0xd4ae0ff9 snd_ctl_replace +EXPORT_SYMBOL vmlinux 0xd4c4ac58 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xd4c75172 sock_i_ino +EXPORT_SYMBOL vmlinux 0xd4e4ada1 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xd5012737 ps2_init +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd53cb262 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xd549e046 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0xd54ab470 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0xd567d596 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xd5909eb1 clocksource_unregister +EXPORT_SYMBOL vmlinux 0xd590ad2d cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xd591a506 dev_trans_start +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd5a1b6a4 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xd5b19034 write_inode_now +EXPORT_SYMBOL vmlinux 0xd5bdd2b3 udp_gro_receive +EXPORT_SYMBOL vmlinux 0xd5c158aa vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xd5c3852a set_page_dirty +EXPORT_SYMBOL vmlinux 0xd5d8146d fs_bio_set +EXPORT_SYMBOL vmlinux 0xd5dc98cb phy_device_register +EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xd5fc967c fb_find_mode +EXPORT_SYMBOL vmlinux 0xd5fdaa75 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd61347c6 register_sysctl +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd617ef30 set_device_ro +EXPORT_SYMBOL vmlinux 0xd627480b strncat +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd63af924 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd658dc7e qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xd65fca37 task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0xd66044f4 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xd66400db pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xd674dc97 dev_warn +EXPORT_SYMBOL vmlinux 0xd685901b __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c1f4f tty_port_open +EXPORT_SYMBOL vmlinux 0xd6946879 forget_cached_acl +EXPORT_SYMBOL vmlinux 0xd69a3dec kmap_high +EXPORT_SYMBOL vmlinux 0xd69ef97d posix_acl_alloc +EXPORT_SYMBOL vmlinux 0xd6ada7a8 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0xd6b2ca6d vm_mmap +EXPORT_SYMBOL vmlinux 0xd6bf88c6 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xd6cb56ae xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xd6eb8a8a skb_append +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd73cc153 generic_setlease +EXPORT_SYMBOL vmlinux 0xd74289f9 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xd74359d9 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xd7546f80 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd7712e63 inet_listen +EXPORT_SYMBOL vmlinux 0xd796d763 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write +EXPORT_SYMBOL vmlinux 0xd7a6b82d blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xd7a93b04 ilookup +EXPORT_SYMBOL vmlinux 0xd7acb541 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xd7b015c6 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0xd7c03400 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7d44ec0 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xd7e08f67 clear_wb_congested +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7eb4408 mem_map +EXPORT_SYMBOL vmlinux 0xd81aeb55 shdma_init +EXPORT_SYMBOL vmlinux 0xd820b608 __sk_dst_check +EXPORT_SYMBOL vmlinux 0xd82ffdf8 nand_bch_calculate_ecc +EXPORT_SYMBOL vmlinux 0xd833bd67 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xd845cf95 nla_put +EXPORT_SYMBOL vmlinux 0xd84aeb6a phy_detach +EXPORT_SYMBOL vmlinux 0xd8511d0c pci_dev_driver +EXPORT_SYMBOL vmlinux 0xd85cd67e __wake_up +EXPORT_SYMBOL vmlinux 0xd876c79f pps_register_source +EXPORT_SYMBOL vmlinux 0xd87b7017 tcp_release_cb +EXPORT_SYMBOL vmlinux 0xd8970504 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xd8a7fb29 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b1e4f8 fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xd8b72e17 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0xd8c097c3 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xd8c0a7fb i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xd8c97d6b fsync_bdev +EXPORT_SYMBOL vmlinux 0xd8cf90c9 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0xd8dcba96 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8e88899 kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0xd8fdb4e4 elevator_change +EXPORT_SYMBOL vmlinux 0xd90f1b9a snd_ctl_free_one +EXPORT_SYMBOL vmlinux 0xd92e2230 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xd94ab6c3 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xd955d2b7 omap_set_dma_dest_data_pack +EXPORT_SYMBOL vmlinux 0xd96d3b2c get_super_thawed +EXPORT_SYMBOL vmlinux 0xd96ea19a xfrm_register_type +EXPORT_SYMBOL vmlinux 0xd97edd47 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9c23059 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9fc45af unregister_binfmt +EXPORT_SYMBOL vmlinux 0xda03e19b lock_fb_info +EXPORT_SYMBOL vmlinux 0xda0ada68 mdio_bus_type +EXPORT_SYMBOL vmlinux 0xda246307 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda41a7d4 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xda4b71d7 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xda4ef5da nf_hook_slow +EXPORT_SYMBOL vmlinux 0xda7b08ff vme_irq_generate +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda8b7114 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0xdaa063a4 param_get_charp +EXPORT_SYMBOL vmlinux 0xdaa08781 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages +EXPORT_SYMBOL vmlinux 0xdaa69d8d filp_open +EXPORT_SYMBOL vmlinux 0xdaa86085 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xdaafc807 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xdab02190 __posix_acl_create +EXPORT_SYMBOL vmlinux 0xdab93cc0 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad97f94 __raw_writesw +EXPORT_SYMBOL vmlinux 0xdadf7402 msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0xdb4292e4 omap_set_dma_params +EXPORT_SYMBOL vmlinux 0xdb5594b8 processor +EXPORT_SYMBOL vmlinux 0xdb56228b xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xdb6760a6 scsi_remove_device +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb767012 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xdb7d83cf inet_stream_ops +EXPORT_SYMBOL vmlinux 0xdb99bea0 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0xdbb112b0 scsi_host_get +EXPORT_SYMBOL vmlinux 0xdbe3ebc6 rwsem_wake +EXPORT_SYMBOL vmlinux 0xdbf58fa7 param_set_charp +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc09f240 contig_page_data +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc258da0 devm_iounmap +EXPORT_SYMBOL vmlinux 0xdc30ed0d xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5d1988 pci_request_regions +EXPORT_SYMBOL vmlinux 0xdc73d336 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xdc994f1e tc6393xb_lcd_set_power +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcc50fe1 lease_modify +EXPORT_SYMBOL vmlinux 0xdccf5aac d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xdcec3004 input_unregister_handle +EXPORT_SYMBOL vmlinux 0xdceebfd1 flush_kernel_dcache_page +EXPORT_SYMBOL vmlinux 0xdcf6fdca amba_driver_register +EXPORT_SYMBOL vmlinux 0xdcfc4186 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xdd023394 block_truncate_page +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd1de962 dev_err +EXPORT_SYMBOL vmlinux 0xdd226fa9 __raw_readsw +EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd3916ac _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xdd53c41f uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xdd65e6c3 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xdd7b9a1e max8998_read_reg +EXPORT_SYMBOL vmlinux 0xdd83a1af snd_dma_free_pages +EXPORT_SYMBOL vmlinux 0xdd8491b8 bdi_register_dev +EXPORT_SYMBOL vmlinux 0xdd900065 __pci_register_driver +EXPORT_SYMBOL vmlinux 0xdda0e182 __d_drop +EXPORT_SYMBOL vmlinux 0xdda99588 mount_single +EXPORT_SYMBOL vmlinux 0xddad4846 snd_info_free_entry +EXPORT_SYMBOL vmlinux 0xddbb8de9 generic_update_time +EXPORT_SYMBOL vmlinux 0xddc79766 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0xddca6554 elm_config +EXPORT_SYMBOL vmlinux 0xddd452a9 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0xddd73de5 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xddde5542 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xddfe8054 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xde0e1613 skb_tx_error +EXPORT_SYMBOL vmlinux 0xde112f98 kill_fasync +EXPORT_SYMBOL vmlinux 0xde206f65 pci_restore_state +EXPORT_SYMBOL vmlinux 0xde3379ab kill_anon_super +EXPORT_SYMBOL vmlinux 0xde75f654 __seq_open_private +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9abcde snd_pcm_release_substream +EXPORT_SYMBOL vmlinux 0xdebee7c5 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0xdec030e5 arm_clear_user +EXPORT_SYMBOL vmlinux 0xdee629f0 vfs_unlink +EXPORT_SYMBOL vmlinux 0xdefc7c0a ihold +EXPORT_SYMBOL vmlinux 0xdf04832a __scm_send +EXPORT_SYMBOL vmlinux 0xdf0ce038 vme_irq_request +EXPORT_SYMBOL vmlinux 0xdf10b9d8 blk_init_tags +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update +EXPORT_SYMBOL vmlinux 0xdf4fbc6f alloc_fcdev +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf6637d5 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf9de6e1 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xdfbeceb7 param_get_byte +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfd4fa9f vga_client_register +EXPORT_SYMBOL vmlinux 0xdfd91ce9 omap_type +EXPORT_SYMBOL vmlinux 0xdfee1922 snd_pcm_hw_param_last +EXPORT_SYMBOL vmlinux 0xdff4e15c dquot_file_open +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffa91d0 posix_test_lock +EXPORT_SYMBOL vmlinux 0xe001d892 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xe0077f47 snd_info_create_card_entry +EXPORT_SYMBOL vmlinux 0xe00d90cf skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xe0186dda input_unregister_handler +EXPORT_SYMBOL vmlinux 0xe01e98d2 udp_table +EXPORT_SYMBOL vmlinux 0xe0376976 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0xe03e022d dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xe0474df6 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0xe04bafd2 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe05ee872 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe0810848 sget_userns +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe089a82b nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0xe094ef39 sg_next +EXPORT_SYMBOL vmlinux 0xe0af22b7 nand_bch_correct_data +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0c03961 scsi_register +EXPORT_SYMBOL vmlinux 0xe0c8ba01 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xe0ccac6f phy_suspend +EXPORT_SYMBOL vmlinux 0xe0d89d33 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xe0f61388 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0xe10d2524 tcp_seq_open +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe127fb18 down_killable +EXPORT_SYMBOL vmlinux 0xe12e6bb5 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe14f19eb amba_request_regions +EXPORT_SYMBOL vmlinux 0xe159ff57 skb_queue_tail +EXPORT_SYMBOL vmlinux 0xe15b24ed ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xe17040ba blk_stop_queue +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe1a0cffa dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xe1a1c30d d_obtain_root +EXPORT_SYMBOL vmlinux 0xe1cc4424 get_monotonic_coarse64 +EXPORT_SYMBOL vmlinux 0xe1e20696 tcp_poll +EXPORT_SYMBOL vmlinux 0xe1f0ab3a _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe2061824 tty_lock +EXPORT_SYMBOL vmlinux 0xe21f1a97 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xe2271d9a tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xe23414cd blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe27911f3 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xe27aa82f phy_device_create +EXPORT_SYMBOL vmlinux 0xe27be8e3 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xe28339c5 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2bfc5e6 snd_device_register +EXPORT_SYMBOL vmlinux 0xe2cc96f7 __do_once_done +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2d57abe pci_release_region +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2ebc87f bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xe2ee185e kernel_getpeername +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2f6a09a __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe31bdd4c inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xe32d4bee phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xe349928a of_phy_connect +EXPORT_SYMBOL vmlinux 0xe37b8cc6 __quota_error +EXPORT_SYMBOL vmlinux 0xe3987f9d nand_scan_ident +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe413c896 netdev_all_lower_get_next_rcu +EXPORT_SYMBOL vmlinux 0xe41a1dd8 unload_nls +EXPORT_SYMBOL vmlinux 0xe41b3ca9 simple_pin_fs +EXPORT_SYMBOL vmlinux 0xe43274bc proc_dointvec +EXPORT_SYMBOL vmlinux 0xe439fd9d dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xe43f0f44 of_iomap +EXPORT_SYMBOL vmlinux 0xe44f6944 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xe4946e3b __init_rwsem +EXPORT_SYMBOL vmlinux 0xe494a01a radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0xe49ca787 set_posix_acl +EXPORT_SYMBOL vmlinux 0xe49cf0ee inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0xe4a8d15b bdget_disk +EXPORT_SYMBOL vmlinux 0xe4ae3af3 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xe4bdad1a xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid +EXPORT_SYMBOL vmlinux 0xe4d219b8 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xe4e19f7c ip_options_compile +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4f3504a tcp_shutdown +EXPORT_SYMBOL vmlinux 0xe4ff5a22 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xe50e01c5 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe5445af6 omap_get_dma_dst_pos +EXPORT_SYMBOL vmlinux 0xe55951ae inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xe5632666 snd_pcm_new_internal +EXPORT_SYMBOL vmlinux 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL vmlinux 0xe575409b nobh_write_begin +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe582f13f get_mem_type +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe5a2e8f5 mount_bdev +EXPORT_SYMBOL vmlinux 0xe5a5a1a7 fget_raw +EXPORT_SYMBOL vmlinux 0xe5bec55c ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xe5bfbdef init_buffer +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5ce9efb fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0xe5e967cb set_create_files_as +EXPORT_SYMBOL vmlinux 0xe5e98cff account_page_redirty +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe6390396 mark_info_dirty +EXPORT_SYMBOL vmlinux 0xe63ece6e pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xe64d62a4 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xe66452ab dql_init +EXPORT_SYMBOL vmlinux 0xe66ce78d sock_no_listen +EXPORT_SYMBOL vmlinux 0xe6704be4 empty_aops +EXPORT_SYMBOL vmlinux 0xe68b4ff1 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size +EXPORT_SYMBOL vmlinux 0xe6970dfb seq_hex_dump +EXPORT_SYMBOL vmlinux 0xe6a0bffb __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xe6a3d588 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xe6b4fb22 netlink_capable +EXPORT_SYMBOL vmlinux 0xe6cf4de1 kdb_current_task +EXPORT_SYMBOL vmlinux 0xe6e0bd7d ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xe6ea1417 nvm_erase_blk +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe6eebb7f snd_jack_set_key +EXPORT_SYMBOL vmlinux 0xe705c206 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0xe7075b97 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv +EXPORT_SYMBOL vmlinux 0xe7259aae nf_unregister_hook +EXPORT_SYMBOL vmlinux 0xe73da996 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0xe741639a mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0xe7582bb7 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xe77d01d6 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xe77f6510 fb_set_var +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7a8e833 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7d84fc4 free_buffer_head +EXPORT_SYMBOL vmlinux 0xe7e08224 fb_class +EXPORT_SYMBOL vmlinux 0xe7ee582e devm_clk_get +EXPORT_SYMBOL vmlinux 0xe80fbef8 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xe815a7ab fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0xe817d083 __page_symlink +EXPORT_SYMBOL vmlinux 0xe8605b18 complete_request_key +EXPORT_SYMBOL vmlinux 0xe878546b __cpu_present_mask +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe87ec87e skb_vlan_push +EXPORT_SYMBOL vmlinux 0xe8812905 inet_add_protocol +EXPORT_SYMBOL vmlinux 0xe8845f41 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0xe88b515c kthread_stop +EXPORT_SYMBOL vmlinux 0xe8a585ad finish_no_open +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8b9a3d4 mx51_revision +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8cfce09 tegra114_clock_deassert_dfll_dvco_reset +EXPORT_SYMBOL vmlinux 0xe8e4da8a km_policy_notify +EXPORT_SYMBOL vmlinux 0xe8f7cf0e ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xe9060b77 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xe912da6b unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91641b9 bitmap_unplug +EXPORT_SYMBOL vmlinux 0xe9372c64 sk_reset_timer +EXPORT_SYMBOL vmlinux 0xe93f6042 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xe93fdc2e i2c_transfer +EXPORT_SYMBOL vmlinux 0xe9418137 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe9579d84 pci_bus_put +EXPORT_SYMBOL vmlinux 0xe95bde43 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe96990d7 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xe9b4c346 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0xe9b8b037 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xe9baa646 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xe9be808d lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xe9ccfcd3 ioremap_cache +EXPORT_SYMBOL vmlinux 0xe9e07c7a sound_class +EXPORT_SYMBOL vmlinux 0xe9f69e24 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea0e85c6 dev_addr_del +EXPORT_SYMBOL vmlinux 0xea137a81 key_invalidate +EXPORT_SYMBOL vmlinux 0xea1f5b88 samsung_rev +EXPORT_SYMBOL vmlinux 0xea33577c dev_get_nest_level +EXPORT_SYMBOL vmlinux 0xea5cf731 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xea5e3a7f netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0xea655709 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xea6ae482 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xea6de613 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xeaa34d0a free_netdev +EXPORT_SYMBOL vmlinux 0xeac56531 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0xead2efbf dev_add_offload +EXPORT_SYMBOL vmlinux 0xeae77b41 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xeaf73c1b of_node_put +EXPORT_SYMBOL vmlinux 0xeb03b389 __raw_readsl +EXPORT_SYMBOL vmlinux 0xeb1b120e omap_set_dma_write_mode +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb55a381 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeb6750c2 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0xeb8ba882 fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0xeba00e7a udp_ioctl +EXPORT_SYMBOL vmlinux 0xebb5fd90 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xebbd610f scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xebc96cc2 km_state_notify +EXPORT_SYMBOL vmlinux 0xebd18deb sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xebd5337d qdisc_reset +EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high +EXPORT_SYMBOL vmlinux 0xebff745f snd_pcm_lib_writev +EXPORT_SYMBOL vmlinux 0xec0747fc locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec8bfb52 __check_sticky +EXPORT_SYMBOL vmlinux 0xec8de2bb scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xec93d4d1 bdget +EXPORT_SYMBOL vmlinux 0xecaa0562 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xecb3a565 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xecc5d948 phy_init_eee +EXPORT_SYMBOL vmlinux 0xecc7b42f __skb_tx_hash +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecf40dd3 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0xecf78d00 ilookup5 +EXPORT_SYMBOL vmlinux 0xecf8a3b4 __raw_writesl +EXPORT_SYMBOL vmlinux 0xed02f642 set_nlink +EXPORT_SYMBOL vmlinux 0xed08ce85 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xed1477aa xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xed1fc35d blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0xed327d45 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0xed49f952 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed5f4841 phy_device_free +EXPORT_SYMBOL vmlinux 0xed67032f genl_notify +EXPORT_SYMBOL vmlinux 0xed717ddd alloc_disk +EXPORT_SYMBOL vmlinux 0xed72906a netdev_features_change +EXPORT_SYMBOL vmlinux 0xed754778 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xed7a6f20 __breadahead +EXPORT_SYMBOL vmlinux 0xed92fd50 snd_jack_set_parent +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedb606b8 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc7f4ec dq_data_lock +EXPORT_SYMBOL vmlinux 0xedd9106d __ashrdi3 +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xee10ad8b __sb_start_write +EXPORT_SYMBOL vmlinux 0xee24dd02 path_put +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3496c3 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0xee569dc3 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0xee715ef8 lg_global_unlock +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee950613 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeb8f44b inc_nlink +EXPORT_SYMBOL vmlinux 0xeec24b79 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xeecb764a tty_port_hangup +EXPORT_SYMBOL vmlinux 0xeed26829 path_nosuid +EXPORT_SYMBOL vmlinux 0xeed3635b proc_dostring +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeefb15f5 uart_resume_port +EXPORT_SYMBOL vmlinux 0xef1bbf6d insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xef2fdc4f __percpu_counter_init +EXPORT_SYMBOL vmlinux 0xef40a39a jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xef59ce5b would_dump +EXPORT_SYMBOL vmlinux 0xef5c59d5 dquot_operations +EXPORT_SYMBOL vmlinux 0xef665558 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xef6935ab pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xef76d9ad locks_free_lock +EXPORT_SYMBOL vmlinux 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL vmlinux 0xef8d2369 pcim_iounmap +EXPORT_SYMBOL vmlinux 0xefc107ef pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xefcf3143 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xefcffb3c unregister_shrinker +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefd6cf06 __aeabi_unwind_cpp_pr0 +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefec312f omap_get_dma_active_status +EXPORT_SYMBOL vmlinux 0xefec7b46 snd_pci_quirk_lookup +EXPORT_SYMBOL vmlinux 0xeffda52c peernet2id_alloc +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf003bef9 of_match_device +EXPORT_SYMBOL vmlinux 0xf01243bb km_new_mapping +EXPORT_SYMBOL vmlinux 0xf025bbcb tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xf026a089 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xf02c9276 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xf04e2b37 rfkill_alloc +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf06fef0c mmc_erase +EXPORT_SYMBOL vmlinux 0xf0773397 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xf07ec07b tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf0914354 xfrm_state_update +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0a61951 param_set_invbool +EXPORT_SYMBOL vmlinux 0xf0c3a212 snd_ctl_find_numid +EXPORT_SYMBOL vmlinux 0xf0c43d01 mdio_device_remove +EXPORT_SYMBOL vmlinux 0xf0ed2ef4 __raw_writesb +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0f6bd10 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xf0fbbb96 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL vmlinux 0xf0fcfe5a cdev_alloc +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf10925c7 locks_init_lock +EXPORT_SYMBOL vmlinux 0xf11acba0 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0xf1314da7 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf1558478 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xf155f70b tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xf18c244c snd_ctl_notify +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf19c1a54 kill_bdev +EXPORT_SYMBOL vmlinux 0xf1a12c3a set_binfmt +EXPORT_SYMBOL vmlinux 0xf1a560a8 ps2_drain +EXPORT_SYMBOL vmlinux 0xf1cd361d scsi_execute +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1ea6f1c __bswapsi2 +EXPORT_SYMBOL vmlinux 0xf1f3377f netdev_all_lower_get_next +EXPORT_SYMBOL vmlinux 0xf1f6793c inet_csk_accept +EXPORT_SYMBOL vmlinux 0xf1ff7761 vm_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xf20c3167 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf219e42e netif_rx +EXPORT_SYMBOL vmlinux 0xf23372db rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf24e7ee1 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL vmlinux 0xf25ea412 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xf26ec09b pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xf2970cc8 vlan_vid_del +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf2ad8282 __put_cred +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2ccb434 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xf2ded260 module_put +EXPORT_SYMBOL vmlinux 0xf2dfd5bf bio_add_page +EXPORT_SYMBOL vmlinux 0xf2e3edff ping_prot +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf339fa92 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34b4d59 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xf34dabcb snd_jack_add_new_kctl +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf3699774 dump_emit +EXPORT_SYMBOL vmlinux 0xf3742ecb scsi_host_put +EXPORT_SYMBOL vmlinux 0xf376abfc dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xf3789bb3 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xf3a69285 request_resource +EXPORT_SYMBOL vmlinux 0xf3bf2d1e tegra_fuse_readl +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf40019c0 tegra114_clock_tune_cpu_trimmers_init +EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xf42430e1 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0xf4424ba5 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xf4451920 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xf4649c39 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0xf473ffaf down +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4768125 netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0xf485b1cd tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xf49a9837 kmap +EXPORT_SYMBOL vmlinux 0xf4a04498 nmi_panic +EXPORT_SYMBOL vmlinux 0xf4a2942a mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xf4b0c1a8 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xf4b632e2 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4cccf90 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf50affc5 bdevname +EXPORT_SYMBOL vmlinux 0xf527284d __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xf52ba446 mtd_concat_create +EXPORT_SYMBOL vmlinux 0xf52f27a8 kern_unmount +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf54383f8 vme_dma_request +EXPORT_SYMBOL vmlinux 0xf54c51a2 dma_pool_free +EXPORT_SYMBOL vmlinux 0xf55e6b1c __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp +EXPORT_SYMBOL vmlinux 0xf5678ada generic_delete_inode +EXPORT_SYMBOL vmlinux 0xf5836872 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xf585641b simple_rename +EXPORT_SYMBOL vmlinux 0xf59faf7e xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xf5a84c57 release_pages +EXPORT_SYMBOL vmlinux 0xf5b0cf80 search_binary_handler +EXPORT_SYMBOL vmlinux 0xf5c14ae1 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5c73f48 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL vmlinux 0xf5d84e11 read_cache_pages +EXPORT_SYMBOL vmlinux 0xf5de1bc2 release_firmware +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5f47c87 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xf60037ac register_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0xf6099893 module_layout +EXPORT_SYMBOL vmlinux 0xf60e6d96 sock_alloc +EXPORT_SYMBOL vmlinux 0xf628a7a7 vfs_link +EXPORT_SYMBOL vmlinux 0xf6313256 ptp_clock_event +EXPORT_SYMBOL vmlinux 0xf6404698 eth_header_parse +EXPORT_SYMBOL vmlinux 0xf65a78d6 dma_find_channel +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf67b96d9 finish_open +EXPORT_SYMBOL vmlinux 0xf67e91f5 mdiobus_scan +EXPORT_SYMBOL vmlinux 0xf6805108 d_splice_alias +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf6851d5f register_sysctl_paths +EXPORT_SYMBOL vmlinux 0xf6b10487 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xf6d7429a redraw_screen +EXPORT_SYMBOL vmlinux 0xf6d83765 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xf6e0ffa6 fddi_type_trans +EXPORT_SYMBOL vmlinux 0xf6eb9183 dev_change_xdp_fd +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f3cef6 omap_vrfb_setup +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf70156a5 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xf70c9253 dev_add_pack +EXPORT_SYMBOL vmlinux 0xf7163ec9 __raw_readsb +EXPORT_SYMBOL vmlinux 0xf73098a5 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xf748472c flush_delayed_work +EXPORT_SYMBOL vmlinux 0xf755bbef csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod +EXPORT_SYMBOL vmlinux 0xf78ede38 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xf7aaeddc ida_init +EXPORT_SYMBOL vmlinux 0xf7b254e6 mfd_add_devices +EXPORT_SYMBOL vmlinux 0xf7c08bd6 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xf7d11bbb lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xf8031a1d tegra_dfll_register +EXPORT_SYMBOL vmlinux 0xf80b992d jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf853bbca omap_vrfb_map_angle +EXPORT_SYMBOL vmlinux 0xf85435ed mount_subtree +EXPORT_SYMBOL vmlinux 0xf8667c60 textsearch_destroy +EXPORT_SYMBOL vmlinux 0xf86c5ead of_get_cpu_node +EXPORT_SYMBOL vmlinux 0xf871bb61 bioset_create +EXPORT_SYMBOL vmlinux 0xf87cc787 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xf87dd6d0 touch_buffer +EXPORT_SYMBOL vmlinux 0xf881913e address_space_init_once +EXPORT_SYMBOL vmlinux 0xf8abb35f vmap +EXPORT_SYMBOL vmlinux 0xf8c1630e inet_getname +EXPORT_SYMBOL vmlinux 0xf8c388ff tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xf8d10eb5 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xf8ebd67c generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xf8ec1ba4 nf_register_hooks +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf8fb1ea2 fscrypt_decrypt_bio_pages +EXPORT_SYMBOL vmlinux 0xf90c8633 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xf917665c tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf9350539 dev_driver_string +EXPORT_SYMBOL vmlinux 0xf95e8698 set_groups +EXPORT_SYMBOL vmlinux 0xf973322d nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xf98ea6ca pci_iomap_range +EXPORT_SYMBOL vmlinux 0xf991ef73 vm_node_stat +EXPORT_SYMBOL vmlinux 0xf9a3af90 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9d972ce udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xf9e57126 keyring_search +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xfa0275dc skb_split +EXPORT_SYMBOL vmlinux 0xfa156f41 pci_get_subsys +EXPORT_SYMBOL vmlinux 0xfa2299e2 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xfa3f0309 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5bcf35 mod_timer +EXPORT_SYMBOL vmlinux 0xfa6f4bba dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xfa770285 __free_pages +EXPORT_SYMBOL vmlinux 0xfa936a70 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0xfaa100dc xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0xfaa2f6d8 snd_pcm_suspend_all +EXPORT_SYMBOL vmlinux 0xfac6579c dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xfac68eba arm_elf_read_implies_exec +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfac92bc2 dma_mmap_from_coherent +EXPORT_SYMBOL vmlinux 0xfacd2e14 pgprot_user +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfadacd5e tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xfaf8ecba request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xfafdc27c ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xfb02dfa7 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xfb0b7ed4 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0xfb108bb4 udp_set_csum +EXPORT_SYMBOL vmlinux 0xfb164687 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xfb1cf6ba devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xfb381730 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb6d737f phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xfb6dbab3 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xfb7d9c45 __udivsi3 +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfb9eb646 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbb8a381 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xfbb91074 snd_info_register +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbcc8670 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0xfbdc6ddd pci_irq_vector +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc123f7e ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3b281e vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xfc40a85a __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xfc43173c console_start +EXPORT_SYMBOL vmlinux 0xfc5c1965 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xfc5ef88f snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xfc710493 finish_swait +EXPORT_SYMBOL vmlinux 0xfc99a43c __neigh_event_send +EXPORT_SYMBOL vmlinux 0xfcb76277 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0xfcc232de nand_read_oob_std +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcc4ffd6 snd_ctl_register_ioctl +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcdf5c24 generic_perform_write +EXPORT_SYMBOL vmlinux 0xfce7f0e6 mtd_concat_destroy +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfcfc7733 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xfd029dcf unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xfd1435a9 tegra_ahb_enable_smmu +EXPORT_SYMBOL vmlinux 0xfd20923b neigh_table_clear +EXPORT_SYMBOL vmlinux 0xfd305341 walk_stackframe +EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xfd44dfaf file_remove_privs +EXPORT_SYMBOL vmlinux 0xfd5683b9 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0xfd5da2ea of_get_next_child +EXPORT_SYMBOL vmlinux 0xfd697873 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xfd7795e9 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0xfd792426 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0xfd87822f xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xfd8c5afc release_fiq +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfd9c329c seq_path +EXPORT_SYMBOL vmlinux 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL vmlinux 0xfdb4ea01 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe1ce61d sg_miter_start +EXPORT_SYMBOL vmlinux 0xfe4fc4de vfs_symlink +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe80cae1 uuid_be_to_bin +EXPORT_SYMBOL vmlinux 0xfe8119ad mmc_can_reset +EXPORT_SYMBOL vmlinux 0xfe9869cb ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0xfeae5423 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xfebb4dad dev_uc_add +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfeed4004 fscrypt_pullback_bio_page +EXPORT_SYMBOL vmlinux 0xfef257e5 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xff0461de nvm_put_blk +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff3fcf86 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xff59b692 redirty_page_for_writepage +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 0xff6c1d23 sock_wake_async +EXPORT_SYMBOL vmlinux 0xff6dcde6 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xff7c61e2 update_devfreq +EXPORT_SYMBOL vmlinux 0xff838fef gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0xff8cbb1f idr_destroy +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xff9e5a75 vme_register_bridge +EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffdb82bc sg_free_table +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x6273419f sha1_finup_arm +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x6bcc9a2c sha1_update_arm +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x501b4c78 ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x61189743 ablk_init +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x9e8c3368 __ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xac21eccb ablk_init_common +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xc604d554 ablk_decrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xe24284b4 ablk_set_key +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xf792e834 ablk_exit +EXPORT_SYMBOL_GPL crypto/af_alg 0x0d0220a5 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x169aee36 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x3e3da4b6 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x3e63dcae af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x966e5f4e af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xa2dfc73c af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xad67b674 af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0xb3d6b015 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xd38285ca af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xd954ef95 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0xfab0ef60 af_alg_complete +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xd6053a68 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x0bfaa926 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x8badaa43 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x699e5b3f async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x6ab40b4a async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x3de2db54 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc83e31c2 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xdb74f38b __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xdc344de5 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x9cc4945b async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xd76758a3 async_xor_val +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x7e87993b blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xc4fed76d cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x0601f2dc cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 +EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x26f074c3 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x64ba3f02 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x24994b7b cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x2991d518 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x45d2725a cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x6163cd57 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x92a823e5 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xa727c066 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xaac8b0a2 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xbed44833 cryptd_ablkcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xc5a63e3f cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xe3d4014e cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xe55865c2 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xebb1c231 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xfbe6399b cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1ba99812 crypto_finalize_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1dfd1b12 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7cb91c79 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb7212265 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc17b9610 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf09073d7 crypto_transfer_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf352f06e crypto_transfer_request_to_engine +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey +EXPORT_SYMBOL_GPL crypto/dh_generic 0x9edeb49b crypto_dh_decode_key +EXPORT_SYMBOL_GPL crypto/dh_generic 0xa9c31fb3 crypto_dh_key_len +EXPORT_SYMBOL_GPL crypto/dh_generic 0xb25efd9f crypto_dh_encode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x597307c5 crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/lrw 0xdece8fa3 lrw_crypt +EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x1f2801a1 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0x2d25a371 mcryptd_ahash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0x99ed450c mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xa62d2a46 mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3207cf02 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x8bd02267 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xb900a6dc crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xe468cbd1 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xba31aedd serpent_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x8cf7483f twofish_setkey +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x41af841b __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x67339653 sis_info133_for_sata +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-spmi 0x8be3216e __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x92753775 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xbb121407 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xd6bfb79a __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x03881c4e bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1207f00e bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x19f6274e bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x23118c65 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3647e57e bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3ddfbc9e bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x51536cdc bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x591c071a __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5cfef3fb bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x62cd1e55 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x66a8da0f bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6df572e7 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x71b3b9dc bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8ae52073 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9581c844 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x989fed71 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xade52945 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbb1c14e6 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xccfaeb33 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd6a89e5b bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd873901f bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd8f28fcd bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdd2d097b bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe40a1ac1 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x530dff4f btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x566e1bc1 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x86096b3a btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9bb6a226 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd2c0bb65 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd4f82a3f btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x05ed4fab btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x13c7d950 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4d3a5e9a btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x54892414 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x66a8fa4f btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6a3ecf16 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7787078a btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7bb824ae btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa1b8eb4b btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa4cfaae0 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xaff73cb6 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd62fa6a1 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfb10f058 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfe97b07a btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x22f89337 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x50d13bde btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8a0a9dc8 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xab4d8831 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xaeab0164 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbac79c8f btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xca49f6bf btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf3147dc9 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf9446346 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfc23b53b btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfded4a8f btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xa78a08b2 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xbc9a30b2 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xbc357d5d btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x94cca63c h4_recv_buf +EXPORT_SYMBOL_GPL drivers/char/tpm/tpm_tis_core 0x5e8dbf82 tpm_tis_resume +EXPORT_SYMBOL_GPL drivers/char/tpm/tpm_tis_core 0x752df3b5 tpm_tis_remove +EXPORT_SYMBOL_GPL drivers/char/tpm/tpm_tis_core 0xae878a84 tpm_tis_core_init +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1ad28e9c clk_rcg_bypass_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f4159b0 clk_byte2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x24d6d72f qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2e92cdb2 qcom_cc_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x39df50bf qcom_find_src_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3b0b58e5 clk_regmap_mux_closest_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3e660af4 qcom_cc_register_board_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x40c8bac4 clk_alpha_pll_postdiv_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x476c3d7c clk_gfx3d_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4edfef84 qcom_cc_really_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x53f95e39 clk_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x612214bd clk_edp_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x669bd1fd qcom_find_freq +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x67ae803a clk_rcg_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x709d9cf0 clk_pll_configure_sr +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x73964fc2 clk_dyn_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8a2a303a qcom_reset_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8c4dbdbe clk_branch_simple_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8d53d96e clk_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x90b53166 clk_pll_configure_sr_hpm_lp +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x999e1e71 clk_branch2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x99afa35c qcom_cc_register_sleep_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x99d2c773 clk_rcg2_shared_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9e2e91a1 clk_rcg_bypass2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaace56b1 clk_rcg_esc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xac208814 clk_disable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb810e2b6 devm_clk_register_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb8febe82 clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc7994798 clk_branch_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcb0c5248 clk_byte_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcd0a83c6 clk_rcg2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd25fd154 clk_rcg_lcc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd56d61ac clk_enable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe703bcad clk_pll_vote_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf0e61bbc clk_alpha_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf1f136dc clk_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf69c2f55 clk_pll_sr2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf93e315f clk_regmap_div_ops +EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0x88e0f9ec bL_cpufreq_register +EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0xa9343fed bL_cpufreq_unregister +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x15d64e1a dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x77b42a0a dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7a27ce75 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd283b8a5 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdf7b79ab dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x2836cff1 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x348746ad hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x21420449 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x255f7857 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x331eeda5 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3f7a4106 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x421114ee edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x43cacf8c edac_stop_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4c694b71 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x51fbb404 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x55927aa5 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6963a0f0 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x76901e57 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7b30ebcd edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x80b2dde8 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x969d5e44 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x99cbc11d edac_mod_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9a28efa9 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9a36aa0a edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa3b2bf0c edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb2f9fefb edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbf97afde edac_queue_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc2529337 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc6b17895 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd19f79ba edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd5a1d06d edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdd7c019c edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfb3e4706 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x9bd94b27 get_scpi_ops +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x06453147 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2684c0b4 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x418601da fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4b6951be fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x70d9265f fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcb84ca47 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x647060f4 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x809dac6c __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x0f673b0a analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x2145d9c1 analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x672ec8e0 analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xf266da1f analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw-hdmi 0x2fd1a2d6 dw_hdmi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw-hdmi 0x4fc2a521 dw_hdmi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw-hdmi 0xce27012a dw_hdmi_audio_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw-hdmi 0xd8fe547b dw_hdmi_audio_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x13bf4359 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x16931e75 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x287616ea drm_gem_cma_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x32805110 drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3420a292 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x385c8b6e drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3bde1ca9 drm_gem_cma_describe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x519065e1 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x70671779 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7209e3ce drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7469ed60 drm_gem_cma_prime_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x87f1626a drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x96d1c83d drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xab3c872b drm_gem_cma_prime_vunmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xac08f1d0 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb0eae5ec of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc919f9d6 drm_gem_cma_prime_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd23531e6 drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xde41683f drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf6aed6b2 drm_gem_cma_prime_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1148b623 drm_fbdev_cma_fini +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x536d54e4 drm_fb_cma_debugfs_show +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x55a70e31 drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x754325d0 drm_fbdev_cma_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9b83d944 drm_fb_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xaf14853b drm_fb_cma_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb2c912af drm_fbdev_cma_hotplug_event +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcc337fd5 drm_fbdev_cma_restore_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd5404f9e drm_fbdev_cma_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x1cfe024a imx_drm_crtc_vblank_get +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x1d13791d imx_drm_connector_destroy +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x33e9d88f imx_drm_encoder_parse_of +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x419b08de imx_drm_handle_vblank +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x5f056ff0 imx_drm_crtc_vblank_put +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x6ae75d54 imx_drm_add_crtc +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xab55c4d4 imx_drm_encoder_destroy +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xc9ddf157 imx_drm_crtc_id +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xd652b5a4 imx_drm_remove_crtc +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x5eb94e98 vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x03ba1d6b ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x7e4af98b ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xbc6860c3 ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x00b935ab ipu_srm_dp_sync_update +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x04f7075a ipu_csi_set_mipi_datatype +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0728116a ipu_csi_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x07d6843f ipu_cpmem_set_image +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x09caa63a ipu_cpmem_set_burstsize +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 0x106f32b3 ipu_wait_interrupt +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x118160e1 ipu_ic_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x11ad474d ipu_cpmem_set_yuv_planar_full +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x11d8f100 ipu_stride_to_bytes +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 0x199bd5c8 ipu_dp_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1ba497eb ipu_pixelformat_to_colorspace +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1d808f17 ipu_idmac_disable_channel +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 0x1f271613 ipu_set_ic_src_mux +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 0x252b8d87 ipu_cpmem_set_high_priority +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2aab51b0 ipu_dc_enable +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 0x2f9751b4 ipu_degrees_to_rot_mode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x30b6999c ipu_rot_mode_to_degrees +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 0x3afbb44e ipu_smfc_set_watermark +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3c023b8a ipu_idmac_set_double_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3cc3ff7d ipu_dmfc_get +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 0x3ebceabc ipu_cpmem_set_block_mode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x40abb94c ipu_dc_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x427e3a3f ipu_cpmem_set_format_rgb +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4917f47a ipu_ic_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4b5d7c18 ipu_idmac_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4c179b49 ipu_dp_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4eb82750 ipu_cpmem_dump +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 0x5d42b5bf ipu_idmac_buffer_is_ready +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 0x656f413c ipu_idmac_wait_busy +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6b81afd0 ipu_ic_task_idma_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6bc69555 ipu_idmac_lock_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7068e939 ipu_dc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7121bd07 ipu_di_init_sync_panel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x73f1780f ipu_idmac_channel_irq +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x762c36d1 ipu_cpmem_set_stride +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x76302d14 ipu_csi_set_skip_smfc +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x76a63af7 ipu_cpmem_set_format_passthrough +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x77288cc0 ipu_csi_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7edee99d ipu_cpmem_set_yuv_planar +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7eee0741 ipu_smfc_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 0x8bd0bd47 ipu_dc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9058e289 ipu_smfc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x91c682bb ipu_ic_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x92330c3a ipu_set_csi_src_mux +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x947111db ipu_idmac_select_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x951a09d5 ipu_csi_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x991347de ipu_module_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x99a0ef07 ipu_drm_fourcc_to_colorspace +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9c335d85 ipu_pixelformat_is_planar +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 0xa579616b ipu_di_adjust_videomode +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 0xa96882d8 ipu_ic_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xae943226 ipu_cpmem_set_yuv_interleaved +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb228bf1e ipu_dp_set_global_alpha +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb7785d92 ipu_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb7b44f9f ipu_dp_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbaa74fb0 ipu_di_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbb4d8767 ipu_cpmem_zero +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc16fecc9 ipu_cpmem_set_axi_id +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc3c2cdb0 ipu_smfc_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc41f6ec5 ipu_idmac_enable_channel +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 0xc63a57bf ipu_module_enable +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 0xc6d2d5ef ipu_dp_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc88d89a1 ipu_mbus_code_to_colorspace +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc97e7a0f ipu_di_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcd7c6998 ipu_ic_task_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xce9a43b4 ipu_cpmem_set_rotation +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd064a453 ipu_ic_task_graphics_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd3327897 ipu_idmac_clear_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd630d9be ipu_idmac_enable_watermark +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd8fab64e ipu_idmac_get_current_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xde8b0b9c ipu_idmac_channel_busy +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe300a959 ipu_dp_setup_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe3b86336 ipu_csi_init_interface +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 0xe80d7ac0 ipu_idmac_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xec6ecd95 ipu_dp_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xed03cee1 ipu_cpmem_interlaced_scan +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf02b4f5c ipu_cpmem_set_fmt +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1440dc1 ipu_ic_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1d10240 ipu_cpmem_set_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf30fa161 ipu_cpmem_set_resolution +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf69d6cb6 ipu_csi_set_test_generator +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf7d99d69 ipu_dc_init_sync +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf9ed222e ipu_dp_set_window_pos +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xffe9a036 ipu_map_irq +EXPORT_SYMBOL_GPL drivers/hid/hid 0x03c77f63 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x07e8eabf hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x08144a8e hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0bb6e46a hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x11b6d65e hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x248d7071 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x285b73e0 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x32f38fcf hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3a0e6706 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x470e8ab7 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x473ad9b6 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x475c585c hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4b33cb0f hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4e57df9e hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4e67879a hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x52fa56f1 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6003a20c hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7a05dc48 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7aa0af77 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7f59436e hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8011a492 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x82a8f4b4 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x88ec2b2e hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9a15f314 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9c64773d hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa4f9b5a8 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa9483537 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaac02872 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb31afb43 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdbc9e91e hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdeb3f17c hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xed7c5008 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xee923cb0 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf8e5ab26 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfb4ced8d hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfd637895 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x409f1a9c roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x02211e0e roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x13e7edcf roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x63ec5993 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x70ef14af roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xbb0cc227 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd7f561f6 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0439c748 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2093b139 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x386371de sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x907ef1e4 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9a7a3b6c sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xaf1c69a0 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb26ef054 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc5ee3b01 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfcb34068 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xde5559c1 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x423252b0 ssip_reset_event +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x69f07873 ssip_slave_get_master +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x7eb5799f ssip_slave_running +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0xa34998c5 ssip_slave_start_tx +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0xc9d60b48 ssip_slave_stop_tx +EXPORT_SYMBOL_GPL drivers/hsi/controllers/omap_ssi 0xabae52e7 ssi_waketest +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0feb39c9 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x11cb4e8b hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x17e4c3fc hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3207d3b6 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x36d50061 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3f5ca2c5 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x41fd0308 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4601d19e hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4b624b4c hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5eaa482f hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x61626281 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x794f0780 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7fc728bd hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xae068cec hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb50a24b1 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd271f499 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf1b6b27d hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf4678221 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x518cdf4f adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x68af90b7 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xc8dea62e adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x27c3203f pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2c17c268 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3cb67d06 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x60788771 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x60db2dba pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6c4ec1c6 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6ed11069 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6fde570e pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x747178e5 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7ff8de21 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8ae11d42 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa496b4cc pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb8f9becd pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xbf2fc3a5 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc7cd168c pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x1017de5a hwspin_lock_request +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x163a4571 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x181ff659 __hwspin_unlock +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x2f249d24 __hwspin_trylock +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x5cb0bdcb hwspin_lock_register +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x65231c36 hwspin_lock_unregister +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x68936242 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x76b7e7de hwspin_lock_request_specific +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x89334198 hwspin_lock_free +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x9f896729 hwspin_lock_get_id +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0e71bb4f intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x10056fdd intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5d713a45 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x89d7a82b intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa4bc1d0d intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb2bcb1af intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xcb7951d9 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x036fddeb stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x07f1e421 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6dc25307 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xcd0b58fd stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xcfa6dc37 stm_source_write +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x1da97983 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x27bd3206 i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x4f91038c i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x58eca7dd i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xbc663905 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x18c46930 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xacdfa282 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xb9dc3878 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xbb6d073d i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x4e60139e i2c_setup_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x84e53da3 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xa1c61045 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xbb1175a2 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x1a766799 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x4dda830b bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x545f4359 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xdbcbf6d6 bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x6c4ed1a3 mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x74cc2552 mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x7e130f94 mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1073cd46 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2164ad39 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3db8fdc2 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x582a9690 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6d419110 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8cecfda4 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xbbe898cd ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xfbddd422 ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xff563ea7 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion +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 0xa5245a1d iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xb1e563e3 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x82246b23 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xcf4dd8ba ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x9189d051 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x9a5081a7 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xda4fb806 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x008540c5 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x01f4678b adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x16e0adf6 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4d191651 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5d99315e adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6034c6de adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x61ddbfb2 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7af33112 adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc955ed4c adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xccb02e41 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe938c95f adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xead4a66b adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x9b9712a7 bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xe400ab47 bmi160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x33fb7e43 inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x435be33b inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xb45fa123 inv_mpu_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xfeccc528 inv_mpu6050_set_power_itg +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x057d6dd5 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1778779f iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x181d8cbb iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1ebeef72 iio_read_channel_scale +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 0x356c4fb5 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3ae4288a devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b0d3d47 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4381fea5 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x47e904f4 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x48525933 devm_iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5dbfbcdb iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x60988c05 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6213f7db devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6497b8f4 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x65b27c53 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6640ff10 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6b4c2c6b iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x72ae14dd iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x73a9b9b1 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x78b40fa8 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7ee8cdf1 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x97fec6cd iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9d722923 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa895bda2 devm_iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaf285044 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb27da786 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb474151b iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb76c66bd devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbd3838bb iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbebd1597 iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc35ab616 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd0086e65 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd94f7b9d devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd9a2d437 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xde9a2197 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe1ce443d iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe1ee8053 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf31cfcd8 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0xd725d9d1 mpl115_probe +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/sw/rxe/rdma_rxe 0x85f9c467 rxe_dev_put +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x447ccfef input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x20a41b47 matrix_keypad_parse_of_params +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 0x79bf299c adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x13302e5e rmi_get_register_desc_item +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x277f5845 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x27926956 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x27f199ee rmi_register_desc_calc_size +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4820f055 rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x63edf539 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6dad3dec rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7059825a rmi_register_desc_calc_reg_offset +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7093b7cd rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x85d79ce4 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x87a8867e rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x881622d3 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x98a49331 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9ddcb2ee rmi_process_interrupt_requests +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd27b40be rmi_read_pdt_entry +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd7361305 rmi_read_register_desc +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xde0ba361 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe041128d rmi_2d_sensor_set_input_params +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf18e0ff9 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x14da7568 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xd40bf30a cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xdf82c285 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x038476f0 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xaddfa600 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x75de708d cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x7eaa31fd cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x42f66e82 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x50db519a tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xb8d2e45d tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd168c81d tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x172e648c wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1c847faf wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x40a51af9 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x44c0aa80 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x70aa05bf wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x770d72fe wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x77a3fe0f wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x886aaa1e wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x95d4b744 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa0119885 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa096757b wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb056f9d7 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0b803cce ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1ed2f89c ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x40fc6c8a ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6f0424aa ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7235106e ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x77e09634 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa3f31fdc ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd1665c3d ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd425e918 ipack_get_device +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0c267986 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0e5a0420 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x31dde596 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x346851ff gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x59e98dc8 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x68df041b gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8e0e7cff gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9ec4cfc3 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xabd05fac gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xca8965c8 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xde0a2ed2 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe0990dca gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe77cce14 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xeaaa3421 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xed8ce619 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf2ed95c7 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf71052ec gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x00847929 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x272e2aec led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x34e59925 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9f00b2cf led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa2243d8a led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc626801c led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0009f536 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2c143c7f lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4acf68fb lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x597d1866 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa8e44238 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb301d2d2 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc0e5c0b2 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xce17f265 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcf535c3d lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe6b61006 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf5afff5d lp55xx_read +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/mcb/mcb 0x00b1ad67 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x1392c00e mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x238ac1db chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x26db7591 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x547cf831 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8423a9f1 mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9eaeb44a mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa7ef409d mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb0e759a9 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc081e043 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xdbad2c9d mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xdeba481f mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xdf1148d8 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xebcc6617 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x00af95a1 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06d94b0a __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x157aa73e __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19a50641 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19acd14e __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1e382318 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x24935482 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x28991160 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x29ef0066 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2cd1be34 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3ae1afd1 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4f0216b8 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x56bd5947 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cb0a24a __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x65835607 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x68b2f180 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7baca7fe __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x95286aa1 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9cedcd57 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa60fcee9 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xafae4e81 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb4b03b2e __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7500cb5 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc1fd1dbc __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd4cd3c1a __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe278bd6d __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe68d70a9 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee926d8f __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf30b9aa6 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf438022f __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfbd03183 __tracepoint_bcache_btree_node_free +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 0x4534e051 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4a3408bc dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x63f867d9 dm_bio_prison_free_cell +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 0x77122c2a dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7cb4f74e dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x944b73e1 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xabe9094b dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb2dc2bd0 dm_cell_promote_or_release +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 0xd1506273 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3909d3a8 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +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 0x9b2b253a dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new +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 0xf354132f dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x1a889550 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x4c57beae dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x4d0a41cd dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x6e8ee56f dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9458b871 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x963256ba dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbdb72388 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x88a5cf30 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xad174c26 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 0x09472122 dm_rh_dec +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 0x3e83cfa0 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6ec8d554 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 0x87e12e8c dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa80ddcb0 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc106184b dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xdc975277 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key +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 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x150c85ce dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum +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 0x32b5f546 dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x33c03da6 dm_sm_disk_open +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 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x47044008 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x619701dc dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk +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 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit +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 0x832bf228 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify +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 0x966a8838 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock +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 0xa2507774 dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbcfdc290 dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbe0497aa dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xead1e727 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0x00096a0f cec_set_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0x4961a844 cec_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0xbff6533d cec_phys_addr_validate +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0xd2f2eac1 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x04b06c68 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x09e65c31 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1535bdbf saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x732ba068 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8fe65ce5 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xdb420eb1 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xdbdf1d9f saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xea56ff0e saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf7adc6c6 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfeface2f saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5f502211 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xaa9a026d saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xc9c73449 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd8c160ac saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf1a1c992 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf86d54dc saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xfe345095 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x087029c9 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x172563c6 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x208bc9bd smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x25df4956 smscore_getbuffer +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 0x4d17db71 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x565cfa42 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x60240f77 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x65455e44 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x72576c02 smscore_set_board_id +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 0x7cdb55f1 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9d2d08eb sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9d48354b smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xaae51380 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb30386d1 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcaf39a66 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdd8e27a9 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xed06e273 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x0756995d tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x0b63430e tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x1c236f52 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x395504e9 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4cf9e178 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x5c15f12d tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6da054cc tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7527c0ad tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x89685ab4 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x8deb2d91 tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x9e9e5267 tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xbbf641fb tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe01d21d2 tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf26d0c08 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xa0be1cf2 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x6f165fb6 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xed2873a9 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x0021c2a6 media_entity_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x01946775 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/media 0x0a0caf2f media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0x0edb36d6 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/media 0x0f93381c media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/media 0x1c6e2344 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x1c7fd308 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x2bef7d27 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/media 0x2c2f245d __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/media 0x2e5270bd media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0x2f19e96e media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/media 0x32b933bb media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x3a175c3a media_device_get_devres +EXPORT_SYMBOL_GPL drivers/media/media 0x3d6d6cc6 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/media 0x3e330dcb media_device_init +EXPORT_SYMBOL_GPL drivers/media/media 0x3e3a9560 __media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x40e3b0b5 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/media 0x462cdfdd media_entity_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/media 0x4d6c1bfc media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0x4e74d92b __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x53b0822d media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x612a0c1d __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0x64a1315a media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x6e129db6 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x7170d053 __media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x8ad3a3f3 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xa02a8054 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0xa02d2951 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/media 0xa464ec21 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xa50a1404 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0xa7ba5deb media_device_find_devres +EXPORT_SYMBOL_GPL drivers/media/media 0xc7e6a317 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/media 0xc96bc758 media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0xce49cbce media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0xd5e41621 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0xdc581289 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/media 0xdc5c7af3 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/media 0xe3a89489 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xe7474d70 media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x93b78540 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x02e88a22 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x046aa5d0 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0d303a6e mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1677fc28 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2f297532 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3a08e2c6 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x51481ad7 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5dc3c6e8 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6b699d56 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x77c47286 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7c6fa4fa mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x93552479 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa4347c9b mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa580a849 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa903ad5d mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbbef2c21 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc7581e7a mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xddb68b19 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xffafc445 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x11d29516 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x25c66fa3 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x46059277 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4d5b3ebb saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5a577ec8 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x62e64fd1 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x695a6e4c saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x73345fe0 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7d77125e saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8578ec86 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x973f1b91 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x99d5a153 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbd86dde9 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdf548de6 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdf71a376 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe0ca8b18 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe34843fa saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe8669976 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xee4a14d1 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4436de2a ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x77c3b1ad ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x92b98d25 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa8abb288 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xab4b068b ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb8f028d2 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xca64b212 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x391e5686 vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x48fa86b1 vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x551d261f vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x5b41e6a6 vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x756f1452 vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x883f6905 vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x98f732fa vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x085d8e48 omap_vout_try_window +EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x1da5563e 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 0x6db65fc8 omap_vout_new_format +EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0xc1644e97 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 0x5fe6f6e8 rcar_fcp_disable +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x9877c29f rcar_fcp_get +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xd3d62782 vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xdc54bfe2 vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xe0ace197 vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xe0e77a4f vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xee43e3df vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x10e32c8c xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x15808e23 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x26fc9b4f xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7b51b892 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x88df2fea xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa8d1b50e xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe8ec53ad xvip_enum_frame_size +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 0x72073e4e xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x0c535cec radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x1d795aff radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x018de034 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0b080fdf rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x22c36cac rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2f1c1135 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2fa3b480 rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x30514d0b rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4ad3c69a ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x51041a93 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x581f02ab rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x59b1e062 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5b8375d9 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5cfa1e8b ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7563d272 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x861b9702 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x87f3f759 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x95e20834 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa1bfe4d9 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbad38ca7 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe9d221ad ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x5337285c mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xe729cf4e microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xb6fa5b5b mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xe4e9bc78 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xaf801564 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x2c41ed83 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x587cc0fe tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x90968f26 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x5c2c55b0 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x964f8238 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xebb6e394 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x86478c66 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xbbd8903f tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x780a7870 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x01a980b0 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0723b577 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2da818de cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2df28c44 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4a178649 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4a3d2648 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x60b47065 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x68f7d7e2 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x77a4c3d4 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x77c5585b cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x79a4fdfb cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8be62a0f cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x98b199ff cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb2ff9fe0 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbb2c2782 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc689d988 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xca3d627c is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcbe759f5 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd68d4a43 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe42e4ecc cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x325d02d1 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x1fcd8697 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x170b0a8e em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4b5b823c em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4db648e5 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4f6ee5b5 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x72cb1a83 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7bdb06ee em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7e9816f8 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8b824112 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8c1577e0 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xac002cba em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbf73b033 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc332143e em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc42ddaa8 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdca5dd21 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe0663c9d em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe22d4552 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe5999afc em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xeb313365 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf526130b em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x1834a450 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x51049643 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xa9ba3f31 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xf82b3fc2 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x6d051896 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x706d3369 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x740d555c v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x8ce81f50 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xbe246a43 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xc2553c06 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x363ad524 v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x1eaa2e18 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x33475beb v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x20e4cb23 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x239ade86 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2f7e76f1 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x472a1a96 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x55db46a7 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x56c0d074 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x64ca953a v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6671ed5b v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6c2db49d v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x902b001d v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9c6d07e0 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9c9eca95 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9f2d2f9f v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaf9941ed v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb8be32e4 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xba443d8a v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbaa2498b v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc243f571 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcb0739bd v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcc917f18 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd04c5f73 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd334398c v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe1a9b911 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe3d6f9b2 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe40ea813 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe87b5e3a v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xedeb6a89 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0bb2606e videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0dbbb570 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x11ebac62 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x18600d5b videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x20280a25 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2119ba2a videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2583106e videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2762732a videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2a0ccefb videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x34fc78f3 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x50176e7c videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5546f449 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x55d1c01b videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x55d331c1 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x82f74602 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x83a00f21 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x92029576 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x93776af9 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb2e3c3be videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc311198c videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcd14565c __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd8e52e56 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe31f76b7 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfb88e877 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x4fdc8b7e videobuf_to_dma_contig +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0xcabb52bd videobuf_queue_dma_contig_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0xe2b1bd39 videobuf_dma_contig_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x0efd2e06 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x48827a27 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 0xcaf2c947 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xe904d0d4 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x00762725 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x0102e4d9 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x1e597776 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x071757a3 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x089c3225 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0f0c79fb vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x21bea09a vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2ffc3b02 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3a23d5e1 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4fa83c8f vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x536cf63e vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x59e22ee4 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6b3366ef vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7ca64f97 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x81ef99de vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x89e845ac vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x94054e45 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x963eadb0 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x982e0648 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa2e4cbe4 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xcd93dc93 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd5821eb0 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd5d69eb7 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd772251a vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe0e2cf51 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf0cfe489 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x08531672 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x31186cc3 vb2_dma_contig_clear_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x43f64571 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x0f6a3bca vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x397c5086 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x081129b9 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0a64ceed vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0f555d7e vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x157338af vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1edd1814 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x26015115 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2aa30244 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2d3eacec vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x36851450 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4449b29d _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4f1a86c5 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x69f6506e vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x722b4816 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x74b9688f vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8231d1dd vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x896b8e2a vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8ae9ec76 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8e1c5d21 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8e91d503 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8e9b7c1b vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x98bdc59a vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9fdb2f30 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa8ba8aef vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd7fef83e vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xeae01ac9 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf49ff477 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf7b5a449 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfd7727c4 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x02633ba8 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x003cb63d v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x04d94a0f v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x08d6dff9 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0aa6af5e __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0b46073e v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0c8e1b7e v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x112902b0 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x16f67eef __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x178a4812 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x18ebefb0 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x22b9fb4b v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x25a0b77f __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x36e65c85 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3734338c v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3cb2bcfe v4l2_pipeline_pm_use +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x46f772e8 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x475f323f v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x48a36a41 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x493e8e97 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50d65b11 v4l2_subdev_free_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x56e83c4c v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5c7f48b7 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5edab8d3 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5fa20390 v4l2_subdev_alloc_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x61817752 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x623b9d01 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7eeeee2e __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x88dee90b v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9062b47b v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x92029a3f v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98ebb94f v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbd320e77 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbf42b61d v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc1de4dfa v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc2ac1f16 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd443cde8 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd680a1fa v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd8192224 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdd9073e8 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe23e31d6 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe8770199 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xee97d180 v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf8de86d7 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xffdb0e7f v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x025a848f pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x1ccbc22e pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xce1505f8 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x25fe6662 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x364e900d da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x36982fa8 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc3647282 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe16c7dc4 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xeb276a95 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf3f8a247 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0eb7c76c kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4619e50b kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x46508588 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7539ecda kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x906c0661 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9c6de9db kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xddfb86aa kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xdf25b724 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x008abdd7 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xa2a98a5d lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xea0c2c47 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x506dc762 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x53116ef2 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x741697d5 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa6ce8418 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xbc732cde lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc2b1da39 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe64fd614 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xae747d61 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xe717dbea lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xeb6be703 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x0760a23d mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x1882bf0f mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x27fd9412 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x30a9bae6 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6747df32 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x75482a5a mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x209693cd pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2322af0b pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9e19f44b pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa07d08e5 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa0c95b4d pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xab174254 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xaed43083 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xaf835881 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbf6d4c0b pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc1d51d57 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xce801e5f pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x6780b730 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xb9329571 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x0f78320b pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x42f5cc76 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x434c8151 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6c1023db pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6eb27bcb pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0d760df6 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0fdf2b25 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x185397d0 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2cbdde5c rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x34b4def4 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3b1e48c6 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3d0a699d rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x46258ac4 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x530e5d6b rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5d0d306a rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5f0e3e0e rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x630513f7 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x657e1549 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6696f758 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6c670d16 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa4d9ddc2 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xaba17473 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbd4bdf58 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc82cf1b9 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xce22a153 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcf88fbe8 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd0c15ea6 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd7ec0776 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd9fc351e rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0726ccb4 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1b1fcf1a rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x36119cb5 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x565ca515 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5bab931f rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5df7c7fa rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x8bc03d5d rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa4c855d4 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xaaa54d95 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xaf731c37 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb56730b5 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc9c5da63 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd06e12b3 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x07bd7d42 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x112b51fb si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1c4388c0 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x20c4f663 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2475d3a3 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x275a4da1 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x28e579a5 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2eb0c4d8 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3daffab0 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3ed4a93b si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4bb2b59a si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4d730ca2 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5103def5 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5830b112 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5effad0f si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x60553160 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7891a012 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7b121337 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x91f4f284 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x959d8026 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9e266ced si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa02afb23 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb0f92efe si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc0f240cb si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc23eaf27 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcb6e6b99 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xccc60bdb si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd430db80 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd67cc71e si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd75e811b si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdc650004 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xef190cd3 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf0273092 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf6bf3dac si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x2c879615 ssbi_write +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x3f275034 ssbi_read +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x6d6606de am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7a430a51 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x92163d39 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xcc549088 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x35c4b9c2 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x3646ac84 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xcb9ba7ac tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xf0f1f811 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x1df1d85c ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x33a9ed27 bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xae3113a1 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xbba7f7a5 bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xe59cf2b0 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x0fb1107c cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x4f933c02 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x60e89b04 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x61916fd7 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x18689770 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1a817c31 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1f5d5563 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x268672b2 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x32aee621 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4b92cf73 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb427ba92 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcc4b6241 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2805001d lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbabba09f lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc1b7f031 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xdd2b6715 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe1493e2e lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe65c6a66 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xea029af6 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf251366a lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x090615c3 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xbf97dc83 st_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x93583c97 dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x94587c11 dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x9e97a4da dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x3dbdd203 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc0a3f795 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xff8ad27d cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x3ee4f884 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xb34f7cd2 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xcd1d3702 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x4ef003e6 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x02f16ec8 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x4c5e71e1 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x8738947a cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/maps/physmap_of_versatile 0x45367192 of_flash_probe_versatile +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x3d36aa41 brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0xa7feb141 brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0xcd21af70 brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x917082ae sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x406dfc08 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xf6fa12ea onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x62c9a15d spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0038ef26 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x027fefb1 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x065ee0ac ubi_is_mapped +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 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x653391c4 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x79db853f ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8797c205 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x99a41f85 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9b02eb5c ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9be4c9c0 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xae56ed36 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb8491d0a ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe18234fb ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe3d10c59 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf4032375 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xb255ff7b arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xde437be2 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x065fec5b free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0cce98f3 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2e912745 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x848d3bbe unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc596a44b alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd38e26b1 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1c3c9a0d can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4c8a67d4 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4d2f3e7b can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x68dacc3f alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7422aa36 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7e3f5e14 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x81e7b252 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8d182a11 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8d336115 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x971b048a can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa5a2eb52 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xaded00e6 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb745cd2b devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbf13edba can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc6509436 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd51fd0f5 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe1ee4a57 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe7ebc612 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa9f34dca alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xaf483039 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xf65934cc free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xf9683658 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x08765bd0 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x25a56cac free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x4b03e45c register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xde864daf unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x6672038a arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xcfe80471 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/mvneta 0x6bbbe2b3 mvneta_frag_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/mvneta 0x96a6ea0b mvneta_frag_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x021c54fd mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0664d931 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c31d938 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ce21100 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e13243d mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f9b87e5 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x111bf838 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1290464e mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12c77846 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1315c615 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1339844f mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17dc2a02 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20e3c616 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2135e73d mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x270e2c2f mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28cb7627 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c8de565 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d1fd828 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e6b182b __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f47731a mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f67ac22 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ffc4e58 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31053966 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x312c6a86 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31790313 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3293a7b1 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33afc586 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33c48159 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x357a5ad2 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35fcd95b mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x368c72ed mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37741ef4 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x392f6248 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39c26beb mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d11ffd2 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d24d006 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e864f7e mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ea95425 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41b967d7 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43c2e996 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bc95405 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c50a199 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d50724d mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e8b4cb0 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4eebac56 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5276c1e5 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x535a68f1 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53cc03a8 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5685775d mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a95e078 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6142188c mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61c8735b mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67974901 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67a2b547 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67c65be9 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67d3a6c9 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69b40d7b mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d86b4f1 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77366e4a mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x782fa179 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b86ecf6 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c20388a mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c749731 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d321daa mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d6bdf6c mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x811825f1 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82c9897b mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8486c19a mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84cbd937 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c0fc910 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d3591de mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fa1a40b mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91b93f52 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x950506e3 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95f091f7 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98f67cf5 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99393b29 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a243fe4 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a98cb70 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ebffb73 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9faa3e9b mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3bc1628 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5e7dac9 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6cfecee mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8a561f4 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xadcdc768 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb360b426 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7421130 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8c859ea mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9f64adb mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba063905 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba9e71e8 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbee1a539 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf4b7013 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0589f52 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6e51bb3 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca6f6763 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc574ca2 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd2ee6fe mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdd95210 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf1fcee7 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf2a9940 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfb0f24f mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd010e949 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0b21260 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd404b906 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd498dbd8 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4d186c5 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd556faa7 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5a75818 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9b11b11 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdaeaefdf mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb748a0a mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc83cda2 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6630e78 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7043b5e mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb1c5eef mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebde7cea mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed270ed9 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf425fdcc mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4bf1a86 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf78b448f mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf874b323 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa995657 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe4a9846 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffbccbbb mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05b26224 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b7ecbda mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e7c9822 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1516df01 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21dd1412 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23e09999 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24c4443d mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2768a39c mlx5_query_vport_admin_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28479d85 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2aaf7a6e mlx5_nic_vport_disable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e02158d mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30944489 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33040f7f mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x373ba06b mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a1fe027 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a475003 mlx5_core_alloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a6cf145 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c113e4e mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cb29f20 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43670a7a mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b0231fa mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bd9a251 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x506e67f3 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5327646c mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x541e2ded mlx5_set_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57907faf mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5916b559 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5df677bb mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60552d34 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6573d309 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67c4ac12 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x681afd2a mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6df9b7f5 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72740d78 mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73a38717 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x769d986a mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83ce4d71 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84f42a0f mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8611e134 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bd1a1e4 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d686611 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d89ea36 mlx5_core_query_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x905b56e6 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94a8c386 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9adad189 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bf214fc mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa463553b mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa49108a1 mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa77cb0d2 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7fa0292 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8d8a881 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadc45ec3 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadf433b3 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf8e565e mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb10e0edf mlx5_modify_vport_admin_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6467e74 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb86be302 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbbb3600 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2a140eb mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcaeafcea mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb06f512 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1965f3e mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd22c5442 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd29b3f78 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd892319a mlx5_query_port_autoneg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9ab246a mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe47cf3f1 mlx5_core_dealloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6a2820a mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7ab1c1b mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7ad3fae mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea89ad39 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec7858ba mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2d8cf7a mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf343a81b mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3dd077a mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x91841065 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd4ab3625 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x32cb5784 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x9455f3db stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xcf2fdb4c stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xeef12776 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x0ce2839a stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x64817d50 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x90009c16 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd1e54ec0 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x26fda163 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x2dddbcb4 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x47c3c3e4 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xa1741a59 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/geneve 0xe3a1f873 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x18836714 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7f0f180f macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8d09eadc macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xdb101d7f macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x97f50dc9 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0466b8e5 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1f2da9a8 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x39aa0e2b bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x461bd520 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5431b8bf bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x86df7d55 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x944974b0 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd130a06f bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd3878b24 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd7456490 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x534ade10 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x273abc0b usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa44a3527 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xcf8bbef7 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xfd2a79f5 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x17e9546a cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3d22b28e cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x47d3f1cd cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4b0bdfd2 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6f9e7536 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd43041ab cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe420c0dd cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe7e6ee9b cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xed7b5609 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0e8e12bb rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4b929d94 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x693e6059 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x9b47f4d3 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe0e622c2 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xfda98aa3 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x13d02b1f usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x25a9ccf4 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x31532bba usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x367c19f0 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4fecdffd usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x67505dd2 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x79b96c60 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x84b7ff3b usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8630c20e usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x90dd1d4e usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9a167f7c usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9c97363f usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa5b827f1 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa9dbf414 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb621a83c usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbdc8a5aa usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc1c83603 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc7913cca usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc810a838 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcd6b1996 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd588729c usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe0a24af4 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe2639830 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe9cf1f23 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xedc5ed09 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xeef3de7f usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf0e25d01 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf2911e70 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf6c7b4c1 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf75a16e8 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfb59e0ac usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xffbee33e usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x75c272fd vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x10f42137 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x11c8045d i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x13728f1c i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x13fde389 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1ee4a4c4 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2fb1bacd i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x380da083 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3ad9ee9b i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4a62060e i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5da94eef i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x769e3472 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x98768e49 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc06d3cb0 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc5c1679b i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe3318ec0 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf5fc073d i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xeed7b439 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x269f6405 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3e18a0b5 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x70413eee _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf1b4b6f9 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4f75e92 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0e870afd iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x106608f5 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x16474139 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x191ebbd3 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x194202ee iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1b7fd38c iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x22bd1274 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x28ab8ed5 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x378296e9 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x44cc2f6a __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x491e4372 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x49b542fb iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4c90a2b3 iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x52833eec iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x562b3bd1 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5a10d898 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5be8ea06 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x75b35798 iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8ab14d93 iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8e200829 iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8e2bf7f0 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x95965ded iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x99a2e00b iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9bf16097 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9c77eed0 iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa0311d65 iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa2f34411 iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa52644c1 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa80a67dc __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaf590c25 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb6cdc7ee __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbaebe23d iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc2a0becd iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc5e44208 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd3cb6ab9 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd6f45144 iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xed725c3a iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf400b430 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf5feac29 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf726a6c3 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xffbdf867 iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x1738385d p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x71b5f51a p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7aefcbb8 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x8f9faa3b p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x9f3d14bd p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc2acb54b p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe6b01aa9 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf3694e5d p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf7ebb150 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0222bb97 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0dba139a lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0fc7c930 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x32627fe5 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x329c5ef5 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x562e9219 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x683adcef lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7458e687 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x894e8fea lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9088236b lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x941331e5 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xad05d0cf lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb0186a9a lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb666ab6b lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbe3a5241 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdc27d4d6 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x1ea4966d lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x4878f206 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x5f453ecc lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x627d1802 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x63c27690 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x974a8a31 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xad8adc27 __lbtf_cmd +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 0xe2fd5465 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0a08664b mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x16da1a07 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1862fec9 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x217d9290 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x41644ea3 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5085215e mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x57856d14 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7b0ce38f mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x81867fde mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x81a6b07a mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa34503ec mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa3b2d097 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa8af2fbd mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xaa0f3787 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xba816671 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xda383092 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf840605d mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfd885b7b mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfdf9dd1a mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xff632c7f mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0529b083 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x06b44ee8 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x127e9c7d rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1a98a82e rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1dbbe7c9 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x269c54a0 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2884171f rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2eff16ec rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2fe5bce2 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x30ceb19d rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x33f3540e rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3c9d4b0d rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x648ce3eb rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x662fbfc8 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x66871245 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6f14300d rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x81fd8699 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8348b324 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8c1f7f00 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x91c21034 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9553f83c rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9c5e0d52 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xae76ad38 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc1c14653 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc4ad369d rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcab44b86 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcc799423 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcd6fe67f rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd010f919 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd5dc62e0 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd8fbe989 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdeb4274e rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdefbfb13 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xeaee87e4 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf0dd9e52 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf3032578 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfea9038e rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfebdcfd6 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x13d516cd rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x483ebe1c rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4c225cf9 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x55744cb8 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x62b61f0b rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x72eec8e8 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7c35eec3 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9a3b47b5 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9cdef06d rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xab852b3a rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb72acc27 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xea0912d3 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf813f867 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x02f637fa rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x09e56009 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0ee10f32 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1bde2f1b rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x24ad6be7 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2e9219cd rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2ef08aab rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3457cc38 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x34cb33f1 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x35387c81 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3d4c790e rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4088766f rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x40f985c8 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x46bdc510 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4d44702a rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5f7a0619 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6059569f rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6131ed93 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6a6c154c rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6ce7d19d rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6e64b24d rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x703838a9 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x71b171e5 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x73cbb59a rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x767c4979 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7ac440b7 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7eb6b4e6 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x82e60366 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x93c367d7 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x93d8f24d rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9406a818 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9f24b763 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa40ac982 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb32cdc5a rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb5138a9d rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc71495e9 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcea3d7cf rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd29ceb73 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd7a3745c rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdc15fcbf rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe310e1a5 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xea17dcc7 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf38c8444 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf8183ba6 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf8e6af54 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfef4ded8 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x289073d4 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x47188f9c rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x4f8fe1a0 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x60ff62b4 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xfe79ded4 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x220e092f rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x3504c521 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xa0349772 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xe4819769 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x056dce9e rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0ab09cc5 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0ab38dc8 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2cb77c92 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2e0ab583 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x41a64715 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x48511c3f rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x59f7dffb rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5f64d1fa rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x69f6fe40 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7767be28 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa46e8d26 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa9435c61 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc3fa85c8 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe8b202dd rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf57df76b rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x11897ffb dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x197406b0 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3f795fa1 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x620324b4 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0067515c rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x22968fd3 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x274825de rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2d353591 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x418b820a rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x42f7c1ce rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x58f99495 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x652a978a rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6e89a252 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8b04f142 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8f9269b2 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x91f3ed4c rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x93412a94 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9780947d rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9ba621ed rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa392a1d3 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa3e8a7b2 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa6d92577 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa746a5a3 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa8bbfa08 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xabe93477 rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbd902600 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc347fb08 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xca2b77b7 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xca996cd4 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcea7eec5 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdc22133e rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x05442f2d rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x057d29a1 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0acef576 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x139adf7e rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1f000254 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d882d91 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x346b631b rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x55790b7e rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x67f82e9c rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x725828fe rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x78e8a3eb rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7d65e7d7 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x88aad978 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x95448065 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9b8b590a rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaf5547e4 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb6b5ee54 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd45f0f98 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdfe96d4c rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf4e75d33 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfe872e42 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x10fddc74 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x2ae1ed29 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xb0544e37 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xd78c2688 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x2a5b5370 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x5855a1f6 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xc4a32010 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xd865de70 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x29a68cd9 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x822b9277 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x9009ca63 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x037fc54a wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x03db0b48 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0667fa7f wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0b8bdcc6 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0cf89705 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1532c925 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x15690815 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1c0ceac8 wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20343a74 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x23eb4780 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2520d052 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x34cdd88a wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x36d5940f wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x37ece67d wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3f933fbc wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x461ad53c wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4b3e9a79 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x537d4200 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x55d061de wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x573d4b15 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5b0e56e2 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x64edb548 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x662da818 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x772e7c18 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x885e21bd wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x914ca908 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9367645c wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x985a2f7b wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa06b0adf wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xae7cc645 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb6951530 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb8f9f0d9 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xba5c6ef2 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbb091ca1 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcc4421f1 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xccf069ce wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xce32040e wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd417fd15 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd885120d wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe191cfb1 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe5b58c50 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xee6d3786 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf15e0f4a wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf467bf90 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf978bfea wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x177fda3b nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x3cfb8a0f nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x4d34a233 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x7691e2f4 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x1d0bc6a7 pn533_register_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xce6e4fe0 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xec9321b4 pn533_unregister_device +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2c68e5d5 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x44948dfb st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x72f92e99 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7943ffbd st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8c184050 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x91583cae st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe5f1dde8 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf0820025 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x0b50313d st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x332b7639 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xa98df123 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x2943178f ntb_transport_register_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 0xd8ba6626 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xe241074d 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/nvme/host/nvme-core 0x03e482db nvme_queue_async_events +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1a759e97 nvme_init_identify +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x226aa6d0 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x233f9fbb nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x327858b1 nvme_max_retries +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x332354ea nvme_requeue_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4d8e201b nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5ae967ce nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5f50bc0c nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6088c29c nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x634b8cfb __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x80f0f3de nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xace41b68 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb16f0dd7 nvme_queue_scan +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc25a5c54 nvme_start_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc27c123d nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xceaa5776 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcf330b5c nvme_put_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd0996e0f nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdaaf4176 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdd05d0df nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe527178a nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xebb00a5e nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xee9a155e nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xef300ce2 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf958ab24 admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfa69d0bf nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x090aa783 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2e3544f4 nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x351c38bf nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x606ea849 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7b4eabbd nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7ef99177 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8d0b7349 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xdefc8712 nvmf_get_subsysnqn +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe6256a01 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe82decf4 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x21c4e00c nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x22790862 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x41571a74 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4ae02b19 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x913c9cf4 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf61b7f41 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf87a6290 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x03555e49 nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3b450d22 of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x5b8bcdc3 devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x68758fda nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x987c90fa devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc2b0fdd6 nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xcebb385c devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe18960ba nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xf6a76f77 of_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xffb42bab nvmem_device_get +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0x47ded3c1 omap_control_pcie_pcs +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0xaa0cbcea omap_control_phy_power +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0xd70ff817 omap_control_usb_set_mode +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x0b7fe4c3 ufs_qcom_phy_enable_iface_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x103c4730 ufs_qcom_phy_set_tx_lane_enable +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x16b14931 ufs_qcom_phy_exit +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x2bf5b9de ufs_qcom_phy_generic_probe +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x39d7f975 ufs_qcom_phy_calibrate_phy +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x43c7c92b ufs_qcom_phy_start_serdes +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x55fbea94 ufs_qcom_phy_save_controller_version +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x7e944c3d ufs_qcom_phy_power_off +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xa04b990c ufs_qcom_phy_calibrate +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xa14b8e6f ufs_qcom_phy_is_pcs_ready +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xa7b38192 get_ufs_qcom_phy +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xa89257bf ufs_qcom_phy_init_clks +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xb3524afd ufs_qcom_phy_enable_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xba2e5569 ufs_qcom_phy_disable_iface_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xbc2c5809 ufs_qcom_phy_disable_dev_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xce06cb1b ufs_qcom_phy_init_vregulators +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xddef18c6 ufs_qcom_phy_power_on +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xea061d64 ufs_qcom_phy_remove +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xee036a03 ufs_qcom_phy_disable_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xee09bebb ufs_qcom_phy_enable_dev_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x109f8eb5 tegra_xusb_padctl_put +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x176231a4 tegra_xusb_padctl_get +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x4a5ce476 tegra_xusb_padctl_hsic_set_idle +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x8b96d431 tegra_xusb_padctl_usb3_set_lfps_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xaffec0f7 tegra124_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf223d842 tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0x045395df bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0x0479427b bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0x2b66a8dc bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x87b05589 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x93003344 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xb9c1c338 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xbe896999 reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xd748adc1 reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3c977480 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x455ec6af mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x85e95daa mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x99b124b8 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xd9c0f4bd mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x0591d366 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x82793760 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xaba981bf wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xac18218e wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe3d548aa wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf7b36fb5 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xaab0a73e wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_mdt_loader 0x03615715 qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_mdt_loader 0x0ad33e78 qcom_mdt_find_rsc_table +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_mdt_loader 0x937a94be qcom_mdt_parse +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x02f7795c cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x119cfefc cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x14395a35 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x14b87518 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1c1d4776 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x241937c9 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x28c49378 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2c676d60 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x33ccf5ef cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x348ab33b cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x35782bc8 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3ccbab49 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3f9161c9 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4b352ec7 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5408141a cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x56a5981c cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x57074c03 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x63ba8a1e cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6b0bf5ba cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6e6355f9 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7778accc cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7aa68b32 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8070d9e6 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x84f24668 cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8579b314 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x88a368b6 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa5c1143e cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa83c9963 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaab1b091 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xab83acdf cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xabd03b72 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb846ee5a cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xba2f3058 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc1484bb2 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc2077967 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc3591c1e cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc64306f7 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xca989fd7 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd9666e51 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xda7c1434 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe4ad2056 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe92a9379 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xee2010f8 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xee30e5e4 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xff251bea cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x071c47f9 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x22a9e816 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x28e5e1d6 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x325b22b7 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5922fcea fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x59a563a0 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5ad709b1 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x75beab5a fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x965f9422 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xaf639703 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc8cf6917 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcfa855c3 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd42a21c7 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf3604cb9 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf575e8a4 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfbcc4f0f fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1851da01 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x59f6536e iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5a5fe1cb iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x672f17d6 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc1098963 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd9762326 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xff70a370 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0346f18a iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0bd0b675 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e9f05c7 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1267cd8c iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x138871b0 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2e625958 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3757c5b1 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3aa4a73e __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bbb132e iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4b2d06ef iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4d1ceb7b iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x51f83ac1 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x630bd74a __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x75d61db4 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x781e5f4d iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ac8f345 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x846c2790 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x898c6430 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x93617dce iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x95bd51b1 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x973f21bc iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9c21f7f1 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7c9631e iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa8d21928 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xac5947fa iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xafeb24d9 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb1988396 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbb3bf7d2 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbdd7c8e6 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbddf815d iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcff01cfb iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd39638c9 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd3b92ae2 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd6d671c5 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdc447cdb iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdd57ac56 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe65733ea __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf13ae31e iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf3d74dff iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf72cea55 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfd866db9 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x072cf723 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x07ace54f iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x113526f0 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5745b809 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5af5dcc8 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x68ee46b1 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x69f1385c iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7f86d2cd iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8dbf327c iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9a8192ae iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb7dd3914 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb9a584ce iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbd9403e6 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd8ab76d9 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdc65dccf iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xeaef0acd iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfcf11afd iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x01439dc7 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1022bba5 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1bff0503 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x27e27a18 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x30550f49 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3c2924d5 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x444371df sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x47ff01c5 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x50b65464 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5d90b130 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x63bee39d sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x85ea4f29 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8c87bf9e sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9c481bf4 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa96ebfc1 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xac05341b sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb278bb5a sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb6516a28 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbbf639a4 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc600b9ab sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeb27e065 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xecef0bc5 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xefd37e71 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf98bfa40 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x025e9a75 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x12d7764f iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x14ea088a iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15ab96df iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1cbb9dde iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1f1b0540 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x23a39f63 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2c01d406 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x37efdf3a iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3dc02b36 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d3ef970 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4e8da737 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x54e6415c iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5f040583 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x67119e47 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x67a7016a 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 0x7c604077 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7eb0838d iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x824c73d8 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8800a11c iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x881998f1 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9456aebe iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa1eeec40 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaea18146 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb366c7eb iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb43632d7 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb7f72e74 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd511cff5 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd81858af iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd89ab6a1 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdb5cfb1d iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdc56b321 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe1a37ec3 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4b6c5bc iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe817b423 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe85218e0 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf095dfca iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfbc3062a iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfecae0a1 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x24267b35 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x8c983bc0 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa13e152f sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd119f7c3 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x66c802f3 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 0x21ff9ccf srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x631f4bc3 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x644e3739 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6ce820f8 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x76dbb5b0 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xba4b4dfa srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x400baa9a ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x4dfea26c ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x889919bd ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x8f9260e3 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xb065705d ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xd0eca35f ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xf20452c2 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x1601cf3b ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x1edd71e0 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x3ac57027 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x5685d134 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xba9824a5 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xc8567e3b ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xd577e985 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x03d511de spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x31e1a1a7 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3759cf74 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9354a92d spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe0e575e9 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x4c32b233 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x859d8aab dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf94c2d6b dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xfb91cbc3 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x66c38fb6 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x9ae1872e spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xdd58ca06 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x01a81f3f spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0a0922f2 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1240dbde spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x13e5bfa5 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3af8a548 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x413918be spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4c9e88d6 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x74d84fad spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8c48cbb3 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x951a7a5f spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9a0a7812 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa8e477a4 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xaa323b72 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb56f330d spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd611e6c4 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe882ead8 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfa84b795 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xffd71541 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xc5395e7e ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x00c5b258 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x05bd9643 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2263e555 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2ceacaa9 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x36eff363 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3edbecc0 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4707d782 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4ac77b5c comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4ed7f613 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x547fbe1a comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5c7d6f1f comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5df54a82 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5f0d3f71 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6ef82588 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6fd27c14 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7d471fe4 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x858f5490 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8ab573d4 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8abcf21d comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8b024290 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8c663bdf comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x942bbdbf comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9c5af3ae comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa08af25b comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa1b1d8c6 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xadf2285c comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xae41201f comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb9be0ba5 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcb65619f comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd00369ed comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdcad0108 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe6d1c6c3 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe8869059 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xed7b4379 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xedd473c3 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x4a79138c comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x5b7d1930 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x86140cf0 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x8a235fd1 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x9ce0f62c comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xb6920ead comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xd4fedc14 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xe5676f4f comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x5a57df06 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x7658a00d comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xad263847 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xb71befa5 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xc1a6d303 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xf3a0187e comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x1775d1a0 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x07fe49ec amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xf2b9f568 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x5420b095 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x138c191e comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x19a4648c comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x33153f23 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x46a79b4e comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x53cdbc9c comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6cb5486b comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x786188b4 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7e113afc comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x821485d3 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xce8c65d6 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe512b8ef comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xebf61718 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf82fb04c comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xb1cfa193 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xcc966bbe subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xd96889a7 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x9011d3bb das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x032fa430 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1351d20d mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1e34981d mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3b076dc6 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x45848da4 mite_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4bee812f mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7d6a0c72 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x85f3035c mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xac034b76 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xae8a54ca mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc1633c9f mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc5e9c99f mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc628cc93 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcdc433a5 mite_request_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xee681ef6 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf42462d4 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x9275cfdb labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xd68328b5 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x0b6bad8f ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x42612241 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x442e4a47 ni_tio_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x5b0a445a ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x7a502589 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xae77cf9f ni_tio_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xaea7858c ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xbf5c4c0f ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc1f26158 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc2ceaafe ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xda349b18 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xf71de5fb ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x0fd32297 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x71ddc206 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x9e13a77a ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb521c71a ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xf66b0475 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xffb65217 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x0a228202 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x67b67c7d comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x8c782624 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xdfbdb953 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe9a2bc75 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xf234cbf1 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xf5d14f96 comedi_close +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0x702a73c8 ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0x73c8d907 ad7606_probe +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0x759569d0 ad7606_remove +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xdb738f03 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/lustre/lnet/libcfs/libcfs 0x52ecfb88 lustre_insert_debugfs +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x103486f7 ldebugfs_register_stats +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x2287aedc ldebugfs_add_simple +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x2c23291b lustre_sysfs_ops +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x6d0fa706 ldebugfs_remove +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x6f41075d lprocfs_obd_setup +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xa22a00b4 ldebugfs_register +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xa3175de3 ldebugfs_add_vars +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xaeddf416 ldebugfs_seq_create +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xc91b8caa ldebugfs_obd_seq_create +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xd385df32 debugfs_lustre_root +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xdbf9caee lprocfs_obd_cleanup +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xf4dde9b4 lustre_kobj +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x27f524bc cec_received_msg +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x2dc0ad19 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x5a0f0945 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x88c33f3b cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x91051640 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xa8f4be7c cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xb81f0d56 cec_transmit_done +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xd2cf0887 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xf5d25174 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0b8c635b most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x24c0fff5 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4655375e most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4ede4393 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x547286e7 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x67150197 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x73287be3 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x87603c3d most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xac813695 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc0fa6caa most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xcfd9d3cd most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xfdfd8507 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x15ce8de9 nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x570a4d47 nvec_msg_free +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xff949e8d nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x259bc46d spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x39aab76c synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3f50c9b1 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6db8313c spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x70d54b2b spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x86442336 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x87fc2b71 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8fed03b1 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9540e977 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xa8fc4f0a spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb2978dbc speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xec97b22f spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x0ae373fa chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x3e5f4f97 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x4f93c160 wilc_chip_sleep_manually +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x7083b3fe host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x73e9d0ac chip_wakeup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x76838e84 WILC_DEBUG_LEVEL +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x9aef4962 wilc_netdev_init +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xb90d502c wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xd2c1d843 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x462eb044 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xbdefab64 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xff5e7684 uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x0e2ffc7f usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x937481aa usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x6c2c7bf9 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xca9cc986 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x333b8e41 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x346edfc3 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x65d876da imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x15f52ca4 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x3597e8cd ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x85a94143 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa82aa49f ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb132d7b6 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd17da5c6 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0acb22f8 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x131903ec gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x34cdfcfc gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x45866d79 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4e60e306 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5a6d4ff9 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5f00c559 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x66fe6bbf gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa00b126e gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbbff586b gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbd5da5fb gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc5b60328 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc80bafc4 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdfd756bf gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe95ad7ff gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x1f13fe28 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x692041fb gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xf5727218 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfb39f842 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x306475ab ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xcfeaedf9 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xd128b861 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0bb58b74 fsg_show_removable +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 0x1b05f962 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address +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 0x2bad896a fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x37540402 fsg_lun_open +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 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns +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 0x581a7a0a fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x65e2cc6f fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6650a7d1 fsg_show_ro +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 0x6f8182da fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7b107521 fsg_store_file +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 0x8485c70d 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 0x8fd8cc61 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 0x987bc0cf fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put +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 0xa46e6443 fsg_common_get +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 0xabf77bbf fsg_store_removable +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 0xc0a86bad fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc64a36d8 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops +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 0xfa7f70a5 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x11a9f638 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x140b5977 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x17d1d6b9 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1aefbacc rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1caf9f97 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1d37aab9 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x33ea085b rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x35c845d1 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4e5d4c92 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5a47e21d rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5b58fb82 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x817fef6f rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8575862b rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa05441b8 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xeaefaa9b rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x06d9ecd4 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0e811e72 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x162a9e83 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x19615902 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1ea2cb8d usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2fa5fe5d usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3013f77b usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x35b26e68 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x400a521f config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4c9ce32d usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6d165b1a usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6dd8c9b7 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7192f288 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7f07746c usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8f17f69a usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8f56c986 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8f856728 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x90e7340c usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x946556e2 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9ca42fa6 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9d73ca95 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa317f25d usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaa6ac867 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb835fcd4 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc82da0fa usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc9248429 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcd4a6941 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe2dbe473 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe3a52516 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf2bda27f usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfc975ce5 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfe1bcee0 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x40b188c8 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xebbf6734 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1505edb9 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2504d3df usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x34a6ddf1 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x85aed4b3 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbc46c77d usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd63dfe96 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf32d96ec usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf6393ab6 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf87a294d usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-am335x-control 0x4ab643dd am335x_get_phy_control +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x44128024 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x0e068cf1 tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x9be3fe31 tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xb309e5a6 tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xcc51b5f9 tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x5fd1cc0f usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x06f80ab1 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0710be76 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0c01443e usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0f546e63 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x12d161b1 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1b0ccaf1 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x23969ef4 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2a97f0bc usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x34f819b7 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x385eb193 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3b035177 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3bc07ee9 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x412eb027 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4516cac0 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6b56b579 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x71c2cd53 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x77029576 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9e34eb89 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb70b91c0 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd8865dbb usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe1c1ba9e usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x013935c6 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0aa68507 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x20aa04e6 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2a30b5bf usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2ed2e7d9 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x39e08cbe usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3efc92a9 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4d7405b8 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x549b2b83 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6ea65308 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x780d0503 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x80150a05 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8dd5600f usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9c88bf24 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa9132b70 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xabcf6692 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb300e39f usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc36ae2ba usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc4e85839 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd21d8b32 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd2a5b469 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe2ee2c01 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xecc59a01 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf474be9a usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x05025d8b usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x051ce2a9 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1fe359c3 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2cde0e1c usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x31c5d4ed usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3bee0774 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3df5df7d usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x63028619 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x796d4a1c usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8120138a usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x89cf1e01 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc79ef4a5 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/usb/usbip/usbip-core 0xeb1f3571 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x29826949 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x64f37204 wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x65105fac wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x7736fca2 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa59a7236 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xad585ad9 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb7c4c9f6 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2367cb26 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3e578870 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5a6fa47b wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x6107b7d7 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x754dc45c wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x86c52371 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x91638f24 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc3089518 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe5d392df wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xebd97fd3 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xecd5c617 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf17c812e wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf5a30a3b wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfc5ca628 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x6c83aaf2 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xc40cbf6e i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xfe758a1f i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x12b59579 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x202ec120 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x674e5b40 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x77e84623 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x8648cfc0 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x9df1d004 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xe16fbefb __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xe3d89285 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d998dbe uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0e4473c6 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x180d5465 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1a57fc9e uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1c631f0f uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x215970f1 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x25fc1ee1 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2cc6cc06 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2cdf6067 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2eeed8a8 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x361784f5 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x414b4fa0 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4407ae79 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x50d3ff61 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5429d01b uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5c713770 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6563e0e1 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x67c27a5b uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x74848024 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x798d43d6 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8747a858 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9247af78 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9248adca uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9e82047a uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa2fdfc7f uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xab437804 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xacb5a02c uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb75f1c29 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xba4e2415 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc4dcd8f0 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc6901fc6 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd6c78b7b uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdee88653 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe777d1d1 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe79ec46c uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf2d660aa uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfcf391c0 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/whci 0xb6a8d073 whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x530a8b16 __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x8b3da51f vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xb61915fd vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xd810c6ef vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1a21b021 vfio_iommu_group_get +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x21c8aa1f vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x34f6bbd7 vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x43a44a87 vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x51f16cdb vfio_info_cap_shift +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6b6473ee vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x72890729 vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x84de0dce vfio_iommu_group_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_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 0xd4cd1023 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf7dec578 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x6c0cce7a vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x81393a33 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0bcdaf67 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0fc30c1a vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x174c9bb3 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x18c66d8e vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1da048a0 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1dfd914e vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1ebfd5ec vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1ee971b8 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x27ca6c44 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x39e9a038 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4862e22a vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5c42f278 vq_iotlb_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5ee9570a vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5eebc5e3 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x71a74ed1 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x78294853 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x79b405ad vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7bd413bd vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8f43e3cd vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9413dcdc vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9a6b23ac vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa4a72ed2 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa80afbd6 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xac25a7c4 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb4af53d9 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb5cc234e vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb72b7bf6 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xba8abbd9 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbe40d9aa vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbe4134d9 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc53b1eee vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc89c26df vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcb90757e vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcf32cf80 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xde14999e vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdf872816 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe30c45a6 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf8eef139 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xff14d318 vhost_has_work +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x1865df2d ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x3e47866f ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x85ffb761 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x91e7572e ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc3ca4074 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xca80f144 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd3437a23 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x39e804b2 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x48da0f48 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x6e7a88be auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x88f6d19e auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x96aaf5ab auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa0154979 auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb3d03fea auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd183ddc1 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xefb636ec auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf514179c auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x8ee50066 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x9b37623a fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xf51d5eb5 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2b8c78f2 omapdss_of_get_first_endpoint +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x9454adde omapdss_of_get_next_port +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x948d7e16 omapdss_of_get_next_endpoint +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf37d3bde omapdss_of_find_source_for_first_ep +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x2d2598ac sh_mobile_meram_free +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x701929aa sh_mobile_meram_alloc +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0xbf5c3c06 sh_mobile_meram_cache_update +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0xf8265618 sh_mobile_meram_cache_alloc +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0xfaadad73 sh_mobile_meram_cache_free +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x80dc0c38 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xb083c48b sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x12131d00 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x2c63c820 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x4058ceab w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x42b7475b w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x48c23eb8 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x4a083d03 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x4bbbac40 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5f26f8d9 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xfc938da1 w1_write_block +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x420671e5 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x816e72c1 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xd1c2a87e dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x853acbf7 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8752d799 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8b26c805 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x98b612c8 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa8968050 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe5a6f760 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xec75d57d nlmclnt_done +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02e74310 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04bd492d nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0543c337 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05b26ffe nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x083db223 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0cc11434 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d1ab62f nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0db48f82 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e2833ff nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fa6b5f4 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fea57be nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13eed2e6 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x155e3824 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15eaf801 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17016e7e nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x186647dd register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a4c1095 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b68d4cc nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1eda497d __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20e2de78 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22dae5e2 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2323476f nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x251980b2 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27313258 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x277f9eff nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29be1bb6 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a28add1 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2bd02ab0 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e8be830 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f82659f nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30e06070 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +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 0x4159a5b2 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x419b15aa nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x429fd9e5 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42c88923 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4732454f nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a38193b nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f2b8f3b nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x517751bc nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5316519b nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x539ed213 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x585ac408 nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59fbea65 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d2e9d80 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5da4a695 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ffb9fc8 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62ca98d5 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63cc7131 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63e14e3c __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64ef5704 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65748553 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x685d4cc1 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6931911a nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69c59671 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6cbd0680 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f66053d nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7212a85a nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7509a981 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77832005 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79f39221 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7aad70a2 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b350ffb alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7eb2a320 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f9c8ce2 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8408c2c9 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x852fe371 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8650cee9 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x893f4d1b nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89cd22e1 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8aeb5f8c nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b38a089 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c85bf93 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d96a312 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e2fbe3f nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ed3fb68 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f1f870c nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90577e53 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x908183fb nfs_symlink +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 0x959383d2 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9883da2b nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a9fbd0c nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bec1899 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4a29d1d nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa54f89b6 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5ac1923 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9cae07b nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa230701 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaab377b6 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb152ce88 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4404f3e nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4441e56 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7e0c81a nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba1672ff nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb7a0d5d nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc5502a3 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc94ee2f nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca789a3e nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcaacea27 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcfa94baf nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd250a5cc nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4fc1e4b nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd797e6e6 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7b4c293 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7f20984 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9fb71cf nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda0671f5 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc21ce2d nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd433b82 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0bced25 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1018145 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe154d394 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1599a9b nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1d2ad0d nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe50f4b51 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe926e5f5 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9386d6e nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea892946 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb626769 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec0f471d nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec507eb6 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefd00bbe nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5f1a182 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf92449d2 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf961117e nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf98153a3 nfs_commit_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9a43434 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd774c12 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfdec0303 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xd0a473af nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x050f8576 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1dd0d9e1 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x237f6486 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23d48931 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26261d12 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26a20ce8 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x273064ce pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2995b414 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3605d7b3 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3fb8243e nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4a1aa19f nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ff05f08 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e6a105a pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x64cdc8b4 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b1df920 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ffb6402 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x701a44f7 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71758fa0 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74885da0 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b7c4a54 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cc74126 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fd0ad40 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86afb359 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x887d641d pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x89fe0d16 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x925a216b pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95f8eeda pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x980cfbf7 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a44b0dc pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9cace3d8 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e325b7c nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa0116a9b nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa0cbdf7e nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad30a7d1 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf1c632f pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf6faea9 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb066e4ab pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb3523581 nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4895436 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6c1af0d nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc9ede71 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc55795b8 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca7da0a7 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcac9675a __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc901cf3 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce78f168 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd158a187 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd719427b pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd76a52cf nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf859d74 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe147612f pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe3c43599 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe52706fe pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5a7264c __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6271e37 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6908020 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec805d2e pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf0ba6917 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf76757a7 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd63426b nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff6642d0 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x029f57be locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x82d4f38b locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xa907e50d opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xdb4783b2 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xe232aee0 nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +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 0x1cbddc8b o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x39bbb0a4 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 0x587272d3 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9e4c627e o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbb4f4b18 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd094350e o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xeec5501f o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x076c622d dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x153e95e8 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x275dc286 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x36e6ec14 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5ad7c5db dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x813b1e77 dlm_register_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 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x2bf37d1c ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7ee799d6 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbece818 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xeee7a2b5 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL kernel/torture 0x14c4ba3c _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x27b2707b torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0x2f6f3b1d _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online +EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x72edbf53 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x9e3fbd74 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 lib/test_static_key_base 0x2d107b5e base_inv_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x41ecf87a base_inv_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x72eb4ea9 base_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x767b8ba8 base_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x8d490167 base_inv_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x9af6b231 base_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xdba4feef base_inv_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xde0e6eb2 base_old_true_key +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x764474f4 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xbf692945 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x452309b0 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x61334c33 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xaa5f8cf4 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xbdd7a9e0 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xbec0c267 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xe24840cd garp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x2e6b4ce8 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x30cd782f mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x31ccdc6e mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xdbd3d9f3 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xe9376cb5 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xff6f8504 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x69e0f819 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0x81a653b2 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x1080f521 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x38170bec 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 0x998724e5 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 0x04225256 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x411fd221 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x42b85e61 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x555720b4 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x87117a29 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8d68ad34 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb1ea5c16 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xebbf1daf l2cap_chan_del +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4b621f8e br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x50005f00 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x540cc0bf br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7b56e389 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc47dbcad br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd2168695 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd31e9363 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdfe15e55 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x0371e142 nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x393fbf8a nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/core/devlink 0x1221facd devlink_port_type_eth_set +EXPORT_SYMBOL_GPL net/core/devlink 0x1ebb24a0 devlink_port_type_clear +EXPORT_SYMBOL_GPL net/core/devlink 0x398b6d17 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL net/core/devlink 0x5b6594a1 devlink_port_split_set +EXPORT_SYMBOL_GPL net/core/devlink 0x64610293 devlink_sb_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0x9282f433 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL net/core/devlink 0x937e32fb devlink_sb_register +EXPORT_SYMBOL_GPL net/core/devlink 0xc4498e73 devlink_port_register +EXPORT_SYMBOL_GPL net/core/devlink 0xc5a3e105 devlink_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0xcaa8a065 devlink_alloc +EXPORT_SYMBOL_GPL net/core/devlink 0xd5f159d8 devlink_register +EXPORT_SYMBOL_GPL net/core/devlink 0xd68155aa devlink_port_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0xf61a5345 devlink_free +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0169f9d6 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x09a123b7 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0x12fa8e57 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x259a3755 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x25cac000 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2c2062e4 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2dfee292 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x346531f0 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3d888eb2 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x41586764 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x425f948f dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x596c4688 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5bd7244b dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5f4bb0d5 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x61940a4f dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x66d2f2ab dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7505bbc2 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8d7d8459 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8e169aa8 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8fc1d892 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x936766f9 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x93cfe6e5 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb668dda8 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbc8e0376 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc8a28ae2 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc9a686b6 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd21b18c4 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd6975001 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdc402cd1 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe3cc6291 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe68b3cda dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf74c6a97 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf9f6d47b dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfc122156 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x59a9c532 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x715740f7 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x884f5cb7 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb35a8a6d dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd18f34da dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xdea511b7 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x2107f5c8 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x5906c0be ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x5980df90 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf139ed7d ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ipv4/gre 0x449b0f80 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xa1a7b272 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0075c1b4 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x18a69b6d inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5772a84a inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x928fc14d inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa5ef3f1e inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa79b0cc5 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc39450ad inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc80c62f0 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf99d3928 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xa8fa0cc7 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x10ca8140 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x173a0248 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2954ab92 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2f6adab4 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x564c4492 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x56838a34 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5e51d262 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5f769d47 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6fcd3c88 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x760393ca ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8c1deb03 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8fee9909 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb1195c55 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd3b775e2 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xebe62d5e ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x484ece30 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xbb22be27 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xb94a236d nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x6ffdf959 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x789dcfaa nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x8577f57f nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x8c75e950 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x9ff08617 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x1f2cc1d8 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8ad03699 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa2ca0cc8 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb8b25daa nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbb136ef6 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xec992f30 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x1318c3e6 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_nv 0x0af18540 tcpnv_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x233b1e4c tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb349a2f6 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xce97d941 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf47ea3b3 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xfbf4294f tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x43927f54 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x648e1ef0 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7c35b00b setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x87728291 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x888e0a58 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd8e7a7a5 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xde6b9711 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x07f6ba76 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x40473281 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x57771e34 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x08869609 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x166d1e25 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x4ce21cd2 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xaf388ed8 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x7f94fb0b nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x429be685 nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x48177366 nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x661bacaa nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xcccdcad6 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xdbbc1ff1 nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0xd97aab15 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8df7dcfd nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x931bde18 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x93d21a8a nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xeba7a530 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf39a0afe nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xcab71dd9 nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0fc9c7dd l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x217ff41d l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2c5f54c2 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3e8ce3ca l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4d7a96de l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5b36f6d9 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x65a9447c l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6851bbef l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x727dbbff l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x90e8a7e2 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x96a1bad4 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd192eb49 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd2a57746 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf524d9ce l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf6e3be14 l2tp_session_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfc0eaf86 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x0ee66d0d l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16245ecb ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x26b19e4d ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x279cd077 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x301516f5 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x43d53d46 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x53ca3fd0 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7368aaec ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9c98586c ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa5937333 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb001a432 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc0fd924c ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc5a33260 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcd3bd071 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd71e330a ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xda08676f wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe325176e ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf3b939d5 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9fa191d ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfe27341e ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x913910fa mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc8971a7a mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf14568a8 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf75b2206 nla_put_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4b4fa7a9 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x57edde9b ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x629e9426 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x67d55263 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6a68f842 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x79fa49e2 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9614db23 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 0x9f69c37b ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa5fb732b ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc79daf6 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcfbbb929 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd08a8cf7 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdf69c1f0 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe048fde1 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf1064ed5 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf392acc4 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1c9df671 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x36fc018e unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x6dff8114 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xdf5245a0 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01407e5a nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x025445d9 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03b8db73 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x066e9a4e nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07cfd8c0 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0deb62ed nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ef03ee1 nf_conntrack_get_ht +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11836a37 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13f95ca1 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x190d95b6 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a70777b nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e5bff64 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ecb0f8f nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fdbc53c nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x288850e4 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28a8dbc1 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28c04718 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x292c4f1a nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x300e302c nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31848fd3 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3458f8cc nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38c50e20 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a7d7da7 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3df43e91 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e6fd2df nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3fbd15a8 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x42655598 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x42bf57a9 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x456c95c4 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x476ec82e nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b4b24db nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d131eb2 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57aac397 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57e3e8b1 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59c6037e nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5eb4c7eb nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63b9a53b nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x646a1c48 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x66869ee7 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x699635de nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72ebe3b0 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x742150e2 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78102ec8 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x789408c8 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7bb48912 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8090030c nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83079708 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83679579 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8fb9b242 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9232ab66 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x930d2189 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x94116fc0 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x988eca39 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1f61d02 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5d3144e nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab204da4 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaba1b408 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf89525e nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb454b063 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7af9ffd nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb9321df9 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb9b1a541 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc00ec80b nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2abd2fd nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc38185e nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce3ddf3d nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcfbffb8b nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0c59816 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd911a78f nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc5a1e4b __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc70a84f nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4581c83 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea745227 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb9b83d0 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf238aa89 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf4073308 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7972a62 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7df10e6 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9f03399 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb88ab46 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfcdaf2f3 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd7e1836 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe79e89b nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff3f88eb nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x51341f49 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x54e235e7 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x4dec58c2 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x13afec24 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2de7ee66 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2f208b8d nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x74ff4d69 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7d19c1a7 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x84b370b5 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9e949460 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb8a40b54 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd69439f0 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfa8b16bc set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x9545ba5c nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x65d363af nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7e101f4c nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x997bbf4e nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xa057c718 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x763c0ff5 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xd3638c68 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4cfb26e7 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x50c076a1 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7659199d ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa538b5e0 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb33c5d75 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xba93488c ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xde71cc60 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x38bd4cd5 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xaa8f5277 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xe6380151 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x07240e07 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x64ee7d8c nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x67a3f28f nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x9984fa44 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x24359bea nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x27416ab7 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x282132d1 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5a88c7a6 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6e8943e3 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x75743233 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7b7aaefe __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xab3c7c5b nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb1c4afb1 nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x04cdad03 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x10dd3c63 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd2b4506a synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe04023fb synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x18686265 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x29d6f219 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x36923fe1 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3727922c nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x43a3425b nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5c797afe nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7921699a nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7d7dead0 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x858def3b nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8a37829c nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9ae638ae nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9ffc821 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb3b51178 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xca2cc9ca nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcccfb1db nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd4e922af __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe48adc81 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe5542f12 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed6d0530 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfd2d6f99 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x286a3b46 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9ca54927 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xafd1ec25 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb138e1fc nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb141a65e nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xee93aff5 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x0182b845 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xa38aff6d nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xae7f7c09 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x42e980bb nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x364b38e1 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x8a64ed69 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x99b3a954 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x08ddb1f1 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x0a328cb6 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x0e7d39e0 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x135b7a9c nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x439b71ab nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x8e0c7264 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xa2a6dc57 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xfd407bc5 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x54889107 nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x94869d33 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xff6b42dc nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x2edf24d4 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x3890b380 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x44ddf1e0 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0640c570 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1636b511 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x170891ac xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f1ef70a xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6c504e8b xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x83804fe2 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8cca528a xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9bb643fe xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa8ceca64 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xab1ca96d xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xee3ff517 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeebd6e50 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf4c00cd6 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x57909dc1 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xd0f26ea3 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x0e23857f nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x67df1fae nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xfd23b70b nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x33b32b91 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x50d6e11c nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x6a7bf2cf nci_uart_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x11e94f24 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x49e8bcba ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x68903b8a ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x943172ed ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x96e8c84f ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa854920a __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xcbc97562 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xdfed3aa2 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf02b4d30 ovs_vport_free +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x9668a247 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xd5a5eefa qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xd7cf2eec qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x02613047 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x0b3349bc rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x189e8480 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x1a0131ff rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x228cb075 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x290fbc4b rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2d57caa8 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x34cbeb2e rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x4622b59b rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x4c02d24e rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x4f6c146f rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x50b10225 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x5ca7d29d rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x62ffa4d8 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x70077239 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x76c2a13c rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x7ea2f988 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x83ca10e3 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x8971ff83 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x993ff299 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xabefbe60 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc642cc2c rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xc656594b rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xd352c358 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xd46db4fc rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0xdacf2da9 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xdf44d35e rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xe10c96bf rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xff6c0576 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/sctp/sctp 0x4ad19629 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x75da7365 sctp_for_each_transport +EXPORT_SYMBOL_GPL net/sctp/sctp 0x9c8e159c sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xad2bc2cb sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x3307d8ca gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x3ea5efa2 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xce45bb85 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00caaa1f xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00d9d991 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x030c694b rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +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 0x069e7acb xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06a50089 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07119e8b xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08d58098 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09769793 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09e0cd32 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ccefae6 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ce1482d xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13e22a31 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14449743 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17fbdd6d rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x194e3fa9 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b9a3f0e xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e89dd2f svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ee8d702 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20500e1e rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x216fa7d0 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2187833e xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2268aa48 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2349eeb7 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2350cb88 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x246e3495 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x247504e8 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2aa32a76 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ae807b2 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b4e29bb cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c8f5a92 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2da348a7 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e09db5a rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ee31c08 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x314cbc8e xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31576fc2 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32a0b743 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3386fe4b xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d44462 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x366602d8 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37999357 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39b4d62e xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39f1640f rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a9978a4 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3adb65d9 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b0b1cd3 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bcb057b auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e8c8e15 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ff14c3a rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x430482fc auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43099eb0 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45c8ac0c rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45e21405 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4705cb9b rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47b3edaf svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a3a0853 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a4b5329 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a761791 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b672420 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ba2622a xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ce369c2 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cec8590 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ddef95c rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e4a626d rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e884b71 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ebbd26d svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ec43f31 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f9b9714 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5228d0d4 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x523c44ee rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5326f7a8 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53390866 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5437a638 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55f31c0d xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55f9820e rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56b5e1c2 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57579bb1 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58a4e1fa xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58e50d13 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a0f6130 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a4e2600 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b4c2cfc rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c77786f svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c9726a6 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d023606 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5de344d7 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e628406 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6145088c xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61b87835 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62b546c4 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64cb4067 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6677d288 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x676a90c2 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6906c100 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c0a47e8 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dbbdaef rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x704a6881 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70ca3500 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7263213f svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7367ef30 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76f75ccd rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x774ab1bc rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77d7ba15 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a27b0a0 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b36c21f rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c6c3a2f svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e0e459a rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e9f3ba6 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7edf9441 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7efb16ad rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x809ab3aa rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8449aa66 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86261ec0 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x871d6523 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x879e6e7a rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88c12c75 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ebf7d62 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8efe00d8 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9020388c rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9109d699 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92442d52 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92943096 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93a54b0a svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93b44723 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x948ea3c5 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95804943 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96e16bf3 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x982b530a svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c1ceeeb xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cd38325 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9df8b9e9 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fe61634 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa484ec30 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa493c305 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa51cf5fd rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa599b8c0 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5fb214c sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa63c2472 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7d6be76 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab255777 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaca8c7be rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf360879 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb073eb4d rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb08f8777 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0ea4789 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb54419bf rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb591b7b8 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6253cd7 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6bcf47c xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb70b829d rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb741956f xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7c8d8cb rpc_cap_max_reconnect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb94a768a xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba6cfe6c rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbc3b4b7 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcbaf6f4 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd196c08 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdb0e831 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf607cf1 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0d4cb8a xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0e5402e rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5903089 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6eab965 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc72e79c4 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8339cba bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc84913b2 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc971bcb4 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb537187 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb5d7512 cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf039fa7 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3d5a63b sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3e18a69 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd535283f svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5ce4642 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9142d50 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9761cae svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdafa8d77 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde01521b rpc_lookup_generic_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde985fe4 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe04d9e99 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe24ae579 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe32c4bc3 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe372c2c2 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4f83f27 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5d4f6e9 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6287c0b __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6636305 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe976a3c4 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea0971aa svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb4747c6 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebc29597 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed77c630 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee4df4c3 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefd42161 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf060c38f xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2d9fb15 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf65f528b rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf79bb6a3 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf89ca05a xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa80627b rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfac5d53e xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfafc66a3 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdd2c996 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe4370ee rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfec672c7 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff2c9744 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff87efaf rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x01e9e00e virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1415f8d1 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x188a0c58 virtio_transport_get_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2b8f2c6a virtio_transport_set_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2be6aa6b virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2e6fc3f1 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3ce2af79 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3f89edb4 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x48d51439 virtio_transport_alloc_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4f8681d8 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x574d66a4 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5ed7f249 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6187417c virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x63525f54 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x675b9924 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x67f44839 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x712c1395 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x72080a9d virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7793b266 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8a83adf5 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x91e161a4 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x98d42558 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa046f50c virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa1003a5e virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb50c5e0f virtio_transport_get_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb741bfd1 virtio_transport_set_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbf58b1cd virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc7d43f24 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xca0ce42a virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd2fa19f1 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdc914d03 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xde03cbd9 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xded1807b virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe16ca3f8 virtio_transport_stream_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe4b26a4e virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xea89ce7f virtio_transport_get_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf53afa20 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf5742a50 virtio_transport_set_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0b7c3698 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x17ed89c9 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x19d3f517 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1c055a09 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x52fb1980 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5b69d27a vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x624b5fc3 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x750271e9 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x75974792 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x790f22f9 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bacfa58 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9da7c236 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa9300094 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcf9c4c4e vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfde0a40b __vsock_create +EXPORT_SYMBOL_GPL net/wimax/wimax 0x02070a06 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x0b1204be wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x22f019bb wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x263575e9 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x2a27a777 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x48322fdb wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x9d6024af wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xabf4ed82 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc467cd8c wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd6f4ffb3 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0xecb6093a wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0xf605e930 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0xf84d8fe2 wimax_msg_data +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x091e395c cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x10000ae0 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x194bffeb cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x23608c5d cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3930535a cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6d6afa66 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x99f7b685 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb100f402 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb4cbba9b cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbc6a7336 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc80cb9f1 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdaf34f22 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf53efc11 cfg80211_wext_giwfrag +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 0x3bf471d7 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x07fc2d51 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x3c7b0be3 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb0f5a11d ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe6db9eda ipcomp_destroy +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x41704d39 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xe6b9b778 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x253441de amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9d4c2ea7 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xad68077f amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb81b1c0b amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbae6c86d amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbd79865d amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdf8427ff amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x011e2452 snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x048ece3c snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x04e7f07a snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a15f4d8 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0d53f588 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11c667be snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11c9a6be snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1cf9276d snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1d3b8339 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1fa05e94 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x221cfdfc snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x24b2d036 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x255ebba3 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2f12b0e6 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2f905d8c snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x31e9c054 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34142cb8 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x39589910 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a0faefd snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e76d484 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x413e2e19 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x422939d0 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a7e28e6 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4d8ff32f snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x515cba9a snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x542c18ff snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x55054c8c snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x58f50339 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6996596e snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d731aee snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6dd384b1 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6decb29b snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ee09329 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6f18552d snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6f4fb64a snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74fd89d4 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x75b84c5f snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x788f6d4b snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x794162a5 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c1fde58 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7d13199a snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7d7a73b6 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e08b38f snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x81eca145 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x89a0bc5e snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8bd674d2 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c206222 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8f490c88 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x93dde714 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9420b311 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x97555dae snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9767add4 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a9ffcc1 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f556dea snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9fb2e53f snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb3fec53a snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb75e77b2 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb97dcbee snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbdf0d882 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc2f4af55 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc49f09d0 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc7342bcf snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc9c0dea6 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xca464fd3 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcb714478 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc989b63 snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd268f5b6 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd72c7b04 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xda3e5b9a snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe000a86b snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe1cac18a snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe1eeb957 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf1c9974e snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb5560a2 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfc702f22 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x17209733 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4d93a9b2 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7949d367 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x91b878ec snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbe6e9c49 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc6c5feab snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00502495 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00884861 azx_stop_all_streams +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 0x06e48969 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07129152 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d8d12d3 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15001ecb snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15db227f snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x162eafac snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17462af6 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18b0d007 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19a59d7a snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a137993 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d24ca84 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f442b37 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21724373 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2252c6c2 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x231e33d5 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x27e41711 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2af91667 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c77492d snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x330814b0 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x355a0c87 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x380e30bd snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a8d9539 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c796d67 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d1bb5e1 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x425411c9 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x437beae9 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x439f80c1 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46397a14 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47a20b94 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x492499fb __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4db3b728 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x51906af1 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x519fa13a snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b8a8e21 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e4c7f43 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ea9ba35 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5fa00353 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64ee3215 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x654d31ed snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66f0e8a2 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x686b7eb9 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a0bbea5 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e366f4b snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71667fa0 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71c2aa06 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72d0ab3d snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72f82d7c snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74767c1e snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75c11dc4 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a7d2d0a snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x800bc299 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8192e3c0 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82824003 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82a637e4 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8313edbb snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x856a9b66 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86f8d218 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x883c3939 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89d16530 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a52c56a snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a595a0c snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8badf3ef __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8befb357 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8dcf4405 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9038201d snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x906a0995 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91ad89f8 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92e6b0c6 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x970eb075 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97bd58ac snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9caef5f9 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f4d4fb7 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa13d911d snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa147eda0 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa30cbfee azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6486eb4 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa858f6a3 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xacd92c61 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae39f536 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1505576 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb191f301 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb245b619 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8c4341d snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbaac7844 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbac65628 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbef02be7 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc07ddc2d snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc101d063 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc16f2f0c snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2108674 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2412651 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3971191 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc62831bf snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6c1d120 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc940d458 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9412497 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9603823 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca043907 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb534b9a snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce6db84a snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf1a56df snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf55edc8 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4cdcacb snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4fc3086 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd82bec81 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd882c0c0 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda6fbac3 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdbde6152 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd45b8cc snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde2411d8 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf81fd43 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3323496 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5ae7634 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0c4fc11 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2d945e6 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf40c3c71 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4ff6b88 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5ae5fbc snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf79ceeaa snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa4e37b2 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbf4d156 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfffd66a4 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0c563a6e snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0ccc6536 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2a0d3079 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x55f9b6ce snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5e387cc6 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x626cdd67 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6eb96d18 snd_hda_gen_mic_autoswitch +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 0x78a6fbba snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x792036e6 snd_hda_gen_stream_pm +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 0xa447f50a snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc0bbe56b snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd00f603d snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd6c3a5ad snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe1acdb47 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe291da88 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe4a060b0 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xeef5692b snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf6f44969 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfd1e88af snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x1149703b cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x1e8e9e69 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 0x5090ac28 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x808e76b2 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x2fda32e9 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xa2da4f09 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xfbedb0fa cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xbb763fce es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xf6065269 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xdc8e21ce max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98095 0x85eabdc9 max98095_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x163ea93c pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x5c442409 pcm179x_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x771e9c5a pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x18ee2147 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x1c95ff05 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x698aedd5 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x9a1f92e7 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x3db5ac32 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x6a6355f8 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x6eb9534d pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xdff98632 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc +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 0x11a35b1c rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xcf35909a rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x1c6d92b8 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xd0227353 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x34336bbb rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x952df541 rt5677_spi_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xb8446c46 rt5677_spi_write_firmware +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xdc9e2327 rt5677_spi_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x23e95ebc sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x771f37b1 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x978a4f80 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9c13a17c sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb3d95e46 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x2f230e5e devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x93ddeed3 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x9baa8532 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x0b6242a6 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x3c9eea61 twl6040_get_dl1_gain +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x9540a2ce twl6040_hs_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0xb4389da1 twl6040_get_hs_step_size +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0xcbe9c5da twl6040_get_clk_id +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0xf61db537 twl6040_get_trim_value +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 0x88c27a8b wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x8e70bd41 wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x9f84fb1d wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xb11e1960 wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xcef0c0e2 wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xd9150320 wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xefc07c77 wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xf3a6d5dc wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x1c6e82ef wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x1f554e55 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x2ed191db wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x39d83de0 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x6c6c5011 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x756614e5 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xa6153747 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xdd8fde73 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/davinci/snd-soc-edma 0x908aec48 edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/dwc/designware_pcm 0x27c05543 dw_pcm_push_tx +EXPORT_SYMBOL_GPL sound/soc/dwc/designware_pcm 0x3a5df7fa dw_pcm_register +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x601c731e fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x61a74686 fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x08b87fd7 asoc_simple_card_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x46a571ff asoc_simple_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7d867a9b asoc_simple_card_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/omap/snd-soc-omap-mcpdm 0x186534ea omap_mcpdm_configure_dn_offsets +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x1ef69ea4 asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x72bde9e7 asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x7daf1cbe asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xd0029088 asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x6c9994dd asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-idma 0x776c599d idma_reg_addr_init +EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0x01fbc72f samsung_asoc_dma_platform_register +EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0x94880529 samsung_asoc_init_dma_data +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x62b915f2 tegra_pcm_platform_unregister +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x89d76ce0 tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xce683d77 tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0x48de8d2b tegra_asoc_utils_set_rate +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0x54aca206 tegra_asoc_utils_set_ac97_rate +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0x5f3a53e0 tegra_asoc_utils_fini +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0x79edb75d tegra_asoc_utils_init +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 0x04ecb471 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 0x72a91a91 tegra30_ahub_allocate_rx_fifo +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/usb/line6/snd-usb-line6 0x013e28ec line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x09258662 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0e43448a line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x360198a6 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3a464e43 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3e6dbe5b line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x46aaa75a line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5531c6eb line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x67afb158 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6929eaac line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7d7206fb line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7e83bc54 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xae6cbf92 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb6458644 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe1000e1f line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfa717e9b line6_probe +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 0x00084e84 omap_dm_timer_request_by_cap +EXPORT_SYMBOL_GPL vmlinux 0x001d6cc5 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0022a21d blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x0044e6db xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x0046e583 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x007e85e9 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x00874304 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00b4db18 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x00b50e73 l3mdev_get_rt6_dst +EXPORT_SYMBOL_GPL vmlinux 0x00e3b66c device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00eb6daf __put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00f66fa8 amba_ahb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x01204b8b snd_soc_put_strobe +EXPORT_SYMBOL_GPL vmlinux 0x0122e216 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x012de6de devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x013cb5cf i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x014db367 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x01921dae blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x019636b3 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0197d69a regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01cef5d3 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01fea1df dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x0207a12b list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x022fc9f3 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x02599967 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x0265d65a dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x0266da70 input_class +EXPORT_SYMBOL_GPL vmlinux 0x02713bce regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x02726680 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x0273b89c xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x029821fc tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x02b24cd3 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x02b71740 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x02ebaadd devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x02ebcb13 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x02eef2c7 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x030d7e90 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x030ff388 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x031f192d ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x032375b0 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x03337143 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0354ffdc blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x0360de36 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x0365d9f7 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x036f06b6 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03ab170d sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x03c6007d cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x03d46a97 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x0402b504 __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x04587a3a ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x04880771 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x04880f09 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04a7d297 hisi_clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x04b7a0c7 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x04c0bc45 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04d24ed4 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x04e163d1 omap_dm_timer_set_load_start +EXPORT_SYMBOL_GPL vmlinux 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x05159364 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0519a005 find_module +EXPORT_SYMBOL_GPL vmlinux 0x053642ab vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0559e431 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0586b714 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x05a62442 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x05adfe6b snd_soc_unregister_component +EXPORT_SYMBOL_GPL vmlinux 0x05c72dc9 dev_pm_opp_get_notifier +EXPORT_SYMBOL_GPL vmlinux 0x05cec8b6 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x05e8492c __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x05f84f83 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x06117d3b ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0626d6cb xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x06302ab8 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x06438115 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x06475c1f pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x06526ece tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0657f8bc pin_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x0666ec9f pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x067f7b28 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x068cb7fe fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x069f088b sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x06babe34 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x06bf8964 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x06c3dc89 __devcgroup_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x06c53419 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio +EXPORT_SYMBOL_GPL vmlinux 0x06e178cb of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x06ea3977 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x06f30e49 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x06f952d3 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x06fc0bcd sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x07032f9e trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0x071e46e3 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x0722c6a1 of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x072c944b pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x0745e61b gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x074ebd27 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x07684a40 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x076d6bc5 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x07946e57 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x0795615c dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x079e132f perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x07b10b7c fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b4f2b4 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07b637e8 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x07b9060e spi_async +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07ea1c8d tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x08002399 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x08213ac2 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x0848a570 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x08556daf pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x086d34eb snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0x087e7dfd wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x087fa4b5 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL vmlinux 0x0885d2c8 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x088f42ff sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL vmlinux 0x08a0fb9b kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x08b81a37 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x08c6ba3e mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x08c73234 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x08cee859 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x08f452d6 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x09084bda of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x090ae864 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x090bd5c4 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x090cbe64 d_walk +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x0924b6af xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x0958637c list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x0961b62e public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x0969e2d5 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x096cbb85 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x09733f0e spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0x098a2cb7 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x099ac203 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x09b8655f locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x09ba829c bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x09c1df85 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x09e1bc0e snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL vmlinux 0x09e5a84a crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x09e5e1d8 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x09f7bf38 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x0a000acc dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x0a619264 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x0a66d02f pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x0a954961 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x0a9c3cf4 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x0aa1379f srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x0abd8b06 omap_dm_timer_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x0acef42f rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0ad16e79 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL vmlinux 0x0ad7f072 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x0adc9f25 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x0ae20cba debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x0ae4785a devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x0aebdf70 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0b027e9c mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b0c23c8 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b20df05 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x0b2460e0 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x0b44fe05 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x0b4552cd ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x0b499dc7 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x0b58c79b led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x0b5aae69 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x0b73c21e dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x0b7812bb put_filp +EXPORT_SYMBOL_GPL vmlinux 0x0b9c5e1b gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0ba6b928 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0bbae511 return_address +EXPORT_SYMBOL_GPL vmlinux 0x0bbcb3c1 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x0bbd38d1 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x0bdfa720 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x0be476cb wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0be627c7 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x0be79a1d of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x0be8ce00 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0bfdf017 arm_iommu_release_mapping +EXPORT_SYMBOL_GPL vmlinux 0x0c0061f9 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x0c064443 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c15139a ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x0c1a0f18 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c334ce7 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x0c50b6b2 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x0c90f6ab omap_iommu_save_ctx +EXPORT_SYMBOL_GPL vmlinux 0x0ca0405b gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0ce0a0c7 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x0ce793c5 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x0d01096b snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0x0d0be99d tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x0d2a17ae usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x0d2ec46a pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x0d380427 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL vmlinux 0x0d404e5a devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x0d40b483 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x0d48cdd8 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d5ff189 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x0d6052ac of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x0d777e40 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x0d7b326d mount_mtd +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d919237 store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0x0d9bc6c3 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x0da94357 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x0dba7b5d posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x0dbe7c85 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0dde282c snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL vmlinux 0x0deb73ea reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0e218c7e gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x0e35f11e regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x0e461a52 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x0e56ebd4 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x0e5e5e80 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0e796d7c proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x0e8a574a cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0e96530b sm501_find_clock +EXPORT_SYMBOL_GPL vmlinux 0x0ea94548 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x0eace59b snd_soc_info_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x0ebabe5e musb_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x0ecbea8a devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x0ecbf436 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x0ed09450 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x0ed40750 tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x0edf17be ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x0ee06291 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x0ef24767 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x0effa15a of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0f07ed16 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f39a743 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x0f459eec pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x0f4aab8b usb_ep_free_request +EXPORT_SYMBOL_GPL vmlinux 0x0f4e74fa thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x0f5a0b0a pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x0f5a6c07 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x0f69989c ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f804463 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x0f86f95a rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x0fd3998a clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x0fd71930 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x0fe5b791 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x0ff9af09 cpdma_ctlr_int_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x10094d19 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x100ab093 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x1011c8f8 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x103f345e inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x10475bf0 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x10575c37 register_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x1060c52f cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x1073f2d6 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x109e37d7 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x109e51f9 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x10a2d823 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL vmlinux 0x10b1ee73 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x10d0a55b dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x10d89922 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x10e6908d digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10ee95f3 mtd_write_oob +EXPORT_SYMBOL_GPL vmlinux 0x10fce305 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x11025677 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x1110ea3c pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x1118f263 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x1154f0d0 __cci_control_port_by_device +EXPORT_SYMBOL_GPL vmlinux 0x116468c6 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x1170a4bf blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x119af3be kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x11ac0d9c relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x11b863fc wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x11df7561 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x11f886f0 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x11fcd11a tegra_xusb_padctl_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x12101392 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1226fe88 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x123e0cdf snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x125d89cb usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x12645b59 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x127118e8 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x12808544 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x128fc206 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x12925b08 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x12b2f1a4 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x12b32a51 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x12d0b1bb snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL vmlinux 0x12e67689 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x12ee1f69 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x12fae9e3 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x12fd6adf debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x130badf6 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x13103c8c of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x1317f20b tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x13354608 scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x133cc790 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x13462ce9 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x134ac04b cpsw_ale_stop +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13682f19 snd_soc_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1373a10c list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x137a31dc snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0x137db0e3 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x1381d4f3 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x13af44fa reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio +EXPORT_SYMBOL_GPL vmlinux 0x13c2ae29 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x13c8dbe1 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x13cdee94 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x13e6103f fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x140ed999 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1457422e spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0x147ab380 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x1480f447 debugfs_use_file_start +EXPORT_SYMBOL_GPL vmlinux 0x14856870 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x14a98a21 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x14c66589 amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0x14c6c97c regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x14f8d753 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x150c63ea exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x15417387 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x15bdc80d snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x16008e8a irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x162cb1ed __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x162ff731 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x163e52f1 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x163e9bf3 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x1660f11d blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x1680971b ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x16970e87 omap_dm_timer_set_load +EXPORT_SYMBOL_GPL vmlinux 0x169a5f9e scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x169f927b ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x16da3426 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x16e67d6d led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x16eba195 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x170525ca snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL vmlinux 0x170df491 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x1712c875 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x17176c1b mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x172fbddb crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x173ef02d da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x176aabda omap_iommu_restore_ctx +EXPORT_SYMBOL_GPL vmlinux 0x177a6536 ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x179afa56 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x17c05173 add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0x17cd8cd3 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x17d2c567 security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0x17f0a7b0 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x183f6bcf usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x1844c2e7 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x18499b55 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL vmlinux 0x18508f69 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1858228d of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x1865e2ac kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x186a0ec1 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x18750436 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x188053a5 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x188f3626 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x18bf3d1f raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x18d56f1b cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e875e0 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x18f2a7d4 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x18f83c02 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x18f8a5a4 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x18fe9594 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x190a9471 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x190f4cf7 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x192441c6 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x193a704c ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x193fb3b1 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x194594ac blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x1949b9ff tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x1954d8ca crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x198520a4 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x198cab09 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x19924700 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x19928635 mv_mbus_dram_info +EXPORT_SYMBOL_GPL vmlinux 0x199e836f of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x199ed282 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19c266f1 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x19cd5efe cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x19db2b6b ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x19e0be15 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19f4cecf pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x19f5bd92 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x19f5d05a ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x1a1bec90 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x1a2dbac6 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1a61f6be usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL vmlinux 0x1a6977cd cpsw_ale_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1a76a70f ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x1a9a357a blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x1ac56bb2 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1b00604a snd_soc_add_component_controls +EXPORT_SYMBOL_GPL vmlinux 0x1b036e0d ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x1b2aa831 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x1b2f1b02 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1b3261e0 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x1b3fec59 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x1b41e3e8 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x1b48e0e1 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b6a436a phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1bb5044a vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x1bb5fc26 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bca8595 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x1bd58a86 snd_soc_component_read +EXPORT_SYMBOL_GPL vmlinux 0x1be6c08e virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x1c014f72 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x1c0ebb5c of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x1c2d2a05 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL vmlinux 0x1c4cfa05 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x1c52454a blk_trace_setup +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 0x1c716881 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x1c798d9f for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x1c7f80e9 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c9d072d kill_mtd_super +EXPORT_SYMBOL_GPL vmlinux 0x1ca8f84c dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x1cae1735 snd_soc_write +EXPORT_SYMBOL_GPL vmlinux 0x1cb56014 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x1cb576d0 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x1cf1896a pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x1cf27f69 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x1cfae7c0 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x1d0d3389 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1d0dc4af sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x1d0ec940 mtd_ooblayout_free +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d284cb3 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x1d4885bd rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x1d4d2de6 __of_genpd_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d6549b4 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x1d919ebe ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x1df4b60b crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x1df65c6b usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x1dfd344d mtd_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x1e2f3616 snd_soc_add_platform +EXPORT_SYMBOL_GPL vmlinux 0x1e47d70e trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e645b74 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x1e6b7120 pm_wakeup_event +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 0x1e9854cd inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x1e9f4398 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x1ea0c543 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x1ea6d36e tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x1eaebbc9 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x1eaf29b0 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebd8689 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ed98a28 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x1eec550a xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1f14c631 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x1f1d2963 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f4593b9 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x1f487838 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x1f774f46 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8d71c4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1fa4ccb8 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1fb9b87f security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x1fc45a23 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x1fdec2cd ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x200518d4 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x20072640 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x201ac78d tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x201d13df tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x201d8ea3 encode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x204ac4aa smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x20748482 device_create +EXPORT_SYMBOL_GPL vmlinux 0x207cd5bd dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x208c4fb9 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x20ca03f7 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x20cc4bbd iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x20ed5a90 nand_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x20f904f3 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x210e8227 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x21205e75 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x2142a355 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x2163167b usb_ep_set_wedge +EXPORT_SYMBOL_GPL vmlinux 0x216e510b fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x2182e566 component_add +EXPORT_SYMBOL_GPL vmlinux 0x2196096d i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x21981d38 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x219ea03f of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21a8e4ad mtk_smi_larb_put +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21c2d65e regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x21c30aff sm501_misc_control +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21e8658f debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x21febf58 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x22014d40 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x222345c4 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x22463980 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x226a0dc8 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x226a674d atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2271985a gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x22835fe5 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x2288d272 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2297d383 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x229e1867 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x22a52ab9 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x22b8b07a fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x22bb2b88 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x22be79c4 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x22c80927 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x22c94a58 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x22d97e64 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL vmlinux 0x22e7c108 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL vmlinux 0x232923dd snd_soc_component_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x23462ef9 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x2357e77b crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x2366532c sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x2369008b cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x23724b04 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2393f55e usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23a3bcf0 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x23a6cb6a security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x23ca6310 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x23e743ce each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x242384b6 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0x2429ba85 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x24322cc2 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x2433adb2 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x2442e7cd clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x24492621 get_system_keyring +EXPORT_SYMBOL_GPL vmlinux 0x24555571 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24813145 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24db1850 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x250a2ce5 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x250e671f ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x2510a89f pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25116588 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x251e04b5 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x2524a8ca wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x252fae39 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x253eb323 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x25430326 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x255d2220 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x256da5d4 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x2587c825 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x25996c01 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x25a428b1 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x25a67be6 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x25aeb031 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x25cc2395 i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25d8e84f ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0x25e4fa8c btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x26105f00 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x261803ba scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x26341c6e tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x2662a55b dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x2666778b __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x26a72e39 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x26a9aab7 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x26adb815 thread_notify_head +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c547c0 bL_switcher_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26dd1beb ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x26e02ba4 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26f14da5 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x27089a5f device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x2709db33 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x27133645 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x27192afa nand_ooblayout_lp_ops +EXPORT_SYMBOL_GPL vmlinux 0x271caed4 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x271d62a1 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x27204ba0 pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x27227c64 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x27238d89 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit +EXPORT_SYMBOL_GPL vmlinux 0x272f671b usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x27416bc8 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x2742eaa7 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x2749a111 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x275677c8 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x2757ea63 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x278299e6 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x278cf134 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x279b5ba8 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x27b29bf1 sdhci_set_power +EXPORT_SYMBOL_GPL vmlinux 0x27b7cb09 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27c912d4 vfs_readf +EXPORT_SYMBOL_GPL vmlinux 0x27cc0e3d device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x2827eec8 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x2828c7e8 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x282aa92a crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28328453 clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x283a2dd0 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x28439f80 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x2860803a snd_soc_cnew +EXPORT_SYMBOL_GPL vmlinux 0x28686a74 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x286c28c6 spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0x287225c1 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x287f33f1 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28857c4a setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x28a31e52 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x28eeb6cb sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x28fe56e8 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x290917f5 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x292f00d0 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x293d93a8 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x294bf308 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x2953d620 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x296c4df6 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x296e9dfd tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x2971fe0e nl_table +EXPORT_SYMBOL_GPL vmlinux 0x297463e4 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0x2997c0dc __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x29aa8578 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x29aadee0 i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x29d7f0d7 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x29de2524 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x29e79414 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29fa419f decode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x29ff32d8 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x2a0d2393 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x2a25fe32 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x2a3e6b28 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x2a529c59 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a72e316 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x2a8755e9 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x2ab741b5 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x2ae34b4b list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2af2102f cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x2af41db7 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x2af712ae pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x2b0567bc clk_hw_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x2b200df5 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b2bc571 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x2b734893 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x2b948d4e snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2baa66d4 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x2babe81f __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x2bb3d322 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x2bc1ef87 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x2bc2831e pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x2bf6eca5 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x2c005de6 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2c0e2dee sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x2c138892 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c2493e9 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c4a35eb regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c8a2f67 clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2cc8202e fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x2ccc44f8 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x2cce3f18 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cf3dfec fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x2d1ac861 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d1e0038 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x2d25ff4a pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x2d3bee21 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL vmlinux 0x2d3de9ee sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d722fc5 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL vmlinux 0x2d78b073 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x2d7b318d crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x2d7c73b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0x2d81c5d6 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2d994c78 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x2da36ba4 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x2dad9b05 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x2db13414 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x2db82e38 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x2dd43726 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x2ddda4f4 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x2deaad27 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e278f88 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e3281ec device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2e452b8a mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x2e69ab52 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x2e6f7735 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x2e788fd5 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x2e7b4006 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x2e9143f1 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x2e9670c0 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0x2e9f0563 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x2ea0f1d0 clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x2ea5486e mvebu_mbus_get_io_win_info +EXPORT_SYMBOL_GPL vmlinux 0x2eaade38 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x2ebbebd2 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ec77ad7 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x2ece02cf mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2ee6a770 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x2ef29dc6 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x2ef4d512 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x2ef6b5bf smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x2ef718dd pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f5b3749 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f71d721 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x2f8f032e vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x2f90da7e trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2f95aa69 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x2fa9f84b class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x2faf1d65 snd_soc_get_strobe +EXPORT_SYMBOL_GPL vmlinux 0x2fb4e9ce pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x2fc7b541 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2fde1ca0 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x2ff97a9a snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL vmlinux 0x2ffaf9da devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x2ffc047b posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x3002e628 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL vmlinux 0x301e80b5 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x3040cc9a gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x30434bd5 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x30465896 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x30466891 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x3060d504 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x3062f38e bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x30693bb7 imx_audmux_v1_configure_port +EXPORT_SYMBOL_GPL vmlinux 0x3069809a __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x308a80b8 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x30a4cfbf ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30b2606d register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x30d3eed6 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x30e61c85 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x310970c1 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x3131260d irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x31503a7a find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x317384a0 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x3186de8e regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x3197df24 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d62232 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x31ec8e94 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x320211a9 dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x320705b0 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x32161455 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x322dbc73 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x32363d72 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x323924d7 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x3240eb66 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x3276a053 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x327ae2e9 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x327fcaec remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x3284d3c2 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x32946fd3 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32d19d03 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x32ef621b dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x32ff2300 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x333b7728 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x33403581 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x334074f6 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x33565187 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x33582100 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x335a23ae devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x335be769 __register_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x33983c76 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x339b1786 default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x33a905ba ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x33ab7ec7 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x33b3c77f dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x33b5098a pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x33d9cb5f usb_string +EXPORT_SYMBOL_GPL vmlinux 0x33e5e036 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x33f087e7 mtd_erase_callback +EXPORT_SYMBOL_GPL vmlinux 0x340f9506 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x341643ba omap_dm_timer_modify_idlect_mask +EXPORT_SYMBOL_GPL vmlinux 0x344a7326 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x344d4bdc crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x345fbf7c kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0x3479b7f4 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x3482bd2a inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x348bf66b regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x349a03db regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x34a19d03 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34a84df3 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x34febcf8 pci_fixup_irqs +EXPORT_SYMBOL_GPL vmlinux 0x3513dbda irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x351fba94 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0x352bb3f9 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x352e96c8 snd_soc_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x35491330 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x3551b5d1 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x355d2f06 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x3567105f wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x357ed5e1 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x3584752e spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35969f8b ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x35995e15 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x3599fab1 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x35a0830e clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x35a3895c usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x35d3a94d pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x35d73465 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x35dcd1f7 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x35e76c12 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x35f2362e ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x360d4815 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x3611f437 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x361327f8 max_gen_clk_ops +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x36394a00 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x3659564d arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x3676cdb6 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x368e0b99 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x368f5bc0 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x36965a06 __mtd_next_device +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36b9194c smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x36ba9271 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x36bba6b7 usb_gadget_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x36c840c5 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x36d1ae50 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x36d9fe46 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36dc9e5b sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x36e3d46a sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x36f5c4db sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x370fbc49 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL vmlinux 0x3710a56f do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x37276fa4 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x377516d2 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x3779a4d2 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x378c3f06 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x378f221c clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x37a4d1c3 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL vmlinux 0x37e14ac7 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37ea1e9c wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x37f4aa37 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x38021d9c snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL vmlinux 0x3822ff6f handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x382d4d21 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x383458a6 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x383ad75d ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x384729c6 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x386970eb __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x38699465 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x386b6a44 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x387e12d5 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x3892c216 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38b03d08 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x38b9910d led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38f784e2 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0x38fcdf84 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x39098112 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x3927441c __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x393099e5 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x393784dd skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0x39676120 sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x397c509b regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x3988e8d4 omap_dm_timer_get_fclk +EXPORT_SYMBOL_GPL vmlinux 0x39b2b9b2 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x39b7f256 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x39bef710 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39cce46c gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39ff0033 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0x3a172660 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x3a1ae987 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x3a1d91e0 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a2a9d33 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x3a34f05f phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a4c65e5 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3af585ae usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x3b1993f2 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x3b2a7e3e mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x3b3e7608 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3b6a9350 blk_mq_reinit_tagset +EXPORT_SYMBOL_GPL vmlinux 0x3b843f1e of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x3b966d1f crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x3bd8cd47 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x3be44de0 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c2e48a9 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x3c555622 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x3c66256b kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x3c7c961c irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x3c831441 arm_check_condition +EXPORT_SYMBOL_GPL vmlinux 0x3c83a066 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL vmlinux 0x3c90c16d regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c93ea25 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x3c942c2c dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x3c9b6896 dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x3c9db100 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd0bb12 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x3cd10123 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL vmlinux 0x3cd4d91d sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x3cfdad58 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x3d0ed89e sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d49fc73 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x3d534281 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x3d7c90f5 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x3d80bafd crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x3d8f8a74 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x3dbc316e devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dcdb8f2 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf +EXPORT_SYMBOL_GPL vmlinux 0x3de6a019 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3e0dff15 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x3e13c4d5 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x3e17eeef snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3e224b37 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e31d9c3 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x3e346d4d sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x3e410620 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e61d08c max_gen_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e8b4ed4 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x3e9750c2 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x3ea2ce24 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x3ecadf6b tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f03be5f virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x3f060887 __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x3f08ed87 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x3f0d9df4 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3f1be4fc tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x3f1c6f8e shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x3f1de642 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x3f3c9efb pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x3f3df374 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x3f642558 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x3f837988 omap_dm_timer_request_by_node +EXPORT_SYMBOL_GPL vmlinux 0x3f9d2c6f virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x3fa965bc gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x3fb73a73 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x3fd72364 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x3ff0dd8b inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x3ffc8623 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x3ffed53a devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x40104a1e cpsw_ale_start +EXPORT_SYMBOL_GPL vmlinux 0x401a0f58 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4021d623 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x4025a802 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x4036b485 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x40390193 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x4073660d debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x407ae612 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x408521de thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4089841e debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x408b1a76 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x408e1117 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40b39f95 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x40ca1cac usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40e2b880 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x40ece860 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f775f3 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x410ea569 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x41322612 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x413c7975 snd_soc_register_codec +EXPORT_SYMBOL_GPL vmlinux 0x414a5d8a led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x4152eb2a inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x41642cde of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x416c2f50 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x41711dff devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x41752385 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL vmlinux 0x41812267 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418b51bb zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x4192b2ce usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x4194f4b9 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x41a20552 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x41aaa683 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x41b470a4 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41d2a22d ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x41d72cf7 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x41d88956 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x41e062bf scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x41fee4ed usb_ep_queue +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x420f3737 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x4253e22c irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x4268fb7d pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x429cf719 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x42adbc24 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x42b59094 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x42bc3d9e __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x42bd2b68 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x42ea9139 of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x42f5c007 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x42fdd89f sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x4310bc31 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x43376b27 iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x433bcad1 mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x4364b979 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x43721cc9 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x43930ea6 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43b921b5 usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL vmlinux 0x43c693a2 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43d35044 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x43de43ca device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x43f3ec5f ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x441b5b6b perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x44249f93 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x442a5f95 arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x444a1efd virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x44553caf arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0x445ef051 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x447386d5 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44b38b8c omap_dm_timer_read_status +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44d8171c crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x44dff540 omap_dm_timer_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x4537a5dd snd_soc_find_dai +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x4581d502 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x4584e8f2 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x458e323e fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x45b16382 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x45ba1367 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x45bc3a3d mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46066e5b perf_pmu_name +EXPORT_SYMBOL_GPL vmlinux 0x46219416 pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x462b94ac skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x46442030 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4663b85f da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x466e5342 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x467924bc ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x46851435 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46897888 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x469b777c blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x46cbca82 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x46cf0b01 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x46d3e0e2 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x46ff1f90 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x4712c612 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x471535a9 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4736b989 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x4736c5c5 hisi_clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x4753c4a7 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x47546666 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4781c5ab dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x479146d2 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x4791afb6 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47c13a98 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0x47d19563 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47ea8f2e sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4813ba69 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x4848ae49 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x485989a2 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x485a95c0 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48c33709 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x48c4bb92 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x48d148d3 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x48f2d1a4 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x490868ef __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4932bc01 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x4932fe26 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x4978a1e2 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x4978c08b class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x498be12b page_endio +EXPORT_SYMBOL_GPL vmlinux 0x498db662 ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x498f951d __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x4994af5e usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x49a56b0a ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x49aaef26 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x49d01c27 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x49d7f654 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x49e6ffc3 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49ed26a2 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL vmlinux 0x49f22057 snd_soc_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x4a03ea2a usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x4a08c3c3 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x4a266156 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x4a278817 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x4a3d701a arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x4a618df7 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x4a63f3b2 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0x4a927801 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x4a977d0e user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x4a9ce738 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x4aa2ba79 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ab1a16b usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x4abfa27c fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x4adc4575 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x4ae01734 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x4ae9ccb2 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL vmlinux 0x4aea2ad3 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x4af0a152 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x4af32eae qcom_smem_state_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x4afc86c8 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x4b0ea5d6 of_fixed_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x4b1187a0 clk_hw_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x4b2048d3 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x4b302065 devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4b418238 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x4b481dc4 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x4b51da01 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x4b635674 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x4b81d71a __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x4bafcdd8 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4bb75eca snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x4bcf27c9 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x4bd18273 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x4bd95ed7 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x4c1281a4 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x4c340c8e cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x4c37df02 ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0x4c47ec15 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x4c599b0e ping_err +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c6ab359 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x4c754700 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x4c792bcf tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x4c7f3f73 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x4c8444a0 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x4c932a75 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x4cc65c4e gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x4cd0dce9 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x4ce153ea crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x4ceca0bc transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4cef9c7b snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL vmlinux 0x4cfdf3f1 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d1f1d44 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x4d38f1e0 bL_switcher_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4d55d410 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4d6b5820 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x4d72a42f wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x4d7d5b58 wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x4d8bc388 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4d99632d ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x4d9dd1d1 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x4dd7a43a gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x4ddad7c1 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4e0c435d snd_soc_bytes_info +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e1740e3 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e3150da md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x4e3e7bdd __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x4e579682 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x4e667722 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x4e67c4ca ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x4e9e6ba6 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x4eb036d1 sdhci_free_host +EXPORT_SYMBOL_GPL vmlinux 0x4edf2ba0 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x4eee6e39 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f0aaac9 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f43739e bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x4f46048b ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x4f4cad3e of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6cd03d nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fbe8dae pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4fc1515f mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x4fc8ed44 __sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0x4fdc007a find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x501488ab ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x50149a8d device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x5023115c pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x5035ecd0 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x5037039c gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x50372ba4 xhci_mtk_drop_ep_quirk +EXPORT_SYMBOL_GPL vmlinux 0x504a2cc5 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x5052bd26 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x5067ed6e fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x506a9d03 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0x507dd200 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5080c352 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x50912e3d platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL vmlinux 0x50c2f5f2 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50cdbd78 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL vmlinux 0x50db96f8 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50ee2d18 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x50f0b373 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x50f5c8a8 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x51065c7f crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x5110e9f2 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x51314cf5 reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x51420250 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514df18f tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5164a80d blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x51706460 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x5176285d blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x51811f94 wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5190c903 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x5191be5d usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0x5193ca0f handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x51b0802b snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL vmlinux 0x51ba5866 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x51c7cd07 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x51c970ff register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x51cd2408 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x51cef801 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x51d703db dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x51f18099 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x51fa9deb crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x51fbcd9f rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x5200c3b4 usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x5209ab50 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x522d8e99 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x524629e6 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x526280c7 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x52879040 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x528d5ad8 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52a579ec of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x52cbeff4 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x52fa275e phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x5315e00d pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x531dd024 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x5328933d mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x53370b9e usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x537ca9f7 l3mdev_get_saddr +EXPORT_SYMBOL_GPL vmlinux 0x5389fad9 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x5392ca7f phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x5393a020 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x539d5174 user_read +EXPORT_SYMBOL_GPL vmlinux 0x53f822d9 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x53fedb7e pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x541f32ef sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x54396bc6 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x543f2fea component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x544aab61 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x545fec86 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x547212a0 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x549069c6 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put +EXPORT_SYMBOL_GPL vmlinux 0x54abb4ca screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x54ac47e2 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x54c8210e ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x54ca8ac9 arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54d7aa35 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x54e9052c tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x54ecfc44 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL vmlinux 0x55001e4f key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x55169061 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x553eca17 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x554605f3 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL vmlinux 0x554fd074 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x5560dbd2 ti_cm_get_macid +EXPORT_SYMBOL_GPL vmlinux 0x55627b35 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x55678b62 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x556d551b regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x55a366d1 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x55ac90a9 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x55aefe94 pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x55ca286e gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x5602ec80 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x5604e588 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x561a3704 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5640f8d5 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x5649f089 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x565e74c5 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x5673780b spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x568b57f8 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x5696364e of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x569a07fb splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56d31820 musb_writel +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x570a89af snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0x571ba036 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x571e4327 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x573f072c task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x574bcd34 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x574e902f bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x57560966 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x575afad6 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x57720bba mtd_unlock +EXPORT_SYMBOL_GPL vmlinux 0x578b3948 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579c8292 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57b57fb0 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x57b5effa dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57c724eb sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x57e1c84f adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x57e34fd5 blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x57eb14ae subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x57f2892a snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL vmlinux 0x581a3abf ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x58331e88 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x585c9ee5 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x58631bde public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x58631dab imx_audmux_v2_configure_port +EXPORT_SYMBOL_GPL vmlinux 0x588bf451 sdhci_get_of_property +EXPORT_SYMBOL_GPL vmlinux 0x58995a58 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58b7c63d wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x58baf2e9 devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x58c6490d ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x58d48cbf msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x58ec6dc6 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x58f2b469 devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x59121942 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x5928b104 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL vmlinux 0x592c8f59 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x594cde67 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x59524290 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x5961470f root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x59715d8d __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x597b05c6 snd_soc_register_dai +EXPORT_SYMBOL_GPL vmlinux 0x59ae5fbc class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x59b4e6ff power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x59ca747c uniphier_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5a0ca2f4 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x5a117a38 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x5a4025e8 cpsw_ale_dump +EXPORT_SYMBOL_GPL vmlinux 0x5a4bd7d7 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x5a5ebc69 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a8f213c cpdma_ctlr_eoi +EXPORT_SYMBOL_GPL vmlinux 0x5a9117ab device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x5a9fa679 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x5aaf3b81 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x5ab46a45 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5ac0d4a4 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x5ac46081 security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x5acd894d mtd_unpoint +EXPORT_SYMBOL_GPL vmlinux 0x5acf2b5f mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x5acf6567 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x5ada4242 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x5aed4cde subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x5af36cf5 setfl +EXPORT_SYMBOL_GPL vmlinux 0x5aff594e of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0x5b11dc6c do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x5b2acf62 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL vmlinux 0x5b4b56be unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x5b4f7cf0 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x5b90861a attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x5b993327 irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x5ba388a1 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5ba55c97 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x5ba60f67 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x5bb3d42a usb_gadget_connect +EXPORT_SYMBOL_GPL vmlinux 0x5bb3d447 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd5d602 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5c299722 omap_dm_timer_enable +EXPORT_SYMBOL_GPL vmlinux 0x5c2fe4a5 cpdma_chan_stop +EXPORT_SYMBOL_GPL vmlinux 0x5c30c125 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x5c348c5e crypto_has_skcipher2 +EXPORT_SYMBOL_GPL vmlinux 0x5c53afef regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5c6307 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x5c724709 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5c753d64 skb_gso_validate_mtu +EXPORT_SYMBOL_GPL vmlinux 0x5c8d8fd6 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x5ca9bf79 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cbef55c ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x5cc23f22 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cd8ce1f usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x5d0180b6 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x5d053d33 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d153a7a hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x5d557131 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x5d5bce88 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x5d70b960 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x5d7eeed9 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x5d92a871 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL vmlinux 0x5d9311bf __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dbb14e5 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x5ddb5c44 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5df778c5 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e0a7ac0 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x5e12ecc1 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x5e16a3c9 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x5e3477dd event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x5e3c4c54 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e67b71d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0x5e8d7cc9 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x5e9228ab inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x5e95c5ad crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x5ea962d2 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x5ecd8168 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x5ed8e64f init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x5ee89b0c snd_soc_remove_dai_link +EXPORT_SYMBOL_GPL vmlinux 0x5f16c09e crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x5f36bf9d dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x5f3de6ae device_reset +EXPORT_SYMBOL_GPL vmlinux 0x5f85aeaf bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x5f9afa4e iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x5fa4cb9c cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x5fa68da1 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x5fbec186 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x5fe1e898 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x5feba9f1 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x60188ec2 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x6023119f serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x604dab8f ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x6055e54b irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x6075d0c7 omap_tll_init +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a58710 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x60d17d69 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x60d18a11 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x60edc82c xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x61129d5a of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x6149d12e virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x614e9363 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x616e7290 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x617bef0e devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x61a50809 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x61b1cdd2 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x61b97b49 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x61c6ad70 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x61c992eb pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x61ca0dd3 of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x61ccf484 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x61e451aa evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x6210299e scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x62118f8c dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x6224623a ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x623faa3f sdhci_alloc_host +EXPORT_SYMBOL_GPL vmlinux 0x623fb31b snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x623ff494 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x625e5cd9 hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6298c8ea led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x62a7349d device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x62ae8520 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x62b3ed55 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x62c70d3c crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x62ca82ba ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x62d6abcc get_mtd_device_nm +EXPORT_SYMBOL_GPL vmlinux 0x62f41154 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x63085de9 cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6323598e regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6324f8fb iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x632d6aa4 security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0x632e0020 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x634e4a7e lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x63511522 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x637ea11b amba_apb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x63ac60ca gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x63b1a2ba sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x63d30bf7 sdhci_pltfm_free +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x640fac85 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x641129ea led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x642d041a alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x642e0229 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x643ad081 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x643d606e rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x643df7ac aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x64518dba platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6466e2bb tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x648f36a7 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x649538ec __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x64978bfa platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x649b4c24 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x649f4bad snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x64ab3f30 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x64ab8714 __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0x64b4ee03 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x64c69ed9 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x64ccc815 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x64df313d udp6_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0x64e88425 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL vmlinux 0x6540dcff tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x65537437 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x6558fb31 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x655fcb8c icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x65a5b51d inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x65aa6a15 clk_hw_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x65adf54f update_time +EXPORT_SYMBOL_GPL vmlinux 0x65bf2dd4 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65db6f0b __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x65f46728 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x6612b78e dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x663670c1 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6636ecbe cpdma_ctlr_create +EXPORT_SYMBOL_GPL vmlinux 0x663fc5c3 omap_dm_timer_trigger +EXPORT_SYMBOL_GPL vmlinux 0x664a1133 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x66645c88 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x6668d6ee fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x667aec18 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x667c4b49 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x6680978b iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x668d40b9 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x66bf9902 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66ea94e1 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x66ece706 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x66f36f23 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x66f64ff7 blk_poll +EXPORT_SYMBOL_GPL vmlinux 0x6701af77 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x67097b0e regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x672ef6ab skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x6739211c pm_genpd_syscore_poweron +EXPORT_SYMBOL_GPL vmlinux 0x673b1c09 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x67696e6e pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x6779907e pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x6782e878 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x678b8cbb kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x678c4d48 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x678ff54b extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6794adca cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67bf52ee snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL vmlinux 0x67cd0c62 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x67d448a2 _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x67da1452 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x67fad361 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x680eec1f thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6821d2fe snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x68227ee6 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x682b004a power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x682be9fc blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x684227b3 snd_soc_component_write +EXPORT_SYMBOL_GPL vmlinux 0x684ceb3e blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x686a54d7 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x686f9f9d ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0x68725d27 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x687fca31 imx6q_cpuidle_fec_irqs_used +EXPORT_SYMBOL_GPL vmlinux 0x68bcc2fd skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x68e3e5d9 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x68e47b2c cpdma_ctlr_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x69393acf register_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0x694113b5 do_truncate +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0x694be42a usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x697c1966 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x69c6b263 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x69c82e13 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x69d2fff9 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x69d6186f disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x69d8866b usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x69ddf166 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x69e56f7a pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6a16f137 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a4b13b4 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a4fb48d snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a9187ac sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x6a9755b1 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x6aa57547 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x6aae8455 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6acb18b4 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x6b0923e6 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x6b192c82 omap_dm_timer_set_int_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b19b61d of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x6b254378 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL vmlinux 0x6b7df64c tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b879823 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x6ba63684 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6ba9102d rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x6bb2a2cf usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x6bbd4dbb max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x6bf38590 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c106b05 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6c24b643 dm_use_blk_mq +EXPORT_SYMBOL_GPL vmlinux 0x6c2e5dd8 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x6c33a2e5 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c593717 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c892d22 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cea82b9 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d30e1ff dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x6d325094 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x6d351b57 omap_dm_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x6d3ed0fb ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x6d424356 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x6d7158e7 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x6d73387a device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x6d7369bd sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d8e6678 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x6d91115a hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6dc43f43 imx6q_cpuidle_fec_irqs_unused +EXPORT_SYMBOL_GPL vmlinux 0x6dc57c6d fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x6dcd9997 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x6ddad99f security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0x6de02b45 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x6de47154 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x6de4b422 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x6dfaefe0 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL vmlinux 0x6e021e32 sdhci_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x6e643a13 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x6e6dac57 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e820bee posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6e8280ae vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e8d76e1 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6e929c48 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x6e93fffb serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x6eb346ac amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x6ebde9ea ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x6ebffca2 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x6ed967f2 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x6f0f1392 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x6f18c44f extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x6f1ae50f power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f87e037 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x6f8be6c8 of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x6f8f5289 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6f9b1f9d clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x6faf9dc7 deregister_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x6fb3b666 snd_soc_resume +EXPORT_SYMBOL_GPL vmlinux 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL vmlinux 0x6fd11881 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL vmlinux 0x6fd94ecf devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6fef1c08 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x6ff196a5 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ffa6568 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x7009562e sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x700a1791 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7014b70e rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x7014f6fd handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x70220b14 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x702ac9ca ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x702eb2ff attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x70423366 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x70498961 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x70643e9a tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x706b4f64 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x70776bbb pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x70a27f10 usb_reset_device +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 0x70da66ef devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x71003bcd cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x71008581 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x71028254 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x71160282 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x711d8da8 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x7127fcf5 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71704a9c dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71b4d38d da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x71d4ddca ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71e44730 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x71e86514 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL vmlinux 0x722ecf7f of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x7232a574 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x723637e8 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x724b1f37 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x7268e638 cs47l24_patch +EXPORT_SYMBOL_GPL vmlinux 0x726a7071 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x7271eb2d mtd_writev +EXPORT_SYMBOL_GPL vmlinux 0x7273876d get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x727505ba dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x728ad8d1 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x728b1497 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x7291019b __cci_control_port_by_index +EXPORT_SYMBOL_GPL vmlinux 0x72a4fa4e mtd_read_oob +EXPORT_SYMBOL_GPL vmlinux 0x72be4e22 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x72d0ed06 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x72dd7819 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x72de87ee mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x72f3b890 iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0x72f58e55 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x72fb63d5 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x730bd0c7 asic3_write_register +EXPORT_SYMBOL_GPL vmlinux 0x7338d1f4 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x7341ec1a iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x73506d5d sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x7381a278 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x738f0f27 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x7399b3e2 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73acee29 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x73b5946b bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x73b8d30c cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73d285ad blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73db0c4e hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x73e249b5 spi_flash_read +EXPORT_SYMBOL_GPL vmlinux 0x73fc7e1f of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x740a9a55 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x744c96e5 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x745db8d0 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x747726a0 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x747d7b71 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x7484e26d mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x74877101 i2c_new_secondary_device +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x74a0cfc3 security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0x74b3c57d class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74bfce62 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x74f04c2c irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x74f25b48 omap_mcbsp_st_add_controls +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x754e469c hisi_clk_register_gate_sep +EXPORT_SYMBOL_GPL vmlinux 0x755a2fc6 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x755e995b of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x756ca1a9 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x759615bf tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x75b3dfaf iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75ee7270 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x75fa0f6b __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x761e0aca btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x761ed5d1 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x762736e5 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x762a140e dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x764928a2 cpdma_chan_create +EXPORT_SYMBOL_GPL vmlinux 0x7650d39b sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x765b5ff5 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x766bd4b2 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x767f5d5a get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7699fea8 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x76a92322 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x76b56031 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x76bd3278 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x76bd5d07 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x76cbddac trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x76cd95cd usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e1c971 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x770e96ab platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x7720fac6 security_inode_readlink +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x772dcb19 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x77699bec pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x7791ae86 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x779576cf devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x77ac2bf7 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x7833b3c7 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x785120e0 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x78663389 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x78923f70 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x789b8446 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78d7ffe8 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x792c318a snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL vmlinux 0x79335e19 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x79446d06 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x79571a1b snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL vmlinux 0x7959f68a pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x795e8458 insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x799710eb dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x79a8ab92 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x79a946ea inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x79c6d68b register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x79d8a754 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79dff063 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x79ffc5a8 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7a0cd9bf gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x7a27b20c fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a7ff620 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x7a8d105f __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7adf0a1b device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x7b097af7 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b112c80 omap_dm_timer_stop +EXPORT_SYMBOL_GPL vmlinux 0x7b178c28 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b203850 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0x7b306335 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7b3ec228 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x7b4a98a5 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x7b69538c kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x7b720b80 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x7b75b3c9 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7b97cd83 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x7bb516b9 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0x7bd10924 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x7be7834f iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x7bef8ab6 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x7bf08baa sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x7c14a0e5 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x7c18750a shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x7c19d333 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x7c3d6e53 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x7c5ae652 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x7c5c160f perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7c6a49ce unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x7c98ab95 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7c9cca56 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x7cb8ad10 usb_ep_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ce7ad9c dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d2ac508 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x7d339242 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x7d43a064 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x7d49d880 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x7d4dbc4b sm501_set_clock +EXPORT_SYMBOL_GPL vmlinux 0x7d53f5e7 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x7d596e86 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d609ea6 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x7d7520d2 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x7d76e62f uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x7d79b53a pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x7d7b42cd devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dc1072f snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7dde2fde blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x7de33f6a iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x7df3b252 extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x7df70ddb ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x7e08d3c8 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x7e2675f1 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7e2d1ed4 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x7e4d4110 of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e77df2c blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x7e7a6593 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7e8befb6 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7ec4a657 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x7ec5b18f relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x7ecaea33 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x7ed42be6 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x7ed68941 asic3_read_register +EXPORT_SYMBOL_GPL vmlinux 0x7eda1719 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7eeb270f xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x7efc466d snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL vmlinux 0x7f789487 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f8b154c crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x7fb5c6c9 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fb5e04f i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x7fbb5711 probes_decode_arm_table +EXPORT_SYMBOL_GPL vmlinux 0x7fbcdc04 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fcee3ba ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x7fd3be5d fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x7fea0efc genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x7fece222 extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x7fef67f7 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x800efa6d rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x8010d2c6 percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x801456cf hisi_clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x802d58f2 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x80319fb0 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x80333da2 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x803a030b device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x80416d33 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x8046dc1c adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x808e6b12 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x8092de37 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x80b4c424 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x80bddcc3 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80dc8a75 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x80f7d128 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x80f8589f trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811920be bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x811e96f2 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x8124db6c generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x8164ff88 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x81871354 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x81ac0c54 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x81c40099 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x81e5d29f mtk_smi_larb_get +EXPORT_SYMBOL_GPL vmlinux 0x81fb662f xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x820679a9 omap_dm_timer_request +EXPORT_SYMBOL_GPL vmlinux 0x822145d9 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x8237ee1c usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL vmlinux 0x8238f27c ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x823be484 mmput +EXPORT_SYMBOL_GPL vmlinux 0x8249951d class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x825f3ab3 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x82858bc0 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x82a69d3f lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x82a78d92 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x82be6ee3 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82dd6e42 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x82f00771 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x82f6be6f platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x82fa1961 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x831080fa cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x831543ce snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL vmlinux 0x831720b1 __pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x833543f0 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x833b533e pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x835cead0 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL vmlinux 0x835de1eb dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x83730859 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x8389395d vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83acd70b mtd_get_device_size +EXPORT_SYMBOL_GPL vmlinux 0x83af9de6 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x83bc590c dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x83dead7b cs47l24_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x83e01d83 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x842cdd93 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x8432e507 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x84357e27 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x844712df perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x84579330 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x845f6783 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x84656df6 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x847e84b5 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL vmlinux 0x847eac90 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x8493fcb8 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x84a68e36 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x84a8f1b4 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL vmlinux 0x84aea07c snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84b6b546 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x8512b899 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x85177e2d thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x851da526 ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x851e66b0 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x8522465f ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x85321ae2 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x853b7552 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x854d8c71 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x8552ad62 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8558f8c4 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x855b6bfe snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0x855d9669 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x858e851b sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x85b602d7 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x85bf818b of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x85c34490 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85de2df4 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x85fb2f22 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x860205b8 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x860216af fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x860e5704 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x862b9816 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0x8633d3d3 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x864f5036 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x865d86df snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86913171 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x86b7e366 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x86b90078 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x86c1bf34 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x870cf4da pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x8715e380 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x8717df8b __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x87193e83 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x87298879 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x87435d78 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x874d64dc ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x875c385c dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x876ec2a4 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x876ef74e regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x877331e9 bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x8777df7d __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x8784f0d8 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x878b4c55 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x879139d8 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x87ad83f4 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0x87b2b34e __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x87b84cc2 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x87e4e710 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x87ea6bf5 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x88215163 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8825d251 put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x882caad3 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x884484ae skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x884dc37d ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x885092ea register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x885e898c devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x886b75a1 dapm_clock_event +EXPORT_SYMBOL_GPL vmlinux 0x887b23fd ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x88819ad4 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x889f3a4e transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x88ab635c snd_soc_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88dffedc ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x88f11021 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x890718dd tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x891652fb posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x8927b7b7 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x893040fa mtd_panic_write +EXPORT_SYMBOL_GPL vmlinux 0x893a150c spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x893f1dbd ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x89510b2a fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x8965f79e cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x898e5203 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x899db0c0 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89c5a50a user_update +EXPORT_SYMBOL_GPL vmlinux 0x89e3e6e7 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x89f8915f thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x8a0b0a1e set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8a0c2e4c sdhci_pltfm_register +EXPORT_SYMBOL_GPL vmlinux 0x8a3eafb6 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x8a73a861 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8a7b3e8d iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x8a7f7124 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8a8ae6d7 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x8a995e45 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x8aaa865e tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x8aacd248 sdhci_calc_clk +EXPORT_SYMBOL_GPL vmlinux 0x8ab16175 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ad0b357 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x8aee8420 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x8b09c1e2 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x8b0ff544 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b1f11ca imx_pcm_fiq_init +EXPORT_SYMBOL_GPL vmlinux 0x8b382770 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x8b680b13 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x8b69dfd3 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x8b775d3a __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b8e3930 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8b914e71 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8b9ebd80 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x8ba795ed __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x8bb220a6 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x8bb43b4d scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x8bb563fc wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x8bdd597c xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x8bde1857 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x8be40aa9 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c1ce851 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x8c38f76d pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x8c3926d7 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x8c3fb9f2 of_get_dma_window +EXPORT_SYMBOL_GPL vmlinux 0x8c474458 device_add +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c675af8 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x8c6bba42 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x8c6c7d5d __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c78764e snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x8c8699f8 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x8c9cf356 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x8cb59c4f sdhci_setup_host +EXPORT_SYMBOL_GPL vmlinux 0x8cc389ed gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x8cdeb69f wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x8ce384e6 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x8cf456c3 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x8d0ac3d8 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x8d1603f4 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x8d20564e transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d2e96fb blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x8d4ffb50 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8d53926c dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x8d5a1980 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x8d70922c thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x8d79b7ec sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL vmlinux 0x8da17b42 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x8da1dd42 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x8dae15fc virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x8dae42e4 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x8de19405 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x8df55e0d pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x8dfbe2d9 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e361968 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x8e7894bd __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8e92922e device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x8e936697 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x8e9fc5d5 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x8eca81ce __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x8edbf9ae pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x8edf0618 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL vmlinux 0x8ee73928 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x8eedc3a7 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x8eee9554 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f142837 mtd_block_markbad +EXPORT_SYMBOL_GPL vmlinux 0x8f154a13 omap_pcm_platform_register +EXPORT_SYMBOL_GPL vmlinux 0x8f39be9f tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x8f41cd55 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x8f4aa0c6 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL vmlinux 0x8f50ab9d show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x8f5d72ca devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x8f6bf371 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f7f9b29 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x8f80ddce of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x8f8aba94 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x8f8bfc1f ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x8f9c2ac7 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x8fa27211 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x8fa7f03f sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x8fab368d iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x8fe34dd4 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x8fe86ca7 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x90124e57 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x90229f6e ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x90337a3d dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x90392ebc aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9047790a wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x9047c11a trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x904c1818 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x9061fb5d ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x9071461e snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL vmlinux 0x908d5a67 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90c06a00 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL vmlinux 0x90e7a657 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x90ecb289 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x91149384 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x911504ce regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x9124a071 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x9135a849 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x9147ecf8 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x916df8e7 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x917b49dd ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0x91808089 snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x919247e5 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x91a4a299 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x91aaac4d component_del +EXPORT_SYMBOL_GPL vmlinux 0x91b42963 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL vmlinux 0x91c5c765 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91dba046 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x91f787f6 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x921029b0 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x92285126 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL vmlinux 0x924b92df pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x92671c8e elv_register +EXPORT_SYMBOL_GPL vmlinux 0x926dae37 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0x926e8b93 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x92716a50 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x92917881 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x92b2e3ee xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92b78977 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x92fb3ae6 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x92fc6366 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x93048961 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL vmlinux 0x93193aa9 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x931a28d8 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x931f4d25 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x93236ca8 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x932aedf2 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x9342d34c fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x9362ce67 amba_apb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x9375cc91 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9378465a wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x93787cc2 ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x9397211c device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x93ae08c8 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x93b88d53 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x93d4b36c amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x93d94aaf fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x93e67fe8 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x93f07ce6 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x93f4635e crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x94143b94 qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0x941b9b40 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x943350d9 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x943c405c pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0x944cac16 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x9453b0cc fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x945e3f9c alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x945e90e9 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL vmlinux 0x9472430f gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x94776f29 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x948210f6 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x948ce750 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x948edfbe dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x949334db cpdma_ctlr_start +EXPORT_SYMBOL_GPL vmlinux 0x94aaaa3c blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x94b68117 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x94ba7501 blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x94c08686 sdhci_set_bus_width +EXPORT_SYMBOL_GPL vmlinux 0x94cc61b6 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x94d0eae3 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x952b0f43 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x952bdc13 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x95520c05 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x95648148 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x9582d3a4 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x9586a6ed cpdma_chan_get_stats +EXPORT_SYMBOL_GPL vmlinux 0x95881131 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x958b2bec pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x959325a3 usb_add_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x9599f9a3 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x95a5fcb3 usb_ep_enable +EXPORT_SYMBOL_GPL vmlinux 0x95b0f52d pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95c50722 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x95c578a0 ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x95d1fa43 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x95e00f08 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x95ea6a28 netdev_default_l2upper_neigh_construct +EXPORT_SYMBOL_GPL vmlinux 0x95ee768a __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x96016229 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x960d2047 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x961a9447 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x96488770 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x964f10d6 hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x966d633e omap_dm_timer_disable +EXPORT_SYMBOL_GPL vmlinux 0x9688a74c dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x96919667 musb_readl +EXPORT_SYMBOL_GPL vmlinux 0x96c44477 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x96d6b07a ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x96e07c1c synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x96ffcd5f serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x970372c9 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x97128a33 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x973993bf mtd_block_isbad +EXPORT_SYMBOL_GPL vmlinux 0x973f8571 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x974f8f2f md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x9754a9c2 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x97570342 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x976284e4 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x9763bad5 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x978bf0e1 snd_soc_read +EXPORT_SYMBOL_GPL vmlinux 0x97affe5f ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x97d5a1df pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e06add gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x97f8ef7d pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x98009bdc regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x98129e3c dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x981db60d blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9833c7f3 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x983e1665 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x988939c8 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x988e3590 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x98bc2a61 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x98c9f584 klist_init +EXPORT_SYMBOL_GPL vmlinux 0x98eb7252 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcc072 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x99169f2d unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x99209cbe ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x992bf6cc __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x992bf857 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x99324d1a spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x993cfa5c iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x99463605 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x9955a327 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x99a38809 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x99b30fce device_move +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x9a0b2234 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a125055 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x9a140bf2 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x9a1d0239 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL vmlinux 0x9a250be2 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x9a347be4 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x9a4020e4 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x9a4eb255 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x9a69bbf7 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x9a6c2455 sdhci_send_command +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9aa9f898 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x9abd805d usb_gadget_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ad56d2d __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x9ad96ef5 pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x9ae18425 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x9ae9e8a1 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af5c136 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x9afed2f7 cpsw_ale_control_get +EXPORT_SYMBOL_GPL vmlinux 0x9b054196 cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL vmlinux 0x9b16c2a9 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x9b535250 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x9b8d5078 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x9bd2a52c call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x9bd8a56a pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x9be6af8c tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c013e52 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x9c2db75a pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x9c2dc6c2 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x9c3e5b59 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9c48cfde iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x9c735229 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x9c7e5f83 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x9c862d06 of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0x9c96111c ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x9cae567e serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x9cb16310 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cc947d8 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x9cdc9867 cpdma_ctlr_stop +EXPORT_SYMBOL_GPL vmlinux 0x9cf9ff89 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x9cfe18c2 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x9cff0115 usb_gadget_set_state +EXPORT_SYMBOL_GPL vmlinux 0x9d12b7a5 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x9d2e526e i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x9d47cb84 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x9d48d1d1 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x9d6a3464 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x9d6ce2c8 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x9d7fb20d ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9d88c9c6 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x9d91191f of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0x9d9d5579 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x9da7d60f snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x9db042ba spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9dc153b3 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x9dc39c5d rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x9dd0009a ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x9dd2c827 arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0x9dd89798 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x9df4ec9c pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e4960d9 sdhci_set_clock +EXPORT_SYMBOL_GPL vmlinux 0x9e5cf7ec ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x9e6145a0 omap_get_plat_info +EXPORT_SYMBOL_GPL vmlinux 0x9e6a05ad register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x9e7e15f4 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x9e805518 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x9ea1b362 securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x9ea556f8 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9ebad5ed crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ed98c22 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x9ee81b58 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x9eefb3fb ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x9ef8f846 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x9f149e90 vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9f16c815 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x9f1dcc3e led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x9f212dd6 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x9f44b8f1 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x9f594a2a wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x9f5d375c devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x9f5d46f4 get_empty_filp +EXPORT_SYMBOL_GPL vmlinux 0x9f7c71c9 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x9f8f210c con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x9f954fa3 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x9fa26be7 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x9fc0a101 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd11e3e serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0xa0145749 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xa01866b2 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xa025e19a omap_dm_timer_set_prescaler +EXPORT_SYMBOL_GPL vmlinux 0xa033df40 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xa043f0bb ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa062531a clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xa07ddc4d dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xa08234bc ping_close +EXPORT_SYMBOL_GPL vmlinux 0xa097f3c9 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0xa0adfc0f cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xa0baf0a5 cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0xa0c4f218 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xa0c4f3e5 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xa0e585aa snd_ac97_reset +EXPORT_SYMBOL_GPL vmlinux 0xa0ef94e8 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0xa0f1a0ec debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xa10aa1bd transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xa12e5fb4 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xa13e137a __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xa14a1817 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xa1599610 imx_pcm_dma_init +EXPORT_SYMBOL_GPL vmlinux 0xa171fb7b blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1a4f40f simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xa1b4cb73 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xa1b97b50 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xa1d33689 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xa1e7e587 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xa20a8478 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xa218268c __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa22802a2 xhci_mtk_sch_init +EXPORT_SYMBOL_GPL vmlinux 0xa22ef15a tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xa23f684b __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xa247f4d2 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xa248036a devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa26e6549 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xa27977d5 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL vmlinux 0xa2984b5c mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xa2a8500c of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0xa2b30289 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2bd25da tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0xa2c19d44 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xa2e74f30 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xa2e76438 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xa3000d6a fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0xa302113d usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xa30b26c9 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0xa31f8356 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xa320ce4a gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xa3221ae7 xts_crypt +EXPORT_SYMBOL_GPL vmlinux 0xa362cb53 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0xa368981b cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xa36bfa02 get_device +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a0ef80 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xa3a5a6d0 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3ca70f2 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xa3d1046e crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xa3d9a5ec raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3fff6a3 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xa404376a devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa40b55d6 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xa460f913 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa471009c usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa486446a __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xa4a30861 usb_ep_disable +EXPORT_SYMBOL_GPL vmlinux 0xa4b13163 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xa4b504d6 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa4bd10ac cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa4cc5bc0 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xa4cd7296 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xa4f0e842 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xa500a9a2 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0xa504e5c8 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xa5135c1f ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xa513f55b devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa528220d powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xa56d1c69 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa579ee20 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xa57c0d5d fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xa57d08d2 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xa592c8c7 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xa59e0d67 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xa5ac30a6 snd_soc_bytes_get +EXPORT_SYMBOL_GPL vmlinux 0xa5ce1425 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xa5e3f95d __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f8854a usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xa5f8df8c __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xa5f9dd8d usb_gadget_activate +EXPORT_SYMBOL_GPL vmlinux 0xa60838de fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xa6119659 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa627b876 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xa62957f0 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL vmlinux 0xa6334b62 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xa6437b48 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xa6696294 usb_ep_fifo_status +EXPORT_SYMBOL_GPL vmlinux 0xa68ab2c2 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xa69134de gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6b49919 hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0xa6b69c73 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6fb25c1 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xa6fc1dcd dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xa70d4308 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xa7167bf8 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xa71dce3a devres_find +EXPORT_SYMBOL_GPL vmlinux 0xa72a6838 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xa73ee9d2 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xa743bd1c __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xa748ab8a dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0xa75518e8 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xa761cad5 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xa76a9cf1 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0xa788ba8c of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xa7abdbbc cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL vmlinux 0xa7b0dd55 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xa7cdd8ca wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0xa7d8ea75 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xa7dc4001 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xa7dc7c93 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xa7e2849c pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xa7e73e78 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa80b06eb crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0xa814b601 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xa81b3ea8 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL vmlinux 0xa83d0bcc pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0xa843006d __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa8466102 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa86b3acb devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0xa88639ad sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xa8b00420 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa8b0f2ba pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8bc717e percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0xa8bda546 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xa8e48dde usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xa8e98132 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xa8eaa83a thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa9029876 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xa917c446 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xa91b5279 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xa91c90f7 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa938c2b1 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0xa94478d8 mv_mbus_dram_info_nooverlap +EXPORT_SYMBOL_GPL vmlinux 0xa992c0c4 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xa9a74060 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xa9aa1d7a usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xa9abdd0a max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xa9be6a05 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xa9c6ed0a device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xa9d07d2a __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xa9d15715 snd_soc_limit_volume +EXPORT_SYMBOL_GPL vmlinux 0xa9d9506f sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xa9e05660 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e59bf7 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xa9e97d88 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xa9f5096a tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xaa1b602c ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa44acff omap_tll_disable +EXPORT_SYMBOL_GPL vmlinux 0xaa4cb810 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xaa4e928b inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xaa61facd anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xaa6374bd of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0xaa651a82 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xaa9afb0e virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaaf7fc4 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xaab439cf of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0xaaccdbe1 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xaae52a5a usb_ep_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xaaebecc2 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xaaecf75d perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaaf07d2c console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xab05e515 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xab34e906 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xab47bcea sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xab4c9dac __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xab5b4994 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL vmlinux 0xab8d5af7 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0xab9247e0 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xabb103ec pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xabbbc466 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0xabbf42a4 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabcfa03b __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL vmlinux 0xabece2e4 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xac0548ea devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xac1c8c96 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0xac26e2ff __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xac330986 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0xac35e052 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xac53ca8f regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL vmlinux 0xac649125 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL vmlinux 0xac71b8f0 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0xac84ea7c dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xac98217b usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xacad7e09 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xacadf028 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xacb1aae3 phy_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xacc61083 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xacdea2f1 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xad3e1d22 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xad575436 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0xad623b77 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xad70c01b md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xad75958c flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xad7a3e41 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xad8cf817 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadbaec51 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadf3c350 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae214720 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xae33a69d ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xae44595e nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xae4e052e platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xae4ee916 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0xae5527b1 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xae578ed3 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xae63935f md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6e212d path_noexec +EXPORT_SYMBOL_GPL vmlinux 0xae76a336 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all +EXPORT_SYMBOL_GPL vmlinux 0xae8644b6 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xae9f9d59 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xaeace433 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xaec7ca92 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xaeca7963 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xaed3824a dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xaedf6239 dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xaee8556d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xaeea4bfc sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xaf02d3f2 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0xaf149bf7 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xaf18d666 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0xaf1ee6f1 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xaf3109e5 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf4c0419 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xaf5f7f21 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xaf7289ff da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xaf7a5c81 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0xaf7d557e init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xafc3d931 ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0xafc865e8 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL vmlinux 0xafe1f4c5 mtd_device_parse_register +EXPORT_SYMBOL_GPL vmlinux 0xaff0df6f platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xb005ffa8 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xb0128a78 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xb01775be __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xb01bcc39 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL vmlinux 0xb02f549e rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xb03635ba crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xb04d1f7b perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xb050f329 init_rs +EXPORT_SYMBOL_GPL vmlinux 0xb0533f9d fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xb0572d83 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xb069c7dd uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xb0720cba ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb082f88f gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xb0934a78 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb09532af user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xb0ab306c inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bd5667 clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xb0bd95f5 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xb0cb69f9 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xb0cc8db4 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xb0cd05b3 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0xb0dcd3d5 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL vmlinux 0xb1092c7f bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xb1146505 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0xb11625b9 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb11f3207 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xb125ceb2 cpdma_control_set +EXPORT_SYMBOL_GPL vmlinux 0xb12ecb70 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xb132455b spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb13ff348 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb1427c98 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xb153d3f7 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL vmlinux 0xb1595499 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xb1721c45 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1b07091 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1d066be unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xb1dbf04f cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e2bc23 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xb1ea493e sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2451d00 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xb24a35f1 snd_soc_dapm_free +EXPORT_SYMBOL_GPL vmlinux 0xb25c726d blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb2770f11 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xb27888e1 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xb27d0269 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xb27ecf10 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0xb281d7ed mtd_read +EXPORT_SYMBOL_GPL vmlinux 0xb28fc9ad dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xb2974450 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0xb298be83 clk_hw_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0xb2ab6d25 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xb2b92999 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0xb2bdef1f ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2e9ac1e iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xb2f9cd38 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xb3205763 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xb3261990 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xb3368a06 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xb33dad00 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xb3682796 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xb36e9fbf of_genpd_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xb36eb062 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xb37a8256 netdev_default_l2upper_neigh_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb37b26c6 clk_register +EXPORT_SYMBOL_GPL vmlinux 0xb3a4866a power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xb3cbe00c bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb3dae47e fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xb3dc1453 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0xb3e5296e __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xb3e64546 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xb3e81285 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xb3f14feb subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xb401b112 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xb40c6376 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb419420c irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0xb41d8832 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xb41f8c2b pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xb4214313 devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb434a34f ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xb4776778 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xb48fa198 security_mmap_file +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4cba8a2 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xb4cf0322 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb4d35fec usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xb4d56220 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4ed87b3 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0xb4f0ecdb debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xb4f5eab5 of_display_timings_exist +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb53c3c3a regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xb56479a0 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb565fb32 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xb5739cfe dev_pm_opp_get_suspend_opp +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb595c932 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5c1c6a1 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0xb5c81518 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xb5ec9d6c snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb60163e2 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xb607f02a __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xb612b8b2 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL vmlinux 0xb612fe16 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb6389b39 open_check_o_direct +EXPORT_SYMBOL_GPL vmlinux 0xb63abb18 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xb63c6f20 omap_dm_timer_set_source +EXPORT_SYMBOL_GPL vmlinux 0xb6438c95 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0xb645db72 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xb6490de2 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xb65bee90 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xb65fb028 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xb6663a33 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xb67e5549 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL vmlinux 0xb68a53bf fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xb68adea5 mtd_point +EXPORT_SYMBOL_GPL vmlinux 0xb68fc6dd nand_ooblayout_sp_ops +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6b83d8c hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xb6c7a5d2 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xb6e42ca4 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb7066a36 of_css +EXPORT_SYMBOL_GPL vmlinux 0xb70cdc9e spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0xb715a223 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL vmlinux 0xb71761fb crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb733dd2a dev_pm_opp_set_regulator +EXPORT_SYMBOL_GPL vmlinux 0xb7346381 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xb75275ff clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xb771e6b7 bL_switch_request_cb +EXPORT_SYMBOL_GPL vmlinux 0xb773be25 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xb77c8650 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0xb77cb0a8 cpdma_chan_submit +EXPORT_SYMBOL_GPL vmlinux 0xb79b9833 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xb79efbf8 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xb7a09f74 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xb7a2f46b spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0xb7a732e5 snd_soc_register_platform +EXPORT_SYMBOL_GPL vmlinux 0xb7b3f52e regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7f3bb20 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb82566eb omap_tll_enable +EXPORT_SYMBOL_GPL vmlinux 0xb8272950 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xb82dcd51 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0xb82e008d omap_dma_filter_fn +EXPORT_SYMBOL_GPL vmlinux 0xb82e4750 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xb8346aeb percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb86d867a regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb8752e4d __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb87d3a9b of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xb88268a6 cap_mmap_file +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb890ad3f of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xb8ca9a34 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d2c66a regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xb8e23ef7 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0xb8ef3b20 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xb9098e82 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xb92326e4 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xb936517d blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xb936bf70 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0xb9586910 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xb9775162 arm_iommu_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0xb97adc22 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xb9966664 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xb9aec914 ipv6_rcv_saddr_equal +EXPORT_SYMBOL_GPL vmlinux 0xb9b1fc42 sm501_modify_reg +EXPORT_SYMBOL_GPL vmlinux 0xb9b33c80 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xb9b79c96 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9bd31a3 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xb9c10b71 md_stop +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9c51ddd scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xb9cea16b rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9ded62c serial8250_em485_init +EXPORT_SYMBOL_GPL vmlinux 0xb9e52954 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xb9e87b94 bL_switcher_trace_trigger +EXPORT_SYMBOL_GPL vmlinux 0xb9eda1bb i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xba02bb9a dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xba1073aa rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xba1ff770 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0xba205a8c phy_create +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba36bc3b user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xba38ce10 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xba415a56 device_register +EXPORT_SYMBOL_GPL vmlinux 0xba6ea9b3 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xba9ae6f2 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbac69863 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xbadeccb5 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xbaf2d214 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb11cfba klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xbb4c7570 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbb4d7472 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xbb562223 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xbb5e7db8 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xbb6a136b cpdma_chan_get_rx_buf_num +EXPORT_SYMBOL_GPL vmlinux 0xbb80d24b public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xbb8377d4 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbb83dbb0 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xbb8a8913 ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0xbbc78c0c serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xbbfbe54d of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0xbc056443 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL vmlinux 0xbc1610b0 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xbc181988 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xbc52a0d2 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xbc689a87 arm_iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xbc6aa1a5 snd_soc_remove_platform +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc6f317e tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xbc7c6fa3 amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbc895527 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xbc9514e1 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xbc95f28a sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xbcaa5930 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcbaa80a __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcd19507 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce25100 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xbce5fe58 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcf89ab6 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xbd031cbe hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd4b318f wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xbd4c7d8b pci_ioremap_io +EXPORT_SYMBOL_GPL vmlinux 0xbd4d7293 ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd748d20 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL vmlinux 0xbd7d435a devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xbd9aeb82 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbda65242 security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0xbdcb88a2 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbdf512de free_bch +EXPORT_SYMBOL_GPL vmlinux 0xbdf5c2eb get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xbe00caac snd_soc_platform_read +EXPORT_SYMBOL_GPL vmlinux 0xbe0867fe device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xbe16e266 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe1b529d rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xbe333663 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xbe368b3e blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0xbe503351 omap_dm_timer_write_status +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe9178e9 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xbe965c38 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbec0c3e9 cci_ace_get_port +EXPORT_SYMBOL_GPL vmlinux 0xbecfd212 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL vmlinux 0xbed7d703 usb_gadget_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xbedae555 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbef20a7f kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xbefd7404 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0xbeff4288 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf08c115 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0xbf0aa237 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xbf36847e regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbf3b3033 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xbf5f3095 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0xbf5f926c stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0xbf7ed68b of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xbf8524dc class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xbf8bc4db cpsw_phy_sel +EXPORT_SYMBOL_GPL vmlinux 0xbf905663 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbf90a966 ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xbfad5b69 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfbcddf8 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbfe4a08d pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfe603f4 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 +EXPORT_SYMBOL_GPL vmlinux 0xc010889d pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xc01ea36f pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc03a654b memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0xc0547b38 omap_dm_timer_write_counter +EXPORT_SYMBOL_GPL vmlinux 0xc063f307 mtd_block_isreserved +EXPORT_SYMBOL_GPL vmlinux 0xc081c246 bL_switcher_put_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0c3468b sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xc0d0eeeb rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc10661d4 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xc10f1501 ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xc1156674 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xc1159dcb sdhci_reset +EXPORT_SYMBOL_GPL vmlinux 0xc117605d pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xc14f32a3 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc15320c9 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0xc15c0f67 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xc1675c2c crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc178880e of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc1a88493 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xc1afb84b omap_dm_timer_set_pwm +EXPORT_SYMBOL_GPL vmlinux 0xc1b6c6b5 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xc1e15e21 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xc1f23b02 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xc1f34b09 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xc1fd00e5 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc1fd5489 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xc21b3cca devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc22cc1aa sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xc23a7494 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL vmlinux 0xc254658b scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xc25c5a8a ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0xc267b00a clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xc2794fa8 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xc27f5892 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc28f4b85 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xc29543fb bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc2a33d7b snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL vmlinux 0xc2b8be54 clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xc2ce8ba1 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL vmlinux 0xc2f416d2 shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0xc30ad4b6 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc30b3d89 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xc31ae928 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc3744963 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xc385cb58 perf_num_counters +EXPORT_SYMBOL_GPL vmlinux 0xc3882013 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xc390494d usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xc397a5d3 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0xc3a95f4b pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xc3b93bba klist_next +EXPORT_SYMBOL_GPL vmlinux 0xc3ba4032 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xc3cef55e sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xc3da3f77 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xc3de4616 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xc404a1f9 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xc4155c9b ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xc41e0178 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xc4206180 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc429510d pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xc42f7fed device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xc43fc7bd bdev_dax_supported +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc4766355 of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4947a62 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc495ac60 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xc49ea4d7 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xc4ab56fd regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xc4b02f28 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xc4cd12d2 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc5083b7e crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xc51d5aa3 qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0xc53d2fc1 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0xc53d8474 mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0xc53fe0e0 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc543a026 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xc5502990 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc553cac6 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0xc5556d84 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xc55fbf6b fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0xc5611af0 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xc56177eb ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0xc569b98a virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5878314 blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0xc593cd83 mtd_lock +EXPORT_SYMBOL_GPL vmlinux 0xc59b245a fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xc5cdc15f irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xc5d31de5 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xc5d5513e cpdma_chan_process +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5e0dd66 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0xc5edd57c dev_pm_opp_put_regulator +EXPORT_SYMBOL_GPL vmlinux 0xc60ac4f1 gpmc_omap_get_nand_ops +EXPORT_SYMBOL_GPL vmlinux 0xc60be1d4 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc6236164 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc6413628 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL vmlinux 0xc649229a clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc662459f device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0xc66a9ff8 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc6735b3f percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xc685c037 cpdma_check_free_tx_desc +EXPORT_SYMBOL_GPL vmlinux 0xc68669ed of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xc690adc8 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xc690c948 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc69c67be ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xc6a16c10 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6b6cbab nand_release +EXPORT_SYMBOL_GPL vmlinux 0xc6ccc12c clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xc6e5d713 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc73154cb pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0xc742a1c0 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xc749ac0c phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xc77ded6c clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xc7918bce pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xc79acbbc ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0xc79c992a subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7c34011 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0xc7c56bbf phy_get +EXPORT_SYMBOL_GPL vmlinux 0xc7dcba32 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7fa5cf1 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc80fb09a unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xc820e21d ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL vmlinux 0xc82f8322 cpsw_ale_create +EXPORT_SYMBOL_GPL vmlinux 0xc839e174 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0xc8412076 of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xc857bc33 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xc875ad18 sm501_unit_power +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xc897bfb6 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0xc89926ca ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8b3fa75 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xc8ce358e regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8f0dfc1 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xc901783f ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc91719e5 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xc93cf869 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0xc9437bda ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc9812d7c blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0xc981b749 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0xc99b206f regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xc9b083d5 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xc9ba5695 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc9c60a4a percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9ef257b sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xc9fb27e1 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xca06a383 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0xca085fe8 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xca0a8fac vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xca31f300 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xca3ab270 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xca657652 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xca79bb0e snd_soc_debugfs_root +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca8c09ce device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xca90f9b6 loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0xca93ad6c pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcaae960b __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcab20d6e rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcae83801 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL vmlinux 0xcae87bb1 regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb16eda3 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0xcb2b35f0 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xcb2c1bd7 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL vmlinux 0xcb3b3908 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb5d5977 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xcb63d7da ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xcb670105 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xcb89d9eb crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xcb9aee79 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xcb9ba650 omap_dm_timer_set_match +EXPORT_SYMBOL_GPL vmlinux 0xcba73a23 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xcba8cbc5 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0xcbb16996 mtd_is_partition +EXPORT_SYMBOL_GPL vmlinux 0xcbcca257 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbe80406 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbf4a456 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xcc0ca8fc vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xcc1ec1ac snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL vmlinux 0xcc247c47 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xcc2730e2 usb_gadget_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xcc2a309f sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xcc6997c8 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc8ad92b blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xcc939ce7 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xccc5ad2d pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd3d161 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xccde23ba led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0xcce1c306 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xccf53b0f md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xcd060162 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0xcd145ff5 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcd40ef07 mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xcd668126 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xcd84c01e usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL vmlinux 0xcd8de0c0 virtio_config_changed +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 0xcdae2b3c crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdbd61de fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdce6e8e swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0xcdd44f4d __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xcdef2503 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xce0615ea dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xce2118bf xhci_mtk_add_ep_quirk +EXPORT_SYMBOL_GPL vmlinux 0xce24e5a0 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xce2c459a cs47l24_irq +EXPORT_SYMBOL_GPL vmlinux 0xce2f4b6a regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xce5ee079 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce72cb27 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0xce8ae960 arm_iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xce8e47f8 snd_soc_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xcea1df95 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xcea461c5 do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0xceaa8dbf of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xcec1378f regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xcedc110a crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee7d22e gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xceebe094 tegra_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0xcef49d9e rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xcf1377f6 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xcf168634 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xcf1a667e fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xcf2050c9 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xcf44fbe5 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf593c0f __of_genpd_xlate_simple +EXPORT_SYMBOL_GPL vmlinux 0xcf64856a pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xcf6544c0 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xcf670eb1 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xcf7a867b task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xcf8b3868 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xcf8e9a92 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xcfa75c77 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfb7ef79 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcfc520de sdhci_pltfm_init +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfc76b5c __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xcfc9cf89 debugfs_use_file_finish +EXPORT_SYMBOL_GPL vmlinux 0xcfe97360 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xd001e830 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0xd02574eb request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xd033c9fd unregister_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd043af6e rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xd06261a5 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xd063a2fc pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd07f7285 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xd082be26 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xd0947cf0 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xd0a17475 snd_soc_platform_write +EXPORT_SYMBOL_GPL vmlinux 0xd0a4eb38 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xd0ae84c1 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xd0b55674 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0ca77a5 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xd1039550 fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0xd10bf486 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0xd11be403 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xd164d962 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd1726508 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xd1729bc9 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xd1822f0b cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd1882ecd ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xd1b5d2e3 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xd1c721c9 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0xd1e10989 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xd1f0a011 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1f39957 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xd200cdbd regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd25ecdba crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xd266c0aa regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd27d0302 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xd288f9b2 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd29b1c4a fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd2d3dd18 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xd2da5fda regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xd2de7533 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2ebbfea single_release_net +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd306a4fc ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xd31caa8a pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd3684e48 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0xd37cbc34 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xd3ac5409 snd_soc_info_volsw +EXPORT_SYMBOL_GPL vmlinux 0xd3b076d1 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0xd3c01690 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xd3c1d4ea wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xd3e2e704 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xd3eb5809 of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0xd401336e cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd422a00d pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd4272471 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd43cdad6 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xd43fb2a7 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd44c2f38 cci_disable_port_by_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd4570ad4 tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xd4642e0d inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xd4668e4a led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0xd497babf snd_soc_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0xd4a91a4b file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xd4b156b6 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c7f76a usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xd4d0c6af devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xd4e02938 of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xd4ed8d04 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xd4ee01c8 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0xd502c599 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xd509dbde snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL vmlinux 0xd50ec4f3 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0xd51666bc gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0xd51d690e snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0xd528e6cd crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xd534924a ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xd53da4e3 omap_dm_timers_active +EXPORT_SYMBOL_GPL vmlinux 0xd5546d74 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xd5547ecd bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd55bd0b6 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0xd5abd9b5 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xd5ad261a snd_soc_card_jack_new +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5dfb32c ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xd5fbf2a6 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd616d633 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xd61cd56d usb_ep_fifo_flush +EXPORT_SYMBOL_GPL vmlinux 0xd6343c9f trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xd63ce82a __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6792417 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xd6d07784 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xd700c183 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd711f106 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xd7194db1 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL vmlinux 0xd71a8cd5 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xd723ac7f usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xd7634a16 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd763ef2e fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd77915e4 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd785bf0e dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xd788e40f mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL vmlinux 0xd78bdd6d snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL vmlinux 0xd79dc5ad devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xd7b9da00 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xd7bc4e1d omap_dm_timer_start +EXPORT_SYMBOL_GPL vmlinux 0xd7c7eebf pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7e45ca5 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xd7eaf086 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xd7ee0a17 mtd_del_partition +EXPORT_SYMBOL_GPL vmlinux 0xd7f3df99 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820769f bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd8242cfd sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0xd8373f5a platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xd8382fe0 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xd840af17 mtd_is_locked +EXPORT_SYMBOL_GPL vmlinux 0xd845f28c pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xd84ba8e9 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xd8512914 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xd86d014d component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd893db69 clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xd8aae313 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xd8b82e4f ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0xd8d3f088 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xd8dd1a41 usb_del_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0xd8e2d0ee dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0xd8e9c636 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xd8f9177b ahci_shost_attrs +EXPORT_SYMBOL_GPL vmlinux 0xd91f4131 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xd923caa0 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xd9270745 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL vmlinux 0xd93f0e33 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94402e8 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0xd956876b srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xd9598314 dapm_regulator_event +EXPORT_SYMBOL_GPL vmlinux 0xd9654ee1 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd977c8c7 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL vmlinux 0xd998d207 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd9a6136e crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xd9dacae6 snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL vmlinux 0xd9dc65ea vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9efb711 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xd9f0256b snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL vmlinux 0xd9f1c40b fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xd9f3e65f __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xd9fff2a9 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xda0e671f fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda1129c8 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xda41f026 cpsw_ale_control_set +EXPORT_SYMBOL_GPL vmlinux 0xda4987ee ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xda54017f skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xda683204 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xda953e44 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xda9dd468 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xdaa1b631 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdafd5f07 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xdb1b5999 devres_get +EXPORT_SYMBOL_GPL vmlinux 0xdb248f91 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xdb390c5c sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb4f8103 usb_ep_set_halt +EXPORT_SYMBOL_GPL vmlinux 0xdb6b805a usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xdb745b3c deregister_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0xdb7839a9 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb941955 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbb73f9e snd_soc_platform_trigger +EXPORT_SYMBOL_GPL vmlinux 0xdbc31576 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0xdbe77ead i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xdbea2820 exynos_mipi_dsi_register_lcd_driver +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbfb160d dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xdc461430 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xdc5f46a5 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xdc7a819f sdhci_remove_host +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcaa79d8 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xdcbf47d8 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xdcc359c1 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0xdccb3084 devres_add +EXPORT_SYMBOL_GPL vmlinux 0xdcd6bb4f regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdd0120e8 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd1d2cc8 otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd3ca247 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0xdd3ddd99 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xdd5a355a usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xdd63ab99 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xdd6c3392 of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0xdd8200c0 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xdda0b73a fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xddbb29ae crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xddbdd016 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddd6a7be devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdde37fd8 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xdde7f299 xhci_mtk_sch_exit +EXPORT_SYMBOL_GPL vmlinux 0xde25f88c __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xde35eb9d usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde47133a device_del +EXPORT_SYMBOL_GPL vmlinux 0xde60e999 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xde621477 tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xde644b17 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0xde6b3480 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xde6fcf07 l3mdev_get_saddr6 +EXPORT_SYMBOL_GPL vmlinux 0xdea7d7b8 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xdeaae05a snd_soc_unregister_card +EXPORT_SYMBOL_GPL vmlinux 0xdec0deee wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdeda1b65 sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0xdf051613 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xdf0ea3fd device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf11c616 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xdf1f4a64 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0xdf255dcf memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf35df6f inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xdf428624 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xdf7d4607 spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0xdfa88b55 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xdfb86b85 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xdfc6500a blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfcdb1cc device_rename +EXPORT_SYMBOL_GPL vmlinux 0xdfded8fa bpf_prog_get_type +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe025db1b snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe053664d pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xe057fbd5 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xe05c1a4f stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xe05c5c53 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xe06e4157 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe06fe4e5 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe07ca631 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xe0912ffa usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xe0a53f60 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0ed079c sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xe126553f __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xe13fed70 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xe16639b9 __module_address +EXPORT_SYMBOL_GPL vmlinux 0xe172fcd8 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17f3aa7 devm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xe1871958 omap_dm_timer_free +EXPORT_SYMBOL_GPL vmlinux 0xe187523e tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0xe18e120b find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xe1abe2b4 ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0xe1ac8da3 usb_gadget_giveback_request +EXPORT_SYMBOL_GPL vmlinux 0xe1c6d90d irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xe1cd8854 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xe1d67179 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xe1d67cc8 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xe1e9155e devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1efa55d pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xe1fd83ac usb_ep_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xe20c19fa ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xe215a2a3 __sdhci_read_caps +EXPORT_SYMBOL_GPL vmlinux 0xe2215193 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xe23736a9 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0xe23c0c42 mvebu_mbus_get_dram_win_info +EXPORT_SYMBOL_GPL vmlinux 0xe245dafc __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xe253de4d pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0xe25efe61 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xe267a19b usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xe27753b8 __get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe28b5e5d sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xe2990a20 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xe2de1b6c clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe308b075 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0xe31d46d9 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xe3707fc5 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xe3767c85 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL vmlinux 0xe382eafe of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xe3ba5498 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xe3c3aead usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xe3ceda83 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL vmlinux 0xe3d7ccf9 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xe3e5508d fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xe3e7bef0 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0xe3f039e5 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xe3f953b1 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe40c110f soc_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0xe40e5d7d rcu_exp_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0xe42e1f70 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe43d22ec param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xe43f3dd3 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xe4528ac3 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0xe45e9398 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xe45eae8f snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe46e08f6 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xe47ccef0 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xe48a1618 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe48de60a driver_find +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4af1db2 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xe4c22565 cpdma_chan_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe4c268a2 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xe4dfff34 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe4e3493a devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4f770b6 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0xe505bcb7 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe5168c86 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xe52ccf63 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xe53addf6 dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0xe54083cf wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xe55c9b09 max_gen_clk_probe +EXPORT_SYMBOL_GPL vmlinux 0xe5651228 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xe5688d15 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xe5747e9f do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe59267b3 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xe59b9b86 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xe5b81c2d crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xe5c7f9f9 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xe5dbe83e netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xe5ea7581 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xe5fec456 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xe608eab7 of_fixed_factor_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0xe609a3f8 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xe61120ed subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xe61f71a6 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xe639985b debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xe64acc28 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xe651ee6f rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe6582b7e thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0xe65ded57 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xe6601f35 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xe6653e81 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xe66b5945 clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe67150cd devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe69cf323 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xe6ac4626 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xe6b89432 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6f0304e usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xe7316f01 yield_to +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe7520c1a ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xe755890a dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0xe75c65c5 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe76d1cec __of_genpd_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xe76ded1e snd_soc_jack_report +EXPORT_SYMBOL_GPL vmlinux 0xe7786852 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe789fa1e ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xe794cba4 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xe79a126c mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xe7c94e8a register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xe7d2cd06 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xe7d5fc93 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xe7ecd5f5 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe80e0d55 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xe815dfcd usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe81ccc39 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xe8307c51 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xe83ad07e sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe855110b __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xe85f5ad4 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe87f11d8 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xe899b1a1 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xe89b43ab get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xe8aa67ec pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xe8f14a3f cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xe903c26b ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xe92bef5f split_page +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9474bde dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xe9505ef3 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe997a768 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xe997bd71 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xe9aff518 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xe9ba4093 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xe9c5fb6e led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d26bc5 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xe9d3ad64 cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL vmlinux 0xe9e949aa regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0xe9f09c59 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea1bb291 bL_switcher_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea4b307a to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xea4c3c37 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea7de1ae devm_snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0xea88c1ec devm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea8fd4b0 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xeab37b4f wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xeac99d50 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xeace5380 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xeafccd03 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xeb02231b __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xeb04baf7 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xeb04f009 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xeb08fe62 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xeb23a12f vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0xeb2a7f78 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xeb3618b1 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xeb486ef2 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xeb5420ce single_open_net +EXPORT_SYMBOL_GPL vmlinux 0xeb6f7824 cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL vmlinux 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL vmlinux 0xeb8617f6 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xeb8daed0 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xeb97b277 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xeba38418 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xeba5e949 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xebab2af4 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0xebb7e578 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0xebbe1622 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xebbe35ce hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xebcd1de2 clk_hw_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebd83793 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xebdcdc54 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xebe6eb90 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xec165c12 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xec17af99 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec1f2478 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec31a47b ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xec48fe3b usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xec6d4037 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xec709a14 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xec900837 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xecb0ae77 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xecbe029c usb_of_get_child_node +EXPORT_SYMBOL_GPL vmlinux 0xecc5ad2f alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xecefc9b0 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0xecfd8761 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xed01d096 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0xed08c6af mtd_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xed149e23 devres_release +EXPORT_SYMBOL_GPL vmlinux 0xed38c848 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xed3b44df max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xed495240 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xed4bcaac gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xed5e4bca pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0xed62615e tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xed771f2e vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xeda5e8b0 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xedb4770d blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xedc2a8d4 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0xedc585a9 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL vmlinux 0xede25260 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xee10a473 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xee1a3010 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xee25c335 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xee3db193 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xee434d39 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xee5829aa mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee8d7539 cpdma_chan_start +EXPORT_SYMBOL_GPL vmlinux 0xee8dbfd4 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xee9438b0 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xee963ae2 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xee9a7510 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xee9b8e51 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xee9de857 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0xeea0973e usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xeeb50819 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xeeb8e68f tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xeebb52a8 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xeebf3e60 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xeec18bf7 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xeede26dd __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xeedec94a get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run +EXPORT_SYMBOL_GPL vmlinux 0xeef55881 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL vmlinux 0xef383663 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xef3fdacc crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef66075c usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0xef6be92b snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xef924f97 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xef96237e pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xef9bbbba devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xef9ecd5f scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa856d4 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xefc8eb33 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xefccd5c2 snd_soc_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0xefcf2997 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xeff2afb9 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xeff78b19 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xf0029381 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xf003b96a dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0xf015997b cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xf021b70c mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xf03919a7 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf040040b spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0xf046b38e devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xf0646270 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf0887472 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xf0af9a63 omap_dm_timer_set_int_disable +EXPORT_SYMBOL_GPL vmlinux 0xf0e93696 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf0eeed0c phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf114eec5 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xf128c441 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0xf12caf22 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xf14735bf vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xf14fb175 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0xf1754c3d clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xf17ea1fb pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1859e8c ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0xf1a7ae6d get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1bc403c irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xf1e5dfe0 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xf1ea3013 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xf1eea2e5 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf1f16c9e unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xf1f510c4 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xf2039699 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xf20cf999 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf22b8107 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xf266008b driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf2828c8b gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xf282b2ad sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xf283032c led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0xf28f0043 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0xf2ac8533 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2d05cff sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL vmlinux 0xf2dd0d35 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0xf2dde16b snd_ctl_activate_id +EXPORT_SYMBOL_GPL vmlinux 0xf2e8b691 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xf2ebd18b class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xf2f2ea0c vfs_writef +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf335598f ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xf34c38e6 snd_device_disconnect +EXPORT_SYMBOL_GPL vmlinux 0xf3696565 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf3785faf perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf39fb20f blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3c74949 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf3d5b367 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xf3dd3cf5 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf3ec8d49 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3fcad8f raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0xf413bcdd sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xf452c461 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL vmlinux 0xf4658960 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xf467ec23 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xf4705f7f stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xf487b806 cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xf48ceebd net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf48f96c1 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4b688b9 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0xf4c8a079 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0xf4d97a53 mtd_write +EXPORT_SYMBOL_GPL vmlinux 0xf4d99de8 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xf4e7a16c ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xf4e857b0 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xf4f6ca4b imx_pcm_fiq_exit +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf52cbe87 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xf5466488 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf5762db7 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5baf43c mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL vmlinux 0xf5d05c33 md_run +EXPORT_SYMBOL_GPL vmlinux 0xf5e295db sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xf5feda9d mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xf618e5ad led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xf61baa65 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf63597c2 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xf656fc88 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xf667c497 of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0xf6b3e460 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6e9d4c2 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0xf6ed29dc put_device +EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks +EXPORT_SYMBOL_GPL vmlinux 0xf6f60fe9 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0xf6fd4c27 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xf720ec6c usb_gadget_map_request +EXPORT_SYMBOL_GPL vmlinux 0xf728ba08 pm_genpd_syscore_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xf745ead7 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xf76b0a59 read_current_timer +EXPORT_SYMBOL_GPL vmlinux 0xf76e964d sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0xf78604f5 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xf79ede5f crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xf7a0bc35 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf7bf328e bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xf7dba9ca crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xf7ec837b kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xf805d1e7 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xf807a40f event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xf80de808 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf81be43b platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xf82185ad ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf82ca4ad regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf8357e97 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xf846506f irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf874f8f6 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf88cabc4 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xf8a81bce udp4_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0xf8afe554 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf90924b4 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xf918db23 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0xf91b73ce crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf9380dcc cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xf944d85b usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xf94e8cf1 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xf951ea13 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf9727b5d tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xf9904ba6 pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a96db4 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0xf9b77af7 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xf9ba2652 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9f0af63 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xf9f80f98 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xfa020621 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0xfa04614d devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa33c11f wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xfa52576a __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xfa53dd99 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xfa5960c6 snd_device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xfa5cb988 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xfa5df2a3 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xfa9322d5 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xfa95cb10 __class_register +EXPORT_SYMBOL_GPL vmlinux 0xfac51bf7 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL_GPL vmlinux 0xfaf43ca7 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xfaf71052 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xfb00aaa6 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xfb106772 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb8738de add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0xfb8f7fdc tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xfb94f014 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xfba48235 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xfbb438b1 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbd28b7f powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xfbd36675 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xfbd9720e snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc11c98a posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xfc1f8a74 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0xfc3973d8 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xfc662e0e debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xfc947304 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xfc95943a enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xfca19b9b shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xfce32a86 mtd_table_mutex +EXPORT_SYMBOL_GPL vmlinux 0xfce33989 security_path_link +EXPORT_SYMBOL_GPL vmlinux 0xfcf0e79c ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xfd35fdbd mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0xfd41c7ce btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xfd46113c mtd_add_partition +EXPORT_SYMBOL_GPL vmlinux 0xfd4abd4e dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0xfd596e23 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xfd62bc08 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xfd73c5f4 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xfd7b423e mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfd8a8da6 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xfd9d33b7 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xfd9e1608 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xfdb8c76b ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xfdcf6c15 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xfde1a33e klist_prev +EXPORT_SYMBOL_GPL vmlinux 0xfdef2142 snd_soc_bytes_put +EXPORT_SYMBOL_GPL vmlinux 0xfe009c06 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xfe15392f rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xfe36f3e9 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xfe50b347 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xfe6459b7 snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0xfe717fe7 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0xfe7fbc8a of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfec21745 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xfed0202d sdhci_resume_host +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfeef6616 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xfef0cde4 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xfef382f0 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xfefd727d ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff085a3c use_mm +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff35170f bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xff3983ed of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xff3dd0b1 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xff413693 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xff507800 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xff5818dc usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff6a30ae spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xff73a68a kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xffa79602 snd_soc_add_dai_link +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffbe44b6 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0xffc8ff62 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xffd6da42 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xffe17893 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xfff0a7ce sysfs_update_group --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/armhf/generic-lpae +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/armhf/generic-lpae @@ -0,0 +1,19634 @@ +EXPORT_SYMBOL arch/arm/crypto/aes-arm 0x276b2f72 private_AES_set_encrypt_key +EXPORT_SYMBOL arch/arm/crypto/aes-arm 0x6c62e582 AES_decrypt +EXPORT_SYMBOL arch/arm/crypto/aes-arm 0xc30fcbed AES_encrypt +EXPORT_SYMBOL arch/arm/crypto/aes-arm 0xcf024ae9 private_AES_set_decrypt_key +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x54d2cde7 crypto_sha256_arm_update +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x57198f3a crypto_sha256_arm_finup +EXPORT_SYMBOL arch/arm/lib/xor-neon 0x0f051164 xor_block_neon_inner +EXPORT_SYMBOL crypto/mcryptd 0xe6c709de mcryptd_arm_flusher +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0xab30f3bd suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x2bf82ca8 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0x4d0755bf 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 0x24f88f9e pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x28b29fef paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x3d9941ea pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x5c9029e4 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x5d2ed7d6 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x64888156 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x650d3317 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x6c285718 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x93bee676 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xb51439a5 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xe1d35a2f pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0xecbe4ac8 pi_release +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x8147e858 btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4dde7206 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4fae9188 ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x97f89a39 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xdb0d09ba ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf057ceec ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfbd5f83e ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x981e45c3 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xb4906dc1 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xcd0a44a1 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xdf19ff58 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x046a82e5 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x699f8ac5 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xd0d4d5c8 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x010bbe8c dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x271b89f9 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xbc16d200 dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xc5a709c6 dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xdada1404 dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xf7b7ebeb dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/pl330 0x49994678 pl330_filter +EXPORT_SYMBOL drivers/edac/edac_core 0x0fe24965 edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0530237b fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2d583699 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4439f277 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x474ff03e fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x49251a3e fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x49428ed4 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4f1a109a fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x557ad2d4 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x83b28dc1 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x84531119 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8e76aebf fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa317ac4f fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaf4e431c fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaf958455 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb369d11b fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb5da96ce fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc3265b59 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc66bb2dc fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd388d11b fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd5475036 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdcff3e46 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe484ed68 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xeb01978a fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf8f6e361 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfa88b721 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfd7bd99c fw_iso_context_destroy +EXPORT_SYMBOL drivers/fmc/fmc 0x162761b1 fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0x2815af23 fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x4ed12ca1 fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x5ca4c065 fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x5f54b9df fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0x608a6d14 fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0x7e0152ac fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0x9811c42e fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xd33aee5a fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0xd518524f fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0xfd75dd81 fmc_device_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01ef4e3a drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0269d5bd drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x028356dc drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07334d0f drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07a53909 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ad56c5e drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e4fcd05 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ee13b5c drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ff2266a drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1061825e drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x131c90bf drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1486a8a8 drm_mode_object_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17174ce1 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x192888e3 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19889297 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x199ae28f drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b183f24 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bb0c49e drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c3a7a0b drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f2d33dc drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20396716 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21b049c8 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21c47e88 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x220edffa drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22c1d7a0 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22cb3e42 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x230da25d drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x243cc47c drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2480b5c3 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24de41b4 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2689dbe0 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x274fe552 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x290dd626 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29c5303c drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b0ed9f4 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bc6d429 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c93709f drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e697a51 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ee7a1a7 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f795292 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30093937 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31ea1679 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35d17866 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x366d2693 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3892e749 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3998cc44 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a9218aa drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e76a5 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b43a321 drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b7a8f6b drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bd9977e drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d4be4dd drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d524711 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dbeaf34 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e861796 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fc992af drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x403fb058 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41a4c5fd drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42324095 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x427e5e5f drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42bfd8b4 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42f3a2b7 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4316fdc6 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43545caa drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44231b93 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x442375f8 drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46131dd2 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46931072 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46f43635 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47ee2fb7 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4830cc08 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x493b9253 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cef2c11 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e045f20 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e5e3c89 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f097de6 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5013b9c7 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5184ce2f drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x529690f8 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52c798d3 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5376e567 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x538840d5 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54541cfc drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54b90a0d drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54caabab drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56a77362 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x583a6d66 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x585dc82a drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58a5352c drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58b4ef4f drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58ce178c drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x599d9808 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59c56877 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b8e4df8 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5be1b1ef drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c278b0c drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c8ce24e drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e26c6fe drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ef052de drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ff49ba4 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61b2b5a1 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x634ccaba drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6359e5f5 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63da6e87 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65cdbead drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66abe264 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6754f2d7 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x680ae68c drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x688ee960 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b05c22f drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b2ba005 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cf775f8 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e4d5a35 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fd44642 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71087f33 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73b24ecc drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73b6a185 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x759be174 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7725e805 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77ce54e2 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x784dd3c1 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7881a44d drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78ddd21c drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x792da838 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b8d4a1b drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b9fbf85 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c7d6a32 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d3e4b58 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d481da0 drm_gem_object_unreference_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d54cbac drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d5a1683 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e2e385f drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f0d7899 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x812756f6 drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84935e05 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84cd2424 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85837b05 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86fbc12c drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x881e5451 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88f391c7 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89a78235 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ae84ad6 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8aece9f4 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b04ecf6 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b1da55e drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c9aacc1 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ca2a234 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d370b47 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d51da17 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d7005f2 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d8e23ac drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f557a3c drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f592882 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91411c04 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x924366f1 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9276ee23 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92d5263e drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9395ddc0 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93c038cd drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9723fa46 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97b54dd3 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9949acda drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99a19118 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a96abdc drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b2ce7bb drm_crtc_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c00fb40 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f837d58 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fef0932 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa031865d drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa142614c drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1894624 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa19aaed1 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2bec31b drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2f3a575 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa47c90dd drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4a4ae45 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa549d3c4 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5688bdd drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa770cbba drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa80ce1d6 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8c4ebe9 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8d66d17 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa95e8de2 drm_gem_object_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaac2b005 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac0ba981 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac82acb3 drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadd34070 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb011c062 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb029e7cd drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0881801 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2555f0c drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb26abbd7 drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb30805dd drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb37d51ad drm_format_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4d5644d drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb537b919 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb65fd4aa drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8107e79 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9c4d274 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcca0368 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd2da4ed drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbec9de3a drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbefbe377 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf23ae0f drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfd4aef2 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfea5292 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc084b7f7 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3874ad2 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3a5dc5b drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4eea5b3 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc551abfe drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc628214f drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc63ca127 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6f69b76 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc742acd2 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc765f345 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc785d21d drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7c6f597 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc82e11e0 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc964529a drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9707851 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca4666ad drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb16f26a drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc8c44dd drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd91474f drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf9dd57c drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0903f15 drm_format_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0b1b53d drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd135409d drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1b39adf drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1bb0a28 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd64afb6f drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda01e778 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbc1186e drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd137179 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddf4c488 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde251fd1 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xded6c698 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdef083a6 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf07a7cf drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf55255d drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfa7f6af drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe05e8d38 drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0f7648c drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe30c145f drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3c44fb5 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe52d52f2 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6040599 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe71ffbca drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe73ef6d7 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7f111f0 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9ac58d6 drm_crtc_commit_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9e03e7b drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea94d1c4 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeaecb4dd drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb58231f drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed09ccaa drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed465dae drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedd7c077 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeef27740 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefedd5c4 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf206c76c drm_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf23aefca drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf27c14de drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3154a4f drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3bc1810 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3c22867 drm_crtc_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3e245b5 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf408e824 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf41734e0 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf478a865 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4caf92d drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4ec5165 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf565bda7 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7920c14 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf867c53d drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf869d13d drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8f1b642 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf90a4bb9 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd71c2a4 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd71db88 drm_mode_object_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfecf686c drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff2cb7c5 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff41427d drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x015d4751 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02364756 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02453820 drm_fbdev_cma_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02715d72 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02785d5f drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x029e1dcf drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06a2e6bb drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08ce4129 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ac5e2d5 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c0a1333 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cddfcdb drm_fb_cma_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ff646d4 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x103db373 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x106ae088 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11302828 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11acbf20 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11b8dbb0 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x173f723b drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x178425fb drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19f1999c drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1afecd65 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dc78348 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f94cc15 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fb2a232 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ff4323c drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20220498 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23515aad __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24bc1c2e drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x257889b1 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2769eb35 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c88b558 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d678dd9 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2db37dfc drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2dbce170 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31e932c9 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x335298f8 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x374f325d drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38db8e41 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d52bd17 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ed4aa39 drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3eff116c drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f5bdbec drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f71db5d drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fc22183 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40355f8d drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4084c4a0 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41107cce drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43c47bc5 drm_fbdev_cma_create_with_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44a54a6d drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4558dc58 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4611d769 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x465debf2 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46dc84d2 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47373c61 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4747fbae drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49197717 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49cb7dfc drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b4aa5fb __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d5e8faf drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53986bac drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55fd17aa drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5636aadd drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x587e7461 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58e221fe drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5afa13ba drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5afad830 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c921bbf drm_fb_cma_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d5636ac drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60c39c9e drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61c9f006 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63048359 drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x675afd3c drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67762e7c drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67c2ea33 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e17aba0 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ec4d0d6 drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70186dc2 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71c3bf9b drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72a28836 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73e89640 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7493b6a9 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75474e33 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77468d41 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x778151f9 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7942329f drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c1d55ee drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c7f31dd drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ccfa849 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e6ac21a drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x803feaf4 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x810d7d35 drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81692957 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82624167 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82e0a387 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83405708 drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83bc4c0d drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85aa901e drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x868edc67 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86cdff80 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a1d9f59 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c5ae141 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x947fa206 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x969b84ed drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98874f19 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ab6b01c drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b663bed drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d30b6bb drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa50a7ab4 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8a43a89 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8ed8ad0 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa90dded5 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab83ac40 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabe2d3dd drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1628e94 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2821bc2 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9256f6e drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc25f70d5 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2ced22b drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc536e4c1 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc63c068f drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc67d67dd drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc838320c drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcaf144e5 drm_atomic_helper_best_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd452891 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce684499 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce753d81 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1053744 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1d8ec09 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd296119a drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd57a673b drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd70c9f4f drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd86d870b drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd665004 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde993d31 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfe382d7 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe304a87a drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3c3863d drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe678bb16 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6892074 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6dce793 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8848460 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed4844db drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee613fe5 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef522426 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf20891bc drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf318942d drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3a13894 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3a1f6da drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf420e367 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf48aa959 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7e093e1 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9369f6c drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9be36d1 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd49dd65 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe48adf4 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe7a850e drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffd023fb drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffe5e5e9 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x04db1131 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x064f2985 ttm_bo_pipeline_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x08a91257 ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x136ec7fa ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16652088 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1ce0a9b7 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22284ac2 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x26289642 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x272bba85 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2a202ecc ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ae44e90 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37a70f9b ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37dd00b6 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x45285b0e ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4628b006 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x485a5bc0 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x53b45e8f ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x53c25c83 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x571e9ade ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x592ddc34 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5aa830b3 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5c63f26e ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6026feb3 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c0ec969 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c84e288 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7627328e ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x76499d1c ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7a67075e ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7a74ea40 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7faea41a ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8589758d ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85d1d5e9 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86bb8a6c ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8726f4b3 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8dbc2f51 ttm_bo_default_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x92cae902 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x995b614c ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9b54367a ttm_bo_default_swap_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9c219cb9 ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa8e8a54a ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xacef1de4 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae87b61d ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb66024c0 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb67621c3 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb8c0b691 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbb8b6bb9 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc077f5ef ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2727976 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc36294f1 ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc50eccfd ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc78f9f35 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc79aeb61 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc968d68f ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc990774a ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd07847a1 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd2c98cce ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd4f20ade ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd54b4480 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd57ddf4d ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe3d68362 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe7348b28 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xedbe5667 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xefc4df0d ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf0f2a6f0 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf2be28ae ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf366a559 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd7484d3 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe8cc064 ttm_vt_unlock +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xd3e5b9d7 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x1aab44a3 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x2c339a7b i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x88fbd09a i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x50171abd i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xfdb12f92 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xfe6cefee amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x39f0a724 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5045acbc mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x54e69b54 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5ad29f28 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x67bf08c8 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x833cfa1f mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x86d940dd mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8f844eb6 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa46c327b mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xaa4e912a mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb3c4726f mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb8c73e9c mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd2b623cc mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xda2e14bf mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xedb6809e mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf407479e mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x715bed7d st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xa442be99 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x32e7c8cf iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x6362c96c iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x3a7aaa8b iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x8f636571 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xd5416c81 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xf9a41cb4 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x17608c3d hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x2519398f hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x26cc1fef hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x4c041ae2 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x754e07f9 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xca0c5733 hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x0ea35eea hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x15e6797c hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x7ab3d98f hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xc09828b6 hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x178932ad ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5edeacd9 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6145a4cb ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x81c0942b ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x85623b6a ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x9553c3b5 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xbcd168fe ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xccd37565 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe43e74c6 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x5576d94b ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x812b00f7 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x92dabf93 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x9a04e255 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xc5f11fb7 ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x4852a052 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x76673e96 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x8097c168 ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x038ceec8 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x07451eb5 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1c994266 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x26d851a8 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3c6c4be5 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5b83a126 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x66e47ae2 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6cffbbf5 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6e98fe93 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7953e0a0 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x83200be1 st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x96db385d st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xaf406bd6 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb20a5ac1 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc090dee2 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe4ebee30 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x19d2b3c5 st_sensors_of_i2c_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xcf0bcec9 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x6f1b6f86 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x0d59f4b8 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x6809787b st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xbcf85e6c adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xd88ea64f adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xb4cbbde6 bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x0deee0f1 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x202b927e iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x38a24c3f iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0x3d7d6323 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x3ea579e2 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x5110973a iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x51898e1b iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x79c14262 of_iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0x7e72b2fe iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x8756cd0c iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x9bca5d83 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xa9ab8af3 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0xb679b5f6 iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0xb81e9084 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xb85de706 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xc600aa43 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0xd53a9c6d iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xea26487e iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0xf0d3352f iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xff776659 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x0534505e iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x93827cd3 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xc6d80097 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xd89fc50b iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xec641544 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x5170c6ff iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x5bc74836 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xd800834e iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xf91ed282 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x8afa1b38 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xe313276c iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x0ff05b1e bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x13b51564 bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x7c514c95 bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xc7fe59c3 bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x5540c86c hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x9c22034f hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xc6442091 hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xe60f8c9a hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x21b76b1e st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x5f0855c5 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x508578b3 ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xf90b06c2 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x0883f2e2 st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xb6208485 st_press_common_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x101dea29 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2074fd11 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x38921859 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x402f851b ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x427ccb17 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x541bf29a ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x67a8545d ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7c32373f ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9112b6a4 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x91c7b137 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9234c32f ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9ef4398b ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbae4145d ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc31960ed ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd79ee795 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd83c7c42 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdbf6cc44 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe18e4d04 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00526245 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x049ace30 rdma_addr_find_smac_by_sgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x064aeded ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0679b466 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x097538af ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a1e62fb ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c986ab7 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10ea04e2 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1492aa86 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a52f082 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e1d2b9d ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f8b4a3c ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2494808a ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24d2c8cc ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x250bd3ab ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25a01780 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27cb7881 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28296cd4 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2aa6dedc ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cece709 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e5ceacf ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2eccd024 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3194a429 rdma_resolve_ip_route +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x334c9a3a rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36b7cfc9 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39e0f4c0 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c827f35 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f4a544a ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4618d50c ib_destroy_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46424519 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47b6474e ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4805c0a7 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4db1123e ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x524d5bb6 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52c98901 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5347cc38 rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54683989 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55f58189 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x566b2d67 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56b8987b ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5734635f ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x576fdbac ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5934ffb9 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e7e2bae rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6019e35b ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64045ee3 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x665c85a4 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69793f79 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6aa1a040 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ba93fc1 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6bc217b0 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d4bc990 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fd22219 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72320e68 ib_modify_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72d9dab1 ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72f0f510 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x738f6fa6 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74528193 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75bdbd99 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7678b930 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a86750a ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b9a0559 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d1c90c9 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7df81f32 rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e5decde ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80388aac ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x808026ee ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80e7973e ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8607a16d ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8761e495 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x878be18b rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x881fb134 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88736074 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x893658ca ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a4997b5 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b102c28 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c77057f ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e28e498 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e9eb88d ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90eaebb1 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x910fe89d ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9217464d rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95dd5150 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96a059a8 ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x971b4397 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b9cf9a rdma_addr_find_l2_eth_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ac14d90 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b698739 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bfb8afe ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d34d365 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e7aad54 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa061a3ba ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2333f3a ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa74f36c5 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa751b6ac ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa80c14fe ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8737edd ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaaa5541f ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab4e52f9 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaeb66f59 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaedadf38 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaefd3cfc ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb222bb58 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb39beb83 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4b9e421 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6bf9b30 ib_create_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbda9f126 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdc332fd ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0d4c063 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3d3b673 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc51c1577 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc62fb5a2 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc691317d ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6d3cfef ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc961ff11 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xceb77892 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf7e2bd1 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1817fac ib_destroy_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd35cba6a roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd65888ba ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9333ae2 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd62e124 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde9e1b2c ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdebd3591 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe020e739 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0803447 ib_sa_classport_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0a6e74f ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe21d7fa1 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6d746b3 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe747288e ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8d837c3 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8e17d98 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9df2087 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xead38e26 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef4d7404 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0e9ca42 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0f02c3d ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1fc3f65 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf74173e3 ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf988cade ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa170de5 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfab98d02 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd1d8f60 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe26a2e3 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xffa43097 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5397d778 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdbaac3d9 ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe5811684 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x08a2a809 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1dad3897 iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x331fb33b iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3848bd25 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x610d8ef8 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x70a085f4 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x74e0632a iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7cc24d3b iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8d106977 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9bf660e0 iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb0a36996 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbaa62314 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe871a5a6 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xedfa7a6f iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf02434a8 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x19e3b1ff rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3a9febd6 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4598b884 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x55da9e49 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x63b17ccf rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f64cf94 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x731075f6 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x777d081b rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x89e87c75 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbd7fb522 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbe5a579c rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbf6246ad rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc4c8f06f rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc95bc3e9 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcd50b29f rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcef0f86f rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd171a197 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdaba0b44 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe6fd84be rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe714d8b9 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfff8b9af rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x244330b3 rxe_add +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x2b1f52ca rxe_rcv +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x48f93f58 rxe_remove_all +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x61e9270e rxe_remove +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0xf5727bd3 rxe_set_mtu +EXPORT_SYMBOL drivers/input/gameport/gameport 0x08ff795b __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x20972ca8 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x6613cddc gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x70466f8b gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7aa63112 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa23c924b gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa6986e29 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xcda876c1 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xdbd352fc gameport_open +EXPORT_SYMBOL drivers/input/input-polldev 0x0f327612 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x6042164f input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x7cc036b2 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x8fc68165 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xd145698b devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x93f252cf matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x2211ef7c ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x6ae338fc ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xd71b4179 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x3fa61f3a 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 0xc7362913 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x01ab9f69 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x1eaab186 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x54046983 sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0xc83d489f sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xec2fd843 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xee9288ed sparse_keymap_setup +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x0e032956 ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x57efcd12 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1c2faa61 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x393da81a capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x394c95e4 capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x46d15cfd attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x73189f35 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a05f997 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa91d94dc capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc172cccd capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf0681ce2 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xffab974a capi20_put_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x267258f1 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x29f92efa b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3148ef26 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x458e91f6 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x465d4dbd avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x55a5cb79 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x658c2012 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6bc74828 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8dd013a4 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9989d4e3 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa9da43eb b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdd6fcc96 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe70fafe9 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xecfd625e b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf147d324 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x081905ca b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x14d149a6 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x1d759e97 b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x218be51b b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x2280107c b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x50a5741f b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x59940ebe b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x5ea0e541 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x6aec7564 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x0ac4bb98 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x2b04748c mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xd17090c0 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xd3695c08 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x0bc001ef mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xcdc8fbef mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x7a1e9014 FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x814aee52 hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x8bc4b67f FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0ec1296 FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x96923eb6 isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xaba985d6 isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xc6e20198 isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xe9c515db isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xffac3d00 isacsx_setup +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x6cc34cca isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x89eb44ee register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xf3e720f6 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x013d70a7 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x066d7fde recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x250c4fc9 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3541241a dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x35e16363 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3e193d95 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3f977320 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x522dc31d mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5dd978e0 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x68f596d7 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7a27e51b mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8478fe10 mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8549d8d0 mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a1cb902 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x92bca612 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa9b9f176 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xad8c9ea3 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb169aecf get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbb417094 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3c663f4 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc525fd78 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc840da60 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc8af7fa7 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcb568297 mISDN_clear_bchannel +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 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf35a11e8 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf84ae11f mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf960305d mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfc8ae0b4 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x48e36424 omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x77402363 omap_mbox_enable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x8a77365a omap_mbox_disable_irq +EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0x21c7828c bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0x3361c614 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x66d28e22 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6969b5d8 bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7b55ca4f bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x92c0e0bb closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0x9e8b3cee bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa8612cf1 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0xab2d2b84 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xad29a6f5 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaec09a2b bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf77343c bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0xca580595 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xcd7c0bbb closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe47e0829 __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0xf1b77beb closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0xf8fd4bac bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-bufio 0xa7978f56 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-log 0x3fb91ed4 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x822faa95 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xb00c7cff dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xf31ce290 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x0215a540 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x1baff1ea dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x271317c5 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x5229e61a dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xcbf688c4 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xcf36eb8b dm_snap_origin +EXPORT_SYMBOL drivers/md/raid456 0x20b2ab05 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0405362e flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x19071200 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2ffee4a6 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3316f431 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x47edcf94 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x58d315fe flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x598b2a5d flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x59b897d3 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6d175ef0 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9c5ac57a flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa972d939 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd7178a20 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfe8d62a1 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1c74cb68 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3aee64f4 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6cc7797c cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb60b2df2 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0xe046344e cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xe454a603 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x827f8103 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0x938dfdc7 tveeprom_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x037f2c9f dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x12885d36 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x13b51ed3 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x187a9eb1 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2103899b dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x26617f70 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x344908d4 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3656cb10 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x44492649 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4556b950 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4e7fd4e0 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x58801b9f dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x58c2a185 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5d719c2d dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x629f9d31 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x641d9a56 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x68f0bbed dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6909fd4c dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x71b7cf34 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x72180695 dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x77885d4f dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7b309c4b dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8633f37b dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9433d1fc dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9850cb88 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x99760e6d dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9c19040b dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa123fd3b dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa8a3e1ab dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xae5eb49f dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc1092392 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb1a8bd4 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdc094c39 dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xef378021 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf18b7415 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf48116c6 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfefaf373 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xff79aeeb dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0xcd8f7584 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xffd10933 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xa84296e1 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2cd2ae1e au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x384a4e00 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x397722b5 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4aee7417 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x89cbe907 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbb1a7b9e au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbc7e4b96 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbce4e046 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xde073d9d au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xc088ff39 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x4f79e31e bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xb2eaf2fe cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x1141a198 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xca6f4dec cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x4bdc0eec cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xf1a268e0 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xcb08aaf8 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x489ec306 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xcfa4d8ae cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xd31310a1 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x28c4433e cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x00c97e97 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x3b05e98c cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x67fa6a97 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9932ced1 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9a5446f0 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa2d351ef dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xc426350a dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x03db1d96 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x28445ae2 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4c5f3a72 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x72646114 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x76729adb dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x837634fa dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x89ad1023 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa17f746c dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa76aa9ae dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xae8f0cff dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb86b6a7e dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbf128839 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc4c14503 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc8a36b8b dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfe7b2edd dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xd1afc4ef dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x11c00709 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x44fdd697 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x481cb9e2 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7cbc26ab dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7fd8aee1 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb1bee8bf dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x0f49799f dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x6e561059 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xb54f37f6 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xf39de40b dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x329c0d51 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xdd5cb6ea dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xa4aa9dbe dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xb1a6b7eb dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc5414547 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xe7ccf411 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xf5caa435 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xe9df5cd2 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x9f8b6bd8 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xbf6149f8 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x560a5ff1 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x9328a25e dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xffe5686f ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xcb328d7a helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xe9680e9e helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x45ecd182 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x82f2a6cf isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x90c0fe28 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x17410a2a isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x71eba804 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xe21e77b7 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xd25af62d l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xe7e6c7a8 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x81452244 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xe7502b36 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x83e67ae6 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x1df239d7 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xbecc817a lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x879bf003 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x9d54e2d7 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x74c6bdb3 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x09599261 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xb82b3929 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x7884f959 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x730af27d mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xf5ac0f38 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x305c78c5 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x8b3d5d61 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x6d983b89 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x704e273f nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x33034f6f or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xce193e67 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xb84fe0ea s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xab1faf5a s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x50dabc72 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xdbe6133b s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xede27a1b s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xbfd0b523 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xe9510a60 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x2a7c5cee sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xafaf6cb8 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xcd84a1bd stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x05aa34cc stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x287eae69 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x331fa0d1 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xd5d72dfc stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xc61aa6fc stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xcf2651d7 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xebf4cef2 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xb37bed15 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x0b88e87a stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x3d65974d stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x5552dfac stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xcacfa957 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x131b6e48 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xcb98fdd0 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xb47d25f2 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xd0715063 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xb0888884 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x02b66d1b tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xc89fde99 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x226b8759 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x9f3bdd71 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x0bc7ac7b ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x36b2f389 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xa452c7c9 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xf4cb94c6 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x0b7c8fc1 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x76150911 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xee47e6a7 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x123ec2a8 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x12957e2d flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4a7aad2f flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4ef4dc70 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x950da7a2 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xbf0b9a14 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xee28aa04 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x0e13da38 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x6bd2cf24 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x71e08274 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xa462f7a9 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 0x6c08bc01 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x7c037818 bttv_get_pcidev +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 0xd6db0751 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x09671514 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3c566d5a dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x88f104a8 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9316545c dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9a75c408 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb55fc9c8 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd009e543 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe519c918 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfded5c25 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xd009f865 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2d7bdda1 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x313a8793 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd6723124 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe18e0c1f cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf6a48385 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x9d496b78 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 0x005cadee cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x36c31950 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4fae58b0 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x60084481 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd56b6b92 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd9bf5f63 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xeae79b3d cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x0a69def9 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xe52d03f6 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x2b6a2248 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x3b6d4f01 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x5e75d91d cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xa0afe576 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x0314e6eb cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x232e2c52 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x40f664ab cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8aacfcce cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbb9a50ba cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbce7a21b cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc8f5dd3e cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x045538e8 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0938f14b cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x14903044 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2e47e505 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x485910a8 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x55acbd61 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x84e887e8 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8a734bf1 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8f102214 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x93c5445b cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa91a6c4d cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xade67fe6 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb20b27b5 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb25ee34b cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbc3e8fed cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbe04d17b cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc4dce30b cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd2f1a400 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe6369a91 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf1b416f0 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0c5ca956 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1cc82d97 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2cc527bc ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2e6d6022 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3bf76ab9 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x481c6d5f ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x610daed0 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x72c8192f ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x80994ca7 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x826c38d1 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x82b586e4 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8b07ca89 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9d42659c ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa9121bbe ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf6e76b35 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf7e55271 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf942ce84 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x03310b1d saa_dsp_writel +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 0x30c1032b saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3d5651f5 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x430ff203 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x485d24cf saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x65f294da saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8505c3e7 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9827a1ad saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa2a3a685 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa374fa2f saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa891c0d3 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf2597c54 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfcbe52a7 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x35ff3efb ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x0406ae07 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x482b3ccc soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x70d91771 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x83e7fbdb soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xa3b717ae soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xcf9669ff soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xd0bd36ee soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0x099591d6 soc_camera_client_g_rect +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0x355418c6 soc_camera_client_s_crop +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0x4906cdf4 soc_camera_calc_client_output +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0xe732aaa2 soc_camera_client_scale +EXPORT_SYMBOL drivers/media/radio/tea575x 0x1e2e3a32 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x5c58f642 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa5797dfa snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa64ceafa snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xb070a8e2 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xc08b32a0 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xca45be75 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x02d9e1cc lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x2b0c9c91 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x2fc97385 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x32dfaf00 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x37b80cf6 lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x3d2d83c0 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x6301a142 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xb8dce8eb lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/rc-core 0x32159ce1 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0x58da7696 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x98210e28 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x0b78f2eb fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x0a494187 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x937a2e95 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xa08ff538 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0x0592876f max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x99ec17ef mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x817b87b8 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x1a54823d mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xda99640a mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xaf32bb32 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x1bb0c011 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x725f1ccc tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xe27c0b8d xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x9fb7208d xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xbda8c7ac xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x49c57808 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xb6ea2364 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0040f0c4 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x111bdfb3 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x460a721a dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4ec118e4 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb171afc5 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xcee55029 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd4268c46 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd612615e dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe8f29acf dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x13e411de usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x229c55bc dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5b356ce3 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x76130b6f dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xbc0ea25e dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe75fc253 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf9e2ef49 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xc3879c36 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 0x0b501293 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0cbb180f dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1dd0065a dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x552d2590 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8e36e471 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9071c5a4 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9fbd754f dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb960a47e dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xba3bc9f8 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcc31ee32 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdf421a6a dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x32bccd30 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xf0d4d80f em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x10f4a2db go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x44db00ce go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x44f85722 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7c29ba4f go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x85e6c488 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa4be46db go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb56cb8b1 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd8328f19 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf4de7932 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2536a34c gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x37308a7e gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3d645010 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4b577569 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5cd373ae gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x876a5f14 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8be75b76 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb1de6ec2 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x730578f7 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x834da501 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x9058f0d6 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x51fdaf34 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x7a3aaefe ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x2a7acb77 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 0x58c3d70f v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5fcbeb06 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x0ae51ac6 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x2df7bfb8 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x3342cb32 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x5930270f videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xda8e44e4 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xe78ad82e videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xa97634ec vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xbc183ba3 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x01308010 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x4f6c720b vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x57fc089e vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x5b1da0db vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x70328f4d vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x804288f0 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x371478e7 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a9b09c7 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0b380831 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x110589c0 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x115ebb01 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x139b877d __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x14438e48 v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1802e710 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1a1121b0 v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x25a0e780 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c360bc0 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d15820d v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d7f5bbe v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x350d69a5 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x37179b98 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b6ac3bb v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3c144f67 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x43f9f350 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4779d175 video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x487033d9 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4ba11881 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4bec23dc v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4cd35f1e video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x51ee3058 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x55ded9b9 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c2408a5 v4l2_of_alloc_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5e93d777 v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x604b9b09 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60b01eb0 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6f91c882 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x70273332 v4l2_of_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7246589d v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x74141727 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a1e89c6 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x80136303 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8240df6a v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x85db098f v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x86896ed6 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x96483c0a v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x97194f92 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99331830 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5eafa6f v4l2_of_free_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xab0759b7 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae1c7205 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb185617c v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb36a8d80 v4l2_ctrl_new_std_menu +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 0xbd60c888 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc38de506 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc7e432db video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc85fcab5 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xce7f68a8 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcf2d2997 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd02e88b3 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd4ea2c7e v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd5e7d67f video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd8701bae v4l2_of_parse_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd971282a v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd9ff58b5 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdec001c1 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe111fad1 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe4e66ee5 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xec826c0e v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xef383de5 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf2c58a6d v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf6eac907 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf96b36c7 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1e8461e4 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x211f8a0f memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5272d503 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x710721a5 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x78a911a3 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7ac6381c memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8846238d memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa32c98ca memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa5987a36 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa9cc7100 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xca5c24d4 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdf5fc68d memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe1c9b2e5 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1d102312 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x23278966 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2a5cabe1 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3402b59c mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4d434868 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5016af4a mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x58492b7e mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6051562d mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6e4abcc7 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7df68955 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x81a67449 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x833cf6fa mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x85575843 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x917ca099 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9d9eb190 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xab03ad63 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xab0efda0 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xac14dbc0 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb17aaa94 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb8633fc6 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb9b61015 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbc694f99 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc00ab59e mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc365159d mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc5cec815 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcf9015fb mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf39bc870 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf81fcc5b mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xffef07d6 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x01b94c7e mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x03e28ef1 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x07852976 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1636a51f mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1972a67e mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x23af8ec5 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3dc03dd8 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x40b87a24 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x41bd2ca9 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x49c82318 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x507a2a78 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5b28d528 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6fd787e0 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x74ebf68f mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7be095cb mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8e97704b mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8fa14366 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9f6dd646 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa1277a58 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa31248b1 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbd7c0982 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbdbaaf18 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbec661e5 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcd5531c5 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdd4d069b mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xef2ed8ce mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf3cbf6eb mptscsih_host_attrs +EXPORT_SYMBOL drivers/mfd/axp20x 0x802af067 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0x83fae758 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0xf9b1c836 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/cros_ec 0x19da4012 cros_ec_remove +EXPORT_SYMBOL drivers/mfd/cros_ec 0x1a9d4d82 cros_ec_resume +EXPORT_SYMBOL drivers/mfd/cros_ec 0x9a0e2753 cros_ec_suspend +EXPORT_SYMBOL drivers/mfd/cros_ec 0xae367674 cros_ec_register +EXPORT_SYMBOL drivers/mfd/dln2 0x4b422cce dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x8349ecfa dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xff6c0049 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x17feb54a pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x72a2c7c2 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x01667698 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x27eb45c9 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3cb7047e mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x682a2b01 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x76e1e9cf mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x978a352f mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa3789f06 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc36936f2 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcf8dd775 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd474b683 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfbb1d082 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/qcom_rpm 0xd042c9be 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 0x11ed5012 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x1d0b0de2 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x2f31b67b wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x359a6b1f wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x7eeee3a1 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0xb053b456 wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x21e1a3f8 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x77691ab9 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5eddc54e altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x968fd9a4 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0xc1a91973 c2port_device_register +EXPORT_SYMBOL drivers/misc/ioc4 0x9791c79b ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xfd778104 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x14e30140 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x4388e5c6 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x4d8f30ef tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x4ffbd534 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x81b40e90 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x9516ce6b tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x9b9817a1 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xa5896ed9 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xbe03a3d7 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xc7da54c8 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xcd46ee48 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xe545e953 tifm_alloc_adapter +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x310966e7 dw_mci_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x3c6af9f1 dw_mci_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xac737ae4 dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xdcbbfcd9 dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x07ccb310 tmio_mmc_host_probe +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x2b908809 tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x36713b1a tmio_mmc_host_free +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x4a035b59 tmio_mmc_host_remove +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x50818377 tmio_mmc_host_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x9e6eec68 tmio_mmc_host_alloc +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x62b9ad1e cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x685322b1 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x973db7d8 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa51d7195 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xaf34b3ec cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb40368e0 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd684d3d6 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xaa38f40f mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xda817c9d lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/nand/denali 0xa60a6626 denali_init +EXPORT_SYMBOL drivers/mtd/nand/denali 0xeb5305c5 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x4077c768 mtk_ecc_enable +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x5437e775 mtk_ecc_disable +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x67dc4d5c mtk_ecc_adjust_strength +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x6df58afb mtk_ecc_release +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x76e53683 mtk_ecc_wait_done +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x77ecf26d mtk_ecc_get_stats +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0xbe59bbf2 of_mtk_ecc_get +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0xf00129a1 mtk_ecc_encode +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x10400761 onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xab6d5d6c flexonenand_region +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4e82310c arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x57f4155a arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x59931acc arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x75d523bc alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x78fe6707 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7ec7a4ec arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb53a5adb arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc54617ec arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcc0cb7f1 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdd050f2b arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x5c5951f1 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x6bd70790 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xa1a6ab72 com20020_found +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3b866bc9 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5318a34d ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x738544f5 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x82f1e911 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x86e2c1b3 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xac39aab6 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc62e2abe ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xdef1c090 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe42831d7 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf0d8097a ei_poll +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xfdf4dabc cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0158950a cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0fe6eeb8 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1097e66b cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2276d480 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x26e1da66 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2ae904ec cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2eaf7ab1 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2f6f5c72 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x398314aa t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x431e2f8b dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x44c668d3 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x78a36024 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbcf6a6ed t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd85373d7 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf57a6b3a cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfb3fd597 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x03d73b20 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0a630faf cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ec3aa1a cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x13a80c96 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1ff48beb cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3182433d cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x326b8271 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35a00627 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x382a11da cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3d78b165 cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x448f3b34 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x458dedd6 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4de31aaf cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5336750b cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x586dd1a2 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x596d98f3 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x665ed564 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x684c1fd2 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x801eb6c7 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8515e022 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x866252a4 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86b663bd cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x95f9e351 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa613f341 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaccea7c7 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb76b130d cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb9793554 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbc2e6601 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc531fffc cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc61f04fd cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc9169cd6 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcfd115a0 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00a4f2f cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd55e19dc cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe74f3899 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xebb9e80e cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x0ec0a633 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x45ff8fc6 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x666f1278 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x79535746 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xf8769b8f cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa21a75a7 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xcbdde8df vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xdb7efce4 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe8d2c8d1 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xebf3602b vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf5544c77 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x7899d14f be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x79557e49 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x07cf5fb6 hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x0e568081 hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x6a4e3477 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x8aa9216e hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xd8ac5de1 hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x1886332e i40e_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0xd3379f7c i40e_register_client +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00ea42b4 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x018f94ca set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05127a9d mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x067895b1 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b69f558 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d16c8ae mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11afc21a mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12132099 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x135bef9e mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e167046 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e4f3271 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22523d5a mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x270e9de5 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b3f17da mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fcf46c7 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36449f58 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46d5677f mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bd418d1 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5700599a mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d6024fc mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e66faf0 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6646b3bc mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7dcc89c8 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f57e885 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84fc35a6 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8628ef9e mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8884fa72 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x899cc590 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa411fd9 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaab6d3e3 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf7c3d03 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3294ea2 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6e66774 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb72c7daa mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6afd4b8 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfd3dae0 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe356136c mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8da1937 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa25d21d mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc5773f4 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cf1b3eb mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11e9a705 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x221dae61 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a8f19f9 mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x332eb78f mlx5_core_create_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3604a3fe mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39b2db16 mlx5_core_destroy_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41ba0d74 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41e69ac1 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x426cdb25 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46df93ec mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x492393e1 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4966d048 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x496fd213 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5887cec0 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58b7565c mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b00659f mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6433dee1 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68618325 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6af12efe mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ebc0ef4 mlx5_core_destroy_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d2f08f1 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81ea7477 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x868632cc mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d9b4501 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x909078d8 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92c149ed mlx5_del_flow_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92e0132b mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92fc6b16 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9466a013 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96087ed9 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98f6240e mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa22bc399 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2922ea1 mlx5_add_flow_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3cb955b mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5b14734 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb09119d4 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2b9cb5e mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2e11be2 mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7491dea mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8d37d39 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcb9ec9d mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf8ea932 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc789e2b4 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xceaff68a mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd195a925 mlx5_core_create_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2263045 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9994ceb mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda976511 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde53cbe9 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf39e664 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe200b23e mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe88a39cc mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea0278a4 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea625402 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf903c557 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf929b67b mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfaa4b482 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbe6e383 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfda8961a mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffa21392 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ab0c687 mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x39a96739 mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x44cfa4a4 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x480c2032 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x49cecfd1 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x548cbdac mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x714dccc2 mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x72a05371 mlxsw_core_resources_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f539b8e mlxsw_reg_trans_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8142bf64 mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa941d7a5 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaaddc40c mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5ff38e0 mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb5c8545 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdbe9cd9f mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xec51e246 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfad6bef5 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdcc1289 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xb3f59d0c qed_get_eth_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x66b7f2a2 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x949c90ec hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb99929ad hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc5e5d4ef hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xcbb1b0e8 hdlcdrv_register +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0da13807 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x1b4fc66d irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x2f861d55 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x41923958 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x425edce9 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7470f0bd sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xb98b3ca2 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd1ec4b0a sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xee8d3ba7 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xefc378ab irda_unregister_dongle +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mii 0x27a7433e mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x932f28fc mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xa299175a generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xae8958c8 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xbe3a44ad mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xda701d63 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xddb85a30 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xffe22334 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x506e41d7 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xb1590866 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/ppp/pppox 0x5bec68f1 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x6efad2e2 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xad812db5 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x768ba67b sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x1912d7df team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x1bf4c03e team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x74b269f0 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x8275684c team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x9e5617b3 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xaa0a1821 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xc547c3ab team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xc9b1da89 team_options_change_check +EXPORT_SYMBOL drivers/net/usb/usbnet 0x0319102b usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x408b323c usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xefb81b24 usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x08c53f1f hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0x11adf9f9 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x333d2c68 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x48c32969 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8574aa46 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8f3c6c13 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa53a6b25 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa9c2b7b6 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb67e7f2b hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbb40d5e1 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbc0148e2 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xad9c0458 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x035d4152 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0910be10 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x18b14043 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1cf34338 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1d25bfc8 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x34a22f6e ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x41286297 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x532f3143 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x544f0232 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5c195fec ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9235b315 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd3f012df ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe6eddbce ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x095118c9 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x096e0a0d ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x16a8a4cf ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1f24f07f ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2d6dcb2a ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x30836f75 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x485e471b ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7df5e690 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa41787e1 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb2dca26f ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbc5d0a11 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbf84a582 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc0f06f52 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xccd7a611 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd6368322 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd6a95ee1 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x11ada142 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3f2d0fe9 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x50462396 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x541a9b76 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x82037017 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x836747f6 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8432054c ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9050d646 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9e3c1b1c ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb173da29 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd8239c79 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0b9a5634 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0e8eaca5 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x197b4c0c ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2151ad8c ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x26e50260 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x33332d52 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3ba2bfac ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4e0bdcdd ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x55d0bb4e ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x60a5d869 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6d98f2e7 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x748c49ab ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7bb97b3d ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x897c161a ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8cbaa605 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x92451a3d ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9bd20568 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9f588dd5 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa6f182c0 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb3849c6f ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc130bfbb ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcbf2e16a ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf503bd51 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0068446e ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00803d09 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03f945f1 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x065c7a36 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x080f6fef ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09101c2d ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09850868 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f4abd68 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0fe21713 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10680301 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x117eafae ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16198d1e ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1bea19c6 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c44ba06 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f52b2a4 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2053e74e ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25837043 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26cac17f ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a4ad8ba ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ce1500f ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2fde9ea5 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31ab37ff ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3347eb7a ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a70b447 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a723be3 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3aa16e5a ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d2ab071 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f1b4cb4 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43ede8e1 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44564c37 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4491bb4c ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45009e23 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4672c1c9 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4fbad81e ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x540ff795 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x581f2f16 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58b80631 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5cb34d96 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x632bb075 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x644f8f7c ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64c40732 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6507a6a1 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65de79d8 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c03cc35 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70959fbd ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x715490f7 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x749a8732 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74cf76d4 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x778782f5 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7abe2aea ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8120e421 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x825c4883 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87a2812e ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87bca479 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8adbff27 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8bf10a24 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91184871 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x913c89c9 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93f4f82e ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x953f1a3c ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96de2147 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa09485b1 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa39cce4d ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6f447b6 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa82beff0 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xacd724f5 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf01b4e7 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf822d3e ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xafab7c17 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4700d5b ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb50a26a7 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5cc1d32 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc1248eb ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd763f2c ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0fb3282 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1e7f30b ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3a42cdb ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4d9d64e ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7501940 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8da8fb6 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcad884eb ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb13809c ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd31764c9 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd389ab3d ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd549828b ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6ec9598 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda1b6366 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc4e1c66 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdcc06db8 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd093ceb ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde89c3d4 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf0500b9 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2892b1d ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3fba133 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6cb2514 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec4e4c59 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeee0eeb8 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xefcb3fdc ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf24d6a56 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2d8825d ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6ce94f1 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf94c6304 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfbc7b1ef ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc8beffc ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd996f31 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x2f767ebb atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x7c961fe5 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x9d098136 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0232e5f8 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1dc2d364 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5b4047bf brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x724dc969 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8f018e59 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x99b4d3b1 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb566d3d1 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb64da94b brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbceaaf05 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc7f12793 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xcf5b6da8 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd44fb415 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe3c63b8f brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xfe8de5b3 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x001c93c1 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x065f4d4d libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1263e370 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1a3e809d libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x20a6fed0 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x29bb61fa libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x37a55c7e libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x44c5da20 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4b1e4ff4 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5706105a free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x73639441 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x739a4b74 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7899dd73 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7983df9b libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8145a0a3 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8b53b9e5 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9078219c libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa1cca439 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcd828253 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd79ce9f1 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xda02f275 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x024f8464 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0289e272 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x043568e5 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x05cf6a63 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x06947938 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x089b86c5 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0971d8ef il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0af86e4e il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0d2117a0 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0d5c088b il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x10854736 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x14aa2440 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x172723d3 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19932dec il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1ff728c4 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x207d5ec9 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x26f4b548 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x28a79ada il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2aa7a0f0 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2af248d5 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2c98b925 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x32848d4f il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x35ac1783 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x379691d1 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x39989965 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x39a32e2a il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3ea3a313 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x41bc7e0e il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42432242 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x45d4498c il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x494bef84 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4bb27845 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4e2247c3 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5115188b il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x52c2f21b il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5388d17a il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5763df8f il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x57f1820b il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x58a1c270 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x592d2c50 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5b916c9a il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x61d53ad5 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6624ea17 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x69ea62a4 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ae44ebf il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6cb0e270 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d6fc49c il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6eb337b3 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6f58a557 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7134b127 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x75271e5a il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x755186a1 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x76a750e9 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x771b6b37 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x795354b2 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x79c7c66a il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7dc5e9bb il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7ec15fd2 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8137ee5e il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8285116c il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x88ee3aa9 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8eba700e il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x909c5b47 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x96ee9c2b il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x987c9158 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x99717c39 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b92c81a il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c7682d7 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa3e7c465 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa3f0371f il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa54da9e6 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa930573b il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa9507266 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xac5ad1ac il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xace1feca _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xad6a0ea6 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb49afe21 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb4c9c7a8 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xba2da746 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0abe54a il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc26f17ca il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc8d4b531 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xca1606e4 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xca2b7786 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcaa3adc9 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcd03cb7b il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcf566eea il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1740fd9 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd200b7a5 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd6da7e7c il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdc3ae091 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdeb4e7c0 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe1d70535 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe7ce7913 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf3b0cdae il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf5b6d2ad il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfbe8e347 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfc9b440f il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x26931463 __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x33c2544a __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x550317b5 __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa44e2870 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xab9db4d3 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc44bb084 __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xeb5face7 __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x03f38d56 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0c52cbda hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0db4c3c3 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x14cfc47b hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1b0e22f3 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1d7c91f5 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x28c7ca1b hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2bd8ec89 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x46fa0bb0 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x527ac7da prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5660e421 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x608670e3 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6cfd243a hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6e50ab33 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7db3d21a hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x805d948f hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9ef083ed hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa6f2c361 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa940d672 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc9f71d5d hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xca93d655 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe115192d hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe411d06b hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe6c5d2f3 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe7217070 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0792b044 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x11ee4d56 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2a15b171 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x347a40bd __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5bfb0c47 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x69767790 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7c7c6cf5 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9030f67a alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x91d71a6d orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xaf706cee orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb3202a29 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc1e2370b orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe64220ec orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xecd577ff free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf22ecd45 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf2fa772f orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf46aff70 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xdce804cb rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x021d2e06 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x024acfe2 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x048d676f rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x111a96b6 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x19c19651 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1f824408 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x272c2903 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2cd2c5ad rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2d33d5d4 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2f7eac45 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3ba2ffe1 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6107d514 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6e3ca74f rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x70b54a7c rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7208e280 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x788be4d9 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x82f8896f rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8a52ddcc rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaa01f6b6 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xad417a5a rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb034b4a1 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb08f8f99 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb1bbcb04 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb276e5ad rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb738b9d5 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb96ac468 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb9c42c63 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc07dbe97 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc4afa6bb rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xce969869 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd79c7eaa rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd885de92 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdb3f1e08 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdf18faef _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeb91ac4b rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xedd590ae rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf041fd0f rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf3a71b11 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf54cf862 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfaf6ef50 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfc345ee5 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x36b2464a rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x8b7d6d96 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x9de0692a rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb73aaf22 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x84117600 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x87c2df2b rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa1437bf6 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xaac2ce31 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0795fac6 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b35b810 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0dd0ff65 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1288b53d rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1cc39d73 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x22413d4d efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e97f2cb rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x41428e5a rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x45e1275c rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x702ceb6b rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7681342f rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7a5eaece rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7f7df49d rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8db8dacf rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90c202dc channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x91291b1f rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x938e0be2 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x94778483 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa4c1509e efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xac9fdc22 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xad041b34 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbd3e318f rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xce787708 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcec4f79f rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd7333c7a rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdc588db6 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe39a44a8 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe762fb56 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xedd5d3eb rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf9149d4f rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfa0adf3d rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x0be55f67 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x51700622 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x8825a08f wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xabe17855 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x36a44f5f fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x8ec8545b fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xea27a1b0 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x8e01371d microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xb4b0a549 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x379ca7ed nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x886c73ea nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xcc1259a4 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x484aa2ef pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x0f44b5e3 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x5e7a1879 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x041c3b92 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x1bbb2902 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xbc5a6d9f s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x57b7bd88 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x656180e4 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x66be7f7c st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x76ceb943 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x785b6dce ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8dadd89a st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbcf56cf0 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc21c90f9 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf9b3289e ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfb0ab89b ndlc_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2a605cbd st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3bb46f40 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3c781ee4 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x40121047 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x533a900c st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5dcfe41e st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x662f4554 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x74294269 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7544601d st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x89d2302f st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8b358a8f st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9d07feeb st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa59fd274 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa9360b56 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb0a6db95 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc366c7d4 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xecd5e97a st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf2f76d7d st21nfca_hci_remove +EXPORT_SYMBOL drivers/ntb/ntb 0x0094a60e ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x3a36a7ec ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x8fd2fed5 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xafdf9f5f ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xb0211665 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xb0e9e713 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xba7a704c __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xf365f347 ntb_register_device +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x38e5b990 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xec07bf69 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x680c3105 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x01765298 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x07b6971a parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x152fce70 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x157e66a0 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x175f80b1 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x207254a5 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x212f3a01 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x2926ba3e parport_release +EXPORT_SYMBOL drivers/parport/parport 0x32f22669 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x38ee1e58 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x398376b2 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x47e16e23 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x47e8c604 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x64731574 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x66a925e2 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x6bd8121d parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x731058d9 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x8777a670 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x8e7c1afb parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x93d2d859 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x98d6a269 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x994648ca parport_read +EXPORT_SYMBOL drivers/parport/parport 0x9c55be67 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xa022a1b5 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xa09aa878 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xaeba9441 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xb2d0b955 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xc3ab0a7b parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xdc06f372 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xf78942a4 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xfdfcae0b parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xff9d2002 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport_pc 0x8ff65301 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xe4daacfc parport_pc_probe_port +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x085859c4 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x2acbc62c rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x68d91f93 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x69417bde rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x82d54d92 rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x93236d20 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x97d9c38f rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xcc66fd74 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd497f82c rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xdb9bd89d rproc_boot +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x650ce956 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x0181f269 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x34e88af6 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x5c5a6760 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xc3bc6bfc scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x07dd6ccd fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0e4df4f2 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x251aa023 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2995ae64 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x49103fd9 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4e805791 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7b3e030e fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x91ecd2ac fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa7d5860a fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbac8358d fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdf992517 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe44c3909 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x02ddae6d fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x03810ff3 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1997b582 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d7d8cd1 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d8a2fdc fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x213a0a46 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x227d0809 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x25d9d29d fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b59a589 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d47ed20 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x376ddea7 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3be48f67 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x542704f5 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x545ac30e fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x54f95c55 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x555dd1e3 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5886810b fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5f480bed fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x61bdd6a6 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x67a2753e fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69ae3313 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6aac9ed2 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x74f4ef6b fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7738e717 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fd43f7d fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8143fe0e fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x904dff57 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x97c36d0e fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d87b965 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9f1b925c fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0b22001 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1aa82fa fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa7a15ddb fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb051d8a3 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb27171b8 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb318db48 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb6596641 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xba721797 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc60e8cbb fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcdea1e6e fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd107a0a9 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd321562d fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb7cbc99 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdd30cb8a libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe6508804 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe78df31c fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe80a0eba fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe8aeb87c fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf45830b1 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfaeffa8a fc_linkup +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x09dd4d3e sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x0b72d709 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x25f10b87 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x50786257 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2c977a2b mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x07015769 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x189c76fa osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2d10af47 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2d791275 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x30ee8cee osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3241ea54 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x375ff578 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3790de2e osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x41fbc0c1 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x475d5b76 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4caad1c0 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x50fb642a osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x64358047 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6e80e843 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x704cab4e osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x776f1be4 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7aaad588 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7c638b24 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x80700de2 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x829a5996 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8613f9fb osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x87c3a0dd osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8f12e203 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9501ddde osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x95a710f1 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x96da3d80 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9ec88d08 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa0628414 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xac8fc27b osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xaecbd9a4 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb77a4990 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc3b8c64f osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd1daa28d osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xddc5356c osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xed60d0ac osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf954ec03 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/osd 0x0ab41f59 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x3253726b osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0x4f74e603 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x6289b5ad osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0x97d562eb osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0xd7c233c9 osduld_register_test +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0c109c59 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0ca9737c qlt_put_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x229d8f43 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5a29cd18 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6364d857 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x807feb3f qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x80f426d8 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x96594f81 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbc5e60a2 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe0c21055 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe31b9484 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf676f1b4 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/raid_class 0x68b0af39 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x88dc79b3 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xcde3fa61 raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x003e77ef fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0b0c46a4 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1565fb07 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x43ed39bd fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x56b1cbc8 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5b595d78 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x764df447 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa1dec16d fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xad1255f1 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xae23b1db scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc60dec4c fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcfa037fe fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x00554347 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x06b69df8 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1144f20e sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x12d37a81 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x14acc595 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1be05055 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x251b14d3 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x26d5a214 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2d736048 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x305ff097 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3174643f sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x41d0c672 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x45f19bac sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x48db1dba sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4f28b997 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x555b6ac0 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5a4948b8 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7c152019 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x844007d1 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x95e334b9 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9825d1da sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb95c3c91 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbb4483d0 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc06c70b1 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdefdf249 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe846f2c0 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xec2a33af sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xed502787 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xedb817f2 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x37c01a71 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x5ad5151c spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7d04d62f spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc8e96baa spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xfce90b61 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x251d94d0 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xc8e2b3fc srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xd0b17710 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe93323e0 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x37bdac99 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x55005bf9 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x1d691653 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x4a338038 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x59c1bead ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x63241155 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x930dcdb0 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xa4073ecb ufshcd_read_string_desc +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xa74d90c2 ufshcd_query_descriptor_retry +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xb1bd6921 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xb849be76 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xd3d42305 ufshcd_read_device_desc +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xd8ac395f ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x412abd7d ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xe33d53b7 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/soc/qcom/smd 0x41bb23ee qcom_smd_driver_unregister +EXPORT_SYMBOL drivers/soc/qcom/smd 0x6714ccf2 qcom_smd_set_drvdata +EXPORT_SYMBOL drivers/soc/qcom/smd 0x84abd03a qcom_smd_get_drvdata +EXPORT_SYMBOL drivers/soc/qcom/smd 0x8d1fe532 qcom_smd_open_channel +EXPORT_SYMBOL drivers/soc/qcom/smd 0x906c30a3 qcom_smd_driver_register +EXPORT_SYMBOL drivers/soc/qcom/smd 0xeda44e54 qcom_smd_send +EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x2f5501c0 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/wcnss_ctrl 0xef11e766 qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/ssb/ssb 0x256fe074 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x2efd59a3 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x3af5b16b ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x3b8a3e9e ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x4119af37 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x49734ce0 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x508ee463 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x5af2f332 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x61d0f113 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x651399de ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x67b9c4e3 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x78b32482 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x7d7a4c9c ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x8b659a0d ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x8ca6abda ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xa46ae3b9 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xa6afb347 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xcf6d8b32 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe22f63f8 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xf577ef3d ssb_pcihost_register +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x00769416 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x04b99824 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x24595cec fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2f2b67e1 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x33ef377b fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x35636ef7 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x38fc42f1 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3f6e19eb fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4388ad64 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x45b4e6f9 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4a1c1eab fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6af1456d fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7052718a fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x70d2f698 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7d1ae47a fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8fe41474 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9bebb6ad fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa3f53776 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa883f0d3 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaa302383 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbc99b6f8 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd057a02e fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdd6a2003 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe47d5797 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x5907a2c3 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x23d90baa ade7854_probe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x000c507f libcfs_debug_dumplog +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x00c881f6 cfs_cpt_number +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x01fef7b4 libcfs_register_ioctl +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0389f857 cfs_cpt_spread_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x06443cdb cfs_wi_deschedule +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x08d9841f cfs_hash_bd_peek_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0c68bc45 cfs_cpt_clear +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0d18a8f8 cfs_hash_for_each_nolock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0de6c369 cfs_cap_lower +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0f5eff79 cfs_percpt_number +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x10b7e9c3 cfs_cpt_unset_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x130d5d56 cfs_hash_del +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x151e7546 cfs_cpt_table_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x22319718 cfs_percpt_unlock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x229c4b06 cfs_hash_putref +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x23e25c18 cfs_wi_exit +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x23f6f445 cfs_restore_sigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x247da28c libcfs_kvzalloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2663147a __cfs_fail_timeout_set +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2aec458c cfs_hash_for_each_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2dbe54b2 cfs_trimwhite +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2e5044c7 cfs_cpt_set_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2efcc0e6 cfs_block_sigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x31fc5082 cfs_crypto_hash_update +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x37175882 cfs_expr_list_print +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x377f93fb cfs_srand +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3c1285bd libcfs_subsystem_debug +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3d5e6098 cfs_race_state +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3ea730c0 cfs_gettok +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4062f92b libcfs_run_lbug_upcall +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x411db754 cfs_crypto_hash_final +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x44688a0a cfs_block_allsigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x44728d76 cfs_cpt_bind +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x44839bbb cfs_rand +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4613e57a cfs_hash_cond_del +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x482deff7 cfs_cpt_unset_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4a99af72 cfs_clear_sigpending +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4ad27c29 cfs_hash_rehash_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4d3b4eaf cfs_fail_err +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4d89e988 cfs_block_sigsinv +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x52b9c7e9 lbug_with_loc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x54b760ef cfs_hash_findadd_unique +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x58a7ee00 libcfs_catastrophe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5a785762 cfs_cpt_online +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5c013b81 cfs_expr_list_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5d73c3e3 cfs_expr_list_free_list +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5df8c623 cfs_cpt_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5e0e7e45 cfs_hash_add +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5fc606ca cfs_hash_bd_add_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x61ed4a68 cfs_hash_bd_del_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x62289d65 cfs_array_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x630344ba cfs_hash_del_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x63be5b7f cfs_race_waitq +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x66118175 cfs_hash_debug_str +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x67398404 cfs_wi_sched_destroy +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x6c473f8c cfs_crypto_hash_update_page +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x71e3804b cfs_crypto_hash_digest +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x71f662a3 libcfs_debug +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x73d92a0d cfs_hash_bd_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x79804350 cfs_hash_lookup +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x7f4a1511 cfs_hash_size_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x7fda989d cfs_fail_loc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8151c3aa cfs_cap_raised +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x828d16a2 cfs_cpt_table +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x880a8731 cfs_hash_add_unique +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8b8f321d cfs_crypto_hash_speed +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x93361e2b cfs_hash_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x93896a8b cfs_crypto_hash_init +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x940ed192 libcfs_stack +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9879b229 cfs_get_random_bytes +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x98f0e065 libcfs_deregister_ioctl +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9f82f712 cfs_trace_copyout_string +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa28a6757 cfs_percpt_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa2b68b2a cfs_array_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa328af13 cfs_hash_is_empty +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa9088531 cfs_expr_list_values +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa9dc74e2 cfs_trace_copyin_string +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xac0f67e3 cfs_cpt_unset_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xad019238 cfs_str2num_check +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xadb100a9 lprocfs_call_handler +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xae8346a6 cfs_hash_for_each_safe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb238f333 cfs_hash_bd_lookup_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb473e79e cfs_wi_sched_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb56c4c2e cfs_percpt_lock_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb7b53599 cfs_hash_for_each +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xbc275420 cfs_cpt_unset_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xbfde5427 cfs_hash_getref +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc0ea7fc0 cfs_expr_list_parse +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc2911d96 cfs_expr_list_match +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xcb2160d3 cfs_cpt_of_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xcc7e1d13 cfs_percpt_lock_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xcf61bacb __cfs_fail_check_set +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xcf90528c cfs_cpt_table_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd1319447 cfs_cpt_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd5396536 cfs_cpt_set_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd96f406d cfs_cap_raise +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xdbc40be0 cfs_hash_hlist_for_each +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xdce448d0 cfs_cpt_set_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xde83075f libcfs_kvzalloc_cpt +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xdf2789c0 cfs_curproc_cap_pack +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe2f91ce3 libcfs_debug_msg +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe3bf6897 cfs_percpt_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe45b62ff cfs_cpt_current +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xeceac781 cfs_fail_val +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xee92bb75 cfs_percpt_lock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf0246bf2 cfs_cpt_table_print +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf03bdf11 cfs_wi_schedule +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf2456875 cfs_hash_for_each_empty +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf3565b71 libcfs_debug_vmsg2 +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf372d1c2 cfs_firststr +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf782fbe6 cfs_cpt_weight +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xfa0d98ca cfs_cpt_set_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xfaf88a73 cfs_hash_debug_header +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x0090e935 libcfs_net2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x043e2846 lnet_notify +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1366b7ac LNetSetLazyPortal +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x146ecc13 lnet_sock_write +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x19670622 LNetNIInit +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1a60d439 cfs_parse_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1ee5f15e lnet_ipif_query +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1fe16fd5 LNetGet +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x25fe8fe5 lnet_sock_setbuf +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x2a622507 the_lnet +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x2aa9953d lnet_cpt_of_nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x2ac93e90 lnet_connect_console_error +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x33202a6c LNetGetId +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x35b410ec lnet_copy_kiov2iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x3c779ee0 LNetPut +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x3f4f5b46 LNetNIFini +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x41c04cd6 lnet_create_reply_msg +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x473ad33b LNetDist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x48f163c6 libcfs_str2anynid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x50345570 libcfs_str2net +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x53069e4d lnet_kiov_nob +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x55db5324 lnet_iov_nob +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x58a1ca89 LNetMDUnlink +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x5d33231e lnet_extract_kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x5e91cfec lnet_copy_iov2iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x5fee352c lnet_acceptor_timeout +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x61f784b2 LNetClearLazyPortal +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x64cdea3a LNetCtl +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x66d449b1 lnet_ipif_enumerate +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x679b93ef lnet_connect +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x722c76e5 LNetMDAttach +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x786b467a libcfs_nid2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7d59a7fe LNetMEInsert +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x83d795e4 cfs_match_nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x8e18dc7c LNetDebugPeer +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x90f64907 lnet_copy_iov2kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x93c3e8a6 lnet_copy_kiov2kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x94c5de53 lnet_unregister_lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x97f5966b libcfs_lnd2modname +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x9de986d3 LNetEQAlloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xa563a91d lnet_register_lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xa56de08d lnet_ipif_free_enumeration +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaa414970 LNetMEUnlink +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaa9b477e LNetMDBind +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xade657cc libcfs_next_nidstring +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb2d9411b lnet_sock_getaddr +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb3235c5b cfs_nidrange_find_min_max +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb622e527 lnet_set_reply_msg_len +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb75f7953 LNetEQFree +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xba5566d2 lnet_acceptor_port +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xbc3189fd lnet_sock_read +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xbf0760a2 LNetMEAttach +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xc7f5263f lnet_parse +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xccc45639 cfs_free_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xcf4eb544 cfs_print_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xd1c2f3e4 lnet_extract_iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xeaeb6565 cfs_nidrange_is_contiguous +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xec1f56d5 libcfs_str2nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf1860a60 lnet_finalize +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf1b316bf LNetSnprintHandle +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf30efdf5 libcfs_lnd2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf65abead lnet_sock_getbuf +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf77246b0 lnet_net2ni +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf8a8644b libcfs_id2str +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf94025d1 libcfs_str2lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfa106804 lnet_counters_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfe7ca17c libcfs_isknown_lnd +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x1c4bb5f9 LU_OBF_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x375e6f8d LUSTRE_BFL_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x5508ca18 seq_client_alloc_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xae61cff5 LU_DOT_LUSTRE_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xb7339d82 client_fid_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xc997a02f LUSTRE_SEQ_SPACE_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xdc5b7e5d client_fid_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xecee2727 LUSTRE_SEQ_ZERO_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xfed8c167 seq_client_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x8b026b80 fld_client_lookup +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x93329b78 fld_client_del_target +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xab8c0fbe fld_client_add_target +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xc50eee2b fld_client_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xdf8860d9 fld_client_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xe6e76cee fld_client_debugfs_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xedab6bc1 fld_client_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0x08e883bd ll_iocontrol_register +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0x8ca449e8 ll_stats_ops_tally +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0xcd3cde92 ll_iocontrol_unregister +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0xf6d206be ll_direct_rw_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x3ac6d38a lov_read_and_clear_async_rc +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x5802bbe7 lov_device_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x689e9de8 lov_lsm_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0xf35666d8 lov_lsm_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/mdc/mdc 0xccde0209 it_open_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/mgc/mgc 0xdc287f95 mgc_fsname2resid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x022e63b4 cl_object_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x035852d0 lustre_swab_llog_rec +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x03f9b984 llog_process +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x04e2392a lu_device_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x06b2d17d lu_context_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x07273c16 libcfs_kkuc_msg_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x07aa68bb lustre_swab_lustre_cfg +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x07d45876 obdo_set_parent_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x083942ff class_del_profile +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x083fb1ec lu_device_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0865a0d2 lu_device_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x08747fba lu_object_add_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x093cf50f lu_context_key_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x09c026c7 cl_page_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0ab554e7 lu_device_type_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0ad38bb2 class_put_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0c378d79 lustre_swab_llog_hdr +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0c58b8b9 cl_2queue_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0d2be062 cl_io_sub_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0e3acb0c cl_req_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0ea4c553 cl_io_is_going +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1010d6e7 cl_io_rw_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x103c5ee6 lprocfs_wr_uint +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x11495519 lprocfs_write_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x13ee7c77 lprocfs_rd_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x15033855 cl_lock_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1570e2fe cl_page_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x15bbfc97 cl_env_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x17c1530d lu_object_locate +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x17ea22d7 cl_page_clip +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1858c0f9 cl_index +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x18aca8aa lu_context_refill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x19423d35 cl_lock_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1a0f4807 lprocfs_rd_uint +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1ce94fec cl_page_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1cfd7547 lu_context_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1f2547ec class_register_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1f3dfb0d lprocfs_stats_collect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1f7a60dd cl_io_submit_sync +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1f7ce3d2 cl_object_prune +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x221826f1 class_parse_nid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x252407df lu_kmem_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2547efae lustre_uuid_to_peer +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x275cdc7a cl_env_reexit +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x286860f5 class_handle_free_cb +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x28990297 cl_lock_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x297cf5e0 class_handle2object +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2af04251 class_num2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2b5f72cd lu_context_enter +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2eac1b27 class_exp2cliimp +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x306ddc2f cl_page_header_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x31443fb6 cl_object_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x316f7431 cl_io_iter_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3242ed35 obdo_cachep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x33734ae2 cl_conf_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3450c289 libcfs_kkuc_group_rem +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3502fbc1 lprocfs_rd_server_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3726f79e cl_lvb2attr +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x37ed6e4b at_early_margin +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x386ab0aa class_conn2export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x39382da8 cl_page_list_move +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3f9a510e cl_2queue_discard +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x41dd015f lustre_end_log +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x42478026 cl_io_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x430446f8 cl_page_is_vmlocked +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x439f991f cl_stack_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x43e9367f lprocfs_exp_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x44325d83 llog_cat_process +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x449ac0ea lu_object_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4508d3c4 lu_object_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4646cd38 obdo_from_inode +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4797e812 lprocfs_seq_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x47b35f7d statfs_unpack +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x48e42a6b cl_page_list_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4977a3eb cl_page_unassume +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x49a29223 lprocfs_find_named_value +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4a41ccc9 libcfs_kkuc_group_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4ac58713 obd_connect_flags2str +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4d824323 cl_page_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4db4dcb7 cl_io_lock_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x50c7fc36 ptlrpc_put_connection_superhack +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x52d2c932 lu_site_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x53a15c3e lu_site_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x54e0de58 cl_vmpage_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x552c0ad9 cl_env_cache_purge +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x558bec27 obd_ioctl_getdata +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5627cce8 lprocfs_oh_tally +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x570d09ae lustre_swab_lu_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5718d607 cl_page_is_owned +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x57503cc0 lu_object_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x57735cf6 lustre_common_put_super +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x57b89989 class_exp2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5a64d92d lprocfs_counter_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5a7ae2f1 cl_site_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5b298a62 lu_site_purge +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5c07f8b0 cl_object_glimpse +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5c1ce967 cl_lock_descr_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5cde90b1 lu_object_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5ce82410 llog_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5d44d08d class_devices_in_group +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5de01627 lprocfs_counter_sub +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5ea754a9 lu_device_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5f143e38 class_export_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5f8dc68f cl_type_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5fe97b73 block_debug_check +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5ff3ca1b cl_page_assume +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x612c98ae cl_req_completion +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x61e98df7 libcfs_kkuc_group_foreach +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6293ecef cl_page_own_try +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x62951fc1 md_from_obdo +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x645cd8e1 llog_init_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x657bae42 cl_site_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6614cc72 cl_page_list_del +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6734adbd lprocfs_read_frac_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x67aa67cb cl_io_lock_alloc_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x67ed8ed3 cl_page_list_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6890d175 lustre_get_jobid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x690cbb84 lu_stack_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x699bd270 lprocfs_alloc_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x69c42114 at_min +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6a31f9db lu_site_stats_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6db4f41e cl_env_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6e9118d6 cl_page_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6f54f96e libcfs_kkuc_group_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6f668fd4 class_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6faa5187 lu_context_key_degister_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x724d7690 cl_offset +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7353dc4c cl_2queue_init_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x736cbc7a cl_page_make_ready +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x742559b1 class_unregister_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7492880c llog_thread_key +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x752168d8 obd_unstable_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x752f71a8 class_get_profile +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x756a77f3 class_parse_nid_quiet +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7649b592 lu_context_key_degister +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x77889636 cl_env_nested_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x77d2089a class_name2dev +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x77d87fbc cl_object_header_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x77e97bf4 lu_object_unhash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7802fcd7 lustre_swab_llogd_conn_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x788d6b21 cl_2queue_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x789796a1 obd_zombie_barrier +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7a104873 cl_object_attr_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7ad93466 cl_object_kill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7b4fc57b at_max +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7bca7f79 cl_page_completion +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7c0a1836 lprocfs_rd_conn_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7c2a1d45 class_new_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7e28e454 cl_page_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7edcafa0 cl_env_reenter +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7f1812e7 cl_object_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7fe5561a obd_dirty_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x806cc497 class_add_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x80fc0ab6 lu_object_header_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x81742d89 obd_ioctl_popdata +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x82457bcb lu_context_key_revive +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x831f656c class_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8446b9a8 obdo_to_ioobj +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x86b20018 lustre_register_kill_super_cb +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8a23a0a5 lu_context_exit +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8a7a38e1 lu_site_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8aa83205 lu_device_type_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8abca9a7 cl_object_find +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8b9226ce cl_io_iter_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8ba6e479 lustre_swab_lu_seq_range +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8f67314c obd_dump_on_eviction +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x90dca8eb class_new_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x921d7213 cl_page_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x92e58479 obd_dump_on_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x94677235 lprocfs_clear_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x95735c6c at_extra +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x965f1877 cl_req_page_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x973a6590 lu_context_key_revive_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9767adce class_uuid2dev +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x97d03783 at_history +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x97d45549 lprocfs_rd_connect_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x99a701e8 cl_page_own +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9a98ad96 lustre_register_client_fill_super +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9b1ed9d8 obd_jobid_var +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9c3b5aba lu_env_refill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9c4438da class_import_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9ce96606 class_name2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9d8c8ed5 class_incref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9da02b5d llog_close +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9df76553 lu_site_init_finish +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9ea5cdce cl_page_discard +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9f7c9362 cl_page_list_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa10569fe class_export_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa160da4a lu_object_header_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa246e9b7 cl_io_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa326b4bc cl_cache_incref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa338b095 lu_env_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa3f173f2 cl_req_attr_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa43556b7 lu_object_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa5fb234f lprocfs_write_frac_u64_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa675d987 cl_io_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa862d221 lprocfs_oh_clear +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa9be6605 cl_page_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa9d6c5d8 cl_page_prep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xad8e04aa cl_io_commit_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xadb2e9b4 llog_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xae35f8df cl_object_attr_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb01963a6 class_uuid_unparse +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb0ef66f7 llog_open +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb16ce71e class_connect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb172fadc lu_object_header_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb35519ed lustre_swab_cfg_marker +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb4c015cd lu_context_key_quiesce +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb4f8ee63 lprocfs_read_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb5672664 class_config_parse_llog +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb60afaab cl_io_read_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb6e463d8 class_import_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb7931e00 cl_io_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb8d070c1 cl_req_page_done +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb9431d91 lu_object_find_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb9435c59 cl_lock_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb9dfa513 class_handle_unhash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb9e5f57a cl_page_list_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xba985283 lustre_register_client_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbacac922 lprocfs_write_frac_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbad00b3b lustre_process_log +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbbb7cb30 cl_object_attr_unlock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbbce3142 cl_lock_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbd1d96e1 class_fail_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbdb70fb3 lu_context_key_register +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbf1642c1 cl_io_loop +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbf9e695e lprocfs_oh_tally_log2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc03d4c30 cl_io_submit_rw +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc0bf7ef2 obd_debug_peer_on_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc18f0930 lu_object_find_slice +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc1b9a319 lprocfs_oh_sum +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc2ceb4ea cl_page_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc69cc3b5 cl_env_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc75bc19b cl_sync_io_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc820f70f cl_env_unplant +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc83bbecd class_disconnect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc87e1276 cl_page_list_move_head +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc8945909 lu_context_key_register_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc950628a cl_lock_mode_name +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xca8befce cl_env_implant +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcb0ab67f obd_max_dirty_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcbc8be2e cl_page_find +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcd12b2cd cl_req_prep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcd3b512e cl_page_delete +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcf061aad cl_req_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcf9ac4c8 class_destroy_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcfabe16c llog_process_or_fork +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcfd8b9b2 cl_io_start +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd21ccecd cl_site_stats_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd291caa7 cl_cache_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd3f2681c cl_object_attr_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd40dd2ac class_unlink_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd4dc9efa lprocfs_at_hist_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd6f1d05d cl_cache_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd6f849dd cl_env_percpu_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd70fe669 lustre_swab_llogd_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd74c05e6 lprocfs_rd_timeouts +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd752eb11 cl_page_list_splice +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd7bc8654 obd_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd7c70183 cl_sync_io_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd8263836 obd_devs +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd88f57d3 cl_env_nested_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd94212be lprocfs_counter_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xda5b1ced class_find_param +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdad2ef81 cl_lock_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdc99d928 llog_cat_close +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdcc40af0 class_check_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xddac003d class_process_proc_param +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xddd20b54 class_handle_hash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xddfeb2fc lu_env_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xde01128f cl_lock_enqueue +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xde7d985b obd_dirty_transit_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdeb312ca class_manual_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdf623799 lprocfs_stats_alloc_one +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdfc184ea lu_context_key_quiesce_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe077fc1c obdo_refresh_inode +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe19f4778 class_find_client_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe583b23b lu_kmem_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe7ec4bd5 cl_lock_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe8f1532a cl_sync_io_note +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe98ea8eb cl_sync_io_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe9cca714 cl_page_is_under_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xebacdb57 lu_cdebug_printer +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xec7d6b85 obd_timeout_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xeec5c3f6 lprocfs_single_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xef76f858 block_debug_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf0d9e739 __llog_ctxt_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf480061f class_config_llog_handler +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf490d5f9 class_del_profiles +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf4b47d68 cl_env_percpu_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf4fec01c cl_page_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf54734a0 cl_io_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf5ac3089 cl_lock_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf656f8c9 cl_2queue_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf7f42641 lprocfs_free_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf9ce72a9 cl_page_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfbea0098 lu_types_stop +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfc05b5e0 cl_io_unlock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfd68d17a class_notify_sptlrpc_conf +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfdbe1557 lprocfs_write_u64_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfeffde14 cl_io_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xff7fab41 lprocfs_rd_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfffc1f11 lustre_swab_ost_id +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x002a449e client_import_add_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00cb99c1 RQF_LDLM_INTENT_GETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00d95039 ptlrpcd_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0134daff ldlm_cli_cancel_list +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x048b59d5 lustre_msg_set_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0515f93b RQF_FLD_QUERY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x051fb455 ldlm_lock_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0563c2fb llog_client_ops +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0659bd6d lock_res_and_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x06b3942b lustre_swab_lov_user_md_objects +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x071fc74a RQF_LDLM_ENQUEUE_LVB +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x08bb2d27 lustre_swab_obd_ioobj +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x094f64fa lprocfs_wr_ping +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x095099c1 ldlm_completion_ast +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x095587d0 lustre_msg_buflen +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x09602248 sptlrpc_cli_ctx_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0a250708 ldlm_prep_elc_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0a3130b0 RMF_MDT_EPOCH +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0ac252b2 lustre_msg_set_jobid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0ac54708 lustre_errno_hton +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0bcacb5d RMF_MDS_HSM_USER_ITEM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0cf343dd RQF_LDLM_INTENT_BASIC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0e8ee8f6 req_capsule_client_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0fe9675f req_capsule_client_sized_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x10a1a86d ldlm_error2errno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x115017f6 req_layout_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x11e035d3 ptlrpc_send_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x12b6f5a3 ptlrpc_connection_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1348938e sptlrpc_cli_enlarge_reqbuf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x13af0a44 sptlrpc_target_export_check +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x14708afc lustre_swab_mdt_rec_reint +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x14d192db lustre_msg_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x14f4f48e ptlrpc_resend_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x152f066f sptlrpc_flavor_has_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x15a3e4db RMF_GETINFO_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x172fb86d lustre_msg_hdr_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x173fdaa3 ldlm_lock_fail_match_locked +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1747d8b3 ldlm_lockname +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x17950f60 RQF_SEC_CTX +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x181ce3fe ldlm_lock_set_data +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x18d9e50b ptlrpc_unregister_service +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19108a0f RQF_OST_DISCONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19149797 ldlm_namespace_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19c08934 RQF_LDLM_INTENT_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1a6a3ce9 RQF_OST_GET_INFO_LAST_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1a9b76aa RMF_OBD_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1abd3258 RMF_SETINFO_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ace4b5f RQF_LDLM_BL_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ad6c330 RMF_EAVALS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1b7e9c44 ptlrpc_init_rq_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1be21715 lustre_msg_size_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1c212f3d do_set_info_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1c300d8e lustre_msg_get_slv +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1dc2051d RMF_SEQ_OPC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1dd03f8e ptlrpc_request_bufs_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1de9c288 lustre_swab_layout_intent +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1eb2a65f RQF_OST_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ee46b51 lustre_init_msg_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ee9eb3c RQF_MDS_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2000b509 req_capsule_get_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2096f5b5 RQF_OST_SET_GRANT_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x219391ec RMF_EAVALS_LENS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2331c3be _ldlm_lock_debug +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x233790b5 RMF_OST_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x23e60b3b ptlrpc_unpack_req_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x24aafdba RMF_MGS_TARGET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2585a629 RMF_SEQ_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2587513c RQF_LDLM_CP_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x25d56e83 lprocfs_rd_pinger_recov +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x269554ce RQF_LDLM_INTENT_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x26d74231 req_capsule_shrink +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x26f99d16 RQF_MGS_CONFIG_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x273e238f ldlm_pool_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x28430cad ldlm_namespace_dump +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x285e5b99 lustre_msg_set_conn_cnt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x29149a4f __ptlrpc_prep_bulk_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x29e0869a sptlrpc_get_hash_name +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2a63a472 lustre_swab_ptlrpc_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2ba2c623 ptlrpc_set_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2c00c60d ptlrpc_sample_next_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2c4f63b8 ptlrpc_set_add_new_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2cbdb9fb ptlrpcd_add_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2cec385f ldlm_lock_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d56f168 ptlrpc_pinger_ir_up +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d798316 RMF_MGS_CONFIG_RES +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e4562fe RQF_LLOG_ORIGIN_HANDLE_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e4ca396 RQF_LDLM_INTENT_UNLINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2f0e4f87 RQF_OST_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2f793215 lustre_swab_ost_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2fab3539 lustre_swab_ost_lvb_v1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2fd2f737 lustre_msg_set_limit +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x301d4fcd RQF_MDS_READPAGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x302937e0 RQF_MDS_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x31f68c5d sptlrpc_conf_client_adapt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3261b862 RQF_OST_SYNC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x35939a3d lustre_swab_fiemap +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x367531ee ptlrpc_start_threads +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3835ab4b RQF_LLOG_ORIGIN_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3858fb94 RMF_OBD_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x38c01799 RQF_LDLM_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x38fce533 lustre_msg_set_versions +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x39f51329 ptlrpc_prep_bulk_imp +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x39f60a5f RMF_OST_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3a1e4bcb __lustre_unpack_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3aa694cd ptlrpc_prep_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ab90f6e lustre_msg_bufcount +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ac00716 lustre_swab_hsm_user_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3b6b7cba dump_ioo +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3bedb0c7 RMF_LLOGD_CONN_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c63e62b RQF_MDS_REINT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c8b16ab lustre_swab_ost_lvb +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ca50f33 RQF_MDS_HSM_CT_REGISTER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3d7dc5f9 ldlm_pools_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3dc47695 lustre_msg_get_magic +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f034caf lustre_msg_get_status +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f35a11d RQF_FLD_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f752e78 RQF_MDS_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x41008cef RQF_LDLM_CANCEL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x41030bfa sptlrpc_cli_unwrap_bulk_read +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x41909c1f ldlm_lock_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x42075f09 ldlm_lock_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43168488 RQF_MDS_RELEASE_CLOSE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4351e916 lustre_swab_hsm_user_item +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43705ee4 RQF_LOG_CANCEL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43d7efc8 lustre_msg_set_transno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x44036eda RQF_MDS_GET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x440c2a71 RMF_FIEMAP_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4481591d RQF_OST_SET_INFO_LAST_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4529e766 ldlm_extent_shift_kms +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45972562 ptlrpc_replay_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45d05893 lustre_swab_lustre_capa +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45e30cea lustre_swab_ldlm_intent +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x46421683 ptlrpc_register_service +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x46c0bbff ldlm_resource_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x47f5e903 RMF_MDS_HSM_REQUEST +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x494874af req_capsule_server_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x49959119 req_capsule_server_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4a5a2416 RMF_DLM_REQ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4b848eeb ldlm_pool_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e1706e5 lustre_msg_buf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e696b96 ptlrpcd_queue_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4eb03a6f ptlrpcd_destroy_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4f766c3b lustre_swab_generic_32s +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4fe16c2c req_capsule_has_field +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x50443f6a ptlrpc_init_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5097d37a ldlm_lock_allow_match_locked +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x50dd74f8 RMF_STRING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x514b2c8a lustre_pack_reply_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x514b3851 lustre_swab_ldlm_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x51e311e9 lustre_swab_ldlm_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x52c62150 RMF_RCS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x53411557 RMF_DLM_REP +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x53a4a004 bulk_sec_desc_unpack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x53ab4e44 ptlrpc_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x555eb7fe RQF_MDS_HSM_STATE_SET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x55b0cf5d lprocfs_wr_pinger_recov +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x56f135a3 ptlrpc_request_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5743accc ldlm_cli_enqueue +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x595ab175 lustre_swab_obd_quotactl +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x596582bf RMF_GETINFO_VALLEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5b6ba895 lustre_packed_msg_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5c6a3a83 RQF_SEQ_QUERY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ca1b491 lustre_swab_close_data +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5caae213 ptlrpc_next_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5cf55015 ptlrpc_invalidate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5d86e37a ptlrpc_pinger_add_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5daea98b req_capsule_server_sized_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e0b19b1 RMF_CLUUID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e2b7558 lustre_msghdr_get_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e6f435d RQF_OST_BRW_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e80f899 RQF_LLOG_ORIGIN_HANDLE_READ_HEADER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5eadd635 ptlrpc_reconnect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ec3284d RQF_MDS_HSM_CT_UNREGISTER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ef831ee lustre_msg_get_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5f96ccdd ptlrpc_connection_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5fc9a455 RMF_CLOSE_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6042bc15 RQF_MDS_REINT_RENAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x604e2505 RMF_SWAP_LAYOUTS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x60cd26ad RQF_MDS_REINT_CREATE_SYM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x615d9b8f ptlrpc_retain_replayable_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x61633622 lustre_pack_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x61646e1b RQF_MDS_SWAP_LAYOUTS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x618ad203 RQF_OST_GET_INFO_LAST_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x62aaae3f RQF_MDS_HSM_REQUEST +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6315dd4c RMF_LLOGD_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6352a62d ldlm_get_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x63c1c8d0 llog_initiator_connect +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x64e425fb sptlrpc_gc_del_sec +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x653723dc RMF_LOGCOOKIES +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x67872efa ptlrpc_obd_ping +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x685eeaba RMF_DLM_GL_DESC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x68f49e5e ptlrpc_expired_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6912990a RQF_OST_QUOTACHECK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x696ba811 lustre_msg_get_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x69c9f04d RQF_MDS_REINT_LINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6a3785c9 RMF_EADATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6a5f9d68 ldlm_pool_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6c885f47 ptlrpc_check_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6d72828c sptlrpc_conf_log_update_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6e3c38a4 sptlrpc_sec_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6e98801b ptlrpc_mark_interrupted +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6efa82b0 RQF_MGS_TARGET_REG +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6f15811a _debug_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6f693ce2 ldlm_cli_update_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6fb92092 sptlrpc_flavor2name_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x703538e4 lustre_swab_hsm_current_action +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7037d607 sptlrpc_target_sec_part +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7068761d ptlrpc_activate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7151fdbd ldlm_lock2desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x725a892c RQF_MDS_REINT_OPEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x74840056 lustre_msg_set_status +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x748c1e08 ldlm_namespace_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7558662d ptlrpc_request_free +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x75a2c40d ldlm_put_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x75e4ca61 RQF_OST_GET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x76b446f2 sptlrpc_cli_wrap_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x77aacdfa client_destroy_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7832b9e0 ptlrpcd_alloc_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x78cc5810 client_connect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7a832f10 RMF_CONN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7a8d8d8b lustre_pack_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7bbf8001 RMF_MDT_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7c4c6107 RQF_LDLM_CONVERT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7c8edc7f ldlm_lock_change_resource +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7ca4645f req_capsule_server_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7d0cfa12 req_capsule_set_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7d1ecd7f RQF_LDLM_INTENT_LAYOUT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7dfb3c18 lustre_msg_clear_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7eea9227 ldlm_prep_enqueue_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7f5a1cc7 lustre_msg_set_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7fb3d87c sec2target_str +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x803dc68a ldlm_resource_dump +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x80ecb4e3 RMF_MDS_HSM_CURRENT_ACTION +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x817d7f1f lustre_msg_add_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x818388ca ldlm_lock_decref_and_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x81ce1f66 ldlm_cli_cancel_unused +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x81d6a8f8 ptlrpc_add_rqs_to_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x826d3c4f RQF_LDLM_GL_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8376ed92 client_obd_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x837efb00 RMF_NAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x83eeeea2 ptl_send_rpc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85135801 RMF_DLM_LVB +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85a9e0d8 RMF_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85eecf67 sptlrpc_get_hash_alg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x86145421 ptlrpcd_wake +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x863db6eb RMF_HSM_USER_STATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x870370fb ptlrpc_unpack_rep_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x876c2551 RMF_GETINFO_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x87bf7b3c sptlrpc_get_next_secid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8872f3d2 RMF_SETINFO_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x887c3719 ptlrpc_request_alloc_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x88fff52d RMF_CAPA2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x890f7f67 sptlrpc_gc_add_sec +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x89215c63 ptlrpc_req_finished +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x896cdfca ptlrpc_disconnect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x89ec9a94 ptlrpc_prep_fcset +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x89f9edf7 RQF_MDS_REINT_SETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8a1ea476 lustre_swab_hsm_state_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8a257736 RQF_MDS_HSM_STATE_GET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8a5c1f23 client_import_del_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8ac440fa ptlrpc_uuid_to_connection +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8b656058 ptlrpc_send_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8b854254 lustre_swab_mgs_config_res +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8c027dd1 ptlrpc_queue_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8cb71d4b RQF_MDS_REINT_CREATE_SLAVE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d1ab900 ldlm_lock_dump_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d4df619 ptlrpc_request_alloc_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d6f78a4 ptlrpc_resend +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d77ea75 lustre_msg_set_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d8280c7 ptlrpc_request_set_replen +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8da3fca7 lustre_msg_add_version +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8e9abe4d RMF_GENERIC_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8ee21f0d ptlrpc_set_import_active +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8f0aceac RQF_MDS_HSM_ACTION +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8fec0451 lustre_msg_get_limit +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9113f109 ldlm_cli_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9160dbde client_disconnect_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x919c4ce3 RMF_OBD_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x91c10aa5 ptlrpc_buf_need_swab +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x91cf58d3 RQF_MDS_PIN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9228392f lustre_swab_mdt_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9277ae5e RQF_MDS_REINT_CREATE_ACL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x93197e89 ldlm_lock2handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x937b1ee0 lustre_swab_mdt_ioepoch +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x93c4e240 ldlm_lock_match +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x949d05d0 unlock_res_and_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9553c633 RQF_LDLM_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9564a202 ldlm_lock_addref_try +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x95d08f0c lustre_swab_mgs_target_info +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9660ace0 RMF_FLD_MDFLD +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x967bfd52 RQF_OBD_PING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9798f2f1 RQF_MDS_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x980fcfdc ptlrpc_connection_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9999cf7a dump_ost_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9a258886 RQF_MDS_GETSTATUS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9a6f2f6d lustre_msg_set_opc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9b6c6cd5 ptlrpc_lprocfs_register_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9b88f6ce RMF_NIOBUF_REMOTE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9bb5198b RQF_MDS_CLOSE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9d7ea314 sptlrpc_pack_user_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9e12a9a3 ldlm_namespace_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9eed02b2 req_capsule_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9fb088f1 lustre_swab_lov_mds_md +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa163f4c3 dump_rniobuf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa2244636 RQF_MDS_GETATTR_NAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa3d2a6ee RMF_CAPA1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa465ed42 lprocfs_wr_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa47787ef RMF_PTLRPC_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa4a2d089 RQF_OST_PUNCH +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa4b8ef50 lustre_free_reply_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa6c436ca RQF_MDS_WRITEPAGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7a03774 ldlm_cli_cancel_list_local +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7e360b1 RMF_OBD_IOOBJ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7ec567d RMF_CONNECT_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa812c847 ptlrpc_recover_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa956ff5e ptlrpc_at_set_req_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9704f80 lustre_msg_get_last_committed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa988e3b4 ptlrpc_request_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9c4658e lustre_swab_lov_user_md_v3 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9e40b00 ldlm_lock_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaa91f347 req_capsule_filled_sizes +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaaad6d50 ptlrpc_abort_inflight +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xac7bb513 ldlm_resource_putref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xacd6a7d7 lustre_swab_ost_last_id +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xad7ca9cc ptlrpc_set_add_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xae9de7f4 ptlrpc_add_timeout_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaead840a sptlrpc_cli_unwrap_bulk_write +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf4e9658 RQF_MDS_SYNC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf50a0d6 RMF_HSM_STATE_SET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb0751fa4 RQF_LLOG_ORIGIN_HANDLE_DESTROY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb1b43d8a dump_rcs +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb291473d lustre_msg_early_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb4a7ecf3 lustre_msg_add_op_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb512ebc2 sptlrpc_parse_flavor +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb61cb95a RQF_MDS_GETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb68476df interval_erase +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb6aafd03 RQF_MDS_DONE_WRITING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb7b38189 RMF_MDT_MD +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb7fa3cc8 RMF_LLOG_LOG_HDR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb8927bec ldlm_completion_ast_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb903634e RQF_OST_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb9b631cf lustre_swab_mgs_config_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbaa76097 lustre_msg_string +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbc1370dc lustre_shrink_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbcf8a317 __ptlrpc_free_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbd1e03fc ldlm_cli_cancel_unused_resource +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbd83bc44 RQF_OBD_SET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbe5e31f9 ptlrpc_buf_set_swabbed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbeb7e023 ptlrpc_set_next_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbef769cc RQF_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbf16042a ptlrpc_request_committed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbf98b86f RQF_MDS_QUOTACHECK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbffd4313 RQF_OST_BRW_WRITE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc02b26c8 sptlrpc_unregister_policy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc06c4670 lustre_msg_get_versions +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc0867da7 RMF_REC_REINT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc0cdf55e RMF_MGS_SEND_PARAM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc210d18c ptlrpc_init_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc2b1af57 RQF_MGS_SET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc2be922a RMF_SYMTGT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc3699ea0 req_capsule_extend +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc559a634 RMF_LAYOUT_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc60a60e1 RQF_OST_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc694be4b RQF_LLOG_ORIGIN_HANDLE_PREV_BLOCK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc6f08b6b ldlm_namespace_new +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc763fabc sptlrpc_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc79b9c67 ldlm_pools_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc7ca8257 RQF_MDS_REINT_SETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc7e47564 ptlrpc_interrupted_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc8f586a9 ptlrpc_connection_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc96547d6 ldlm_revalidate_lock_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xca5a81ec ptlrpc_pinger_ir_down +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcb2cc0cf lustre_swab_lquota_lvb +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcc41e076 ptlrpc_unregister_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcd336cd9 ptlrpc_pinger_sending_on_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcd6c9cd3 ldlm_cli_enqueue_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xce32f85b ptlrpc_schedule_difficult_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xce86066d lustre_msg_set_slv +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcebfdb38 ldlm_pool_del +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcec513c9 RQF_MDS_UNPIN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcf83a5e6 ptlrpc_lprocfs_unregister_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcf9963db lustre_msg_get_op_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcf9aab6a RQF_MDS_DISCONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcf9cee7c ldlm_flock_completion_ast +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcfa2ecfc lustre_pack_reply_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd17e60ae ldlm_resource_iterate +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd20f4910 sptlrpc_enc_pool_put_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2983334 lustre_swab_swap_layouts +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2e0d4eb lustre_msg_get_opc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd3dae408 ldlm_it2str +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd5e7a0ec ptlrpc_lprocfs_brw +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd69e0a27 RQF_MDS_IS_SUBDIR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd6c3ebfb RMF_FIEMAP_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd7910326 lustre_swab_obd_statfs +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd8b91b3e lustre_swab_lov_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd8f06300 RQF_MDS_HSM_PROGRESS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd9561861 RQF_LDLM_INTENT_OPEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xda84008f sptlrpc_register_policy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xda87881b req_capsule_client_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xda9d12cc ptlrpc_request_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb1fb0a2 RQF_MDS_REINT_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb74057f lustre_swab_hsm_progress_kernel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb9d5a6a lustre_swab_niobuf_remote +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd0ffb04 sptlrpc_flavor2name +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd30d7bf RMF_ACL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xddc40a85 lustre_msg_get_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xde032c2d ptlrpc_pinger_del_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xde12d36b RMF_MDS_HSM_ARCHIVE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdee87192 sptlrpc_conf_log_update_begin +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdf701ae7 lustre_swab_fid2path +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe032afb4 target_send_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe0cc694c RQF_LLOG_ORIGIN_HANDLE_NEXT_BLOCK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe239cca6 req_capsule_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe40e0a50 lustre_msg_get_transno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe57bd972 sptlrpc_current_user_desc_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe5e8169b lustre_errno_ntoh +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe61beef4 sptlrpc_cli_ctx_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe62a2ca0 req_capsule_server_sized_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe643998e RQF_OST_SETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe6677083 ldlm_lock_allow_match +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe6f0dc96 RQF_OST_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe7062b5f RMF_U32 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe7512278 ptlrpcd_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xebb64e68 req_layout_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xec3625ec ptlrpc_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xec939a00 RQF_MDS_REINT_UNLINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xed1534ae ldlm_resource_unlink_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xed1584fc ldlm_replay_locks +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xed1c10d6 ptlrpc_connection_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xed44c432 sptlrpc_import_flush_all_ctx +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xedcb740d sptlrpc_name2flavor_base +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xee59ecad ptlrpc_connect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xeeba8385 sptlrpc_get_bulk_checksum +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xef1aeca9 RMF_FLD_OPC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xefdf89b2 sptlrpc_lprocfs_cliobd_attach +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf1300275 _sptlrpc_enlarge_msg_inplace +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf277c125 RQF_OST_GET_INFO_FIEMAP +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf2c7f793 ptlrpc_set_destroy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf3d44370 RQF_OST_DESTROY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf43540b9 lustre_swab_mgs_nidtbl_entry +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf45085e1 sptlrpc_conf_log_stop +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf482bab5 target_pack_pool_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf48ed6cb ptlrpc_free_rq_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf55c033b RMF_MGS_CONFIG_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf55cf643 client_import_find_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf596e9ae sptlrpc_conf_log_start +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf607fc23 sptlrpc_flavor2name_base +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf617ab8a lustre_msg_get_conn_cnt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf697b756 ldlm_dump_all_namespaces +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf6c8f21c ptlrpc_unregister_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf7408f84 lustre_swab_hsm_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf7ba40c0 RMF_MDS_HSM_PROGRESS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf8407f3e ldlm_cancel_resource_local +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf870fed9 RQF_LDLM_GL_DESC_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf8ecd7c2 ptlrpc_req_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf9051bd6 RQF_QC_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf973aa93 lustre_swab_lov_user_md_v1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf9f72dfc RMF_TGTUUID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfa51688d interval_insert +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfade749b ptlrpc_wake_delayed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfb8fafef sptlrpc_import_sec_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfc2fa83f ptlrpc_del_timeout_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfce8b82d ptlrpc_fail_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfd148bf8 RMF_LDLM_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfd2068db req_capsule_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfd6f7e74 __ldlm_handle2lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfd825d1e sptlrpc_import_flush_my_ctx +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfe143c51 ptlrpc_deactivate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xffc807e8 sptlrpc_unpack_user_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xffe29c3f RQF_LDLM_ENQUEUE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfff48f09 client_obd_setup +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x62fddd45 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x56557876 most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x04b68d4e rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0723b3fa rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0830f0a1 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x089ee3e4 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d25b063 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x10a6b615 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x12f9cc15 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x14537dd4 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1599a89f rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1fd01d10 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x20489eb5 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32097429 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x405f1099 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4123083a rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x431e3563 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x47a60882 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4a9b7199 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x50f50d9f rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x51703548 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5721ee98 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x58d2411f rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5a7201f6 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5c1065b6 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5d5ee8fa rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5ffc036b rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x61e25b11 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6b7e181c rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x726d3ac1 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x729ba69b rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x79c87733 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7a9203f4 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x86cebc70 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8ab72018 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8c52ff7d rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xad5d1eb9 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb7bf7449 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbef39461 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc1b4387e rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc99374fe rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcbffff49 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xda6d11d5 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdd31a89f RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xde7be8c9 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdfb9d045 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeb403538 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf3d4f0f8 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf62693d5 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf9ad1151 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf9e3d9b8 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfe163f15 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x02f425c3 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x03031af4 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x050a06ce ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x062adba8 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x06802ecc ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x07b003d8 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0a39206c ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0ca5f6a5 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0cbf6a99 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x159900ab ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1780dbbd Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x206c47e6 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x26f9be27 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2d90c1c4 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x30ad9f57 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3a612fae ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x44bcbdd9 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x48988181 IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x494bafa4 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x51257d2a ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5249dced Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5618f104 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x58c6fa58 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5b1c9d1e ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5cc6b821 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x641c56a3 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x64a69cc6 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6541fce0 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x70ce32eb HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x77dc0355 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8535c3ec ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x87334e94 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8857d21c ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8b1e7492 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x96a5f12b ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9fff37e7 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0cc4ddb DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb2b22c8c ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb4472746 ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb835a1f0 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbce5cbca ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbd592f59 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc1dc679f ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc2564c0a ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc2c6abcb ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd4107e9e ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe55a2dcd ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe842c4a9 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf01f7f38 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf58b6aab Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf70222a8 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfb039731 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfc656df3 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x05802483 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x244e35f8 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x24d8faf3 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x305ef743 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3e24a1ae iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3f80f0ca iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x40b9b077 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x427c7dfa iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x466519f1 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x47d9b529 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4cb214eb iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4fc0df16 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x54e76d3f iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5907709b iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x591f4a8e iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x59d329c0 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5b309c5b iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65eb6cef iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x67c78ca8 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x74016d0f iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x78bf3054 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x79e371e8 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7d3c7f8c iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ef74301 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8f317c3a iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x94ba5ce0 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa756001a iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xac1bd68c iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb6e600dd iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbc8f46a2 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc63c4895 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc6713d44 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcf29dbf6 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd01dde00 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd1321950 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd799d958 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd7e9d32a iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd91f4f65 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xda78d997 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdd15ba9e iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe5282075 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe53d494a iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe6fb737a iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/target_core_mod 0x019cf57a target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0452923f transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x05d55881 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x05f0bc86 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x07aae037 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x0924fc1c transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0948600a target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x0d514a36 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x0e7bc1ec target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ede0ad7 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x1d9a1534 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x1e536f04 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x1f839394 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x24946a6f target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x26ec8455 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x3242ba24 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x38fb6fb6 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x3b62f805 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3fc9a388 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x40779b5a sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x43a5f183 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x4abadf84 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4b89a6c1 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x511056c9 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5c1385ce core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x65db645e target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x6602e000 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x6620d3d6 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x68f1a658 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6b196061 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x72f3f447 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x73c9267f spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x775d1bb1 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x7aa0da38 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x85d2a9f1 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x89d2c082 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x9353c8e8 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x94118c57 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x95632aa0 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x96c7394f spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x9a256bce target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x9d33814b target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x9f99c75e transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xa126ee3c core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xa1b29b9c core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xa1b4fa7f core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xa4465b8e transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0xa79a7ae0 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xa7e930f5 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0xae042b07 target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0xb26f61b2 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb6d28b13 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xbc8a3f64 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xbf913951 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xc2673f18 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xc9e01766 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xc9f2711f target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xd376862f sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xd5366b4b spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xd6a9b2ef transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xe05c266a target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xe2408d3c target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xe71e0a5e target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xec4bea93 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf16ca2b8 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xf6af1a27 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf8dae768 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xf98ebf48 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xff091cc4 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xa61372e3 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x107de1fe usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xaeac84e1 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0924b37d usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1e8c62e3 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2fc7883e usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x375a3bb8 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4405a317 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9aa5a0c4 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb02f69b5 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc105b8d9 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc3ccb5fc usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd1f38ceb usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd967cd1d usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xef0960d1 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x91fb33c9 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xb6fdbb16 usb_serial_suspend +EXPORT_SYMBOL drivers/vhost/vhost 0x1f84be2f vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0x85c37af1 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x59f824d9 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x937e412c vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user +EXPORT_SYMBOL drivers/video/backlight/lcd 0x00149d70 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x49de1dc9 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xd050dd48 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xfed05c7f lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0f3e98f6 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x191e2170 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x193c247a svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3e4bbfb2 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x683f04cc svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x736ff7a3 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa23c8d9f svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x2ba2b6c0 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x8c3cc3b1 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xba0a9f91 sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x3b9d9a47 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 0x4f7ada06 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x01ded02a g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x96c72d70 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x9f79d9f0 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x174283db matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x6a518a24 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xc07e8400 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xf751ea18 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x45a1f74d matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x590ca9a6 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x8b117930 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x95e2cbb5 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xea988e4c matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xf0b5542d matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x0bc60451 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x1dac0b86 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x153ca861 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x61d56250 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x785e8ebb matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcc3b0643 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xd57a5b83 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x16f88bfd mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x01b7fd59 dispc_read_irqstatus +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x01ea132e dispc_runtime_put +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x02ee61d4 omap_video_timings_to_videomode +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x03005606 omapdss_get_version +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x13cdd142 omapdss_register_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x1f416165 dss_mgr_unregister_framedone_handler +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x205ec8de omap_dispc_register_isr +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x22f836b7 videomode_to_omap_video_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2655eb6a omap_dss_find_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2f95c726 omap_dss_find_output_by_port_node +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 0x3199121c dss_mgr_set_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x342bd0fc omap_dss_get_overlay +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x365d3643 omap_dss_put_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x442d86a2 omapdss_output_set_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x45d74ef6 dispc_mgr_enable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x48afdc12 omapdss_find_output_from_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4a9c6a50 dss_mgr_set_lcd_config +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4c33081d omapdss_compat_uninit +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4fc07222 dispc_mgr_setup +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x50ac48e0 dss_mgr_register_framedone_handler +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x518c74c3 omapdss_output_unset_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x51d20b0a omap_dss_get_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x547ce898 dispc_read_irqenable +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 0x5ae980a1 omapdss_default_get_recommended_bpp +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x5c739a03 dss_install_mgr_ops +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x60c89627 dss_mgr_disconnect +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6157ed31 omap_dss_get_next_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x62f4f0b6 omap_dss_get_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x636b3461 omap_dss_get_num_overlays +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x70b4c9dc omapdss_unregister_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x70e39dae dss_uninstall_mgr_ops +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7a2cf603 dss_mgr_enable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7d5b7c22 dispc_mgr_set_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x811e40da omap_dss_find_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x82961997 dss_mgr_disable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x87fdb051 dispc_mgr_go +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x8e90d4a1 dispc_mgr_get_sync_lost_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x9187432c dss_mgr_start_update +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x93963a85 dss_feat_get_num_mgrs +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x96116ae1 dss_mgr_connect +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x967cb4e8 dispc_ovl_set_channel_out +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x9b89a95e dispc_mgr_set_lcd_config +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa35444e4 dispc_write_irqenable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa4b4b8bc omap_dss_get_overlay_manager +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xad75262f omapdss_register_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb1ed8d28 omapdss_default_get_resolution +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb3ed5aa9 dispc_mgr_is_enabled +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb50cac16 dispc_mgr_get_vsync_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb802183d dispc_ovl_setup +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbaa1e174 omapdss_unregister_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbafeee36 dispc_runtime_get +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xc45105c3 dispc_mgr_go_busy +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xc55d5241 dispc_mgr_get_framedone_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xccae60a4 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 0xd29fcbee 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 0xe37d10ae omap_dispc_unregister_isr +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xe7e15910 dispc_clear_irqstatus +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xedc29aa8 omapdss_default_get_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xee2bc2d0 omapdss_is_initialized +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf4a7fc6d omapdss_compat_init +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf6c235ec omap_dss_ntsc_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf9427374 dispc_request_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xfe40bf95 dss_feat_get_num_ovls +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xffb6868c omapdss_find_mgr_from_display +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 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x8aac474b w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xa2b7f027 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xa657dac6 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xb0060319 w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x474c40a1 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xac42da4f w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xaaad5b1a w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xc6214a1e w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x07ce9d8a w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x5b727949 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xa554065d w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xcf836d04 w1_remove_master_device +EXPORT_SYMBOL fs/configfs/configfs 0x0a65dee6 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0x16975724 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x1def0317 configfs_remove_default_groups +EXPORT_SYMBOL fs/configfs/configfs 0x4ad2ef6c config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x4c55437d config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0x63fd6fbd config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x6e88ce2b configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x7b775d56 configfs_depend_item_unlocked +EXPORT_SYMBOL fs/configfs/configfs 0x8fbef1fd configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x9620721d config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0x9644ea0c configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xae01395e config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0xbd7018d5 configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0xd6350748 configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0xe577b359 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xf24e8bbd configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xfb6679a5 config_item_init_type_name +EXPORT_SYMBOL fs/exofs/libore 0x0811ae27 ore_read +EXPORT_SYMBOL fs/exofs/libore 0x176a7b24 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x2b2e4922 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0x322ea954 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x65354dfd ore_write +EXPORT_SYMBOL fs/exofs/libore 0x67b5c64f ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0x82707996 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xca494138 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0xd324f62b ore_remove +EXPORT_SYMBOL fs/exofs/libore 0xd85fe852 ore_create +EXPORT_SYMBOL fs/fscache/fscache 0x0374989b fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x07fa8c4d __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x1033696e __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x12d95b15 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x142e2cf0 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x228b0c2b __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x25631afd fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x2a47969b __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x2d03f314 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x2dcb941a __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x3f6fb90b __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x6b9638b8 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x6bca9156 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x6c4ed19a __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x76d1ba6b __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x78b95efa fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x81d77cbe fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x82bac054 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x87ab295d fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x9415b546 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x94d8693c __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x99d0f032 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x9e47b511 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xa3d407cf __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xacd70a56 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xb077bcef fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xb1e2bb93 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xb3181f4b fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xb3798999 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xb8ff863c fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0xc0d3a87c fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xcaf984a0 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0xcf94dd99 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xd2e3af3b fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0xdeabebff __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xdf8a84ac fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xe2a0c9ec __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xedd20f13 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf87f3bc0 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xfec2e572 fscache_object_lookup_negative +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x08b60a2c qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x382c41ec qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xacf37442 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xc36842a9 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xe3487185 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xf734aa7e qtree_entry_unused +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t +EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative +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 0x82a0ee16 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed +EXPORT_SYMBOL lib/lru_cache 0x8af59359 lc_seq_printf_stats +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 0xcbc5d521 lz4_compress +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x26c3aa22 lz4hc_compress +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul +EXPORT_SYMBOL net/6lowpan/6lowpan 0x06a36b7b lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x33ecee9a lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x3c66c048 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x8c602877 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x917be898 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xf8073a55 lowpan_register_netdevice +EXPORT_SYMBOL net/802/p8022 0x3b3f57a1 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0x4054fead register_8022_client +EXPORT_SYMBOL net/802/p8023 0x45a403fe make_8023_client +EXPORT_SYMBOL net/802/p8023 0x57eab8bc destroy_8023_client +EXPORT_SYMBOL net/802/psnap 0x089bfc98 register_snap_client +EXPORT_SYMBOL net/802/psnap 0xf6cd4c20 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x01dfe54a p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x059d808d p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x0605e595 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x07a9ceec p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x0a7e3c75 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x0c872faa p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x1816c3ff p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x1cd2c0c5 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x253aae8b p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x2780951e p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x31cc52c7 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x33453735 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3daecb18 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x45946329 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x4f607b5c v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x58ee8151 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x5a8400d6 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x67ac8d43 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x6c3f145b p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x6e955a2b p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x6f021b39 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x72db5843 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x73ad3bc7 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x878da956 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x98202ee4 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x990121d1 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x9ce58e4f p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x9f0bd147 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xa0aa91e7 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xa793f03c p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb8439d4e p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xc3f36aac p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xc58f00f2 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc7e77004 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xcf6de818 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xcf7dc396 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xd1c25b5a p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xde6d083d p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xf44570e3 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf6fb160e p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfc7fd9e4 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x1b95c53f atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x895c6491 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x8fc3b9cc atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xa1bce3eb aarp_send_ddp +EXPORT_SYMBOL net/atm/atm 0x0581705e atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x1e0c394c atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x321e09e2 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x3c349df5 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x40cc0d0e deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x4c0b0056 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x55a29f82 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x66962feb atm_charge +EXPORT_SYMBOL net/atm/atm 0x93e1feba vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xc3d3d044 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xe10bdacb atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xf1774b53 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xf31a20b7 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf4e056a0 atm_dev_deregister +EXPORT_SYMBOL net/ax25/ax25 0x17f1595d ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x5c2d3709 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x68638dc7 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x6c114cfe ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xa538392a ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xbebc7a0d ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xddc3d6b1 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xe9aaf0a4 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0xf93417f2 ax25_find_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x03bbca58 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x047292d0 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0b84b4c8 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x101db1e2 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x10d02a26 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1176973f hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x150111fa bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1606a1ca hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2e54ddb1 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x31062397 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x46c791b0 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x546ea65a hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5495759f bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x54e92eed __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5ca1940e hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5d4bc0b7 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x620e1a78 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x77a8912d hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x823d16bf hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8996cb61 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8a54b157 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8b3aa85a l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9661c996 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x96981365 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9997e00b bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9b2350c6 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9ca6c084 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa159e9c0 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa47cc6eb hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa904f0db hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb4d7e67b hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb7e01013 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb9aeaae3 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbbff6679 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc2e17a3b hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc4165ae1 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd00ceb3d bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd5401aef bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdb15eab9 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xea1b3568 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xee11e0d7 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf427356c bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xffbcddb6 bt_accept_unlink +EXPORT_SYMBOL net/bridge/bridge 0xecf540ef br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x26fde9d2 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x4a4a45ec ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7add1626 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 0x39d80b3a caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x9c0b2bb3 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xcbfff6ba cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0xd35153af caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0xe9b66282 caif_enroll_dev +EXPORT_SYMBOL net/can/can 0x347e7c6a can_rx_register +EXPORT_SYMBOL net/can/can 0x9fd10d96 can_ioctl +EXPORT_SYMBOL net/can/can 0xa0347195 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xa48fb919 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xd3f35c51 can_send +EXPORT_SYMBOL net/can/can 0xee772a12 can_proto_register +EXPORT_SYMBOL net/ceph/libceph 0x05262d19 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x07bd1cce ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x07d70db4 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0d6d45df ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x11ecc731 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x12b14841 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x183912da ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x1c7adea7 ceph_file_layout_from_legacy +EXPORT_SYMBOL net/ceph/libceph 0x1d91bce2 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x204f445f ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x2063333e ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x2066f72c ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x242b5809 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x29c6c10a ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x2db717f3 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x2dc7f34c ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x2dd56c10 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x325a9043 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x3646cb38 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x36f061ad ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x38239692 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3b2a4ee3 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x3bc4f753 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x3bfa5356 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x40b8dcea ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x421bfad8 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x42c624ce ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x442aef28 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x4b187826 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x4bf43027 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x6252a57e ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x629a3de3 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x630b5825 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x64da9ee4 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x650bfd7b ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x657f07aa ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x68528cea osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6c6a1693 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6e098be8 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x6e55a953 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x6ee61732 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x7742f795 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x77f43c8a ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x78b3fec3 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x7a41db76 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7cd0ac82 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x7e9d05e5 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x80739382 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x82168111 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x84246872 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x85d03a9e ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0x91576730 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x987955da ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0x998bf4a8 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9a674aa0 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x9b661677 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x9d46f43d ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x9f208781 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x9f3430d9 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xa32b47a3 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xa53366e5 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0xa82c86b6 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xa87a3445 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa9bd2605 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xa9d7dd1f ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb674a875 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xb91a1af5 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xba74570c osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xbf15e03c ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0xc0e59c7f ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0xc1158f86 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc28d398b ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcbcc35fa ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xd268ff7c ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd54af5a4 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xd68fdf48 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xda7fef8b osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xdabe3fba ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xdcdc8923 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xdd8e7550 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xe47c072d __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xe673627e ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0xe8354716 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xea949451 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xebc8d181 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0xee1ac17c ceph_file_layout_to_legacy +EXPORT_SYMBOL net/ceph/libceph 0xee9c3b1b ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xf463a2f9 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xf7274cab ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xf9504fc4 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xfb071894 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xfc0ffdf9 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xff9a175b ceph_oloc_copy +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x1512b331 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xc5091d0e dccp_syn_ack_timeout +EXPORT_SYMBOL net/ieee802154/ieee802154 0x46d0dc90 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x6135e132 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xa1aa12c5 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc401b2bb wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xd7f9dd88 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xff18b7e0 wpan_phy_new +EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x55c43dfc fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x6f6d1de2 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xc67979d3 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xdbd6af6f __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0xf5ffda32 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x289aa153 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe4ceebe1 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe77bf122 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe94f214d ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x19e5ebac arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x4188f803 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7e8a4c3b arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x9690607d ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xc19021ff ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xc2be2231 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x00f93973 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xa538a386 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x51bb7e3f udp_sock_create4 +EXPORT_SYMBOL net/ipv6/fou6 0x6833192e gue6_build_header +EXPORT_SYMBOL net/ipv6/fou6 0xfa48a586 fou6_build_header +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x17847a4c ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x302d3003 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x39bab5c3 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x48072cd9 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x69b033c1 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x90765653 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb56a907b ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbed68de6 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf68bcb61 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x95297188 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x9d182ab3 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xe7fb46bc ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x23a7bf0f xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xfb485198 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x49478371 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xa15e7441 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x0f8284b1 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x37c3d6f4 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x664201cc ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x756bd6cd ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x772550a2 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa2b687aa ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe56a91c8 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xeb10ba93 ircomm_open +EXPORT_SYMBOL net/irda/irda 0x014e5fdf irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x0a3e5450 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0x13c61d2b irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x17a491c5 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0x195c4d46 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x1ceeaa99 iriap_open +EXPORT_SYMBOL net/irda/irda 0x28ea9be6 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x36cad55b hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0x37791344 hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x39d39ddc async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x5a21f2bc irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0x5c80bcfe irda_notify_init +EXPORT_SYMBOL net/irda/irda 0x6492e28c hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x6615fc13 iriap_close +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6b76aa70 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x731cec71 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x7790d2a4 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7cec3da2 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x7e67ca6e irias_new_object +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x84ddaf2a irttp_dup +EXPORT_SYMBOL net/irda/irda 0x886fc94d irlap_open +EXPORT_SYMBOL net/irda/irda 0x8982c8d9 irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x8a44dd5e hashbin_new +EXPORT_SYMBOL net/irda/irda 0x8cd253a4 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x90ddb6bd hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x96cc1de5 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x9ffda243 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0xa7183728 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0xb3c13d7f irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xb96ba18d irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbd781766 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xbf7dd554 hashbin_find +EXPORT_SYMBOL net/irda/irda 0xbfa7c08d hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0xc477368d irias_find_object +EXPORT_SYMBOL net/irda/irda 0xc83115e0 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0xcd57282c irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0xd2b9de34 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0xdc0bcdce irlap_close +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xdfd1c59b irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0xea091682 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xf199cba4 irias_insert_object +EXPORT_SYMBOL net/kcm/kcm 0xad05288c kcm_proc_register +EXPORT_SYMBOL net/kcm/kcm 0xad287f8b kcm_proc_unregister +EXPORT_SYMBOL net/l2tp/l2tp_core 0xf988e98a l2tp_recv_common +EXPORT_SYMBOL net/lapb/lapb 0x27086e21 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x41758d65 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x531f7519 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x80a40751 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x89367dd2 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xc8445f25 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xe67a21f8 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xf7c73b56 lapb_setparms +EXPORT_SYMBOL net/llc/llc 0x2ae5f629 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x36ffd3dd llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x61a33ec3 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x8467d526 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x9cc0ab4d llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xa3e91d88 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xa6fef9f9 llc_sap_open +EXPORT_SYMBOL net/mac80211/mac80211 0x02166686 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x07c6c675 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x0a16bb8b ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x0a461442 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x0c440a7e ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x1339f40c ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x18ad0104 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x19f9bfa9 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x1ad39b33 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x1bde6909 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x25782d5e ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x27a75451 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x288e5c90 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x29f1e511 ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x2a126251 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x34cea4c6 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x364afafc ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x38f091ea ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x390b52c9 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x42c83a60 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x4584f49d wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x46ab0b3f ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x47808bf8 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x4882899a ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x4b790774 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x4c432e49 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x51a7cc77 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x51f8dd0f ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x59828a64 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x5ad48527 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x5c4a0d22 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x5cd3cc48 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x60ecdfa9 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x61d6be40 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x622d1280 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x65822ee5 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x665a8457 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x67a93d55 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x69de096c ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x6d81aa0d rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x72530c24 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x756976c8 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x76b9ef28 ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x8441605b ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x8574078b ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x85ed0d54 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x8bb85be4 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x8da9eea2 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x8f28d7b6 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x939098ef ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x966fc333 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x9673a38a ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x9940d2b6 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x9a4f4020 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xa0c6efc2 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0xa25a2db2 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xad2982f0 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xb046e86c ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xb3f489af ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xbdf9a3ea ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xbfeacacb ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xc46c5bcd ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xc5565a1d ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xc7c8d82c ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xc7f1bcc4 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xcb4f814a ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xcc8b714d ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xccfb3763 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xd05e3bdc ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xd1e90fab ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd3b149c3 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd733eb6a ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xd7c70524 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xd801adb7 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xde8e5467 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xe69a3e92 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xe751edb4 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xeb5f10b6 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xec7757cb ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xed77b66a ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xee118398 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xf1c0ae54 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xf2cbf179 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xfabfafce ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0xfc8ae0c7 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xfdb51266 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xfe398dd9 ieee80211_find_sta +EXPORT_SYMBOL net/mac802154/mac802154 0x182dce82 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x264337a7 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x2e42d246 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x3ffe6392 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x9dad9de1 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xde3d1015 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xe032a3fc ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xfd151949 ieee802154_stop_queue +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2c529a0f register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x301dc9af ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4a729d98 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6618ee49 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7d2ad6f5 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8b3b9492 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x90683f3b ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x913d4dd1 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x98dffabd ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xad548773 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc703f9d9 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xddee930b ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe4676110 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf11c37de ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf502619a register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3a7b5b2d __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x5796271d __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x6e113d75 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x22aa2960 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0x65ab5831 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x688e2073 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x7a67a53f nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x9cf5ca7e __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xae4eea10 nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/x_tables 0x04c8b9fe xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x2115f684 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x4bb703f8 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x5a80e54e xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x6d3fe19a xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x85f179c1 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x8b76b9ab xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xa1b73b83 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xbfc8cdf7 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xeae9134e xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x105d728c nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x162a9990 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x1d3ee3dd nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x21660593 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x2b1417d4 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x401247a5 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x5d06242d nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x5d1a3f6c nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x63e3ea5b nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x7a9c44d3 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x842eef29 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x8d3f68e3 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x9a1305b5 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xa91c1287 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xaafca36f nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xc22b7d0e nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xd1a8fa14 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xe5be948b nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xe7cf1ed1 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xfc382fdc nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xfee179e9 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/nci/nci 0x055c8ff0 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x0a9f0672 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x1c1852f9 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x1d638da1 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x37e7f16f nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x441cb488 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x46b9a50e nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x49ad428b nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x52c07123 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x5b40c010 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x63bb48fc nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x6fc235d8 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x7b13ad76 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x7f702b5d nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x7f9368cd nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x8f4794ac nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x9e6b18af nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xa27979a4 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xa4cdfc17 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xa9fe6fcd nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xab35de74 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xaf67c0b8 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc1fed566 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xcfd0482c nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xd277d925 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xd620dc19 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xe70952db nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xf691a6ce nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xf6a6feea nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nfc 0x06dae7f1 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x0f822ea7 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x1037192b nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x123a1dde nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x13182400 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x17c2919b nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x1a3d6ae7 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x2214bd9f nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x3e240de0 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x497d7926 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x55bdcd46 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x570d90cc nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x582e6384 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x677c4394 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x6bc00851 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x6d2ec1b9 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x7859402d nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x8245a3a4 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x99ec41e6 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xb22cde16 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xb80e3e2f nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xbcc4a36c nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xcad8f057 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xddf3ed58 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xf6933f95 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x28c92745 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x5a8a0396 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x740800cb nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xf11875e8 nfc_digital_unregister_device +EXPORT_SYMBOL net/phonet/phonet 0x01a75730 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x1e1d51e1 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x4e6ca425 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x509092e9 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x52ce5f0d pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xd6ee2fdb phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xf3cc59af pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xfbd1e521 phonet_header_ops +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1a367ed0 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x25a8a378 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x37105f70 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3e5c0f1d rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x42a5a669 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4bedfe43 rxrpc_kernel_data_consumed +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x61e6581d rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8b0d7dd6 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8f07ce5f rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9d2fb70e rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc05c1d53 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc355d7a9 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xcf59ca69 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd4c4bbde rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xfca64e8f rxrpc_kernel_accept_call +EXPORT_SYMBOL net/sctp/sctp 0x6c07c073 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xcbd103b1 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xdc4ce8ed gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xea062da2 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x380e5c06 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xc4c05990 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xd162de06 svc_pool_stats_open +EXPORT_SYMBOL net/wimax/wimax 0xde3acb8d wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0xe979db5c wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x0611fc4a cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x08c689a7 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x09f35c3a cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x0afe0ec6 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x0b9aab8e cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x0c855b25 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x0d4bbb7c cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x0d9e37e2 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x11644753 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x13d39ff4 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x15d241b3 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x18e76f47 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1c00f8ea ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x1cb71187 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x2287ce1d cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x277f0196 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x27ae5eab cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x297a67f4 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x2b93aab7 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x2f719a94 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x30c89faf cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x33b349a6 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x34b786c4 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x362a3be8 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x36bbe57c cfg80211_connect_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x3f5da439 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x44d598fa cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x457c39ea ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x4917215c cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4ba8e1e1 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x4f327fd0 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5035c178 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x5318dca7 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x552cf913 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x56371540 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x576f416e cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x57a641c4 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x596da581 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x5ca80c0f ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x5cec5d48 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x5dd92bf7 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x5dfc7080 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x677a397a cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x697d4289 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6c040132 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x70ae485c cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x718f9962 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x79c3896b cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x7aa87a23 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x87602608 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x8930f597 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x899379ef ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x8b4612ec cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x9097ef6b cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x91d509ac cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x9403320b cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x9552b56e cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x9e364029 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xa3c3b515 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xa4a38472 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xa4b03786 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0xa58d26b8 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xafdf9901 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xb0537e70 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xb63c1ae5 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xb67ab7b1 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xc1520930 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc2cdd5e9 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc68af112 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xc6a26ade cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xc9442f5d ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0xcb1e5706 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xcb5f5fc8 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xcc8c3244 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xd6fae795 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xd7b1379c wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xd8adf040 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xd90298ac cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdc25a034 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xdc3469b8 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/cfg80211 0xde0cc235 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0xe203494a cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xe296f2a0 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xe3d88e6a cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe8663ae6 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0xecad2a06 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xf2e3f756 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xf41c3779 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xf5270c9b wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xf7bcb564 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xfbdccffc wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xfe9e3d20 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/lib80211 0x18a270ec lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x1a9bc17e lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x582f1220 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x7a6f0014 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x82197376 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xea9b72da lib80211_get_crypto_ops +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x354cf1e4 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 0x1efe25ff snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1f586326 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 0x596db5e2 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 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xc9dbd114 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x5bd9dd14 snd_seq_device_new +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +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 0xf0a1fdb3 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x127b30fb snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x1cdc0812 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x59eb74ae snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x8102ed2f snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb11ba32d snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb2c7f684 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xea0e5748 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xed42580b snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xc9dd4017 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd-hwdep 0xef40012e snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1566fc55 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x192d6cb9 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x26959919 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x45c5300d snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x46160bf4 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5812bf44 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5d51057b snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x71395e22 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7ce41b80 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x807d5fab snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x863da85d snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa3cd181f __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa65cd361 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb412d17a snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbbd1f9b3 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc4932b57 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd3d8b10e snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe0f0fe5c snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe2e96ff9 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x707221db 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 0x24ac54ea snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5e0c4831 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9c367a11 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa7412477 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb0864c70 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb6da18de snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbaa74bb0 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf878362a snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfe027098 snd_opl3_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x067d4a09 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 0x26ee279c snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x4c320740 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x61708839 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6e802b25 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa2b6e029 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd138960c snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd8fdbcd2 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 0xfc1d8cb2 snd_vx_dsp_boot +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x01c720cd fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3adeaffc fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x533300c2 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x58f207c4 snd_fw_schedule_registration +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5f2f19b8 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5fb26d90 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6bb4360c fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x72915b3b avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x747e6036 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7f601020 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x875db4e1 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8f4f7198 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9f40930f amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa00d93c3 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa1bc90ec amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa796d2b2 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaf9477f0 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb0ee49a4 snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb2858af0 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc035b0e4 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc1572aad avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc22ad018 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc8e2322e amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xceaf17e1 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd931ebf4 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdfa1cd41 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe1c42970 amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe3c71110 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe7b66304 snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xee9649df fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xefe80fe6 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xefef0db7 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfcae5f78 cmp_connection_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xa76e8ebb snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xe1ed630f snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1f00bf90 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x244ad9e9 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x29068142 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3965f25d snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6e2a409f snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x74f310db snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xdc8fa8af snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xef59f8cd snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x3ac03f8a snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xbd12a38e snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xccb342a2 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xf2f2eb28 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x3eb6b1ce snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xd68e2930 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x07063403 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x1ea388cb snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x27f5c0e2 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x41c60e56 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5cd6cb6b snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x6b25d74b snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-i2c 0x1d3b91fe snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x4f9629c5 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x56ae7496 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xa6e6e533 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc5b1b3c4 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xdd776e40 snd_i2c_bus_create +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x09764b94 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2e4a5364 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3a1486bf snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x466c5227 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5d3959a1 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8d4aef1f snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8ecd30e2 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8ef642b5 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x94a1c799 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xad8a812d snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb4729726 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb62758fe snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb75b1e4f snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcffe2b87 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdc76e744 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe8683add snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfe0414a4 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0193f5c9 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x030a0594 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x29650330 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4dd08ead snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x5670c685 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x5ecbfe5b snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x96948316 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9aa1dcaf snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc72a24d5 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x2aa3cf6c snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x7b7912cb snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xe3fed50b snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x10361735 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x12a883e3 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2fe5414d oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3ae11133 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x625690ad oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x675e9cf5 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x73e91b20 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x773f3ba6 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x79b4a75a oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x88c1798e oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8dce61ba oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9528969c oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9607859b oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x961dfa76 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa03233db oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa0d8e501 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xad9e5842 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb770dcf5 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdb44c368 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe205f8b8 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf6f0ee6f oxygen_write16_masked +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x26fb8a3e snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x2e026bdd snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x99a0380b snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xb4136127 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xf18b5567 snd_trident_stop_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x5a6dc2fc tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x741a44bd tlv320aic23_regmap +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x63bc6d52 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 0x6ed1b4b2 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x8b7bce5a snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xc4233c34 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xfb0092c0 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xfb2081d3 snd_emux_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x25b45676 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0x4bd22777 snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x57e9c69d __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x5e66d473 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x6643acee __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x6b47ed4c __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x7daac26a snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xd57e7f3e snd_util_memhdr_new +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 0xff4b93e5 __snd_usbmidi_create +EXPORT_SYMBOL vmlinux 0x0043cc39 tty_port_close +EXPORT_SYMBOL vmlinux 0x0058fd98 abort_creds +EXPORT_SYMBOL vmlinux 0x00606167 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x00673ece security_d_instantiate +EXPORT_SYMBOL vmlinux 0x008b1063 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x00bf48ac elevator_exit +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00eda6e0 invalidate_partition +EXPORT_SYMBOL vmlinux 0x00f0f226 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 +EXPORT_SYMBOL vmlinux 0x013a98fd __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x013b18b7 input_reset_device +EXPORT_SYMBOL vmlinux 0x016e097c reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x0186e2de smp_call_function_many +EXPORT_SYMBOL vmlinux 0x019330c1 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x0196916a handle_edge_irq +EXPORT_SYMBOL vmlinux 0x019db55a radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0x01a3d310 omap_set_dma_channel_mode +EXPORT_SYMBOL vmlinux 0x01c2c763 nand_unlock +EXPORT_SYMBOL vmlinux 0x01c413cc cdev_init +EXPORT_SYMBOL vmlinux 0x01d86174 of_platform_device_create +EXPORT_SYMBOL vmlinux 0x01effc9a dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x01ff4c4a dev_err +EXPORT_SYMBOL vmlinux 0x020a0b97 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv +EXPORT_SYMBOL vmlinux 0x0225c26d dev_change_carrier +EXPORT_SYMBOL vmlinux 0x022a7c74 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x0231cd1c uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x023dbd37 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x02530a05 write_one_page +EXPORT_SYMBOL vmlinux 0x02573b36 omap_disable_dma_irq +EXPORT_SYMBOL vmlinux 0x02591492 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0265e265 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x026bba0e complete_request_key +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x02756938 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x027f2d51 of_root +EXPORT_SYMBOL vmlinux 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02ad2fff of_node_get +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02ebcdbe bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x02ef31a7 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x02ef6f62 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x02ef742b percpu_counter_set +EXPORT_SYMBOL vmlinux 0x02f6ab2b nand_read_oob_syndrome +EXPORT_SYMBOL vmlinux 0x03026722 mempool_alloc +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x034324ea inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x035250a3 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036d91c4 sock_no_connect +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037a660a key_invalidate +EXPORT_SYMBOL vmlinux 0x038f8e24 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x039d670d nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x03b97ad9 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all +EXPORT_SYMBOL vmlinux 0x03bdf83c pci_release_region +EXPORT_SYMBOL vmlinux 0x03c4753d __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x03d69539 block_read_full_page +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x040cc92a gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0423813c __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x042d8817 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x0436fb56 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x0438504a devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x04454a18 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x0447cf62 unregister_netdev +EXPORT_SYMBOL vmlinux 0x04480d89 d_rehash +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x0451557b bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x04642754 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x046d77e8 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x0479ea04 vme_init_bridge +EXPORT_SYMBOL vmlinux 0x04828324 shdma_init +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x04a0dedd sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x04bd5705 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x04c0e25c snd_cards +EXPORT_SYMBOL vmlinux 0x04c77453 fb_deferred_io_mmap +EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine +EXPORT_SYMBOL vmlinux 0x04d486f6 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ecbe54 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x04f25ec5 blk_register_region +EXPORT_SYMBOL vmlinux 0x04f30ca2 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x050677bb __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x051ecc32 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x054b1cd5 arp_create +EXPORT_SYMBOL vmlinux 0x054d35d2 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x0555a482 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x05680860 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x05abc1d5 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x05b1ccb4 bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0x05b2ed43 read_code +EXPORT_SYMBOL vmlinux 0x05b4cf83 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x05cad0a6 read_cache_pages +EXPORT_SYMBOL vmlinux 0x05dc9c95 bdput +EXPORT_SYMBOL vmlinux 0x05e25804 __request_region +EXPORT_SYMBOL vmlinux 0x05e79c75 dma_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x05f03717 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x060802b3 may_umount +EXPORT_SYMBOL vmlinux 0x0615fe2d framebuffer_release +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061b8612 skb_copy +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06522e31 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x065326b8 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x0653bf49 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x065c7184 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x06728095 set_create_files_as +EXPORT_SYMBOL vmlinux 0x067be2ff twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x0685086d scsi_scan_host +EXPORT_SYMBOL vmlinux 0x06947664 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x06a18e16 generic_setxattr +EXPORT_SYMBOL vmlinux 0x06a20e40 audit_log_start +EXPORT_SYMBOL vmlinux 0x06b9c402 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x06e3498d param_get_invbool +EXPORT_SYMBOL vmlinux 0x06f24682 set_anon_super +EXPORT_SYMBOL vmlinux 0x0707362c netlink_net_capable +EXPORT_SYMBOL vmlinux 0x0715b092 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x0724955a pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x074dcf72 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x07707ba7 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x078941db noop_llseek +EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free +EXPORT_SYMBOL vmlinux 0x07a4c156 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07b78af0 dev_uc_del +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07cf9099 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x07ec654a force_sig +EXPORT_SYMBOL vmlinux 0x07fc1511 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x080717dc qdisc_list_add +EXPORT_SYMBOL vmlinux 0x081749e1 of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x081f3afb complete_all +EXPORT_SYMBOL vmlinux 0x082b482d mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x08488084 generic_show_options +EXPORT_SYMBOL vmlinux 0x08690bbf __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x0881061d i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x0896de0a dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x08be1525 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x08c78591 __find_get_block +EXPORT_SYMBOL vmlinux 0x08d3d8cb pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08f26089 kernel_read +EXPORT_SYMBOL vmlinux 0x08f5a8ac nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x090f881c pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x091b6f62 kobject_set_name +EXPORT_SYMBOL vmlinux 0x0925fbb0 simple_setattr +EXPORT_SYMBOL vmlinux 0x092615b5 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x092929a1 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x0948ecdd init_task +EXPORT_SYMBOL vmlinux 0x09502a47 device_add_disk +EXPORT_SYMBOL vmlinux 0x0978b684 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x097ec1ff _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x0991cb6e gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x09970776 copy_from_iter +EXPORT_SYMBOL vmlinux 0x09a5661a __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c6411f schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09cf1b46 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09ed9d82 free_netdev +EXPORT_SYMBOL vmlinux 0x0a093029 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x0a118750 fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x0a1a973a ab3100_event_register +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a331c2c d_add_ci +EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x0a38a8ff blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a68de4d of_phy_connect +EXPORT_SYMBOL vmlinux 0x0a7c8ae7 register_netdev +EXPORT_SYMBOL vmlinux 0x0a7d9221 revalidate_disk +EXPORT_SYMBOL vmlinux 0x0a850518 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x0a892a02 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL vmlinux 0x0a94ae36 generic_removexattr +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa3ed79 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x0ab3a87d phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad886f9 elevator_alloc +EXPORT_SYMBOL vmlinux 0x0ae645d0 fence_init +EXPORT_SYMBOL vmlinux 0x0aef0336 netlink_ack +EXPORT_SYMBOL vmlinux 0x0aefd49d dm_put_device +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b119219 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b1da35c km_policy_expired +EXPORT_SYMBOL vmlinux 0x0b3428c8 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x0b39722b tcp_release_cb +EXPORT_SYMBOL vmlinux 0x0b3d2813 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x0b45f2d4 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b4db3d4 param_set_copystring +EXPORT_SYMBOL vmlinux 0x0b54bf47 snd_jack_set_parent +EXPORT_SYMBOL vmlinux 0x0b5a7022 single_release +EXPORT_SYMBOL vmlinux 0x0b5cda57 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b714812 processor +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b79dec8 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x0b884034 __devm_release_region +EXPORT_SYMBOL vmlinux 0x0b888be5 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x0ba3a3d1 skb_find_text +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bcdebd8 pci_map_rom +EXPORT_SYMBOL vmlinux 0x0bce8b66 inode_init_once +EXPORT_SYMBOL vmlinux 0x0be2b29a phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x0bfed84a gen_pool_alloc_algo +EXPORT_SYMBOL vmlinux 0x0c092676 mdio_device_register +EXPORT_SYMBOL vmlinux 0x0c0e41d6 keyring_search +EXPORT_SYMBOL vmlinux 0x0c1e5f83 lwtunnel_output +EXPORT_SYMBOL vmlinux 0x0c2b6ee8 km_policy_notify +EXPORT_SYMBOL vmlinux 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0x0c33b65f sock_no_bind +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c538838 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x0c5829af genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c5c8b9f pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x0c69b73d scsi_dma_map +EXPORT_SYMBOL vmlinux 0x0c7747ae __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit +EXPORT_SYMBOL vmlinux 0x0ca760db md_finish_reshape +EXPORT_SYMBOL vmlinux 0x0cac5f98 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cc311b1 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x0cc443d3 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x0cd12f2c scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x0cf3c5d8 param_get_ushort +EXPORT_SYMBOL vmlinux 0x0cf52a33 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x0cf8e6a7 key_put +EXPORT_SYMBOL vmlinux 0x0cfefe1e percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x0d19bb10 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x0d3eee8e padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x0d3f57a2 _find_next_bit_le +EXPORT_SYMBOL vmlinux 0x0d452765 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x0d4be289 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x0d4d7a32 _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d6512b9 inet_bind +EXPORT_SYMBOL vmlinux 0x0d6af5df scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x0d7cfe1a of_get_mac_address +EXPORT_SYMBOL vmlinux 0x0d7d7d43 alloc_file +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da9d686 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0e00ff59 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x0e3e4899 phy_device_remove +EXPORT_SYMBOL vmlinux 0x0e3e5f33 vfs_getattr +EXPORT_SYMBOL vmlinux 0x0e40163f fget_raw +EXPORT_SYMBOL vmlinux 0x0e54ab4e ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x0e557f7b del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0eb48f35 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0eddf744 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0ef6a3a5 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x0efb460e seq_putc +EXPORT_SYMBOL vmlinux 0x0efc1494 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f1b9dea gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x0f25298d tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x0f29ba76 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x0f360467 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x0f449bc0 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f70678e tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f8400f8 qcom_scm_pas_auth_and_reset +EXPORT_SYMBOL vmlinux 0x0f8f0b71 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x0fa2a45e __memzero +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fb6be94 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x0fdd4c7d msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x0ff771bd __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x0ffc0e35 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x100b3a09 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x100d9d96 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x1018b11b sg_miter_stop +EXPORT_SYMBOL vmlinux 0x1024ecd5 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x1057c3b5 param_get_string +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x1069d2b5 block_commit_write +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x1079655b kdb_current_task +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1084e1e3 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x1096d47e proto_unregister +EXPORT_SYMBOL vmlinux 0x10d6ab04 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x10de671c sk_stream_error +EXPORT_SYMBOL vmlinux 0x10ee45d1 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x10f8772b __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x10facf23 dquot_disable +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x1109f91c should_remove_suid +EXPORT_SYMBOL vmlinux 0x110ca410 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x110d0a7f of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x110f2aa6 skb_pull +EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x111dd66d max8998_update_reg +EXPORT_SYMBOL vmlinux 0x11319030 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x11381cb4 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x1142d6e2 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x115e5964 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1172b6ea crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch +EXPORT_SYMBOL vmlinux 0x11a0ba27 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x11a8073e nd_btt_probe +EXPORT_SYMBOL vmlinux 0x11af6d3b __sock_create +EXPORT_SYMBOL vmlinux 0x11c6f7e7 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x11c7a0a8 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x11cb05fb backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x11d2386c serio_close +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x121b4e4b memremap +EXPORT_SYMBOL vmlinux 0x1231c801 inet_listen +EXPORT_SYMBOL vmlinux 0x129308ae __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x12961f74 dma_pool_create +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12aca808 dcache_readdir +EXPORT_SYMBOL vmlinux 0x12ba0930 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x12cb739e snd_timer_start +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x12fe2963 page_waitqueue +EXPORT_SYMBOL vmlinux 0x13093c2c irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x13163daf nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x1319f23b __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x132c5da5 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x133d2360 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x136564d6 set_user_nice +EXPORT_SYMBOL vmlinux 0x13689c81 phy_suspend +EXPORT_SYMBOL vmlinux 0x137c90dd pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x137feb7c sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x13928e3d of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x13960e78 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x13a4960c of_clk_get +EXPORT_SYMBOL vmlinux 0x13a7b4a5 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x13b28b29 qcom_scm_pas_shutdown +EXPORT_SYMBOL vmlinux 0x13b2b7f7 cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x13b66430 of_phy_attach +EXPORT_SYMBOL vmlinux 0x13b90f62 snd_jack_add_new_kctl +EXPORT_SYMBOL vmlinux 0x13c17d93 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13ea2530 eth_header_cache +EXPORT_SYMBOL vmlinux 0x13eba426 dquot_operations +EXPORT_SYMBOL vmlinux 0x13ef69ba bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x140de3c0 genphy_resume +EXPORT_SYMBOL vmlinux 0x141051c6 __register_chrdev +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x146868e0 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x146feebb tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x14b4012b netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x14b84fae of_match_node +EXPORT_SYMBOL vmlinux 0x14b8b8fe phy_device_create +EXPORT_SYMBOL vmlinux 0x14ca411f pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit +EXPORT_SYMBOL vmlinux 0x15011777 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x15091779 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x150ad92b ioport_resource +EXPORT_SYMBOL vmlinux 0x150d1389 iptun_encaps +EXPORT_SYMBOL vmlinux 0x151de088 register_key_type +EXPORT_SYMBOL vmlinux 0x152d1bc3 _dev_info +EXPORT_SYMBOL vmlinux 0x1531f97e nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x1548cd22 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x15688047 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x158eab05 vfs_setpos +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15d72d33 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x15e73836 devm_clk_put +EXPORT_SYMBOL vmlinux 0x15e7fdce fb_show_logo +EXPORT_SYMBOL vmlinux 0x1614e388 fscrypt_pullback_bio_page +EXPORT_SYMBOL vmlinux 0x161c69d5 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x162ccc0c lg_local_lock +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x166ef374 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x16766435 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x167aadf9 udp_seq_open +EXPORT_SYMBOL vmlinux 0x168e64ad generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x16c77955 tcf_hash_check +EXPORT_SYMBOL vmlinux 0x16db52d5 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x17434205 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x17548341 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x176a29ac dm_put_table_device +EXPORT_SYMBOL vmlinux 0x179d9971 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x17ac498d sock_update_memcg +EXPORT_SYMBOL vmlinux 0x17b0c004 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17f1589f gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x17f929fd tso_build_data +EXPORT_SYMBOL vmlinux 0x18055c98 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x180a8dc7 input_allocate_device +EXPORT_SYMBOL vmlinux 0x18167807 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x181e6de6 pcim_iomap +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x182f7a7d dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x183ce22c dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x18433c7f touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x184eec3b register_gifconf +EXPORT_SYMBOL vmlinux 0x1870d28f thaw_super +EXPORT_SYMBOL vmlinux 0x1882d791 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1890b1c5 init_buffer +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x189c5980 arm_copy_to_user +EXPORT_SYMBOL vmlinux 0x18a0d6be security_path_mknod +EXPORT_SYMBOL vmlinux 0x18bd76a4 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x18c2227f cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x18e4af50 __alloc_skb +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18e67eaa sock_create +EXPORT_SYMBOL vmlinux 0x18fbf65a i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x1929b3db blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x1950a906 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x19610e1f cpu_all_bits +EXPORT_SYMBOL vmlinux 0x1962fd98 skb_store_bits +EXPORT_SYMBOL vmlinux 0x1969fb9f inode_set_bytes +EXPORT_SYMBOL vmlinux 0x19767b83 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x197d42ba skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x197d4722 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x197dc3b3 omap_set_dma_src_burst_mode +EXPORT_SYMBOL vmlinux 0x1980efa5 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x1984c1e4 dev_get_stats +EXPORT_SYMBOL vmlinux 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL vmlinux 0x198cb9b8 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x199fac3e pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x19a6b1ba snd_power_wait +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c4bfb7 ata_link_printk +EXPORT_SYMBOL vmlinux 0x1a0118fd __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x1a1f1388 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x1a2e5f67 find_vma +EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn +EXPORT_SYMBOL vmlinux 0x1a774c21 bdi_register_dev +EXPORT_SYMBOL vmlinux 0x1a801460 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x1a8650ae param_get_long +EXPORT_SYMBOL vmlinux 0x1aa7cde8 phy_stop +EXPORT_SYMBOL vmlinux 0x1abf57ea xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x1ac7cd61 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0x1ade2e0f bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x1ae87136 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x1ae91244 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b0e859b mmc_detect_change +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b2771c3 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x1b2d6d2c qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0x1b2e99d2 tcp_check_req +EXPORT_SYMBOL vmlinux 0x1b499d65 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x1b562ad8 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x1b5b2984 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x1b5e6909 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x1b5f127e d_set_d_op +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b6770a7 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x1b688f24 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x1b6c5ef4 tc_classify +EXPORT_SYMBOL vmlinux 0x1b701201 input_release_device +EXPORT_SYMBOL vmlinux 0x1b7f9e4d mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1ba39bf3 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x1bb229de request_key_async +EXPORT_SYMBOL vmlinux 0x1bb2f8c3 kthread_stop +EXPORT_SYMBOL vmlinux 0x1bc2fcf7 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x1bd567fc rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0x1c0798c9 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x1c0ace87 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x1c174749 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x1c459b4c mfd_add_devices +EXPORT_SYMBOL vmlinux 0x1c52ca0d pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x1c5479b3 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c69d13d __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x1c73d099 pci_enable_msix +EXPORT_SYMBOL vmlinux 0x1c822949 of_get_parent +EXPORT_SYMBOL vmlinux 0x1c8f166a sock_kmalloc +EXPORT_SYMBOL vmlinux 0x1c992c3d vga_get +EXPORT_SYMBOL vmlinux 0x1cc04040 amba_find_device +EXPORT_SYMBOL vmlinux 0x1cd93b98 skb_seq_read +EXPORT_SYMBOL vmlinux 0x1cf17be9 send_sig +EXPORT_SYMBOL vmlinux 0x1cf999d8 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x1cfb04fa finish_wait +EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL vmlinux 0x1d0b48c4 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x1d158440 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x1d3ba532 __napi_schedule +EXPORT_SYMBOL vmlinux 0x1d6140dc of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x1d73ce52 __d_drop +EXPORT_SYMBOL vmlinux 0x1d77f21f scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x1d7a48f6 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x1d9d4ee0 mount_bdev +EXPORT_SYMBOL vmlinux 0x1da2c6a1 finish_no_open +EXPORT_SYMBOL vmlinux 0x1daa3265 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x1daf7d51 km_state_expired +EXPORT_SYMBOL vmlinux 0x1db120b9 param_set_short +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dca4456 swake_up_all +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1dddc9e2 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x1de20d02 snd_pcm_set_ops +EXPORT_SYMBOL vmlinux 0x1df3e21e __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x1e08508f blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e273253 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x1e3c455b nd_device_register +EXPORT_SYMBOL vmlinux 0x1e428c3c sk_ns_capable +EXPORT_SYMBOL vmlinux 0x1e4d46fb cpu_tlb +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e6e88e7 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eb7ecf3 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x1eeb848e __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x1f0d613e devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x1f1e26ec skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x1f1ee29a pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x1f223dbc tcf_hashinfo_destroy +EXPORT_SYMBOL vmlinux 0x1f55446c phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x1f720889 key_alloc +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1fab5905 wait_for_completion +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd0c112 migrate_page +EXPORT_SYMBOL vmlinux 0x1fdd3aa1 blk_start_queue +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1fecd961 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x20013e53 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x2002d01e inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x20205f64 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x2033cca3 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x20421305 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x2055bbd5 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x205a4b37 fsync_bdev +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x207d807b audit_log +EXPORT_SYMBOL vmlinux 0x2090736d tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20b1e75d end_page_writeback +EXPORT_SYMBOL vmlinux 0x20b2dbb3 simple_readpage +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20c6efe2 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x20d6bf76 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20e08476 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20eed888 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x20f5d4fc generic_file_fsync +EXPORT_SYMBOL vmlinux 0x210d3314 vm_insert_page +EXPORT_SYMBOL vmlinux 0x21110dbf mmioset +EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 +EXPORT_SYMBOL vmlinux 0x213326fd down_write_killable +EXPORT_SYMBOL vmlinux 0x215888af fence_default_wait +EXPORT_SYMBOL vmlinux 0x2167db87 nla_reserve +EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy +EXPORT_SYMBOL vmlinux 0x216de533 get_super_thawed +EXPORT_SYMBOL vmlinux 0x218f9e26 of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0x21931011 get_task_io_context +EXPORT_SYMBOL vmlinux 0x21adb9dc iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x21cdbfb1 revert_creds +EXPORT_SYMBOL vmlinux 0x21d1a0f6 inet_put_port +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e0a930 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x21ef8109 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0x221ac4da mdiobus_free +EXPORT_SYMBOL vmlinux 0x22242d61 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x2227a36d vme_register_bridge +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222f6207 __nla_reserve +EXPORT_SYMBOL vmlinux 0x222fa684 lg_global_lock +EXPORT_SYMBOL vmlinux 0x2232a8a5 mempool_free +EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem +EXPORT_SYMBOL vmlinux 0x22600182 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x22866ebd nf_afinfo +EXPORT_SYMBOL vmlinux 0x22a8b753 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x22af46dd sk_mc_loop +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b7c3aa pskb_expand_head +EXPORT_SYMBOL vmlinux 0x22d2aed6 nobh_writepage +EXPORT_SYMBOL vmlinux 0x22d489f5 kill_pgrp +EXPORT_SYMBOL vmlinux 0x22e85444 posix_lock_file +EXPORT_SYMBOL vmlinux 0x22fc4f3a trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x2335b227 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x234812d8 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x234848ed passthru_features_check +EXPORT_SYMBOL vmlinux 0x23524e4e cad_pid +EXPORT_SYMBOL vmlinux 0x235eff20 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x236a0af8 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x236b76a8 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x237a7868 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x237da52e abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x23a2bce3 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23aa49d3 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x23ad08de blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c04bac nand_scan +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23d0284c security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x23d7797f grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x23e0233c cfb_fillrect +EXPORT_SYMBOL vmlinux 0x23ea1ccc nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x240e0503 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x2415c2c6 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x24346fcd unregister_shrinker +EXPORT_SYMBOL vmlinux 0x243f80a1 snd_jack_set_key +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2463436c devm_request_resource +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x248a6b44 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x249660bd param_ops_ullong +EXPORT_SYMBOL vmlinux 0x24a3b7c4 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL vmlinux 0x24e84426 user_path_create +EXPORT_SYMBOL vmlinux 0x24ef5a4a xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x24fcd846 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x24fda26d tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x2519fd1b netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x2536e1e1 clk_get +EXPORT_SYMBOL vmlinux 0x25531e19 snd_dma_alloc_pages +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x257271f2 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x25784cbc of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2582ceca remap_pfn_range +EXPORT_SYMBOL vmlinux 0x2596cb05 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x25a8d34c pci_add_resource +EXPORT_SYMBOL vmlinux 0x25bf7b5d nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x25d8d31f ilookup +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f9bb25 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x261e890b scsi_host_put +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x265b2bbb vga_put +EXPORT_SYMBOL vmlinux 0x26645246 scsi_print_result +EXPORT_SYMBOL vmlinux 0x26654c9a netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x2676fb44 install_exec_creds +EXPORT_SYMBOL vmlinux 0x267f4219 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x26817bd7 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x2687f607 simple_get_link +EXPORT_SYMBOL vmlinux 0x268c7ced snd_pcm_limit_hw_rates +EXPORT_SYMBOL vmlinux 0x26aeda78 tty_port_open +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26c2128c lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x26ddd725 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26f39bb0 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x26f74db4 no_llseek +EXPORT_SYMBOL vmlinux 0x2710c988 mutex_unlock +EXPORT_SYMBOL vmlinux 0x27354e59 iput +EXPORT_SYMBOL vmlinux 0x27469cbc of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x275ef902 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x2771cc70 set_wb_congested +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x279e502c scsi_add_device +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27e0b49d dput +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27ebb08f neigh_destroy +EXPORT_SYMBOL vmlinux 0x27f32c14 pps_register_source +EXPORT_SYMBOL vmlinux 0x27fb3b19 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x28033c39 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 +EXPORT_SYMBOL vmlinux 0x28166464 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x281ad34b dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x281c4c69 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x281c8c6f xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x284a63bf tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x285c3735 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x285e6e51 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x285f64e6 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x287285a7 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x289690a1 devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0x289d5472 snd_component_add +EXPORT_SYMBOL vmlinux 0x289ec50e bio_reset +EXPORT_SYMBOL vmlinux 0x28a1c056 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28c09b9d sock_no_getname +EXPORT_SYMBOL vmlinux 0x28cf4cfe proc_symlink +EXPORT_SYMBOL vmlinux 0x28e813ca pci_release_regions +EXPORT_SYMBOL vmlinux 0x29108600 truncate_setsize +EXPORT_SYMBOL vmlinux 0x29124cf2 con_is_bound +EXPORT_SYMBOL vmlinux 0x292a8bf5 tcp_req_err +EXPORT_SYMBOL vmlinux 0x293e78ef of_get_next_parent +EXPORT_SYMBOL vmlinux 0x2952abce md_done_sync +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x295ba1ac path_get +EXPORT_SYMBOL vmlinux 0x297c7694 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x29aca6b6 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x29c6f347 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x29e1b020 ida_simple_remove +EXPORT_SYMBOL vmlinux 0x29f5fe09 neigh_table_init +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x2a03373d locks_free_lock +EXPORT_SYMBOL vmlinux 0x2a108fe8 flush_kernel_dcache_page +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit +EXPORT_SYMBOL vmlinux 0x2a574f4b fscrypt_fname_encrypted_size +EXPORT_SYMBOL vmlinux 0x2a63cad2 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x2a70474f d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x2a7fe47a blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x2a88b9fc mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2af48431 mdio_device_create +EXPORT_SYMBOL vmlinux 0x2afff592 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b0f8b6e prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x2b12925d cpumask_next_and +EXPORT_SYMBOL vmlinux 0x2b14b8c2 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x2b14e698 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x2b26ba91 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b2f0ae6 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x2b4121d0 param_set_invbool +EXPORT_SYMBOL vmlinux 0x2b4e956e mempool_create +EXPORT_SYMBOL vmlinux 0x2b50d11e unlock_page +EXPORT_SYMBOL vmlinux 0x2b5e25f0 inode_change_ok +EXPORT_SYMBOL vmlinux 0x2b7bb1aa sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x2b88089f pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed +EXPORT_SYMBOL vmlinux 0x2bed353e netif_carrier_off +EXPORT_SYMBOL vmlinux 0x2bed7e39 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x2bf66e0f nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x2c0cb154 sock_efree +EXPORT_SYMBOL vmlinux 0x2c13ae61 netlink_capable +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c16f633 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x2c211bad __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c29f21a __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x2c2dae0b jbd2_journal_inode_add_wait +EXPORT_SYMBOL vmlinux 0x2c3ebec4 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x2c428b84 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x2c655ab4 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem +EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs +EXPORT_SYMBOL vmlinux 0x2c988955 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x2cc083fb get_tz_trend +EXPORT_SYMBOL vmlinux 0x2cd060ad mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x2cd20cf0 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x2cd724d3 netdev_features_change +EXPORT_SYMBOL vmlinux 0x2cf24e68 register_quota_format +EXPORT_SYMBOL vmlinux 0x2d07bc42 vfs_whiteout +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d241398 give_up_console +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d457b1c mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x2d52fdb8 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x2d580985 pci_bus_type +EXPORT_SYMBOL vmlinux 0x2d5f62a5 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x2d6507b5 _find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0x2d688b41 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x2dc8fd3e neigh_for_each +EXPORT_SYMBOL vmlinux 0x2dce6af3 sock_create_lite +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2dfd568e __ps2_command +EXPORT_SYMBOL vmlinux 0x2dffb957 mdio_device_free +EXPORT_SYMBOL vmlinux 0x2e0c6d3d twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x2e0f2265 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e1dc3f5 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x2e3661ad seq_file_path +EXPORT_SYMBOL vmlinux 0x2e57cdf9 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x2e5810c6 __aeabi_unwind_cpp_pr1 +EXPORT_SYMBOL vmlinux 0x2e612119 filemap_fault +EXPORT_SYMBOL vmlinux 0x2e6778ac single_open +EXPORT_SYMBOL vmlinux 0x2e8cac40 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x2e9318e0 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x2eb3b519 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x2ebe6502 pci_choose_state +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ec63fab blk_sync_queue +EXPORT_SYMBOL vmlinux 0x2ecb53e1 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x2ed85037 vme_slave_request +EXPORT_SYMBOL vmlinux 0x2ef4da2f arm_dma_ops +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f17fb4e blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f541255 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x2f5f2a57 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2f5fee28 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x2f6a037f neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x2f6ed24d of_match_device +EXPORT_SYMBOL vmlinux 0x2f762021 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x2f7d92e2 misc_deregister +EXPORT_SYMBOL vmlinux 0x2f84828d dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x2fabde44 blk_start_request +EXPORT_SYMBOL vmlinux 0x2fb2635b of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fccac4f blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe81c94 kunmap_high +EXPORT_SYMBOL vmlinux 0x2fed7ea1 vme_register_driver +EXPORT_SYMBOL vmlinux 0x2ffc947f sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x30106664 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x301c2738 scsi_device_get +EXPORT_SYMBOL vmlinux 0x302ea4d8 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x30389ef6 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x305d4b6e sk_stop_timer +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x307f248e mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x308daf86 phy_init_hw +EXPORT_SYMBOL vmlinux 0x3093ac3c generic_readlink +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a74a7f bio_phys_segments +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30f179d7 __blk_end_request +EXPORT_SYMBOL vmlinux 0x31007500 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x31282f18 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL vmlinux 0x313380cc i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x31357360 nf_register_hooks +EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x314b5f39 put_tty_driver +EXPORT_SYMBOL vmlinux 0x315e6e89 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x317b1951 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x318c4592 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x31c209fc blk_end_request +EXPORT_SYMBOL vmlinux 0x31cfca62 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x31d15fd9 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x31e0c9eb phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx +EXPORT_SYMBOL vmlinux 0x31f20399 empty_zero_page +EXPORT_SYMBOL vmlinux 0x321a4cec seq_open_private +EXPORT_SYMBOL vmlinux 0x321c6b14 devm_free_irq +EXPORT_SYMBOL vmlinux 0x322cbb66 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x32386e39 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x3244ef52 bio_chain +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x325da123 brioctl_set +EXPORT_SYMBOL vmlinux 0x3281b675 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x3283f1aa pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy +EXPORT_SYMBOL vmlinux 0x32907b91 idr_remove +EXPORT_SYMBOL vmlinux 0x32999fff mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x32b7ccfe get_mem_type +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32df4531 d_find_alias +EXPORT_SYMBOL vmlinux 0x32e0ab42 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x32ec8cf8 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x3303c161 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x330516ca do_splice_direct +EXPORT_SYMBOL vmlinux 0x330dc726 kernel_accept +EXPORT_SYMBOL vmlinux 0x3316845e idr_get_next +EXPORT_SYMBOL vmlinux 0x33247a0b up_read +EXPORT_SYMBOL vmlinux 0x33301d96 snd_device_register +EXPORT_SYMBOL vmlinux 0x3332d3ab build_skb +EXPORT_SYMBOL vmlinux 0x33727faf scsi_unregister +EXPORT_SYMBOL vmlinux 0x33a88711 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x33b5a834 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33edc0f8 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x3405e81c dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x340a3922 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x340fb2a5 bio_map_kern +EXPORT_SYMBOL vmlinux 0x341508d8 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x34271737 do_SAK +EXPORT_SYMBOL vmlinux 0x3439c607 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x344363f2 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x3444f642 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x3447565b dev_addr_del +EXPORT_SYMBOL vmlinux 0x344b7739 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x3456b86f mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x3457e919 ptp_clock_index +EXPORT_SYMBOL vmlinux 0x34593933 finish_open +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x3467dc7e scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x3470c21e dst_destroy +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34b0b23f blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x34c61081 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x34c84691 contig_page_data +EXPORT_SYMBOL vmlinux 0x34deed49 udplite_prot +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f3b107 flush_old_exec +EXPORT_SYMBOL vmlinux 0x35014c3d inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x3507a132 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3519937a import_iovec +EXPORT_SYMBOL vmlinux 0x351bc794 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x3520a1eb dev_add_offload +EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x356a3ce6 ilookup5 +EXPORT_SYMBOL vmlinux 0x35883f75 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x35a52164 jbd2_journal_inode_add_write +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35af7f72 pci_get_class +EXPORT_SYMBOL vmlinux 0x35dbe5e2 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x35eb3cd7 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x35ebb546 icmp_send +EXPORT_SYMBOL vmlinux 0x35fa763a shdma_request_irq +EXPORT_SYMBOL vmlinux 0x35ffe522 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable +EXPORT_SYMBOL vmlinux 0x36179f72 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x362f1c47 __seq_open_private +EXPORT_SYMBOL vmlinux 0x365a180d mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x3661f7c6 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x367765c5 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x3681a29a locks_init_lock +EXPORT_SYMBOL vmlinux 0x368395f8 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x36849993 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x369497cf nvm_end_io +EXPORT_SYMBOL vmlinux 0x369587e9 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x3695edda request_resource +EXPORT_SYMBOL vmlinux 0x36a4d016 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x36ac827b eth_type_trans +EXPORT_SYMBOL vmlinux 0x36b9ba01 proc_set_size +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36d4435b jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x36d75965 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x36f78cda __pci_register_driver +EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x36ff4612 genphy_config_init +EXPORT_SYMBOL vmlinux 0x3704fe90 iov_iter_init +EXPORT_SYMBOL vmlinux 0x371670a4 inode_init_always +EXPORT_SYMBOL vmlinux 0x372dfdc0 rwsem_wake +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x375d00eb generic_perform_write +EXPORT_SYMBOL vmlinux 0x37613521 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x376e5e88 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x3771b461 crc_ccitt +EXPORT_SYMBOL vmlinux 0x37774020 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x378afe79 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL vmlinux 0x379dee5f trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b992c0 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c2f723 snd_unregister_device +EXPORT_SYMBOL vmlinux 0x37e6deef nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x37f7017d dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x37fffbac current_in_userns +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381b81f7 security_path_unlink +EXPORT_SYMBOL vmlinux 0x381ccc13 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x381dd02c blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x382b3d51 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x383351ff phy_attach_direct +EXPORT_SYMBOL vmlinux 0x38368d0f vmap +EXPORT_SYMBOL vmlinux 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x385420b4 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure +EXPORT_SYMBOL vmlinux 0x389ecf9e __bswapdi2 +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b0a7d5 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x38e31a40 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x38e9a4aa sg_split +EXPORT_SYMBOL vmlinux 0x38f21353 vfs_rename +EXPORT_SYMBOL vmlinux 0x39148724 d_path +EXPORT_SYMBOL vmlinux 0x3924dd56 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL vmlinux 0x39730d06 atomic_io_modify +EXPORT_SYMBOL vmlinux 0x3975aab0 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x39776212 d_make_root +EXPORT_SYMBOL vmlinux 0x398b1160 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x3992d6ff fscrypt_get_ctx +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x39a10640 devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x39a82c72 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL vmlinux 0x39d4d5a7 dquot_commit +EXPORT_SYMBOL vmlinux 0x39e570e0 __put_page +EXPORT_SYMBOL vmlinux 0x39e59014 put_disk +EXPORT_SYMBOL vmlinux 0x39e90e30 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x39ea24c1 sync_inode +EXPORT_SYMBOL vmlinux 0x3a190a8d seq_hex_dump +EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x3a1d9954 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x3a20e1d4 __put_cred +EXPORT_SYMBOL vmlinux 0x3a3763fd skb_dequeue +EXPORT_SYMBOL vmlinux 0x3a468446 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x3a5c9f49 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x3a5e7119 import_single_range +EXPORT_SYMBOL vmlinux 0x3a60164c tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x3a88c705 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x3a8df2a9 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x3a931124 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x3a99dda2 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aa0b3d4 fence_signal +EXPORT_SYMBOL vmlinux 0x3ab43e1c i2c_release_client +EXPORT_SYMBOL vmlinux 0x3ab6fcec scsi_print_command +EXPORT_SYMBOL vmlinux 0x3ababc34 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x3acee02b param_set_byte +EXPORT_SYMBOL vmlinux 0x3ad3eb18 kobject_add +EXPORT_SYMBOL vmlinux 0x3b1a0256 snd_ctl_remove_id +EXPORT_SYMBOL vmlinux 0x3b231c8c pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x3b25fae8 kfree_skb +EXPORT_SYMBOL vmlinux 0x3b27b272 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x3b2f9408 inet_release +EXPORT_SYMBOL vmlinux 0x3b32f668 simple_lookup +EXPORT_SYMBOL vmlinux 0x3b3bf059 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x3b4b3f7a __pagevec_release +EXPORT_SYMBOL vmlinux 0x3b520920 fs_bio_set +EXPORT_SYMBOL vmlinux 0x3b5c4c53 nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x3b60e46c tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b8e450c bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x3b91f3af snd_free_pages +EXPORT_SYMBOL vmlinux 0x3b953a70 allocate_resource +EXPORT_SYMBOL vmlinux 0x3b9f376b phy_device_register +EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base +EXPORT_SYMBOL vmlinux 0x3bc73a13 genphy_read_status +EXPORT_SYMBOL vmlinux 0x3bd016e3 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x3bea6098 sk_net_capable +EXPORT_SYMBOL vmlinux 0x3bfe160f d_drop +EXPORT_SYMBOL vmlinux 0x3bffd790 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c1ecbf4 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c549c98 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x3c6fd11f devm_gpiod_get +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c928000 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x3c9e6202 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x3cb3931b sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x3cb6f874 __scm_send +EXPORT_SYMBOL vmlinux 0x3cba234c netif_napi_add +EXPORT_SYMBOL vmlinux 0x3cc0913b ping_prot +EXPORT_SYMBOL vmlinux 0x3cdd6b36 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x3ce4965c ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ce68600 make_kprojid +EXPORT_SYMBOL vmlinux 0x3cfa969a proc_douintvec +EXPORT_SYMBOL vmlinux 0x3d02960b pci_iomap_range +EXPORT_SYMBOL vmlinux 0x3d0f53fd pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x3d2f0437 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x3d30409d iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap +EXPORT_SYMBOL vmlinux 0x3d4a5829 load_nls_default +EXPORT_SYMBOL vmlinux 0x3d5da333 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x3d65e7d4 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x3d6ddab7 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL vmlinux 0x3d7b5529 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x3d84c786 console_start +EXPORT_SYMBOL vmlinux 0x3daf46d5 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x3db4de79 nvm_mark_blk +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3ddc1091 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e18e5d1 napi_get_frags +EXPORT_SYMBOL vmlinux 0x3e1abd7b nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x3e364fd4 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL vmlinux 0x3e374f5c scsi_register +EXPORT_SYMBOL vmlinux 0x3e51f180 snd_ctl_notify +EXPORT_SYMBOL vmlinux 0x3e62af81 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x3e6b6cbe __neigh_event_send +EXPORT_SYMBOL vmlinux 0x3e77a12a filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3eb41ae3 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x3ebc4790 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL vmlinux 0x3ee72720 uart_register_driver +EXPORT_SYMBOL vmlinux 0x3f1dfb70 input_grab_device +EXPORT_SYMBOL vmlinux 0x3f220d88 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x3f256046 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4921a0 kill_pid +EXPORT_SYMBOL vmlinux 0x3f5a24d3 dquot_get_state +EXPORT_SYMBOL vmlinux 0x3f5b67d5 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3f5c6471 del_timer_sync +EXPORT_SYMBOL vmlinux 0x3f79a61b __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x3f823b2e snd_pcm_hw_refine +EXPORT_SYMBOL vmlinux 0x3f8788eb fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x3f8970ee input_register_handle +EXPORT_SYMBOL vmlinux 0x3f93998d devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x3f9b4d7d in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x3fa391be fscrypt_decrypt_page +EXPORT_SYMBOL vmlinux 0x3fab3ca9 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x3fb4f283 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x3fb9dfb0 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x3fbc16e5 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x3fc9b8a5 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ff0f74f phy_print_status +EXPORT_SYMBOL vmlinux 0x3fffe13d register_cdrom +EXPORT_SYMBOL vmlinux 0x401c05c3 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x402a38cb lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x404e1ec7 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x406c3695 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x406ecd3c elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 +EXPORT_SYMBOL vmlinux 0x407a3275 omap_start_dma +EXPORT_SYMBOL vmlinux 0x407e19ff __breadahead +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x409f51c5 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40aa58da lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x40ad3abc neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x40c01c2f __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x40c3f909 __nla_put +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d073f9 cdev_del +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d5a268 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x40df32db fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x40ed524a _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 +EXPORT_SYMBOL vmlinux 0x40ff132c rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x4118354c cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x411bfddd register_filesystem +EXPORT_SYMBOL vmlinux 0x4122033e blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x4135182c generic_file_open +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x415c7240 arp_xmit +EXPORT_SYMBOL vmlinux 0x41664b6d serio_reconnect +EXPORT_SYMBOL vmlinux 0x41862ad4 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x418c829f ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x41922a1e pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x419648d7 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x41ad07f6 down_write_trylock +EXPORT_SYMBOL vmlinux 0x41b3f0fc touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0x41c0d412 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x41dddde7 lease_modify +EXPORT_SYMBOL vmlinux 0x41f8647f radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x4201d85d unregister_console +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x42242ac2 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x423d81ed ida_pre_get +EXPORT_SYMBOL vmlinux 0x42427677 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x427eeafd xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all +EXPORT_SYMBOL vmlinux 0x42b87799 key_link +EXPORT_SYMBOL vmlinux 0x42ccf3e5 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x42e828fe release_sock +EXPORT_SYMBOL vmlinux 0x42ecf546 ioremap +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x430fd36c tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x43193e05 sock_from_file +EXPORT_SYMBOL vmlinux 0x4323855b thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x437226a7 sk_common_release +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x438dd9c1 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x438fd57c __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x4390c11c unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x4393a70f kern_unmount +EXPORT_SYMBOL vmlinux 0x4393e9bc mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x43c422cc mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0x43cef984 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x440080c9 mapping_tagged +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x44203423 d_genocide +EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume +EXPORT_SYMBOL vmlinux 0x442a8197 proc_remove +EXPORT_SYMBOL vmlinux 0x443236ec skb_free_datagram +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x443de8ae ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x4440698f irq_set_chip +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x44594085 devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x44643b93 __aeabi_lmul +EXPORT_SYMBOL vmlinux 0x446e905b dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x4479f5c0 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x44885c06 __sb_end_write +EXPORT_SYMBOL vmlinux 0x44932469 param_get_bool +EXPORT_SYMBOL vmlinux 0x449351eb gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x449562c9 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x44a3d383 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x44afd6a4 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44b5ee9a kasprintf +EXPORT_SYMBOL vmlinux 0x44be6373 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x44c7258c simple_unlink +EXPORT_SYMBOL vmlinux 0x44d98512 mmc_free_host +EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x44dd3d8d completion_done +EXPORT_SYMBOL vmlinux 0x44dff8f5 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x44e8f051 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x44e91f6d bprm_change_interp +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44f2fef4 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x4526913c pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x45389a40 sock_init_data +EXPORT_SYMBOL vmlinux 0x453a597e page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x4554dda8 softnet_data +EXPORT_SYMBOL vmlinux 0x455903b0 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x45612027 pci_find_bus +EXPORT_SYMBOL vmlinux 0x4562a134 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45988064 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x45b8deee proto_register +EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low +EXPORT_SYMBOL vmlinux 0x45bde99a jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x45c6d6a3 wireless_send_event +EXPORT_SYMBOL vmlinux 0x45d63fe1 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x45e71b9c posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x45f942b5 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x46084295 kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0x4608a32f sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x4618174e __scm_destroy +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x463bde65 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x4653fd00 snd_pcm_hw_constraint_list +EXPORT_SYMBOL vmlinux 0x4657ebaa fence_context_alloc +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x4688eaf1 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x46935bea udp_ioctl +EXPORT_SYMBOL vmlinux 0x46a46b8a scsi_remove_host +EXPORT_SYMBOL vmlinux 0x46bcecde tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x46ca246c omap_get_dma_src_pos +EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 +EXPORT_SYMBOL vmlinux 0x46de7522 snd_timer_open +EXPORT_SYMBOL vmlinux 0x46e6ff56 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x46fa5d9a pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x46fdf448 snd_pcm_notify +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x4726a576 inet_gso_segment +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x4764c011 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x4792a976 d_move +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x47969221 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x47c17776 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x47c20a7a seq_pad +EXPORT_SYMBOL vmlinux 0x47d949c6 __dst_free +EXPORT_SYMBOL vmlinux 0x47ddba8f nvm_submit_io +EXPORT_SYMBOL vmlinux 0x47e4a529 mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range +EXPORT_SYMBOL vmlinux 0x47eb28b5 of_node_put +EXPORT_SYMBOL vmlinux 0x47f1ad64 follow_up +EXPORT_SYMBOL vmlinux 0x47f757de elf_platform +EXPORT_SYMBOL vmlinux 0x480d313d i2c_master_recv +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x486afd49 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x48817a4e xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x48912c01 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x48947cc0 snd_ctl_unregister_ioctl +EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type +EXPORT_SYMBOL vmlinux 0x48aa59fe input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48c45e2e new_inode +EXPORT_SYMBOL vmlinux 0x48dfef1d input_free_device +EXPORT_SYMBOL vmlinux 0x48f54e85 registered_fb +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x49265057 vfs_read +EXPORT_SYMBOL vmlinux 0x49320597 mpage_readpages +EXPORT_SYMBOL vmlinux 0x493f6b0d swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x49474655 tty_port_put +EXPORT_SYMBOL vmlinux 0x494e1679 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x497624be inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x498782a9 snd_timer_interrupt +EXPORT_SYMBOL vmlinux 0x499cb58c prepare_to_wait +EXPORT_SYMBOL vmlinux 0x49af55e4 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49d66b50 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x49ea58be radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit +EXPORT_SYMBOL vmlinux 0x49ec63c6 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a14c80a snd_dma_alloc_pages_fallback +EXPORT_SYMBOL vmlinux 0x4a1e5529 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x4a2067df get_super +EXPORT_SYMBOL vmlinux 0x4a23184e snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL vmlinux 0x4a2c9049 arm_smccc_smc +EXPORT_SYMBOL vmlinux 0x4a37a351 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x4a39e5a1 omap_set_dma_src_params +EXPORT_SYMBOL vmlinux 0x4a3e30c3 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL vmlinux 0x4a49b3ac of_n_size_cells +EXPORT_SYMBOL vmlinux 0x4a53823f __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x4a57b339 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x4a5ac95c devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x4a6e4fce __quota_error +EXPORT_SYMBOL vmlinux 0x4a71a182 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x4a8c8212 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x4a8cbcbf d_invalidate +EXPORT_SYMBOL vmlinux 0x4aa71ae1 amba_device_register +EXPORT_SYMBOL vmlinux 0x4aaefbeb jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x4ab7fad6 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x4acca5c9 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b0bdee7 cdev_add +EXPORT_SYMBOL vmlinux 0x4b15b072 snd_device_free +EXPORT_SYMBOL vmlinux 0x4b16074a security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x4b1a1c90 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b28fec6 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x4b30c40e sget +EXPORT_SYMBOL vmlinux 0x4b3c5862 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x4b4fe75b radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b710e5b inet_register_protosw +EXPORT_SYMBOL vmlinux 0x4b78933c qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0x4b824338 dma_find_channel +EXPORT_SYMBOL vmlinux 0x4ba0e7b8 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bafd09c xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x4bb27df5 dev_driver_string +EXPORT_SYMBOL vmlinux 0x4bbec762 edma_filter_fn +EXPORT_SYMBOL vmlinux 0x4bc77b28 dump_skip +EXPORT_SYMBOL vmlinux 0x4bd66240 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x4be7fb63 up +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4c0a9ecb napi_disable +EXPORT_SYMBOL vmlinux 0x4c148986 elv_rb_find +EXPORT_SYMBOL vmlinux 0x4c1588c3 skb_push +EXPORT_SYMBOL vmlinux 0x4c233a44 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x4c243cdf netlink_set_err +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c5fc58c _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c68ea0e udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x4c7407f0 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x4c86184b remove_wait_queue +EXPORT_SYMBOL vmlinux 0x4c8df4a8 kernel_bind +EXPORT_SYMBOL vmlinux 0x4c8e42cb of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x4c929cfe fence_array_create +EXPORT_SYMBOL vmlinux 0x4cb2cfae uart_resume_port +EXPORT_SYMBOL vmlinux 0x4cbeedba inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4cde4c95 __invalidate_device +EXPORT_SYMBOL vmlinux 0x4cf47bd1 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x4d0800ef phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d15aa83 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x4d317b9e cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x4d3ac3b6 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d4fc5ca ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x4d6c71ce nvm_register +EXPORT_SYMBOL vmlinux 0x4d800cb1 skb_make_writable +EXPORT_SYMBOL vmlinux 0x4d8102bd fb_set_cmap +EXPORT_SYMBOL vmlinux 0x4d8f8e4b __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x4d955b3f param_ops_int +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL vmlinux 0x4db8bd79 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x4dc388ec fb_class +EXPORT_SYMBOL vmlinux 0x4dd078d4 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x4dd5462c cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x4dd7da2a ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x4ddac4fd i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4dec6038 memscan +EXPORT_SYMBOL vmlinux 0x4dee9050 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df5d0e1 seq_release +EXPORT_SYMBOL vmlinux 0x4e1792c8 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x4e19de15 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e37e183 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x4e4414be bio_put +EXPORT_SYMBOL vmlinux 0x4e45f78c input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x4e4e5774 tcp_filter +EXPORT_SYMBOL vmlinux 0x4e506013 omap_dma_link_lch +EXPORT_SYMBOL vmlinux 0x4e68d6cf __mutex_init +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e78d3c3 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x4e84ec36 mpage_writepages +EXPORT_SYMBOL vmlinux 0x4e88f05c tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x4ecde43d dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x4ecf156c flush_signals +EXPORT_SYMBOL vmlinux 0x4eda655d devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x4efab4c3 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f2b450f poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f4af894 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x4f508d64 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query +EXPORT_SYMBOL vmlinux 0x4f68bca0 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f7b682e dma_mmap_from_coherent +EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free +EXPORT_SYMBOL vmlinux 0x4f9f67f1 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x4f9fd455 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x4fa343e6 phy_driver_register +EXPORT_SYMBOL vmlinux 0x4fbae6a6 uuid_le_to_bin +EXPORT_SYMBOL vmlinux 0x4fbff1b1 mmc_get_card +EXPORT_SYMBOL vmlinux 0x4fd22676 fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x4fe08719 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x4fee158e skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x50155846 dev_warn +EXPORT_SYMBOL vmlinux 0x501d710a done_path_create +EXPORT_SYMBOL vmlinux 0x502fc1f1 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL vmlinux 0x504c85ca vfs_mkdir +EXPORT_SYMBOL vmlinux 0x5063f485 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x5079d1d4 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x509817cf vprintk_emit +EXPORT_SYMBOL vmlinux 0x50a8290d register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x50ad70c1 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x50ae9f0d param_ops_short +EXPORT_SYMBOL vmlinux 0x50b15394 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x50b3359a nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50b96d70 seq_read +EXPORT_SYMBOL vmlinux 0x50d27ab8 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x50d5cc50 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x50d66097 dev_load +EXPORT_SYMBOL vmlinux 0x50dbb996 genlmsg_put +EXPORT_SYMBOL vmlinux 0x50e666ef fscrypt_free_filename +EXPORT_SYMBOL vmlinux 0x50ea9e69 pci_set_vpd_size +EXPORT_SYMBOL vmlinux 0x5100b136 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x51069281 register_sound_mixer +EXPORT_SYMBOL vmlinux 0x510b7211 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x511746c1 dump_fpu +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x51368b57 udp_poll +EXPORT_SYMBOL vmlinux 0x513a1118 sock_release +EXPORT_SYMBOL vmlinux 0x51476380 padata_stop +EXPORT_SYMBOL vmlinux 0x514c1e7b mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x514cc273 arm_copy_from_user +EXPORT_SYMBOL vmlinux 0x51800ae3 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x51ab0011 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x51b1b1c3 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x51d559d1 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid +EXPORT_SYMBOL vmlinux 0x51e9de1c inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x520fab26 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x521e92c0 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x524f69f6 mb_cache_entry_delete_block +EXPORT_SYMBOL vmlinux 0x5278a34e param_ops_string +EXPORT_SYMBOL vmlinux 0x52806e75 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x528c121e __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x528d0c14 idr_init +EXPORT_SYMBOL vmlinux 0x5297ddb9 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x529fe2ba fence_signal_locked +EXPORT_SYMBOL vmlinux 0x52a1ad3c posix_acl_valid +EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le +EXPORT_SYMBOL vmlinux 0x52bb841c atomic_io_modify_relaxed +EXPORT_SYMBOL vmlinux 0x52c07c89 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x52c1f676 vm_mmap +EXPORT_SYMBOL vmlinux 0x52cd6623 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x52cf19dc qdisc_destroy +EXPORT_SYMBOL vmlinux 0x52cf2448 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53149a2a amba_driver_register +EXPORT_SYMBOL vmlinux 0x531f97c2 dev_change_flags +EXPORT_SYMBOL vmlinux 0x5320698b unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x53248a40 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x532820c8 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x5328d2a2 secpath_dup +EXPORT_SYMBOL vmlinux 0x532e7a12 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x535846b9 of_mm_gpiochip_add_data +EXPORT_SYMBOL vmlinux 0x53586a2f swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x5359721c get_io_context +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x536f6e7c radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x537049c0 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x537b752f sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53b86354 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x53c9c71f inet_select_addr +EXPORT_SYMBOL vmlinux 0x53f8e87d d_delete +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x541a3ad6 md_check_recovery +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54416d2f dev_activate +EXPORT_SYMBOL vmlinux 0x5443f9be snd_device_new +EXPORT_SYMBOL vmlinux 0x545ebc67 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x545f206c dentry_open +EXPORT_SYMBOL vmlinux 0x546830dd snd_timer_new +EXPORT_SYMBOL vmlinux 0x547077ec __wake_up_bit +EXPORT_SYMBOL vmlinux 0x5478f503 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x549f33eb blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x549faa73 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54ac879f jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x54adf37f tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x54ae3499 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x54b2052a stop_tty +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54c640d9 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54ff4c46 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x55004d26 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x55173a7e icmpv6_send +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x55309f4b mmc_release_host +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x55651a30 phy_start +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x556ce7d6 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x5585a13c nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x558a1f8c kmap_to_page +EXPORT_SYMBOL vmlinux 0x558a3759 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x55c8860b sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55e727ee cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x55ef08d9 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x563f4daa kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x5646194c get_phy_device +EXPORT_SYMBOL vmlinux 0x5659673f i2c_master_send +EXPORT_SYMBOL vmlinux 0x565a2ab1 dst_discard_out +EXPORT_SYMBOL vmlinux 0x567e13de iget_locked +EXPORT_SYMBOL vmlinux 0x56842633 get_disk +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x569352a0 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x56a53e90 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL vmlinux 0x56c4c1c1 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56d2b278 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x56d851a5 rt6_lookup +EXPORT_SYMBOL vmlinux 0x56e4f285 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x5703bc75 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x5727171c snd_card_free_when_closed +EXPORT_SYMBOL vmlinux 0x572b132c pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x572c7029 of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x57426ab1 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x57456db5 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x5755afad snd_jack_report +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x576c5609 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x5781c6cb input_set_abs_params +EXPORT_SYMBOL vmlinux 0x578cc625 fence_free +EXPORT_SYMBOL vmlinux 0x579153db swake_up +EXPORT_SYMBOL vmlinux 0x57989e24 seqno_fence_ops +EXPORT_SYMBOL vmlinux 0x579f39bd dmam_release_declared_memory +EXPORT_SYMBOL vmlinux 0x57ad6f5b dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x57b5e212 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x57bd6b91 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0x57c505b5 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits +EXPORT_SYMBOL vmlinux 0x57d3d4d7 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x57eb25be mdio_device_remove +EXPORT_SYMBOL vmlinux 0x57fb9d88 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x5808bb3f snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x58275e57 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x584879cc dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x584d469c d_exact_alias +EXPORT_SYMBOL vmlinux 0x58516557 omap_set_dma_src_data_pack +EXPORT_SYMBOL vmlinux 0x58534694 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x5857b7cd pgprot_kernel +EXPORT_SYMBOL vmlinux 0x585a3ee3 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x58767dbc invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x587faefb __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x589bfafe pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58c623ce pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x58d633c7 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58e3e490 bdi_register +EXPORT_SYMBOL vmlinux 0x58e609ab ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x58eb26bd path_put +EXPORT_SYMBOL vmlinux 0x58f7fac4 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x58ff6ba4 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x59054ae5 __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x591f8459 of_device_register +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 +EXPORT_SYMBOL vmlinux 0x595628d0 md_flush_request +EXPORT_SYMBOL vmlinux 0x5977181b filp_clone_open +EXPORT_SYMBOL vmlinux 0x598542b2 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x59a2312f eth_header +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area +EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 +EXPORT_SYMBOL vmlinux 0x59e5ff55 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x59fad834 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a216bd6 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x5a2241ac __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x5a3499ba security_path_mkdir +EXPORT_SYMBOL vmlinux 0x5a3875e9 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x5a38cf83 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x5a3a6e17 igrab +EXPORT_SYMBOL vmlinux 0x5a3ce2ea fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x5a47bdaf xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x5a488786 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x5a5eaad7 phy_attached_print +EXPORT_SYMBOL vmlinux 0x5aa46239 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x5ab1537f scsi_ioctl +EXPORT_SYMBOL vmlinux 0x5ab8d961 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x5abfa69b noop_qdisc +EXPORT_SYMBOL vmlinux 0x5acd9122 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x5ad8f916 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x5ae5be44 lg_lock_init +EXPORT_SYMBOL vmlinux 0x5af701cc simple_map_init +EXPORT_SYMBOL vmlinux 0x5afec99e blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b16372d serio_interrupt +EXPORT_SYMBOL vmlinux 0x5b166765 input_close_device +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b2e9ed3 dma_mark_declared_memory_occupied +EXPORT_SYMBOL vmlinux 0x5b496438 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x5bbd0626 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x5bc10637 thaw_bdev +EXPORT_SYMBOL vmlinux 0x5c0a4c03 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x5c0d2c10 proc_create_data +EXPORT_SYMBOL vmlinux 0x5c1a43a1 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x5c203e35 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x5c24b01f snd_ctl_free_one +EXPORT_SYMBOL vmlinux 0x5c5d8037 param_set_bool +EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id +EXPORT_SYMBOL vmlinux 0x5c9368e2 phy_connect +EXPORT_SYMBOL vmlinux 0x5c942219 scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x5c9d3339 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x5cae48ff f_setown +EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x5ced18b9 vme_bus_type +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d0569e8 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x5d074c23 param_set_long +EXPORT_SYMBOL vmlinux 0x5d18de25 irq_stat +EXPORT_SYMBOL vmlinux 0x5d417f83 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x5d4a8320 kvasprintf +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d822685 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x5d89cb8c make_bad_inode +EXPORT_SYMBOL vmlinux 0x5d96ab37 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x5db1546e neigh_lookup +EXPORT_SYMBOL vmlinux 0x5dcf6341 outer_cache +EXPORT_SYMBOL vmlinux 0x5dd06990 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x5ddda0dc fence_add_callback +EXPORT_SYMBOL vmlinux 0x5df7b6bb generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x5e0d801a inet_frag_find +EXPORT_SYMBOL vmlinux 0x5e23af8c xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x5e318cbd devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x5e4d6de9 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x5e645650 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x5e677f3c netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x5e7d5369 netif_skb_features +EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL vmlinux 0x5e825786 cpumask_any_but +EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e91e47a generic_listxattr +EXPORT_SYMBOL vmlinux 0x5e920686 sock_alloc +EXPORT_SYMBOL vmlinux 0x5e93cfb9 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ebf1b14 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x5ec6e3fa fscrypt_encrypt_page +EXPORT_SYMBOL vmlinux 0x5ecf2b52 blk_init_tags +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ef32a07 md_register_thread +EXPORT_SYMBOL vmlinux 0x5efa09e2 elv_rb_add +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f09c2c4 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x5f163ab4 inode_permission +EXPORT_SYMBOL vmlinux 0x5f27323c _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x5f47b5d5 kill_block_super +EXPORT_SYMBOL vmlinux 0x5f644d43 cpu_user +EXPORT_SYMBOL vmlinux 0x5f754e5a memset +EXPORT_SYMBOL vmlinux 0x5f7fb586 mpage_writepage +EXPORT_SYMBOL vmlinux 0x5f870531 snd_timer_stop +EXPORT_SYMBOL vmlinux 0x5f8a32ff inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x5f8d2428 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x5f9381ef sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x5fd4c369 md_cluster_mod +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x600da7ca pci_remove_bus +EXPORT_SYMBOL vmlinux 0x60143727 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x601a81e8 from_kuid +EXPORT_SYMBOL vmlinux 0x601e17c8 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602b2cfd dev_add_pack +EXPORT_SYMBOL vmlinux 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL vmlinux 0x603080ee tty_port_close_end +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x603aaba4 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x604b4940 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x606cf02d __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x60716198 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x60800b12 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60b86f61 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x60cab842 page_address +EXPORT_SYMBOL vmlinux 0x60cef190 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x61000820 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x61089101 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x612b862a input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x61550736 free_user_ns +EXPORT_SYMBOL vmlinux 0x6159633a pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x61656f37 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL vmlinux 0x617a218d __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x617f8533 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x6189319a abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x61aeb035 snd_ctl_register_ioctl +EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61fd989c ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x62166dc5 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x62296be1 qcom_scm_get_version +EXPORT_SYMBOL vmlinux 0x622d6941 snd_card_register +EXPORT_SYMBOL vmlinux 0x624d4b30 kobject_init +EXPORT_SYMBOL vmlinux 0x6257ee35 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x62626c69 amba_driver_unregister +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x628c1e6d udplite_table +EXPORT_SYMBOL vmlinux 0x628dd9f7 netdev_emerg +EXPORT_SYMBOL vmlinux 0x628f03e1 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x629ec483 __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x629efbf2 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x62ae370c posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x62b5402b of_get_address +EXPORT_SYMBOL vmlinux 0x62ca407d of_device_alloc +EXPORT_SYMBOL vmlinux 0x62cbb4f1 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x62cef999 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x62fcde2b mount_ns +EXPORT_SYMBOL vmlinux 0x63109d5b sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x6317b054 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x633d7dab key_revoke +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63b023b0 from_kgid +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d1d021 have_submounts +EXPORT_SYMBOL vmlinux 0x63d6ccf6 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x63db0277 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x63e55a6b notify_change +EXPORT_SYMBOL vmlinux 0x63e76f15 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f4aba8 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x63fc1ee4 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x6402eb4d scsi_device_put +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x641faa58 clkdev_add +EXPORT_SYMBOL vmlinux 0x64226b33 blk_stop_queue +EXPORT_SYMBOL vmlinux 0x64240caa snd_card_new +EXPORT_SYMBOL vmlinux 0x643fa6d0 __radix_tree_insert +EXPORT_SYMBOL vmlinux 0x647e294c jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x648c53bb set_cached_acl +EXPORT_SYMBOL vmlinux 0x64953a04 netdev_err +EXPORT_SYMBOL vmlinux 0x649976df vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a67e52 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64c12d70 pci_select_bars +EXPORT_SYMBOL vmlinux 0x64d2d272 soft_cursor +EXPORT_SYMBOL vmlinux 0x64e3a703 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x64ed9b0f tty_unregister_device +EXPORT_SYMBOL vmlinux 0x64f66972 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0x64f9c859 mem_map +EXPORT_SYMBOL vmlinux 0x650045ff sync_blockdev +EXPORT_SYMBOL vmlinux 0x650c9532 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x6521f8d9 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x65235ca4 mutex_trylock +EXPORT_SYMBOL vmlinux 0x653096e5 tcf_register_action +EXPORT_SYMBOL vmlinux 0x6530ebd6 dev_emerg +EXPORT_SYMBOL vmlinux 0x653db13e dm_kobject_release +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65466939 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x655d813b pci_restore_state +EXPORT_SYMBOL vmlinux 0x6565d33f scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6570d116 blk_init_queue +EXPORT_SYMBOL vmlinux 0x65767584 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x6597d681 input_open_device +EXPORT_SYMBOL vmlinux 0x65a4ae00 reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x65b5a9a3 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x65d46d97 unregister_nls +EXPORT_SYMBOL vmlinux 0x65d95387 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e9166a inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x6601be67 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x6604f918 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x66101e35 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x661d23ba mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x662648da alloc_disk_node +EXPORT_SYMBOL vmlinux 0x662f4eda devm_clk_get +EXPORT_SYMBOL vmlinux 0x666a1a74 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x668c284c mmc_can_trim +EXPORT_SYMBOL vmlinux 0x668e8d4f ip_getsockopt +EXPORT_SYMBOL vmlinux 0x66906aba touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x66bbb118 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x66e2cb70 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x66e88e65 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x66f61a9f swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x67098164 udp_prot +EXPORT_SYMBOL vmlinux 0x670efca6 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x673a9d9a mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit +EXPORT_SYMBOL vmlinux 0x67714105 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x678aeaf7 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c176a5 km_new_mapping +EXPORT_SYMBOL vmlinux 0x67c2c059 phy_resume +EXPORT_SYMBOL vmlinux 0x67dc2700 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x67f92ebc __next_node_in +EXPORT_SYMBOL vmlinux 0x680747ed inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x68579254 param_ops_byte +EXPORT_SYMBOL vmlinux 0x6858bb6e genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x68640290 gen_pool_free +EXPORT_SYMBOL vmlinux 0x686a8493 param_set_uint +EXPORT_SYMBOL vmlinux 0x686d2ab8 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x68869bae panic_notifier_list +EXPORT_SYMBOL vmlinux 0x689051ec inc_nlink +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL vmlinux 0x68b09819 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x68b7f38c serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x68ef2572 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x6905db7e lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x69125da5 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x6915eb38 down_interruptible +EXPORT_SYMBOL vmlinux 0x692a7d6c eth_change_mtu +EXPORT_SYMBOL vmlinux 0x692fecd8 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x69368b7c xfrm_state_add +EXPORT_SYMBOL vmlinux 0x6945b151 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x69606ec5 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x696d55b2 of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x69891e5a input_get_keycode +EXPORT_SYMBOL vmlinux 0x699ba214 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x699c3ac0 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x69a4ceff mark_page_accessed +EXPORT_SYMBOL vmlinux 0x69aac071 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69b09c43 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x69b6f8d9 omap_set_dma_transfer_params +EXPORT_SYMBOL vmlinux 0x69e1b4ce iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x69e95a22 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x69ed1e2d bio_split +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a344182 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x6a3bf99c pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x6a4f51a9 pci_iomap +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a7510a8 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x6aa7c6db vme_dma_request +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6aced38a pps_unregister_source +EXPORT_SYMBOL vmlinux 0x6ae02286 nvm_get_blk +EXPORT_SYMBOL vmlinux 0x6ae9b7a8 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6aef9142 bh_submit_read +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b0fa567 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b30583b lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x6b4015cb mdio_bus_type +EXPORT_SYMBOL vmlinux 0x6b49e9b5 xfrm_input +EXPORT_SYMBOL vmlinux 0x6b5d21e2 inet_ioctl +EXPORT_SYMBOL vmlinux 0x6b749932 snd_pcm_kernel_ioctl +EXPORT_SYMBOL vmlinux 0x6b962733 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x6ba396fb of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc41ac1 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x6bd23183 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x6bd72448 seq_printf +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6c18c1d1 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c50fe0d sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x6c514c1f amba_request_regions +EXPORT_SYMBOL vmlinux 0x6c54198e from_kprojid +EXPORT_SYMBOL vmlinux 0x6c5694a5 tty_throttle +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c6cdd4d wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c706703 __frontswap_load +EXPORT_SYMBOL vmlinux 0x6c760e45 nf_register_hook +EXPORT_SYMBOL vmlinux 0x6c7e69d2 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x6c87c7d1 dev_printk +EXPORT_SYMBOL vmlinux 0x6c970e3a single_open_size +EXPORT_SYMBOL vmlinux 0x6c98a479 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x6c9a0977 ppp_input +EXPORT_SYMBOL vmlinux 0x6cbc7bfc blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x6cc5aa2e register_sound_special +EXPORT_SYMBOL vmlinux 0x6cca1454 snd_pcm_new_internal +EXPORT_SYMBOL vmlinux 0x6cd5f94e scm_fp_dup +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6ce68476 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x6ce97b09 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x6cfa3868 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x6cfb428f netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x6cfc0fe4 ps2_drain +EXPORT_SYMBOL vmlinux 0x6cfefb75 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d1183c4 cdrom_open +EXPORT_SYMBOL vmlinux 0x6d1c44dd lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x6d21c91c __init_rwsem +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d42034a ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x6d56f0b7 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x6d59330b devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x6d662533 _find_first_bit_le +EXPORT_SYMBOL vmlinux 0x6d73e890 d_add +EXPORT_SYMBOL vmlinux 0x6d775832 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x6d86f25d jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x6d8a8fa3 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x6d8ea97c mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x6da4b2ed mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x6da50e24 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x6db10f99 sock_register +EXPORT_SYMBOL vmlinux 0x6db59d73 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x6dc443fa jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x6dd85de3 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x6de0830b sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x6de908d9 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6dfeffbc dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x6e2381ca rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x6e3ff5ee tty_unthrottle +EXPORT_SYMBOL vmlinux 0x6e4508f7 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x6e4bc69e abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x6e536f72 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x6e5f5a26 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7e47ea udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x6e832818 netlink_unicast +EXPORT_SYMBOL vmlinux 0x6e940e18 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x6e98b0ce mtd_concat_destroy +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ec9ccdb _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x6eca4d4f mod_timer_pending +EXPORT_SYMBOL vmlinux 0x6ee5697e drop_super +EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL vmlinux 0x6f33df3a pci_dev_put +EXPORT_SYMBOL vmlinux 0x6f3e3338 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x6f569770 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x6f6cf9b1 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x6f73d35b netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x6f79ae36 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6fb883f9 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6ff4f026 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x6ffa8912 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x70097aa0 nand_bch_free +EXPORT_SYMBOL vmlinux 0x700abae3 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x703a900e override_creds +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x70720db9 seq_dentry +EXPORT_SYMBOL vmlinux 0x707b1bde vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x708557b7 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x709b710a jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x70a309c4 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x70be2150 prepare_binprm +EXPORT_SYMBOL vmlinux 0x70d29c57 try_to_release_page +EXPORT_SYMBOL vmlinux 0x70dd8036 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x711817d1 dev_mc_add +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7165a6ae pps_event +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71794ca5 mmc_put_card +EXPORT_SYMBOL vmlinux 0x719f0635 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x719f0a16 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71d341fe nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x71de28fa input_inject_event +EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x720dc375 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x722ec150 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x7243c632 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x725573d9 mdiobus_read +EXPORT_SYMBOL vmlinux 0x725a8a1f path_nosuid +EXPORT_SYMBOL vmlinux 0x72612243 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x72783a5b fasync_helper +EXPORT_SYMBOL vmlinux 0x72806fb1 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x72a4335c lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x72dba9eb bdi_register_owner +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72fb1d71 snd_pcm_open_substream +EXPORT_SYMBOL vmlinux 0x73098d42 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x7313dd7b inetdev_by_index +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x733d7958 ether_setup +EXPORT_SYMBOL vmlinux 0x734a3e4d of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x735c271f vme_lm_request +EXPORT_SYMBOL vmlinux 0x735fac09 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x7366e1fd scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x736a6305 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x736f6708 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x737315cf generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x7377f232 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x7390e627 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL vmlinux 0x739efc22 keyring_alloc +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73f4552c simple_rmdir +EXPORT_SYMBOL vmlinux 0x73f728d0 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x73f86d8a skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x73fc1e87 drop_nlink +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x74118619 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x74210c5f phy_init_eee +EXPORT_SYMBOL vmlinux 0x742c3164 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x7431aa29 nf_log_set +EXPORT_SYMBOL vmlinux 0x744d2db3 netpoll_setup +EXPORT_SYMBOL vmlinux 0x74547815 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x74821526 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74899ca3 vfs_create +EXPORT_SYMBOL vmlinux 0x748c9dcb snd_timer_pause +EXPORT_SYMBOL vmlinux 0x749e7ccc scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x74a1c3d4 dump_emit +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74d59ad6 seq_vprintf +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74e7dd04 shdma_cleanup +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x754e133c qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x756eaec5 nd_device_notify +EXPORT_SYMBOL vmlinux 0x75811312 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x75850d01 __vmalloc +EXPORT_SYMBOL vmlinux 0x758b9c83 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +EXPORT_SYMBOL vmlinux 0x75aa4688 generic_getxattr +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75c71e44 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x75e71274 clear_nlink +EXPORT_SYMBOL vmlinux 0x75f2b063 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x75f9c1c5 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760a6ce1 shdma_chan_probe +EXPORT_SYMBOL vmlinux 0x761e889d vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x7633dc46 param_get_short +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x76563578 __page_symlink +EXPORT_SYMBOL vmlinux 0x765aaad2 nla_append +EXPORT_SYMBOL vmlinux 0x765bd2b8 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x765e651b generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x767dcdec skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x767f0600 proc_set_user +EXPORT_SYMBOL vmlinux 0x76838323 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x768ccd80 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x768dfe64 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x769b6050 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be +EXPORT_SYMBOL vmlinux 0x76e7e511 mmc_add_host +EXPORT_SYMBOL vmlinux 0x76ec46d7 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order +EXPORT_SYMBOL vmlinux 0x7705020d make_kuid +EXPORT_SYMBOL vmlinux 0x77159b7f xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x7771c388 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x7774f19d redraw_screen +EXPORT_SYMBOL vmlinux 0x7788a4e7 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x779c2aea xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x77a673ae input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x77b588c7 inet_offloads +EXPORT_SYMBOL vmlinux 0x77b64795 __bforget +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77bc725b lock_sock_fast +EXPORT_SYMBOL vmlinux 0x77cd2176 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x77d16f41 dqput +EXPORT_SYMBOL vmlinux 0x77f30106 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x77f9b1ca submit_bh +EXPORT_SYMBOL vmlinux 0x77fa1a63 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x77fab739 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x7833deb2 pgprot_user +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x783f7c92 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x783fec27 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x78453fb3 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x78465fc2 posix_acl_init +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a89150 do_map_probe +EXPORT_SYMBOL vmlinux 0x78ae1554 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x78b1e437 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x78b2f83a atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x78c2bf6f dma_common_mmap +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e727b0 seq_puts +EXPORT_SYMBOL vmlinux 0x78e7311e bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x78fdd006 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x791bdca2 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x792b3399 register_qdisc +EXPORT_SYMBOL vmlinux 0x793bcb82 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x794d6f4e clkdev_drop +EXPORT_SYMBOL vmlinux 0x7953e832 dm_io +EXPORT_SYMBOL vmlinux 0x7954c462 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x7955bf9b release_firmware +EXPORT_SYMBOL vmlinux 0x79625c2a vme_irq_request +EXPORT_SYMBOL vmlinux 0x79694c24 make_kgid +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x799e180c input_set_capability +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79c3aae2 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x79c4a4ad pci_dev_get +EXPORT_SYMBOL vmlinux 0x79cd5308 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x79cfbd16 unlock_buffer +EXPORT_SYMBOL vmlinux 0x79dfba7f input_event +EXPORT_SYMBOL vmlinux 0x79e3151d __register_binfmt +EXPORT_SYMBOL vmlinux 0x79f65b54 __free_pages +EXPORT_SYMBOL vmlinux 0x7a247935 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x7a26c07d param_ops_bint +EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 +EXPORT_SYMBOL vmlinux 0x7a2c5029 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x7a36d82a dst_release +EXPORT_SYMBOL vmlinux 0x7a388030 nand_write_oob_std +EXPORT_SYMBOL vmlinux 0x7a39dc17 touch_buffer +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a48f19c clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x7a682f40 tc6393xb_lcd_mode +EXPORT_SYMBOL vmlinux 0x7a704c3b __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x7a806a8a blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x7a8e1282 d_instantiate +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a982f88 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7accfbfd elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad0be6c update_region +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7aead94c sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x7aed6557 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL vmlinux 0x7b078441 scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x7b0c12d5 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x7b0d259d account_page_redirty +EXPORT_SYMBOL vmlinux 0x7b0df8d6 snd_timer_notify +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress +EXPORT_SYMBOL vmlinux 0x7b211b52 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b842314 set_bh_page +EXPORT_SYMBOL vmlinux 0x7b8d9b4d d_splice_alias +EXPORT_SYMBOL vmlinux 0x7b9444c0 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x7bb4e3b4 dquot_alloc +EXPORT_SYMBOL vmlinux 0x7bb66823 ppp_input_error +EXPORT_SYMBOL vmlinux 0x7bbb8eec tty_register_device +EXPORT_SYMBOL vmlinux 0x7beaf082 dev_notice +EXPORT_SYMBOL vmlinux 0x7bee9d37 dev_addr_add +EXPORT_SYMBOL vmlinux 0x7bfb70f8 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x7bfc8489 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x7c05071a netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c2d603d bio_endio +EXPORT_SYMBOL vmlinux 0x7c394fd1 mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x7c3b41b0 simple_link +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c48e2a0 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x7c7e5ec0 clk_add_alias +EXPORT_SYMBOL vmlinux 0x7c8523a1 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb544f2 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x7cb7ef1a simple_write_begin +EXPORT_SYMBOL vmlinux 0x7cb98e4e xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 +EXPORT_SYMBOL vmlinux 0x7cdd09f4 kmap +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce3b324 mntput +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cffef8d fb_set_var +EXPORT_SYMBOL vmlinux 0x7d01d77b inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d1c298a dma_release_from_coherent +EXPORT_SYMBOL vmlinux 0x7d35b6c5 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x7d4d0d1b __sk_dst_check +EXPORT_SYMBOL vmlinux 0x7d5dcf4a simple_getattr +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d752373 clear_inode +EXPORT_SYMBOL vmlinux 0x7d8b0dac inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x7da0661e inet6_offloads +EXPORT_SYMBOL vmlinux 0x7db69b8f bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x7dc4dc35 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x7dccc294 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x7dce3183 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x7de18e1d snd_ctl_find_id +EXPORT_SYMBOL vmlinux 0x7defb78a kmap_atomic +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df632ed blk_get_queue +EXPORT_SYMBOL vmlinux 0x7e0bf07b snd_pcm_lib_readv +EXPORT_SYMBOL vmlinux 0x7e14bfbd elevator_init +EXPORT_SYMBOL vmlinux 0x7e242214 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x7e25842d reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x7e693069 tty_hangup +EXPORT_SYMBOL vmlinux 0x7e6fa45d dma_alloc_from_coherent +EXPORT_SYMBOL vmlinux 0x7e959980 inode_init_owner +EXPORT_SYMBOL vmlinux 0x7e9e3e7d sound_class +EXPORT_SYMBOL vmlinux 0x7e9efe8e complete_and_exit +EXPORT_SYMBOL vmlinux 0x7eaf62b0 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x7eb051d7 cont_write_begin +EXPORT_SYMBOL vmlinux 0x7eb318e1 qdisc_reset +EXPORT_SYMBOL vmlinux 0x7ebbf9d9 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x7ed0e9e6 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x7ed4b1f5 file_update_time +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ef1a209 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x7ef2e129 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f1010de iget_failed +EXPORT_SYMBOL vmlinux 0x7f18481d __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f324f4d try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7f515b51 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x7f58837a ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio +EXPORT_SYMBOL vmlinux 0x7f68fed0 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x7f7c4528 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7ff3b187 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x7ffaad49 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 +EXPORT_SYMBOL vmlinux 0x800fb92b full_name_hash +EXPORT_SYMBOL vmlinux 0x801d355c backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x8024d555 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x803caed1 write_inode_now +EXPORT_SYMBOL vmlinux 0x803d0a2a vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x8041ecec phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x8047c583 search_binary_handler +EXPORT_SYMBOL vmlinux 0x804a0c6c lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x804aabdf idr_is_empty +EXPORT_SYMBOL vmlinux 0x804b232e key_task_permission +EXPORT_SYMBOL vmlinux 0x80728883 nvm_submit_ppa_list +EXPORT_SYMBOL vmlinux 0x80bb0f09 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80e7fa16 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x80f655d3 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x8102eba6 mdiobus_write +EXPORT_SYMBOL vmlinux 0x810519fd hashlen_string +EXPORT_SYMBOL vmlinux 0x811101b9 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x811f7a77 dget_parent +EXPORT_SYMBOL vmlinux 0x812c48fc inet6_bind +EXPORT_SYMBOL vmlinux 0x813bb91e devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x815030f6 block_truncate_page +EXPORT_SYMBOL vmlinux 0x81533d74 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x8156f433 blk_rq_init +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x8169c26e tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x816f28b5 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x8172b0e9 pci_bus_put +EXPORT_SYMBOL vmlinux 0x8189bb1c bio_add_page +EXPORT_SYMBOL vmlinux 0x81926052 param_ops_long +EXPORT_SYMBOL vmlinux 0x81942114 register_shrinker +EXPORT_SYMBOL vmlinux 0x81a04425 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x81b2d866 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL vmlinux 0x81b9a4b0 param_set_int +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81f5e809 netdev_state_change +EXPORT_SYMBOL vmlinux 0x81f8feb0 sk_dst_check +EXPORT_SYMBOL vmlinux 0x81fb5e15 textsearch_register +EXPORT_SYMBOL vmlinux 0x81fe11cc of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x82184399 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x821d8c78 snd_pcm_set_sync +EXPORT_SYMBOL vmlinux 0x822137e2 arm_heavy_mb +EXPORT_SYMBOL vmlinux 0x823041d5 ps2_init +EXPORT_SYMBOL vmlinux 0x824a4367 tmio_core_mmc_pwr +EXPORT_SYMBOL vmlinux 0x824f33cf snd_pcm_hw_rule_add +EXPORT_SYMBOL vmlinux 0x826b5fa6 udp_set_csum +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x8273a3bb scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x827b23e9 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x82bb79d7 htc_egpio_get_wakeup_irq +EXPORT_SYMBOL vmlinux 0x82cec2f4 napi_complete_done +EXPORT_SYMBOL vmlinux 0x82ea77eb __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x83014513 bio_advance +EXPORT_SYMBOL vmlinux 0x83183642 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 +EXPORT_SYMBOL vmlinux 0x8341ebd5 twl6040_power +EXPORT_SYMBOL vmlinux 0x83430cd5 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x834904ac max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x8357f7b5 vfs_symlink +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x836a835a mntget +EXPORT_SYMBOL vmlinux 0x836e9846 pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0x8375d79d ida_destroy +EXPORT_SYMBOL vmlinux 0x8380b27c vme_irq_handler +EXPORT_SYMBOL vmlinux 0x83892cb5 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8396a001 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83dc202f write_cache_pages +EXPORT_SYMBOL vmlinux 0x83f239f2 is_bad_inode +EXPORT_SYMBOL vmlinux 0x83f37e68 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x83f408af d_lookup +EXPORT_SYMBOL vmlinux 0x84046e9e from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x843e8285 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x8448a1be blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x844b1106 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x8453c9bf tty_kref_put +EXPORT_SYMBOL vmlinux 0x846ae4bc filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x846f4dab vfs_writev +EXPORT_SYMBOL vmlinux 0x847e564d cfb_copyarea +EXPORT_SYMBOL vmlinux 0x848b1031 set_nlink +EXPORT_SYMBOL vmlinux 0x84b183ae strncmp +EXPORT_SYMBOL vmlinux 0x84c4804d blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x84c61af4 nf_reinject +EXPORT_SYMBOL vmlinux 0x84c820e8 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x84e5b57f netdev_printk +EXPORT_SYMBOL vmlinux 0x84f8f882 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x84fadafe scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x850421ce elv_rb_del +EXPORT_SYMBOL vmlinux 0x8537b25b mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85765fee omap_enable_dma_irq +EXPORT_SYMBOL vmlinux 0x85825898 add_timer +EXPORT_SYMBOL vmlinux 0x858b7a5e mount_nodev +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x8594bbe0 map_destroy +EXPORT_SYMBOL vmlinux 0x85b3fc2e abx500_register_ops +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bec538 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x85bf6567 inet6_release +EXPORT_SYMBOL vmlinux 0x85d472aa queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e04c34 skb_clone +EXPORT_SYMBOL vmlinux 0x85eecb4a vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x860d4c1d key_type_keyring +EXPORT_SYMBOL vmlinux 0x860ea7a1 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x861f5062 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x862d368e scsi_scan_target +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x8680291e md_update_sb +EXPORT_SYMBOL vmlinux 0x86864afc ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86900d70 __vfs_read +EXPORT_SYMBOL vmlinux 0x8699d975 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x869a2f59 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86b4e918 __skb_checksum +EXPORT_SYMBOL vmlinux 0x86c01ab7 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x86e45dc4 cdev_alloc +EXPORT_SYMBOL vmlinux 0x86f0201b scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x870249b9 simple_statfs +EXPORT_SYMBOL vmlinux 0x8703d300 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x873e3c5f ioremap_wc +EXPORT_SYMBOL vmlinux 0x87543381 gen_pool_create +EXPORT_SYMBOL vmlinux 0x87551499 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x8788f7bd jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x8792d0d2 flush_dcache_page +EXPORT_SYMBOL vmlinux 0x879dde92 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x87ab4b16 __lock_page +EXPORT_SYMBOL vmlinux 0x87aeb7f6 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x87b1fe63 of_dev_put +EXPORT_SYMBOL vmlinux 0x87dcddc7 dump_align +EXPORT_SYMBOL vmlinux 0x87dfa5fb blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x87f12681 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x8818ac56 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x882e13c3 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x8843e7e2 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x885cc307 lookup_bdev +EXPORT_SYMBOL vmlinux 0x885dd860 scsi_init_io +EXPORT_SYMBOL vmlinux 0x886bc76f mempool_resize +EXPORT_SYMBOL vmlinux 0x887b5f14 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x8894fd9c tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x88a4489b cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x88b19f45 system_serial +EXPORT_SYMBOL vmlinux 0x88c0d0cb input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x88d04c78 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x88d47616 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x88d999a7 ns_capable +EXPORT_SYMBOL vmlinux 0x88da3a7c __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e3b953 __brelse +EXPORT_SYMBOL vmlinux 0x88f0ff16 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x8920d173 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x892e8c99 posix_test_lock +EXPORT_SYMBOL vmlinux 0x8948e05b ptp_find_pin +EXPORT_SYMBOL vmlinux 0x8950a071 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x895450ba __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x8979ccb7 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x897d1c46 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x89ae0026 finish_swait +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x8a0f4230 rename_lock +EXPORT_SYMBOL vmlinux 0x8a12cae9 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x8a17d8c7 simple_fill_super +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a2125a7 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x8a2a51e9 snd_pcm_stop +EXPORT_SYMBOL vmlinux 0x8a2e02b6 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x8a490476 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a49e9e1 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x8a4fa83b __aeabi_llsr +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a536fb8 inc_node_state +EXPORT_SYMBOL vmlinux 0x8a590f61 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x8a6359ae of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x8a69a114 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a903fdb snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aacc531 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x8aaf4ba1 page_get_link +EXPORT_SYMBOL vmlinux 0x8aba285b scsi_block_requests +EXPORT_SYMBOL vmlinux 0x8abfee6e blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x8acdc555 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x8ad34969 kobject_get +EXPORT_SYMBOL vmlinux 0x8ae4e7e4 path_is_under +EXPORT_SYMBOL vmlinux 0x8ae51ceb inode_set_flags +EXPORT_SYMBOL vmlinux 0x8ae99469 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0x8af4935f radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x8b1c67a7 free_task +EXPORT_SYMBOL vmlinux 0x8b28cde3 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x8b2dd23e follow_down +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b3944a8 sock_i_ino +EXPORT_SYMBOL vmlinux 0x8b41e3e6 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b459d85 skb_queue_head +EXPORT_SYMBOL vmlinux 0x8b5c5a60 bioset_create +EXPORT_SYMBOL vmlinux 0x8b5cf586 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b77cb82 dev_addr_init +EXPORT_SYMBOL vmlinux 0x8b7ef54f elv_register_queue +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8ba98464 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x8bc1b13c max8925_reg_write +EXPORT_SYMBOL vmlinux 0x8bc88d98 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x8bdba001 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x8be020e5 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x8bfb53f3 tcp_close +EXPORT_SYMBOL vmlinux 0x8bfeb19c __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x8c25c187 ipv4_specific +EXPORT_SYMBOL vmlinux 0x8c27af4e tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x8c329de0 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x8c42d4c5 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x8c45a9f6 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x8c49124c tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x8c62ee73 snd_pcm_lib_read +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c788830 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x8c8245af __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x8c9cc8aa __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x8cb8ec44 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x8cd8c339 omap_free_dma +EXPORT_SYMBOL vmlinux 0x8cf1a963 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x8cfcf75c nand_flash_ids +EXPORT_SYMBOL vmlinux 0x8d134c39 idr_replace +EXPORT_SYMBOL vmlinux 0x8d15114a __release_region +EXPORT_SYMBOL vmlinux 0x8d2ada41 snd_pcm_mmap_data +EXPORT_SYMBOL vmlinux 0x8d44e95c sync_filesystem +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d5c2071 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d84f021 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x8d8b6353 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x8d9d3256 nd_iostat_end +EXPORT_SYMBOL vmlinux 0x8d9e06b3 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x8dcef17e input_unregister_handler +EXPORT_SYMBOL vmlinux 0x8dcff6e2 __pv_offset +EXPORT_SYMBOL vmlinux 0x8def4986 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x8defd488 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL vmlinux 0x8dfb3c06 cdrom_release +EXPORT_SYMBOL vmlinux 0x8e0342d6 qcom_scm_pas_init_image +EXPORT_SYMBOL vmlinux 0x8e3bf33c filemap_flush +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e7bdc81 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x8e813b12 posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x8e865d3c arm_delay_ops +EXPORT_SYMBOL vmlinux 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL vmlinux 0x8ed0031e jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x8ee89e69 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x8eecd14c sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x8ef839eb blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x8ef877d0 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x8f147ca4 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x8f158508 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x8f16bbc4 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x8f19d457 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x8f42c4c8 input_flush_device +EXPORT_SYMBOL vmlinux 0x8f4be190 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x8f55f83e netdev_all_lower_get_next_rcu +EXPORT_SYMBOL vmlinux 0x8f595b11 snd_major +EXPORT_SYMBOL vmlinux 0x8f5d7953 freeze_super +EXPORT_SYMBOL vmlinux 0x8f601db2 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x8f660118 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard +EXPORT_SYMBOL vmlinux 0x8f719c4b __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x8f7715bb fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x8f9b90d2 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x8fa4130a omap_set_dma_callback +EXPORT_SYMBOL vmlinux 0x8fac2252 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x8fd64b15 ioremap_cached +EXPORT_SYMBOL vmlinux 0x8fdf772a init_timer_key +EXPORT_SYMBOL vmlinux 0x8fe8d24b i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x90065c55 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x900a45c1 release_pages +EXPORT_SYMBOL vmlinux 0x90135149 tcp_connect +EXPORT_SYMBOL vmlinux 0x90165578 sync_file_create +EXPORT_SYMBOL vmlinux 0x901a1bc2 netdev_all_lower_get_next +EXPORT_SYMBOL vmlinux 0x90201a1f ata_print_version +EXPORT_SYMBOL vmlinux 0x902e7a98 nonseekable_open +EXPORT_SYMBOL vmlinux 0x903017ae dmam_pool_create +EXPORT_SYMBOL vmlinux 0x90463f0c update_devfreq +EXPORT_SYMBOL vmlinux 0x905b309e __scsi_add_device +EXPORT_SYMBOL vmlinux 0x906856d1 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x90695906 vme_free_consistent +EXPORT_SYMBOL vmlinux 0x907a4731 get_fs_type +EXPORT_SYMBOL vmlinux 0x907ee121 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x9083dabf generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x908eab22 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x90b19772 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x90c9e2ec dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x90e4b4fe unregister_qdisc +EXPORT_SYMBOL vmlinux 0x90f59b1d dump_page +EXPORT_SYMBOL vmlinux 0x91366121 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x913adc12 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x914adab4 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x915d16f3 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x917cb845 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x917dc22a __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x919029aa __readwrite_bug +EXPORT_SYMBOL vmlinux 0x91b8f016 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x91bb7c49 is_nd_btt +EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz +EXPORT_SYMBOL vmlinux 0x91c89d06 wake_up_process +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x9209896a tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x920a5f03 snd_pcm_hw_param_first +EXPORT_SYMBOL vmlinux 0x9218cff1 adjust_resource +EXPORT_SYMBOL vmlinux 0x921bb06d genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x92299172 vme_irq_free +EXPORT_SYMBOL vmlinux 0x92345fcb generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923fcb86 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x924dd76a dst_alloc +EXPORT_SYMBOL vmlinux 0x92623ce0 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x9289d031 phy_disconnect +EXPORT_SYMBOL vmlinux 0x92a793a1 seq_lseek +EXPORT_SYMBOL vmlinux 0x92d42d37 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x93083962 blkdev_get +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x93393846 dev_trans_start +EXPORT_SYMBOL vmlinux 0x934e9667 poll_initwait +EXPORT_SYMBOL vmlinux 0x936925e3 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x9387995b devm_memunmap +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93fc07cb call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x94098ff8 snd_interval_list +EXPORT_SYMBOL vmlinux 0x9431594c set_device_ro +EXPORT_SYMBOL vmlinux 0x94327b0c inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x9432ad49 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x94377c9e try_module_get +EXPORT_SYMBOL vmlinux 0x944416b4 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x946e0ec6 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x946efbfa __wait_on_bit +EXPORT_SYMBOL vmlinux 0x947a4a73 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x948642cc of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x9497bb3c pci_set_master +EXPORT_SYMBOL vmlinux 0x949e3a2b nvm_bb_tbl_fold +EXPORT_SYMBOL vmlinux 0x94ac0688 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x94c90ac1 bmap +EXPORT_SYMBOL vmlinux 0x94d1b1e3 lwtunnel_input +EXPORT_SYMBOL vmlinux 0x94d3da68 rtc_lock +EXPORT_SYMBOL vmlinux 0x94daa742 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x94e730bf dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x94f470a9 clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x9501473d snd_dma_free_pages +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x95138bc9 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x95368d33 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x953c9a75 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x95483133 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x954a38a8 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x955cc24c __getblk_slow +EXPORT_SYMBOL vmlinux 0x95622f41 down_timeout +EXPORT_SYMBOL vmlinux 0x956d15c6 of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0x958672ab iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x9593a7e0 irq_to_desc +EXPORT_SYMBOL vmlinux 0x959f8bce netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x95a35fa4 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x95d6f8ed remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 +EXPORT_SYMBOL vmlinux 0x95ec1b4c blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x95f0c4d0 get_task_exe_file +EXPORT_SYMBOL vmlinux 0x960970fc kill_litter_super +EXPORT_SYMBOL vmlinux 0x963b96b2 set_binfmt +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x965c4a19 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x9663ca10 of_device_is_available +EXPORT_SYMBOL vmlinux 0x966e5fa8 snd_register_device +EXPORT_SYMBOL vmlinux 0x966fd979 put_io_context +EXPORT_SYMBOL vmlinux 0x96885a96 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x968d1510 sk_busy_loop +EXPORT_SYMBOL vmlinux 0x96939ba3 fscrypt_get_encryption_info +EXPORT_SYMBOL vmlinux 0x96b42d68 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x96b5a388 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x96bb5a4a skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96f05e30 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x970346f9 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x97106714 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x9723544c iget5_locked +EXPORT_SYMBOL vmlinux 0x97255bdf strlen +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x9758dc9b scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x9768de31 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x976b61c2 fence_remove_callback +EXPORT_SYMBOL vmlinux 0x976e700f down_trylock +EXPORT_SYMBOL vmlinux 0x97711b52 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x97765eab mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x9778c334 console_stop +EXPORT_SYMBOL vmlinux 0x977a8835 pci_clear_master +EXPORT_SYMBOL vmlinux 0x977cf2f5 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x97873432 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x97915838 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x9792ea7b __module_get +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97c5a510 skb_put +EXPORT_SYMBOL vmlinux 0x97c5cca9 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x980e3f57 __kfree_skb +EXPORT_SYMBOL vmlinux 0x9811669a blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x98392e0f ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x9875e64a pci_set_mwi +EXPORT_SYMBOL vmlinux 0x98769ec3 param_set_ushort +EXPORT_SYMBOL vmlinux 0x987c11c7 __pv_phys_pfn_offset +EXPORT_SYMBOL vmlinux 0x988bc89f snd_pcm_suspend_all +EXPORT_SYMBOL vmlinux 0x98a77374 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x98b5ba81 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0x98c0aa7f skb_copy_bits +EXPORT_SYMBOL vmlinux 0x98c6ecf9 swake_up_locked +EXPORT_SYMBOL vmlinux 0x98ed2f1b dev_crit +EXPORT_SYMBOL vmlinux 0x9902abb3 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x990815ed radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available +EXPORT_SYMBOL vmlinux 0x99137324 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x9935bfd2 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x994c9ed9 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x996af8ca vfs_iter_read +EXPORT_SYMBOL vmlinux 0x996c4d30 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x9979d20f neigh_xmit +EXPORT_SYMBOL vmlinux 0x997d5a60 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x99879527 flow_cache_fini +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a13fa3 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x99ac5dd8 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x99b16f8c release_resource +EXPORT_SYMBOL vmlinux 0x99b52709 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x99bb8806 memmove +EXPORT_SYMBOL vmlinux 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL vmlinux 0x99f58330 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x9a0a92cd fput +EXPORT_SYMBOL vmlinux 0x9a0b6204 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0x9a177502 unregister_key_type +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a2951f6 dquot_transfer +EXPORT_SYMBOL vmlinux 0x9a299557 neigh_update +EXPORT_SYMBOL vmlinux 0x9a2aa9b5 pci_find_capability +EXPORT_SYMBOL vmlinux 0x9a4fcbcf eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x9a5f1084 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x9a5fe04d blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x9a623142 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x9a8318ef v7_coherent_kern_range +EXPORT_SYMBOL vmlinux 0x9a83ead0 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x9a849e75 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x9a99159d tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x9aace2ab tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x9aaf0e1d nand_write_oob_syndrome +EXPORT_SYMBOL vmlinux 0x9abb5f00 snd_card_set_id +EXPORT_SYMBOL vmlinux 0x9ac7db46 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x9ac87842 genphy_suspend +EXPORT_SYMBOL vmlinux 0x9acb9f14 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x9acbbf46 nvm_put_blk +EXPORT_SYMBOL vmlinux 0x9ae0f26d sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x9ae975d5 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9b09b537 __block_write_full_page +EXPORT_SYMBOL vmlinux 0x9b1c0a5f input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b337fb2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b4602cd pskb_extract +EXPORT_SYMBOL vmlinux 0x9b4c06e5 simple_empty +EXPORT_SYMBOL vmlinux 0x9b4cca02 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x9b55224e downgrade_write +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b7c6cc0 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x9b8177ef gen_new_estimator +EXPORT_SYMBOL vmlinux 0x9b8dbf83 inet_accept +EXPORT_SYMBOL vmlinux 0x9b9459c5 rtnl_notify +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bbda5f9 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9bc9d6b9 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x9bd919f7 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x9bdd883a generic_fillattr +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9be92964 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x9bf3fea6 of_get_property +EXPORT_SYMBOL vmlinux 0x9bfb183a file_remove_privs +EXPORT_SYMBOL vmlinux 0x9c0bd51f _raw_spin_lock +EXPORT_SYMBOL vmlinux 0x9c1d349a seq_path +EXPORT_SYMBOL vmlinux 0x9c26cc4b iov_iter_zero +EXPORT_SYMBOL vmlinux 0x9c38fd9f iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x9c3ab523 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x9c3cd373 register_sound_dsp +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c50f709 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x9c62129f pci_reenable_device +EXPORT_SYMBOL vmlinux 0x9c7f0db3 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0x9c92d94d radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x9c9ec2a0 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb0b443 elevator_change +EXPORT_SYMBOL vmlinux 0x9cba3c37 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x9cbcb037 fb_blank +EXPORT_SYMBOL vmlinux 0x9cc1d862 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x9d009a4f blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d100f7e bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x9d105099 vme_master_request +EXPORT_SYMBOL vmlinux 0x9d669763 memcpy +EXPORT_SYMBOL vmlinux 0x9d77bbb5 __genl_register_family +EXPORT_SYMBOL vmlinux 0x9da4246b dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x9db88da9 udp_disconnect +EXPORT_SYMBOL vmlinux 0x9dc1940b pci_get_slot +EXPORT_SYMBOL vmlinux 0x9dc75115 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x9de59898 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x9dfca25c pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e0b5c24 sock_create_kern +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e4c4b06 bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL vmlinux 0x9e72211f blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ebdd003 ptp_clock_register +EXPORT_SYMBOL vmlinux 0x9ec71d1f snd_pcm_create_iec958_consumer +EXPORT_SYMBOL vmlinux 0x9ec7fe6c jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x9eda4718 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x9ee582db netdev_change_features +EXPORT_SYMBOL vmlinux 0x9ee82cd6 uuid_be_index +EXPORT_SYMBOL vmlinux 0x9f3490ad xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x9f44b8b4 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4712e5 skb_trim +EXPORT_SYMBOL vmlinux 0x9f6d4702 dma_release_declared_memory +EXPORT_SYMBOL vmlinux 0x9f718246 uart_match_port +EXPORT_SYMBOL vmlinux 0x9f94d410 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x9f97a826 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f9ba1ce dma_async_device_register +EXPORT_SYMBOL vmlinux 0x9fb1d0ed uuid_is_valid +EXPORT_SYMBOL vmlinux 0x9fc00778 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fdff6fe of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x9fe32d14 netdev_alert +EXPORT_SYMBOL vmlinux 0x9fe6893a nf_getsockopt +EXPORT_SYMBOL vmlinux 0x9fe78c04 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x9ff6915a nf_log_unregister +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0x9ffb3094 file_open_root +EXPORT_SYMBOL vmlinux 0xa02f831e __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa052c2e5 bioset_free +EXPORT_SYMBOL vmlinux 0xa05b8f19 md_error +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa0623901 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa0744ea9 cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0xa07478e4 dev_mc_del +EXPORT_SYMBOL vmlinux 0xa07745bc bdget_disk +EXPORT_SYMBOL vmlinux 0xa07798bf __break_lease +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa09f5dfb pcim_enable_device +EXPORT_SYMBOL vmlinux 0xa0ad86e2 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b27a30 netdev_notice +EXPORT_SYMBOL vmlinux 0xa0c8e1d9 netdev_info +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0eba84c xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xa0ebb238 __nd_driver_register +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL vmlinux 0xa1069156 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa1127cdf set_security_override +EXPORT_SYMBOL vmlinux 0xa11a4ac2 km_report +EXPORT_SYMBOL vmlinux 0xa11e7a87 dquot_enable +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts +EXPORT_SYMBOL vmlinux 0xa14d6f53 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xa1839690 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xa192813b idr_for_each +EXPORT_SYMBOL vmlinux 0xa1ac0f85 block_write_end +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1d55e90 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1e1570c commit_creds +EXPORT_SYMBOL vmlinux 0xa1e5bcb2 iov_iter_npages +EXPORT_SYMBOL vmlinux 0xa1e7fd6f register_sound_special_device +EXPORT_SYMBOL vmlinux 0xa1e9b68b nvm_get_bb_tbl +EXPORT_SYMBOL vmlinux 0xa1ec8e58 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xa1f0ebea bit_waitqueue +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa22b0989 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0xa2402aad kset_register +EXPORT_SYMBOL vmlinux 0xa2662f5f scsi_remove_device +EXPORT_SYMBOL vmlinux 0xa2742ba1 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa28edeae param_get_int +EXPORT_SYMBOL vmlinux 0xa292fb5c ip6_xmit +EXPORT_SYMBOL vmlinux 0xa2a8e53c follow_down_one +EXPORT_SYMBOL vmlinux 0xa2afce24 datagram_poll +EXPORT_SYMBOL vmlinux 0xa2b505e6 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xa2b8a607 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xa2d46b5f ip_options_compile +EXPORT_SYMBOL vmlinux 0xa2d9fd7e d_alloc_parallel +EXPORT_SYMBOL vmlinux 0xa2e2b5f4 snd_card_file_remove +EXPORT_SYMBOL vmlinux 0xa2f48c0b xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xa30588c7 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xa31a8d9c radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL vmlinux 0xa33724d6 snd_pcm_lib_write +EXPORT_SYMBOL vmlinux 0xa342daf4 scsi_execute +EXPORT_SYMBOL vmlinux 0xa35d14e4 set_page_dirty +EXPORT_SYMBOL vmlinux 0xa364c7c8 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa37f2921 zero_fill_bio +EXPORT_SYMBOL vmlinux 0xa380762c mount_pseudo +EXPORT_SYMBOL vmlinux 0xa381944f dql_reset +EXPORT_SYMBOL vmlinux 0xa382ae7c generic_update_time +EXPORT_SYMBOL vmlinux 0xa385591c snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL vmlinux 0xa38e218c sock_rfree +EXPORT_SYMBOL vmlinux 0xa39155a6 snd_pcm_lib_ioctl +EXPORT_SYMBOL vmlinux 0xa3c00c06 memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0xa3c142a2 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xa3c55f3b pipe_unlock +EXPORT_SYMBOL vmlinux 0xa3c724fe jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xa3f870b0 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xa3fdbd4a ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0xa40011af mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xa4062a17 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xa412451f module_refcount +EXPORT_SYMBOL vmlinux 0xa414882d add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xa417b6d3 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xa41d9c8a inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0xa4219908 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xa439415c fb_pan_display +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa43ddb4a reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0xa4489754 bd_set_size +EXPORT_SYMBOL vmlinux 0xa4610bc6 omap_rev +EXPORT_SYMBOL vmlinux 0xa465da1a blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa48456d9 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xa48f5b09 omap_dma_set_global_params +EXPORT_SYMBOL vmlinux 0xa4aada28 simple_open +EXPORT_SYMBOL vmlinux 0xa4ae3b94 skb_clone_sk +EXPORT_SYMBOL vmlinux 0xa4b42c55 omap_set_dma_priority +EXPORT_SYMBOL vmlinux 0xa4b8f0a1 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xa4bbcac2 module_put +EXPORT_SYMBOL vmlinux 0xa4c75fec xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0xa4f9b154 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xa5072526 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xa525b5bf snd_card_disconnect +EXPORT_SYMBOL vmlinux 0xa5319a5b pci_enable_device +EXPORT_SYMBOL vmlinux 0xa53f94e3 fb_get_mode +EXPORT_SYMBOL vmlinux 0xa5520102 pid_task +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa577aecf devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0xa58d1119 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xa58fea9d mempool_destroy +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a18415 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xa5a22958 sk_alloc +EXPORT_SYMBOL vmlinux 0xa5b85597 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xa5c7280f dma_sync_wait +EXPORT_SYMBOL vmlinux 0xa5cb9090 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xa5d95054 md_reload_sb +EXPORT_SYMBOL vmlinux 0xa5dc2140 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xa5ed3dcd sock_kfree_s +EXPORT_SYMBOL vmlinux 0xa5f68861 misc_register +EXPORT_SYMBOL vmlinux 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL vmlinux 0xa61e4362 omap_request_dma +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa64e250a put_cmsg +EXPORT_SYMBOL vmlinux 0xa6640661 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0xa67374f0 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa6816a19 simple_pin_fs +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa6b2b769 vfs_write +EXPORT_SYMBOL vmlinux 0xa6bab23d dqstats +EXPORT_SYMBOL vmlinux 0xa6eac944 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xa6ecc976 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xa6fdf2fd send_sig_info +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa701156e dev_deactivate +EXPORT_SYMBOL vmlinux 0xa7174bc4 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xa7302a9f pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xa734a3e9 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa74d6d7e xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xa75a13f5 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xa760552f nobh_write_end +EXPORT_SYMBOL vmlinux 0xa776f50e devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xa7770f5c skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xa778fc4b register_framebuffer +EXPORT_SYMBOL vmlinux 0xa797e85e snd_unregister_oss_device +EXPORT_SYMBOL vmlinux 0xa7a1eca2 bdi_init +EXPORT_SYMBOL vmlinux 0xa7ad30e5 snd_timer_global_new +EXPORT_SYMBOL vmlinux 0xa7b0a245 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xa7c2053c __serio_register_port +EXPORT_SYMBOL vmlinux 0xa7c3fcf6 fb_validate_mode +EXPORT_SYMBOL vmlinux 0xa7cdb391 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0xa7d2c666 of_find_property +EXPORT_SYMBOL vmlinux 0xa81717b5 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xa82efff8 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xa83b6350 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8621ef0 __neigh_create +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa899a41c genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end +EXPORT_SYMBOL vmlinux 0xa8d23244 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xa8dc8efb vc_cons +EXPORT_SYMBOL vmlinux 0xa8df354a rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xa8e68bef param_ops_uint +EXPORT_SYMBOL vmlinux 0xa8e6a868 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0xa8ea5cb6 tty_lock +EXPORT_SYMBOL vmlinux 0xa8ed5809 inet_stream_connect +EXPORT_SYMBOL vmlinux 0xa8f362b1 bdgrab +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa9053df4 I_BDEV +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa9297031 set_blocksize +EXPORT_SYMBOL vmlinux 0xa9342db2 nand_correct_data +EXPORT_SYMBOL vmlinux 0xa936e3ad __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xa958ebfe fscrypt_restore_control_page +EXPORT_SYMBOL vmlinux 0xa95d6702 tty_port_init +EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9906687 mmc_register_driver +EXPORT_SYMBOL vmlinux 0xa9931707 snd_pcm_lib_writev +EXPORT_SYMBOL vmlinux 0xa9aa1bfc dst_init +EXPORT_SYMBOL vmlinux 0xa9af4965 nf_log_packet +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9d03e85 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xa9d2f3f7 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xa9d68d90 of_get_pci_address +EXPORT_SYMBOL vmlinux 0xa9d84f44 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xa9db9d49 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xa9e90883 xfrm_lookup +EXPORT_SYMBOL vmlinux 0xa9e9c30b tcp_read_sock +EXPORT_SYMBOL vmlinux 0xaa34dcff blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xaa385cf0 param_array_ops +EXPORT_SYMBOL vmlinux 0xaa60560d tty_write_room +EXPORT_SYMBOL vmlinux 0xaa62f0a3 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa7716d6 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xaa809c3f sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0xaabd3c0a mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaadd01c4 pci_iounmap +EXPORT_SYMBOL vmlinux 0xaafcb51b sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab09c5d1 of_dev_get +EXPORT_SYMBOL vmlinux 0xab0cb1c4 deactivate_super +EXPORT_SYMBOL vmlinux 0xab14d8f3 tso_start +EXPORT_SYMBOL vmlinux 0xab1c57cb bdevname +EXPORT_SYMBOL vmlinux 0xab25a73e noop_fsync +EXPORT_SYMBOL vmlinux 0xab264fde chacha20_block +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab694444 bsearch +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab7b1af7 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0xab9d4ac1 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xaba69e19 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xabad9126 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xabb6904d mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xabc94712 pci_set_power_state +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabf5a20e truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xabf7d539 elv_add_request +EXPORT_SYMBOL vmlinux 0xabfa856a vga_tryget +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac1bd99b dcb_getapp +EXPORT_SYMBOL vmlinux 0xac2f18e1 flow_cache_init +EXPORT_SYMBOL vmlinux 0xac317818 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xac390091 dev_base_lock +EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac430b4d nf_log_unset +EXPORT_SYMBOL vmlinux 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL vmlinux 0xac4b1033 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0xac57420b zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0xac5bca49 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xac77700c __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xac7a81b5 current_fs_time +EXPORT_SYMBOL vmlinux 0xac854dc2 freezing_slow_path +EXPORT_SYMBOL vmlinux 0xac99eb59 sock_wfree +EXPORT_SYMBOL vmlinux 0xaca56bd8 arm_smccc_hvc +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb34beb pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xacc30bd9 nand_scan_ident +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xaccc7530 d_alloc_name +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xace9f3a9 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad11a8b6 __vfs_write +EXPORT_SYMBOL vmlinux 0xad350120 netif_rx_ni +EXPORT_SYMBOL vmlinux 0xad3a282a scmd_printk +EXPORT_SYMBOL vmlinux 0xad42f829 serio_unregister_port +EXPORT_SYMBOL vmlinux 0xad4bb1b2 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0xad585425 qcom_scm_pas_supported +EXPORT_SYMBOL vmlinux 0xad606202 ihold +EXPORT_SYMBOL vmlinux 0xad6f7144 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xadad0669 snd_ctl_find_numid +EXPORT_SYMBOL vmlinux 0xadc263fa generic_writepages +EXPORT_SYMBOL vmlinux 0xadcf47cf read_dev_sector +EXPORT_SYMBOL vmlinux 0xade88e76 snd_malloc_pages +EXPORT_SYMBOL vmlinux 0xadf9524d jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xadfcae8f input_register_device +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xadfeae77 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xae32578b tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xae378dfc of_iomap +EXPORT_SYMBOL vmlinux 0xaec0c15e dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaefcb1ba rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xaf0a9b54 xfrm_register_km +EXPORT_SYMBOL vmlinux 0xaf34a8b2 blk_put_request +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf470a29 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0xaf4cd460 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality +EXPORT_SYMBOL vmlinux 0xaf84865e __get_user_8 +EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev +EXPORT_SYMBOL vmlinux 0xaf8fdbb7 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xaf901a65 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xafd80e02 param_set_ullong +EXPORT_SYMBOL vmlinux 0xb004b876 find_lock_entry +EXPORT_SYMBOL vmlinux 0xb039ac2e pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xb042c448 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xb04cf0fe lg_local_unlock +EXPORT_SYMBOL vmlinux 0xb05bc7a4 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb066b530 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xb098b266 amba_device_unregister +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a6ab7c writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xb0a8479f security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xb0b3f951 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0c56625 param_get_ulong +EXPORT_SYMBOL vmlinux 0xb0cb3e8a nf_log_register +EXPORT_SYMBOL vmlinux 0xb0d655ed scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xb0de22a5 __elv_add_request +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0f6fd00 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xb115099e mpage_readpage +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb132f85a snd_ctl_remove +EXPORT_SYMBOL vmlinux 0xb13eaa06 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xb13f8668 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb17f5d5f blk_get_request +EXPORT_SYMBOL vmlinux 0xb19420b7 bio_clone_fast +EXPORT_SYMBOL vmlinux 0xb1ad28e0 __gnu_mcount_nc +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c91f82 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1d9aabd lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xb1f1dc20 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xb1fa786b load_nls +EXPORT_SYMBOL vmlinux 0xb1ffb3da netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0xb20b9c01 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xb2271fea snd_timer_resolution +EXPORT_SYMBOL vmlinux 0xb239b8f5 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xb266bb93 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb26b8226 register_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0xb286e537 input_set_keycode +EXPORT_SYMBOL vmlinux 0xb29bca42 pci_disable_device +EXPORT_SYMBOL vmlinux 0xb2b716a2 touch_atime +EXPORT_SYMBOL vmlinux 0xb2bda67d dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0xb2be5ebd __netif_schedule +EXPORT_SYMBOL vmlinux 0xb2bf0d38 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xb2c86edd netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on +EXPORT_SYMBOL vmlinux 0xb2d4b1a8 arm_dma_zone_size +EXPORT_SYMBOL vmlinux 0xb2ded66d inet_addr_type +EXPORT_SYMBOL vmlinux 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL vmlinux 0xb2fd074a vfs_statfs +EXPORT_SYMBOL vmlinux 0xb30ec1cb kmap_high +EXPORT_SYMBOL vmlinux 0xb3141541 save_mount_options +EXPORT_SYMBOL vmlinux 0xb315ce0f blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xb3172294 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xb330640d padata_do_parallel +EXPORT_SYMBOL vmlinux 0xb33c351f ioremap_cache +EXPORT_SYMBOL vmlinux 0xb352e5df phy_detach +EXPORT_SYMBOL vmlinux 0xb368fb8b fscrypt_initialize +EXPORT_SYMBOL vmlinux 0xb36ea0e9 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0xb38e5b28 tcf_hash_create +EXPORT_SYMBOL vmlinux 0xb396e7df reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0xb3a6e558 dev_addr_flush +EXPORT_SYMBOL vmlinux 0xb3a6ee56 audit_log_task_info +EXPORT_SYMBOL vmlinux 0xb3abf52b lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0xb3cd5583 scsi_register_interface +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3e998af kernel_write +EXPORT_SYMBOL vmlinux 0xb3ea452c mutex_lock +EXPORT_SYMBOL vmlinux 0xb3ebf31f page_mapped +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3f9a2d5 simple_write_end +EXPORT_SYMBOL vmlinux 0xb4145e75 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4332339 pci_pme_capable +EXPORT_SYMBOL vmlinux 0xb4390f9a mcount +EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb45b3a67 vfs_mknod +EXPORT_SYMBOL vmlinux 0xb46b4bb3 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb476ce30 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xb476d5a3 snd_timer_close +EXPORT_SYMBOL vmlinux 0xb479302a ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0xb4a9bcc6 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xb4ae1d09 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL vmlinux 0xb4bde4dd crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xb4e6e3b8 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xb4f89201 request_firmware +EXPORT_SYMBOL vmlinux 0xb4fe171c swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0xb5124732 proc_mkdir +EXPORT_SYMBOL vmlinux 0xb5198b77 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xb5252206 kern_path +EXPORT_SYMBOL vmlinux 0xb537e538 devm_ioremap +EXPORT_SYMBOL vmlinux 0xb5684e29 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb5735a1c snd_ctl_boolean_mono_info +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b2440f dquot_file_open +EXPORT_SYMBOL vmlinux 0xb5b4f6a2 generic_write_end +EXPORT_SYMBOL vmlinux 0xb5c00014 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0xb5c34b5c nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5d9454c printk_emit +EXPORT_SYMBOL vmlinux 0xb5fe39d1 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xb60dbf5d blk_get_backing_dev_info +EXPORT_SYMBOL vmlinux 0xb62275d0 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb63e89b6 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xb64e0aab __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0xb666ba39 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xb66821da i2c_transfer +EXPORT_SYMBOL vmlinux 0xb66c51cb keyring_clear +EXPORT_SYMBOL vmlinux 0xb6750426 __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67ab629 snd_ctl_replace +EXPORT_SYMBOL vmlinux 0xb67f4022 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb68c62e6 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6b3c7c6 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xb6c9e31f udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xb6d3daf1 qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0xb6d45f2b pci_dev_driver +EXPORT_SYMBOL vmlinux 0xb7009d6b mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xb70ad576 pci_get_device +EXPORT_SYMBOL vmlinux 0xb70ed6f1 seq_release_private +EXPORT_SYMBOL vmlinux 0xb71cec79 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xb72917b3 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb748c65d tc6393xb_lcd_set_power +EXPORT_SYMBOL vmlinux 0xb75ba491 __lock_buffer +EXPORT_SYMBOL vmlinux 0xb7650a06 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL vmlinux 0xb767c193 mmc_can_discard +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0xb7b9cb31 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0xb7ba76c7 __aeabi_unwind_cpp_pr2 +EXPORT_SYMBOL vmlinux 0xb7be2a52 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7edec3b skb_checksum +EXPORT_SYMBOL vmlinux 0xb7f6d398 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xb7fb99f2 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL vmlinux 0xb7fcc2a0 snd_register_oss_device +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb81a0e23 kernel_listen +EXPORT_SYMBOL vmlinux 0xb81a3a66 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xb81ea809 generic_file_mmap +EXPORT_SYMBOL vmlinux 0xb8370414 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xb83f71d7 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xb84b2347 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0xb85c62e5 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0xb85fbccc PageMovable +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb8854ac8 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xb892e08a generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xb8a1a182 dev_alert +EXPORT_SYMBOL vmlinux 0xb8a23f01 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0xb8a9adff iunique +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8e3666f get_cached_acl +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb8eec98b del_timer +EXPORT_SYMBOL vmlinux 0xb8f12e42 generic_read_dir +EXPORT_SYMBOL vmlinux 0xb901d622 get_acl +EXPORT_SYMBOL vmlinux 0xb908d1ce pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xb919785d qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xb91eb979 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xb93009a5 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xb936e93c pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xb95f98d6 _memset_io +EXPORT_SYMBOL vmlinux 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL vmlinux 0xb9639f03 km_state_notify +EXPORT_SYMBOL vmlinux 0xb96b6e06 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xb9739cb7 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0xb97b230f fscrypt_fname_usr_to_disk +EXPORT_SYMBOL vmlinux 0xb9a8f03b omap_stop_dma +EXPORT_SYMBOL vmlinux 0xb9acd3d9 __put_user_2 +EXPORT_SYMBOL vmlinux 0xb9d3ad44 mount_subtree +EXPORT_SYMBOL vmlinux 0xb9d62196 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xb9e063fc __frontswap_test +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9eacbee pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xb9f6c224 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xb9f9c9d9 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xba048fad init_net +EXPORT_SYMBOL vmlinux 0xba2b3343 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xba2fb98e tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xba3e3b9d md_integrity_register +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4d39a0 security_path_rename +EXPORT_SYMBOL vmlinux 0xba516e99 down_read +EXPORT_SYMBOL vmlinux 0xba5bdc4c xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0xba65ffa7 nvm_find_target_type +EXPORT_SYMBOL vmlinux 0xba85bf38 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xba870cc8 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xba8bb333 ___ratelimit +EXPORT_SYMBOL vmlinux 0xba97c9f5 serio_rescan +EXPORT_SYMBOL vmlinux 0xbaa31221 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xbab11bd6 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xbab9b013 inet6_add_offload +EXPORT_SYMBOL vmlinux 0xbac03eba crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0xbaccab42 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xbadbfb36 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xbadc7700 default_llseek +EXPORT_SYMBOL vmlinux 0xbae10947 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0xbae346d7 of_parse_phandle +EXPORT_SYMBOL vmlinux 0xbb00aac3 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb08d623 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xbb14fa11 vfs_llseek +EXPORT_SYMBOL vmlinux 0xbb162a11 kobject_del +EXPORT_SYMBOL vmlinux 0xbb1b94f5 pci_save_state +EXPORT_SYMBOL vmlinux 0xbb202e3c netdev_warn +EXPORT_SYMBOL vmlinux 0xbb23f621 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0xbb23f99e __frontswap_store +EXPORT_SYMBOL vmlinux 0xbb254b7e devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xbb26782f nand_scan_tail +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb3a35fc nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xbb4bfa09 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xbb4d7aa1 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xbb57347d of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb72d4fe __put_user_1 +EXPORT_SYMBOL vmlinux 0xbb80b0d5 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xbb840e60 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xbb902411 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbb9f3e23 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xbba87a62 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xbbbf3f05 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xbbe44deb mmc_fixup_device +EXPORT_SYMBOL vmlinux 0xbbece65b sock_no_listen +EXPORT_SYMBOL vmlinux 0xbbfc8888 __SetPageMovable +EXPORT_SYMBOL vmlinux 0xbc10962d fget +EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 +EXPORT_SYMBOL vmlinux 0xbc3adbca elm_decode_bch_error_page +EXPORT_SYMBOL vmlinux 0xbc3c2088 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xbc78c342 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0xbc79d567 init_special_inode +EXPORT_SYMBOL vmlinux 0xbc7a0546 to_ndd +EXPORT_SYMBOL vmlinux 0xbc864fa3 mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0xbc97c9b1 sock_wake_async +EXPORT_SYMBOL vmlinux 0xbc9a8c78 del_gendisk +EXPORT_SYMBOL vmlinux 0xbc9c04bf _snd_ctl_add_slave +EXPORT_SYMBOL vmlinux 0xbcbbd6b1 inet_gro_complete +EXPORT_SYMBOL vmlinux 0xbcc0913d ip_check_defrag +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcc3c844 snd_timer_continue +EXPORT_SYMBOL vmlinux 0xbcc6d512 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xbcda71a3 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0xbce54f59 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0xbcefb9a2 __f_setown +EXPORT_SYMBOL vmlinux 0xbcf8b9e6 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xbd0a6be1 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0xbd2f716e __inode_permission +EXPORT_SYMBOL vmlinux 0xbd3c8a16 nvm_unregister_tgt_type +EXPORT_SYMBOL vmlinux 0xbd4075d8 sg_miter_start +EXPORT_SYMBOL vmlinux 0xbd60e9ec jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xbd6c3e42 fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0xbd78d49b snd_info_register +EXPORT_SYMBOL vmlinux 0xbd81ab14 dmam_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbdbd65e8 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xbde0968f clkdev_hw_alloc +EXPORT_SYMBOL vmlinux 0xbdebc730 vfs_rmdir +EXPORT_SYMBOL vmlinux 0xbe08eb76 get_user_pages +EXPORT_SYMBOL vmlinux 0xbe0c1483 ip6_frag_match +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe20ba66 of_get_min_tck +EXPORT_SYMBOL vmlinux 0xbe39c6c3 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xbe601818 user_revoke +EXPORT_SYMBOL vmlinux 0xbe6ada7d uuid_le_index +EXPORT_SYMBOL vmlinux 0xbed09797 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xbed61d1b xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0xbed7569c of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbef80d4f snd_pcm_new +EXPORT_SYMBOL vmlinux 0xbefd064e page_readlink +EXPORT_SYMBOL vmlinux 0xbf2b1bf6 snd_card_free +EXPORT_SYMBOL vmlinux 0xbf3c8982 pagecache_get_page +EXPORT_SYMBOL vmlinux 0xbf42a2d9 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xbf495fad snd_card_file_add +EXPORT_SYMBOL vmlinux 0xbf5e3f3d __get_user_pages +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa45598 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xbfb26e1c udp_proc_register +EXPORT_SYMBOL vmlinux 0xbfb2ad50 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xbfb43062 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xbfbf7dc1 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xbfc03363 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0xbfcfef62 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0xbfd57fa4 input_unregister_device +EXPORT_SYMBOL vmlinux 0xbfddf2de blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xbfecfbb6 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbffffea2 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xc002224f ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xc0056be5 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xc007840d tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xc00c4e38 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xc0573a1f end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xc06798df jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xc068601c phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07c26b9 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL vmlinux 0xc0a6a8c5 omap_set_dma_dest_burst_mode +EXPORT_SYMBOL vmlinux 0xc0a98385 profile_pc +EXPORT_SYMBOL vmlinux 0xc0a9f040 netif_device_attach +EXPORT_SYMBOL vmlinux 0xc0b4fe49 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0xc0e4eb09 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc1273e02 blk_recount_segments +EXPORT_SYMBOL vmlinux 0xc1318fc5 snd_pci_quirk_lookup +EXPORT_SYMBOL vmlinux 0xc132eb17 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xc13a7ba6 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0xc1487b23 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL vmlinux 0xc1569d4a rps_needed +EXPORT_SYMBOL vmlinux 0xc1579015 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xc15b1d1a dqget +EXPORT_SYMBOL vmlinux 0xc1785bae sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0xc1bdb21d fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0xc1c84919 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xc1cb0f6c __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc208324e freeze_bdev +EXPORT_SYMBOL vmlinux 0xc2649bec inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xc265f7f6 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xc2661652 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xc295de4c default_file_splice_read +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc334e819 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xc345f567 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xc349a263 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xc34fb308 poll_freewait +EXPORT_SYMBOL vmlinux 0xc359fb65 abort +EXPORT_SYMBOL vmlinux 0xc364ae22 iomem_resource +EXPORT_SYMBOL vmlinux 0xc36b53e2 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3ea99f6 max8998_read_reg +EXPORT_SYMBOL vmlinux 0xc3f12ce9 key_validate +EXPORT_SYMBOL vmlinux 0xc4044d52 inet_stream_ops +EXPORT_SYMBOL vmlinux 0xc41f0516 node_states +EXPORT_SYMBOL vmlinux 0xc46f65de blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xc47fccf2 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4a56dcb skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xc4b09e94 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xc4c85677 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xc4fde363 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xc5068101 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0xc509c1f7 amba_release_regions +EXPORT_SYMBOL vmlinux 0xc5151930 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xc52da066 omap_set_dma_dest_params +EXPORT_SYMBOL vmlinux 0xc5423864 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xc58d8dfa ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59e133c uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xc5a1ed39 kthread_bind +EXPORT_SYMBOL vmlinux 0xc5ae2484 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xc5b13961 sk_wait_data +EXPORT_SYMBOL vmlinux 0xc5bbdfbc __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0xc5bed028 fscrypt_get_policy +EXPORT_SYMBOL vmlinux 0xc5d0f1c9 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xc5ddd181 set_groups +EXPORT_SYMBOL vmlinux 0xc5ea8c0e cros_ec_check_result +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc634b628 dquot_acquire +EXPORT_SYMBOL vmlinux 0xc63cc95f snd_pcm_lib_free_pages +EXPORT_SYMBOL vmlinux 0xc64e93f8 vme_irq_generate +EXPORT_SYMBOL vmlinux 0xc665a09e blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xc66c1de1 netdev_update_features +EXPORT_SYMBOL vmlinux 0xc66fa6a6 ida_remove +EXPORT_SYMBOL vmlinux 0xc66fae53 ll_rw_block +EXPORT_SYMBOL vmlinux 0xc681b663 rfkill_alloc +EXPORT_SYMBOL vmlinux 0xc69e327a tcp_parse_options +EXPORT_SYMBOL vmlinux 0xc6c3c25f serio_open +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6ce87e6 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xc6fe5e5f blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xc70d6427 dma_supported +EXPORT_SYMBOL vmlinux 0xc71b5890 radix_tree_delete +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc725da9c snd_timer_global_free +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc769dd1f filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a06332 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xc7a1bc1d prepare_to_swait +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7ba809d tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xc7bcbc8d add_wait_queue +EXPORT_SYMBOL vmlinux 0xc7cb3579 fb_find_mode +EXPORT_SYMBOL vmlinux 0xc7d2a459 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc800d10b pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0xc80e1cfd vme_slot_num +EXPORT_SYMBOL vmlinux 0xc82c82b1 dev_disable_lro +EXPORT_SYMBOL vmlinux 0xc83219d6 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc85225c3 dquot_quota_on +EXPORT_SYMBOL vmlinux 0xc862fca7 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0xc86ebafb alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8734b03 open_exec +EXPORT_SYMBOL vmlinux 0xc88dc97c mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc8a0bcad always_delete_dentry +EXPORT_SYMBOL vmlinux 0xc8a37f77 ptp_clock_event +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8ad8bd8 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8b8f28a phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xc8e25bd5 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xc8e6b608 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0xc8fafce6 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc916370c nvm_erase_blk +EXPORT_SYMBOL vmlinux 0xc9200739 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xc927ff37 seq_write +EXPORT_SYMBOL vmlinux 0xc933d59e locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xc93cb1e0 arp_send +EXPORT_SYMBOL vmlinux 0xc9502ff1 pci_request_regions +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc965ff76 bdget +EXPORT_SYMBOL vmlinux 0xc979e1b8 __kernel_write +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc98fc539 vm_map_ram +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9b6d4cf eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xc9bd00cf pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xc9d23b48 block_write_full_page +EXPORT_SYMBOL vmlinux 0xc9dcee9f shdma_chan_filter +EXPORT_SYMBOL vmlinux 0xc9e9c445 msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0xca14bd42 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xca1b7694 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xca2041e7 __devm_request_region +EXPORT_SYMBOL vmlinux 0xca2a8adb bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xca420c59 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0xca5ec544 snd_pcm_hw_constraint_step +EXPORT_SYMBOL vmlinux 0xca68667b udp_sendmsg +EXPORT_SYMBOL vmlinux 0xca6c4ebf inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0xca6d39f7 netdev_crit +EXPORT_SYMBOL vmlinux 0xca7f3b52 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xca85c9a0 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xca8be4f9 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcaa897ca page_symlink +EXPORT_SYMBOL vmlinux 0xcabee2cb param_set_charp +EXPORT_SYMBOL vmlinux 0xcacea90d textsearch_unregister +EXPORT_SYMBOL vmlinux 0xcaedfb91 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb06f518 block_write_begin +EXPORT_SYMBOL vmlinux 0xcb0745e4 genl_notify +EXPORT_SYMBOL vmlinux 0xcb3f39d8 pci_platform_rom +EXPORT_SYMBOL vmlinux 0xcb466063 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xcb57d40c account_page_dirtied +EXPORT_SYMBOL vmlinux 0xcb5a1a1b dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xcb5b9282 ac97_bus_type +EXPORT_SYMBOL vmlinux 0xcb5f6c20 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0xcb6d68be snd_mixer_oss_notify_callback +EXPORT_SYMBOL vmlinux 0xcb992f84 phy_attach +EXPORT_SYMBOL vmlinux 0xcb9bec52 dcache_dir_open +EXPORT_SYMBOL vmlinux 0xcb9d96fb dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xcbbd1824 __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbd1e023 tso_count_descs +EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcbee6439 ida_simple_get +EXPORT_SYMBOL vmlinux 0xcc001cdc pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xcc0b6725 blk_free_tags +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc288d6f mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xcc3bfb19 bio_init +EXPORT_SYMBOL vmlinux 0xcc49ba11 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc5da108 inet_sendpage +EXPORT_SYMBOL vmlinux 0xcc862c34 nvm_register_tgt_type +EXPORT_SYMBOL vmlinux 0xcc9bef44 snd_pcm_suspend +EXPORT_SYMBOL vmlinux 0xccc0c038 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccf79abc sg_miter_next +EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL vmlinux 0xcd0cc9fd serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xcd1c3a6b tcp_poll +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd30b95a tmio_core_mmc_clk_div +EXPORT_SYMBOL vmlinux 0xcd32cef3 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xcd33832e iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0xcd342fc9 pagevec_lookup +EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr +EXPORT_SYMBOL vmlinux 0xcd760295 alloc_fcdev +EXPORT_SYMBOL vmlinux 0xcd9eb61a tcf_exts_change +EXPORT_SYMBOL vmlinux 0xcdb6a2a8 padata_start +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc49e19 lockref_get +EXPORT_SYMBOL vmlinux 0xcdc7e1e5 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xcdd27553 locks_copy_lock +EXPORT_SYMBOL vmlinux 0xcdd28b7b sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xcde65385 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xcdfbf76a tty_port_hangup +EXPORT_SYMBOL vmlinux 0xce061527 register_netdevice +EXPORT_SYMBOL vmlinux 0xce1f2323 ___pskb_trim +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2c47b4 snd_info_create_card_entry +EXPORT_SYMBOL vmlinux 0xce3a0d6d sk_free +EXPORT_SYMBOL vmlinux 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL vmlinux 0xce520b41 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xce5a961b dev_change_xdp_fd +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce6a553d __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xce736a72 d_obtain_root +EXPORT_SYMBOL vmlinux 0xce7bfe70 vm_brk +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceba2970 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xcec3cf26 down_read_trylock +EXPORT_SYMBOL vmlinux 0xced5d84e empty_aops +EXPORT_SYMBOL vmlinux 0xced74568 tcp_prequeue +EXPORT_SYMBOL vmlinux 0xceed7f85 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf094be3 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xcf17ba12 mdio_driver_register +EXPORT_SYMBOL vmlinux 0xcf226535 page_mapping +EXPORT_SYMBOL vmlinux 0xcf3a2827 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0xcf6d35a2 __register_nls +EXPORT_SYMBOL vmlinux 0xcf6ee314 nobh_write_begin +EXPORT_SYMBOL vmlinux 0xcf781215 vme_master_mmap +EXPORT_SYMBOL vmlinux 0xcf88625f mempool_create_node +EXPORT_SYMBOL vmlinux 0xcf8972ea dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xcf939b81 nand_bch_correct_data +EXPORT_SYMBOL vmlinux 0xcfae4ddf inet_getname +EXPORT_SYMBOL vmlinux 0xcfc86ed1 devm_release_resource +EXPORT_SYMBOL vmlinux 0xcfcceabc tcp_conn_request +EXPORT_SYMBOL vmlinux 0xcff46ca7 copy_to_iter +EXPORT_SYMBOL vmlinux 0xcff6b676 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0xd0067b7b mmc_remove_host +EXPORT_SYMBOL vmlinux 0xd0122d38 km_is_alive +EXPORT_SYMBOL vmlinux 0xd02caae7 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xd034105f lockref_put_return +EXPORT_SYMBOL vmlinux 0xd04c25cd uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xd04c7414 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0xd050eb27 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xd056f0b4 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xd058640e da903x_query_status +EXPORT_SYMBOL vmlinux 0xd05999ae scsi_host_set_state +EXPORT_SYMBOL vmlinux 0xd06dd0d8 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd07fd735 nand_bch_init +EXPORT_SYMBOL vmlinux 0xd0840eaf of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xd08b17a2 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xd09fda9a rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0abe75d sock_no_accept +EXPORT_SYMBOL vmlinux 0xd0abf65f __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd100acbd _raw_write_lock +EXPORT_SYMBOL vmlinux 0xd100b5cf input_unregister_handle +EXPORT_SYMBOL vmlinux 0xd109e99c find_get_entry +EXPORT_SYMBOL vmlinux 0xd11ca011 vfs_fsync +EXPORT_SYMBOL vmlinux 0xd15e7b1c xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0xd178fda7 mmc_cleanup_queue +EXPORT_SYMBOL vmlinux 0xd17adda3 lock_fb_info +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xd1d0c333 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xd1d399f3 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1feb00e clone_cred +EXPORT_SYMBOL vmlinux 0xd2192b9e bio_copy_data +EXPORT_SYMBOL vmlinux 0xd224e71a __pci_enable_wake +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd25ce241 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd25e358a iterate_dir +EXPORT_SYMBOL vmlinux 0xd25fdad4 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xd267e0a9 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2817fbf udp_proc_unregister +EXPORT_SYMBOL vmlinux 0xd298d5d1 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xd29dcdf1 blk_complete_request +EXPORT_SYMBOL vmlinux 0xd2a11a05 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xd2a4909e rwsem_down_write_failed_killable +EXPORT_SYMBOL vmlinux 0xd2a585c1 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class +EXPORT_SYMBOL vmlinux 0xd2bdbe82 dquot_destroy +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e5219d setup_new_exec +EXPORT_SYMBOL vmlinux 0xd2ecc8c6 snd_ctl_make_virtual_master +EXPORT_SYMBOL vmlinux 0xd2fd82e3 inc_node_page_state +EXPORT_SYMBOL vmlinux 0xd30907c3 inet_add_offload +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd34862f6 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xd34d0f17 of_device_unregister +EXPORT_SYMBOL vmlinux 0xd35f75a1 match_string +EXPORT_SYMBOL vmlinux 0xd36ecc1c inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xd3713383 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xd3881ae1 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xd38f39bf blk_peek_request +EXPORT_SYMBOL vmlinux 0xd38f51e7 fscrypt_process_policy +EXPORT_SYMBOL vmlinux 0xd398b1bf dev_open +EXPORT_SYMBOL vmlinux 0xd3afd022 backlight_force_update +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3c5f467 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xd3cb5179 nand_lock +EXPORT_SYMBOL vmlinux 0xd3d9ee97 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xd3dbfbc4 _find_first_zero_bit_le +EXPORT_SYMBOL vmlinux 0xd3dd1167 bio_integrity_free +EXPORT_SYMBOL vmlinux 0xd3ed4b61 mmc_start_req +EXPORT_SYMBOL vmlinux 0xd4005c24 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xd4669fad complete +EXPORT_SYMBOL vmlinux 0xd46df8fe clkdev_alloc +EXPORT_SYMBOL vmlinux 0xd49641a8 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL vmlinux 0xd4a3236c jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xd4a560ab inet_frags_init +EXPORT_SYMBOL vmlinux 0xd4a5f099 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xd4b638cd vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xd4bc456d vme_bus_num +EXPORT_SYMBOL vmlinux 0xd4cb0c9b __d_lookup_done +EXPORT_SYMBOL vmlinux 0xd4ee98f1 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xd4f040da truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xd5068cff security_task_getsecid +EXPORT_SYMBOL vmlinux 0xd5117521 lookup_one_len +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd54ab470 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0xd559c8c3 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xd56c7a38 fd_install +EXPORT_SYMBOL vmlinux 0xd57f017e __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xd582582f blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0xd5932260 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd5a236d0 blk_start_queue_async +EXPORT_SYMBOL vmlinux 0xd5a30375 dev_close +EXPORT_SYMBOL vmlinux 0xd5c166e1 tty_set_operations +EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd61347c6 register_sysctl +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd627480b strncat +EXPORT_SYMBOL vmlinux 0xd62aaf72 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd630cf9e scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0xd640852b blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0xd644961c mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xd6468763 snd_info_free_entry +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd6518166 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xd654a4ba blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xd668adda neigh_app_ns +EXPORT_SYMBOL vmlinux 0xd67751fe genphy_update_link +EXPORT_SYMBOL vmlinux 0xd67954ed tty_devnum +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd69a519e sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xd69ef97d posix_acl_alloc +EXPORT_SYMBOL vmlinux 0xd69f0ee7 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xd69f916f follow_pfn +EXPORT_SYMBOL vmlinux 0xd6a2dd96 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xd6b2257d devm_memremap +EXPORT_SYMBOL vmlinux 0xd6bbcf24 xattr_full_name +EXPORT_SYMBOL vmlinux 0xd6c68ece dup_iter +EXPORT_SYMBOL vmlinux 0xd6c86e62 blk_integrity_register +EXPORT_SYMBOL vmlinux 0xd6cc97ca dquot_initialize +EXPORT_SYMBOL vmlinux 0xd6cccd30 seq_escape +EXPORT_SYMBOL vmlinux 0xd6d15967 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xd6dbe5c5 dev_uc_add +EXPORT_SYMBOL vmlinux 0xd6e47ae6 md_write_start +EXPORT_SYMBOL vmlinux 0xd6eba4b0 simple_transaction_set +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd74289f9 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xd74c384e dev_set_group +EXPORT_SYMBOL vmlinux 0xd75bf043 blk_queue_split +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd75d1b40 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0xd769a56c of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xd775110e vfs_iter_write +EXPORT_SYMBOL vmlinux 0xd7887c4a simple_release_fs +EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write +EXPORT_SYMBOL vmlinux 0xd79aa266 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xd7a197b2 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xd7ad057a of_get_next_child +EXPORT_SYMBOL vmlinux 0xd7cb2fa1 param_ops_charp +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7d8ded2 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea29ef dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0xd82b5755 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xd845cf95 nla_put +EXPORT_SYMBOL vmlinux 0xd85833cb __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xd85910e9 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xd85cd67e __wake_up +EXPORT_SYMBOL vmlinux 0xd8764c1c scsi_target_resume +EXPORT_SYMBOL vmlinux 0xd885b10a ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xd89d1d36 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0xd8a29660 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b1e4f8 fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xd8d8781c blk_finish_request +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e3c1b8 vfs_link +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8e88899 kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0xd8ee62d9 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xd9127013 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xd92cf6a0 snd_timer_global_register +EXPORT_SYMBOL vmlinux 0xd930771e xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xd93092f3 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xd9460d6d ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xd955d2b7 omap_set_dma_dest_data_pack +EXPORT_SYMBOL vmlinux 0xd9771685 skb_unlink +EXPORT_SYMBOL vmlinux 0xd979e0b1 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xd97c8c3f vfs_unlink +EXPORT_SYMBOL vmlinux 0xd97edd47 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9b78e76 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0xd9c58f7a key_payload_reserve +EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen +EXPORT_SYMBOL vmlinux 0xd9cefc99 genl_unregister_family +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9ef91e6 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xd9f6672b bdi_destroy +EXPORT_SYMBOL vmlinux 0xda096e4e consume_skb +EXPORT_SYMBOL vmlinux 0xda27bc14 inet6_protos +EXPORT_SYMBOL vmlinux 0xda379451 unregister_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda54c9d4 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xda638b6b fscrypt_inherit_context +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda810c23 tcp_proc_register +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda9753dd posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0xdaa334fc pneigh_lookup +EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages +EXPORT_SYMBOL vmlinux 0xdaa9c768 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0xdaafc807 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xdab02190 __posix_acl_create +EXPORT_SYMBOL vmlinux 0xdabadddf jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xdabfbc68 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad0798b dcb_setapp +EXPORT_SYMBOL vmlinux 0xdad9594d snd_ctl_rename_id +EXPORT_SYMBOL vmlinux 0xdad97f94 __raw_writesw +EXPORT_SYMBOL vmlinux 0xdafc2c0a __i2c_transfer +EXPORT_SYMBOL vmlinux 0xdb027cbf vlan_vid_add +EXPORT_SYMBOL vmlinux 0xdb107a10 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xdb2dc50d phy_find_first +EXPORT_SYMBOL vmlinux 0xdb4292e4 omap_set_dma_params +EXPORT_SYMBOL vmlinux 0xdb5542be request_key +EXPORT_SYMBOL vmlinux 0xdb58cbf2 mmc_erase +EXPORT_SYMBOL vmlinux 0xdb630b76 __skb_csum_offload_chk +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb8651cc netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xdbd75d89 snd_pcm_new_stream +EXPORT_SYMBOL vmlinux 0xdbdf307f param_set_bint +EXPORT_SYMBOL vmlinux 0xdbe902cc file_ns_capable +EXPORT_SYMBOL vmlinux 0xdbfa6536 skb_vlan_push +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc07b706 __destroy_inode +EXPORT_SYMBOL vmlinux 0xdc0dcbf3 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xdc0f6d1b scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc177a86 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc44a2cc nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc6b1dcb scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xdc8d313b reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0xdc906c70 dquot_release +EXPORT_SYMBOL vmlinux 0xdc946dcf param_ops_bool +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcb949e9 ps2_command +EXPORT_SYMBOL vmlinux 0xdcdb7362 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xdce63494 would_dump +EXPORT_SYMBOL vmlinux 0xdce6b6db dev_mc_init +EXPORT_SYMBOL vmlinux 0xdd09bc99 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd226fa9 __raw_readsw +EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd3916ac _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xdd3d25ad padata_free +EXPORT_SYMBOL vmlinux 0xdd45c037 d_tmpfile +EXPORT_SYMBOL vmlinux 0xdd57f495 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xdd5ce82c tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xdd9e58af skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xdda492a5 param_get_byte +EXPORT_SYMBOL vmlinux 0xddac37eb PDE_DATA +EXPORT_SYMBOL vmlinux 0xddcf91c8 release_and_free_resource +EXPORT_SYMBOL vmlinux 0xdde675ce component_match_add_release +EXPORT_SYMBOL vmlinux 0xde1f224b ip_do_fragment +EXPORT_SYMBOL vmlinux 0xde1f56f2 rtnl_create_link +EXPORT_SYMBOL vmlinux 0xde39cb92 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xde3bbc66 migrate_page_copy +EXPORT_SYMBOL vmlinux 0xde3d2b2a md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xde41f5b4 set_disk_ro +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xdea067d0 __blk_run_queue +EXPORT_SYMBOL vmlinux 0xdea9fa20 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xdec030e5 arm_clear_user +EXPORT_SYMBOL vmlinux 0xdedc5776 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xdee1e9b8 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xdee6f7a4 blk_run_queue +EXPORT_SYMBOL vmlinux 0xdeef59ee ip_defrag +EXPORT_SYMBOL vmlinux 0xdef8681e phy_start_aneg +EXPORT_SYMBOL vmlinux 0xdf08e6ab task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update +EXPORT_SYMBOL vmlinux 0xdf4f7835 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xdf50f1bf may_umount_tree +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf63c3c2 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xdf691d31 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0xdf70037e disk_stack_limits +EXPORT_SYMBOL vmlinux 0xdf833cb0 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xdf88e195 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf995f61 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xdf9a27ca jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfc91ab1 mmc_can_reset +EXPORT_SYMBOL vmlinux 0xdfca2f04 tcp_seq_open +EXPORT_SYMBOL vmlinux 0xdfd32819 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL vmlinux 0xdfd91ce9 omap_type +EXPORT_SYMBOL vmlinux 0xdfdef540 pagecache_write_end +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffe5254 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0xe0083caf ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xe01e98d2 udp_table +EXPORT_SYMBOL vmlinux 0xe0220ffe down_write +EXPORT_SYMBOL vmlinux 0xe024b8da address_space_init_once +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe052d50e pci_bus_get +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe061f423 __sb_start_write +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe0976a60 sock_no_poll +EXPORT_SYMBOL vmlinux 0xe0a8eb95 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b21949 kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0xe0b527e5 backlight_device_register +EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0c6d05c block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xe0d2178c zpool_register_driver +EXPORT_SYMBOL vmlinux 0xe0d9ce53 pci_match_id +EXPORT_SYMBOL vmlinux 0xe0e8f9d2 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xe0ef8410 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL vmlinux 0xe0f374eb clocksource_unregister +EXPORT_SYMBOL vmlinux 0xe0f7b947 lock_rename +EXPORT_SYMBOL vmlinux 0xe10bf02e sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe127fb18 down_killable +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe152d524 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xe1685f8f lock_page_memcg +EXPORT_SYMBOL vmlinux 0xe16b3ddb __check_sticky +EXPORT_SYMBOL vmlinux 0xe16d05e7 pci_pme_active +EXPORT_SYMBOL vmlinux 0xe174bbda mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe17b74e8 mount_single +EXPORT_SYMBOL vmlinux 0xe1a5e046 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xe1c701d5 kobject_put +EXPORT_SYMBOL vmlinux 0xe1c975c6 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xe1cc4424 get_monotonic_coarse64 +EXPORT_SYMBOL vmlinux 0xe1eb880b prepare_creds +EXPORT_SYMBOL vmlinux 0xe1f0ab3a _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xe1fa7bd9 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xe2005cc0 kunmap +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20c2fdd netif_device_detach +EXPORT_SYMBOL vmlinux 0xe2116aab generic_permission +EXPORT_SYMBOL vmlinux 0xe23f9e8c pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe26db087 kill_bdev +EXPORT_SYMBOL vmlinux 0xe285933a ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xe28617b2 skb_insert +EXPORT_SYMBOL vmlinux 0xe28f87ff ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xe28fec3f dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2a65598 mtd_concat_create +EXPORT_SYMBOL vmlinux 0xe2ab1d31 blk_fetch_request +EXPORT_SYMBOL vmlinux 0xe2acc401 filp_open +EXPORT_SYMBOL vmlinux 0xe2be0b48 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xe2c6fa02 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xe2cc96f7 __do_once_done +EXPORT_SYMBOL vmlinux 0xe2d1b938 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2f2f85f generic_make_request +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe319a0f4 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xe31abf01 tty_vhangup +EXPORT_SYMBOL vmlinux 0xe3244a66 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xe32828d6 tty_check_change +EXPORT_SYMBOL vmlinux 0xe3333ecd of_get_next_available_child +EXPORT_SYMBOL vmlinux 0xe3416350 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0xe3639842 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xe367b395 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xe3748e2d unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xe379c9b9 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xe379d332 netif_rx +EXPORT_SYMBOL vmlinux 0xe38f06f1 sget_userns +EXPORT_SYMBOL vmlinux 0xe3b98dc5 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xe3bab062 bdev_read_only +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3bedf17 key_unlink +EXPORT_SYMBOL vmlinux 0xe3befb2b nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xe3d6695c con_copy_unimap +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3d98100 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xe3f22819 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xe41a1dd8 unload_nls +EXPORT_SYMBOL vmlinux 0xe43274bc proc_dointvec +EXPORT_SYMBOL vmlinux 0xe44f79de security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xe47b836f fscrypt_decrypt_bio_pages +EXPORT_SYMBOL vmlinux 0xe4890df5 replace_mount_options +EXPORT_SYMBOL vmlinux 0xe490ba73 key_reject_and_link +EXPORT_SYMBOL vmlinux 0xe494a01a radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0xe4ae855e mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0xe4b22bb3 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4e833b3 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xe4ff89b0 neigh_direct_output +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe5324ca8 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe57f1fcc of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xe5822a30 inet_del_offload +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe5921d20 kill_fasync +EXPORT_SYMBOL vmlinux 0xe599c1b8 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0xe59b403c dquot_drop +EXPORT_SYMBOL vmlinux 0xe5a081ba snd_seq_root +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5dbdfc3 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe5f170ef dquot_quota_off +EXPORT_SYMBOL vmlinux 0xe60a1894 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0xe63c3d90 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xe66452ab dql_init +EXPORT_SYMBOL vmlinux 0xe672de14 vfs_readv +EXPORT_SYMBOL vmlinux 0xe690858f vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xe69387c7 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size +EXPORT_SYMBOL vmlinux 0xe6b1fd89 md_write_end +EXPORT_SYMBOL vmlinux 0xe6c3e42b nand_calculate_ecc +EXPORT_SYMBOL vmlinux 0xe6d48770 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0xe6e3fb55 bitmap_unplug +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe7075b97 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv +EXPORT_SYMBOL vmlinux 0xe74acd61 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xe74c8481 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xe758aa93 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xe77793b2 snd_info_create_module_entry +EXPORT_SYMBOL vmlinux 0xe785c76c xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xe790afc3 omap_get_dma_dst_pos +EXPORT_SYMBOL vmlinux 0xe79f7780 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7b71e1a netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7ea37cb __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xe80413c8 __napi_complete +EXPORT_SYMBOL vmlinux 0xe81be645 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8230215 kern_path_create +EXPORT_SYMBOL vmlinux 0xe82e3e66 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0xe83c1b06 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xe85c203d bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xe87117dc ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xe878546b __cpu_present_mask +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe879de0b pci_irq_vector +EXPORT_SYMBOL vmlinux 0xe87b2edd sg_copy_buffer +EXPORT_SYMBOL vmlinux 0xe87ecb7c dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xe881b69f simple_nosetlease +EXPORT_SYMBOL vmlinux 0xe8a4770d swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8b5f342 d_alloc +EXPORT_SYMBOL vmlinux 0xe8bad6d7 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8e532b5 skb_queue_tail +EXPORT_SYMBOL vmlinux 0xe8eb762c sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xe912da6b unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe93f6042 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xe941b8ec mmc_start_bkops +EXPORT_SYMBOL vmlinux 0xe941d976 __nd_iostat_start +EXPORT_SYMBOL vmlinux 0xe953723c blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe9593a93 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe97e045a tcp_child_process +EXPORT_SYMBOL vmlinux 0xe9858234 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0xe9a840c1 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xe9b57154 kill_anon_super +EXPORT_SYMBOL vmlinux 0xe9be808d lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xe9bf42bb filp_close +EXPORT_SYMBOL vmlinux 0xe9ca2ffc tcf_action_exec +EXPORT_SYMBOL vmlinux 0xe9d09cbf blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xe9d65be3 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea0ef10a inode_dio_wait +EXPORT_SYMBOL vmlinux 0xea16e041 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xea1ca4f9 tty_unlock +EXPORT_SYMBOL vmlinux 0xea1f5b88 samsung_rev +EXPORT_SYMBOL vmlinux 0xea5bd171 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xea5f3c2b input_register_handler +EXPORT_SYMBOL vmlinux 0xea689479 km_query +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea7ac361 inet_shutdown +EXPORT_SYMBOL vmlinux 0xea84c151 from_kgid_munged +EXPORT_SYMBOL vmlinux 0xea86f0f4 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xeaa62b01 fscrypt_d_ops +EXPORT_SYMBOL vmlinux 0xeac0c31e vm_insert_mixed +EXPORT_SYMBOL vmlinux 0xeac5713f scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xeae1c70e skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xeae2a5bc generic_setlease +EXPORT_SYMBOL vmlinux 0xeaea972d xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0xeb03b389 __raw_readsl +EXPORT_SYMBOL vmlinux 0xeb0bc19d phy_attached_info +EXPORT_SYMBOL vmlinux 0xeb1024f3 serio_bus +EXPORT_SYMBOL vmlinux 0xeb1b120e omap_set_dma_write_mode +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb3df032 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xeb40b77e set_posix_acl +EXPORT_SYMBOL vmlinux 0xeb5031a4 sock_sendmsg +EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeb6c3c0d dquot_free_inode +EXPORT_SYMBOL vmlinux 0xeb81ffa5 blk_delay_queue +EXPORT_SYMBOL vmlinux 0xeb90c447 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xeb969ee3 neigh_table_clear +EXPORT_SYMBOL vmlinux 0xebaf4171 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xebafdae6 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0xebb43646 __dquot_free_space +EXPORT_SYMBOL vmlinux 0xebbe71e8 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xebd15a48 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xebe2ccb3 scsi_host_get +EXPORT_SYMBOL vmlinux 0xebf40ac0 param_get_uint +EXPORT_SYMBOL vmlinux 0xebfa523f nvm_register_mgr +EXPORT_SYMBOL vmlinux 0xebfb91d6 __inet_hash +EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high +EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit +EXPORT_SYMBOL vmlinux 0xec2a7398 shdma_reset +EXPORT_SYMBOL vmlinux 0xec3cf310 nand_read_oob_std +EXPORT_SYMBOL vmlinux 0xec48de34 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec4f912d start_tty +EXPORT_SYMBOL vmlinux 0xec55328d get_gendisk +EXPORT_SYMBOL vmlinux 0xec66ee40 dm_get_device +EXPORT_SYMBOL vmlinux 0xec77ec15 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xec789ad3 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xec80b7bd __block_write_begin +EXPORT_SYMBOL vmlinux 0xec8f2c12 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xeca158b7 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0xecba893d simple_rename +EXPORT_SYMBOL vmlinux 0xeccca24c pci_scan_slot +EXPORT_SYMBOL vmlinux 0xecd9987b elm_config +EXPORT_SYMBOL vmlinux 0xecdab726 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecf8a3b4 __raw_writesl +EXPORT_SYMBOL vmlinux 0xecf95f3c pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xed0821c7 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xed18a01f ata_port_printk +EXPORT_SYMBOL vmlinux 0xed1c3d1b module_layout +EXPORT_SYMBOL vmlinux 0xed4219c7 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed824bdb devm_gpio_free +EXPORT_SYMBOL vmlinux 0xed8f87ed devm_iounmap +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +EXPORT_SYMBOL vmlinux 0xed969648 __secpath_destroy +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedb0ac30 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc7f4ec dq_data_lock +EXPORT_SYMBOL vmlinux 0xedcbced7 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xedd9106d __ashrdi3 +EXPORT_SYMBOL vmlinux 0xedef3518 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xedfcdd2b setattr_copy +EXPORT_SYMBOL vmlinux 0xee1e3ac1 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xee20b753 shdma_chan_remove +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee30a357 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xee321b04 param_get_ullong +EXPORT_SYMBOL vmlinux 0xee355d38 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xee6cac96 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0xee715ef8 lg_global_unlock +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee93ab83 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0xeea07503 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeed3635b proc_dostring +EXPORT_SYMBOL vmlinux 0xeeee8777 tty_register_driver +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeef64f3d vm_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xef0d4121 devm_gpio_request +EXPORT_SYMBOL vmlinux 0xef1fcde1 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0xef2715b5 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xef2fdc4f __percpu_counter_init +EXPORT_SYMBOL vmlinux 0xef7028a3 ps2_end_command +EXPORT_SYMBOL vmlinux 0xef7ca46e nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xef825469 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL vmlinux 0xefbe88a8 dev_get_flags +EXPORT_SYMBOL vmlinux 0xefc1f6a5 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0xefc2c66d __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xefcf3143 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefd6cf06 __aeabi_unwind_cpp_pr0 +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefe3fce0 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xefea9a3f tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xefec312f omap_get_dma_active_status +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf01d8039 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xf02ae304 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xf03d4ab3 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xf05f7dff sock_edemux +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf061039d i2c_use_client +EXPORT_SYMBOL vmlinux 0xf06fa713 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xf07e6cef inet_sendmsg +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0dbf0aa fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0xf0ed2ef4 __raw_writesb +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf1085f3a scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf176cb85 kernel_connect +EXPORT_SYMBOL vmlinux 0xf1808b20 fscrypt_release_ctx +EXPORT_SYMBOL vmlinux 0xf18223a8 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xf18de3b2 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf19ec195 register_console +EXPORT_SYMBOL vmlinux 0xf1a7629b param_get_charp +EXPORT_SYMBOL vmlinux 0xf1a85fd3 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 +EXPORT_SYMBOL vmlinux 0xf1e43f20 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1ea6f1c __bswapsi2 +EXPORT_SYMBOL vmlinux 0xf1f08070 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf211f9f3 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xf2124cd3 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xf227e640 free_buffer_head +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf266200d generic_write_checks +EXPORT_SYMBOL vmlinux 0xf27d6bef iterate_fd +EXPORT_SYMBOL vmlinux 0xf2892be3 snd_pcm_release_substream +EXPORT_SYMBOL vmlinux 0xf28d2524 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf2a75c8d inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2d490dd tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xf2daa159 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xf2dd5805 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xf2ef64ca __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xf306f009 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf33c5995 read_cache_page +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf3834a97 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xf39de747 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0xf3a02212 nd_integrity_init +EXPORT_SYMBOL vmlinux 0xf3c1df8f qdisc_list_del +EXPORT_SYMBOL vmlinux 0xf3c2b722 simple_dname +EXPORT_SYMBOL vmlinux 0xf3d35d81 skb_pad +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xf40b240e tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xf4187457 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xf4311156 arp_tbl +EXPORT_SYMBOL vmlinux 0xf449e62c mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0xf473ffaf down +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf475bc4e dev_change_proto_down +EXPORT_SYMBOL vmlinux 0xf4768125 netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0xf48ed171 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xf4908c88 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xf4a04498 nmi_panic +EXPORT_SYMBOL vmlinux 0xf4a089d4 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4e3af43 dec_node_page_state +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf533d615 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf54076c5 seq_open +EXPORT_SYMBOL vmlinux 0xf5514ce0 ioremap_page +EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp +EXPORT_SYMBOL vmlinux 0xf59a4bc8 padata_do_serial +EXPORT_SYMBOL vmlinux 0xf59e1391 tcp_prot +EXPORT_SYMBOL vmlinux 0xf59f403f pci_request_region +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5a9eb3b rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xf5b69950 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0xf5bb2659 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf6010709 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xf621b3e6 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xf62aa0d3 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xf62ffef3 qcom_scm_pas_mem_setup +EXPORT_SYMBOL vmlinux 0xf66121fc call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xf662d4c5 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xf668257f __mdiobus_register +EXPORT_SYMBOL vmlinux 0xf66cb5f2 of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf6851d5f register_sysctl_paths +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf696b5eb inet_gro_receive +EXPORT_SYMBOL vmlinux 0xf6ab441a netif_napi_del +EXPORT_SYMBOL vmlinux 0xf6be117e __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xf6c63e71 submit_bio +EXPORT_SYMBOL vmlinux 0xf6db9c4c __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf70ce87d snd_pcm_hw_param_last +EXPORT_SYMBOL vmlinux 0xf7163ec9 __raw_readsb +EXPORT_SYMBOL vmlinux 0xf725a2e5 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xf7377caf rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xf73f643f sk_capable +EXPORT_SYMBOL vmlinux 0xf744355e vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xf748472c flush_delayed_work +EXPORT_SYMBOL vmlinux 0xf751feaf ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf7741698 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod +EXPORT_SYMBOL vmlinux 0xf78d25ec swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xf7a42c1f tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xf7aaeddc ida_init +EXPORT_SYMBOL vmlinux 0xf7bbdc4b abx500_remove_ops +EXPORT_SYMBOL vmlinux 0xf7cd72cd blk_put_queue +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82d0199 find_get_entries_tag +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf8308e13 tty_do_resize +EXPORT_SYMBOL vmlinux 0xf83f7697 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xf8535a2c blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xf8639b20 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xf863d289 dm_register_target +EXPORT_SYMBOL vmlinux 0xf871fa40 snd_ctl_new1 +EXPORT_SYMBOL vmlinux 0xf8a1f4f6 nf_log_trace +EXPORT_SYMBOL vmlinux 0xf8acb46f scm_detach_fds +EXPORT_SYMBOL vmlinux 0xf8e8b116 sock_i_uid +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf8fe9ec3 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xf930eec7 eth_header_parse +EXPORT_SYMBOL vmlinux 0xf9335b6f skb_append +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf9438227 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xf9462da1 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0xf9582aaf udp6_csum_init +EXPORT_SYMBOL vmlinux 0xf9697a5d jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xf978b387 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xf981a853 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xf982b66b inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xf98e97ea __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xf991ef73 vm_node_stat +EXPORT_SYMBOL vmlinux 0xf9920bf1 snd_ctl_add +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9a60543 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xf9aa2248 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xf9af6684 arm_coherent_dma_ops +EXPORT_SYMBOL vmlinux 0xf9bb4c0e xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xf9d34c9a devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xf9edce3d xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xf9ee31f6 dev_uc_init +EXPORT_SYMBOL vmlinux 0xf9ee4d4d dquot_resume +EXPORT_SYMBOL vmlinux 0xf9fd8c2c sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xfa00c803 inode_needs_sync +EXPORT_SYMBOL vmlinux 0xfa054fbb xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xfa30e377 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xfa49f412 file_path +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5bcf35 mod_timer +EXPORT_SYMBOL vmlinux 0xfa6834b0 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xfaa8d7ad devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xfab656b2 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0xfac6379a filemap_check_errors +EXPORT_SYMBOL vmlinux 0xfac68eba arm_elf_read_implies_exec +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacc189d blk_end_request_all +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfaecc21e kset_unregister +EXPORT_SYMBOL vmlinux 0xfafd41f7 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xfb0cecfd vm_event_states +EXPORT_SYMBOL vmlinux 0xfb36ff0d pipe_lock +EXPORT_SYMBOL vmlinux 0xfb5dca7f unlock_rename +EXPORT_SYMBOL vmlinux 0xfb6939ad csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xfb69c3c3 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb7654a6 tty_name +EXPORT_SYMBOL vmlinux 0xfb7d9c45 __udivsi3 +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbac2bc4 phy_device_free +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbea2f4b of_translate_address +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc13efe0 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xfc14a4cb mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0xfc23fe1e pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc5430d8 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xfc567158 vga_client_register +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xfc787f92 tcf_hash_search +EXPORT_SYMBOL vmlinux 0xfc7e6a74 skb_tx_error +EXPORT_SYMBOL vmlinux 0xfc8c1b95 to_nd_btt +EXPORT_SYMBOL vmlinux 0xfc9ccbe1 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xfca16410 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xfcc11efe reuseport_alloc +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcce03bb blk_requeue_request +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcdecadd unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf621e9 mmc_of_parse +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd172b3b skb_split +EXPORT_SYMBOL vmlinux 0xfd1804a8 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xfd305341 walk_stackframe +EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xfd33d010 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0xfd3b214e inet6_getname +EXPORT_SYMBOL vmlinux 0xfd4145ce __bread_gfp +EXPORT_SYMBOL vmlinux 0xfd414de5 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xfd560120 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xfd5683b9 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0xfd584858 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xfd6f3b09 check_disk_change +EXPORT_SYMBOL vmlinux 0xfd7795e9 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0xfd8b4542 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfd99e7fb blkdev_put +EXPORT_SYMBOL vmlinux 0xfda2305c bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL vmlinux 0xfdbb3d7c skb_queue_purge +EXPORT_SYMBOL vmlinux 0xfdd8ceb2 snd_pcm_period_elapsed +EXPORT_SYMBOL vmlinux 0xfddde885 register_sound_midi +EXPORT_SYMBOL vmlinux 0xfdfbd1dc iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe0be476 vc_resize +EXPORT_SYMBOL vmlinux 0xfe1544da fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xfe15f831 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xfe340d5c tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xfe3c83c2 nand_bch_calculate_ecc +EXPORT_SYMBOL vmlinux 0xfe4b66cb __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe5f3641 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xfe71ea12 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe80cae1 uuid_be_to_bin +EXPORT_SYMBOL vmlinux 0xfe8bd908 snd_jack_new +EXPORT_SYMBOL vmlinux 0xfe9869cb ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0xfeaa8882 up_write +EXPORT_SYMBOL vmlinux 0xfeb740f6 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xfec00b94 alloc_disk +EXPORT_SYMBOL vmlinux 0xfec8da12 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xfed22d0b nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0xfedc746e __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff36c061 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xff3f5101 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xff482836 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xff5247b6 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xff563cfe pcie_get_mps +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 0xff73672f register_md_personality +EXPORT_SYMBOL vmlinux 0xff79a127 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xff809170 tcf_em_register +EXPORT_SYMBOL vmlinux 0xff838fef gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0xff89ee71 param_set_ulong +EXPORT_SYMBOL vmlinux 0xff8cbb1f idr_destroy +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit +EXPORT_SYMBOL vmlinux 0xffcbc2cc mmc_request_done +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0xb25900cb sha1_update_arm +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0xe60a71b0 sha1_finup_arm +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x976e8065 ablk_init +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xa293fc87 ablk_set_key +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xa9e10434 __ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xb5038908 ablk_decrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xcac06e32 ablk_exit +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xf393a06f ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xf4b1a5b9 ablk_init_common +EXPORT_SYMBOL_GPL crypto/af_alg 0x31cfd04c af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x38220e5a af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x5761007e af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x69047d2e af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x7a7689d7 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x7bca3f64 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x874bb4b2 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x8e77832d af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xd8e491e8 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xd954ef95 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0xf4a7b98a af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xb83b9902 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x14b5e301 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xa00ba887 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x1929d893 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x26780eee async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x7201655b async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x82d47027 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x9ebabf11 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb84ceaea async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x04ca45d2 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xc4bfca0f async_xor +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x24b2a20e blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x082fddc0 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x9f9f963d cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 +EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x62bf96d8 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x95388b81 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/cryptd 0x122fe1b3 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x190b3462 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x1db61a50 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x3d32fa87 cryptd_ablkcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x405a588e cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x54e20813 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x86a2cc9a cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x976cf47a cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xa182fb87 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xc2ea35eb cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xc8aa3e11 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xc8f13109 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xfd351b23 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x29fc26ce crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x48503c09 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4ed8755c crypto_transfer_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4fce57ff crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x792c5302 crypto_finalize_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd7c31d39 crypto_transfer_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xebbd02eb crypto_engine_start +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey +EXPORT_SYMBOL_GPL crypto/dh_generic 0x9edeb49b crypto_dh_decode_key +EXPORT_SYMBOL_GPL crypto/dh_generic 0xa9c31fb3 crypto_dh_key_len +EXPORT_SYMBOL_GPL crypto/dh_generic 0xb25efd9f crypto_dh_encode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x597307c5 crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table +EXPORT_SYMBOL_GPL crypto/lrw 0x8f329659 lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x014ce251 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x60db3e43 mcryptd_ahash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0x6273f977 mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x737e6d2d mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3d04c535 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x7730040b crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x7f49b829 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xd12ec669 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8e041f2f serpent_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xd9c3e9d5 twofish_setkey +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x0a5db5d8 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x798dbb51 sis_info133_for_sata +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-spmi 0x1e093e06 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x77725920 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x7f08338d __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xad6ccd17 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x02abf1d4 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x08e75003 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1306a74e bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1e220f76 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2176b8aa bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x27033735 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2760c7ee bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2a0524a7 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x36dac5ea bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4133552c bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x50ee6b12 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5174228d bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x53b97ad7 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5a67df3e __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5f380147 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x626d65e5 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6d915529 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x84771735 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa05217c0 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbffd0987 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc7f6d7b0 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd652c386 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd85ab97d bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xec582ab8 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x38c92c14 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4e2c8a87 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xae2346ec btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb360840c btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbf951912 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd82cddba btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x129c70f8 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1e791b99 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2448c042 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x289288f7 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5a2aca6c btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x690ef361 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x941b4b40 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb2c12344 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb6605395 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbefd9db8 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbf08efce btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc25c96c6 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd8f34d06 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfc5ce76b btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0802db6e btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x24bd5594 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x520ad3b8 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5e1afefb btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x786859a2 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x808ab45f btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8cb2ab54 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x985d3d7d btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa120c42d btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xab2f08ed btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc791d501 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xe3043622 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xe85e2408 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xdbdf9bf6 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x647a6098 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/char/tpm/tpm_tis_core 0x12b61c20 tpm_tis_resume +EXPORT_SYMBOL_GPL drivers/char/tpm/tpm_tis_core 0x18cac3e5 tpm_tis_remove +EXPORT_SYMBOL_GPL drivers/char/tpm/tpm_tis_core 0xf6f9f9ee tpm_tis_core_init +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x15aaa8f2 qcom_cc_really_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1ad28e9c clk_rcg_bypass_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f4159b0 clk_byte2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2fdd60b1 qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x36b245fd clk_disable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3b0b58e5 clk_regmap_mux_closest_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x40c8bac4 clk_alpha_pll_postdiv_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x476c3d7c clk_gfx3d_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4cb19ea5 clk_enable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x53f95e39 clk_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x56107ada qcom_cc_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x612214bd clk_edp_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x669bd1fd qcom_find_freq +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x67ae803a clk_rcg_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x709d9cf0 clk_pll_configure_sr +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x73964fc2 clk_dyn_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7cf123d5 qcom_cc_register_sleep_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7edc6c06 devm_clk_register_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8a2a303a qcom_reset_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8c4dbdbe clk_branch_simple_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8d53d96e clk_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x90b53166 clk_pll_configure_sr_hpm_lp +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x999e1e71 clk_branch2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x99d2c773 clk_rcg2_shared_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9e2e91a1 clk_rcg_bypass2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaace56b1 clk_rcg_esc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaf48ec81 qcom_cc_register_board_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc7994798 clk_branch_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcb0c5248 clk_byte_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcd0a83c6 clk_rcg2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd25fd154 clk_rcg_lcc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd6dac64a qcom_find_src_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe703bcad clk_pll_vote_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf0e61bbc clk_alpha_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf1f136dc clk_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf5f5f55b clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf69c2f55 clk_pll_sr2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf93e315f clk_regmap_div_ops +EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0x0f6fafae bL_cpufreq_unregister +EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0x20c3008c bL_cpufreq_register +EXPORT_SYMBOL_GPL drivers/dax/dax 0x10c352fc alloc_dax_region +EXPORT_SYMBOL_GPL drivers/dax/dax 0x17bce14a devm_create_dax_dev +EXPORT_SYMBOL_GPL drivers/dax/dax 0x85fc80e9 dax_region_put +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x952ff832 dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa3ed14af dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xbfa4a5f4 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc30b97b5 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xfd549bb3 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x5290bbb3 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x9db6a88d hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1c37ae33 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x23e50535 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x27f7daaf edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3f90424e edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x43cacf8c edac_stop_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4b9d1acb edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4f1acd72 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6c6b8142 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x70cb779b edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x72711572 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8477fcb0 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x88fa2cc5 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8af6b4d9 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x98a748f7 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x98d0af1e edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x99cbc11d edac_mod_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa1873ea7 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xba467585 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbf97afde edac_queue_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd28866fe edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd8121862 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe5da7832 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe840b397 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf3932f87 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf8209c36 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf8ad2fd0 edac_mc_free +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x9bd94b27 get_scpi_ops +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x25b6bf90 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6d4637c2 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xab1c5d91 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc686c029 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc7947764 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe1f43a95 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x3ae20603 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xfa226259 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x1e3ff2a5 analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x2715274d analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xa4941d2d analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xc133e93c analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw-hdmi 0x8f0318c1 dw_hdmi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw-hdmi 0xce27012a dw_hdmi_audio_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw-hdmi 0xd8fe547b dw_hdmi_audio_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw-hdmi 0xe121f64b dw_hdmi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0deb3a4d drm_gem_cma_prime_vunmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x13ddb5a0 drm_gem_cma_prime_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x145ab2aa drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x23847531 drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x26292f2c drm_gem_cma_describe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3324c3e7 drm_gem_cma_prime_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x33ba719a drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x33d6107c drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6614c7fc drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x68614f89 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x86a21ec6 drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaff36a0e drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb7632f8c drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc808ec8a drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc9c645e2 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcd5a4277 drm_gem_cma_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdadf2e2c drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xee53b999 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf7a16caa drm_gem_cma_prime_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfd0334f3 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0a47a9e3 drm_fb_cma_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0ce622ae drm_fb_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1148b623 drm_fbdev_cma_fini +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1b4be211 drm_fb_cma_debugfs_show +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x67ae368b drm_fbdev_cma_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa17c92bb drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb2c912af drm_fbdev_cma_hotplug_event +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcc337fd5 drm_fbdev_cma_restore_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd2fb93e5 drm_fbdev_cma_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x1cfe024a imx_drm_crtc_vblank_get +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x419b08de imx_drm_handle_vblank +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x59bcab09 imx_drm_encoder_destroy +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x5f056ff0 imx_drm_crtc_vblank_put +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x9b5468d8 imx_drm_connector_destroy +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xc9ddf157 imx_drm_crtc_id +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xd652b5a4 imx_drm_remove_crtc +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xe755819e imx_drm_encoder_parse_of +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xf20bdb7f imx_drm_add_crtc +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x00b27bb7 vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x4ef33d0d ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x8a1f97da ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xdbbc7e16 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x04f7075a ipu_csi_set_mipi_datatype +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0728116a ipu_csi_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0d4cb0aa ipu_cpmem_set_block_mode +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 0x11d8f100 ipu_stride_to_bytes +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x12fef87d ipu_cpmem_set_image +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 0x14b5e8e7 ipu_idmac_set_double_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x15ec2ba5 ipu_di_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x168f0495 ipu_idmac_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x199bd5c8 ipu_dp_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1ba497eb ipu_pixelformat_to_colorspace +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1c769a34 ipu_cpmem_set_burstsize +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 0x21a692a9 ipu_cpmem_set_axi_id +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2213034a ipu_idmac_clear_buffer +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 0x27848c78 ipu_dc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x29d21f19 ipu_cpmem_set_yuv_planar_full +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2abad089 ipu_idmac_select_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2b7f0741 ipu_cpmem_set_high_priority +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 0x2f9751b4 ipu_degrees_to_rot_mode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x30b6999c ipu_rot_mode_to_degrees +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 0x31c02367 ipu_idmac_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x33c1ed7c ipu_dc_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x35aa7886 ipu_cpmem_set_stride +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x388d26e7 ipu_module_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3afbb44e ipu_smfc_set_watermark +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3d07e73d ipu_cpmem_set_fmt +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 0x4917f47a ipu_ic_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4c179b49 ipu_dp_put +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 0x56fe5780 ipu_cpmem_set_yuv_planar +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5738c8b7 ipu_dp_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5a19465a ipu_idmac_buffer_is_ready +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5ce82929 ipu_cpmem_set_format_passthrough +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5d340d14 ipu_cpmem_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5de8c1a8 ipu_dp_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 0x69df32b7 ipu_cpmem_set_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6ab2a151 ipu_idmac_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6b4875ac ipu_cpmem_set_yuv_interleaved +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6d917ad8 ipu_cpmem_set_format_rgb +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7068e939 ipu_dc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7121bd07 ipu_di_init_sync_panel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x724c198a ipu_csi_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x73400512 ipu_dc_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x754d316d ipu_dmfc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x76302d14 ipu_csi_set_skip_smfc +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x84a813fc ipu_smfc_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 0x899c1131 ipu_srm_dp_sync_update +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9058e289 ipu_smfc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9227f04a ipu_di_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x951a09d5 ipu_csi_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x99a0ef07 ipu_drm_fourcc_to_colorspace +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9b303ea6 ipu_ic_task_idma_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9c335d85 ipu_pixelformat_is_planar +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9c530a9e ipu_idmac_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9d7368a5 ipu_idmac_channel_busy +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 0xa13f9570 ipu_module_disable +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 0xa579616b ipu_di_adjust_videomode +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 0xa95c75bf ipu_cpmem_set_rotation +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa96882d8 ipu_ic_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xaf6439df ipu_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb228bf1e ipu_dp_set_global_alpha +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb7afb4cb ipu_cpmem_interlaced_scan +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbeb83444 ipu_map_irq +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc0102a22 ipu_cpmem_set_resolution +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc13a279e ipu_dp_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 0xc4af2e81 ipu_dmfc_config_wait4eot +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc5a4c9da ipu_wait_interrupt +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc5e9e4c5 ipu_ic_get +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 0xc88d89a1 ipu_mbus_code_to_colorspace +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc97e7a0f ipu_di_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcc8241c7 ipu_cpmem_zero +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcd7c6998 ipu_ic_task_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcfc7cea9 ipu_set_csi_src_mux +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd064a453 ipu_ic_task_graphics_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd281cda7 ipu_idmac_lock_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe237f0ac ipu_idmac_wait_busy +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe300a959 ipu_dp_setup_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe3b86336 ipu_csi_init_interface +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe41401e8 ipu_set_ic_src_mux +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe536a9f3 ipu_idmac_enable_watermark +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 0xf1440dc1 ipu_ic_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf491d8c0 ipu_idmac_get_current_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf69d6cb6 ipu_csi_set_test_generator +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf7d99d69 ipu_dc_init_sync +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf9ed222e ipu_dp_set_window_pos +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfdf876d2 ipu_idmac_channel_irq +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0364007a hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0626eaa0 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x18dc294b hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1c63348a hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1d7432e4 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x285ee9b5 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x31d91a36 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3fcd45f4 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x41702efe hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5393042c hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x56bb0687 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x58f2e87f hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x59b8674e hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5d2b5e69 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x665b4c3a hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x66ee3e9c hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x69fb24d2 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x75cdbc23 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x77ecbd7d hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x79faf423 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x86c9d866 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x87494eda hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8cef5e82 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9ae90e8f hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9d8fa0ae hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa1dc02ed __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa80f89b7 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa916f099 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbd96ab84 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc3a86a9e hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc87b9d71 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc9d4edb0 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe7549333 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xef67c7ed hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf564a655 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf794b5e6 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8fdf7d1e roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x277c7ee3 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5195f6c0 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x799f09e5 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x9eebd554 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xae369f17 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd8613bd4 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1b358423 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4e8201d9 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x565146ee sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa32c0b9b sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd0bf888c hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd25222df sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xdf8d00cd sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe6b4714a sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf4c8ce9a sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xcd78c72e hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0437c645 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x20066a3b hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x23b9601f hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x24d0d7de hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2d51a6bb hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x34e13ec5 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5faed4d0 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x73d0d82f hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x87066e43 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa7693a93 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb3a76ed2 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb796fa91 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc63a5320 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcf4d7d5b hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcfeebdfd hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdaadca8f hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe4d891d7 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xed319b9f hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x88a5cf41 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xc56eef08 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xe61098e5 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x077e09a5 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2aa46b34 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2e023e76 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x48556492 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x84d01547 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8c2184ab pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8cc670bd pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x979e339b pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb7ffc93f pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd0d029f3 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd3e302f7 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd8d49ab5 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe699cc0c pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xed1bb268 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xed352a32 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x124c440b hwspin_lock_request_specific +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x1bc80434 hwspin_lock_get_id +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x32a09af1 hwspin_lock_register +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x5146a79e hwspin_lock_unregister +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x57cd5d2b __hwspin_trylock +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x9e757ad5 __hwspin_unlock +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x9eaa7c30 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xd73249b2 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xef82755e hwspin_lock_request +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xfabcd577 hwspin_lock_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x43590589 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x44cf4d0b intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x46dfcb26 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x52216e72 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x746ff126 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe1c1a08d intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xfccad987 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x04a1bd38 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2d540412 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x32a148b3 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x77ff6844 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb998bead stm_source_register_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x124d5793 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x769c6eaa i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xa1e87232 i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xc3d7032a i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xf627b7e9 i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x287c0c93 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x4327685e i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xe3ae8613 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xf60770f8 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x64393873 i2c_setup_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x697a21e5 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xc4a6a13f i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xd6c3d588 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x108244c1 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x6f0e35a8 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xae6b81ab bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xf00f5f63 bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x5c20b991 mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x6bf31f22 mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xcfeca6f8 mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x05ea5140 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3fd49bf3 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x46b63dce ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8154967b ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x857142a6 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x932edcc1 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9b809d2a ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb7b4a9d1 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc57a09f4 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x12346de7 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 0x9e196419 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x15f10fec ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x533097b5 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x36ef425c bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x748a0b79 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x91efaae6 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x158a27f1 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x293f1415 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x31a36532 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x484679c9 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5e068aa1 adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x871f2cc5 adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9b34e1d0 adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc104708b adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xcd4946be adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xed2e57ff adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf80b6f8d adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xfd6b0f61 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x16dc98b5 bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xf0bffbac bmi160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x11e5a704 inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x21cd3636 inv_mpu6050_set_power_itg +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x453b21bd inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xdde32265 inv_mpu_core_remove +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0213b071 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x07635ea6 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0de79ae9 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0edaba4d iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x137cdcdf iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20ce344a iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x266cc6c9 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26760e36 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x33665886 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3494bdc5 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x372d6eed iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x52407fc3 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x561e1482 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5c375ee8 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6547a257 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x65bc7b63 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7427a894 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7a9bd31b devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x83e7830c devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8ab0f9b7 iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8b72df29 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8f0a725a devm_iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x90b219fa devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x932a4d06 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9881d37f iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x98fdd8cf iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9c3aed9c iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa1d76615 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa861da27 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa966ef64 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xad447738 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb43f7156 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xced8cd40 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcfe56999 devm_iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd3b3991f iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd3f7a780 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdd0966f2 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe97d57c1 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xffd87b04 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0xc6f9fc28 mpl115_probe +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/sw/rxe/rdma_rxe 0xdae90394 rxe_dev_put +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x651531fd input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xe2fbabbc matrix_keypad_parse_of_params +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/misc/adxl34x 0xfc0fcd5b adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x06f51c22 rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x13302e5e rmi_get_register_desc_item +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1732ecec rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x21e7edf3 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x27f199ee rmi_register_desc_calc_size +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5d36b9ec rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x65f4bcb0 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6ad78ef5 rmi_read_register_desc +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7059825a rmi_register_desc_calc_reg_offset +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x81833982 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8ab05a93 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x98e6ff8e rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa7610e6f rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xda1a71c2 rmi_process_interrupt_requests +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xded00e02 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe31fb9b9 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe71700cf rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xee373777 rmi_2d_sensor_set_input_params +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xfaf6a555 rmi_read_pdt_entry +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x6e6c6a20 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x745602a7 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xe9e49658 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x46d6ce06 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xe6c5f7cb cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x6dfe6f3b cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xfeb9e339 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x859f679c tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x9f24cdfd tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xb1c05063 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd78428db tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4a9fc06a wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5acdce1e wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x67669b1b wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7ad88641 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x85777830 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa441d963 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb67286df wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc952f26b wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe3380095 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe96bf7e2 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xff2f562c wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xffb8ad42 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x35041851 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x413de0cc ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6420ef30 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x781b4dd7 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbeca7864 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc710a255 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe39569b1 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf2aff793 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf5a79c0f ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0bd438e1 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x22d99965 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x38b0a831 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4742c545 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4a165b85 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4c6b6e74 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x52f40405 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x673d9a90 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x94085855 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9bae1be0 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xac982561 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc3eedd6b gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xcb78d526 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd64d40fb gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xef870030 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf5d8a7bb gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xfe975a85 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x0ff32206 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x347e8052 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x586b5804 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x8f3c0ed6 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x92d5448e led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc7a7945b led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x00c9ab1f lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4fd7ded1 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x54021757 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x83c0c9bc lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8e7e8cf3 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9876a736 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa5be1401 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa89f1dc7 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcdb68277 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd7a6ca36 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf3800f1b lp55xx_is_extclk_used +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/mcb/mcb 0x001494a9 mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x07efd9ee mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x169651d5 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2d6ae3f0 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x434eda43 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4b87d341 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x58467d12 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8fa2ebf9 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa4b23a57 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xbc35e1a3 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc217e5dd mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc8e0e2ce mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xdd007e22 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xed7b4fe3 mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x00af95a1 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06d94b0a __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x157aa73e __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19a50641 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19acd14e __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1e382318 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x24935482 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x28991160 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x29ef0066 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2cd1be34 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3ae1afd1 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4f0216b8 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x56bd5947 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cb0a24a __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x65835607 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x68b2f180 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7baca7fe __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x95286aa1 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9cedcd57 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa60fcee9 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xafae4e81 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb4b03b2e __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7500cb5 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc1fd1dbc __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd4cd3c1a __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe278bd6d __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe68d70a9 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee926d8f __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf30b9aa6 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf438022f __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfbd03183 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0c8fd7b2 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0df6f69b dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x143bd3cf dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2423977f dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x39be4a47 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4ddec76d 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 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa5ce5495 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb1cd2717 dm_cell_promote_or_release +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 0xd9ae9a5c dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3909d3a8 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +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 0x9b2b253a dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xac7d8e0b dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new +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-cache 0x094cca2b dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x1e67e52b dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x3c8345a7 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x85573093 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xde1cf1d1 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe096d385 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf3bad560 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x17e467cb dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x1c84fc6d 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 0x09472122 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x2d45c3d2 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x33fb03bf dm_region_hash_create +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 0x64455b6d dm_rh_dirty_log +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 0x8c5e5a0a dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x98bfd48e 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 0xa8813ad6 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd0ccba8c dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key +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 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x150c85ce dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum +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 0x32b5f546 dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x33c03da6 dm_sm_disk_open +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 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x619701dc dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk +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 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit +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 0x832bf228 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify +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 0x966a8838 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock +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 0xa2507774 dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbcfdc290 dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbe0497aa dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xead1e727 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xfacc2a32 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0x00096a0f cec_set_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0x4961a844 cec_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0xbff6533d cec_phys_addr_validate +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0xd2f2eac1 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5df8fe08 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x627def74 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7544b92d saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x77f741ff saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x804ae106 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8163b109 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xacf3b9d0 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xce892b3c saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf14d9c40 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf9963d2b saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x03f2cd23 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x27ad3a28 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x74d5b424 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xbf669288 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xc8208cd0 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xef43b849 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf3e7018d saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x147b7b08 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x25dab952 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x271bd97e smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x42b36a36 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5cab24c3 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5d34aabd sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x705002bb smscore_onresponse +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 0x92fe98b8 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x941b1e9e sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9438e1b7 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa5627ce0 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xad724432 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbd23c552 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcc06d68b sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcc63156e smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe959c023 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf50dad93 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x0756995d tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x0b63430e tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x1c236f52 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x395504e9 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4cf9e178 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x5c15f12d tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6da054cc tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7527c0ad tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x89685ab4 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x8deb2d91 tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x9e9e5267 tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xbbf641fb tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe01d21d2 tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf26d0c08 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x88eddf11 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x38b1f147 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x1d397c20 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x0e1eded0 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x0f6fd552 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/media 0x10fbd73f media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x167f2252 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x1691737c __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/media 0x1cb6a3d3 __media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x1da590cd media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x2ffbdad5 media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x3886cafe __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/media 0x38ec89e9 media_device_get_devres +EXPORT_SYMBOL_GPL drivers/media/media 0x41b66d87 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/media 0x44fa681d media_entity_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/media 0x4b48aa86 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x5b3db5b2 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/media 0x7242f508 media_entity_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x733ecc7d media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x738f40b3 media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0x76464e2a __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0x78b49558 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x796d22fc media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/media 0x7acf6fd9 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0x8399a0b9 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x88695f12 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x9461395e media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x9e46e9f1 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/media 0xa0d427c3 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/media 0xb8622550 media_device_find_devres +EXPORT_SYMBOL_GPL drivers/media/media 0xbeaf92c8 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/media 0xc0f5da3f media_device_init +EXPORT_SYMBOL_GPL drivers/media/media 0xc265fb15 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xc37ad21c media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0xc6e131b9 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/media 0xdc581289 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/media 0xe04101ec __media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xe68b838e __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0xeb8ffbc9 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/media 0xebdbe0dd media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0xed5fd58d media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0xf08e3a19 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xa64cf9a9 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x14079df5 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x18d83a5c mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2bb27125 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x42c7eec3 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4622aae0 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x47c27168 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x483f33d9 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4851e36a mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x49596457 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6aaa4812 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7d32be36 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x91844d07 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x94fa8555 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xab4f6985 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc2603185 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc7bee2e9 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc9a47cf7 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf8acea02 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfe22b65e mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0b0f3623 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x54f68f74 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x59a9d223 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x59c78978 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5fd0b67e saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x62fec701 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6ad144d6 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7407b137 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7b5abab8 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x897838d5 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x90f63982 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x972a39eb saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9813761b saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9bf4bb69 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb4135bac saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd4e8d123 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf124b4fd saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf6a1b56a saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf9123d19 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x09c9e16b ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x2010ce42 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x27ab7785 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4bc9c407 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6154807f 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 0xb9a50014 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xdd506849 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x1cf17775 vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x33737fd8 vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x54399955 vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x6f708d96 vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x8f4b932d vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xd6d8e119 vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xeb3fce16 vpu_wdt_reg_handler +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 0x2be81506 vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x3b4f25a2 vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x9b31e34f vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xa50c4eb4 vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xf01b4dec vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x15ebf76e xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x2b9f5772 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x6b80df55 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x93f6f2c2 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa6f82b15 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xcee0888f xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xf2481679 xvip_clr_or_set +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 0xf9cd5cb5 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x4e615ba9 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xfbcd9410 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x154e5b08 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2dea2eb6 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2f2efd47 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x302f4dc1 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x30514d0b rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5b8375d9 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x67123aa5 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7563d272 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x94c5ee23 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x95ddf3bb rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x969332c2 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb636cd44 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc005dbac rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc247e06e rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdfdfa54d ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe3ae406d rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe45a1ebe ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf6803e71 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf9605bec rc_register_device +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x7fa8d586 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x0aa6f2cb microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x5fe217d5 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xa31e1c6d r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xc76afb35 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x50254f39 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x04e4b8fc tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xea736f2d tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x2164060f tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x40379bf8 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x8d28937f tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xdd46e0d4 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xff51cbf2 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xb39451d5 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x03efe598 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0d7b83bd cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1f97efc2 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x207c0bc4 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x28f35b6b cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x32e17b5d cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4ddd55a3 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4e9fe95a cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x553271d4 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5ee19507 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x69a48be4 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x71190f8f cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7d3750a7 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa25fd6a3 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa4edc239 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaadeb09f cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb70ec3e2 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb8f7f9ea cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdd7c0a33 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe64fc7b1 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x0bd49052 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x273eb228 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x170b0a8e em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x36f74d9e em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x435c4c53 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x520d909c em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5535fdd8 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6077c1a2 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6b53b4b2 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x807f59a1 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x829d9a49 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa2a07182 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa2aeb1f4 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb6a3b22b em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcfadc639 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xda70b0a0 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdf3194c2 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe621e5fd em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe7a23f40 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf3aba916 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfeb6ad9e em28xx_stop_urbs +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 0xbb941dbd tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xc0f617fa tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xf1a68177 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xf5af27a4 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x0c074435 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x1336a97e v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x4c7c501c v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xb9ef1a64 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xcbb1db4b v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xfc0cf005 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x363ad524 v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x41044ad1 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x6f5a9c13 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x02c5d705 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0ae96bf8 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0f3dc1d9 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1b28991e v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2050cd1a v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x28172db3 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x32d423a5 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3b37407b v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x447e65e5 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x610e054c v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x734989a5 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x742108f2 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7e9e9a1a v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x80c74e4a v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x84fe43b0 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x885ac2e2 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8fec5993 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9abe14ab v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa3c71bf1 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa632a53b v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb3598132 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd0cac29c v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd46756fe v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xed9dbb52 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf07282d7 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf587ea53 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfcdc0301 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0d120f29 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0e106f93 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1a564c30 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x20df1ecc videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x236af9c8 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2ab09ad1 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4106d02b videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x42f947cf videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4bd3a3bb videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6ab70191 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6b3e5d80 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x727a39eb videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8fb834d7 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x930e0985 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x991ea0d7 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9ce49ea8 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9efe2c85 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa42c0c86 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xab0fc34d videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb190c5b2 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xca51b01a videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcad4b4fe videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcee955b2 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xeaa9c4cc videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x30c2a874 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x6adbc287 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x8b6e5421 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xdcc2513d videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x2e2df67d videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x564d9763 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x5b258a9d videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x002c74e5 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0173537e vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x034e3597 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0c3a595f vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x119870fa vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x129bca82 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x16363cb4 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2b6ac2b8 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3520dc1a vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3b742fcf vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x540a9f67 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5f480b13 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x79863f54 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x925215bc vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa9808d3d vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb30cfbb3 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb351be50 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc48f5882 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xcb22590d vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xcc5b4b84 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd2ba818c vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe42ec511 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe76ab492 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x4b8e184f vb2_dma_contig_clear_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x4ea0f3fa vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xc6093f6b vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x6aea24de vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0xc07c629c vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x03dec75b vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x09a7a9b5 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1c6055de vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x23b29429 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2b984b27 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2eeba4ad vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x423c4554 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x53afe326 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5cb495fa vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x663faf69 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x69d32c2e vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x75700ed9 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x78bbf8af vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x80bb8aef vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x89916ddd _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x90eb06b2 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x97b9fde0 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc13a4a0f vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcb990d7d vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd22a9475 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdf3ad195 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe7cbdb13 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe92a44b8 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xee256615 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf245030a vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf4e0119d vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf84a1ab8 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfb265782 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x18dc6fca vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0aa6af5e __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x16f67eef __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x178a4812 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1829001a v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x211b7060 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x25a0b77f __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x295cbc38 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2d3693db v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x33db6fcb v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x38978438 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3e437f6b v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4332fadb v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x44b1197b v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x49d52d67 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50d65b11 v4l2_subdev_free_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5a65abf9 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5c037a94 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5d9a50a8 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5ee70d7c v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x61817752 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6213f9a0 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e5e8e5d v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7279d76a v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x78b1eb56 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a511634 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7eeeee2e __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8b8b174a v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98a3f4e4 v4l2_pipeline_pm_use +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa14cb507 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1cefd12 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaf85b6ef v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb6c0f8bc v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb99fb6bd v4l2_subdev_alloc_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbf28ed7d v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc65d403b v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcad0324d v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd8192224 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xda169e6b v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe471ecd1 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe6a2652c v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe8770199 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf20caba0 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf3b1b925 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfacf3df3 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x18d5168e pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x35add0b8 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xdb4e71b0 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x41d65a04 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4b0cad10 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x830112a5 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x9087956e da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa6b0ab15 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa781436a da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xeb90ba5b da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0600c803 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4be0ecc6 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x64cadeb2 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x71adb3c3 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x89209a33 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9f460342 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb0418ee8 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd28d693e kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x02cd721c lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x47188d88 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xfbb991a8 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x04d0bcfe lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2a68e94d lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x60e103af lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x67061617 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x6f4edbce lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xac16b741 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf65e60c1 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x61acb155 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x9b8493e6 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xc0de4414 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x051b6203 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2bfc1a57 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5f0a855a mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa8f6ce83 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe84c85a3 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xfa4370cb mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x096bfd3c pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x142332e3 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5aa5e1b6 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x65a3e700 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6c7cc593 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x90469dfb pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x96e260e7 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9da5b890 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xac6be12c pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdc7c55b8 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfd17ae8f pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x75151a8d pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x7d4fca54 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x0e6ca978 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x5ef06fa5 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x93497183 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xda3c192a pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xfa086591 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x00b4e656 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x02233da7 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x02e7774e rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x03899d32 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x08445e91 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x12e5ed90 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x15063f5f rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x195e6ff5 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x29188555 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2ae4f3a1 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3221595b rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x37990630 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x39a3a9e2 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x528f7a04 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x60aee848 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9946759d rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa5a376df rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xac88f517 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xaef3a4bc rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb0970b8b rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb88ad334 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc1c8f634 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd92ae642 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xdbcc4bc4 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0004a12d rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1dcd09ed rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2e4bfa76 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2faa1c55 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4f76d2f0 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x52aeeeeb rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x55eee612 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x625c7f4a rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x792a60d2 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x80af943d rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb0bfdd64 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb9ec4047 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe3243a59 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x03aa8bee si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0bf323c9 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0eb4e968 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1aebf58c si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2343b50a si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x27337a0a si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2b4bec26 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x40690bda si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x437e205b si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4474b6d8 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5809a8b7 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6aaec247 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6cb08448 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x742e90c1 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7800ba4b si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7f29f4cc si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8fc30a53 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x90d62b67 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x935bdff0 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaa0013a8 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaab8ed7e si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb6fc38e9 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb8986c64 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xba024596 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbbd05dc8 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbff91878 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc8190692 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xca326099 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdef85661 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe1e5276e si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe637f65b si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeb84b98a si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf863631e si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfd4b3e79 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x21b97852 ssbi_write +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x2a4567eb ssbi_read +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x6aa256ed am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x6f349025 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x76336375 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xebe55347 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x863babe1 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xa8b5d1b4 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xafebb037 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xc2fc82b1 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xe5ffce41 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x34048756 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x6b4dfc94 bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x9350af3c bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xb243f7ef bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x196b2809 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x27769ffb cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x33c95455 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xfa045b22 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x08a4215b enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x09c55b09 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x97855990 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa6ae89f2 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc49539b9 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xca88ca4e enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe95a752d enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfda5202c enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0a9c9316 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0bf3a3a2 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x129c6e4c lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x144b8071 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1f4980c0 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x742b28d7 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9546f5a6 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb6effd9c lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x090615c3 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xbf97dc83 st_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x1281d48b dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x3edd2e07 dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xe705fbd3 dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x0c7ccfd9 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x3355ea31 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xf162ea4f cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x03490c64 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x7d1b47b4 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xf0b0c3e2 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x822f3baa cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x21864a0c cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x423133d9 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x7f9dfab1 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/maps/physmap_of_versatile 0x5409b8f8 of_flash_probe_versatile +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x126afee8 brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0xa2126276 brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0xad51b66d brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x72694e45 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x0b44960c onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x5a90f3bc onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x5f0638f1 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2a2c6ba3 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x35d9d472 ubi_leb_read +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 0x4541c121 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5ad9293d ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5e1eeb4d ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5fb708d6 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8294f54f ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x94075dc2 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x968fe5b9 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xae9941a7 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd11f29d3 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe2ff161c ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfc1beb20 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfd2c6593 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x8d1f3dfc devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x90797450 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5c1e24ab alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x70abe581 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa2ef6ded free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbbd2d7f9 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd1e53506 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd2c08283 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x014a3c95 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0a371d5a can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0a68d8f2 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0e04bc41 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x39646816 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3ed330d5 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4ae6ffeb devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6f47286e unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7b9a6178 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9285ffe3 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x92a4da03 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xceaa02e3 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd72d1ae5 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd9355a8a can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdb372b85 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe0f6b5af close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe4821964 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfa93c60c can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x46a42610 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa8db2fa5 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xb1067587 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xd1942a2e unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x146e816c unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49af2de4 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x5c1d410a register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x907faa3b free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x8d2e106c arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x99219c73 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/mvneta 0x6bbbe2b3 mvneta_frag_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/mvneta 0x96a6ea0b mvneta_frag_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02091ddd mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02d66915 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05754082 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x064d9e18 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08a9a3ec mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08f9441b mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09e393d3 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0bb42e16 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e11a078 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10c7dc54 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1205c493 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13e735af mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14351d9a mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17e6a241 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18e09563 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e3a3df1 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x250c3183 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x251204ff mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x269f1862 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26cf06d2 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2863563d mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29163fda mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b2b9cac mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b503c6d mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c047ab6 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ea4b37b mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fc01041 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32e2a5da mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33be44d0 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x358ddfb9 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a32c176 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3afd4f8b mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c6ed008 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41e9c1e6 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x426e19c9 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4326f839 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43e0d430 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x450f6413 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4942d30e mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50b34183 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51ff773b mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53c80f0a mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54da5759 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5545cd39 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55aedcab mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56631162 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57461952 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x577cd898 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58da30ee mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58f7bfe5 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58fda019 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b56da39 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c950414 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e65315b mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x600eacbd mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x605c4835 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62cd9e4b mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65380477 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68ea934a mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6acb95f0 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b5b0f1b mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6be17645 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ddc2a9a mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6eaff22a mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70a885bf mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x779d7270 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79e5419b mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79ea0d64 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ab24901 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e0b07f2 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81a170a6 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b45145c mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b681c2f mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ba4a5ff mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9724bec1 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99d6ec86 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a46a40a mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bd8a97a mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ce4bea4 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0da38aa mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa269d209 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3a75b8c mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa933910e mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa8cc2aa mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac3334d2 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae07f93e mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0370777 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb41f3712 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb47647af mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5a78340 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdbff27a mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbece96ca mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc25cf9c9 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2bb78de mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc48a8a86 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc55c880a mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc632c196 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6bc2ab1 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8719754 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9efb5bf mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb640a3d mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbda3366 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdf853d7 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd156ba25 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5add4cc mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5ea08cc mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd946a4b6 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdebe1fc7 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdeeea70e mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3c9e4c5 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5963363 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6e0a51f mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9043cbb mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9b9f9e1 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebd0d28c mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec434609 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec46daf4 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf403636c mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf46a21c0 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf595fe71 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6613bfb mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8a26cc3 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8bdc393 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9ef69a2 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa98ae31 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff7a515e mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06a1975b mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0757a004 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09895369 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f02020e mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fcf1df0 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13033a5c mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d7784a7 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e31e1d2 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x275d9116 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28ab19d9 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c2e5aae mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d15664a mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ed3f91c mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31ba638f mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x390ce595 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b36138b mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e30fc37 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46ef7fc2 mlx5_core_alloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4902c1a5 mlx5_core_dealloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bffa938 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d4bf65e mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54885dd0 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57247d38 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x588ee827 mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58e383bf mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x634286da mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65a7cb11 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69fad2fe mlx5_nic_vport_disable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a765c3e mlx5_query_port_autoneg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73e31c6a mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7578b186 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76ebda68 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b9e1157 mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d292e1e mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e7a8239 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82453ff0 mlx5_set_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x860ffde4 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c8115da mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8cb7af94 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8fa274e9 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92a20f15 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94b02e70 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97578776 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a4cd058 mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9db67ba6 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ecefe61 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3f20d7d mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa9fda6c mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae1eb02a mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf3715e6 mlx5_query_vport_admin_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb611bfa6 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbadc118a mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd8a1623 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1ed045c mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2ead891 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc417d93b mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7f1ce63 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb1a4eb6 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce46ba70 mlx5_core_query_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcedc55ba mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfda10ab mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1b80494 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd676b4ef mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb8eb085 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd484760 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5625022 mlx5_modify_vport_admin_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9f50bdb mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec6ff75b mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed073f8d mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6d11a5b mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7dc02a4 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf80b51bf mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb9a9b1d mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe2ff490 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x51b7caac devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd4ab3625 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x4ffe7cb8 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x58de95bf stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x699ef75e stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x6fb55078 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x2e0b0091 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x413c1d76 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x9b4cd07a stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc213ca77 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x2e38f14c w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x463bce4c w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xae643c61 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xdd09bd16 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/geneve 0x0019af68 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x011bf03e macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x96ab6b15 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd97c77e6 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe2863ff2 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x56650c7f macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0ee6494b bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x16543dd0 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2f5e6c2c bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4254a0fa bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5313a30b bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x71f94f99 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8b40759d bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa2b520a3 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb65ecf60 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbe1687c8 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x82f62222 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x54b66148 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x59f2fd9f usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7c894cd6 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb9311333 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2c7a5319 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3076dc29 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6ffbdf51 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa577c335 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd144d9ce cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd2992374 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd7b3f159 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xdbdbc5b1 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfddc7a5a cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x140d48e2 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x27ccbe46 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x56340b16 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x57d2912f rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xcf1c4904 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xea780312 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x057e558d usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x05eef286 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1001a811 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x111bb680 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x114c6b4e usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2194169c usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x322dfc53 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x350de351 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4c8a527f usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x505d5402 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x53308f0b usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6268b808 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6420dbfd usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7305c6e4 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x844a6c8e usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9e47bd5c usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb2530f1b usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb3243f91 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb6e16482 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc61bc50b usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc6a527d3 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc6fe81cf usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcac278b8 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcddd9718 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcfd888ad usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe31a786b usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe915277d usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe933eba2 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xea849715 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xee32f351 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf5297c57 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xff499e8c usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xedeb40f1 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x012de8b3 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0848e14e i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x22482631 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3813a1ba i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3af03b46 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3c022aa6 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x560bbe73 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x64baf20d i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x68a533d4 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x71526f1d i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x84ce7725 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8e51cc83 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcb83673e i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd6f476b5 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfd55fb01 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xff70eff3 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x1e8d9056 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5110bab5 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b596d8c il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x732afc04 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa98d1474 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe00839d9 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x06ac2ecd iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x16474139 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x194202ee iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x25ad431c iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x31a1ba19 iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x359dce5e iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x41e083e1 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x47c2e48e iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x49b542fb iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4addf970 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4b24316f __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4b7925cc iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x51109113 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x56fe1ef6 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5a10d898 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x60f0ef0e iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x631b21f6 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x66382335 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6be5046d iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x768fc4dc __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x80ece0f8 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x892f2498 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8ab14d93 iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8c6fa926 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8cab59d8 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8db34cdc iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x923b3ba9 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x94438ffe __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x95965ded iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9a12e03e iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9bf16097 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9c77eed0 iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa5ccf7e8 iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb55ab078 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb69a3c58 iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc6a3f167 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcc4dc985 iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdc56381c iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xec038f74 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xeeeace31 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf3d79552 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x21f5236a p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x32896e0a p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7b6ba5cc p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x8829c7f4 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb30ce192 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc3ec1ce6 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe17737b4 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe1878afb p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xff6d1daf p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x14de6539 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x212de884 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x238d9fd2 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2de05780 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x427a598d lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4e994bfc lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5bf2165a lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5ddcc076 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x661c624c lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8778cb84 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8ba3ceb5 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbfd311a8 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd504ecfe lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe1db2183 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe2b1eb11 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe54faf4c lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x00b2528a lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x06ed784b lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x0ca41d4d lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x14f59026 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x36a22fc3 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x45fbd7d5 __lbtf_cmd +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 0xf32cf6d4 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xfa7e32e8 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0d0ac009 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1ad6d9f5 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1d6943b7 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x21d5b8d6 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x26b6425d mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x383a7aed mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x45de3999 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4bed6794 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x741a7d68 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x88be71e6 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8f19c2ac mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x92e007d0 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb28d9e98 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcb5c0ff9 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcb8f3712 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe98f5d88 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf894b9e2 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfbc96235 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfebfae8c mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xffb70bf4 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x02d655dc rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x070bcab7 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x16973852 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1f7c6332 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x30716dd3 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x35b8f587 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x37ad786f rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3d66fcc1 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3f0973b6 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x40c12b0a rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x40e5143f rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x49ec6f1d rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4e172603 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x53363c1e rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5c1a4723 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6d97d294 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x76286c45 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x85921812 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8a744c8f rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8abdc771 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x955d670c rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9d4f1b58 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa32ad68f rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xad05bfaf rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaf12f9f7 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaf430aef rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb8003fa9 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb8f61002 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbaaa4f12 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xccc645c4 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd11d4792 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdb444c27 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe5f51d86 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe729b553 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xef80b72f rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf0deb8e0 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf72894a1 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf858032f rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2449af45 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x248f65ff rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2a38a7cd rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x429ada8e rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4c50b033 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5cb1ca5b rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x710cd844 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x98888911 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa1743bcc rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa464b8d5 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd319fe59 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf8d5d841 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfac91aba rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x01b31a8c rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x030f3446 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x05ec0e97 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x091a97e4 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x191d335d rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x19f6e6c0 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1f676022 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x207a31cc rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x25f6ff89 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2903aa13 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2aed3c15 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x33143a8d rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x416f9781 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x43ac7903 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4b2f8fd8 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4c8495f3 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4d423954 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x58cbc732 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x592f4b83 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5ef39415 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x60e13a54 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x690de6f6 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6a340743 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6a8cda9f rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x783deffa rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7c413fdd rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x835ceab1 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8761f69b rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x89ce2a63 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x97ab9892 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa2342697 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa2d58c1c rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb2a99393 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb402fc5b rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb6b094e9 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbde39202 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc37b2b42 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd658dc33 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd9d812c9 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdd4ad310 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xde125979 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xde6977cc rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe18403b6 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe618cf15 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe9d54572 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf5291ea7 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x0e4b0857 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x1ad01406 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x2d568171 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x73f77e56 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xc9a85efb rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x00e5bacd rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x649a305e rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x6add7ad4 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xd2ef3ccf rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x05f521b6 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1e08e0e0 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x203087a9 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2361a8ee rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x23e44e58 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x25beddd0 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6f33d0d8 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x81697472 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x860461a1 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8a415ad6 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x945619d8 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa06c056e rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa0b686ec rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa912c773 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd6544182 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe834b979 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x34bf180f dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5dc445d3 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6674ad18 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfbfb8992 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x06a06abd rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1d7abcac rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2420e0ac rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2890afd0 rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2fe132ef rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3041edcb rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x310b96a8 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3743ba29 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x37cecd21 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x42e6397e rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4561b568 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x50d3db9e rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6000d9b5 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x61fc7f68 rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6304415e rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x76f3bf2c rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x77c0c946 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7ace7d85 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8391d3a0 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8fb81fa2 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa1f19679 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb650d31f rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbb2fa163 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcb3eafeb rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdca99fde rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe7d92189 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xee17d06c rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x020b0afa rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x03c6ff34 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b06153b rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0e8c8359 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b04b6c3 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1c22c2f6 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1edb5084 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2223143d rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x273d5a7a rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d882d91 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x51aec038 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x53e99db5 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6a50acca rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c0bf374 rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9da4283f rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa31c93bd rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb0945197 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd1a1542c rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd7241405 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd8e1a46d read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe7532910 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x95c2ff23 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xaa556c52 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc537761a rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcdf9074a rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x0f85600b cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x291f34a9 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x48409cc7 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xbc44e011 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x4052d2b8 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x68b5c3c8 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xaf32fa14 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0083ec34 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x05e4ed3d wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0a096dba wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1117ac79 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x134dc806 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x178bfa86 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1c2bfe65 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x28bf3722 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x297fca08 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2fae6bd5 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x33c67984 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x37e07225 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3bfb7ae9 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3f934dbf wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3fc32987 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4439c704 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x48397262 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4be3d629 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4feac8a1 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x607ac750 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x62d98c01 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x63ee4eeb wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x64193b1c wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7547bbff wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7c7e8dc6 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x82e2acaf wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x847060b9 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8a5fe2a7 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x986a24ce wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa9430929 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaf01a2e4 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb4af24f9 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbff00445 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc0bd2058 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc27efc3a wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc734377f wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcf5d8a99 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd0159c29 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd592dbdc wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe87258be wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf04be541 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf24e70ca wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf8a99298 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf901c109 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfaec4f08 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x49455a96 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x61ae879e nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xa2aeb750 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xf0768364 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x1e1a860a pn533_unregister_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x3fbc7e40 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x41d07bc4 pn533_register_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x079848ce st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x13c42f07 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3b26d075 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4068ec81 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7a97cbee st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9248edce st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa8d335ac st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xdb22ae7a st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x31c08f2d st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xcf36ca82 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xf1e44d89 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x27ca11b9 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 0xc7b96118 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf53c7e18 ntb_transport_register_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/nvme/host/nvme-core 0x05fd6947 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0bbf3f03 nvme_start_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x20ce3929 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x327858b1 nvme_max_retries +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3f07442f nvme_requeue_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x403d5ece nvme_put_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5210142b nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x53821f4e nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x74b1268b nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x75d8327e nvme_queue_scan +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x80e91914 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8439adc4 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x86176e6d nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x89c1bff2 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e2b24ce nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x92df54ff nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9bd75318 nvme_queue_async_events +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa4fca817 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb9abdcef nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc89948c5 nvme_init_identify +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd0996e0f nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdc1d7731 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdd8e045e nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xde721024 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe9dc8e7e nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf313aaf5 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf958ab24 admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x11308616 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x22ef6cb2 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2e3544f4 nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2ea54e15 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5f9197ef nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x67120f09 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x87ad7e26 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8a0facca nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8c336f87 nvmf_get_subsysnqn +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xeb4c0f09 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x104bec7d nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x159d48ce nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5f77f143 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x72e248a9 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x88037121 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9ac5dd59 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xcaa5050b nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x15fdef56 devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x65837133 nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x68758fda nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x6f857261 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x797e845e devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x80d25a28 of_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8a38fb19 nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc755c1cf nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xd5031009 of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe18960ba nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0x25488195 omap_control_phy_power +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0x3ee0cb1d omap_control_usb_set_mode +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0xd3c74244 omap_control_pcie_pcs +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x240f90d4 ufs_qcom_phy_start_serdes +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x273f147b ufs_qcom_phy_save_controller_version +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x27bd0a2a ufs_qcom_phy_enable_dev_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x2b63cd53 ufs_qcom_phy_enable_iface_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x3fc5548a ufs_qcom_phy_disable_dev_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x40250707 ufs_qcom_phy_power_on +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x4b3c7fec get_ufs_qcom_phy +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x5148cbe4 ufs_qcom_phy_disable_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x6f25c1bf ufs_qcom_phy_power_off +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x70ea80cb ufs_qcom_phy_init_clks +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x71384f89 ufs_qcom_phy_disable_iface_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x8517b2d2 ufs_qcom_phy_exit +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x87203897 ufs_qcom_phy_set_tx_lane_enable +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x8d3066bb ufs_qcom_phy_init_vregulators +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xa4f0e306 ufs_qcom_phy_is_pcs_ready +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xa922eb93 ufs_qcom_phy_remove +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xae2e774d ufs_qcom_phy_calibrate_phy +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xb4ea2d3b ufs_qcom_phy_generic_probe +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xd2703b9c ufs_qcom_phy_enable_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xed12362f ufs_qcom_phy_calibrate +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0x583f34c0 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0xc7732561 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0xdd46593c bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x87ba3d73 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xd172868c pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xf01aee46 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xc3cb53c9 reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xf54c5bee reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x0e3bb571 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x1908e7b1 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x7101546b mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x78274725 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc62b1f10 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x151a3faf wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x33357e4f wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x37366812 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xab3757e9 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xbd51df86 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xbf193fee wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xd575d636 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_mdt_loader 0x67750a99 qcom_mdt_find_rsc_table +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_mdt_loader 0x6ca01d99 qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_mdt_loader 0xe37baf8f qcom_mdt_parse +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0813e707 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1628560d cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x19030522 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x20d660fd cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2182c615 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x266ce8a1 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2c745176 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3788fd52 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x421e9069 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x424e693a cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x53812584 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x57eecb17 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5bc705d3 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x66b82c90 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x69efa777 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6e2fb5fb cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8433033b cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x88427d9c cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x89f58d3d cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c6c3810 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8de853f9 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9bd15af4 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e853fb8 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa058a961 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa1c10101 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaebb1f0f cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb0e61c8a cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb318ea4c cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb38e59cd cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb3a09d16 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb7b3c53f cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb9ac937e cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbbde65bd cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc9205aec cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcb31a115 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcc30d86b cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcc4e04e4 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdad31f98 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe2ca8ce8 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe80d784b cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xebe53d39 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xedeb3f67 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf29c3883 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf804aa92 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf9bf9b11 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x05ddd4e9 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x121d44ea fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1459c42c __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1b9f5ebc fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x298581da fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2a3ef900 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3bae82db fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x40d17a12 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x61d0e476 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9328707c fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x94e5f8df fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9ccc0e61 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb7bc4f94 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc26b3bff fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd3226408 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe75b2e32 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x093452ec iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x15faac42 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x26c8a32a iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3208d216 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x793d0a07 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa4b9804c iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xca355033 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x136a0430 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x148811a5 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1bd23044 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2cc71767 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x331d26b0 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3867887b iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3b64a8f7 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3e161866 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x45fd1e9c iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4741c819 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5f9fae4b iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6f183f1f iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x70958e46 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x71690f6f iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7868189f iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8056eb88 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8294410b iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x84337f05 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x87bebeda __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d8cedb8 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x93515f09 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9679ac8c iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9c9a0a7a iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa2ba1145 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa5cf0cb1 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa969f3c7 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb0120126 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb738fce7 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb9120817 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbdd43b4b iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xda037ec4 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdb32a446 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdcadf8f1 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdfb32b01 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe5af90a1 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe5c8f2fb iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe9493296 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf3316023 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf681d39d iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf8f8116b iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfee5a2cd iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0f726b2b iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1844bb27 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2050b541 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x21218f3a iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x33b7fc79 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x36b7185a iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x39749ba2 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3d7581cd iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x806fd73f iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x91e34e7b iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9257915f iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbe4c120c iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc15132de iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc7ac284e iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc8b3b294 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcee5b680 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe4d43ccd iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x060f66f8 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0ae457bd sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0d22003a sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x17dcdd08 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2fdcbfc8 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x331979ac sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4a009a00 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4cbbb349 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4d20e24b sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x66ee5f65 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x68e64f52 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x84195c76 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x85f25bdb sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8ab221bf sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x99a35e8d sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb3817bed sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb79d8846 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xda491219 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdf591682 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe00be826 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xee399c08 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf08b05fd sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf0d70beb sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfc51fc5f sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0bf2cc32 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0dad05d8 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1a2c21d2 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1d314a87 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e246fa5 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x20234944 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x20ed1fba iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2343fef9 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2d247efe iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2ea2f1cd iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3115a1cc iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x399ca11e iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3acc45ca iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3b2b63ca iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3eeffd29 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f3b2292 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x46f93c37 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4adb0d43 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4f4b0e68 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5a2a89bd iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d85dd60 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x67529c54 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e491847 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8abec2bb iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8dac46be iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8f61ccac iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e3c9eeb iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8a4f4ec iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb09479ff iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbb47b421 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc084e7ae iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc4e7f98c iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcd7872aa iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd618c778 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xda8c599e iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe05cd516 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe9d55a0f iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xee99b535 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfff3d289 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x218edcb8 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x73083c68 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd424d3c8 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xdb604db9 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x79b8a26e 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 0x2f2512d4 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4d5872a6 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5f307eae srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xddba5e0e srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe3553e1d srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf57f6e0b srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x00f954a4 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x1fc583fe ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x1fe04000 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x54dc4718 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xeb053f65 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xeb9962e1 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xf53fde8a ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x05baa653 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x1ff6f1d1 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x4689fafa ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x482ccfaf ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x69b01fdf ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x8a55486f ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xdeaf30bb ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x5d6ac040 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x75a05215 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa8e3d8b0 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xb41a8746 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf99394b9 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x3ce73a33 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x8346fde1 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x99052ff2 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xef48fb8b dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x425293a2 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x606afff5 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x9a4ded4b spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x17277a9b spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x64ad5081 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x65234020 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x675c11dd spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x67e443ab spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6e91a2f7 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7ef2f3f1 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8d5a2f46 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x937d3ca9 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x94c834f7 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9ac70d1e spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xad594f5e spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xad8d4dd1 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb05e90c6 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbd87ad54 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbe64b197 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe756470f spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe7a46732 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x0026a69f ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0857c7af comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0dc7af68 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1ad24dd7 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1d3fe89f comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1db185da comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x31757fb6 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x31dc0635 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3331c315 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3602fe81 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3eac49dd comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x57288414 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5be7d7bd comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5d2aa612 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x65594489 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6d52abea comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6f1f6f65 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6f6b6206 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x73d6a068 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x76bd57dc comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x775c74a9 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7bdb63d2 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x84431efc comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x85e38057 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x873a2bf0 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8def4bb7 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8e3ed9e8 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x93e1f684 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xafb12b72 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb46677ef comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb4753bae comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb790b60b comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb9e2a45a comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc1284022 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdef23b11 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdf950007 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x2347bb04 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x44732c4a comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x4ac343c0 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x9402cfd5 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xaee62d5d comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xba74859e comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xbef2b2ee comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xd08eb35a comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x1078f264 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x24e066ee comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x5d297f80 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xbfdb3601 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xccda505c comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xf918997c comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x76a9f7a5 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x3ceee286 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xcb1790c1 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x76215c46 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0a7b8353 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x299b2e43 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x34af88c0 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x4df15a22 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x60b28dd2 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x88f5cda3 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x89305182 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa5c3671e comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb2094443 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb331adab comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb7608648 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xbce8ece7 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xeb36508b comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x64b5a473 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xbe36d45a subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xcc707dbc subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x74bfc889 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x07ff854f mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0b125f0d mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3107144c mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4b910594 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5560908d mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x685fe4ca mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x68cff9a4 mite_request_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7828f871 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8eeff6b7 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x979bcaa2 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9d31ed29 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcb0e392a mite_sync_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd8a548c1 mite_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe61dd858 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe6c59117 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf2269512 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x504c0cd0 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x64da65d5 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x055680c8 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x1e6cfb00 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2605528f ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x5ae0c8f3 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x5fd2b539 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x72c944f2 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x75fd7f21 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x8463d7cb ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x90ee21a9 ni_tio_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa6b6ccd3 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xbee3e56e ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xbfb52809 ni_tio_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x0a06d8dd ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x12fde8d8 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x17b86b95 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x47f6e33a ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb8db972d ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xbe1902a6 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x1a76dc7f comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x2975e088 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x7578b731 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x827adedc comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x97623b21 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xdde14a91 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xf20e9528 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0x26a67f64 ad7606_probe +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0x27e5597d ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0xac1e136b ad7606_remove +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x0068b368 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/lustre/lnet/libcfs/libcfs 0x52ecfb88 lustre_insert_debugfs +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x35da7566 ldebugfs_register +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x455a7399 ldebugfs_add_vars +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x64115ab9 ldebugfs_seq_create +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x792a5e54 ldebugfs_obd_seq_create +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x89a0378f ldebugfs_add_simple +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x9424fb61 lprocfs_obd_setup +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x9594b729 lustre_kobj +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xba362b42 ldebugfs_register_stats +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xbdb87db9 lustre_sysfs_ops +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xcad31f44 lprocfs_obd_cleanup +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xdc9c07e3 debugfs_lustre_root +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xe1abf896 ldebugfs_remove +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x26053fb2 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x31d4a449 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x51802974 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x65d07d92 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x770638f0 cec_transmit_done +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xbdb8e116 cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xd2e5dc18 cec_received_msg +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xe421c915 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xed2f913c cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x001b75fc most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x037059d6 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x2058faa2 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x2aa1fdff most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x316f1f31 most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x792ccc05 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x86158e1f channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x8a5a11aa most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x981e70fd most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa130b669 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xac9c2ee5 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xfa9b2dcc most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1ad6eae5 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x25a1a12b spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3b523350 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x496c0607 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x84b8c4d1 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x86442336 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9cf0cc6f spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xa976e4cc spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xaf7721e8 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb2978dbc speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe1eeb657 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xec12bded spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x065cda46 chip_wakeup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x097e38a0 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x3be34043 wilc_chip_sleep_manually +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x547e210c wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x76577bd2 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x76838e84 WILC_DEBUG_LEVEL +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xb92d4720 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xe9faed44 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xeef1af7d wilc_netdev_init +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_mctrl_gpio 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_mctrl_gpio 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_mctrl_gpio 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_mctrl_gpio 0x814bb347 mctrl_gpio_init +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_mctrl_gpio 0xba684812 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_mctrl_gpio 0xcc176714 mctrl_gpio_free +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_mctrl_gpio 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_mctrl_gpio 0xead54924 mctrl_gpio_to_gpiod +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_mctrl_gpio 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL drivers/uio/uio 0x76c94ed7 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xb2ceb099 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xd83db3b2 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x4e525d38 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xb5dda42a usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x012dc030 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x019eb29a ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x4c0656fe imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x9bc22563 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xd36dd954 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x007f4726 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x48eaec44 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x49ef12a2 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7520acc2 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x91b21c72 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe8b6306e ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x005efd77 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0ab8d2fd gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x37371bab gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3bb7ba72 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3bee1e90 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5063361d gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x583cbf2c gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5d6e763d gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6cc35fc4 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x766faf81 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x790f8f89 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8500bf39 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8a111c43 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8ddaa83b gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xde966874 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xabe7c7e9 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfe5529bd gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x0c9f71aa ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6b544051 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xe3aee0b4 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x04579718 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0540d7a4 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x09c60f09 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0db1db07 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 0x1b1cc3af store_cdrom_address +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 0x2364b06f fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x283cf558 fsg_show_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 0x2d10b6a7 fsg_common_create_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 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns +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 0x589e20d9 fsg_lun_fsync_sub +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 0x733a9b5e fsg_store_ro +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 0x841e2142 fsg_lun_close +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 0x87406b90 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x899096c9 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x92e9ba30 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 0x987bc0cf fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put +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 0x9a80c576 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa2514837 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get +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 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 0xd468f882 fsg_common_set_ops +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xef163b03 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_rndis 0x0608ed89 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1999af2e rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x20263224 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x36fd007b rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4445dc33 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5418adbf rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5b4b917f rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x61537797 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6330cd68 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8bd69c4b rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x94b29412 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd185bbb9 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xda390944 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xeba0649c rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfa5ab2e4 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x017564a4 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x087477a7 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x16c860ad usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2360cc29 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2ed7a403 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x39c5d0a7 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3b6ace21 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x59d0dfb7 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5d5c7f89 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x65221b84 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x67294870 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6b41c7f3 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7568fdb3 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x76c23d74 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x884c3e98 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8b248018 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x97c5e58d usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9daf84f6 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb3374a66 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbab6bff8 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbb5a692a usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc0dcdc64 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc7377d9a usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd139ea2c usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd5b9570b usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdd4df6ee usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe73f6463 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe82b7d50 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xea047d4f usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xea0c09a0 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x64666534 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xdeca6525 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x03ab3157 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3c66fe3c usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x55c9ceb2 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x56ae1dec usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x66fa2f77 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7dfc1526 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8c618412 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8c6880ed usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd87c96a8 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-am335x-control 0xeb1dfb79 am335x_get_phy_control +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x12dad8b8 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x1b1453a9 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x05b75b94 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x08b07865 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x18e5f227 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3379e816 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4a07bf71 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4dd32d7c usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x58292b13 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5d29d3d5 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5d9c9038 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x79c417b0 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7f06112e usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x85f0a5e8 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8879d767 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9a4d8ae5 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9e8eb9b8 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa18da127 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc5b28dd4 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcce27573 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd1f11b6b usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe42694b1 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf85e8919 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1e266244 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2f0f2f40 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x351a31d7 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3a91c2a4 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x555c3cb2 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x56683473 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5d4080e6 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5e01b20b usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6315ece2 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6636e5a7 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x69b4b1f3 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x73fbadb5 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x869e1ff9 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8b672246 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8ca03d0d usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8dc4249c usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb08eae9e usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcb294e0a usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd5bbe8f2 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd5dc4bc2 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd6e4a994 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdb990b6b usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf04a15f2 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf1b8da92 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x203429a4 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x27fc6ff5 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x32c65f0a usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x32d0e3c4 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3477c775 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4558f2a9 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x53220df9 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x576a063b usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x70354353 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x871f92ca usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd9317181 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe668edc0 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xeb3f5f6c usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x6e547650 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x8fe5f4db wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa2475889 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xaa0dcd80 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xaa9c8480 wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf69e8d46 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xfd6d4ea2 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x03ea8e38 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x05130c41 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb8820d __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x274bb202 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4881e26e wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x6bdad0e7 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x75c4ffa3 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8ce28589 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa95dafb0 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb093b828 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb76a6b20 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc966f3a3 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe0ea2a65 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe28fb2d3 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x9ebfe8ee i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xd922fd61 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xdcf2860b i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x29ca83fd __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x33cab6e3 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x4ee31780 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x90906551 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xb9c4c72c umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xd244ce56 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xe27c41c3 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xfb701818 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1009a17b uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x114fef24 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1512cf99 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x15c8893b uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x240f9a51 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x25cd634a uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2f4ad8c5 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x374677b5 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3d67eee3 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3f54356e uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4ae14b90 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x578256e3 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x58a28220 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5bbfef42 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5c0be856 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x635fd709 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6734e1e6 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x689331b9 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x82b198c5 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8845fc5d uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x99c68043 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa7cd7338 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa9694f4c uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa9dc5148 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xaa996429 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xba16cf9b uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbaf69d32 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbd86eae2 uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd1e20ede uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd3e3fddf uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdbbb5a2b uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdd2771a6 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xde1eecfe uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe85da135 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe9cb9073 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xebd1da14 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf7278279 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x79241cfa whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x8abc0df4 vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xa9064d5b __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xe2b890b6 vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xfc426389 vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x144ccfc2 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x316ee7be vfio_iommu_group_get +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x43a44a87 vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x51f16cdb vfio_info_cap_shift +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5ce37628 vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5f4f4d41 vfio_iommu_group_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6d16f5f8 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa082d1e7 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb2630418 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb466d6a4 vfio_del_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_virqfd 0x4e479678 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xaa9196df vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x028272eb vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x091512d7 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x09e352c6 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x35fdc0c1 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x374eda2c vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x385fbf82 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x388f8b9f vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3b9e4eb9 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3e6d92d2 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3efb6948 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x43f53907 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x46f9eb03 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4ac773e5 vq_iotlb_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4e42f8dd vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x574e6236 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x59d12482 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x76ee5541 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x79abf9ac vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7bd413bd vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x83cd06c3 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8c0302a8 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8dd3b255 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x91cd325f vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xafc63b42 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbe40d9aa vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc326be85 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcf36123a vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd00c9c3d vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd1754c84 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd2261c73 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd4b523c4 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xde24923e vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe6c42a7f vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe6dace30 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeabac15c vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf28aadce vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf468dd6f vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf5816f43 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf8141c22 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x18df8857 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x3ebaf88b ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x478102b6 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x74884bb8 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8e01b895 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc7304d30 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xdfc2526b ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x0fb61895 auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x5158bae1 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x5d083a5e auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x601dc386 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x63dfe4c6 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x85e6655a auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xbb0f7bd5 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xcedb34fd auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd40ba3e3 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf86bbbaf auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xb7fa6688 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x16fa3e3b fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x907bb548 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x33e6ee9f omapdss_of_find_source_for_first_ep +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xcf7405ab omapdss_of_get_first_endpoint +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf83ee5b3 omapdss_of_get_next_port +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf85e23ee omapdss_of_get_next_endpoint +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x08093488 sh_mobile_meram_free +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x53f2e3a7 sh_mobile_meram_cache_alloc +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x60e1ad0d sh_mobile_meram_cache_free +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0xe064b9bf sh_mobile_meram_cache_update +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0xf1a1b9bf sh_mobile_meram_alloc +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xf1d96781 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xfe5d44f2 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x129b26d0 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x298e3383 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x2e8b5a1d w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x4033f0f1 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6e3605bc w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x78c4d9b7 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x89ae828e w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xce48903a w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf32f1498 w1_write_8 +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x0bec01e8 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7b108633 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8d0cf742 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0cbcf7a9 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x35f0e58c nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x882133e9 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9087c47a nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xacadb3db nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd72a4111 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf55a71c5 lockd_down +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x004d1f5d nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01efc7af nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0223df56 nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03ba8608 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09204a7c nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09e2765d nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d04f247 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10bd5418 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11002756 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x129ea616 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x138aa9c2 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1641aa26 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17010bb9 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x183d9d52 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1928de52 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ddd794f nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e20a75f nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1eda497d __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ee794ba nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x244238b0 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x256003dc nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26e0d67f nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28c50620 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b60492c nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c33b46a nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d21b7cb nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f3b3eff nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3099a74e nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30d9ca7d nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37430424 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39215ed5 nfs_commit_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x396a5d09 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a46d4c4 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e6e3080 nfs_rename +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 0x40f8597c nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x415478c5 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45a5467e nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46f2b6c1 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x475e2dbf nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47cf90e9 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49995eb0 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ac30e98 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x510f537d nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x528b44d6 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52d345b8 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x530c9e44 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53ade5ab nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54cbc181 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54cd77fc nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55c5fc26 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57e68997 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x590a9a68 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5939721e nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59610554 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5bba3774 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5fc33c30 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61bc9999 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x626e6b3c nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6304b57a nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x633bc9aa nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63d27777 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63e14e3c __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64510333 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x677fca7e nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x679681e4 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ce28cad nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d2ac5a8 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d39787e nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e9010da nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72839016 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73474bc7 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e6d1ba5 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e7c1b69 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82bede8a nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83cccac3 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85bb6ce6 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a2dfd72 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b3b9b3c nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b72d5cd nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ff21e7f nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9132b847 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91b5114d nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92ebb6fe nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93201cf0 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94436024 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x971cf045 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c9bc9e2 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9dba1e43 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9fd04c38 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa11ce5e2 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4b13a7a nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5c97be2 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa605cba1 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7952a49 nfs_setattr +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 0xaca6199f nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb13e28f6 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb33c4cce nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4677070 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7c74ae6 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc12a9a61 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4cb702f nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc52bc6db nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc56f67e0 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc66ba710 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc75a0075 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd0aaaf4 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf417759 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf46747f nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd31eae1a nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd35139b2 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5ffabb9 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6714c9b alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8b414c3 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd215774 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddd2dec3 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdfe30535 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe08685c4 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe16f8712 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe27babae nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6883cf3 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8abf42a nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92fc77d nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee0abc92 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf268caa6 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf35a2082 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9f5166d nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa929b48 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcdb72de nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x08a7c0cf nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x079d0188 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08bd5d8e nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09a00e72 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x19ac9408 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b41a3fb nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f052408 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x221c785d pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x259c8e92 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x315b5bf6 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b732311 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x433ca17c nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4440eb44 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b641955 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5112aa49 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55a1a430 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ea0526f pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x609d8232 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x619b91f7 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x624b36bd nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b112f72 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6df3be4c pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6fb7f233 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74111eff nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83c6dd64 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86c62bc1 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x879a00d3 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8dc72f5f pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e9cbe5b pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x90c42d09 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9647528c nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x97133e50 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98620d5a nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a8f88fe pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9b35678c nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa1097517 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa29614a8 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa54da6fa nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa7c87efc pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa85ba99c pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9e7b68c pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab9fae1b pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xacbe5bf2 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae9a7475 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0ceb7d8 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4895436 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb554b965 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5b13b80 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcac9675a __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd08b1dac pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd7783f7d pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xddf69040 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe15f0a98 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe17d6219 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe2d8db05 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5a7264c __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef18b63a nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf1715dac pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4e5a374 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa9d9150 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe6ec76b nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xffa3458d nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x2fd5f4a0 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7a69e2de locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xeb741979 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc920ae01 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xdfeda1d2 nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +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 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2cd89a81 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x30b5dd36 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4494ff7d o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6b9328cb o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd96c2c2f o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xeb10cb0c o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfb81e51c o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2c0ed884 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3197d642 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x46ed034e 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 0x8f801440 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xaf0c4381 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xbc302e56 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 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x22f4da2d ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x6f8cd9e7 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x775cb3ab ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe1f1d737 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x249f8e2d _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online +EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x4cd3516b _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xd6f423f2 torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x72edbf53 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x9e3fbd74 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 lib/test_static_key_base 0x2d107b5e base_inv_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x41ecf87a base_inv_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x72eb4ea9 base_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x767b8ba8 base_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x8d490167 base_inv_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x9af6b231 base_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xdba4feef base_inv_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xde0e6eb2 base_old_true_key +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x0a5f4c59 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x61099706 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x00f505b1 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x212b7715 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x5813d34e garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x5d7034aa garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xa1fdce8f garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xdcc00c67 garp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x3745f85d mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x91c496ef mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x94a0a7bd mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x9d50a568 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x9fb7e705 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xc0c62c9c mrp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0x95dfc93d stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xc161ccde stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x41934ee6 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xe2d9b33e 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 0xbdb0b875 ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2434e8a9 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x56df9ea3 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8967aefa l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8e9937ae l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa11f624f l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbcf474ee l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xdba028df l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe850275f l2cap_chan_create +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0f2137fa br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x49d23d52 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x54cf7774 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb1d431c8 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc3a8e471 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc58a9b2e br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xca866364 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd2173400 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x57fcad74 nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x8b71b72f nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/core/devlink 0x148570ae devlink_sb_register +EXPORT_SYMBOL_GPL net/core/devlink 0x1b78c29e devlink_port_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0x290900f1 devlink_sb_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0x2fef8323 devlink_port_split_set +EXPORT_SYMBOL_GPL net/core/devlink 0x35f46483 devlink_alloc +EXPORT_SYMBOL_GPL net/core/devlink 0x3a9e78ba devlink_port_type_eth_set +EXPORT_SYMBOL_GPL net/core/devlink 0x44ee1305 devlink_port_register +EXPORT_SYMBOL_GPL net/core/devlink 0x5d7bc20a devlink_port_type_ib_set +EXPORT_SYMBOL_GPL net/core/devlink 0x6f2bf917 devlink_register +EXPORT_SYMBOL_GPL net/core/devlink 0x821b9514 devlink_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0x9282f433 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL net/core/devlink 0xa2a8aae4 devlink_free +EXPORT_SYMBOL_GPL net/core/devlink 0xa30e9f78 devlink_port_type_clear +EXPORT_SYMBOL_GPL net/dccp/dccp 0x030c60cc dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x047b08be dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x05126358 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0971e291 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x09a123b7 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0x100e9714 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x15ebb987 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x16b30848 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x19b91097 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1a8e4821 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x25017253 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x299b09f3 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2b8a3d2c dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x30282b6e dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x425f948f dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4b019a70 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4d3c995d inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4db6ec56 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x57e45c91 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x68a22aef dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fc59f09 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x98045d47 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9b95c787 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9ffe84a9 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa1022a7b dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa6609dd0 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbf81bc59 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc9b18999 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xca7f7505 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcee210a7 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdaa6d0a8 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe68b3cda dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfdb65b8b dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfefeea42 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1e22aa87 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4893aac0 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x74f97b9f dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7d035768 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x831404e9 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x968cf70d dccp_v4_send_check +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1b7482c4 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x2e9e63a4 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x43a9de7d ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x848c942a ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ipv4/gre 0x2f9af41d gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x88b81260 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x001d185c inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3141720e inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x42b7d8ff inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x44ff5fa9 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x758dacbd inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7613f1df inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc695ad84 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe087fa81 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe14cf456 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x87e272bd gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x06af1df5 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0dd571d2 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x23acda78 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x47c94c97 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x51a18010 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x53d15846 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8391a466 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x845815e9 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x871fee11 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x918d11fa __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x95f02b64 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa53300b7 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa6265340 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaaaea99a ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbc87b08e ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xbedfdef6 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x7ce92814 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x64aa66a9 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x29a792a7 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x7455ef92 nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x7ea86c4a nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xc492694e nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xe966a149 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xa17c8664 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x104ccbf7 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2242ce91 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x79669ff7 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb45732ef nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf8bdbd48 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x7f033bc0 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_nv 0xe3d1d7bb tcpnv_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0c27778d tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x162fb18e tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x1d1da467 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x4150261c tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7e96bf60 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x25821b95 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2adcbbbc udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2cb470dd udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x3c7c12ff udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbcb4ba61 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbf1619eb udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd82d6a7c udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x448f719b ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x6717f9d7 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xcdfb5de1 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x02cb57c3 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x3ad9100c udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x87c12ce1 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x5a2e063f nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xefbcca15 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x2811cca2 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x7e40802b nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x8e808614 nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x99119582 nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xe616022f nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0xa78ad670 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x37689dd6 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x926398f8 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x940bd110 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc933dfa1 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd51628ca nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xa447b92d nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x18986c24 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1baba24b l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3190297c l2tp_session_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3a6b3d58 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4060e8f0 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4d429bef l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x50ae254f l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7181590c l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x72e68e3f __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7a693e17 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8607e88a l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8e5f26fb l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb99dd712 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc8c5c88e l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd7b009e1 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe0c5f231 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x6a372cec l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0c2ae7fa ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x23cb233a ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x278a702e ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x301516f5 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x38ac448a ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x42ebffa3 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x51edc1ff ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x57fdec8e ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5b5e6e93 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7766ea0d ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x87c3ee62 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa230af16 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa5937333 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb3a74708 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb86968ca ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd56b7dc3 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf57ca7f7 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9fa191d ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfde2bed1 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7af7931c mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9e9974ef mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xef73cf9b nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf88e392f mpls_dev_mtu +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1eeca6fc ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2ac7d6aa ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x385a143c ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4a6eac4e ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4a9691b3 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x546fe9bd ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x55626887 ip_set_get_ip6_port +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 0x7be1159d ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x85e7ece9 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x88f8b574 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x897ae596 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8bb8fa9e ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8c8e18f8 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x96cc87a1 ip_set_nfnl_get_byindex +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 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbce9f23b ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe6cc2475 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x171f4f12 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x8634076f ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9472dd97 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xbea8d623 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00651b10 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0282495c seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02c957f3 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07244d7a nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07cfd8c0 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x085213ab nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x091fcb2e nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ef03ee1 nf_conntrack_get_ht +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12b811e6 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1408a0ef nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15597d61 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15fae5d2 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1994f5ed nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c88bdf3 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1dcb1336 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x263ec26d nf_conntrack_l4proto_tcp6 +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 0x2b32b722 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f678b16 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31153362 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32798252 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x330166db nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x362a3443 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b4102eb nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x43686a4c nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x46bdbade nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x483936ae nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4948c23b nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b4b24db nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5972db9b nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b7ae854 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5be8529c nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5df0b24a nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6388f347 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67001372 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67cc152a nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6895949c nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6dc06a31 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7116b0db nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x711855ad nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76297d68 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78900f4e nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ba58c27 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f026bbb nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82a227ec nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82ebc6db nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84cf8a87 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a530586 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91e542db nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x934c7872 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9bca0d6b nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9cbd25ae nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ec5a669 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa30a3a9b nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5d2bbb5 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9dd5bed nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab6e7e1d nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb094456e nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1be3d5e nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2f5b678 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb37af7c3 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb3ac2d5b __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb79d73ae nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7e19e81 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb208c8a nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbda3dc71 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc25b417b nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2abd2fd nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc448672e nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc7d1df7a __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc81a0929 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd41287f9 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5aa5333 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc05aadd nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe08b2fc2 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3e0cf54 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea2c5fb7 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec0e9eac nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf04e0dcc nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf37b53e1 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf49db887 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf52fcb71 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9b3245e nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa4bf0fc nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfce0836f nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x32e49d6e nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x5875b588 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xfce6f3b6 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x119e8c1b nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1fd211df set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x23a89524 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x406ae5a3 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x796c7ecc nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x96f273f9 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa9eb34c7 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd0551607 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xddaf800a get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xed13b5e9 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x120ddee6 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x8419b94e nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xaebe8472 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xb2eeb361 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe3ad793d nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x63401aca nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xefb25185 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x28d55a49 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x549dbd14 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x56e2f4db ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5da1fd4b nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x733b3741 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7356001e ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xaf692d4c ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xb3f845cd nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xa4220675 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xb8677095 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x3e2c097e nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x642d3ce1 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x83b0ef06 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xcb91041e nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x06d5151a nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x080ceb79 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x283c9fca __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x495b00ee nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4e5143c0 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7484b606 nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7f94a755 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x958f9328 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc3bcb1f0 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x88a237b2 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xb3200ee6 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x67fd25ca synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef85d054 synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x177564ee __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3e7edb69 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3f6b01ac nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x57b81dd6 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5b96e5e1 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5c797afe nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7e703e6f nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x82c0bc9b nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x858def3b nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x97caf4a9 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x98e0e6e1 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa18faab4 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9ffc821 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xab44c13e nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xac562995 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc8551ac3 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe48adc81 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe6c48be0 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe780e5cd nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfb0ce86a nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x11e0f845 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4a7e5d5c nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb4f15ba8 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe0a2325e nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe55359d5 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf223fa6e nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x63f88a67 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x7eee45d5 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xab55178a nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x43c20347 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x33234fd6 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x37488379 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xc2ab2166 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x10a484b9 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x194925d4 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x3129cd83 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x313d553e nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x56b63f28 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x71f6b978 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x93a5dbfd nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xbbef4601 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x212b0aaa nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x2c4cef9e nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x754ca49f nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x175c7cc4 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x67423c1e nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xbba83338 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x12d352f6 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1cd99e45 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x223942cd xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x30c276b9 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x33bbad54 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f1ef70a xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73fe3aa2 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8c48dde8 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ed74e28 xt_replace_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 0xc0cce64f xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3f2a371 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe96e7150 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf5a6a7ab xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x57909dc1 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xd0f26ea3 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x14a97243 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x1e7336af nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x7fa4535e nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x30e35513 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x3ce2b626 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x6750a864 nci_uart_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1184b607 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x59006328 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x5d415f76 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8f0b4ea9 ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x98f4e8f8 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbb581a59 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc51f2b43 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xca41c6f0 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda6b1277 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x28d3b4ea qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x58fbe035 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xbfb3a685 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x04cc313e rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x0afe9279 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x128e5c6a rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x1d8c3c4c rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x207b6e57 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x22302a6f rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x248c39bd rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x289b4d52 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x34f30d5c rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x55de2405 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x62884d78 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x6370e02f rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x6a17d4f6 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x72f07270 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x783b8aae rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x8d5b6c6c rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x8e88f9f3 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x8ecc5ee9 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xaa3e02fe rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xaa594971 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xab232e3f rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc642cc2c rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xca09e487 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xd293256e rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xd378e2c6 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xe852a8b1 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xf50fe71d rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xfbbe3fb6 rds_conn_create +EXPORT_SYMBOL_GPL net/sctp/sctp 0x21ae30e1 sctp_for_each_transport +EXPORT_SYMBOL_GPL net/sctp/sctp 0x43318e02 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x68c37cad sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0xf0a2bf16 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x1147d5bf gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x29584839 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf461b12b svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0365166e svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x038db431 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03c67ba0 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03ed52f0 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04af1469 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05534c3c svc_seq_show +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 0x07b82f5b rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c9c0edb xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e024d4a xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e7ac218 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f5b05d2 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f5d353d rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ffbc725 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x102594b6 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13ba13c6 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1503132d rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15998a3d rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19ebf3a9 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ba3c4c0 rpc_lookup_generic_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c899e4c xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d301af5 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1db710d7 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dd1f8b5 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x205ace75 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2223ca12 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22af1750 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23a16b3c sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24febe43 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25c3f4d8 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26159d79 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2799437d svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27aea03d xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2af1c6eb rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c8f5a92 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cf27ea8 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x314b16ee svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3298bd27 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32b5b3c8 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32d15aba rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34a0e444 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36614e57 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38856b8a svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ab4932b svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ab75e80 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ac5c1da rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b0cb5c6 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b139b01 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ea3a658 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40ba96f7 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42c8d80a xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x446f5300 cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x478f9e29 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48ef7485 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a3a0853 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a4b5329 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a8e9e81 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a8fcf5c svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c74c727 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c868cae xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ddef95c rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x510436b2 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5156857c rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52c494f4 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52d6e702 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54df221a rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55314a08 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55a5c2e9 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56c79262 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57080685 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x571f87fa rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x574b4a23 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59352c68 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59615e37 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b1b1cc5 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ce841c1 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d885257 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e02c3e9 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e081519 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x600cbb43 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60d45d69 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x618aa8b8 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61f9ee71 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62e397af svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62ea4384 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62ff8d08 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63168f3a svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6694f2be xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68dc28e5 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a486de0 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b4255a9 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c6edf51 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c8136c4 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e985c1c cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f0549af svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71702689 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73ffad1a svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76a4d356 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x774ab1bc rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77f6d4f1 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78996be8 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79f40f8d xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a67ce3d write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b22dfc5 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80de227b xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8122859a xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8202e1ef svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82429f9d rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83f08d84 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8404dda5 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8417fb07 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84f4c840 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85f57c55 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89873438 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8995a627 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8addf2a8 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8aefb3a7 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d4f761e rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e781356 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90e8136b xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x923215d2 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9628bfe6 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9992ff11 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a0b1262 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bb131d5 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c0ef912 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ca97288 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d5f400c xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d6e0dba rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dce89b1 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e126aac cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f6133e3 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2a4346d svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa52067f8 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa52f0537 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa662531d xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa88d4320 rpc_cap_max_reconnect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8a96b19 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacf04455 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad89d0a4 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae4faec0 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae5dc4ab svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb06c503d rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0e93923 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb14b377e rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb17aaa3a rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3982585 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6253cd7 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb71e8e0d svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb72dd532 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb763ae4c unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb81da670 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8c827ed rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8d32f1d rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb91fbd4c auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9b697e9 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbae9b484 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc029c39a sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2315bc8 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc52df797 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6d1ca2e rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7275207 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc962c6ec svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc965a556 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9cad0e2 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbd1a669 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd027eff3 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd028890e svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1d463f1 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd28d137d xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4043f15 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd43afac8 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5e3af87 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd70ac764 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd95fa354 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda609ae7 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda85f3ae csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdca4bf43 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd350076 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd881e58 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0bcc796 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe15a332d rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe354978c cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe52aaf57 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe66e13e3 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe743ee7e rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe88ed3c6 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9435839 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9f862d5 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea2348e2 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec2b7ab5 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeca69ffc rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed7431e4 xdr_buf_from_iov +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 0xf2d2d849 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf545958f __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5fc6f2e rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6711c9d xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6d81128 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf81d0ae8 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8b038bb rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf92491c9 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa1d34b1 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb305aa7 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb41e0fe xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe53dcde rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfef2eb15 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff5440ad svc_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x01e9e00e virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0fe2c124 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1528a289 virtio_transport_alloc_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1804303e virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x262ce06e virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2be6aa6b virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3f1fc262 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x429aefc1 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x50d8f6ea virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x59162e56 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x59a72013 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5cd6ce23 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5f11c597 virtio_transport_set_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5fdb4c4d virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6230cb1b virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x626725a0 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x709f4566 virtio_transport_set_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x71be03ba virtio_transport_get_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7c37743c virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7edfe083 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9671f80d virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x98d42558 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9dcc5b1c virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa7c82ee8 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xac6189e6 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb356b211 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc0bb4e9a virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc2d07acd virtio_transport_get_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc3fd35ba virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdb1a833d virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdf81423f virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe16ca3f8 virtio_transport_stream_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe4071807 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe8116102 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeaabd7a2 virtio_transport_get_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xee1fd042 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf2d91c38 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfffcd2df virtio_transport_set_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x14b0d4e9 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x496f3392 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x652aed13 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x78e3c065 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9ced95a8 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaa0e6dac vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbe002fe0 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcbdcda95 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd1613551 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd5487e27 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xde3d7583 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe14a8642 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe453a3dd vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe7bb9a31 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfa1ff403 vsock_remove_bound +EXPORT_SYMBOL_GPL net/wimax/wimax 0x14ff4850 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x20fbcfc6 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x238ef4c6 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x26811223 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x2d6a5314 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x3b47dd37 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x4229557d wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x6650a01e wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x6e647366 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x8c49f9cb wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x8cff87e2 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xcf168122 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0xecaa181c wimax_state_change +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x10e497c7 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1b7f4788 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x26bd4b65 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4575e3a2 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4927d2ba cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x512f20c9 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5b7490bd cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x625b20e4 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x77a05ca6 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x951edcda cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9bc79135 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb6b8fb6e cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xea52397b cfg80211_wext_siwfrag +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 0x3bf471d7 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x0fe650d8 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x2867b476 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xcd77c714 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xf940d379 ipcomp_output +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x0463e24e snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x16f3b60c __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x196167e8 amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x462ae161 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x88c8f9dc amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8b54948e amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xaa02b428 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc49db9bf amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfe098644 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x08d27cf1 snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a374b78 snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0fd61936 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x14ddf5be snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x15422413 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1800e5b8 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19ce4979 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x25a5739a snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x30c5bc7b snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34f63ce8 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3594415e snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3751d212 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3d4ad743 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3ede8e4a snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4100a700 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x41299bf2 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42d43734 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x44f05718 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x483f3bf1 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49ce8f70 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4da7ae01 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x503799ee snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x58c8025b snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62fe455a snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x631fd2c4 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x669854b2 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x66f57085 snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x680e428e snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x697bd450 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x69853d09 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6bb70c72 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d9d645b snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6fc370e3 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72fe4f9a snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x747980b0 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b8406c5 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c9c0ce1 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ca9a537 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fb5283b snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8475811e snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x87918cf6 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8a34365a snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8a46ab3a snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ffadbbe snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x92865c63 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9349bee6 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9995e269 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a67f0d2 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e44ad63 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb2ed418e snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4870cad snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc5a25b0 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbce994a4 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf2f4723 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4208ca5 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc5bef067 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcac0d98c snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcd922264 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcfa52c36 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd11c416a snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd33f38f2 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe0ecf749 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe1bb916e snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe281af29 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe2c40e52 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4f1657c snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea33237c snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec4dc454 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xef5c8e8c snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0340103 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf48a4e90 snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5016882 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf514b5fe snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf7ce9a19 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf7d6292d snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x414e5bc6 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4e73d9fd snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x772a339c snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x8eea81d2 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe142075f snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf5e0f227 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x000081d2 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0570acbe snd_hda_codec_amp_init +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 0x0760af5e snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07a03a7b __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x093a9f61 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e1a0ac3 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13c4cce1 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1680c940 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x181fcaf4 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19554034 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19f5cced snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a64945d snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ac62078 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1aeba34b snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c9fd1ea snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x221a20dc snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x234c9918 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x249a795e snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25440f83 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x263387a4 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x272f0f40 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x284ba176 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2bd83989 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d7cabb1 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x300e0aa6 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30974f52 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34dc6a22 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3dc25d6e __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3eaf1eb4 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40fdcdab snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x433b85e4 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46b5ae0d snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48d1757d snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49bc2e77 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4af99cb1 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b6e9be5 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c91b865 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d076530 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ef84e71 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x522ceaea azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55c3590d snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a76e67d snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5aa4042c snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b7aac20 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f7cfded snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x604d1639 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61263e5e snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6590e973 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65f6d62b snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66fe50e3 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6755dc6c snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68ad948b snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c3c6c6c snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e33137d snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x732080a4 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76bd3179 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fb6987d snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84cc8f18 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x869ba93e snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89ad70d9 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8be27e65 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c0f3d95 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d4e7efe snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8dee0067 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f16565e snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93f99cf8 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94a5a19e snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97d4513a snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98f5cd05 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a0340ca snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bd9d5dc snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1859815 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3672b94 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3c64170 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7756b23 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7fc458b snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa045825 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac2a4d42 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad4526a4 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf2e9f78 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb098bfc1 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb427985b snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4de78e1 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6792e10 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7a6e476 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7c53a30 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7cfaba9 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbba60a59 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd3d5025 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdfe9329 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc09f9c97 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc34aa328 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5c6dadb snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc76ca806 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7f78747 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc84b2ad1 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc863c250 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8da56ed azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc52abfc snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc7b0f87 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0b8db45 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6e86661 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd733958f snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7b5d76f azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7f1a00a snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd945ea54 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb57967a snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdbaa87d1 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf11a00e snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe06048d0 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe140e844 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe37213fd snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3768775 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6a6c5ae snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe898d7d4 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea591c07 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeab49e20 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb8f52e2 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xecd4d55b snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf02ebf33 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3278512 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7ce9581 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf848f661 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xff1a9c55 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x15551c2e snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1996dbca snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1cb3beed snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x235b6634 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x48ed148b snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6639ae7e snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6e89882b snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x703d0085 snd_hda_gen_mic_autoswitch +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 0x7adcd7b4 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7b8e3360 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x809ed888 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8684de0c 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 0xa13c2feb snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa36c2d02 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xabb7632f snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xadf0fb6a snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb0660fae snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd4d73b04 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdb392c09 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x285424b3 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x71c55f80 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 0xedf85fed cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xfe186593 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x79f190b6 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xa55bdc24 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xb10d47eb cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xb606408d es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xc954020d es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xfd03c12c max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98095 0x7b52b25b max98095_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x22828915 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x5cde5e2d pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x9b5ac73f pcm179x_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x1c6e53a4 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x63b7baba pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x994d2542 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xe3571b0b pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x07157ca7 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x5b83ff81 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x805f3360 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xbc9890f7 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc +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-rt5645 0x60396eea rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xda00d567 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x60289a51 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x699e53cc sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9671582d sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa190bd77 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd64583c6 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xa2c6d4a5 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xd93d19c2 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xe17350fe ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x1e88a12c ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x0eb18722 wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x2a08df7d wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x2e82535e wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x376de4c9 wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x3c67d04b 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 0x670bf5d6 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 0x789d2500 wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xeda2a115 wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x1183c1bf wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x200ed4c4 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x87333260 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xfe19aada wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x377d78b2 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xf7aa6b28 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x2b38dd50 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xbfd08965 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/dwc/designware_pcm 0x942b889a dw_pcm_push_tx +EXPORT_SYMBOL_GPL sound/soc/dwc/designware_pcm 0x953cb598 dw_pcm_register +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x469a41f9 fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xd4592068 fsl_asrc_get_dma_channel +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 0x1e6e7d16 asoc_simple_card_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7bf6014c asoc_simple_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9ff5f1d0 asoc_simple_card_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x629b419d asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x792f95df asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x90bb7975 asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xe98a4acf asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xe1328249 asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-idma 0xade84e1d idma_reg_addr_init +EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0x0fbfbd6c samsung_asoc_dma_platform_register +EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0x4af40a4f samsung_asoc_init_dma_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1f5bf2ce line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x35f872fc line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x482bacc7 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5c94b716 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6289d7cc line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x740dcbae line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x79a5ffc1 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7f4d00e9 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8c291c63 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x94019852 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9982a577 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa2b40da2 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc2c311e6 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd41a2f8d line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe1000e1f line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfcd04630 line6_suspend +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 0x00004c47 usb_del_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x001edd69 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x00232ddf cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL vmlinux 0x002cd0bc thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x0030cc95 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x00312d5a device_register +EXPORT_SYMBOL_GPL vmlinux 0x0034196b irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x005864af flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x0072d9d1 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x0075bf49 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x0079c70f ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x00891d3c serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x00929434 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x009c024b trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x009d1d8d usb_ep_set_halt +EXPORT_SYMBOL_GPL vmlinux 0x00a7d79d crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x00aeeef0 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x00b3a7ae bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x00c96960 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00e1fc74 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x00e942fd trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00ee7b66 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x01014e7f rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x011cad03 device_add +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x0143557d pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x015879ec snd_soc_platform_read +EXPORT_SYMBOL_GPL vmlinux 0x01593694 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x016f4f7c sdhci_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x01819c15 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x01c3218d snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e64a1b of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x01f93bdb xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x021923bb bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x021b57a4 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL vmlinux 0x022e74bc tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x02340ae8 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x025f7ca8 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x027865db adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x02a948a6 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x02b24cd3 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x02bc384b of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x02c0e069 sdhci_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x02e8f220 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x02f99ace snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x02ff4f80 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x03097333 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x031cf336 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x032375b0 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0345555a ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x0360f812 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x03639fe3 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x0364b536 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL vmlinux 0x03742493 devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x0374e6c5 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x038693fc regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x038ec37d __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x038f7a64 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03ad9571 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03e668fe ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x03ea3848 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x0402b504 __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x04031d7f elv_register +EXPORT_SYMBOL_GPL vmlinux 0x0419c5eb __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x04348eb1 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x043c9cbb spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x044e1a17 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04a7d297 hisi_clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c7b631 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x04d6dec1 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x04f739a8 arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0x04f88ed7 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x050cf48c ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x051433d3 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x0544372a regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x054a0b11 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x054f5869 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x055a1029 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x05608577 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0568f36e arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x056c42ca md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x056cd433 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x0571bc2b of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x057ca409 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x0584b32d dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x05872216 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x059719e8 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x05a6c1f2 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x05adcc32 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x05b02eb0 sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0x05b55a93 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x05bdf807 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x05c611c4 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x05c9ce6b devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x05cc71b8 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x05d7166c sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL vmlinux 0x05e5c4c7 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x05e99da0 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x05eff83b regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x05f25b6e __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x05f377a5 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x05f52166 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x05fac210 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x060a288c do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x061745a7 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x061ad5ea ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x062cbfd7 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x06369d06 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x0641eea4 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x06438115 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x06708e03 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x069f1414 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio +EXPORT_SYMBOL_GPL vmlinux 0x06dbdf21 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x07032f9e trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0x07326e1a max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x0751d6ff fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x07684a40 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x078d5d62 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07bd6036 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07ca42b1 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x08010f00 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x080918b3 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x080a016e pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0x08114ff3 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x08319e78 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x088027dd snd_soc_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x088a43c1 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0x088cef8b regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL vmlinux 0x089ebb42 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x08ada7c7 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x08b49dab sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x08ba6bbd anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x08c34fa5 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x08c73234 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x08ca30f6 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x08d5a296 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x08d5f19c power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x08dd01f3 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x08df8ca8 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x08e515b7 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x08f1f9e1 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x08f5af33 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x0902ddde clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x0909f0a4 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x090ae864 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x091b517f snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x091ec92a find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x09392fb2 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x093af898 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x0958637c list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x095f9cb8 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL vmlinux 0x0961b62e public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x0972e05e sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x09747b2d transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x097f4461 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x098aee6b dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x09bfe3e0 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x09d22667 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x09db9f53 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x09dc77b5 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x09ea6efa device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x0a0ae261 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x0a0c3a48 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x0a5e2296 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x0a8cb9fa sm501_find_clock +EXPORT_SYMBOL_GPL vmlinux 0x0aad5032 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x0ac4fe8f blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x0ac5f0f8 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x0adb02be ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x0ae7c07c devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x0aea9723 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL vmlinux 0x0af73575 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x0af74517 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x0afc932c clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x0b06c856 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b2e92f2 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x0b4f217b sdhci_reset +EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0bbae511 return_address +EXPORT_SYMBOL_GPL vmlinux 0x0be42115 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x0bed95df badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c0633f2 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c0d469c mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c6367b7 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x0c6a8289 spi_flash_read +EXPORT_SYMBOL_GPL vmlinux 0x0c7325f1 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x0c8f0a95 snd_soc_cnew +EXPORT_SYMBOL_GPL vmlinux 0x0c900b81 usb_ep_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x0c969cad regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x0cae2449 snd_soc_bytes_put +EXPORT_SYMBOL_GPL vmlinux 0x0cbdc99c bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cc7312c blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x0cc8d90e of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0x0cc91b84 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x0cc91b91 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x0cdf87f2 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x0ce0a752 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL vmlinux 0x0cfbd8e6 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x0cfeaca5 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x0d038e9d pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x0d15e7ac rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d505d31 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x0d6aa8b0 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0d7b9f79 dm_use_blk_mq +EXPORT_SYMBOL_GPL vmlinux 0x0d7c8ec8 security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d876f5b snd_soc_remove_dai_link +EXPORT_SYMBOL_GPL vmlinux 0x0d9cd18b ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x0dd4af48 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x0dd60e89 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0ddf12c3 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x0dfd8e2b uniphier_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x0e27d59b wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x0e2f4d9d pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0e2fbbdc pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x0e377039 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x0e58797b usb_add_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9be spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x0e6714ea iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x0e6e9635 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x0e84f0fc dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x0e8a574a cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0e9415ae regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0e9b46ca led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ea9193a usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x0ebd5592 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x0ee290bb virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x0ee67f90 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x0efabd1d rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x0efb8f70 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x0f244b05 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x0f273b1b ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f6001d6 security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0x0f7428ae fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f7d175c wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x0f7ea3f9 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x0fade6c0 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x0fce06f7 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0fd3998a clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x0fdb8fa3 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x0fe652bd omap_dm_timer_write_counter +EXPORT_SYMBOL_GPL vmlinux 0x0ff9af09 cpdma_ctlr_int_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x100ab093 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x100cf650 arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x101f5d05 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x10367342 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x1058bdaa regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x1071bfa7 max_gen_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x1073f2d6 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x1082a189 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x10a04a0d ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x10c1aa24 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x10c9c081 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x10cb201d devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x10d478c8 of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x10d8de4e dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x11025677 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x1118b7e7 usb_gadget_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x1119c24a __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x112283f2 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x112321a8 device_reset +EXPORT_SYMBOL_GPL vmlinux 0x113f7cb5 amba_apb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x118188f9 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x11895c25 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x118f9aef ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x1190ea0d omap_dm_timer_enable +EXPORT_SYMBOL_GPL vmlinux 0x119bc600 sdhci_pltfm_register +EXPORT_SYMBOL_GPL vmlinux 0x11a00b46 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x11b872e7 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x11b98048 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x11d0ed68 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x11e07279 mtd_is_locked +EXPORT_SYMBOL_GPL vmlinux 0x11e52226 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x11e90fe5 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x121a17cc pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x125d89cb usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x125ff70e map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x12795352 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x1280f8e3 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x128f016a kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x129545f4 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x12ba20ac stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x12bab923 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x12d05d80 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x12d287d5 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x12e838c5 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x12fe66bd kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x130871d6 of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x1331b569 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x13371153 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x133c8941 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x1350092f ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x136ab34e wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1373a10c list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x1381d4f3 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x138a1937 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x13b261ff sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x13b68444 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio +EXPORT_SYMBOL_GPL vmlinux 0x13c83d6e ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x1405c903 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x1408c9bf ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x14228857 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x1425be8e device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1436e227 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x143c6c44 netdev_default_l2upper_neigh_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1452717d scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x14549790 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0x1459d8ac inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x145ab995 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x14687370 sm501_unit_power +EXPORT_SYMBOL_GPL vmlinux 0x1476b3eb ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x148ab1e1 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x148bd5bb tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x1493e0f7 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x1494b90a __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x14a21d23 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x14a98a21 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x14b226ed regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x14c2ebef napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x14ccb9c7 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1502b678 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x1533362f mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x154709ad perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x15649e0e pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x1568887e blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x15848996 snd_soc_register_dai +EXPORT_SYMBOL_GPL vmlinux 0x1584c46a snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x158a4c1d snd_soc_unregister_platform +EXPORT_SYMBOL_GPL vmlinux 0x15a6e872 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x15beef0f debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x15c35f0a debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x15c61bc5 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x15d63085 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x15f7a466 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x161b07da qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0x16256c8a iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0x162edadd gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x16362713 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x16520b07 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL vmlinux 0x1679cb09 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x16817b90 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x168bf5d4 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x169e9b71 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x16a23a15 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x16a7f949 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x16ca51ec __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x16f43075 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x1725db0b wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x17402ca2 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL vmlinux 0x174e5c66 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x1786d9e5 sm501_set_clock +EXPORT_SYMBOL_GPL vmlinux 0x178dd93b put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x17a46bfe pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x17a62e2c snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0x17a72319 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x17acf0d8 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x17c05173 add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0x1824b5a2 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x182d94b1 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x1831ad9f fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x1839ed91 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x184d3d55 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x1872739a __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x18867ebf devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x18a2d500 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x18a41531 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x18c02b31 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x18d4abd4 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x18dfdccb snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18f2c41c pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x1910eb31 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x191b09df mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x192441c6 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x192a93bf gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x192dab13 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x19368ea4 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x19593d35 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x1979ffa7 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x19827c15 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x198b6e6f kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x19928635 mv_mbus_dram_info +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19adb249 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x19b31016 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x19b4354e of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x19cd49d6 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x19ed4dbc blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19fad272 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x1a02dc07 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a0569d7 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x1a0b0dd4 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x1a16d64f crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x1a1de3f5 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x1a221c71 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x1a2fad55 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x1a3fbeb0 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x1a40e11e linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x1a602f2c wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x1a69a2d4 usb_ep_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x1a81e185 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x1a9acfc2 cpsw_ale_create +EXPORT_SYMBOL_GPL vmlinux 0x1ac59d1b mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x1acd6a04 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1ad0342f debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x1adc42c3 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x1af7fcde fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x1aff7ac0 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x1b0874f4 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x1b12ecb0 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x1b27380c usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x1b3261e0 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x1b3be0b8 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1b3c4a89 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x1b40d205 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x1b4de0c0 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b60bdc1 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x1b62d63e of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x1b70d136 of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b8b7b5c ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1ba06134 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x1ba44ff8 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x1baf69db gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x1bb5fc26 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x1bb76f19 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x1bbd70ed ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x1bc0091c da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bce9f21 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x1bee7c5b __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x1bf03639 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x1c118d0f ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c59e5fd snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c70c82d dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x1c716881 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x1c798d9f for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c812909 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c93b685 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x1c9fbc03 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1ca2c928 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x1cc73079 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x1cc8f618 tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x1cdc8dfa cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x1cdd02d9 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x1cde72b9 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x1cf30f80 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x1cfe225d raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x1d0a9dcf ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x1d0d0805 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x1d0dc4af sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x1d1e53c0 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x1d1e89d9 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x1d204811 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d2c3582 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x1d331261 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x1d355839 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d448a1d of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x1d52ef2a ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x1d565302 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d615ed4 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x1d670f61 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x1d71ce1f debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7997ad crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x1d83c200 usb_gadget_map_request +EXPORT_SYMBOL_GPL vmlinux 0x1d877410 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x1d9d9ca5 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x1d9fe1e5 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x1dacba7e mtd_writev +EXPORT_SYMBOL_GPL vmlinux 0x1ddc6e38 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL vmlinux 0x1ddd29eb tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x1de22d1f ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x1df51320 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x1e033e81 nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x1e0adb20 cpsw_ale_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1e22eb89 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x1e4ba58f find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x1e4f002d register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e648507 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x1e75a417 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e7d6157 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1e80eb47 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x1e81ff91 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x1e8c8388 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e9b9f80 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec6b960 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x1ec6f4e0 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x1ecd4763 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x1ed31df4 cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL vmlinux 0x1edf7650 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x1ee6ae5a crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x1eef8ec7 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x1f1f953d ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x1f2f07c8 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x1f36f3d6 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x1f383d8b regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x1f3b4b9d PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x1f4ca261 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x1f59d9f3 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x1f60c2aa of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x1f774f46 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1f81e530 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1f8218c5 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8d71c4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1fc1dd32 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x1fc99f1c of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x1fe583c3 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x20164d20 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x201d8ea3 encode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x20280e42 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x203274f2 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x2033f655 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x208b7413 ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x208cf736 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x208fc306 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x209d251c usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x20aecbed class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x20d58109 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x20dc8fba spi_async +EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL vmlinux 0x20e10601 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x20f7e9dc ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x21009cb6 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x21546d39 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x216319dc pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x217dc652 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x21a3ed14 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21bc82a8 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d4e069 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x21eb14da crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x21f66407 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x21fc1d04 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x21febf58 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x222425c3 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x22465b4c virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x225ce6a3 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x2268bede pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x226a674d atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2292939e omap_dm_timer_write_status +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22a25e75 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x22a52ab9 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x22a7bd95 phy_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x22e6f779 store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0x23142bc7 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL vmlinux 0x23360ca6 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x234c6bcb pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x235603d0 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x2369008b cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x238dabb4 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23a3bcf0 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x23bb3eea usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0x23e5c22a crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x23e8c5fb __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x24031426 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x24094d14 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x2419f191 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x242466d7 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x24249d5f of_genpd_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x2429ba85 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x242a6c17 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x244274af pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x2442e7cd clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x2449bdec fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x244e6a4c bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x246b819c platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2486fdd3 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x248a030a virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x248e5764 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x24a7900f pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24b87363 i2c_new_secondary_device +EXPORT_SYMBOL_GPL vmlinux 0x24bd22d9 kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0x24c149f1 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x24d15cb7 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x24d48158 usb_gadget_connect +EXPORT_SYMBOL_GPL vmlinux 0x24e58745 mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24ef6b34 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x25084d1e posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x2510fe71 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x25112c38 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x251f816d of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x25374e8f ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x25409828 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x256b4ecd tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x258d1d93 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x258edc78 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x25d9941e gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x25e4fa8c btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x25e6509d device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x25f2bd37 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x25fcc550 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x2602f693 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x2617b589 mtd_unlock +EXPORT_SYMBOL_GPL vmlinux 0x262c9783 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x265c98d2 snd_soc_dapm_free +EXPORT_SYMBOL_GPL vmlinux 0x26636e46 component_del +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x26902f8b is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x26967b71 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x269abd37 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x26adb815 thread_notify_head +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c547c0 bL_switcher_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26d69c78 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x26e02ba4 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26f2897a crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x2707bc3c uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2720afe4 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit +EXPORT_SYMBOL_GPL vmlinux 0x27351153 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x273982c0 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x273b9b2a irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x27636619 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x278067e7 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x2798f78a gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27cce9a6 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x27d8bd7a led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27f6e082 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fb9e55 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x28113ff5 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x2811af75 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x281287b8 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x2828c7e8 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28328453 clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x284d76ba sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x285341e2 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x2860d423 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2876096c __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x2887ad89 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x2892741a dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x28a7b27f snd_soc_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x28c3b0ff of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x28c4adad sdhci_pltfm_free +EXPORT_SYMBOL_GPL vmlinux 0x28e5a97e set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x28f42027 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x290917f5 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x29112801 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x2935208b sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x293b6c52 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x293fed80 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x294bf308 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x29511422 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x296dcbeb usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x297463e4 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0x29992ac6 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x29b2b201 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x29c039ae bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x29db0744 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29fa419f decode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x2a2b6b25 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x2a2c8e25 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x2a39c6f4 amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a68ff3a fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x2a777cea __put_net +EXPORT_SYMBOL_GPL vmlinux 0x2a9745b0 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x2a9d6b6e snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0x2abab69a flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x2ae34b4b list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2b0567bc clk_hw_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x2b0e958b xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x2b136134 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b508c84 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2ba2e586 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x2ba7e54c arm_iommu_release_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2babe81f __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x2bbb8b5c regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x2bc315bb omap_dm_timer_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x2bd0a2f8 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2bd3aaef relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x2bebd8af omap_dm_timer_request_by_cap +EXPORT_SYMBOL_GPL vmlinux 0x2beedf49 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2befcb13 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x2bf0562b transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2c158438 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x2c1e2e47 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c286f49 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c366cad regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x2c38d870 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2c54acef regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x2c59ea35 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x2c7ae016 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c8527c8 mtd_is_partition +EXPORT_SYMBOL_GPL vmlinux 0x2c8c0804 of_fixed_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x2c9465b8 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2c9b9c6e crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x2c9e1851 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x2ca050bf pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x2cb218bf ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x2cc14fe5 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x2cc272e6 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x2ce77aff fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2ce9c8f2 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cf51b5d gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x2d0152d4 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x2d18c9eb usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d215511 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x2d22d5ab regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x2d244055 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d63ad33 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x2d7c73b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0x2d98df86 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x2da1652e ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x2da6a750 omap_mcbsp_st_add_controls +EXPORT_SYMBOL_GPL vmlinux 0x2dad9b05 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x2db42999 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x2dde7a2b rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x2df43a7e bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x2df8e337 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x2e07e914 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x2e0fb4fc thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e278f88 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e84eb6b phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x2e87853b ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x2e9029b3 usb_ep_fifo_flush +EXPORT_SYMBOL_GPL vmlinux 0x2e9670c0 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0x2e9f9f31 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x2ea0f1d0 clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x2ea464ea snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x2eb0f9c5 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec4b998 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ee04f1e snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ee48abf kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x2ef4d512 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x2ef6b5bf smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x2ef6f9d1 xhci_mtk_add_ep_quirk +EXPORT_SYMBOL_GPL vmlinux 0x2efc2181 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x2eff4546 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x2f03d9e5 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x2f0892c1 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f1c5ed3 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f49587a ping_err +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f68d23c mtd_read +EXPORT_SYMBOL_GPL vmlinux 0x2f736a3d alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x2f90da7e trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2f98e876 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x2f99dc36 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x2fa252dc kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x2faafa5a usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x2fac722e devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x2fbff097 omap_dm_timer_stop +EXPORT_SYMBOL_GPL vmlinux 0x2fc7b541 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x2fd4d147 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2fdcc202 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x2fdde4e0 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x2ff07fb5 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x2ff20427 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL vmlinux 0x300dc94c omap_dm_timer_set_match +EXPORT_SYMBOL_GPL vmlinux 0x30288f8d sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x30290667 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x302ce38a fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x3069809a __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x306c3550 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x30743783 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x308ca50a xhci_mtk_sch_init +EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30b79263 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x30b93036 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x30bdecad blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x30d39ff5 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x30dc61c0 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x30eb36ca omap_dm_timer_set_pwm +EXPORT_SYMBOL_GPL vmlinux 0x30f48060 md_run +EXPORT_SYMBOL_GPL vmlinux 0x311d8def get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x3141ad01 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x3159009a device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x315b1be5 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL vmlinux 0x315fcbd3 iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x316a276f pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x3171814d __put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x31853ff6 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x3189bb8f of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x31a4ed45 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x31b18adf gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x31b89365 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x31bdcda2 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x31c77420 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31cadd4a kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x31d74190 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x31f0d970 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x32276eee scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x324d9b20 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x3251ce29 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x325e1ec3 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x32686e7d inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x3272e4bc fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x3273a1b5 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x327c553f cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x32924a4d scatterwalk_copychunks +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 0x32cbabb1 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x32ed0e5c ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3311bdcd gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x336af088 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x338dbe90 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x339b7555 kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x33ab82ce hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x33b8c88e regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x33bd1f6f skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x33c01ac3 qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x33c22230 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x33f20d1d usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x33f3897a bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x33f98015 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x340f8c18 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x340fbbd0 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x341643ba omap_dm_timer_modify_idlect_mask +EXPORT_SYMBOL_GPL vmlinux 0x34320145 get_system_keyring +EXPORT_SYMBOL_GPL vmlinux 0x34331d5e nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x343b9597 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x345e8d31 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x34748212 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0x3479b7f4 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x347fd5f2 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x349df953 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34a84df3 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x34b0ad7d serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x34bfc4c9 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x34d09936 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x34d44f66 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x34dcbcb5 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x3502110b dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x350aa342 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x354a196a pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x356292d2 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x3564a800 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0x35733a1c kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x35883464 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x359bd924 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x35a0830e clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x35c28a45 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x35cf90f1 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x35dcd1f7 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x35ec97f5 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x35fcf0d6 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x3605a5ed mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3617eaa8 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x3630ca0d sdhci_get_of_property +EXPORT_SYMBOL_GPL vmlinux 0x364879da of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x364c91ba dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x3657ea96 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x366169c7 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x3666876a usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x366a655b debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x367873be bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x36855b8d iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x368d5ed4 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x369cec0d extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36b52dcf register_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x36bc354f inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x36c2f0ba smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x36ca36e6 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x36cabfc5 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x36d0f752 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x36d6e63f register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x3701ae98 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0x37062104 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x37239f40 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x376c97cb snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL vmlinux 0x378570a7 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x378929f1 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x378dafde __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x3791a819 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x37bd80d3 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x37d3b6b7 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x37d8619b badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x37df753c dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x37ea1e9c wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x37fadfba wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x380f2dd6 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x38231d51 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x3846c261 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x384f1336 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x38696ebe skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x386b6a44 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x386c081a platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x386f1842 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x38958935 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38af52a2 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38f784e2 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0x390ce925 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x3936d65c pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x39418d5c gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x39676120 sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x397804a4 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x39895736 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x39b7f4b5 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39ccd97f snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x39e4547c of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL vmlinux 0x3a04a73a gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x3a1ac71d crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a2dfd66 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x3a378139 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x3a3ba802 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a52d2b9 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a53b0d2 usb_ep_disable +EXPORT_SYMBOL_GPL vmlinux 0x3a5cebfd crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x3a748f99 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x3a7b35fe _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x3a7ec65d pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x3a93399f platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa1d90a device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3adee01b omap_dm_timer_start +EXPORT_SYMBOL_GPL vmlinux 0x3aeb44d4 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x3b04f39f pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x3b280069 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x3b3779be arm_iommu_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x3b45bf70 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x3b4680e7 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x3b5a2209 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x3b6042c6 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x3b9b5b3f tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x3bbed953 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x3bc07290 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0x3bceab18 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x3bdfdf1b platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x3be969d9 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3bfad08d crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x3c01002c usb_ep_queue +EXPORT_SYMBOL_GPL vmlinux 0x3c20ad3e vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c4857b9 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3c57c3ca arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x3c6526b1 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x3c831441 arm_check_condition +EXPORT_SYMBOL_GPL vmlinux 0x3c8cf2b3 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x3c8f75f3 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c93ea25 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x3cb28ab4 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x3cc13de1 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x3cc7f624 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd4d91d sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x3cdc9d73 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x3ce34151 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x3ce6ae9c unregister_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x3d0771e5 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x3d1879f9 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d49fc73 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x3d6cfe63 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x3d94cd62 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x3db7f79a regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3dc14979 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3dc4b9c6 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf +EXPORT_SYMBOL_GPL vmlinux 0x3dd54d58 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL vmlinux 0x3e2366ff unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x3e26d670 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e2d8408 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x3e31d9c3 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x3e346d4d sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x3e39da5c kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0x3e3a7cfe spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3e410620 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x3e4eb7ed crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3e5beb39 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e73e01e mtd_erase_callback +EXPORT_SYMBOL_GPL vmlinux 0x3e74cce3 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x3eb48c48 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x3ed3f46a pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x3ed7c2c8 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x3edf2c41 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x3ef485f7 usb_gadget_set_state +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f060887 __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x3f1fa328 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x3f76ae5d pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x3f7b5ae2 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x3f8ce859 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x3fca1f77 mtd_unpoint +EXPORT_SYMBOL_GPL vmlinux 0x3fcd5ac7 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x3fe9a409 omap_dm_timer_request +EXPORT_SYMBOL_GPL vmlinux 0x3ffeff53 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x400a7200 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL vmlinux 0x402709b0 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x402c3d16 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x40306d0b led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x403b94fc regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x404197c2 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x405c402b __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x405cdbc1 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x407a923d devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x407cd413 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x40872f69 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x40a349c5 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40d064a0 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40da9496 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x40e0e7f9 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x40e293bd cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x40e4644d ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f7bd86 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x40fc2613 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x40ffc51b spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0x410ee549 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x41137258 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0x4130be18 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x41322612 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x41343ad2 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x416c2f50 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x417d1491 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x4190dec5 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x419a221f kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0x41a38ce3 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x41b732ce unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x41c1f9f5 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41dc277f pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x4202edfd irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x429d0100 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x42bc30e1 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x42da87b2 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x42e8cd2a dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x42ed53e6 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x42faae09 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x4319272e snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL vmlinux 0x431e8de2 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x43254990 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x43408280 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x4352fb96 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x4373008d simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x437d5222 loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x43849f8f ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x4387bd6d fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x43936de7 put_filp +EXPORT_SYMBOL_GPL vmlinux 0x43a53676 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43b90f24 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x43ca8bf2 clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x44083c17 snd_soc_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x4412ba93 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x44445ae1 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x44554c83 dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x446e183c tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x44825fb6 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44d66734 __cci_control_port_by_device +EXPORT_SYMBOL_GPL vmlinux 0x44ee0425 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL vmlinux 0x44f3b486 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x44f8b6f4 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x4528ef8a task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x45366bcc blk_poll +EXPORT_SYMBOL_GPL vmlinux 0x45466f36 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x454d6328 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x454e51bb devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x455096e3 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister +EXPORT_SYMBOL_GPL vmlinux 0x456fb49a pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x4570b289 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x457ec463 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x4581b566 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x458d3559 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x45a37e1f irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x45a6cc25 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL vmlinux 0x45b6f8ab phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x45b751ff rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x45ba1367 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45bfade6 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x45c9176d do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0x45e74446 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x45f7ee01 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x45ffcdb1 nvdimm_bus_add_poison +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x460297f6 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL vmlinux 0x46066e5b perf_pmu_name +EXPORT_SYMBOL_GPL vmlinux 0x4611b746 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL vmlinux 0x46159af1 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x4643739e pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x4652a6bb pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x466e5342 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4670f732 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x46717ab5 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x46774d00 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46bf4fd0 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x46cb5771 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x47112051 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4736c5c5 hisi_clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x473bf7d5 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x47449385 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4770b9d2 of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x477bdebc gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47c14985 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x47c2791d ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x47d71fe3 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x47ddc209 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47f9f85d mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x481b3be4 omap_dm_timer_free +EXPORT_SYMBOL_GPL vmlinux 0x482c251c virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x48368e18 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x485dbb18 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x48ea0b25 pm_genpd_syscore_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x48efd6f3 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x490a15f1 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x49209dc0 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x4942b20e register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x4944a41c balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x496b1fee nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x496c0049 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x49715fc7 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4972add3 debugfs_use_file_start +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x4987c612 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x4996f873 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x49b4d393 sdhci_calc_clk +EXPORT_SYMBOL_GPL vmlinux 0x49d257f9 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f3f517 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4a099380 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x4a3c3f73 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x4a45b9e8 soc_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0x4a4df246 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x4a4f1896 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x4a545e4b usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4a63f3b2 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0x4a664558 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x4a977d0e user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x4aa52752 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x4aaa8728 snd_soc_register_platform +EXPORT_SYMBOL_GPL vmlinux 0x4aacc4b2 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ab0897d posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x4ab1a16b usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x4ad2a959 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x4ad4bd4e register_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0x4ad7220a fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x4ae5cb13 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x4af0da19 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x4af32eae qcom_smem_state_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x4af44f75 bpf_prog_get_type +EXPORT_SYMBOL_GPL vmlinux 0x4b030265 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x4b09340b vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x4b1187a0 clk_hw_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x4b1a927a clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0x4b6a5c79 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4b9801bc do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0x4bafcdd8 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4bf4c26a virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x4c088f1f sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x4c47ec15 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c7c741e subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x4c7ee56b power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x4cc970df __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4cde9bd1 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x4cf88158 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL vmlinux 0x4cfe21fc raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d07fbcd kill_mtd_super +EXPORT_SYMBOL_GPL vmlinux 0x4d0e1940 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x4d329aed snd_soc_debugfs_root +EXPORT_SYMBOL_GPL vmlinux 0x4d38f1e0 bL_switcher_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4d5cac8e kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x4d5f62b1 mtd_block_isreserved +EXPORT_SYMBOL_GPL vmlinux 0x4d72a42f wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x4d804414 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x4d8752c0 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x4d8bc388 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4d94240c add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x4ddaa2c8 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4de07f53 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de57fce unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x4de8f4ce crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x4decc3cf gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4e005353 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x4e07f7c9 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x4e08d720 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e10ed9c spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x4e23ca93 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e440a9f gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x4e449fe3 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x4e667722 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x4ea6c4dc iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x4ea82141 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x4ea9854b wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x4eaab2ff disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x4eab18b4 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4ebefbff fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x4ed20cce shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x4ed5610a dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x4edda6ae snd_soc_get_strobe +EXPORT_SYMBOL_GPL vmlinux 0x4ee3ccf3 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4ef686cd tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x4f05ebf5 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL vmlinux 0x4f1527c8 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4f27cb18 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f43739e bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x4f453828 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x4f590e5d generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x4f66918f spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x4f67ce07 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x4f68efce of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6e3716 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4f99e559 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x4fa2e394 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x4fc88c2c cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x4fd8e472 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fec8097 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x5003f120 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x502a4f37 nand_ooblayout_lp_ops +EXPORT_SYMBOL_GPL vmlinux 0x50343418 of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x50527202 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5056ed19 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x5059b333 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x5080c352 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50a8f350 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL vmlinux 0x50c1c404 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50db96f8 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x50e3a2ac irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x51005942 deregister_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x51116bdf driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x513ccf50 ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0x5141da75 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x515924a4 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x5162f30b usb_ep_free_request +EXPORT_SYMBOL_GPL vmlinux 0x5170a111 nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x51811f94 wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x51a11c8f blk_mq_reinit_tagset +EXPORT_SYMBOL_GPL vmlinux 0x51a40418 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x51bf75f9 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0x51d65cda napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x51db9ee9 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x52006286 __devcgroup_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x5200c3b4 usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x520d1c82 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x52168dbf debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x521c4111 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x5224aa62 ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x5226787b __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x525fc23d pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x526280c7 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x527649cd snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x52767b9b task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x529c76ac tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52bcaa49 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x52e57694 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x52eb5e0c lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x52fa599b regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x5306a329 pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x5314495f pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x531c79e1 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x53478cbe __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x534b3df5 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x534f5d57 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x537b4760 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x537c2e66 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x53cb6276 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x53d4a605 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x540a47c3 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x541378f3 omap_dm_timer_set_int_enable +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54481131 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x544aab61 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x54528a6c clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x5454ec1f rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x545ed72b led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x545fec86 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x5466efec of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x546d840e usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54a0ba1f cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put +EXPORT_SYMBOL_GPL vmlinux 0x54a51994 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x54c74f80 of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0x54c8d486 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54d741be pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x54e9052c tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x55166c91 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x551ae492 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x552f388a __sdhci_add_host +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 0x5543e12f snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL vmlinux 0x55676062 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x5591c3b8 snd_soc_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0x55928801 usb_gadget_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x559596a8 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x55986c2a __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x55a67b2d snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL vmlinux 0x55b15fe9 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x55b7b064 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x55c9837d dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x55dc2afd sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f8f47e devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x55fa8249 omap_dma_filter_fn +EXPORT_SYMBOL_GPL vmlinux 0x560d4a7b of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x5661c531 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x56746b3b screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x56af1ca1 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56bd4da2 find_module +EXPORT_SYMBOL_GPL vmlinux 0x56cd9140 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x56d31820 musb_writel +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e38023 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x56e49136 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x56e563b1 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x56e695f0 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56eb2e7f elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x573e30eb dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x576caaa8 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x5783c6c8 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x578806cf dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x578e8f2f gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57b3d079 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57c7f925 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x57e4b722 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x57eb030d device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x583966b6 pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x585ab091 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x585d76a1 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x586c6a12 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x587bd568 sm501_misc_control +EXPORT_SYMBOL_GPL vmlinux 0x587e8138 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5893faa9 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58a1060f regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x58a873e8 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x58c90cf4 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x58e9e5a1 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x5902daff of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x59140b31 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x5915317a usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x593bd55b nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x5946f4cb dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x59471076 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x594a894a of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x594cde67 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x59768d08 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0x5981cbf9 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x59820dbf debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x59a2f42e usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x59caa9d5 clk_hw_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59f13cc4 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x59f80e8d use_mm +EXPORT_SYMBOL_GPL vmlinux 0x59feeed6 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x5a357a01 mount_mtd +EXPORT_SYMBOL_GPL vmlinux 0x5a71cc4a dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x5a75f9e8 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a8f213c cpdma_ctlr_eoi +EXPORT_SYMBOL_GPL vmlinux 0x5ab5a93b irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x5ac2e2f8 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x5acf6567 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x5b049264 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x5b0d5228 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x5b13c16a blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x5b444d00 split_page +EXPORT_SYMBOL_GPL vmlinux 0x5b4b56be unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x5b73eb88 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x5b80730d snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0x5b81b50f scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x5b86efc7 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x5b94b8cf dev_pm_opp_get_suspend_opp +EXPORT_SYMBOL_GPL vmlinux 0x5bb3cb62 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5be0c7b1 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x5be8ee8d __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x5bef3e7a snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL vmlinux 0x5bf0d231 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x5c015e93 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x5c04692e tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x5c23346b dm_put +EXPORT_SYMBOL_GPL vmlinux 0x5c2f66c6 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x5c2fe4a5 cpdma_chan_stop +EXPORT_SYMBOL_GPL vmlinux 0x5c348c5e crypto_has_skcipher2 +EXPORT_SYMBOL_GPL vmlinux 0x5c36ed0c get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x5c5904f3 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c724709 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5c990ff7 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x5c9e8278 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x5ca6ea8e of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cba6ea1 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cd13395 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x5cef078f usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d153a7a hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x5d1fc575 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x5d3469a5 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x5d9d36c8 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x5da43152 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5da86c22 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x5dbb61dd nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x5dc138e3 vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0x5dc7cf98 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x5dd2e052 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5dd9966d ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x5df778c5 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x5df91597 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e0cae4e stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x5e12ecc1 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x5e1bfd28 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x5e1ebf6e sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x5e22e666 snd_soc_info_volsw +EXPORT_SYMBOL_GPL vmlinux 0x5e2ee3a9 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x5e441844 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e56daa3 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x5e67b71d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0x5e8d67d1 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x5e938c9d dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x5e938d34 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x5e95bacd amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x5e9964df mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x5eaf6de7 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x5eea02d1 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x5ef13c6e raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x5efdcb09 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5f0395c0 snd_device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x5f37d424 security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0x5f4e45d8 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x5f52dc8b snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL vmlinux 0x5f72c3c7 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x5f82b885 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x5f8ff13c pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x5f995cf2 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x5fb5f741 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x5fc1c16b xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x5ff79151 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6011d31a usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL vmlinux 0x601d2d6b ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x602b41a5 clk_hw_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x6075d0c7 omap_tll_init +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60aff2a0 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x60b38dcc scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x60d37599 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x60e6395b sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x60e63d73 xhci_mtk_drop_ep_quirk +EXPORT_SYMBOL_GPL vmlinux 0x60ea56eb tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x60ee59b5 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x612e1094 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x6143529d iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x61582d00 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x61848faf kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0x6187d7b8 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x619fedb7 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x61e2d4f7 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x61ee5d89 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x6213b930 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x622d7aec sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x62467833 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x62971700 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x62aef53f pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x62b7ba8d ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x62cddd7c shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x62d3b6b6 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x62eb75ac adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62eec1be debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x62f0ca7e sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x62f41154 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x62fb5db6 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x6301de9f skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x6310bf31 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x632027ee crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x6347f763 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x6357d763 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x636e0a06 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x636ea4f3 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x637f0a02 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x63b1a2ba sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x63bdfa3f mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x63cf548f usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x63d429d8 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63e4ab46 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x6400eb7f amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x640e269a stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6416de48 nand_release +EXPORT_SYMBOL_GPL vmlinux 0x64253840 cpsw_ale_control_set +EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x6441afa6 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x64533fc1 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x6462767b mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x646e1187 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x64a79ad9 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x64b12f78 l3mdev_get_saddr6 +EXPORT_SYMBOL_GPL vmlinux 0x64c822e6 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x64eb9aee __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x64f28c59 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x64f7c271 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x6511c210 cpsw_ale_control_get +EXPORT_SYMBOL_GPL vmlinux 0x65537437 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x655fcb8c icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x6565c334 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x656de242 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x6576ab8e gadget_find_ep_by_name +EXPORT_SYMBOL_GPL vmlinux 0x6579f698 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x657eaeec inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6599acc5 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x65a09bd8 d_walk +EXPORT_SYMBOL_GPL vmlinux 0x65a5b51d inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x65a998df sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x65aa6a15 clk_hw_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x65b0e47e crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65cf5d69 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL vmlinux 0x65d0fe22 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x65e4eee1 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x65fb3dfc __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x660a903e wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6626eee4 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x662f87f9 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6650f324 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x665956c5 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x665a28fa pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x665c4410 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x6669d78b gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x666b413b snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL vmlinux 0x66706477 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x668912dd of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0x668d34e2 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x66b1b600 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x66b7f890 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x66c397f7 nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66d82abf crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66ddc539 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x66e33855 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x66f721ec clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x6702d992 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x67046c8c dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x671dd27d perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x6720f9ea perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x672e785a regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x672f6728 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL vmlinux 0x6745e03c ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x674942c9 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x675981c9 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x675fe946 ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x6766e8aa mtd_get_user_prot_info +EXPORT_SYMBOL_GPL vmlinux 0x676af3a4 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x677ebf3e lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x678b8cbb kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x6794408b cpsw_ale_start +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x679af163 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x67b61aa7 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x67c1387e blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x67c8347f da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x67e16b29 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x680794e8 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x68247de7 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x6826947b xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x683f6207 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x68465b32 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x685b2695 devm_nsio_enable +EXPORT_SYMBOL_GPL vmlinux 0x685f4f78 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x689c4718 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x68b3e67a device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x68c54f81 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x68d23b59 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x68e47b2c cpdma_ctlr_destroy +EXPORT_SYMBOL_GPL vmlinux 0x68eeac05 ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0x68f013ae pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x6905a54c ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x6915b1da power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x692baccf blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x693bbfd8 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x693d0d56 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x69441dcd scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0x694be42a usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x694e2774 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x697a6d42 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x697a7dc5 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x69847950 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x6998df31 mtd_add_partition +EXPORT_SYMBOL_GPL vmlinux 0x69ba9a3b uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x69bb475b usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x69cf4f77 __register_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x69e02539 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x69f09dea gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x69f2513c crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x69f44567 of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0x6a064a3d regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a1836d9 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x6a3ca11b device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a62de25 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6a95cd4d input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x6aa57547 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x6ab167ad blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x6adbb588 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0x6ae04d89 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x6aebe8f7 device_create +EXPORT_SYMBOL_GPL vmlinux 0x6b0ac1b2 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x6b0ce66a gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b46b927 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x6b58a53e dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x6b5cd14a regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL vmlinux 0x6b81b4a4 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b932135 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x6b9deff8 mvebu_mbus_get_io_win_info +EXPORT_SYMBOL_GPL vmlinux 0x6baa1cf4 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x6bbd6627 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL vmlinux 0x6bd097eb platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x6bd6b88e devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x6be20546 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x6be28b6b usb_string +EXPORT_SYMBOL_GPL vmlinux 0x6be6c874 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x6bfda7a9 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6c218515 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x6c3b37db sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x6c3c90d0 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c70dcbf aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x6c72f781 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x6c7d83fa snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c961152 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca6f0d4 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x6cb3b9d8 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x6cc93b77 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cfe7436 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x6d03518f clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x6d065149 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x6d12d818 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x6d2a4042 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d3ed0fb ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x6d424356 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x6d46750f of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x6d4f8fb8 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x6d5a22c8 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x6d6fe368 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x6d7ce6dc of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d8c5d92 of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0x6d9b8387 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x6da6fc48 snd_soc_write +EXPORT_SYMBOL_GPL vmlinux 0x6dc4bd54 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x6dd9071d ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x6de33337 arm_iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x6e022df0 amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e0e9e66 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x6e11a914 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x6e21dfcb pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x6e23afb5 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x6e283863 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x6e4120a9 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e4ce3bd cs47l24_patch +EXPORT_SYMBOL_GPL vmlinux 0x6e4ed118 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x6e50a241 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x6e532592 mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6e654ecc shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0x6e7360fb fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6eb14c30 hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0x6eb6e9e6 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x6ee70cb5 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x6ef85dce power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x6f110dcc hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6f1ad00a __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f305c49 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x6f44f99b devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x6f4f024d snd_soc_unregister_card +EXPORT_SYMBOL_GPL vmlinux 0x6f53b902 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x6f6a0b49 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x6f9540ad blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x6f983375 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x6fa7cc7f kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL vmlinux 0x6fc101b5 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x6fce2abe spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x6fdf2bc0 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6fef32da gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6ff5f16b device_rename +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x7007c6f5 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x700d28d3 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x7012ec35 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x702765f2 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x70386679 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x703c0956 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x703e297f __mtd_next_device +EXPORT_SYMBOL_GPL vmlinux 0x70411217 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL vmlinux 0x705f3a8d vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x706d8ccc pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x707ecfaf snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x70af83b6 device_property_present +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 0x70d79964 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x70dfe4b8 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x70fd4ffe __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x71008581 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7100c270 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x71014ca9 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x7109861c mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x71226385 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x7132cc85 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x715206cc of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x71586f65 dapm_regulator_event +EXPORT_SYMBOL_GPL vmlinux 0x715df7c5 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x717db5f8 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71b3f2fe trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x71c089a4 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL vmlinux 0x71c9905e od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x71cc3906 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71fdf8a2 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x7211f55d blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x721e2434 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL vmlinux 0x7229a71d device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x724b1f37 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x72630322 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x72712855 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7279d6f1 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x7291019b __cci_control_port_by_index +EXPORT_SYMBOL_GPL vmlinux 0x72b7b206 amba_ahb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x72c20542 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x72cd30f6 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x72fee38d extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x730bd0c7 asic3_write_register +EXPORT_SYMBOL_GPL vmlinux 0x73279c3c usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x733a5caa thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x733e2518 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x734c2780 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x7359db04 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL vmlinux 0x735d9cc7 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x736b60f7 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x7385bcc4 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x738e8cdd list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x73978047 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73b00c31 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x73b5da2e register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73bcfbc5 mtk_smi_larb_put +EXPORT_SYMBOL_GPL vmlinux 0x73c2ad4f iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73ca625f ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73d902e5 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x73e828d3 ipv6_rcv_saddr_equal +EXPORT_SYMBOL_GPL vmlinux 0x73f2136f ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x73ff525d nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x740ba97b ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x7425dd9a usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x744aa555 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x74520afd ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x745db8d0 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x7461d0cc dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x747473e8 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x7474abfc usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x749389c3 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x74b4048a ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c2a4be of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x74ec5375 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x74f1843d dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x7507eb7b __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x75179ff8 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x7521be64 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75299ccb i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x75485f9c bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x754e469c hisi_clk_register_gate_sep +EXPORT_SYMBOL_GPL vmlinux 0x754ff748 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x756542ec devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x7577d589 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x757fea93 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x759bda97 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x75bd1070 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75ea89d2 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x75f7db89 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x761e0aca btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x764009ba security_path_link +EXPORT_SYMBOL_GPL vmlinux 0x764928a2 cpdma_chan_create +EXPORT_SYMBOL_GPL vmlinux 0x76518879 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x7657e306 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x76617c5f usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x7671f95f regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x767a857c cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x767db8f8 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76911f25 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x76ad5fd0 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x76ad908c driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x76bd3278 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x76d07eec ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e0ed99 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x76edf073 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x770ac796 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x7712eb37 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775d2eb5 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x77644594 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x77888d2a dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7792921f device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x7795135d sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x77a06abd dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77be72c1 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x77c169d7 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x77c32580 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x77d4e132 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x77fac082 spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0x780e08d7 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x783ce914 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x78508deb securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785ae8a0 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x7861ef0b usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL vmlinux 0x786e3ec9 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x787dea7b pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x78a64891 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78cb6182 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x78cd0b7e usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x78e87b14 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x78ea6bf2 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x78f196d8 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x790705d5 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x79173200 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL vmlinux 0x791a3a86 omap_dm_timer_set_load +EXPORT_SYMBOL_GPL vmlinux 0x791bcc65 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x793793f9 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x7948131f pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x795b7954 omap_dm_timer_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x7967d37e crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x7978593d ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x798368b9 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x798e1aae ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x7997f60d skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x79b4894a platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79fb7ebe mtd_write +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a3b1bdb __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x7a4da3b2 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x7a559ad1 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x7a57483d blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x7a89986a mtd_get_device_size +EXPORT_SYMBOL_GPL vmlinux 0x7a91f06e dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a9e2226 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7ac4d3e5 devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7aca88e4 __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL vmlinux 0x7b04e3b7 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b457e80 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x7b5bab6f iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x7b63d544 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x7b8b2d7b pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x7b96ebbd remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x7b9d3cad task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x7ba6625d platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x7bc239a0 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x7bc67b87 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x7bd72a75 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x7bddbf36 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x7bef3aaa gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x7c3b55ef sdhci_set_clock +EXPORT_SYMBOL_GPL vmlinux 0x7c3c2d55 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x7c4acdd9 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x7c66d57f param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x7c6a49ce unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x7c816326 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x7c847ed3 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x7c9309c8 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7c9cca56 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x7ca406bd mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x7ca62bec xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cd90f65 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cecc7d3 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x7cf2bf9c vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x7cf949a8 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d428717 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x7d54ea62 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d79b53a pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x7d816797 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x7d949b81 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dac1cd9 netdev_default_l2upper_neigh_construct +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7e0126ed power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x7e08d3c8 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x7e0b3bbb ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x7e0e46b2 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7e15d15f crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x7e204bb3 snd_soc_bytes_get +EXPORT_SYMBOL_GPL vmlinux 0x7e2675f1 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e65fe10 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7e9acb31 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x7ea9060c devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x7eac79d1 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x7eaea63c __get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x7ecd4ecd cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x7ed68941 asic3_read_register +EXPORT_SYMBOL_GPL vmlinux 0x7ed9ec13 ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x7efc240d regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x7efc2484 ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0x7f05df3b skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x7f17bcc3 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x7f6684fb mvebu_mbus_get_dram_win_info +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f848aad fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x7fbb5711 probes_decode_arm_table +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fc4b083 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x7fc932bf perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x7fce28c2 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x7fe2b84d crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x7fe5afae devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fef7b37 user_update +EXPORT_SYMBOL_GPL vmlinux 0x7ff8b221 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x80087172 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x8010d2c6 percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x801456cf hisi_clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x8021b354 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x8034024b gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x804aaea6 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x805a7313 hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x806277da md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x80698a68 pci_ioremap_io +EXPORT_SYMBOL_GPL vmlinux 0x8081ca3a pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80915528 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x8092de37 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x80b4c424 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x80be36c3 l3mdev_get_rt6_dst +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80c8b50a sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x80d2c952 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x80f7d128 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x80f8589f trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x80ff5bf9 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x8106e48e rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x810df1eb tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x810ff138 cpsw_ale_stop +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811c9937 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x812cc313 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x812ee192 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x814dc712 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815cac47 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x818c121c i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x819c20d9 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x81a62b91 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x81b03ea4 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x81c7d51c inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x81d3cca6 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x81d57812 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x8243ed87 snd_soc_read +EXPORT_SYMBOL_GPL vmlinux 0x824a98b6 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x82728d1c tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x8276e105 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x828eff9e scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x82a78d92 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x82b31eae kvm_get_dirty_log +EXPORT_SYMBOL_GPL vmlinux 0x82c8051f snd_soc_jack_get_type +EXPORT_SYMBOL_GPL vmlinux 0x82cb567d list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82db3c23 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x82dbf3a0 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x82dd6e42 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x82e409d3 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x82f32e79 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x82fd539e usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x83050928 mtd_read_oob +EXPORT_SYMBOL_GPL vmlinux 0x830aa3ff addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x8310300d add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x83140498 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x831cd8d1 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x832a4fd4 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x83384022 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x8377259e vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x83871f3b fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x8394f678 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x839fd087 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x83a3ecac skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x83d2182e ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x8407d41c kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x840a5136 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x8414f5cf regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x843b8636 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x844712df perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x84472db2 sdhci_send_command +EXPORT_SYMBOL_GPL vmlinux 0x84831ef4 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x848f6cee pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x8496f4c3 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x849a2c09 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x849c87fc dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x84a1adcc cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x84a5816e input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84b4326a ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x84b6a88a kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x84bb01f3 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x84c4b8be attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x84d4e3a1 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x84d6f88a serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x84e95916 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x84ec6d87 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x84faa5fe sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x85003a08 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8503413c clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x8510ccbe usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x85197f03 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x852385d4 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x852e6b1d irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x853c4b85 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x854c7641 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x85676d7e pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x85723e8c proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x85abb680 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x85bc776a of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x85c2c896 xhci_mtk_sch_exit +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85d1c887 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x85d6c8fe inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x85dae828 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x85eb8bcc srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x85fc5e7b crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x8600a333 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x8621ffc3 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x862b9816 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0x86306107 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x8639bdc4 cpsw_phy_sel +EXPORT_SYMBOL_GPL vmlinux 0x8667ba50 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x866f71eb sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x86748494 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x868068e7 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868e1a73 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x86c1b468 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x86c23504 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x86e65bc3 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x86eb6500 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x87119200 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8717df8b __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x8724bc5c ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8729749a device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x87563f34 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x876c0081 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x877355db device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x8777df7d __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x87a7a40e dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x87b2b34e __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x87ed3dfa of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x87fa66ee ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x8800fda1 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8817af3f device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x8827837e rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8853b152 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x885cf6a6 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x886b7ead pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x88790bdf sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88bb7b2b get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x88d2d0b8 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x88ee17db __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x88ff8ee9 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x89050385 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x893d6d8f debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x89759f7d of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x8978819a of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89c36f67 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x89d8e0fe __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x8a490856 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x8a67ac27 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x8a698e68 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x8a6f3d5f of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x8a9be673 of_get_dma_window +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8adf1d22 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x8ae25f90 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x8aece352 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x8b025feb init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b26bc90 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x8b29fe74 security_mmap_file +EXPORT_SYMBOL_GPL vmlinux 0x8b33c829 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x8b4379d7 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x8b5b00ad __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x8b5b30aa ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x8b717d80 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x8b775d3a __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b81bbaa page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8ba0d185 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x8ba24055 get_empty_filp +EXPORT_SYMBOL_GPL vmlinux 0x8ba7575a hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x8ba8cfe8 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x8baa9696 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x8bd9dd11 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x8bda017c simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x8be4e7ec pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8beddf98 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0dd07c mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x8c16dba8 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL vmlinux 0x8c1c7339 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x8c31b6f6 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0x8c3926d7 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x8c46420b cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c675af8 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x8c6807b1 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c777363 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x8c806b6f vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x8ce442ec pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x8ce76b99 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d305bfb udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8d33d3cc devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x8d4ffb50 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8d52799e vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x8d76b31c perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x8d7a253b regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL vmlinux 0x8d997f84 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x8da8c962 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x8dbac1ad gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x8dbaed3a skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x8dca4d55 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x8dd07347 irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x8ddd0c3f pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x8dde5d14 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x8de45934 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x8dec348f mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x8e0a9ca5 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8e270a43 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e454dc3 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x8e62e7d3 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x8e7894bd __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8ebb546e pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x8ec30e23 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x8ed41128 wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x8ed665f2 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x8eea4ef9 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f149e83 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x8f1988d8 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x8f38fb18 vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8f39be9f tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x8f44cb9d irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x8f4b5928 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x8f556aa9 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x8f62f9b9 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x8f659c6c devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f9ce6e9 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x8fa7f03f sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x8fbe1baa omap_dm_timer_request_by_node +EXPORT_SYMBOL_GPL vmlinux 0x8fdbbfbc blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x8fe430b2 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x90324436 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9047c11a trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x90501757 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x906a6a11 ahci_shost_attrs +EXPORT_SYMBOL_GPL vmlinux 0x9071fa0f iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x908ec02d dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x909c30cf pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90b9d9af ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x90bcc2ad ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x90c7028a dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x90ce8037 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x90cf2df3 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0x90ef7c70 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x90f0f9b1 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x90ff4723 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9117aa06 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9120b9f5 of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x91450568 omap_dm_timer_read_status +EXPORT_SYMBOL_GPL vmlinux 0x914a6296 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x91599ad2 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91bf9cdb of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91dc3966 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x91ff0e81 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x92069cee dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x920cf1cf mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x922c767a component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x9233977b gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x9240c589 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x9243e8d5 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x9258c6ea ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x926c6688 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x927343fb wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x928412ed cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x928ebcaf register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x929944ee tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x929ab88c xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x92ae3d4c gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92c28ee9 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x92d08f1a irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x92d92bb9 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x92da603a i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92f63593 dev_pm_opp_get_notifier +EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x930e9355 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x931e9a69 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x934c82cb max_gen_clk_probe +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x9369fca5 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x936d61d3 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x938db9e9 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x93a5a1d0 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x93b79823 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x93b88d53 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x93c0614b omap_dm_timer_set_prescaler +EXPORT_SYMBOL_GPL vmlinux 0x93d3653f bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x93d6b0cd ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x93e85e9a dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x93f2c434 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x93fcedc8 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x9486f29c ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x949334db cpdma_ctlr_start +EXPORT_SYMBOL_GPL vmlinux 0x949692a2 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x949e4234 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x94b66274 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x94fc5503 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x950212f0 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x951356b1 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x9519eac5 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x951baa32 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x951c2ffe shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0x95221528 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x9522401a component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x9523a2e6 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x952ad10b rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x952c54a2 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x9539f98a handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x9543ba9d snd_soc_suspend +EXPORT_SYMBOL_GPL vmlinux 0x954546b2 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x9550eea2 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x95615923 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x9573e991 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x95818446 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9586a6ed cpdma_chan_get_stats +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x95ac30cc fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95ce75da da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x95d79efb cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x9608a406 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x960f2c1a regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x960faea6 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x963134f6 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x963480d0 sdhci_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x965067a3 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x96546ee8 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96919667 musb_readl +EXPORT_SYMBOL_GPL vmlinux 0x9692e42d regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x96abfb4e tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x96aef5dd of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x96ce2ae8 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x96e07c1c synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x96e5269b ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x96ee9ba8 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x972a0311 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x972f3997 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x973a03ab gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x973ffa82 xts_crypt +EXPORT_SYMBOL_GPL vmlinux 0x97413b31 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x97949857 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x9798d88f __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x97b20705 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x97d40855 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x97db16ab percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97dec58f tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x97e06add gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x97f4ee56 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x980ef18d vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x980fb2dd irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x9812e2ea gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x981488d4 dapm_clock_event +EXPORT_SYMBOL_GPL vmlinux 0x981fe741 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x982adf9e screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x982ef982 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9849a79d ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x984a195e ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x984b27ef clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985d0465 udp4_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0x9870e6b2 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x9873b8a8 sdhci_setup_host +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x98a8b512 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x98c6791c pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x98c9f584 klist_init +EXPORT_SYMBOL_GPL vmlinux 0x98cf6eec ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x9934586a usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x994d0852 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x9955a327 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x99660ac1 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x996c5ae7 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x9977d4d7 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x99839610 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x99956527 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x99a460ab pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x99a4ead6 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x99a8d00f __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x99ae18a4 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL vmlinux 0x99b8c014 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99c8053a __module_address +EXPORT_SYMBOL_GPL vmlinux 0x99dced16 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x99e2705a input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a3a098e snd_soc_info_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x9a599d20 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x9a5abfee led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x9a747453 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x9a860e92 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9abaea0b pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ad56d2d __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x9ad96ef5 pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9aeed5b2 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x9b079455 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x9b07a8e7 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9b09659e ti_cm_get_macid +EXPORT_SYMBOL_GPL vmlinux 0x9b0f748e sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x9b143a65 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x9b27e0e6 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x9b3bef79 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x9b3f1202 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x9b4dab3b ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x9b632515 usb_gadget_activate +EXPORT_SYMBOL_GPL vmlinux 0x9b63d773 snd_soc_unregister_component +EXPORT_SYMBOL_GPL vmlinux 0x9b7ad63a skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x9b901a59 cpsw_ale_dump +EXPORT_SYMBOL_GPL vmlinux 0x9b9c3e9e pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9ba0d43e bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x9bac4bc2 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x9bacf4f2 sdhci_pltfm_init +EXPORT_SYMBOL_GPL vmlinux 0x9bb1a564 ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0x9bc8632a ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x9bc90fac adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x9bd18205 __of_genpd_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x9bd2a52c call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x9bd71f7a crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bf345b1 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x9c2db75a pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x9c3e5b59 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9c5a0cc9 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x9c5c387b iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x9c77cfe4 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x9cab0c2f ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x9cac0c27 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x9cb10b56 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cdc9867 cpdma_ctlr_stop +EXPORT_SYMBOL_GPL vmlinux 0x9ce69bbc regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x9cff5421 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x9d1e6db8 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x9d3084b8 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x9d63fb46 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x9d6e9700 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9d976d5d blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x9da3c4f8 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x9da894c0 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x9de7d55c snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e02b650 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x9e2eeb95 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e492404 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x9e6145a0 omap_get_plat_info +EXPORT_SYMBOL_GPL vmlinux 0x9e7c82c9 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x9ea556f8 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9ed10f63 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ed6def1 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x9ede1e54 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x9ef8a4e8 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x9efb14e7 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x9efd0a8a dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x9f200e13 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x9f34afd5 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x9f63578f of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x9f68415d mtd_write_oob +EXPORT_SYMBOL_GPL vmlinux 0x9f84a2f4 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9f85e933 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x9fa9c851 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x9fcbb9f6 vfs_writef +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9ff1f15a scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x9ffa1ab2 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x9ffd8f9f debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xa009646d snd_soc_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0xa00fe0fb clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xa010c14d nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0xa017af6b sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xa01c8670 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xa0278b41 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa030a6f8 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xa033df40 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xa04a8517 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xa05fc241 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL vmlinux 0xa0656dd5 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0xa066bb7d snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL vmlinux 0xa09dbfd7 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xa0adfc0f cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xa0baf0a5 cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0xa0d0066c regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xa0d0aa30 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa0e6acc0 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xa0f98c42 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL vmlinux 0xa0fe4404 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL vmlinux 0xa10f2fd9 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xa114fa57 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL vmlinux 0xa121ab29 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xa13c686c serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xa14a1817 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xa171cf15 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xa17b12f3 pci_fixup_irqs +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1b01be9 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL vmlinux 0xa1c366fe aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0xa1c8c154 omap_pcm_platform_register +EXPORT_SYMBOL_GPL vmlinux 0xa1fc85df regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xa1fcb05c of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0xa20b24a4 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xa21cbac2 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xa22d1c15 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xa23f684b __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa28010d8 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL vmlinux 0xa28dd90f devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xa2a5c96a srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xa2aa0eb6 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xa2b1f26e rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2bd25da tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0xa2c1e9dd usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xa2c25465 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xa2c3e9ec devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL vmlinux 0xa2d05862 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xa315cd9d inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xa3268653 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xa33afa69 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xa3443206 amba_apb_device_add +EXPORT_SYMBOL_GPL vmlinux 0xa37ef6c8 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xa380487e platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa39a9618 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3aeab89 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3fe462c kvm_vcpu_init +EXPORT_SYMBOL_GPL vmlinux 0xa4051822 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa44f5e19 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xa45aadbc crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xa4679a95 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xa46c9507 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xa46ef589 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xa4744dba usb_gadget_giveback_request +EXPORT_SYMBOL_GPL vmlinux 0xa47c9242 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xa47d9d2f sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa49b63de driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xa4b3cda9 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0xa4b92b17 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa4da4c08 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xa500a9a2 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0xa500dbec mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL vmlinux 0xa5077884 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa518a9cd tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xa559f145 gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xa581e2e9 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xa586954e usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xa5b548a3 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xa5c8a8f9 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xa5cd8053 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xa5deb43c blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xa5ef23d5 __of_genpd_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f8854a usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xa61870dd _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa625c070 pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0xa629d384 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL vmlinux 0xa667e177 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xa6763cc7 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xa68e1550 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xa6a5b975 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6b69c73 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xa6c10e66 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xa6cdf6e7 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xa6dc3e6d snd_soc_add_platform +EXPORT_SYMBOL_GPL vmlinux 0xa6dd2bd4 snd_device_disconnect +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa7026986 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xa70e734b tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xa719109f regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa7238123 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa7255e76 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xa762d605 blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0xa78d75de mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xa7911a0d skb_gso_validate_mtu +EXPORT_SYMBOL_GPL vmlinux 0xa7ae41f0 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0xa7bd29f6 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xa7bedd79 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xa7cdd8ca wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0xa7d8ea75 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xa7e2f167 mtd_del_partition +EXPORT_SYMBOL_GPL vmlinux 0xa7ea04d3 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xa84b96d5 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa88976c9 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xa89da139 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xa8b20c5b crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8bb8da0 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0xa8bc717e percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0xa8d6d312 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0xa8e98132 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xa8f29ba8 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa94478d8 mv_mbus_dram_info_nooverlap +EXPORT_SYMBOL_GPL vmlinux 0xa96727ee ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xa96ecfcd ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xa9783071 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xa992c0c4 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xa9aef2e1 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0xa9dd7011 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa9e05660 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e59bf7 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xa9e6f8bb regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa9ebd69e part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0xa9f87f93 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xa9fbedab regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xaa193d88 devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa2bc39e snd_soc_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xaa44acff omap_tll_disable +EXPORT_SYMBOL_GPL vmlinux 0xaa4cb810 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xaa675cff __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xaa7141e4 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xaa86fa2c gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xaa8c0fbe ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xaa9457de debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xaa9f5a16 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xaaa01f98 musb_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaab44f5f sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL vmlinux 0xaad6e087 snd_soc_register_codec +EXPORT_SYMBOL_GPL vmlinux 0xaae9e7db debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xaaecf75d perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaaf9dde9 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xab1f2551 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL vmlinux 0xab42a8a4 snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0xab4c9dac __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xab55602c mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0xab5a92cd usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab71fe97 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL vmlinux 0xab8d5af7 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xabaf682c blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0xabc52d1f crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabcfa03b __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL vmlinux 0xabeeec2a get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xac1a3bfe devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL vmlinux 0xac7345d7 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xac99820f raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0xac9f7d27 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL vmlinux 0xacb4b5c9 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xacbbeac6 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xacc463d2 security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0xacc88ec7 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xaccc9b8c device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xacd7d1ad path_noexec +EXPORT_SYMBOL_GPL vmlinux 0xacdea2f1 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xad01263f wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xad022cdd clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xad042692 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xad055ddc usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL vmlinux 0xad061885 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xad1d4117 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xad1dde6b sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xad24ceec wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0xad26561a irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xad276bb2 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xad4325ba subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xad75166c usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xad865eb6 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xada3a3a7 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xadad8c82 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xadc23aea get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadd86c2c regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xadd96133 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae133847 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0xae1f4570 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all +EXPORT_SYMBOL_GPL vmlinux 0xae81bb48 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xae9f9d59 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xaebfef33 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xaecfe99a dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xaed738a4 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xaeff2578 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0xaf02076e cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL vmlinux 0xaf1431f2 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xaf2862c1 __of_genpd_xlate_simple +EXPORT_SYMBOL_GPL vmlinux 0xaf293318 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xaf2b3b13 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf40e5e9 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xaf56aa80 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xaf676a86 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0xafc0a540 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xaffc6819 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xb00f0024 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xb0103c11 l3mdev_get_saddr +EXPORT_SYMBOL_GPL vmlinux 0xb0128a78 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xb01ca948 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xb03c62ca wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0xb04a8bea pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xb04d1f7b perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xb04eef19 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL vmlinux 0xb050f329 init_rs +EXPORT_SYMBOL_GPL vmlinux 0xb05d3ce0 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xb05d6159 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xb0779fe0 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb09532af user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xb0a9ae19 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0c5d3a9 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xb0cae6c2 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xb0cc1f47 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xb0d46c43 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xb0dc1b3c __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xb0e0a73a of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xb0e9e631 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xb0ede95e dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0xb0f30847 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xb0ff76a6 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0xb104fbf5 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0xb10cf1a1 omap_dm_timer_get_fclk +EXPORT_SYMBOL_GPL vmlinux 0xb11625b9 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb125ceb2 cpdma_control_set +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb149289a __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xb14c3c49 get_mtd_device_nm +EXPORT_SYMBOL_GPL vmlinux 0xb16a0342 arm_iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xb16b9d5f ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb17b16cf virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xb17b5c26 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb18ddf8e __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e43f70 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xb1ea493e sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xb2002bfb scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0xb220b5c2 hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2301308 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb26e390e ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xb27e18ca devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xb288779a vmf_insert_pfn_pmd +EXPORT_SYMBOL_GPL vmlinux 0xb2ab6d25 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb304ed3d pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xb3095912 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xb30e4104 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xb314e299 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xb33b6bb3 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xb33dad00 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xb34f72e6 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xb35c88a0 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0xb371851d fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xb376840c seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0xb37adf85 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xb3be9eb8 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xb3cd9bb3 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xb3cdd712 exynos_mipi_dsi_register_lcd_driver +EXPORT_SYMBOL_GPL vmlinux 0xb3e2fef1 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xb3e522bf irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xb3f0f9c6 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0xb401250b dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xb40c6376 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb41c2e60 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xb43def3f spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xb4413cdd rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xb48645df bdev_dax_supported +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4c23c1e debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xb4c542af pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xb4cf0322 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb4e4f252 ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4f7b109 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xb4fb8b74 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xb50533b4 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xb50cea69 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb52a4547 reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb538e407 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb5974adf snd_soc_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5b24eab pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb5b77dba devres_find +EXPORT_SYMBOL_GPL vmlinux 0xb5b85e91 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xb5b97406 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb5d940cd driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xb5e8100d kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xb5eaeb57 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb5f5b771 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0xb5fe9a86 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xb6063b8c vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb6609b00 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL vmlinux 0xb6660a2b phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb679e462 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb68827fc kvm_get_pfn +EXPORT_SYMBOL_GPL vmlinux 0xb68a2fdb vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xb6a02401 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6c05e49 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0xb6cd8e1f crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xb6d2fd5d fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb6d65505 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0xb6daae9d snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0xb6e687a0 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6f78a05 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xb6fa8d98 usb_ep_fifo_status +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb747c757 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xb771e6b7 bL_switch_request_cb +EXPORT_SYMBOL_GPL vmlinux 0xb77351dd virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xb7798f05 mtd_block_markbad +EXPORT_SYMBOL_GPL vmlinux 0xb77cb0a8 cpdma_chan_submit +EXPORT_SYMBOL_GPL vmlinux 0xb7a16564 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xb7a9d66e kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7c810f7 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xb7ece86d phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb80711e8 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xb81f2e88 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xb82566eb omap_tll_enable +EXPORT_SYMBOL_GPL vmlinux 0xb82b49ed virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0xb82fa836 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xb8346aeb percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb83f2c13 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb8752e4d __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8911852 snd_soc_put_strobe +EXPORT_SYMBOL_GPL vmlinux 0xb8994b6b devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb8a4f7d9 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8dee010 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xb8e23ef7 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0xb8ef8fc1 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xb8f2d54a kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xb8f60045 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb9053dde dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb906637b pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xb906932c devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xb91eab1d blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0xb9284ff4 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xb93145f3 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0xb944b73f blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xb964d272 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9cd4096 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9e87b94 bL_switcher_trace_trigger +EXPORT_SYMBOL_GPL vmlinux 0xb9f49ffe sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xb9f72cab regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xba0b416a regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba2ed700 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xba97e0a4 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xbab93f05 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xbab97771 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbabc6de0 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb03b28f key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0d3c4f blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0xbb11cfba klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xbb146b21 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xbb3b6e1d kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xbb3bd9ee rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0xbb3f1582 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL vmlinux 0xbb4c7570 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbb4ebecd sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL vmlinux 0xbb6a136b cpdma_chan_get_rx_buf_num +EXPORT_SYMBOL_GPL vmlinux 0xbb6e9b6c crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xbb80d24b public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xbb81a97e omap_dm_timer_set_load_start +EXPORT_SYMBOL_GPL vmlinux 0xbb91f71e unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xbba4135b regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xbbba1b8e snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL vmlinux 0xbbc2e6a3 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xbbc30b2e snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xbbfbe54d of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0xbc096597 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xbc43a85c regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xbc5a49d3 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xbc5b7cc7 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xbc5dcc52 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc895527 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xbc8a4908 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xbc9e0484 md_stop +EXPORT_SYMBOL_GPL vmlinux 0xbc9f6287 __sdhci_read_caps +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcb0cd9c snd_soc_resume +EXPORT_SYMBOL_GPL vmlinux 0xbcb69513 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xbcbaa80a __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0xbcca3a41 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcf1ed4a kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcf89ab6 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xbd08c1ef scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbdd0276b class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbdf512de free_bch +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe1b529d rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xbe241d26 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xbe39672a ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xbe44fd75 mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbe6026d9 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe997631 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0xbe9c38e6 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeb89db4 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xbeef8af1 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf2144a9 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xbf368863 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xbf379f84 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL vmlinux 0xbf468372 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xbf47ea80 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0xbf524c28 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xbf5604e2 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xbf6dd356 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xbf7a449e crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xbf8ffcba dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfbcddf8 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbfd9c263 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 +EXPORT_SYMBOL_GPL vmlinux 0xc0118529 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xc02717da power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xc03a654b memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0xc03db5df device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0xc049a766 of_display_timings_exist +EXPORT_SYMBOL_GPL vmlinux 0xc05a2895 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xc05c8214 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xc0628337 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xc067ee33 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xc0816ea8 max_gen_clk_ops +EXPORT_SYMBOL_GPL vmlinux 0xc081c246 bL_switcher_put_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0928a52 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xc09529e2 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b68ba7 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xc0bbc109 mtd_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0bf20ed of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xc0c26900 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xc0c8eded pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xc0d1a6a9 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0d89d2b regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 +EXPORT_SYMBOL_GPL vmlinux 0xc0e85564 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f9aade perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xc1103f99 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xc1143336 arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0xc11ab924 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xc13983bc key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xc13e2b92 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xc1683a3d ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xc16a193b usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc17cb06d dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc188705c component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xc1a8be2e crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xc1bc76ab usb_gadget_disconnect +EXPORT_SYMBOL_GPL vmlinux 0xc1bca310 nand_ooblayout_sp_ops +EXPORT_SYMBOL_GPL vmlinux 0xc1bd1652 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xc1bec6e0 skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0xc1e15e21 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xc1f1bfbb pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xc21a4b4a thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xc21b3cca devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc22ddeb2 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL vmlinux 0xc2325481 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xc251d1ed snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL vmlinux 0xc2643093 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc26899ba devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xc270874f scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc2980cc5 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL vmlinux 0xc2df12e0 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xc2e27f93 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xc2e2882d cci_ace_get_port +EXPORT_SYMBOL_GPL vmlinux 0xc2e960f2 update_time +EXPORT_SYMBOL_GPL vmlinux 0xc2f3dffd cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xc3131eec regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xc3270f79 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc3508e18 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xc358a696 mtd_point +EXPORT_SYMBOL_GPL vmlinux 0xc361d7ba pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xc36aeaad bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc3759fd2 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xc385cb58 perf_num_counters +EXPORT_SYMBOL_GPL vmlinux 0xc39daa57 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xc39f1110 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xc3a3ca74 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xc3ad306c device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xc3b93bba klist_next +EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xc3ebb5b8 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xc3eda20f snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL vmlinux 0xc40c9c70 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xc41e0178 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc43702e8 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL vmlinux 0xc43dedf0 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xc4488dec otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xc44a9014 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc459c95d stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xc4633d24 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc49f7e06 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xc4b8d611 devm_nsio_disable +EXPORT_SYMBOL_GPL vmlinux 0xc4e3a1e5 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xc4e5960d mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xc5038e32 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0xc51a0fae cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xc52b6299 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc52b9ddf usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xc53bc877 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc543a026 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xc557774f netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xc5613f4b pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5878314 blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0xc58a2544 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xc58c6ec6 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc59b220e ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc5a596d0 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xc5ad90d7 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xc5d5513e cpdma_chan_process +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5dc5661 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xc5e0dd66 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0xc5e9369e snd_soc_bytes_info +EXPORT_SYMBOL_GPL vmlinux 0xc5ee3c3a crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc60ac4f1 gpmc_omap_get_nand_ops +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc61dd0c6 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xc62b7996 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc649229a clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc6753c63 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xc681aa0a ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc685c037 cpdma_check_free_tx_desc +EXPORT_SYMBOL_GPL vmlinux 0xc6903de2 omap_dm_timer_set_source +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc69eeb3e ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6b08c3e skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xc6cc3efd regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xc6ccc12c clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xc6cce5e8 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xc6e284ba crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xc6e5d634 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL vmlinux 0xc6e67605 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc6f10b4f dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc6f3d636 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc7559259 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xc76b4bdc bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xc7720940 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xc779f446 blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0xc77d3b17 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7d61927 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc7e37eb9 serial8250_em485_init +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7fe96c4 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0xc8087712 snd_soc_component_read +EXPORT_SYMBOL_GPL vmlinux 0xc8106b0c l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc8263ee9 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL vmlinux 0xc83cf19a spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xc851cacf of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0xc86871d6 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xc87631a5 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xc881c6de snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL vmlinux 0xc882fe14 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc897bfb6 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8b72e29 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xc8c17b2b max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xc8c5fa05 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xc8cf99bd snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8ee1cab ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xc8fbfcf9 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0xc902ec8f snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL vmlinux 0xc9071f7c clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc91ae4ae pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xc9341497 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL vmlinux 0xc946ff20 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xc951fc1a devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9731a9c hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xc97d0684 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc99d045f ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xc9b22e1f omap_iommu_save_ctx +EXPORT_SYMBOL_GPL vmlinux 0xc9e75573 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9f5aaa3 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0xca11a0c2 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xca13925a clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xca18bb4d cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xca1fcceb scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xca29d298 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xca3ab270 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xca570f4c bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xca5c64df __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xca6fec75 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca7e6a1f mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL vmlinux 0xca80459b __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0xca850fad sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xca883808 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xca9f8ab8 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xcaa0d9a1 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0xcaae1ed1 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xcab212f7 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0xcab3aa0e regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcac08e00 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xcac4f9b8 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xcadccc9b kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0xcadd5727 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xcae87bb1 regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xcae94ac6 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xcaed20e4 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0xcaf3bdc8 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xcb05fc85 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0xcb075bc0 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb16eda3 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0xcb1d226c usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xcb1ea361 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL vmlinux 0xcb43544e clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb4baf1e spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0xcb617fb3 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xcb6afda4 of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xcb6c9dbf put_pid +EXPORT_SYMBOL_GPL vmlinux 0xcb911764 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0xcb94d0fb regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xcb99756f of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0xcbc479e7 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbfafa4c platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xcbfeb62b irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0xcc046566 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0xcc0794fd irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xcc3a2463 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xcc4bef0a __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xcc547eaa snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0xcc6a859f pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc90f504 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xcca5b7f7 usb_gadget_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xccb28111 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccda6247 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xccdab4ec pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0xccdbe451 component_add +EXPORT_SYMBOL_GPL vmlinux 0xcce3a84e power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xccf53b0f md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xcd02a00f __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xcd114d02 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0xcd11bcc5 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xcd229ab6 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xcd3009ec of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0xcd4f2f84 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL vmlinux 0xcd78b2a9 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xcd872af3 omap_iommu_restore_ctx +EXPORT_SYMBOL_GPL vmlinux 0xcd88d9ac kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd94f936 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcd9d4ab5 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xcd9e3398 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xcda1fe42 sdhci_set_bus_width +EXPORT_SYMBOL_GPL vmlinux 0xcda77e28 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xcdb2d370 setfl +EXPORT_SYMBOL_GPL vmlinux 0xcdb2d8ca dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdbdfdcb of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdd48c98 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xcdde038b crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xcddfe767 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0xcde5c88c snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL vmlinux 0xcdf797ee sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xcdf8096c fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xcdfea597 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xcdffbc4a gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xce0615ea dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xce1cd265 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xce2c459a cs47l24_irq +EXPORT_SYMBOL_GPL vmlinux 0xce32a25f of_css +EXPORT_SYMBOL_GPL vmlinux 0xce3d337b usb_ep_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce705499 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xce7ed06c ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xce94b006 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xcea3a263 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xcea8fbae i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0xceda0d30 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee710d6 snd_soc_component_write +EXPORT_SYMBOL_GPL vmlinux 0xceed33f2 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0xceef4c18 cpdma_ctlr_create +EXPORT_SYMBOL_GPL vmlinux 0xcef8288c rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcefe7fa5 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xcf01f14b snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL vmlinux 0xcf107094 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcf280649 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0xcf284d8a device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xcf3a4c40 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf58f9b4 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xcf5f7cd5 i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcf61b5f9 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xcf7a363e ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xcf7acda4 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0xcf7f7366 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xcf9548d8 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL vmlinux 0xcfa089b4 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfbcea5c __pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfc9cf89 debugfs_use_file_finish +EXPORT_SYMBOL_GPL vmlinux 0xd00082c5 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL vmlinux 0xd0176637 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xd027eaf8 sdhci_set_power +EXPORT_SYMBOL_GPL vmlinux 0xd03389ec __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd03e9dc8 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0xd0440021 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xd05b86ae inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd0897768 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd08addb2 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xd097cece ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xd098d327 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xd0a847d1 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xd0bfb05d pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xd0bfe314 kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0e3f160 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xd0ed109f nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xd104bbe7 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xd109d0ca snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL vmlinux 0xd129f5bc spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd15bbb14 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xd15e11b5 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd16b6bce usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL vmlinux 0xd170e647 mtd_table_mutex +EXPORT_SYMBOL_GPL vmlinux 0xd177120e usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xd17e2795 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xd1822f0b cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd1843a80 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xd191d2c2 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd19a07c2 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xd19bf711 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xd1b3297a pm_genpd_syscore_poweron +EXPORT_SYMBOL_GPL vmlinux 0xd1b601cb adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xd1e67ede ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xd1f0a011 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1f8c58e ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21975b6 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL vmlinux 0xd234f336 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xd23bc0ae event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xd24e9bd8 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xd261ff71 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xd26df7cd virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd27e494f usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xd2965762 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd2b5f352 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xd2de7533 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd302f53a pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xd314181c bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xd3230f54 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd367e7a7 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xd3736c2f fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xd38fd3da snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL vmlinux 0xd3a45174 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0xd3bf8b0f evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xd3ddfc0a shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xd3de566e extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0xd3e581db gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xd3e97c21 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd3fbabe9 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xd3fc332a sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd401336e cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd41b0ba5 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd42ea849 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL vmlinux 0xd4373e41 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd44c2f38 cci_disable_port_by_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd45663bd verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0xd45cbde2 user_read +EXPORT_SYMBOL_GPL vmlinux 0xd465dd05 mtd_lock +EXPORT_SYMBOL_GPL vmlinux 0xd4909ece ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0xd4b80176 omap_dm_timer_disable +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c6956b i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xd4cc2392 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL vmlinux 0xd4e73755 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xd50b096c ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0xd53da4e3 omap_dm_timers_active +EXPORT_SYMBOL_GPL vmlinux 0xd55104b4 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xd554fe19 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd57b9d3a __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xd59ed6b0 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0xd5a162a8 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5c7122d crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xd5e6ae3d arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0xd6018f4a io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd60412cd get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd6113e1f ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xd623dc03 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xd63ce82a __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xd6424aa0 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xd6426803 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xd65288e8 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xd65b97d9 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xd66c2247 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd67d8fa1 usb_ep_set_wedge +EXPORT_SYMBOL_GPL vmlinux 0xd6b135ce power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xd6c9d4ad input_class +EXPORT_SYMBOL_GPL vmlinux 0xd6c9e79d dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xd6ed6b40 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xd6ef8a0f power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xd6f7525e ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd7200526 default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xd7288d1b ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0xd73584da ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xd736e941 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0xd73c4097 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd77b187a pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0xd77be5d9 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd78d8b5f handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0xd7b6f601 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xd7cf1b97 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7e8f133 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd81e8749 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd849740c regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xd859c5db gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xd85f053d usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xd8719cbe pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd873a044 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd88b2176 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xd88d7efb task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xd893db69 clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xd899ab9f pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0xd8a65440 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0xd8c80c79 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xd8cc5f51 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd8d32b10 usb_ep_enable +EXPORT_SYMBOL_GPL vmlinux 0xd8e52017 insert_resource +EXPORT_SYMBOL_GPL vmlinux 0xd8edbb00 security_inode_readlink +EXPORT_SYMBOL_GPL vmlinux 0xd8f1bfb6 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xd8ffe65b mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL vmlinux 0xd904538c class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd90c6433 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xd9131f89 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xd927d6ac regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xd93bc776 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0xd956876b srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xd95933b9 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xd95c27e0 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0xd96086f9 nand_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd99caa1d snd_ctl_activate_id +EXPORT_SYMBOL_GPL vmlinux 0xd9bd871f page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0xd9d90b60 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xd9da508e device_del +EXPORT_SYMBOL_GPL vmlinux 0xd9e9554a mtd_device_parse_register +EXPORT_SYMBOL_GPL vmlinux 0xd9eb8ef9 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9f386d9 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xd9f3e65f __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xd9f6fee1 kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL vmlinux 0xd9f927ce omap_dm_timer_set_int_disable +EXPORT_SYMBOL_GPL vmlinux 0xda0a4310 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xda0b2dc1 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xda1129c8 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xda192bf1 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xda28c1c6 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0xda31d2a6 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xda506ef9 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xda5c85d1 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xda626598 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0xdaa8646d regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xdaddb30f pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb0ac358 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xdb346554 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xdb390c5c sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xdb409b1d pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb4c7582 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xdb4fcf24 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xdb52fea9 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdb5d62c3 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xdb6427e4 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xdb64a27f gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0xdb6ec4f0 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb8b9baa ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xdbab5a31 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xdbcac856 snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0xdbd43190 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xdbedd3c8 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc35ded2 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0xdc461430 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xdc57d6ca sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xdc74c7a3 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xdc80c6df mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca8c0f2 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xdcc57d52 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xdccc20fe ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xdd0d9c5a devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdd10bf03 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd19c8e5 snd_soc_platform_write +EXPORT_SYMBOL_GPL vmlinux 0xdd24f184 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd306ed9 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd3aa235 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0xdd57388a key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xdd64332f tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xdd64658a pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xdd70d5a5 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xdd930ff0 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xdd95f362 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xdd9c50e4 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xdd9ee6b6 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xdda36b5f ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd190ec pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddd6a7be devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xddd8ef91 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xdde3163c cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL vmlinux 0xde082bf4 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xde0e040f rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xde10b17e mtd_panic_write +EXPORT_SYMBOL_GPL vmlinux 0xde257fb0 of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xde25f88c __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xde271ee8 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde483b6c kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xde557e9d regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xde5e255f do_truncate +EXPORT_SYMBOL_GPL vmlinux 0xde883279 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xde99cb77 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xdea5b92f inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xdf0bc512 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf255dcf memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf27e565 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xdf4a5c1c ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xdf4ce801 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0xdf67c877 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0xdf8d2482 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xdfa2250c gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xdfb514ec __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0xdfcff8d7 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdfd66fc1 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xdfeea706 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdff5e5ac bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe0238697 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe0416888 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xe04434a6 ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xe048ce0e devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xe04d86a9 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xe05efb78 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xe0605f14 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xe06e4157 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe07a79e8 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xe07ca631 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xe085a1a8 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xe094e59e irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b27a80 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xe0bc67a0 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xe0ca3b79 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe0dd1038 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xe0f8ee1d irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xe10382b8 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xe10c970b devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xe1156cdf snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0xe1164db6 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xe117e306 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0xe1232096 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xe126553f __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xe13db231 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe179dc46 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe1b4e90f wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1b81e02 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xe1d67cc8 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xe1dbaae6 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xe1fa54c0 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xe21046b0 security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0xe21fd207 of_fixed_factor_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0xe23d2561 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xe23e972f wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0xe246767a digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xe2556c87 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe271ab55 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xe273a9d9 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xe2792fb8 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe2b29c3d wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xe2be343e pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe30ba5e4 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xe312e584 dev_pm_opp_put_regulator +EXPORT_SYMBOL_GPL vmlinux 0xe320c5ce __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xe33d3bbc swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0xe370cc7d wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xe3a3f0ba aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xe3c7b8ae snd_ac97_reset +EXPORT_SYMBOL_GPL vmlinux 0xe3d7e093 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0xe3e7bef0 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0xe3f4935d pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xe3f953b1 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe4083e27 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xe40e5d7d rcu_exp_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0xe4229651 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xe42e1f70 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe447ba7c devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xe465b985 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe46f2b84 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xe4931eb3 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe49947db udp6_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0xe4a579c3 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xe4b14821 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xe4b9c040 omap_dm_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0xe4c22565 cpdma_chan_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe4c74f4b regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xe4d17bb4 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe50312ab ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0xe528247d devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe53704c0 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL vmlinux 0xe53addf6 dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0xe546284a usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xe547b1ab gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe59010b7 snd_soc_find_dai +EXPORT_SYMBOL_GPL vmlinux 0xe5a0bd1e pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xe5e1a397 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL vmlinux 0xe5e477bd snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL vmlinux 0xe61b0b4e inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xe622a467 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xe630bd5b iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xe6421330 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe653083d wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xe65d0ced mtd_block_isbad +EXPORT_SYMBOL_GPL vmlinux 0xe6601f35 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xe66b5945 clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe67752a1 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xe6879ded devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xe689ae37 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xe69cf323 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xe6b25e7b mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xe6b7b65d crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6cc5414 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xe6cfc25b pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xe6d714f0 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0xe6daa5dd __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6fca408 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xe70c38d5 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xe714f50e ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xe71b1f31 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0xe728fa77 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xe72c0f4b devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe7474b94 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe751f58e pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xe75d619e alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xe7621308 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xe7638a97 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe76dc0de devm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe78ec81a devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xe7905c49 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xe7922608 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe79642a9 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe7a713a0 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xe7b0c4cc pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xe7b499be mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0xe7b95935 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe80946be cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe83cb0e2 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xe85b0f74 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xe85db397 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe8669746 nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xe877cbdb ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xe87d8c6b blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xe8838e8a dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xe88fd34a devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe894c802 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xe8b7b05d gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0xe8d3093b iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xe8d9c48c iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xe8f14a3f cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xe8ff8a1f irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xe915c835 put_device +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9474bde dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xe949c4fb __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe98a7ae6 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xe9923133 kvm_clear_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xe997a768 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xe99fefab devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xe9a6dfa2 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xe9a6fcd9 mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0xe9a81e25 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xe9b45188 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xe9b82ed4 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d26bc5 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xea0aa397 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea1bb291 bL_switcher_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0xea1f6e0e hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xea30f1ad mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL vmlinux 0xea3d8d41 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea4275d0 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea57f514 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xea5d6d94 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xea75d5ae usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xea772c2a ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xea7bc4bc of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xea7c8a0b relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xea820ae9 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xeaaa5544 cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL vmlinux 0xeab92fb9 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0xeac15baf rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xead6130b mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0xeaeb31fa queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xeafbe59b anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xeb01e003 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xeb07e133 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xeb2a7f78 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xeb35cef5 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xeb57deb0 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xeb63c53a crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL vmlinux 0xeb948c70 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xeb961636 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xeba2f2e4 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0xebb7e578 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0xebbace4a security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0xebbbb27a regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xebbe1622 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xebbf7204 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xebd9c097 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xec01bebf nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xec186cd5 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec1b4834 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec2f0253 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xec6c963f irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xecba622f dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0xecbe029c usb_of_get_child_node +EXPORT_SYMBOL_GPL vmlinux 0xecbfeec6 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xecc5ad2f alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xecfd8761 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xed074ff0 ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xed1c40d0 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xed2a4245 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0xed38c848 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xed3e9103 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xed42e2a3 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xed4a37ed usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xed4f1c7f snd_soc_add_dai_link +EXPORT_SYMBOL_GPL vmlinux 0xed5aa9cc regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xed5dddf6 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xed837c46 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xed845822 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xedb6ba9a snd_soc_jack_report +EXPORT_SYMBOL_GPL vmlinux 0xedc60e39 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xedd4463a device_move +EXPORT_SYMBOL_GPL vmlinux 0xedeca8a4 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xedf30a87 security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0xee10a473 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xee33232a kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xee39e773 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xee4cc3e4 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee8d7539 cpdma_chan_start +EXPORT_SYMBOL_GPL vmlinux 0xee9d1ed1 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xeea793af devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xeeb6311b uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xeeb89bb0 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xeec18bf7 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xeed039b9 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xeed50ccd dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run +EXPORT_SYMBOL_GPL vmlinux 0xeef6635a sm501_modify_reg +EXPORT_SYMBOL_GPL vmlinux 0xef1e2c3b vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xef2679f2 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xef2ba56c mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xef3f7664 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0xef422e09 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef51ed82 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xef63f9e4 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xef66075c usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6fafcb pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xef7c54f5 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xef7dcc9a nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xef82d518 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefb90498 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xefd19563 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xefd4544b crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xeff94c0f regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf008ff5b led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0xf015997b cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xf0356e91 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf04683f9 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0xf0472f05 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xf0539979 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xf06ac653 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xf06b9810 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf07e3937 i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0xf0835dfb pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xf086f07b pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0xf089f274 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf09a5d84 fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0xf0a46a68 mtd_ooblayout_free +EXPORT_SYMBOL_GPL vmlinux 0xf0abacc3 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL vmlinux 0xf0ac8e72 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0xf0dadbb5 sdhci_alloc_host +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf108fb0d ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0xf12caf22 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xf12fef67 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xf132b64a crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xf157422a da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xf1752036 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1938579 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xf19d1fb7 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0xf1a017d7 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xf1a1ced6 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1b8a130 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xf1bbaf8a snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf1c346b6 nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xf1d2d19f ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xf1ea3013 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xf1f16c9e unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xf1f919d5 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xf2008fa6 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xf210d1f9 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xf2154247 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf27e403f wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xf27ea236 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xf27f3ece akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf28178c3 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xf282b2ad sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xf28f0043 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0xf2918385 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xf29b9f17 vfs_readf +EXPORT_SYMBOL_GPL vmlinux 0xf2a207f1 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2b0ab83 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf2d96cc3 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0xf2e2d016 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0xf2f00393 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xf2f65182 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf2ff9f99 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30d1c32 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf317e3ab netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xf318109d tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf337b2c0 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf3433531 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xf345b494 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xf362f7df mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf396dc77 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xf3a855b6 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf3b09633 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3c4eb49 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xf3c815e4 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xf3cb98b6 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xf3dd9ff7 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xf3ee66d1 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3f6e8c6 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xf40726e0 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xf40f3382 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xf4203195 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xf42b5014 extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xf441a777 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xf44f9809 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xf455d082 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xf45f8aa6 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xf4656ba4 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xf467ec23 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xf47ac433 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL vmlinux 0xf47e3449 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xf481e810 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xf48707ae ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xf487b806 cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xf48ceebd net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf4907b2a blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4bc7a9f extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xf4c2753b snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL vmlinux 0xf4cce14b pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xf4dacd70 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf50c27ae devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xf50edafb devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xf5378eb1 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf58b560f spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf5974a72 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xf59f0089 pin_is_valid +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5bddf1f validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xf5c503f4 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xf5ca85a0 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xf5d3ad7a usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xf5d5f623 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xf5e9d5eb kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xf5f35bd2 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xf5fe1d0d nvdimm_clear_from_poison_list +EXPORT_SYMBOL_GPL vmlinux 0xf6026d2c fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xf61156bc mtk_smi_larb_get +EXPORT_SYMBOL_GPL vmlinux 0xf61baa65 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf651c209 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xf65f7961 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xf66d283c __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xf678443a irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf681d665 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0xf6ac8037 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xf6c66c9d devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6e3ed35 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xf6e4719b snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL vmlinux 0xf6e65c32 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6ea180e __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks +EXPORT_SYMBOL_GPL vmlinux 0xf6fb80ca spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xf70285ef shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf709583c da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xf72fd1d2 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xf7379d1f of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xf742bfbe mmput +EXPORT_SYMBOL_GPL vmlinux 0xf74e981a platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xf76b0a59 read_current_timer +EXPORT_SYMBOL_GPL vmlinux 0xf7717854 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xf772ccc6 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf778c448 dev_pm_opp_set_regulator +EXPORT_SYMBOL_GPL vmlinux 0xf791616a subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf795b87c crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xf7b47b3e kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0xf7c0f307 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xf7c6e452 usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0xf7d392a0 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xf7eb43ae sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0xf8122822 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xf819d37e snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0xf821ba61 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0xf8287c51 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf834186e snd_soc_card_jack_new +EXPORT_SYMBOL_GPL vmlinux 0xf846506f irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf8690cdb put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xf876baab dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf8860733 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xf8873058 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf89365a0 open_check_o_direct +EXPORT_SYMBOL_GPL vmlinux 0xf8ad458c snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0xf8bd364e dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0xf8c3f0ce usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xf8d14296 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xf8dc0a1d of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf905ea85 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0xf922ff8d relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf933a458 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xf940bed2 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xf941780f ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xf95206ca kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf9763048 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xf9863886 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf991cd78 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xf997cb47 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf99c8935 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a66703 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9ccfab5 snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL vmlinux 0xf9f0f41f dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xfa0053d1 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfa092f79 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xfa0e10a5 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa33a46e dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xfa34f76b regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xfa4bd972 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xfa656558 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0xfaab9551 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xfab74e84 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xfab960c2 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0xfabdc193 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL_GPL vmlinux 0xfae71413 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL vmlinux 0xfaeccb27 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xfaf206d2 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xfafe15ce reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb89f384 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfb93c3cd uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xfb94f014 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbbff414 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0xfbc7f2d1 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xfbcc69ca mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL vmlinux 0xfbcf19fc pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xfbe2ddca remove_resource +EXPORT_SYMBOL_GPL vmlinux 0xfbf18533 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xfbf53189 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc1a8d09 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xfc3973d8 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xfc39c3b7 phy_get +EXPORT_SYMBOL_GPL vmlinux 0xfc4d6fcd ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xfc4d8be1 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xfc4ec08b pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xfc560179 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xfc62deef firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xfc74ff84 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xfc81ccdf fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xfc95943a enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xfc9a2349 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xfcabbfbb fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xfcb05f07 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xfcbc2443 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xfd2a51b9 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xfd41c7ce btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xfd5d7873 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xfd9be209 snd_soc_limit_volume +EXPORT_SYMBOL_GPL vmlinux 0xfda8a1e0 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xfdac0bf7 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xfdae9bd8 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0xfdb46644 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xfde1a33e klist_prev +EXPORT_SYMBOL_GPL vmlinux 0xfe009c06 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xfe16ff76 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xfe4aba16 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0xfe514553 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xfe5b0149 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xfe5b78d1 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xfe5c9711 cap_mmap_file +EXPORT_SYMBOL_GPL vmlinux 0xfe98fcb5 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfeb1c1c7 devm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0xfeb3d989 get_device +EXPORT_SYMBOL_GPL vmlinux 0xfeba45ce ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xfec8724f ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed27236 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff254a80 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff295f54 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xff45a23e irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xff483856 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff5c21e4 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xff648d60 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xff772ec8 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xff7d6d03 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xff8cdd22 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xff9c9780 of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xffaa4e44 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffb8e070 snd_soc_remove_platform +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffcb3187 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xffce8e23 omap_dm_timer_trigger +EXPORT_SYMBOL_GPL vmlinux 0xffd09b08 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xffe17893 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xffe49b34 sdhci_free_host +EXPORT_SYMBOL_GPL vmlinux 0xffe94384 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xfff0a7ce sysfs_update_group --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/armhf/generic-lpae.compiler +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/armhf/generic-lpae.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 6.2.0-5ubuntu12) 6.2.0 20161005 --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/armhf/generic-lpae.modules +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/armhf/generic-lpae.modules @@ -0,0 +1,4747 @@ +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_dw +8250_moxa +8250_omap +8250_uniphier +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +DAC960 +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +ablk_helper +acard-ahci +acecad +acenic +act200l-sir +act8865-regulator +act8945a +act8945a-regulator +act8945a_charger +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5761 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7606_par +ad7606_spi +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +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 +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adf7242 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16209 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +aes-arm +aes-arm-bs +aes-arm-ce +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +afe4403 +afe4404 +affs +afs +ah4 +ah6 +ahci +ahci_ceva +ahci_mvebu +ahci_qoriq +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am2315 +am35x +am53c974 +amba-pl010 +ambakmi +amc6821 +amd +amd5536udc +amd8111e +amdgpu +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 +analogix_dp-rockchip +anatop-regulator +ansi_cprng +anubis +aoe +apbps2 +apds9300 +apds9802als +apds990x +apds9960 +appledisplay +appletalk +appletouch +applicom +aquantia +ar1021_i2c +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arcpgu +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arm_big_little +arm_big_little_dt +arm_mhu +arm_scpi +armada +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +asc7621 +ascot2e +asix +ast +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atlas-ph-sensor +atm +atmel +atmel-flexcom +atmel-hlcdc +atmel-hlcdc-dc +atmel_captouch +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avmfritz +ax25 +ax88179_178a +ax88796 +axp20x +axp20x-i2c +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1pci +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bL_switcher_dummy_if +bam_dma +bas_gigaset +batman-adv +baycom_epp +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bcm-keypad +bcm-phy-lib +bcm203x +bcm3510 +bcm47xxsflash +bcm590xx +bcm590xx-regulator +bcm5974 +bcm63138_nand +bcm6368_nand +bcm63xx_uart +bcm7xxx +bcm87xx +bcma +bcmsysport +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +berlin2-adc +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780 +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bma220_spi +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmc150_magn_i2c +bmc150_magn_spi +bmg160_core +bmg160_i2c +bmg160_spi +bmi160_core +bmi160_i2c +bmi160_spi +bmp085 +bmp085-i2c +bmp085-spi +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bonding +bpa10x +bpck +bpck6 +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +bq27xxx_battery_i2c +br2684 +br_netfilter +brcmfmac +brcmnand +brcmsmac +brcmstb_nand +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +cachefiles +cadence-quadspi +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +cap11xx +capi +capidrv +capmode +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 +cciss +ccm +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +cec +cec-edid +ceph +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipone_icn8318 +chnl_net +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +clip +clk-cdce706 +clk-cdce925 +clk-cs2000-cp +clk-exynos-audss +clk-hi3519 +clk-max77686 +clk-max77802 +clk-palmas +clk-pwm +clk-qcom +clk-rk808 +clk-s2mps11 +clk-scpi +clk-si514 +clk-si5351 +clk-si570 +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 +cma3000_d0x +cma3000_d0x_i2c +cmac +cmtp +cnic +cobalt +cobra +coda +colibri-vf50-ts +com20020 +com20020-pci +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_parport +comedi_pci +comedi_test +comedi_usb +comm +configfs +contec_pci_dio +cordic +core +cp210x +cpia2 +cppi41 +cpu-notifier-error-inject +cpufreq_schedutil +cramfs +crc-itu-t +crc32_generic +crc7 +crc8 +cros_ec +cros_ec_devs +cros_ec_i2c +cros_ec_keyb +cros_ec_spi +cryptd +crypto_engine +crypto_user +cryptoloop +cs3308 +cs5345 +cs53l32a +cs89x0 +csiostor +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +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 +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cxgbit +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +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-regulator +da9063_onkey +da9063_wdt +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 +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +ddbridge +de2104x +decnet +deflate +defxx +denali +denali_dt +denali_pci +des_generic +designware_i2s +designware_pcm +devlink +dgnc +dh_generic +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +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-verity +dm-zero +dm1105 +dm9000 +dm9601 +dme1737 +dmfe +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +dove_thermal +dp83848 +dp83867 +drbd +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1803 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +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-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +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_usb_v2 +dw-hdmi +dw-hdmi-ahb-audio +dw-mipi-dsi +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_hdmi-imx +dw_hdmi-rockchip +dw_mmc +dw_mmc-exynos +dw_mmc-k3 +dw_mmc-pci +dw_mmc-pltfm +dw_mmc-rockchip +dw_wdt +dwc3 +dwc3-exynos +dwc3-of-simple +dwc3-omap +dwc3-pci +dwc_eth_qos +dwmac-generic +dwmac-ipq806x +dwmac-meson +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 +ecdh_generic +echainiv +echo +edac_core +edt-ft5x06 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efs +egalax_ts +egalax_ts_serial +ehci-msm +ehci-omap +ehset +elan_i2c +elo +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emac_arc +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +emif +empeg +ems_pci +ems_usb +emu10k1-gp +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +eni +enic +epat +epia +epic100 +eql +esas2r +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max3355 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +exynos-gsc +exynos-rng +exynos_adc +exynosdrm +ezusb +f2fs +f71805f +f71882fg +f75375s +f81232 +fakelb +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_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 +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdp +fdp_i2c +fealnx +ff-memless +fid +firedtv +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fl512 +fld +flexcan +flexfb +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fou6 +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fsl-dcu-drm +fsl-edma +fsl_lpuart +ft6236 +ftdi-elan +ftdi_sio +ftgmac100 +ftl +ftmac100 +ftsteutates +fujitsu_ts +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 +gcc-apq8084 +gcc-ipq4019 +gcc-ipq806x +gcc-msm8660 +gcc-msm8916 +gcc-msm8960 +gcc-msm8974 +gcc-msm8996 +gcm +gdmtty +gdmulte +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +gf2k +gfs2 +ghash-arm-ce +ghash-generic +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-addr-flash +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-altera +gpio-amd8111 +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-fan +gpio-grgpio +gpio-ir-recv +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-max77620 +gpio-mc33880 +gpio-mcp23s08 +gpio-menz127 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-pisosr +gpio-rcar +gpio-rdc321x +gpio-regulator +gpio-syscon +gpio-tpic2810 +gpio-tps65086 +gpio-tps65218 +gpio-tps65912 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gpio_wdt +gr_udc +grace +grcan +gre +grip +grip_mp +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 +gtco +gtp +guillemot +gunze +hackrf +hamachi +hampshire +hanwang +hci +hci_uart +hci_vhci +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcd +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdma +hdma_mgmt +hdpvr +he +helene +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hi6220-mailbox +hi6220_reset +hi6421-pmic-core +hi6421-regulator +hi655x-pmic +hi655x-regulator +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-asus +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-cmedia +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-led +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +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-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +highbank-cpufreq +highbank_l2_edac +highbank_mc_edac +hih6130 +hip04_eth +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi-rng +hisi-sfc +hisi504_nand +hisi_femac +hisi_powerkey +hisi_thermal +hix5hd2_gmac +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hnae +hns_dsaf +hns_enet_drv +hns_mdio +hopper +horus3a +hostap +hostap_pci +hostap_plx +hp03 +hp100 +hp206c +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +htc-pasic3 +htu21 +huawei_cdc_ncm +hwa-hc +hwa-rc +hwmon-vid +hwspinlock_core +hx8357 +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-axxia +i2c-cbus-gpio +i2c-cros-ec-tunnel +i2c-demux-pinctrl +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-emev2 +i2c-exynos5 +i2c-gpio +i2c-hid +i2c-hix5hd2 +i2c-i801 +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-meson +i2c-mt65xx +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-pinctrl +i2c-mux-reg +i2c-mv64xxx +i2c-nforce2 +i2c-nomadik +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-piix4 +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-xiic +i40e +i40evf +i40iw +i5k_amb +i6300esb +i740fb +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibmaem +ibmpex +icp_multi +icplus +ics932s401 +idma64 +idmouse +idt77252 +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ifi_canfd +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-hrtimer +iio-trig-interrupt +iio-trig-loop +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +img-i2s-in +img-i2s-out +img-parallel-out +img-spdif-in +img-spdif-out +imm +imon +impa7 +ims-pcu +imx-ipu-v3 +imx-ipuv3-crtc +imx-ldb +imx-tve +imx074 +imx6ul_tsc +imx_thermal +imxdrm +ina209 +ina2xx +ina2xx-adc +ina3221 +industrialio +industrialio-buffer-cb +industrialio-configfs +industrialio-sw-device +industrialio-sw-trigger +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +inno_hdmi +input-leds +input-polldev +int51x1 +intel-xway +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +interval_tree_test +inv-mpu6050 +inv-mpu6050-i2c +inv-mpu6050-spi +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +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_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_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 +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +iproc_nand +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-rx51 +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irqbypass +irtty-sir +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it87 +it913x +itd1000 +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +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 +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kmx61 +ko2iblnd +kobil_sct +ks0108 +ks7010 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksocklnd +ksz884x +ktti +kvaser_pci +kvaser_usb +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan78xx +lanai +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcc-ipq806x +lcc-msm8960 +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-aat1290 +leds-adp5520 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-is31fl32xx +leds-ktd2692 +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-ns2 +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libceph +libcfs +libcomposite +libcrc32c +libcxgb +libcxgbi +libertas +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +litelink-sir +lkkbd +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lms283gf05 +lms501kf03 +lmv +lnbh25 +lnbp21 +lnbp22 +lnet +lnet_selftest +lockd +locktorture +lov +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr2_nvm +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc2990 +ltc3589 +ltc3815 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lustre +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +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 +macb +macmodes +macsec +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mailbox-test +mali-dp +mantis +mantis_core +map_absent +map_ram +map_rom +marvell +marvell-cesa +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577-regulator +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max30100 +max3100 +max31722 +max31790 +max3421-hcd +max34440 +max44000 +max517 +max5487 +max5821 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77620-regulator +max77620_wdt +max77686-regulator +max77693-haptic +max77693-regulator +max77693_charger +max77802-regulator +max8649 +max8660 +max8688 +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 +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4131 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +mdc +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-gpio +mdio-hisi-femac +mdio-mux +mdio-mux-gpio +mdio-mux-mmioreg +me4000 +me_daq +media +mediatek-drm +mediatek-drm-hdmi +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +melfas_mip4 +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +meson-ir +meson-rng +meson_gxbb_wdt +meson_uart +meson_wdt +metro-usb +metronomefb +mf6x4 +mg_disk +mga +mgc +michael_mic +micrel +microchip +microread +microread_i2c +microtek +mii +minix +mip6 +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma7455_core +mma7455_i2c +mma7455_spi +mma7660 +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmcc-apq8084 +mmcc-msm8960 +mmcc-msm8974 +mmcc-msm8996 +mmci_qcom_dml +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpl115 +mpl115_i2c +mpl115_spi +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi001 +msi2500 +msm +msm-rng +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6323-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd_dataflash +mtdoops +mtdram +mtdswap +mtip32xx +mtk-pmic-wrap +mtk-quadspi +mtk-sd +mtk-vpu +mtk_ecc +mtk_nand +mtk_thermal +mtk_wdt +mtouch +multipath +multiq3 +musb_am335x +musb_dsps +mv643xx_eth +mv_cesa +mv_u3d_core +mv_udc +mvmdio +mvneta +mvpp2 +mvsas +mvsdio +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxc6255 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxser +mxuport +myri10ge +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nbpfaxi +nci +nci_spi +nci_uart +ncpfs +nct6683 +nct6775 +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +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_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfp_netvf +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_exthdr +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +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_tio +ni_tiocmd +ni_usb6501 +nicstar +nilfs2 +niu +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-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 +nosy +notifier-error-inject +nouveau +nozomi +nps_enet +ns558 +ns83820 +nsp32 +ntb +ntb_netdev +ntb_perf +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nvidiafb +nvme +nvme-core +nvme-fabrics +nvme-loop +nvme-rdma +nvmem_core +nvmem_qfprom +nvmem_rockchip_efuse +nvmet +nvmet-rdma +nvram +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxt200x +nxt6000 +obdclass +obdecho +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_xilinx_wdt +old_belkin-sir +omap +omap-aes +omap-des +omap-mailbox +omap-ocp2scp +omap-rng +omap-sham +omap2430 +omap4-keypad +omap_hdq +omap_hwspinlock +omap_wdt +omapdss +omapfb +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +orion_nand +orion_wdt +osc +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +palmas-pwrbutton +palmas-regulator +palmas_gpadc +pandora_bl +panel +panel-lg-lg4573 +panel-panasonic-vvx10f034n00 +panel-samsung-ld9040 +panel-samsung-s6e8aa0 +panel-sharp-lq101r1sx01 +panel-sharp-ls043t1le01 +panel-simple +parade-ps8622 +parallel-display +paride +parkbd +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 +pbias-regulator +pc300too +pc87360 +pc87427 +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-stub +pci200syn +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmda12 +pcmmio +pcmuio +pcnet32 +pcrypt +pcwd_pci +pcwd_usb +pd +pda_power +pdc_adma +peak_pci +peak_usb +pegasus +pegasus_notetaker +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-am335x +phy-am335x-control +phy-bcm-kona-usb2 +phy-berlin-sata +phy-berlin-usb +phy-dm816x-usb +phy-exynos-usb2 +phy-exynos5-usbdrd +phy-gpio-vbus-usb +phy-hix5hd2-sata +phy-isp1301 +phy-msm-usb +phy-mt65xx-usb3 +phy-omap-control +phy-omap-usb2 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-qcom-8x16-usb +phy-qcom-apq8064-sata +phy-qcom-ipq806x-sata +phy-qcom-ufs +phy-qcom-ufs-qmp-14nm +phy-qcom-ufs-qmp-20nm +phy-rcar-gen2 +phy-rcar-gen3-usb2 +phy-rockchip-dp +phy-rockchip-emmc +phy-rockchip-usb +phy-tahvo +phy-ti-pipe3 +phy-tusb1210 +phy-twl4030-usb +phy-twl6030-usb +physmap +physmap_of +physmap_of_versatile +pinctrl-apq8064 +pinctrl-apq8084 +pinctrl-ipq4019 +pinctrl-ipq8064 +pinctrl-max77620 +pinctrl-mdm9615 +pinctrl-msm8660 +pinctrl-msm8916 +pinctrl-msm8960 +pinctrl-msm8996 +pinctrl-msm8x74 +pinctrl-spmi-gpio +pinctrl-spmi-mpp +pinctrl-ssbi-gpio +pinctrl-ssbi-mpp +pinctrl-uniphier-ld11 +pinctrl-uniphier-ld20 +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl172 +pl2303 +pl330 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8921-core +pm8941-pwrkey +pm8941-wled +pm8xxx-vibrator +pmbus +pmbus_core +pmc551 +pmcraid +pmic8xxx-keypad +pmic8xxx-pwrkey +pn533 +pn533_i2c +pn533_usb +pn544 +pn544_i2c +pn_pep +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 +prism2_usb +ps2mult +psmouse +psnap +pt +ptlrpc +pulse8-cec +pulsedlight-lidar-lite-v2 +pv88060-regulator +pv88080-regulator +pv88090-regulator +pvrusb2 +pwc +pwm-atmel-hlcdc +pwm-beeper +pwm-berlin +pwm-cros-ec +pwm-fan +pwm-fsl-ftm +pwm-lp3943 +pwm-mtk-disp +pwm-omap-dmtimer +pwm-pca9685 +pwm-rcar +pwm-regulator +pwm-renesas-tpu +pwm-rockchip +pwm-samsung +pwm-twl +pwm-twl-led +pwm_bl +pwrseq_emmc +pwrseq_simple +pxa168_eth +pxa27x_udc +pxa3xx_nand +qcaspi +qcaux +qcom-coincell +qcom-spmi-iadc +qcom-spmi-pmic +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom-wdt +qcom_gsbi +qcom_hwspinlock +qcom_mdt_loader +qcom_nandc +qcom_q6v5_pil +qcom_rpm +qcom_rpm-regulator +qcom_smbb +qcom_smd-regulator +qcom_spmi-regulator +qcrypto +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qoriq-cpufreq +qrtr +qrtr-smd +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ravb +raw +raydium_i2c_ts +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +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-behold +rc-behold-columbus +rc-budget-ci-old +rc-cec +rc-cinergy +rc-cinergy-1400 +rc-core +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-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-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +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-pctv-sedna +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-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-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rcar-dmac +rcar-du-drm +rcar-fcp +rcar-vin +rcar_can +rcar_canfd +rcar_jpu +rcar_thermal +rcuperf +rdc321x-southbridge +rdma_cm +rdma_rxe +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +reboot-mode +redboot +redrat3 +regmap-spmi +regulator-haptic +reiserfs +remoteproc +renesas_usbhs +renesas_wdt +reset-ti-syscon +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio500 +rivafb +rj54n1cb0c +rk808 +rk808-regulator +rmd128 +rmd160 +rmd256 +rmd320 +rmi_core +rmi_i2c +rmi_spi +rmobile-reset +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rockchip-io-domain +rockchip_saradc +rockchip_thermal +rockchip_vop_reg +rockchipdrm +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-armada38x +rtc-as3722 +rtc-bq32k +rtc-bq4802 +rtc-cmos +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-hid-sensor-time +rtc-hym8563 +rtc-isl12022 +rtc-isl12057 +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-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-pl030 +rtc-pm8xxx +rtc-r9701 +rtc-rc5t583 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx6110 +rtc-rx8010 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-snvs +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 +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3c-fb +s3c2410_wdt +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s5p-cec +s5p-g2d +s5p-hdmi +s5p-hdmiphy +s5p-jpeg +s5p-mfc +s5p-mixer +s5p-sdo +s5p-sii9234 +s5p-sss +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7706h +safe_serial +salsa20_generic +samsung +samsung-keypad +samsung-sxgbe +sata_dwc_460ex +sata_highbank +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 +savage +savagefb +sbp_target +sbs-battery +sc16is7xx +sc92031 +sca3000 +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +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_tbf +sch_teql +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 +sctp_probe +sdhci-dove +sdhci-msm +sdhci-of-arasan +sdhci-of-at91 +sdhci-pci +sdhci-pxav3 +sdhci-s3c +sdhci_f_sdh30 +sdio_uart +seed +sensorhub +ser_gigaset +serial2002 +serial_mctrl_gpio +serio_raw +sermouse +serpent_generic +serport +ses +sfc +sh-sci +sh_eth +sh_keysc +sh_mmcif +sh_mobile_ceu_camera +sh_mobile_csi2 +sh_mobile_lcdcfb +sh_mobile_meram +sh_mobile_sdhi +sh_veu +sh_vou +sha1-arm +sha1-arm-ce +sha1-arm-neon +sha2-arm-ce +sha256-arm +sha3_generic +sha512-arm +shark2 +shdma +shmob-drm +sht15 +sht21 +sht3x +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sii902x +sil164 +silead +sir-dev +sis190 +sis5595 +sis900 +sis_i2c +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +slcan +slip +slram +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smc911x +smc91x +smd +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-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-firewire-digi00x +snd-firewire-lib +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-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-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-ac97 +snd-soc-acp-pcm +snd-soc-adau1701 +snd-soc-adau7002 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-apq8016-sbc +snd-soc-armada-370-db +snd-soc-arndale-rt5631 +snd-soc-bt-sco +snd-soc-cs35l32 +snd-soc-cs35l33 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +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-cs4349 +snd-soc-cs53l30 +snd-soc-davinci-mcasp +snd-soc-es8328 +snd-soc-fsi +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-hdmi-codec +snd-soc-i2s +snd-soc-idma +snd-soc-imx-audmux +snd-soc-inno-rk3036 +snd-soc-kirkwood +snd-soc-lpass-apq8016 +snd-soc-lpass-cpu +snd-soc-lpass-ipq806x +snd-soc-lpass-platform +snd-soc-max98090 +snd-soc-max98095 +snd-soc-max98357a +snd-soc-max98504 +snd-soc-max9860 +snd-soc-omap-hdmi-audio +snd-soc-pcm +snd-soc-pcm1681 +snd-soc-pcm179x-codec +snd-soc-pcm179x-i2c +snd-soc-pcm179x-spi +snd-soc-pcm3168a +snd-soc-pcm3168a-i2c +snd-soc-pcm3168a-spi +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rcar +snd-soc-rl6231 +snd-soc-rockchip-i2s +snd-soc-rockchip-max98090 +snd-soc-rockchip-rt5645 +snd-soc-rockchip-spdif +snd-soc-rsrc-card +snd-soc-rt5616 +snd-soc-rt5631 +snd-soc-rt5645 +snd-soc-rx51 +snd-soc-s3c-dma +snd-soc-samsung-spdif +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-simple-card-utils +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-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-tas5086 +snd-soc-tas571x +snd-soc-tas5720 +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm-hubs +snd-soc-wm8510 +snd-soc-wm8523 +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-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8960 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-wm8994 +snd-soc-xtfpga-i2s +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 +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +soc_scale_crop +softdog +softing +solo6x10 +solos-pci +sony-btf-mpx +sp2 +sp805_wdt +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +speedfax +speedtch +spi-altera +spi-axi-spi-engine +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-loopback-test +spi-meson-spifc +spi-mt65xx +spi-nor +spi-oc-tiny +spi-orion +spi-pl022 +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-qup +spi-rockchip +spi-rspi +spi-s3c64xx +spi-sc18is602 +spi-sh-hspi +spi-sh-msiof +spi-ti-qspi +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spmi +spmi-pmic-arb +sr9700 +sr9800 +ssb +ssbi +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-asc +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st95hf +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_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 +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm32-usart +stm_console +stm_core +stm_heartbeat +stmmac +stmmac-platform +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sudmac +sun4i-codec +sun4i-i2s +sun4i-spdif +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +surface3_spi +svgalib +sx8 +sx8654 +sx9500 +sym53c8xx +symbolserial +synaptics_i2c +synaptics_usb +synclink_gt +synclinkmp +syscon-reboot-mode +syscopyarea +sysfillrect +sysimgblt +sysv +t1pci +t5403 +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 +tc358767 +tc3589x-keypad +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_nv +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teranetics +test-kprobes +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_hash +test_hexdump +test_module +test_power +test_static_key_base +test_static_keys +test_udelay +test_user_copy +test_uuid +tg3 +tgr192 +thermal-generic-adc +thmc50 +thunderbolt +ti-adc081c +ti-adc0832 +ti-adc128s052 +ti-ads1015 +ti-ads8688 +ti-cal +ti-soc-thermal +ti-vpe +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_hecc +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +tilcdc +timeriomem-rng +tipc +tlan +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmio_mmc +tmio_mmc_core +tmio_nand +tmiofb +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +torture +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm-rng +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tpm_tis_core +tpm_tis_spi +tpm_vtpm_proxy +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65086 +tps65086-regulator +tps65090-charger +tps65090-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tusb6010 +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw686x +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish_common +twofish_generic +typhoon +u132-hcd +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-dwc +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +umc +umem +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 +us5182d +usb-dmac +usb-serial-simple +usb-storage +usb3503 +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_uac2 +usb_f_uvc +usb_gigaset +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 +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +v4l2-tpg +vcan +vcnl4000 +veml6070 +ves1820 +ves1x93 +veth +vexpress-hwmon +vexpress-regulator +vexpress-spc-cpufreq +vf610_adc +vf610_dac +vfio +vfio-amba +vfio-pci +vfio-platform +vfio-platform-amdxgbe +vfio-platform-base +vfio-platform-calxedaxgmac +vfio_virqfd +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +vhost_vsock +via +via-rhine +via-sdmmc +via-velocity +via686a +videobuf-core +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videodev +vim2m +viperboard +viperboard_adc +virtio-gpu +virtio-rng +virtio_blk +virtio_input +virtio_net +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vrf +vringh +vsock +vsp1 +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5100-spi +w5300 +w6692 +w83627ehf +w83627hf +w83781d +w83791d +w83792d +w83793 +w83795 +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +wanxl +warrior +wcn36xx +wcnss_ctrl +wd719x +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wilc1000 +wilc1000-sdio +wilc1000-spi +wimax +winbond-840 +wire +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 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x_tables +xc4000 +xc5000 +xcbc +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xgmac +xhci-mtk +xhci-plat-hcd +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx_uartps +xillybus_core +xillybus_of +xillybus_pcie +xor +xor-neon +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +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 +xz_dec_test +yam +yealink +yellowfin +yurex +z3fold +zaurus +zd1201 +zd1211rw +zforce_ts +zhenhua +ziirave_wdt +zl10036 +zl10039 +zl10353 +zl6100 +zr364xx +zram +zynq-fpga --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/armhf/generic.compiler +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/armhf/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 6.2.0-5ubuntu12) 6.2.0 20161005 --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/armhf/generic.modules +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/armhf/generic.modules @@ -0,0 +1,4848 @@ +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_dw +8250_moxa +8250_omap +8250_uniphier +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +DAC960 +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +ablk_helper +acard-ahci +acecad +acenic +act200l-sir +act8865-regulator +act8945a +act8945a-regulator +act8945a_charger +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5761 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7606_par +ad7606_spi +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +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 +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adf7242 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16209 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +aes-arm +aes-arm-bs +aes-arm-ce +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +afe4403 +afe4404 +affs +afs +ah4 +ah6 +ahci +ahci_ceva +ahci_mvebu +ahci_qoriq +ahci_tegra +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am2315 +am35x +am53c974 +amba-pl010 +ambakmi +amc6821 +amd +amd5536udc +amd8111e +amdgpu +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 +analogix_dp-rockchip +anatop-regulator +ansi_cprng +anubis +aoe +apbps2 +apds9300 +apds9802als +apds990x +apds9960 +appledisplay +appletalk +appletouch +applicom +aquantia +ar1021_i2c +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arcpgu +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arm_big_little +arm_big_little_dt +arm_mhu +arm_scpi +armada +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +asc7621 +ascot2e +asix +ast +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atlas-ph-sensor +atm +atmel +atmel-flexcom +atmel-hlcdc +atmel-hlcdc-dc +atmel_captouch +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avmfritz +ax25 +ax88179_178a +ax88796 +axp20x +axp20x-i2c +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1pci +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bL_switcher_dummy_if +bam_dma +bas_gigaset +batman-adv +baycom_epp +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bcm-keypad +bcm-phy-lib +bcm203x +bcm3510 +bcm47xxsflash +bcm590xx +bcm590xx-regulator +bcm5974 +bcm63138_nand +bcm6368_nand +bcm63xx_uart +bcm7xxx +bcm87xx +bcma +bcmsysport +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +berlin2-adc +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780 +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bma220_spi +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmc150_magn_i2c +bmc150_magn_spi +bmg160_core +bmg160_i2c +bmg160_spi +bmi160_core +bmi160_i2c +bmi160_spi +bmp085 +bmp085-i2c +bmp085-spi +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bonding +bpa10x +bpck +bpck6 +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +bq27xxx_battery_i2c +br2684 +br_netfilter +brcmfmac +brcmnand +brcmsmac +brcmstb_nand +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +caam +caam_jr +caam_pkc +caamalg +caamhash +caamrng +cachefiles +cadence-quadspi +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +cap11xx +capi +capidrv +capmode +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 +cciss +ccm +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +cec +cec-edid +ceph +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipone_icn8318 +chnl_net +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +clip +clk-cdce706 +clk-cdce925 +clk-cs2000-cp +clk-exynos-audss +clk-hi3519 +clk-max77686 +clk-max77802 +clk-palmas +clk-pwm +clk-qcom +clk-rk808 +clk-s2mps11 +clk-scpi +clk-si514 +clk-si5351 +clk-si570 +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 +cma3000_d0x +cma3000_d0x_i2c +cmac +cmt_speech +cmtp +cnic +cobalt +cobra +coda +colibri-vf50-ts +com20020 +com20020-pci +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_parport +comedi_pci +comedi_test +comedi_usb +comm +configfs +contec_pci_dio +cordic +core +cp210x +cpia2 +cppi41 +cpu-notifier-error-inject +cpufreq_schedutil +cramfs +crc-itu-t +crc32_generic +crc7 +crc8 +cros_ec +cros_ec_devs +cros_ec_i2c +cros_ec_keyb +cros_ec_spi +cryptd +crypto_engine +crypto_user +cryptoloop +cs3308 +cs5345 +cs53l32a +cs89x0 +csiostor +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +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 +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cxgbit +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da8xx-fb +da9030_battery +da9034-ts +da903x +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-regulator +da9063_onkey +da9063_wdt +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 +davinci_emac +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +ddbridge +de2104x +decnet +deflate +defxx +denali +denali_dt +denali_pci +des_generic +designware_i2s +designware_pcm +devlink +dgnc +dh_generic +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +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-verity +dm-zero +dm1105 +dm9000 +dm9601 +dme1737 +dmfe +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +dove_thermal +dp83848 +dp83867 +drbd +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1803 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +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-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +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_usb_v2 +dw-hdmi +dw-hdmi-ahb-audio +dw-mipi-dsi +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_hdmi-imx +dw_hdmi-rockchip +dw_mmc +dw_mmc-exynos +dw_mmc-k3 +dw_mmc-pci +dw_mmc-pltfm +dw_mmc-rockchip +dw_wdt +dwc3 +dwc3-exynos +dwc3-of-simple +dwc3-omap +dwc3-pci +dwc_eth_qos +dwmac-generic +dwmac-ipq806x +dwmac-meson +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 +ecdh_generic +echainiv +echo +edac_core +edt-ft5x06 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efs +egalax_ts +egalax_ts_serial +ehci-msm +ehci-mxc +ehci-omap +ehci-tegra +ehset +elan_i2c +elo +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emac_arc +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +emif +empeg +ems_pci +ems_usb +emu10k1-gp +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +eni +enic +epat +epia +epic100 +eql +esas2r +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +etnaviv +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max3355 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +exynos-gsc +exynos-rng +exynos_adc +exynosdrm +ezusb +f2fs +f71805f +f71882fg +f75375s +f81232 +fakelb +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_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 +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdp +fdp_i2c +fealnx +ff-memless +fid +firedtv +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fl512 +fld +flexcan +flexfb +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fou6 +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fsl-dcu-drm +fsl-edma +fsl-mph-dr-of +fsl-quadspi +fsl_lpuart +fsl_pq_mdio +fsl_usb2_udc +ft6236 +ftdi-elan +ftdi_sio +ftgmac100 +ftl +ftmac100 +ftsteutates +fujitsu_ts +fusb300_udc +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 +gcc-apq8084 +gcc-ipq4019 +gcc-ipq806x +gcc-msm8660 +gcc-msm8916 +gcc-msm8960 +gcc-msm8974 +gcc-msm8996 +gcm +gdmtty +gdmulte +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +gf2k +gfs2 +ghash-arm-ce +ghash-generic +gianfar_driver +gianfar_ptp +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-addr-flash +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-altera +gpio-amd8111 +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-fan +gpio-grgpio +gpio-ir-recv +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-max77620 +gpio-mc33880 +gpio-mcp23s08 +gpio-menz127 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-pisosr +gpio-rcar +gpio-rdc321x +gpio-regulator +gpio-syscon +gpio-tpic2810 +gpio-tps65086 +gpio-tps65218 +gpio-tps65912 +gpio-ts4800 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gpio_wdt +gpmi_nand +gr_udc +grace +grcan +gre +grip +grip_mp +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 +gtco +gtp +guillemot +gunze +hackrf +hamachi +hampshire +hanwang +hci +hci_uart +hci_vhci +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcd +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdma +hdma_mgmt +hdpvr +he +helene +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hi6220-mailbox +hi6220_reset +hi6421-pmic-core +hi6421-regulator +hi655x-pmic +hi655x-regulator +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-asus +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-cmedia +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-led +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +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-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hifn_795x +highbank-cpufreq +highbank_l2_edac +highbank_mc_edac +hih6130 +hip04_eth +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi-rng +hisi-sfc +hisi504_nand +hisi_femac +hisi_powerkey +hisi_thermal +hix5hd2_gmac +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hnae +hns_dsaf +hns_enet_drv +hns_mdio +hopper +horus3a +host1x +hostap +hostap_pci +hostap_plx +hp03 +hp100 +hp206c +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +htc-pasic3 +htu21 +huawei_cdc_ncm +hwa-hc +hwa-rc +hwmon-vid +hwspinlock_core +hx8357 +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-cbus-gpio +i2c-cros-ec-tunnel +i2c-demux-pinctrl +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-emev2 +i2c-exynos5 +i2c-gpio +i2c-hid +i2c-hix5hd2 +i2c-i801 +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-meson +i2c-mt65xx +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-pinctrl +i2c-mux-reg +i2c-mv64xxx +i2c-nforce2 +i2c-nomadik +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-piix4 +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-tiny-usb +i2c-versatile +i2c-via +i2c-viapro +i2c-viperboard +i2c-xiic +i40e +i40evf +i40iw +i5k_amb +i6300esb +i740fb +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibmaem +ibmpex +icp_multi +icplus +ics932s401 +idma64 +idmouse +idt77252 +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ifi_canfd +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-hrtimer +iio-trig-interrupt +iio-trig-loop +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +img-i2s-in +img-i2s-out +img-parallel-out +img-spdif-in +img-spdif-out +imm +imon +impa7 +ims-pcu +imx-dma +imx-ipu-v3 +imx-ipuv3-crtc +imx-ldb +imx-sdma +imx-tve +imx074 +imx21-hcd +imx2_wdt +imx6q-cpufreq +imx6ul_tsc +imx7d_adc +imx_keypad +imx_thermal +imxdrm +imxfb +ina209 +ina2xx +ina2xx-adc +ina3221 +industrialio +industrialio-buffer-cb +industrialio-configfs +industrialio-sw-device +industrialio-sw-trigger +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +inno_hdmi +input-leds +input-polldev +int51x1 +intel-xway +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +interval_tree_test +inv-mpu6050 +inv-mpu6050-i2c +inv-mpu6050-spi +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +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_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_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 +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +iproc_nand +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-rx51 +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irq-ts4800 +irqbypass +irtty-sir +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it87 +it913x +itd1000 +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +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 +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kmx61 +ko2iblnd +kobil_sct +ks0108 +ks7010 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksocklnd +ksz884x +ktti +kvaser_pci +kvaser_usb +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan78xx +lanai +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcc-ipq806x +lcc-msm8960 +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-aat1290 +leds-adp5520 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-is31fl32xx +leds-ktd2692 +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-ns2 +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libceph +libcfs +libcomposite +libcrc32c +libcxgb +libcxgbi +libertas +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +litelink-sir +lkkbd +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lms283gf05 +lms501kf03 +lmv +lnbh25 +lnbp21 +lnbp22 +lnet +lnet_selftest +lockd +locktorture +lov +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr2_nvm +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc2990 +ltc3589 +ltc3815 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lustre +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +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 +macb +macmodes +macsec +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mailbox-test +mali-dp +mantis +mantis_core +map_absent +map_ram +map_rom +marvell +marvell-cesa +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577-regulator +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max30100 +max3100 +max31722 +max31790 +max3421-hcd +max34440 +max44000 +max517 +max5487 +max5821 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77620-regulator +max77620_wdt +max77686-regulator +max77693-haptic +max77693-regulator +max77693_charger +max77802-regulator +max8649 +max8660 +max8688 +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 +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4131 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +mdc +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-gpio +mdio-hisi-femac +mdio-mux +mdio-mux-gpio +mdio-mux-mmioreg +me4000 +me_daq +media +mediatek-drm +mediatek-drm-hdmi +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +melfas_mip4 +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +meson-ir +meson-rng +meson_gxbb_wdt +meson_uart +meson_wdt +metro-usb +metronomefb +mf6x4 +mg_disk +mga +mgc +michael_mic +micrel +microchip +microread +microread_i2c +microtek +mii +minix +mip6 +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma7455_core +mma7455_i2c +mma7455_spi +mma7660 +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmcc-apq8084 +mmcc-msm8960 +mmcc-msm8974 +mmcc-msm8996 +mmci_qcom_dml +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpl115 +mpl115_i2c +mpl115_spi +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi001 +msi2500 +msm +msm-rng +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6323-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd_dataflash +mtdoops +mtdram +mtdswap +mtip32xx +mtk-pmic-wrap +mtk-quadspi +mtk-sd +mtk-vpu +mtk_ecc +mtk_nand +mtk_thermal +mtk_wdt +mtouch +multipath +multiq3 +musb_am335x +musb_dsps +mv643xx_eth +mv_cesa +mv_u3d_core +mv_udc +mvmdio +mvneta +mvpp2 +mvsas +mvsdio +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc-scc +mxc4005 +mxc6255 +mxc_nand +mxc_w1 +mxcmmc +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxser +mxsfb +mxuport +myri10ge +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nbpfaxi +nci +nci_spi +nci_uart +ncpfs +nct6683 +nct6775 +nct7802 +nct7904 +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +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_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfp_netvf +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_exthdr +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +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_tio +ni_tiocmd +ni_usb6501 +nicstar +nilfs2 +niu +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-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 +nokia-modem +nosy +notifier-error-inject +nouveau +nozomi +nps_enet +ns558 +ns83820 +nsp32 +ntb +ntb_netdev +ntb_perf +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nvec +nvec_kbd +nvec_paz00 +nvec_power +nvec_ps2 +nvidiafb +nvme +nvme-core +nvme-fabrics +nvme-loop +nvme-rdma +nvmem-imx-ocotp +nvmem_core +nvmem_qfprom +nvmem_rockchip_efuse +nvmet +nvmet-rdma +nvram +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxt200x +nxt6000 +obdclass +obdecho +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_xilinx_wdt +ohci-omap3 +old_belkin-sir +omap +omap-aes +omap-des +omap-mailbox +omap-ocp2scp +omap-rng +omap-sham +omap-vout +omap2 +omap2430 +omap3-isp +omap3-rom-rng +omap4-iss +omap4-keypad +omap_hdq +omap_hwspinlock +omap_remoteproc +omap_ssi +omap_wdt +omapdss +omapfb +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +orion_nand +orion_wdt +osc +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +palmas-pwrbutton +palmas-regulator +palmas_gpadc +pandora_bl +panel +panel-lg-lg4573 +panel-panasonic-vvx10f034n00 +panel-samsung-ld9040 +panel-samsung-s6e8aa0 +panel-sharp-lq101r1sx01 +panel-sharp-ls043t1le01 +panel-simple +parade-ps8622 +parallel-display +paride +parkbd +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_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 +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-stub +pci200syn +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmda12 +pcmmio +pcmuio +pcnet32 +pcrypt +pcwd_pci +pcwd_usb +pd +pda_power +pdc_adma +peak_pci +peak_usb +pegasus +pegasus_notetaker +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-am335x +phy-am335x-control +phy-bcm-kona-usb2 +phy-berlin-sata +phy-berlin-usb +phy-dm816x-usb +phy-exynos-usb2 +phy-exynos5-usbdrd +phy-gpio-vbus-usb +phy-hix5hd2-sata +phy-isp1301 +phy-msm-usb +phy-mt65xx-usb3 +phy-omap-control +phy-omap-usb2 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-qcom-8x16-usb +phy-qcom-apq8064-sata +phy-qcom-ipq806x-sata +phy-qcom-ufs +phy-qcom-ufs-qmp-14nm +phy-qcom-ufs-qmp-20nm +phy-rcar-gen2 +phy-rcar-gen3-usb2 +phy-rockchip-dp +phy-rockchip-emmc +phy-rockchip-usb +phy-tahvo +phy-tegra-usb +phy-tegra-xusb +phy-ti-pipe3 +phy-tusb1210 +phy-twl4030-usb +phy-twl6030-usb +physmap +physmap_of +physmap_of_versatile +pinctrl-apq8064 +pinctrl-apq8084 +pinctrl-ipq4019 +pinctrl-ipq8064 +pinctrl-max77620 +pinctrl-mdm9615 +pinctrl-msm8660 +pinctrl-msm8916 +pinctrl-msm8960 +pinctrl-msm8996 +pinctrl-msm8x74 +pinctrl-spmi-gpio +pinctrl-spmi-mpp +pinctrl-ssbi-gpio +pinctrl-ssbi-mpp +pinctrl-uniphier-ld11 +pinctrl-uniphier-ld20 +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl172 +pl2303 +pl330 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8921-core +pm8941-pwrkey +pm8941-wled +pm8xxx-vibrator +pmbus +pmbus_core +pmc551 +pmcraid +pmic8xxx-keypad +pmic8xxx-pwrkey +pn533 +pn533_i2c +pn533_usb +pn544 +pn544_i2c +pn_pep +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 +prism2_usb +ps2mult +psmouse +psnap +pt +ptlrpc +pulse8-cec +pulsedlight-lidar-lite-v2 +pv88060-regulator +pv88080-regulator +pv88090-regulator +pvrusb2 +pwc +pwm-atmel-hlcdc +pwm-beeper +pwm-berlin +pwm-cros-ec +pwm-fan +pwm-fsl-ftm +pwm-imx +pwm-lp3943 +pwm-mtk-disp +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_bl +pwrseq_emmc +pwrseq_simple +pxa168_eth +pxa27x_udc +pxa3xx_nand +qcaspi +qcaux +qcom-coincell +qcom-spmi-iadc +qcom-spmi-pmic +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom-wdt +qcom_gsbi +qcom_hwspinlock +qcom_mdt_loader +qcom_nandc +qcom_q6v5_pil +qcom_rpm +qcom_rpm-regulator +qcom_smbb +qcom_smd-regulator +qcom_spmi-regulator +qcrypto +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qoriq-cpufreq +qrtr +qrtr-smd +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ravb +raw +raydium_i2c_ts +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +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-behold +rc-behold-columbus +rc-budget-ci-old +rc-cec +rc-cinergy +rc-cinergy-1400 +rc-core +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-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-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +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-pctv-sedna +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-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-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rcar-dmac +rcar-du-drm +rcar-fcp +rcar-vin +rcar_can +rcar_canfd +rcar_jpu +rcar_thermal +rcuperf +rdc321x-southbridge +rdma_cm +rdma_rxe +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +reboot-mode +redboot +redrat3 +regmap-spmi +regulator-haptic +reiserfs +remoteproc +renesas_usbhs +renesas_wdt +reset-ti-syscon +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio500 +rivafb +rj54n1cb0c +rk808 +rk808-regulator +rmd128 +rmd160 +rmd256 +rmd320 +rmi_core +rmi_i2c +rmi_spi +rmobile-reset +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rockchip-io-domain +rockchip_saradc +rockchip_thermal +rockchip_vop_reg +rockchipdrm +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-armada38x +rtc-as3722 +rtc-bq32k +rtc-bq4802 +rtc-cmos +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-hid-sensor-time +rtc-hym8563 +rtc-imxdi +rtc-isl12022 +rtc-isl12057 +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-mxc +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8563 +rtc-pcf8583 +rtc-pl030 +rtc-pm8xxx +rtc-r9701 +rtc-rc5t583 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx6110 +rtc-rx8010 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +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 +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3c-fb +s3c2410_wdt +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s5p-cec +s5p-g2d +s5p-hdmi +s5p-hdmiphy +s5p-jpeg +s5p-mfc +s5p-mixer +s5p-sdo +s5p-sii9234 +s5p-sss +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7706h +safe_serial +sahara +salsa20_generic +samsung +samsung-keypad +samsung-sxgbe +sata_dwc_460ex +sata_highbank +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 +savage +savagefb +sbp_target +sbs-battery +sc16is7xx +sc92031 +sca3000 +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +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_tbf +sch_teql +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 +sctp_probe +sdhci-dove +sdhci-msm +sdhci-of-arasan +sdhci-of-at91 +sdhci-pci +sdhci-pxav3 +sdhci-s3c +sdhci-tegra +sdhci_f_sdh30 +sdio_uart +seed +sensorhub +ser_gigaset +serial-tegra +serial2002 +serio_raw +sermouse +serpent_generic +serport +ses +sfc +sh-sci +sh_eth +sh_keysc +sh_mmcif +sh_mobile_ceu_camera +sh_mobile_csi2 +sh_mobile_lcdcfb +sh_mobile_meram +sh_mobile_sdhi +sh_veu +sh_vou +sha1-arm +sha1-arm-ce +sha1-arm-neon +sha2-arm-ce +sha256-arm +sha3_generic +sha512-arm +shark2 +shdma +shmob-drm +sht15 +sht21 +sht3x +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sii902x +sil164 +silead +sir-dev +sis190 +sis5595 +sis900 +sis_i2c +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +slcan +slic_ds26522 +slip +slram +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smc911x +smc91x +smd +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-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-ens1370 +snd-ens1371 +snd-firewire-digi00x +snd-firewire-lib +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-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-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-ac97 +snd-soc-acp-pcm +snd-soc-adau1701 +snd-soc-adau7002 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-alc5632 +snd-soc-apq8016-sbc +snd-soc-armada-370-db +snd-soc-arndale-rt5631 +snd-soc-bt-sco +snd-soc-cs35l32 +snd-soc-cs35l33 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +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-cs4349 +snd-soc-cs53l30 +snd-soc-davinci-mcasp +snd-soc-dmic +snd-soc-edma +snd-soc-es8328 +snd-soc-es8328-i2c +snd-soc-es8328-spi +snd-soc-eukrea-tlv320 +snd-soc-evm +snd-soc-fsi +snd-soc-fsl-asoc-card +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-utils +snd-soc-gtm601 +snd-soc-hdmi-codec +snd-soc-i2s +snd-soc-idma +snd-soc-imx-es8328 +snd-soc-imx-mc13783 +snd-soc-imx-spdif +snd-soc-imx-ssi +snd-soc-imx-wm8962 +snd-soc-inno-rk3036 +snd-soc-kirkwood +snd-soc-lpass-apq8016 +snd-soc-lpass-cpu +snd-soc-lpass-ipq806x +snd-soc-lpass-platform +snd-soc-max98090 +snd-soc-max98095 +snd-soc-max98357a +snd-soc-max98504 +snd-soc-max9860 +snd-soc-mc13783 +snd-soc-omap-abe-twl6040 +snd-soc-omap-dmic +snd-soc-omap-hdmi-audio +snd-soc-omap-mcpdm +snd-soc-omap3pandora +snd-soc-pcm +snd-soc-pcm1681 +snd-soc-pcm179x-codec +snd-soc-pcm179x-i2c +snd-soc-pcm179x-spi +snd-soc-pcm3168a +snd-soc-pcm3168a-i2c +snd-soc-pcm3168a-spi +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rcar +snd-soc-rl6231 +snd-soc-rockchip-i2s +snd-soc-rockchip-max98090 +snd-soc-rockchip-rt5645 +snd-soc-rockchip-spdif +snd-soc-rsrc-card +snd-soc-rt5616 +snd-soc-rt5631 +snd-soc-rt5640 +snd-soc-rt5645 +snd-soc-rt5677 +snd-soc-rt5677-spi +snd-soc-rx51 +snd-soc-s3c-dma +snd-soc-samsung-spdif +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-simple-card-utils +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-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-tas5086 +snd-soc-tas571x +snd-soc-tas5720 +snd-soc-tegra-alc5632 +snd-soc-tegra-max98090 +snd-soc-tegra-pcm +snd-soc-tegra-rt5640 +snd-soc-tegra-rt5677 +snd-soc-tegra-trimslice +snd-soc-tegra-utils +snd-soc-tegra-wm8753 +snd-soc-tegra-wm8903 +snd-soc-tegra-wm9712 +snd-soc-tegra20-ac97 +snd-soc-tegra20-das +snd-soc-tegra20-i2s +snd-soc-tegra20-spdif +snd-soc-tegra30-ahub +snd-soc-tegra30-i2s +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-twl6040 +snd-soc-wm-hubs +snd-soc-wm8510 +snd-soc-wm8523 +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-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8960 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-wm8994 +snd-soc-wm9712 +snd-soc-xtfpga-i2s +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 +snic +snvs_pwrkey +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +soc_scale_crop +softdog +softing +solo6x10 +solos-pci +sony-btf-mpx +sp2 +sp805_wdt +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +speedfax +speedtch +spi-altera +spi-axi-spi-engine +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-fsl-dspi +spi-gpio +spi-imx +spi-lm70llp +spi-loopback-test +spi-meson-spifc +spi-mt65xx +spi-nor +spi-oc-tiny +spi-orion +spi-pl022 +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-qup +spi-rockchip +spi-rspi +spi-s3c64xx +spi-sc18is602 +spi-sh-hspi +spi-sh-msiof +spi-tegra114 +spi-tegra20-sflash +spi-tegra20-slink +spi-ti-qspi +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spmi +spmi-pmic-arb +sr9700 +sr9800 +ssb +ssbi +ssd1307fb +ssfdc +ssi_protocol +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-asc +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st95hf +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_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 +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm32-usart +stm_console +stm_core +stm_heartbeat +stmmac +stmmac-platform +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sudmac +sun4i-codec +sun4i-i2s +sun4i-spdif +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +surface3_spi +svgalib +sx8 +sx8654 +sx9500 +sym53c8xx +symbolserial +synaptics_i2c +synaptics_usb +synclink_gt +synclinkmp +syscon-reboot-mode +syscopyarea +sysfillrect +sysimgblt +sysv +t1pci +t5403 +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 +tc358767 +tc3589x-keypad +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_nv +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tegra-devfreq +tegra-drm +tegra-kbc +tegra124-cpufreq +tegra_wdt +tehuti +tekram-sir +teranetics +test-kprobes +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_hash +test_hexdump +test_module +test_power +test_static_key_base +test_static_keys +test_udelay +test_user_copy +test_uuid +tg3 +tgr192 +thermal-generic-adc +thmc50 +thunderbolt +ti-adc081c +ti-adc0832 +ti-adc128s052 +ti-ads1015 +ti-ads8688 +ti-cal +ti-soc-thermal +ti-vpe +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_hecc +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +tilcdc +timeriomem-rng +tipc +tlan +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmio_mmc +tmio_mmc_core +tmio_nand +tmiofb +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +torture +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm-rng +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tpm_tis_core +tpm_tis_spi +tpm_vtpm_proxy +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65086 +tps65086-regulator +tps65090-charger +tps65090-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts4800-ts +ts4800_wdt +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tusb6010 +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw686x +tw9903 +tw9906 +tw9910 +twidjoy +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish_common +twofish_generic +typhoon +u132-hcd +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-dwc +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +umc +umem +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 +us5182d +usb-dmac +usb-serial-simple +usb-storage +usb3503 +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_uac2 +usb_f_uvc +usb_gigaset +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 +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +v4l2-tpg +vcan +vcnl4000 +veml6070 +ves1820 +ves1x93 +veth +vexpress-hwmon +vexpress-regulator +vexpress-spc-cpufreq +vf610_adc +vf610_dac +vfio +vfio-amba +vfio-pci +vfio-platform +vfio-platform-amdxgbe +vfio-platform-base +vfio-platform-calxedaxgmac +vfio_virqfd +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +vhost_vsock +via +via-rhine +via-sdmmc +via-velocity +via686a +videobuf-core +videobuf-dma-contig +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videodev +vim2m +viperboard +viperboard_adc +virtio-gpu +virtio-rng +virtio_blk +virtio_input +virtio_net +virtio_rpmsg_bus +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vrf +vringh +vsock +vsp1 +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5100-spi +w5300 +w6692 +w83627ehf +w83627hf +w83781d +w83791d +w83792d +w83793 +w83795 +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +wanxl +warrior +wcn36xx +wcnss_ctrl +wd719x +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wilc1000 +wilc1000-sdio +wilc1000-spi +wimax +winbond-840 +wire +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 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x_tables +xc4000 +xc5000 +xcbc +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xgmac +xhci-mtk +xhci-plat-hcd +xhci-tegra +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx_uartps +xillybus_core +xillybus_of +xillybus_pcie +xor +xor-neon +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +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 +xz_dec_test +yam +yealink +yellowfin +yurex +z3fold +zaurus +zd1201 +zd1211rw +zforce_ts +zhenhua +ziirave_wdt +zl10036 +zl10039 +zl10353 +zl6100 +zr364xx +zram +zynq-fpga --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/fwinfo +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/fwinfo @@ -0,0 +1,1110 @@ +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: a300_pfp.fw +firmware: a300_pm4.fw +firmware: a330_pfp.fw +firmware: a330_pm4.fw +firmware: a420_pfp.fw +firmware: a420_pm4.fw +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: 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/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/polaris10_ce.bin +firmware: amdgpu/polaris10_mc.bin +firmware: amdgpu/polaris10_me.bin +firmware: amdgpu/polaris10_mec.bin +firmware: amdgpu/polaris10_mec2.bin +firmware: amdgpu/polaris10_pfp.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_mc.bin +firmware: amdgpu/polaris11_me.bin +firmware: amdgpu/polaris11_mec.bin +firmware: amdgpu/polaris11_mec2.bin +firmware: amdgpu/polaris11_pfp.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/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/tonga_ce.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_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: 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/QCA9377/hw1.0/board.bin +firmware: ath10k/QCA9377/hw1.0/firmware-5.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: 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_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_mimo.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.1.0.fw +firmware: bnx2x/bnx2x-e1h-7.13.1.0.fw +firmware: bnx2x/bnx2x-e2-7.13.1.0.fw +firmware: brcm/bcm43xx-0.fw +firmware: brcm/bcm43xx_hdr-0.fw +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/brcmfmac43455-sdio.bin +firmware: brcm/brcmfmac4350-pcie.bin +firmware: brcm/brcmfmac4350c2-pcie.bin +firmware: brcm/brcmfmac4354-sdio.bin +firmware: brcm/brcmfmac4356-pcie.bin +firmware: brcm/brcmfmac4356-sdio.bin +firmware: brcm/brcmfmac43569.bin +firmware: brcm/brcmfmac43570-pcie.bin +firmware: brcm/brcmfmac4358-pcie.bin +firmware: brcm/brcmfmac4359-pcie.bin +firmware: brcm/brcmfmac43602-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: c218tunx.cod +firmware: c320tunx.cod +firmware: carl9170-1.fw +firmware: cbfw-3.2.3.0.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.3.0.bin +firmware: ct2fw-3.2.5.1.bin +firmware: ctefx.bin +firmware: ctfw-3.2.3.0.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: cyzfirm.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-m88rs6000.fw +firmware: dvb-demod-mn88472-02.fw +firmware: dvb-demod-mn88473-01.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-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-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: i1480-phy-0.0.bin +firmware: i1480-pre-phy-0.0.bin +firmware: i1480-usb-0.0.bin +firmware: i2400m-fw-usb-1.5.sbcf +firmware: i6050-fw-usb-1.5.sbcf +firmware: i915/bxt_dmc_ver1_07.bin +firmware: i915/kbl_dmc_ver1_01.bin +firmware: i915/skl_dmc_ver1_26.bin +firmware: i915/skl_guc_ver6_1.bin +firmware: icom_asc.bin +firmware: icom_call_setup.bin +firmware: icom_res_dce.bin +firmware: intel/ibt-11-5.ddc +firmware: intel/ibt-11-5.sfi +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: isi4608.bin +firmware: isi4616.bin +firmware: isi608.bin +firmware: isi608em.bin +firmware: isi616em.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-24.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-IWL6000G2B_UCODE_API_MAX.ucode +firmware: iwlwifi-6050-5.ucode +firmware: iwlwifi-7260-17.ucode +firmware: iwlwifi-7265-17.ucode +firmware: iwlwifi-7265D-24.ucode +firmware: iwlwifi-8000C--24.ucode +firmware: iwlwifi-8265-24.ucode +firmware: iwlwifi-9000-pu-a0-lc-a0--24.ucode +firmware: iwlwifi-9260-th-a0-jf-a0--24.ucode +firmware: iwlwifi-9260-th-a0-lc-a0--24.ucode +firmware: iwlwifi-Qu-a0-jf-b0--24.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: 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.bin +firmware: liquidio/lio_210sv.bin +firmware: liquidio/lio_410nv.bin +firmware: matrox/g200_warp.fw +firmware: matrox/g400_warp.fw +firmware: me2600_firmware.bin +firmware: me4000_firmware.bin +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/sd8997_uapsta.bin +firmware: mrvl/usb8766_uapsta.bin +firmware: mrvl/usb8797_uapsta.bin +firmware: mrvl/usb8801_uapsta.bin +firmware: mrvl/usb8997_uapsta.bin +firmware: mt7601u.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: 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/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/tegra124/xusb.bin +firmware: nvidia/tegra210/xusb.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_895xcc.bin +firmware: qed/qed_init_values_zipped-8.10.5.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: r128/r128_cce.bin +firmware: r8a779x_usb3_v1.dlmem +firmware: r8a779x_usb3_v2.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/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/tahiti_ce.bin +firmware: radeon/tahiti_k_smc.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: riptide.hex +firmware: rp2.fw +firmware: rpm_firmware.bin +firmware: rsi_91x.fw +firmware: rt2561.bin +firmware: rt2561s.bin +firmware: rt2661.bin +firmware: rt2860.bin +firmware: rt2870.bin +firmware: rt73.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/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/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/rtl8723bu_bt.bin +firmware: rtlwifi/rtl8723bu_nic.bin +firmware: rtlwifi/rtl8723efw.bin +firmware: rtlwifi/rtl8821aefw.bin +firmware: sb16/alaw_main.csp +firmware: sb16/ima_adpcm_capture.csp +firmware: sb16/ima_adpcm_init.csp +firmware: sb16/ima_adpcm_playback.csp +firmware: sb16/mulaw_main.csp +firmware: scope.cod +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: sndscape.co0 +firmware: sndscape.co1 +firmware: sndscape.co2 +firmware: sndscape.co3 +firmware: sndscape.co4 +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/wl1271-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-conf.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: turtlebeach/msndinit.bin +firmware: turtlebeach/msndperm.bin +firmware: turtlebeach/pndsperm.bin +firmware: turtlebeach/pndspini.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: wavefront.os +firmware: wd719x-risc.bin +firmware: wd719x-wcs.bin +firmware: whiteheat.fw +firmware: whiteheat_loader.fw +firmware: wil6210.brd +firmware: wil6210.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: yamaha/yss225_registers.bin +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 --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/i386/generic +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/i386/generic @@ -0,0 +1,20794 @@ +EXPORT_SYMBOL arch/x86/kvm/kvm 0xd82b31b9 kvm_cpu_has_pending_timer +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x254e5667 scx200_gpio_base +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x35a3c008 scx200_gpio_configure +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x8cfa375c scx200_gpio_shadow +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x907665bd scx200_cb_base +EXPORT_SYMBOL crypto/mcryptd 0x766fd032 mcryptd_arm_flusher +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/nfit/nfit 0x95b632d2 to_nfit_uuid +EXPORT_SYMBOL drivers/acpi/video 0x696cb021 acpi_video_get_levels +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 0x7df25404 acpi_video_get_edid +EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register +EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type +EXPORT_SYMBOL drivers/atm/suni 0xda6e70e8 suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0x9416fc40 uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x1759e393 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xa0abab27 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 0x006dacae pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x05a6a597 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x253d83f7 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x2cc98fdb pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x3eb01964 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xa737a06b paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0xae6096dc pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xb2a01939 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xcc158b86 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xd6ce18b6 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xe698b3de pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xf2544c4b pi_schedule_claimed +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xf393aacb btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x177df309 ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4dde7206 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x62ae1dd5 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80848477 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xadc6f4df ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0db3a14 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/nsc_gpio 0x473aa8d5 nsc_gpio_read +EXPORT_SYMBOL drivers/char/nsc_gpio 0xf0989450 nsc_gpio_dump +EXPORT_SYMBOL drivers/char/nsc_gpio 0xf52808f9 nsc_gpio_write +EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x438ef08e st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x6b17e835 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xb95ac592 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xb9e114bf st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x0c7b8cfc xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x1365db9f xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xd6cb77f1 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x14638c48 dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x334cfad4 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x74d6a9e8 dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x97f5c8b8 dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xfde4be1d dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xff1190d5 dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/edac/edac_core 0xea19b65a edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x24c2a2dc fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2a7d3254 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2df4c6f3 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3d089fb6 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3ee01bd4 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4e22934a fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x51696b7f fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x56401d76 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5a817167 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5b62f386 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x659a6914 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7cbced97 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x822c681f fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8e4b9c3a fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x91736bba fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9f5b550b fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa85d266e fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xafc5a479 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb54fa17c fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbb1e14c2 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbf97b3f4 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc4cf46b6 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcd49ee38 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xce88a8a8 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd4125122 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf98a8d41 fw_iso_context_start +EXPORT_SYMBOL drivers/firmware/dcdbas 0xa75079d6 dcdbas_smi_request +EXPORT_SYMBOL drivers/fmc/fmc 0x0427465e fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x167b5299 fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0x3da9497a fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0x4f37d464 fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0x79417cac fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xc2f96a94 fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xd43db423 fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0xdc7c7e1d fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0xe8b31928 fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0xeefb35d1 fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0xffdccd10 fmc_reprogram +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03259f6f drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x039a0124 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03fa0e72 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0468d92b drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0693ebed drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06c8e3ff drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x072de7bd drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0836c0b2 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x085ca0e3 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ab46070 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ad6563f drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c51070e drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cb00b04 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dcfce2b drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e94c784 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1017c764 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12cbe8eb drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14fdcdf0 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1569d8d4 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x160629f2 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16cf4ff7 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18873efb drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18fd282a drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a8eb7fc drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1aa0d2df drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b0dbd47 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bed47b3 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f1bf3be drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20bbc1ac drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x243e6a66 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24f18c5d drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25cb1ba8 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2689dbe0 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2732bc81 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x273b426b drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28ed1572 drm_gem_object_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a11b8a1 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a6ffe37 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a8dc47a drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c84d9a5 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d1f3d6a drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d294f33 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dfc2c7c drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e215796 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30d01cc6 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32562fbc drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3257c261 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32bdceb0 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33e5388b drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3406fa91 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34393215 drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3450b89d drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34d2b209 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35a1f967 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35f378d6 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36479e90 drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x370796c5 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39df8f62 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a373d1d drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b257c71 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b862ccf drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bbe518f drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3be4e064 drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cda4d6f drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d0c9690 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d1e231f drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ecded5a drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40031f22 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4025df74 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40629d59 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x411d4b60 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x420887dd drm_crtc_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42893f48 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4589625d drm_mode_object_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46174ece drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46d4c0b7 drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4728379f drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4770fa14 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49e8ce6b drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4da00c2d drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f1c59c8 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fe9ec39 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x505e972d drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x511726b3 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53d189d4 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x544ab11a drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5586b477 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55e2b4af drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56f3d7dc drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57baa7f2 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58ad95c3 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58d3e6c0 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59722656 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a43c87d drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b013ef1 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c2a3443 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c3c9f12 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c460f59 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d00bcfa drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d21ad0e drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e3da3ea drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5eaa9fc2 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6136c987 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61e21f6f drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64e4bc47 drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6559a86f drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65b2ccb2 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66b9843c drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68ba327d drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6919d8f0 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6aab2230 drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c9db0c8 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ce38e40 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ea6dbbd drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6eec202e drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70af9965 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7266c2af drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73c8c8de drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7529a710 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x756b73cd drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x758de2d0 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x760eccac drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78eb0826 drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79087887 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7942e183 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ab9e4e2 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bd770e4 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c24cb74 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ceef481 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dbb3475 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e4a3507 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e64df8e drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e8fadfe drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f7dfbc7 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fbb4bbf drm_crtc_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81b65b1d drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x828ed9e2 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x845a8aa4 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x853342e6 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8562dcfc drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86ef920e drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87047ad2 drm_mode_object_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88588031 drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88dfe9e6 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8979dae3 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a834d6d drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8aba95bc drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c0657a1 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c5ea2ba drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ce79233 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d75a0d0 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ff1c55d drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x916979b3 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9488b3b9 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94f870cb drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x952b1f31 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95805d6f drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95e19cd1 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9657fa41 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9723fa46 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9751d131 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x977c1b88 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98319b1d drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9898e95b drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9933ad88 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99b9631a drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a1cc23a drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a914a06 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ab55030 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9acf66f7 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b005ade drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b05f2af drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c05ffdd drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ca2f39f drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d0fdc71 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d401e41 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d428d34 drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ed316f7 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f81601d drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa17d99b7 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa446f3a1 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa74d228f drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7bfceb1 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa852135f drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa86cc83c drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac918550 drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacca57a7 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad15ed22 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad787d09 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadcb1bf1 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0xade5f213 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae5c1467 drm_crtc_commit_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaed84a17 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf2c7f87 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafddbcc6 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafe04b54 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafe3991b drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0a8e9f9 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb230f7ca drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2b65c1b drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2bbc8cc drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb37d51ad drm_format_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb480a838 drm_gem_object_unreference_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb54aa495 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5dd0648 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6ade85e drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6eff40f drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8475d2b drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbd56839 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdb1ef98 drm_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdffe666 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe519e27 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf085a2c drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2afff24 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc340b0f0 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc557d3cd drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc56fe6bd drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc71bb1b3 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc751db19 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7c92332 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc839eeae drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc85a5993 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc868a35b drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc953d5b2 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc6adb21 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccd2bce0 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd235c3b drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce8d9844 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xceb73869 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf07eebc drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf39b4ee drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0497cdd drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0903f15 drm_format_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd18807bd drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd18bc1dc drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1b5b34a drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2e2bb66 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3182013 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd673580f drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd736ef87 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a55fe3 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7b53a6a drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8303f84 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8b98129 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8d5f42c drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd928b687 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9a5469d drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9eecd91 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9f8f883 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdabb64cf drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb8be366 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb920bd3 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf042cfa drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf5c53e3 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe069a3a8 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe06b0200 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe122d069 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2022256 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe444b3c3 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe47fb93d drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe481c0c7 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe522d4ba drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe81dc102 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe91c38b1 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe99bb262 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea945710 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeabd55fe drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebab09fc drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec13a4bd drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedec77d6 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee2c79c6 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef89d286 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefc844e4 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf117f731 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf18a8f48 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1f4e7e2 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf33d259b drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7684bf3 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7d747f5 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7fd9f7d drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81e44ba drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfac73fdf drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfad99edc drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbbf50a0 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbf34871 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbfd6b44 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfde75378 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe321a06 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfef0d9a2 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfef3a7fb drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x044e35b4 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05239e39 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05424680 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0852ca60 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08a505f0 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a048548 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a5d1e44 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d08db3c drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f748c80 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10397603 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11516bee drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13af8fdd drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18490b4f drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x187d40ec drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1948e7c1 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19c5a36c drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a8b309f drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e18ae9a drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e96903c drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1feda615 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20836509 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22f4d082 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x248b869b __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25cf417a drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x293f7bea drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c31dc51 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d40fa96 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e62a801 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30ed661f drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x316eddac drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x325c9a0b drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3307c5fd drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x357ecb83 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x364c526a drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36a326f3 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36db5580 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a95f9b1 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c646409 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f71100f drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4348912f drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x446d4b5f drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44e4936b drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45d917e9 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47b010c3 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47ce0e7c drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4911ef91 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a6ec59d drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bf00970 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f37eb7b drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51a89ff7 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x539c10df drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x552898d1 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55a8fc6c drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bb076d2 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c829707 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cf4e444 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x607e55ce drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x636e9c8d drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63c4a1c7 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6971e4a6 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a734143 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c1a2fbd drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c86724e drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d37d949 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e0fd36e drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x709b3273 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x719e7358 drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74666e55 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74aaa6b4 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75baec61 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x788681ab drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a6945bb drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bcee5d7 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c24cfc9 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e87a77a drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x810d7d35 drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x871ab602 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8736a132 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87c0041e drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8985413c drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bf3b200 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cf9097a drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d82db91 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fe49be1 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x914497db drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9216b9ee drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9250747c drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9262b0a2 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9313f18f drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x954feb6d drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95d99882 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96a5754e drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9731245b drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x980e1585 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98af0084 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ef65a5b drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa269fdbf drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5b476b6 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7779323 drm_atomic_helper_best_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa829343e drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa92e8fca drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9b1eecb drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa6f451e drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1094c67 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb15371c5 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3327d6a drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4331244 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4f63910 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb525afbb drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8f2cdd9 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9cdf0fb drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc40b4df drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd45cc86 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd886959 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe46128a drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfa2ba52 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0b7317c drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1519a55 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc664e636 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc705ac52 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8730332 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9f2963c drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc5bcd94 drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd117851 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd2a8ad6 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd452081 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcda611f4 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcea86867 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfcc507c drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd06a5acd drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6483a96 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8716033 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd93e618e drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9acf6ca drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdabb9e3b drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb463100 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddfe29e1 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdea7a297 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5d706ea drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe90be83c drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea8255d9 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeac3784f drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb8bbb24 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec01ee87 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec10aed5 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecb1baf8 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf099c4cc drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf19a3e90 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2408b6f __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfaf1c385 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbead1fd drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbf9ed3d drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd5a2ec3 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe177cb1 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x02fbe211 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x057c9f94 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05a1ecd8 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bab7f47 ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0c62b0fd ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0e8fb7b8 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x104b8886 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x11dac2ed ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1369934d ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x13930549 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x148e708a ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1940e4cd ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1dac1d85 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2170aa21 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22ec80fe ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24765c33 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x266d8a60 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2dfb118c ttm_bo_default_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x35861a7a ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3a837c84 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3bcb93f2 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3dace195 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3e5dc0d9 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x485a5bc0 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5375733f ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x56fdd1c2 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x58ce5ea8 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5c479730 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5db84a43 ttm_bo_pipeline_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5fc36dcf ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6004c98e ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6b5d9f76 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c8dc6bf ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e875de9 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x750c44e8 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x79f0d0d0 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7a2a66dd ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7a42b4dd ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x836d8fd0 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d1c51bd ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8f28d3b5 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x91721825 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9178b518 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9346aa0a ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x946a75a8 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x946d9ea3 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9674aee5 ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x96fa5bb0 ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99b9c538 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa1e86668 ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa85c5ddb ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xabf072f3 ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb0ae22b4 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb13cd3b9 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb44b1e77 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb4ac6a59 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb66024c0 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xba19e2c2 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbad2aa30 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3d055b9 ttm_bo_default_swap_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc74590a1 ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc96dd0bf ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf49f835 ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdde3c193 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1036293 ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xef09469c ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf0cb2b9e ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf41fe45a ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfa4b35c0 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfc0351a9 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xff6b8bac ttm_object_device_init +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x6eededb1 vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xb1ed078a vmbus_sendpacket_ctl +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xcbb2649e vmbus_recvpacket +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xadee6598 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x098ff1be i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xb3bc6caf i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xf854e605 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x7647ff0a i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xceedf333 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xfd677ce8 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x144d4cfc mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1baca351 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x372d8a73 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x38d31af3 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x597e4afb mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5dc16d43 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x643e19c3 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7888ed55 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x905b8e24 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xab1df662 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb28aefee mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb75eaaf9 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbd1a7e1c mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc07673b7 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd5a3bb77 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf468e521 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x2f46574c st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xcb0d6289 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x1e00077c iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x295c2b93 iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x385d27bd iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x519c36f3 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x7250c1b7 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x8bc0a4f3 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x059fa188 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x4ddecc78 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7cc0fc52 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x896525f9 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x951092f4 hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xd7bed084 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xaf2d58b9 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xc9365b5f hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xdbbd48a1 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xed5939f4 hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3f60a98f ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x738819d1 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x76cf91f0 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa6002591 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa7732557 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xacbd4934 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xba176a38 ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd03d34bb ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xdd14ff6f ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x69248eae ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x83c498e6 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x8dec0e3b ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x9b55f6fe ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xbf3ad616 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x9998a65b ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xd5d564eb ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xfea2492c ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0241316c st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0f8f8ae1 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2632215e st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x395a3ee2 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x629ee59e st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6779e028 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x68373620 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8fae3162 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8ff28c80 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9e88b3ca st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xac62d929 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb47e8578 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb824dd65 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdd401e80 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xeefe031e st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf0c47c18 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x7c1ab9e1 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xe4232f7d st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x058d3531 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xfb5335b0 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x726914c6 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x8d8c5ad3 adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x3d996474 bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x0117a2c7 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x115fd7ec iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0x1289cafb iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x1849af38 iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0x1cce4f94 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x2a9d5d27 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x30382f4a iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x7e85a90b iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x7e889f8b iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x8a8eccce iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xa8a2e002 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xb2a9e567 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xb5fd3373 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0xbc5be877 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xd6253b5a iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe080cfdc iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0xf07c1ad9 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0xf42f5164 of_iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0xfbd0f728 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0xfbe20c92 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x09a27ead iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x22a4a3a4 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x5bc70603 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x99f47e70 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xd341b263 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x35e41b56 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x8abb22ef iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xce1f5b20 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xdc94b2f7 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x297f07a7 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x705d0213 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x09b2172a bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x32a7b10e bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x970fbab3 bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xefd2e846 bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x07b139f9 hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x0bccb13d hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x22fabe2f hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xe4d5a485 hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x566d4d14 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xb004018f st_magn_common_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x49b82737 ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x7531830d ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x58e9b5f4 st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xc26eb7c1 st_press_common_probe +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x061374f3 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0cbdb9e6 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x11ba5d79 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1399ea0f ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2a48d442 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2bb460c4 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2c5c979d ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x34b7c159 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4a4c5403 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5f331d04 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6f777756 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7fc38289 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xab9207af ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xafca406c ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc06d8223 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc3f505d0 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe233e186 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf62d4722 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x038044b0 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x049ace30 rdma_addr_find_smac_by_sgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05f51c4a ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x094c2cec ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a1e62fb ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a61f85a ib_modify_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c6aa149 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ea69d91 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x104dafea rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x144feed6 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1636d518 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18069b51 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x180bd054 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18461005 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a341a02 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e2efd43 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e449c77 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1edc4064 rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x219ddddc ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21b67776 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2325fde4 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2500235b ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x287d1e73 ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2bd7cfad ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c187801 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e667407 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33e6ac35 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35908982 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37ee892d ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b3f807c ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ed5cb5f ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x411a2c17 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43b82d93 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4612ae09 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x486b4ac8 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4928ad00 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bf1fb1e ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d9f2a64 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f5ba8d3 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x500bf6d0 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x507ca88c ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51a14b5b ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54984f54 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54af085c ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54b5fd6e ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x576fdbac ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5894efe3 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59bfa3b7 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b7d2c24 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d9201f9 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63417c1b ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63552487 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63e07cb2 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63ee2a61 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x665c85a4 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66994038 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x676eb1fc ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x693d51aa ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69573bc7 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69ada5b5 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69c24001 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a752c90 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a98bc92 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6aaaf7fa ib_destroy_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d4634ff ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ea28953 ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fe7039b ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x739d527f ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x741436e4 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x778b659e ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7970905e ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x799c6e82 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a948a01 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7be1c5ce ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c47f0de ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ce08e83 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7dbcbf12 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e7f59b3 ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80940e1f ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80e7973e ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8196cc18 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x880ee00b ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8834a5ab ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89574b92 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89ba45dc ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c4dd93f ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8dc65ea1 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ff15485 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x990894e2 ib_create_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b9cf9a rdma_addr_find_l2_eth_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bbbcfa9 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cc47d8a ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d1d4404 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d9cabc5 rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e858afa ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fe6004d ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa18bd81b ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa208e89c ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa43fe221 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab493010 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad19bdce ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad871943 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb02af287 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6a96222 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb734ba00 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7ed4a57 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbdd76a2 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf473b50 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0d657a8 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc23291d2 ib_sa_classport_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc40260fa rdma_resolve_ip_route +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc56f3390 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc62fb5a2 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca70740d ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd4f9051 ib_destroy_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdbc601d ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdbfe340 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf96edc9 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd54b9e62 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7de01b2 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb387601 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd0a9616 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0dcf820 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1585674 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1671d4b ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe17a4cf4 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe27eeb82 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2d686be ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe314239c ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3ae4b61 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe46282e4 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6c484d8 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7dc49c9 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9525707 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed00948e ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed3d8773 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed8e0a71 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0716e60 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0a61969 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf37027d6 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4119303 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfab30c76 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb38b66d ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfea68553 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff27c836 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2196a306 ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5397d778 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbb6db405 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1a494ac9 iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1e287b75 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x24e5af2e iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2df67a42 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3298b43f iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x35111ceb iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x486f1799 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4dd78e14 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x729325ee iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8f17fbcc iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9b111d31 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa81c2920 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe10b63ad iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe3cb1cbb iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xee3b9bd3 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0d6099e5 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x18c66e66 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x23dc5b95 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x25c0b429 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x295564c7 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3b741131 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3e83cc32 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x425820dd rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4577d2e9 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4832b48e rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4b9783e1 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x63ac347d rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6aafeb6d rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x72167336 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x79d22732 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8a50f795 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x97c82b44 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9d0828af rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc7a42196 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd4181b23 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdf9a0b04 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x01ec18f2 rxe_set_mtu +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x158ab5d4 rxe_rcv +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x48f93f58 rxe_remove_all +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0xa592d8a8 rxe_remove +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0xf8c8521d rxe_add +EXPORT_SYMBOL drivers/input/gameport/gameport 0x08c9c973 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x6c6d3a11 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x76b93bb6 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7eb2e961 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xbdeb27a8 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xd6ef92de gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xddea1527 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf75ae415 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xffca66f3 gameport_stop_polling +EXPORT_SYMBOL drivers/input/input-polldev 0x07ca7436 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x247c8ab5 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x4046431d input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x98d228d9 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xbb31819b input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xf713360e matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x8a459c0e ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x9500d145 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xe14f808d ad714x_probe +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x39b859c8 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 0x6d453cef rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x0f320547 sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x0fb7633f sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x31768f2a sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xa71cf9ec sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xce234afa sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xfac8d0ff sparse_keymap_setup +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x3f54e2df ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x5cdfdb6c ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x002d314b capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4915495e capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x523c394e capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5cee43ea capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x64c1a3bb capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa707660e attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xadc3c075 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb837c011 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc3b686d1 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf7e1c29f capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0076c766 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0ec4a673 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x156015a1 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2c63a51d b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3139f1a6 b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3ad117b0 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x438bd5af b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x48fcbe00 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4a5ae9ce b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x563facd7 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x5d4d99bf b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xaf79edcd avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb93acc61 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdc74ea4f b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xed52b86b b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x083513d1 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x2a2d8d48 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x802596bc b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x8ac7ff64 b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x8ec7d88d b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x93afba8f b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xab20c1a7 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xcee502f1 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd3b780c4 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x358f6f1a mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x3d7502ea mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xdf683bea mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xf3c177d3 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x28dc8efd mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x4ee7d61a mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x7a1e9014 FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x8bc4b67f FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x927a45e3 hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0ec1296 FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x0e3523fb isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x55b2e300 isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x936f5f9b isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x977ad485 isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xfb998262 isac_setup +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x24b3cc66 register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x58c6538b isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x59c4ff1d isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x04109449 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0542ce41 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0d491d6a dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x18f36353 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x21f12c36 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x25ce2e04 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x28fe12ce mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2a37cf72 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3ea660f8 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x43ad9404 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x46efc142 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4ea86a2a mISDN_register_device +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 0x60a8049e bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7a27e51b mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8478fe10 mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8549d8d0 mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x99a952e5 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9f020618 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa37ac3bb mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb01626bf mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb80070dd recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3103965 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc525fd78 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd394bcd2 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd4f7c573 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd8ea2740 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe65f1dcd mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf84ae11f mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0x131d717d closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0x3fdca22b closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x66d28e22 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6969b5d8 bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7b55ca4f bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7f2a56c0 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x8051f6c0 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0x9e8b3cee bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0xab2d2b84 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xad29a6f5 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaec09a2b bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf77343c bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0xca580595 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xdbce19e8 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe47e0829 __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0xecf7cef9 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0xfbf30701 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-bufio 0xa7978f56 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-log 0x0286bad1 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x0335acb1 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x7abbb310 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xdbf8da81 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xaa8ad412 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb1f666dd dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb602fa28 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe329f7d4 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xf93e1d0a dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xfda993dd dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/raid456 0xfbd71935 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2df6750e flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3982896b flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x39d17a59 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4436152d flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4c17e3cb flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x58328c2e flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5ae2c46b flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x64882fe9 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7772b1a8 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7b98b712 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8d3c0170 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9f4abd3f flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xeef45185 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0x36f6a4a3 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6cc7797c cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x8ba60dc8 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0xa9ef8c77 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xae2a96a7 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x82b676a7 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x4f0ff850 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0x7f0c9191 tveeprom_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x02662f85 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x047f4d5f dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x07304025 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0da18a72 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0f740912 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x118cbfd8 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e5f0bdd dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x219e071c dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2907e8ed dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2cf288a0 dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x333ca316 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x34ab5e1b dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x39f7280b dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3a85ecc4 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3e38345a dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3ee8cfed dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x48ddce5f dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x58c0b3ca dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5a6f883d dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x66258852 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70de704a dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x71d72ee8 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7aa50ffb dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x803787fb dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x84fd383e dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9ab4d06a dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9f1aaef7 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9f89de7d dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa935da23 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xabbc9153 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbdaef36b dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc645fbc3 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc67f42e0 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd0fda432 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe96a2d67 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebd38af9 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf0e06e82 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf47cb4d3 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x4f69b6b2 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x92e2ae82 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xe3612676 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0de3e309 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1861d4a5 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1994aa7f au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x31ec0b09 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4c7d765e au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8075d606 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x958e6b60 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9ea5b3ee au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xcc625ecd au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x2363cedc au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xf5172b6a bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x05f9dd34 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x4505383a cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x7d7c6226 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x124ee015 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xda4781f2 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x993d7c7e cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x251640e6 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x20e82167 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x5b7ac338 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xa36b7ef5 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x5490f785 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xd795f682 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x1c1b791f dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x25e9c269 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x5c8aec5e dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x89a8ec40 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xc9cd0514 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x25953e58 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x296e55f4 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x39f5fe29 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3c0b6089 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x584aec7d dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x806e41d3 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8111ad1c dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xaba877b3 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xabd2ea98 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd99e65eb dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdbe65aa9 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xec6106be dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xede4a125 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf3f6ba30 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfd1a65a9 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x6cce2979 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0e8d908d dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3a5b5516 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3cfaa038 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7abd9445 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7dc4233e dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf1d23982 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x1bf8b760 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x8fb43c1a dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x9e280698 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xf9dd6c8e dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xb54add8c dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x013f5b10 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x29f871f6 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7c25a2ba dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x90e1f532 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xf0e98c1e dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xf317e8cb dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xf014646e drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x2eb0d897 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xa9262adb drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x753042a0 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xfecb3d07 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x03f73734 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x06fcdc71 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x0d8daed1 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x28df7633 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xb6eec4b2 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x821af4e7 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xa3343770 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xeb2523f2 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x9494167f ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x70c1c2c5 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xb281ccbd lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x1f678e1e lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x5b0c5088 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x86c3a4f5 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xadebbdf6 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xd9d6484e lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x42a16f62 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xf520716a lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xa7057229 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x4a6e4e40 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xc11364b1 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x08279bcf m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xdbe67d04 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xa1fc2043 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x5746b1f1 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x4e3ff422 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xf8c7ede7 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xbb2cd550 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xa65c9901 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xbf2c1fa7 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x3aa923dc s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x8447186d s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x3a6c2c7e s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xbf9645bb s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xebf87834 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x4009c99b si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xbd1593c2 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xdf1db89c sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x5ace88ca sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xe6db9f9e stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x34f835a3 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xce1420cd stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xfa89b9d4 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x354bc134 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xeee1be6c stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x4318418b stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x67cadeae stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x7ed29f1c stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xec2a10ae stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x74604147 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x4f010316 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xdf2d0898 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x63b80cde tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xa18aac14 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x3b677ceb tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x5f6b097a tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xc602e94c tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x0d0a9150 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x7f8cf153 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xab30c56a tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x1f5401c0 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x1d80cf58 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x07e0f2e6 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x5c87a153 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xa09bbbbd ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x7ed369bf zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x4a9a89bf zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xe522a89c zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x24d1dfb9 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4753f2be flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7174b723 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x76e3d4b9 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa86cc1be flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xca467e0c flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xde06e2c9 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x14f1956e bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x3f783c26 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x492f1ec4 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xf5aef085 bt878_start +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 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xe16f685c bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xe4db1135 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xe795924a bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x001a8cfc dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0b19fd57 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2463be68 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x315fc577 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5ead4ddc dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8540eb59 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9c9fcd4e dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc6a3b312 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe14f2375 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x2f398791 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x054d3307 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x15d897cf cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x866782a4 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x9398fafd cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb9c4f8c9 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x76b61ad7 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 0x00beffb5 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x20eeb263 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x99ab1bd6 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc00e0008 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd2034afe cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xeb348818 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf2b7fcb8 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xfb6d90dd vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xfc2bbdcf vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x411c6ecb cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x5b006494 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x6e4393e0 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xf6bb6b7a cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x09db9677 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x28332fa1 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x73d2fdf1 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7cae7ff3 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x968c59e8 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb58445d4 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbf25a407 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0d2a338d cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x140513ee cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2a592099 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2e019a90 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4fe54feb cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x62551db1 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6842c839 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8e226db6 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9257b7ef cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x93353160 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x947e344f cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa382d908 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa667f2c8 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb1890bde cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb7854f08 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdeeb081d cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe02216e1 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf3ab0d81 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf74ab7f3 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf7c26724 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x096caf85 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1973f53e ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2424cdd7 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3757003b ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x57392535 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x615c7f18 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8bc4394b ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x91516ebf ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x996c4edc ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xadd9723d ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb0c42bc0 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc0e88273 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xccec8243 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd0a772cd ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe26cdf1d ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf07b4a99 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf99f53c7 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0729b422 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x14af455a saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2fc362cf saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3d5296f8 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3f39dba6 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4542dab8 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x485d24cf saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x59e2fa2c saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5d7ab09d saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd12a4bb8 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe0df466a saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf55f5cd9 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfb75599a saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xe6034f83 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x281c8cd4 videocodec_detach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x631a3c62 videocodec_unregister +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xc1b8c94c videocodec_attach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xe8330ebe videocodec_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x26adcfe5 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x8b6b032f soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x92b0d2f0 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xa6e11c64 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xa79c267e soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xb395402e soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xef2f2fe7 soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/radio/tea575x 0x09ab9179 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x133ee0f8 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x2e3761ce snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x44e1a450 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x5b71e7c7 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa2b2b768 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xcb48304f snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x30d4a9ae lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x6031deff lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x79e7ae9e lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x849bd8b6 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa410b305 lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xf5f2f187 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xfc6e1177 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xfebaee9f lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/rc-core 0x3efdfea2 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x429077d1 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x93ef33a8 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x5caa2906 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x07b48a02 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x3fba7a4d fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xa04055bb fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0x8bead599 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x5e6fef74 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x45435fee mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xde6c5a6b mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x535c6c4e mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xb975d811 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x9275c855 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x3b5acac6 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x218584a9 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xb0ef97ba xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x5c22f8e9 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x07f6bdd0 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x81b314dd cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0a18ac76 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x20fc84ca dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x654318bb dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6d8a9bb3 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x820dc1ab dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x837cbd92 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc486bb4b dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc65257a1 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xfd055c7e dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x2c203eb9 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5368a58c dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x592e2417 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x64cc3096 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x785d68bf usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe7c17c67 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xff5f9f10 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xa40c35aa 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 0x15dd5b3d dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x17d877f1 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x41dd6997 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4803eda7 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5d4d44a9 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6d1b51a5 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7407174d dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb7541073 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcbd2114f dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcd2d706b dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe997019c dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x138a4a1a em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xcf4ae023 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0750b2cf go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0e3eb8c2 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4233efc6 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x441033f7 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x64345eb5 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7055ee57 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x74fb05b3 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xaf786beb go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc7d87409 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x079a40aa gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2a601982 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4280a089 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x54efc19d gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x99a321c2 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa75b07ed gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb53d88dc gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc1f26fb0 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x24a5da58 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x75405192 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x7a7ddbc3 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x413c2610 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x6afb27da ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x2bc650b2 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x401657cb 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 0x95d2013b v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x31a98640 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x7784c286 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xa377b6e9 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xbc6ec6cd videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xc79b49ad videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xdffddeef videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x3395ecb4 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x67748882 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x17cca5f2 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x1c9e3c02 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x72810d26 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xd2311e48 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xdcf9c533 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xf60c6033 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x07026635 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x039638d2 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x039ceeb6 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x03fe9d3c __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x04a34753 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0583cf64 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x088bb0e8 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x08a9af1f v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0bacd075 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x159880bf v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x194dd3ce v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1c7bc9e5 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x262e3e8b v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x29a265fe v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2e37b796 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30eb5dff video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36eb2217 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x397a4a1f __v4l2_clk_register_fixed +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 0x417cd3c7 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x451daab0 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x476a01a6 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4a779d7d __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x524996d0 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x54b165c5 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5583fa06 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x55f21bde v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5f96f06c video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x611d0f7f v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6fd2f30b v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7108fd47 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x730c3e1d v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x739d1325 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x73c587ae v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x73cb41ff v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7623721c v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x79b882f7 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ceb1bcd video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7de4cf54 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f02f153 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x90a34a36 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9b58fef2 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9e4d542e v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xab945dc1 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae8bbfd5 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb424a164 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbb9615b9 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbbe9f1cc v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc0f441bd v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc52ad5be v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc7b39b67 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcfe19fdd v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd1bedef2 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda95a11f v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdcff67bc v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe388d61a video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe5e92a7e v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe7cf7474 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf37edd81 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf7862562 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf7abbf27 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfeba1348 v4l2_clk_disable +EXPORT_SYMBOL drivers/memstick/core/memstick 0x16e2cf0c memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x33905b35 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x528364bb memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x52ee30be memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7171d558 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7818ea75 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8342a7ec memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x89ec3c9d memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa5987a36 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbef9256d memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd1e62d4f memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe733b1d4 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xee920297 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0744a548 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x07fbe6bb mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0a95731d mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0e690b09 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x12e95621 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1393c68f mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1dd54be9 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1e00c2ed mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x24cad6b7 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x345aacff mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x35d5672c mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x389ab025 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3e53bf1d mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3f0f0c89 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x530bc907 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5426bbd9 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x54b4aeac mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5544e4a6 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x57f5de9d mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x66c8f813 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7ca7919d mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x84f358e7 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9a350ba9 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa5dbffa4 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaf5415dc mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb1f97566 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcee0d3ee mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xec1c580f mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf3e04172 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x07042cf6 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x17d98b73 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x19f365a1 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1cf91666 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x242f2930 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x24855f03 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x282ffc52 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2fd60b28 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x37af2b21 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3bcec7c7 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4c2a55b9 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4f8c2e4c mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5ff3dd57 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x64560654 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6e01e7dd mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x855562b2 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9cb0e655 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbcd27a19 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc2d8df14 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc400b3db mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdc4d311f mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe34b9924 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe4d88dd8 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe92a34d0 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xeac93c80 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xed3e1c8b mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf69d0645 mptscsih_dev_reset +EXPORT_SYMBOL drivers/mfd/axp20x 0x43c68000 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0xe325600c axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xeae769ac axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/cros_ec 0x1e36dd99 cros_ec_register +EXPORT_SYMBOL drivers/mfd/cros_ec 0x6277ca75 cros_ec_remove +EXPORT_SYMBOL drivers/mfd/cros_ec 0xcaea3349 cros_ec_suspend +EXPORT_SYMBOL drivers/mfd/cros_ec 0xf89a9d34 cros_ec_resume +EXPORT_SYMBOL drivers/mfd/dln2 0x363fa922 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xf27a3272 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xf5c6ffaf dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x304c310d pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xee3d7c35 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0f1994b6 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x37c0450b mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x39b1cff0 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x54738f41 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x60be8882 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6bf0030d mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8dda7000 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x94afa94e mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb796032c mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc3978195 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfe49b211 mc13xxx_irq_status +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 0x371b4af2 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x592e6ca4 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x9fd3f2c1 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0xc64c6e89 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xf02c2b53 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0xf476d510 wm8994_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x55310569 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x6b3b8e38 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0xddf6ddad altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0xb9897f97 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0xe0b11a4e c2port_device_unregister +EXPORT_SYMBOL drivers/misc/ioc4 0x62a5f982 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xe061c842 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/mei/mei 0x030ef54a __tracepoint_mei_pci_cfg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x91fcb44a __tracepoint_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xa9657181 __tracepoint_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0xf0342024 __tracepoint_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/tifm_core 0x0674620c tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x2153f51d tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x34908aba tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x3f2a516e tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x49f43af2 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x64626b50 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x9ccea2c8 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xb51f8bda tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xce04411f tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xd0832988 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xe5199208 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xf70eb45c tifm_unregister_driver +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0xa69b52e0 mmc_cleanup_queue +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x275b89f3 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x2af61673 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x2f923689 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x449920c5 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x61ff73f1 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8aae820c cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe4b5ed9f cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x176ffe25 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x59daf386 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x9579aaec do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x993e66c5 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x2529ba7e mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x4a7f35cd lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xc55a3859 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x11a1174c mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0xc2dc0127 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/denali 0x7e117be4 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/denali 0x8ed650da denali_init +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x4077c768 mtk_ecc_enable +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x487322b6 of_mtk_ecc_get +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x5437e775 mtk_ecc_disable +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x67dc4d5c mtk_ecc_adjust_strength +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x6df58afb mtk_ecc_release +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x76e53683 mtk_ecc_wait_done +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x77ecf26d mtk_ecc_get_stats +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0xf00129a1 mtk_ecc_encode +EXPORT_SYMBOL drivers/mtd/nand/nand 0x15f573bc nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0x23a1ecd5 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/nand 0x4ed14d63 nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0x5895b001 nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x7f8d0c71 nand_write_oob_syndrome +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0xa0c66c9b nand_read_oob_syndrome +EXPORT_SYMBOL drivers/mtd/nand/nand 0xa222e412 nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0xc7604d51 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand 0xfd4baf39 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x7ee0c4d6 nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x9b8b43ee nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xacafe42c nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x11b3d743 nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x1bd7b075 nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x3a19aa2a flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x47ad39d2 onenand_addr +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3d0c44d0 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x45e46cf0 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4b39e6bc arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x645b1cea arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x874aa044 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa176ef78 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb98a7a7f arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd1c7d7de arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf15c49f6 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfdc92b2c arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x3ce0e35b com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x85c3b82e com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xabaa95de com20020_found +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x18f543b9 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x55a53598 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7c3b90ca ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8f71d10d ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc28dcfa0 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xccfcce88 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xcf5276fb ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xdd07c2bd ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf16bac7d __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf462e3dd NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x4e58f1da eip_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x59c25d9e eip_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x7c322dc5 eip_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x80da514c eip_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x99c03fd7 eip_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xb8ae163e eip_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xda0863ca eip_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xed0a970e __alloc_eip_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xeea8c6b4 eip_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xf9338e43 NS8390p_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xfa537a84 eip_poll +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x81de5415 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0fd0d565 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x14491886 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x33211d5f cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x487a8453 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x618e243f dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x73e55077 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x75c9e062 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x819c4659 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaeab7108 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb7f586bb cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbc21e474 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbcd59d8c t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc4cbf240 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe011d056 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe6b5a427 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xee8db22b cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0e2eacbc cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1f6f65c2 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1ffffffb t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2c6162fb cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3273364c cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35d51ca9 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3d7e2854 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4bc3d2c8 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x54058871 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x55ec238b cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57356f34 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57707dfc cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x60388fb4 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x603e2b05 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x64717ca5 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7431fd9f cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7dacc590 cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x804f3eb9 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86b663bd cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x99190c90 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9cecb609 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9f26cda7 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaed9933b cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc1164791 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd13e0bf4 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd4d85d8a cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd4f053db cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdc846e4d cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe24c5b27 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedad6185 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf1dba928 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf9c33c7d cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfa30585e cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfc9b467a cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe333f6e cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfff89974 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1567d085 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x2968922e cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x96a852fb cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xae2d58ca cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xb43abe98 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x172a4e92 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x43efa328 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x4a25e1ae vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5e3120a0 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7da88842 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xaa7e8f93 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x2c19ba54 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xe0daa77f be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x88f73c85 i40e_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0xcb697b6f i40e_register_client +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05345454 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05d1f329 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07ae42e5 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0aa786af get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f7b437c mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12761884 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x145216ce mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25008574 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29d83de3 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a547477 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34862063 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39a783bc mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52d41278 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61d084d3 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ac68895 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b163ffc mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e5a141c mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fe0de51 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70e60a65 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75604a06 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87f9064e mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fc86c27 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90c7fd27 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95b06ad8 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa98dda4b mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac48f0b6 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3ab0d9b mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3c84a5a mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb79a832c mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba40ed24 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe450689 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1a6f42b mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc930b329 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda7eb893 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd3bbf37 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe093be40 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe39eed9f mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8ddd537 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf032020b mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcb0e071 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0414bc65 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x118fc189 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1400cd58 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1470cb86 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18dd3763 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d7576c2 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e7610bd mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fd38bdc mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29f0342e mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c93f11e mlx5_core_destroy_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d20283e mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34b56794 mlx5_del_flow_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a2332f1 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4405a9e5 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44272992 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a4a7b05 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d642d3d mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59b2909b mlx5_core_create_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60a0d191 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x625d3edf mlx5_add_flow_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63d4a0e6 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66f12a07 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e44f717 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72e8051e mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73b706e3 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76ec6f82 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7942e86f mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e9a7450 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x829e6f88 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x831d2bd6 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c0125fb mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c607395 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8eca5edb mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x918029b6 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c6ed860 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e186790 mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa84b7216 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8d3c526 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac13cfb8 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac5bb40a mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad1ee9d4 mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad651307 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb848304c mlx5_core_create_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcaa08de mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe26cf08 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfaf0f9b mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2fa72db mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7694ea0 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb9d05bf mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccceeef8 mlx5_core_destroy_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd214428b mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd49a0529 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd686c25e mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc074440 mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf33f293 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0da8d88 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6fa7496 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7c4d841 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf51a4f1e mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc5c7b8a mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfda8f735 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ab0c687 mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x164db784 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x39a96739 mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4f40595e mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x545051a7 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x57d78928 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x714dccc2 mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x72a05371 mlxsw_core_resources_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f539b8e mlxsw_reg_trans_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9ce2c5f8 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9d114e31 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5ff38e0 mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb92175f8 mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb5c8545 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdbe9cd9f mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xec51e246 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf28fb42c mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfe94dd43 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x2cd5bd0c qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x378d4ac4 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x3ee76c0d hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x8d92154c hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd372c8df hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe6f252b2 hdlcdrv_register +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x1654f4b3 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x2a6df1df sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x46695408 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x542d6880 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x5e176c29 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x83cc63a6 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x8bd88367 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xabf43561 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc2741b26 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd2ecec6f sirdev_raw_write +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mii 0x336558a5 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x3d4188cf mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x3db91e45 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x8cdb8dd2 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x9a110ef7 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xae7daefd mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xaf9051b2 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xdc23d609 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x122029ce free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x51f4a1b4 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/ppp/pppox 0x3efc0fdc pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x678ed108 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x8e9d7745 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x008991c0 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x1cb822e7 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x1ef9d7d3 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x54d3c5c7 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x6deaa153 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x9c74c22c team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xa4d86e7a team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xda1cf35c team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xda9fa47a team_option_inst_set_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x70fcf210 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xbed93f47 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xcb6ddfbd usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x09ca602b alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0a4d064a attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x513b72d6 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x67375c14 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6c0080be hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x75708551 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8bc3c03a hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8d92272e hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbe5fa19d hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf4f2d4e6 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xffa47bee register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/z85230 0x10c78988 z8530_dead_port +EXPORT_SYMBOL drivers/net/wan/z85230 0x29b0a96e z8530_sync_txdma_open +EXPORT_SYMBOL drivers/net/wan/z85230 0x2b194cc2 z8530_sync_dma_close +EXPORT_SYMBOL drivers/net/wan/z85230 0x2ce7113e z8530_sync_dma_open +EXPORT_SYMBOL drivers/net/wan/z85230 0x38f35449 z8530_sync_close +EXPORT_SYMBOL drivers/net/wan/z85230 0x40774a8e z8530_sync_txdma_close +EXPORT_SYMBOL drivers/net/wan/z85230 0x576ff7a5 z8530_nop +EXPORT_SYMBOL drivers/net/wan/z85230 0x5cd24d29 z8530_hdlc_kilostream +EXPORT_SYMBOL drivers/net/wan/z85230 0x5ed8e5e8 z8530_channel_load +EXPORT_SYMBOL drivers/net/wan/z85230 0x6f693e19 z8530_sync +EXPORT_SYMBOL drivers/net/wan/z85230 0x89071a16 z8530_queue_xmit +EXPORT_SYMBOL drivers/net/wan/z85230 0x8c8a8284 z8530_init +EXPORT_SYMBOL drivers/net/wan/z85230 0x958005ec z8530_null_rx +EXPORT_SYMBOL drivers/net/wan/z85230 0xaa67cc26 z8530_sync_open +EXPORT_SYMBOL drivers/net/wan/z85230 0xb42be65f z8530_shutdown +EXPORT_SYMBOL drivers/net/wan/z85230 0xd4ffebf0 z8530_interrupt +EXPORT_SYMBOL drivers/net/wan/z85230 0xe3d80064 z8530_hdlc_kilostream_85230 +EXPORT_SYMBOL drivers/net/wan/z85230 0xf7fd9a18 z8530_describe +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xfa6c99b5 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x18b14043 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x32ce42ac dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3e292620 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x71f7d709 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x850d674f ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x86f771c9 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x97fc3b45 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xab4ec5cb ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb1809f51 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc2f6d4c5 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd0b5db4f ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd4210c58 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdf36ed82 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x01ec072d ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2c4da255 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2e98da58 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x313cb10b ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x378946b6 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3e672591 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6a458598 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x70076204 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7dae3f3e ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8507e479 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x92091b1d ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb3b3a120 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb55d165d ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdb0bf3e0 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xec82fc74 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf6e06506 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0d0ff15c ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1cc01c91 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x24a8bcf9 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3cfbcfaa ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x50afbe93 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa45ed1d5 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xadacc447 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xaec88666 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb82717bf ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xeca02ee2 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xed44ebbe ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0713cc35 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x218cd6f5 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x280daa77 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x35e41c27 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x37ba73c1 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3be88880 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x471281ca ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x51a30fc1 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5cb4e094 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x69ebb8dd ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8a61a2e0 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa75c8d53 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaa89f021 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc8548869 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcbbfdb29 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcbecfd8a ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd21f0037 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd3f821f1 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe630767f ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf112b615 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf2b01631 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf585ef84 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf5e41dc6 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00a44bc5 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0439b538 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x044faf34 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d34aa5a ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0eb71ab8 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11e07eaf ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1224fc28 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14a43f1b ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x213701e3 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21a33e76 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d31553a ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x305fc90c ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3381d33b ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x353d3196 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35badb25 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35e1a6fd ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3863453a ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3aefe997 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4904b552 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ca8bafa ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4cf0312c ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x514dc079 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5325e123 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55890c9c ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x577cd400 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57e1bb29 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5864cd11 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c87e79b ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5cfe9f5d ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ec1a9cc ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ff7dee0 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6073e2ef ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66bdafa0 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x691821a3 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x699ee4ef ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6abb51dc ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6bae46fb ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6daeb0be ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6dbbeb8f ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7347e6e1 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7362a44b ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x768c1b78 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a822520 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d5b68a9 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x809f9a7a ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8781a9d9 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89752a71 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a8e0dbc ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d46e4d7 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8df207c4 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90588dc6 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x928d0e93 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9536e0f3 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95b5bae2 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95c6c39c ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x981ce04e ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c9b9edc ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2e08ebc ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2e94086 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa49d640d ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7789eeb ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa952f6d ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab0fb397 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xabd0337a ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae95e36c ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb04bfbd3 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb22a4864 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb30c4423 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb389d5c6 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6771ae7 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8ed26fe ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb09e537 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb12eab1 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbcdf3815 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd60c5b0 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe19bffb ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe68ce86 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbec43b8a ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf5c35c4 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0284110 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7ada7ae ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7c801f6 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc94f8afa ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0777d79 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd89de068 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda6b8d19 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda7403d4 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb013f13 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb86b0b1 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1fb09b5 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe220f5e1 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2777070 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4adcbe0 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6898b61 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe8e68c5d ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebe589ef ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf124fc5c ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf37bccc2 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf43fed1a ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf62043ad ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6b21451 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9a8de33 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9ed071d ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfabc58fd ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffbd3c76 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x294af1d7 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x30e68c62 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xf5083fa9 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x12843cf8 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2b12dee2 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x338d8dcd brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x447a5b85 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7bf3a799 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7fd96af2 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x84bd0b9d brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x87750789 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x89a516fa brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9f97380a brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbceaaf05 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xcd469d75 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xedbcc8cf brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xfce56628 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x0f29bb2e stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x9169bbe2 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xfb6881c5 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x20d5d41b libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x366b8aa8 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x429abb49 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x45b5623c libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4fd3835b libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x537a4b6b libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x54e4bb16 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6ce8ba6e libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7279e945 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x76689e8d libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb3af467b libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc131836e libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcf68a14e libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd22e9ebf libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd49aa8fa libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd9571aa3 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xed772847 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xefbe4f99 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf7eea54f libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf99ab251 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfe4076df free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x017c1ea7 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02c6f46a il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x03bbfb2d il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c5ce468 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1513b371 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b97a08d il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1c222109 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d347f17 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1fe5bcf0 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2163db36 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x257eac0b il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x281a9439 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2c09ec41 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2da3e0fb il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3171cdf1 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36eccee7 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3a436bc8 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3a7684f2 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3dc659d5 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3dd89254 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f4b39f9 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3ffc8079 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x40841fa1 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x44c588e9 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x508bae3c il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x520cc428 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x52826c85 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x531e7b2c il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x53cd229f il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55e90808 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55fe5749 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5630cb29 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5b6f6332 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5d112d4e il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x67a1bddb il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d3ce327 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d94dc7d il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x703413c8 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x757876a8 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7673249c il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x78983eaf il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x795ecaba il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b051a71 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b4a73aa il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7d22b05a il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e87ad36 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7ffeaff6 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x81c316bf il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8339162d il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x84d5145b il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8600d686 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a961977 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8aa17850 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b103cf0 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8cc6d9c6 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ed87dbd il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x95b0c4f9 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x972d3923 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x97b4e05b il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x98b39bb1 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9bc20703 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9e35b20e il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa0768f1c il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa302b7b2 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa4716a2e il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa9564aee il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa9f81ba0 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab81c7f1 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xac0f9f8f il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xad7cfeed il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaeb213d0 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb9401838 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb9426be7 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb94a495f il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbe7deb53 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0c3346d il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc3e06526 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc6fbf0dd il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc99a6c74 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc872b26 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd6c5eb12 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xda481b2c il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdc606868 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdd74e73a il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdd985027 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe30aef28 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe49d0507 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe6ed5421 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xee26590a il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf0b4cfec il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf1293d51 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf51be341 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf8c9d774 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfaffd42c il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfb6d2751 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfb97298a il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xff476295 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xffd33d76 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x165246b0 __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x184eebc0 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5047acc4 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7798ef97 __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa80efde2 __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc7cbd0fe __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd361ddde __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x01f97b32 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x21285bfb hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3261ef5e hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x376bc867 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x494fe2cf hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4fe3b1e6 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x63735b77 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6b84c41c hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x711f36eb hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x77841111 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8a251cbd hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x90110941 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x946d60d5 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9a0b111a hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa96c6c69 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xabcfdd5c hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb2cb7c26 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb391ccbe hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcc163ba4 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd64296c1 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd86255bc hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdfc70c5c hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe7720182 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xeafe141e hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xed8cfd24 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x02cf7fcf hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x153e5a15 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x210ea21d orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x24356eb1 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x255eb32f orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x38eaac8d orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x43532d2b orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4787cd21 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x533f6333 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x56fb079f orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7462f595 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x84287c1a orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa825f331 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc52ccc80 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd8ddb939 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdcfe6c7a free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xec3f9147 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x2d1707cf rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x05162be3 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x084f5107 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x176fe5ea rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1bd74821 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x225ac686 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x24389658 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x276ed03b rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2d1287e4 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2d19cca6 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x385a425f rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4294ac7e rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4be4a592 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5e5f858e _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x614a383e rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x700f0486 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7e411f2e rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x85826c0d rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x87e5723e rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x89af2d0e rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8ca9913d _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x94737835 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9730e971 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa2f1d406 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa40c6086 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa46d00ca rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaba29b31 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xad472617 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xae41ca46 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc09a5aa9 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc975df2d _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcb3f940a rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd15b8215 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd172a8f2 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdb4316ac rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe13169dd _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe8f96673 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeb9748b2 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xed01147a rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xee1289f4 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xee3481c5 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf275140b _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x10d35dae rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb927fc2e rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xc8e0103b rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd0956917 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x7a5b90a5 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xb97cb876 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc0f7447d rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf825c43b rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1f6c70fb rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x362500c8 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3849a162 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e97f2cb rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x420efeec efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5fcb6daa rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x62243fc6 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x659cf36f rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x702ceb6b rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x71ea8620 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x74309ade rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7a904297 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7b95bf1e rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8b2a46ec rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c08344c rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ef47599 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x900cb88e rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90c202dc channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9c0fe074 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa24e468f rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xad041b34 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb3416e4b rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5ffba79 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc588ed30 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc746b034 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd4355ba9 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdde35adc efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf0995d14 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf1ea53d1 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf7bc80fc rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xff7d8290 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x24d5e0e3 fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x8c64dbf4 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x9a91b9af fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x29efb7d6 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x43966df5 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x160d6f01 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xbc5e16e7 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xd6020224 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xbad0611a pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x838b96b8 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xb1e77f4a pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x735a6b15 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xb1e8fb2a s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xbbb63aff s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x050ad6b3 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3ea4cad2 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3ee607cc ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4c8e6fb8 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x78700cff ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x79e523bb ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7bae6876 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xcffae938 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd06783c6 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfd13f2e6 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x180af5cb st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2d4ac742 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x35599e75 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x570f5348 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7ee478b5 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x827ca0db st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8b44db08 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x90d9c46b st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x99756bf3 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9a6cfcc7 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xaa6e78d6 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb3aaccd0 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd9d6f474 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xde36a5b9 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdf4bbe30 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe01ad174 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe1d5900d st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf823b28c st21nfca_dep_deinit +EXPORT_SYMBOL drivers/ntb/ntb 0x13531ae6 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x5feb0ee5 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x6d1ae6cd ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x72c5fb8d __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x7f53a920 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x930707c7 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0xbc961082 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xbf61588c ntb_clear_ctx +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x3a9c2bef nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xb2709131 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x2467c67f devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x055ff03b parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x10c3db8d __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x1513f9a0 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x16194bce parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x17754c6e parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x17a65e6e parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x1f4fe91a parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x2fd2cab7 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x36479331 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x476ad12b parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x5636c97d parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x6050ff01 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x65eccee8 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x704acf6e parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x715984c7 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x72ff8102 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x77331f5b parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x7c759810 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x871b5762 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x8a28ab04 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x8b43e467 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x9e8fdc9f parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xa9a093cf parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xaf02158b parport_release +EXPORT_SYMBOL drivers/parport/parport 0xb41bc9c3 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xb734babb parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xc38fdcbf parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xd4927f38 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xe22013a8 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xe33beddb parport_read +EXPORT_SYMBOL drivers/parport/parport 0xf84d0ff9 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xfce3955e parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport_pc 0x0d9bf2fa parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xc6452b79 parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x06a4642d pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x15e00be6 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x265ec173 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2d678e93 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x30a94592 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x32d802ec pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4ba4420d pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x51f281d5 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x59756796 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7bd9fdf5 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7f3f5cb0 __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x820dc2e8 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9108cb43 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xab77d6b8 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xadc75987 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb484128e pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb4f79388 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbe736db2 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf50839b1 pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x07b21b88 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0c02e196 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1240a943 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x409a89f8 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x681f5dce pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x72834362 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x87a9ef57 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8efbd0cb pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa28067c6 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa6e63db3 pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xffb5abc1 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x4dd68c55 pccard_static_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xe1af5b8f pccard_nonstatic_ops +EXPORT_SYMBOL drivers/platform/x86/intel_punit_ipc 0x3a0b563a intel_punit_ipc_simple_command +EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0x5bb1e117 sony_pic_camera_command +EXPORT_SYMBOL drivers/pps/pps_core 0x4452b6ee pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0x7c5aec7b pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0xae2c6220 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0xd2fd9dda pps_lookup_dev +EXPORT_SYMBOL drivers/ptp/ptp 0x0455c17b ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0x2c502e2d ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0xb7955887 ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0xbf88634f ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0xe98fdced ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x050cc825 pch_ch_control_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x16402dd4 pch_ch_event_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x45b230c6 pch_tx_snap_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x4baaa5e7 pch_src_uuid_lo_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x9faaf6ea pch_src_uuid_hi_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0xa9031279 pch_ch_event_write +EXPORT_SYMBOL drivers/ptp/ptp_pch 0xc98643b5 pch_set_station_address +EXPORT_SYMBOL drivers/ptp/ptp_pch 0xca2f0b06 pch_rx_snap_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0xdb9203b4 pch_ch_control_write +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0c935799 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x2502c91d rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3b08cf59 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x43508be3 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x5e00b2f6 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x6c3a7edb rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x74776b29 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xb6fb348c rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xddc93f5a rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf3d16ed3 rproc_da_to_va +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x47b64278 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr +EXPORT_SYMBOL drivers/scsi/53c700 0x97f3ff75 NCR_700_detect +EXPORT_SYMBOL drivers/scsi/53c700 0xfe015000 NCR_700_release +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x68d67e44 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7fa7d7b7 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x8240a80e scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xaaf4761d scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x28de0344 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3eb70458 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4a108f82 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4b4b5729 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6a24bfb5 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6fceb04b fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7467c9a1 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7620ac5a fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb88e2737 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc2ac7ca6 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe1b9fa6a fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe82ce895 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x057154c8 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x076df008 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c851bcd fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x289c3db1 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x296ac3c6 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x298dec2a fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b420e40 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3055db83 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x39e98971 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x542704f5 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x67795c9b fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x68d34c07 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69ae3313 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6aac9ed2 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x72e93b27 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x743d9288 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x74fde4da fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7accedac fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8117a6df fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x84a39ece fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x869390ad libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x888d998b fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d25b3a3 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8ec7885c fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8f0fed6f fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9c9d933a fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d0bcb6c fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d1d0ce7 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0b22001 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa7547a66 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa79e1629 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa7ea364c fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb051d8a3 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb17c5320 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb318db48 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb598cec6 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9ccf863 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbb118a3e fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc3af192e fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd107a0a9 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe10e47ab fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe38212cc fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe62fd0d5 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xef1906ee fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xefbb8810 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf003da23 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf6b4e194 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf70d16ac fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa09d9dd fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfc426fc9 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x1bdfb021 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x351c1053 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa60e6e12 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xc643b87e sas_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x8df29205 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x09f65e97 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1d1f96a9 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x213a3c47 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x22b1edb7 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x24384f2f osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x25dec8d9 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2cb11ac1 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2cd72e36 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3a8c50c4 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x441030ed osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4f38b0cc osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x53cdff2c osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x54855ee3 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x565d98f2 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x668bf2c4 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x74f32fc1 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7ce02d83 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x889ccd4c osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9469981c osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x965590b8 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9ddbb738 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa203e0a7 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa40a0d22 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xaa80d294 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb72887bd osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb8f8566a osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbc54c2ca osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbebd217c osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc4f1e026 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc7428c5c osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd1b4fdf4 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd1c3e934 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe657b236 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe8223e07 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe8e712e8 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf8627136 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/osd 0x1768817a osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0x569aa0ca osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x88aae9fa osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x92a1b8f9 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x98004fb9 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xca50e5ba osduld_put_device +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0281e39d qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x05ac0002 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3663843c qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4d0743b5 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x546f689f qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5cc5c744 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x73476f7c qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x773ca429 qlt_put_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7ea7bb8f qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa067df6d qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc3c2cd5b qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfa17028d qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x28986a76 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x417ea013 qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x6dd42389 qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x91846b1f qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xb10c42b5 qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf76ce6d5 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/raid_class 0x4bf2d31c raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x63ce7661 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xd709e44a raid_component_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x282b816c fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5023b9de fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x53a3938b fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x76427ecb fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x76a12a56 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x88376b2c fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa72d9c6f fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xaeaecde8 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc060b54e scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc894ece9 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xca4762f5 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd533860d fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0a68732c sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x165f0dff sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1915a4c4 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x21436b70 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x288453f6 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2af66b2d sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2dec17c4 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x44573506 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x55ea13b8 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5be43adb sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6132e051 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6dd6184b sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6f78e01a sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x71be0c60 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7c76fdd5 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7d490bbf sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x85584116 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8ce5d60c sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x911e8ea1 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x92b8b857 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x92da82d5 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa56c57e0 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc4d01be1 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc774fe52 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcd62832a sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcfc32080 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdfc51ee9 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xece7c9ff scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfc280386 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x962f9e35 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x9dc604ce spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xdcac8381 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe1b6def6 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xfb0520d4 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x134cac39 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xd764587f srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xda1828de srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xf8c62c06 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xc34e034f tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xdcaabe3b tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x128251f8 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x24941b7a ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x27ab6b47 ufshcd_read_device_desc +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x28f60e2d ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x2b3c485f ufshcd_query_descriptor_retry +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x3e493f50 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x5773d959 ufshcd_read_string_desc +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xed74bb66 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xf0f07245 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xfc3d910d ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xff00f3b0 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x53dcec36 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x56d3bdf3 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/ssb/ssb 0x0414fd37 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x0e4fcba8 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x2bde51aa __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x448e172f ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x4eb07f6a ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x5bf8f6f1 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x5fed7e7b ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x7c5792ce ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x82f93fb4 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x84f14311 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x90288c62 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x951683b3 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x98993034 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x994257fb ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xa544ed10 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xb3606d8f ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc1f10754 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xccb0f844 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xd1e4e701 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xfcb0d2f4 ssb_bus_resume +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x006a36a0 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2743bdfd fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x30d2920b fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x371816c8 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3a6227b1 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x74032cfc fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x768d39e8 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x76ad4c63 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7de2915f fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x80124e0b fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8207a687 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x89a01e4d fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa49f2ce0 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa520353f fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa56f81f3 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xab2e4a96 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xad185950 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb2fbfb8c fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb5b8850a fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc054bf15 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc13adc17 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc8b2e627 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdd72eb38 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf5f1902e fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x12bb18f0 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xa36ed774 ade7854_probe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x000c507f libcfs_debug_dumplog +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x01fef7b4 libcfs_register_ioctl +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x06443cdb cfs_wi_deschedule +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0de6c369 cfs_cap_lower +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0e4820ab cfs_percpt_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0f5eff79 cfs_percpt_number +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x10952de2 cfs_hash_findadd_unique +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x117c8a95 cfs_cpt_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x15565c7f cfs_cpt_set_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x21a44499 cfs_percpt_lock_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x23e25c18 cfs_wi_exit +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x23f6f445 cfs_restore_sigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x247da28c libcfs_kvzalloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2663147a __cfs_fail_timeout_set +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x274e15ce cfs_hash_for_each_safe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x27ff182b cfs_hash_bd_del_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2dbe54b2 cfs_trimwhite +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2efcc0e6 cfs_block_sigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3032b1c6 cfs_hash_for_each_empty +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x31fc5082 cfs_crypto_hash_update +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x36b60398 cfs_race_waitq +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x370609c8 cfs_hash_bd_peek_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x37175882 cfs_expr_list_print +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x377f93fb cfs_srand +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x38828b92 cfs_cpt_unset_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3a62a183 cfs_cpt_set_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3c1285bd libcfs_subsystem_debug +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3c621068 cfs_hash_rehash_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3d5e6098 cfs_race_state +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3d94747d cfs_hash_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3ea730c0 cfs_gettok +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3f0d9281 cfs_wi_sched_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3fb74638 cfs_hash_add_unique +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3ffb8726 cfs_hash_bd_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4062f92b libcfs_run_lbug_upcall +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x411db754 cfs_crypto_hash_final +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x413056d8 cfs_cpt_weight +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x42e22feb cfs_cpt_table +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x44688a0a cfs_block_allsigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x44839bbb cfs_rand +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x47c28f55 cfs_hash_putref +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4a99af72 cfs_clear_sigpending +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4d3b4eaf cfs_fail_err +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4d89e988 cfs_block_sigsinv +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4f7f4a71 cfs_hash_del +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x52b9c7e9 lbug_with_loc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x52e9cfc1 cfs_cpt_current +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x53b383e4 cfs_cpt_unset_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x58a7ee00 libcfs_catastrophe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5b2451b1 cfs_percpt_unlock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5c013b81 cfs_expr_list_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5ce62c0e cfs_cpt_table_print +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5d73c3e3 cfs_expr_list_free_list +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5f40f909 cfs_hash_bd_add_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x62289d65 cfs_array_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x6383a458 cfs_hash_for_each_nolock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x63b198ca cfs_hash_size_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x67398404 cfs_wi_sched_destroy +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x68497dbf cfs_cpt_number +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x6c147ea0 libcfs_kvzalloc_cpt +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x6c605eaa cfs_cpt_unset_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x71c4cca8 cfs_percpt_lock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x71e3804b cfs_crypto_hash_digest +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x71f662a3 libcfs_debug +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x752858fb cfs_cpt_table_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x77582ac2 cfs_crypto_hash_update_page +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x7d93cded cfs_cpt_of_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x7fda989d cfs_fail_loc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8151c3aa cfs_cap_raised +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x84ada9bd cfs_hash_lookup +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8b8f321d cfs_crypto_hash_speed +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8e61d47b cfs_cpt_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x93896a8b cfs_crypto_hash_init +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x940ed192 libcfs_stack +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9879b229 cfs_get_random_bytes +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x98f0e065 libcfs_deregister_ioctl +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9d5a2ed1 cfs_hash_del_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9f82f712 cfs_trace_copyout_string +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa25969db cfs_hash_debug_header +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa2b68b2a cfs_array_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa711aec5 cfs_cpt_table_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa76536a3 cfs_hash_add +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa9088531 cfs_expr_list_values +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa9dc74e2 cfs_trace_copyin_string +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xaaf59b75 cfs_cpt_set_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xad019238 cfs_str2num_check +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xadb100a9 lprocfs_call_handler +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb53b5569 cfs_cpt_spread_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb74f8304 cfs_hash_bd_lookup_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb8ae9e22 cfs_hash_cond_del +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xbada117b cfs_cpt_clear +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xbde28c50 cfs_hash_getref +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc0ea7fc0 cfs_expr_list_parse +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc2911d96 cfs_expr_list_match +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc77a24c3 cfs_cpt_set_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xcf61bacb __cfs_fail_check_set +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd0d8d08a cfs_cpt_unset_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd358fa6d cfs_hash_hlist_for_each +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd96f406d cfs_cap_raise +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xdf2789c0 cfs_curproc_cap_pack +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe0ce7738 cfs_percpt_lock_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe11f8f1d cfs_hash_debug_str +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe2f91ce3 libcfs_debug_msg +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe3bf6897 cfs_percpt_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe8d8fad8 cfs_hash_is_empty +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xeccafa5c cfs_cpt_online +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xeceac781 cfs_fail_val +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xefa4ca84 cfs_hash_for_each_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf03bdf11 cfs_wi_schedule +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf2c02048 cfs_cpt_bind +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf3565b71 libcfs_debug_vmsg2 +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf372d1c2 cfs_firststr +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xffa66c11 cfs_hash_for_each +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x0090e935 libcfs_net2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1366b7ac LNetSetLazyPortal +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x19670622 LNetNIInit +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x197e08f6 lnet_copy_kiov2kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1a60d439 cfs_parse_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1ee5f15e lnet_ipif_query +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1f90012f lnet_create_reply_msg +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1fe16fd5 LNetGet +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x2aa9953d lnet_cpt_of_nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x2ac93e90 lnet_connect_console_error +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x2f8c3595 lnet_net2ni +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x33202a6c LNetGetId +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x37dc2641 lnet_kiov_nob +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x3c779ee0 LNetPut +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x3e7d6e7d lnet_parse +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x3f4f5b46 LNetNIFini +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x473ad33b LNetDist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x48f163c6 libcfs_str2anynid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x50345570 libcfs_str2net +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x55db5324 lnet_iov_nob +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x58a1ca89 LNetMDUnlink +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x5e91cfec lnet_copy_iov2iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x5fee352c lnet_acceptor_timeout +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x61f784b2 LNetClearLazyPortal +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x62b1f6a2 lnet_sock_getbuf +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x64cdea3a LNetCtl +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x66d449b1 lnet_ipif_enumerate +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x68a2e072 lnet_finalize +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x6d0cbbcc lnet_copy_iov2kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x722c76e5 LNetMDAttach +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x786b467a libcfs_nid2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7ccea538 lnet_sock_read +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7d59a7fe LNetMEInsert +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7f6a37dc lnet_extract_kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x83d795e4 cfs_match_nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x8e18dc7c LNetDebugPeer +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x93d819f8 lnet_sock_write +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x96a05312 lnet_notify +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x97f5966b libcfs_lnd2modname +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x9de986d3 LNetEQAlloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x9fe7f93b lnet_sock_getaddr +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xa137cafa lnet_unregister_lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xa56de08d lnet_ipif_free_enumeration +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaa414970 LNetMEUnlink +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaa9b477e LNetMDBind +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xac3cdbdb lnet_register_lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xade657cc libcfs_next_nidstring +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xae2ed353 lnet_sock_setbuf +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb11e8731 lnet_copy_kiov2iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb3235c5b cfs_nidrange_find_min_max +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb75f7953 LNetEQFree +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xba5566d2 lnet_acceptor_port +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xbf0760a2 LNetMEAttach +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xccc45639 cfs_free_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xcf4eb544 cfs_print_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xcf59344b lnet_set_reply_msg_len +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xd1c2f3e4 lnet_extract_iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xd9313bf7 lnet_connect +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xeaeb6565 cfs_nidrange_is_contiguous +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xec1f56d5 libcfs_str2nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf1b316bf LNetSnprintHandle +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf30efdf5 libcfs_lnd2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf3d17c24 the_lnet +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf8a8644b libcfs_id2str +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf94025d1 libcfs_str2lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfa106804 lnet_counters_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfe7ca17c libcfs_isknown_lnd +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x1c4bb5f9 LU_OBF_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x375e6f8d LUSTRE_BFL_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x75cf7d6e client_fid_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x7813dc90 seq_client_alloc_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xa5b06603 client_fid_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xae61cff5 LU_DOT_LUSTRE_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xc997a02f LUSTRE_SEQ_SPACE_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xe7ae00e8 seq_client_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xecee2727 LUSTRE_SEQ_ZERO_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x01e1594e fld_client_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x508112a1 fld_client_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x5195cd5c fld_client_add_target +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x5c00b618 fld_client_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x5df9389d fld_client_debugfs_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xcf11a53b fld_client_del_target +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xd06aae81 fld_client_lookup +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0x100dc218 ll_direct_rw_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0xc5a016dc ll_iocontrol_register +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0xcd3cde92 ll_iocontrol_unregister +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0xeda544b5 ll_stats_ops_tally +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x0cfd6a75 lov_lsm_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0xc42375d9 lov_read_and_clear_async_rc +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0xe40fc56e lov_lsm_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0xfcbf029c lov_device_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/mdc/mdc 0x7d823a67 it_open_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/mgc/mgc 0xdc287f95 mgc_fsname2resid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x02893fc3 cl_io_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x035852d0 lustre_swab_llog_rec +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x03b236af cl_stack_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x06d82d96 class_handle_unhash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x07aa68bb lustre_swab_lustre_cfg +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x07d45876 obdo_set_parent_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0835fafd libcfs_kkuc_group_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x083942ff class_del_profile +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x088dccc2 lprocfs_oh_tally +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x095e48b3 cl_req_completion +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0c378d79 lustre_swab_llog_hdr +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0c4d94d3 cl_page_is_owned +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0d5bd869 class_new_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0e63858f cl_env_percpu_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1014b474 cl_lock_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x10be3346 lu_context_exit +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x10df84f9 cl_env_nested_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x11495519 lprocfs_write_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x115ac60d cl_io_lock_alloc_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1384087a lu_site_init_finish +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x13e4909a cl_page_completion +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1492c64a cl_object_attr_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x15006a4b class_config_parse_llog +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1501caae lu_object_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x16311a16 cl_lock_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x17056056 class_incref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x19b32f04 class_connect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1d8aa310 cl_site_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1fcdc9ee class_exp2cliimp +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x20490edd obd_devs +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x209c3442 lu_object_add_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x221826f1 class_parse_nid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x231b45a9 lu_object_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x240aac1d lu_object_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x24c9f680 lu_object_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x252407df lu_kmem_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2547efae lustre_uuid_to_peer +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x261fbe39 cl_page_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x26cac6db lu_context_refill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x275cdc7a cl_env_reexit +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x286860f5 class_handle_free_cb +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2909f2d9 class_disconnect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2935f3d5 lu_object_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x297cf5e0 class_handle2object +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2ab6363f lu_device_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2b8987ef lu_site_stats_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2bc480fd lu_context_key_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2cceb7a3 class_handle_hash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2da67e10 cl_lock_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2f4aba31 cl_page_make_ready +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3174f795 cl_io_is_going +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x317ecbff cl_env_implant +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x31832979 cl_sync_io_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3242ed35 obdo_cachep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x32711520 cl_io_iter_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x33a6485b lu_context_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x33c74565 libcfs_kkuc_msg_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3450c289 libcfs_kkuc_group_rem +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x355867d6 cl_page_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x35829c39 cl_2queue_discard +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3726f79e cl_lvb2attr +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x37ed6e4b at_early_margin +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3832ae8c cl_2queue_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x392c2c93 cl_env_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3be5b3c4 cl_lock_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3c6d39cb cl_env_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3f1d6abd cl_req_page_done +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3fe4e58f class_fail_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x40b816a1 cl_page_own +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x413e29d7 cl_2queue_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4357b315 lprocfs_counter_sub +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x440d855a lu_object_header_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x44570b36 lprocfs_rd_timeouts +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x47b35f7d statfs_unpack +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x485ec4dd lu_context_key_degister_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x49a29223 lprocfs_find_named_value +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4a41ccc9 libcfs_kkuc_group_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4a8b653e lprocfs_rd_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4ac58713 obd_connect_flags2str +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4b83be27 lu_context_enter +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4c50312d class_manual_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4cdba485 cl_page_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4d4bcf8c class_new_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4e97150f llog_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4fff99b7 lu_site_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x503fa278 cl_page_own_try +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x504e4bd1 lu_object_find_slice +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x50c7fc36 ptlrpc_put_connection_superhack +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x527c837e llog_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x54e21db9 cl_page_clip +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x552c0ad9 cl_env_cache_purge +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x558bec27 obd_ioctl_getdata +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x55c0cb39 cl_page_is_vmlocked +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x56e59786 cl_page_list_move_head +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x570d09ae lustre_swab_lu_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x57509f1d class_export_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x577c312f cl_io_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5a14672a cl_env_percpu_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5dbbebea class_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5e8436c6 cl_io_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5eacd876 lu_context_key_degister +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5f5c3e29 cl_io_start +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5fe97b73 block_debug_check +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5ffffd70 cl_sync_io_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x61e98df7 libcfs_kkuc_group_foreach +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x620e5b80 class_config_llog_handler +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x660710ab cl_env_nested_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6734adbd lprocfs_read_frac_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6890d175 lustre_get_jobid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x68bd49da lprocfs_oh_clear +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x69c42114 at_min +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6bf30b96 class_unlink_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6c2d90b4 obdo_refresh_inode +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6ca7a995 lu_site_purge +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6cd9e0a6 cl_page_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6ce3f074 cl_req_page_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6d1011fb cl_cache_incref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6fcb7042 lprocfs_counter_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x70becf91 class_find_client_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7108a4d4 lu_context_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x71191b9c lu_context_key_quiesce_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7141d5ad lu_device_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x73d5e851 cl_io_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x742559b1 class_unregister_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x752168d8 obd_unstable_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x752f71a8 class_get_profile +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x756a77f3 class_parse_nid_quiet +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x768ddd31 lu_object_locate +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x77d2089a class_name2dev +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7802fcd7 lustre_swab_llogd_conn_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x78377c7e cl_vmpage_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x789796a1 obd_zombie_barrier +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x793b2e3f cl_sync_io_note +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x79eaef15 cl_env_unplant +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7a389e69 cl_offset +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7af6902d lustre_end_log +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7b4fc57b at_max +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7bc687ed cl_object_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7e2896c8 cl_io_unlock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7e56675c class_process_proc_param +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7e66f5c3 cl_object_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7edcafa0 cl_env_reenter +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7fe5561a obd_dirty_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x806cc497 class_add_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x80fc0ab6 lu_object_header_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x814c8c3c cl_lock_enqueue +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x81742d89 obd_ioctl_popdata +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x81eb3905 lprocfs_free_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x831f656c class_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8446b9a8 obdo_to_ioobj +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x85711807 cl_sync_io_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x85898443 lprocfs_clear_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x85a13ef4 cl_req_attr_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x86571ace cl_page_list_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x87332bc1 lu_device_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8765552b class_name2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8785b111 class_import_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8896d797 cl_lock_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x89af3f0f lu_site_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8ba6e479 lustre_swab_lu_seq_range +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8bb05662 cl_req_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8e9f72f9 cl_page_assume +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8eb85524 cl_env_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8f67314c obd_dump_on_eviction +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8f6e2360 cl_io_lock_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x908d3842 lustre_register_kill_super_cb +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x90be35ab cl_object_prune +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x92ca1844 lu_site_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x92e58479 obd_dump_on_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x934a384b lprocfs_rd_connect_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x95407e06 cl_index +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x95735c6c at_extra +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x95b8f61a cl_page_prep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x96efd1be cl_object_kill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9767adce class_uuid2dev +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x97d03783 at_history +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x98d6038d cl_page_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x99ca4f84 cl_page_delete +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9a41dc15 md_from_obdo +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9b1ed9d8 obd_jobid_var +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9c20cd13 class_destroy_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9e4717b9 cl_req_prep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9e622aa3 class_devices_in_group +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa03885e5 cl_page_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa160da4a lu_object_header_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa1cb75b4 cl_page_list_del +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa1f9b08c cl_req_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa261fe37 cl_page_find +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa2af57c0 cl_io_read_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa4c8a0d9 llog_cat_close +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa52cc1c0 lustre_common_put_super +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa5e0fefa cl_page_list_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa5fb234f lprocfs_write_frac_u64_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa6983f9a lu_context_key_revive +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa6d66f82 cl_io_submit_rw +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa710b14c lu_env_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa7111d84 lustre_register_client_fill_super +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa7984478 cl_io_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa834dd4e lprocfs_rd_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa8625487 llog_thread_key +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa8dbea02 lu_cdebug_printer +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xaaaac865 cl_object_attr_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xab348ff3 lprocfs_rd_server_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xab4f4e45 cl_cache_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xab627060 cl_page_unassume +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xadd41d25 llog_process_or_fork +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb01963a6 class_uuid_unparse +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb21566c0 lprocfs_at_hist_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb35519ed lustre_swab_cfg_marker +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb41513c1 class_export_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb49881cc cl_page_list_move +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb4addc48 cl_page_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb4f8ee63 lprocfs_read_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb514765f cl_lock_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb53aa9be cl_lock_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb573f060 cl_page_is_under_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb6a04228 cl_page_discard +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb8c62bd0 lprocfs_oh_tally_log2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb8cfec00 cl_page_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xba0f62d5 lu_context_key_register_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xba985283 lustre_register_client_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbacac922 lprocfs_write_frac_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbbd694de cl_page_list_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbd2fe036 lu_device_type_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbdf70825 class_exp2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbe2237fa cl_object_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc0bf7ef2 obd_debug_peer_on_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc183f2ee lprocfs_rd_conn_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc252af40 lu_context_key_register +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc404837c lprocfs_stats_alloc_one +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc5616884 class_register_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc5e4b2d6 lprocfs_rd_uint +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc7eaa9ed cl_io_sub_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc8ff11bf lprocfs_exp_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc950628a cl_lock_mode_name +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc9510524 cl_site_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc9a4d89e lu_device_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc9c2c222 lprocfs_alloc_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xca7306e6 cl_io_submit_sync +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcb0ab67f obd_max_dirty_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcb0e40fe cl_conf_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcbd97a90 lu_device_type_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcdbc6785 cl_page_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcdf6f8fd cl_object_glimpse +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcdfa92ef llog_init_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xce263c88 lu_context_key_quiesce +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcec59c62 lu_object_find_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd0101fc1 lprocfs_counter_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd04e3140 cl_object_attr_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd0965d2b cl_site_stats_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd10c5788 cl_lock_descr_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd2017930 lprocfs_oh_sum +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd448b518 lustre_process_log +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd50dc05c cl_io_iter_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd5819933 __llog_ctxt_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd70fe669 lustre_swab_llogd_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd7bc8654 obd_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd7d6a34b cl_object_find +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd929f547 cl_object_attr_unlock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xda5b1ced class_find_param +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdb16e62a cl_page_list_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdcc40af0 class_check_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdd082173 cl_object_header_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdd612590 lu_env_refill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xde7d985b obd_dirty_transit_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdefbaf26 class_conn2export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdf8c6524 cl_io_commit_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe1579bfb lprocfs_stats_collect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe40196ca lu_env_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe41ddada cl_cache_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe46b9436 lprocfs_seq_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe583b23b lu_kmem_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe7459a4d class_import_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe76c019a class_put_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xea61d323 cl_page_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xec7d6b85 obd_timeout_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xecab21e8 llog_close +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xecd7d27c llog_cat_process +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xed4256b8 cl_2queue_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xedb4a7ec cl_page_list_splice +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xeddd382e lu_object_unhash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xee6f9780 lprocfs_wr_uint +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xef1c7d94 lu_context_key_revive_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xef76f858 block_debug_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf14ee4df cl_2queue_init_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf2cf8a78 cl_io_loop +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf31b90cd lprocfs_single_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf4640911 cl_io_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf490d5f9 class_del_profiles +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf55e78d9 cl_lock_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf9f98d47 cl_page_header_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfa597a41 obdo_from_inode +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfae2df51 cl_type_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfb07c5fd cl_page_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfbea0098 lu_types_stop +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfcba8ba8 llog_open +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfcdd47a2 class_num2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfd68d17a class_notify_sptlrpc_conf +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfdbe1557 lprocfs_write_u64_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfde4339c cl_io_rw_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xff2a701c llog_process +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xffbebfb1 lu_stack_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfffc1f11 lustre_swab_ost_id +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00409963 ptlrpc_reconnect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00cb99c1 RQF_LDLM_INTENT_GETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00d95039 ptlrpcd_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x01024741 ldlm_lock_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x048b59d5 lustre_msg_set_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0515f93b RQF_FLD_QUERY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x05fe5cb8 ptlrpc_unregister_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x06af69ff ptlrpc_add_rqs_to_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x06b3942b lustre_swab_lov_user_md_objects +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0716de3e req_capsule_server_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x071fc74a RQF_LDLM_ENQUEUE_LVB +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x08bb2d27 lustre_swab_obd_ioobj +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x095587d0 lustre_msg_buflen +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x096d51e8 ldlm_replay_locks +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x098d2ce0 sptlrpc_enc_pool_put_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x09999511 lustre_pack_reply_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x09dfbb01 ptlrpc_req_finished +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0a3130b0 RMF_MDT_EPOCH +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0ac252b2 lustre_msg_set_jobid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0b174c28 ptlrpc_set_destroy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0bcacb5d RMF_MDS_HSM_USER_ITEM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0c66079e ptlrpc_set_add_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0cf343dd RQF_LDLM_INTENT_BASIC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0e916f9d ldlm_lock_fail_match_locked +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0fd7a5e0 req_capsule_shrink +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x10a1a86d ldlm_error2errno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x115017f6 req_layout_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x11ba484a ptlrpc_prep_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x121540f7 ldlm_namespace_dump +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x12b6f5a3 ptlrpc_connection_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x14708afc lustre_swab_mdt_rec_reint +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x14d192db lustre_msg_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x152f066f sptlrpc_flavor_has_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x15a3e4db RMF_GETINFO_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x172fb86d lustre_msg_hdr_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1747d8b3 ldlm_lockname +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x17950f60 RQF_SEC_CTX +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x17a10fa5 client_import_del_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x17b581fb ptlrpc_pinger_del_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x181ce3fe ldlm_lock_set_data +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19108a0f RQF_OST_DISCONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19740901 ptlrpc_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19b9b418 ptlrpc_deactivate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19c08934 RQF_LDLM_INTENT_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1a6a3ce9 RQF_OST_GET_INFO_LAST_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1a9b76aa RMF_OBD_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1abd3258 RMF_SETINFO_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ace4b5f RQF_LDLM_BL_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ad6c330 RMF_EAVALS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1be21715 lustre_msg_size_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1c300d8e lustre_msg_get_slv +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1d1f9fc4 ldlm_resource_putref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1dc2051d RMF_SEQ_OPC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1de9c288 lustre_swab_layout_intent +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1eb2a65f RQF_OST_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ee46b51 lustre_init_msg_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ee9eb3c RQF_MDS_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2096f5b5 RQF_OST_SET_GRANT_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x214c27db _debug_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x215aea82 target_pack_pool_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x219391ec RMF_EAVALS_LENS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x227a4c98 ptlrpc_send_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x233790b5 RMF_OST_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x24aafdba RMF_MGS_TARGET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x24d753a6 sptlrpc_cli_unwrap_bulk_write +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2585a629 RMF_SEQ_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2587513c RQF_LDLM_CP_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x25ad001d ptlrpc_recover_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x269554ce RQF_LDLM_INTENT_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x26f99d16 RQF_MGS_CONFIG_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x27843c89 ldlm_lock_change_resource +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x27cab335 ptlrpc_schedule_difficult_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2835f711 client_obd_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x285e5b99 lustre_msg_set_conn_cnt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2867cffb req_capsule_get_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x29e0869a sptlrpc_get_hash_name +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x29e2c2c1 ptlrpc_lprocfs_register_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x29fa19ec req_capsule_has_field +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2a4186b9 ptlrpc_invalidate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2a63a472 lustre_swab_ptlrpc_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2c00c60d ptlrpc_sample_next_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2cd9a096 ptlrpc_at_set_req_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2cec385f ldlm_lock_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d56f168 ptlrpc_pinger_ir_up +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d798316 RMF_MGS_CONFIG_RES +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e38055a req_capsule_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e4562fe RQF_LLOG_ORIGIN_HANDLE_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e4ca396 RQF_LDLM_INTENT_UNLINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2f0e4f87 RQF_OST_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2f793215 lustre_swab_ost_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2fab3539 lustre_swab_ost_lvb_v1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2fd2f737 lustre_msg_set_limit +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x301d4fcd RQF_MDS_READPAGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x302937e0 RQF_MDS_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3261b862 RQF_OST_SYNC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x327d70fa ldlm_pool_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3323e29e ptlrpc_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3360cc63 ldlm_cli_enqueue +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x33ac9136 client_import_add_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x343cd69e ptlrpc_prep_fcset +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x344b1356 ptlrpc_request_free +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x352009ab sptlrpc_cli_enlarge_reqbuf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x35939a3d lustre_swab_fiemap +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3835ab4b RQF_LLOG_ORIGIN_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3858fb94 RMF_OBD_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x389eb206 sptlrpc_import_sec_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x38c01799 RQF_LDLM_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x38fce533 lustre_msg_set_versions +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x399355c8 ptlrpc_obd_ping +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x39f60a5f RMF_OST_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3a1e4bcb __lustre_unpack_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3a2272c3 _ldlm_lock_debug +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ab90f6e lustre_msg_bufcount +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ac00716 lustre_swab_hsm_user_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ad3ac8e ptlrpc_abort_inflight +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3b6b7cba dump_ioo +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3bedb0c7 RMF_LLOGD_CONN_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c63e62b RQF_MDS_REINT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c8b16ab lustre_swab_ost_lvb +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ca50f33 RQF_MDS_HSM_CT_REGISTER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3d2575e3 ldlm_lock_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3d7dc5f9 ldlm_pools_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3dc47695 lustre_msg_get_magic +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f034caf lustre_msg_get_status +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f35a11d RQF_FLD_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f752e78 RQF_MDS_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f79e28f sec2target_str +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x40095ced sptlrpc_target_export_check +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x403f4834 ptlrpc_lprocfs_brw +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x40a21f16 ptlrpc_request_committed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x41008cef RQF_LDLM_CANCEL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43168488 RQF_MDS_RELEASE_CLOSE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4351e916 lustre_swab_hsm_user_item +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43705ee4 RQF_LOG_CANCEL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43d7efc8 lustre_msg_set_transno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x44036eda RQF_MDS_GET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x440c2a71 RMF_FIEMAP_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4481591d RQF_OST_SET_INFO_LAST_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x44965cc6 ldlm_lock2desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45d05893 lustre_swab_lustre_capa +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45e30cea lustre_swab_ldlm_intent +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x46b7a1a1 req_capsule_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x47f5e903 RMF_MDS_HSM_REQUEST +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4824694b ldlm_cli_cancel_unused +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x49d00cd9 sptlrpc_conf_client_adapt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x49f47e09 ptlrpc_retain_replayable_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4a5a2416 RMF_DLM_REQ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4b12fec6 ptlrpc_buf_set_swabbed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4b269267 ptlrpc_request_bufs_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4d4146b2 ldlm_flock_completion_ast +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4d7d9f51 ptlrpc_request_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4db8dde9 lustre_pack_reply_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4df87139 ptlrpc_check_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e1706e5 lustre_msg_buf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e696b96 ptlrpcd_queue_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e939b50 lustre_free_reply_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4eb03a6f ptlrpcd_destroy_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4f766c3b lustre_swab_generic_32s +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x50443f6a ptlrpc_init_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5099f472 sptlrpc_unregister_policy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x50dd74f8 RMF_STRING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x514b3851 lustre_swab_ldlm_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x517fa3f8 ldlm_cli_cancel_unused_resource +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x51c31941 ptlrpc_replay_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x51e311e9 lustre_swab_ldlm_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x527ce4d8 sptlrpc_cli_ctx_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x52c62150 RMF_RCS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x53411557 RMF_DLM_REP +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x535b90b3 ptlrpc_connect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x53a4a004 bulk_sec_desc_unpack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x54076488 req_capsule_client_sized_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x555eb7fe RQF_MDS_HSM_STATE_SET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5856732d sptlrpc_import_flush_all_ctx +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x595ab175 lustre_swab_obd_quotactl +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x596582bf RMF_GETINFO_VALLEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5b6ba895 lustre_packed_msg_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5c6a3a83 RQF_SEQ_QUERY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ca1b491 lustre_swab_close_data +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5caae213 ptlrpc_next_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e0b19b1 RMF_CLUUID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e2b7558 lustre_msghdr_get_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e6f435d RQF_OST_BRW_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e80f899 RQF_LLOG_ORIGIN_HANDLE_READ_HEADER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ea5a997 __ptlrpc_prep_bulk_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ec3284d RQF_MDS_HSM_CT_UNREGISTER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ef831ee lustre_msg_get_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5f96ccdd ptlrpc_connection_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5fc9a455 RMF_CLOSE_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6042bc15 RQF_MDS_REINT_RENAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x604e2505 RMF_SWAP_LAYOUTS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x60cd26ad RQF_MDS_REINT_CREATE_SYM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x61646e1b RQF_MDS_SWAP_LAYOUTS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x618ad203 RQF_OST_GET_INFO_LAST_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x62aaae3f RQF_MDS_HSM_REQUEST +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6315dd4c RMF_LLOGD_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6352a62d ldlm_get_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x63af10cc req_capsule_client_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x653723dc RMF_LOGCOOKIES +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x657f75b6 ptlrpcd_alloc_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x66497ad2 req_capsule_set_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x68590e12 client_import_find_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x685eeaba RMF_DLM_GL_DESC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x68f49e5e ptlrpc_expired_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6912990a RQF_OST_QUOTACHECK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x696ba811 lustre_msg_get_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x69c9f04d RQF_MDS_REINT_LINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x69e6a42a ptlrpc_request_alloc_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6a3785c9 RMF_EADATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6b2ad96d sptlrpc_lprocfs_cliobd_attach +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6b50ce6d lprocfs_rd_pinger_recov +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6bf74cb0 ldlm_namespace_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6d33afa4 ptlrpc_request_set_replen +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6d72828c sptlrpc_conf_log_update_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6da5cb0a ptlrpc_lprocfs_unregister_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6efa82b0 RQF_MGS_TARGET_REG +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6efb32a2 ptlrpc_set_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6fb92092 sptlrpc_flavor2name_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x703538e4 lustre_swab_hsm_current_action +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x71987203 lprocfs_wr_ping +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7257290f ptlrpc_pinger_add_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x725a892c RQF_MDS_REINT_OPEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x72b93e53 ptl_send_rpc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x72d92b1f sptlrpc_gc_add_sec +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x72ec9a07 ldlm_lock_allow_match_locked +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x73513f90 ldlm_resource_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x73db7e7e sptlrpc_cli_ctx_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x74840056 lustre_msg_set_status +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x75a2c40d ldlm_put_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x75cd39c1 ldlm_resource_unlink_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x75e4ca61 RQF_OST_GET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x76e2e7e6 ptlrpc_buf_need_swab +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x77d1192f ldlm_cli_cancel_list +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x78d10062 ptlrpc_request_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x79bb7813 ptlrpc_register_service +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7a832f10 RMF_CONN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7bbf8001 RMF_MDT_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7c4c6107 RQF_LDLM_CONVERT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7d1ecd7f RQF_LDLM_INTENT_LAYOUT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7d9a13fe ptlrpc_set_add_new_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7d9ca08c client_connect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7dfb3c18 lustre_msg_clear_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7f00484f ptlrpc_unregister_service +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7f5a1cc7 lustre_msg_set_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x80ecb4e3 RMF_MDS_HSM_CURRENT_ACTION +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x815a7499 lock_res_and_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x817d7f1f lustre_msg_add_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x818388ca ldlm_lock_decref_and_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x81f2c6ca sptlrpc_sec_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x826d3c4f RQF_LDLM_GL_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x837efb00 RMF_NAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85135801 RMF_DLM_LVB +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85a9e0d8 RMF_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85eecf67 sptlrpc_get_hash_alg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x863db6eb RMF_HSM_USER_STATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x86883bfe req_capsule_filled_sizes +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8735203b ldlm_cancel_resource_local +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x876c2551 RMF_GETINFO_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x87bf7b3c sptlrpc_get_next_secid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x87c96542 ldlm_completion_ast +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x87e9d32e ptlrpc_unregister_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8872f3d2 RMF_SETINFO_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x88fff52d RMF_CAPA2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x895b0ecb ldlm_completion_ast_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x89f9edf7 RQF_MDS_REINT_SETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8a1ea476 lustre_swab_hsm_state_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8a257736 RQF_MDS_HSM_STATE_GET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8ac440fa ptlrpc_uuid_to_connection +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8b854254 lustre_swab_mgs_config_res +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8cb71d4b RQF_MDS_REINT_CREATE_SLAVE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d1ab900 ldlm_lock_dump_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d77ea75 lustre_msg_set_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8da3fca7 lustre_msg_add_version +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8e8f23a3 ldlm_namespace_new +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8e9abe4d RMF_GENERIC_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8f0aceac RQF_MDS_HSM_ACTION +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8f0e8824 lustre_pack_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8fec0451 lustre_msg_get_limit +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9113f109 ldlm_cli_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x919c4ce3 RMF_OBD_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x91ca41cb req_capsule_server_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x91cf58d3 RQF_MDS_PIN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9228392f lustre_swab_mdt_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9277ae5e RQF_MDS_REINT_CREATE_ACL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x92f17887 ptlrpc_disconnect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x937b1ee0 lustre_swab_mdt_ioepoch +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x94a04956 unlock_res_and_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9553c633 RQF_LDLM_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9564a202 ldlm_lock_addref_try +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x95d08f0c lustre_swab_mgs_target_info +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x96534229 sptlrpc_target_sec_part +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9660ace0 RMF_FLD_MDFLD +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x967bfd52 RQF_OBD_PING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9798f2f1 RQF_MDS_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x980fcfdc ptlrpc_connection_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x98bec6cc lustre_pack_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9999cf7a dump_ost_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9a258886 RQF_MDS_GETSTATUS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9a34ea27 llog_client_ops +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9a6f2f6d lustre_msg_set_opc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9b1712a6 __ptlrpc_free_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9b88f6ce RMF_NIOBUF_REMOTE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9bb5198b RQF_MDS_CLOSE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9d7ea314 sptlrpc_pack_user_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9e39e3ed sptlrpc_cli_unwrap_bulk_read +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9e52b047 ptlrpc_free_rq_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9fb088f1 lustre_swab_lov_mds_md +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa02983ea ldlm_pool_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa11dbb72 ldlm_pool_del +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa163f4c3 dump_rniobuf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa1739685 ldlm_resource_iterate +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa2244636 RQF_MDS_GETATTR_NAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa359ad16 ptlrpc_request_alloc_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa3d2a6ee RMF_CAPA1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa47787ef RMF_PTLRPC_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa4a2d089 RQF_OST_PUNCH +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa5171982 ptlrpcd_wake +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa6749c0e req_capsule_server_sized_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa6c436ca RQF_MDS_WRITEPAGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7714c06 llog_initiator_connect +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7a03774 ldlm_cli_cancel_list_local +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7e360b1 RMF_OBD_IOOBJ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7ec567d RMF_CONNECT_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa929819d ldlm_prep_elc_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9704f80 lustre_msg_get_last_committed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9c4658e lustre_swab_lov_user_md_v3 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9e40b00 ldlm_lock_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xabb7b004 ptlrpc_activate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xac2dca5c ldlm_lock_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xacd6a7d7 lustre_swab_ost_last_id +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xae9de7f4 ptlrpc_add_timeout_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf25d4ed ptlrpc_init_rq_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf4e9658 RQF_MDS_SYNC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf50a0d6 RMF_HSM_STATE_SET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb0751fa4 RQF_LLOG_ORIGIN_HANDLE_DESTROY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb1b25b4e lprocfs_wr_pinger_recov +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb1b43d8a dump_rcs +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb291473d lustre_msg_early_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb4a7ecf3 lustre_msg_add_op_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb512ebc2 sptlrpc_parse_flavor +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb5e9f6e9 ptlrpc_resend_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb61cb95a RQF_MDS_GETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb63f9720 ptlrpc_unpack_req_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb68476df interval_erase +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb684f92e sptlrpc_cli_wrap_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb6aafd03 RQF_MDS_DONE_WRITING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb7b38189 RMF_MDT_MD +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb7ca20b1 ptlrpc_wake_delayed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb7fa3cc8 RMF_LLOG_LOG_HDR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb903634e RQF_OST_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb95696ac req_capsule_client_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb9b631cf lustre_swab_mgs_config_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xba62b41a sptlrpc_import_flush_my_ctx +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbaa76097 lustre_msg_string +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbadd6776 lprocfs_wr_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbb61d937 ldlm_lock2handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbbcbed46 ptlrpc_set_import_active +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbc1370dc lustre_shrink_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbd10a75c req_capsule_server_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbd83bc44 RQF_OBD_SET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbef769cc RQF_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbf7c7d1d req_capsule_extend +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbf98b86f RQF_MDS_QUOTACHECK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbfefd613 ldlm_resource_dump +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbffd4313 RQF_OST_BRW_WRITE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc06c4670 lustre_msg_get_versions +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc0867da7 RMF_REC_REINT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc0cdf55e RMF_MGS_SEND_PARAM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc2b1af57 RQF_MGS_SET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc2be922a RMF_SYMTGT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc4988084 __ldlm_handle2lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc4df8164 ldlm_prep_enqueue_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc559a634 RMF_LAYOUT_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc60a60e1 RQF_OST_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc694be4b RQF_LLOG_ORIGIN_HANDLE_PREV_BLOCK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc763fabc sptlrpc_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc79b9c67 ldlm_pools_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc7ca8257 RQF_MDS_REINT_SETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc7e47564 ptlrpc_interrupted_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc8f586a9 ptlrpc_connection_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc8fb7bd8 client_destroy_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc96547d6 ldlm_revalidate_lock_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc9f0a9dc ldlm_cli_update_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xca5a81ec ptlrpc_pinger_ir_down +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcb2cc0cf lustre_swab_lquota_lvb +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcb9c9bd8 ptlrpc_fail_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xce81e989 sptlrpc_gc_del_sec +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xce86066d lustre_msg_set_slv +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcec513c9 RQF_MDS_UNPIN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcf9963db lustre_msg_get_op_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcf9aab6a RQF_MDS_DISCONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2983334 lustre_swab_swap_layouts +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2e0d4eb lustre_msg_get_opc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd3a3f1d0 ptlrpc_unpack_rep_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd3dae408 ldlm_it2str +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd69e0a27 RQF_MDS_IS_SUBDIR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd6c3ebfb RMF_FIEMAP_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd7000643 ldlm_lock_allow_match +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd7910326 lustre_swab_obd_statfs +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd8b91b3e lustre_swab_lov_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd8f06300 RQF_MDS_HSM_PROGRESS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd93874e1 ptlrpc_queue_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd9561861 RQF_LDLM_INTENT_OPEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb1862a7 target_send_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb1fb0a2 RQF_MDS_REINT_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb2a14b9 ldlm_extent_shift_kms +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb74057f lustre_swab_hsm_progress_kernel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb9d5a6a lustre_swab_niobuf_remote +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdcc37567 ptlrpc_request_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd0ffb04 sptlrpc_flavor2name +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd30d7bf RMF_ACL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd9ee253 ldlm_namespace_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xddc40a85 lustre_msg_get_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xde12d36b RMF_MDS_HSM_ARCHIVE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xde3f074f sptlrpc_register_policy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdee87192 sptlrpc_conf_log_update_begin +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdf701ae7 lustre_swab_fid2path +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe0cc694c RQF_LLOG_ORIGIN_HANDLE_NEXT_BLOCK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe2b5f567 client_disconnect_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe2b87d46 ptlrpc_prep_bulk_imp +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe2fc50e1 ptlrpc_mark_interrupted +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe30b440c ldlm_pool_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe3738053 ptlrpc_set_next_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe40e0a50 lustre_msg_get_transno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe57bd972 sptlrpc_current_user_desc_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe643998e RQF_OST_SETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe6f0dc96 RQF_OST_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe7062b5f RMF_U32 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe717ee2f ptlrpc_pinger_sending_on_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe7512278 ptlrpcd_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe889af38 ptlrpc_resend +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe90dd80b ptlrpcd_add_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xebb64e68 req_layout_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xec477be4 client_obd_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xec939a00 RQF_MDS_REINT_UNLINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xed1c10d6 ptlrpc_connection_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xedc2b305 sptlrpc_get_bulk_checksum +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xedcb740d sptlrpc_name2flavor_base +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xef1aeca9 RMF_FLD_OPC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xefca7d59 ldlm_namespace_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf0688744 ptlrpc_start_threads +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf1300275 _sptlrpc_enlarge_msg_inplace +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf21d9c72 ptlrpc_req_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf24eeaed ptlrpc_send_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf277c125 RQF_OST_GET_INFO_FIEMAP +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf346a96b do_set_info_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf3d44370 RQF_OST_DESTROY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf41608d8 ptlrpc_init_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf43540b9 lustre_swab_mgs_nidtbl_entry +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf45085e1 sptlrpc_conf_log_stop +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf55c033b RMF_MGS_CONFIG_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf596e9ae sptlrpc_conf_log_start +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf5dfec29 ldlm_lock_match +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf607fc23 sptlrpc_flavor2name_base +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf617ab8a lustre_msg_get_conn_cnt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf697b756 ldlm_dump_all_namespaces +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf7408f84 lustre_swab_hsm_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf7ba40c0 RMF_MDS_HSM_PROGRESS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf870fed9 RQF_LDLM_GL_DESC_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf9051bd6 RQF_QC_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf973aa93 lustre_swab_lov_user_md_v1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf9f72dfc RMF_TGTUUID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfa51688d interval_insert +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfbcfdc14 req_capsule_server_sized_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfc2fa83f ptlrpc_del_timeout_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfc85052e req_capsule_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfd148bf8 RMF_LDLM_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfeb2a230 ldlm_cli_enqueue_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xffc807e8 sptlrpc_unpack_user_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xffe29c3f RQF_LDLM_ENQUEUE +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x35489b52 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0xf97e758d most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x008aaf74 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0128dd0b rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x097c50b6 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0dd9d39a rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0e594e9f rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0f758267 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x12bca2bd rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1e46c72b rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x213adab5 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2736f8b5 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x27c3c8a5 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2a7f4c06 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2be2a318 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2c736e06 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2ecc2db6 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3a984aa1 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x48f1f9ed rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4f895240 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5861a402 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6118da63 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x63572b9d rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x657c9e12 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x669819b5 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x670b0b12 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6b8d24f3 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6fafe891 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7857e8c9 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7a150837 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x846c0c99 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x869cf8ed rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8e30948c rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x90c2a1f8 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9940a6e7 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9dab01ae rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9f84ea83 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa2427567 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xac171a63 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb0672941 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb3154348 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb51c903b HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb5b23657 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb5de802a rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe5cf7fb rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc0719196 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc2a70a7a rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc4424d0b rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcde14101 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe75f8467 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xea1630d4 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xecf6c47c rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x01ace25e ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0571b5da ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x07e5809d ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x164d4cdf ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x165a1a26 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1979e80e ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1c65c88b HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2c7b3105 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2db13120 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2f96b89a ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x33a918db ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x33c99d40 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x397c3078 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x437644fa ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x48a48713 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x491052c8 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a7235ce ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a9e1d27 IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4dd69b9a ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x51725340 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x51a86690 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5313d730 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x54852647 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5500c749 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x55ff669c ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5799aa99 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x645bd938 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x648cb5b6 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6b39a39f ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7455f841 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7aa7aa3e ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x82301f84 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8230935c ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x829eb6ce ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9018132e ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x978e60bb ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9adadef8 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaef522e7 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaf99f133 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb385a017 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb4c238b5 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xce123cbc Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd213cd0e notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd21e36e0 ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd23fe17a ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd97c5145 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdb3b904e ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe1a7d9e2 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf450228b ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf964875d ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf9e6500e ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfb64865a ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfb73d0a3 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0b2352bb iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x11f8ec02 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x14fbd949 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2d661497 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2dedc129 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2f0ed806 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2f89c2f8 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x34e8dca9 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x392f2188 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x39e54c01 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x416f8966 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4239924f iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x42485fe3 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x46d9e9f3 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4c1bdfa5 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4ca34275 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5882ce31 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x58935b7f iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x611cb767 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x62f942cd iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65eb6cef iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6a7def47 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x743bc49a iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x79a1b14c iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7acd479f iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x93bede5b iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x954c0c34 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x95b10e44 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x96d5442a iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa3462be2 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa6163180 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa853fa69 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa8b1d760 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb8bf54b7 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb9bd5c6b iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xba634980 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc131c2cd iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdf441ee2 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xef59edd4 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xef753254 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xff081529 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xff461a5f iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xffe8d73f iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x045f8cbf core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x05d55881 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x07662e3b transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x0816b614 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x08b9e51c transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ddcecaa transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f2a2780 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f8b9363 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x0fbe531d target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x1fb75572 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x1ff14915 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x20814c23 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x24b78328 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x2b159372 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x2b32ffd8 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x2f7034a0 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x369cb81f transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x3da2fc08 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x404691bc target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x48f6fc8b core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x49de912c target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x4a4e5e10 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x50ec6a3b transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x51de8c16 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x5c0b8ba8 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6cb0626c target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x6fb541a7 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x7181f54e transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x72abf8c3 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x74c5bcd9 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x77db3f26 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x786eaeed spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x78d3aa62 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x82aa02e1 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x930402c6 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x9b1d5e59 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x9d89a6b5 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa8eb53ab sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xaa09a819 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xac6b16ff target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xadd58517 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xae042b07 target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0xb2065c95 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xb3489c02 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xb3c2ebe7 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xb963c84a core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xbad36fbc transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xbdd58836 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xbdee6586 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xbfa50491 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc00a34d2 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xca2446a2 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xcb043550 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xcca72bb4 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xd898f167 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0xd8ab8b40 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xd9a5505f transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xdca6f576 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xe00b06d3 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xe844529e target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe9facef4 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xec2e9ae6 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf1755332 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf1de2613 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf90f3ef3 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xfa163c76 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0xfb3635b9 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xfd4bd088 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xfeb4bae4 target_put_nacl +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x1887763e acpi_thermal_rel_misc_device_add +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x5007fc2c acpi_parse_art +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x86c998e6 acpi_thermal_rel_misc_device_remove +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0xdf707fab acpi_parse_trt +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x96890b9a usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x4ca3efc0 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xa1f74ae1 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0af63dca usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0e9ff239 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x128d2583 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x19bf7370 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1a4a0c99 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5e637091 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6df2ac85 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7d54599b usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8bf82b25 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9aaddd1c usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa0f83f62 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdebc115d usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x0323ddd2 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x6ff78a06 usb_serial_suspend +EXPORT_SYMBOL drivers/vhost/vhost 0x55da86c7 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0xe577285e vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x59f824d9 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x937e412c vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user +EXPORT_SYMBOL drivers/video/backlight/lcd 0x0f01322c lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x1d213f4b devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x75bd8e25 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xc5f20339 lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x04ee7c98 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x13c6b413 svga_tilecopy +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 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x71a8992d svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x81034fce svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xad5b0e03 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xbcb95c0b svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xee22febc svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xabd37d7e sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xfac5d811 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xc2403d34 sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x4ab1df87 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 0x83e643e2 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x49eb6fd9 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x890e0f91 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xd63d95c9 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x2a4454a7 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x60f1094f DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xc60555d7 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xc6afe57a matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xde9cbbc6 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xcf858197 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x29b00eca matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x8564fa2b matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xd89ef099 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xff0bf2aa matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xc782eab9 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xfc8f3f0a matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x56c1b91e matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x58681b91 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xa03280e2 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc3731764 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcc6500fb matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xdb862e44 mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x1873beda w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x3b48a7cc w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xb22c67a8 w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xcd3a9ae5 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x008205a1 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xb7cf0876 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x485b37b0 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x8992cf88 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x7b1e8f38 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x7eac6928 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xdfc59b0a w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xf5247a6b w1_register_family +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x5efa3140 iTCO_vendor_pre_keepalive +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa78bd894 iTCO_vendor_pre_set_heartbeat +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xb44b081d iTCO_vendor_pre_start +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xf5002331 iTCO_vendor_pre_stop +EXPORT_SYMBOL fs/configfs/configfs 0x04bd2651 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x17ef724a configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x1ace4385 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x1d229878 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0x25931d22 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x29bfe5e3 config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0x3323037e configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x38e2d5cb configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x407dc20f config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x7bbf5cd5 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x7d7bff47 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x952963a8 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x9b86fdb3 configfs_depend_item_unlocked +EXPORT_SYMBOL fs/configfs/configfs 0xb84b19b8 configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0xf4f84746 config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0xf93c2b0d configfs_remove_default_groups +EXPORT_SYMBOL fs/configfs/configfs 0xfe76f9c2 configfs_unregister_subsystem +EXPORT_SYMBOL fs/exofs/libore 0x03f75ffc ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x0c069e88 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0x13b31484 ore_read +EXPORT_SYMBOL fs/exofs/libore 0x16025300 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x6356ce03 ore_write +EXPORT_SYMBOL fs/exofs/libore 0x71711bb8 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x76a02d06 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xc73baf42 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0xd3e84891 ore_create +EXPORT_SYMBOL fs/exofs/libore 0xef02978d extract_attr_from_ios +EXPORT_SYMBOL fs/fscache/fscache 0x01887a75 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x0435e312 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x1188b93c __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x1b556d16 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x24e14af0 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x2c039a02 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x3097e449 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x33db383b fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x3a66a0d2 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x3a800e39 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x3d64f7e9 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x3d68c632 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x41136a9a fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4307e613 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x438ba14a fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x4d7b70ac __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x6227a4aa __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x64d0c4ac fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x673ae505 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x6e33b25b __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x715ae1c4 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7c212066 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x8f7b791a __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x90d9731c __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x915ec307 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x95bed3a1 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x9bdf323e fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x9c6f7f61 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xa2f428b1 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xa92c077d __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xadfd927a __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xc0b1232a __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xcdb46eb0 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xd1b1cbe9 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xdee936fd __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xe5357064 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xe53cdc82 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xe57ce2f9 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xedbf5d61 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf488e1b9 __fscache_uncache_page +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x112f1368 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x5947c769 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x626052df qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x68620c86 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x827eb7c3 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xb82cf352 qtree_write_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t +EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0x29a94411 lc_seq_printf_stats +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 0x7087197d lc_seq_dump_details +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 0xcbc5d521 lz4_compress +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x26c3aa22 lz4hc_compress +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul +EXPORT_SYMBOL net/6lowpan/6lowpan 0x1b3353f7 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x4b76b957 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x5516f7b7 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xbe3cd12b lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xf6e52558 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xfe85b8d3 lowpan_register_netdev +EXPORT_SYMBOL net/802/p8022 0x97f7e055 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xa270d70f register_8022_client +EXPORT_SYMBOL net/802/p8023 0x6894185d destroy_8023_client +EXPORT_SYMBOL net/802/p8023 0xb7b83a31 make_8023_client +EXPORT_SYMBOL net/802/psnap 0x74ffb3b9 register_snap_client +EXPORT_SYMBOL net/802/psnap 0xc55e16bd unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0af5edab p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x1539c129 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x19c3f46d p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x1d6400e9 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x2892b380 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x47415a92 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x47801b37 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x48cc3ed5 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x4983ad22 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x4c77fcce v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x50761d9a p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x53d42d98 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x54ea0431 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x57daf417 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x6cb375ea p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x7f996d15 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x8205bf76 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x8337ef29 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x848dccf7 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x90d54c8a p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x968bd07a p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x9829eec9 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x9af215e9 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xa362e2e7 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xaa9245ae p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0xb0e26f30 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xb276d129 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xb38c29bb p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xb70ba659 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xbace4fbb p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc6021c1f p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xc9deeaf3 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xcdb67b9c v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xd033e861 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xdabbb6de p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xdd218188 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xdd725866 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xe30e4d10 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xebc7ac29 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xf0353f7b p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf2c81d92 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x18bfb8d0 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x1d2ce76b atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x6df305f0 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xac3b99ce atalk_find_dev_addr +EXPORT_SYMBOL net/atm/atm 0x2a6fd9fb atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x2e946854 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x2f71dd8b vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x41da1106 atm_charge +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x54d6796b register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x5ffb77de atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x6a7ba95b vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x7cbf5af7 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x8ddbfc86 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x93fb37e7 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa939ceaf atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xbfbd5b3d atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xdbd3cfd6 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xf12ceae5 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x081d0fd1 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x2ff862f5 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x751916cc ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x7b804207 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x8d751986 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xa488ec39 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0xa9cf111a ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xb8ab00c4 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xe9aaf0a4 ax25_display_timer +EXPORT_SYMBOL net/bluetooth/bluetooth 0x081bfeb0 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a94191b bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x10c0c977 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x12b1501a l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x13719254 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x16247f5d hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x180e98e7 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1d8e3081 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x25ed3143 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2af67a10 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2e0e53ad hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2e4dc08b l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2f553e42 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ffe1fa8 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4009958b hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x41c39e06 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x45542c26 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x515417eb bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5a794dca __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5f118a63 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6299ce26 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6514286a bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6935443e hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6c4e2bb5 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7ba365f4 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x809f6934 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x82f9b044 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8ac5af8e bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x911d1107 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x92ca26e8 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9423a99c __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x97a9946e bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa389a5ab hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbf508733 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcb8b7c76 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd6d15d84 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdf83ca28 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe42d5a47 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeedeca6b hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf48ce90d hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf4966bdb bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfeb9d678 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xff500fc4 hci_mgmt_chan_register +EXPORT_SYMBOL net/bridge/bridge 0x34f506e2 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3accf8c8 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x4dd2d98e ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xbce6f4c5 ebt_do_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 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x5f6fc3da cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x6f664805 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xaf3b230a caif_connect_client +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xd5e4caa4 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0xdf5fcc27 caif_enroll_dev +EXPORT_SYMBOL net/can/can 0x6205c4d8 can_proto_unregister +EXPORT_SYMBOL net/can/can 0x62ef6fbb can_proto_register +EXPORT_SYMBOL net/can/can 0xb46c084e can_rx_register +EXPORT_SYMBOL net/can/can 0xcfbef2ac can_rx_unregister +EXPORT_SYMBOL net/can/can 0xe37cf567 can_ioctl +EXPORT_SYMBOL net/can/can 0xf2eb0b5f can_send +EXPORT_SYMBOL net/ceph/libceph 0x05c366a3 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x05f769a0 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0a07964f osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x0a9b3772 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x0d1993a0 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x0e09c198 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x115ba961 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x154cb30c ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x194dca02 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x19baaee4 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x1ba2b4f2 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x1c7adea7 ceph_file_layout_from_legacy +EXPORT_SYMBOL net/ceph/libceph 0x1cffd011 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x1d62f3e6 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x2020942f ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x24fbe245 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x2590032e ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x29179bf7 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x2b0c66d5 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x2b50f4ee ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x2db717f3 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x2e892a10 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x2f5416f9 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x3315137a ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x35d058f2 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x385e4269 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x42199161 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x45187ae3 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x4ba3bbfa ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x5283539b osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x54311a11 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x54aacfcd ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x562e2fe8 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x58d7b03b ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x5b9ac66b ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x61a86153 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6526ee2d ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6579972e ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x66a7e3d3 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x66b71a68 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x69a977f1 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x69dac268 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x752b0fe4 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x77d47b9e ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7a52e4e8 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x7b16c79a ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x7eb358bc ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x7f46f6a6 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x7f9cd2e2 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x8099ef15 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x85d03a9e ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0x89cb2b0e ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x9074f855 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x96adcfc1 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x983ffae7 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x987955da ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0x99cdd98d ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9a674aa0 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x9b31bc55 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x9d46f43d ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xa1ebebbe ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xa84dbeaa ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xa90e6ae4 ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0xabf497ad osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xaeaea978 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb00418f6 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xb0ffcd40 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xb3002c82 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xb51802a3 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb60cd0cb ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xb6273d33 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0xb943d06e ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xbf15e03c ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0xc24416b4 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc762e4bc ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc9364d70 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xccb377f2 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xcecbc0ad osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd396633a __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xd95e46a8 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xda402476 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xdbf4559b ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0xdd8e7550 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xe097f96e osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xe4c1b767 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xebc8d181 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0xee1ac17c ceph_file_layout_to_legacy +EXPORT_SYMBOL net/ceph/libceph 0xf64587d6 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf85275f3 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xfa2257f1 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xfb6b3896 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xfba90551 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0xff9a175b ceph_oloc_copy +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x583c6711 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xf29d2cd6 dccp_req_err +EXPORT_SYMBOL net/ieee802154/ieee802154 0x17ce39f4 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x25de716d wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x38452119 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x61beef99 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8df35a98 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf0cc820c wpan_phy_register +EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x0c85a8f6 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x82ae5cf2 fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xc89ab6b6 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xe7caad92 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0xa669415f gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3438cfbc ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5bbed2e4 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xac076a39 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe6b371dc ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x123df509 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x2e0b3f4c arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xbbbcfa87 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x47cab65a ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6e74cf71 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd629a77f ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x38b91ce1 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x3bdc286f xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x4c7f54f0 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/fou6 0x72371fb4 fou6_build_header +EXPORT_SYMBOL net/ipv6/fou6 0xecdd8e00 gue6_build_header +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0c78d54d ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0f18f956 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x15050ef3 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x547e7a1c ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7ba60e35 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x83d193d1 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa8477b60 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb20cee66 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc3a32cb1 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x842a15c5 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xabea7e7d ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xca2d66e5 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x491cbe4f xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x616ba125 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x57134a19 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xf4fcbc9e xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x2440b63d ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x6235bbd5 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x73e2e95e ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x844411e1 ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x9d2b9fa5 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xabe8ff5f ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xdefdbea1 ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xf5ce46b0 ircomm_open +EXPORT_SYMBOL net/irda/irda 0x04475c42 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x059989ff alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x0963c24b irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x09939c11 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x10047e60 iriap_close +EXPORT_SYMBOL net/irda/irda 0x1e42d730 iriap_open +EXPORT_SYMBOL net/irda/irda 0x23bbc2ce irias_find_object +EXPORT_SYMBOL net/irda/irda 0x2b432980 hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x385847aa irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x39503b36 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x395eb583 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0x3dadea7f irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0x3de289d6 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46b00fdf irias_insert_object +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x4894cf43 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x57050e00 irttp_dup +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6f044471 irlap_close +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x70a3f20f hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0x749e2546 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x81758284 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x83155e12 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x8b18fb7d irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x939e0cbe irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x98a8b3b4 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0x9ccbdfca hashbin_insert +EXPORT_SYMBOL net/irda/irda 0x9fe55336 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0xaaea4b92 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0xac3dc858 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xadb6b57f irlap_open +EXPORT_SYMBOL net/irda/irda 0xaeeff2b5 hashbin_find +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbc0dcf10 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xc055f127 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0xc622b436 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xdc0196c2 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe1ba6308 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xe1f18130 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0xe329462a hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0xeb78333e hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0xebb180df irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xec242b93 hashbin_new +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xf7827cd3 irlmp_data_request +EXPORT_SYMBOL net/kcm/kcm 0x1492090e kcm_proc_unregister +EXPORT_SYMBOL net/kcm/kcm 0x5f245e6e kcm_proc_register +EXPORT_SYMBOL net/l2tp/l2tp_core 0xdbb4bea6 l2tp_recv_common +EXPORT_SYMBOL net/lapb/lapb 0x24ba3994 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x72759341 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x86c23128 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x89e95595 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x9d35bda5 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xb111364e lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xbc57f5e8 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xd1c729f1 lapb_connect_request +EXPORT_SYMBOL net/llc/llc 0x0bc2413d llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x32907c20 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x481ab2a6 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x5dc40407 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x7fe3506d llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xb8215086 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xec53a643 llc_sap_open +EXPORT_SYMBOL net/mac80211/mac80211 0x00be2385 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x01f912c1 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x02ee09bd ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x038194cf __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x048ea60b ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x05a5a0a4 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x06a19e22 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x0a580358 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x10e981e1 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x10fd30ce ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x155bb968 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x177d2923 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x180eeabd ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x22a417d7 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x233cc3c1 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x250e1ab4 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x2fe466f2 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x3288e003 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x37a7270d ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x3c83b779 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x417872bf ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x42ffd63e ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x486530d6 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x4ed58bc0 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x51293936 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x56ea0b42 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x56f7aee3 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x58123262 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x5a7703ca ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x5bfd6718 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x5e6baa1f ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x60d058c5 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x6125a213 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0x6171948c ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x65442686 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x67b70064 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x6cf93e50 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x71d945ed __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x752b40f8 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x7700e016 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x7718fc12 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x78f3c827 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x79262b50 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x814780a3 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x815f758e ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x8414cc6b ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x88ed3990 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x8a817a9b ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x915383a4 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x94d82d07 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x9564ab17 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x99029d14 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x9a4016a5 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x9c7026a7 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xa053a766 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xa183c71e ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xa350dc82 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xa98b74fa ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xab183c20 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xab7823f3 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0xb128bca8 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0xb1fcd203 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xb4de4f92 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xb4ef6947 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xb68344bf ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xb6d08d0b ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xb8e656a8 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xc6bf720f ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xcc4e52f0 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xd0cef841 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xd0df2958 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xdc10742c ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xde94d675 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xdfe55597 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe0fc6379 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xe248327b rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xe261f299 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xe2804c7a ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xe47d3b92 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xe759d272 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0xed1ff6cf ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xed70ae4d ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xed8c44f9 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xf685702d ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xf68f50f1 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xfb7d4180 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xfcdb1b93 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x2a0512ad ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x3019093c ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x3cb54ce3 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x44ec82ee ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x483f6aa6 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x7038cf09 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xbcb90a4f ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xf7a0574e ieee802154_rx_irqsafe +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0ecec19b ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1ef979dd register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x249749a6 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x27453434 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2fa74f6d ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x31a3804b ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x476ebafe ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5045de33 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x638e1ab1 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x82f0a737 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdbc98d46 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xeaa37986 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf1ad7508 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf802e4b4 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf9c0c877 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x72c65c9b __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x8cc4d147 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xaa3757b2 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x0dea3584 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x1074c64f nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0x56132698 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x7e177120 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xb20d8fea nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xd27dd8ef nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x16b9939a xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x171a2839 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x2afb1fbe xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x64eee280 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x7d932c0d xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x8cac5816 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xad422e3d xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xaf21b3cd xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xbd67f00d xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xcc22145e xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x175896d3 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x1e0f8095 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x345e45a3 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x3df80775 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x4c7b1724 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x4ccbc115 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x4eb60fed nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x57fb3de2 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x5abfe1b4 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x6555a637 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x7cd191e2 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x863a16a7 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x868d99fa nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x9d4e541b nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xb549b92f nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xc19821a7 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xc77b8f8e nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xc8891e51 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xdd30b350 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xf868dd7d nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xfbfbe5a1 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x12edce00 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x1d984ef4 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x26d492c1 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x3010f1ea nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x308ccf04 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x3458e952 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x4090adf5 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x4688cab6 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x4f64ff79 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x55b2b481 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x5e8c0f9a nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x6105abb1 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x64429f2d nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x738aff20 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x7d126e64 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x7da25315 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x92eea2bd nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x95563af8 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x964472d5 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x9e5f90cf nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0xa327386d nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xa9a8810a nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xad96edf7 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xd7496a38 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xd8a5b66c nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xd9972834 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xfb121a60 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xfe0bcbc3 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xffedf89c nci_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x055027ab nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x062a1510 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x0c498a86 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x1a429156 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x28fac9a8 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x2bdc6820 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x2f8a4b1d nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x2fa4deac nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x34900fed nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x644ec2d8 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x6dea6d47 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x865d04e5 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x9504711b nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x95c7b0d2 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xa266e536 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xa407ff3b nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xb108d587 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xbe19830f nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xbf622bf5 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xce85efc7 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xd06cc15a nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xde8ae8d3 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xe1335a50 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xf26f4fe9 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xfb6e7a0f nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc_digital 0x3020ec77 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x9677faf4 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x9d61776c nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xf43ed715 nfc_digital_register_device +EXPORT_SYMBOL net/phonet/phonet 0x0868faaa pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x0d96339c pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x1bee85e4 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x2b82e3bc pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x4034018b phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x5439db6e phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x9fe00786 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xe3708ee5 phonet_proto_register +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x01bd80c8 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x04514114 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x06f34c38 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1947827e rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1b29ea3c rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x285d804a rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4728768e rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x56353137 rxrpc_kernel_data_consumed +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5a8e6724 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6210e70c rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x91e5a965 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x967b4d74 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa9b0c51a rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xae5fc97e rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf35d8551 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/sctp/sctp 0xe470ecb7 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x19fa3e67 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xd49077a2 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xed34a0cd gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x5c2616c4 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x805b1a75 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x9339e07f svc_pool_stats_open +EXPORT_SYMBOL net/wimax/wimax 0x0e747f1f wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0xaa939117 wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x00bfd534 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x040bbfa4 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x0878af4f wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x08f34814 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0b75db01 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x0b7daa10 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x0be3efe1 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x0c855b25 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x1690b26e cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x1895a86b cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1bc38861 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x1c00f8ea ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x1ccd6f89 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce1d830 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1f2daa10 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x243a3422 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x25bdfb20 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x297a67f4 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x2f7c19dc cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x302ffa53 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x312a6038 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x322fe801 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x35d25d3c cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x39c074e9 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x3a39415f cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x3beb29b6 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x3e951e36 ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x4026ff4f regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4b748717 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x4cc3475d cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x4d711481 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x4e124a04 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x51733dfc wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x5201e2e3 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x5875f140 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x59d8876a cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5b0c2dae cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5c539fc5 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x5e6117d2 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x60f100f7 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x62ec9428 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6bf84d36 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x6c040132 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x6e68878b cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x6fc57e03 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x7a9a4683 cfg80211_connect_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x7b59267c cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x7df4fca2 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x7ee4386b cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x82994440 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x82f2872f cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x899379ef ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x8df82c4f wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x92e20d05 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x931f40c7 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x9552b56e cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x9c3a4039 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x9dd3e9bd freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xa0937c29 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xa42ddbf9 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xa4b03786 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0xa5343508 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xa6e339aa cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xa76d35e4 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xa8a1ebc0 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xa970a251 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xabbeef4a cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xad7c8989 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xaf4731cb cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xb0bdc624 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xb199fca3 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb614e3f9 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc284667c cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc5657991 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc8ffe49a __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xc920ad57 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xc9442f5d ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0xcde916ac wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xd3496e17 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xd3aeb9c4 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xd4148644 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xd771c5bb cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdc3469b8 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/cfg80211 0xdc7b5f76 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xe6d70131 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xe8663ae6 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0xf5f5a71a cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xf9bc7b7a cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xfbf0b65e cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xfc101342 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xfdfce374 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xffaf3a8f cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/lib80211 0x2cf7ce3d lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x59cb04ed lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x6b59bac4 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xba5991db lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xd7ac9ff0 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xe80f1f96 lib80211_register_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0xc184d6b9 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x4673697b 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 0x60fb4ef8 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x685d6386 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 0xa435f632 snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xd29a1e08 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x87473ef7 snd_seq_device_new +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 0xf0a1fdb3 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x205395a0 snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x614705ff snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7746bb9b snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x79794472 snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x991c0f60 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xef8fa3d2 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf3f0324e snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf6fdda44 snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xaa5c3374 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x0e9bcd71 snd_jack_set_parent +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 0x357af9a4 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x3737d626 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x38711e18 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3d6b10fe snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x40b9300c snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x40f30a0d snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x477c9502 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x480e224c snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4af20a36 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x5abbbc74 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x5c0fbef3 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x5cb33ba1 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x5f5da45f snd_component_add +EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x67991cf7 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x680ba072 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x6a059905 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x74b34489 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x7569becd snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x7a71eafe snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x7eb3f9a6 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x83b02805 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x85df5eaf snd_cards +EXPORT_SYMBOL sound/core/snd 0x88ff88a3 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x89c2f16f snd_card_new +EXPORT_SYMBOL sound/core/snd 0x8aa0a3c3 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x93326d27 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x9360243c snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x9b183a10 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xa2f5d555 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0xa722e0fc snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xa76dd6b0 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xab6a5e58 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xb243ee16 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb49f68bf snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xbba98c83 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xca59e097 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL sound/core/snd 0xd68e55c6 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xddcf91c8 release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xdecbe8b4 snd_device_new +EXPORT_SYMBOL sound/core/snd 0xdf86852b snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xe590be5e snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xe7955ba3 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xf72e23f4 snd_register_device +EXPORT_SYMBOL sound/core/snd 0xf8a19e43 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0xf9622e8f snd_device_register +EXPORT_SYMBOL sound/core/snd 0xfa6e11c3 snd_ctl_add +EXPORT_SYMBOL sound/core/snd-hwdep 0xc1e407c3 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x040754e5 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x040ef184 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x06b15b68 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x15b485d7 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x1a7da321 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x20424e2a snd_sgbuf_get_chunk_size +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 0x3b5177e1 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x3b91f3af snd_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x3f692077 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x4399dc1a snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x4d9b6d35 snd_pcm_format_size +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 0x55b90285 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x55d94815 snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x61561cb0 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x65e85f55 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x6ad9365a snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x6af0b66f snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x6e5e4200 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x6f3ec10e snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x70a302ab snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x7123b5a5 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x7222283f snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x782bd154 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x7cbd05f6 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x7e6a2094 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x7fc41c50 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x81482276 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x85a65685 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x85eba007 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x881e9ac2 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x8a5d2347 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x8c95680c snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x8fd56302 snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x954c7ab7 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x95c82e4a snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x96fb7abe snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0x994ba593 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x9ae81b55 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x9c0100bc snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x9eaaa115 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa783a2d1 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xade88e76 snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xb1a8f333 snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0xb92f1d11 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbe478aca snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xcd47ec40 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0xd276e6d1 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xdedbad39 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xe08d34c0 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xe3d28228 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe86f16fb snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xedbcaf20 snd_pcm_sgbuf_ops_page +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x08b12e74 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x21e20c35 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x348caf8c snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3e07d36c snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x41ad99d0 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x427e9ceb snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x47136b28 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x47ca2783 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x497f4460 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x73940d48 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7b03f8f6 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x89f21079 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8bebacc0 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x905982ba snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x92193172 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa14e7a6a snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa41fccbd snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa480bebe snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc83798f9 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-timer 0x07b6ee7c snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x15a1a9bc snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x327c45dc snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x45a54300 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x4a730adf snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x5815606a snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x61553bb2 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x846306b3 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xb01548f4 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xc539b816 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xcac6fcdd snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xd8f408ef snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xe58bf039 snd_timer_close +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xb07c7984 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 0x1499db9b snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x2ce32cfd snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x491d8c1c snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x66ce523b snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x715d5ed2 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x749e3684 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x85dcc5b4 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9f12eb58 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xdfba730a snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x24403cde snd_opl4_write +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x3a47ff1f snd_opl4_write_memory +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x3d1679aa snd_opl4_create +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0xcfee1a7a snd_opl4_read +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0xe51ce263 snd_opl4_read_memory +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x026749f0 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x22acdad3 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2d522319 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7b13ce38 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xafd704cd snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc1a48211 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe33a519f snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xee264d59 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 0xf5edaf24 snd_vx_resume +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x004c19d1 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x058940b4 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x281dc899 snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x36959865 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x390f3784 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3b9e8f62 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3fa02868 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x42f659ad fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x49073159 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4faafa40 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x573e0fd4 snd_fw_schedule_registration +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x587f5f84 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x638e05d6 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x64b15b3a amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x66f485b2 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x67d60e66 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x686fdfaa fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x73dc8d2b fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x76eaa227 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x78b88977 snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fef4cf4 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x83278681 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8690ea93 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8a3e3eb5 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x92f675f0 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa545836c cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc0759ecf amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc6c3b8f5 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc869460b amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcc375939 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd1d8d758 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdc0dda8e amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe476baa0 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x4d2c911b snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xbc459dda snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0d020ff0 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9f6e4fe2 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xca929bc2 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xdbee5db2 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe8ecdb58 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xec87f9cf snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xee996273 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf3f61d29 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x16e1bf4c snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x178ef62f snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x2cb79335 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x32b44721 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x99bae136 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xbbc1e1f5 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x56da2ebb snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x56fe28cc snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x6a93594a snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x8fc90eea snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x006070e2 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x38634c7d snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x38318bf6 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5bf5348e snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5c7f903a snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x99c8fe74 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xa9ce8de1 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xfcb2cc0d snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-i2c 0x1b4d3ec2 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x57c08944 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x7dc38a41 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x9e9c6cb1 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xa5a98afe snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xe66a2696 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-tea6330t 0x17e22b66 snd_tea6330t_detect +EXPORT_SYMBOL sound/i2c/snd-tea6330t 0x6a3227ba snd_tea6330t_update_mixer +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x02537d87 snd_es1688_pcm +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x68291178 snd_es1688_mixer +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xa6c1bccd snd_es1688_create +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xcd3016e0 snd_es1688_mixer_write +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xe44079ec snd_es1688_reset +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x071e1890 snd_gus_use_inc +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1219a7ad snd_gf1_dram_addr +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1c1ce117 snd_gus_interrupt +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x38bc1bb2 snd_gf1_i_write8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x46db8d67 snd_gf1_lvol_to_gvol_raw +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x498b9a04 snd_gf1_write16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x540744e7 snd_gf1_mem_xfree +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x572180ad snd_gf1_mem_free +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x59962d91 snd_gf1_i_look8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x5cbefa62 snd_gus_create +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x5de327c0 snd_gus_use_dec +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x684d79a0 snd_gus_initialize +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x6b2cef86 snd_gf1_new_mixer +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x6d3b13b5 snd_gf1_peek +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x70523662 snd_gf1_poke +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x7d9092d7 snd_gf1_stop_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x887bc545 snd_gf1_alloc_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x998251a3 snd_gf1_translate_freq +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xa4d99c51 snd_gf1_mem_alloc +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xa87ccba0 snd_gf1_i_look16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xb341148c snd_gf1_free_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xb5084fa3 snd_gf1_look8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xb9c780b8 snd_gf1_ctrl_stop +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xbb389054 snd_gf1_look16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xc43a5527 snd_gf1_atten_table +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xce252bc5 snd_gus_dram_read +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xd2bd4033 snd_gf1_pcm_new +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xdbe28fd0 snd_gf1_delay +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xddb3edac snd_gus_dram_write +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xdf4e0995 snd_gf1_rawmidi_new +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xe53f70f4 snd_gf1_write_addr +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xeba55e36 snd_gf1_mem_lock +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xfa638090 snd_gf1_write8 +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x0e096be3 snd_msnd_init_queue +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x1cc88fc0 snd_msnd_upload_host +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x3033fdd2 snd_msnd_enable_irq +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x44661fdc snd_msnd_send_dsp_cmd +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x49a50fa7 snd_msnd_dsp_halt +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x6b4c68df snd_msnd_DAPQ +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x75026b24 snd_msndmidi_input_read +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x804f23e1 snd_msndmix_new +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x8e5ddc3d snd_msndmix_setup +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xb629526c snd_msndmix_force_recsrc +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xb6554c15 snd_msnd_DARQ +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xb75065e2 snd_msnd_disable_irq +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xc04f4949 snd_msnd_send_word +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xfdf334d4 snd_msnd_pcm +EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0x343572f9 snd_aci_cmd +EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0xce81fb7b snd_aci_get_aci +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x1c4c2670 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x2f2acc19 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x75e1a8dd snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa5c3bf06 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xaa531891 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd200b0b5 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd443107d snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xe9592109 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf0d4b30c snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf3bed7ee snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb16-csp 0x7252d8f7 snd_sb_csp_new +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x645e8856 snd_sb16dsp_pcm +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xcb5b4729 snd_sb16dsp_get_pcm_ops +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xe0b3f690 snd_sb16dsp_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xf88e3883 snd_sb16dsp_configure +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x2f5e53a7 snd_sb8dsp_midi +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x41a883f5 snd_sb8dsp_midi_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x4d89cc31 snd_sb8dsp_pcm +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x78462800 snd_sb8dsp_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x03a36b25 snd_emu8000_peek_dw +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x08a878a8 snd_emu8000_update_chorus_mode +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x27701c7a snd_emu8000_poke_dw +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x33f7e0e3 snd_emu8000_load_reverb_fx +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x74af2bea snd_emu8000_peek +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x90eb68a7 snd_emu8000_dma_chan +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x912eea4c snd_emu8000_poke +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x9c77e7b9 snd_emu8000_init_fm +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xb52e8e28 snd_emu8000_load_chorus_fx +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xbdbf24c1 snd_emu8000_update_equalizer +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xc824d745 snd_emu8000_update_reverb_mode +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x0be8d35d snd_wss_pcm +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x40e4bc4a snd_wss_info_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x424978bc snd_cs4236_ext_out +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x461297b4 snd_wss_overrange +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x4e865c0a snd_wss_chip_id +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x5b301937 snd_wss_timer +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x5d4f6005 snd_wss_put_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x5d576fe7 snd_wss_mixer +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x7128a5a0 snd_wss_out +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x759584f0 snd_wss_info_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x76ce4baf snd_wss_put_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x7b202637 snd_wss_interrupt +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x90e7a10f snd_wss_mce_up +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xacd986ca snd_wss_mce_down +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xadb5d459 snd_wss_in +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xaecbe9a4 snd_cs4236_ext_in +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xb396a242 snd_wss_create +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xcaa20530 snd_wss_get_pcm_ops +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xd4c313e9 snd_wss_get_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xff423843 snd_wss_get_double +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0138f9eb snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x14462a74 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x17bc5208 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x29058ed3 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x396f6caf snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x413bf527 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x45bd8ba0 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x585cce4b snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5d1d0113 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6f7e9884 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x706bea6f snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9561ede7 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa5604912 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcb0e1b8f snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcff91d91 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd767406b snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd8b92e65 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0xa906f988 hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x33a9f1df snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x34e80a7c snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4863ea8f snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x625f119c snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x77a53867 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8a542dfe snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd6c3d28f snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf37c52e1 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xfc710c2b snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x04bd48e3 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xa67a9fc3 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xbab7e5ae snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1bba013f oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x26719fe4 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2b02a623 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5662b950 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5703c2b6 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x66c427aa oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x72ec80a5 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7307f096 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x75be21b1 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9419fb9b oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x94b9ae75 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa24966c9 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa5e06987 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xafe8813e oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb269b22c oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb576cc90 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb593b5e9 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc446cc98 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd9b7c2b2 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe9d18d16 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xebc2c868 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x55147497 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x89dc5873 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x945b9181 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xcee14113 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xd5a15750 snd_trident_stop_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x2f716151 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xe1baa4ac tlv320aic23_probe +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-firmware 0x919217f7 sst_dma_new +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-firmware 0xdc045797 sst_dma_free +EXPORT_SYMBOL sound/soc/snd-soc-core 0x542a1ce7 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x1b1d6a33 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0x54a26bc7 sound_class +EXPORT_SYMBOL sound/soundcore 0x56aea398 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x71232939 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x869ef993 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0x9a732b4a register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x11e4b0a1 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x18b4b5d6 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5e22c7c8 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x6071f655 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 0xd861fb2a snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xda9ee126 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/snd-util-mem 0x4f3dc7d0 __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x8e98b674 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0xb8d882e0 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xc41e03b8 snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xd77e1db6 snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xdbab8429 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xf190feab snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xf985c08c __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 0xa3f7a032 __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 ubuntu/hio/hio 0x23462da4 ssd_get_version +EXPORT_SYMBOL ubuntu/hio/hio 0x393ba6bc ssd_submit_pbio +EXPORT_SYMBOL ubuntu/hio/hio 0x469d1dbb ssd_register_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0x58ff7ddc ssd_reset +EXPORT_SYMBOL ubuntu/hio/hio 0x68356d1b ssd_get_pciaddr +EXPORT_SYMBOL ubuntu/hio/hio 0x89738888 ssd_set_otprotect +EXPORT_SYMBOL ubuntu/hio/hio 0xd1d4de81 ssd_set_wmode +EXPORT_SYMBOL ubuntu/hio/hio 0xdbf9ffcc ssd_unregister_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0xdd289483 ssd_get_temperature +EXPORT_SYMBOL ubuntu/hio/hio 0xe1aac631 ssd_bm_status +EXPORT_SYMBOL ubuntu/hio/hio 0xe3e44227 ssd_get_label +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x02ca85c1 VBoxGuest_RTMpIsCpuOnline +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x055dcb5d VBoxGuest_RTR0MemAreKrnlAndUsrDifferent +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x05d4bc7c VBoxGuest_RTAssertMsg2Add +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x06d9eaaa VBoxGuest_RTAssertMsg1 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x093e5195 VBoxGuest_RTR0MemKernelCopyTo +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x09fc99c3 VBoxGuest_RTMemAllocZTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b2d343f VBoxGuest_RTMemAllocZVarTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b94344b VBoxGuest_g_pszRTAssertExpr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0d451f73 VBoxGuest_RTLogCreateEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0dc7a17e VBoxGuest_RTR0MemObjAllocPhysNCTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0eb08916 VBoxGuest_RTMpGetSet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0ee40ed9 VBoxGuest_RTThreadIsInitialized +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0ef47c7c VBoxGuest_RTTimeMilliTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0f1bf4ba VBoxGuest_RTMemContFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0f336b67 VBoxGuest_RTTimerStart +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0f79f307 VBoxGuest_RTMemAllocExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0fc47f43 VBoxGuest_RTLogWriteStdOut +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x105345a4 VBoxGuest_RTLogDefaultInstanceEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x107bb433 VBoxGuest_RTStrToUInt16 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x10d3b365 VBoxGuest_RTR0MemObjEnterPhysTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1305aeea VBoxGuest_RTMpIsCpuPossible +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x13996136 VBoxGuest_RTR0MemExecDonate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x147fb821 VBoxGuest_RTLogCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1594e166 VBoxGuest_RTAssertMsg2V +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x15cc85a5 VBoxGuest_RTThreadCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x16aaefb1 VBoxGuest_RTR0AssertPanicSystem +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x18cdb244 VBoxGuest_RTLogWriteStdErr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x19888b12 VBoxGuest_RTSemMutexRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1b7c2a0a VBoxGuest_RTStrToInt32 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1c6ea57e VBoxGuest_RTLogWriteDebugger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1d4a6713 VBoxGuest_RTR0MemObjFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1db48445 VBoxGuest_RTLogDumpPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1fddf235 VBoxGuest_RTMpCpuId +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x23835b88 VBoxGuest_RTThreadPreemptIsPendingTrusty +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x24285c45 VBoxGuest_RTStrToInt64Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x24c85bef VBoxGuest_RTLogDestinations +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x24ef8067 VBoxGuest_RTR0MemObjSize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x26efa8cc VBoxGuest_RTSemMutexRequestNoResumeDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x26f9f50e VBoxGuest_RTLogRelPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x27829570 VBoxGuest_RTR0MemObjReserveUserTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x27b2ce18 VBoxGuest_RTMpOnOthers +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x27e5afe3 VBoxGuest_RTLogBackdoorPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x28f9182e VBoxGuest_RTStrToInt64Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2986391c VBoxGuest_RTPowerNotificationDeregister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2a46d291 VBoxGuest_RTStrFormat +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2ac683bb VBoxGuest_RTStrToInt8 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2b126702 VBoxGuest_RTLogRelLoggerV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2ced77ce VBoxGuest_RTLogLogger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2e74529a VBoxGuest_RTMemFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x30313627 VBoxGuest_RTThreadUserWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x315921bb VBoxGuest_RTStrCopyEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x315e3560 VBoxGuest_RTLogSetBuffering +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x31948516 VBoxGuest_RTStrToUInt32 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x33931189 VBoxGuest_RTThreadNativeSelf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x355057df VBoxGuest_RTR0MemObjAddress +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x35c2add7 VBoxGuest_RTMpCurSetIndexAndId +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3709fa74 VBoxGuest_RTSemEventMultiWaitExDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3849f151 VBoxGuest_RTLogGetDefaultInstanceEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x39327a17 VBoxGuest_RTSemEventWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3a0fd8b9 VBoxGuest_RTMemTmpFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3a573911 VBoxGuest_RTLogRelSetBuffering +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3bb59cb5 VBoxGuest_RTMpCpuIdFromSetIndex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3c4056a1 VBoxGuest_RTThreadIsSelfAlive +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3cf07e60 VBoxGuest_RTSemMutexDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3d00f113 VBoxGuest_g_u32RTAssertLine +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3ea022d5 VBoxGuest_RTThreadWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x40225eef VBoxGuest_RTMpCurSetIndex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4160fddb VBoxGuest_RTStrToUInt16Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x41b19017 VBoxGuest_RTLogWriteCom +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x42fcde09 VBoxGuest_RTStrToUInt8 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x437a5038 VBoxGuest_RTStrToInt64 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x444b99a0 VBoxGuest_RTTimeNow +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x47c67a50 VBoxGuest_RTSemEventMultiGetResolution +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x48a783dc VBoxGuest_RTLogRelLogger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x48fc9e66 VBoxGuest_RTTimerRequestSystemGranularity +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x495d5db8 VBoxGuest_RTMpGetCoreCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x49659b61 VBoxGuest_RTLogFlush +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4aee4de4 VBoxGuest_RTMpOnPairIsConcurrentExecSupported +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4af450dc VBoxGuest_RTLogWriteUser +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4ce62235 VBoxGuest_RTThreadGetType +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5016a3b5 VBoxGuest_RTMemTmpAllocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x52cd86fa VBoxGuest_RTStrFormatNumber +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x531984d0 VBoxGuest_RTMpGetCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x535828dd VBoxGuest_RTLogLoggerEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x53bfe73d VBoxGuest_RTLogRelSetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x544dda08 VBoxGuest_RTThreadGetNative +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54a04621 VBoxGuest_RTSemEventMultiWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x56017f57 VBoxGuest_RTMpOnPair +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5669fc82 VBoxGuest_RTThreadSleep +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x58006135 VBoxGuest_RTStrFormatTypeRegister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x583067ec VBoxGuest_RTSemEventMultiCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x59778b09 VBoxGuest_RTStrToInt32Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5de57611 VBoxGuest_RTSpinlockDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5e1b8d5b VBoxGuest_RTLogComPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x60ccd546 VBoxGuest_RTLogSetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6137a005 VBoxGuest_RTThreadPreemptIsPossible +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6280d1c7 VBoxGuest_RTLogGetGroupSettings +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x62812f11 VBoxGuest_RTMpNotificationDeregister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6290e044 VBoxGuest_RTR0MemObjAddressR3 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x62b14d63 VBoxGuest_RTR0MemObjAllocPageTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63095581 VBoxGuest_RTTimeSystemNanoTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63690a61 VBoxGuest_RTR0MemObjAllocPhysTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6570f272 VBoxGuest_RTStrToUInt32Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x66725ef2 VBoxGuest_RTLogDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x66ad2116 VBoxGuest_RTThreadPreemptDisable +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x66c9612f VBoxGuest_RTMemContAlloc +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x686e523a VBoxGuest_RTLogGetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6a1bf308 VBoxGuest_RTThreadCreateV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6c4768e0 VBoxGuest_RTR0MemObjMapKernelTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6d661954 VBoxGuest_RTR0ProcHandleSelf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6e61ea18 VBoxGuest_RTSemEventMultiDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x70571816 VBoxGuest_RTSemMutexCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x725ff09a VBoxGuest_RTAssertSetQuiet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7294d36c VBoxGuest_RTProcSelf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x72a9bc02 VBoxGuest_RTMemTmpAllocZTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x73aa8a5a VBoxGuest_RTThreadSelfName +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7406c97b VBoxGuest_RTStrCopy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7532f928 VBoxGuest_RTTimeImplode +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7548d825 VBoxGuest_RTStrToInt16Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x75be580a VBoxGuest_RTMpOnSpecific +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x765c7530 VBoxGuest_RTTimeExplode +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76d69f67 VBoxGuest_RTLogBackdoorPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x779f8365 VBoxGuest_RTErrConvertToErrno +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x77a366c5 VBoxGuest_RTMpNotificationRegister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x780cc167 VBoxGuest_RTStrPrintfEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7a791dde VBoxGuest_RTMpGetPresentCoreCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7b6712c9 VBoxGuest_RTAssertMsg1Weak +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7b8123ea VBoxGuest_RTSemEventGetResolution +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7e494131 VBoxGuest_RTR0MemObjIsMapping +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7fe59ba6 VBoxGuest_RTThreadUserWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x80a3518c VBoxGuest_RTMemDupExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x84f44f1b VBoxGuest_RTR0MemObjAllocPhysExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8571e565 VBoxGuest_RTStrToInt16 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x85752eb4 VBoxGuest_RTTimerCanDoHighResolution +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x860486d0 VBoxGuest_RTLogFlags +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x862d6a0d VBoxGuest_RTTimerStop +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x864ecc29 VBoxGuest_RTR0MemObjMapUserTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x878f4a90 VBoxGuest_RTTimerCreateEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x892fa6e0 VBoxGuest_RTMpGetMaxCpuId +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x89c645f1 VBoxGuest_RTStrToInt8Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8afecf15 VBoxGuest_RTTimeNanoTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8c79502a VBoxGuest_RTTimeSpecFromString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8d02affa VBoxGuest_RTAssertMsg2WeakV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8d3b898a VBoxGuest_RTMemFreeEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8dc28544 VBoxGuest_RTTimerChangeInterval +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8ee02ee5 VBoxGuest_RTMpGetOnlineCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8f04a8e6 VBoxGuest_RTSemEventMultiWaitEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8f8133dd VBoxGuest_RTSemFastMutexCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8f8ee594 VBoxGuest_RTStrToInt8Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x90d44be8 VBoxGuest_RTLogSetCustomPrefixCallback +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x925e6d74 VBoxGuest_RTSemEventDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9473e15b VBoxGuest_RTThreadCreateF +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x94a348d5 VBoxGuest_RTAssertMsg2 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9534e87f VBoxGuest_RTLogSetDefaultInstanceThread +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9653a98f VBoxGuest_RTR0MemUserIsValidAddr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x974c2f02 VBoxGuest_RTStrFormatTypeDeregister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x97763075 VBoxGuest_RTLogFlushRC +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9812d337 VBoxGuest_RTPowerNotificationRegister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x983a01ac VBoxGuest_RTR0MemObjLockKernelTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x983cfd01 VBoxGuest_RTAssertMsg2AddWeakV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x98f3ddc4 VBoxGuest_RTLogFlushToLogger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9909ff3d VBoxGuest_g_pszRTAssertFunction +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x99fb84e8 VBoxGuest_RTR0MemKernelCopyFrom +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9af30b75 VBoxGuest_RTMpOnAll +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9b170869 VBoxGuest_RTLogPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9b3a9e31 VBoxGuest_RTStrPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9c0c345c VBoxGuest_RTSpinlockRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9e7df720 VBoxGuest_RTAssertShouldPanic +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa07a24bf VBoxGuest_RTStrToInt32Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa240fbec VBoxGuest_RTThreadIsSelfKnown +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa2a1d4b4 VBoxGuest_RTLogGroupSettings +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa43d6669 VBoxGuest_RTAssertMsg2Weak +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa7c2bc86 VBoxGuest_RTMemAllocVarTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa8d9dab0 VBoxGuest_RTStrToUInt64Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa9c99a8d VBoxGuest_RTMpGetOnlineSet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xab1fa243 VBoxGuest_RTLogCreateExV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xacaac41d VBoxGuest_g_szRTAssertMsg1 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xacc26bee VBoxGuest_RTSemMutexRequestNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xad854ccc VBoxGuest_RTLogGetDestinations +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xadbb3b70 VBoxGuest_RTSemMutexRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaf2a2344 VBoxGuest_RTStrToUInt16Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaf854fe0 VBoxGuest_RTR0MemObjReserveKernelTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb0ed5380 VBoxGuest_RTThreadPreemptIsPending +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb13bfc1e VBoxGuest_RTStrToUInt8Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb1f0304d VBoxGuest_RTSemSpinMutexTryRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb2f49ba2 VBoxGuest_RTTimeIsLeapYear +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb4049f3e VBoxGuest_RTSemEventMultiWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb418cc7f VBoxGuest_RTMemAllocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb42ea0e3 VBoxGuest_g_pszRTAssertFile +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb53502ff VBoxGuest_RTR0MemKernelIsValidAddr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb535867c VBoxGuest_RTThreadUserSignal +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb5db44db VBoxGuest_RTSemEventSignal +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb62a1e30 VBoxGuest_RTThreadPreemptRestore +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb79d7b32 VBoxGuest_RTMemExecFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb8418aee VBoxGuest_RTR0MemObjGetPagePhysAddr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbaa97421 VBoxGuest_g_szRTAssertMsg2 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbaef75bb VBoxGuest_RTStrFormatTypeSetUser +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbb913e47 VBoxGuest_RTStrToUInt64Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbbdef88a VBoxGuest_RTThreadWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbc7408ad VBoxGuest_RTLogRelGetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbce542d7 VBoxGuest_RTThreadYield +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc1e5a709 VBoxGuest_RTAssertMsg2AddWeak +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc2084dce VBoxGuest_RTMpPokeCpu +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc2bd304b VBoxGuest_RTSemSpinMutexRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc2ce135d VBoxGuest_RTTimeSpecToString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc6274506 VBoxGuest_RTSemEventWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc6ea7d1a VBoxGuest_RTStrFormatV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc6fc188f VBoxGuest_RTStrToInt16Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc705fe69 VBoxGuest_RTMemExecAllocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc745616d VBoxGuest_RTThreadFromNative +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc89d23bc VBoxGuest_RTR0MemObjAllocLowTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc9ad6599 VBoxGuest_RTSemEventCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcae630d2 VBoxGuest_RTAssertMsg2AddV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcbc809ab VBoxGuest_RTMpGetPresentCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xccdb69e6 VBoxGuest_RTR0MemObjProtect +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcdfb651f VBoxGuest_RTMpOnAllIsConcurrentSafe +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcef6dafd VBoxGuest_RTSemFastMutexDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcf14603e VBoxGuest_RTTimerReleaseSystemGranularity +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd03019f2 VBoxGuest_RTSemSpinMutexDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd19ba1c8 VBoxGuest_RTAssertSetMayPanic +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd369b067 VBoxGuest_RTLogGetFlags +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd3cd9145 VBoxGuest_RTLogPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd4e16d0f VBoxGuest_RTLogComPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd4f5a7da VBoxGuest_RTMpCpuIdToSetIndex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd5675ca5 VBoxGuest_RTR0Term +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd6c747fc VBoxGuest_RTStrToUInt32Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd6ce33b5 VBoxGuest_RTR0MemUserCopyFrom +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd6f3aba1 VBoxGuest_RTLogCloneRC +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdb08ce35 VBoxGuest_RTMpGetPresentSet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdc59aea9 VBoxGuestIDCClose +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdc7bf344 VBoxGuest_RTSemFastMutexRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdca31c8a VBoxGuest_RTStrPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdce83495 VBoxGuest_RTTimeToString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdd1e2ff6 VBoxGuest_RTMemDupTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xddaf15ce VBoxGuest_RTR0MemObjMapKernelExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xde4147ab VBoxGuest_RTLogFormatV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xded5fd9e VBoxGuest_RTLogRelPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdfa74c01 VBoxGuest_RTAssertMayPanic +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe137d504 VBoxGuest_RTStrToUInt64 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe1b3dedf VBoxGuest_RTLogLoggerExV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe201f0a3 VBoxGuest_RTThreadGetName +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe21895c9 VBoxGuest_RTSpinlockAcquire +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe2350b24 VBoxGuest_RTTimeNormalize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe39a3b0c VBoxGuestIDCCall +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe422338b VBoxGuest_RTR0Init +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe44bcc95 VBoxGuest_RTErrConvertFromErrno +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe506fab2 VBoxGuest_RTLogDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe5feb377 VBoxGuest_RTTimerDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe653b5b9 VBoxGuest_RTSemSpinMutexRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe6b22c79 VBoxGuest_RTSemEventMultiReset +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe7bbc7a1 VBoxGuest_RTPowerSignalEvent +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe7c35b06 VBoxGuest_RTThreadSetName +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe881e3c4 VBoxGuest_RTSpinlockCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe903c7b6 VBoxGuest_RTLogLoggerV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe9799151 VBoxGuest_RTR0MemObjLockUserTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xeb61ead8 VBoxGuestIDCOpen +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xec237236 VBoxGuest_RTSemEventWaitEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xec5ce663 VBoxGuest_RTMpIsCpuPresent +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xecb49b7e VBoxGuest_RTStrCopyP +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xed69dd35 VBoxGuest_RTStrToUInt8Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xedfb10f5 VBoxGuest_RTSemSpinMutexCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xee1d414e VBoxGuest_RTR0MemUserCopyTo +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf2278ce2 VBoxGuest_RTSemMutexIsOwned +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf2519858 VBoxGuest_RTThreadPreemptIsEnabled +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf28c6914 VBoxGuest_RTMemReallocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf5071bd2 VBoxGuest_RTTimeFromString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf620c8f3 VBoxGuest_RTThreadSetType +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf68b92a3 VBoxGuest_RTSemEventMultiSignal +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf6af78fb VBoxGuest_RTMpIsCpuWorkPending +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf6b8d0db VBoxGuest_RTThreadIsInInterrupt +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf6d5d3f2 VBoxGuest_RTThreadIsMain +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf89576b6 VBoxGuest_RTSemFastMutexRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf91a5c8a VBoxGuest_RTSemEventWaitExDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf97fdcbb VBoxGuest_RTTimeSystemMilliTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfa133325 VBoxGuest_RTStrPrintfExV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfaedb08b VBoxGuest_RTStrConvertHexBytes +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfb1831ce VBoxGuest_RTSemMutexRequestDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfd226142 VBoxGuest_RTThreadSleepNoLog +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfd322d77 VBoxGuest_RTThreadUserReset +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfe962f86 VBoxGuest_RTTimerGetSystemGranularity +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xff365470 VBoxGuest_RTR0MemObjAllocContTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xffad2ad7 VBoxGuest_RTLogRelGetDefaultInstanceEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xffc1e8aa VBoxGuest_RTAssertAreQuiet +EXPORT_SYMBOL vmlinux 0x00032d83 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x000e5fc9 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x0019e044 find_get_entry +EXPORT_SYMBOL vmlinux 0x00351808 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x003a477c netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x0045c2ee vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0x004c1c5b do_trace_write_msr +EXPORT_SYMBOL vmlinux 0x005e2e87 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x007d6c48 intel_gmch_probe +EXPORT_SYMBOL vmlinux 0x008411d8 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x0086f333 dma_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x008b6570 keyring_alloc +EXPORT_SYMBOL vmlinux 0x00ad2b81 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x00b6c9ee mfd_add_devices +EXPORT_SYMBOL vmlinux 0x00b8c3a7 mempool_alloc +EXPORT_SYMBOL vmlinux 0x00cfaef5 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00e69bfc d_obtain_alias +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x0130ffac ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x0137de62 request_key_async +EXPORT_SYMBOL vmlinux 0x0139b504 cpu_current_top_of_stack +EXPORT_SYMBOL vmlinux 0x0141482c xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x014a1f13 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x0153bc9c input_close_device +EXPORT_SYMBOL vmlinux 0x016fb475 inet_gso_segment +EXPORT_SYMBOL vmlinux 0x01716e8f reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0x0185eda9 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x01954c05 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x019db55a radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0x01a405b0 fscrypt_decrypt_bio_pages +EXPORT_SYMBOL vmlinux 0x01c3454b cdrom_release +EXPORT_SYMBOL vmlinux 0x01cc39cd bdi_init +EXPORT_SYMBOL vmlinux 0x01cf513c vfs_writev +EXPORT_SYMBOL vmlinux 0x01ee9fe2 dquot_drop +EXPORT_SYMBOL vmlinux 0x01f5544f agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x02028984 pci_get_device +EXPORT_SYMBOL vmlinux 0x020996ec param_ops_bint +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x02181ba4 dst_release +EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0266ae96 __bforget +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0287c1e5 kset_unregister +EXPORT_SYMBOL vmlinux 0x028bf2ed nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a67149 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02a833f9 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x02cfa3cb kill_anon_super +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x02eef4ad ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x02f5c2fb udp_set_csum +EXPORT_SYMBOL vmlinux 0x032a88f9 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03425cba seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x0366ae1c generic_file_fsync +EXPORT_SYMBOL vmlinux 0x03732026 dev_mc_add +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x0384c70c security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x038cf3e0 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x0395c80d build_skb +EXPORT_SYMBOL vmlinux 0x03962320 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x03983ba1 tcp_child_process +EXPORT_SYMBOL vmlinux 0x03ad6c9a vfs_unlink +EXPORT_SYMBOL vmlinux 0x03bf782d mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x03cd34c1 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x03d1cde0 __seq_open_private +EXPORT_SYMBOL vmlinux 0x03e3d725 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x040502ba scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x0417faae devm_free_irq +EXPORT_SYMBOL vmlinux 0x04201017 fence_init +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0426ba24 idr_for_each +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044dcd4b dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x046da2c2 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x046ecb80 security_task_getsecid +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04dd0006 i2c_transfer +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ff50a1 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x05023283 vfs_getattr +EXPORT_SYMBOL vmlinux 0x0506d348 kobject_set_name +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x05219100 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0528c0db ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x0540fb34 dquot_alloc +EXPORT_SYMBOL vmlinux 0x055ed4da device_get_mac_address +EXPORT_SYMBOL vmlinux 0x05633871 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x05e25804 __request_region +EXPORT_SYMBOL vmlinux 0x05f47fbb dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x05f788b7 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x060081e8 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x0614d47a __i2c_transfer +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0618286a d_tmpfile +EXPORT_SYMBOL vmlinux 0x061c9719 fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x062edbf0 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x064aa72c security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x0657d412 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x065c7184 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x065d16c6 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x0660a171 netif_device_attach +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x068c7263 ioremap_cache +EXPORT_SYMBOL vmlinux 0x069780c0 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x06c0dae5 __kernel_fpu_end +EXPORT_SYMBOL vmlinux 0x06e9dbff pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x06fdb6e0 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x0701b9f7 serio_rescan +EXPORT_SYMBOL vmlinux 0x071dbb55 sget +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0738bd8b seq_dentry +EXPORT_SYMBOL vmlinux 0x075f3415 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x07608604 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x076da17e md_cluster_mod +EXPORT_SYMBOL vmlinux 0x0778ed0a __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x0780a983 vfs_create +EXPORT_SYMBOL vmlinux 0x0781d1b9 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x0783b571 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x07865349 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x07878aa9 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07c3fe1a blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07d50a24 csum_partial +EXPORT_SYMBOL vmlinux 0x07e252bd md_finish_reshape +EXPORT_SYMBOL vmlinux 0x07f1c84a generic_setxattr +EXPORT_SYMBOL vmlinux 0x080e1a75 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x082b482d mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083e35f4 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x087981f3 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x08819ce5 kern_path +EXPORT_SYMBOL vmlinux 0x08836ea3 xattr_full_name +EXPORT_SYMBOL vmlinux 0x0897287b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x08989f3b pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x08b16695 do_splice_direct +EXPORT_SYMBOL vmlinux 0x08dc1455 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x08e9672d key_put +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08f9ee27 agp_copy_info +EXPORT_SYMBOL vmlinux 0x090f297e phy_connect +EXPORT_SYMBOL vmlinux 0x092cc8c6 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0x093ed36b pci_remove_bus +EXPORT_SYMBOL vmlinux 0x0946c9c4 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x0963c87d __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x096618cb fence_free +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x098bfcf8 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x098ce4a6 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x09aa1439 make_kgid +EXPORT_SYMBOL vmlinux 0x09af2cc0 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x09c416e9 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c6411f schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09cefea2 vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09e88526 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x09fbf3c8 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x09fe60c8 pci_request_region +EXPORT_SYMBOL vmlinux 0x0a0965ca __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x0a155cb7 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a30eff1 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x0a3c4d31 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a4c0bda generic_fillattr +EXPORT_SYMBOL vmlinux 0x0a60fb6e dcache_dir_close +EXPORT_SYMBOL vmlinux 0x0a661faa lg_local_unlock +EXPORT_SYMBOL vmlinux 0x0a67c631 devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a78409f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x0a7cc283 posix_test_lock +EXPORT_SYMBOL vmlinux 0x0a911629 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x0a9ecb65 set_device_ro +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa8d687 tty_throttle +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0adb6c92 path_is_under +EXPORT_SYMBOL vmlinux 0x0adeae8f bdget +EXPORT_SYMBOL vmlinux 0x0ae4d2cd memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x0afb2fb5 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b17a43b inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x0b1a926c d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b1de89f devm_gpio_request +EXPORT_SYMBOL vmlinux 0x0b1ebf37 dev_mc_init +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b48bb8e __vfs_write +EXPORT_SYMBOL vmlinux 0x0b5606d0 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x0b5a2013 phy_attached_print +EXPORT_SYMBOL vmlinux 0x0b5afd8f eisa_driver_register +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b7245c2 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b905c66 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bc8df60 clkdev_hw_alloc +EXPORT_SYMBOL vmlinux 0x0be87373 mmc_erase +EXPORT_SYMBOL vmlinux 0x0bebb81d tty_lock +EXPORT_SYMBOL vmlinux 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0x0c33e009 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c639009 padata_stop +EXPORT_SYMBOL vmlinux 0x0c69c353 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0c7b0466 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x0c80c9ac mmc_can_trim +EXPORT_SYMBOL vmlinux 0x0c904cca x86_hyper_vmware +EXPORT_SYMBOL vmlinux 0x0c9b0213 simple_dname +EXPORT_SYMBOL vmlinux 0x0c9bca5c lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cbddaf0 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x0cd23869 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x0cdb7d12 __kernel_fpu_begin +EXPORT_SYMBOL vmlinux 0x0cdf7b72 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x0cf26e7a nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x0d00dfbd blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x0d041a98 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x0d0c8110 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x0d1f9f09 pnp_find_card +EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d6d8b2e unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x0d6eca35 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x0d7b4113 abx500_register_ops +EXPORT_SYMBOL vmlinux 0x0d81ff08 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x0d97481a mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da32d0f tty_do_resize +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0dc41236 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x0dc711c9 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x0dd599df __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x0e0d2b61 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x0e1c2114 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x0e304c35 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e7a4012 dump_align +EXPORT_SYMBOL vmlinux 0x0e8b6ceb blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x0e99a6ff lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0ec1ef42 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0eda38e4 ping_prot +EXPORT_SYMBOL vmlinux 0x0edc7a3f pci_disable_device +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f1188f8 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x0f204cdc mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f68d104 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f6ab1c4 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f7dc9bf mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x0f8d2b6a fscrypt_decrypt_page +EXPORT_SYMBOL vmlinux 0x0f997b2b write_cache_pages +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fb90c6a inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event +EXPORT_SYMBOL vmlinux 0x0fd12424 ip6_xmit +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x100cf654 nvm_get_blk +EXPORT_SYMBOL vmlinux 0x100f26ce pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x102c56de irq_regs +EXPORT_SYMBOL vmlinux 0x10439b3f serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x1048e436 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x1051879f dev_addr_add +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x1078c4c5 param_ops_byte +EXPORT_SYMBOL vmlinux 0x107c2695 set_groups +EXPORT_SYMBOL vmlinux 0x107e1830 agp_find_bridge +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1082890f remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x10859b28 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x108c97b3 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x1094d905 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x109c0299 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x10a509b9 qdisc_reset +EXPORT_SYMBOL vmlinux 0x10b34faf sock_no_getname +EXPORT_SYMBOL vmlinux 0x10f9d1b5 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x110e0361 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x113fb01b fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x1144a914 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x114ed031 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x11627bc5 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x117c3d3a dev_activate +EXPORT_SYMBOL vmlinux 0x1186047c end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x11a1e758 md_register_thread +EXPORT_SYMBOL vmlinux 0x11a89796 phy_find_first +EXPORT_SYMBOL vmlinux 0x11c12e37 vm_mmap +EXPORT_SYMBOL vmlinux 0x11c7a8a6 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x11d113b6 rio_query_mport +EXPORT_SYMBOL vmlinux 0x11dd01ad intel_scu_ipc_command +EXPORT_SYMBOL vmlinux 0x11e54087 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x11e630dd tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x11fb7e36 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x11fee698 nonseekable_open +EXPORT_SYMBOL vmlinux 0x12056de4 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x1212471f phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x121b4e4b memremap +EXPORT_SYMBOL vmlinux 0x12265735 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x12324ce7 force_sig +EXPORT_SYMBOL vmlinux 0x1233b5fd block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x123fa65c rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x1246972e prepare_to_swait +EXPORT_SYMBOL vmlinux 0x12494a1b dev_alert +EXPORT_SYMBOL vmlinux 0x1250c7e1 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x126472a1 sync_blockdev +EXPORT_SYMBOL vmlinux 0x128905c5 single_open +EXPORT_SYMBOL vmlinux 0x129a0590 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12cb23ad xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x12ebd4f4 rtnl_notify +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x133c1b6c skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x13468d01 inet_listen +EXPORT_SYMBOL vmlinux 0x134cdf2a dquot_release +EXPORT_SYMBOL vmlinux 0x1356bdf9 blk_register_region +EXPORT_SYMBOL vmlinux 0x13725271 padata_start +EXPORT_SYMBOL vmlinux 0x137fc196 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x138ae42f tso_start +EXPORT_SYMBOL vmlinux 0x138ca1ab gen_new_estimator +EXPORT_SYMBOL vmlinux 0x1390e38f __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x13a50dca xfrm_input +EXPORT_SYMBOL vmlinux 0x13ac1fff i2c_release_client +EXPORT_SYMBOL vmlinux 0x13ba6868 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x13c36371 user_revoke +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d14634 unload_nls +EXPORT_SYMBOL vmlinux 0x13e3844f inet_offloads +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13f7eeed __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x1408a927 sk_stream_error +EXPORT_SYMBOL vmlinux 0x140c91c4 bdget_disk +EXPORT_SYMBOL vmlinux 0x141180bb inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x1412d4a1 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x14238655 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x142829a8 inet_select_addr +EXPORT_SYMBOL vmlinux 0x142dd720 phy_device_free +EXPORT_SYMBOL vmlinux 0x14361adb __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x148b2e1b inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x14909bc2 devm_ioremap +EXPORT_SYMBOL vmlinux 0x149c1936 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14e7ab40 fput +EXPORT_SYMBOL vmlinux 0x14ecaa70 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x15013fb9 ilookup +EXPORT_SYMBOL vmlinux 0x150ad92b ioport_resource +EXPORT_SYMBOL vmlinux 0x15116049 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x153ae377 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x1547995d __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x1547bfd6 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1550a16b jbd2_journal_inode_add_wait +EXPORT_SYMBOL vmlinux 0x156a8a59 down_trylock +EXPORT_SYMBOL vmlinux 0x15710585 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x157311bc kunmap +EXPORT_SYMBOL vmlinux 0x15799c11 _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x15a96458 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x15b8c6d2 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15e69e2f eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled +EXPORT_SYMBOL vmlinux 0x1621f4fd pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x1633e401 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x163bed67 commit_creds +EXPORT_SYMBOL vmlinux 0x164ae7b0 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x1660bf53 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x1663021e tty_check_change +EXPORT_SYMBOL vmlinux 0x16718e9d blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x16727deb inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x1696f87f neigh_ifdown +EXPORT_SYMBOL vmlinux 0x16dcd1f0 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x16ded784 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e8adf5 bdi_register_owner +EXPORT_SYMBOL vmlinux 0x16ef57d3 noop_llseek +EXPORT_SYMBOL vmlinux 0x16f75ac7 amd_northbridges +EXPORT_SYMBOL vmlinux 0x17049b5b cdev_init +EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x171ef6a2 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x171f0c88 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x172537ba vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0x1727afd8 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x175aaba4 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x17630cfd fscrypt_fname_encrypted_size +EXPORT_SYMBOL vmlinux 0x1769a154 pnp_device_attach +EXPORT_SYMBOL vmlinux 0x179651ac _raw_read_lock +EXPORT_SYMBOL vmlinux 0x179a98d3 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x17a87a88 del_gendisk +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17e17d2e xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x17e9948c textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17fcc40d __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x182911d7 unlock_buffer +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x18635aea ppp_channel_index +EXPORT_SYMBOL vmlinux 0x186ca909 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x187b8d15 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x1889ab0e sock_init_data +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x188ee8cb nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x18b79104 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x18cf5856 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x18d96501 atomic64_dec_if_positive_cx8 +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18e8e4b9 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x18f0d285 audit_log_task_info +EXPORT_SYMBOL vmlinux 0x18fac87b agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x190d6d9e put_cmsg +EXPORT_SYMBOL vmlinux 0x1916e38c _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x1934c2b5 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x198cbfaf scsi_scan_target +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19cc384a swake_up_locked +EXPORT_SYMBOL vmlinux 0x19d636cc jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x19e36ecf sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x19f06846 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x19fcc1d7 ex_handler_default +EXPORT_SYMBOL vmlinux 0x1a09c213 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x1a11ec25 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x1a1cc882 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0x1a21de77 ht_create_irq +EXPORT_SYMBOL vmlinux 0x1a2f15a1 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x1a37040d blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a460e93 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x1a53dec1 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a64dd40 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x1a707271 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x1ab050f5 backlight_device_register +EXPORT_SYMBOL vmlinux 0x1ac77a76 put_io_context +EXPORT_SYMBOL vmlinux 0x1ac846a9 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x1ad5af3e vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x1afb1aaa acpi_mark_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x1afc30ec __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b07bcc1 mmc_can_reset +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b31859b agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning +EXPORT_SYMBOL vmlinux 0x1b5e5744 acpi_pm_device_run_wake +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b76a4b6 dev_uc_add +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b9efb41 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x1ba0423f bd_set_size +EXPORT_SYMBOL vmlinux 0x1ba60309 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x1bb64e8b get_disk +EXPORT_SYMBOL vmlinux 0x1be1dd26 lg_global_lock +EXPORT_SYMBOL vmlinux 0x1bf0c5e2 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x1bf3fbaa xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x1c40a884 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x1c494f02 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x1c4cc6c7 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x1c62f3b4 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x1c89e604 get_phy_device +EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset +EXPORT_SYMBOL vmlinux 0x1c9a91ef mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x1ca75a8b iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x1cc9a4d4 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x1cca5394 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x1cd89485 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x1cdbd5df rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x1cdfb583 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x1d02a2ca __napi_schedule +EXPORT_SYMBOL vmlinux 0x1d0c92bc blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x1d1711a9 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x1d3bfbd5 register_framebuffer +EXPORT_SYMBOL vmlinux 0x1d3cb422 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x1d76c200 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x1d7ad6ac gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1dd7a7fe irq_to_desc +EXPORT_SYMBOL vmlinux 0x1de74f72 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0x1deba9b8 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x1df29dac phy_init_hw +EXPORT_SYMBOL vmlinux 0x1dfe762a pagecache_write_end +EXPORT_SYMBOL vmlinux 0x1e036c98 acpi_set_gpe +EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x1e0c2be4 ioremap_wc +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e2e6f1d mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x1e33caa3 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x1e3bae43 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e74b842 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x1e7c82b6 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x1e840f53 get_gendisk +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1e9efd5f kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x1ea839c3 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x1eb83cee sync_filesystem +EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x1ec0565f scsi_register +EXPORT_SYMBOL vmlinux 0x1ec737e0 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x1ede2323 param_set_bint +EXPORT_SYMBOL vmlinux 0x1ee9d58e blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x1ef6095d nvm_submit_io +EXPORT_SYMBOL vmlinux 0x1f006d8d posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x1f205aee elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x1f394c56 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x1f77125f unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1f860388 d_add +EXPORT_SYMBOL vmlinux 0x1f896875 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x1f8a6b8a iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x1f8f098a __tracepoint_read_msr +EXPORT_SYMBOL vmlinux 0x1f96c0a1 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x1f9754ab gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x1f9d32c2 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x1fa9aef2 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x1fade78e dm_table_get_md +EXPORT_SYMBOL vmlinux 0x1fb88b82 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fca45b9 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd65508 locks_free_lock +EXPORT_SYMBOL vmlinux 0x1fda8525 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200511cb mmc_register_driver +EXPORT_SYMBOL vmlinux 0x2005e68a acpi_remove_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x20092385 acpi_enter_sleep_state_s4bios +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x201b0ac0 lg_global_unlock +EXPORT_SYMBOL vmlinux 0x20205f64 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x202f2a8e from_kuid_munged +EXPORT_SYMBOL vmlinux 0x202f4e92 acpi_extract_package +EXPORT_SYMBOL vmlinux 0x203199e5 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table +EXPORT_SYMBOL vmlinux 0x208ee1fd inet_release +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20af771b blkdev_fsync +EXPORT_SYMBOL vmlinux 0x20be0c4a mdiobus_scan +EXPORT_SYMBOL vmlinux 0x20be1cfe gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x20c26325 dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20c6192f intel_scu_ipc_ioread32 +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20e0cc95 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x20e2a3aa mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x20e5253e file_ns_capable +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20f866e0 nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x21005893 misc_register +EXPORT_SYMBOL vmlinux 0x210c8783 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x214ef415 tcp_req_err +EXPORT_SYMBOL vmlinux 0x2167db87 nla_reserve +EXPORT_SYMBOL vmlinux 0x21697958 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x2178c4b6 downgrade_write +EXPORT_SYMBOL vmlinux 0x21a73f74 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x21aa4bce dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x21dd5365 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e95520 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x21e992a5 ida_simple_get +EXPORT_SYMBOL vmlinux 0x21ff1a45 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x2207a57f prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222f6207 __nla_reserve +EXPORT_SYMBOL vmlinux 0x222f6591 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x223a2526 __kernel_write +EXPORT_SYMBOL vmlinux 0x223d1a6a kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x224b2265 md_done_sync +EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem +EXPORT_SYMBOL vmlinux 0x226111af scsi_device_get +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x226bc238 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x227134aa pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2293e188 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x22af69f0 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b65ba8 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x22cb71cf textsearch_prepare +EXPORT_SYMBOL vmlinux 0x22cc7a38 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x22d1ea3c inode_change_ok +EXPORT_SYMBOL vmlinux 0x22d9bbd4 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x22eb26cb __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x22f6df1e bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x22fa4898 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x22fc4f3a trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x23165bef vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x23249745 sock_create +EXPORT_SYMBOL vmlinux 0x232d18ec rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x23323fee input_set_abs_params +EXPORT_SYMBOL vmlinux 0x234515a3 vga_con +EXPORT_SYMBOL vmlinux 0x235a60b6 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x235dec0c dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x235f0505 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x23859712 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23b1a1ee lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x23b51ba2 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c640c2 __module_get +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23d97b85 scsi_device_put +EXPORT_SYMBOL vmlinux 0x23f32698 pci_set_master +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x240f225b sock_wake_async +EXPORT_SYMBOL vmlinux 0x2411764e devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x24117d39 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x24270983 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245b8bfe thaw_bdev +EXPORT_SYMBOL vmlinux 0x24682ada dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x246f258a devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x2474a64b mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2484c71d twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x2493ddfb mark_info_dirty +EXPORT_SYMBOL vmlinux 0x24ae3e19 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x24ce3bac xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x24d12888 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x24d554c7 netlink_unicast +EXPORT_SYMBOL vmlinux 0x24df1cd1 ex_handler_wrmsr_unsafe +EXPORT_SYMBOL vmlinux 0x24df791d release_pages +EXPORT_SYMBOL vmlinux 0x24f2bc09 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x25570b81 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x257fc33e blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2586ba31 to_ndd +EXPORT_SYMBOL vmlinux 0x258740a2 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x259db3ad neigh_direct_output +EXPORT_SYMBOL vmlinux 0x25a8d34c pci_add_resource +EXPORT_SYMBOL vmlinux 0x25ac1ebf do_trace_rdpmc +EXPORT_SYMBOL vmlinux 0x25b3a067 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x25c98383 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0x25d81904 agp_generic_enable +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f4e8b9 bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x25f90230 input_open_device +EXPORT_SYMBOL vmlinux 0x262265eb tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x2626cce9 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x262ea818 sk_wait_data +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2649a528 kobject_get +EXPORT_SYMBOL vmlinux 0x265e8f00 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x2661348d jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x2664b5e9 pci_biosrom_size +EXPORT_SYMBOL vmlinux 0x2666eee6 tcp_proc_register +EXPORT_SYMBOL vmlinux 0x268cc6a2 sys_close +EXPORT_SYMBOL vmlinux 0x269d44bc kill_litter_super +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26bce5da shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x26bcfa9c acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0x26cb34a2 mempool_create +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x2701f5ec input_grab_device +EXPORT_SYMBOL vmlinux 0x27059109 sk_dst_check +EXPORT_SYMBOL vmlinux 0x271bf013 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x271e7ec8 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x272c1d9f eisa_bus_type +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x2757c407 seq_lseek +EXPORT_SYMBOL vmlinux 0x27679336 netdev_update_features +EXPORT_SYMBOL vmlinux 0x276e48fe devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x277ac62a arch_dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x277af0ea blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x277c00a0 d_path +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x27882b9b ida_simple_remove +EXPORT_SYMBOL vmlinux 0x27a7a48d netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x27a92249 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x27a9db4c invalidate_partition +EXPORT_SYMBOL vmlinux 0x27aab206 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x27abc228 twl6040_power +EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction +EXPORT_SYMBOL vmlinux 0x27b26bb2 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x27bae6bc skb_store_bits +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c1a071 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x27d8708e md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x27e7a838 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x27fa6fa7 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x28166464 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x2847cb73 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x285a405f register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x286ddacb tty_unthrottle +EXPORT_SYMBOL vmlinux 0x2882a849 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x289b0499 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28b402fa fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x28b715a6 isapnp_cfg_end +EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x28f144d7 current_in_userns +EXPORT_SYMBOL vmlinux 0x290dcef7 netif_napi_add +EXPORT_SYMBOL vmlinux 0x291ea924 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x29406eb0 pci_bus_put +EXPORT_SYMBOL vmlinux 0x2951fdb5 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x295e0ccc nf_hook_slow +EXPORT_SYMBOL vmlinux 0x296436cd xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x29691ac2 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x296b3bbc neigh_xmit +EXPORT_SYMBOL vmlinux 0x2974be6b devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x29751d62 qdisc_list_add +EXPORT_SYMBOL vmlinux 0x29755d37 register_gifconf +EXPORT_SYMBOL vmlinux 0x29a0bdd2 clk_get +EXPORT_SYMBOL vmlinux 0x29a4656e dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x29acb972 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x29c2ef01 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x29c54bb0 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x29d113b3 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x29dbcc0b default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x2a1564a1 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x2a28d7ef bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a383fef __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x2a565a25 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x2a5def2f intel_scu_ipc_iowrite32 +EXPORT_SYMBOL vmlinux 0x2a63f9af posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x2a77a25e component_match_add_release +EXPORT_SYMBOL vmlinux 0x2a863bf2 flow_cache_fini +EXPORT_SYMBOL vmlinux 0x2a8aa86b generic_show_options +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aaa2ada pci_set_mwi +EXPORT_SYMBOL vmlinux 0x2ac5818a xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2afb6d91 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x2b03b60d abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b1a96c0 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x2b1c410e clear_wb_congested +EXPORT_SYMBOL vmlinux 0x2b1d094e pci_enable_msix +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b38eee8 noop_qdisc +EXPORT_SYMBOL vmlinux 0x2b3a7ddd nvm_put_blk +EXPORT_SYMBOL vmlinux 0x2b4da9e4 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x2b4f7b09 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x2b8e940d netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x2b992339 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x2bb5825a sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x2be63f2f devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0x2bfeb0a6 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c2c065e __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x2c417bb4 eth_header +EXPORT_SYMBOL vmlinux 0x2c4c3d8e pipe_unlock +EXPORT_SYMBOL vmlinux 0x2c50198e __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x2c600498 __devm_request_region +EXPORT_SYMBOL vmlinux 0x2c8013c7 vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0x2c870484 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x2c8934a3 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x2c90bd0b cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x2ca13c0e hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x2ca2ffd7 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x2ca319a6 wrmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x2cc4b430 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x2cc57956 register_shrinker +EXPORT_SYMBOL vmlinux 0x2cd0df59 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x2cedd9e4 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x2cfa8c81 elv_rb_add +EXPORT_SYMBOL vmlinux 0x2d028f0d qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x2d10c73f skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x2d112b51 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d144e21 rdmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x2d275b79 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d48d074 param_array_ops +EXPORT_SYMBOL vmlinux 0x2d6fa250 __check_sticky +EXPORT_SYMBOL vmlinux 0x2d7c0b77 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x2dc50131 set_anon_super +EXPORT_SYMBOL vmlinux 0x2dc697ad jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x2dc7eff4 sock_no_connect +EXPORT_SYMBOL vmlinux 0x2dc81042 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception +EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2e083835 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e1e25c5 dst_alloc +EXPORT_SYMBOL vmlinux 0x2e201fd1 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x2e35f422 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x2e557797 nf_log_register +EXPORT_SYMBOL vmlinux 0x2e82b892 sock_create_kern +EXPORT_SYMBOL vmlinux 0x2e9e2da6 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x2ea327bc __sb_start_write +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ecaf190 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x2ee23cb4 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x2ee44779 account_page_redirty +EXPORT_SYMBOL vmlinux 0x2ef0b775 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x2ef332f3 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f3ef054 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x2f3fc14a sk_reset_timer +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f71b685 kfree_skb +EXPORT_SYMBOL vmlinux 0x2fa19eab pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fbf027b alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x2fce6979 get_super_thawed +EXPORT_SYMBOL vmlinux 0x2fd354bd tcp_filter +EXPORT_SYMBOL vmlinux 0x2fdfb2db bprm_change_interp +EXPORT_SYMBOL vmlinux 0x2fe24da6 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x300b37d8 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x303a64ad nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x3067818f jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x306a5d16 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x30792aec simple_pin_fs +EXPORT_SYMBOL vmlinux 0x30798750 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x307eae7b dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x308bf6d1 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x308f3bd0 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x308fb67b dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b04526 ida_init +EXPORT_SYMBOL vmlinux 0x30be23b2 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x30c3d516 lockref_put_return +EXPORT_SYMBOL vmlinux 0x30c59446 __block_write_begin +EXPORT_SYMBOL vmlinux 0x30c71719 inode_permission +EXPORT_SYMBOL vmlinux 0x30e5b5ae devm_memunmap +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30f688a7 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x310204cf uart_suspend_port +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x31227cce sock_no_accept +EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x314ff757 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x315ea566 rps_needed +EXPORT_SYMBOL vmlinux 0x3161ddee mount_subtree +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x317723f1 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x318d15fa set_bh_page +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x31bdc96f adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x31d1fd17 blk_init_tags +EXPORT_SYMBOL vmlinux 0x31e76b57 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0x31e780b6 follow_pfn +EXPORT_SYMBOL vmlinux 0x31ec44a0 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx +EXPORT_SYMBOL vmlinux 0x3202435a wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x327e8055 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x327ecc91 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x32958d8c freeze_super +EXPORT_SYMBOL vmlinux 0x32999fff mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x329daa8b seqno_fence_ops +EXPORT_SYMBOL vmlinux 0x32ae7b2d inet_del_offload +EXPORT_SYMBOL vmlinux 0x32b5fa2f mem_section +EXPORT_SYMBOL vmlinux 0x32b76786 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x32d25dcb down_write +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32e037a0 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32e9ebb0 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x32ff646c nvm_mark_blk +EXPORT_SYMBOL vmlinux 0x32ffa637 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x3303c161 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x331e70fc vfs_statfs +EXPORT_SYMBOL vmlinux 0x3325e825 param_get_ushort +EXPORT_SYMBOL vmlinux 0x335737d4 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x336a815a genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x337c07c6 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x33a141ee cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33d440cc dma_ops +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33e3a4a9 block_write_full_page +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f4282c devm_gpiod_get +EXPORT_SYMBOL vmlinux 0x342f60fe apm_info +EXPORT_SYMBOL vmlinux 0x3439536a mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x343a200f tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x343d4693 inet6_bind +EXPORT_SYMBOL vmlinux 0x3444d51c uart_register_driver +EXPORT_SYMBOL vmlinux 0x345b1b62 eisa_driver_unregister +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x3479d3bc blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x34808810 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x34863f06 netdev_alert +EXPORT_SYMBOL vmlinux 0x3495d611 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34cb1986 netdev_all_lower_get_next +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f984c8 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x34f99c55 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x35017eab scsi_register_interface +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x352d8e08 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x353c1b50 input_reset_device +EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x353e21e3 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x353e37a9 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x35415116 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x3553066e get_thermal_instance +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x3576e2a3 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x35a0bd7d read_dev_sector +EXPORT_SYMBOL vmlinux 0x35a6851a pcim_iounmap +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35aeae89 bio_advance +EXPORT_SYMBOL vmlinux 0x35dfc31d tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x35e259f3 tso_count_descs +EXPORT_SYMBOL vmlinux 0x35fcab52 init_buffer +EXPORT_SYMBOL vmlinux 0x35fdff84 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x3600bdb4 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x3600f8d0 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x36106ab0 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x36173463 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x361cd68a fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x36548973 vme_slave_request +EXPORT_SYMBOL vmlinux 0x366847ee save_mount_options +EXPORT_SYMBOL vmlinux 0x366edc8b d_obtain_root +EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x367cd565 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x36942600 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x3695edda request_resource +EXPORT_SYMBOL vmlinux 0x369de934 elevator_alloc +EXPORT_SYMBOL vmlinux 0x369f73d2 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36c6af51 intel_scu_ipc_iowrite8 +EXPORT_SYMBOL vmlinux 0x36c9b963 filemap_flush +EXPORT_SYMBOL vmlinux 0x36cff20b simple_write_begin +EXPORT_SYMBOL vmlinux 0x36e4fe3d __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x36e64e5c mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x36e7853b inet_addr_type +EXPORT_SYMBOL vmlinux 0x36eaf534 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x36fd281e blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x370cb8cf open_exec +EXPORT_SYMBOL vmlinux 0x37190635 km_policy_expired +EXPORT_SYMBOL vmlinux 0x371e8e9c ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x37500384 pci_restore_state +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x37613521 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x3771b461 crc_ccitt +EXPORT_SYMBOL vmlinux 0x377aec26 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x378614a4 mutex_lock +EXPORT_SYMBOL vmlinux 0x378afe79 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x379a7ed9 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x379dee5f trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37ea8852 dquot_resume +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x37fe1fbf sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x38099e13 wrmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x3817b1dd inode_needs_sync +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381ccc13 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x3826f625 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x38279f92 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x382df951 fence_add_callback +EXPORT_SYMBOL vmlinux 0x383afe3a inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x383ffdbf mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x384127e3 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x3851168f inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x387a724b pci_irq_vector +EXPORT_SYMBOL vmlinux 0x387d8a69 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388799f6 unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x38887ce8 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38bf4dd7 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x38c9fd1f pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x38d4c1b7 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x38ddf299 find_lock_entry +EXPORT_SYMBOL vmlinux 0x38edba56 pcibios_set_irq_routing +EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x392455bf lock_page_memcg +EXPORT_SYMBOL vmlinux 0x3924f395 __tracepoint_write_msr +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393b43df md_error +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3959672c con_copy_unimap +EXPORT_SYMBOL vmlinux 0x395bfcac lock_fb_info +EXPORT_SYMBOL vmlinux 0x395eb5de audit_log +EXPORT_SYMBOL vmlinux 0x397b0512 __neigh_create +EXPORT_SYMBOL vmlinux 0x397dbefd skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x397df5df __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x39819a30 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x39874204 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x39913d0a kobject_init +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x39a055f3 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39b88648 skb_unlink +EXPORT_SYMBOL vmlinux 0x39cdcf13 md_integrity_register +EXPORT_SYMBOL vmlinux 0x39d7de27 dev_uc_init +EXPORT_SYMBOL vmlinux 0x39dd10fb dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x39e5a58d rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x39f1c2f4 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a0c08ba lease_modify +EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x3a2d1217 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush +EXPORT_SYMBOL vmlinux 0x3a4b7904 xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x3a5a14be proto_register +EXPORT_SYMBOL vmlinux 0x3a61d45e acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0x3a63e1b0 seq_pad +EXPORT_SYMBOL vmlinux 0x3a667837 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x3a6f8f26 fb_get_mode +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3ab75118 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x3ac86b40 phy_detach +EXPORT_SYMBOL vmlinux 0x3ace6cf6 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x3aed68fc ppp_unit_number +EXPORT_SYMBOL vmlinux 0x3affe2de from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x3b0226e3 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x3b201620 machine_real_restart +EXPORT_SYMBOL vmlinux 0x3b417bd3 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x3b54c7ec i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x3b5c4c53 nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b729a76 d_move +EXPORT_SYMBOL vmlinux 0x3b8fec4e dev_disable_lro +EXPORT_SYMBOL vmlinux 0x3b953a70 allocate_resource +EXPORT_SYMBOL vmlinux 0x3b95655f rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x3b987c4e scsi_add_device +EXPORT_SYMBOL vmlinux 0x3b9fe4ca generic_permission +EXPORT_SYMBOL vmlinux 0x3bb18ed5 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x3bb5114a prepare_to_wait +EXPORT_SYMBOL vmlinux 0x3be3c44b phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x3c034426 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c600502 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c8976e6 inode_init_owner +EXPORT_SYMBOL vmlinux 0x3c96c256 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x3cb3931b sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3d074e2a ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x3d0a12b5 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x3d0b05f6 blk_start_request +EXPORT_SYMBOL vmlinux 0x3d0d44d6 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x3d1391e2 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x3d56ad06 scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x3d7c1ed7 msrs_alloc +EXPORT_SYMBOL vmlinux 0x3d93eeb2 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x3d940e42 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3da19c2c neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x3da90fe5 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd6181f xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x3dde4dfe ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x3df0e9b0 install_exec_creds +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3dfed848 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0x3e391a85 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x3e45f446 done_path_create +EXPORT_SYMBOL vmlinux 0x3e528a9e tty_kref_put +EXPORT_SYMBOL vmlinux 0x3e61297f load_nls_default +EXPORT_SYMBOL vmlinux 0x3e654f49 acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x3e76a4f8 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3ea1820b dquot_quota_on +EXPORT_SYMBOL vmlinux 0x3eda432d elv_rb_find +EXPORT_SYMBOL vmlinux 0x3eeb7359 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x3ef0b96b scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x3ef5cab9 vm_map_ram +EXPORT_SYMBOL vmlinux 0x3ef78d80 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x3eff5ac2 intel_scu_ipc_writev +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f1195e0 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x3f20ca97 rtc_lock +EXPORT_SYMBOL vmlinux 0x3f220d88 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x3f3fd057 vfs_mknod +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f481454 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x3f533ff4 fscrypt_release_ctx +EXPORT_SYMBOL vmlinux 0x3f54aa28 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x3f5c6471 del_timer_sync +EXPORT_SYMBOL vmlinux 0x3f653e99 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x3f839805 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x3f8a2d1a submit_bh +EXPORT_SYMBOL vmlinux 0x3fb6b473 mmc_put_card +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x400390fb acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0x400d5e8f vfs_setpos +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x40329575 is_nd_btt +EXPORT_SYMBOL vmlinux 0x403822a9 pci_release_region +EXPORT_SYMBOL vmlinux 0x403bfe27 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x4044a02a request_key +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x405e9b94 param_get_int +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x4097fa45 acpi_read_bit_register +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b94fd4 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x40c3f909 __nla_put +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40c89d46 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0x40cf85c3 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x4100517c vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x410ea3e5 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414e58f7 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x415718be proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x415764d2 param_set_charp +EXPORT_SYMBOL vmlinux 0x415da5f1 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x416d3a93 set_pages_x +EXPORT_SYMBOL vmlinux 0x416fbfb5 __scm_send +EXPORT_SYMBOL vmlinux 0x4174baec simple_release_fs +EXPORT_SYMBOL vmlinux 0x41862ad4 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x41886c8f sget_userns +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x41a2de37 __SetPageMovable +EXPORT_SYMBOL vmlinux 0x41b3f0fc touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0x41b76004 check_disk_change +EXPORT_SYMBOL vmlinux 0x41d070c0 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x41d0c1dc cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x41d1c355 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x41d9f286 tty_register_driver +EXPORT_SYMBOL vmlinux 0x41e79f2e sock_no_listen +EXPORT_SYMBOL vmlinux 0x41f8647f radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x42028cef pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x4204df0e __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x4217709d get_cached_acl +EXPORT_SYMBOL vmlinux 0x42350e8d ucs2_strlen +EXPORT_SYMBOL vmlinux 0x4235f2be blk_finish_request +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x425750d2 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x42759828 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x4292364c schedule +EXPORT_SYMBOL vmlinux 0x42b202d2 phy_device_register +EXPORT_SYMBOL vmlinux 0x42c8de35 ioremap_nocache +EXPORT_SYMBOL vmlinux 0x42ce21c1 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x42d4b39d fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x42d9da45 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x42e1c401 neigh_table_init +EXPORT_SYMBOL vmlinux 0x42f9e97e tcp_make_synack +EXPORT_SYMBOL vmlinux 0x42fd4380 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x42fe3f83 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4303c03e vc_cons +EXPORT_SYMBOL vmlinux 0x4311cf88 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x43263f16 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x43441cb5 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x436095e6 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x436cdaa8 kernel_accept +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x43803045 inc_nlink +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43a6a210 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x43b83d4b fscrypt_d_ops +EXPORT_SYMBOL vmlinux 0x43bdddba migrate_page_copy +EXPORT_SYMBOL vmlinux 0x43d41193 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x43d8c1cd swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x43e30ad7 __vfs_read +EXPORT_SYMBOL vmlinux 0x44096f3b pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x440b5d13 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x440ee695 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x44259d46 dev_close +EXPORT_SYMBOL vmlinux 0x442bf578 lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x442e5aa2 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x44468156 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x444d0312 notify_change +EXPORT_SYMBOL vmlinux 0x4451ad8f skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x44597c5a copy_from_iter +EXPORT_SYMBOL vmlinux 0x44782b4c mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x448e085f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x44a30ba7 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x44a5edab __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44afd6a4 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x44b5ee9a kasprintf +EXPORT_SYMBOL vmlinux 0x44b74642 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x44d74ded vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x44e43b94 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44f04dd2 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x4505e982 have_submounts +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x450c48b7 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x45169692 inet_add_offload +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x454c0c60 fence_array_create +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457e4be0 phy_stop +EXPORT_SYMBOL vmlinux 0x45993d5c tty_hangup +EXPORT_SYMBOL vmlinux 0x45bee917 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x45d6315a unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x45d63fe1 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x45eb341b input_register_handle +EXPORT_SYMBOL vmlinux 0x46048d49 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x46084295 kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x462d16a0 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x4657ebaa fence_context_alloc +EXPORT_SYMBOL vmlinux 0x4659e23f generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x4678a599 cdev_alloc +EXPORT_SYMBOL vmlinux 0x469ad11a fb_class +EXPORT_SYMBOL vmlinux 0x46a7c501 udp_proc_register +EXPORT_SYMBOL vmlinux 0x46beb655 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x46e8496d bdput +EXPORT_SYMBOL vmlinux 0x46e923a8 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x46eafe79 dev_trans_start +EXPORT_SYMBOL vmlinux 0x46f26719 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x470dd29c inode_dio_wait +EXPORT_SYMBOL vmlinux 0x4724c567 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x476e9007 fscrypt_inherit_context +EXPORT_SYMBOL vmlinux 0x4770e789 lookup_one_len +EXPORT_SYMBOL vmlinux 0x4778dc12 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x478d10b2 ht_destroy_irq +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x479f8772 sk_common_release +EXPORT_SYMBOL vmlinux 0x47b222d9 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x47ca18d2 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x47cf9cee inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x47e75cd6 brioctl_set +EXPORT_SYMBOL vmlinux 0x48023b13 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x480f81d9 skb_dequeue +EXPORT_SYMBOL vmlinux 0x48181f89 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x483bb6fd generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x484c86b0 set_posix_acl +EXPORT_SYMBOL vmlinux 0x4853a186 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x487dc286 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x48863fc4 ppp_input +EXPORT_SYMBOL vmlinux 0x48aeda84 set_cached_acl +EXPORT_SYMBOL vmlinux 0x48af15e7 register_key_type +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48d01de7 input_register_handler +EXPORT_SYMBOL vmlinux 0x48d62f81 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x48fbbc94 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x49057b88 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x4950d909 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x4954e0d3 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x495de980 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x49608d8a update_devfreq +EXPORT_SYMBOL vmlinux 0x49681e81 kernel_read +EXPORT_SYMBOL vmlinux 0x498204d4 pnp_find_dev +EXPORT_SYMBOL vmlinux 0x499631fc xfrm_register_type +EXPORT_SYMBOL vmlinux 0x49a13e81 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x49af24b8 __d_drop +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49c0fd72 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0x49ea58be radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a203216 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x4a22e737 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x4a366080 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x4a3bcc29 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x4a4fc3bd vme_bus_num +EXPORT_SYMBOL vmlinux 0x4a619f83 memcpy +EXPORT_SYMBOL vmlinux 0x4a61d2e6 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x4a6f3d4a down_write_trylock +EXPORT_SYMBOL vmlinux 0x4a7881ef inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x4a7b4231 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x4a7f362f init_special_inode +EXPORT_SYMBOL vmlinux 0x4a9428d1 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x4abc1a46 fence_remove_callback +EXPORT_SYMBOL vmlinux 0x4ae4223e tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x4afb854a tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b1f892e prepare_creds +EXPORT_SYMBOL vmlinux 0x4b2df7c0 dev_get_flags +EXPORT_SYMBOL vmlinux 0x4b4e0c95 flush_signals +EXPORT_SYMBOL vmlinux 0x4b4fe75b radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x4b5366e0 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b661c25 d_alloc +EXPORT_SYMBOL vmlinux 0x4b667176 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x4b96dc9f from_kprojid +EXPORT_SYMBOL vmlinux 0x4b9dfb04 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x4ba591c5 inet6_release +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bdc6cde bdi_destroy +EXPORT_SYMBOL vmlinux 0x4bde9332 inet_bind +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4bea045e d_make_root +EXPORT_SYMBOL vmlinux 0x4c009b1d devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c0adcfd posix_lock_file +EXPORT_SYMBOL vmlinux 0x4c1e26b1 mutex_trylock +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c2aeada dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x4c2b8154 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x4c2cc9ef param_get_ulong +EXPORT_SYMBOL vmlinux 0x4c3754f2 km_new_mapping +EXPORT_SYMBOL vmlinux 0x4c878322 iosf_mbi_modify +EXPORT_SYMBOL vmlinux 0x4ca2494c sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x4cae3785 framebuffer_release +EXPORT_SYMBOL vmlinux 0x4cb5e144 __elv_add_request +EXPORT_SYMBOL vmlinux 0x4cda5b0b mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4ce24306 fscrypt_get_ctx +EXPORT_SYMBOL vmlinux 0x4cf78b01 scsi_print_result +EXPORT_SYMBOL vmlinux 0x4cfbaa50 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x4cfcbf56 netlink_capable +EXPORT_SYMBOL vmlinux 0x4d113aa6 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x4d13ca66 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d46478e serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x4d618c20 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x4d684a07 bio_split +EXPORT_SYMBOL vmlinux 0x4d6a1ad7 icmpv6_send +EXPORT_SYMBOL vmlinux 0x4d8489de thaw_super +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da075bd prepare_binprm +EXPORT_SYMBOL vmlinux 0x4db48ce3 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x4db9080e reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x4dc7d5ec d_find_alias +EXPORT_SYMBOL vmlinux 0x4dd5618f tty_register_device +EXPORT_SYMBOL vmlinux 0x4ddc145a simple_open +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4df08615 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4e09d194 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x4e1bf6a9 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x4e1c5bd6 skb_queue_head +EXPORT_SYMBOL vmlinux 0x4e1d10c1 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x4e1d9b05 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e66e7a1 mmc_get_card +EXPORT_SYMBOL vmlinux 0x4e68a1c2 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e81ba1f set_nlink +EXPORT_SYMBOL vmlinux 0x4e9df852 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4ea46d8c sock_efree +EXPORT_SYMBOL vmlinux 0x4ea49857 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x4eb7bee1 __free_pages +EXPORT_SYMBOL vmlinux 0x4ec023d7 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0x4ec1e212 update_region +EXPORT_SYMBOL vmlinux 0x4eedc221 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x4eeea767 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x4efe1340 register_console +EXPORT_SYMBOL vmlinux 0x4f038f2f posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query +EXPORT_SYMBOL vmlinux 0x4f67cd11 module_put +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f6b400b _copy_from_user +EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read +EXPORT_SYMBOL vmlinux 0x4f8b5ddb _copy_to_user +EXPORT_SYMBOL vmlinux 0x4fa61679 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x4fb16519 pid_task +EXPORT_SYMBOL vmlinux 0x4fb5851a rtnl_unicast +EXPORT_SYMBOL vmlinux 0x4fbae6a6 uuid_le_to_bin +EXPORT_SYMBOL vmlinux 0x4fbde6f3 register_netdevice +EXPORT_SYMBOL vmlinux 0x4fc947bb dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x4fd77727 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x4fdda87c cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fe1ec64 vga_switcheroo_lock_ddc +EXPORT_SYMBOL vmlinux 0x4fe8cfa6 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x4ff00e68 tty_port_open +EXPORT_SYMBOL vmlinux 0x50047939 phy_print_status +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x50190dc6 param_set_copystring +EXPORT_SYMBOL vmlinux 0x501f108b udp_poll +EXPORT_SYMBOL vmlinux 0x50257e8a bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x50529870 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x506d1823 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x5079d1d4 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x5082b46d blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x508dfd60 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x50a2fbd8 uart_resume_port +EXPORT_SYMBOL vmlinux 0x50b3359a nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50b9187f nd_iostat_end +EXPORT_SYMBOL vmlinux 0x50bba325 param_ops_charp +EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del +EXPORT_SYMBOL vmlinux 0x50e666ef fscrypt_free_filename +EXPORT_SYMBOL vmlinux 0x50eedeb8 printk +EXPORT_SYMBOL vmlinux 0x50f13044 tty_unlock +EXPORT_SYMBOL vmlinux 0x50f70007 mmc_free_host +EXPORT_SYMBOL vmlinux 0x510c0e9c tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x511d3f98 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x5133e1da netif_carrier_on +EXPORT_SYMBOL vmlinux 0x514b8202 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x5157f347 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x516024b4 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x51719973 dq_data_lock +EXPORT_SYMBOL vmlinux 0x51753393 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x5186518f profile_pc +EXPORT_SYMBOL vmlinux 0x51bbb26f proc_set_user +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data +EXPORT_SYMBOL vmlinux 0x520de4a3 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x52232d2c __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x52237aed napi_get_frags +EXPORT_SYMBOL vmlinux 0x52388190 inet_frags_init +EXPORT_SYMBOL vmlinux 0x5241b3c7 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x524f69f6 mb_cache_entry_delete_block +EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0x5262ea75 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x528727ab dev_addr_del +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le +EXPORT_SYMBOL vmlinux 0x52b0d4be pci_fixup_device +EXPORT_SYMBOL vmlinux 0x52be6b8f page_address +EXPORT_SYMBOL vmlinux 0x52c9c3a4 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x53051698 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x530b1e4c rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x5331a875 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x5332d24a __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x53564e86 vmap +EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x536cb5e2 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x536ea424 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x536f6e7c radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x538eeb34 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53b67588 first_ec +EXPORT_SYMBOL vmlinux 0x53db2fe0 scsi_execute +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x5421a56e skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x542f6337 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x543a85ac mdio_driver_register +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register +EXPORT_SYMBOL vmlinux 0x54516570 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x5464d3f6 acpi_remove_sci_handler +EXPORT_SYMBOL vmlinux 0x546e8b04 x86_hyper_xen +EXPORT_SYMBOL vmlinux 0x547794bf __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x54915170 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x54919a44 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x5492e66b i2c_del_driver +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54b949c0 find_vma +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f432d1 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x54f53abe sk_free +EXPORT_SYMBOL vmlinux 0x54fe4ab9 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x5509aa6f uart_update_timeout +EXPORT_SYMBOL vmlinux 0x550de08d udplite_prot +EXPORT_SYMBOL vmlinux 0x5512a86e kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x55201cc7 replace_mount_options +EXPORT_SYMBOL vmlinux 0x553a14b3 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x554e2fea __get_user_pages +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x55840cdf xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x55846c5a nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x5587f6e2 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x55883833 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x559c4da3 blk_put_queue +EXPORT_SYMBOL vmlinux 0x55ab8c7a bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x55c1071c kunmap_high +EXPORT_SYMBOL vmlinux 0x55cc5ed2 setup_new_exec +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55e60a36 queued_spin_unlock_wait +EXPORT_SYMBOL vmlinux 0x561c8075 I_BDEV +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x5641419b wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x565be225 dma_find_channel +EXPORT_SYMBOL vmlinux 0x56601ee1 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x56707f70 acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x5676a3e5 intel_scu_ipc_ioread8 +EXPORT_SYMBOL vmlinux 0x567efcd6 tty_port_close +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x5699ee60 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x569f2bb0 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x56a53e90 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL vmlinux 0x56bf4814 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56da7d49 __find_get_block +EXPORT_SYMBOL vmlinux 0x56f04949 devm_gpio_free +EXPORT_SYMBOL vmlinux 0x5705088a __vmalloc +EXPORT_SYMBOL vmlinux 0x571b8704 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x575af70c on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x575f3cf2 pci_request_regions +EXPORT_SYMBOL vmlinux 0x576014fa free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x57848e5b __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x5792dc1e phy_attach_direct +EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits +EXPORT_SYMBOL vmlinux 0x57ed8356 vme_lm_request +EXPORT_SYMBOL vmlinux 0x57f4311f pci_read_vpd +EXPORT_SYMBOL vmlinux 0x57fedf0c neigh_for_each +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582a1d93 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x583ae706 param_set_ulong +EXPORT_SYMBOL vmlinux 0x584738f9 rdmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x584a5a16 vfs_whiteout +EXPORT_SYMBOL vmlinux 0x585341ec serio_open +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x585f5bc0 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem +EXPORT_SYMBOL vmlinux 0x586103be acpi_setup_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x5861ba3b i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x58671f17 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x58684170 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x587fa5a9 generic_make_request +EXPORT_SYMBOL vmlinux 0x5887dcbd dmam_pool_create +EXPORT_SYMBOL vmlinux 0x5898f221 clkdev_drop +EXPORT_SYMBOL vmlinux 0x58b1ae4a make_kprojid +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58e2fd19 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58ecda5a blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x58fef6f8 ist_info +EXPORT_SYMBOL vmlinux 0x59054ae5 __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x590febee generic_block_bmap +EXPORT_SYMBOL vmlinux 0x593f4636 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x5944d015 __cachemode2pte_tbl +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x5957e9c7 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x59797221 mdiobus_write +EXPORT_SYMBOL vmlinux 0x5982698b textsearch_register +EXPORT_SYMBOL vmlinux 0x598b2166 cdev_add +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59bc9609 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0x59c891eb default_file_splice_read +EXPORT_SYMBOL vmlinux 0x59cb6bec km_is_alive +EXPORT_SYMBOL vmlinux 0x59e029ca clkdev_add +EXPORT_SYMBOL vmlinux 0x5a01ab61 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a16ad5c max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x5a1985c6 __tracepoint_rdpmc +EXPORT_SYMBOL vmlinux 0x5a1f5572 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x5a32f95b vfs_rename +EXPORT_SYMBOL vmlinux 0x5a3822bb __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x5a477596 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x5a47f355 genphy_read_status +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a4d3788 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x5a61f8f4 __page_symlink +EXPORT_SYMBOL vmlinux 0x5a6597fd swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x5a71bd4f unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x5a82c44a complete_and_exit +EXPORT_SYMBOL vmlinux 0x5a8b0292 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x5a98d062 arp_xmit +EXPORT_SYMBOL vmlinux 0x5aaaeeba neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x5aae3181 seq_vprintf +EXPORT_SYMBOL vmlinux 0x5ab79e0a tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x5abf4975 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x5ad534e9 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x5aed8850 pnp_get_resource +EXPORT_SYMBOL vmlinux 0x5af6702e uart_add_one_port +EXPORT_SYMBOL vmlinux 0x5afd27bf nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b024b36 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x5b0e5948 kset_register +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b21cc0c ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x5b33d610 nobh_writepage +EXPORT_SYMBOL vmlinux 0x5b3952a9 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x5b5f5be9 pci_iounmap +EXPORT_SYMBOL vmlinux 0x5b6d3e25 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x5b969cd5 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x5b9e4747 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x5bb31a31 dev_err +EXPORT_SYMBOL vmlinux 0x5bc764f7 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x5be89f80 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x5beedac8 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x5c545234 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x5c83d475 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x5c942219 scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x5cba5137 kern_unmount +EXPORT_SYMBOL vmlinux 0x5cc849eb single_release +EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x5cec9d18 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d4a8320 kvasprintf +EXPORT_SYMBOL vmlinux 0x5d50c3d6 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved +EXPORT_SYMBOL vmlinux 0x5d7aef21 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x5d8475e0 completion_done +EXPORT_SYMBOL vmlinux 0x5d8d0d1b crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x5da3d106 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x5de2d565 pnp_register_driver +EXPORT_SYMBOL vmlinux 0x5e040f27 dma_pool_create +EXPORT_SYMBOL vmlinux 0x5e10c1fb kmem_cache_size +EXPORT_SYMBOL vmlinux 0x5e137de6 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x5e317973 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x5e3453a2 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x5e452c33 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x5e499916 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x5e5797bc ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x5e62e57e netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x5e6b002a __scsi_add_device +EXPORT_SYMBOL vmlinux 0x5e72c78b blkdev_get +EXPORT_SYMBOL vmlinux 0x5e75fae8 page_symlink +EXPORT_SYMBOL vmlinux 0x5e7a653e blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x5e7b69df filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ee3ec2d fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x5eff53a1 simple_statfs +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f07c7a3 dquot_disable +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f09e965 ppp_input_error +EXPORT_SYMBOL vmlinux 0x5f1a4ccf intel_scu_ipc_update_register +EXPORT_SYMBOL vmlinux 0x5f1a9dcd tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0x5f2952bc netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x5f2c2482 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x5f375c64 PDE_DATA +EXPORT_SYMBOL vmlinux 0x5f3f88ff seq_release_private +EXPORT_SYMBOL vmlinux 0x5f581392 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x5f711d8f tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x5f9b58e7 bio_integrity_free +EXPORT_SYMBOL vmlinux 0x5f9d2515 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x5fad86e4 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x5fb2e8ef idr_init +EXPORT_SYMBOL vmlinux 0x5fb3da76 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x5fcd8865 __getblk_slow +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fe4cc0a padata_free +EXPORT_SYMBOL vmlinux 0x5fe940dc dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x5ffface0 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x6017c382 ps2_init +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602767d8 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0x6033b64a mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x603fa35a dqput +EXPORT_SYMBOL vmlinux 0x604316d8 acpi_finish_gpe +EXPORT_SYMBOL vmlinux 0x604ed91e dev_remove_pack +EXPORT_SYMBOL vmlinux 0x60560f3b fence_signal +EXPORT_SYMBOL vmlinux 0x605d2b81 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x606f8988 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0x60743076 dquot_acquire +EXPORT_SYMBOL vmlinux 0x607ada25 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x607f6af8 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x60822877 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x60921725 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x6096759c scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60b86f61 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x60c8d62e may_umount_tree +EXPORT_SYMBOL vmlinux 0x60d12aea tty_name +EXPORT_SYMBOL vmlinux 0x60d2aad3 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x60d80c22 vga_put +EXPORT_SYMBOL vmlinux 0x60e0705c __f_setown +EXPORT_SYMBOL vmlinux 0x60e58c97 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x610aaa40 mempool_destroy +EXPORT_SYMBOL vmlinux 0x61130a18 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61353460 vfs_read +EXPORT_SYMBOL vmlinux 0x6147b4bf acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x615753f7 dcache_readdir +EXPORT_SYMBOL vmlinux 0x616de1e6 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x6172c489 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0x6174f407 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x617a9f6d vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x61843a17 d_splice_alias +EXPORT_SYMBOL vmlinux 0x61894480 pci_find_capability +EXPORT_SYMBOL vmlinux 0x61938fa4 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x61a7c457 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61cd0e4d netdev_notice +EXPORT_SYMBOL vmlinux 0x61dfe57f iov_iter_advance +EXPORT_SYMBOL vmlinux 0x6204242c bio_put +EXPORT_SYMBOL vmlinux 0x62049256 acpi_disable +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x621f8f88 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x622ee880 set_disk_ro +EXPORT_SYMBOL vmlinux 0x62319c1c pcie_set_mps +EXPORT_SYMBOL vmlinux 0x6237f6b5 acpi_enable_event +EXPORT_SYMBOL vmlinux 0x623d00b4 dev_change_xdp_fd +EXPORT_SYMBOL vmlinux 0x6241a2ab __copy_from_user_ll_nocache +EXPORT_SYMBOL vmlinux 0x6248a1c5 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x624e8b6a get_user_pages +EXPORT_SYMBOL vmlinux 0x6253e23d skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x6256b87b input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x6257b4a4 from_kgid +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62808162 dev_deactivate +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x629a06e5 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x629ec483 __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x62b51496 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x62c5c825 pci_get_slot +EXPORT_SYMBOL vmlinux 0x62d233f0 generic_read_dir +EXPORT_SYMBOL vmlinux 0x62d39310 kmap_atomic +EXPORT_SYMBOL vmlinux 0x62dc3e15 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x62e68457 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x6324183f __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x6337f759 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x633c6192 start_tty +EXPORT_SYMBOL vmlinux 0x633ea69a reuseport_alloc +EXPORT_SYMBOL vmlinux 0x6355ffc6 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x636a5691 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0x6383f5ab serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x6388591c down_timeout +EXPORT_SYMBOL vmlinux 0x6390d2e4 eth_header_parse +EXPORT_SYMBOL vmlinux 0x63a01291 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x63a0c364 netdev_printk +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63caa97b __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x63d32a48 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x63d38cca mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x63d76b77 pci_clear_master +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x643fa6d0 __radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6446e2ce ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0x644deaa8 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a4b84d cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64ab0e98 wait_for_completion +EXPORT_SYMBOL vmlinux 0x64c8d45e tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x64ccd6c8 uart_match_port +EXPORT_SYMBOL vmlinux 0x64d586fc skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x64da2eb3 serio_close +EXPORT_SYMBOL vmlinux 0x64eae7ad set_memory_array_wb +EXPORT_SYMBOL vmlinux 0x64f9c66c mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x650a6877 param_ops_int +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x65261061 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x653ff75d dev_addr_init +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x6541d2c4 mmc_request_done +EXPORT_SYMBOL vmlinux 0x655f1ab0 set_memory_array_wc +EXPORT_SYMBOL vmlinux 0x6565d33f scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x65764bcc inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x658df388 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x65a295bb atomic64_xchg_cx8 +EXPORT_SYMBOL vmlinux 0x65a6c4da jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x65af3eea copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x65b3c279 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry +EXPORT_SYMBOL vmlinux 0x65c26110 param_get_byte +EXPORT_SYMBOL vmlinux 0x65c7f4c5 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65f365a4 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x6602e3c9 kthread_stop +EXPORT_SYMBOL vmlinux 0x660d160a posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x6618388a nvm_register +EXPORT_SYMBOL vmlinux 0x66217684 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x66296b50 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x66297864 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x662a7a6e __alloc_skb +EXPORT_SYMBOL vmlinux 0x66355efc vprintk +EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0x6640d208 module_refcount +EXPORT_SYMBOL vmlinux 0x664483c5 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x66517ba1 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x665a726c skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x666c3ed8 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x667cecc9 acpi_os_printf +EXPORT_SYMBOL vmlinux 0x667e4e80 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x6681f18b free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x668f9cd5 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x669bf80b proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x66af42d1 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x66c25334 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x66cbaf3c xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x66d804b1 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x66e0319b tty_set_operations +EXPORT_SYMBOL vmlinux 0x66e7411d nf_ct_attach +EXPORT_SYMBOL vmlinux 0x66f450ca da903x_query_status +EXPORT_SYMBOL vmlinux 0x66fe3a46 tty_port_init +EXPORT_SYMBOL vmlinux 0x671f7d68 skb_pull +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x672f1d14 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x673389b4 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x67368dcd __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x673a85fe tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x673d380f sg_miter_start +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x67620028 sock_alloc +EXPORT_SYMBOL vmlinux 0x6779fb85 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x679d50b0 fscrypt_encrypt_page +EXPORT_SYMBOL vmlinux 0x67abacf9 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c56f65 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x67d18fbe pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x67d919d4 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x67e43b53 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x67f92ebc __next_node_in +EXPORT_SYMBOL vmlinux 0x68008155 udp_seq_open +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680ec266 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x68169c6f block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x6817d463 x86_cpu_to_acpiid +EXPORT_SYMBOL vmlinux 0x6852994a dm_io +EXPORT_SYMBOL vmlinux 0x6857a29d mount_bdev +EXPORT_SYMBOL vmlinux 0x68624a39 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x686dd0e1 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x6885a3ca serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68a20f0e bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x68ae4b72 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x68b7adf4 igrab +EXPORT_SYMBOL vmlinux 0x68d020ff proto_unregister +EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x691e912c tcp_seq_open +EXPORT_SYMBOL vmlinux 0x69215276 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x69556173 __lock_buffer +EXPORT_SYMBOL vmlinux 0x6961f41b bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x69893e53 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x6997643e uart_get_divisor +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a430b4 param_get_short +EXPORT_SYMBOL vmlinux 0x69acc6ee dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x69accffa param_set_int +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69c03fc5 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x69c1ee54 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x69c41a28 ps2_drain +EXPORT_SYMBOL vmlinux 0x69c7ae7a invalidate_bdev +EXPORT_SYMBOL vmlinux 0x69d50828 __init_rwsem +EXPORT_SYMBOL vmlinux 0x69de5746 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x69f37626 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x69ff4f54 generic_file_open +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a24e0c2 dst_destroy +EXPORT_SYMBOL vmlinux 0x6a27bfce csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x6a3b89d9 inet6_getname +EXPORT_SYMBOL vmlinux 0x6a3bda8a input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a6820eb try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x6a6dab36 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x6a78dec9 seq_escape +EXPORT_SYMBOL vmlinux 0x6a7b8d08 devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x6a8ce2b4 i8042_install_filter +EXPORT_SYMBOL vmlinux 0x6a94f344 bdev_read_only +EXPORT_SYMBOL vmlinux 0x6a971c2d generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x6ab3de67 follow_down_one +EXPORT_SYMBOL vmlinux 0x6aba89c9 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6ad85887 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6addc6c7 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b04c08f gnttab_alloc_pages +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b13fbff nobh_write_end +EXPORT_SYMBOL vmlinux 0x6b19a11a bio_copy_data +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b632e96 unregister_nls +EXPORT_SYMBOL vmlinux 0x6b656057 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x6b6b18b4 fb_pan_display +EXPORT_SYMBOL vmlinux 0x6b6c9f60 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x6b6f98d4 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x6b736f62 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x6b74b9be bit_waitqueue +EXPORT_SYMBOL vmlinux 0x6ba643d9 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bccd353 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x6bcf066d _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6be88d3c skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x6bf1c17f pv_lock_ops +EXPORT_SYMBOL vmlinux 0x6c0eb4a4 blk_requeue_request +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c2e3320 strncmp +EXPORT_SYMBOL vmlinux 0x6c5c9855 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x6c5de6c0 simple_rename +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c8236cf pcim_iomap +EXPORT_SYMBOL vmlinux 0x6c9452ff arp_send +EXPORT_SYMBOL vmlinux 0x6ca2b725 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x6ca874a2 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x6ccdd372 __put_page +EXPORT_SYMBOL vmlinux 0x6cd88dca input_register_device +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6d05a942 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d14ce43 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x6d1d5d9b iosf_mbi_write +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 0x6d3c37c1 param_set_short +EXPORT_SYMBOL vmlinux 0x6d3e4b0d __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x6d739663 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x6d74b587 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x6d7c0805 set_blocksize +EXPORT_SYMBOL vmlinux 0x6d820853 elv_rb_del +EXPORT_SYMBOL vmlinux 0x6d8b9bcb generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x6d9be42a bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x6dc0c9dc down_interruptible +EXPORT_SYMBOL vmlinux 0x6dc6dd56 down +EXPORT_SYMBOL vmlinux 0x6ddcf2ef acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x6de7727f ab3100_event_register +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1495f nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e08e47f netlink_set_err +EXPORT_SYMBOL vmlinux 0x6e1f90cf jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x6e50b13b is_bad_inode +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e8e7969 simple_unlink +EXPORT_SYMBOL vmlinux 0x6e9a3bc3 seq_write +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea07db2 mpage_writepages +EXPORT_SYMBOL vmlinux 0x6eca4d4f mod_timer_pending +EXPORT_SYMBOL vmlinux 0x6ed2d7a2 kill_block_super +EXPORT_SYMBOL vmlinux 0x6ed88fa3 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x6ee4d157 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x6ef66e8a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x6f0bf494 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x6f0e9f4a posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x6f1bf786 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x6f23ad33 seq_path +EXPORT_SYMBOL vmlinux 0x6f2e4f46 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x6f305247 __skb_csum_offload_chk +EXPORT_SYMBOL vmlinux 0x6f517f10 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x6f556bdb acpi_get_gpe_device +EXPORT_SYMBOL vmlinux 0x6f581d06 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x6f63a5d1 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x6f8837cd jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f9eb898 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x6fa058eb netlink_broadcast +EXPORT_SYMBOL vmlinux 0x6fa6d720 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x6fad0512 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fca6178 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd3414c reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x6fdb6b20 dev_emerg +EXPORT_SYMBOL vmlinux 0x6fe83130 irq_set_chip +EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write +EXPORT_SYMBOL vmlinux 0x6fedadcb softnet_data +EXPORT_SYMBOL vmlinux 0x6ff4f026 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x700202aa inet_frags_fini +EXPORT_SYMBOL vmlinux 0x700e8588 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x701428f8 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x7029f11b iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x7064eecb pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x7075a2dc generic_file_mmap +EXPORT_SYMBOL vmlinux 0x7078cb1e i2c_master_recv +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x7088ce72 printk_emit +EXPORT_SYMBOL vmlinux 0x708a79f7 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x70bd47a3 skb_make_writable +EXPORT_SYMBOL vmlinux 0x70d1f8f3 strncat +EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0x70e8464a tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x711afe87 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7137e00c unregister_quota_format +EXPORT_SYMBOL vmlinux 0x71684d4a mutex_unlock +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71802da5 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x71808404 block_write_end +EXPORT_SYMBOL vmlinux 0x7188c3f1 __serio_register_port +EXPORT_SYMBOL vmlinux 0x719981cb __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71b141b8 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x71b45309 neigh_destroy +EXPORT_SYMBOL vmlinux 0x71d862ef vfs_symlink +EXPORT_SYMBOL vmlinux 0x71e7678c dev_notice +EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x721b5000 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x72238d7e scsi_device_resume +EXPORT_SYMBOL vmlinux 0x722e7c2e dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x7282e11f nf_afinfo +EXPORT_SYMBOL vmlinux 0x72a453bc fd_install +EXPORT_SYMBOL vmlinux 0x72a90da9 nf_log_packet +EXPORT_SYMBOL vmlinux 0x72a9489f iput +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b2eb8b dquot_operations +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72bfe4a0 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f3aba2 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x72f4aedc bio_reset +EXPORT_SYMBOL vmlinux 0x72f698b4 km_query +EXPORT_SYMBOL vmlinux 0x73085d91 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x736f137f tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x7373640c skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x738714db ida_pre_get +EXPORT_SYMBOL vmlinux 0x738803e6 strnlen +EXPORT_SYMBOL vmlinux 0x73b2c10b in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x73b4c83b cont_write_begin +EXPORT_SYMBOL vmlinux 0x73c16179 kthread_bind +EXPORT_SYMBOL vmlinux 0x73c4403a ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x73c8f22e generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x73cb9425 icmp_send +EXPORT_SYMBOL vmlinux 0x73dc4208 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73e3db13 nvm_submit_ppa_list +EXPORT_SYMBOL vmlinux 0x73f4bca1 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus +EXPORT_SYMBOL vmlinux 0x743b4ae3 atomic64_inc_not_zero_cx8 +EXPORT_SYMBOL vmlinux 0x745f20a3 idr_is_empty +EXPORT_SYMBOL vmlinux 0x7466c594 clear_nlink +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7474c5a4 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x747a9560 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x747e9ab9 dma_common_mmap +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c5be9d find_inode_nowait +EXPORT_SYMBOL vmlinux 0x74e5c98f ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74f0bba5 kmap_to_page +EXPORT_SYMBOL vmlinux 0x74f3b3ee phy_drivers_register +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x75070892 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x75168ef8 PageMovable +EXPORT_SYMBOL vmlinux 0x751eb264 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x7524c21d blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x75271716 save_processor_state +EXPORT_SYMBOL vmlinux 0x7531e3dc acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x7550ece7 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x755d9223 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x75811312 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7583dbeb xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x758a954e blk_free_tags +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +EXPORT_SYMBOL vmlinux 0x75a9202f csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x75abf38d blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x75b89933 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x75bc549a x86_cpu_to_apicid +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75c6451f nd_device_notify +EXPORT_SYMBOL vmlinux 0x75d21809 vprintk_emit +EXPORT_SYMBOL vmlinux 0x75e95222 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x75ef90bb fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x75f4eda9 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x7601882c sock_kfree_s +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x76124db7 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x7614932c get_acl +EXPORT_SYMBOL vmlinux 0x762add85 atomic64_inc_return_cx8 +EXPORT_SYMBOL vmlinux 0x76337180 dev_warn +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764c8356 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x765aaad2 nla_append +EXPORT_SYMBOL vmlinux 0x76656c1b qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x767e790d mdiobus_read +EXPORT_SYMBOL vmlinux 0x7685a9e8 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x768807e6 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x769e06d7 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be +EXPORT_SYMBOL vmlinux 0x76e385f8 sk_busy_loop +EXPORT_SYMBOL vmlinux 0x76e4fc19 simple_write_end +EXPORT_SYMBOL vmlinux 0x76f56f78 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order +EXPORT_SYMBOL vmlinux 0x770a0036 isapnp_cfg_begin +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x7743a3bf netdev_err +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x775eaa44 register_qdisc +EXPORT_SYMBOL vmlinux 0x77615e79 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x77826781 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c11337 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x77f30106 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x77f63e49 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt +EXPORT_SYMBOL vmlinux 0x781382f7 pci_pme_active +EXPORT_SYMBOL vmlinux 0x7814ab09 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x7818ff00 proc_douintvec +EXPORT_SYMBOL vmlinux 0x781d7752 vga_switcheroo_init_domain_pm_optimus_hdmi_audio +EXPORT_SYMBOL vmlinux 0x78296f59 ex_handler_clear_fs +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x78465fc2 posix_acl_init +EXPORT_SYMBOL vmlinux 0x7855c583 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x7855ec34 genlmsg_put +EXPORT_SYMBOL vmlinux 0x785c0c5e max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x78604494 vfs_fsync +EXPORT_SYMBOL vmlinux 0x786a4e54 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x786b3043 vm_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x787353aa tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x78752b2c vga_switcheroo_set_dynamic_switch +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x78876486 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a22926 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x78b9ae10 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x78d4eb63 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x78d5fef2 vme_slot_num +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e739aa up +EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method +EXPORT_SYMBOL vmlinux 0x791ed1c9 rename_lock +EXPORT_SYMBOL vmlinux 0x793265ac mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x7938f50b blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x79488303 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x7953529d agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x7953b1a2 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x79745fef sock_rfree +EXPORT_SYMBOL vmlinux 0x799976ed acpi_device_hid +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79e54776 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x79ea6998 netdev_change_features +EXPORT_SYMBOL vmlinux 0x79fbba4b kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x79ffe001 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x7a0d4eff user_path_create +EXPORT_SYMBOL vmlinux 0x7a0effec eth_type_trans +EXPORT_SYMBOL vmlinux 0x7a1dd7a9 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x7a1f652a netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a2c9767 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x7a336545 flush_old_exec +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a4a6d0f read_cache_pages +EXPORT_SYMBOL vmlinux 0x7a55e4db xen_biovec_phys_mergeable +EXPORT_SYMBOL vmlinux 0x7a7f5087 unlock_rename +EXPORT_SYMBOL vmlinux 0x7a82cb47 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7a8e8a08 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa8869f blk_complete_request +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7abe232f fscrypt_fname_usr_to_disk +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7b134ddf acpi_get_name +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b18ba3f mdio_device_free +EXPORT_SYMBOL vmlinux 0x7b1a2fb7 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b2ab65c tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x7b36d386 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7b53e18b cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x7b59b7dc bdi_register_dev +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b6f9c4c generic_write_checks +EXPORT_SYMBOL vmlinux 0x7bcc90a5 km_state_notify +EXPORT_SYMBOL vmlinux 0x7bdca9b9 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x7beeb8d5 generic_writepages +EXPORT_SYMBOL vmlinux 0x7c0951cf should_remove_suid +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c5d75bc mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x7c7d11e3 param_get_string +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7ca62e9d agp_bridge +EXPORT_SYMBOL vmlinux 0x7caf82c2 key_type_keyring +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb9818b clear_inode +EXPORT_SYMBOL vmlinux 0x7ccd0c13 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x7cd33e19 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x7cda568f iterate_supers_type +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce52d0a init_net +EXPORT_SYMBOL vmlinux 0x7ce83365 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf7f890 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x7cf8e0b7 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x7d0d7f65 dma_mark_declared_memory_occupied +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d1a188e i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x7d243ce0 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x7d401f03 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x7d477f5d tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x7d586875 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d90cf42 agp_enable +EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port +EXPORT_SYMBOL vmlinux 0x7d96cea3 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x7d9a6082 pci_find_bus +EXPORT_SYMBOL vmlinux 0x7da56d3a netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x7db62927 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x7db9464b free_netdev +EXPORT_SYMBOL vmlinux 0x7dbc2e57 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0x7dd041ac blk_init_queue +EXPORT_SYMBOL vmlinux 0x7dd6a218 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e1966c0 fence_signal_locked +EXPORT_SYMBOL vmlinux 0x7e2afdf6 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x7e352405 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x7e7fc3fb __wake_up_bit +EXPORT_SYMBOL vmlinux 0x7e973b5b add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x7eb07750 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x7ecb001b __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x7ecd3935 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f05f043 set_wb_congested +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f324f4d try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7f5e72dd sg_miter_next +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f68fed0 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x7f72f09b tcp_splice_read +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f80113d phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x7f841c34 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x7fa554e6 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x7fa9dd12 blkdev_put +EXPORT_SYMBOL vmlinux 0x7fbcdbe6 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x7fbe98ca blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x7fcf06fe xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x7fcfefb8 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fed05df mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x7ff3b187 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x800fb92b full_name_hash +EXPORT_SYMBOL vmlinux 0x802998a5 param_get_ullong +EXPORT_SYMBOL vmlinux 0x802d4775 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x802de92d simple_get_link +EXPORT_SYMBOL vmlinux 0x80481228 set_create_files_as +EXPORT_SYMBOL vmlinux 0x804b0b3b zpool_register_driver +EXPORT_SYMBOL vmlinux 0x8063ac44 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x8063f730 simple_getattr +EXPORT_SYMBOL vmlinux 0x806503ec follow_down +EXPORT_SYMBOL vmlinux 0x807d35d6 d_instantiate +EXPORT_SYMBOL vmlinux 0x808af489 seq_putc +EXPORT_SYMBOL vmlinux 0x809388ca idr_destroy +EXPORT_SYMBOL vmlinux 0x80998d4a skb_find_text +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80cd478a register_netdev +EXPORT_SYMBOL vmlinux 0x80d44dd2 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d9ca85 paravirt_ticketlocks_enabled +EXPORT_SYMBOL vmlinux 0x810519fd hashlen_string +EXPORT_SYMBOL vmlinux 0x81144f9d idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x811b0633 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x81301a1a __ip_select_ident +EXPORT_SYMBOL vmlinux 0x81346dc6 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x813d705e devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x8142e7b8 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x81432aee xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x818a87de keyring_search +EXPORT_SYMBOL vmlinux 0x818a8b45 netdev_state_change +EXPORT_SYMBOL vmlinux 0x8190a3ef audit_log_start +EXPORT_SYMBOL vmlinux 0x819aeb27 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x81b7ed39 d_set_d_op +EXPORT_SYMBOL vmlinux 0x81b949a2 __d_lookup_done +EXPORT_SYMBOL vmlinux 0x81cafafa dump_skip +EXPORT_SYMBOL vmlinux 0x81d4f752 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81f9fb8f inc_node_page_state +EXPORT_SYMBOL vmlinux 0x82038725 cpumask_any_but +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0x82151929 __quota_error +EXPORT_SYMBOL vmlinux 0x821c9fca dm_put_device +EXPORT_SYMBOL vmlinux 0x8235805b memmove +EXPORT_SYMBOL vmlinux 0x823eba21 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x8257bc95 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x82587cf4 request_firmware +EXPORT_SYMBOL vmlinux 0x825a3ab4 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x82661d09 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x826b1318 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x82731ab8 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x827a39af inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x82888a67 console_stop +EXPORT_SYMBOL vmlinux 0x8294269a rt6_lookup +EXPORT_SYMBOL vmlinux 0x82b1f240 bio_add_page +EXPORT_SYMBOL vmlinux 0x82b9d014 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x82c902f1 filp_close +EXPORT_SYMBOL vmlinux 0x82e64c0c read_code +EXPORT_SYMBOL vmlinux 0x830e547b ioremap_prot +EXPORT_SYMBOL vmlinux 0x83215e16 ata_print_version +EXPORT_SYMBOL vmlinux 0x83242147 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x8329e6f0 memset +EXPORT_SYMBOL vmlinux 0x833c03aa acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x8346e79b mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x835e81ca gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x8378f21a phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x837d3a71 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83b19bf3 mdiobus_free +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83cbb07b kernel_connect +EXPORT_SYMBOL vmlinux 0x83d04647 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x83faf3e8 eth_header_cache +EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x840d51a0 km_state_expired +EXPORT_SYMBOL vmlinux 0x8417f512 acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0x8420a7a8 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x84354b87 pci_choose_state +EXPORT_SYMBOL vmlinux 0x84365563 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x8437f44a mpage_readpages +EXPORT_SYMBOL vmlinux 0x84476ef5 sock_create_lite +EXPORT_SYMBOL vmlinux 0x848cb06d serio_unregister_port +EXPORT_SYMBOL vmlinux 0x848e7303 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x84a21626 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x84b2714d vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x84bb036d dev_open +EXPORT_SYMBOL vmlinux 0x84c8ae3c ata_link_printk +EXPORT_SYMBOL vmlinux 0x84d2ac6d atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x84dcd394 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x84e91185 tcp_close +EXPORT_SYMBOL vmlinux 0x84f8f882 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x84f962a5 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x851e6666 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x8524cc6d kernel_bind +EXPORT_SYMBOL vmlinux 0x8526c35a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x85293d0b __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x85381fd8 dump_trace +EXPORT_SYMBOL vmlinux 0x85428135 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x85469afc set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x85603e4b pci_set_vpd_size +EXPORT_SYMBOL vmlinux 0x856053cc key_task_permission +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x8572b1b5 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x857582f7 acpi_enable_all_wakeup_gpes +EXPORT_SYMBOL vmlinux 0x85825898 add_timer +EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x85a7611e lwtunnel_input +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85d472aa queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x860a2724 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x860d4dd4 rwsem_down_write_failed_killable +EXPORT_SYMBOL vmlinux 0x86189c90 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x861e22a4 acpi_map_cpu +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x86457e5e inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x864fd0a7 proc_symlink +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x865d263c tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x867b816c __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86dd37b3 backlight_force_update +EXPORT_SYMBOL vmlinux 0x86e66799 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x86e7fd40 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x86f2b4f0 inet_put_port +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x8746d442 dev_get_stats +EXPORT_SYMBOL vmlinux 0x87477385 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x874d6cfd lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x875182cb arp_tbl +EXPORT_SYMBOL vmlinux 0x875b5190 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x876c21c6 cpu_info +EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write +EXPORT_SYMBOL vmlinux 0x877176f0 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x878cd015 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x879dde92 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x87aaddf8 wrmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x87daba24 write_inode_now +EXPORT_SYMBOL vmlinux 0x87ebd156 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x87f473bd tty_port_destroy +EXPORT_SYMBOL vmlinux 0x87f94003 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x88085639 set_pages_array_wb +EXPORT_SYMBOL vmlinux 0x882efc52 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x8837454c pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x883f5c03 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x8847da05 skb_checksum +EXPORT_SYMBOL vmlinux 0x8853c343 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x885e4e06 elv_add_request +EXPORT_SYMBOL vmlinux 0x8868e60b mdio_device_remove +EXPORT_SYMBOL vmlinux 0x886a7605 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x886b9d3e pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x88728e0f pnp_device_detach +EXPORT_SYMBOL vmlinux 0x88782c9f unregister_console +EXPORT_SYMBOL vmlinux 0x887baa8f md_reload_sb +EXPORT_SYMBOL vmlinux 0x8884d9bb pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x88a1c9b7 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x891fb26a __mutex_init +EXPORT_SYMBOL vmlinux 0x892b26a0 set_memory_nx +EXPORT_SYMBOL vmlinux 0x8930e013 __dst_free +EXPORT_SYMBOL vmlinux 0x894fc798 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89ce20d9 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89df9c81 down_read_trylock +EXPORT_SYMBOL vmlinux 0x89eaeb46 nf_log_unset +EXPORT_SYMBOL vmlinux 0x8a045daa boot_cpu_data +EXPORT_SYMBOL vmlinux 0x8a07fb37 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x8a0b12c6 complete_all +EXPORT_SYMBOL vmlinux 0x8a0f3343 set_page_dirty +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a6944f9 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a80d7a5 acpi_error +EXPORT_SYMBOL vmlinux 0x8a8ca004 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x8a908d1b jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x8a9221d2 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8ab87617 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x8aba68c6 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x8adefff9 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x8ae99469 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0x8af4935f radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x8b169c95 pv_mmu_ops +EXPORT_SYMBOL vmlinux 0x8b18496f __copy_to_user_ll +EXPORT_SYMBOL vmlinux 0x8b23ef84 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x8b2ef258 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b386188 d_exact_alias +EXPORT_SYMBOL vmlinux 0x8b3b44a9 d_add_ci +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b62b536 page_mapping +EXPORT_SYMBOL vmlinux 0x8b75fc8f napi_disable +EXPORT_SYMBOL vmlinux 0x8b78aa18 dma_release_from_coherent +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b848eb4 find_get_entries_tag +EXPORT_SYMBOL vmlinux 0x8b85cf78 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8b9d2d40 consume_skb +EXPORT_SYMBOL vmlinux 0x8b9e6c1f tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x8bb35bb0 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x8bf86e8d tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x8c0b12ed __ht_create_irq +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c301a66 sock_i_ino +EXPORT_SYMBOL vmlinux 0x8c375ac0 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x8c3b6f10 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x8c44f284 dup_iter +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c8aad6b input_allocate_device +EXPORT_SYMBOL vmlinux 0x8c8d0cf7 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x8c9a9a09 rwsem_wake +EXPORT_SYMBOL vmlinux 0x8cc037f5 pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x8cc6b6f3 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8ce71529 to_nd_btt +EXPORT_SYMBOL vmlinux 0x8ce84234 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x8cfbb69e udp_table +EXPORT_SYMBOL vmlinux 0x8d15114a __release_region +EXPORT_SYMBOL vmlinux 0x8d2dd596 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x8d3a8ec5 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d6f81b4 __div64_32 +EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d838d91 ida_remove +EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface +EXPORT_SYMBOL vmlinux 0x8dab18fd netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x8daf8c42 dql_init +EXPORT_SYMBOL vmlinux 0x8db18f25 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x8dc6e564 restore_processor_state +EXPORT_SYMBOL vmlinux 0x8ddeb8e8 sock_wfree +EXPORT_SYMBOL vmlinux 0x8de7f2ba inet_ioctl +EXPORT_SYMBOL vmlinux 0x8dec9688 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x8def4986 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0x8e2ec42a dev_uc_del +EXPORT_SYMBOL vmlinux 0x8e377f26 kill_fasync +EXPORT_SYMBOL vmlinux 0x8e7467f0 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e783a02 secpath_dup +EXPORT_SYMBOL vmlinux 0x8e813b12 posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x8e81b11f mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x8e83f8f3 md_check_recovery +EXPORT_SYMBOL vmlinux 0x8e888ec3 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x8e936bcd __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x8e96fc62 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x8eaa3e1b nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x8eaccb92 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8f1b1c72 nf_log_trace +EXPORT_SYMBOL vmlinux 0x8f1c0f11 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f84406e __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x8f92e4f3 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x8f9946e9 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fa2b759 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x8fa8df76 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x8fb7e547 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x8fd2b0a9 netlink_ack +EXPORT_SYMBOL vmlinux 0x8fdf772a init_timer_key +EXPORT_SYMBOL vmlinux 0x8fe59cef convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0x8feb0629 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x8ff4079b pv_irq_ops +EXPORT_SYMBOL vmlinux 0x8ffc5ac8 tcp_check_req +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x90032b30 efi +EXPORT_SYMBOL vmlinux 0x9013df14 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x9029fed1 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x90475d6c mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x904b4791 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x90695906 vme_free_consistent +EXPORT_SYMBOL vmlinux 0x906dc662 input_inject_event +EXPORT_SYMBOL vmlinux 0x906ed533 proc_create_data +EXPORT_SYMBOL vmlinux 0x908575fe queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0x908831d6 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x908ada5b file_path +EXPORT_SYMBOL vmlinux 0x90a1c83d __ps2_command +EXPORT_SYMBOL vmlinux 0x90b54c5c fb_deferred_io_mmap +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x90d0a767 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x90da4e06 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x90dce9fb generic_getxattr +EXPORT_SYMBOL vmlinux 0x90dfea3d dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x911d7f2a put_disk +EXPORT_SYMBOL vmlinux 0x91326152 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x91568595 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x9162ff73 unlock_page +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x91967e8e xen_selfballoon_init +EXPORT_SYMBOL vmlinux 0x91aaca36 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x91b1d59f ihold +EXPORT_SYMBOL vmlinux 0x91b8191b d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x91d02329 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x91d9c08d netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x9207168d skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x9218cff1 adjust_resource +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x9265774f dst_init +EXPORT_SYMBOL vmlinux 0x92897e3d default_idle +EXPORT_SYMBOL vmlinux 0x928dde76 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x9292c93a isapnp_protocol +EXPORT_SYMBOL vmlinux 0x92a67b1d dump_emit +EXPORT_SYMBOL vmlinux 0x92f6767f lg_local_lock +EXPORT_SYMBOL vmlinux 0x92fa125e invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x93092e0a __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x931c85be tty_vhangup +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x932493a8 iosf_mbi_read +EXPORT_SYMBOL vmlinux 0x932af567 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x932dc63f scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x9333705e bdgrab +EXPORT_SYMBOL vmlinux 0x93603ebf tcp_sendpage +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x938fbd43 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93d2ca5f starget_for_each_device +EXPORT_SYMBOL vmlinux 0x93e537ca i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x93e6c867 phy_driver_register +EXPORT_SYMBOL vmlinux 0x93f08929 skb_trim +EXPORT_SYMBOL vmlinux 0x93f6d42b genphy_config_init +EXPORT_SYMBOL vmlinux 0x93fbc441 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x94201bfc pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x9445cf2d pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x94470f72 dma_mmap_from_coherent +EXPORT_SYMBOL vmlinux 0x946f9ab4 scsi_print_command +EXPORT_SYMBOL vmlinux 0x94804b7d set_pages_array_uc +EXPORT_SYMBOL vmlinux 0x94836db5 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94b35781 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x94bf4a7e scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x94de2892 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x94f77504 alloc_disk_node +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x952e3aa1 udp_gro_complete +EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x9547c2de __sk_dst_check +EXPORT_SYMBOL vmlinux 0x95671ffe alloc_fcdev +EXPORT_SYMBOL vmlinux 0x95830b3d i2c_register_driver +EXPORT_SYMBOL vmlinux 0x959ce7ec tcf_action_exec +EXPORT_SYMBOL vmlinux 0x95bd6e26 acpi_install_sci_handler +EXPORT_SYMBOL vmlinux 0x95c6730b unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x96075136 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x961a9eeb mmc_start_req +EXPORT_SYMBOL vmlinux 0x961c3ee1 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x962b40ba dev_mc_del +EXPORT_SYMBOL vmlinux 0x963d05ef complete_request_key +EXPORT_SYMBOL vmlinux 0x96401ef2 __invalidate_device +EXPORT_SYMBOL vmlinux 0x96407918 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x965b44d7 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x9660d3b0 sync_file_create +EXPORT_SYMBOL vmlinux 0x967cff06 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x969df3e2 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x96bf3556 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x96c50b3a nvm_end_io +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96f20b31 import_iovec +EXPORT_SYMBOL vmlinux 0x96f33d2c wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x97106714 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x97148941 mem_map +EXPORT_SYMBOL vmlinux 0x9714f63e pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x9732dc7e vfs_iter_read +EXPORT_SYMBOL vmlinux 0x9732fb81 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x97363543 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x973d16e4 import_single_range +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x97573929 dev_add_offload +EXPORT_SYMBOL vmlinux 0x97684d9a fb_validate_mode +EXPORT_SYMBOL vmlinux 0x97711b52 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x97746080 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x9796baa2 simple_readpage +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97a75ff7 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x97aab9f4 phy_start +EXPORT_SYMBOL vmlinux 0x97b0e40e skb_put +EXPORT_SYMBOL vmlinux 0x97b70808 __block_write_full_page +EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x97ce85a8 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x97dc452b swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x97de0ddd acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x98108200 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x9878745c _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x987fa22c blk_end_request +EXPORT_SYMBOL vmlinux 0x988b83eb kobject_add +EXPORT_SYMBOL vmlinux 0x988cad29 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x988ed85d set_memory_x +EXPORT_SYMBOL vmlinux 0x98998a8a generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x98aa17c1 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x98b963fc lock_rename +EXPORT_SYMBOL vmlinux 0x98bf94d9 bdi_register +EXPORT_SYMBOL vmlinux 0x98e74d16 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x98fb625a locks_remove_posix +EXPORT_SYMBOL vmlinux 0x98fc627e inode_init_always +EXPORT_SYMBOL vmlinux 0x990815ed radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x991596f5 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x9916b8a4 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x99233c32 cpu_core_map +EXPORT_SYMBOL vmlinux 0x9937ec2e ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99414f41 contig_page_data +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x995295dd kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x995398ec d_genocide +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x996b0f37 soft_cursor +EXPORT_SYMBOL vmlinux 0x9975bc6a agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x998387ba tcp_connect +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99aef969 simple_rmdir +EXPORT_SYMBOL vmlinux 0x99b16f8c release_resource +EXPORT_SYMBOL vmlinux 0x99b65ad8 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x99babd2a jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x99d8530e tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x9a1acaf3 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a28bc65 release_firmware +EXPORT_SYMBOL vmlinux 0x9a6a83f9 cmos_lock +EXPORT_SYMBOL vmlinux 0x9a6d4b19 lwtunnel_output +EXPORT_SYMBOL vmlinux 0x9a7cfa1f seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x9a90644d processors +EXPORT_SYMBOL vmlinux 0x9a94bfe1 agp_put_bridge +EXPORT_SYMBOL vmlinux 0x9aada9fb devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x9acb84a1 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x9acd633a read_cache_page +EXPORT_SYMBOL vmlinux 0x9ae06424 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x9ae42197 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9afcc536 migrate_page +EXPORT_SYMBOL vmlinux 0x9b059a9b locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x9b0a0b50 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x9b189e7c ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b337fb2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b771453 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9b9ec1d8 input_set_capability +EXPORT_SYMBOL vmlinux 0x9ba146bf wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9bd2952f netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9bfc0f31 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0x9c1cfc3c mount_single +EXPORT_SYMBOL vmlinux 0x9c2c7883 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x9c2c944a __copy_from_user_ll_nocache_nozero +EXPORT_SYMBOL vmlinux 0x9c390ca2 get_io_context +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c789b8f backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x9c83116e pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x9c92d94d radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x9c96b4cd stop_tty +EXPORT_SYMBOL vmlinux 0x9ca61711 blk_run_queue +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb8bcb3 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x9cc37c53 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x9cdbda8f __blk_run_queue +EXPORT_SYMBOL vmlinux 0x9ce169af neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x9cf4ea5e __register_nls +EXPORT_SYMBOL vmlinux 0x9cfb501a pci_dev_put +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d33ef5e acpi_enable +EXPORT_SYMBOL vmlinux 0x9d35e374 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x9d4144b8 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x9d49bd64 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x9d5a2d00 f_setown +EXPORT_SYMBOL vmlinux 0x9d6b7d8d block_commit_write +EXPORT_SYMBOL vmlinux 0x9da5786d dev_set_group +EXPORT_SYMBOL vmlinux 0x9db9470a agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x9dc4474f mapping_tagged +EXPORT_SYMBOL vmlinux 0x9dd1b6b9 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e0b6b65 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e1d97af pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x9e363b6b acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0x9e4cfc76 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e552979 gen_pool_create +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e63a7aa __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e7238a7 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e8a53e3 account_page_dirtied +EXPORT_SYMBOL vmlinux 0x9e975c0c vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x9e9eb34c acpi_check_dsm +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea0c91f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x9ea73b00 inet6_offloads +EXPORT_SYMBOL vmlinux 0x9ea8a8ba fddi_type_trans +EXPORT_SYMBOL vmlinux 0x9eaf4194 dev_base_lock +EXPORT_SYMBOL vmlinux 0x9ec7e4fd sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x9ecbecb2 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x9ed6f014 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x9eda4718 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x9ee3bc4f xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x9ee82cd6 uuid_be_index +EXPORT_SYMBOL vmlinux 0x9ef6919d kmap_high +EXPORT_SYMBOL vmlinux 0x9f2593b7 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x9f25b479 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x9f2b2ea1 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x9f37e7b0 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x9f76635e proc_set_size +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fadbaeb fscrypt_process_policy +EXPORT_SYMBOL vmlinux 0x9fb1d0ed uuid_is_valid +EXPORT_SYMBOL vmlinux 0x9fbdb2d3 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x9fc94736 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x9fcef148 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0x9ffe36a3 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa00ebfae sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xa016c5d9 set_trace_device +EXPORT_SYMBOL vmlinux 0xa0421c9d __secpath_destroy +EXPORT_SYMBOL vmlinux 0xa04288e3 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa0744ea9 cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0xa0764fb7 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xa07a9e78 agp_backend_release +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa0ad9fbc dev_get_nest_level +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b71570 seq_read +EXPORT_SYMBOL vmlinux 0xa0c9ba01 input_get_keycode +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0ea0d05 key_unlink +EXPORT_SYMBOL vmlinux 0xa0eb74ed eth_gro_receive +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0ee8e3a kdb_current_task +EXPORT_SYMBOL vmlinux 0xa0f14299 input_free_device +EXPORT_SYMBOL vmlinux 0xa0f8d64b tcf_hash_check +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa1061ef5 make_kuid +EXPORT_SYMBOL vmlinux 0xa106b990 pv_cpu_ops +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts +EXPORT_SYMBOL vmlinux 0xa15abab7 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xa180bb95 tcp_init_sock +EXPORT_SYMBOL vmlinux 0xa19e4d18 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0xa1a95193 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xa1abbb48 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1dcdd4e vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1e9a21f padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xa20366ac lookup_bdev +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa20b9227 revalidate_disk +EXPORT_SYMBOL vmlinux 0xa20c2c07 param_get_charp +EXPORT_SYMBOL vmlinux 0xa21b3b7c blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xa2339df4 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xa23d7291 x86_dma_fallback_dev +EXPORT_SYMBOL vmlinux 0xa2411da8 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xa243aab7 dquot_commit +EXPORT_SYMBOL vmlinux 0xa2578a5e skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa2971d68 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0xa2b8a607 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xa2c60862 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xa2cf3e49 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xa2ec3f1b xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0xa2f6c133 single_open_size +EXPORT_SYMBOL vmlinux 0xa2fa4838 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xa310fea5 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xa31a8d9c radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xa31ad478 __register_binfmt +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa32632f4 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xa3409bb1 mmc_release_host +EXPORT_SYMBOL vmlinux 0xa34bc77b blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xa34fcb2d mempool_create_node +EXPORT_SYMBOL vmlinux 0xa350a8f8 set_memory_array_uc +EXPORT_SYMBOL vmlinux 0xa351d178 finish_no_open +EXPORT_SYMBOL vmlinux 0xa356f365 disk_stack_limits +EXPORT_SYMBOL vmlinux 0xa35fe34d acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0xa3787d9c bio_clone_bioset +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa3a73921 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xa3af8e01 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xa3c02a29 blk_get_request +EXPORT_SYMBOL vmlinux 0xa3c12e83 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0xa3cedcef xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xa3d93947 setattr_copy +EXPORT_SYMBOL vmlinux 0xa3dcbfd3 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0xa3f2455a blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0xa423eaf1 tso_build_data +EXPORT_SYMBOL vmlinux 0xa43033c1 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa43ef4e2 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xa43f3477 acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0xa4474512 scsi_unregister +EXPORT_SYMBOL vmlinux 0xa451bbdb noop_fsync +EXPORT_SYMBOL vmlinux 0xa4524713 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xa465686a phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xa46a4fd2 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa4743760 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xa478b7c7 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xa48e902a uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xa4b0a5b0 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xa4b37e46 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4bb3b5e param_ops_bool +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4ea1530 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xa4eb9d62 padata_do_serial +EXPORT_SYMBOL vmlinux 0xa4eda256 unregister_netdev +EXPORT_SYMBOL vmlinux 0xa4ef58fe inode_add_bytes +EXPORT_SYMBOL vmlinux 0xa51448e9 fb_show_logo +EXPORT_SYMBOL vmlinux 0xa51cdfe8 __FIXADDR_TOP +EXPORT_SYMBOL vmlinux 0xa51db5ea dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xa53a6a7c rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xa5490a26 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa576b11c __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xa57a62d7 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xa5803bb0 param_set_uint +EXPORT_SYMBOL vmlinux 0xa5939869 netdev_features_change +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a13bf4 bio_init +EXPORT_SYMBOL vmlinux 0xa5b5e28f pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xa5bd8e24 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0xa5c89eaf skb_split +EXPORT_SYMBOL vmlinux 0xa5c9f588 elevator_init +EXPORT_SYMBOL vmlinux 0xa5e031b9 devm_memremap +EXPORT_SYMBOL vmlinux 0xa5e75e9a acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xa60ddbb5 fb_blank +EXPORT_SYMBOL vmlinux 0xa616fd23 dentry_open +EXPORT_SYMBOL vmlinux 0xa62af03f pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xa62e6e4f acpi_get_table_with_size +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa646659a ps2_command +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa6ab71f6 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xa6bbd805 __wake_up +EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error +EXPORT_SYMBOL vmlinux 0xa6c279dc jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xa6c90484 i2c_verify_client +EXPORT_SYMBOL vmlinux 0xa6eb884c vme_bus_type +EXPORT_SYMBOL vmlinux 0xa6ff3599 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa71b96f8 reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa741c08b pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xa74d7445 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xa765fe49 iterate_dir +EXPORT_SYMBOL vmlinux 0xa77b6bd3 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xa788f1a0 i8253_lock +EXPORT_SYMBOL vmlinux 0xa78cd393 udp_prot +EXPORT_SYMBOL vmlinux 0xa7aa24cd tcp_conn_request +EXPORT_SYMBOL vmlinux 0xa7c5a154 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xa7cf6c2f atomic64_dec_return_cx8 +EXPORT_SYMBOL vmlinux 0xa808b57a serio_interrupt +EXPORT_SYMBOL vmlinux 0xa809d1d0 inet_gro_receive +EXPORT_SYMBOL vmlinux 0xa80b665d blk_fetch_request +EXPORT_SYMBOL vmlinux 0xa8409710 fget +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa84ede57 __serio_register_driver +EXPORT_SYMBOL vmlinux 0xa86652cb inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0xa86f2079 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa878d965 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xa87acc61 blk_get_queue +EXPORT_SYMBOL vmlinux 0xa87f34f0 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0xa88fcf0f generic_setlease +EXPORT_SYMBOL vmlinux 0xa89be343 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xa8ba3fbb get_agp_version +EXPORT_SYMBOL vmlinux 0xa8cd0af0 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xa8ce3e7f phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xa8cf4a56 max8925_reg_read +EXPORT_SYMBOL vmlinux 0xa8f999ae genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa9143f07 __mdiobus_register +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa91a0df2 try_module_get +EXPORT_SYMBOL vmlinux 0xa91e49bb skb_seq_read +EXPORT_SYMBOL vmlinux 0xa91e832e iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xa9276664 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xa95d6a24 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa983e0b8 __breadahead +EXPORT_SYMBOL vmlinux 0xa98df005 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xa992940c ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0xa9b1f639 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9d3d8c3 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xa9efb3fd simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xa9f4d0ee lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0xaa322b20 md_update_sb +EXPORT_SYMBOL vmlinux 0xaa55452a jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xaa5bd08d __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa7acd77 inet6_protos +EXPORT_SYMBOL vmlinux 0xaa8fea18 acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad839fd skb_copy +EXPORT_SYMBOL vmlinux 0xaae6cc60 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab07fb66 get_task_io_context +EXPORT_SYMBOL vmlinux 0xab0b1faa pci_bus_get +EXPORT_SYMBOL vmlinux 0xab0d8d8e netpoll_print_options +EXPORT_SYMBOL vmlinux 0xab264fde chacha20_block +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab4126de jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xab551fad acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc +EXPORT_SYMBOL vmlinux 0xab694444 bsearch +EXPORT_SYMBOL vmlinux 0xab6b3f18 blk_start_queue +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab73083e inode_set_flags +EXPORT_SYMBOL vmlinux 0xab770678 rdmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab886956 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabddc3ab scsi_host_set_state +EXPORT_SYMBOL vmlinux 0xac0662bd sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac1d93cb blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac3edef6 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xac5114db blk_peek_request +EXPORT_SYMBOL vmlinux 0xac587639 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xaca1aaef sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacaedff5 nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0xacb61fe5 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xacb99769 ida_destroy +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd28075 cdrom_open +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacf0820a __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacfcc9d1 file_remove_privs +EXPORT_SYMBOL vmlinux 0xacfda3c2 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad26e808 tcp_poll +EXPORT_SYMBOL vmlinux 0xad30ebc2 sock_no_bind +EXPORT_SYMBOL vmlinux 0xad332eee devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xad698f77 dqstats +EXPORT_SYMBOL vmlinux 0xad69a62a devm_request_resource +EXPORT_SYMBOL vmlinux 0xad6e4bb6 mempool_free +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xada2d55d fget_raw +EXPORT_SYMBOL vmlinux 0xadab5d81 dec_node_page_state +EXPORT_SYMBOL vmlinux 0xadbc342e pci_scan_slot +EXPORT_SYMBOL vmlinux 0xadc714e9 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xadf73c04 filemap_fault +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae044bc7 panic_notifier_list +EXPORT_SYMBOL vmlinux 0xae273a7a bitmap_unplug +EXPORT_SYMBOL vmlinux 0xae2bfeee blk_recount_segments +EXPORT_SYMBOL vmlinux 0xae4fc132 phy_resume +EXPORT_SYMBOL vmlinux 0xae62348b mpage_readpage +EXPORT_SYMBOL vmlinux 0xae66d03d __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xae904969 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xaeab2698 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaed686e7 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xaed71880 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xaf058266 phy_suspend +EXPORT_SYMBOL vmlinux 0xaf073f3c scsi_ioctl +EXPORT_SYMBOL vmlinux 0xaf182cad nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf4b1540 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xaf51bb38 input_event +EXPORT_SYMBOL vmlinux 0xaf611eac amd_nb_misc_ids +EXPORT_SYMBOL vmlinux 0xafd30ac5 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xafead875 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xb0007fbb wireless_spy_update +EXPORT_SYMBOL vmlinux 0xb00a928f input_unregister_handle +EXPORT_SYMBOL vmlinux 0xb01b1db8 intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0xb01ccbeb i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0xb0254999 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xb02ee0a3 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xb03cc06d blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0xb0469ad0 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xb04cd59d devm_release_resource +EXPORT_SYMBOL vmlinux 0xb0542c4f netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb07a3a39 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xb08e84b1 x86_hyper_ms_hyperv +EXPORT_SYMBOL vmlinux 0xb0986e19 blk_delay_queue +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0bf163e mdio_device_create +EXPORT_SYMBOL vmlinux 0xb0ce8405 init_task +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0ea1abd __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xb0eb41ff iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0xb0f8cb7e dquot_initialize +EXPORT_SYMBOL vmlinux 0xb106b4d9 skb_pad +EXPORT_SYMBOL vmlinux 0xb115dec6 wait_iff_congested +EXPORT_SYMBOL vmlinux 0xb11ec475 max8998_read_reg +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb141e865 ex_handler_rdmsr_unsafe +EXPORT_SYMBOL vmlinux 0xb144f605 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xb14ae018 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xb1574e40 drop_super +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb1652d2f __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xb16aa574 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xb187b3a8 lg_lock_init +EXPORT_SYMBOL vmlinux 0xb1a62a9d nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xb1aae56c kernel_setsockopt +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1cfad22 rdmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xb1d6992e i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xb1d87dd3 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xb1d9bd2e netif_carrier_off +EXPORT_SYMBOL vmlinux 0xb1ffb3da netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb22700b4 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xb23a827e kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0xb23fdcd5 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb26e6b53 intel_gtt_insert_page +EXPORT_SYMBOL vmlinux 0xb27a624c key_validate +EXPORT_SYMBOL vmlinux 0xb2bbe671 generic_write_end +EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on +EXPORT_SYMBOL vmlinux 0xb2d5a552 complete +EXPORT_SYMBOL vmlinux 0xb2e99aaa scsi_init_io +EXPORT_SYMBOL vmlinux 0xb2ea9a44 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove +EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xb3437888 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit +EXPORT_SYMBOL vmlinux 0xb358469d xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xb368fb8b fscrypt_initialize +EXPORT_SYMBOL vmlinux 0xb38bcda8 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xb39774ce blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0xb3988539 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xb3a52a13 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xb3a7c188 scsi_host_put +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3d55aa1 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xb3e0590d acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0xb3ee9a3d proc_mkdir +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb41399a8 inet_getname +EXPORT_SYMBOL vmlinux 0xb41e04d6 put_tty_driver +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4328a6f blk_queue_split +EXPORT_SYMBOL vmlinux 0xb4390f9a mcount +EXPORT_SYMBOL vmlinux 0xb443cda4 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb45578b8 memscan +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb48a435f clkdev_alloc +EXPORT_SYMBOL vmlinux 0xb49438b8 simple_link +EXPORT_SYMBOL vmlinux 0xb4a49db6 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0xb4ab4488 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xb4be5f52 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xb4c1a0e3 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xb4c33c48 rfkill_alloc +EXPORT_SYMBOL vmlinux 0xb4cd1c4c nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xb4d4438d vme_irq_request +EXPORT_SYMBOL vmlinux 0xb4e5ccbe crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xb4e97ed1 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xb4fc5b8e nvm_dev_factory +EXPORT_SYMBOL vmlinux 0xb504c2be neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xb5229392 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb5369562 __devm_release_region +EXPORT_SYMBOL vmlinux 0xb53d8a01 pci_select_bars +EXPORT_SYMBOL vmlinux 0xb54ec48c netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xb55e0889 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0xb56ac747 bio_endio +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb580264e mmc_add_host +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5cc183e forget_cached_acl +EXPORT_SYMBOL vmlinux 0xb5dbd16a __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xb5de57d1 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xb5eff6c1 blk_start_queue_async +EXPORT_SYMBOL vmlinux 0xb5f27472 register_filesystem +EXPORT_SYMBOL vmlinux 0xb61c702d abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0xb6207e24 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb649a1c1 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xb64d7acc xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xb66aef44 arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6793767 may_umount +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb692fc2a pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6b9a2dc from_kuid +EXPORT_SYMBOL vmlinux 0xb6c608cc kern_path_create +EXPORT_SYMBOL vmlinux 0xb6caa2bc neigh_lookup +EXPORT_SYMBOL vmlinux 0xb6d62a45 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xb6dd6e8e swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0xb6e41883 memcmp +EXPORT_SYMBOL vmlinux 0xb6ea8941 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xb6ed1e53 strncpy +EXPORT_SYMBOL vmlinux 0xb6ff701d gen_pool_alloc_algo +EXPORT_SYMBOL vmlinux 0xb70e7249 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xb729f4f7 dma_async_device_register +EXPORT_SYMBOL vmlinux 0xb74731e6 ip_getsockopt +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb7504edd netdev_warn +EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb77b4750 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xb77cc69e vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0xb78c3eb5 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0xb7a5b43a mount_ns +EXPORT_SYMBOL vmlinux 0xb7bb3e83 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7c6e7a0 remove_arg_zero +EXPORT_SYMBOL vmlinux 0xb7c95b90 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0xb7d66181 param_set_ullong +EXPORT_SYMBOL vmlinux 0xb7f10789 inet6_add_offload +EXPORT_SYMBOL vmlinux 0xb7f53007 unregister_key_type +EXPORT_SYMBOL vmlinux 0xb7f55ecc atomic64_add_return_cx8 +EXPORT_SYMBOL vmlinux 0xb7fc1dec dst_discard_out +EXPORT_SYMBOL vmlinux 0xb7fc4cf3 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xb80dd2c8 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb82a94fb param_ops_string +EXPORT_SYMBOL vmlinux 0xb8370414 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xb84ba913 genphy_resume +EXPORT_SYMBOL vmlinux 0xb85756a2 blk_get_backing_dev_info +EXPORT_SYMBOL vmlinux 0xb86dc227 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb8854ac8 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xb893c420 scmd_printk +EXPORT_SYMBOL vmlinux 0xb89b4494 devm_clk_get +EXPORT_SYMBOL vmlinux 0xb89b6f52 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xb8a5491d xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b6a76c __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb8eec98b del_timer +EXPORT_SYMBOL vmlinux 0xb8f02d8b dput +EXPORT_SYMBOL vmlinux 0xb8fdcd10 mempool_resize +EXPORT_SYMBOL vmlinux 0xb907843f tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xb90fd3e5 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0xb915441f kill_bdev +EXPORT_SYMBOL vmlinux 0xb91696ca devm_iounmap +EXPORT_SYMBOL vmlinux 0xb91c920d sk_capable +EXPORT_SYMBOL vmlinux 0xb92fddeb tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xb93621db tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xb93d40de ip_do_fragment +EXPORT_SYMBOL vmlinux 0xb94e2e43 agp_create_memory +EXPORT_SYMBOL vmlinux 0xb96c795a tty_unregister_device +EXPORT_SYMBOL vmlinux 0xb9919007 skb_clone +EXPORT_SYMBOL vmlinux 0xb99bd717 filemap_map_pages +EXPORT_SYMBOL vmlinux 0xb9b293f4 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xb9b91e07 ppp_dev_name +EXPORT_SYMBOL vmlinux 0xb9c78b50 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0xb9e7a5ff copy_to_iter +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9eac13b unregister_filesystem +EXPORT_SYMBOL vmlinux 0xb9f66773 nvm_bb_tbl_fold +EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read +EXPORT_SYMBOL vmlinux 0xba2e2b55 drop_nlink +EXPORT_SYMBOL vmlinux 0xba2e8a57 get_task_exe_file +EXPORT_SYMBOL vmlinux 0xba3e52b7 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba50a0a4 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xba63e27a swake_up_all +EXPORT_SYMBOL vmlinux 0xba7644d5 param_set_invbool +EXPORT_SYMBOL vmlinux 0xba86b507 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xba8c9a95 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0xba90527b pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xba91e685 memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0xba9c750b submit_bio +EXPORT_SYMBOL vmlinux 0xbaab63ea phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0xbade8b27 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb08a1fc flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xbb1ca9c8 pci_platform_rom +EXPORT_SYMBOL vmlinux 0xbb2a7765 try_to_release_page +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb3cdd70 nmi_panic +EXPORT_SYMBOL vmlinux 0xbb4a819e vme_register_driver +EXPORT_SYMBOL vmlinux 0xbb4c0ff2 set_pages_wb +EXPORT_SYMBOL vmlinux 0xbb50cf26 kobject_del +EXPORT_SYMBOL vmlinux 0xbb53bd3c sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xbb58c82a pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb62e535 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xbb7c60f1 d_lookup +EXPORT_SYMBOL vmlinux 0xbb7e8bbe inode_get_bytes +EXPORT_SYMBOL vmlinux 0xbb7e9887 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xbb7f54dd mmc_fixup_device +EXPORT_SYMBOL vmlinux 0xbb8e169a vga_switcheroo_handler_flags +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbb994cc6 devm_clk_put +EXPORT_SYMBOL vmlinux 0xbba70a2d _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xbbadb8b0 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xbbbf3f05 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xbbe50ee0 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xbbeb1ec6 ioremap_wt +EXPORT_SYMBOL vmlinux 0xbbecd4f0 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xbbef602b inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xbbfc6d5c i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xbbfdfa0b pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xbc000732 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0xbc01a4eb pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xbc07e393 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xbc13652f dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc285fb1 free_user_ns +EXPORT_SYMBOL vmlinux 0xbc30f099 pci_bus_type +EXPORT_SYMBOL vmlinux 0xbc435770 dump_stack +EXPORT_SYMBOL vmlinux 0xbc4d2116 dev_printk +EXPORT_SYMBOL vmlinux 0xbc5faac8 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0xbc640293 up_read +EXPORT_SYMBOL vmlinux 0xbc864fa3 mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcc978a7 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xbcddada9 abort_creds +EXPORT_SYMBOL vmlinux 0xbcea0b75 tty_port_put +EXPORT_SYMBOL vmlinux 0xbceb3525 set_pages_array_wc +EXPORT_SYMBOL vmlinux 0xbd175a00 param_ops_ushort +EXPORT_SYMBOL vmlinux 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0xbd22ffcb sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xbd304b58 dquot_quota_off +EXPORT_SYMBOL vmlinux 0xbd489023 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xbd495f6b skb_insert +EXPORT_SYMBOL vmlinux 0xbd4d5096 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xbd67e1d5 dma_alloc_from_coherent +EXPORT_SYMBOL vmlinux 0xbd710539 tcf_em_register +EXPORT_SYMBOL vmlinux 0xbd75c687 neigh_table_clear +EXPORT_SYMBOL vmlinux 0xbd7936bd finish_swait +EXPORT_SYMBOL vmlinux 0xbd8a1dd8 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xbd8e1823 nvm_register_tgt_type +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xbdb97eae sock_register +EXPORT_SYMBOL vmlinux 0xbdda710f key_alloc +EXPORT_SYMBOL vmlinux 0xbdfeabf6 vga_tryget +EXPORT_SYMBOL vmlinux 0xbe0908ba param_get_invbool +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe2948c4 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0xbe2abdf1 security_path_rename +EXPORT_SYMBOL vmlinux 0xbe30c068 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xbe50a2b3 pskb_extract +EXPORT_SYMBOL vmlinux 0xbe555b6c swake_up +EXPORT_SYMBOL vmlinux 0xbe65c1bf __inet_hash +EXPORT_SYMBOL vmlinux 0xbe6ada7d uuid_le_index +EXPORT_SYMBOL vmlinux 0xbe82386b no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0xbe8c37d9 intel_scu_ipc_simple_command +EXPORT_SYMBOL vmlinux 0xbe982eeb genl_notify +EXPORT_SYMBOL vmlinux 0xbeba2de1 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xbec30d05 x86_match_cpu +EXPORT_SYMBOL vmlinux 0xbecdc978 fscrypt_pullback_bio_page +EXPORT_SYMBOL vmlinux 0xbedc27bf inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xbee7a577 seq_release +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf0d37b6 fb_set_var +EXPORT_SYMBOL vmlinux 0xbf1cae5f generic_listxattr +EXPORT_SYMBOL vmlinux 0xbf4a0304 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0xbf71c1c6 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf825cd8 ex_handler_ext +EXPORT_SYMBOL vmlinux 0xbf883a51 __napi_complete +EXPORT_SYMBOL vmlinux 0xbf8b39e9 isapnp_present +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfb5e6a9 pnp_possible_config +EXPORT_SYMBOL vmlinux 0xbfbaae9a inet6_ioctl +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfc4cca8 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xbfd19a3e input_flush_device +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff2535c vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xbff47ea7 load_nls +EXPORT_SYMBOL vmlinux 0xc01e0c0a __frontswap_store +EXPORT_SYMBOL vmlinux 0xc01eed33 __copy_from_user_ll_nozero +EXPORT_SYMBOL vmlinux 0xc0446655 _dev_info +EXPORT_SYMBOL vmlinux 0xc049ea36 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xc056e3ca bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xc05e355f idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xc073fe55 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc088be43 cad_pid +EXPORT_SYMBOL vmlinux 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL vmlinux 0xc09725e5 sock_wmalloc +EXPORT_SYMBOL vmlinux 0xc09e79cf mmc_align_data_size +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0bdce02 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0xc0bf866f vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0xc0cd6c54 md_write_start +EXPORT_SYMBOL vmlinux 0xc0e74f9e __frontswap_test +EXPORT_SYMBOL vmlinux 0xc0e9f5ba neigh_app_ns +EXPORT_SYMBOL vmlinux 0xc0f28381 follow_up +EXPORT_SYMBOL vmlinux 0xc119d927 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc1302d1c cdev_del +EXPORT_SYMBOL vmlinux 0xc14fecf6 phy_device_remove +EXPORT_SYMBOL vmlinux 0xc16a42a7 __sb_end_write +EXPORT_SYMBOL vmlinux 0xc16a6b60 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xc1727077 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xc17c7f8a blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xc198f27f tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xc1a8421a cdrom_media_changed +EXPORT_SYMBOL vmlinux 0xc1b82674 __bread_gfp +EXPORT_SYMBOL vmlinux 0xc1b82f67 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xc1c96d8c nf_register_hooks +EXPORT_SYMBOL vmlinux 0xc1ce1955 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1f687b6 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xc2070125 sock_alloc_file +EXPORT_SYMBOL vmlinux 0xc20cdcf2 fasync_helper +EXPORT_SYMBOL vmlinux 0xc2146f1c udp_ioctl +EXPORT_SYMBOL vmlinux 0xc22407a9 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0xc228bf14 pci_iomap +EXPORT_SYMBOL vmlinux 0xc23d4116 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc25fbb4c nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0xc263875b netif_rx +EXPORT_SYMBOL vmlinux 0xc2671fad sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xc280a525 __copy_from_user_ll +EXPORT_SYMBOL vmlinux 0xc29db898 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xc2c619c6 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0xc2c85935 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xc2c9bfc0 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xc2d0512c cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc +EXPORT_SYMBOL vmlinux 0xc2dfbfcd dquot_get_state +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc30359bc alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xc31a80ca jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xc327a16f netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xc34d38b1 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xc3504f71 __pagevec_release +EXPORT_SYMBOL vmlinux 0xc364ae22 iomem_resource +EXPORT_SYMBOL vmlinux 0xc391e02b vme_init_bridge +EXPORT_SYMBOL vmlinux 0xc3969971 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3ba926d zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3e7f830 pci_write_vpd +EXPORT_SYMBOL vmlinux 0xc3fa6a59 memchr +EXPORT_SYMBOL vmlinux 0xc400f24e __brelse +EXPORT_SYMBOL vmlinux 0xc41e764b simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xc41f0516 node_states +EXPORT_SYMBOL vmlinux 0xc4201c37 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xc42767d8 blk_rq_init +EXPORT_SYMBOL vmlinux 0xc435ed50 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xc4516135 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xc4750c3c param_set_byte +EXPORT_SYMBOL vmlinux 0xc486846f pnp_start_dev +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4d3e563 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xc4d66126 filp_open +EXPORT_SYMBOL vmlinux 0xc4f40d45 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xc4fdff9d path_nosuid +EXPORT_SYMBOL vmlinux 0xc5008c9a inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xc5077c2c padata_do_parallel +EXPORT_SYMBOL vmlinux 0xc50bcf4f sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xc5137552 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0xc515cb6c locks_copy_lock +EXPORT_SYMBOL vmlinux 0xc51b9ea8 neigh_seq_start +EXPORT_SYMBOL vmlinux 0xc529ab51 __nd_iostat_start +EXPORT_SYMBOL vmlinux 0xc52e8511 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xc537cd51 __nd_driver_register +EXPORT_SYMBOL vmlinux 0xc538880c nvm_register_mgr +EXPORT_SYMBOL vmlinux 0xc5455279 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xc5462085 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc558243f nvm_unregister_tgt_type +EXPORT_SYMBOL vmlinux 0xc559194b send_sig_info +EXPORT_SYMBOL vmlinux 0xc56b7aab bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0xc5823eda mmc_remove_host +EXPORT_SYMBOL vmlinux 0xc58597b0 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5edca7f console_start +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc64bee09 iov_iter_init +EXPORT_SYMBOL vmlinux 0xc6520602 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc67a09fe intel_gtt_get +EXPORT_SYMBOL vmlinux 0xc67a464e kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xc6956b7a dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0xc6b23120 intel_scu_ipc_iowrite16 +EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xc6b8b815 mpage_writepage +EXPORT_SYMBOL vmlinux 0xc6c96bf3 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc7084d7b cfb_imageblit +EXPORT_SYMBOL vmlinux 0xc71b5890 radix_tree_delete +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc73a8771 do_trace_read_msr +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc75df6de fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xc768de19 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc78bd384 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7c09bfd ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc8276a79 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xc82b4311 param_get_long +EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape +EXPORT_SYMBOL vmlinux 0xc836629e input_unregister_device +EXPORT_SYMBOL vmlinux 0xc847e3db dev_change_flags +EXPORT_SYMBOL vmlinux 0xc8481d20 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xc8492294 key_link +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc8576156 clocksource_unregister +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8804400 gnttab_free_pages +EXPORT_SYMBOL vmlinux 0xc887bf91 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xc88ed09a dma_sync_wait +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc898d913 page_waitqueue +EXPORT_SYMBOL vmlinux 0xc8a5159c iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xc8a82fdd vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8b73cae gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xc8c4286a msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0xc8c6dcc9 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0xc8c9fc3c pci_get_subsys +EXPORT_SYMBOL vmlinux 0xc8d48056 tcf_register_action +EXPORT_SYMBOL vmlinux 0xc8e750aa xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xc8fd1dfe mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc912040d iget5_locked +EXPORT_SYMBOL vmlinux 0xc92cfc53 dev_mc_flush +EXPORT_SYMBOL vmlinux 0xc932ade3 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0xc9549ebb twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc975db2f kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc98c6303 nf_register_hook +EXPORT_SYMBOL vmlinux 0xc999b9e8 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc99f6aae dma_spin_lock +EXPORT_SYMBOL vmlinux 0xc9a5557e set_pages_uc +EXPORT_SYMBOL vmlinux 0xc9c2ddfa register_xen_selfballooning +EXPORT_SYMBOL vmlinux 0xc9d358a1 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0xc9fef317 add_wait_queue +EXPORT_SYMBOL vmlinux 0xca0c4c59 __frontswap_load +EXPORT_SYMBOL vmlinux 0xca10d107 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xca4e88cc inet_shutdown +EXPORT_SYMBOL vmlinux 0xca607041 vga_switcheroo_client_probe_defer +EXPORT_SYMBOL vmlinux 0xca61f8a5 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xca69ff3f md_write_end +EXPORT_SYMBOL vmlinux 0xca842f49 pci_iomap_range +EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xca8d25cb blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcaafdf35 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xcab67745 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xcae80339 generic_update_time +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb205c3d simple_nosetlease +EXPORT_SYMBOL vmlinux 0xcb417d61 simple_fill_super +EXPORT_SYMBOL vmlinux 0xcb5e7019 page_readlink +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb74c9eb udp_gro_receive +EXPORT_SYMBOL vmlinux 0xcb7bc360 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xcb97893c udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xcbaa5ff4 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0xcbb9d17d tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xcbbd1824 __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc04c43 deactivate_super +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbd5e649 dev_load +EXPORT_SYMBOL vmlinux 0xcbde2bc5 end_page_writeback +EXPORT_SYMBOL vmlinux 0xcbde717d give_up_console +EXPORT_SYMBOL vmlinux 0xcbe7a874 tcp_prot +EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcbf2581d blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xcbf57be6 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xcc0260ae __genl_register_family +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc4d1bfb atomic64_read_cx8 +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc58a2ea elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc6a09b5 alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xcc73bb92 bioset_create +EXPORT_SYMBOL vmlinux 0xcc82add3 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xcc838223 __pte2cachemode_tbl +EXPORT_SYMBOL vmlinux 0xcc8d3f4f acpi_os_execute +EXPORT_SYMBOL vmlinux 0xcc8eea0d send_sig +EXPORT_SYMBOL vmlinux 0xcc8f4375 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xcca8cf64 ns_capable +EXPORT_SYMBOL vmlinux 0xccaa4e67 x86_hyper +EXPORT_SYMBOL vmlinux 0xccb3d59b sg_miter_skip +EXPORT_SYMBOL vmlinux 0xccbfb029 fence_default_wait +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xcceae8c9 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xccfa1e2f nd_device_register +EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xcd05de44 kernel_listen +EXPORT_SYMBOL vmlinux 0xcd13dc7c ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xcd151a52 truncate_setsize +EXPORT_SYMBOL vmlinux 0xcd163caa dcb_setapp +EXPORT_SYMBOL vmlinux 0xcd1eaee4 nvm_get_bb_tbl +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd290dba sk_mc_loop +EXPORT_SYMBOL vmlinux 0xcd461876 nf_log_set +EXPORT_SYMBOL vmlinux 0xcd5fd900 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xcd610197 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xcd62e080 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0xcd63e9b6 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xcd66fe11 agp_free_memory +EXPORT_SYMBOL vmlinux 0xcd9e2ccb kernel_write +EXPORT_SYMBOL vmlinux 0xcda60c91 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0xcdc3502e blk_init_queue_node +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdf43788 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xcdfbc9f5 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0xce18c4f4 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2c45cc wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xce2cf047 tc_classify +EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xce55d5e2 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce5c3c91 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0xce62759b alloc_file +EXPORT_SYMBOL vmlinux 0xce65d059 pcim_enable_device +EXPORT_SYMBOL vmlinux 0xce72ffd9 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xce7bfe70 vm_brk +EXPORT_SYMBOL vmlinux 0xce87757f pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xce9e41e9 lockref_get +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceb4f05f scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xcec45708 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xcedfc84d lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xcee1d1eb iptun_encaps +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xceff637c param_set_long +EXPORT_SYMBOL vmlinux 0xcf2b68cc mount_pseudo +EXPORT_SYMBOL vmlinux 0xcf42c1af scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xcf53fccd sock_release +EXPORT_SYMBOL vmlinux 0xcf555646 dcache_dir_open +EXPORT_SYMBOL vmlinux 0xcf672eb2 bioset_free +EXPORT_SYMBOL vmlinux 0xcf6cfe1f msrs_free +EXPORT_SYMBOL vmlinux 0xcf7cf855 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xcf8c339f xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xcfe05d4d register_kmmio_probe +EXPORT_SYMBOL vmlinux 0xcfe90cde __kfree_skb +EXPORT_SYMBOL vmlinux 0xcff2f563 fb_set_cmap +EXPORT_SYMBOL vmlinux 0xcffa4361 iunique +EXPORT_SYMBOL vmlinux 0xd00d8d78 bdevname +EXPORT_SYMBOL vmlinux 0xd00eb692 up_write +EXPORT_SYMBOL vmlinux 0xd0166b83 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xd01c285e kill_pgrp +EXPORT_SYMBOL vmlinux 0xd0293c17 loop_register_transfer +EXPORT_SYMBOL vmlinux 0xd02f7566 serio_bus +EXPORT_SYMBOL vmlinux 0xd04d43a3 block_truncate_page +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd082aacb devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xd09aaaf3 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a8b433 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0c9dd7e param_ops_uint +EXPORT_SYMBOL vmlinux 0xd0cc0d55 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xd0d4c556 elevator_exit +EXPORT_SYMBOL vmlinux 0xd0d65963 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xd0d8621b strlen +EXPORT_SYMBOL vmlinux 0xd0e340ba md_flush_request +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fe2aae dentry_path_raw +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd10af40a sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0xd122a4f1 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xd1265551 zero_fill_bio +EXPORT_SYMBOL vmlinux 0xd1277327 gen_pool_free +EXPORT_SYMBOL vmlinux 0xd1315f11 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xd13f7095 netdev_all_lower_get_next_rcu +EXPORT_SYMBOL vmlinux 0xd1424b38 input_set_keycode +EXPORT_SYMBOL vmlinux 0xd1531a46 mntput +EXPORT_SYMBOL vmlinux 0xd15f3e70 bio_map_kern +EXPORT_SYMBOL vmlinux 0xd16af92e dquot_file_open +EXPORT_SYMBOL vmlinux 0xd175afdf nf_reinject +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd1a92e6b freeze_bdev +EXPORT_SYMBOL vmlinux 0xd1b4673a phy_attached_info +EXPORT_SYMBOL vmlinux 0xd1b8b4be simple_setattr +EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xd1d2f7ed inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xd1d48112 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1e334d8 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0xd1e90f7a try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xd1eaef9c vga_get +EXPORT_SYMBOL vmlinux 0xd1eeacb7 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd2064e2f idr_replace +EXPORT_SYMBOL vmlinux 0xd20f3020 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xd21bf2fe __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xd2313c45 registered_fb +EXPORT_SYMBOL vmlinux 0xd23ff63b tcf_hash_search +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd2603eb9 default_llseek +EXPORT_SYMBOL vmlinux 0xd2767287 pipe_lock +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd294b48b netdev_crit +EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class +EXPORT_SYMBOL vmlinux 0xd2b5358a devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xd2bad90f mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xd2cdfb13 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0xd2ce170a tty_port_close_end +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e6a582 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xd348864c fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xd357b701 fs_bio_set +EXPORT_SYMBOL vmlinux 0xd35d9533 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xd35f75a1 match_string +EXPORT_SYMBOL vmlinux 0xd376fce6 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0xd38b46a9 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xd39931ee fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3e7ec53 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xd426e667 release_sock +EXPORT_SYMBOL vmlinux 0xd42d0c1d jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xd4312b49 i2c_use_client +EXPORT_SYMBOL vmlinux 0xd4799424 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd4a92556 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xd4acf40b param_set_bool +EXPORT_SYMBOL vmlinux 0xd4ba94e1 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data +EXPORT_SYMBOL vmlinux 0xd51d0938 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd53754b2 con_is_bound +EXPORT_SYMBOL vmlinux 0xd559b6e2 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xd55cf839 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xd5678568 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xd5688abf km_policy_notify +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd5c1216d generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xd5e488f2 block_read_full_page +EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xd5fee345 ipv4_specific +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd60f486d udp_sendmsg +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd624c75e search_binary_handler +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd66c0595 clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0xd67515ab qdisc_destroy +EXPORT_SYMBOL vmlinux 0xd67a478b pci_reenable_device +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68e1d1b _raw_read_trylock +EXPORT_SYMBOL vmlinux 0xd68e4fe6 alloc_fddidev +EXPORT_SYMBOL vmlinux 0xd693ded9 param_get_bool +EXPORT_SYMBOL vmlinux 0xd69ef97d posix_acl_alloc +EXPORT_SYMBOL vmlinux 0xd6b16914 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6bc7113 scsi_host_get +EXPORT_SYMBOL vmlinux 0xd6c5b797 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xd6e32ef0 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f682e4 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xd7294133 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xd72b6483 d_invalidate +EXPORT_SYMBOL vmlinux 0xd75587c1 dev_add_pack +EXPORT_SYMBOL vmlinux 0xd756429c pci_enable_device +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd76a750c zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xd77f75f7 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xd7871bb0 poll_freewait +EXPORT_SYMBOL vmlinux 0xd796cff9 ilookup5 +EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7dbb576 kernel_param_lock +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7de1389 param_ops_short +EXPORT_SYMBOL vmlinux 0xd7e55361 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ee04aa dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xd7ee2eba file_update_time +EXPORT_SYMBOL vmlinux 0xd8001ccc wireless_send_event +EXPORT_SYMBOL vmlinux 0xd81edb06 acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0xd83267c1 skb_push +EXPORT_SYMBOL vmlinux 0xd845cf95 nla_put +EXPORT_SYMBOL vmlinux 0xd85833cb __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xd86bcdf3 tcp_prequeue +EXPORT_SYMBOL vmlinux 0xd87081ef generic_perform_write +EXPORT_SYMBOL vmlinux 0xd883496e __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xd88639e0 vga_switcheroo_unlock_ddc +EXPORT_SYMBOL vmlinux 0xd896a414 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b1e4f8 fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xd8b792b8 sock_from_file +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8e88899 kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0xd8ee4b97 misc_deregister +EXPORT_SYMBOL vmlinux 0xd8f54f5a down_read +EXPORT_SYMBOL vmlinux 0xd907f4e2 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0xd90f30f8 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xd91536ad mntget +EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0xd9542f66 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xd95d6691 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xd966ddc2 __do_once_done +EXPORT_SYMBOL vmlinux 0xd969b2c7 amd_e400_c1e_detected +EXPORT_SYMBOL vmlinux 0xd9714ab4 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu +EXPORT_SYMBOL vmlinux 0xd97b0874 __pci_register_driver +EXPORT_SYMBOL vmlinux 0xd9847bd5 jbd2_journal_inode_add_write +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd997c628 blk_stop_queue +EXPORT_SYMBOL vmlinux 0xd99a1fbe security_path_mkdir +EXPORT_SYMBOL vmlinux 0xd9c8af97 __register_chrdev +EXPORT_SYMBOL vmlinux 0xd9d3bcd3 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xd9d465d3 override_creds +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d94e08 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0xd9dea0f1 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xd9e15419 task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0xda04ba2b blk_end_request_all +EXPORT_SYMBOL vmlinux 0xda08c0d7 pcibios_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xda0e27c4 ___pskb_trim +EXPORT_SYMBOL vmlinux 0xda146c52 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xda18dece blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xda221f86 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda4035fd pcie_get_mps +EXPORT_SYMBOL vmlinux 0xda441e5c dev_get_iflink +EXPORT_SYMBOL vmlinux 0xda646d85 tty_devnum +EXPORT_SYMBOL vmlinux 0xda6ddbdc page_cache_next_hole +EXPORT_SYMBOL vmlinux 0xda6f7ce9 wake_up_process +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda89711d keyring_clear +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda8fd495 isapnp_write_byte +EXPORT_SYMBOL vmlinux 0xda923bfd fscrypt_get_policy +EXPORT_SYMBOL vmlinux 0xda9485e7 mdio_bus_type +EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages +EXPORT_SYMBOL vmlinux 0xdaa6fad0 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xdaae6cb8 inet_csk_accept +EXPORT_SYMBOL vmlinux 0xdab02190 __posix_acl_create +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdacb3a99 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xdae20d62 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xdae6b5ab inet_sendpage +EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0xdb5d22c2 pnp_is_active +EXPORT_SYMBOL vmlinux 0xdb5f3459 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xdb65a3c9 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb8e8385 dm_get_device +EXPORT_SYMBOL vmlinux 0xdbe85cf8 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xdbe895ed locks_init_lock +EXPORT_SYMBOL vmlinux 0xdbf4d4f1 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc0a07a7 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc1beeb2 __destroy_inode +EXPORT_SYMBOL vmlinux 0xdc1f680a tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xdc36c35a current_fs_time +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc40a937 __put_cred +EXPORT_SYMBOL vmlinux 0xdc48a93b register_sysctl_table +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc57f532 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0xdc5d4d2c phy_init_eee +EXPORT_SYMBOL vmlinux 0xdc644131 vfs_write +EXPORT_SYMBOL vmlinux 0xdc7d3f87 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xdc9cacce __blk_end_request +EXPORT_SYMBOL vmlinux 0xdcd6398d empty_aops +EXPORT_SYMBOL vmlinux 0xdcda81b7 nd_integrity_init +EXPORT_SYMBOL vmlinux 0xdce8c90e free_buffer_head +EXPORT_SYMBOL vmlinux 0xdd09aba0 vme_irq_free +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd1bbb7f pci_release_regions +EXPORT_SYMBOL vmlinux 0xdd21ffaf cfb_fillrect +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd33db50 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xdd4f4c0b swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0xdd5c0499 nd_btt_probe +EXPORT_SYMBOL vmlinux 0xdd7a6a67 param_set_ushort +EXPORT_SYMBOL vmlinux 0xddae34cc forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xddb37d02 proc_dointvec +EXPORT_SYMBOL vmlinux 0xddd5bf66 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xddd924f8 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xddf615c8 tty_write_room +EXPORT_SYMBOL vmlinux 0xde1445a1 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xde16dc16 tboot +EXPORT_SYMBOL vmlinux 0xde1f6e2a touch_buffer +EXPORT_SYMBOL vmlinux 0xde3192c8 __skb_checksum +EXPORT_SYMBOL vmlinux 0xde4403df no_llseek +EXPORT_SYMBOL vmlinux 0xde46052e deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xde51cbc4 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xde70e79f pci_map_rom +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde99dd35 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdea2ee30 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xdecc5e70 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xdedb6611 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0xdee263f7 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices +EXPORT_SYMBOL vmlinux 0xdf1427e5 idr_remove +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update +EXPORT_SYMBOL vmlinux 0xdf49aab6 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0xdf4fc797 __register_nmi_handler +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf68c070 dm_register_target +EXPORT_SYMBOL vmlinux 0xdf6da21b sk_net_capable +EXPORT_SYMBOL vmlinux 0xdf7dca70 phy_device_create +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf9a39a2 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xdfaf5d71 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xdfbad10c xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xdfbbc6d0 __netif_schedule +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfcfabcf phy_start_interrupts +EXPORT_SYMBOL vmlinux 0xdfd3a075 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0xdfe97614 make_bad_inode +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe01b5592 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xe024cbdd security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe05664ad request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0xe05bdfa6 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe0654818 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xe066dfa2 simple_empty +EXPORT_SYMBOL vmlinux 0xe067558c vfs_iter_write +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe07c514a proc_remove +EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe08f99a2 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xe0a16a20 intel_scu_ipc_i2c_cntrl +EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0cffa53 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xe0ed6dd3 key_revoke +EXPORT_SYMBOL vmlinux 0xe10af47b sk_alloc +EXPORT_SYMBOL vmlinux 0xe124b9b9 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe14701b2 acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0xe1562f4e elv_register_queue +EXPORT_SYMBOL vmlinux 0xe16a9bdc mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xe1743a52 skb_queue_purge +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe18890af alloc_disk +EXPORT_SYMBOL vmlinux 0xe18c1121 vga_client_register +EXPORT_SYMBOL vmlinux 0xe1a86808 __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe1b258b8 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xe1bc84fd swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0xe1c96d47 netif_device_detach +EXPORT_SYMBOL vmlinux 0xe1cc4424 get_monotonic_coarse64 +EXPORT_SYMBOL vmlinux 0xe1d08e7e register_md_personality +EXPORT_SYMBOL vmlinux 0xe1df5622 devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0xe1efda8e register_cdrom +EXPORT_SYMBOL vmlinux 0xe1fe1a36 ip_check_defrag +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20391cb proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xe2124056 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xe21a4658 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xe2453d8b bmap +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe259ae9e _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xe264bea4 tcf_hash_create +EXPORT_SYMBOL vmlinux 0xe27def45 pci_pme_capable +EXPORT_SYMBOL vmlinux 0xe28f57ea jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xe299f3a1 new_inode +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2a127f3 i2c_clients_command +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e32b86 mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0xe2e4c748 arp_create +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe3108e43 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xe3197208 proc_dostring +EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0xe31dc07f udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xe3200727 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0xe3256590 mmc_of_parse +EXPORT_SYMBOL vmlinux 0xe32fcf0e dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xe338c3b3 dev_addr_flush +EXPORT_SYMBOL vmlinux 0xe3399a75 native_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xe33d40a3 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0xe34be7aa d_delete +EXPORT_SYMBOL vmlinux 0xe3572526 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xe35d523b iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xe365ea6c agp_bind_memory +EXPORT_SYMBOL vmlinux 0xe36614a8 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xe36c54e1 fb_find_mode +EXPORT_SYMBOL vmlinux 0xe37a9650 genphy_suspend +EXPORT_SYMBOL vmlinux 0xe390f4d6 dev_driver_string +EXPORT_SYMBOL vmlinux 0xe39452ba poll_initwait +EXPORT_SYMBOL vmlinux 0xe3a13389 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3dca141 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xe3e684b9 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0xe3fa27a1 phy_disconnect +EXPORT_SYMBOL vmlinux 0xe3fbf9c1 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xe3fd81f5 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xe3fdf4b6 path_put +EXPORT_SYMBOL vmlinux 0xe3fe3869 fsync_bdev +EXPORT_SYMBOL vmlinux 0xe402f3ed __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xe40e51ff mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xe4292d3c security_path_unlink +EXPORT_SYMBOL vmlinux 0xe42a9ce7 pci_match_id +EXPORT_SYMBOL vmlinux 0xe43bb19c i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xe445db4a acpi_check_address_range +EXPORT_SYMBOL vmlinux 0xe44f7211 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xe452d29b passthru_features_check +EXPORT_SYMBOL vmlinux 0xe47a8142 bh_submit_read +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe4911398 sock_i_uid +EXPORT_SYMBOL vmlinux 0xe494a01a radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0xe4c5c05f jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0xe4c6de7e udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xe4c95438 seq_printf +EXPORT_SYMBOL vmlinux 0xe4caab6e neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xe4ced8c2 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xe4d055b8 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4ed7d92 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xe50f904f intel_scu_ipc_ioread16 +EXPORT_SYMBOL vmlinux 0xe521e5ce ll_rw_block +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe530d757 acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xe54d26fe netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xe556c93f bdev_stack_limits +EXPORT_SYMBOL vmlinux 0xe557b978 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5815f8a _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xe58202f1 free_task +EXPORT_SYMBOL vmlinux 0xe585f423 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe596d0c5 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xe59c7acf pnp_stop_dev +EXPORT_SYMBOL vmlinux 0xe59d1fd1 mount_nodev +EXPORT_SYMBOL vmlinux 0xe5ba7460 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xe5ba8274 skb_append +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5c9d997 phy_attach +EXPORT_SYMBOL vmlinux 0xe5d0c09f dev_set_mtu +EXPORT_SYMBOL vmlinux 0xe5e31001 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe605c327 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xe6162877 down_killable +EXPORT_SYMBOL vmlinux 0xe6172b4d ip_setsockopt +EXPORT_SYMBOL vmlinux 0xe61e9ee8 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0xe64766b6 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xe64d98fe rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xe64ecfcf netif_skb_features +EXPORT_SYMBOL vmlinux 0xe6525b75 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xe663f8e2 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xe6672422 seq_puts +EXPORT_SYMBOL vmlinux 0xe66c1031 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xe670f694 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0xe675a271 mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0xe679227d napi_gro_flush +EXPORT_SYMBOL vmlinux 0xe67a87e3 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xe690b8d8 udplite_table +EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size +EXPORT_SYMBOL vmlinux 0xe699a3a7 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0xe69d70fe napi_complete_done +EXPORT_SYMBOL vmlinux 0xe6a81865 serio_reconnect +EXPORT_SYMBOL vmlinux 0xe6adfc6e page_mapped +EXPORT_SYMBOL vmlinux 0xe6ba8254 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xe6bf5951 inode_init_once +EXPORT_SYMBOL vmlinux 0xe6c44ccb __sock_create +EXPORT_SYMBOL vmlinux 0xe6d1b481 tcf_hashinfo_destroy +EXPORT_SYMBOL vmlinux 0xe6d4303c bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xe6daaf2d mdio_device_register +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe6f0f77d dquot_destroy +EXPORT_SYMBOL vmlinux 0xe6f21664 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xe7080320 dcb_getapp +EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xe720a02e get_fs_type +EXPORT_SYMBOL vmlinux 0xe7307a58 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xe7427405 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xe752bd42 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xe753e458 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xe781b5f6 intel_scu_ipc_readv +EXPORT_SYMBOL vmlinux 0xe7a1e3a2 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7d0dbe0 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7df597c do_SAK +EXPORT_SYMBOL vmlinux 0xe7e0777f dev_crit +EXPORT_SYMBOL vmlinux 0xe7f050b4 i2c_master_send +EXPORT_SYMBOL vmlinux 0xe7ffa491 iterate_fd +EXPORT_SYMBOL vmlinux 0xe8142f88 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe823dc35 vfs_link +EXPORT_SYMBOL vmlinux 0xe839d57c pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0xe83af4e8 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xe84a6bfb inet_accept +EXPORT_SYMBOL vmlinux 0xe8513fd9 bio_chain +EXPORT_SYMBOL vmlinux 0xe86da19e seq_open_private +EXPORT_SYMBOL vmlinux 0xe87025f0 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0xe8746c74 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe87a5277 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xe87b2edd sg_copy_buffer +EXPORT_SYMBOL vmlinux 0xe87c2672 eth_change_mtu +EXPORT_SYMBOL vmlinux 0xe884d77d blk_put_request +EXPORT_SYMBOL vmlinux 0xe887faf4 xen_vcpu_id +EXPORT_SYMBOL vmlinux 0xe8a53239 iget_locked +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8aea2a9 kmap_atomic_prot +EXPORT_SYMBOL vmlinux 0xe8afce1c blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xe8b5e181 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0xe8b68849 wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8db8dd2 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe8dcb0ac input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xe9132081 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xe914195e iget_failed +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9338e87 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xe93f6042 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xe948576a generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xe94dc18f devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe95f9916 dmam_release_declared_memory +EXPORT_SYMBOL vmlinux 0xe96671be sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xe980cba9 __lock_page +EXPORT_SYMBOL vmlinux 0xe98676e1 pci_get_class +EXPORT_SYMBOL vmlinux 0xe997667b wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xe9b463f3 dqget +EXPORT_SYMBOL vmlinux 0xe9cb0c38 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xe9d530b5 pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0xe9dd19fe tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xe9e014f2 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0xe9ea9f7f skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea03fff7 set_pages_nx +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea093b6a __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xea24a832 dma_release_declared_memory +EXPORT_SYMBOL vmlinux 0xea3d10a9 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xea3f725d _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xea6093f8 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0xea69076a create_empty_buffers +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xeaa685c6 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xeaad539d netpoll_setup +EXPORT_SYMBOL vmlinux 0xeab3d6d9 pci_save_state +EXPORT_SYMBOL vmlinux 0xeacdbbf5 pci_scan_bus +EXPORT_SYMBOL vmlinux 0xead3d4ac swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeaec3f12 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xeaf15f1e block_write_begin +EXPORT_SYMBOL vmlinux 0xeaf9655f insert_inode_locked +EXPORT_SYMBOL vmlinux 0xeb0ecaf0 netdev_emerg +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb3b60bd address_space_init_once +EXPORT_SYMBOL vmlinux 0xeb4c65f5 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeb604162 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0xeb81fd22 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xeb98b220 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0xebbdb2e8 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0xebc5149b mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0xebded059 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xebf1bc03 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xec0750e7 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0xec076c82 cpu_tss +EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit +EXPORT_SYMBOL vmlinux 0xec205168 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xec2ed2dd down_write_killable +EXPORT_SYMBOL vmlinux 0xec36564a sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xec3e941a jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec5a1cf8 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xec5a75c2 generic_removexattr +EXPORT_SYMBOL vmlinux 0xec5d075c inet_gro_complete +EXPORT_SYMBOL vmlinux 0xec8e71b5 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xecbf14e4 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xecc61980 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xecc7400e qdisc_list_del +EXPORT_SYMBOL vmlinux 0xecca1128 elevator_change +EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xed074e43 generic_readlink +EXPORT_SYMBOL vmlinux 0xed0b28df would_dump +EXPORT_SYMBOL vmlinux 0xed1a2586 current_task +EXPORT_SYMBOL vmlinux 0xed2f5ff7 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xed3603f9 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xed3fac4f uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xeda169aa kmap +EXPORT_SYMBOL vmlinux 0xedb44b9a security_inode_init_security +EXPORT_SYMBOL vmlinux 0xedb65313 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedec0099 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xee0ea8e9 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee511a7f sock_edemux +EXPORT_SYMBOL vmlinux 0xee53dce9 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xee5a1222 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xee659e55 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeb5c670 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xeebd26c4 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xeec2c7cf ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xef0d9a1d xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xef348549 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0xef4d167d mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0xef6d7d58 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xef6db0a6 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xef6e3428 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0xef7d4434 __break_lease +EXPORT_SYMBOL vmlinux 0xef7dbdef phy_start_aneg +EXPORT_SYMBOL vmlinux 0xef952b80 page_get_link +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xefbbe091 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefda8d99 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefe099c3 acpi_get_event_status +EXPORT_SYMBOL vmlinux 0xeff33170 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf011a578 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf02c3a1d get_unmapped_area +EXPORT_SYMBOL vmlinux 0xf035e8ba phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xf0555b52 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf062576b ucs2_utf8size +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0xf070eba2 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xf08242c2 finish_wait +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0a7ebc4 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xf0b074df mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xf0be43c6 udp_disconnect +EXPORT_SYMBOL vmlinux 0xf0d77a85 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xf0e89fa1 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xf0eaffce _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0f9093e neigh_seq_next +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit +EXPORT_SYMBOL vmlinux 0xf119c726 ip_defrag +EXPORT_SYMBOL vmlinux 0xf1370135 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xf1398e2e lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xf13c0fd2 finish_open +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf14e4ca3 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xf156a95d __sk_receive_skb +EXPORT_SYMBOL vmlinux 0xf15a6edc d_drop +EXPORT_SYMBOL vmlinux 0xf17570af datagram_poll +EXPORT_SYMBOL vmlinux 0xf18242e1 atomic64_set_cx8 +EXPORT_SYMBOL vmlinux 0xf190a3e5 ata_dev_printk +EXPORT_SYMBOL vmlinux 0xf190bc71 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1b1123d mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xf1c66d80 ip_options_compile +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf21441d8 ether_setup +EXPORT_SYMBOL vmlinux 0xf214f70d dm_put_table_device +EXPORT_SYMBOL vmlinux 0xf21dd141 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xf222f7ee padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xf2384813 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xf23a3108 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf247277a write_one_page +EXPORT_SYMBOL vmlinux 0xf249bebb vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xf24ce892 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xf268035e unlink_framebuffer +EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr +EXPORT_SYMBOL vmlinux 0xf2908f25 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf2b8984f kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2d8bbb0 skb_tx_error +EXPORT_SYMBOL vmlinux 0xf2f9ab10 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0xf30f242c vme_dma_request +EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf335fc53 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf349b760 fence_wait_timeout +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf3548161 pnpbios_protocol +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xf3986b06 acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0xf39b99c4 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xf3a14a9b pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xf3a1ea8d fscrypt_get_encryption_info +EXPORT_SYMBOL vmlinux 0xf3a34a3a fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0xf3a72da2 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0xf3a8f6e6 d_alloc_name +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3ec793c ps2_end_command +EXPORT_SYMBOL vmlinux 0xf3f1ba4f pcibios_align_resource +EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xf410bb81 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xf41cb360 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xf42117fe fscrypt_restore_control_page +EXPORT_SYMBOL vmlinux 0xf4230b04 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf45a5b8b dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xf463137a __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4768125 netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0xf47b581f dquot_free_inode +EXPORT_SYMBOL vmlinux 0xf48a5a8d touch_atime +EXPORT_SYMBOL vmlinux 0xf4973b31 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit +EXPORT_SYMBOL vmlinux 0xf4b6d691 generic_ro_fops +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4c1bfd6 vme_irq_generate +EXPORT_SYMBOL vmlinux 0xf4c1f956 pci_dev_get +EXPORT_SYMBOL vmlinux 0xf4d6918a inet_frag_find +EXPORT_SYMBOL vmlinux 0xf4ef2b4f skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4fded96 ___ratelimit +EXPORT_SYMBOL vmlinux 0xf502d273 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xf521cc89 seq_file_path +EXPORT_SYMBOL vmlinux 0xf536d22e acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf542f654 set_user_nice +EXPORT_SYMBOL vmlinux 0xf5741569 sync_inode +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5abfa5b d_rehash +EXPORT_SYMBOL vmlinux 0xf5b02f0c devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0xf5b10e67 acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5d3895a dma_supported +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf628ed10 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xf629bbff clk_add_alias +EXPORT_SYMBOL vmlinux 0xf63ead59 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xf640bb40 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0xf6418e83 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xf6434bc3 dump_page +EXPORT_SYMBOL vmlinux 0xf6610dca free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf680b7a9 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xf6818830 dquot_enable +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68457c1 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf6899c5a acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xf693a145 irq_stat +EXPORT_SYMBOL vmlinux 0xf6b53580 sock_update_memcg +EXPORT_SYMBOL vmlinux 0xf6e4fff7 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f39e48 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf70884cd skb_clone_sk +EXPORT_SYMBOL vmlinux 0xf70cb0ae pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xf71e2740 __inode_permission +EXPORT_SYMBOL vmlinux 0xf720742c dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xf726d02f atomic64_add_unless_cx8 +EXPORT_SYMBOL vmlinux 0xf7393401 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xf74129e2 key_invalidate +EXPORT_SYMBOL vmlinux 0xf745cb16 atomic64_sub_return_cx8 +EXPORT_SYMBOL vmlinux 0xf748472c flush_delayed_work +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf75a398a blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xf767758b file_open_root +EXPORT_SYMBOL vmlinux 0xf788424d register_sysctl +EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0xf7a35f7a dquot_transfer +EXPORT_SYMBOL vmlinux 0xf7accc40 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xf7b4a300 ata_port_printk +EXPORT_SYMBOL vmlinux 0xf7be8d1b get_super +EXPORT_SYMBOL vmlinux 0xf7c49cee sk_ns_capable +EXPORT_SYMBOL vmlinux 0xf7eb3202 freezing_slow_path +EXPORT_SYMBOL vmlinux 0xf7f27585 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xf8050fac acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xf80808ef devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf81241fd crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xf81c9f40 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf83d7c56 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xf849e3c8 revert_creds +EXPORT_SYMBOL vmlinux 0xf8606268 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xf865964c vc_resize +EXPORT_SYMBOL vmlinux 0xf870e6c8 pagevec_lookup +EXPORT_SYMBOL vmlinux 0xf878ee60 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header +EXPORT_SYMBOL vmlinux 0xf8935794 flow_cache_init +EXPORT_SYMBOL vmlinux 0xf89564e0 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0xf89e7f1f vfs_readv +EXPORT_SYMBOL vmlinux 0xf8a65daf nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xf8c504b6 bio_phys_segments +EXPORT_SYMBOL vmlinux 0xf8c65ff7 max8998_update_reg +EXPORT_SYMBOL vmlinux 0xf8cfe7b7 clone_cred +EXPORT_SYMBOL vmlinux 0xf8d53a17 dmam_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf8f8ed8c simple_lookup +EXPORT_SYMBOL vmlinux 0xf91f927a vfs_llseek +EXPORT_SYMBOL vmlinux 0xf925e366 device_add_disk +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf9391881 vm_insert_page +EXPORT_SYMBOL vmlinux 0xf951a4e2 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xf9687e22 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xf9710d3d vme_master_request +EXPORT_SYMBOL vmlinux 0xf97bf018 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xf9875572 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xf98f0bbb vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xf991ef73 vm_node_stat +EXPORT_SYMBOL vmlinux 0xf995bb87 param_get_uint +EXPORT_SYMBOL vmlinux 0xf99ff02e acpi_os_get_line +EXPORT_SYMBOL vmlinux 0xf9a31199 seq_open +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9b1566d agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0xf9bd36c3 param_ops_long +EXPORT_SYMBOL vmlinux 0xf9c45b13 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xf9da1df9 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0xf9e37905 tcp_release_cb +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xfa02b975 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0xfa259ad6 ip6_frag_match +EXPORT_SYMBOL vmlinux 0xfa3ac0e1 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0xfa432f85 __scm_destroy +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa530dfa d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5bcf35 mod_timer +EXPORT_SYMBOL vmlinux 0xfa919e48 set_binfmt +EXPORT_SYMBOL vmlinux 0xfa92ca77 vfs_rmdir +EXPORT_SYMBOL vmlinux 0xfa97ea60 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xfaa2a548 path_get +EXPORT_SYMBOL vmlinux 0xfaa6f907 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xfaaf3b1c sock_no_poll +EXPORT_SYMBOL vmlinux 0xfac770e7 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent +EXPORT_SYMBOL vmlinux 0xfb0ad0e8 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xfb0c9499 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xfb0cecfd vm_event_states +EXPORT_SYMBOL vmlinux 0xfb2aa825 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xfb358e0f phy_register_fixup +EXPORT_SYMBOL vmlinux 0xfb4967bc sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xfb4bc5fd __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xfb83281a scsi_remove_host +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfb9a9cd8 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbb5e4ed ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbc93c6b netif_napi_del +EXPORT_SYMBOL vmlinux 0xfbd71298 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xfbe3c94d napi_gro_receive +EXPORT_SYMBOL vmlinux 0xfbf6a652 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xfbfe124e scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc034404 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3c3d3f genl_unregister_family +EXPORT_SYMBOL vmlinux 0xfc4098eb page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xfc562165 acpi_run_osc +EXPORT_SYMBOL vmlinux 0xfc6391f4 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xfc716b55 security_path_mknod +EXPORT_SYMBOL vmlinux 0xfc734327 queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0xfc792a9c devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xfc86470c module_layout +EXPORT_SYMBOL vmlinux 0xfc870ffa kobject_put +EXPORT_SYMBOL vmlinux 0xfc872fd1 get_ibs_caps +EXPORT_SYMBOL vmlinux 0xfc934662 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcccddc5 input_release_device +EXPORT_SYMBOL vmlinux 0xfcda60e8 redraw_screen +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcddc1ea mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xfcde7cd2 dev_mc_sync +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfced791a ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd304f2f register_quota_format +EXPORT_SYMBOL vmlinux 0xfd30e541 key_reject_and_link +EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xfd48e0bb set_security_override +EXPORT_SYMBOL vmlinux 0xfd7795e9 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0xfd88c652 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfd9bc202 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xfdab91f4 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdfa55ba __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfdfd6c90 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe047ce6 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0xfe07eaaa dget_parent +EXPORT_SYMBOL vmlinux 0xfe13c522 acpi_install_gpe_raw_handler +EXPORT_SYMBOL vmlinux 0xfe1cdaf5 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0xfe3286e8 genphy_update_link +EXPORT_SYMBOL vmlinux 0xfe4508bc nvm_find_target_type +EXPORT_SYMBOL vmlinux 0xfe4cab3b phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0xfe5d30e9 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe6aec86 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe7da978 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xfe80cae1 uuid_be_to_bin +EXPORT_SYMBOL vmlinux 0xfe937792 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xfe9869cb ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfeb30bc5 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xfececa06 netdev_info +EXPORT_SYMBOL vmlinux 0xfed9c608 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xfedb0838 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfeebf118 neigh_update +EXPORT_SYMBOL vmlinux 0xfef2c78f idr_get_next +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff480992 dump_fpu +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff843c16 km_report +EXPORT_SYMBOL vmlinux 0xff844dc0 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0xff8a4ebe iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffb8fed8 kill_pid +EXPORT_SYMBOL vmlinux 0xffc3d5dc filp_clone_open +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffdbd3b0 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xffe57427 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xffe77b10 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xffe79e26 get_tz_trend +EXPORT_SYMBOL_GPL arch/x86/crypto/aes-i586 0x7060bf0a crypto_aes_encrypt_x86 +EXPORT_SYMBOL_GPL arch/x86/crypto/aes-i586 0xe409b491 crypto_aes_decrypt_x86 +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x3aa5e8d8 glue_xts_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x7bb586e5 glue_cbc_encrypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x81981df5 glue_ecb_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x8f02ac4d glue_xts_crypt_128bit_one +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xdf05719f glue_cbc_decrypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xe1513281 glue_ctr_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-i586 0x28afd262 twofish_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-i586 0x6f068d90 twofish_dec_blk +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x002a3f56 __tracepoint_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00afaffb kvm_default_tsc_scaling_ratio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02d9763d kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x033270fa kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x03bf6f2e kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x04d02677 kvm_no_apic_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x05c943cb reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0616442b gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0713a197 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x07448110 __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09591303 kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0a3fa935 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0a52681a kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0aa57ab9 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ba240d2 kvm_apic_match_dest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0c055eae __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0c094d5b kvm_mmu_sync_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0c2f0bda kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0dd9c142 kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1272b16e kvm_vector_hashing_enabled +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1317976d kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13258e20 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x133962d2 kvm_init_shadow_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x136c876d mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13a9ac01 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x14f263bd kvm_after_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x16817b8a kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x194671a7 kvm_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1979fa9a kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1996d580 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a617a49 kvm_write_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ae5b6bf kvm_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b27f4f2 kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d9b88f2 reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e638996 kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ef5cea3 __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f1c5a4a kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2050f397 reprogram_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2187cd8a kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x233c596e __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x236dbc83 kvm_mmu_slot_set_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24e26056 __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2549dfd4 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x29a6a2b2 kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c84b973 gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c9252fd kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d25e1f0 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e6d55e6 kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2edafc9b __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f5838d3 kvm_lapic_reg_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f636c31 kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x30faacc2 kvm_mmu_clear_dirty_pt_masked +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317f9e6b kvm_enable_efer_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32f68249 kvm_mmu_slot_largepage_remove_write_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x34d01a87 kvm_mce_cap_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3792053a x86_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3974204a kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3bd1ec1b kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3cfbbcc7 kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f75440b __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x408c1708 kvm_before_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43875d62 kvm_set_xcr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43b771f8 x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43e1d37e kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x443248ab kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x46ca77ba kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48b2c221 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x498967f5 kvm_mmu_unload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b6136a0 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4bea6066 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4d2232cf kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5279c830 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x52938eff kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54c8d486 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x58e553ce kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x58eff73a kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x591386d0 kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5a61f329 kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c175d68 kvm_mmu_unprotect_page_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c4fc9ce gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x60d8103f kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x61aefacc kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6342572e gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64020e10 kvm_set_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x666915f4 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x697661bf kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6b91b4b5 kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c177c74 __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c3048ca kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6db69707 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x71f4fb55 kvm_mmu_slot_leaf_clear_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7220334e __tracepoint_kvm_ple_window +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x728086dd kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72c20542 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x75b22183 __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x75d11878 kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x771e039a kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x77712861 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x78d54c6c kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79fb4070 kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7acb807f kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e0fe690 kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7eed6466 __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x80343104 __tracepoint_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831327da kvm_max_guest_tsc_khz +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8351114f kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x853db2c9 kvm_fast_pio_out +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x87bdff46 kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x88471c3b kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8927b04c kvm_lapic_hv_timer_in_use +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8aee6cfb kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c4d2a71 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c4e27c9 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c9ee090 handle_mmio_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8cb4d2cf gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8d48af7d kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f78d0d8 __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8fa8cb42 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x90bdf1cd kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x920853ed kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93145b76 kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9380eb56 cpuid_query_maxphyaddr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9391f99b __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9505cd80 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96dbe382 kvm_mpx_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98222b59 kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98c7ed68 __tracepoint_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x99db4437 kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x99fca169 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x99fcef3e kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a216313 kvm_define_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9b43f936 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9b777f04 kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9b9669f1 kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d8717b9 kvm_lapic_switch_to_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f93f166 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa26b7535 kvm_scale_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa347deb2 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa3af8ac8 kvm_valid_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4a63a9e kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7d9c68f kvm_mmu_set_mask_ptes +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaaa29c37 kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaecfcb58 kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2248419 gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb410b6ef reset_shadow_zero_bits_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb57ec5ee kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb65211ba kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb68827fc kvm_get_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb98e99b1 kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb9bfa253 kvm_lapic_reg_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9ed435 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb8f4d2a kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbcf1ed4a kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbd28dca0 kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf47d28d kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2437046 kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc36f685a kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc516f629 kvm_lapic_switch_to_sw_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc56d75ce __kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc599bc18 kvm_max_tsc_scaling_ratio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc678092a vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc202c8e kvm_mmu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd05f914 vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce3c2886 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf15b8e5 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0482ff2 __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd361326b load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd441f70d kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd4e27789 kvm_lapic_expired_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7d501ac kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8806a2a kvm_mmu_unprotect_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd920e0fa kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd9bd638c kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdb7d87f6 kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc6982ce kvm_vcpu_reload_apic_access_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdea3a91a __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe236f32c kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe2ecfd15 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe33cb8a3 __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe56ff2f0 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe57375b3 kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe725720d kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe827db45 kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeba139f8 kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2af8aad kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2d2caac kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2f286c4 kvm_tsc_scaling_ratio_frac_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf3bf5052 __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4ad1f1d kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4b6081d kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfaba8bfe kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfdfd93d8 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xffbc952b kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xffe84df0 kvm_get_rflags +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x02605c4b ablk_exit +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x1edae0b3 ablk_init_common +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x23090cee ablk_set_key +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x6bace069 ablk_init +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x82a2b183 __ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xcaf1013c ablk_decrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xd7d60a01 ablk_encrypt +EXPORT_SYMBOL_GPL crypto/af_alg 0x0457bdb7 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x0ae83855 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x11badcb8 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x15c9b8bf af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x33fd56f7 af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x3801b9da af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x53a752ad af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x592aa1f4 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x78b01a3e af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x7b6169bb af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xa723ead2 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xf389d190 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x07c9f1dd async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x2819e717 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x3d8d438c async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x80f5779f async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x2c1db1a3 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x652e7591 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb15b9199 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xee89a9a7 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x310cada7 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x49803098 async_xor +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xf3fe0fa8 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x0cc3a33d cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x9639e4ad cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 +EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x345ec62d crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xe59078ac crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x47bc8a0d cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x4be324bf cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x52e9c538 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x533f54c0 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x57d0bae6 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x5f542181 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x75ae8c2b cryptd_ablkcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x865365d3 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x872344cb cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xa2ab9684 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xa5fc07b0 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xcf0ff5f3 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xd8a5d5f7 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey +EXPORT_SYMBOL_GPL crypto/dh_generic 0x9edeb49b crypto_dh_decode_key +EXPORT_SYMBOL_GPL crypto/dh_generic 0xa9c31fb3 crypto_dh_key_len +EXPORT_SYMBOL_GPL crypto/dh_generic 0xb25efd9f crypto_dh_encode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x597307c5 crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table +EXPORT_SYMBOL_GPL crypto/lrw 0x91f6fb68 lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x09d403a5 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x4748b780 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0xb06dd0d2 mcryptd_ahash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0xfe019f9e mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x41550ef3 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x9c696077 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xb1336ce0 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xc457d7d4 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x44f775af serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xe5217a4f twofish_setkey +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xcd486077 acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xd68d5230 acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x1c8984c7 acpi_smbus_unregister_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x87bd07bd acpi_smbus_register_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xb9a141b0 acpi_smbus_read +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xe1372311 acpi_smbus_write +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1319b912 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x63d3a739 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x65b19dd3 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x65efb19d ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6b2dc7b2 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x730eac2d ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x776d814e ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7fa9f32e ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9385e4e1 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9786b56e ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9bf5c343 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9e7c55ce ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa53a58e9 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xae6e86c2 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb0c9aa46 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbcb1e5f8 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc53f762f ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcb672cfd ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd8422bab ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdf04476f ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe2555618 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xeb8f94a2 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf95b9e75 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x02f6da52 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1bb5a88f ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3541b40e ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3a4e3c37 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x46a94a8d ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7a8f3068 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x80ddead5 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x95adb5cb ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb0f73fc2 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb95211a0 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd04ccd40 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xeeb2bc46 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xfadbc7c5 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xd482119c __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/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-spmi 0x19490bab __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x1ec3a6b2 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x36159e44 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xd17c9e40 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x137e1032 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x27a680be bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2825319f bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3b4dee02 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4e37e7fd bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6abd89b4 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8aef3c60 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8c296b1f bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9ccb088e bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa68369cd bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa9991215 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa9a8b65f bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xac032ff9 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xad4946ef bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb2bfd76e bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb7a18e2d bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xba7a7fc2 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbd1377c4 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc61195bf bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd12feb51 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdd4d30c5 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xddd58e82 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe35878c5 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe88556a7 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x00a5fbb3 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0be022c7 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x41336bb9 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6122b910 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7fbeac62 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb324018c btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3bd3668a btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3c6607d2 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3eb8d88d btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x50a7197c btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x54489896 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x57d9da3e btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x72f9be91 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x85cba66f btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa95e1094 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xad7d550d btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb8125682 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbb1e71e5 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdd9de29c btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xff504051 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x13dac2c9 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1b37a786 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x62753a32 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xab3f4178 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbc0860af btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc1d9211e btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd2bca527 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe867535a btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfa7a2399 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfdbbb4bd btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfdf01cbc btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x2418de02 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x645be205 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xa81ecb7d btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x16175c53 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/char/scx200_gpio 0xb9778961 scx200_gpio_ops +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 0x5cb0b13b ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x03270732 adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0b88b3dd adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1104d3c6 adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x114f8884 adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x140bb0ed adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x15488b5a adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1605c26f adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x22b4d837 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x22f23616 qat_crypto_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x24a920cf adf_vf2pf_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3840488c adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3d9c333f adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3edfee5d adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x42e28d25 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4e29acb4 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x58ebf231 adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x63d07ffb adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6fa578aa adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6fc41415 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7d5adaee adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x87e3b837 adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x884b4de5 adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x89b8d01e adf_vf2pf_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x922c2482 adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x95dc5d1d adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa284011a adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xab912883 adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xadad384e adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb1c691f9 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb940e9b2 adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcaaea187 adf_reset_sbr +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 0xcd333f91 adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcf0b6266 adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd1a8a7c0 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd77b8132 adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe5bac784 adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe5cfb53c adf_iov_putmsg +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe7a7611a adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfea61847 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/dax/dax 0x17bce14a devm_create_dax_dev +EXPORT_SYMBOL_GPL drivers/dax/dax 0x85fc80e9 dax_region_put +EXPORT_SYMBOL_GPL drivers/dax/dax 0xf713a919 alloc_dax_region +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x07609829 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x14191bca dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x20af4a5b dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4c812a14 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd8d697ae dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x401794d3 hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x569a2613 hsu_dma_get_status +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x65664117 hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x9204a2bb hsu_dma_do_irq +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x5475b521 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xa2fa3522 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x0c03bd56 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x586326f7 vchan_tx_desc_free +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x97c0eaf5 vchan_init +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xaf16d30f vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xef3f686f vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0xfc933fe3 amd64_get_dram_hole_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x03ceaf07 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x19a12fe8 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x218aed31 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x24555203 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x31013c5f edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x43cacf8c edac_stop_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x460b4129 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5de1c0cc edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x72e684e3 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x832c35ac edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x838da5ca edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x973f15c8 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x97fc9e6c edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x99cbc11d edac_mod_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9fc69309 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa132b09d edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa767bd82 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb30c9f00 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb7dd16e9 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbf97afde edac_queue_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc93321aa edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe223006c edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe9cc914f edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xecdbc689 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf4f9a314 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfd748754 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x14878009 amd_report_gart_errors +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x1d34e996 pp_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xb30b7e56 amd_decode_mce +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xc389e498 amd_register_ecc_decoder +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xd062ca76 amd_unregister_ecc_decoder +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x9bd94b27 get_scpi_ops +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0a5fcc30 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4b47747d fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x66bea18f fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x81815e40 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xbd7f4147 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xefc0f70b fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0x013fbdac cs5535_gpio_set +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0x93f8fe67 cs5535_gpio_set_irq +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xc0bb404a cs5535_gpio_setup_event +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xd3bd9300 cs5535_gpio_isset +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xe07c0954 cs5535_gpio_clear +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x5e86dafb bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x62e72040 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xaef46dcb __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x52240541 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x993fa6b6 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf187c4d4 drm_do_get_edid +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 0xe7237b0b i915_gpu_turbo_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x2aa5a8c5 ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6580d31e ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xd162bef1 ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/hid/hid 0x03466d5d hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x040fb143 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x13f5a56e hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1be9b323 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x20353d56 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x24163307 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2ee1430f hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x55610097 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6c833365 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x793af2af hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7d883e62 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7e774eea hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x85fe4ef3 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8d45f6e0 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x94e73c02 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9b4d5385 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9f546eef hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa21a4ca4 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xae13b2e0 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb28050f6 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb2a0bf0c hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb2c5e91e hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb3444814 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb6bc4a24 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb9067ea6 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbdcd9c4b hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcaee6af9 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd62d1f86 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe38afec6 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe45766ec hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf1da8a76 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf4257b6e hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf524d84e hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf78a3cc7 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf805bf94 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfc8b8b17 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x200a024d roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0c6ffddf roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1fc1b73f roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x79b34d9a roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x8a6461c3 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa2fe1df7 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb5375478 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x015eb86c sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x05faf352 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0ea5d705 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4ce305ee sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x524502ec hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa38e5ff5 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa5a48238 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcdf4547b sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xdf8d923c sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xdd8ff198 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x13111f0f hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1d835679 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2189d074 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x294124c6 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2ef89c08 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6efbcd22 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7ea88e02 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7f8a0e42 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x813269f6 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x84c24a35 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x95d1c09f hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x98b46a51 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa1ae2311 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xad288c9b hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xae47b5f8 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xca091cb7 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd83049d0 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x00790962 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x25a0a3d2 vmbus_cpu_number_to_vp_number +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x433ba1f9 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4816288a vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x529cb9ec vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x53274271 vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x656330b6 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6934763f vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6e745a96 vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x82ce5cb7 vmbus_sendpacket_pagebuffer_ctl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8c55e9cc vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9867191a vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9beeace8 vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa56fe0a2 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa726cffc vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb07bc23f vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb6861cd1 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc2dbfd9d vmbus_sendpacket_multipagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc9c9f914 vmbus_get_outgoing_channel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd968f5a2 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdb2f6047 vmbus_free_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeadb5fcc vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf938c430 vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x906117cb adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x9c20810e adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xf189c4d7 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0a1d6870 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0d4c4e6e pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4bd075d3 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4fcd5302 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x65c8c1f1 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x69f1ba4c pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8807d7a5 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8df87f02 pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9810c861 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa122a3eb pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb4442ec9 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xde364a79 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe1f67fdc pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xebf25f25 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf94856c5 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1089cdd3 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3c80d961 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x446efac0 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x53dd0548 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xaf8f7c3c intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe3350dc1 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xfa4fd9e7 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x289e76f1 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x39db6efa stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5deb1863 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa994d86f stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc0e8b541 stm_register_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x1e1bbbf3 i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x862f2590 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x8ef94902 i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xc5fe9eca i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xcfa028d4 i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x413f2414 nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x601f05c3 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x6eb078e4 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7853fc54 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xabe5fe35 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x105962f4 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x926a91b3 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xcbf2e543 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xd34ee223 i2c_setup_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x07392be8 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x191a907a bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xbc6b0bb7 bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xc7f1151c bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x2456a452 mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x4e1ed461 mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xf67a9670 mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0e4efc6f ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1c34273e ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3ae55463 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3f927bdf ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x483f67b0 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x64024651 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x766619ab ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x82da4fd2 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x97cd547b ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion +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 0x52a645e1 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 0x7d42b96c iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x126cd832 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x3e9567b3 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x163b4611 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x9bcc98e2 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x9d7b082d bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x07464a42 adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0b2d5e6c adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x1d82fbf0 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x23e53589 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3ad78dfc adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x673986e0 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x80e06652 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb2a2d4f5 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc17ff81f adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xcfe2ef3a adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe4e7d29c adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xed766e81 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x0d7ca12e bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x6135d6a2 bmi160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x70372944 inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x7b0b408a inv_mpu_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xe2952764 inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xe8d98813 inv_mpu6050_set_power_itg +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x021a0fb6 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x07ec3af9 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x11962076 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1f5cfd10 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20ce344a iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x23d712a7 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2550b387 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x37f43951 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3e23c62b devm_iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3e7281ae iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x42490e84 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4ab1f240 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x53bee7ae iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x55711d70 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x63a32bb5 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x64421367 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6a1d5107 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x86c7e7a8 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x906e28e9 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x95a765e4 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa18eee97 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xac1baea9 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaf0fb922 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb647f3c9 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbb4364bd devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc4c73bbf iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc699c68b iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcc200e1b iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcdcfaba5 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd004aa3f iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd3c537b7 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdce4f0d3 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdf3e3932 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe6cb6bb0 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe7d502bc iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xee3817cc iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf72d8d46 devm_iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfe5ed115 iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfe6cecbc iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0x49cebeea mpl115_probe +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/sw/rxe/rdma_rxe 0xab3286cf rxe_dev_put +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x093ccc21 input_ff_create_memless +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 0xa398e8ab adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x05966312 rmi_read_pdt_entry +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0bffb1e6 rmi_process_interrupt_requests +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x13302e5e rmi_get_register_desc_item +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x14db4da2 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x219da0e5 rmi_2d_sensor_set_input_params +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x27f199ee rmi_register_desc_calc_size +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4738a6b0 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x54674610 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5910ffdf rmi_read_register_desc +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x68765425 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6aeb05d5 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7059825a rmi_register_desc_calc_reg_offset +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x82aeef0f rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x83e2406e rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x841f02e6 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8a5bf5bb rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8e01abee rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xdfe80c0d rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe36e5424 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xcf3e658c cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xdffacf19 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xe3a3c973 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x216b51d4 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x661b5e6f cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x5a375422 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xf648cc95 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x3fc2b2b7 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x4ff5d29a tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x8ba9e01e tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xcbc8f9e1 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0a9a874b wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7203b23a wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x735c82ad wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8c704d17 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x999602b3 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9bb9a597 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa317affe wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbea9b2a4 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc7b6e8c3 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcc364ee8 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd94cc28e wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdcb66b1b wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0c8ecc9b ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x41897ce8 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6b359906 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8bc8d47f ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x98dff4de ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbf3807fe ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xddd5d73e ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf7bdb0b5 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfce8e09e ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x12556a9a gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x33ef7ee5 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x38696cfd gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3b915c70 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x419ad441 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5a71454c gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7f06197a gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x92168ef5 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9a0fa6bc gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb742e46f gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xceaa9414 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd0d40461 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd39bffe3 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd7f8c5c8 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xdec995d1 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe923d9c2 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf25a16c8 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/leds/dell-led 0x86fd1ffb dell_app_wmi_led_set +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6d534328 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x82ffccc1 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x99719403 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd5bb70f8 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe119f22f led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xfcdb36f9 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x055479a0 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x20f21a62 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x38dc13f1 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x454d973a lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x61e388e8 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x69ff7e40 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x84c41a87 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9100da7f lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa24f3d51 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa87e3058 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcbbb9a0d lp55xx_register_sysfs +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/mcb/mcb 0x07efd9ee mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x121e7126 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x163a5233 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4551e9af __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x47cee320 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x78efc624 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7d2bc241 mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x89690dca chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xba73b39e mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc27c64b7 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc28fa1c4 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc92a95c0 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe5c827ad mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xfb26d21c mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x02ce290c __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17eac0f8 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a9ab848 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2c437ee8 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x47eb5d3c __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4c335f55 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ef50c7b __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ba7ca35 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x652a0434 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x69302482 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x722e42af __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x73d3c8c3 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x76b62b5b __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7a166f35 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x83976f6a __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8d6b9077 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8f176e80 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x91000c8f __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d57059c __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa09ec603 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xade292e7 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xadeb7c0b __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6d9add1 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc7ec4586 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce62b302 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd1dc5463 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd20bb2e0 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd2b0cbc6 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd539a89c __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef63fd59 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf55d5c1c __tracepoint_bcache_btree_set_root +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 0x3ee05456 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x45c08d75 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x491eb1a3 dm_get_cell +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 0x7e9f1160 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8629e3d9 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9264f617 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa90b0f2a dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xac8cb4ee dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb35fe8fd dm_bio_detain +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-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3909d3a8 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +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 0x9b2b253a dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd351f36c dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new +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-cache 0x25b07cea dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x271cda7b dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x365b8fc9 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x476a266a dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa86cbd15 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc0c72abf dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xdb6d1733 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x80ba4404 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xcdbc708c 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 0x057f371b dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x09472122 dm_rh_dec +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 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 0x8f6676eb dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x9aee3f7c dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa80d7a5a dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xb06cbde9 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 0xc66ce277 dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8e34195 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key +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 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x150c85ce dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum +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 0x32b5f546 dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x33c03da6 dm_sm_disk_open +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 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x619701dc dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk +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 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit +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 0x832bf228 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify +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 0x966a8838 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock +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 0xa2507774 dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbcfdc290 dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbe0497aa dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc53150ac dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xead1e727 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0x00096a0f cec_set_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0x4961a844 cec_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0xbff6533d cec_phys_addr_validate +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0xd2f2eac1 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x08814ab0 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2ec3a204 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5985b009 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5dfd62bb saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x628a5167 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6f3e012d saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x94f2f72c saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9eb3730b saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xcff0aee9 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd539735e saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0cc97e7c saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x116c71fb saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x16819bdc saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x24aa2265 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x65a24036 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x90009697 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xdbbf453f saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0c93d74c smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1d2ec7e7 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1dca67f4 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2cf391e2 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x357d1b8a smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3c711e1f sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3eda4987 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x41e070aa sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4c8897ee smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x59c2f3b4 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x624d5f30 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6bc6ab18 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x796bd9fe smscore_putbuffer +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 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa78cba4b smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdc5a46c6 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xea133677 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xeb61920e smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x0756995d tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x0b63430e tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x1c236f52 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x395504e9 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4cf9e178 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x5c15f12d tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6da054cc tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7527c0ad tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x89685ab4 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x8deb2d91 tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x9e9e5267 tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xbbf641fb tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe01d21d2 tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf26d0c08 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x314ecbb8 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x8fa2de8d cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xa6edceae tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x0c6af131 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x0dc8f0b3 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/media 0x17f2d63a __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x1f3343f9 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x28d77ad4 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x2da67aca media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0x34007f4f media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x363860a0 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/media 0x45ee9653 __media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x47d0b2ce media_entity_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/media 0x4ff8d837 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/media 0x5121309f media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0x5dd47487 media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x5efc23ea media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/media 0x6418f985 media_device_get_devres +EXPORT_SYMBOL_GPL drivers/media/media 0x64527f59 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/media 0x6e5da43d media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x6f77d4d5 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/media 0x75d53737 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x77520171 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x82c7ff7f media_device_init +EXPORT_SYMBOL_GPL drivers/media/media 0x82e02494 media_entity_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x9731de34 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0x9c801bba media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/media 0x9f5433ff media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0xb0a65584 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xb31c5da5 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0xbfab006a media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/media 0xc1c951a3 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xc5b2cbe2 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/media 0xc8f8a0b7 media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0xc91768ef media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0xd4a2de2a media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0xd75fac38 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0xda4a079e media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/media 0xdc581289 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/media 0xe104d1e7 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/media 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xefb7845e __media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0xfc3afc53 media_device_find_devres +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x00919e04 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x14d00d6e mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x376a636f mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3ec04a3f mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x456601cc mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x48d14cca mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x48d98d17 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x67064c9e mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x67180556 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6eb22c06 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x89d5770f mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x935118f8 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9b80c13f mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa26b995f mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xae014c81 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcc6fbfa4 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd00d3866 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe81e4d7c mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xec857e2b mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xeefa080d mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2de40c61 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x30c12659 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3dfbc28d saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4169ccd7 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x46cae46e saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5a5f7f23 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x686ed5e6 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8228acca saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x913c169f saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x989aab0b saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa07ee852 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa968d814 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xae7b5de6 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbb92e821 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcdb266a9 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xda6f0388 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe9dfc35f saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf201e56d saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf24aca77 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x42d557ef ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x53ad1a82 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9331cfb6 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa6932c4c ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xac023e16 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xcd86a950 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xebdf834e ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x03484727 radio_isa_pnp_probe +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x0cca03a9 radio_isa_probe +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x2c5a6655 radio_isa_match +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x8b277784 radio_isa_remove +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0xcda74d28 radio_isa_pnp_remove +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x9d2207ec radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xd98746a8 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x12e4db4a ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1781214c ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2058d46b ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x21aff166 rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x40e64022 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4350afc2 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x444e2520 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x46233a9c rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x47685e83 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x53efda4b rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6732a4d4 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x76bef9b5 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8114ad61 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8a06c6d7 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8c167356 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb4f6cb0f rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbae86591 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbf6b1c64 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdd0a5a36 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xb82b2d1d mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xd79adc03 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x39a06e9f mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x986267d1 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x6302f7e8 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x56504997 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x7c11da5d tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xdc89524b tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x446d87b4 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xb1a713d1 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xf9d62bf4 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x2bc06e33 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xe1c9607a tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x22968ac8 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x029dda9d cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x092b81e4 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x40bb8be6 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x57f99671 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5b404e0a cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6362bb51 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x65342f5f cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6fa3292c cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x73c3d71b cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7c52eed4 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x85c49419 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x91e79fb2 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x92fb775a cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x94df1f08 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x95fdea23 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9fc8ceab cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa29e6644 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd7b238ca cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe8f624dc cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf498ec06 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x97ae3ef8 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x3b8731e4 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x170b0a8e em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1859f678 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2c136c2b em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x36709be5 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x432f6e4c em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5d0988cf em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6cf366e0 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d982109 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x860cebdf em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9e31de1d em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa66b8356 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xabb8e3b1 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc3b2c409 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc856ccc9 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdc218919 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe64832d4 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe8ccbb3f em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe9f68c70 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfab684e4 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x097c6bbe tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x3be3fa81 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x834a3aa9 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xa7ee47af tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x11996f6a v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x294c3cff v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x6d4601cd v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x9092bf5b v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x98f8fca3 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xd8c7942a v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x363ad524 v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x0271ff79 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x0f476f71 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x03a02846 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2145054e v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3a369089 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3bca9ca7 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x41f0ddf0 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4a0d011f v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x543a7db4 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x651b1e11 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6ba0524c v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6eced1ab v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x98aa8013 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9e826609 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa9884af0 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xae374326 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb0073be7 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb12ec467 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbabb3ea7 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbc6d10c2 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbf5c089c v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbfbf7d5e v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc7e98c34 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xca990bf5 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xce50980b v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe8f0c43a v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xec530092 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf021876b v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf5caf06d v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0a081209 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x104a09c9 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x26c2c106 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2b8a1a31 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2ca74845 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3939a210 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4f3c3403 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5e1841c4 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8353845b videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x85e85ec3 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x98551fbb videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9a448941 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9c3bcc19 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xaf4459fd videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbf5d0c53 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc02bc2f5 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc178c54b videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc71311f1 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcd9d47da videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdc69484c videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe0a74caf videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xea8d2a96 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf803d002 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfef4d16e videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x3b117f07 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x8be8a77b videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x9f40f526 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 0xb4e83825 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x45f0ffd9 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x8216f121 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xedcc2980 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x02d57896 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0b102e21 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x234dd453 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2418a8c4 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2ba0e82a vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5493215c vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x58cee0e4 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5eb00333 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x74536588 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8aed0f48 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x9d3810e7 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa338dca3 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xabaa01c4 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb2bd38c4 vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb3d601c3 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc2df7433 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc5355b3d vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc67c33c4 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd2c74c4f vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd6a57637 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe152bc88 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf72cd13a vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xfdf424e4 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x0f47e577 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x9f8d9464 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xf1783465 vb2_dma_contig_clear_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x67146caf vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x9616557a vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0031b6a1 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x00ec2138 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x05cc6fcb vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x05f71d65 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x129846ac vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2708ccfb vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2a07d8d5 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2c7380b8 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3169bc8b vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4cd20de2 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x537405f8 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5eb13972 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5fedfb98 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x62c6b9b6 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x68f13a50 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7612c496 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x870c02f5 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8e089197 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa7c47e1d vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xad8427b9 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb8311aba vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbd3aaef4 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc96bdb92 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd7c8b91f vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe36248c0 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xebf9b756 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf324269c vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xff03ac6d vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x3fd3d028 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x00278df2 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0134e0a2 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x07953438 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x09639208 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11ac4ef4 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x13fa8d58 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1832e5dd v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x18635189 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1e0ef868 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x228ec82b v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2a120f42 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ef869f8 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f2ce409 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x38977f0f __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3a0d0918 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3b155b60 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x405e9d7d v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4066769e v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x411fe101 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x43286937 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x43a72cbc v4l2_subdev_alloc_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x45e124da v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x47015d70 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50d65b11 v4l2_subdev_free_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x53667732 v4l2_pipeline_pm_use +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5a95d4d0 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5afd857c v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x783da15d __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x86fa4ca9 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x871469bd v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x975795f0 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9875d8c1 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa9f17cd8 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xadf39e57 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb5fc5cba v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc43809bc v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcafac341 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc663b6c v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd8dca7df __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdd184ad7 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe7fee390 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf171ea70 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfbecbeec __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfd38f0db v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x3ba9f21a pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x705ad769 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xed0a2ad7 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x25f791d0 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x729807bd da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x968580ac da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb4f4c0fd da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc99ca324 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xccac949e da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd5951842 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x0d206133 intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x11836298 intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x56452a63 intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x83207590 intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xb89a3b5e intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0b5b39e7 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x23deb45a kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5baaa45c kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x74d5f5e6 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x95f22ed4 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd8ae3880 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe6461a06 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xef4b0a54 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x2a36bc6a lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x50550ea1 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x818d7353 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x0d703eb4 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x28298a0d lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x396d54fc lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x651332fa lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x936227cd lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe0590dfb lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe3da9604 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x9b2695e3 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xda177326 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xe3e918ad lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x1841729a mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x1e16a285 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7730a118 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xbb8ea1f4 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe93b1fbc mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xfb34ead4 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x55baaf6d pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x68f0982d pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x76d7ae2b pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7f54ad19 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8be7b8ab pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x90c2a887 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb22c4628 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb5897e00 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc8bea0bb pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdea3c075 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdf1ef664 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xb50162f5 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xbadee731 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x0deb4e41 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x80a30d7a pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa4cfc569 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa8e66163 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd357eca4 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0133247e rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0f950414 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x18acf6d3 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1b06d888 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1e33f3ce rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x22adf98f rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x33de6ff3 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x37bcfa65 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x447b0900 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4717869f rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4acb2810 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5370b2cf rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x62b51ce8 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6bc81b9c rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x714575a0 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x72363569 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x894ed50e rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8b97fb96 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9d737738 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa5241a74 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa544729a rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa55c6af8 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa5ca7ee1 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb8ed34d2 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x131a259f rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1a3ad276 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1d554222 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x295d2e7e rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2b2afa06 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x58e9d80f rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x886813f6 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x8fcc7e00 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x8ff0466a rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x9ff17a54 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xae103e1c rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb3fb9322 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xdffed8db rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x05ee16ec si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0f7d2d2c si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0fda9a8f si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x145c130f si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x17bf9ce9 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2b4e8bcf si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2beda5b9 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2dc0ef24 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3c9ac039 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5702688b si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5e04d4bb si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6fab98f7 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x70bc1b99 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x795587b1 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x858f1e86 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8c7f014f si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8d5ace71 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x90d2faba si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9b2e4d2b si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xad85954a si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb4a99411 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb8ade67d si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xba52a944 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc17cd170 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcb1823f0 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd0ef76f1 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd6145213 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xda8624e5 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdb85cfe9 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe551ca1f si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe6c92846 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xebe18ba5 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf312558f si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf611391d si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2c516a43 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2f4c58d1 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x31478995 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x56936307 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa90b6dde sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x9548babd am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xbc922959 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc31ec820 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xcd15d7dd am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x1f83cdaf tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x64e67233 tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xcd9f02e1 tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xd3a40dac tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x6b057af9 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x7f10fbd1 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x8e892454 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xeb7e3d7a tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x7d6bb622 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x34f40eaf bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x843cc2ee bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xab96b23d bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xd25606d9 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x1c0e39e6 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xb5b4de05 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xdd7d092b cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xfd97e74d cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x0bac6cf4 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x2434668b enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x62af9d0a enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8797d4e4 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8b1ed511 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb3807008 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xdb0a93d4 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe9073998 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x037c0396 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x74c4bf89 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7829408d lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7c5b2ea3 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbda6fe0b lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xccf95820 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd6af1296 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe3f8b2d3 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1dec81c4 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x22eccb37 mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x253c5593 mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x28667a6d mei_cldev_register_event_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2ee23c97 mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x351850d2 mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x38337c53 mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x38f21113 mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3f735586 mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4692f657 mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x69fd5c72 mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x715469fb mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8aba5bd6 mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x988988a0 mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9bd918a5 mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9ed6580f mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc3f5d041 mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcab33099 mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcad9402e __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcf550092 mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd1e40cfb mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xda27124f mei_fw_status2str +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe70c2898 mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf2c8e3cb mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf80f9f5a mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfc7cfae6 mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfc83595e mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/pti 0x19f09b98 pti_release_masterchannel +EXPORT_SYMBOL_GPL drivers/misc/pti 0x23bde487 pti_request_masterchannel +EXPORT_SYMBOL_GPL drivers/misc/pti 0x52a78e81 pti_writedata +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x090615c3 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xbf97dc83 st_register +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x0f6680ea vmci_qpair_produce_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1152e318 vmci_qpair_get_produce_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x13aa5a5d vmci_datagram_create_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1872c7af vmci_qpair_produce_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1a195863 vmci_context_get_priv_flags +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2e30d970 vmci_qpair_dequeue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3ef56cd5 vmci_qpair_alloc +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4b630dac vmci_get_context_id +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ea2ccbc vmci_qpair_peek +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x50a255c9 vmci_doorbell_create +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x677c36d0 vmci_is_context_owner +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x69ef87ff vmci_datagram_destroy_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x6cc1a5f7 vmci_datagram_create_handle_priv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x722d488a vmci_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7d540b50 vmci_qpair_consume_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x8b8ad67a vmci_qpair_enqueue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9624c58c vmci_datagram_send +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9973b9b2 vmci_qpair_consume_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9d16164a vmci_send_datagram +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xa75d4abb vmci_qpair_peekv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xabbf4fe2 vmci_qpair_enquev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc3bf8fe8 vmci_qpair_dequev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xccbb53d1 vmci_doorbell_notify +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xcf5ed7ef vmci_event_subscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xdac94780 vmci_qpair_get_consume_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe7e7c107 vmci_doorbell_destroy +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x084db82a sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1a7c495f sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2b476c02 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3856029b sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x53e24d1d sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x54afc666 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x630924c2 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6d55f3c0 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7d53966c sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa0d8df06 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa9e097b2 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb529ccf1 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb571bc3b sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbe173256 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbf95cefc sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd49bf4fb sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xde808a7f sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf222e1af __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xff082ded __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x24868101 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2af437ba sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x37fa9570 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x55c4694d sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x7e83210a sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xaaefd07b sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb27ad2c5 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x066da30f cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x394486e7 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc45aa371 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x73e9118f cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x8010de09 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xfe4295d9 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xb7177294 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x00bcc9b3 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x35b97f85 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x3aa76e7c cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x08e7896f mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0de045de mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x14db0582 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x16dcc790 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1cf0875a get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ea744c9 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x25d78dfa mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x28cb7446 mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x388c5d4b __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x39557a4b mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x39d11c91 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3e813dde mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3f19db80 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x43696d84 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x45be7322 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x473c0b18 mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x486aa3f6 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4bf7a3c5 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4d5ff365 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x62353ec9 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x69cea6ff mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6d779b00 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7763208c deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x778cd512 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7ed84afe mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8223cd5d mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x983b9f51 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x999dc5d8 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9a517ef1 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9e0f2b5d kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9f082d2d mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa6696351 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xad021e97 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xad70a7ca mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xae72c3b8 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbf010d6b mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc1a9ec8b mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc41bee80 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc4a54376 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc708cf42 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc7bff7f1 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcb372cc9 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcbd1e01d mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcef51fb0 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd3aebacc mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd7ce5892 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd89e754e mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd91c1c49 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe8d8022a mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xed4755fb mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xefb82dd5 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf440c7d3 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x49757fcb del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd745831e register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xedf33dc0 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xf2482ca6 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xfe8b4cec add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x58d3f83d nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x736e31db nand_ooblayout_sp_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xd25be494 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xe2f8ddfc nand_ooblayout_lp_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0xdc722fca sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x5ad70d27 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x8caf924c onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xbb7f21d4 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0a6bd4bf ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x27c53d58 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x292891b9 ubi_leb_write +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 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x67dbccfd ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x747027c1 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x77e717b7 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x87add695 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x87c55bec ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9289b9d9 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xaee6fda1 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc2c37a76 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd366aa2c ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xecf56108 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfa8798d1 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xcedf8458 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xecd02b90 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0e8b5cce unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1a4dcb2c alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x37ca2881 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5b2a0bce register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x70a9a277 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xdc627a6a free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x01289e5f open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0918d837 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2c321211 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4972b324 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4e16c44c can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x59f284d4 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5e28f2d5 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x894b094a can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa16844ff free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xac7f7833 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xcb4d7d12 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xce61fe1a alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd439a3ce alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xefa9748b alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf87854ad close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfaf9c5b6 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfbb21044 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfdeacac9 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x3e7cbd11 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x458fcb5b free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x49299c4b alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x578893ad unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x4f1fe3da register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xdb3af042 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xdbb96655 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xfcefebaf free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07b5abc5 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b3f6b9a mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c2fd641 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ec5e79d mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f9c471a mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1084fb09 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10f71561 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x122ab11e mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x124b7bdd mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x144f2270 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15bab856 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x168ef3d5 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16a1ed39 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1893ac5b mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ae74f29 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b8b248d mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fba7d53 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2009cc7a mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x204d014d mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20770104 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25406f81 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2560bab9 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28c24ab8 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x292162b3 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29963af5 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a68b604 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2cd36a17 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e362e56 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x304249f0 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x365febd3 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3782d4e8 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38247868 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x394a237d mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39842281 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39ee7ab9 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c9b3b4c mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d031b55 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d12a478 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e7c5333 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x400ec814 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4be54586 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cf349b1 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4dba9727 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ed46ff8 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f938240 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x557510a8 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x584e51e3 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5893e58e mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cbc4a12 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e69767c mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fd31d7f mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60a58ac0 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66995117 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d1fa6a0 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e826894 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72bff935 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73c901aa mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74b9e046 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77cb5a87 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7820fde3 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7996b0ff mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d697759 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fe97987 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x807436fe mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8380654e mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83c411ad mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84698834 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85876ebc mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x878a0497 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x879a3875 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87e9d8a8 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b9ffd79 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cb4ce23 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f752e1b mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x912b3a07 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9245a42b mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x935927a0 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9552d319 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95e8d09e mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x985ece77 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c39b98d mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c8dbbb4 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa45bdc7a mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5901da2 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa9a23cf mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb60ff466 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7f9f9c2 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8a85ec7 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb319f3f mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc15e9e7 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc47a9fa6 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc49c1085 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5e654f5 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbc2de88 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc209d64 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc6032dc mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce70c362 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce847153 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcee00f94 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0413136 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2a9e239 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd49ac66b mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5e2741d mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd900a4e8 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbe1d6b6 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc566149 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf8086dd mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfbc9472 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2628be6 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3b17847 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe488241d mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5f68b9e mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7c88dc4 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe82fdfa1 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeca16c84 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed784cfd mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee8b8eef mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef16f78b mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1c8179f mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4465126 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6a5e690 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8660804 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8b86ef7 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb27d9a3 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc80dad9 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd7dd91a mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00ec83a9 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01678ca2 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x027aa67f mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02b34a21 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x038d8f12 mlx5_query_vport_admin_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x044a6162 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0abaad0b mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c4dd515 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14618df6 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18a16a53 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a29fddf mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1aca831f mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d60b2a9 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2320918c mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29e38cd7 mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b3213c2 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c93c938 mlx5_set_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d3687f9 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31514f52 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33fa6c98 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34d014b5 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c244b62 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x406b35a2 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x423018d9 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f94ee6b mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5013a5d7 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x540d274b mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55156211 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x595dee47 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f316ffe mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f5e35fd mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64a73baa mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67caf098 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69445541 mlx5_core_query_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69c91a47 mlx5_modify_vport_admin_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ed55386 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x719c2f60 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82bb67db mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c66041d mlx5_core_dealloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90b09d94 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92340a18 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c3b789d mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e39721c mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3f4f9bd mlx5_query_port_autoneg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7d40d4c mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabb254a5 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac3bd4ec mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacc3e6aa mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacddfec4 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae680585 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1be2c82 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbd79010 mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1ef8550 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc81b5ed3 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8e0b162 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbe2d98b mlx5_core_alloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc73ce63 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccb8e3d9 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf4907ee mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6f126db mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbfc3550 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc776676 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfa74671 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe038ee00 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3e7f4be mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6ee2b8d mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe98616fd mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefacd296 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf11f3eac mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf32b7714 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4dafb86 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5019745 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6be1b45 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdf845ac mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x1a722196 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd4ab3625 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x85c51f3d stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x8ad16a65 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xeabcc5ae stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xf198474e stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x03214a66 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x6088acfd stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x74385eaf stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x845a9776 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x1177cc7a cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x1c979fa8 cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x2a0c14d8 cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x326efaff cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x365a6810 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x3d95b7f4 cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4d0584a1 cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4fee5220 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x564f8ff5 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa073312e cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa9929db4 cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xaf339733 cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xe6487dee cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xe9f39f42 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf0ef3b97 cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x344ccdd2 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x429455fe w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x685439a2 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xd158fcc8 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/geneve 0xda10f724 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x0ff80a29 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc1c162c8 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xcad3b4e9 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd33d286e macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x26357a9b macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0d9e0f95 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x13593626 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x50944036 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5c060067 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5deadb1c bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x88529ee3 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb399476e bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd612d5b1 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe6b6c92f bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe71c52de bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x219d896e usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5819dbbf usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5a086550 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x91d5bc1d usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x072df46e cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x29b32413 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2d176a9b cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x37da99a4 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x452f6915 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x593fbb63 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6f2840b9 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x95cf0d3a cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xea0e4242 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0099748c rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1656e557 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x87970812 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x94f28ea9 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x9e80b137 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc4fa56c0 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1fddccde usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x26f66f3b usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x296daa7d usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2b42bbf1 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2b68fde2 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2dfa0cfe usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x49d0c767 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x593b4e12 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5a4051eb usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5cc41036 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6a474599 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x72d14ffe usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x72e59908 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x73d66b08 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x754489ce usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x76dc0921 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8bb3180b usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8f996f58 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x97dbce90 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9b6e20f3 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9e8133c5 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xace04742 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb30a9199 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb7260dd1 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb775d25a usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbffd64d2 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc31cf818 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc4629620 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc756230c usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd93cb0ff usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xed2fb620 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf8a35b63 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x97daafea vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x14e7ccc5 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x158be915 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1a9613ae i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1f0d178d i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x344136d7 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x355a77b5 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x42238109 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5828414e i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5a0890f5 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x64e71a04 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x77f0808d i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7b5a046b i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7e980e03 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xbe76b40f i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd7a1da4a i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xff650914 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x7c95ddda libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ee27308 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaaad61d0 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdff65ec4 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf5a0da5d il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf98ff67a il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x025ee49c iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0f12cc34 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1b074767 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1cf7deb1 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x20038f55 iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x201feef5 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2227df60 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2719bee7 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2760b98b iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2898827c iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x33a14e7f iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3534452e iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4aec1904 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4afd2452 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5069ca68 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x512a2413 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5a318dae __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5b646735 iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c080529 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5ede3fe3 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5ee5ab54 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x674e8134 iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x70c74e90 iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x734e693d 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 0x832b6ea3 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8ab14d93 iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x95965ded iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9b97f85c iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xada102a8 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xae14ba44 iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb8979af3 iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc17557a5 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc4a8fc91 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc57790d0 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd0819ff4 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1a86c4f iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd49b4b3e iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0d096b2 iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe72f8525 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xebea6f74 iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf3926eb2 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x032cf1c7 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x67bf0f0d p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6c5c3675 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xa5d5717c p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb9e5e982 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc469b665 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xcb2e3067 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xfab26c50 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xff787961 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x24c61c79 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2c6bedca lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2d7deb90 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x360eac9b lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3ae5ba9c lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5a233d73 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5d47dfaf lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6a058386 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x78bdd830 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x86cb6277 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x87c8cff6 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9bba3e2d lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa76201d7 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbd5d38e9 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xca8f5683 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe77141de lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x0f7bb1e8 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x1cb317d6 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x34fb46eb lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x5cfdbd81 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa9bdcbfb lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc3ebfb92 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 0xd29d9e3a lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xd67cac21 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0cea64bc mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1b7e1368 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2ad4be09 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x45eaef62 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5e0c2ce5 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x69b84689 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x717bb708 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x71f7def7 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x76a0c19f mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x76a46b94 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x788d50de mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x946a4a5e mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9d58f7ee mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb192eb8b mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb24d8615 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcd41fad3 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd0c11421 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdfbb6d14 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe63e932f mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xee35697f mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x048dfe14 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1c5f707d rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3956cb5f rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x45f72af8 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x47bed18e rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x49126ef3 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x502c4e12 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x55a6e975 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x55ce7c4f rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5c64d3b9 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5dd281ee rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x64236c27 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6772d512 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x679323fe rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x706270ab rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x780b680f rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7f8e81fb rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x81d81435 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x85adce18 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8e9732c8 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8f114971 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9f406b21 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa35d72f2 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa6afb5b3 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaaa2d837 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xab92b93d rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xabe2f230 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb4ee1a84 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb88d87fc rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbdf4490e rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc0406e7f rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc2b53391 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc86b0f8e rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc8e14ee8 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd209e3fa rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd62757cf rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdbec8640 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe9608f07 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0547a390 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x13492169 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3f4f2529 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5c740b12 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x788fa6c3 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7adc6ca8 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x959f3a1e rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa1146db5 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb8df663e rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc3abe86d rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe27591a7 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe2aee4c3 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfb8fecb2 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x028d8fa8 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x09465876 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x09df2e05 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1d8ccf46 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2ae6b21f rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2c93148a rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3a643fa4 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x41daaafc rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4b851cf1 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4c178ee5 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x50c22463 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x531a60fd rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x594665d8 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x65630a77 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x66574ac5 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7bc88dd7 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x80655e6b rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8992754a rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8a025b3c rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8e5424c1 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x98617480 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa3045c32 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa4044dff rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa526dbc0 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa8ec3d43 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xad4086f2 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xad89352e rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaf21a638 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb1f745ea rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc84471a5 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc91a597d rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcce92e24 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd123453f rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd5dae46b rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd642334a rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd6f73130 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd850b64d rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe3de1a78 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe5f60e87 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xed018eb5 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf2723a4a rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf94e6691 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf96421c4 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfa937923 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfadc70ac rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xff8dffdb rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x064981c6 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x13d19c66 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x30fc9c60 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x5bd21574 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xe6026a7b rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x2ade681c rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x3478621a rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x970cff14 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x9bb11279 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0d4f7a73 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2459ccf2 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2fbead1b rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4ae25f06 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4b11ea86 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x64317b1f rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x66576921 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x98c92287 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa3878cb3 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc95f5d21 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd675c6b4 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdd0a1356 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdfc036c6 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe9479dff rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe94b693c rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xee908385 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0a1ec4b9 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7763f1cd dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x81fdf6e1 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb2abcf6a dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1165587f rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1b87ae8c rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x25ccb572 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3113f9a8 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x379bbcfd rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x39d5a5b8 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x41747eab rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x449ad11f rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4b950f8c rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x59b73322 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x60b948d0 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6f214d28 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8d452e0b rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8fc7c579 rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x945eb431 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x981e4869 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9c0149a9 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xae6a6f6d rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb388e95c rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb8ec2f76 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc3f238c2 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc4264cec rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd55b87fb rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd85d05fd rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe523a96a rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xec2f0e50 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf57be9b5 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x01706ff1 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x01827761 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x05272985 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x18d2503a rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1a5081e5 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x36ac0e46 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x442fcb95 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x517cc61a read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5430cdba rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x59550e9e rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x744b9a18 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x78a2173f rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xadb1a9d5 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafcdc668 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb6534e7b rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbef46661 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc2fe45f0 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc60f0d07 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc739ee4b rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd4c8cccf rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe6575401 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x23664b79 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x2e0a2ab8 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x4d4af339 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x9e0e82a7 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x0c785184 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x31f979dd cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xa3503169 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xc94c80f1 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x4c4a67de mei_phy_ops +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x7a812b86 nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x8c365a69 nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x1fa5f766 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x7dd47696 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x7e6d7171 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xac3e85db nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x01434be9 pn533_unregister_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x5d0fe27b pn533_register_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x6a4a6f89 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 0x0320d513 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5610d584 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x74137c17 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xbf95813a st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xcc52899c st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xcecfbd43 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xef688acc st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf350d1fe st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x1030bf12 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x120ba5bf st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xc15df39e 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 0x6dbb1f1e ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9124eb59 ntb_transport_unregister_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 0xf36fc03e 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/nvme/host/nvme-core 0x00f39005 nvme_queue_async_events +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x01ebddb9 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x04a4d0bb nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x24be7fa0 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2b3d2594 nvme_start_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x327858b1 nvme_max_retries +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x34230bb6 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x374d08f1 nvme_queue_scan +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x480ad4b5 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x48d5137e __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x490da578 nvme_init_identify +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x519a2ea4 nvme_requeue_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5e5771d1 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x70bb13ec nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x75c56f59 nvme_put_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x89562855 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x902078b5 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x98f833db nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa9fc18c8 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcc29ee31 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd0996e0f nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd683ea78 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe6c6d0a7 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe818fb89 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xea59dc7c nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xece2d529 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf958ab24 admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2e3544f4 nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4878e5f3 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x749e76ee nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x80adef16 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8982b3ce nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8a16a08f nvmf_get_subsysnqn +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x932d7c4c nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb950fdb7 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd56e81e3 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xfce68f4e nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x13b609ed nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1a206800 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5d75f1ab nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9485c32c nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa2bcf58f nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xdd94fe6c nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe7fa5df6 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x17d98a26 nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x40238a9a devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x42d18140 nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x68758fda nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x81dd491b nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xa3bccaab devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc2d7b649 devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe18960ba nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x0d9b2e63 intel_pinctrl_resume +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xaaadecee intel_pinctrl_suspend +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xb39e5721 intel_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xc0655697 intel_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x51077a73 asus_wmi_unregister_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xe23e8c47 asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0x51552fca dell_rbtn_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0xa060fe7d dell_rbtn_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x6fc812f8 dell_smbios_clear_buffer +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x8a79b3de dell_smbios_release_buffer +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xbde33baf dell_smbios_get_buffer +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xc2871e79 dell_smbios_error +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xd816c94e dell_smbios_send_request +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xf5197de4 dell_smbios_find_token +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x56235c72 intel_pmc_ipc_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x75068282 intel_pmc_ipc_raw_cmd +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xdea07053 intel_pmc_ipc_simple_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_punit_ipc 0xa6c87106 intel_punit_ipc_command +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/thinkpad_acpi 0x706cdcef tpacpi_led_set +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x3ecf6cfc wmi_install_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x64ebe677 wmi_query_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xa9b7afd8 wmi_set_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xb5a6ebe2 wmi_remove_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc5e3dddf wmi_get_event_data +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xe2426710 wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0x4933f6a7 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0x606f21c9 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0x866dcbe0 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xaaadcab7 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xba882be9 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xf5702999 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x6365870a pwm_lpss_byt_info +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x85e834c1 pwm_lpss_probe +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xafcf8794 pwm_lpss_bxt_info +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xb563cdb0 pwm_lpss_remove +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xc34d815f pwm_lpss_bsw_info +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x1545d869 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x539895b4 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x6c4de57f mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x2185d4ad wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x546336d8 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x925a165e wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x9f5310a4 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe863d7d1 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xee087056 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x60d6484c wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0646f12f cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x08922b73 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1bdd3384 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1cb85e28 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1eec23cb cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x205daf96 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x22354cf2 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2d0a40c9 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3380169e cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3f451c8d cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x44212e5d cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5a6b50c8 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x61fd2f8d cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x67187a20 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6dd51326 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x76ca4aa3 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7c784ef0 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7ea9e12c cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7f3d0d56 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x80b2bbd6 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8256d954 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x86c52157 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x89247920 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x89dca1dc cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8cb5e156 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8d27d4ed cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x96580d05 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9b59cfd2 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9c6ca0ce cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9d76c7f3 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa26503b2 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaa734737 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb0b56fe9 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb1da93cb cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb38e59cd cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbb147cea cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc5a05c22 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd37a3b3f cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xda6439fb cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe552b855 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe9e061c5 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeb2a4b17 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf686d51d cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf7524b9b cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfa12f504 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0eecbc13 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x25f44e0c fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x28601dce fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3f6f288c fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4081653c fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4abb203f fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4d44f2f4 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4ef8a84c fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5c85b5a9 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7a0e5f48 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x98142fc2 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9c54f6d5 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa72380a4 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc52eae15 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcb29604c fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd55a0f13 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x15d7c454 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x611f5864 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7b2fd53c iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9a0d7613 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb75ae7d2 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xf92350ef iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xff455e11 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x038a39d3 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x04234745 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0c2e8036 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x16429303 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x206ca723 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x207b1939 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x258beced iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x268c985c iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x28813c27 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2cec6b1d iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2df950bc iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x32176dea iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x32769e52 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x37c5a7b8 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x38e4efa8 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4461a991 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x44ba3ba1 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x46c169f9 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5670b7fe iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5782da33 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x68cee4f6 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6b10cab1 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x745960fc iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x85e49ac5 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8632d46d iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x86cf2356 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x90e2d6c2 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa3d6e540 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb06a2611 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb5381bc7 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc29facd2 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc69f1646 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd719dc99 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdc8a6d54 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe33071e4 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe5b5420a iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xea57389d iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeba60ccc iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf5a182e6 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf801d64d __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfeb17eaf iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0152db45 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x10f74a5d iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x21fd1730 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2af836c1 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3b2b90f6 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x690f2181 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x69168f70 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7b4a0b0d iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x86c8187b iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9289485b iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa3bf860d iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xba78e0b1 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbf0fd956 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc3464da2 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf0a421cc iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf3d6f866 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf9e2c514 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x14570161 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1a72d628 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1bae5a37 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x24e4b03f sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2bd49367 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2f4afc28 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3d13a846 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3e36e02b sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3f56ce4d sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x44a58e86 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5b54d5fc sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6e4115d8 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7c9b9f7d sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8c6a2f24 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb14e1e58 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb18f254b sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb47829c3 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb5c9d2e5 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbf14a709 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcd15be76 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcf0607d6 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd639ece3 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xebb80206 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf195f525 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0109c520 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0bdef9a6 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0ca7b37e iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0e8179e0 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1b7df768 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1d72c2c8 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1eed6651 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x316a5cac iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x31ebaea7 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4263b8ae iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52e6e562 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60ab46d5 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6542defc 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 0x6f520a8a iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82fc68db iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x91c0dbd1 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x92a69df9 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x982a379f iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa5a01a3a iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xad6aebcf iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb1f35fe9 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb32e452b iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc22e4430 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc51729ec iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc62c0b18 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc770c0a7 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd390c18d iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd6e12a06 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd7002a8d iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdede0e8e iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe3b47904 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe94fc787 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe9588d96 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf106c540 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf32a201b iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf4b0b287 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf5bfda31 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf676011b iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfaf14728 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x01705bff sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x5e90e3cb sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7616c8ff sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc153e1e9 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x35a28154 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 0x077b163e srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1dae94a6 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x41fcdc2d srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x744cd5ed srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9ec61bbc srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe535419c srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x25369fef ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x2cc71965 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x6ca2b48d ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x99e5f1f5 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x9db721e6 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xb4646145 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xbe99c55f ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x0e5ea183 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x2e84e960 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x96c8c7d4 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xa504639e ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb29dc157 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xc2ea9a38 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xca74c1ac ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x01fa6b88 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x95dc4405 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9e76677e spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xd4cfe576 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xee4dc455 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x12e5c331 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x6339b98f dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa2b5a50e dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xdd51faa1 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x09f791ee spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x35d72475 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xa2a954fd spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0df340af __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0ebf1905 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x11140b64 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x15c7128c spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x39b669de spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x528d15c1 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x65077cc2 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7ad468a6 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x827b6c73 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8bd84d06 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x90a838e9 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb9737a6d spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc2f8235b spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc9c81311 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd85f7218 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xde008c5f spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdffb64cb spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xecddf96c spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xad083dff ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x054315d4 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x073e1db4 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x07d5f273 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0eb94757 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x10fec5e4 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x12af1d44 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x12dfa6a3 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x193885b2 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2786f63c __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x33aa3011 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x41d203dc comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x50326865 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x52aa9b70 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x615e463c comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x64c179d6 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x67e94890 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6e9d2077 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7017b13f comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x751db8da comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7d761502 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7fdea35b comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x80393f97 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x85593d7e comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8c16365d comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x99a657dc comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb588a105 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb8ebb2e6 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbe4bc575 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc6f93a79 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd785beae comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xda8624cc comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf6741705 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf7a7ec84 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf9238bb8 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xff70c150 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x049b1b79 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x08607174 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x3b6be22d comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x3eb5cb1a comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x7091aa81 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa9b1eeca comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xb425b65d comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xb75db3e0 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x02c08fd5 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x131ad691 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x1855584f comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x59334d84 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x8742f609 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x8a8e67d2 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x9270387d comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x04036ce8 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x0893d17d comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x30f543ef comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x3d951fe6 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x6959a130 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xfd788f88 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x338aa748 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x311715dc amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x7d483d2d amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xf1ecaec5 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0a873002 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x171c5239 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x22e80850 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x44be6818 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x52bae8cc comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6d7806fc comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6fc46c8b comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x72533922 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x761d63cd comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x8320e22f comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x8e82367d comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb1fceb0a comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xdd97caae comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x1ac76138 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x68409481 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xf1df7a25 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0cb9f0eb comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x914211d1 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2368ada2 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2ca3f3cc mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x34662896 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4109eab8 mite_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4a697a80 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5850f84c mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5f7506c2 mite_request_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6234e3cf mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x659ed771 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x690c8771 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7eac78bb mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdba72c90 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe7016a13 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xecbfa9ad mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf2a98438 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfdd95d34 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x1397ef87 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xc76c6c41 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x0b47560c labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x372c3fe5 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x481c7a51 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x4939c5a8 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x4a26b982 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x0e7c65e8 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x144da045 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x28a0d4d9 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x88a34bda ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x94e8b7ef ni_tio_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xaafb2c31 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb09eaf15 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc0914150 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xca5ae871 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xcf0176e6 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xf450f578 ni_tio_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xf55ecb2a ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x0774d6ea ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x4f853d16 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x6eb35542 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x982f3904 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xaf177b91 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xfad2f1f0 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x196a3ee7 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x3d589c95 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x54f8dea1 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x7937c3c1 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x9d649e19 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xae88cd04 comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xf83def30 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0x0a814806 ad7606_probe +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0x66a9d3af ad7606_remove +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0xde8f09ec ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x7e8de3fa adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/lustre/lnet/libcfs/libcfs 0x444310b4 lustre_insert_debugfs +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x0573e469 ldebugfs_add_vars +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x436c9257 ldebugfs_seq_create +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x4cd92f70 lprocfs_obd_setup +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x4e1ec85d lprocfs_obd_cleanup +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x57a128ab lustre_kobj +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x6d239ccc ldebugfs_remove +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x7bf00238 lustre_sysfs_ops +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xac57256a ldebugfs_obd_seq_create +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xbc1e70a9 ldebugfs_register_stats +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xc75afc1d ldebugfs_register +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xe03e0bcf debugfs_lustre_root +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xf318985b ldebugfs_add_simple +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x01c90cff cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x02b673fc cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x03cd5bf8 cec_transmit_done +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x469af5dd cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x55738d9c cec_register_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xa22b09ab cec_received_msg +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xbabe0add cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xc8a6d1f1 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xf89eb2da cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0af60f41 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1731c3ff most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x188127b1 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x2d3542a9 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x35c9bc77 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x3827cdef most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x45a51a8e most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x70a5b559 most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x989d8905 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc33a4205 most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc6541d22 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xeeda61a6 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x04717721 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0d2ac51b synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2ab8daa7 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5bf6ffc6 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x857dcff3 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8b3aeb81 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x914c90c0 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xa0a7b9e4 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xa872a0b1 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb121e8d3 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe630461f spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xfc9f6c3a spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x132817f8 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x1d29d8b5 chip_wakeup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x76838e84 WILC_DEBUG_LEVEL +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x77fdf376 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x79ca53aa wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x83b8509a chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x89d1f51d wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xc35d57e1 wilc_chip_sleep_manually +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xe3428114 wilc_netdev_init +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x2a3eea18 int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x3e8a9f8c int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x10c9babb intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x8dcb4fe8 intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xda18b785 intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xf515a360 intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x05dc03ab __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x15d8d54a uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x9367a4fe uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x0e929669 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x630498bb usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xbae3e1dc ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xffe2f1e1 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x045105cd ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x06d4806f ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x0f14f32f ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x65079b14 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb8569a29 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb8f0a2d9 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x12c37dff gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2762d3a6 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x480179b1 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x49606db8 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x64a10534 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x65da4436 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x767d587b gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x87d094d8 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x96c63ac0 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa37301f0 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa6e94b7e gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa7099068 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc4ef3450 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd1b6b732 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf5fe6e68 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x0a677375 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x719b1a8f gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x430a24cd ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6cfebdd2 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x7c0ab23d ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x00616ca3 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x080f52cf fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x138bb086 fsg_common_remove_lun +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 0x17ad3085 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address +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 0x2d10b6a7 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x38f04250 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 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x48a46364 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4ad33cc7 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns +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 0x56f2e667 fsg_store_ro +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 0x82b3c68d 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 0x987bc0cf fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put +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 0x9dd709cb fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa0239ec3 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa238623c fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get +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 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 0xc0d34946 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd8550612 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdb59633b 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_rndis 0x0167957c rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0fc40404 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x17c1fdf2 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4642ce01 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5879bc81 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5e74883c rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6449cfb9 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8d42c4d9 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x97d42d58 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x98f06ee1 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa0278a68 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb99c9eb9 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc338f69f rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd156f02d rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfa6b3d2a rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x09d32b76 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c0d0ba1 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x100d405e usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x23071fcf usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2469fc13 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2998cfea usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2fc1c453 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3031b45c usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3b8009d6 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3d95d959 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x44fc6f63 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4ae7b78a usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4cc001ac usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4f94246a usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5f27aeaf config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x77f68538 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x825671dc unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x90c43434 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x95c23697 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb23222f5 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb2be775b usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbd7a5acb usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcbbb2494 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcc6696e9 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdaa7b15c usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdf265b34 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf0a39723 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf394bd15 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf435522f usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfb9d4712 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x009774a5 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x009d1d8d usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0c900b81 usb_ep_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x19de0352 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1a69a2d4 usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2364ddb6 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2e9029b3 usb_ep_fifo_flush +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3a53b0d2 usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3c01002c usb_ep_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3d7d7643 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4ef2bd5a usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5162f30b usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x51849a0d gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5401aaf8 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6901879c usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7823daed usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7eb6e8a6 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8bd6af9a usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8d0edf94 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9b99b5ef usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9d2d8e8c usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9f33f05a usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa015cc49 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa7d87e76 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb3aeb6d3 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb6fa8d98 usb_ep_fifo_status +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbb091123 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc16c8fca usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcca2a96d usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xce3d337b usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd16b6bce usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd539ce30 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd67d8fa1 usb_ep_set_wedge +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd8d32b10 usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe05de4cf usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xedcaf8af usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf0088ed6 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x6018de68 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xeff15053 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x004965b4 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1ff0d8b1 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x70a1fabd usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x75d8b797 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7fb0d921 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8e96d269 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9171159b usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbbdaaa7e usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf9f6e988 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xd31a6da9 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x069faee1 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x890dbc8e usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x8c8003c2 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xc7e955e2 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xc87c7a7f usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x1500e4f1 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x60b8d1ea usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x006b39b1 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x31c281ae usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x371b65dc usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x37d48b58 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4b60feb3 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4d271132 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6dbc7bdd usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x74bfcb74 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7a237d6b usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7e995d62 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7f398c93 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x90256fca usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa54d6036 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xaec3d471 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb78ec965 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xba79c9f4 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcd87fcc4 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdcd57da0 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe385cc7c usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf01d6e59 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfd2bee65 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1e2598ae usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x319ba0dc fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3433ae1f usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x36e8017d usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x37b97ea3 usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x48f3bdd5 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x52f0d7eb usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x663f7c35 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x688bbbff usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x732431d5 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7beac871 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7c5677ad usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7da9de65 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8afc0eae usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9a2f627c usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9cefd5bc usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa64a8af1 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xaaa5583b usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb9f82c71 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xea958e27 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf0192d7a usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf2d5c8d7 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf99eb16f usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xffa15f8c usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x01816950 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0260e9f6 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x066a88fa dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x06c58149 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1b800072 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x48cc58e8 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x513b17b5 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6c2047be usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x861c26c3 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb4713fab usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xce7c64fa usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd8620d16 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdf5a4c58 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0e9303a2 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x465b27d6 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x48dfc74d rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x6ae3c0ef wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x9bb8d1f0 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xab81895d wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc7bdf9ca wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x04337958 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x061f3600 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x345e96bc wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5610723e wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x6f570d3b wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7007bcd2 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x80669ea8 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8ed870b3 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9789cf9e __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb3bf6e9a wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb629c7f5 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc4183f1a wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xdc917a69 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe655504e wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x7f3742b7 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xd658a5f1 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xe6ba1b8d i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x15384458 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x458e4e23 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x7a5fa0eb umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xa2876a50 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xa5f286e4 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xd06574b9 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xdf1e9489 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xeddaa4ad umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0382a93c uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0785d590 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0bf9ca32 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0de214c6 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x16ecc28b uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x17f0add2 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x21cd8b26 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2baa8580 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x31cfd2fb uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x32786078 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4041131a uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4e927afb uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4eac448a uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4f14f69a uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x54270269 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x58c41bf7 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x75ad8ab1 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x792d13e1 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7c64cfd5 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7e88b3f6 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7f710f86 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x83d04d94 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8dcf36ff uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8e638745 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9335cb89 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9b84f1d8 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa9c9c247 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb1e9066c uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb3eb9366 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbe4a6fae uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc7747d79 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc7877d10 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc7b0dddf uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdbb3dcd3 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xde047561 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe5c427f2 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe5d0b220 uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/whci 0xde45afb6 whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2513eed0 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x43a44a87 vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x50fdf119 vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x51f16cdb vfio_info_cap_shift +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5bc78ba2 vfio_iommu_group_get +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5dfc1ac5 vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6040b643 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x645d4bdd vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x68cf994d vfio_iommu_group_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7f55b371 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_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_virqfd 0x1e44f197 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xf49a6c94 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0e38c630 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x114a9cc9 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1b1b9103 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x20f3d07c vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x236b47a5 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2f02b919 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x36a9e9c4 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x37484a6f vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x397664ca vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3a645e6e vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x413ac035 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4e0629ed vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x64def042 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7050bf9a vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7260368b vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7aa34aca vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7b2becf2 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7c5ee636 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x806ebf58 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8772084e vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8ef8eb27 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x91293616 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x95acf838 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9a284841 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9a3917c9 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9eaea100 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa0f1f3ed vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa1b419ee vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa239f23f vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaa92d4df vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbe40d9aa vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbec0658c vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd27a9e09 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd313b4c9 vq_iotlb_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd925de52 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeab38729 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf6bcc0b2 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf750ac7f vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfe2db50c vhost_poll_stop +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 0x0e14bd8e ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x378b8817 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x472683ab ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x69321a80 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa7564d1b ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc11fe864 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe2d804d7 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x10c3de81 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x68b37591 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x733fcf37 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x93bc1ff5 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xaf44e906 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb9ed809d auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xbf12337d auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd9e7d5bc auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf3c28a02 auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xfe1aa162 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x17f3aef8 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x9a266f99 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xb3037d35 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xaaa8cc8d sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xd66fa984 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 0x1cc4429d viafb_find_i2c_adapter +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x22a7af24 viafb_dma_copy_out_sg +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x292da7a2 viafb_irq_enable +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 0x79e6190a 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 0xfff2dfd2 viafb_gpio_lookup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x42d1a6ac w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x473e5954 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x572e0afe w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x593ef85e w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6d5215c6 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7eafe02b w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa40dbb6c w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xbdc176a7 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf9abe307 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x78823780 xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb1af07c2 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xf12944a2 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xf5da49bc dlm_posix_get +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x476f493b nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x47892e63 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x629a1788 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x66e850cc lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb432b43a nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd2a26b7e nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf854c7fa nlmclnt_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00558aae nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0134b8b1 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01a5db88 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03343b76 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x044cfdee nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x093d229b nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a3a995a nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c4bebd1 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11113b97 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11ea56bd nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16039654 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1665a083 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19df6b16 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a31925c nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1cbcce24 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d928c66 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f506c68 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23a3ccfe nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23fb8ade nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24faea5c nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2545ea1c nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x264a48c5 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26e9727a nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27b01991 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f06420d nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fe2f0ef nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3299ba3f __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34e6aa94 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35d92446 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37efd7f0 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3cf1790d nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d8d6c75 nfs_alloc_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 0x419be93a put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44835c25 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4574c662 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4695fbeb nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x491b463d unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bc69560 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bedccfe nfs_commit_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c432995 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d2e5d52 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51968a7e nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5240f577 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52e69464 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5363467d nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57c9202a nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a9953ec nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c0bbed5 nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ca8e923 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e210d90 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e2b6ce1 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61d0b82b nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62291c65 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x644ae3ba nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67bfa866 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68dbe96c nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x695365a2 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6994757d nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c07f1cb nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6cf27bec nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7045566a nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x719176b3 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73a37495 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76a68252 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77ca19e0 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a0a24e7 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fee6476 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x821c6a65 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82aa0025 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82e88616 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x833eb03b nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x848352e0 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86675cc6 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86802c14 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8944ec22 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a54ebb9 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c5c2faa nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c98d6ff nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d45d547 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8dc6197e nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f4ac3e2 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a8490e nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92c25492 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93855020 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9631a25d nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96e2c268 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98e707df alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa121efd3 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1a1ac40 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6575e25 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9363ed6 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadf74435 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb17716c6 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba081d95 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc727446 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc9bb26d get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0fafcc8 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc16fe4b7 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc709b061 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7e49939 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8bd45e6 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9255fbd nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca01368d nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca38eb3a nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbe3cd73 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc5c9cf9 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd097f69 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2d62a75 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4c7f219 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5707e4d nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5b5675e nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd81cebc2 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbfbba4e nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe34d01a4 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe48b67f1 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe66bc71a nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7d735d0 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9932451 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeaeca777 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf293c2a3 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3337e02 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3e15c9e nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7345b26 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf98c8782 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb9cb662 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcb93dee nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfde229db nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe908eec nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xfb976c1d nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x086e04db nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09909701 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ace112e nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x124aeaf3 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b7e71c7 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e364476 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x229db62b nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2796f596 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a7a6c5d nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2af22aea nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e48a8bc nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f33926b pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32517f65 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x368cdd65 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37e32cc9 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d7d5c29 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3db75a73 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3fc14504 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x407693f3 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4bc627d9 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50a4aee4 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x52bfd08c pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x559f4e72 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56d22443 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6058dcc2 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x64638fb1 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x64b01627 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6580a5a9 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6675a039 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x67ab5f19 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b81104b pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6cfa0fe0 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d0b7ff2 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71abf7b9 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74c68c31 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7522b64b nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x765c4fde pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d948953 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e5b1fad nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ab40b56 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8af9530d nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ef51b89 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98caa774 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9facf9b4 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa16f3855 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa38fa4b6 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa733a292 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab07c545 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaebe1762 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb286c611 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb7026eb1 nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9207752 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb0ec5ee pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcfb87b5d nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcfc3acda pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd3f54a2f pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd769f56b nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6693f36 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe86965d7 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed7465b7 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf48090a9 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x0a700bfc locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x33716bbf opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x90118d36 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xaef1ebd6 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xfd25d5e2 nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x05c42cdd o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +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 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x440c5a71 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5440673e o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x57ee1987 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x86b5badb o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xaa325b4c o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +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 0xfa571518 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4e4b13ff dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6da3dde7 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x704f598e dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x867fc0e8 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc77b779f 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 0xe1490525 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0b5bc628 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4e453d3b ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe5758b0e ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xefb982bc ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL kernel/torture 0x1022a642 torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online +EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0xc16d2c65 _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xef1ef74c _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x6e7f83c4 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x70ce6768 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 lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57861324 base_inv_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57d39367 base_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x882ce5fc base_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x9e0112d0 base_inv_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xaedfbb15 base_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xc8fca8a6 base_inv_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xd11741a1 base_inv_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xe3d900b5 base_old_false_key +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x1b2fbe5d lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x8e293c7d lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x1742449a garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x3b854210 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x5219585c garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x5e3f045d garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x833a280d garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xda1020ad garp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x0f2b28fc mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x2ba08742 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xa79fe10a mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xb46cc660 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xefd80190 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xfdf3602e mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/stp 0x234d8738 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xa78bc56b stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x3d692801 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0x9977a405 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 0xfe93cc93 ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0fdb7db3 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1c707da5 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2cd2257e l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5ff4b696 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6a7315d9 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6cf7ef4a l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd2691dfd l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe6a52f78 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7f004aeb br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8bbcbd79 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9753d8fe br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb36848b4 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbbc9da80 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd23b39ee nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd693ec0e br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd7bc1ef4 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x29d425b8 nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x7bc8ddae nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/core/devlink 0x03971016 devlink_port_type_clear +EXPORT_SYMBOL_GPL net/core/devlink 0x0677eb2f devlink_sb_register +EXPORT_SYMBOL_GPL net/core/devlink 0x1018f142 devlink_register +EXPORT_SYMBOL_GPL net/core/devlink 0x1a9a0482 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL net/core/devlink 0x3a3db526 devlink_port_split_set +EXPORT_SYMBOL_GPL net/core/devlink 0x3b9ebf63 devlink_port_register +EXPORT_SYMBOL_GPL net/core/devlink 0x40f8fcb2 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL net/core/devlink 0x4f783cb5 devlink_port_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0x53ac158e devlink_free +EXPORT_SYMBOL_GPL net/core/devlink 0x8a912097 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL net/core/devlink 0x92b97b1e devlink_sb_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0xb403f1bf devlink_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0xbfba46c6 devlink_alloc +EXPORT_SYMBOL_GPL net/dccp/dccp 0x02e8c3f3 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e51f110 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2a897abb dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x33999521 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x36516f5d dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4049af89 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x49ffba98 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4c96828f dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x577e832c dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5ba9faf2 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5feccaf1 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x622393fe dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x63615da1 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x66f795a4 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6bb8d20e dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x73246748 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7f15e6a3 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8503bdd2 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8ae34948 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8e47a162 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x94046618 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x96b40e3a dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9e32ad80 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc385a1f5 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc8c929d2 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcb30aabf dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xccf55346 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd2acff4f dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd60089b8 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd6ec7e2a dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd6fae0ac dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xda4405c2 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdf9a154b dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf752e0b6 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x59ff574f dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6e5e81b1 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x92ed3c7b dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa3a028a3 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xbdf79e5d dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xcb9bc483 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x0f8028e9 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x57279504 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x973db981 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xbe04553f ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ipv4/gre 0x1e4aec33 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x7273c3c5 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3d8bbb2d inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x47327c03 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x736f0d3a inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x885f89b7 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa0446f2e inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc2434860 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc67beed7 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd5373dc4 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xdacec823 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x351191ca gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2de09048 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x318a0739 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3565ef63 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4dbd5ed1 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x50c7c55e ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5923f817 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5e760477 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6e24a9e5 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x73adf68b ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x815c1bd4 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x93cdb34a ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa39b73fa ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaf70df16 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe0a7fd3c ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xebc68fd2 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xe0c4b39c arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xbdd5eae2 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x55b01d72 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x3a7bc3d9 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x71cf9b91 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xa2e2c422 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xdc810752 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xe6cb7c53 nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x884c738a nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8678524e nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x879fcc16 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xea388319 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf8692aaf nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf91f72d7 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x38c2e7bf nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_nv 0x1e2c9204 tcpnv_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x42005aff tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8272fb0c tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8a982b1b tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x94d8afb7 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb4a01ea7 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x05654085 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0b2305b6 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x14de261d udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1946e165 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa9ece120 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xac4208bc udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb26077ff udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x05d4d960 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x15f4a226 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xfc6ca7be ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x0307423f udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x87ed11f7 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x8c0f2ee5 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x073683fe nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xc3960479 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x4ae1c20b nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x81143656 nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x8b26ad70 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xbf1d4b59 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xe3efdab1 nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0xa5a458fa nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6e5be4fe nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7b57461b nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x957c5783 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd5dbeae1 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xdc6fb67a nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xcaa6de8a nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0790da42 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1b3d6cb1 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x24a09ff9 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3eec8b7f l2tp_session_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x474450ef l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4ea5f21b l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5bdb99f6 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x69312aaf l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7f584fd2 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x819e413c l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x88344f37 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb03d5e51 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb2474f99 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbdb8f90c l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc9d45645 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xca6039c2 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x1af08431 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x069e6bf2 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x09230928 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1c83837b ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x241bc643 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2581f838 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2ebbdbb2 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x33afd28d ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6578e93a ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6ccbfe58 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6cfd0a21 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7e00567e ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x91ea9fcf ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x947c0339 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9c25c97e ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xaba87076 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xafba549a wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc3e1fff5 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdff4780b ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xebdf8959 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb419215f mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc31b6c2c mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd0762e13 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd4c20a64 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x136cde08 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x179da56a ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2018dd9f ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x24a1afe9 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x266b8f2a ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x28be8aeb ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4262dc6a ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x53fa7165 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x64b6c291 ip_set_nfnl_put +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 0x873eb9ac ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x92c8a48a ip_set_get_byname +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 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xda2a896a ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe26e0e53 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xee770fb8 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf047aef5 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf5205645 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x00969390 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x5939132e unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7e91d502 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb856c6f1 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x081094b4 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d6c6826 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e5bcfca nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ef03ee1 nf_conntrack_get_ht +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x110f0aec __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11499d64 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1497885b nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14f6b5cf nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14ffb9d3 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15676b60 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1830f682 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19e575c6 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a47e953 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e8a608d nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x222a6d59 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x234ef07f nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x255a4644 nf_ct_l4proto_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 0x2a069400 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2bd31744 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c6df8c5 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31678280 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x331b1714 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33bd55fb nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x360aa52a nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3711f03a nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38366f15 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38f6ec32 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f883007 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x411c40ed nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4289b80c nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4371a23d nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x49515d20 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x50ab80d5 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x532486a6 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53575678 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56642c77 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57cb1580 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6189c781 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a18dc58 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a7fc91d nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b3047f1 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70a252bb nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x750ae1fd nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f4c1483 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84eb3ef3 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c18d3aa nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c2d5251 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8d39fe1e seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e4a55f9 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ea28099 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f810725 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f93b1b2 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x960849fc nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b909ec3 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ca0a972 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ee51efe nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f69c388 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa029de47 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa11d9d14 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2fa1c47 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa34cf10d nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa68dad5c nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa83cc438 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad79016a nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8a36ec9 nf_ct_invert_tuple +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 0xc5bfb9c1 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc7c888f7 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd57fbd12 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda134dab nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda423908 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd78af08 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdfffb178 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1cf67ad nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3574f89 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3662efb nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4c71315 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe5310ef8 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6d594b4 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe772ff56 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8c24ef2 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea9b3d37 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee122a83 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf14adcc0 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf29150e1 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xce83bcc8 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xe61ef0dc nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xfd16af5c nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x449a5482 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7c368cc8 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x81de84a4 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x90c9badf nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb1944a19 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbb90b2e1 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcc8b50c6 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd68b85fb set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf22f44a0 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf2ae70ed nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xbccd7bc5 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0f4be423 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x2e935345 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x560e0efa nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe60e7d05 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x1cc8b7fb nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xd9a74d8b nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x245dddaa ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x783bdb14 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xcc714b45 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe55cb5c0 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe9e82420 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xeeea1d2f ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfb90436d ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x2cdcf62e nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x248079d2 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x41b9f28b nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x4392effa nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x55e3acd2 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xb16cc9ca nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xc010e01a nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x13aa874d nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1833c437 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2c3f4bbc nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x332e22d8 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3c4de713 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x745385e7 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8b05d323 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x980104d0 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdd1b27c9 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x420b60ff nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x47dc15d8 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5f6f39b3 synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x76b81595 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06555b4a nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0aa84ef7 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4339fb7f nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x452b13c7 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cd96dea nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5396b6cf nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x54dee3a8 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5c797afe nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5f1c02f0 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x64d9ac56 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7c05f444 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x80bb31b4 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x81da0367 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x858def3b nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8bf48016 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x926cf1bf __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa50d17ec nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc58747e7 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe48adc81 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xedc62394 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2f6059d8 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x33349f8c nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4f5766f6 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x621c91a8 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x90777564 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xca9b44b1 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x29302fa3 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x4c3c6731 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x7a17ccc2 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xd719fdc6 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x5103d697 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x9538964d nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xc06ae4c4 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x03d9b474 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x2130f434 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x251de980 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x350325a1 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x4444b866 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x4f11cd0f nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x76a83c21 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb3a333b3 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x2324a4f4 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa4f14e66 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xab67bb57 nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x95d8dccb nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xc1da579d nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xdb56ff9b nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x11ef2ccb xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2e74ac79 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x38e70831 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x46c2e08f xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4b3ce49d xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4c7b0097 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x54ea3d24 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x575db2c4 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x68f7cb01 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x835b0863 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x87ba9235 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ae62bb0 xt_tee_enabled +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 0xd064e220 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x4c32c169 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xb7459345 xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x8e28e5d9 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x924f34e0 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xe011566a nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x517e959d nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x6459e93d nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd608bf6f nci_uart_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x16dd159c ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x21aec37a ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9e0b1486 ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa8438e26 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb6c2c062 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbb7845cd __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xca6f2519 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe66e639e ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xed76f8af ovs_vport_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x01725c86 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x1a8e7780 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x1f427625 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x1f94567f rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x24f7cf03 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x2a0152f8 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x2a837f70 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2cfc4435 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x33288f30 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x3e9dd142 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x5b864793 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x5e666850 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x61183bbf rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x6246b55a rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x7aa6cb77 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x8175d200 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x9a97741a rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xaf2edc92 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xbf48fe80 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xc1b37ade rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xcf812b4a rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xd5a4639f rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xd9fdba0c rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xde12308a rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xde673448 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xe77658f6 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xe7992f79 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xec4ab4cb rds_info_deregister_func +EXPORT_SYMBOL_GPL net/sctp/sctp 0x065cdd85 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x55070ccf sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x6cf52040 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x8d73bfd2 sctp_for_each_transport +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x09317728 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x5acad578 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xce9341d1 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00085b1f xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x002e9445 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0147ab5a rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0324b7e7 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03559c4b rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0465fda1 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x049d5a4b xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04e12103 rpc_destroy_pipe_data +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 0x06e8279d rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x072a62b0 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07764ca0 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x082de51c xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ba23f84 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0dde850e cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10dcf191 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x124f001c gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15b6c5c6 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16eaca25 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x182213ac rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b02ef5e rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b99ba43 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bbbf2c4 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bbed927 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c8a697b svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ce99031 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cf63251 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1da2e4fa xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ded2998 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e0451c0 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e7797c6 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f6ace3a xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2152cd2f rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22ef5855 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2609c4bf xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26c65559 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27d050bf svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27e5b71e xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a1365c2 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a543393 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c1493b0 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d0d2ced xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f579ed3 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ba2d3 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x309794f5 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x330e6354 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x345a0c9c xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x351a54d5 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3556496b svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36140814 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37277604 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37c3c34d rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bcce52f rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d3a7f76 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d6ae18d xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x408e678b rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4244f4b1 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x426f39ba rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x429ece24 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4358996d xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x447a3a89 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45c6684b svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48ec414a rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49d02a16 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b453bf6 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f36da7b svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f43ca4f rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x547a1b7f rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5697bd5c xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56a15e66 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57c6cbfe rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ad35f6c rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b269027 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b9f8c60 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c8ebf63 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5db492dc bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5dd9adc5 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62c74999 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x645d54e4 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66051d5c svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6704a9fa svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6be1016a unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cd9c4dd rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d6e3ac8 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x706afbc1 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x712a4b0b rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71cb0e01 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72431041 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x728eb616 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x732af63e rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73a7c7e4 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x755c227c svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76b5c3fc xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76e6331d sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78b3008f svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7964c27c rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7972df11 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79c646d1 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a1b625d rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c2fdaf4 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c6dabc7 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c908319 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dc6d5d9 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x800a0eb4 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x824d3690 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8642a9ac rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8817b0a0 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88757ae6 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x892d1a8b xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a3b2628 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b0732a0 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c3d368b sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c407c68 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f675725 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91608fb4 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92875a6b svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9615cd88 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96aacc64 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96f36a13 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x975a73d5 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97c0d8a3 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9865955d rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x991c07aa svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a2c5c44 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b653216 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b871077 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c5b9570 rpc_cap_max_reconnect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9daa3187 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e106a88 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e107480 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0dd508d svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0fc4b3e rpc_lookup_generic_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa17dba2b svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5284231 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa58a8840 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa59c4c13 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa814682b rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa81f5cb6 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa85e7e98 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa0c3018 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa6c2928 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa89b6ab auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab22ba72 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaeaf63f4 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaee32102 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafbe71c8 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1292ff6 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb17afcf0 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb28eafce xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3be243e xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4da9e26 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5563d56 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb596c7cc xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9327ab9 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba058e8f xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba25452f sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb3878a6 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb69d50a rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbd36220 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc39b6f9 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe3dad26 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbecb2d12 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbff1665a svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc28f28f3 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4b6bcad svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4c37ce9 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5494f6f svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5983cd0 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcaad6098 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcde8ff92 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce5acc26 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2bc2e57 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3d19765 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4377ef7 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4948328 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd73369f1 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd739aa89 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd74ee5c9 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7ce1bc2 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9fb317c rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb23c2d2 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbe297a2 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd48faa9 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddd727bc xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdea6cabe rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe087c1bc cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe30e277d cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4a7d8ad xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5555600 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea972594 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec3a4672 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecf2c7bf rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed74d2d0 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedd4d731 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf067e706 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf106b357 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5683889 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6126e2d rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6fef7e0 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf80d4c02 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8183a85 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf865cc1c rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8fb73c7 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9bf811c svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa71e521 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd779640 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfede7cae cache_create_net +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x001db291 virtio_transport_get_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x01e9e00e virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x05bc9340 virtio_transport_get_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0680a877 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0dc3ecff virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x153c3027 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x18c71627 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1b5bf0ed virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x22701c1d virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x29a3ae2a virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2be6aa6b virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x45e4044e virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4654b5dc virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x480ad9ab virtio_transport_set_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x53351bbd virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x59bb1153 virtio_transport_get_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6ee7077d virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x77a366d0 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fc02485 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x83101b14 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x871293a9 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x924737c0 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x92497dc8 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x95759aa1 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x98d42558 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9efb65b5 virtio_transport_set_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa985ae10 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb6a3e252 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc931c40f virtio_transport_set_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcdc7891f virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xceac67ee virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd95f7eff virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xda8cb823 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe16ca3f8 virtio_transport_stream_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe1b341dd virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe4f28520 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe6862520 virtio_transport_alloc_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe7da3b0f virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x05b65b04 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x17200fab vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x22182c8e vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3f23080d vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x53a9b0e9 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x61ad5f95 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6d20cf71 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x93cb03a3 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb9066236 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb951b82a vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc09b6be1 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc476d6d2 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc76bd8d1 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf7672a76 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf8220b25 vsock_remove_bound +EXPORT_SYMBOL_GPL net/wimax/wimax 0x29ac0d7e wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x40e626b6 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x54adb37f wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x6c119b3d wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x74826dbc wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x91b3a500 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x99f3ce65 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb63267d1 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0xbc8003f5 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd6368e0c wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xde511e5d wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0xe8f2ffe1 wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xfa353f52 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x23968a15 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x27f0338c cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2b8be10e cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4202c1cd cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x468e6027 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5e123392 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x665b35ca cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8893216a cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa2743c25 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb6aff0e3 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbce394b4 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdfba513f cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf96b781c cfg80211_wext_siwfrag +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 0x3bf471d7 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x01c133bf ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x2532820c ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7d838a66 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe5562055 ipcomp_init_state +EXPORT_SYMBOL_GPL sound/ac97_bus 0xcda2b9fd snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x55ca907a snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x9bd3ee64 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd 0x1b8bdae0 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x22c99eba snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x2cdd3342 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x3d794b68 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x4ad664e0 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x6e871e10 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x8646b9d9 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x27ac48d5 snd_compress_register +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x2be52a2c snd_compress_deregister +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x5a8be902 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xa1b5e791 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 0x160ca687 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1c317f86 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x254ff1d0 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x57c36479 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x84914eec snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9dd59df7 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9e2e9cc1 snd_pcm_stream_lock +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 0xb69bb797 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc8a06fea snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd0e0d983 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x17db6f3d snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2cb40949 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2ec6958c snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5bb1f596 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x815fabab snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9962470c snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdda87bb9 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe1a22719 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf1efad00 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf52a0a6d snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf5516605 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x15e47b37 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x238e5b45 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x37be3527 amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x43e4d5d3 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x80f183c3 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x94bc6161 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfab829c5 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0302f23f snd_hdac_ext_stream_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0a2b1988 snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x10d860af snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x17626bb2 snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1b37b7d4 snd_hdac_ext_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x22fabd55 snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2ad539bc snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x33625b07 snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x38c32555 snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3e96256f snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x49903d18 snd_hdac_ext_stop_streams +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4b0ec478 snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4b10d465 snd_hdac_ext_bus_device_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x534e198e snd_hdac_ext_link_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x63d1e0b4 snd_hdac_ext_bus_get_link +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x722ddeb8 snd_hdac_ext_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x75c2c2ea snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x88485ed2 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8a124146 snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8a295aae snd_hdac_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8c062a31 snd_hdac_ext_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8db79ca6 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9a627eaa snd_hdac_ext_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9d9e76f7 snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9ed46053 snd_hdac_ext_link_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa31e66af snd_hdac_ext_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa340e892 snd_hdac_ext_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa94e9689 snd_hdac_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb44302bc snd_hdac_ext_link_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc6edfb8d snd_hdac_ext_link_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xde4cb52a snd_hdac_ext_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdf767c86 snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe44c3583 snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe78bf6d9 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xebeb7ac9 snd_hdac_ext_bus_device_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xec4e98ec snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf2ba85cf snd_hdac_ext_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xfe3e07ad snd_hdac_ext_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x005dbd1e snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x03ef7ab0 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0672b405 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x06deaab3 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0716e289 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x079eacd6 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b153358 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0e9f9078 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f067d59 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12278475 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1371cbd9 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x13758528 snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x16478a63 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x167790b0 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1828a9c7 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x18e305cd snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19c3c991 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ba58050 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c18866f _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1dac1e27 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x27d0baba snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2945af5e snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c1aa458 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e81f2ab snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x32bd27b2 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3418b93c snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34b530c0 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3666cef6 snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a70b427 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43443513 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x45e9f450 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a328674 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4b5fef95 snd_hdac_i915_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x593510db snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x601255c3 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x60937453 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x615600ac snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x64217048 snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x66a09843 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x694807a2 snd_hdac_i915_set_bclk +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72337145 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a02b18e snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ae68551 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c1587a3 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c8068aa snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fd9516b snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fe25ece snd_hdac_i915_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x80add38e snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x82db3e2f snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ba3047a snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a0362b9 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9b90b49a snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e96509b snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xadc183f7 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb50605a9 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba630d63 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc828f39 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc3bedec4 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcbc52953 snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcd70cef7 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcf4182ae snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd48ab66d snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4eb006c snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd6f8cfac snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdac540c6 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdbc099d2 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc9b8fb5 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xde5bace4 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xde90f9f6 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe034d44f snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe0a056f1 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7fbe200 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8809329 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeae06f6a snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee068a34 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee0b6fc0 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee9d68dc snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf468f161 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf9cae341 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa79cbb1 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfc684882 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfda1e257 snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfdbb28a3 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x05801c17 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x122757ee snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x14d495fd snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3d5d57fa snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa75f45da snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf292e83f snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0387764e snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0400e291 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0631434b snd_hda_codec_set_power_to_all +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 0x0724c887 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07a0ed28 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07f4617f snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09941cf5 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bbfa5fa snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e264f26 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e771cca snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0fb088c7 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11d3a6db __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x121664ef snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x139aef46 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x153c4e84 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e9d1c66 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20a91a22 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21808ac3 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a833393 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f3d59b2 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x324fb67a snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x344fb511 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3571e011 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3600b7b0 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36372541 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x366ecd8d snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39f325b8 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b5b7ab8 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x438651e4 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4588492f snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x465510bf snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4947c25e snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x496c2048 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a381170 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4bb6d704 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4edd4c11 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52347baa snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54fc572f snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56f5180d snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x581885fe snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d32ff69 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f33b787 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63daa143 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69b8c5c6 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b72ae6e snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e663da5 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e754e38 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f646f7a snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70eb51f9 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72d8fcc7 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75131f33 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x776cbade snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x778d9b27 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a7d9b61 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d2b063a azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f00b12f azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f392e0c snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8113fada snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8133c56a snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x814253cf _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81e193e1 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x836912b3 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84de4497 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88d7e076 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88d944d8 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a962577 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b19460b hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c7cc4f6 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x905638b3 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90f88314 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x948d62e8 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94962a40 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96056009 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98a94d91 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98c52466 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa433c2b7 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4c863d8 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaee62ebe snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf3324a5 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafbbc63e snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1b9089d snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1bda579 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3115944 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb48a3526 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb763ee30 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb91c56b0 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb934604d snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9b7b4ed snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9cf9042 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba9fd4b1 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbaa6e6e7 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbaaca005 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb13c7c1 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe441d60 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbffb2b12 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc15d51e2 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3eca6ca snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc60f6a75 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6422494 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc86ebc4c snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8725371 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca92347f query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0d08301 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd40473ef snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd51faedf snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8dfc888 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9d19384 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda81502b snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1caf7f5 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3bfb277 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe567b670 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe69a21f6 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8ca312a snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8fede6a __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeafe93eb snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf06334f6 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf20fa952 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf20fc2f5 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5806f88 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf89963ca snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf96afb11 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa5b796b snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe061e7e snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe37cf4c snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0e9b1482 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2a3edcdc snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2df30160 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2eea04c4 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x55194e8f snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5847c9ce snd_hda_gen_mic_autoswitch +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 0x84ade5bd snd_hda_get_path_idx +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 0x88a262de snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x89306e3b snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9f7a0372 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa634fea1 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa79d6110 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xafd7667c snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb9ab2d58 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbe985f6b snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc5ae0a36 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf1e5f1bf snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf9e8bac5 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfc05ec1d snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x46f0c41a cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x91dcb786 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x18b1fee7 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xf177a8cd cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x23660643 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x3bc73aca cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xb7b17d36 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x860ab905 da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x9fe4b137 da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xa3eb4140 da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x709b31c1 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xd0be9e91 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x112c6834 hdac_hdmi_jack_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x8bb54fc7 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0xe0c0c32e nau8825_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x00b9260a pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xc645a9d6 pcm179x_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xceb51f85 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x0377bbb4 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x474b2f38 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x60993a53 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x65106548 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x177456ec pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x6497453b pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x6f58a333 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf25cddad pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc +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 0xd90d0707 rt286_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt298 0x36b31e14 rt298_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x652c5df8 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x8d52d0a8 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x3c02d784 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x7e1d3b10 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x00b069fb rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x2eb46505 rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x487a0936 rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x65a997fa rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x1fcff160 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x310c3c77 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x65cc0157 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9b5bbf58 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb17f212c devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x78a92be8 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sn95031 0x503c09ca sn95031_jack_detection +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x4b56586a ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x77c84e07 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x3c6e2dd1 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x03012249 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x65e98b26 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xa84cf273 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xd079bbd3 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xbd51dcb2 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x78dc912b wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/dwc/designware_pcm 0x9bfe2ff1 dw_pcm_push_tx +EXPORT_SYMBOL_GPL sound/soc/dwc/designware_pcm 0xa7f73dd0 dw_pcm_register +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xb1024212 fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xe720ed44 fsl_asrc_platform +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 0x03ac2d91 asoc_simple_card_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3231369a asoc_simple_card_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5c105e73 asoc_simple_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0x70e648da sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0xbe43d46c sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x0b5768f8 sst_context_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x23bdf984 sst_context_init +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x7b44bb42 sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x8f76d020 intel_sst_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xab14edd5 relocate_imr_addr_mrfld +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xbd981628 sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1379222a sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x159f0c87 sst_dsp_shim_update_bits64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x168b9227 sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x169d2406 sst_dsp_register_poll +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1b5e8b82 sst_shim32_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1e7c7c2f sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x484f1679 sst_dsp_ipc_msg_tx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x49f22aaf sst_memcpy_fromio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4a045773 sst_shim32_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4c41db8e sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x58d0711a sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x637e8393 sst_dsp_shim_read64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x661fe164 sst_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6ae72fb9 sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x79b0a7db sst_dsp_shim_update_bits_forced_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7fbca98b sst_dsp_shim_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7fd405c6 sst_dsp_stall +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8c679596 sst_dsp_shim_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x92d24517 sst_dsp_shim_write64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x979d995f sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa5fd10da sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb6b77844 sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb9bff426 sst_dsp_dump +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbb790fc2 sst_dsp_ipc_msg_rx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbcec5387 sst_shim32_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc4dac731 sst_dsp_shim_update_bits64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xcca54471 sst_memcpy_toio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd9a2c94c sst_shim32_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xdd68a036 sst_dsp_reset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe257dbd7 sst_dsp_shim_update_bits +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe27b70b8 sst_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf1e64871 sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf5faa48d sst_dsp_boot +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf9b9d20b sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x06deb909 sst_module_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x18c1264b sst_fw_reload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x1f04cf09 sst_dsp_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x3b5af6b5 sst_dsp_dma_get_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x4599e3ea sst_fw_free_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x470de4cd sst_block_free_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x4d8dc23d sst_module_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x523ceddb sst_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x5bddede8 sst_mem_block_register +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x644744e7 sst_fw_unload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x6a7f1dc8 sst_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x767cb65b sst_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x7e28c2bf sst_module_runtime_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x80e13bbc sst_dsp_dma_copyfrom +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x87bdc9dd sst_module_runtime_restore +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x8f36eddf sst_block_alloc_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x9799e9d5 sst_module_runtime_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x993f19b5 sst_module_runtime_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x9a2ac7e4 sst_fw_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xa14f6a37 sst_module_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xb4538cdf sst_dsp_get_offset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xb51c6787 sst_fw_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xb6c1ab93 sst_dsp_dma_put_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xbde85b22 sst_module_runtime_save +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xc1acccd0 sst_dsp_dma_copyto +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xc8d6a187 sst_module_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xe262c5f7 sst_module_runtime_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xf1e205e7 sst_module_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xfdf55f91 sst_module_runtime_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xfe4372d5 sst_mem_block_unregister_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x147c1ece sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x2ddebe83 sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x431bebb6 sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x7cfb8e3b sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xa1b6508d sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xbc2a90d7 sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xe44acc92 sst_ipc_drop_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-match 0x4ed20969 sst_acpi_find_machine +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-match 0xa150755f sst_acpi_find_name_from_hid +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x61304237 sst_hsw_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x66e3b535 sst_hsw_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xd1f69f64 sst_hsw_device_set_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x0423ae56 skl_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x0ef4e62e snd_skl_get_module_info +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x0fdbd58c skl_clear_module_cnt +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x1203bf98 skl_dsp_get_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x257fb2d6 skl_ipc_bind_unbind +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x2e8c0bda skl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x369424ba skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x3fa46c93 skl_ipc_get_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x7ab57269 bxt_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x893807c0 skl_ipc_restore_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x9e5c38f9 skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xa139bd7a skl_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xa58b435a skl_ipc_set_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xa9bf5002 is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xaf102bdd bxt_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xb18cdc06 skl_ipc_save_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xc5e8495f skl_ipc_init_instance +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xdb897022 skl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xe1f2b1d8 skl_ipc_unload_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xe2347011 skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xef2038a4 skl_ipc_load_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xefd37108 skl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xf5863f35 skl_dsp_put_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xff0088d6 skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02379a00 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0591f53d snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x091e404a snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c1bcc96 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d5160ec snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d84301e snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f5bde8a snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fc05756 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1164da7b snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13ef2894 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x148ba56f dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17c2d360 snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1896a2bb snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19b82abf snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19ff8766 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1afd7e15 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bb720df snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ddd0c30 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e71b972 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1eb553ee snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f97750f snd_soc_tplg_widget_remove_all +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1fd29acd snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2097f614 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21560dd9 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x229e912f snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23433fb4 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2422f2c7 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25185dc5 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x276088c9 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x277c3ff3 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27fc7499 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x281619e6 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x283aebe5 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d9a0a42 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30b943f8 snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3394c708 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x344f52d4 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35cf21b5 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x366fcded snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bfd4cf0 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41e2f758 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43b6c19a snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x459071bb snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x483f4e79 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48a7ed05 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a2748d6 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c60464d snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d6f0265 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d8cce8b snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e0881f8 snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ec6ce7f snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f4cef74 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51947d02 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51b6e344 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x544ce54e snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57a63b4b snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58049236 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x586cdf89 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5bccd56e snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c5a32c9 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c5e7bcb snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d10ec35 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d5796b6 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5db2b62f snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5eaf728d snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60db6c1b snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62414e2c snd_soc_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6445e2b4 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x653b22fc snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65aaa1f6 snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x683de65e snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x688e312f snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x691fabf2 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69681e4f snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a3254f3 snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a4a6657 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a6f8156 snd_soc_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6aa772fa snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f332aec snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7472c68e snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75866923 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7608de15 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x770f56c7 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7769a363 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x784d4f41 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79d8812a snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a588ef3 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fa04798 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8006de85 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x859fb92d snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x861b8697 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87fc0b4f snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89257403 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8acdfc3d snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b7f1fde snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b90ee75 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d99178a snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8db3328f snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8db47271 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8dc9f975 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8dd74fc7 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f9e998f snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x916837b3 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9343860b snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9359c700 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93a20db4 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9556e45a snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9812d2ee snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f151c36 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5f8a0ef snd_soc_tplg_widget_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6a32a84 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa90bab25 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9661ab1 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab1208e2 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab60448a snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac11e9ad snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaddc181a snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb04e3f98 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb17e1030 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb297d9dc snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb40372e1 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8a8e8b6 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb96aa76f snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba330323 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0731ca1 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc121ee25 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4ffce4a snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6238e88 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6b0086f snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc72d6030 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc832bc7a snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc95dbe74 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca40b0ec snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcae651c5 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf5240d6 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd47c6b38 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd53a914c snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd861a888 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd86e0f76 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb5dd802 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde561807 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe166f114 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe17984f4 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe17dcdf6 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe37dda28 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe53899b5 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea0b28eb snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef8b5936 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3134fd2 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf48151b7 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf60c6e42 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6994c53 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8671ab2 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8a6879d snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf99ce956 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb07f5c9 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfbe0cf95 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd1e63fc snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff12fae7 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x11d3ac7c 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 0x293e724a line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5473b901 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x63b0b944 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6d7d5040 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x73a44179 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x789178d2 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8215dc69 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x99aad00c line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9d005b1c line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb3618f72 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbb7a00d0 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc47527ad line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdb545add line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe1000e1f line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfc02a58b line6_disconnect +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 0x0034f3b6 xen_has_pv_nic_devices +EXPORT_SYMBOL_GPL vmlinux 0x0037e7d0 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0040da34 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x0042c877 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x004ab54e regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x0059388b crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x00696f8f dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x0071c0fc input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x00810265 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x00912c17 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00b4f11d shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x00b8ea14 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x00be508f kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x00e26c23 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x010f8951 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x01158999 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x012dc132 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x0148d6cb regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x015b65b3 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x01691daf acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x0170cb6c efivar_work +EXPORT_SYMBOL_GPL vmlinux 0x01728d00 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x0177f33b tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x019f3732 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x01a919b2 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x01a96635 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x01b216e0 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e1f75f lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x01e89009 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x01eaa79b devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x020bf3ed gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x02143e6c __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x0215111b default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x024f0412 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x025a8374 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x025d0665 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x0270c0d0 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x0272bc66 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x027da063 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x028096d8 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x0290fdc6 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x029c8ea8 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x02a469c4 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x02a50c82 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x02d2585f _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x02f18858 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x032a1f72 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0337c928 spi_flash_read +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x034e7797 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x03549307 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x03870256 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x0392595f mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03a60825 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x03b1157e vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x03b309be gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x03b425c2 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x03c689ee tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x03c80e0d register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x03ce0092 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03e42f77 pv_info +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0446e0ab __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x0461b381 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x047465a7 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0485655f amd_get_nodes_per_socket +EXPORT_SYMBOL_GPL vmlinux 0x04875d02 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04bf26af ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x04c3f2c1 gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04cab9f2 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x04d33180 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x04d968ee rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x04e78f5e tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x04e8c1a9 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x04ecfb5c set_memory_wt +EXPORT_SYMBOL_GPL vmlinux 0x04f406b6 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x050893ea fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0509cd84 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x050a9c15 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x05483457 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0551708b bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x0566cedb sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x056c1460 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x056c1616 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x057548e1 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x059cdcd6 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x05a617a4 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x05b05cce ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x05c7e3f0 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x05d93f89 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x05de5e5c put_filp +EXPORT_SYMBOL_GPL vmlinux 0x05f9a4b7 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x060641df pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x0627c22e sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x0649f87f class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x065f7a9f rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x0660a38b class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x066f07d4 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x067339c3 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x067580b0 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x06865d2b blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x06867293 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x06963c36 intel_msic_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x06d400f2 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio +EXPORT_SYMBOL_GPL vmlinux 0x06dcf681 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x06f375ab crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x06f46f60 nvdimm_bus_add_poison +EXPORT_SYMBOL_GPL vmlinux 0x0701a621 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x07032f9e trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0x070e5c96 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x07376942 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x073a338b fpstate_init +EXPORT_SYMBOL_GPL vmlinux 0x0740db51 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x07662cb9 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x07799e4c key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x0788b0f1 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x078be563 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x07b10398 init_dummy_netdev +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 0x07d86cc3 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x07ebb064 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x07f300c3 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x07f5ab28 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x08138dd4 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x0818b979 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x08290292 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x0846e62d devm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x084af304 hv_is_hypercall_page_setup +EXPORT_SYMBOL_GPL vmlinux 0x084d0927 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x08590cdc cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x08825d1b __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x0890d5ea efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x089d37b8 bpf_prog_get_type +EXPORT_SYMBOL_GPL vmlinux 0x08b21f7a serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x08c2c8f6 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x08de881d __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x090ae864 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x09164525 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x091ed190 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0961b62e public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x0962d0e8 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0993fd16 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x099b046b pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x09aa71f8 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x09d5dc99 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x09fb1e42 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x0a298a69 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x0a4fde00 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0a55222b virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x0a7b1507 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x0a830a86 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x0acd39ff sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b251448 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0b3dd5cb platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b644cfe put_pid +EXPORT_SYMBOL_GPL vmlinux 0x0b7b5664 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x0b8c7dd2 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x0bb0ac4a dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x0bc5a300 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x0bc8395f usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x0be06ac2 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x0be2d124 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c0488dc regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c18c263 xts_crypt +EXPORT_SYMBOL_GPL vmlinux 0x0c1da422 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x0c24550a tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c7a40b9 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c8828c2 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x0c890bfe usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x0ca7e455 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cf3620d xen_swiotlb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x0d00bd9b pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x0d06c94f wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x0d165be8 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d69b7f9 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x0d6a3096 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x0d6cc8b0 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d8e8337 store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0x0dc08079 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x0dc3f0f2 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0ddbc97e i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x0ddf1833 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x0decf75f sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x0df925f6 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e09e90c dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e26253e device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x0e2d7f6f inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x0e3263fc regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0e395d15 __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x0e3fd287 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x0e67d723 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x0e81b4bf class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x0e96630f irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x0e972bb3 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x0e9f9330 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x0ea67d58 print_context_stack +EXPORT_SYMBOL_GPL vmlinux 0x0ead8be0 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x0ed83315 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x0f01bb8f pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x0f14f47f sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x0f173925 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f4294c7 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x0f5f5602 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x0f6b63d2 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x0f6e0bce regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0f6f8c05 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f7528e0 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x0f759751 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x0f8ac797 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x0f94f658 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0fa138de xen_hvm_need_lapic +EXPORT_SYMBOL_GPL vmlinux 0x0fa667f4 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x0fb0c74b __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x0fc01e9f static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fcd8270 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x0fd968db device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0x0ffea484 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x101f0f7a crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x103092df ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x103a50f6 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x105760c4 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x105c490d security_path_link +EXPORT_SYMBOL_GPL vmlinux 0x107c9d4b each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x1099dd2c __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x10a52064 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x1127e1b4 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x112f29ea inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x118e9291 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x11a68792 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x11ac8d29 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x11b7559b percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x11d5e8c2 xen_xlate_map_ballooned_pages +EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x1215fdfb led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1234158c xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x12365e8c percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x1237fbcf debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x125b85f7 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1283d985 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x1294de47 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x12c31dc7 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x12c402ba hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x12ca05b9 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x12ca8e17 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x12e47897 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x12ea3c14 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x130d8b0f cs47l24_patch +EXPORT_SYMBOL_GPL vmlinux 0x13115c7b rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x132c3cb4 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x13324fc3 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x134cff53 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x134f7108 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x1357dd08 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x137dc9ea devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x138aa6c0 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x13977178 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x13a09820 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x13a3a905 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x13ac1a1a security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio +EXPORT_SYMBOL_GPL vmlinux 0x13c18ba5 acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x13ca62f9 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x13d2e3e7 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x13df45f6 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x13f51fc3 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x144bff87 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x145784d1 gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x1462563b ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1470af42 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x1477941a ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1499883d clear_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x15010e1f arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x1539ffbc gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x15568631 lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x158ab5f0 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x158b5207 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x159bf780 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x15a20703 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped +EXPORT_SYMBOL_GPL vmlinux 0x15b3befe ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x15bef2c0 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x15e5d986 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x15f5d473 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0x16106869 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x161d9916 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x163fac52 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x1644f098 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x164934f4 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x165fefba debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x1676e5b2 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x167d34e5 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x16a94618 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x16bf493d devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x16ef683e skb_gso_validate_mtu +EXPORT_SYMBOL_GPL vmlinux 0x171c6fd9 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x172817ee list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x1729b6a4 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x174f3679 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x1762b18f bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x176a10e2 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x17a8d0c2 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x17b9f3e2 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x17c05173 add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0x180c5366 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x1823bb19 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x1824c459 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x182e4233 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x18316f32 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x183bb7b7 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x184cf5a0 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1853d8b4 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x186aa22a usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x187eb82f pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x1884d8de usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x18876411 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x18a36574 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x18b8b3b6 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x18d4b7d2 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18f5e50e arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x190d7968 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x191036b1 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x1918c7eb metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x194d0e84 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x194e9427 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x198680b7 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a4ce3f rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x19a573ba dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x19a7df91 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x19b51a2a sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x19c13c4b spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0x19c208cd dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x19ca762f da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x19cfafef tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19d6971b ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x19e4c71f blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19f503f2 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x1a1358fa device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x1a25cd8a hv_do_hypercall +EXPORT_SYMBOL_GPL vmlinux 0x1a36d13e device_register +EXPORT_SYMBOL_GPL vmlinux 0x1a5bb61d perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x1a5e5330 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x1a8a8e7e extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x1aa1f9c0 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x1aaf7596 devm_nsio_enable +EXPORT_SYMBOL_GPL vmlinux 0x1ab97def clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x1ac7723d posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1b016b32 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x1b10935d __pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1b1f2bda speedstep_get_freqs +EXPORT_SYMBOL_GPL vmlinux 0x1b212d91 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x1b2be425 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x1b348214 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x1b378962 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x1b38b3c6 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x1b4358f4 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x1b4bf6eb shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b59c0fb pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x1b6924bb ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x1b77d3c6 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x1b7a8330 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b98265d xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bc76245 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x1bd6f6e5 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x1be0f246 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x1be97d51 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x1c0528c1 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x1c189308 __devcgroup_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x1c19f94e file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x1c227b91 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x1c2a0959 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x1c2a73d8 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x1c2d715d fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x1c395dd9 device_property_read_u64_array +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 0x1c64698e pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x1c6660c7 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0x1c71f8ac jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c9cac0d blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x1ca4f44c gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x1ca7386f ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x1cac5a80 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x1cd6d89d pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x1ce91cfc irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x1cff890f tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x1d1a726e spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d4c3520 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x1d5607d2 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d739e1c xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x1d8c9306 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x1d8f07db ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x1d9aa196 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x1d9ce882 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x1da972ab wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x1dab3b6f regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x1dd25cab clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x1de5f82a debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x1e061b2d cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x1e1c81f0 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1e3280a7 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x1e38549f regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e668d27 static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x1e6edd3d device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x1e72bd21 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e8d9b06 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1eb8e879 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec3b400 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x1ec6057a irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x1ecb532f devres_release +EXPORT_SYMBOL_GPL vmlinux 0x1ed1e07f efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x1ed22f38 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x1ed423ab pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x1eff7862 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x1f7f6fac register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x1f83d919 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0x1f842de9 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8d71c4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1fba6eeb user_update +EXPORT_SYMBOL_GPL vmlinux 0x1fcc7447 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1ff99dec debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2018ec5b usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x201b4084 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x202d9bdc pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x204e66e6 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x20613f4e dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x20784707 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x207f035c kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x2087fc9f sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x209ec764 xen_event_channel_op_compat +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20cf1dde vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x20e5d0b5 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x20f202ca kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x20f8722b sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x20f935a0 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x2108317a lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x212f9e35 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x21340730 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x214bcb4f __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x215aa0ea netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2163fcfa pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x217df53a ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x2197c69f static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21be1a53 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x21c934f5 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x21c9de43 cap_mmap_file +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21db683a ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x2229495d rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0x22444fca bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x2257206c vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x2267a75a pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x226fac09 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x22927d53 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2299ec81 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x229a2313 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x22a1c3a6 spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0x22cb0df1 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x22d25f14 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x22e511f1 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x22e62dbc kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x22f9c5bc sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x23048011 __intel_mid_cpu_chip +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata +EXPORT_SYMBOL_GPL vmlinux 0x2369008b cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x238f3d9f x86_hyper_kvm +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x239b15f1 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x23a1bc0a ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x23a29d33 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x23a3bcf0 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x23c6c2e1 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x23ea28c0 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x240580a9 xenbus_probe +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x244b5ddb adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x245c3e58 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x245dc990 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x246bf9ea dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x246d60ee wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2473ae5d crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x247795eb crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2488a441 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x24a89890 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24b2e19c trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f45195 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x24f54281 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x25217f8e sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x254a214e skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x25518647 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x255f8233 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x25791d1a shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0x25949fa2 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x25c11dd9 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x25c41869 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x25d13727 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x25e90997 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr +EXPORT_SYMBOL_GPL vmlinux 0x26092317 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x260f1af9 md_run +EXPORT_SYMBOL_GPL vmlinux 0x2611f9d5 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x2640e134 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x264ae4c6 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x2662988c find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x266ccd31 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x26737863 clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0x2673aa5b pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x2675e19a ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x267e02aa perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x267e98cf da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x26854460 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x26891453 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x26965721 slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x26a2e92f device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x26ac03e7 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x26b3c701 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26d0d688 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x26d542df scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x26e854ef pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x26eaef33 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x270fa87b usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x2729bade uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x2762855a acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x277f62fd tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x279cb985 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x279dc988 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x27b45184 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27eddfc5 usb_of_get_child_node +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x280b0791 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28328453 clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x283de8d1 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x28517ee4 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x286617f0 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x28695fa1 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x286fa96a unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x28d1ec4f ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x28d49d53 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x28d85f27 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x28dfc231 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x28e54e23 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0x28f19b72 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x290917f5 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x290db591 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x29206416 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x293e1055 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x293f073e vrtc_cmos_write +EXPORT_SYMBOL_GPL vmlinux 0x294bf308 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x29589d12 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x295b3e5f usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x295d0dfe __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x29612621 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x296db931 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x297463e4 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0x29b11fc5 _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x29e652b5 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f6a3ff fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x29f9ec3c regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a8cf1b8 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x2a8d25e1 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x2a8d9d9d skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x2a9826ac netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x2abf9483 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x2ae85cf5 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x2b159795 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x2b18013b fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b2b24c1 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x2b3ff0ff driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x2b51f88c events_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x2b56e21e shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x2b65a816 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x2b67f096 speedstep_get_frequency +EXPORT_SYMBOL_GPL vmlinux 0x2b68643b device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0x2b69c8a8 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x2b6ea28e fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x2b7f67c9 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b9dd6a7 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x2bbcf164 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2c037c1d da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x2c0b9a17 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x2c15505d rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2c1d4806 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c2f5a09 x86_family +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c41216c evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x2c526817 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x2c630bd1 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x2c6a0410 xen_set_domain_pte +EXPORT_SYMBOL_GPL vmlinux 0x2c701946 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c8270ee __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x2c84c81f generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x2c967f57 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x2c9f58f9 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x2cc3bb06 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x2cd34d33 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x2cda45b6 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cf4bec4 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x2cf7316f pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x2d16faf4 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d2502f7 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2d289c72 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x2d2dbfbe rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x2d3a9d51 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d66f788 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x2d7a9dce devm_nsio_disable +EXPORT_SYMBOL_GPL vmlinux 0x2d7c73b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2dab9468 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x2dba5503 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x2df5c6b5 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x2df7d9c3 path_noexec +EXPORT_SYMBOL_GPL vmlinux 0x2dfc4e1b acpi_dev_gpio_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x2e125965 free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e38c57b wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2e452f66 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x2e4d1619 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x2e86fe7e sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x2e8b9ee6 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x2e8f5fee device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x2ebbd3d0 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ed8abd4 iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x2f09a66f clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f1b5f66 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x2f245e57 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x2f38cb25 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f46958a pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x2f6245ce ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f90da7e trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2fab0512 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x2fc3e312 vfs_writef +EXPORT_SYMBOL_GPL vmlinux 0x2fc7e07b isa_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x2fd6b415 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2fdf7104 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x2fe51814 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x3000d8e2 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x30071b0c percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x3007afbe wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x301aad70 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x3028144b device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x303420d9 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x303f8dfb class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x305b5f9d pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x30635782 cpu_has_xfeatures +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30c78a43 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x30dcfbd7 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x30e47315 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x3105bba5 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x3114d120 pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x311c13b8 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x31257d0f pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x312a7828 wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x3131d61b kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x31397ce8 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x314eaf7f blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x3151cdb9 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x315ac5bc perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x316c0f47 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x318170be tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x31a26985 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x31a4a79e irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x31ab9401 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x31b20acc inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d123fd vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x31dbb4ed xen_swiotlb_dma_mapping_error +EXPORT_SYMBOL_GPL vmlinux 0x31ed0831 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x31f055ca devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x31f0b868 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x320396a6 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x320a6c1a rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3236cfeb dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x324df5f2 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x324fbacb pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x3252e933 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x329221bf xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x32924a4d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x329cd2a3 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x32a52d6e cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32be2a64 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x32bf80fd da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x32c25942 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32e89157 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x32f473ae tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x32fb9e14 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x32fdf5fb nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x330c61ac phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x33148315 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x3315cff4 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x3324006c screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x332f9c3e ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x333228ec intel_msic_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x334110ac i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x335af6b1 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x335d4969 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size +EXPORT_SYMBOL_GPL vmlinux 0x33655159 xen_pcpu_hotplug_sync +EXPORT_SYMBOL_GPL vmlinux 0x337381fb transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x338eeb8a da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x33b199c0 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x33b96e5d apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x33c7edf3 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x33e6aed9 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x34157ef3 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x3418b65c fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x341ccc46 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x34321fad __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x34331d5e nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x3461ec5d __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x34629cec ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x346d0fb5 blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x3486c6b3 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x34bc71e0 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x34d8c7ab input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x34f8425d thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x35116d9a mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0x352dcc18 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x3580f523 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x3581f995 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x358c7515 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x358def02 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35910f72 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x359fb61a wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x35a0830e clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x35aca7ff clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x35b3c753 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x35c826d8 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x35dcd1f7 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x35fa41d8 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x35fabdd4 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x361d6b4f mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x36320d17 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x36347ab8 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x36354aa6 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x3640359e rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x3646badb palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x364f82ed digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x364ff206 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x365dec03 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x3681fa5b usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x36927b16 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36b95e7b __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x36ba2551 intel_scu_devices_destroy +EXPORT_SYMBOL_GPL vmlinux 0x36bd3aa9 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36de52ab device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x37568d8b dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x375de09a dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x376e24cf tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x377e109c pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x378e7c65 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x379bc732 debugfs_use_file_start +EXPORT_SYMBOL_GPL vmlinux 0x379de21e device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x37b5291a free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x37c80603 security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0x37d2612b hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x37d4353e inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x37daa5bd raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x37e089b2 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x37e5fdb8 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x37ef4dc5 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x37f727f0 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x3800005c balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x3807956e inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x38081e81 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x3826eb4e wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x3829e72d crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x38384920 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x384e3ef8 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x385629df virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x3856e177 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38c2f1d5 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x38c5e3da blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x38cd6e50 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38e7a14e pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x38eb14f4 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x39094284 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x390a22a9 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x391502cd usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x3924d645 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x392a128a regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x39676120 sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x3994005b ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x3994bc28 arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x39b0c17c ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a453f87 mce_inject_log +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a52ae55 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a610a19 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x3a70317c acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn +EXPORT_SYMBOL_GPL vmlinux 0x3a87577a regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa98a07 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x3aad260d devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad870db bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3af3b589 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x3b046326 pm_genpd_syscore_poweron +EXPORT_SYMBOL_GPL vmlinux 0x3b265e44 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x3b2be2cf devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x3b34d725 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x3b5ff929 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x3b7145bb apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x3b845896 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x3b884f4e extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x3b91db5b intel_pt_handle_vmx +EXPORT_SYMBOL_GPL vmlinux 0x3b94b57b usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x3bdaf53f blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x3bfc2d7e led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x3c08adc9 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x3c2634a7 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x3c2ea607 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3c34a74b key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x3c4b3cd4 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x3c50a7bd debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x3c5b2757 do_truncate +EXPORT_SYMBOL_GPL vmlinux 0x3c7c7a0f acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c93ea25 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x3ca33d13 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x3cc119f4 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3ce5f8d1 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x3cefbfb0 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x3cf05587 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x3d17ac3a usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x3d1b69d8 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x3d1f8c36 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x3d31f25b user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d439499 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x3d5099b3 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x3d50f2da gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x3d53228d rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x3d53ee9c regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x3d6252a6 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3d65d2ce platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3d80b884 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x3db01249 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x3dbc4f14 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf +EXPORT_SYMBOL_GPL vmlinux 0x3de148eb vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3dec48d8 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3df8067b device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x3e04134c kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x3e20f1e4 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x3e2ba257 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e3a5b33 blk_mq_reinit_tagset +EXPORT_SYMBOL_GPL vmlinux 0x3e3cb2e5 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x3e54b244 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3e5b0336 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e61751f ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e757637 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x3e7e3420 add_memory_resource +EXPORT_SYMBOL_GPL vmlinux 0x3e81a1c5 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x3e84b6ad regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x3e8ee490 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3e9cca0e regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3ecf0944 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f060887 __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x3f13e74d rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x3f229c4c oops_begin +EXPORT_SYMBOL_GPL vmlinux 0x3f2f0453 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x3f5ebd8d crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x3f7d44ed ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x3f8a7604 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x3fa7d341 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x3fcc5c68 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x4010b80f pmc_atom_read +EXPORT_SYMBOL_GPL vmlinux 0x401e84c8 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x4021dc09 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x40338a15 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x40511763 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x4078ff07 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4080ada6 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x408212ba hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40bea766 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x40caf124 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x40cea683 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x40d39ed5 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x40d40763 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40d63f3d crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x40e9f4a4 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x41085c70 irqd_cfg +EXPORT_SYMBOL_GPL vmlinux 0x411bb213 xen_swiotlb_map_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0x4130ed8e ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x41322612 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x4136bee7 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x4137713e thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x414e008b tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x41500fc5 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x4158dc1e pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x416ab3cb devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x41750609 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x41bdb8a4 udp4_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41d7198c xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x41e5d1ae intel_svm_bind_mm +EXPORT_SYMBOL_GPL vmlinux 0x41ffdbbe fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x4207b7e0 mmput +EXPORT_SYMBOL_GPL vmlinux 0x422dfe37 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4231d905 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x424e2166 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x4255e19a dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x425e807c tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x428bdaf0 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x429af5b3 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x42aca27e smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x42b1687a vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x42c41a93 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x42c47562 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x42c989ff iomap_atomic_prot_pfn +EXPORT_SYMBOL_GPL vmlinux 0x42dc00eb wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x42e33a9a cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x42e582fd rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x430579a6 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4312d923 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x431e3e67 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4334b68d xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x43404b0e ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x43558df6 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x437c845f wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x4395953e usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x439e2fe1 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43c41eee ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43d9050d print_context_stack_bp +EXPORT_SYMBOL_GPL vmlinux 0x43e366f2 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x43f0f39a subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x44101a52 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0x441fa356 irq_ts_save +EXPORT_SYMBOL_GPL vmlinux 0x442502a3 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x4446ece7 acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x445b41c0 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x44692a13 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x44841be4 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x4492a096 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x44b8f177 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c8218e dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x44c9537e ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x44d5d2a1 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44fa2dad cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x44fd0335 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4500600e wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x4512b086 intel_scu_devices_create +EXPORT_SYMBOL_GPL vmlinux 0x4535722a dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x453cff04 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x4544a9c2 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x454f1cb4 efi_query_variable_store +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x4586e2e6 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x459e5eab rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x45b7d6a0 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45bfb0e4 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x45c99a74 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x45cab350 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page +EXPORT_SYMBOL_GPL vmlinux 0x45e181c1 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x45e91701 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x45f71408 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x460f31aa rodata_test_data +EXPORT_SYMBOL_GPL vmlinux 0x4610caf4 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x4617ad98 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x46341d31 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x464e9765 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x465bd431 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x465f3b5b usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x466ae826 ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0x466cf553 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x466d6926 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46b0cdb4 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x46b36944 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x46b51bdd devres_find +EXPORT_SYMBOL_GPL vmlinux 0x46bb6f89 xen_remap_domain_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x46be42a8 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x46d1e1f3 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x46e7a85a rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x46ef174e agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x46f7ec01 xen_swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x473d76ce __dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x473fa12b devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x47467e02 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x475ffc0d acpi_dev_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47634a92 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x4782f93b dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478c1bc7 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47d0c426 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47dc69b0 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47fbbd2e cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x4815e68f thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x482cdac1 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x48313b54 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x484b290f usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x4862bd8c cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x48682db9 perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x4868f2e8 nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x4889ce68 clk_hw_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x48b49b32 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x48bedf7b i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x48cdce00 xen_swiotlb_unmap_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0x48dfced4 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x48fb5058 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x49293d96 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x4946e541 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x4966ce43 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x4979ae9a xenbus_unmap_ring +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49a2113b crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x49d516c0 __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0x49e62ade blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49ea02ee get_device +EXPORT_SYMBOL_GPL vmlinux 0x49eb8e82 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x49ffc5cc devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x4a0538e1 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x4a11416f regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x4a136783 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x4a1f30e5 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x4a2e7c1b ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x4a39e636 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a4d12f5 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x4a53cd49 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x4a63ee61 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x4a642af8 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x4a6a2c24 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x4a70bcce irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x4a72ea5b regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x4a889013 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x4a977d0e user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x4aac620c root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ac4ff32 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x4ad3efce usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x4af9352a irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x4afb573b vrtc_cmos_read +EXPORT_SYMBOL_GPL vmlinux 0x4b0f883f usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x4b150605 reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4b59ee14 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4b60e296 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x4b6e0c63 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4b726fbd class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x4b8fd428 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x4bacd6be __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0x4bd3f0b1 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x4bd9072a dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x4be72802 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x4c01e4d9 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x4c0894e3 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x4c0e7df8 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x4c21c431 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x4c5c06b6 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c762b5c x86_stepping +EXPORT_SYMBOL_GPL vmlinux 0x4c7a47da acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4c825fcd anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x4ce3c870 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x4ceae24c cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d1d1cca gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x4d1ed79e page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x4d3fecaa xen_swiotlb_set_dma_mask +EXPORT_SYMBOL_GPL vmlinux 0x4d72a42f wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x4da50f28 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x4da7934c __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x4dbb83a0 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x4dc4c788 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x4dc8a5be tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x4ddec5ae efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e1ea947 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x4e205fc6 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e324e96 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x4e35b4fc ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4e3e2880 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x4e57723d apei_read +EXPORT_SYMBOL_GPL vmlinux 0x4e705d91 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4e74e625 gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0x4e81cd3f badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x4e94cc19 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x4ef0790e tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f0d245f pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x4f1089ed verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f41428a yield_to +EXPORT_SYMBOL_GPL vmlinux 0x4f43739e bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x4f49fc7f ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x4f4bf92c net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f82c8bf devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x4f86ce33 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x4f8cec8a posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x4fc43c8f pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x4fc7470d devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x4fc98860 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4feccef4 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ffc38dc pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x5042426d ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x5072aac0 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory +EXPORT_SYMBOL_GPL vmlinux 0x5080c352 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x5082feb8 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50bd2116 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50e2dc58 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x50fd6a90 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x50ffc125 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x510ac434 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x5118e9af acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x512cbf43 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x5136fb9c pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x51422c94 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x5144a906 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51476b22 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5153b3df fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x51635dc9 pci_get_hp_params +EXPORT_SYMBOL_GPL vmlinux 0x51736ef9 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0x51811f94 wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq +EXPORT_SYMBOL_GPL vmlinux 0x5195b694 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x51a10355 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x51a647bd security_mmap_file +EXPORT_SYMBOL_GPL vmlinux 0x51c6236d gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x51fab32a vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x51fd35ea fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x522ef75e dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x5251dab4 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x526280c7 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x52924f20 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52b55d39 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x52c8ce36 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x52d782f3 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x52d8c375 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x52e2db4a ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x52ee4aab acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x52f102db __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x52f894bd gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0x5338d2bd spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x53950c1e crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late +EXPORT_SYMBOL_GPL vmlinux 0x53a81bd8 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x53c89d8c unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x5401b2ca regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x54619219 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x548b1293 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x549b4029 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x54ac2091 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x54bce104 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x54c71804 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54e06596 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x54e2a172 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x54e3c9fd irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled +EXPORT_SYMBOL_GPL vmlinux 0x55118a81 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x55125503 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x55175bdc __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0x55209038 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x5530551e rio_release_dma +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 0x5542d679 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x55526907 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x55674489 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x55836652 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x558bdcda rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x5594a387 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x55c657fe metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x55cc1e11 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x55edd53d unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f2ca63 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x55ff622b tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x560f6214 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x56237dff __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x562883b7 mmc_regulator_get_supply +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 0x564b8030 smp_ops +EXPORT_SYMBOL_GPL vmlinux 0x5654f836 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x568f9f67 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x5696ccf2 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x56a4f401 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56f4a579 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x56f5dd33 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x56ff5189 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x5716534c synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x5722266e update_time +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x572e2909 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x573a2627 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x574db65d relay_open +EXPORT_SYMBOL_GPL vmlinux 0x575ae66f cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x5761cbb7 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0x5783f3df crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x5788620a fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579b6e7e pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a817c8 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57ca5a83 gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x57ce7258 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x57d255b7 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x57e37b34 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x57fe6282 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x580a079a devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x5822a30f ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x582363c1 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x582371c1 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x58415304 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x58415742 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x58481e13 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x58560e40 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x585704ab aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0x587bd46f alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x587d2da9 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x58868ea6 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x588a46b7 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x58984d8b usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x589b41dc gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58a31221 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x58c076b4 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x58cb3e5c fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x58cf0512 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x58ed5aa5 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x58f1a782 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x590e7278 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x5920d6a0 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x592da997 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x594a5c03 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x594c677b phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x594cde67 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x59688cf7 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x598298d4 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x59bde28c mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x59c7be16 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x59cf234d device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x59e80367 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59fb2236 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x5a13e1d1 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5a520f61 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x5a65c37b devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5a699c6a fpu__save +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5aa26e3c acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x5ab5ef4d pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x5abea733 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5af5d575 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x5b0a995b adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x5b118060 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x5b1c889d dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x5b28b918 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x5b2fc5ce vfs_readf +EXPORT_SYMBOL_GPL vmlinux 0x5b3732b1 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x5b3bac60 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x5b3c79af usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x5b40a091 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x5b40ddd5 netdev_default_l2upper_neigh_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5b56967f arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x5b686660 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x5b75fc36 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x5b88f547 blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x5b967dd3 spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5b995a50 clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x5babf842 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x5bb4e44b device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x5bb68487 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x5bbdebaf __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x5bc43542 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x5bc4b444 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x5bce8ca1 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5c31c441 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x5c348c5e crypto_has_skcipher2 +EXPORT_SYMBOL_GPL vmlinux 0x5c452a1f rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cc03ded irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5ccb07c6 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x5ce0b409 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5ced8a1d regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x5ceeb4b2 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x5d02aff9 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x5d0456db phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d36103d wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x5d4cb7b0 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x5d510dcc virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x5d5ca512 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x5d635d77 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x5d6c5a35 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x5d725811 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5d801b4f crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x5d846222 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d9f2ed7 security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid +EXPORT_SYMBOL_GPL vmlinux 0x5dcd27ba blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x5deb4711 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x5dec0d61 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e0d0fd3 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x5e2d2ede regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x5e363f0b regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5e41988d acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e5ac23b sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x5e67b71d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0x5e6bd1ba tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x5e77ba35 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0x5e8e8c2f __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5e9c3a79 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x5ee44232 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x5f2552a6 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f2ee887 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x5f31bb97 efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x5f32d36e power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x5f40da58 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x5f6626b0 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1a54 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x5f78964f fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x5f8917ea usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0x5f913ca2 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x5fb9436f bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x5fc1d867 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x5fca687f disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x5fd4dbab ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x5fd73e73 sched_clock_cpu +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x60026a90 clk_hw_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6009cc3f phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x600d0c4d iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x60184a15 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x60201811 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x605ffad1 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x607883a9 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x6079367a x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60b53697 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x60b9882b blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x60bc89e8 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x60d77522 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x60d82d5b efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x60f53acf trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x6111d3a3 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x61459a7c unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x615b4c40 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x615f2339 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x615fb68e balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x619a3aac register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x61a3b8ba register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x61a42c7d xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x61a9c3b3 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x61e78f5d usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x61e8053c arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x61fdb0c6 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x622357ba netdev_default_l2upper_neigh_construct +EXPORT_SYMBOL_GPL vmlinux 0x62291f72 efivar_init +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x623803c8 hest_disable +EXPORT_SYMBOL_GPL vmlinux 0x626f3e92 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x6294546c handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x62a1c981 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x62a88321 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x62ab2c3b ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x62b598b7 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x62d1cba0 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x62d2e2e9 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x62d396a9 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x62e350be xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x62e584c0 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x62f41154 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x62f49f86 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x62f69cda pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x62f91da5 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x63085e30 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6319b256 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x631bd784 skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0x6340434e x86_model +EXPORT_SYMBOL_GPL vmlinux 0x6344a551 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x634d0e69 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x6354ec83 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x635e2d41 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x635ec980 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0x636b9ffe rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x6377805c acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x6396fe13 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x63a7de68 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x63b14783 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x63bb7854 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x63bda2cf devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63ef3be9 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x64009104 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x640a105f gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x64203928 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x643edfc3 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x645cde04 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x646f3457 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x6473c14c usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x648262b7 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x649d0bb9 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x64a70cfc io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x64b7069e apei_mce_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x64c81bdc unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x64e24a5e memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x64f08216 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x6528939f perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x6536953b btree_last +EXPORT_SYMBOL_GPL vmlinux 0x653cb02d intel_msic_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x654c2589 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x6558db48 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x6577a8a1 amd_hwids +EXPORT_SYMBOL_GPL vmlinux 0x657d7735 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x658c8186 amd_get_nb_id +EXPORT_SYMBOL_GPL vmlinux 0x6594dd01 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x65aa6a15 clk_hw_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x65b6cc59 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65ccc0d4 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x65dbbeb0 device_del +EXPORT_SYMBOL_GPL vmlinux 0x65eb03d8 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x65ffca61 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6637ae1c acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x665482a2 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x665ecab0 pv_time_ops +EXPORT_SYMBOL_GPL vmlinux 0x66810052 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x66814ec8 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66895102 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x66c397f7 nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x66c4099a led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66caa029 sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66e861ec rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x66f53d46 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x66fd61c7 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x6701e49c ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x670fa89d rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x672c37d6 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x674c73f9 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x6755a1a2 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x675919fa rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x675ddae9 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x67628700 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x676b15f4 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x678b8cbb kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x6793f412 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67969610 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x679aed73 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x679ee4f8 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x67a278d4 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x67acd4b1 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x67cd0822 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x681e26fc regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x682e6bb0 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x683c85ad __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x6841a8f4 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x6848cde6 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x684d72b3 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6856837b aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x6860d856 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x687886d5 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x687a3319 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x687a5134 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x68956406 static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x68b5044d power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x68b9f818 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x68be7c22 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x68c29585 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x68eaa0e7 blk_poll +EXPORT_SYMBOL_GPL vmlinux 0x68ee5709 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x68f92f2a usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x690a7101 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x69387266 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0x6964f9f8 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x697388d4 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x699bb319 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x69c6806e ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x69c69fb0 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x69cf00ee skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x69d2b76e fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x69f5d4e7 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x6a09df71 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a23d8a4 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x6a2a6a19 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x6a44df0a devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a8cbbc3 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x6a9b9805 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x6ab1b8bb usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x6acc76bb pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x6add118d wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x6ae4600b cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x6aed9ad1 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x6aeefff4 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6b0677f0 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b1f6e4a ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b2ea866 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x6b6b63cf iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6be41e67 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x6be57ad8 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x6bece039 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6bf1b90d dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x6bf50a95 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x6c016ffd pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x6c02558f rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c1251fd apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x6c12884d regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6c2fb62b generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c5b1c28 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x6c5cf4d5 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c6a5754 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6caee4d2 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x6cbba1c8 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cdc162b ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x6cdc8a4b tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x6ce511e5 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d366dec pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x6d3ed0fb ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x6d44e57a l3mdev_get_saddr +EXPORT_SYMBOL_GPL vmlinux 0x6d480a16 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x6d5acfc5 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x6d681d7f device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6dac0acb hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6dce265c platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x6dd2a9d3 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x6df8f893 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x6dfcef78 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x6dfefc23 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e0fa32a usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e4f7dae device_reset +EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x6e54e75c usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x6e782c23 iomap_create_wc +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 0x6ea95bbe register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x6eb091f5 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6ed3ee31 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c892 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f1eead4 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x6f2efbbf single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x6f2fe144 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6f3fabc3 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x6f42a72f rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x6f5685ad aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x6f59825e blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x6f6f255c debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x6f843c8c rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x6fccc017 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x6fe0993e perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x6fe1ca9b inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x700e0dab rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x70201233 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x702dac26 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x704560ca __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x70468aa3 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7046b7ea xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x70485f2b trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x705fee27 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x70787fb4 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x7088f636 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x70acfdf3 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x70bcae17 irq_alloc_domain_generic_chips +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 0x70d63c78 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x70e0966c disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x711cb245 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x71387069 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x715703b8 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7164da13 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7167af64 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x716915bc gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a3de08 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x71ae71e1 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x71b19b00 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x71b62462 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x71d8aadd da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x71db24de fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71dea85c usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x72195654 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x721a33c5 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x725811e1 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x7265c7b2 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x727f6a15 xen_swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x72906e76 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x72967a99 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x72ab68f0 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x72ab8b74 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x72ca1398 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x72ca8f33 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x72cf714d klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x72f079fd dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x72f7ed7d da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x7322902f ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x732a668c wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x7338e8dc anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7384631f arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x73874847 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x738be784 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x738fd248 intel_msic_reg_update +EXPORT_SYMBOL_GPL vmlinux 0x73979f33 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x73a0eb03 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73aa6257 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x73b73e02 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73cfe00d ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x73d49fd8 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73d8a34a tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x73dd1238 xen_swiotlb_sync_single_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x73e138c6 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x73eb6337 free_iova +EXPORT_SYMBOL_GPL vmlinux 0x73f1d39f __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x73f34da7 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x73f73cee bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x742dd3e9 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x7432964c mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x74584eb3 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x745a262d sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x745e7ec0 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7478c7f8 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x74868336 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x74add889 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74b9f79b hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x74baaad8 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c08941 kvm_async_pf_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x74d007c2 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x74deb10c used_vectors +EXPORT_SYMBOL_GPL vmlinux 0x75030f88 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x750caf7a __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x7516eadc wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75232049 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x753fcd9a ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x754280c7 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x7546e6bc devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x754af529 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x7575676b fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x75902959 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x7597c34e __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x75c2b9f1 memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75e871d8 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x75f4f544 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x760e9bbf xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x763d4733 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x763f853a wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x76417209 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x764bb218 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7653d7a2 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x7676ee2e devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x768daf01 device_create +EXPORT_SYMBOL_GPL vmlinux 0x768eb8e2 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x7699c198 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x76ca1093 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x76d7b790 extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e96020 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x772a9502 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x773121ee device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x77352d8e sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775a6ef5 kvm_read_and_reset_pf_reason +EXPORT_SYMBOL_GPL vmlinux 0x775f9b5f sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x778b675a pmc_atom_write +EXPORT_SYMBOL_GPL vmlinux 0x778bebf4 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x7790adc0 aout_dump_debugregs +EXPORT_SYMBOL_GPL vmlinux 0x77ac168f pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77c8d9be nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x77f42f43 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x77fb6a62 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x78151326 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x78156ef8 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x7849225d ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x78575bee atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785cf1c3 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x785fb880 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x786592cb cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x7874b5ec unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x78a6bdee intel_svm_unbind_mm +EXPORT_SYMBOL_GPL vmlinux 0x78aba465 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78c5c655 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x78ce13e9 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x78ebcf5a acpi_subsys_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x7915f1c0 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x79362ed0 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x7937426a find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x7946d61e usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x7979ca22 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7987361d device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss +EXPORT_SYMBOL_GPL vmlinux 0x79a433c1 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x79a71c48 kernel_stack_pointer +EXPORT_SYMBOL_GPL vmlinux 0x79cf1043 fpu_kernel_xstate_size +EXPORT_SYMBOL_GPL vmlinux 0x79d51bf8 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x79dc2b5b devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped +EXPORT_SYMBOL_GPL vmlinux 0x79e9940e ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x79ebd1c1 fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0x79f370fe raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x79fa0b62 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x7a005aa4 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x7a037e3b dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x7a093833 set_memory_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x7a18a286 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x7a1b7257 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x7a2b738a skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a386cb0 __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0x7a3929f9 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x7a51bae4 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x7a55922e fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7a5faf03 iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0x7a81a8c1 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x7a87331c max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a9c48ca irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x7aa73d37 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7ac390a7 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ad6aa84 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x7afdd95c __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x7b0afe7a regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b202401 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x7b579de7 __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x7b84b7b7 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x7b88197b regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7bcf5999 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7bd9d9f4 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x7be8bd3b inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7bff4171 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x7c1f9cbd ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x7c251f88 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7c7043cd task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x7c7f4eaf debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7ca440a5 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x7cb5526f fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x7cc53441 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cf6ea4c security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d03c0b2 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x7d04937c ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x7d36df33 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d6d62dd pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x7d79b53a pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x7d8eafa8 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x7d9c2402 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7db51b17 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x7db5a8a9 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x7dc739f0 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x7dcd2cce cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddc85a3 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x7defdd00 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x7e0f5e4f usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7e2675f1 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7e55dcca inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x7e597014 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x7e612eea udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e64e9ef pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x7e78b488 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7eb0987d power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x7ebbc00a pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x7edf2819 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x7ee98a0a device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x7ef18271 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x7efd4cd9 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7f084e4e swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x7f1bed01 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x7f1cd014 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x7f46f1ff crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f865fe2 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x7f9553c1 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x7fa47146 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7feaddb4 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x800d34fa thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x801759a6 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x802a4727 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8039ba3d extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x80460278 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80927981 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x8092de37 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x80b2f06a bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x80b7548e ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80c7164b clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x80f8589f trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x81624bf9 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x81857b70 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0x818670e2 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x81b153b9 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x81bc5734 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x81c15b30 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x81d3bf8a of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x81d4420d ipv6_rcv_saddr_equal +EXPORT_SYMBOL_GPL vmlinux 0x8204f041 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x8206e4f4 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x8207ed6a gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x8216bb0b pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x822c6843 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x823570b7 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x82364c76 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x825ee1d8 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x828b8235 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x82a78d92 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x82cb807b nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x82cf40b9 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82dbec19 erst_write +EXPORT_SYMBOL_GPL vmlinux 0x830291b7 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x8307af69 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x831faeed sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x833162d5 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x833b3edc cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x833b6b81 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x83423a07 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x834ee6f0 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8362e288 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8364598d pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x836666ce alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x836adbc4 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x836f4f31 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x83782bd5 put_device +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83a45c0d bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x83b2a533 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x83ba5fbb hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x83d11031 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x83da96ae usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x83e3272a crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x83f7f60f __module_address +EXPORT_SYMBOL_GPL vmlinux 0x83ffc071 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x840fed0d device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x842c7c85 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x84393221 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x843f7fb6 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x845e00e0 pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x8462bdcf btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x846f7c7b devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x847d0753 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x84822101 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x8491835f security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0x84a3cfa0 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84cb07fb unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x84d6dbae led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x84e839a9 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x84eae179 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x84f1bc47 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x8516b292 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x8519e250 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x852d23c7 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x8530ec87 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x85343583 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x8546998b led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x855494e1 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8567c500 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x857d081f pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x85896180 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x85be75c7 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x85c40078 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices +EXPORT_SYMBOL_GPL vmlinux 0x85cdcc68 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq +EXPORT_SYMBOL_GPL vmlinux 0x85d8da17 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x85ddf888 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x86122281 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x86138254 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x86256966 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x86320f78 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x8650043c device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x8654be58 hv_remove_vmbus_irq +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x866b36f7 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x8679a317 component_add +EXPORT_SYMBOL_GPL vmlinux 0x86819bc6 irq_ts_restore +EXPORT_SYMBOL_GPL vmlinux 0x8687789c device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868c6fb4 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x86a79656 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x86b57720 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x86e5b987 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x86ff5fa6 hyperv_cs +EXPORT_SYMBOL_GPL vmlinux 0x87052830 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x87088284 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x870bf184 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x8743239d nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x8743ef81 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x877bb2aa nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x87a6f60a synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x87bcf5d2 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x87bd3292 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x87dfcdc5 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x87f16989 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x87f7ca29 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x880409d3 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x880b2b8b fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8831f8b1 kmap_atomic_pfn +EXPORT_SYMBOL_GPL vmlinux 0x883b30c7 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x883ce379 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x884ca287 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x885889ad pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x885c87ad acpi_dev_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x885dbf11 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x886c50ff acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x88a7b084 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x88a85a3d public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88cd5d59 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x88e8838f regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x88eeae01 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x88f4d3dc __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x890211c8 open_check_o_direct +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x89334f70 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x8937bf28 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x8954c0e3 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x8956aeae apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0x897479d3 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x89775797 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x897d7632 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x899760ad blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x899e862d rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89dbe49d da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x89e5eedd phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x8a01b659 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x8a09144f cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x8a143b61 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x8a2b3bfa crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x8a418a7b regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8a559846 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0x8a5e138e nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control +EXPORT_SYMBOL_GPL vmlinux 0x8aa00f62 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8aea72fa tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x8affb88e crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x8b04bd3a ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x8b083aaa dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b39c6c3 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x8b3bcac4 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x8b51d5fb ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x8b7043cc desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b82fb21 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x8b91e19a ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8b928737 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x8b92f86c watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x8b937df3 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8bae1627 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x8bb4926b apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x8bc383c3 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x8bc41382 fpu__restore +EXPORT_SYMBOL_GPL vmlinux 0x8bdb3c58 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8be678a1 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x8bfe1da4 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c06a108 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x8c097a95 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x8c0dc52c xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8c10562e rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x8c4675f0 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x8c5c2bf3 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0x8c5dd511 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x8c5efe0c ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c675af8 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c82bda6 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x8c946d1b pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x8c9d1661 arch_phys_wc_index +EXPORT_SYMBOL_GPL vmlinux 0x8cd9f935 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0x8d15efcb __add_pages +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d4c998a rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x8d610bab blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x8d6808fa devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d7acb0a get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x8d93055e blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x8d954293 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x8dbd2e44 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x8dcc0d7b pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x8de1a232 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x8e074636 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x8e085074 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x8e18b5bf mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x8e2ae755 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e360c52 devm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x8e5fc2fb pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x8e601205 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x8e833b19 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x8e840d9a fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x8e84424c acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x8e87a2f4 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x8ea7107f regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x8ea924ad pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x8ec24442 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x8ecc4be6 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x8ed4d3d5 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x8edef29a crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0774a9 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x8f0bbd5f ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x8f0e1508 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x8f3f5614 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x8f566c27 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x8f613718 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x8f64ec2d bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f74d157 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x8f778f11 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x8fcf4f41 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x8fda16a6 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x901ce179 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x9022d5bc memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9047c11a trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x9074fd4f rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify +EXPORT_SYMBOL_GPL vmlinux 0x90e4d921 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x90e6f0f7 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x9107447d aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9109ed9d device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x912c9f30 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x9139974c __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x913d87b0 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x9160d492 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x919356be fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x91b4eb7a irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91fa01e1 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x91fc8928 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x9237c910 pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x923edc6b fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x924153c5 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x9250d47b thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x92581cf2 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x92582f3d component_del +EXPORT_SYMBOL_GPL vmlinux 0x92589430 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x9274e638 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x92a19aaf crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x92ae0bcf uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92f537a0 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x93013752 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x931627d1 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x932a9651 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x935a419a bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9399c973 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x939f3a18 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x93b36959 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x93b88d53 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x93d4aad0 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9428cf6e devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x94294ee5 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x9432b036 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x945176ed crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x946342c3 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x947137d0 x86_platform +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x94853fde pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x9488d067 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x94935433 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x94a353a3 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x94ae555c tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x94c0b265 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x94c318be apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x94d79cff pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f0c555 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x95271446 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x9534ddb6 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x9577d48d ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x95814eab devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x95b62b3c rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95c3b0c1 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x95fb95b2 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9602758b rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x964add15 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x96510b91 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x965b8062 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x9672b3e8 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x96c71383 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x96c8c17e usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x96cc9a65 iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x96db4043 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x96e1abc5 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x96e481ee security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0x971353fb blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x9714ea5a devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x9716ecd9 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x973ab8ad cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x976a19b2 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x976c2794 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x9783061b sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x97a8ad6a __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x97a96329 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x97bab66a __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x9801d93a intel_scu_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98191378 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x981a6c68 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9840587c acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x984834bf udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985e8bfa of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9865db4f efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x9876385c __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98929061 xen_swiotlb_sync_sg_for_device +EXPORT_SYMBOL_GPL vmlinux 0x9893e98e phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x989a7cba sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x989db9c9 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x98a29747 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x98a3ae10 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x98aa7aaf trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x98abbf8c d_walk +EXPORT_SYMBOL_GPL vmlinux 0x98dac647 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x98dac9d0 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x98ece82b pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x9907e18a regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x9922b799 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x992329cf driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x9926cb83 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x996875e1 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x99785bd8 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x9989e030 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x998efc65 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0x99946344 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x99a34790 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99b74a22 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x99baa9bc l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99cc96c7 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x99ce0592 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x9a06f59f wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9a0b036c blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a2d4a7e skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x9a395f64 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x9a3d9387 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x9a494cbf usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x9a80ba05 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9a9c04b2 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x9a9e22f7 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x9ab30d85 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ad5fa0e irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x9ad96ef5 pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x9ae17550 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9b177d82 register_mce_write_callback +EXPORT_SYMBOL_GPL vmlinux 0x9b35cb45 security_inode_readlink +EXPORT_SYMBOL_GPL vmlinux 0x9b720312 acpi_target_system_state +EXPORT_SYMBOL_GPL vmlinux 0x9b82fe37 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9b9f694e xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x9bc8b737 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x9bd72b78 apei_write +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bf738e7 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x9bf978e2 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x9c09dc5c nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x9c0fbc7c ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x9c241f82 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x9c2db75a pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x9c2e4b66 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x9c40140d ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x9c462261 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x9c532f4e regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9c536c6e device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x9c7f73e5 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x9c81db85 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x9c8e7f16 xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x9c9bd8aa irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ccdf526 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x9cd03213 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x9cd5af55 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x9cd62304 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x9ce764e7 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x9d1bda3e securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x9d3ab4ab dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x9d4014ec virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x9d473c41 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x9d50a1e4 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x9d539268 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x9d62c898 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x9d6d7f0a __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x9d6e9700 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9d85367a dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x9d99a062 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x9dad7fc1 do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0x9dcb9203 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x9ddf7989 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x9debc2a2 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x9dee6954 isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x9df39b46 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e16a395 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x9e41a8b7 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e5a182b gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x9e5e45b5 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x9e6ee0b5 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x9e7b67ec ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x9e971c59 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x9ea83606 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x9ebff902 start_thread +EXPORT_SYMBOL_GPL vmlinux 0x9ecf42f9 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9edbedc6 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x9ee2296c wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x9eea0fb3 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x9eeffc33 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x9f5c63d0 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x9f6259a2 amd_df_mcablock_names +EXPORT_SYMBOL_GPL vmlinux 0x9f8cc7e0 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x9fada840 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x9fb7e1ea inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x9fcca9f8 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0xa0139279 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xa0208e02 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa0221ebc __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xa0392566 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xa044b286 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0xa07a23dc xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0xa0ae9538 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xa0b210eb ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xa0d3253d debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xa0e9e2e7 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa11b55b2 xen_start_info +EXPORT_SYMBOL_GPL vmlinux 0xa12bf4cb iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xa12d7c61 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xa14a1817 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xa14ec2c2 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa15c3c1e usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa16a3f67 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1d43a69 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xa1e32cdb __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0xa1e8ac9f ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xa1ec1def anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xa1f79553 xen_create_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xa210add1 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xa2254a9f regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xa236b8f7 copy_reserved_iova +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa274b90c usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa28fc0fb virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xa2b0a742 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2c99d34 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xa2d8e7a7 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xa2ea6092 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xa3047411 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0xa3079733 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xa35869ae dm_put +EXPORT_SYMBOL_GPL vmlinux 0xa3671c5c irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xa37991fc spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xa37b831a n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xa384ebde arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa38ccade pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa3907dd5 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3ba6b79 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xa3dd2fc6 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0xa3e17b78 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xa3e5287e __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa413d407 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa4558dc6 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xa466de38 acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0xa468a99a cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xa47a5afc vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xa47d6b9c crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4883d5c kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0xa4ab3647 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xa4b058d7 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa4de4927 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0xa4e0b8d1 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xa4e66ec3 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa500a9a2 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0xa51b656d md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xa533cf53 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xa57e9a33 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xa5994c4a ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xa5b4c4af regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xa5db1c09 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xa5e1af19 serial8250_em485_init +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa60a3097 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xa61350f6 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list +EXPORT_SYMBOL_GPL vmlinux 0xa62ac093 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xa633373e ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xa6395f5a relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0xa642a789 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xa659db09 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xa6609748 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xa663f4ac sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xa6a27c96 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6b35b55 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0xa6b532ef cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xa6d738f8 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0xa6dc8305 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6e1fed2 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xa6ff0076 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xa72310cf sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xa7295060 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xa7736181 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xa799fdd8 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xa79dd57b sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xa7aaf418 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa7bca5ea xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0xa7bd0717 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xa7bdb253 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xa7c27bc0 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0xa7c8ab1d dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xa7c95744 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xa7cdd8ca wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0xa7cf20a2 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xa7f8560a raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xa7fae3cb alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xa7fbc816 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xa801b359 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0xa8080e9f debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xa82ac278 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xa8443c72 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa8537b14 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0xa8586049 apic +EXPORT_SYMBOL_GPL vmlinux 0xa86b0594 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xa86ecb5c md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xa86fec08 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xa87b9fb7 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0xa883f45b regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xa88672f9 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0xa894e3a3 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8cfe293 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0xa8cfff86 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa8f0c130 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xa8fd141a serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xa8ff3dd2 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa915d2cb ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa94dae58 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xa95fd54e static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xa978eece regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0xa99157db regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xa9a46093 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xa9ad1381 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xa9b0ec92 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xa9d0a9a4 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9f52b89 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xa9f881d9 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xaa0f61f8 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa4f4c64 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xaa564b96 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xaaa6e151 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaad5bb00 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xaae9564a intel_mid_pci_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0xaaec9fc0 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xaafe8ad1 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0xab035348 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0xab064f8f efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab2ee5cb unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab83f9c9 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xab8d5af7 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xabab7dd6 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xabad2e64 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xabc46ac9 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabcb886c platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xabd0af6d usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xabd7396e sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xabd7cd03 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xabef5929 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xabfe96fd xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xac0577c0 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xac4c9a6f pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xac843c1e io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xac912d36 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xac9ce195 kvm_async_pf_task_wait +EXPORT_SYMBOL_GPL vmlinux 0xacafa8e7 vector_used_by_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xacb1433f platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xacb4226a __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xacc1d250 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xacd66687 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xacd8673e devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xacdb0aa4 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xace2c403 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0xacfbb2f8 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xacfd3257 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0xad038b19 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xad3272dd rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xad364add pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xad4bc41b da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xad5200ab dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xad56bb8e xen_swiotlb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xad68dfcd xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0xad6a6dd0 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0xad7237af serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0xad7ae222 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xad813b72 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xad81865c clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xad8d1b9b acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0xad8d8ab0 xen_physdev_op_compat +EXPORT_SYMBOL_GPL vmlinux 0xad9c55ee __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadba7863 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadf08980 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae0736ad page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xae0d4c9e ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0xae150437 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xae1f157f devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xae299147 nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xae504f8e usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6a9046 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xae70a30b __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xae726abe pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xae7bfcb6 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae93f3d7 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xae9551a6 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xaebde012 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xaf10fc9e da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xaf4cd6d3 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xaf8509cb ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xafd4ebe5 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xaff841e5 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xaffa5dd4 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xb0046eff setup_irq +EXPORT_SYMBOL_GPL vmlinux 0xb005ea16 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb03acfa9 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xb04c0cdc crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xb057f465 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb085b1d3 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xb09532af user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xb09d97f9 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb0add94d devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0d880f7 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xb0db7a95 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xb0f005d9 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xb0f8d159 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0xb1007cae blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xb12cedc9 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xb136d596 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xb139e6a8 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb14fb53f blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xb1693686 usb_string +EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init +EXPORT_SYMBOL_GPL vmlinux 0xb173c372 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1861150 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xb196e603 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xb1a48756 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xb1a5f2fe usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xb1a9fb9e xenbus_dev_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1c43e8d request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xb1d900d4 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb1df7779 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1f6dce8 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0xb2210518 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb285b8f8 xen_in_preemptible_hcall +EXPORT_SYMBOL_GPL vmlinux 0xb2aa3757 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xb2ab6d25 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xb2b3fe91 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xb2bd8622 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0xb2cdbfa8 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xb2de3a4a ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2f27fe0 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xb2f90263 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xb2f9243f bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xb2fce518 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xb30f9be8 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb3303c3d bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xb3316987 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xb33c9d85 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xb33dad00 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xb3571fb5 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xb38771c3 do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0xb3a0d76d srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xb3a53337 phy_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xb3ef14bf virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xb3f60355 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xb3f83f11 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xb3fe5975 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0xb4187fc3 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xb41acaa9 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xb427613f usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xb44347f2 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xb44c3079 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xb4557e67 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xb48515ba validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xb48f28fb devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xb4b4cc54 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb4e784fb regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xb4e962df __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4f05819 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb4f7e3fd cpu_tlbstate +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb5302bde dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb54d40db cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb58d50b2 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb58e842b regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xb5938a02 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0xb5958a59 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xb59e96de regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5c50b18 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xb5dac819 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xb5dde297 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xb5efdf0f crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb63345d3 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xb63411c3 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xb6415906 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xb64c0026 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xb64e09b4 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xb65a4803 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xb65ec2c2 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid +EXPORT_SYMBOL_GPL vmlinux 0xb66ab232 ptdump_walk_pgd_level +EXPORT_SYMBOL_GPL vmlinux 0xb6a01e2f preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6bc49a9 __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xb6e6b358 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6e89f9c virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xb711d130 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xb718f2f9 sfi_table_parse +EXPORT_SYMBOL_GPL vmlinux 0xb726e62b security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb75d794d __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb77d64aa gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xb78b0cfb gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xb7a12eda wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xb7b3ef4a devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7d0e327 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xb7d551af udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7d863a8 acpi_dev_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xb7e37389 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb7f7a686 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xb82747c0 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xb8588607 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xb86230bc ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xb88bec38 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8a635b7 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0xb8b57aea acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d23a78 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb90cfb8d acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0xb90d96f6 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xb9245040 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xb9756c08 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xb99e62bc uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9ba9e25 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xb9c094b6 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9cb2b5a tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9ebc1fe gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xb9f8d6bb acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0xb9ff8ac5 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xba09d91f iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xba1abac7 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba30cd7e devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xba31ae68 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xba35ebb1 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xba3e997a virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xba4430c8 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xba49cdd4 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xba5913c1 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xba94c685 cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0xba9c5323 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xbaa6e355 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0xbab0ea2b devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbaec6bf2 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb13d25b percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xbb14cf6a ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xbb2bd760 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbb344785 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xbb40e69e ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xbb470301 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xbb58b814 iomap_free +EXPORT_SYMBOL_GPL vmlinux 0xbb69d870 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0xbb80d24b public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xbb86e9b6 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xbb906d4f ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xbb9319c3 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xbb94d70d pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xbbb4d294 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbbf9b64 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xbbd4f657 xen_pcpu_id +EXPORT_SYMBOL_GPL vmlinux 0xbbe480bc usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xbbe6156e blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xbc08b27a debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xbc12f372 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0xbc4217d4 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0xbc4b5fa5 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xbc6720a6 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbca0201a sfi_mrtc_array +EXPORT_SYMBOL_GPL vmlinux 0xbca1dc23 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0xbccc12ec xen_swiotlb_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcfa4ca5 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xbd02c86f spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0xbd3b2b7b tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xbd3ec0ab inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd441c7b badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0xbd5c30b8 get_empty_filp +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd7c666d regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xbd841bf0 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0xbd86b127 usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xbd89780e fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbd8d3b6b cs47l24_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbd8f852f gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xbdb12970 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xbdc7ab32 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbdd5f10f apei_hest_parse +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe1b529d rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xbe246181 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xbe25b422 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xbe2bd1fc nvdimm_clear_from_poison_list +EXPORT_SYMBOL_GPL vmlinux 0xbe35e0a8 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xbe3ae70b bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0xbe44fd75 mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbe4ae791 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xbe4fa986 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xbe517850 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xbe532b77 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe72c38b pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xbe7a1861 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0xbe9d5cba i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeae5fd4 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xbec9b6e9 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbed4f965 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0xbed7e979 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xbef4201d __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xbefc1710 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf082192 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xbf2d1804 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xbf3b2f6b injectm +EXPORT_SYMBOL_GPL vmlinux 0xbf474b5a irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xbf516982 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xbf5efa8f clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xbf76bf75 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbf99cc2d simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xbfb1be70 hv_setup_vmbus_irq +EXPORT_SYMBOL_GPL vmlinux 0xbfb3409a debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfd10bb7 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xbfd6c1f1 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 +EXPORT_SYMBOL_GPL vmlinux 0xc007eb72 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xc01e0b08 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0xc03e5628 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xc0423256 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0xc0443302 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xc05a1067 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xc064d345 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xc077ca53 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xc083350f pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0900fcf acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc0972ae5 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b63305 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xc0ba32f1 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xc0c1cc64 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xc0c9cda6 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xc0cf49af xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 +EXPORT_SYMBOL_GPL vmlinux 0xc0ece170 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc10aedbf fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xc133df45 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0xc142249f dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc15c74d5 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xc162d0fd fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc1878826 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xc18e7d0d ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xc1dd3787 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc1e53b4f pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xc2151037 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xc2277375 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xc229ebdc trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc2494675 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xc25557a8 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xc2575099 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc25be58a ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2985744 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc2a4c535 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xc2a9f5e5 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xc2ba27e4 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc2c65d0c tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xc2ceba35 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc2e44fee blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0xc310f955 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc359c9a8 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xc366a3f2 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xc369ab43 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc3a6ca36 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xc3c43238 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xc3ede9ff cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xc409eaa2 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc41cd623 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xc425ddca device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc45998a2 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xc45f0a18 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc4773885 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xc47f257f __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4b06c47 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xc4b4f18b serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xc4d56296 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0xc4df5b9a iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0xc4e89c1d led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xc4ef3e51 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xc4f29afa devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc4f2c142 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xc5121068 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0xc51c9a01 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xc53018bd device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc555332e device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xc5583ce0 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc56edce3 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc58687ca scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0xc5878314 blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0xc5a3f517 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xc5a6d0c4 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xc5c0d91e blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xc5c8d7e9 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xc5cd8dff fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5e1d6df l3mdev_get_rt6_dst +EXPORT_SYMBOL_GPL vmlinux 0xc5e43c8a acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xc5e75788 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0xc6032c24 dm_use_blk_mq +EXPORT_SYMBOL_GPL vmlinux 0xc61614ce i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc64e6a9b badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc660dec2 device_move +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66ce116 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xc673f146 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc69e51b9 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6bad65f ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xc6badf2d usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc6ccc12c clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xc6f5eb2e inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc729b22d key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xc72a9a6b __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc7908d36 acpi_dev_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc79611ee rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7b1f8c9 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7f79fbc tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xc809006e pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0xc816884d usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xc829421e bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xc84e97cc ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xc850ac2f da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xc85c3c73 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xc85f1f0e dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc8716e07 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc8abac94 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8b8b517 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xc8c69313 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8ff50c5 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xc9008bb6 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xc90e44f7 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc91aa4e9 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xc9457c26 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc959626c xenbus_map_ring +EXPORT_SYMBOL_GPL vmlinux 0xc9734b19 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xc97b1652 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0xc9a4f003 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xc9b6ecd1 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xc9be98b0 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9c48d0a mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xc9df6da9 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca3f1ad1 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xca464a03 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xca575a05 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0xca891bde devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xca8c939a ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xca972133 set_pages_array_wt +EXPORT_SYMBOL_GPL vmlinux 0xca9b6dcb bdev_dax_supported +EXPORT_SYMBOL_GPL vmlinux 0xcab271cf pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcae87bb1 regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb16eda3 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0xcb2198be crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xcb3c0801 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xcb4cad15 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xcb4dd81d ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xcb51b8f7 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xcb5cc98b phy_create +EXPORT_SYMBOL_GPL vmlinux 0xcb6445e3 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xcb65a03c dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0xcb670883 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xcb6a1c4a task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xcb852da6 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xcb860b87 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xcb87014a ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xcb961539 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0xcbc6ae9f usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xcbd48c3f hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbee6f72 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xcbfc66aa nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xcc49ce12 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xcc600892 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xcc729082 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0xcc844c04 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcca3ea66 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xccacda87 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xccadd02c crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xccaf18b2 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xccb2b8b4 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xccb4fb26 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xccb8fb30 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd4b193 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0xccdf693a clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0xccf53b0f md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xcd00166f bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0xcd00ceaa dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xcd1516df register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xcd2723d5 hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0xcd3728d8 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xcd462dfe led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xcd469883 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xcd52e510 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xcd57c9fd devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xcd5d4ef9 btree_update +EXPORT_SYMBOL_GPL vmlinux 0xcd636168 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xcd782e27 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xcd80dced ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xcd82f19d acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0xcd872210 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xcd905e2d is_skb_forwardable +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 0xcda00c92 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdc4e3a5 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdf83100 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xce12d037 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0xce1339e4 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xce1e4b13 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xce243c42 xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0xce2731c4 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xce2c459a cs47l24_irq +EXPORT_SYMBOL_GPL vmlinux 0xce382e95 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0xce437413 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xce69fd7e usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce6e2aea clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee8b79d blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xcef1dd0e perf_check_microcode +EXPORT_SYMBOL_GPL vmlinux 0xcefcb0ff tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xcf048fd9 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0xcf14df64 xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf6f9fdf rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xcf8c65e0 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xcf9ba968 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xcf9cdd9c __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0xcf9db168 put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xcfa74e4b acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfbc7b9a list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xcfc10c43 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfc9cf89 debugfs_use_file_finish +EXPORT_SYMBOL_GPL vmlinux 0xcfd514ec hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcfd65753 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xcfe4d491 find_module +EXPORT_SYMBOL_GPL vmlinux 0xcffc2733 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd010d2c1 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xd0173120 clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xd01ebfe9 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xd02e30e1 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0xd02f7dc1 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd051381e da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd05f53b4 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd0a6071b rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0de2e44 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xd0f9eea5 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd10c3d00 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xd1507e59 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd169b2eb pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xd18724f4 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0xd1d6a8fc gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xd1e11fc0 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xd1e864a7 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1f77792 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd211e220 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd220caa1 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd23f2576 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xd2587238 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xd267d135 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xd26c414c mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xd2714b2d clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd2803276 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xd28285ef power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd2982629 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xd29f3a34 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd2af4ffe usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xd2b4ad40 acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0xd2c58ab2 apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0xd2d08ef1 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xd2d1927b hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2e1b4b2 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0xd2e88de5 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xd2e9078c xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd2f54a4d crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xd2fec05a nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xd310946d i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd332a5ec usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xd334b31f device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xd3508c14 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0xd35a6594 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xd36a1012 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xd3a07823 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xd3c6f100 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xd3cfaabd i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xd3da9ae4 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0xd3fc0de4 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd46b254d thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xd47740a9 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xd47961ec fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xd49635fc iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0xd4965de7 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xd4a6eb3d clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xd4b227cc crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xd4b6ed77 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4ecb660 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd50cb171 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xd5270f48 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0xd54132c0 xen_swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0xd544e902 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0xd552acb2 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xd55964f2 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd584bdea devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xd5854776 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xd5962804 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xd5b85c98 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5f783bf use_mm +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd632721d pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xd63535d7 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd64d5234 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xd665706a reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd66c759b bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6b0e444 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xd6ba9b0b led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xd6c6380c inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xd6ed3a8e cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0xd6f01c7e wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xd6fe116a __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd703cdda pin_is_valid +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd713f739 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd731e78c tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd743f11d power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xd75e053f pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xd7636261 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd769e9e3 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xd76c6aa8 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd79c89de clk_hw_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xd79db971 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0xd7ab2c0c speedstep_detect_processor +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7e058b2 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd7eda17e phy_init +EXPORT_SYMBOL_GPL vmlinux 0xd7ff6332 phy_get +EXPORT_SYMBOL_GPL vmlinux 0xd808e11a cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xd810e049 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd8250a5c iounmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xd831a641 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0xd8375a54 amd_core_mcablock_names +EXPORT_SYMBOL_GPL vmlinux 0xd85a23f6 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xd85e1d13 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xd871cc6d pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8820229 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xd893db69 clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xd8af3075 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0xd8b5c8f5 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xd8e52017 insert_resource +EXPORT_SYMBOL_GPL vmlinux 0xd8eda2db hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd8f2854f tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0xd8f60a9f pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges +EXPORT_SYMBOL_GPL vmlinux 0xd92ad1d5 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xd93d9f8e pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xd93e34d3 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd9485c27 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xd94b737e erst_read +EXPORT_SYMBOL_GPL vmlinux 0xd94fa823 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0xd9580654 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xd966381e rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd96fc4bb i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd986dad1 kernel_fpu_begin +EXPORT_SYMBOL_GPL vmlinux 0xd9954dfd xen_swiotlb_sync_single_for_device +EXPORT_SYMBOL_GPL vmlinux 0xd9ad92c3 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xd9d0d6ed arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xd9e9e29a gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xda09d7c4 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0xda0e75f9 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0xda454b04 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xda504936 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xda537fd2 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0xda83d45f crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xda96b007 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdab96c03 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xdac0aba8 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdac401f9 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xdac5484e ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xdaca506d lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xdade6761 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb165914 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xdb1d7cce usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xdb30bf42 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb5b562b kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xdb600c53 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb6eba28 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdb710296 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xdb86f3e1 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb8d8a8b page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0xdb9ea8d5 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0xdba8164f verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0xdbac47a7 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0xdbc84d8a init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xdbd35029 pci_msi_set_desc +EXPORT_SYMBOL_GPL vmlinux 0xdbf198d8 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xdbf547d3 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbfb1039 input_class +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc22c361 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xdc23956c usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xdc25e425 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc49053e devres_get +EXPORT_SYMBOL_GPL vmlinux 0xdc5242b9 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc7a50eb adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcb1f1ca ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xdcbd4bba usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xdcc7350b tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xdce13ac1 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdce7a607 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xdceaab3f usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xdcfe8192 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd66a409 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xdd723aa8 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xdd8aba7d pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xdd9fbfd1 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0xdda32fef bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xddb9ed7b to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd2532c clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xdddc05b1 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xdddff390 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xddf04c12 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xde01e337 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xde0f7052 mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0xde1803d0 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0xde323241 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xde3b8c27 user_read +EXPORT_SYMBOL_GPL vmlinux 0xde43b0d8 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde542e63 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xde5d4350 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xde747356 intel_msic_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xde8dd926 klist_next +EXPORT_SYMBOL_GPL vmlinux 0xde9463a6 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xdec1af51 alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0xdec42c8f max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xdec82ea2 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0xded29c5e init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xdeedb9ca ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf13a4d5 clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xdf213eba fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xdf3c0834 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xdf622181 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xdfa12acb platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdfa2fc19 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xdfbfb43d rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xdfdf4ca1 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0xdfe91095 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xdfee5362 clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe04b7dfc clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe04d59b6 fpu__activate_curr +EXPORT_SYMBOL_GPL vmlinux 0xe058f0ca __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe08fc85f set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xe0910575 of_css +EXPORT_SYMBOL_GPL vmlinux 0xe097a06d component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xe09a4a66 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b2fad3 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xe0b6802e dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xe0bc67a0 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0cd5723 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xe0cd89bf crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xe0dca677 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xe1051db1 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe116e490 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xe12ecec2 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0xe14d2aca trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17aeb85 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xe182fe23 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xe18cda7c ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xe19a0227 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xe1bb93da pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c2b257 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xe1d67cc8 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xe1d69b19 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xe2291e07 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xe2331efe irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xe2414a54 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xe24847c4 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xe24915f7 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xe24a1c35 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xe25048b3 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xe2647cd6 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xe278f16a posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe2ac7123 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xe2cbd79c usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xe2ef5df3 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe305d5b7 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xe31d2c2e pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xe31f18b4 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xe327e928 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xe3397fe6 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xe33b8644 get_system_keyring +EXPORT_SYMBOL_GPL vmlinux 0xe3669303 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xe373e379 xen_remap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xe37604aa fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0xe385e418 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list +EXPORT_SYMBOL_GPL vmlinux 0xe3966e09 __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0xe3a4692b srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xe3af1afb sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3db5a7d sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xe3e7bef0 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0xe3f49507 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xe40729b5 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xe4086589 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xe40e5d7d rcu_exp_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0xe40efb72 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0xe418fde4 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe41eca06 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xe426fbd6 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0xe42bad8f kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe439815c erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xe4588ffd __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe4773a4c get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xe481fe04 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xe4858328 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xe4902ea6 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xe492dd46 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4ba9479 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xe4c331b6 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4e68bc8 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0xe4fb515f devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe4ffa1ac percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe5141924 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xe514d401 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xe5171f7d regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xe51dbae4 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xe532755a usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xe53386ee pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xe545a811 get_xsave_addr +EXPORT_SYMBOL_GPL vmlinux 0xe55bc120 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0xe56a688e inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58b6d4f rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe58ff2b7 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xe5b8082b cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0xe5bbd6a2 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xe60296b6 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xe6140f11 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xe6181feb usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xe619c94f pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe65d2e70 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xe66150dc aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe672e7bf syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xe67affe4 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xe6a3f0a2 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0xe6a8570d extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xe6c391f2 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6d1e362 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0xe6d36808 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0xe6dc873e spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6e54643 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe6e8d495 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe70117b6 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xe70d5da4 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe738e652 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe74ddd6f scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xe75b161e fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe78c2de5 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xe79e828f blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xe7b58941 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xe7c05537 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xe7c8b057 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xe7cc2563 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xe7ebac0d ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xe7ee1170 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xe7fa7e53 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe82c0b9f rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xe84b861e find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe8587395 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe879d53a rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0xe8840833 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xe89026d9 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xe891a851 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe8de07a8 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0xe8e8892c ping_err +EXPORT_SYMBOL_GPL vmlinux 0xe8efc797 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xe93229f5 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe94256bc __class_register +EXPORT_SYMBOL_GPL vmlinux 0xe944c1c9 clk_hw_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0xe9474bde dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xe9550220 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xe97483c7 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xe98195e8 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xe9aa983b ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe9c3e683 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d44273 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xe9dbc7a1 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xe9f16103 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xea044321 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xea06ccc6 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea3237a1 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0xea3d6c93 setfl +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea539321 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xea582f7a ref_module +EXPORT_SYMBOL_GPL vmlinux 0xea61b420 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xea61bd25 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xea739a70 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0xea8e3160 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea8f6157 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xea917c9b bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xeaa9a1ca regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xeacf21f4 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xeaf04f83 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0xeafb99db pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xeb2798f7 xen_destroy_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xeb295bad __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xeb2a7f78 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xeb3138a5 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0xeb370805 __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xeb383333 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xeb3b8372 security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0xeb5dab81 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xeb6fb0a1 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xeba26c44 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xebb12ab9 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xebb1ef62 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0xebd8bd98 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xebe7a9e3 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebf5b301 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xebfb9525 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec2eb1ec ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xec382c6b restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xec40ce31 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xec4966b1 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0xec854117 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xeca63247 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xecb4382c sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xecb97d8e usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xecbe445e get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xecc04d96 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xecc39a1c get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xecd13d11 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xecd1dc04 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xece8e967 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xecf61fa2 dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0xecf96a8e spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xed06c5cb pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xed16ca65 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xed184bd6 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xed244824 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0xed2dfeaf pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xed4c61da rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xed5a7fe5 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xed861629 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xed9711a8 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xed97b496 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xed9ce7ef inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0xed9d0d23 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xeda24e07 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xedc89a4a sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xedcdffd4 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0xedd37059 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xedea6f15 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xedebb997 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xee10a473 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xee1530c6 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xee295088 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xee34e794 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xee3a35fb param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xee471c89 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0xee52541b static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0xee59fa8a sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xee63f904 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xeeb41161 xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xeec18bf7 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xeec41970 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run +EXPORT_SYMBOL_GPL vmlinux 0xeef93677 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xef118a34 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef344724 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0xef457315 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef475c58 loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0xef606119 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xef63f1b5 dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0xef6b7588 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef731a25 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xef7a424b alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0xef82f881 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xef9d20fd sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa36e01 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xefb2f46e crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xefb71db8 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xefeea1ad set_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0xeff87be5 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xf00cf339 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xf0313975 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xf03a6a9d ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf04835f7 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xf048887d rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xf04b7bdc bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xf054ac97 intel_msic_irq_read +EXPORT_SYMBOL_GPL vmlinux 0xf05cdbd0 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf08db279 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xf0b5b63a shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xf0c4cfa3 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xf0d7eaf3 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xf0e39356 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xf0f53814 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf13283e4 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xf1443491 ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0xf1470683 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xf14b21fb serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xf182a6d2 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1a05bb3 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xf1a34a6e crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xf1a4b036 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xf1a77f68 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xf1ab322b mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1b551d9 ibft_addr +EXPORT_SYMBOL_GPL vmlinux 0xf1c346b6 nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xf1d0ac2c powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0xf1d38560 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xf1e2eb71 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf1ea3013 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xf203385e devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2331779 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xf238ea05 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0xf241ba11 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xf241cba9 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xf2439a78 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0xf26158c3 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xf278fac0 tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf28df71c handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xf291252d alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0xf2970256 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf2a94ed3 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2b176f0 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0xf2bc3641 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xf2bdacf2 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xf2c8befa pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xf2cfab54 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0xf2d14b2f sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xf2d5891c split_page +EXPORT_SYMBOL_GPL vmlinux 0xf2f5efe8 relay_close +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf3552936 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xf355bfac cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf37e3635 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xf37f94b6 vmf_insert_pfn_pmd +EXPORT_SYMBOL_GPL vmlinux 0xf37feef7 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3a41088 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf3a4a0bb ex_handler_fault +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3dd3ec1 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf3e3fa11 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xf3ebf4eb arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xf3ec7333 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf40c38e5 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0xf4104081 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xf425c528 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xf436038b subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xf4486178 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xf46b19cc tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xf474de40 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xf48e5e2b regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xf491bf29 device_add +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4ba26f1 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf55f80a3 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xf5989021 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5c4ca68 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xf5ee5ce9 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xf615386f percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf643716a ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xf64581e2 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0xf64d50d6 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0xf6501ba8 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xf66500f7 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xf69b7768 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xf6ad42b7 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xf6b64562 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0xf6b7f3fc xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xf6b8089e __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c86240 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks +EXPORT_SYMBOL_GPL vmlinux 0xf6f48e66 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0xf71d8e14 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xf7481e5a add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xf74de797 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xf754b589 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xf7554c30 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xf75be268 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0xf7650190 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xf7b499b7 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7daadc3 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xf7eb2956 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xf7eb43ae sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0xf8004467 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xf8090702 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xf8285932 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf85832b3 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0xf878db80 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf8944c83 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xf8dae639 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xf8dc2126 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xf8df1430 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8e864f8 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xf8eb53af usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xf8f0e2f7 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f70b1a pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf91f839c da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xf9241bb0 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xf926c629 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf965d67b class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match +EXPORT_SYMBOL_GPL vmlinux 0xf9870e0b power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xf987475f pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xf98943cd pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf99ab9c5 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xf99b5472 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9ce9672 i2c_new_secondary_device +EXPORT_SYMBOL_GPL vmlinux 0xf9cf2967 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xf9d9264e xen_have_vector_callback +EXPORT_SYMBOL_GPL vmlinux 0xf9dc0623 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0xfa054149 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xfa0cefde inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xfa0d97eb pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xfa14cedd devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched +EXPORT_SYMBOL_GPL vmlinux 0xfa3b483e pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfa3ff969 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0xfa892d07 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xfa8ca799 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xfa9d8ed6 udp6_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0xfa9e33f7 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xfabc0fbd devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xfac3521a platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xfaca5d98 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0xfaccc292 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xfad1321e skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xfadd1158 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xfae452e9 find_iova +EXPORT_SYMBOL_GPL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL_GPL vmlinux 0xfaf65d55 sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0xfb06d545 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xfb11454f __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xfb120ff1 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xfb238f21 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfb25ce06 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb53d6ce acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xfb64b230 acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb83db03 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xfb98fba7 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xfbb4e5e8 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xfbb719cd scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbe2ddca remove_resource +EXPORT_SYMBOL_GPL vmlinux 0xfbe8d59a l3mdev_get_saddr6 +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc2c920d devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xfc39cc1e dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc7f3cb3 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0xfc968c8b apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0xfc9af24f power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xfceca120 pm_genpd_syscore_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xfd0ef651 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xfd36eb3b usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xfd71ea19 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd74d3db skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xfd870b72 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xfd9d8367 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xfdacafc5 xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xfdae9e9b ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xfdbd80b4 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0xfdd3fbbc __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xfdd7a39a iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xfdec1020 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0xfdfc1539 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xfdfc1b65 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xfe164e46 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe4782e1 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xfe67325d sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe9f0bc0 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xfeb43ef9 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xfec10f16 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xfec73863 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0xfecc05b0 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfedf2980 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xfee02f24 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfee44ef3 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xfef16c3d sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xfefe3af9 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff07b2a9 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff2ce747 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0xff3d686f blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff60e8dc intel_pmc_slp_s0_counter_read +EXPORT_SYMBOL_GPL vmlinux 0xff676f43 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xff73287f fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xff760810 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xff92a7f9 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xff9e90b2 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xffa023fd of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xffb0f56c rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffc8c0ac da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xffd73d1f devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xffdcadb9 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xffe17893 public_key_free --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/i386/generic.compiler +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/i386/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 6.2.0-5ubuntu12) 6.2.0 20161005 --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/i386/generic.modules +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/i386/generic.modules @@ -0,0 +1,4940 @@ +3c509 +3c515 +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +53c700 +6lowpan +6pack +8021q +8139cp +8139too +8250_accent +8250_boca +8250_dw +8250_exar_st16c554 +8250_fourport +8250_hub6 +8250_mid +8250_moxa +8255 +8255_pci +8390 +8390p +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +BusLogic +DAC960 +NCR53c406a +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +abituguru +abituguru3 +ablk_helper +ac97_bus +acard-ahci +acecad +acenic +acer-wmi +acerhdf +acpi-als +acpi_configfs +acpi_extlog +acpi_ipmi +acpi_pad +acpi_power_meter +acpi_thermal_rel +acpiphp_ibm +acquirewdt +act2000 +act200l-sir +act8865-regulator +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5761 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7606_par +ad7606_spi +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +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 +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adf7242 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16209 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7170 +adv7175 +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +advantechwdt +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +aes-i586 +aesni-intel +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +afe4403 +afe4404 +affs +ah4 +ah6 +aha152x +aha152x_cs +aha1542 +aha1740 +ahci +ahci_platform +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airo_cs +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +ali-agp +ali-ircc +alienware-wmi +alim1535_wdt +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am2315 +am53c974 +ambassador +amc6821 +amd +amd-rng +amd5536udc +amd64_edac_mod +amd76x_edac +amd76xrom +amd8111e +amd_freq_sensitivity +amdgpu +amilo-rfkill +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 +anatop-regulator +ansi_cprng +anubis +aoe +apanel +apds9300 +apds9802als +apds990x +apds9960 +apm +apple-gmux +apple_bl +appledisplay +applesmc +appletalk +appletouch +applicom +aquantia +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_ps2 +arc_uart +arcfb +arcmsr +arcnet +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arm_scpi +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3935 +as5011 +asb100 +asc7621 +ascot2e +asix +ast +asus-laptop +asus-nb-wmi +asus-wireless +asus-wmi +asus_atk0110 +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati-agp +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atlas-ph-sensor +atlas_btns +atm +atmel +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avm_cs +avma1_cs +avmfritz +ax25 +ax88179_178a +axnet_cs +axp20x +axp20x-i2c +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1isa +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_epp +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7xxx +bcm87xx +bcma +bcma-hcd +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780 +binfmt_aout +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bma220_spi +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmc150_magn_i2c +bmc150_magn_spi +bmg160_core +bmg160_i2c +bmg160_spi +bmi160_core +bmi160_i2c +bmi160_spi +bmp085 +bmp085-i2c +bmp085-spi +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bonding +bpa10x +bpck +bpck6 +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +bq27xxx_battery_i2c +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt3c_cs +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btuart_cs +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c101 +c2port-duramar2150 +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +capi +capidrv +capmode +capsule-loader +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +ccp +ccp-crypto +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +cec +cec-edid +ceph +cfag12864b +cfag12864bfb +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipreg +chnl_net +chromeos_laptop +chromeos_pstore +ci_hdrc +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +ck804xrom +classmate-laptop +clip +clk-cdce706 +clk-cs2000-cp +clk-palmas +clk-pwm +clk-s2mps11 +clk-scpi +clk-si5351 +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-isa +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 +configfs +contec_pci_dio +cops +cordic +core +coretemp +cosa +cp210x +cpcihp_generic +cpcihp_zt5550 +cpia2 +cpqphp +cpsw_ale +cpu-notifier-error-inject +cpu5wdt +cpufreq_schedutil +cpuid +cr_bllcd +cramfs +crc-itu-t +crc32-pclmul +crc32_generic +crc7 +crc8 +cros_ec +cros_ec_devs +cros_ec_i2c +cros_ec_keyb +cros_ec_lpc +cros_ec_spi +cros_kbd_led_backlight +crvml +cryptd +crypto_user +cryptoloop +cs3308 +cs5345 +cs53l32a +cs5535-mfd +cs553x_nand +cs89x0 +csiostor +ct82c710 +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +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 +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cxgbit +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +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-regulator +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 +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +dcdbas +ddbridge +de2104x +de4x5 +decnet +deflate +defxx +dell-laptop +dell-led +dell-rbtn +dell-smbios +dell-smm-hwmon +dell-smo8800 +dell-wmi +dell-wmi-aio +dell_rbu +denali +denali_pci +des_generic +designware_i2s +designware_pcm +devlink +dgnc +dh_generic +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +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-verity +dm-zero +dm1105 +dm9601 +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +donauboe +dp83848 +dp83867 +dpt_i2o +dptf_power +drbd +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1803 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dtc +dtl1_cs +dtlk +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-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +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_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc2_pci +dwc3 +dwc3-pci +dwmac-generic +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +e752x_edac +e7xxx_edac +earth-pt1 +earth-pt3 +eata +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 +ecdh_generic +echainiv +echo +edac_core +edac_mce_amd +edt-ft5x06 +eeepc-laptop +eeepc-wmi +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efficeon-agp +efi-pstore +efi_test +efibc +efs +egalax_ts_serial +ehset +einj +elan_i2c +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +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 +esas2r +esb2rom +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +eurotechwdt +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max3355 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f71805f +f71808e_wdt +f71882fg +f75375s +f81232 +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_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 +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdp +fdp_i2c +fealnx +ff-memless +fid +fintek-cir +firedtv +firestream +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fjes +fl512 +fld +flexfb +floppy +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +fmvj18x_cs +fnic +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fou6 +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fschmd +fsl_lpuart +ft6236 +ftdi-elan +ftdi_sio +ftl +ftsteutates +fujitsu-laptop +fujitsu-tablet +fujitsu_ts +g450_pll +g760a +g762 +g_NCR5380 +g_NCR5380_mmio +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 +gcm +gdmtty +gdmulte +gdth +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +geode-aes +geode-rng +gf2k +gfs2 +ghash-generic +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +glue_helper +gluebi +gma500_gfx +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-104-dio-48e +gpio-104-idi-48 +gpio-104-idio-16 +gpio-addr-flash +gpio-adp5520 +gpio-adp5588 +gpio-amd8111 +gpio-amdpt +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-cs5535 +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-f7188x +gpio-fan +gpio-generic +gpio-ich +gpio-ir-recv +gpio-it87 +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-menz127 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-pch +gpio-pisosr +gpio-rdc321x +gpio-regulator +gpio-sch +gpio-sch311x +gpio-tpic2810 +gpio-tps65086 +gpio-tps65218 +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio-ws16c48 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gr_udc +grace +gre +grip +grip_mp +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 +gtco +gtp +guillemot +gunze +gx-suspmod +gx1fb +gxfb +hackrf +hamachi +hampshire +hangcheck-timer +hanwang +hci +hci_uart +hci_vhci +hdaps +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdma +hdma_mgmt +hdpvr +he +hecubafb +helene +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hgafb +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-asus +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-cmedia +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-hyperv +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-led +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +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-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hih6130 +hio +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi504_nand +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horizon +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hostess_sv11 +hp-wireless +hp-wmi +hp03 +hp100 +hp206c +hp_accel +hpfs +hpilo +hpsa +hptiop +hpwdt +hsi +hsi_char +hso +hsr +hsu_dma +hsu_dma_pci +htc-pasic3 +htcpen +htu21 +huawei_cdc_ncm +hv_balloon +hv_netvsc +hv_storvsc +hv_utils +hv_vmbus +hwa-hc +hwa-rc +hwmon-vid +hx8357 +hyperv-keyboard +hyperv_fb +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd756-s4882 +i2c-amd8111 +i2c-cbus-gpio +i2c-cros-ec-tunnel +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-eg20t +i2c-emev2 +i2c-gpio +i2c-hid +i2c-i801 +i2c-isch +i2c-ismt +i2c-kempld +i2c-matroxfb +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-pinctrl +i2c-mux-reg +i2c-nforce2 +i2c-nforce2-s4985 +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-isa +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-xiic +i3000_edac +i3200_edac +i40e +i40evf +i40iw +i5000_edac +i5100_edac +i5400_edac +i5500_temp +i5k_amb +i6300esb +i7300_edac +i740fb +i7core_edac +i810 +i810fb +i82092 +i82365 +i82860_edac +i82875p_edac +i82975x_edac +i915 +iTCO_vendor_support +iTCO_wdt +ib700wdt +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibm_rtl +ibmaem +ibmasm +ibmasr +ibmpex +ibmphp +ichxrom +icn +icp_multi +icplus +ics932s401 +ideapad-laptop +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_gen2 +idt_gen3 +idtcps +ie31200_edac +ie6xx_wdt +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ifi_canfd +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-hrtimer +iio-trig-interrupt +iio-trig-loop +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +img-i2s-in +img-i2s-out +img-parallel-out +img-spdif-in +img-spdif-out +imm +imon +ims-pcu +imx074 +in2000 +ina209 +ina2xx +ina2xx-adc +ina3221 +industrialio +industrialio-buffer-cb +industrialio-configfs +industrialio-sw-device +industrialio-sw-trigger +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int3400_thermal +int3402_thermal +int3403_thermal +int3406_thermal +int340x_thermal_zone +int51x1 +intel-cstate +intel-hid +intel-lpss +intel-lpss-acpi +intel-lpss-pci +intel-mid-touch +intel-mid_wdt +intel-rapl-perf +intel-rng +intel-rst +intel-smartconnect +intel-vbtn +intel-xway +intel_ips +intel_menlow +intel_mid_battery +intel_mid_powerbtn +intel_mid_thermal +intel_oaktrail +intel_pch_thermal +intel_pmc_ipc +intel_powerclamp +intel_punit_ipc +intel_qat +intel_quark_i2c_gpio +intel_rapl +intel_scu_ipcutil +intel_soc_dts_iosf +intel_soc_dts_thermal +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +intelfb +interact +interval_tree_test +inv-mpu6050 +inv-mpu6050-i2c +inv-mpu6050-spi +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +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_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_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 +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipwireless +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +iris +irlan +irnet +irqbypass +irtty-sir +isci +iscsi_boot_sysfs +iscsi_ibft +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it87 +it8712f_wdt +it87_wdt +it913x +itd1000 +ite-cir +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +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 +khazad +kingsun-sir +kl5kusb105 +kmx61 +ko2iblnd +kobil_sct +ks0108 +ks0127 +ks7010 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksocklnd +ksz884x +ktti +kvaser_pci +kvaser_usb +kvm +kvm-amd +kvm-intel +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l440gx +l4f00242t03 +l64781 +lan78xx +lanai +lance +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-adp5520 +leds-bd2802 +leds-blinkm +leds-clevo-mail +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp3952 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-net48xx +leds-ot200 +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-ss4200 +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +leds-wrap +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libceph +libcfs +libcomposite +libcrc32c +libcxgb +libcxgbi +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3lv02d +lis3lv02d_i2c +litelink-sir +lkkbd +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lmc +lms283gf05 +lms501kf03 +lmv +lnbh25 +lnbp21 +lnbp22 +lnet +lnet_selftest +lockd +locktorture +logibm +longhaul +longrun +lov +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc2990 +ltc3589 +ltc3815 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltpc +ltr501 +ltv350qv +lustre +lv5207lp +lvstest +lxfb +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +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 +mac_hid +macb +machzwd +macmodes +macsec +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577-regulator +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max30100 +max3100 +max31722 +max31790 +max3421-hcd +max34440 +max44000 +max517 +max5487 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77693-haptic +max77693-regulator +max77693_charger +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8997-regulator +max8997_charger +max8997_haptic +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mce-inject +mce_amd_inj +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4131 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +mdacon +mdc +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-gpio +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +mei +mei-me +mei-txe +mei_phy +mei_wdt +melfas_mip4 +memory-notifier-error-inject +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +metro-usb +metronomefb +meye +mf6x4 +mga +mgc +michael_mic +micrel +microchip +microread +microread_i2c +microread_mei +microtek +mii +minix +mip6 +mite +mixcomwd +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma7455_core +mma7455_i2c +mma7455_spi +mma7660 +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_block +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpl115 +mpl115_i2c +mpl115_spi +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi-laptop +msi-wmi +msi001 +msi2500 +msp3400 +mspro_block +msr +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6323-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-quadspi +mtk-sd +mtk_ecc +mtk_nand +mtouch +multipath +multiq3 +musb_hdrc +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwave +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxc6255 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxm-wmi +mxser +mxuport +myri10ge +n2 +n411 +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nand +nand_bch +nand_ecc +nand_ids +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +ncpfs +nct6683 +nct6775 +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +ne +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +nettel +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +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_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfit +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfp_netvf +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_exthdr +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +ni65 +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_tio +ni_tiocmd +ni_usb6501 +nicstar +nilfs2 +niu +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-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 +nosy +notifier-error-inject +nouveau +nozomi +ns558 +ns83820 +nsc-ircc +nsc_gpio +nsp32 +nsp_cs +ntb +ntb_netdev +ntb_perf +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nuvoton-cir +nv_tco +nvidiafb +nvme +nvme-core +nvme-fabrics +nvme-loop +nvme-rdma +nvmem_core +nvmet +nvmet-rdma +nvram +nxp-nci +nxp-nci_i2c +nxt200x +nxt6000 +obdclass +obdecho +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_xilinx_wdt +old_belkin-sir +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osc +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p4-clockmod +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +padlock-aes +padlock-sha +palmas-pwrbutton +palmas-regulator +palmas_gpadc +panasonic-laptop +pandora_bl +panel +paride +parkbd +parport +parport_ax88796 +parport_cs +parport_pc +parport_serial +pas16 +pata_acpi +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cs5520 +pata_cs5530 +pata_cs5535 +pata_cs5536 +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_isapnp +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_sc1200 +pata_sch +pata_serverworks +pata_sil680 +pata_sl82c105 +pata_triflex +pata_via +pc110pad +pc300too +pc87360 +pc8736x_gpio +pc87413_wdt +pc87427 +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcbit +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_can +pch_dma +pch_gbe +pch_phub +pch_uart +pch_udc +pci +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 +pcspkr +pcwd +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +pdc_adma +peak_pci +peak_pcmcia +peak_usb +pegasus +pegasus_notetaker +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-exynos-usb2 +phy-generic +phy-gpio-vbus-usb +phy-isp1301 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-tahvo +phy-tusb1210 +physmap +pinctrl-broxton +pinctrl-intel +pinctrl-sunrisepoint +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pn533 +pn533_i2c +pn533_usb +pn544 +pn544_i2c +pn544_mei +pn_pep +poly1305_generic +port100 +powermate +powernow-k6 +powernow-k7 +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_core +pps_parport +pptp +prism2_usb +processor_thermal_device +ps2mult +psmouse +psnap +pt +pti +ptlrpc +ptp +ptp_pch +pulse8-cec +pulsedlight-lidar-lite-v2 +punit_atom_debug +pv88060-regulator +pv88080-regulator +pv88090-regulator +pvpanic +pvrusb2 +pwc +pwm-beeper +pwm-cros-ec +pwm-lp3943 +pwm-lpss +pwm-lpss-pci +pwm-lpss-platform +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pxa27x_udc +qat_dh895xcc +qat_dh895xccvf +qcaux +qcom-spmi-iadc +qcom-spmi-vadc +qcom_spmi-regulator +qcserial +qed +qede +qemu_fw_cfg +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas +qlogicfas408 +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quatech_daqp_cs +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r82600_edac +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-aimslab +radio-aztech +radio-bcm2048 +radio-cadet +radio-gemtek +radio-i2c-si470x +radio-isa +radio-keene +radio-ma901 +radio-maxiradio +radio-miropcm20 +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-rtrack2 +radio-sf16fmi +radio-sf16fmr2 +radio-shark +radio-si476x +radio-tea5764 +radio-terratec +radio-timb +radio-trust +radio-typhoon +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +radio-zoltrix +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +ray_cs +raydium_i2c_ts +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +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-behold +rc-behold-columbus +rc-budget-ci-old +rc-cec +rc-cinergy +rc-cinergy-1400 +rc-core +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-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-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +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-pctv-sedna +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-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-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rcuperf +rdc321x-southbridge +rdma_cm +rdma_rxe +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +reset-ti-syscon +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio-scan +rio500 +rio_cm +rio_mport_cdev +rionet +rivafb +rj54n1cb0c +rmd128 +rmd160 +rmd256 +rmd320 +rmi_core +rmi_i2c +rmi_spi +rndis_host +rndis_wlan +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-bq32k +rtc-bq4802 +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-hid-sensor-time +rtc-isl12022 +rtc-isl12057 +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-mrst +rtc-msm6242 +rtc-mt6397 +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-r9701 +rtc-rc5t583 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx6110 +rtc-rx8010 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +rtc-v3020 +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 +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +salsa20-i586 +salsa20_generic +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 +savage +savagefb +sb1000 +sbc60xxwdt +sbc7240_wdt +sbc8360 +sbc_epx_c3 +sbc_fitpc2_wdt +sbc_gxx +sbni +sbp_target +sbs +sbs-battery +sbshc +sc1200wdt +sc16is7xx +sc92031 +sca3000 +scb2_flash +scc +sch311x_wdt +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +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_tbf +sch_teql +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 +sctp_probe +scx200 +scx200_acb +scx200_docflash +scx200_gpio +scx200_hrt +scx200_wdt +sdhci +sdhci-acpi +sdhci-pci +sdhci-pltfm +sdio_uart +sdla +sdricoh_cs +sealevel +sedlbauer_cs +seed +sensorhub +ser_gigaset +serial2002 +serial_cs +serio_raw +sermouse +serpent-sse2-i586 +serpent_generic +serport +ses +sfc +sfi-cpufreq +sh_veu +sha3_generic +shark2 +shpchp +sht15 +sht21 +sht3x +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +silead +sim710 +sir-dev +sis +sis-agp +sis190 +sis5595 +sis900 +sis_i2c +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +sl811_cs +slcan +slicoss +slip +slram +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smc-ultra +smc9194 +smc91c92_cs +smipcie +smm665 +smsc +smsc-ircc2 +smsc37b787_wdt +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1816a +snd-ad1848 +snd-ad1889 +snd-adlib +snd-ak4113 +snd-ak4114 +snd-ak4117 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als100 +snd-als300 +snd-als4000 +snd-asihpi +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt1605 +snd-azt2316 +snd-azt2320 +snd-azt3328 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmi8328 +snd-cmi8330 +snd-cmipci +snd-compress +snd-cs4231 +snd-cs4236 +snd-cs4281 +snd-cs46xx +snd-cs5530 +snd-cs5535audio +snd-cs8427 +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emu8000-synth +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1688 +snd-es1688-lib +snd-es18xx +snd-es1938 +snd-es1968 +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-gus-lib +snd-gusclassic +snd-gusextreme +snd-gusmax +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-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-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-sst-acpi +snd-intel-sst-core +snd-intel-sst-pci +snd-intel8x0 +snd-intel8x0m +snd-interwave +snd-interwave-stb +snd-isight +snd-jazz16 +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-miro +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-msnd-classic +snd-msnd-lib +snd-msnd-pinnacle +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-opl3sa2 +snd-opl4-lib +snd-opl4-synth +snd-opti92x-ad1848 +snd-opti92x-cs4231 +snd-opti93x +snd-oxfw +snd-oxygen +snd-oxygen-lib +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-sb-common +snd-sb16 +snd-sb16-csp +snd-sb16-dsp +snd-sb8 +snd-sb8-dsp +snd-sbawe +snd-sc6000 +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-sis7019 +snd-skl_nau88l25_max98357a +snd-soc-ac97 +snd-soc-acp-pcm +snd-soc-adau1701 +snd-soc-adau7002 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-bt-sco +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs35l33 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +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-cs4349 +snd-soc-cs53l30 +snd-soc-da7219 +snd-soc-dmic +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-hdac-hdmi +snd-soc-imx-audmux +snd-soc-inno-rk3036 +snd-soc-max98090 +snd-soc-max98357a +snd-soc-max98504 +snd-soc-max9860 +snd-soc-nau8825 +snd-soc-pcm1681 +snd-soc-pcm179x-codec +snd-soc-pcm179x-i2c +snd-soc-pcm179x-spi +snd-soc-pcm3168a +snd-soc-pcm3168a-i2c +snd-soc-pcm3168a-spi +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rl6231 +snd-soc-rl6347a +snd-soc-rt286 +snd-soc-rt298 +snd-soc-rt5616 +snd-soc-rt5631 +snd-soc-rt5640 +snd-soc-rt5645 +snd-soc-rt5651 +snd-soc-rt5670 +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-simple-card-utils +snd-soc-skl +snd-soc-skl-ipc +snd-soc-skl_nau88l25_ssm4567 +snd-soc-skl_rt286 +snd-soc-sn95031 +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sst-acpi +snd-soc-sst-broadwell +snd-soc-sst-bxt-da7219_max98357a +snd-soc-sst-bxt-rt298 +snd-soc-sst-bytcr-rt5640 +snd-soc-sst-bytcr-rt5651 +snd-soc-sst-cht-bsw-max98090_ti +snd-soc-sst-cht-bsw-rt5645 +snd-soc-sst-cht-bsw-rt5672 +snd-soc-sst-dsp +snd-soc-sst-firmware +snd-soc-sst-haswell +snd-soc-sst-haswell-pcm +snd-soc-sst-ipc +snd-soc-sst-match +snd-soc-sst-mfld-platform +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tas5720 +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +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-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8960 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-xtfpga-i2s +snd-sonicvibes +snd-sscape +snd-tea6330t +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-wavefront +snd-wss-lib +snd-ymfpci +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +softing_cs +solo6x10 +solos-pci +sony-btf-mpx +sony-laptop +sonypi +soundcore +sp2 +sp5100_tco +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntpc +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_decpc +speakup_dectlk +speakup_dtlk +speakup_dummy +speakup_keypc +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedtch +spi-altera +spi-axi-spi-engine +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-loopback-test +spi-nor +spi-oc-tiny +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-sc18is602 +spi-tle62x0 +spi-topcliff-pch +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spmi +sr9700 +sr9800 +ssb +ssb-hcd +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +ssv_dnp +st +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st95hf +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_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 +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stm_heartbeat +stmmac +stmmac-platform +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +stx104 +sun4i-codec +sun4i-i2s +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +surface3_spi +surfacepro3_button +svgalib +sworks-agp +sx8 +sx8654 +sx9500 +sym53c416 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_usb +synclink +synclink_cs +synclink_gt +synclinkmp +syscopyarea +sysfillrect +sysimgblt +sysv +t128 +t1isa +t1pci +t5403 +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 +tc1100-wmi +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcic +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_nv +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teles_cs +teranetics +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_hash +test_hexdump +test_module +test_power +test_static_key_base +test_static_keys +test_udelay +test_user_copy +test_uuid +tg3 +tgr192 +thermal-generic-adc +thinkpad_acpi +thmc50 +thunderbolt +ti-adc081c +ti-adc0832 +ti-adc128s052 +ti-ads1015 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timb_dma +timberdale +timbuart +timeriomem-rng +tipc +tlan +tlclk +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmem +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +topstar-laptop +torture +toshiba_acpi +toshiba_bluetooth +toshiba_haps +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm-rng +tpm_atmel +tpm_crb +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_infineon +tpm_nsc +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tpm_tis_spi +tpm_vtpm_proxy +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65086 +tps65086-regulator +tps65090-charger +tps65090-regulator +tps65217 +tps65217-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tscan1 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw686x +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish-i586 +twofish_common +twofish_generic +typhoon +u132-hcd +u14-34f +uPD98402 +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +ucsi +uda1342 +udc-core +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-dwc +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +ultrastor +umc +umem +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 +us5182d +usb-serial-simple +usb-storage +usb3503 +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_uac2 +usb_f_uvc +usb_gigaset +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 +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +usnic_verbs +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +v4l2-tpg +vboxguest +vboxsf +vboxvideo +vcan +vcnl4000 +veml6070 +ves1820 +ves1x93 +veth +vfio +vfio-pci +vfio_iommu_type1 +vfio_virqfd +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +vhost_vsock +via +via-camera +via-cputemp +via-ircc +via-rhine +via-rng +via-sdmmc +via-velocity +via686a +via_wdt +viafb +video +videobuf-core +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videocodec +videodev +vim2m +viperboard +viperboard_adc +virt-dma +virtio-gpu +virtio-rng +virtio_blk +virtio_input +virtio_net +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vmd +vme_ca91cx42 +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmlfb +vmw_balloon +vmw_pvscsi +vmw_vmci +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vmw_vsock_vmci_transport +vmwgfx +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vrf +vringh +vsock +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5100-spi +w5300 +w6692 +w83627ehf +w83627hf +w83627hf_wdt +w83781d +w83791d +w83792d +w83793 +w83795 +w83877f_wdt +w83977af_ir +w83977f_wdt +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +wafer5823wdt +walkera0701 +wanxl +warrior +wbsd +wcn36xx +wd +wd7000 +wd719x +wdt +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wilc1000 +wilc1000-sdio +wilc1000-spi +wimax +winbond-840 +winbond-cir +wire +wishbone-serial +wistron_btns +wl1273-core +wl3501_cs +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 +wp512 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x38_edac +x86_pkg_temp_thermal +x_tables +xc4000 +xc5000 +xcbc +xen-blkback +xen-evtchn +xen-fbfront +xen-gntalloc +xen-gntdev +xen-kbdfront +xen-netback +xen-pciback +xen-pcifront +xen-privcmd +xen-scsiback +xen-scsifront +xen-tpmfront +xen_wdt +xenfs +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xhci-plat-hcd +xillybus_core +xillybus_pcie +xirc2ps_cs +xircom_cb +xor +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +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 +xz_dec_test +yam +yealink +yellowfin +yenta_socket +yurex +z3fold +z85230 +zatm +zaurus +zd1201 +zd1211rw +zforce_ts +zhenhua +ziirave_wdt +zl10036 +zl10039 +zl10353 +zl6100 +zr36016 +zr36050 +zr36060 +zr36067 +zr364xx +zram +zynq-fpga --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/i386/lowlatency +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/i386/lowlatency @@ -0,0 +1,20807 @@ +EXPORT_SYMBOL arch/x86/kvm/kvm 0xb0eed048 kvm_cpu_has_pending_timer +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x254e5667 scx200_gpio_base +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x35a3c008 scx200_gpio_configure +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x8cfa375c scx200_gpio_shadow +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x907665bd scx200_cb_base +EXPORT_SYMBOL crypto/mcryptd 0x766fd032 mcryptd_arm_flusher +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/nfit/nfit 0x95b632d2 to_nfit_uuid +EXPORT_SYMBOL drivers/acpi/video 0x1164b57b acpi_video_get_edid +EXPORT_SYMBOL drivers/acpi/video 0x15729d58 acpi_video_get_levels +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 0xe92ca535 acpi_video_set_dmi_backlight_type +EXPORT_SYMBOL drivers/atm/suni 0x766400a6 suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0xaaca221b uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x67101484 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xc125b358 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 0x160afadf pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x199b6148 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x3158faaa pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x3d61f3f8 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x4cdb8aec pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x73aee224 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x7878ff2e paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x7ee9d2fb pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xe50ba1f7 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xe78c83e5 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xf9698782 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0xfe2fb808 pi_do_claimed +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xd87a84d1 btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4dde7206 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x6c26ee32 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x9d6e987a ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xb0dd8040 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xc583e1fc ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xc61251a5 ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/nsc_gpio 0x1a5d22cf nsc_gpio_dump +EXPORT_SYMBOL drivers/char/nsc_gpio 0x2eebd6cc nsc_gpio_write +EXPORT_SYMBOL drivers/char/nsc_gpio 0x519b0662 nsc_gpio_read +EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x1473e913 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x72acc5fb st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc6b9bb2f st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xf17963af st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x2f2cf4cb xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xce26972f xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xf54ecc6d xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x080a3fee dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x4370784e dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x731f5c47 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xe910ac03 dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xeddf27e6 dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xf2291ee8 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/edac/edac_core 0x467982bc edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x10250699 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x10f5481a fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x13217e81 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1a9cbe39 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c4c0a99 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3d9eb13c fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x451e51fc fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x53cfb68b fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x543334d6 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x58c85338 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x69213e4c fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6ab64542 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7f80c2a4 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x82baa349 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x83f9bcc6 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8d0b5cfc fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9070ded0 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa662dbd8 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa6a44831 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa92d6370 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaa80faff fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb0b691f8 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdb503519 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xeae1df8d fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xebdc75cd fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf37dfea2 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firmware/dcdbas 0xa75079d6 dcdbas_smi_request +EXPORT_SYMBOL drivers/fmc/fmc 0x15856d84 fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x294db226 fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0x300df212 fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0x3314f363 fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0x37f3ef68 fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0x444aadfa fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x55ea79cd fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x55fba2b0 fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x6efcd807 fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x87f45f08 fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0x91f1b8a7 fmc_device_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00c15040 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00d67d6e drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x026ef18b drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0333bb64 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x034fa250 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0433eb8c drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x043c7537 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06e0cf9e drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0806c71d drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bfec4b0 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cfcca36 drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d3c0017 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f907b8d drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref +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 0x141cd920 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14958e2b drm_gem_object_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14aeb225 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14f8766d drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x155d0a8b drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17aa4287 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bff7ff1 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c0c5aac drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c503a39 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dc6a43d drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e6f54dd drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f1e3e7c drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22e85c54 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x232e9194 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2515279a drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2615573b drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2689dbe0 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27b07f62 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2819e690 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28b74827 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29d56a04 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a529fc9 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a682e7b drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b6e90a8 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cf05556 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d6a0c26 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dd03ea7 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e6d384a drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3001979e drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30a99d2a drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3134d43e drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33505a32 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3406fa91 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3570fc61 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35a65354 drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x376ee755 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37c634c9 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3803ec71 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38088c3f drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38b7869d drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d00e804 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d5e4374 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e43efc1 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ee1804f drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fa87780 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ff93563 drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4049eb32 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x406fc874 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40e84b70 drm_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42776857 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44561bfb drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x450dc24e drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45378ae5 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45b6b321 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4677f74a drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x472268a0 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47c19a2f drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4893b7a5 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x491dda2f drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49ce4855 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bee76ef drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c5a043e drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ccf21a9 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4eff8f0e drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x506386ba drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x519a516e drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x525353a6 drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5262ba08 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5405d35a drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x542928b9 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5474820f drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5723f79d drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58a50820 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5afc86fc drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c4d28df drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cc12860 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cd867e5 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cf61733 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7a726d drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d90e0f9 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5eb4a6c0 drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6063f43a drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60b70bda drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61c1c565 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63a3faa0 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64743e28 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64e4bc47 drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64f8de63 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65171fd7 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x651b9e6f drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65afe03d drm_gem_object_unreference_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66cc4388 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x674ccd7a drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67ae5f46 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68ac3732 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68ef71dc drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6919ecf1 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69646940 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ade248f drm_mode_object_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b58f0ab drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70b410bc drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x715f0ad7 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71e45813 drm_crtc_commit_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7209b0f8 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x724e4f48 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72e7291d drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x736a77a8 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7649f982 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76a12003 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a150c56 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a25e54d drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a53deda drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b1d8810 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b26d8a7 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b41fdc7 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c7041aa drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d2f7979 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fe0cac5 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x804130a1 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81527735 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8247e4ad drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x843dd877 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86f4092d drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87383e2a drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87f257de drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x891ae1c8 drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a9954d5 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d1d1785 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x902b617b drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9061aa96 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x920b07f6 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92798e63 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x930759e8 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9366d38f drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x942be469 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9722b91c drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9723fa46 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9853ff2d drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9898e95b drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99147dff drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b44a294 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bcd2299 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c21fea5 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c656950 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d0fdc71 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d8aaddc drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dcdb278 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e15e76f drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9eea76db drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0592531 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3f5df10 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7247d1a drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8055842 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8d95140 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab080a84 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab368b4f drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaba91661 drm_crtc_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabb94db5 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacca57a7 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad942354 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad9e8285 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae8d6c69 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaeb34dc7 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaff748d8 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0163070 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb05be2aa drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1b12f98 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1c3776c drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb28961ec drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2ef3ac5 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb37d51ad drm_format_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb38a7b4b drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb52e48b2 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5b95f75 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5dd0648 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb61be1b4 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb65d2675 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb678a92f drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7a28141 drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9af2179 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cb16a3 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba1d81fb drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba9c8234 drm_mode_object_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd022ecf drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf31b736 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf86cf78 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfe327e4 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0730bbe drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0a20dff drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0d3f658 drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc158bc57 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1a7a0dd drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3a6492a drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4508c15 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4c8311e drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4e9f091 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc562d010 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5fbf7e7 drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6bfc05c drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc70389a0 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8620291 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc98c0ded drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9aa5f00 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9d332d8 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc663732 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc8147ea drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd06cea8 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd47b933 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd5d7d68 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdc32e69 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce272e1e drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xceab59e1 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf2d268b drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfbfefd0 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0903f15 drm_format_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd16e7a85 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1ab009c drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd39dc2f6 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3ab02dd drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5257d85 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd57d0784 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5c89af8 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd64fd08f drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd666b4e1 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6d30e6a drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd79d966e drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd87bc0d1 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc6c8e2a drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcbf6bc6 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd811beb drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd95d2e9 drm_crtc_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf6b9d6f drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfc2f488 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe02d998b drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe04e2eb7 drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe183a27d drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe24c24f8 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2b10f68 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2d7eb35 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe33de090 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe38fe7ab drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4649b38 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4912c08 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4baad01 drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe522d4ba drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe55e5b51 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe60bd3d1 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6783648 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe88ccb18 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe95158b1 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb745d94 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec3628b7 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecc89fed drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecebbf7b drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefbbb041 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeff8b191 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1307878 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf181c7e8 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1f4e7e2 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2523035 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3bd8e9b drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf44f5d53 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf68c6e2f drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf72f9618 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf74b75e3 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf80cafbf drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81e44ba drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf87b822e drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf94a1dcd drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9ee3a83 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbf34871 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc1c3457 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd2e1029 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdb8545d drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe0ef623 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe1c3bbc drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfecbf8b2 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00ca373b drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x026a9e9b drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06bda76e drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x079d735c drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x083dbb75 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08af4810 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08c9d209 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ba4b15b drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cb4fcc4 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1071d801 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x113c80e0 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12118bf9 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12281eb2 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12dd2014 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12e69c87 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12fa12c6 drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x142e5104 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14a18190 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17f0b4ee drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1833da33 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x189f7710 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19218196 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1971fb3c drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19960f20 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19dfd6ab drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1aeeeb7d drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c91c23e drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21ef0861 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x242b032c drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2479eb7b drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2796ce32 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b035974 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cb3695d drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e976ffe drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30b38359 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35d48c8c drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x360601a7 drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3714e76e drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x380d3df2 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39aecf63 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3de1f32f drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e721246 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x455d1494 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46dee8d6 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47da589c drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x481dd930 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48e9640e drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4aaabbc9 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bb87fe3 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c8d5ca0 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c928c82 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f36a3e7 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52621f45 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53b50be0 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54e0368d __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58e48b96 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c20db90 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ca4b785 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d7dbc10 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e2b95c6 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ede3ad3 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62596037 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x642f58d2 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65bf3b45 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a84ad9a drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ad25ffc drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b37bcdb drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x723e6e0b drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72478843 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72e8bf62 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76a9e1ba drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x771b101d drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x782af9c2 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cdadba3 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80a2ab97 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80b91e79 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x810d7d35 drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82ff984a drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8309fb4f drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84902a4b drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85ccd43f drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b2f6464 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b66b7db drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bc42433 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c8e1a2e drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d89c8b6 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e286a9b drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9325baf0 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94aed0ff drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x971b9f53 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x976e1519 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97d5df64 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99d8f5f0 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a960647 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ad5853b drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e40f65d drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2838cc8 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5639411 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa751092b drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa987556c drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa156db7 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa2347eb drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac5e1677 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacb0c7ba drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf97b20a drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2adb24f drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8992db3 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8fd13b4 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba00784f drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb2d7dd0 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc19da7ef drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1dc0a69 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc68cb5bb drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc86bc6b8 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8835f79 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbbec4df drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcda05315 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce56751e drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf7fca47 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0a0cd5d drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd15d963c drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1754c17 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd28d1291 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3bd5898 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4b7582e drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5757f23 drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5f09f61 drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd79b38f0 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd985c99c drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdae1598d drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb88f72d drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd798fe4 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdde26e93 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfd990d5 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0b04466 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0dd7fea drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1a69ec8 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe473962a drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5786bc5 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe63f9bee drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7001981 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8177b7b drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe82caf8f __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9361fba drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec347951 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf284ebe4 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf313a5be drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf46c30f3 drm_atomic_helper_best_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5567218 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf79b0cdb __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf83513b3 drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa7bd112 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb91c123 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff6b7709 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x01a29097 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x027062f6 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06af15a4 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x09a47d5a ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bab7f47 ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x11d94451 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16f7a832 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x17723808 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1940e4cd ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1ce2308b ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22ec80fe ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24765c33 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x256d89b3 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x266d8a60 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x304d5431 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x35aa7a5c ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x387aa3ff ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3e3491a1 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3e6b804a ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x42c7b685 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x45f6a1f6 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x485a5bc0 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x494d4f12 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4caebc52 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4eb1e2ba ttm_bo_default_swap_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5771b152 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5fcbe25e ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63b50ad8 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c009790 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c7987bc ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c8dc6bf ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e875de9 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x734ac8fc ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x73ecc2c4 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x743ef233 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80aef87a ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x810b444f ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x836d8fd0 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x92aa025d ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x946d9ea3 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94bd4503 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99218787 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa07e8dd5 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa4b0451d ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa4c0b599 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa81e93de ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa9e7db98 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xab1d0b83 ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xad718c56 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb66024c0 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbb02fc37 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbf8845ba ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3468fdc ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc498ccc1 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc71d1fb4 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf49f835 ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd384a7a0 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd98eabc7 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xda91520c ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xda97e9ee ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd8e936d ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe0bce8a7 ttm_bo_default_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe210f783 ttm_bo_pipeline_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe49c86d0 ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe7b14ff5 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xea95ae30 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xed26cc30 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf44e6344 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf81deb6c ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf820d995 ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfb70c6cd ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x465edc1e vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x4a0fcf05 vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x936624b9 vmbus_sendpacket_ctl +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe3d9ac5a sch56xx_watchdog_register +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x87e45004 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x99be09ff i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x9d066a31 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xa3a83747 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xe39ac2a2 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x82f7d6cc amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x00075bb6 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0e4b222a mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x29ac213b mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x411d45e4 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5c0e4659 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7b1ec461 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7dc634e9 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x93b9699d mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9eef8513 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa9aedf90 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd55a1cb3 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe893f117 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xec0a0d37 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf1aa1d43 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf82f9d45 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfaf77413 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x2c457c35 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xa100168f st_accel_common_remove +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x3770637a iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xf6ad5cd3 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x354e94cc iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xdd0cafe2 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xe83accc0 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xee794083 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x16696a2c hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x29a658b1 hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x38f9254e hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x62612d3d hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xe9da9766 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xf41574c7 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x4cb61843 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x8204921f hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x967c521c hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xa12adbcc hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3bcbe098 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x44fbd63f ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x9e42fdaf ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa567e2d3 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa9a4e0c5 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xdfbc3797 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xee51e0a4 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf1f3fc71 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xff4caef5 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x16f4c47e ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x26bf3975 ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x28f250c3 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x5b8188bc ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x85c30bdc ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x1d614719 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x285aeafa ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x5d3b8fb7 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 0x13144db2 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4aaa40df st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5324a478 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x55e21315 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x67989359 st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6cf72060 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x78684035 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8a37f5cb st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8e85873b st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x955bae91 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa08e1729 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa473b9b4 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcea23b87 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdbad783b st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdd7c611d st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf6b36237 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x331e993e st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xde968f54 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x7d545531 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xe083c8b6 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x0b4f74ba adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xba083d9b adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xbc7a3a9e bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x10f0cdff iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x110bcd43 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x355a9737 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x3b42fc1f iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x590d1886 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x5a79127f iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x5d2ce101 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0x5d2ebaff iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x63d3fd60 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x72a4f23f iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x886bf4b2 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x9152d97f iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x94173621 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0xafadb81f of_iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0xc0ecfb67 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xc276bf78 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xeace1f92 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xed16c50d iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0xf03f21f4 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0xf9d7fe54 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xf61d244c iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x26ba8218 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x40d4ca55 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x4d9f4244 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xbbe85af5 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x0a361144 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x2a00a86f iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x4e5b5cd7 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xd8123281 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x34c3c4c8 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x90adc1c6 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x39a5f592 bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x409e4161 bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x8da3ba57 bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xc9387736 bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x287ac974 hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x8a6b7edb hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xa0d070eb hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xaa7011c4 hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x7d1e7e77 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x91aa3aa1 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x7d42204c ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xc20d067d ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x61fb3a32 st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x6d056c4a st_press_common_probe +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0d1dca65 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x13b0b40a ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1b581ff9 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2575c19a ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x27be1f47 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x282616b9 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x36fefbaf ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3bb37e1d ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5e7ca2a5 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x741964d1 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x752d3df5 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x82ea3e6f ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8a529191 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa8f34aba ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaa0f5fdd ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb5e9bfb6 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd63b7845 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf70262d4 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x047dee6c ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x049ace30 rdma_addr_find_smac_by_sgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x053be7a1 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05e6822c ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05f51c4a ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0696ae83 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07800fd2 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a1e62fb ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a464a04 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d758c51 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1169701d roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1484909f ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x169bf000 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16ff2e34 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x190c16fc ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1baf1d9f rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c458cae rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1edc4064 rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x229d2c18 ib_sa_classport_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24adc7be ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26fe5116 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x287d1e73 ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2aff22f9 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d719832 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2dbf8842 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e33fb08 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36c1289f ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3776ff9b ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x388c6d92 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ac00f2e ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ac6a7e7 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d24dcca rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d497c30 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fd5cb5f rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40e7a34f rdma_resolve_ip_route +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42be2ffe ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43e15379 ib_modify_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a9fad8e ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b37371f rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b5519e6 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cb47eb3 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cb9a6b9 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4eda3d8e ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f0dc1a1 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x510ccf74 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55e55b3b ib_destroy_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x576fdbac ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57c4e1b2 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f5479c5 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fbbf1be ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x606b2257 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61cca6d9 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62be61b1 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x637c9159 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63cf160a ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6512e4ec ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x665c85a4 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66f3b5b2 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a18274c ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d006db3 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d8b1e8a ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f2334e6 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x721ca2cb rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73a234de ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73a4e5fd ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x753488d2 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x764e33a1 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78fc1dbc ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79ad1ad6 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a6526c2 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c3a60d6 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7dfe2650 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e7897c2 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80e7973e ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85adea01 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8633783c rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89842e52 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a3e53f5 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ae1710c ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ea132d4 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91330335 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91bb54c6 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9499a8ad ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b9cf9a rdma_addr_find_l2_eth_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d9cabc5 rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e969163 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f702819 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa37d6de5 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3a7ac5d ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa535e31b ib_create_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa661fa53 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6805aa7 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7287e26 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xade57e88 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaeeac4ce ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb004f8fc ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb00ede00 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb02fd372 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2f215fc ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb532d278 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb543c5a3 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5786feb ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7574240 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb75eb48c ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb81c3fb1 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba877efa ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb52fd93 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf723afa rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc104a6f3 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2d5d731 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3daea73 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc62fb5a2 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc78dc6a6 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbf4a483 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcee29c44 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd03395a0 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd09cfc5a rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1ec7fdb ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd290d2e1 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd406c5df ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5037421 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5d34369 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6070336 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd62c59e7 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd68907fb ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7c75bd5 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd983e41d ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe203a963 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2237ab4 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3e18cb2 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe519e374 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe694bd5e ib_destroy_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7cb2052 ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed1eaa3d ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeda1693d ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee46ddbe ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3a12460 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf454333a ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf46b0483 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf62eff75 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf76c7cc3 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8b88a73 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9a9c3f0 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb15f4e0 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb61c67f ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x028050e3 ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5397d778 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xedcb4e0c ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x056fd25e iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0d5bc941 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1d64e4cd iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x21fd3d3a iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2bb424ca iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4249c866 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5ca85af1 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x799003ba iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7e605aaf iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8a53e103 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9cdb4ffe iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa82342b6 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc9a751bf iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcb93ef38 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf4ba93f6 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0e608b8e rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x143e942c rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x30157864 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x36efc8ea rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3f9566d6 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x409b82e7 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x53fe62b2 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5da94fb4 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6a4bcfa7 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x70ea14b2 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x715bfd47 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x715c679a rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x740fff46 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7a1fcc40 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7ae753d9 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x99b567bb rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9f6bfb58 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd1d8465b rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd1eee109 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf8eff223 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfdcda302 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x20a8922e rxe_set_mtu +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x3159c2b8 rxe_add +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x48f93f58 rxe_remove_all +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x8b5a4f58 rxe_rcv +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0xb660e24c rxe_remove +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2e39dfa7 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x543c6072 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x836012d7 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x863c320d __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x90751ae2 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x93d05d4b gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa5b96d49 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe5ca23c7 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf6bdca44 __gameport_register_port +EXPORT_SYMBOL drivers/input/input-polldev 0x2931979e input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x2fbde425 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xb0daf3e6 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xc7763b5c input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xf02288f4 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x94f34f93 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x7e7e6479 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xc39ee87d ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xfb30157f ad714x_enable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x8325d87a 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 0x9d585f04 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x096af7be sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x21b5b456 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x3134206c sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x69366b29 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x8a361df1 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0xb7bf7a39 sparse_keymap_free +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xda3b8d7a ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xdd88be7a ad7879_pm_ops +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x35574d91 capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5ba6bb6f capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5f401dd9 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6113b52a attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x76aadabf capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa33f624d capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa13eaea capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaaa71208 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd6214fd7 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd69096dd capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x04638138 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x10f3a967 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2b965102 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3613af32 b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3e0fa967 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x5517698c avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7da72c14 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x809af329 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x857fb203 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x886dc59f b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb79f2b6b b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe5eb6ba4 b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe8d9ca1e b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf7293fce b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfd725170 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x49af5f4e b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x8f5e5643 b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x95898905 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x982322f4 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x9ac1ba86 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb5dbcca0 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb8723636 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb90fb8f2 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xdb45b023 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x13d06550 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x4142abc8 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xf5f9f600 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xfc673e88 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x2033b070 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x50aee8c8 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x7a1e9014 FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x8bc4b67f FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xebc1660a hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0ec1296 FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x2a3431ab isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x8e9c2e84 isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x9497d77f isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xdfe4ed1c isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xf693ba28 isac_irq +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x7dddb0a3 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xbb920d11 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xcce657c2 register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06e0c4fe recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x08d7168c mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x275e2a2f bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2e5892ce recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2f89f684 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x362e3d83 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4091938c queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4173bf80 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x52b69e32 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x72dbf6a9 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7a27e51b mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7a62108d mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8478fe10 mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8549d8d0 mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x86e01819 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa0ce1c97 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xace61ec1 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xadab46cf mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb5ab0acb dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb70640fc mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc525fd78 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd05ebc6d mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd2e91b7b bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd8649870 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdc3ae1dd recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe89e161d recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf84ae11f mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfe3eaa11 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1bdb04de closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0x3e2dae20 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0x48683199 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x66d28e22 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6969b5d8 bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7b55ca4f bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7f2a56c0 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x9e8b3cee bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0xab2d2b84 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xad29a6f5 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaec09a2b bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf77343c bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0xca580595 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe47e0829 __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0xecf7cef9 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0xf8460823 closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0xfbf30701 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-bufio 0xa7978f56 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-log 0x205b85f7 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x577cacdc dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x98b947c5 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xc6d26a9b dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x31b2d5f2 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x6e618e7b dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc079109c dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc42539f5 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xddbe7748 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe8ac7217 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/raid456 0x8fc421bc raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x04c18477 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x095f987d flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4fce5a65 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x51c6332f flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6e3906e4 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x70962f39 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x825cf5d1 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x84b01f66 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x91f2ba4f flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xadd12d71 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbe5ab27c flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd905ea29 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf6a597de flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/cx2341x 0x0211e427 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x0882088c cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6cc7797c cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x778cd510 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0xbaf9b7d4 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xbc243b06 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x112bf3c9 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0xedf602f2 tveeprom_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x03085583 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0564645d dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0fa49012 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x10f98d13 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e5f0bdd dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x24bea856 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x27477809 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2907e8ed dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2aa6e14f dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2cf288a0 dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3ee8cfed dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x45fb39df dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4d74e70e dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x549b3881 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x55e8b9c1 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x58c0b3ca dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x592f62aa dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5a6f883d dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x653af4d3 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x656fa4f8 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6930b1eb dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70de704a dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x71496a64 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x72bdb523 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x75bb1546 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7a59ba6a dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x83c78c1f dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9ab4d06a dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb348f1a3 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc1232e72 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc645fbc3 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc7002db5 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc727097d dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc90eb616 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc96a8c90 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe6c2b2d4 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebd38af9 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfdd40d90 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x66241ec1 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x01e1f835 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xe2ffdeee atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x03a9b600 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3c623b27 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x49c9be59 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5829d166 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6e1c205a au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x702a72d9 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7d022430 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x969cfce2 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf03abd6a au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x30a21a52 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xaef1574b bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x8ddae36f cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x4290c6d2 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xf55f5c7d cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x69782fae cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xc281e094 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x7b20013b cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x589ce7a4 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xa8bd3b8c cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xe57538e9 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x1145e0b6 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xde9d0841 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xed68ebf7 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x766fa66d dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x82688f5b dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xaa857f0e dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd38a899d dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xe5905bb5 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x003d3a66 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x20a9cf2a dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x312ee746 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3b4fe0f3 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x40975bf9 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x417cda11 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x80041a6d dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x90232a34 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x97429092 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x99db386c dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xaaa89c0c dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe1613a34 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe9f71f25 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xeba54aee dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xec23283c dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x8984c9a1 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x287e77d9 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x66e18829 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x6a95c64c dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x6d38b2f1 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa80f9f51 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf31c351c dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x0cd61098 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x3ebc8e27 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc9778e3f dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xd2af0610 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xf690537b dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x92f34b8a dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x37f283c8 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x63867b5a dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x70607634 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7c15212b dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xeaefa0f6 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xfcec35f7 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x5343a095 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x58fc0645 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xa65cee3f ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xa561e99b dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x571900a5 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x04e6473c helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x34fa0267 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xbbdc2084 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xbbdcea29 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x7bf8815c isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xd39a93ed isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x131fd2f6 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x5e18269a ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xa026887f l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x3fb83f32 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xda4c231e lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x0aa392b9 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x461520be lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x19f15d17 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xc5bbe1e7 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x31cefd91 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xaa64d4e0 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x168a3a25 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x936fd1ac m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xcdfef0b9 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x4360b438 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x3ab56fa5 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xb2467702 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x4b2b1858 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xe4226564 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xe0d4c55c nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x20d3f1e0 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xbe4fb1ba or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x0761159c or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x13e48baf s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xeee035f3 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x7043a53e s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x7a0b5c35 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x3ebf67db s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x194c2eda si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xba806d2a si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xd5e3c33e sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x5030f368 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xd4418823 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x862bd96a stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x5959ad8d stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xb97209f1 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x91240de3 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xa50c8163 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x8699cc0f stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xa24b532a stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x4aeb35e0 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x63b93bf3 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xca68fb21 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x18ed0720 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x138fa9f2 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x28ff2329 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x7c9096b9 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x313ac3db tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x5536b64a tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x0c8ed9a9 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x3d78a66c tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xf7afcf08 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x67cf7507 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x36ac586b tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xec5ae3c6 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xb5331e2f tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x4c3b0a3e ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xb321ecfc ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xa9df3965 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x247d6806 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xf1894b66 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x18cf5252 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x2246fc95 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x56767ee3 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb47efe21 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xcf348e13 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf1c3fbec flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xfb22740d flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x061464a7 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x5999e982 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x8536369e bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9610aee6 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x05e10f4d bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x2d0f05cd bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x55aa22a2 bttv_sub_unregister +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/dst 0x137609f4 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1e91a3c4 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x69e1f814 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7475c2df dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7cf9b2f2 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb41c9c5a dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xcd84de17 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd544fec8 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf54c8622 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x987f13d6 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x24a0ad1a cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x33da9975 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x667fa811 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf8daf1ee cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf97a559b cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x92bf75fa 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 0x4940df52 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x63f0df30 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x645f0595 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7d39de13 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa08d1f66 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb28b5c68 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xfa68443a cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x4f5ee8b4 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x53622de2 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x4b5fee14 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x7067584a cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x8be0e8d5 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xac9e107d cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x169428ed cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xaa348b73 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb1b0ca08 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xcf3eee3e cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe49b949c cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xebe60fb0 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf4a95b6b cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0d7e02aa cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x303537b6 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x31408312 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3ad6e149 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3db8b069 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x55465df8 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x63712b57 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6aeb525e cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6e8217a5 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x780a400b cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x86085d79 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d2d313c cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa0376499 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa1c42a3d cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb8f6c670 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcc037b6c cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcfe05c45 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdba4bd8a cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xeaf01c2f cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfd17cbfc cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x02d4024e ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x13438784 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x30735cfe ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x38fb8b46 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5bb02536 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6586d9d3 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7182b9f9 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7591231f ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7a1cb561 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7bb57c5b ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7d1a36eb ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x90c85328 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa2c0de33 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xadfa9642 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbf2e2fea ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd612344f ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xea9ebaee ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x023fb5ed saa7134_pgtable_free +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 0x485d24cf saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4e605ffb saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x72084837 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7a28b7aa saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x985883a4 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xab518143 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc067a11c saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc699ca6e saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc789c079 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcc4d050c saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe604a553 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xeada3998 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x26bb3739 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x61718a50 videocodec_register +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xa1c0fa10 videocodec_unregister +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xc7da9307 videocodec_detach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xdf5c592e videocodec_attach +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x219c084e soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x35e41e54 soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x3f9d57f1 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x76180738 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x98c5c8c8 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xa244e7a4 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xcf156778 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/radio/tea575x 0x7215a628 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x990b7bbd snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xd2d81892 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xd3a7ac25 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe1a413c6 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe99023b8 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xfec6ab46 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04b6fa3b lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x5a60294c lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x78aa5dd8 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x80ee5e0f lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x8a9bc28a lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x9d2afb7e lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc46d6dc4 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xf7ea6131 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/rc-core 0x6a7f436a ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0xaaa69be9 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x3e44194f fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x1098df24 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x100a6808 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x35304d98 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xcad6ff8f fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0x5d25c281 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x5fa72425 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xdf2c2358 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x440326dd mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x647da073 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x48aff48f mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0xa5540468 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x855270a0 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xb3d7fe19 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xda48ba24 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x160d71a9 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xd18d1f11 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xf6daa4f0 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1c9ae818 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4bc40cd0 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4dfdbf4a dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x659bd3ef dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7b5de854 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7f150a28 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc756b1d8 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd7f1c900 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe916b91f dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x07eb4f77 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5b2f5d42 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x720a9af2 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x978419a0 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xac33942b dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb0f3020a dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb53022a5 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xb5ddb150 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 0x0c196dcb dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x13aae0eb dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2fd0d0b6 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3b57601d dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4bcd7816 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4fb8ccd0 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x68973272 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7afeccfb dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa18bf6f2 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xce268365 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xea4866df dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x20b43cea em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xe9faf109 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5ea07db7 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x70fdb88b go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x739a0382 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9ba4bd16 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xcabcffba go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xcb57e3a0 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xee22e102 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf49a1eb2 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xff1e4c76 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x11b007d5 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x420ea5e2 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x56c992d7 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5c960743 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6733291f gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xaf610655 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb3ec7fcf gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xfb6f6155 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x0ecbe3b1 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xb44cec1e tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xebab60a1 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x18843403 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x334335c9 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xa02c677f v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xe4951a36 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xe9915092 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x31965130 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x55315162 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x5b7a3ce4 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x9b19df8e videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xd2fa5da1 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xde26a331 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x407f02a9 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x4cc568e4 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x0cdf04b6 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x0f32ce95 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x2d6a6c4e vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x5f81a6e2 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xed4a4aa9 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xfedd168d vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x33b50570 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x05b1353a __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x070e1e7d v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0873544f video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a79c57d video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0bd985f3 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0dcabd8c v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0dfc2ef2 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f9b97ec v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0fe0f236 v4l2_clk_unregister +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 0x19f8249a v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1aa4131b v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x20a23c0a __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2730bded v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2cbf9902 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3124576a v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3512c31c v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x369d88a5 v4l2_queryctrl +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 0x3d9d9c6c video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3ff9a9f5 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x406719f0 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x40dceab0 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x41f8256c v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4552e970 v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45c04dfd v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x46b81ea1 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4eaddb48 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x55c7fa6d v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x57800976 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x676dbd64 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6c076072 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x749f676e v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7b762525 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x84efcf90 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8718b419 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89403350 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x974b8ca3 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9aba6306 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9b9981cc v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa151e825 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa37ed99c v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xab98f962 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xac419b56 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb64f27b6 v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb7e97730 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbcf14f83 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbf1aa204 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc53c09dc v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc67e18f1 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc71033cc video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc90de57d v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd0c1edec v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd2b9f542 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd3f30bee v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xde35cf6b v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe06b64a5 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe1e47f49 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe31998d4 video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe941e864 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfc3707ff v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfd0938b7 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2b9d3a73 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4911e339 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4bbf1af7 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x67247d50 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x69f8cdc6 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6e3598fb memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa5987a36 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbccaaab2 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbf2c5231 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xcdfa1ff1 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdefe8680 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe25905f8 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xea90ab7b memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x03f37cbe mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x04e5935f mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0ec3711c mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x11dde717 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1ae19cb9 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1e2670d0 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x200910c5 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2725da16 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3140904a mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x32c2420a mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x36712b16 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x479eec25 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x604c2497 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x66206a86 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x741c40f0 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7cad8f5a mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x876fc1de mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8bf30f4e mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8e0d9078 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbfe838d7 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc050a6f5 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc672826d mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc6de6c4d mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xccf6d96d mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd048b41f mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xde17a4ed mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdf594d45 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeb89ca37 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfa2be8bf mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x01d62af7 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x054edb21 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x058022ee mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2e5146d7 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x335115cc mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x419116ae mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x69e84eea mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6a9d49b9 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x799a3620 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7d16d9f2 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x80e5849d mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x847238ca mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x971fbe2d mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9cecae94 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa387752e mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa3f6ac3c mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa6f8cfbc mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xad52a9a5 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb8e45f8d mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbb197554 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbc222803 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc7fcb7d7 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcc9a600b mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd38514f0 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd71080a4 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe3aae6c8 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf6e56595 mptscsih_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0x117d6dfc axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0x11df7f16 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0xdc299e0e axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/cros_ec 0x297fd194 cros_ec_suspend +EXPORT_SYMBOL drivers/mfd/cros_ec 0x3e059972 cros_ec_remove +EXPORT_SYMBOL drivers/mfd/cros_ec 0x4eb4ad60 cros_ec_register +EXPORT_SYMBOL drivers/mfd/cros_ec 0xa8b2a3d6 cros_ec_resume +EXPORT_SYMBOL drivers/mfd/dln2 0x68a938cd dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xab2410ef dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xc82a3f5c dln2_transfer +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x3074eeb7 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xfa9a32c6 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3c6e0cfd mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x402517c9 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x51c12a8a mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x57176767 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5e6ff862 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9e3b01c3 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcb3e70ad mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd812f477 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd8f5f967 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xdab3ddb6 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe7904d41 mc13xxx_irq_free +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 0x077b24b5 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x35419f2c wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x54a6b236 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x6f5cb02a wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x7b3f8f65 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x98192698 wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x28984f57 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x443d940d ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0xddf6ddad altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x512de181 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x56292ee1 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/ioc4 0x3fb84495 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0x52221077 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/mei/mei 0x030ef54a __tracepoint_mei_pci_cfg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x91fcb44a __tracepoint_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xa9657181 __tracepoint_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0xf0342024 __tracepoint_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/tifm_core 0x2b488a4f tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x4f11834e tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x5ce650ab tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x5e9df0f5 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xa9812103 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xad799689 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xaf6f49b4 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xb26376a7 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xe026ea13 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xf206ec79 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xf7112c24 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xf8813166 tifm_map_sg +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0xe01c8b92 mmc_cleanup_queue +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3a141de6 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4beba8ba cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5b91fea6 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x790de419 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x97ab61ed cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb3e66ffd cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc8f6fc50 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x05427ffe map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x7d714f4c register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xd4aedeed unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xd86aae64 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xebec3187 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x952f95bb lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xc55a3859 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x77add08b mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0x78588b72 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/denali 0xb88b7bc0 denali_init +EXPORT_SYMBOL drivers/mtd/nand/denali 0xc5fc796f denali_remove +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x4077c768 mtk_ecc_enable +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x5437e775 mtk_ecc_disable +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x67dc4d5c mtk_ecc_adjust_strength +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x6df58afb mtk_ecc_release +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x76e53683 mtk_ecc_wait_done +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x77ecf26d mtk_ecc_get_stats +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x8e1ebb27 of_mtk_ecc_get +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0xf00129a1 mtk_ecc_encode +EXPORT_SYMBOL drivers/mtd/nand/nand 0x1105db1c nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x52911998 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/nand 0x70948aab nand_write_oob_syndrome +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0x9497b7ec nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0xae3220cf nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0xbe9b856b nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0xc92fe0b5 nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0xce715785 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/nand 0xe739e320 nand_read_oob_syndrome +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x5fbaf6e6 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x85a39811 nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xb21c1768 nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4191ab1 nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xf6ccdd6d nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x063ca529 flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x4fd81192 onenand_addr +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x00347118 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x03827b76 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x346c272a arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3cfaf005 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x53425853 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x680fb615 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7e561eef arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf444c1b2 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf6577bea arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfd5f651c arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x30843ce9 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x4ce1fbd5 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x7d843bfd com20020_found +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x18577cb2 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2a5602c2 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4c3f76c7 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6dd5f3f3 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7659a180 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xad5d79f4 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xae4356ba NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc299b7da __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xcc52cff5 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf2cb691a ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x1a4c08c6 eip_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x3d12e947 eip_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x4ce895a2 eip_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x6640fc9e eip_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x7ada01ed NS8390p_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x99c03fd7 eip_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x9eceba60 eip_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xa58b535e __alloc_eip_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xc847abac eip_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xe42eb6b5 eip_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xf34d1f9a eip_close +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xef4568c9 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x08af8f3f cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x08e68a1c cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1d60bcf5 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2004f62b cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x501de71c t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x555c2e75 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x747a8482 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x86f52542 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb41e3ce7 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbdc6fed6 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe3a9d533 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe66d768b cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf35602de t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf6ccd17e t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf87422b1 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xff1c9c80 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x04810ed9 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x06c36c6b cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0dca58e8 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f02e21a cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x175980d8 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x18aa020b cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3263ebea cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3273364c cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35d51ca9 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57707dfc cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5d5ed18e cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6c44e439 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x73d583cf cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x848b0b55 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x856a3ada cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86b663bd cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8913d9e9 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x94ebb9c9 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x96b6d43c cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9aee82c2 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaed9933b cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb08c4c1c cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbac6b742 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbb53bea8 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xccc3fb59 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd968c31f cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdb91a3a4 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdee32964 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdfc1a32c cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe8766233 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xebffae6a cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedad6185 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xee8af3d3 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf511c599 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfc46be0d cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe333f6e cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x6ec5d835 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x9066631f cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x98dd9d28 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc17f54ea cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xd11c7c51 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x0aca9996 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6fdeda25 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7d65039a vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xac3ae924 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xcc757030 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf1b65c69 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x1201352d be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xa1725285 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x1b69a594 i40e_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x6932f3b8 i40e_register_client +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00178206 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x037267b6 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10de6f22 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32b1148a mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34427719 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3467e96b set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x396da446 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a13d129 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4940829c mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53b3d37f mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56f5fdd0 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58379f2d mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x669a77ff get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c14ee76 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f18a050 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70b21888 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x749cd796 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x786e8ad0 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78ed0e39 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87956711 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bec3422 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e637e81 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9677ea2d mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b69ada1 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa017d325 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdf82840 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf12f921 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5c26b57 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc0a5149 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcec95696 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcee7f7a6 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd084a77d mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd613a653 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2149b17 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe22393dc mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe54f5c0f mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe753efc6 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf629c050 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7e3b1f9 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfacd5174 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02a6379d mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a46330e mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a9e94e2 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b9dac0f mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d353ba3 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fe9ad34 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a988379 mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2aa14111 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2da0b9b6 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2db17139 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ea443f8 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f4f5d8f mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b430340 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d6b11c7 mlx5_core_destroy_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e658582 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x526d499e mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5553cde7 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5612137c mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x586a8429 mlx5_del_flow_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58b10a19 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58df12a3 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b3ee693 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f95f345 mlx5_core_create_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67e4696f mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6890f4bc mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ff0b9f0 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74fb5664 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c613f70 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7df4ba40 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x857fc3f7 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ee7baf6 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9669e205 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a3398a5 mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5244be8 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa66811e1 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa677b81f mlx5_core_destroy_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8dcc48a mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf117b6b mlx5_core_create_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6713fab mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb85e718c mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbac47de4 mlx5_add_flow_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd7363ad mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfd5154b mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1207f9d mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc173166d mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6ed7c71 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc85378b9 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb67f318 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc740e3e mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd467ad1e mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5d48f92 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8e6cfca mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf76edaa mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe15660f1 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7d501fd mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0b26a1b mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2ece5d3 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf493a430 mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfadf41c7 mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd6fac38 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd9eb922 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ab0c687 mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1519f1e2 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15e19926 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x39a96739 mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47130517 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x714dccc2 mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x72a05371 mlxsw_core_resources_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f539b8e mlxsw_reg_trans_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xad6e4df1 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5ff38e0 mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6ab86a9 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbaf23ebe mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb5c8545 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbe9cefe mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdbe9cd9f mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xec51e246 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfbfbaeff mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfd118665 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x46e5fe9e qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x25bd0b18 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x47f6828b hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd78ec20e hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe2089db6 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf7db33a5 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x06799d83 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x240837b6 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x699b3b3e sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x8372196a irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x89132acf sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x937b1ce2 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa186f5b0 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc8dcff4e sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xe348b9cd irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf5efb356 sirdev_raw_write +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mii 0x2bec438d generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x31c3d299 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x43c159ad mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x560cab68 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x81d4ebc9 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x98ee3825 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0xa1371ecc mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xec38c2d8 mii_check_media +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x209dfd58 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x8077fa0f alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/ppp/pppox 0x0998481d pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xb180d7b8 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xeb8b59cf register_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x02813658 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x1f6f317a team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x3fa1707f team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x5c367576 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x6dadbe0c team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x96562767 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xa1b1e3b4 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xc700d572 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xe61affa0 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x2d0f6983 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x4c1446ba usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xb0fee1ba usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x069964e3 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x08169456 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2693f4dc hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2fa1edef detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4d31a0f0 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x572760de hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x71efbf5c hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xce0f0ae6 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd9c285bf attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xeb699eef unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf184d95d alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/z85230 0x10c78988 z8530_dead_port +EXPORT_SYMBOL drivers/net/wan/z85230 0x30c297ce z8530_sync_dma_close +EXPORT_SYMBOL drivers/net/wan/z85230 0x3ae3d402 z8530_sync_dma_open +EXPORT_SYMBOL drivers/net/wan/z85230 0x5775424d z8530_channel_load +EXPORT_SYMBOL drivers/net/wan/z85230 0x592e1c05 z8530_sync_open +EXPORT_SYMBOL drivers/net/wan/z85230 0x5cd24d29 z8530_hdlc_kilostream +EXPORT_SYMBOL drivers/net/wan/z85230 0x5d0c2ff5 z8530_shutdown +EXPORT_SYMBOL drivers/net/wan/z85230 0x6db82b0b z8530_queue_xmit +EXPORT_SYMBOL drivers/net/wan/z85230 0x920146b3 z8530_describe +EXPORT_SYMBOL drivers/net/wan/z85230 0xad44f72b z8530_sync +EXPORT_SYMBOL drivers/net/wan/z85230 0xad596219 z8530_nop +EXPORT_SYMBOL drivers/net/wan/z85230 0xaec5cfa5 z8530_sync_close +EXPORT_SYMBOL drivers/net/wan/z85230 0xb904bbb4 z8530_null_rx +EXPORT_SYMBOL drivers/net/wan/z85230 0xd4ffebf0 z8530_interrupt +EXPORT_SYMBOL drivers/net/wan/z85230 0xde1c71bb z8530_sync_txdma_close +EXPORT_SYMBOL drivers/net/wan/z85230 0xe3d80064 z8530_hdlc_kilostream_85230 +EXPORT_SYMBOL drivers/net/wan/z85230 0xea648d00 z8530_sync_txdma_open +EXPORT_SYMBOL drivers/net/wan/z85230 0xeec34e6e z8530_init +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x4cca9508 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0afed8a0 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x13d8a62b ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x18b14043 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3b4e615f ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3df4f0c0 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x421591e9 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x53ab7621 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x952083cb ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaff5ec2b ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb606a527 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbd2506ff ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc1d6e2d3 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf99196a9 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x017f3178 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x31879640 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3ed852a0 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4f03c773 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x55589d09 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x64534286 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x79c7dd61 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8d2b50ca ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa0fc1f36 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa3a881dc ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xccc1748a ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcd10afc9 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xce89a0cc ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe395cf03 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xebadd3fc ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf26c86d1 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x14661702 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x18521c78 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x28217b1c ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2ecd0d52 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3f48d737 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x510a2185 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xca62b873 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xdc436033 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xeb4e606e ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xee1dc6f2 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xeeee47ce ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x20bd039e ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x28009840 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2e2d21da ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3bc4e786 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3cb51688 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x59e7b1f0 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x60220e2b ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x61132eeb ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x67d3f1a2 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x76207138 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x82582990 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x892f5751 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x90fe86e2 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9814e82e ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x997d613f ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa7c259c4 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaf2c0b84 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb89d1763 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc1c7451c ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd280e727 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe24d2b5c ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf191c9f9 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf96acb25 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02bd6a65 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05434bf0 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06961fae ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07b6976b ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0bab7e95 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0bb7e21f ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12eec3a6 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x153b072f ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c82ef60 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1cced05b ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d4fba7a ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d5f6846 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1de18ea0 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ea668a7 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2099b22e ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23399a63 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b86640a ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2bbfd9e6 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ee638cb ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32ddd3ae ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33e52662 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3503dba3 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3651fbbd ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36d3f56d ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39e91d14 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c216a9f ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c2ff8ac ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4087e0a3 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40e7074c ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42c6ed39 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x446ae42c ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4510af75 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b1ef90e ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4bc0e5ef ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c65c678 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e0e64a5 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5005985f ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x507a7b89 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52aca9ac ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54726a0a ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5837ca5c ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5abf2832 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c895118 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d02904d ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d502b5a ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6140006b ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65839565 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66348abc ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69bad201 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6aeb1e8b ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6bcd5866 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c3ba1c2 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ce55cc4 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75b084ea ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x769bc09c ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c2c6cea ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7dd07eaf ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80489fa2 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8149ec9b ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81c643e7 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x835c338b ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x839b4c57 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83f660c5 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85f24b65 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a2cc904 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b2af842 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x900b0b8d ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91b24f64 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x968922c0 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96d172e4 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96d828a9 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b2461fd ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ca3ecd6 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d7c7119 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9fe8e075 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0bcb5d4 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaeb61e99 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb216b12f ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb22d06aa ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb53ab6c1 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6a0bda0 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb84c6d94 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbeb2faec ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2617976 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2ad669e ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3ba5dc2 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4a180f3 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcab2654b ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcabf2d27 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd016ee37 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd16d311c ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2171676 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5370988 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda79c308 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdbc9e1e4 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe13e5f02 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe64cae6e ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeaa2e2f0 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec735bd6 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed96bf5f ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf271bfe3 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf75ac346 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfafec19a ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfba16df1 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff25dbd4 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x5a3f7702 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x5e02dcbc init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xdc9d2ac8 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1b37ab42 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x306ef0e5 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x313fddd1 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x43b01454 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x53d21a93 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x811d6f57 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9942907f brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbceaaf05 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xca1e79be brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xdc096c40 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe28b0e55 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xeafc2c11 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xfcc27e4c brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xff330ff7 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x5d4378fd reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x5d86ec25 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xdb6b9c8a init_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1034ac1e libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x171b30cb alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x179202d0 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3531fbc8 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3ce99d38 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x514cae3d libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x574f1ed5 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x60e8de1c libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x66fe4ab9 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8cccbb7a libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9824f268 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x989f50a3 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9a845990 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbce001d3 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc5a42f7c free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc62f1f31 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc96c30a1 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd13c21b5 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xda4ff166 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf4d0dda0 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfda3e57a libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x002ef8b1 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x01a57a6b il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02513e84 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04477bde il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0aa4cbcc il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0ec08e3a il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x14734b9c il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x15decd3f il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x17d082c5 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x18e4a868 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a1001c0 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1c8d3f94 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d8b40ed il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1ec235a7 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1fa07fc0 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x205ae0f0 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x212b613f il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2387c215 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2914a444 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2d832157 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x34cb84df il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x34d066f7 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36e40aaa il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3834bbd8 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3b63188d il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f7cf044 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x409d8d6f il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4548678f il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x45b43e70 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x475a03d7 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x49b0dd0e il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x49ec5976 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4f9e6c80 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51c35c35 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55010323 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x59f1049f il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5a1e5643 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5dea48c4 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f288a60 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5fe5ee12 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x62fe39e3 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d395eeb il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x721b2c8b il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x73e83837 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x764e8f16 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c2edc0e il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7ccebb37 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7eaf15dd il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8aae398b il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8af89550 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b587973 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8f2a2812 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x90848b40 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9243baf4 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x95a14565 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9a427cf3 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa189b14d il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa3f1b84e il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa4b85cfe il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xad12d647 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaf956f63 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb0ae3273 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb10af304 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb528a9fb il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbdbcb446 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc1b6204a il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc3e06f68 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xca09f5ad il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd32d42dc il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3939e81 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd68d6846 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdd866428 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf7d14a3 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf924f32 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdfaedfc9 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe02c0886 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe03ff141 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe1d26310 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe3f95618 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe522e90a il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe6bde630 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe6bfdfde il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe709b5cd il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe79f7983 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeab88ca7 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeadbe8fd il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xebdab1ab il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xefd3a1d3 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf40175ea il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf41805a3 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4c88eba il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf6cc9e62 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf8653d37 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf8c83b7c il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa44117d il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfbf7c290 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe761130 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xff036a5e il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x165246b0 __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x184eebc0 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5047acc4 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7798ef97 __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa80efde2 __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc7cbd0fe __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd361ddde __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2406f364 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3206ebdd hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3b8ebfa8 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4b555ba1 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4c874fea hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x505cde98 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x562d54db hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6108e69d hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6c16b720 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x72a49dd4 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x78edf0b6 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x928095c0 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x932c7e52 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x95ba1b77 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9ae3d86d hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9bf7f3ea hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9d1d43dd hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xad600d76 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb2f1e7c6 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc22fe3a1 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc69aa52e hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcd327a20 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xebdf233a hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xedef131a hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf0278e35 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x02cf7fcf hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1cc58722 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x278e06e6 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x366f2db8 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3ada401b orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3b0615bb orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5852acd5 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x959f0121 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9a0910c2 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb10d400b orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb1f5f003 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc38ae5b2 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xcabdfb1b orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf0eb8d12 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xfbac4506 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xfe591ecb __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xff745fcb orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x908bc7ae rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x024ba114 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x05dc1345 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x08cad282 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0fd49b6a _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x137c4965 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1f847b2d rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x28c802ee rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2cba12f0 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3dce416f rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4772e29e _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x484f58ac rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4b3e8531 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4e8e6da2 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x509017ed _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5167f4f4 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x62769c2e rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x63d4ee4a rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x65f1bf9e rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6716b1c8 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6a1a5b18 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6b2c5f4a rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7c6b9c28 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7ca022a7 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7f28039c _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x86805781 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xab869bc2 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaf7e0caf _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb4d7f941 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc9104184 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd22e70f5 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd52adc44 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd7e39518 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd92e6ec8 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdcee88a3 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xea47250b rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeb650a44 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xec0d089e _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeec2096d rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfbb3ce23 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfd7afa73 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xff2b3e26 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x0c554fd7 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x30d3806d rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x8a9fdb90 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xfb71c642 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x3181ab62 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xad26a11a rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xb2d62f28 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xcf5830a1 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x126d1f85 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2312db32 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x25893b98 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x28c34352 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x28deea23 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3d431c0a efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e97f2cb rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x41ba08cb rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5840b822 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5df0e4e7 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5e0b74e9 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5f9e2af9 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x67442168 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x702ceb6b rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x77a4d949 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x86093262 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x88cc6174 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8b106c1b rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8b5abdea rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8fdf1c15 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90c202dc channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa30469c1 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa31d7e26 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xad041b34 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcbc205fc rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd6d72285 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdb0eb545 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe2314403 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe8222384 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe83fcaf8 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfc8bf0e3 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x4e354865 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xb259fad5 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xdf55d8c3 fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/microread/microread 0x5a467910 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x7b968dd8 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x014711b7 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x471154cb nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x727fbf9c nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xa76e2d33 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x309f28b1 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x79d9ea44 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x126931ef s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x19408af1 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xeb9b9aae s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x07e2f91f ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1b2ea8c4 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x473dcb2c st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x48fb0284 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x615bac90 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6eb626df st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x817a7ccd ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x903ebd2d ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa1947cf9 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa1b268ae st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0740343e st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1e6b72a5 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2d58c673 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x39e46da6 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4b790d09 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6df73712 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x765f7cce st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7bc6154c st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x81e4e266 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x95336a87 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x98a5bc99 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x98cac922 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa1672799 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xaf697b61 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb052c885 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc3d616e2 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcb5bd43c st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe3582a9a st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/ntb/ntb 0x039b9496 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x08d2582a ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x0b9d8c1e ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x11f75334 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x22f36c3f ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x510f9f67 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x5965d3de ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xc492d486 __ntb_register_client +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x051227ea nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xf4a28c68 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x64def410 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x0879d5c0 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x1ab347ad parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x26be60ca parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x320c694d parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x403b96e7 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x435a4a95 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x4511f843 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x4985a753 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x4a6570c9 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x50812024 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x5434b7eb parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x54714719 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x5dd9cea2 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x805cbec9 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x80c2e0ba parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x8976b4ba parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x8d746852 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x9400d738 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x958bdbd7 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xa16004d5 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xa3656a7f parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xa52ef94b parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xae13edc5 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xb01faee1 parport_read +EXPORT_SYMBOL drivers/parport/parport 0xb111aba4 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xbc6080c4 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xbeac1ddf parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xd12b486b parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xd48d1549 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xdfe69255 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0xefbe4aa8 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xf0df1f57 parport_release +EXPORT_SYMBOL drivers/parport/parport_pc 0xf12f53fb parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xfcb948f0 parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x03e757aa __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x063cebec pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1721d33d pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x22afc19c pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2a41f5ca pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2fbe53ba pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x53a5a790 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x613b1321 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6676b35a pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6c91bf01 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7a8edef5 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7ab80d02 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x83270f29 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x85bad81a pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8867aa4e pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8bb394eb pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9ab93f8c pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb89cfbd5 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe1e8fb57 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x030fccd3 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1ad3794d pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3aab7cf3 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5d1f2bd5 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5efef37c pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8a665ff6 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x95e54324 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x99474c06 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xdd05f662 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe9d5bab3 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf9d49798 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xd4ea6172 pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xe582f2cc pccard_static_ops +EXPORT_SYMBOL drivers/platform/x86/intel_punit_ipc 0x3a0b563a intel_punit_ipc_simple_command +EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0x5bb1e117 sony_pic_camera_command +EXPORT_SYMBOL drivers/pps/pps_core 0x0e4179b5 pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0x51ebea2f pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0xb9067849 pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0xe6faee89 pps_register_source +EXPORT_SYMBOL drivers/ptp/ptp 0x15442183 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0x37d0a7ec ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0x9eb45202 ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0xe96b022c ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0xf576aa9e ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x171cda53 pch_rx_snap_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x2a4dacbf pch_src_uuid_hi_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x682e5987 pch_set_station_address +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x8f6aca09 pch_ch_control_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x9074cc7a pch_ch_event_write +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x99a511d8 pch_ch_event_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0xa40f9976 pch_tx_snap_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0xc9e57cc0 pch_ch_control_write +EXPORT_SYMBOL drivers/ptp/ptp_pch 0xeb846a62 pch_src_uuid_lo_read +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x04e87cbb rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x1279b8a4 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x155e3bc2 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4a546291 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x7388f9d2 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x7c3e0728 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x9c80be0b rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xba6c1867 rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd5d8c87c rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd6765191 rproc_put +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xf529f172 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/53c700 0x36566277 NCR_700_detect +EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr +EXPORT_SYMBOL drivers/scsi/53c700 0xee8cc59d NCR_700_release +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7ce700fa scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x898d1c89 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9f99d277 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xeff7df86 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0569db44 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0bfd7c61 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3f1a8044 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5961ed91 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x70c3cc74 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7f2c898c fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x873dc63d fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x961b90a0 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xad723952 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xaf236483 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xcf9377de fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdd117af1 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x25e5f2a5 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2bfcedca fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c664230 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2dd7fba2 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30b286d7 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x34043965 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36956f27 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3e72991c fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x47cff8eb fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4879db9b fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4bbbda72 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c2beb20 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4fcbff18 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x52281dd1 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x542704f5 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x657655e1 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69ae3313 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6aac9ed2 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6b309ae7 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6c40455a fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6d77f614 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e374ab0 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7562015d fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8591fd24 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8b35c411 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c858775 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x91f9adc2 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9a24dbb4 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d847082 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0128c1f fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0b22001 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa26633d8 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa4197dd0 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa8aefb53 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xacf6cebe fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb051d8a3 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb2199984 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb318db48 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb7717399 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb8f10e82 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbcd7ec18 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbff204a2 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xccf035dc fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xce83d0f4 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd1009cfd fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd107a0a9 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd9983af4 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdf9fe5f8 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe0f99921 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf9712fa2 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x15ba5ed0 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x39e2aaa0 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xaf119800 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xeedf2a5c sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2969789b mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x09175284 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0d3b5674 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x12c8061b osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1f211274 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x20ac5e88 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x28c16379 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2a56c60f osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x39c8dee2 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3d893ca6 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x453aa4a2 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x49addcd6 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5e8222f6 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x674fa74b osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6805e9da osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x709c0abf osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x79c8998a osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7a2dc2f2 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7bcb6bfe osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7c281454 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x81dd97d2 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x96df6550 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9bcf9dec osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa9c3ac16 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xacfc1dd9 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc98770e3 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcf0dce96 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd0c5a813 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xde81f150 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdfbe2576 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe231e93e osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe8302276 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf5625cc8 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf6088ac5 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfa37cf00 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfa580da8 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xff4d734d osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/osd 0x236e6077 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x6cc79fb1 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x73070b60 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x7e3c6562 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x91c4292f osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xd7ea0951 osduld_device_same +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x15682f8b qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4017340e qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x574d7515 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x592f85d8 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x69fa37bf qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6b0825af qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6c2aa288 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8cfbaabc qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8daa61b2 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa9ee80bc qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdc4bc5ad qlt_put_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf9a553fd qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x277f1e05 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x73821236 qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xa57292f6 qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xa892c278 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe41813e5 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe8b5ac8f qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0x3f544c45 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xab475b73 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xfe66b214 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x03652bcd fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x38621772 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x38ed241b fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5907ca7d fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6b196ab0 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x81df4292 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x97184099 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa5212ebc fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xabe93d95 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb08a7cd8 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbf478e6e fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfc6bb146 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0f78f653 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2fd86992 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x324c9c16 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x377caf5e sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4dc815b9 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4e0beeb9 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x520fe595 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x58e0692d sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x657c2c17 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x67fe22fa sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6d9291a9 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x76e89f4e sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x778ec576 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7bdf12b0 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x851abd16 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8e484334 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x943687c6 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x95497f25 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9d63c8d9 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa851b3fb sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xac80cde3 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbcf91a0e sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc77dad42 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd7fb1ec2 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd851ccac sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdf435422 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe86b624d sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xebe6470b sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfa82672e sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0b6e5814 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x33ae029b spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x629ef55b spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x74f06ba1 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xbbaeee28 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2c60015c srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x347d6458 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x3e0ba625 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x94d97183 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x520aa804 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x545e731c tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x09cb50b6 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x2022e489 ufshcd_query_descriptor_retry +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x27de2c05 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x2f2e9b04 ufshcd_read_string_desc +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x34d06fef ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x3985ed65 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x5669b507 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x943a0c36 ufshcd_read_device_desc +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x94639627 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xa62d286f ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xfec4140f ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x7877d7fe ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x91b356ef ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/ssb/ssb 0x16ad32b4 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x1dccd06d ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x22d27188 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x27119cb6 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x502d9329 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x5dfef6dc ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x5fc86eff ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x627e6c3b ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x75bf7dbb ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x81dcd3cb ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x87d5f737 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x8ebb9230 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xa2102079 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xb1ef6c65 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xba6cee89 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc4738ce2 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xc5b6f09a ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xdef84ba1 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xe5f00644 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xe88d633b ssb_clockspeed +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x00730b7c fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0a03808c fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x10c84b94 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1646afbe fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1debbc35 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2a5973f9 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x30f1560a fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x345857ad fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3c575d39 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x42a2b19c fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4981fd03 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x50b52a6b fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6f330abc fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x72eb133c fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x865b7513 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x87b79e40 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x953c4027 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaba81641 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xae91256e fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xceca5581 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd2503fe8 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd5e32559 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeea62152 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf47df702 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x96f18afc adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xb73c175d ade7854_probe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x000c507f libcfs_debug_dumplog +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x01fef7b4 libcfs_register_ioctl +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x06443cdb cfs_wi_deschedule +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0de6c369 cfs_cap_lower +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0e4820ab cfs_percpt_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0f5eff79 cfs_percpt_number +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x10952de2 cfs_hash_findadd_unique +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x117c8a95 cfs_cpt_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x15565c7f cfs_cpt_set_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x21a44499 cfs_percpt_lock_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x23e25c18 cfs_wi_exit +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x23f6f445 cfs_restore_sigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x247da28c libcfs_kvzalloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2663147a __cfs_fail_timeout_set +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x274e15ce cfs_hash_for_each_safe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x27ff182b cfs_hash_bd_del_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2dbe54b2 cfs_trimwhite +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2efcc0e6 cfs_block_sigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3032b1c6 cfs_hash_for_each_empty +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x31fc5082 cfs_crypto_hash_update +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x36b60398 cfs_race_waitq +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x370609c8 cfs_hash_bd_peek_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x37175882 cfs_expr_list_print +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x377f93fb cfs_srand +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x38828b92 cfs_cpt_unset_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3a62a183 cfs_cpt_set_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3c1285bd libcfs_subsystem_debug +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3c621068 cfs_hash_rehash_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3d5e6098 cfs_race_state +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3d94747d cfs_hash_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3ea730c0 cfs_gettok +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3f0d9281 cfs_wi_sched_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3fb74638 cfs_hash_add_unique +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3ff1414f cfs_crypto_hash_update_page +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3ffb8726 cfs_hash_bd_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4062f92b libcfs_run_lbug_upcall +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x411db754 cfs_crypto_hash_final +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x413056d8 cfs_cpt_weight +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x42e22feb cfs_cpt_table +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x44688a0a cfs_block_allsigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x44839bbb cfs_rand +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x47c28f55 cfs_hash_putref +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4a99af72 cfs_clear_sigpending +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4d3b4eaf cfs_fail_err +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4d89e988 cfs_block_sigsinv +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4f7f4a71 cfs_hash_del +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x52b9c7e9 lbug_with_loc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x52e9cfc1 cfs_cpt_current +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x53b383e4 cfs_cpt_unset_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x55415441 cfs_hash_debug_header +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x58a7ee00 libcfs_catastrophe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5b2451b1 cfs_percpt_unlock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5c013b81 cfs_expr_list_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5ce62c0e cfs_cpt_table_print +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5d73c3e3 cfs_expr_list_free_list +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5f40f909 cfs_hash_bd_add_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x62289d65 cfs_array_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x6383a458 cfs_hash_for_each_nolock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x63b198ca cfs_hash_size_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x67398404 cfs_wi_sched_destroy +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x68497dbf cfs_cpt_number +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x6c147ea0 libcfs_kvzalloc_cpt +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x6c605eaa cfs_cpt_unset_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x71c4cca8 cfs_percpt_lock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x71e3804b cfs_crypto_hash_digest +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x71f662a3 libcfs_debug +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x752858fb cfs_cpt_table_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x7d93cded cfs_cpt_of_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x7fda989d cfs_fail_loc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8151c3aa cfs_cap_raised +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x84ada9bd cfs_hash_lookup +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8b8f321d cfs_crypto_hash_speed +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8e61d47b cfs_cpt_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x93896a8b cfs_crypto_hash_init +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x940ed192 libcfs_stack +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9879b229 cfs_get_random_bytes +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x98f0e065 libcfs_deregister_ioctl +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9d5a2ed1 cfs_hash_del_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9f82f712 cfs_trace_copyout_string +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa2b68b2a cfs_array_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa711aec5 cfs_cpt_table_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa76536a3 cfs_hash_add +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa9088531 cfs_expr_list_values +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa9dc74e2 cfs_trace_copyin_string +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xaaf59b75 cfs_cpt_set_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xad019238 cfs_str2num_check +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xadb100a9 lprocfs_call_handler +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb53b5569 cfs_cpt_spread_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb74f8304 cfs_hash_bd_lookup_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb8ae9e22 cfs_hash_cond_del +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xbada117b cfs_cpt_clear +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xbde28c50 cfs_hash_getref +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc0ea7fc0 cfs_expr_list_parse +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc2911d96 cfs_expr_list_match +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc6ffbc2a cfs_hash_debug_str +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc77a24c3 cfs_cpt_set_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xcf61bacb __cfs_fail_check_set +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd0d8d08a cfs_cpt_unset_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd358fa6d cfs_hash_hlist_for_each +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd96f406d cfs_cap_raise +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xdf2789c0 cfs_curproc_cap_pack +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe0ce7738 cfs_percpt_lock_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe2f91ce3 libcfs_debug_msg +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe3bf6897 cfs_percpt_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe8d8fad8 cfs_hash_is_empty +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xeccafa5c cfs_cpt_online +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xeceac781 cfs_fail_val +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xefa4ca84 cfs_hash_for_each_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf03bdf11 cfs_wi_schedule +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf2c02048 cfs_cpt_bind +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf3565b71 libcfs_debug_vmsg2 +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf372d1c2 cfs_firststr +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xffa66c11 cfs_hash_for_each +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x0090e935 libcfs_net2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x056f4ad2 lnet_kiov_nob +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1123e7cc lnet_set_reply_msg_len +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1366b7ac LNetSetLazyPortal +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x19670622 LNetNIInit +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1a60d439 cfs_parse_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1ee5f15e lnet_ipif_query +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1fe16fd5 LNetGet +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x23a09ee0 lnet_sock_getaddr +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x2672444d lnet_connect +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x2aa9953d lnet_cpt_of_nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x2ac93e90 lnet_connect_console_error +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x32c5fe2b lnet_sock_write +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x33202a6c LNetGetId +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x36c451cb lnet_net2ni +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x370f87b0 lnet_finalize +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x3c779ee0 LNetPut +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x3f4f5b46 LNetNIFini +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x473ad33b LNetDist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x48f163c6 libcfs_str2anynid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x50345570 libcfs_str2net +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x5142e168 the_lnet +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x55db5324 lnet_iov_nob +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x58a1ca89 LNetMDUnlink +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x5e91cfec lnet_copy_iov2iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x5ef46474 lnet_sock_setbuf +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x5fee352c lnet_acceptor_timeout +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x61f784b2 LNetClearLazyPortal +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x64cdea3a LNetCtl +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x66d449b1 lnet_ipif_enumerate +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x722c76e5 LNetMDAttach +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x786b467a libcfs_nid2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x79ab06ff lnet_create_reply_msg +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7d59a7fe LNetMEInsert +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x83d795e4 cfs_match_nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x8e18dc7c LNetDebugPeer +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x97f5966b libcfs_lnd2modname +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x985d1e07 lnet_copy_iov2kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x9de986d3 LNetEQAlloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xa521c7eb lnet_sock_getbuf +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xa56de08d lnet_ipif_free_enumeration +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xa6bda27e lnet_unregister_lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xa9f70d82 lnet_sock_read +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaa414970 LNetMEUnlink +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaa9b477e LNetMDBind +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xade657cc libcfs_next_nidstring +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb3235c5b cfs_nidrange_find_min_max +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb422bb1a lnet_parse +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb75f7953 LNetEQFree +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb9d6cfdb lnet_copy_kiov2kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xba5566d2 lnet_acceptor_port +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xbbb79318 lnet_extract_kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xbf0760a2 LNetMEAttach +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xc7458432 lnet_notify +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xccc45639 cfs_free_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xcf4eb544 cfs_print_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xd1c2f3e4 lnet_extract_iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xeaeb6565 cfs_nidrange_is_contiguous +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xec1f56d5 libcfs_str2nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf16ab8b8 lnet_copy_kiov2iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf1b316bf LNetSnprintHandle +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf30efdf5 libcfs_lnd2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf63a2d70 lnet_register_lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf8a8644b libcfs_id2str +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf94025d1 libcfs_str2lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfa106804 lnet_counters_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfe7ca17c libcfs_isknown_lnd +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x1b8e9bb9 seq_client_alloc_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x1c4bb5f9 LU_OBF_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x375e6f8d LUSTRE_BFL_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x5df53338 client_fid_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x67156a5a seq_client_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x8e333b6d client_fid_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xae61cff5 LU_DOT_LUSTRE_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xc997a02f LUSTRE_SEQ_SPACE_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xecee2727 LUSTRE_SEQ_ZERO_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x07567911 fld_client_add_target +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x2e4f45a9 fld_client_debugfs_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x44f4598b fld_client_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x4794e0e4 fld_client_lookup +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x8dcd9e53 fld_client_del_target +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xe0f3c014 fld_client_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xf5037505 fld_client_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0x0f0cc1c1 ll_stats_ops_tally +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0x4fd458fd ll_direct_rw_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0x9fc648f7 ll_iocontrol_register +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0xcd3cde92 ll_iocontrol_unregister +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x1fa9ec14 lov_lsm_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x6ec7f2f3 lov_lsm_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0xc2351fc7 lov_read_and_clear_async_rc +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0xe6362243 lov_device_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/mdc/mdc 0x1f9dbb26 it_open_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/mgc/mgc 0xdc287f95 mgc_fsname2resid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x016668a3 lu_context_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x025d44a6 cl_page_unassume +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x035852d0 lustre_swab_llog_rec +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x04b44738 lprocfs_at_hist_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x04d423d8 cl_io_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x04d7f279 class_incref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x05141181 cl_io_commit_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x06d82d96 class_handle_unhash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x07aa68bb lustre_swab_lustre_cfg +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x07d45876 obdo_set_parent_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x083942ff class_del_profile +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x088dccc2 lprocfs_oh_tally +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0a626815 cl_object_attr_unlock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0a8bf555 cl_req_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0ae14c18 cl_req_page_done +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0b647f8a cl_io_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0b8a6113 cl_lock_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0c04b5d9 lu_site_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0c378d79 lustre_swab_llog_hdr +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0ccb9a93 lustre_register_client_fill_super +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0cdf218a llog_thread_key +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0d8153b1 cl_req_prep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0dd9091c class_name2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0e390b2f class_config_llog_handler +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0e871e53 lu_env_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0f539c0d cl_io_iter_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x10bc11ed class_destroy_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x11495519 lprocfs_write_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x118587e2 cl_offset +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x12fdf4fc cl_page_assume +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x155bd9d2 cl_vmpage_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x15e4ccee lprocfs_rd_connect_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x190b8945 cl_2queue_init_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1de141e7 cl_stack_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1e942b40 lu_context_key_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1edd9d1f cl_page_delete +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1f9ee1de lu_device_type_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x20465118 lprocfs_rd_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x221826f1 class_parse_nid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2412868e cl_page_list_move +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x24bd0409 class_manual_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x252407df lu_kmem_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2547efae lustre_uuid_to_peer +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2663f96e lu_object_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x26bb9bec lu_site_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x275cdc7a cl_env_reexit +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x28113f30 lu_context_key_degister_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x286860f5 class_handle_free_cb +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2880b1bd lu_device_type_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2898b4f2 __llog_ctxt_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x28e10682 cl_page_header_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x292eb58f class_num2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x297cf5e0 class_handle2object +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x29e483a3 cl_page_discard +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2aefe992 lprocfs_exp_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2cceb7a3 class_handle_hash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2e771e66 cl_lock_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2f8edc7c lu_site_stats_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3048e51a cl_page_find +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x30861224 cl_page_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3242ed35 obdo_cachep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x32d7744b cl_io_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3450c289 libcfs_kkuc_group_rem +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x34a154ae lu_object_add_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x354cd225 cl_io_start +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3594f0e4 cl_lock_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x35c54abc cl_page_list_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3726f79e cl_lvb2attr +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3756deb6 cl_env_nested_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x37ed6e4b at_early_margin +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3f4352c3 class_register_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x42768882 lprocfs_rd_uint +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4357b315 lprocfs_counter_sub +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4450e40f llog_process +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x44c922b2 obdo_from_inode +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x46b605fc class_import_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x46ca6b55 cl_site_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x46ef6dc7 lustre_process_log +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x47b35f7d statfs_unpack +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x49a29223 lprocfs_find_named_value +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4a41ccc9 libcfs_kkuc_group_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4a8ae698 lu_object_unhash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4ac58713 obd_connect_flags2str +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4cc1fa8a lprocfs_rd_server_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4d4caf8f cl_page_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4dfa049e cl_io_iter_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4e215fd8 class_import_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4ead9b7a cl_page_own +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x505f3736 obd_devs +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x50c7fc36 ptlrpc_put_connection_superhack +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x512e74ab cl_io_is_going +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x53121760 lu_context_enter +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x534f69dd cl_site_stats_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x54eef63e llog_process_or_fork +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x552c0ad9 cl_env_cache_purge +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x558bec27 obd_ioctl_getdata +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x562e89d3 libcfs_kkuc_msg_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x56c56db2 lu_context_key_degister +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x570d09ae lustre_swab_lu_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x59386ac2 cl_object_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5d34ed89 lu_context_key_revive_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5f3bd442 cl_lock_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5fe97b73 block_debug_check +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x603af2e3 class_config_parse_llog +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x60cc68d9 cl_sync_io_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x61587b55 cl_object_attr_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x61e98df7 libcfs_kkuc_group_foreach +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x62764a42 cl_sync_io_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x62954cff cl_object_glimpse +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6299e246 cl_env_percpu_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x631dc15a cl_page_list_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x63af73d0 cl_io_lock_alloc_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6493a952 lustre_end_log +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6562116a cl_2queue_discard +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6734adbd lprocfs_read_frac_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6840a333 cl_index +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6890d175 lustre_get_jobid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x68ae2bd9 cl_io_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x68bd49da lprocfs_oh_clear +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x69a6697d cl_page_is_vmlocked +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x69c42114 at_min +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6a2da384 lu_context_exit +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6a3ffc38 lustre_common_put_super +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6abb7d5b cl_sync_io_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6c655a8b libcfs_kkuc_group_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6d1011fb cl_cache_incref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6dccfdad cl_io_read_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6ec6bafc cl_page_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6fcb7042 lprocfs_counter_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6fe87b5a lu_context_key_quiesce +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x738ea3f8 lu_context_key_register +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x740c0aa4 lprocfs_single_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x742559b1 class_unregister_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x752168d8 obd_unstable_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x752f71a8 class_get_profile +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x756a77f3 class_parse_nid_quiet +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x766ba1df lu_context_key_quiesce_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x77d2089a class_name2dev +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7802fcd7 lustre_swab_llogd_conn_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x789796a1 obd_zombie_barrier +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7b4fc57b at_max +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7c4ce238 cl_page_prep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7c9774d5 lu_device_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7cbb9c25 cl_page_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7e0917eb llog_open +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7eca91a0 cl_io_loop +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7edcafa0 cl_env_reenter +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7fe5561a obd_dirty_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x806cc497 class_add_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x80fc0ab6 lu_object_header_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x81472508 lu_context_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x81650a96 class_new_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x81742d89 obd_ioctl_popdata +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x818de1d9 lprocfs_wr_uint +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x81eb3905 lprocfs_free_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x82617c5a cl_site_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x831e7c86 class_export_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x831f656c class_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x83b2051a llog_init_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8446b9a8 obdo_to_ioobj +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x84bfa386 cl_env_percpu_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x84ef2145 class_new_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8536a284 cl_page_list_splice +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x85898443 lprocfs_clear_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x859c3372 lprocfs_rd_timeouts +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x859fc7e5 class_fail_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x86b28363 lu_context_key_revive +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x871e7a7b lu_object_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x873ae156 cl_io_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x887887c1 cl_io_rw_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x88f112eb cl_page_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8b2e0a02 cl_page_is_owned +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8ba6e479 lustre_swab_lu_seq_range +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8bf02e31 lu_device_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8dff03e6 cl_object_attr_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8e3af552 class_put_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8f67314c obd_dump_on_eviction +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x90541974 obdo_refresh_inode +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x90d4fe7e lu_stack_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x915c9c50 cl_page_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x92e58479 obd_dump_on_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x95735c6c at_extra +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9767adce class_uuid2dev +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x97d03783 at_history +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x97d1b1a1 lu_context_key_register_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x982b40d9 cl_page_list_del +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x98ae7cf0 cl_page_make_ready +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x994c9608 lu_device_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9b1ed9d8 obd_jobid_var +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9dc6e2a8 cl_page_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9f8769ab cl_req_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa119b219 cl_lock_descr_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa160da4a lu_object_header_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa217de25 class_export_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa32af58b cl_lock_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa34e501c cl_page_list_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa3cd95ff lu_device_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa4ec30a2 cl_req_page_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa5fb234f lprocfs_write_frac_u64_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa6213f0d cl_io_sub_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa6ac6c7a llog_close +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa71dacf2 md_from_obdo +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa95c5f6b cl_2queue_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xaabf945e llog_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xab4f4e45 cl_cache_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xabda1dd5 cl_lock_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb01963a6 class_uuid_unparse +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb131f7df cl_object_prune +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb35519ed lustre_swab_cfg_marker +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb3b25e9b class_find_client_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb3d2e773 cl_env_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb4f8ee63 lprocfs_read_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb50b0c9d class_connect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb549b421 cl_conf_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb5821fd1 lu_env_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb726a906 cl_req_attr_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb824aebc cl_io_submit_rw +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb8c62bd0 lprocfs_oh_tally_log2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb9bcd210 cl_lock_enqueue +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xba985283 lustre_register_client_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbacac922 lprocfs_write_frac_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbb015244 cl_page_list_move_head +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbde444a2 lu_object_find_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbe4b0b44 cl_env_unplant +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbefcfd3b cl_page_is_under_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbf693ce9 lu_env_refill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc0bf7ef2 obd_debug_peer_on_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc2f43795 class_unlink_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc3f9857c lustre_register_kill_super_cb +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc404837c lprocfs_stats_alloc_one +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc46982ab lu_object_find_slice +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc59c5bc8 cl_lock_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc621b9bd cl_io_submit_sync +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc62f18c6 class_disconnect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc8aa6d18 cl_page_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc8c52eef class_process_proc_param +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc950628a cl_lock_mode_name +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc9c2c222 lprocfs_alloc_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xca01980d lu_object_header_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcacace20 cl_env_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcb0ab67f obd_max_dirty_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcb8302a3 cl_page_clip +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcc7178f1 cl_page_list_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcd18bb0e cl_io_unlock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcf39e378 lu_object_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd0101fc1 lprocfs_counter_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd060c8b7 cl_object_attr_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd2017930 lprocfs_oh_sum +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd2a44c88 llog_cat_close +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd329df05 cl_object_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd4bb1f17 lu_object_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd6393e30 lu_site_purge +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd6692727 class_exp2cliimp +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd68d6103 cl_sync_io_note +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd70fe669 lustre_swab_llogd_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd7bc8654 obd_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd9889167 cl_page_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xda5b1ced class_find_param +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdaf5db96 cl_env_nested_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdb9ff21e cl_page_completion +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdba8816b cl_object_kill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdcc40af0 class_check_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdd082173 cl_object_header_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xde060509 cl_type_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xde510b30 class_devices_in_group +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xde7d985b obd_dirty_transit_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdeffbd89 cl_env_implant +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdf0d9f4b lprocfs_rd_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe09dc36e lu_site_init_finish +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe0f27cc3 lu_context_refill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe1134618 cl_req_completion +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe1579bfb lprocfs_stats_collect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe26d728e class_exp2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe41ddada cl_cache_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe4faa706 lprocfs_rd_conn_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe583b23b lu_kmem_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe59b5360 lu_object_locate +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe8d347ce class_conn2export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xec64299f cl_2queue_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xec7d6b85 obd_timeout_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xee47c8c7 llog_cat_process +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xee7dec0b lu_cdebug_printer +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xef72e441 lu_site_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xef76f858 block_debug_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xef90c0d1 cl_env_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf024b6f9 llog_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf2fc15fe cl_page_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf490d5f9 class_del_profiles +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf4a2b5ce cl_page_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf60dfb22 cl_io_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf6229d02 cl_object_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf69a14d9 lprocfs_seq_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf7fa1679 cl_object_find +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf85bb51d cl_lock_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfb09742a cl_io_lock_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfb4412e0 class_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfbea0098 lu_types_stop +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfc3ab64a cl_2queue_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfc585f2e cl_page_own_try +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfc70b271 lu_object_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfd68d17a class_notify_sptlrpc_conf +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfdbe1557 lprocfs_write_u64_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfffc1f11 lustre_swab_ost_id +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00a6f37b ptlrpc_request_alloc_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00cb99c1 RQF_LDLM_INTENT_GETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00d95039 ptlrpcd_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x044aef13 ptlrpc_pinger_sending_on_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x048b59d5 lustre_msg_set_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0515f93b RQF_FLD_QUERY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x05740cf2 ptlrpc_resend_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x05eb932d sptlrpc_gc_add_sec +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0692cece ptlrpc_set_add_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x06af69ff ptlrpc_add_rqs_to_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x06b3942b lustre_swab_lov_user_md_objects +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x071fc74a RQF_LDLM_ENQUEUE_LVB +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x08bb2d27 lustre_swab_obd_ioobj +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x08bbb90c sptlrpc_get_bulk_checksum +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x095587d0 lustre_msg_buflen +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0a3130b0 RMF_MDT_EPOCH +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0ac252b2 lustre_msg_set_jobid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0b174c28 ptlrpc_set_destroy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0bcacb5d RMF_MDS_HSM_USER_ITEM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0cf343dd RQF_LDLM_INTENT_BASIC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0e0c425d req_capsule_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x10a1a86d ldlm_error2errno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x110c6ec6 ptlrpc_deactivate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x115017f6 req_layout_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x11ba484a ptlrpc_prep_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1246b6a8 client_obd_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x12864f90 ldlm_namespace_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x128770b7 client_destroy_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x12b6f5a3 ptlrpc_connection_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x14708afc lustre_swab_mdt_rec_reint +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x14d192db lustre_msg_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x152f066f sptlrpc_flavor_has_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x15a3e4db RMF_GETINFO_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x166c8e17 do_set_info_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x167d9830 ptlrpc_wake_delayed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x172fb86d lustre_msg_hdr_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1747d8b3 ldlm_lockname +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x17950f60 RQF_SEC_CTX +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x181ce3fe ldlm_lock_set_data +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x18e50408 ptlrpc_unpack_rep_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19108a0f RQF_OST_DISCONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19c08934 RQF_LDLM_INTENT_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1a6a3ce9 RQF_OST_GET_INFO_LAST_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1a9b76aa RMF_OBD_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1abd3258 RMF_SETINFO_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ace4b5f RQF_LDLM_BL_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ad6c330 RMF_EAVALS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1b2da351 ldlm_lock2handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1b536bd7 lprocfs_wr_ping +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1be21715 lustre_msg_size_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1c300d8e lustre_msg_get_slv +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1c3797b9 ldlm_lock_change_resource +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1cdb46d1 ptlrpc_queue_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1d694d3a ptlrpc_buf_set_swabbed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1dc2051d RMF_SEQ_OPC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1de9c288 lustre_swab_layout_intent +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1e039ec8 req_capsule_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1eb2a65f RQF_OST_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ee46b51 lustre_init_msg_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ee9eb3c RQF_MDS_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2096f5b5 RQF_OST_SET_GRANT_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x219391ec RMF_EAVALS_LENS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x233790b5 RMF_OST_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x23a36894 ptlrpc_request_set_replen +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x24aafdba RMF_MGS_TARGET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x24c54b44 sptlrpc_unregister_policy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2585a629 RMF_SEQ_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2587513c RQF_LDLM_CP_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x265e92a0 ptlrpc_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x269554ce RQF_LDLM_INTENT_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x26f99d16 RQF_MGS_CONFIG_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x27076a13 lock_res_and_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x285e5b99 lustre_msg_set_conn_cnt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2875c66a sptlrpc_target_export_check +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x28c7ae2f ptlrpc_unregister_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x28f768a1 ptlrpc_set_import_active +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x29e0869a sptlrpc_get_hash_name +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2a63a472 lustre_swab_ptlrpc_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2c00c60d ptlrpc_sample_next_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2cec385f ldlm_lock_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d56f168 ptlrpc_pinger_ir_up +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d798316 RMF_MGS_CONFIG_RES +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e004043 req_capsule_server_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e4562fe RQF_LLOG_ORIGIN_HANDLE_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e4ca396 RQF_LDLM_INTENT_UNLINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2f0e4f87 RQF_OST_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2f793215 lustre_swab_ost_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2fab3539 lustre_swab_ost_lvb_v1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2fd2f737 lustre_msg_set_limit +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x301d4fcd RQF_MDS_READPAGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x302937e0 RQF_MDS_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x306789b8 sptlrpc_cli_enlarge_reqbuf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x30fd2795 ptlrpc_request_bufs_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x32240f54 ptlrpc_invalidate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3261b862 RQF_OST_SYNC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3294e3a4 ptl_send_rpc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x33040475 sptlrpc_target_sec_part +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x343cd69e ptlrpc_prep_fcset +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x35939a3d lustre_swab_fiemap +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3678567d sptlrpc_import_sec_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x37923798 req_capsule_get_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3835ab4b RQF_LLOG_ORIGIN_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3858fb94 RMF_OBD_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x38c01799 RQF_LDLM_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x38fce533 lustre_msg_set_versions +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x399b9249 req_capsule_extend +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x39f60a5f RMF_OST_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3a1e4bcb __lustre_unpack_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3a5b981c ldlm_namespace_new +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ab90f6e lustre_msg_bufcount +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ac00716 lustre_swab_hsm_user_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3b6b7cba dump_ioo +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3bedb0c7 RMF_LLOGD_CONN_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c63e62b RQF_MDS_REINT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c8b16ab lustre_swab_ost_lvb +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ca50f33 RQF_MDS_HSM_CT_REGISTER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3cce4ebc ptlrpc_unregister_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3d7dc5f9 ldlm_pools_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3dc47695 lustre_msg_get_magic +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3e589b5f ptlrpc_lprocfs_unregister_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ea1d21e ptlrpcd_wake +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f034caf lustre_msg_get_status +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f35a11d RQF_FLD_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f752e78 RQF_MDS_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x402b41c6 req_capsule_server_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x41008cef RQF_LDLM_CANCEL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43168488 RQF_MDS_RELEASE_CLOSE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4351e916 lustre_swab_hsm_user_item +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x435b9422 ptlrpc_register_service +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43705ee4 RQF_LOG_CANCEL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43d7efc8 lustre_msg_set_transno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x44036eda RQF_MDS_GET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x440c2a71 RMF_FIEMAP_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4481591d RQF_OST_SET_INFO_LAST_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45a9c888 ptlrpc_lprocfs_brw +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45d05893 lustre_swab_lustre_capa +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45e30cea lustre_swab_ldlm_intent +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x46fd698d ldlm_prep_enqueue_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x47e32e66 ldlm_lock_allow_match_locked +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x47f5e903 RMF_MDS_HSM_REQUEST +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x486bb23f ldlm_resource_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x48b84cdb ptlrpc_abort_inflight +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4a5a2416 RMF_DLM_REQ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4b509212 ptlrpc_start_threads +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4c516e64 lustre_pack_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4cde66ef _debug_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e1706e5 lustre_msg_buf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e22d925 lprocfs_wr_pinger_recov +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e696b96 ptlrpcd_queue_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e7d9718 ldlm_cli_cancel_unused_resource +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4eb03a6f ptlrpcd_destroy_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4f766c3b lustre_swab_generic_32s +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x50443f6a ptlrpc_init_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x50dd74f8 RMF_STRING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x514b3851 lustre_swab_ldlm_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x51e311e9 lustre_swab_ldlm_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x51f33913 ldlm_resource_iterate +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x521b2ef5 ldlm_lock_fail_match_locked +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x52c62150 RMF_RCS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x532de4e4 ptlrpc_replay_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x53411557 RMF_DLM_REP +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x53a4a004 bulk_sec_desc_unpack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x545c9bbf sptlrpc_import_flush_my_ctx +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x555eb7fe RQF_MDS_HSM_STATE_SET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x57672605 lustre_pack_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x58ed5d61 ldlm_lock2desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x595ab175 lustre_swab_obd_quotactl +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x596582bf RMF_GETINFO_VALLEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5b6ba895 lustre_packed_msg_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5bec7151 ldlm_prep_elc_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5c151b0e sptlrpc_cli_ctx_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5c6a3a83 RQF_SEQ_QUERY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ca1b491 lustre_swab_close_data +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5caae213 ptlrpc_next_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5d602f00 ptlrpc_disconnect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5d7769c3 client_import_del_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5d79981f ptlrpc_request_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5dfb4ddc ldlm_namespace_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e0b19b1 RMF_CLUUID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e2b7558 lustre_msghdr_get_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e6f435d RQF_OST_BRW_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e7f87d0 ldlm_cli_update_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e80f899 RQF_LLOG_ORIGIN_HANDLE_READ_HEADER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ec3284d RQF_MDS_HSM_CT_UNREGISTER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ef831ee lustre_msg_get_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5f96ccdd ptlrpc_connection_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5fb9622b ptlrpc_send_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5fc9a455 RMF_CLOSE_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6042bc15 RQF_MDS_REINT_RENAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x604e2505 RMF_SWAP_LAYOUTS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x60bb3eda ptlrpc_buf_need_swab +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x60cd26ad RQF_MDS_REINT_CREATE_SYM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x611275ea ptlrpc_mark_interrupted +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x61646e1b RQF_MDS_SWAP_LAYOUTS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x618ad203 RQF_OST_GET_INFO_LAST_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x62a74be8 req_capsule_shrink +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x62aaae3f RQF_MDS_HSM_REQUEST +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6315dd4c RMF_LLOGD_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x633a6afa client_connect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6352a62d ldlm_get_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x638a818c ldlm_cancel_resource_local +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x653723dc RMF_LOGCOOKIES +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x65a45c4b req_capsule_client_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x661217ba ptlrpc_retain_replayable_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x662eae4b req_capsule_set_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x685eeaba RMF_DLM_GL_DESC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x68f49e5e ptlrpc_expired_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6912990a RQF_OST_QUOTACHECK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x696ba811 lustre_msg_get_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x69c9f04d RQF_MDS_REINT_LINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6a3785c9 RMF_EADATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6a40d8fd ldlm_resource_dump +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6b481f5d ldlm_resource_unlink_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6b503b3d ldlm_lock_match +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6bfea319 ptlrpc_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6d72828c sptlrpc_conf_log_update_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6e688136 ptlrpc_fail_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6efa82b0 RQF_MGS_TARGET_REG +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6efb32a2 ptlrpc_set_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6fb92092 sptlrpc_flavor2name_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x703538e4 lustre_swab_hsm_current_action +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x717c48f9 llog_initiator_connect +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x725a892c RQF_MDS_REINT_OPEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x74260f50 sptlrpc_cli_wrap_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x74840056 lustre_msg_set_status +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x75740271 ptlrpc_pinger_add_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x75a2c40d ldlm_put_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x75e4ca61 RQF_OST_GET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x775f7ebf ldlm_pool_del +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x787472f4 ldlm_lock_allow_match +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x79479eab ptlrpc_reconnect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7a832f10 RMF_CONN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7bbf8001 RMF_MDT_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7c4c6107 RQF_LDLM_CONVERT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7cbce07d ldlm_lock_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7d1ecd7f RQF_LDLM_INTENT_LAYOUT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7d221369 ldlm_namespace_dump +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7dfb3c18 lustre_msg_clear_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7f5a1cc7 lustre_msg_set_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x80a36899 sptlrpc_register_policy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x80ecb4e3 RMF_MDS_HSM_CURRENT_ACTION +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x817d7f1f lustre_msg_add_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x818388ca ldlm_lock_decref_and_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x826d3c4f RQF_LDLM_GL_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x82dd94d0 lustre_pack_reply_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x837efb00 RMF_NAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x84b8db45 client_import_add_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85135801 RMF_DLM_LVB +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85a9e0d8 RMF_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85ecf219 lprocfs_wr_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85eecf67 sptlrpc_get_hash_alg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x863db6eb RMF_HSM_USER_STATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x876c2551 RMF_GETINFO_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x87bf7b3c sptlrpc_get_next_secid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x881f706b ptlrpc_lprocfs_register_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8872f3d2 RMF_SETINFO_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x88d1c53f ptlrpc_set_add_new_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x88fff52d RMF_CAPA2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x89f9edf7 RQF_MDS_REINT_SETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8a1ea476 lustre_swab_hsm_state_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8a257736 RQF_MDS_HSM_STATE_GET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8ac440fa ptlrpc_uuid_to_connection +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8b854254 lustre_swab_mgs_config_res +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8c230d5f sptlrpc_cli_unwrap_bulk_write +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8cb71d4b RQF_MDS_REINT_CREATE_SLAVE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d1ab900 ldlm_lock_dump_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d77ea75 lustre_msg_set_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8da3fca7 lustre_msg_add_version +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8e9abe4d RMF_GENERIC_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8f0aceac RQF_MDS_HSM_ACTION +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8fec0451 lustre_msg_get_limit +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x90b387f0 ldlm_cli_cancel_list +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9113f109 ldlm_cli_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x919c4ce3 RMF_OBD_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x91cf58d3 RQF_MDS_PIN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9228392f lustre_swab_mdt_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x92750ac8 ptlrpc_check_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9277ae5e RQF_MDS_REINT_CREATE_ACL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x936d6864 ptlrpc_req_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x937b1ee0 lustre_swab_mdt_ioepoch +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9553c633 RQF_LDLM_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9564a202 ldlm_lock_addref_try +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x95d08f0c lustre_swab_mgs_target_info +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9660ace0 RMF_FLD_MDFLD +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x967bfd52 RQF_OBD_PING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x975f40e1 ptlrpc_obd_ping +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9798f2f1 RQF_MDS_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x980fcfdc ptlrpc_connection_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9999cf7a dump_ost_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9a258886 RQF_MDS_GETSTATUS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9a3583d7 ldlm_pool_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9a6f2f6d lustre_msg_set_opc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9b88f6ce RMF_NIOBUF_REMOTE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9bb5198b RQF_MDS_CLOSE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9d7ea314 sptlrpc_pack_user_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9e52b047 ptlrpc_free_rq_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9fb088f1 lustre_swab_lov_mds_md +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa0cb7037 ldlm_completion_ast +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa163f4c3 dump_rniobuf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa19e0119 lustre_pack_reply_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa2244636 RQF_MDS_GETATTR_NAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa22c7a4b ptlrpc_resend +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa333a6fb lustre_free_reply_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa3d2a6ee RMF_CAPA1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa47787ef RMF_PTLRPC_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa4a2d089 RQF_OST_PUNCH +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa640d6fd client_disconnect_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa6675c61 sptlrpc_import_flush_all_ctx +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa6c436ca RQF_MDS_WRITEPAGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa76af9c2 ptlrpc_prep_bulk_imp +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7a03774 ldlm_cli_cancel_list_local +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7e360b1 RMF_OBD_IOOBJ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7ec567d RMF_CONNECT_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa95b1569 req_capsule_server_sized_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9704f80 lustre_msg_get_last_committed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9c4658e lustre_swab_lov_user_md_v3 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9e40b00 ldlm_lock_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xacd6a7d7 lustre_swab_ost_last_id +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xae9de7f4 ptlrpc_add_timeout_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf25d4ed ptlrpc_init_rq_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf4e9658 RQF_MDS_SYNC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf50a0d6 RMF_HSM_STATE_SET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb04d24f6 lprocfs_rd_pinger_recov +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb0751fa4 RQF_LLOG_ORIGIN_HANDLE_DESTROY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb1b43d8a dump_rcs +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb291473d lustre_msg_early_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb292ae91 ptlrpc_req_finished +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb35df662 sptlrpc_cli_ctx_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb433a179 ptlrpc_request_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb4596899 ldlm_cli_cancel_unused +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb4a7ecf3 lustre_msg_add_op_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb511ded2 sptlrpc_cli_unwrap_bulk_read +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb512ebc2 sptlrpc_parse_flavor +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb5e134c2 ldlm_extent_shift_kms +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb61cb95a RQF_MDS_GETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb68476df interval_erase +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb6aafd03 RQF_MDS_DONE_WRITING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb6bb75b7 ptlrpc_unpack_req_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb7b38189 RMF_MDT_MD +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb7fa3cc8 RMF_LLOG_LOG_HDR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb84a6d99 ptlrpc_unregister_service +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb84d8712 ldlm_cli_enqueue_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb903634e RQF_OST_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb9b631cf lustre_swab_mgs_config_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb9dbd404 sptlrpc_lprocfs_cliobd_attach +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbaa76097 lustre_msg_string +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbc1370dc lustre_shrink_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbc8457e8 ldlm_lock_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbd08f059 client_obd_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbd83bc44 RQF_OBD_SET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbdbab217 req_capsule_server_sized_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbef769cc RQF_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbf98b86f RQF_MDS_QUOTACHECK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbffd4313 RQF_OST_BRW_WRITE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc06c4670 lustre_msg_get_versions +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc0867da7 RMF_REC_REINT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc0cdf55e RMF_MGS_SEND_PARAM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc27acea5 req_capsule_filled_sizes +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc2b1af57 RQF_MGS_SET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc2be922a RMF_SYMTGT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc3030ebc sec2target_str +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc43319ed ptlrpc_request_committed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc4cac329 ptlrpc_request_alloc_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc559a634 RMF_LAYOUT_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc60a60e1 RQF_OST_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc694be4b RQF_LLOG_ORIGIN_HANDLE_PREV_BLOCK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc763fabc sptlrpc_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc79b9c67 ldlm_pools_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc7ca8257 RQF_MDS_REINT_SETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc7e47564 ptlrpc_interrupted_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc8a4141c req_capsule_has_field +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc8f586a9 ptlrpc_connection_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc96547d6 ldlm_revalidate_lock_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xca5a81ec ptlrpc_pinger_ir_down +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcb14b636 ptlrpc_send_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcb2cc0cf lustre_swab_lquota_lvb +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xccb9a15e sptlrpc_conf_client_adapt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xce86066d lustre_msg_set_slv +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcebf1e66 target_pack_pool_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcec513c9 RQF_MDS_UNPIN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcf737821 _ldlm_lock_debug +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcf9963db lustre_msg_get_op_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcf9aab6a RQF_MDS_DISCONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd023027a __ptlrpc_prep_bulk_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd268fdec ptlrpc_request_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2983334 lustre_swab_swap_layouts +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2e0d4eb lustre_msg_get_opc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd3dae408 ldlm_it2str +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd67dc300 ldlm_completion_ast_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd69e0a27 RQF_MDS_IS_SUBDIR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd6c3ebfb RMF_FIEMAP_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd7910326 lustre_swab_obd_statfs +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd8b91b3e lustre_swab_lov_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd8f06300 RQF_MDS_HSM_PROGRESS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd9146a6c ptlrpc_at_set_req_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd928c069 ptlrpc_connect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd9561861 RQF_LDLM_INTENT_OPEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd98b7edc __ldlm_handle2lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd9c21620 req_capsule_client_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb1fb0a2 RQF_MDS_REINT_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb20dcb6 llog_client_ops +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb74057f lustre_swab_hsm_progress_kernel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb9d5a6a lustre_swab_niobuf_remote +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd0ffb04 sptlrpc_flavor2name +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd30d7bf RMF_ACL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xddc40a85 lustre_msg_get_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xde12d36b RMF_MDS_HSM_ARCHIVE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdee87192 sptlrpc_conf_log_update_begin +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdf701ae7 lustre_swab_fid2path +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe052cb3e ptlrpc_schedule_difficult_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe0cc694c RQF_LLOG_ORIGIN_HANDLE_NEXT_BLOCK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe146b0c7 ptlrpc_init_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe32279e9 ldlm_pool_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe3738053 ptlrpc_set_next_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe40e0a50 lustre_msg_get_transno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe46eb954 ldlm_pool_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe48d1dbd sptlrpc_sec_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe56278f5 ldlm_cli_enqueue +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe57bd972 sptlrpc_current_user_desc_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe643998e RQF_OST_SETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe6f0dc96 RQF_OST_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe7062b5f RMF_U32 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe7512278 ptlrpcd_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xeb2e1a19 ldlm_lock_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xebb64e68 req_layout_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xebd5bc73 ptlrpc_pinger_del_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xec59c8dd ptlrpcd_add_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xec939a00 RQF_MDS_REINT_UNLINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xed1c10d6 ptlrpc_connection_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xed79fc20 ptlrpcd_alloc_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xedcb740d sptlrpc_name2flavor_base +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xef1aeca9 RMF_FLD_OPC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xeff9ae83 ldlm_namespace_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf1300275 _sptlrpc_enlarge_msg_inplace +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf1730e8c unlock_res_and_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf1e5f343 ptlrpc_activate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf23ae3ae ldlm_resource_putref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf23d6431 target_send_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf277c125 RQF_OST_GET_INFO_FIEMAP +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf3bd54f5 client_import_find_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf3d44370 RQF_OST_DESTROY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf400ea5e __ptlrpc_free_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf431582e ldlm_replay_locks +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf43540b9 lustre_swab_mgs_nidtbl_entry +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf45085e1 sptlrpc_conf_log_stop +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf4911840 ptlrpc_request_free +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf55c033b RMF_MGS_CONFIG_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf596e9ae sptlrpc_conf_log_start +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf607fc23 sptlrpc_flavor2name_base +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf617ab8a lustre_msg_get_conn_cnt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf697b756 ldlm_dump_all_namespaces +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf721d924 req_capsule_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf7408f84 lustre_swab_hsm_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf7ba40c0 RMF_MDS_HSM_PROGRESS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf870fed9 RQF_LDLM_GL_DESC_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf9051bd6 RQF_QC_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf973aa93 lustre_swab_lov_user_md_v1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf9d8c0b5 req_capsule_client_sized_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf9f72dfc RMF_TGTUUID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfa48e36e sptlrpc_enc_pool_put_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfa51688d interval_insert +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfb3ebc63 sptlrpc_gc_del_sec +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfbdf9e9a ldlm_flock_completion_ast +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfbf89c39 req_capsule_server_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfc1cbd9b ptlrpc_recover_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfc2fa83f ptlrpc_del_timeout_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfd148bf8 RMF_LDLM_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xffc807e8 sptlrpc_unpack_user_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xffe29c3f RQF_LDLM_ENQUEUE +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xf7fe3e79 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x7d2920cc most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x02949702 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x02afec7d rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0678577b rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0988ffc7 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2451a6d6 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x27459034 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2ffb55de rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3203e2d8 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x333506f0 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3afc948c free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3f3bf26a rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4394e67a rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x50b9aed8 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5637d694 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x57aa9da1 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x585ebe4f rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5b9c2319 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5d6ace78 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5e602f1e alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5f86b02b rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6506b914 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6508916d rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6574e078 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6b2914c8 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6f673029 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x78493644 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x82e22b42 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x85968260 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x89a52d9a rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8dfdd146 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8f77e91c rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x93c4c66e rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9866ea5e rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9f12e53b rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa041fadf rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb82935d6 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbc8adf44 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc0a3a2b0 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc4cfb5db rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xceabcf66 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd221a629 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd6146a11 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd8cbcfd0 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xec98858f rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf08277b4 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf0c47aba rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf17e8a6e rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf3074a92 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf6d57a6c rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xff080a32 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x035dd4be Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x043bb9b1 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x127f5ae0 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x16fc69fe ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x20152519 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x203eaa45 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x222b6f21 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2a63e356 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2ed14c3e ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x308bf6c1 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3249afcc ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x44a0e154 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x45474195 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x45bfb19f ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x45ef7e25 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4c2b56d1 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5740c71b DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5a23e2ba ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5c3e651d IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6d328ee9 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6d61707d ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6ddcde63 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x72d1919c DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x76a09305 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x79e9574b ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7d2187ac ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x80446d82 ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x86742bc5 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8fc4e271 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x929f3adf notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x92acb679 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9913efb9 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9befb47e ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9c2248dc ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa16bedde ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaafc10f1 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xae02a0a7 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xae0e3cf1 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xafcf803a ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb5b597e5 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbada3d1b ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbb0e66da ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbe56b42e ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc8f2b5e5 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb7c3973 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd0d38888 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd5483e2f SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xee93b3b4 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf0dda734 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf844be7c ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf90070ac ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf950be3c ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfd27b8e8 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x008c1543 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x03ad76b5 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x072d1c72 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x08fdc495 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0e6cec01 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x15c1b097 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x19d89ef9 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1ac73041 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1d56093b iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x21ab227b iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x22200a90 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x35bc117b iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x400ba2b0 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4019ee9f iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4b714e0c iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x59bc66e1 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5cd432ad iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x626e2573 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65eb6cef iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6ac134e2 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x73879fb5 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x768240cb iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7da95efa iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8b73a8d0 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x90ae4519 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xae1298a4 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaf0336ed iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb217f657 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb3823c9e iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb3b8e914 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xba12424c iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbeccd809 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xca4f5e80 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xceafcb22 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe15764ec iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe24c5c41 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe55e4de1 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe996752e iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xebba0e59 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xec362114 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xed0ecafb iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf617eaec iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfabb5714 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/target_core_mod 0x0190c217 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x01e7cbbb target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0419eb2d transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x04eda64d core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x056ccb5b target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x05d55881 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x0689b26a passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x08cc3f97 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x08ddd0eb transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x0dcc42f5 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x1096bf56 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x17717435 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x17dcadd5 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x1804d596 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x1e0ee7bf target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x219050c9 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x23399bf4 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x23807f79 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x27d0baa2 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x2ba34cf4 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x2e3f07e0 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x30277d3b target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x3ded0dc4 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x40f9d5a1 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x4e87688b sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x539115e1 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x557a7882 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x5893ef38 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x591f81aa target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x5b3404cf transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x5c150552 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x5feb46a6 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x60c61a42 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x68d46c9e target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x725ca4c8 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x743d78a3 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x79a57b73 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x7f5ba8f0 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x7f5c7f83 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x7f74184d sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x863bd5a7 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x8785048e core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x87bef92c target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9269daa3 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x96690db6 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x9f45ccd3 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xabb5858c target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xaca6fedb core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xad31a417 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xae042b07 target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0xae292f43 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xaf6faf5f sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xb3bb675e spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xbb22deb6 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xbc4eb4fa target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xc509028e transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xc85bedbc target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0xcd63f21b core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xd56b4461 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xd610fbf2 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xd62e05c8 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xdbae4468 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xde053959 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe212da33 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xe72b075d transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf5e0d95a target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0xfd1fcdbe transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfdcc8b85 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xfefeb206 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x1887763e acpi_thermal_rel_misc_device_add +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x5007fc2c acpi_parse_art +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0x86c998e6 acpi_thermal_rel_misc_device_remove +EXPORT_SYMBOL drivers/thermal/int340x_thermal/acpi_thermal_rel 0xdf707fab acpi_parse_trt +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x750d3c4f usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x707e5a89 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x07742f7e sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x02b34491 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x07490024 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0ad020a1 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3ccfebf3 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x688051e0 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x87b179a5 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x954fd504 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9bd0782e usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb49fab45 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xce6bfff5 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdd875e58 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfd5f7ae7 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x03d08461 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x2ccc0941 usb_serial_suspend +EXPORT_SYMBOL drivers/vhost/vhost 0x149ecd01 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0xb1375f7b vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x59f824d9 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x937e412c vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user +EXPORT_SYMBOL drivers/video/backlight/lcd 0x0ed923b9 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x998d22d6 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xd3dd9352 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xe5e997cc 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 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5bfb57d7 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x679616e4 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x73ea49c4 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x82241cad svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8f06894c svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb138d6af svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xeb4af326 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x4b0329c7 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xf364c335 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x5476e4e6 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 0x6404e03d 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 0x824dcc15 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x4417cd33 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x5b86a8de g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xb1f0521b matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x194ddde6 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x25706a5d DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x6c7101a4 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x8d8ee0b8 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xdfca6507 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x11cdde60 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x169a6296 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x5942dddf matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xe9793faa matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xef645db8 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x5d3f2b7a matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xe093fa8a matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x02f551c1 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x44ab6d83 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x44eb8a81 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x59fcfffc matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xda3b9a69 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xc08b7803 mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x40d5c93f w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x5f93a2af w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x92db5f8d w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xb26ed7cd w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x18ad2973 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xb79f9800 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x18961c5d w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x9ea070b4 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x344817e1 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xba32f97b w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xc3c3e5a8 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xcebd1407 w1_remove_master_device +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x5efa3140 iTCO_vendor_pre_keepalive +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa78bd894 iTCO_vendor_pre_set_heartbeat +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xb44b081d iTCO_vendor_pre_start +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xf5002331 iTCO_vendor_pre_stop +EXPORT_SYMBOL fs/configfs/configfs 0x06c8f3f8 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x0ae36da7 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x104623d7 config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0x1f479812 configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x20e5f64f configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0x512be520 config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0x52a0c193 configfs_remove_default_groups +EXPORT_SYMBOL fs/configfs/configfs 0x8d631aa6 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x99156954 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x9d81bd0b configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0xc078bf3d configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0xc5daa7b0 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xcb458139 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xd6c75551 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0xebe4bca2 configfs_depend_item_unlocked +EXPORT_SYMBOL fs/configfs/configfs 0xed17b641 configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xf372b421 config_item_put +EXPORT_SYMBOL fs/exofs/libore 0x11530560 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x4ae303ab ore_write +EXPORT_SYMBOL fs/exofs/libore 0x53a0daad ore_read +EXPORT_SYMBOL fs/exofs/libore 0x59fd8a52 ore_create +EXPORT_SYMBOL fs/exofs/libore 0x5b0505fa ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xa8c5f6c3 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0xb21ee040 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0xe1c94fac ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0xe538b5cb ore_remove +EXPORT_SYMBOL fs/exofs/libore 0xebc941a1 ore_put_io_state +EXPORT_SYMBOL fs/fscache/fscache 0x0588bbd9 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x078c46ab fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x0c89e8ab __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x0dd2e2ac __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x19531a21 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x1e50a22a fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x250ab406 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x2f33754c __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x341f0903 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x4a15565f fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x53b83b8e __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x5458d3d4 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x5c6e2d51 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x5e9a5d9c fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x5edb9709 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x6149ec53 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x68b8763f __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x68dc03e2 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x6d80e3cd fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x74252349 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7ca19ff9 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x9bdf323e fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0xa69f7c68 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xa833e35d fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xc46e417f __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xc5649e1e __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xc7e8fe12 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xca4526f3 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xd0d11131 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xd0eabb4d __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xd108d759 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xd4e267de __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xd6f2f8ff __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xd72b1513 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xdb06cb75 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xdea7d949 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xe6435cbd fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xe70b1dd8 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xe9f8d746 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xfa50e51a fscache_check_aux +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x241db78f qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x2512ddff qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x360c5b3a qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x68ac907e qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x7d0065ef qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xd2646675 qtree_get_next_id +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t +EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative +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 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 0xdda8aa7b lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del +EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0xf527f264 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of +EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find +EXPORT_SYMBOL lib/lz4/lz4_compress 0xcbc5d521 lz4_compress +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x26c3aa22 lz4hc_compress +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul +EXPORT_SYMBOL net/6lowpan/6lowpan 0x5366dbf2 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x6bab59da lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x970d45d4 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xbb279178 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xd329ea5d lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xd72b9ab2 lowpan_nhc_del +EXPORT_SYMBOL net/802/p8022 0x3bcfc8d2 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xda0e8bef register_8022_client +EXPORT_SYMBOL net/802/p8023 0x58eeb9db destroy_8023_client +EXPORT_SYMBOL net/802/p8023 0xd0400a18 make_8023_client +EXPORT_SYMBOL net/802/psnap 0xebd0d2a4 register_snap_client +EXPORT_SYMBOL net/802/psnap 0xfd90242c unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x06937d40 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x07e7210a p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x14343817 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x1539c129 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x1d67e9bd p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3e03357a p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x408b11ad p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x45027ac8 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x53883986 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x616e701c p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x6488b897 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x67e55321 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x6cb375ea p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x6d89a3fe v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x70f16c6e p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x741614ea p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x82a517db p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x82ebfc22 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x8cd8a58f p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x93e436f6 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x93e671cf p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xa8b850c0 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xaa9245ae p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0xab536346 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xad4252d7 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xb43d585d p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xb78c668c p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xbf16b813 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc5ea22b0 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xc92670fd p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xcb138b4c p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xdd74f2a9 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xde341829 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xe11ca1bb p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe3dc0270 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xe57ef2b0 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xedff1fd1 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xf2693abe p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xf901c480 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/9p/9pnet 0xfe215100 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xfe8aa263 p9_client_create +EXPORT_SYMBOL net/appletalk/appletalk 0x90792673 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x9789a68a atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xbaf4e8dd atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xc05929d6 alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x00a05be1 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x1333f5f9 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x1840c1a4 atm_charge +EXPORT_SYMBOL net/atm/atm 0x2361fe39 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x4c75f3ce atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x59890967 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x6580d177 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x72c14f98 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x75436417 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x87cdca92 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x8ddbfc86 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x942c1e93 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 0xc9c158b9 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xde0209f3 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x07021de3 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x1455e5ea ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x19b15b01 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x1fce1457 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x69652b8f ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x756fc86a ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd00ae135 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xddfa7766 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xe9aaf0a4 ax25_display_timer +EXPORT_SYMBOL net/bluetooth/bluetooth 0x00999493 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x019ba193 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x01fb933d hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x03aacb9d hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0db77a94 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0e7568c1 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x13d717e4 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x17ffa21f hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1afa6651 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1eb1eac5 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2328f503 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x27122ccc bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2d59f4dc bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3b0795fa hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3bb7892f bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x42ee0f17 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x55c5622a bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x59f9da4b bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5b78c3bb hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6e2be26b bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8356ae4c hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8adcfd2e hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91841a22 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x956cbc86 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa51ce7a6 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa66f1e3b hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa9fe174e bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb04672e5 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb1453642 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc8fe1a3d hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcf87a19d hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd1f5d8e8 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdca09764 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe0bd4af0 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe19a7df5 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe35a44fd hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe50a8c72 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf2edf9c5 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf34b41bb hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf70354e8 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfa8657c4 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfe54784f __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xff625d21 hci_register_dev +EXPORT_SYMBOL net/bridge/bridge 0x0bcd16ec br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3ca2b4a4 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5f9cc636 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7b6d688a ebt_unregister_table +EXPORT_SYMBOL net/caif/caif 0x105481b6 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x14e73542 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x2a46c70d caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x68363907 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x9cacc93a get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/can/can 0x6b891e0a can_ioctl +EXPORT_SYMBOL net/can/can 0x8444bc51 can_rx_register +EXPORT_SYMBOL net/can/can 0x8a0100f2 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x9830682d can_proto_unregister +EXPORT_SYMBOL net/can/can 0xa89b18b9 can_send +EXPORT_SYMBOL net/can/can 0xe0108b29 can_proto_register +EXPORT_SYMBOL net/ceph/libceph 0x02e5886d ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x04cea6e2 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0d610dcb ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x0e26f53c ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x0e824a00 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x12ac4748 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x1455b804 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x14646105 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x1a54381c ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x1ab387d9 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x1c7adea7 ceph_file_layout_from_legacy +EXPORT_SYMBOL net/ceph/libceph 0x1d93b02e ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x2165c1cc ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x2455c52e ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x2db717f3 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x34fabfb3 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3e36e071 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x434d8156 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x43f2c527 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x46851128 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x4d12b7da ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x5429144e osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x556a783c osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x5574dd7a ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x5707b927 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5e3c39d4 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x5fc29679 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x60ec5ca1 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x61fc9f1b ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x62f4b5f6 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x648d0d76 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x6a7ba731 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6d8f954d ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x6f689ff3 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x72bd4c69 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x731c723b ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x76a73e2c ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x799e0e23 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x79d32b60 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x7ab8c993 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x7c44abb4 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x81f92471 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x85d03a9e ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0x872268ff ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0x8bc0b838 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x8d37c25a ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x8f96e34f ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x8fbe8b45 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x90430e04 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x9044644c osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x93994c4e ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x97dc28b8 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x987955da ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9a674aa0 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x9d46f43d ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x9d59b8f3 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x9e4c9af6 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xa2b23460 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xaa90fe5b osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xaeacef9e ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xaebdc1e0 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb11ab962 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb7c9fd48 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xb8ce57e0 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xbaaae3c1 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xbebd2772 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xbf15e03c ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0xc1bc02f6 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0xc271892c ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc76f9fd2 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xc8e1b824 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xca13c68f ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcdd15748 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xce370403 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xcfefdc7d ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd4f9f5be osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd635849b ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xdd8e7550 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xe27a6d06 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0xe49f59c3 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xe885a32f ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xebc8d181 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0xedde169d ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xee1ac17c ceph_file_layout_to_legacy +EXPORT_SYMBOL net/ceph/libceph 0xf07c232f ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xf0e2a0f0 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xf43bcfca ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf52d2548 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xfa9c9e7e ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xfbb2ab01 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0xfc2b541b osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xff221c46 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xff9a175b ceph_oloc_copy +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x0f6cc736 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xfaeb447b dccp_syn_ack_timeout +EXPORT_SYMBOL net/ieee802154/ieee802154 0x6ae158dd wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x809c1525 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb3ce4c05 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb500e8ee wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xbe38eecc wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf4452df5 wpan_phy_find +EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x34c81dfe gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x6efa7d58 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xcdc3a763 fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xdc9f8fc4 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x6e33f6b5 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x052ba7fc ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x1d968171 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x8825347e ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb0417028 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x048b015c arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x3cf2ed20 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7099a43d arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x2b0bab85 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x935d4985 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd2d1231a ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x765709f7 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xff14ea94 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xe0aa3534 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/fou6 0x00d14340 gue6_build_header +EXPORT_SYMBOL net/ipv6/fou6 0xa3a469b7 fou6_build_header +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0a96fe19 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1e9af619 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x251e7fca ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x477faebc ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4f658299 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x69cc0c9b ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7611b430 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xaad314c4 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xff01b08b ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x295369ad ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xa923d033 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb74e3501 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x45ebc9d6 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xd4266f85 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x8488e5fe xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x932b3a3b xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x081837cd ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x15078639 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x4b1dd544 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x60417e01 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x8b17144c ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x9d91e8c1 ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe5bfecd8 ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xfe9f5c10 ircomm_open +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x0963c24b irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x09939c11 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x0d64a5b2 irlap_close +EXPORT_SYMBOL net/irda/irda 0x10882e49 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0x1676814a irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x1880c339 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x1d78755b iriap_open +EXPORT_SYMBOL net/irda/irda 0x23bbc2ce irias_find_object +EXPORT_SYMBOL net/irda/irda 0x2b432980 hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x385847aa irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x3fea25c8 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x428b1e43 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46b00fdf irias_insert_object +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x477e0e54 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x4e5e5f06 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0x5137d9ab irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0x595e5764 irlap_open +EXPORT_SYMBOL net/irda/irda 0x61083c4d irda_notify_init +EXPORT_SYMBOL net/irda/irda 0x63e6c80c irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x70a3f20f hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0x71049757 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x78345bf2 irttp_dup +EXPORT_SYMBOL net/irda/irda 0x79275541 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7d98d6c1 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x98a8b3b4 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0x9ccbdfca hashbin_insert +EXPORT_SYMBOL net/irda/irda 0xac094a58 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0xac3dc858 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xaeeff2b5 hashbin_find +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xc566a054 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0xcf36f831 iriap_close +EXPORT_SYMBOL net/irda/irda 0xd43f0258 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xdb40df6b async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0xdc0196c2 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe1ba6308 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xe329462a hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0xe7695a8a irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0xeb78333e hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0xec242b93 hashbin_new +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xf3a8ad62 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0xfa7e1796 async_unwrap_char +EXPORT_SYMBOL net/kcm/kcm 0x507620db kcm_proc_unregister +EXPORT_SYMBOL net/kcm/kcm 0xa6ad9069 kcm_proc_register +EXPORT_SYMBOL net/l2tp/l2tp_core 0x97d2a8ac l2tp_recv_common +EXPORT_SYMBOL net/lapb/lapb 0x22268ff0 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x244e8ce3 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x563a8c52 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x71732780 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x743189d3 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x8013414c lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x916af54a lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xe035818a lapb_setparms +EXPORT_SYMBOL net/llc/llc 0x057604b4 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x3ef1da82 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x4caae331 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x6fcf3cfc llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xad1c5b7c llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xe3f79bd7 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xe41f3a73 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/mac80211/mac80211 0x055efba0 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x0a421f6a ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x0bb0fb9e ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x0d69d113 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x10fd30ce ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x1529bc14 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x16218e34 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x17070bc0 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x1936b6f5 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x1eb6c8aa ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x1edc47a9 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x24441f0c ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x2587cd11 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x25dc5b21 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x302554f6 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x32ae210d ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x36f18004 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x39dcae6b ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x3a53f0d4 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x411712bb ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x468cd49a rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x558c52a3 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x5784494e ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x57da0f09 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x58bdd456 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x5a509e5c ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x5bb4df40 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x5bfa6ceb ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x6171948c ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x70d5435a ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x7155314d ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x71d859de ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x72d48c77 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x792ccd78 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7ba2e876 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x7c3f15c0 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x8108d8eb ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x8b9f56b3 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x8bb85a8e ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x8f92eee7 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x964b69ea ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x96ef7f76 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x98d2d709 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x99f92c6d ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xa0216b91 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xa8792a86 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xa8ebf5cc ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0xac69ae9a ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xac92a143 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0xade01faf ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xb7ab238f ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xb7d022a6 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xb937c6ec ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xbe5527fa ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xbeea917d ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xbf6e1301 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xc050383b __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xc4317136 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xc737bd65 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0xc7ac9ec2 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xc8af763a ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xcae98cd7 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xcec1d11d ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xd08f5a21 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xd6e8966f ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd7f55657 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xdb5a0796 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xdd6d2e39 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xde13696b ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xdf3cb69a ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xdf4a9f1b ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0xdf8cd01e ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xe0bc02da ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe0f8b76f ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xe2d57973 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xe5a49eab ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xe733db28 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xe759d272 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0xe79012c7 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xea9f903d ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xf3a8a2fa ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xf4af3ba8 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xf6b5bdb2 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xf85fc257 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xfbf6d0e9 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xfe62c86d ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xfeaba008 ieee80211_csa_finish +EXPORT_SYMBOL net/mac802154/mac802154 0x4c481cc8 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x748318e4 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x76da3a56 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x82afcada ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x93d4d00b ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xbf943e4a ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xf6ebf1f9 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xf6f16c1a ieee802154_rx_irqsafe +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x14cea05f ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4043cbce ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5e91a4ef ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6b3f6ccb ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x70b8971f register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x79d03109 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7e7c1dd8 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa14392d3 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa7e8c12b ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xad73815b ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb3d704a0 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc1167973 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcdd5933d ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdcb23737 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe6e8b28d unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xc31de4bb nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xc5e02236 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xd6bdac4c __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x1d3117a2 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x2050bd86 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x2e267447 nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0x9b431006 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0xb0a35e7a nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xcf7ac8b5 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x1e92fef9 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x2bcf26db xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x2e3953c2 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x5fc7247f xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x6efd3822 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x6f3f86e7 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xb4c8d0fe xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xd84aece9 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xe66a28a4 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xf7e75a03 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x0052f17e nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x0dee7fce nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x13702df4 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x2a13f886 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x340578cc nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x45acb7ba nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x4f587285 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x5bdf461c nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x5df4db86 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x66752e1e nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x71d21650 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x76116967 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x80e92317 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xa895295a nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xb436d8d5 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xb71485ef nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xc2e6c82b nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xc8a5b0b0 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xf1f1e9a0 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xf7b6b9f9 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0xf9496d47 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/nci/nci 0x0a5f2bb1 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x0c34414a nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x0ced559e nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x0d79d246 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x12aa3421 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x1ea16704 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x23be5d09 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x2c450713 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x322ac9c0 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x399534c1 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x417b37f8 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x672e692e nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x6e3747cd nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x710e5357 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x7cd2ef6b nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x83f2087f nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x8423669e nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x885c455e nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x95697dfd nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x9e1744ea nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xa6134c40 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xa7fad636 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xaf21f7b4 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xb41b2f71 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xb6e815e7 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xb900719a nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc0438d39 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xc0a71499 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xef3e42b8 nci_core_reset +EXPORT_SYMBOL net/nfc/nfc 0x0d5fc46c nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x22b1cf57 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x247ffcca nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x254e3beb nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x41929eeb nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x50005243 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x558e1b00 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x59636968 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x5cdaff91 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x5f3d546e nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x66c7e79e nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x6b83132c nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x6d4a3b9d nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x72bfa399 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x74e72f7c nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x82b62097 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xabaa3ada nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xcee4ebfb nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xd05b9758 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xd73937a8 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xda5c1036 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xee66ed73 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xf19fc483 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xfdc52a75 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0xfddb30be nfc_add_se +EXPORT_SYMBOL net/nfc/nfc_digital 0x7323baae nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x9d93ed93 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x9f6c1836 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xdfd00f58 nfc_digital_allocate_device +EXPORT_SYMBOL net/phonet/phonet 0x0e0d9705 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x15762a1e phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x3f074cb5 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x6ec20031 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x93aa6dd9 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x98d48a93 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xc18cc514 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xd44475cb phonet_proto_unregister +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x018fe43c rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x08192146 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1e334bc8 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1ef62488 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x33b11999 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5eb37895 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8a1ef03f rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8bcd55d4 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8f2e4ab5 rxrpc_kernel_data_consumed +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x94595407 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x98a85c3c rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc7b8a2ba key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd78771d6 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd7e3f09a rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe574649c rxrpc_kernel_abort_call +EXPORT_SYMBOL net/sctp/sctp 0x65026cde sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xafc9d3ba gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xecda5cd2 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf1bd3b32 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x6a21894b svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x8daf0375 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xb4443961 xdr_restrict_buflen +EXPORT_SYMBOL net/wimax/wimax 0x355eea18 wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0x63b051d5 wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x007dc31a __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x027467aa cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x04ef3875 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x06f8b305 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0c855b25 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x13e8a947 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x156b0c64 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x16bd6dc7 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x177aa3a6 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1b3d9c25 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x1c00f8ea ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x22f8d883 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x262a213f cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x297a67f4 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x2c143ed5 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x335b7a3a cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x347e5e57 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x356253c1 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x35d91bab regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x3da2d246 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x4041c63f cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x44738859 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x44d66221 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x512c6f14 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x5971caf9 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5fdf479a cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x60ae3775 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x62792f9d __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x631ee45e cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x63667868 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x64e11793 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x64e482db cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6c040132 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x6d376fec cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x7043ea5b cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x713a62c0 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x796cca4b cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x7aa724f9 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x7e4538b4 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x82d3d4b7 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x843791f2 ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x84efc34b cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x892d90db cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x899379ef ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x8c48ea15 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x8ee3434c cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x900e50f3 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x9552b56e cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x95d378ee cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x97e4c53c cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x9d01b5a8 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x9daa69cc ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x9e9cfbd3 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x9ed85c6e cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa07d265c cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xa1f5462f cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xa4b03786 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0xab6a1c73 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xb18fca9c cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xb32e8710 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xb4e34ee2 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xb54aed0a wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xb7413819 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xbe3fd851 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xc32954df wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xc4b7b1e6 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xc5d505e0 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xc621ff8d cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc9442f5d ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0xca75044e cfg80211_connect_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xcb455ed1 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xcb88870b wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0xcb9eeced cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xcef8ca10 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xd32d3e9b cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xd9055a20 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xdaf44f69 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdba5c975 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xdc3469b8 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/cfg80211 0xe0ceffb6 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xe13e2d94 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xe3685d0e ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xe4edd33e cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe8663ae6 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0xe9b050d2 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xeebe3699 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xefced766 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xf07900eb wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xf65ca2dc __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xfc77a1d2 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xffba9a2e cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xffd9330e cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/lib80211 0x35338d62 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x47fab1db lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x5d7a8480 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x83693b23 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x96144668 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xd6bcead8 lib80211_unregister_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0xf4d4d3e6 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x82e107e0 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 0x4ba9e8bf snd_seq_create_kernel_client +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 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xd7649d84 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 0xfd8eada4 snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0xfe5da184 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xe6eb6858 snd_seq_device_new +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 0xf0a1fdb3 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x205395a0 snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x614705ff snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7746bb9b snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x79794472 snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x991c0f60 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xef8fa3d2 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf3f0324e snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf6fdda44 snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xd86482c7 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x01d05c2b snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x08132ca0 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x1514412a _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x160e5231 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x1690319d snd_ctl_unregister_ioctl +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 0x1da00593 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x211940a8 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x256d3750 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x2bcb33fe snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3a1a5976 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x43cb8663 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x465dff6d snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x494bda2f snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x498d91b6 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4cd412db snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x516eaa2c snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x5d200cf5 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x606d1098 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x658fc6dd snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x6cc774e7 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x6da9ac93 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x74087264 snd_card_new +EXPORT_SYMBOL sound/core/snd 0x76d06b11 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x79205aa2 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x7d340e07 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x7f64576c snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x883207bd snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x8d426322 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x8f9261e6 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x99759c41 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xc2a1232c snd_device_free +EXPORT_SYMBOL sound/core/snd 0xc5644e74 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xc9ede312 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xcaeba51a snd_register_device +EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL sound/core/snd 0xd09b41c0 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xd1badc23 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xd254d513 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xd2ce1be8 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xd908ccb4 snd_device_new +EXPORT_SYMBOL sound/core/snd 0xddcf91c8 release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xe1971478 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xe21f21a5 snd_device_register +EXPORT_SYMBOL sound/core/snd 0xe2a9c7a7 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0xeecbf420 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xef59f422 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xfc521dc4 snd_cards +EXPORT_SYMBOL sound/core/snd 0xfd96a83e snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd-hwdep 0xaea5f521 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 0x06ef3ba9 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x13424b7b snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1e19894a snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x1e458025 snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0x20424e2a snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0x23d8c3cd snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x2422b0ff snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x2b1e2642 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x37616cc9 snd_pcm_release_substream +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 0x3b91f3af snd_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x3e765ba6 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x4a4b4910 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x4d9b6d35 snd_pcm_format_size +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 0x5168e03a snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x56b9aaa1 snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0x5cebbff5 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x5fcb8bb7 _snd_pcm_lib_alloc_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 0x69d028b1 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x73a08fee snd_pcm_sgbuf_ops_page +EXPORT_SYMBOL sound/core/snd-pcm 0x75304711 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0x7823ac7c snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x7a3be4e5 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x7b2f9ae4 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x7f4afc49 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x7f4d8005 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x839e6027 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x8bf67070 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x8c502b2a snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x93b93bb8 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x9531bd41 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x9ae67435 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x9c707083 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x9dc968f9 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa92f90f2 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xacab64e4 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xad5deee5 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0xade88e76 snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xae36d5a8 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xaea4d78f snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xb56f6ac5 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbbb554c6 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0xc07a3cd4 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xc0da306e snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0xcbc704ae snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0xd15d03e7 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xd9d29795 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xdc2b0203 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0xe4c2d413 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe63e93c6 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xeb76912e snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0xf0b31f00 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xf8bbc120 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x271fd66e snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3eb7d8cd snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x50e54e77 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6507ea63 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6f0104c8 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7075290e snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x77e29b2b snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa8b3597e __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa9450a15 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xae97b5fb __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbe0e34bc snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcbdfda3c snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcf3d45f0 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe17c35b5 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xecadd7d1 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0xefee8725 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf58730d7 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf8eff45c snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf9d86994 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-timer 0x0e3dcba2 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x3853da35 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x3dadd60a snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x401860be snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x44e266f5 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x609cfd33 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x7fb62937 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xb189712f snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xbb1fb64f snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xbb9ceb63 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xc1dde64e snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xcde12f0a snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xfb9f3513 snd_timer_notify +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x02280de6 snd_mpu401_uart_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/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x2568d0a0 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3bbbc34e snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9069da4e snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa2e2fbf1 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xae9b6350 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc7b49682 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf0013245 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf395d920 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf558bc1f snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x7b4727d6 snd_opl4_create +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x9a38da5f snd_opl4_write +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x9f7ed61e snd_opl4_write_memory +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0xdd666e83 snd_opl4_read +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0xeabc0387 snd_opl4_read_memory +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x36f7148f snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3a60eba7 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8d44237c snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9f7eaa57 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb13418f8 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd7b4b3f0 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xdbf88ed2 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe4bf0bfc snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfd8dcb4b snd_vx_suspend +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x031263bc amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x06410618 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x182dc2ce cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2190ed28 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x26148fdc amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2ddf8a63 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x39a01ddc amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3e02688d amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x42e871c4 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x48fff327 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4b065765 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5eca5ba4 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x600cad0b amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x79190282 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x87b8c279 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8aeb3eed iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9401ab30 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9659a7b4 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9ec5da7f amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa1888227 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa1f0808f snd_fw_schedule_registration +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaddf3404 snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb1130319 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb5469549 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb58621f9 snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc38667bb amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc6ce3966 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc6d99d9e amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe3f94411 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xed2617ca fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf06b8d27 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf73f70d3 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfabf644f amdtp_stream_destroy +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x3bf2bd9c snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xffd1d7ee snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2b9ac2d9 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x52d61ff2 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5b36d538 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb973d0bb snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbc0301bf snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc1b35def snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc5418ee2 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xfe7906d4 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x185eb16d snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x47c5a4a6 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x6c4f3bc7 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xa624ad46 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xd0025325 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xd55d5c3b snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x53b5e2e3 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x73a55cf4 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x7f0ec030 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xdb123d1c snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xb851c5f1 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xede36a5c snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x4b1cfb45 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x8646d24b snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xa76a366a snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xb4d76bf5 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe552aa3a snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xfd7d1a0e snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-i2c 0x13e42474 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x462a655e snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x50dfd7b8 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xb7186a98 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xe5861ac6 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xe8e4f12b snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-tea6330t 0x53dc2f67 snd_tea6330t_detect +EXPORT_SYMBOL sound/i2c/snd-tea6330t 0xcf541687 snd_tea6330t_update_mixer +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x10fa9c22 snd_es1688_pcm +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x29833494 snd_es1688_reset +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x553b11ce snd_es1688_create +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x893ccde4 snd_es1688_mixer +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x93a5771c snd_es1688_mixer_write +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x04e06a5e snd_gf1_rawmidi_new +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x06c7d3e0 snd_gf1_pcm_new +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x187840c1 snd_gf1_peek +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1c1ce117 snd_gus_interrupt +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x20fe4787 snd_gus_use_inc +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x2428c592 snd_gf1_mem_free +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x2b851c6f snd_gus_initialize +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x3fc66589 snd_gf1_stop_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x46db8d67 snd_gf1_lvol_to_gvol_raw +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x5e5edc24 snd_gf1_i_look16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x600755cf snd_gus_dram_read +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x61affec5 snd_gf1_mem_xfree +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x64eaa887 snd_gf1_mem_alloc +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x6fe5bd09 snd_gf1_mem_lock +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x7126a6c2 snd_gf1_look8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x8a43cef6 snd_gf1_i_look8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x93af21fa snd_gf1_delay +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x96ccd7e4 snd_gf1_write8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x9941fcd2 snd_gf1_dram_addr +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x9c4abc9d snd_gf1_alloc_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xa85cbdc4 snd_gf1_new_mixer +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xad140d85 snd_gf1_free_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xb97f52f3 snd_gf1_i_write8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xbe94596e snd_gus_dram_write +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xbf40c3cb snd_gus_create +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xc43a5527 snd_gf1_atten_table +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xc7f92a0c snd_gf1_write_addr +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xcd18e401 snd_gf1_look16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xd795811f snd_gus_use_dec +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xe4713c4c snd_gf1_poke +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xe8d2e884 snd_gf1_translate_freq +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xecc13431 snd_gf1_write16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xf6751685 snd_gf1_ctrl_stop +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x0a0af414 snd_msndmix_force_recsrc +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x0e096be3 snd_msnd_init_queue +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x37c4cc0e snd_msnd_send_dsp_cmd +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x57c44c22 snd_msnd_DAPQ +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x703b53ce snd_msnd_pcm +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x75026b24 snd_msndmidi_input_read +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x76dcff97 snd_msnd_disable_irq +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x7a15f4bb snd_msnd_dsp_halt +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x7d6b7d26 snd_msndmix_new +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xad9e9334 snd_msnd_upload_host +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xb8342db7 snd_msnd_enable_irq +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xcb824c50 snd_msnd_send_word +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xd71613ca snd_msndmix_setup +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xe2f120b0 snd_msnd_DARQ +EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0xdd869a45 snd_aci_cmd +EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0xe0682deb snd_aci_get_aci +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x397eb57a snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x3a4726ae snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x4f473c17 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x6f6c396b snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x75b765f6 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x81a7c619 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8d665315 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x90c918a5 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc2d2b0a2 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd58c2709 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb16-csp 0x4ca6bf16 snd_sb_csp_new +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x7a0e1ef0 snd_sb16dsp_get_pcm_ops +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xa19dfe26 snd_sb16dsp_pcm +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xd9872978 snd_sb16dsp_configure +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xe0b3f690 snd_sb16dsp_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x2e4961a2 snd_sb8dsp_pcm +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x518a2c15 snd_sb8dsp_midi_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x688220f9 snd_sb8dsp_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0xb8adf1e9 snd_sb8dsp_midi +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x159e1321 snd_emu8000_poke +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x4fd5cc1c snd_emu8000_update_equalizer +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x7f27e505 snd_emu8000_load_reverb_fx +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x81dac0c5 snd_emu8000_poke_dw +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x8d874d0b snd_emu8000_update_reverb_mode +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x8da9cf6d snd_emu8000_update_chorus_mode +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x913365a0 snd_emu8000_dma_chan +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xa2004e8d snd_emu8000_peek +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xaa5c685c snd_emu8000_load_chorus_fx +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xd14fa520 snd_emu8000_init_fm +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xf5bf8fb2 snd_emu8000_peek_dw +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x0c6bbcfa snd_wss_put_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x16344965 snd_wss_in +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x1644dfd9 snd_wss_get_pcm_ops +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x1dae61dd snd_wss_create +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x2c178b8d snd_wss_get_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x4da5d97e snd_wss_overrange +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x5980bb41 snd_wss_mce_down +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x6a9d76d0 snd_wss_chip_id +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x6d6e2179 snd_wss_mixer +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x7b202637 snd_wss_interrupt +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x86795db1 snd_wss_info_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x874b50ee snd_wss_info_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x8eab284c snd_wss_pcm +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xc5ff80d7 snd_wss_timer +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xd4c037c7 snd_cs4236_ext_in +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xd7c2f5e5 snd_wss_get_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xe14dd00f snd_cs4236_ext_out +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xefdeff28 snd_wss_mce_up +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xf5389c8d snd_wss_out +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xf7bec292 snd_wss_put_single +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1258c601 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1e39d9b4 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2113850f snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x234719ca snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x348e800e snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x454c5342 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6a20df16 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6e92208f snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9dfa2000 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbc8c9c6e snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc21de9ac snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd1173302 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd4caf698 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd55f7c66 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd97b929d snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe38c7c5f snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe6b6a022 snd_ac97_read +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x238f6ba0 hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x142ba9bb snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2bc2e72d snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x304a20aa snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x652e5275 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7cde9ab8 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x91550418 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb4dab974 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc2da4daf snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xec754070 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x13fe19d3 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x7a466d46 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xcf7c3440 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x038208c6 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1e385f8e oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x23375cdb oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2a439985 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x35d8ecc5 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3dda5481 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x415c19a0 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x43bd5564 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x54fcbfcc oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7ec1a359 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7f96f42d oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x83c18d26 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8a3a97ed oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x94a31789 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa4301fb1 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb0ad338e oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc08de8af oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc2b64fa2 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xef9c2412 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf54ef77e oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf6a99927 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x0c8e926d snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x26cdbd30 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x5701e1aa snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x5a4976c9 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x9b49ee28 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x900c99eb tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xbba3d7f2 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-firmware 0xdc045797 sst_dma_free +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-firmware 0xf11fbaa1 sst_dma_new +EXPORT_SYMBOL sound/soc/snd-soc-core 0x5cad591e snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x22d40057 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x30674310 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x3acbe9c9 sound_class +EXPORT_SYMBOL sound/soundcore 0x57a6a7a0 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x69b8e028 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x98b8527c register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x47145e15 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x881e79d5 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x8cca4853 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xa734aa0c snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xf2253289 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xff245a12 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/snd-util-mem 0x384c7b56 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x46e3ef81 snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x5d0d4e64 __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x6ab5d4bb snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x7b6097d6 __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xb30108d0 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xed13bb2f snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0xef1a81c8 snd_util_mem_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 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 0xdbf9add3 __snd_usbmidi_create +EXPORT_SYMBOL ubuntu/hio/hio 0x216ebd07 ssd_get_temperature +EXPORT_SYMBOL ubuntu/hio/hio 0x3ea2b1c8 ssd_reset +EXPORT_SYMBOL ubuntu/hio/hio 0x4ddbc8b7 ssd_unregister_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0x6f9afc22 ssd_submit_pbio +EXPORT_SYMBOL ubuntu/hio/hio 0x9326bfd4 ssd_bm_status +EXPORT_SYMBOL ubuntu/hio/hio 0xba055ab4 ssd_register_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0xca31c39f ssd_get_version +EXPORT_SYMBOL ubuntu/hio/hio 0xda549ec7 ssd_set_otprotect +EXPORT_SYMBOL ubuntu/hio/hio 0xddcd816c ssd_get_pciaddr +EXPORT_SYMBOL ubuntu/hio/hio 0xf0829922 ssd_get_label +EXPORT_SYMBOL ubuntu/hio/hio 0xf27f0906 ssd_set_wmode +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x02ca85c1 VBoxGuest_RTMpIsCpuOnline +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x055dcb5d VBoxGuest_RTR0MemAreKrnlAndUsrDifferent +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x05d4bc7c VBoxGuest_RTAssertMsg2Add +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x06d9eaaa VBoxGuest_RTAssertMsg1 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x093e5195 VBoxGuest_RTR0MemKernelCopyTo +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x09fc99c3 VBoxGuest_RTMemAllocZTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b2d343f VBoxGuest_RTMemAllocZVarTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0b94344b VBoxGuest_g_pszRTAssertExpr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0d451f73 VBoxGuest_RTLogCreateEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0dc7a17e VBoxGuest_RTR0MemObjAllocPhysNCTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0eb08916 VBoxGuest_RTMpGetSet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0ee40ed9 VBoxGuest_RTThreadIsInitialized +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0ef47c7c VBoxGuest_RTTimeMilliTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0f1bf4ba VBoxGuest_RTMemContFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0f336b67 VBoxGuest_RTTimerStart +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0f79f307 VBoxGuest_RTMemAllocExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x0fc47f43 VBoxGuest_RTLogWriteStdOut +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x105345a4 VBoxGuest_RTLogDefaultInstanceEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x107bb433 VBoxGuest_RTStrToUInt16 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x10d3b365 VBoxGuest_RTR0MemObjEnterPhysTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1305aeea VBoxGuest_RTMpIsCpuPossible +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x13996136 VBoxGuest_RTR0MemExecDonate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x147fb821 VBoxGuest_RTLogCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1594e166 VBoxGuest_RTAssertMsg2V +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x15cc85a5 VBoxGuest_RTThreadCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x16aaefb1 VBoxGuest_RTR0AssertPanicSystem +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x18cdb244 VBoxGuest_RTLogWriteStdErr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x19888b12 VBoxGuest_RTSemMutexRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1b7c2a0a VBoxGuest_RTStrToInt32 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1c6ea57e VBoxGuest_RTLogWriteDebugger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1d4a6713 VBoxGuest_RTR0MemObjFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1db48445 VBoxGuest_RTLogDumpPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x1fddf235 VBoxGuest_RTMpCpuId +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x23835b88 VBoxGuest_RTThreadPreemptIsPendingTrusty +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x24285c45 VBoxGuest_RTStrToInt64Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x24c85bef VBoxGuest_RTLogDestinations +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x24ef8067 VBoxGuest_RTR0MemObjSize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x26efa8cc VBoxGuest_RTSemMutexRequestNoResumeDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x26f9f50e VBoxGuest_RTLogRelPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x27829570 VBoxGuest_RTR0MemObjReserveUserTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x27b2ce18 VBoxGuest_RTMpOnOthers +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x27e5afe3 VBoxGuest_RTLogBackdoorPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x28f9182e VBoxGuest_RTStrToInt64Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2986391c VBoxGuest_RTPowerNotificationDeregister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2a46d291 VBoxGuest_RTStrFormat +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2ac683bb VBoxGuest_RTStrToInt8 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2b126702 VBoxGuest_RTLogRelLoggerV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2ced77ce VBoxGuest_RTLogLogger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x2e74529a VBoxGuest_RTMemFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x30313627 VBoxGuest_RTThreadUserWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x315921bb VBoxGuest_RTStrCopyEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x315e3560 VBoxGuest_RTLogSetBuffering +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x31948516 VBoxGuest_RTStrToUInt32 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x33931189 VBoxGuest_RTThreadNativeSelf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x355057df VBoxGuest_RTR0MemObjAddress +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x35c2add7 VBoxGuest_RTMpCurSetIndexAndId +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3709fa74 VBoxGuest_RTSemEventMultiWaitExDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3849f151 VBoxGuest_RTLogGetDefaultInstanceEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x39327a17 VBoxGuest_RTSemEventWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3a0fd8b9 VBoxGuest_RTMemTmpFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3a573911 VBoxGuest_RTLogRelSetBuffering +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3bb59cb5 VBoxGuest_RTMpCpuIdFromSetIndex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3c4056a1 VBoxGuest_RTThreadIsSelfAlive +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3cf07e60 VBoxGuest_RTSemMutexDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3d00f113 VBoxGuest_g_u32RTAssertLine +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x3ea022d5 VBoxGuest_RTThreadWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x40225eef VBoxGuest_RTMpCurSetIndex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4160fddb VBoxGuest_RTStrToUInt16Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x41b19017 VBoxGuest_RTLogWriteCom +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x42fcde09 VBoxGuest_RTStrToUInt8 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x437a5038 VBoxGuest_RTStrToInt64 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x444b99a0 VBoxGuest_RTTimeNow +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x47c67a50 VBoxGuest_RTSemEventMultiGetResolution +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x48a783dc VBoxGuest_RTLogRelLogger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x48fc9e66 VBoxGuest_RTTimerRequestSystemGranularity +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x495d5db8 VBoxGuest_RTMpGetCoreCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x49659b61 VBoxGuest_RTLogFlush +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4aee4de4 VBoxGuest_RTMpOnPairIsConcurrentExecSupported +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4af450dc VBoxGuest_RTLogWriteUser +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x4ce62235 VBoxGuest_RTThreadGetType +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5016a3b5 VBoxGuest_RTMemTmpAllocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x52cd86fa VBoxGuest_RTStrFormatNumber +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x531984d0 VBoxGuest_RTMpGetCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x535828dd VBoxGuest_RTLogLoggerEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x53bfe73d VBoxGuest_RTLogRelSetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x544dda08 VBoxGuest_RTThreadGetNative +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x54a04621 VBoxGuest_RTSemEventMultiWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x56017f57 VBoxGuest_RTMpOnPair +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5669fc82 VBoxGuest_RTThreadSleep +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x58006135 VBoxGuest_RTStrFormatTypeRegister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x583067ec VBoxGuest_RTSemEventMultiCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x59778b09 VBoxGuest_RTStrToInt32Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5de57611 VBoxGuest_RTSpinlockDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x5e1b8d5b VBoxGuest_RTLogComPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x60ccd546 VBoxGuest_RTLogSetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6137a005 VBoxGuest_RTThreadPreemptIsPossible +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6280d1c7 VBoxGuest_RTLogGetGroupSettings +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x62812f11 VBoxGuest_RTMpNotificationDeregister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6290e044 VBoxGuest_RTR0MemObjAddressR3 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x62b14d63 VBoxGuest_RTR0MemObjAllocPageTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63095581 VBoxGuest_RTTimeSystemNanoTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x63690a61 VBoxGuest_RTR0MemObjAllocPhysTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6570f272 VBoxGuest_RTStrToUInt32Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x66725ef2 VBoxGuest_RTLogDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x66ad2116 VBoxGuest_RTThreadPreemptDisable +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x66c9612f VBoxGuest_RTMemContAlloc +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x686e523a VBoxGuest_RTLogGetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6a1bf308 VBoxGuest_RTThreadCreateV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6c4768e0 VBoxGuest_RTR0MemObjMapKernelTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6d661954 VBoxGuest_RTR0ProcHandleSelf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x6e61ea18 VBoxGuest_RTSemEventMultiDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x70571816 VBoxGuest_RTSemMutexCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x725ff09a VBoxGuest_RTAssertSetQuiet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7294d36c VBoxGuest_RTProcSelf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x72a9bc02 VBoxGuest_RTMemTmpAllocZTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x73aa8a5a VBoxGuest_RTThreadSelfName +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7406c97b VBoxGuest_RTStrCopy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7532f928 VBoxGuest_RTTimeImplode +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7548d825 VBoxGuest_RTStrToInt16Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x75be580a VBoxGuest_RTMpOnSpecific +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x765c7530 VBoxGuest_RTTimeExplode +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x76d69f67 VBoxGuest_RTLogBackdoorPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x779f8365 VBoxGuest_RTErrConvertToErrno +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x77a366c5 VBoxGuest_RTMpNotificationRegister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x780cc167 VBoxGuest_RTStrPrintfEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7a791dde VBoxGuest_RTMpGetPresentCoreCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7b6712c9 VBoxGuest_RTAssertMsg1Weak +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7b8123ea VBoxGuest_RTSemEventGetResolution +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7e494131 VBoxGuest_RTR0MemObjIsMapping +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x7fe59ba6 VBoxGuest_RTThreadUserWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x80a3518c VBoxGuest_RTMemDupExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x84f44f1b VBoxGuest_RTR0MemObjAllocPhysExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8571e565 VBoxGuest_RTStrToInt16 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x85752eb4 VBoxGuest_RTTimerCanDoHighResolution +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x860486d0 VBoxGuest_RTLogFlags +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x862d6a0d VBoxGuest_RTTimerStop +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x864ecc29 VBoxGuest_RTR0MemObjMapUserTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x878f4a90 VBoxGuest_RTTimerCreateEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x892fa6e0 VBoxGuest_RTMpGetMaxCpuId +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x89c645f1 VBoxGuest_RTStrToInt8Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8afecf15 VBoxGuest_RTTimeNanoTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8c79502a VBoxGuest_RTTimeSpecFromString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8d02affa VBoxGuest_RTAssertMsg2WeakV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8d3b898a VBoxGuest_RTMemFreeEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8dc28544 VBoxGuest_RTTimerChangeInterval +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8ee02ee5 VBoxGuest_RTMpGetOnlineCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8f04a8e6 VBoxGuest_RTSemEventMultiWaitEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8f8133dd VBoxGuest_RTSemFastMutexCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x8f8ee594 VBoxGuest_RTStrToInt8Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x90d44be8 VBoxGuest_RTLogSetCustomPrefixCallback +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x925e6d74 VBoxGuest_RTSemEventDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9473e15b VBoxGuest_RTThreadCreateF +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x94a348d5 VBoxGuest_RTAssertMsg2 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9534e87f VBoxGuest_RTLogSetDefaultInstanceThread +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9653a98f VBoxGuest_RTR0MemUserIsValidAddr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x974c2f02 VBoxGuest_RTStrFormatTypeDeregister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x97763075 VBoxGuest_RTLogFlushRC +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9812d337 VBoxGuest_RTPowerNotificationRegister +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x983a01ac VBoxGuest_RTR0MemObjLockKernelTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x983cfd01 VBoxGuest_RTAssertMsg2AddWeakV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x98f3ddc4 VBoxGuest_RTLogFlushToLogger +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9909ff3d VBoxGuest_g_pszRTAssertFunction +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x99fb84e8 VBoxGuest_RTR0MemKernelCopyFrom +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9af30b75 VBoxGuest_RTMpOnAll +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9b170869 VBoxGuest_RTLogPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9b3a9e31 VBoxGuest_RTStrPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9c0c345c VBoxGuest_RTSpinlockRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0x9e7df720 VBoxGuest_RTAssertShouldPanic +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa07a24bf VBoxGuest_RTStrToInt32Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa240fbec VBoxGuest_RTThreadIsSelfKnown +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa2a1d4b4 VBoxGuest_RTLogGroupSettings +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa43d6669 VBoxGuest_RTAssertMsg2Weak +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa7c2bc86 VBoxGuest_RTMemAllocVarTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa8d9dab0 VBoxGuest_RTStrToUInt64Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xa9c99a8d VBoxGuest_RTMpGetOnlineSet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xab1fa243 VBoxGuest_RTLogCreateExV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xacaac41d VBoxGuest_g_szRTAssertMsg1 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xacc26bee VBoxGuest_RTSemMutexRequestNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xad854ccc VBoxGuest_RTLogGetDestinations +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xadbb3b70 VBoxGuest_RTSemMutexRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaf2a2344 VBoxGuest_RTStrToUInt16Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xaf854fe0 VBoxGuest_RTR0MemObjReserveKernelTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb0ed5380 VBoxGuest_RTThreadPreemptIsPending +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb13bfc1e VBoxGuest_RTStrToUInt8Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb1f0304d VBoxGuest_RTSemSpinMutexTryRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb2f49ba2 VBoxGuest_RTTimeIsLeapYear +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb4049f3e VBoxGuest_RTSemEventMultiWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb418cc7f VBoxGuest_RTMemAllocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb42ea0e3 VBoxGuest_g_pszRTAssertFile +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb53502ff VBoxGuest_RTR0MemKernelIsValidAddr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb535867c VBoxGuest_RTThreadUserSignal +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb5db44db VBoxGuest_RTSemEventSignal +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb62a1e30 VBoxGuest_RTThreadPreemptRestore +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb79d7b32 VBoxGuest_RTMemExecFree +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xb8418aee VBoxGuest_RTR0MemObjGetPagePhysAddr +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbaa97421 VBoxGuest_g_szRTAssertMsg2 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbaef75bb VBoxGuest_RTStrFormatTypeSetUser +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbb913e47 VBoxGuest_RTStrToUInt64Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbbdef88a VBoxGuest_RTThreadWait +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbc7408ad VBoxGuest_RTLogRelGetDefaultInstance +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xbce542d7 VBoxGuest_RTThreadYield +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc1e5a709 VBoxGuest_RTAssertMsg2AddWeak +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc2084dce VBoxGuest_RTMpPokeCpu +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc2bd304b VBoxGuest_RTSemSpinMutexRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc2ce135d VBoxGuest_RTTimeSpecToString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc6274506 VBoxGuest_RTSemEventWaitNoResume +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc6ea7d1a VBoxGuest_RTStrFormatV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc6fc188f VBoxGuest_RTStrToInt16Full +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc705fe69 VBoxGuest_RTMemExecAllocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc745616d VBoxGuest_RTThreadFromNative +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc89d23bc VBoxGuest_RTR0MemObjAllocLowTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xc9ad6599 VBoxGuest_RTSemEventCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcae630d2 VBoxGuest_RTAssertMsg2AddV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcbc809ab VBoxGuest_RTMpGetPresentCount +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xccdb69e6 VBoxGuest_RTR0MemObjProtect +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcdfb651f VBoxGuest_RTMpOnAllIsConcurrentSafe +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcef6dafd VBoxGuest_RTSemFastMutexDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xcf14603e VBoxGuest_RTTimerReleaseSystemGranularity +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd03019f2 VBoxGuest_RTSemSpinMutexDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd19ba1c8 VBoxGuest_RTAssertSetMayPanic +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd369b067 VBoxGuest_RTLogGetFlags +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd3cd9145 VBoxGuest_RTLogPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd4e16d0f VBoxGuest_RTLogComPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd4f5a7da VBoxGuest_RTMpCpuIdToSetIndex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd5675ca5 VBoxGuest_RTR0Term +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd6c747fc VBoxGuest_RTStrToUInt32Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd6ce33b5 VBoxGuest_RTR0MemUserCopyFrom +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xd6f3aba1 VBoxGuest_RTLogCloneRC +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdb08ce35 VBoxGuest_RTMpGetPresentSet +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdc59aea9 VBoxGuestIDCClose +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdc7bf344 VBoxGuest_RTSemFastMutexRequest +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdca31c8a VBoxGuest_RTStrPrintf +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdce83495 VBoxGuest_RTTimeToString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdd1e2ff6 VBoxGuest_RTMemDupTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xddaf15ce VBoxGuest_RTR0MemObjMapKernelExTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xde4147ab VBoxGuest_RTLogFormatV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xded5fd9e VBoxGuest_RTLogRelPrintfV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xdfa74c01 VBoxGuest_RTAssertMayPanic +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe137d504 VBoxGuest_RTStrToUInt64 +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe1b3dedf VBoxGuest_RTLogLoggerExV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe201f0a3 VBoxGuest_RTThreadGetName +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe21895c9 VBoxGuest_RTSpinlockAcquire +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe2350b24 VBoxGuest_RTTimeNormalize +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe39a3b0c VBoxGuestIDCCall +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe422338b VBoxGuest_RTR0Init +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe44bcc95 VBoxGuest_RTErrConvertFromErrno +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe506fab2 VBoxGuest_RTLogDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe5feb377 VBoxGuest_RTTimerDestroy +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe653b5b9 VBoxGuest_RTSemSpinMutexRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe6b22c79 VBoxGuest_RTSemEventMultiReset +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe7bbc7a1 VBoxGuest_RTPowerSignalEvent +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe7c35b06 VBoxGuest_RTThreadSetName +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe881e3c4 VBoxGuest_RTSpinlockCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe903c7b6 VBoxGuest_RTLogLoggerV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xe9799151 VBoxGuest_RTR0MemObjLockUserTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xeb61ead8 VBoxGuestIDCOpen +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xec237236 VBoxGuest_RTSemEventWaitEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xec5ce663 VBoxGuest_RTMpIsCpuPresent +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xecb49b7e VBoxGuest_RTStrCopyP +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xed69dd35 VBoxGuest_RTStrToUInt8Ex +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xedfb10f5 VBoxGuest_RTSemSpinMutexCreate +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xee1d414e VBoxGuest_RTR0MemUserCopyTo +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf2278ce2 VBoxGuest_RTSemMutexIsOwned +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf2519858 VBoxGuest_RTThreadPreemptIsEnabled +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf28c6914 VBoxGuest_RTMemReallocTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf5071bd2 VBoxGuest_RTTimeFromString +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf620c8f3 VBoxGuest_RTThreadSetType +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf68b92a3 VBoxGuest_RTSemEventMultiSignal +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf6af78fb VBoxGuest_RTMpIsCpuWorkPending +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf6b8d0db VBoxGuest_RTThreadIsInInterrupt +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf6d5d3f2 VBoxGuest_RTThreadIsMain +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf89576b6 VBoxGuest_RTSemFastMutexRelease +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf91a5c8a VBoxGuest_RTSemEventWaitExDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xf97fdcbb VBoxGuest_RTTimeSystemMilliTS +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfa133325 VBoxGuest_RTStrPrintfExV +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfaedb08b VBoxGuest_RTStrConvertHexBytes +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfb1831ce VBoxGuest_RTSemMutexRequestDebug +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfd226142 VBoxGuest_RTThreadSleepNoLog +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfd322d77 VBoxGuest_RTThreadUserReset +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xfe962f86 VBoxGuest_RTTimerGetSystemGranularity +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xff365470 VBoxGuest_RTR0MemObjAllocContTag +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xffad2ad7 VBoxGuest_RTLogRelGetDefaultInstanceEx +EXPORT_SYMBOL ubuntu/vbox/vboxguest/vboxguest 0xffc1e8aa VBoxGuest_RTAssertAreQuiet +EXPORT_SYMBOL vmlinux 0x001e4070 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x004c1c5b do_trace_write_msr +EXPORT_SYMBOL vmlinux 0x0052af2b blk_sync_queue +EXPORT_SYMBOL vmlinux 0x0052dc40 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x005a08b1 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x0065c044 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x009722a3 from_kprojid +EXPORT_SYMBOL vmlinux 0x009bd178 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x00ab930a kdb_current_task +EXPORT_SYMBOL vmlinux 0x00ae4fd4 submit_bh +EXPORT_SYMBOL vmlinux 0x00af49db mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x00b851f1 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x00b8c3a7 mempool_alloc +EXPORT_SYMBOL vmlinux 0x00d1f3ec mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00e29108 simple_write_end +EXPORT_SYMBOL vmlinux 0x00ecf508 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x00eef65e bitmap_unplug +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x0108c99c d_add +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x011bb1ed iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x0121066e uart_match_port +EXPORT_SYMBOL vmlinux 0x0139b504 cpu_current_top_of_stack +EXPORT_SYMBOL vmlinux 0x015c3b7e tty_unthrottle +EXPORT_SYMBOL vmlinux 0x018bdc5e nf_log_unset +EXPORT_SYMBOL vmlinux 0x018ef097 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x019d0021 get_agp_version +EXPORT_SYMBOL vmlinux 0x019db55a radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0x01b6752e keyring_search +EXPORT_SYMBOL vmlinux 0x01ddb952 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x01ed3044 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x01eeb4b1 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x01f39eba vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x01f59b9c dup_iter +EXPORT_SYMBOL vmlinux 0x0205088d nf_log_unregister +EXPORT_SYMBOL vmlinux 0x020edccc wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x021eba15 kfree_skb +EXPORT_SYMBOL vmlinux 0x0223fe3f bh_submit_read +EXPORT_SYMBOL vmlinux 0x022cd646 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x025aef0c inode_dio_wait +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x02786386 set_bh_page +EXPORT_SYMBOL vmlinux 0x02871245 input_open_device +EXPORT_SYMBOL vmlinux 0x029f4fa0 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a3350a file_remove_privs +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02dad823 inode_init_owner +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x030c2026 inode_change_ok +EXPORT_SYMBOL vmlinux 0x030cc544 mdio_device_create +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0338ceb8 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x033be39c ata_port_printk +EXPORT_SYMBOL vmlinux 0x03573260 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x035a2541 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x0393f28f proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x03a41c6a inode_add_bytes +EXPORT_SYMBOL vmlinux 0x03c5a539 dquot_initialize +EXPORT_SYMBOL vmlinux 0x03d72bfd jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x03e82508 finish_swait +EXPORT_SYMBOL vmlinux 0x03e8a608 task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0x03eab1b9 cont_write_begin +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x03fff6f2 blk_put_request +EXPORT_SYMBOL vmlinux 0x0400824d end_page_writeback +EXPORT_SYMBOL vmlinux 0x0414f577 sk_free +EXPORT_SYMBOL vmlinux 0x04201017 fence_init +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0426ba24 idr_for_each +EXPORT_SYMBOL vmlinux 0x0444eaab tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044c21b9 tso_start +EXPORT_SYMBOL vmlinux 0x04617253 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x047a8c1f blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x047edd7f vm_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x048a3a55 set_pages_array_uc +EXPORT_SYMBOL vmlinux 0x04933d34 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x049b034d ps2_drain +EXPORT_SYMBOL vmlinux 0x049ed5e0 block_write_end +EXPORT_SYMBOL vmlinux 0x04ad3edc __register_binfmt +EXPORT_SYMBOL vmlinux 0x04adff1f netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x04b092f2 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x04c29c3a devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x04d0950d alloc_fcdev +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04de098c phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ed4dd2 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x05047926 dm_put_device +EXPORT_SYMBOL vmlinux 0x05053890 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x05285545 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x0546d6a5 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x054ff99c d_make_root +EXPORT_SYMBOL vmlinux 0x0558e54f dev_change_carrier +EXPORT_SYMBOL vmlinux 0x055ada1e dev_addr_init +EXPORT_SYMBOL vmlinux 0x058276b1 dquot_alloc +EXPORT_SYMBOL vmlinux 0x05997a84 genlmsg_put +EXPORT_SYMBOL vmlinux 0x05a24c0d udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x05ad3391 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x05ae6508 nobh_writepage +EXPORT_SYMBOL vmlinux 0x05dc4da9 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x05de9277 __module_get +EXPORT_SYMBOL vmlinux 0x05e25804 __request_region +EXPORT_SYMBOL vmlinux 0x06114f51 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0618cb4c set_device_ro +EXPORT_SYMBOL vmlinux 0x062a29fc set_security_override +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x065c7184 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x06667c75 vmap +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x0680ada0 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x068c7263 ioremap_cache +EXPORT_SYMBOL vmlinux 0x06b71bef xfrm_lookup +EXPORT_SYMBOL vmlinux 0x06c0dae5 __kernel_fpu_end +EXPORT_SYMBOL vmlinux 0x06c7d52c misc_deregister +EXPORT_SYMBOL vmlinux 0x06d51cea netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x06de6e0a param_ops_int +EXPORT_SYMBOL vmlinux 0x06f4d009 nvm_bb_tbl_fold +EXPORT_SYMBOL vmlinux 0x06ffc44e nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x0721b220 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0738d0d3 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x073a62f5 bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x07608604 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x0763de3b pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x0774d545 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x0775b2ed simple_transaction_get +EXPORT_SYMBOL vmlinux 0x0788dea0 md_register_thread +EXPORT_SYMBOL vmlinux 0x079134d6 kernel_accept +EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07b74019 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x07babf91 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x07bb3d6a blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x07be9ed3 simple_dname +EXPORT_SYMBOL vmlinux 0x07c2a41f mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07d0355f dev_err +EXPORT_SYMBOL vmlinux 0x07d50a24 csum_partial +EXPORT_SYMBOL vmlinux 0x07dfd604 d_lookup +EXPORT_SYMBOL vmlinux 0x080905d6 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x08102df2 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x08258bef from_kuid_munged +EXPORT_SYMBOL vmlinux 0x082b482d mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0851fe20 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x085969b8 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0x0862dade jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x088643fd __frontswap_store +EXPORT_SYMBOL vmlinux 0x08880b46 ata_print_version +EXPORT_SYMBOL vmlinux 0x0897287b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x08c3f020 unregister_console +EXPORT_SYMBOL vmlinux 0x08df42f4 write_cache_pages +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08f06ee4 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x0935248a get_phy_device +EXPORT_SYMBOL vmlinux 0x0962abb1 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x096618cb fence_free +EXPORT_SYMBOL vmlinux 0x096a40a7 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x09773acd vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x0997572b pci_request_regions +EXPORT_SYMBOL vmlinux 0x09af2cc0 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x09c4c1ff swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c6411f schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d0e279 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09e88526 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x09f09772 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x09f447bb jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x09ff33fe fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x0a044ed2 md_check_recovery +EXPORT_SYMBOL vmlinux 0x0a04bb86 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x0a12ec83 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x0a1dfe82 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a59e28f generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x0a5b2f81 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x0a5da197 iptun_encaps +EXPORT_SYMBOL vmlinux 0x0a661faa lg_local_unlock +EXPORT_SYMBOL vmlinux 0x0a664e0a ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a83aa4f blk_get_queue +EXPORT_SYMBOL vmlinux 0x0a8c33c4 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x0a9e0815 fsync_bdev +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0abb0c9c buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x0abfc737 vfs_setpos +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad337e9 scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x0ad67ce6 page_waitqueue +EXPORT_SYMBOL vmlinux 0x0af88abd bio_init +EXPORT_SYMBOL vmlinux 0x0b01594f inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b0e2620 input_grab_device +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b245ce6 empty_aops +EXPORT_SYMBOL vmlinux 0x0b395eca jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b6cc805 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x0b6fcea9 noop_fsync +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b88b290 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x0b905c66 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x0b92b90d tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x0b92c482 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x0b98c50a fscrypt_inherit_context +EXPORT_SYMBOL vmlinux 0x0bac3889 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bd41790 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x0bfb77b2 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x0bfe0477 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x0c07b665 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x0c1accef scsi_add_device +EXPORT_SYMBOL vmlinux 0x0c2c879b rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0x0c34c4cf tcp_read_sock +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c69c353 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0c880028 unregister_netdev +EXPORT_SYMBOL vmlinux 0x0c904cca x86_hyper_vmware +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region +EXPORT_SYMBOL vmlinux 0x0ca932c5 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0caea943 d_obtain_root +EXPORT_SYMBOL vmlinux 0x0cc83cb9 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x0cdabd71 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x0cdb7d12 __kernel_fpu_begin +EXPORT_SYMBOL vmlinux 0x0d01cee9 kernel_read +EXPORT_SYMBOL vmlinux 0x0d041a98 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x0d0a8082 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x0d0c8110 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x0d128e6e inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x0d3b5044 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d8c6e55 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0dbdb29f inet_stream_connect +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0dc7794b blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x0dce9785 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x0dd599df __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x0e202b90 generic_fillattr +EXPORT_SYMBOL vmlinux 0x0e2a1706 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x0e303312 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x0e4fdcee devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0x0e66b17d skb_copy +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e6fef9a fb_show_logo +EXPORT_SYMBOL vmlinux 0x0e889bb8 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x0e99a6ff lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0eb55a8c skb_dequeue +EXPORT_SYMBOL vmlinux 0x0ebd5495 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x0ec1abec inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0edc7cdb md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x0ee92392 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0eecbb64 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f124816 blkdev_get +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f8a937f pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x0f8be10b mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x0f979a51 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x0fa71b6c devm_gpio_free +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event +EXPORT_SYMBOL vmlinux 0x0fdceec1 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x0ff7fde2 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x102473a2 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x102c56de irq_regs +EXPORT_SYMBOL vmlinux 0x1038856d iunique +EXPORT_SYMBOL vmlinux 0x10463b6f neigh_app_ns +EXPORT_SYMBOL vmlinux 0x10674987 vfs_getattr +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x108a2a6f jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x10907a31 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x10e9f675 setup_new_exec +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11142073 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x111c2da1 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x113b9487 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x113e0fea sock_kfree_s +EXPORT_SYMBOL vmlinux 0x1146e470 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x1147c422 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x114a276c param_get_int +EXPORT_SYMBOL vmlinux 0x114f3b4f tcf_action_exec +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x11692ad5 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x11719b2a scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x117f9eac pcim_iounmap +EXPORT_SYMBOL vmlinux 0x1189a3f3 pci_restore_state +EXPORT_SYMBOL vmlinux 0x11999f21 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x119d911f param_get_string +EXPORT_SYMBOL vmlinux 0x11b98e2b max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x11cd5b72 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x11dd01ad intel_scu_ipc_command +EXPORT_SYMBOL vmlinux 0x11ea0215 vga_con +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x121b4e4b memremap +EXPORT_SYMBOL vmlinux 0x121e8641 d_alloc +EXPORT_SYMBOL vmlinux 0x122832af __pagevec_release +EXPORT_SYMBOL vmlinux 0x122a05be agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x1238ff19 param_get_ulong +EXPORT_SYMBOL vmlinux 0x123cb845 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x1250c7e1 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x1253794b rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x12554578 tcp_proc_register +EXPORT_SYMBOL vmlinux 0x1279d0fa tty_register_device +EXPORT_SYMBOL vmlinux 0x12815cc2 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x1298309f mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12c08499 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x12d336ec mem_map +EXPORT_SYMBOL vmlinux 0x12d7c7cf gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x12e7276e acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x130a4b39 tcp_prot +EXPORT_SYMBOL vmlinux 0x130f120a bdi_destroy +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x131c199b mdio_device_free +EXPORT_SYMBOL vmlinux 0x131c3ba1 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x1320543e mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x132dadae phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x1332d549 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x134b7c72 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x1352457c key_type_keyring +EXPORT_SYMBOL vmlinux 0x135a1b56 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x135f945f xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x136118af d_move +EXPORT_SYMBOL vmlinux 0x1371965b pci_find_bus +EXPORT_SYMBOL vmlinux 0x138575d7 vfs_symlink +EXPORT_SYMBOL vmlinux 0x138ca1ab gen_new_estimator +EXPORT_SYMBOL vmlinux 0x139bf61b tso_build_hdr +EXPORT_SYMBOL vmlinux 0x13b91476 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x13cb99f3 lock_fb_info +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d14634 unload_nls +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13fcd609 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x141353be genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x14166c43 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x1418d3e4 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x14285661 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x1429acde tcp_req_err +EXPORT_SYMBOL vmlinux 0x14361adb __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x145db118 get_io_context +EXPORT_SYMBOL vmlinux 0x14630e24 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x14992f74 block_write_full_page +EXPORT_SYMBOL vmlinux 0x149ab0a1 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14d27daa delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x14d46acb tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x14dcb67b napi_get_frags +EXPORT_SYMBOL vmlinux 0x14e2c7af blk_complete_request +EXPORT_SYMBOL vmlinux 0x14edabb4 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x14ee8224 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x14f1530c pipe_unlock +EXPORT_SYMBOL vmlinux 0x14fd719f inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x1508fcd4 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x150ad92b ioport_resource +EXPORT_SYMBOL vmlinux 0x151daa48 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x1533f90d ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x1547bfd6 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x156a8a59 down_trylock +EXPORT_SYMBOL vmlinux 0x15799c11 _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x15b3182a udplite_prot +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15e1ab66 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x15e2f46c blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x15e76f06 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x15f0fb20 set_blocksize +EXPORT_SYMBOL vmlinux 0x15f5e14d blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x160dced9 audit_log +EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled +EXPORT_SYMBOL vmlinux 0x1611fd39 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x1618ff35 try_module_get +EXPORT_SYMBOL vmlinux 0x1623d2aa locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x1625a790 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x1628c3f8 dev_deactivate +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x16481226 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x16522c07 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x16621b66 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x168d781a invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x16990aeb down_write_trylock +EXPORT_SYMBOL vmlinux 0x169ba40f nvm_submit_io +EXPORT_SYMBOL vmlinux 0x16a0d925 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16ef584f page_readlink +EXPORT_SYMBOL vmlinux 0x16f96857 security_path_unlink +EXPORT_SYMBOL vmlinux 0x16f991d2 inet6_offloads +EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x171ed761 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x172483be generic_listxattr +EXPORT_SYMBOL vmlinux 0x173dec49 try_to_release_page +EXPORT_SYMBOL vmlinux 0x174ba824 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x176c34c8 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x178b0fbd vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x179651ac _raw_read_lock +EXPORT_SYMBOL vmlinux 0x179bea3c kunmap_high +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17b7998d tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x17b9499d inc_nlink +EXPORT_SYMBOL vmlinux 0x17cf3b39 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x17d057e4 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17f3438e filp_close +EXPORT_SYMBOL vmlinux 0x17fa73e3 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x1832f336 bioset_free +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x18469f1f udp_gro_complete +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x1884a30e vme_bus_num +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1890f8ad wait_iff_congested +EXPORT_SYMBOL vmlinux 0x1893282d cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x189a0009 d_path +EXPORT_SYMBOL vmlinux 0x18d77c37 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x18d96501 atomic64_dec_if_positive_cx8 +EXPORT_SYMBOL vmlinux 0x18df88a1 __lock_buffer +EXPORT_SYMBOL vmlinux 0x18e05f1a mdio_bus_type +EXPORT_SYMBOL vmlinux 0x18e53b93 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18ec96ca register_md_personality +EXPORT_SYMBOL vmlinux 0x18f04fd8 set_cached_acl +EXPORT_SYMBOL vmlinux 0x18fdd68b vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0x1903a1b7 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x19117e07 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x1916e38c _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x1920f827 dev_mc_del +EXPORT_SYMBOL vmlinux 0x1946e021 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x19522f98 page_get_link +EXPORT_SYMBOL vmlinux 0x1971d1bd dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x197d677b scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x1986b94b rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x1997f67f dquot_transfer +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19cc384a swake_up_locked +EXPORT_SYMBOL vmlinux 0x19cc616b jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x19d7978c inet_getname +EXPORT_SYMBOL vmlinux 0x19d8b48c eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x19fcc1d7 ex_handler_default +EXPORT_SYMBOL vmlinux 0x1a237b91 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x1a24d8f4 __dst_free +EXPORT_SYMBOL vmlinux 0x1a2dd0c1 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x1a41f986 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a781a19 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x1a7d9d99 downgrade_write +EXPORT_SYMBOL vmlinux 0x1a89f39a md_flush_request +EXPORT_SYMBOL vmlinux 0x1a910e30 cdev_del +EXPORT_SYMBOL vmlinux 0x1a91fb34 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x1ad3ec93 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x1adc22b5 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x1adf9dba serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x1ae09f75 _raw_write_unlock_irq +EXPORT_SYMBOL vmlinux 0x1af0ab6c blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x1afb1aaa acpi_mark_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b0eb000 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x1b1ccd5c kernel_bind +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b4b9a31 read_cache_page +EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning +EXPORT_SYMBOL vmlinux 0x1b5786af lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b91ca86 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x1b9a2b81 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x1b9a3aaf kill_litter_super +EXPORT_SYMBOL vmlinux 0x1bb26183 sg_miter_start +EXPORT_SYMBOL vmlinux 0x1bb3bc4a genl_unregister_family +EXPORT_SYMBOL vmlinux 0x1bba14ae __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x1be1dd26 lg_global_lock +EXPORT_SYMBOL vmlinux 0x1be5ff96 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x1c4413ac blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x1c4fc8f8 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0x1c6b782e import_single_range +EXPORT_SYMBOL vmlinux 0x1c86db4a tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset +EXPORT_SYMBOL vmlinux 0x1c98cd65 agp_bind_memory +EXPORT_SYMBOL vmlinux 0x1cae999a tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x1ccbe891 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x1cd9cd5d notify_change +EXPORT_SYMBOL vmlinux 0x1d248983 set_pages_x +EXPORT_SYMBOL vmlinux 0x1d473cea filemap_flush +EXPORT_SYMBOL vmlinux 0x1d54878d pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0x1d5e8e82 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x1d715dc3 drop_nlink +EXPORT_SYMBOL vmlinux 0x1d7ad6ac gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x1d851139 vme_slave_request +EXPORT_SYMBOL vmlinux 0x1d8d441b param_set_short +EXPORT_SYMBOL vmlinux 0x1d907cd3 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x1dc26247 phy_attached_info +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dcc6c8a xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x1dd4a541 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de74f72 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0x1de93056 audit_log_start +EXPORT_SYMBOL vmlinux 0x1df2913d reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x1df5c25b vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x1dfcc5a3 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x1e036c98 acpi_set_gpe +EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x1e0c2be4 ioremap_wc +EXPORT_SYMBOL vmlinux 0x1e0d2d67 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x1e1c8de5 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x1e250a57 vfs_statfs +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e357bd0 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x1e41553d netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x1e48b6bf netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x1e4c5f7f dev_remove_offload +EXPORT_SYMBOL vmlinux 0x1e51926a mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e741bbe kern_unmount +EXPORT_SYMBOL vmlinux 0x1e8cb014 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x1e95368e pci_platform_rom +EXPORT_SYMBOL vmlinux 0x1e96f946 vga_switcheroo_unlock_ddc +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea9065c mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x1ecb54fa get_task_exe_file +EXPORT_SYMBOL vmlinux 0x1ecee4c8 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x1ed4a87b xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x1f126b85 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x1f3d42a5 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x1f6763dc simple_fill_super +EXPORT_SYMBOL vmlinux 0x1f6a6404 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1f84484e ip_defrag +EXPORT_SYMBOL vmlinux 0x1f8f098a __tracepoint_read_msr +EXPORT_SYMBOL vmlinux 0x1f9742e9 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x1f986fdc nvm_put_blk +EXPORT_SYMBOL vmlinux 0x1fba60ff fget_raw +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd8c777 dev_mc_add +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1ff5ac89 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x1ff8a8b2 __d_drop +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x2005e68a acpi_remove_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x20092385 acpi_enter_sleep_state_s4bios +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x201b0ac0 lg_global_unlock +EXPORT_SYMBOL vmlinux 0x20205f64 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x2020737a generic_file_mmap +EXPORT_SYMBOL vmlinux 0x202f4e92 acpi_extract_package +EXPORT_SYMBOL vmlinux 0x20303cd2 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x2054a2a8 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table +EXPORT_SYMBOL vmlinux 0x2087a3d6 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x20995e8a d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x209abea3 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x20a280bd proto_unregister +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20be1cfe gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x20bf1ba8 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x20c26325 dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20c6192f intel_scu_ipc_ioread32 +EXPORT_SYMBOL vmlinux 0x20c7a4c3 block_commit_write +EXPORT_SYMBOL vmlinux 0x20dadfe8 devm_iounmap +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20df8d44 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20ef630c netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x2122d8df inode_nohighmem +EXPORT_SYMBOL vmlinux 0x21289143 nvm_end_io +EXPORT_SYMBOL vmlinux 0x21315b10 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x214bfe27 km_query +EXPORT_SYMBOL vmlinux 0x215562a7 stop_tty +EXPORT_SYMBOL vmlinux 0x2167db87 nla_reserve +EXPORT_SYMBOL vmlinux 0x2183e4c2 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x218f9b56 inet_gro_complete +EXPORT_SYMBOL vmlinux 0x21a50220 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x21ad9482 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x21b48248 qdisc_destroy +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e992a5 ida_simple_get +EXPORT_SYMBOL vmlinux 0x2202307e nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x2207a57f prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x220be903 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x22260ee8 inet_shutdown +EXPORT_SYMBOL vmlinux 0x222a039c bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222f6207 __nla_reserve +EXPORT_SYMBOL vmlinux 0x2234b4b7 param_get_invbool +EXPORT_SYMBOL vmlinux 0x22420938 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x227991dc __sk_dst_check +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22bc1e5a neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x22be4d35 sk_net_capable +EXPORT_SYMBOL vmlinux 0x22d541ce PageMovable +EXPORT_SYMBOL vmlinux 0x22d7e102 devm_clk_put +EXPORT_SYMBOL vmlinux 0x22fab997 inode_permission +EXPORT_SYMBOL vmlinux 0x22fc4f3a trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x22fd388e swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x232c5cba pci_dev_driver +EXPORT_SYMBOL vmlinux 0x232d18ec rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2349627f param_ops_charp +EXPORT_SYMBOL vmlinux 0x235980fd may_umount_tree +EXPORT_SYMBOL vmlinux 0x2361d0da twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c77c74 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23e46cfe agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x23f3f711 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x240fb41b __nlmsg_put +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x2426a5e5 register_cdrom +EXPORT_SYMBOL vmlinux 0x24318fde vme_register_bridge +EXPORT_SYMBOL vmlinux 0x24374e77 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x243a277a __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x243de5b7 tty_check_change +EXPORT_SYMBOL vmlinux 0x2440eedf console_stop +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x245133f2 mpage_writepages +EXPORT_SYMBOL vmlinux 0x2458360a vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245bbee9 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x24818e49 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x24930b11 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x24a0e81f nd_device_notify +EXPORT_SYMBOL vmlinux 0x24b971eb debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x24cbfb39 udp_poll +EXPORT_SYMBOL vmlinux 0x24cfa7c5 freeze_bdev +EXPORT_SYMBOL vmlinux 0x24df1cd1 ex_handler_wrmsr_unsafe +EXPORT_SYMBOL vmlinux 0x24e15bf5 kobject_init +EXPORT_SYMBOL vmlinux 0x24fb0219 bio_add_page +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x2524040c nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x2525dc5c mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x25516b6b devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x257e3ed8 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x259415ad get_gendisk +EXPORT_SYMBOL vmlinux 0x25a8d34c pci_add_resource +EXPORT_SYMBOL vmlinux 0x25aaa80d generic_read_dir +EXPORT_SYMBOL vmlinux 0x25ac1ebf do_trace_rdpmc +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25ed9997 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x25f8d707 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x262c42f9 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x264af2fb skb_queue_tail +EXPORT_SYMBOL vmlinux 0x2654b8d1 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x26602f33 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x266c2b1a netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x268cc6a2 sys_close +EXPORT_SYMBOL vmlinux 0x26924e4a param_set_bint +EXPORT_SYMBOL vmlinux 0x26a06901 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x26a4bc58 free_buffer_head +EXPORT_SYMBOL vmlinux 0x26add945 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26bcfa9c acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0x26c44b6f pv_mmu_ops +EXPORT_SYMBOL vmlinux 0x26c7adad copy_from_iter +EXPORT_SYMBOL vmlinux 0x26cb34a2 mempool_create +EXPORT_SYMBOL vmlinux 0x26ddb368 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26ed50a9 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x26f77305 kill_fasync +EXPORT_SYMBOL vmlinux 0x2710f798 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x271c420c writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x272557a3 dquot_get_state +EXPORT_SYMBOL vmlinux 0x272853ee release_firmware +EXPORT_SYMBOL vmlinux 0x273f1312 skb_pull +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x277b8125 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x27882b9b ida_simple_remove +EXPORT_SYMBOL vmlinux 0x27a9696c nvm_mark_blk +EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction +EXPORT_SYMBOL vmlinux 0x27b52cef dev_activate +EXPORT_SYMBOL vmlinux 0x27b7ebab vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27da4221 uart_resume_port +EXPORT_SYMBOL vmlinux 0x27e6e316 dmam_release_declared_memory +EXPORT_SYMBOL vmlinux 0x27e79ee6 eisa_driver_unregister +EXPORT_SYMBOL vmlinux 0x27ef26d1 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x27f92481 path_nosuid +EXPORT_SYMBOL vmlinux 0x2807a222 clone_cred +EXPORT_SYMBOL vmlinux 0x28166464 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28189ecf buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x281f8c74 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x283eb019 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x286dcf99 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x2883627c vga_tryget +EXPORT_SYMBOL vmlinux 0x289d4952 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28a992f1 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x28b3a267 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x28b715a6 isapnp_cfg_end +EXPORT_SYMBOL vmlinux 0x28c90ffd inet6_release +EXPORT_SYMBOL vmlinux 0x28e08840 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x28f37256 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x28fb33e1 serio_rescan +EXPORT_SYMBOL vmlinux 0x2902c5c5 __bread_gfp +EXPORT_SYMBOL vmlinux 0x292a794d blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x294cd4ad bdi_register +EXPORT_SYMBOL vmlinux 0x2951fdb5 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x2964fd25 arch_dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x29730000 devm_ioremap +EXPORT_SYMBOL vmlinux 0x29aec4d7 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x29dffe4d pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x2a2afec4 phy_attached_print +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a3cd4bf copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x2a565a25 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x2a5def2f intel_scu_ipc_iowrite32 +EXPORT_SYMBOL vmlinux 0x2a8b875c ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x2a9fe1f3 from_kuid +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aad3563 irq_set_chip +EXPORT_SYMBOL vmlinux 0x2ab4a25f key_unlink +EXPORT_SYMBOL vmlinux 0x2abe28e9 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x2acbb417 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b10c8db ip6_xmit +EXPORT_SYMBOL vmlinux 0x2b1cfcab vga_switcheroo_client_probe_defer +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b337063 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x2b488f64 arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0x2b4a63f6 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x2b4da9e4 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x2b5081f3 get_tz_trend +EXPORT_SYMBOL vmlinux 0x2b84cd36 set_disk_ro +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bae0073 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x2bb72f98 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x2bd42595 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x2bdf5671 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x2be1df45 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x2be42ef3 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x2be7418c input_event +EXPORT_SYMBOL vmlinux 0x2bee0132 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x2bfa0aae elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x2c00ab28 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x2c0c0e75 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c250517 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c2a9d71 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x2c43fee1 dev_uc_init +EXPORT_SYMBOL vmlinux 0x2c5474cc pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x2c7fd2ef netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x2c8000fd netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x2ca319a6 wrmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x2caded23 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x2cb5e103 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x2cbc1fa6 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x2cddb33a tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x2cde4f6b param_ops_bint +EXPORT_SYMBOL vmlinux 0x2cec2aa3 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x2cfef895 pcibios_set_irq_routing +EXPORT_SYMBOL vmlinux 0x2cff2b39 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d144e21 rdmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x2d27dcda i2c_verify_client +EXPORT_SYMBOL vmlinux 0x2d2ce99a devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d3a60ec blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x2d5474f4 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x2d7e5a94 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x2d833383 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2de6c776 elevator_change +EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception +EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2df0354e vfs_whiteout +EXPORT_SYMBOL vmlinux 0x2dfef15e devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x2e0f8820 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x2e1a40b8 nf_register_hook +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e7f6c9c xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x2e9985af to_ndd +EXPORT_SYMBOL vmlinux 0x2ea46a48 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x2eb4415b nd_iostat_end +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2eea2af4 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x2eeb6c8c acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2ef9b902 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f67addb default_file_splice_read +EXPORT_SYMBOL vmlinux 0x2fb6a8b4 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fb8e9b0 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x2fca6fc3 netlink_capable +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2ffd67db xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x302e07d5 phy_start +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x30343ad2 input_free_device +EXPORT_SYMBOL vmlinux 0x303a42d3 cdev_init +EXPORT_SYMBOL vmlinux 0x3040ed4a mpage_readpages +EXPORT_SYMBOL vmlinux 0x307731d0 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b04526 ida_init +EXPORT_SYMBOL vmlinux 0x30b5490b netlink_net_capable +EXPORT_SYMBOL vmlinux 0x30baf103 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x30c3d516 lockref_put_return +EXPORT_SYMBOL vmlinux 0x30c97451 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30eaec43 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x30f688a7 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x312dd61b dquot_quota_off +EXPORT_SYMBOL vmlinux 0x313073b0 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x3144a604 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x314bb5ad inet_put_port +EXPORT_SYMBOL vmlinux 0x315ea566 rps_needed +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x318bd5a3 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x318e11ca swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x31bb74d5 kobject_set_name +EXPORT_SYMBOL vmlinux 0x31dc8be4 netdev_info +EXPORT_SYMBOL vmlinux 0x31e76b57 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0x31ec44a0 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx +EXPORT_SYMBOL vmlinux 0x3202435a wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x320f412e generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x3222ab44 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x3258b670 seq_file_path +EXPORT_SYMBOL vmlinux 0x325ef719 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x32817c6a blkdev_fsync +EXPORT_SYMBOL vmlinux 0x3282b56e mmc_free_host +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x328753d5 generic_show_options +EXPORT_SYMBOL vmlinux 0x32986bdf devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x32999fff mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x329daa8b seqno_fence_ops +EXPORT_SYMBOL vmlinux 0x32a193d4 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x32a32567 dput +EXPORT_SYMBOL vmlinux 0x32b14b7e get_acl +EXPORT_SYMBOL vmlinux 0x32b5fa2f mem_section +EXPORT_SYMBOL vmlinux 0x32c05594 intel_gmch_probe +EXPORT_SYMBOL vmlinux 0x32c32f86 single_release +EXPORT_SYMBOL vmlinux 0x32c63fc7 inet_select_addr +EXPORT_SYMBOL vmlinux 0x32cf2faa elv_rb_del +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32e57ad7 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x33000c3f dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x3303c161 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x330f8afa __check_sticky +EXPORT_SYMBOL vmlinux 0x3320e5e0 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x332edef6 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x33384f06 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x333ff1ce gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x334ad28f udp6_set_csum +EXPORT_SYMBOL vmlinux 0x335d52f6 proc_remove +EXPORT_SYMBOL vmlinux 0x3364cd98 tty_hangup +EXPORT_SYMBOL vmlinux 0x336bedec netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x33751c44 sock_i_ino +EXPORT_SYMBOL vmlinux 0x33aa2edd bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x33adc363 mmc_erase +EXPORT_SYMBOL vmlinux 0x33ba1211 i2c_transfer +EXPORT_SYMBOL vmlinux 0x33bd8245 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0x33c0f7d3 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x33c3c007 elv_rb_find +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33cdf5a8 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x33d6317c pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x33d73950 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x33d78259 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x33dbae6e udp_prot +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33e2f57c devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x33e7ded0 param_ops_string +EXPORT_SYMBOL vmlinux 0x33e7e8ed devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f5851b xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x33f5c836 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x340975f6 __frontswap_test +EXPORT_SYMBOL vmlinux 0x34131d4b mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0x342f60fe apm_info +EXPORT_SYMBOL vmlinux 0x343a2c1f jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x3468d9c5 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x346c6825 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x347f24b8 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x348d5233 skb_seq_read +EXPORT_SYMBOL vmlinux 0x3495fba4 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a06d4a security_d_instantiate +EXPORT_SYMBOL vmlinux 0x34b8cf3d blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x34c0b38a md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x34f20062 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f984c8 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x351b9812 elv_register_queue +EXPORT_SYMBOL vmlinux 0x351f9945 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x352e4372 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x35329d48 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x353aba41 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x353e21e3 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x354f4f99 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x355409ee mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x35680656 d_alloc_name +EXPORT_SYMBOL vmlinux 0x357c4bb2 PDE_DATA +EXPORT_SYMBOL vmlinux 0x35889ee5 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x3593fa83 tcf_hash_search +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35bea308 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x35d7e09b inet6_getname +EXPORT_SYMBOL vmlinux 0x35ecdb1b pid_task +EXPORT_SYMBOL vmlinux 0x35ef958f i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x363727db ip_setsockopt +EXPORT_SYMBOL vmlinux 0x3647b255 component_match_add_release +EXPORT_SYMBOL vmlinux 0x364a1690 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x364afc0d __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x364ba7e2 get_disk +EXPORT_SYMBOL vmlinux 0x3653e789 current_in_userns +EXPORT_SYMBOL vmlinux 0x3668d89e twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x3669dcbc param_set_ullong +EXPORT_SYMBOL vmlinux 0x3672ce57 i2c_master_send +EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x368220be fb_pan_display +EXPORT_SYMBOL vmlinux 0x3695edda request_resource +EXPORT_SYMBOL vmlinux 0x3697c6cd agp_backend_release +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36c6af51 intel_scu_ipc_iowrite8 +EXPORT_SYMBOL vmlinux 0x36d2fad0 vga_put +EXPORT_SYMBOL vmlinux 0x36d362d7 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x36da102b param_ops_ushort +EXPORT_SYMBOL vmlinux 0x36ec400e genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x37014e19 arp_send +EXPORT_SYMBOL vmlinux 0x37074420 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x370a339a param_set_long +EXPORT_SYMBOL vmlinux 0x3722a812 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x37356562 vme_slot_num +EXPORT_SYMBOL vmlinux 0x373e5f0e __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x37613521 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x3771b461 crc_ccitt +EXPORT_SYMBOL vmlinux 0x378afe79 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x379dee5f trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x37a74fc9 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b244c8 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c9260e md_write_end +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37eee6f1 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x3808103f bio_advance +EXPORT_SYMBOL vmlinux 0x38099e13 wrmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x380b3fc2 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381ccc13 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x3828443f security_path_rename +EXPORT_SYMBOL vmlinux 0x382d0ff7 __scm_destroy +EXPORT_SYMBOL vmlinux 0x382df951 fence_add_callback +EXPORT_SYMBOL vmlinux 0x3836a607 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x3861c880 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x3878d55d pneigh_lookup +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388799f6 unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38bd01b5 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x38d2102e __serio_register_port +EXPORT_SYMBOL vmlinux 0x38e3d38d d_find_alias +EXPORT_SYMBOL vmlinux 0x38fd13b3 dev_uc_add +EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x390ebfb3 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x3924f395 __tracepoint_write_msr +EXPORT_SYMBOL vmlinux 0x3925d91c __register_chrdev +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393a2922 ps2_end_command +EXPORT_SYMBOL vmlinux 0x393a2be2 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x39425863 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3949bd7a blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x39673774 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x397bda79 backlight_device_register +EXPORT_SYMBOL vmlinux 0x397cd55c blk_end_request_all +EXPORT_SYMBOL vmlinux 0x397df5df __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x39819a30 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399b3935 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x39a055f3 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x39a5e8f8 kmap_high +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39b72c49 fput +EXPORT_SYMBOL vmlinux 0x39d9f1a5 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x39f1c2f4 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a0f3c69 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush +EXPORT_SYMBOL vmlinux 0x3a339062 fscrypt_decrypt_bio_pages +EXPORT_SYMBOL vmlinux 0x3a43ad8a init_task +EXPORT_SYMBOL vmlinux 0x3a52d0e3 touch_buffer +EXPORT_SYMBOL vmlinux 0x3a61d45e acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0x3a624aeb vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x3a667837 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3a9ea881 param_get_charp +EXPORT_SYMBOL vmlinux 0x3aa8ca2a xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x3ab46d3f xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x3acc35d3 keyring_alloc +EXPORT_SYMBOL vmlinux 0x3ad9fd01 send_sig +EXPORT_SYMBOL vmlinux 0x3adf3831 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x3aee1031 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x3af39e33 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x3b0226e3 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x3b0a5360 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x3b201620 machine_real_restart +EXPORT_SYMBOL vmlinux 0x3b3a9ac5 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0x3b406a71 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x3b4ed135 framebuffer_release +EXPORT_SYMBOL vmlinux 0x3b50efce mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x3b5c4c53 nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b7c1310 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x3b85431c pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x3b953a70 allocate_resource +EXPORT_SYMBOL vmlinux 0x3baa4825 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0x3bb5114a prepare_to_wait +EXPORT_SYMBOL vmlinux 0x3bbc3ba7 __get_user_pages +EXPORT_SYMBOL vmlinux 0x3bc02af7 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x3bd5713b pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x3bd79034 devm_gpio_request +EXPORT_SYMBOL vmlinux 0x3c005d13 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c343bc2 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x3c3c3176 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c49f0a2 dqget +EXPORT_SYMBOL vmlinux 0x3c5099b0 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x3c6d81e6 mutex_lock +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c8c80da gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x3c8fe44f init_special_inode +EXPORT_SYMBOL vmlinux 0x3c94790a ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x3cb3931b sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x3cd9d9a3 nvm_submit_ppa_list +EXPORT_SYMBOL vmlinux 0x3ce21f00 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cf66881 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x3d1391e2 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x3d4da601 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x3d7c1ed7 msrs_alloc +EXPORT_SYMBOL vmlinux 0x3d9161a7 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x3d9c6061 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3da19c2c neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x3da38360 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x3db40330 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0x3db614c5 put_disk +EXPORT_SYMBOL vmlinux 0x3dba8146 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x3dbe7051 simple_unlink +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3de130fd lwtunnel_output +EXPORT_SYMBOL vmlinux 0x3df9e373 bdgrab +EXPORT_SYMBOL vmlinux 0x3dfa0f7e x86_dma_fallback_dev +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e052ce3 dev_uc_del +EXPORT_SYMBOL vmlinux 0x3e157878 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x3e16cb7d netdev_all_lower_get_next +EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0x3e4d35f9 fscrypt_get_policy +EXPORT_SYMBOL vmlinux 0x3e4db035 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x3e61297f load_nls_default +EXPORT_SYMBOL vmlinux 0x3e654f49 acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x3e82cd51 skb_store_bits +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3ea41506 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x3eaa26fa jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x3eaf1d42 param_ops_byte +EXPORT_SYMBOL vmlinux 0x3ec4e038 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x3edaa2a3 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x3ef5bcf1 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x3ef78d80 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x3eff5ac2 intel_scu_ipc_writev +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f20ca97 rtc_lock +EXPORT_SYMBOL vmlinux 0x3f220d88 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x3f273667 pci_set_master +EXPORT_SYMBOL vmlinux 0x3f28805d __frontswap_load +EXPORT_SYMBOL vmlinux 0x3f356336 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x3f357e74 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4eee54 iget_locked +EXPORT_SYMBOL vmlinux 0x3f59cc7f mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x3f5c6471 del_timer_sync +EXPORT_SYMBOL vmlinux 0x3f6c9686 mpage_writepage +EXPORT_SYMBOL vmlinux 0x3f768128 netdev_err +EXPORT_SYMBOL vmlinux 0x3f77765a __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x3f950212 current_fs_time +EXPORT_SYMBOL vmlinux 0x3f9608bf dev_add_pack +EXPORT_SYMBOL vmlinux 0x3fa70e51 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x3fd7e40e generic_removexattr +EXPORT_SYMBOL vmlinux 0x3fd9ea65 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ff61b5b phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x3ff715dd cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x400390fb acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0x400da8d3 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x401fec5a get_unmapped_area +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x402f1298 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x40507b40 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x407bbbc9 down_read_trylock +EXPORT_SYMBOL vmlinux 0x407ced1d do_splice_direct +EXPORT_SYMBOL vmlinux 0x40843d00 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x4097fa45 acpi_read_bit_register +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x409ccd71 proc_mkdir +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40bd5cd0 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x40c3f909 __nla_put +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40c89d46 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d224ba neigh_update +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40ed7205 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x4113ebec nonseekable_open +EXPORT_SYMBOL vmlinux 0x41179c94 poll_freewait +EXPORT_SYMBOL vmlinux 0x4131f4a7 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x4132cc37 __bforget +EXPORT_SYMBOL vmlinux 0x413c14ed cfb_copyarea +EXPORT_SYMBOL vmlinux 0x413dbe44 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x41460872 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4158c609 set_pages_uc +EXPORT_SYMBOL vmlinux 0x41785278 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x41862ad4 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x419e1dd8 locks_free_lock +EXPORT_SYMBOL vmlinux 0x41a6684f lock_page_memcg +EXPORT_SYMBOL vmlinux 0x41b1420d vga_client_register +EXPORT_SYMBOL vmlinux 0x41b3f0fc touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0x41c6b2a2 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x41d1505a pci_bus_get +EXPORT_SYMBOL vmlinux 0x41ea5802 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x41eacafe bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x41f8647f radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x41fc47ba dec_node_page_state +EXPORT_SYMBOL vmlinux 0x420e3810 scsi_print_command +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x4228b40d km_new_mapping +EXPORT_SYMBOL vmlinux 0x422c8e72 vfs_unlink +EXPORT_SYMBOL vmlinux 0x422eaf2b pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x42318996 blk_queue_split +EXPORT_SYMBOL vmlinux 0x423505b2 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x42350e8d ucs2_strlen +EXPORT_SYMBOL vmlinux 0x4248a5b7 __find_get_block +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x42670061 wireless_send_event +EXPORT_SYMBOL vmlinux 0x426b00a5 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x4292364c schedule +EXPORT_SYMBOL vmlinux 0x42c8de35 ioremap_nocache +EXPORT_SYMBOL vmlinux 0x42d396d4 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x42e3c0b9 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x432ee5f6 pci_pme_active +EXPORT_SYMBOL vmlinux 0x434bbc46 devm_request_resource +EXPORT_SYMBOL vmlinux 0x435124dd fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x43585fa9 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x438c9efc install_exec_creds +EXPORT_SYMBOL vmlinux 0x438cf2fe pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x43a6ef7b udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x43bbaebd pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x43bfd7a7 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x43d1d323 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x43f29312 __ht_create_irq +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x441eaba0 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x44468156 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x4449c05f skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x444a24b0 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x44680a87 dma_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x446c610e dm_register_target +EXPORT_SYMBOL vmlinux 0x448e085f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44ae1eaa phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x44afd6a4 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x44b5ee9a kasprintf +EXPORT_SYMBOL vmlinux 0x44cd73cd pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x45091d23 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x45125784 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x4513b097 inet_offloads +EXPORT_SYMBOL vmlinux 0x451cf615 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x4548d833 netdev_emerg +EXPORT_SYMBOL vmlinux 0x454c0c60 fence_array_create +EXPORT_SYMBOL vmlinux 0x455aebf4 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x459a70ce set_pages_array_wb +EXPORT_SYMBOL vmlinux 0x459d39f8 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x459d6951 __netif_schedule +EXPORT_SYMBOL vmlinux 0x45ad8576 blk_requeue_request +EXPORT_SYMBOL vmlinux 0x45c8d15a blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x45d63fe1 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x45ee617c account_page_redirty +EXPORT_SYMBOL vmlinux 0x46084295 kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0x462838f1 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count +EXPORT_SYMBOL vmlinux 0x46293561 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x464ebd89 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x4657ebaa fence_context_alloc +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x466518bb clk_get +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x46af07f1 skb_queue_head +EXPORT_SYMBOL vmlinux 0x46eef083 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x46f85edb cad_pid +EXPORT_SYMBOL vmlinux 0x46f9075f framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x47363b96 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x47397a82 lease_modify +EXPORT_SYMBOL vmlinux 0x473df666 mdio_device_register +EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x47421ace dma_ops +EXPORT_SYMBOL vmlinux 0x474b743e tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x47714572 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x477b51ff param_ops_invbool +EXPORT_SYMBOL vmlinux 0x478d10b2 ht_destroy_irq +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47a64740 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x47b4bef4 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x47e3b69e sk_capable +EXPORT_SYMBOL vmlinux 0x47fbed72 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x486fe9c2 bio_chain +EXPORT_SYMBOL vmlinux 0x488afca7 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x4897b5d2 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x48b0a4ce reuseport_alloc +EXPORT_SYMBOL vmlinux 0x48b4e6f4 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48bc976d alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x48d44a36 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x48d5222d __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x48dab3f5 inode_init_once +EXPORT_SYMBOL vmlinux 0x48fbbc94 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x4905ce79 fscrypt_d_ops +EXPORT_SYMBOL vmlinux 0x492bde64 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x4937dfc7 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x493cc731 i2c_release_client +EXPORT_SYMBOL vmlinux 0x495f4172 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x498a8393 km_policy_expired +EXPORT_SYMBOL vmlinux 0x4995a07a pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x499abc16 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49b48753 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x49d9ad41 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x49ea58be radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x49fa53b5 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x4a062657 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x4a203216 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x4a391e2c pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x4a619f83 memcpy +EXPORT_SYMBOL vmlinux 0x4a7b4231 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x4a8f56c4 vme_init_bridge +EXPORT_SYMBOL vmlinux 0x4aa4495f fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x4aa54636 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x4aa9545c lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x4abc1a46 fence_remove_callback +EXPORT_SYMBOL vmlinux 0x4aea5659 tcp_close +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b16cede request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b3085c6 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x4b4fe75b radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b64bdd8 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x4b667176 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x4b6928f9 pci_clear_master +EXPORT_SYMBOL vmlinux 0x4b9c7b91 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x4b9dfb04 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x4ba4ca4b seq_path +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bcdeed1 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x4bd2c16e netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4c03f301 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c0e4204 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x4c132fbf __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x4c218951 update_devfreq +EXPORT_SYMBOL vmlinux 0x4c2acb7c blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c2ec9b9 user_revoke +EXPORT_SYMBOL vmlinux 0x4c37322a iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x4c477847 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x4c5954d0 sk_wait_data +EXPORT_SYMBOL vmlinux 0x4c616fb0 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x4c78d175 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x4c878322 iosf_mbi_modify +EXPORT_SYMBOL vmlinux 0x4c8ec28f tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x4c973488 module_refcount +EXPORT_SYMBOL vmlinux 0x4ca1b893 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x4ca4d617 tcp_poll +EXPORT_SYMBOL vmlinux 0x4cafc8d9 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x4cd9df24 vme_register_driver +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4cdbbcc5 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x4cea8302 ___preempt_schedule_notrace +EXPORT_SYMBOL vmlinux 0x4d1a8f32 tcf_hashinfo_destroy +EXPORT_SYMBOL vmlinux 0x4d1b0094 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x4d27a335 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d2fb29e ihold +EXPORT_SYMBOL vmlinux 0x4d366ce4 generic_setxattr +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d52bdfb simple_open +EXPORT_SYMBOL vmlinux 0x4d5fa690 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x4d60413a __breadahead +EXPORT_SYMBOL vmlinux 0x4d666502 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x4d6b0e33 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4dab245e touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x4db48ce3 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x4dd2f9d2 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x4dd4287a tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4decfb93 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4dfb9a97 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x4e1070e7 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x4e1e7550 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x4e24e759 skb_unlink +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e4dfdc8 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e978b80 rt6_lookup +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4ee0d1a5 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x4eeadfd0 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x4ef0a1d9 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x4f0eb6af set_binfmt +EXPORT_SYMBOL vmlinux 0x4f107d04 vc_cons +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f320b8d scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x4f328384 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f402d60 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f5c129a gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query +EXPORT_SYMBOL vmlinux 0x4f68da5e __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f6b400b _copy_from_user +EXPORT_SYMBOL vmlinux 0x4f6bd1e8 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read +EXPORT_SYMBOL vmlinux 0x4f7b2718 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x4f7d0bb8 kmap +EXPORT_SYMBOL vmlinux 0x4f8806e7 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x4f8b5ddb _copy_to_user +EXPORT_SYMBOL vmlinux 0x4f9cbd88 rio_query_mport +EXPORT_SYMBOL vmlinux 0x4fa27f7a tso_count_descs +EXPORT_SYMBOL vmlinux 0x4fab7f62 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x4fb5bad9 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x4fbae6a6 uuid_le_to_bin +EXPORT_SYMBOL vmlinux 0x4fbec216 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x4fc44de3 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x4fd243c5 mount_nodev +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5010f5fc skb_append +EXPORT_SYMBOL vmlinux 0x50133dc5 tty_devnum +EXPORT_SYMBOL vmlinux 0x5042c34b agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x5050f4e5 no_llseek +EXPORT_SYMBOL vmlinux 0x50529870 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x5079d1d4 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x50b3359a nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50cb278c __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x50cdc87d of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del +EXPORT_SYMBOL vmlinux 0x50e666ef fscrypt_free_filename +EXPORT_SYMBOL vmlinux 0x50eedeb8 printk +EXPORT_SYMBOL vmlinux 0x51023526 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x51137eee tcf_exts_change +EXPORT_SYMBOL vmlinux 0x51147f23 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x51208840 down_write +EXPORT_SYMBOL vmlinux 0x5153b3a1 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x516024b4 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x51639936 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x51719973 dq_data_lock +EXPORT_SYMBOL vmlinux 0x5186518f profile_pc +EXPORT_SYMBOL vmlinux 0x51a390ca inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x51b4e483 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51d337cf sock_create_kern +EXPORT_SYMBOL vmlinux 0x51d81372 bio_split +EXPORT_SYMBOL vmlinux 0x51e2b5a3 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup +EXPORT_SYMBOL vmlinux 0x51f4a687 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x520751dd tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x521f7f4a cdrom_open +EXPORT_SYMBOL vmlinux 0x52299c93 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x523b13e6 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x524f69f6 mb_cache_entry_delete_block +EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0x526531f3 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x5278826a free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x528addb3 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x52994f91 phy_print_status +EXPORT_SYMBOL vmlinux 0x52aaf68d qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le +EXPORT_SYMBOL vmlinux 0x52beb465 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x52e62a63 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x52f3212f copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x530b1e4c rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x532ddb23 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x53413bbb bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x53669364 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x536f6e7c radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x537344ec elv_add_request +EXPORT_SYMBOL vmlinux 0x537b051a default_llseek +EXPORT_SYMBOL vmlinux 0x5396c2f5 alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53b5d99a skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x53bf4e7e cdrom_release +EXPORT_SYMBOL vmlinux 0x53c1763d inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x53cff1e3 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x53de9ab4 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x53dee0f0 new_inode +EXPORT_SYMBOL vmlinux 0x53e8259e pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x53f943e1 blk_get_request +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x541adfea kobject_get +EXPORT_SYMBOL vmlinux 0x541fa777 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x54257d30 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x542aa7cb get_user_pages +EXPORT_SYMBOL vmlinux 0x542d189b dev_warn +EXPORT_SYMBOL vmlinux 0x543a58bc sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register +EXPORT_SYMBOL vmlinux 0x54527c40 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x546313b4 fscrypt_get_ctx +EXPORT_SYMBOL vmlinux 0x5464d3f6 acpi_remove_sci_handler +EXPORT_SYMBOL vmlinux 0x546e8b04 x86_hyper_xen +EXPORT_SYMBOL vmlinux 0x54919a44 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x54951264 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54cae207 find_get_entry +EXPORT_SYMBOL vmlinux 0x54ce4b45 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x54d2e05b __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f1705f agp_copy_info +EXPORT_SYMBOL vmlinux 0x54f93735 arp_create +EXPORT_SYMBOL vmlinux 0x5503c3a1 __skb_checksum +EXPORT_SYMBOL vmlinux 0x5516c5e1 proc_set_size +EXPORT_SYMBOL vmlinux 0x5519507c seq_lseek +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x55382a19 mount_pseudo +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x5546deab uart_add_one_port +EXPORT_SYMBOL vmlinux 0x554a0740 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x555561cc inode_set_flags +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x5586c08b set_wb_congested +EXPORT_SYMBOL vmlinux 0x5593970d eth_header_cache +EXPORT_SYMBOL vmlinux 0x55a63f3a generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x55b65c0c dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55e60a36 queued_spin_unlock_wait +EXPORT_SYMBOL vmlinux 0x55fe01f8 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x56066070 vga_get +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x5641419b wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x564d1e16 sock_create +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x56532af7 generic_write_end +EXPORT_SYMBOL vmlinux 0x5669a70e user_path_create +EXPORT_SYMBOL vmlinux 0x56707f70 acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x5676a3e5 intel_scu_ipc_ioread8 +EXPORT_SYMBOL vmlinux 0x56773001 input_register_handler +EXPORT_SYMBOL vmlinux 0x567d2f55 __kernel_write +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x56a53e90 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x56a706d7 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x57018478 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x5705088a __vmalloc +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x57433233 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x57439565 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x574a8354 first_ec +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x575af70c on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x575c4895 blk_finish_request +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x57ac6318 qdisc_list_del +EXPORT_SYMBOL vmlinux 0x57bc627b __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits +EXPORT_SYMBOL vmlinux 0x57c5f997 md_done_sync +EXPORT_SYMBOL vmlinux 0x57d4c51b dev_addr_del +EXPORT_SYMBOL vmlinux 0x57eccb45 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x57f5822c sg_miter_next +EXPORT_SYMBOL vmlinux 0x5810a7a7 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x581f0a06 audit_log_task_info +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582298c6 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x582a1d93 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x583dd23b neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x584738f9 rdmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x5856e6c2 get_cached_acl +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x585b0f98 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem +EXPORT_SYMBOL vmlinux 0x586103be acpi_setup_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x5866f66e param_set_uint +EXPORT_SYMBOL vmlinux 0x5868f1df phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x5869b962 i2c_use_client +EXPORT_SYMBOL vmlinux 0x586fa6f6 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x588c2dbe skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x588d5cc6 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x589837e3 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x5899b768 drop_super +EXPORT_SYMBOL vmlinux 0x589f180d vfs_rename +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58da95ce acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x58e270b0 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58fef6f8 ist_info +EXPORT_SYMBOL vmlinux 0x59054ae5 __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x5916c95a generic_permission +EXPORT_SYMBOL vmlinux 0x591fb990 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x5944d015 __cachemode2pte_tbl +EXPORT_SYMBOL vmlinux 0x5946a103 read_dev_sector +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x5959ef9b blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x595a4aa0 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x595b91fb blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x59703aec sock_no_mmap +EXPORT_SYMBOL vmlinux 0x59973774 simple_lookup +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59adb9b2 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x59bc9609 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0x59c2c920 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x59d86f49 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x59ddda13 sock_from_file +EXPORT_SYMBOL vmlinux 0x59e59430 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a120070 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x5a1985c6 __tracepoint_rdpmc +EXPORT_SYMBOL vmlinux 0x5a1f5aab __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a501b78 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x5a5457d1 sock_create_lite +EXPORT_SYMBOL vmlinux 0x5a60a86c inet_recvmsg +EXPORT_SYMBOL vmlinux 0x5a6f6023 dev_get_stats +EXPORT_SYMBOL vmlinux 0x5a82c44a complete_and_exit +EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x5ad05f7c __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b1dbb51 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x5b22b034 dev_emerg +EXPORT_SYMBOL vmlinux 0x5b3b9c1d block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x5b3e2b86 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x5b692a55 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x5b6d9497 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x5b7856d2 elevator_init +EXPORT_SYMBOL vmlinux 0x5b7eec43 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x5b88fa91 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x5b8f6aa1 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x5bb974f6 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x5bce0dd4 __kfree_skb +EXPORT_SYMBOL vmlinux 0x5bd87d62 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x5be35837 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x5be40013 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x5c01c869 sync_file_create +EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x5c30b913 register_framebuffer +EXPORT_SYMBOL vmlinux 0x5c52b972 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x5c545234 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x5c55a7c9 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x5c5bbb15 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x5c5f8b8a pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x5c942219 scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x5c9c0148 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x5cddefae __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x5ce2ba90 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x5ce66eba down_read +EXPORT_SYMBOL vmlinux 0x5cef7baf input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x5cf0f1cc skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d00dea6 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x5d010ab8 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x5d132c78 free_netdev +EXPORT_SYMBOL vmlinux 0x5d2b2e64 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x5d2c4e5c page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x5d3c62e8 single_open_size +EXPORT_SYMBOL vmlinux 0x5d49fe8b dev_change_xdp_fd +EXPORT_SYMBOL vmlinux 0x5d4a8320 kvasprintf +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d56e4c7 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x5d717457 make_kuid +EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved +EXPORT_SYMBOL vmlinux 0x5d77ab8a dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x5d7854fe netif_device_attach +EXPORT_SYMBOL vmlinux 0x5d7cd6b0 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x5d8475e0 completion_done +EXPORT_SYMBOL vmlinux 0x5d91664a pci_assign_resource +EXPORT_SYMBOL vmlinux 0x5da09e57 netdev_change_features +EXPORT_SYMBOL vmlinux 0x5db12652 mmc_can_reset +EXPORT_SYMBOL vmlinux 0x5db1ae1e blk_start_queue +EXPORT_SYMBOL vmlinux 0x5db6e983 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x5dc0e73a sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x5dda285a inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x5debde42 __vfs_read +EXPORT_SYMBOL vmlinux 0x5decdce2 scsi_print_result +EXPORT_SYMBOL vmlinux 0x5df4c3db ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x5e042cbd dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x5e04fe1a netdev_alert +EXPORT_SYMBOL vmlinux 0x5e1e6bd9 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x5e244b27 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x5e77f595 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e8cb618 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5ea3da6a scsi_ioctl +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb56b05 vfs_write +EXPORT_SYMBOL vmlinux 0x5eb645fc scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x5eba112e param_array_ops +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed447f4 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x5ee3eb0c ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f059278 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f1a4ccf intel_scu_ipc_update_register +EXPORT_SYMBOL vmlinux 0x5f2284ef vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0x5f32f29d sock_update_memcg +EXPORT_SYMBOL vmlinux 0x5f3b450f dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x5f4b262d nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x5f708759 dev_alert +EXPORT_SYMBOL vmlinux 0x5f758933 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x5f842cbd keyring_clear +EXPORT_SYMBOL vmlinux 0x5f950fb2 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x5f98b585 security_task_getsecid +EXPORT_SYMBOL vmlinux 0x5fabd2bd clkdev_drop +EXPORT_SYMBOL vmlinux 0x5fb1951b fscrypt_fname_encrypted_size +EXPORT_SYMBOL vmlinux 0x5fb2e8ef idr_init +EXPORT_SYMBOL vmlinux 0x5fcf7899 lock_rename +EXPORT_SYMBOL vmlinux 0x5fd6dfb2 __init_rwsem +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fe92073 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x604316d8 acpi_finish_gpe +EXPORT_SYMBOL vmlinux 0x6043fc6a blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x605135c5 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x60537b5a __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x60560f3b fence_signal +EXPORT_SYMBOL vmlinux 0x60570969 eisa_bus_type +EXPORT_SYMBOL vmlinux 0x6061ee3a mmc_start_bkops +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x606f8988 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0x6073a94f sock_init_data +EXPORT_SYMBOL vmlinux 0x607676c3 freeze_super +EXPORT_SYMBOL vmlinux 0x60814252 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x60822877 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60b64f39 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x60b86f61 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x60bc7d3d nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x60ed56a2 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x60fc8b63 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x6103024c agp_find_bridge +EXPORT_SYMBOL vmlinux 0x610aaa40 mempool_destroy +EXPORT_SYMBOL vmlinux 0x61138155 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x6124d543 prepare_binprm +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x612f31b2 netlink_unicast +EXPORT_SYMBOL vmlinux 0x613a7390 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x6199fa01 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x61ac286b module_put +EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c0c309 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x61c896ed blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x61d0b07a tty_port_close_start +EXPORT_SYMBOL vmlinux 0x61df701e dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x62049256 acpi_disable +EXPORT_SYMBOL vmlinux 0x620e3251 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x6211b821 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x6237f6b5 acpi_enable_event +EXPORT_SYMBOL vmlinux 0x6241a2ab __copy_from_user_ll_nocache +EXPORT_SYMBOL vmlinux 0x62461136 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x624c0148 __elv_add_request +EXPORT_SYMBOL vmlinux 0x62550194 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x625c7c08 would_dump +EXPORT_SYMBOL vmlinux 0x626f76be page_mapped +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62766944 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x627a543a kernel_write +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x628a9398 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x628e9761 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x629ec483 __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x62d49d01 agp_put_bridge +EXPORT_SYMBOL vmlinux 0x62db0256 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x62f02dbb inet_csk_accept +EXPORT_SYMBOL vmlinux 0x62f046f7 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631e39f7 import_iovec +EXPORT_SYMBOL vmlinux 0x6327f38f netlink_set_err +EXPORT_SYMBOL vmlinux 0x632b4f58 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x632e0805 proto_register +EXPORT_SYMBOL vmlinux 0x6340526d key_put +EXPORT_SYMBOL vmlinux 0x6341c6d1 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x635da15d set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x636a5691 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0x636da163 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x636ea681 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x637f7cd4 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x6388591c down_timeout +EXPORT_SYMBOL vmlinux 0x639e94f2 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x63a01291 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x63a13ec6 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63b2af96 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63eacd36 follow_down_one +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6414d006 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x6414d049 netif_napi_del +EXPORT_SYMBOL vmlinux 0x6424bf7c dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x6433eb57 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x6434edb4 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x643fa6d0 __radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0x646eae00 dentry_open +EXPORT_SYMBOL vmlinux 0x64749833 bdi_init +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x649d762e d_rehash +EXPORT_SYMBOL vmlinux 0x64a4b84d cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64ab0e98 wait_for_completion +EXPORT_SYMBOL vmlinux 0x64c01c9c mark_info_dirty +EXPORT_SYMBOL vmlinux 0x64df5f2d devm_release_resource +EXPORT_SYMBOL vmlinux 0x64e08c40 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x64eae7ad set_memory_array_wb +EXPORT_SYMBOL vmlinux 0x64eb002c splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x6504de0a processors +EXPORT_SYMBOL vmlinux 0x650ca4db sock_wfree +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x655f1ab0 set_memory_array_wc +EXPORT_SYMBOL vmlinux 0x6564b88f kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x6565d33f scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x65680055 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x656e719c genphy_read_status +EXPORT_SYMBOL vmlinux 0x65a295bb atomic64_xchg_cx8 +EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry +EXPORT_SYMBOL vmlinux 0x65c1aff2 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x65c365eb sock_rfree +EXPORT_SYMBOL vmlinux 0x65cb36b1 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x65cdf410 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e18a97 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x65e40a51 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x65ff7bc0 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x66024e06 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x66239c5d follow_up +EXPORT_SYMBOL vmlinux 0x66355efc vprintk +EXPORT_SYMBOL vmlinux 0x663deb21 mdiobus_write +EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0x6653048a param_get_ushort +EXPORT_SYMBOL vmlinux 0x665a89c2 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x665d82a4 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x6672c282 register_netdevice +EXPORT_SYMBOL vmlinux 0x667cecc9 acpi_os_printf +EXPORT_SYMBOL vmlinux 0x667e4e80 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x66989a34 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x669bf80b proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x66beca7e blk_register_region +EXPORT_SYMBOL vmlinux 0x66d804b1 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x67057dbb agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x670ebce2 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x67135183 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x671a3ce1 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x672cd373 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x67340087 eth_header +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x677bbfe2 devm_memremap +EXPORT_SYMBOL vmlinux 0x677c596d inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x6797ad46 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x6798d474 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x67a1f2b9 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x67ad03d3 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b3b22f devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c16f16 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x67cfb803 clk_add_alias +EXPORT_SYMBOL vmlinux 0x67e0088f generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x67e123d3 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x67e9948f serio_bus +EXPORT_SYMBOL vmlinux 0x67f92ebc __next_node_in +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680ec266 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x681132c3 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x6817d463 x86_cpu_to_acpiid +EXPORT_SYMBOL vmlinux 0x681dbe72 serio_interrupt +EXPORT_SYMBOL vmlinux 0x68237c2f swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x682796ca flush_old_exec +EXPORT_SYMBOL vmlinux 0x683aa1f7 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x6848b140 nvm_find_target_type +EXPORT_SYMBOL vmlinux 0x68508641 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x685b93c8 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x685ba24e blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x685e31b5 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x68908218 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x689ce7d5 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x689fee77 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x68d5a483 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x68e9240b tcp_check_req +EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x69215276 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x692a6db6 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x693989e8 udp_set_csum +EXPORT_SYMBOL vmlinux 0x6948bd99 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x6952b8bc devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69ad848d dev_set_group +EXPORT_SYMBOL vmlinux 0x69c03fc5 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x6a003595 mount_subtree +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a047403 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x6a10582b proc_set_user +EXPORT_SYMBOL vmlinux 0x6a164ccb xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x6a27bfce csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x6a48a9f9 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x6a490f5a xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x6a4f11e1 set_pages_nx +EXPORT_SYMBOL vmlinux 0x6a5215e9 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a809040 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x6a819f41 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6ad85887 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6ae3d003 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af19a08 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x6afe82d3 block_truncate_page +EXPORT_SYMBOL vmlinux 0x6b04c08f gnttab_alloc_pages +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b3232b0 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x6b48790d mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x6b4cfd7e skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x6b4dcff7 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x6b4e9e04 kmap_to_page +EXPORT_SYMBOL vmlinux 0x6b632e96 unregister_nls +EXPORT_SYMBOL vmlinux 0x6b724055 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x6b74b9be bit_waitqueue +EXPORT_SYMBOL vmlinux 0x6b923568 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x6b9aef82 tty_vhangup +EXPORT_SYMBOL vmlinux 0x6ba4275f sock_no_getname +EXPORT_SYMBOL vmlinux 0x6ba9b990 free_user_ns +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bcf066d _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x6bd08f45 done_path_create +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6bde462d simple_link +EXPORT_SYMBOL vmlinux 0x6bf1c17f pv_lock_ops +EXPORT_SYMBOL vmlinux 0x6bf384fc __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x6bfb6b7b agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x6c0f7909 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c2becd0 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x6c2e3320 strncmp +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c69d4d0 tcf_hash_create +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c7c1394 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x6c9482fd mntput +EXPORT_SYMBOL vmlinux 0x6c99d1f0 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x6ca52d0f jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x6cab4218 sock_edemux +EXPORT_SYMBOL vmlinux 0x6cb2e83b give_up_console +EXPORT_SYMBOL vmlinux 0x6cb65880 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x6ccbd779 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x6ccd5baf tcp_release_cb +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6cdf267b inet_release +EXPORT_SYMBOL vmlinux 0x6cdfcf79 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x6ce3a275 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x6ce98f53 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x6ced391a pci_release_regions +EXPORT_SYMBOL vmlinux 0x6cf2a15e ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d12cfd9 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x6d13c161 scsi_device_put +EXPORT_SYMBOL vmlinux 0x6d1d5d9b iosf_mbi_write +EXPORT_SYMBOL vmlinux 0x6d20f05b generic_pipe_buf_steal +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 0x6d40afe0 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x6d749d6e peernet2id_alloc +EXPORT_SYMBOL vmlinux 0x6d9a2784 key_alloc +EXPORT_SYMBOL vmlinux 0x6d9fb840 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x6da603f0 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x6daa1b8d generic_update_time +EXPORT_SYMBOL vmlinux 0x6dc0c9dc down_interruptible +EXPORT_SYMBOL vmlinux 0x6dc6dd56 down +EXPORT_SYMBOL vmlinux 0x6dc98318 dquot_file_open +EXPORT_SYMBOL vmlinux 0x6dcaf111 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e50b13b is_bad_inode +EXPORT_SYMBOL vmlinux 0x6e5a9258 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e79a0dd agp_free_memory +EXPORT_SYMBOL vmlinux 0x6e86d24d blk_integrity_register +EXPORT_SYMBOL vmlinux 0x6e987151 vfs_readv +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6eafcc7a simple_transaction_read +EXPORT_SYMBOL vmlinux 0x6eb3295e __neigh_create +EXPORT_SYMBOL vmlinux 0x6eca4d4f mod_timer_pending +EXPORT_SYMBOL vmlinux 0x6ef66e8a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x6f051c7e dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x6f167faa tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x6f1bf786 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x6f1fcf36 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x6f2e4f46 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x6f556bdb acpi_get_gpe_device +EXPORT_SYMBOL vmlinux 0x6f561093 kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0x6f577c3f skb_pad +EXPORT_SYMBOL vmlinux 0x6f5ff421 scsi_device_get +EXPORT_SYMBOL vmlinux 0x6f6cfee6 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f8e5e72 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fdd722e skb_insert +EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write +EXPORT_SYMBOL vmlinux 0x6ff4f026 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x7003d55e d_tmpfile +EXPORT_SYMBOL vmlinux 0x700a9bcc xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x701c546a write_inode_now +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x7029f11b iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0x7031028d pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x70312720 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x70401ca8 dev_driver_string +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x707cccb4 flow_cache_fini +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x707f93dd preempt_schedule +EXPORT_SYMBOL vmlinux 0x70805ebf remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x7088ce72 printk_emit +EXPORT_SYMBOL vmlinux 0x70895539 netdev_state_change +EXPORT_SYMBOL vmlinux 0x708a79f7 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x708d08b5 copy_to_iter +EXPORT_SYMBOL vmlinux 0x708f0185 phy_attach +EXPORT_SYMBOL vmlinux 0x7096f0c7 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x70a62524 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x70cfb796 d_splice_alias +EXPORT_SYMBOL vmlinux 0x70d1f8f3 strncat +EXPORT_SYMBOL vmlinux 0x70d609eb ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x70d74a1e shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0x70e4985c pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x70fbe748 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x70ff2215 set_pages_wb +EXPORT_SYMBOL vmlinux 0x711ca81e agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x711d0dd3 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x713d940f swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x713e4d3e misc_register +EXPORT_SYMBOL vmlinux 0x713ed00c iov_iter_advance +EXPORT_SYMBOL vmlinux 0x7152b9fd inet_listen +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x717d9d80 xfrm_input +EXPORT_SYMBOL vmlinux 0x7180ef93 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71b2c41b invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x71b8a8ed try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x71c532b4 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x71cfe4b2 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x71f61f74 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x721cbc15 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x721f461c nvm_register_tgt_type +EXPORT_SYMBOL vmlinux 0x7230f756 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x7250f31d blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x7264273a d_delete +EXPORT_SYMBOL vmlinux 0x7274ad29 pipe_lock +EXPORT_SYMBOL vmlinux 0x727ae74b inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x727db740 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x728cc4c7 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x728e1afe blk_recount_segments +EXPORT_SYMBOL vmlinux 0x729c7ead __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72c697b4 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x72c81797 kobject_del +EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x7311ce40 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731c623d fscrypt_process_policy +EXPORT_SYMBOL vmlinux 0x7325589c jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x732f28f5 file_open_root +EXPORT_SYMBOL vmlinux 0x73423590 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x7351999f abort_creds +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x735e98f3 d_drop +EXPORT_SYMBOL vmlinux 0x736487ce blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x738714db ida_pre_get +EXPORT_SYMBOL vmlinux 0x738803e6 strnlen +EXPORT_SYMBOL vmlinux 0x73b66196 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x73c9deaa generic_readlink +EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x73e01109 path_is_under +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73ea4f66 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x73edf56e nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x73f51593 set_nlink +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x741316f4 cdev_add +EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus +EXPORT_SYMBOL vmlinux 0x743b4ae3 atomic64_inc_not_zero_cx8 +EXPORT_SYMBOL vmlinux 0x745f20a3 idr_is_empty +EXPORT_SYMBOL vmlinux 0x7463e7d3 devm_memunmap +EXPORT_SYMBOL vmlinux 0x746e9af5 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x747e94cd ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x747fc192 sock_release +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74b0bdb1 key_invalidate +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c2dd2a inet_gso_segment +EXPORT_SYMBOL vmlinux 0x74d9065f revert_creds +EXPORT_SYMBOL vmlinux 0x74e5c98f ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x751fb3c2 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x75271716 save_processor_state +EXPORT_SYMBOL vmlinux 0x752a4745 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x753014ea follow_pfn +EXPORT_SYMBOL vmlinux 0x7531e3dc acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x753ce191 dst_destroy +EXPORT_SYMBOL vmlinux 0x753fc30a mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x754a46be pnpbios_protocol +EXPORT_SYMBOL vmlinux 0x756477cc tty_register_driver +EXPORT_SYMBOL vmlinux 0x756c3c88 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x75811312 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7587b4f1 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x758d534c devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +EXPORT_SYMBOL vmlinux 0x759ed4f1 pci_enable_msix +EXPORT_SYMBOL vmlinux 0x75a16ceb blk_start_queue_async +EXPORT_SYMBOL vmlinux 0x75ab343e dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x75b5bd8d lease_get_mtime +EXPORT_SYMBOL vmlinux 0x75bc549a x86_cpu_to_apicid +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75c5ad7d posix_test_lock +EXPORT_SYMBOL vmlinux 0x75d21809 vprintk_emit +EXPORT_SYMBOL vmlinux 0x75dbfc4f ppp_register_channel +EXPORT_SYMBOL vmlinux 0x75dc3bb1 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x75eb45af tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x75f01770 path_put +EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x762872b2 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x762add85 atomic64_inc_return_cx8 +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x7653a22c tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x765aaad2 nla_append +EXPORT_SYMBOL vmlinux 0x76693cb4 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x76707104 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x7674f366 sk_busy_loop +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x769430bd jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x769e06d7 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be +EXPORT_SYMBOL vmlinux 0x76de8705 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x76e7622f clocksource_unregister +EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order +EXPORT_SYMBOL vmlinux 0x770186bb bdi_register_owner +EXPORT_SYMBOL vmlinux 0x770a0036 isapnp_cfg_begin +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x7744644e iov_iter_zero +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x77477caa scsi_register_driver +EXPORT_SYMBOL vmlinux 0x774b24f2 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x7764489e blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x776b10ba kill_anon_super +EXPORT_SYMBOL vmlinux 0x77785ab2 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x778f5e30 genphy_suspend +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77b604d1 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x77b72d70 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c75907 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x77cf7037 iput +EXPORT_SYMBOL vmlinux 0x77e587f1 skb_checksum +EXPORT_SYMBOL vmlinux 0x77f30106 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x780a3c0a ps2_command +EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt +EXPORT_SYMBOL vmlinux 0x7812da80 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x7818ff00 proc_douintvec +EXPORT_SYMBOL vmlinux 0x78296f59 ex_handler_clear_fs +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x78427538 inet6_bind +EXPORT_SYMBOL vmlinux 0x78465fc2 posix_acl_init +EXPORT_SYMBOL vmlinux 0x785adb17 eisa_driver_register +EXPORT_SYMBOL vmlinux 0x78662714 simple_write_begin +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x7890ad1f scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e030cb bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x78e739aa up +EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method +EXPORT_SYMBOL vmlinux 0x791ed1c9 rename_lock +EXPORT_SYMBOL vmlinux 0x792d7d5f __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x7935d009 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x7991f87e mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x79a4a561 alloc_file +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79b423fc pnp_register_driver +EXPORT_SYMBOL vmlinux 0x79bd7413 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0x79ec1553 rwsem_wake +EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a5de2cb __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x7a643c3a d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x7a67424d __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x7a6cbb9a pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x7a7a1690 pci_dev_put +EXPORT_SYMBOL vmlinux 0x7a82cb47 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7a8dbdb3 thaw_super +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a9b2664 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab493a9 udp_seq_open +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7acefaa0 tty_name +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ae85c62 dump_skip +EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user +EXPORT_SYMBOL vmlinux 0x7af72b73 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7b02094a inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x7b042009 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x7b0e06da bio_integrity_free +EXPORT_SYMBOL vmlinux 0x7b134ddf acpi_get_name +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress +EXPORT_SYMBOL vmlinux 0x7b2339ac kobject_put +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b3185d6 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x7b3b6106 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b78343d inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x7b7ef01b blk_delay_queue +EXPORT_SYMBOL vmlinux 0x7ba6bcfd tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x7bb52704 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x7bddf8e4 mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1ba1d6 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x7c36207a ilookup +EXPORT_SYMBOL vmlinux 0x7c435df6 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c4f85ad xfrm_register_km +EXPORT_SYMBOL vmlinux 0x7c5a8b59 unlock_page +EXPORT_SYMBOL vmlinux 0x7c7390d5 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x7c7acbf1 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x7c8d7ea1 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x7c92d4af shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cdbdbe5 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce83365 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7d028f9a lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11beed jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d16ab00 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x7d1c58e4 input_inject_event +EXPORT_SYMBOL vmlinux 0x7d1e2d28 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x7d5127de blk_fetch_request +EXPORT_SYMBOL vmlinux 0x7d514be8 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x7d6447f6 clear_inode +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d84f9f3 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x7d8d77d4 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port +EXPORT_SYMBOL vmlinux 0x7d95bff4 fscrypt_decrypt_page +EXPORT_SYMBOL vmlinux 0x7d96cea3 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x7da525aa dev_printk +EXPORT_SYMBOL vmlinux 0x7da67b0a qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x7db95b69 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x7dbc2e57 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0x7dca12eb tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x7dd9d4b2 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e18e8f9 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x7e1966c0 fence_signal_locked +EXPORT_SYMBOL vmlinux 0x7e495f4d rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x7e66f8ce dm_get_device +EXPORT_SYMBOL vmlinux 0x7e7fc3fb __wake_up_bit +EXPORT_SYMBOL vmlinux 0x7eb51e10 release_sock +EXPORT_SYMBOL vmlinux 0x7ecb001b __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x7ed7edf7 neigh_lookup +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ef96251 pcim_iomap +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f1119d2 set_create_files_as +EXPORT_SYMBOL vmlinux 0x7f148dd5 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f299662 save_mount_options +EXPORT_SYMBOL vmlinux 0x7f2a190f max8998_write_reg +EXPORT_SYMBOL vmlinux 0x7f2f4827 napi_complete_done +EXPORT_SYMBOL vmlinux 0x7f324f4d try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7f5f4c44 vga_switcheroo_set_dynamic_switch +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f68fed0 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x7f6e6628 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f8d587a set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x7f8e0d9d request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x7fa2cecd page_mapping +EXPORT_SYMBOL vmlinux 0x7fa2cf82 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x7fd419e2 param_set_ushort +EXPORT_SYMBOL vmlinux 0x7fda5455 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7ff220a1 mmc_add_host +EXPORT_SYMBOL vmlinux 0x7ff3b187 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x800fb92b full_name_hash +EXPORT_SYMBOL vmlinux 0x80390bce mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x804b61d3 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x80623b53 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x807a3151 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x809388ca idr_destroy +EXPORT_SYMBOL vmlinux 0x80a6458e scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x80ac034c netlink_broadcast +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d9ca85 paravirt_ticketlocks_enabled +EXPORT_SYMBOL vmlinux 0x810519fd hashlen_string +EXPORT_SYMBOL vmlinux 0x81144f9d idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x81178a4b security_path_mknod +EXPORT_SYMBOL vmlinux 0x81243cb9 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x8124e66a jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x81346dc6 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x81501b99 vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x8158dd35 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815b8e45 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x8160c4c9 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x81682eb6 put_tty_driver +EXPORT_SYMBOL vmlinux 0x81784f96 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x817f75ab dquot_commit +EXPORT_SYMBOL vmlinux 0x81b9d090 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e06b50 kern_path +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81f63548 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x81fac2ca phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x82038725 cpumask_any_but +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0x82136f14 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x8235805b memmove +EXPORT_SYMBOL vmlinux 0x8244a5f6 search_binary_handler +EXPORT_SYMBOL vmlinux 0x824592ca remove_arg_zero +EXPORT_SYMBOL vmlinux 0x824762b4 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x8250186f pnp_is_active +EXPORT_SYMBOL vmlinux 0x825a3ab4 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x8278d493 irq_to_desc +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x8291f995 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x82bd8a8c vme_bus_type +EXPORT_SYMBOL vmlinux 0x82d64c84 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x82e43f91 sync_blockdev +EXPORT_SYMBOL vmlinux 0x82e9e2c7 fd_install +EXPORT_SYMBOL vmlinux 0x82fdf320 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x830b4876 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x830e547b ioremap_prot +EXPORT_SYMBOL vmlinux 0x831d69ce register_shrinker +EXPORT_SYMBOL vmlinux 0x83285d6b request_key_async +EXPORT_SYMBOL vmlinux 0x8329e6f0 memset +EXPORT_SYMBOL vmlinux 0x833a27c6 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x833c03aa acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x8343a433 km_is_alive +EXPORT_SYMBOL vmlinux 0x83484286 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x835e81ca gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x8362e858 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x838a0919 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8399f328 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83bffda3 vga_switcheroo_init_domain_pm_optimus_hdmi_audio +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83d8554d unregister_qdisc +EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x8417f512 acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0x841bbe1a dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x842678ba serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x843a0a78 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x84746f5e i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x8475593a blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x8487ff94 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x84c1eff4 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x84dc85b0 down_write_killable +EXPORT_SYMBOL vmlinux 0x84ead776 agp_enable +EXPORT_SYMBOL vmlinux 0x84f8f882 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x84f923a2 icmpv6_send +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x85145d8e tty_unlock +EXPORT_SYMBOL vmlinux 0x851b1ac1 revalidate_disk +EXPORT_SYMBOL vmlinux 0x8521da97 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x8526c35a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x856f8529 netif_napi_add +EXPORT_SYMBOL vmlinux 0x857582f7 acpi_enable_all_wakeup_gpes +EXPORT_SYMBOL vmlinux 0x857a3e9e devfreq_add_device +EXPORT_SYMBOL vmlinux 0x85813d10 migrate_page +EXPORT_SYMBOL vmlinux 0x85825898 add_timer +EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x85a177a1 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x85a29f52 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bc11b7 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x85d472aa queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f336e7 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0x85f34635 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x860d05b3 km_report +EXPORT_SYMBOL vmlinux 0x861e22a4 acpi_map_cpu +EXPORT_SYMBOL vmlinux 0x861f6bb2 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x8631c1d0 dquot_operations +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x86424610 tty_lock +EXPORT_SYMBOL vmlinux 0x864746c7 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x865c8847 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x865d263c tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x866c671d mount_single +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86924ec0 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x869dff7c netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x869fba62 cdev_alloc +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86e89eb9 key_validate +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x86fe72a5 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x8704d579 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x87117585 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x871f45ed agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x87212214 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x8724027a blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x8751b45a elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x8767d2c5 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x876c21c6 cpu_info +EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write +EXPORT_SYMBOL vmlinux 0x87704e6b __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x87822725 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x878accfb vme_irq_free +EXPORT_SYMBOL vmlinux 0x878cd015 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x879dde92 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x87a6445d crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x87aaddf8 wrmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x87ebf7a0 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x87ee211d nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x87f03e52 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x87f8ada2 commit_creds +EXPORT_SYMBOL vmlinux 0x881aceee dma_release_from_coherent +EXPORT_SYMBOL vmlinux 0x881f5c2e write_one_page +EXPORT_SYMBOL vmlinux 0x88321413 d_set_d_op +EXPORT_SYMBOL vmlinux 0x88675906 bmap +EXPORT_SYMBOL vmlinux 0x88782ba6 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x8878851f i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x888d7e52 md_error +EXPORT_SYMBOL vmlinux 0x88b6384d acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x88bcc6b0 generic_getxattr +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88f04ef7 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x88f0d2cf sock_wake_async +EXPORT_SYMBOL vmlinux 0x892b26a0 set_memory_nx +EXPORT_SYMBOL vmlinux 0x8964f31d mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x896695d7 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x89757c8e pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x8984d29d mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x89a8c706 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89c2c7fb blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x89cd219b dev_mc_flush +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89e93c97 fscrypt_release_ctx +EXPORT_SYMBOL vmlinux 0x89ff5954 scsi_execute +EXPORT_SYMBOL vmlinux 0x8a045daa boot_cpu_data +EXPORT_SYMBOL vmlinux 0x8a0b12c6 complete_all +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a2f259a bioset_create +EXPORT_SYMBOL vmlinux 0x8a3012f2 pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a54fb87 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x8a6944f9 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x8a6ce2d9 param_ops_bool +EXPORT_SYMBOL vmlinux 0x8a74d54b nf_hook_slow +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a80d7a5 acpi_error +EXPORT_SYMBOL vmlinux 0x8a841884 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x8a8560b3 xattr_full_name +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa1046b tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x8aac3e0e tcp_connect +EXPORT_SYMBOL vmlinux 0x8ae99469 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0x8af4935f radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x8b0e8855 seq_read +EXPORT_SYMBOL vmlinux 0x8b12612f __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x8b18496f __copy_to_user_ll +EXPORT_SYMBOL vmlinux 0x8b184b92 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x8b23eccb dget_parent +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b589a74 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b7fd027 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b8fe8c4 seq_puts +EXPORT_SYMBOL vmlinux 0x8b9678b4 phy_stop +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8ba64c06 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x8bb961a4 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x8c00ab0b ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x8c0e7862 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x8c1291b9 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c359254 sock_no_accept +EXPORT_SYMBOL vmlinux 0x8c433382 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x8c44d2db redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x8c5ea40e inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c90fc09 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x8c928641 simple_getattr +EXPORT_SYMBOL vmlinux 0x8c99ad22 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0x8cc796e1 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8cf6084c qdisc_reset +EXPORT_SYMBOL vmlinux 0x8cf9c043 __block_write_begin +EXPORT_SYMBOL vmlinux 0x8cfbb69e udp_table +EXPORT_SYMBOL vmlinux 0x8cff7b3a copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x8d13b94c unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x8d15114a __release_region +EXPORT_SYMBOL vmlinux 0x8d19c717 seq_release_private +EXPORT_SYMBOL vmlinux 0x8d228a47 dcb_getapp +EXPORT_SYMBOL vmlinux 0x8d2a5351 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d6f81b4 __div64_32 +EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d837f3b pnp_get_resource +EXPORT_SYMBOL vmlinux 0x8d838d91 ida_remove +EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface +EXPORT_SYMBOL vmlinux 0x8da9e5c6 serio_open +EXPORT_SYMBOL vmlinux 0x8daf8c42 dql_init +EXPORT_SYMBOL vmlinux 0x8dbe4d4b inet6_ioctl +EXPORT_SYMBOL vmlinux 0x8dc6e564 restore_processor_state +EXPORT_SYMBOL vmlinux 0x8de9c9ca scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x8def4986 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x8df75f56 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0x8e0f7ca2 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x8e34a950 neigh_xmit +EXPORT_SYMBOL vmlinux 0x8e3c1f23 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x8e4067f2 seq_write +EXPORT_SYMBOL vmlinux 0x8e6833d0 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e78d011 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x8e813b12 posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x8e888ec3 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x8eae8963 up_read +EXPORT_SYMBOL vmlinux 0x8eaea4ba unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8eb44bb1 page_address +EXPORT_SYMBOL vmlinux 0x8eb734ea netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x8ed68f6e vfs_link +EXPORT_SYMBOL vmlinux 0x8ed92aa5 netif_skb_features +EXPORT_SYMBOL vmlinux 0x8edd365d dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x8efa064b input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x8f20ec28 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f3278cb scsi_remove_device +EXPORT_SYMBOL vmlinux 0x8f538ef6 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x8f5592cd dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x8f634fe7 pci_find_capability +EXPORT_SYMBOL vmlinux 0x8f89be17 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fa2b759 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x8fa57701 backlight_force_update +EXPORT_SYMBOL vmlinux 0x8fb01de4 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x8fd1152e _raw_write_unlock +EXPORT_SYMBOL vmlinux 0x8fdf772a init_timer_key +EXPORT_SYMBOL vmlinux 0x8fe59cef convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0x8fe7f909 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x8ff27c10 i2c_master_recv +EXPORT_SYMBOL vmlinux 0x8ff4079b pv_irq_ops +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x90032b30 efi +EXPORT_SYMBOL vmlinux 0x9010d141 account_page_dirtied +EXPORT_SYMBOL vmlinux 0x903cdbf5 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x90443473 __skb_csum_offload_chk +EXPORT_SYMBOL vmlinux 0x90536760 register_console +EXPORT_SYMBOL vmlinux 0x90695906 vme_free_consistent +EXPORT_SYMBOL vmlinux 0x908575fe queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0x9098ff0e vme_lm_request +EXPORT_SYMBOL vmlinux 0x90a2f2c0 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x90b42588 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x90b67047 bdget_disk +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x910000c8 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x91046ee3 neigh_destroy +EXPORT_SYMBOL vmlinux 0x912e6112 ll_rw_block +EXPORT_SYMBOL vmlinux 0x913dc64d xen_biovec_phys_mergeable +EXPORT_SYMBOL vmlinux 0x91415d4d input_unregister_device +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x91534687 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x917882c4 finish_open +EXPORT_SYMBOL vmlinux 0x9182c037 vfs_fsync +EXPORT_SYMBOL vmlinux 0x9188d413 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x91906112 param_set_invbool +EXPORT_SYMBOL vmlinux 0x9190804d force_sig +EXPORT_SYMBOL vmlinux 0x91941dc0 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x91967e8e xen_selfballoon_init +EXPORT_SYMBOL vmlinux 0x919c44d1 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x91aaca36 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x91b13f74 iterate_dir +EXPORT_SYMBOL vmlinux 0x91bd71f4 seq_escape +EXPORT_SYMBOL vmlinux 0x91d30bbb dm_put_table_device +EXPORT_SYMBOL vmlinux 0x91e77fd3 jbd2_journal_inode_add_write +EXPORT_SYMBOL vmlinux 0x91edc22c __put_page +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x921363f4 f_setown +EXPORT_SYMBOL vmlinux 0x9218cff1 adjust_resource +EXPORT_SYMBOL vmlinux 0x922368a3 rtnl_notify +EXPORT_SYMBOL vmlinux 0x922c6bfa pci_iounmap +EXPORT_SYMBOL vmlinux 0x9235567a pci_select_bars +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x9246932e mmc_remove_host +EXPORT_SYMBOL vmlinux 0x92504810 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92565c45 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x926e7236 phy_init_eee +EXPORT_SYMBOL vmlinux 0x9280d302 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x928653e6 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x92897e3d default_idle +EXPORT_SYMBOL vmlinux 0x92a552f0 dquot_release +EXPORT_SYMBOL vmlinux 0x92adf970 dma_supported +EXPORT_SYMBOL vmlinux 0x92e0830e simple_readpage +EXPORT_SYMBOL vmlinux 0x92ee9350 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x92f19827 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x92f6767f lg_local_lock +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x930857c3 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x93092e0a __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x931c76d6 flush_signals +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x932493a8 iosf_mbi_read +EXPORT_SYMBOL vmlinux 0x933ff5eb __blk_end_request +EXPORT_SYMBOL vmlinux 0x9351c32d generic_writepages +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x93913de8 pci_set_vpd_size +EXPORT_SYMBOL vmlinux 0x93936db6 pv_cpu_ops +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93d45507 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x93e7bae0 block_write_begin +EXPORT_SYMBOL vmlinux 0x93ea3bd1 md_update_sb +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x9405587d genphy_resume +EXPORT_SYMBOL vmlinux 0x940c3375 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x9449b03a sock_no_connect +EXPORT_SYMBOL vmlinux 0x9453a116 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x945cbef5 sock_alloc +EXPORT_SYMBOL vmlinux 0x947891a8 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0x947d083a i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x948ed93a generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94ae18eb ip_options_compile +EXPORT_SYMBOL vmlinux 0x94bdd17d dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x94f7970a napi_consume_skb +EXPORT_SYMBOL vmlinux 0x94fc3a0f xfrm_register_type +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x951ce5b6 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x9532d829 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x9552c468 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x9555648c xfrm_init_state +EXPORT_SYMBOL vmlinux 0x9563110b d_obtain_alias +EXPORT_SYMBOL vmlinux 0x9566febd locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x9578ce30 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x957b262c __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x95bc5e7c jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x95bd6e26 acpi_install_sci_handler +EXPORT_SYMBOL vmlinux 0x95dc7a09 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x95e5f8ca qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x95ec9cc8 vfs_llseek +EXPORT_SYMBOL vmlinux 0x95f1c5c1 release_pages +EXPORT_SYMBOL vmlinux 0x95f9d752 touch_atime +EXPORT_SYMBOL vmlinux 0x9603e829 d_genocide +EXPORT_SYMBOL vmlinux 0x960f9837 napi_disable +EXPORT_SYMBOL vmlinux 0x9612c3b2 param_set_charp +EXPORT_SYMBOL vmlinux 0x962d1786 kmap_atomic +EXPORT_SYMBOL vmlinux 0x963bf7e5 clkdev_alloc +EXPORT_SYMBOL vmlinux 0x9647fbb9 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x965173f9 blk_peek_request +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x96664564 km_state_notify +EXPORT_SYMBOL vmlinux 0x966d7f65 genphy_update_link +EXPORT_SYMBOL vmlinux 0x9680983e sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x9687b9a5 tcp_seq_open +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x968ee09b pci_release_region +EXPORT_SYMBOL vmlinux 0x968eea90 mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x96961c5f pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x969edf10 tty_kref_put +EXPORT_SYMBOL vmlinux 0x96a71830 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x9705ab31 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x97106714 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x9711cad9 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x97159a78 inet_frags_init +EXPORT_SYMBOL vmlinux 0x97178e08 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x97363543 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x97363d8b pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x973c2379 tcf_hash_check +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x974a73b8 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x97501d60 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x976a7fff blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x97711b52 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x97773bac kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x977935d3 ab3100_event_register +EXPORT_SYMBOL vmlinux 0x9781fdff inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97ab2130 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x97cca4fa tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x97d0b79c __ip_select_ident +EXPORT_SYMBOL vmlinux 0x97de0ddd acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x97e13a3b fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x97ed6028 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x98148fc0 elevator_alloc +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x98273dde phy_init_hw +EXPORT_SYMBOL vmlinux 0x98566f88 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x985ea05d deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x9878745c _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x988cad29 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x988ed85d set_memory_x +EXPORT_SYMBOL vmlinux 0x98b7b6ba elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x98c994d1 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x98ca5b5f tcp_filter +EXPORT_SYMBOL vmlinux 0x98d11761 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x98e71dc9 simple_get_link +EXPORT_SYMBOL vmlinux 0x98fba68e mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x990815ed radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x99233c32 cpu_core_map +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x9950db64 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x995ad1b4 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x996ea328 uart_register_driver +EXPORT_SYMBOL vmlinux 0x997ab913 dst_alloc +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a57ab6 phy_suspend +EXPORT_SYMBOL vmlinux 0x99aad881 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x99b16f8c release_resource +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99dd42e1 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x9a0aff9c i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x9a125ded dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a49155b inet_add_protocol +EXPORT_SYMBOL vmlinux 0x9a5e50e0 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x9a6a83f9 cmos_lock +EXPORT_SYMBOL vmlinux 0x9a7fe361 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x9a9cf5ce rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x9aa2e13d kern_path_create +EXPORT_SYMBOL vmlinux 0x9abda837 xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x9aeae56b pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9af81c64 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x9b061325 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x9b104ce4 __getblk_slow +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b337fb2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b40e6e8 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x9b488a17 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x9b55f5e0 posix_lock_file +EXPORT_SYMBOL vmlinux 0x9b68bc22 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b85d3fa __sb_start_write +EXPORT_SYMBOL vmlinux 0x9b9d864f skb_tx_error +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba146bf wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x9ba3c629 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bb5eb6e rwsem_down_write_failed_killable +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9bc420b1 kernel_listen +EXPORT_SYMBOL vmlinux 0x9bc4b43d pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x9be2eb9d sockfd_lookup +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9beb1002 make_kprojid +EXPORT_SYMBOL vmlinux 0x9beca3f4 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x9c04cda8 mmc_put_card +EXPORT_SYMBOL vmlinux 0x9c2880f7 udp_proc_register +EXPORT_SYMBOL vmlinux 0x9c2c944a __copy_from_user_ll_nocache_nozero +EXPORT_SYMBOL vmlinux 0x9c366950 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c50857a nvm_get_blk +EXPORT_SYMBOL vmlinux 0x9c5ddfe9 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x9c82166b bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x9c92d94d radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cbb0cce page_symlink +EXPORT_SYMBOL vmlinux 0x9cbb46f3 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x9ccad64b __quota_error +EXPORT_SYMBOL vmlinux 0x9ce169af neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x9ce1d60d rfkill_alloc +EXPORT_SYMBOL vmlinux 0x9cf4ea5e __register_nls +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d2e27b7 sk_stream_error +EXPORT_SYMBOL vmlinux 0x9d33ef5e acpi_enable +EXPORT_SYMBOL vmlinux 0x9d40f7e6 kthread_stop +EXPORT_SYMBOL vmlinux 0x9d4d598c ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x9d5401fd ether_setup +EXPORT_SYMBOL vmlinux 0x9d581380 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x9d682c21 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x9d7632b1 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x9d80cba8 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x9d8a0e0c n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x9d90c653 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0x9d9dbe7a address_space_init_once +EXPORT_SYMBOL vmlinux 0x9da3f873 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x9da55a14 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x9dc95777 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x9dd96d1a pci_match_id +EXPORT_SYMBOL vmlinux 0x9df0ac11 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x9df3666f napi_gro_frags +EXPORT_SYMBOL vmlinux 0x9df58ad2 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e1a9960 dev_open +EXPORT_SYMBOL vmlinux 0x9e1d2581 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x9e29377d inet_addr_type +EXPORT_SYMBOL vmlinux 0x9e363b6b acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e5526a7 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x9e552979 gen_pool_create +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e6d07db inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e84dcad add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x9e9eb34c acpi_check_dsm +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea0c91f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x9eac7d43 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x9eaf4194 dev_base_lock +EXPORT_SYMBOL vmlinux 0x9eafd818 should_remove_suid +EXPORT_SYMBOL vmlinux 0x9eb355a8 __f_setown +EXPORT_SYMBOL vmlinux 0x9ec85fe6 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x9ece61fc uart_get_divisor +EXPORT_SYMBOL vmlinux 0x9eda4718 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x9edb153a netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x9ee82cd6 uuid_be_index +EXPORT_SYMBOL vmlinux 0x9ee9b91f pnp_device_attach +EXPORT_SYMBOL vmlinux 0x9f03f3be dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x9f0f0470 dev_trans_start +EXPORT_SYMBOL vmlinux 0x9f164629 sync_inode +EXPORT_SYMBOL vmlinux 0x9f37e7b0 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x9f41e7f5 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x9f442daf read_code +EXPORT_SYMBOL vmlinux 0x9f59d4d6 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x9f5b8ec5 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f98d7b2 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x9f99d062 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x9f9bcfbd arp_tbl +EXPORT_SYMBOL vmlinux 0x9f9e1d24 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x9faa12b3 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x9fb1d0ed uuid_is_valid +EXPORT_SYMBOL vmlinux 0x9fb3a8bd blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x9fc2e629 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe791f2 pci_bus_put +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa00fdb85 md_integrity_register +EXPORT_SYMBOL vmlinux 0xa018cea2 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0xa03cb09a tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa068ce98 tcp_prequeue +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa0744ea9 cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0xa0755a54 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa0a70bf9 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b8884f d_add_ci +EXPORT_SYMBOL vmlinux 0xa0d1708b generic_make_request +EXPORT_SYMBOL vmlinux 0xa0d85b43 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e28cb3 do_SAK +EXPORT_SYMBOL vmlinux 0xa0e8cfca reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0xa0eb84d4 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0f3c7b3 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa139822e __mod_node_page_state +EXPORT_SYMBOL vmlinux 0xa139bff8 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts +EXPORT_SYMBOL vmlinux 0xa1916013 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xa1a5a0b4 ppp_unit_number +EXPORT_SYMBOL vmlinux 0xa1b3bb6e blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1b77bab pci_enable_device +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1f3a22f generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xa1f477c7 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa22986a8 flow_cache_init +EXPORT_SYMBOL vmlinux 0xa23c59eb sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xa264c215 sk_mc_loop +EXPORT_SYMBOL vmlinux 0xa26cf381 sock_register +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa28b125a filemap_fdatawait +EXPORT_SYMBOL vmlinux 0xa2b8a607 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xa2d68fa7 skb_clone +EXPORT_SYMBOL vmlinux 0xa2e54233 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xa2fd35d5 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xa308a8db kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xa30bb669 d_invalidate +EXPORT_SYMBOL vmlinux 0xa31a8d9c radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa320e507 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xa34a0cb1 __sb_end_write +EXPORT_SYMBOL vmlinux 0xa34fcb2d mempool_create_node +EXPORT_SYMBOL vmlinux 0xa350a8f8 set_memory_array_uc +EXPORT_SYMBOL vmlinux 0xa35c02a1 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xa35fe34d acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0xa3643e16 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xa36647c9 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xa36e6730 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa37fd787 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xa387d041 dcache_readdir +EXPORT_SYMBOL vmlinux 0xa387f6a4 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xa3b0d95a scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0xa3c236e5 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xa3dcbfd3 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0xa3df7e4a kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xa3e951c2 kset_register +EXPORT_SYMBOL vmlinux 0xa403a3dc fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0xa4182bdb sock_no_listen +EXPORT_SYMBOL vmlinux 0xa42cd2d3 param_ops_short +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa49247a5 bdget +EXPORT_SYMBOL vmlinux 0xa49c5bf6 register_qdisc +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4c5b58a blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4ee68d8 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xa4fba997 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xa50cce77 tty_port_close +EXPORT_SYMBOL vmlinux 0xa50d4848 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xa50f49ab devm_ioport_map +EXPORT_SYMBOL vmlinux 0xa51ac1ab sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xa51cdfe8 __FIXADDR_TOP +EXPORT_SYMBOL vmlinux 0xa51df242 dst_init +EXPORT_SYMBOL vmlinux 0xa52ae031 dev_mc_init +EXPORT_SYMBOL vmlinux 0xa52c9691 from_kgid +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa55f3fd5 dmam_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0xa576b11c __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xa58aaf62 netpoll_setup +EXPORT_SYMBOL vmlinux 0xa58c1eb2 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xa5923896 filemap_check_errors +EXPORT_SYMBOL vmlinux 0xa595d969 generic_setlease +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5c7c1f5 inet_add_offload +EXPORT_SYMBOL vmlinux 0xa5d0b35b blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xa5d8c981 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xa5e12669 phy_device_free +EXPORT_SYMBOL vmlinux 0xa5e75e9a acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xa601747d param_set_int +EXPORT_SYMBOL vmlinux 0xa6025e7d sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xa626351d pcim_enable_device +EXPORT_SYMBOL vmlinux 0xa62e392a to_nd_btt +EXPORT_SYMBOL vmlinux 0xa62e6e4f acpi_get_table_with_size +EXPORT_SYMBOL vmlinux 0xa63d13aa crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa655d2a0 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xa65aaa57 amd_northbridges +EXPORT_SYMBOL vmlinux 0xa66e7c05 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xa6705d5b generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa67a29eb __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xa67ac21f thaw_bdev +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa6babd5c blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xa6bbd805 __wake_up +EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error +EXPORT_SYMBOL vmlinux 0xa6bf6bbc dev_get_by_index +EXPORT_SYMBOL vmlinux 0xa6c01f6d backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xa6dceebd __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xa6eb58a6 neigh_table_init +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa713e5e2 invalidate_partition +EXPORT_SYMBOL vmlinux 0xa71dc34e put_io_context +EXPORT_SYMBOL vmlinux 0xa729348a kunmap +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa74a0025 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xa788f1a0 i8253_lock +EXPORT_SYMBOL vmlinux 0xa7c73d23 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xa7cc9f77 inet_del_offload +EXPORT_SYMBOL vmlinux 0xa7cf6c2f atomic64_dec_return_cx8 +EXPORT_SYMBOL vmlinux 0xa7d08688 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xa7da046e padata_stop +EXPORT_SYMBOL vmlinux 0xa8080461 __d_lookup_done +EXPORT_SYMBOL vmlinux 0xa811bf8f bdput +EXPORT_SYMBOL vmlinux 0xa825a3cd bd_set_size +EXPORT_SYMBOL vmlinux 0xa8408a0f ip_ct_attach +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa84a526b tty_port_destroy +EXPORT_SYMBOL vmlinux 0xa84f0bfb devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xa84f561a ip_check_defrag +EXPORT_SYMBOL vmlinux 0xa8659f92 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xa86a4ba5 inet_sendpage +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa89ba3aa textsearch_register +EXPORT_SYMBOL vmlinux 0xa8ab423e fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0xa8ade2e0 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xa8af2bf9 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xa8dc2f9a seq_open_private +EXPORT_SYMBOL vmlinux 0xa8e53da0 ppp_input_error +EXPORT_SYMBOL vmlinux 0xa8e652b8 fscrypt_fname_usr_to_disk +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa9053d4d dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa918511a __bio_clone_fast +EXPORT_SYMBOL vmlinux 0xa944d1db mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xa950af49 blk_start_request +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0xa9ab607b max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xa9bd4423 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xa9c56d04 fasync_helper +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9d00a07 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xa9de9c93 jbd2_journal_inode_add_wait +EXPORT_SYMBOL vmlinux 0xa9df1b96 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xa9e0b477 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xa9ff766e tty_throttle +EXPORT_SYMBOL vmlinux 0xaa01dd76 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xaa0c9db4 vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0xaa23f898 seq_printf +EXPORT_SYMBOL vmlinux 0xaa2cd810 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xaa471169 bio_map_kern +EXPORT_SYMBOL vmlinux 0xaa5bd08d __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa899779 fget +EXPORT_SYMBOL vmlinux 0xaa8fea18 acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xaaa49546 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0xaaa8bfa5 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xaab72ffe scsi_host_get +EXPORT_SYMBOL vmlinux 0xaac66ea3 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xaacfd02c blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaadd4c6f devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xaae6453f arp_xmit +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab0682e8 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xab264fde chacha20_block +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab551fad acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xab571f83 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xab5b3c29 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc +EXPORT_SYMBOL vmlinux 0xab684480 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0xab694444 bsearch +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab76436a file_ns_capable +EXPORT_SYMBOL vmlinux 0xab770678 rdmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabcc57bc netdev_printk +EXPORT_SYMBOL vmlinux 0xabf20cf4 acpi_pm_device_run_wake +EXPORT_SYMBOL vmlinux 0xabf52aa8 param_get_long +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac388477 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac468ad6 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xac733304 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xac78f075 dma_mmap_from_coherent +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb9618a da903x_query_status +EXPORT_SYMBOL vmlinux 0xacb99769 ida_destroy +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacdc399c __SetPageMovable +EXPORT_SYMBOL vmlinux 0xace85e1b phy_connect_direct +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacff5cb1 simple_release_fs +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad078ded scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xad0f8b23 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xad10b07b netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xad1ed547 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xad6042d1 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xad698f77 dqstats +EXPORT_SYMBOL vmlinux 0xad6e4bb6 mempool_free +EXPORT_SYMBOL vmlinux 0xad706da4 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xadbc3582 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xadc2942e nf_reinject +EXPORT_SYMBOL vmlinux 0xadcdfb4b isapnp_protocol +EXPORT_SYMBOL vmlinux 0xaddc45bc user_path_at_empty +EXPORT_SYMBOL vmlinux 0xade97894 vme_irq_generate +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae044bc7 panic_notifier_list +EXPORT_SYMBOL vmlinux 0xae075add xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xae07f7db locks_remove_posix +EXPORT_SYMBOL vmlinux 0xae65233b xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xae782d0a __lock_page +EXPORT_SYMBOL vmlinux 0xae7b779a blk_init_queue +EXPORT_SYMBOL vmlinux 0xae7eb27c unregister_key_type +EXPORT_SYMBOL vmlinux 0xaeae045c lwtunnel_input +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaec66a14 pci_request_region +EXPORT_SYMBOL vmlinux 0xaedec486 vme_irq_handler +EXPORT_SYMBOL vmlinux 0xaee3f892 neigh_for_each +EXPORT_SYMBOL vmlinux 0xaefdaad7 up_write +EXPORT_SYMBOL vmlinux 0xaf327ef0 handle_edge_irq +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf493bf7 find_get_entries_tag +EXPORT_SYMBOL vmlinux 0xaf4b1540 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xaf4ea7a9 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xaf611eac amd_nb_misc_ids +EXPORT_SYMBOL vmlinux 0xaf65eaed request_firmware +EXPORT_SYMBOL vmlinux 0xaf6c3efd bio_integrity_clone +EXPORT_SYMBOL vmlinux 0xaf6de9dd padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xafd1b2e1 ip6_frag_init +EXPORT_SYMBOL vmlinux 0xafe76ffa alloc_disk_node +EXPORT_SYMBOL vmlinux 0xaff295ad skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xaff57364 invalidate_bdev +EXPORT_SYMBOL vmlinux 0xaffb128e tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xb0128085 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0xb01b1db8 intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0xb02bd591 _raw_read_unlock_irq +EXPORT_SYMBOL vmlinux 0xb040f27f phy_resume +EXPORT_SYMBOL vmlinux 0xb040faa6 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xb04d9c6a build_skb +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb074c798 mount_ns +EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xb08e84b1 x86_hyper_ms_hyperv +EXPORT_SYMBOL vmlinux 0xb0a050c9 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a6dfad msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0xb0b11a1a kset_unregister +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0eb41ff iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0xb10820e4 _raw_read_unlock +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb123d76a kthread_bind +EXPORT_SYMBOL vmlinux 0xb129f26c posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb1354312 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xb13fc42d xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xb141e865 ex_handler_rdmsr_unsafe +EXPORT_SYMBOL vmlinux 0xb15788c5 inode_init_always +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb187b3a8 lg_lock_init +EXPORT_SYMBOL vmlinux 0xb18fa151 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xb1ac8c42 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xb1aff470 dcb_setapp +EXPORT_SYMBOL vmlinux 0xb1bdb8ed starget_for_each_device +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1cfad22 rdmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xb1f04609 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0xb1ffb3da netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb2511196 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb26c61ac dev_crit +EXPORT_SYMBOL vmlinux 0xb26e6b53 intel_gtt_insert_page +EXPORT_SYMBOL vmlinux 0xb2a60f5e kill_pgrp +EXPORT_SYMBOL vmlinux 0xb2ae8fab tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on +EXPORT_SYMBOL vmlinux 0xb2d5a552 complete +EXPORT_SYMBOL vmlinux 0xb2da68a7 max8998_read_reg +EXPORT_SYMBOL vmlinux 0xb2efe716 devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove +EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb31daa29 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xb3322010 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xb33e945e proc_create_data +EXPORT_SYMBOL vmlinux 0xb34a15c6 param_set_ulong +EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit +EXPORT_SYMBOL vmlinux 0xb3679fce kernel_connect +EXPORT_SYMBOL vmlinux 0xb368fb8b fscrypt_initialize +EXPORT_SYMBOL vmlinux 0xb36906de __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xb3950fb3 kill_pid +EXPORT_SYMBOL vmlinux 0xb39ddf3c sget +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3e0590d acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0xb3ea95da inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb40cb4ea irq_domain_set_info +EXPORT_SYMBOL vmlinux 0xb41cf36d scsi_host_put +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb42fba55 truncate_setsize +EXPORT_SYMBOL vmlinux 0xb4390f9a mcount +EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb45278f8 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0xb45578b8 memscan +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb47132d6 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xb4b45042 generic_write_checks +EXPORT_SYMBOL vmlinux 0xb4b63315 mmc_can_trim +EXPORT_SYMBOL vmlinux 0xb4b78fcb skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xb4ca1d04 padata_start +EXPORT_SYMBOL vmlinux 0xb4e30175 bio_reset +EXPORT_SYMBOL vmlinux 0xb5074546 __block_write_full_page +EXPORT_SYMBOL vmlinux 0xb5150763 xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0xb5154b2d dentry_update_name_case +EXPORT_SYMBOL vmlinux 0xb51f8e91 single_open +EXPORT_SYMBOL vmlinux 0xb5229392 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb5461109 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0xb54ac451 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0xb5561e02 __ps2_command +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb57b0a02 put_cmsg +EXPORT_SYMBOL vmlinux 0xb59695da xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xb5a1e249 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b1ce89 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0xb5ba64a7 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5dbd16a __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xb5e6c7b6 generic_perform_write +EXPORT_SYMBOL vmlinux 0xb5e950a2 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xb5f39804 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb628bfbd key_reject_and_link +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb637de66 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xb63e46e4 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xb64114c6 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xb651035d scmd_printk +EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6ad2d9d ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xb6b1dac6 __destroy_inode +EXPORT_SYMBOL vmlinux 0xb6b741e9 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xb6c4aa07 nd_device_register +EXPORT_SYMBOL vmlinux 0xb6de6e5d agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0xb6e41883 memcmp +EXPORT_SYMBOL vmlinux 0xb6ed1e53 strncpy +EXPORT_SYMBOL vmlinux 0xb6ff701d gen_pool_alloc_algo +EXPORT_SYMBOL vmlinux 0xb6ffd23e poll_initwait +EXPORT_SYMBOL vmlinux 0xb70d09af dump_emit +EXPORT_SYMBOL vmlinux 0xb70f68ad generic_file_fsync +EXPORT_SYMBOL vmlinux 0xb718f21a soft_cursor +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event +EXPORT_SYMBOL vmlinux 0xb7637967 fb_set_var +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb7948192 tty_do_resize +EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0xb7a3b551 dev_notice +EXPORT_SYMBOL vmlinux 0xb7b42532 nf_log_set +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7dd179b netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xb7f55ecc atomic64_add_return_cx8 +EXPORT_SYMBOL vmlinux 0xb7f5e218 from_kgid_munged +EXPORT_SYMBOL vmlinux 0xb80475cf eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb8370414 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xb86d57c5 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb878b2ac contig_page_data +EXPORT_SYMBOL vmlinux 0xb8854ac8 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xb8985f2d input_release_device +EXPORT_SYMBOL vmlinux 0xb89a1240 dquot_destroy +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b579d7 check_disk_size_change +EXPORT_SYMBOL vmlinux 0xb8b6a76c __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xb8c6777b blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb8eafd37 param_get_bool +EXPORT_SYMBOL vmlinux 0xb8eec98b del_timer +EXPORT_SYMBOL vmlinux 0xb8fdcd10 mempool_resize +EXPORT_SYMBOL vmlinux 0xb9029755 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xb9269101 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0xb9337e51 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0xb949b81e mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xb94f05aa mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xb952501f del_random_ready_callback +EXPORT_SYMBOL vmlinux 0xb953d067 dst_release +EXPORT_SYMBOL vmlinux 0xb96cbd29 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xb9714b8f kmap_atomic_prot +EXPORT_SYMBOL vmlinux 0xb9735825 dcache_dir_close +EXPORT_SYMBOL vmlinux 0xb974b376 scsi_target_resume +EXPORT_SYMBOL vmlinux 0xb9776280 complete_request_key +EXPORT_SYMBOL vmlinux 0xb99d9240 __page_symlink +EXPORT_SYMBOL vmlinux 0xb9a29169 vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0xb9caa2f4 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0xb9e0f223 dev_change_flags +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9f14b67 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xba249105 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read +EXPORT_SYMBOL vmlinux 0xba35d31f mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4b9f1a param_get_uint +EXPORT_SYMBOL vmlinux 0xba4e42c9 vme_irq_request +EXPORT_SYMBOL vmlinux 0xba5ed9ca __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0xba63e27a swake_up_all +EXPORT_SYMBOL vmlinux 0xba67de00 km_policy_notify +EXPORT_SYMBOL vmlinux 0xba80ba70 tty_port_open +EXPORT_SYMBOL vmlinux 0xba87bc40 pci_fixup_device +EXPORT_SYMBOL vmlinux 0xba91e685 memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0xba9d4a35 seq_putc +EXPORT_SYMBOL vmlinux 0xbaa8b6b8 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xbac38705 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0xbacbf3a8 init_net +EXPORT_SYMBOL vmlinux 0xbad8d272 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xbb03a3f6 clear_nlink +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb2167d5 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb3ac702 vme_master_request +EXPORT_SYMBOL vmlinux 0xbb3cdd70 nmi_panic +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb5d8793 ht_create_irq +EXPORT_SYMBOL vmlinux 0xbb5efcc8 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xbb8e169a vga_switcheroo_handler_flags +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbba70a2d _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xbbbf3f05 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xbbd1e77a may_umount +EXPORT_SYMBOL vmlinux 0xbbeb1ec6 ioremap_wt +EXPORT_SYMBOL vmlinux 0xbbf94872 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xbc171291 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xbc1ded66 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc3f70ef devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xbc435770 dump_stack +EXPORT_SYMBOL vmlinux 0xbc556d49 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xbc6dc504 register_gifconf +EXPORT_SYMBOL vmlinux 0xbc719ec5 pci_dev_get +EXPORT_SYMBOL vmlinux 0xbc7f1e7d netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xbc864fa3 mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0xbc9f37c0 forget_cached_acl +EXPORT_SYMBOL vmlinux 0xbcab8573 reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbccec887 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0xbcd26560 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xbcecefb7 mfd_add_devices +EXPORT_SYMBOL vmlinux 0xbcf1a7a1 __secpath_destroy +EXPORT_SYMBOL vmlinux 0xbcf90399 scsi_init_io +EXPORT_SYMBOL vmlinux 0xbcfde05e mpage_readpage +EXPORT_SYMBOL vmlinux 0xbd11638a __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0xbd227b58 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xbd2db253 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0xbd475e1c neigh_table_clear +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbd970652 pci_pme_capable +EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xbdb8780e __vfs_write +EXPORT_SYMBOL vmlinux 0xbdcf21bc mmc_start_req +EXPORT_SYMBOL vmlinux 0xbdde598e __invalidate_device +EXPORT_SYMBOL vmlinux 0xbdf90608 tty_port_hangup +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe2e1048 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xbe3ae623 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xbe4b06f1 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xbe4b3fe1 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xbe4f4392 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xbe555b6c swake_up +EXPORT_SYMBOL vmlinux 0xbe6ada7d uuid_le_index +EXPORT_SYMBOL vmlinux 0xbe754c96 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0xbe8c37d9 intel_scu_ipc_simple_command +EXPORT_SYMBOL vmlinux 0xbea65ea9 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xbebe2de5 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xbec30d05 x86_match_cpu +EXPORT_SYMBOL vmlinux 0xbec8c1d9 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0xbecaf932 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0xbed22d61 simple_statfs +EXPORT_SYMBOL vmlinux 0xbee549e9 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbeeda401 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbeff4f2e nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xbf2cc3f9 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xbf2e7b9e udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xbf39c511 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xbf6477ba clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xbf741f59 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xbf7ec73f inet_stream_ops +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf825cd8 ex_handler_ext +EXPORT_SYMBOL vmlinux 0xbf8b39e9 isapnp_present +EXPORT_SYMBOL vmlinux 0xbf987f66 setattr_copy +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa9b050 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xbfaa1d9f pci_disable_device +EXPORT_SYMBOL vmlinux 0xbfb53bfa nobh_write_end +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfc91f3c finish_no_open +EXPORT_SYMBOL vmlinux 0xbfe6f427 _raw_spin_unlock_irq +EXPORT_SYMBOL vmlinux 0xbfed1783 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff47ea7 load_nls +EXPORT_SYMBOL vmlinux 0xc016ff52 proc_symlink +EXPORT_SYMBOL vmlinux 0xc01eed33 __copy_from_user_ll_nozero +EXPORT_SYMBOL vmlinux 0xc02686c4 simple_pin_fs +EXPORT_SYMBOL vmlinux 0xc04cdca7 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0xc05257a9 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0xc052ea1e pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xc05e355f idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07b1a42 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL vmlinux 0xc097a492 textsearch_prepare +EXPORT_SYMBOL vmlinux 0xc097ca11 padata_free +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0bd6167 inet_bind +EXPORT_SYMBOL vmlinux 0xc0c67541 md_reload_sb +EXPORT_SYMBOL vmlinux 0xc0cd0aa6 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xc0d402c4 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xc0e5ba11 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xc0fb0fd9 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc11dfce0 padata_do_parallel +EXPORT_SYMBOL vmlinux 0xc12ff05c ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xc12ff6f0 tcf_register_action +EXPORT_SYMBOL vmlinux 0xc13ad8bc phy_find_first +EXPORT_SYMBOL vmlinux 0xc142583e __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xc169cb75 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xc1872e4f fb_get_mode +EXPORT_SYMBOL vmlinux 0xc1a38366 pci_irq_vector +EXPORT_SYMBOL vmlinux 0xc1bdc453 param_get_byte +EXPORT_SYMBOL vmlinux 0xc1bebc53 d_exact_alias +EXPORT_SYMBOL vmlinux 0xc1cff6e6 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1eef9df passthru_features_check +EXPORT_SYMBOL vmlinux 0xc206d406 devm_free_irq +EXPORT_SYMBOL vmlinux 0xc208a1f3 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xc213cc29 nvm_unregister_tgt_type +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc26edcb2 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xc280a525 __copy_from_user_ll +EXPORT_SYMBOL vmlinux 0xc28f6d00 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xc2cda777 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0xc2d24fb1 __brelse +EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc +EXPORT_SYMBOL vmlinux 0xc2dc5728 dev_get_iflink +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc307ab65 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0xc344bcbf no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xc353ae09 mapping_tagged +EXPORT_SYMBOL vmlinux 0xc364ae22 iomem_resource +EXPORT_SYMBOL vmlinux 0xc381da2f kobject_add +EXPORT_SYMBOL vmlinux 0xc3869d7a sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xc38e5c62 filemap_fault +EXPORT_SYMBOL vmlinux 0xc394404a dquot_resume +EXPORT_SYMBOL vmlinux 0xc39beb12 skb_find_text +EXPORT_SYMBOL vmlinux 0xc3a63b83 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3b9f3fe noop_qdisc +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3fa6a59 memchr +EXPORT_SYMBOL vmlinux 0xc41cca67 input_allocate_device +EXPORT_SYMBOL vmlinux 0xc41f0516 node_states +EXPORT_SYMBOL vmlinux 0xc42d132a mmc_flush_cache +EXPORT_SYMBOL vmlinux 0xc43534f3 param_get_ullong +EXPORT_SYMBOL vmlinux 0xc4357f1f max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xc435ed50 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xc45b9dda param_set_byte +EXPORT_SYMBOL vmlinux 0xc45fcbba key_link +EXPORT_SYMBOL vmlinux 0xc46e7cc0 scsi_register +EXPORT_SYMBOL vmlinux 0xc493ba93 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc49c55a1 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xc4bcd25c xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0xc4e18807 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xc4e55021 udp_ioctl +EXPORT_SYMBOL vmlinux 0xc4ee4ca4 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xc5137552 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0xc52e6341 blkdev_put +EXPORT_SYMBOL vmlinux 0xc5462085 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0xc5513747 udp_disconnect +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc57aa76f devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0xc57cac04 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5a6377b wake_up_process +EXPORT_SYMBOL vmlinux 0xc5ad7585 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xc5cbb74d dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xc5d845bf __scm_send +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc6211d32 ip6_frag_match +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc638c1b0 follow_down +EXPORT_SYMBOL vmlinux 0xc641350b cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc65af464 find_vma +EXPORT_SYMBOL vmlinux 0xc6742d6b nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xc67a09fe intel_gtt_get +EXPORT_SYMBOL vmlinux 0xc697193d xfrm_state_update +EXPORT_SYMBOL vmlinux 0xc6a32547 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xc6b23120 intel_scu_ipc_iowrite16 +EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc70a1a36 register_netdev +EXPORT_SYMBOL vmlinux 0xc71b5890 radix_tree_delete +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc721a0da default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xc7221aa0 __seq_open_private +EXPORT_SYMBOL vmlinux 0xc72d8ffb capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xc7303c15 pci_get_slot +EXPORT_SYMBOL vmlinux 0xc73a8771 do_trace_read_msr +EXPORT_SYMBOL vmlinux 0xc7507bda insert_inode_locked +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc7569a59 nd_integrity_init +EXPORT_SYMBOL vmlinux 0xc7584190 set_pages_array_wc +EXPORT_SYMBOL vmlinux 0xc768de19 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc792fde1 bdev_read_only +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc79c329a ppp_input +EXPORT_SYMBOL vmlinux 0xc79eccad tso_build_data +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7dff8da textsearch_unregister +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc81843e7 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xc8276a79 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape +EXPORT_SYMBOL vmlinux 0xc837dc6a neigh_ifdown +EXPORT_SYMBOL vmlinux 0xc839811a unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc86625b4 ip_do_fragment +EXPORT_SYMBOL vmlinux 0xc86a9b7d pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0xc86bff4b mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xc86d6799 ___preempt_schedule +EXPORT_SYMBOL vmlinux 0xc8721ed5 pci_bus_type +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8743982 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xc8804400 gnttab_free_pages +EXPORT_SYMBOL vmlinux 0xc88f9049 __napi_complete +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc89ad995 mdiobus_free +EXPORT_SYMBOL vmlinux 0xc8a82c76 agp_create_memory +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8c19bd6 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0xc8ccb9d9 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xc8d9853d mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xc8dad72b blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xc8dc9ac8 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xc8f073cd nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xc9089bf7 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc9450fca alloc_fddidev +EXPORT_SYMBOL vmlinux 0xc94ba010 md_cluster_mod +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc98a8634 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xc99b0c01 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc99f6aae dma_spin_lock +EXPORT_SYMBOL vmlinux 0xc9d7f756 vme_dma_request +EXPORT_SYMBOL vmlinux 0xc9fef317 add_wait_queue +EXPORT_SYMBOL vmlinux 0xc9ffe077 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xca1d7611 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xca3632b5 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xca844210 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xca8ec09b key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca9af7c2 acpi_device_hid +EXPORT_SYMBOL vmlinux 0xca9c0afe get_fs_type +EXPORT_SYMBOL vmlinux 0xcaa4a259 vfs_read +EXPORT_SYMBOL vmlinux 0xcabbbd74 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xcac75f1f zpool_register_driver +EXPORT_SYMBOL vmlinux 0xcad37817 dmam_pool_create +EXPORT_SYMBOL vmlinux 0xcae77232 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaffe3b5 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb092a56 phy_disconnect +EXPORT_SYMBOL vmlinux 0xcb0c618d xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0xcb193e2e jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xcb3010d8 mmc_get_card +EXPORT_SYMBOL vmlinux 0xcb3911d2 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xcb66c517 __napi_schedule +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb83e362 ata_dev_printk +EXPORT_SYMBOL vmlinux 0xcbacf250 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0xcbbd1824 __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc4fbc4 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xcbc8539d console_start +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbd8e2da dquot_acquire +EXPORT_SYMBOL vmlinux 0xcbd964f9 nf_log_register +EXPORT_SYMBOL vmlinux 0xcbd9fad6 clkdev_hw_alloc +EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcbf20b56 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xcc17d677 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xcc1c3132 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc28abee xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xcc3b3a07 nf_getsockopt +EXPORT_SYMBOL vmlinux 0xcc4d1bfb atomic64_read_cx8 +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc76483f nvm_register +EXPORT_SYMBOL vmlinux 0xcc81dad1 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xcc824a54 ip_getsockopt +EXPORT_SYMBOL vmlinux 0xcc82add3 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xcc838223 __pte2cachemode_tbl +EXPORT_SYMBOL vmlinux 0xcc838e08 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xcc88054d key_task_permission +EXPORT_SYMBOL vmlinux 0xcc8b3e0b blk_rq_init +EXPORT_SYMBOL vmlinux 0xcc8d3f4f acpi_os_execute +EXPORT_SYMBOL vmlinux 0xccaa4e67 x86_hyper +EXPORT_SYMBOL vmlinux 0xccb1c9a6 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xccba6140 bdevname +EXPORT_SYMBOL vmlinux 0xccbfb029 fence_default_wait +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccc88acd dev_addr_flush +EXPORT_SYMBOL vmlinux 0xcccd9ef1 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xcce4f18f blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xcce5702d padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xccf10b70 pci_remove_bus +EXPORT_SYMBOL vmlinux 0xccfc5909 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xcd01fad7 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xcd13b68b __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xcd13dc7c ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xcd141627 file_path +EXPORT_SYMBOL vmlinux 0xcd14d120 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xcd1e6f07 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd27ce99 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0xcd310a89 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xcd385045 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0xcd3faa9e migrate_page_copy +EXPORT_SYMBOL vmlinux 0xcd62e080 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0xcd6e0157 lock_sock_fast +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc4eff0 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xcde5fe40 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xce23fba2 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2c45cc wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xce431a53 km_state_expired +EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce5f1fba netif_rx +EXPORT_SYMBOL vmlinux 0xce605417 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xce6647dc vm_mmap +EXPORT_SYMBOL vmlinux 0xce7bfe70 vm_brk +EXPORT_SYMBOL vmlinux 0xce9e41e9 lockref_get +EXPORT_SYMBOL vmlinux 0xcea1b64b jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceaba731 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xcedfc84d lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf1a3ffc blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xcf1f94b0 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xcf23e5ed inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xcf272ba4 con_copy_unimap +EXPORT_SYMBOL vmlinux 0xcf3446a6 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xcf69262f pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xcf6cfe1f msrs_free +EXPORT_SYMBOL vmlinux 0xcf794c16 nf_log_trace +EXPORT_SYMBOL vmlinux 0xcf7a39c4 vfs_writev +EXPORT_SYMBOL vmlinux 0xcfb1a0fb cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0xcfb6dce8 input_reset_device +EXPORT_SYMBOL vmlinux 0xcfb975ba pskb_expand_head +EXPORT_SYMBOL vmlinux 0xcfc55336 tc_classify +EXPORT_SYMBOL vmlinux 0xcfd88151 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xcfe05d4d register_kmmio_probe +EXPORT_SYMBOL vmlinux 0xcffab3b9 pci_get_class +EXPORT_SYMBOL vmlinux 0xd0227c28 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xd022d968 nvm_erase_blk +EXPORT_SYMBOL vmlinux 0xd039e148 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xd069dc04 sock_efree +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd0971f9f netdev_notice +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0aab5fc __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xd0c6160b scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xd0d8621b strlen +EXPORT_SYMBOL vmlinux 0xd0d98da8 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd1277327 gen_pool_free +EXPORT_SYMBOL vmlinux 0xd1304b49 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd1985238 __put_cred +EXPORT_SYMBOL vmlinux 0xd1ab44fd pcie_get_mps +EXPORT_SYMBOL vmlinux 0xd1bbbf36 eth_type_trans +EXPORT_SYMBOL vmlinux 0xd1c50f3f __genl_register_family +EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1dd2417 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xd1f27832 netif_receive_skb +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd1fb9413 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0xd2032e42 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xd2064e2f idr_replace +EXPORT_SYMBOL vmlinux 0xd20d292f dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xd20f3020 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xd2231d4b netlink_ack +EXPORT_SYMBOL vmlinux 0xd227463a register_quota_format +EXPORT_SYMBOL vmlinux 0xd22d3c64 seq_pad +EXPORT_SYMBOL vmlinux 0xd22e05b5 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xd244eadb reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0xd24a1d00 __free_pages +EXPORT_SYMBOL vmlinux 0xd24b9780 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0xd2516cbf skb_clone_sk +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd2564ffb ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd26b9bc0 fb_class +EXPORT_SYMBOL vmlinux 0xd26bd1b9 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xd26e89bb seq_open +EXPORT_SYMBOL vmlinux 0xd271fc25 input_register_device +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd287643d input_set_capability +EXPORT_SYMBOL vmlinux 0xd28aca59 inet_accept +EXPORT_SYMBOL vmlinux 0xd292111d rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xd297803a alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class +EXPORT_SYMBOL vmlinux 0xd2cc4089 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xd2cda076 lookup_one_len +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e60882 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xd2e6a582 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xd30d18dd tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xd320b007 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xd3309bc1 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0xd35f75a1 match_string +EXPORT_SYMBOL vmlinux 0xd381d398 mmc_release_host +EXPORT_SYMBOL vmlinux 0xd38397f5 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xd3849e16 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xd38e90d8 clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0xd399824a skb_make_writable +EXPORT_SYMBOL vmlinux 0xd39f48a1 fs_bio_set +EXPORT_SYMBOL vmlinux 0xd3accef4 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xd3b1b793 inet_gro_receive +EXPORT_SYMBOL vmlinux 0xd3b81c1e fb_blank +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3c039fe lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xd3dc4a70 serio_reconnect +EXPORT_SYMBOL vmlinux 0xd3e54710 dma_common_mmap +EXPORT_SYMBOL vmlinux 0xd3ef57a6 sget_userns +EXPORT_SYMBOL vmlinux 0xd3ff91e1 send_sig_info +EXPORT_SYMBOL vmlinux 0xd40308cf i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xd434f59e xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xd43bd180 vfs_mknod +EXPORT_SYMBOL vmlinux 0xd440f7ff elv_rb_add +EXPORT_SYMBOL vmlinux 0xd445362d dma_alloc_from_coherent +EXPORT_SYMBOL vmlinux 0xd44778d3 _dev_info +EXPORT_SYMBOL vmlinux 0xd45c4f38 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xd471d2f5 iov_iter_init +EXPORT_SYMBOL vmlinux 0xd47c4606 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd48dae56 skb_split +EXPORT_SYMBOL vmlinux 0xd4967cc1 pci_map_rom +EXPORT_SYMBOL vmlinux 0xd49e6a91 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xd4c20d57 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xd4eb5b62 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0xd4fbbed2 sk_alloc +EXPORT_SYMBOL vmlinux 0xd5078724 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xd50b7516 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xd50d77d2 phy_device_create +EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data +EXPORT_SYMBOL vmlinux 0xd512ce79 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xd51d9ac9 fscrypt_encrypt_page +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd53f7426 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xd55b44b8 locks_init_lock +EXPORT_SYMBOL vmlinux 0xd55c552d mount_bdev +EXPORT_SYMBOL vmlinux 0xd561d1ef open_exec +EXPORT_SYMBOL vmlinux 0xd5712065 tty_set_operations +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd5ee2f3b mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd607977a jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xd60bb016 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd6492494 secpath_dup +EXPORT_SYMBOL vmlinux 0xd64c172f security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xd65f113e phy_connect +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68e1d1b _raw_read_trylock +EXPORT_SYMBOL vmlinux 0xd69b7001 qdisc_list_add +EXPORT_SYMBOL vmlinux 0xd69ef97d posix_acl_alloc +EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6c13658 tty_write_room +EXPORT_SYMBOL vmlinux 0xd6c7e204 inet_frag_find +EXPORT_SYMBOL vmlinux 0xd6e4dbfb mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xd6ed6468 redraw_screen +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd70f97f4 get_super +EXPORT_SYMBOL vmlinux 0xd71c62c6 fscrypt_pullback_bio_page +EXPORT_SYMBOL vmlinux 0xd738738e ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xd75c31b1 find_lock_entry +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd76aef44 param_ops_long +EXPORT_SYMBOL vmlinux 0xd78819ca uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xd78cccbc mmc_register_driver +EXPORT_SYMBOL vmlinux 0xd7945358 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xd7953d7d fb_set_suspend +EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write +EXPORT_SYMBOL vmlinux 0xd799e4e7 blk_stop_queue +EXPORT_SYMBOL vmlinux 0xd7a0793d ppp_dev_name +EXPORT_SYMBOL vmlinux 0xd7b7a501 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd81edb06 acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0xd82014e5 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xd821a83b netif_device_detach +EXPORT_SYMBOL vmlinux 0xd8403771 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xd845b8e0 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xd845cf95 nla_put +EXPORT_SYMBOL vmlinux 0xd84ab12c generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xd85833cb __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xd8754a81 generic_file_open +EXPORT_SYMBOL vmlinux 0xd87b3bc1 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b1e4f8 fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xd8b81b31 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8e88899 kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0xd8ec853e input_flush_device +EXPORT_SYMBOL vmlinux 0xd8f6d10a md_finish_reshape +EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0xd93f9ae9 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0xd9528017 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0xd966ddc2 __do_once_done +EXPORT_SYMBOL vmlinux 0xd969b2c7 amd_e400_c1e_detected +EXPORT_SYMBOL vmlinux 0xd96c7155 dst_discard_out +EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu +EXPORT_SYMBOL vmlinux 0xd9753a2e in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd995a3fb tcf_em_register +EXPORT_SYMBOL vmlinux 0xd9a00d92 security_path_mkdir +EXPORT_SYMBOL vmlinux 0xd9afdb34 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xd9b350f3 seq_dentry +EXPORT_SYMBOL vmlinux 0xd9bc734a input_register_handle +EXPORT_SYMBOL vmlinux 0xd9cadb47 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xd9d06542 icmp_send +EXPORT_SYMBOL vmlinux 0xd9d3bcd3 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9e5f06e dquot_disable +EXPORT_SYMBOL vmlinux 0xd9fc40e2 file_update_time +EXPORT_SYMBOL vmlinux 0xda0817ab balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xda0878b9 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xda08c0d7 pcibios_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xda0a21d0 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0xda155a93 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xda165221 netdev_all_lower_get_next_rcu +EXPORT_SYMBOL vmlinux 0xda20feab vm_insert_page +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda456361 bdi_register_dev +EXPORT_SYMBOL vmlinux 0xda717cc0 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda8c12c2 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xda8c4a45 param_get_short +EXPORT_SYMBOL vmlinux 0xda8fd495 isapnp_write_byte +EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages +EXPORT_SYMBOL vmlinux 0xdab02190 __posix_acl_create +EXPORT_SYMBOL vmlinux 0xdab7051e free_task +EXPORT_SYMBOL vmlinux 0xdab84b6c devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdade8a04 path_get +EXPORT_SYMBOL vmlinux 0xdae20d62 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xdae80100 _raw_spin_unlock +EXPORT_SYMBOL vmlinux 0xdaec5716 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xdaf0cc24 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0xdb367ee2 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb6980c2 iterate_fd +EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb782db5 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xdb7f932a sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xdb8b1ea4 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xdb9b2eee dma_release_declared_memory +EXPORT_SYMBOL vmlinux 0xdbabaf6c phy_driver_register +EXPORT_SYMBOL vmlinux 0xdbbbfa54 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xdbe425b7 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xdbebf98f set_page_dirty +EXPORT_SYMBOL vmlinux 0xdbf27165 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xdc01bd20 param_set_copystring +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc48a93b register_sysctl_table +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc57f532 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0xdc5e2105 kernel_param_lock +EXPORT_SYMBOL vmlinux 0xdc814598 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xdc853dbb dev_alloc_name +EXPORT_SYMBOL vmlinux 0xdc8d6d02 eth_header_parse +EXPORT_SYMBOL vmlinux 0xdcab899c xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd137c93 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd32c07a fb_find_mode +EXPORT_SYMBOL vmlinux 0xdd865ee4 __serio_register_driver +EXPORT_SYMBOL vmlinux 0xdd8c337f abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0xdd8eabae abx500_register_ops +EXPORT_SYMBOL vmlinux 0xddb25da2 pci_get_device +EXPORT_SYMBOL vmlinux 0xddb37d02 proc_dointvec +EXPORT_SYMBOL vmlinux 0xddcc5658 netdev_warn +EXPORT_SYMBOL vmlinux 0xdddac7c2 simple_rename +EXPORT_SYMBOL vmlinux 0xdde51ac7 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0xddf0d9e0 d_instantiate +EXPORT_SYMBOL vmlinux 0xde1131b6 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xde16dc16 tboot +EXPORT_SYMBOL vmlinux 0xde51cbc4 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xde75a67b sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xde78bc10 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xde78c8e5 skb_put +EXPORT_SYMBOL vmlinux 0xde807aec nf_afinfo +EXPORT_SYMBOL vmlinux 0xde8a714f block_read_full_page +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xde9ff84a elevator_exit +EXPORT_SYMBOL vmlinux 0xdeb4c20f ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xdecc5e70 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xded1a03f kernel_getsockname +EXPORT_SYMBOL vmlinux 0xdedb6611 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0xdee93aa1 mutex_trylock +EXPORT_SYMBOL vmlinux 0xdef25477 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices +EXPORT_SYMBOL vmlinux 0xdf1427e5 idr_remove +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update +EXPORT_SYMBOL vmlinux 0xdf467ea4 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xdf4b2e98 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xdf4fc797 __register_nmi_handler +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf56591b netdev_crit +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf64c4b4 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf90fdab cdrom_check_events +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf94cd9d mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0xdfb73109 sk_common_release +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfd3a075 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0xdfd69cd4 simple_transaction_set +EXPORT_SYMBOL vmlinux 0xdfe97614 make_bad_inode +EXPORT_SYMBOL vmlinux 0xdfea12ee agp_bridge +EXPORT_SYMBOL vmlinux 0xdff66a45 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdfffb12d trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe0653d2a vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe07c3a46 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe0a16a20 intel_scu_ipc_i2c_cntrl +EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b8773c fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0xe0c01469 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xe0e04edb make_kgid +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe14701b2 acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0xe14ea8b3 vfs_create +EXPORT_SYMBOL vmlinux 0xe14ff113 napi_gro_flush +EXPORT_SYMBOL vmlinux 0xe1661d83 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe1a86808 __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe1cb4034 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xe1cc4424 get_monotonic_coarse64 +EXPORT_SYMBOL vmlinux 0xe1d08b37 nd_device_unregister +EXPORT_SYMBOL vmlinux 0xe1f78fd8 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xe1f8ad19 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20391cb proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xe20e001f input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xe2132072 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0xe2165792 __inode_permission +EXPORT_SYMBOL vmlinux 0xe216a2e6 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xe217e2c4 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xe21f5543 dev_add_offload +EXPORT_SYMBOL vmlinux 0xe24cab40 nf_log_packet +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe259ae9e _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xe278ecd8 request_key +EXPORT_SYMBOL vmlinux 0xe279af52 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xe2819b18 free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xe29b21af clkdev_add +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2a09f4d set_posix_acl +EXPORT_SYMBOL vmlinux 0xe2a1678a devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xe2c0c293 udp_sendmsg +EXPORT_SYMBOL vmlinux 0xe2c83507 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xe2d38229 register_key_type +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe3197208 proc_dostring +EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0xe31c0236 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0xe3399a75 native_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xe376e1fc call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xe38eef49 neigh_direct_output +EXPORT_SYMBOL vmlinux 0xe3971166 __devm_request_region +EXPORT_SYMBOL vmlinux 0xe3a7ed92 set_groups +EXPORT_SYMBOL vmlinux 0xe3b209d7 skb_trim +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3c0833b vc_resize +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3fab94c ns_capable +EXPORT_SYMBOL vmlinux 0xe4007a71 genphy_config_init +EXPORT_SYMBOL vmlinux 0xe4123521 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0xe43d4e91 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xe4414a63 device_add_disk +EXPORT_SYMBOL vmlinux 0xe445db4a acpi_check_address_range +EXPORT_SYMBOL vmlinux 0xe47e1f7f abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe488f1e7 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xe494a01a radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0xe49bd81e phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xe4ade99f module_layout +EXPORT_SYMBOL vmlinux 0xe4b8c08e jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xe4bf7f28 filp_open +EXPORT_SYMBOL vmlinux 0xe4cf903c sock_no_bind +EXPORT_SYMBOL vmlinux 0xe4cff493 dump_align +EXPORT_SYMBOL vmlinux 0xe4d1d74a devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4f78742 filp_clone_open +EXPORT_SYMBOL vmlinux 0xe4f7c8a3 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xe4fa5a29 blk_get_backing_dev_info +EXPORT_SYMBOL vmlinux 0xe50f904f intel_scu_ipc_ioread16 +EXPORT_SYMBOL vmlinux 0xe51463e6 start_tty +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe530d757 acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xe565baaf scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0xe5662381 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5815f8a _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xe58288c0 submit_bio +EXPORT_SYMBOL vmlinux 0xe58496ec blk_run_queue +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe5bea18d ilookup5 +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5e522a5 dm_io +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe5f0a01c ps2_init +EXPORT_SYMBOL vmlinux 0xe602a06a fscrypt_restore_control_page +EXPORT_SYMBOL vmlinux 0xe614f7c3 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xe6162877 down_killable +EXPORT_SYMBOL vmlinux 0xe6219f35 i8042_install_filter +EXPORT_SYMBOL vmlinux 0xe622a3ec have_submounts +EXPORT_SYMBOL vmlinux 0xe62bb2e1 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xe63beb18 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0xe64d98fe rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xe6655301 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xe66dfead mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xe690b8d8 udplite_table +EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size +EXPORT_SYMBOL vmlinux 0xe6b05b49 eth_gro_receive +EXPORT_SYMBOL vmlinux 0xe6cad05c inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0xe6cc4659 tcp_shutdown +EXPORT_SYMBOL vmlinux 0xe6eb795d pci_choose_state +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe6ec6960 sock_no_poll +EXPORT_SYMBOL vmlinux 0xe6ee0c0c serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xe6f40568 bio_copy_data +EXPORT_SYMBOL vmlinux 0xe70f6dd0 phy_detach +EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xe725121f padata_remove_cpu +EXPORT_SYMBOL vmlinux 0xe74601da dquot_quota_on +EXPORT_SYMBOL vmlinux 0xe7552c7a key_revoke +EXPORT_SYMBOL vmlinux 0xe7653956 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xe781b5f6 intel_scu_ipc_readv +EXPORT_SYMBOL vmlinux 0xe78769ad input_close_device +EXPORT_SYMBOL vmlinux 0xe78e31c4 loop_register_transfer +EXPORT_SYMBOL vmlinux 0xe795319b simple_nosetlease +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7d1adba pci_biosrom_size +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7d96186 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xe7f775f8 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0xe80b094e dev_load +EXPORT_SYMBOL vmlinux 0xe81300a5 set_trace_device +EXPORT_SYMBOL vmlinux 0xe81cca74 dqput +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8362597 con_is_bound +EXPORT_SYMBOL vmlinux 0xe84a0a5d kmem_cache_size +EXPORT_SYMBOL vmlinux 0xe859b838 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xe8631882 ping_prot +EXPORT_SYMBOL vmlinux 0xe86e7d73 mntget +EXPORT_SYMBOL vmlinux 0xe87025f0 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe87b2edd sg_copy_buffer +EXPORT_SYMBOL vmlinux 0xe887faf4 xen_vcpu_id +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8b68849 wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8c5d81d simple_empty +EXPORT_SYMBOL vmlinux 0xe8db8dd2 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe8e4e9b5 bio_phys_segments +EXPORT_SYMBOL vmlinux 0xe8ea5e85 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0xe8f1d0b7 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xe90f7c51 __break_lease +EXPORT_SYMBOL vmlinux 0xe914195e iget_failed +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91c965f security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xe93f6042 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xe9427ac9 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95c0603 pnp_find_card +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe969900c netdev_features_change +EXPORT_SYMBOL vmlinux 0xe97c4ad3 ipv4_specific +EXPORT_SYMBOL vmlinux 0xe997667b wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xe9a0be96 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xe9a72014 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xe9ad4d3e agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0xe9d4dd8d registered_fb +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9fb312a pci_save_state +EXPORT_SYMBOL vmlinux 0xe9fbb75b sk_reset_timer +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea25e98c scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xea33574c dump_trace +EXPORT_SYMBOL vmlinux 0xea339168 read_cache_pages +EXPORT_SYMBOL vmlinux 0xea3f725d _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xea566258 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xea712bbc mutex_unlock +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xeaa91133 deactivate_super +EXPORT_SYMBOL vmlinux 0xeaabcd4f sock_i_uid +EXPORT_SYMBOL vmlinux 0xeaaf1e05 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xeac46f22 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xead18329 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0xead64292 padata_do_serial +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeaf285c1 blk_init_tags +EXPORT_SYMBOL vmlinux 0xeaf9e1d5 kill_bdev +EXPORT_SYMBOL vmlinux 0xeafebf5d genl_notify +EXPORT_SYMBOL vmlinux 0xeb1e9791 input_set_keycode +EXPORT_SYMBOL vmlinux 0xeb2ef0b6 inet_ioctl +EXPORT_SYMBOL vmlinux 0xeb2f5077 lookup_bdev +EXPORT_SYMBOL vmlinux 0xeb33986a blk_put_queue +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb4d9141 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0xeb538b9d fb_deferred_io_mmap +EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeb70d928 md_write_start +EXPORT_SYMBOL vmlinux 0xeb957dca devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xeb9bdb33 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0xebb21ee8 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xebe56054 inet6_protos +EXPORT_SYMBOL vmlinux 0xebfbd81d is_nd_btt +EXPORT_SYMBOL vmlinux 0xec03bace blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xec076c82 cpu_tss +EXPORT_SYMBOL vmlinux 0xec19c1f8 __blk_run_queue +EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit +EXPORT_SYMBOL vmlinux 0xec42965f inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xeca28da4 unlock_buffer +EXPORT_SYMBOL vmlinux 0xecaa82fe mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xecb41d68 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xecdb5c37 ppp_channel_index +EXPORT_SYMBOL vmlinux 0xece5101c pci_set_power_state +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecfff43e nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xed15d58f dev_close +EXPORT_SYMBOL vmlinux 0xed269236 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xed31f9af sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xed4d80fc nf_unregister_hook +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed62a289 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xed75d156 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xed9fe21d pci_scan_slot +EXPORT_SYMBOL vmlinux 0xeda8c136 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedd9269b phy_device_register +EXPORT_SYMBOL vmlinux 0xede26c30 blk_free_tags +EXPORT_SYMBOL vmlinux 0xedeacf6b get_mm_exe_file +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xedfe4c7b xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xee01c96b grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xee1b8ada sg_miter_skip +EXPORT_SYMBOL vmlinux 0xee201d6e __neigh_event_send +EXPORT_SYMBOL vmlinux 0xee2347f3 simple_setattr +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee38e684 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xee42de93 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xee457431 simple_rmdir +EXPORT_SYMBOL vmlinux 0xee4ae5bd inode_get_bytes +EXPORT_SYMBOL vmlinux 0xee4cd8c1 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xee632e8f replace_mount_options +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee836a03 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeec2c7cf ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0xeed0aa64 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xeed984c6 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xef177b40 dma_mark_declared_memory_occupied +EXPORT_SYMBOL vmlinux 0xef1c5378 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xef2702e6 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xef357dfa nf_register_hooks +EXPORT_SYMBOL vmlinux 0xef89219f __sock_create +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xefa203b8 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0xefcde964 dquot_enable +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefd9191b proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xefda8d99 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefe099c3 acpi_get_event_status +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf006c777 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0xf0113052 udp6_csum_init +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf025b50d blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xf02919c4 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf062576b ucs2_utf8size +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0xf08242c2 finish_wait +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0eaffce _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0f6c42e mdio_device_remove +EXPORT_SYMBOL vmlinux 0xf0fc3979 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0xf0ff3be0 __mutex_init +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf109238c nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit +EXPORT_SYMBOL vmlinux 0xf1398e2e lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf14d404c ata_link_printk +EXPORT_SYMBOL vmlinux 0xf14e9af2 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xf1505b4d I_BDEV +EXPORT_SYMBOL vmlinux 0xf166fe5d __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xf18242e1 atomic64_set_cx8 +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a159e7 sync_filesystem +EXPORT_SYMBOL vmlinux 0xf1a9411a pci_iomap_range +EXPORT_SYMBOL vmlinux 0xf1b3619a ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xf1c29fad blk_end_request +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf2043712 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf20ffe8b register_xen_selfballooning +EXPORT_SYMBOL vmlinux 0xf2369202 pnp_possible_config +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf24c58ea bprm_change_interp +EXPORT_SYMBOL vmlinux 0xf2541e89 bio_endio +EXPORT_SYMBOL vmlinux 0xf274674b inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xf27b5d5e ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xf27e7963 pci_iomap +EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf29f3199 vme_master_mmap +EXPORT_SYMBOL vmlinux 0xf2a8e22c mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xf2b4d7b5 check_disk_change +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2e49b94 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf3268c88 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf349b760 fence_wait_timeout +EXPORT_SYMBOL vmlinux 0xf34f5da2 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf35419f5 pnp_device_detach +EXPORT_SYMBOL vmlinux 0xf3632d58 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xf374d8a6 vfs_iter_read +EXPORT_SYMBOL vmlinux 0xf374df59 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf38f77ab mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xf3986b06 acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0xf3a34a3a fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0xf3cc0050 noop_llseek +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3e8e642 init_buffer +EXPORT_SYMBOL vmlinux 0xf3f021d9 current_task +EXPORT_SYMBOL vmlinux 0xf3f1ba4f pcibios_align_resource +EXPORT_SYMBOL vmlinux 0xf3fcaf60 serio_close +EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xf41ca75c mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xf439c250 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf45b0bf1 tty_port_put +EXPORT_SYMBOL vmlinux 0xf45e0ada blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xf463137a __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0xf46b112b bio_put +EXPORT_SYMBOL vmlinux 0xf473e42a dump_page +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4768125 netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4ba45c7 igrab +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4c23d3e __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xf4c83507 __devm_release_region +EXPORT_SYMBOL vmlinux 0xf4ca7a22 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xf4d42bb9 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xf4d5e282 vfs_mkdir +EXPORT_SYMBOL vmlinux 0xf4dd987f __getblk_gfp +EXPORT_SYMBOL vmlinux 0xf4e45461 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xf4eb462c blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4fded96 ___ratelimit +EXPORT_SYMBOL vmlinux 0xf502d273 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0xf5045865 prepare_creds +EXPORT_SYMBOL vmlinux 0xf506a46c i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xf523ff77 softnet_data +EXPORT_SYMBOL vmlinux 0xf5363870 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xf536d22e acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf5403a0d pskb_extract +EXPORT_SYMBOL vmlinux 0xf54bcb7e ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xf55185cc serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xf56a0c9c scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xf5846d71 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5b10e67 acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5dd8bbb input_unregister_handler +EXPORT_SYMBOL vmlinux 0xf5e0430a dma_find_channel +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5fe10e0 get_super_thawed +EXPORT_SYMBOL vmlinux 0xf5ffa68d dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xf6180d0b kmem_cache_create +EXPORT_SYMBOL vmlinux 0xf6184573 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0xf61b9bd6 devm_clk_get +EXPORT_SYMBOL vmlinux 0xf61ef0b4 get_task_io_context +EXPORT_SYMBOL vmlinux 0xf6279962 __mdiobus_register +EXPORT_SYMBOL vmlinux 0xf62b6e0a abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xf640bb40 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf6899c5a acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xf68d35ca dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xf693a145 irq_stat +EXPORT_SYMBOL vmlinux 0xf6a3a228 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xf6c1ea6b blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f56ea5 param_set_bool +EXPORT_SYMBOL vmlinux 0xf6f601e6 set_user_nice +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf726d02f atomic64_add_unless_cx8 +EXPORT_SYMBOL vmlinux 0xf745cb16 atomic64_sub_return_cx8 +EXPORT_SYMBOL vmlinux 0xf748472c flush_delayed_work +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf75e4aaf mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xf788424d register_sysctl +EXPORT_SYMBOL vmlinux 0xf78ceae4 mmc_request_done +EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0xf7af530c vm_map_ram +EXPORT_SYMBOL vmlinux 0xf7c54f4d dquot_drop +EXPORT_SYMBOL vmlinux 0xf7c8d064 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xf7d8ce07 update_region +EXPORT_SYMBOL vmlinux 0xf7fc0873 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xf8050fac acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xf80daaf3 consume_skb +EXPORT_SYMBOL vmlinux 0xf811b34e blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf81f20ad unregister_binfmt +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf827ecea md_cluster_ops +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf83423ba nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xf83e287c uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xf84a234a kill_block_super +EXPORT_SYMBOL vmlinux 0xf84f9c4e sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0xf851c996 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xf86dc7ac scsi_register_interface +EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header +EXPORT_SYMBOL vmlinux 0xf8954ea1 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0xf89a3be4 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xf8a4a98c datagram_poll +EXPORT_SYMBOL vmlinux 0xf8e3b572 dm_table_get_md +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf91091e6 generic_ro_fops +EXPORT_SYMBOL vmlinux 0xf9188c39 prepare_to_swait +EXPORT_SYMBOL vmlinux 0xf923b2f7 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xf923f67d phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0xf9272c73 tcp_child_process +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf943942e udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xf9471204 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xf95bfe1f cfb_fillrect +EXPORT_SYMBOL vmlinux 0xf95d55d2 mdiobus_read +EXPORT_SYMBOL vmlinux 0xf991ef73 vm_node_stat +EXPORT_SYMBOL vmlinux 0xf99aded6 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xf99ff02e acpi_os_get_line +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9a8e926 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xf9ab1d69 register_filesystem +EXPORT_SYMBOL vmlinux 0xf9e0adaf fscrypt_get_encryption_info +EXPORT_SYMBOL vmlinux 0xf9e0c1e4 del_gendisk +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xf9e8d5aa skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xf9eb8af0 nvm_get_bb_tbl +EXPORT_SYMBOL vmlinux 0xf9f3f2e6 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0xfa22dc34 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xfa2da41a seq_release +EXPORT_SYMBOL vmlinux 0xfa3a38bf phy_device_remove +EXPORT_SYMBOL vmlinux 0xfa4505f9 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5bcf35 mod_timer +EXPORT_SYMBOL vmlinux 0xfa8afedf __alloc_skb +EXPORT_SYMBOL vmlinux 0xfa92d4af ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfad6b947 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0xfae11bf4 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0xfaeb5ec4 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0xfaeebdf5 brioctl_set +EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent +EXPORT_SYMBOL vmlinux 0xfb080be0 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0xfb099517 input_get_keycode +EXPORT_SYMBOL vmlinux 0xfb0cecfd vm_event_states +EXPORT_SYMBOL vmlinux 0xfb113878 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xfb2ed7ae dma_pool_create +EXPORT_SYMBOL vmlinux 0xfb553615 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xfb6400d9 netdev_update_features +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbb9281e sk_dst_check +EXPORT_SYMBOL vmlinux 0xfbc10de4 override_creds +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbd71298 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xfbf534e3 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc1a40c6 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0xfc36fa11 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc485dd9 iget5_locked +EXPORT_SYMBOL vmlinux 0xfc562165 acpi_run_osc +EXPORT_SYMBOL vmlinux 0xfc593322 __nd_iostat_start +EXPORT_SYMBOL vmlinux 0xfc5a8d6f __inet_hash +EXPORT_SYMBOL vmlinux 0xfc60a109 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xfc734327 queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0xfc872fd1 get_ibs_caps +EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0xfcc22c78 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcc555e5 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xfcd69bcd alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xfcd70dee vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd01c436 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xfd02f27f dev_addr_add +EXPORT_SYMBOL vmlinux 0xfd0457bc skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xfd1a361d get_thermal_instance +EXPORT_SYMBOL vmlinux 0xfd204b29 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xfd238cca blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xfd26159e pci_disable_msi +EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xfd44d01c writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xfd49837b __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xfd550168 vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0xfd6e1f29 pagevec_lookup +EXPORT_SYMBOL vmlinux 0xfd7795e9 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0xfd9319b4 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfd9bc202 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xfda08177 agp_generic_enable +EXPORT_SYMBOL vmlinux 0xfdaeea6b pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xfdb51f82 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdc09175 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xfdd2d103 set_anon_super +EXPORT_SYMBOL vmlinux 0xfdd7db51 alloc_disk +EXPORT_SYMBOL vmlinux 0xfddd0bf4 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xfdfa55ba __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfdfd4a18 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xfdfd6c90 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe047ce6 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0xfe081176 vga_switcheroo_lock_ddc +EXPORT_SYMBOL vmlinux 0xfe0ee2b4 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xfe13c522 acpi_install_gpe_raw_handler +EXPORT_SYMBOL vmlinux 0xfe1e04f9 param_ops_uint +EXPORT_SYMBOL vmlinux 0xfe20ae2f unlock_rename +EXPORT_SYMBOL vmlinux 0xfe2608ee xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xfe3bf242 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xfe5d30e9 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe5eaa1d netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xfe73a630 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe80cae1 uuid_be_to_bin +EXPORT_SYMBOL vmlinux 0xfe8998bf pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xfe9869cb ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0xfe9b81a6 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfeb13bd9 seq_vprintf +EXPORT_SYMBOL vmlinux 0xfebc1f1a scsi_unregister +EXPORT_SYMBOL vmlinux 0xfebf33b1 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xfecc6541 skb_push +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee1f22f twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xfee278a4 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xfeecd234 tty_port_init +EXPORT_SYMBOL vmlinux 0xfef2c78f idr_get_next +EXPORT_SYMBOL vmlinux 0xff088f88 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xff0904d9 pnp_find_dev +EXPORT_SYMBOL vmlinux 0xff091b63 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xff0cb8dd __scsi_add_device +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff41e1ea truncate_pagecache +EXPORT_SYMBOL vmlinux 0xff44faef twl6040_power +EXPORT_SYMBOL vmlinux 0xff480992 dump_fpu +EXPORT_SYMBOL vmlinux 0xff52bf73 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff844dc0 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0xff8a3f9b cdrom_media_changed +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff978a76 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffb953d0 disk_stack_limits +EXPORT_SYMBOL vmlinux 0xffbdc152 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xffcae7ff dev_get_flags +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL_GPL arch/x86/crypto/aes-i586 0x7060bf0a crypto_aes_encrypt_x86 +EXPORT_SYMBOL_GPL arch/x86/crypto/aes-i586 0xe409b491 crypto_aes_decrypt_x86 +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x0afb347b glue_ctr_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x836a927f glue_cbc_decrypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x8f02ac4d glue_xts_crypt_128bit_one +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xd46c3971 glue_cbc_encrypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xd7e0dc9d glue_ecb_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xf3385cd0 glue_xts_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-i586 0x28afd262 twofish_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-i586 0x6f068d90 twofish_dec_blk +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x002a3f56 __tracepoint_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00afaffb kvm_default_tsc_scaling_ratio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x011dd2e5 kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x029dd3e5 kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02bf12ab kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x03d963d9 kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x04d02677 kvm_no_apic_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0665f0b4 reset_shadow_zero_bits_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x07448110 __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x07b9acb0 kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08725bda kvm_set_xcr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08c11f86 kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0af17ecd kvm_lapic_switch_to_sw_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b171b4a kvm_lapic_hv_timer_in_use +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0c055eae __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0c599e8d kvm_before_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0c6e55af kvm_valid_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x103951c6 kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x11c04ecb kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x11fc1c6b kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1272b16e kvm_vector_hashing_enabled +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1284724f gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x14617ee1 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x14c4ef6a gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15041fca kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b2caa58 kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ca5fc70 kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d22fc9b kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ef5cea3 __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f471308 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x203d41d6 kvm_init_shadow_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x226103cc kvm_mmu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x233c596e __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x252a70f3 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26144574 kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2af3c123 kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2bfebac4 kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c84b973 gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d512d46 kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2edafc9b __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f636c31 kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2fe267e4 kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31568aa3 kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x315d85a5 kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317f9e6b kvm_enable_efer_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32fda446 kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x345af423 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x34d01a87 kvm_mce_cap_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3564d494 kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39c47ec6 kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a87a40b kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3bd1ec1b kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3be29553 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c5deee0 kvm_scale_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ea097f7 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f75440b __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x420da744 kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44033589 kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45d6ee77 kvm_write_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x46c82fa3 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x475d9a25 x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4875e427 kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4956376a kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ba38a40 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e2e19e8 kvm_mmu_sync_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e40a7fc handle_mmio_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x52c9a346 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54c8d486 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55e619e5 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56f55a04 kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x584edd8d kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b977068 kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c4fc9ce gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d0b0516 kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5f350e15 kvm_mmu_unprotect_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5f95e5cf kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64020e10 kvm_set_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65a8e80f vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65b1e082 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68980d85 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c177c74 __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6db69707 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7029a0ca kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70eb2dd9 kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7101748d kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7220334e __tracepoint_kvm_ple_window +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72c20542 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x75b22183 __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x75c04b3a kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x75c5a95c kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x77712861 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79f237f7 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ac1f8ae kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7beac057 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c1dacab gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c8d5418 reprogram_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7cd7d75b kvm_mmu_slot_largepage_remove_write_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7eed6466 __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f0580b3 kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fe855d9 kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x80343104 __tracepoint_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81acbc3f kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831327da kvm_max_guest_tsc_khz +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8442e067 kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x860d3b34 kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x86e8699e kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b928389 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ec3e383 kvm_mmu_clear_dirty_pt_masked +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f78d0d8 __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8fc53afe kvm_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x91f982f0 kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92bfa38a kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x934bd43f kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9391f99b __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93bd913b kvm_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96bc2c81 kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96dbe382 kvm_mpx_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9736a471 kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98c7ed68 __tracepoint_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a216313 kvm_define_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a9788f3 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9b43f936 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d6b867b kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9dd85ae9 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e57f676 kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e62cf2c kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa14178b3 reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2768107 kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4b38dca kvm_apic_match_dest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa72e806c kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7d9c68f kvm_mmu_set_mask_ptes +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae256a2f kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaff112ed kvm_fast_pio_out +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1172747 kvm_lapic_expired_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb26e7c8b kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5284923 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb68827fc kvm_get_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb71686f4 kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb84b9a5b kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb90f417e mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba3eebf9 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9ed435 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbcf1ed4a kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbecdb06f kvm_mmu_slot_set_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc0d7371e kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc102043d load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc238d4fb kvm_vcpu_reload_apic_access_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc3698555 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc36de184 kvm_mmu_unload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc477b3c5 vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc56d75ce __kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc599bc18 kvm_max_tsc_scaling_ratio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc65b73a0 kvm_after_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc6f46b55 kvm_mmu_slot_leaf_clear_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc776ac64 kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7e35741 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc8097f1b kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc92913b0 kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc9d78373 kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc9e54c7c kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd055f10 kvm_lapic_reg_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcdb4b89a kvm_lapic_reg_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce09a273 kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0482ff2 __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd3d2eee7 kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd920e0fa kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc54bf94 kvm_mmu_unprotect_page_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc89cf4e x86_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe33cb8a3 __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe5ded0eb kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe6bc299d kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8656c7a gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9bdcdca kvm_lapic_switch_to_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea0e3a59 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea2ee8b1 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xedb27d7c kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf0576c58 kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf180dfc2 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2e22582 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2f286c4 kvm_tsc_scaling_ratio_frac_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf3bf5052 __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf45a8855 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf50f6d00 kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf5ff9c93 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf84310cf reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf9b2447c kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa9104a4 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfbedd396 kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc30d554 kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc77f9a7 __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfdf09539 kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfeb66ecd kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff14bc2c kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xffc54c00 cpuid_query_maxphyaddr +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x07a9f9b7 ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x29e6b147 ablk_init_common +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x40ed65ea ablk_set_key +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x5bbce902 ablk_exit +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xbf9fd8c5 ablk_init +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xcea8828f ablk_decrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xda4bce85 __ablk_encrypt +EXPORT_SYMBOL_GPL crypto/af_alg 0x0429449d af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x0b6c459b af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x11badcb8 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x1dda15ba af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x4f62f7b7 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x663410c0 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x90467538 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x9f35c327 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xb4694152 af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0xd1ed10a0 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xe59b9553 af_alg_release +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x71e52848 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xc0009eb7 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xca8a928b async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x4a161e76 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xc016e1ba async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xaa10cf5d async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb2cdbd6f async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb33adc0c async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc9fb0c5b __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x0dd05b4d async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x5e5622bc async_xor_val +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xe1cf07c2 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xcd39d4df cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x11ddcb8e cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 +EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x157e5a3f crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xb92323d2 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/cryptd 0x0a713bc3 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x1e6507b4 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x2bb5e1bf cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x2f912564 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x2fa1b5c7 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x5940104b cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x5e6c9932 cryptd_ablkcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x6186895b cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x95fe24e5 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xa744aefe cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xb3356163 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xb3dce039 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xb5c21fb1 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey +EXPORT_SYMBOL_GPL crypto/dh_generic 0x9edeb49b crypto_dh_decode_key +EXPORT_SYMBOL_GPL crypto/dh_generic 0xa9c31fb3 crypto_dh_key_len +EXPORT_SYMBOL_GPL crypto/dh_generic 0xb25efd9f crypto_dh_encode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x597307c5 crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table +EXPORT_SYMBOL_GPL crypto/lrw 0x53b8796a lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x3acf0ee1 mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x880a320f mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0xc32260c9 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xf0c88b3e mcryptd_ahash_desc +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x2135c52d crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x32f42f56 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x348fe334 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x636dd73a crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x413af428 serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xdfd20a1a twofish_setkey +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x55f06946 acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xcfd92bfa acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x1c8984c7 acpi_smbus_unregister_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x87bd07bd acpi_smbus_register_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xb9a141b0 acpi_smbus_read +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xe1372311 acpi_smbus_write +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x06ce7d72 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0b615faa ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0c121074 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0f66b1d8 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x155b2b4d ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2baa2ba0 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x327371bd ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x408995c0 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4f74607d ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x52d34b14 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5420c141 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8c785230 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8e9a961a ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaf79783e ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb2680d85 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb5f5e232 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbcc9f65b ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc4f03648 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd730a847 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe24cb9d5 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe88ad21d ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xecc31656 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf4dc08b9 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1352de5a ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x487b56ab ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x58c5dcc0 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x637095fc ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x68260fdf ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6a4eeac7 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x77be723d ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7db420d2 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x90600547 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd6945c3e ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe53fb024 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf1fc25c9 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf9be788e ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x95d64c29 __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/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-spmi 0x128faebe __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x78594398 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xa8e3f958 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xce2e2d49 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x059ce55d bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x09639edd bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0a89d844 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0baaf8a2 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1c40585c bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1c92afd2 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2004fa9d bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2cb8be90 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3b84b7b4 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x435d85ae bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4b26a114 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x56300635 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5d7b27f7 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6211070d bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7a8b8900 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x960d21b8 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa6e14d6d bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xba0681b5 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd4cdf202 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd576b9b7 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdc39adbd bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xee2c3a5d bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf462db7f bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfc634902 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3af6d80a btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x659fdea5 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9b6b3bbd btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa1a5ff21 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb5becdbd btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc9d75ad5 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x145d86af btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3bfb925a btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3d8b3811 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3f0ba00d btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4997dbab btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4de74260 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6935e746 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6fef279f btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9412d7ec btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xab33dc40 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xad651ac3 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xea8f3136 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf5c72256 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfaec2553 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x10d58ecf btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x30691905 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5efb85fc btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x66731182 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6a18a230 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x79ae8ff3 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8b2c0ba2 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8c16f995 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb5a7deeb btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xba6f71bd btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc1c19713 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x1292d4ac qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xf1d79284 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x0a13f83e btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x6c71880f h4_recv_buf +EXPORT_SYMBOL_GPL drivers/char/scx200_gpio 0xb6580802 scx200_gpio_ops +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 0xf7a93495 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0d45695a adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1aad0232 adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2df32b4a adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2e2e34b2 adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x30f7c9fe adf_vf2pf_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3972d6e3 qat_crypto_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x46580947 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4c08fe42 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4c35eb36 adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4de95e5a adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5fec5a56 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x609fcd18 adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x68736764 adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6b4cd8df adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6dbba5c1 adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7197b7de adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x740b143b adf_vf2pf_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x82d31383 adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8b2d19dc adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x93a2abff adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x93ba3b39 adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9d1e935e adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xac57529c adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb3642657 adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb50d599e adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb7aadacf adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbe677e68 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbf2e8a75 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc56374c2 adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc9d557d1 adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xca5fbb40 adf_dev_in_use +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 0xe14e9a3c adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe6ece776 adf_iov_putmsg +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xeddfe72f adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf172f5a3 adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf18d4117 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf6f60e91 adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfb8add34 adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfd8dbe72 adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/dax/dax 0x17bce14a devm_create_dax_dev +EXPORT_SYMBOL_GPL drivers/dax/dax 0x7e39753b alloc_dax_region +EXPORT_SYMBOL_GPL drivers/dax/dax 0x85fc80e9 dax_region_put +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x227188d3 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x3a08e31b dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4ff34f26 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x83e84af3 dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xfcd8a356 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x34a7d81a hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x592daeb6 hsu_dma_get_status +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x8bb66cba hsu_dma_do_irq +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xb774408d hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x1bd428e0 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xa8aa1b54 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x064fa57b vchan_tx_desc_free +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x1b30873a vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x62c7c6ea vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xbd59231d vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xdf7d145c vchan_init +EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0x927e5c97 amd64_get_dram_hole_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0e3be444 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x23ef4e27 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x278d4518 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2eeb2695 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3b5fe4fb edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x43cacf8c edac_stop_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4f962a94 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x55315c9e edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6cb7c0d7 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x86f47635 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8815e9a0 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8e520ae8 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x95be440d edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x99cbc11d edac_mod_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9dd00d21 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9e810a3d edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa1c5b86a edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa592a96a edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb0441745 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb833ba1e edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbd44b453 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbf97afde edac_queue_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc2393a55 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc4b5e34f edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xcbbfc932 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd8cebd05 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x14878009 amd_report_gart_errors +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x1d34e996 pp_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xb30b7e56 amd_decode_mce +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xc389e498 amd_register_ecc_decoder +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xd062ca76 amd_unregister_ecc_decoder +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x9bd94b27 get_scpi_ops +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x18df6720 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4f29b041 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6506924f fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x954247ad fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc87a21b7 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xdbcc8b95 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0x013fbdac cs5535_gpio_set +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0x93f8fe67 cs5535_gpio_set_irq +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xc0bb404a cs5535_gpio_setup_event +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xd3bd9300 cs5535_gpio_isset +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xe07c0954 cs5535_gpio_clear +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xbbcdf984 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x989f1bf3 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xef5cd471 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0de303c2 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x266e6ad0 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd64b3dec drm_class_device_register +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 0xe7237b0b i915_gpu_turbo_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x3b47ce58 ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xc65a1b2a ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xcb0869bc ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0040ccae hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2089f834 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x244648e6 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x252d1823 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x32c99b64 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x34f78319 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3a11939c hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3a474fb7 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3f2a3882 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x410c7ff4 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4eef61b6 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4f537f3f hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5cd7cb2a __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6a088f85 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7a6d27c5 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7cac2426 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8666c98d hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8a65d261 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8aa13412 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8e925870 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x94b5e4dd hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x96a548f5 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xab6ba4bb hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xad88310b hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb2a3952b hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb9b8e19c hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc80d31d9 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcd77d646 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd1116eb2 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd16d1f86 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd2bdd656 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd5e335be hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe858b384 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xec02200b hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf0246e2d hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf1807f12 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x0f5d0250 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x120b7dde roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x62c3592e roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x72df7dd4 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7c075804 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x9832a511 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xe61d8248 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x139df672 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x669a7a19 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x68ba7cfb sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x858d3121 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9609677c sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc7624d55 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd6838bce sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xda8a6d2c hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf398c9c4 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xf407bc15 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0092f7d0 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0fec0c9b hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1256d1b1 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2ac5d124 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x31cf6bf1 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x46b42024 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4b4fb620 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4dfc1aa0 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x964f66ff hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa0a696fa hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa1cf04bc hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa52ab8c9 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb2273e75 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xce320625 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd126c203 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe3e2faff hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfd17377d hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x02dc3dba vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0654e58d vmbus_sendpacket_pagebuffer_ctl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x19e559b0 vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1c6586ec vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1e9076ed vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x25a0a3d2 vmbus_cpu_number_to_vp_number +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a35c87 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4855ac39 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x53274271 vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x62921c9a vmbus_sendpacket_multipagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x65630302 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6bcc46c4 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x85bc36c3 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x945805a0 vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x978c2ffd vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9e3e53fd __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa2206940 vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb42cd3c0 vmbus_get_outgoing_channel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb5763f61 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb96567cf vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdb2f6047 vmbus_free_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeadb5fcc vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xecf8c570 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x4c0ba1b6 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x5bf8529b adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xd241dde3 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x00286f8a pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x14ff0511 pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2b80f994 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2c8c297d pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2d092101 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3748243f pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x44059d8e pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x49c4b722 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5d051060 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x877784c9 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xae42605d pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xbb5d4751 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xbfe2caa7 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd47525f2 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe45c6af8 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0fa48003 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x395ed07a intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4490896c intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x567cba3f intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5f28de93 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xcd2ecb06 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd55f86f6 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x14823e44 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5bc462b4 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5e5dac8e stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x694df546 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb6849ada stm_source_write +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x23711531 i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x27274b01 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x5a4d3ad9 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x9f16aadf i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xc1b635c8 i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0xda9c0d70 nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x2da911c2 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xd8bd7ca5 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xe524fa51 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xf2b56eec i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x012cf874 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xa53c8fd0 i2c_setup_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xaba8a039 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xf7cadfff i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x8b36af0d bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x9c57dd4d bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xa7ba8a57 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xe6b59160 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x030c7e02 mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x1356f3b5 mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x1384a67a mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1dbdd1f6 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x26897514 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x42ba68d3 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x73f75e57 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9d67c382 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa4df99fc ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd2bcf47e ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf7e2f49a ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf8572ea4 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion +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 0x4c439ef3 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 0x7af91d9f iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x8145bccf ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x8ca37980 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x849d2f93 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x9e97e548 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xf7343362 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0c642188 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x1c7c78a1 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3486e994 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x489ad3fc adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x48bf28cd adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x78e7e648 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x865ef226 adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x88cd521a adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x88f81339 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb0ac7340 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe37688a4 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf2e431ab adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x78bea7f3 bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x83f61583 bmi160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x2416b5fb inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x681657c8 inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x83fb8737 inv_mpu_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xa065059f inv_mpu6050_set_power_itg +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0b3b0db3 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x125e5afb iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1374e3ef iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1b23e541 iio_channel_get +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 0x2b50e5b3 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3118627f iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x31cb0a5e devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3294557b iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x33c662c9 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3c801f51 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x40bc4e4a iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4cf3dea9 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5075978b iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x536fecf0 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x56bdc6e5 devm_iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5d6d2081 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x619c05b6 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x73de747b iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x78d69d5e iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x797ab0d4 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x82da3477 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9fd101d2 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb24e1856 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb282c8f3 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb8e733a6 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbb875bf0 devm_iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbe97f83f iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc1d20272 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc99592b8 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc9e2605d iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcc465521 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd9407a5f devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd9fb788d iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xda073ea3 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdbd173c3 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe3444377 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeb1193ca iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf9315beb devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0x863c56e4 mpl115_probe +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/sw/rxe/rdma_rxe 0x482bdf0e rxe_dev_put +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xf11fadb9 input_ff_create_memless +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 0x97765b20 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x050384c1 rmi_process_interrupt_requests +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0697722f rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x13302e5e rmi_get_register_desc_item +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x27f199ee rmi_register_desc_calc_size +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x31b5e1be __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x387e692f rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x473cafdd rmi_read_register_desc +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x494ab321 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6032c7c4 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6a04a933 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7059825a rmi_register_desc_calc_reg_offset +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7d823b37 rmi_read_pdt_entry +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8e726789 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa75809fe rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb9c97b46 rmi_2d_sensor_set_input_params +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xdb8dd8e4 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xdd335102 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe427af14 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xfbdc87a5 rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x3103439d cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x704d6a4b cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x9842b86e cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x6a3fddc0 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x7131e21e cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xb2a5742f cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xe9727843 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x0701c5ed tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x8aed5f0a tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x9378c617 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xf3059a3b tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x06be0bae wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x29a48b8a wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x60369e0f wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6b948c40 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7af80ea7 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8bb3b22f wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x95e3f2d9 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xabc3f8e2 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb277a158 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe50e8b14 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe979290b wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf8b0964e wm9705_codec +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x338ab8dc ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5823198b ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x63817324 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x692bcfbc ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6f5c5b64 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x705c2393 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x90083e99 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9db92445 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xcaaa8f4a ipack_bus_register +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x143c2668 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x18071a6f gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x281ee8c5 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x600943f5 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6182b835 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7b00ee00 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x923f8e83 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x93248a08 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9416f867 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x97bf9ce1 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x97ebf872 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc2d73bc7 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xebb9ddd3 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xef2a03b0 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xef9e7a31 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf720bf4a gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf8bf08c1 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/leds/dell-led 0x86fd1ffb dell_app_wmi_led_set +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x0b4e78ea led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7e3c59b2 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x81a9ef8b led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x87d14359 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbace5d9c led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd8ed5b41 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0a57c947 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2f156983 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3da44bd0 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x57636223 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5fd4d780 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8650e43f lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc794fdbc lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcedee66e lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd26e6067 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd318df30 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xde1d570f lp55xx_register_sysfs +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/mcb/mcb 0x07efd9ee mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x093a9462 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x126dbe43 mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x13c3c47b mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x1d984a81 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x266cc639 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2795f89a mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5722cea5 mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x6520f0b3 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x77377f5a mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa3c0917e mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb6e189e7 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe20c4cdf mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe84a04fd mcb_release_bus +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x02ce290c __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17eac0f8 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a9ab848 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2c437ee8 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x47eb5d3c __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4c335f55 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ef50c7b __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ba7ca35 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x652a0434 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x69302482 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x722e42af __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x73d3c8c3 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x76b62b5b __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7a166f35 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x83976f6a __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8d6b9077 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8f176e80 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x91000c8f __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d57059c __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa09ec603 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xade292e7 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xadeb7c0b __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6d9add1 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc7ec4586 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce62b302 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd1dc5463 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd20bb2e0 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd2b0cbc6 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd539a89c __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef63fd59 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf55d5c1c __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0499f31c dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1002a838 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 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x31b98799 dm_get_cell +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 0x7c604d73 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8b52aa97 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9e9c140a dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa26148b0 dm_bio_detain +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 0xb8317bd3 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdbb49dc0 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 0x22163b69 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3909d3a8 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x5575d155 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +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 0x9b2b253a dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new +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-cache 0x3690e4fe dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x57f1485e dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x60117405 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xb0fb12c1 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xb44e34aa dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcae86f04 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xed6f510f dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x7275ab55 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xb1d21aa5 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 0x09472122 dm_rh_dec +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 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 0x819e6ab0 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x8da032eb dm_rh_mark_nosync +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 0xa8813ad6 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xaf670850 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc2b01425 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc821effe dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xeec41ff8 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key +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 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x150c85ce dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum +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 0x32b5f546 dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x33c03da6 dm_sm_disk_open +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 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x619701dc dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk +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 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit +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 0x832bf228 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify +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 0x966a8838 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock +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 0xa2507774 dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb8c09278 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbcfdc290 dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbe0497aa dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xead1e727 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0x00096a0f cec_set_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0x4961a844 cec_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0xbff6533d cec_phys_addr_validate +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0xd2f2eac1 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x00396434 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0c7dc61e saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x13970d75 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3b07e4f8 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6417fa4e saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x78b1e0ec saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa1b287d7 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc2daf9a4 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xdfa70512 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf77ab964 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x206c7ac9 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x27cf8b3e saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x44967b90 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5a01be96 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x86595247 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa0612d0a saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa8c5d09a saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0e9c5c21 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x14146b0d smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1ad2b8b5 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x42b211c1 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x43956dcb smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4db9881e smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5d633ff0 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x68cf00ea smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6967de34 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6b1ade08 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x79efcacb smscore_register_device +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 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9cb37b46 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa3df1cf5 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xaa31ab9a smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xab35afa6 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdd4b2384 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfcd873ab smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x0756995d tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x0b63430e tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x1c236f52 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x395504e9 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4cf9e178 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x5c15f12d tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6da054cc tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7527c0ad tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x89685ab4 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x8deb2d91 tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x9e9e5267 tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xbbf641fb tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe01d21d2 tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf26d0c08 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xff59bd86 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x0781e0d6 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x822a029a tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x0575eda3 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/media 0x0d938021 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x0fa66beb media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x16321978 media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x3c84ac81 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/media 0x532164f3 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/media 0x6021bf57 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x6132b94d __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/media 0x67a209cf media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x6bc6d8c8 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0x7e55e599 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0x812b86bd media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/media 0x8d31fd2d media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0x8d882554 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/media 0x9066d88d media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0x92a2e936 media_device_find_devres +EXPORT_SYMBOL_GPL drivers/media/media 0x970b7b12 media_device_get_devres +EXPORT_SYMBOL_GPL drivers/media/media 0x984f4bb8 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/media 0xa0c03b88 media_entity_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xa2885ce1 media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0xa818be46 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0xab749e56 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/media 0xb10b48b9 media_device_init +EXPORT_SYMBOL_GPL drivers/media/media 0xb18831b4 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0xb27a00da media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/media 0xb33f99b0 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/media 0xb9f02a44 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0xc0fd19c7 media_entity_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/media 0xc43f3985 __media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0xc4eb5780 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0xc5228be4 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0xc6ddf0c0 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xc97d0a48 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xc9d80a6e media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xdc581289 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/media 0xdda43d5a media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/media 0xe3afbc44 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0xe5cdad29 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xf83d36a2 __media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x6a57f855 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0d08b50d mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0ea96110 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x249fde3e mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2a919048 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3d2e3bbe mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x48af8b63 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x50f4d6c2 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5d17e272 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x65b50651 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6f965add mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x80543c74 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8943a70d mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x93b59ac3 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa1308258 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb0436a9b mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb0e52b2a mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcabb96c7 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe4994a71 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf326e187 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0e3026f3 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3b0488c0 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3d5bd5d0 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3e7ed34c saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4c1a528b saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x551395b0 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x776d3f15 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7ef3d69b saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8bc78268 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9317ed1a saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x942b5808 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa367dbb0 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb304f27c saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbe5b2759 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc258c38b saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd0666d41 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd2a624d2 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd9001c5b saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdab1989f saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x19c1dd97 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x242adc56 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x27b8f9ee ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x601aa4b9 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x60d023ba ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xab503ebb ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xc5dc402c ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x299ed394 radio_isa_remove +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x2d14840a radio_isa_probe +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x4d4c0813 radio_isa_pnp_probe +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x6ed014db radio_isa_pnp_remove +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0xdb16d94e radio_isa_match +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x08fea38e radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xbe60f5a1 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0f464766 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1725e4ea ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x22452dcc ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3c8b350b ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x406ca6a8 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x409d0dfb ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x53efda4b rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6732a4d4 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x747e32ee rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x74b8d104 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7f40579a rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x89256e25 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x988293cc rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9b6fece6 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb1359b22 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb4f6cb0f rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcd2ff5d6 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd28e08e2 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe066ca10 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xb9e3e64c mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x359075fb microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xfbdec157 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xa1759613 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xd52701e7 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x1d0c9ceb tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xcf38fbf8 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xf5891743 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xd829b987 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xb2a2ecb2 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xdf40f268 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x8f2e81c3 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x9c91d1cc tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x5f5efa06 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0740f46e cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1a5fdb88 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1ddeb8ab cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x20fa07e1 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x49ecd652 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4d4f8317 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5b29eded cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5e1ab898 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6e709ea1 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7db2a61d cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x92fa97b0 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9dd6cae6 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa68e81d8 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa942737f cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbcc2edf1 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc035734a cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcb247001 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd7efc24a cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd9bd66ee cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfe4175e4 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x8ae6bda3 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x41284dd7 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x170b0a8e em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x250327b0 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2885683e em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2d87880d em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4867e7dd em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x499e9f30 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x52c8b7ba em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x52e25b2c em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x69fa5e8c em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6ee44fba em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x713eacad em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x77848b51 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x83602fe9 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9c1e29f5 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa53328e1 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xaffc1375 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb62d457a em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf6c53629 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf9410de8 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x02001f35 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x12b3d410 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x574c2068 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x81b32656 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x042fbaff v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x0783daf0 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x7e3898b8 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xa5b39071 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xc1556d1e v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xc3477df9 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x363ad524 v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x5e1e43ef v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xa33b8f30 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0df9b26b v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1733df38 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x188cce62 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x201f85d0 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x31c90068 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x37ede5a2 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3feb821e v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4368fdaf v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x475a0cec v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4870199b v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x58d86105 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5c7867c8 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6ca01928 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6e59d044 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6f660759 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7d148bf7 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7d8996c1 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x80e73fd1 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8ea399f6 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8ee839fa v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9c3c260e v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xada2b9ab v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd8ed059e v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe0f89be5 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf6554e15 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf8170f5e v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfcfbe6e4 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1125a705 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1492d345 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x21e9739c videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x260c73fc videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x293deca1 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x35b3ecfe videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x38b41be1 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x399a0edb videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3af851d0 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4d4ba631 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x57aff2e0 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5a9231c5 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x72af2011 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x72ed0f75 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x91aaa01d videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x924564bf __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xab409e06 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xba38006c videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc9c7b6fd videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd21f0cfe videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdded2bba videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xed0ae0de videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfb59ca0c videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfb96176e videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x320d01ae videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x36cbf08f videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x5020a30d videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xecf24e67 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x08ca25fb videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x69abb79a videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x776975cd videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1dc6b0a4 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2534e1c9 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2c9c4917 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2e38a379 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x30ea8899 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3533e1df vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x47a569be vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x54095252 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5d20b921 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5ded6af4 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x61e78082 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6a74297f vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x79b7d676 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc1c1d088 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc8b39f4a vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc9c1c245 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd2c85674 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd4ab4145 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xdac5047a vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf2466bc5 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf3da2138 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf64b36c6 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf886d6a2 vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x6fc4f030 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x96b106d5 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xb21cb9d6 vb2_dma_contig_clear_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xa1dae15e vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0xd8d682a3 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x02c5bebb vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0de93642 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x11788e5d vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x16454b52 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x173767a3 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1d9ceef6 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x21d211e7 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3d8a8954 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4595113a vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4a0da96e vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4feabf73 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5356ad4c vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6f4dd9a5 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7197aa29 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x77ba3ffb vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8ccee90a vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8e1c1922 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8e1d7384 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8ee9d4b6 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x92f7fd06 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9795a5ed vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9cecf085 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa112e782 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb0e733e8 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbc1d77f3 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd4c4cca3 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xea648dc8 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf8148da4 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0xf5afdc2f vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0343ecf4 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x09639208 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1459bbc4 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1a5bfaab v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1d7dd80e v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2bbf2127 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2de273b6 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2e1bea5f v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2e777608 v4l2_pipeline_pm_use +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f47b8f2 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x38977f0f __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3a0d0918 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x401f85ea v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50d65b11 v4l2_subdev_free_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6538b879 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7430656a v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x783da15d __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x84ee2c9b v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x86fa4ca9 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8ad9d7c7 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9216a465 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9507fbed v4l2_subdev_alloc_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa082b17a v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa3837f20 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa5ae53c2 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa5bac525 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa869aa62 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaa91cedc v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb03fa08e v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb3196489 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbc083191 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbe58c532 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc2b0376b v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc66815e4 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd8dca7df __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe21a1fae v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe21e6afc v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeda9b996 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf171ea70 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf3b28760 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf697707d v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfbecbeec __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfd7ebeee v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfee03c6c v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x01ac332f pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x038bb212 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x5931f382 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0a005b5c da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x29a7dae5 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x52fbead5 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x61a8bb73 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x805a8f66 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb56a0b43 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xfd79e123 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x1b1066b9 intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x3c99d177 intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xb084269f intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xd775cfc5 intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xf61cb4cb intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0fc1633b kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5d19188d kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x645fec99 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x95d1330b kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xbcc47e6f kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xc0b0eb4b kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd950a7c4 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf693a713 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x0cf1c415 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x79d83feb lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xfe7c0eea lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x07c3de0f lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5e06b9e2 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x85cd2096 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc39b4a1d lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xcf9a6a51 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe67304fe lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xec4ee573 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x0835b296 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x88d001a1 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xfbf3f08e lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x0ab93e3b mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x18b6cb53 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x4a03751b mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x62bf7cc5 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x64282798 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7772dc8c mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1a9b6319 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x34dea6a6 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x45405761 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x67df5b3f pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7abc34a6 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8d9f5aac pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9c3ea58d pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa770783c pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa7b38818 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbab4c85a pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdeea4b53 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x149ab020 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x2220abaa pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x20ce2a2d pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x484aa848 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x9e0c3e95 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc10a2511 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe0f7f52d pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3e4fcb56 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4d2be3a0 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4fe8e4df rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5a1048a1 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x633504af rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x653440f5 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x69cac55a rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x75247e26 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x796af0fe rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x862fac91 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8d1d79fc rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9f2c198d rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa9fd14a7 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xaa8162b7 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb414ac4d rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb8121688 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbc42ed27 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc57cbb94 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc6344773 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xca6a1a6e rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe81b3edf rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xefde6d7c rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf7e37558 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xfcb10931 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x19f367a7 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x252ad195 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2ae26ec1 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2e15eabe rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x38354b1c rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x494a1615 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5362d87f rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7a5edc40 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x800f4c2d rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x9bebc45c rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xbda1f218 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xdc76fc92 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xfce334aa rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x00b5e1af si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x053425f0 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0b6b7188 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0dd3ed6f si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0fef549f si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x126b3b88 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1742d9bc si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1cf97cab si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x220efdef si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2ae963d1 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x321d5bc7 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x363a9d03 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4b344659 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5c96301c si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6677cd19 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x80dc7aea si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x877fc4e2 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8d919d89 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x90f153f8 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x91e493ef si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x920eade1 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9bab3f30 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa0cf52f6 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa3aea2c2 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbf5299db si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd1143d18 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd1b5884b si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd257cd86 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd7da4b8d si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdbd83439 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdd2eedd1 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe65d2cb3 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xedc62424 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf78575cf si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2d2f75ac sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x7edd99b9 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xb8dd0c40 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xc4cca8e5 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd7f6202d sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x30b8a9fc am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7d7b0a5c am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x84edaf78 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xb014d9d7 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x2a62e676 tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x84bc2743 tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xadca5807 tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xb1b8ada9 tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x0ab52075 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x418d1a2b tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x53fa78a7 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x6dea08bd tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x421f9821 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x8b02269d bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x8e2b02dd bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xd82b990f bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xe222af9b bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x366ca116 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x5826f891 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc92423ee cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xd468ab16 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x151b5667 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1ea2f75d enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x487a556a enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7ad7e7b0 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x882a7b75 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcf890adb enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd5acf17e enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xdd5ef725 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2229cf3c lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x47a6ee81 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9a8ef94f lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa88ee85c lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbeec133f lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xdc81604d lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xdf6f4761 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xeaf9f0e4 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x211f9597 mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x34fc13e2 mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x414d9aa0 mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x44472621 mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4b0031c9 mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4d839e03 __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x503c13e5 mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5241e0e9 mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x58ac8126 mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x79aae676 mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7adddfda mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7c03066e mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7c481bf6 mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x823226eb mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x897c2eee mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x94feb0a0 mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9b7324ba mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa8f75518 mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xaa9bc41a mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb30e2af7 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb974e7ae mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc43d8165 mei_cldev_register_event_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xda27124f mei_fw_status2str +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xda860d69 mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xdb51ff6d mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xdf8c1c55 mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe6562a7d mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/pti 0x19f09b98 pti_release_masterchannel +EXPORT_SYMBOL_GPL drivers/misc/pti 0x23bde487 pti_request_masterchannel +EXPORT_SYMBOL_GPL drivers/misc/pti 0x52a78e81 pti_writedata +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x090615c3 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xbf97dc83 st_register +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x04a68a1b vmci_qpair_dequev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x0f6680ea vmci_qpair_produce_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1152e318 vmci_qpair_get_produce_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x13aa5a5d vmci_datagram_create_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1872c7af vmci_qpair_produce_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1a195863 vmci_context_get_priv_flags +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2e30d970 vmci_qpair_dequeue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3ef56cd5 vmci_qpair_alloc +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4b630dac vmci_get_context_id +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ea2ccbc vmci_qpair_peek +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x50a255c9 vmci_doorbell_create +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x677c36d0 vmci_is_context_owner +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x69ef87ff vmci_datagram_destroy_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x6cc1a5f7 vmci_datagram_create_handle_priv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x722d488a vmci_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7d540b50 vmci_qpair_consume_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x8b8ad67a vmci_qpair_enqueue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9624c58c vmci_datagram_send +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9973b9b2 vmci_qpair_consume_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9d16164a vmci_send_datagram +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xa277f970 vmci_qpair_peekv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xbbc20921 vmci_qpair_enquev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xccbb53d1 vmci_doorbell_notify +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xcf5ed7ef vmci_event_subscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xdac94780 vmci_qpair_get_consume_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe7e7c107 vmci_doorbell_destroy +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x03b28d66 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0761c3f1 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x08341cdd __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x19b1d949 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x358383d0 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5f27da17 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7b850eea sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x86877555 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8728d1b4 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x89000fc9 sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8e8090e9 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9e8637ce sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa1062279 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb239cc1c __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc24d4774 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc8d22b75 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd9827e43 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfeaa9448 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfebd9262 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x142c837d sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1687f082 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2be401ed sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3f97bfd5 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x7033be4c sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xcd1a5ff1 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xcdb98222 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x06e749ca cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x39ce6c22 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xfbf96c5c cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x1841c684 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x66138d54 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xebb80902 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x88b4bdb9 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x62544d72 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xa6f6e265 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xe1083598 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0a577183 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0dfab194 mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x14bb7360 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1634f162 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x19a2ccd6 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1bb746a9 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2038992f mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x25a68a92 mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2f336fff mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x328855e1 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x32e168fa mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x36f82a2b mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x38fb8aaf mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3af9a75b mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3d9f211c mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x413d2b60 mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x452ea2c3 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4956851e mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x49c83278 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4c61b24d mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4edaea9d mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5094ecc5 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x51bc3b59 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5529ad71 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5661b299 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x59b256c5 mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5afbda5d mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6d855b2b mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7188fc5e __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7edd265f mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x94e3be2e register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x97f12a9c mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9fdcc2c9 mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa117e4d4 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa2c0320b mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa50057bb unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa8fc4b65 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xac161187 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xad33a044 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaf786fff mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb59f1e4c mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbc36d1e0 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbfd4c37d mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd119bb9a mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd3de2d63 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xebe2ed3b mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf32ed5c7 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf3500cff mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf3dac325 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf61afb0d put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf7e40ffb mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfa6e50b9 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x0dae4243 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xc02754c8 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xde58ff2d register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xe3fa9e8d deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xf4878676 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x0993f3a7 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x15e48011 nand_ooblayout_sp_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x2c0a6438 nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x84726c36 nand_ooblayout_lp_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x857190fe sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x6b9288cb onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xd37ae84a onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xb3cd158b spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0021478f ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0557c7d2 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0a965375 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1631606b ubi_leb_read_sg +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 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6a12aef8 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x72e81bbf ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85596250 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x96119e48 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9898ae12 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb0cf94d7 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc4ff0881 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc9eb8d3f ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xda9340fd ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe9ea1ee6 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x951d973d arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xa31f835c devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1b6d4e30 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x792b6c70 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8410edef unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa784b368 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xeb4b8941 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xf5453737 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1f9c5450 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2573d364 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3178f34e close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x368a0c09 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3b43a0f3 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4d890370 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5127c876 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x67657cbc register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x70af5adb safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x71e7d628 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x71e82431 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7309ee75 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8989e6ac can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xaa16f446 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb2a8f402 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbbcefe84 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe06d5669 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf9dd4183 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x65701e1b free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x67a5d1aa alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x7028bf3a unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x8c935c8e register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x511cd899 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x9432214e alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc5f86f99 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe8b6fc5c unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02ab718d mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04bcaf73 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04d590df mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05c27a34 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08dbfbac __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a5a6bc4 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b42b55e mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0bae4592 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d766a17 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0eaae829 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f0b78e5 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f93c061 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fd19eda mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18678d33 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18bdc86a mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a2b1edf mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b2610d4 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b2760dc mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d7cd1f1 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1de99682 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f994e36 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2000edd1 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x267fd09b mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29763ea7 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2bd74659 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x347f9fea mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36ddf63e mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38c75830 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38c760dd mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bb01cd7 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cb50cd6 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d8bd1b1 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e47bbf3 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4309464f mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x441fdbc1 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45025b4c mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x470ff91e mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49787e27 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ad023eb mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4da899e5 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4dd8ef2e mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x506d131d mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51008be1 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x545c2022 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x554b9dec mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57e9fa24 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58e971cb mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b753386 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cdb3aca mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ff9559a mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61736738 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64f2a88a mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6523759f mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6700838d mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a6eedc2 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cc60aab mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70143253 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x730e605f mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7392e54d mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75448534 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75a8497a mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c5f3365 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ddea9ed mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82ff8808 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d3d66e8 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8db5b3ea mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90b32332 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91f05fce mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98c6db02 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ae69292 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bdba1df mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa113a306 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1241e28 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa19443d8 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa45331bc mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa561c20d mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7f73f56 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa86dc7bf mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9c8b561 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb092fa19 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2c867c7 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb57422f8 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5d08e4d mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6e9beb5 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8e1b983 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb91a83e4 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbbd31be mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc8cd6b2 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdaba51d mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe0bdbcb mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe1b0afa mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf002b64 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0051191 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2c26954 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3cf85e9 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc767bf0d mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc789cff9 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7a41f7f mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc87e522a mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc99c2dac mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb4be513 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcca3adab mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2bd3a57 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd36c7e8b mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd485fafc mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4fff35c mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9d96239 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda10a589 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda6300d0 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda8dcd20 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdac0c1a9 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd0aafb8 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0515eee mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe26a7b37 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2c7f196 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5299ecd __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeced3fe7 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecfd30b7 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed880ddd mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4982196 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb2ae8a5 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcb2fc85 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcd7c9ab mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcdd8820 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd225ab0 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfde2566b mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05ccc8c8 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x080e94cf mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08f615ea mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0bf572e0 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d1adead mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1afa2c8a mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e31014a mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2342c3c9 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24382c37 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2caf5e13 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f7a4f53 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x310b3acf mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x329b64c2 mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38336aeb mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38d2ff61 mlx5_core_dealloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39b2c56f mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39bad287 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3da585a5 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3db30c71 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4435a35e mlx5_core_query_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45fdcbb4 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e715e94 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50aab10d mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53d7a1bb mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53f3935f mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56d56b50 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57de5c9d mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59a35e09 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fbd97d6 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60988501 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64b6b8e1 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a78c169 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b2b730c mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bfdf0ef mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c7854a8 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d28edbf mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71d0e50c mlx5_query_port_autoneg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73cbeffa mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e7030e9 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f7a3a09 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81045b6c mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c99e196 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94b19551 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95312d12 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x998bbc5b mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a11fddc mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cee9899 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d6e97ee mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa741b69b mlx5_modify_vport_admin_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa769105 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacd4e9bc mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3df797d mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4e2aab1 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb81d829c mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbca35137 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1fa5196 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc297326d mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3377482 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4180373 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4f1e6fd mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcade4aeb mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd135b418 mlx5_core_alloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3e715c3 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6d36088 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd80150af mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcb9e494 mlx5_set_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2120860 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe719c9d1 mlx5_query_vport_admin_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9b6d879 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeed7c0d1 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefcf1cfa mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf16d1f73 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf199b2d6 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf621f8d7 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x86e252ad devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd4ab3625 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x114628ed stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x150ec7b0 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x47e1e7ce stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xc8511450 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x51f5ee19 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xbc2d5f74 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xbec129c8 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xee1f67e3 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x152e6530 cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x153673c9 cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x29b3e2ca cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x40208602 cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x407e5591 cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x49328300 cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x52346db6 cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x6b9d1399 cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x838f956e cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa1d45058 cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xbaa51466 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd259528b cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xdadbedba cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xed6f0173 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xff243a1e cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x0b364427 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x471b1fbb w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x91b764fc w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xb9085686 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/geneve 0xe160332a geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x461c0e55 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x4739c4e2 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x6bad0815 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xfc9b4542 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x67749829 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2cc7b754 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7bdaf9f1 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8a688e07 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc530d7fd bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xda66e0f4 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xde4005c3 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe92ec829 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf3833a77 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf62fcb70 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf75765cb bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x1736b9d5 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5926f3dd usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5e615cde usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x67fb1568 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0831febe cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x19b34f99 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x227a45c9 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3be2472a cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x659a18a3 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6d1de30a cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x983b4db9 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe4970c1a cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfee07875 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0b5dac63 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1c7a6423 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x354fa303 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x3bf1658e generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x3f02f63a rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf3a9a474 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00050473 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x024881ed usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x056a43d2 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x071c5f69 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0a05d0b5 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x13c81986 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x21206ac7 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2b5a3b2e usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x376c7204 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x49742bc1 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4d0071d3 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x503e7fb0 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x57209567 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5966e3db usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5ba0d16b usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x77fb26d4 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x856a397b usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x908bcdb5 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x94fb1299 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x96e07f2b usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x990c8846 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9c34d44f usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9e8554f1 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa420c5e7 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb006f315 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xba6ed870 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbdada04b usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xca3152a4 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd7065a29 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe8c28df3 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xee921f6f usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf42f4bdd usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x6918198e vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0459033a i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x08da5695 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x254d707e i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x27b54d7c i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3eefe114 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x42cd35a8 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6047761d i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7c314def i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x83c6e928 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x91fb2b1d i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xad86e972 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xbcb5c6a9 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc310a2f1 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe42c64c8 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf25066b3 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf4c0b9f6 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x0851e4ee libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x15078498 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x598ff14c _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8e45a710 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x90675d46 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaec8cc53 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x082547db iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0c3adc26 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x192f43a3 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1934697a iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1b074767 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1b0eb41f iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2d82b8b5 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x34bb495a iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x36296e57 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3b7b7812 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x48e17f2e __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4ce57356 iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4fa183ce iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x512a2413 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x55ea3368 iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x585e2fe6 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5ee5ab54 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x623f0f90 iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x67e6b32f __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6be694bb iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7e182b4b iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x847cda2b iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x84a57c68 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x84f01ad0 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8ab14d93 iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8dc4064f iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8fbdcd15 iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x93db323a iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x95965ded iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb46de658 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb6a9bf7c iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb8979af3 iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc4a8fc91 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc4ceb926 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd471e965 iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd49b4b3e iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd9281ecc iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe6baa173 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea7dc0e9 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xec5df77d iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfe139c36 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x158b8055 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x1a8e6ec2 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x4932ca15 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x69ee12be p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb16e4a36 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb3b2027e p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xceb8dcae p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd8eef4be p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd96031b1 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0e277281 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x23526f15 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2c1fc332 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x33125f2b lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x372e5077 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5493e7da lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x710934a0 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x74d07ede lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x804f25dc lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x839b9cca lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x90fa2bf1 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9529fd16 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x98f54bc9 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbe1db688 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc67a4cd8 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xca0ca398 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x3071ae14 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x4fa278aa lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x526176a6 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x5926b755 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x89bb60b0 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xaf2c69c2 __lbtf_cmd +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 0xe07b0703 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xfaa360e3 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0254435a _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0a6a9dd2 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x123c5724 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1590ff2e mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x16a2582a mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x34df7038 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x576a7bd5 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x58de0a73 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5dc60600 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x60d69b69 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6971a3f9 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7af0de76 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7bfdf2a3 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8e00ca65 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa8b70e27 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc36d9af3 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc8987585 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd0c020db mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xda354c42 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe50ce9ca mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x00ff7547 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x01ec90e2 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x06c34b22 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0715a468 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x10a93a91 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x183262d8 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x25d67e69 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2ba704e6 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x34c44192 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x37dc8739 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3e41ae2e rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x43369664 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4461acfc rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x56c4432d rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x57a61b1c rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5c9cdeb5 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x61aab041 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x65275ad4 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6a14c897 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6aecaee7 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6f1b1bb0 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x75027519 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x75811e2b rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x82ea44b7 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x83e42bf9 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x870fec25 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x93cb7315 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9ab5d2ec rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbddc7474 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc1c854dd rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe159d894 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe5ade171 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe73bd261 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe85f55b1 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xef20f0f1 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfab55fb6 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfb07da9a rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xff9a1ea9 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0a62cb59 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x197d5871 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3099dc9f rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3267ede3 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8cbad515 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8d37f887 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xaa8bc9b7 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb72bc867 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xba12edb4 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc6634d78 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe916d156 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf4da32cf rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfdc1cb2c rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x006b20ff rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x00c66875 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x01fd7726 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x02d0c52d rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x04974f7f rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x08a3614a rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x138ab806 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2064c08d rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2124b569 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x22b241da rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x35e73de4 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x397d4f51 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3b774a35 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3cbe07aa rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4066b568 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x41fc96de rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x48b04472 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x490c3722 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x56808403 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x598b3d86 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x62213aaa rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x683445f9 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6c54f939 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6f56b5fd rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7705c1f5 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x79d6d4f6 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8043e8b0 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9018fd0b rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x963f496e rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x965d183a rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa5760f7d rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa802c0e9 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa9cc3b0a rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaf55f9fb rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb0259250 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb1f92d4e rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbb1abdb2 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbeabeaeb rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd3e04586 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd6f0fe2f rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xddafaee5 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe72e6760 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf99e8810 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfbda0813 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfd995085 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfee5be48 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x73e143c0 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x93022001 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x93629f1f rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xc582be93 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xffd6dd2b rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x3b2b5fdf rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x3d60abfc rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x5f4a7a7b rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xd828f400 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x04cd2c8a rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0ed56cf1 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2abc818a rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x36762333 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3bc5a215 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4602b2b2 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x67fdcf96 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6cff5234 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7f2c6f10 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8c9a0b70 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xabb45f68 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xae55159e rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb1a29a8e rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd965669d rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xef096692 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf2a9c309 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6561c2c5 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7c7891bb dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7f122471 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc33489ac rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x13c943af rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x183ed003 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1d2aaf46 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3a86cad3 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x500cb0b3 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x507f0b6b rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x550888d6 rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x62a7adc8 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x62aabd58 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x77442c9b rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x77a712c2 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7d70af50 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x80f64278 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x84daf586 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8e0dfd7e rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9c39f490 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9ff4958a rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbb4ed417 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc0c48f2e rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xce7bb026 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcef4bb37 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd08cd1d8 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe437959c rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf04d1b1c rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf0a8394a rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf2a4beb5 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfffcc6db rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x08d52fa9 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0ec0cf7f rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x191f7fe7 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2a84a2db rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x343819b4 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x46241102 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x473add0f rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6a5d583e rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6fd0af9f rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7c81d2bc rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x84b7f12e rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x99f3671b read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9ee59bd9 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa8bad24d rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafcdc668 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb816aad6 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe6746f4a rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe9472537 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xef237c05 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf9a300aa rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfb425b34 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0da435de rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x707020eb rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7d5ac934 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xe9fe5ff8 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x1127c614 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x4624e43c cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x9189e2d8 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xbec52f38 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x4832c97f nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x4c4a67de mei_phy_ops +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xbaa3e171 nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x015f3c37 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xa026f7e2 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xb489b167 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xf7a7c355 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x6c309ea7 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x8fcc65ed pn533_register_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x965a3248 pn533_unregister_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2a925c30 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x94c76d70 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xaeb958f1 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb3d24ec6 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb5eb4374 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc0df0464 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xdeb729aa st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf52ae0db st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x35213254 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x71b62e5d st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xd2583c28 st95hf_spi_recv_response +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 0x3138fe78 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x31c0a419 ntb_transport_unregister_client +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 0x97e95547 ntb_transport_create_queue +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 0x1ffa30c3 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x29c36030 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x327858b1 nvme_max_retries +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x507d3383 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x669bd411 nvme_init_identify +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x696758ce nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x768d4786 nvme_queue_async_events +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x870e588f __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x88e8c9ba nvme_put_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8d548517 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8f7d7803 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9da4905f nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa4e87e28 nvme_start_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xad74b69b nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb1ce7286 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbb9faf53 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc220abfb nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc457b087 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd0996e0f nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd12ba5d7 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd4ee9312 nvme_queue_scan +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xda3e8f6d nvme_requeue_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe306827a nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe9ae9eb8 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf3fadb92 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf958ab24 admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfb24ac86 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2463e597 nvmf_get_subsysnqn +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2e3544f4 nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x371552e4 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x41a0153b nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x52f7eba8 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5b6f4b51 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7559aade nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x80873746 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xdfc4b176 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf6397f50 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1622c482 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x16352cf2 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1c75c2be nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4b4762ae nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x81fc7bd8 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xfe55944f nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xff30d075 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x441d9237 nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4d791610 devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x59a691b6 nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x68758fda nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x84e7bdde nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x89dd331c devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xd6cfdaad devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe18960ba nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x11d425e7 intel_pinctrl_suspend +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x5471f845 intel_pinctrl_resume +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xcda112a8 intel_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xcf6772c8 intel_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x30a6b84e asus_wmi_unregister_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x3600f5b8 asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0x51552fca dell_rbtn_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0xa060fe7d dell_rbtn_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x6fc812f8 dell_smbios_clear_buffer +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x8a79b3de dell_smbios_release_buffer +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xbde33baf dell_smbios_get_buffer +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xc2871e79 dell_smbios_error +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xd816c94e dell_smbios_send_request +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xf5197de4 dell_smbios_find_token +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x56235c72 intel_pmc_ipc_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x75068282 intel_pmc_ipc_raw_cmd +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xdea07053 intel_pmc_ipc_simple_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_punit_ipc 0xa6c87106 intel_punit_ipc_command +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/thinkpad_acpi 0x706cdcef tpacpi_led_set +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x3ecf6cfc wmi_install_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x64ebe677 wmi_query_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xa9b7afd8 wmi_set_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xb5a6ebe2 wmi_remove_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc5e3dddf wmi_get_event_data +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xe2426710 wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0x1b7b5690 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0x41e8f4db bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0xacab93c7 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x182e211c pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x897827e0 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xadc802e6 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x6365870a pwm_lpss_byt_info +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xa1a15362 pwm_lpss_probe +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xafcf8794 pwm_lpss_bxt_info +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xb563cdb0 pwm_lpss_remove +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xc34d815f pwm_lpss_bsw_info +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x4116dc2c mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x4164bc93 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x7455fe40 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3bcd5967 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x547cf746 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x5a27a75c wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x5e57825f wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa4efe7f7 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xeab09575 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x82b13058 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x081d6a03 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0b0842be cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1540f129 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x163d6c4e cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1ae27699 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x23b0ab25 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x260bca61 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x26dad44d cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3be587c4 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x438f5d21 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4867d2c4 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x519ea369 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5446ea59 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c1f5159 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c684dde cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x623424bb cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x67f36520 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x682294dc cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x69547eea cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6b2154de cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7c83aa88 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x86a09221 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a7a32ee cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x97b774a6 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9a113a44 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa8cffb8e cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa93acee3 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaafd55c1 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb199ba04 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb1baab17 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb38e59cd cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc575dd06 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc630d695 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc7a861fb cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcc08a266 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcd73eeba cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcd88fee6 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd14fe99e cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd1e3bfda cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd7a1ec0b cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe8c90ade cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef569198 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf2b9302b cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf2e8087f cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf61f1818 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0a37eab2 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0c4be87d __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0f8fef1e fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1c1a5063 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x341aeefa fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4b383277 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7a375f94 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7de4ee34 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8220de16 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9b3016b8 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa38d6c33 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa4792b63 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa5baeb3f fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xba398f34 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc7b447f3 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe5e699e8 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x12f044b1 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x31f4ddbf iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x93d9940b iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb1786913 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xccd7ab32 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd0498a17 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xefd380fe iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x05e5052f iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x10743968 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x169840ce iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x181ec11b iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1c71f945 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2660f456 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2efa499a iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x333c3db3 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x37a38dcd iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3f0fcd2f iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x430ce23a iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4d15b49e iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x509074dd iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x62760868 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x629588fe iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x647e8db4 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x66825274 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x69eceaae iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x70901de1 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ae9343c iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7d55f4c0 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x86f2d839 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x89bd85fa iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x89cf749a iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x95c9b9db iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x98e9eeba iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9cfccb92 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa55d5c7a iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa5be9fe5 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xae5011f0 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb551dfb8 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbd38086d __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbfc24fd5 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc0a42bdd iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcbcfdad6 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd0d6ca46 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd638cebf iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xec3cec8a iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xef85b8ed iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf2af8619 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfe81f51f iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x13547a8c iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x223dd22f iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x44d5f051 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5055aac9 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x83b274c1 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8560ed9c iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x90b2a2ae iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xaff68a21 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbac821ce iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbc83b184 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc0b21bcf iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc7cfec74 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xde71bc30 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf078adc0 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf3468f26 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf993e3a1 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf9e5031b iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x00bf4492 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x018f855f sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x06644e41 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x08389661 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1b9def6f sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1bd89fe0 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x239f3533 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2d8a98aa sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x32729e9f sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x53504de4 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x58e232e0 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x675b468c sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7cc7a4f2 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x82738a39 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8b153c38 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8cb9af76 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xacf1263c sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb2863814 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbb8822f9 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd2fcb126 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd30b5766 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd9f0c332 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe1f24e60 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf9d01477 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x08ef5347 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x094948c7 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x096460fd iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x10c2431c iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1d6288b7 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e9b184b iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2707ef22 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x29ffed2b iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x33568273 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x38e2a20c iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f0f0016 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x401bde1c iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4736f894 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4bf9b68f iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x50499f0a iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x54a62f5e iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x59532473 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5cee093c iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x61bf5e0f iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6aa5137c iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6b492f64 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7301b5c6 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7e9efe16 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x839595b9 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x83d7618d 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 0x8c426399 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x90dab252 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x938a77c1 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9b6fa273 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa340a4ce iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa48888bf iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa6a4046f iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xae10ed76 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3bae9e4 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 0xc2ffb8a2 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd3205921 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd603ab14 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdd828fbc iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe73b0dfc iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x05b5a69c sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x15c9857c sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x4289a8d1 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x9643ed2a sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x5a4dde6f 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 0x19390810 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1ea60484 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6bc6867f srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7885baa7 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd0c02531 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe2b89eed srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x1597423f ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x456ec2f0 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x6f75cec0 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x74ee9054 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xd78782b2 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xe0099ec3 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xe3c389ba ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x0c160855 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x1046c6a9 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x1ff7357c ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x2f23a336 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x337c0523 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x7f78decc ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x8fcbcf09 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x04f6b56b spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x08470475 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6bdd7b98 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x905ffa9e spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbbbdd748 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x1d835798 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x7d1c637e dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x874dbd35 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x9db5cdf5 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xad62b24e spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xd9d40ef0 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xe4233699 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2ae67494 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2b172eda spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2dfa0837 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x36c09241 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x48ed4331 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5b0a50e9 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x71414d11 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7457af28 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x78e2cd78 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa75dbc3c spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa91a46d0 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb1f5a0cb spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc24cd69b spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc42ee900 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc6e0930a spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcb4042cc spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd21eeb0f spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd84bc02d __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xbcf71119 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x00c290fe comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x09f1d4ba comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1a6104f3 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x30b2bf84 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3165a322 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3229d30b comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x38d5b5fb comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3b798a53 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4f002e6d comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6a5f6c1f comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6a76bd86 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x74991c46 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8101e480 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x847fde8d comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8a62a6e7 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8efda69a comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x992248f4 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9fad1256 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa45f82d7 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa4d027cf comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb06ff24b comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb29a64aa comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb5f1b647 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb7e58a5f comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbea9c094 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbef20e67 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc2096c6a comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc2bdba8d comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc5bb5d67 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xca923319 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd74e49e7 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd825de72 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdcb0aebc comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe2040558 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf7f67d51 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x0468b3da comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x5aaa78df comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x8dc3b3e4 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x92f73210 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x9eefac84 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xb0f0b1c2 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xc51cc04c comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xfc6ac120 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x0e46c67a comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x31f48abe comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x33c70862 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x66c3a63e comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xd6989031 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xe4c8694a comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xe79db252 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x37ef6317 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x51287dea comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x5ee3181c comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xa2d25064 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xe23c1064 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xec6e1bc7 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0xe983264c addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x0b7b081e amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x1008fd33 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x220a3a9a amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x07adf1b1 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2acdf50e comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6065b00f comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6074a73c comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7a03a7be comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9f8c1af3 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xbe42f7bb comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc6f86283 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xcc53a9da comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd3b35a89 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xeef32956 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf1d188a2 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfb5cd411 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x2c78d0c3 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x5a04976c subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xf1bdaaaf subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x77945165 comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x7925f6d9 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x05b6391b mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x071d694b mite_sync_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x10835529 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1bdd7484 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x24310eca mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x41a99bbd mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x49b51a40 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5ac8b6d6 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5f76117d mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x79e89473 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x89e64bb1 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa74a2811 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd6ef301d mite_request_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd6f4cf8d mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdcd22560 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf475011d mite_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x1d2e7f6e labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xffbb8560 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x03d2f7c7 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x15c98e93 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xc71570d1 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xcb01c9d3 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xda2301ac labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x081c28bc ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x12e992cf ni_tio_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x1e721ab6 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2fd5d8b5 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x3450573a ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x5207df6d ni_tio_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x55be0be9 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x89eb628c ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb52d3034 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xbd60ea69 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe639abe0 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xf91f0da9 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x0e9d62d8 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x44b6097d ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x90c6d4a8 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xc5bec0d2 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xcfbc1434 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xf63fca9e ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x2b76052f comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x33bbcff8 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x661b315b comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x6d7bccb9 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x74aa947e comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x9b5e3578 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xfb44ec84 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0x00622d63 ad7606_remove +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0xa135248b ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0xaf5cabf3 ad7606_probe +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xac0b5515 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/lustre/lnet/libcfs/libcfs 0x444310b4 lustre_insert_debugfs +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x31736e61 debugfs_lustre_root +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x3e46fd47 ldebugfs_add_vars +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x3e503a03 lustre_sysfs_ops +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x5e856286 lprocfs_obd_cleanup +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x85a3928f ldebugfs_register +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x8ca35f68 ldebugfs_add_simple +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x8f4b81a0 ldebugfs_register_stats +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x996f7550 ldebugfs_remove +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xb75aecbc lprocfs_obd_setup +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xca88249c ldebugfs_seq_create +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xd9fff55e ldebugfs_obd_seq_create +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xf7fb1a34 lustre_kobj +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x739f5c59 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x7fbfb5ed cec_register_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x8669ada0 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x8c8bd5ff cec_transmit_done +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xa0717ef2 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xbe2a3ff6 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xc5aba01e cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xdde1e798 cec_received_msg +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xf45f010b cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x10545bb9 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1a079d5e most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4502b0a3 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x55478bf6 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x60e2161f most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x909a257d most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa55d6c58 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd931c55d most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xdd3c5be3 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe02468ad channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf93149fc most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xfe5961e9 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1fe75c60 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2ab8daa7 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2f32cf74 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3448a113 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x38313108 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4c01c7ec spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x871c3f53 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8b3aeb81 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9ead0ce0 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xba8243b6 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc24a2fb9 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc464da57 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x2e80348c chip_wakeup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x4edc3e57 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x577ba3f1 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x63fe8018 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x741d0cd8 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x76838e84 WILC_DEBUG_LEVEL +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x9a23038e chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xc1acbd26 wilc_chip_sleep_manually +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xf440079b wilc_netdev_init +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x5bce783c int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0xb20e0cc5 int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x7a8cd458 intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x8935032a intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xce067124 intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xf25378c3 intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x4948da92 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x4e32f1e4 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x8617d5e9 __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x07800889 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x29c731ea usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x59fa60c1 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x9073ba27 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x433f4a42 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x82335748 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xacdfaaac ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb2c7734d ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb8d95e95 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xee02b3d5 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x35d579fc gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5697a2cc gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5f8d540a gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7635f8b2 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x76cb072b gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x81f71486 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x83deeed8 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9a0fb1a8 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa8dc6d12 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa9a73522 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb3bc2cad gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb937b73d gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcc75df80 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe7ef7b03 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf8992db2 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x2d34fb56 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb50000ad gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x036d7b2b ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x45cab715 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x82d82ae6 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x06b1accb fsg_show_nofua +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 0x1a600e74 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b1cc3af store_cdrom_address +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 0x2c84ad6e fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_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 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x44461cad fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x52117317 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns +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 0x57f4298a fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5b8b5e5b fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5bce9d61 fsg_common_remove_lun +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 0x7e732cb1 fsg_lun_close +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 0x8d41fbba fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x90052c67 fsg_store_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 0x987bc0cf fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put +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 0xa46e6443 fsg_common_get +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 0xb29d2616 fsg_lun_open +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 0xd468f882 fsg_common_set_ops +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xed2be703 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 0xf8018e5d fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfa2a0656 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0c2744e1 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x10303511 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x20525d09 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x423fecb8 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x562b3660 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5ac9797a rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x64e456b8 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x78b22e84 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x87def8ec rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8e0f4f66 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbbe15ab3 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc8d9cce9 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd55cf249 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe6a11f68 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfff48948 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x08c43006 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0eff57d4 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x101609e4 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1496d070 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x14b9ac5d usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x16d41e0d usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2b024346 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3d4aa6b2 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x447f24dc usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4d21bece usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5cc66d49 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x64c431c4 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6aa963bc usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7a544869 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7ab9c41d unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x833f5268 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x87504f8d usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9340f9a3 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9976eef7 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc3a51632 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc6afaa4a usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2e45b35 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd696d3a6 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd87734d1 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdff392f1 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe0082373 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeb783ceb usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xebae7af2 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf0e7bd8c usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf6a0b960 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x009d1d8d usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0c900b81 usb_ep_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0dc34538 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1a69a2d4 usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2d5c123b usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2e9029b3 usb_ep_fifo_flush +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x345612e5 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3a53b0d2 usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3c01002c usb_ep_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x41a16372 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4f63e5e6 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5162f30b usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6898b44e usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6d4f776b usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x71fbb326 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7b4ed5f9 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8092ea73 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x94547d42 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x97634f66 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x98abb578 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa5e57fcd gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa602fc29 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xab209f52 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb11a0a3b usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb5b90f59 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb6fa8d98 usb_ep_fifo_status +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc9b07263 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xca0be558 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xca89a231 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xce3d337b usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd16b6bce usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd326d723 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd67d8fa1 usb_ep_set_wedge +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd8d32b10 usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdfedbf96 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe9aab91f usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xff6d74e6 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xa8370895 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xab21a8b4 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x10b2b7fb usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x157acd22 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x19e5b886 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x46b3f8dd usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4cf8b536 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5ebcbe1f usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd5e30b94 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf1f1eab9 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf24abff2 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xd1ce3dcc musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x126db831 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x4da89fa8 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x64992891 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x76345977 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xc005db05 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x6cbf9f71 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x5b7b771e usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0d1f602a usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0ec99768 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x35c8e0b1 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x37a19ad7 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3aa85e71 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3d9cf017 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3eff858e usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x67619554 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x68b1f56b usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7085197b usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7ea6abef usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9515b7f7 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9927cd63 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9b976b4f usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa37d71df usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xacaedcf2 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbbaf2b2e usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe7e4b0dd usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf2c9db6c usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf7aa996e usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfbaae5b6 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0311a36e fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1e05e0f7 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x370c8ff0 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3a3c20cd usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x491f24e4 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4ee1e801 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5325ce5a usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x551bd244 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5f5cc8fa usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x61a4f478 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x657fb38a usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6d0fa2f4 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x701213b7 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x80f208b1 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x974c3f64 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xaf8326ba usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb23b98e4 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb24b41ef usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb75b0166 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd9d5d5fc usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdca786a6 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdd1fcbd6 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe755e508 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf3120c7a usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x050dc838 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x23c4b0c1 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x23f47748 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x30cae81d usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x338692dd usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6134e8cd usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7f72054e usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x82db3dcf usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa4e76f6c usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa946eec1 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd5fb94c5 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf23845af dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf28668c4 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0ac62b16 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x5ab6165c __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x81f2f509 wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x9a58551c wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa6d6ecc4 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb28c67f8 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xfd49b3da rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x33717458 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5b5400a2 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x67f96701 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x69ae2296 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x6c314c7d wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x6e6edf20 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7a30ce85 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7ae18536 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x84fa7336 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8633a055 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9bc5c53f wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9eee490c __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa69c940a wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbf1a8ec9 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xb24ff341 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xba558166 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xd806bd79 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x01c9a175 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x157fd95a umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x52004f84 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x6e9dde3f umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xa4e7eb2c umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xb5ff45b5 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xdad06597 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xe86a7190 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x12f6ab2e uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1a1e8dfc uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2798130c uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2b7d0d3b uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x35207525 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x380da501 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3964c66c uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3dff8436 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4577a66c uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x54ecd1a2 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x56eccec0 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5ddea2b8 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x661f0207 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x75868293 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x78d72236 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8077e55c __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x879980e1 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x894ad731 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x91450eed uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9d5c418f uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa581ad6c uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa7282087 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb0af9baa uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb86a8dd8 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbf78cd08 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc1d1b850 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc42c64eb uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcdb46459 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd8bf5919 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe07b825a uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe2aa440c uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xeca40163 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xed0f632e uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf178e9d3 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf2238c5d uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf29cd1a3 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfaef22ad uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x669f991f whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3d2ceac9 vfio_iommu_group_get +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x43a44a87 vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x51f16cdb vfio_info_cap_shift +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x64f206a4 vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x88d1707d vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8d278a9e vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9403acea vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa02643e2 vfio_group_get_external_user +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 0xf0d45a71 vfio_iommu_group_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfd0d88fc vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x63084cf8 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xc20422a6 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x02ee5ebb vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x03266239 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x10e5ec8a vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x114a9cc9 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x177213a4 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1e9212b0 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269963e9 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2900756a vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2f2bee7d vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x32e09762 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3cdaf68d vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x41e6106c vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x43c66212 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x46e8da02 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4c9b9879 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4fc45bf9 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x50565cb7 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x598e3d87 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x66feff27 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x67416c71 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6dcd9160 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7b9f74a4 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7bbf01b3 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7e5d379e vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x893b1a8d vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8b08befb vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa921b967 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xab129ed1 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xae46c687 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb06f452a vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbe40d9aa vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbff43702 vq_iotlb_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcf9077af vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd4c23e21 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd5538dfb vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd62b5066 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xda988656 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeb0a8109 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeeea4f75 vhost_enqueue_msg +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 0x59764bf4 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x71e8ad5d ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa6a5e0f5 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc53a6a4c ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xda1318d7 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xef567ddd ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf0166dd8 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x3164f524 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x32aaa775 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x33a7c831 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x6016224f auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x72401028 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x7298e44c auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x863c7f88 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xccec4661 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xecbc649c auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xfb920717 auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xd4f44311 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x2bfdc52f fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xa09ed154 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x49eb2a3f sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xb5c38ed7 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 0x0f33ffdd viafb_find_i2c_adapter +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x22a7af24 viafb_dma_copy_out_sg +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x292da7a2 viafb_irq_enable +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 0x79e6190a 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 0xfff2dfd2 viafb_gpio_lookup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x03f82cd3 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x2c8ea529 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x452c6abb w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x4e6a2671 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5619f16b w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x68828a54 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xabf297b7 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb3bd6ddd w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xe725e7b9 w1_read_block +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x191ca0ce xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x1891bed7 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x3a205b6e dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xf0faae90 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2f1943a9 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x47b12ca5 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x648d7d7c nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8b428f60 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9a72d5c8 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb5f84ca3 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbb74fc1b nlmclnt_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02be2091 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03c620e9 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06a7ea33 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x076c6fbb nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07a3ff80 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07bcb8df nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0acfc3f4 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1147b85d nfs_commit_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13070734 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1410b83b nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x166d8e01 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18043a88 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b674849 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c955712 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f17004d nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f97f1d9 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x211ab936 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22dc7d74 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25a295ad nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f369637 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30b60131 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31a72293 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3299ba3f __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34b8f53b nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34f2eb49 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37697d06 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38ca72ff nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x395207bc nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a77a023 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a8ff767 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +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 0x40ff0471 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44e3e728 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x458393fe nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47040dc2 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47a32615 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48d737c1 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48e145c2 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x494fabe2 nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49cc4e7d nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b4febfa nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5054c02e nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53469f27 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54c94df3 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56e9f526 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5751db0e nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58f36605 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c7595ee nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e39ce6b nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ed138f3 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x645544d2 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69e8f398 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d115762 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f45c2c3 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75c584b3 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75f54d58 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d6d7282 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d859bd5 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8128e2b2 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8379b495 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x880952e9 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8892f2d3 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89d8def7 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8aea2fd4 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e52ea08 nfs_remount +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 0x92fb1625 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9649ecce nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x967cbaf1 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96d50793 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x971e9c3d nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x989e09e6 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9cb31d80 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9dbf1600 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9df3a829 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f504500 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1e219d5 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4681356 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5a9a4cd nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa71af813 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9297bd4 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa9432f7 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaed9c20 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xabc712ab nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad8723cc nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf853211 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0c2ad1c nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb14d29ba nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4fbcaba nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8230c55 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb908c452 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbae147c3 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdac3b39 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdeaa619 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc05e5605 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc124e0c3 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc213363d nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc32fbaa8 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc54f1365 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5d02838 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc64f1367 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb22c71a nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb80571a nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcdaa5087 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0101283 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd03b3016 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3f53c5c nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd74dfc86 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd81105be nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8b70f89 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9e6ba8b nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb1c89a5 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb8b5a8e nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd1442f5 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf197798 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe020d41f alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe21771fc nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3a81ee7 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe44f930f nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4dca731 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9f2ae1e nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb03bdcf nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0162cf9 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf194de5b nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3d780d2 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf749ba73 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf865654b nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf98c8782 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa630315 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfde6ed56 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xc6629d9a nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x03ae5bc2 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x061c1aa2 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e9f0082 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10e8bba2 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x19531f00 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x223d848d nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23a7a216 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24852741 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x255861da pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26ba94fb pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x278fc4ce nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x29db9480 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a0d89bf nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48a1a040 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4a1ea688 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4a304aa1 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f2afc4c pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50a4aee4 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50a60515 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53a3bafb pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55ea0f4b nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56a0d032 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x58080f79 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70351896 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78e34ab1 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c2013a0 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ded2f7d pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85b0d587 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x89834eea nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x89b9dd33 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8a4085c3 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ab40b56 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91a79ded pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96f16a8f nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98caa774 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a9eb48c pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c3b5581 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e4deba7 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f3940f2 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa38a5091 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4a88f27 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab801dee pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac9086b4 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaffdf5c2 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0a46bb7 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb62450a7 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc1c35e7 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc256563 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc9d0eb7 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd656c4c nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce6d935e nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf987999 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd23e0332 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd30d498d nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd604a0b9 nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb6c7150 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd8d3727 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe69d89b1 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf6c4d5d9 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf856559b pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe9a74f3 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7db175a9 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x9cbea451 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xb85ea25e locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x0aff1247 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x1d9f174e nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +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 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4e508e55 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5932f47a o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x679db4b3 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x84b13f93 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x95912527 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xafc497fe o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc8d6fce6 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +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/dlm/ocfs2_dlm 0x0fee84b8 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x337fc902 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4a62a037 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x59976c20 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb55beb7d dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xbf7394b0 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 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x33615f4d ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xb8d3ef75 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xdedfc10e ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xf3f171fa ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x2d225c3b torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online +EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0x669a9730 _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0x97300a87 _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x6e7f83c4 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x70ce6768 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 lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57861324 base_inv_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57d39367 base_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x882ce5fc base_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x9e0112d0 base_inv_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xaedfbb15 base_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xc8fca8a6 base_inv_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xd11741a1 base_inv_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xe3d900b5 base_old_false_key +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x08cc2752 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x4b6363ce lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x96f07f7f garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xb1c1f168 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xbe5cd9ee garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xbeb5e6ee garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xcfde6546 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xf6099881 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x065514e3 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x3e3326b9 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x6116908e mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x75b0f3c5 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xa447dd1d mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xb68dd117 mrp_request_join +EXPORT_SYMBOL_GPL net/802/stp 0x07238389 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xc19630ae stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x8986074d p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x99f56a9e 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 0x0fd3795c 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 0x42c180fe l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x58f842c1 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5c6bdac8 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xaab6d21f l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe2cc54a9 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xeae9d665 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xee4c2734 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xff661f7f l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0428d594 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1118a855 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x29f4b7bc br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2ff6be8b br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x70845a61 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xae7af728 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbb6876b2 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xeda5d9c7 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x754ab7ac nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xab051fe5 nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/core/devlink 0x044fdf8d devlink_port_register +EXPORT_SYMBOL_GPL net/core/devlink 0x40f8fcb2 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL net/core/devlink 0x5458ef3f devlink_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0x5f7c770d devlink_port_type_ib_set +EXPORT_SYMBOL_GPL net/core/devlink 0x7c68679e devlink_sb_register +EXPORT_SYMBOL_GPL net/core/devlink 0x8a310dcd devlink_port_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0x95801e13 devlink_register +EXPORT_SYMBOL_GPL net/core/devlink 0xab47f705 devlink_sb_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0xdf65b6ce devlink_port_type_clear +EXPORT_SYMBOL_GPL net/core/devlink 0xe93347b8 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL net/core/devlink 0xe999750f devlink_port_split_set +EXPORT_SYMBOL_GPL net/core/devlink 0xf5d2da17 devlink_alloc +EXPORT_SYMBOL_GPL net/core/devlink 0xfbdfaf58 devlink_free +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0d08799e dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0d75c687 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0df614b7 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x16dbaec2 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x17e10408 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1c085d3c dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2a897abb dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3825b950 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x40bbd31e dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x49ffba98 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4f8d7211 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6a77b9a6 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7f9fd776 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x83158b3a dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x87083428 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x889ceae6 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x96d4bc61 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa6358902 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaa075547 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xac086889 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb333abd3 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbd062034 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbeaf410e dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0084b3d dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc1a55aac dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcb184f23 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xceb2fc3d dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd01d5284 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xda4405c2 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdbc1633a dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe50475c8 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf0d64285 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf57ac163 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xffd708e5 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1c796099 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1e291c61 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x21d38ccd dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x95b5cc61 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd15074f8 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe02e2b30 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7baa7009 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x9e1e1cc1 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xe9a52016 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf3e1ebb8 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ipv4/gre 0x1eb357bc gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xe5d3160f gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x07933e2e inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1605278c inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x31ae7204 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x700964ac inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8565a204 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9cf78843 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa121753b inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc6813df1 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf051c40e inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x0b30d76c gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x113826d6 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2c727da9 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4072ed10 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x58e51282 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5dfa2524 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7c6600f4 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa512ce22 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaf145e97 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc4d93238 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc50e772d ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc8ef2a5c ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd40685b7 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe32755ca ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf30f6640 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfe75bd07 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xcd84096e arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x8a58fb52 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xb1a5ab4e nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x0fad27e5 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x1374edfa nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x160bf291 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x5e0c47ca nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xeb562644 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xf0e98b5c nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x26d48e4a nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x482deea1 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x54474c42 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa3c4d823 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc0aae1bc nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xd1b263a3 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_nv 0x25ebf3fd tcpnv_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x042341be tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x25494327 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xaf35a978 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb06022b0 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd7a92411 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0b7c41d1 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0e8a1ddc udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1153a96a udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x3d47e889 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb7f9cd38 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd9891df8 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf70a103e udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x1fbe121b ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd64509a9 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xda7f7800 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x3ff5ab40 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x5b5bf56e udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xfcc49619 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x2036f0c8 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x93977b8a nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x3750e0d6 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x9042b9c1 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x9250fc44 nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xc4c6cf3e nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xe586591d nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0xcdb7395e nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x357da84b nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x612d21eb nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6ebf2294 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb58311ea nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe862a649 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xecf0855a nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x330dfaf3 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3621110d l2tp_session_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3f9d9cb6 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x46b0fafc l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5536a47a l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x56369896 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5f2c90ad __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9443ec42 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x96a3bff3 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb2f39c74 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb406d3cf l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb87b4d39 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc723dfad l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xca230750 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd2926a19 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf1976009 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x5d0f9a30 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0026dda1 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x135f916a ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x27e64560 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x33afd28d ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4d2bd303 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x53453556 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x56a55533 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5ad7b32b ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6834eb8a ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x88bb1af6 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x947c0339 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa787e681 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xae31ff67 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbd221773 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcef32da9 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcfde4c76 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdd204177 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xebdf8959 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf194f02f ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x0441cb49 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x45ba734e nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x5a6ee807 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa126208f mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2e94b6bb ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x34c81079 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3d74b21b ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3e154572 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x40c930a8 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x52477689 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6d28b42d ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x73717354 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 0x854bd431 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9665cf80 ip_set_get_byname +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 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb09bb5c8 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd1dfcb87 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdfb86f3c ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe0915668 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfdca3e75 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfe998cf1 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1aefba6c unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x6d54489f ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7dd26fe9 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xaa49dd41 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00500f0f nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ef03ee1 nf_conntrack_get_ht +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f389e46 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f8ebd28 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1086bcc4 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1442e9de nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1497885b nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14ffc755 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18bb27b4 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1eee5425 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f13268d nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20aceb9e nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2112c3bf nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22b0de46 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26748b5c nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x269c104c nf_ct_get_tuple +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 0x2d86229f nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2e775d65 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ebc7853 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2efeb33f nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x330f8894 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33a55350 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3426bb90 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x345a8e0f nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x352ba6f8 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x366c908b nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37d8c001 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a153cd5 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e890bc2 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4289b80c nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d55c711 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f3997ba __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x50ef0061 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x55152cc9 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59bf0b81 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60ffa7cc nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64de391d nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a18dc58 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6edb45d1 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70fe7e01 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x758618db nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7e0c5d48 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ec41ff5 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x804f92cf nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x808ae49a __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82cf85e0 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x883e1729 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x889814cb nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88c2ed08 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8af15587 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f846536 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x910e0022 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91870111 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x946bb453 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97d403c4 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa02a6516 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6daa7a4 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa99a5394 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa606c7b nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xade89f1c nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb26c3b7d __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4853def nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb872a87f nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb9ec0464 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc4398c8 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc866114 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd903819 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf9d1baa nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc15f135f nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1c2be45 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6c52eb5 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc96359cc nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce3bf696 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd719cc7d nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd764ad14 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd7d19656 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd972e581 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb2e8a12 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xded63d51 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0b0c2de nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf31e8e2c nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf66f3860 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf677eedb nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7eeeca8 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xfe648275 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x8d5e2ec1 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x46ff20ed nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1d30a4ac nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3058a6f3 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3de54b12 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x772f96ea set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9dda1d61 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbc004bb7 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc820bbb1 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc8eec7bd nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdb35ff92 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdf787dd0 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xdf29cc49 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x81fd1906 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x85adfbec nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xc7dd185d nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xddebc213 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xa779ef78 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xc3c8ac96 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x25203116 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5596942c ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x625bf70f ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x672573ff ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8c7f9dae ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9499f1c1 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xdbe708c5 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xfba4f933 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x6147e90b nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xcc0b897d nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x3343664d nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x88bc676c nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x97b5fd8a nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xef575ca4 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2d396389 nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4c9c6142 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x82263344 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9073d802 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x925f8387 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbdb420c7 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd00ebcbb nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xebb9cd42 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfc78ef97 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x7263bc81 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x8e6f8ff5 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd41a1cf8 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd9cf2506 synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06555b4a nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x069a321e nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x07dffacc nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2c09d18e nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2d116d80 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x317266ee nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3cebe86f nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x544b276f nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5c797afe nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x62036fb9 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6a372cbc nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x858def3b nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x91e22a05 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x98a93d0c nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb22c4709 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc46a0505 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdeb746e8 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdeceb545 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe48adc81 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfa6aea16 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x52eb3af2 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x894f0d9a nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xabdac7b2 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xaf14809e nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf121dc94 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf413d46f nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x1812b2b8 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x6fc2f957 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xaa51f071 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x65ccde36 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x3f593792 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x701ca5c4 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xbc81d061 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x0f827f13 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x10141290 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x1d1d3b12 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x9c3db64d nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb9f58fe7 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xcff7c814 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xf0c4f9eb nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xff51d1a3 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x00190048 nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x35df1709 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x7feb67bb nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x160e09e1 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x50925863 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe5e680bf nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x011b6242 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0bfcc9f4 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x33c855e0 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x39a14c29 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3d7202e7 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6a453c2a xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7081a1f5 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x83d42cc1 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ae62bb0 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xaa6d9db5 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd7eec171 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe60707df xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xef130840 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x4c32c169 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xb7459345 xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x04493640 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x5c5d7f8c nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xe7fe5091 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x04a6e8d5 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xa79c8464 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd5e99bdd nci_uart_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x35c71d17 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x52a853eb ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x5c24e443 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x67db2a76 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8e296733 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa3acf003 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xcf30396b ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xdbbeefcb ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf8c9a6ec ovs_vport_receive +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x00bf74c1 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x123075e3 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x1332fade rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x225a7e9c rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x29526065 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x2ac587b8 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x302ef20f rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x34ef9465 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x3a39f411 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x3f3323cd rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x57aef805 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x58ca895d rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x590a0dfe rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x5b70671d rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x78e7a298 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x7d0358fd rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x86d06a02 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x8b19fc2f rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xa2741c02 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xa69681c0 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xa792abe8 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xacbd1c60 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xbb41730b rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xbda215b2 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xcd2a56b8 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xd4b708f8 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xde673448 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xe5fe8250 rds_message_addref +EXPORT_SYMBOL_GPL net/sctp/sctp 0x0070ec71 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x3145b870 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x7a0c5528 sctp_for_each_transport +EXPORT_SYMBOL_GPL net/sctp/sctp 0xb5b35a82 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x3d0558dc gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7b6947d4 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd63fe2ae gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02f2144c rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03fb03a0 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0465fda1 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x058b2e5d svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e93b4b rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06a9bf5d svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08042114 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09a9ecb7 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a228506 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d5fadbd svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e0d1022 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e62f28e svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e737ee1 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1103f40b rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13fcb407 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16eaca25 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17b92a1a svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x184df260 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18e718f2 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19746190 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ba6d17f svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bcf8d73 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c95c26f read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d0d79d5 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f28bd0a rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fed0466 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x208d81c7 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20e73fa7 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21bc093e svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22bf4cbb cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2450b464 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x245681b7 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24f21d3c rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x277429ae svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2911393f svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2949fe38 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2abadd3f rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fa7254d xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35180546 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x365ac5f4 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x370ce08e svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37c3c34d rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39f3e389 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a964f41 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cbae722 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cdc75fd rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dd3e34a rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f1dd2e0 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x408e678b rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x431883d3 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46bdef48 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48ad8550 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49ee6e97 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c5193ca rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e5d9004 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x530d3f25 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55bae983 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55d2945a rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5669f453 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x586ee023 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5888ed95 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59e00d03 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bd8ad0b rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c462979 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d3f1331 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e5b5c3b auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f184c83 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f86dd76 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61397046 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x615b1ca7 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63373876 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64a6698b rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65d73b2d sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65e16562 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65e489a2 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69d88e12 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c1d9d51 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f9350c3 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72c3fb6b svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72e55245 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74d978e5 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75476b19 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x756658ff xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75ad7bea rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75d217ae write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75eb38fe xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7700623b rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x775e4036 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7943ab1a rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d34f9ed xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dddc432 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e1cc748 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83a06aae rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83f3585c xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8408c97c svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84d1e679 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84f2d376 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85b9e944 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x863c862c rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86a429e5 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x870e7ee8 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x876b26c3 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8787bd12 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89962bc1 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89da3328 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8beca17c gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bfe0b4c svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c868bff rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c987462 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d0f2c80 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f4fbaac xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x903df858 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90a3096e cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92286865 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x929dff81 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93353b77 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94d5cae1 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x952bdddb auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95b39ca2 rpc_cap_max_reconnect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96af2ebe rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9747e8ad rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9757703f rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a101dba svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b5136d1 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bf3ac0c xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c669b4a rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d088d48 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f93fd71 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ff882b9 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0c4b055 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa283166d svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3027e99 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3432030 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa426895c rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa58a8840 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa82faae6 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9f3e190 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xade7690a xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae70b2a5 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf1bc6db rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0c92157 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2394e78 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb24458f1 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb25ed441 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2760d66 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb30fdeb3 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb346b288 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5a43408 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb676869b cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7a02b81 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb845317f rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaca518a cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb44dca8 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdff9947 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc04f2d74 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1525605 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1b3667a rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1ba5f33 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4364346 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4a98546 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc763f72f rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7cb2a3d rpc_lookup_generic_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc81d8ce3 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9a58070 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9be512b rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca52abf5 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbad44df xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc1d02d7 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccb93c9c rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd036d6c5 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0478a2e xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1bffbd1 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2158dee xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd23948d5 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2624863 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4ea5962 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd563f0da rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd56c0358 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6370349 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd81a6ee3 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9007cb9 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe063589e xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0cf7321 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe169fefb rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1855b5f xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3ab0041 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe685d60c svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe697da3d xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6dc5383 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8deb0db rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe949e01c svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebf9153c xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec59e72b xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedf0efc3 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf08e33e7 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0bf051b xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf154dc5a svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf80d4c02 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa869b92 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfadfa2ae rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc19ca76 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc37118b rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd92288a svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe47fad5 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfeff04a6 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff317e6d svc_rqst_free +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x01e9e00e virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x04393955 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0646e27a virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0bce72d7 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0c58350b virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x22c667e2 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2b3d80a9 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2be6aa6b virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2e226616 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2fa37ed0 virtio_transport_set_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x385a17eb virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4287ba26 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x478d8de4 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x48a9453c virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x523db4ad virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x59de223f virtio_transport_set_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5e6ec7c0 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6db2f7ac virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6f494bd2 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x88e14577 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x98d42558 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa722c45f virtio_transport_set_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaa7d2e9c virtio_transport_get_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xae91ab77 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xba2d6465 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc4498f2f virtio_transport_get_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc8a703ef virtio_transport_get_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcc978137 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcd64dfe3 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd056ecd6 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd7fd47d7 virtio_transport_alloc_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe16ca3f8 virtio_transport_stream_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe2ab7904 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe6a6567f virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeef1427a virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf05bf59a virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf9a971b2 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfd1b754e virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x00fbc9a3 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x125772f5 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2641dbbd vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2bc5a905 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x58501a15 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59be557a vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5f79152b vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9b75e1bd vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa23d14c3 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa52358b8 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa97eba9d vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd2e28520 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd8ff3cd8 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe41fa959 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe5a75953 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work +EXPORT_SYMBOL_GPL net/wimax/wimax 0x0286ed78 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x11686962 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x2ab00911 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x351828bd wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0x398e8d98 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5661f0be wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x583f306e wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x60565926 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x71e84101 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x8428f33c wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa5bf419f wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xea5bface wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0xed29d2cf wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0120faab cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x29240b65 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5bbb8bec cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6072a487 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6ade429a cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7642ad5c cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7b3aae57 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7cf1be49 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9ab8370d cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb1112ccf cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xba56b561 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbef0c91d cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcdf28f6e cfg80211_wext_giwmode +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 0x3bf471d7 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x06a38a86 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x2b654109 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x4dca42e9 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xc597063e ipcomp_input +EXPORT_SYMBOL_GPL sound/ac97_bus 0x6fc3d86b snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x90842abe __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x9f3293da snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd 0x0f408350 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x17ab7c17 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x3cad742a snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x8d99d373 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xbefbba7f snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0xd3e61356 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xe8f572d7 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x03851583 snd_compress_register +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x4dad16a9 snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x6a5977d8 snd_compress_deregister +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xb4a15770 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 0x32d4a43b snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4f632728 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x65d5e084 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x71e57067 snd_pcm_hw_constraint_eld +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 0xb9385713 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xbaee990a snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc265db23 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xcb5005fe snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd4d6332d _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe5872c05 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x298af182 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4feb6df4 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x513217aa snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x79b43165 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9dbb8934 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa197a64d snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xaadf1481 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc1075eaa snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd988feba snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe049688c snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf318ca37 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0e3d1ff6 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1feda88b amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x23346fcc amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4aa0defd amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xca72f5e6 amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd525343c amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdd16df3f amdtp_am824_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0773a3d0 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0ad353ba snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0d52bf67 snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0f70edbf snd_hdac_ext_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0fadb172 snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1900c66b snd_hdac_ext_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1ea9c7b8 snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2302a7b9 snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x237038ea snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x36f6bfd0 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x402ae8af snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x40ed185b snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4188e454 snd_hdac_ext_bus_device_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x457644ad snd_hdac_ext_stop_streams +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4719390e snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x49569577 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4a07b0c9 snd_hdac_ext_link_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x63e90ac5 snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6716bf3b snd_hdac_ext_bus_device_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x68b12a2b snd_hdac_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6976de2d snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6a39d59c snd_hdac_ext_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x721b2cbe snd_hdac_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x81601254 snd_hdac_ext_bus_get_link +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8dfcb376 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa2377e28 snd_hdac_ext_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xab43f014 snd_hdac_ext_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xac7f7dc5 snd_hdac_ext_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb7d7b595 snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcdabb8c6 snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdc3e84a4 snd_hdac_ext_link_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdcec54a3 snd_hdac_ext_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe1d6e237 snd_hdac_ext_link_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe3ef228c snd_hdac_ext_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe79d4913 snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xeb3cba8f snd_hdac_ext_link_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf87e78d1 snd_hdac_ext_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf9a30947 snd_hdac_ext_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0113db21 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x02a44113 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x04602e05 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x051187e8 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0990c8d7 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x18651289 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x187903e7 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19fc9273 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x21e3ec47 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22ab9a9c snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2306590b snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x23c42d49 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x243e3d4e snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x26a7ba7d snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28218981 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x387a81e7 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x39a0ee72 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3dc8a6c7 snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3dedf6dd snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e0e0ec2 snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x421de942 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42d20856 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43c32541 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4484cbbf snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x490ffd5e snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5597610b snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5709f04e snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5743d429 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a7e241c snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b5a949d snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x686ca815 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x69671a07 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6dacdd25 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7748e9bf snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7869427c hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7bda2bb0 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c6036c6 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fe25ece snd_hdac_i915_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83d141bd snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x865a56b4 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x869ee4c2 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x929a680b snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x92fd8645 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94233a18 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94f4ad05 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x95291be7 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x99b66f8a snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9b79fa04 snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9ede0366 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f4dc0fc snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3d3a28a snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa6393ca8 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7d7833e snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9a47f6e snd_hdac_i915_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaae75809 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb07c5de5 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb797f775 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba7dc59c snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbba7d00b snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbbbb772e snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf34cb61 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc02e5e5f snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc0c48b4f snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc1c81e4c _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc2f5156a snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc9376ba snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcca97bc4 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xccce6bbf snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcdbd955f snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce18b274 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd36a3c99 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd544245e snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd7c32840 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd81080ab snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc012919 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdda82bab snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe07b8e5d snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb7227c1 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb7f6b93 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec033233 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec3102c1 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0dd018a snd_hdac_i915_set_bclk +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf742c1cf snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x07cca0db snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0ce8b7a2 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x64ca211e snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x83eeae7a snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x87fa261b snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbb94f473 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01eacd09 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01ec1d45 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0270663e snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02e6cf5c snd_hda_mixer_amp_switch_put_beep +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 0x0ea4b5f3 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10557ebb snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x119962a9 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x121c5725 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1314a2ec snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16160df3 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18a1340c snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e2fa4ba snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e646e98 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2027b492 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21107982 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24d32719 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x280f07ed snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x283b447c snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d8ba16e snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2db00c40 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e59f2dd snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38238400 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38c2612b snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a44ac3b snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3afdce24 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c406b94 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d0491a8 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e95d890 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f0b5841 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x424fd133 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42e39282 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42ef0eb1 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43044cce snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4451baf6 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44802a7c snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b11bc93 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b5108ef snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50d95f99 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52b4f755 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x542bc0eb snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54470f70 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54fef641 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55233522 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56d7d396 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57c58af6 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58183374 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x585f88d8 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58616be8 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b4f1608 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5cee2c1b snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5eeb5e95 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5fc1c0a9 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60141167 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x609da46e azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66679200 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6bbf83d6 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72723ee0 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73ec3552 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73fc3783 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73fe7c76 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77807958 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7abad9c2 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f57dfdc snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f9cecc2 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fe25ce4 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x832be81c snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85c31dcb snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86a4a216 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88100e6d snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88500bef snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88525fa5 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8bd4506a snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d6ff2cc snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ffe112b __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90ae5d15 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92572e0d snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x935db522 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x959a01dd snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96a9c015 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x981d3ae2 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a8c84a9 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ce6e8a3 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d5df294 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3c53b94 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3e12355 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa94108b5 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa547645 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac57ddef snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaddd917b snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaeb142a9 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0e0ce53 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2d3adab snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4e9781d snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4ed268f snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8fecf1e snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb91dba36 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbaa64f1a snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbba81954 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf204914 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc58dc9c4 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc87f7396 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc945a7dc snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc79c4a3 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd863cb5 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf0f2b47 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd40bda8d snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb743ede snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc67eba9 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd2b4742 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2e1f715 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2fa902a snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe300f749 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe77c5df1 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8afff01 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9a273e1 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebd3fe54 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6130373 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf65b4d94 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6a30e1a snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7abfbd3 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8c65a6c snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa90fd85 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfaa53bb1 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc91d8d4 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x05402599 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1e1ec0c7 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x431a9af9 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4ba58b91 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4e113496 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x66e66e70 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 0x7d9dda79 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8712368c snd_hda_gen_free +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 0x9e24942d snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9f61e544 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa6a2e185 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xba3c0c6d snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xba94e8fb snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd241496d snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd34fa324 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdb71ed37 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe533f0e4 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe9698091 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf51a5cc2 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x26aa8fa2 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x515f2ff5 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x41972e61 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x5a896f3b cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x221a5f28 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x3a01f69f cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x43094ec6 cs42xx8_probe +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 0x032b155c da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x3a76fab5 da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x57466349 da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x65a1d1de es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xd7b35c80 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0xa2a26f77 hdac_hdmi_jack_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x1564dea1 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0x29cb9388 nau8825_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xce146aba pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xcfc946ee pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xd48b21fc pcm179x_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x07f5bb71 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x2541affe pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x2d09cb0f pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xee1c4523 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x08e2f48b pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x101456d6 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xab7a0d2b pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xea5695d1 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc +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 0x7eb6e80e rt286_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt298 0xe3778d5e rt298_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x7bb12696 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xe755be13 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x41833625 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xe6cae4af rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x78db2e17 rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x867d1d28 rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x8a5c3b7d rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xcb618516 rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x2defe17f devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x477b8af4 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5c14db4e sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x82e95c07 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xe6d0a8bc sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xf918439a devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sn95031 0xa8b9052d sn95031_jack_detection +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x21c1bceb ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x4a2a0101 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xa1e11491 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x0f649f32 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x1ebc7108 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x2ea5da9b wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x98b472d0 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x20796d0a wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xe31eba24 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/dwc/designware_pcm 0x206fc2da dw_pcm_push_tx +EXPORT_SYMBOL_GPL sound/soc/dwc/designware_pcm 0xfb1d4bfe dw_pcm_register +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x35bcc67c fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x6394f5fa fsl_asrc_platform +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 0x0a8f3ed1 asoc_simple_card_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3c35b765 asoc_simple_card_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8543f541 asoc_simple_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0x22e3d584 sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0x9e14c11b sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x2c7a0894 sst_context_init +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x316fd7d4 sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xa54c8891 sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xab14edd5 relocate_imr_addr_mrfld +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xca75a7bf sst_context_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xda68f66c intel_sst_pm +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x07d31e78 sst_dsp_shim_write64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0efb1d89 sst_dsp_stall +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x112ab6e0 sst_memcpy_toio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x15a9df31 sst_dsp_boot +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x162692c6 sst_dsp_ipc_msg_rx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1b5e8b82 sst_shim32_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x23ef5efb sst_memcpy_fromio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3650873a sst_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3ad8e63d sst_dsp_shim_update_bits_forced_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4a045773 sst_shim32_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x594914a9 sst_dsp_shim_read64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6898e3eb sst_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x71901b69 sst_dsp_shim_update_bits +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x72f92aef sst_dsp_ipc_msg_tx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x777fb446 sst_dsp_register_poll +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7bf3851b sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7d409658 sst_dsp_shim_update_bits64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8335f2aa sst_dsp_shim_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8420c52a sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x84abcd53 sst_dsp_shim_update_bits64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9b00c34f sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9bf16f9a sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9cb901bb sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa17ad99b sst_dsp_shim_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xaa0c2ce2 sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb49c982c sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb5d37498 sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbcec5387 sst_shim32_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbf4c2114 sst_dsp_dump +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc84f3e62 sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc8a473b5 sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd905c6b1 sst_dsp_reset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd9a2c94c sst_shim32_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xdd580472 sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x04ecf34d sst_fw_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x064dfae0 sst_module_runtime_save +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x06ebf27e sst_module_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x10aeea6b sst_module_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x15094da9 sst_dsp_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x2fd25ffc sst_fw_reload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x33441083 sst_module_runtime_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x361504bb sst_module_runtime_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x3ea53206 sst_fw_free_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x4397711c sst_fw_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x4d1244f1 sst_dsp_dma_get_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x59111d1d sst_mem_block_register +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x660fe9b6 sst_dsp_dma_copyto +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x74784025 sst_module_runtime_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x74f756ae sst_dsp_dma_copyfrom +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x7db5165c sst_block_alloc_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x7df67d06 sst_mem_block_unregister_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x7e73849d sst_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x86217a5c sst_module_runtime_restore +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x909919d8 sst_module_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x936ca422 sst_module_runtime_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xc48a595b sst_module_runtime_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xc7357846 sst_block_free_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xc7be0d56 sst_dsp_dma_put_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xe944e358 sst_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xeec6ab6f sst_fw_unload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xf0d2d213 sst_module_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xfa25cc63 sst_dsp_get_offset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xfcd1a77a sst_module_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xffe7b6a0 sst_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x41d1b124 sst_ipc_drop_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x53a8a51a sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x5da97063 sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x6c918c95 sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x7f0b3c16 sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x81dd2ebe sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xfad39381 sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-match 0x4ed20969 sst_acpi_find_machine +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-match 0xa150755f sst_acpi_find_name_from_hid +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xcfd88da4 sst_hsw_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xd1f69f64 sst_hsw_device_set_config +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xe8c94bc4 sst_hsw_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x0876438f snd_skl_get_module_info +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x12e1e037 skl_ipc_init_instance +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x24842484 skl_ipc_bind_unbind +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x2971c478 bxt_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x30eb3f4b skl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x35c4de12 skl_clear_module_cnt +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x39b351e6 skl_ipc_load_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x40dc81ad skl_ipc_set_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x45bb6f78 skl_ipc_save_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x47e7be49 skl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x6481aec1 skl_ipc_restore_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x6a7634c9 skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x8369291c skl_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x8663236b is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xafcb02b2 skl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xd1ba374d skl_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xd50fffb1 skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xde221406 bxt_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xe7537afe skl_ipc_unload_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xec0299b1 skl_dsp_put_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xeda1ff78 skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xee81f635 skl_ipc_get_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xfd1d5939 skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xff80262a skl_dsp_get_core +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x011e5f27 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x032ba56b snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x033bf76d snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0345c15a snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x067d144f snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09f7e5a7 snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a84f3f6 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c53cd9f snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d2486b6 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e2c2878 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1101400b snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14276cf5 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x152c82e8 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1674f1a5 snd_soc_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16c6cbd1 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22102551 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x237070d6 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23d5c2c5 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29401d74 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29e60f03 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c8ebb6c snd_soc_tplg_widget_remove_all +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e43eb86 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ecd0e19 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30c44dd8 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x314697fc snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32e9f63e snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33c0f3f4 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b405b16 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f762a9a snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4118b9bd snd_soc_tplg_widget_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41a4d549 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42923b26 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42b4b1f5 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44db2def snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45dfde31 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x464dcf53 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46767498 snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x476fc265 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x496f481d snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e1342d4 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fe2a125 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x516f16d3 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5206dbc6 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53ec93b2 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56200959 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x563d1aa3 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56926fed snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58f23e93 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59f8de5d snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5abe503b snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b4d0ddd snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ce9c8aa snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5dae2433 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6337fd30 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6557d33c snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x665becbc snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6690004f snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67340599 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67d8c6d1 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c0c4162 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6cb7371a snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6db3c036 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6dcb0d43 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x703fcd05 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70ddbb46 snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71198d7c snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71d636d3 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x727bd80c snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78d0d665 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b0ed24b snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ca93ea9 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7df4653c snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e49dd45 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e6e7890 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ea48695 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x816bf4d1 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x832331db snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x859ad7ce snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85e30813 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8633dbe1 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86eec242 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8763deb5 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x894067e8 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8962a976 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x898a7de8 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d596abb snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d6a38af dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e08741f snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f71654c snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x966f1323 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98244fcd snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x984d6c88 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98c91fe9 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x993d62cc snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99a9f70c snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a64bb42 snd_soc_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a916ccd snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c501880 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d62ffb2 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f1c9303 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa09b584b snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa218f1cc snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa26bf3e2 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa27f1a8c snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3c5cba7 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7328d80 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa90e38de snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaac599ea snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab40cbb3 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaef95c0e snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafc3b98f snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb13e6318 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5505883 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7381116 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb907aebc snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb05a3a2 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd9f8b1e snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe1991b6 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe26d1d4 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbeb13adb snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfd4f9b8 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0666a0d snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3463e55 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc388d59c snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc486fdf1 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5b00413 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6265982 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8fb4f05 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9118721 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc935ffb7 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbe7b116 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0bace21 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd22393b5 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd31a7a49 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4179dc1 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6f06349 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde39a681 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdea6a628 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdeb915b4 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdfc61a4b snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1f74929 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe28172fd snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe28979d9 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe79519d0 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8122b09 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8296188 snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe957fb1b snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9ce17ff dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9f2c216 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef18d468 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef40617f snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef4eb421 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3bd5562 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf62bca45 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf679de0e snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa1e16e3 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd007f1b snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd32f65a snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffd4cad3 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0bd43e8e line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x27d11d14 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x57aea8ae line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x74f79f5a line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7dbb9ec0 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x86eca65c line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8bbae02c line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x96d74b2e line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb31ddfd9 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd046cf11 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd72550f6 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe1000e1f line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xef37cd1c line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf3b6c43a line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf650e378 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfcda8da8 line6_send_raw_message_async +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 0x0001297c dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x0004df83 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x001ad079 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices +EXPORT_SYMBOL_GPL vmlinux 0x003928b0 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x004676d9 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x005898cd scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x00732e13 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00a5329c bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x00b6de83 get_empty_filp +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00f5a651 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x010f122b ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x0154fa13 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x015f3a21 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x01691daf acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x016c3b16 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x0170cb6c efivar_work +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x018f3796 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x01e162a8 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e4b058 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x01efd556 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x01f27218 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x01faa329 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x01fd71ed device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x021502d0 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x021f6cb9 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x02441191 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x025f95b7 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x0293a0f2 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x02ae003e inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x02c71512 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x02cf7a21 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x0311c240 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x035dbd65 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x037413d0 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x03920743 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03a84ce9 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x03a98905 sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x03adf392 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x03c20891 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x03c689ee tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x03d4f309 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x03d5b0bc device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x03d9c8aa ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03e42f77 pv_info +EXPORT_SYMBOL_GPL vmlinux 0x03f2056f usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0403b373 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x040d2303 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x0412f022 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x042778dc hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0439a7d3 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x0446e0ab __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x0447217b clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0469146b nl_table +EXPORT_SYMBOL_GPL vmlinux 0x04741eca blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0485655f amd_get_nodes_per_socket +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04a8f44f ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x04bf26af ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x04c3f2c1 gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c720eb regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x04cce80f regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x04d3434f hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x04ecfb5c set_memory_wt +EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x04ff4d98 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x052360af ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x0527ad00 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0566cedb sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x0570f87d fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0586284f spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x0591e909 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x05a99d2e led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x05b17b59 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x05b199ff rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x05c2368b kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x05c610a5 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x05ced18a dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x05e61cb0 bpf_prog_get_type +EXPORT_SYMBOL_GPL vmlinux 0x05ec90f5 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x05ee5c6c regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0618029c reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0619e6b2 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0623a6fb irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x062d093e pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0x06303263 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x06499f35 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x0669bd9c sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x067140f6 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x067517fa sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x06908a87 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x06963c36 intel_msic_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x06985516 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x06ba563a pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio +EXPORT_SYMBOL_GPL vmlinux 0x06f325fb ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x07005e80 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x07032f9e trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0x071fb8b0 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x07289880 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x07295c53 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x0731a0a8 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x0731c765 iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x073a338b fpstate_init +EXPORT_SYMBOL_GPL vmlinux 0x07688724 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0x07727c67 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x0772fc5b __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x07779a35 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x079f95fb nvdimm_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 0x07c63f5f ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x07e74a4e fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x07f300c3 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x08139a52 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x08323486 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x084af304 hv_is_hypercall_page_setup +EXPORT_SYMBOL_GPL vmlinux 0x08590cdc cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x086af582 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x087b2260 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x089a0949 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x089bcbf9 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x08e68ccb blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x08eeca62 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x08faf971 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x090ae864 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x091b1dd9 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x0941cfc4 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0961b62e public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x0962d0e8 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x097a2480 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x0983b912 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x09b8b2c2 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x09bc0282 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x09db7a05 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x09e4a2be xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x09ef134b xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x09ff0499 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x0a24934c udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x0a3e0f3d wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0a4fde00 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0a576e42 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x0a6fd8e3 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x0a79c279 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x0a7b1507 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x0a7bff84 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x0ab1c720 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x0ae64cf9 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x0afb660b xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x0b01e231 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b155b8d file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b296fa2 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b7b2043 user_read +EXPORT_SYMBOL_GPL vmlinux 0x0b814260 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x0b943b7b blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x0bb6643d relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x0bc42688 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x0bd42481 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x0be06ac2 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x0be3e2a0 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x0bf9e136 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c05a9e1 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c1d55bd vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c594a16 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x0c6a8a27 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c810b0b sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x0c9a4ad1 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x0c9a634c rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0ce88442 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x0cec9720 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x0d0f2a09 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x0d1bba7c setfl +EXPORT_SYMBOL_GPL vmlinux 0x0d1d661d ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x0d27ccf0 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x0d2862dc xen_swiotlb_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4fdc5c tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x0d66995d ping_close +EXPORT_SYMBOL_GPL vmlinux 0x0d74eaf3 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de646ec regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x0df362cb pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x0df925f6 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e0992b2 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x0e11b681 spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e158df0 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x0e1a1863 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0x0e395d15 __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x0e4ab39c phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x0e5a410c usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x0e6afa21 spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0e7be0b9 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0e85b3fe dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x0e9a3bb0 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x0e9e0a94 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x0eabe6a1 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x0eac6353 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x0ed3426b tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x0ef3d58c ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x0efb5892 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x0f006b1b nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f431615 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x0f5f2e7f driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f9115cf regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x0f958f5d kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x0fa138de xen_hvm_need_lapic +EXPORT_SYMBOL_GPL vmlinux 0x0fa667f4 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x0fb1dc33 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x0fc01e9f static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x0fc24d24 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x0fc768db max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x0fcb3661 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0x0ffd4909 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x0fffb77f pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x102a15df driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x1073c63f rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x107a8966 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x1099dd2c __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x10d973dd badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x1103ed8f relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x1117164f fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x112c9164 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x1134073a pci_get_hp_params +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x11ac8d29 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x11d5e8c2 xen_xlate_map_ballooned_pages +EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x11e929c4 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x11edda54 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x121b4136 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x12292dd5 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x1230678f regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x12365e8c percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x123cb642 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x123da3c8 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x1242058a tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x128d8821 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x12bb0962 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x12ca8e17 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x12d92840 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x12df5ac5 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x12e39120 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x12ea3c14 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x13077913 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1312d0a8 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131bbe6b xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x13241ce7 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x1326bb3b tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13781bb2 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x137f01fb gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x13a05194 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x13b42005 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio +EXPORT_SYMBOL_GPL vmlinux 0x13b93f3e tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x13cabd12 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x13cef3d2 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x13d99690 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x13f51fc3 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x14030104 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x1417c705 pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x142e9b32 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x145784d1 gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x14617be4 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x1466657e ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x14769a4f __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x147c53cc ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x148c4552 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x14972fd5 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x14ab14c1 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x14e17674 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x14ea02a4 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x14eec063 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x14f74d3a clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x15010e1f arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x1510599b irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x1510dca7 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0x1526172b xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x153a3d75 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x155544a7 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x15568631 lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x15820cd9 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x15913190 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x1595d40c devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped +EXPORT_SYMBOL_GPL vmlinux 0x15e6c64f xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x1614a33f vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x164934f4 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x1651bc42 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x167165b0 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x16726249 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x1676fb6f __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x168b3de4 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x16a4d25a pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x16e9513a crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x17095559 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x170cfcce bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x17236f0e kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x172817ee list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x1739370e inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x175ea6eb ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x177a466b agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x17a47c7a dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x17c05173 add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0x17f0c5d0 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x180b7f52 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x18168a0c extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x184fa62f crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x185fa00a dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x18744603 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x18a2eff7 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x18a82ecd bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x18c3547c xenbus_map_ring +EXPORT_SYMBOL_GPL vmlinux 0x18c4fe95 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x18dea684 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18f5e50e arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x19072e25 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x190aa387 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x1957d9b5 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x195e4376 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x1980c7a6 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x1982b77a debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x198cbb1e crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a68b99 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x19b51a2a sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x19c7bae0 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x19d1aa29 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x19d85996 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x19ea9d8e nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a00d52f xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x1a013aa8 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x1a1b45fa inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x1a25cd8a hv_do_hypercall +EXPORT_SYMBOL_GPL vmlinux 0x1a2ac68f pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x1a2e26a0 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x1a61ea2c security_mmap_file +EXPORT_SYMBOL_GPL vmlinux 0x1ab93f0a driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x1abac6b4 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1b08e2ba sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x1b187a11 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x1b1f2bda speedstep_get_freqs +EXPORT_SYMBOL_GPL vmlinux 0x1b1f88ad input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x1b270dd6 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1b279cee user_describe +EXPORT_SYMBOL_GPL vmlinux 0x1b309f28 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x1b36a962 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x1b38b3c6 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x1b4152a3 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x1b4d2f2d debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b77c6d0 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x1b85a594 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x1b87711c cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b8e0c82 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1ba72ce6 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1baa94a1 clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x1bb20274 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bce76e6 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x1bd8699b sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x1bdf1d52 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x1bed5da1 intel_svm_unbind_mm +EXPORT_SYMBOL_GPL vmlinux 0x1c060e6a find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x1c2658a5 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x1c2a73d8 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x1c4c070e debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5fd31e devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c6592b5 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x1c6660c7 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0x1c71f8ac jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0x1c7418b0 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c8a7b14 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1cb58aa5 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x1cca226e acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x1cf9a2a5 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x1d06484d get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x1d0cb386 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x1d10d476 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d435bf5 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d6cbce9 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x1d739e1c xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x1d80c108 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x1e37d8bf mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x1e51fdb5 vfs_readf +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e64f5e0 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x1e668d27 static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x1e726f7b sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x1e79a6d5 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e86c766 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e9a6f6f __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebdebdc cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec3b400 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x1eedb417 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1f067efb dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x1f0daf2b gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x1f129ffb __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x1f70b439 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x1f75575b spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x1f7f6fac register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8d71c4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f986134 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x1f9d425c fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x1fa5b19a preempt_schedule_notrace +EXPORT_SYMBOL_GPL vmlinux 0x1fd65e9e register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x1fdb970a spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1fdbf0c3 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2009d36c nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x201bf309 nvdimm_bus_add_poison +EXPORT_SYMBOL_GPL vmlinux 0x2042bcf5 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x204330f8 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x204e66e6 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x206ff3be cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x20705d4c ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x2071a3cb serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x209b3a1b __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x209ec764 xen_event_channel_op_compat +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20c8966d hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x20d0da69 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x20d20fc4 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x20dc10c1 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x20f935a0 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x211e81b3 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x214006c4 device_reset +EXPORT_SYMBOL_GPL vmlinux 0x216fe598 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x2178faa0 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x2197c69f static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac1793 print_context_stack +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21c04c26 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d2bef5 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x21eea67f __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x2203c765 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x2219e065 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x22468728 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x22588889 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x226ed234 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x228372ce devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22985b21 xenbus_unmap_ring +EXPORT_SYMBOL_GPL vmlinux 0x2299ec81 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x22a25fe6 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x22c5717e ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x22cb0df1 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x22cb5abe gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x22d0f3fe noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x22f273b8 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x22fab0e7 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x23048011 __intel_mid_cpu_chip +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x23398464 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x233f0d9c class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x234a3605 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x2354ad30 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata +EXPORT_SYMBOL_GPL vmlinux 0x2369008b cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x238a2300 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x238ba644 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x238f3d9f x86_hyper_kvm +EXPORT_SYMBOL_GPL vmlinux 0x23933510 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23a3bcf0 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x23a569ab device_move +EXPORT_SYMBOL_GPL vmlinux 0x23b2898d virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x23c6c2e1 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x23ffd2b7 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x240580a9 xenbus_probe +EXPORT_SYMBOL_GPL vmlinux 0x242c4b4d transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x242e1d4f led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24988981 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24c11e66 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x24d9dcca regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f38267 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f45195 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x24feff0b usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x24ffc2ae thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x252d0b17 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x2541a14c pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x255ed595 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x256d4641 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x25c50b17 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x25c6a6c6 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x25cb6c30 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x25df4805 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr +EXPORT_SYMBOL_GPL vmlinux 0x25fcf9f5 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x2601677e input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x260814a0 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x260ea816 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2631e248 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x2648bae4 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x264ae4c6 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x267ba2a6 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x26965721 slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x269e81bc spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x269ef946 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x26a55447 security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0x26b3c701 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c3bdce dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26cb59da serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x26db3289 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26ffc8b3 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x272d3799 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x27344ac0 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x273de0c3 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x276760bc mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x27864709 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x27906ef7 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x2791c7db regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x279cb985 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x27afb55e regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x27b45184 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27c4202e crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x27d2cc7d tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x27eddfc5 usb_of_get_child_node +EXPORT_SYMBOL_GPL vmlinux 0x27f2b973 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27ffa03a ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2811b684 serial8250_em485_init +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28328453 clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x284d69d6 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x28664c18 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x2868693c wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x28766d70 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x288af0a4 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x289992e0 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28b926c5 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x28c7d87e cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0x290917f5 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x29338a93 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x293f073e vrtc_cmos_write +EXPORT_SYMBOL_GPL vmlinux 0x294bf308 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x296c8f70 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x297463e4 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0x2976bee1 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x298427a8 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x298e4399 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x29bf3658 security_inode_readlink +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f792ec virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x2a05787c led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x2a0600b9 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x2a25390d bdev_dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x2a300651 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x2a411b1b __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a6821c8 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x2a710e7d iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2a7b0d5d skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x2a7d29bc irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x2aa04cef crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x2adc6df4 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2ae5b124 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x2b12fb54 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b5628b5 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x2b67f096 speedstep_get_frequency +EXPORT_SYMBOL_GPL vmlinux 0x2b6d7e05 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x2b7084dc adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x2b732153 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b9f3b56 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x2bb5c2d6 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x2bd87463 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x2bee195f subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x2c1109f9 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c2f5a09 x86_family +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c3765ef bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c3971f5 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x2c3a6748 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x2c47ab04 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x2c526ad5 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x2c5a1b71 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x2c630bd1 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x2c6a0410 xen_set_domain_pte +EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c82c81f pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x2c982c82 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x2ca3dde6 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x2cd34d33 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x2cd80704 i2c_new_secondary_device +EXPORT_SYMBOL_GPL vmlinux 0x2ce2c994 set_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2ce9552e dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2d087c41 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d20a402 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d56eb35 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d61f17e crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x2d7adde5 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x2d7c73b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0x2d8a9c23 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x2d8c1fbf register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x2d92d736 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2daec85f irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x2dafef8a dm_put +EXPORT_SYMBOL_GPL vmlinux 0x2dce0b3b dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x2dd1a688 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x2de08d52 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x2df3768d sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x2df42d07 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x2df4aef2 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x2e098804 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x2e0ccbbc pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x2e125965 free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e270496 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e369069 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x2e39ca4e get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x2e3c13eb ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x2e855239 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x2e88acee nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x2e99cdc9 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ebe59e4 __add_pages +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ef80a84 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f18181a xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x2f30952d gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x2f38dda4 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f47f07e __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f6d4db1 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x2f7d78b6 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x2f892d61 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x2f90da7e trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2f99f616 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x2fbabe5f __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x2fc77cec sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2fdf7104 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x2ff67e5f exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x2ffc2a38 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x30006354 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x3015aa96 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0x30237c51 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x3030b381 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x30465383 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x30472161 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x30635782 cpu_has_xfeatures +EXPORT_SYMBOL_GPL vmlinux 0x30909bbe fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30af1b9b digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x30b4ff09 spi_flash_read +EXPORT_SYMBOL_GPL vmlinux 0x30d23c9b blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x30e6656c usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x30eb9be4 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x314bc36d devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x314f0790 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x3175ad0b __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x31862ef8 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x31a26985 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x31b63bfa gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x31bc7ef6 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31fc1403 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x32109ba0 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x32313071 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x3236d850 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x32473bc2 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x32491307 isa_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x324c808c platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x3291584a usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x32924a4d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x3292df0a device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32bcde87 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32db356b iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x32e0de5b usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x32eac241 __module_address +EXPORT_SYMBOL_GPL vmlinux 0x32ef4b69 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x32fc5f21 xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x32ff8230 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x33125772 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x33184778 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x33220694 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x33229823 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x332f52fa ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x333228ec intel_msic_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size +EXPORT_SYMBOL_GPL vmlinux 0x33655159 xen_pcpu_hotplug_sync +EXPORT_SYMBOL_GPL vmlinux 0x33a2bb43 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x33a9bce8 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x33b96e5d apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x33c1dd68 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x33d24177 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x33e42390 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x34011360 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x3415ddbc ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x34331d5e nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x344cceaf get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x3459530e rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x34601d93 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x3460597f pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x3461ec5d __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0x3477335b usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x3484c425 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x34a5a48c acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x34b4c453 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x34c36db1 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x34d63ad4 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x34e1de08 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x34f76462 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x350036a5 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x35142837 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0x3536b9af relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x35732293 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x3581f995 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35910f72 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x35911b0a ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x35a0830e clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x35a422d2 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x35a986bc rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x35d5a883 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x35dcd1f7 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x35e32036 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3615da0d tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x362b959a mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x365a8c05 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x3668aa7d fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x3670edb5 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x368d7ef8 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36ba2551 intel_scu_devices_destroy +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36c90034 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x36cd4361 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x36d629c0 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x36d759eb sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36ed10bc inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x36f189fc tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x3708f3b9 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x370a7dd5 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x3729b828 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x37381f69 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x375460f3 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x37568d6a __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x37d14c98 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x37d2612b hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x3812ce8e event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x3815be6e ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x3824178e blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x38279d89 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x384e7d4f class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x386b59d4 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end +EXPORT_SYMBOL_GPL vmlinux 0x3872dced __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x388ab5f5 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x3899a579 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38bdc57b led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x38e0b9a5 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38e74b2d dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x38ed6581 blk_poll +EXPORT_SYMBOL_GPL vmlinux 0x38f0827d kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x38f78aa1 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x3901db89 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x3903cea4 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x390ea184 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x3925a01b single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x3932cf97 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x39363759 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x39676120 sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x39817085 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x398b5059 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x39b9551d pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x39b9e8a9 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39f2c7a4 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a2baca2 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a453f87 mce_inject_log +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a610486 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn +EXPORT_SYMBOL_GPL vmlinux 0x3a80554d regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x3a98fcd8 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa6a887 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3aeb7427 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x3af8b028 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x3afeb90f irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x3b04bb14 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x3b194107 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x3b468f0b nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x3b49a562 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x3b621f9b platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x3b66995c vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3b7145bb apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x3b8c7814 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x3b91db5b intel_pt_handle_vmx +EXPORT_SYMBOL_GPL vmlinux 0x3b92216f mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x3b99234d cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x3ba80909 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x3ba844b7 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x3bc48cb7 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x3be3425d is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x3c24bd36 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x3c3fb55a rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x3c4c4afa spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x3c6e18c2 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x3c8950fa xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c93ea25 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x3c98e8de blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x3ca33d13 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x3cae4f35 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3ce8c396 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x3d046996 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x3d22a095 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x3d259b79 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x3d28b7b5 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d79dbb0 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3da2d5aa isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x3dbd408e pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf +EXPORT_SYMBOL_GPL vmlinux 0x3dd79812 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3de22a37 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3deb4d86 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3e07d5df mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3e175e05 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x3e1b7cbc kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x3e1e6929 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x3e2a0b1f nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e4a4cb5 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x3e54b244 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e721293 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x3e74fa0d tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3e757637 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x3e7e3420 add_memory_resource +EXPORT_SYMBOL_GPL vmlinux 0x3e8ee490 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3e9304cf gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x3e94f5e8 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x3e9dc380 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x3e9dfd2a crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3ed87700 xen_swiotlb_dma_mapping_error +EXPORT_SYMBOL_GPL vmlinux 0x3edaa291 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f060887 __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x3f229c4c oops_begin +EXPORT_SYMBOL_GPL vmlinux 0x3f2318b7 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x3f2ce4bf crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x3f33edaf pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x3f552119 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x3f644530 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x3f756593 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x3f795d8c ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x3f8145a4 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x3f817000 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x3f9267ec bus_register +EXPORT_SYMBOL_GPL vmlinux 0x3f9f6de1 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x3fbc4075 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x3fcfcfb2 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x3fd10f1c nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x3febb011 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x3ff7eff8 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x4010b80f pmc_atom_read +EXPORT_SYMBOL_GPL vmlinux 0x401ccd57 l3mdev_get_rt6_dst +EXPORT_SYMBOL_GPL vmlinux 0x401e84c8 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x402bd3f6 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x403c5962 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x4057d06f __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0x405fa6ce inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x408212ba hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x408ba1cb power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x40a3bb5a bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40c854a2 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x410290ea phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x4111a82e iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x4119a578 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x41322612 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x41539bf8 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x4155eab3 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x417602df rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x41c5ac69 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41d1bd71 split_page +EXPORT_SYMBOL_GPL vmlinux 0x41d3e280 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x41fc1f52 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x41ff54a0 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x424207c1 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x42763b6d pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42896820 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x42aa7c02 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x42aae39a trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x42ad957f ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x42c653e7 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x42c989ff iomap_atomic_prot_pfn +EXPORT_SYMBOL_GPL vmlinux 0x42cd17e6 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x42cf169d cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x42d6375d ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x42e33a9a cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x42e4277f devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x42e760a5 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x42e837e6 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x432a8030 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x432b4cf5 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x4333afa4 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x433fbb90 dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x43926d80 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x43952c35 pci_msi_set_desc +EXPORT_SYMBOL_GPL vmlinux 0x4395953e usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x439e2fe1 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43a60848 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x43a6fe4a wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x43b2b42b rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x43bf2ab5 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43f09292 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f6db7d nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x440284f7 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x440b4608 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x441103ec find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x441fa356 irq_ts_save +EXPORT_SYMBOL_GPL vmlinux 0x442daec0 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4447c1a9 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x444c369e device_register +EXPORT_SYMBOL_GPL vmlinux 0x4461cb3f da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x44671e6b ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x446de5dc __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x447a0cb4 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44a60b67 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44cbdcc9 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x4512b086 intel_scu_devices_create +EXPORT_SYMBOL_GPL vmlinux 0x451cc2cc spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x454f1cb4 efi_query_variable_store +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x45764f00 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x45b56be3 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x45b7d6a0 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45c8b129 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x460f31aa rodata_test_data +EXPORT_SYMBOL_GPL vmlinux 0x4617ad98 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x462407d1 arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x4663cafb iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x466ae826 ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0x466ea06e ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4689d789 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x46a91433 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x46ca9eb1 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x46dead67 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x46f8fdcd iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x47058ecd fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x472ae016 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x47468fef usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x475b3524 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47744ebb devm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47b10dad irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x47cf50c7 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47d206f3 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x47da43d3 xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47f51f78 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x47f9652e usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x47fbbd2e cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x47fe4fb9 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x481007c0 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x4820d788 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x483b7be3 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x485b4a37 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4862bd8c cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x48682db9 perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x487a1d7a serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x4880a5a6 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x488fa261 xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x48ab0ff7 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x48d670eb skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x48dd0063 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x48df6885 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x4906ce71 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x491176c2 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x491bb3d4 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x4920807d led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4952fa6d scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x4960bcd2 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x49754f5d blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49dbe2e3 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4a0538e1 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x4a186945 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a51cd85 shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0x4a639888 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x4a6b0002 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x4a778138 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x4a7fb406 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x4a87bdf7 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x4a889013 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x4a8be632 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x4a95be6a net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x4a977d0e user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4acb4ad7 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x4adbd951 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x4aee7a23 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x4afb573b vrtc_cmos_read +EXPORT_SYMBOL_GPL vmlinux 0x4afb5ca3 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x4b111e98 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x4b31d1cd __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x4b3df32a wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x4b4be62e rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x4b5176e9 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4b75cf66 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x4b97c429 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x4bd95308 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x4be97495 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x4c0158b4 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x4c276bd6 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x4c3fff1b gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x4c546e1b tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c762b5c x86_stepping +EXPORT_SYMBOL_GPL vmlinux 0x4c7a4b00 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x4c80eb6d pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x4c826a29 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x4c867ef3 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x4caaa3f9 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x4cc463d1 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x4cc71fc1 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x4ce79dfb clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x4cf35c9e netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x4cf4416e led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d1a239e pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x4d24a8e5 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x4d421be7 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x4d555676 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0x4d5dc75c blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4d6695af gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x4d72a42f wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x4d75962f rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x4d7786e5 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4d81c04c md_stop +EXPORT_SYMBOL_GPL vmlinux 0x4dbdf71b kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x4dc0d9c9 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x4ddd0e9c virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x4ddec5ae efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4dedf001 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x4df924a8 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x4e0c5458 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e1a2d41 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x4e1ea947 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e57723d apei_read +EXPORT_SYMBOL_GPL vmlinux 0x4e74e625 gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0x4ea914cb ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x4eb3c020 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x4eb7930b platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x4ec46c77 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efe088a virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x4f0aa7c0 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x4f1a4ec7 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x4f2b35c5 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f330cfa __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x4f40d2a3 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x4f43739e bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x4f4bf92c net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4f50e1bb to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f7b87d4 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x4f86141d thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x4fa976c1 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x4faeb926 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x4fbf94b2 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x4fc29c9e cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x4fcd7258 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4fce99f9 spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe818d5 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x503a210f xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0x50434315 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x506f0adb blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x506f1277 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory +EXPORT_SYMBOL_GPL vmlinux 0x5080c352 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50a86f79 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x50aa701e regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x50abf0bc phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50d0ba04 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50eb0a51 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x50f5095b queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x50fd4cd9 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x5105f3d2 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x5116bfdc fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x5127d04b dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5158653d pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x5164b777 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x51811f94 wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x51876fed srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq +EXPORT_SYMBOL_GPL vmlinux 0x519c9d95 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x51bd3209 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x51bd47b9 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x51cc1428 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x51da9716 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x51e07187 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x5203d59f pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x5205fbab sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x52164394 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x52194717 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x5245d548 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x525eec6f task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x526280c7 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x526d6dba devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x52924f20 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x5297f53e gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x52a3f699 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52a43d3c bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x52a7328b trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x52cda83a put_filp +EXPORT_SYMBOL_GPL vmlinux 0x52d8c375 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x52ee7c9d devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x52f102db __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x52f894bd gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0x53027d4a alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x531503c4 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x534f9744 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x5376b769 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late +EXPORT_SYMBOL_GPL vmlinux 0x53b0c669 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x53b35cbb ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x53c9b126 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x53fbe42a vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x53ff970b acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x540a70ea ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x5420cdd3 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x5460f950 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x54870e12 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54a3a41c acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x54ab9de8 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x54ac2068 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x54b64d1c regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x54bc6029 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54e49d93 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x54f49c06 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled +EXPORT_SYMBOL_GPL vmlinux 0x55315cd4 tpm_get_timeouts +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 0x55526907 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x5560f204 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x5563acdd dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x55698670 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x55836652 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x55896e99 efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x5594a387 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x559e7d9b extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x55ae477b __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x55cce76c fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x55dcd7ed cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x55edd53d unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x560ae815 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x56105df6 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x561f0b39 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +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 0x5645b8b0 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x5651595d mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x5654f836 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x5666a53f efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x56795989 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x56886202 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x569544d2 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x56b05c5b ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56d0bbd9 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x56d10ee0 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x5716534c synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x571850c5 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x5718c1f4 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x571cee30 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x572e2909 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x573821ca rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0x578634fe ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x57889b79 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579cabb4 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a842b4 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57ef514b io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x57f7a480 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x5807f4eb arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x580dc2a7 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x581e39cb pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x585704ab aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0x58571fb6 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x5868914d usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x587a110c watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x587bd46f alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x58864339 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5888b607 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x5898602a fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x589a1959 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58d7468b rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x58e83cba flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x58ea1fb4 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x58ebf753 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x590ab152 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x590e7278 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x5916414f pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x591c098a power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x593a46a2 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x594cde67 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x59545635 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x59688cf7 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x5978f3d5 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x5988cd1c hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x59b57d67 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x59c2cbd6 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x59d8527e ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59feec05 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x5a0f7935 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x5a121efc usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x5a1f926e sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5a2ec7ec uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x5a398898 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5a47156b clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x5a508d76 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0x5a624a17 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x5a65c37b devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5a699c6a fpu__save +EXPORT_SYMBOL_GPL vmlinux 0x5a69f33d tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x5a765d1a fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a88a08e __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x5a90c47f pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x5ab54573 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x5ad24ac4 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5b228313 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5b2c6970 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5b4ba68b lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x5b4f7bf4 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x5b5a9f69 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x5b816bb6 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x5b995a50 clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x5babf842 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x5bce8ca1 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bdf9408 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x5bf8e980 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x5c2dffde devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x5c348c5e crypto_has_skcipher2 +EXPORT_SYMBOL_GPL vmlinux 0x5c38905f devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x5c40b06d crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x5c447e76 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x5c4aa630 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker +EXPORT_SYMBOL_GPL vmlinux 0x5c80e4ad regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cc0c4ca usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x5cc254da crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cf44cae crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d1a05bc init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x5d3e7fbb spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x5d419af4 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x5d5ca512 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x5d5d5667 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5d8d163a crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x5d910624 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5db52476 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid +EXPORT_SYMBOL_GPL vmlinux 0x5dd288bf da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x5dd2e2c7 acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x5dd9b949 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5ddb25fd dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x5ded1647 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x5df4ad41 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e106764 devm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x5e218a9e usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e67b71d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0x5e77ba35 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0x5e7e259d extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x5e8e8c2f __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5e96a2b1 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x5f184b52 smp_ops +EXPORT_SYMBOL_GPL vmlinux 0x5f218efd unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f31bb97 efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x5f5cdc52 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x5f5fee0d securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x5f95189a ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x5f99997f sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x5fbe61bf crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x5fd2c0b1 devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5fd73e73 sched_clock_cpu +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x60026a90 clk_hw_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x600db1e8 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x603aab77 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x60642c4b __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x606e1a5d __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x60871f1a devm_nsio_disable +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x609cf7ca spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60c55f82 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x60ce601b driver_register +EXPORT_SYMBOL_GPL vmlinux 0x60d77522 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x60d982d4 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x60fc0a8e pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x60ff16c6 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x610d00ca register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x61259f17 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x61415fe3 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x615b4c40 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x61755b61 mmput +EXPORT_SYMBOL_GPL vmlinux 0x61950337 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x619e14f4 netdev_default_l2upper_neigh_construct +EXPORT_SYMBOL_GPL vmlinux 0x61c6cbfc usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x61dc5d22 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x62174273 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x62291f72 efivar_init +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x623803c8 hest_disable +EXPORT_SYMBOL_GPL vmlinux 0x6256b6e0 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x627ad420 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x62832fe2 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x62856341 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x6287402c input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x6290f336 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x62956c20 xen_swiotlb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x62a1c981 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x62af79fd gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x62bccb97 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x62ccc980 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x62db124c find_module +EXPORT_SYMBOL_GPL vmlinux 0x62e3f8a2 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x62f41154 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x6314181f security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6332ba7a usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x6340434e x86_model +EXPORT_SYMBOL_GPL vmlinux 0x635597bf __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x6358c680 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x635ec980 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0x63650211 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x6396fe13 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x63a4aaaa ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x63a9c6ce device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63fdf2a9 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x64009104 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x643644ae __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x644c9dc4 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x647b6a65 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x647d2f71 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x647dfa9f pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x64a13479 clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0x64a70cfc io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x64b7069e apei_mce_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x64bfa20f relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x64c12642 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x64c495db kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x64e0a09d dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x64e13cf0 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x64e24a5e memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6508287d get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x651eb8ce __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x65236d93 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x6536953b btree_last +EXPORT_SYMBOL_GPL vmlinux 0x653cb02d intel_msic_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x65541660 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6577a8a1 amd_hwids +EXPORT_SYMBOL_GPL vmlinux 0x658c1064 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x658c8186 amd_get_nb_id +EXPORT_SYMBOL_GPL vmlinux 0x659268b8 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x65aa03d1 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x65aa6a15 clk_hw_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x65bd062c mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65df6d71 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x65f60c7e rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x660cf0cd debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661f5a7d component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x665dd0fe spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x665ecab0 pv_time_ops +EXPORT_SYMBOL_GPL vmlinux 0x665fcaf7 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x667231e2 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x66789a46 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x6682829f device_create +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x669b255d platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x66c397f7 nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66cea34d extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x66d81b8d powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66e13338 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x66e95334 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x66ef4dda irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x67063122 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x6716d9ba devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x672c33f2 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x6765652c fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x677738eb __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x678b8cbb kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67c78c91 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x67caa15a __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0x67d5bb24 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x67e8b70e gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x67ed0c12 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x680859cd ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x682e6bb0 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x683c699c virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x683c85ad __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x685cdb09 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x68698a7c transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x688bb4e1 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x68956406 static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x689ee033 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x68e19c3a xts_crypt +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x693cee87 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x6941e53f irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0x69469e7f class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x694cc7ae crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x696d7285 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x6972913d pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x69876612 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x6990f4cd mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x6992a9e9 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x69b0d7e4 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x69bd2180 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x69cb1e0f blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x69cd768e led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x69f82963 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x69faa2e0 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x6a089093 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x6a168989 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a2a6a19 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x6a2b8a65 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x6a3a403e rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5aabf4 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a6c3833 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x6a6db495 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a886e5b rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x6a956798 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x6aa893cc acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x6aa9cfd6 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x6ab1b8bb usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x6ad20acd platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x6adbd8b1 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x6aeefff4 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b215244 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b507e8b blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x6b57d518 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x6b5822c3 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b948ae4 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x6baf353d md_run +EXPORT_SYMBOL_GPL vmlinux 0x6bb9114d pin_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x6bbdc4c5 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x6bee4c54 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x6bf1b90d dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x6bf6dec7 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x6bfca0b6 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x6bff5e8a crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x6c057b39 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c1251fd apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x6c1674f2 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6c29a745 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c5ee51f dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x6c604beb device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c65ee38 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x6c83e8e0 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c8e91ac scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca89276 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x6cb5e2d3 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x6cba3e86 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6d09445a tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x6d1e528c ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x6d2c61f4 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d386601 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x6d3ed0fb ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x6d4613a3 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x6d60adb6 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d898c49 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x6d9d2fe5 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x6dac0acb hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6dc3afb3 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x6dd7cf4b platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e08447c ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6e133152 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x6e1fb351 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6e30fdd5 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x6e54e75c usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x6e56a718 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x6e625822 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x6e782c23 iomap_create_wc +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e809cb3 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x6e82302a generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6eaeadca vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x6eb9c403 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x6ebcee9a __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x6ed26a7d ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c892 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x6ee9b633 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6ef0847c gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x6ef2141e desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x6f0024b5 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x6f0eaad9 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f2351b7 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x6f4211b0 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x6f56af50 intel_svm_bind_mm +EXPORT_SYMBOL_GPL vmlinux 0x6f596e3a pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x6f63f3d9 tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x6f689589 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x6f68a8ad nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x6fb17a19 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6fbe9b0e sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x6fbeb05d scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6fea9e07 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x70002cf8 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x7009ffb7 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0x70201233 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x7021aefa device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x703f93f4 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x704560ca __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x705e8974 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x706c0b59 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x706e0ee1 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x707aee8f da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x708b1158 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x70a2a2ed platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x70a2bbd4 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x70aa08d4 pwmchip_add_with_polarity +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 0x70fdce18 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x711853db gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x7123ede5 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x71336f4d pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7164ddb7 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x71695665 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x717274ef skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x717b1865 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x7189a5bd ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x719f2cbe perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x71afe7b5 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0x71b9f8db mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x71bf7c89 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x71c4fb30 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x71cf2da3 xen_swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x71d55929 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x72098f46 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x721869d5 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x725240f4 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x7269932e __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x727afedd regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x72995cd6 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x72c412cc bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x72c603da sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x72cf714d klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x72e82acc device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x7310a775 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x733877af trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x738873c5 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x738a43e1 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x738b13ad device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x738d31ab i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x738fd248 intel_msic_reg_update +EXPORT_SYMBOL_GPL vmlinux 0x739dda68 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73d49fd8 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73ea8d83 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x73eb6337 free_iova +EXPORT_SYMBOL_GPL vmlinux 0x73f2bf63 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x73fe9a4f pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x740f4444 __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0x742c5a38 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x7438ff37 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x743f879d gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x74486413 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x744adeb3 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x744fd265 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x74508997 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7475b1b2 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7479a994 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x74a252b6 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74b9f79b hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c08941 kvm_async_pf_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x74d007c2 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x74d0f08a ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x74deb10c used_vectors +EXPORT_SYMBOL_GPL vmlinux 0x74e390b8 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x750011be serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x75083054 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x7513fd68 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7541798d debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x7552b509 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x75610dfd xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x75701537 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x757bf2f5 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x758238e8 l3mdev_get_saddr +EXPORT_SYMBOL_GPL vmlinux 0x758434f1 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x75944ec3 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x75adc3be crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x75b99428 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x75c2b9f1 memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75ce90ef acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x75e68a4b dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x766ab427 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7686f686 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x76c00514 __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x76cdb645 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e081a9 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7704b5ae security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x770648ae irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x772f723a crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x7735bb9e __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0x77442f41 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775a6ef5 kvm_read_and_reset_pf_reason +EXPORT_SYMBOL_GPL vmlinux 0x77624106 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x776bbd6b nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x777653a2 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x777d43cc usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x77886d54 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x778b675a pmc_atom_write +EXPORT_SYMBOL_GPL vmlinux 0x778d69db md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x7790adc0 aout_dump_debugregs +EXPORT_SYMBOL_GPL vmlinux 0x77a6b47f vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b9e08e device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x77d263a4 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x7812ca7e pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x78151326 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x782a563f param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x7831d51d acpi_dev_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x78575bee atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7859143d blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785cf1c3 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x785e2bcf crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x7863703a devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7865ece9 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x7870fc3a rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x78729305 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x7874b5ec unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x787724e2 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x788ad6cd regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x788d3392 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x78a7987e serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78e8d4d5 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x78f29400 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x7909dc9e get_system_keyring +EXPORT_SYMBOL_GPL vmlinux 0x7915da47 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x791a1d1a ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x79249a68 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x79533c37 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7979287a tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x7989a8ab param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss +EXPORT_SYMBOL_GPL vmlinux 0x79a71c48 kernel_stack_pointer +EXPORT_SYMBOL_GPL vmlinux 0x79c03461 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x79cf1043 fpu_kernel_xstate_size +EXPORT_SYMBOL_GPL vmlinux 0x79da0861 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x79dbb53b wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x79dc2b5b devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped +EXPORT_SYMBOL_GPL vmlinux 0x79ef4808 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x79fdd6bf usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x7a06ad04 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7a08ef32 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x7a093833 set_memory_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x7a1d9fcc linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7ab73e95 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x7ac793d2 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7aca8a3a regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7ae31f96 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b202401 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x7b430706 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x7b497bd8 open_check_o_direct +EXPORT_SYMBOL_GPL vmlinux 0x7b8fce99 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7ba46e82 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x7bbddf3c irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x7be1ae73 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x7be78eee invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x7bff4171 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x7c0d5d8f rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x7c116183 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x7c2d8410 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x7c6695f6 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x7c77057d vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x7c8e6c35 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7ca1a797 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x7cd5c48b ipv6_rcv_saddr_equal +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cfb6d0a iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d2ad6ef mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x7d2de69f debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x7d2f5a98 device_add +EXPORT_SYMBOL_GPL vmlinux 0x7d4c4b94 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d79b53a pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x7d9c2402 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x7da6fb99 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dadfa1b pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x7dbcc8f2 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x7dc5a1d4 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7dd01f87 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x7de9622c gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x7dee9cbf __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x7deee0e5 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7df761bf securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x7dfbb739 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x7dfd7301 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x7e099b77 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x7e2675f1 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7e282c9d ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7e30a314 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x7e46d0ac ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x7e52d14f usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x7e544c50 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x7e5a44a9 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x7e629c16 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e7110b8 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x7e738dc8 acpi_dev_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x7e8ee49b sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7e94283e cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x7e946235 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x7e9e1212 nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x7e9e8e7e rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ea4be88 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x7ebffa99 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x7eeb0d81 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x7f16ebb5 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7f2bf813 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f8678c8 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x7f9caa63 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x7fbe1482 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fc0d9ca __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x7fd04c2c blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x7fdc9941 security_path_link +EXPORT_SYMBOL_GPL vmlinux 0x7ff2db2d pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x80274d63 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x80431215 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x8057622b sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x805b1b65 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x808a483d debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x8092de37 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x80a080c6 __pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x80b466b3 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80c95170 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80e022b8 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x80e0706c sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x80e24fbd tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x80e85bbe device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x80f5aae0 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x80f6add5 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x80f8589f trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x8120b99e devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x81246575 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x8132adec rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x8136f15b debugfs_use_file_start +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x815019a1 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x8151bef6 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x81696a49 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x81848bc9 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x81857b70 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0x818a0702 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x81b153b9 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x81dc8721 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x81ed3135 cs47l24_patch +EXPORT_SYMBOL_GPL vmlinux 0x81f0a7f4 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x81fe6c6f blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x820a50ab pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x8221f543 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x822c6843 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x823570b7 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x823b873e of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x823b87d6 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x825e13e3 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x8262ae32 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x8263da8e dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x82857ced pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x82895973 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x828b8235 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x828cf38d devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x8295b4c0 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x829b9161 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x82a18a93 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x82a78d92 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x82cbf710 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x82d25a57 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x82d4f934 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82dbec19 erst_write +EXPORT_SYMBOL_GPL vmlinux 0x832612bb class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x8346460d __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x835d46fd da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x8362e288 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x836666ce alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x836d6210 xenbus_dev_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x83786a75 register_mce_write_callback +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83ba5fbb hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x83f94bbb devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x8422186f do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x842c7c85 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x8451dc21 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x8462bdcf btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x847fb5f8 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x84822101 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x848b74b1 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x84919280 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x849dae65 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x84a86636 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84e839a9 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x84f1bc47 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0x84f24988 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x84fe5e18 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x8510ec14 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x851dc096 cap_mmap_file +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x853c44ca usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x854fa28d ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x8566126d virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x85703e70 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x8593441d regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x85ab80a5 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x85c6e5e8 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices +EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq +EXPORT_SYMBOL_GPL vmlinux 0x85f415df ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x86206415 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x864c88b8 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x8654be58 hv_remove_vmbus_irq +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x86819bc6 irq_ts_restore +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86a01e10 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x86a20689 _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x86baaa2e pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x86baf2cd unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x86d8ff59 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x86fe15f7 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x86ff5fa6 hyperv_cs +EXPORT_SYMBOL_GPL vmlinux 0x86ffbc29 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x8714842a devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x871486fd ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x8720a25d devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x87308700 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x873a426c acpi_dev_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x8743e938 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x876effc1 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x8795e84c addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x879eee3e kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x87a15662 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x87a6a960 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x87a6f60a synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x87aab77b clk_hw_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x87c0aee5 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x87ceadad debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x87d5ae67 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x87ea31a8 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8831f8b1 kmap_atomic_pfn +EXPORT_SYMBOL_GPL vmlinux 0x8835dadd clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x885191b8 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x885903ac devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x889e83af nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88ca9b4c ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x88dc354f regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x88f4d3dc __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x88faf8ef spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x8913a7f1 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x8913c41a iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x892042f8 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x8930210f bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x893bd2d4 extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x8948b5fe aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x89502fcf wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x8956aeae apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0x8979b74f relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x8980c13b register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x89a01d78 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89cac128 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x89e984db devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x89efa335 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x8a061cfe pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x8a079498 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x8a0adc41 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x8a0b0ef2 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x8a185559 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x8a3005f1 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x8a33dda8 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x8a4555ad extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8a559846 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control +EXPORT_SYMBOL_GPL vmlinux 0x8a7d9934 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x8a932731 irqd_cfg +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ae3df5d rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x8ae66250 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b2d8629 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x8b31a300 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x8b390f02 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x8b39d873 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8b49b670 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x8b529720 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8b58815f regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8b66e50c device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x8b7e0a11 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b879206 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x8b8e6eec thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8b94984b ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x8bada8ce fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x8bb0c3d2 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x8bb7ae2a xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x8bbeae9b sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8bc41382 fpu__restore +EXPORT_SYMBOL_GPL vmlinux 0x8bcb2cbb xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x8bf607d8 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8bfb430e fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x8bfd532e acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c06a108 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x8c3ac48d pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x8c46436c led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c675af8 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c9d1661 arch_phys_wc_index +EXPORT_SYMBOL_GPL vmlinux 0x8c9f6517 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x8ca854ab get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x8cafa591 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x8cb47cbe pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x8cbf9de7 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x8cc2e270 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x8cc5e6e1 vfs_writef +EXPORT_SYMBOL_GPL vmlinux 0x8cccdd07 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x8cd9f935 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0x8cdebe2c tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x8d0409d4 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x8d20b3f7 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d39af6a virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x8d587a99 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x8d6a9cfb efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x8d9c4dde __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x8dbf5718 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x8de2bb6b sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x8de86eb1 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x8decb1aa acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x8df53971 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x8df798c5 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8e1abba7 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e34d0ef key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x8e3d2338 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x8e600509 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x8e7049c2 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x8e7cb3bc clear_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8ea17521 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x8ef21366 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f16a578 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8f30bfb6 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x8f57c1b6 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f93e9ba event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x8fa4f6f8 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x8fb1986c usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x8fbbf2b9 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x8fc2e9c1 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x8fc49205 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x8fcca3aa preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8fcfe627 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x8fd5edbc spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x9011eb3c __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9014f17f tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x90158c8e ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x90180a64 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x901edc9e bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x9022d5bc memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x902338c5 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x903257a3 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9043bbad i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x9047c11a trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x90739dff __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x9098fc32 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90b585aa subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x90c0742f fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x90d331ec devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify +EXPORT_SYMBOL_GPL vmlinux 0x90e72105 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x90f2d8dc gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x90f87776 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x90f8d909 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x910a4f05 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x91156d17 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x9118a217 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x91256f9c sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x914adc7f blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x915fca1a regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x917736b6 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91984629 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x919fa04e skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x91a0ef1d sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x91b10375 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x91b7ab23 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x91c324be get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x91c55ec4 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91e8910a device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x9212e309 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x92211895 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x922f562b ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x922f9d8e fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x92939280 acpi_dev_gpio_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x929528f9 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x9296364a dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x92a7bf7d __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x92ae7eca pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e14ae4 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x92f115f4 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x931627d1 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x93172956 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x931729b8 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x931c48a2 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x9355c6c0 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x93b02158 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x93b88d53 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x93f0363c rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x93f4b767 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9432b036 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x947137d0 x86_platform +EXPORT_SYMBOL_GPL vmlinux 0x947480e9 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x947b6a43 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x948049dc tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x9486279b bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x948d333c dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x94a7a451 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x94a9bbd0 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x94c318be apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x94eba1e8 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f1ee5b component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x94f978dd pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x95016cda da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x95159b11 gov_attr_set_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 0x955c4fa9 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x955f991f pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x9574d460 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x9581d2c4 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x95b6a407 component_add +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95c004c6 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x95c0a3a9 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x95ca2274 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x95d7a9a3 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x95fc4d9d pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x95ffeae9 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x95ffffa7 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x961b6871 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9637c923 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x964add15 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9662c776 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x96674701 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x96712bad ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x96888281 get_device +EXPORT_SYMBOL_GPL vmlinux 0x96c46a28 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x96d2c7bc tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x96e1abc5 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x96e21439 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x96ed4e6f tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x96f1a21b blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x972fdf5b usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x973ab8ad cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0x974da03c led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x97696b4d page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x977517f0 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x9775d0ea user_update +EXPORT_SYMBOL_GPL vmlinux 0x977e89b7 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x977f5d3f blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x97a3801c sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x97bbe678 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97fc36f3 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x97fe4254 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x980b92c5 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x9830c922 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x983e77a6 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x9846dd60 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9869f44f serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x98775752 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x987edf47 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x989aa469 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x989c38e4 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x989e68e3 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x98a59283 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x98b7c69b cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x98d4b87d usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x98e3e989 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x98f8e23b vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x99080157 iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x992bcc5f elv_register +EXPORT_SYMBOL_GPL vmlinux 0x99337db6 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x995cb42e regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x99a28196 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x99a7ec85 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x99a8fb81 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99b02a62 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99ce0592 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x99f0570a ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x99f4c14c xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0x99fceb2b regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a1ccf5e blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x9a4513b1 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x9a5023c1 intel_scu_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9a553f0b dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x9a6cec14 __devcgroup_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x9a72c9af of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9abb0907 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ad96ef5 pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9aeedbfe ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x9afad06f md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x9afd4419 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x9b25d881 dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x9b262911 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x9b265ecc __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9b303305 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x9b64a3a1 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9b713c36 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x9b720312 acpi_target_system_state +EXPORT_SYMBOL_GPL vmlinux 0x9b74789e crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x9b828171 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9bd4d022 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x9bd72b78 apei_write +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bf655e3 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x9bfec779 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x9c09dc5c nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x9c0fc9f4 xen_swiotlb_map_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0x9c2db75a pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x9c2e4b66 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x9c2fb5df phy_put +EXPORT_SYMBOL_GPL vmlinux 0x9c462261 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x9c582e68 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x9c6ec89e fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x9c9d631c handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x9ca90de3 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x9cb221df platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cc7b961 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x9ccdf526 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x9ce78124 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x9d0c2c24 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x9d30f96b dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x9d461a0f acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x9d62c898 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x9d6d7f0a __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x9d6e9700 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x9d79cb5a shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0x9d7cf95e platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9d8d780a blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x9d8e0238 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x9d99872b pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x9d9d5c99 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x9da6e3b0 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x9dcc969f pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x9df3da63 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e033517 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9e225f50 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e6a7752 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x9e6e2147 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x9e7379f5 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x9e75d1a9 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x9e7c546f balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x9e84f1ef __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x9e9fd14a crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x9ea07544 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x9ebd8d34 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x9ebff902 start_thread +EXPORT_SYMBOL_GPL vmlinux 0x9ec98615 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x9ed2096a regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ee12ee2 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x9f1529ce usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x9f24bf57 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x9f287903 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x9f287d13 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x9f47b7b1 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x9f6259a2 amd_df_mcablock_names +EXPORT_SYMBOL_GPL vmlinux 0x9f6c613d crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x9fa1cf5d is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x9fada840 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x9fc4e6bf dm_use_blk_mq +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd03cce ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fee71d9 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x9ff1ccb0 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x9ff3ae56 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x9ff46b20 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x9ff69a0c d_walk +EXPORT_SYMBOL_GPL vmlinux 0x9ffde1c9 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xa0208e02 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa03c3b58 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xa04fc243 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa05af9a4 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xa080dd63 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xa0867582 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xa08d051a max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xa093f9dd usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xa0a1f242 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xa0da25e1 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xa0f16db1 x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0xa0f291f2 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa11b55b2 xen_start_info +EXPORT_SYMBOL_GPL vmlinux 0xa132a4f6 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xa14a1817 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xa155dfdf pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa15f2bdb serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xa16c3e9f subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xa17c302f devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa198f8cf proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xa1a0565d thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa1ac3dba __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xa1bb464e blk_mq_reinit_tagset +EXPORT_SYMBOL_GPL vmlinux 0xa1c2f4e0 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xa1cbb37c crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xa1e2d196 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xa1f79553 xen_create_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xa21026b4 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xa2143741 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xa21b9a48 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xa236b8f7 copy_reserved_iova +EXPORT_SYMBOL_GPL vmlinux 0xa2427753 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xa24881be virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xa250a44c skb_gso_validate_mtu +EXPORT_SYMBOL_GPL vmlinux 0xa264dc3d device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xa266e908 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa281ec46 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0xa28ceb7b wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xa28d0ec3 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xa2a04dc2 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xa2ad212f ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa2ba73ca ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2cfb5f9 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xa2d06a9d devres_release +EXPORT_SYMBOL_GPL vmlinux 0xa2efcec9 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xa30a0a82 pm_genpd_syscore_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xa316137e crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xa3323aa5 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xa33ca67b usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xa34b647a pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0xa353f772 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xa36635f0 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa39c3664 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3d0459d wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3ef32e6 netdev_default_l2upper_neigh_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa3f413fa device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xa418f312 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xa41a27f9 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa466de38 acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0xa46797fc debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xa468a99a cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xa46d6e31 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xa46f6b77 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0xa479a0ab tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xa47f933f inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa487c65c ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xa48fdaca tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xa49d7d10 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xa4a01534 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xa4a76602 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xa4a9984f __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0xa4b058d7 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa4b2338f irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xa4ccb93e ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa4cd86fd __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xa4da0fd8 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xa4e4e010 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xa4f3d4a8 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xa500a9a2 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0xa501489b request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xa5126133 vmf_insert_pfn_pmd +EXPORT_SYMBOL_GPL vmlinux 0xa51fd461 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xa53c23d7 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0xa56248aa fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0xa5873efc ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xa59db82e led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xa59e37c9 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xa5a76262 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xa5c380ed pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xa5ec3659 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f9f23d put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xa61350f6 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list +EXPORT_SYMBOL_GPL vmlinux 0xa643208f rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa6874b20 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6b532ef cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xa6bdf6aa clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0xa6e19fad ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6ec6a0d nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xa6f7c50f max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xa719defc inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xa724bd65 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xa753e4b9 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xa757a751 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xa75e6f2f sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xa7638b91 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xa7639e0f inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xa76fa300 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xa772c518 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xa79adb23 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xa7cdd8ca wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0xa7df8fe7 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xa7f71e8f blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0xa7fae3cb alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xa8010158 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xa801b359 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0xa830b247 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0xa83e39fe gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa8586049 apic +EXPORT_SYMBOL_GPL vmlinux 0xa870eda7 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xa8732ae9 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xa877bcce rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0xa88e1538 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xa89c3f5a gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xa89e38be xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8c8f94b disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa8dbbfcf debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xa8ebb65f pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xa8fdc5fc blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0xa90307b4 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xa90322c2 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0xa90ad1cf bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa92e30e2 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa95fd54e static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xa972e533 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xa9735c28 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xa99ec7cf regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xa9c985ca pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e584aa clk_hw_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0xaa070f3f devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xaa07caf9 xen_remap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa2e90be fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0xaa43b8c7 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xaa60af0e hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaaa7a19a ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaebe45c usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xaaf1e7c8 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xaaf7f0b6 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0xaafe8ad1 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0xab0c16e7 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xab0f81c0 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xab13aeef class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab37e256 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xab5ab9a4 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab6e7c24 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xab83565f cpu_tlbstate +EXPORT_SYMBOL_GPL vmlinux 0xab8d5af7 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xab94f186 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xab9685de regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xabaf47f9 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xabc05d59 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabca3d60 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xabcd831a component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xabd66df0 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xabf2bfc8 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xac0d6687 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xac1f8257 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0xac242a3f blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0xac2dd23d arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xac397d01 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xac661c2f devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xac85009a crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xac9a12cd da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xac9ce195 kvm_async_pf_task_wait +EXPORT_SYMBOL_GPL vmlinux 0xaca34465 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xacafa8e7 vector_used_by_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xacb4226a __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xacc87477 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xacd68c4a clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0xace33fdb sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xacf46b2f perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xacfa47ad ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xad4e904a ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xad6bb27e pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xad7ceabf devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0xad8222b8 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xad881afe __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xad8d8ab0 xen_physdev_op_compat +EXPORT_SYMBOL_GPL vmlinux 0xad9c55ee __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadb7846d ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae14dbed __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xae1e5b09 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xae4857f8 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0xae5a78a6 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xae5dbb9a rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xae681ef5 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae93f3d7 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xae94235d bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xae9ffc28 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xaeba8992 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xaed3201f wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xaefb99e2 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xaf08bde1 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xaf29da55 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xaf34e5c3 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xaf4cd6d3 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xaf5259f8 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xaf6f64ec init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xaf71c626 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xaf740b05 yield_to +EXPORT_SYMBOL_GPL vmlinux 0xafbaaf94 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xafc4d523 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xafce51ca class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xafe1c003 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xafea71ae bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xaff73e6d pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xb0142eff vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xb016638c ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xb01cab70 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xb01f9727 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb037d351 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xb043a80a mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xb04e68cc replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xb062c216 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb0646074 xen_swiotlb_sync_single_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0xb06ac7b7 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb09532af user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xb0a03c0f devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bc7275 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0xb0cbba11 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xb10cb29d shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xb136d596 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xb13c1568 wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb14fd10d regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xb16a075d regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xb16c9d93 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xb16ea570 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xb16ecd82 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb193b305 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xb1a5f2fe usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1c30826 extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1f39fc5 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xb1f5d406 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xb2203f14 devm_nsio_enable +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb24ab46e acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xb250413f ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb277696d sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0xb29b0ec6 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0xb2a7babf __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xb2ab6d25 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xb2db7548 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0xb2de0fb1 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xb2dff431 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2ef833e rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xb308bfd8 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xb3127b98 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb33235fe watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb3353130 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0xb33dad00 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xb3442ef9 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xb35f0301 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xb3696cb3 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0xb36bbf4e tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xb3a0d76d srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xb3a59a26 security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0xb3a852be crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xb3b18a2b pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xb3bb7ade led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb408886b usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xb40b109e acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0xb429a64a pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xb444aee7 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xb4532660 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xb453a080 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xb4557e67 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xb4559a4c wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb456030f rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xb45de9ec led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xb4682fc1 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xb468667c thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xb4741fcf uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xb4b0860c dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xb4b7fce0 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4c3d460 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xb4d88fb3 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb4e31d7e usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xb4e76972 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb51bbbb3 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb54d40db cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb55c5005 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0xb57e3427 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5a558e1 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0xb5a7de8d trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xb5cc11af tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xb5cd8e5f platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5e2aacb regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xb5e72b85 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb5f3fedc usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xb5f872e1 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0xb6093199 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xb60a1619 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb63345d3 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid +EXPORT_SYMBOL_GPL vmlinux 0xb666e2d6 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xb66ab232 ptdump_walk_pgd_level +EXPORT_SYMBOL_GPL vmlinux 0xb670413e thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xb671effc crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xb67d3187 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xb67e1afc ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xb695fe07 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xb699c0c4 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xb6a24ff1 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6b80430 page_endio +EXPORT_SYMBOL_GPL vmlinux 0xb6bc49a9 __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6e98098 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0xb711d130 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xb718f2f9 sfi_table_parse +EXPORT_SYMBOL_GPL vmlinux 0xb72a0b62 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb74a1ea8 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xb7746c83 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xb77d590a rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xb7c3145f xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7cf2e93 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xb7d11d5d sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xb7d2d600 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7db15ba ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xb7e37389 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xb7f3e199 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb8044047 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xb833a343 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0xb85022f3 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0xb8506147 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8a8dc80 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xb8ad911c fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0xb8b57aea acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0xb8ba1e67 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8ce109d irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xb8e822aa usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xb92d2168 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xb934dcd7 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xb957a3d2 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xb958ab10 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0xb9644297 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xb9689d14 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xb98768f3 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0xb999b697 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xb9a6c3d1 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb9b1f760 efivar_entry_delete +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 0xb9e9c5cb dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0xb9f8d6bb acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0xba16fed6 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xba2396c2 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba30a75b adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xba379192 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xba407786 xen_swiotlb_sync_single_for_device +EXPORT_SYMBOL_GPL vmlinux 0xba5dd274 security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0xba5e6191 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xba94c685 cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0xbaad7fa2 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbaec6bf2 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xbaef277f pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xbaf657a2 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xbaf6a239 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb221524 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xbb303dec phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xbb3ff247 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xbb4e9724 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbb5515a3 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xbb58b814 iomap_free +EXPORT_SYMBOL_GPL vmlinux 0xbb5f8808 path_noexec +EXPORT_SYMBOL_GPL vmlinux 0xbb6a040b __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbb7d2efa pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0xbb80d24b public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xbb8103f9 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xbb812ad6 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0xbb907ee7 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xbba35587 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xbbac7a38 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbc1d30d arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xbbd4f657 xen_pcpu_id +EXPORT_SYMBOL_GPL vmlinux 0xbbea3464 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xbbea4570 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xbbf2c659 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xbbf60777 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xbc12f372 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0xbc1b2357 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xbc29907d trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xbc34f8dd security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0xbc4217d4 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc735d64 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xbc7521e9 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xbc98dcc5 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xbca0201a sfi_mrtc_array +EXPORT_SYMBOL_GPL vmlinux 0xbca1750f devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcd1e44e scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xbcda8e48 xen_swiotlb_unmap_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbceae325 set_pages_array_wt +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbd07d705 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xbd0f490f __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0xbd192bd2 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd5f115a inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xbd7497a3 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xbd7b3f6e uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xbd86b127 usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbdd5f10f apei_hest_parse +EXPORT_SYMBOL_GPL vmlinux 0xbddd6f3d anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbdf770aa xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0xbe13867b pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe1b529d rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xbe377418 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xbe3f0bd7 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xbe44fd75 mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe6d72b5 xen_swiotlb_sync_sg_for_device +EXPORT_SYMBOL_GPL vmlinux 0xbe7d9f69 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xbe93f12d exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbec82546 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xbec8c12f clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xbecc172a pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xbed4f965 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0xbefbe132 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf0aa7e5 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xbf1f44e4 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xbf38cf11 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xbf3b2f6b injectm +EXPORT_SYMBOL_GPL vmlinux 0xbf3b51cc rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xbf423633 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xbf7d5549 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xbf8c7033 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xbfa8bde3 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0xbfb1be70 hv_setup_vmbus_irq +EXPORT_SYMBOL_GPL vmlinux 0xbfbc11bb __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfc721b7 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xbfd10bb7 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfeadb71 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0xbff5eac1 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 +EXPORT_SYMBOL_GPL vmlinux 0xc00bded0 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xc01be087 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xc01fff43 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xc073b5d4 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0900fcf acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc0a5486f __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f119d6 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xc10010f5 device_del +EXPORT_SYMBOL_GPL vmlinux 0xc107ea1d usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xc1328a56 input_class +EXPORT_SYMBOL_GPL vmlinux 0xc136c6c2 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xc15c7cc0 do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc177a886 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc18e8639 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0xc1d211a4 __class_register +EXPORT_SYMBOL_GPL vmlinux 0xc1dd3787 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc1e3c753 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc218a21c inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc22b67e9 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xc23b6b8e devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xc242c428 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc2450349 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xc24d7fb2 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xc265184a fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xc266170f usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xc27c6b78 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc28549fa posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0xc29f9b3d fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0xc2df52d1 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0xc2e3ea82 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc2e48a70 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xc3092b1f register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xc332abda xen_swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc33725b5 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc33be0c9 skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc3566298 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xc359c9a8 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xc3720d75 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc39ac05f serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0xc3b77747 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xc3e76591 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0xc3f5ea67 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xc3f8f471 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xc3fb48f2 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc446aa36 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xc44867ba update_time +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc4697d58 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xc4704722 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc479ac7e usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc47f257f __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4a04294 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xc4ace8ec __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xc4ad2acc xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc4d59934 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xc4ee9276 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xc5428e81 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc54e7793 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xc565970e __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc57c71bf platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc57ce8dc kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5878314 blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0xc58b3c9b pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0xc59f0c87 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc5aabb59 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xc5aada22 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc5d5602f rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5fb3d5f use_mm +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc633a708 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc6531215 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc69f04c2 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6c49b94 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xc6c8b238 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xc6ccc12c clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xc6e60907 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0xc6e6d7a7 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xc6f7fa08 dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc72a9a6b __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc753487d serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xc7565eb1 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xc7786c7f dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xc7855db4 nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xc79edbb4 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xc7a043c6 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7c96c43 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc7d00164 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xc7e34969 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7f8d5ff arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8140711 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xc8458768 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc846915a ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc883164d virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xc89fa4a7 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc8a0dd46 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8f2065f alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc925e704 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xc92c7e1c dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc95c265f preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xc96a21ae subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9e79da7 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9f6d644 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xca014512 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xca0c6933 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xca1afb0b sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xca23841f dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xca3dac44 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xca73cf85 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0xca8886b7 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0xcaa0f415 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcaa26ec0 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcae3c49b ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xcae87bb1 regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xcaeaf90a rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xcaf87785 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xcaf957c4 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0xcaff24dd xen_swiotlb_set_dma_mask +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb161ffa sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xcb16eda3 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0xcb4d045b usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0xcb51b8f7 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xcb642ad2 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xcb6579e9 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xcb87014a ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xcb871105 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xcb9201e6 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xcbb1fb78 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xcbb576ef pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xcbcc354c xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0xcbd48c3f hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xcbe16836 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbee1586 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbf236ae ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xcc015a7c do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0xcc2e675e usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xcc4945ce devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcc7a81af pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc861a8f gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0xcca25e4f __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0xcca2a393 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xcca96102 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xccaf2faf efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xccbc1b4a ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xccc904b2 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccddc4cd phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0xccf53b0f md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xcd1516df register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xcd1f4fa7 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xcd26f347 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xcd2723d5 hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0xcd41b942 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xcd5d4ef9 btree_update +EXPORT_SYMBOL_GPL vmlinux 0xcd68434e trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xcd6fd364 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcd7d66d9 acpi_dev_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xcd833750 do_truncate +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 0xcd9dc9a3 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xcda3f4f5 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xcda522d1 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdb9280a usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcde87e6a da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xce07a416 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xce12d037 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0xce198f2e pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xce1fd8e9 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xce29d704 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xce2c459a cs47l24_irq +EXPORT_SYMBOL_GPL vmlinux 0xce3e4db1 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xce417c90 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xce46cf31 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xce4c4c27 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xce54d381 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xce609f71 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce9819ef driver_find +EXPORT_SYMBOL_GPL vmlinux 0xcea86d72 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xcecfb2af gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xcee0757e rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee44813 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xcef1dd0e perf_check_microcode +EXPORT_SYMBOL_GPL vmlinux 0xcf0f0b0e pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xcf1628fe usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xcf386cbc spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xcf3feee7 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xcf3ff9af ping_err +EXPORT_SYMBOL_GPL vmlinux 0xcf51da86 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcf53d550 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf6a7af9 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0xcf878970 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xcf9db168 put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xcfb0ca8d crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xcfb2085b rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfbc7b9a list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xcfc3ae40 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfc9cf89 debugfs_use_file_finish +EXPORT_SYMBOL_GPL vmlinux 0xcfd514ec hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcfe678c2 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xcff392b8 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xcff4180f cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xcff505ce print_context_stack_bp +EXPORT_SYMBOL_GPL vmlinux 0xcffec188 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xd006b5c9 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xd008b433 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xd0173120 clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xd0263d0f blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd029df93 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd043b4aa locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd056f304 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0xd05d58cc thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd07d3943 security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c6ba00 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xd0e51538 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xd0f9eea5 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd102535b of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xd10a9b01 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xd12b4b7f irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xd143f074 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xd1502328 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xd1507e59 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd16cc0a7 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xd18406e7 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xd1b33dfa __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0xd1ced592 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1fd0d8c cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd2169c8f pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21b6870 put_device +EXPORT_SYMBOL_GPL vmlinux 0xd23350ea extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xd2343991 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xd2406f4c ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xd24cc965 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xd2587238 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xd25dbd70 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xd25e0d13 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0xd2619aad acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd27433c0 __dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xd28285ef power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd2858c87 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xd29eb22d spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd2b4ad40 acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0xd2bb98e3 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xd2c58ab2 apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0xd2d1927b hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2e88de5 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd2f0262e usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xd313ebf2 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xd31c57a8 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xd32743c2 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0xd347560c phy_init +EXPORT_SYMBOL_GPL vmlinux 0xd35b77b0 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xd399226e ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xd39fd0a6 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xd3dd9f95 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xd3ee012c fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd415e6e6 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd44d3477 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xd4551fcd fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0xd4587a75 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xd47444d8 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xd47740a9 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xd47ef16c iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xd487d7af sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xd49b68b0 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xd4a9b16a irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c1c606 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xd4c3fc81 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xd4d00305 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xd4d3f779 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xd4d7656a pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0xd4f63a5b usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xd525e682 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xd52e292e pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0xd52fa294 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xd539a898 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xd54055d2 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xd544e902 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd5619ce5 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xd561b510 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xd57ae5ee alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xd58ec6f7 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0xd59a7e7a usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xd5a45c94 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xd5b85c98 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5c2ddda iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xd5c6533e gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xd5ccf435 nvdimm_clear_from_poison_list +EXPORT_SYMBOL_GPL vmlinux 0xd5f40589 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd601148c hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd63675c0 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd64571fb ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xd6510e4b rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xd65770ef rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd673fc29 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xd68513fb usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd6b2dc01 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xd6ed3a8e cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd731e78c tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd73a26bb kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xd74c41e5 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xd75542c8 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0xd75ee572 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd77a673f crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd79c4baf ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xd79c89de clk_hw_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xd7ab2c0c speedstep_detect_processor +EXPORT_SYMBOL_GPL vmlinux 0xd7cbf085 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7e3746e find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xd7ee5439 xen_swiotlb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xd8094929 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd8250a5c iounmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xd831a641 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0xd836afaa wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xd8375a54 amd_core_mcablock_names +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd88a6f7c platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd893db69 clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xd8ad9160 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xd8b0109a sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xd8dfee16 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xd8e52017 insert_resource +EXPORT_SYMBOL_GPL vmlinux 0xd8ef3dd9 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges +EXPORT_SYMBOL_GPL vmlinux 0xd936d021 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94b737e erst_read +EXPORT_SYMBOL_GPL vmlinux 0xd94fa823 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0xd96a0a46 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd97643a4 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xd97b6b64 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xd97bbb53 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xd986dad1 kernel_fpu_begin +EXPORT_SYMBOL_GPL vmlinux 0xd9a4104a gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xd9d2326f spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xd9d466b3 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd9e009c6 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xd9e2209b __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0xd9e44e8d __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9f73d2c scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0xda08789d user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xda21074a component_del +EXPORT_SYMBOL_GPL vmlinux 0xda3b5d79 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xda701662 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0xda82b797 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xda83fc45 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xda8f0901 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xda942bdf usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xda9ed944 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdaa39914 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xdad7fb00 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xdae8742c md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb054b18 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xdb18c3b5 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xdb2da56d rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0xdb2e9933 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xdb38cf58 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb9b423c dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0xdbf54473 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc2e41a1 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0xdc30a0fa l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdc55dc49 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0xdc5e154b bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc6ad077 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xdc6c2d5f crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc88d39d raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca6e94e skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xdcaae384 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xdcab8716 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xdcc481aa devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xdcde2390 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xdcf22e4a scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xdd0a681d usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xdd0c13bb scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xdd0feb8d device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd25af3d dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdd25bed4 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd427806 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xdd6edfa9 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdd7124d9 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xdd892ae2 security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd2a6ce swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddf2fb8e pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0xddf348c2 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xde20a9b3 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde747356 intel_msic_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xde81384d pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xde8dd926 klist_next +EXPORT_SYMBOL_GPL vmlinux 0xde9266cc usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xde9463a6 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xdeb65542 intel_mid_pci_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0xdeba1224 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xdebdd09f pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xdec1af51 alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0xdec5dd70 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xded29c5e init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xded8d356 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xdedf01c2 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xdeead614 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xdeed3d8b usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xdef49b24 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf11e8d6 of_css +EXPORT_SYMBOL_GPL vmlinux 0xdf13a4d5 clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xdf1b6610 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xdf1c9e57 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0xdf2270f7 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xdf2789ed cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xdf439ba4 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdf622181 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xdf62ac6f devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xdf64815b tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xdf69291f get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xdf87ebdf bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0xdf89ff9b aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdfa8a8f5 ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0xdfd13210 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xdfe47ce8 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xdfeeb06c __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe012ded6 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xe029a542 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe03d00d4 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe04b7dfc clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe04bc6e5 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xe04d59b6 fpu__activate_curr +EXPORT_SYMBOL_GPL vmlinux 0xe05483dd key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe0844690 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0bc67a0 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xe0c539e8 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0d7066c clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe0f482a0 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xe0f8e9a8 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xe1051db1 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe11f8c2b nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xe1208809 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xe12325db devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xe12c310e __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xe130aa35 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xe158612c pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xe1586d53 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xe15bedcc da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe162a4af platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xe1732127 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe1a6d6b3 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xe1a94c0e device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xe1b1483d smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1cfd348 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xe1d67cc8 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xe1ddd676 phy_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xe1f75674 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xe209a637 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0xe233baa2 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0xe25cc594 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xe25f8402 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xe27a83e9 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe2932d59 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe2ab52b5 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0xe2ac39d6 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xe2b37403 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xe2ba9d07 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xe2bdf537 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe30ec626 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xe31e2147 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0xe32117ab n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xe327e928 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xe35e8656 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0xe371ed09 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list +EXPORT_SYMBOL_GPL vmlinux 0xe3a4692b srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3df10a5 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xe3e7bef0 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0xe3f64128 i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0xe3fb670e arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0xe4075876 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xe40e5d7d rcu_exp_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0xe418fde4 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe41b4b91 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xe42d1aed skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe436e554 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0xe439815c erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xe4542d6c __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0xe4559d3d device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe46e988f crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xe46ffc8e blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xe4894326 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xe48f6973 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4c331b6 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0xe4d3c221 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xe4dbfabd debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4e68bc8 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0xe4eacc27 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0xe4ffa1ac percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe50d2a4f swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0xe50e9058 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xe514d401 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xe5164f27 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xe525efef devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xe545a811 get_xsave_addr +EXPORT_SYMBOL_GPL vmlinux 0xe54af00a pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xe560024e ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xe57212bf led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xe582033d nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe58ff2b7 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xe592cc76 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xe5b3f3a3 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xe5b8082b cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0xe5e3c7f3 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xe5eda46f sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xe6267476 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe6296029 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe6595b15 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xe6737ade ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xe683038c pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0xe69f8df4 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe6a8986d acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6d6d25c ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xe6d9ae46 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6e8ba51 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe70bdd4e gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xe713891d fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe72a0e2d power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0xe730a3ab pm_genpd_syscore_poweron +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe781db02 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe7a70971 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xe7ac1d64 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7b76ac2 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0xe7c68344 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xe7d5341c dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xe7ec09b3 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xe7ee6c41 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0xe7f0a558 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe813214d pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe8237a38 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xe82dfdb8 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe85a334c badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0xe85bd1fb ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe85ca85f wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe8dc3593 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xe8fd8430 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xe9177052 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xe92693a6 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xe93b476c loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9474bde dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xe977d4cf set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xe979fd42 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xe9845eea efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0xe98b636d ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xe99098d6 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xe9948bc8 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xe9a77f4d pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe9ca26c4 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9dc213d gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xe9f1dc5b usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xe9f5b226 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea199fe1 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0xea27c8f8 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xea295826 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xea307257 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea4d1002 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0xea653ebc nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0xea74b175 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xea8583d3 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea8ffa4e irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xea944d65 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xea960a27 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xea97d268 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xead215f6 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xeaf4c4cd __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xeaf5f207 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xeb25301a __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xeb2798f7 xen_destroy_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xeb2a7f78 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xeb3138a5 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0xeb370805 __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xeb3dc09b ref_module +EXPORT_SYMBOL_GPL vmlinux 0xeb524a60 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xeb629590 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xeb70a9f8 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xeb7c9d8b nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0xeb834866 pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0xeb9624bb rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0xeb9789e8 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xeba971b5 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xebaad192 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0xebd36fd8 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0xebd9acae iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xebe16ede usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xec166f72 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec269bfe devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xec35f2b2 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0xec6bdaa8 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xec6fd8a1 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xec788a59 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xec9afbbf perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xeca432db dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xecb434c2 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xecf47128 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xed06c5cb pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xed6f203f rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xed96ffa2 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xed9711a8 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xed9ce7ef inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0xeda597e0 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xedad182d crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xedc4c9e6 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0xedcdffd4 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0xedea6f15 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xedf7174e serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xee07af67 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xee10a473 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xee253bbd metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xee52541b static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0xee53d9c6 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee74a69a crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0xee8d3c7a regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xee9dcb3b skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xeea65164 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0xeeac8584 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xeec18bf7 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xeec4d427 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xeed19520 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run +EXPORT_SYMBOL_GPL vmlinux 0xeee31b4c gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xeee57bdd bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xeef03e9b ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xeefa465d xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef2a8253 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef53de28 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef759bf6 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xef7a424b alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0xef8ae59b default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefcd3bf8 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xefd55c72 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xefe3ea77 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xeff645ac seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0xf01783f0 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xf033115f crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xf0396a6d power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf04dfaf3 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xf0513e89 store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0xf054ac97 intel_msic_irq_read +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf089e841 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xf0958e46 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xf0a67432 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xf0c4cfa3 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xf0cbe2c6 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0xf0cffb63 iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0xf0e0dba2 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf0fe3639 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf106086c devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xf11dbd94 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xf12120a6 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xf12ba273 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf13ba3f2 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf13db05f ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xf143401e crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0xf15c680d crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1966ae7 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xf1a39b92 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xf1a4b036 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xf1ab27de led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1b551d9 ibft_addr +EXPORT_SYMBOL_GPL vmlinux 0xf1b8d8f6 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xf1c2c0d5 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xf1c2c747 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xf1c346b6 nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xf1db066b usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xf1ea3013 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xf2143767 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2307a98 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf291252d alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0xf291a7fc virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xf29a5990 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2c0bb7e events_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xf2c6a69f clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xf2e5ded0 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xf30e1205 xen_remap_domain_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xf30f0534 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf318a460 xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf335066d scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xf346f6e4 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xf34fd72c regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xf352b0e1 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0xf3575c18 acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0xf35e519c xen_swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xf3693729 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xf3713e91 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3861f1c crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf386834f device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf3a4a0bb ex_handler_fault +EXPORT_SYMBOL_GPL vmlinux 0xf3ad63d8 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3c192f0 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xf3ce51c5 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf3ce9bc3 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xf3dd3ec1 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf3ebf4eb arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3f9b4bb tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xf408d1ca devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xf42e2bbb wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xf46e12e0 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xf482dc4b usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4c9db66 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf4e3e776 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xf4eb5133 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf504646a ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0xf505e0f1 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xf50fe00e crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xf52df12f dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0xf53d63e2 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf56d8131 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xf58e707b devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5a741c4 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xf5ac09e0 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xf5e4d153 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xf611e826 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xf615386f percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf61e94fa ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xf6215b38 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf6411077 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xf672f14c pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xf67c259a ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xf67f64e4 security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0xf681c30d ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xf692740d shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xf698f33f kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xf6998436 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xf6a90c9b tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xf6b33626 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c877c5 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6d839c3 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks +EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0xf705932c thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf7164636 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0xf720e01b crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xf724e7e2 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xf735cef6 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xf73e5f20 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0xf7517716 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xf76d5b00 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf76e1523 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0xf77f48fa crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xf7b8e412 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xf7b8f04d ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7d67e1b debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xf7daadc3 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xf7e85ce3 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xf7eb43ae sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0xf7fcd69c dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf7fef8fc bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0xf8029cd5 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xf80eb3e1 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xf813e098 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xf82d38a3 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf845c7f3 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf85c2ae6 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xf85f1d63 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf8685692 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf8957e76 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf8b36c8d acpi_subsys_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xf8be8bf0 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xf8bfb0d7 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf90be3f1 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf93dcc8b iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xf945f37b da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf96ec400 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match +EXPORT_SYMBOL_GPL vmlinux 0xf98e5cb9 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xf98f45b1 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9d9264e xen_have_vector_callback +EXPORT_SYMBOL_GPL vmlinux 0xf9dc0623 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0xfa0015cf input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xfa054149 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xfa0cefde inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xfa0e904c device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xfa0ea146 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched +EXPORT_SYMBOL_GPL vmlinux 0xfa4d66dc udp6_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0xfa541557 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xfa629036 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa6c8b0c udp4_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0xfa72892f rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xfa93dc33 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xfa9e33f7 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xfaa1d1f6 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xfaa5590b platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xfab8868a power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xfabc73d2 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xfae452e9 find_iova +EXPORT_SYMBOL_GPL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL_GPL vmlinux 0xfae8db72 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xfaecf42f cs47l24_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfaefb5a3 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xfb11454f __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xfb118dc0 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xfb25ce06 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb521b8e usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xfb64b230 acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb6f3a40 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xfb83db03 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xfba8ed53 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbe2ddca remove_resource +EXPORT_SYMBOL_GPL vmlinux 0xfbe75178 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xfbe7c3ea lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xfc0160ef console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc1131be ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xfc12351b clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xfc1a925b ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xfc1fd483 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc284afd security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc66cd01 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0xfc76071a to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xfc8500d6 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xfc968c8b apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0xfce115f6 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfcf4154b i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0xfcf46744 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xfcfccf1e tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xfd2c9d06 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xfd2f240b ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xfd4c9228 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xfd6180aa thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd7a7ba5 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xfd80a0c9 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xfd831833 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0xfdc1b5dc dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xfdd3fbbc __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xfdd71582 l3mdev_get_saddr6 +EXPORT_SYMBOL_GPL vmlinux 0xfdeab10b bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xfdeda487 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xfdf094a0 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfe152667 acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0xfe1a38eb acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0xfe1b4ae8 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xfe616bad ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xfe61cee9 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0xfe68c346 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe8725b7 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xfe894ce9 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xfe94f2e1 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfea4a722 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xfec9d9f4 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xfecbd8cc pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfee02f24 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfef16c3d sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xff05e0de regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff23b504 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff296138 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0xff2ce747 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0xff30001b clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff5c3a2e tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xff5f2367 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xff60e8dc intel_pmc_slp_s0_counter_read +EXPORT_SYMBOL_GPL vmlinux 0xff783b44 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0xff881a2c pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xff93aa45 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xffaf2672 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffbb8526 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xffd557cb ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xffd84444 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xffda44f7 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xffda4ed8 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xffdb8ae7 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0xffe17893 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xffef257a pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xfff3939b class_find_device --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/i386/lowlatency.compiler +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/i386/lowlatency.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 6.2.0-5ubuntu12) 6.2.0 20161005 --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/i386/lowlatency.modules +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/i386/lowlatency.modules @@ -0,0 +1,4939 @@ +3c509 +3c515 +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +53c700 +6lowpan +6pack +8021q +8139cp +8139too +8250_accent +8250_boca +8250_dw +8250_exar_st16c554 +8250_fourport +8250_hub6 +8250_mid +8250_moxa +8255 +8255_pci +8390 +8390p +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +BusLogic +DAC960 +NCR53c406a +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +abituguru +abituguru3 +ablk_helper +ac97_bus +acard-ahci +acecad +acenic +acer-wmi +acerhdf +acpi-als +acpi_configfs +acpi_extlog +acpi_ipmi +acpi_pad +acpi_power_meter +acpi_thermal_rel +acpiphp_ibm +acquirewdt +act2000 +act200l-sir +act8865-regulator +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5761 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7606_par +ad7606_spi +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +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 +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adf7242 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16209 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7170 +adv7175 +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +advantechwdt +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +aes-i586 +aesni-intel +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +afe4403 +afe4404 +affs +ah4 +ah6 +aha152x +aha152x_cs +aha1542 +aha1740 +ahci +ahci_platform +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airo_cs +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +ali-agp +ali-ircc +alienware-wmi +alim1535_wdt +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am2315 +am53c974 +ambassador +amc6821 +amd +amd-rng +amd5536udc +amd64_edac_mod +amd76x_edac +amd76xrom +amd8111e +amd_freq_sensitivity +amdgpu +amilo-rfkill +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 +anatop-regulator +ansi_cprng +anubis +aoe +apanel +apds9300 +apds9802als +apds990x +apds9960 +apm +apple-gmux +apple_bl +appledisplay +applesmc +appletalk +appletouch +applicom +aquantia +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_ps2 +arc_uart +arcfb +arcmsr +arcnet +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arm_scpi +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3935 +as5011 +asb100 +asc7621 +ascot2e +asix +ast +asus-laptop +asus-nb-wmi +asus-wireless +asus-wmi +asus_atk0110 +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati-agp +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atlas-ph-sensor +atlas_btns +atm +atmel +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avm_cs +avma1_cs +avmfritz +ax25 +ax88179_178a +axnet_cs +axp20x +axp20x-i2c +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1isa +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_epp +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7xxx +bcm87xx +bcma +bcma-hcd +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780 +binfmt_aout +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bma220_spi +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmc150_magn_i2c +bmc150_magn_spi +bmg160_core +bmg160_i2c +bmg160_spi +bmi160_core +bmi160_i2c +bmi160_spi +bmp085 +bmp085-i2c +bmp085-spi +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bonding +bpa10x +bpck +bpck6 +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +bq27xxx_battery_i2c +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt3c_cs +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btuart_cs +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c101 +c2port-duramar2150 +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +capi +capidrv +capmode +capsule-loader +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +ccp +ccp-crypto +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +cec +cec-edid +ceph +cfag12864b +cfag12864bfb +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipreg +chnl_net +chromeos_laptop +chromeos_pstore +ci_hdrc +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +ck804xrom +classmate-laptop +clip +clk-cdce706 +clk-cs2000-cp +clk-palmas +clk-pwm +clk-s2mps11 +clk-scpi +clk-si5351 +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-isa +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 +configfs +contec_pci_dio +cops +cordic +core +coretemp +cosa +cp210x +cpcihp_generic +cpcihp_zt5550 +cpia2 +cpqphp +cpsw_ale +cpu-notifier-error-inject +cpu5wdt +cpufreq_schedutil +cpuid +cr_bllcd +cramfs +crc-itu-t +crc32-pclmul +crc32_generic +crc7 +crc8 +cros_ec +cros_ec_devs +cros_ec_i2c +cros_ec_keyb +cros_ec_lpc +cros_ec_spi +cros_kbd_led_backlight +crvml +cryptd +crypto_user +cryptoloop +cs3308 +cs5345 +cs53l32a +cs5535-mfd +cs553x_nand +cs89x0 +csiostor +ct82c710 +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +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 +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cxgbit +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +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-regulator +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 +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +dcdbas +ddbridge +de2104x +de4x5 +decnet +deflate +defxx +dell-laptop +dell-led +dell-rbtn +dell-smbios +dell-smm-hwmon +dell-smo8800 +dell-wmi +dell-wmi-aio +dell_rbu +denali +denali_pci +des_generic +designware_i2s +designware_pcm +devlink +dgnc +dh_generic +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +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-verity +dm-zero +dm1105 +dm9601 +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +donauboe +dp83848 +dp83867 +dpt_i2o +dptf_power +drbd +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1803 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dtc +dtl1_cs +dtlk +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-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +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_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc2_pci +dwc3 +dwc3-pci +dwmac-generic +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +e752x_edac +e7xxx_edac +earth-pt1 +earth-pt3 +eata +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 +ecdh_generic +echainiv +echo +edac_core +edac_mce_amd +edt-ft5x06 +eeepc-laptop +eeepc-wmi +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efficeon-agp +efi-pstore +efi_test +efibc +efs +egalax_ts_serial +ehset +einj +elan_i2c +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +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 +esas2r +esb2rom +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +eurotechwdt +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max3355 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f71805f +f71808e_wdt +f71882fg +f75375s +f81232 +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_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 +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdp +fdp_i2c +fealnx +ff-memless +fid +fintek-cir +firedtv +firestream +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fjes +fl512 +fld +flexfb +floppy +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +fmvj18x_cs +fnic +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fou6 +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fschmd +fsl_lpuart +ft6236 +ftdi-elan +ftdi_sio +ftl +ftsteutates +fujitsu-laptop +fujitsu-tablet +fujitsu_ts +g450_pll +g760a +g762 +g_NCR5380 +g_NCR5380_mmio +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 +gcm +gdmtty +gdmulte +gdth +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +geode-aes +geode-rng +gf2k +gfs2 +ghash-generic +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +glue_helper +gluebi +gma500_gfx +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-104-dio-48e +gpio-104-idi-48 +gpio-104-idio-16 +gpio-addr-flash +gpio-adp5520 +gpio-adp5588 +gpio-amd8111 +gpio-amdpt +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-cs5535 +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-f7188x +gpio-fan +gpio-generic +gpio-ich +gpio-ir-recv +gpio-it87 +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-menz127 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-pch +gpio-pisosr +gpio-rdc321x +gpio-regulator +gpio-sch +gpio-sch311x +gpio-tpic2810 +gpio-tps65086 +gpio-tps65218 +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio-ws16c48 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gr_udc +grace +gre +grip +grip_mp +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 +gtco +gtp +guillemot +gunze +gx-suspmod +gx1fb +gxfb +hackrf +hamachi +hampshire +hangcheck-timer +hanwang +hci +hci_uart +hci_vhci +hdaps +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdma +hdma_mgmt +hdpvr +he +hecubafb +helene +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hgafb +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-asus +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-cmedia +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-hyperv +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-led +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +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-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hih6130 +hio +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi504_nand +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horizon +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hostess_sv11 +hp-wireless +hp-wmi +hp03 +hp100 +hp206c +hp_accel +hpfs +hpilo +hpsa +hptiop +hpwdt +hsi +hsi_char +hso +hsr +hsu_dma +hsu_dma_pci +htc-pasic3 +htcpen +htu21 +huawei_cdc_ncm +hv_balloon +hv_netvsc +hv_storvsc +hv_utils +hv_vmbus +hwa-hc +hwa-rc +hwmon-vid +hx8357 +hyperv-keyboard +hyperv_fb +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd756-s4882 +i2c-amd8111 +i2c-cbus-gpio +i2c-cros-ec-tunnel +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-eg20t +i2c-emev2 +i2c-gpio +i2c-hid +i2c-i801 +i2c-isch +i2c-ismt +i2c-kempld +i2c-matroxfb +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-pinctrl +i2c-mux-reg +i2c-nforce2 +i2c-nforce2-s4985 +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-isa +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-xiic +i3000_edac +i3200_edac +i40e +i40evf +i40iw +i5000_edac +i5100_edac +i5400_edac +i5500_temp +i5k_amb +i6300esb +i7300_edac +i740fb +i7core_edac +i810fb +i82092 +i82365 +i82860_edac +i82875p_edac +i82975x_edac +i915 +iTCO_vendor_support +iTCO_wdt +ib700wdt +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibm_rtl +ibmaem +ibmasm +ibmasr +ibmpex +ibmphp +ichxrom +icn +icp_multi +icplus +ics932s401 +ideapad-laptop +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_gen2 +idt_gen3 +idtcps +ie31200_edac +ie6xx_wdt +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ifi_canfd +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-hrtimer +iio-trig-interrupt +iio-trig-loop +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +img-i2s-in +img-i2s-out +img-parallel-out +img-spdif-in +img-spdif-out +imm +imon +ims-pcu +imx074 +in2000 +ina209 +ina2xx +ina2xx-adc +ina3221 +industrialio +industrialio-buffer-cb +industrialio-configfs +industrialio-sw-device +industrialio-sw-trigger +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int3400_thermal +int3402_thermal +int3403_thermal +int3406_thermal +int340x_thermal_zone +int51x1 +intel-cstate +intel-hid +intel-lpss +intel-lpss-acpi +intel-lpss-pci +intel-mid-touch +intel-mid_wdt +intel-rapl-perf +intel-rng +intel-rst +intel-smartconnect +intel-vbtn +intel-xway +intel_ips +intel_menlow +intel_mid_battery +intel_mid_powerbtn +intel_mid_thermal +intel_oaktrail +intel_pch_thermal +intel_pmc_ipc +intel_powerclamp +intel_punit_ipc +intel_qat +intel_quark_i2c_gpio +intel_rapl +intel_scu_ipcutil +intel_soc_dts_iosf +intel_soc_dts_thermal +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +intelfb +interact +interval_tree_test +inv-mpu6050 +inv-mpu6050-i2c +inv-mpu6050-spi +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +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_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_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 +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipwireless +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +iris +irlan +irnet +irqbypass +irtty-sir +isci +iscsi_boot_sysfs +iscsi_ibft +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it87 +it8712f_wdt +it87_wdt +it913x +itd1000 +ite-cir +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +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 +khazad +kingsun-sir +kl5kusb105 +kmx61 +ko2iblnd +kobil_sct +ks0108 +ks0127 +ks7010 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksocklnd +ksz884x +ktti +kvaser_pci +kvaser_usb +kvm +kvm-amd +kvm-intel +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l440gx +l4f00242t03 +l64781 +lan78xx +lanai +lance +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-adp5520 +leds-bd2802 +leds-blinkm +leds-clevo-mail +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp3952 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-net48xx +leds-ot200 +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-ss4200 +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +leds-wrap +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libceph +libcfs +libcomposite +libcrc32c +libcxgb +libcxgbi +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3lv02d +lis3lv02d_i2c +litelink-sir +lkkbd +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lmc +lms283gf05 +lms501kf03 +lmv +lnbh25 +lnbp21 +lnbp22 +lnet +lnet_selftest +lockd +locktorture +logibm +longhaul +longrun +lov +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc2990 +ltc3589 +ltc3815 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltpc +ltr501 +ltv350qv +lustre +lv5207lp +lvstest +lxfb +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +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 +mac_hid +macb +machzwd +macmodes +macsec +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577-regulator +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max30100 +max3100 +max31722 +max31790 +max3421-hcd +max34440 +max44000 +max517 +max5487 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77693-haptic +max77693-regulator +max77693_charger +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8997-regulator +max8997_charger +max8997_haptic +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mce-inject +mce_amd_inj +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4131 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +mdacon +mdc +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-gpio +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +mei +mei-me +mei-txe +mei_phy +mei_wdt +melfas_mip4 +memory-notifier-error-inject +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +metro-usb +metronomefb +meye +mf6x4 +mga +mgc +michael_mic +micrel +microchip +microread +microread_i2c +microread_mei +microtek +mii +minix +mip6 +mite +mixcomwd +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma7455_core +mma7455_i2c +mma7455_spi +mma7660 +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_block +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpl115 +mpl115_i2c +mpl115_spi +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi-laptop +msi-wmi +msi001 +msi2500 +msp3400 +mspro_block +msr +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6323-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-quadspi +mtk-sd +mtk_ecc +mtk_nand +mtouch +multipath +multiq3 +musb_hdrc +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwave +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxc6255 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxm-wmi +mxser +mxuport +myri10ge +n2 +n411 +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nand +nand_bch +nand_ecc +nand_ids +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +ncpfs +nct6683 +nct6775 +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +ne +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +nettel +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +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_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfit +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfp_netvf +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_exthdr +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +ni65 +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_tio +ni_tiocmd +ni_usb6501 +nicstar +nilfs2 +niu +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-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 +nosy +notifier-error-inject +nouveau +nozomi +ns558 +ns83820 +nsc-ircc +nsc_gpio +nsp32 +nsp_cs +ntb +ntb_netdev +ntb_perf +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nuvoton-cir +nv_tco +nvidiafb +nvme +nvme-core +nvme-fabrics +nvme-loop +nvme-rdma +nvmem_core +nvmet +nvmet-rdma +nvram +nxp-nci +nxp-nci_i2c +nxt200x +nxt6000 +obdclass +obdecho +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_xilinx_wdt +old_belkin-sir +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osc +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p4-clockmod +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +padlock-aes +padlock-sha +palmas-pwrbutton +palmas-regulator +palmas_gpadc +panasonic-laptop +pandora_bl +panel +paride +parkbd +parport +parport_ax88796 +parport_cs +parport_pc +parport_serial +pas16 +pata_acpi +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cs5520 +pata_cs5530 +pata_cs5535 +pata_cs5536 +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_isapnp +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_sc1200 +pata_sch +pata_serverworks +pata_sil680 +pata_sl82c105 +pata_triflex +pata_via +pc110pad +pc300too +pc87360 +pc8736x_gpio +pc87413_wdt +pc87427 +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcbit +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_can +pch_dma +pch_gbe +pch_phub +pch_uart +pch_udc +pci +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 +pcspkr +pcwd +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +pdc_adma +peak_pci +peak_pcmcia +peak_usb +pegasus +pegasus_notetaker +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-exynos-usb2 +phy-generic +phy-gpio-vbus-usb +phy-isp1301 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-tahvo +phy-tusb1210 +physmap +pinctrl-broxton +pinctrl-intel +pinctrl-sunrisepoint +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pn533 +pn533_i2c +pn533_usb +pn544 +pn544_i2c +pn544_mei +pn_pep +poly1305_generic +port100 +powermate +powernow-k6 +powernow-k7 +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_core +pps_parport +pptp +prism2_usb +processor_thermal_device +ps2mult +psmouse +psnap +pt +pti +ptlrpc +ptp +ptp_pch +pulse8-cec +pulsedlight-lidar-lite-v2 +punit_atom_debug +pv88060-regulator +pv88080-regulator +pv88090-regulator +pvpanic +pvrusb2 +pwc +pwm-beeper +pwm-cros-ec +pwm-lp3943 +pwm-lpss +pwm-lpss-pci +pwm-lpss-platform +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pxa27x_udc +qat_dh895xcc +qat_dh895xccvf +qcaux +qcom-spmi-iadc +qcom-spmi-vadc +qcom_spmi-regulator +qcserial +qed +qede +qemu_fw_cfg +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas +qlogicfas408 +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quatech_daqp_cs +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r82600_edac +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-aimslab +radio-aztech +radio-bcm2048 +radio-cadet +radio-gemtek +radio-i2c-si470x +radio-isa +radio-keene +radio-ma901 +radio-maxiradio +radio-miropcm20 +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-rtrack2 +radio-sf16fmi +radio-sf16fmr2 +radio-shark +radio-si476x +radio-tea5764 +radio-terratec +radio-timb +radio-trust +radio-typhoon +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +radio-zoltrix +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +ray_cs +raydium_i2c_ts +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +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-behold +rc-behold-columbus +rc-budget-ci-old +rc-cec +rc-cinergy +rc-cinergy-1400 +rc-core +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-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-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +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-pctv-sedna +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-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-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rcuperf +rdc321x-southbridge +rdma_cm +rdma_rxe +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +reset-ti-syscon +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio-scan +rio500 +rio_cm +rio_mport_cdev +rionet +rivafb +rj54n1cb0c +rmd128 +rmd160 +rmd256 +rmd320 +rmi_core +rmi_i2c +rmi_spi +rndis_host +rndis_wlan +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-bq32k +rtc-bq4802 +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-hid-sensor-time +rtc-isl12022 +rtc-isl12057 +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-mrst +rtc-msm6242 +rtc-mt6397 +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-r9701 +rtc-rc5t583 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx6110 +rtc-rx8010 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +rtc-v3020 +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 +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +salsa20-i586 +salsa20_generic +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 +savage +savagefb +sb1000 +sbc60xxwdt +sbc7240_wdt +sbc8360 +sbc_epx_c3 +sbc_fitpc2_wdt +sbc_gxx +sbni +sbp_target +sbs +sbs-battery +sbshc +sc1200wdt +sc16is7xx +sc92031 +sca3000 +scb2_flash +scc +sch311x_wdt +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +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_tbf +sch_teql +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 +sctp_probe +scx200 +scx200_acb +scx200_docflash +scx200_gpio +scx200_hrt +scx200_wdt +sdhci +sdhci-acpi +sdhci-pci +sdhci-pltfm +sdio_uart +sdla +sdricoh_cs +sealevel +sedlbauer_cs +seed +sensorhub +ser_gigaset +serial2002 +serial_cs +serio_raw +sermouse +serpent-sse2-i586 +serpent_generic +serport +ses +sfc +sfi-cpufreq +sh_veu +sha3_generic +shark2 +shpchp +sht15 +sht21 +sht3x +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +silead +sim710 +sir-dev +sis +sis-agp +sis190 +sis5595 +sis900 +sis_i2c +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +sl811_cs +slcan +slicoss +slip +slram +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smc-ultra +smc9194 +smc91c92_cs +smipcie +smm665 +smsc +smsc-ircc2 +smsc37b787_wdt +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1816a +snd-ad1848 +snd-ad1889 +snd-adlib +snd-ak4113 +snd-ak4114 +snd-ak4117 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als100 +snd-als300 +snd-als4000 +snd-asihpi +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt1605 +snd-azt2316 +snd-azt2320 +snd-azt3328 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmi8328 +snd-cmi8330 +snd-cmipci +snd-compress +snd-cs4231 +snd-cs4236 +snd-cs4281 +snd-cs46xx +snd-cs5530 +snd-cs5535audio +snd-cs8427 +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emu8000-synth +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1688 +snd-es1688-lib +snd-es18xx +snd-es1938 +snd-es1968 +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-gus-lib +snd-gusclassic +snd-gusextreme +snd-gusmax +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-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-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-sst-acpi +snd-intel-sst-core +snd-intel-sst-pci +snd-intel8x0 +snd-intel8x0m +snd-interwave +snd-interwave-stb +snd-isight +snd-jazz16 +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-miro +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-msnd-classic +snd-msnd-lib +snd-msnd-pinnacle +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-opl3sa2 +snd-opl4-lib +snd-opl4-synth +snd-opti92x-ad1848 +snd-opti92x-cs4231 +snd-opti93x +snd-oxfw +snd-oxygen +snd-oxygen-lib +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-sb-common +snd-sb16 +snd-sb16-csp +snd-sb16-dsp +snd-sb8 +snd-sb8-dsp +snd-sbawe +snd-sc6000 +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-sis7019 +snd-skl_nau88l25_max98357a +snd-soc-ac97 +snd-soc-acp-pcm +snd-soc-adau1701 +snd-soc-adau7002 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-bt-sco +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs35l33 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +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-cs4349 +snd-soc-cs53l30 +snd-soc-da7219 +snd-soc-dmic +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-hdac-hdmi +snd-soc-imx-audmux +snd-soc-inno-rk3036 +snd-soc-max98090 +snd-soc-max98357a +snd-soc-max98504 +snd-soc-max9860 +snd-soc-nau8825 +snd-soc-pcm1681 +snd-soc-pcm179x-codec +snd-soc-pcm179x-i2c +snd-soc-pcm179x-spi +snd-soc-pcm3168a +snd-soc-pcm3168a-i2c +snd-soc-pcm3168a-spi +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rl6231 +snd-soc-rl6347a +snd-soc-rt286 +snd-soc-rt298 +snd-soc-rt5616 +snd-soc-rt5631 +snd-soc-rt5640 +snd-soc-rt5645 +snd-soc-rt5651 +snd-soc-rt5670 +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-simple-card-utils +snd-soc-skl +snd-soc-skl-ipc +snd-soc-skl_nau88l25_ssm4567 +snd-soc-skl_rt286 +snd-soc-sn95031 +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sst-acpi +snd-soc-sst-broadwell +snd-soc-sst-bxt-da7219_max98357a +snd-soc-sst-bxt-rt298 +snd-soc-sst-bytcr-rt5640 +snd-soc-sst-bytcr-rt5651 +snd-soc-sst-cht-bsw-max98090_ti +snd-soc-sst-cht-bsw-rt5645 +snd-soc-sst-cht-bsw-rt5672 +snd-soc-sst-dsp +snd-soc-sst-firmware +snd-soc-sst-haswell +snd-soc-sst-haswell-pcm +snd-soc-sst-ipc +snd-soc-sst-match +snd-soc-sst-mfld-platform +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tas5720 +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +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-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8960 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-xtfpga-i2s +snd-sonicvibes +snd-sscape +snd-tea6330t +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-wavefront +snd-wss-lib +snd-ymfpci +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +softing_cs +solo6x10 +solos-pci +sony-btf-mpx +sony-laptop +sonypi +soundcore +sp2 +sp5100_tco +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntpc +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_decpc +speakup_dectlk +speakup_dtlk +speakup_dummy +speakup_keypc +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedtch +spi-altera +spi-axi-spi-engine +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-loopback-test +spi-nor +spi-oc-tiny +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-sc18is602 +spi-tle62x0 +spi-topcliff-pch +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spmi +sr9700 +sr9800 +ssb +ssb-hcd +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +ssv_dnp +st +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st95hf +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_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 +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stm_heartbeat +stmmac +stmmac-platform +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +stx104 +sun4i-codec +sun4i-i2s +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +surface3_spi +surfacepro3_button +svgalib +sworks-agp +sx8 +sx8654 +sx9500 +sym53c416 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_usb +synclink +synclink_cs +synclink_gt +synclinkmp +syscopyarea +sysfillrect +sysimgblt +sysv +t128 +t1isa +t1pci +t5403 +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 +tc1100-wmi +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcic +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_nv +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teles_cs +teranetics +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_hash +test_hexdump +test_module +test_power +test_static_key_base +test_static_keys +test_udelay +test_user_copy +test_uuid +tg3 +tgr192 +thermal-generic-adc +thinkpad_acpi +thmc50 +thunderbolt +ti-adc081c +ti-adc0832 +ti-adc128s052 +ti-ads1015 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timb_dma +timberdale +timbuart +timeriomem-rng +tipc +tlan +tlclk +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmem +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +topstar-laptop +torture +toshiba_acpi +toshiba_bluetooth +toshiba_haps +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm-rng +tpm_atmel +tpm_crb +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_infineon +tpm_nsc +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tpm_tis_spi +tpm_vtpm_proxy +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65086 +tps65086-regulator +tps65090-charger +tps65090-regulator +tps65217 +tps65217-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tscan1 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw686x +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish-i586 +twofish_common +twofish_generic +typhoon +u132-hcd +u14-34f +uPD98402 +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +ucsi +uda1342 +udc-core +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-dwc +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +ultrastor +umc +umem +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 +us5182d +usb-serial-simple +usb-storage +usb3503 +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_uac2 +usb_f_uvc +usb_gigaset +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 +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +usnic_verbs +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +v4l2-tpg +vboxguest +vboxsf +vboxvideo +vcan +vcnl4000 +veml6070 +ves1820 +ves1x93 +veth +vfio +vfio-pci +vfio_iommu_type1 +vfio_virqfd +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +vhost_vsock +via +via-camera +via-cputemp +via-ircc +via-rhine +via-rng +via-sdmmc +via-velocity +via686a +via_wdt +viafb +video +videobuf-core +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videocodec +videodev +vim2m +viperboard +viperboard_adc +virt-dma +virtio-gpu +virtio-rng +virtio_blk +virtio_input +virtio_net +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vmd +vme_ca91cx42 +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmlfb +vmw_balloon +vmw_pvscsi +vmw_vmci +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vmw_vsock_vmci_transport +vmwgfx +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vrf +vringh +vsock +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5100-spi +w5300 +w6692 +w83627ehf +w83627hf +w83627hf_wdt +w83781d +w83791d +w83792d +w83793 +w83795 +w83877f_wdt +w83977af_ir +w83977f_wdt +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +wafer5823wdt +walkera0701 +wanxl +warrior +wbsd +wcn36xx +wd +wd7000 +wd719x +wdt +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wilc1000 +wilc1000-sdio +wilc1000-spi +wimax +winbond-840 +winbond-cir +wire +wishbone-serial +wistron_btns +wl1273-core +wl3501_cs +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 +wp512 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x38_edac +x86_pkg_temp_thermal +x_tables +xc4000 +xc5000 +xcbc +xen-blkback +xen-evtchn +xen-fbfront +xen-gntalloc +xen-gntdev +xen-kbdfront +xen-netback +xen-pciback +xen-pcifront +xen-privcmd +xen-scsiback +xen-scsifront +xen-tpmfront +xen_wdt +xenfs +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xhci-plat-hcd +xillybus_core +xillybus_pcie +xirc2ps_cs +xircom_cb +xor +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +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 +xz_dec_test +yam +yealink +yellowfin +yenta_socket +yurex +z3fold +z85230 +zatm +zaurus +zd1201 +zd1211rw +zforce_ts +zhenhua +ziirave_wdt +zl10036 +zl10039 +zl10353 +zl6100 +zr36016 +zr36050 +zr36060 +zr36067 +zr364xx +zram +zynq-fpga --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/powerpc/generic +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/powerpc/generic @@ -0,0 +1,19759 @@ +EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0x048d27cc hvcs_register_connection +EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0x536d329b hvcs_get_partner_info +EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0xc39c3704 hvcs_free_partner_info +EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0xd0a02396 hvcs_free_connection +EXPORT_SYMBOL crypto/mcryptd 0xc1a503a2 mcryptd_arm_flusher +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0x83cbad7d suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x6d483255 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0x7bf8b584 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 0x05221db1 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x06af67ed pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x20ee4c2c pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x3641486b pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x36fda42c pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x65a8a2ef paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x79d373d2 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x81974486 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x8790f89b paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xbbd7461e pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xc1f34122 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0xd0433d7c pi_read_block +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xf919a3d8 btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x02e949d7 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4dde7206 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x52163c86 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x58c4f30f ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7e327979 ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x912018cf ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x0dde832b st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x4461ad84 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x4bbf90fa st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xa3e98704 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x7e484350 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xad60d799 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xe8c6e50e xillybus_endpoint_remove +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x6fef72a6 dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xa71cd59b dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xb225dc22 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xc5436982 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xd5d43feb dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xfdc68e6e dw_dma_get_src_addr +EXPORT_SYMBOL drivers/edac/edac_core 0x91a5814a edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x03d6e6c8 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0d777c46 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0ef6b722 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x10cab4a8 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1a521337 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1c99f435 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x23e74e63 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3738b187 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x38e493bf fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x39ade6d7 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x593417f9 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5fee7d4f fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x645b715f fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x69339251 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6963dbef fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7a4c31e7 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7eda8c5c fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x814c5c9f fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9442395e fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x975c7555 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa5a2567e fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa8824d3b fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb3350b83 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc812e01d fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xda133cee fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xec4ab6f0 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf798c52b fw_cancel_transaction +EXPORT_SYMBOL drivers/fmc/fmc 0x272e7379 fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0x3932ec1b fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x5d37451c fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x60ecf6e7 fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0x69ba6f86 fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x6a80f7fb fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x8dd73124 fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x92620bfd fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0x95273871 fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0xd6755109 fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0xfc82fcb3 fmc_find_sdb_device +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00c04c77 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0313c85a drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0685f84e drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06b95fab drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x075b3be2 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ca9bb20 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d28c9cf drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0db4e15b drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e03c6f6 drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e79d88a drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ec3aab1 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f72c52e drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f877eb1 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x106191f0 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10a6bce5 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1148c46f drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x114d8a40 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1165e9b0 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x124a438e drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x124b1e55 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12712e29 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1271e976 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13397b8b drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a8ed9e drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15396e47 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1589d434 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16bec0de drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x183e8222 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18620e2f drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18c58a1b drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1993b23c drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19ba07e2 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e2f2c3 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e4430f drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bd3cbd6 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c30b992 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e3a692b drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f181da4 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f4915b0 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fd5351b drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20322a4d drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20cf7d18 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21c97d10 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x225737db drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22fff27d drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x233a053d drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23fe78bc drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24005230 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24af6c35 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24caad09 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2559f78b drm_crtc_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25e58ab2 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2689dbe0 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a8fa4ac drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ad83a1b drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bd45fee drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2be31477 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c24da6e drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cac85b2 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dec4c34 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3069a773 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30a767ae drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x317139ea drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31eadbfe drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3275cd31 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34811a86 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34eeb38f drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38ed3a6b drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3961c9c8 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a738bae drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d10d597 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d283d33 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e204827 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3efa0512 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fe92e47 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x409ee233 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42b018f2 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42cb184b drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42d619ad drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45243104 drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45f25eb1 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4621db2b drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4671344f drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4794f7ac drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x484bab60 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48b5b2d5 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x499a9b30 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49f97e06 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b6e9caa drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c9662cf drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d016e68 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e08a6c8 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e623189 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f09f4ac drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f0c2f52 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f6b4410 drm_mode_object_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51db353a drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x537063f3 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5371fa31 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x539e1527 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x543d2c1b drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55852e4f drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56a20a7e drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5705f1b1 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5986b193 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d6eadd2 drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5db4f96e drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60803219 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6203fc17 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x622ba72d drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x632e20ce drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64010dd2 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6577ea69 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65d4d52c drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x668857ad drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68ed607c drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x697a7935 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b1956dd drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c0cf6b9 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c271a07 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c71b71c drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d653f55 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dd2c489 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e11fec9 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e9b926d drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ea30287 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6eda81be drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f94ff0d drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7024276d drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x704bf914 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7090257b drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x709f88cd drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71372f82 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x721ed52d drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73dfc1a7 drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73eabdd1 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75762248 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x757da98d drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75d9f902 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x762c868f drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77882998 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77cf1b29 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77dd6034 drm_crtc_commit_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x780eb563 drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7912e7c2 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79a1330b drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a748d4c drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b24269a drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b968b72 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d5beff6 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fb4f4b7 drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fd07602 drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x806df3a6 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80d47ede drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81154be1 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8176b9c0 drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83463edb drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x834b0656 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x834e60ec drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8355d6d7 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x837c85bb drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83a8b9d5 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x841a76cb drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8462b993 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87399381 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87f08861 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88041b73 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88a40ed0 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b214680 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b57794f drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cc72214 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9015b133 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90c9df03 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9117878b drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9161abcc drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91e31581 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93b7f506 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9469d1e8 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95774716 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x957fc842 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dc7f89 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9723fa46 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97cf65bf drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97fdd1c9 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99035d6b drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99d9b845 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a548d80 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a6616e9 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c0139d0 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dedf3ca drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9efbbd45 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f48f455 drm_mode_object_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fd3bef7 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1ac3cd8 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa279c457 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa335caca drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3a3bc70 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7020a79 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac9fb51d drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xada1996a drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadb0d02d drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae2d119b drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf0497ca drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf504d87 drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf9fcb0f drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafa0eced drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b2840b drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb37d51ad drm_format_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb385ed48 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5f94cfe drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb69d4364 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb79e9423 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8c1c70b drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8d4e8a2 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9d5bd75 drm_gem_object_unreference_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba9453a1 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbaebdafe drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb7ed52f drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc7d09c3 drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbedac4b6 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0a61ea0 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0e0d116 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc342549d drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc58458d6 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc68ea6ff drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6a4c43f drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc88a5bc6 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8a63925 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcadd65a1 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd64e2f6 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdbb830a drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xceb63e76 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf3763a7 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd008b7ae drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0903f15 drm_format_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0e6fad2 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1a3971f drm_gem_object_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1d04507 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd20da8b1 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd25d61b1 drm_crtc_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2c1cfae drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2d94178 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd43a99b1 drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4f8f5a4 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd51a22ae drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd75b8ce0 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd868f537 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9c85f41 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdab7b436 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdafb5603 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb01c8c9 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb09feb3 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde0663dc drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf972e2c drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfd1a792 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe02e2951 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe04f8b2a drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0688818 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0e3f006 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3b700ee drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4529e1b drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4606610 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5c642d1 drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe62ae6f4 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe62c0856 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe633db68 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6e97193 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8161da2 drm_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe86753b3 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe87feef6 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe958cbb6 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb44e1ad drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb6438f4 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb7d6977 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec3516b0 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec501b0f drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec7a16a5 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed293dde drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef2c3fbf drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefa2b62f drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0098026 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b098be drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2c7f9b7 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2ffede0 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4036755 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf48cc21d drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5123bf4 drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf579a39e drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6841976 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8170acb drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf995ee0d drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb19d37b drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc4763ac drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x001886d9 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00ecb198 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02453820 drm_fbdev_cma_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05eb71fb drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06383818 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09ddb9d0 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d4b74d4 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12af795c drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x138f10c7 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14023ce9 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15825798 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1817c41e drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18d00d16 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19b6bfac drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19e3b767 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1edbbefc drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2344412c drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23b60a06 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23ddddda drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25982c8f drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25fa9edf drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x267c49e3 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ced3bee drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d9d49a0 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2dd40cdd drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f3d4495 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31ee40f5 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3537b61a drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x358079b1 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3621c9e3 drm_fb_cma_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3693ef0b drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38043679 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39b9b351 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a4e4983 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d5a5ae2 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40b8d3ca drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x422ade79 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43e2d126 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x443a99b2 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4618949c drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x470addb6 drm_fb_cma_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47ebef6f drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4846eb93 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a280278 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bc4ecd2 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c4a035c drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d54a448 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fdeca19 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5036de0c drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50be9055 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52a8b6f4 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52e005cc drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x533e3a13 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x583c797e drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59284704 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x592f1d66 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a64b592 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ae909c8 drm_atomic_helper_best_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bed9db7 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5dfd66d8 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f6a146e drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x641df52a drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64f5d4db __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x684e5a2e drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6985a388 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69f7f4ba drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x719271aa drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7616059a drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76d46b37 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78aa2bcd drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae1ec9a drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ce7e709 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cf07d97 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7db0ec8f drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fd2f867 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80044520 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x810d7d35 drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81870df3 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8283ab0d drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82e49837 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x840f9057 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84ee149f drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86ac65c7 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8722e635 drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x896b2e17 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a63de8f drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a81c3b8 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a8e3185 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b8a92b0 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d8f443c drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x912befaf drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91457b31 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92691f13 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93410c4f drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94914edd drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94bc1cb4 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95768797 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95e94d5e drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97a64936 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b84fbe1 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c0a1d80 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9da6e395 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f4a2036 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fcba12a drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa14411de drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa41f93d9 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6c5cef1 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6d246f0 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa71af3b1 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabde56e2 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0d17d6e drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1a84931 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb251e116 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb40ed1f3 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6066953 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb61be5b1 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb777f070 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb93dbd33 drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb99cc707 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbabf85f9 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbcbf5298 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd4ad60c drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe9312a7 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc381121d drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc40cebfd drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7dbaa4a drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8a0a37a drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc90462f5 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc6c9c38 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcceac911 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf18c490 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1d44ad5 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd38a2002 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd42c88ae drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd43718a4 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd477dacc drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4db7bd1 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd91a3d5a drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda2a9f27 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdad76581 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddbe4fa4 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf84a9db drm_fbdev_cma_create_with_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0d04fc2 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe32a6e4e drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4092fa6 drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe40dddae drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe57f3024 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe65c06fc drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6d88920 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe84f1ac5 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea3cf014 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefe754ae drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf34b3110 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf78aeab6 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf79b0aff drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd45a715 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe9197ef drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfff59a39 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06c4d942 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0b93ea06 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0ecc7cfb ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x12039f7b ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x12567ba4 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x17bc085b ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1ea7be3f ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1eba8f3b ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1ecebf1d ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22b7e748 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x23357760 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2947f41b ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c243628 ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2cfbaf7e ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3af2cdb5 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3e57f45b ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x485a5bc0 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x489a654a ttm_bo_pipeline_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4de1b9b8 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e09d7b8 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x517362bb ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x534245dd ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x54144419 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a8fdfea ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5b4ba8fa ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5bab7ae9 ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c8e5130 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6d69ae10 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x70452be4 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x74ac20ff ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x74c1db88 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7cc25954 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d55da85 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f6466a5 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8121ec11 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84a13931 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84c24f09 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x872f9d40 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89a443de ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b459fc4 ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x901de5fe ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x909bd611 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x91e19bc1 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x930479f2 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x962c9bea ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x97de2544 ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9a4472c9 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9a4cef55 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9ab2a49f ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d400fb3 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2a129fd ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa73de2a9 ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb66024c0 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb8ff3611 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0c2da ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc64efa35 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc6b8ebda ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc937981f ttm_bo_default_swap_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc96e1524 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xceb77510 ttm_bo_default_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd39ca867 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7f51742 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1dacf61 ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe33ab2a0 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe816cd2a ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xed32312c ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeded0c5b ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf00a6dc0 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfcde515e ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xff4c78a7 ttm_tt_bind +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x2c945ef8 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xca2cd327 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xe7651d9d i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x5111679e i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xf54e0818 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x348ba249 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x08603452 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0883c738 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x10b2e6d5 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1b9cde86 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x201de5ca mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2096eb97 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4ae5df88 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4ef56e49 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x655094d9 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8473420c mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x867908b9 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xacdb4fb1 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xaf4cb150 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc94ebf66 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xddd2009b mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe78c99f9 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x9939a83e st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xb11b4536 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x1f668369 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xceb56662 iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x4392ec66 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xdd547dfa iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xec477c16 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xf676578e iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x1644e53a hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa8b45506 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xca5896d6 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xe334954e hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xf185d6ef hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xf4f63ee9 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x04b3a09a hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x2383db9e hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x3669a773 hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x972623ff hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x19a8fc9b ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4b9a5f7c ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6d15535a ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6f1c9d8e ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x96aa513d ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb3582d69 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb3fb5270 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xcd701109 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd9e6f5cb ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x3382225b ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x4658fb5e ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x4ab971e9 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x85c839c2 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xc6930e2e ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x043205c4 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x2e6e3787 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x3c9a5c74 ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x004011f6 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 0x0a3e5eda st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1c1833a3 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x29166fcf st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x62021e0f st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7e42d768 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8776009a st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x983d2876 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa267e51c st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb276f663 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc086aeec st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc123686f st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc194c088 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc2a61f14 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc374019d st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd0ffa5bc st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x7b2e19c8 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xc01bc55a st_sensors_of_i2c_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x8643d0c8 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x2c39f1ba st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x584018e5 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xc5e0139d adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xe75da4c4 adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xd50d7c2b bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x02f77505 iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0x159d50c9 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0x217ba08e of_iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0x21f7866a iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0x22fb86e5 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x26e6d176 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x38175e74 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x400c35f6 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x40299c1f iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x47bf47fc iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x4b7bf4a0 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x51819696 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x56125cb2 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x9eb9da96 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xa338d7bc iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0xafc30ee6 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe6515408 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0xe7a043a7 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0xefea2fb6 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xf036745f iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x52727780 iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x30f31802 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x82661026 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x9df41939 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xdca88550 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xab7d80c2 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xae6f9081 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xaf15391f iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xb78e110e iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x3bd5bd3d iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xb51fe3db iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x0cde15cd bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x4ae15988 bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xb600ab31 bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xf6ec545b bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x7187acc5 hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x8a3e76b5 hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xeec51c2c hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xfa8d922f hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x85c4e919 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x98efcb7c st_magn_common_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x47cbc193 ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xcd0efa37 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x1e98bd3d st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x2895b599 st_press_common_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x07c8fcf2 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x21a3fa36 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x24ab2754 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2ae7d71e ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x397cdfe2 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3bad1613 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4ee6440b ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x53e861db ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69383e65 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6d502766 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x757fe396 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7bdc397d cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa1943a48 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc111260f ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc8492bee ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcdce4501 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xff483451 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xffd7048a ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00f4d0a5 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01159d76 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01e96184 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x049ace30 rdma_addr_find_smac_by_sgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05130f66 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x097e5c09 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09ae850e ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a1e62fb ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a1e8b9a rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ac6d69a ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c549739 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d3736f4 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1214b2ba ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1214c3a3 ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19e45ee6 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a68f991 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ea5767b rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21f86a5d ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x227d7465 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x232e95e8 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24a81598 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x250e184c ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29538782 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a1210b0 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a229e18 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2dbc58eb ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30b2efa0 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32a8402c rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3671cc1a ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x376211c6 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x379e970a ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38e0ddcc ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a2c4701 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d1d9067 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f71d43e ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41140949 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42a931be ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43acc8ca ib_destroy_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x445e7be4 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x449e77d8 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x474cbe85 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x474f20ed ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49ecf8c4 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ae29904 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ff6797c ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x515c262c ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5328d7a6 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5497722f ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54af85e4 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x576fdbac ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58bf954d ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59917c59 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c35a53c ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5cb9378e ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e57570c ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f5a9683 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62907028 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6339e894 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x647bb45d ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x665c85a4 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x678dd59d ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a31f2a7 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6adc3e16 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6be74adf ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ed92ffc ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f2a5fc2 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72272a1e ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73b29f2f ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73f1e2be ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7557151e rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76cf7618 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x771fc9b7 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7956e29c rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ba65ee8 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f97a532 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80e7973e ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8294d5c1 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83e5ae0f ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85d06794 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89f0c1c5 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d02331a ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90475e6e ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92da221e ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93136a35 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95625b9e rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95aed5de ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97da39ed ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b9cf9a rdma_addr_find_l2_eth_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a1cd50d ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d82ec21 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e183b21 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0975440 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa299c4a7 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa625e242 ib_create_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6aa4a73 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa77ab47c ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa85a4610 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8f79fa5 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa5b0d63 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa9180ff ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabae75c3 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf1347f5 ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf861fd2 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1c657f9 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2ba7e22 rdma_resolve_ip_route +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb408bc2c ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb43205a3 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5e28218 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb692faa6 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba8699fd ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb6e444a ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0ac7822 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3c0d690 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc598f0b4 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc62fb5a2 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc65678b ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd13ef31 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd9a79e9 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcda240f6 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0c378d2 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0e135ea ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0ee9704 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd13c5c47 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3193bcc roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3ad9b29 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd471a4ce ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd59d9411 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6ca5fc8 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd91db986 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9282f8c ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb1795b6 ib_modify_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde4aedb0 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3883059 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe44b26d5 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe52ed750 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8e1136f ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9d0fded ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebdb3913 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed64864b ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeeda440b ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0248cce ib_sa_classport_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2d7725b ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2dfad3f ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5d12e4a ib_destroy_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdfaf681 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5397d778 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x705570fc ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbf92bd97 ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x07145cb0 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0f4a5c08 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x150a0a04 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x394845c4 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3ae9c925 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4a2c2e72 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4e173f8f iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x95a458f6 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xaeadae5f iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc7c392e5 iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xccc975ac iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd6aae912 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd6f5cb6f iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe7f82083 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xef74c89c iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x000e60a7 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0a0073fe rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1b873b75 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x33f84d1a rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x41a00118 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x65cf1313 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8057f126 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x82a88ba9 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x96f8a101 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9791592e rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x97f528fe rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9f6ef5fd rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9fb13b21 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc3c1fea4 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xca083374 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcbf76002 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd6e2d75e rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd6f9a38f rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd7c673af rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xde7425a7 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe63652b0 rdma_listen +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0da01f17 rvt_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e385842 ib_rvt_state_ops +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1033e67b rvt_invalidate_rkey +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x10b67587 rvt_lkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1bbd37e4 rvt_check_ah +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x3d7af69a rvt_init_port +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4902577b rvt_register_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4961c7ff rvt_dealloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x67da114a rvt_error_qp +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7d4fab5d rvt_rkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8c31ce7f rvt_mcast_find +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb9c770a2 rvt_alloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc006326b rvt_cq_enter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xeea35b21 rvt_unregister_device +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x092a407e rxe_remove +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x2412eca9 rxe_add +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x48f93f58 rxe_remove_all +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x959c96be rxe_set_mtu +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0xb31d73d2 rxe_rcv +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1a4b4c6e gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x34105365 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x68c88fec gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7bfc9267 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7dec8f38 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x94a7e24a __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb376a8e5 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xba6a9287 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc575c84d gameport_start_polling +EXPORT_SYMBOL drivers/input/input-polldev 0x931800f3 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xa26b4c0f devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xa8902e5e input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xae61af30 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xaef6aec5 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xa7960902 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x44130a1f ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x6f3be7c8 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x8a804d3a 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 0xdfa82e1d cma3000_init +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0xf161986d rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x2ae9d9b3 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x723e4d75 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x77cea676 sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x94f5e7fc sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xa08c6ebe sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xcec4fe1b sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x2625aa47 ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x722235fc ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x13b152c7 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2e931be2 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x383d4bcc attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3be7f9e4 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4c8ac9e4 capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7211d1d2 capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7c7397ad detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7f2ea6f1 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa1650d14 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa5e530f6 capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0df4c428 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x14e5a9b1 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x244838c8 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2d4294e9 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2fa671d6 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6d04ce27 b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x861ba036 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x913bfec4 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd2082f46 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd52f6683 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe765bae6 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe8e58a28 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe993a4a9 b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xedc96c9d avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xef50ba9d b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x0428a459 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x3177cd2e b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x5321e81f b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x5492a486 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x787b70a2 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc953503a b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xeb15b291 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xed7350cb t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xee7a32ab b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x3e21032e mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x91b9bd38 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xc5894b59 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xee6449dc mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xa91a01cc mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xf161d4cd mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x7a1e9014 FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x8bc4b67f FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xc3c8d8b3 hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0ec1296 FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x8283c261 isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x92d31c03 isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x9e22da5f isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xa8823cf9 isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xada77359 isac_init +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x874ae2a0 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xc2913be8 register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xdd361520 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x036c5e68 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0dda92cd mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cb751c6 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1f39b22f mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x294d4bcb mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3372a672 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4c94613b mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x513fe707 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x542543d7 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5741ebd2 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5fee0764 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x639eee59 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x63c46c44 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7a27e51b mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8322163c get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8478fe10 mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8549d8d0 mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x93fa922d mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c7e84f8 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9dbb8121 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa536e643 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xafaf8409 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc525fd78 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd15aedd3 recv_Echannel +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 0xd558630b mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd6c430bd queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd8b26a09 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf84ae11f mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/bcache/bcache 0x0a0e7903 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0x17c3eba9 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1d89bd11 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1f529ce8 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0x26481f26 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x44a37d62 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x5b59b856 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7823a8fd closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7daccb73 bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0x8833b0e8 bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa3c5c702 bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc820ea4b closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0xca5df778 __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0xce47a6d9 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd2813054 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0xdf892351 bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe67c2d16 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xec6f33d0 bch_bset_init_next +EXPORT_SYMBOL drivers/md/dm-bufio 0x268682d2 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-log 0x31e4cfb1 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x5f0e441f dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x6b6c8130 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x95cef7d0 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x01ab76df dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x2e22e517 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x59b7de9b dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x79f3ff88 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb11dcf01 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xba1e6759 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/raid456 0x92e9abda raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x18541ae1 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2c41e363 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x45cc8fc0 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x549e800c flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5eb34434 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6eb32ed7 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7b65ef50 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb0f1e733 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb2f4efc9 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xca1a4e1a flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd51a0a40 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd55c4eba flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf3a917a7 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6cc7797c cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6d0f77ae cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x847d4dc0 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0xaf1287e0 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0xe6e51c1e cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x9c175460 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x13ad9ef6 tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0x8846e566 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x03534d91 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x045ca30c dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0bfd33b1 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0fa71b1a dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x12d5dc34 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1edc9d36 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x28f2cd87 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x32706276 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x58e2870d dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x59d5f406 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5b972b3e dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5bd5fed1 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5c0ea535 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6f1c215d dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70af1058 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x75f1396a dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x78db694b dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7d2a5843 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7f4f9b54 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8557b10c dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x85a5e7d3 dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8e586027 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaa5deff7 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb42a4ab1 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb4d146da dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb4dbee80 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc042a777 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcf589e8c dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd538e0b7 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd5b3ad6b dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8f7184c dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdef798c7 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xed063ce2 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf2630214 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf28e7431 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf3a005bb dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf632283d dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfbaa7e01 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x5b1e704e af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x24ab74ee ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x7e867970 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0cef18cf au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x16088865 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x46f6be14 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x676d705c au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8183a422 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xcadf1341 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe33ed964 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xeb8d0b23 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf27f7e8c au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x6f700cbe au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x874051c3 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xa7d9b06a cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x4b1d78f4 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x748248dd cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xccb48e81 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xe4dfd83f cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x71915e71 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xccf7a8d2 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x70dbccd5 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xd747bbc7 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x2eba428a cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x0c3526d4 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x172fa4af cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x092d6a6a dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x1a5f48bf dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x3a918566 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x6cc045ee dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xc4c4cc20 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x08b5e90e dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x297bc66d dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x30a419e2 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x32de479b dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x35bb5fe1 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3edf5a4a dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x497b6a1b dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x676d663c dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x84e30cd4 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x936b473d dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc4b92c4d dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc66fa30f dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd758563c dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xeb8627c3 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xee90d868 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x2020a799 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0c463b19 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x59ac6a01 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x9deb858a dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe6cb11ec dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xeaa52940 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf38ed210 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x01ac920c dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x3fdc5a6c dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x4ac2cf6c dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xf159d16e dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xb646a169 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x8b11d6b7 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x0f619158 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7455797d dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x916e054c dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x938f279e dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xfd426d93 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x0823f41c drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x6dbf87f6 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x52f94ba8 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x757ea543 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x5118e532 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x3a80f4e7 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x25c58a35 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xfc90360d helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x4f706894 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xeb191341 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x3493ea7e isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xb67d98a1 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x673d04c3 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x2bee8689 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xf86d8a66 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x7b987ffb lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xecbf7dd0 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x52b0a79b lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xcb402b08 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x956ccf1c lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x0932d9b8 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x48d640fe lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xf1a6ed48 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x00bf758f lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x9775d03e m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xb7d533ff m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x2ef409da m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x4abcf07d mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x9dc65fd3 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x7e49cd1c mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x11950e69 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xecf17ddd nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xc6bc3587 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xbbb4f15b or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x4795ce71 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x66d471fd s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x35934ac4 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x4176720a s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xefa5a809 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xd9c1997a s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x8c49f280 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xa0375b3b si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x33494cb1 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xed1a11a8 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x6cb0ca8b stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x63b37475 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xe8e6d2c9 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xf111abb1 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x507f29ab stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x87d779ac stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x2d605734 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xc1836dc5 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x4104bf13 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xf3f63858 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x96f0178c stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x722b7a32 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x6bfb29b0 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xb79ffb71 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xc4720476 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x6614db3e tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xaf243e0e tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x0b214015 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x22b11a10 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xf5d0647f tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xd2ffb791 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x6bc71ad9 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xfc510015 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x70901af0 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x804f3909 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xf7aa55fe ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x064f7f99 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xa001d3d4 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x108b8875 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x07f1908e flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x3f383f82 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5e045fc9 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6adf6496 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa1acf424 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xac15c64e flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xedeb2217 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x02017674 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x213652da bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9801d085 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xab028750 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 0x1aed4f51 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x951b2ec2 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xd5de0d39 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x25e4e3f5 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2af0b60c dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4234a2f3 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4c608806 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x52fc9a1d dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xaf49e4a2 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd11854e2 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xda5442ab read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf413d1d0 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x664cf711 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x34277758 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4c9910ca cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x91c3b70a cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xacbe70b9 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf68e2a51 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xd8aa7544 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 0x047caac5 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x17de8be3 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8a98aefe cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x979db29e cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb21c099d cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xbd094f17 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf971b745 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x09683a91 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x164f7c6b vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x602ddfde cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xacd42552 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xe8bbc710 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xfd3f461d cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x0b6b117a cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x0ebbfff9 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x596a2751 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe8d6ad64 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf81b282d cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xff629451 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xffdbbae4 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0151ee2e cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2d7d7c56 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x34cd48fc cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x40a42155 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x433ad2ad cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x567cddc5 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x569bbeab cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x70119558 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x701afc31 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x89bc5eaa cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xab7d1e19 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb9c1d6a9 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc0cd0abf cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc312ab49 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc557fc94 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc6135f7c cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd2f85114 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd821cdea cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd8d890ca cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xec0faf8c cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x03746667 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x04e64718 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0950fb15 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x195524d3 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2e1f386d ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2f9b9a5c ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3b8a0274 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3c270ff1 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x53dc41ca ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x75267931 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7ab795cc ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x82ec2814 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9d57aab2 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa679ddb6 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb11f0d38 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcd169852 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd277c4ba ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0a079dff saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0fac2af7 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x31ad813d saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x336f9d7f saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x41dfec7f saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x485d24cf saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9c746285 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9ca3af20 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9d44610d saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa75b3589 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd4fe5700 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe1ea26b5 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf8ea5f07 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x652c45ad ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x10b4c5a4 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x41ee11a5 soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x57f4f8cb soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x6c7eb3ac soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xadc68536 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xedcea9d9 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xfeb8924f soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/radio/tea575x 0x3aa5ae4e snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x858a1b4d snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x8ed32eb0 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x9ed5c650 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xb9332a5b snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xcc9266c5 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xdd86aede snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x099692f9 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x5522d2a6 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x735171ed lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xb735cac4 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xd659daed lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xde60f0c8 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xf2a92fcd lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xf3b7748c lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/rc-core 0x5464a24f ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x82e92144 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x4337d053 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0xc23a3815 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x3b05f111 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x61718e54 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x9d68cea9 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0x7f74dcda max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x3af1c316 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x758fb852 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x9137eef7 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xb39cda60 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x373c3c94 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x7cd4dc39 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xa741c6a1 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x5192622b xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x58589402 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x60a20334 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x8ecf834f cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xecebb9db cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0d73d4b4 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x12e4c2bd dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4dfee5bf dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x57bf41bf dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5f670b47 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x63d5be25 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x870a3212 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa2ca3aef dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf872ad00 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0561367d dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x08cc5fb2 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1d6cc7db dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x27397e38 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x9dff798e dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa79b3162 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xcdcbb83c dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x9ceabf66 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 0x0ae4ca11 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x242cd210 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x247ea6f3 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x32feb082 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4c6c94cc dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x544360a0 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6bb8eb7a dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6fb9cced dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x77015778 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8a6bed9f dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8c7aed6b dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x0a28c4af em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xfcf3b0b3 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3685e073 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6827d9c8 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x695ead50 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x70cbfa04 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x72c74c46 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa5407f8b go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb2bdbe63 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xdc1af11e go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf703058c go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x03087866 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x089d1dfe gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x55f4ff05 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x61f88b1d gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x63d34a02 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x98a9395a gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc5604929 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe7d146d3 gspca_resume +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x9615944d tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xae4e7691 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xbaa87c85 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xdb33508c ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xf0f45146 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x2495d715 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 0x480e5202 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xadb27c6b v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x1829a43c videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x1c900f6e videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x7a117c8e videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xc0c36610 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xd33b55aa videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xe8032edb videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x6917ad13 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x76b14419 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x100f23ee vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x1c220321 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x4bbbfe1a vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x8734e078 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xc4a667c4 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xf0024cea vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0xf7dd3610 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0169f641 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x061de47a v4l2_ctrl_subdev_subscribe_event +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 0x192c3f53 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1a423a02 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1c364bcb __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1f14b5fc v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x25ef1347 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x289ac65b v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2cc38fb0 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d12216a v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30ec9911 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x34e4d330 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35ade29d v4l2_of_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3aa6b025 v4l2_ctrl_new_std +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 0x40cc41ff v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x40d49702 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x40d4e82a v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x460fd5e3 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4a110188 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4ae9ca57 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x55a7c009 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5768ad80 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x587dc9e8 v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6036434c v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x61da59a1 v4l2_of_parse_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x61f6addb video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x637c59b4 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x69fb170e v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6bf7887c v4l2_of_alloc_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6d5c6a0e __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e63bd8d v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x712bd721 v4l2_of_free_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x72fac9b6 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a5499ab __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x88c9004c v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8924845c v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x895c31c2 v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8b093d64 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8dcfe9e4 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9132d475 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x931c39f3 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x94415175 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9eedf2c6 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9ef7c24b video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9f649f21 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa15290dc __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa24a7318 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae11473a v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb34a794f v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb6b871ae v4l2_subdev_init +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 0xc3e11109 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc79751d6 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc849b8be v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc9311731 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc97f6614 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xccb6a31b v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcec75e7a v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd6c635a5 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd9a01abe video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda4e2143 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf5255bd v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe6300d93 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeecbc98e v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf518ea37 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf8315ca2 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/memstick/core/memstick 0x040a23ac memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5519ec1d memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5dcefaba memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x600e634f memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8c7514e9 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa4e4e469 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa88d7e89 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xab1a9e48 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc63c8e76 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc6ee52b6 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd5769fa4 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xda892dbe memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0ec68d2a mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x11c2ec97 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2032ceb2 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x20d3206c mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x215b1078 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x240c9f4c mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2992805b mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x36e0b853 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x42630654 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4a1e911d mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4f36e8da mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x55217757 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x55ecf237 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x57555fc5 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x62541531 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6b7a1d2e mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6c7282ba mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x80b7c105 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x81d5c88c mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8c333ede mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8e993688 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9005ab56 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaafbc53b mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb3fe81c9 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcaaeba6f mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcee30abc mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd7b6d28a mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xecd95442 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf06e4fe0 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x064001f8 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0c6f18f0 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x12515df3 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1366b6c4 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x16ff827d mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x21be5edd mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2db8f356 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x382b541f mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x387468ce mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3fb16cb8 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x427df892 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x43b36e55 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x506181fa mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x52d4ebe5 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5c0f7563 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5c59f1a4 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5fef4499 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x69432707 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6eb6bfce mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x81237741 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x82737b42 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9b6e062c mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa0c47918 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xab192fbf mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbf58d048 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfbf53ced mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfed3c298 mptscsih_io_done +EXPORT_SYMBOL drivers/mfd/axp20x 0x2f5bc277 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0x7b9803df axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0xee7b00cf axp20x_match_device +EXPORT_SYMBOL drivers/mfd/dln2 0x06bd2acc dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xaad2e060 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xbb430d86 dln2_transfer +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x15cdb6b8 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xfc2ca8f7 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x01095d18 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0bfb1a78 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2771f4a8 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5aa1c6fd mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x848c3c05 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x97dc3d5f mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9f957498 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xaa5471e3 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc0741222 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc6bea1e0 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe86af3bd mc13xxx_reg_read +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 0x1f3fa94e wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x5642609e wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x6478db07 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x7edbd143 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x9aa895a5 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0xc92062b3 wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xd83e811b ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xeb1f7b50 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x8ed02032 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x10fae8d6 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0xd79e4b10 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/ioc4 0x2e2b078b ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0x3041c32f ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x1ef68046 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x2e18466c tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x7d67d65f tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x85585baf tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x8c8bf5f4 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xa0489f91 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xa7b7e61f tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0xada56747 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xb7ff7c2d tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xcfc7ef45 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xf8b589b7 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xfbc2a286 tifm_remove_adapter +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x3023d428 mmc_cleanup_queue +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x1b9c7c41 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x9e0e57ce mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x1009b183 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xaca42abe cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xba6334c5 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd087d5dc cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xee0d6997 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xefb5e15d cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf7e60742 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x0b1e2b67 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x1045725c unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x529201d0 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x7f4b867b map_destroy +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xe8c3d84f mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x9299ddba lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xc9d63353 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x1e448843 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0x6b79b047 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/denali 0xb9736514 denali_init +EXPORT_SYMBOL drivers/mtd/nand/denali 0xe7a4104f denali_remove +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x4077c768 mtk_ecc_enable +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x5437e775 mtk_ecc_disable +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x547584cd of_mtk_ecc_get +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x67dc4d5c mtk_ecc_adjust_strength +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x6df58afb mtk_ecc_release +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x76e53683 mtk_ecc_wait_done +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x77ecf26d mtk_ecc_get_stats +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0xf00129a1 mtk_ecc_encode +EXPORT_SYMBOL drivers/mtd/nand/nand 0x02e3f7ca nand_write_oob_syndrome +EXPORT_SYMBOL drivers/mtd/nand/nand 0x18aca6f6 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/nand 0x423d4261 nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0x4ab4088d nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0x5e00df9c nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x800d9769 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0x994b7bf4 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0xbb9ebfd1 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand 0xfed6c21f nand_read_oob_syndrome +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x32d1b235 nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x333a1d50 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xf7baacac nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x2cced988 nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xba4f3493 nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x3c806bf8 onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x74eb2d3c flexonenand_region +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x08b5da50 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1eb67112 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6996c484 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7009ad66 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7b7c49cb arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x97a80146 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9f1f80c7 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9f455192 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe1702b91 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfaca5b1e arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x3e46e300 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x87c34f8c com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xd54c3843 com20020_check +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0656ed1c ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x13043e4a ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x53ffa325 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5829dd29 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x97fad81c ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb0aea877 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb6739ca6 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xde55cb7b NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xdf121ed9 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf89eecd3 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x9238aa8d cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x285bde59 bgx_get_rx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6dc1648d bgx_get_lmac_mac +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 0xe48ca42a bgx_get_tx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf9508980 bgx_set_lmac_mac +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0f2c8d0e t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1c80539e dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x23c97089 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2e41d336 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x32f154ae cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4361fe4b cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x56f9a5f9 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5d4f4072 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x65c5e6b3 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x75edc0da cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x778c1ebf cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8021e0f7 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdbf75930 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe7e813a2 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf00bd203 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfcd2e80d t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x21cf0ab2 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x23a6dc88 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2d55bb38 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x44596902 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x44964033 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4b73a8f0 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5bf3d904 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x63387a4e cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x675f583a cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6b8df2d7 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6c83c2cc t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6d248ae2 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x723ed6ca cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7e30a9a3 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8384658b cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86b663bd cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8734f980 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x95d66600 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x97a674fd cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x98372f0d cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9839ca91 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x99c54bd4 cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa49d1e64 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8adf634 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb0687115 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb7a5aa6e cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc09c5b39 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc6c34421 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc75e0164 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69bbc73 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd77cf352 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd8fb6d82 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdc298291 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe8c18e91 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef30c82c cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf444408f cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1f6fac2c cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x42ebd8ec cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x95c4b0f4 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xd3b1e8e1 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xf7a35252 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2353a6a1 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7f0a43b8 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x845fd357 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xae68e031 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf39cd71e vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf9ceac77 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x3dda91c8 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xb612caa2 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0xd7c84257 i40e_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0xfaf1a63f i40e_register_client +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x072a5dfa mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20be0647 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2dc212c0 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3071d132 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33145704 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x351465c0 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x373bfa0a mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39f8a129 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3eef75a3 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x419415dc mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4302866c mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46e7a936 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f82e540 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fa42e0c set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5972cdbe get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a26e85e mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x710a6a80 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x724fa6a0 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79e5b7a5 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d97aeb1 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f056506 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86c496b3 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c37b034 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9482c89c mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95ec4285 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9806a303 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7b06add mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1393cb2 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb597fa4e mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6495052 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbabc9913 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbae74db1 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc075009a mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2f09e69 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5f34dc4 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe71400d3 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec7293d8 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf23c8939 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3f121bc mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbbe5520 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04b4b479 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a45ce96 mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a5f5ec3 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11af2e00 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16721492 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1dd677f0 mlx5_core_destroy_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26b35da0 mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x274baa15 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28bcbdf9 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d82e295 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30f8d540 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3227f369 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3281c852 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34d4d4b3 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38085799 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x407e2f32 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4792c580 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a5a0a03 mlx5_core_destroy_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cf87f34 mlx5_add_flow_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d21f88f mlx5_core_create_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x507f09bc mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x536f3b9a mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b0b2774 mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b68d53e mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e487226 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f6590f3 mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71b371ec mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7554081a mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75f0cbe0 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b61c7b0 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81b5746d mlx5_del_flow_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x847675c2 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87b7ef61 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88bd6ed1 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89e15be8 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8dc3dd51 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91cc77cf mlx5_core_create_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98238d7f mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2ba2462 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3389764 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa40b23a0 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabfd0a57 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2039a09 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2201355 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd3bf681 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc387e236 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc70bea40 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd31a2fa mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce7ffd89 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1133818 mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8488f76 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda637a2c mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6173616 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe71ba2c1 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee5f294e mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4ce52bb mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5f74fe7 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7847356 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbd53d85 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc4530fe mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfed90677 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x00ae1665 mlxsw_reg_trans_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ab0c687 mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1e600ed6 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x24b7e6d2 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d07a992 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d47a658 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3247e4bb mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x39a96739 mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x668baa94 mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x72a05371 mlxsw_core_resources_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x92d688bd mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x99a3ec72 mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xadb907e2 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaf1835c8 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5ff38e0 mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb8c0bf13 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbcf544d0 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xec51e246 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xfeacab03 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1e175339 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7a93c181 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc79ab2c9 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xdbfe3175 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xdcaaf6f0 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x2b1c0550 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x458cf6b0 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4f8d0a3c irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x50da7a28 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x793262f9 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x945506b2 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa3c5b440 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa9d12726 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd013c5cb sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xffaa38c7 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mii 0x04e8c25d mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x2891145f mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x7c5a8649 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x99fec885 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xa580db1a mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xcb99d3d2 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xcf129f5e generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xdab009d1 mii_link_ok +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x32740879 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x82eeae54 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x6492d8ea cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xd0ad8670 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency +EXPORT_SYMBOL drivers/net/ppp/pppox 0x03ec2489 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xa69fd8a4 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe5345a26 register_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0xaa73224b sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x137671df team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x47c928c2 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x78f1cca9 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x7e47df2c team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x84430fee team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x93a9012f team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xecdd0768 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xf70fda27 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x1715b9ae usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x3eee5965 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xadf69fd3 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0db2545a hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2715e665 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x44db5f63 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4e2f031f register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x73fb3bf9 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x944bcaa5 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa729894f attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa79b13c5 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc3ee90a4 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc88c2c3c unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xecab809b hdlc_close +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x76531592 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x12eaa11f ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x18b14043 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x19b74709 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x29b43925 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x303bae11 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x33d79c3c ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x36743e81 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x471e6ac2 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4b97e568 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4e019234 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x645c3d62 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbb847ee0 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf27312db ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0397d139 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x05c36d47 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x303d20cc ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x56474418 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6cfc80a1 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8b6cb518 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x93da792f ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa2381211 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa5a58fec ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb4f3261e ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc02c6801 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc1acdb79 ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc5227d7a ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe233b3f6 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe9aa1efe ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfc9cfb72 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0644e860 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x12625e7d ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1b9d6054 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x27ab0020 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3750f431 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x45517942 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4f6e0687 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7e382d2d ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x88c09eee 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 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbf8b5929 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xeda3c56d ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0487aad0 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x059c48ff ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1658b53f ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2ade145e ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2f430ee6 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x31af785b ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x399dd2d4 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4787381c ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x508f2db4 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x65a02960 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x716cbbac ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7bab3822 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x874d4e56 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8d3e8e81 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9216995b ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9468c6a8 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x97d42a74 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa6ee4384 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xae86a4fd ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbe844d7f 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 0xd69df0fb ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdb61ebeb ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe5974148 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00611042 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01931d11 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x034442f2 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03c6b077 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x070fc00b ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x088fe19a ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08b84a71 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x127dddf3 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12ae6301 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e32aaaf ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f0164e8 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fa60da1 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fdc47e1 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22ecf443 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24238cbc ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x266a966f ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29c9de59 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b37594a ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e9f4bbc ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2fd79ad7 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x312453e1 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x313bac36 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x327e6059 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33aec0b3 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3502ed43 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39b23d9b ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39e04780 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3af3f389 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ca7f290 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f4a2c85 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4035b7c9 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47d25ced ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c394b9e ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d44a3e8 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51a0e62b ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52f7df9c ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57234e39 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b5f4288 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61171457 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63d0514c ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x647fdd1c ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66ec4fa3 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66ec5419 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6abfbd1d ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6acbe4c6 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b5a7713 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b6196c5 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71f3a793 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x728392f4 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75205d85 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79b6f6a7 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b6df09c ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e67a565 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fe868af ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x883cdaa6 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b2e0192 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8cd655e0 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d1f9d45 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9000d0ca ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9063ea5b ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x907f16e3 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90cf55b4 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x919cdba9 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92c1e033 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93d00cd4 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98ec9872 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99b09523 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e1463d4 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4922dd0 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4c1588c ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4c17ac6 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab219052 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae480d50 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf75a7ac ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb19d0b0f ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3cb14a9 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb61c6fd1 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb667aa94 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba7259ed ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd7888b7 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0bfd947 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2d710fa ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5169622 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc55c8043 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcad599f3 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xccfb8320 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd03cc01a ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd425debe ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5829132 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6eb6b28 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdafb6a8f ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd3e3fc5 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdeb8c329 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1b10a4d ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1b3c465 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea533f5b ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea9b1f34 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb3d8a1b ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb5cb62e ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0e1e266 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2ac2a69 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf476929c ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf53fbc92 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9d910e8 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff3a916a ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x01342a44 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x44798d95 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x47326389 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0da46c8b brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x33f5e95e brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3871f238 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x492a5b2a brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x569806bb brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5bcff077 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x60d2b4f2 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x629bfa2d brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x843bcb3b brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9878121e brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbceaaf05 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe368e7d6 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf515669b brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf6b34068 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x3d880d49 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x445c3723 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x76f43c7b stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x158637a4 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x195f2f4b libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1d3ee357 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2248405c libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x29c0362f alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2b7a3de7 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x33b2286d libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x54be7f52 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x552db474 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x65ad02ab libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x739be21b libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x765c8a35 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x800ebf08 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8bf35bc4 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa33a23d3 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa420e593 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbcfd95f1 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd643c9d4 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe5002f22 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf519ac4c libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfb7caf49 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x01b1efe9 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02a611d3 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0345621a il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x044918de il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x05abc187 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x069f1da5 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0e617c87 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0fcc7eb6 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x12f86b59 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x14226d58 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1552f6c0 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x15c91bbf il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x17f79f78 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x18424b65 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f4e43fb il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x22c60aa0 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x29634244 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2dc74b3b il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2e0aba7b il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x302e392f il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3c9a04a7 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3fb6da58 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x43b7244a il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x45072897 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4beebf95 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4cb31b74 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4ce144d5 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4ddaa1ea il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5290a4d0 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x52c30d81 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x546caf83 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x554f8ea8 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x567eb703 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x56bbcd83 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x571d49a8 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5785942d il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x59a6a809 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5be4b4ce il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f5782a0 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5fc95193 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x605ae821 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x619d9257 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x61f1eea6 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x686c6beb il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a153521 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ad37b45 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6db48644 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x701ec6c8 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x744b02d7 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x75eb325d il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x77ea65d5 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x789f5d08 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a58b9b3 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x80f6aec2 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x835c1d38 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86dbadde il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b8ef1d0 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ba20840 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ca49845 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8cda3ec9 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8e2180a8 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8e99ef15 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8eab9396 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x918082f1 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x95ef94c8 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x98ae1c2f il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x99767e62 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c8973bc il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa52c004b il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa97ecbe2 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xabdd9427 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb1dc189a il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb4e4d3be il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb9a5729a il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc835557d il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc9f1b583 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcead1ad6 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcff50c84 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd0ed88d2 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd58c958e il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd6b8b01e il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd725e6cf il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7b145a2 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd8bdcded il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xda91bf43 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe53c7d12 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe6b12cd0 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xebd25ab3 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xecde3195 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf0300fb9 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf19c6840 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf2124ef8 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf55e448c il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf8874d75 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf9f1ea04 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfafc026d il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfbed0169 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe200eb2 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x47bda8f9 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4e0c2b0e __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8b0e519b __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd031d4c3 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe4d855cc __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf050905c __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xffe01d38 __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x07bb6eba hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13a23a21 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x166647ca hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x204705d6 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2cfb055b hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3025f2b6 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x323a0919 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x36226afb hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x386da417 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x38aa2bd8 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x39fd9042 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x48a0884e prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4958ad03 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4cbb414e hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4f4acb61 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x785d85b4 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8915fb1c hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9423c1c9 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x94ce68ab hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9ee82474 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa32f5aac hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xaab958e7 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xae4719ff hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcae54017 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd685722b hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x14f9d2f8 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1d8f6a94 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1efcd61a orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x26e16b8f orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x54d38124 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x56acb6e5 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5dea5bf1 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6b72398a orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6db4f91f orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8e4bbd74 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9166f444 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9a43c88d __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa1b01384 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa1e544a5 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa3499736 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xaf56aae3 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf4b428af orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xe820d979 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x084169d7 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0ad234fc rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0b346b70 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x10a97f08 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x14d7d79f rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x22914e2e rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2605c332 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x261700e4 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x28696651 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x28e47b5c rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3753c442 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3b46ad30 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3ea3c913 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3f45e022 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3f53f7ab rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x40b4b63b _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x417f80e4 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x448c5c4e rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x49614e65 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x57aa2b3c rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x589c454a rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x68cfecbf rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7ad3601e _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7afd2f81 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x82b16beb rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8ba706d4 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8cb69318 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9a21a6a5 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9f950efe rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa08b2338 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa9a594fc rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaedd7f22 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb2340b35 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc02ce4ea rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc36d9355 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdf69ed7e rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe40f4ebe rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xec6f2370 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeec0d9f1 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xef890826 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfecd9b9a rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x007ecdb9 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x4a7d4516 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa9fd1355 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xf6ac7ba9 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8977186a rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x954beee2 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xb7e1c7fb rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf6166a51 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x04f46861 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x083d98c8 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0f2222ed rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x141c2d4f rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x18756e6d rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1f142442 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x26a27e22 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3cf64945 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e97f2cb rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4164388e rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x56dfc5d1 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x62a33d33 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x657ecd82 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x689282bf rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x702ceb6b rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ec3ba38 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90c202dc channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97dd18dd rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9fc1d4a0 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa36e9076 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa66f9f32 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa7e2e01e efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xad041b34 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaeb59d47 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb2b7cc6b efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb75eb444 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbad8e4ac rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe14dd024 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe68a3bb1 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe824c74f efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xef2e154b rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x1adecef0 fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x52177aa4 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x5ed5ddc9 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x68bb16eb microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x88894451 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x3b58852f nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xbc949b0e nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xdd5bab86 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x5f9ddd21 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x0d203bc6 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x66c8efa1 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x2cc47974 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x414e3d08 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x778716d2 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x28337211 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x30017324 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x38c63ca8 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x96b42ee4 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9ca2d380 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa6103fc9 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb01fc0b0 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc4ee460e ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xed540c23 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf8be12ab ndlc_close +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x01664ec4 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x090f5298 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0a8d2684 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1d06ac1e st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x24189ce8 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x252c1e33 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3e862def st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4fbe6f65 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x709300ba st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7de10a1a st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x83adedb8 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbd882c3a st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc3c957cc st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcbebb526 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcfe9f3ab st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd94ca658 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe6c8dc4d st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeee2f5ae st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/ntb/ntb 0x00534944 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x06c54f76 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x13aef170 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x61654eb5 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x65a81a53 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x9d44f95a ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xd52c39a9 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xf66c50d9 ntb_clear_ctx +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xac9bf814 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xcccb563c nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0xb1a840d4 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x0397f1cd parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x20c77a28 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x2924a121 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x2b48280c parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x2d2b842d parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x3b12eb34 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x402bf05e parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x4134b293 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x530d9df4 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x7144c048 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x74312b39 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x74b7668f parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x77e6d498 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x79d1d7fd parport_read +EXPORT_SYMBOL drivers/parport/parport 0x7d7d4ab0 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x7d8d7541 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x85733a3d parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x9605cf15 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xa1f8a75c parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xa360b765 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xa56134b2 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xad40d0fb parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xb9ee19a8 parport_release +EXPORT_SYMBOL drivers/parport/parport 0xca14eef2 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xce861394 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0xdda9c3aa parport_write +EXPORT_SYMBOL drivers/parport/parport 0xdfbadd6f parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xe23da142 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xee30f8a4 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xf31e3717 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xf398b9da parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xf5fb15fb parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport_pc 0x78758ee4 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xf55fe505 parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0292a4df pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x119dd1ed pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1834f014 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1da7eac2 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2758a7b7 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3ae13446 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x526ece93 __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6e4ead0b pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6ef6c669 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x82af0c25 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x91f225a2 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9a82ec69 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xac4375c9 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb3f3b375 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xcb840c09 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd617ff2b pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdef5aeac pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe1493d1e pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe50c30b2 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1e993ac6 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x22654c44 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x26299e87 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3cbc308e pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x46de1c30 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5244d4ab pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x70443d1f pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7c56ef58 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa148f371 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb65086f0 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf2f6563f pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x24e914fe pccard_static_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x7ca924cb pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pps/pps_core 0x622d55d0 pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0x6e943b09 pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0xb5966b48 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0xbddfec98 pps_unregister_source +EXPORT_SYMBOL drivers/ptp/ptp 0x0732e6c5 ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0x0d0f4db0 ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0x83017629 ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0x989f4fd4 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0xc8ce3a95 ptp_clock_register +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0f8dd3d0 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x436233d7 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4754abe6 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x56c28a62 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x6306402b rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x78bae7f6 rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x8f8048ec rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xaedf1e62 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xe4ab088d rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf88ca806 rproc_da_to_va +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xc0b9ae8f ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x8d292237 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9a498908 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd616fcd1 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd7b8f47d scsi_esp_template +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1503d1eb fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2ed4a944 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x606af065 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x736217db fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7f1fc060 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x86636266 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xaf91aff5 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb0c18786 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb283d81d fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc5c5e98a fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe7d8cb53 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe9932511 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x07d01559 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c8c727e fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0d85868b fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0f7ba6c6 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11e74895 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x138644d7 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x150f879c libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x18e35b52 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27f1fc0a fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2acf740e fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x318fa135 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3fa12f9e fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x43dd2336 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x47435fd5 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4e4b75dc fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5bd8e1b7 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5d864d84 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5e0ff348 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6813c970 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6995ceec fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6c9ff9b7 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6cbb2228 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6dc83bdc _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e37d961 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7057955b fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7096543a fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x75ff47d2 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x77dccbb6 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x79d377b5 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ce48ac9 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f48bb81 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x817c17fd fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8669013f fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8751561a fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x87763839 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x88492b9f fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa219001b fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa4004db8 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa831f68d fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xabe5f837 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb89eea86 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc26a266c fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc583e5b6 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd93b2961 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xddf3e409 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe8d35dbc fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe93f5531 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0b4dae9 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf52ce8d2 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd1091d2 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x1948e02a sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x2db8f046 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xcdfd8b2e sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xffe533f1 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb895e8e8 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x018207ad osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x199ad307 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2494fd1f osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3cdf6443 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x43941c16 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x459832c0 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x494ad9b4 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4b35402c osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5d77b1d3 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6048d29c osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6794593d osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6edaf1c6 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x70829cf4 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x74ca02a8 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7cac3b3a osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7d064c09 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8154cf14 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8273a731 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x86fa0678 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x88af2af3 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9c09a32f osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9e2b1275 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb66c8397 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb922efab osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbf2ded55 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc7e2fff2 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd24f3390 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd26946ce osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd6a4a8d9 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe9b4ba68 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe9d11f4f osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf12aa1f4 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf3060f99 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf30ee7e8 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf9b8a7eb osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfcf983ea osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/osd 0x3dd3ee78 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x7066f8d4 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0x79317965 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xa674334a osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0xb2f5f840 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xc155904a osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0045ef13 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x28fc123a qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2e09cbce qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x30e0b4c6 qlt_put_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3e010643 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x63c1513e qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x71cb5c49 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc78c420d qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd26ddb70 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd8c9d46a qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xed967be5 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf5276371 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x20473e2d qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x4f977365 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x67bd01d0 qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x78aca12c qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x99f60f13 qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe355cb12 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0x66abc346 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xbadf6898 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xecfd4417 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x007a50ae fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x206e8d0e fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2f0f3d63 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3f330d75 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5ca5e47d fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x65ad12ea fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x76491fb0 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x986ece99 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xad0211ea fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe1810fa5 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe294c5f2 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe2ecfb22 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x056c9a19 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x06896776 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x09a6b5f8 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x20029cdc sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x217793ab sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x26188078 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2756ca2b sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2d8244da sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3ca85fed scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x485029af sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x498de1dd sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4b5032cd sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x648f6386 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7e619c2d sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7e7ac956 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x87b9afd7 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x894601d4 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8c1536c2 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8c2074f5 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8f2ae0b9 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x94153ddd sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa065743f sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc43a20b7 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc5535100 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc65c3af8 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc67ed5d4 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdb3a6d2a sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe73d73a5 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xed0c486c sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x022c250c spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3a738c87 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa9a834b6 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xdafc93bb spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xf23cff58 spi_dv_device +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x95461e36 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xa0dc386a tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x0f91da42 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x1ff92f8d ufshcd_read_string_desc +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x4f827ac8 ufshcd_query_descriptor_retry +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x59baac12 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x7e8eed4f ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x85054cbd ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x98f77855 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x9d8eaf6d ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xb1474353 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xe0259727 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xea269ae9 ufshcd_read_device_desc +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x22015ce8 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x5a37488f ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/ssb/ssb 0x0fdd2bee ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x243c477f ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x47353f0b ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x47509d60 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x57001c39 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x5a21de0c ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x5a9fd6da ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x62fce98f ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x6c62ecb4 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x6f2b0e86 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x77475375 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x7a2f6188 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x8f98d550 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xb0b7e3b9 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xb3f93160 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xb90be12e ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd2dbe0b4 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xd392b350 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe631021a ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xe78a9e47 ssb_bus_powerup +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0c5e553b fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2e91a7cd fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3342ac77 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x382a9aea fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x39ffbd8b fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4833a1aa fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4a0cb73b fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4dafada8 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4f105dfb fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x50bcc978 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5b21d935 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5ebb814c fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x651d7158 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x73da4109 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7813eca5 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7b84149e fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8cff52c4 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8e3cac7d fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8e456d2c fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x95f691ce fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa951d594 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xba94ac40 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf4e77c11 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf9ce320f fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x70a45ff1 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xe6e66b23 ade7854_probe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x000c507f libcfs_debug_dumplog +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x01fef7b4 libcfs_register_ioctl +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x06443cdb cfs_wi_deschedule +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x06b4f415 cfs_cpt_set_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0aae8493 cfs_cpt_number +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0b15026d cfs_hash_for_each_empty +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0de6c369 cfs_cap_lower +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0f5eff79 cfs_percpt_number +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0f7fcd44 cfs_cpt_set_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x1c97b722 cfs_cpt_set_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x1e8cdb47 cfs_race_waitq +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x20ef56fc cfs_cpt_set_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x21568600 cfs_cpt_of_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x22924b94 cfs_hash_for_each +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x23e25c18 cfs_wi_exit +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2663147a __cfs_fail_timeout_set +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2771fd3d cfs_cpt_unset_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x286ce5ba cfs_hash_bd_add_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2dbe54b2 cfs_trimwhite +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2fe97a46 cfs_wi_sched_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3009b1a2 cfs_hash_del +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x30e15cc9 cfs_hash_bd_peek_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x31fc5082 cfs_crypto_hash_update +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x32ae7fbc cfs_cpt_unset_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x361e82d4 cfs_firststr +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3658dc0c cfs_hash_add +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x37175882 cfs_expr_list_print +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x377f93fb cfs_srand +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3848f4de cfs_cpt_unset_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x39385fd2 cfs_percpt_lock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3c1285bd libcfs_subsystem_debug +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3d5e6098 cfs_race_state +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3ea730c0 cfs_gettok +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4062f92b libcfs_run_lbug_upcall +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x411db754 cfs_crypto_hash_final +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x438e735b cfs_hash_for_each_safe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x44839bbb cfs_rand +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4a99af72 cfs_clear_sigpending +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4d3b4eaf cfs_fail_err +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x52b9c7e9 lbug_with_loc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x53e92adb cfs_cpt_table_print +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x58a7ee00 libcfs_catastrophe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5c013b81 cfs_expr_list_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5d73c3e3 cfs_expr_list_free_list +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x62289d65 cfs_array_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x66ea4400 cfs_hash_is_empty +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x67398404 cfs_wi_sched_destroy +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x677a5bd2 cfs_cpt_online +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x67ddedc9 cfs_hash_getref +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x6a59b79b cfs_cpt_unset_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x6e6b8b14 cfs_hash_hlist_for_each +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x71e3804b cfs_crypto_hash_digest +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x71f662a3 libcfs_debug +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x76e68368 cfs_hash_debug_str +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x7f7b182a cfs_hash_for_each_nolock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x7fda989d cfs_fail_loc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8151c3aa cfs_cap_raised +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x865483a9 libcfs_kvzalloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x87e201ab cfs_hash_bd_del_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8840f591 cfs_block_allsigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x890ef1fb libcfs_kvzalloc_cpt +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8ab81255 cfs_cpt_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8b8f321d cfs_crypto_hash_speed +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x92e7c30b cfs_cpt_current +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x93896a8b cfs_crypto_hash_init +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x940ed192 libcfs_stack +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9879b229 cfs_get_random_bytes +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x98f0e065 libcfs_deregister_ioctl +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9c3aae35 cfs_hash_size_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9c6d26c0 cfs_cpt_table_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9e420643 cfs_restore_sigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9e8fb7ad cfs_percpt_unlock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9f82f712 cfs_trace_copyout_string +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa2b68b2a cfs_array_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa6ff1e5c cfs_cpt_spread_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa8a489ea cfs_cpt_table_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa9088531 cfs_expr_list_values +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa9dc74e2 cfs_trace_copyin_string +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xaa16effe cfs_crypto_hash_update_page +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xad019238 cfs_str2num_check +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb8354b83 lprocfs_call_handler +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xba8132b3 cfs_hash_for_each_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc0984514 cfs_percpt_lock_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc0ea7fc0 cfs_expr_list_parse +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc1a4f1b0 cfs_percpt_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc2911d96 cfs_expr_list_match +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc86ee1b1 cfs_hash_bd_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc93905cf cfs_hash_cond_del +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xca7a4ee7 cfs_hash_add_unique +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xcb6ff89a cfs_cpt_table +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xcf61bacb __cfs_fail_check_set +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd1fefbcc cfs_hash_lookup +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd3f69fc4 cfs_hash_debug_header +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd688fe94 cfs_hash_findadd_unique +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd96f406d cfs_cap_raise +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd99d9f64 cfs_hash_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xde9c00c4 cfs_cpt_weight +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xdf2789c0 cfs_curproc_cap_pack +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xdfecb98d cfs_block_sigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe2f91ce3 libcfs_debug_msg +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe3bf6897 cfs_percpt_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe75794eb cfs_cpt_bind +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xea411f63 cfs_block_sigsinv +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xeceac781 cfs_fail_val +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf03bdf11 cfs_wi_schedule +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf3565b71 libcfs_debug_vmsg2 +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf47e16aa cfs_hash_del_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf52e4f4e cfs_hash_rehash_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xfa4531a2 cfs_cpt_clear +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xfa756153 cfs_hash_bd_lookup_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xfd493ddf cfs_cpt_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xfdf00c70 cfs_hash_putref +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xffcad24b cfs_percpt_lock_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1366b7ac LNetSetLazyPortal +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x145b23d0 lnet_register_lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x15509c67 lnet_sock_getbuf +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x15a07144 lnet_sock_read +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x18a074cb lnet_sock_getaddr +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x19670622 LNetNIInit +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1a60d439 cfs_parse_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1cc1cfa1 lnet_notify +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1ee5f15e lnet_ipif_query +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1f3bfaa4 lnet_copy_iov2kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1fd8c3da lnet_sock_setbuf +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1fe16fd5 LNetGet +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x206c7519 lnet_unregister_lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x20c227bb lnet_net2ni +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x2aa9953d lnet_cpt_of_nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x2ac93e90 lnet_connect_console_error +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x33202a6c LNetGetId +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x3c779ee0 LNetPut +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x3f4f5b46 LNetNIFini +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x473ad33b LNetDist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x48f163c6 libcfs_str2anynid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x49993ea3 lnet_extract_iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x50345570 libcfs_str2net +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x58485baa lnet_set_reply_msg_len +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x58a1ca89 LNetMDUnlink +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x5fee352c lnet_acceptor_timeout +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x61f784b2 LNetClearLazyPortal +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x64cdea3a LNetCtl +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x66d449b1 lnet_ipif_enumerate +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x722c76e5 LNetMDAttach +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7d59a7fe LNetMEInsert +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7e93080c libcfs_nid2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7ef21bee cfs_nidrange_find_min_max +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x83d795e4 cfs_match_nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x85a135ce lnet_parse +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x8d233545 lnet_finalize +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x8e18dc7c LNetDebugPeer +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x97f5966b libcfs_lnd2modname +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x9de986d3 LNetEQAlloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xa34229e2 lnet_create_reply_msg +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xa56de08d lnet_ipif_free_enumeration +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaa414970 LNetMEUnlink +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaa9b477e LNetMDBind +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xade657cc libcfs_next_nidstring +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaed3e209 libcfs_net2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb0a85cb8 libcfs_lnd2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb20da2b1 lnet_copy_iov2iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb4aa61f5 lnet_kiov_nob +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb75f7953 LNetEQFree +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xba5566d2 lnet_acceptor_port +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xbf0760a2 LNetMEAttach +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xc5f19421 lnet_sock_write +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xccc45639 cfs_free_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xcf4eb544 cfs_print_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xd0b79aac lnet_copy_kiov2kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xd235ad41 lnet_connect +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xdc27e796 lnet_copy_kiov2iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xdee5a3c9 the_lnet +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xe9109fc9 lnet_extract_kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xeaeb6565 cfs_nidrange_is_contiguous +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xec1f56d5 libcfs_str2nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf1b316bf LNetSnprintHandle +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf5dc6337 lnet_iov_nob +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf8a8644b libcfs_id2str +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf94025d1 libcfs_str2lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfa106804 lnet_counters_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfe7ca17c libcfs_isknown_lnd +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x1c4bb5f9 LU_OBF_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x375e6f8d LUSTRE_BFL_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x7323df7d client_fid_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x877d5080 seq_client_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xae61cff5 LU_DOT_LUSTRE_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xb47fecf2 seq_client_alloc_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xc997a02f LUSTRE_SEQ_SPACE_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xecee2727 LUSTRE_SEQ_ZERO_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xf1658fdd client_fid_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x09acb026 fld_client_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x0efa4193 fld_client_add_target +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x3c91d4ea fld_client_del_target +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x40ed79ec fld_client_lookup +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x97d207ef fld_client_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xafb5bbea fld_client_debugfs_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xfd113ed5 fld_client_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0x65029eca ll_iocontrol_register +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0xbe83c6a0 ll_direct_rw_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0xcd3cde92 ll_iocontrol_unregister +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0xebc180ed ll_stats_ops_tally +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x08fe07f1 lov_device_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x655cf006 lov_lsm_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x96ec6b8b lov_read_and_clear_async_rc +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0xd64ac20d lov_lsm_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/mdc/mdc 0xbb540fd3 it_open_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/mgc/mgc 0xdc287f95 mgc_fsname2resid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x006988fd cl_offset +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x02529618 cl_io_iter_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x02e17f70 llog_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x035852d0 lustre_swab_llog_rec +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x03b37a9c lu_kmem_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x050054be lu_context_key_quiesce_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x07aa68bb lustre_swab_lustre_cfg +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x07d45876 obdo_set_parent_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x083942ff class_del_profile +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0b46f9a1 lu_context_key_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0ba2b506 class_config_llog_handler +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0c378d79 lustre_swab_llog_hdr +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0c70b947 lu_device_type_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0c70eb2d cl_page_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0cea9247 lu_site_stats_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x11495519 lprocfs_write_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x114e79aa class_config_parse_llog +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x12a40e11 lu_context_key_revive +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x13bd11cb lu_object_unhash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x14452c77 cl_sync_io_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x15177d11 cl_conf_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x15720013 lprocfs_exp_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1642c6fa lu_context_key_register_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1711385b cl_sync_io_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x179f37cb cl_env_percpu_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x18d7d77e cl_page_list_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x191632cf lu_device_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1997c238 cl_env_percpu_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x19c2ae2c lu_context_key_degister_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1b5c1f1b cl_req_prep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1b709eae cl_io_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1d657762 cl_io_iter_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1e325ea2 cl_cache_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1e7c61ac class_exp2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1f95f461 lu_context_refill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x221826f1 class_parse_nid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x23d3e507 cl_index +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x24e00140 lprocfs_single_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x24e1671d lprocfs_counter_sub +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2547efae lustre_uuid_to_peer +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x275cdc7a cl_env_reexit +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x286860f5 class_handle_free_cb +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x297cf5e0 class_handle2object +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2afcd6ee lu_context_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2bb24ef7 lu_site_purge +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2d0028dd cl_io_sub_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2d104ae9 lprocfs_rd_server_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x31273951 obdo_from_inode +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3242ed35 obdo_cachep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x32456ae3 cl_page_list_move +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x328a16d3 __llog_ctxt_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x33712b44 llog_init_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3450c289 libcfs_kkuc_group_rem +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x360124a2 cl_page_find +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x369a3b97 class_new_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x36b56dba cl_cache_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3726f79e cl_lvb2attr +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x37ed6e4b at_early_margin +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x37f856dc lu_context_key_revive_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x397c4ead cl_object_kill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3a8e33f9 lu_env_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3bb1631d class_destroy_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3bb6265e cl_io_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3bcbdc4b lprocfs_stats_alloc_one +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3c1b9dba cl_req_attr_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3c494ae0 llog_thread_key +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3d768ba0 lustre_register_kill_super_cb +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3da2aa39 lprocfs_alloc_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3e6f3c71 cl_page_is_owned +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3ead2113 class_exp2cliimp +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3fbbbdae lprocfs_rd_timeouts +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3fc03ac7 llog_process_or_fork +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x400c1f2d lu_env_refill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4076cb05 lu_object_locate +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x42802463 cl_object_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x42f83f12 cl_lock_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x434f3349 cl_io_loop +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4368edd3 llog_close +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x44709781 lu_object_find_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x453b6ee9 lprocfs_wr_uint +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x46052168 lu_object_add_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4659a0ef cl_page_list_del +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x47671adb lustre_process_log +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x47b35f7d statfs_unpack +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4844c3d7 cl_env_nested_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4a41ccc9 libcfs_kkuc_group_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4ac58713 obd_connect_flags2str +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4b4bf117 lu_env_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4c190aad lprocfs_find_named_value +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4d4d6094 cl_page_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4d8d6dfa lprocfs_counter_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4e366bfe md_from_obdo +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4e6f6b7c cl_io_submit_sync +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4faa336c cl_object_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x500df6a1 class_export_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x502907f4 llog_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x50c7fc36 ptlrpc_put_connection_superhack +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x51612903 cl_lock_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x51854592 class_find_client_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5271624d class_disconnect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x53766549 cl_page_list_splice +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x53f58f8a lprocfs_seq_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x541bce20 lu_object_header_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x549d06ac lu_stack_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x552c0ad9 cl_env_cache_purge +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x558bec27 obd_ioctl_getdata +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x56a40806 cl_io_rw_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x570d09ae lustre_swab_lu_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x583654b6 lustre_common_put_super +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5873c295 cl_lock_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x599ba2e8 cl_object_attr_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5aa75a87 cl_lock_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5acd4042 lprocfs_rd_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5b96b054 cl_page_clip +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5d7c4f10 lu_context_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5d7cc75d llog_cat_close +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5e93341f lprocfs_oh_sum +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5fe97b73 block_debug_check +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6009e068 lu_site_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x606ed336 cl_page_completion +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x609ed767 cl_lock_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x613fed9b lu_site_init_finish +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x61e98df7 libcfs_kkuc_group_foreach +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x624ffe24 lprocfs_counter_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x62a3238d cl_object_attr_unlock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x637dfde6 cl_req_page_done +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x648a7f66 lprocfs_free_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x66554eff cl_page_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6734adbd lprocfs_read_frac_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6890d175 lustre_get_jobid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x691ee4f8 cl_io_read_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x69c42114 at_min +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6a12240e lu_context_key_register +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6c2b2771 class_new_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6e7dc533 cl_page_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6e93c0fe cl_object_find +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6fddd44a lu_device_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x712b757f cl_env_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7168706b lprocfs_at_hist_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x71d4c12e cl_req_completion +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x722ce419 cl_sync_io_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x742559b1 class_unregister_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x752168d8 obd_unstable_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x752f71a8 class_get_profile +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x756a77f3 class_parse_nid_quiet +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x75d63c3e cl_page_assume +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x76700b99 cl_sync_io_note +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x777d8127 lprocfs_rd_conn_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x77d2089a class_name2dev +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7802fcd7 lustre_swab_llogd_conn_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x789796a1 obd_zombie_barrier +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x78b8c236 class_register_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x79e2ebb2 cl_io_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7a14e5a3 lprocfs_rd_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7b4fc57b at_max +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7ce376da class_incref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7edcafa0 cl_env_reenter +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7fc079ae cl_page_delete +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7fe5561a obd_dirty_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x80082260 lustre_end_log +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8052f31b cl_object_header_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x806cc497 class_add_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8076b641 cl_env_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x80fc0ab6 lu_object_header_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x81742d89 obd_ioctl_popdata +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x831f656c class_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8446b9a8 obdo_to_ioobj +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x848f3f6c cl_io_unlock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8586d1bf cl_req_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x85a30547 class_put_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8729fcbb cl_object_attr_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x88122603 cl_lock_descr_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x88b87068 lprocfs_stats_collect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x891054f1 lprocfs_clear_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x89a71336 cl_page_own_try +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8b564e60 lprocfs_rd_uint +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8ba6e479 lustre_swab_lu_seq_range +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8d183c52 lprocfs_rd_connect_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8d26f805 cl_page_prep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8d7506a1 lu_object_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8dd4ef8b cl_2queue_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8ef7a50b cl_type_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8f67314c obd_dump_on_eviction +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8fc1f569 cl_env_nested_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x904074c4 cl_lock_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x91a1d9a4 class_handle_hash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x91d89035 obdo_refresh_inode +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x921518f0 lu_object_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x92e58479 obd_dump_on_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x930ca317 cl_page_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x93272afa cl_stack_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x93859814 lprocfs_oh_tally +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x93ffca5f libcfs_kkuc_msg_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x95735c6c at_extra +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x970a8c7d lu_object_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x97272961 cl_io_lock_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9767adce class_uuid2dev +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x97d03783 at_history +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x99a2b1cd cl_io_commit_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9a626d3e cl_env_unplant +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9b1ed9d8 obd_jobid_var +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9b2bb51f cl_site_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9c4366b5 cl_page_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9c551d23 cl_page_own +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9dc28ab7 cl_object_glimpse +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9de5b638 lu_context_enter +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9e7f8cfe class_import_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9eccc4c5 lu_site_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa1468140 cl_cache_incref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa160da4a lu_object_header_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa315bb6a lu_object_find_slice +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa44c625a cl_2queue_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa57a7903 class_unlink_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa5fb234f lprocfs_write_frac_u64_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa676d51f lu_device_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa6e559ec class_import_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa6fed4a5 cl_req_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa7e16614 lu_kmem_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa80db85f lu_device_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa82a3dd1 class_handle_unhash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa8ddd0c9 cl_object_attr_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa90b681d lu_cdebug_printer +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xabb41dc0 cl_page_list_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xac5a3d70 llog_open +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xad1b397a lustre_register_client_fill_super +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xae742baf lu_context_exit +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb01963a6 class_uuid_unparse +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb045e59d cl_page_discard +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb35519ed lustre_swab_cfg_marker +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb46896be class_connect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb4767c92 cl_vmpage_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb4f8ee63 lprocfs_read_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb58ce8d7 cl_2queue_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb7b7c9b2 class_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb88a7e70 cl_env_implant +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb88cb9ff class_num2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xba27f5f9 cl_io_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xba985283 lustre_register_client_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbacac922 lprocfs_write_frac_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbc73e2e9 class_name2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc0954007 lprocfs_oh_clear +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc097dbca llog_cat_process +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc0bf7ef2 obd_debug_peer_on_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc392c331 obd_devs +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc3f373a6 cl_object_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc5b0667f cl_page_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc633b098 cl_lock_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc7437256 cl_object_prune +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc8b32e2e lu_object_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc950628a cl_lock_mode_name +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcb0ab67f obd_max_dirty_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcbb78381 class_export_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xccd74142 class_devices_in_group +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd1d89feb cl_io_submit_rw +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd312534f cl_page_is_vmlocked +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd32c7892 lu_device_type_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd39b877d llog_process +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd4658c11 cl_page_list_move_head +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd4d7116a class_conn2export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd56a07c8 libcfs_kkuc_group_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd58fe5b3 cl_page_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd70fe669 lustre_swab_llogd_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd7bc8654 obd_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xda3ed6f3 lu_site_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xda5b1ced class_find_param +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdc071e0e cl_page_is_under_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdcc40af0 class_check_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdd9d2469 cl_page_list_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xde7d985b obd_dirty_transit_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe0c3e0c6 cl_io_start +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe2b357d7 cl_page_header_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe4497f1c cl_env_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe44a699a cl_page_make_ready +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe57b6b57 cl_io_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe5e2699b cl_lock_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe801e0ac cl_io_lock_alloc_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xea64da3a cl_page_unassume +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xeacec47c lprocfs_oh_tally_log2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xeb363e3e cl_site_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xec7d6b85 obd_timeout_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xed35e327 cl_page_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xed914856 lu_context_key_degister +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xee129b7a cl_2queue_init_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xeeb3cabb class_process_proc_param +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xef76f858 block_debug_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xef9292c9 lu_object_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf16cbf7d cl_page_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf1dea3af cl_io_is_going +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf2dc03b9 cl_page_list_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf3d7424f cl_req_page_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf461c6db class_fail_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf490d5f9 class_del_profiles +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf4c27d2f cl_page_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf677d107 cl_lock_enqueue +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf8e6c98e lu_context_key_quiesce +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf9e39837 cl_site_stats_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfbea0098 lu_types_stop +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfc1f4ea2 cl_2queue_discard +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfd68d17a class_notify_sptlrpc_conf +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfdbe1557 lprocfs_write_u64_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfde7d7f5 cl_io_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfe7f5708 class_manual_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfffc1f11 lustre_swab_ost_id +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00c6df87 ptlrpc_request_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00cb99c1 RQF_LDLM_INTENT_GETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00d95039 ptlrpcd_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x02d1244e sptlrpc_import_flush_my_ctx +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x03d2d9c7 ptlrpc_set_destroy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x048b59d5 lustre_msg_set_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x050cd54b ptlrpc_unpack_rep_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0515f93b RQF_FLD_QUERY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x06b3942b lustre_swab_lov_user_md_objects +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x071fc74a RQF_LDLM_ENQUEUE_LVB +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x08bb2d27 lustre_swab_obd_ioobj +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x08c03451 target_send_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x095587d0 lustre_msg_buflen +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0a3130b0 RMF_MDT_EPOCH +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0ac252b2 lustre_msg_set_jobid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0ac54708 lustre_errno_hton +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0b6fb951 sptlrpc_cli_enlarge_reqbuf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0bcacb5d RMF_MDS_HSM_USER_ITEM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0cf343dd RQF_LDLM_INTENT_BASIC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0d1ab14c ptlrpc_wake_delayed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0d9c1756 ptlrpc_unregister_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0de106e6 sptlrpc_cli_unwrap_bulk_write +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0ea83fb0 ldlm_namespace_dump +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0f8904c0 req_capsule_shrink +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x10a1a86d ldlm_error2errno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x115017f6 req_layout_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x11c7a928 sptlrpc_cli_wrap_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x12b6f5a3 ptlrpc_connection_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x12f08855 req_capsule_extend +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x130ab8b3 ldlm_extent_shift_kms +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x141926b0 sptlrpc_cli_unwrap_bulk_read +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x146f1a80 ptlrpc_req_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x14708afc lustre_swab_mdt_rec_reint +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x14d192db lustre_msg_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x152f066f sptlrpc_flavor_has_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x157bfe63 lock_res_and_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x15a3e4db RMF_GETINFO_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x16ca878a ldlm_completion_ast +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x172fb86d lustre_msg_hdr_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1747d8b3 ldlm_lockname +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x17950f60 RQF_SEC_CTX +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x181ce3fe ldlm_lock_set_data +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x18f35685 ptlrpc_request_bufs_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19108a0f RQF_OST_DISCONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19b1abf4 ptlrpc_register_service +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19c08934 RQF_LDLM_INTENT_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1a6a3ce9 RQF_OST_GET_INFO_LAST_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1a92ecab ldlm_lock_allow_match_locked +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1a9b76aa RMF_OBD_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1abd3258 RMF_SETINFO_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ace4b5f RQF_LDLM_BL_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ad6c330 RMF_EAVALS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1b6bd6fe target_pack_pool_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1b93276a ptlrpc_set_add_new_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1be21715 lustre_msg_size_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1c27d3ff req_capsule_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1c300d8e lustre_msg_get_slv +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1c38ad4b ldlm_prep_elc_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1dc2051d RMF_SEQ_OPC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1dc2aa63 req_capsule_server_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1de9c288 lustre_swab_layout_intent +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1e14029f ldlm_completion_ast_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1eb2a65f RQF_OST_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ee46b51 lustre_init_msg_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ee9eb3c RQF_MDS_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2096f5b5 RQF_OST_SET_GRANT_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x219391ec RMF_EAVALS_LENS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x22762e20 ldlm_cli_update_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x233790b5 RMF_OST_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x24aafdba RMF_MGS_TARGET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2585a629 RMF_SEQ_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2587513c RQF_LDLM_CP_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x268e2821 req_capsule_filled_sizes +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2692d1a0 ldlm_cli_cancel_list +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x269554ce RQF_LDLM_INTENT_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x26f99d16 RQF_MGS_CONFIG_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x276f6723 req_capsule_server_sized_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x285e5b99 lustre_msg_set_conn_cnt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x29aea909 ptlrpc_activate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x29e0869a sptlrpc_get_hash_name +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2a63a472 lustre_swab_ptlrpc_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2a8a5b91 ptlrpc_lprocfs_unregister_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2be5dab6 ptlrpc_send_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2c00c60d ptlrpc_sample_next_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2cec385f ldlm_lock_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d56f168 ptlrpc_pinger_ir_up +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d798316 RMF_MGS_CONFIG_RES +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e4562fe RQF_LLOG_ORIGIN_HANDLE_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e4ca396 RQF_LDLM_INTENT_UNLINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2f0e4f87 RQF_OST_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2f793215 lustre_swab_ost_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2fab3539 lustre_swab_ost_lvb_v1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2fd2f737 lustre_msg_set_limit +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x301d4fcd RQF_MDS_READPAGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x302937e0 RQF_MDS_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x307d07f6 ptlrpc_queue_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3090536b ldlm_namespace_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x313fd1c3 req_capsule_client_sized_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3209fc31 _ldlm_lock_debug +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3261b862 RQF_OST_SYNC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x32d601de ldlm_lock_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x32e1e658 ptlrpc_disconnect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x33e33793 sptlrpc_cli_ctx_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x33fec705 ptlrpc_request_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x35939a3d lustre_swab_fiemap +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x360e916d lustre_pack_reply_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3656dfd6 req_capsule_client_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3835ab4b RQF_LLOG_ORIGIN_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3858fb94 RMF_OBD_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x38c01799 RQF_LDLM_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x38fce533 lustre_msg_set_versions +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x392d0e78 req_capsule_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x39e9df4b ptl_send_rpc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x39f60a5f RMF_OST_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3a1e4bcb __lustre_unpack_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ab90f6e lustre_msg_bufcount +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ac00716 lustre_swab_hsm_user_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3b06b2b3 __ptlrpc_free_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3b6b7cba dump_ioo +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3bedb0c7 RMF_LLOGD_CONN_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c63e62b RQF_MDS_REINT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c8b16ab lustre_swab_ost_lvb +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ca50f33 RQF_MDS_HSM_CT_REGISTER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3d7dc5f9 ldlm_pools_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3dc47695 lustre_msg_get_magic +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f034caf lustre_msg_get_status +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f35a11d RQF_FLD_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f752e78 RQF_MDS_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x401b0165 sptlrpc_lprocfs_cliobd_attach +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x41008cef RQF_LDLM_CANCEL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x417930bf sptlrpc_target_sec_part +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43168488 RQF_MDS_RELEASE_CLOSE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4351e916 lustre_swab_hsm_user_item +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43705ee4 RQF_LOG_CANCEL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4396f8f8 req_capsule_set_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43d7efc8 lustre_msg_set_transno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x44036eda RQF_MDS_GET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x440c2a71 RMF_FIEMAP_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4481591d RQF_OST_SET_INFO_LAST_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45d05893 lustre_swab_lustre_capa +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45e30cea lustre_swab_ldlm_intent +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x46c42d14 ldlm_cancel_resource_local +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x47687d56 ptlrpc_recover_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x47ab4337 sptlrpc_target_export_check +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x47f5e903 RMF_MDS_HSM_REQUEST +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4a2a2cd3 req_capsule_server_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4a5a2416 RMF_DLM_REQ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4b6b3b28 client_obd_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e1706e5 lustre_msg_buf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e696b96 ptlrpcd_queue_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4eb03a6f ptlrpcd_destroy_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4f016020 ptlrpc_lprocfs_register_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4f290190 ptlrpc_start_threads +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4f766c3b lustre_swab_generic_32s +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x500be2dc ptlrpc_connect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x502791fd ptlrpc_set_import_active +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x50443f6a ptlrpc_init_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x50dd74f8 RMF_STRING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x514b3851 lustre_swab_ldlm_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x51e311e9 lustre_swab_ldlm_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x52a0fbb7 sptlrpc_conf_client_adapt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x52c62150 RMF_RCS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x53411557 RMF_DLM_REP +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x53587877 ptlrpc_pinger_add_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x53a4a004 bulk_sec_desc_unpack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x54876059 ptlrpc_unregister_service +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x555eb7fe RQF_MDS_HSM_STATE_SET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x57345943 ldlm_lock_allow_match +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x595ab175 lustre_swab_obd_quotactl +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x596582bf RMF_GETINFO_VALLEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x59c383a4 ldlm_resource_putref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5b6ba895 lustre_packed_msg_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5b91f911 ptlrpc_buf_set_swabbed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5c0bd8a7 sptlrpc_register_policy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5c6a3a83 RQF_SEQ_QUERY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ca1b491 lustre_swab_close_data +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5caae213 ptlrpc_next_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e0b19b1 RMF_CLUUID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e2b7558 lustre_msghdr_get_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e565010 req_capsule_get_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e6f435d RQF_OST_BRW_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e80f899 RQF_LLOG_ORIGIN_HANDLE_READ_HEADER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ec3284d RQF_MDS_HSM_CT_UNREGISTER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ef831ee lustre_msg_get_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5f96ccdd ptlrpc_connection_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5fc9a455 RMF_CLOSE_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x60265f6d client_import_del_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6042bc15 RQF_MDS_REINT_RENAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x604e2505 RMF_SWAP_LAYOUTS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x60cd26ad RQF_MDS_REINT_CREATE_SYM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x612dc155 ptlrpc_invalidate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x61646e1b RQF_MDS_SWAP_LAYOUTS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x61856c76 ptlrpc_request_alloc_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x618ad203 RQF_OST_GET_INFO_LAST_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x62aaae3f RQF_MDS_HSM_REQUEST +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6315dd4c RMF_LLOGD_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6352a62d ldlm_get_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6494ddfb sptlrpc_gc_del_sec +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x653723dc RMF_LOGCOOKIES +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x67089839 ptlrpc_retain_replayable_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x683243bf ptlrpc_set_next_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x685eeaba RMF_DLM_GL_DESC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x68f49e5e ptlrpc_expired_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6912990a RQF_OST_QUOTACHECK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6914944a ldlm_namespace_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x696ba811 lustre_msg_get_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x69c9f04d RQF_MDS_REINT_LINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6a3785c9 RMF_EADATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6d72828c sptlrpc_conf_log_update_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6efa82b0 RQF_MGS_TARGET_REG +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6fb92092 sptlrpc_flavor2name_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x703538e4 lustre_swab_hsm_current_action +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7169c309 req_capsule_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x725a892c RQF_MDS_REINT_OPEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x73109e69 llog_client_ops +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x73578f14 lustre_free_reply_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x74080be2 _debug_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x74840056 lustre_msg_set_status +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7486ea3c ptlrpc_replay_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x75a2c40d ldlm_put_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x75aa21bd ptlrpc_set_add_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x75e4ca61 RQF_OST_GET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7a832f10 RMF_CONN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7ab13169 ldlm_flock_completion_ast +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7b5b23a9 unlock_res_and_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7b6bba94 ptlrpc_req_finished +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7bbf8001 RMF_MDT_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7c4c6107 RQF_LDLM_CONVERT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7d1ecd7f RQF_LDLM_INTENT_LAYOUT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7d82f311 lprocfs_wr_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7dfb3c18 lustre_msg_clear_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7e491c2c ptlrpc_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7f0fba1d lprocfs_rd_pinger_recov +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7f5a1cc7 lustre_msg_set_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7f7f3dde client_import_find_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x80ecb4e3 RMF_MDS_HSM_CURRENT_ACTION +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8103f8b8 ldlm_pool_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x817d7f1f lustre_msg_add_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x818388ca ldlm_lock_decref_and_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x826d3c4f RQF_LDLM_GL_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x82f5cd55 ptlrpc_resend_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x837efb00 RMF_NAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x842c3373 ptlrpc_free_rq_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85135801 RMF_DLM_LVB +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85a9e0d8 RMF_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85eecf67 sptlrpc_get_hash_alg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x863db6eb RMF_HSM_USER_STATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x865c9a2a ldlm_lock2handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x876c2551 RMF_GETINFO_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x876fd2fa ldlm_resource_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x87bf7b3c sptlrpc_get_next_secid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8872f3d2 RMF_SETINFO_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x88fff52d RMF_CAPA2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x89f9edf7 RQF_MDS_REINT_SETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8a1ea476 lustre_swab_hsm_state_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8a257736 RQF_MDS_HSM_STATE_GET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8ac440fa ptlrpc_uuid_to_connection +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8b854254 lustre_swab_mgs_config_res +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8ba61486 ldlm_pool_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8cb62b52 client_obd_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8cb71d4b RQF_MDS_REINT_CREATE_SLAVE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d1ab900 ldlm_lock_dump_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d77ea75 lustre_msg_set_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8da3fca7 lustre_msg_add_version +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8e9abe4d RMF_GENERIC_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8f0aceac RQF_MDS_HSM_ACTION +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8f5dd3cc req_capsule_server_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8fec0451 lustre_msg_get_limit +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9113f109 ldlm_cli_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x919c4ce3 RMF_OBD_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x91cf58d3 RQF_MDS_PIN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9228392f lustre_swab_mdt_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9277ae5e RQF_MDS_REINT_CREATE_ACL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x937b1ee0 lustre_swab_mdt_ioepoch +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9553c633 RQF_LDLM_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9564a202 ldlm_lock_addref_try +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x956eb7db llog_initiator_connect +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x95a394e0 ldlm_pool_del +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x95d08f0c lustre_swab_mgs_target_info +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9660ace0 RMF_FLD_MDFLD +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x967bfd52 RQF_OBD_PING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x97521d18 ptlrpcd_add_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9798f2f1 RQF_MDS_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x980fcfdc ptlrpc_connection_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9999cf7a dump_ost_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9a258886 RQF_MDS_GETSTATUS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9a6f2f6d lustre_msg_set_opc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9af6a3ea ptlrpc_obd_ping +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9b2c10fd ptlrpc_request_alloc_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9b88f6ce RMF_NIOBUF_REMOTE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9bb5198b RQF_MDS_CLOSE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9c3f488c ldlm_resource_iterate +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9d7ea314 sptlrpc_pack_user_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9dc1338d client_connect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9ea09b8d ptlrpc_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9eb25474 ptlrpc_reconnect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9f69b431 ldlm_pool_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9fb088f1 lustre_swab_lov_mds_md +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa0b43425 ldlm_cli_enqueue +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa0cca66b ptlrpc_request_committed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa163f4c3 dump_rniobuf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa2244636 RQF_MDS_GETATTR_NAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa2ab4641 ldlm_namespace_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa2ba67ce ptlrpc_resend +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa3a5bef6 ptlrpc_pinger_sending_on_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa3d2a6ee RMF_CAPA1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa47787ef RMF_PTLRPC_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa4a2d089 RQF_OST_PUNCH +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa6c436ca RQF_MDS_WRITEPAGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa71e3b9f sptlrpc_get_bulk_checksum +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7a03774 ldlm_cli_cancel_list_local +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7e360b1 RMF_OBD_IOOBJ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7ea7375 ptlrpc_schedule_difficult_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7ec567d RMF_CONNECT_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9704f80 lustre_msg_get_last_committed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9c4658e lustre_swab_lov_user_md_v3 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9e40b00 ldlm_lock_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xab5754ce ldlm_cli_cancel_unused_resource +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xac944d02 __ptlrpc_prep_bulk_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaccf56ab ptlrpc_init_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xacd6a7d7 lustre_swab_ost_last_id +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xad3ec555 ptlrpc_lprocfs_brw +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xadbae988 ptlrpc_unregister_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xadecf116 ptlrpc_prep_bulk_imp +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xae9de7f4 ptlrpc_add_timeout_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf4e9658 RQF_MDS_SYNC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf50a0d6 RMF_HSM_STATE_SET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb0751fa4 RQF_LLOG_ORIGIN_HANDLE_DESTROY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb1b43d8a dump_rcs +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb291473d lustre_msg_early_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb4a7ecf3 lustre_msg_add_op_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb4e516fc ptlrpc_request_free +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb512ebc2 sptlrpc_parse_flavor +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb5743285 ldlm_lock2desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb61cb95a RQF_MDS_GETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb679caf4 sptlrpc_import_sec_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb68476df interval_erase +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb6aafd03 RQF_MDS_DONE_WRITING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb6f3d43d client_disconnect_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb727f8aa req_capsule_client_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb7b38189 RMF_MDT_MD +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb7caa4c5 ldlm_cli_cancel_unused +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb7e54097 ldlm_namespace_new +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb7fa3cc8 RMF_LLOG_LOG_HDR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb8acae18 sptlrpc_gc_add_sec +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb903634e RQF_OST_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb9b631cf lustre_swab_mgs_config_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbaa76097 lustre_msg_string +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbc1370dc lustre_shrink_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbd83bc44 RQF_OBD_SET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbd9ef599 sptlrpc_import_flush_all_ctx +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbd9ff38e ptlrpcd_wake +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbe124244 req_capsule_has_field +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbef769cc RQF_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbf98b86f RQF_MDS_QUOTACHECK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbffd4313 RQF_OST_BRW_WRITE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc01ae9a5 ldlm_lock_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc06c4670 lustre_msg_get_versions +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc0867da7 RMF_REC_REINT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc0cdf55e RMF_MGS_SEND_PARAM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc1a74b8c sptlrpc_unregister_policy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc2007d06 lprocfs_wr_pinger_recov +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc2b1af57 RQF_MGS_SET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc2be922a RMF_SYMTGT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc559a634 RMF_LAYOUT_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc60a60e1 RQF_OST_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc694be4b RQF_LLOG_ORIGIN_HANDLE_PREV_BLOCK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc75bd837 ldlm_resource_dump +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc763fabc sptlrpc_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc79b9c67 ldlm_pools_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc7a4885d lustre_pack_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc7ca8257 RQF_MDS_REINT_SETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc7e47564 ptlrpc_interrupted_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc813218a do_set_info_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc8f586a9 ptlrpc_connection_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc96547d6 ldlm_revalidate_lock_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc9b0ef87 ldlm_cli_enqueue_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xca5a81ec ptlrpc_pinger_ir_down +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcaa0be01 ptlrpc_at_set_req_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcaedb05e sptlrpc_enc_pool_put_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcb16107d ptlrpc_set_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcb2cc0cf lustre_swab_lquota_lvb +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xccf60985 lustre_pack_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xce86066d lustre_msg_set_slv +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcec513c9 RQF_MDS_UNPIN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcf9963db lustre_msg_get_op_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcf9aab6a RQF_MDS_DISCONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd0be1c8c ldlm_lock_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd1303bc7 ptlrpc_fail_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd1c39f23 ldlm_prep_enqueue_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2983334 lustre_swab_swap_layouts +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2e0d4eb lustre_msg_get_opc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd3dae408 ldlm_it2str +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd4ec84f9 ptlrpc_pinger_del_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd69e0a27 RQF_MDS_IS_SUBDIR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd6c3ebfb RMF_FIEMAP_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd7562f76 sec2target_str +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd7910326 lustre_swab_obd_statfs +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd8b91b3e lustre_swab_lov_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd8f06300 RQF_MDS_HSM_PROGRESS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd9561861 RQF_LDLM_INTENT_OPEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb1fb0a2 RQF_MDS_REINT_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb74057f lustre_swab_hsm_progress_kernel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb91402e client_import_add_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb9d5a6a lustre_swab_niobuf_remote +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdbe386aa ptlrpc_buf_need_swab +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdc285f9b ldlm_replay_locks +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdc956c57 ptlrpc_abort_inflight +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd0ffb04 sptlrpc_flavor2name +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd30d7bf RMF_ACL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xddb50101 ptlrpc_unpack_req_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xddc40a85 lustre_msg_get_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xde12d36b RMF_MDS_HSM_ARCHIVE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xde5061c1 ptlrpc_init_rq_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdee87192 sptlrpc_conf_log_update_begin +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdf701ae7 lustre_swab_fid2path +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe0cc694c RQF_LLOG_ORIGIN_HANDLE_NEXT_BLOCK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe40e0a50 lustre_msg_get_transno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe57bd972 sptlrpc_current_user_desc_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe5e8169b lustre_errno_ntoh +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe6336214 sptlrpc_cli_ctx_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe643998e RQF_OST_SETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe68a93ef ldlm_lock_fail_match_locked +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe6f0dc96 RQF_OST_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe7062b5f RMF_U32 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe72d135a ptlrpc_deactivate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe7512278 ptlrpcd_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe900c77d ldlm_resource_unlink_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xebb64e68 req_layout_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xebe3a7a6 sptlrpc_sec_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xec816c96 ptlrpcd_alloc_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xec939a00 RQF_MDS_REINT_UNLINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xecaa89d5 ptlrpc_request_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xed18041f ptlrpc_check_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xed1c10d6 ptlrpc_connection_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xedcb740d sptlrpc_name2flavor_base +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xef1aeca9 RMF_FLD_OPC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf1300275 _sptlrpc_enlarge_msg_inplace +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf15f44d8 __ldlm_handle2lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf277c125 RQF_OST_GET_INFO_FIEMAP +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf33eb1cb req_capsule_server_sized_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf3d44370 RQF_OST_DESTROY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf3eef7f9 lustre_pack_reply_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf43540b9 lustre_swab_mgs_nidtbl_entry +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf45085e1 sptlrpc_conf_log_stop +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf48f55c7 lprocfs_wr_ping +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf4be47b3 ptlrpc_request_set_replen +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf55c033b RMF_MGS_CONFIG_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf596e9ae sptlrpc_conf_log_start +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf607fc23 sptlrpc_flavor2name_base +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf617ab8a lustre_msg_get_conn_cnt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf697b756 ldlm_dump_all_namespaces +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf7408f84 lustre_swab_hsm_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf7ba40c0 RMF_MDS_HSM_PROGRESS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf870fed9 RQF_LDLM_GL_DESC_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf8f6aa6d ptlrpc_send_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf9051bd6 RQF_QC_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf973aa93 lustre_swab_lov_user_md_v1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf9f72dfc RMF_TGTUUID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfa51688d interval_insert +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfa80731a ptlrpc_mark_interrupted +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfb444a98 ptlrpc_prep_fcset +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfbcacfbb ldlm_lock_match +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfc15c259 ldlm_lock_change_resource +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfc2fa83f ptlrpc_del_timeout_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfd148bf8 RMF_LDLM_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfe6048ce ptlrpc_add_rqs_to_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xff2b5341 ptlrpc_prep_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xff89c8f1 client_destroy_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xffc807e8 sptlrpc_unpack_user_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xffe29c3f RQF_LDLM_ENQUEUE +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x08b13d4a cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0xd78d19ed most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x013aa1a2 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0538742c rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x07bd71f3 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x137fff73 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x176c4406 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1cb4516e rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1d005572 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2272576f rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x28c13fb3 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e571c1a Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3a9ceea6 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x45402ac4 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x459498f8 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x519114ac rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x54eb81de rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5839654a rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5841df99 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x63a7b5ec dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x63d32c55 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x66c11048 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x73b45918 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7448db51 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7db7f6f2 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7eca3098 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x83de1cd6 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x845d1262 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8492e56d rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x85e541d1 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8d61bcce rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9536555b rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa6c21e1b rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc18ab697 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc3a07a9a rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc3d8c049 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc80507bd rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcf0a24dd rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcf6141d6 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd106b2fa rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd54807b5 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xde755f62 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdea18fc7 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe3457afd rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe71f8313 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf0971e9d rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf2c557d8 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf765bb69 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf8d04532 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf95cf7fc rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfe4af47b HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xff53a057 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x038e9e7b ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1089cba3 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x118ba588 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x13c9bf64 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x14d692b9 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1cfd87bc ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1fff7c61 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x21415e5c ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2155e906 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x27ace207 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3100640f ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x36e033d5 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3c77cbc9 IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4948dcfc ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x49e65d62 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4bbe0b78 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5011cd55 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5439ba10 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5b335b59 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5f8ea539 ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6a0789ef ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x71415ba5 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x76e80d29 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x797b7cdb ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7c377991 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7d81646f ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x837114df ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8ae9635e ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x91983d39 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9277a4fa ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x96ce3150 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9bb81364 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9c462935 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa385a117 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa452b217 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb5ca8eef ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb8bcacdb ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbba2c1a7 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbd8f8dd8 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbf1ab89d ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0923742 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc39d7efe Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc8ae5257 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd1387014 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd8aa3417 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdbda3dc8 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf081f283 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf083089e ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf0dff9c7 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf2731485 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf3fe68f5 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf535da2f ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfa4fd0e7 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x04ce96a1 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x04dc1a7d iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x18d2e581 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x205aed27 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2a656e6b iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2c2d6c1d iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x46793d03 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4ad271fb iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x513404f6 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x55581554 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x581a0fa3 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5d297be6 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6167164f iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x64d59e63 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6550b92b iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65eb6cef iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6ac21484 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6b4957ee iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6bd2d10e iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x738a4a68 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x73c98343 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7624172b iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7e86be4c iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x80a1d2f3 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x824859f3 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa821ea9a iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xac077662 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xad1d683f iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb429f70e iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb5349d5d iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc61c6791 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xca78de8b iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcbb62955 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd06a70ce iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdb9d4f1f iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdc143054 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xddcd2ba0 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe6ff2830 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeb0b2503 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xed367e48 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xee8d4211 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf5d559be iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfa5f2306 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x02c12fb2 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x05d55881 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x0a200e73 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f7a2247 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x11ea1da7 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x1293997d target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x1dc8a8b1 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x2b4885d5 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x2bed0404 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x302f3e8f target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x32def5f3 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x33c8fd59 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x39067473 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x3b05478b spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x44c479e7 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x45718fe5 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x45caef46 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x46220e63 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4e459063 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x56149e2e transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x589b8fb9 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x58b1066f target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5c0e8974 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x5ffad52c target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x6b4c9912 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x71cadf8a transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x731e1659 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x747a4b59 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x758444d1 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x78181abf passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x7caeeebc target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dc95fbd core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x82b717c2 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x84700c36 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x902b41d4 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x9311212c transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9882a454 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9f3a4273 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xa0f47e1c core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xa134aa77 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xa271aa68 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xa7257cf4 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xa895a193 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xa9459279 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xae042b07 target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0xb05ff274 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb1fff837 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb4c22c49 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xb4e3aef9 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xb5d25aaa transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xbf643a74 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xc01419ff core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xc0a41275 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xc7d1ecd2 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xce560ad5 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xd293240e core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xd32aef37 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xdc40af14 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xdff82cac target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xe17b6187 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xe65ed659 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe9318cb0 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xea43d5cd target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf0f3eb3a transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xfac60dc6 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc012ba8 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xfd7e394d target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xfdf93b6e transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xfe1d9620 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x28adbd26 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x65ab0a8f usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xa71eafef sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x09ae7d70 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0cb48ab1 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1dfff6a9 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4a5629f7 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6f058da6 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7cb8cf15 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x84da2922 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x99f9c90e usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa16acb93 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb49f645c usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbef9e8a0 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd2fff609 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x12dfc06a usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xb68811cd usb_serial_suspend +EXPORT_SYMBOL drivers/vhost/vhost 0x0d246c70 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0x96d9d9c2 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3c71c418 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x5fedea44 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/video/backlight/lcd 0x6a6acab2 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x74428a6b lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xa0a7ab61 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xa347bfa4 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x15fd1990 svga_tilecopy +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 0x3d580a44 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x609a2b4c svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x81364b53 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x91df4815 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xbb10a60c svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc6baaecc svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x42936a0b 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 0x5475ff68 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x7c81c5c1 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xd510c1bd matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x01469c1a DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x25178cee matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x4a7f4589 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x9a2fb1b6 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xbf2bf223 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x908b1075 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x11ffc337 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xa5f6df95 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xba5bd827 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xd04d14b0 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x96a816d9 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xac526ffc matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x233df00c matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x5688a968 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x569a2f17 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7990a11c matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xfc261e2d matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x30d3fda0 mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x2714690d w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x4af43a3c w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x55eb08a5 w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xb5e79d86 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x0fddb38a w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xec01fbde w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xc88d9978 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xed919e71 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x71a05e2c w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x92d383f2 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x99097925 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xfef798e0 w1_unregister_family +EXPORT_SYMBOL fs/configfs/configfs 0x11fad05d config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0x3efacf65 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x3efc05fb configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x41ef3684 config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0x4f0c48b4 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x524a24e5 configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x5dc9476f configfs_depend_item_unlocked +EXPORT_SYMBOL fs/configfs/configfs 0x5e52608b config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x7229ab11 configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x848c2282 configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x9def25fe configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0xae8fda59 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0xbf13d0ca configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xcb07d7b8 configfs_remove_default_groups +EXPORT_SYMBOL fs/configfs/configfs 0xcee8f335 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xef21cc94 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xfd87499a configfs_register_default_group +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x4b1f2101 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x6fa3436b ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0x81776f23 ore_read +EXPORT_SYMBOL fs/exofs/libore 0x90861af4 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xac37929e ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0xad55eace ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0xb0945130 ore_create +EXPORT_SYMBOL fs/exofs/libore 0xbc4036ad ore_write +EXPORT_SYMBOL fs/exofs/libore 0xf43ff69f ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0xf81cb767 ore_remove +EXPORT_SYMBOL fs/fscache/fscache 0x0d9f8f8a __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x0f8129c1 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x15dd14dc fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x1a29a1fe fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x261e0fcd __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x3597fd38 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x3dc4ab28 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x3e13bec2 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x44eedc02 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x467fe0f6 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x5473f01b __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x64533828 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x6a42d0dc __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x6a9ed735 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6ea58a1d fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x72453d95 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7760dbd0 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x81e249af fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x83b4b635 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x844e4007 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x8e6cfe3c __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x93714e49 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x979d5dfe fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x9b8e4f14 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x9d2b6c4a fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xa7c0c350 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xa9b61d6d __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xaaf126be __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0xbc107e5c fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0xc10a1919 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xc1ffb248 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xd89ca303 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xd8a41370 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xdccdfc01 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xe1731e38 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xe42870de fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xe7ef8416 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xe82b4b86 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xe8e87d9f __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xfbab4d7f fscache_object_init +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x17333ab1 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x175ae223 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x4e38635c qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x62ad42d0 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x6b10f86e qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xefee0fbb qtree_get_next_id +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-itu-t 0x6d356209 crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x56329ecc crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd09b2cba crc8 +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x17ac3f72 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 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 0xed143f31 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find +EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put +EXPORT_SYMBOL lib/lz4/lz4_compress 0x0c222eb5 lz4_compress +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x682a23e0 lz4hc_compress +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0x7456cc61 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul +EXPORT_SYMBOL net/6lowpan/6lowpan 0x115dfa43 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x116087b6 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x6bd9776d lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x7318e7fc lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xa04930d9 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xb1698f89 lowpan_register_netdevice +EXPORT_SYMBOL net/802/p8022 0x71af0bff unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xcc70431b register_8022_client +EXPORT_SYMBOL net/802/p8023 0x8cb8b974 destroy_8023_client +EXPORT_SYMBOL net/802/p8023 0xfbefcdc3 make_8023_client +EXPORT_SYMBOL net/802/psnap 0x6c31f7c9 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0xb18b176b register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x046c2437 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x09be74c2 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x0f25a130 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x14f5cdc4 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x19594a65 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x1f6fce08 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x21743ed1 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x2dcd5606 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x336774ca p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x36d2a811 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x3773b05d p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x3aeaa2d6 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x4334f465 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x49ff8320 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x4f600aba p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x53d58a07 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x5416cbe2 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x552e8929 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x57cea7d3 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x5f37aa81 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x6f56753f p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x76af15c7 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x8006c357 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8c808dbc p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x8d75e83f v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x90cd9263 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x9ce2c828 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xa8a372f5 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xaf0e468a p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xb8b7a664 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xbbcbd632 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xbd7dd0b3 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc834371b p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xcb0a7684 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xdd575bb1 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xddc62d02 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe1d0f594 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xe28b16a0 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xed9149a7 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xee803ac3 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xefbd83b5 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/9p/9pnet 0xfee57c14 p9_client_stat +EXPORT_SYMBOL net/appletalk/appletalk 0x341c99d6 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xafced24b atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xc0705523 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xf0d6e89b aarp_send_ddp +EXPORT_SYMBOL net/atm/atm 0x24aac113 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x374c91bc atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x3ded3e22 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x40eb72e1 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x4850a3b9 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x4fd1940e atm_charge +EXPORT_SYMBOL net/atm/atm 0x54b9a1e3 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x5a395f6f vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x6c22f963 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x8f4ead04 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 0xb8d25355 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xe6baeba0 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xe9de068e vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x0aec81cc ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x15f12851 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x71c37ac0 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x8176ea59 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x93163cb5 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xbc66b298 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xbde79f5f ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xe2a5a33c ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xe9aaf0a4 ax25_display_timer +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0abee2d1 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x11c13e88 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1cfc3742 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x240ae79c bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2835e1ad hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2c5449b2 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2cfc13cf hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x31d21904 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x39cfb390 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4304709c hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x464e9fdd hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4c2b3394 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4d396084 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x538e9782 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x60c604f9 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x61232799 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6294554c hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x735bccbd bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x738f938e hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7abf581d hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7c111196 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7efaf42d hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x93dcd46b hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x95717b80 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9d31798d bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9e419ac1 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa2fba990 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xab1fac30 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaf2fec79 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb074597f bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb254f652 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb374fb52 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb9f453ac hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbfdf5fc6 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc03ab5ed l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc239bc0d hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd3ae7d8e l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd5894843 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xda2a33f8 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe269e9b2 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xea3929c6 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xef8d043a hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfd9c9774 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bridge/bridge 0x51b95fb9 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3d363186 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x481b37da ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x6275411d ebt_register_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 0x45eff41e caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x5fbc0953 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x7e7e9ed4 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x8380385d caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x9b8423a5 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/can/can 0x1bd098bf can_proto_register +EXPORT_SYMBOL net/can/can 0x2570a773 can_ioctl +EXPORT_SYMBOL net/can/can 0x319e81fe can_send +EXPORT_SYMBOL net/can/can 0x3efccc76 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xa0d306c8 can_rx_register +EXPORT_SYMBOL net/can/can 0xdeddc387 can_rx_unregister +EXPORT_SYMBOL net/ceph/libceph 0x0139a0fd ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x06bfc778 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x07114a06 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0ebeee25 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x0edb6f2c ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x1075b06a ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x119a6e41 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x126ccefa osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x1536b9fc ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x173c214f ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x17f8bf64 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x1c7adea7 ceph_file_layout_from_legacy +EXPORT_SYMBOL net/ceph/libceph 0x1db4c37a ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x1e322090 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x1f5b53b4 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x20b2db61 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x23f6eaf6 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x276700ca ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x2a027c70 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x2c02df5f osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x2cfeb43b ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x2d2273cf ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x2db717f3 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x2fafdfce ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x309474b7 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x31b64f54 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x3261eb1c ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x3a4b4655 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x3a6953cb ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x40599aa8 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x419cb09b ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x42810336 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x42c98607 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x430f9255 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x4397f49a osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x48a48ff5 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x4c79173e ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x4f4c092f ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5a8e52bb ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x5cd226aa ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x61e06c0c ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6396ed92 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x63f214b8 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6536ecde ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x654ce764 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x72dfc83e ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x73b606ef ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x78b0dc71 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x7ecff1ba osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x80d9448d ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x8119084a ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x85d03a9e ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0x987955da ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0x9886f6ff __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x995db1fa ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9af5e645 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa3bdeff5 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0xaccf1b6c ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xae9d0d62 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xaff39a82 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xb1c7ae7b ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xb40dcc6f ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb7a8997b osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xb7d29430 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xbb940a94 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xbdc589b2 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xbf15e03c ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0xc29a72e6 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xc476e864 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc5adf59b ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xc5efc3f5 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xd28b7bb1 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd70ba854 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd91cd7d5 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xd9618575 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd9633770 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0xd97d94d7 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xdadb7e21 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0xdd8e7550 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xddbd8a35 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0xde97fef7 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xe21ddced ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xe2aca730 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xe2b04caa ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xeb10d326 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xec192b00 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xee1ac17c ceph_file_layout_to_legacy +EXPORT_SYMBOL net/ceph/libceph 0xee404ace osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xeebb690a ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0xf13a609c ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xf13af00c ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xf9240fc0 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xfaa34d3e osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xfdcc7eb8 ceph_msg_data_add_bio +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x52a43995 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xe472f712 dccp_syn_ack_timeout +EXPORT_SYMBOL net/ieee802154/ieee802154 0x82b79b55 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8e44122d wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xab6b1ccc wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc65e1767 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe972fb9d wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xfa0e626c wpan_phy_register +EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x5db61e64 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x61487b62 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x78e53b0e gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x91ba605e fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0xe5113a5f gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x0d4bb98b ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2fa237a6 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3e3695f7 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x57feef31 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x3a97ea91 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x8aafc6ee arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe18151cf arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x046ed64f ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x92e7ef3e ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xb70bde67 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x48ae8f09 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x5d325ddd xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x2abdda09 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/fou6 0x2d9e7b2b fou6_build_header +EXPORT_SYMBOL net/ipv6/fou6 0x71be32be gue6_build_header +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0a8059a2 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x33157610 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x46603630 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4be8a603 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x52f47c11 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8b9ebe08 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9d01da83 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd89442e7 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf23bd607 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x04639630 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x05720425 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x12258b9b ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x3e2c2d66 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xd9d2d4a4 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x64094534 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x88f23875 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x6858c69e ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x88c8db9f ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x92b2f8b6 ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb847e662 ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xc2a82c34 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xc64a13ec ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xcd5a8836 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe377fe3a ircomm_close +EXPORT_SYMBOL net/irda/irda 0x0064e0ea hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x0ffcb8f9 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x125fd198 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0x1bb1c430 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x22acbc56 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x26390af7 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0x3097a0b4 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x3e56064f hashbin_new +EXPORT_SYMBOL net/irda/irda 0x405eedc2 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x5be4918c irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0x601bda46 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6b5fbcef hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x6c279dc8 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x6e0ab3c7 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7eb3931d irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x80e75f94 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x8378c3ec irlap_open +EXPORT_SYMBOL net/irda/irda 0x85d88217 irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x88d24701 irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x97fe9744 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x9cf59a27 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0xa2b02569 irttp_dup +EXPORT_SYMBOL net/irda/irda 0xa7be5dc1 iriap_open +EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xaf60cf85 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0xb8c3403d irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xc2d30b97 irlap_close +EXPORT_SYMBOL net/irda/irda 0xc68e43be irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xcb5c17cd iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0xcead7dbb hashbin_find +EXPORT_SYMBOL net/irda/irda 0xced2af6a irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0xd2108314 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe3463529 hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0xe3bde43e irias_insert_object +EXPORT_SYMBOL net/irda/irda 0xe412a1bd iriap_close +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xf0a694a1 irias_find_object +EXPORT_SYMBOL net/irda/irda 0xf5876b95 hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0xf84c9dca async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0xfd5c377d irlmp_close_lsap +EXPORT_SYMBOL net/kcm/kcm 0x1b7c9d19 kcm_proc_unregister +EXPORT_SYMBOL net/kcm/kcm 0x69357011 kcm_proc_register +EXPORT_SYMBOL net/l2tp/l2tp_core 0xe2036171 l2tp_recv_common +EXPORT_SYMBOL net/lapb/lapb 0x36649c35 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x381882fd lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x4ec01ae0 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x7c6ca31c lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x91825ea8 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x9dcd6bf8 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xdd319115 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xe0c1d769 lapb_data_request +EXPORT_SYMBOL net/llc/llc 0x162fe1b7 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x21841c96 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 0x6090381b llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x63cbeac3 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x74ac4dbc llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x7799dfb7 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xb2ee83c8 llc_mac_hdr_init +EXPORT_SYMBOL net/mac80211/mac80211 0x00fbd14a ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x013a27d6 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x0142fbb1 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x08012db3 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x0d3bafaf ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x12357d60 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x1993abe7 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x1b715327 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x1c5681ff ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x1d39b291 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x1ed74466 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x21849ec0 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2816cf0f ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x2bf2953c ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x2da5d143 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x2e1f1c04 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x3a92902f ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x3fd81af8 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x4456beef ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x48d75bef ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x511e4614 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x52ef2172 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x572db391 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x5802cd3b ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x5be21a1f ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x5d39d323 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x5dd04b62 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x5df1d46d ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x670bacd5 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x6770ffe1 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x682b8ee1 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x6ac0ea41 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x6ef1f99e ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x72707af6 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x73e6712a __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x7c57948a ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x7ea03955 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x81a1454c ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x85cc9e85 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x8f470a5a ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x96a22379 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x9aaca7fa __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x9e4f0840 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x9fb80cc4 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xa0767d56 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xa0c3b24c ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xa21676ea ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xa4e09796 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0xa573e01d ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xa5872ab2 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xa5feca11 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa68bf399 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xaad03afa ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xacfc9d31 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xad77c408 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xaef5f477 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xafa62588 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xb439bf20 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb692170e ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xb9a2e3ee ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xb9abd255 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xbb493ea1 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xbc3b5242 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0xbd3b37a4 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xc0e5b61f ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xc139e1ef wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xc86bec32 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xca8892e7 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xd213cf0f ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xd233a7c2 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xd67f0155 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd819b110 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xd9291fc8 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xdaeddb87 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xdc9db3f6 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xdf733397 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xe239dd48 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xe2b4919e rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0xe8b46b25 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xeaf37d44 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xf38e6433 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xf9d49423 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xfba22777 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xfe606851 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac802154/mac802154 0x09032ed7 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x0d042e11 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x3b6181b6 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x95799bb8 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xb2dce614 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xba0e44ed ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xbfee7eb3 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xfaceac14 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0961a984 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x18e2a5fa register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2e2930f7 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x42174265 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4ae1cc0b ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x501e7976 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9ef60767 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb47325e6 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb72a5584 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbf616895 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcac4a1a6 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd606b044 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe895bd3b ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf3a50670 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf3e58f1a ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x272c2ad7 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x2e4c950b __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x9f143391 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x1bfd6978 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xa26b94d8 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xb7b5003a nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0xca89efd4 nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0xdefcedab nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xe28e2604 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x2f1bef6d xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x33425379 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x5f812495 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x92304d35 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x9a4910e9 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xaf27bc92 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xb785ede7 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xe2ff9218 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xf838e86e xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0xfd3f4554 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x0feb76c4 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x11636f79 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x15b6324f nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x2258ce2b nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x2b1d75cf nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x3069f11e nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x75bb8050 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x7e9ff338 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x81aed5da nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x888a4f3f nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x907d8743 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x92030c41 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xa265c593 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xb53522e9 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xc602c953 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xccb95a58 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xd1353ee6 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xd1593b96 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xe70231d7 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xef40d6ff nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xf140fd99 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x0c645a4f nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x126af7be nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x144f174b nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x15facafa nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x21d9fc77 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x25bb64d9 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x2e874d54 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x3516841e nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x498a201d nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x522828d0 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x52a1693b nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x53e875ab nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x5cf15154 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x5d6b3aeb nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x600bfac1 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x618dcc0c nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x6495ac5b nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x652cd22b nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x6c2cad24 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x7ccdb2e5 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x83245ac0 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x97d1e668 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xa06e283f nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xa1c22825 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xa5babb64 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0xac2a603a nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xb6d10fc3 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xb8dc5d84 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xbc94db5c nci_core_reset +EXPORT_SYMBOL net/nfc/nfc 0x0de9020d nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x0eac1e00 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x265ec20e nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x27b0e336 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x2d421564 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x2df317c6 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x3d6d3ede nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x456b93eb nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x4d7c8792 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x567531c0 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x68dd6d10 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x6dae64bb nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x771fbd1d nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x7e3f142a nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x8a6facec nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x9193416c nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x91f32fdb nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x9f5ea4e8 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xaee985af nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xb985193e nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xc57ca96a nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xcb2f27b0 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xcceec0cc nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xd718189c nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xf78ab10b nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc_digital 0x00d18383 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x19e2bd44 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x746a50fc nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xd4f92660 nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x0e4f8e9b pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x2c95a1e6 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x8cd26060 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x982fba08 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xa37f700d pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xa3cf762a phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xbc375c28 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xc17276f8 phonet_proto_register +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0013937a rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00e1c62d rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2177de9c rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x242f9874 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2b88e614 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x32573705 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x53e6d0b6 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x703c3b9e rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x87de7c08 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9d5a519c rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xaad37ad1 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc4f3c977 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe77bc888 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xeafaa9c1 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xfec11383 rxrpc_kernel_data_consumed +EXPORT_SYMBOL net/sctp/sctp 0x922f6039 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x6f749aa2 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x6fd82fbd gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x896e46b6 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x9b6a966b xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xc5c53d03 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xc6eee964 xdr_restrict_buflen +EXPORT_SYMBOL net/wimax/wimax 0x09dc2ffe wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0x843a84a4 wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x073a0a82 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0a0f38df cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x0b6c029f cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x0c855b25 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x0cd3de8a cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x0f7ebdb7 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x17772901 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1c00f8ea ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x23f2d4f9 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x260c971c regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x297a67f4 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x2e3b6837 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x3150faf9 cfg80211_connect_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x31536eee cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x31ac9d0b cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x37989bb4 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x3b9928c2 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x3bec3f9a regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x4102c3ae cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x42a6d760 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4d4e3691 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x4f35c2a5 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x504552d1 ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x5107ec02 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x516a7ebd cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x5373fb70 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x54105d74 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x55a82329 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x5a56cf4f cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x5af957e1 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x61ee1205 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x62e557f6 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x640118ef cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x6773cccc cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6a5bd825 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x6c040132 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x6d17a097 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x701d99bc cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x74834eae cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x75343a16 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x77602d2d cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x7953a0a6 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x813512b2 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x8148e295 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x8241881b __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x8581bc39 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x899379ef ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x89fbcf65 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x95382e89 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x9552b56e cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x9dc3a732 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xa3f445a1 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xa4b03786 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0xa73602ae wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0xa7ab9e5c cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xae290980 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xb444baf7 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xb8077db6 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xb8a6350b wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xbb7c32b5 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xbd274f07 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xc1f09339 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc2ea9d87 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc4194dfc cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xc612e23e cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc9442f5d ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0xc9609888 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xce5fc43c cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xcf757f3a __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xd23b6c17 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd26a70fe __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xd277ed27 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xd30d0154 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xd641c1a2 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xd7b16272 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xda2bf6b0 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdc3469b8 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/cfg80211 0xde161c3c cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xde7f9da0 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xdfd45292 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xe2adf71b cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xe31a3897 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xe682318b ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xe8663ae6 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0xe866af58 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xeb9afcff wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xecb31dc9 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xf3dee118 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xf6083607 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xfac1b2d7 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xff480b52 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xff9cccb8 wiphy_unregister +EXPORT_SYMBOL net/wireless/lib80211 0x2e386914 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x580ae644 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xcaa3d464 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xe17c9e89 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xe9a17989 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xfad6c4a6 lib80211_crypt_info_free +EXPORT_SYMBOL sound/ac97_bus 0x4f18dc8d ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xd696662a snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x0de3d5e1 snd_seq_event_port_attach +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 0x373ebdfe snd_seq_kernel_client_write_poll +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 0x8a2c7b42 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 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcddd273c snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xbd9ac874 snd_seq_device_new +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 0xf0a1fdb3 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 0xd7c7afcc snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe60fb228 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xecbde43c snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xc6f8c757 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x01209fc5 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x01429a5d _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x01d69e4d snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x06a832ce snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x0733dbbe snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x0b62654f snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x0e689ca2 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x171ce515 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program +EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer +EXPORT_SYMBOL sound/core/snd 0x1976d642 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1b0e9e99 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x271d5ff7 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x273348a4 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x2a162a8a snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3b7f02bb snd_cards +EXPORT_SYMBOL sound/core/snd 0x40419724 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x44bbc9fe snd_component_add +EXPORT_SYMBOL sound/core/snd 0x49474c6a snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4ef8b864 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x57ff8062 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x5b75a715 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x5e9bfd93 snd_device_new +EXPORT_SYMBOL sound/core/snd 0x6a05b970 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x78685566 snd_device_register +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x868edb47 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x8823d19d snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x8bf35a9b snd_card_new +EXPORT_SYMBOL sound/core/snd 0x8d0fe385 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8e38cc0a snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x953ccbb4 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x9b3d23dc snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa01cb0b4 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xa06463af snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xa1e3c772 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xa8e616f0 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xaa899ac8 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb3009bf9 snd_card_register +EXPORT_SYMBOL sound/core/snd 0xb7fba160 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xb8a8d3d2 snd_card_free +EXPORT_SYMBOL sound/core/snd 0xc5ed0113 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xc70165f2 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0xc92fc122 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0xd1a16c7d snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xd3255167 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xddcf91c8 release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xe93617c6 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xed25d15f snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xf3a8c385 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xfa840c03 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xfadf7514 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-hwdep 0x1028e035 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0049c4a7 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x01617c1c snd_pcm_notify +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 0x06b310c9 snd_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x0ca8cb0a snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x1518318b snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x15b30ffb snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x187b35a3 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x19b830d3 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x30310785 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x3822a3d4 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3a44f934 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x3ee3ecb4 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x4156e4af snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x45509ca0 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x4ec43037 snd_pcm_hw_constraint_ranges +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 0x5898dcba snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x60629e92 snd_pcm_lib_free_pages +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 0x68e5645d snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x6e2583c9 snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x72504fab snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x78ca100b snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x78cb2ce5 snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x7d57c9f8 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x9075eeb0 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x98a375ed snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x9b48e549 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xa29f4ad4 snd_pcm_mmap_data +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 0xac914dd2 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xaec1db01 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xb771a371 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xb8e54339 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbd2bd1d4 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xbdfb1257 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xc6eb6f13 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xd4e47016 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xd503207b snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xe21cabca snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xe3237073 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xeb9ef723 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xee727a38 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xf0c97dec snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0xf0ef61dd snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xf3481dd2 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xf39ca499 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xf3a69a51 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xf91c7b7d snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0xfcbadd43 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0xfde3822b snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xfeeb0629 snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x065f61f8 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1c0ec61b snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x31da2e26 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x33cb8db7 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x34fbc78d snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x36642503 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x386612c3 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3df48607 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4ed3955b snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6575017d snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x69a52b19 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7e403830 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fbedbc3 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x84c60d1a __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8a8c4b4a snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9c06c74b snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbfaccc1c snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcb512eda __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd7c7e67c snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-timer 0x08df3630 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x120e11fa snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x13aa5242 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x4ad15bca snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x53c67531 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x86e225c3 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x92cc7d3c snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x98bdb351 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x9d6ba292 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xb07d0ff3 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xbf0ecc7c snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xdfc0658f snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xe85d832d snd_timer_continue +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x12fce6c5 snd_mpu401_uart_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/opl3/snd-opl3-lib 0x01e466d9 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05d66c49 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x28598946 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3b250dd0 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x587af3da snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5be02af3 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8651cfa7 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xdb192a2f snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe845424e snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2168918a snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7ec1dfb3 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa2c8f39c snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xcdde712d snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xdfe61c4a snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xed6036a9 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xedfb65e9 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 0xfba6c35a snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfdb9f75c snd_vx_setup_firmware +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x37976d80 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x40a48225 snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x47273ea0 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x49511f8b amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4c966b22 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x59114974 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x60d6c2aa snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x641811a2 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x65cce6c0 snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6d045773 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x77cb1169 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x787ca6d1 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7cef772c amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7f79f699 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8140a596 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8300556b amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9741079d avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9770d50c cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb0b4aab7 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb2cb61fc fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbaae40c1 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbba110fd cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbc27a070 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc50f33d8 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc7980c76 snd_fw_schedule_registration +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcc048b1b fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd52daa37 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd631e361 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdf517a9d amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe2f43b93 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xeadd1705 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xeb946094 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfab89877 iso_packets_buffer_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x5df88ddc snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x6bf6e8b2 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0409ca26 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3d19ddd7 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x51924c1f snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6dd19a4d snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa3eee2c4 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa6c2853f snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc60b6e49 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf050e078 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x0102b76f snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x1f593832 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x272de69c snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x68e371db snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xbd0d4d1d snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xef635d1f snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x7893f597 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x85bc5e87 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xa52ac734 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xff8f1d41 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x1687647a snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xb6db0530 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x17dc6a6a snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2e65c6f4 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x710bb65e snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xbf424e7d snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xd79ba207 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf652e839 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-i2c 0x0ea6021e snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x7bc46af8 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc6054dce snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xd8a3c55d snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xead22ccc snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xf2532abd snd_i2c_sendbytes +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x07f30278 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x199a7109 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x279732cb snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x398446da snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x4e28dae4 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x99878cea snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb0966783 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb3c00a82 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xbe6d21ce snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf4f43bf6 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1a23dadb snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x22dbff7f snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x24aaa38c snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2f4513a2 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x382e62f3 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3da57b62 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x54fc4627 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5d69726f snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x68f5cdc4 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7b089650 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8bfdd3c0 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbc04f784 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc8b8b132 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcad4f566 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcfed1b42 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xda860ca8 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdeced4d7 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x03a99362 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x111291c9 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x207a1af8 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x53c07b7f snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x607361e6 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8b6d98ff snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb66cbde3 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc1c668eb snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc4d3f286 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x2f92540a snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x4bfda5a4 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xb1867105 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x12f14ed2 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x28e146c0 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2f8eb57d oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3183b3f7 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x38ef9339 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x398f7a6b oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5fa24003 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x688de06f oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6f9cca86 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8fe5993f oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x96b6bab5 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x985bc902 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb811ba69 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc45a76c6 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc4d0dc24 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xca237cd4 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xca607c20 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xccf65d46 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd8746d4e oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd9df814b oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfab2951f oxygen_pci_pm +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x0544aacc snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x0dc1a899 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x51168aca snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x782cef11 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xb7c51448 snd_trident_free_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x24811a8b tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xdbbb8288 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/snd-soc-core 0x87608225 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x1c6940c1 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x32e6dd0f register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x6416a124 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x88a17e87 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0x9fd2c112 sound_class +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xe09df9cb register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x37c6bdae snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x4bbbc924 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 0x72749234 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x94de30bc snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x9861daac snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xee834517 snd_emux_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x02ec0318 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0x2f807eae snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x36db9bb8 snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xc4c1c059 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xc60db80f __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xc79ba5cd __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xdac4939f __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xeb0a68f0 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 0x75509f67 __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 0x0003c7b8 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x00073e16 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x001bf272 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x00303b93 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x0030d99f udp_ioctl +EXPORT_SYMBOL vmlinux 0x003a7a96 h_ipi_redirect +EXPORT_SYMBOL vmlinux 0x004e2a41 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x005b1bc4 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done +EXPORT_SYMBOL vmlinux 0x009163af phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00dfd412 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x00ea18fe nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x010905c3 dev_mc_add +EXPORT_SYMBOL vmlinux 0x01140007 param_get_ulong +EXPORT_SYMBOL vmlinux 0x01144c9d phy_attach +EXPORT_SYMBOL vmlinux 0x0122f95e _lv1_get_spe_irq_outlet +EXPORT_SYMBOL vmlinux 0x0123d2a6 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x012a97fc xor_altivec_4 +EXPORT_SYMBOL vmlinux 0x015b25c3 inet_select_addr +EXPORT_SYMBOL vmlinux 0x016c0bb0 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x018d9919 _lv1_set_lpm_interrupt_mask +EXPORT_SYMBOL vmlinux 0x01939fd8 devm_iounmap +EXPORT_SYMBOL vmlinux 0x01b009bf reuseport_alloc +EXPORT_SYMBOL vmlinux 0x01bf0521 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x01bf56c3 __pmd_cache_index +EXPORT_SYMBOL vmlinux 0x01fe09fa scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x020d18d7 _lv1_set_lpm_debug_bus_control +EXPORT_SYMBOL vmlinux 0x021630c2 phy_init_eee +EXPORT_SYMBOL vmlinux 0x02192011 bio_add_page +EXPORT_SYMBOL vmlinux 0x0232b96f ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x023a074a hvc_get_chars +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x027d5499 _lv1_did_update_interrupt_mask +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02c36239 I_BDEV +EXPORT_SYMBOL vmlinux 0x02d2bf60 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x02dd55d4 mmc_get_card +EXPORT_SYMBOL vmlinux 0x02e03fd8 fence_remove_callback +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02efdfa0 __serio_register_port +EXPORT_SYMBOL vmlinux 0x02f65e20 vm_insert_page +EXPORT_SYMBOL vmlinux 0x02f6741b skb_pad +EXPORT_SYMBOL vmlinux 0x02fce72a twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x0317f2e2 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x0318dd7b mark_info_dirty +EXPORT_SYMBOL vmlinux 0x031dc65e pasemi_dma_free_chan +EXPORT_SYMBOL vmlinux 0x03346627 mutex_unlock +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x0385d84c fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x039049d3 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x03a235f7 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x03e7bf4f tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x03f8b243 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x040383a2 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x04074f48 ioremap +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0440a533 _lv1_net_remove_multicast_address +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x0461cbc8 tty_unlock +EXPORT_SYMBOL vmlinux 0x046549d6 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x046aa71e qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x047451b4 dquot_disable +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x04918947 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x04a0f02e vfs_llseek +EXPORT_SYMBOL vmlinux 0x04c80528 vio_unregister_driver +EXPORT_SYMBOL vmlinux 0x04d424d9 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x04d80754 complete_request_key +EXPORT_SYMBOL vmlinux 0x04d90e70 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x04dea5a7 bdgrab +EXPORT_SYMBOL vmlinux 0x04dec362 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x04e70530 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04f1c30c xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x04f9bf23 bio_put +EXPORT_SYMBOL vmlinux 0x04fc373c __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x0501778d buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x05070b39 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x050eef28 truncate_setsize +EXPORT_SYMBOL vmlinux 0x05137733 submit_bh +EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range +EXPORT_SYMBOL vmlinux 0x052407a5 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x052775d7 pci_request_region +EXPORT_SYMBOL vmlinux 0x05287025 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x052b383d sock_register +EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x05315f8f of_platform_device_create +EXPORT_SYMBOL vmlinux 0x0540b32a cpu_core_map +EXPORT_SYMBOL vmlinux 0x055347b5 address_space_init_once +EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x055df345 bd_set_size +EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns +EXPORT_SYMBOL vmlinux 0x05cb8012 console_stop +EXPORT_SYMBOL vmlinux 0x05d02905 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x05d54047 poll_freewait +EXPORT_SYMBOL vmlinux 0x05e25804 __request_region +EXPORT_SYMBOL vmlinux 0x05fbdc02 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x0609d849 import_single_range +EXPORT_SYMBOL vmlinux 0x06101f87 dev_add_offload +EXPORT_SYMBOL vmlinux 0x0614e45c pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x062fa6bc nvm_mark_blk +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06456aff _lv1_get_virtual_address_space_id_of_ppe +EXPORT_SYMBOL vmlinux 0x064bde98 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x066737a8 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x066dbb7f inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x067a9090 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x067e68f0 dentry_open +EXPORT_SYMBOL vmlinux 0x069699ce copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x06c59e77 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x06d83262 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x06f56598 mmc_start_req +EXPORT_SYMBOL vmlinux 0x07025e41 set_groups +EXPORT_SYMBOL vmlinux 0x07064193 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x07094778 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x070a51dd get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x071e9bed inet_sendmsg +EXPORT_SYMBOL vmlinux 0x07267274 seq_write +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0740bb6e flush_all_to_thread +EXPORT_SYMBOL vmlinux 0x074e9213 down_killable +EXPORT_SYMBOL vmlinux 0x076aad72 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x0799e67f agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x07a756e7 tty_register_driver +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07bd3f52 kfree_skb +EXPORT_SYMBOL vmlinux 0x07c276b0 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x07c86641 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07ce579f kmalloc_caches +EXPORT_SYMBOL vmlinux 0x07d203f1 skb_copy +EXPORT_SYMBOL vmlinux 0x07d22f19 follow_down_one +EXPORT_SYMBOL vmlinux 0x07e98009 sock_no_connect +EXPORT_SYMBOL vmlinux 0x07ee836e inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x07ef213a pasemi_dma_free_fun +EXPORT_SYMBOL vmlinux 0x07f8ee15 _lv1_unmap_device_dma_region +EXPORT_SYMBOL vmlinux 0x07f97ef4 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x07ffdac7 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x080271a3 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x0804cc04 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x080fa3f4 nmi_panic +EXPORT_SYMBOL vmlinux 0x081bb4c6 i2c_master_recv +EXPORT_SYMBOL vmlinux 0x082148e6 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x082554fc bdi_register +EXPORT_SYMBOL vmlinux 0x0829d369 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x082a6755 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x082c48ee tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x082c5fd5 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x082cee00 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0840b11e mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x0847dedb __next_node_in +EXPORT_SYMBOL vmlinux 0x0865b36a security_path_rename +EXPORT_SYMBOL vmlinux 0x086c9709 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x08895a4c dquot_scan_active +EXPORT_SYMBOL vmlinux 0x089a20f7 iterate_dir +EXPORT_SYMBOL vmlinux 0x089d2a94 current_in_userns +EXPORT_SYMBOL vmlinux 0x08b22887 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x08b8674c kernel_connect +EXPORT_SYMBOL vmlinux 0x08caf5d6 get_gendisk +EXPORT_SYMBOL vmlinux 0x08d1f9c4 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x08dcb5ab mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x08dd97ff sock_efree +EXPORT_SYMBOL vmlinux 0x08e6ddd7 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08f7c05f msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x08ffacd7 alloc_pages_current +EXPORT_SYMBOL vmlinux 0x09070f18 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x0944da79 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x09478b29 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x0952b9e4 sock_init_data +EXPORT_SYMBOL vmlinux 0x0956d016 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x096341c2 _lv1_connect_irq_plug_ext +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x099b086f nvm_register_tgt_type +EXPORT_SYMBOL vmlinux 0x09a34a37 arp_xmit +EXPORT_SYMBOL vmlinux 0x09aabc0b xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x09b278f7 skb_append +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c6411f schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x09c67afb flex_array_get +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09eaf908 ip6_xmit +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a48d943 __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x0a4b787c tty_devnum +EXPORT_SYMBOL vmlinux 0x0a5b4ea9 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x0a5f4c44 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x0a5f775e cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a7c6cdf radix__local_flush_tlb_page +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa66804 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x0aba54cf sock_kfree_s +EXPORT_SYMBOL vmlinux 0x0abdb59b locks_remove_posix +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ae88196 iget_locked +EXPORT_SYMBOL vmlinux 0x0aefeb13 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x0b0b5eef fscrypt_get_ctx +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b10777d simple_write_end +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b2e1ec7 h_get_mpp +EXPORT_SYMBOL vmlinux 0x0b2fd544 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b6b99f4 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b8dbeb9 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x0b8fd2a7 netdev_err +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0c08fde2 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x0c1ad162 _lv1_net_start_rx_dma +EXPORT_SYMBOL vmlinux 0x0c20350f tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x0c25834c xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c4e778a tcf_hash_check +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c65dd91 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c75efb3 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x0c8bc987 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca565dd devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cb21aa8 ps2_end_command +EXPORT_SYMBOL vmlinux 0x0cbaceb8 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x0ccdc953 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x0d4b3573 nvm_end_io +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d621cd8 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x0d6c963c copy_from_user +EXPORT_SYMBOL vmlinux 0x0d74028d pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x0d748c35 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x0d899647 sys_fillrect +EXPORT_SYMBOL vmlinux 0x0d9e1ea7 fence_signal +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da476ca netif_device_attach +EXPORT_SYMBOL vmlinux 0x0da59580 macio_request_resources +EXPORT_SYMBOL vmlinux 0x0da5e78f filp_close +EXPORT_SYMBOL vmlinux 0x0dac2f27 mdio_device_create +EXPORT_SYMBOL vmlinux 0x0db5bb7b __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x0db9d318 install_exec_creds +EXPORT_SYMBOL vmlinux 0x0dc0ace0 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x0df4259e padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x0e078e15 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x0e17c94e mmc_can_reset +EXPORT_SYMBOL vmlinux 0x0e35d723 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x0e3d4f1b get_io_context +EXPORT_SYMBOL vmlinux 0x0e494c73 sock_no_listen +EXPORT_SYMBOL vmlinux 0x0e610194 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e72deb8 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0x0e7b65d4 sk_free +EXPORT_SYMBOL vmlinux 0x0e8062f7 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x0e8ee2bc tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0e9b3dcd ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x0eba0f33 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x0eba2cd3 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ec7e298 ata_link_printk +EXPORT_SYMBOL vmlinux 0x0eca259a ps2_begin_command +EXPORT_SYMBOL vmlinux 0x0edbcce7 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x0ef925ce napi_gro_flush +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f0f0c8b mmc_erase +EXPORT_SYMBOL vmlinux 0x0f172b83 file_ns_capable +EXPORT_SYMBOL vmlinux 0x0f222e3e generic_block_bmap +EXPORT_SYMBOL vmlinux 0x0f272e70 audit_log_start +EXPORT_SYMBOL vmlinux 0x0f2d8fd6 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x0f4c8d8c touch_atime +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f5241b0 serio_close +EXPORT_SYMBOL vmlinux 0x0f5cfd89 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x0f5faa7e wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f709df0 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x0f74ee30 make_kuid +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f82e17f netdev_notice +EXPORT_SYMBOL vmlinux 0x0f92f42c scsi_unregister +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fc3c3e7 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x0fc482cf __cpu_active_mask +EXPORT_SYMBOL vmlinux 0x0ff25e6c of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x102fd91d blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x10317fc3 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x10381914 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x103c2d44 netlink_capable +EXPORT_SYMBOL vmlinux 0x104fa878 netif_rx +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x10810235 key_revoke +EXPORT_SYMBOL vmlinux 0x10a00a26 copy_from_iter +EXPORT_SYMBOL vmlinux 0x10c7779e blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x10ce56a4 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x10e0f124 __pud_index_size +EXPORT_SYMBOL vmlinux 0x10f1fa00 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x1140270a param_get_short +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x116c048d nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x116c158f __mutex_init +EXPORT_SYMBOL vmlinux 0x116d729d netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1171b635 _lv1_delete_lpm_event_bookmark +EXPORT_SYMBOL vmlinux 0x117408d3 get_super_thawed +EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable +EXPORT_SYMBOL vmlinux 0x11857137 vme_master_request +EXPORT_SYMBOL vmlinux 0x11935bfc sock_create_lite +EXPORT_SYMBOL vmlinux 0x119ff25b sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x11a91e4d find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x11adf476 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x11b32d2f compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x11bb4f17 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x11d228e2 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x11d8021d blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x1207e2bb kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x122c1dd1 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x123a0789 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x123d65c9 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x124e881a md_finish_reshape +EXPORT_SYMBOL vmlinux 0x125e41ae bio_advance +EXPORT_SYMBOL vmlinux 0x12650bb9 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x128215b2 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x128a9455 kill_litter_super +EXPORT_SYMBOL vmlinux 0x1294ef31 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x12a09d5e xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12aceb0d fb_pan_display +EXPORT_SYMBOL vmlinux 0x12cb6622 _lv1_map_device_dma_region +EXPORT_SYMBOL vmlinux 0x12df73a8 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit +EXPORT_SYMBOL vmlinux 0x12e5ef0c rtas_set_power_level +EXPORT_SYMBOL vmlinux 0x12fb498d iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x130c0eaf param_get_invbool +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x131a68bf blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x13215eac mem_section +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x133a7fdb build_skb +EXPORT_SYMBOL vmlinux 0x13458a6b d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x135660c3 get_tz_trend +EXPORT_SYMBOL vmlinux 0x135e654d fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x13946c5e backlight_force_update +EXPORT_SYMBOL vmlinux 0x139c8201 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0x13cb1c5b mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13db9a1f block_write_full_page +EXPORT_SYMBOL vmlinux 0x13eba961 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13f53da6 CMO_PageSize +EXPORT_SYMBOL vmlinux 0x13f79dc8 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x1407c836 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x141fe5fd pasemi_read_iob_reg +EXPORT_SYMBOL vmlinux 0x14209f6c __kernel_virt_size +EXPORT_SYMBOL vmlinux 0x142230fc __kfree_skb +EXPORT_SYMBOL vmlinux 0x142e12fd udp_seq_open +EXPORT_SYMBOL vmlinux 0x14340172 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x14379198 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x146d5451 bdev_read_only +EXPORT_SYMBOL vmlinux 0x1487d12e radix__flush_tlb_page +EXPORT_SYMBOL vmlinux 0x1489ec04 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14df9c8a jbd2_journal_inode_add_write +EXPORT_SYMBOL vmlinux 0x1501d944 tcp_prequeue +EXPORT_SYMBOL vmlinux 0x150ad92b ioport_resource +EXPORT_SYMBOL vmlinux 0x151592c4 _lv1_invalidate_htab_entries +EXPORT_SYMBOL vmlinux 0x1530db27 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x15393206 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x1539d195 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x1539dd17 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x153cd46a mmc_can_discard +EXPORT_SYMBOL vmlinux 0x154a42a0 param_set_copystring +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x155ef23c dma_common_mmap +EXPORT_SYMBOL vmlinux 0x1570ddca ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x159f2eab proc_set_size +EXPORT_SYMBOL vmlinux 0x15a48d66 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x15a8d659 dm_register_target +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15d3fd60 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x15fc719b set_anon_super +EXPORT_SYMBOL vmlinux 0x1607612c dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x160bd45c rtas_token +EXPORT_SYMBOL vmlinux 0x161094d0 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x162930f0 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x162bc15b netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x16393a27 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x16559f75 nf_log_trace +EXPORT_SYMBOL vmlinux 0x165c736a jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x1673438e compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x167a7a94 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x1680bf95 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16ffb58b tty_check_change +EXPORT_SYMBOL vmlinux 0x1713d028 sget_userns +EXPORT_SYMBOL vmlinux 0x17245229 sk_common_release +EXPORT_SYMBOL vmlinux 0x172ac68f cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x1743414f __debugger_fault_handler +EXPORT_SYMBOL vmlinux 0x1744c32d tty_throttle +EXPORT_SYMBOL vmlinux 0x174bd0a2 sock_edemux +EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock +EXPORT_SYMBOL vmlinux 0x1783133b vga_tryget +EXPORT_SYMBOL vmlinux 0x17927dd8 __bread_gfp +EXPORT_SYMBOL vmlinux 0x1797d300 __d_lookup_done +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17c24e0a pci_find_hose_for_OF_device +EXPORT_SYMBOL vmlinux 0x17cb8c79 _lv1_read_htab_entries +EXPORT_SYMBOL vmlinux 0x17cdf97c alloc_disk +EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x182f50af _lv1_open_device +EXPORT_SYMBOL vmlinux 0x183014a2 fence_free +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x1844d7ee from_kuid_munged +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x1857aa39 proc_dointvec +EXPORT_SYMBOL vmlinux 0x1860cd6a check_disk_change +EXPORT_SYMBOL vmlinux 0x1868bb63 mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x18757003 file_open_root +EXPORT_SYMBOL vmlinux 0x187ba169 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x1894adfc eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x18a55c46 finish_open +EXPORT_SYMBOL vmlinux 0x18c2745c d_add_ci +EXPORT_SYMBOL vmlinux 0x18c67207 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x18c98205 _lv1_destruct_virtual_address_space +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18ead0a2 init_task +EXPORT_SYMBOL vmlinux 0x19151a6f mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x193b3ba3 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x1940dcd4 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x1959b800 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x195cba53 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x196315fa blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x197b93a5 compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x19993a3f try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x199c311e __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19bceb99 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c74140 pci_release_region +EXPORT_SYMBOL vmlinux 0x19c85478 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x19c968d1 pasemi_dma_start_chan +EXPORT_SYMBOL vmlinux 0x19d9f38c neigh_update +EXPORT_SYMBOL vmlinux 0x19f7b025 devm_gpio_free +EXPORT_SYMBOL vmlinux 0x1a06279a __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x1a0cca6f __ps2_command +EXPORT_SYMBOL vmlinux 0x1a1d8e5c get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x1a3e0656 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x1a422b1a dcb_setapp +EXPORT_SYMBOL vmlinux 0x1a44c3c6 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x1a499a8a __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x1a4ed821 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x1a5b3362 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x1a611264 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x1a65d25c d_find_alias +EXPORT_SYMBOL vmlinux 0x1a703ba1 crc_ccitt +EXPORT_SYMBOL vmlinux 0x1a91663d pasemi_dma_free_buf +EXPORT_SYMBOL vmlinux 0x1aa2693a radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ac6b949 sk_stream_error +EXPORT_SYMBOL vmlinux 0x1ae65c98 padata_do_serial +EXPORT_SYMBOL vmlinux 0x1aec72d2 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x1af548f7 flush_icache_user_range +EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x1afeb874 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b625d33 enable_kernel_vsx +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b6c86fa input_set_abs_params +EXPORT_SYMBOL vmlinux 0x1b7ae69e phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b92241c of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x1b9507c5 mount_nodev +EXPORT_SYMBOL vmlinux 0x1baf51a2 register_quota_format +EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x1bcf667d sock_no_poll +EXPORT_SYMBOL vmlinux 0x1be90c3e mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x1bfec830 __iounmap_at +EXPORT_SYMBOL vmlinux 0x1c103f0b vfs_read +EXPORT_SYMBOL vmlinux 0x1c1a5f5e ps3_dma_region_free +EXPORT_SYMBOL vmlinux 0x1c200a7d pasemi_dma_stop_chan +EXPORT_SYMBOL vmlinux 0x1c2019a5 simple_dname +EXPORT_SYMBOL vmlinux 0x1c26893f dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x1c28840c sk_mc_loop +EXPORT_SYMBOL vmlinux 0x1c3e02e4 memcmp +EXPORT_SYMBOL vmlinux 0x1c4dab93 _lv1_connect_irq_plug +EXPORT_SYMBOL vmlinux 0x1c5b2c15 pmu_wait_complete +EXPORT_SYMBOL vmlinux 0x1c7cfdb1 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check +EXPORT_SYMBOL vmlinux 0x1c8b6b95 blk_requeue_request +EXPORT_SYMBOL vmlinux 0x1ca71b5f elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x1cd2c3be macio_release_resources +EXPORT_SYMBOL vmlinux 0x1cf7b4f9 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x1d005516 kobject_set_name +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be +EXPORT_SYMBOL vmlinux 0x1d25ee63 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x1d3dcf71 of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0x1d4750bc _lv1_stop_lpm +EXPORT_SYMBOL vmlinux 0x1d5240cd i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x1d6d71c0 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x1d89d426 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x1d9d5b5c __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x1da24a6e param_set_uint +EXPORT_SYMBOL vmlinux 0x1dab6471 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x1daee28a percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x1dbc4d0c proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x1dc02e5d cdev_add +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dc96021 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1dd7baba scsi_print_command +EXPORT_SYMBOL vmlinux 0x1df04e0a padata_start +EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query +EXPORT_SYMBOL vmlinux 0x1e0e6112 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e3f7499 vc_resize +EXPORT_SYMBOL vmlinux 0x1e451de2 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x1e469ec7 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ecc3355 d_alloc_name +EXPORT_SYMBOL vmlinux 0x1ecc5dea devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x1ed014e6 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x1f33d6db __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x1f3a584b compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0x1f5f3985 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1f73b70e jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x1f923c0a tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe12f03 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x1fe7b4ab pasemi_write_dma_reg +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1ff25677 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x20119a37 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x201494ee _lv1_net_set_interrupt_mask +EXPORT_SYMBOL vmlinux 0x201e2d18 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x2022b533 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x2038b12a nf_log_unregister +EXPORT_SYMBOL vmlinux 0x204b88b3 pci_clear_master +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x2055b9a4 dst_discard_out +EXPORT_SYMBOL vmlinux 0x206df3b9 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x208787b5 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ac136e inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20d55d20 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x20d95414 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x210063b2 vio_register_device_node +EXPORT_SYMBOL vmlinux 0x21029d21 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x213603bf pasemi_dma_free_ring +EXPORT_SYMBOL vmlinux 0x21446ea7 set_blocksize +EXPORT_SYMBOL vmlinux 0x2156b299 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x215b6e27 __register_binfmt +EXPORT_SYMBOL vmlinux 0x216a1cf0 qdisc_list_add +EXPORT_SYMBOL vmlinux 0x21892626 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x219d53c4 seq_lseek +EXPORT_SYMBOL vmlinux 0x21be78ac of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e57e69 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x21ec9f37 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x21f3d04c agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x21f9bc47 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x22051df2 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x2212241e netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x2216e75d pci_assign_resource +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222ecbc4 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x2233db09 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x22360695 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x22415633 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x224c0b2c get_unmapped_area +EXPORT_SYMBOL vmlinux 0x224d4f51 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x22547b3e kset_register +EXPORT_SYMBOL vmlinux 0x225ebee6 _lv1_destruct_lpm +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2278e94b slhc_remember +EXPORT_SYMBOL vmlinux 0x22a429f1 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b39a05 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x22c10225 rwsem_down_write_failed_killable +EXPORT_SYMBOL vmlinux 0x22dd3b79 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x230bb5dd input_register_device +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x231efe84 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL vmlinux 0x23461154 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x235dbe6e mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x23755153 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x23930889 vme_irq_free +EXPORT_SYMBOL vmlinux 0x2396835e tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23a8fea6 phy_init_hw +EXPORT_SYMBOL vmlinux 0x23aab3c1 dev_notice +EXPORT_SYMBOL vmlinux 0x23acaf14 udp_proc_register +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x23e5525a md_update_sb +EXPORT_SYMBOL vmlinux 0x23e6da4c scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x23e74772 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free +EXPORT_SYMBOL vmlinux 0x23f324bc fsync_bdev +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24040954 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x240985d6 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x241cd10d scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x2428cdf6 fscrypt_get_policy +EXPORT_SYMBOL vmlinux 0x2433377a jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x2440f799 d_invalidate +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x24566870 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245f0908 proc_mkdir +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x24855cba __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x249cdd03 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x24c09abe generic_write_end +EXPORT_SYMBOL vmlinux 0x24c25e4f memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0x24c30c83 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x24cba37a param_set_ushort +EXPORT_SYMBOL vmlinux 0x24cfb647 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x24cfd438 _lv1_copy_lpm_trace_buffer +EXPORT_SYMBOL vmlinux 0x24f00380 ida_init +EXPORT_SYMBOL vmlinux 0x24f45ec9 mount_bdev +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x25008152 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x2501c20d netlink_broadcast +EXPORT_SYMBOL vmlinux 0x250d942a mach_maple +EXPORT_SYMBOL vmlinux 0x251d2790 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x253c2744 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x25592ab7 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x2575161e call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x2576c503 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258ab378 set_device_ro +EXPORT_SYMBOL vmlinux 0x25a8d34c pci_add_resource +EXPORT_SYMBOL vmlinux 0x25b6b8f7 _lv1_set_spe_transition_notifier +EXPORT_SYMBOL vmlinux 0x25b79368 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x25c5f6e3 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x25d58efe backlight_device_register +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x260aa9ef jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x260dbfae d_splice_alias +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c2532 inode_change_ok +EXPORT_SYMBOL vmlinux 0x265594ab param_get_ullong +EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update +EXPORT_SYMBOL vmlinux 0x266af4f6 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x268eceee override_creds +EXPORT_SYMBOL vmlinux 0x269824ba nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x269f6225 genphy_read_status +EXPORT_SYMBOL vmlinux 0x26aeaf50 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x26b57a15 ab3100_event_register +EXPORT_SYMBOL vmlinux 0x26b760c4 slhc_init +EXPORT_SYMBOL vmlinux 0x26c4a722 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26f41f86 fb_find_mode +EXPORT_SYMBOL vmlinux 0x27041d71 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x270942cb reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x270e8665 blk_init_tags +EXPORT_SYMBOL vmlinux 0x27222c39 kill_bdev +EXPORT_SYMBOL vmlinux 0x273c001c param_array_ops +EXPORT_SYMBOL vmlinux 0x273d62ab del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x2748265a scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x274a2e43 generic_setxattr +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x27646df3 start_thread +EXPORT_SYMBOL vmlinux 0x2771d7ff ida_get_new_above +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x278ac8e0 dev_change_xdp_fd +EXPORT_SYMBOL vmlinux 0x278e1daf pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x278e223d get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x2793746e jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c21155 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x27cffb9d locks_init_lock +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27e85bfe xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x27f84e43 dup_iter +EXPORT_SYMBOL vmlinux 0x28067e9e km_report +EXPORT_SYMBOL vmlinux 0x28166464 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x282ec91c inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x28318305 snprintf +EXPORT_SYMBOL vmlinux 0x2850bfd1 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x2856a5cb fifo_set_limit +EXPORT_SYMBOL vmlinux 0x28579536 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x2878d721 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x288a6efc vfs_readv +EXPORT_SYMBOL vmlinux 0x28931f9e security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x289db3ee idr_remove +EXPORT_SYMBOL vmlinux 0x289f93c3 __break_lease +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28a7beba __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x28abfe6e scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x28fa0bf7 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x2915b8f2 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x291e1dbc __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x2920d52e tcp_poll +EXPORT_SYMBOL vmlinux 0x292a4f05 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0x292d9cb6 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x293fa530 __vfs_read +EXPORT_SYMBOL vmlinux 0x29499b10 blk_stop_queue +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x2965ce3b fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x297f1a81 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x299eb94d mdio_device_remove +EXPORT_SYMBOL vmlinux 0x29aa8a2c tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x29d7d8cd mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x29f28887 freeze_super +EXPORT_SYMBOL vmlinux 0x2a08e46e dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x2a1204ef gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a5980a4 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x2a72c8d8 __alloc_skb +EXPORT_SYMBOL vmlinux 0x2ac09dd5 __nla_put +EXPORT_SYMBOL vmlinux 0x2acc5b11 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2adc173a sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x2ae42be1 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x2aebe6cd md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x2afbcf71 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x2b06284e neigh_app_ns +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b10b855 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b2d77d9 netdev_change_features +EXPORT_SYMBOL vmlinux 0x2b4991ec xmon +EXPORT_SYMBOL vmlinux 0x2b4a2e8d qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x2b57ce71 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba40443 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x2ba49d31 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bb64837 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x2bb7c27a get_task_exe_file +EXPORT_SYMBOL vmlinux 0x2bfe58cf scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x2c002d3b sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x2c017e11 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x2c1a6868 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c2b8755 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x2c2cdda4 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x2c3517b1 down_write +EXPORT_SYMBOL vmlinux 0x2c3a807c lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x2c4b8f11 abx500_register_ops +EXPORT_SYMBOL vmlinux 0x2c4c7997 _lv1_construct_lpm +EXPORT_SYMBOL vmlinux 0x2c4d6ac2 tcf_hash_search +EXPORT_SYMBOL vmlinux 0x2c531f13 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x2c756bf3 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout +EXPORT_SYMBOL vmlinux 0x2c845965 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x2c87d215 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x2cc3bc70 vme_irq_request +EXPORT_SYMBOL vmlinux 0x2cd21c80 dput +EXPORT_SYMBOL vmlinux 0x2ce329f0 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x2d0cb9ab component_match_add_release +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d38fe11 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x2d433ba8 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x2d4b98d5 compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0x2d4ed87b notify_change +EXPORT_SYMBOL vmlinux 0x2d580e52 bmap +EXPORT_SYMBOL vmlinux 0x2d7d2767 _lv1_set_lpm_group_control +EXPORT_SYMBOL vmlinux 0x2d878553 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x2d8c280a macio_dev_get +EXPORT_SYMBOL vmlinux 0x2d93b281 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x2da73faf genlmsg_put +EXPORT_SYMBOL vmlinux 0x2db1e0c6 dql_init +EXPORT_SYMBOL vmlinux 0x2dd90b0f serio_bus +EXPORT_SYMBOL vmlinux 0x2df0b550 d_lookup +EXPORT_SYMBOL vmlinux 0x2df320f9 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x2e067b1c vme_irq_generate +EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on +EXPORT_SYMBOL vmlinux 0x2e0d33f3 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x2e207ccf blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e421db9 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x2e499cc6 qdisc_reset +EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x2e59cf7a pci_remove_bus +EXPORT_SYMBOL vmlinux 0x2e6828e7 block_commit_write +EXPORT_SYMBOL vmlinux 0x2e76654d inet_accept +EXPORT_SYMBOL vmlinux 0x2e7a6690 inet_put_port +EXPORT_SYMBOL vmlinux 0x2e83d506 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x2e8a953b param_get_long +EXPORT_SYMBOL vmlinux 0x2e93495e _lv1_write_htab_entry +EXPORT_SYMBOL vmlinux 0x2eb524c0 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x2eb5e796 tty_port_put +EXPORT_SYMBOL vmlinux 0x2eb96577 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x2ec623d2 down_read +EXPORT_SYMBOL vmlinux 0x2ed7b84c sk_dst_check +EXPORT_SYMBOL vmlinux 0x2ee4337f smu_queue_cmd +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f1b4482 mutex_lock +EXPORT_SYMBOL vmlinux 0x2f21d026 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x2f287f0d copy_to_user +EXPORT_SYMBOL vmlinux 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL vmlinux 0x2f429c6d fb_set_suspend +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f62dafc ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x2f8346be blk_start_request +EXPORT_SYMBOL vmlinux 0x2f8b5834 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x2f90e590 compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x2f915832 abort_creds +EXPORT_SYMBOL vmlinux 0x2fae96de rtas_data_buf_lock +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2ffc0b3b dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x301fe5b8 dma_set_mask +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x3033f4e7 textsearch_register +EXPORT_SYMBOL vmlinux 0x3036fea3 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x30384aa2 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x303b62aa mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x304872a6 __free_pages +EXPORT_SYMBOL vmlinux 0x3056fc4e inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x306a7cef rtnl_create_link +EXPORT_SYMBOL vmlinux 0x3078e607 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x308056b6 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x3086a7d5 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x308c0418 param_get_byte +EXPORT_SYMBOL vmlinux 0x308e01fd ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id +EXPORT_SYMBOL vmlinux 0x30c76b81 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x30cb936b fasync_helper +EXPORT_SYMBOL vmlinux 0x30da5ee2 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0x30ef0d5d pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x3102287d mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x31092303 simple_getattr +EXPORT_SYMBOL vmlinux 0x310f02ec memremap +EXPORT_SYMBOL vmlinux 0x3115741d mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x3117bf31 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x3127f270 noop_qdisc +EXPORT_SYMBOL vmlinux 0x312cfaf2 _lv1_disable_logical_spe +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3145a881 kdb_current_task +EXPORT_SYMBOL vmlinux 0x3150bbda pnv_phb_to_cxl_mode +EXPORT_SYMBOL vmlinux 0x315870cc scm_detach_fds +EXPORT_SYMBOL vmlinux 0x315be7a1 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x316f5092 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x31a5f753 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x31ae9f4a eth_header +EXPORT_SYMBOL vmlinux 0x31b39880 of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0x31b7f300 _lv1_set_lpm_signal +EXPORT_SYMBOL vmlinux 0x31c661e7 put_io_context +EXPORT_SYMBOL vmlinux 0x31cd509a _lv1_net_control +EXPORT_SYMBOL vmlinux 0x31cd995b store_fp_state +EXPORT_SYMBOL vmlinux 0x31d7ccc3 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x31f04f3f __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x3200a27e vio_cmo_set_dev_desired +EXPORT_SYMBOL vmlinux 0x320e780c sock_wmalloc +EXPORT_SYMBOL vmlinux 0x32176bb9 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x323a48a7 nvm_submit_io +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x32541d04 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x327b9c1b pmu_poll_adb +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x328c0d90 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x329f713a of_match_device +EXPORT_SYMBOL vmlinux 0x32b3bc65 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x32bafa54 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x32c10c2f dev_trans_start +EXPORT_SYMBOL vmlinux 0x32c2cd70 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x32d414f4 mpage_readpage +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32f2ca09 macio_release_resource +EXPORT_SYMBOL vmlinux 0x331282ed tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x3318de08 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x3329d739 unregister_netdev +EXPORT_SYMBOL vmlinux 0x3333dfd3 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x33484a80 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x334a5662 sock_from_file +EXPORT_SYMBOL vmlinux 0x334ea6f7 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x334f92b6 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x33505a61 __dst_free +EXPORT_SYMBOL vmlinux 0x3354bdfc bdget_disk +EXPORT_SYMBOL vmlinux 0x33866922 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x339d777a mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x33a1fcd9 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x33b1f9bd pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33c81e50 machine_id +EXPORT_SYMBOL vmlinux 0x33cfa5ad mdiobus_write +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x3402511c dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x341bfb73 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x341e0d08 make_bad_inode +EXPORT_SYMBOL vmlinux 0x34235b58 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x34342014 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x3443cb06 simple_release_fs +EXPORT_SYMBOL vmlinux 0x3445e7e2 brioctl_set +EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x34527e09 bio_split +EXPORT_SYMBOL vmlinux 0x345c8916 strict_msr_control +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x346fdfde reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x3471ebbd blk_start_queue_async +EXPORT_SYMBOL vmlinux 0x347340d2 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x349957cd md_register_thread +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a9f1ee vm_zone_stat +EXPORT_SYMBOL vmlinux 0x34b5ad04 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x34c0d40b netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3526f120 vfs_writev +EXPORT_SYMBOL vmlinux 0x352fd579 save_mount_options +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x353c5720 netdev_update_features +EXPORT_SYMBOL vmlinux 0x354a6243 filp_open +EXPORT_SYMBOL vmlinux 0x3557adc5 stop_tty +EXPORT_SYMBOL vmlinux 0x356248f0 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x356b79ef iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x356c104a netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x358a89b5 skb_checksum +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 +EXPORT_SYMBOL vmlinux 0x35cfcc1e find_get_entries_tag +EXPORT_SYMBOL vmlinux 0x35d89d0e mmc_release_host +EXPORT_SYMBOL vmlinux 0x35ec2166 dma_pool_create +EXPORT_SYMBOL vmlinux 0x36114d24 pnv_pci_get_gpu_dev +EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy +EXPORT_SYMBOL vmlinux 0x364f8475 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy +EXPORT_SYMBOL vmlinux 0x367748ce phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x3695edda request_resource +EXPORT_SYMBOL vmlinux 0x36988564 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x369d8d7b skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x36acca61 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x36ad8056 elv_register_queue +EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36d67e49 blk_finish_request +EXPORT_SYMBOL vmlinux 0x36dee1a5 nf_log_register +EXPORT_SYMBOL vmlinux 0x36f4127a free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x371902e9 _lv1_get_lpm_interrupt_status +EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport +EXPORT_SYMBOL vmlinux 0x3721da55 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x3725893a radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x37339c9d blk_run_queue +EXPORT_SYMBOL vmlinux 0x37344510 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x373628fd inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x37383edd rtas_get_power_level +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x375b1744 udp_disconnect +EXPORT_SYMBOL vmlinux 0x375d770c down_read_trylock +EXPORT_SYMBOL vmlinux 0x37613521 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x3766df1e nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0x378afe79 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x3795cfce __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b6f668 cdev_del +EXPORT_SYMBOL vmlinux 0x37b744e1 sk_alloc +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37b99fb2 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c5d68a devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x37c735f8 irq_to_desc +EXPORT_SYMBOL vmlinux 0x37dac6bb of_device_register +EXPORT_SYMBOL vmlinux 0x37e0153d flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x37ec070f sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x3822d6da dquot_get_state +EXPORT_SYMBOL vmlinux 0x382777ab _lv1_gpu_context_allocate +EXPORT_SYMBOL vmlinux 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x386b59d0 console_start +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x389c87ee jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b825d1 idr_replace +EXPORT_SYMBOL vmlinux 0x38b829a4 dev_addr_init +EXPORT_SYMBOL vmlinux 0x38bf97ec jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x38e357a5 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x38f0478d devm_release_resource +EXPORT_SYMBOL vmlinux 0x38f0ce88 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x38f6d445 open_exec +EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios +EXPORT_SYMBOL vmlinux 0x39059aac nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x390936a3 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x390969b1 __pagevec_release +EXPORT_SYMBOL vmlinux 0x3932b6d3 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x39371a41 kill_anon_super +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394dba94 __genl_register_family +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x396abd66 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x39732482 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x3998f2ee padata_free +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39a84f93 set_cached_acl +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x39d93237 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x3a004ab0 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x3a07abbb ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x3a09ef99 dm_put_device +EXPORT_SYMBOL vmlinux 0x3a2a538c pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x3a4de076 cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x3a569f81 dev_deactivate +EXPORT_SYMBOL vmlinux 0x3a5b125c register_md_personality +EXPORT_SYMBOL vmlinux 0x3a6735ea sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x3a7e2ecd dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x3a93bdb8 make_kprojid +EXPORT_SYMBOL vmlinux 0x3a99e008 generic_make_request +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aa453a2 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x3abb2234 generic_removexattr +EXPORT_SYMBOL vmlinux 0x3ace19d8 block_truncate_page +EXPORT_SYMBOL vmlinux 0x3ad04fc5 register_netdevice +EXPORT_SYMBOL vmlinux 0x3add7362 md_write_end +EXPORT_SYMBOL vmlinux 0x3afa4fc9 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x3b002667 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x3b0c4b0d pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x3b3ffc94 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x3b435936 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x3b443018 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b70ea2d phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x3b84b317 vme_register_driver +EXPORT_SYMBOL vmlinux 0x3b8b34c5 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x3b953a70 allocate_resource +EXPORT_SYMBOL vmlinux 0x3bac85b9 wake_up_process +EXPORT_SYMBOL vmlinux 0x3bad8147 agp_enable +EXPORT_SYMBOL vmlinux 0x3bc38d37 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x3bdd3a26 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x3be10c63 blk_init_queue +EXPORT_SYMBOL vmlinux 0x3c0dfff9 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x3c105878 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c1fd500 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x3c209514 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c6d8f10 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x3c7c529f __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x3c7f19e5 vme_bus_num +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c937712 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x3c9acae8 pnv_pci_get_phb_node +EXPORT_SYMBOL vmlinux 0x3cbc752a kmem_cache_size +EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init +EXPORT_SYMBOL vmlinux 0x3ccf9e0e skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x3cde0801 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cef902a bio_integrity_free +EXPORT_SYMBOL vmlinux 0x3cf704f1 netdev_state_change +EXPORT_SYMBOL vmlinux 0x3d302685 set_page_dirty +EXPORT_SYMBOL vmlinux 0x3d654821 napi_get_frags +EXPORT_SYMBOL vmlinux 0x3d6bb1ac nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x3d6e92ac clear_user_page +EXPORT_SYMBOL vmlinux 0x3d756140 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x3d898e36 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x3d8dc533 phy_disconnect +EXPORT_SYMBOL vmlinux 0x3db6f909 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x3dbfc8ae filemap_map_pages +EXPORT_SYMBOL vmlinux 0x3dc02a4e flex_array_free_parts +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3de873e5 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e00c518 param_get_ushort +EXPORT_SYMBOL vmlinux 0x3e0166da agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x3e1c7a7d tcp_read_sock +EXPORT_SYMBOL vmlinux 0x3e200b59 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x3e2286cd __radix_tree_insert +EXPORT_SYMBOL vmlinux 0x3e286dca _lv1_get_rtc +EXPORT_SYMBOL vmlinux 0x3e2a3541 bio_phys_segments +EXPORT_SYMBOL vmlinux 0x3e3025d5 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x3e3c5a9a pnv_cxl_release_hwirq_ranges +EXPORT_SYMBOL vmlinux 0x3e3e280d of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x3e7a9ad9 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x3e7c311a security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3e9c4315 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x3ec4736a mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x3f034ed4 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x3f0389a8 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f06a656 _lv1_construct_event_receive_port +EXPORT_SYMBOL vmlinux 0x3f0718ff unregister_shrinker +EXPORT_SYMBOL vmlinux 0x3f0984bd pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x3f0fcd96 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x3f1d36bc filemap_check_errors +EXPORT_SYMBOL vmlinux 0x3f231ef8 get_agp_version +EXPORT_SYMBOL vmlinux 0x3f2dbc2c __vio_register_driver +EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec +EXPORT_SYMBOL vmlinux 0x3f452421 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f5c6471 del_timer_sync +EXPORT_SYMBOL vmlinux 0x3f6adfb4 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x3f72eed3 of_get_property +EXPORT_SYMBOL vmlinux 0x3f86eb78 mpage_writepage +EXPORT_SYMBOL vmlinux 0x3f8d1354 napi_complete_done +EXPORT_SYMBOL vmlinux 0x3fbfd6ed _lv1_gpu_open +EXPORT_SYMBOL vmlinux 0x3fe0d1c0 slhc_free +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ff8e495 lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x3ff8fcc5 PDE_DATA +EXPORT_SYMBOL vmlinux 0x3ffd5e76 register_filesystem +EXPORT_SYMBOL vmlinux 0x40017aca __lock_page +EXPORT_SYMBOL vmlinux 0x4004a535 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x4015d855 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x403ef238 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x403f8e22 dquot_release +EXPORT_SYMBOL vmlinux 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x406c3d10 dev_crit +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40af9c7a __elv_add_request +EXPORT_SYMBOL vmlinux 0x40b8f7fc keyring_clear +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d9fc01 vme_bus_type +EXPORT_SYMBOL vmlinux 0x40f731e6 __block_write_full_page +EXPORT_SYMBOL vmlinux 0x40fc5365 lock_page_memcg +EXPORT_SYMBOL vmlinux 0x41361807 _lv1_get_logical_ppe_id +EXPORT_SYMBOL vmlinux 0x414629e9 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x4147e2a8 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414932ee blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x4159c38f ioremap_wc +EXPORT_SYMBOL vmlinux 0x4174bce7 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x41759b02 __check_sticky +EXPORT_SYMBOL vmlinux 0x41817774 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x4188b269 udp_set_csum +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41a958a8 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x41b3f0fc touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x41cba805 inc_node_state +EXPORT_SYMBOL vmlinux 0x41dbf4de _lv1_start_lpm +EXPORT_SYMBOL vmlinux 0x41f3bf1a radix__flush_tlb_range +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x421bf541 seq_file_path +EXPORT_SYMBOL vmlinux 0x422839c6 bio_chain +EXPORT_SYMBOL vmlinux 0x42405aad start_tty +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x426e1b73 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x4271d007 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x42799ee2 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0x42934613 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x42c2a649 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x42cdfa27 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x42f0d345 input_set_keycode +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x430309c2 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x4310a368 free_netdev +EXPORT_SYMBOL vmlinux 0x433d719e pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x434e6480 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x4355393b pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all +EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x43aa994f nd_device_register +EXPORT_SYMBOL vmlinux 0x43bd0b27 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x43d1c82f inet_frag_kill +EXPORT_SYMBOL vmlinux 0x43f05c4e __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x43f4a799 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x43f6cacb blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x43f7ae41 devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x43fcb03f scsi_device_put +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x44308895 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x443e1515 of_find_property +EXPORT_SYMBOL vmlinux 0x443e86b3 key_put +EXPORT_SYMBOL vmlinux 0x4446ee2f dquot_commit +EXPORT_SYMBOL vmlinux 0x444bbb1a of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x445027c2 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x445786a0 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x445a97b8 powerpc_debugfs_root +EXPORT_SYMBOL vmlinux 0x445f7b3f devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x447c5e4a fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x448d7e9e jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup +EXPORT_SYMBOL vmlinux 0x449493d5 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x449c76b1 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x44a800e9 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x44aa3332 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x44b5ee9a kasprintf +EXPORT_SYMBOL vmlinux 0x44b96aaf bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x44cbc3af pipe_lock +EXPORT_SYMBOL vmlinux 0x44cd3266 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion +EXPORT_SYMBOL vmlinux 0x44ecf5df ps2_command +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x450bd37e __pmd_index_size +EXPORT_SYMBOL vmlinux 0x452c57d8 elv_rb_find +EXPORT_SYMBOL vmlinux 0x4530af79 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x4564459b _lv1_set_virtual_uart_param +EXPORT_SYMBOL vmlinux 0x456e47ee i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x4578971e page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x458970a2 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x45a55ec8 __iounmap +EXPORT_SYMBOL vmlinux 0x45ae5419 dquot_resume +EXPORT_SYMBOL vmlinux 0x45c93a0f jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x45cca2c7 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x45cfe80b pasemi_dma_free_flag +EXPORT_SYMBOL vmlinux 0x45da7f5a i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x4601cb4b seq_puts +EXPORT_SYMBOL vmlinux 0x460a1558 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock +EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user +EXPORT_SYMBOL vmlinux 0x4626db50 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x463db3d7 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x4657ebaa fence_context_alloc +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x466f3672 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x4674ec42 __pgd_val_bits +EXPORT_SYMBOL vmlinux 0x4676b811 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x467e282c skb_seq_read +EXPORT_SYMBOL vmlinux 0x4688444a pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x4689a509 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x468bb344 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x468f3744 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x46a2b8e7 pci_request_regions +EXPORT_SYMBOL vmlinux 0x46aef2ad pci_enable_device +EXPORT_SYMBOL vmlinux 0x46afd532 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46c4fb20 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x46cfdb4a blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x46d6f305 would_dump +EXPORT_SYMBOL vmlinux 0x46d90a56 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x46db7b19 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x47339bb0 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x473734af inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x474462cc __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x476e6f39 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0x478863b8 sock_rfree +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47aa7f46 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x47c631b1 agp_put_bridge +EXPORT_SYMBOL vmlinux 0x47cff55e skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x47d4cd6c jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x47eab9c0 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x4815f22b _lv1_gpu_attribute +EXPORT_SYMBOL vmlinux 0x48251e4e pci_select_bars +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x48346f82 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x4841b5f0 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x4843a1b9 _lv1_delete_repository_node +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x4881efab pmac_get_partition +EXPORT_SYMBOL vmlinux 0x488e4ea2 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x4898cf1e dev_alloc_name +EXPORT_SYMBOL vmlinux 0x4899c08a nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x489ed263 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x489ee4f0 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x48a59039 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x48aaa8f6 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48cd3586 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x48f38c26 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x490260e1 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x4904818b max8998_update_reg +EXPORT_SYMBOL vmlinux 0x49049b47 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x492b7d29 kobject_get +EXPORT_SYMBOL vmlinux 0x492de8f6 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x495ec6eb pasemi_dma_alloc_buf +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x49615905 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x496c244f get_user_pages +EXPORT_SYMBOL vmlinux 0x49711ff3 ip_defrag +EXPORT_SYMBOL vmlinux 0x4982d0a9 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x49905d94 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x499fa0cf handle_edge_irq +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49bfa04d ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x49ca7433 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x49d6b0d7 nf_afinfo +EXPORT_SYMBOL vmlinux 0x49e62c7b mach_powernv +EXPORT_SYMBOL vmlinux 0x49e91d55 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a38b698 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x4a4fa0b4 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x4a54cc05 inet_gso_segment +EXPORT_SYMBOL vmlinux 0x4a561b2e wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x4a6a7797 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x4a6c00e6 tcp_close +EXPORT_SYMBOL vmlinux 0x4a9222c9 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x4ab4a819 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x4ab78750 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x4ac64da4 _lv1_select_virtual_address_space +EXPORT_SYMBOL vmlinux 0x4ad2a57a opal_event_request +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b1762d3 init_special_inode +EXPORT_SYMBOL vmlinux 0x4b3cb349 _lv1_destruct_io_irq_outlet +EXPORT_SYMBOL vmlinux 0x4b45710c __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x4b487c2b kernel_accept +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b64630d netdev_alert +EXPORT_SYMBOL vmlinux 0x4b6fcddc _lv1_set_spe_interrupt_mask +EXPORT_SYMBOL vmlinux 0x4b8326ff ida_remove +EXPORT_SYMBOL vmlinux 0x4b879368 mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x4b9cec29 dev_alert +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bb84134 proc_remove +EXPORT_SYMBOL vmlinux 0x4bbfd01e dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x4bc53cf1 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x4beae788 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x4bed99b3 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0x4c0138c7 filp_clone_open +EXPORT_SYMBOL vmlinux 0x4c02be64 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c3eba95 phy_device_create +EXPORT_SYMBOL vmlinux 0x4c4eea1f scsi_ioctl +EXPORT_SYMBOL vmlinux 0x4c5d07ae path_is_under +EXPORT_SYMBOL vmlinux 0x4c93bffe textsearch_destroy +EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf +EXPORT_SYMBOL vmlinux 0x4cc1cb6a genphy_resume +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4cdce63d d_drop +EXPORT_SYMBOL vmlinux 0x4ce69f3f xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x4d00b213 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x4d0d3e09 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x4d40e9c4 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x4d41c44f jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x4d4329cf mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x4d478e62 revert_creds +EXPORT_SYMBOL vmlinux 0x4d4cb014 read_cache_pages +EXPORT_SYMBOL vmlinux 0x4d5f0b86 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x4d61a74e thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x4d791953 mempool_resize +EXPORT_SYMBOL vmlinux 0x4d953491 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4daf3628 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x4dc65439 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x4dcc5fcc sock_create_kern +EXPORT_SYMBOL vmlinux 0x4dd90747 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df42a9d pci_save_state +EXPORT_SYMBOL vmlinux 0x4e0c9a09 user_path_create +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e4a8684 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x4e4d0272 dec_node_page_state +EXPORT_SYMBOL vmlinux 0x4e51a4c2 pmac_resume_agp_for_card +EXPORT_SYMBOL vmlinux 0x4e58ac9a blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e69be7b macio_register_driver +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e70cff1 netdev_all_lower_get_next_rcu +EXPORT_SYMBOL vmlinux 0x4e766463 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x4ea1f642 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x4ea77063 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x4ea9f55c xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x4eb6d0fa fscrypt_fname_encrypted_size +EXPORT_SYMBOL vmlinux 0x4ec03d24 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x4ee5fd38 vfs_fsync +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f2691f8 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x4f3245f5 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f58c40a elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x4f664db6 _lv1_insert_htab_entry +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f6e1604 put_tty_driver +EXPORT_SYMBOL vmlinux 0x4f79dd6e nla_reserve +EXPORT_SYMBOL vmlinux 0x4f861ba0 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x4f896405 i8042_install_filter +EXPORT_SYMBOL vmlinux 0x4f9293de blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x4f9c7eb5 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x4fa36e58 vfs_write +EXPORT_SYMBOL vmlinux 0x4fa4dc95 napi_disable +EXPORT_SYMBOL vmlinux 0x4fbae6a6 uuid_le_to_bin +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4ff02544 simple_setattr +EXPORT_SYMBOL vmlinux 0x4ff88734 dev_mc_del +EXPORT_SYMBOL vmlinux 0x5000c7f7 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5027820f skb_clone_sk +EXPORT_SYMBOL vmlinux 0x505fac1f dump_page +EXPORT_SYMBOL vmlinux 0x5079c9d7 __pte_index_size +EXPORT_SYMBOL vmlinux 0x507fdd7f pci_platform_rom +EXPORT_SYMBOL vmlinux 0x50987472 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x50a59320 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x50bece57 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x50c3df7d sk_stop_timer +EXPORT_SYMBOL vmlinux 0x50c616d1 dst_init +EXPORT_SYMBOL vmlinux 0x50d33d77 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x50db2d72 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x50efc9a8 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x5103410b request_firmware +EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x51508fa1 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x517d5143 unregister_console +EXPORT_SYMBOL vmlinux 0x517e007e of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x51806067 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x51841de1 netif_device_detach +EXPORT_SYMBOL vmlinux 0x518909c3 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait +EXPORT_SYMBOL vmlinux 0x51a46618 seq_release +EXPORT_SYMBOL vmlinux 0x51aa7205 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x51b57c7c dmam_pool_create +EXPORT_SYMBOL vmlinux 0x51be467e nf_register_hooks +EXPORT_SYMBOL vmlinux 0x51e06208 bio_endio +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x521c18a5 register_shrinker +EXPORT_SYMBOL vmlinux 0x524562d8 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x524859ef md_unregister_thread +EXPORT_SYMBOL vmlinux 0x5256fcde neigh_lookup +EXPORT_SYMBOL vmlinux 0x5257798b get_super +EXPORT_SYMBOL vmlinux 0x5258bddc neigh_connected_output +EXPORT_SYMBOL vmlinux 0x5266163e rtnl_notify +EXPORT_SYMBOL vmlinux 0x527830ff pmac_xpram_read +EXPORT_SYMBOL vmlinux 0x52826ea0 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x52953499 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52a222f0 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x52b6cb63 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x52bb02f4 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x52bed6df __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x52d77289 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x52e1655c __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x52e3fa05 _lv1_allocate_memory +EXPORT_SYMBOL vmlinux 0x52fac8c9 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x53002982 param_set_ullong +EXPORT_SYMBOL vmlinux 0x53016e57 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x5308e350 __vmalloc_start +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x530d6930 devm_gpio_request +EXPORT_SYMBOL vmlinux 0x53175f4d inet_getname +EXPORT_SYMBOL vmlinux 0x532b68b0 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x532e8c57 try_module_get +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x533684ad swake_up +EXPORT_SYMBOL vmlinux 0x5339f5f8 _lv1_read_virtual_uart +EXPORT_SYMBOL vmlinux 0x5342282b bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x534a902f sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x536e7709 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x53759e22 dev_load +EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin +EXPORT_SYMBOL vmlinux 0x537df66f ps2_init +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53a24f82 keyring_search +EXPORT_SYMBOL vmlinux 0x53b16419 dquot_operations +EXPORT_SYMBOL vmlinux 0x53b6f653 sock_i_ino +EXPORT_SYMBOL vmlinux 0x53e669c0 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x5412c7c7 up +EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x5430266b scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x543e03c5 to_ndd +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5451c11a tcp_req_err +EXPORT_SYMBOL vmlinux 0x5454ead2 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x5456a423 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x5461717c vio_enable_interrupts +EXPORT_SYMBOL vmlinux 0x54700f18 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x5473080f radix__flush_pmd_tlb_range +EXPORT_SYMBOL vmlinux 0x547e75e5 sk_net_capable +EXPORT_SYMBOL vmlinux 0x54884503 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x54a5e6b1 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54b71c5d devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x54c1603d mmc_register_driver +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54c34f9d load_nls +EXPORT_SYMBOL vmlinux 0x54c6379a kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0x54d43304 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x54d45d30 nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x55089e35 srp_reconnect_rport +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x551c0262 md_flush_request +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x554cb754 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x5568c553 complete +EXPORT_SYMBOL vmlinux 0x557b3dd8 _lv1_gpu_close +EXPORT_SYMBOL vmlinux 0x5581d19e default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x55875a87 udplite_prot +EXPORT_SYMBOL vmlinux 0x55878e79 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x558e95fe param_set_bint +EXPORT_SYMBOL vmlinux 0x55ae01ff fb_set_var +EXPORT_SYMBOL vmlinux 0x55b7efba validate_sp +EXPORT_SYMBOL vmlinux 0x55c4d8a2 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x55cd7e4d may_umount +EXPORT_SYMBOL vmlinux 0x55d023d0 radix__flush_tlb_mm +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55ea2f35 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node +EXPORT_SYMBOL vmlinux 0x560cc492 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x56320ac5 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x56412b07 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x5644be0c inode_permission +EXPORT_SYMBOL vmlinux 0x568804ee _lv1_destruct_event_receive_port +EXPORT_SYMBOL vmlinux 0x568e3bd2 key_validate +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x5690ce3a tty_port_hangup +EXPORT_SYMBOL vmlinux 0x56a53e90 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x56acb06a __scm_destroy +EXPORT_SYMBOL vmlinux 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL vmlinux 0x56b0852f seq_dentry +EXPORT_SYMBOL vmlinux 0x56b74976 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x56ba47fe vfs_unlink +EXPORT_SYMBOL vmlinux 0x56c2b95b rtas_progress +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56ddd997 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x56e6b6db devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x56f07510 is_bad_inode +EXPORT_SYMBOL vmlinux 0x56f6c7de lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x56fd6da2 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x572647d6 get_mce_fault_addr +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x5740eb1b vlan_vid_add +EXPORT_SYMBOL vmlinux 0x5749e9cb pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x5760478d blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x57798c69 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x579bab50 _lv1_gpu_memory_free +EXPORT_SYMBOL vmlinux 0x57bc722d inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x57c033af vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x57d727b4 blk_peek_request +EXPORT_SYMBOL vmlinux 0x57f0dc89 migrate_page +EXPORT_SYMBOL vmlinux 0x57f10518 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x57f34a29 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x57fccc4e vmap +EXPORT_SYMBOL vmlinux 0x580be8cf tty_lock +EXPORT_SYMBOL vmlinux 0x580db199 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x581e640a posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582a92ff sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x584df7b9 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x585e6b46 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x5864e24e touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x587559f1 mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x587699af tcp_conn_request +EXPORT_SYMBOL vmlinux 0x587b6d67 seq_printf +EXPORT_SYMBOL vmlinux 0x58850450 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x588d7348 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x58aadf79 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58d8f5f2 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x58da4c3f scsi_block_requests +EXPORT_SYMBOL vmlinux 0x58da8bb1 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58edf4f4 clone_cred +EXPORT_SYMBOL vmlinux 0x58f5e456 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x59054ae5 __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x591eaec8 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x59267eae inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x592b2b30 radix__flush_tlb_pwc +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x594f48e8 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page +EXPORT_SYMBOL vmlinux 0x598a3b30 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59b3378a completion_done +EXPORT_SYMBOL vmlinux 0x59b6bcc0 ps3_sb_event_receive_port_destroy +EXPORT_SYMBOL vmlinux 0x59bd4f7f fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x59e1477a tcp_child_process +EXPORT_SYMBOL vmlinux 0x59eed1d4 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x59f763b1 rt6_lookup +EXPORT_SYMBOL vmlinux 0x59fbba95 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x5a025f7b arch_local_irq_restore +EXPORT_SYMBOL vmlinux 0x5a0a7235 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x5a0aaa12 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a0e0006 noop_llseek +EXPORT_SYMBOL vmlinux 0x5a2b1de3 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x5a2cda3e trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x5a35fcf7 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x5a66a58c gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x5a6921b5 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a968956 udp_poll +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5aa8f3d8 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x5ac6313e tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x5ac7ca48 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x5acf734d param_ops_charp +EXPORT_SYMBOL vmlinux 0x5ad1fdc9 skb_trim +EXPORT_SYMBOL vmlinux 0x5ad5dc7a blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x5af8cff2 tty_port_close +EXPORT_SYMBOL vmlinux 0x5afbe820 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b06636c inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0x5b37da3d pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x5b43f118 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x5b43f1f1 rtas_service_present +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b5a94af jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x5b5d3a54 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x5b6d34f8 pnv_cxl_ioda_msi_setup +EXPORT_SYMBOL vmlinux 0x5b89cfab bdi_register_owner +EXPORT_SYMBOL vmlinux 0x5b8d75b6 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x5b904b61 dev_add_pack +EXPORT_SYMBOL vmlinux 0x5b956ef8 netdev_warn +EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit +EXPORT_SYMBOL vmlinux 0x5bc9a4ea follow_pfn +EXPORT_SYMBOL vmlinux 0x5bd80976 __blk_run_queue +EXPORT_SYMBOL vmlinux 0x5be5f177 agp_backend_release +EXPORT_SYMBOL vmlinux 0x5bff94b8 mapping_tagged +EXPORT_SYMBOL vmlinux 0x5c092c3c tty_register_device +EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x5c4344d1 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x5c48d163 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x5c5794ac iov_iter_npages +EXPORT_SYMBOL vmlinux 0x5c6a1aa7 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x5c6b0a08 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x5c75b1d6 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x5c84f20a inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x5c87539b mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x5c942219 scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x5ca32cb8 tty_port_open +EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x5ccc9045 _lv1_close_device +EXPORT_SYMBOL vmlinux 0x5cf30e10 __debugger_ipi +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfbff01 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x5cfdc798 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x5d3c1e45 vfs_setpos +EXPORT_SYMBOL vmlinux 0x5d4a8320 kvasprintf +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d56eba0 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x5d609ad2 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x5d76a9a3 pcim_iomap +EXPORT_SYMBOL vmlinux 0x5db965c7 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x5dcdba3b vm_mmap +EXPORT_SYMBOL vmlinux 0x5de0d5ae kernel_sendpage +EXPORT_SYMBOL vmlinux 0x5de84e86 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x5df86432 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x5e18af90 param_get_uint +EXPORT_SYMBOL vmlinux 0x5e23be4b inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x5e2dfdb0 mount_subtree +EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up +EXPORT_SYMBOL vmlinux 0x5e5e23dd generic_fillattr +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ec29120 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x5ec425c0 skb_pull +EXPORT_SYMBOL vmlinux 0x5ec6b150 nf_log_packet +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5eddb914 lockref_put_return +EXPORT_SYMBOL vmlinux 0x5edde0e3 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x5eea7d82 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x5ef4c113 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x5ef67151 phy_find_first +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f210e57 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x5f81b660 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base +EXPORT_SYMBOL vmlinux 0x5fd96080 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x600d0d86 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x601168eb key_alloc +EXPORT_SYMBOL vmlinux 0x60159d8e netlink_set_err +EXPORT_SYMBOL vmlinux 0x601b44cb fb_blank +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x60460523 vfs_symlink +EXPORT_SYMBOL vmlinux 0x604ad34e genl_notify +EXPORT_SYMBOL vmlinux 0x60571502 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x60613e0b ping_prot +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x608262f9 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x6088e97d __SetPageMovable +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x6093e03e netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x609c8cef memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a7cbc3 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x60bd39aa sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x60c1e447 up_write +EXPORT_SYMBOL vmlinux 0x60c592e3 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x60f3f033 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x61069dff tcp_init_sock +EXPORT_SYMBOL vmlinux 0x611944f5 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x611cb0bf inet_listen +EXPORT_SYMBOL vmlinux 0x61229b10 node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61401275 skb_push +EXPORT_SYMBOL vmlinux 0x61480abb blk_register_region +EXPORT_SYMBOL vmlinux 0x61847242 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x6194eaa4 pnv_cxl_get_irq_count +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x619ec53b swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x61a4487c _lv1_gpu_device_unmap +EXPORT_SYMBOL vmlinux 0x61a7fb3b pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x61a8c163 simple_rmdir +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61d45e70 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x61dcdcd3 _lv1_pause +EXPORT_SYMBOL vmlinux 0x61dcf24a trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb +EXPORT_SYMBOL vmlinux 0x61f55ab1 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x6210cda0 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x621e8cdc read_dev_sector +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x622d91ca km_state_expired +EXPORT_SYMBOL vmlinux 0x62538167 slhc_toss +EXPORT_SYMBOL vmlinux 0x625435d3 kern_path +EXPORT_SYMBOL vmlinux 0x62695f4c fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x6280e521 no_llseek +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x6298c3c5 ps3_dma_region_init +EXPORT_SYMBOL vmlinux 0x62af2fd0 reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x62bd3722 dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x62be7af2 free_task +EXPORT_SYMBOL vmlinux 0x62c82aa4 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0x62dec3cb gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x62e87657 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x62f49e30 seq_release_private +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x63205e31 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x63396aec __debugger_break_match +EXPORT_SYMBOL vmlinux 0x6354a537 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x6360d639 cpu_all_bits +EXPORT_SYMBOL vmlinux 0x6369f81d udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x63790e1e input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x637c98f7 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x6386b4a2 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x639ee1a2 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d603f8 proc_symlink +EXPORT_SYMBOL vmlinux 0x63d936e6 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f75920 _lv1_construct_virtual_address_space +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64068b4b param_ops_byte +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6424cb17 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x64421194 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x646cc6ab pmu_poll +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a0cba8 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64c12089 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x64c84166 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x64ccb2ef nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x64ccd8a9 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x6513af23 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x651cea40 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x65711ebe mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x658f3638 set_security_override +EXPORT_SYMBOL vmlinux 0x659828b9 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x6599eddb of_get_parent +EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x65bf6153 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x65c4d381 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65dd42dc km_query +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65efb7cb bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x66167705 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x661a49d5 wireless_send_event +EXPORT_SYMBOL vmlinux 0x661f3cad mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x6634d137 find_get_entry +EXPORT_SYMBOL vmlinux 0x665f469a dst_release +EXPORT_SYMBOL vmlinux 0x667e4f20 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x668a3c48 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x66962d43 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x669b1bd9 dev_get_stats +EXPORT_SYMBOL vmlinux 0x66ad1cb3 _lv1_set_lpm_general_control +EXPORT_SYMBOL vmlinux 0x66b4c17d vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x66b8970d pci_get_subsys +EXPORT_SYMBOL vmlinux 0x66cbf14b pmac_xpram_write +EXPORT_SYMBOL vmlinux 0x66cdc8e5 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x66e60394 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x66ebe449 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x66ef064d bio_clone_fast +EXPORT_SYMBOL vmlinux 0x66f7e0ce d_path +EXPORT_SYMBOL vmlinux 0x66f9f8ad kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x66fdcf9d downgrade_write +EXPORT_SYMBOL vmlinux 0x6728451f ip_getsockopt +EXPORT_SYMBOL vmlinux 0x6728d4f7 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x67387acd of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x67596761 inet_release +EXPORT_SYMBOL vmlinux 0x67770e27 ata_print_version +EXPORT_SYMBOL vmlinux 0x677bc32a dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x67836f6e filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x67886f95 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x6789f1e9 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x678a4bdd max8998_read_reg +EXPORT_SYMBOL vmlinux 0x679205fd phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x67a9a107 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67ba0edb xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x67d61478 agp_generic_enable +EXPORT_SYMBOL vmlinux 0x6806e488 get_cached_acl +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x681dba53 netdev_emerg +EXPORT_SYMBOL vmlinux 0x685b6ed5 msi_bitmap_free_hwirqs +EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit +EXPORT_SYMBOL vmlinux 0x686fad4a dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x6877b165 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x6880b55a security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x6882e21c mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x688e872f pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68ae795a vio_h_cop_sync +EXPORT_SYMBOL vmlinux 0x68c96393 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x68d62096 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x68dd1585 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x68e1ef51 smu_present +EXPORT_SYMBOL vmlinux 0x68e7dbee pci_pme_active +EXPORT_SYMBOL vmlinux 0x68e909b1 sg_miter_next +EXPORT_SYMBOL vmlinux 0x68eb26f8 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x6909440b __pgd_table_size +EXPORT_SYMBOL vmlinux 0x690d850e mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x69105137 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x6919965d dev_mc_sync +EXPORT_SYMBOL vmlinux 0x694f5ba3 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x695896f8 simple_rename +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x69741516 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x6981978e key_task_permission +EXPORT_SYMBOL vmlinux 0x698e0fd8 compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x699ccbf8 _lv1_deconfigure_virtual_uart_irq +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69cd5ace pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x69db46fc pnv_cxl_alloc_hwirq_ranges +EXPORT_SYMBOL vmlinux 0x69f5e46f kill_pgrp +EXPORT_SYMBOL vmlinux 0x69f887da fb_show_logo +EXPORT_SYMBOL vmlinux 0x69fc2699 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a0715b7 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x6a1c5ff1 get_task_io_context +EXPORT_SYMBOL vmlinux 0x6a35f41e seq_escape +EXPORT_SYMBOL vmlinux 0x6a3e3e42 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x6a5c4c54 inet6_bind +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a779e93 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x6a9ae7e1 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x6aac81bf md_cluster_mod +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6ad958fd fscrypt_encrypt_page +EXPORT_SYMBOL vmlinux 0x6aeb86e7 scsi_device_get +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6afcea4a pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b08ce44 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b28218a fb_deferred_io_mmap +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b358cab _lv1_read_repository_node +EXPORT_SYMBOL vmlinux 0x6b387694 _lv1_end_of_interrupt_ext +EXPORT_SYMBOL vmlinux 0x6b4f937f __page_symlink +EXPORT_SYMBOL vmlinux 0x6b589a6e _lv1_net_add_multicast_address +EXPORT_SYMBOL vmlinux 0x6b5dfe73 __debugger_bpt +EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6b654308 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x6b6f0c4b _lv1_create_repository_node +EXPORT_SYMBOL vmlinux 0x6b88222c block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x6b89abe5 md_error +EXPORT_SYMBOL vmlinux 0x6b94dea9 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x6bb996f0 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x6bba381e genphy_config_init +EXPORT_SYMBOL vmlinux 0x6bc34d8c set_nlink +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6bf53320 dma_direct_ops +EXPORT_SYMBOL vmlinux 0x6bf8f029 genphy_suspend +EXPORT_SYMBOL vmlinux 0x6c088044 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x6c1f22eb nd_iostat_end +EXPORT_SYMBOL vmlinux 0x6c31bd42 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x6c3c3b6f bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x6c3d2674 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x6c42572e netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c8059d3 md_check_recovery +EXPORT_SYMBOL vmlinux 0x6c8c73be mdiobus_read +EXPORT_SYMBOL vmlinux 0x6c8d4f41 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x6c8e5018 thaw_bdev +EXPORT_SYMBOL vmlinux 0x6c942d2a xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x6ca543a7 unlock_buffer +EXPORT_SYMBOL vmlinux 0x6cb37127 flex_array_clear +EXPORT_SYMBOL vmlinux 0x6cb4cb53 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x6cbe6161 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x6cc00db5 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x6cd38347 fscrypt_fname_usr_to_disk +EXPORT_SYMBOL vmlinux 0x6ce2ee44 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x6cf85a15 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x6cfb9dc0 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d1743eb _lv1_get_total_execution_time +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d2a4831 netlink_ack +EXPORT_SYMBOL vmlinux 0x6d740223 flex_array_put +EXPORT_SYMBOL vmlinux 0x6d7c5e6d tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x6d878fcd jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x6d9fcaae blk_execute_rq +EXPORT_SYMBOL vmlinux 0x6da91a9b setup_arg_pages +EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns +EXPORT_SYMBOL vmlinux 0x6deabfb5 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x6ded5665 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df095af pcim_pin_device +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df5cf00 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x6e044980 pmac_register_agp_pm +EXPORT_SYMBOL vmlinux 0x6e084f26 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x6e122dd5 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x6e2c33c6 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x6e5b651e sync_filesystem +EXPORT_SYMBOL vmlinux 0x6e5c8857 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x6e6d8172 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x6e8f8dc1 vfs_link +EXPORT_SYMBOL vmlinux 0x6e9a448d __pte_frag_nr +EXPORT_SYMBOL vmlinux 0x6e9c14b6 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea64254 icmp_send +EXPORT_SYMBOL vmlinux 0x6ebafd90 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x6eca42aa ip_ct_attach +EXPORT_SYMBOL vmlinux 0x6eca4d4f mod_timer_pending +EXPORT_SYMBOL vmlinux 0x6ef0cf39 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x6efdb0b7 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x6f6eb0b0 kvmppc_hv_find_lock_hpte +EXPORT_SYMBOL vmlinux 0x6f803a05 d_alloc +EXPORT_SYMBOL vmlinux 0x6f844695 kernel_write +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f9104d3 param_set_int +EXPORT_SYMBOL vmlinux 0x6f926d5c release_firmware +EXPORT_SYMBOL vmlinux 0x6f9e8240 of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0x6fa331ed _lv1_construct_io_irq_outlet +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fe11a8b ns_capable +EXPORT_SYMBOL vmlinux 0x6fe5284c kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0x6ff4f026 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x6ffbb8bf pneigh_lookup +EXPORT_SYMBOL vmlinux 0x6ffcb7e7 unlock_rename +EXPORT_SYMBOL vmlinux 0x701392e8 neigh_xmit +EXPORT_SYMBOL vmlinux 0x701699b2 _lv1_set_spe_privilege_state_area_1_register +EXPORT_SYMBOL vmlinux 0x7041a6ac nf_log_unset +EXPORT_SYMBOL vmlinux 0x70464d26 __brelse +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x7072b168 bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x7085f898 pci_domain_nr +EXPORT_SYMBOL vmlinux 0x7095db31 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x70c687e6 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x70d2ad74 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x70d573c8 md_integrity_register +EXPORT_SYMBOL vmlinux 0x70debb57 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x70f6c5c9 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x70f86c70 pmu_queue_request +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x711039a5 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x71384c78 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x71398d30 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x7149264d kernel_getsockname +EXPORT_SYMBOL vmlinux 0x71588e34 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7174951a submit_bio_wait +EXPORT_SYMBOL vmlinux 0x718281e0 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x718fdb48 kill_fasync +EXPORT_SYMBOL vmlinux 0x71933807 udp_gro_complete +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71b8dc59 seq_vprintf +EXPORT_SYMBOL vmlinux 0x71d3073c blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x71d3bf23 dump_skip +EXPORT_SYMBOL vmlinux 0x7208e0e1 seq_path +EXPORT_SYMBOL vmlinux 0x722ec085 free_buffer_head +EXPORT_SYMBOL vmlinux 0x7244e075 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x7249aeb4 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x72577e6b get_monotonic_coarse64 +EXPORT_SYMBOL vmlinux 0x7257b6be __netif_schedule +EXPORT_SYMBOL vmlinux 0x725fd887 nla_append +EXPORT_SYMBOL vmlinux 0x726382e1 lease_modify +EXPORT_SYMBOL vmlinux 0x7275d9e3 neigh_destroy +EXPORT_SYMBOL vmlinux 0x729b4a83 _lv1_get_spe_all_interrupt_statuses +EXPORT_SYMBOL vmlinux 0x729e7c87 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x72a7a400 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72c98139 __arch_hweight64 +EXPORT_SYMBOL vmlinux 0x72d2a595 from_kuid +EXPORT_SYMBOL vmlinux 0x72da399c simple_transaction_read +EXPORT_SYMBOL vmlinux 0x72e049ca agp_free_memory +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f3a787 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x73067035 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x7314826c inet6_getname +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731a747a pci_io_base +EXPORT_SYMBOL vmlinux 0x7330221b swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x733f3886 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x73547b71 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue +EXPORT_SYMBOL vmlinux 0x735fbe92 seq_putc +EXPORT_SYMBOL vmlinux 0x73710a3e dqstats +EXPORT_SYMBOL vmlinux 0x73723965 send_sig_info +EXPORT_SYMBOL vmlinux 0x73875a34 register_key_type +EXPORT_SYMBOL vmlinux 0x738e1703 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x73afd51d mmc_add_host +EXPORT_SYMBOL vmlinux 0x73c9574d tcp_connect +EXPORT_SYMBOL vmlinux 0x73cda8f6 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x73d68d9a pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x73d79a21 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x73dd3529 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x73de1007 freeze_bdev +EXPORT_SYMBOL vmlinux 0x73f2b664 param_set_ulong +EXPORT_SYMBOL vmlinux 0x73f85c13 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x73f96dae kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x7406b6be follow_up +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x74129865 passthru_features_check +EXPORT_SYMBOL vmlinux 0x741e8d1f of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x7443d269 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x746241e2 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x747e6dc7 find_vma +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74870c36 netlink_unicast +EXPORT_SYMBOL vmlinux 0x74871d52 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x74998f5d gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74da2055 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74f7bc8a netif_skb_features +EXPORT_SYMBOL vmlinux 0x74fe8730 sys_ctrler +EXPORT_SYMBOL vmlinux 0x751e27e0 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x7553a41f writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x7557f7fa fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x756c786e _lv1_connect_interrupt_event_receive_port +EXPORT_SYMBOL vmlinux 0x75754995 _lv1_storage_check_async_status +EXPORT_SYMBOL vmlinux 0x75811312 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x758a1055 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x7597b503 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x75994700 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x759c22da blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x75a3f947 elv_add_request +EXPORT_SYMBOL vmlinux 0x75aa6ca1 __kernel_virt_start +EXPORT_SYMBOL vmlinux 0x75b1d167 register_qdisc +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75be6702 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x75e4f5aa pasemi_read_mac_reg +EXPORT_SYMBOL vmlinux 0x75f1e83d swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x75f5802a radix__local_flush_tlb_mm +EXPORT_SYMBOL vmlinux 0x75fd9ca7 blk_fetch_request +EXPORT_SYMBOL vmlinux 0x76071d56 scsi_host_put +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x76182b06 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x7634d8e7 skb_insert +EXPORT_SYMBOL vmlinux 0x7636d29f simple_statfs +EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764e2224 _lv1_disconnect_irq_plug_ext +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x7677d962 param_ops_bint +EXPORT_SYMBOL vmlinux 0x767b82a7 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x769686a0 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x76a54014 netdev_printk +EXPORT_SYMBOL vmlinux 0x76b65efc ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x76baaefc sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x76bac2a8 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x76ceb6b4 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76dde915 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x76e3a08f ata_port_printk +EXPORT_SYMBOL vmlinux 0x77144936 _lv1_disconnect_irq_plug +EXPORT_SYMBOL vmlinux 0x771995c1 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x772f92aa pci_get_device +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77447cd3 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x775a07d6 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x778f2099 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x779dcb44 dqput +EXPORT_SYMBOL vmlinux 0x77a67298 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x77b1c61d tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77cf9bff __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x77cff19b inet_frags_init +EXPORT_SYMBOL vmlinux 0x77d5d7d3 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x77d80fbd vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x77df1ac9 generic_read_dir +EXPORT_SYMBOL vmlinux 0x77faad4c input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x780fc673 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x7830b04f hvc_put_chars +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x78465fc2 posix_acl_init +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x78494a3d __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x78545ead ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x788275a1 giveup_all +EXPORT_SYMBOL vmlinux 0x78864315 cpumask_any_but +EXPORT_SYMBOL vmlinux 0x78971320 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x789a17f7 _lv1_destruct_logical_spe +EXPORT_SYMBOL vmlinux 0x789a3863 from_kgid +EXPORT_SYMBOL vmlinux 0x789ae3ac d_genocide +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a9e905 _numa_mem_ +EXPORT_SYMBOL vmlinux 0x78b09697 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x78be41ee tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x78d91358 write_one_page +EXPORT_SYMBOL vmlinux 0x78db8632 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x78db9561 audit_log_task_info +EXPORT_SYMBOL vmlinux 0x78de0aa4 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x7914ce28 bh_submit_read +EXPORT_SYMBOL vmlinux 0x79513196 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x795306cf nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x79795968 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x797b0032 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x799ef39e flush_signals +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79c48bc4 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x79c8e50c pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x79d7cf0b read_code +EXPORT_SYMBOL vmlinux 0x79da56f8 vme_dma_request +EXPORT_SYMBOL vmlinux 0x79f455de register_netdev +EXPORT_SYMBOL vmlinux 0x7a0569b4 compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0x7a061824 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x7a076047 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0x7a0f8f85 module_put +EXPORT_SYMBOL vmlinux 0x7a362928 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a47f745 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x7a5670e1 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x7a594842 tso_build_data +EXPORT_SYMBOL vmlinux 0x7a69498e dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x7a6a6ae0 posix_test_lock +EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a936f29 page_waitqueue +EXPORT_SYMBOL vmlinux 0x7a9a5510 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0x7aa00019 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa9e259 _lv1_map_htab +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7af22615 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x7af48737 of_get_min_tck +EXPORT_SYMBOL vmlinux 0x7b12825b tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b1ee3be blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x7b238fe5 skb_split +EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc +EXPORT_SYMBOL vmlinux 0x7b483c6d forget_cached_acl +EXPORT_SYMBOL vmlinux 0x7b6dc043 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x7b8d0f19 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x7b9864fb eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x7ba4e117 scsi_print_result +EXPORT_SYMBOL vmlinux 0x7ba915d9 of_dev_get +EXPORT_SYMBOL vmlinux 0x7baec67d ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x7bb2cb31 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x7bb722b0 poll_initwait +EXPORT_SYMBOL vmlinux 0x7bb756cc neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x7bb88de5 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x7bc3d716 bdi_init +EXPORT_SYMBOL vmlinux 0x7bd68eb4 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x7bee0b02 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x7bfeaa9b netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c192273 tcp_seq_open +EXPORT_SYMBOL vmlinux 0x7c27156c rtas_online_cpus_mask +EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc +EXPORT_SYMBOL vmlinux 0x7c2d4ebc blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c6d7fed register_sysctl +EXPORT_SYMBOL vmlinux 0x7c8df6a2 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x7c903e93 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x7c9291d1 csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7ca92dae find_inode_nowait +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cc25a9b __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x7cceb82f d_rehash +EXPORT_SYMBOL vmlinux 0x7cd60000 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x7cd90bf0 param_get_string +EXPORT_SYMBOL vmlinux 0x7cdc31dc finish_no_open +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce6a06e scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf9f431 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d1dea23 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x7d32876c pci_find_bus +EXPORT_SYMBOL vmlinux 0x7d4cc474 fscrypt_restore_control_page +EXPORT_SYMBOL vmlinux 0x7d6c10f2 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7da95e5e set_disk_ro +EXPORT_SYMBOL vmlinux 0x7db2f1bf input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x7db8dfbf account_page_dirtied +EXPORT_SYMBOL vmlinux 0x7dc3d1f2 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x7dc97879 rtas_get_error_log_max +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df4fe70 give_up_console +EXPORT_SYMBOL vmlinux 0x7e035d4e skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x7e126c5c pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x7e3b5d20 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x7e7ed438 __lock_buffer +EXPORT_SYMBOL vmlinux 0x7e87227e slhc_compress +EXPORT_SYMBOL vmlinux 0x7e8c741e input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x7ec41dc0 input_event +EXPORT_SYMBOL vmlinux 0x7ec54106 __sb_end_write +EXPORT_SYMBOL vmlinux 0x7ecc3400 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ee754e6 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x7eebed2c kthread_bind +EXPORT_SYMBOL vmlinux 0x7f00224f km_is_alive +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f0750be __f_setown +EXPORT_SYMBOL vmlinux 0x7f0975c4 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x7f0fe13a vio_get_attribute +EXPORT_SYMBOL vmlinux 0x7f249b6e netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7f324f4d try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7f4e4195 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f906d24 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x7fa69079 pci_set_master +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe38f48 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x7fe3a418 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x7fe9a060 _lv1_net_stop_tx_dma +EXPORT_SYMBOL vmlinux 0x7feb19ad __secpath_destroy +EXPORT_SYMBOL vmlinux 0x7ffca511 of_device_unregister +EXPORT_SYMBOL vmlinux 0x8002bf27 vmemmap +EXPORT_SYMBOL vmlinux 0x800fb92b full_name_hash +EXPORT_SYMBOL vmlinux 0x802225d5 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x803612a4 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x8039302c pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x803e5a53 follow_down +EXPORT_SYMBOL vmlinux 0x8045b83d blk_put_queue +EXPORT_SYMBOL vmlinux 0x807d30a2 reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x807efc85 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x808339d4 __kernel_write +EXPORT_SYMBOL vmlinux 0x80882e1d phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x808fad58 __invalidate_device +EXPORT_SYMBOL vmlinux 0x80930d1a flush_old_exec +EXPORT_SYMBOL vmlinux 0x80946eb7 lock_rename +EXPORT_SYMBOL vmlinux 0x809be406 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d5344d inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x810519fd hashlen_string +EXPORT_SYMBOL vmlinux 0x8117f8b1 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x8124b551 devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0x8139f9ed device_add_disk +EXPORT_SYMBOL vmlinux 0x814495ac lwtunnel_output +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x8158912a d_make_root +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x81a6332f single_release +EXPORT_SYMBOL vmlinux 0x81b2d0f6 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x81b5220c pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x81c0a84f rtas_set_indicator +EXPORT_SYMBOL vmlinux 0x81d9f7f2 _lv1_put_iopte +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81eafa75 proc_create_data +EXPORT_SYMBOL vmlinux 0x81ed83a2 input_close_device +EXPORT_SYMBOL vmlinux 0x82035cc1 flush_dcache_page +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x821315c5 __devm_release_region +EXPORT_SYMBOL vmlinux 0x821559d6 __vmalloc_end +EXPORT_SYMBOL vmlinux 0x821688cd pci_set_mwi +EXPORT_SYMBOL vmlinux 0x821da66a mntget +EXPORT_SYMBOL vmlinux 0x823ba620 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x825d15ac node_data +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x8278c402 giveup_altivec +EXPORT_SYMBOL vmlinux 0x8278ee8e __breadahead +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x829bd5ca ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x82a1bf74 input_reset_device +EXPORT_SYMBOL vmlinux 0x82b98f81 alloc_disk_node +EXPORT_SYMBOL vmlinux 0x82c7dc3a kern_path_create +EXPORT_SYMBOL vmlinux 0x82cd8bf3 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x82e14ad0 inet_gro_complete +EXPORT_SYMBOL vmlinux 0x830cb28f bio_map_kern +EXPORT_SYMBOL vmlinux 0x8310713c in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x8319dc36 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x831bd8fa dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x83417833 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x837286f0 unload_nls +EXPORT_SYMBOL vmlinux 0x83832412 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x838c39f5 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83b3c348 PageMovable +EXPORT_SYMBOL vmlinux 0x83bc2777 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83e2a2f8 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x83f3014d sock_no_getname +EXPORT_SYMBOL vmlinux 0x84002ce3 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x840663b8 of_scan_pci_bridge +EXPORT_SYMBOL vmlinux 0x84094007 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x84137311 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x843c8f22 phy_attached_print +EXPORT_SYMBOL vmlinux 0x845124e0 ps3_mm_phys_to_lpar +EXPORT_SYMBOL vmlinux 0x845183ae __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x847395a0 is_nd_btt +EXPORT_SYMBOL vmlinux 0x84758e1f blk_queue_split +EXPORT_SYMBOL vmlinux 0x848431cd mmc_request_done +EXPORT_SYMBOL vmlinux 0x84933a54 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x849fe807 csum_and_copy_from_user +EXPORT_SYMBOL vmlinux 0x84bc7f55 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock +EXPORT_SYMBOL vmlinux 0x84c95fc4 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x84eb4437 rps_needed +EXPORT_SYMBOL vmlinux 0x84f64289 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x84f8f882 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x8514f59d cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x851ce083 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x8522a626 tcp_proc_register +EXPORT_SYMBOL vmlinux 0x8536fd80 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x853acb20 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x85423756 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x854d5c35 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x855e218a mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85825898 add_timer +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x8597eb47 plpar_hcall +EXPORT_SYMBOL vmlinux 0x859de009 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x859fe1ab skb_make_writable +EXPORT_SYMBOL vmlinux 0x85a6c69c always_delete_dentry +EXPORT_SYMBOL vmlinux 0x85ae6052 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85d49bde lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e022af dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x85e18428 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x85ec6e3a generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x860dca35 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x86238a06 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x86382059 mount_single +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x863ec712 write_inode_now +EXPORT_SYMBOL vmlinux 0x864a8bde task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x866321ad tcp_prot +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x86831ff7 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86970f71 deactivate_super +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86b892e8 of_device_alloc +EXPORT_SYMBOL vmlinux 0x86c2dbc9 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x86cfd313 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x86db1cbb rtas_flash_term_hook +EXPORT_SYMBOL vmlinux 0x86ea58e6 of_translate_address +EXPORT_SYMBOL vmlinux 0x86edbf7b tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x86f95ac3 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x87078d85 mutex_trylock +EXPORT_SYMBOL vmlinux 0x870d0413 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x8735fdaa pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x873a53ea __arch_hweight8 +EXPORT_SYMBOL vmlinux 0x8760c532 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x8763703a del_gendisk +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x878b270c phy_print_status +EXPORT_SYMBOL vmlinux 0x879dde92 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x87a2e29f abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x87ddd351 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x87ea737b mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x880d8b45 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x880da1b1 _lv1_get_logical_partition_id +EXPORT_SYMBOL vmlinux 0x881ed81f vio_unregister_device +EXPORT_SYMBOL vmlinux 0x882cd9cf simple_write_begin +EXPORT_SYMBOL vmlinux 0x882db37f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x8841b7ca simple_fill_super +EXPORT_SYMBOL vmlinux 0x884e9d63 fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x88559e90 generic_permission +EXPORT_SYMBOL vmlinux 0x88659b04 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x886bafc3 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x88803052 devm_ioremap +EXPORT_SYMBOL vmlinux 0x88822be6 tcf_em_register +EXPORT_SYMBOL vmlinux 0x888ab802 agp_copy_info +EXPORT_SYMBOL vmlinux 0x88b3077c netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x88b88d5e generic_readlink +EXPORT_SYMBOL vmlinux 0x88c1abec devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x88d47922 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88dec973 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x88f15c97 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x88f5cbd3 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x890feaf7 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x89124e90 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x89166a82 get_acl +EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy +EXPORT_SYMBOL vmlinux 0x89280d87 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x8938ea32 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x8943fbea vfs_iter_write +EXPORT_SYMBOL vmlinux 0x895108f3 proc_dostring +EXPORT_SYMBOL vmlinux 0x895577b0 numa_cpu_lookup_table +EXPORT_SYMBOL vmlinux 0x8956875d ip_options_compile +EXPORT_SYMBOL vmlinux 0x895aaa6d rtnl_unicast +EXPORT_SYMBOL vmlinux 0x895e5832 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x8969344a release_pages +EXPORT_SYMBOL vmlinux 0x89767e07 input_register_handler +EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x8982af22 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x89898459 kvm_irq_bypass +EXPORT_SYMBOL vmlinux 0x89a7efc6 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x89ab4299 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89c3f42e uart_register_driver +EXPORT_SYMBOL vmlinux 0x89c5a8be smu_get_sdb_partition +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89e359f5 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x89efb97a neigh_direct_output +EXPORT_SYMBOL vmlinux 0x89f83dc4 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x89fb4867 dqget +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a368268 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x8a3a4a74 fscrypt_process_policy +EXPORT_SYMBOL vmlinux 0x8a473d4e of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a4af378 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x8a5149bd bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a662047 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x8a762f26 elv_rb_add +EXPORT_SYMBOL vmlinux 0x8a76c831 mpage_writepages +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a8cc41a flush_dcache_icache_page +EXPORT_SYMBOL vmlinux 0x8a97fbfc dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9cef2a _lv1_allocate_device_dma_region +EXPORT_SYMBOL vmlinux 0x8aa09dba param_ops_ulong +EXPORT_SYMBOL vmlinux 0x8aa303c9 single_open +EXPORT_SYMBOL vmlinux 0x8ab71b76 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x8abe9ce7 submit_bio +EXPORT_SYMBOL vmlinux 0x8ad91eb8 tty_vhangup +EXPORT_SYMBOL vmlinux 0x8adc46a8 elevator_alloc +EXPORT_SYMBOL vmlinux 0x8ae99469 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0x8afaebe7 nla_put +EXPORT_SYMBOL vmlinux 0x8afbedc5 touch_buffer +EXPORT_SYMBOL vmlinux 0x8b23a5c2 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b3e2c16 mount_pseudo +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b4785ab nd_device_notify +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b67f4fd serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x8b6f5c4d nvm_get_bb_tbl +EXPORT_SYMBOL vmlinux 0x8b761bf2 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b897837 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x8b93c386 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x8b993a24 km_state_notify +EXPORT_SYMBOL vmlinux 0x8ba149f1 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x8beb56c2 agp_find_bridge +EXPORT_SYMBOL vmlinux 0x8bf2ae1f fsl_lbc_addr +EXPORT_SYMBOL vmlinux 0x8bf3e1b3 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c2f5c3e kernel_listen +EXPORT_SYMBOL vmlinux 0x8c3fac8c block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x8c5c7a03 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c6bb8cf nf_reinject +EXPORT_SYMBOL vmlinux 0x8c6bc192 f_setown +EXPORT_SYMBOL vmlinux 0x8c8d79c0 _lv1_gpu_context_iomap +EXPORT_SYMBOL vmlinux 0x8c942ba5 path_get +EXPORT_SYMBOL vmlinux 0x8ca30d21 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x8ca474d8 set_posix_acl +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8ccc82df mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x8cfe04ad nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 +EXPORT_SYMBOL vmlinux 0x8d10efa8 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x8d15114a __release_region +EXPORT_SYMBOL vmlinux 0x8d250820 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x8d51ae85 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d67a77e inet_csk_accept +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d886d70 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x8d8c1365 scsi_register +EXPORT_SYMBOL vmlinux 0x8d944cbb copy_in_user +EXPORT_SYMBOL vmlinux 0x8d9e3cb9 rwsem_wake +EXPORT_SYMBOL vmlinux 0x8da7cab2 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x8dc0ee4d posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x8dc21d54 serio_reconnect +EXPORT_SYMBOL vmlinux 0x8dc3794d param_ops_long +EXPORT_SYMBOL vmlinux 0x8dcc327a md_reload_sb +EXPORT_SYMBOL vmlinux 0x8dccea86 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x8dd6a98e __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x8de024a5 flow_cache_init +EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create +EXPORT_SYMBOL vmlinux 0x8de2fbc5 _lv1_get_virtual_uart_param +EXPORT_SYMBOL vmlinux 0x8de684a2 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8dfb5335 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x8dfd0549 elevator_init +EXPORT_SYMBOL vmlinux 0x8e07d26c mount_ns +EXPORT_SYMBOL vmlinux 0x8e165374 eth_header_parse +EXPORT_SYMBOL vmlinux 0x8e2c3340 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x8e305dd2 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x8e66dbf7 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e813b12 posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x8e879bb7 __vmalloc +EXPORT_SYMBOL vmlinux 0x8eba8f35 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8edfc9e8 page_get_link +EXPORT_SYMBOL vmlinux 0x8ee124c0 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x8eea1bc9 smu_poll +EXPORT_SYMBOL vmlinux 0x8ef2863e ilookup +EXPORT_SYMBOL vmlinux 0x8efb1ee3 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x8f183ecf sg_miter_start +EXPORT_SYMBOL vmlinux 0x8f2debec pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x8f410ec5 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x8f57198e pagecache_get_page +EXPORT_SYMBOL vmlinux 0x8f68c2e2 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x8f769d1b sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x8f7ba0ad tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x8f83c83b wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x8f8f7663 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x8fc0cbd7 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x8fd981a5 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x8fdbbf36 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x8fdf772a init_timer_key +EXPORT_SYMBOL vmlinux 0x8fe2dd59 __block_write_begin +EXPORT_SYMBOL vmlinux 0x8fec1b56 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x8ff40293 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x90441345 commit_creds +EXPORT_SYMBOL vmlinux 0x90593085 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x90c81e5c pci_reenable_device +EXPORT_SYMBOL vmlinux 0x90e36939 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x90f055e8 __put_page +EXPORT_SYMBOL vmlinux 0x91051fb6 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x911aa058 dquot_enable +EXPORT_SYMBOL vmlinux 0x91201cef _lv1_enable_logical_spe +EXPORT_SYMBOL vmlinux 0x912557ce rtas_busy_delay +EXPORT_SYMBOL vmlinux 0x9133b0ee sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x91562f19 filemap_fault +EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec +EXPORT_SYMBOL vmlinux 0x916338a8 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x9168560d inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x9168c033 rtas_get_sensor +EXPORT_SYMBOL vmlinux 0x91708208 __seq_open_private +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x917c3785 macio_request_resource +EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x91a2bb81 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x91a790df inet_frags_fini +EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf +EXPORT_SYMBOL vmlinux 0x91c26297 file_path +EXPORT_SYMBOL vmlinux 0x91c48dee lookup_bdev +EXPORT_SYMBOL vmlinux 0x91c4feca _lv1_unmap_htab +EXPORT_SYMBOL vmlinux 0x91d3c8d6 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x91e63f82 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x91fac90f of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x92036b41 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x920781b6 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x9218cff1 adjust_resource +EXPORT_SYMBOL vmlinux 0x921d8068 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x923744ee jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x92531c85 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x9254b487 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x92835076 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92dbe7b9 __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x92dd74a1 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x92e1c9a4 pci_find_capability +EXPORT_SYMBOL vmlinux 0x92e66ab9 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x92e7fb53 current_fs_time +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x9301f8c9 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x931472f5 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x931802eb jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x934c8153 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x93507f1c _lv1_gpu_memory_allocate +EXPORT_SYMBOL vmlinux 0x9365b829 pci_release_regions +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x939e9e0c security_task_getsecid +EXPORT_SYMBOL vmlinux 0x93a7c25e pci_bus_put +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93b4e52b registered_fb +EXPORT_SYMBOL vmlinux 0x93e2e199 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x93f195af eth_type_trans +EXPORT_SYMBOL vmlinux 0x93f6e8ca blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x93f77103 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x93fc8614 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x9419b039 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x94244088 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x942a3aa3 neigh_table_init +EXPORT_SYMBOL vmlinux 0x9431cd43 page_readlink +EXPORT_SYMBOL vmlinux 0x943dc80f csum_and_copy_to_user +EXPORT_SYMBOL vmlinux 0x943e420e scsi_add_device +EXPORT_SYMBOL vmlinux 0x94487bc5 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x944e3d78 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x944e7d68 compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x949c4366 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x94d2fe48 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x94d3c19f tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x94f13ea2 dm_put_table_device +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb +EXPORT_SYMBOL vmlinux 0x95260844 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x954afcb0 input_flush_device +EXPORT_SYMBOL vmlinux 0x954ef5c2 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x955594ee kobject_init +EXPORT_SYMBOL vmlinux 0x955f1459 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x95627f11 elevator_exit +EXPORT_SYMBOL vmlinux 0x9573ec81 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x9578ead0 radix__flush_tlb_lpid_va +EXPORT_SYMBOL vmlinux 0x95800bfd __bforget +EXPORT_SYMBOL vmlinux 0x958109f7 vio_disable_interrupts +EXPORT_SYMBOL vmlinux 0x958c997a serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x958d7958 param_set_bool +EXPORT_SYMBOL vmlinux 0x95a08407 unregister_nls +EXPORT_SYMBOL vmlinux 0x95b829b0 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x95eaa1b3 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x95eda7e6 fscrypt_d_ops +EXPORT_SYMBOL vmlinux 0x95f7fa49 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x95f94fd5 should_remove_suid +EXPORT_SYMBOL vmlinux 0x96166f4a __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x96206394 finish_swait +EXPORT_SYMBOL vmlinux 0x96286ad3 fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x96433ca8 keyring_alloc +EXPORT_SYMBOL vmlinux 0x9646ab80 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x96511afa inode_init_owner +EXPORT_SYMBOL vmlinux 0x96667ccf simple_empty +EXPORT_SYMBOL vmlinux 0x968b1adf consume_skb +EXPORT_SYMBOL vmlinux 0x969987fc lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x96ab44f0 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96cb799d wait_iff_congested +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96dc7658 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x96fb98fd __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x9725b346 ppp_input_error +EXPORT_SYMBOL vmlinux 0x973c09e5 __pgd_index_size +EXPORT_SYMBOL vmlinux 0x9740a7c2 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x974793dc dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns +EXPORT_SYMBOL vmlinux 0x974cabfa tcp_splice_read +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x975cf436 mach_ps3 +EXPORT_SYMBOL vmlinux 0x976e014f _lv1_map_device_mmio_region +EXPORT_SYMBOL vmlinux 0x977713bb netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x978bae13 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97ab8fba tty_unthrottle +EXPORT_SYMBOL vmlinux 0x97afba7b proc_douintvec +EXPORT_SYMBOL vmlinux 0x97c28af8 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x97c54c9f jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x97e5641e __getblk_gfp +EXPORT_SYMBOL vmlinux 0x97e626c5 fscrypt_free_filename +EXPORT_SYMBOL vmlinux 0x97f03d6f vio_cmo_entitlement_update +EXPORT_SYMBOL vmlinux 0x97f18b46 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x98002fe4 iptun_encaps +EXPORT_SYMBOL vmlinux 0x980ac17c max8925_reg_write +EXPORT_SYMBOL vmlinux 0x9812b173 dquot_drop +EXPORT_SYMBOL vmlinux 0x98177648 _lv1_set_lpm_interval +EXPORT_SYMBOL vmlinux 0x9827af49 of_get_address +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x9841a8fa devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x9872c24e param_get_bool +EXPORT_SYMBOL vmlinux 0x987f9b5a bitmap_unplug +EXPORT_SYMBOL vmlinux 0x987fc124 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x988d9502 __register_chrdev +EXPORT_SYMBOL vmlinux 0x98a43349 pci_bus_type +EXPORT_SYMBOL vmlinux 0x98a4ec72 clear_nlink +EXPORT_SYMBOL vmlinux 0x98a86d66 vme_lm_request +EXPORT_SYMBOL vmlinux 0x98bf68d8 mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98dde285 param_set_byte +EXPORT_SYMBOL vmlinux 0x98df8335 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x98e3a299 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x98e97e90 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x98eea039 __sb_start_write +EXPORT_SYMBOL vmlinux 0x98fbc932 uart_match_port +EXPORT_SYMBOL vmlinux 0x990b4162 param_set_charp +EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x993cad6e fsl_lbc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x9943ea12 path_nosuid +EXPORT_SYMBOL vmlinux 0x994b9ce0 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99529007 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x995b0b69 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x995d6125 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x997744e8 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x99802a18 file_update_time +EXPORT_SYMBOL vmlinux 0x9982c61b sock_sendmsg +EXPORT_SYMBOL vmlinux 0x998995c8 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999716ec truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x999c64cc mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a96639 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x99b16f8c release_resource +EXPORT_SYMBOL vmlinux 0x99b6ddb4 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x99c24cfe _lv1_free_device_dma_region +EXPORT_SYMBOL vmlinux 0x99cc636c vm_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99e57c3b nf_register_hook +EXPORT_SYMBOL vmlinux 0x9a125cbc lookup_one_len +EXPORT_SYMBOL vmlinux 0x9a1993c1 i2c_release_client +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a1ffb92 _lv1_clear_spe_interrupt_status +EXPORT_SYMBOL vmlinux 0x9a6c2531 pasemi_dma_init +EXPORT_SYMBOL vmlinux 0x9aaea135 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x9ab0c705 qdisc_list_del +EXPORT_SYMBOL vmlinux 0x9ab52c91 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x9ace2bcb tcf_action_exec +EXPORT_SYMBOL vmlinux 0x9ad92c0f put_disk +EXPORT_SYMBOL vmlinux 0x9add5bcc mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x9ae6f6b4 mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9aedfbe4 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x9b0623fc dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b2fb4de rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b51474b bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x9b6f571a mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x9b7a213b devm_free_irq +EXPORT_SYMBOL vmlinux 0x9b8e7fbd rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x9b90ab1b inode_set_flags +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba1a9da scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bcffa44 dst_alloc +EXPORT_SYMBOL vmlinux 0x9be2286a empty_aops +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9be88b4d __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x9bea487b register_framebuffer +EXPORT_SYMBOL vmlinux 0x9c22c258 mntput +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c7dc1c9 input_register_handle +EXPORT_SYMBOL vmlinux 0x9c91ff23 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cd39ff3 ipv4_specific +EXPORT_SYMBOL vmlinux 0x9cf952b3 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x9d009584 blk_free_tags +EXPORT_SYMBOL vmlinux 0x9d046746 put_cmsg +EXPORT_SYMBOL vmlinux 0x9d06215e i2c_master_send +EXPORT_SYMBOL vmlinux 0x9d0a13b4 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs +EXPORT_SYMBOL vmlinux 0x9d378f70 queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x9d3b7754 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x9d6a54c2 flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0x9d6bf551 dev_set_group +EXPORT_SYMBOL vmlinux 0x9d76d7fa mdio_driver_register +EXPORT_SYMBOL vmlinux 0x9d7ce8dd _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x9d803d5c seq_read +EXPORT_SYMBOL vmlinux 0x9d927589 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x9d9dfc18 load_fp_state +EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x9db0e998 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x9dbc3b34 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x9dbcb240 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x9de5ff88 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x9de8170f tty_kref_put +EXPORT_SYMBOL vmlinux 0x9e0c4904 blk_get_request +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e17dbd1 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e39a57d pci_get_class +EXPORT_SYMBOL vmlinux 0x9e3cf5c5 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x9e436990 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x9e4dd7f5 fence_init +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e5ca8d5 fput +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e678d95 mpage_readpages +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e7c46e2 __find_get_block +EXPORT_SYMBOL vmlinux 0x9e85c28b elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x9e97375d rtas_busy_delay_time +EXPORT_SYMBOL vmlinux 0x9e9bcd5d sk_ns_capable +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ec97c09 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x9ec98ca8 vm_node_stat +EXPORT_SYMBOL vmlinux 0x9ecc58e7 get_phy_device +EXPORT_SYMBOL vmlinux 0x9ed09751 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x9ed84355 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x9ed86c2f reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x9ee78669 _lv1_write_virtual_uart +EXPORT_SYMBOL vmlinux 0x9ee82cd6 uuid_be_index +EXPORT_SYMBOL vmlinux 0x9ef5dd6a inet6_protos +EXPORT_SYMBOL vmlinux 0x9f0fa73c blk_start_queue +EXPORT_SYMBOL vmlinux 0x9f18f729 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x9f2424b8 pci_irq_vector +EXPORT_SYMBOL vmlinux 0x9f28c673 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x9f2f4585 read_cache_page +EXPORT_SYMBOL vmlinux 0x9f34bd7d security_path_unlink +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f49780d inode_get_bytes +EXPORT_SYMBOL vmlinux 0x9f4bc5d1 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x9f7447b4 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x9f85c6a1 arp_create +EXPORT_SYMBOL vmlinux 0x9f911629 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fb1d0ed uuid_is_valid +EXPORT_SYMBOL vmlinux 0x9fb6e320 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x9fdd44eb setup_new_exec +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fedc12b tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x9ff6974b xfrm_init_state +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa00f3803 vfs_statfs +EXPORT_SYMBOL vmlinux 0xa00f556c dquot_destroy +EXPORT_SYMBOL vmlinux 0xa0220851 iget5_locked +EXPORT_SYMBOL vmlinux 0xa02228ec simple_link +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa075cfa5 clear_inode +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07c2782 update_region +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa0909884 input_grab_device +EXPORT_SYMBOL vmlinux 0xa09454ec revalidate_disk +EXPORT_SYMBOL vmlinux 0xa0a35096 skb_put +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0bfc347 set_wb_congested +EXPORT_SYMBOL vmlinux 0xa0d8580f unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fb2daf dst_destroy +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa14630f9 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xa1492655 nf_getsockopt +EXPORT_SYMBOL vmlinux 0xa191c12c blk_recount_segments +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1babc16 simple_lookup +EXPORT_SYMBOL vmlinux 0xa1c625d6 __getblk_slow +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xa1cded1f import_iovec +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xa200c3f9 mmc_free_host +EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa2118e7b gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xa2127cdc pasemi_dma_alloc_flag +EXPORT_SYMBOL vmlinux 0xa22532bc pnv_pci_get_npu_dev +EXPORT_SYMBOL vmlinux 0xa23a8c55 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0xa23bf7dd of_mm_gpiochip_add_data +EXPORT_SYMBOL vmlinux 0xa2465322 _lv1_get_version_info +EXPORT_SYMBOL vmlinux 0xa2578b36 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa28f3971 __module_get +EXPORT_SYMBOL vmlinux 0xa28fb63a phy_stop +EXPORT_SYMBOL vmlinux 0xa29987ad remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xa29fbc94 md_done_sync +EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0xa2b8a607 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register +EXPORT_SYMBOL vmlinux 0xa2c5be6b try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xa2c701c8 nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0xa2ef4399 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xa312785b inet_del_offload +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa34710bd mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0xa3483150 xfrm_input +EXPORT_SYMBOL vmlinux 0xa348714c check_disk_size_change +EXPORT_SYMBOL vmlinux 0xa355a8ab blk_end_request_all +EXPORT_SYMBOL vmlinux 0xa36a1044 tty_port_destroy +EXPORT_SYMBOL vmlinux 0xa36fd096 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0xa37bd62d fscrypt_pullback_bio_page +EXPORT_SYMBOL vmlinux 0xa39b12c7 misc_register +EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay +EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa3b9f65d vme_init_bridge +EXPORT_SYMBOL vmlinux 0xa3c8d3f9 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0xa4004fd3 pci_set_power_state +EXPORT_SYMBOL vmlinux 0xa4105a3c mdiobus_scan +EXPORT_SYMBOL vmlinux 0xa427eef6 blk_rq_init +EXPORT_SYMBOL vmlinux 0xa4511467 crc16 +EXPORT_SYMBOL vmlinux 0xa45b3eda scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xa461db46 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa47140d8 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xa480c04b _lv1_gpu_context_attribute +EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le +EXPORT_SYMBOL vmlinux 0xa4b792f0 param_ops_uint +EXPORT_SYMBOL vmlinux 0xa4b81899 bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4d7d061 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xa51e6ce0 serio_rescan +EXPORT_SYMBOL vmlinux 0xa520b022 tcf_hash_create +EXPORT_SYMBOL vmlinux 0xa528d65d ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xa534140c of_io_request_and_map +EXPORT_SYMBOL vmlinux 0xa536595e sync_file_create +EXPORT_SYMBOL vmlinux 0xa53a471a napi_gro_receive +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5583a43 qdisc_destroy +EXPORT_SYMBOL vmlinux 0xa55c6830 register_sysctl_table +EXPORT_SYMBOL vmlinux 0xa567af5f blk_delay_queue +EXPORT_SYMBOL vmlinux 0xa56b8ab2 flex_array_free +EXPORT_SYMBOL vmlinux 0xa56ca6b1 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xa59782e3 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa59c4617 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le +EXPORT_SYMBOL vmlinux 0xa5bf70e1 scsi_host_get +EXPORT_SYMBOL vmlinux 0xa5edc43f pci_choose_state +EXPORT_SYMBOL vmlinux 0xa5f2877c sock_alloc_file +EXPORT_SYMBOL vmlinux 0xa60a854c devfreq_add_device +EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xa634d44d security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xa6579f21 __pud_val_bits +EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio +EXPORT_SYMBOL vmlinux 0xa66541a1 init_net +EXPORT_SYMBOL vmlinux 0xa66bcb4e kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa6800fae netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa69ad6b1 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xa6bbc6ab xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xa6bd032d xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xa6c92638 alloc_fcdev +EXPORT_SYMBOL vmlinux 0xa6cc0c33 kernel_param_lock +EXPORT_SYMBOL vmlinux 0xa6ce472f cpu_rmap_update +EXPORT_SYMBOL vmlinux 0xa6e610b7 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xa6f07f1c decrementer_clockevent +EXPORT_SYMBOL vmlinux 0xa6ff13d4 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa70a224f dcache_readdir +EXPORT_SYMBOL vmlinux 0xa712c9bc agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xa71a0d1a jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock +EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes +EXPORT_SYMBOL vmlinux 0xa7354d50 tcp_filter +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa74e7f09 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get +EXPORT_SYMBOL vmlinux 0xa757c37c kernel_read +EXPORT_SYMBOL vmlinux 0xa75b3706 pseries_enable_reloc_on_exc +EXPORT_SYMBOL vmlinux 0xa7755a09 cdev_alloc +EXPORT_SYMBOL vmlinux 0xa78d9eb7 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xa7904be1 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xa79b9a36 inet_add_offload +EXPORT_SYMBOL vmlinux 0xa7a9e60f neigh_ifdown +EXPORT_SYMBOL vmlinux 0xa7af08a0 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xa7c310cc phy_device_remove +EXPORT_SYMBOL vmlinux 0xa7d62d98 input_open_device +EXPORT_SYMBOL vmlinux 0xa7e399a7 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xa83fb07a uart_resume_port +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa89de870 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0xa8c0e119 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xa8c373a5 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0xa8ced546 _lv1_net_set_interrupt_status_indicator +EXPORT_SYMBOL vmlinux 0xa8cfa617 pskb_extract +EXPORT_SYMBOL vmlinux 0xa8f45240 proto_register +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa91c77b6 _lv1_end_of_interrupt +EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xa9273e1a epapr_hypercall_start +EXPORT_SYMBOL vmlinux 0xa93ba88e proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xa940cee2 n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0xa951f1ba mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0xa95dd98a jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa976a292 inet_stream_connect +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9a5ed1a dget_parent +EXPORT_SYMBOL vmlinux 0xa9aa1fba force_sig +EXPORT_SYMBOL vmlinux 0xa9be8211 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9d11584 padata_stop +EXPORT_SYMBOL vmlinux 0xa9ddc992 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xa9edbabc fence_default_wait +EXPORT_SYMBOL vmlinux 0xa9efc750 skb_copy_expand +EXPORT_SYMBOL vmlinux 0xa9f444ff kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0xa9fd61bd page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xaa0778a8 fscrypt_inherit_context +EXPORT_SYMBOL vmlinux 0xaa0edca8 pasemi_dma_alloc_fun +EXPORT_SYMBOL vmlinux 0xaa15a311 inet_gro_receive +EXPORT_SYMBOL vmlinux 0xaa391c23 simple_open +EXPORT_SYMBOL vmlinux 0xaa3a4d93 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xaa3cbd72 tcf_register_action +EXPORT_SYMBOL vmlinux 0xaa3f6f04 radix__flush_tlb_kernel_range +EXPORT_SYMBOL vmlinux 0xaa431643 rio_query_mport +EXPORT_SYMBOL vmlinux 0xaa4604c2 compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock +EXPORT_SYMBOL vmlinux 0xaa4b15c0 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xaa57ee6a dev_uc_add +EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa977cf4 param_ops_int +EXPORT_SYMBOL vmlinux 0xaa9e82d4 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xaac1a15f of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0xaace020e blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad3d7a4 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaaeec81b __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xaafced9f of_match_node +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab00fc1a xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xab141591 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xab1903e8 iget_failed +EXPORT_SYMBOL vmlinux 0xab264fde chacha20_block +EXPORT_SYMBOL vmlinux 0xab3213b4 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0xab3485cf ihold +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab4adb0d mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xab66f611 _lv1_set_lpm_trigger_control +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab83fe3d fget_raw +EXPORT_SYMBOL vmlinux 0xab8d43fe locks_copy_lock +EXPORT_SYMBOL vmlinux 0xab8e6c38 pci_set_vpd_size +EXPORT_SYMBOL vmlinux 0xab97b211 iov_iter_zero +EXPORT_SYMBOL vmlinux 0xabb1eb44 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xabb4a39d lock_sock_fast +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabe2b2bf block_read_full_page +EXPORT_SYMBOL vmlinux 0xabe53fbc __put_cred +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac20cc8a tty_port_init +EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xac2706aa blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xac2c5836 mmc_detect_change +EXPORT_SYMBOL vmlinux 0xac2ff9c8 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xac306332 udp_prot +EXPORT_SYMBOL vmlinux 0xac430423 __pmd_val_bits +EXPORT_SYMBOL vmlinux 0xac445752 compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xac54d521 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xac58ae54 vm_map_ram +EXPORT_SYMBOL vmlinux 0xac5f7681 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xac6812f6 bioset_free +EXPORT_SYMBOL vmlinux 0xac7339ad tcp_release_cb +EXPORT_SYMBOL vmlinux 0xac7a606f inet_frag_find +EXPORT_SYMBOL vmlinux 0xac7e901f __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xac8cb396 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xac994054 release_sock +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacc3244d xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd14ab8 _lv1_construct_logical_spe +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacdef752 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xaced8db8 inode_dio_wait +EXPORT_SYMBOL vmlinux 0xacf19778 nd_integrity_init +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad08c3a7 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xad134758 tc_classify +EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xad1802d9 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xad4e4566 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad856a9e write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xad858906 seq_pad +EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xadabe497 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xadbb25fa of_n_size_cells +EXPORT_SYMBOL vmlinux 0xadc1c560 agp_bridge +EXPORT_SYMBOL vmlinux 0xadc5d27f pci_match_id +EXPORT_SYMBOL vmlinux 0xadd80be0 sync_blockdev +EXPORT_SYMBOL vmlinux 0xade3f04f xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xadeffe25 _lv1_gpu_context_intr +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae18145c xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xae260e21 nobh_write_end +EXPORT_SYMBOL vmlinux 0xae4c8439 __pte_table_size +EXPORT_SYMBOL vmlinux 0xae4de69b ppc_md +EXPORT_SYMBOL vmlinux 0xae523eb5 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xae6e86a2 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xae9ed000 vc_cons +EXPORT_SYMBOL vmlinux 0xaeab41d6 dev_mc_init +EXPORT_SYMBOL vmlinux 0xaeb3bcba scsi_init_io +EXPORT_SYMBOL vmlinux 0xaeb71ef5 kobject_put +EXPORT_SYMBOL vmlinux 0xaec13d8e mmc_put_card +EXPORT_SYMBOL vmlinux 0xaedaaf7c mdio_device_register +EXPORT_SYMBOL vmlinux 0xaedcf2d3 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xaee6ce42 sock_update_memcg +EXPORT_SYMBOL vmlinux 0xaeff0818 __neigh_create +EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait +EXPORT_SYMBOL vmlinux 0xaf3d1779 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf4870c9 dump_emit +EXPORT_SYMBOL vmlinux 0xaf6556e4 vfs_whiteout +EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup +EXPORT_SYMBOL vmlinux 0xaf6b14ed dquot_alloc +EXPORT_SYMBOL vmlinux 0xaf888dba agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xaf933636 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xaff114ac param_get_int +EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc +EXPORT_SYMBOL vmlinux 0xb011f9e3 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xb01dad22 loop_register_transfer +EXPORT_SYMBOL vmlinux 0xb0323e15 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xb03a6ff5 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb072a766 d_exact_alias +EXPORT_SYMBOL vmlinux 0xb088ae8d pnv_cxl_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0xb091c93d radix__flush_tlb_lpid +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0b44c10 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0cb29bc __skb_get_hash +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb10a5c4d unregister_filesystem +EXPORT_SYMBOL vmlinux 0xb10c0dc0 block_write_end +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb1461199 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset +EXPORT_SYMBOL vmlinux 0xb1550a5d scm_fp_dup +EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb165ef45 __irq_regs +EXPORT_SYMBOL vmlinux 0xb16acca0 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0xb16c8fb1 serio_open +EXPORT_SYMBOL vmlinux 0xb179b091 fb_set_cmap +EXPORT_SYMBOL vmlinux 0xb17a70f2 nvm_get_blk +EXPORT_SYMBOL vmlinux 0xb1847b9f thaw_super +EXPORT_SYMBOL vmlinux 0xb1c29d08 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c488b2 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xb1c6e787 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1ffb3da netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0xb20a8f08 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xb20e1cd8 netdev_all_lower_get_next +EXPORT_SYMBOL vmlinux 0xb210bffa device_get_mac_address +EXPORT_SYMBOL vmlinux 0xb234fbd3 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xb23e46e3 netdev_features_change +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb2910f15 pcim_enable_device +EXPORT_SYMBOL vmlinux 0xb2ab5d8e d_set_d_op +EXPORT_SYMBOL vmlinux 0xb2acc4cd __msr_check_and_clear +EXPORT_SYMBOL vmlinux 0xb2c6bda5 pagevec_lookup +EXPORT_SYMBOL vmlinux 0xb2e5aee2 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xb2e74486 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xb2fb0f2f nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xb3258bf3 up_read +EXPORT_SYMBOL vmlinux 0xb34e4d70 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xb35bf24e scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xb368fb8b fscrypt_initialize +EXPORT_SYMBOL vmlinux 0xb36a07e2 __frontswap_load +EXPORT_SYMBOL vmlinux 0xb37d5a3d inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xb391463e max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xb397b641 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xb3bffa09 jbd2_journal_inode_add_wait +EXPORT_SYMBOL vmlinux 0xb3c35163 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3eb69f3 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xb3f0af80 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xb3f699c0 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3faeeae dquot_initialize +EXPORT_SYMBOL vmlinux 0xb40a7843 pci_bus_get +EXPORT_SYMBOL vmlinux 0xb422ca0b ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4504bd9 mdio_bus_type +EXPORT_SYMBOL vmlinux 0xb45efacf __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class +EXPORT_SYMBOL vmlinux 0xb473e2c2 lockref_get +EXPORT_SYMBOL vmlinux 0xb4784ddf netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xb47be20e pseries_disable_reloc_on_exc +EXPORT_SYMBOL vmlinux 0xb48379c6 dev_activate +EXPORT_SYMBOL vmlinux 0xb48d456c dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xb4c8148a inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xb4e31600 get_disk +EXPORT_SYMBOL vmlinux 0xb4fe0757 audit_log +EXPORT_SYMBOL vmlinux 0xb56bfd9e smu_spinwait_cmd +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb59d5ff0 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5bba0b4 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0xb5dec137 skb_find_text +EXPORT_SYMBOL vmlinux 0xb60d076b to_nd_btt +EXPORT_SYMBOL vmlinux 0xb621d06d dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb63fed52 blk_get_queue +EXPORT_SYMBOL vmlinux 0xb646f754 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0xb66f16a3 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xb672508a end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb68bfa9d node_states +EXPORT_SYMBOL vmlinux 0xb68d5929 nla_put_64bit +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6c9ec7c sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xb6cac172 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0xb6dea5ee pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0xb70ea044 key_link +EXPORT_SYMBOL vmlinux 0xb71ff7c1 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xb720909b tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xb7377ca8 __quota_error +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb75de7bf ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb779ad64 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xb77b38dc xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xb77c4dac generic_listxattr +EXPORT_SYMBOL vmlinux 0xb7890d7e gen_new_estimator +EXPORT_SYMBOL vmlinux 0xb79be6fb dev_remove_pack +EXPORT_SYMBOL vmlinux 0xb7a18919 phy_device_free +EXPORT_SYMBOL vmlinux 0xb7bfef54 set_create_files_as +EXPORT_SYMBOL vmlinux 0xb7c433bb blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d9b843 fence_add_callback +EXPORT_SYMBOL vmlinux 0xb80c61fd twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xb8498838 ll_rw_block +EXPORT_SYMBOL vmlinux 0xb850571a max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xb86123be _lv1_write_repository_node +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb874c5ad blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xb882f575 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xb895381a sys_imageblit +EXPORT_SYMBOL vmlinux 0xb8a30c7e _lv1_add_lpm_event_bookmark +EXPORT_SYMBOL vmlinux 0xb8a5524e phy_suspend +EXPORT_SYMBOL vmlinux 0xb8a6ee7c sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xb8a77260 file_remove_privs +EXPORT_SYMBOL vmlinux 0xb8a9369c i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8d79ef6 may_umount_tree +EXPORT_SYMBOL vmlinux 0xb8d7b7da redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xb8e0c35c i2c_clients_command +EXPORT_SYMBOL vmlinux 0xb8e69d2d netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xb8eec98b del_timer +EXPORT_SYMBOL vmlinux 0xb901c7b9 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb9139ee6 mod_node_page_state +EXPORT_SYMBOL vmlinux 0xb917e8fc __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xb93a8353 param_get_charp +EXPORT_SYMBOL vmlinux 0xb94266c0 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xb95e9188 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xb971691e misc_deregister +EXPORT_SYMBOL vmlinux 0xb9795055 dev_uc_init +EXPORT_SYMBOL vmlinux 0xb97fa44b radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0xb9862da9 pcibus_to_node +EXPORT_SYMBOL vmlinux 0xb99f203d blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0xb9ab4892 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xb9aef6aa d_instantiate +EXPORT_SYMBOL vmlinux 0xb9b01db8 netdev_info +EXPORT_SYMBOL vmlinux 0xb9ce0a84 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xba122a2c smu_done_complete +EXPORT_SYMBOL vmlinux 0xba190774 sock_i_uid +EXPORT_SYMBOL vmlinux 0xba2ffec2 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xba38078e skb_unlink +EXPORT_SYMBOL vmlinux 0xba3ec4f7 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba507b01 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xba51d115 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xba537004 input_unregister_device +EXPORT_SYMBOL vmlinux 0xba60c93c set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0xba904e3a scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xba919e4d update_devfreq +EXPORT_SYMBOL vmlinux 0xbad8f992 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xbad98891 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xbaf8fb74 register_gifconf +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb15c943 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xbb2ab083 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten +EXPORT_SYMBOL vmlinux 0xbb34737c drop_super +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb3e9e90 __pmd_table_size +EXPORT_SYMBOL vmlinux 0xbb43c3b2 locks_free_lock +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb762d04 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0xbb8d5698 send_sig +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbbb5ce70 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xbbb6b412 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xbbc399f8 phy_driver_register +EXPORT_SYMBOL vmlinux 0xbbc4eed8 register_console +EXPORT_SYMBOL vmlinux 0xbbd5b5c6 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0xbbe6f0b3 of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0xbbeb5599 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0xbc10823f pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xbc12e839 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0xbc553c3b vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xbc59e1d7 fb_get_mode +EXPORT_SYMBOL vmlinux 0xbc970d64 of_get_ibm_chip_id +EXPORT_SYMBOL vmlinux 0xbc982b06 eeh_subsystem_flags +EXPORT_SYMBOL vmlinux 0xbca65230 __get_user_pages +EXPORT_SYMBOL vmlinux 0xbca6fd84 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xbcb30a81 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbccd1de2 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xbcce09cf agp_bind_memory +EXPORT_SYMBOL vmlinux 0xbcd0be6c blk_end_request +EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 +EXPORT_SYMBOL vmlinux 0xbcf716a6 dquot_file_open +EXPORT_SYMBOL vmlinux 0xbcf74ba9 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xbd08e20f nd_device_unregister +EXPORT_SYMBOL vmlinux 0xbd13bab2 __nla_reserve +EXPORT_SYMBOL vmlinux 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd693c1d of_get_next_available_child +EXPORT_SYMBOL vmlinux 0xbd6d70c9 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xbd709d37 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xbd87a9bd kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xbd88ee48 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xbd8cfa15 pasemi_write_mac_reg +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbd9321a5 vlan_vid_del +EXPORT_SYMBOL vmlinux 0xbd951f43 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xbd95c75c get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xbd95ef8e phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xbdaf9a91 bdi_register_dev +EXPORT_SYMBOL vmlinux 0xbdb66758 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xbdd578b4 seq_open_private +EXPORT_SYMBOL vmlinux 0xbde5ace8 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0xbe096a1c input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xbe0bb141 prepare_to_swait +EXPORT_SYMBOL vmlinux 0xbe13f047 paca +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe23a67c pci_enable_msix +EXPORT_SYMBOL vmlinux 0xbe47fbed xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xbe6ada7d uuid_le_index +EXPORT_SYMBOL vmlinux 0xbe708142 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xbe8a3d4c blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0xbed26a1e dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xbed7da62 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf0280e0 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xbf146162 vm_event_states +EXPORT_SYMBOL vmlinux 0xbf18e2a8 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xbf1d8e96 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xbf49aa75 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xbf5d09f0 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0xbf699fa6 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xbf6c5037 phy_attached_info +EXPORT_SYMBOL vmlinux 0xbf713407 dquot_acquire +EXPORT_SYMBOL vmlinux 0xbf72e7a6 nvm_bb_tbl_fold +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf925c42 idr_init +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa3a51c bdevname +EXPORT_SYMBOL vmlinux 0xbfa8e787 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xbfabfe59 __debugger_iabr_match +EXPORT_SYMBOL vmlinux 0xbfaf92a9 lwtunnel_input +EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbfefe273 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xbff8182c plpar_hcall_norets +EXPORT_SYMBOL vmlinux 0xc00e09f7 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xc00fc9cc forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xc027a2da devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0xc02be2d7 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xc0300e3c i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xc0602852 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xc062f51c mb_cache_entry_delete_block +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0819c93 from_kgid_munged +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL vmlinux 0xc08b21e8 vfs_rename +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0bb5cfa param_ops_invbool +EXPORT_SYMBOL vmlinux 0xc0cacd45 cdrom_open +EXPORT_SYMBOL vmlinux 0xc0cfa4b4 of_dev_put +EXPORT_SYMBOL vmlinux 0xc0d49514 lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0xc0e379cf kobject_add +EXPORT_SYMBOL vmlinux 0xc0fa750d of_phy_attach +EXPORT_SYMBOL vmlinux 0xc11a49e8 phy_detach +EXPORT_SYMBOL vmlinux 0xc13511d7 cpumask_next_and +EXPORT_SYMBOL vmlinux 0xc13a10dc flex_array_alloc +EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit +EXPORT_SYMBOL vmlinux 0xc1745754 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xc183d38d input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xc18e691d simple_unlink +EXPORT_SYMBOL vmlinux 0xc19a8a7f uart_suspend_port +EXPORT_SYMBOL vmlinux 0xc1ac0742 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xc1bef64a invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xc1d421ff qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1eaaffc generic_writepages +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc242dc3d neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xc246b088 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xc25218a8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0xc26820c0 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xc26e1f57 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xc278b624 i2c_register_driver +EXPORT_SYMBOL vmlinux 0xc2820d10 netpoll_setup +EXPORT_SYMBOL vmlinux 0xc28a5f23 search_binary_handler +EXPORT_SYMBOL vmlinux 0xc28bca3e nvm_erase_blk +EXPORT_SYMBOL vmlinux 0xc2976ac9 tty_set_operations +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2b1f9d3 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xc2bb3d0a netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xc2d71c35 pci_map_rom +EXPORT_SYMBOL vmlinux 0xc2d8089f tcp_parse_options +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2ee768d of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xc2fb9ee1 _lv1_shutdown_logical_partition +EXPORT_SYMBOL vmlinux 0xc30e9bf7 tty_do_resize +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc314a7de tty_hangup +EXPORT_SYMBOL vmlinux 0xc32653fc ps3_dma_region_create +EXPORT_SYMBOL vmlinux 0xc33fbb07 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0xc364ae22 iomem_resource +EXPORT_SYMBOL vmlinux 0xc37df91f __nla_put_64bit +EXPORT_SYMBOL vmlinux 0xc39403ee copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3c4d1dd of_get_next_child +EXPORT_SYMBOL vmlinux 0xc3ca7e82 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xc3ce0377 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xc3d52c0c capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xc3de12a6 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xc3fc20c4 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xc41f1696 _lv1_configure_virtual_uart_irq +EXPORT_SYMBOL vmlinux 0xc42601a3 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0xc46d9295 dm_table_get_md +EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xc47d6de9 simple_get_link +EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress +EXPORT_SYMBOL vmlinux 0xc4978c87 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4a40938 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xc4b6d998 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xc4bf7107 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xc4c5d11f blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xc4eaf670 seq_open +EXPORT_SYMBOL vmlinux 0xc4ec55de mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xc4f088f2 account_page_redirty +EXPORT_SYMBOL vmlinux 0xc5089620 _lv1_stop_ppe_periodic_tracer +EXPORT_SYMBOL vmlinux 0xc50b0553 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xc50d640f __destroy_inode +EXPORT_SYMBOL vmlinux 0xc50eb1ac tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xc51a79f0 make_kgid +EXPORT_SYMBOL vmlinux 0xc5255270 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xc5363c00 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xc547565a kthread_stop +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc55de23c percpu_counter_set +EXPORT_SYMBOL vmlinux 0xc572a3b3 blk_complete_request +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59cafec dcache_dir_close +EXPORT_SYMBOL vmlinux 0xc5a396fd udplite_table +EXPORT_SYMBOL vmlinux 0xc5b18396 blkdev_fsync +EXPORT_SYMBOL vmlinux 0xc5b3b4f8 dquot_quota_on +EXPORT_SYMBOL vmlinux 0xc5bc55c9 of_phy_connect +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc6162bd9 from_kprojid +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc6504a1b param_set_long +EXPORT_SYMBOL vmlinux 0xc654fb71 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc663b075 __ioremap +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc67963e9 cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0xc691b0a7 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xc69a30b3 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xc6b0b791 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xc6b22c71 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xc6b8d0a7 pid_task +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6ee27e3 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xc6f77675 scsi_target_resume +EXPORT_SYMBOL vmlinux 0xc6fba2b2 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc7285bf2 fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc76007cf dev_emerg +EXPORT_SYMBOL vmlinux 0xc768e0af bio_copy_data +EXPORT_SYMBOL vmlinux 0xc77d44b1 ___pskb_trim +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7898275 flex_array_shrink +EXPORT_SYMBOL vmlinux 0xc790eaaa inode_nohighmem +EXPORT_SYMBOL vmlinux 0xc7964412 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xc797570d phy_resume +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7af5a9f __nd_driver_register +EXPORT_SYMBOL vmlinux 0xc7c8d408 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xc7ee6037 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xc7f39b15 irq_stat +EXPORT_SYMBOL vmlinux 0xc7f469f5 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0xc80d1c9b input_set_capability +EXPORT_SYMBOL vmlinux 0xc834bb80 iunique +EXPORT_SYMBOL vmlinux 0xc83b8736 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xc83e4987 irq_set_chip +EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc84e4c9c drop_nlink +EXPORT_SYMBOL vmlinux 0xc8571bcb idr_for_each +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8793b51 of_get_pci_address +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8d9023e iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0xc8e31d75 _lv1_configure_irq_state_bitmap +EXPORT_SYMBOL vmlinux 0xc8f50ac5 macio_enable_devres +EXPORT_SYMBOL vmlinux 0xc908bd74 cur_cpu_spec +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc92e8203 iov_iter_advance +EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xc957c597 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc9766972 dma_async_device_register +EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run +EXPORT_SYMBOL vmlinux 0xc97e213b fscrypt_release_ctx +EXPORT_SYMBOL vmlinux 0xc9936522 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9af2047 ps2_drain +EXPORT_SYMBOL vmlinux 0xc9b76252 clear_wb_congested +EXPORT_SYMBOL vmlinux 0xc9c678a8 of_phy_find_device +EXPORT_SYMBOL vmlinux 0xc9dc3d79 __pte_frag_size_shift +EXPORT_SYMBOL vmlinux 0xc9df395b igrab +EXPORT_SYMBOL vmlinux 0xc9fc598d pasemi_read_dma_reg +EXPORT_SYMBOL vmlinux 0xca03e0c1 tcp_check_req +EXPORT_SYMBOL vmlinux 0xca070f97 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xca11bf56 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get +EXPORT_SYMBOL vmlinux 0xca319638 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xca3308f0 secpath_dup +EXPORT_SYMBOL vmlinux 0xca330a59 of_get_mac_address +EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state +EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent +EXPORT_SYMBOL vmlinux 0xca668a37 simple_readpage +EXPORT_SYMBOL vmlinux 0xca68d5c0 skb_dequeue +EXPORT_SYMBOL vmlinux 0xca825895 pmu_suspend +EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcaabf3f9 pasemi_write_iob_reg +EXPORT_SYMBOL vmlinux 0xcab89120 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty +EXPORT_SYMBOL vmlinux 0xcad55aef inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xcadeca63 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb09c6ec gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xcb3c8a7d ___ratelimit +EXPORT_SYMBOL vmlinux 0xcb63a679 generic_update_time +EXPORT_SYMBOL vmlinux 0xcb63c82c __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xcb729e79 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xcb777cd1 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xcb86d6d3 cont_write_begin +EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc3b94e eeh_check_failure +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbccff1a lock_fb_info +EXPORT_SYMBOL vmlinux 0xcbcfe87b dev_change_flags +EXPORT_SYMBOL vmlinux 0xcbd24b85 bdput +EXPORT_SYMBOL vmlinux 0xcbe8b038 _lv1_configure_execution_time_variable +EXPORT_SYMBOL vmlinux 0xcbfbc3ed tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xcc0905d6 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xcc0c002a of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0xcc0f8ab8 radix__local_flush_tlb_pwc +EXPORT_SYMBOL vmlinux 0xcc159920 mmu_hash_ops +EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc292dfa iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0xcc43b534 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xcc494f63 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5403f7 sync_inode +EXPORT_SYMBOL vmlinux 0xcc588687 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc5f0e5e mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xcc5f2f6e blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xcc6f1e82 d_delete +EXPORT_SYMBOL vmlinux 0xcc74e05a dev_addr_flush +EXPORT_SYMBOL vmlinux 0xcc81c7a8 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xcc845b3a mfd_add_devices +EXPORT_SYMBOL vmlinux 0xcc84fdc0 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0xcc89c246 pasemi_dma_alloc_chan +EXPORT_SYMBOL vmlinux 0xcc949169 cad_pid +EXPORT_SYMBOL vmlinux 0xccab0b1e generic_delete_inode +EXPORT_SYMBOL vmlinux 0xccacf616 pci_pme_capable +EXPORT_SYMBOL vmlinux 0xccb85d66 inet_sendpage +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccc313dc kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0xccc48c53 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xccda13c9 path_put +EXPORT_SYMBOL vmlinux 0xccef6074 kill_block_super +EXPORT_SYMBOL vmlinux 0xcd03df5e resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xcd17c8bc dev_addr_del +EXPORT_SYMBOL vmlinux 0xcd183522 input_unregister_handle +EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xcd2322f7 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd281b05 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xcd3948c5 sock_wake_async +EXPORT_SYMBOL vmlinux 0xcd62853d devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xcd65105f netif_receive_skb +EXPORT_SYMBOL vmlinux 0xcd723032 ps3_sb_event_receive_port_setup +EXPORT_SYMBOL vmlinux 0xcd769f62 _lv1_gpu_device_map +EXPORT_SYMBOL vmlinux 0xcd81e8e5 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xcd960185 vme_slot_num +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdd8db1a add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xce111e74 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xce142d71 replace_mount_options +EXPORT_SYMBOL vmlinux 0xce17c6e7 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce3b3f09 profile_pc +EXPORT_SYMBOL vmlinux 0xce409cda pmac_set_early_video_resume +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift +EXPORT_SYMBOL vmlinux 0xce7bd2d3 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xce7bfe70 vm_brk +EXPORT_SYMBOL vmlinux 0xce7ebec1 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xce91eae1 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xce9543e7 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xcea1dd35 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xcea5f4f1 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free +EXPORT_SYMBOL vmlinux 0xcec10ae4 icmpv6_send +EXPORT_SYMBOL vmlinux 0xced777cb proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xced7da39 dump_align +EXPORT_SYMBOL vmlinux 0xcef0bfe1 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcefdd79b gen_pool_alloc_algo +EXPORT_SYMBOL vmlinux 0xcf2265d4 _dev_info +EXPORT_SYMBOL vmlinux 0xcf2ec946 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xcf3309a5 page_symlink +EXPORT_SYMBOL vmlinux 0xcf47f857 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xcf5ee910 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xcf61d21b new_inode +EXPORT_SYMBOL vmlinux 0xcf6a9508 devm_ioport_map +EXPORT_SYMBOL vmlinux 0xcf6c5c33 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xcf802f26 fget +EXPORT_SYMBOL vmlinux 0xcf8a63db load_nls_default +EXPORT_SYMBOL vmlinux 0xcf951191 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0xcfac9b7f msi_bitmap_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0xcfb6f47f iput +EXPORT_SYMBOL vmlinux 0xcfb7d5a0 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0xcfc41a31 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xcfd628a4 ppp_channel_index +EXPORT_SYMBOL vmlinux 0xcfe8ccd5 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xcfee5c8a pci_dev_put +EXPORT_SYMBOL vmlinux 0xd0058403 compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0xd032d97e bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xd0418d95 param_set_invbool +EXPORT_SYMBOL vmlinux 0xd050c7da mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xd05605a1 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xd05931ec _lv1_set_lpm_counter_control +EXPORT_SYMBOL vmlinux 0xd06d3f74 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xd06eb867 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd08676ee vfs_create +EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0aafc53 note_scsi_host +EXPORT_SYMBOL vmlinux 0xd0c574d0 param_ops_bool +EXPORT_SYMBOL vmlinux 0xd0dc898e generic_perform_write +EXPORT_SYMBOL vmlinux 0xd0e5fa6e devm_memunmap +EXPORT_SYMBOL vmlinux 0xd0e925d1 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0f70b55 proc_set_user +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd101c2c3 invalidate_bdev +EXPORT_SYMBOL vmlinux 0xd11a02e4 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xd1262886 rtas_data_buf +EXPORT_SYMBOL vmlinux 0xd1383cac locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xd138a642 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xd1550e29 bio_init +EXPORT_SYMBOL vmlinux 0xd167b1cb cfb_copyarea +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd1a95dc5 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xd1c0af3e prepare_binprm +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1ee98c8 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xd1fe6ebc tso_count_descs +EXPORT_SYMBOL vmlinux 0xd1fe8ebb _lv1_get_spe_interrupt_status +EXPORT_SYMBOL vmlinux 0xd206a1f6 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xd232c17f eeh_dev_release +EXPORT_SYMBOL vmlinux 0xd23d122f devm_memremap +EXPORT_SYMBOL vmlinux 0xd244f52a __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd254b9fa inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd25d8fac devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0xd2768e37 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd28fa6d8 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xd29b1671 inode_init_once +EXPORT_SYMBOL vmlinux 0xd2a342d5 of_node_get +EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd30dd54a mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xd31a85ca abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd32b7c90 neigh_table_clear +EXPORT_SYMBOL vmlinux 0xd334fc63 end_page_writeback +EXPORT_SYMBOL vmlinux 0xd33e46cf eth_mac_addr +EXPORT_SYMBOL vmlinux 0xd347484c jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xd348a5dc sk_wait_data +EXPORT_SYMBOL vmlinux 0xd3502359 freezing_slow_path +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd36ec41b __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3bd5ffd agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0xd409383c pmu_request +EXPORT_SYMBOL vmlinux 0xd411ebba rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0xd424b857 inc_nlink +EXPORT_SYMBOL vmlinux 0xd425439e rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xd42b65cc trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd45f6456 ppp_input +EXPORT_SYMBOL vmlinux 0xd45f9d2b datagram_poll +EXPORT_SYMBOL vmlinux 0xd47392f6 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed +EXPORT_SYMBOL vmlinux 0xd4a762c8 __scm_send +EXPORT_SYMBOL vmlinux 0xd4bb20f5 kill_pid +EXPORT_SYMBOL vmlinux 0xd4bdc262 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xd4c941c8 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xd4d968b3 inet6_release +EXPORT_SYMBOL vmlinux 0xd4f9de16 elv_rb_del +EXPORT_SYMBOL vmlinux 0xd511f66f pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0xd51982ee sk_capable +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd5286c84 bio_reset +EXPORT_SYMBOL vmlinux 0xd5444589 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xd54b0342 xattr_full_name +EXPORT_SYMBOL vmlinux 0xd5696b9e get_fs_type +EXPORT_SYMBOL vmlinux 0xd569f5f7 seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xd571653d mdio_device_free +EXPORT_SYMBOL vmlinux 0xd577daf8 dev_err +EXPORT_SYMBOL vmlinux 0xd5861566 mach_powermac +EXPORT_SYMBOL vmlinux 0xd58b1892 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd5adba26 netif_napi_add +EXPORT_SYMBOL vmlinux 0xd5dffc0d xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xd5e1d719 _lv1_set_ppe_periodic_tracer_frequency +EXPORT_SYMBOL vmlinux 0xd5e2a533 get_pci_dma_ops +EXPORT_SYMBOL vmlinux 0xd5e72671 km_new_mapping +EXPORT_SYMBOL vmlinux 0xd5f88006 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xd5fc7952 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd60e470a __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xd6128ea7 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd61d60d5 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd6701767 i2c_use_client +EXPORT_SYMBOL vmlinux 0xd6753baf dev_printk +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd69ef97d posix_acl_alloc +EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0xd6edf811 _lv1_release_memory +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6ef8539 i2c_del_driver +EXPORT_SYMBOL vmlinux 0xd6fd4053 __arch_hweight32 +EXPORT_SYMBOL vmlinux 0xd714c090 srp_rport_get +EXPORT_SYMBOL vmlinux 0xd71f2f6f pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xd728f5ca dev_open +EXPORT_SYMBOL vmlinux 0xd7298767 of_root +EXPORT_SYMBOL vmlinux 0xd72cb704 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xd72e1cfc _lv1_set_lpm_spr_trigger +EXPORT_SYMBOL vmlinux 0xd7441480 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xd7453c21 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xd7458a62 skb_store_bits +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd761a383 ioremap_prot +EXPORT_SYMBOL vmlinux 0xd786c0ea plpar_hcall9 +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7f24e33 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xd7f57255 radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xd803eb70 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xd80c18f8 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xd8272953 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xd84c2d77 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0xd86e42b7 devm_request_resource +EXPORT_SYMBOL vmlinux 0xd8816fb4 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b1e4f8 fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xd8b58295 user_path_at_empty +EXPORT_SYMBOL vmlinux 0xd8b62e5b pci_write_vpd +EXPORT_SYMBOL vmlinux 0xd8be4641 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xd8de1f5d __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8e5b5d8 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xd8fe74b4 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xd974bc19 phy_attach_direct +EXPORT_SYMBOL vmlinux 0xd97fc19c mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xd9c69130 tcf_hashinfo_destroy +EXPORT_SYMBOL vmlinux 0xd9d2466d __register_nls +EXPORT_SYMBOL vmlinux 0xd9d4d09d _lv1_release_io_segment +EXPORT_SYMBOL vmlinux 0xd9d7d514 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xda0f5234 rtas_offline_cpus_mask +EXPORT_SYMBOL vmlinux 0xda26c224 pci_get_slot +EXPORT_SYMBOL vmlinux 0xda33e60c gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda4e6c73 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xda5a6ee1 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0xda619979 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xda735153 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xda74271b __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda8ec5da blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xda988f59 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xda9f5b16 __sock_create +EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xdab02190 __posix_acl_create +EXPORT_SYMBOL vmlinux 0xdab70c0d register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xdabc1ea8 fsl_lbc_find +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdac545b9 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xdac641cc nobh_writepage +EXPORT_SYMBOL vmlinux 0xdad0700a __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xdadecb0b of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0xdae4371b jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdaf9b3b9 fb_class +EXPORT_SYMBOL vmlinux 0xdb01198e fsl_upm_find +EXPORT_SYMBOL vmlinux 0xdb0ee891 blk_put_request +EXPORT_SYMBOL vmlinux 0xdb164231 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xdb4f05c6 mmc_can_trim +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb6f5a04 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb9e7d5b pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xdbacd754 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xdbcc9e46 pci_iomap +EXPORT_SYMBOL vmlinux 0xdbd33240 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xdbd6732b radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xdbf00929 cdrom_release +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc06cb6e inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0xdc11ef88 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc188b7e dma_iommu_ops +EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc661f64 __frontswap_store +EXPORT_SYMBOL vmlinux 0xdc689b7a module_refcount +EXPORT_SYMBOL vmlinux 0xdc7bb8b6 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0xdc8c5312 unregister_binfmt +EXPORT_SYMBOL vmlinux 0xdc9498dd down +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdcb9eb2c no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xdcce4ba4 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xdccfefbe phy_connect +EXPORT_SYMBOL vmlinux 0xdcdbf67d agp_create_memory +EXPORT_SYMBOL vmlinux 0xdcefb9a5 pmu_resume +EXPORT_SYMBOL vmlinux 0xdcf97465 da903x_query_status +EXPORT_SYMBOL vmlinux 0xdd0548b9 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd4723a3 arp_tbl +EXPORT_SYMBOL vmlinux 0xdd5e1a93 __vfs_write +EXPORT_SYMBOL vmlinux 0xdd63e1b2 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd6e1806 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xdd785f93 skb_clone +EXPORT_SYMBOL vmlinux 0xdd7d0034 nvm_find_target_type +EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer +EXPORT_SYMBOL vmlinux 0xdd955144 __debugger +EXPORT_SYMBOL vmlinux 0xdda7b637 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xddaac3e1 param_ops_short +EXPORT_SYMBOL vmlinux 0xddb3769b lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xddb44c00 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xdddfba7f xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xddf9e83f of_node_put +EXPORT_SYMBOL vmlinux 0xde171022 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xde1e020c dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xde43742b inet_addr_type +EXPORT_SYMBOL vmlinux 0xde467c1d netlink_net_capable +EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xde4ab50a pci_dev_get +EXPORT_SYMBOL vmlinux 0xde555121 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0xde7ee565 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdea1a68b __skb_tx_hash +EXPORT_SYMBOL vmlinux 0xdeb97dd1 __napi_schedule +EXPORT_SYMBOL vmlinux 0xdebe83d8 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xdec8aa2d dma_sync_wait +EXPORT_SYMBOL vmlinux 0xded97112 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xdee58cb1 page_mapping +EXPORT_SYMBOL vmlinux 0xdee9d144 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0xdef0567d xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xdf055494 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xdf105c9a nvm_put_blk +EXPORT_SYMBOL vmlinux 0xdf113989 pci_scan_bus +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf5a9769 page_mapped +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf60fc83 _lv1_net_start_tx_dma +EXPORT_SYMBOL vmlinux 0xdf78c209 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xdf7bb82a jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdfaf2c2f dquot_transfer +EXPORT_SYMBOL vmlinux 0xdfba2af1 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xdfc84aec single_open_size +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe010f13d init_buffer +EXPORT_SYMBOL vmlinux 0xe01295ae udp6_csum_init +EXPORT_SYMBOL vmlinux 0xe014e22c netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xe026913a sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xe0297c03 ether_setup +EXPORT_SYMBOL vmlinux 0xe044b9c3 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe0addbcd __frontswap_test +EXPORT_SYMBOL vmlinux 0xe0af72e7 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b4950a sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xe0b637c6 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xe0cdf939 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xe0f68765 dm_get_device +EXPORT_SYMBOL vmlinux 0xe0fe5bd3 kern_unmount +EXPORT_SYMBOL vmlinux 0xe102abca __skb_csum_offload_chk +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe16373f3 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xe17110ac fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe19e60fb unlock_page +EXPORT_SYMBOL vmlinux 0xe1b39e4f linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xe1ba6f5b setattr_copy +EXPORT_SYMBOL vmlinux 0xe1d8e5dc do_SAK +EXPORT_SYMBOL vmlinux 0xe1f6f235 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xe1f82aa0 skb_queue_head +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe2064db2 nobh_write_begin +EXPORT_SYMBOL vmlinux 0xe20c63e7 _lv1_unmap_device_mmio_region +EXPORT_SYMBOL vmlinux 0xe212c205 twl6040_power +EXPORT_SYMBOL vmlinux 0xe2166cee of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0xe21c0ad4 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xe21cd45b is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0xe220ceb8 __debugger_sstep +EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe2592b83 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xe27e44cc down_write_killable +EXPORT_SYMBOL vmlinux 0xe2952f30 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2aa9619 of_create_pci_dev +EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock +EXPORT_SYMBOL vmlinux 0xe2c0ed00 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xe2cd591c mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2d5ed3f d_move +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe3134b6b nvm_register +EXPORT_SYMBOL vmlinux 0xe31435a1 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0xe3211cac blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xe3225192 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0xe333f790 __devm_request_region +EXPORT_SYMBOL vmlinux 0xe33acc66 nonseekable_open +EXPORT_SYMBOL vmlinux 0xe33e6c2e ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xe340035e scsi_remove_device +EXPORT_SYMBOL vmlinux 0xe3650d15 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0xe3797683 inet6_add_offload +EXPORT_SYMBOL vmlinux 0xe392264d fs_bio_set +EXPORT_SYMBOL vmlinux 0xe3923e44 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0xe398b964 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xe39b62cd mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3aa0947 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xe3b9a150 xfrm_register_type +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3f1a2ff srp_rport_put +EXPORT_SYMBOL vmlinux 0xe40016a8 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xe406060c deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xe4196c43 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xe41eaa1c blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0xe421bb60 of_parse_phandle +EXPORT_SYMBOL vmlinux 0xe42b8ce4 tso_start +EXPORT_SYMBOL vmlinux 0xe430bf87 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0xe44821cc xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0xe448b81f skb_tx_error +EXPORT_SYMBOL vmlinux 0xe46d552a do_splice_direct +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe48cd73a security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xe49108f5 pci_restore_state +EXPORT_SYMBOL vmlinux 0xe4a66c9d dev_uc_del +EXPORT_SYMBOL vmlinux 0xe4ad0d4f generic_write_checks +EXPORT_SYMBOL vmlinux 0xe4b270ab generic_file_open +EXPORT_SYMBOL vmlinux 0xe4b3c057 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xe4baac8b ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xe4bb2fb2 generic_ro_fops +EXPORT_SYMBOL vmlinux 0xe4c46d2b param_set_short +EXPORT_SYMBOL vmlinux 0xe4d387c4 dev_get_flags +EXPORT_SYMBOL vmlinux 0xe4e2c25c __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xe4e7a488 __inet_hash +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe5094e01 nf_log_set +EXPORT_SYMBOL vmlinux 0xe51b6d8c __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe53e83cc default_file_splice_read +EXPORT_SYMBOL vmlinux 0xe55d1479 flow_cache_fini +EXPORT_SYMBOL vmlinux 0xe566eb29 pipe_unlock +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe58c4811 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xe5a81220 ilookup5 +EXPORT_SYMBOL vmlinux 0xe5a9f8f0 ip_check_defrag +EXPORT_SYMBOL vmlinux 0xe5b97cdd inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xe5bd48f1 set_binfmt +EXPORT_SYMBOL vmlinux 0xe5c69f76 fscrypt_get_encryption_info +EXPORT_SYMBOL vmlinux 0xe5c6f68f max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5ccefa9 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xe5e9be50 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe60988ac _lv1_query_logical_partition_address_region_info +EXPORT_SYMBOL vmlinux 0xe60c0fc4 dev_addr_add +EXPORT_SYMBOL vmlinux 0xe62e2ce8 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xe6483bfe gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xe6510c45 input_release_device +EXPORT_SYMBOL vmlinux 0xe654425e tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xe6553bae skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xe65ccf60 scsi_remove_target +EXPORT_SYMBOL vmlinux 0xe65f732a vfs_mknod +EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe6a28d48 vio_find_node +EXPORT_SYMBOL vmlinux 0xe6cf6672 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xe6d4fad6 dev_driver_string +EXPORT_SYMBOL vmlinux 0xe6ef3dde __neigh_event_send +EXPORT_SYMBOL vmlinux 0xe7137fb2 netif_rx_ni +EXPORT_SYMBOL vmlinux 0xe745b57c blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xe7499a2e __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xe74aa406 _lv1_set_dabr +EXPORT_SYMBOL vmlinux 0xe755ede3 __nd_iostat_start +EXPORT_SYMBOL vmlinux 0xe75d1dc4 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0xe77e14fe nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xe78ec73a pci_iounmap +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7b8cddf kfree_skb_list +EXPORT_SYMBOL vmlinux 0xe7cd99b7 smu_queue_simple +EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7dd8945 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xe7e95c9b dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xe7f094ee inet6_del_offload +EXPORT_SYMBOL vmlinux 0xe7f37aec dev_printk_emit +EXPORT_SYMBOL vmlinux 0xe7f80715 generic_setlease +EXPORT_SYMBOL vmlinux 0xe80ddd17 vga_con +EXPORT_SYMBOL vmlinux 0xe810f4c4 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xe8181f64 sget +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe820f59b devm_gpiod_put +EXPORT_SYMBOL vmlinux 0xe824bb76 inet_bind +EXPORT_SYMBOL vmlinux 0xe825909a fscrypt_decrypt_page +EXPORT_SYMBOL vmlinux 0xe82cc752 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xe84c1bed try_to_release_page +EXPORT_SYMBOL vmlinux 0xe86d4a80 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xe887c578 iov_iter_init +EXPORT_SYMBOL vmlinux 0xe898f903 key_invalidate +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8c438f3 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xe8d519ca netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xe8e79101 prepare_creds +EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 +EXPORT_SYMBOL vmlinux 0xe8fad9b4 generic_file_mmap +EXPORT_SYMBOL vmlinux 0xe8fff30c skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xe9021907 dm_kobject_release +EXPORT_SYMBOL vmlinux 0xe9038166 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0xe90813b4 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next +EXPORT_SYMBOL vmlinux 0xe9480e7a xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xe94a3758 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe96c0b0f blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xe97fd514 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xe993bbd6 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xe99984e3 generic_show_options +EXPORT_SYMBOL vmlinux 0xe9a75420 phy_start +EXPORT_SYMBOL vmlinux 0xe9a9f43c __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xe9cc56ce tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xe9cdef09 blkdev_get +EXPORT_SYMBOL vmlinux 0xe9e3ea73 unregister_key_type +EXPORT_SYMBOL vmlinux 0xe9ebe818 key_unlink +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea006788 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xea00c2b0 compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea3507ec __inode_permission +EXPORT_SYMBOL vmlinux 0xea4e5f88 phy_drivers_register +EXPORT_SYMBOL vmlinux 0xea522ffe km_policy_expired +EXPORT_SYMBOL vmlinux 0xea55e587 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xea78ad83 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea7ddfd8 pcim_iounmap +EXPORT_SYMBOL vmlinux 0xea85592a of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xea8d79a1 set_user_nice +EXPORT_SYMBOL vmlinux 0xeab5226f balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xeab7069a mach_pseries +EXPORT_SYMBOL vmlinux 0xeacc9957 block_write_begin +EXPORT_SYMBOL vmlinux 0xead2791c proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xeadce010 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb53a8d6 d_add +EXPORT_SYMBOL vmlinux 0xeb7a5ca2 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xeb7f5966 eth_header_cache +EXPORT_SYMBOL vmlinux 0xeb823837 dev_disable_lro +EXPORT_SYMBOL vmlinux 0xeb894c77 phy_device_register +EXPORT_SYMBOL vmlinux 0xeb8c7b7b cxl_use_count +EXPORT_SYMBOL vmlinux 0xeb9b2eb1 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xeba2a1f7 rtas_indicator_present +EXPORT_SYMBOL vmlinux 0xebb277a5 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xebcab3a6 ppc_pci_io +EXPORT_SYMBOL vmlinux 0xebcac433 nvm_unregister_tgt_type +EXPORT_SYMBOL vmlinux 0xebecd641 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0xebf8aac5 bdi_destroy +EXPORT_SYMBOL vmlinux 0xebf938b1 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xec291cda genphy_update_link +EXPORT_SYMBOL vmlinux 0xec30765a _lv1_allocate_io_segment +EXPORT_SYMBOL vmlinux 0xec4564dc inet6_offloads +EXPORT_SYMBOL vmlinux 0xec53a861 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xec6af7ea dma_find_channel +EXPORT_SYMBOL vmlinux 0xec878beb eth_gro_complete +EXPORT_SYMBOL vmlinux 0xeca3011e mac_find_mode +EXPORT_SYMBOL vmlinux 0xecae2f93 user_revoke +EXPORT_SYMBOL vmlinux 0xecb5e26b serio_interrupt +EXPORT_SYMBOL vmlinux 0xecbb926f xor_altivec_3 +EXPORT_SYMBOL vmlinux 0xecccade1 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xecd3b0e8 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xecd982a2 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xeceae6cd jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xed05977c down_write_trylock +EXPORT_SYMBOL vmlinux 0xed298b61 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xed39bad3 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed63a55b proto_unregister +EXPORT_SYMBOL vmlinux 0xed652427 _lv1_set_interrupt_mask +EXPORT_SYMBOL vmlinux 0xed6e0357 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xed8a9475 xfrm_lookup +EXPORT_SYMBOL vmlinux 0xed915ce3 sock_no_bind +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedacba71 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0xedb21502 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xedb317f0 bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedbfa801 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedcd8dd6 vga_client_register +EXPORT_SYMBOL vmlinux 0xedcdf369 __d_drop +EXPORT_SYMBOL vmlinux 0xedd0cd89 radix_tree_delete +EXPORT_SYMBOL vmlinux 0xede6354a posix_acl_valid +EXPORT_SYMBOL vmlinux 0xede80743 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xedf0b48c _lv1_storage_get_async_status +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xedf627c1 pci_iomap_range +EXPORT_SYMBOL vmlinux 0xee04bda3 sock_alloc +EXPORT_SYMBOL vmlinux 0xee0ad021 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xee247a84 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee424ee6 of_get_next_parent +EXPORT_SYMBOL vmlinux 0xee58d9a1 simple_transaction_set +EXPORT_SYMBOL vmlinux 0xee5bb20b _lv1_panic +EXPORT_SYMBOL vmlinux 0xee5d1d37 macio_dev_put +EXPORT_SYMBOL vmlinux 0xee6cf015 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xee70166e ip6_frag_match +EXPORT_SYMBOL vmlinux 0xee9174c5 _lv1_storage_read +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeb65f2c simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xeec08b1a clocksource_unregister +EXPORT_SYMBOL vmlinux 0xeec87705 tty_name +EXPORT_SYMBOL vmlinux 0xeeca8dfb neigh_for_each +EXPORT_SYMBOL vmlinux 0xeed5bcca __pud_table_size +EXPORT_SYMBOL vmlinux 0xeed6ce79 security_path_mknod +EXPORT_SYMBOL vmlinux 0xeeda8568 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xeeec695f dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeef82327 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xef02a402 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xef36b35b copy_to_iter +EXPORT_SYMBOL vmlinux 0xef3e6d5b request_key_async +EXPORT_SYMBOL vmlinux 0xef52a819 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xef6b456e of_device_is_available +EXPORT_SYMBOL vmlinux 0xef6c23bb sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xef7b1348 __init_rwsem +EXPORT_SYMBOL vmlinux 0xef7e1a25 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xef94db2c simple_pin_fs +EXPORT_SYMBOL vmlinux 0xefa03cba iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xefbbdfe3 dev_close +EXPORT_SYMBOL vmlinux 0xefc2e54d _lv1_storage_send_device_command +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefd282f3 vme_slave_request +EXPORT_SYMBOL vmlinux 0xefda4c6e skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefde1bbe flush_dcache_range +EXPORT_SYMBOL vmlinux 0xefe6bb25 dm_io +EXPORT_SYMBOL vmlinux 0xeff29679 ata_dev_printk +EXPORT_SYMBOL vmlinux 0xeff6f984 sys_copyarea +EXPORT_SYMBOL vmlinux 0xeff777c9 gen_pool_free +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf005467b pnv_cxl_release_hwirqs +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf01cfe6a blk_alloc_queue +EXPORT_SYMBOL vmlinux 0xf058c9ac alloc_file +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0xf069ccde dm_unregister_target +EXPORT_SYMBOL vmlinux 0xf072f004 framebuffer_release +EXPORT_SYMBOL vmlinux 0xf07840ff scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xf07fe9a0 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xf08179f8 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0c4d43a set_bh_page +EXPORT_SYMBOL vmlinux 0xf0d2f84a _lv1_gpu_context_free +EXPORT_SYMBOL vmlinux 0xf0d80e9b netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible +EXPORT_SYMBOL vmlinux 0xf11e1842 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xf1349228 swake_up_locked +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf14c6c57 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xf172b84f input_free_device +EXPORT_SYMBOL vmlinux 0xf17da01c srp_start_tl_fail_timers +EXPORT_SYMBOL vmlinux 0xf183189b __ioremap_at +EXPORT_SYMBOL vmlinux 0xf183333c __i2c_transfer +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1984719 iterate_fd +EXPORT_SYMBOL vmlinux 0xf19c09e6 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xf1a4b6ed filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xf1b31f56 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xf1b5cea0 inet_ioctl +EXPORT_SYMBOL vmlinux 0xf1b7ff2e find_lock_entry +EXPORT_SYMBOL vmlinux 0xf1c13780 bdget +EXPORT_SYMBOL vmlinux 0xf1c4ed56 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xf1ca6d8d nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1f19d32 scmd_printk +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf22881e8 lg_local_lock +EXPORT_SYMBOL vmlinux 0xf2317488 kobject_del +EXPORT_SYMBOL vmlinux 0xf23c2ac7 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf247d8f2 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0xf24dcaa8 _lv1_net_stop_rx_dma +EXPORT_SYMBOL vmlinux 0xf263fb30 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xf26c6832 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0xf279c099 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xf2a0ddd8 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xf2a0ef4d tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xf2b889c2 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xf2c3b229 md_write_start +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2dd662c xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xf2e3f305 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xf307ecd1 cdev_init +EXPORT_SYMBOL vmlinux 0xf30d1036 _lv1_start_ppe_periodic_tracer +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf322a206 bit_waitqueue +EXPORT_SYMBOL vmlinux 0xf330a9bf request_key +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34a47a0 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf357db8d pasemi_dma_set_flag +EXPORT_SYMBOL vmlinux 0xf35a2adc i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0xf3640e3a mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0xf3735787 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0xf37b08d1 softnet_data +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf392179b inode_init_always +EXPORT_SYMBOL vmlinux 0xf3a5a765 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xf3a64fec tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xf3a9d5db vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xf3be5fc0 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xf3cb58e3 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xf3dd29ae dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3e6f3e5 pmac_suspend_agp_for_card +EXPORT_SYMBOL vmlinux 0xf3f1ba4f pcibios_align_resource +EXPORT_SYMBOL vmlinux 0xf40e72fe vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xf41631e4 noop_fsync +EXPORT_SYMBOL vmlinux 0xf41a7bff tcp_disconnect +EXPORT_SYMBOL vmlinux 0xf42fb2f7 arp_send +EXPORT_SYMBOL vmlinux 0xf441877f fence_array_create +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf4663126 redraw_screen +EXPORT_SYMBOL vmlinux 0xf46adc6d key_reject_and_link +EXPORT_SYMBOL vmlinux 0xf472017a swake_up_all +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4768125 netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0xf47c5f79 vfs_getattr +EXPORT_SYMBOL vmlinux 0xf4934230 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xf4b064ca mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4c66840 invalidate_partition +EXPORT_SYMBOL vmlinux 0xf4c905d6 free_user_ns +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf5019a57 neigh_event_ns +EXPORT_SYMBOL vmlinux 0xf510e3b5 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xf51bf88b nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf51ccf61 eth_change_mtu +EXPORT_SYMBOL vmlinux 0xf5222143 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0xf52289bc pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xf53350ed scsi_execute +EXPORT_SYMBOL vmlinux 0xf533b735 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf53f0d8b __mod_node_page_state +EXPORT_SYMBOL vmlinux 0xf55256ce __napi_complete +EXPORT_SYMBOL vmlinux 0xf55b3b3d __arch_hweight16 +EXPORT_SYMBOL vmlinux 0xf599effd unlink_framebuffer +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io +EXPORT_SYMBOL vmlinux 0xf5adfb1b security_d_instantiate +EXPORT_SYMBOL vmlinux 0xf5ae438f dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xf5c10ab2 macio_unregister_driver +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister +EXPORT_SYMBOL vmlinux 0xf5eaa5fa inc_node_page_state +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5ecc2e7 i2c_transfer +EXPORT_SYMBOL vmlinux 0xf6115df8 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xf611a54a of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0xf617b84d netif_napi_del +EXPORT_SYMBOL vmlinux 0xf617f969 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xf61c9e51 fd_install +EXPORT_SYMBOL vmlinux 0xf6213e12 pasemi_dma_clear_flag +EXPORT_SYMBOL vmlinux 0xf63a9514 inode_needs_sync +EXPORT_SYMBOL vmlinux 0xf64891e3 sk_busy_loop +EXPORT_SYMBOL vmlinux 0xf64d9a95 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xf652b37f mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xf65967bd nvm_submit_ppa_list +EXPORT_SYMBOL vmlinux 0xf6767679 sock_create +EXPORT_SYMBOL vmlinux 0xf676f1a9 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf67a1fe1 elevator_change +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf6ca7164 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xf6cf9352 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xf6cff7ea udp_sendmsg +EXPORT_SYMBOL vmlinux 0xf6d5e766 generic_getxattr +EXPORT_SYMBOL vmlinux 0xf6dbdd89 inet_offloads +EXPORT_SYMBOL vmlinux 0xf6e34924 tty_write_room +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6ecb763 _lv1_send_event_locally +EXPORT_SYMBOL vmlinux 0xf6f11d08 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xf6fa4352 of_iomap +EXPORT_SYMBOL vmlinux 0xf6fb11f3 pci_disable_device +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf715cc2d input_allocate_device +EXPORT_SYMBOL vmlinux 0xf72529bb pagecache_write_end +EXPORT_SYMBOL vmlinux 0xf74858f9 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf7726d39 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xf79136c6 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0xf7ac18aa xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xf7bac0ec _lv1_set_lpm_counter +EXPORT_SYMBOL vmlinux 0xf7de160d vga_put +EXPORT_SYMBOL vmlinux 0xf7f38a87 kset_unregister +EXPORT_SYMBOL vmlinux 0xf8004bfd _lv1_disconnect_interrupt_event_receive_port +EXPORT_SYMBOL vmlinux 0xf81103ea radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf81523cf __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xf8261763 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf828773b mach_pasemi +EXPORT_SYMBOL vmlinux 0xf82a6379 sock_wfree +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf83ef332 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xf84f61a0 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xf85f1b24 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xf8735445 blkdev_put +EXPORT_SYMBOL vmlinux 0xf878b94a xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xf87c8ac3 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xf89cc00d netdev_crit +EXPORT_SYMBOL vmlinux 0xf8bb6edf radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0xf8e72560 lease_get_mtime +EXPORT_SYMBOL vmlinux 0xf8eaff05 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf8fccf5c nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xf900da19 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xf9022fa6 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xf904f314 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xf912525a scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0xf95d426f generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xf96b0b47 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xf96e0a01 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9a57aad tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xf9bd68ec blk_get_backing_dev_info +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0xfa123f92 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xfa188aee blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0xfa50c00c sock_no_accept +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa5196ce pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xfa58cab7 netif_carrier_off +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5bcf35 mod_timer +EXPORT_SYMBOL vmlinux 0xfa633af8 inet_shutdown +EXPORT_SYMBOL vmlinux 0xfa741039 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xfaa15994 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfadb5750 pmu_unlock +EXPORT_SYMBOL vmlinux 0xfae64664 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xfaf18657 d_tmpfile +EXPORT_SYMBOL vmlinux 0xfaf86123 input_get_keycode +EXPORT_SYMBOL vmlinux 0xfb115a5e dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0xfb28ee17 key_type_keyring +EXPORT_SYMBOL vmlinux 0xfb2e80c6 sock_release +EXPORT_SYMBOL vmlinux 0xfb3c9c25 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0xfb415583 __blk_end_request +EXPORT_SYMBOL vmlinux 0xfb4907b9 done_path_create +EXPORT_SYMBOL vmlinux 0xfb490941 param_ops_string +EXPORT_SYMBOL vmlinux 0xfb64c973 filemap_flush +EXPORT_SYMBOL vmlinux 0xfb66d6e4 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbb1fe96 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0xfbb84975 dev_warn +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbca5ed4 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xfbd75f3c pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0xfbe16f35 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xfc00a464 write_cache_pages +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc084296 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0xfc3043ec genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xfc30c036 rtas +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node +EXPORT_SYMBOL vmlinux 0xfc4c9ef0 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xfc4f7b0f __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xfc64b277 default_llseek +EXPORT_SYMBOL vmlinux 0xfca56da1 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xfcaa0443 register_cdrom +EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xfcbb18d2 fscrypt_decrypt_bio_pages +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcc6b176 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xfcd01c21 giveup_fpu +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf6f959 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd02fd0b __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xfd1c3aea kernel_bind +EXPORT_SYMBOL vmlinux 0xfd20059f con_is_bound +EXPORT_SYMBOL vmlinux 0xfd42fefa __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xfd4babc6 km_policy_notify +EXPORT_SYMBOL vmlinux 0xfd576539 module_layout +EXPORT_SYMBOL vmlinux 0xfd58cd00 d_obtain_root +EXPORT_SYMBOL vmlinux 0xfd5b6549 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xfd6d1536 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xfd92e628 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xfd950f47 compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfdafa559 __skb_checksum +EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdbefaf1 gen_pool_create +EXPORT_SYMBOL vmlinux 0xfdc10e35 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xfdda2998 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp +EXPORT_SYMBOL vmlinux 0xfded7712 have_submounts +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfdfcdd5f __csum_partial +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe0561a7 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xfe1989fa inet6_ioctl +EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids +EXPORT_SYMBOL vmlinux 0xfe2fab4a rfkill_alloc +EXPORT_SYMBOL vmlinux 0xfe31bd0f bioset_create +EXPORT_SYMBOL vmlinux 0xfe4663b3 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xfe4cb4b5 _lv1_storage_write +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe74c7ba param_ops_ushort +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe80cae1 uuid_be_to_bin +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe9869cb ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0xfe9a5d9b iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xfe9e9ddf inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xfec08da0 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xfed221d9 pasemi_dma_alloc_ring +EXPORT_SYMBOL vmlinux 0xfed59ff9 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee93394 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfeff1ea7 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xff00214b input_inject_event +EXPORT_SYMBOL vmlinux 0xff1765c7 rtas_call +EXPORT_SYMBOL vmlinux 0xff1c152a dcb_getapp +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff2c5d0e netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xff36c48f __scsi_add_device +EXPORT_SYMBOL vmlinux 0xff554054 posix_lock_file +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff8804f9 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff983f25 vga_get +EXPORT_SYMBOL vmlinux 0xff98c16e soft_cursor +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffd7833d mdiobus_free +EXPORT_SYMBOL vmlinux 0xffe690fd udp_table +EXPORT_SYMBOL vmlinux 0xffee2020 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xfffed1a0 serio_unregister_child_port +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x02420497 kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0407a3d4 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x049f08f2 kvmppc_st +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x06712a1a mark_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x07473c1a kvmppc_h_put_tce_indirect +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x09774af7 kvmppc_load_last_inst +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0c8f86f5 kvmppc_handle_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0cf979b3 kvmppc_xics_rm_complete +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0d17cb82 gfn_to_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0ed830c4 kvm_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x11d6e92b kvm_read_guest_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x12084dd9 kvmppc_ld +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1a980a35 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1cacd831 kvmppc_core_pending_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x21e7af0f kvmppc_rtas_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x276531d0 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x280f59bb gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2b662af0 kvmppc_core_queue_program +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2f931892 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3207a313 kvmppc_h_logical_ci_store +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3ea265db kvmppc_core_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4bec95f8 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x54c8d486 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x57f470fd kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x590f5840 kvm_put_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5927f277 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5acc58ac kvmppc_xics_set_mapped +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5be51fb4 kvmppc_hv_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5c54d3fb kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5d259d0e kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5f307a3d kvmppc_sanity_check +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x64238b9d kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x65a4eaa9 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x663da0c5 kvmppc_xics_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x666a0200 gfn_to_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x67ae87ca kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6a6d4d00 __tracepoint_kvm_ppc_instr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6c8b91a3 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6ee40e27 kvmppc_xics_clr_mapped +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x72c20542 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x760055b8 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x76ee0f12 kvmppc_h_put_tce +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x77445161 vcpu_put +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7947af63 kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7952fa9e kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8859014f kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x89b040b2 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x89fc0996 kvmppc_book3s_queue_irqprio +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x928084ba gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x94458f0b kvmppc_pr_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9550f73b kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x96c62bdd kvm_get_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x97071845 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x97aebdb6 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9879bf34 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9be61063 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9caedecc kvm_unmap_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9cd9df41 kvmppc_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa0273732 kvmppc_core_queue_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa3efa4c8 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa64462d8 kvmppc_h_stuff_tce +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xab59d373 kvmppc_free_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xac1769cc vcpu_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xad039bae kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xae4b40a0 gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xafe21c23 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb68827fc kvm_get_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbca61415 kvmppc_kvm_pv +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbcf1ed4a kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbfb58c89 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc45e2b07 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc50ea52f kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc70e4b59 kvmppc_claim_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcc44961f kvmppc_alloc_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd0c6d0ee kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd2f8625c kvmppc_set_msr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd81e543a kvm_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd857bfe5 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xde937256 kvmppc_gpa_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdf36189d kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe0993de1 kvmppc_unfixup_split_real +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe21901fb kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe57ac264 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xeb47464c kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xebceab9a kvmppc_emulate_mmio +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xed2f8669 kvmppc_h_logical_ci_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xedf64bf2 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf01c09d8 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf05c1ba2 kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf27530ed gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf44a8a17 kvm_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf478b138 kvmppc_core_dequeue_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf4da3546 kvmppc_init_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf6f7e3c7 kvmppc_handle_store +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf992c421 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm-pr 0x111db771 kvmppc_emulate_instruction +EXPORT_SYMBOL_GPL arch/powerpc/platforms/cell/spufs/spufs 0x55636536 spu_restore +EXPORT_SYMBOL_GPL arch/powerpc/platforms/cell/spufs/spufs 0x5c7b9ce6 spu_save +EXPORT_SYMBOL_GPL arch/powerpc/platforms/cell/spufs/spufs 0xec3083fb spufs_context_fops +EXPORT_SYMBOL_GPL crypto/af_alg 0x0482816d af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x168e7298 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x4d4110aa af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x98bffb6e af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xb9a569a4 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xd0d19beb af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xdd331066 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xe21f11a0 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xf14a63fe af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0xf75f8046 af_alg_complete +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xb874bf34 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x5016afcc async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xa421014e async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x15df1cee async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x2746eef5 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x19b005b9 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x53ca772b async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x6441c8f7 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xa53d1b53 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x139e0d0a async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xe5e33ce8 async_xor +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x8d0dc6b4 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x28324c6f cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x19cc861e cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 +EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x6558af05 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x7301f4ea crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/cryptd 0x11cd79be cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x1b03e0c2 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x30642648 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x513035d8 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x5fefed3f cryptd_ablkcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x94d3afc8 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xa27a99ff cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xaa1c200b cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xaca5d7e9 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xb2b06e71 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xcf57f272 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xe2ca9dfa cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xf2b25b30 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey +EXPORT_SYMBOL_GPL crypto/dh_generic 0x9edeb49b crypto_dh_decode_key +EXPORT_SYMBOL_GPL crypto/dh_generic 0xa9c31fb3 crypto_dh_key_len +EXPORT_SYMBOL_GPL crypto/dh_generic 0xb25efd9f crypto_dh_encode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x597307c5 crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/lrw 0x18b23e30 lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x6c59196e mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0xa0b908bc mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0xb2315733 mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xeb83bf41 mcryptd_ahash_desc +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x0b4dfd0a crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5c23dff7 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x7a316727 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x8ecafed7 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x6b0b3166 serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/twofish_common 0x590945fc twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x00bc460f ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0e85a256 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x104d7fa0 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3122ceae ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x45aac479 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4b610da1 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x66f62d06 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6b3d724d ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8941bfa3 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ad023ad ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8f0e3cfd ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x955392c9 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x990052d7 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa4ff4901 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb49f8225 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb7116fdd ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb80762b7 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc466b479 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc9732abd ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdabd0d65 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe17c7187 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xeab0f702 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfa54d97b ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0317f5ae ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x209689b1 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x274824e5 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x27a05098 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5215c668 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5644fb89 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5bde4513 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7011119f ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x81b477aa ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x86c174b8 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc3c96d47 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd704ff23 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xeb85bf76 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x1bf638e5 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xad195a0b sis_info133_for_sata +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-spmi 0x0b0c5cf7 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x18dda3b4 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x3173cbe8 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8c14def0 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x05cace7c bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x091d4385 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0ea43f22 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1b1225bd bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x207c63da bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x23e4a94c bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x32aa8840 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x375cf24d bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4d92d2fd bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5a384248 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x650730d7 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x664f4020 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x790d0c9b bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8b12be38 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaae67864 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb922128e bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbec52d8a bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc4458c59 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc7dce505 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd732d44e bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe139ec23 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe3bf7c11 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe9fb870c bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf6fb0a9a bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x01c75d34 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2e3180f9 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2e95eb04 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x78db7dfe btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9aadfd57 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd21efd68 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x11026b00 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1baab62e btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1ffab27f btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2102dd14 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x47537dca btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x485581f8 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5c328d6c btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5d2f241c btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x61fb2d16 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa368cf5d btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa7b3d050 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb495b55c btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd56ba05f btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf67a6dab btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x630a5529 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x694c32c6 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x77896fa5 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7e5bcb09 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9d3c60fb btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9e2281da btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc1c693d3 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc7ba1131 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc8c935e9 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xcf75adb8 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf1819e09 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x6ee5fc92 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x8a5f8258 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x2ff95bec btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x0154b12f h4_recv_buf +EXPORT_SYMBOL_GPL drivers/char/tpm/tpm_tis_core 0x07582d4c tpm_tis_resume +EXPORT_SYMBOL_GPL drivers/char/tpm/tpm_tis_core 0xec3e12d6 tpm_tis_remove +EXPORT_SYMBOL_GPL drivers/char/tpm/tpm_tis_core 0xed6cfa3c tpm_tis_core_init +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x6dafc4ba nx842_crypto_compress +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x8b0bbf90 nx842_crypto_decompress +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0xa603833f nx842_crypto_exit +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0xb1c3bf27 nx842_crypto_init +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1651ac67 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x52612cd8 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x5c3e97ab dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8844f18b dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xecac3faf dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x5b889241 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x5f4df0eb hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x0c0fec80 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x15115db9 vchan_init +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x583c3741 vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x884e505b vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xc5e7c523 vchan_tx_desc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x00c287a4 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0a8a531f edac_stop_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1897f638 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2e982185 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3c50fecf edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x427a3ff1 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x42f3754c edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x45b74529 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4f36c6ce edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5eb7bb8f edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7577826a edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8d5bf41a edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x90eea1e1 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x91cc6625 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa023b986 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa0e0c793 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa3695636 edac_queue_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa92325ff edac_mod_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xabb07f7f edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb4888aa2 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb716f5fe edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbd14935a edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xec336832 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf65457e0 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf8490851 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfd30cbe1 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0d7b83c9 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1dafd9d9 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x46de0b2f fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x74128441 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xced83f74 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe087b661 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x1eccf239 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x03a56d18 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x50e18bdb __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x024a5dab drm_gem_cma_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0d43ce17 drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x15b19f06 drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x200c4f32 drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x42ec5b1d drm_gem_cma_prime_vunmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x45e3a0c6 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x49892fa8 drm_gem_cma_prime_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5fa87fd5 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6a8146a6 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6de60615 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x75f73a51 drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7c128fb1 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x86733754 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x97d71217 drm_gem_cma_prime_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa4cf22b9 drm_gem_cma_prime_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa8efcb90 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbad7b3ee drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd1096e98 drm_gem_cma_describe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd7755ba9 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf1353c2f of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1148b623 drm_fbdev_cma_fini +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3a605441 drm_fbdev_cma_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3e29793a drm_fb_cma_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8cf8bbcc drm_fb_cma_debugfs_show +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb2c912af drm_fbdev_cma_hotplug_event +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc73ccd85 drm_fb_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcbbf335f drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcc337fd5 drm_fbdev_cma_restore_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf606d3f6 drm_fbdev_cma_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x53d76565 ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x7fafa223 ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xc23895fa ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +EXPORT_SYMBOL_GPL drivers/hid/hid 0x014f5b1f __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x04d25e8f hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05334357 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0bab95ab hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x21d10b41 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x25e985d8 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2dde7fe8 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3707e5e8 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3a1ea2bd hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3c0db74c hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x409776a7 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4301d4b7 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4720da4e hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4f2b3d2b hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5a409dec hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5fc5b0bc hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x77fb7347 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8f245d18 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9160a340 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9ba2e22e hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9cb49ea4 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9e00f1f9 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa1422d77 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa43855d1 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaa9ed0c1 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xad97c6c0 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaffb6bb4 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaffc1bd8 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcb1d2b2c hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcc484cc1 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdaef6c89 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe522d4c1 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xef14feb9 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf21ee523 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf52c6428 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfecd7286 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x75453929 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x04ea0880 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0eea5af2 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x228eed84 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2bb5e576 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3f874954 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x95a81c4c roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x32787591 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x3b6e2919 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x43f150d4 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x496e58b2 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4dc9bcf5 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x551fb87b sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6e2802b1 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7d4878a5 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc9e9dda1 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xb69c71f7 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0cde48ab hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2580b109 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x404c7262 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x439b58f2 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x48bc7898 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x566fd6ad hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5b306c07 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x70da4a8c hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x764b53b5 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x808c26fc hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9012a868 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x90b77c3e hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9d5497cc hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa5e407a1 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb52afc2a hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb667e11f hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc9a43847 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xed18ad96 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x0b813eb4 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x2b08d4ba adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x85b0c88a adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0023da8c pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x04ef5166 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x258c3104 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2c50c007 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x37ab6b4e pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5bc6ad0c pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9771e51d pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc0b5d859 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xdc144c17 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe663f7d9 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe7ebc278 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xeb9dc406 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf74e5496 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xfb616f16 pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xfc876cc4 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x39284bde intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xafbb6aac intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xbb7d6a84 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc3924b5f intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc81e269b intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xde6dac66 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf4067cb3 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2d80da44 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x495989fb stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb94f828b stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xcc709702 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xedf6f610 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x40256a3d i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x9b097fdd i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xb2b4effb i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xebfc45a3 i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xf25c5da7 i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x180a6676 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xc8ac95fb i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xd759547a i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xea0dc72a i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x11ab334e i2c_setup_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xa43b73f5 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xc15294bc i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xc6f8a8a9 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x26b718cf bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x70d79888 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xa999c709 bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xb4dd9ffe bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x04f13ad3 mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x62d2b826 mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x96ff0ecc mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2083b1a9 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2cd02009 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4b30fafe ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6d5e29d1 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x78109476 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7cf1b4a5 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xbe158590 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xce2b9978 ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd186aeda ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion +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 0x47bee546 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x5c85731e 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/dac/ad5592r-base 0x4e011acb ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xdccbb2a1 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x762d7656 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x84083149 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xcb2ccd20 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2507b5d9 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x48d19f21 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6af25521 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8b5b7520 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x95510069 adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa038c8cd adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa3a7b3ea adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa624c7a4 adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb80c65dd adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd29466f1 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe06880c3 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf9809286 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x02da14a8 bmi160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x306569eb bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x090309a2 inv_mpu_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xa3a4d0d1 inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xa61f1095 inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xbaa5695d inv_mpu6050_set_power_itg +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0194ea9d devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x09def383 devm_iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0a316938 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0b0a10c2 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0ec98f6f devm_iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1a9509e2 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1b7ab2ec iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x405456c0 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x45399e8f iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x47685426 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x538e64af iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6421be9b iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6ee7dce3 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x701dc5ec iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x79680185 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7c3d0b54 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x88067aff iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8e2467a1 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x900d02e2 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x927232e4 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaf3a4848 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb3ec0250 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb9f77ac6 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbde60515 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbe072f71 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbf3e126c iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc0083306 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc9462229 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcb1c154c devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xce44965d iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe02b604f iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe6d1e8c6 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xee4ec79d iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf1f3a7aa devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf271ec76 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf321f8cf iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf3dcadea iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfae5c521 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0xa5f21979 mpl115_probe +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/sw/rxe/rdma_rxe 0x12ce833e rxe_dev_put +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x3abf9da4 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xfb1f42b2 matrix_keypad_parse_of_params +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x501b6881 adxl34x_probe +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 0x06031d73 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0e3c1ee5 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x13302e5e rmi_get_register_desc_item +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3bff692e rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3ea976c8 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5c550dfa rmi_register_desc_calc_size +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6a57431d rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7059825a rmi_register_desc_calc_reg_offset +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7f0dd626 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xae678d11 rmi_read_register_desc +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb5c7065d rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc2261831 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc2eebbff rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc9055e00 rmi_read_pdt_entry +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xcb6c9547 rmi_2d_sensor_set_input_params +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xcb738ce2 rmi_process_interrupt_requests +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xcbba0079 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf6c8bce2 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf82147e0 rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x57ed20ab cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xbdf4762f cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xd4b39ec7 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xe907153f cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xfaf36428 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x606ea018 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x8e3ffe1e cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x053767d6 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x267beec6 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xc0a47e89 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xcfe7ef7f tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x08dfc340 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x19505049 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2fbe9064 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2fd8f1af wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3266ecf5 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4f4fbc63 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x68aab54e wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xaa1ef992 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xaf1aaeb2 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xba3b1558 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc67184d4 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfeccec6b wm9713_codec +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x090566e7 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4528d3e0 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4a66a393 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x721180e4 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa12dcc6b ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa8eefa30 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc466f332 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xdc18e5b3 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe531f331 ipack_put_device +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x024c6574 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x108d632c gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x205e94a1 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2b79e22d gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2bddb039 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3c241c77 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x48b61f3a gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x49b2ea19 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7e489cce gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8e1e36c0 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa35d0082 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xbae36222 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xcc7d1847 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd6df9058 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xdbe0bc8f gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe3f11d1a gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe581452c gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x04c3fedd led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x57242994 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa19207fc led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb4465137 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd97f1e25 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe69e171c led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x47195588 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x807c558b lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8d567ab6 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9ef0dd95 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa895e6ca lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xab2af14f lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc237af21 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd81146d5 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xec1c8a02 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf0dfac1f lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xfb03f994 lp55xx_deinit_device +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 0x1e680971 wf_register_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x3d29b57e wf_put_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x4eb50678 wf_unregister_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x509bb2b9 wf_put_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x710ebbfa wf_get_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xb09150f9 wf_get_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xb3d9ed76 wf_register_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xf546b177 wf_unregister_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_pid 0x9808f147 wf_pid_run +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_pid 0xb8ed5b2c wf_cpu_pid_init +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_pid 0xcd9a18ef wf_pid_init +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_pid 0xceda69f1 wf_cpu_pid_run +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_smu_sat 0xe05851d5 smu_sat_get_sdb_partition +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x07efd9ee mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0d45be96 mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x1191b7da mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x279a6b84 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x31eca4d1 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x3ef56d49 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x6fcc5960 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa0f0aaac mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc76385c7 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd3eff891 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd62e9aca mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd8d4fc09 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xdabc19ff mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe1407fa8 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x07b0caf6 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1bcb69cf __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x290dee5b __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x29bfa0b4 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2e9a0300 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x350f0b52 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3eabc650 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x40978466 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4797ee5e __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4c5dce08 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51c85a21 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5930cf1d __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cb40ec5 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6d024748 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6f4bb251 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7a8a162a __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7c234702 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x898239dd __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x940edb75 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x94287194 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9dcb7c83 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9fb22838 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa4f27010 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7c2e5d1 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbb4a3f4a __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd4abe767 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9dc9cfa __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda147480 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe16ef8f4 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe43c667b __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf16c2227 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x10f67619 dm_cell_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 0x5a3ab615 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x71437d44 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x74d2c322 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x856033c8 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8eb695bf dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xac16bf64 dm_cell_error +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 0xd137d610 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xea748ee2 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 0x4785b6f6 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +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 0x9310ba06 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa448e19f dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +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-cache 0x00951d87 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x2bdbe8a1 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x65bce033 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x6d45babe dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7b8c3335 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9ecec63e dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xea69b350 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x92f15a71 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xb2632683 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 0x1e78f71b dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x21a633ab dm_rh_mark_nosync +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 0x4430764e dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4df80f26 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x66595899 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 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state +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 0xda9b6160 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xe5d7d571 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key +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 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x17c36f29 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +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 0x32b5f546 dm_array_empty +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 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42dbdfc3 dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49b35849 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x55b4bd4d dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk +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 0x69b21bd3 dm_block_manager_create +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 0x7657e859 dm_bitset_clear_bit +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 0x827a42f4 dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify +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 0x966a8838 dm_btree_lookup +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 0x9f624559 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xafeda29f dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd29923fb dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf375d009 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf5455120 dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0x00096a0f cec_set_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0x4961a844 cec_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0xbff6533d cec_phys_addr_validate +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0xd2f2eac1 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x108f8022 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x27409a7d saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2b9482e3 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3e378d48 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6ce1e5b9 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6f05bbf4 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa40f65db saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xab46fd9d saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf5013ffe saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf845723c saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x17338db5 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x44fec40f saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x4779915f saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x514c4032 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x788b3823 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8c3dff1f saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8d30f1b1 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x010ab67f sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x01ad8451 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0dbd29e3 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x157531bf smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3ee63cd7 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 0x5935925e smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6dabf2a2 smscore_putbuffer +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 0x83a35bce sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8a478c1a smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8cf13501 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xadd608cf sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc3c5121c smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd2e12b86 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd63baca6 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdba42d93 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe22fbc50 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xea81041f smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x0756995d tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x0b63430e tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x1c236f52 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x395504e9 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4cf9e178 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x5c15f12d tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6da054cc tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7527c0ad tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x89685ab4 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x8deb2d91 tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x9e9e5267 tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xbbf641fb tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe01d21d2 tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf26d0c08 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x3ecd00e3 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x7b5b8f9f cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xa5f9303a tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x010b3e62 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x0d295d6e media_entity_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/media 0x1077b93b __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x17d08570 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/media 0x1bfb399d media_device_init +EXPORT_SYMBOL_GPL drivers/media/media 0x1f2ecb3b media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/media 0x22c03104 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x3045c618 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x3276d6a1 __media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x342578d1 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/media 0x34cef0f1 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/media 0x37241214 media_device_get_devres +EXPORT_SYMBOL_GPL drivers/media/media 0x3caf5a76 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x46a4b8e4 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x46ace4de media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/media 0x49ac5f82 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0x4fa9f153 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x62b1b9e9 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/media 0x73eba002 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0x76b57fb3 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/media 0x7a47a532 media_entity_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x7b61636a media_device_find_devres +EXPORT_SYMBOL_GPL drivers/media/media 0x7e23ef40 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x870729c4 media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x99c194cd media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x9b98f894 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/media 0xa198cb47 media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0xa7cb6537 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/media 0xafc06c7f media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0xb0d9ba4e media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0xb90f37cf media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0xbe2e8f57 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/media 0xbeaae624 __media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0xc2f15948 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xc962b32e __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/media 0xd5264a1c __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0xdc581289 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/media 0xe020f483 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xf794f883 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xdaf121ae cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x004d94d3 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x04c4ed93 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x08374476 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x166aa5a3 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1ca318e7 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2376918a mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3163288d mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5ac0c87f mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6f0f8c65 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x76c3c107 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x78f8a06b mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x81a0b5fa mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x94e6e0fe mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xba35a2e3 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc07eef57 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc46cf772 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd6c2bf42 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xda3116a7 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe99fc5eb mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x00404d45 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x12af5483 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x26b42227 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x27aac54f saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x31de92ea saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x418a6fe9 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x48bb12aa saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4a0da6d5 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5a17f693 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5d69c10d saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x62e157d6 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6bb627db saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6c266e37 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x72b955f9 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x775d35ae saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd4247fee saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd7ac34d4 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf3bf220c saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf8cb624a saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5d69774a ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x61a034be ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x841aa5fd ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb435897e ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xde6466f9 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe27ed4de ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe29199ec ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0d8db21a xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x102553dc xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x34407dd1 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x925fcaab xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xc4602eab xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xf326a2bd xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xfe87e96b xvip_init_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 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xdd184f82 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xb0316688 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xefc58532 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1bc1b38f ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x27b8e141 rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ee9db0a rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x408b8816 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4ec98d33 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x625b7699 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7b8a1230 rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8083b0e1 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8802136d ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8dbcd8ca rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x956023bf rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x95718502 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xabbe3194 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xad088edb ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbefacaa6 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcc6bb567 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd448f56f rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe0d03ed6 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xea10a432 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x06a00a08 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x32ec204c microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x91f706aa mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xc3bd5ef5 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x43e57e0d tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x7a4c0161 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x069404d4 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xa286eed2 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x70b02a7b tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xd5d4391b tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xff300adb tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x1f31e7b9 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x3c941515 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x38dc2a4b simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1065c21e cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x12d2c6ef cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x293f6abc cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x34896738 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x377ee7fc cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x429fb3ca cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x46cbd8a5 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4bc0193a cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4e659d10 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x58a34f1d cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5bd6ac68 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5fe836f8 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x78735a31 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7ed3b48a cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x843a98cf cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc0b6a143 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xce5496d4 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd71394ca cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xde4d7569 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfe850e09 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xbed167d7 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x572f3713 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x170b0a8e em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2d1d6209 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2eed836a em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2fb223f7 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x35d9ba43 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3c0ca286 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x48b9795b em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5443572c em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5a1ee834 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6b0311b2 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x83c66254 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9c527ce4 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xaf67c73b em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb5d10d7b em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb7c40bca em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbf8619e9 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc0258f75 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdff44837 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfb040918 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x14dbfc81 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x6f3486e1 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x96ff7ada tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xef1a06b1 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x330aa393 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x65d2bc4d v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x7ce3c7fd v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xdabd6fe0 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf6938885 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xfacb349e v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x363ad524 v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x97a73847 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xa85ed684 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0c8f086c v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1dd9e030 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1e8912c3 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1fb707d2 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x205c33f8 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2e243255 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2ed415c8 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3ba5df0e v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x46fad1dc v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4ccabbef v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x505f43aa v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x606c4bd7 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6eb76900 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x76bb64ea v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x775dc5d6 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x799696ff v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa388ef18 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb0f74bc4 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xba24a3b9 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbcce0742 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbe3fe652 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcbf345c2 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd98b7f40 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd99778c8 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf229f6aa v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf7074e04 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf7cef211 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x11a4cdae videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x163c5d13 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1cc3ff00 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2b8e1c99 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x32fbdbcd videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x36f83881 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3823b38c videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4fdc2c62 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6f543ad7 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x768bee23 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fe58f25 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x93c4d8db videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x96ec784e videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9bb8787a videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb2d1e42a videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd0ef3c36 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd18a3fc9 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xda5b89c0 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdba6c3f5 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xeeb23daf videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf73af5fb videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf8ee7606 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf9a68192 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfe4eb929 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x0e48ce62 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x47ebd2c6 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 0x66fa47c1 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x77b0af4e videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x31a99c99 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x4567e13d videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x61399bf9 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0541dafb vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x18feac16 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1c979d94 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1f89b2b3 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x51ee040e vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x51f6d754 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x61176406 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x890d0d1f vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x96ca4e4c vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x9c156d76 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xaeb0a7e0 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xbaf912fd vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xbcfb313d vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xcd9f95f2 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd01b6833 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xdd177f1d vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xdecfd55c vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xdfd23293 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe95778e4 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf3908618 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf8823f47 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xfc8d8aa1 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xffd55452 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x41c8c750 vb2_dma_contig_clear_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xb33afd87 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xc385fceb vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xe5606434 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x63aac05f vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x079cba9b vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0f2d2c5f vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x11f2446a vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x16b38095 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x329650aa vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3675c4e1 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4088f8d3 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x413d5d44 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x43355532 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x43d7a2a7 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4405dbfc vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4c577b87 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x575db833 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5f39aeff vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6404ca55 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x65f16307 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6b4111a1 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x79c0fe0b vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7b386dda vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x806fd4ce vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa17b9ebc vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa6bebf2f vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdf515f1c vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe6f437d8 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xec9f6c10 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf26b7e7b vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfd50b10d vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfdbd4e7d vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x588ceeec vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x034ff28c v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x16acf9c6 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x29ded27f __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2d4d7945 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2dcb1f71 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f3fbaf2 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2fb7c527 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x344f8469 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x42e18740 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x49893688 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4ab9d2c3 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4ec681b3 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50d65b11 v4l2_subdev_free_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x583cb5b7 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6772a8e1 v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x69ff1557 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x85bc9f57 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x87d9bda6 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x99b2a934 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9b30baa3 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9c9f4476 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa092d488 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa3c6da72 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa41f8703 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa75dcb21 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa9ae18b7 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad1e8b91 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad4ffbcb __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb2f5881a v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb74f6c9e v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbb23c492 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbf3d94a5 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc8b75fe2 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcb0f7cb8 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcecc9518 v4l2_pipeline_pm_use +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd3fa9b61 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd9e583a7 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdc15155b v4l2_subdev_alloc_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdff470d9 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe139d67c v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4a17f70 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe78157f9 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2c24855 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5674496 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xff605ace v4l2_device_register +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x9308e270 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xe5635486 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xf57a63d8 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1b027f1c da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x232e5bb8 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3993b6ac da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3a168931 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x47332263 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4968b03c da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb0e8d7ed da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x00139c34 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0512df04 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x16990438 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2db2672e kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x47c76d0e kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4b8d26fb kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9d99d433 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf5ae464d kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x29ce24e8 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x4d585e12 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xa47ecae8 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2a459c0a lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x35c7aaad lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7cbb30e8 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa48b4e8f lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc9d30646 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xcdff4305 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xd22564b2 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x4ead8f49 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x8c4a8eef lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xc09b0566 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x3d40f5f2 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb32e0292 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe19bbcda mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe8e60172 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf39449b2 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf94c1b85 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0917df39 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x093461a5 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0a2034b2 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0b786690 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1a1ad017 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6e3fc824 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7e8edf95 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc58214db pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xcae1ba4a pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xcda37cff pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xff68eda1 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x0455844c pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x8e573034 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x005f3ed3 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x3a034305 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x67fb638a pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6e36c869 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe5b1370b pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x007b3b3c rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0e456e4e rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x232ef350 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2632e3f8 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3145fed7 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3e9a6634 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5793d126 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5fc35e90 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x617ff8fc rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6d64f52f rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x71d7764d rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7c97953d rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7eda24df rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x97d85166 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9d02d1ce rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9f0238e1 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xaebd9208 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd1c4a569 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xdf53e869 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe2e65174 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xead303b6 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf1574431 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf273e035 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xfc21f6da rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x02bf8fd1 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2a543448 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x6f8be70c rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7d86d00c rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7ee544bc rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x955f108e rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa5408ded rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb72ca30b rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc9658984 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe07f5c50 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf42d3b3c rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf45f3d01 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xff821f5f rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x02281450 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x023f91ef si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x079a762a si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1404cb89 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2664ad3b si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x282e3ba6 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x29c28ee3 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2e18ddd3 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x36382907 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3cde668e si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x45104def si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4604293c si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4f6d3ea6 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x537b6197 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x53ef488c si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x62405b94 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x694e9a9d si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6957e492 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x71000e30 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x847c36b9 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x85d93d17 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x865292b0 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9089745e si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x938ab5d7 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x98712eef si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa1be3e50 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa8316f8e devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb599528c si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbd883407 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc4988015 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xccedec32 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xced070ba si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd2cfc746 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe06f7fc5 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x0e5c963f sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x1af6cf7b sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x7134e665 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x728e3533 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd0117712 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x00d65205 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x088514f4 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x110d22e0 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xab977d33 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x2d265536 tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x41ddfe4a tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x902267ec tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xfd740f29 tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x3e1903ed tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x47bd5ed9 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xf5568816 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xfa5b556f tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x363f04c3 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x0f2cee6a bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x3fb4894e bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xde07e0f7 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xe8fdd52e bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x0ec26914 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x5dff797c cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xb736f229 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc7ef4862 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x119322f7 cxl_set_master +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x1555239d cxl_perst_reloads_same_image +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x217d0e7f cxl_afu_reset +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x25d6e947 cxl_set_max_irqs_per_process +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x2eb263da cxl_read_adapter_vpd +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x2efb6ae3 cxl_set_priv +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x31175b6e cxl_map_afu_irq +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x33584ce3 cxl_get_max_irqs_per_process +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x3a00efd3 cxl_start_work +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x3ebaf1b6 cxl_fd_release +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x52ceb5ed cxl_pci_to_cfg_record +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x5387d9ca cxl_fd_ioctl +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x5c05f04c cxl_free_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x690d0167 cxl_release_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x74f9d516 cxl_fops_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7d5cc4b0 cxl_process_element +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7f7d2cfc cxl_context_events_pending +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7fa0a8c8 cxl_fd_mmap +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x82a8b283 cxl_fd_read +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x82b4b9c7 cxl_check_and_switch_mode +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x82c6b4f3 cxl_fd_poll +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8740bc47 cxl_psa_unmap +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x98070d71 cxl_stop_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x98ee72a9 cxl_get_fd +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x9ec6b76c cxl_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa439139d cxl_psa_map +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xbcebe952 cxl_fd_open +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd46b9789 cxl_get_priv +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd78490bc cxl_set_driver_ops +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd86a204e cxl_unmap_afu_irq +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xdfcd97a8 cxl_start_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe050ba8f cxl_slot_is_supported +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe5c7034a cxl_allocate_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe5eb02d4 cxl_dev_context_init +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xed26102f cxl_pci_to_afu +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xf13a7fab cxl_set_translation_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x16b6afe7 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1ba71600 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x744f1b46 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa1418075 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd7e64e3c enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xeb2479bd enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf0984b76 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfd957145 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x10a72d87 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x470f028e lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x54b0d38b lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5cea2f91 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x86e4d7cc lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb70b9f04 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbe7da1f3 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd100e320 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x31bb761f st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xc80b36cf st_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x02d53485 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0f95e7e2 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x105eeb7e sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x37d71264 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x47b8a022 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4aaf86e0 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5f11abb9 sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5fda2b13 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6173e23f sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x66954603 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x734042e5 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x740dd757 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x84a1d2e0 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8fc4868e sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9b38715d __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcfde6879 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd36050d2 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xde4b117c sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf0e86896 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x528ea09f sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5f3a0182 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8cd5d191 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9db3cb1e sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa12082c2 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xacfcbafb sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe8a7563f sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x3a357b26 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc72b5eb0 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xf8027b58 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x2b4603c2 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xa6ed8794 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xd8bfcc44 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x4978aac3 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x98613ce1 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xc72c0928 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xf621c0c5 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/maps/physmap_of_versatile 0x076c9550 of_flash_probe_versatile +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0cce5f12 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0d362c1c mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x143c984f mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x16400dc2 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x164d0285 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1787fd15 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1a1faf72 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x219b7ce0 mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x236e561f deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x23fc6bc6 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2ae8df75 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2b719864 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x326d2cd9 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3c643a36 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3c6d3ea0 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x435c99df mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x46f9ae2d put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x474f3ce7 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4d29c923 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x51f4d14b mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x54e7f32b mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x583c03c7 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x65309908 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x703b8a9d mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x724a76a3 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x729704d6 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x78016202 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7860b6f4 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7ce839ca mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8059ac2e mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x87f82beb mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x87fc128f mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x899a874a __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8e2e76ee mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9018728f mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9113f8d7 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x968c9315 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x99aa90e3 mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9ada2876 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaa7b508c mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xadc50029 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb4f81f66 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb6f7a0a1 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbfd8bd89 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcb65a823 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd9a1943c mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdf5e155c mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf2a6644b mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf36df92d mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf50699bf mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf74ba306 mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xff38ea2d mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x1b8d3232 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x24ddf699 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x4ad813fd register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd9a1ce36 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xdd858d5f del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x1c58b128 nand_ooblayout_sp_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x4337c83b nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x4e57a01f nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x8dce5d0f nand_ooblayout_lp_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x54a5d6e4 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x93602288 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xe2189c00 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xfcba4031 spi_nor_scan +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 0x47a111bc ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6300218b ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x81ae59de ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa9ccb849 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xaa944bf5 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xada71a58 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb3123614 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb4549db4 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbaba5f07 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbc27ac6f ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc96c4698 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe944f514 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe9e21d08 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf4b1e855 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x1e6b8f9e arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xeda09493 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1eb7adde c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6c042d22 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x77999060 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8002524c free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa84b0546 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xdb33a187 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x062102e9 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x09edae68 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1e6e2038 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x20405a65 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x235342db unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x533ba405 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5dab83f0 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x85cdc45e can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa43865f4 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa71fa8a0 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xaea8fe6f can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbda0f025 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc387a47f safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc70c0fee can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc8f62c35 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xcf8122ca register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd3b6d5dd alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xddd70fcb alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x72da6cfb free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xadab159a register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc5601f6c unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xe94768b8 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x2e9a123a unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x5e7bd457 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x8ca9d5d4 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd99699db free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x9459b05e arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xa83eeafa arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x049693a7 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04b878bb mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05d61f49 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06457aeb mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07343ebd mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08f60bb8 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a422f81 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b52f629 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b6d13f4 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d103d0e mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0dd63611 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ede28fc mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0eeaba49 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ef58601 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f4559b3 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f8d9fb5 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14515139 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18b28e1d mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19565908 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b111ce4 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e86f1b6 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22cb0e24 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23aa007d mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23aacb20 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26fadb3a mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27b725b6 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fcf88bf mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3beed861 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ecfe4a1 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x408846ae mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42624af4 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x437688d7 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x468e4916 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4705d221 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x478a5b27 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b305641 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c2a661b mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c7a6093 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51d16d97 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x556ceeb7 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x558bd501 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57348773 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59b0d950 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59c76b97 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c1558da mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ed37d49 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f5434b6 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60fac106 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x636eb7df mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x667201ce mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66c2b7b5 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67fbf953 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ad635ec mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c0fb6c5 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d49fae7 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6febbb3a mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70a5614e mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73f92e4c mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76ab99cb mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f5dfe47 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ff6a00d mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8120c514 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8316c5cc mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84fdad7b mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86539458 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8790ea5d mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x893c53aa __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b67c3a3 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b77bf3f mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ba74aed mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x905cbf43 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90daa72f mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94a71c0b mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95769f90 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95f4b6d5 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96511c61 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97638375 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9763fd79 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9946564a mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a741918 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9aeee240 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9be5bfe1 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa151d492 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa155ff3c mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2261a2e mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa37bee2e mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9024134 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab70eeea mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabfef985 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1a61384 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3541e4d mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb69ef096 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8fd4847 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb94d628c mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb539b7a mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2ae0820 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc366c712 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8e4465f mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcaed1d82 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce1352e1 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcec352a3 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf4e3d74 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf530304 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf97a325 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1957e0a mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1d8deec mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2e98ea9 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb1a35c9 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc1dd6a4 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcfd38a2 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf7a9517 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf852e3d mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe06c030e mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0eaaf46 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2f1f397 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7c7faae mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe85829fc mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe965fbf0 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9737989 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec7aa44b mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef1b4ba4 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf16c9aa1 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4149b2b mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7e5c577 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbc2aac3 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff4b0f0e mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x017d56f4 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05aa3156 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0adfdd97 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c6ce8d2 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e0924fb mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15aec8bf mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a239d6f mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f05a476 mlx5_set_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20147148 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22eaf218 mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23463140 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c05dab6 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32d44486 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33c484ba mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x353bfd91 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37ad4eb6 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b717e17 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b86bd07 mlx5_core_alloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b9f0986 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3da32eab mlx5_query_port_autoneg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3df2187d mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3eaeeeb5 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x422854ac mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42e04c8d mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48452720 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48e01844 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bfb332a mlx5_core_dealloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cee8599 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55b8e874 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a177247 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ee83a23 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f626dcb mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x610affb1 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61889731 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6730ba59 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67f60e70 mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6984160c mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c1e044b mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e6dd7cb mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fec869b mlx5_query_vport_admin_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x707a46b6 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ea6f714 mlx5_modify_vport_admin_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f5ceec9 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fe1dd98 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8660b304 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87ef03d3 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8cc555ca mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9537e2c3 mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x983d027d mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99125a12 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a1bd10c mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ed4f2de mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa160b89c mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa84eb5ed mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaab9e2e3 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafd1f1cc mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6aec44c mlx5_core_query_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc20ded5a mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc366cb7b mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc71b74ba mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc99efbc6 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1ec9cac mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3b1e308 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfb4b0d3 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe172a7d7 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe27e3809 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3f75ddd mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe469a9b0 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe825b930 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8738cd9 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9ad694e mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf13940f1 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf916a061 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9fcb9eb mlx5_nic_vport_disable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x5e28947e regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x97925cfa devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xac144314 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x3982cfb7 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x8834a256 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa49e66c8 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe3259805 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x013e94eb stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x1a59c93d stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x38817354 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x3b24db2c stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x00d47f65 cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x14f1209e cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x1747360b cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x19370f32 cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5e9d2829 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x639e80be cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x71cfae45 cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x8efa22c2 cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xae2a3578 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb5d3f248 cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xbbfdaaad cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xcb02fb36 cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xdaa5f8f1 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xe9f3a8df cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf0d3dc36 cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x177c650a w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x75e23ef2 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xc0b5bd05 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xfffbfccd w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/geneve 0x8720651b geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x4d44eb5b macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x6f319b1f macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xaeeea8c4 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xcf3c16d0 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x858506ce macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0aec9a5c bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1585a69c bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1c5fa66c bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x38f09de9 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4dff1e74 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x51a5ae6b bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x657a2323 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa528ec3a bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xafc37392 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdd3cb81b bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0xc2158dbf mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x0d8c94b4 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x560983b5 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc3b8446a usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd7e7cc28 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2bf7aa61 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2d62c86c cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x827bb8a3 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x98a424ff cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc191e3e2 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc38e3d48 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd63efdb9 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe4b7146b cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf75edd9a cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x21c7f259 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x3ce7e4b1 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x66a2d355 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8146c431 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb83afc2d rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe8d5f902 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0b49d7c6 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x23d74658 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2d629921 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x38f97633 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3f42c631 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x421f2974 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x46ff8e5f usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x521ca7a6 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5f8335bd usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x602d9448 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x639e395d usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x65b31943 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6a9eb6c3 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6ddd416e usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6e7c6a60 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6f8777fd usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7f930006 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fe747d6 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x80ec2179 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8b729299 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x97437ffc usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x989febb3 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa5f1aa41 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc1a9967d usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc66891a1 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc95e3ae1 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xce98b88e usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd3f992fa usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdb30af11 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfa7ef885 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfd8f3b4e usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfe405c2f usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xad0a1b7b vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x12a86435 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1e71322d i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2890a266 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x390c81a8 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3e38cb1f i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3e62a5e9 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x56bb876e i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5e62cf2f i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7cfb7d39 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x803cb125 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x959357d6 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x99590da1 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa381464e i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xda2635ad i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xdd18888e i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe9e853f9 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x09e1ccfb libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x215e6323 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x46683e7e il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf11a3e3 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf162480 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeb4c55e8 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x002b2e74 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x06a6ce75 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x071fa8a5 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0d556623 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0f48dcb7 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1dd62c08 iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x272d6413 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2a9aad50 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x37109639 iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3b06a7a7 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x48c61b54 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4ad97862 iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x583460be iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5a6d3a1e iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6aebb4d4 iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6b6b2112 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 0x8ab14d93 iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8c9fb5e2 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8d8a5547 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9482b071 iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x95965ded iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa756e096 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaa6db5a3 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xab3d43e7 iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xafbfdd1b iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb5d9c299 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb744236c __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbfe9bb5d iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc67c31ed iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc8142213 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc98a4b69 iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcde55908 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd3e247bb iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdd18fca0 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0d3442b iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe2ceabc3 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe435a009 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xedac2e8f iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xef9e3eaf __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf5aea4a7 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf60e4970 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0113bcc6 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x1efd4eac p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x4a1f09c1 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x50b350e2 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7188678d p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7e9c40da p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd3815b18 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xedf2a324 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xef7085f7 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1c56a03c lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1fef2fc0 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x32986df7 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x63a9872a lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x64fbfb7a lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7e2a3277 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8113033b lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x86d81519 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xabe8fc19 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xca5dbb51 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xca5f1b95 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xcb55c42c lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd2380a78 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd4096498 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd9c38aae lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe0606c85 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 0x37f7145f lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x493df96b lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x59e4de90 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x79424443 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x9c146c1c lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa49e0f2c lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xb88691c1 lbtf_bcn_sent +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 0xe55e462a __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1be0b6a6 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2fe4646a mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x37920fd2 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3b25ee2a mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4dfa7f2f mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x56b1985c mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x56f798eb mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5dc68524 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6110968d _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6da179d5 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6dfd790f mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x71aa93ca mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7dd1592d mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xaf7dc2f7 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb2f15778 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd82513ee mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe5283f9a mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf11c07a5 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf1b9c828 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfc1f0666 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x02c282fb rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0c1928e4 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x106711e6 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x19cdf12e rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1a23c126 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1ad5e792 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1ae79176 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1fb3b48f rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x225bb77e rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x22692af4 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x25c45b3d rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2b042977 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2b8c19f2 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2b9674b4 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x314607b7 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x361431d6 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3f58ce81 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x404c07c4 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x434ee0e1 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x44bb08ec rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4de72fc7 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5309975e rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x574bf0f8 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5780e11f rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5fe589ce rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6cf06cda rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x772b402e rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x77f88db8 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7a5ac239 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x84c39cf6 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x89abc7b1 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8f8a1b4b rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa9355eb6 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbbccfe8b rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc3146c39 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc4938e7a rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdd808186 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf5047132 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x05ebb535 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0888a3ef rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0c81bf0a rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x485ee143 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x49a3b28c rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x53b02bef rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5e9cdefb rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x83665172 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x84709430 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8ff4c94e rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa81de39d rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb09bf74f rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xce69b29a rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0248c41d rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x108839e3 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x146410cc rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x17c2b6e2 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x18a2bbe1 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1a6addaf rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1a93a8c6 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x28dbbd51 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2fa07b60 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x34940171 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x36ba94a7 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4f5c62a9 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x58c15194 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x59b36ccf rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x686790fe rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x69efb2e1 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6e34849f rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x718e2a49 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x73ca2fb3 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7ebac27c rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8267fc0f rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x86dbfab5 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x89141d18 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x89a9c5ea rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8a17c556 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8d4fdec1 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x954467b7 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x96242979 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9777c470 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9f1abf1d rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa1909b67 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa1f3f364 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa56ffba8 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb0742041 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbb63b54a rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc9e733db rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd55e94ed rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd60662f8 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdf4e61a4 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe12aef13 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe1901889 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe43b5526 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe7543259 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe843d9e9 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe89f51fb rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf9ec9f6b rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x718e76dd rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x7c70acf5 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xc71fb62c rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xe00977bb rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xed6f0a60 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x1bc2695c rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x1dfd23f8 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x8a09ceae rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xb5554f04 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x05f8e216 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x188b3478 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2448976a rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x25f8d458 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x32cab398 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3778ce23 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4a7aca00 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x620cddf7 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x84094a1e rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa62bcd27 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa8bd43c5 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbe632e2c rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd0b93a2d rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd9f63f1d rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe759d3b5 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf87f1d90 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8b1275d4 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa9b8886a dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd3626de7 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xda1a6baf dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x010bc69a rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0374b2d2 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x062ee735 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1cfff72c rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x27baa9ee rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3464b628 rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x530a8dc3 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5313193b rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5355b469 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6666eb87 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6be1eb6b rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7c4961cc rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9a3e07fd rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xac4a7345 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xac7d898a rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xad849a7b rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xae38d7f0 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb0e9baca rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcb3f2f31 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcd8e1183 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd5bc46dd rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd609ca67 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd742945f rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd86c5b01 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe54ecc27 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xec4a8cad rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf32d23ce rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0356e2d2 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1beecef5 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1e68ca04 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2bca7f3f rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4dbaf152 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4febe225 rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x547d0477 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x558c33f5 rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5a5540a3 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5bc2a5e2 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6744f70e rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b4de810 rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x884dc135 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9987a7bb rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa2750126 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa4d77c97 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa776180e rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb8691da5 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf8de8a0 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc9abf72e rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcd9f70df read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x19af1752 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x2e395ae0 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7e92dc3d rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x952667ca rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x1fb9d014 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x6f85a5a1 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x89776374 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x9c7dcc14 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x2c95f653 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x457a4aa3 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x6efa365e nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x81054949 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x279ceb0f pn533_unregister_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x46f11326 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xbf4a5ebc pn533_register_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0934f4a9 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3dec4fea st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x60623e27 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa7e13529 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xaf8764ce st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc372aefa st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc3fce966 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd0c57e82 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x1ce91e18 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xcfa29ead st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xd58af7eb st95hf_spi_send +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 0x336c59a8 ntb_transport_register_client +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 0x692b41de 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 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/ntb/ntb_transport 0xfc386882 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x00441b18 nvme_requeue_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x12fb3013 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x132bae19 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x136fec24 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x265036f4 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x279fe67b nvme_queue_async_events +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x31acb42f nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x327858b1 nvme_max_retries +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x38e2e3bd nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3bdfd2f2 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x42a3e260 nvme_start_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4409941c nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5c8c34e5 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x61c0737a nvme_init_identify +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6a39ec48 nvme_queue_scan +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6d70d5aa nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x895c90a9 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8ffcd698 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x95eb1c68 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaa8ff0e9 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbd37af6a __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc27020b3 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc9e691a4 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcf360f84 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd0996e0f nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58cf78f nvme_put_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf958ab24 admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x066c4aeb nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x07414380 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x17a04f96 nvmf_get_subsysnqn +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2c1fd5cd nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x70902ca5 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbd2795b7 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbe2af26e nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe43870f2 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe4d7c854 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe64ca76b nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x344df99d nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4efc919b nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5a461bb2 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc43f744e nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf1fec9b2 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xfb33489d nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xfde99598 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x1b6f546f nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x224f51bf nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x5dcd3ca7 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x6152bd0a nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x67dc6bd1 nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x6f4e81fa devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x7a4e1429 of_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x901e9c07 of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe2b39e59 devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/pci/hotplug/pnv-php 0xb605863d pnv_php_find_slot +EXPORT_SYMBOL_GPL drivers/pci/hotplug/pnv-php 0xd9a39a0b pnv_php_set_slot_power_state +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x01cc7086 rpaphp_slot_head +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x098af82b rpaphp_add_slot +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x5d0e3466 rpaphp_get_drc_props +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0xcab4a04d rpaphp_deregister_slot +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0x714373f2 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0xc02e1e07 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0xcc4366f6 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x074e0cbe pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x1a5e9767 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x5406351d pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x09b51f24 reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x3c122286 reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x003998ab ps3_write_ctr +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x0bdf50c4 ps3_disable_pm_interrupts +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x0e622920 ps3_write_pm07_control +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x181e55ab ps3_read_phys_ctr +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x1bcb88c1 ps3_write_pm +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x2abf1471 ps3_get_hw_thread_id +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x2b339635 ps3_disable_pm +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x3c71a6b2 ps3_set_ctr_size +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x4a24996f ps3_lpm_copy_tb_to_user +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x50488f64 ps3_lpm_close +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x58e642c1 ps3_lpm_copy_tb +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x59c54782 ps3_set_bookmark +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x5eca6711 ps3_get_ctr_size +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x60e3f0d7 ps3_read_ctr +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x6702a28c ps3_get_and_clear_pm_interrupts +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x69010c19 ps3_set_signal +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x70177200 ps3_write_phys_ctr +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xa76ee01d ps3_read_pm07_control +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xaa190bc1 ps3_read_pm +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xbb72a01c ps3_enable_pm_interrupts +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xce72c9c0 ps3_lpm_open +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xdddfc980 ps3_set_pm_bookmark +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xfae0ab68 ps3_enable_pm +EXPORT_SYMBOL_GPL drivers/ps3/ps3stor_lib 0x4a8e0198 ps3stor_teardown +EXPORT_SYMBOL_GPL drivers/ps3/ps3stor_lib 0x5091861a ps3stor_send_command +EXPORT_SYMBOL_GPL drivers/ps3/ps3stor_lib 0xb9e6b1f9 ps3stor_read_write_sectors +EXPORT_SYMBOL_GPL drivers/ps3/ps3stor_lib 0xd77dd550 ps3stor_setup +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x1027e5c5 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x40009476 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x43858d70 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb222c3fe mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc573a42d mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x1fd8f291 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x252c72c6 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x72c6109b wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa363d6a3 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xb38873cf wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xff5e809f wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xdbf0d886 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0392fd1c cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x04f3e57b cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x07ce8a11 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0c01fb30 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0c8b8ffe cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0d9b1209 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x150be6ec cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1a155ca1 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1a333014 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1c3c354c cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x21486afe cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2310662c cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x246e1d9d cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x284d1158 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2bb99214 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x326fe92f cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x337c7aac cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x37ab1802 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4c27bdc6 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4f3119c0 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x595df73f cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x603fe3d4 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x609af5ce cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6404b19f cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x64eebe17 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x84f7d5bf cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8bd35ea6 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9a00ac20 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9bff8d74 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa3d271f6 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xac6c9d07 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb0eb2db8 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb38e59cd cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb69f7dd1 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbccf639c cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc588a4e3 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcb24f658 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd4f9e9a8 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe3af93e2 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe9e49994 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xedf1bd1d cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xee14c73c 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 0xf098cd53 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf4a4b47a cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf67fc819 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0643fa97 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0797710b fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0ad4597f fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x101159a7 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x23c0601b fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3183d4d6 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x50d2be0e fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x57f90cbf fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x62e5b763 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8334e1f8 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcd9d66b0 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd4b5d528 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe05fd897 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf2b34314 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfa0eef97 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfefa3cd5 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x175a7420 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1bc245f6 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5404e61b iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x59c98f21 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7cef6d21 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xaeb81fa0 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xf9cb3dd9 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x02d76006 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0665452d iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x15ca479f iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x184ca189 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1d6561aa iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x231f15e0 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x28d1ee6d __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b5e4107 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x36afc219 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x484859ec iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4873c83d iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4bece9c1 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4d4216c9 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4f785516 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x50d2aa04 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5439dda6 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5f5f8e48 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5fa76094 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x66fe838c iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x68142d25 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d02eb51 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x787a9593 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7f3d7a68 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x87f1d6df iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x881525e5 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x89f39b49 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa5bf32c7 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa90c99c1 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaedb7302 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb4168d33 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb44ea453 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbd0aae2c iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc9a91511 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcfb52d21 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcff597ff iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdd1b6aa9 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe239da5f iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe86ca91e iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf84ece7a iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfca2837f iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfd1d0e87 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x02337cff iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x07407c66 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x14c5b343 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x223eef45 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2c26cd10 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3003c3cc iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3e841f28 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4b4b1cd2 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4e1a6fe6 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5b93cf12 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9a700ecd iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9f0ed544 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xad564571 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc3443a05 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd81961b3 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xecee357e iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xef4fe553 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x013a5873 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0a4df30c sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0c8dee6a sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1af2ec96 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1c6d4ea5 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x30a84eb6 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x487a84dd sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x56a9515a sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5dd4bee8 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6bc591b7 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6cb8b505 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6dbea525 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9b6a1c17 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa5b13ba6 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaacd0c1d sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xae7fc1b5 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbbe58ea4 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd5c89dbd sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe197c753 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe32b39ba sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xef49b19d sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf1646d5f sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xffa18de6 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xffb80697 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0a0b004b iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0a9937d8 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0ab83ce0 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0ef331bf iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x12bd36cd iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x144ee3e4 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x22e151fa iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x240c90c7 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x25d994eb iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x326ee035 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x37df430c iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x471bb763 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4a0d2fbe iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4dbd8239 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x56f377cc iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6c6d527f iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6eaf16a6 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x70b7fd41 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71f21512 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x80e7ac77 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x83773197 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84d3d1a6 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x89846e6d iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8a81c696 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8b416a23 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa0efd995 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa7e4306a iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb2c5aee3 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc2d9e6a9 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd9debb20 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4cf607f iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe56fa9b6 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe5cad8d5 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe6cafae9 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xea6e6a31 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf04cbbc6 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf70d7c75 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfa37d66b iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfd25e60b iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x31dc7306 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x39e3b932 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7786935b sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd6f6a035 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0c8c3fe9 spi_populate_tag_msg +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/ufs/ufshcd 0x12362841 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x2a847de9 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x94ed4f77 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xa46548f4 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xae22a9f4 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xbcdca271 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xf29baf8e ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x68c76da6 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x821c6e77 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x8fa6cd5b ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xc57bb327 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe9ea3377 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xf8794351 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xfabc177d ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x77877ac8 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x8fd350f1 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbf7cc22d spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc3b18f8b spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xcd710084 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x37113f99 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xbdae91bb dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xce833d0a dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xed6b5d23 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x586cbff7 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x865726db spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xcd005458 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2006a446 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x54c32053 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5d49fddf spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6775338d spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8dd14304 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x96117c36 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9b81aee3 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9fbcd297 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc0f001ea spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc4a4439a spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcbab9ad4 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcf1b602b spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdcacd97b spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf231c964 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf32d088c spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf38a0951 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf85ccf99 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfcd80b13 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x071adb0c ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x07af562a comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x10badd05 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x17ae3c63 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21ce4014 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x23ed8806 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x35f52c04 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x44834161 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x458d2258 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x589bfb42 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6aa18740 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7189f46a comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7462f7d7 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7c34beae comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x90d84750 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x95fbf5c0 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9abffb07 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xae7692e3 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb7a2f42b comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb8e32aec comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb9db3ae6 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbef6edfb comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc3d15787 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcc3aede2 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xceae48aa comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd2f409e2 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd6efebdc comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd9ab5796 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdca1ff96 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe10d9f26 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe8154e4b comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xebc98df2 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xee43040f comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xef6495f4 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf9b2d2d1 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfed95ec0 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x14ddab59 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x1b2ca2cf comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x521d0593 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x78cc85db comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x825e66e5 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x89177f5b comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xbb0633fd comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xf606feb1 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x0d9b0af3 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x71a0e8ef comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x7783349f comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xb1b70c61 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xbae3741f comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xe0117169 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xe8370452 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x3c5481a1 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x4eb91948 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xce762a61 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xdaac55a6 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xee8fa965 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xf4f6a371 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x5af3b79f addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x88220923 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xc60750f0 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x79fc9d1e amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1c240bd5 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x360d603e comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3e907d46 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x46d8912c comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x73cb8ca9 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7ed09c68 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x933a3ce2 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9aab7b7a comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xae45f187 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc4b006df comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc5be3786 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfcd9b9fd comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfd44903e comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x532dd06f subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x76dcbf2a subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xbec1af80 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x5644f294 comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x08dd10ac das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0b3bf1fe mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0fc373d8 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x14e3cb97 mite_request_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2f9b18c9 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x39417b50 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x429c935a mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x465fcf00 mite_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5ae3e774 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7df4ef7b mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x86338c78 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x89178281 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa96384a6 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb172b4b8 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd5b0e6b7 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe39bddf0 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf6864215 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x0db9e49e labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x5c60ca54 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x3eb76764 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x4ad37a50 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x5f26d9d9 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x67359c41 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x784ba14e labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x1c4f76c4 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x3fee3a03 ni_tio_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x4d02bff7 ni_tio_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x577b675a ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x7bad987b ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x83878504 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9bd15077 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xbe32902d ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc18a92db ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe0b219c0 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe1d49923 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xeb5f9575 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x677e1158 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x6ebdf20f ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x752c3fb7 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x89a36249 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xa36cc990 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xf708a13c ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x107c4509 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x66311406 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x799425b7 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa0ae1509 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xb4d3ba6b comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xc1f5d080 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xca1b87ba comedi_close +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0x14b85838 ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0x60d46e30 ad7606_probe +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0xe746b417 ad7606_remove +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x7468b6cc adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/lustre/lnet/libcfs/libcfs 0xe44c317f lustre_insert_debugfs +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x25a8929d ldebugfs_seq_create +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x4e5ed2c0 debugfs_lustre_root +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x6123d235 ldebugfs_add_simple +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x7fc79d4b ldebugfs_remove +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x8bf512c5 ldebugfs_register +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x951f1b73 lustre_sysfs_ops +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xa11c982e lprocfs_obd_setup +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xbf70f87a ldebugfs_add_vars +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xcc3b5b18 ldebugfs_register_stats +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xd849e469 lprocfs_obd_cleanup +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xe697a0ea ldebugfs_obd_seq_create +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xf23a13ea lustre_kobj +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x0685c465 cec_received_msg +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x1563c2f7 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x23fec6ea cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x86afdced cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x9636acc5 cec_transmit_done +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xaf4ce0b9 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xd7329379 cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xfaf2c874 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xfcd42c84 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1c022e25 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x23d89c92 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4176237e most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4220a0ff most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x42ab87e0 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x5d3fb1ce most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x63e15e67 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x8bc8515e channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x96551cce most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd8243fe5 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xdc9b5bf2 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xeab71356 most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0a9eb4f0 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ef1d765 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1d91a8a0 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4bf94134 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x50c3de83 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb35aaab9 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb8833f09 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc798751a spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc9463621 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xeb447de2 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xee141f10 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xee45ee17 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x0a60df61 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x33a84aa1 chip_wakeup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x35088db0 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x6a02e1a2 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x76838e84 WILC_DEBUG_LEVEL +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x7dfd4157 wilc_chip_sleep_manually +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xd2e02b9d wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xd784d6c2 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xe4ef14bb wilc_netdev_init +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x24deb0a9 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x3717edcb uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xcbfb956b uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x5961192c usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xa94847ae usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x287a4e0e ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x6671bc82 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x0a3670b6 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x22ed574c imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x5c342ca8 imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x65c85922 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x8c3bcd40 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x8d84a1ba ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd66de2ed ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xdebbd701 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xfd3cdc22 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x14199a5a gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x16925f7c gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1db82afc gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x26c41630 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x30715e3d gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x36f89443 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3a64c103 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3d72a68b gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6a8cf19b gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x74b418fa gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9c7a0c45 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc430ddac gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc7b31699 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd4ddb4c9 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf7a20bc2 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x6faedcd8 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd4a78f74 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x1e0662fe ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xb01ece47 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xb65db4a7 ffs_single_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 0x1b1cc3af store_cdrom_address +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 0x2d10b6a7 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x394894f1 fsg_show_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 0x3c2501bb fsg_lun_fsync_sub +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 0x44e70a4c fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x47abcbd3 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns +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 0x62f289a6 fsg_store_nofua +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 0x72437f96 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x73184340 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x79930805 fsg_show_removable +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 0x86c607a9 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9212aa8a fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x94bbfe2e fsg_lun_open +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 0x987bc0cf fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put +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 0xa035afee fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get +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 0xa85d07ea fsg_store_ro +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 0xc3af364c fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd48bfb25 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_rndis 0x09b84eb1 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1ff27d8b rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x26edef4a rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x29ffc802 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x31017a23 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x41fb7024 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7ec0aa97 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x889b9cab rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa51f121e rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa60ad90e rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc36ea231 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd3b0cf77 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd49aa384 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdccc260f rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfb17ebbe rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x041af443 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x06c70a62 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x07554ac2 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0958eecb usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x09dcbdf6 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x11f110ef usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2d66954a usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x37519260 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x44ad2ca6 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x44cfedcb usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x46951773 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4af3e8d8 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x57aba403 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x59208624 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5f37010d usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x646002e0 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6eb016e0 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x825981c6 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8545fc6b usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa3887359 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xabbbf823 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xac7d04db usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb085ef38 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbbe4ca85 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd3ac8416 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdb31fce0 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe309b062 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf24df29e usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf454c29b usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf8698448 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x009d1d8d usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x06bc4d38 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0c900b81 usb_ep_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x16666a8c usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x192c4876 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1a69a2d4 usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2a46c178 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2e9029b3 usb_ep_fifo_flush +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x328529f8 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3a53b0d2 usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3aee0405 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3c01002c usb_ep_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x48ddaeed usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5162f30b usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x567350f6 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5d3b7baf usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5d707f14 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6651c465 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x83d56f54 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x84f5e351 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8bb7609c usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8bd1408c usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8e4faf8a usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x91de1a33 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x929b3362 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa20b9aa0 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaef1495b usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb6fa8d98 usb_ep_fifo_status +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xce3d337b usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd16b6bce usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd2c34d19 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd4e2753d gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd60b3f74 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd67d8fa1 usb_ep_set_wedge +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd8d32b10 usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfe5b9bf8 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfef37e17 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x5117c084 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xf6af8179 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x080e50d4 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x65f8a5ac usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8c489ef5 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8e05b351 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbacf7c6e usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc796c17b usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc9b091e5 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf2fe1747 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xfdd3aea3 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x60e944fc musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x13746f9d usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x2524e99b usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x2c6ae431 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x70fd7731 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x8b1f71bb usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x3c5d5520 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xb52a611e usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x091e6303 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0a2aef04 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x223b7357 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2c93c839 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x41a4e6bd usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4eef242f usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x58ba400f usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x73be599d usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x74c40fe3 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x84a5e0f4 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x87d59bc4 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9aff1d72 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9ee469d2 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9ef50255 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa1350fc9 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb0cd67f2 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdb786b4a usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe0d59817 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xed29737b usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf7fe66fc usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfe1a56f2 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x01fc5cca usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x067c84be usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0ee16c53 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1f1a6fb8 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3aaa0e24 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x45078c0d usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x467e7915 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7b689f6e usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7e9711a2 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7ee73212 usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8188fb0c usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x81dc936e usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x83f2ee02 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8584ef83 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8f9d4683 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9ac36202 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa5dd40d1 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa9e16fbf usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb2ef3ba2 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb479358e usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb9e5e61b usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc8b7b0a5 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd3aabcfd usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf6a5bfbe usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x16ffbcab usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1e4d9388 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x20b1465a usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x248bf1e2 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x29b90b2f usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x36f7dfe7 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4094a94d usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x82c80228 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa78ba874 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc080f761 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc332ce52 usbip_recv_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 0xe279149b dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe73096a0 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x09c468c5 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0bd816f0 wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x32ee5e90 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x747ba7f4 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x79b39aaf wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x7fdb031b rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc7b5119e wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xed4fb576 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x00bb0eb0 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x1eb74bf7 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2a62a328 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x34067552 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x52b467f5 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x55ccadc8 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x65bb250e wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7e2ef25b wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x81ddc279 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8e354efd wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa9d42588 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xef3c5f4a wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf06a1b38 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xffd04eeb wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x7acafecf i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xb7e0e9e3 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xbcf2ce3b i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x07b56544 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x084b6201 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x24aadd4e umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x63550c95 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x7768ffb5 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x9174686a umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xcb23a005 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xeba9543f __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d78016e __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fc02440 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x12d9fca5 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x13c069dc uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1b4f9686 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1d2a012c uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x36c37e46 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x424ee89c uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4777d587 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4f375c7f uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x51c52ce3 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5212ff52 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x58463405 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x59dbc8aa uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5a55fd20 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5d5775fc uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x61619b69 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x632f8df9 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6b7d74d5 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6c33d05f uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x752379df __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x780b8813 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x80f380ee uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x86d44cd6 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x87b82ff2 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9f97cbc2 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa65bc4e2 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xaf31d6c6 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb0863266 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb6d27c78 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbc9efdec uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd14996aa uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd5785c85 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd5c37021 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd6a617d8 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd72b2eb0 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd806fee6 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdd9a8781 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf7da0008 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/whci 0xc2a62998 whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x489f1846 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x74b29a11 vfio_iommu_group_get +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7f61f8c3 vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8736ac43 vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x88a104b9 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x89972f28 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9c93a4b8 vfio_info_cap_add +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 0xcb90e2c2 vfio_iommu_group_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd2cced0f vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio_spapr_eeh 0x8b94275f vfio_spapr_pci_eeh_release +EXPORT_SYMBOL_GPL drivers/vfio/vfio_spapr_eeh 0x90010d4f vfio_spapr_pci_eeh_open +EXPORT_SYMBOL_GPL drivers/vfio/vfio_spapr_eeh 0xac0624b4 vfio_spapr_iommu_eeh_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x3af1d441 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x5f1c5460 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x08a14a91 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0b56766d vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0e90e130 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0ec0631e vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x14538af3 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x179abb77 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1c0e7371 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1ebc1136 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x22998a59 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x23d9b592 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x27dc1735 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2d6bdb39 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x327ad3fa vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x34bd3d69 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x360d0f2e vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x39ec719b vq_iotlb_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3a5e4aac vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x47541e1d vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x49c7a567 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5e87ba7e vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5e9f86c8 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x60c6cb02 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x741c9a75 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7f4d58db vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8b90b390 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9e5c4b08 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa0355549 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xae09581f vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb206e833 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb5005574 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb6cc945a vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbe40d9aa vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc0e9a206 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xda236d85 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xda31c212 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf5ab46bb vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf95c4079 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfc6cf6c1 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xff5d750f vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0359466c ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x505c7c84 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5c4b4689 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8fbd811d ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd5006553 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xdf6ab209 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe883c5ea ili9320_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x3d8ee0cc auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x3f6e95e7 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x462b598e auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x82fafad3 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa5073dd0 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb4559b07 auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xc443d5d4 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe7285bed auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xed48a93c auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xeff7058b auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x34d8ba5c fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x7de5a08c sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xb91beefb sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x35839828 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x4be36a8d w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x72a137ad w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c227a28 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x900d05e7 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa89bdc05 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb4dcf67c w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xdda1a212 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf29c0d0a w1_touch_block +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x15dbff2b dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xba104aa6 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xd9bfd391 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0f07a401 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x22ec9c32 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x270a83c3 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4e22f9ca nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbde01d6a lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc042d8a8 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xcb708e59 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x008db1a2 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00cf0171 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x017232e1 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02c32db8 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05cabe5a nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05eb570a nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0845a24e nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08f7186a nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a13c087 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b4907ee nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ccd7adf nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d26d78c nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10115a25 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x111becd9 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14dac26a nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15622137 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x160fc4af nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a99338b nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a9cc9e0 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b9de2bd nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1bd001aa nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d47176d nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1daab19c nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ea676f7 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2052525c nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20a1ac9a nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24a5f0bf nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x259ef41f nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2757ff43 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28229718 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x289fef6e nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fab261f __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x303dc42c nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3621a4e9 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x376dbe71 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x378cbfa5 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39b4adf9 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca5b387 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d712554 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f1e2da2 nfs_init_server_rpcclient +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 0x41a2a91c nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x435b5f1a nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x447b5712 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44e711be nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46c08cff nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47365a4c nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x503c2c83 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50aa89a8 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5158c386 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52ac5f44 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53ad4e31 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d08fb69 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x644e98f1 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67f04be8 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x696ea033 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6cfc45ab nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71bab267 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71ca3564 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x739d581d nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73f0e887 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74b66520 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75cbe1fa nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a2a7faa nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7af4f5c4 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c1a0480 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81722b47 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x817296a7 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85653d00 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85fb6def nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8648e03f nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8805ad4e register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88951103 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8966aa45 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8dd957fb nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ef12b4c nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90dda794 nfs_commit_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9171ef1c nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x931e2c3d nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9378c192 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9748f8e7 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x983b637d nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9adb63a3 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9fc1812d nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa21591e5 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2796eb8 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa658e8f4 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8785be1 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab68f11d nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad5af025 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaec6c0d4 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafba6e18 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb08b316a nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbaed6e93 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcf17267 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc01202b6 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0bb80cd nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc17a7eaa nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3084a51 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6b1b710 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc860afbb nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc89759e5 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb4186b3 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcef285f7 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf610eb6 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf6eacd8 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1a3a452 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd26dc54a nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd853cb57 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8806b3c nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9736663 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9ca1e2c nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdee388f6 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf3953f2 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe45acf8c nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7621c0e nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe99fd600 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedf5b451 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee4d63d0 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee9c7a60 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef00ccde nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeff6e7da nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8080d68 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf883413e nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9a5eec2 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa4f9ffb nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa63d253 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb4cd3dc nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffa72335 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xa86fe1f7 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04bc12d0 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0521808c pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x06e0f4fb pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d0b0a00 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0fc77db6 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1086af52 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16a26f2c __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x180897f8 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2177b0f8 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x21e92eb9 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2739e721 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x28d84ed1 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d947706 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2eb17392 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3326f984 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34ce7631 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34e3a2eb nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3a4172c1 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b7ea9b6 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45bf20f9 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x58740da3 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5898bbd1 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69f73657 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6abac420 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7215f152 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7842b38e pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a2e0927 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86830f79 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9076f4ad pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x998a6b5c nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa1af1e73 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa1cca800 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa5fbdfde pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa70a0e19 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa79fd289 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa897f58d pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaa3a62ec pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaee7cab6 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf6e4f79 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb24e10ac pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9261e0f nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbad2eca7 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc95a46b __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe5af249 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbee91431 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4819041 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc643f806 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca5b3037 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca759b7d nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8c376fd nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd95eb22c pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde92855b nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xebb71fdd nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf1790fc5 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf2916181 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf34dda95 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf8cd3ab6 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9bbce85 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfbdbf075 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfcde231d pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfcf44865 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x42e382c4 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x446c14aa opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xb3fcda05 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x352546ce nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x8ce847e8 nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x04ec2d6b o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0af70aa6 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2fc62cb3 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36a28a9e 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 0x4e900ca3 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5673be84 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6041c35c o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd84975b3 o2hb_register_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/dlm/ocfs2_dlm 0x01f1e4f9 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2301f28e dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2f2e24c9 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x30e2e4cc dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x598f2760 dlmlock +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 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfea70d00 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0d4df21d ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3751961f ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x85e4c450 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xba83d5fc ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x340e541b _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online +EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0x75b0c72b torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xad389a33 _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x73e0a508 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xac882a77 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 0x201d8ea3 encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x0adcb055 base_inv_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x221df614 base_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x4da25bec base_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x63f42b6a base_inv_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x76203267 base_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xca3140ce base_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfa5eee0a base_inv_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfc02472a base_inv_true_key +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x82355c46 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x880e7f3b lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x0ee13a76 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x6afb9816 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x6f98ee34 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x8c6e58ad garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x92923f59 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xf059445c garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x0270fe90 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x36885919 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x36c21bfc mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x4dc7a533 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x5f02f410 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x76ae104d mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/stp 0x0c91fe66 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0x327ef5fb stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x2053480b p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x5ab81ba6 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 0x3275672d 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 0x184773c6 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x333c5a19 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x40402f35 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6717f6e3 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb8b14c7b l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbf6f70ce l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc6fa4ed8 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xcadfe0ea l2cap_chan_create +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x30c73cc4 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x40dd5bca nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x63cd9b0e br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x673b350a br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6cb9821d br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x785a1da6 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x87e4a64a br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe64a9f46 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x17884627 nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x6ce437ec nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/core/devlink 0x08b297b8 devlink_sb_register +EXPORT_SYMBOL_GPL net/core/devlink 0x0a2f7833 devlink_port_type_clear +EXPORT_SYMBOL_GPL net/core/devlink 0x5a298ebe devlink_port_type_eth_set +EXPORT_SYMBOL_GPL net/core/devlink 0x71a08b5f devlink_port_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0x736ebc99 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL net/core/devlink 0x8230727f devlink_sb_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0x8da2d5e0 devlink_port_register +EXPORT_SYMBOL_GPL net/core/devlink 0xb1fa8912 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL net/core/devlink 0xb98ec224 devlink_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0xcdf1bece devlink_free +EXPORT_SYMBOL_GPL net/core/devlink 0xd29fe38b devlink_alloc +EXPORT_SYMBOL_GPL net/core/devlink 0xd85be0d9 devlink_port_split_set +EXPORT_SYMBOL_GPL net/core/devlink 0xe9156687 devlink_register +EXPORT_SYMBOL_GPL net/dccp/dccp 0x00a2f922 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x173ffc93 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x19ac14bd dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1c14a823 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1e2a6218 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2a6363f5 compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4201744c dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x43320084 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x45611218 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4a30ab03 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x51ac87f4 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x54dedf48 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5873ff53 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5b8cc133 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x71a0484e dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x71c2cf57 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x73aa027c dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80e7c7e2 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8ba230ca dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9a8b734e dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa014925a dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb3089258 compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb6134e7a dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0b7b890 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc30c03f0 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc3b01d15 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc4670c1a dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc6c4e804 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdb039f41 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe0bec64d dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe177d940 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe6fc54f6 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe7c5a406 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xed714339 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xefae5346 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfb4abb1f dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0acefeff dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1443c043 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x18966e64 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6874a47b dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb4b436a9 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xcc36f214 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x05b01441 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x50cd7da3 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x8275d420 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x9b7342bf ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd58dfa29 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ipv4/gre 0xb6fe01f6 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xeb42e4db gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1058c219 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x18422e95 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x27008250 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x43cbdfb9 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4f9a9fa1 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9fd67b38 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb45cf1a2 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe47752d2 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xee259b3f inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xbbf4bf6a gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x01dddd82 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2a75606e ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x38d1b93a ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4cb7e31c ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5897a556 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x58fb1f99 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6cba7dda ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7c576022 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x82d59417 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8d76bec6 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa2cc09bc ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcdb549ec ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd0cfd5ed ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd2411d0c ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xddcbc6bf ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x60319ba5 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x2c481d30 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x01a4e525 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x2b42edc8 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x5f5931b2 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x72baae5f nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x9405d5ae nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xedeb019b nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x226c2d81 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x01f09ea0 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa1e2fa1d nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd25f6284 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd8d17e1b nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe2843a90 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xeece9bbc nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_nv 0xe09cecb3 tcpnv_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x122edc65 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x81b2dcc5 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x93f851f4 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xbf7f3ae2 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd2f0a31c tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0e42178e udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x46fab28c setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x568e06bf udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7a306c98 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9254247e udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa6381042 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd21b0c9e udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x197a3fdf ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x44f77d4e ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa5799299 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x9b6a8fb2 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xaf4e3744 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x1d6a7a56 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x9377d050 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x7ee7e988 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x0c20866c nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x60f773f1 nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x752e9d70 nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xaf516f2c nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xe1147a6b nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x053405b2 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3f6f9c60 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x432d99e0 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc0bcf8a5 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xccbe1d11 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf19c1778 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xba679d35 nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x154b282a l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1dcae234 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2a3e51d2 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3a4b82ea l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x57619af4 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5d183228 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5fb14a7a l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6abead65 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6fa5cddc __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7d23fc84 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x88ec3c4f l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8cbaccae l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe4de7b95 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xeddc75fc l2tp_session_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xee21bf40 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf5fca358 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x97156732 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x01074081 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x011a9629 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11e1f72f ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x195c0f8b ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1be17d62 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f9aac4f ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x270ce551 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3665bc85 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3b8e6fe5 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x43d82958 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x552a62bc ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x68c63e0f ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x72c002ac ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x88cdf87a ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc824b4f5 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdc53a02d ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe901e162 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9a842fd ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x383f3994 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8fad5e3d mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb7b40120 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xebc298f3 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x15ee6e56 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22213a4c ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x247e9e57 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x252f0f6e ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4a43b024 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5666a4cb ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x56893a68 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x69bffe94 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6d456ccf 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 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x86e77c4f ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8a86b6c3 ip_set_type_unregister +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 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb878c2a6 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc3b30fea ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc6b40fd ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe086d832 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe3350a04 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa162560f register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa7830f10 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa7dbfce8 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xd78494b7 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x037f0af0 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x04c6fed9 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0916f56c nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09d9f441 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ef03ee1 nf_conntrack_get_ht +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10002c64 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1034398b nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x174a3009 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c3458ad nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ce17948 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d0a999d nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ed97e22 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1eebfb51 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f3e3cc5 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f741cd6 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20ec8f8f nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22025b09 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x242a6738 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x244c9d98 __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 0x2a179d5c nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a587460 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2bf6f1c7 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31599899 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38449b16 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41293d0f nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x413a8845 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x458695a3 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x55e60940 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57171140 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a30feea __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e358390 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ee401b2 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ffa75d6 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61977f31 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x629ae630 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x639951c1 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64e9a94e nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a977b15 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6cdcccd9 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x702cac4c nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70c819b2 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x751185cb nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x758045fa nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76f76c63 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7cf83c38 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7e1b45ef nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x800b0038 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80873c0e nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x872eed8d nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x879e1b96 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x882cc8a0 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x884e6da1 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x89ec6263 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ae8e2f5 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90637be1 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99831e24 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c991fa2 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ec43f7b nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa78cd9a9 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa5548ac __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba780f23 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc31d84cd nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc414ba2f nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc7d599d5 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc866421b nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9d377e5 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9e62d6c nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd02cf35b __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd87891a1 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2932395 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe5cec219 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8031ce6 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee22f9b3 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeebad536 nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0bb8f4b nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0f1a4a9 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf44e7869 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf747fc87 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7e11a24 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf99ed2a8 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfbf47319 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd228ddf nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x98ec00e8 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x2f0147d6 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x47f4a388 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x20e60929 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3fc3ad48 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x449db1f1 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x50f46306 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5788d93e nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa0fef0d6 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa6a63040 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xba2aea02 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd375aa03 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd4591ba9 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xf73ba2d4 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x20e44c3c nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x70bd67f6 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xb6c84f8f nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xedf4bc3f nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x37b57503 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x9613f9d0 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x08f3134a ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x093b5cd6 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3666a756 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5107917b nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7e3c764d ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa69c3129 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfefc2ca8 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x441944d6 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x935de4dd nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x0e1a1f48 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x35ac6c10 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x55682d11 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x86b096a5 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xe5bbd965 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0acc86d7 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1bd709b2 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2b204551 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x30ebe89c nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x44270b87 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6a591732 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6b058c60 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbc2e51bf nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf243640b nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x64e71ade nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x9109cfa0 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2e52c959 synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5f339439 synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7e705c01 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x08a6eced nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0b6258af __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0d2093f9 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x110c89ff nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x116780bc nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x14a5f942 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1d93fd46 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x34ed28b0 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5040b5fb nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x55b72df3 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5c797afe nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x72c49575 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x858def3b nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa50bbb30 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbe57e6aa nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbeac95bf nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc54634b6 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe48adc81 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xea844141 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf0c95f6e nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3a4e999c nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6b8b2fd5 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7f8b6c8b nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x99d40896 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb54b5d34 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xcfb4f1b4 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x18bd6ba5 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x3c4b6b83 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xa812fcab nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x65967295 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x3aa580a2 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x77259f6a nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xcb7c1ba6 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x0215d929 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x168a4ad6 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x434eaad8 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x4877b275 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x6a6744db nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x7ca197c1 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xac802d9b nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xca1ac33c nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x103c2111 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xaf58a35b nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xe318c07b nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x421896e6 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x977e6881 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xfc21e0ef nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04589e25 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x18b253cd xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1d380a5a xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2f7fae20 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f961416 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4c1630d7 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4d3a778e xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x541d28c1 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x55f72fa0 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5c70b594 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x79c7ecb1 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7af2b8f5 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xabe7ff8b xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc4a9e4d4 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xda1cb5a0 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf057d558 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf8f37125 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfefc5c5b xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x00204983 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x482b6a12 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x8a7a60ee nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xb82ee024 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xea46fb91 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x2a2644b1 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd4418236 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xf93be18b nci_uart_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3a3fdd0b ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3e17afd7 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x74807aa6 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb63ab833 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb796ee36 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc00a8973 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc43acf9e ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe07a0ca8 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe9d39591 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x08d142c9 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x0b954c4d rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x0f1c4531 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x130731cc rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x240d033e rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x28287467 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2d5d6c6b rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x32e0a82f rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x47b20ac8 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x609f7da9 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x6ac3863a rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x6b76c327 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x7b169f3b rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x82809905 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x91e29804 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x9e6aff8d rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xacb9af50 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xafc7146c rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc46ae2a2 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xc84a0f8f rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xc87a3f55 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xcb54fcab rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xcc362b1f rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xd22d4bbc rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0xd97914ea rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xe7875424 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xec05a2e6 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xf33fbcbd rds_message_unmapped +EXPORT_SYMBOL_GPL net/sctp/sctp 0x108ab461 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x2bc82ef3 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x2bda9a6d sctp_for_each_transport +EXPORT_SYMBOL_GPL net/sctp/sctp 0x4abb52cf sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x34ac82c9 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x488cfbb4 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc9e43c19 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00fd8525 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01254eac rpc_cap_max_reconnect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x016de55b rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01885e35 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04c4352c rpcauth_init_credcache +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 0x07bdb326 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07e2dc63 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x098d9ed4 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a1d476f svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b3391d6 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bd60c73 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d7bc9ab xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e011ed6 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ecefa91 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x101196be rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16f18eef rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x181a548a rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a21fa62 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a7ba96e cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c128523 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c1ff904 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c545b72 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dbc1644 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e7ca730 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x242382c3 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25508aa8 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2593b31d rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x273e9850 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x294c29a3 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29674b45 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x297facb0 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a71f429 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ac9ed56 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e5ff75b svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f923c8d xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fbb8432 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30c34a26 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x327106d2 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x330b0e24 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x332529ca rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33257b58 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33eefa76 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38269abf xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b07a07a xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bd3a689 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c58c532 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d85fcb6 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3faab0ba svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4081f24f rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41f749a6 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4477a821 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45266624 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4534df2f xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45ab2df0 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x484c25f2 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48ac4557 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x496195a4 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bdc4ac5 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d296946 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50306d85 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50a06667 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51e3b8e7 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5262173c rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x556dd47b rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5771051f xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x577bfcfc rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x580ba1ab xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5945a2c9 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5afa74d2 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b56811d svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bd55fb1 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d586a55 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f0c717a svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60321fd9 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60b9b201 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61b87f4e rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x624de601 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62b08156 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67d7d28b rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68f979c9 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69a1731f svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ccb86b6 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d8129b6 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ec92d89 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fff9207 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7036f123 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7069e102 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x707ed718 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x734c004a svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74180721 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76dc727e xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78471b03 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79179f91 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b146506 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b3679f2 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bcc3539 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d7e56d5 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e84536d xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x801df3e5 cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82f2c18d rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83380718 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x844ba365 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85101e69 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86c198fc rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8880b6b0 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88a8d964 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88f89939 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b45efd0 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c523b6f xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e1bd9ed xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e229d2f xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f2d04ea xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fea2a06 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9024c611 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9340fd18 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95840c6c xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96e52bdb xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97cc25c6 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97f38d86 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97f6608e sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x980220a4 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99764f48 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99a1cd19 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a18924a rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9abe53be sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9adc75fb svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c458aa4 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c7f8b22 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d24fa63 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f9efd55 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1112afb rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa37dec1a rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4f681fa svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa539a362 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa642c113 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa1952e9 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad924427 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaec0dc88 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf4f71c6 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb129102e xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3357e42 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3fd2389 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8087bcf xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9349926 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9df88da rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba92bb21 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb20d4cd xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb861ec9 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbba8952f svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc57732c svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc665af6 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcc2932f svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe89f516 rpc_bind_new_program +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 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc790e635 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc82a2c8d rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8723d17 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9b45f7a rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca8f78d0 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcabfe605 rpc_lookup_generic_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb0fe6be cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb562f34 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce00ea9a rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf196b84 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfdc2d6d sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1135246 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1f3cd16 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd236828c rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3dafc1d rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd60146bf xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd677a1c9 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd823153c svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9a0ee26 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcfaee09 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde3abe4a rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde67b411 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf6c84ca xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf81bb23 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfaa2730 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe05c2a10 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0bc8b46 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe223ab31 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe29b1e9b sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2dec23a xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5221330 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5b52e93 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe624ee1d rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe643816e rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe878d314 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe94c063c xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9c21b86 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb04ff51 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb7ceeff rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedb70752 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee2eeb89 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef0a3bb7 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2ff7de5 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3b6f1cc svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6c9ccb4 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6e6c474 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7ac7373 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfac4e8aa xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfae7e330 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfda912ba svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdeeee21 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfff7b255 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03286595 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0a2b8a1b virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x112a0d67 virtio_transport_get_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x11607146 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x15d5fab8 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1ce73701 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x230f43f8 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x34d08eff virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x37841aa3 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x43da0f68 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x449fa871 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x48c84740 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4c1c02c8 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4f5b3b91 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5184f934 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x566342bc virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x56e35766 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5cc1163c virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6d1303bc virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7dd73a1e virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x80ef9cfb virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x81369ea8 virtio_transport_get_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8e5d92c3 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x92d02905 virtio_transport_set_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x95ffcf94 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x96186fb4 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x97f2a382 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x98d42558 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa0417f8b virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa9e289e1 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb1baa15d virtio_transport_set_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc3c7b359 virtio_transport_set_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe16ca3f8 virtio_transport_stream_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe32daba9 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeb582483 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeb67711c virtio_transport_alloc_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xee5ba465 virtio_transport_get_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf5694aa6 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x09c392db vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c6d5bdd vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x11a79f20 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x46dca722 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4c4c560b vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x552a1743 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x61714fe4 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x61d71270 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x71e05e3f vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x71fbeb91 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x80218d07 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa0ad6a1d vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb25ade62 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xba48b9f6 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe29342e2 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/wimax/wimax 0x03de00db wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x051f77fb wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x35ba7297 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x41300fb3 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x59326eed wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x61cc8c19 wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x658212b5 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0x724ac7ec wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x8665a1fd wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0xbd0d722e wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc9bdbd62 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd66bbc56 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0xe4ffd6f7 wimax_dev_init +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x03c49c20 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0d9fe9f4 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x15d0697a cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x17ff2f61 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x54dbaa0b cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5a403ac4 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6497837e cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x94da6b98 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc0f159d2 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdca6cbdb cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdcf6066f cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xecb595a7 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfce1af2b cfg80211_wext_siwrts +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 0x3bf471d7 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x1599d43b ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x45d4fd57 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x82632938 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb43c0464 ipcomp_init_state +EXPORT_SYMBOL_GPL sound/ac97_bus 0x0d4695e6 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x1329ddfd aoa_get_card +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x36538dae aoa_snd_device_new +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x44a6c80d aoa_codec_register +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x6e59e6d8 aoa_fabric_register +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x6f637851 aoa_snd_ctl_add +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x786f5476 aoa_fabric_unlink_codec +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x90580716 ftr_gpio_methods +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xd57fe30f pmf_gpio_methods +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xe3ad6403 aoa_codec_unregister +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xe4682986 aoa_fabric_unregister +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x100f8559 soundbus_remove_one +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x7eb55b2b soundbus_register_driver +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0xc3b54ba6 soundbus_dev_put +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0xd5d6027a soundbus_add_one +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0xe31bdfd8 soundbus_unregister_driver +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0xff2a9e8c soundbus_dev_get +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xbb954d9e snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xd31395ed __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd 0x268c7eb0 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x2b5b971f snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x3d158646 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x70cf96e8 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x9a37e510 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0xeb401ecb snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xfbebf25b snd_device_initialize +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 0x4b78e0d5 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7a121bd7 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8c2584b2 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x900ae6d9 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x91cab9b3 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa19d3e9c snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa80dc8f3 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfd61662a snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xffbc6568 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0d077c01 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x10baa055 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3eec7093 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x43d3e1cd snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4894bab8 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x72df4a15 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa82bae3b snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb00e08e1 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb39cce92 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe9bc574a snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf61e45bc snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x01a7c8e0 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0d92dfe4 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x610f8511 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x704af5b0 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7c0be25b amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd4e27b7c amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xefc5bccc amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0048897b snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x02510b38 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x066ade27 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x06f7e57d snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0ac5f94d snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0e9c31e2 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f588eb4 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1276ad51 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1d1eed50 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x23cf62ce _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2818112c snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2caeea1b snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2f2e7b6e snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x31e44e43 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x32eb61d3 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x332d7547 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33caa2d8 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x347ba3a0 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x350d41b4 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x364f6128 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x36e5a128 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4872af39 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4d8b6c65 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5343f83a snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x59e78424 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c790b5c snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f23b849 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5fff0a6f snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x61aea07a snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x66fe6d67 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 0x6c6531a6 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c8d4e05 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7099cab9 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72eb522b snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77cf01c3 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x78683138 snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b020562 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ce65386 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x82e731c5 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84df3351 snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84ffb807 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x85734345 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8a099eb0 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8a14d7b2 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8b54e5b7 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c362854 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8d2377af snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e5c3406 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x91553fdc snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x96593802 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a0e6240 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa4dd298e snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa8434434 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb01e0667 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb5730bdb snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb6f6c8a4 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbb86cd8f hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc010cdf3 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce5a1317 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd281571e snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4e6e92f snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd9e80ed0 snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdcc9ebbc snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd730797 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xddb9f357 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdfae282f snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe19ea1b8 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe35fabdf snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe56edb2a snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe6032b5c snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7ad188b snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xebeb9c47 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xefe37704 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf6cc5a63 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf9150676 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x1890ea03 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4ad68e16 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xab76e974 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe8603f24 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf25fc9f2 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf93593b2 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x027ebcca snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05ab5e4e snd_hda_codec_amp_stereo +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 0x06ae4799 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x070480af snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b864b95 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ce3a696 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d6fe987 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e08328b snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e576ec7 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x130b2909 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14c4583a snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x160911b2 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x196b5eb6 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1aea25ac snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ba24dfb azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x239b659d __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28395efc snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2892e160 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29a8ebc9 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29da3166 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2afc90ba snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c829990 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d7ca176 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30269372 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32a79141 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3320176c snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33a52920 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3de18223 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x401e7f66 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4068196e snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41657682 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41a55f50 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43c19a37 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46cf281d snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x478d95bf snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4951627a azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c8e97e3 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cb47112 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e3df735 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e67ef85 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x508f4cee snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x51a0601f snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5207fd5f snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53d597a7 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53f21ffa snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58d9b320 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a8905fb snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ce3a0e3 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e20080f snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x627fe0bd snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62ea0403 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x651920f2 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66710371 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66f12abb snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x676cf9b0 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6983a11a snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b1b5738 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e707296 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73ea45f1 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77c175cc __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78a36982 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79130f44 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d3d175a snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ed03c12 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fee5768 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x834a2d9b snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a443392 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8afa124e azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90180758 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91a23e94 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91d4855a snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9545cdcb snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99d35ede snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b4a10c8 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b626df6 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bab3621 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa561e19d snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac4dbca0 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae73764d azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb03126b6 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1502521 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2a97c7d snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb33b9584 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb40c8a66 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5fb5c46 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6e42c56 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb978b062 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9fb2f0e snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba2b57e5 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba464909 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb4c3d5a snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcf74e5d snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbfffa074 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc128b773 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc43398fb snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6cc53ac snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc792fb22 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc84622aa snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb4e042e snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc7e9951 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcde13f58 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce0d674a snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcfe1c516 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd24a3cae snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd40cf64e snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd67f8659 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd89472d1 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8ea1ba1 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 0xe1bd8694 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3bbf918 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4130e0d snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8c43c2d snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb23c147 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb253edd snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee314a5b azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeed42fbf azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xefb1ceb3 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf443b39c snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf50198f8 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6fd56c7 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf71d1bc9 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa5eb9ec snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd43791d snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfef2483c is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0110878f snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x01ba629a snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x15e38819 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2cc6c9f7 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x33e1c074 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x420fe56f snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x519eaf2c snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6a64d1f6 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 0x7ac06096 snd_hda_gen_line_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 0x90caa065 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x94c6745b snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa5169653 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xaa7a427c snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xabd87a88 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb8e62783 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd3601b60 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd4f0a0b7 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf2edaa0c snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf7c5c371 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x1ce8fe02 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x95ac6591 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x3659464c cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x8e7aca2d cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x12e975da cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x9f9b4968 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xd20ee48f cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xa5a31f2a es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xcc9bbf10 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x20d13433 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x3fddfd49 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xed4e92d9 pcm179x_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x0af93c17 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x78505b2e pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xabd61e20 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xb9b008f5 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x12f73715 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x2696ec93 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x4257f451 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x6497e967 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc +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-sigmadsp 0x2180a192 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x3145dc98 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x60343c4f devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x83c61c55 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x91e363e1 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xc142ac5e devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xba3ebaa6 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xe27a987b ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x13b69d20 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x10326f49 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x144c7ca2 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x46ebc3e2 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x8eb6ed2f wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xbb83064d wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xad8cc3d1 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x4414758c fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xbe34db4f fsl_asrc_get_dma_channel +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 0x440b33b4 asoc_simple_card_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x58c841d1 asoc_simple_card_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd1f3076c asoc_simple_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02350f00 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0678ff34 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b3b8949 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b7b9750 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cce8ac4 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0dc23030 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fff68f0 snd_soc_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1004e28f devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10ada065 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b8bfb63 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c4e9a1b snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e7b3559 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21ab64f7 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22faf0d5 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23163bf2 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2328eebc snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26f2a627 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2711665e snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x272f7400 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27a1db2e snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28c7e0fb snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a13cb20 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bcbbf02 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c3078d1 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e2f6baa snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f13eff2 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x323f1506 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32e382d3 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3374cc9e snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34f03bfb snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38fc687e snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b403536 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b5ed7e7 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c862027 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d1d11eb snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d6b96b2 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4143043d snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42587faf dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4386f075 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d469472 snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d5f3fb4 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e5fe1f0 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51316fa1 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x514a2aa0 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51852d83 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51eee3cb snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5219e9a9 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5550163c snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x564f3383 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x568df084 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56d1c223 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58eb6114 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a94bc55 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ab40b67 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d429765 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ea07c25 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x611e87ab snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x627bd95b snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6309a421 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a21ece0 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b398b5e snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b763aa7 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b9146d8 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6bbdc154 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6bee1ad3 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c122914 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c54791c snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d16b266 snd_soc_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f5e15f9 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f65a146 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x719dfc00 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72d43e5c snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x733f0dce snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x748f674b snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x758e30c4 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75904825 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75a57c70 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x789fce90 snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7bfa8c8a snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c6ab63f snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7cb6f407 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7dede4e0 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x802f4a07 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8115ea8a snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81c0dbb4 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82dda633 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x859dcfbe snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87755d1b snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8841c747 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c99b112 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d8ff1c1 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8dd3592e snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91961ca8 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x931ceb7b snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9408ee8e dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9442b2c7 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94743766 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9564ed29 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96fcfa2f snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97208a03 snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97271f29 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x981eabfc snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9959d88a snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x999dea57 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a870a06 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b2c5431 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d2e9508 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d69d38f snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9de17b57 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa142c0ab snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa14bfe3b snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2ba6813 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa396b48c snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa55fc609 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7a95e4f snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa803359d snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac1c416c snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac463d6f snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaca1de56 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad7b7c0b snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb149b143 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb380c962 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4b51c05 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6779189 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6f809fa snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7686deb snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb58a03f snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbe9a96e snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc88a5cc snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcb9a926 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfd1ccf4 snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc449f568 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6bcc416 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xced76085 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcef1806b snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd18d531c snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd40257b8 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd486db03 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd561332b snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5bc4c49 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda08281d snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd45ca57 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4ba4c0c snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee8ff519 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef3cbb36 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf419a59a snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4b35c27 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf51ca6df snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf61ea0ee snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7790245 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc4bda9b snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff9ebdec snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfffadeaa snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1881b170 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 0x36ff78cb line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x391f3cb7 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x463d604e line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4af97c25 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4e04d716 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5c2ec98c line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x703b1440 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7493c278 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x83ef43fd line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbce7a580 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xccca24a1 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xccd0504d line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xda0d0e20 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe1000e1f line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf6d48fef line6_probe +EXPORT_SYMBOL_GPL vmlinux 0x0027a0cb pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x0051da5a pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x0066e81a pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x00693b58 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x00730658 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x007fe528 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x009a99f0 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x00ad91af of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x00cfa47a transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x010d65e7 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x014a6c9f of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x01537ce3 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x018ef001 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x019a77cf transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x01a42549 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x01bb2db7 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x01cf4d18 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e5c77f __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x01f1a127 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x01fc720e tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x0211ae67 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x02176d47 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x021ebfda btree_update +EXPORT_SYMBOL_GPL vmlinux 0x022b205c wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x0241e92f trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x02579fbf hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x025e4599 srp_release_transport +EXPORT_SYMBOL_GPL vmlinux 0x026211e2 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x02af6ae5 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x02c6a9be inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x02c74e02 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x02cdb643 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x02cf1780 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x02d659be irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x02fb37a5 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x030ebd64 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x03121ea6 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x0323ac66 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x03246fd0 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x0325917f phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x035f7345 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x038a0ce7 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x03962177 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03a03deb badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x03b5c620 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x03dcc8d4 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0406cadf gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x0410ca48 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x043d0b08 kvmppc_clear_ref_hpte +EXPORT_SYMBOL_GPL vmlinux 0x04526c13 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x045839dd tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0467d149 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x046ddb80 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x046edd9f bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x04822345 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x048248e9 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x04896110 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x049e76ea regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x04a3e75f spu_associate_mm +EXPORT_SYMBOL_GPL vmlinux 0x04b5549c __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x04bdf5ad scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04ce3f86 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x04d2cc96 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04e2a8b5 devm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x04f89308 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x05089888 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0556c09b __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x055fa18c __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x057d01a3 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x0583aaa2 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x0592cf11 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x05c29fe5 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x05ce6f0d devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x05f46d57 __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0x060c8e4d thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x061dee59 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x062af2ba regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x062f898f __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x06346059 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x064134f0 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x065abe6a register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x066a3769 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x066a8d31 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x066bd947 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x068c7d6e ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x068ccc4f ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x06923092 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x06cb4e93 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x06db299c iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x06fe6565 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x06fe7b3a __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x071f88bf platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x072bd0a3 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x076d56c5 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x0779c1eb cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0787cf6c ps3_vuart_port_driver_register +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 0x07d04aab single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x07d32458 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x07e0a222 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x07f9fa51 init_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x0803fc50 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x081b4829 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x085b6ebc blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x08844050 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x088771e0 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x08997880 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x08a11455 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x08a8a9e3 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x08ad7160 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08c34b2e rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x08e8e08e force_sig_info +EXPORT_SYMBOL_GPL vmlinux 0x08ea38c5 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x08f631c1 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x08f855d8 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x090ae864 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x091ad3c1 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x0923c050 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x093288ed kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x0933c5f3 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x09367311 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x095527fa sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x0961b62e public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x096a572b gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x096e894b debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x0976d7c0 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x09ab1111 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x09c31db7 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x09dd6109 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x09ffde3d rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x0a0f81e0 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x0a234cce inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x0a35c238 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a83fb12 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x0aa43329 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0aa45e82 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x0ab44571 pm_genpd_syscore_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x0ab529a7 eeh_add_device_tree_late +EXPORT_SYMBOL_GPL vmlinux 0x0aba96ed i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x0abb7961 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x0ad4a2db phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x0ae0c312 inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0x0ae354cb bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x0afb6809 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x0b04835c crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b167e87 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b3e6bc0 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x0b56261a dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x0b740dbb cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x0b77f555 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x0b98ebf7 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x0bc2a84e nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x0bcfd619 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x0bf24439 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c1e46c8 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c345156 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x0c45a82e power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x0c4ff792 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x0c6ce56d ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x0c6d5ccc unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x0caf75d9 opal_flash_erase +EXPORT_SYMBOL_GPL vmlinux 0x0cb58211 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cc27cfd __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x0cd8af6e governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x0ce3ee5a mmu_kernel_ssize +EXPORT_SYMBOL_GPL vmlinux 0x0cfd200a security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x0d00de36 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x0d2e3eb8 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x0d352ec8 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d5baef8 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x0d75624a ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d8bde50 ps3_mmio_region_init +EXPORT_SYMBOL_GPL vmlinux 0x0da093b6 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x0dbb013f bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core +EXPORT_SYMBOL_GPL vmlinux 0x0e129870 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x0e1adc13 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x0e2be93a usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x0e3027f5 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x0e323a69 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0e4005f4 path_noexec +EXPORT_SYMBOL_GPL vmlinux 0x0e785b84 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x0e93fa01 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0ebb8b69 kvmppc_gpa_to_ua +EXPORT_SYMBOL_GPL vmlinux 0x0ecdccd5 device_register +EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x0ed5b5f8 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x0f2cb190 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f4538db simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x0f6f4fda watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x0f7514d0 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f968d73 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x0f9ca851 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x0fb695f0 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x102bc981 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x104b66b9 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x106271c2 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x10930254 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x10979e67 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x10c615c6 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x10e367ac bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10fd6bb7 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x110a3a25 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift +EXPORT_SYMBOL_GPL vmlinux 0x11244829 user_update +EXPORT_SYMBOL_GPL vmlinux 0x1127be93 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x1142ca19 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x11446176 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x1176a753 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x117c7305 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x117f248f blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x1190f4f4 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x119428b4 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x11af561b ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x11bd6838 spu_get_profile_private_kref +EXPORT_SYMBOL_GPL vmlinux 0x11c44cc3 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x11eab88a platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x11f1afba perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x1203aa74 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x124b8921 devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x125884e2 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x126825d6 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1274cd4c dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x12771f1a jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0x1277da97 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x127c9843 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x127df199 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x12dcb9bc sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x12e86583 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x130a1ee0 netdev_default_l2upper_neigh_construct +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131d2169 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x1321f416 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x1323f010 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x132846cd dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x132e9bb0 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x1333d8b3 ps3av_video_mode2res +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13679f73 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x1369b898 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x136a4ee6 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x137167f6 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x13a4d990 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x13bc0b4c fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x13c093c5 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x13c376d6 spu_setup_kernel_slbs +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13e1165d ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x13fc8469 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x14025e9a of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x14192ac8 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x14194d97 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x1464042f sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x14978088 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x149eef48 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x14a96bc9 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x14b6b24f devres_add +EXPORT_SYMBOL_GPL vmlinux 0x14e45203 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x150362c1 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x1504b03a pmac_low_i2c_unlock +EXPORT_SYMBOL_GPL vmlinux 0x15057985 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x150b2089 cxl_cx4_teardown_msi_irqs +EXPORT_SYMBOL_GPL vmlinux 0x15595cf5 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x1559746e device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x156cc613 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x1588359d device_attach +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1598ee5f tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x15ad877d crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x15ae9135 of_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x15b8b44d opal_async_wait_response +EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x15f34982 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x160c254a dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x160c3986 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x161757dd phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x1619332d handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x161ccdfd debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x16469607 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x166ef63d nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x16803f7f tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x16b1b146 usb_of_get_child_node +EXPORT_SYMBOL_GPL vmlinux 0x16b5dc48 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x16ba011d regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x16c18cd4 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x16dcf649 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x16e6e86a gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x16f6983f rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x170e5ec0 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x17102539 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x1754c1e2 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x17766bf6 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x17786130 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17882db3 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x178c72d7 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x179927f8 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x17b7c849 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x17c05173 add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0x1829b9ed hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x182f363f thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x182fe2a8 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x18323b45 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x18360b2c gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x183c5c0f unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x184858f2 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x18570516 pmac_i2c_xfer +EXPORT_SYMBOL_GPL vmlinux 0x1864a67a irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x186dad19 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x18858e65 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x18930f4b mm_iommu_lookup +EXPORT_SYMBOL_GPL vmlinux 0x189f874d powernv_get_random_long +EXPORT_SYMBOL_GPL vmlinux 0x18b77578 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e6200e fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x18fc7e4e usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x191ad9de register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x192b61be regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x1952734d l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x195aa649 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x19609044 devm_nsio_enable +EXPORT_SYMBOL_GPL vmlinux 0x196a5568 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x197ce14f dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x19800943 pnv_cxl_enable_phb_kernel_api +EXPORT_SYMBOL_GPL vmlinux 0x199d5893 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a9fe98 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x19c0e8ef disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x19c95c15 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x19df4ed8 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x19e21eea __devcgroup_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a0d0f44 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x1a23aaaf kvmppc_add_revmap_chain +EXPORT_SYMBOL_GPL vmlinux 0x1a598b27 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x1a86d2b5 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x1a8c5907 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x1aa35127 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x1ac483b3 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x1ac717e3 ps3_os_area_get_rtc_diff +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1b17e3db tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x1b1d22d6 pnv_pci_get_power_state +EXPORT_SYMBOL_GPL vmlinux 0x1b1f8af9 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x1b58d20a device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x1b9664d1 __destroy_context +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1bc0dc4d ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x1bce8ea5 security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0x1be16073 mm_iommu_find +EXPORT_SYMBOL_GPL vmlinux 0x1be68543 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1c16a0ce cpu_remove_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x1c50726b crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5d74f2 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x1c61116d blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x1c67f56b __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x1c68ea61 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x1c6d0238 pnv_pci_get_device_tree +EXPORT_SYMBOL_GPL vmlinux 0x1c79e001 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x1c7df74c kvm_hv_vm_activated +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1ca476da __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x1cae17a2 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x1cf82066 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x1d03037a usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x1d044eba wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x1d074911 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x1d13697b ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d26f994 security_inode_readlink +EXPORT_SYMBOL_GPL vmlinux 0x1d31a4d8 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x1d366e86 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d75a095 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1d8c9a37 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1d8d8110 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x1dba6b64 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x1dcdc996 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x1dd1ffc4 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x1dd253f7 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1dd97ea7 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x1dfbcf4c mpic_msgr_disable +EXPORT_SYMBOL_GPL vmlinux 0x1e000879 hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e03d675 cap_mmap_file +EXPORT_SYMBOL_GPL vmlinux 0x1e08972a rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x1e0e86b8 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x1e1c065f PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x1e2440b8 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x1e279cf2 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x1e315516 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x1e33c90c spu_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x1e3cfcd3 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x1e455940 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e5d61a6 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x1e6ef483 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e7eb9c7 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x1e849a74 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1ea7868a relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x1eada580 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec212ac fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x1ecc368a cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1ed5bb8f stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x1edab40e rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x1edc21cb hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x1eea4096 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x1eee8be0 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x1ef99814 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x1f1988f7 hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x1f2252dc dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x1f434b24 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x1f5b649c devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x1f5c75e0 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x1f5d5a38 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8d71c4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f903c9b ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x1f960f04 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x1fc78a6c stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x1fe31f98 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x1fe970cb ps3_io_irq_setup +EXPORT_SYMBOL_GPL vmlinux 0x1ffa75a1 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x201a99a9 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x2020c47f nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x2040809b ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x2042b222 ps3_open_hv_device +EXPORT_SYMBOL_GPL vmlinux 0x204d30ab tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x20606a8d wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x2065ec87 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x2071173b devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2080c505 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x20842577 mmu_feature_keys +EXPORT_SYMBOL_GPL vmlinux 0x2084dee4 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x209bf7b6 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x20a7bcb2 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20aef8be blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x20b3e8cf usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x20b90514 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x20c9877f platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x20d1b69f clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x20dd3510 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x20f35597 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x20f84012 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x20fa04cc crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x211850f5 htab_hash_mask +EXPORT_SYMBOL_GPL vmlinux 0x2120c0ff serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x2121e8df rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x2161cc10 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x21690055 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x2171ad19 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x218e5e57 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x219e9d86 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b9db96 kvmppc_ioba_validate +EXPORT_SYMBOL_GPL vmlinux 0x21cac865 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d65cab macio_find +EXPORT_SYMBOL_GPL vmlinux 0x21ddde36 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x21e24780 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x21e4b75c of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x21f277d1 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x22135d2c tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x222f43be __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x223473b2 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x223fe762 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x224b5399 update_time +EXPORT_SYMBOL_GPL vmlinux 0x224c3bae inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x22527598 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x2265f701 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x227b6ce8 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x22894a62 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22985fbd iommu_tce_xchg +EXPORT_SYMBOL_GPL vmlinux 0x22a74833 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x22c0586f inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x22dcea32 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x22f1b0d4 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0x22f4f985 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x2303fe0c crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x2313099f of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x231d3468 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x2325589b of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x2354f6dd wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x23626286 hpte_page_sizes +EXPORT_SYMBOL_GPL vmlinux 0x2369008b cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23a2e210 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x23a445c3 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x23a4939e irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x23b29915 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x23c13908 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x23da5d40 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x23df8717 gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x23e776bf debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x23e94cf0 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x23ed0edd sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x240c85eb sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x242fcb1c irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x243057fa cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x243f5fe8 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x243fa050 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24b6490a fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x24e2f125 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x24e863cb security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x25078bd2 cxl_afu_put +EXPORT_SYMBOL_GPL vmlinux 0x25138663 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x252cfe2f cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x2539c3b1 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x25425cd2 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x2559b756 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x25638094 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x2563e0b0 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x2566fcba vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x2567a75e generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x25bce7f6 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x25c0cfb3 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x25c255ea rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x25e136e7 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x25f93693 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x2611b8d7 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x26211b63 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x2630663e stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x26477a68 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x26634dfb rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x26726d32 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x267b2733 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x26add826 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x26ade4dc get_slice_psize +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c3cf53 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26ddb885 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x26e17ec2 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x270a80ca md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x270f09de ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x27225809 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x273b7981 dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x276c272f usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x277cfb5e use_mm +EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27c3201b spu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x27df5879 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x27e42725 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x27f31704 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27f78168 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x2806104c phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x28143c27 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28403d7d powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x2852987c subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x28564029 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x28705381 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x287b857c class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x28d07c68 of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0x28d502ef __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x28f8282c sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x28fd7789 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x28ff99a9 opal_prd_msg +EXPORT_SYMBOL_GPL vmlinux 0x290917f5 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x2929c677 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x2931a051 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x2943aa9f irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x29447153 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x2958cfe0 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x2959e660 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x297463e4 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0x29c4605c component_del +EXPORT_SYMBOL_GPL vmlinux 0x29c4974b crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x29e60252 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29fb5b04 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x2a073867 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x2a427fe6 eeh_add_device_tree_early +EXPORT_SYMBOL_GPL vmlinux 0x2a50519c dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x2a50d425 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2a5fd4e1 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a7b5b7f __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x2a82cd01 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x2aaa6dc9 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x2ab40070 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x2ad49646 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x2aee8f0a bdev_dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x2af2bed5 isa_bridge_pcidev +EXPORT_SYMBOL_GPL vmlinux 0x2af3b614 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x2b1bae0e cpu_to_core_id +EXPORT_SYMBOL_GPL vmlinux 0x2b2438f9 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b2cccf5 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x2b4147ed kvmppc_hcall_impl_hv_realmode +EXPORT_SYMBOL_GPL vmlinux 0x2b4e697d phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule +EXPORT_SYMBOL_GPL vmlinux 0x2ba084ce preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2ba81dab tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x2bb2b14f public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c29876e class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c3d0ff8 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x2c4d2436 ipv6_rcv_saddr_equal +EXPORT_SYMBOL_GPL vmlinux 0x2c4f8668 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x2c611313 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x2c62ec94 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x2c6eb531 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2c9c4081 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x2cc3e675 pmac_i2c_close +EXPORT_SYMBOL_GPL vmlinux 0x2cd88f51 kvm_hv_vm_deactivated +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cf1fc28 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x2cf2c1e1 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x2cfd055e fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d2a5a79 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x2d3a719e get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d4fac72 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x2d557a8f usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d6c365b dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x2d783a31 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x2d7c73b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0x2d83ac27 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x2d878913 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x2d9720ef usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last +EXPORT_SYMBOL_GPL vmlinux 0x2ddb8094 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x2dded388 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x2de0fe55 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x2df01085 __add_pages +EXPORT_SYMBOL_GPL vmlinux 0x2e1010c8 spu_set_profile_private_kref +EXPORT_SYMBOL_GPL vmlinux 0x2e15e619 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x2e1c3dba wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x2e1c95ae mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e246374 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x2e2ac11b irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e6e4efa gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x2e8ca566 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x2e8fe85f crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x2eaa18d5 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x2eac30e6 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2eea12f2 vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2ef9d8b8 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f0ec059 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2f34cd93 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f51b882 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f6a27bd wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0x2f760ca4 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x2f877d9c pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x2f90a7da lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x2f9e0614 pmac_i2c_get_adapter +EXPORT_SYMBOL_GPL vmlinux 0x2f9f4839 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2fdb2a42 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x2fdbc994 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x2fe8b226 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x2ffb5ff7 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x300f97a4 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x301832fb opal_async_get_token_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x3019359d dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x303232e1 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x305d366b get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x306050be kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x306fb9e6 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x307a8efa sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x309ce10d pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x30aa369c skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x30b373bb md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x30b6e3a1 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x30dbcc27 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x30fec7f6 pmac_i2c_adapter_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x311b78c2 ps3_get_spe_id +EXPORT_SYMBOL_GPL vmlinux 0x31201177 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x313c35cc pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x313fa1e2 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x31407c6e mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x3141449e crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x317d0c4f rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x31b58fe2 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x31bef441 opal_i2c_request +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d8a40d usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x31e70ca2 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x31eb47be of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x31ef1f61 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x31f36474 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x31f89cd6 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x320962da pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x32141bc1 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x3220bd0a user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x3224decc sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x325cf484 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x32662f83 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x326945e4 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3285946d debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x32979091 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x32aa1864 device_remove_properties +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 0x32d3a1b7 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x32d50b40 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x32df3e3d vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x32e70696 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3300c54e pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3309ea64 ps3av_audio_mute +EXPORT_SYMBOL_GPL vmlinux 0x330c84d2 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x331a2c5f list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x33276880 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x332c3c1b regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x33345059 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x33544951 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x3368d1bd dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x336979f9 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x337786fa usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x3379c928 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x338fa9ba regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x33dce91f unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x33e739f0 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x33e9bd0c do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0x33ec2f18 bpf_prog_get_type +EXPORT_SYMBOL_GPL vmlinux 0x34136e71 spu_remove_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x34252731 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x3436dca4 pmf_put_function +EXPORT_SYMBOL_GPL vmlinux 0x3470ce38 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34ad34d5 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34ad5f7e cxl_update_properties +EXPORT_SYMBOL_GPL vmlinux 0x34af0adf opal_ipmi_send +EXPORT_SYMBOL_GPL vmlinux 0x34b4e59c ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x34f93e52 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x352095a0 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x3556cfc1 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x35649d67 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x356c9f9b pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x357fafee pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x358612e5 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x3591fee9 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x35a15801 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x35a7119d iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x35d27458 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x35d3c10d bus_register +EXPORT_SYMBOL_GPL vmlinux 0x35db1518 cpu_feature_keys +EXPORT_SYMBOL_GPL vmlinux 0x35e57ee3 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x35e7f821 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x35f40438 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x36162ed4 pmac_i2c_find_bus +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x36279aef pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x362e4a02 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x363dd33c __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x366d0251 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x366e536c sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a7ec43 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36cd21f5 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x36d818fd screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x36da0e38 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36df902a pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x36e7db0e tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x36e8817f crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x375fe7ec virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x37aa97ba devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x37ac6951 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x37b54805 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x37b8b890 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x37dbe311 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x37f692fa transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x37f7fd51 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x384f3b5f trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x385a70e7 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x386cccd4 iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x3879fa24 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x38925fcf request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x38ab32e7 pnv_get_supported_cpuidle_states +EXPORT_SYMBOL_GPL vmlinux 0x38b29aad devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x38cb1784 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x38cf6c00 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x38f09540 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x391d2da9 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x392a6a63 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x39362138 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x3939d4fe ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x393fc54b rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x39499959 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x394999c0 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x39642323 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x39676120 sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x3986248d crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x39ad3257 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x39b6bc16 pnv_pci_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x39c279d4 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39db1b2f __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x39e313ad pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39e96510 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x39f61c73 acop_handle_fault +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a38dc65 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x3a4633c0 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a5ba1e7 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x3a64ff46 srp_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x3a77b907 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x3a97343d dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x3a9b9ce7 pmac_i2c_get_bus_node +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3a9bf0d8 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x3ab3a886 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ace347c pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x3b1c5afc ps3_vuart_irq_setup +EXPORT_SYMBOL_GPL vmlinux 0x3b475cf6 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x3b655586 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x3b6a3dc8 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x3b7930d8 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x3b7d0b47 drop_cop +EXPORT_SYMBOL_GPL vmlinux 0x3b993167 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x3b99ba59 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x3bb9714d pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x3bb97944 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x3bd8d96f ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x3bdf9045 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x3bfd6564 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0x3c049ddc dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x3c2068d6 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c2f5f3f nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x3c329164 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x3c41eb87 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x3c51ea7c opal_leds_get_ind +EXPORT_SYMBOL_GPL vmlinux 0x3c5b3542 __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0x3c68f72a pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x3c88c6e4 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c9aae1f crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x3ca0f7dd netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd79814 pmf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x3cf69baf slice_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x3cf97de3 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x3d16b1bb tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x3d2d2936 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d5a43ae dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x3d612305 iommu_direction_to_tce_perm +EXPORT_SYMBOL_GPL vmlinux 0x3d93e4a1 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x3db6ec02 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL vmlinux 0x3dc8501e sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3ddafa04 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df650f7 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e7e3420 add_memory_resource +EXPORT_SYMBOL_GPL vmlinux 0x3e8c7632 pmf_register_irq_client +EXPORT_SYMBOL_GPL vmlinux 0x3e8d76d9 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x3e9e69f2 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x3ec98825 nvdimm_bus_add_poison +EXPORT_SYMBOL_GPL vmlinux 0x3ee46981 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f0f2de7 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x3f12ad2a devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x3f1cb321 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x3f387d9f sysfs_remove_device_from_node +EXPORT_SYMBOL_GPL vmlinux 0x3f40c8e2 cxl_pci_disable_device +EXPORT_SYMBOL_GPL vmlinux 0x3f795593 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3f99f896 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x3fa702e0 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3fabed30 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x3fad2f50 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x3fbf5135 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x3fddc3af page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL vmlinux 0x3fef7431 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x3ffea8ab pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x40022206 of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x400815a5 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x4016650f __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x401d5391 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x4020ff91 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4041bd9f __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x404a7036 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x404d2666 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x4059477f gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x40ab54c9 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40c394ac usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x40c4651b gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x40d13d41 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40dc4818 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f0ec79 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x40ff205e pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x413194b4 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x41322612 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x4145b805 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x415a3d41 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x4164b0eb regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x4169eb9c driver_register +EXPORT_SYMBOL_GPL vmlinux 0x417f6588 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x41c2a632 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x41cc1b24 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41dc644a ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x41ddb743 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x42029665 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x420a3842 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x420e9786 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x422ec896 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x423a4803 arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x4248c292 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x424b0c6e inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x424ccbc4 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x4258950b skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x425bfa33 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x42618d53 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426db5de balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x4270e7cc component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x429b7e7a driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x42f848e7 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x42fcbba1 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x4309df7a __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x431c5083 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x431f2f34 pm_genpd_syscore_poweron +EXPORT_SYMBOL_GPL vmlinux 0x432702e6 mm_iommu_mapped_inc +EXPORT_SYMBOL_GPL vmlinux 0x43309f66 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x434cc153 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x434f9412 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x43622f37 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x4379d301 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x437c8d2d devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x437e8b90 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x438f4b7c platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x43a46cb6 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43b5e073 cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43ee1ddb get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x44070d94 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x440ec2af crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x4423cad3 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x44300292 nvdimm_clear_from_poison_list +EXPORT_SYMBOL_GPL vmlinux 0x44475291 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x444e8f9c task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x4452d7cc thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x44586425 device_add +EXPORT_SYMBOL_GPL vmlinux 0x4480113e power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44a9e217 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44e55728 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x44f32f34 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x44fc3072 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x45041051 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x45315f97 __find_linux_pte_or_hugepte +EXPORT_SYMBOL_GPL vmlinux 0x453d188a regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x4562518e iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x456847c8 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x45847d97 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x45920efc cxl_cx4_setup_msi_irqs +EXPORT_SYMBOL_GPL vmlinux 0x45a4bc6a debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x45b1c912 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45c983c5 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x45d47304 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x45d90c6f debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x45ef4596 __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0x45f7f0d5 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x460caa68 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x461c4473 mm_iommu_preregistered +EXPORT_SYMBOL_GPL vmlinux 0x461dae9e task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x4626478e ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x4652cc31 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x46683010 blk_mq_reinit_tagset +EXPORT_SYMBOL_GPL vmlinux 0x4688c96a usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4688f953 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x468a2f93 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x46b33b05 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x46d58cff inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x46d8b7be pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x46d9f955 ps3_irq_plug_setup +EXPORT_SYMBOL_GPL vmlinux 0x46db07ea xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x470a1ce2 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x473c95c8 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x474155c1 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x4741db42 ps3av_set_audio_mode +EXPORT_SYMBOL_GPL vmlinux 0x47605ced security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4780f6fc __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x479caefc usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x47a7b416 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47acddea ps3_sys_manager_set_wol +EXPORT_SYMBOL_GPL vmlinux 0x47b666ef wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x47bd461d blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x47ce2633 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x47d06300 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x47d1e837 mpic_subsys +EXPORT_SYMBOL_GPL vmlinux 0x47f1874c srp_attach_transport +EXPORT_SYMBOL_GPL vmlinux 0x47f919fd __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x48118915 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x482afa62 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x483b06cb class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x484ad5c7 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x485b0d35 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x487250d0 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x489154f6 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x48b3f0d3 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x48ccd991 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x48ce2d73 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x48ddd187 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x49268a8e ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x4929b586 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x4930c7b0 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4931197d serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x4932bad7 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x49384d43 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x495951f5 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x495b33c6 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x495bb2de kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x4963c54d ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x4968f9eb udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49aa4877 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x49d305e5 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x49dfee29 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49fa49e6 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x49fed98a static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0x4a026413 mm_iommu_mapped_dec +EXPORT_SYMBOL_GPL vmlinux 0x4a11fb4d pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x4a1c6f58 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x4a356ab1 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x4a5c240b __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x4a5d1095 is_pnv_opal_msi +EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf +EXPORT_SYMBOL_GPL vmlinux 0x4aa36e15 eeh_pe_get_state +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4acc92fc of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x4accb9aa gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x4ad07569 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x4ad66445 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x4ad7ad71 spu_priv1_ops +EXPORT_SYMBOL_GPL vmlinux 0x4ae757a9 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x4ae8c705 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x4af11af8 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x4b038087 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x4b3aa824 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x4b509099 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x4b819315 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x4bb38b3e usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x4bbcda7a dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x4bed9ed5 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x4bf97201 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4c0b058a nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x4c18f773 ps3_os_area_set_rtc_diff +EXPORT_SYMBOL_GPL vmlinux 0x4c1a25e9 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x4c21f388 scom_controller +EXPORT_SYMBOL_GPL vmlinux 0x4c2248db of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x4c22789b regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4c3af12a dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x4c4cc9c8 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c6a3ac4 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4c6a69fa of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x4c6eb22f usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c938b9c put_filp +EXPORT_SYMBOL_GPL vmlinux 0x4ca81956 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x4ca8ba5d blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x4cb43683 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x4cbc3594 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x4ce07267 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x4ce1d80a rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x4cf6144d ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d14c1cb dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x4d25e7f5 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x4d303b8f usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x4d3b5911 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4d3d0a2c ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x4d584743 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x4d72a42f wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x4d741e80 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x4d87abc8 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x4d915ddf __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x4d98a829 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x4da8e51d handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x4dc6d3ad remove_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de94fab mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x4df5b6b0 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x4e0a22f5 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4e0dd614 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e3f11c0 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4e6f6f29 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x4e83fb5c pmf_do_functions +EXPORT_SYMBOL_GPL vmlinux 0x4e8b1cac pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x4e999a94 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x4eb677a2 cxl_afu_get +EXPORT_SYMBOL_GPL vmlinux 0x4ee8297e serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x4ef3431b of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f022922 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4f282562 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f338fbf usb_string +EXPORT_SYMBOL_GPL vmlinux 0x4f43739e bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x4f45a1e1 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x4f5b8b27 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f75f8c6 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x4fad1ac6 mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4fcb624c fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x4fd093ea of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5026d2c7 spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0x505dd5bf anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x507596d8 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x5077e771 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50c3b563 mm_iommu_get +EXPORT_SYMBOL_GPL vmlinux 0x50d0756a bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x50ff51c9 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x51018a04 devm_nsio_disable +EXPORT_SYMBOL_GPL vmlinux 0x51036bfe da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x510ad7fa xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x5126a06f pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x5141648a init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x51467922 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x514767f1 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x51811f94 wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5181b612 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x51857a74 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5187fcdb raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x519613bf device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock +EXPORT_SYMBOL_GPL vmlinux 0x51b96438 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x51d8e48c __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x51deff75 security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0x51e3f2c8 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x51ec17c1 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x5205e64d disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x522b440b __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x52367383 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x526790f9 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x528a497f kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x528b1ab6 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x52bc03ab iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x52e2cb5e devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x52e7f842 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x52f539a4 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x5300b072 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x530942ba blk_poll +EXPORT_SYMBOL_GPL vmlinux 0x532b26f4 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x533b1881 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x533b3ec5 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x53413a1e pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x536a35e0 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x538038dd usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x53999d51 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x53ce15dd led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x53d1ced8 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x53d56d66 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x53fa3dbe ps3_vuart_read_async +EXPORT_SYMBOL_GPL vmlinux 0x5400fe4d smu_get_ofdev +EXPORT_SYMBOL_GPL vmlinux 0x540507ce regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x5409db9a cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x540bd693 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x54185d44 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x5426908c inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x5426ed6d mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0x542ed7e6 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x5432f698 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x5456c17e hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x546108e9 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq +EXPORT_SYMBOL_GPL vmlinux 0x5473d73b scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x547bebe5 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x547d1c87 __pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x549da29d security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x54bfecc5 ps3_mmio_region_create +EXPORT_SYMBOL_GPL vmlinux 0x54ceacb5 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x54cf2fb1 cpu_remove_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54dc39b0 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x54e55e7b pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x551b8237 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x5522906c pm_generic_resume +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 0x554673b7 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x5561689b ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x55723daf da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x5579a8e2 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x557d51e6 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x5588879e kvmppc_entry_trampoline +EXPORT_SYMBOL_GPL vmlinux 0x55b2723f cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x55c81ac8 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x55dc7440 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x55e28d17 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x55eb5fd1 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f51ef3 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x560aa1db opal_tpo_write +EXPORT_SYMBOL_GPL vmlinux 0x5612037e shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x5616c7fd sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x561b91fa alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x561fc8dc input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5658ca2c crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x567c50cc inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x567f2b4c usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x56814d6c __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x5682e2c8 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x568b56cf do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x56a64c8f power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x56b09619 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x56c0a7d0 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x56cb0a72 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e52102 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x56e5760c sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56eed62c device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x56f44e33 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x5731bf2b tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x5735c227 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x5746caee pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x575d2206 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x57871109 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x578c2ff3 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a5fd49 eeh_pe_inject_err +EXPORT_SYMBOL_GPL vmlinux 0x57b43705 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57e18314 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x57f39d57 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x57fab54b usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x58016c08 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x5819a7f2 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x58584334 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x58636e2d nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x589705b6 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58a2e672 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x58cdec9b xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x58de440f wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x58fcb2b2 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x59070698 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x5916d7ba debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x591e883a is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x59217fce sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x59322752 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x5998a751 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x59ae0855 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59e8b82e synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5a06a1c5 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x5a0f1ef1 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x5a1bbc01 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a7ef46f of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x5a80356a pcibios_claim_one_bus +EXPORT_SYMBOL_GPL vmlinux 0x5aa7ea11 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x5aabe693 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x5aaf1701 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x5ab8479f tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x5ad67307 eeh_dev_open +EXPORT_SYMBOL_GPL vmlinux 0x5ade74d4 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x5aeef7dc pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x5b4bc86e fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x5b5c1fa3 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5b70355a iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x5b7bfa11 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x5b8588e6 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x5b9d087e ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bfab0ae of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x5c016e92 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x5c1bb602 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x5c348c5e crypto_has_skcipher2 +EXPORT_SYMBOL_GPL vmlinux 0x5c46f3ad platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x5c47b1f8 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x5c502193 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x5c59e5ee usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c601446 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x5c730630 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x5c7ad564 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cc45eac pcibios_finish_adding_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cf60d63 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x5cfb7fcd dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d23030e exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x5d353f77 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x5d3894b0 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x5d66a247 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x5d7c7163 pci_find_bus_by_node +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dd74a0b regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x5de027db udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5de11118 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x5df9815c sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x5df99cca usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x5e0cfa49 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x5e0d4575 of_display_timings_exist +EXPORT_SYMBOL_GPL vmlinux 0x5e0e55af device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e6032a3 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5e63f737 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x5e76141f class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5e769986 ps3_os_area_get_av_multi_out +EXPORT_SYMBOL_GPL vmlinux 0x5e8931b6 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x5e9e4f5b shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x5eae135b rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x5eb05cae devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x5ec1bbd6 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x5ee7542e reserve_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5f023e2b ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x5f224a7f param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x5f2ccec0 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x5f2d19a5 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x5f38bde3 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x5f516a79 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x5f8b125a crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x5fae757f scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x5fbad126 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x5fe4ec2f nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x5fe8e103 security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0x6006d72c n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x60089544 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x6011b400 mmu_partition_table_set_entry +EXPORT_SYMBOL_GPL vmlinux 0x601eff78 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x60467b06 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x6082a24b serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x609223c9 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x6095f7be event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a324e6 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60b2ab5a ref_module +EXPORT_SYMBOL_GPL vmlinux 0x60c3bd13 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x60cceaca usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x60e47561 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x614f2591 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x61567826 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x61a2c590 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x61ac363e usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x61c2bd5f mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x61deb4c3 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x62080f02 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x62145271 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x6214e428 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x6220e26e device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x622664c2 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62423826 of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0x62562640 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x625b682f regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x625bba7f ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x6280978d bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x628fbef1 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x62b281b0 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x62b89c42 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x62bbb67f pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x62d1c0a8 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x62daaf16 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x62fb76f2 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x62fbb9cf fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x63078773 pmac_i2c_get_dev_addr +EXPORT_SYMBOL_GPL vmlinux 0x6307d8b5 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x6307f9b0 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x630c1d47 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x630fbb15 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x63271463 spu_init_channels +EXPORT_SYMBOL_GPL vmlinux 0x63418c85 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x634ec9bd da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x636606a3 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x63a2675d pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x63a62230 mmu_psize_defs +EXPORT_SYMBOL_GPL vmlinux 0x63a9e3bf vfs_writef +EXPORT_SYMBOL_GPL vmlinux 0x63d50fa1 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x63d56bc1 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x63ebd681 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x63fc340b cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x64712323 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x64b5efcf opal_int_set_mfrr +EXPORT_SYMBOL_GPL vmlinux 0x64c53c27 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x64f38a0a kvm_release_hpt +EXPORT_SYMBOL_GPL vmlinux 0x651086a9 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x6514dd74 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x651625c0 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x6521feb4 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x653bfaa7 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x653c712b pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x65407f30 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x655199e4 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x6553b156 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x65949666 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6598cbb9 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x659bd5a5 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x65baa8f1 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65cd3b68 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x65d1fad6 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x65de5e7b pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x65f0ae29 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6635f3e6 srp_stop_rport_timers +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x66474c8e fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x66628235 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x6670363e debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x667a812c ps3av_set_video_mode +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66872a0a pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x66a78434 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x66c397f7 nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66d6139d tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66e43b69 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x670318f2 cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x670be9de blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x672b31f7 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x6780f756 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x6782af4c ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x67849bb5 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x678b8cbb kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67b343de param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x67b87f45 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x67efc4b9 of_node_to_nid +EXPORT_SYMBOL_GPL vmlinux 0x68088584 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x68096210 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x68206de4 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x6856a3a0 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x685cdfc1 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x685ced88 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x686d5bb9 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x6883fa6e ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x68866a89 user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x68967171 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x6897ab23 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x68a4ce2b eeh_pe_reset +EXPORT_SYMBOL_GPL vmlinux 0x68bdd35c __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x68c14a31 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x68ec3909 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x68f29f86 pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x68f4deff srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x68feac78 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x690aa110 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x690d6ba4 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x6910fd2c usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x691b6026 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x6920b26f virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x6925ce07 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x696aa809 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x696ed28d iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x69790ef6 __init_new_context +EXPORT_SYMBOL_GPL vmlinux 0x697a34b6 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x697cbbb4 threads_per_core +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x698ab6e8 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x69aac354 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x69afe2da dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x69b06cd5 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x69db18f0 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x69db1a54 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x69ec4a4d rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x69f06df6 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x69fc719c virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x6a0a6603 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a187b93 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6ac0383e regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x6acb8d84 ppc64_caches +EXPORT_SYMBOL_GPL vmlinux 0x6ad29ff6 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x6ad4e590 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x6ad9769b usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x6b0b709f fb_sys_write +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b31fac3 ps3_sys_manager_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x6b36633b of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0x6b3d7d35 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x6b711136 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6bbbecd0 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c56c025 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x6c570238 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x6c5b2fe1 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x6c5c5455 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x6c6dcebe __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x6c748304 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c973a14 pcibios_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x6c9ffc39 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x6ca3c85e blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ccfc2b8 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cd85585 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6cf8a3e0 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x6d08883c pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x6d0c6724 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x6d28f7ac tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x6d2b08c0 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d38ddb5 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x6d545e1b skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x6d631468 nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x6d724fbf fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d8cfe5b vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x6d9968c0 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x6db77e4b crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x6dbd2afe ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6dc1399c dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x6df1ecc2 pmf_call_one +EXPORT_SYMBOL_GPL vmlinux 0x6df3e325 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e159b69 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x6e23a7f2 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x6e247dfb gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x6e2871b5 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x6e379526 kernstart_addr +EXPORT_SYMBOL_GPL vmlinux 0x6e3b2b3b ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x6e3c12be devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e623522 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x6e63d1d0 eeh_iommu_group_to_pe +EXPORT_SYMBOL_GPL vmlinux 0x6e63f549 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6e67c746 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e8000ec register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6ead18ad ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x6ed8f9f5 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x6edaa430 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x6edef0ea rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x6f0389d5 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6f11d44c fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f317b2d perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x6f3aabc7 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x6f47959c regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x6f5fb917 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x6f6042d9 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x6f6f83ae __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x6f7baacf debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x6f8ae77f key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x6f902458 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x6f951149 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x6f963578 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x6f9fe216 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6fe4acf7 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x701302e0 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x70149d31 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x7021b3d9 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x7024396e pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x7044301d pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x704a9ec7 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x704fd82c uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x70513d98 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x7055175c skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x705c9883 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x705db334 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x709ec9c9 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x709edd10 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x70ab9c36 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time +EXPORT_SYMBOL_GPL vmlinux 0x70ca317e gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d6dd43 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x70e577f1 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x70ef6c56 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x714332f7 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x716e17aa dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x716fc773 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x71879090 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x718c8105 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x718d6c89 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x71924b23 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x71b6baff of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x71ba5eb0 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x71c68dcc rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x71ccac24 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x71ce0d04 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x71cf988f fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x71d3cc86 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71e156df sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x71eebdfa crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x723b9801 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7286fd89 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x72893df0 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x72a059a2 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x72ccdf44 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x72d0c602 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x72d51e43 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x72e79efd fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x72ede252 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x730598af ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x73078ad7 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x730e8dd5 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x731e1a26 pmf_get_function +EXPORT_SYMBOL_GPL vmlinux 0x7324de8e perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x73352155 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x736fb5c3 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x738c1282 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x739aa1a1 pmac_i2c_setmode +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73ad789d tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x73b3924e digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c5deb2 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73d59998 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73ebb219 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x74032832 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x7403fa89 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x74110188 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x7412a834 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x742fd0c7 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x744b2594 spi_flash_read +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x74681195 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x74710b9e crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x7474647a tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x74793dd0 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x74801389 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74cd244f regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x74f39d9f pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x74f64efb regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x74fee7a0 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x751733a0 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x752d31d3 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0x75329035 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x75431abf udp6_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0x7545e91a dm_use_blk_mq +EXPORT_SYMBOL_GPL vmlinux 0x7574bf8b usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x75845db7 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x75872cb4 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x758a1d7d l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x758df587 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x759b31c8 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x75a7a938 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x75aec7c9 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x75c9d8c3 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75d17d0b pmac_i2c_open +EXPORT_SYMBOL_GPL vmlinux 0x75d44c06 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x75de31dc device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x75def0dd skb_gso_validate_mtu +EXPORT_SYMBOL_GPL vmlinux 0x75df1428 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x75eb4845 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x75f1be46 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x75f2a044 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x75fa8e8b __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x7601a45c serial8250_em485_init +EXPORT_SYMBOL_GPL vmlinux 0x760ee683 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x761c3b89 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x761ea9df rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x761ed6ec hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x762c0858 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x7655a33b dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x765f24a4 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x766b336a dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x769a88ad iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0x76aa928b sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x76b5a884 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x76ba6782 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x76c05458 iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x76f32b01 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7705c4e7 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x77120759 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x77149484 hash_page_mm +EXPORT_SYMBOL_GPL vmlinux 0x771f9992 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x77401dbd vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x77437593 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x7747cc07 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x775653c9 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x775bdc66 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x775edfb5 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x77616969 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x77873202 security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77d729ab spu_switch_notify +EXPORT_SYMBOL_GPL vmlinux 0x77df88dc devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x782ca570 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x7840005a blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x78596e5d br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785c81f1 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x786179a3 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x78aafc63 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78c4b74d pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x793bd8d0 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x796eb529 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x7986f2ec tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x799e41ef bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x79c14131 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x7a0723c9 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7a092498 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a7f33d6 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a988142 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x7aab3c8d ps3_system_bus_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x7aaf8d9c relay_open +EXPORT_SYMBOL_GPL vmlinux 0x7acc4579 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x7ae03668 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x7afa7f05 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7b0856df mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x7b0bb73f __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b20418e pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x7b23dbe6 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x7b2c8dc1 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7b2d7a08 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x7b61a444 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0x7b966c7f usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7b9b49e6 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x7ba5f923 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x7bc81d78 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x7bda8e8c pmac_low_i2c_lock +EXPORT_SYMBOL_GPL vmlinux 0x7bf0684d ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x7bf97573 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x7c102a5a crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x7c1fe80b led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7c37bc89 pseries_ioei_notifier_list +EXPORT_SYMBOL_GPL vmlinux 0x7c5f0b34 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7c7c6872 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x7cb3e006 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x7cc6b7aa xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7cc904ee inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x7cce0a9d inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x7cd06eba tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cdaaf53 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cf28f8c rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x7cf5de87 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d020381 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x7d0a8e8c pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x7d1a8b1e crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7d2533ad ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x7d4505e4 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7d4bddbe usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d630519 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x7d77d95b crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x7d906221 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7da3a784 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7db11e1c l3mdev_get_rt6_dst +EXPORT_SYMBOL_GPL vmlinux 0x7db1db20 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x7db43551 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x7dc1e388 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x7dd8fc41 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7def9b28 pci_add_device_node_info +EXPORT_SYMBOL_GPL vmlinux 0x7e0bfae4 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x7e152c73 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7e1e487b sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x7e2675f1 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7e4b6d8c nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x7e4e1796 kvmppc_tce_validate +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e6c1dd0 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7e7fff0f __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7ea5e3ce aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7ea64ea4 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x7ea92896 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x7edebeff hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x7ee18079 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x7f008202 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7f0e350b blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x7f1a7907 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x7f2f6d80 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x7f34da1b ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x7f502aef dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x7f52c522 ps3av_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x7f5d07a0 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x7f69c568 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x7f728692 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f953f99 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x7fb661ed rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x7fb97635 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x7fba451c tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fd006e7 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7feb14ec find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fed0684 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7ffcfd30 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x802bbf1c spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x80507f72 ps3av_audio_mute_analog +EXPORT_SYMBOL_GPL vmlinux 0x8054c753 udp4_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0x805a0779 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x807d8a83 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x8088be99 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x808e8bc9 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80a90b81 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x80aa5cca devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x80aeb30d unregister_spu_syscalls +EXPORT_SYMBOL_GPL vmlinux 0x80c44347 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80dab88a usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x80dd0d6b ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x810e5fa0 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x81105bc5 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811a183a srp_rport_add +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x812082ef cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x8123057b ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x8147156a __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x814f93c4 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x8152e111 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8178164f devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x8186bc07 kvmppc_h_get_tce +EXPORT_SYMBOL_GPL vmlinux 0x81ce0668 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x81fdd243 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x820400a8 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x8214dc85 scom_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x82154404 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x8231a389 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x826270d4 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x826d005c sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x82a0b10b __class_create +EXPORT_SYMBOL_GPL vmlinux 0x82a718fc stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x82a78d92 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x82c6b434 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82df150e iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x82fceb71 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x830a6c96 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x830c5c3f ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x831bda08 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x83314c11 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x833427bc badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x833b1c9e arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x83877eda device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83c7c397 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x83cd6a5c mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x83d15a0e scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x83d84f48 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x83f4ca5a devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x83f92ab1 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x840daeb1 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x8430b049 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x84460474 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x8451b853 kvmppc_host_rm_ops_hv +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x84acf380 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84fe38e0 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x8501df67 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x85162b6c console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x85377dd7 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x855e63d3 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x8568f01b mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x856b71fa rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x857fae88 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x85980368 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x85a28fec ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x85a7667b __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x85b01567 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x85b4b238 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85ce829c kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x85dad5a8 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x85e0a4a5 fb_sys_read +EXPORT_SYMBOL_GPL vmlinux 0x85fdf77d kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x862348c2 kvm_alloc_hpt +EXPORT_SYMBOL_GPL vmlinux 0x86410d0a blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x86471351 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x865478ad kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x867bb0f5 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x8696a073 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x869e16d6 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x86c2992c debugfs_use_file_start +EXPORT_SYMBOL_GPL vmlinux 0x86c483e3 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x86d24c40 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x86ed5dd0 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu +EXPORT_SYMBOL_GPL vmlinux 0x870c230e vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x87177aab __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x871d178c debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x8724a2a8 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x87474109 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x875ad0c4 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x87841c1e pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x87b13134 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x87b5630b ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x87e1470b get_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0x8804af3d usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x880b6fee usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88375c55 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x8838b8d5 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x884c249d pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x88561660 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x8867bd8f wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x8868e250 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x887716d4 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x88777fdb pnv_cxl_phb_set_peer_afu +EXPORT_SYMBOL_GPL vmlinux 0x887dcf25 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x8885c446 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x8886ec72 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88bebcd3 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x88cb2c11 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x88d39d57 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x88d79eae vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x88f8316d md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x89188a7c cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x891b18eb devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x8982654b kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89beb7b5 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x89c2aaa5 _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x89dbf5b0 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x89e1efbe usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x89e5f656 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x89f4dd70 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x8a078c56 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8a07c8e6 of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x8a26cc9b ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x8a28cd4c bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x8a5247e9 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a6cde60 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x8a707503 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x8a8de545 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x8aaffc2c tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8afc68f6 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x8b08a7b4 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x8b2394c7 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x8b6b2b78 pcibios_unmap_io_space +EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b8f7c72 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x8b9e2873 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x8ba34544 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x8baadc9c gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8bbae3bb inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x8bfaceb5 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c39215e of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c6b8aac virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c8db0b7 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x8ca1a3e8 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8cc81d52 __dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x8cedf39a platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x8d009f38 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x8d1031ee pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x8d1f37cb rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d7bef1a __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x8d85367f smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x8d98d663 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x8d99fb4c nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x8db1f7f1 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x8dbf5a20 kvmppc_hv_entry_trampoline +EXPORT_SYMBOL_GPL vmlinux 0x8dcbc9d6 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x8de5b036 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x8dfd5821 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8e0ce770 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x8e2437da power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x8e28644a ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x8e2cdee5 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e3714ae blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x8e429395 arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x8e627436 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x8e6c3d74 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x8ea30f54 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x8ea72fd2 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x8eabc26a regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x8ecd6b3d led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x8eeca4e0 security_mmap_file +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f139e06 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x8f1ad433 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x8f1adf4c percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x8f4b4d14 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f6eefb2 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x8f7fbd0e mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8f8e0b6c blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x8fbae639 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x8fbecfbc pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x8fcdf3a0 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x8fd74589 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x8fd840cd percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0x8fe23bf4 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x90090270 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x904a7629 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x906bac15 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x9077d5ea usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x90815c25 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x9084c8b1 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x908520ba blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x908e992e eeh_pe_configure +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90bedbd5 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x90d15ed0 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x90ea788a platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x90fd4552 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x91073074 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x911d3004 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x914b31c9 vfs_readf +EXPORT_SYMBOL_GPL vmlinux 0x915fe3b5 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x9162dd63 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x919bf850 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x91b5ed62 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x91b7039a ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x91b870ae irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c7a68f cs47l24_patch +EXPORT_SYMBOL_GPL vmlinux 0x91ea7a75 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x91fa325d adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x9201f584 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x921e6b8d kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x9224af36 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x9227811b flush_fp_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x922f4a35 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x9239f128 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x9242bb80 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x9247520c ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x924e9a90 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x9260f67b scom_map_device +EXPORT_SYMBOL_GPL vmlinux 0x927aec14 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x92844ce4 realmode_pfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x928b7b5c of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x92aac0c2 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x92ad741f __class_register +EXPORT_SYMBOL_GPL vmlinux 0x92b29396 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x92c1ae8f do_truncate +EXPORT_SYMBOL_GPL vmlinux 0x92c613e4 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92ffe517 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x930f13f3 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x93163cbd od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x932d62a3 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x93311080 opal_flash_read +EXPORT_SYMBOL_GPL vmlinux 0x933491d5 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x9361d821 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x93696b7a device_del +EXPORT_SYMBOL_GPL vmlinux 0x9375f78e device_rename +EXPORT_SYMBOL_GPL vmlinux 0x937e318d tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x93800dbb cpu_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x93922111 get_compat_bpf_fprog +EXPORT_SYMBOL_GPL vmlinux 0x939d7094 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x93acd53d msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x93fff9cc power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x94003124 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9429fe13 ps3_vuart_cancel_async +EXPORT_SYMBOL_GPL vmlinux 0x942f46f4 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x94313696 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x947b3781 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x9482d0ad cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94d972b7 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x94dee574 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x95436f9d fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x954a35e2 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x9558a2af register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x9578b968 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x958eda97 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x95b98e7c __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95de6a18 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x96248e6c hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x962fd643 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x96537cd1 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96563246 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x965a78d5 threads_core_mask +EXPORT_SYMBOL_GPL vmlinux 0x9677ef20 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x96b801a9 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x96d9166a irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x96e0d408 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x96ed5361 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x97058293 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x9709baf9 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x970bc822 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x970c32e6 of_get_dma_window +EXPORT_SYMBOL_GPL vmlinux 0x972b43ec regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x9735f061 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x97947307 extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x97b91f6b perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x97c95df3 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97efb0a1 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x98016535 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x9801ed0a trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x982cd486 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x982fe4d4 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x988b7f4d to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x989c32c5 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x98a02a70 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x98a774b2 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x98c9e9cb rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x98f3dbf4 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x98f9f73d fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x99368d65 kvmppc_update_rmap_change +EXPORT_SYMBOL_GPL vmlinux 0x993cf85e wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x994572c4 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x994ba25a posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x99531ebd dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x9984274a arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0x9987e6e9 opal_get_sensor_data +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x998efeac subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x9995b539 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99bab55f blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x99c6f6fd mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x99c9fe17 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x99d990e3 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x99ff8d08 opal_invalid_call +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a1bdfdf pnv_pci_on_cxl_phb +EXPORT_SYMBOL_GPL vmlinux 0x9a29a121 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x9a2f2fa2 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x9a42ac9a ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x9a5dd5c6 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x9a6336b6 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x9a8171c8 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9aad6540 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ac158f1 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x9ad0ec6f copro_flush_all_slbs +EXPORT_SYMBOL_GPL vmlinux 0x9ad3e633 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x9ad4eedf addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x9adf08c3 mmu_linear_psize +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9afcecf4 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x9b01fc8e __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x9b02b669 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x9b127fdd transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x9b5256ea phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9b786057 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x9b86b589 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x9b9d50ea gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bcc5f26 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9bd05e52 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bf3f8b2 open_check_o_direct +EXPORT_SYMBOL_GPL vmlinux 0x9bfb9eaa cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x9bffe407 wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x9c26d877 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x9c2ea884 eeh_dev_check_failure +EXPORT_SYMBOL_GPL vmlinux 0x9c3c4098 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x9c44c8ab blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x9c5784f1 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9c73472c usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x9c9a5afe of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x9c9dc01e mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ccccf78 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x9cd27a60 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x9d162916 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x9d466952 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x9d52388d usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x9d6e9700 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x9d74e624 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x9d84ea8d trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x9d887fb8 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x9da5b81a sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x9dad4a5d pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x9db0f5da device_reset +EXPORT_SYMBOL_GPL vmlinux 0x9dc55667 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x9def20ee regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x9dfe82bf device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x9e0f5d19 security_path_link +EXPORT_SYMBOL_GPL vmlinux 0x9e1ca044 l3mdev_get_saddr6 +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e70aa98 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x9ea896af nl_table +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ef51f3c kvmppc_do_h_remove +EXPORT_SYMBOL_GPL vmlinux 0x9f12c998 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x9f1653e1 store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0x9f421df2 __of_genpd_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x9f4a305e devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x9f5dd702 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x9f8137d9 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x9f931b3e cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x9fbea2db register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fef3af4 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xa0221014 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa080e15f uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xa08a28af pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xa0905b21 device_move +EXPORT_SYMBOL_GPL vmlinux 0xa096918e regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xa0a27fff pci_address_to_pio +EXPORT_SYMBOL_GPL vmlinux 0xa0bbe058 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa0c6dc1b __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa0cb3db4 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0xa0e24ed2 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xa0f7455a l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xa1238444 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa1392af0 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xa147acb2 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0xa16ab34a ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xa1794478 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xa1836a74 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1c8ec82 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xa1e3a23d handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa22d1d9f uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xa23567e0 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xa24f95cf of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xa2587a6f usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa294216d spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0xa2a3176b of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0xa2b0c6fa skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2c1a6c3 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xa2c41b44 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xa2cbeb23 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xa2d64ce5 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xa2da385f __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xa32d096a metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xa34e40f3 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xa36511f3 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xa379e501 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xa3804f9c ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa391eb16 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a19133 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range +EXPORT_SYMBOL_GPL vmlinux 0xa3b3b623 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c74c23 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xa3cb6116 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xa3cf7501 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xa3d2b10d setfl +EXPORT_SYMBOL_GPL vmlinux 0xa3d50dd2 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3f8f119 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xa41649ae i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xa42085a1 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xa426436f bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0xa42a9691 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa489491f fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xa4a46f4e pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xa4b56b8b d_walk +EXPORT_SYMBOL_GPL vmlinux 0xa4ca65b6 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0xa4d6f3cf bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xa4dc6b79 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xa4f0796c of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xa527d025 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0xa54efea2 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa561e4ab pcibios_scan_phb +EXPORT_SYMBOL_GPL vmlinux 0xa57a52df fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xa58d1032 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa5960251 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xa5a26124 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq +EXPORT_SYMBOL_GPL vmlinux 0xa5b8aa2f kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xa5c40646 ps3_gpu_mutex +EXPORT_SYMBOL_GPL vmlinux 0xa5e71738 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5efe460 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xa5fcc634 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xa6040520 split_page +EXPORT_SYMBOL_GPL vmlinux 0xa620702c find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa639a1b8 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xa6410aae tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xa6533e26 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xa66318af __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xa66b0630 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa66c38dd input_class +EXPORT_SYMBOL_GPL vmlinux 0xa69257b6 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xa6951ecb metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa69b8035 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xa6a14c75 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6c374c3 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6eded6c opal_xscom_read +EXPORT_SYMBOL_GPL vmlinux 0xa6fbb112 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xa7025d68 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xa70d375d iommu_flush_tce +EXPORT_SYMBOL_GPL vmlinux 0xa7181144 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xa7215606 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xa721bc3f opal_rtc_write +EXPORT_SYMBOL_GPL vmlinux 0xa749eb43 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0xa75e48e0 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa75e9b58 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xa77269c2 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xa78de6f7 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xa7a0acbe devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xa7a6dd5a rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0xa7b65773 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa7c1d3f0 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xa7cdd8ca wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0xa8057c19 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0xa805d14f perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa84d717f tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa85d176d device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xa874f92c device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xa87bfd09 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xa89884e9 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0xa8ac92e1 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xa8b17e12 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8bfabb5 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xa8c5a19d serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xa8cb92f5 eeh_pe_set_option +EXPORT_SYMBOL_GPL vmlinux 0xa8d703ef spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xa90042a2 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xa9049ca0 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa916d59c crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa9358595 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa948f15f fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xa94f591e to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xa98508f8 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa98cdb36 ps3_get_firmware_version +EXPORT_SYMBOL_GPL vmlinux 0xa98e2124 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xa9aa1b00 opal_poll_events +EXPORT_SYMBOL_GPL vmlinux 0xa9b02cc4 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xa9ce341e usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa059985 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xaa071ff2 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0xaa082154 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xaa08c996 __of_genpd_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xaa23868f rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xaa744d2d of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0xaa77eaff debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xaa8ff734 xts_crypt +EXPORT_SYMBOL_GPL vmlinux 0xaaa0e036 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xaaa26ca2 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaabe4da6 opal_write_oppanel_async +EXPORT_SYMBOL_GPL vmlinux 0xaabf31e3 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xaaca025e platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xab0855a1 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xab098303 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xab0fef29 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xab12c1df dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xab168350 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xab297168 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab2b243d ps3_irq_plug_destroy +EXPORT_SYMBOL_GPL vmlinux 0xab4b7f28 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab850a4d shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0xab871f38 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0xab8d5af7 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0xaba2db15 trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xaba2e14b attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaba39396 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xabb4260a serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xabb5de91 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabcb910d devres_release +EXPORT_SYMBOL_GPL vmlinux 0xabd7135a dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xabdb26cd ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xabe99bdc ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xac55e297 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0xac631418 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xac67b816 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xac8b8854 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xacbdb2fa regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xaccd3802 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xace8acff pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xace99944 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xacfe997e powerpc_firmware_features +EXPORT_SYMBOL_GPL vmlinux 0xacfea470 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad0644d0 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xad127414 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xad1a99f9 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xad2cc165 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xad5b6567 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xad6bbcc4 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xada029fd usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xada09cae blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadb6809c sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xaddf9d70 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xadfce401 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xadfd8893 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xae2ac038 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xae3521fa __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xae3e8fe5 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xae473029 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xae4ef454 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xae6373cd user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xae654d97 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6eaf93 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae7c46bb __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all +EXPORT_SYMBOL_GPL vmlinux 0xae96fff0 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xaec9921f hash_page +EXPORT_SYMBOL_GPL vmlinux 0xaed80c3f pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xaedfe174 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xaef87f1f device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xaf1427fe bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0xaf279112 opal_leds_set_ind +EXPORT_SYMBOL_GPL vmlinux 0xaf31fe8b regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xaf6640c3 inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0xaf693817 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0xaf6a258d platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xaf87ed99 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xaf88e8c9 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xaf89101b device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xaf959dfd regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xafa576f2 relay_close +EXPORT_SYMBOL_GPL vmlinux 0xafbe6c9e kvmppc_hwrng_present +EXPORT_SYMBOL_GPL vmlinux 0xafc8b4e3 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xafce402d led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb0189ceb unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xb01a4604 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xb01e0256 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xb02e08f2 vmalloc_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xb0365664 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xb03ed35f iommu_tce_clear_param_check +EXPORT_SYMBOL_GPL vmlinux 0xb05ac2ab pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xb07dbb99 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xb08caaef ping_err +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bf87a9 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xb0c78e01 pcibios_map_io_space +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0e16c9c pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xb0eb1d1b sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xb0f71ec7 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0xb0fbfbe2 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xb120e806 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb1429cf3 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xb15bcd6f gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb198d4da dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1c80e65 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xb1cf3c86 cbe_spu_info +EXPORT_SYMBOL_GPL vmlinux 0xb1d6d9dc da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xb1de9d0e sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xb1dec4aa iommu_take_ownership +EXPORT_SYMBOL_GPL vmlinux 0xb1e147cf fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb21bc15c securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb22429e6 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0xb2242e6b default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xb254489c posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb263f095 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb2776a1d evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xb27e1644 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xb28f546c get_empty_filp +EXPORT_SYMBOL_GPL vmlinux 0xb2a3f55c unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xb2ab6d25 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xb2ad9954 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xb2bf6569 of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0xb2c89730 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xb2ca3f2d gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xb2cfad51 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb33dad00 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xb3401e18 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb358194d gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xb365b9ca regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xb36c924f blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xb3791fcd skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xb38ba999 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xb3a30811 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xb3e232b7 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xb404c5ce region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xb405868a pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xb41acb70 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xb4227851 ps3_system_bus_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb455b210 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xb45dc36a pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xb47fc6c6 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns +EXPORT_SYMBOL_GPL vmlinux 0xb4954ed3 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xb496af9a usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xb4aa901a tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4bfcea0 pmac_i2c_match_adapter +EXPORT_SYMBOL_GPL vmlinux 0xb4e24a1c sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xb4e73feb da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4f2a324 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xb50be26f init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xb50dba7f gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb532e1d4 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb5441c81 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb545d6fc blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb58f7011 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5a1b360 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xb5a672cc pmf_unregister_irq_client +EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5c062f2 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xb5c671b8 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0xb5c8edf4 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0xb5d49d38 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xb5ecd066 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq +EXPORT_SYMBOL_GPL vmlinux 0xb60b9f5a rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb634daa9 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xb63bfcb8 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0xb643c250 xics_wake_cpu +EXPORT_SYMBOL_GPL vmlinux 0xb6511bcd sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xb665358c thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb686bd42 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6b2e8b0 pci_remove_device_node_info +EXPORT_SYMBOL_GPL vmlinux 0xb6bc007a spu_sys_callback +EXPORT_SYMBOL_GPL vmlinux 0xb6bca4bc vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xb6ca0411 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xb7155b7d regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xb722f112 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xb72da8fc iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xb73e747b sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xb74c7d5d i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xb754b485 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xb767e396 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xb7722c48 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0xb7956921 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xb7a0d474 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xb7a2b002 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xb7b22b54 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7c826a9 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xb7cd326a blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0xb7f40a26 opal_message_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb81a7607 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xb820ea1c regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xb82b2e46 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xb8465933 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0xb84b1aae ps3_event_receive_port_setup +EXPORT_SYMBOL_GPL vmlinux 0xb866181b spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8c69b1f ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8e12ac9 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xb8e554aa xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xb8e7c4f1 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xb8e9bdc4 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb8ea9d27 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb90bc9f7 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xb91604a4 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xb92d9203 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xb936d6e0 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb94de068 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb9539f99 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb9769a79 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0xb996b46f cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xb9986732 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xb99a5d78 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9bb5a6e sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xb9be9916 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0xb9c016bb wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d47fae device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xb9dfd865 find_module +EXPORT_SYMBOL_GPL vmlinux 0xb9fe2d0d spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xba133d47 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xba158769 rtas_cancel_event_scan +EXPORT_SYMBOL_GPL vmlinux 0xba1dca9c fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xba2103d3 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba553e25 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xba620ce4 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xba661e35 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xba6de215 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xba77061a cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xba9c997f sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xbab98400 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbacba6c7 component_add +EXPORT_SYMBOL_GPL vmlinux 0xbaec341c pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb05e9bb of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0xbb08968d crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb11caa1 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0xbb1370c2 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xbb1a2ad6 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xbb2f59f7 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xbb2fafc7 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0xbb3a0ee1 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xbb48d439 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xbb49aafe spu_64k_pages_available +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb729dbc devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xbb762c22 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0xbb7a7cac subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xbb80d24b public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xbb8ce537 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xbb8d8fed nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xbb9b56ab crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xbbc6fca4 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0xbbf89d9f static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0xbbfc7780 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xbc3586d0 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xbc3f9f5c of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0xbc407fcd attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xbc582145 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0xbc5de4d8 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc79a4b5 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xbc7ede9d of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0xbc8128ad devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0xbc9a5578 devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcc3d1d2 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcd59ed8 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce32067 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xbceadeb2 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xbced1f83 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcf2653c fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xbd136ac5 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd582af2 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xbd6f0ff9 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xbd76c45c xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xbd8999b9 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xbda34570 ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbde8dc00 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xbe0c1f61 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe251431 srp_rport_del +EXPORT_SYMBOL_GPL vmlinux 0xbe3d6c1d invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xbe44fd75 mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbe471cdf opal_rtc_read +EXPORT_SYMBOL_GPL vmlinux 0xbe5b4a31 ps3_vuart_read +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe79f1bb rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xbe90be6d pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xbe927e3e tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeab9d8a inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbebd3556 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xbec15b5a irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xbec8d1c8 analyse_instr +EXPORT_SYMBOL_GPL vmlinux 0xbed622e5 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xbef3963e scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xbefb02f3 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xbf020c20 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf09f3e9 ps3_vuart_port_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbf1bfc7d ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xbf22f82c scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xbf48d9bb virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xbf522b43 __module_address +EXPORT_SYMBOL_GPL vmlinux 0xbf534b2d __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xbf5fe51c inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xbf7da881 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xbf8dc185 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0xbf90da2f pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfccc8a9 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfe7f4fd cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xbfffc8b7 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xc006fc1a mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xc0173852 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xc027e05b generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0xc02bec3c usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc02e7011 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0xc033641b inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xc050c8e0 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xc05cd337 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc061367e mpic_msgr_get +EXPORT_SYMBOL_GPL vmlinux 0xc0649571 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xc0652cab class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc09700dc rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xc09a01c1 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0ac3244 skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0xc0bc2d11 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xc0c69803 pnv_pci_get_presence_state +EXPORT_SYMBOL_GPL vmlinux 0xc0cdcc9b napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0ddd430 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xc0de2f5f fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0ffc2be regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xc10dc312 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xc1519f13 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc1587dc4 get_device +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc1834d6b nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xc185dd97 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xc19736d6 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xc1a49752 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xc1bd0521 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc1e2beb8 copro_handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xc1e5ee5f irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xc1f27cbd __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc23460b3 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xc278c9e5 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc28ef851 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xc29dde7f devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xc29eeede devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc2b628d6 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc2dcb4d2 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0xc3146b3a vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xc31e9f35 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xc33c16fe of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0xc34173cd mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc3917461 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc3a32d0a blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xc3c48523 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xc3cabb95 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc3cdbbde register_spu_syscalls +EXPORT_SYMBOL_GPL vmlinux 0xc3ef7d16 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xc3eff1a7 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xc3f1ae06 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xc3f772d6 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xc406e929 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xc41d7386 pci_traverse_device_nodes +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc4287bf4 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xc429f21b pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xc4505f1d relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc456b218 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0xc45f2b7d set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc472c615 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xc4842bec phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc49a9c81 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xc4a16a61 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xc4b2ee2e mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xc4f81ca7 copro_calculate_slb +EXPORT_SYMBOL_GPL vmlinux 0xc4fd0cee wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xc4fdef06 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xc4ff0679 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xc5108883 __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0xc51e1200 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xc520a4d2 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc5560bbb __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xc56174f8 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xc56723ca scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc578cc21 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xc57bf15a ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xc57eb649 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc5878314 blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0xc58a1687 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xc597c776 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xc5a2c19f idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc5c171b3 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc5cfc4ef blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xc5dccf2c devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc5f28760 user_describe +EXPORT_SYMBOL_GPL vmlinux 0xc5f762ca pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xc6020bc0 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc62568e8 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xc625c7fc skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xc627431a alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc62c2148 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc640fcb9 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xc6478746 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66c2311 ps3_vuart_irq_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc68aa252 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc6975c56 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6b37cca iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0xc6be0736 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xc6bf94ba usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xc6c69a8f opal_flash_write +EXPORT_SYMBOL_GPL vmlinux 0xc6d3d90a usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xc6d632bf regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xc6e2f79a percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc6fc4b2c regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xc6ff14fe aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xc7164378 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xc719b168 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0xc72402ae xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc7392bbd badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0xc7677ecc trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0xc776b01c __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc78823d7 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xc78d502b usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7bb21b7 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0xc7bb8e3a of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0xc7c19524 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xc7ccc216 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0xc7cfed3c serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xc7d3a7eb devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xc7d8ddc5 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7f60efe dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xc814757d power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xc81e4a01 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xc822bf9b virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xc857b647 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xc8595382 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xc873ed6d pmac_i2c_get_controller +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc891dc48 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xc8963f71 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8b3e88d devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xc8b6988b pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xc8b796bb simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xc8caa174 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xc8dcc9d5 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8ecd9b8 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xc8f3bcd4 arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc90432cb percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc91538a1 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc9856baa blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xc9986efa dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xc9b01fb6 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca0d0068 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xca137347 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xca17e001 get_system_keyring +EXPORT_SYMBOL_GPL vmlinux 0xca22be6d modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xca46b86b rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xca6017b5 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xca670cb0 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xca6773e7 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xca6ca6c3 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xca6dcd17 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca834d48 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcaa29e67 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xcaa907cb to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcae87bb1 regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xcaeccf33 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xcaf48b64 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xcafcdcd1 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0xcb007416 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0xcb11199b ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb296667 iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0xcb37cc0e devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xcb3e8fa7 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0xcb4a9a2b bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0xcb59237a bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xcb5ee621 hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xcb5fdc8e __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xcb7ac9ca opal_message_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcb83cf23 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xcb9e1636 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xcba05db7 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xcbaddbc3 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xcbb4ac95 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xcbba18d6 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xcbc85283 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbec313d spu_invalidate_slbs +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbf18265 pmf_call_function +EXPORT_SYMBOL_GPL vmlinux 0xcbf2c8a0 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xcbfc3cce handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xcc054c95 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xcc09b14f rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc0d746d trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcc2ba30d list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xcc580e35 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc6b08d3 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xcc78ca6e key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc901bf2 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xcca2ce00 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xcca48d2b regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xccbef92a spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xccc9e43a irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xcccb00ff fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccf42d55 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xccf53b0f md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xcd346d4c __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xcd54e8b9 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0xcd641245 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xcd7a9cd0 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd995979 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcda5cc6b pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xcda90603 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdc6bc90 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdcb0380 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0xcdeb20c9 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0xce280ef7 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xce2a75c3 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xce2bdc02 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xce2c459a cs47l24_irq +EXPORT_SYMBOL_GPL vmlinux 0xce31998c scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xce53ac2d devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce84cc39 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xce87ce2b devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xce8edc34 spu_switch_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xce9a03cc early_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xced66e38 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xced7d755 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0xcede4d2a pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee8aee2 of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0xcef655da register_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0xcf0a7432 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xcf3d3ef9 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xcf53f98c inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xcf54cb89 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf5f6e74 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xcf6bc12d ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xcf7104d6 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0xcf7fe795 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfb7aee0 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfc9421d da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xcfc9cf89 debugfs_use_file_finish +EXPORT_SYMBOL_GPL vmlinux 0xcfce4dc5 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xcfd072ec __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xcfd31409 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xcfd7634c ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xcff74491 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd00ef252 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xd0143b70 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd01afd3f opal_tpo_read +EXPORT_SYMBOL_GPL vmlinux 0xd026edf1 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xd035460b sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd0436999 flush_altivec_to_thread +EXPORT_SYMBOL_GPL vmlinux 0xd0457216 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd04652ff regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd078433a dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0xd07e682c ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xd0a8f6a9 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0d73ce3 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xd0f2f8bb usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xd0f73e6d md_run +EXPORT_SYMBOL_GPL vmlinux 0xd0f8ec71 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xd0f92e1b shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xd12f8e7d bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd13599a3 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd18744b5 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xd18a92ae phy_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xd18cdc51 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xd19e77f5 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xd1ad9770 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xd1e7bf18 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xd1f13ce1 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1f44992 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xd2021496 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd20dcd8e irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xd217c37d ps3_vuart_clear_rx_bytes +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd237490a fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0xd237a10a pci_hp_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0xd242c186 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xd24c916e save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd26f1c91 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd27004de usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd2812036 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd29388c9 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xd2978128 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xd2a15d20 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xd2a5ddf5 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xd2d93358 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2e47cf2 eeh_add_sysfs_files +EXPORT_SYMBOL_GPL vmlinux 0xd2e779e5 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd308a25a usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd339387b ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xd33d3bad blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd358dfe4 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xd3822f97 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xd3d7d692 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xd3d86cc9 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xd3df3670 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd4285e73 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd464e26d iommu_del_device +EXPORT_SYMBOL_GPL vmlinux 0xd4916b8f bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0xd4977fa0 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd4981dde ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xd4a01e15 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xd4b88ed0 pcibios_free_controller_deferred +EXPORT_SYMBOL_GPL vmlinux 0xd4bcb45d ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4d0c463 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xd4da7a73 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xd4db8b17 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xd5245ef7 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0xd537285e nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0xd538e9ca irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xd5474cdb pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0xd557e482 pnv_pci_get_slot_id +EXPORT_SYMBOL_GPL vmlinux 0xd5596d48 opal_xscom_write +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd56659a8 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0xd586d495 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0xd59e22e7 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xd5a514e3 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xd5b4d458 pmf_do_irq +EXPORT_SYMBOL_GPL vmlinux 0xd5b789ca crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5f33579 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd61e0189 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xd61f678f ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xd61f7901 cxl_pci_associate_default_context +EXPORT_SYMBOL_GPL vmlinux 0xd62de5cf iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xd6307032 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xd67338a0 device_create +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6a43677 opal_async_release_token +EXPORT_SYMBOL_GPL vmlinux 0xd6a7a24a class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xd6b0087d devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xd6c611e7 of_genpd_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd71cc78c rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0xd72835d5 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd746c137 of_scan_bus +EXPORT_SYMBOL_GPL vmlinux 0xd758c84b serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd7a61193 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd7b4eb59 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xd7c1b6e8 fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0xd7c9b6d1 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7d80c64 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xd7e82bc4 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xd7fc3e98 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xd800bb87 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xd81677fc fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xd81cb86f power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd8263870 mmu_slb_size +EXPORT_SYMBOL_GPL vmlinux 0xd828a786 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xd838182d fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xd8419f80 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xd8498f4d ps3av_mode_cs_info +EXPORT_SYMBOL_GPL vmlinux 0xd85199b1 iommu_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd86138b1 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xd86ab7cb crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8a3b2e0 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xd8c2a04d pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd8ddaf41 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xd8e52017 insert_resource +EXPORT_SYMBOL_GPL vmlinux 0xd8e6f8b2 iommu_release_ownership +EXPORT_SYMBOL_GPL vmlinux 0xd90ee239 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xd9154ca9 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xd91765de phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd91b5db8 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xd92436ee i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0xd9273eea debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xd92a26a3 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xd92b3805 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0xd92d3534 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0xd937116b iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd9497b3c ps3_os_area_flash_register +EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0xd95bc79d crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd98249ba swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xd9a34729 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd9b51045 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0xd9d74774 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9fb5a68 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0xda07cc4a crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xda0a4d22 mpic_msgr_enable +EXPORT_SYMBOL_GPL vmlinux 0xda19fe42 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xda2511e5 cpu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0xda4ea78b power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xda782475 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xda9a058c spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xda9c50e7 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xdaa57b1d pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf12c44 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb09e83d pmf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xdb0ac13b ps3_compare_firmware_version +EXPORT_SYMBOL_GPL vmlinux 0xdb2b47b7 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xdb3058de dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb45155c class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdb58a53a usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xdb73bb7d loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0xdb78aed2 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb90fc14 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdb990788 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xdbd72681 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbfbeb1c fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xdc086f31 spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0xdc0a5c34 spu_remove_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0xdc1c379d __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0xdc226657 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xdc68be9a __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc8c1bc1 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xdc937864 spu_switch_event_register +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcde7742 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0xdcedec79 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xdd043eea ps3av_get_auto_mode +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd290f96 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd3b2cc2 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xdd4cd609 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0xdd729424 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xdd794477 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xdd817be5 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xddb4fc35 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddca9eda fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xddcc3d11 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddf6cc83 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xde1ea96b sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xde65e935 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xde7fc331 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xde9429fd xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdeb8bcae thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xdec1c9dc restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xdee3c156 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xdef31187 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xdf06e9f5 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xdf0932c2 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf277fda pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0xdf37c306 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xdf4becfd blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0xdf588525 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xdf6abb55 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xdf700458 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xdf80476d trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xdf830fff wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0xdf8518ec pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xdfa9931c devm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0xdfc5421d nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xdfcad1b0 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xdfdb1fd9 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0xdfed6bed ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xdff871dc usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xdffafeca pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xe00645c6 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe011f817 ps3flash_bounce_buffer +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe036b3e9 mpic_msgr_put +EXPORT_SYMBOL_GPL vmlinux 0xe03b3e81 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xe044c819 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0xe0582c8a thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xe05c5d30 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0ba6607 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xe0bbcd3b dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0xe0c25206 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0xe0cb73a0 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xe0cebe9a regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xe0e4add5 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xe1317593 i2c_new_secondary_device +EXPORT_SYMBOL_GPL vmlinux 0xe1433e34 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xe157a0aa get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe190adc1 use_cop +EXPORT_SYMBOL_GPL vmlinux 0xe1945270 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xe194a124 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xe19fc092 ps3fb_videomemory +EXPORT_SYMBOL_GPL vmlinux 0xe1ae106d mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xe1b71f6a anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1cf5fe7 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xe21984e2 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0xe21a629d __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xe21ad0a3 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0xe21c1fc1 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xe226ea16 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0xe23ab8e0 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe2578273 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xe2586557 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe25b91e9 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0xe271a1bd extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xe27c2ce0 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xe2820992 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe2884817 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe29c95bb pci_hp_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xe2b6027c rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xe2c47b23 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2e19ee5 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0xe2e2dacd genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xe2e39059 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xe2e618ac max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe308f0c0 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe34cd3ea iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xe3519a5d sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xe370e4bc pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xe3929990 __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0xe3af0e57 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xe3c5392a rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0xe3c715c6 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe3cc08d9 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xe3d7750e btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xe3dab8b6 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0xe3f8818e usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xe3fca92c inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xe40dddcc kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xe40e5d7d rcu_exp_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4329ad6 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe44935b4 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xe44c01cb ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xe45cbfdd irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xe465010e cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe4725a4f bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xe47e962f cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4c031f8 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xe4c8fd12 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xe4c9111d watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xe4ce33bc usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe508bf6d put_device +EXPORT_SYMBOL_GPL vmlinux 0xe51797e0 flush_vsx_to_thread +EXPORT_SYMBOL_GPL vmlinux 0xe51c040f register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xe53080fb rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xe53bd71e dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0xe54f7ab9 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xe5540302 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xe566ec5b l3mdev_get_saddr +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe589e71f serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5c2e67d rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xe5d0889e crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xe5d5444c spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xe5dfe95f blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xe5ea06cc x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xe5ee6af6 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe6051c14 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xe6058132 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xe60e89ce ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xe62c480e wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xe6347e89 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe671f33c pmac_i2c_get_channel +EXPORT_SYMBOL_GPL vmlinux 0xe6b5d17e wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe6bb37ba disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6e15727 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6e2dadd exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xe6f9ed96 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xe705653e sysfs_add_device_to_node +EXPORT_SYMBOL_GPL vmlinux 0xe72fbb53 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe754a700 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xe75535e9 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0xe759f9ce wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xe75ffa51 kvmppc_invalidate_hpte +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe775b6fd file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xe7817978 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe785c818 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xe790dbd6 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xe7918047 __of_genpd_xlate_simple +EXPORT_SYMBOL_GPL vmlinux 0xe7dfae10 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe8062b98 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe81acc69 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xe823b9ef debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xe82ebf29 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xe83faf88 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe8530ec9 iommu_tce_put_param_check +EXPORT_SYMBOL_GPL vmlinux 0xe85c55e7 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe88ac887 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xe88cf3ab kvmppc_tce_put +EXPORT_SYMBOL_GPL vmlinux 0xe88e66da nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe89e7740 kvmppc_do_h_enter +EXPORT_SYMBOL_GPL vmlinux 0xe8b04fe5 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xe8c1a3fc crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xe8d2554b bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe90a695b rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xe9138ae2 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xe91f4c1a ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xe92ff536 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9474bde dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xe9506579 iommu_tce_direction +EXPORT_SYMBOL_GPL vmlinux 0xe969d1a8 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0xe96f0339 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xe98006eb trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xe99852ff virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0xe9ac0300 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xe9cf6478 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9dcb02e hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe9e6b174 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xe9fc41d0 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xea0296b6 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea27de7c spu_management_ops +EXPORT_SYMBOL_GPL vmlinux 0xea2a8ec2 ps3_close_hv_device +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea48a9b8 phy_get +EXPORT_SYMBOL_GPL vmlinux 0xea5717d9 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0xea7cbb44 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xea8eaa08 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea9b295a ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xeabf54fe crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0xeae8a627 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xeb01393f of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0xeb037783 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0xeb1c3cd4 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xeb2a7f78 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xeb2c4158 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xeb359c30 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xeb3bc2c0 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xeb57e448 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xeb5ec9a5 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xeb776cc1 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xeb7e90f7 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xeb82deab pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xeb8ae736 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xeba214a3 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xeba5ccfb ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xeba60b25 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xec04e4a3 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xec14e456 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xec1a1207 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec4a5791 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xec53e8bf ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0xec7bef33 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0xec82e332 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xec94518f perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xecc2a915 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xecd78aec add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xecdc9b39 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xeceffdc3 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xecfea2f1 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xed13287c securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0xed41ff2a kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xeda131bb security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0xedb198ff dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xedb341f9 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xedbd425a exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0xedca62d2 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xedec9a2a dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xedf027a5 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xedf5dc9d con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL vmlinux 0xeea356f6 mmput +EXPORT_SYMBOL_GPL vmlinux 0xeea79efd ps3_free_mmio_region +EXPORT_SYMBOL_GPL vmlinux 0xeeb027a1 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xeeb23fff blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0xeec18bf7 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run +EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xeef22d98 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xeefcbcaf regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xef00976b max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xef1909c4 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xef352906 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xef3c3d2a device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xef451eca pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xef5832f5 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat +EXPORT_SYMBOL_GPL vmlinux 0xef8bb246 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xef8faed2 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xefa26e1c pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefaead1f rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xefcc76b3 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0xefda022c rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xefdf3c6f rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xefe1644d tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xf019e853 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xf02093d6 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xf02ce809 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xf031157b regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xf03243fa set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf03d8df3 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xf05f5cdb perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xf06e6f3e regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf0918c38 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xf098dd15 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xf0b0b4ef fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf0ba6555 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf0d1e40e sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xf0da435e rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf100d3c5 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xf11f299b ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xf11fdd79 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xf1214657 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xf127a954 md_stop +EXPORT_SYMBOL_GPL vmlinux 0xf1321420 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xf139eb61 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xf14b7e28 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xf16a0728 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0xf1717591 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf185df07 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xf186d76d platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq +EXPORT_SYMBOL_GPL vmlinux 0xf1b1a3b6 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1c346b6 nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xf1c634a3 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xf1c8c251 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xf1d865a9 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xf1db7d90 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xf1fd1185 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0xf1fde4dd hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf227ca4e part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0xf261da15 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf26f3991 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xf273260f led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xf27766f3 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf28cafeb reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2c44885 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xf2e19c68 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xf2e3d6af led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0xf2e621b1 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xf369bf84 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xf36be63d relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xf36d46d3 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xf36e7bc8 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf37f6b9d gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf38c9b49 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b6ffb8 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3ffd791 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xf41d55c4 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xf4594703 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xf45ab020 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xf469aaf3 shake_page +EXPORT_SYMBOL_GPL vmlinux 0xf469c705 ps3_io_irq_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf481be66 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf497786e security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xf499acce ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4d46775 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0xf4d6fbb3 pcibios_free_controller +EXPORT_SYMBOL_GPL vmlinux 0xf4ea4801 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xf4ecb37a user_read +EXPORT_SYMBOL_GPL vmlinux 0xf4f4993d of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf506e2a0 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xf51975d7 of_css +EXPORT_SYMBOL_GPL vmlinux 0xf51a06d3 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xf51e5e3d ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf544950b __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf5522645 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf5687ed7 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xf58f9c42 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0xf5950c81 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5b9200e alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xf5bcf1b2 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xf5c14267 do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0xf5dd254b pnv_cxl_phb_to_afu +EXPORT_SYMBOL_GPL vmlinux 0xf60722ed pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xf6351231 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xf6597fea phy_put +EXPORT_SYMBOL_GPL vmlinux 0xf67afd76 unregister_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0xf683f958 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xf69d4657 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xf6bd641c pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6e1e861 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0xf6e35034 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xf6e3aa02 rio_inb_pwrite_handler +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 0xf71cbeba mm_iommu_put +EXPORT_SYMBOL_GPL vmlinux 0xf73cddb8 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xf7645f87 ps3_system_bus_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf7869356 pmf_find_function +EXPORT_SYMBOL_GPL vmlinux 0xf796e725 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf7b1b0a5 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xf7cd64e4 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0xf7d87ee1 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xf7e956fe mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0xf7eb43ae sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0xf7f0cc37 spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0xf7ffeadb ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xf8067dff inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf8344cfe rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xf837e0eb unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xf8402fcd pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf8436dc9 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0xf8525d92 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xf86d898a hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf8700667 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf8d4f35a save_stack_trace_regs +EXPORT_SYMBOL_GPL vmlinux 0xf8e398fc memstart_addr +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8e6bb35 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf91eab95 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xf9220abb dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf93a6dba max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xf951a344 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf9523ed8 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf96057d4 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xf9728a03 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf992ba3a device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xf99df381 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9d88970 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xf9da289b pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa20ceed crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xfa2ea82c usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xfa46d981 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0xfa481118 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0xfa56f0ff arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0xfa8e04bb debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xfabb7f17 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0xfac7a0b4 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xfaca40f6 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xfad230d4 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xfada3005 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL_GPL vmlinux 0xfaea1cb4 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfaf3b4be debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xfb13c9cb seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0xfb1f3354 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb39267b kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xfb44a7a1 opal_ipmi_recv +EXPORT_SYMBOL_GPL vmlinux 0xfb4fdc9a __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xfb525dfc pmac_i2c_get_type +EXPORT_SYMBOL_GPL vmlinux 0xfb52b77d __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb8b61c6 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc02ca6 netdev_default_l2upper_neigh_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfbe2ddca remove_resource +EXPORT_SYMBOL_GPL vmlinux 0xfbea4e1c __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xfbfacb51 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xfbfc0748 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfbfcdc2b ps3_sys_manager_get_wol +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc1e9470 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc2e361c rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xfc4ba3a8 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xfc80a09e rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xfc8d801a nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xfc8dd6e8 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0xfca7f2a6 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xfcad700b rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xfcd826c3 kvmppc_find_table +EXPORT_SYMBOL_GPL vmlinux 0xfce0e107 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0xfcecb791 of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xfcffb4e1 pmac_i2c_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xfd0cf6b1 cxl_next_msi_hwirq +EXPORT_SYMBOL_GPL vmlinux 0xfd32ef4b usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xfd3a393b mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xfd53fefb unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xfd7391c6 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfdb0a7c1 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xfddd285f mm_iommu_ua_to_hpa +EXPORT_SYMBOL_GPL vmlinux 0xfde7f1a2 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xfdeb5fbb cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xfdf10a4d subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xfdf952fa skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xfe03f8c4 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xfe073d1d sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xfe089bde blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xfe09fc59 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfe37854d device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xfe5246df scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xfe77ea20 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xfe8d2107 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xfe97a74c sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfeac7ec4 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0xfed0e277 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfee9711d ps3_vuart_write +EXPORT_SYMBOL_GPL vmlinux 0xfef1e093 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xfef67c0b usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xfefff603 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff0dacff ps3av_video_mute +EXPORT_SYMBOL_GPL vmlinux 0xff260d5e show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff774424 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffd60ec1 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xffe17893 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xfffb41ec tpm_put_ops --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/powerpc/generic.compiler +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/powerpc/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 6.2.0-5ubuntu12) 6.2.0 20161005 --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/powerpc/generic.modules +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/powerpc/generic.modules @@ -0,0 +1,4546 @@ +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_dw +8250_moxa +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +DAC960 +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +ac97_bus +acard-ahci +acecad +acenic +act200l-sir +act8865-regulator +act8945a +act8945a-regulator +act8945a_charger +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5761 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7606_par +ad7606_spi +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +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 +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adf7242 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16209 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +afe4403 +afe4404 +affs +ah4 +ah6 +aha152x_cs +ahci +ahci_ceva +ahci_platform +ahci_qoriq +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airo_cs +airport +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +ali-ircc +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am2315 +am53c974 +amc6821 +amd +amd-rng +amd5536udc +amd8111_edac +amd8111e +amd8131_edac +amdgpu +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 +anatop-regulator +ansi_cprng +anubis +aoe +apbps2 +apds9300 +apds9802als +apds990x +apds9960 +appledisplay +appletalk +appletouch +applicom +aquantia +ar1021_i2c +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arcpgu +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +asc7621 +ascot2e +asix +ast +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atlas-ph-sensor +atm +atmel +atmel-flexcom +atmel-hlcdc +atmel_captouch +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atusb +atxp1 +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avm_cs +avma1_cs +avmfritz +ax25 +ax88179_178a +axnet_cs +axp20x +axp20x-i2c +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7xxx +bcm87xx +bcma +bcma-hcd +bcmsysport +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780 +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bma220_spi +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmc150_magn_i2c +bmc150_magn_spi +bmg160_core +bmg160_i2c +bmg160_spi +bmi160_core +bmi160_i2c +bmi160_spi +bmp085 +bmp085-i2c +bmp085-spi +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bonding +bpa10x +bpck +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +bq27xxx_battery_i2c +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bsr +bt3c_cs +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btuart_cs +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +cap11xx +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +cec +cec-edid +ceph +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipone_icn8318 +chipreg +chnl_net +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +clip +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 +colibri-vf50-ts +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 +configfs +contec_pci_dio +cordic +core +cp210x +cpc925_edac +cpia2 +cpsw_ale +cpu-notifier-error-inject +cpufreq_schedutil +cpufreq_spudemand +cramfs +crc-itu-t +crc32_generic +crc32c-vpmsum +crc7 +crc8 +cryptd +crypto_user +cryptoloop +cs3308 +cs5345 +cs53l32a +csiostor +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +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 +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cxgbit +cxl +cxlflash +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +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-regulator +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 +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +ddbridge +de2104x +de4x5 +decnet +deflate +defxx +denali +denali_pci +des_generic +devlink +dgnc +dh_generic +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +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-verity +dm-zero +dm1105 +dm9601 +dmfe +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +dp83848 +dp83867 +drbd +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1803 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +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-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +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_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc2_pci +dwc3 +dwc3-pci +dwc_eth_qos +dwmac-generic +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +earth-pt1 +earth-pt3 +eata +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 +ecdh_generic +echainiv +echo +edac_core +edt-ft5x06 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efs +egalax_ts +egalax_ts_serial +ehset +elan_i2c +electra_cf +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emac_arc +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_pcmcia +ems_usb +emu10k1-gp +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +eni +enic +epat +epia +epic100 +eql +esas2r +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max3355 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f75375s +f81232 +fakelb +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_ssd1289 +fb_ssd1305 +fb_ssd1306 +fb_ssd1325 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdp +fdp_i2c +fealnx +ff-memless +fid +firedtv +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fl512 +fld +flexcan +flexfb +floppy +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +fmvj18x_cs +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fou6 +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fsl-edma +fsl_elbc_nand +fsl_lpuart +ft6236 +ftdi-elan +ftdi_sio +ftl +ftsteutates +fujitsu_ts +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 +gcm +gdmtty +gdmulte +gdth +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +genwqe_card +gf2k +gfs2 +ghash-generic +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-addr-flash +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-altera +gpio-amd8111 +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-fan +gpio-generic +gpio-grgpio +gpio-ir-recv +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-max77620 +gpio-mc33880 +gpio-mcp23s08 +gpio-menz127 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-pisosr +gpio-rdc321x +gpio-regulator +gpio-syscon +gpio-tpic2810 +gpio-tps65086 +gpio-tps65218 +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mdio +gpio_mouse +gpio_tilt_polled +gpio_wdt +gr_udc +grace +grcan +gre +grip +grip_mp +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 +gtco +gtp +guillemot +gunze +gxt4500 +hackrf +hamachi +hampshire +hangcheck-timer +hanwang +hci +hci_uart +hci_vhci +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdma +hdma_mgmt +hdpvr +he +helene +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hi6421-pmic-core +hi6421-regulator +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-asus +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-cmedia +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-led +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +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-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hih6130 +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi504_nand +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hp03 +hp100 +hp206c +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +htc-pasic3 +htu21 +huawei_cdc_ncm +hvcs +hvcserver +hwa-hc +hwa-rc +hwmon-vid +hwpoison-inject +hx8357 +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-cbus-gpio +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-gpio +i2c-hid +i2c-i801 +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-mpc +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-reg +i2c-nforce2 +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pasemi +i2c-pca-platform +i2c-piix4 +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-xiic +i40e +i40evf +i40iw +i5k_amb +i6300esb +i740fb +i82092 +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_qib +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibmaem +ibmpex +ibmpowernv +ibmveth +ibmvfc +ibmvnic +ibmvscsi +ibmvscsis +icom +icp_multi +icplus +ics932s401 +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_gen2 +idt_gen3 +idtcps +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ifi_canfd +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-hrtimer +iio-trig-interrupt +iio-trig-loop +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +img-i2s-in +img-i2s-out +img-parallel-out +img-spdif-in +img-spdif-out +imm +imon +ims-pcu +imx074 +imx6ul_tsc +imx_thermal +ina209 +ina2xx +ina2xx-adc +ina3221 +industrialio +industrialio-buffer-cb +industrialio-configfs +industrialio-sw-device +industrialio-sw-trigger +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int51x1 +intel-xway +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +interval_tree_test +inv-mpu6050 +inv-mpu6050-i2c +inv-mpu6050-spi +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +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_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_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 +ipack +ipaq +ipcomp +ipcomp6 +ipddp +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_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipwireless +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irtty-sir +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it913x +itd1000 +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +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 +khazad +kingsun-sir +kl5kusb105 +kmx61 +ko2iblnd +kobil_sct +ks0108 +ks7010 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksocklnd +ksz884x +ktti +kvaser_pci +kvaser_usb +kvm +kvm-hv +kvm-pr +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan78xx +lanai +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-adp5520 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-is31fl32xx +leds-ktd2692 +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-pca9532 +leds-pca955x +leds-pca963x +leds-powernv +leds-pwm +leds-regulator +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libceph +libcfs +libcomposite +libcrc32c +libcxgb +libcxgbi +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +liquidio +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +litelink-sir +lkkbd +ll_temac +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lms283gf05 +lms501kf03 +lmv +lnbh25 +lnbp21 +lnbp22 +lnet +lnet_selftest +lockd +locktorture +lov +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc2990 +ltc3589 +ltc3815 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lustre +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +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 +mac_hid +macb +macsec +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mailbox-test +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577-regulator +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max30100 +max3100 +max31722 +max31790 +max3421-hcd +max34440 +max44000 +max517 +max5487 +max5821 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77620-regulator +max77620_wdt +max77686-regulator +max77693-haptic +max77693-regulator +max77693_charger +max77802-regulator +max8649 +max8660 +max8688 +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 +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4131 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +md5-ppc +mdc +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-cavium +mdio-gpio +mdio-hisi-femac +mdio-mux +mdio-mux-gpio +mdio-mux-mmioreg +mdio-octeon +mdio-thunder +me4000 +me_daq +media +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 +metro-usb +metronomefb +mf6x4 +mga +mgc +michael_mic +micrel +microchip +microread +microread_i2c +microtek +mii +minix +mip6 +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma7455_core +mma7455_i2c +mma7455_spi +mma7660 +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_block +mmc_spi +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpl115 +mpl115_i2c +mpl115_spi +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi001 +msi2500 +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6323-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-quadspi +mtk-sd +mtk_ecc +mtk_nand +mtouch +multipath +multiq3 +musb_hdrc +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxc6255 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxser +mxuport +myri10ge +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nand +nand_bch +nand_ecc +nand_ids +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +ncpfs +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +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_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfp_netvf +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_exthdr +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +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_tio +ni_tiocmd +ni_usb6501 +nicpf +nicstar +nicvf +nilfs2 +niu +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-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 +nosy +notifier-error-inject +nouveau +nozomi +nps_enet +ns558 +ns83820 +nsc-ircc +ntb +ntb_netdev +ntb_perf +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nvidiafb +nvme +nvme-core +nvme-fabrics +nvme-loop +nvme-rdma +nvmem_core +nvmet +nvmet-rdma +nx-compress +nx-compress-powernv +nx-compress-pseries +nx-crypto +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxt200x +nxt6000 +obdclass +obdecho +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_mmc_spi +of_xilinx_wdt +ofpart +old_belkin-sir +omap4-keypad +omfs +omninet +on20 +on26 +onenand +opal-prd +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osc +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +palmas-pwrbutton +palmas-regulator +palmas_gpadc +pandora_bl +panel +panel-lg-lg4573 +panel-panasonic-vvx10f034n00 +panel-samsung-ld9040 +panel-samsung-s6e8aa0 +panel-sharp-lq101r1sx01 +panel-sharp-ls043t1le01 +panel-simple +parade-ps8622 +paride +parkbd +parport +parport_ax88796 +parport_cs +parport_pc +parport_serial +pasemi-rng +pasemi_edac +pasemi_nand +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_pcmcia +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 +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-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 +pcspkr +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +pdc_adma +peak_pci +peak_pcmcia +peak_usb +pegasus +pegasus_notetaker +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-exynos-usb2 +phy-generic +phy-gpio-vbus-usb +phy-isp1301 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-tahvo +phy-tusb1210 +physmap +physmap_of +physmap_of_versatile +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +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_core +pps_parport +pptp +prism2_usb +ps2mult +ps3-lpm +ps3_gelic +ps3disk +ps3flash +ps3rom +ps3stor_lib +ps3vram +pseries-rng +pseries_energy +psmouse +psnap +pt +ptlrpc +ptp +pulse8-cec +pulsedlight-lidar-lite-v2 +pv88060-regulator +pv88080-regulator +pv88090-regulator +pvrusb2 +pwc +pwm-beeper +pwm-fan +pwm-fsl-ftm +pwm-lp3943 +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pwrseq_emmc +pwrseq_simple +pxa27x_udc +qcaspi +qcaux +qcom-spmi-iadc +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom_spmi-regulator +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas408 +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quatech_daqp_cs +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +rack-meter +radeon +radeonfb +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +ray_cs +raydium_i2c_ts +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +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-behold +rc-behold-columbus +rc-budget-ci-old +rc-cec +rc-cinergy +rc-cinergy-1400 +rc-core +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-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-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +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-pctv-sedna +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-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-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rcuperf +rdc321x-southbridge +rdma_cm +rdma_rxe +rdma_ucm +rdmavt +rds +rds_rdma +rds_tcp +realtek +reboot-mode +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +reset-ti-syscon +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio-scan +rio500 +rio_cm +rio_mport_cdev +rionet +rivafb +rj54n1cb0c +rk808 +rk808-regulator +rmd128 +rmd160 +rmd256 +rmd320 +rmi_core +rmi_i2c +rmi_spi +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpadlpar_io +rpaphp +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtas_flash +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-as3722 +rtc-bq32k +rtc-bq4802 +rtc-cmos +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-hid-sensor-time +rtc-hym8563 +rtc-isl12022 +rtc-isl12057 +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-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-ps3 +rtc-r9701 +rtc-rc5t583 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx6110 +rtc-rx8010 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-snvs +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 +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7706h +safe_serial +salsa20_generic +samsung-sxgbe +sata_dwc_460ex +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sbp_target +sbs-battery +sc16is7xx +sc92031 +sca3000 +scanlog +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +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_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 +sctp_probe +sdhci +sdhci-of-at91 +sdhci-of-esdhc +sdhci-of-hlwd +sdhci-pci +sdhci-pltfm +sdhci_f_sdh30 +sdio_uart +sdricoh_cs +sedlbauer_cs +seed +sensorhub +ser_gigaset +serial2002 +serial_cs +serio_raw +sermouse +serpent_generic +serport +ses +sfc +sh_veu +sha1-powerpc +sha3_generic +shark2 +shpchp +sht15 +sht21 +sht3x +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sii902x +sil164 +silead +sir-dev +sis +sis190 +sis5595 +sis900 +sis_i2c +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skd +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +sl811_cs +slcan +slip +slram +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smc91c92_cs +smipcie +smm665 +smsc +smsc-ircc2 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4117 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-als4000 +snd-aoa +snd-aoa-codec-onyx +snd-aoa-codec-tas +snd-aoa-codec-toonie +snd-aoa-fabric-layout +snd-aoa-i2sbus +snd-aoa-soundbus +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-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-firewire-digi00x +snd-firewire-lib +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-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-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-pdaudiocf +snd-portman2x4 +snd-powermac +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-ac97 +snd-soc-acp-pcm +snd-soc-adau1701 +snd-soc-adau7002 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-bt-sco +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs35l33 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +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-cs4349 +snd-soc-cs53l30 +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-imx-audmux +snd-soc-inno-rk3036 +snd-soc-max98504 +snd-soc-max9860 +snd-soc-pcm1681 +snd-soc-pcm179x-codec +snd-soc-pcm179x-i2c +snd-soc-pcm179x-spi +snd-soc-pcm3168a +snd-soc-pcm3168a-i2c +snd-soc-pcm3168a-spi +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rl6231 +snd-soc-rt5616 +snd-soc-rt5631 +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-simple-card-utils +snd-soc-spdif-rx +snd-soc-spdif-tx +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-tas5086 +snd-soc-tas571x +snd-soc-tas5720 +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +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-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8960 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-xtfpga-i2s +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-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_ps3 +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +softing_cs +solo6x10 +solos-pci +sony-btf-mpx +soundcore +sp2 +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedtch +spi-altera +spi-axi-spi-engine +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-loopback-test +spi-nor +spi-oc-tiny +spi-pxa2xx-platform +spi-sc18is602 +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spl +splat +spmi +spufs +sr9700 +sr9800 +ssb +ssb-hcd +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +ssu100 +st +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st95hf +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_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 +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stm_heartbeat +stmmac +stmmac-platform +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sun4i-codec +sun4i-i2s +sun4i-spdif +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +surface3_spi +svgalib +sx8 +sx8654 +sx9500 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_usb +synclink +synclink_cs +synclink_gt +synclinkmp +syscon-reboot-mode +sysv +t1pci +t5403 +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 +tc358767 +tc3589x-keypad +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_nv +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teles_cs +teranetics +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_hash +test_hexdump +test_module +test_power +test_static_key_base +test_static_keys +test_udelay +test_user_copy +test_uuid +tg3 +tgr192 +thermal-generic-adc +thmc50 +thunder_bgx +thunderbolt +ti-adc081c +ti-adc0832 +ti-adc128s052 +ti-ads1015 +ti-ads8688 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +torture +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm-rng +tpm_atmel +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tpm_tis_core +tpm_tis_spi +tpm_vtpm_proxy +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65086 +tps65086-regulator +tps65090-charger +tps65090-regulator +tps65217 +tps65217-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw686x +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish_common +twofish_generic +typhoon +u132-hcd +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-core +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-dwc +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_fsl_elbc_gpcm +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +umc +umem +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 +uninorth-agp +unix_diag +upd64031a +upd64083 +us5182d +usb-serial-simple +usb-storage +usb3503 +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_uac2 +usb_f_uvc +usb_gigaset +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 +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +v4l2-tpg +vcan +vcnl4000 +veml6070 +ves1820 +ves1x93 +veth +vf610_adc +vf610_dac +vfio +vfio-pci +vfio_iommu_spapr_tce +vfio_spapr_eeh +vfio_virqfd +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +vhost_vsock +via +via-ircc +via-rhine +via-sdmmc +via-velocity +via686a +videobuf-core +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videodev +vim2m +viperboard +viperboard_adc +virt-dma +virtio-gpu +virtio-rng +virtio_blk +virtio_input +virtio_net +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vmx-crypto +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vrf +vringh +vsock +vsxxxaa +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5100-spi +w5300 +w6692 +w83781d +w83791d +w83792d +w83793 +w83795 +w83977af_ir +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +wanxl +warrior +wbsd +wcn36xx +wd719x +wdrtas +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wilc1000 +wilc1000-sdio +wilc1000-spi +wimax +winbond-840 +windfarm_ad7417_sensor +windfarm_core +windfarm_cpufreq_clamp +windfarm_fcu_controls +windfarm_lm75_sensor +windfarm_lm87_sensor +windfarm_max6690_sensor +windfarm_pid +windfarm_pm112 +windfarm_pm121 +windfarm_pm72 +windfarm_pm81 +windfarm_pm91 +windfarm_rm31 +windfarm_smu_controls +windfarm_smu_sat +windfarm_smu_sensors +wire +wishbone-serial +wl1273-core +wl3501_cs +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 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x_tables +xc4000 +xc5000 +xcbc +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xhci-plat-hcd +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx_ps2 +xilinx_uartps +xillybus_core +xillybus_of +xillybus_pcie +xirc2ps_cs +xircom_cb +xor +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +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 +xz_dec_test +yam +yealink +yellowfin +yenta_socket +yurex +z3fold +zaurus +zavl +zcommon +zd1201 +zd1211rw +zforce_ts +zfs +zhenhua +ziirave_wdt +zl10036 +zl10039 +zl10353 +zl6100 +znvpair +zpios +zr364xx +zram +zunicode +zynq-fpga --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/powerpc/powerpc-e500mc +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/powerpc/powerpc-e500mc @@ -0,0 +1,19348 @@ +EXPORT_SYMBOL crypto/mcryptd 0x327c4a8d mcryptd_arm_flusher +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0xaf167c94 suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0x88625ec1 uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x47bed821 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0x8be5a222 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 0x151def85 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x1db85ff0 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x33898d00 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x470592c8 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x502d9d17 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x635fce3e pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x7eca0064 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x85f0d639 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x9003bced pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xb2549984 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0xc2207892 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xf3e2eb20 pi_write_regr +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x0dbbdbfb btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x22da39f9 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x2b8a3ef5 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x3c5dc7dd ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4dde7206 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x731f5e74 ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xbb4bd733 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x5f057636 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xcd8670a7 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xd2a4c8d9 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xf9eeadd9 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x305e62c9 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x9bf565d2 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xcf2a2f8d xillybus_endpoint_remove +EXPORT_SYMBOL drivers/crypto/caam/caam 0x1c758e97 caam_get_era +EXPORT_SYMBOL drivers/crypto/caam/caam 0xa51f16c7 caam_little_end +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x40fd6102 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xa11d612c caam_jr_strstatus +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xa3d612c8 caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xa3f9e988 split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xae9fcb03 gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xb24946bf caam_jr_free +EXPORT_SYMBOL drivers/crypto/talitos 0x23abdf58 talitos_submit +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x63614f5e dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x8b6eda31 dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xa2dd769f dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xa362d6f5 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xdb974185 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xdcea90e7 dw_dma_get_src_addr +EXPORT_SYMBOL drivers/edac/edac_core 0xbacc781d edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x014b2822 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x08d4a494 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0ce6d35c fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0e5db74a fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0ed788ef fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x298203cb fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x380a3ae4 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3b386ec7 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3bf7d4f9 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4ffddce7 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x539f116b fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5b6ef46f fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5e94f95b fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x654ce993 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x66f9a131 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6cb81d70 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7f25bf95 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8bd56f7d fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x910a8f1d fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x965ce27b fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa39ab36c fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb25c0934 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb5f4a7ac fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbdb2172e fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xee515d2a fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xeef3afbc fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/fmc/fmc 0x1ff910da fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x2a725de7 fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x71be1b96 fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x7a7ae374 fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0x8805188b fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xa615085a fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0xba7d868b fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0xbf491e0f fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0xbf733632 fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0xca5385f2 fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0xcca200ca fmc_find_sdb_device +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0011dc75 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01265969 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02600a62 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x039867a0 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04bc7cda drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04e803c6 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07b6486f drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08658fd5 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x089b83d2 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08f1d292 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09c8d945 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b218bca drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bf34c6a drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c48260b drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c670140 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c6faf13 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c72b059 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ccf3ebe drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dfcfc08 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e4773be drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f95f32a drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fa42b41 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fbf25f1 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1025da8b drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10309123 drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12b1f6fe drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12f97acd drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15038481 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15223986 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15b43ef5 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15e7a765 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1618244c drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16783394 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x176b1d01 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17e7183b drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x190576b2 drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1917994e drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a8f8f09 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a9d69cd drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b561e5e drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cef9f57 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1da8885f drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd02fb0 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ecf6b80 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ee70d67 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x203df70b drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2088e961 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21a016c1 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x224350a5 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22ee3dd9 drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x237d5a8c drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23aae3a7 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24eda19c drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25c94425 drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2608a493 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2636d3a6 drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x264846ee drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2685ca95 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2689dbe0 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2738d7e1 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x275034ea drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2896ce36 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28a94f3d drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a30ce9e drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a55c78d drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bc09abf drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c9f89f1 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ec256fd drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30931606 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x323f3e09 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x329b975e drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32dfdb45 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3400067c drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34d47d8a drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x350538da drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35910d73 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x377e1751 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38060a97 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x389c015f drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39be5e28 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39f60c63 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ae2ba23 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b6b1ca9 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b76c0c4 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d8283c8 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dd32526 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fb3b9c6 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40e9a32c drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43c472d8 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4497db35 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45908a11 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45d35b0e drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47b2c289 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x499a9e56 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49f06d0a drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b248537 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b5e9447 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b6fc995 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d0a09bd drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ed8dbe5 drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f782a4a drm_mode_object_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f79f10e drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5136f921 drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51db353a drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5293f03c drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52b1acd6 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54ae4df4 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56f0fab2 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57018f6c drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57f13420 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59063419 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a2f2a0f drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c6d51bd drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d2394bd drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ffdcd85 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61b0be9f drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x623affbf drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x640be7ce drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64ef5b32 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6565af06 drm_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65b1ec87 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x660bd14d drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6702f3ed drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69972d41 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69f7ca6b drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a018015 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a896004 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a952916 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b255133 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c13fbe3 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c3167a7 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e702b88 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6eb6ef72 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f3ad4a5 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fc4338d drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70b0eab4 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x723a5e2a drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74ee0b79 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x750262dc drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75d4e93f drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x761d0dcf drm_gem_object_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76e12fb3 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x776af81a drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x778d8381 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77906ce2 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77a86763 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78d598dc drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a5b71b5 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b0eaa48 drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c5cef04 drm_crtc_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d095b8d drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d4278e3 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d54dbde drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e1d7fd6 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f16b803 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f343b27 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f69c865 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fa7a4df drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fb03747 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ff907c3 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8020c803 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8083689c drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x814acef2 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8154e66b drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x833064c2 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x837c85bb drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84022be3 drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x851d166b drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x854e1fa9 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8769d693 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x876e7d81 drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87b2ec10 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88dde12a drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89720bd1 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a4422d4 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ad28dcb drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bb60acf drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bbbae00 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d8ceaac drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d95d25b drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f6540a9 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9025172d drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x929cd9f8 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x956297c3 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x959a6dbf drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9723fa46 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x979fcba1 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9806e7a3 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98851c77 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a4bb9e3 drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ac8b21b drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a3440 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d052b65 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d0a97bf drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d6eff7e drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d97bd49 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa30ac67d drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa335d2d8 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa353a8d3 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3d21eb8 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa41fe17c drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5678b5e drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa592dc05 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa62586c2 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6f5057b drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab49ca34 drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac37ed68 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaca7361d drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xace142fa drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad5d3703 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaeafb08b drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaece0928 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf1b1ef1 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf6c3d52 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb045b415 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0772b78 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb13cd785 drm_crtc_commit_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1aa5f8f drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb37d51ad drm_format_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb38e4278 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4054a75 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb448c278 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb550b6db drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5ee929f drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8ceca1c drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9ce26dc drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba0c8f5c drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba7929c3 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbadb131e drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbade005a drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd03b0eb drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdd2b0d4 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfccd9ee drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc071e16f drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc07f9307 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1f4d041 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2792e63 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc29d65c9 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2dbcac5 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc352f167 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5f971ba drm_crtc_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6133946 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbe95c37 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbebb769 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc71f824 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd7cf82f drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdd41f16 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce788551 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf5747ab drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd026b5a3 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0903f15 drm_format_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0917165 drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd182821a drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd211b120 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd54b58d8 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd666c9f3 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd738dee0 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd86ddbfd drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8d6b768 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9b64212 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdab47577 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb5178d0 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbef4f79 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddd29a7f drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xded8ec5c drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe17d7335 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1efa50d drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe25c08e0 drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2a060b3 drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4971aa8 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5b35ca7 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe65ceb84 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe79eb7a6 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8547132 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe91b826d drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9b3fb7a drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9cb9875 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea9af3fc drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb87c5ef drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebbd564d drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee43b16b drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf132339d drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf18db1f2 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b098be drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3af97a9 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3c7f565 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf42c3947 drm_gem_object_unreference_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6d299e4 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7880b1e drm_mode_object_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf80f12f8 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaaaaa4d drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaff4f67 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0172cc31 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02453820 drm_fbdev_cma_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04767a16 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x050dbf12 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05418a70 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0aa35b75 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c39cd07 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c82c580 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d3572ae drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d8f0c00 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x109d8e5b drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10e7a852 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x143ec999 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1721c4b9 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17e7876d drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19d1d2f8 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a525fcc drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2005fada drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20845722 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21a4b12a drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2295f428 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22e71aef drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26bee5bc drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x271d950c drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28471d1c drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c6796d4 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cbb3c1c drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d55eaf4 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e68fb98 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ec398c0 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31f9f0fa drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x331cc66b drm_fb_cma_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37227a07 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3881119c drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ae243d9 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b828b8a drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ca8021d drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d08ba83 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44a9ea5e drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46cc6b59 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x478763f1 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49d35e79 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b63641b __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c915f1b drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e722c60 drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50ae0f21 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50f80413 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x544dd12d drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55d19dd2 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5be943f8 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d120e95 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5dc1c572 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5dfaf332 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f266f61 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ff0ece3 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60fc4142 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x617d774f drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64754fc4 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6548d857 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66b61306 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66c678df drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69af78a2 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cc83295 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f3d522f drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f6b4d4c drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x702979f2 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x706d800e __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x710138a0 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72f1df39 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73f652ed drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x766d5589 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76ae09d9 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78db11a2 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78f0621f drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x794701df drm_fb_cma_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c0ee315 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d9323ce drm_fbdev_cma_create_with_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e9c1f06 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7eb7f990 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f0b1e1d drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f9674cb drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x810d7d35 drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x822fa11f drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8541e67c drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x859e6b0d drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8742d5b6 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89af32a9 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a6563e8 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c34f016 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cd3a902 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8dabb580 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8dcaa0df drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92b0a326 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x937409bb drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x974777e4 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9769f63f drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x998927b6 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9aa20949 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ae98435 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b2b9b43 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9dd964cd __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f0d5474 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f885daa drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3de6e7e drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa406660f drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa62150ea drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa651a138 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa66491f8 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9983836 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xada11458 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0a6b5ff drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0f5ee8c drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb987207f drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9f37f3e drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbaba772 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2eaeef4 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3728938 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3b65f33 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc427cf30 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5d6b578 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc67ffc42 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc70f8d66 drm_atomic_helper_best_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7990eb1 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc84f5fe3 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb138914 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbb1a31a drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce5470b7 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf384be3 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2457388 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd310bfc9 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd397e78b drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4b53954 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5958e23 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5ee7efd drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6bf5922 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd86325b7 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8bb5d4b drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdab5c863 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb2758cf drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde1c98a8 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe019a422 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0c2fa0c drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe87ea8f0 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb113473 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb247db0 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xebdfbd56 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec1479fd drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf306cc60 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5594253 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf56f60d4 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5d51105 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5e25b91 drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5f233a8 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf809f14a drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8422624 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd50869c drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfeb8f6b4 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfeed474a drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0328f084 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x04a0c6bb ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05c1bf4e ttm_bo_default_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x11b1e8c7 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f4633a5 ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2d2ebcaa ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2e5c05ba ttm_bo_default_swap_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ef45a5e ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f7bc03d ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x42e8be6c ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x485a5bc0 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4c11feb8 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4c4c0c32 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x58583007 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a0e0e36 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a8fdfea ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ca77129 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e28818b ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6f431ee6 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x70b61aa9 ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7502da11 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x78aac018 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x793aedfc ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7ad46fd6 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7cc25954 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d55da85 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x832fcacd ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x83f319eb ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84a13931 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85d5fa30 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x87bffeab ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8816c362 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8920e3e7 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x895340c1 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89a443de ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8cdc8dd1 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x91bf2c64 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x97dc91a0 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x999c73af ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9b501c34 ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2a129fd ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa5dd94d1 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa6838594 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa73de2a9 ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaad97817 ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaec381be ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xafa2be6d ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb570c4ee ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb66024c0 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb699ad55 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbbf78967 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd0cc613 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbe540cd1 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc007a1b4 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3e6d120 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc567bfc2 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0c2da ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd6ffcfe3 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7f51742 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd90a038e ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdaaee08d ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdaf76d9e ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdedbc70d ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe66aaad8 ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe8e10432 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf2c4e1c0 ttm_bo_pipeline_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf34b3383 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf687131e ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfad2db91 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd581f22 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x514c433f i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x682e8220 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xe4cf239a i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x524ce689 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xe58dc0e6 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xb16dc99e amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x07a98018 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0a834fe3 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0c195797 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x203a5ad7 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2940bb89 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x31cf7457 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4ce597a3 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x603d0a1d mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x71313737 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7c212c83 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9c5fedc9 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa0b5f37d mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb2a0780a mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcc46e00d mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe3af7a5b mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfbf92fa9 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x2b8e03f3 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x41e44ad0 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xdcb83d37 iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xfa90069f iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x5a565f2f iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x9b7d4904 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xebff2d39 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xeca6368e devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x13f2b6a4 hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x4993a20f hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x5aec0626 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xaf746ae2 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xe0593f35 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xf06b6b72 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x37fc827f hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xaceca8c7 hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xb4d02b99 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xfb471045 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x00f00105 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x0e353a81 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3f5b8317 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6f36bde8 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x9d597f9d ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xbed769d6 ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd237c69d ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xec2c2299 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfe9fd958 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x00e4dbbf ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x2cd8630c ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x9082e66f ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xbbfc9557 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xdc68294a ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x16ba2e0f ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x40cbd17d ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xc83d1e31 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x017b6ae7 st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1023d5de st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x11b75f16 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3fbab9a5 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4b5c3a75 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5a63c33b st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x657a1c68 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x82f9032f st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x84ff54c2 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x897325df st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9ddc4881 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa3752313 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa8824ba4 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc226d792 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf6589574 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfd84fc76 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x4fff2eff st_sensors_of_i2c_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x7b7f7967 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x276c79fc st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x635d81bc st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x68675b45 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x53e3b465 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xbb9c083b adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x24ca7573 bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x14cf7253 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x28791942 of_iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0x29066acf iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x2b850196 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x37055eca iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x49cc7396 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x4ad95077 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x4c15dd5e iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0x4c4bb7ca iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x6485b7af iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0x64ee989c iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x67125831 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x6c5788e2 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x8abedb5d iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0xadbce22a iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xb7209562 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xc5a02acb iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xd0b21039 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xd5d546b2 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xf84ba8a9 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x16ec7fc7 iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x3215af04 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x56144bcc iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x7e4f6481 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xcc1fbede iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x144e46fa iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x153b144c iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x9bc6e4bb iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xfbace5d0 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x1410e9c6 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x5f1bf651 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x4a27c73b bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x4c69ef0d bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x506b531c bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xa6cdc231 bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x68412e55 hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xc2615e9d hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xc6a51c66 hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xc9c44826 hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x2d7764fe st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x46014da7 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x2402a4b7 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xd1b2c531 ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x014179bb st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x51b60e19 st_press_common_probe +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x05a6a02c ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2f67adaf ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x463fb491 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4f7cdef9 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x56a5c592 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x68f0fad5 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6cfb8db2 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6d1378ed ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x89f74930 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8da8ac2c ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x92d65f7e ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x973178d2 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbcdade89 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc1d4962b ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdd53b416 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe69e5040 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe903f5bb ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfd91c5c3 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0413c8cf ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x049ace30 rdma_addr_find_smac_by_sgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05e067ad ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08978027 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08d4335f ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x099ce18d ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a1e62fb ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a79171f ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b29b352 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11bb30a5 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1200884d ib_destroy_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x147aeeee ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1488abf3 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x168738d4 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1937f281 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ea5767b rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24416a6d ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a4a6284 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b926b37 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ba8a12e ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2bbd8c22 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c884ada ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e087d0b ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x324b554c rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32a8402c rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x390b1d73 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b7dc3fd ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c5596a3 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d2920ad ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e9f15c2 ib_destroy_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fcc6ac4 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42570c5a ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42cfa22f ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x454a97e9 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47235d3f ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48b4c2f9 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cff5b5d rdma_resolve_ip_route +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50c6aaee ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5328d7a6 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5708e365 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5764b289 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x576fdbac ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58a77963 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59f590d2 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c1eb744 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c860dc3 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x621abe4b ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64b32fd1 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65c22fe6 ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x665c85a4 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x687f12c3 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x696c1e81 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69b0c0c0 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c1c9cb6 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6daecf4f ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e0bd249 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e859ee8 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ead7338 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70a3b6b0 ib_sa_classport_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73b8277d rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x742d44ea ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74486986 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x747ebe5b rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7831d72b ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7887b418 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78e5fc97 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7975fc6e ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x798ba922 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ad2cfaf ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bc9c816 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c19887c ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f58518c ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80addf31 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80e7973e ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84b9d8fc ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8630eeee ib_create_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a13cf6d ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b33ffac ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e26be0c ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e4c8531 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x904d10a2 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93e27209 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x977f0f53 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x994b5cbf ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b9cf9a rdma_addr_find_l2_eth_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a1cd50d ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bcfa7b2 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d9807c8 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa136b53b ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3fdbe47 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5f41b0f ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9e6ba78 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb530b492 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7253ad3 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8cd0333 ib_modify_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbab8e839 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbeca8ed9 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc03d5bfb ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0456019 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc16307c3 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3e2d7eb ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc456fec8 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4864edd ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc62fb5a2 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6f60977 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7858b18 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9d1500a ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc236ac9 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccc1de70 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf9983f7 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfdd8839 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd314e41b ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd664508e ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd70e983c ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd87df9f6 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd90a1e2b rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbb7c2f0 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde3ef571 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdedb79fe ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe03f4b24 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2004921 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3119ca3 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a8d4eb rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe63075c1 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6aa7181 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe76a3c05 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8b1af59 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe92ae595 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebcc34f0 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed128cdc ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed81f8cd ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee5a66bf ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef9ca52b ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0ef5af0 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf28477b9 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2decba0 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf453a97f ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf580ede4 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5cc23da rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf64417db ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7454df5 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf863f3ac ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9e6abc1 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb88bbeb ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcaf38ab ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5397d778 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8c99aa46 ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc313045a ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x072d1df8 iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x123a4161 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x14e5c66e iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1b54cb67 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x26b013ef iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x27f23d05 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4a42c0c6 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x684147de iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x71d4a8b5 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x893098e7 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8fe99882 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb3df08c4 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb9c37b15 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcb647cab iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcca22a29 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0e780629 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3e66db94 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3e9e327b rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4a359c9b rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x52f81933 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x55d5eb5c rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5ec56439 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x60b8a511 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x612e1891 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x637de185 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x85ec773d rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x96c97aa9 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9947792c rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9c6a8ce9 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9d639328 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9f766ec7 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbe0273e0 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc3b1c0ac rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc3d247a4 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd2c70a3d rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf42f048b rdma_listen +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x48f93f58 rxe_remove_all +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x9e9c0061 rxe_add +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0xa405e423 rxe_set_mtu +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0xa6ad0936 rxe_remove +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0xfa0b5e38 rxe_rcv +EXPORT_SYMBOL drivers/input/gameport/gameport 0x0bbd96ac gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2fad29bd gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x54b0d9b3 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x725608b7 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7d088210 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9691b310 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9dce59f2 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xbef93baf __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xce39af41 gameport_close +EXPORT_SYMBOL drivers/input/input-polldev 0x0691a93b input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x27dfdbe2 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x3a747335 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xaf67120b input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xd1aaa75f input_unregister_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xe0c5303b matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x09d55172 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x5b9e5c1c ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xabfc2b00 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 0xbdeda468 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x0f913723 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x311c42c0 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4f51314c sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x9d838df0 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xa8d70ad5 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xdebac984 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xe4dede0d sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xb94ca4be ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xf1a4a729 ad7879_probe +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1387150f capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x210ccd13 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4d467db3 capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62bc7248 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x64c8d552 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7d35b9c7 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8bd30596 capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaf7a79df detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xca141e2b capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf94c3df1 capi20_release +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x04188826 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x04cd6e68 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x074f0c36 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x16474002 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x371bbb75 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x501c5d17 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6c2c2fdc b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x766e8a87 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8d19f86e b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa35c2b13 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb04129ce b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbc80e38c avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdc3b3702 b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe3916765 b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe5624998 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x2af91d18 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x60d06b59 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x75a810be b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x7631fcff t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x81985614 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x98419d26 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb4e2463a b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xbf89acab b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xe638d1e9 b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x23148237 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x31294c7f mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x98bdec49 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xe0d7aef7 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xc7cca03c mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xc9a7c903 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x7a1e9014 FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x8bc4b67f FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xd3b7cef2 hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0ec1296 FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x084ffc0a isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x6f766b6d isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x802fd35c isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x885a0a13 isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xf33dba4d isac_irq +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x4da67ca9 register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x72787eb8 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xacce3c33 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x05f4c99a mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1e4a898a create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x21eb9304 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29900372 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30643140 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x38094d17 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4073c2f8 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x41da74f4 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4a029141 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4f1a0f04 mISDN_clear_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 0x5bfad6e3 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6e4b7bf3 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6eb103fc recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x75bdf9f1 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x786d7980 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7a27e51b mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7e136de2 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8478fe10 mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8549d8d0 mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x93e87f39 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9b664bc5 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c9f120e get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xad831170 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbfb21b4a mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc067f9f0 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc525fd78 mISDN_clock_update +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 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf84ae11f mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xff8c01b2 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/bcache/bcache 0x0c4d0956 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0x66d28e22 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6969b5d8 bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7b55ca4f bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x88137491 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0x9e8b3cee bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa5d6337f closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0xab2d2b84 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xad29a6f5 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaec09a2b bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf77343c bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc0b9ef00 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc7d47aa2 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0xca580595 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe47e0829 __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe67c2d16 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xfb361a76 closure_sub +EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-bufio 0xa7978f56 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-log 0x35c4cdcf dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x9dbff640 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xdfa0dc8a dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xee67ec81 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x05b251bf dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x13c81dd9 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x431fd35a dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x80cd94b4 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb5420601 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xce4b27b6 dm_snap_origin +EXPORT_SYMBOL drivers/md/raid456 0x26bf558c raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x23889013 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2dd5d141 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x46849b55 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6325166c flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x646bcca3 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6d7b3d40 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x75e97054 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x799e7a27 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x80b84039 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x85150ec3 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbc6815f1 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd3a2898f flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe445170a flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0x31c7e830 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x44d95d7e cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6cc7797c cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc34ffd80 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0xd49cee38 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xd01f4983 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x03587ba9 tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0xe859a779 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x06bdf777 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0d113700 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x121d493f dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18ae3d3c dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x19591134 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x22d6ce4a dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x284ab269 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x28ee2ae8 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2d3add55 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2e739134 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x34315a03 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3c958729 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3f7224d5 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4741c847 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4d3b9a9c dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x50d0bc57 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x50ff7580 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2e46c4 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x65886421 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x78d62338 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x79c275a1 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7ba5d8bd dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7e48545e dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x83c67059 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8d82b160 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8e47dce5 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9bcc5f18 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9eb79bee dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb8076df1 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbd65d649 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc47113fe dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb576668 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xde784917 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xec6fc592 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xec7ed3e3 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xef21bfc9 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc376e1b dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfd33aafa dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0xb26d208d af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x0bf6be9e ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x4f779d83 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0c9d7f86 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2369a2e6 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x25294edb au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x328ebd9f au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x39fca82a au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9192bac2 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd88a6fa1 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xfa311e85 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xfddf98f7 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x6cfebfa7 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x4e5c861a bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xe1dd52cf cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xe81b1758 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x9958eddd cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x78ae297c cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x7cbe5bc0 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xfc976ed7 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xcf41c3c4 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x2f28340e cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xe9a556bb cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x9f59d02b cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x619a3fc7 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x8065a48d cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x248b7864 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x569866b8 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x77316bae dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb756aa9a dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xcff19957 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0524ee72 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x259e7213 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x30e980b3 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3da9cf4a dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4546b5f3 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x49ed2852 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa0a8d71c dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb5e1754b dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xde7020de dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdf5e43bd dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe374d095 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xed283af1 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xee5bbc6b dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf06c96fc dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf3bae0e4 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xab787c88 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4b5a17a2 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x738705a2 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x9d24d8ce dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xade9015a dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xca4f1d99 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xee294922 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x572cf862 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7642b6a3 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x93124f70 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xcffd0481 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xa3ba46d8 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xee8c4df9 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x3e38d44a dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x50eb0944 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x6da5bdf2 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x740c3bd2 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xb0dc0062 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xb176ddc6 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x893b56fb drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x5628f172 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x20345069 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x33569079 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x6c353cc8 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x1855bdd6 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xcd031eb0 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xb1cb662f horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xb1cb0819 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x356a3571 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xebc051a7 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x92820798 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x81792737 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x5f1ada3e l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x3045d739 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xcd2a2a8c lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x9eb3105c lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x1864797b lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x49cd4597 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x00266f8e lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x6bb810ae lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xbd28c36e lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xf2a34dbb lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x0776e67f m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x86211627 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x2d1c7034 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xf8133595 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x05d06573 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x8eb69631 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x122ff4ce mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x6e987ac1 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xa17c032f nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x30030e27 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x5da8d933 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xc7adb5e3 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x52afd70f s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x8f7c7369 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xa4c76a08 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x90822bf2 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xc38553ef si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x100bbca0 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xea656b76 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x6fb65b20 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x24f64982 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xba377268 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x0bc82c86 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xaeb0e266 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x6374697e stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xbf2918e4 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x443f963f stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x60ed091a stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xdd32dee0 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x4eabcac5 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xf80c2872 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xf5005882 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x233791fa tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x4683e725 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xcf4e5fe6 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x0117f3fa tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x651b866b tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xd3efd804 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x8ffcaf42 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x9ba87ea8 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x64fe0204 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x4b2da334 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xe28e14f1 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x892fb52d tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xabd9ae63 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x04b7fe8d ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x255a2c9b zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x3b32bb22 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xab87bf7f zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x122cccf5 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x2824f976 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4f0fccbd flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x61ba584f flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x94e17179 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xbc876d3e flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf7a6e60b flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x1999934a bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x6120556a bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x68dadfa7 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xe223c3ff bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x0bc774f4 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x2be69910 bttv_sub_unregister +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 0xe72d3762 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x30ff30a7 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5091596a dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x63c6d337 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x759ab9f8 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7784260f dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x792aa692 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9519807c rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc4082835 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfc1875c9 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xc33cf8bc dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x34f436db cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x37ddb8d2 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x8648cf06 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb35726d9 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe3834aaf cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6a8638b8 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 0x09013ec1 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x0a095d5b cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x1792d077 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x30bdf186 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6d5ca2c6 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xcfc7418e cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf8c4986a cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xc82327b4 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xfd45de69 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x365496a0 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x847b70c1 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x95c20996 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xe587ec06 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3a416f74 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4774d4e0 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x61f96389 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9e23dd75 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd531fc5b cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xdef0c41b cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xfdcc0f66 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0cf2082f cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x29adb7dd cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2a108b8b cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2bbf78ec cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x30a3b22a cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x35fd69f8 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3a5db5c6 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4b08bb2f cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x551c6592 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5abaaf25 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5c5a33f0 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x70b70b20 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x785fb9aa cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x82da7d07 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x842d80eb cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x853f5d06 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8c4c257a cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xba38c2e9 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd1ad77cb cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe3b1bb99 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x28aeee7a ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2918c865 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2c3df4c5 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x324deb95 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x41b982f2 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5788c90d ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5f3d9df1 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x68b631d5 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8803dac4 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8b3b8400 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x906420e6 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9636c057 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd3413e14 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdf1af836 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe49bb5de ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xeeaf827f ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf03773c8 ivtv_ext_init +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 0x208f40c4 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x485d24cf saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x64dd9329 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x762fef31 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x770f2188 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8976b6b2 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x98caed04 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9e6fafb6 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xaf561767 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb6ecead1 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd5846e9e saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xde8cd756 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xec8acf0c saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x1ec58664 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x35e5847c videocodec_detach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x3b10791a videocodec_attach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xbfd663d6 videocodec_register +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xf28f8ea8 videocodec_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x02b2275d soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x2ce40b31 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x7041586e soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x7da9ae19 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x93ac3b4f soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xbeabeaa4 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xc0650be9 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/radio/tea575x 0x08fd77e9 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x1d41378c snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x205bf021 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x3e6d5d66 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x7bc2709e snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x8348038a snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x968f4f53 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x44f95577 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x504cc607 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x901473dd lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x903093dc lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xbc2bdb80 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xcd0ed409 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xe8389559 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xedccd356 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/rc-core 0x462a89d9 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0xc38bc5a8 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x30af2945 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x0c141397 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x4d073e80 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x75476f20 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xaa01999e fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0x766b88ff max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x7812f39d mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xb394890e mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x28bb8c8b mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x7eb9cb84 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x467b03b8 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0xbf906f9f qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xb736a3f3 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x12f2d926 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x660758d8 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xe932a7fe xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x2e48654b cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x4eb3617a cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x07946496 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x45865cbc dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6ed31370 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7c9087f4 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xabcfc0bb dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc07fb583 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc36384a8 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdec38137 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xedbc23fd dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x447b403a dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x53fc2aac dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7cfafe2e dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc9036c4e usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xdc877aec dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xeb290086 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xfbb8ba78 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x4e7894c3 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 0x08239861 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1c150c11 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5a625a56 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x67df17f9 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x76633915 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa2afa480 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa84c3c9e dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb8f99794 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xce38397a dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd64da456 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf9dd9cc4 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x2a4c1f55 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x6a6be3a0 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x187951ef go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1995fbc9 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1cdcca08 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x223966e7 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x538b1c0e go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5e844875 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x763464d5 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xaad7321e go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd90941c2 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x44e33eb9 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5b56db46 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xabc49c7e gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb12b0812 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xba62521a gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc54d4b59 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd30e625b gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe8411be7 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x500f4995 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xe54adbbf tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xfa9d6c4b tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x0d854ebe ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x26424f74 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x6cccdf6b v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x9949a7a7 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xcd5ac1cc v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x0bd39a98 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x321d4b7a videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x62738cf2 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x79cee5d2 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xd35415e1 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xe4d49d6c videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xbedcac5a vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xe4abd5c4 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x005ae76e vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x129ff7d9 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x81a6a4f1 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x99df370f vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xbde543b2 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xe558cc49 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x63231f91 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09b77282 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0ceff6b4 v4l2_of_free_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x151ab475 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1895328a __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x19ef71cb v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1da92be8 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1f4c817d v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x27dd6b1c v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35081297 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x39abd9f6 v4l2_ctrl_new_std_menu_items +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 0x42ba45cc v4l2_of_parse_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x451f7185 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45fcd9dc __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4a2e11f4 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4d7334ca v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4ec2b896 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4fd833f2 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x55b0dbd6 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x56d4272c v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x587d8227 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5ef853e5 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60c923c1 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x62989ba0 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x63e8ab96 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x64e8555f v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x655f4f30 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x678edb55 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6a8371d8 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6d95d434 v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x711fdb3b v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x72c61fed v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x783ff11b v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a7afbc7 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x807e77d8 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x83e7a213 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x856f4b06 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x85b20f81 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8a61e600 v4l2_of_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8cd67950 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9081bc28 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x947ba5ff v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb14525da __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb1ece4b1 v4l2_of_alloc_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3281b33 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb5334b3f v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb7da2b6c v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcc459404 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcd984505 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda0b4c1 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcffa7926 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd2d0ff25 video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2c33173 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe4b15475 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe72181d0 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe72ace2f v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeb4a7be9 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xebc02dec v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xee68b941 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf01cb38f v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf1342707 v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf2a04dcb v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf34cb286 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf9034d62 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfd8db7b0 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfeeba945 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/memstick/core/memstick 0x08f6e4a5 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0ecbb3c8 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x35593400 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x45d2395b memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a71b8ec memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5a22a680 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6af36dd2 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6c5168cd memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa5987a36 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd98cd104 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdd0e6e95 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe015c27a memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe9554683 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x07212d67 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0ac46ed5 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0f30212d mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x273ba9d4 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2a75f4cd mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2cb20d87 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3928112c mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3a940c91 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6076bd3a mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x63a84988 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x72adcd8a mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x79c5244c mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8d8b3ed0 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x966b49f2 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x98518522 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa0d39239 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa0ddd239 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa4d8edee mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa846f293 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xadefff57 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb0d17d59 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb636b70e mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb668b9b3 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb6dfdff7 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc7f4fb8c mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd887a8d3 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe8e2c06d mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeff13c06 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf6c3786f mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x018db1c2 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0a4d2237 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1e2fc943 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3519ac8f mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3e89ed0a mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3f5e1d30 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4780719c mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5f181b0a mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5f2ceda0 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7b6b2e15 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x81c32598 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8fe5a0ba mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x917844c4 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9933acfa mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9a75424d mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9ffcb3f1 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa09dea3b mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa5b9888c mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb18072c2 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbdda99e2 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc26a1add mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xea2053b9 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xefbf7c98 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf081837c mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf097250d mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfc612366 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfe8a7edb mptscsih_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0x4943b6fa axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xa6e32582 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0xd93bfdbf axp20x_match_device +EXPORT_SYMBOL drivers/mfd/dln2 0xe94de96a dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xea49a35c dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xefc4bcfa dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xdeaa0d65 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xef9c96a9 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x10761e5f mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3d86064d mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x48f4828e mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x703a9876 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8188defa mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8260c59b mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa04c3853 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcbc1bfa1 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xce21303a mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd42d138b mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe76f32ca 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 0x0539a740 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x10c37b37 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x37031cd9 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x9456a262 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0xa8611ef4 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xb85ff72f wm8994_base_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x67a1f2d9 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x8c0e898d ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5b0ba682 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x282f5b8e c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0x67a22c96 c2port_device_register +EXPORT_SYMBOL drivers/misc/ioc4 0xcfe2e47e ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xda2d246b ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x0584904e tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x2bc569ab tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x37b80ebe tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x40371b60 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x564e5c0d tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x59ccd780 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x7f5eab4b tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x9b8fd377 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x9c608c6a tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x9cd67e41 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xb7ba2d3a tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xeb4b4990 tifm_unmap_sg +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0xc58d26f8 mmc_cleanup_queue +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x44be9fa1 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x53157159 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x562c5eeb cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa643bbc2 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa6fe90e0 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc0fe634c cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc3504e0e cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x25c19434 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x2f285ee9 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x3d423c3e do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x876cf07e unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x95293e77 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xcbea83c9 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x839d1f3c simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x410ec34f mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0xa3b35f40 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/denali 0x2fdd1dec denali_init +EXPORT_SYMBOL drivers/mtd/nand/denali 0xb76e3833 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x4077c768 mtk_ecc_enable +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x5437e775 mtk_ecc_disable +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x6214871d of_mtk_ecc_get +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x67dc4d5c mtk_ecc_adjust_strength +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x6df58afb mtk_ecc_release +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x76e53683 mtk_ecc_wait_done +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x77ecf26d mtk_ecc_get_stats +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0xf00129a1 mtk_ecc_encode +EXPORT_SYMBOL drivers/mtd/nand/nand 0x01ca1461 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0x1478029a nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x3d3e966d nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/nand 0x6f29406f nand_write_oob_syndrome +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ab2f791 nand_read_oob_syndrome +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8e21e089 nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0xe08097bc nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0xe63d913b nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand 0xf5fdf501 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x648d7c84 nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x947a4ce0 nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xf68de2c1 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x1c063857 nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x534f75e5 nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x507a410b onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xbcc01abe flexonenand_region +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x250311a1 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3d419076 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5ff6ac69 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6b547915 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9670d74e arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9b2965fc alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9de054ab arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa0573ce1 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbf3b6916 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfd075959 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x06e3f72c com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x319b57a2 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xe8a72620 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0fcb59c3 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x10217e09 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x18753de7 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1acc2dcf ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4a82a4dc ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x587874d2 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5f474597 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9e904865 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb2f1f11c ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xddfa8cda ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xb8686cdc cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x15b177d4 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1c588976 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3677b0db t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x38d23764 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x44426f0e t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x45e56f76 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x474a5b21 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x48977f63 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4dc91aeb cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x981de9c0 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc3ecc870 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc5e3f47f cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd2986f24 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xedbbadc7 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf0f7ee82 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfab15521 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0c43a498 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x15e27054 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x17128298 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x27321b5b cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b880136 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3e73bf56 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x44df544d cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x490fe6ba cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4d8992cc cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4dd9b1a1 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5202640a cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x538c309a cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x64f9b540 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6503fcc8 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x698c0dec cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6df8db1c cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x73bf39f3 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x807f9a2e cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x83cb4b40 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86b663bd cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x88b9a5cc t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8b2e9646 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9da8f03a cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa46621db cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa7a2547e cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xac4d9085 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb2ced309 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbf8dcd1e cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc369273f cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd7d4d2ff cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xda34725b cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe0decd83 cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe2922424 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe3751087 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe728e425 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfecc8fc2 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x43fdedc3 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x4b560a63 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x85899f8b cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x86ddf0eb cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xd7fa9e6b cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x022ec15f vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x437ec3a3 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5321f33e vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x852bcfb6 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8630a484 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd407a55f vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x63eaac75 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xc10a06e4 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/gianfar_driver 0x79f28897 gfar_phc_index +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x9a8f561c i40e_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0xf2e003c5 i40e_register_client +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x039358d2 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0dac4775 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e3100a9 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x118cb1af mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17cf9c8d mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1efde197 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23292f00 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2407041a mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3beff55c mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e0489df mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45515528 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bdc67e0 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53c87455 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55fd2df4 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63adeb56 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68a41e15 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7058699f mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f2194ce mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83ed3dd0 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88be3b08 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8af6e920 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e7786c3 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91286b04 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c2b12b2 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d9fcf61 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa23901c8 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac8c7f63 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0ac5a09 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb711c5e mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd4fb575 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf6fc9b0 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdac933cd mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf56f859 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2f7f26b mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe869a445 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3a3abe0 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf55a9aae mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf77e2efd mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7cf19a9 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd8c4c21 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00a7c3a4 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x013e1eff mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x026b4f71 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09db332b mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c07a75c mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0db87707 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x135ffb6d mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b789151 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b854333 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f026657 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39999deb mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x441157ef mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44f71fc0 mlx5_del_flow_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ad958c7 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d7a2f17 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x504707e1 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5145e1cf mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57debb3d mlx5_core_create_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x585f992a mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59b6c092 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59d0c3ba mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5de6f32d mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fea88af mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61310d99 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x683f3f72 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e984589 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7216f9c0 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8047ac66 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x856b89d0 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8675fa74 mlx5_core_create_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91010f53 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91fd0812 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x966698b0 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a6ba99e mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c624e9f mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa011a557 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0d40cbe mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa39ef98a mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6d14708 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb34039d1 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb77eeba8 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe0621ca mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3c6b0ff mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbf731f6 mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdad829e mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1182606 mlx5_core_destroy_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3aa22ef mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd456f713 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd58eeaca mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd92752a3 mlx5_add_flow_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcaa5eba mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd855939 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe59e4b3a mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5a8b423 mlx5_core_destroy_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8c68af7 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeaed5e33 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefb437b3 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf13b7ac7 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7c3345c mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9186bb4 mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdf8bb35 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x05890858 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ab0c687 mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x16dc85e5 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2286f5d9 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x346f7f64 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x39a96739 mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3a856183 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3ddc74f6 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x714dccc2 mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x72a05371 mlxsw_core_resources_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f539b8e mlxsw_reg_trans_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8fa2c380 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5ff38e0 mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb5c8545 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd227ea06 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdbe9cd9f mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc517e9f mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xec51e246 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x8325a060 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x49cdcc26 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x5d0e705e hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x9b3a3b57 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xdf68ce54 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xee09980f hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x276938db sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4e967908 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x5630afbd sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x57f83c07 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x6dc90b5c irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x8018b1ff sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd44d1e57 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xee532b85 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf3421488 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xfdf473ee sirdev_raw_write +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mii 0x03d0fe0f mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x0e96306a generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x1969b071 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x1a8b1c26 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x51d889e6 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x58a48050 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x943ffb6f mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xb373d269 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x2fb8e801 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xd92335f3 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/ppp/pppox 0xb1592c96 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xd19bb65e pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xdf3f80b0 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0xc5e231aa sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x3a209d45 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x5fa8ac92 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x61c82b61 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x88411f9a team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xb143527e team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xb85c3597 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xc667d087 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xf24b2622 team_options_register +EXPORT_SYMBOL drivers/net/usb/usbnet 0x4698e128 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xccabbfdb usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xe5778a43 usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x030a224b unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0d60c86d hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0x392cb1bb detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7841768f register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x88cc37d7 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8b3c8779 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9823b4ee hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa77388f5 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbd3f96d8 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc1e63466 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd3bf2a9b alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x2f58bbe2 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x14155c64 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x18b14043 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x19c4787e ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x26f226c8 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2ae13836 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2de47030 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x64d6b814 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x92b4885a ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x92ddb0ae ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x933e2f64 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xeb8c46ee ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xeee0db4c ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf826766e ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1989319c ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1dff1ca4 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2c9d168f ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x30fb6245 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3dfae4d3 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4788c8d7 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x547a8632 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x557865ab ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x84ad42c2 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9fe7bce6 ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb81b66fd ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbd9652a0 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc34f6bf4 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe1ea6084 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe28def08 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe3ff4914 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x04f3ef9f ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x166620f6 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x20abbe4d ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x33daa238 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x42013f75 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa28f8cc7 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6a25f04 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xae26cafa ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb71c0d7f ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xdae98bb4 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf4932678 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0d46ff5f ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0f18741d ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x156b8d4f ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x18c02194 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x259d852f ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4905a629 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4e292d3d ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4ff2e9c1 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x58ceafea ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5e4ca5d0 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x60b136ce ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6784088d ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x67af27fc ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7f44e56d ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8329998e ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x85b63f9f ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8740b6d8 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaa9a5e44 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb5361f50 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbae56f9d ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd3159d14 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe24fe3a1 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xeb6df6c5 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x007f1a5b ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0352bb54 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06c41c9f ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08f73db1 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0db357b8 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0eaf6a51 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f18c9e6 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1652a3cf ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x182dac48 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19d1a40b ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b4e9e59 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d23351a ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x206602a4 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21bc51fc ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2456f03f ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27a2c0dd ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x287b38a6 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a146cd0 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d91d847 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x321a2aa9 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33cd797f ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x351f4cd2 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x370e3611 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x374c168e ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37ab628d ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x382e4ee1 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38f29786 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x399fae79 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a81ae79 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a938605 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3aa424b5 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ca5bb87 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x408a0fde ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41ee01b5 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x442aa7ca ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46df85cd ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47136fe4 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4974fcc6 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a27c3d9 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a6e14e2 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4cb6fa73 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4dc9bb3f ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e796c8f ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5048f1ff ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52bf28a7 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x555336e1 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56aff1ed ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58ee19a5 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a9c0ceb ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f2f3c19 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6407dc95 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x664a2325 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66ecadc0 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6700504b ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d910c9a ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70216aa9 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x719ae5e9 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7507c9ac ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75c0745d ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a89b17c ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7bf7e860 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ee9c5c1 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x812abc45 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81cce1fb ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84267a3e ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x881f340b ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89414fa4 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x898f496d ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d9d981c ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90e68b14 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x973bfe80 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9812c083 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f812276 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa88f8dc0 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac936588 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb0d47be9 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb25f0050 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3943310 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb402f848 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb52d6784 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5320337 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb578695f ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7449673 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7506bf5 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc12e6d23 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1ef9e17 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc239ea62 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc82ca623 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca482871 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd1f1556 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcebcd794 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcee0db36 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6333dd5 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde9cc95e ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe055265c ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe14d654d ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1955a66 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3133071 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe381404f ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe469acc0 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6132e90 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6bf9e1f ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf834ce2d ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc204e0d ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe4314fa ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x04f4acae init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x1cca9f86 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x60b120a6 atmel_open +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x11d21bb1 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3a358b8b brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x444b82c1 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4b388d21 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4ec38826 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x527ce0d4 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x530eff51 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6148f3f7 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6834ece9 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x68fddd76 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6f9b367d brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8353c652 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbceaaf05 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf81552e4 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x54401c2c reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xc76408f1 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xf5ffc9bd init_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0bd1b06a libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0c4ced2c libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x10e90cac libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2f1cca30 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x424ad8b2 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x43a597f3 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4fa79e96 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x637b7ed5 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7872a851 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7bc6bad1 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x86e7d1d1 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x95ce0549 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x979c8648 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9acd4290 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa2076df0 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa828c6e7 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xac609997 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb17a8209 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb39c3992 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe0f5fc36 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfab7bd4d libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x00e9c007 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x01cc96b2 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0bc1c265 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x134e2f98 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d0f7bc5 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d5adc50 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d8e8f3b il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x216912e5 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x26229064 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x26978dcd il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2d13f4b6 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31723c18 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x37915ede il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3ad14d58 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4270d5ff il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x472039f9 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x482d7102 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4f01d948 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x532e48d3 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x564d1979 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5a9bcfce il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f1a67e3 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6106daeb il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x635e073e il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x641aa5c6 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x65623966 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x65cc2742 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x67c8f60b il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a584fda il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6bf895cc il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6df951dd il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6e9f8161 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6f171846 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6f92469a il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x709c0fd9 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7116a643 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x717f68c6 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7382e539 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x75de6a52 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7639d78e il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x778cdbaf il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a6bbd9e il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7d336935 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7dae1749 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x83506f6e il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86095484 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8928312c il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8bf99199 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8c509f4c il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8e708acc il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x903fbe09 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x92f1c54b il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9a69f211 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b8d49a9 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c464ba0 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9e385b9d il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9ee9e5d4 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa23208e6 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa429eb91 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa5d696f1 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae983f52 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb05248e1 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb0a4ca5d il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb4201c4b il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb57afac3 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb9beed29 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb9d0152f il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xba66afff il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbb527ebb il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbca20da9 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0937ff4 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc26fa0c7 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc5bb8413 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc79aef02 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc961b426 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcae8c297 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd22e0b20 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd2a330eb il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3402baf il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3cfcdeb il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd55751fe il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd6f124c1 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdc425c77 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdd51190c il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf81fb12 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe1963226 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe440714c il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe7d20573 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xebdbde45 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf62a811f il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf6470041 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa7fb8a3 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfb0a7b28 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfcc1ccab il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfd171752 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfd8c630a il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xff3f49b2 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xffb7dabe il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x165246b0 __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x184eebc0 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5047acc4 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7798ef97 __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa80efde2 __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc7cbd0fe __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd361ddde __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0c745752 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0cef368c hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x18e8b926 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x19627300 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x19636b1e hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x399638d2 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x55836973 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5ddde754 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6089b5b1 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x643952a4 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x66b9d7eb hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x67ed09e2 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x685c5e25 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6c1aeed3 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x76a43ff6 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x806a88db hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x87e2f241 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8dfda844 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9ab9db74 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9af7788a hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9bbea1a9 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa89e25d0 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4a11a63 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbbbccc70 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc8de4977 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x18e0e1d0 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1d0b4f09 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x36bed337 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x371c4bbd orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x478ba411 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x573756a2 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5dea5bf1 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x633ca6de orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x733e19ad orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x782d233f orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7a61169c free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7ee60958 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x83cb7a6e __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x87fafcac orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8cf0008a alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9d01bce1 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xcf631eda orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x5212c222 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0f89fbf3 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1028c3ec rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x12b52c83 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2a3a9d7f rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2d4082c4 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x316fc450 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x45daa4a3 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4ef6a1d0 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x53cda240 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x555068c9 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x599b4929 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x59f3d6f1 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5b3231f4 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5e00a9bc rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x61a3fbf9 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6289bd2c _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6e0c8f5c _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7132dcd5 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x72e80b93 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x77cdb479 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x78f66a4e rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7c189eff rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8046ac94 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8c3c0895 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x91cc9295 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9823eb1a rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x991e1315 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa7547282 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb2ffa633 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb9bb8e09 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc1b9d421 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc5f7b0dc rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc9f60cd6 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xca09d735 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xccfad0de _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcde6b5c5 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xda5d3f9f rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xde882af4 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe13382e6 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe6a67df2 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf6e86f67 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x446faa8f rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x8046a884 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb0fe47ea rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xc487ba1e rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x3f48941a rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8fc8a8b3 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc0f24ae7 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc270a836 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0305e935 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x10db8d06 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e4f48d1 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x39860163 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e97f2cb rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x403c38c3 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x40b48197 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4857bf36 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x52d2540e rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x606d8d2f efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6302adc6 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6e238260 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x702ceb6b rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x899d8767 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c48f4a1 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ecaf712 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90c202dc channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x936167e1 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9a789703 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa0034fca rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa37c1885 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa74c769d rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xad041b34 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbb856364 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf4c50a9 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd4b8e1e6 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd5e2615d rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd7cb9abe rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe37d79bd rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf128a915 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf5aae9e9 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x0c761edd wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x7a8dd998 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x8fb693de wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xeb16b5ce wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x8eff9447 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xbee845ad fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xbf935acc fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/microread/microread 0x7e44fe6d microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xa9c5c20d microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x2ba0c1a0 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x361b9384 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x9810d6ef nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xcc383382 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x34520582 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xdf1e5cea pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x09922ef8 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x3908f163 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x828ffc7a s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x45c7e217 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x67884a81 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x770caa44 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x827b7049 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa1367e96 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa1b6b5ec st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbb9709af ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc5474ade st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xcdc38677 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd5918b23 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x138454af st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x196bbba0 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1c3d5a58 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2c43f1cb st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x66cc54ae st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x68b9d173 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7782ed3e st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x86e671cc st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8ba96413 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8bd9d964 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x98ba8e69 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xab815602 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xba5bfb56 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc03c5dc9 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc53e0e28 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcc0eaebf st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcd4c9421 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcd62a49a st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/ntb/ntb 0x116694f6 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x1a9f73e9 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x5e8acde1 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x62848a7a ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x80a9f70a ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xa595d763 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xb2632554 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xcb3c0127 __ntb_register_client +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x17d263d0 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xe58b65ce nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x3f6f794f devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x0d064b0b parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x1256f56a parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x15acbff8 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x16d4e3f6 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x1b25cbe3 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x26518596 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x2ed5eb56 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x359a69aa parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x361d8903 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x367ed591 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x3d2865a5 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x3eb8e2f5 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x4136c66d parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x5f465cad parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x650f062b parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x650fecfd parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x6fe72355 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x722f4d5d parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x786f90f5 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x9df78670 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xa4952f71 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xa8558d3b parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xaf0a5a83 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xb0fd0230 parport_release +EXPORT_SYMBOL drivers/parport/parport 0xb9bf3ad7 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xb9e6375b __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xc2819a16 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xc466d878 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xd7ffd179 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xd80945c7 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xe14b71ea parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xf0334db9 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport_pc 0x180dde6a parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x256cb62e parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x02c2b48e pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2231ce5e pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x26d3bf60 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4b5d64c0 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x55ac5599 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x61dfb004 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x689a1f38 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x79b1e3cf pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x84fffcb6 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa5ef260d __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb36fdcbb pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb5ce8427 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb649ebef pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdd76ea29 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe15957d3 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf20e15d4 pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf4d15e1f pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfaaa60d4 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfcf001a5 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2e15092c pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4547636c pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6686b826 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xaee50d05 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb645cd75 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb94040ba pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb9a01527 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe2e06263 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xeb0e3aea pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf14315d5 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfb5cdfec pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x03180e82 pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x1675973a pccard_static_ops +EXPORT_SYMBOL drivers/pps/pps_core 0x30dbb868 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0x733ea4cb pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0x9b8f54bc pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0xb078d2d3 pps_lookup_dev +EXPORT_SYMBOL drivers/ptp/ptp 0x22cd9f9b ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0x81be235c ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0x85fefd80 ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0x9e8db39a ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0xf2a0c658 ptp_find_pin +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x1c783cc1 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3899e752 rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x75927c70 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x93bb8217 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x96246738 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xa3551fa2 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc29586b3 rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xcf0d2cb9 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd7d79630 rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xecaca559 rproc_add +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xba52571f ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x03d2c8ec scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x38958967 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x3ebc6854 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x49a14d70 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x08122d30 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x262d3d2a fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x27d1eb2c fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4b5c466f fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6768a064 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6b5d022f fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x76db1c72 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7ad808d9 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8afce8cd fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8b36940b fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x916c914a fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x96c222bd fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x08353c88 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0d8487e5 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x150dd8e4 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1553e698 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x21d794a5 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x303a76fb fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x33e43cb6 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x347bc7a0 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x38236057 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3c5d920c fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x48912fc8 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4a3da8ba fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x533e94f8 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x542704f5 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x54b24a7b fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5e67ec97 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x616de37b fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x627ff580 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x65f19549 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69ae3313 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6aac9ed2 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6eeed127 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x73c7fbb6 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x780d501f fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7bccc775 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8280baac fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x85672597 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x97178703 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x984733d3 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9f08f439 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0b22001 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa187dac6 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa192b46b fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa3311fce fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa90b41e6 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0293b8a fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb051d8a3 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb2527ab2 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb318db48 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbae4d956 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc4743546 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc9dd1c0f fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcb1cd597 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcfe5e01b fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd107a0a9 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd8266439 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xde4ccccb fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea2ac904 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf490f429 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfe1af3dc libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x326685bc sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x716df488 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7788fc55 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xf9c21846 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x19c3b1ba mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00ba2cc3 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0a934b62 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0d15a192 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0d21acab osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0f5424c9 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x166d6a70 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x181c5dd1 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x19a0ea45 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1c34ecd9 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1f88b42b osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x216f3b28 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x38c1ca67 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x44b9efe5 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x48567ae0 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4c6d4ea8 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x670c1bbe osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7d8e709f osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x83e62351 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x86ae357a osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8be42eb6 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9fd0d839 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa28b7c75 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa9004b53 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xabd52964 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb1826a9a osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb4921e17 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbe34c44f osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc03f8a85 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd4b5e0b5 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd7dc6732 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdab21994 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdf7d24e4 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe9bf242d osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xef492e0a osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf1df08eb osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf7277cc8 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/osd 0x1ecbbf0c osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0x51873901 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5a9dc1cc osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x6ef7828a osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0xe8f63682 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xff8994c4 osduld_device_same +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x08682524 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0cf01db6 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x149ee6dc qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x17c6d654 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3825864f qlt_put_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3ef6da51 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x48596047 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6a50a51b qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x807d65fc qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xed089363 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf879b868 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfff62c53 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x0e09da7c qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x2823d887 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x84d77e90 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x96b70eb2 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xb866653b qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xba9c1e5a qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0x46e8f2e2 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xb57d69e9 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xb718b553 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x34e04b04 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x449196f2 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x482720fe fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5be9b37a fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x692ae72f fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7b85f5a7 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa0b28519 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbf5d2e47 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc01678e2 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xce9f5562 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd01e227b fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd1b404d4 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x00e76858 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x155bfb06 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x180c0598 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1ae50d32 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1f3698b4 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2145d8a9 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x234cfbd1 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x359fa5a5 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3ed8c493 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x42990dc7 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x50419684 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x54bee36c sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5ff5d905 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6f8567d2 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7edfff58 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8284379e sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8e1a70e7 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9fa683d5 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa442e83d sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa8046f28 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa95bffd4 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa9def2e2 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb897f773 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc16b6536 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd248e38e sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd7083a56 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdd46670e sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe07678c8 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf79e527b sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x64321a46 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x8184609e spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x9a548b91 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb865d0ba spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xcc784d97 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x3eeec4ad srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x609bbfc0 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x74583e17 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe8af9e46 srp_rport_put +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x63de2015 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x7b630a34 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x284da0ca ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x33a3078c ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x403ebec9 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x574e1e7e ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x7eca7ca7 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x80ae27ca ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x9d7856dd ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xac1777c1 ufshcd_read_string_desc +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xb0d93d3b ufshcd_query_descriptor_retry +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xce87df5d ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xe2022522 ufshcd_read_device_desc +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x10dbfd69 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x97571248 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/ssb/ssb 0x0b5ccfa9 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x113756df ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x273964bc ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x3494c94a ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x4f1ab514 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x4f46b8ab ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x5e25405c ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x60b2d19e ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x63c1a75b ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x6849533a ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x7287c333 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x9387dcd7 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xa72e7854 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xb77e51a6 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xba87ed61 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xbddf7096 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xcb3b7abc ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xd6bf7934 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xe7437b1c ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xfc0405ac ssb_device_is_enabled +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0786c8d2 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0898b47f fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0df854d9 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x165f092f fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2c75eb7a fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2cefbedc fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x30155db5 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3fffc67c fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x48d30295 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x50f62af8 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x60a1ab0e fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x697d573a fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6f19a67f fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x76b35821 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8cebfdd3 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x93c28790 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9c92fa69 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc271ca60 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc7ecfcea fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xca52fb3b fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xce018e84 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdb46672a fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf3e44631 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf529f3ab fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x4f195824 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x01d1e0d1 ade7854_probe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x000c507f libcfs_debug_dumplog +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x01fef7b4 libcfs_register_ioctl +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x06443cdb cfs_wi_deschedule +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0b15026d cfs_hash_for_each_empty +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0d1b8a30 cfs_percpt_lock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0de6c369 cfs_cap_lower +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0e4820ab cfs_percpt_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0f5eff79 cfs_percpt_number +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x117c8a95 cfs_cpt_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x15565c7f cfs_cpt_set_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x1e8cdb47 cfs_race_waitq +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x22924b94 cfs_hash_for_each +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x23e25c18 cfs_wi_exit +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x23f6f445 cfs_restore_sigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x247da28c libcfs_kvzalloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2663147a __cfs_fail_timeout_set +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x286ce5ba cfs_hash_bd_add_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2dbe54b2 cfs_trimwhite +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2efcc0e6 cfs_block_sigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3009b1a2 cfs_hash_del +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x30e15cc9 cfs_hash_bd_peek_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x31fc5082 cfs_crypto_hash_update +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3658dc0c cfs_hash_add +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x37175882 cfs_expr_list_print +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x377f93fb cfs_srand +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x38828b92 cfs_cpt_unset_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3a62a183 cfs_cpt_set_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3c1285bd libcfs_subsystem_debug +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3d5e6098 cfs_race_state +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3ea730c0 cfs_gettok +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3f0d9281 cfs_wi_sched_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4062f92b libcfs_run_lbug_upcall +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x411db754 cfs_crypto_hash_final +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x413056d8 cfs_cpt_weight +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x42e22feb cfs_cpt_table +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x438e735b cfs_hash_for_each_safe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x44688a0a cfs_block_allsigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x44839bbb cfs_rand +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4a99af72 cfs_clear_sigpending +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4d3b4eaf cfs_fail_err +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4d89e988 cfs_block_sigsinv +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x52b9c7e9 lbug_with_loc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x52e9cfc1 cfs_cpt_current +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x53b383e4 cfs_cpt_unset_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x58a7ee00 libcfs_catastrophe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5c013b81 cfs_expr_list_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5ce62c0e cfs_cpt_table_print +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5d73c3e3 cfs_expr_list_free_list +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x62289d65 cfs_array_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x66ea4400 cfs_hash_is_empty +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x67398404 cfs_wi_sched_destroy +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x67ddedc9 cfs_hash_getref +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x68497dbf cfs_cpt_number +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x6c147ea0 libcfs_kvzalloc_cpt +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x6c605eaa cfs_cpt_unset_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x6e6b8b14 cfs_hash_hlist_for_each +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x71e3804b cfs_crypto_hash_digest +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x71f662a3 libcfs_debug +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x752858fb cfs_cpt_table_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x763e175a cfs_hash_debug_str +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x7d93cded cfs_cpt_of_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x7f7b182a cfs_hash_for_each_nolock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x7fda989d cfs_fail_loc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8151c3aa cfs_cap_raised +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x87e201ab cfs_hash_bd_del_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8b8f321d cfs_crypto_hash_speed +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8c6be9ab cfs_percpt_lock_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8e61d47b cfs_cpt_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x93896a8b cfs_crypto_hash_init +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x940ed192 libcfs_stack +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9879b229 cfs_get_random_bytes +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x98f0e065 libcfs_deregister_ioctl +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9c3aae35 cfs_hash_size_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9f82f712 cfs_trace_copyout_string +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa2b68b2a cfs_array_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa711aec5 cfs_cpt_table_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa9088531 cfs_expr_list_values +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa9dc74e2 cfs_trace_copyin_string +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xaaf59b75 cfs_cpt_set_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xad019238 cfs_str2num_check +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xadb100a9 lprocfs_call_handler +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb53b5569 cfs_cpt_spread_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb6f8555b cfs_crypto_hash_update_page +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xba8132b3 cfs_hash_for_each_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xbada117b cfs_cpt_clear +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc0ea7fc0 cfs_expr_list_parse +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc2911d96 cfs_expr_list_match +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc77a24c3 cfs_cpt_set_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc86ee1b1 cfs_hash_bd_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc8d5200e cfs_percpt_lock_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc93905cf cfs_hash_cond_del +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xca7a4ee7 cfs_hash_add_unique +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xcf61bacb __cfs_fail_check_set +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd0d8d08a cfs_cpt_unset_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd1fefbcc cfs_hash_lookup +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd46225d8 cfs_percpt_unlock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd64c253d cfs_hash_debug_header +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd688fe94 cfs_hash_findadd_unique +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd96f406d cfs_cap_raise +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd99d9f64 cfs_hash_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xdf2789c0 cfs_curproc_cap_pack +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe2f91ce3 libcfs_debug_msg +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe3bf6897 cfs_percpt_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xeccafa5c cfs_cpt_online +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xeceac781 cfs_fail_val +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf03bdf11 cfs_wi_schedule +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf2c02048 cfs_cpt_bind +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf3565b71 libcfs_debug_vmsg2 +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf372d1c2 cfs_firststr +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf47e16aa cfs_hash_del_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf52e4f4e cfs_hash_rehash_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xfa756153 cfs_hash_bd_lookup_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xfdf00c70 cfs_hash_putref +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x0090e935 libcfs_net2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x02c69fd1 lnet_copy_iov2kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x12533a38 lnet_sock_getaddr +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1366b7ac LNetSetLazyPortal +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x17f7282c lnet_connect +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x19670622 LNetNIInit +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1a60d439 cfs_parse_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1ee5f15e lnet_ipif_query +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1fe16fd5 LNetGet +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x228fccf2 lnet_unregister_lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x2aa9953d lnet_cpt_of_nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x2ac93e90 lnet_connect_console_error +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x33202a6c LNetGetId +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x3c779ee0 LNetPut +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x3f4f5b46 LNetNIFini +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x4520aef1 lnet_copy_kiov2kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x473ad33b LNetDist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x48f163c6 libcfs_str2anynid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x50345570 libcfs_str2net +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x55db5324 lnet_iov_nob +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x58a1ca89 LNetMDUnlink +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x5c40d9e3 lnet_sock_setbuf +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x5e91cfec lnet_copy_iov2iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x5fee352c lnet_acceptor_timeout +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x61f784b2 LNetClearLazyPortal +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x64cdea3a LNetCtl +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x66d449b1 lnet_ipif_enumerate +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x6a120298 lnet_notify +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x6e30f31d lnet_parse +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x722c76e5 LNetMDAttach +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x786b467a libcfs_nid2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7d59a7fe LNetMEInsert +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x83d795e4 cfs_match_nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x86428d4c lnet_sock_getbuf +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x8e18dc7c LNetDebugPeer +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x91bd44be lnet_sock_read +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x9674326f lnet_sock_write +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x97f5966b libcfs_lnd2modname +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x9de986d3 LNetEQAlloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xa56de08d lnet_ipif_free_enumeration +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaa414970 LNetMEUnlink +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaa9b477e LNetMDBind +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xade657cc libcfs_next_nidstring +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xae286a3b the_lnet +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb3235c5b cfs_nidrange_find_min_max +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb75f7953 LNetEQFree +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xba1dc50b lnet_finalize +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xba5566d2 lnet_acceptor_port +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xbf0760a2 LNetMEAttach +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xccc45639 cfs_free_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xcf4eb544 cfs_print_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xd1c2f3e4 lnet_extract_iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xd38497c6 lnet_set_reply_msg_len +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xdc9abdd3 lnet_register_lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xe3cca590 lnet_extract_kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xeaeb6565 cfs_nidrange_is_contiguous +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xec1f56d5 libcfs_str2nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf1b316bf LNetSnprintHandle +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf30efdf5 libcfs_lnd2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf5cc68da lnet_copy_kiov2iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf86726e1 lnet_net2ni +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf8a8644b libcfs_id2str +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf94025d1 libcfs_str2lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfa106804 lnet_counters_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfb72c57a lnet_create_reply_msg +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfe7ca17c libcfs_isknown_lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xff0919e9 lnet_kiov_nob +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x07543483 client_fid_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x19a6908f client_fid_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x1c4bb5f9 LU_OBF_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x33c0d5c6 seq_client_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x375e6f8d LUSTRE_BFL_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xa5864558 seq_client_alloc_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xae61cff5 LU_DOT_LUSTRE_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xc997a02f LUSTRE_SEQ_SPACE_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xecee2727 LUSTRE_SEQ_ZERO_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x05f2c4e4 fld_client_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x3c225f8c fld_client_debugfs_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x47cb3043 fld_client_add_target +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x5f0567aa fld_client_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xa80a4eb0 fld_client_lookup +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xd177bf92 fld_client_del_target +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xd665fea4 fld_client_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0x3537dfd8 ll_stats_ops_tally +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0x5db6c1f7 ll_iocontrol_register +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0xb5b4ba69 ll_direct_rw_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0xcd3cde92 ll_iocontrol_unregister +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x648a76cd lov_lsm_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x6dab652e lov_device_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x8b461968 lov_lsm_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0xf0bec01b lov_read_and_clear_async_rc +EXPORT_SYMBOL drivers/staging/lustre/lustre/mdc/mdc 0x8ae2ef7f it_open_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/mgc/mgc 0xdc287f95 mgc_fsname2resid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x013552ec cl_io_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x017c105a cl_object_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x035852d0 lustre_swab_llog_rec +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0605a0f8 lustre_register_client_fill_super +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x066bb3fe cl_env_implant +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x078c3515 cl_page_prep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x07aa68bb lustre_swab_lustre_cfg +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x07d45876 obdo_set_parent_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x083942ff class_del_profile +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x089ee797 cl_page_header_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0a0af8c8 class_import_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0a9c90fc cl_req_completion +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0c378d79 lustre_swab_llog_hdr +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0ed4f821 cl_object_attr_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0ee50da8 lu_env_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1044895e lu_object_locate +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x10ab6c97 class_register_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x11495519 lprocfs_write_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1230d912 lprocfs_at_hist_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x12aa1adf cl_index +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1334d88a cl_2queue_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x14107365 cl_site_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x14491eb9 cl_page_delete +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1650e94e cl_lock_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x16b02cb7 cl_lock_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x17668d62 lprocfs_rd_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x177eeb39 class_incref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x185ea6e0 cl_env_nested_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x19af1100 cl_page_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1b7ec807 lu_cdebug_printer +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1e325ea2 cl_cache_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x20752981 cl_2queue_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x20ee888a llog_thread_key +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x218eb1b2 llog_init_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x21c0dd34 lprocfs_wr_uint +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x22017938 cl_page_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x221826f1 class_parse_nid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2289b690 cl_page_unassume +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x232c466c cl_page_list_splice +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2452914f llog_process +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x24e1671d lprocfs_counter_sub +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x252407df lu_kmem_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2547efae lustre_uuid_to_peer +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x275cdc7a cl_env_reexit +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x286860f5 class_handle_free_cb +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x297cf5e0 class_handle2object +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2994394c cl_offset +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x29a0f664 lprocfs_rd_conn_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x29a86028 cl_2queue_discard +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2b47237b lu_device_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2c51a4be lu_site_purge +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2e54f86e cl_object_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2f181673 lu_object_find_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x31b7f3ad cl_io_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3242ed35 obdo_cachep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3450c289 libcfs_kkuc_group_rem +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x345c3c3b cl_sync_io_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3503c9b8 cl_site_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x352bf0f0 lprocfs_rd_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3678eb68 lu_env_refill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x36b56dba cl_cache_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3726f79e cl_lvb2attr +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x37ed6e4b at_early_margin +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3ae4397d lu_context_key_quiesce_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3bcbdc4b lprocfs_stats_alloc_one +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3c6e8453 lu_context_key_revive +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3cb6df6b cl_req_prep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3da2aa39 lprocfs_alloc_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x419c27d7 lu_object_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x42b98fbf cl_sync_io_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4446a5a1 lu_object_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x47b35f7d statfs_unpack +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4800349d cl_object_attr_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x487540ee cl_io_commit_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x48e778ba __llog_ctxt_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x499f0e99 cl_page_list_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x49a29223 lprocfs_find_named_value +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x49b5e9e4 lu_object_unhash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4a41ccc9 libcfs_kkuc_group_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4ac58713 obd_connect_flags2str +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4c256daa cl_lock_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4c588b04 lu_device_type_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4d8d6dfa lprocfs_counter_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4e3b53b0 cl_page_find +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4ebeab5e lu_object_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4f9a6e85 cl_page_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4fa1a194 obdo_refresh_inode +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x50c7fc36 ptlrpc_put_connection_superhack +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5300d861 cl_io_lock_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x53e60a8a class_unlink_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x53e6cf76 class_conn2export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x54659692 cl_req_page_done +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x546e7aef class_import_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x552c0ad9 cl_env_cache_purge +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x558bec27 obd_ioctl_getdata +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x570d09ae lustre_swab_lu_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x57c6824f class_config_llog_handler +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x581c1ade llog_close +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5a0e2908 class_find_client_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5b046296 lu_device_type_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5cb230b1 cl_object_prune +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5e93341f lprocfs_oh_sum +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5fe97b73 block_debug_check +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x60ec78d6 lustre_register_kill_super_cb +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6160b5d3 lu_context_key_revive_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x61e98df7 libcfs_kkuc_group_foreach +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x624ffe24 lprocfs_counter_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x62627711 lu_context_key_register +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x62c93f9d cl_lock_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x62f531f8 cl_io_start +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6348df15 cl_page_is_under_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x64780c3e cl_io_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x648a7f66 lprocfs_free_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6734adbd lprocfs_read_frac_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x673c3f9a class_config_parse_llog +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x674e8a97 lu_object_header_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x680534d0 cl_req_attr_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6890d175 lustre_get_jobid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x68f277cc lu_device_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x69c42114 at_min +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6af41280 cl_page_is_vmlocked +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6bd77e75 class_manual_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6d225a98 cl_lock_enqueue +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6d4588cf cl_page_completion +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6da1ab08 lustre_process_log +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6e6c6a24 cl_site_stats_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6effd36c lu_context_refill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x73a2791b lu_device_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x73e4421a cl_page_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x742559b1 class_unregister_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7445c778 llog_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7475b7e8 lprocfs_seq_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x74a45cdf lu_object_find_slice +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x752168d8 obd_unstable_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x752f71a8 class_get_profile +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x756a77f3 class_parse_nid_quiet +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x75c71d3d lu_context_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7687f34a lu_object_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x76bc492c cl_page_is_owned +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x77a48db2 class_connect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x77d2089a class_name2dev +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7802fcd7 lustre_swab_llogd_conn_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x789796a1 obd_zombie_barrier +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x78d7ba8a class_disconnect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x790877af cl_req_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x796fa184 lu_site_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7b4fc57b at_max +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7b9d5741 cl_stack_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7c8f1ec2 cl_io_lock_alloc_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7e515575 cl_page_list_del +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7edcafa0 cl_env_reenter +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7fe5561a obd_dirty_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8052f31b cl_object_header_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x806cc497 class_add_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x807ef741 lu_object_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x80cff927 lu_context_key_degister_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x80ebb9fd cl_2queue_init_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x80fc0ab6 lu_object_header_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x81742d89 obd_ioctl_popdata +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x82443b39 lustre_end_log +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x82742dff lu_device_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x831f656c class_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8446b9a8 obdo_to_ioobj +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8671ca77 cl_io_sub_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x882774e3 cl_io_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x887c2f4c lu_site_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x88b87068 lprocfs_stats_collect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x891054f1 lprocfs_clear_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x893a2967 lu_stack_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8b4a1e1f cl_io_submit_rw +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8ba6e479 lustre_swab_lu_seq_range +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8bb18656 cl_page_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8bc02097 class_process_proc_param +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8f67314c obd_dump_on_eviction +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8f98010f cl_object_attr_unlock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x91a11e73 cl_page_make_ready +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x91a1d9a4 class_handle_hash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x92428037 class_exp2cliimp +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x924a6958 cl_type_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x92a345b6 cl_page_discard +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x92e58479 obd_dump_on_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x93859814 lprocfs_oh_tally +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x93b53657 cl_sync_io_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x941220a0 class_export_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x95735c6c at_extra +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x97478448 cl_page_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9767adce class_uuid2dev +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9779976a lu_context_key_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x97cc7a77 cl_2queue_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x97d03783 at_history +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9b1ed9d8 obd_jobid_var +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9b41adea cl_page_list_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9b455ea4 cl_io_unlock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9c5ef18f cl_io_iter_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9ed6a2e1 cl_env_nested_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9f0f38bf lprocfs_single_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa106e663 cl_io_rw_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa1468140 cl_cache_incref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa160da4a lu_object_header_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa3dad17b md_from_obdo +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa5ea86bc llog_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa5fb234f lprocfs_write_frac_u64_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa82a3dd1 class_handle_unhash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xaa64f0ed lprocfs_rd_connect_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xabfc851d class_devices_in_group +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xad24f684 cl_object_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xade4256d cl_page_list_move_head +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xae60591e lu_site_stats_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xaee32548 class_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xaeed6b53 cl_conf_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xafa5ac0d lu_context_exit +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb01963a6 class_uuid_unparse +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb1325cb0 class_new_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb13c97d6 cl_env_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb268f449 cl_io_iter_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb2a73087 lu_context_key_register_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb35519ed lustre_swab_cfg_marker +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb45c3457 lu_object_add_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb4f8ee63 lprocfs_read_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb52bbaa3 cl_io_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb5573b10 llog_cat_process +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb5e90f8d cl_page_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb675883c llog_cat_close +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb695670e lprocfs_rd_server_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb9b55180 cl_object_find +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb9bb9642 cl_lock_descr_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb9be424a cl_page_own +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xba633557 class_destroy_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xba985283 lustre_register_client_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbacac922 lprocfs_write_frac_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbb1eb295 cl_io_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbb33ef19 cl_page_own_try +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbb349420 cl_req_page_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbccf973b cl_io_loop +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbe8c2bab cl_page_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc0252772 lprocfs_exp_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc0456add libcfs_kkuc_msg_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc0833c0d class_exp2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc0954007 lprocfs_oh_clear +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc0bf7ef2 obd_debug_peer_on_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc0c48655 class_new_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc172c0ab cl_lock_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc3fd1bd8 cl_sync_io_note +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc59c9531 lu_context_enter +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc6200526 cl_page_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc7c70f18 cl_page_clip +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc8f10e6c cl_page_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc950628a cl_lock_mode_name +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcb0ab67f obd_max_dirty_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcc3d4d70 cl_io_submit_sync +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd1612530 cl_req_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd2a9e192 cl_env_percpu_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd30e44d8 cl_page_list_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd609c3f3 lprocfs_rd_uint +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd683cce0 llog_process_or_fork +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd70fe669 lustre_swab_llogd_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd7530069 obdo_from_inode +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd7bc8654 obd_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd80345d2 cl_page_list_move +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd8fbacf5 cl_page_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd9a2d51f cl_lock_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd9c3fb19 class_fail_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xda0cc230 obd_devs +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xda0e3f2e cl_vmpage_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xda5b1ced class_find_param +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdaafb2a0 cl_env_percpu_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdcc40af0 class_check_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdd5a74dd cl_lock_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xde7d985b obd_dirty_transit_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdf3e08c1 llog_open +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdf88042e lu_env_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdfff4611 libcfs_kkuc_group_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe4e88334 lu_context_key_quiesce +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe53b54db lprocfs_rd_timeouts +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe5759818 cl_io_is_going +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe583b23b lu_kmem_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe5d81323 cl_object_kill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe89e1b35 class_export_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe990f15b class_name2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xeacec47c lprocfs_oh_tally_log2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xec7d6b85 obd_timeout_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xed727dd9 cl_object_glimpse +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xedc67471 cl_env_unplant +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xeec54390 class_num2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xef13656f cl_io_read_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xef76f858 block_debug_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf064cd2d class_put_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf3e6793f cl_object_attr_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf44da7e2 cl_lock_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf490d5f9 class_del_profiles +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf4a6c905 lu_context_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf4a72db1 lu_site_init_finish +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf595b368 cl_env_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf6defc18 lu_site_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf7bf4f6e cl_page_assume +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf7c02f20 lustre_common_put_super +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf8420285 cl_page_list_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf910c7e2 lu_context_key_degister +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfbd0bc3e cl_env_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfbea0098 lu_types_stop +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfd68d17a class_notify_sptlrpc_conf +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfdbe1557 lprocfs_write_u64_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfffc1f11 lustre_swab_ost_id +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00292dc6 ldlm_lock_fail_match_locked +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00cb99c1 RQF_LDLM_INTENT_GETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00d95039 ptlrpcd_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x014a44a7 ptlrpc_at_set_req_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x01937477 lustre_pack_reply_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x03900a29 sptlrpc_unregister_policy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x03d2d9c7 ptlrpc_set_destroy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x048b59d5 lustre_msg_set_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0515f93b RQF_FLD_QUERY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x06718635 req_capsule_client_sized_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x06b3942b lustre_swab_lov_user_md_objects +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x071fc74a RQF_LDLM_ENQUEUE_LVB +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x08bb2d27 lustre_swab_obd_ioobj +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x095587d0 lustre_msg_buflen +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0a3130b0 RMF_MDT_EPOCH +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0ac252b2 lustre_msg_set_jobid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0ac54708 lustre_errno_hton +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0b474c03 lustre_pack_reply_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0b72338b ptlrpc_send_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0b7a093f target_send_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0bcacb5d RMF_MDS_HSM_USER_ITEM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0bec9e9d unlock_res_and_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0cf343dd RQF_LDLM_INTENT_BASIC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0f680894 ptlrpc_wake_delayed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x106694ba ptlrpc_request_bufs_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x10a1a86d ldlm_error2errno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x115017f6 req_layout_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x126fe9ec ldlm_cli_update_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x12b6f5a3 ptlrpc_connection_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x139bfe5f do_set_info_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1459d4e4 ldlm_lock_allow_match +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x14708afc lustre_swab_mdt_rec_reint +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x14d192db lustre_msg_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x14f4e327 client_destroy_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x152f066f sptlrpc_flavor_has_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x15a3e4db RMF_GETINFO_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x172fb86d lustre_msg_hdr_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1747d8b3 ldlm_lockname +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x17950f60 RQF_SEC_CTX +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x181ce3fe ldlm_lock_set_data +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1902ea08 ptlrpc_mark_interrupted +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x190a3e32 ldlm_prep_elc_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19108a0f RQF_OST_DISCONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x193f115a ldlm_resource_dump +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19c08934 RQF_LDLM_INTENT_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1a0d33da lustre_pack_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1a6a3ce9 RQF_OST_GET_INFO_LAST_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1a9b76aa RMF_OBD_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1abd3258 RMF_SETINFO_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ace4b5f RQF_LDLM_BL_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ad6c330 RMF_EAVALS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1be21715 lustre_msg_size_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1c1b867d req_capsule_server_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1c300d8e lustre_msg_get_slv +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1c9baf1e ptlrpc_request_set_replen +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1dc2051d RMF_SEQ_OPC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1de9c288 lustre_swab_layout_intent +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1e8d7324 sptlrpc_import_sec_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1eb2a65f RQF_OST_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ee46b51 lustre_init_msg_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ee9eb3c RQF_MDS_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1efabeb4 ldlm_resource_unlink_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1fdcdf36 req_capsule_shrink +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2096f5b5 RQF_OST_SET_GRANT_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x219391ec RMF_EAVALS_LENS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x21cc41c7 llog_initiator_connect +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x226d49b1 ptlrpc_pinger_add_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x22c7645e ptlrpc_activate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x233790b5 RMF_OST_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2366cdfc ptlrpc_start_threads +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x24aafdba RMF_MGS_TARGET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2585a629 RMF_SEQ_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2587513c RQF_LDLM_CP_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x269554ce RQF_LDLM_INTENT_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x26d1db19 ptlrpc_set_add_new_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x26f99d16 RQF_MGS_CONFIG_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x26fb91f2 sptlrpc_target_sec_part +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x285e5b99 lustre_msg_set_conn_cnt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x28bbb707 ptlrpc_init_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x293c0d4b ptlrpc_unpack_rep_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x29ae8dd6 ptlrpc_set_import_active +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x29e0869a sptlrpc_get_hash_name +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x29efac48 ptlrpc_register_service +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2a1e35e8 lustre_pack_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2a63a472 lustre_swab_ptlrpc_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2b4c261e req_capsule_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2b784ba5 ptlrpc_request_alloc_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2bf64ba4 client_import_find_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2c00c60d ptlrpc_sample_next_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2c5d221d ptlrpc_set_add_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2cec385f ldlm_lock_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d1ed53c ldlm_pool_del +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d56f168 ptlrpc_pinger_ir_up +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d798316 RMF_MGS_CONFIG_RES +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e4562fe RQF_LLOG_ORIGIN_HANDLE_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e4ca396 RQF_LDLM_INTENT_UNLINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2eccc0e2 ptlrpc_queue_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2f0e4f87 RQF_OST_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2f160acc req_capsule_client_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2f793215 lustre_swab_ost_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2fab3539 lustre_swab_ost_lvb_v1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2fd2f737 lustre_msg_set_limit +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x301d4fcd RQF_MDS_READPAGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x302937e0 RQF_MDS_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x311b3251 sptlrpc_sec_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3261b862 RQF_OST_SYNC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x340d2598 ldlm_resource_iterate +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x35939a3d lustre_swab_fiemap +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3835ab4b RQF_LLOG_ORIGIN_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3858fb94 RMF_OBD_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x38c01799 RQF_LDLM_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x38fce533 lustre_msg_set_versions +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x39f60a5f RMF_OST_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3a1e4bcb __lustre_unpack_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ab90f6e lustre_msg_bufcount +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ac00716 lustre_swab_hsm_user_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3af2b9aa ldlm_prep_enqueue_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3b07686c ptlrpc_request_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3b6b7cba dump_ioo +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3bedb0c7 RMF_LLOGD_CONN_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c02ba3a req_capsule_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c63e62b RQF_MDS_REINT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c7ae948 ldlm_namespace_dump +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c8b16ab lustre_swab_ost_lvb +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ca50f33 RQF_MDS_HSM_CT_REGISTER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3d7dc5f9 ldlm_pools_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3d8c6ca5 client_connect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3dc47695 lustre_msg_get_magic +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3edf1ea1 ldlm_namespace_new +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f034caf lustre_msg_get_status +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f35a11d RQF_FLD_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f752e78 RQF_MDS_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3fd66f9d req_capsule_server_sized_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x401c2eb8 sptlrpc_cli_enlarge_reqbuf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x41008cef RQF_LDLM_CANCEL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x412babea ldlm_namespace_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x41b34295 ptlrpc_connect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43168488 RQF_MDS_RELEASE_CLOSE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4351e916 lustre_swab_hsm_user_item +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43705ee4 RQF_LOG_CANCEL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43d7efc8 lustre_msg_set_transno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x44036eda RQF_MDS_GET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x440c2a71 RMF_FIEMAP_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x44352632 ldlm_pool_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4481591d RQF_OST_SET_INFO_LAST_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4523c64f sptlrpc_target_export_check +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45bd09f6 sptlrpc_get_bulk_checksum +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45d05893 lustre_swab_lustre_capa +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45e30cea lustre_swab_ldlm_intent +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x47f5e903 RMF_MDS_HSM_REQUEST +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x48984499 ldlm_replay_locks +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4a5a2416 RMF_DLM_REQ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4d628d73 client_obd_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e1706e5 lustre_msg_buf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e696b96 ptlrpcd_queue_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4eb03a6f ptlrpcd_destroy_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4f766c3b lustre_swab_generic_32s +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x50443f6a ptlrpc_init_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x50dd74f8 RMF_STRING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x514b3851 lustre_swab_ldlm_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x51e311e9 lustre_swab_ldlm_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x52c62150 RMF_RCS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x53411557 RMF_DLM_REP +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x53a4a004 bulk_sec_desc_unpack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x54e2f64e ldlm_cli_enqueue +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x555eb7fe RQF_MDS_HSM_STATE_SET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x590630c4 req_capsule_set_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x595ab175 lustre_swab_obd_quotactl +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x596582bf RMF_GETINFO_VALLEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5a585d28 ptlrpc_retain_replayable_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5a625f49 lock_res_and_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5b6ba895 lustre_packed_msg_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5c6a3a83 RQF_SEQ_QUERY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ca1b491 lustre_swab_close_data +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5caae213 ptlrpc_next_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5d21ef4a lustre_free_reply_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5d65fafe ptlrpcd_wake +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5dc3a8bf sptlrpc_lprocfs_cliobd_attach +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e0b19b1 RMF_CLUUID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e28b6fb ldlm_lock_change_resource +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e2b7558 lustre_msghdr_get_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e6f435d RQF_OST_BRW_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e80f899 RQF_LLOG_ORIGIN_HANDLE_READ_HEADER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ec3284d RQF_MDS_HSM_CT_UNREGISTER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ef831ee lustre_msg_get_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5f96ccdd ptlrpc_connection_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5fc9a455 RMF_CLOSE_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6042bc15 RQF_MDS_REINT_RENAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x604e2505 RMF_SWAP_LAYOUTS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x60cd26ad RQF_MDS_REINT_CREATE_SYM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x61646e1b RQF_MDS_SWAP_LAYOUTS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x618ad203 RQF_OST_GET_INFO_LAST_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x62aaae3f RQF_MDS_HSM_REQUEST +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6315dd4c RMF_LLOGD_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6352a62d ldlm_get_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x653723dc RMF_LOGCOOKIES +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x66f305c7 req_capsule_server_sized_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x68019272 ptlrpc_buf_need_swab +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x683243bf ptlrpc_set_next_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6859b8ec req_capsule_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x685bbbe8 sptlrpc_enc_pool_put_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x685eeaba RMF_DLM_GL_DESC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x68761b24 lprocfs_rd_pinger_recov +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x68d65bf5 ldlm_namespace_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x68f49e5e ptlrpc_expired_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6912990a RQF_OST_QUOTACHECK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x696ba811 lustre_msg_get_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x69c9f04d RQF_MDS_REINT_LINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6a3785c9 RMF_EADATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6a89598d req_capsule_server_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6afe1e41 ptl_send_rpc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6c48bd54 ldlm_completion_ast_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6c524a0d client_obd_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6c82f616 sptlrpc_cli_ctx_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6d72828c sptlrpc_conf_log_update_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6efa82b0 RQF_MGS_TARGET_REG +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6fb92092 sptlrpc_flavor2name_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x703538e4 lustre_swab_hsm_current_action +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7136f55e ldlm_lock2handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x725a892c RQF_MDS_REINT_OPEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7307cc2f sptlrpc_import_flush_my_ctx +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x734016bf ptlrpc_request_alloc_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x74840056 lustre_msg_set_status +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x75a2c40d ldlm_put_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x75e4ca61 RQF_OST_GET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x78324049 ptlrpc_req_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7a832f10 RMF_CONN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7b3c2121 ptlrpc_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7bbf8001 RMF_MDT_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7c4c6107 RQF_LDLM_CONVERT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7d1ecd7f RQF_LDLM_INTENT_LAYOUT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7dfb3c18 lustre_msg_clear_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7e1724f8 ptlrpc_disconnect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7f5a1cc7 lustre_msg_set_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x80ecb4e3 RMF_MDS_HSM_CURRENT_ACTION +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x817d7f1f lustre_msg_add_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x818388ca ldlm_lock_decref_and_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x81b3bb35 llog_client_ops +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x826d3c4f RQF_LDLM_GL_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x837efb00 RMF_NAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x842c3373 ptlrpc_free_rq_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85135801 RMF_DLM_LVB +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x854ad265 ldlm_pool_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85a9e0d8 RMF_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85eecf67 sptlrpc_get_hash_alg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x863db6eb RMF_HSM_USER_STATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x876c2551 RMF_GETINFO_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x879af26c ptlrpc_send_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x879dc421 lprocfs_wr_ping +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x87bf7b3c sptlrpc_get_next_secid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8872f3d2 RMF_SETINFO_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x88fff52d RMF_CAPA2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x893b9946 ptlrpc_invalidate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x89e965d5 sptlrpc_gc_del_sec +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x89f9edf7 RQF_MDS_REINT_SETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8a1ea476 lustre_swab_hsm_state_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8a257736 RQF_MDS_HSM_STATE_GET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8ac440fa ptlrpc_uuid_to_connection +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8b854254 lustre_swab_mgs_config_res +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8cb71d4b RQF_MDS_REINT_CREATE_SLAVE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d1ab900 ldlm_lock_dump_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d381cec ldlm_lock2desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d77ea75 lustre_msg_set_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8da3fca7 lustre_msg_add_version +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8e9abe4d RMF_GENERIC_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8f0aceac RQF_MDS_HSM_ACTION +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8fec0451 lustre_msg_get_limit +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x901e5f56 req_capsule_server_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x90d162ef ptlrpc_abort_inflight +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9113f109 ldlm_cli_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x919c4ce3 RMF_OBD_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x91cf58d3 RQF_MDS_PIN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9228392f lustre_swab_mdt_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9277ae5e RQF_MDS_REINT_CREATE_ACL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x92d81af3 __ptlrpc_prep_bulk_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x937b1ee0 lustre_swab_mdt_ioepoch +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9422e24f ptlrpc_unpack_req_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9553c633 RQF_LDLM_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9564a202 ldlm_lock_addref_try +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x95d08f0c lustre_swab_mgs_target_info +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x963420c2 ldlm_lock_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9660ace0 RMF_FLD_MDFLD +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x967bfd52 RQF_OBD_PING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9798f2f1 RQF_MDS_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x980fcfdc ptlrpc_connection_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x992ba5ab ptlrpc_fail_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9999cf7a dump_ost_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9a258886 RQF_MDS_GETSTATUS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9a413fde ptlrpc_unregister_service +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9a6f2f6d lustre_msg_set_opc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9b2842c4 client_import_add_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9b42e650 ptlrpc_pinger_sending_on_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9b88f6ce RMF_NIOBUF_REMOTE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9bb5198b RQF_MDS_CLOSE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9d7ea314 sptlrpc_pack_user_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9f1c2a8c ptlrpc_lprocfs_unregister_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9fb088f1 lustre_swab_lov_mds_md +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa00c5bf1 sptlrpc_cli_unwrap_bulk_read +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa01c5c83 ptlrpc_schedule_difficult_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa163f4c3 dump_rniobuf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa2244636 RQF_MDS_GETATTR_NAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa3d2a6ee RMF_CAPA1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa47787ef RMF_PTLRPC_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa4a2d089 RQF_OST_PUNCH +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa53bef36 sptlrpc_cli_wrap_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa69b7468 ldlm_cli_cancel_list +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa6c436ca RQF_MDS_WRITEPAGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7a03774 ldlm_cli_cancel_list_local +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7e360b1 RMF_OBD_IOOBJ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7ec567d RMF_CONNECT_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa8d05fe7 _debug_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9704f80 lustre_msg_get_last_committed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9c4658e lustre_swab_lov_user_md_v3 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9e40b00 ldlm_lock_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaab700a3 ptlrpc_pinger_del_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xacd6a7d7 lustre_swab_ost_last_id +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xad45945f ldlm_resource_putref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xad71d5af ldlm_lock_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xae9de7f4 ptlrpc_add_timeout_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf344999 ptlrpc_request_free +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf4e9658 RQF_MDS_SYNC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf50a0d6 RMF_HSM_STATE_SET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb0751fa4 RQF_LLOG_ORIGIN_HANDLE_DESTROY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb1b43d8a dump_rcs +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb2589f06 ptlrpc_resend_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb291473d lustre_msg_early_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb4a7ecf3 lustre_msg_add_op_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb4c0549e ldlm_flock_completion_ast +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb512ebc2 sptlrpc_parse_flavor +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb56cfc37 ldlm_cli_cancel_unused_resource +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb61cb95a RQF_MDS_GETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb68476df interval_erase +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb6aafd03 RQF_MDS_DONE_WRITING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb7b38189 RMF_MDT_MD +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb7fa3cc8 RMF_LLOG_LOG_HDR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb8df19c6 ptlrpc_unregister_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb903634e RQF_OST_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb9767794 _ldlm_lock_debug +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb9b631cf lustre_swab_mgs_config_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xba4613ad ptlrpc_request_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xba84fb5b req_capsule_get_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbaa76097 lustre_msg_string +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbaf1f116 req_capsule_client_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbc1370dc lustre_shrink_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbcb9b524 client_disconnect_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbd83bc44 RQF_OBD_SET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbe038b58 ptlrpc_check_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbe039714 ldlm_cancel_resource_local +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbef769cc RQF_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbf98b86f RQF_MDS_QUOTACHECK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbff15373 sptlrpc_cli_unwrap_bulk_write +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbffd4313 RQF_OST_BRW_WRITE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc06c4670 lustre_msg_get_versions +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc0867da7 RMF_REC_REINT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc0cdf55e RMF_MGS_SEND_PARAM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc1daac40 ptlrpc_resend +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc2b1af57 RQF_MGS_SET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc2be922a RMF_SYMTGT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc412af1a lprocfs_wr_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc559a634 RMF_LAYOUT_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc5d14702 req_capsule_has_field +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc60a60e1 RQF_OST_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc694be4b RQF_LLOG_ORIGIN_HANDLE_PREV_BLOCK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc763fabc sptlrpc_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc79b9c67 ldlm_pools_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc7ca8257 RQF_MDS_REINT_SETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc7e47564 ptlrpc_interrupted_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc8223d46 target_pack_pool_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc8a2b089 ldlm_namespace_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc8f586a9 ptlrpc_connection_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc96547d6 ldlm_revalidate_lock_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xca5a81ec ptlrpc_pinger_ir_down +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xca686d45 client_import_del_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcb16107d ptlrpc_set_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcb2cc0cf lustre_swab_lquota_lvb +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcc1b27dc ptlrpc_prep_bulk_imp +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xccea7d85 ptlrpcd_add_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xce86066d lustre_msg_set_slv +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcea28589 ptlrpc_request_committed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcec513c9 RQF_MDS_UNPIN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xced931d3 req_capsule_filled_sizes +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcf9963db lustre_msg_get_op_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcf9aab6a RQF_MDS_DISCONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd06ee34b ptlrpc_reconnect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd138e11f ptlrpc_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2983334 lustre_swab_swap_layouts +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2ac9704 ldlm_lock_allow_match_locked +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2e0d4eb lustre_msg_get_opc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd3dae408 ldlm_it2str +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd60a2a76 ldlm_cli_cancel_unused +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd64dff51 sec2target_str +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd69e0a27 RQF_MDS_IS_SUBDIR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd6c3ebfb RMF_FIEMAP_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd77d3de2 req_capsule_extend +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd7910326 lustre_swab_obd_statfs +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd7eb7936 sptlrpc_import_flush_all_ctx +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd8b91b3e lustre_swab_lov_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd8f06300 RQF_MDS_HSM_PROGRESS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd9561861 RQF_LDLM_INTENT_OPEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xda629f69 ptlrpc_lprocfs_register_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdafd6800 __ptlrpc_free_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb1fb0a2 RQF_MDS_REINT_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb74057f lustre_swab_hsm_progress_kernel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb9d5a6a lustre_swab_niobuf_remote +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdcff4584 lprocfs_wr_pinger_recov +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd0ffb04 sptlrpc_flavor2name +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd30d7bf RMF_ACL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xddc40a85 lustre_msg_get_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xddcabaa2 ldlm_lock_match +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xde12d36b RMF_MDS_HSM_ARCHIVE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xde5061c1 ptlrpc_init_rq_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdee87192 sptlrpc_conf_log_update_begin +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdf701ae7 lustre_swab_fid2path +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe0cc694c RQF_LLOG_ORIGIN_HANDLE_NEXT_BLOCK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe37f7994 ptlrpc_lprocfs_brw +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe3fad815 ldlm_extent_shift_kms +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe40e0a50 lustre_msg_get_transno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe57bd972 sptlrpc_current_user_desc_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe5c1d9ab __ldlm_handle2lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe5e8169b lustre_errno_ntoh +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe61f2996 sptlrpc_register_policy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe63116c3 ptlrpc_obd_ping +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe643998e RQF_OST_SETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe6f0dc96 RQF_OST_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe7062b5f RMF_U32 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe7512278 ptlrpcd_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe8570579 ldlm_cli_enqueue_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe97709ac ldlm_pool_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xea693585 ptlrpc_recover_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xebb52537 ptlrpcd_alloc_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xebb64e68 req_layout_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xec939a00 RQF_MDS_REINT_UNLINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xed0fe605 ptlrpc_request_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xed1c10d6 ptlrpc_connection_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xedcb740d sptlrpc_name2flavor_base +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xedeec965 ptlrpc_unregister_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xef1aeca9 RMF_FLD_OPC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf001a989 ldlm_lock_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf03131b6 sptlrpc_cli_ctx_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf1300275 _sptlrpc_enlarge_msg_inplace +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf277c125 RQF_OST_GET_INFO_FIEMAP +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf3d44370 RQF_OST_DESTROY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf43540b9 lustre_swab_mgs_nidtbl_entry +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf45085e1 sptlrpc_conf_log_stop +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf4c0e9eb ptlrpc_buf_set_swabbed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf55c033b RMF_MGS_CONFIG_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf596e9ae sptlrpc_conf_log_start +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf5baa1af ldlm_completion_ast +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf5cfce7b ptlrpc_req_finished +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf607fc23 sptlrpc_flavor2name_base +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf617ab8a lustre_msg_get_conn_cnt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf697b756 ldlm_dump_all_namespaces +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf7408f84 lustre_swab_hsm_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf7ba40c0 RMF_MDS_HSM_PROGRESS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf870fed9 RQF_LDLM_GL_DESC_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf9051bd6 RQF_QC_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf93e2b47 sptlrpc_gc_add_sec +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf973aa93 lustre_swab_lov_user_md_v1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf9f72dfc RMF_TGTUUID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfa51688d interval_insert +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfb444a98 ptlrpc_prep_fcset +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfc2fa83f ptlrpc_del_timeout_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfd148bf8 RMF_LDLM_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfd33e2e7 sptlrpc_conf_client_adapt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfde38397 ptlrpc_deactivate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfe6048ce ptlrpc_add_rqs_to_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfe66c729 ptlrpc_replay_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xff2b5341 ptlrpc_prep_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xff99f6e2 ldlm_resource_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xffc807e8 sptlrpc_unpack_user_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xffe29c3f RQF_LDLM_ENQUEUE +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x1e0e627e cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x4f0342dc most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x06263f0a rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x097d0834 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d780925 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x11e2e70c rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1951a6e3 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1a19a0de rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1df12685 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1e0c627e rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x224d4387 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x309eb536 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x320cb120 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3245fbb2 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x326b7f66 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3770699d rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x38bbc0a6 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x47189e5c rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4dd3429f rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5360d1a2 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x547d2edf rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6886abe5 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x69623271 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6aee426b rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x72fc7c47 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7a1355d0 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7ea9147e alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x833ae4c4 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x88f5181a dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8dcca51d rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x95bbc1a3 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x98381624 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9cf00efe rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9e9c428b rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa39e1cb4 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb5cf90e4 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb6715fb8 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb81aec21 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbf8688af rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc8c920b4 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcd5932e8 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd1764abb rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd7251dc4 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd9259f50 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd9d35c1d rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xda576d6b RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdfd70917 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe51acaca rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe7a22eea rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xef26283d rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf2d252af rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfb5cb154 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x115fecf4 ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x11d6a834 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1214efc4 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1b2ca5e4 IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1c08d4d1 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d18f6b2 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x27fec43e ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2bc6c812 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2c46a5b0 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x312ae724 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3e7bba05 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4005906f ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x444a9601 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4e42bc14 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5102c338 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x531d720f ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5ad91e6b ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5b5fe5ac Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x679c0f03 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x680b7a86 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7117e286 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x71b76a36 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x721610bc ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x74c96d9e ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7eac59ed ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x82700c7d ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x85f8c4ad notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8beca8e2 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x93272463 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x955a245d ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9ac54a09 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9fbb6c07 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa749a48e ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb103cca1 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb6ae57d9 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbcc91c85 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbe39175d ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc074140b SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0a09dbc ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc145df01 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc853e5b4 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd5d4826d ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd93cb8be ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd9d4a600 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdfabf364 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe03929ba ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe09720c9 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe6c96e9c ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xea55a02e ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeb240e37 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xec8a5b0c ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfdef6f5b ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfe997c20 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x05b472ae iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x18961dd0 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x19973291 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3b25f3a3 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x50c5c968 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x519e783b iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x53218f2b iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x54037ab0 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5c63fe8c iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5c955458 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65eb6cef iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6735b784 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x796971bc iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x871a7989 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8902f529 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8cb31297 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x95302670 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x96d09d0c iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9b9741c8 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9d1a2ec5 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa6d17cd4 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa8591113 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa91722ff iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb1f9194c iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb55716d3 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb6e7dcc5 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb8230e8e iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbea21fae iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbf6c8aaa iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbfba34a2 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc616908d iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc743fe30 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xda539971 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe03998dc iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe1581990 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe4d04f40 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe5817e9c iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe98d9bac iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xea23c4c7 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xef4ccfab iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf7b47017 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf8693795 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfb2b60e9 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x05d55881 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x089c1850 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x0fbeeb64 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x111d8693 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x1449a5a9 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x157ad60a spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x185ae4fc sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x1a75472f target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x1bf1afa4 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x1f223bcd transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x233fb352 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x252c73c8 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x28326c38 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x2a8871bb target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x354c5b1a sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x36ae2a0f passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x37db8ef9 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x3f7ccaa7 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x437c8f5a transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x47d4222a target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4d0818c4 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x54a940c8 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x56f98693 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5c13d75e target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x65b037b3 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x68697f0f transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6888a1de spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x73607607 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x79a02a15 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x7be3a816 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x7d617e68 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x7d8d614f transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x8737f950 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x8bfb8fa6 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x8dd3acc9 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x93e805b5 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x94de5532 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x96193be1 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x9625d5f7 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x96d6cb93 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x9ac85c2a transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x9d9c543a core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xa41d9f6d target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0xae042b07 target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0xbb19f8ba core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xbcff2fd0 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xbd2d0a1e transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xbfd3d567 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xc82bf278 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xca59137e transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xcd5d0147 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xd3ace643 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xd4674609 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xd62f2d95 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xd85932cc target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe26ba14e transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xe2f999e6 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe4ba82c8 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe9d6b482 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xead81f64 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xeb6081b2 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xebdc7f8d target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xeed99915 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf20b056e target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf34ffbff transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf671f367 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xf6f5c919 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xf8a251db target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xf939df07 target_lun_is_rdonly +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x4a589af2 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x51929434 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xe9214a76 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x06eaf1a3 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0e0a7d35 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2b862ca1 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2f51f21b usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x533c4c4a usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5d30576a usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x74851869 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x82db24c7 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x950ef856 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc5af5d01 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe08fb8a7 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe9e5e41a usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x15a66f6e usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x7bfffcb9 usb_serial_suspend +EXPORT_SYMBOL drivers/vhost/vhost 0x0a3c914f vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0x3a3f42ab vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x59f824d9 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x937e412c vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user +EXPORT_SYMBOL drivers/video/backlight/lcd 0x2de66003 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x96115120 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xa4feac66 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xebc27543 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 0x229061db svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x37323806 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3ce2d527 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x60a54e14 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7a0e37a4 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc822487f svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xded438f4 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +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 0xdd102372 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x41d3f69a g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x4dca097a matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x6142cddf matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x345d2d38 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x4834f01f matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x7abaf186 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x9c57218c matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x233b9af7 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x992a3a17 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x0b6a77d7 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x76bb2748 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x86e548ac matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x890e9be3 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x4275d9f9 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xd1edd12f matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x3989c337 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x39b43214 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x99402b01 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc32e00c3 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xff8aeb8e matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xfc232749 mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/virt/fsl_hypervisor 0x45fd1882 fsl_hv_failover_unregister +EXPORT_SYMBOL drivers/virt/fsl_hypervisor 0x77c9b191 fsl_hv_failover_register +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x71cd25f9 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xc7874f25 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xcd315c05 w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xf15db486 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xa31689b8 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xf96f0c5b w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xace4fbb8 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xf9d80775 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x249dd070 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x73a35ccf w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xd0e888d7 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xfdcfbb19 w1_add_master_device +EXPORT_SYMBOL fs/configfs/configfs 0x06c9e8ab config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0x095e8e60 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x0cc11f99 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x24a3818d configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x2def7db7 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x3197c8ad configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x40f19901 configfs_depend_item_unlocked +EXPORT_SYMBOL fs/configfs/configfs 0x51ad26f0 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x552ce907 configfs_remove_default_groups +EXPORT_SYMBOL fs/configfs/configfs 0x97f60c2f config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0xb855889a config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xc041605e configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xc3934849 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0xc4c54613 config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0xe043920f config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0xefdc089b configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0xff43d769 configfs_register_group +EXPORT_SYMBOL fs/exofs/libore 0x052516e9 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x093870c8 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0x1455624f ore_create +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x34973e47 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x7d5b3055 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xaad0974a extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0xd8155128 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0xe44d2b82 ore_read +EXPORT_SYMBOL fs/exofs/libore 0xed64ebb5 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0xf1bb03ff ore_write +EXPORT_SYMBOL fs/fscache/fscache 0x0f870e99 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x110bc5c3 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x12d9002d fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x1345e0e7 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x16af373e __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x212ae9fe fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x2b78f293 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x3c64baad __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x46da89a2 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x57509bf3 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x597e958f __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x643c5503 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x64558808 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x64953b98 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x6916cf00 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x6bf21f9d fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x6d486bc7 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x72453d95 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7ffe43fa fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x82222b67 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x83ec0359 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x9445aafd __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x94f2c848 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x9882dcb4 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x9ab02539 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x9be7020e __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xa2421d9b fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xa9d414f5 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xaa9b4693 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0xaf6c5f9d __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xb03b0244 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb23a83cc fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xb46756a5 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xb559f5f2 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xbcce1728 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xe1801513 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xe6065715 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xefdbd4d2 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xf33af15c __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xf9e5d707 fscache_check_aux +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x14547a1e qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x1615e214 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x299e7f24 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x97811fc6 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xbb298e7b qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xddb49f99 qtree_write_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t +EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0x3a9f2d10 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 0x84e0214b lc_committed +EXPORT_SYMBOL lib/lru_cache 0xb2271d93 lc_seq_printf_stats +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 0xcbc5d521 lz4_compress +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x26c3aa22 lz4hc_compress +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0x7456cc61 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul +EXPORT_SYMBOL net/6lowpan/6lowpan 0x21c21612 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x30a9d866 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x79e846a3 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xba37fd71 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xea28be0b lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xfd4c34e3 lowpan_register_netdevice +EXPORT_SYMBOL net/802/p8022 0x593e8d44 register_8022_client +EXPORT_SYMBOL net/802/p8022 0xc8f0de16 unregister_8022_client +EXPORT_SYMBOL net/802/p8023 0x3d3beda9 destroy_8023_client +EXPORT_SYMBOL net/802/p8023 0x91f05365 make_8023_client +EXPORT_SYMBOL net/802/psnap 0x8d1bd1ab register_snap_client +EXPORT_SYMBOL net/802/psnap 0xfb364a4a unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x01e3c6c7 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x041aacb5 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x056d7ef4 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x0723df69 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x0851f60e p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x0f630f6f p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x0f7b6360 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x123f8b27 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x15f22a65 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x240806f1 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x29d56bcd v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x366d0133 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x42854d63 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x47f87d0a p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x49c98d88 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x596d7375 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x5b332e19 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x6defbb8c p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x6dffb2ba v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x74939eb8 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x785ea524 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x7ad78ab3 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x7b24d621 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x8550b4b7 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8bf48485 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x9254f1b6 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x9843adbe p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x9bda16b8 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x9daf3564 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa085db14 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xa2af5fbf p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xaf2f0ac2 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xb3053f5a p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb48f8a00 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xb70270de p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc03de9f0 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xcf1b89a6 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xcf674f71 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xdb04948a p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe9d41458 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/9p/9pnet 0xfde816f0 p9_client_getlock_dotl +EXPORT_SYMBOL net/appletalk/appletalk 0x4f4f6686 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x5187761a atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x5f596f9d alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x9108b079 atalk_find_dev_addr +EXPORT_SYMBOL net/atm/atm 0x0589496d vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x0c66805d atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x1a84d0ca atm_charge +EXPORT_SYMBOL net/atm/atm 0x24e982d2 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x4c61b099 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x4d81457b vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x568c3bb7 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x7a105d6f register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x7cf7e803 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x811073c5 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 0xaacf85ec atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xb83af3c8 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xd42adf5a atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x17f5a246 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x3aa64d2e ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x68b4c9bd ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x6952e9be ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x737d4c61 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x83927b33 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xd674173d ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xe4c74477 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xe9aaf0a4 ax25_display_timer +EXPORT_SYMBOL net/bluetooth/bluetooth 0x032045ef bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x04ca4c6c __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x08483b88 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x098755b2 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0cb694b3 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0d8a27cf bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x14c7bd6a __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x194d6004 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x270a183a bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2a79e6cc hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2c22c9cf hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2f0956f2 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2f244385 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x33f8adc2 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x34ced88c hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x35f671f5 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3681f7ed hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ee429f0 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x41ef3d34 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4d859e71 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4e316a51 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4eb0ab1a l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x52ef22cb hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x562b1cb4 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5a0bb882 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5b70df50 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5f3abec6 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6c5a9df2 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7136701d hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8e8ad08b hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa615089b bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xac9d367e bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb1d1cbf2 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbc2e7176 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcacd9af0 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd670f6f5 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe13e0ad8 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe6cfca0f bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe916517f bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xea316e2e hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xee08333a bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xee38e9f7 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf89c783a bt_sock_poll +EXPORT_SYMBOL net/bridge/bridge 0xbd59131b br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa1ee2fd4 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb917a176 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xee986abb ebt_do_table +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x2699ea0c 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 0x480cd9bb cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x579faa81 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xc17287c5 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0xdf6a1ed8 caif_connect_client +EXPORT_SYMBOL net/can/can 0x36d06132 can_proto_unregister +EXPORT_SYMBOL net/can/can 0x440e20ff can_ioctl +EXPORT_SYMBOL net/can/can 0x67ef3a8a can_rx_register +EXPORT_SYMBOL net/can/can 0x6f38cee0 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xb3c6a967 can_send +EXPORT_SYMBOL net/can/can 0xb4d77b4a can_proto_register +EXPORT_SYMBOL net/ceph/libceph 0x00a26a0e ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x021381ac ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x04c2e9c1 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x0525a78c ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x086c1366 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x165eadd0 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x1c7adea7 ceph_file_layout_from_legacy +EXPORT_SYMBOL net/ceph/libceph 0x1f8b469e ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x206866b0 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x22309bf0 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x239f194b ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x28eba6bf ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x2db717f3 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x2fd52f2a ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x2ff235b4 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x3070381c ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x3276f8b1 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x32d69e1f osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x33e7c083 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x370ef78a ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x399398dd ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3ae881aa osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x41e74cf8 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x43ae13b7 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x45069302 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x47191c35 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x48676d75 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x4d31e8a2 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x4e797c6c osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x4f638b75 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x4fd567e8 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x51e679b6 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x594f72c5 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x5b2094b1 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x5e3f7f8d ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x62837620 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6a024d75 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6d36508b ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x6ed2cbcb ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x71afe5cb ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x7712d86b ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x7897f93c ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0x7964597a ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x79d2fdf2 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x79e8df73 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x7cb4571d ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x7d4904c8 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x7ea24ea6 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x7f00455b __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x81c184e4 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x83cd306b ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x851589bf ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x854df148 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x85d03a9e ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0x867bb0c4 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x8ab8cf8d ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x987158e2 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x987955da ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9a674aa0 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x9d46f43d ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa122017c ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xa5a4a518 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa716b063 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xa7bcbcd9 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xabdfa047 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xadf060ef ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb676d8e0 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xb989ccd8 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xbd08d39c ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xbd160182 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xbf15e03c ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc567f0f5 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xc6d754fe ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xca3f1fad osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xd0a36924 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xd26df667 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd43a6c5e ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xd9aa1370 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xda19dea9 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xdc526cf2 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0xdd8e7550 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xe402aa15 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xe5fba159 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xebc8d181 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0xee1ac17c ceph_file_layout_to_legacy +EXPORT_SYMBOL net/ceph/libceph 0xf04168aa ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xf1093679 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xf299d1c9 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0xf71b369f ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xf7f25458 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xfa4a806e ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xfc31c14f ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xff9a175b ceph_oloc_copy +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x68a53a9e dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x95e3ba71 dccp_syn_ack_timeout +EXPORT_SYMBOL net/ieee802154/ieee802154 0x04e66b68 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7a0c3e04 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8102ef48 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xcf8592cf wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe28a7340 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xea33b4eb wpan_phy_unregister +EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x1bacf871 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x545e3881 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x6a09aa5d fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd7fbaa81 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x6a35d955 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2a147c0a ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5dddba9e ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb4544e4a ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xec3211f5 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xc7bb4c80 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xcdfda99c arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe725c4ae arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x0eb93536 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xaf39cc70 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xe983ec61 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x224c48a1 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xaf3218ec xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x52bb3473 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/fou6 0x690c72ac gue6_build_header +EXPORT_SYMBOL net/ipv6/fou6 0xe6b97ea7 fou6_build_header +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x273f6566 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2eaaf97e ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4f086151 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5348d162 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x696545ae ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x86e7d269 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x999749a7 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe6eb8c98 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf8fd4489 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x2175b4a9 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x39a808d1 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xc2b7ac0e ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x4eeb8a4e xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xf67932b4 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x899d5c2c xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xcc7a4182 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x27de478b ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x413eac92 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x664844a6 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x6a773f3c ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x8870749e ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa38e501b ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe8a3f84c ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xfa752792 ircomm_close +EXPORT_SYMBOL net/irda/irda 0x0064e0ea hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x17c02631 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x2af467db irlap_open +EXPORT_SYMBOL net/irda/irda 0x2cd1bab7 iriap_open +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x34b5bfd0 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0x3e56064f hashbin_new +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x56fd36af iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x601bda46 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6b5fbcef hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x6d9f2121 irlap_close +EXPORT_SYMBOL net/irda/irda 0x6e0ab3c7 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x71ed3951 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x81e9eb3c irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x85d88217 irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x89b5e0fd irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x8dbc5ae0 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x954565eb irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x9713ace6 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x9cd42a74 iriap_close +EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0xa36ce276 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xb40c0927 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xb9a929f3 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xc2eb6b16 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0xc68e43be irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xc8fd907e irttp_dup +EXPORT_SYMBOL net/irda/irda 0xc900a149 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0xcead7dbb hashbin_find +EXPORT_SYMBOL net/irda/irda 0xd2108314 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xd7491614 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xd79a2d3b irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0xde3b7710 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe3463529 hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0xe3bde43e irias_insert_object +EXPORT_SYMBOL net/irda/irda 0xe5fdcc38 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xf0a694a1 irias_find_object +EXPORT_SYMBOL net/irda/irda 0xf1f89483 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0xf5876b95 hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0xfd5a2ee3 irttp_open_tsap +EXPORT_SYMBOL net/kcm/kcm 0xa702f93c kcm_proc_unregister +EXPORT_SYMBOL net/kcm/kcm 0xd3be5b64 kcm_proc_register +EXPORT_SYMBOL net/l2tp/l2tp_core 0x44bc861c l2tp_recv_common +EXPORT_SYMBOL net/lapb/lapb 0x08bd6d48 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x118d2487 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x60dc40e5 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x61f5556a lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x853dd0ff lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xac02d5be lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xbe415779 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xc93caa45 lapb_data_request +EXPORT_SYMBOL net/llc/llc 0x11646b37 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x13d0ca57 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x58b333a7 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x87493451 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x952895d4 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x981936a0 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xd3f38b0c llc_sap_open +EXPORT_SYMBOL net/mac80211/mac80211 0x02166686 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x0307011a wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x076c4ed6 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x0bdc1c85 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x0daaf13b ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x0e6db843 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x1011fa9d ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x1039faff ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x1364abe4 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x1386751e ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x162e8e9c __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x1883adfd ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x1e4ca206 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x2294d0f7 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x234e6f88 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x23d0847f ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x27eaba74 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x2ebd6b5f ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x2f5f435b __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x31fddada ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x32dc1dca ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x3412347a ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x37f92693 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x39f28601 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x414fc9b3 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x449ddeb7 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x47a50df5 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x4a1d5025 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x4c019f7b ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x4d8455c9 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x515fa3cf ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x54e517a9 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x56f0a68d ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x5ce7f5e5 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x63138cd1 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x63ea85a7 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x65b2626f ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x672f256e ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x6807ebf4 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x69a74598 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x69de096c ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x6bf111e1 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x6df684fe ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x72ab1bfd ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x7526f68d ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x76b9ef28 ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x77f6f051 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7a2124fa ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x7e161e66 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x87c4b2bf ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x8d6551ff ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x93a6ed80 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x95cc8aab ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x9851b0eb ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x9c8cba46 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x9fbcae55 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xa5c0dff6 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xa6167826 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xa8b15ea8 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xa971aa0d ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xaad301d8 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xac2d4b74 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0xbb6c7cce ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xc2377d56 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0xc294d7cd ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xc954a55f ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xcd59ba2a ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xcdec03b6 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xcec9b593 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xd13a319f ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xd1aafb12 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xd5531296 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xd584d294 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd5c2dddf __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd9078496 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xdcf32524 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xdf13f157 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xdfd0978a ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xe28b22d0 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xe4ade55d rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xe63b7dbf ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xeb66c331 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xec62594a ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xf0fca1c2 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xfc0d889a ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xfcc8db89 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xfe776c01 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac802154/mac802154 0x0085d946 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x7ada9c18 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xaa31d767 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xb7a2e9ac ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xbbf15e55 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xc8b52d50 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xcb364f81 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xff30c044 ieee802154_stop_queue +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0eaecddd ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1e8c6df9 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x32a496ed ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4da1981a unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5260dd56 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6be985f2 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x72a25b1e ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x874754fa register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8f1b9516 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb10ef0c1 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcb236f39 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xceb2b114 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xda33a161 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdcfa0c80 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe4d90a1f ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x0ce1c2f6 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xa263ca49 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xea29ae9d __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x3d4872fb nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x4703f49d nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x55c1ccd0 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x68ae8318 nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0xa9dbd323 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xf0a59940 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/x_tables 0x0a19f61c xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x2f33265e xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x2f4df4d1 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x50eaa136 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x5322c563 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x62ca6192 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x78933dda xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x9cfb9015 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xb5a3a58b xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xde8e86a5 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x04386d5a nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x0a267be7 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x16887e46 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x1a27e4ab nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x200d425f nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x289c0465 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x2b7ff764 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x2d4dbbc7 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x4f024a40 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x5ab79a90 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x6c539ea7 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x883995ec nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x8f1a3e97 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x9221b5dd nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x9c09f9a9 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x9fe529de nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xbab7525a nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xcc127f54 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xd4ef752b nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xd5cf1425 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xd76d1be8 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/nci/nci 0x0b54c9a9 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x1dea80d3 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x27b4e312 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x2c7bef38 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x37af48ba nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x4d627256 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x51e79f79 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x544274b3 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x5a89c9e8 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x66c9d3a1 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x7c5d89a5 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x82305be5 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x85d1fbe5 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x85e517b6 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x8b361006 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x90a4d697 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x99499833 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xaa3be305 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xabf877f9 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xb4b295c6 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xb6bb673d nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xbf2fa84c nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xce97e5a3 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xe56ec3d8 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xe648a20b nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xe7ef9465 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xee07762a nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xef2515c3 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xf9c750ac nci_send_data +EXPORT_SYMBOL net/nfc/nfc 0x0581c51b nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x090e0b86 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x0f3aafa8 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x117e7ee9 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x154a34ee nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x30f59011 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x33e52687 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x3bd02a70 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x41bc8d75 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x491b8a75 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x528a4a1c nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x53ed841b nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x569f62a7 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x5700eaf8 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x63882791 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x7631615a nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x7a67b3b8 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x7f903c57 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x7fc03e44 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x8c75644c nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x9d2561e5 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xa099a903 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xb15a93f4 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xc0fb7436 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xc8058669 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc_digital 0x72290843 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xda053504 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xef1a32de nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xf7bff364 nfc_digital_register_device +EXPORT_SYMBOL net/phonet/phonet 0x18f6fb5c pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x3a8071b4 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x47b56384 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x54eb3ec4 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x602d7505 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x6095d373 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x79ceadc6 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x92663f83 phonet_header_ops +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x07cf8f94 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0d6ea89b rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x24ffec75 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x254fe0dd rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2c2a0bcc rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x597fe6fd key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7519637e rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x85baf95b rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb8b69b0c rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc01abb47 rxrpc_kernel_data_consumed +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd236bc31 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd44795a1 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe546684c rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe6f00e2a rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe7bf8674 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/sctp/sctp 0x1eea768b sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7f0fa0c8 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xcce1471c gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xefc8c5a6 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x423ee60b xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x4ec3b8aa xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xaef731b6 svc_pool_stats_open +EXPORT_SYMBOL net/wimax/wimax 0xda575cd9 wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0xeffdef4e wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x04d0cd5e cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x08469673 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0a4a3e5b cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x0c855b25 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x0cd71cb9 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0d634bfc wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x0e230a02 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x0e8771fc cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x16a9f02a cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19c310ef ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1a47d311 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x1c00f8ea ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x1cd9c3cc wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x1e70cad4 cfg80211_connect_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x24e05450 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x265f2e1a cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x272c6a10 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x297a67f4 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x2e93a072 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x308dc6e2 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x30c72327 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x31efd55b cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x35ac6591 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x382e68bd cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x456490c9 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x46b50300 ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x4823a97c cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4a79820a cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x4c941e77 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x4d027d2f cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x5410737f cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x58012df8 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x5c9baade cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x5e122ef7 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x5e24840e cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5fa93859 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x66171737 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x66d0c002 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6a371f46 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x6b6ae7aa cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x6c040132 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x6d57275f cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x6d655fa3 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x6fe119da cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x71026e19 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x754e8334 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x7851f875 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x7d13d664 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x899379ef ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x8eb386d9 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x8f2c9139 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x94bf1c21 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x9552b56e cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x95a9588d cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x967578a1 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9776896e cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x98f86502 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x9a394a20 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x9b6410c3 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9f58c1ac cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xa3307428 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xa4b03786 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0xb08a6d85 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xb17fcd43 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xb298fa33 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xb4104a27 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xb44831e3 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb4c7afd1 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xb868749f cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xbb4da0ef cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xbca8fecd cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xc1be9e18 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xc51e4d7d cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc677a928 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xc9442f5d ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0xcb9aa218 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xcf307ea6 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xcf4f5be0 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xd2e8d15d ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xd9523f36 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdc3469b8 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/cfg80211 0xdcb6b884 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xdfbebe56 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xe12ee22d cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xe5235a5a cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xe8663ae6 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0xeff438db wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0xf21ae897 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xf56844f1 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0xf5a46a43 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xfcd8cb29 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xff3fc10b freq_reg_info +EXPORT_SYMBOL net/wireless/lib80211 0x1ed9265e lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x3a3fb4c1 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x5d14cba8 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x6a01f414 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x778f9543 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xef1affcc lib80211_register_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0x4516a04a ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x91f2a686 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 0x647cfa43 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 0x7de16bbf snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0xa276f1ba 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 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe758bd25 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xd08efc9b snd_seq_device_new +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 0xf0a1fdb3 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 0xd7c7afcc snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe60fb228 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xecbde43c snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xf23f9e6b snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x0c17292d snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x176aa90d snd_card_new +EXPORT_SYMBOL sound/core/snd 0x17946efd snd_ctl_replace +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 0x213fd10a snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x27bdb7c0 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x2804af17 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x2d20ea30 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x37be1a35 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x38e01439 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3ae921b1 snd_device_new +EXPORT_SYMBOL sound/core/snd 0x3cbde914 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x3d0de6dd snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x499413a4 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x5541b92f snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x5a7753e5 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x616996e7 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x620f5548 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x6ccc792b snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x81b12545 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x84573ab4 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x90218309 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x94ff4298 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x95dfd82a snd_card_register +EXPORT_SYMBOL sound/core/snd 0x96d1e094 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x97231f24 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x9d32a2af snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xa40a6ddd snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xa93e92c7 snd_register_device +EXPORT_SYMBOL sound/core/snd 0xafedf2c8 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xb1eabeb8 snd_device_register +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb40f8e47 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xb9622471 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xbda4969e snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0xc0c6dad5 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xca246075 snd_component_add +EXPORT_SYMBOL sound/core/snd 0xcb972684 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0xce1f5121 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL sound/core/snd 0xd1abf035 snd_cards +EXPORT_SYMBOL sound/core/snd 0xd292074c _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0xd3876a7e snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xd9ec2215 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xddcf91c8 release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xe2c2e14c snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xf4a2d137 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xf9d313fb snd_device_free +EXPORT_SYMBOL sound/core/snd 0xfab54fd1 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xfee27846 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd-hwdep 0xea3a5a05 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 0x08bfcea4 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x09cca154 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x128501f6 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x137404fc snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x18044c4e snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1f5faab7 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x291c281d snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x2abb3682 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x37355f4e snd_dma_alloc_pages_fallback +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 0x3a57c1ad snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x3b91f3af snd_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x3c0e0ae0 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x40732487 snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x4d9b6d35 snd_pcm_format_size +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 0x53e19b66 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x54045f66 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x57b5c9ce snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0x5c0c643e snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x5edf94fb snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x63155756 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 0x6d6b83bf snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x71bc09d4 snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0x79304a84 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x7fa1e198 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x836bbb4e snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x908b7397 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x92a88d9f snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x96ea870c snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x9cc082a9 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa87c18e4 snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0xab65a262 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xade88e76 snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xb3f35bde snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xb8ab6fed snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xb90f5870 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbf02d799 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0xc185b942 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0xc3c0ff02 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xc47e3d1e snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0xd16bc41c snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xd77a7fee snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xda383751 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xe3d13860 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xe4d76523 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xee7aa14b snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xf007b087 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xf11103b5 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xfb75b4e1 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xfd57db78 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xfe932ca8 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0b8c8d51 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x10d7a0d5 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1791976e snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3776d4a3 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3f268229 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4b6c7a4c snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4d21d5fb snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x567f6b3d snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x62338237 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x65103bf3 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7cbd82e7 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb66f1468 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb89b46d6 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb98ac3de snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd4265f96 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdf6b004f snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe4f34284 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xee41ec14 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf81fadcc __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-timer 0x07ae96c2 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x4cea9d51 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x500641b7 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xaf8a2f73 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xbec36a82 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xc2791414 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xc4fff265 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xc62dc0d1 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xca87f236 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xe81222ff snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xe96142c8 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xf8f25eb8 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xfa6fb3a8 snd_timer_close +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x612bba5d snd_mpu401_uart_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/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x2d1f1d4d snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3d9cafde snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5040161c snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x708ff11c snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x85ca2d52 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9ed471bf snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc2d1a722 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xce127fa1 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfc868b35 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x146f5653 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1e42f153 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3ba3bbfb snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x55ec3d6a snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5c6cd3af snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x654834f7 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7d0adf77 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x85ec7d9a snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9445dec8 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0160dd53 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x057a9642 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x08bb5885 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0def383f cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0e76c536 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x284d241c amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x30f72128 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3da65905 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4a9139e1 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4bd0a0b8 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4c10f3c1 snd_fw_schedule_registration +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x52292620 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5561f142 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x55c0ba0c fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5c9fcc1b amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x652ad261 snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x69ae97e1 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x70d1ca37 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x76ccb63d fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7e1c0c66 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x86b9f3d9 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x89d61dbf cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8d7815e5 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x917528c0 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x93134586 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9ac940ca snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xab0df3ba fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc4145abe avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc7cf6866 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcddd9705 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd2d2437a amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe7c97760 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xeadc93d3 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x5499441f snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x63bd59c3 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x03ce8d4e snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x058ca313 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x620f38ed snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6d5d433b snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7c9884f1 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xaccaf747 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb1737b6a snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb7785e39 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x57f5ac9c snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x66f2d216 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x6cf67bcf snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x8a1ff018 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x9f485ade snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xc9e6a476 snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x42d50737 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x7ab22d4b snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xd940652c snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xe005d84c snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x60ea5055 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x8a5f16fd snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x1237ffa5 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x68cf13cf snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7fe8c46f snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xad8092d0 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xc05c9268 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xd1dfc12f snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-i2c 0x426a101e snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x69e443a0 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x7bed15b2 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xa4a4bac2 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xabba9a92 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xfee61f94 snd_i2c_sendbytes +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0840fbf5 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x259c4771 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x39162d79 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x4e83cff6 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5a95626a snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x67a752a1 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x706d9659 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x9070d078 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xe47a14cf snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf9e970e1 snd_sbmixer_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0792e89f snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x081b94e2 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x10b197b2 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4f76c0cc snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x63cfc9cb snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x71aaa1c9 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7291120d snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9f4bd4a4 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xadeaebd4 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb820d62e snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcf35280f snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd20ef222 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd986ec55 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf2a6929c snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf2b7f735 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf9988c8e snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf9b3abf0 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x19d09e7f snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1a346fe8 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x92b34ad8 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9b5695cd snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb56b8f43 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb92ddf60 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc2c8866a snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe9d73d18 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf41c96b3 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x29b3a60a snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x59739992 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x79649e19 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x09c5812c oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x15a82ae6 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x16921184 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2bf7e7cd oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x34b05877 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3dcbe219 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4192994a oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4bd956e9 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x51207dda oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5de4baa8 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x60233d9e oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7ba809d7 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7edad0b3 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x86310448 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa7c13697 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xab182778 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb71b57de oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd27ba8e1 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xde383fa2 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe434504f oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe57c7dee oxygen_write32_masked +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x57ad3b3a snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc47c526c snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc97e37dd snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xe1aeba74 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xe5001be5 snd_trident_stop_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x01803ca6 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x4678fac7 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/snd-soc-core 0x632ab6e4 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x3c03e0b4 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x44943115 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0x548f3710 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x7ce10ae4 sound_class +EXPORT_SYMBOL sound/soundcore 0x81b36485 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xa9f79056 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x4bddc7f0 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x569ff204 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5e17a116 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 0x9c371c0b snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xc2644fb4 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xf54cc7ea snd_emux_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x1eb5ab52 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0x6d235fa7 snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x84a0fd08 __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x97c280f2 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xaefb8fc2 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xbd7c8caf __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xdaa2175c snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xe4b7c2a6 snd_util_mem_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 0xb2af19e1 snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xcbe96118 __snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL vmlinux 0x00049484 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x00587c1e framebuffer_release +EXPORT_SYMBOL vmlinux 0x006774fa km_policy_notify +EXPORT_SYMBOL vmlinux 0x00710491 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x007c620c netif_receive_skb +EXPORT_SYMBOL vmlinux 0x007c82b9 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0x00830fee i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x008ba7b2 tty_do_resize +EXPORT_SYMBOL vmlinux 0x00a5108e freezing_slow_path +EXPORT_SYMBOL vmlinux 0x00ac272e local_flush_tlb_mm +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00dbef01 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x00ea2e60 registered_fb +EXPORT_SYMBOL vmlinux 0x00f4728d xfrm_state_add +EXPORT_SYMBOL vmlinux 0x00feb8de mdiobus_read +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x010dc07a ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x0116c1ea pci_pme_active +EXPORT_SYMBOL vmlinux 0x011fc2e4 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x0128c062 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x0156320a neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x0156a866 param_set_ulong +EXPORT_SYMBOL vmlinux 0x019db55a radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0x01b070e7 cdev_del +EXPORT_SYMBOL vmlinux 0x01d2b239 pci_release_regions +EXPORT_SYMBOL vmlinux 0x01e056fd elv_rb_del +EXPORT_SYMBOL vmlinux 0x01f51b36 rwsem_down_write_failed_killable +EXPORT_SYMBOL vmlinux 0x01f8a521 get_phy_device +EXPORT_SYMBOL vmlinux 0x0210da14 seq_puts +EXPORT_SYMBOL vmlinux 0x0229f67f dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x02465979 netdev_err +EXPORT_SYMBOL vmlinux 0x025096c4 save_mount_options +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x026ca707 blk_complete_request +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x028f85e4 misc_deregister +EXPORT_SYMBOL vmlinux 0x02941e52 sys_fillrect +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng +EXPORT_SYMBOL vmlinux 0x02c6ae18 param_set_short +EXPORT_SYMBOL vmlinux 0x02e03fd8 fence_remove_callback +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x02fcefcd nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x030587b4 neigh_update +EXPORT_SYMBOL vmlinux 0x0308d349 agp_enable +EXPORT_SYMBOL vmlinux 0x030fadff dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x0317f2e2 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x03245ce3 reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x032f12a1 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03357bf7 __register_chrdev +EXPORT_SYMBOL vmlinux 0x0341a18f of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036d8d99 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x038b3116 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x03b8abee inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x03c4d8fe __kernel_write +EXPORT_SYMBOL vmlinux 0x03e96c5f agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x04074f48 ioremap +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x043a77cd file_update_time +EXPORT_SYMBOL vmlinux 0x0442fe41 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044ea48a skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x04623f31 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x0466366b netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x04724810 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x04938e1a md_reload_sb +EXPORT_SYMBOL vmlinux 0x04b5024d pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x04c7e415 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x04e74f12 dev_open +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ebb7d2 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x04f1041d lockref_get +EXPORT_SYMBOL vmlinux 0x050d2cf1 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range +EXPORT_SYMBOL vmlinux 0x05188034 tcf_hashinfo_destroy +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x052ab926 seq_printf +EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x05358126 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x0545bb81 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x05678553 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x057bf5dd md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x05814c4f inet_accept +EXPORT_SYMBOL vmlinux 0x058420ad vme_master_mmap +EXPORT_SYMBOL vmlinux 0x059b780d sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x059e3832 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x059ec342 devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns +EXPORT_SYMBOL vmlinux 0x05b311d3 bdi_init +EXPORT_SYMBOL vmlinux 0x05d56b87 __register_nls +EXPORT_SYMBOL vmlinux 0x05db6995 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x05e25804 __request_region +EXPORT_SYMBOL vmlinux 0x05eb3f35 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x05fee107 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x060d80d5 kill_pid +EXPORT_SYMBOL vmlinux 0x0610a82a ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x061342ff tty_unregister_device +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x06244a15 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x0642b8e9 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x064df643 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x064e3291 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x065c7184 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x066dbb62 bdget_disk +EXPORT_SYMBOL vmlinux 0x0675c7eb atomic64_cmpxchg +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x068bb204 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x069de0d3 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x06a4dbc8 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x06ac1092 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x06b8ba64 mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x06d2ce89 inet_bind +EXPORT_SYMBOL vmlinux 0x06e61c94 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x06f71e40 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x06faf489 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x07040a2e bitmap_unplug +EXPORT_SYMBOL vmlinux 0x070ca341 d_make_root +EXPORT_SYMBOL vmlinux 0x07145175 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x0718aedb jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x071fdab4 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x0720a653 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x073cd9a1 poll_freewait +EXPORT_SYMBOL vmlinux 0x07480c11 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x074e9213 down_killable +EXPORT_SYMBOL vmlinux 0x075bc82a blk_start_request +EXPORT_SYMBOL vmlinux 0x0765c74f tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x076d60dc uart_get_divisor +EXPORT_SYMBOL vmlinux 0x078076ed ip_options_compile +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07aafcbb dev_get_flags +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07cd0c07 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x07e4b1ea sk_stream_error +EXPORT_SYMBOL vmlinux 0x0803ebff lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x0811b85e mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x081d5693 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x08254d78 vme_irq_free +EXPORT_SYMBOL vmlinux 0x082b482d mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x082cc818 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x084af7c2 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x08527fad scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x085f2710 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x086d8cdd irq_stat +EXPORT_SYMBOL vmlinux 0x08915094 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x089282c9 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x0893ee53 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x08a8f5c9 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x08b6d372 mach_twr_p1025 +EXPORT_SYMBOL vmlinux 0x08bccf1f ata_print_version +EXPORT_SYMBOL vmlinux 0x08d3fab6 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x08dc4188 pcim_iomap +EXPORT_SYMBOL vmlinux 0x08df9457 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x08e5ba33 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08eb766c nf_register_hooks +EXPORT_SYMBOL vmlinux 0x08f41612 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x091c5d45 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x092e91c1 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x09395a6f fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x09510f8e hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x0952482c block_truncate_page +EXPORT_SYMBOL vmlinux 0x097401b9 from_kuid +EXPORT_SYMBOL vmlinux 0x09834cd1 gtm_stop_timer16 +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x0996c529 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x09af985c udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x09afe0fe mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x09bbbb91 trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x09c42d24 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c6411f schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x09c67afb flex_array_get +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d2060f jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x09d21f9b mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09f706e0 register_qdisc +EXPORT_SYMBOL vmlinux 0x0a0310c0 find_get_entry +EXPORT_SYMBOL vmlinux 0x0a178c78 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a370bf6 tty_vhangup +EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x0a38e535 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a56f0f9 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x0a5a762b make_bad_inode +EXPORT_SYMBOL vmlinux 0x0a718fdc mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x0a834d9c wake_up_process +EXPORT_SYMBOL vmlinux 0x0a857858 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x0a97903e sk_common_release +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0ab0f76e netlink_capable +EXPORT_SYMBOL vmlinux 0x0ab51640 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x0ac18ba2 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0adbf9a9 gtm_ack_timer16 +EXPORT_SYMBOL vmlinux 0x0af68800 dev_uc_del +EXPORT_SYMBOL vmlinux 0x0af710ac bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b237fd5 vfs_setpos +EXPORT_SYMBOL vmlinux 0x0b287348 kern_path_create +EXPORT_SYMBOL vmlinux 0x0b3938da rtnl_create_link +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b495c4c posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x0b4f5b90 genphy_resume +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b6f6d94 keyring_search +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b79b0ae of_get_next_child +EXPORT_SYMBOL vmlinux 0x0b954afd mutex_trylock +EXPORT_SYMBOL vmlinux 0x0b97f6d9 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x0b98a2a4 tcf_hash_search +EXPORT_SYMBOL vmlinux 0x0b9e22a3 __frontswap_store +EXPORT_SYMBOL vmlinux 0x0b9e4851 devm_memunmap +EXPORT_SYMBOL vmlinux 0x0bb2764c vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bd9c519 arp_create +EXPORT_SYMBOL vmlinux 0x0bded7d7 cdev_alloc +EXPORT_SYMBOL vmlinux 0x0be3ec9e redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x0be81724 key_invalidate +EXPORT_SYMBOL vmlinux 0x0bf1985e skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x0c021a30 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x0c04ccac of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x0c07f1ff zpool_register_driver +EXPORT_SYMBOL vmlinux 0x0c09d9a8 param_set_uint +EXPORT_SYMBOL vmlinux 0x0c0b053b block_write_full_page +EXPORT_SYMBOL vmlinux 0x0c12e626 __debugger_bpt +EXPORT_SYMBOL vmlinux 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c461948 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x0c4e940e cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c5b19cc xfrm_register_km +EXPORT_SYMBOL vmlinux 0x0c94ad4a twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x0c96b280 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x0c995c2d seq_write +EXPORT_SYMBOL vmlinux 0x0c9b6089 nvram_get_size +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0ccf1e59 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x0cffdf53 netdev_features_change +EXPORT_SYMBOL vmlinux 0x0d1de877 sk_busy_loop +EXPORT_SYMBOL vmlinux 0x0d2c5d00 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x0d3b2628 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x0d4b1463 posix_lock_file +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d73b651 simple_readpage +EXPORT_SYMBOL vmlinux 0x0d7e9e59 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x0d86c5c3 par_io_config_pin +EXPORT_SYMBOL vmlinux 0x0d8b8786 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x0d9e1ea7 fence_signal +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da55572 phy_device_free +EXPORT_SYMBOL vmlinux 0x0dbf9428 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x0dc0ace0 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x0dc114ea blk_init_queue +EXPORT_SYMBOL vmlinux 0x0dc1757d inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0dc2a8ba try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x0dc898c7 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x0dcb3cf8 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0x0dd74b78 pci_bus_get +EXPORT_SYMBOL vmlinux 0x0e22af52 inet6_bind +EXPORT_SYMBOL vmlinux 0x0e3f9c9e fput +EXPORT_SYMBOL vmlinux 0x0e4e9828 skb_insert +EXPORT_SYMBOL vmlinux 0x0e577bc1 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x0e5da008 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x0e6b56e0 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x0e6d3d32 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e88a377 nvm_get_bb_tbl +EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0e9efa6c seq_dentry +EXPORT_SYMBOL vmlinux 0x0ea2577d vga_con +EXPORT_SYMBOL vmlinux 0x0eac7df7 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0ef4c94a skb_copy_bits +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f4e54fe __inet_hash +EXPORT_SYMBOL vmlinux 0x0f502468 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x0f5750ed generic_write_end +EXPORT_SYMBOL vmlinux 0x0f5faa7e wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f8f0512 register_md_personality +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fc13a5c i2c_release_client +EXPORT_SYMBOL vmlinux 0x0fc8eb5e pci_scan_slot +EXPORT_SYMBOL vmlinux 0x0fce004e blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x0fd8d5c9 nvm_register +EXPORT_SYMBOL vmlinux 0x0fefce3a phy_device_register +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x1006e5a1 nmi_panic +EXPORT_SYMBOL vmlinux 0x1010b26f pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x10150df8 devm_clk_get +EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source +EXPORT_SYMBOL vmlinux 0x104d519c set_create_files_as +EXPORT_SYMBOL vmlinux 0x1062a2ff dev_driver_string +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x107ab5aa mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x108f2cd3 generic_perform_write +EXPORT_SYMBOL vmlinux 0x10abd939 set_posix_acl +EXPORT_SYMBOL vmlinux 0x10c27125 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x10c31814 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x10cb9436 _dev_info +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x111f498a qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x111fa7c9 qe_pin_set_dedicated +EXPORT_SYMBOL vmlinux 0x114ca449 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x115329c8 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x115d78b2 fb_class +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x1164493c kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x1167f22b ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x11698c0d ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable +EXPORT_SYMBOL vmlinux 0x11930e6a fb_show_logo +EXPORT_SYMBOL vmlinux 0x11ae905d vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x11b75731 sk_free +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x11fc0e3c ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x121446d5 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x121b4cc8 mmc_get_card +EXPORT_SYMBOL vmlinux 0x121b4e4b memremap +EXPORT_SYMBOL vmlinux 0x12242999 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x122f6232 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x125a1b41 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x128b93a2 sock_edemux +EXPORT_SYMBOL vmlinux 0x129f6f6a bioset_create +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12adb3fb nf_log_unset +EXPORT_SYMBOL vmlinux 0x12caef69 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x13013162 vme_irq_request +EXPORT_SYMBOL vmlinux 0x130549a5 ping_prot +EXPORT_SYMBOL vmlinux 0x1312cf5b __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x1321f0cb grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13617a6c dec_node_page_state +EXPORT_SYMBOL vmlinux 0x13739695 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x13b6bf2d devm_iounmap +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d5a97e proto_register +EXPORT_SYMBOL vmlinux 0x13ef193e agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x14053745 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x14361adb __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x145e4a02 __d_lookup_done +EXPORT_SYMBOL vmlinux 0x1494c9e4 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x149dbc5e fscrypt_restore_control_page +EXPORT_SYMBOL vmlinux 0x14a9f47f jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14e758d5 fscrypt_fname_usr_to_disk +EXPORT_SYMBOL vmlinux 0x14ea3607 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x14f546ac bio_integrity_free +EXPORT_SYMBOL vmlinux 0x150ad92b ioport_resource +EXPORT_SYMBOL vmlinux 0x15163b3c mount_single +EXPORT_SYMBOL vmlinux 0x151c524e input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x151fb5b7 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x154621a6 __serio_register_port +EXPORT_SYMBOL vmlinux 0x15471e0a inet_register_protosw +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x15500b12 read_dev_sector +EXPORT_SYMBOL vmlinux 0x1567dc30 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x15747086 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x15771663 from_kgid +EXPORT_SYMBOL vmlinux 0x15863247 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x158c6082 dqget +EXPORT_SYMBOL vmlinux 0x15a37850 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15c8579d vga_put +EXPORT_SYMBOL vmlinux 0x15c97781 fscrypt_get_encryption_info +EXPORT_SYMBOL vmlinux 0x15d3fd60 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x15db1159 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x15e6fd18 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x15eb4a76 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x15f2f9b7 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x15fb435a jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x161134f0 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x161d0033 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x16225965 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x16309f32 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x1634c470 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x164762d2 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x164865fb scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x16540bbc __cmpdi2 +EXPORT_SYMBOL vmlinux 0x1661c348 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x1670cfc5 file_remove_privs +EXPORT_SYMBOL vmlinux 0x16859acb bio_endio +EXPORT_SYMBOL vmlinux 0x169dd22e sockfd_lookup +EXPORT_SYMBOL vmlinux 0x16aa60a0 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x16c6184d __nd_iostat_start +EXPORT_SYMBOL vmlinux 0x16c7af70 account_page_dirtied +EXPORT_SYMBOL vmlinux 0x16d8322c kfree_skb_list +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e3b20c __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x16fbe2fe __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x171bcef1 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x173406df dev_addr_del +EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock +EXPORT_SYMBOL vmlinux 0x1765933e vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x176bc813 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x1774beb6 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x17858839 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x178b148e fscrypt_pullback_bio_page +EXPORT_SYMBOL vmlinux 0x17915e3b finish_open +EXPORT_SYMBOL vmlinux 0x1799d7be flow_cache_init +EXPORT_SYMBOL vmlinux 0x17aa156a __ucmpdi2 +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17bc9692 __invalidate_device +EXPORT_SYMBOL vmlinux 0x17dcc74d inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x180c24cf xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x18224438 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x183014a2 fence_free +EXPORT_SYMBOL vmlinux 0x18351c84 local_flush_tlb_page +EXPORT_SYMBOL vmlinux 0x1835b20c rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x1867558b xattr_full_name +EXPORT_SYMBOL vmlinux 0x186ff06e blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x18763859 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x188f2629 nonseekable_open +EXPORT_SYMBOL vmlinux 0x1890d5f8 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x189b6e86 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x18b92a39 scsi_execute +EXPORT_SYMBOL vmlinux 0x18c2b481 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x18c5efe4 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x18dcd961 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18f0eaa3 tso_start +EXPORT_SYMBOL vmlinux 0x191ac64a no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x1962b4e5 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x1962d10d gtm_set_timer16 +EXPORT_SYMBOL vmlinux 0x19694f75 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x1970df86 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19bc9f88 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c20d17 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x19c3d564 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x19cb86dc devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x19d5a3c3 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x1a07a56a mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0x1a0d973f tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x1a10cc2f lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x1a25e851 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x1a30174d skb_pull +EXPORT_SYMBOL vmlinux 0x1a41fb35 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x1a71aa52 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x1a73d044 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x1a9fd407 simple_rmdir +EXPORT_SYMBOL vmlinux 0x1aa7f8b8 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x1ab5fac8 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x1ae064ea writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x1ae0b4ec neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x1af17a3c vmap +EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock +EXPORT_SYMBOL vmlinux 0x1b14aee1 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b2a5aa5 account_page_redirty +EXPORT_SYMBOL vmlinux 0x1b34882f generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x1b36e55f of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b7fedd2 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x1b81f718 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x1bca2b59 load_fp_state +EXPORT_SYMBOL vmlinux 0x1c1ae1d5 kobject_add +EXPORT_SYMBOL vmlinux 0x1c219794 generic_read_dir +EXPORT_SYMBOL vmlinux 0x1c24f4d1 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x1c2869aa genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x1c2a3e98 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x1c4c256e blk_stop_queue +EXPORT_SYMBOL vmlinux 0x1c65381f neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x1c7470b0 iov_iter_init +EXPORT_SYMBOL vmlinux 0x1c7ce662 ucc_slow_free +EXPORT_SYMBOL vmlinux 0x1c7cfdb1 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check +EXPORT_SYMBOL vmlinux 0x1c817136 tty_lock +EXPORT_SYMBOL vmlinux 0x1cb2576c mdio_driver_register +EXPORT_SYMBOL vmlinux 0x1cc05cba inet6_protos +EXPORT_SYMBOL vmlinux 0x1ce2c6ac dev_mc_flush +EXPORT_SYMBOL vmlinux 0x1ce4d1cc __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x1ce5690c mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x1d02eb83 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x1d0a50ba simple_unlink +EXPORT_SYMBOL vmlinux 0x1d277901 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x1d28663f of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x1d3f0242 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x1d540aa8 of_platform_device_create +EXPORT_SYMBOL vmlinux 0x1d75222d pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x1d8276b0 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x1d919049 __neigh_create +EXPORT_SYMBOL vmlinux 0x1da241e2 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x1dac45a7 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x1dac6e40 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x1daee28a percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1dd7bb96 genphy_suspend +EXPORT_SYMBOL vmlinux 0x1e0727ef mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e3f0a58 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x1e3fa0aa mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x1e698a0f clear_inode +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e74a225 redraw_screen +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eae8df4 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x1ebb7eaa dma_async_device_register +EXPORT_SYMBOL vmlinux 0x1ee529eb vfs_mkdir +EXPORT_SYMBOL vmlinux 0x1ee715fd init_net +EXPORT_SYMBOL vmlinux 0x1eec94f5 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x1f0540bb inet_del_protocol +EXPORT_SYMBOL vmlinux 0x1f43a37a neigh_lookup +EXPORT_SYMBOL vmlinux 0x1f638a9a xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x1f7bc577 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1fae3a8b fddi_type_trans +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc744b1 vfs_readv +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x201e686b jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x20353bb6 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204ca77b xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x206687ad cpm_muram_alloc_fixed +EXPORT_SYMBOL vmlinux 0x2069b830 netdev_warn +EXPORT_SYMBOL vmlinux 0x2071c584 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x208d0b5c giveup_fpu +EXPORT_SYMBOL vmlinux 0x208feb32 __devm_release_region +EXPORT_SYMBOL vmlinux 0x209174ab fsync_bdev +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20b98d5b ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20d2b121 pci_dev_put +EXPORT_SYMBOL vmlinux 0x20d34d26 xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20f0c583 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x20f7ab91 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x20fb2f62 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x21278603 i2c_master_send +EXPORT_SYMBOL vmlinux 0x2142b3a8 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x21608578 security_path_mknod +EXPORT_SYMBOL vmlinux 0x2167db87 nla_reserve +EXPORT_SYMBOL vmlinux 0x2180d8e9 ppp_input_error +EXPORT_SYMBOL vmlinux 0x21948e46 neigh_for_each +EXPORT_SYMBOL vmlinux 0x219517ae vfs_create +EXPORT_SYMBOL vmlinux 0x219ed4d4 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x21adf397 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x21af0a4e unlock_new_inode +EXPORT_SYMBOL vmlinux 0x21d6324f input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x21d695e1 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21f1198d add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x21f3dc15 cpm_command +EXPORT_SYMBOL vmlinux 0x21fccece tcf_exts_change +EXPORT_SYMBOL vmlinux 0x2229bf4f nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222f6207 __nla_reserve +EXPORT_SYMBOL vmlinux 0x2233443e i2c_verify_client +EXPORT_SYMBOL vmlinux 0x22395847 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x22445020 pci_get_slot +EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem +EXPORT_SYMBOL vmlinux 0x225f6e7e update_devfreq +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x2271a7dd igrab +EXPORT_SYMBOL vmlinux 0x227416f5 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2277a7b5 netpoll_setup +EXPORT_SYMBOL vmlinux 0x2278e94b slhc_remember +EXPORT_SYMBOL vmlinux 0x2290c3ab kill_anon_super +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22c95cc7 flush_old_exec +EXPORT_SYMBOL vmlinux 0x22d64b52 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x22e6dbec vfs_unlink +EXPORT_SYMBOL vmlinux 0x2313630f security_path_mkdir +EXPORT_SYMBOL vmlinux 0x231bb78a input_unregister_handle +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x2330e703 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL vmlinux 0x23409026 pipe_lock +EXPORT_SYMBOL vmlinux 0x234506a8 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x235bfd1c pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x23663512 vfs_whiteout +EXPORT_SYMBOL vmlinux 0x238abaac kernel_accept +EXPORT_SYMBOL vmlinux 0x23a11c62 request_key_async +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23ab2f23 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x23abb37a blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x23b9bca8 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23cfe411 set_nlink +EXPORT_SYMBOL vmlinux 0x23e5492c km_is_alive +EXPORT_SYMBOL vmlinux 0x23ed6c13 scsi_host_put +EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x23fff34e devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x2417aa46 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x2428111b neigh_destroy +EXPORT_SYMBOL vmlinux 0x24309459 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x2431a4d6 pid_task +EXPORT_SYMBOL vmlinux 0x24364fd3 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x24427232 skb_store_bits +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x24591fc8 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245b52d5 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x247334a1 __napi_schedule +EXPORT_SYMBOL vmlinux 0x24777c35 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x24855cba __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x24bc1140 write_inode_now +EXPORT_SYMBOL vmlinux 0x24c5bf3f mach_corenet_generic +EXPORT_SYMBOL vmlinux 0x24d73404 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x24d8cfd3 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x24e13ba9 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x24ec43ee atomic64_or_return +EXPORT_SYMBOL vmlinux 0x24f00380 ida_init +EXPORT_SYMBOL vmlinux 0x24f4f411 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x250118e1 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x25327ce3 of_device_is_available +EXPORT_SYMBOL vmlinux 0x2540defe simple_dir_operations +EXPORT_SYMBOL vmlinux 0x25547a35 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25a1003f rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x25a81cc5 qe_get_firmware_info +EXPORT_SYMBOL vmlinux 0x25a8d34c pci_add_resource +EXPORT_SYMBOL vmlinux 0x25a97d70 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x25d248fa simple_write_end +EXPORT_SYMBOL vmlinux 0x25e3ab30 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f3bd2e atomic64_xchg +EXPORT_SYMBOL vmlinux 0x25f7d59f phy_suspend +EXPORT_SYMBOL vmlinux 0x261f4448 tty_register_device +EXPORT_SYMBOL vmlinux 0x2621a9f5 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x263090f3 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x2631adea kmap_prot +EXPORT_SYMBOL vmlinux 0x26394d9e copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263edd50 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x263efb31 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x264d7ddd neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x266a0062 clear_nlink +EXPORT_SYMBOL vmlinux 0x26919630 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x269af9f1 of_get_address +EXPORT_SYMBOL vmlinux 0x26b44589 mmc_start_req +EXPORT_SYMBOL vmlinux 0x26b760c4 slhc_init +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26c9b522 register_console +EXPORT_SYMBOL vmlinux 0x26d7f45f ps2_end_command +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26fe72c5 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x273195b0 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x273af041 __bforget +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x275ea9c5 brioctl_set +EXPORT_SYMBOL vmlinux 0x276750a8 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x276aea4d sock_register +EXPORT_SYMBOL vmlinux 0x2771d7ff ida_get_new_above +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x278737aa kobject_set_name +EXPORT_SYMBOL vmlinux 0x27a14a55 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27be04c5 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x27c576d1 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x27d722fa km_policy_expired +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27eade6b console_stop +EXPORT_SYMBOL vmlinux 0x27f76370 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x27f9099e kthread_stop +EXPORT_SYMBOL vmlinux 0x28166464 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x282a933b pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x282cbcc1 tcp_proc_register +EXPORT_SYMBOL vmlinux 0x28379147 fb_deferred_io_mmap +EXPORT_SYMBOL vmlinux 0x28570dfd pci_select_bars +EXPORT_SYMBOL vmlinux 0x286e78b3 fsl_lbc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x287f3345 component_match_add_release +EXPORT_SYMBOL vmlinux 0x289db3ee idr_remove +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28a7beba __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x28aa9f7f sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x28d12ef8 __quota_error +EXPORT_SYMBOL vmlinux 0x28e6c249 netlink_unicast +EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x28f784f5 __debugger_break_match +EXPORT_SYMBOL vmlinux 0x28fc927a do_splice_direct +EXPORT_SYMBOL vmlinux 0x2912401c pci_clear_master +EXPORT_SYMBOL vmlinux 0x2923987d file_path +EXPORT_SYMBOL vmlinux 0x2951fdb5 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x29950711 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x29a3ee29 bdi_destroy +EXPORT_SYMBOL vmlinux 0x29cf2522 arp_xmit +EXPORT_SYMBOL vmlinux 0x29dc8cba devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x29df0039 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x29f92649 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x2a04f70d tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a36f918 kernel_write +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a3e2e3b d_genocide +EXPORT_SYMBOL vmlinux 0x2a4a182d check_disk_size_change +EXPORT_SYMBOL vmlinux 0x2a81439d security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x2a87cd2f forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x2a8b901f inet_frag_find +EXPORT_SYMBOL vmlinux 0x2a9338b1 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2ab28253 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x2accdd8c ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ad7ca66 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x2ad89727 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x2af44baa flow_cache_fini +EXPORT_SYMBOL vmlinux 0x2afe569d iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b2f9e32 dev_close +EXPORT_SYMBOL vmlinux 0x2b342a76 giveup_all +EXPORT_SYMBOL vmlinux 0x2b4ec41c lock_page_memcg +EXPORT_SYMBOL vmlinux 0x2b704880 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x2b82d1d4 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x2b9140e5 nvm_submit_ppa_list +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bc7cc93 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed +EXPORT_SYMBOL vmlinux 0x2bec1126 should_remove_suid +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c2f15e0 of_find_property +EXPORT_SYMBOL vmlinux 0x2c5f1bea __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x2c600d41 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout +EXPORT_SYMBOL vmlinux 0x2c8290fd loop_register_transfer +EXPORT_SYMBOL vmlinux 0x2cd9dbb4 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x2cfe0e08 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d15e765 init_special_inode +EXPORT_SYMBOL vmlinux 0x2d1da028 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d40616c fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x2d43f7e6 __f_setown +EXPORT_SYMBOL vmlinux 0x2d51c980 kernel_bind +EXPORT_SYMBOL vmlinux 0x2d7fe79d phy_connect_direct +EXPORT_SYMBOL vmlinux 0x2daa5ff1 tcf_em_register +EXPORT_SYMBOL vmlinux 0x2dbb9d1b napi_gro_flush +EXPORT_SYMBOL vmlinux 0x2de602d1 bio_reset +EXPORT_SYMBOL vmlinux 0x2df2990d bioset_free +EXPORT_SYMBOL vmlinux 0x2e140089 switch_mmu_context +EXPORT_SYMBOL vmlinux 0x2e147afb mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e22e614 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x2e410418 dst_alloc +EXPORT_SYMBOL vmlinux 0x2e4c172f md_error +EXPORT_SYMBOL vmlinux 0x2e4e7cf4 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x2e63fbdb ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x2e7515d2 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x2e9edc3e tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x2ec1e927 input_set_keycode +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f0e8d4a bdget +EXPORT_SYMBOL vmlinux 0x2f14b195 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x2f2119ff give_up_console +EXPORT_SYMBOL vmlinux 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f561790 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x2f5f2a57 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2f680ad1 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x2f6dfcff bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x2f756224 devm_memremap +EXPORT_SYMBOL vmlinux 0x2fa5dd92 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fbec1a2 jbd2_journal_inode_add_wait +EXPORT_SYMBOL vmlinux 0x2fc0d1e0 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x2fc9fa28 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x2fd7e1f5 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x3005083a twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x300ca92d padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x301fc2fa scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x304d876c tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x30555e84 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x305b6de0 dquot_alloc +EXPORT_SYMBOL vmlinux 0x30791b0b neigh_app_ns +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b2f6de blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x30b6c6be jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id +EXPORT_SYMBOL vmlinux 0x30c39412 release_pages +EXPORT_SYMBOL vmlinux 0x30ea7c08 cdev_add +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x312218aa tty_register_driver +EXPORT_SYMBOL vmlinux 0x312e1f80 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x3132b936 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x314432b6 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x315ea566 rps_needed +EXPORT_SYMBOL vmlinux 0x3162e3c0 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x31711b67 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x317cc99d kill_fasync +EXPORT_SYMBOL vmlinux 0x31836e1e inode_get_bytes +EXPORT_SYMBOL vmlinux 0x3187966a jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x3196c2b5 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x31a2f240 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x31d4a226 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x31e03507 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx +EXPORT_SYMBOL vmlinux 0x31fb1c79 netif_device_detach +EXPORT_SYMBOL vmlinux 0x31fc23f3 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x32253610 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x32304add blk_sync_queue +EXPORT_SYMBOL vmlinux 0x323a691b padata_do_parallel +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x326b9f39 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x3279ab20 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x327ba843 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x32838b28 dev_printk +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy +EXPORT_SYMBOL vmlinux 0x328aa64c par_io_data_set +EXPORT_SYMBOL vmlinux 0x3291e428 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x32927e42 tty_set_operations +EXPORT_SYMBOL vmlinux 0x32999fff mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x32c0d172 ip_defrag +EXPORT_SYMBOL vmlinux 0x32c118ea tty_unlock +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32f1c500 vfs_statfs +EXPORT_SYMBOL vmlinux 0x32f9fd85 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x32fa1ac5 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x3300fb5f of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x3303c161 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x330a868a dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x331489fa param_array_ops +EXPORT_SYMBOL vmlinux 0x331759b0 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x3333f313 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x33539062 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x336d3d01 kfree_skb +EXPORT_SYMBOL vmlinux 0x3373fe41 param_set_ushort +EXPORT_SYMBOL vmlinux 0x33880a31 vfs_link +EXPORT_SYMBOL vmlinux 0x338a0996 inet_listen +EXPORT_SYMBOL vmlinux 0x3393e4a7 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x33ab260d of_dev_put +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33c3ed89 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33c7d059 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x33d15c56 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x33d429f0 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33eb8e78 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x33f064ea blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f681c6 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x33fc55eb dev_addr_add +EXPORT_SYMBOL vmlinux 0x341d7aad devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x34359399 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x34408a14 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x344940ec inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x344a5d15 eth_type_trans +EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x345c8916 strict_msr_control +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x3487a973 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x3491b7eb __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34ad7561 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x34b4a2d3 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x34bb70b9 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x34cb668a qdisc_list_del +EXPORT_SYMBOL vmlinux 0x34d71cc7 blkdev_put +EXPORT_SYMBOL vmlinux 0x34d90251 skb_checksum +EXPORT_SYMBOL vmlinux 0x34e49484 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x34f02674 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f984c8 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x350bd9fa param_set_bool +EXPORT_SYMBOL vmlinux 0x350e878c vme_lm_request +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3530a807 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x355317a7 free_buffer_head +EXPORT_SYMBOL vmlinux 0x3556ac66 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x3557300c neigh_table_init +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x357e91c7 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x35a2a8e3 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x35a810fe vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35ba383a sock_no_connect +EXPORT_SYMBOL vmlinux 0x35ccdf71 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x35d4e255 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x35d79965 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x35e3dcc4 poll_initwait +EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy +EXPORT_SYMBOL vmlinux 0x363c03cd fscrypt_d_ops +EXPORT_SYMBOL vmlinux 0x3647057a xfrm_state_update +EXPORT_SYMBOL vmlinux 0x365b2ade of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0x3664887a ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x366e19f1 vme_bus_type +EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy +EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x368dbf7a jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x3695edda request_resource +EXPORT_SYMBOL vmlinux 0x369c3987 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36c5cc19 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x36f4a208 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x37003a8f ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x370b4aa6 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x37514072 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x37613521 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x3771b461 crc_ccitt +EXPORT_SYMBOL vmlinux 0x37784843 __frontswap_test +EXPORT_SYMBOL vmlinux 0x3779ff7d bdgrab +EXPORT_SYMBOL vmlinux 0x3781a7f8 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x378afe79 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x379043c4 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x37a5775f __alloc_skb +EXPORT_SYMBOL vmlinux 0x37a614ec abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37e0153d flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x38088443 install_exec_creds +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381ccc13 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x385e93f6 sync_inode +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x38a15461 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b825d1 idr_replace +EXPORT_SYMBOL vmlinux 0x38da1d19 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x38e3cea3 powerpc_debugfs_root +EXPORT_SYMBOL vmlinux 0x38e5af4e of_get_pci_address +EXPORT_SYMBOL vmlinux 0x38e954c7 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios +EXPORT_SYMBOL vmlinux 0x38fc628a fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x391677e9 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0x39262b90 down_write_trylock +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394aefec seq_putc +EXPORT_SYMBOL vmlinux 0x3958bfc6 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x395ed799 release_sock +EXPORT_SYMBOL vmlinux 0x395f143d filp_clone_open +EXPORT_SYMBOL vmlinux 0x39739efb msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x3977f23d netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x397ce547 thaw_super +EXPORT_SYMBOL vmlinux 0x397df5df __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x39805dc0 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x39819a30 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399d8eeb jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x399fab4b locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39b98930 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x39e37603 dcb_setapp +EXPORT_SYMBOL vmlinux 0x39e38c59 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x3a0b0bb1 vm_map_ram +EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x3a1d3634 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x3a2a71a0 vga_client_register +EXPORT_SYMBOL vmlinux 0x3a2b7dd1 generic_write_checks +EXPORT_SYMBOL vmlinux 0x3a3956bc jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3a9cc146 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x3acaec32 iget_failed +EXPORT_SYMBOL vmlinux 0x3ad9f289 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x3ae96f66 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x3aeffa32 page_readlink +EXPORT_SYMBOL vmlinux 0x3af70ecb twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x3aff9ca5 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x3b56bd37 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x3b5c4c53 nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b72f57f crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x3b93e0e8 noop_fsync +EXPORT_SYMBOL vmlinux 0x3b953a70 allocate_resource +EXPORT_SYMBOL vmlinux 0x3b98c61d iptun_encaps +EXPORT_SYMBOL vmlinux 0x3bacd76e twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x3bba5953 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x3bbd6f0e xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x3bcf1269 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x3bec5d4d sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x3bf0d7e1 sg_miter_start +EXPORT_SYMBOL vmlinux 0x3c095174 d_splice_alias +EXPORT_SYMBOL vmlinux 0x3c138c01 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c20ed4b ppp_dev_name +EXPORT_SYMBOL vmlinux 0x3c272dea nobh_writepage +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c410f68 __netif_schedule +EXPORT_SYMBOL vmlinux 0x3c46c5a9 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x3c62aeb9 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x3c652b24 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3c71ff48 mount_nodev +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c8a8fba simple_release_fs +EXPORT_SYMBOL vmlinux 0x3c9a091a proc_set_size +EXPORT_SYMBOL vmlinux 0x3c9e07e6 mem_map +EXPORT_SYMBOL vmlinux 0x3cadf699 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x3cb3931b sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init +EXPORT_SYMBOL vmlinux 0x3cd5ee4b empty_aops +EXPORT_SYMBOL vmlinux 0x3cdb6a0d __elv_add_request +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ceac3e6 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x3cf3dffe __bread_gfp +EXPORT_SYMBOL vmlinux 0x3cf6d206 seq_file_path +EXPORT_SYMBOL vmlinux 0x3d2748d3 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x3d2b2f8c skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x3d40d001 generic_readlink +EXPORT_SYMBOL vmlinux 0x3d5aca00 nobh_write_end +EXPORT_SYMBOL vmlinux 0x3d693605 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x3d6c9cfc tcp_prot +EXPORT_SYMBOL vmlinux 0x3d9ce278 fscrypt_decrypt_bio_pages +EXPORT_SYMBOL vmlinux 0x3dc02a4e flex_array_free_parts +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd05be9 get_agp_version +EXPORT_SYMBOL vmlinux 0x3dd5722a mdio_device_free +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e1560ab dev_mc_del +EXPORT_SYMBOL vmlinux 0x3e3d0a4f __mdiobus_register +EXPORT_SYMBOL vmlinux 0x3e42fffc xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x3e46f3d6 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3e9c494c __genl_register_family +EXPORT_SYMBOL vmlinux 0x3ea3c089 tty_name +EXPORT_SYMBOL vmlinux 0x3eba2fa4 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x3ec14b39 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x3ecc1756 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x3ed48eff pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x3ed4bfa9 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x3ed8017e blk_get_request +EXPORT_SYMBOL vmlinux 0x3ed9c66c sync_file_create +EXPORT_SYMBOL vmlinux 0x3edc2e36 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f220d88 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x3f351bb3 of_get_parent +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f5383da inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x3f5bfe55 __breadahead +EXPORT_SYMBOL vmlinux 0x3f5c6471 del_timer_sync +EXPORT_SYMBOL vmlinux 0x3f93e4f0 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x3fb1cf71 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x3fcb5f59 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x3fe0d1c0 slhc_free +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ff8e495 lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x406df5a6 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x40793abd __dquot_free_space +EXPORT_SYMBOL vmlinux 0x4091b50b __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b7bfb0 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x40ba8c02 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x40c3f909 __nla_put +EXPORT_SYMBOL vmlinux 0x40c6d13e pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40f1ad10 tb_ticks_per_jiffy +EXPORT_SYMBOL vmlinux 0x412e480c __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x41415ece __put_page +EXPORT_SYMBOL vmlinux 0x414796ff jbd2_journal_inode_add_write +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x41489448 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x41510c3c xfrm_init_state +EXPORT_SYMBOL vmlinux 0x415301e3 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x4159c38f ioremap_wc +EXPORT_SYMBOL vmlinux 0x41696a35 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x41862ad4 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x41b3f0fc touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0x41b5d8ba blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x41c8c4fc rtnl_notify +EXPORT_SYMBOL vmlinux 0x41f818e7 may_umount_tree +EXPORT_SYMBOL vmlinux 0x41f8647f radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x41f8ff98 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x420df02b bio_copy_data +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x422bd5aa pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x422d380e pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424a769a fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x4252f04f blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x425f2302 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x4263cc7e skb_make_writable +EXPORT_SYMBOL vmlinux 0x4267adeb mmc_can_reset +EXPORT_SYMBOL vmlinux 0x428dc7fa inode_change_ok +EXPORT_SYMBOL vmlinux 0x42987987 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x42a44fe2 ucc_fast_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0x42ad6114 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x42b03e34 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x42f972aa ppp_channel_index +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x43151bc7 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x431dc4f6 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x431ecd3a sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x433daf50 uart_register_driver +EXPORT_SYMBOL vmlinux 0x433db7d0 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x43749e75 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x43798d3e qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x43842afa of_scan_pci_bridge +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x4387ff40 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x4397705e dentry_path_raw +EXPORT_SYMBOL vmlinux 0x439aa869 kill_litter_super +EXPORT_SYMBOL vmlinux 0x439b073f __put_cred +EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all +EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x43ac48a7 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x43cb19e4 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x43d0dce0 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x43d79411 mmc_add_host +EXPORT_SYMBOL vmlinux 0x43db7c8d kernel_listen +EXPORT_SYMBOL vmlinux 0x44031491 sock_create_lite +EXPORT_SYMBOL vmlinux 0x440a5052 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x44245afc dev_get_by_name +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x443de569 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x443e2653 md_integrity_register +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x44468156 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x448591df mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x44ac1e84 bh_submit_read +EXPORT_SYMBOL vmlinux 0x44afd6a4 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x44b219f4 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x44b5ee9a kasprintf +EXPORT_SYMBOL vmlinux 0x44c1cc76 fscrypt_release_ctx +EXPORT_SYMBOL vmlinux 0x44cc0681 elevator_change +EXPORT_SYMBOL vmlinux 0x44e8fbf2 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x4517ef58 skb_clone +EXPORT_SYMBOL vmlinux 0x45392355 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x4551635f nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x4558abb5 search_binary_handler +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x459bbc9a mach_ppa8548 +EXPORT_SYMBOL vmlinux 0x459ee865 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x45b4881b __brelse +EXPORT_SYMBOL vmlinux 0x45b79252 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x45c38041 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x45d63fe1 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x46020f73 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x4607984f cfb_fillrect +EXPORT_SYMBOL vmlinux 0x46084295 kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock +EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user +EXPORT_SYMBOL vmlinux 0x46207e21 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x462345e1 xmon +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x4631108f devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x46384deb bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x4643f022 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x4655e120 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x4656ad8a devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x4657ebaa fence_context_alloc +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x4668cc51 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467e6558 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x46d6d314 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x4708f112 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x472a465b pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x47388eb6 d_invalidate +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x474906f9 of_phy_attach +EXPORT_SYMBOL vmlinux 0x4764dcb9 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x476b3d18 of_get_next_parent +EXPORT_SYMBOL vmlinux 0x476fe264 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x4795526e gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47ace675 rio_query_mport +EXPORT_SYMBOL vmlinux 0x47f6300a of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x47ff3057 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x48031db5 key_validate +EXPORT_SYMBOL vmlinux 0x483426dd kernel_getpeername +EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x48446546 devm_request_resource +EXPORT_SYMBOL vmlinux 0x484beb7e mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x48550c6b clocksource_unregister +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x4887ad40 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x48960d8e unregister_binfmt +EXPORT_SYMBOL vmlinux 0x48a771c5 cpu_core_map +EXPORT_SYMBOL vmlinux 0x48ae030b pci_iomap +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48bae165 dev_uc_init +EXPORT_SYMBOL vmlinux 0x48ccf5fc twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x48e50858 elevator_alloc +EXPORT_SYMBOL vmlinux 0x48ef7f3f mmc_request_done +EXPORT_SYMBOL vmlinux 0x48ff2048 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x491005cf xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x4911afa9 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x49258045 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x492d0765 qdisc_reset +EXPORT_SYMBOL vmlinux 0x492e52d1 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x4935caf1 devm_gpio_free +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x497d1a87 dev_add_pack +EXPORT_SYMBOL vmlinux 0x498ba6ba nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x4997fa15 unregister_console +EXPORT_SYMBOL vmlinux 0x49a20e4c blk_register_region +EXPORT_SYMBOL vmlinux 0x49a3c619 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49d54df9 unlock_rename +EXPORT_SYMBOL vmlinux 0x49daa6b0 ucc_fast_dump_regs +EXPORT_SYMBOL vmlinux 0x49de3d14 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x49ea58be radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x49ff7910 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x4a41118e d_set_d_op +EXPORT_SYMBOL vmlinux 0x4a720d8b mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x4a78d6f5 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x4a7b1bbb genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x4a8ce2a0 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x4a92fa02 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x4aac54ed pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x4ab3d0d5 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x4ae35ff8 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b213951 down_write +EXPORT_SYMBOL vmlinux 0x4b35805e scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x4b4fe75b radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x4b5203ff __napi_complete +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b61a436 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x4b815279 freeze_super +EXPORT_SYMBOL vmlinux 0x4b8326ff ida_remove +EXPORT_SYMBOL vmlinux 0x4b847d26 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x4ba093cf fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bb56c96 bio_chain +EXPORT_SYMBOL vmlinux 0x4bd991a9 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4bed99b3 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0x4bef7e2c xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x4c0266c2 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c3ea1ab __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x4c5630cc agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x4c758c57 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x4c7e4848 of_device_register +EXPORT_SYMBOL vmlinux 0x4c7e6db6 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x4c8e4e01 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x4cbceb70 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x4cc1546b jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x4cd33b8e i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4cdb7e91 km_report +EXPORT_SYMBOL vmlinux 0x4ceaeff8 udp_prot +EXPORT_SYMBOL vmlinux 0x4d36a856 inet_offloads +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x4d71004a __cpm2_setbrg +EXPORT_SYMBOL vmlinux 0x4d7166a7 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x4d791953 mempool_resize +EXPORT_SYMBOL vmlinux 0x4d7d04e6 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x4d874d02 netdev_crit +EXPORT_SYMBOL vmlinux 0x4d8b6aaf d_drop +EXPORT_SYMBOL vmlinux 0x4d8ef607 follow_up +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9f132f phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x4db6caf7 override_creds +EXPORT_SYMBOL vmlinux 0x4db7bfdb neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x4db98718 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x4dc437e1 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x4dcc8776 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x4dcf217d textsearch_prepare +EXPORT_SYMBOL vmlinux 0x4dd32257 param_ops_byte +EXPORT_SYMBOL vmlinux 0x4dda4e19 __break_lease +EXPORT_SYMBOL vmlinux 0x4de17468 contig_page_data +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4dec6038 memscan +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df5c310 pci_device_from_OF_node +EXPORT_SYMBOL vmlinux 0x4e25ad6a xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x4e2d67b2 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e5a5f18 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e7d149d __register_binfmt +EXPORT_SYMBOL vmlinux 0x4e87ebe9 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x4e8c307a tcp_make_synack +EXPORT_SYMBOL vmlinux 0x4e924a46 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x4eb635b5 input_get_keycode +EXPORT_SYMBOL vmlinux 0x4ecea75a param_set_invbool +EXPORT_SYMBOL vmlinux 0x4ed19898 inet_release +EXPORT_SYMBOL vmlinux 0x4ed25a1f pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x4ee40b60 default_llseek +EXPORT_SYMBOL vmlinux 0x4ee60f8c udp_seq_open +EXPORT_SYMBOL vmlinux 0x4ee7faab param_ops_charp +EXPORT_SYMBOL vmlinux 0x4ee8791e read_cache_page +EXPORT_SYMBOL vmlinux 0x4f01add7 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x4f08fdd1 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f36a116 km_state_notify +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f40e431 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x4f5586dc pci_request_regions +EXPORT_SYMBOL vmlinux 0x4f564a37 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query +EXPORT_SYMBOL vmlinux 0x4f62e97a input_register_device +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f7817f6 dquot_acquire +EXPORT_SYMBOL vmlinux 0x4f872c85 bdevname +EXPORT_SYMBOL vmlinux 0x4fa26875 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x4fbae6a6 uuid_le_to_bin +EXPORT_SYMBOL vmlinux 0x4fbf5425 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x4fd05799 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x4fd530d2 dqput +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fe99583 atomic64_dec_if_positive +EXPORT_SYMBOL vmlinux 0x4fffbd18 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5017126a to_nd_btt +EXPORT_SYMBOL vmlinux 0x501f42d6 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x502116de max8998_update_reg +EXPORT_SYMBOL vmlinux 0x502264d8 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x50522c65 sync_filesystem +EXPORT_SYMBOL vmlinux 0x50608e7d phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x5077ee91 simple_dname +EXPORT_SYMBOL vmlinux 0x509817cf vprintk_emit +EXPORT_SYMBOL vmlinux 0x5098f4f8 vfs_mknod +EXPORT_SYMBOL vmlinux 0x50b3359a nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50c3439b tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x51081b78 audit_log_start +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x5127b6f7 tcp_filter +EXPORT_SYMBOL vmlinux 0x5128f06e block_write_end +EXPORT_SYMBOL vmlinux 0x5153ec12 bio_split +EXPORT_SYMBOL vmlinux 0x5154e233 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x5158cd98 nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x515b7858 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x515e24a7 flush_instruction_cache +EXPORT_SYMBOL vmlinux 0x516548af jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x5175f95c ip_check_defrag +EXPORT_SYMBOL vmlinux 0x518d5623 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x518dec66 seq_open_private +EXPORT_SYMBOL vmlinux 0x51966768 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait +EXPORT_SYMBOL vmlinux 0x51cd497e fd_install +EXPORT_SYMBOL vmlinux 0x51de437f mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup +EXPORT_SYMBOL vmlinux 0x51f02548 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x5203f5ce wait_iff_congested +EXPORT_SYMBOL vmlinux 0x520997a7 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x52159731 ucc_fast_enable +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x524f69f6 mb_cache_entry_delete_block +EXPORT_SYMBOL vmlinux 0x525d6faa vme_dma_request +EXPORT_SYMBOL vmlinux 0x527a7c7b mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x528661f5 of_parse_phandle +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x52a65792 __get_user_pages +EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le +EXPORT_SYMBOL vmlinux 0x52bd50a5 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x52c82b52 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x52d56632 mmc_put_card +EXPORT_SYMBOL vmlinux 0x52f5a5b0 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x52feffc9 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x533684ad swake_up +EXPORT_SYMBOL vmlinux 0x5339105e sync_blockdev +EXPORT_SYMBOL vmlinux 0x5341f6b0 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x53860f3b vme_init_bridge +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53b6c595 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x53c8fc12 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x53d9f01b tcp_seq_open +EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x54126786 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x5412c7c7 up +EXPORT_SYMBOL vmlinux 0x542981bc posix_test_lock +EXPORT_SYMBOL vmlinux 0x542e554c blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5440897f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x54884503 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x548e801f load_nls_default +EXPORT_SYMBOL vmlinux 0x5491d5f8 __frontswap_load +EXPORT_SYMBOL vmlinux 0x54a8e28d blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54b2d7d7 vfs_rename +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54cd945d xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x54e1e2c1 pci_domain_nr +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f30e10 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x5500c6ac blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x5508104c swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x551ebb12 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x552356e2 cdev_init +EXPORT_SYMBOL vmlinux 0x552b9a35 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x554426f9 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x55688d6f __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x5568c553 complete +EXPORT_SYMBOL vmlinux 0x55795466 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x557e123b shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x55808d70 serio_interrupt +EXPORT_SYMBOL vmlinux 0x558d4cda blk_start_queue +EXPORT_SYMBOL vmlinux 0x5592e976 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55d85ad5 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x55f5c7ec of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x561625bc serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x5618ccf2 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x56260526 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x562a75cc serio_unregister_port +EXPORT_SYMBOL vmlinux 0x562e8b19 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x5642aa93 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x564428bc skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x5696938c kill_block_super +EXPORT_SYMBOL vmlinux 0x56a53e90 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56cb1534 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x56cbf514 genlmsg_put +EXPORT_SYMBOL vmlinux 0x56cf1979 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x56d3d17d serio_reconnect +EXPORT_SYMBOL vmlinux 0x56e48336 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x56ef34b0 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57582bc6 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x575af70c on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x576d27b8 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x577c8c76 vfs_getattr +EXPORT_SYMBOL vmlinux 0x5795135b jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x579e18df sg_miter_skip +EXPORT_SYMBOL vmlinux 0x57a4472c invalidate_partition +EXPORT_SYMBOL vmlinux 0x57ae095f decrementer_clockevent +EXPORT_SYMBOL vmlinux 0x57b4768f netdev_alert +EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits +EXPORT_SYMBOL vmlinux 0x57c98150 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x57e2cfe9 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x57f342b2 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x57fea39d atomic64_and_return +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x58290521 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x582a1d93 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x584444d8 inc_nlink +EXPORT_SYMBOL vmlinux 0x58461a32 start_tty +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x58623807 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x58730093 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x58739325 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc +EXPORT_SYMBOL vmlinux 0x58b02c27 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x58b19629 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x58b35e79 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58ba4607 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x58ca5b59 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x58e1c15d input_reset_device +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58e70f58 dev_crit +EXPORT_SYMBOL vmlinux 0x58f46123 bdi_register +EXPORT_SYMBOL vmlinux 0x59054ae5 __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x590e85fb of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x591241d0 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x5932b12d clkdev_drop +EXPORT_SYMBOL vmlinux 0x59383421 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page +EXPORT_SYMBOL vmlinux 0x5962e33b scsi_device_get +EXPORT_SYMBOL vmlinux 0x596c841b scsi_print_command +EXPORT_SYMBOL vmlinux 0x5970a630 kobject_put +EXPORT_SYMBOL vmlinux 0x59993d44 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg +EXPORT_SYMBOL vmlinux 0x599bc2fc lock_rename +EXPORT_SYMBOL vmlinux 0x599fee5a of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x59a4f3ce generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59b3378a completion_done +EXPORT_SYMBOL vmlinux 0x59bf3f6f km_new_mapping +EXPORT_SYMBOL vmlinux 0x59c73d7e tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x59d87f55 clear_user_page +EXPORT_SYMBOL vmlinux 0x59e1860b audit_log +EXPORT_SYMBOL vmlinux 0x59ec4c64 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a40febe skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x5a4fcb60 uart_resume_port +EXPORT_SYMBOL vmlinux 0x5a66a58c gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x5a709207 of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0x5a767de8 cad_pid +EXPORT_SYMBOL vmlinux 0x5a772147 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x5a88f674 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x5a8d0df7 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0x5ac04f57 __getblk_slow +EXPORT_SYMBOL vmlinux 0x5ac6f905 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x5aeff038 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x5af094a1 blk_run_queue +EXPORT_SYMBOL vmlinux 0x5af2a0c4 arp_tbl +EXPORT_SYMBOL vmlinux 0x5af415fc blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b252cc9 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x5b43ba84 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x5b75bc33 make_kprojid +EXPORT_SYMBOL vmlinux 0x5b8caaf9 ucc_slow_graceful_stop_tx +EXPORT_SYMBOL vmlinux 0x5b90adae page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x5b9a9e1e padata_free +EXPORT_SYMBOL vmlinux 0x5b9addd3 inet_ioctl +EXPORT_SYMBOL vmlinux 0x5b9ff780 of_root +EXPORT_SYMBOL vmlinux 0x5bb56c3e pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x5be7ddf8 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x5be92b97 bio_phys_segments +EXPORT_SYMBOL vmlinux 0x5befc41c blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x5bf4c325 follow_down +EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x5c74469a mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x5c942219 scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x5ca55eb9 sock_no_getname +EXPORT_SYMBOL vmlinux 0x5ca7c254 elevator_exit +EXPORT_SYMBOL vmlinux 0x5caa7054 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x5cb10a8a tty_check_change +EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x5cedc5cc skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfb273c param_ops_invbool +EXPORT_SYMBOL vmlinux 0x5d36e704 set_wb_congested +EXPORT_SYMBOL vmlinux 0x5d3bc2cd dquot_initialize +EXPORT_SYMBOL vmlinux 0x5d4a8320 kvasprintf +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d58efa0 convert_ifc_address +EXPORT_SYMBOL vmlinux 0x5d7b9f8d qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x5d9e4309 param_get_charp +EXPORT_SYMBOL vmlinux 0x5ddfbb24 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x5dfbe76f of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x5e0f44a6 padata_stop +EXPORT_SYMBOL vmlinux 0x5e1bbbfa file_open_root +EXPORT_SYMBOL vmlinux 0x5e27321b register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x5e383ecc dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up +EXPORT_SYMBOL vmlinux 0x5e5a80d6 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x5e65e10e blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x5e7a3bc6 tcp_check_req +EXPORT_SYMBOL vmlinux 0x5e7da25d elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e8a82c7 textsearch_register +EXPORT_SYMBOL vmlinux 0x5e8aed02 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x5e8baa89 blkdev_get +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5ea251ee iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x5eb0401e proc_dostring +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ebf286e sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x5ece8718 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f18ac38 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x5f1af822 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x5f45a6df d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x5f545ba3 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x5f754e5a memset +EXPORT_SYMBOL vmlinux 0x5f89ce6e scsi_print_sense +EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base +EXPORT_SYMBOL vmlinux 0x5fa2707e param_ops_bint +EXPORT_SYMBOL vmlinux 0x5fa34814 simple_rename +EXPORT_SYMBOL vmlinux 0x5fd113ad devm_free_irq +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fdd5a95 inode_set_flags +EXPORT_SYMBOL vmlinux 0x5fe98192 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0x5ffd5aed get_tz_trend +EXPORT_SYMBOL vmlinux 0x6002363a i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601ce145 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x6032237d of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x60396720 __page_symlink +EXPORT_SYMBOL vmlinux 0x60459155 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x604818e2 vme_slot_num +EXPORT_SYMBOL vmlinux 0x6051766b inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x6065f537 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0x606a0d63 param_get_short +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x606d28ed mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x606f8988 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0x607dcc39 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60b86f61 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x60d98de2 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x60e20766 single_release +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x612e00c1 __sb_end_write +EXPORT_SYMBOL vmlinux 0x613b3847 netdev_change_features +EXPORT_SYMBOL vmlinux 0x6141f272 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x61846c7d sk_mc_loop +EXPORT_SYMBOL vmlinux 0x618bdb1e tcf_register_action +EXPORT_SYMBOL vmlinux 0x61ad2b36 lookup_bdev +EXPORT_SYMBOL vmlinux 0x61b012b1 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61cb7bca tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb +EXPORT_SYMBOL vmlinux 0x61fbf983 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x62152483 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x621d50fd tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x621e9474 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x622cb204 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x623c55ed pagecache_get_page +EXPORT_SYMBOL vmlinux 0x62459bc3 dma_common_mmap +EXPORT_SYMBOL vmlinux 0x624a9c4b elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x62538167 slhc_toss +EXPORT_SYMBOL vmlinux 0x6269ffad mmc_erase +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62877cf5 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x629ec483 __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x62a0da15 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x62ab827a uart_suspend_port +EXPORT_SYMBOL vmlinux 0x62aff1aa vme_bus_num +EXPORT_SYMBOL vmlinux 0x62b905d5 alloc_disk_node +EXPORT_SYMBOL vmlinux 0x62bd3722 dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631b38e2 iget_locked +EXPORT_SYMBOL vmlinux 0x6321c947 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x6331a101 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x63607311 scmd_printk +EXPORT_SYMBOL vmlinux 0x637f2153 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x6381c383 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x63950708 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x639b07d6 register_filesystem +EXPORT_SYMBOL vmlinux 0x63a6afd9 copy_to_iter +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63b55069 write_one_page +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63ee3b30 inet_gro_complete +EXPORT_SYMBOL vmlinux 0x63ef551e sock_wfree +EXPORT_SYMBOL vmlinux 0x63f6c578 input_allocate_device +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x642273de pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x643fa6d0 __radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6442fe02 __module_get +EXPORT_SYMBOL vmlinux 0x64466207 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x6449ba47 inet_select_addr +EXPORT_SYMBOL vmlinux 0x64565307 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x6469a18a __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a4b84d cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64b38543 unregister_nls +EXPORT_SYMBOL vmlinux 0x64ccd8a9 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x64e725ce xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x65018c8f d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x65023cd0 ether_setup +EXPORT_SYMBOL vmlinux 0x65080160 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652f4f55 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x65400222 __irq_offset_value +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x654396ea phy_start +EXPORT_SYMBOL vmlinux 0x6565d33f scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x657eed99 generic_setxattr +EXPORT_SYMBOL vmlinux 0x65886afc scsi_host_get +EXPORT_SYMBOL vmlinux 0x65a34e7d page_address +EXPORT_SYMBOL vmlinux 0x65b4af3b i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x65c02a1a d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x65c17689 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x65c5ec3a ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e70c46 dquot_commit +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x65f93b2f register_cdrom +EXPORT_SYMBOL vmlinux 0x65fa4ab5 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x6609381b __mutex_init +EXPORT_SYMBOL vmlinux 0x661f9a66 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x6620462b setattr_copy +EXPORT_SYMBOL vmlinux 0x66208072 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x662e300a get_unmapped_area +EXPORT_SYMBOL vmlinux 0x664d1fc2 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x66b6e6fd get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x66b76ad5 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x66cab50e set_disk_ro +EXPORT_SYMBOL vmlinux 0x66d00c19 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x66e7330e inet_gso_segment +EXPORT_SYMBOL vmlinux 0x66f4d790 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x66f7c331 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x670236b4 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x670c5398 inet_gro_receive +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x674f4979 is_nd_btt +EXPORT_SYMBOL vmlinux 0x676c7e25 drop_nlink +EXPORT_SYMBOL vmlinux 0x67779831 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x679e07b3 serio_close +EXPORT_SYMBOL vmlinux 0x67a30775 dma_direct_ops +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67ba2b3f kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x67beb62e mapping_tagged +EXPORT_SYMBOL vmlinux 0x67bf37d8 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x67f92ebc __next_node_in +EXPORT_SYMBOL vmlinux 0x67fd2303 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x67ffd769 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x68019bd9 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x68151540 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x6848171d pci_release_region +EXPORT_SYMBOL vmlinux 0x684a2be6 dump_skip +EXPORT_SYMBOL vmlinux 0x6856a085 get_super +EXPORT_SYMBOL vmlinux 0x685b8563 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x688a3a52 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x68935a90 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68dd90a2 scsi_unregister +EXPORT_SYMBOL vmlinux 0x691c3599 submit_bh +EXPORT_SYMBOL vmlinux 0x691d3290 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x691fb56f i2c_del_driver +EXPORT_SYMBOL vmlinux 0x69215276 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6947ec8a devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x694f9754 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x695cf172 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x6963efd2 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6976a182 param_set_int +EXPORT_SYMBOL vmlinux 0x69788091 dst_discard_out +EXPORT_SYMBOL vmlinux 0x6986fe16 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69c03fc5 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x69d6162a tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x69d7e5b8 __debugger_ipi +EXPORT_SYMBOL vmlinux 0x69dd933f param_set_charp +EXPORT_SYMBOL vmlinux 0x69ebf814 devm_clk_put +EXPORT_SYMBOL vmlinux 0x69ec536e register_quota_format +EXPORT_SYMBOL vmlinux 0x69f0d95a genphy_update_link +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a1a0eaa udp6_set_csum +EXPORT_SYMBOL vmlinux 0x6a2da71f request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x6a3ada75 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x6a3cfb4d kmem_cache_size +EXPORT_SYMBOL vmlinux 0x6a4dc6bd prepare_creds +EXPORT_SYMBOL vmlinux 0x6a514915 pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a6b193b netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x6a80a3f5 cpm_muram_free +EXPORT_SYMBOL vmlinux 0x6a912ea7 key_revoke +EXPORT_SYMBOL vmlinux 0x6aaaf0fb misc_register +EXPORT_SYMBOL vmlinux 0x6ab98cd9 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x6abff3dd pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x6ac0b536 page_get_link +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6ad65253 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x6ae2c01c module_layout +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b08ce44 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x6b0969f0 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x6b0b714b cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2532b4 mntget +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b3fb3f7 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x6b5782c1 ucc_slow_stop_tx +EXPORT_SYMBOL vmlinux 0x6b8046ba pci_platform_rom +EXPORT_SYMBOL vmlinux 0x6b82b180 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x6ba0a90c ppp_input +EXPORT_SYMBOL vmlinux 0x6ba9fa9b mac_find_mode +EXPORT_SYMBOL vmlinux 0x6bad791a dput +EXPORT_SYMBOL vmlinux 0x6bae74ff tty_devnum +EXPORT_SYMBOL vmlinux 0x6bb719e7 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x6bbd95be devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x6bbf8124 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x6bc0c8d4 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bd3a81c reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6bdd9463 kset_register +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c2b9846 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x6c30bf99 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x6c388786 blk_end_request +EXPORT_SYMBOL vmlinux 0x6c4b995e scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c6cf552 sys_imageblit +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c978f4c tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x6ca1d1a4 atomic64_read +EXPORT_SYMBOL vmlinux 0x6caeecd1 get_io_context +EXPORT_SYMBOL vmlinux 0x6cb37127 flex_array_clear +EXPORT_SYMBOL vmlinux 0x6cbd847a md_cluster_mod +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6ceb3a4d tcp_release_cb +EXPORT_SYMBOL vmlinux 0x6cee3674 simple_getattr +EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums +EXPORT_SYMBOL vmlinux 0x6cf4d045 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x6d079235 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x6d098ff7 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d18df59 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d33dde6 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0x6d3c231f unregister_qdisc +EXPORT_SYMBOL vmlinux 0x6d503eb7 netdev_state_change +EXPORT_SYMBOL vmlinux 0x6d589fbb pcim_pin_device +EXPORT_SYMBOL vmlinux 0x6d740223 flex_array_put +EXPORT_SYMBOL vmlinux 0x6da14a29 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x6da64fcf genl_unregister_family +EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns +EXPORT_SYMBOL vmlinux 0x6dbc8bfc address_space_init_once +EXPORT_SYMBOL vmlinux 0x6dd00784 page_mapping +EXPORT_SYMBOL vmlinux 0x6dd7a70c phy_disconnect +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e036832 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x6e107531 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x6e160bfe pipe_unlock +EXPORT_SYMBOL vmlinux 0x6e379526 kernstart_addr +EXPORT_SYMBOL vmlinux 0x6e480072 d_exact_alias +EXPORT_SYMBOL vmlinux 0x6e4efe76 skb_trim +EXPORT_SYMBOL vmlinux 0x6e6285de scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x6e65325a user_revoke +EXPORT_SYMBOL vmlinux 0x6e6d69e2 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e96093c lease_modify +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6eb74dff proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x6eca4d4f mod_timer_pending +EXPORT_SYMBOL vmlinux 0x6f057b56 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x6f097790 tcp_child_process +EXPORT_SYMBOL vmlinux 0x6f0a8f09 of_get_mac_address +EXPORT_SYMBOL vmlinux 0x6f173ee6 gtm_get_timer16 +EXPORT_SYMBOL vmlinux 0x6f2c4fae page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x6f31b6a4 d_lookup +EXPORT_SYMBOL vmlinux 0x6f3588e5 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x6f519dda sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x6f55f397 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x6f596691 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x6f5da7b6 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x6f6075cf __scsi_add_device +EXPORT_SYMBOL vmlinux 0x6f6cad8f sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x6f6e76cd gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x6f719795 skb_seq_read +EXPORT_SYMBOL vmlinux 0x6f7c5382 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f9d2d6e sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fc09ce4 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x6fca2dd4 d_path +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd614f1 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x6fee871d twl6040_power +EXPORT_SYMBOL vmlinux 0x6ff4f026 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x703a6a33 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x704115b3 qe_usb_clock_set +EXPORT_SYMBOL vmlinux 0x704288a0 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7053580f tcp_read_sock +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x706b70b6 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x70bc6669 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x70c8667f xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x70d888b7 __debugger_fault_handler +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x7106bcba __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x711d45ea eth_header_parse +EXPORT_SYMBOL vmlinux 0x7129b705 input_register_handle +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x715bbd74 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x716fb3b3 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x717e7d3f elv_rb_add +EXPORT_SYMBOL vmlinux 0x7198034b nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71c7bdf4 device_add_disk +EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71ca70ce filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x71ca9541 force_sig +EXPORT_SYMBOL vmlinux 0x71de1fbb scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x71dea990 dm_get_device +EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x720b1528 __skb_csum_offload_chk +EXPORT_SYMBOL vmlinux 0x7212821a end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x72158dce alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x7215dade dev_change_xdp_fd +EXPORT_SYMBOL vmlinux 0x721a4938 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x721c15c9 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x72316ee2 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x72388ab7 netdev_notice +EXPORT_SYMBOL vmlinux 0x723a815d nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x7295cbcd dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x7295d55e nf_log_trace +EXPORT_SYMBOL vmlinux 0x7297838e block_invalidatepage +EXPORT_SYMBOL vmlinux 0x72a9e5f4 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72c0780d filemap_fault +EXPORT_SYMBOL vmlinux 0x72d4c23c fsl_get_sys_freq +EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x72e77bb6 dma_set_mask +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x730817f0 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731a4798 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x731bca38 dquot_operations +EXPORT_SYMBOL vmlinux 0x732125f2 dev_set_group +EXPORT_SYMBOL vmlinux 0x733b2383 next_tlbcam_idx +EXPORT_SYMBOL vmlinux 0x733df7c3 vm_event_states +EXPORT_SYMBOL vmlinux 0x734301f8 dget_parent +EXPORT_SYMBOL vmlinux 0x735844be gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue +EXPORT_SYMBOL vmlinux 0x73616da0 udp_poll +EXPORT_SYMBOL vmlinux 0x736a6d8e key_put +EXPORT_SYMBOL vmlinux 0x736a6f37 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x73710a3e dqstats +EXPORT_SYMBOL vmlinux 0x7375b8c4 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x738ceacd mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x73979de6 atomic64_or +EXPORT_SYMBOL vmlinux 0x73b416a6 open_exec +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x740d3e2d inet_add_protocol +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x74111d09 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x7433a60c vme_register_bridge +EXPORT_SYMBOL vmlinux 0x74484beb put_tty_driver +EXPORT_SYMBOL vmlinux 0x745a05be agp_find_bridge +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7473468e mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x7478d489 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74998f5d gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74f10b65 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x74f219cc param_get_long +EXPORT_SYMBOL vmlinux 0x74f4bb60 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x74f6ce0a mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x74f9d967 kill_bdev +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x75077c6c mount_subtree +EXPORT_SYMBOL vmlinux 0x751c91aa may_umount +EXPORT_SYMBOL vmlinux 0x752fa89c kthread_bind +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x7557f7fa fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x755a151b blk_end_request_all +EXPORT_SYMBOL vmlinux 0x756dd160 start_thread +EXPORT_SYMBOL vmlinux 0x7575af47 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x7579582a lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x757f088f cpm_muram_offset +EXPORT_SYMBOL vmlinux 0x75811312 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7584d1ca mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +EXPORT_SYMBOL vmlinux 0x75994700 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x759c1506 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x75ab3f6b ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75f54db4 flush_dcache_page +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760c6b66 input_free_device +EXPORT_SYMBOL vmlinux 0x76115ae6 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x761bda22 ucc_fast_disable +EXPORT_SYMBOL vmlinux 0x763f165c nf_hook_slow +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x765aaad2 nla_append +EXPORT_SYMBOL vmlinux 0x768e6b1e con_is_bound +EXPORT_SYMBOL vmlinux 0x769855f3 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x769e06d7 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x76a84c37 vfs_fsync +EXPORT_SYMBOL vmlinux 0x76ad6e84 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x76bb85e6 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76d66028 kernel_read +EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be +EXPORT_SYMBOL vmlinux 0x76e072d4 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x76e26958 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x76f211c1 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order +EXPORT_SYMBOL vmlinux 0x770f14ee agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x771a9083 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x772d295e __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x77427788 ihold +EXPORT_SYMBOL vmlinux 0x77643271 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x776aae55 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x778fd72c tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x779de99e __init_rwsem +EXPORT_SYMBOL vmlinux 0x77a5d9aa fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x77aaaed2 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x77ac8368 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x77b06f09 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x77b6003f path_nosuid +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77efebeb pci_iomap_range +EXPORT_SYMBOL vmlinux 0x77eff76e pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x77f30106 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x77f8a282 skb_dequeue +EXPORT_SYMBOL vmlinux 0x77fad153 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x78007702 mntput +EXPORT_SYMBOL vmlinux 0x78024b36 blk_get_queue +EXPORT_SYMBOL vmlinux 0x78041a60 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x78465fc2 posix_acl_init +EXPORT_SYMBOL vmlinux 0x784abbc7 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x78509f2f rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x78511035 sock_i_uid +EXPORT_SYMBOL vmlinux 0x787f0a55 free_user_ns +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a20eac padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x78c1c884 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x78ce7eb5 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x78cf527f ata_port_printk +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78faf6e8 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x791d3aac inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x79229f10 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x79385604 inet6_getname +EXPORT_SYMBOL vmlinux 0x795c5413 md_write_end +EXPORT_SYMBOL vmlinux 0x7967dd59 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x799c1b4f netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x79a18634 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79de98cd vfs_llseek +EXPORT_SYMBOL vmlinux 0x79e245ad dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x79e68341 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x79e96c44 inode_init_once +EXPORT_SYMBOL vmlinux 0x79fcce15 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 +EXPORT_SYMBOL vmlinux 0x7a3bfbd0 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x7a3f916d seq_read +EXPORT_SYMBOL vmlinux 0x7a43c357 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a455a72 cur_cpu_spec +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad76e0b tcp_req_err +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ade3983 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x7ae4b359 agp_generic_enable +EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7afb6fa2 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x7b08c228 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b3adaf4 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x7b3e6c53 replace_mount_options +EXPORT_SYMBOL vmlinux 0x7b3f533d abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b851f38 nvm_end_io +EXPORT_SYMBOL vmlinux 0x7b8ecad6 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x7ba1cb45 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x7bc7280d agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x7bcc32ee blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x7be4827c pci_dram_offset +EXPORT_SYMBOL vmlinux 0x7bf709af sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x7bfe9356 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c477cb5 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x7c4e9faf input_flush_device +EXPORT_SYMBOL vmlinux 0x7c83fa23 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x7c9291d1 csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7c98a869 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x7ca280f0 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x7cab1b3c devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x7caf1f08 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x7cafe4e0 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cf105b9 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x7cf2be8e d_set_fallthru +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf69b0a sock_alloc_file +EXPORT_SYMBOL vmlinux 0x7cfc6683 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x7cfe8ee1 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x7d09718f __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d11ff3f netdev_all_lower_get_next_rcu +EXPORT_SYMBOL vmlinux 0x7d198f17 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x7d23fe38 key_link +EXPORT_SYMBOL vmlinux 0x7d26cb77 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x7d2e2d33 cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x7d37cf1b __nlmsg_put +EXPORT_SYMBOL vmlinux 0x7d4af1cf ppp_register_channel +EXPORT_SYMBOL vmlinux 0x7d501ff3 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x7d6940cd nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d716b19 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x7d7e9590 elv_rb_find +EXPORT_SYMBOL vmlinux 0x7d86aaaa simple_open +EXPORT_SYMBOL vmlinux 0x7d9dd7b4 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x7db08120 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x7dbb8ff5 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x7dd1476c neigh_seq_start +EXPORT_SYMBOL vmlinux 0x7de8fbb9 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x7de9e36b elv_add_request +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df241a5 skb_push +EXPORT_SYMBOL vmlinux 0x7dfb06d9 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x7e08896f pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x7e348842 param_get_string +EXPORT_SYMBOL vmlinux 0x7e3dce25 import_single_range +EXPORT_SYMBOL vmlinux 0x7e7618ae skb_copy +EXPORT_SYMBOL vmlinux 0x7e87227e slhc_compress +EXPORT_SYMBOL vmlinux 0x7e8a801d netif_rx_ni +EXPORT_SYMBOL vmlinux 0x7e8ea280 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x7e9b2813 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x7ec0fd7a pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x7ecb001b __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x7ee54b5c lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7eebe8e9 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x7ef6481f finish_swait +EXPORT_SYMBOL vmlinux 0x7ef6d4db block_write_begin +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f1475c8 ucc_fast_free +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f324f4d try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7f474d27 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f68fed0 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x7f7a5e94 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f944b62 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x7f9492b2 dev_change_flags +EXPORT_SYMBOL vmlinux 0x7f9d1140 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x7fb0bc17 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x7fb73e62 tcp_close +EXPORT_SYMBOL vmlinux 0x7fd6f9fb __SetPageMovable +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe28ef9 put_io_context +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe7f8be datagram_poll +EXPORT_SYMBOL vmlinux 0x7ff3b187 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x800fb92b full_name_hash +EXPORT_SYMBOL vmlinux 0x803d6be5 blk_finish_request +EXPORT_SYMBOL vmlinux 0x8054ed2a i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x805580d2 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x80690558 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x807cdeef kobject_del +EXPORT_SYMBOL vmlinux 0x8080e2ae input_set_capability +EXPORT_SYMBOL vmlinux 0x808b7a31 follow_pfn +EXPORT_SYMBOL vmlinux 0x80ba5133 param_get_byte +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80caefeb skb_split +EXPORT_SYMBOL vmlinux 0x80d16f19 iput +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d6b669 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x80df5d81 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x80f1706f unregister_shrinker +EXPORT_SYMBOL vmlinux 0x80fe0050 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x80ff7cf4 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x810519fd hashlen_string +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x818281f3 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x8185bc44 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x81a8dc5b input_release_device +EXPORT_SYMBOL vmlinux 0x81b6ffd4 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x81d7d962 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e774b4 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x81fbf6d9 ucc_slow_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0x82038725 cpumask_any_but +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x823a52b4 d_move +EXPORT_SYMBOL vmlinux 0x825578e4 iterate_dir +EXPORT_SYMBOL vmlinux 0x82690719 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x8274cad0 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x82adeaff thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x82b5fb36 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x82cd540a atomic64_and +EXPORT_SYMBOL vmlinux 0x82d7b474 nvm_put_blk +EXPORT_SYMBOL vmlinux 0x82da49f7 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x831b9c4c pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x831ca5e1 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x833e789f phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0x8345e9bd agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x834658ac cmxgcr_lock +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x835ce4b8 vfs_symlink +EXPORT_SYMBOL vmlinux 0x8377b558 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x8380400c nd_btt_probe +EXPORT_SYMBOL vmlinux 0x838842dd nf_log_register +EXPORT_SYMBOL vmlinux 0x8392e003 kern_unmount +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x83a8487a mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83d93274 mutex_unlock +EXPORT_SYMBOL vmlinux 0x83d9adbb mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x83dbdfd8 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x83f36d92 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x83f952d9 __pagevec_release +EXPORT_SYMBOL vmlinux 0x83ff2a26 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x8422c020 skb_put +EXPORT_SYMBOL vmlinux 0x844404cf ISA_DMA_THRESHOLD +EXPORT_SYMBOL vmlinux 0x84496080 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x846cad2d get_pci_dma_ops +EXPORT_SYMBOL vmlinux 0x847b4924 i2c_transfer +EXPORT_SYMBOL vmlinux 0x847bef48 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x848911d4 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x849c4c9f sk_net_capable +EXPORT_SYMBOL vmlinux 0x849fe807 csum_and_copy_from_user +EXPORT_SYMBOL vmlinux 0x84ac1bee tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x84b183ae strncmp +EXPORT_SYMBOL vmlinux 0x84b183ba blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x84b8a2d3 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock +EXPORT_SYMBOL vmlinux 0x84d42ed4 dst_destroy +EXPORT_SYMBOL vmlinux 0x84e7e9a6 tty_throttle +EXPORT_SYMBOL vmlinux 0x84f8f882 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x850883ed release_firmware +EXPORT_SYMBOL vmlinux 0x8514309e up_write +EXPORT_SYMBOL vmlinux 0x8516948b dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0x8518673a blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x8522f8e8 nf_reinject +EXPORT_SYMBOL vmlinux 0x85235e9c end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x85290b23 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x853af920 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x8540baf0 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x8555b61e tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x8556c9d6 single_open +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x856da0cd netlink_ack +EXPORT_SYMBOL vmlinux 0x8572673d pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x85825898 add_timer +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x85a9e7ae simple_link +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85b93fa1 padata_do_serial +EXPORT_SYMBOL vmlinux 0x85b9c047 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x85bc3247 param_get_invbool +EXPORT_SYMBOL vmlinux 0x85c70916 register_netdev +EXPORT_SYMBOL vmlinux 0x85d24517 __devm_request_region +EXPORT_SYMBOL vmlinux 0x85d472aa queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e3429a __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x86127fd9 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x86427c27 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x8643b347 pci_enable_device +EXPORT_SYMBOL vmlinux 0x86440228 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x864ed680 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x865934dc __scm_send +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x8676921a netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86925be7 set_binfmt +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86a725af n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x86a799e1 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x86c9b3c2 gtm_get_specific_timer16 +EXPORT_SYMBOL vmlinux 0x86cb1c3d bio_map_kern +EXPORT_SYMBOL vmlinux 0x86ce5c19 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x86d7d323 ns_capable +EXPORT_SYMBOL vmlinux 0x86dab205 ipv4_specific +EXPORT_SYMBOL vmlinux 0x86f51348 nf_log_packet +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x8706760b input_grab_device +EXPORT_SYMBOL vmlinux 0x870c64dc passthru_features_check +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x872981b0 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x8745f506 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x87572211 set_page_dirty +EXPORT_SYMBOL vmlinux 0x876f7809 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x879094fa unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x8795961e agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x879dde92 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x879e668d netdev_emerg +EXPORT_SYMBOL vmlinux 0x87b1dd5a nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x87b4fd2f dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x87cec8d2 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x87d8407e truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x87fe43aa downgrade_write +EXPORT_SYMBOL vmlinux 0x88279f25 cpm_muram_alloc +EXPORT_SYMBOL vmlinux 0x882ad872 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x884e9d63 fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x885c5a87 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x8860ecd9 clkdev_hw_alloc +EXPORT_SYMBOL vmlinux 0x8887e861 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x88a7b8e8 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x88b405e4 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x88b75201 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x88d37627 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x8901bbbb tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x89079522 inode_permission +EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy +EXPORT_SYMBOL vmlinux 0x8920b0c7 down_read +EXPORT_SYMBOL vmlinux 0x8924e401 vfs_writev +EXPORT_SYMBOL vmlinux 0x893624bc pci_restore_state +EXPORT_SYMBOL vmlinux 0x89594a04 vfs_read +EXPORT_SYMBOL vmlinux 0x896025e5 rwsem_wake +EXPORT_SYMBOL vmlinux 0x8969f2cb write_cache_pages +EXPORT_SYMBOL vmlinux 0x896c6593 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x8984866a dup_iter +EXPORT_SYMBOL vmlinux 0x899f253c xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x89a0f58f pci_get_device +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89b6f3ea skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x89bcb525 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x89bf516c ilookup5 +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89ef73f5 make_kuid +EXPORT_SYMBOL vmlinux 0x8a03b1dc dump_emit +EXPORT_SYMBOL vmlinux 0x8a167b42 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a21b334 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a6f9f7d pci_disable_device +EXPORT_SYMBOL vmlinux 0x8a7687bf scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a7d8ed5 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9ec876 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x8aa2946c dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x8ab4079e atomic64_add +EXPORT_SYMBOL vmlinux 0x8abd19b2 simple_lookup +EXPORT_SYMBOL vmlinux 0x8acc47be agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x8adc4e1b tty_port_init +EXPORT_SYMBOL vmlinux 0x8adde07b mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x8ae99469 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0x8af0ad35 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x8af4935f radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x8af5e92e i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x8b08a2af lock_fb_info +EXPORT_SYMBOL vmlinux 0x8b33d7ed scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b444619 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x8b46c175 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b84a0b0 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x8b876c00 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x8b87ade3 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x8bf2ae1f fsl_lbc_addr +EXPORT_SYMBOL vmlinux 0x8c0347e6 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c330b35 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x8c43fd96 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x8c52b033 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c65eb22 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x8c6973b7 get_acl +EXPORT_SYMBOL vmlinux 0x8c860126 phy_init_eee +EXPORT_SYMBOL vmlinux 0x8c8c1db7 __vfs_write +EXPORT_SYMBOL vmlinux 0x8c939f83 iterate_fd +EXPORT_SYMBOL vmlinux 0x8ca54ee2 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x8caa260d set_cached_acl +EXPORT_SYMBOL vmlinux 0x8cb77553 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x8cc0a71d cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cc8c03f pci_enable_msix +EXPORT_SYMBOL vmlinux 0x8ccddea4 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 +EXPORT_SYMBOL vmlinux 0x8d01a00e pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x8d15114a __release_region +EXPORT_SYMBOL vmlinux 0x8d27b022 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x8d3ed001 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x8d48314f __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d5d2c30 locks_free_lock +EXPORT_SYMBOL vmlinux 0x8d623bec param_ops_uint +EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d7e8897 dm_register_target +EXPORT_SYMBOL vmlinux 0x8d805317 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x8d9f7bf9 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x8da232f9 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x8db212bf pci_irq_vector +EXPORT_SYMBOL vmlinux 0x8dc0288e i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x8dc3c47a __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x8dd69165 of_device_unregister +EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create +EXPORT_SYMBOL vmlinux 0x8def4986 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x8dfb22b7 init_buffer +EXPORT_SYMBOL vmlinux 0x8e191166 fscrypt_inherit_context +EXPORT_SYMBOL vmlinux 0x8e32700b mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x8e559ae7 clone_cred +EXPORT_SYMBOL vmlinux 0x8e649424 __lock_page +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e7b4953 agp_free_memory +EXPORT_SYMBOL vmlinux 0x8e813b12 posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x8e879bb7 __vmalloc +EXPORT_SYMBOL vmlinux 0x8e888ec3 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x8e8d58da diu_ops +EXPORT_SYMBOL vmlinux 0x8e9a60f5 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x8e9c4887 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x8eb58cf1 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x8ebe744e ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8ecf0a3a crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x8f044a09 mpage_writepages +EXPORT_SYMBOL vmlinux 0x8f1efe83 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x8f5031cc xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x8f67fe19 skb_find_text +EXPORT_SYMBOL vmlinux 0x8f73f9ad scsi_target_resume +EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x8f89964b dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x8f8dc52e __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x8fafc6dc dcb_getapp +EXPORT_SYMBOL vmlinux 0x8fbf37e0 profile_pc +EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x8fd9e1bc proto_unregister +EXPORT_SYMBOL vmlinux 0x8fdf772a init_timer_key +EXPORT_SYMBOL vmlinux 0x8fe643b4 fscrypt_get_policy +EXPORT_SYMBOL vmlinux 0x8fec1b56 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x8ff1b1da d_prune_aliases +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x900e3188 sock_init_data +EXPORT_SYMBOL vmlinux 0x900fd11b tty_hangup +EXPORT_SYMBOL vmlinux 0x902aef55 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x90495f3e __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x9059b53d fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x9061ca6d lookup_one_len +EXPORT_SYMBOL vmlinux 0x90658272 seq_pad +EXPORT_SYMBOL vmlinux 0x90695906 vme_free_consistent +EXPORT_SYMBOL vmlinux 0x90a54e3b netdev_all_lower_get_next +EXPORT_SYMBOL vmlinux 0x90aa718f generic_fillattr +EXPORT_SYMBOL vmlinux 0x90ad8198 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x90bcc47d fb_pan_display +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x91007c2f devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x910e2911 qe_put_snum +EXPORT_SYMBOL vmlinux 0x910ef238 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x91240269 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x913ca46c handle_edge_irq +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x917b4673 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x918ed782 bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x919707cb page_symlink +EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x91a932dc iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x91b10580 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x91d8208f remove_proc_entry +EXPORT_SYMBOL vmlinux 0x91e71074 input_unregister_device +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x9218cff1 adjust_resource +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x924c25ed generic_removexattr +EXPORT_SYMBOL vmlinux 0x92507a40 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x925520db atomic64_fetch_xor +EXPORT_SYMBOL vmlinux 0x9272793f ucc_slow_disable +EXPORT_SYMBOL vmlinux 0x927d02a8 elevator_init +EXPORT_SYMBOL vmlinux 0x929b82be pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x92b142c5 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x92fa70e1 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x932d98c1 cpm_muram_dma +EXPORT_SYMBOL vmlinux 0x933b9efb neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x934fbd95 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x935f0efe lock_sock_fast +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x937c50e5 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x93b2418a tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93cca228 dquot_file_open +EXPORT_SYMBOL vmlinux 0x93d9f6ad sock_create +EXPORT_SYMBOL vmlinux 0x93f868c8 inet_add_offload +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x9402ca17 key_type_keyring +EXPORT_SYMBOL vmlinux 0x9407e229 of_iomap +EXPORT_SYMBOL vmlinux 0x94089306 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x9408e515 free_netdev +EXPORT_SYMBOL vmlinux 0x940e74c0 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x9419242c __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x943dc80f csum_and_copy_to_user +EXPORT_SYMBOL vmlinux 0x9457e9f8 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x947d77e9 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x947ddd31 nf_log_set +EXPORT_SYMBOL vmlinux 0x94818f66 PageMovable +EXPORT_SYMBOL vmlinux 0x948b0224 build_skb +EXPORT_SYMBOL vmlinux 0x948cef4a xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x948d2e7a dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x9498eece netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x94a986ea proc_create_data +EXPORT_SYMBOL vmlinux 0x94c27dde pagevec_lookup +EXPORT_SYMBOL vmlinux 0x94d3f181 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x94dbdb5e abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x94ebb6d8 phy_detach +EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x9522c981 softnet_data +EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb +EXPORT_SYMBOL vmlinux 0x95269f75 get_fs_type +EXPORT_SYMBOL vmlinux 0x9541fbd0 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x954cd7d2 of_match_device +EXPORT_SYMBOL vmlinux 0x956ee15c jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x956fd643 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x95878ab6 neigh_xmit +EXPORT_SYMBOL vmlinux 0x95ab17f5 napi_complete_done +EXPORT_SYMBOL vmlinux 0x95c6c48a qe_pin_set_gpio +EXPORT_SYMBOL vmlinux 0x95d560a3 truncate_setsize +EXPORT_SYMBOL vmlinux 0x95f2eb46 mount_ns +EXPORT_SYMBOL vmlinux 0x9632dd35 sock_release +EXPORT_SYMBOL vmlinux 0x963e283d __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x963fd95c unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x966ae342 qe_issue_cmd +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x9697f5d8 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x96b95f0a dm_unregister_target +EXPORT_SYMBOL vmlinux 0x96c25ee1 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x96cb349f device_get_mac_address +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96e6aaf3 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x970ca1cc ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x97106714 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x9711dc8c dquot_disable +EXPORT_SYMBOL vmlinux 0x971f6981 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x97255bdf strlen +EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x975575e7 ilookup +EXPORT_SYMBOL vmlinux 0x9759c80e sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x97711b52 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x978db2d0 of_match_node +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97a8cbae clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x97adf244 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x97b3ce1c block_commit_write +EXPORT_SYMBOL vmlinux 0x97c08477 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x97d863ec seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x97e626c5 fscrypt_free_filename +EXPORT_SYMBOL vmlinux 0x97f5fc8d path_is_under +EXPORT_SYMBOL vmlinux 0x97f7d877 dev_get_stats +EXPORT_SYMBOL vmlinux 0x98027d8a blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x98099c8e blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x980f1e88 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x984d35a2 new_inode +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x98970668 put_cmsg +EXPORT_SYMBOL vmlinux 0x98f5711f param_get_int +EXPORT_SYMBOL vmlinux 0x98fe7882 DMA_MODE_READ +EXPORT_SYMBOL vmlinux 0x990815ed radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x9922a3d0 alloc_file +EXPORT_SYMBOL vmlinux 0x99343701 commit_creds +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x993dfaf6 sock_update_memcg +EXPORT_SYMBOL vmlinux 0x99435f0a flush_tlb_range +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x9973387f pci_iounmap +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999be1cd of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x999e2d23 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99ac03f6 pci_get_class +EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x99b16f8c release_resource +EXPORT_SYMBOL vmlinux 0x99b2dbf0 pskb_extract +EXPORT_SYMBOL vmlinux 0x99bb8806 memmove +EXPORT_SYMBOL vmlinux 0x99c61748 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x99ca6b98 nvm_mark_blk +EXPORT_SYMBOL vmlinux 0x99f91686 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x99fbf34d kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x9a198dc1 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a5d38c5 del_gendisk +EXPORT_SYMBOL vmlinux 0x9a645bba d_tmpfile +EXPORT_SYMBOL vmlinux 0x9a68540e xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x9a81783c ps2_command +EXPORT_SYMBOL vmlinux 0x9a820c11 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x9a83e625 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x9a8fc20e tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x9a92cb44 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x9acc26e9 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x9acc6208 simple_statfs +EXPORT_SYMBOL vmlinux 0x9ad9fdba blk_fetch_request +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9aedbc01 dev_mc_init +EXPORT_SYMBOL vmlinux 0x9b077d02 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b337fb2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b595c29 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b730a05 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x9b78329a vc_cons +EXPORT_SYMBOL vmlinux 0x9b8859b3 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x9b8e4ba8 atomic64_fetch_sub +EXPORT_SYMBOL vmlinux 0x9b93ecc9 irq_to_desc +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bb38359 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x9bbea96a security_task_getsecid +EXPORT_SYMBOL vmlinux 0x9be28e32 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x9be626e5 gtm_put_timer16 +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9c0a602d finish_no_open +EXPORT_SYMBOL vmlinux 0x9c35af46 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c5166e0 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x9c61b187 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x9c856fd6 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x9c8ecb0c jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x9c8f912f devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x9c92d94d radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x9c9c88f7 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9caba376 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x9cb3027d vfs_write +EXPORT_SYMBOL vmlinux 0x9cc61457 current_fs_time +EXPORT_SYMBOL vmlinux 0x9ccc8db4 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x9cd711a6 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x9cd7a30a serio_bus +EXPORT_SYMBOL vmlinux 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs +EXPORT_SYMBOL vmlinux 0x9d238354 unlock_page +EXPORT_SYMBOL vmlinux 0x9d2b4f46 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x9d393f05 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x9d669763 memcpy +EXPORT_SYMBOL vmlinux 0x9d6a54c2 flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0x9d72229b fsl_ifc_find +EXPORT_SYMBOL vmlinux 0x9d7ce8dd _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x9d8aa683 notify_change +EXPORT_SYMBOL vmlinux 0x9da422c6 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x9dcf3326 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x9de0a9c6 page_mapped +EXPORT_SYMBOL vmlinux 0x9dee8c55 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x9dee9a84 cpm2_immr +EXPORT_SYMBOL vmlinux 0x9df2c1d1 phy_driver_register +EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e024382 kernel_connect +EXPORT_SYMBOL vmlinux 0x9e030cd4 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x9e0ae732 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e144110 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x9e324343 update_region +EXPORT_SYMBOL vmlinux 0x9e4866da blk_put_request +EXPORT_SYMBOL vmlinux 0x9e4dd7f5 fence_init +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e564724 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e6cd037 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x9e723487 seq_escape +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e77e6e7 ps2_init +EXPORT_SYMBOL vmlinux 0x9e77eb59 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x9e7b9961 kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0x9e88145c param_ops_ulong +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ece42df of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x9eda4718 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x9edb03ae blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x9edfb37c kmap_to_page +EXPORT_SYMBOL vmlinux 0x9ee82cd6 uuid_be_index +EXPORT_SYMBOL vmlinux 0x9f233695 gtm_set_exact_timer16 +EXPORT_SYMBOL vmlinux 0x9f2da930 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x9f31a569 of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x9f37e7b0 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f60fb0e __sk_dst_check +EXPORT_SYMBOL vmlinux 0x9f68a8a5 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x9f86982c sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x9f911629 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x9f942671 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa53ea0 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x9fb1d0ed uuid_is_valid +EXPORT_SYMBOL vmlinux 0x9fd1d169 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x9fd76bb9 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe4b3bb request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x9ff676f9 tcp_prequeue +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa054def4 kmap_atomic_prot +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa0744ea9 cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0xa075c9cb bio_init +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa08208bd __bio_clone_fast +EXPORT_SYMBOL vmlinux 0xa0838ce3 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa08b13df pci_map_rom +EXPORT_SYMBOL vmlinux 0xa0995503 dev_add_offload +EXPORT_SYMBOL vmlinux 0xa0a8f953 udp_disconnect +EXPORT_SYMBOL vmlinux 0xa0a9aa93 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0c2f3ba uart_update_timeout +EXPORT_SYMBOL vmlinux 0xa0d6cb01 __ps2_command +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e90ade sg_miter_stop +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0f0f5ab seq_lseek +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa11c30da mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa171888f md_done_sync +EXPORT_SYMBOL vmlinux 0xa1791017 fscrypt_fname_encrypted_size +EXPORT_SYMBOL vmlinux 0xa19a122b f_setown +EXPORT_SYMBOL vmlinux 0xa1a7a02b phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0xa1b3f6cc phy_attach +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xa1d7e9ac get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xa1dbba02 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1eaab15 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xa1f06d32 set_security_override +EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa20aeeed pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xa20cab5b sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xa2118e7b gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xa217f29d inet_del_offload +EXPORT_SYMBOL vmlinux 0xa24b5b9a uart_add_one_port +EXPORT_SYMBOL vmlinux 0xa24ed908 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0xa2787880 pci_set_mwi +EXPORT_SYMBOL vmlinux 0xa27d0a00 mdiobus_free +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa2b8a607 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xa2b959f3 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register +EXPORT_SYMBOL vmlinux 0xa2f1b2bb of_get_ibm_chip_id +EXPORT_SYMBOL vmlinux 0xa2f266dd tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0xa2f52058 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xa2fcb945 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xa31a8d9c radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa3232221 __blk_end_request +EXPORT_SYMBOL vmlinux 0xa327a0c9 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xa331cfcc kobject_get +EXPORT_SYMBOL vmlinux 0xa3462c4d __secpath_destroy +EXPORT_SYMBOL vmlinux 0xa34ac012 inet_recvmsg +EXPORT_SYMBOL vmlinux 0xa35adcdf arp_send +EXPORT_SYMBOL vmlinux 0xa381944f dql_reset +EXPORT_SYMBOL vmlinux 0xa38e691a ioremap_bot +EXPORT_SYMBOL vmlinux 0xa3916fd2 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0xa397faec tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay +EXPORT_SYMBOL vmlinux 0xa3a55f19 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa3c49ed5 dmam_pool_create +EXPORT_SYMBOL vmlinux 0xa3e75545 flush_tlb_kernel_range +EXPORT_SYMBOL vmlinux 0xa405140a qdisc_list_add +EXPORT_SYMBOL vmlinux 0xa413de88 tty_write_room +EXPORT_SYMBOL vmlinux 0xa416d051 param_ops_long +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa444cf95 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xa45f839d napi_gro_frags +EXPORT_SYMBOL vmlinux 0xa4630b9e vga_tryget +EXPORT_SYMBOL vmlinux 0xa46aaf46 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa48c0027 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xa48de24f reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0xa4a76b7b sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le +EXPORT_SYMBOL vmlinux 0xa4ae39ae genl_notify +EXPORT_SYMBOL vmlinux 0xa4b4f816 kmem_cache_create +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4c76509 gen_pool_free +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4d6b7e4 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xa4f454af dev_alert +EXPORT_SYMBOL vmlinux 0xa4f6569e vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xa540df4a ata_link_printk +EXPORT_SYMBOL vmlinux 0xa5411e3b xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa559052e security_path_rename +EXPORT_SYMBOL vmlinux 0xa56b8ab2 flex_array_free +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5ac29b7 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xa5b121b3 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xa5b4b079 bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0xa5bc86ea unregister_filesystem +EXPORT_SYMBOL vmlinux 0xa5bd049c file_ns_capable +EXPORT_SYMBOL vmlinux 0xa5dd9bbc sock_no_accept +EXPORT_SYMBOL vmlinux 0xa5ed518f jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xa5f6aad3 fb_get_mode +EXPORT_SYMBOL vmlinux 0xa5f8ed69 nd_device_notify +EXPORT_SYMBOL vmlinux 0xa5fc1d8b bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xa60dc159 skb_append +EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio +EXPORT_SYMBOL vmlinux 0xa65e1cd2 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa67a930a dquot_transfer +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa686155a flush_tlb_page +EXPORT_SYMBOL vmlinux 0xa68cd579 forget_cached_acl +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa6a610f7 blk_peek_request +EXPORT_SYMBOL vmlinux 0xa6aaef06 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xa6c47aaf phy_stop +EXPORT_SYMBOL vmlinux 0xa6d8859a inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xa6ebcba3 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xa6f7f88d param_ops_int +EXPORT_SYMBOL vmlinux 0xa6fa7ef7 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa7172984 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xa71f05a9 vme_master_request +EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock +EXPORT_SYMBOL vmlinux 0xa72e3d73 agp_bind_memory +EXPORT_SYMBOL vmlinux 0xa73074df pci_find_bus +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get +EXPORT_SYMBOL vmlinux 0xa7530977 down_write_killable +EXPORT_SYMBOL vmlinux 0xa75d56f4 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xa77029c8 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xa7710eca keyring_clear +EXPORT_SYMBOL vmlinux 0xa7877203 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xa78d9eb7 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xa7a43658 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xa7d3a4a7 eth_gro_complete +EXPORT_SYMBOL vmlinux 0xa8032d15 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa85a9c6f serio_rescan +EXPORT_SYMBOL vmlinux 0xa864e628 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xa8716ce1 phy_init_hw +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa889a91d phy_device_create +EXPORT_SYMBOL vmlinux 0xa89464b7 __ashldi3 +EXPORT_SYMBOL vmlinux 0xa8974d90 would_dump +EXPORT_SYMBOL vmlinux 0xa8995646 sock_create_kern +EXPORT_SYMBOL vmlinux 0xa8a31123 proc_set_user +EXPORT_SYMBOL vmlinux 0xa8af751a get_disk +EXPORT_SYMBOL vmlinux 0xa8ba36e3 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xa8dc24f3 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xa8e2ea9a iov_iter_zero +EXPORT_SYMBOL vmlinux 0xa8e94ca7 napi_get_frags +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa909c714 lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa9273e1a epapr_hypercall_start +EXPORT_SYMBOL vmlinux 0xa9520e85 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xa9571d6d DMA_MODE_WRITE +EXPORT_SYMBOL vmlinux 0xa9664105 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa98ebc38 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xa9945b14 request_firmware +EXPORT_SYMBOL vmlinux 0xa997e4d6 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0xa9a16f38 fb_blank +EXPORT_SYMBOL vmlinux 0xa9a22a70 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xa9b7b386 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9d328e7 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xa9e2bf88 param_get_ushort +EXPORT_SYMBOL vmlinux 0xa9e959c6 backlight_device_register +EXPORT_SYMBOL vmlinux 0xa9edbabc fence_default_wait +EXPORT_SYMBOL vmlinux 0xa9f483ac kdb_current_task +EXPORT_SYMBOL vmlinux 0xaa0742e8 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xaa4666bc tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaaa7306a free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xaaa8a7e7 eth_header_cache +EXPORT_SYMBOL vmlinux 0xaaa8d196 netif_skb_features +EXPORT_SYMBOL vmlinux 0xaaab8067 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad5f473 inode_dio_wait +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaadaa3c7 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0xaadcf4bc i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xaae20d8d key_task_permission +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab0b7e8b inet_getname +EXPORT_SYMBOL vmlinux 0xab264fde chacha20_block +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab372eac serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xab373019 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xab4a334c sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xab4e1229 textsearch_destroy +EXPORT_SYMBOL vmlinux 0xab694444 bsearch +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab7fd902 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xab817289 dump_page +EXPORT_SYMBOL vmlinux 0xabaa8165 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0xabab7831 fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0xabadf37d blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xabb4f69d inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xabb7cd9b mmc_align_data_size +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabcb2bb6 scsi_register +EXPORT_SYMBOL vmlinux 0xabd1487b __check_sticky +EXPORT_SYMBOL vmlinux 0xac092115 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac24d03c bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xac405bea sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0xac4cc1bc lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xac5613bd devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0xac6af2b0 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xac8012e0 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0xac8afea0 tty_port_open +EXPORT_SYMBOL vmlinux 0xac970d1c blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0xaca8b8f1 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb3bf85 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xacbd0fbb neigh_parms_release +EXPORT_SYMBOL vmlinux 0xacc1e692 blk_queue_split +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd0639c param_set_bint +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacee2bec mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad0f8435 fget_raw +EXPORT_SYMBOL vmlinux 0xad15f3d5 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xad16b3dd consume_skb +EXPORT_SYMBOL vmlinux 0xad20160d pskb_expand_head +EXPORT_SYMBOL vmlinux 0xad33d7d8 __lock_buffer +EXPORT_SYMBOL vmlinux 0xad4aab45 fscrypt_get_ctx +EXPORT_SYMBOL vmlinux 0xad5c32dc skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xad76982b locks_init_lock +EXPORT_SYMBOL vmlinux 0xad7a5bbe fb_set_suspend +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad914334 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xad94eda0 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xad9caf95 netif_napi_add +EXPORT_SYMBOL vmlinux 0xad9f8bd6 fscrypt_process_policy +EXPORT_SYMBOL vmlinux 0xadb4cb26 path_get +EXPORT_SYMBOL vmlinux 0xaddd4770 __debugger_iabr_match +EXPORT_SYMBOL vmlinux 0xade91f24 register_key_type +EXPORT_SYMBOL vmlinux 0xadf0811d get_baudrate +EXPORT_SYMBOL vmlinux 0xadfc8a64 genphy_read_status +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae4d178e __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xae6b1021 dquot_enable +EXPORT_SYMBOL vmlinux 0xae73f769 tcf_action_exec +EXPORT_SYMBOL vmlinux 0xae8a277b nvm_find_target_type +EXPORT_SYMBOL vmlinux 0xae92a51e ucc_slow_restart_tx +EXPORT_SYMBOL vmlinux 0xaeac080a inet_sendpage +EXPORT_SYMBOL vmlinux 0xaeb1b6aa phy_attached_info +EXPORT_SYMBOL vmlinux 0xaec3fc77 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaed2dc5c blk_delay_queue +EXPORT_SYMBOL vmlinux 0xaedc9da9 blk_get_backing_dev_info +EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xaf0b81c2 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xaf0de563 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xaf24ed61 follow_down_one +EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf664bbe pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0xaf6c246f napi_gro_receive +EXPORT_SYMBOL vmlinux 0xaf70e4d0 blk_init_tags +EXPORT_SYMBOL vmlinux 0xaf7286c4 vga_get +EXPORT_SYMBOL vmlinux 0xaf762358 dm_put_device +EXPORT_SYMBOL vmlinux 0xaf88de25 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xafa0d171 xfrm_register_type +EXPORT_SYMBOL vmlinux 0xafa9b84f mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0xafd25d2f dev_get_nest_level +EXPORT_SYMBOL vmlinux 0xafd3c88d vfs_iter_write +EXPORT_SYMBOL vmlinux 0xafd5965b migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc +EXPORT_SYMBOL vmlinux 0xb038abe6 of_get_min_tck +EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove +EXPORT_SYMBOL vmlinux 0xb046b4c0 sget +EXPORT_SYMBOL vmlinux 0xb04e52c6 filp_open +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xb083ddf5 tcp_disconnect +EXPORT_SYMBOL vmlinux 0xb09864ab starget_for_each_device +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb11331ac sock_no_listen +EXPORT_SYMBOL vmlinux 0xb116eb3f __skb_checksum +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb13f0c84 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xb150418a proc_remove +EXPORT_SYMBOL vmlinux 0xb154acf6 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb15e0b49 dma_find_channel +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb17b0b32 phy_attach_direct +EXPORT_SYMBOL vmlinux 0xb1923b00 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0xb19d68de ps2_begin_command +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c6e787 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xb1c89d37 mmc_free_host +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1db5d14 eth_header +EXPORT_SYMBOL vmlinux 0xb1e2d494 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xb1ffb3da netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0xb233762c atomic64_set +EXPORT_SYMBOL vmlinux 0xb2346685 param_ops_string +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb273351b of_create_pci_dev +EXPORT_SYMBOL vmlinux 0xb2acc4cd __msr_check_and_clear +EXPORT_SYMBOL vmlinux 0xb2b3b578 sk_dst_check +EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on +EXPORT_SYMBOL vmlinux 0xb2e8242c vm_mmap +EXPORT_SYMBOL vmlinux 0xb2f8a9af max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xb2fb3ade generic_make_request +EXPORT_SYMBOL vmlinux 0xb30514f8 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0xb329105e md_check_recovery +EXPORT_SYMBOL vmlinux 0xb368fb8b fscrypt_initialize +EXPORT_SYMBOL vmlinux 0xb3706e5a key_unlink +EXPORT_SYMBOL vmlinux 0xb3857b57 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xb386a8b8 d_obtain_root +EXPORT_SYMBOL vmlinux 0xb39aea3e kern_path +EXPORT_SYMBOL vmlinux 0xb3b46718 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xb3bc6e2b __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xb3ce1a9c dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3f3652c blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3f8dd83 ucc_slow_enable +EXPORT_SYMBOL vmlinux 0xb413a0ff phy_print_status +EXPORT_SYMBOL vmlinux 0xb418db09 get_task_io_context +EXPORT_SYMBOL vmlinux 0xb419c5b2 ip6_frag_match +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb44478a6 qe_pin_free +EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb4724710 udp_ioctl +EXPORT_SYMBOL vmlinux 0xb47afa5c inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xb48b922a iunique +EXPORT_SYMBOL vmlinux 0xb4a61b0a kset_unregister +EXPORT_SYMBOL vmlinux 0xb4d4e94d mount_bdev +EXPORT_SYMBOL vmlinux 0xb4d9dc0c param_get_uint +EXPORT_SYMBOL vmlinux 0xb4f0a510 md_update_sb +EXPORT_SYMBOL vmlinux 0xb4f7603f devfreq_interval_update +EXPORT_SYMBOL vmlinux 0xb5059a32 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xb50ed77c blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xb5259132 gen_pool_alloc_algo +EXPORT_SYMBOL vmlinux 0xb52e5473 filemap_flush +EXPORT_SYMBOL vmlinux 0xb53f3c64 generic_file_fsync +EXPORT_SYMBOL vmlinux 0xb5464a66 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xb570ab95 __i2c_transfer +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb5a0c564 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5a59d85 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5aacde0 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xb5b7fbb9 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xb5b8f96f pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xb5d27e5e inet6_ioctl +EXPORT_SYMBOL vmlinux 0xb5d4ed9e __destroy_inode +EXPORT_SYMBOL vmlinux 0xb5d9454c printk_emit +EXPORT_SYMBOL vmlinux 0xb5e93f0f tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xb5e96337 fs_bio_set +EXPORT_SYMBOL vmlinux 0xb5fb3271 atomic64_fetch_or +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb624adb1 scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb64f014f bio_add_page +EXPORT_SYMBOL vmlinux 0xb6766685 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6814f5d tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6b663c0 dev_activate +EXPORT_SYMBOL vmlinux 0xb6bd5126 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xb6bd7467 audit_log_task_info +EXPORT_SYMBOL vmlinux 0xb6d1d46b __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xb6d23ccd dump_align +EXPORT_SYMBOL vmlinux 0xb6d87cd1 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xb6e22208 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xb6ed82b9 agp_put_bridge +EXPORT_SYMBOL vmlinux 0xb6f4f967 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xb709a87e param_ops_ushort +EXPORT_SYMBOL vmlinux 0xb715d345 done_path_create +EXPORT_SYMBOL vmlinux 0xb71c05e0 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xb7246f77 devm_ioremap +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb753bcc8 __ashrdi3 +EXPORT_SYMBOL vmlinux 0xb75fd4a1 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0xb7618dd9 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xb767bc1f scsi_host_set_state +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb79a4e1a store_fp_state +EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0xb7a99781 __irq_regs +EXPORT_SYMBOL vmlinux 0xb7b5b3eb __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d20b33 dm_put_table_device +EXPORT_SYMBOL vmlinux 0xb7d9b843 fence_add_callback +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb81e8f46 bd_set_size +EXPORT_SYMBOL vmlinux 0xb8268058 kunmap_high +EXPORT_SYMBOL vmlinux 0xb8370414 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xb853a847 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0xb8623eb0 cont_write_begin +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb8854ac8 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xb8ab8c6a par_io_of_config +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b09ba5 dst_init +EXPORT_SYMBOL vmlinux 0xb8b69918 pci_dev_get +EXPORT_SYMBOL vmlinux 0xb8c70aa1 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb8eb6d08 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xb8eec98b del_timer +EXPORT_SYMBOL vmlinux 0xb902d8a0 __find_get_block +EXPORT_SYMBOL vmlinux 0xb9081fd8 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xb917a7cf ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xb941f534 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xb96e6ff2 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xb973c1e3 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xb97e859f tcf_hash_check +EXPORT_SYMBOL vmlinux 0xb9831a93 d_find_any_alias +EXPORT_SYMBOL vmlinux 0xb989338d scsi_remove_device +EXPORT_SYMBOL vmlinux 0xb9dbd81e init_task +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9f0e983 input_register_handler +EXPORT_SYMBOL vmlinux 0xb9f98c1b md_register_thread +EXPORT_SYMBOL vmlinux 0xb9fab700 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xba04621a __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xba0b7d53 dcache_dir_open +EXPORT_SYMBOL vmlinux 0xba1f3a3c __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xba24dd35 sock_no_poll +EXPORT_SYMBOL vmlinux 0xba359c5a gen_new_estimator +EXPORT_SYMBOL vmlinux 0xba42c4d0 of_translate_address +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk +EXPORT_SYMBOL vmlinux 0xba7f3dd6 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0xba8838e3 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xba8b1bc6 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xba91e685 memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0xbaa20d52 param_set_byte +EXPORT_SYMBOL vmlinux 0xbaa315f4 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xbac12631 simple_empty +EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0xbac82152 __d_drop +EXPORT_SYMBOL vmlinux 0xbad5b517 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xbadae564 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xbadb9378 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb1a11c7 of_mm_gpiochip_add_data +EXPORT_SYMBOL vmlinux 0xbb2ba147 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xbb30218c __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xbb30c980 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb4abc3d __block_write_full_page +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb82fd52 agp_backend_release +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbb9e91fc kill_pgrp +EXPORT_SYMBOL vmlinux 0xbbb2ad39 flush_all_to_thread +EXPORT_SYMBOL vmlinux 0xbbbf3f05 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xbbdaa9ac blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0xbbe681aa xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xbbe8092c blk_init_queue_node +EXPORT_SYMBOL vmlinux 0xbbf79835 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xbc1987ee generic_start_io_acct +EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0xbc429f28 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xbc43f30e in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xbc50c5e7 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xbc54b012 set_groups +EXPORT_SYMBOL vmlinux 0xbc6092b1 scsi_init_io +EXPORT_SYMBOL vmlinux 0xbc61f81a dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0xbc676711 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xbc7de0b0 unregister_key_type +EXPORT_SYMBOL vmlinux 0xbc864fa3 mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0xbc8c4746 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xbc9b6bdd __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xbca29b4f set_blocksize +EXPORT_SYMBOL vmlinux 0xbca5c210 of_dev_get +EXPORT_SYMBOL vmlinux 0xbcb103ac tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcc44c04 mdiobus_scan +EXPORT_SYMBOL vmlinux 0xbccaa06a dquot_drop +EXPORT_SYMBOL vmlinux 0xbccf3b75 of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0xbcd3b1dd nd_device_register +EXPORT_SYMBOL vmlinux 0xbce6f2f5 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xbced85f2 qe_immr +EXPORT_SYMBOL vmlinux 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0xbd2645c3 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0xbd295475 generic_file_open +EXPORT_SYMBOL vmlinux 0xbd358e05 genphy_config_init +EXPORT_SYMBOL vmlinux 0xbd411958 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xbd48a420 stop_tty +EXPORT_SYMBOL vmlinux 0xbd490ef3 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xbd5bd37f i8042_install_filter +EXPORT_SYMBOL vmlinux 0xbd763621 simple_get_link +EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbd9e5d49 __lshrdi3 +EXPORT_SYMBOL vmlinux 0xbda25c87 msi_bitmap_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0xbdb216bb pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xbdc8ab88 phy_attached_print +EXPORT_SYMBOL vmlinux 0xbdd83884 sock_kmalloc +EXPORT_SYMBOL vmlinux 0xbde7bcfa mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xbdeb2132 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0xbdefe7ae inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xbe082660 find_inode_nowait +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe2d8d6f mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xbe2da0e9 dquot_get_state +EXPORT_SYMBOL vmlinux 0xbe3bb738 mpage_writepage +EXPORT_SYMBOL vmlinux 0xbe5331f4 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xbe54fab6 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xbe63d3d5 key_reject_and_link +EXPORT_SYMBOL vmlinux 0xbe6ada7d uuid_le_index +EXPORT_SYMBOL vmlinux 0xbe88410f inet_shutdown +EXPORT_SYMBOL vmlinux 0xbeb5fdb2 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0xbec880c1 bmap +EXPORT_SYMBOL vmlinux 0xbee07d45 PDE_DATA +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbef06ec9 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf016251 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xbf0b8402 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xbf36b698 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xbf462ddb clk_get +EXPORT_SYMBOL vmlinux 0xbf5d2eb3 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf925c42 idr_init +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa47ffd setup_new_exec +EXPORT_SYMBOL vmlinux 0xbfb3129e d_obtain_alias +EXPORT_SYMBOL vmlinux 0xbfb5e1e5 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xbfc0b070 touch_buffer +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfc75ba3 param_set_copystring +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbfeed749 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xc017368b unregister_netdev +EXPORT_SYMBOL vmlinux 0xc0673a6b __dst_free +EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0782202 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xc0783330 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xc0795daf dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xc07ff9ae md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0833ebe d_find_alias +EXPORT_SYMBOL vmlinux 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0bbb948 netif_rx +EXPORT_SYMBOL vmlinux 0xc0e61f0a clkdev_alloc +EXPORT_SYMBOL vmlinux 0xc0e7af00 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0xc0ea74fa __block_write_begin +EXPORT_SYMBOL vmlinux 0xc1162643 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc1318cc9 pci_choose_state +EXPORT_SYMBOL vmlinux 0xc134d3f9 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xc1358283 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xc13a10dc flex_array_alloc +EXPORT_SYMBOL vmlinux 0xc15372d4 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xc167d4b5 __kfree_skb +EXPORT_SYMBOL vmlinux 0xc18a0e8d input_inject_event +EXPORT_SYMBOL vmlinux 0xc19e5cf6 tty_port_close +EXPORT_SYMBOL vmlinux 0xc1a24988 lease_get_mtime +EXPORT_SYMBOL vmlinux 0xc1c0868c tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc20d9c78 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xc2163b83 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc25209d9 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xc2acd6ea jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xc2b29d04 da903x_query_status +EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2f29c4e pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xc2fdc99f tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xc3374a90 ___pskb_trim +EXPORT_SYMBOL vmlinux 0xc364ae22 iomem_resource +EXPORT_SYMBOL vmlinux 0xc368849f nvram_sync +EXPORT_SYMBOL vmlinux 0xc36d4a20 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xc36d74ca dquot_destroy +EXPORT_SYMBOL vmlinux 0xc37642d4 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xc38c82ad dquot_resume +EXPORT_SYMBOL vmlinux 0xc38cd43d mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xc393ee01 set_device_ro +EXPORT_SYMBOL vmlinux 0xc39c5d58 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc3a445b9 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0xc3bdd50b soft_cursor +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3c94c2d pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xc3cc8250 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xc3d02ed7 sock_efree +EXPORT_SYMBOL vmlinux 0xc3db22bc xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0xc3e6ca1d fb_set_var +EXPORT_SYMBOL vmlinux 0xc3f88fea __free_pages +EXPORT_SYMBOL vmlinux 0xc40c1141 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xc40c4af3 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xc413e5a5 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xc41f0516 node_states +EXPORT_SYMBOL vmlinux 0xc4208f5d blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0xc4552e52 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xc455653a __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr +EXPORT_SYMBOL vmlinux 0xc47b2dc1 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xc4985d40 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4a4554d input_close_device +EXPORT_SYMBOL vmlinux 0xc4ae5635 i2c_master_recv +EXPORT_SYMBOL vmlinux 0xc4b6f4b2 inode_init_owner +EXPORT_SYMBOL vmlinux 0xc4d62e71 napi_disable +EXPORT_SYMBOL vmlinux 0xc4daa576 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xc4e90a35 dev_notice +EXPORT_SYMBOL vmlinux 0xc4f47ead register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xc4f7fad2 i2c_register_driver +EXPORT_SYMBOL vmlinux 0xc5163a59 sys_copyarea +EXPORT_SYMBOL vmlinux 0xc5199a1e to_ndd +EXPORT_SYMBOL vmlinux 0xc52e8a75 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xc53955f5 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0xc53c3410 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc556343b proc_symlink +EXPORT_SYMBOL vmlinux 0xc5565418 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xc55de23c percpu_counter_set +EXPORT_SYMBOL vmlinux 0xc565d62c simple_fill_super +EXPORT_SYMBOL vmlinux 0xc5807a0a abx500_register_ops +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5a15920 register_netdevice +EXPORT_SYMBOL vmlinux 0xc5a396fd udplite_table +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5e4134a drop_super +EXPORT_SYMBOL vmlinux 0xc5ec6aae udp_gro_receive +EXPORT_SYMBOL vmlinux 0xc5f05fbf sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xc5f273ad md_flush_request +EXPORT_SYMBOL vmlinux 0xc5f56bff eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc609f05e pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc65645f8 zero_fill_bio +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc6632047 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0xc663b075 __ioremap +EXPORT_SYMBOL vmlinux 0xc668340e fb_validate_mode +EXPORT_SYMBOL vmlinux 0xc68bcb66 load_nls +EXPORT_SYMBOL vmlinux 0xc6b22c71 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xc6c92d12 of_clk_get +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d0954e revert_creds +EXPORT_SYMBOL vmlinux 0xc6f35393 sget_userns +EXPORT_SYMBOL vmlinux 0xc70b2d87 __neigh_event_send +EXPORT_SYMBOL vmlinux 0xc70e50ad prepare_to_swait +EXPORT_SYMBOL vmlinux 0xc716df91 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xc71b5890 radix_tree_delete +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc72a476f gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xc7306673 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xc73420c2 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xc749443e pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xc74e0579 nd_iostat_end +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc762b3e7 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xc768de19 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7898275 flex_array_shrink +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc79e44e0 find_vma +EXPORT_SYMBOL vmlinux 0xc7a00c9a sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7a92caf touch_atime +EXPORT_SYMBOL vmlinux 0xc7b41cef lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0xc7c599a5 flush_tlb_mm +EXPORT_SYMBOL vmlinux 0xc7c66e82 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xc7d72f98 fget +EXPORT_SYMBOL vmlinux 0xc7e3357b user_path_create +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc7fb25ee phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xc801d55f filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xc801ef29 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xc802cf21 of_phy_connect +EXPORT_SYMBOL vmlinux 0xc8276a79 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xc82797f7 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xc82b1b2b seq_vprintf +EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape +EXPORT_SYMBOL vmlinux 0xc83f698c xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0xc843dc46 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc84cce27 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xc84e4119 skb_queue_tail +EXPORT_SYMBOL vmlinux 0xc8571bcb idr_for_each +EXPORT_SYMBOL vmlinux 0xc85b5989 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xc8606329 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xc87261c5 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc878c763 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xc87a07a0 udp_sendmsg +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc8a7446e jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8be2f10 generic_permission +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc91e108e fscrypt_encrypt_page +EXPORT_SYMBOL vmlinux 0xc9213d69 xfrm_input +EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xc9612fd0 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc9785836 unregister_cdrom +EXPORT_SYMBOL vmlinux 0xc97e09d8 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc9824a07 param_ops_short +EXPORT_SYMBOL vmlinux 0xc99b5bc6 dev_trans_start +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9c28f1c call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xc9d61b60 sk_wait_data +EXPORT_SYMBOL vmlinux 0xc9dab60d __sk_receive_skb +EXPORT_SYMBOL vmlinux 0xc9dd553a netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xc9e2677f fsl_ifc_ctrl_dev +EXPORT_SYMBOL vmlinux 0xc9e39166 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xc9f9c56c input_open_device +EXPORT_SYMBOL vmlinux 0xca00f481 kernel_param_lock +EXPORT_SYMBOL vmlinux 0xca027a2b mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xca0b1c27 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xca15e9fd pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get +EXPORT_SYMBOL vmlinux 0xca344e8d ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xca348429 devm_gpio_request +EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xca49dee7 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xca5258d0 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xca53b22c ab3100_event_register +EXPORT_SYMBOL vmlinux 0xca7aa482 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xca7cc576 try_to_release_page +EXPORT_SYMBOL vmlinux 0xca7effdd mach_p1023_rdb +EXPORT_SYMBOL vmlinux 0xca8c99aa make_kgid +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca9629a0 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0xca9918f9 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0xcaa518eb insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xcacd272d atomic64_sub_return +EXPORT_SYMBOL vmlinux 0xcacda557 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty +EXPORT_SYMBOL vmlinux 0xcaf00b00 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb2a9afd copy_from_iter +EXPORT_SYMBOL vmlinux 0xcb3c8a7d ___ratelimit +EXPORT_SYMBOL vmlinux 0xcb5aa86e dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xcb77c6ab mpage_readpage +EXPORT_SYMBOL vmlinux 0xcb972069 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xcbb141e7 devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0xcbb7aee0 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0xcbbd1824 __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbe628af unlink_framebuffer +EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcc03e0f5 dev_uc_add +EXPORT_SYMBOL vmlinux 0xcc067a02 rt6_lookup +EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc46b234 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xcc48ff2d blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xcc4bd58a __par_io_config_pin +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc60c7d4 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xcc6959e2 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xcc73f0c2 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xcc78c4bb nvm_register_tgt_type +EXPORT_SYMBOL vmlinux 0xcc8149db tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xccb20b50 of_node_get +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xcced6525 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xccfcc0c7 vm_insert_page +EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xccff10dc tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xcd13dc7c ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd289739 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xcd604396 dev_load +EXPORT_SYMBOL vmlinux 0xcd64be9d generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xcd752dda generic_listxattr +EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xcd95e66a register_gifconf +EXPORT_SYMBOL vmlinux 0xcdac9082 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0xcdaf8024 mmc_fixup_device +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc7fc36 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xcde6b64f __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xcdea7143 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xce15165b tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xce184bed generic_ro_fops +EXPORT_SYMBOL vmlinux 0xce1c5fc3 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce317cdd inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0xce529558 validate_sp +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce7bfe70 vm_brk +EXPORT_SYMBOL vmlinux 0xce7f759d mdio_device_create +EXPORT_SYMBOL vmlinux 0xce9930dd filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xce9cdeec generic_block_bmap +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceb391f7 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xceb9a2d1 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0xceba8b90 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0xcecf15d9 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xced346b9 noop_llseek +EXPORT_SYMBOL vmlinux 0xcee1fe3b blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xceebfa64 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0xceed8bdd kmap_pte +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf1d7646 isa_mem_base +EXPORT_SYMBOL vmlinux 0xcf25c87d ata_dev_printk +EXPORT_SYMBOL vmlinux 0xcf261cc7 elv_register_queue +EXPORT_SYMBOL vmlinux 0xcf32e0b5 pci_set_vpd_size +EXPORT_SYMBOL vmlinux 0xcf397116 clk_add_alias +EXPORT_SYMBOL vmlinux 0xcf6672dc free_task +EXPORT_SYMBOL vmlinux 0xcf7c9d28 __blk_run_queue +EXPORT_SYMBOL vmlinux 0xcf7e7d77 block_read_full_page +EXPORT_SYMBOL vmlinux 0xcf867159 netlink_set_err +EXPORT_SYMBOL vmlinux 0xcfa71545 msi_bitmap_free_hwirqs +EXPORT_SYMBOL vmlinux 0xcfae5ca3 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0xcfb99ee5 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xcfc8979b kmap_high +EXPORT_SYMBOL vmlinux 0xcfc9e245 seq_release_private +EXPORT_SYMBOL vmlinux 0xcfd209ab mount_pseudo +EXPORT_SYMBOL vmlinux 0xcfe0cc55 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xcff06c5b tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xcffb48d6 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xcffb5e7e buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xd006b4d9 sock_i_ino +EXPORT_SYMBOL vmlinux 0xd006be28 generic_file_mmap +EXPORT_SYMBOL vmlinux 0xd01516c4 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xd02b2e00 skb_unlink +EXPORT_SYMBOL vmlinux 0xd02bcecb __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xd032ec5b mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd096e2ea iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a46517 serio_open +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0bf41bf devm_release_resource +EXPORT_SYMBOL vmlinux 0xd0c94540 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd0ff8772 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xd1057601 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0xd10816af simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xd11b9ae3 prepare_binprm +EXPORT_SYMBOL vmlinux 0xd12733a9 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xd13cebae mmc_start_bkops +EXPORT_SYMBOL vmlinux 0xd13da58e genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xd143913c scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xd14f35c4 d_alloc_name +EXPORT_SYMBOL vmlinux 0xd15a5405 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0xd170010e ip6_xmit +EXPORT_SYMBOL vmlinux 0xd1781fc6 simple_setattr +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd1884963 mdio_device_remove +EXPORT_SYMBOL vmlinux 0xd18910df i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd1981259 of_device_alloc +EXPORT_SYMBOL vmlinux 0xd19cc9c8 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xd1b9b89c inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xd1d6ce18 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1da9b8c mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xd1e3f3c4 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd1eea275 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xd202af50 find_lock_entry +EXPORT_SYMBOL vmlinux 0xd2083f96 bdput +EXPORT_SYMBOL vmlinux 0xd232aa07 input_event +EXPORT_SYMBOL vmlinux 0xd2353dcd generic_getxattr +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd25eb60c vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xd2603561 deactivate_super +EXPORT_SYMBOL vmlinux 0xd2719bcf icmpv6_send +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd27b3d21 tso_count_descs +EXPORT_SYMBOL vmlinux 0xd28e3884 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0xd29a2342 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xd29a2ef6 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xd29f1c92 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xd2ac133a tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2ec104f get_user_pages +EXPORT_SYMBOL vmlinux 0xd2fc19bd proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0xd3061115 udp_set_csum +EXPORT_SYMBOL vmlinux 0xd3081dfa qe_upload_firmware +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd32ab67b inet6_release +EXPORT_SYMBOL vmlinux 0xd3317080 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xd348e365 backlight_force_update +EXPORT_SYMBOL vmlinux 0xd35cc500 tcp_ioctl +EXPORT_SYMBOL vmlinux 0xd35f75a1 match_string +EXPORT_SYMBOL vmlinux 0xd360be51 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xd39d2183 noop_qdisc +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3c0275c qe_pin_request +EXPORT_SYMBOL vmlinux 0xd3f63d80 __pci_register_driver +EXPORT_SYMBOL vmlinux 0xd44036d5 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm +EXPORT_SYMBOL vmlinux 0xd48b3fb5 qdisc_destroy +EXPORT_SYMBOL vmlinux 0xd48e8543 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xd491c602 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0xd4ab1a9c page_waitqueue +EXPORT_SYMBOL vmlinux 0xd4af9696 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xd4c4e25f mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xd4fa084a devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xd50569e8 dev_get_iflink +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd5298fe6 mpage_readpages +EXPORT_SYMBOL vmlinux 0xd535eaf3 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xd53e0074 mach_qemu_e500 +EXPORT_SYMBOL vmlinux 0xd569f5f7 seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xd56cc5c1 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xd5876e3f tty_port_put +EXPORT_SYMBOL vmlinux 0xd58eccdd __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd5a5a8f6 __serio_register_driver +EXPORT_SYMBOL vmlinux 0xd5adb8ef pci_bus_type +EXPORT_SYMBOL vmlinux 0xd5b51b32 pci_set_power_state +EXPORT_SYMBOL vmlinux 0xd5c13000 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xd5d097f5 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0xd5e8444a __div64_32 +EXPORT_SYMBOL vmlinux 0xd5ea4ff6 scsi_device_put +EXPORT_SYMBOL vmlinux 0xd5ede710 revalidate_disk +EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xd5f9f3e6 of_node_put +EXPORT_SYMBOL vmlinux 0xd606503d register_sysctl +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd60f5e4f pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd6174c96 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xd61c186d get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xd627480b strncat +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd6411d0c of_device_get_match_data +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68ae7a0 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xd68c0f1c get_super_thawed +EXPORT_SYMBOL vmlinux 0xd699ce97 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xd69b30e0 atomic64_add_unless +EXPORT_SYMBOL vmlinux 0xd69eef23 dev_emerg +EXPORT_SYMBOL vmlinux 0xd69ef97d posix_acl_alloc +EXPORT_SYMBOL vmlinux 0xd6bcd45b call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xd6bf3518 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xd6c33856 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xd6d0e606 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0xd6ee4b4f simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6ef6c35 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xd718736e bdev_read_only +EXPORT_SYMBOL vmlinux 0xd71d6e2a alloc_fddidev +EXPORT_SYMBOL vmlinux 0xd724fbb9 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xd72d49f9 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0xd756ebad mmc_can_discard +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd76039c2 netif_device_attach +EXPORT_SYMBOL vmlinux 0xd761a383 ioremap_prot +EXPORT_SYMBOL vmlinux 0xd774cd53 skb_free_datagram +EXPORT_SYMBOL vmlinux 0xd789c173 icmp_send +EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write +EXPORT_SYMBOL vmlinux 0xd7a0c212 i2c_clients_command +EXPORT_SYMBOL vmlinux 0xd7a4db15 bio_clone_fast +EXPORT_SYMBOL vmlinux 0xd7ac93a5 submit_bio +EXPORT_SYMBOL vmlinux 0xd7b015c6 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0xd7b6b5a2 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xd7c128d9 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd808b248 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0xd8118cfe skb_queue_purge +EXPORT_SYMBOL vmlinux 0xd81aa895 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xd81b79d0 module_put +EXPORT_SYMBOL vmlinux 0xd83224af pci_read_vpd +EXPORT_SYMBOL vmlinux 0xd83b223b mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xd845cf95 nla_put +EXPORT_SYMBOL vmlinux 0xd84c43a6 lockref_put_return +EXPORT_SYMBOL vmlinux 0xd85833cb __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xd86bafac jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xd88460a4 abort_creds +EXPORT_SYMBOL vmlinux 0xd88e468d scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8ad5be9 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xd8b1e4f8 fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xd8b541ce keyring_alloc +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e172cc ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8e88899 kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0xd90171db km_query +EXPORT_SYMBOL vmlinux 0xd908f10b generic_setlease +EXPORT_SYMBOL vmlinux 0xd913aa0a proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xd9302ef6 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xd948656a get_cached_acl +EXPORT_SYMBOL vmlinux 0xd9498b22 proc_dointvec +EXPORT_SYMBOL vmlinux 0xd9642f00 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xd966ddc2 __do_once_done +EXPORT_SYMBOL vmlinux 0xd96bf950 pagecache_write_end +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9888d70 vfs_iter_read +EXPORT_SYMBOL vmlinux 0xd98b9924 get_qe_base +EXPORT_SYMBOL vmlinux 0xd9a6abad dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xd9af7017 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9eb5dc6 dm_io +EXPORT_SYMBOL vmlinux 0xd9f92660 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xda0bdcb5 __sb_start_write +EXPORT_SYMBOL vmlinux 0xda1c7ae3 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xda2348e4 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xda2e34cd in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xda300483 dma_pool_create +EXPORT_SYMBOL vmlinux 0xda33e60c gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda51c1d7 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0xda55f0d0 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda81a9e1 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xda881ec8 param_set_long +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages +EXPORT_SYMBOL vmlinux 0xdaa6e98f inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xdab02190 __posix_acl_create +EXPORT_SYMBOL vmlinux 0xdab4a012 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xdabc1ea8 fsl_lbc_find +EXPORT_SYMBOL vmlinux 0xdac16242 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdacca393 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xdad469a6 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xdae20d62 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xdaed360f dm_table_get_md +EXPORT_SYMBOL vmlinux 0xdb01198e fsl_upm_find +EXPORT_SYMBOL vmlinux 0xdb539f90 __seq_open_private +EXPORT_SYMBOL vmlinux 0xdb5c1ed5 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xdb5e066f seq_open +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb7becfc cdrom_check_events +EXPORT_SYMBOL vmlinux 0xdb93b3db atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xdb975fc3 vme_irq_generate +EXPORT_SYMBOL vmlinux 0xdb99e07c end_page_writeback +EXPORT_SYMBOL vmlinux 0xdbd33240 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xdbe5b116 unlock_buffer +EXPORT_SYMBOL vmlinux 0xdbf7fb34 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc07eccc devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdc081a75 fscrypt_decrypt_page +EXPORT_SYMBOL vmlinux 0xdc0ae060 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0xdc0ecac7 bprm_change_interp +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc36dd1c dev_change_carrier +EXPORT_SYMBOL vmlinux 0xdc3943a4 nf_afinfo +EXPORT_SYMBOL vmlinux 0xdc3afb51 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc63f138 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xdc6ca8ff key_alloc +EXPORT_SYMBOL vmlinux 0xdc7901ec tty_kref_put +EXPORT_SYMBOL vmlinux 0xdc86cbb6 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xdc9498dd down +EXPORT_SYMBOL vmlinux 0xdc9dd742 vme_slave_request +EXPORT_SYMBOL vmlinux 0xdcad1fae debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcb62aa5 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0xdccfb16c buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd1b95ba vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xdd1c4d73 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd3d6100 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer +EXPORT_SYMBOL vmlinux 0xdd96810c jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xdd9ac89b scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xdda265d9 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xdda9f466 nvm_submit_io +EXPORT_SYMBOL vmlinux 0xddac7494 ucc_slow_init +EXPORT_SYMBOL vmlinux 0xddcde0b0 up_read +EXPORT_SYMBOL vmlinux 0xdddb6954 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xddeaebdb md_unregister_thread +EXPORT_SYMBOL vmlinux 0xde03eaa4 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xde108c33 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xde1a71cf jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xde381841 request_key +EXPORT_SYMBOL vmlinux 0xde3af987 generic_update_time +EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xde678226 blk_start_queue_async +EXPORT_SYMBOL vmlinux 0xde693cfd devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde94812f from_kgid_munged +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdea382d5 tcp_poll +EXPORT_SYMBOL vmlinux 0xdeab018e scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0xded97c00 neigh_table_clear +EXPORT_SYMBOL vmlinux 0xdf168722 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xdf2582e6 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2e3d4c agp_copy_info +EXPORT_SYMBOL vmlinux 0xdf35786f crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf616557 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xdf6d995d is_bad_inode +EXPORT_SYMBOL vmlinux 0xdf7612c1 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xdf905756 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf9906b3 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xdfb33628 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0xdfb72ea1 check_disk_change +EXPORT_SYMBOL vmlinux 0xdff43ed4 __debugger +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe0155257 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xe023c211 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xe02d03dc dentry_open +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe051cc1d generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xe0601759 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe06e52c0 seq_release +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe07ef7bd dev_err +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0f486f6 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xe1110599 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0xe11a4274 phy_find_first +EXPORT_SYMBOL vmlinux 0xe12a9be6 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0xe12c67d6 scsi_register_interface +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe1533ecd console_start +EXPORT_SYMBOL vmlinux 0xe163d7f2 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0xe163f6f6 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe1795ed2 agp_create_memory +EXPORT_SYMBOL vmlinux 0xe1a2fe0c max8998_write_reg +EXPORT_SYMBOL vmlinux 0xe1a86808 __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe1b49f70 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xe1befc74 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xe1c6fd78 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xe1cc4424 get_monotonic_coarse64 +EXPORT_SYMBOL vmlinux 0xe1ef64da input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xe1f1a1cd ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xe1fe9a2c skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe2088506 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0xe20b40ec dev_deactivate +EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe258c35e skb_queue_head +EXPORT_SYMBOL vmlinux 0xe262a707 invalidate_bdev +EXPORT_SYMBOL vmlinux 0xe277168d frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xe2845cdf proc_douintvec +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2ba58ab blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xe2bac649 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe2ff04e5 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xe304a8b1 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xe31241ef simple_nosetlease +EXPORT_SYMBOL vmlinux 0xe32c6bb8 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xe3385422 mdiobus_write +EXPORT_SYMBOL vmlinux 0xe33ed3a9 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0xe37fd10d sock_no_mmap +EXPORT_SYMBOL vmlinux 0xe3aee456 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0xe3b66b20 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xe3b6c3a0 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0xe3b8df51 freeze_bdev +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3e222ec netdev_update_features +EXPORT_SYMBOL vmlinux 0xe3f48c68 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xe4196dd6 atomic64_fetch_add +EXPORT_SYMBOL vmlinux 0xe420fc54 tc_classify +EXPORT_SYMBOL vmlinux 0xe431dfa1 phy_device_remove +EXPORT_SYMBOL vmlinux 0xe436c3fb dcache_readdir +EXPORT_SYMBOL vmlinux 0xe456e907 set_anon_super +EXPORT_SYMBOL vmlinux 0xe45f89ec inet_addr_type +EXPORT_SYMBOL vmlinux 0xe474d6ec send_sig +EXPORT_SYMBOL vmlinux 0xe47ec3a6 nf_getsockopt +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe494a01a radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0xe494e0c6 filp_close +EXPORT_SYMBOL vmlinux 0xe4b31a3d pci_find_capability +EXPORT_SYMBOL vmlinux 0xe4b632b8 complete_request_key +EXPORT_SYMBOL vmlinux 0xe4b94c40 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xe4c3babe skb_pad +EXPORT_SYMBOL vmlinux 0xe4d2fd30 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe51fca40 uart_match_port +EXPORT_SYMBOL vmlinux 0xe5224cfc swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe5570ca6 iterate_supers_type +EXPORT_SYMBOL vmlinux 0xe55fae11 __inode_permission +EXPORT_SYMBOL vmlinux 0xe564bd64 ucc_fast_init +EXPORT_SYMBOL vmlinux 0xe56d5b54 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe57917d9 netdev_printk +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe592efb2 filemap_check_errors +EXPORT_SYMBOL vmlinux 0xe596e1fc agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0xe5994d31 pci_set_master +EXPORT_SYMBOL vmlinux 0xe5b12095 vme_register_driver +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5e1fcdf d_add_ci +EXPORT_SYMBOL vmlinux 0xe5eb5086 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe6207b12 km_state_expired +EXPORT_SYMBOL vmlinux 0xe6262de4 read_cache_pages +EXPORT_SYMBOL vmlinux 0xe62ac2d9 nvm_bb_tbl_fold +EXPORT_SYMBOL vmlinux 0xe650e7b8 vme_irq_handler +EXPORT_SYMBOL vmlinux 0xe656688d xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xe66452ab dql_init +EXPORT_SYMBOL vmlinux 0xe6681260 mutex_lock +EXPORT_SYMBOL vmlinux 0xe67f705e rfkill_alloc +EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size +EXPORT_SYMBOL vmlinux 0xe6b38234 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xe6d6d765 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xe6d9bede pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xe6e315d9 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xe6e98cab register_shrinker +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe71437c2 netlink_net_capable +EXPORT_SYMBOL vmlinux 0xe71b3374 sk_alloc +EXPORT_SYMBOL vmlinux 0xe71b7116 migrate_page +EXPORT_SYMBOL vmlinux 0xe75761d2 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xe76a1060 pci_find_hose_for_OF_device +EXPORT_SYMBOL vmlinux 0xe780e7c5 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7b30b9f padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0xe7cf638d dma_sync_wait +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7d6b15c xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xe7e19cc3 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xe7e452c8 sk_capable +EXPORT_SYMBOL vmlinux 0xe7eaf00f kobject_init +EXPORT_SYMBOL vmlinux 0xe801e81c alloc_disk +EXPORT_SYMBOL vmlinux 0xe80deebf neigh_connected_output +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe821e0b6 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0xe8244f3f skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xe82cc752 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xe8314065 blk_put_queue +EXPORT_SYMBOL vmlinux 0xe84d70c7 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xe8654827 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xe86e9bd1 I_BDEV +EXPORT_SYMBOL vmlinux 0xe87b2edd sg_copy_buffer +EXPORT_SYMBOL vmlinux 0xe897dd61 skb_tx_error +EXPORT_SYMBOL vmlinux 0xe89d505b tcp_connect +EXPORT_SYMBOL vmlinux 0xe89fe6bd register_framebuffer +EXPORT_SYMBOL vmlinux 0xe8a52dac fasync_helper +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8afacb2 set_bh_page +EXPORT_SYMBOL vmlinux 0xe8b77c67 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8ca7f82 get_gendisk +EXPORT_SYMBOL vmlinux 0xe8de1a79 skb_clone_sk +EXPORT_SYMBOL vmlinux 0xe8df9aab put_disk +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9168cae netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xe92e1dd8 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xe92eb6a8 path_put +EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next +EXPORT_SYMBOL vmlinux 0xe946905a mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe96ce2a2 machine_id +EXPORT_SYMBOL vmlinux 0xe9766454 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xe9d09bf5 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea028854 md_write_start +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea0efc47 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xea22fae4 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xea3c6113 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xea424d5c blkdev_fsync +EXPORT_SYMBOL vmlinux 0xea4e6c1e security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xea632ef8 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea802834 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xea9b07a2 pci_bus_put +EXPORT_SYMBOL vmlinux 0xeaa0c5ae irq_set_chip +EXPORT_SYMBOL vmlinux 0xeaa4a692 blk_rq_init +EXPORT_SYMBOL vmlinux 0xeaa50387 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xeaaa0e6b thaw_bdev +EXPORT_SYMBOL vmlinux 0xeaae2d08 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xeb008720 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xeb00d55b get_user_pages_remote +EXPORT_SYMBOL vmlinux 0xeb034d29 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xeb1e239a vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb4fbb62 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeb57bc90 dev_disable_lro +EXPORT_SYMBOL vmlinux 0xeb7f2b0b jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xeb82e1d5 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0xeb8d93b5 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xebaa77d9 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xebc27039 d_add +EXPORT_SYMBOL vmlinux 0xebd3fa41 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xebd4aa34 send_sig_info +EXPORT_SYMBOL vmlinux 0xebdff09c import_iovec +EXPORT_SYMBOL vmlinux 0xebe05bfd ps2_drain +EXPORT_SYMBOL vmlinux 0xebe06d2b secpath_dup +EXPORT_SYMBOL vmlinux 0xec15d9d1 d_instantiate +EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit +EXPORT_SYMBOL vmlinux 0xec3dc7af pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec603e42 atomic64_fetch_and +EXPORT_SYMBOL vmlinux 0xec6371ff cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0xec76f76c sock_from_file +EXPORT_SYMBOL vmlinux 0xec9f8b7a dev_warn +EXPORT_SYMBOL vmlinux 0xeca4bba4 of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0xecaa1c2f udplite_prot +EXPORT_SYMBOL vmlinux 0xecac9d68 nvm_get_blk +EXPORT_SYMBOL vmlinux 0xecbb773c tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xecd09951 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0xecd982a2 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecf4f172 ucc_fast_transmit_on_demand +EXPORT_SYMBOL vmlinux 0xecfd021f ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xed0300c5 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xed04a673 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0xed18b60e bdi_register_dev +EXPORT_SYMBOL vmlinux 0xed1f31ef tcp_shutdown +EXPORT_SYMBOL vmlinux 0xed27839b xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xed52ef3f mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed6118be __scm_destroy +EXPORT_SYMBOL vmlinux 0xed7eb522 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xed914d47 sock_rfree +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +EXPORT_SYMBOL vmlinux 0xed9ae30b vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xeda7d149 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0xedb4360c netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xee054f4f dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeac8e7b xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xeead6ae9 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xeeb9ebe8 d_alloc +EXPORT_SYMBOL vmlinux 0xeed8aa6f pcim_iounmap +EXPORT_SYMBOL vmlinux 0xeee45e2c inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0xeeed7355 blk_free_tags +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xef15c691 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0xef467da7 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xef4a91b6 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0xef4f4a0a simple_write_begin +EXPORT_SYMBOL vmlinux 0xef52fcac pci_request_region +EXPORT_SYMBOL vmlinux 0xef6882ec ps2_handle_response +EXPORT_SYMBOL vmlinux 0xef7c84f2 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xef7d21df csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xefaa3265 blk_recount_segments +EXPORT_SYMBOL vmlinux 0xefb760f4 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefd30261 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xeff59410 __vfs_read +EXPORT_SYMBOL vmlinux 0xeffddeb6 module_refcount +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0045835 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf01ce9e0 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xf050433c devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf06074bf param_get_ulong +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf0682e42 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xf081857a blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xf081d649 dev_mc_sync +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf093485f security_inode_init_security +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0eb20f5 nf_register_hook +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0f412bd netlink_broadcast +EXPORT_SYMBOL vmlinux 0xf100db22 bio_advance +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf106030f mmc_release_host +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf112fede phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible +EXPORT_SYMBOL vmlinux 0xf1349228 swake_up_locked +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf1627061 try_module_get +EXPORT_SYMBOL vmlinux 0xf16d0b3b vc_resize +EXPORT_SYMBOL vmlinux 0xf177ae49 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0xf1917c01 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1994e5e devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xf1ad1122 security_path_unlink +EXPORT_SYMBOL vmlinux 0xf1bd0adb blk_requeue_request +EXPORT_SYMBOL vmlinux 0xf1c522c0 param_set_ullong +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1dba377 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1ec6337 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xf20ab53f blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xf20c7417 current_in_userns +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf2151b68 migrate_page_copy +EXPORT_SYMBOL vmlinux 0xf22881e8 lg_local_lock +EXPORT_SYMBOL vmlinux 0xf235d534 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xf23a8bdf nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf24c212c mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xf25a409d scsi_add_device +EXPORT_SYMBOL vmlinux 0xf26f7449 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xf27a6144 skb_vlan_push +EXPORT_SYMBOL vmlinux 0xf27e219d gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xf28a351c bio_put +EXPORT_SYMBOL vmlinux 0xf29fd3ad invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xf2a6add7 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xf2aeaa0e skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2d418b0 inc_node_state +EXPORT_SYMBOL vmlinux 0xf2ddd8ea eth_change_mtu +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf322a206 bit_waitqueue +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf33e57f8 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34ad52d d_delete +EXPORT_SYMBOL vmlinux 0xf3537875 of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf35a1b5b tcf_hash_create +EXPORT_SYMBOL vmlinux 0xf3738402 netdev_info +EXPORT_SYMBOL vmlinux 0xf3825f5b dquot_scan_active +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3a9cf82 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xf3e39632 phy_resume +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3f1ba4f pcibios_align_resource +EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xf40d4193 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xf415243d sock_wake_async +EXPORT_SYMBOL vmlinux 0xf41dc70a from_kuid_munged +EXPORT_SYMBOL vmlinux 0xf423853e flush_icache_user_range +EXPORT_SYMBOL vmlinux 0xf42634c3 mach_c293_pcie +EXPORT_SYMBOL vmlinux 0xf42dfb31 have_submounts +EXPORT_SYMBOL vmlinux 0xf42e02c2 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xf441877f fence_array_create +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf4446aec sock_no_bind +EXPORT_SYMBOL vmlinux 0xf4449388 timer_interrupt +EXPORT_SYMBOL vmlinux 0xf459af09 inet_put_port +EXPORT_SYMBOL vmlinux 0xf466025b ppc_md +EXPORT_SYMBOL vmlinux 0xf472017a swake_up_all +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4768125 netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0xf478b48a nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xf498d9a7 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4e6645e mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xf4ef8680 cdrom_release +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf5018023 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xf5222143 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0xf52321e0 atomic64_sub +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf54f24a7 single_open_size +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io +EXPORT_SYMBOL vmlinux 0xf5b88a13 mach_bsc9132_qds +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5c325a3 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xf5c805bd find_get_entries_tag +EXPORT_SYMBOL vmlinux 0xf5d7beeb pci_disable_msi +EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf61198ec scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xf6271422 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xf640bb40 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0xf65313c0 atomic64_xor_return +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf6784acc nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xf6789a40 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xf67c8343 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf6c023a2 from_kprojid +EXPORT_SYMBOL vmlinux 0xf6dd359d skb_checksum_help +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf70384d7 __debugger_sstep +EXPORT_SYMBOL vmlinux 0xf70c16a6 unload_nls +EXPORT_SYMBOL vmlinux 0xf70d257c sock_recvmsg +EXPORT_SYMBOL vmlinux 0xf710ee25 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xf71521ba atomic64_add_return +EXPORT_SYMBOL vmlinux 0xf748472c flush_delayed_work +EXPORT_SYMBOL vmlinux 0xf74fac59 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf7632bda xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xf76cc964 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xf77f5237 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xf78b24b4 padata_start +EXPORT_SYMBOL vmlinux 0xf78f2351 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xf7905417 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xf79d3abe fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0xf7cdc736 clkdev_add +EXPORT_SYMBOL vmlinux 0xf7da8f26 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xf7dc9730 vm_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xf7e7e593 phy_connect +EXPORT_SYMBOL vmlinux 0xf7e95766 lwtunnel_output +EXPORT_SYMBOL vmlinux 0xf7f08eef xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xf7f53c3b dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xf7fa43f6 mdio_bus_type +EXPORT_SYMBOL vmlinux 0xf8010727 lwtunnel_input +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf81b59a2 sg_miter_next +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf82efd88 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0xf83352d6 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xf83b55ed iget5_locked +EXPORT_SYMBOL vmlinux 0xf84de578 of_n_size_cells +EXPORT_SYMBOL vmlinux 0xf85c2e86 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0xf87c5d98 proc_mkdir +EXPORT_SYMBOL vmlinux 0xf88a3e16 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xf88c2483 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0xf8a0ba42 netif_napi_del +EXPORT_SYMBOL vmlinux 0xf8ab36e8 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xf8c9d59a vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xf8ca2e88 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xf8e0085e dev_mc_add +EXPORT_SYMBOL vmlinux 0xf8e398fc memstart_addr +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf9016848 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xf910ddcc param_ops_bool +EXPORT_SYMBOL vmlinux 0xf9157ecd nvm_unregister_tgt_type +EXPORT_SYMBOL vmlinux 0xf9228003 get_immrbase +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf948db62 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xf95323ce get_task_exe_file +EXPORT_SYMBOL vmlinux 0xf96a7f8c generic_file_llseek +EXPORT_SYMBOL vmlinux 0xf96e0a01 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0xf991ef73 vm_node_stat +EXPORT_SYMBOL vmlinux 0xf99e7a31 param_get_bool +EXPORT_SYMBOL vmlinux 0xf99eb3fe __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xf9a056b2 read_code +EXPORT_SYMBOL vmlinux 0xf9a0a7b7 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9d68e26 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0xfa01e791 udp_proc_register +EXPORT_SYMBOL vmlinux 0xfa07753f blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xfa2c092b inode_init_always +EXPORT_SYMBOL vmlinux 0xfa30f1d9 param_get_ullong +EXPORT_SYMBOL vmlinux 0xfa391eab ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xfa3f2a93 inet_stream_connect +EXPORT_SYMBOL vmlinux 0xfa4f223f __skb_get_hash +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5bcf35 mod_timer +EXPORT_SYMBOL vmlinux 0xfa769546 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xfa810f0b __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xfa81a4fa fb_find_mode +EXPORT_SYMBOL vmlinux 0xfa9246ec inet6_offloads +EXPORT_SYMBOL vmlinux 0xfa9a4638 dquot_release +EXPORT_SYMBOL vmlinux 0xfab820a3 cdrom_open +EXPORT_SYMBOL vmlinux 0xfabcda11 no_llseek +EXPORT_SYMBOL vmlinux 0xfac3fca8 inet_frags_init +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfacddf92 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xfad599a7 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xfade5f25 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xfaf4d0e5 dquot_free_inode +EXPORT_SYMBOL vmlinux 0xfaf5f23d backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xfb12af19 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xfb27de87 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0xfb31230e pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xfb3470f1 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb6c0100 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xfb713034 of_get_property +EXPORT_SYMBOL vmlinux 0xfb76e836 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xfb79af1e scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfb9eec51 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xfba3ce62 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xfba3f199 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xfba89bb8 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbb6528a netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbc9e553 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xfbca6565 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xfbcce51c flush_dcache_icache_page +EXPORT_SYMBOL vmlinux 0xfbe03d64 flush_signals +EXPORT_SYMBOL vmlinux 0xfbe8645e generic_show_options +EXPORT_SYMBOL vmlinux 0xfbf4832a pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc333d1d scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node +EXPORT_SYMBOL vmlinux 0xfc5892ca bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xfca1123b agp_bridge +EXPORT_SYMBOL vmlinux 0xfca3f4a6 pci_match_id +EXPORT_SYMBOL vmlinux 0xfcb01b35 d_rehash +EXPORT_SYMBOL vmlinux 0xfcb20204 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0xfcba7275 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcc69f62 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xfcda7311 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcdcedd8 generic_writepages +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfced60cf seq_path +EXPORT_SYMBOL vmlinux 0xfcef2adf pci_save_state +EXPORT_SYMBOL vmlinux 0xfcf84a93 atomic64_xor +EXPORT_SYMBOL vmlinux 0xfcf9c23f mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd006401 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0xfd09415c pcim_enable_device +EXPORT_SYMBOL vmlinux 0xfd30e2bb sock_alloc +EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xfd414bdf __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xfd58dbde truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xfd63a823 task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0xfd6458dc bdi_register_owner +EXPORT_SYMBOL vmlinux 0xfd7795e9 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfd9bc202 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdbefaf1 gen_pool_create +EXPORT_SYMBOL vmlinux 0xfdbf1810 set_user_nice +EXPORT_SYMBOL vmlinux 0xfde7ea7a tso_build_data +EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp +EXPORT_SYMBOL vmlinux 0xfdef53e8 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0xfdfb03a0 scsi_print_result +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfdfcdd5f __csum_partial +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe185998 dst_release +EXPORT_SYMBOL vmlinux 0xfe4143a6 ll_rw_block +EXPORT_SYMBOL vmlinux 0xfe4d17b4 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe7ff829 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xfe80cae1 uuid_be_to_bin +EXPORT_SYMBOL vmlinux 0xfe822d55 get_brgfreq +EXPORT_SYMBOL vmlinux 0xfe8b130a dev_addr_init +EXPORT_SYMBOL vmlinux 0xfe9869cb ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0xfea8816c do_SAK +EXPORT_SYMBOL vmlinux 0xfeab174b ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xfeb4b9d5 mdio_device_register +EXPORT_SYMBOL vmlinux 0xfeccd051 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee563c8 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xff018b9b i2c_use_client +EXPORT_SYMBOL vmlinux 0xff018f38 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xff0ed8c2 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff2060c3 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6dea25 smp_hw_index +EXPORT_SYMBOL vmlinux 0xff6f2971 default_file_splice_read +EXPORT_SYMBOL vmlinux 0xff7259aa wireless_send_event +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffd6b324 __sock_create +EXPORT_SYMBOL vmlinux 0xffe690fd udp_table +EXPORT_SYMBOL_GPL crypto/af_alg 0x1652d0fd af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x718042ac af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x7d9b1b26 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x9ef1320c af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xb2dc49a2 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xb73d0884 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xce0faf81 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0xf0e8c068 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xf7eed621 af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0xff5ee155 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x798928ac async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x2503b6df async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xd3adef61 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x4a33ee7a async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xd67c2c79 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x0d0fdf27 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x585ff80e __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x761bcdcc async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xfb86f5e3 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x6950db53 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xc2d227c9 async_xor +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x8030e2bd blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xd96ce340 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x24c9138e cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 +EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x2126a95e crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xaf181aa9 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/cryptd 0x0db7bd5f cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x1a8e2b96 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x33c046e6 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x478c94fc cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x8d2b349b cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x9f7ccb5c cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xa43f4d7b cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xaf230d8d cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xb72f01c2 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xc384c53e cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xf4c2607f cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xfa54a302 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xfdb08f4f cryptd_ablkcipher_queued +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey +EXPORT_SYMBOL_GPL crypto/dh_generic 0x9edeb49b crypto_dh_decode_key +EXPORT_SYMBOL_GPL crypto/dh_generic 0xa9c31fb3 crypto_dh_key_len +EXPORT_SYMBOL_GPL crypto/dh_generic 0xb25efd9f crypto_dh_encode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x597307c5 crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table +EXPORT_SYMBOL_GPL crypto/lrw 0x53e3177c lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x1c31039c mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x213c351f mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xadaf5a2f mcryptd_ahash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0xe9698863 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x163e17f6 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x29530a38 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5b17e273 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x6eca4b3f crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x182e55db serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xa661591f twofish_setkey +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0763b759 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0894df90 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0b2acf03 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x18f56d63 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x20d6989b ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x248bfefb ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2bc9cf12 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x31639902 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x41002a4d ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5e10904d ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x688e8eb0 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x71354395 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x72dc4c39 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x738944e9 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x75727ede ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb87cef8e ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc599ac28 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc6ae6ac3 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd2a2265b ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe45fca13 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe5cce13c ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf9d6b5de ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xff27f47b ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0582ff62 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x13468a42 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1b5674a7 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2bc5fe4b ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3e32a894 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x516f1523 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x550c9546 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb9b30030 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc8639666 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcea754fe ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd2606d2f ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd27b1b8a ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xfff64d86 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x55aed9ba __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x2f438f35 sis_info133_for_sata +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-spmi 0x7820ee49 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x9fd79e6e __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xe51d601d __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xf34c360d __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x079b21b4 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0eb6b25d bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x12f2df41 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1d946730 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1e1b0e6f bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x212f2cee bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x216096ab bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x22eed59f bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x33ebeac2 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x38268828 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3b317515 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3bdd5039 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4b04d4e8 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x61e103bd bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x669281e9 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x76d9463b bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7b60a6f3 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9247ba7b bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x93d4d89e bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9e055424 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa1a2dce3 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xce1e92ef bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe083c93c bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf42e418c bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x031d41ef btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4c27cc7c btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7663b939 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8fe524e0 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9897d298 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd68938cd btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x06df17c3 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x16de393a btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x575f349e btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5a18c1bd btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x608d69ef btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x86a58da6 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x931e9a66 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9b40a847 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbadd7daa btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc5430302 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdf7bc9d4 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xee7ba337 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf649c79e btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf6cd16f8 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0e197373 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1a5b9846 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1bf12ed3 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x58f98625 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8d809608 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x94e1f90c btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa1a84e86 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb1590d8a btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd5d2d517 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd8b365e2 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdb91b1a1 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x34b2c933 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7fc43a0d qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x8559529b btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x8335e25e h4_recv_buf +EXPORT_SYMBOL_GPL drivers/char/tpm/tpm_tis_core 0x473a754c tpm_tis_core_init +EXPORT_SYMBOL_GPL drivers/char/tpm/tpm_tis_core 0xc5572c67 tpm_tis_resume +EXPORT_SYMBOL_GPL drivers/char/tpm/tpm_tis_core 0xecf6d3c6 tpm_tis_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x76dc0b02 dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7b76981a dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa2b2d61a dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe75ffb31 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xfd41ba5f dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/fsldma 0x03e805d7 fsl_dma_external_start +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x30f8a1a8 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x54b413de hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x00df994b vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x08c0b779 vchan_init +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x1c349539 vchan_tx_desc_free +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xcaa497c3 vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xd536b012 vchan_find_desc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x235a7dc0 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x23cf404f edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x39df3bcc edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x43cacf8c edac_stop_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4d43b644 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4e1968da edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4e34864c edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5c6a29f6 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x674b5573 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x79a6e429 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7f36ddd9 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8ae297a1 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x99cbc11d edac_mod_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9c8f1654 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa2f9466e find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb0cbfa18 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbf97afde edac_queue_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xcefb8358 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd1671f89 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd5a0f1f3 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd922b6e8 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdfb20079 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe09d2ccb edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe6054d55 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xec3ed617 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf5bb46d2 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4395ac21 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x69a01e92 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb5734717 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb983ba55 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc2be6286 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc76bc560 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x2558b518 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x6e8017c4 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x112c4839 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x117e5596 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x27109e94 drm_gem_cma_prime_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2dec5d59 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x38b8c817 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3b89ef06 drm_gem_cma_prime_vunmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7464bef6 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fc3541e of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x96d21f97 drm_gem_cma_describe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x97d457a1 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x99d04dbc drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa771b864 drm_gem_cma_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa8edf936 drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa92e924f drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc10ba58a drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc160e209 drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd03c5601 drm_gem_cma_prime_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd838cc13 drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe4673c7c drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe46a6725 drm_gem_cma_prime_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1148b623 drm_fbdev_cma_fini +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb2c912af drm_fbdev_cma_hotplug_event +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xbda984af drm_fb_cma_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc635992a drm_fb_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xca0d0766 drm_fbdev_cma_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcc337fd5 drm_fbdev_cma_restore_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf1e55106 drm_fbdev_cma_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf355fe76 drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xfb2b067c drm_fb_cma_debugfs_show +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x14ef7ab9 ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x842228b0 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x87e57930 ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x13647bfb hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x18530f04 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1abaf568 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1ddaa5b7 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2050177d hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x28ef1338 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2c0a82b5 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3306d605 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x42d5b734 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x48b12a20 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4dc14861 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x508b5d92 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x56851738 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x604cb934 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x631fabe8 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x72767a10 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x74b2c422 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7967dbaf hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x79ccc783 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x83bb1da7 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x844eb084 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8847e38a hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8cbc4e5c hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8d26ac8e hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x973a8840 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9f451c82 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb1435501 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb3dbf293 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb771212b hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbfc6e4bf hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcf023864 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd352ad1d hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd3ac0363 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe5aa4556 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf082daf1 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfbe8f980 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x959fa105 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3acb7b5b roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x927bbb54 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x9c38edd8 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd2afbc3a roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd71f1dc0 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xe0b1fd22 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2eb82f95 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7c3f0361 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x92039963 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x924adaac sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x95ebbb83 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa8d01069 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xbbf37db7 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc32ffaa9 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc5f29014 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x40a5832d hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x185e9c2a hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x344fb754 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4676c634 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4694697e hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x68b8e753 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x84b25d32 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x98016167 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9b0fedba hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9c12f1b1 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa7841585 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xaae12e8d hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb0d74d6d hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb430a74c hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb4513b83 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbc14f0fb hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbf2aac99 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc987c419 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd0063f8d hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x2dec2134 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x39a1a4dc adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x6bbf2e7a adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x05fec297 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x14c0a906 pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x265769ad pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5a877e2a pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x82880bed pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x84a342fe pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x89248828 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8ddb2497 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa1138f96 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xabc6877b pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xaf62598a pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb6c07627 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xcb671aa6 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd8738b12 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xef1640cd pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x021f95f0 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3114b288 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4006852c intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4ef7e2a4 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xbdf3e992 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd2812687 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xfa19133e intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3ea6ac57 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa73e6890 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc069c2d8 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xcd8f5487 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfc00162e stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x24083da5 i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x423c8f0d i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x567d6102 i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x7e4bffad i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x97e36749 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7207d6c2 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7a033e6c i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xc1ef2218 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xc6246df4 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x04d555c3 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x3c903b63 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x81190305 i2c_setup_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xf4b4dc62 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x1fc8af8b bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x2e1b4011 bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xc644b472 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xebf3edc2 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x45928be2 mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x7139a2f7 mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xb5a65f83 mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0e00a4de ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0ed8e016 ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3e448206 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4d4fe11d ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4de59472 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x636b7aed ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9cf7542d ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb7878ea4 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf3089dad ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a0512cd iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2c535b96 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/dac/ad5592r-base 0x525c04a9 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x6355e6f2 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xcf444edc bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xdd560bdd bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xe5446eb0 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x147b4af5 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3607bb82 adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x39435ced adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8222c947 adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8cf1db53 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8d7910f2 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xadb8b831 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb2efcec3 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb3060f35 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xba12fa6d adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xbaab9cc6 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf61edbee adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x3e74675a bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xb6b900e4 bmi160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x653f068f inv_mpu_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x8a7b01ae inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x90fdac0c inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xfe22fbd7 inv_mpu6050_set_power_itg +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x024a2310 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0868c979 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0a36d9cb iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0d3f3560 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1cd1a12f iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20ce344a iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x23a57fe9 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x288f8910 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2c7868a4 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x33d07c57 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3f7a80c8 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x47cc1655 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x542091bf iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5e3ff305 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5fc02bdb iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x68ca6aac devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6b5f64db iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x739c5f91 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7992f089 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7b660f50 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x818de466 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8de4a332 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9337bda5 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x94c2e1b8 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa2c25394 iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa937fcd5 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbd5a7996 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc3021fa9 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8584ee1 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xccd92fe1 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcd5f0679 devm_iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd58331b7 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdfe65822 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeb328eae iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf2dba24d devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf3dfaa81 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfc2556e8 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfc37a3d2 devm_iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfc5fc361 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0x866cc8f2 mpl115_probe +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/sw/rxe/rdma_rxe 0x0d71202d rxe_dev_put +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x38e24b21 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xba5d000a matrix_keypad_parse_of_params +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 0xe43f1912 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x13302e5e rmi_get_register_desc_item +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1789beac rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1fc243d4 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x214504e5 rmi_read_pdt_entry +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x232c4995 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x27f199ee rmi_register_desc_calc_size +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4a7fdf64 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5cb5670a rmi_process_interrupt_requests +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6df07b20 rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7059825a rmi_register_desc_calc_reg_offset +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7e243ff4 rmi_2d_sensor_set_input_params +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8932dd0d rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x95d95fc2 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9daf5093 rmi_read_register_desc +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xad109c1f rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb10eec0c rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc82fdbd3 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf892a130 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf8d7d9d3 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x920f4f4f cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x93e0e4c2 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xf15d59f9 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x08b26fd1 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xb4d3f516 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x7cf684ad cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xcc37acc5 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x00c9be68 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x2698843f tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x58eda636 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x612894c3 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x06efb865 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1d3b76d0 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3ae57783 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x44f663a7 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x46c22202 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x59487efd wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7f731e14 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x820e7536 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x885c6339 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd318d217 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf5aba6d1 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf73bed63 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x01294a3c ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0c7c8a23 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x15be3cf3 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1f484ed9 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x27efa7f1 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8b4e921b ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb5430442 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc7839383 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf38ffac1 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0c3d4d68 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0e9e153b gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x23dc36bc gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2efb5919 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x43beafb3 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7ad04b6b gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8a3a0946 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x905252b8 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9c44f463 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa5b5211b gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb91672cb gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xbd3d3516 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc08cd6c0 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xcf9a7438 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe49f0e74 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xeb3cb4ae gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xeef084c8 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x227a8116 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x30e654bb led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x47528bf4 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xdc19bbb2 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xfa677939 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xfc037f1e led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x086fb2ec lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3c1ac032 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5b7a1748 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5cf65275 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7818bad0 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x86ac21be lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8b573cec lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x97e7cc7d lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9cd2de20 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe487565d lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe72ca932 lp55xx_unregister_leds +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 0x0a225136 wf_get_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x163e5cd2 wf_get_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x2b98a6b0 wf_unregister_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x497ff239 wf_put_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x78de4536 wf_unregister_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xca338ff5 wf_put_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xe779939a wf_register_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed968e53 wf_register_control +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x04305ae6 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x060ee3ab mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x07efd9ee mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x177cd92c mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x45b4c76e mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5bda8f49 mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5d6eef4e mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9b84ae3e mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb54ed44c mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc0766e68 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd4000edd __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe766c509 mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xebcaebd4 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xfaefd480 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x02ce290c __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17eac0f8 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a9ab848 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2c437ee8 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x47eb5d3c __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4c335f55 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ef50c7b __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ba7ca35 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x652a0434 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x69302482 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x722e42af __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x73d3c8c3 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x76b62b5b __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7a166f35 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x83976f6a __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8d6b9077 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8f176e80 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x91000c8f __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d57059c __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa09ec603 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xade292e7 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xadeb7c0b __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6d9add1 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc7ec4586 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce62b302 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd1dc5463 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd20bb2e0 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd2b0cbc6 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd539a89c __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef63fd59 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf55d5c1c __tracepoint_bcache_btree_set_root +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 0x4569b74c dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x45935ad5 dm_cell_release +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 0x89c4f673 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa7a3a24c dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xad0739ca dm_cell_visit_release +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 0xbdba6741 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe0ec3fab dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xed4262f4 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf1293f87 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 0x22163b69 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3909d3a8 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +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 0x9b2b253a dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcee79daf dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new +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-cache 0x0855790b dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x120cf1e5 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x3a7b0b21 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x3fc18d4d dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x591ba0b7 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xd35d50fb dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xdec91d7c dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x1cacbf41 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x5d7845de 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 0x09472122 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x20fe3310 dm_rh_bio_to_region +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 0x3d16666c dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x75770d49 dm_region_hash_create +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 0xa23c64df 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 0xa8813ad6 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbf52b875 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd167618 dm_rh_dirty_log +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 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x150c85ce dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum +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 0x32b5f546 dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x33c03da6 dm_sm_disk_open +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 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x619701dc dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk +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 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit +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 0x832bf228 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x90497c9f dm_block_manager_create +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 0x966a8838 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock +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 0xa2507774 dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbcfdc290 dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbe0497aa dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xead1e727 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0x00096a0f cec_set_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0x4961a844 cec_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0xbff6533d cec_phys_addr_validate +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0xd2f2eac1 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0534cb09 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0ba2a96d saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2ae98ce7 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3a974311 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8078bb8d saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x97a6c5df saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa1113c00 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa2b49df0 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xea091ea1 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf6f39fbd saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x03ba8a10 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x4efd6a92 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x6f2eb9aa saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x88ce5335 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xbc20f313 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xde757d70 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xfa8fb1b7 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0edf7960 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x15bd3fac smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1ca3fcba smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x28dbc466 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2a1a4a6d smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2aee01c2 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 0x4fa88b3e sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6b97d0c8 smscore_register_client +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 0x84eaf18b sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x92ea5844 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x92ec5fcf sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa1806880 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xab0a1a29 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb16d7d26 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcae2d250 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe62dc7d8 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfa1a932d smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x0756995d tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x0b63430e tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x1c236f52 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x395504e9 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4cf9e178 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x5c15f12d tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6da054cc tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7527c0ad tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x89685ab4 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x8deb2d91 tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x9e9e5267 tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xbbf641fb tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe01d21d2 tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf26d0c08 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x4ba869d1 dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x1bd1c9ba as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x6b865176 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x3416594a tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x15612d07 media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0x1c761cfd media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x1d605278 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x1e22c3f5 media_entity_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/media 0x1f6b2c54 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/media 0x2a98eb62 __media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x4f1a45b1 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x53054579 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/media 0x55ce5571 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x5de0b059 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x5e45e189 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0x60a64b0e __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/media 0x6275e8a0 media_device_init +EXPORT_SYMBOL_GPL drivers/media/media 0x64560997 media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0x64c3cf64 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0x688bacc1 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/media 0x73c8011c media_device_get_devres +EXPORT_SYMBOL_GPL drivers/media/media 0x75e786da media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/media 0x75fe074b media_device_find_devres +EXPORT_SYMBOL_GPL drivers/media/media 0x817910b5 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x84edfb0f __media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x8a97352e media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x99674597 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0x9d8bb32c media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/media 0x9ff3240d media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/media 0xad0c6d57 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/media 0xb544f816 media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0xb67d7588 media_entity_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xc093a370 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0xc323eb9e media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0xcaeb7b1d media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xcbc7c999 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/media 0xd78cc027 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/media 0xdc581289 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/media 0xdf8302dc media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xf5cec885 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0xf7c83d45 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/media 0xfa8a5115 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xfb209c55 media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x05a2e59b cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x01abde4d mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1c28f639 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x33cb3bdd mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x37c19339 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4a32c776 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x524bbeea mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5eb5b27d mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x633753a7 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x82ba0432 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x917e9133 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa45dea84 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbb069c00 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdda4162f mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe3c1adac mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe43965a1 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe8876d98 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xefc11b85 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf8844fde mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xffbef578 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x076a9229 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x181d7a0c saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1aeca277 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1deccc4c saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x25a74e7f saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x35f8e846 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5447f874 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5a98929f saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x64cacc0d saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x66a7e6dd saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x848c2224 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x995810a7 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9ebd6c71 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa2c1bcaa saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcab869cd saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd70d3087 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe58214db saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xefef87da saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf5640b23 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x114a0a8a ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x29ecd6e9 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x2c282f99 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x80df8b98 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa14d4a87 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xc526941f ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf38c1268 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x06157811 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x37bbceba xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x71e87ded xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7d4a9da5 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb793f3ce xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe5542155 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xfa13c67b xvip_of_get_format +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 0x8f2f017d xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x3ccd70f7 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xb280f126 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03350f64 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x317647ad rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x42ef5a4a ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x588a469a rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x58f3ed0b ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x683258b4 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6af0ec18 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x75684be9 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x79072ecd rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7b8a1230 rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x956023bf rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9c015685 rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xac720e06 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb152596b rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd3de812e rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd448f56f rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd88d3e39 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xefb38eac ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf4feb97c ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x9e5631f4 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xdba2087c microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x2c12b58a mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x20943f82 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x895f3005 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x11fbe3d4 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x5d45ba25 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xdad2ef8a tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x1b845e98 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xb5c59fa3 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xc00f214c tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x906152e7 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xc4aeb44d tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xcc728ce7 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0c41294f cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x135bab1b cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1e298620 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x27ce9c3f cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3c223ef8 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5989b6b1 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x64bfef00 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7c5c6a31 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7e5bb0a8 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8a66fd97 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9f62b644 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa28f559b cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb4ad82ef cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb7bda519 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc710e6e1 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc8aeab63 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd4b9ab16 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf1c0413c is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf78d8284 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf9b67512 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x5351566a mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xfbb914cf mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x170b0a8e em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1c03da46 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3c11e1e4 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x706e4f97 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x834c0798 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa386059e em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa62e107f em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb68700df em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc8ef7d82 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd454cc27 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd7354e7d em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd76761c0 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdddb51d9 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdea1aecb em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe1b8b0c8 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf1a31437 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf82e79b5 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfc2270a9 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfdcc231d em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x05ee8d34 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x0b1f52a8 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x37bef40b tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xce0f3cc0 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x047f51e5 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x3631d10f v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x8242ed80 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xa03437d5 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xba776200 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xc30b9599 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x363ad524 v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xc2aee2ba v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xe13a1ebb v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0a7d737d v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0c42fdac v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0f2e5414 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x11fbe1a6 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x18aab68e v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2c616a10 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4a0201d5 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4d13d596 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4e72e947 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x55790d6c v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x58e0991c v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x633f11f8 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x653bab9b v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6d40ab01 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6f6fe873 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x88177177 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8f0d9002 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x943ca823 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9919832e v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x993d82e8 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa4e8a309 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb72231eb v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc4a4ec9d v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd89c5325 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdad62721 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe0e73407 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe19115d9 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x01903041 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x02ea5f26 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x053f1f7b videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x068f6ee6 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0b54083d videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x131c2434 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x362a13ed videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5225a9e0 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5c6e2e40 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6cd857ae videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x80062530 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x994620b0 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9d04d112 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9d227901 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xad850927 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb3c9dcdc videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd3af0ba6 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd9a1ed97 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdcb38a5e videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdd2dfec3 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe0d156f2 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe6850cca videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xeaa2ece4 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf6652d6d videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x9f235008 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa4a89adb 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 0xdd3f2596 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xe71fd7ee videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x08d07584 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x238e043a videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xc5d69360 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0086f077 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x00cf1a83 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1e1edd7a vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x24b62408 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2b343b36 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4e50007b vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4e8a86be vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5d2099ba vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6992afa7 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6a2232c0 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x757c69b9 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x78082f32 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7971be3e vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7d23a386 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x90d41495 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x95f0964b vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x9d1d59c8 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa0a7834e vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xbbb9cb9a vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xbd4ba4f4 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xced1f1c4 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xde9a17d8 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf06b8d07 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x26e8aab2 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xb0d57051 vb2_dma_contig_clear_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xecfb87a8 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xf0ac292d vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0xf7742591 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0289d716 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x094776c0 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0e8210fb vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x11bac3ab vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x15f9c66c vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1a332a62 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2ae03e7b vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x360ff12b vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3b8484af vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3bbc0855 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3daa1dbd vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4c6155c2 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x58e15297 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5ca4a628 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5fffa57d vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x679b431f vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7332c62a vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x82fe8ff3 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9b59ec5f vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa0994594 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xba2c5342 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc0006d5c vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc51c2ad9 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd45c9a52 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd81e3f30 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xde6b9ea3 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdf239935 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfd463428 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x3cf28a61 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x00db0eb7 v4l2_subdev_alloc_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x09639208 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x12f9ba1b v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1a378d76 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x24c55575 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x264211f0 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28e16fae v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2c46bcf5 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31d239f6 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x34d9f4aa v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x38977f0f __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3a0d0918 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50d65b11 v4l2_subdev_free_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6425a6bd v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a749608 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6aec1137 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6c85e2eb v4l2_pipeline_pm_use +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6faa8e3a v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7074ffc8 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x783da15d __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7cbbca54 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x81ffc1d2 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x86fa4ca9 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8b257600 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8bd1508b v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8c5869bd v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x967cf4ed v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa009963a v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa91abe99 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb04f4e91 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb457fb90 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbd5b7e43 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc46eadcb v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc7fe3dd1 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd7117607 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd8dca7df __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe03b2f96 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe164609d v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe6b38a3a v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe85ace72 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf171ea70 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2db8a3c v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf694dd40 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfbecbeec __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x3be43c24 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x65a5d9af pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x85a46800 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4ae831fa da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5891b592 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x627ea517 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8bc6286b da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x920fd4c1 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa73b8c1b da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf61de134 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0914155b kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1f8403d1 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x43783e4f kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x53cb965f kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x74c60cf7 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xc8c6b61e kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd54ce349 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xddc7ee2a kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x03539dea lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x3db770c5 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xe2ad4787 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1a7372d8 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x457207cb lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x736bc8a4 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb163b5ba lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc38911eb lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc998673a lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xfa002d40 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x052d0059 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xd25f89d1 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xeee540a7 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x0d9fb9ce mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x849cff32 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa3b076df mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc426b412 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd629417a mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xed9b9927 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x23afb957 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x41c53790 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x455a0959 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x518d12d1 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6e5e6393 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7032ece2 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x75fd8baf pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x97eec961 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbf1d96b9 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xca4e4593 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe157bfe7 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x99ff7472 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xc0eec607 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x0f055d4a pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x3c1db72b pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x539aaf9f pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8faa50ec pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb1154045 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x05d5d7a5 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0a70854e rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0a835a30 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x158b67e7 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x202c1487 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3f698fba rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x42c721cf rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x45b5e2ac rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x478e76a4 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4edace20 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x55e7c139 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x56025c7f rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x604c7412 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7801b1e7 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x785e979a rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8805a414 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8eeebd53 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb7c36427 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb9d065dd rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbb397ac5 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcb466626 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe92bd19e rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf510cc24 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xfd0f16ca rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x10d8ca3b rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x40bb732c rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4216a5e1 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5b7146f1 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x629ec602 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x8ccb24c9 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb3beb6ce rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xba88a4a2 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc7512103 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xcaa20d8b rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe0014e4e rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf95adb61 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xfeaa33e6 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1e045c62 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x20a4da44 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3192a8bd si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x32f5dfb0 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x33a3da23 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3422079b si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x393853c2 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x408dacd9 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4ca68d3c si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4ed4cc95 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x514d71ef si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5b69280b si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x64408b0d si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x75215d35 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x759493fb si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x76bd2a70 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8407003a si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x84251e57 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x89c9d92b si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8bdd90e2 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x90861b12 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x93ca0b52 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaf52d622 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb8dc78ea si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd1c8aa92 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd7ac38dc si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd80003e3 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xde33a4b1 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdec48407 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf0ddc03c si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf5c626cb si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf848936e si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfac765b4 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xffeba8b7 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x125c9632 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x1de829b6 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x3f1fe36a sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x9dc4e7bc sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xbf61f976 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x4be3232b am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x9d2111a3 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc3931e84 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xea845bf9 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x0e609938 tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xd94e627c tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xe00777a7 tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xe53cee4a tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x39ee42e8 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x4cde5659 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xb3284be5 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xc4141382 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x5e150b32 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x1db95d25 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x56585982 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xdf8d45ba bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xe80cb81a bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x1252b1a3 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x892f2db7 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x943a7376 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc2d96c0a cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1c6fb78c enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1ffd141e enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x71958b9a enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa2d0b840 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa5b14668 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd164104b enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd3acf043 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfe92e9a0 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0519ead9 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x05c1df35 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6693bb51 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x841df8b1 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x958df8f0 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xcf72cd10 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd76a1efd lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd9a2be5b lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x090615c3 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xbf97dc83 st_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x37cb5a20 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4152bb65 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x45c3093c sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x720edf83 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x94ceb2d4 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x960f3903 sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9934f862 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa7e795c3 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb1587b03 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc03ee669 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc4fa13c7 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc518ac07 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcccc2f16 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdc894b5d sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe2ef5753 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe3413cfd __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe47d8119 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xee64ac20 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfcbff46e sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1851e4e5 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3252d9b2 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x80d1d0e1 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x851f348a sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9c0f7ef7 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xbd460fbe sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe7750533 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x6989255e cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x949700c8 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xabbe2520 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x78fa5dba cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x8b03923c cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xf551d9ec cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x1ac4f4bb cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x43c1e231 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x62551128 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xd3156c23 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/maps/physmap_of_versatile 0x4c526d84 of_flash_probe_versatile +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00e92de8 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0a130743 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0b1037ae mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0bdd84f5 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c4ea73e mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c546d83 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x119432fb mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x16011eab get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1f2f5033 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x20a78a88 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x234e11b3 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2d4f20b5 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x30a026ba mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x312302d8 mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x373c0672 mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4217893c mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4264e32f mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x44d216b7 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x45021457 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x45d46a77 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x47b6a8be mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x49a40e9e mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4efd95fe mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x558e879e mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5660bcec put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x60364122 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6cffe5bc kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x77176b35 mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7edda882 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x80a02feb mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8a9475f6 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8e8cf9e6 mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa243cbf0 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa40b2024 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xabd2f16d mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xad020d24 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb3a2f0d8 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbc68eb15 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbcd3a3bf register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc2453cc5 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc3b09a7b __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc412dc02 mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd5bfe169 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd5eb4dd5 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd984717f mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd9cf2119 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe1964e5b __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xec431399 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf648130f mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf7f09e72 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfc9951e7 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfe326f8c mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x453abcfd del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xce73726d mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xe01f03a1 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xe7ccd777 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xf3824fd3 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x21865b17 nand_ooblayout_sp_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x391baed1 nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x5bf60ac3 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xb010b730 nand_ooblayout_lp_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x5fec679d sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xb3f6903a onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xf1b57559 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x392268f2 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x042da381 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x12d60a4b ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2395644a ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42058fb2 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5acc0860 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x659db479 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x69f4d50b ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x94b75cef ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x94d4b1ca ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xab448583 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xac944cc0 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xad6d9ac1 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe3a4c2f0 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xed95afff ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x5423bd78 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xe94bfdda devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2331ef80 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5e65645e unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6779642a alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7bb9c511 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x89f089d0 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe9bea728 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0cc5f3a5 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1b493c96 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x21623487 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2c2c8eba open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5c0ef08f can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5dd4cfb7 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6ea11181 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x841f2374 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9018ed07 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x922ef466 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9dd33e64 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9efe7af4 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa1f25eab alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd29470cd alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe61062d2 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xef104f24 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf702c672 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf9db5dd3 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x2955b3f0 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x472cf131 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x68f5c483 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x6dec877c free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x1369d593 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x3de972de alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x6f983dd2 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa5ebb2d8 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xafb0f759 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xc0ce5154 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01176a6b mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03fcf1ca mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x052949f9 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a0aee24 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a8f7a38 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b37da5a mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b6c1f8d mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c1f0c6a mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10b7b2a1 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x130d39be mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1924ec4b mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bd24333 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c12ded3 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x204507a0 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27b18f77 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x282b46f5 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2840ce07 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x295afb67 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a8774d5 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2bbf0faf __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2cbdc72d mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2da8661d mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e26324d mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32542156 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33da71d8 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34952308 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3570c0c8 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36719ceb mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a3c05c6 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ada7d10 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c99cb86 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cb0084e mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d10f111 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e1bbdcd mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e4290b4 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fa5edf6 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fb99833 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42cd6f47 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46dd7136 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47a3da1d mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48277aeb mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e1d13ba mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f175fce mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55c88ade mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5685d97e mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b200ddd mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d0963a5 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d300d8f mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fe44a04 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60bcff2d mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6586449d mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65ee42e8 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67cbb1a4 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e41a0c0 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ede688c mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ff6f477 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70301e01 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7171b970 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7324a737 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74256900 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7443ebbc mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7834905c mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8771f518 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ba13210 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c385d78 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c639b1e mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90e85293 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x928fc2bb mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92cba8e7 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x966c40f1 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99595494 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99938bd7 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a9a35b5 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9daa9fa7 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e05f196 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e9f5b2a mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ee927e6 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0c18f7e mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa419d14d mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa70e046c mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7215148 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa84d2182 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaae22741 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaecc90eb mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb092d443 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb28a360a mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb47689ee mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5460ef8 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6bab2e6 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7655f78 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb855b4ca mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8c38343 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbae83566 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbda334d4 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfb3daca mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfc64536 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1f5790c mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3a9b2d4 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc43688b9 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4c5971a mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5a942ec mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5afd919 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8532a82 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc965fd59 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca6ae01b mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcaef15a3 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccf4673d mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccfcf978 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce6ca715 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd24d3bd6 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd50c544a mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd70fe466 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd85013f6 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd90f821d mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdad9186c mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd4eda65 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0ef5108 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe47dc825 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe798ca92 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed52b71c mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedf001ff mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5200de3 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa7ba042 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfad38547 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb6068db mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe54b8bd mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0086f711 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x032d0bb4 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a1c3084 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ad34d8c mlx5_core_dealloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0bc222d5 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11866f2a mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1958dad8 mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fb07190 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2383e805 mlx5_core_alloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c68c40d mlx5_modify_vport_admin_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32994466 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35120932 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3577a810 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ad9dbf5 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d011694 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42365874 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x443d8e2a mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49ab5948 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c112a2d mlx5_query_vport_admin_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d9aff67 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e5c2522 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fbe3e1d mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50b2c2d6 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x511ff1c3 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a9ee025 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b7761f3 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c18fe31 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62d4ddd0 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x637e2c51 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68d3dfb3 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ab4d729 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6adae6a6 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c3731b7 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ced9d14 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6daa4ed1 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77d0a187 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b6b789b mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80440aba mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87bfb946 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8890e995 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8db05851 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9060bed1 mlx5_set_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x919bd6fe mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c268d39 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e059538 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f5fc7ea mlx5_core_query_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ffd99ab mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1297efe mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5a900e5 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa70764de mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa982ede0 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1115460 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3de8939 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb622d904 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9956221 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbef59e95 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc72564ff mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9c0f04d mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd8e7bc3 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1bd87fe mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4060975 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7bf4fb2 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe15f2e75 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3c4d967 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6b0084d mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe83dd5ba mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8edf4a1 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf389def1 mlx5_query_port_autoneg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf538c364 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5b6c521 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9a8b12c mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcbae473 mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe34dcf0 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff0800c2 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xa1b97bc2 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd4ab3625 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x0936782e stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x1be47855 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x760a1c6b stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x8368f3c1 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x36b1230a stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x3d35f008 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x694a32bf stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd91faa55 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x3e3a24b6 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4344b78d cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5236595a cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x52cc6b2d cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x6e944a07 cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x7b17d2a3 cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9574b78b cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9760eb0f cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9b119772 cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa49e988d cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xaacca787 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xbbd869db cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd88a31de cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xea06064a cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf31ed994 cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x25113d2f w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x3a66aa3f w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x470f8e3c w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x583ddde7 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/geneve 0x51f08b1f geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x01c5684a macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5880e47a macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x913e008f macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xffe534ee macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x3b379863 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0bdb73cc bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4cd293af bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x65a1a689 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6be58d99 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x79bdc4de bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x920f0a0b bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb6e4d263 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbc5c1585 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdd5a8f49 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf8043431 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x20613d86 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x3abd5101 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x8f9260be usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa5a99d66 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf4489115 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x16d767d1 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2c6e035d cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x30c92372 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5cc79263 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8c8fe338 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9f5c5ad6 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb9dbe3af cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe3d0b34e cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xea544941 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0b376bc8 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x583c0b38 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6152ad71 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x690bfe01 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x69eae3c7 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xbe2fec14 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0b0ff8a0 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0c32e1ca usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0d4f75a1 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x19ff2bb6 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1b995f48 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3b46d00c usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4a8edb50 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4e218768 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5efc1ab7 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x63b42b29 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x655f5c58 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6a1ea1d0 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x72331743 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7d2cf6af usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x82a648f0 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x99347934 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa5521107 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb25dfa28 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb3f18e6d usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb60c506b usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb7f2300b usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb8ce439c usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb9b5335d usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb9e30c9f usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbb84f085 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcb58d84d usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcd1365cf usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdba718cf usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe6447362 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe8772530 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xeeeeccb1 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf3ed9e67 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x56ee2095 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0742d898 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1026190e i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x58a73dff i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x60a41e5a i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x652b418a i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6a4c68fb i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7f028a1e i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x836df895 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x97e5f92b i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9ba7403e i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa8b0cf94 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa92cf343 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xbf57250c i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc147560a i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd3b4006f i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfe1a1990 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xba8c8a84 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x097b4bb3 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa7df1f36 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab40d951 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb30e9b88 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xffb5e410 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x002b2e74 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x094c3bf5 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0d556623 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0f1c082a iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0f48dcb7 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x11107a09 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1154b205 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x17253b06 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1735b3f2 iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x22f90f38 iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3184be38 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3d9b3e67 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x43dd0b53 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x45149cae iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x493e62b2 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x62584a59 iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6ecf0ccc iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x736ce5cf 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 0x784aa4b3 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x78edc5d6 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7c9b260b iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7eedbb15 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8ab14d93 iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x95965ded iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x981a3cc5 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x99f2fe44 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9fbdbf63 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa32cec7f __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa3e51dc8 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb64e5acb __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb9482167 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbf5bb083 iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc013c44e iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc117b9db iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc67c31ed iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd659b1e5 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd6e2c750 iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0d3442b iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe671da72 iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf5aea4a7 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf6a7e8e1 iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x16246823 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x420d897a p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x4663345e p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x98ba4416 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb00ae560 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xcefe0ec4 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xdfba0c27 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf09a8a04 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf7d8da46 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x212f7d00 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x28cc1da1 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2d31e9ef lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x34a3a78a lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4fa8f152 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x64ddbe21 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7ba56cdf __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x802f00fd lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8d12269b lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa86b34dc lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb1293b0d lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc95b70f4 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc9dc3178 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xeb65d6e2 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf9ee6f00 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xff70191a lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x0b61b133 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x22ce5161 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x3872abe3 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x48216a16 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x85138763 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x873f242f lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa25efb16 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 0xd517ce5f __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x000f861e mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x05c57dd6 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x09a47dd2 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x11a68684 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x18897113 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1ed82865 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x28d9117c mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x29f28c3d mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2ad36d88 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4499f3b8 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4d439f18 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6652e92f mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x66aa5948 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x83c06e89 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb4fb8729 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbf8676a4 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc0e2871e mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcf4a5927 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe9fe6359 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf651916b mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0c2f1b6b rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0c5eeb65 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0e12d019 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x10fc8e6b rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x19e88a3b rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1a6bf2c3 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1c561d10 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1c78b03a rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x21d8844b rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3da738b2 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3fc0b303 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x526c0e43 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x54e2b2bd rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x57469624 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5a70a5a7 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5d7e2822 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x61f86d7b rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6337dcd7 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x63405769 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6ba1992d rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x72aaedd3 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x78275785 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8086a561 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x85a11f34 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8ab01612 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8e91a568 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8f054d3f rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x969e5244 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9ec0a79e rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa7d63693 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb16f86ca rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc233eec1 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xca6043a1 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdf878da4 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xeb3e01fb rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xed4e34be rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf43fe9d1 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfa3d4541 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x00d5ccc6 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x12bc83b9 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x43196068 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6c720580 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x700edc65 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x870cc486 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x91d88c50 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xabcfc170 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb48121d6 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xcf1c43f0 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf985f5da rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfc4ab662 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfc91293a rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x015441de rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x050f5e73 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x095856c1 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0b76e89a rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0c1e8349 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1b4de913 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1cfde6a9 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x300c89a9 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x38de034e rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3a395843 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4272b0df rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x45baebe6 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4d78c11c rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4e115a65 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4ff043b7 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x62a83663 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x65813869 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6642f040 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6af66339 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x701562d3 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7036b889 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x738b2f08 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x79d3c10d rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x82b8f019 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x869dd980 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x90ce1ca7 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x93a38bec rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9912c986 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa436bef4 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa4f15f1d rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa7220b2b rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa83b4dc2 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xab384d44 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb11671b5 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb35c24e8 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb4554963 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb4c7e4b1 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb7df83f5 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc0c57431 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcc86bb0b rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xccf6f9a5 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd22139ad rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd893f370 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe7e1d6ba rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf3a35c64 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfebc7a79 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x24f17da9 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x50ae46a7 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x877d58f2 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xc02b87a6 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xcf97b147 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x4af82414 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x603228fd rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x96191b9a rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xf3c9654f rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3cac1226 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x52f3d848 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x54bc54b8 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x63f0428d rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x64601a5f rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x67d266bd rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x722b28c3 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x828582d7 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x89b7d7a5 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9e3b5cc2 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa575e4cf rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb74c5f5e rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd1f7b5e4 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe1e20287 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe63f7a26 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xeb65df2a rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x10431588 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1b5460f0 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x59be164b rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb32d9538 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x19498ba2 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x29f3ad8d rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3176bb3b rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x393838a4 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3b7911e5 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f765abb rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x439fe836 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5378dee1 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x59352867 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x661735e5 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x90b62a8e rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x945fcdd6 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9d711acd rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa47bd33d rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa7d475a3 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb00ec68c rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb517ecd1 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb6df5e5b rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb9793bcb rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbad6b450 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc4ea6222 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcd2d6808 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd1732ff7 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xeb41b78a rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf17c8aa1 rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf716a643 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfa46246b rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x10f17655 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x15a0fe82 rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3741b421 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x52d42fc0 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x551ee7bb rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6ff0a18e rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7294ef05 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x840186a6 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x966f66b3 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa1e978f2 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa2ea73e7 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa5596835 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbd36ddc7 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcb1bb3bf rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcdddd6ed rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcffebc95 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd05e522c rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd532667c rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeace9e0a rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf244c724 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x32817465 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x6f7f4a2c rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8cef7a70 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xa009be7e rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x505b0461 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x59a383b6 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x709d9fee cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x763c9077 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x36e3495d wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x40e1fba9 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xf1171adc wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x00326094 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x042d2e89 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x13c231a9 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x14dabd66 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x23b5b4af wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x24d237f0 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2f970975 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x30a8b80e wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3411ebc1 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x363397c4 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3f6632e5 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x419f02a3 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x55bb5c96 wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5a0f5f8b wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5d3fb497 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x695e628f wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6a6f1de8 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77583e5c wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7767a3e5 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x79b8c9bd wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7adb35e2 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x840ddf5b wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x86644f4a wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x93a1c77e wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x959712d9 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x95ce3953 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x961e47b1 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa7231bc7 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa976b28b wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb0b3651e wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbad7334c wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbe8eb714 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc161fc3d wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc48f18f4 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc7fffbb8 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd2da4f1f wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd31cb1e2 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xda260207 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdde2b823 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe12412c3 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe53bbaa8 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe56c84ef wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xec458a12 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xec918188 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfe633bba wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x5759e4f1 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x65a12300 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x751f9ff7 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xef11de26 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x9e23cfc2 pn533_register_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xbb467c42 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xfccc29b0 pn533_unregister_device +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0376615f st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x12d30ecb st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x15c73dc9 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3eb4cfc5 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x45ef2f35 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4d9a3086 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xbaa93336 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe2678388 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x2a2d3952 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x42681c64 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xfe319369 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x27b49ad8 ntb_transport_register_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 0x5d5430eb 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 0xc9c5d141 ntb_transport_create_queue +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 0x04a5b5f1 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2535f8a6 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2725bbca nvme_requeue_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x28587a0d nvme_init_identify +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x327858b1 nvme_max_retries +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3920de3e nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x39daad43 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4686614e nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x48b8305e nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5c221cd8 nvme_put_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6a03dba0 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6a0e072e nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6cb1b12a nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x90289fce nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa320363d nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa98a2fb0 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaa52884e nvme_start_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xafc2b26e nvme_queue_async_events +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb11b5cef nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc34e8113 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xccf38c12 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd0996e0f nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd5969c2a nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeac2775a nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf958ab24 admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfa2d0fa2 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfab8f168 nvme_queue_scan +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x05a81b5f nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0a84bb58 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x16098e49 nvmf_get_subsysnqn +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1f43dc46 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2e3544f4 nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2e68d563 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4ced7a59 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa766172b nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xea3abdd3 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xeb3df6c7 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3c6e6bc6 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x56340f69 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x65cf796f nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x75e95a9e nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x92988d64 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe938fcee nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xee9b40e0 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4c74992b nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x58cea98c of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x68758fda nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x9532524f devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xaaa558cf nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xadbf437a devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xba7b87f1 nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe18960ba nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe44458c9 of_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe8bbc466 devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0x433e60a1 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0x51612d7a bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0xf4ae51b1 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x41a1b5f1 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xe36a52e1 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xee861b38 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x2f50ac38 reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x3d81dfe7 reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x09086fa3 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x286c4b83 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x2d05fb0c mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb0debb28 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc329c805 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x2ae9c385 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4d235a63 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x62e49c2b wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x9fc6fcb5 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xae122404 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xee036321 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x4887b992 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1166b8b5 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x128064ac cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1968d7f4 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x199da9a5 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2244e313 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x251d6d81 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2af8093e cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2d66e680 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3489ebd1 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x382d1fe3 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x38f4850b cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3958f99f cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4953e0d3 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x57036121 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5ba8671e cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5d1f1ce4 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x661fd545 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x66a0eb59 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6a0a8560 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6ca265d2 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6fb02c4a cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7d14cf78 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7d1bf883 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x80b424c3 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a4d90ca cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c5b9362 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c8a4d1d cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x98188de2 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9930d1b1 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9c421f99 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb38e59cd cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb5d4a178 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb6cdb06c cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb6d71bf5 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbf22f616 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc3ec6ff8 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc89224fa cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcf964c4e cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd818dd3d cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdc5a7552 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe34c21a7 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xea34aa70 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec64e1ea 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 0xfb112667 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfc3e5ea8 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0f481105 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1564947e fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x28d36e7c fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x52762a44 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5c5d4e22 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5ffa0217 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6aa0795e fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7206e3da fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x79e26455 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa30447f5 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xabec19d6 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb8720ccb __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbada1f26 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd8361381 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdea49b31 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfa4d28e1 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1772e819 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1b45f0c8 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x60091228 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9862c3c4 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa4262914 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xbdbf6b12 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd1873e20 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0ba4e57e iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x13778bee iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x17b0eb2d iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x217d51ba iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x298510e3 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x33cb9e3d iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39f7895c iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x41954700 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x44f08a9e iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4a3335af iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4e58107a iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5288862e iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5b7372bb iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5d0a9c67 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5df9738e iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5f3d767c iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x64a10c31 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x73dc364e iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x759285a4 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7774eb6f iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7afea974 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7c08c36b iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x876f4469 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8ce3ecd9 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8e78fa1f iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x974d9bcd iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9e5759ec iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa33aa943 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa37e0079 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa62b5f74 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa62fcd6a __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb2518298 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb331670f iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc7b58889 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcd1d82b8 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcfa81109 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdae9dacc iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdbdc8139 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdf883cf7 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeb846d1b __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf60ee7dc iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0ed35f05 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1f022cc5 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3657f2b9 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3ecff2b4 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4340a53e iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4aa01484 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x70797619 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8758e207 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9397d81c iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc36a2978 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcac17c69 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcc27a25a iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdd8de5f8 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xeebe085b iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf16a3fe6 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf1d3f9ea iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf4f2cfde iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x03a558c7 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x07920b95 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x082eece2 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2078fe58 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2a9c0937 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3012e3c7 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3a81907f sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4ce297f9 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x564e3927 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5ce3605f sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5df30da4 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6b0363c1 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6cf688e9 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x74df7c4b sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x77338acb sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x79fc26ae sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb9764258 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc01219ee sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcb4a3365 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd4285e3f sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd7daaf09 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdcfed99b sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xed7c5136 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf49a5cad sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x123560c4 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15ace931 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1c6b7633 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x249a65e3 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x28bf91ec iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2a014236 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2a8a0d26 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x30a27819 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3377c761 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3a03be11 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3e0db45b iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x417064e6 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4bdeb1b6 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x51587cc3 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x53f81be6 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x54c405fd iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5c1036da iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x64c38e81 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x66917bc6 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6d16da38 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f3cc2bd iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x70b6572a iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x999d07cf iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9c73877d iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9d8e980d iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xacbc63b2 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3196bef iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb985e3ff iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc4fc323a iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc78683f7 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcc22abe7 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcd7522d2 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd075d3ba iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd0c7cc7b iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd3a9bc12 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd3dd33ef iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd5b748c4 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xda8df0ce iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xddf67b65 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x8f2a5152 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xb04f52e7 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xdc24bbd0 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xea6e03c8 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x9f28fa3e 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 0x67db2d15 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6e0a158a srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x8bfa0e50 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xcc533891 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd3cc1cd6 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf74e57bc srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x24944678 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x50f3b1a1 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xa34a1cb7 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xa81c8d29 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xb9b7451d ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xd4aa42ac ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xfbba3950 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x06b3cad3 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x32734761 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x90e9ac1f ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xad82b702 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb2a80278 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xcf434f5d ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xd159cdb7 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x07fad1f8 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x1869b3ef spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa99d32b3 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xac575780 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc70dcfcd spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x2cb9d4a0 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x2e039a86 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x5dbc3e95 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xea234aff dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x4f73f1b5 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x87e836b9 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x9d067ee5 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x010945e8 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x06541731 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0dca4494 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2069bcdb spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x28a83e25 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2c798088 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5e0bd7df spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5f188dfe spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x63b3cb5a spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x87bee9e9 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb760ad82 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbea672d5 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc220d7c1 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdb107d1e spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe07ad125 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe2e13b6f spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xea4fef24 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf727fb01 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x9b65073e ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x04c048a5 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1e1cd547 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1f19bbb4 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21889115 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x227ab7a3 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x313cd418 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x360b5620 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3cb02399 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3da55cbf comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3eba687d comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x42c7e699 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4407b72e comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4c0879f3 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6a15b875 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x73f2035a comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x76a49b5a comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x77476dfe comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7a196669 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7df2e626 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x81002daa comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8e28639a comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9a93f1f2 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb545b153 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbc2a62cb comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcaf5c65f comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd03f5ca8 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe0115874 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe37fc217 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe42a9d66 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe7cc14e1 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xed3fab27 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xed75facb comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xefd57e0b comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfc6144ee comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xff104c9b comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x161bdde7 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x30a50ce3 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x5332d27f comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x910230d9 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x9bb99fce comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xc72218d2 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xccebbb26 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xf31f28de comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x45c93df0 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x6d154658 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xb76e3f75 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xb80d86e7 comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xd954aa1d comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xf19a4c56 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xf3c3e04b comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x0f2e45dd comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x1c7c5d4b comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x2c7fed95 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xd3fc7995 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xd48870c7 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xf0150fb3 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x1b333910 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xd198b4eb amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xe70d2ffa amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x0fb4eb27 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x18e28c1f comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1ae9811b comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2b1064df comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7fb89fcb comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x843878d2 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x86cc4a7c comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x87d499d1 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x90b055bb comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc40bbcc9 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc55fc3c8 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc9f2346c comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xdd89a1b2 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xdfcd30f5 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x1c8e3c21 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x616a18b9 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x8ff88e63 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x7f481f49 comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x03916f59 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x05bb8141 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x06a70896 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1aa8b7ea mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x28b21e8f mite_sync_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x410bdd31 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4b36fefc mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5b28d8ea mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6708178d mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9712d628 mite_request_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9c9e9a22 mite_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9db120a0 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb5711ac1 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb7d99b3a mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd68992aa mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xec00aa02 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf617fb5b mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xd4a248d4 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xdbd0c41b labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x437815e4 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x7cf5ec2c labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xcd67aa26 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xce6bcadc labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xd79052a4 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x5911ee32 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x61961825 ni_tio_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x74a32945 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x7b7a3806 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x8104f178 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x8e4ed883 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xac54721e ni_tio_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc243f95e ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc2467a3c ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xcae2f50f ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xf4aa74bb ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xf7798bc9 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x211c16a5 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x23e1e565 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x2649b779 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x99e1a8b7 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xe8df8f17 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xf953e0e7 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x155854eb comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x4c450650 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x68e549da comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x6cf1317b comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x7a67a3a5 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x7fb7474a comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x9cd5426d comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0x338fc525 ad7606_probe +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0x5ff427ad ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0xcd26a76b ad7606_remove +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x038c2950 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/lustre/lnet/libcfs/libcfs 0x44388c65 lustre_insert_debugfs +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x69fbc316 ldebugfs_add_simple +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x797ab514 ldebugfs_seq_create +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xa6183b4b lustre_kobj +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xb045078c ldebugfs_register +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xb1aace93 ldebugfs_remove +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xb913613c debugfs_lustre_root +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xbc845900 ldebugfs_obd_seq_create +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xcd77bb5a lprocfs_obd_setup +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xd73c8e45 ldebugfs_add_vars +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xd82fff89 ldebugfs_register_stats +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xd87f08eb lprocfs_obd_cleanup +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xfa156aaa lustre_sysfs_ops +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x6ffab92c cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x7648f0f1 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x806a1b70 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xa2afa392 cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xd2d3f849 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xe7a7cbf2 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xeacb83a9 cec_received_msg +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xf4163dda cec_transmit_done +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xfee82d4f cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x2187c9d8 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x25a95fcd most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x2924c23f most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x46f0b9ec most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x515abf81 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x5195680f most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x777206e4 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x7ec761c0 most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x8342f112 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x90eeaf50 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x96e26039 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf04646fe channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x07b8c9ed spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ef1d765 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1c4f10c1 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x31623db5 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x45c3af66 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x7c1ddca7 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8bca5bc0 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xa7d28dfa spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb35aaab9 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbf2d9e13 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd25835ab synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd27c1616 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x2a0be810 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x2d243877 wilc_netdev_init +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x35dad0d9 wilc_chip_sleep_manually +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x4c7b2ee9 chip_wakeup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x60d29a23 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x6bdcf879 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x76838e84 WILC_DEBUG_LEVEL +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x80d32df3 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xef7bb16a wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x1c4a10bc __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x6eda7054 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xfc278508 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x9ccf5e1c usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xa7e25e9b usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x123d7138 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x319f8d5b ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x298123c2 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xb89c3359 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xbdc7345a imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6b0c52e4 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7759ccc7 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa33a6a47 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xdc13e930 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe244b085 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe81e28a1 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2e03f5d0 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4197ef74 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x433f0597 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4948718e gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4bb32746 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x60c81906 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x969f5e59 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa36ea43a gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbdeaa9ee gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc31c6c37 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc8abd03f gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcacaba3e gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd73aadfa gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xef8c719a gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf238ee14 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x11c73348 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd3ec9bf6 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x4a79ad79 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xf9774e2c ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xfe81bb1c ffs_lock +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 0x1b1cc3af store_cdrom_address +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 0x23a474ee 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 0x2c9429f6 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_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 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x440b4755 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4bcb22c4 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns +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 0x5676337c fsg_store_cdrom +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 0x70b7315a fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x74614fa2 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7a44a6c2 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7bbedffb fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7c481d19 fsg_store_file +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 0x7f840ad9 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x822e4371 fsg_show_removable +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 0x987bc0cf fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put +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 0xa46e6443 fsg_common_get +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 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 0xc1871fd9 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd636a89f fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe6373061 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_rndis 0x11e3f0ee rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x17829348 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x22050024 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2da7e323 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2e62c8c5 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x371395a6 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3ea8a5aa rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5a4d03eb rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5c526e59 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6661c688 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x73927b22 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcf90faf3 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd0ad0cc9 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdcd6f5b1 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xef362a05 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0288b9e0 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x04d96867 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0a381cc6 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0bbcdefd usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0d822686 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x10db6833 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1a725157 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x37d3f209 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x44309887 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4f9b4bb9 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5972152b usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5da84794 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x613ddf07 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6b3c4773 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6bf3809a usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x71693081 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x80a46af7 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x816fe82a usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8a123270 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8e165750 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x91b09abe usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x96228aed usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa1c31e9b usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb115ddc9 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb9fdf9f1 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbc3ed638 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdae6d1d1 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdb2d4270 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe397ef61 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe3b291e2 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x009d1d8d usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x07957ad5 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x08cffdb5 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0c900b81 usb_ep_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x14c8bb07 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x165ad227 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1a69a2d4 usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1b57ee7a usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2e9029b3 usb_ep_fifo_flush +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2fedb2ff usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3a53b0d2 usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3c01002c usb_ep_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3cd25b3f usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3eab5251 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x454fd432 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5162f30b usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x663160c5 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x701fe948 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x88b57387 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x98ec1a93 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa8ee7277 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaa4a5417 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb374b839 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb6fa8d98 usb_ep_fifo_status +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc60e86ec usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc7ba2b71 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xce3d337b usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd0e020c4 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd0fb5b90 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd16b6bce usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd49bfbe7 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd67d8fa1 usb_ep_set_wedge +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd8d32b10 usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdbe1001b usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf0626f4f usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf2d7ddd4 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf92207f7 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x093eb350 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xb9a37734 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x049231ee usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x099f090e ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x221c2637 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x254b6b2b usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x25f53818 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4ea44b53 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x56e843c5 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8ed3abcf usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa8b314ae usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x072417dc musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x6f8a8ad1 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x8d71c56d usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x9b805e8d usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xe3fbedd7 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xe887fb20 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xccb3194a isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x4a078ae5 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x143c0d00 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1acbbd74 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2c353614 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4a30cf03 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x504835a1 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x505e74e6 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5aa79197 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6746c031 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7b3ecef8 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7ea5084e usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9d5fbfb5 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xacd1461e usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xae503049 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xae8b152b usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xaed4900e usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd25114a9 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd648dc7c usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd9ceab90 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe1a4f0ea usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe226c1d4 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xeec6dbb7 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0963b3e9 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x135d5187 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x19505e96 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x40f08616 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x43444230 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x61ff86ff usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x64dca984 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7cfcb7c8 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x85f451da usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x95fe303c usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9bfac984 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9d86cf00 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa0472f6a usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xaa312f8e usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xaf6ed215 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbe8aa3bb usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbecdbfa8 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe7f0150d fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xec474f1b usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf0ff7caf usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf218db82 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf492d334 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf6bf41d9 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfe337d5e usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x022b0a9b usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x14e9ab32 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x15db7401 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x165675d1 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x52376f1e usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5fa3d432 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x63541157 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6551c64c usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6aa9f256 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9cde6463 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdd4ab75d usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe05d4b29 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xea68b7b9 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x29f98976 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x452d4a73 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x474faa8d rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x7ea0e25b wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb6c9c525 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc732a1a8 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xeb97aaa5 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x1529a198 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3b26ab0e wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x49d25e0d wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4bd5c2ce wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x529f4252 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x63ae510a wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8f359b79 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9a016295 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9c7a9d71 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbdea5286 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc5b04824 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xdc610a8e __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf07612c4 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf4b43401 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x61762840 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x94b1dce5 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xa2a88eb8 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x11cbf35b umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x1cd2cb64 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x4aabadca umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x51802cc0 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x70421ba8 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x830bd896 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xee3bc260 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xf4157e47 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0395ce2f uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1df70d84 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x20653b02 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x20ad7622 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2268d73e uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2436fc27 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2c906c7f uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x372edd82 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x39232939 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3a60391c uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4a20268b uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4c25cc2e uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x579fed8c uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5a432a93 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x654b3186 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6baba8d9 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x73be99f3 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x82ef7e17 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x90a9c5de uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9656b6cb uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa4a2ad91 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa4f8e74a uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa7ad290f uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xab81363a uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbfa0bebd uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbff8aaa9 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc12e7894 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc1cde480 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc2a85060 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc2f23782 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc5c621cb uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc8b60d69 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdaf5633b uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdf40f4aa uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe6ad0c64 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xecb71ea6 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfce14750 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x08abb418 whci_wait_for +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0ce64ecd vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x10db0b85 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1e64f25f vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1f3a5ce4 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x29bcc401 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2a54bc88 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2c6a01d3 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2ee1d1e9 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2fa35562 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x327ad3fa vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3831969b vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4c66a584 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cbdb42d vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x544c9d2a vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5572c645 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x58dad660 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x59dee93c vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x60fb609e vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x61d1e50f vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x79256d51 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7a73c1f7 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7ca928bb vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8475d9ca vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x865bddb8 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x87e3f0be vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa605f9b1 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0ee94c2 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb5bd66c9 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbd07cff7 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbe40d9aa vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xca33fca9 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xca49cbe8 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcd5b607d vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd45a4214 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xda1775e9 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdb96e983 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xec542d4e vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf5a8ec16 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf845bfc9 vq_iotlb_prefetch +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x079dbb9e ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x1035526d ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x16ff3c1b ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2ff5cdc2 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x931767bd ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb462bac3 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf87a4e78 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x1242194c auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x234c08c0 auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x3b8fe4ec auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x66d28d05 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x76e8e7f2 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x7b8e01b3 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x897efa3a auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x8ecace1b auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xbef5b917 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xc2c36287 auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xe8044086 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x5a189f2f sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xc0cf0a66 sis_free_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x57f78fc8 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x693ada9a w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6983cfe5 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x69fbf603 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8f31f87f w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa2ce7f64 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb342ff8e w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd97c4f3d w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xe8abd735 w1_write_block +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8e92a924 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb4c0832f dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xf6fd797a dlm_posix_get +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x09c5c3e8 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x58c3844d nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x88b747dd nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8a52c07a nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x92cc694f nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xca79e974 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe78d0ee7 lockd_up +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0188009c nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04266d78 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05b27a53 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07a7abb8 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08ff9142 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0906b56d nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09adc69a nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b8126c4 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0cd1dbfe nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d0f4622 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x121f42c6 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13830335 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16fd5287 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17268a37 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19751769 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1979c901 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x197e1077 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1dfb0970 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e1d9d8e nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20bd0a3a nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x219ca049 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23ec9881 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26515411 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x274ed1bc nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d553a39 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ff6b7bf nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30320eb1 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3098b4f6 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3299ba3f __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34bac6d6 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3510b421 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35273a92 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x376528eb nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a513579 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b126485 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c4da9f3 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d643aed nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ec08477 nfs_commit_inode +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 0x40dfead2 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42b7dc9d get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46daa3a9 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48464863 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bc58fc9 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fd11ff1 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50e5f86c nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51c1d9f5 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5260f3e2 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x538c9c97 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x541dfb98 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x558668a8 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a17767b nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a5f1f33 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a8c635c nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b7c57cb nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5cf864f7 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f387c89 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f96d525 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6230edb8 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6327343f nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65189035 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67504cd1 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a02acca nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a08b393 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a3272e6 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81441bf9 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x826ffbdc nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x831768e7 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83e331b1 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84b95e96 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87553969 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89f8dfce nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c4fdf81 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f25efcc nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90cccb4b nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92f7bb26 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95606070 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x966af6d6 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x973acaff nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9acc4594 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b6c4514 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b79c16b nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d80d807 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e1d6953 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa335c3b4 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4ed0164 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6b79c6c nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7dcf1e7 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8431317 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa1e1a9d nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa965e60 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac343123 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac717bd8 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac773c88 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xacff62dd nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad92540f nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae3c96ed nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaed2b1dc unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb067cc8d nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb19d3828 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb312ab6b nfs_commit_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb53a8d69 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6fdcf5e nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbcf5920 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd6a2c4a nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0fefef6 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc30d75d6 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1a055bb nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd248afd0 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd44577c4 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd727ca50 nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8c12f6b nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9e0d45f nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbacf616 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbc934e6 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf297406 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe09dfd66 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2225eae nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe267b41a nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe295f4c2 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9cefa8a nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb2d537a nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0b27eca nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf12fb031 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf685d28c nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6d67778 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf98c8782 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcdf3c6c nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfdf2b79f nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xaa17cf9d nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x015e5d1e nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x041968c9 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x092b7783 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c784b88 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x128d2850 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x14fa53d0 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x232ba901 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3473816a pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4065e52e pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4fa3df54 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50a4aee4 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x530ce245 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59d86a44 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59f61b14 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b25da42 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5dcbc6e0 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6632f6df nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69afa778 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7378395c nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x741808df nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x746ec014 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7557e257 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x789cbea7 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8107c578 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81a49c51 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8379058c pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8820440e pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x89d25d94 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ab40b56 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b50cf99 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94c5c2dc nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9681152c pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98caa774 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98f55073 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4389902 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa7fd2c06 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8b49543 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9e956bb pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaa572e8d nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae0ebe8f _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae6aa96b nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf08e98b nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf9ba945 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb20755e5 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2b7963c nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc156b04c pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc15d1d54 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc34154b5 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7f2e806 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc90b01fb pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd70203a6 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd912a359 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb7778a7 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde4c3e09 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5392016 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xedd35526 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee3935d9 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee874711 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf06dd5cf pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf0d43f03 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfcc0e711 nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x68a9db2b locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xa6665e00 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xdbeb3eca opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x41a8562e nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x7b158835 nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0c4f5433 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +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 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x22d367a1 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x384ee1d8 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4c4728be o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x651e285d o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x99c6d1af o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd0cb5447 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +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/dlm/ocfs2_dlm 0x08aa5d85 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x501b5d85 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5511ff5d dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x77c58228 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 0x8d4f98b2 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 0xec7d9b85 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x2201fde8 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x29ac1c8d ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc6849ca2 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9f7bd02 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x1e74c5d9 _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online +EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc712060a _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xeab7f8b2 torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x9ead17a7 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xa554617b 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 lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57861324 base_inv_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57d39367 base_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x882ce5fc base_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x9e0112d0 base_inv_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xaedfbb15 base_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xc8fca8a6 base_inv_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xd11741a1 base_inv_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xe3d900b5 base_old_false_key +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x255751a3 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x80935e90 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x023e9cf1 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x4b5f2d5c garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x71bad3c3 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xcc25a943 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xcf8136b8 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xe12f19eb garp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x3501dce2 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x66ed5da5 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x785b2749 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x86dd2935 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xc6a2443d mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xf954e25a mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/stp 0xcac8030a stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xe136d928 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x0c1ed9b5 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x51e89f0b 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 0x92304734 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 0x2a7a6923 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2ed82cf0 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5a0c00f6 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x87f8b656 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa832990c l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc33a7d64 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe49223e9 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe6d994b2 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0d66cd8e br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2a81d36e nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x385d25e8 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3bfa7677 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x56c20a53 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8ebb5514 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb53d16bd br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe3cade2f br_forward +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x0c66e409 nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x7a841d0d nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/core/devlink 0x04e68c59 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL net/core/devlink 0x0b298d24 devlink_register +EXPORT_SYMBOL_GPL net/core/devlink 0x40f8fcb2 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL net/core/devlink 0x437f417d devlink_alloc +EXPORT_SYMBOL_GPL net/core/devlink 0x4a591750 devlink_free +EXPORT_SYMBOL_GPL net/core/devlink 0x725acf2f devlink_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0xa8454792 devlink_port_split_set +EXPORT_SYMBOL_GPL net/core/devlink 0xb5f9d7c5 devlink_port_type_clear +EXPORT_SYMBOL_GPL net/core/devlink 0xc975b25e devlink_port_register +EXPORT_SYMBOL_GPL net/core/devlink 0xcddcc1c3 devlink_port_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0xce2b8308 devlink_sb_register +EXPORT_SYMBOL_GPL net/core/devlink 0xe14902d5 devlink_sb_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0xe3d2512a devlink_port_type_eth_set +EXPORT_SYMBOL_GPL net/dccp/dccp 0x00af3ee4 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0b8a525c dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x162e741b dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x16404920 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1828c602 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2293b52b dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x296ed82e dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2b7c0e15 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2b87af5b dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x450e673e dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e173adf dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59c6024e dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5aa01528 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5e51ad12 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x754d8144 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8c269ee1 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x91fd63f9 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x98b73fc4 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa10ec51c dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa36c7918 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaa1af1ee dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaab1562e dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaf044b20 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbaa37749 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0b7b890 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc3cf28a4 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcc40555c dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xce52d3d2 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd3f6a990 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd4719bdb dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdced17cb dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe23cb860 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xea2fc67a dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf7aa7d95 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x42e602c6 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x53ef6975 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xaf498cbe dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb6343bd8 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb98c74c3 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xbfbc4c11 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x035a1238 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xacf5b7f8 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xbf340577 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc1ee8232 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd58dfa29 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ipv4/gre 0x0ac0ee43 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x15ec6ee7 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0bc25bdd inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2e2625e4 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x33681eb2 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x343dffc2 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x420f0f8e inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9d9fe7da inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xcebda3f1 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd2841407 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfdb5fc96 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xbd98f89a gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x010b5fed ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x01338a57 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x21e86116 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2649722d ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4f45042f ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x58f1b8c1 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5de6488f ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6ac74f19 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa3a2bd70 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xab3e8fc6 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd7891a60 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xec08104a ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xeeb4a85d ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf398d0d3 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf5bb1d46 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x38c817c0 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x0cadfd65 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x22a45126 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x2908f8b3 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x2a14eb5d nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x3d4438b7 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x9c17f18e nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xaee11882 nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x90f28627 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x143e6233 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2969b9b6 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9094d501 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xcce269e1 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xef46fcc0 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x96974cff nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_nv 0x355ed20c tcpnv_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0724c4f6 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x702263fb tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8ccef579 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb73e8feb tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc8ca70ed tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0b6c72c3 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2255b11d udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x3db11300 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x775dc57d udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7b20d76d setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8ba99a58 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb98fa3bf udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x2a2eeefb ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa9a38416 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc84a2aa5 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x35b3ebe6 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xc5afb7ec udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xca445288 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x9a5170cb nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xd77640a7 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x239da0ca nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x2c369e1e nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x6974968d nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xe0867569 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xf1c8bc48 nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x67b9d3dc nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x04c2de0f nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x32b502e3 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x93af833f nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc499ba8b nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf0bcbb98 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xc3492a50 nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2de4bf02 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x33fffab4 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x40cb11ad l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x50fa1c9e l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x58e24779 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5985b7f6 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5fb04916 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x69bd2fd2 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x768f98ba l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x89c8e01e l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x94b01296 l2tp_session_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb685e00c l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbbbaa318 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc949e8cd l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd5101b96 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xeeb63b74 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xa153a1ef l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x082aa30f ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1b895538 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x301516f5 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x472f6f4e ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x498c3d68 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5080544a ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x527cd415 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x72b1d4f9 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x820d30a5 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8358fd92 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x861ab48a ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x93c7be8a ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x990dcb7e ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9a5c7e59 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9b5eaa6a ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa5937333 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbe7601ab ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xec2f7955 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9fa191d ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x538529ef mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x73ec040f nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa7c5cfa2 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd52b4a0c mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x187c7972 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x260b8799 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2bdec0b9 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2dd04692 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2f9078ae ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x581e6f76 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x77400a12 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7996ea3b ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7eb3906a ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8c93eb7a ip_set_name_byindex +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 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa38d3c10 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc477ab72 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd5ffefe3 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdaeabec9 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe02391d1 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf69f815d ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9dd0e392 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa995a0cb ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc68b8944 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xebb1f1a6 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05ccbbfa nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06b0dc2c nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x090cc93a nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0affb61f nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c02b3af nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ef03ee1 nf_conntrack_get_ht +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1737eb50 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a2e6091 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d01a5d7 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x229e2717 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2652c568 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2886470f nf_conntrack_l3proto_generic +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 0x2d1851ea nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x321d84bb nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x39c5701c nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b78364a nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48e8275f nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48f583e8 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b5cc931 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c3beae9 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f280668 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5274e0d5 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5548c279 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x560c7646 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5632ba5c nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57374101 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57849a5a nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59588fd0 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c0a4de4 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62f27625 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x677ea0fb nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68849b66 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x690ac876 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d6ba70f nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6daeece4 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e3d5f3b nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7088e24d nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x71667bc6 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x796aabb3 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7989f753 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7e3306ff nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ff9d1ff __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x907f340c nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x932530b0 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93943405 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x956fe023 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97c2fa83 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa38485d2 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa45c2d79 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5553dbe nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6fe7517 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa9d50bb nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1c7e2b9 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba11bc0b nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb81a724 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1d8b464 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2096cd3 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc66cedb1 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc7db0688 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc84763f5 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcaede860 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcbdee5c6 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xccd81d1f nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xceb42dd3 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcfe57372 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3d73b81 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd47de8a6 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5e93f58 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd7742297 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9c06f16 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdcd1a235 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe13a76dd nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe56562a0 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe65878e7 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6efd0ee __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xecc5f942 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee93e6d3 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeebad536 nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeffca5bb nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb0cec31 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfeaec127 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff36f897 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xf50a8150 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x7f0b4348 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x9e17ddb7 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x16bf995c set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2d9ec7c0 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4728689b set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5f5b7dc8 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x66f45d25 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xace17337 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd52a4510 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd71bf32d nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe4423382 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe4b2db51 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x728d8797 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x30a61b1f nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x4bd9f49c nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x8a9d5015 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xdb9c3665 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xd2504de9 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xe9cb8dc2 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x161a367c ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2023b19f ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2315ce5b ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x47f2ead9 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5089b853 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x62339e00 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfb1a7e1f nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xf0d847ba nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x46959945 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x4e51d093 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x149a9594 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x3458d9f3 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x41d53341 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xf37039bd nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1622f88b nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x486682b1 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6712e69b nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8fa51d9f __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa4592fd6 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xae966a6c nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd7e074e1 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe795a489 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe890b55c nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x02f33f37 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x6d747c6b nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x074d1e0b synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5f339439 synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdd69171e synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06555b4a nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1eb81b91 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x35a5dc7d nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x39aecc9d nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x44f0e048 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x475d9b60 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4c048927 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x524e05df nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5c797afe nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x66194bab nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6f328ffa nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x858def3b nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9a23eeaf nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb5bc8a21 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbbfa7286 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd4f9d8fb nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd7277d2d nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe48adc81 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfad092da nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xffc139da nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1cd22efe nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x279624fc nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x52d8b8ec nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6a320478 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x93b39cce nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf099ce4d nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x58932828 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x87de9cf5 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x91ce1d5c nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x81452279 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x396280b8 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x67d33764 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x89b2acd5 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x0dc497e1 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x34573990 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x3734760e nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x3c858510 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x7bd27634 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x7f7c98ab nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x858b2d9f nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x8aed0f21 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x20bfe80e nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x3e47a136 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x9625ceed nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x7a99f0a8 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x853b94de nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xfebfcbc0 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1ce0cce0 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x25b6fe36 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4355a59f xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x45db00eb xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4fb42633 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5d4331fa xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x674c7e48 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823eedfe xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ae62bb0 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8e5b1dbc xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x908283d7 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb05121aa xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe41cdedb xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x00204983 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x482b6a12 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x155d4d54 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x23d02637 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x2848415e nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x0dd5abc7 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x14aa2a17 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xe3010762 nci_uart_set_config +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x04a1ff7a ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x21d6a6dd ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x456bc776 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x55924245 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x579141bd ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6e006759 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa85c41e8 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xdd79270c ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xed818b14 ovs_netdev_link +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x00fc339f rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x02c9b893 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x121ce6c9 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x264426f1 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3508049c rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x44eef5e5 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x6ac3863a rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x6cb66d96 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x77cbdf1f rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x803ad707 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x91d3a593 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x920efd3d rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x9476c4f1 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x94a0147e rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x951e1e29 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xa5e86e18 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xaecd8e68 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xb34783c7 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xb64c4c12 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xba35b062 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xcf94a984 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xd2095a7f rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xd935a11d rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xd97c030a rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xdcaab89b rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xeb0af01c rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xf70dd0e2 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xf9dc4292 rds_message_unmapped +EXPORT_SYMBOL_GPL net/sched/act_ife 0x05e7367b ife_get_meta_u32 +EXPORT_SYMBOL_GPL net/sched/act_ife 0x1149464e ife_encode_meta_u32 +EXPORT_SYMBOL_GPL net/sched/act_ife 0x1eb93bcb unregister_ife_op +EXPORT_SYMBOL_GPL net/sched/act_ife 0x5c9b0808 ife_check_meta_u32 +EXPORT_SYMBOL_GPL net/sched/act_ife 0x78f9e296 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/sched/act_ife 0x7e02eb3d ife_alloc_meta_u32 +EXPORT_SYMBOL_GPL net/sched/act_ife 0x956a6d1a ife_get_meta_u16 +EXPORT_SYMBOL_GPL net/sched/act_ife 0xc9430afd register_ife_op +EXPORT_SYMBOL_GPL net/sched/act_ife 0xd7a9660c ife_validate_meta_u32 +EXPORT_SYMBOL_GPL net/sched/act_ife 0xe09e0711 ife_alloc_meta_u16 +EXPORT_SYMBOL_GPL net/sched/act_ife 0xf40f1d62 ife_validate_meta_u16 +EXPORT_SYMBOL_GPL net/sched/act_ife 0xf52ebbf3 ife_release_meta_gen +EXPORT_SYMBOL_GPL net/sctp/sctp 0x1e600fa6 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x9013bb57 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xb0d640d2 sctp_for_each_transport +EXPORT_SYMBOL_GPL net/sctp/sctp 0xcaa0246f sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x1659a1e0 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xaae39912 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xfa07d449 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x013c8732 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x020ee4e4 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02a0ac52 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0551e871 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05fdd153 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07396209 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09293aa4 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a807f74 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b81ebd2 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bc8d30e xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bdf4af3 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bf01a2a cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c70b082 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x106275ea write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x108aaa36 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10d5bed5 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1106b445 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x117cdc11 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x146243a1 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14856f03 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1523fb81 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x159744ae rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18c126ce rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a49867b svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ac297ec rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b653ed1 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c21692c xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c8716fd svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cfcbecb rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e56f96e sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f185cbf rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21a64893 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2281a14d xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2289ad47 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2456cbd5 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x269a31a4 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27f3c19b xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c24f816 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e4fdee1 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e8a4226 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x320d418b rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3683a6aa rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x374acdf2 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38fa533b rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39bc4c63 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ab943e8 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c41332c rpc_cap_max_reconnect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f61fb4e svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42331fd1 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44ba45c0 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4523ee97 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4577dd4b rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45d2f385 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4614e420 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x463c7414 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46ba8199 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x470ca1fc read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4772a316 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49d0b8ac rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a0092ee rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a073658 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b4acaef svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ce5988c xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ce72813 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8a1857 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f8c07ac rpc_lookup_generic_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5508bec6 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56f78dd6 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b275d2b rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cd738f7 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cefcac7 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d47ea3f xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d597253 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x611e89ad svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x623fba4f svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62587728 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62aa7f80 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62c01af6 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x633081fb rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6482330a sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64828c38 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69c15471 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a1b8e1c rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a334aaa svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b4ce6e8 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ba6944c xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f089e07 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70b9320f rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73606092 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x741353d3 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7475a6eb sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79ac8cf5 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79ddeb49 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79e2e6fa xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b146506 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c459f98 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e42faf9 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e600570 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f540b0d xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81640c17 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81e76644 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81fd7aba svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8307131b rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83b8d0ab xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x867ee89a xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8697278f cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86f7f2b0 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x892f9e76 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89923e47 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91316841 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x918d5b61 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92923b9d rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x974c5c70 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98e76613 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9aaa2b62 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ceb4c69 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f55da47 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa45cd9fc rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa63795d2 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa66eea72 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6e6aef3 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9242f0f svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaaa5733b rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab71cae6 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac46ef9b xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac78b708 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad4118c3 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xada59fa0 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadb1bce7 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadd2d320 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf8b2d60 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafd93e4a put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb256e9fc rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2db3eee rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3d12d4b xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb586796b xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb589a81c rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb789a84c rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba3b0f98 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba3b85de rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbabbcd1 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbde6489f xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf149fde svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf61fb30 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfada68e auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfd4bbc8 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc05151d3 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc069f161 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7d2d51d rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9b2beb2 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca61a466 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb15449b xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb6062db sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc40d45b __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc884239 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd294b13 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce11d6dd xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf683fb5 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf725b5c xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfacb6ef xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1f3cd16 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2cf234f svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd30b5a31 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3c6edcd xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9a0ee26 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdaf86192 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc52bac2 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcfaee09 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd00919f svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd0a46f4 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd50bc67 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdea3f8a2 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdea4fc5e svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdec35f09 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf2f0fd2 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf72e701 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf77110c rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1b85893 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe22af6e3 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe31b7291 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe389c693 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3922d36 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3bfed12 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe47b3d04 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4e1a323 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe64fde49 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe787edde rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8d9e145 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb0e1cfb svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedb70752 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee0cfbee xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee862e9d rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef17d61f svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef4c4a5a unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf091e1b8 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1457558 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf249169c xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf59a9141 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5de5b7b svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7545d3d rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf96b6832 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfca9cdb8 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd79f364 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe406fa4 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff2a388a rpc_localaddr +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x01b54bd5 virtio_transport_set_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x01e9e00e virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0330dbc6 virtio_transport_get_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x07c000f3 virtio_transport_set_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x07d53746 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x148b807f virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x15b096ca virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1b49f2c7 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1ca80d98 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1cffb454 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x22f4a7ec virtio_transport_alloc_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x24f542a9 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x260c939e virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x26d93cc9 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2be6aa6b virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2cb469d1 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2d2898b9 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3353f660 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3363053e virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x38c2321e virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3dcef68b virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x52a0dea1 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6195a5d9 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x61a4a4e9 virtio_transport_get_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7aa6850f virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x80d8a35b virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x94078ff6 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x98d42558 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa6a6708f virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xba3163ad virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcd69ecf4 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd127c7df virtio_transport_get_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd1a054c4 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd8351bbb virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe16ca3f8 virtio_transport_stream_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe9252492 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xec7da512 virtio_transport_set_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xecc32408 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0153b59a vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x227baa90 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2b546ab3 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2f65da33 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x301a7f56 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3fd48f11 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x42123608 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x486b1d8a vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x776a19c3 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa1f4b299 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa5e1ac3c vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc193890f vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc7d140fb vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcd44451b vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd67ad8de vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work +EXPORT_SYMBOL_GPL net/wimax/wimax 0x05b47584 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x0cd28a05 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x20290184 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x355fd0e8 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x48ea320c wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5390c2c9 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x55c85c7b wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x6fa22c89 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x7db4eada wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x84220b2e wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x97010c5f wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa34bd324 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa4fe9e6f wimax_state_change +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0bff0afd cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1e477803 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x588f0900 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5d06722f cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x63c036b9 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x67283987 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6ba62286 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6f96109b cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa282c341 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb9005fe9 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb97e21ac cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc4777e8b cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc9744302 cfg80211_wext_siwmode +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 0x3bf471d7 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x15bdca69 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x4856c7a3 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb4f18789 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xd9b1fa11 ipcomp_input +EXPORT_SYMBOL_GPL sound/ac97_bus 0xb56aab33 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x14d955bf snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xde1d1e2c __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd 0x22cf2bc1 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x38be756e snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x81bab415 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x97ef048b snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xab6c8541 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xd88aa237 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0xf22e7767 snd_ctl_activate_id +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 0x0ccc5b3b snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0d7dc91c snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x30be35fc snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7537fd76 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7e5db0a3 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x924c4833 snd_pcm_add_chmap_ctls +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 0xc6b63ae5 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd8da24d1 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe5e8e7c5 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3e57ef7d snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x47a3cf4e snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x793e7eff snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x88c2cf5d snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb00b6ef8 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xbe103827 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe211fe54 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe2853ae0 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe8d245d3 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf1c9f6b8 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfb33031b snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x07180dff amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x265a5931 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5ab6c512 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x646cf653 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x75fa38bf amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf3b96788 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf712fa9f amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05369ba5 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x08678242 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0896ccb3 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x089ad0b5 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f2d763b snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12e055cb snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1406a025 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x16ceada6 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1700617e snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x172661d3 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17adfa4d snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x183c4e73 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2034b3e3 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22bb479a snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2581ed39 snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2d2c1fff snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3780b50a snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x405c308c snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x46b3246d snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a829744 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54b8caa0 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x57c36db8 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c6ad881 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d6b78e8 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62714489 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x63771747 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x640128cc snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6594530a snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x65a18dc0 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x66dddda2 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71f30bdd snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x724a4676 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74047d84 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74ffedfd snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x765cb87a snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x79f500c5 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ca62ae4 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7f7dfdc3 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x826cb07e snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x82cd45e8 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8690895a snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88f6eb3e snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x89d3b327 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e1dac35 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x960176ed snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9665f520 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x96c77a9b snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9758038f snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x98009b51 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x99894d35 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x99d9b81d snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9b965b78 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f2142c5 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa001a1e5 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa1fe0569 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa92c59c3 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaae16eba snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb8b01747 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd3528d0 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd9c1389 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbfa0f91d snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc0c90df4 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc3ccefcb snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4522351 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd5e20aa8 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd6d1396d snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc4ec9d3 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf6cc4f2 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdfa48ff1 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe161a813 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea12b16e snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf1192270 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf1e5903f snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa25b040 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xffc3da2f snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0a5d9640 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4d6bcf2b snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x76359461 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xba94b3b0 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd9344aaf snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xefdfe636 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01c09240 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01dcc55b snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04849782 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x06332c8f azx_init_streams +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 0x07e409b2 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b791cce snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c5f8736 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e0f7be5 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e5488ac snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x110a2c88 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11539af7 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1254b4db snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1258b624 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12a10a7d snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x130ecff3 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15323aa3 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17f28248 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18cc6d3c snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x193f2090 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d59ed9d azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f97513a __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20ee5c80 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2149d74f snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x246f4ddc snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a0c15fe azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a636601 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b3f6bfb snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ba142e1 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ec84a45 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f59d75f snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30adf3fb azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33c1023d snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33ef87cf is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37278c24 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3910f1b0 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a44edde snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3cd37472 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d863d7f snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41895c6a azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41c4f847 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41cbce0c snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43eea7ed hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4616ea4a snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x481724f3 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x495675c9 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49714254 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4bd97703 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c311e65 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4eeefdd9 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f047e6a snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f32042b snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4fc0753d snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x511cc02f __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5357ede4 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5940a4f0 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59cdaeea snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6153fa11 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6653cc0f snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66cf7756 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6772b868 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x741176cd snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x745746cf snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76ffe258 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79f9ca98 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d504a17 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7dc875db snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b3bfc24 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b45542b snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8be689c6 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91665a6f snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91f80b5e snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x950b66d0 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x956d0a0d snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x962773dc snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x977794c4 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a3cdf3d snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b2a9b18 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b489605 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ba6522c snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9cc7cdb9 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d2ff57f snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d8585a9 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e4ac48a snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3c7b3ec snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9bc45d9 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaef3f872 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafd42dce snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0b89d1f snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1223672 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb505109b _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6089469 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6cb488c snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6f3ed73 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb88783fe snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8f26f5c snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc098387 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd14a9ca snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd3b4df7 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdd6860c snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe3193c9 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2db2790 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc345aaaf snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3de2793 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc87e77d9 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc97b92da azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc641b09 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf030e6d snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0a2c139 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1383c7c snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2f7fd09 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5e9ad06 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb43ca49 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc2e749c snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2a0cd0f snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe32cfaa1 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3ccefa0 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe51ff206 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb43d569 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf22e2206 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4596b30 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7033392 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb115209 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfcfb03ee azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xff4aad27 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x01cb1df0 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1243d688 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2bdd1c4a snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3b2b1932 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x40682ee6 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6533abf6 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6825fe4f snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x68669176 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6f9c547e snd_hda_gen_stream_pm +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 0x7900c9df snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7d18a4e5 snd_hda_activate_path +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 0x94065424 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa16f9104 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb6b303e4 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb77cde05 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbf8b8325 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd71bf696 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xda2542b7 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xeff7b1fe snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x59a70743 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xe02e7e8a cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x32d0e471 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x80f93b51 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x3191291d cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x5453fe64 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x68123776 cs42xx8_probe +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-es8328 0x305d3f98 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xb9a02aae es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x0eab635a pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x752ba330 pcm179x_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xdc4230db pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x21ede5c8 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x4b575aaa pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xb66a50d6 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xc4799c07 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x6a14181b pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x717b2ac1 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x97a52646 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xac9f1652 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc +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-sigmadsp 0x5ac84c4f sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x95e14b8d sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb7beba2b sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd1e4f960 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xfea02f04 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x929e7b35 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x59a17734 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xbc678dcd ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xe35dd7b1 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x27b26d9f wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x35ceef6b wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x3cd67e27 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xe88afc2a wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x89d056dd wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x87268cd1 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/dwc/designware_pcm 0x1f337288 dw_pcm_push_tx +EXPORT_SYMBOL_GPL sound/soc/dwc/designware_pcm 0xfaf6b97d dw_pcm_register +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x3388272c fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x800b5311 fsl_asrc_get_dma_channel +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 0x0525c42f asoc_simple_card_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7958af79 asoc_simple_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xabfac633 asoc_simple_card_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01b04937 snd_soc_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01b53bb0 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06f0ba57 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09b316d7 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a064546 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c9b7668 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ee6c94a snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x116d84d4 snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11ce5ed5 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x127992ea snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15aba9a6 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1799adf2 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19f0ce90 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d99d2fd snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1def1420 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ea19829 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1fc09d62 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x214efe06 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x215567a3 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x226e0823 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2354a494 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2496dc80 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29a88f15 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b3c69cd snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c572a66 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2dfc8c25 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3544d2ba snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39117406 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3aa33c47 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3aa93ea7 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3aaa5f17 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ba5f053 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c7651d8 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4081612a snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x413cbca5 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43933eba snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44104575 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x479920ae snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47bd00e7 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x486324ce snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b150051 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c33f3c7 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ee8cef6 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fb2a3d5 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51132fe8 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53047e76 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a96b53c snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ae785c4 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c235cdd snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x608d1d06 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60afc0f5 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61db4360 snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x641fa85a snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66ce56f0 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x676aebbc snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x678b4eec snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68fdd3f6 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d01e7b9 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e0cdbe3 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ec852df snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f792863 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f812447 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72404f4c snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75f97d49 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7662b0ef snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77f99b4b snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x784bf843 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7905fece snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79622bf9 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a6953d7 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7af90ee5 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7be1ec13 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e32eef2 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x806c7daa snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80e9f36e snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81122bb4 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86e92634 snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8719f2d2 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89426db4 snd_soc_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a4c20a0 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b4c59d4 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f7c1b35 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ffa9e5f snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9524b10e snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95c0e0ab snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97e15914 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x980f4490 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9892fc1d snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x995e571e snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa269f1d8 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa567f679 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa76c7c17 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa78c0df0 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8408f2f snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa887c8a8 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab1c2da0 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac532669 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacf277f8 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae69c8ed snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf8ab7be snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf98793f snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0fef667 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3dd74f8 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb42e6cee snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4967b63 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4a1fbfc snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6465129 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6562754 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8297d60 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8ccc614 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbae7b335 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb596625 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0d127a5 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc21ba1de snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2bba364 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3d1272b snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6592dd7 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6bc38cb snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7ffd9f0 snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc81c711f snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc98c06c5 snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbcf1555 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd5e3f9d snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcfb4264c snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2973d84 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3388144 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4d9358f snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd636ca3a snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7fb36fe snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda6e6baa snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda77855d snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdae27378 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb05dce4 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddada794 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde47e11b snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe01bcaa4 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe08372ea snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe159023a snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe441a3f3 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe486151c snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5607c83 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7dbac40 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9852812 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeceab4aa snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee9a6a48 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeeeb7a7f snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1ecdc90 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1f902e6 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf238c7d2 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfafbb1f4 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb05da27 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfbfa739f snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff331482 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x02a50107 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x04c420fe line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x05f465be line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x14923096 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1e5ed12c line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x29f7caf4 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x404292c0 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x46889099 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6286dfee line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x67541c93 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8543afa4 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x85dfc125 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x896e6939 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9aadb244 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe1000e1f line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xef0710a4 line6_send_raw_message_async +EXPORT_SYMBOL_GPL vmlinux 0x000dd915 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x0027d8fe iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x003aee35 skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0x004d72c7 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x008c8531 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00ad44e1 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x00af3d7e ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x00d2275d to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x00d98101 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00f71f05 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x010e99f9 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x01292c10 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x0165c51d digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x017c88b8 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x01833cff find_module +EXPORT_SYMBOL_GPL vmlinux 0x0195ea68 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x0195fba9 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x01aead35 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x01be04ca led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x01cb9c53 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x021bc643 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x021ebfda btree_update +EXPORT_SYMBOL_GPL vmlinux 0x02240175 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x02291eb3 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x0230d1b8 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x023e48b8 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x024b5f08 vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x02681628 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x02684c98 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x02b80b0c tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x02c79103 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x02df9689 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x02f4b92d regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x030557b5 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x0310fb50 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x0320407a percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x03271988 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x0331f8be crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x0335bc6b regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x033b3a51 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x034d23ce regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x037906ae bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03b98b9d tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x03c689ee tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x03c85c42 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03f22608 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x03f5b0cd crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x03f874c5 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0403b457 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x0404555b irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x04057354 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x040e04a9 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x04122b4e irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x04224909 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x0424583c rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x0425dd88 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x043322fc da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x043a8d15 kvmppc_emulate_mmio +EXPORT_SYMBOL_GPL vmlinux 0x0446e0ab __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x044ba8c4 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x044e25fe regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x045b87d1 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x047c1720 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04b5549c __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04cd74fb __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x050462c0 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x05198de6 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x051bacd0 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x0530c76e irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x0534a7cb srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x05423ca2 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x058488c7 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x0593592d of_genpd_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x05a363d1 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x05d47102 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x05e76cc7 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x060a5eb7 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x061dee59 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x06488860 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x065330c3 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x065ab1d3 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x06702d58 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x0697b3ff usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x06a253b8 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x06a4c3a9 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x06ad5f56 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x06c71439 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x06e7f8da pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x06f1ae44 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x06f98275 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x06fac545 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x070c8df3 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x073d917e skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x07449476 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x075f19a7 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x077b5733 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x078f13a2 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x07935284 ata_std_prereset +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 0x07c965ff lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x07e77857 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x07ee897d nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x07f300c3 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x07f36a3b dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x07fc6249 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x0805a5a4 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x08185202 d_walk +EXPORT_SYMBOL_GPL vmlinux 0x081cddc2 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x0820a709 get_empty_filp +EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x0831d1ce subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x083b22e2 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x083b47ff ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x0862471e bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0x08703691 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x08960279 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x08a117c4 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x08b2b06f wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x08b4c790 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x08cb3ce4 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x08fb7d34 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x0904d6bd get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x090ae864 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x091f00c9 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x09212319 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x093f7f31 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x0961287a unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x0961b62e public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x0962d0e8 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x096d630f kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0x0976052e kvm_vcpu_uninit +EXPORT_SYMBOL_GPL vmlinux 0x0978858f scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x09844af6 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x098817ba nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x099764fc ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x099a9558 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x09a1a648 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0x09add6b1 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x09e6917f thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0a221c7d __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x0a449c9a gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x0a48e942 of_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a55ee29 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x0a7d02cc task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x0a8d0ed9 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x0a94cdea devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x0ac81125 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x0acdb7f2 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x0aecd576 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b122cd6 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x0b1b58e4 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b1c89aa platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x0b25b3d8 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x0b637b9c rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x0b7ca926 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x0bb0dc1c ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x0bd934de register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x0be8f97a hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x0bf202d6 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c0377b2 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c30df1e da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x0c454ac8 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x0c545e08 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x0c65ec5f locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x0c746c47 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x0c75a3e5 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x0c801234 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0c97d225 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x0ca15675 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x0cb3aa8c ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cc9b730 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x0cd32bbe rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x0cd7ff88 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x0ce3d5df rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x0ceabd6b devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0cfca376 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x0d007d50 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d55c822 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0d565bc6 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x0d706d2e rh_set_owner +EXPORT_SYMBOL_GPL vmlinux 0x0d74c993 security_path_link +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d848503 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x0d8756f3 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x0d8aa02c serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x0d8eecc7 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x0da0e9b9 put_device +EXPORT_SYMBOL_GPL vmlinux 0x0da345f8 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core +EXPORT_SYMBOL_GPL vmlinux 0x0e048989 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x0e0a5f36 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x0e0aadf6 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x0e5033a1 security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0x0e592b3c ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x0e598143 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x0e6dc697 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x0e9091bd rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x0e9305d3 early_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x0eb212ee sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x0eca4e41 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x0ecb027e power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x0ecc85ee inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x0ee09366 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x0effa366 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x0f16ddcf regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x0f1f939d __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0f23fc72 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x0f2626a7 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f69f44a dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f958d78 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x0fa0994c bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x0fc01e9f static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x0fef4fd8 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x0ff051e8 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x1000196e usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x100f6ea7 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1014ef56 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x1024df2c of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x10296adf pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x1046563b of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x105c90ac ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x106e0c39 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x107ecda8 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x10823644 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x1099dd2c __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x10a5a36e pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x10ca953a regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x10ce9dba virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x10d2eb4b usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x10dd8638 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10f4e84b debugfs_use_file_start +EXPORT_SYMBOL_GPL vmlinux 0x10f5c23b platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x10fc5e02 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1113227a vfs_readf +EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift +EXPORT_SYMBOL_GPL vmlinux 0x1131eb97 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x11460803 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x115511d3 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x11573ebd usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x11650675 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x11ae385a ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x11b51ed8 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x11cba481 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x11cce5dc open_check_o_direct +EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x11d9d5ca gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x11df368a each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x11f1a1b5 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x122dc7cb rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x123e4799 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x1241bc80 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x127666b0 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x128938b6 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x1295b942 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x12b14c37 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x12c7362e ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x12ca8e17 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x12ec74b4 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x1302a6af rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x130424ce rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x1307dc5d regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x13480db6 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x13523ccb rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x135cf389 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13638128 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x136a4ee6 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x1382c9d5 kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x13a39722 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x13a6bdd3 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x13debe96 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x13fdab22 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x143ade26 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x143ba370 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x14644437 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x147cc5fb usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x148e75de devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x149ab6be ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x14a11ead rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x14a2e550 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x14c63797 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x14d942bd cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x14da60d1 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x14e13535 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x14f6f267 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x150098c2 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x1501c394 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x1572176b trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x15778518 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x158ec688 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x15a83150 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x15d3082f perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x15e0be5b pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x15feb343 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x1617b87d clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x1660aa43 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x167b6801 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x1685bb81 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x16c8104c usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x16d0fd73 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x16d50b82 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x16e058e4 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x16e88662 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1712b4d9 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x173dc7c3 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x17442b53 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x174769e4 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x17493248 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x1750d6fe platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x178ef444 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x17a5cc4a get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x17b8d7b0 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x17c05173 add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0x17c136f4 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x17ee2157 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x17f0f02d cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x184daada percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x18737e55 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x189565ab pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x18b45f35 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x18b89924 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x18c7417a crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x190c177f __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x191b1a36 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x192b3a1a ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x192bd962 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x195945a5 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x19664ec9 usb_of_get_child_node +EXPORT_SYMBOL_GPL vmlinux 0x198707af md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19be2436 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x19c0f4d8 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x19ec550a cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x19f00e22 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19f8cfbf irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x1a8c5907 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x1a96a3fb gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x1ab488a6 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x1aba8773 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x1ac68031 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x1acb102a phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1ad6c616 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x1ae4a992 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x1ae9db6f skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x1af9f0c0 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x1b0337c1 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x1b4026f7 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x1b5213b7 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b6d00c3 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x1b839d27 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x1b96bb96 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1b9e23fe of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x1bad0125 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x1bb5e329 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x1bba820f __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x1bbec8aa regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1bdd792a device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x1bdfd3cf usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x1bea87e9 fsl_spi_cpm_reinit_txrx +EXPORT_SYMBOL_GPL vmlinux 0x1c28bba0 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x1c2a73d8 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x1c317b5a device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x1c39dd4c genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x1c415c10 crypto_unregister_rng +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 0x1c6ddb22 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x1c71f8ac jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c98f4a3 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x1cbe42bb kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x1ce80780 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x1cf2b7a1 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x1cf82066 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d2fe697 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x1d47448c ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x1d56a29c phy_put +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d6106a9 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x1d72e669 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1dc01703 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x1dc88100 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x1dd5074c irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x1de409f1 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x1df2c1e0 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x1df7f6a4 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x1dfb68d3 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x1dfbcf4c mpic_msgr_disable +EXPORT_SYMBOL_GPL vmlinux 0x1e0d0365 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x1e0ee116 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x1e5af5d6 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e653ad1 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x1e668d27 static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e86edfb rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e9006a1 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x1ead19aa fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1edd686b xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x1eed291d tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1ef3a8d0 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x1ef4a6d1 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x1f0e0f23 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1f113b61 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1f133f5d usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x1f1b61f6 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x1f477127 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x1f4fd7dc crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x1f7cb2fe rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8d71c4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f8f9ee9 gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x1f9a75a1 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x1fbd5dd2 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x1fcbbd15 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x1fe4edb0 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x20120537 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x201b417c handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x202715c1 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x203d44c8 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x204c174d sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x205ceb9f sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x2071e276 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x20754ba8 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2077413c sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x207b6bd5 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x209d9243 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20c9c72b ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x20cf8345 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL vmlinux 0x20edc074 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x20fbe632 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x21194c17 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x211e92c8 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x215662f2 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x21691290 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x216cc885 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x218ae90c sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x2197c69f static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x219d16f9 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21bf8376 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21f4695b fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x2206e2dd ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x2215d018 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x2217099a regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x22275e00 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x226e111d fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x227a1e9b usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x227d7d14 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x228bb81a dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x229128de crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x229a396e dev_pm_opp_set_regulator +EXPORT_SYMBOL_GPL vmlinux 0x22a17909 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x22d417f1 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x22e70dcd virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x22f9e6b8 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x2311bad5 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x233422bd wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x235d52ea clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x2369008b cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23971e17 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x23a3bcf0 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x23b0eb22 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x23dea0f1 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x2401a8a6 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x24151495 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x241cf5af l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x2441ed51 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x244672fd rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x247a6bd3 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2495ff57 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x24989471 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24b3d80c power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x24c94ba1 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24eb8919 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x254e3d18 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x257b403b ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x25807737 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x2581be86 __devcgroup_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x258f3f32 cap_mmap_file +EXPORT_SYMBOL_GPL vmlinux 0x25b676b5 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x25db00c5 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x25e7af9f aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x25eff209 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x2619de78 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x26295982 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x26410535 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x264f1823 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x2651030a __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x2661fda4 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x2678a094 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2683d426 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x268efd43 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x2691412e boot_cpuid_phys +EXPORT_SYMBOL_GPL vmlinux 0x2698fd84 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x26a020c7 mmput +EXPORT_SYMBOL_GPL vmlinux 0x26aab8a0 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x26ac3fb5 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x26b21e51 fb_sys_read +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26ca1fb6 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x26cced95 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x26d8ad54 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x26ddd636 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x26e4c4cb md_run +EXPORT_SYMBOL_GPL vmlinux 0x26ea91ea pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26f48555 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x2701014b pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x271bf420 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x2727bc06 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2731ed1f pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x273fc603 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x27651bd3 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2769a199 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x276e80e1 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x27782a11 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x277d3a50 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x279a5d3a ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x27ae0516 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x27c0f1e3 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27d7569a pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x27e6cbc0 mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x2801df73 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x2802f44a regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x280c101b bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x28218ca5 spi_flash_read +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x285a3363 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x285a5f9d percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x285b545d trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x2866a0c8 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x2872a597 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x2874d850 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x28873ba0 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x2887e12e pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x28999f73 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x28aad36c skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x28e2d571 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x290688e9 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x290917f5 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x29125652 bpf_prog_get_type +EXPORT_SYMBOL_GPL vmlinux 0x2928cef6 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x294529a3 skb_gso_validate_mtu +EXPORT_SYMBOL_GPL vmlinux 0x294bf308 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x29517891 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x297463e4 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0x299dd18d hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x29ac3379 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x29af5098 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x29c19fc9 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29fbb0bf shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x2a118bd0 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x2a188eeb iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x2a269397 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x2a3167b2 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x2a54e2cc __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x2a5698fa sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a8ca6b8 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2aa4276e kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x2aab82d5 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x2b0a7e69 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x2b1bae0e cpu_to_core_id +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b3bb211 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule +EXPORT_SYMBOL_GPL vmlinux 0x2b808d91 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2bb0c884 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x2bc6ee9b pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x2bf5438d irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c08a361 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x2c10177b blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c294721 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c58ace6 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x2c5e19cf tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x2c740ff1 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x2c770b8a usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c97c085 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2c9e2530 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x2caf41de cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x2cba7b9e usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x2cbca040 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x2cbec321 kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0x2cd34d33 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cf6ee20 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x2d12dac9 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d35a316 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x2d36c57b rh_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d4f7363 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x2d50f98b call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d7c73b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0x2dabf641 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x2dadf15c devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last +EXPORT_SYMBOL_GPL vmlinux 0x2dc7c54c usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x2dd10f82 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x2ddff555 nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x2df021fb phy_create +EXPORT_SYMBOL_GPL vmlinux 0x2e05b15f ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e24fd58 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e406f33 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x2e4ab665 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x2e93ccde inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x2ea99a22 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec3c40b sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ec7c414 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x2ed19c5d inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f189bfa rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x2f3e8770 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f779c66 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x2f7b4203 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x2fa9daa3 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2fc7c312 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2fdbf5cc debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x2ffb5ff7 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x302b3cd5 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x30413160 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3057cd7e kvmppc_hv_ops +EXPORT_SYMBOL_GPL vmlinux 0x3081e426 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x3082b5a0 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x30a30e3d security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30a742e7 nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x30a9dd9f rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x30affc5c flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x30ca020a blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x30dbc598 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x30dc4d55 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0x30defab6 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x30ee6ef7 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x3101aa0a gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x31241ee0 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x31642ed4 dev_pm_opp_get_suspend_opp +EXPORT_SYMBOL_GPL vmlinux 0x31750091 cpu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x31792bfd usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x317dcb24 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x3195b501 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x31a26985 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31f437bd platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3212029b scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x3215104b rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x321d5450 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x321fa193 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x3249a197 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x324b0ccc dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x325487c2 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x326c9db1 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x32759ed7 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x3278ff1b of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x327c3f8c of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x32924a4d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x3292e141 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x32a55c80 crypto_givcipher_type +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 0x32c684a9 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x32ca1bd6 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x32d798f2 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x32e67478 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x32fa30b6 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x333acf19 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x336bdf7b validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x337786fa usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x33af212c of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x33ee6ff4 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x33f17b26 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x33f93990 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x33ffea95 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x340d5346 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x340fcb41 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x34331d5e nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x3438b05c sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x343a3802 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x343bd989 input_class +EXPORT_SYMBOL_GPL vmlinux 0x343c57cf usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x343ffa1f ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x3444dc4b thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x344f3452 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x346915dc rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x34722333 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0x347c8e92 kvm_vcpu_init +EXPORT_SYMBOL_GPL vmlinux 0x347cba5f cpu_remove_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x3485cf92 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x349d8912 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x34c6794f dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x34d8534e srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x34f715b6 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x350387b9 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x3515d180 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x352eace9 cpu_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x35658a8e ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x358a2c21 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35a0830e clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x35bd9ec1 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x35c0636b blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x35d2c5f9 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x35fc5f6b dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x36001b26 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x36160cdd relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x361e5bf4 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x363a7914 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x36811174 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x36829965 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x36939205 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a61206 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x36a64e5c percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36eaf15e pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x36eea5a2 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x3709e4cb metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x37342190 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x3742964c inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x37444576 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x375612f4 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x375777fd preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x3789d0db class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x378d9c04 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0x379ab1df dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x37bd9e65 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x37c4ead4 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x37d2c2c5 rh_dump_blk +EXPORT_SYMBOL_GPL vmlinux 0x37d78c18 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x37e872f5 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x37fcd591 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x3801f23f da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x38072772 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x38249422 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x38302c76 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x383d80cf reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x383d885d __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x385249ed fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3866dee3 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x386e74d6 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38c76af3 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x38cab3b2 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x38cfd898 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x38d3b48b spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38edcc09 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x38f2a005 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x390dfd99 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x3935a28b gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x3941c72f kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x39490605 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x395f989a devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x3960f231 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x39676120 sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x396c262a get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x39867bf7 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x39a92462 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x39b03b4d hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x39b0fd5f tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39db1b2f __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39fb4411 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a821025 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x3a85cc87 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x3a92445e ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x3a977778 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3a9fcae7 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x3abbe3a6 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad212c2 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x3ad53db2 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x3af0250c tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x3b0c135d sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x3b1131f5 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x3b16c10d cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x3b352406 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x3b3cf14a ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x3b554cc6 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x3b7871c7 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x3b9f2266 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x3ba5eb49 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3bb10a9b mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x3bb8d086 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x3c151b29 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3c1ab1e0 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c3c2c85 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x3c76cd52 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x3c79f9da devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x3c7a2e5c __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x3c85c4f4 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x3c876fdc debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3ca31c08 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x3ca33d13 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x3ca93653 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x3cb4f27e ping_close +EXPORT_SYMBOL_GPL vmlinux 0x3cc87d17 cs47l24_patch +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cea8911 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x3cfc2334 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x3d033cfc cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x3d0eca78 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x3d32e7ce pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x3d354a9e __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d55a96e cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x3d842f6f watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3d9adb83 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x3dc4cd94 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dce79f6 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf +EXPORT_SYMBOL_GPL vmlinux 0x3de4538d tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3e1c9d01 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL vmlinux 0x3e27e516 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x3e28b286 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e3ff78c dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x3e41a26c extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x3e5789c4 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x3e5b0c57 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e757637 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x3e821f33 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x3e890507 __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0x3e9dbb08 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x3ea01bbe pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0x3ebbf581 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x3ee02c3c bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x3eea1889 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x3ef5c2b8 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x3efa6587 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f060887 __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x3f178205 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x3f1cb321 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x3f25a06e crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x3f274106 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x3f2ffd8e ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x3f3694fa __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x3f36ff9f sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x3f3a6d40 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x3f4ce53a clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3f4e70d3 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3f50aa92 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x3f6ca544 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x3fb2b6e9 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x3fdb90ef __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL vmlinux 0x3ffe1730 pm_genpd_syscore_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x3fff4062 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x4059dd73 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x40677090 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x409ec61d register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40ce9e67 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40d939cc usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x40e1121d scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x40e423bd device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x40e6a6d9 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f56005 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x40f895da dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x40fb78fa crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x411c2390 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x4122172f clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x41275e4d devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x41321c0a gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x41322612 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x4156acc7 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x4164261b ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x4182866a __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x41a7f032 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x41c71768 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x4203770e simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x42059cbf devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x420a3c92 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x4212fd5e sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x421ac2bb evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x423a8825 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4270e072 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x427a066b trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42843dde pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x42d7a146 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x42d89be6 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x42dedb29 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x42e33a9a cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x434305d2 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x435b75a7 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x4366be1f device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x4367381f pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x436bf7a0 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x438832c1 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x43969dbe rh_alloc_fixed +EXPORT_SYMBOL_GPL vmlinux 0x439e2fe1 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43aa054c tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x43b0a47a __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x43befa3e devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x43c33cf6 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43d0460c inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x4403bd54 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x440d7277 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x4423bf94 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x4445b586 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x4490737c badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x449809d2 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x449f8edb cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44bafd12 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x44d0d670 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x44ddfd44 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x452110f9 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x452b9aaa usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x453aa19f handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x456de7b4 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x458f9c03 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x45907c81 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x45ae083c debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x45b19379 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x45b5da5b task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x45bd8708 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45e36f42 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x463853bc spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x46661bda trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x466ae826 ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0x467ada78 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x46801eca pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x4686b3a0 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x4688c96a usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x468d38f2 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x469096c2 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x4692e545 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x46b28320 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x46d7ecca tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x46dc5601 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x46f3fc9c scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x46f4ee33 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x47108e33 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4741ace2 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4763b977 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x476c4ebf blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x477c1102 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478fd11c flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x47a70c26 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47b5b93c dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x47cdfc8d regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47f6a820 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x47fd261a pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x48082bef page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x481a81af uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x48212de3 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x482a4c43 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x48378db7 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x485ab0b9 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x4862bd8c cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x489eb7b6 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x48e544ef tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x48ef9dc0 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x48f611d1 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x49338800 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x49386db0 bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x494016ca cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x498dc4cc ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x499adc2a nvdimm_clear_from_poison_list +EXPORT_SYMBOL_GPL vmlinux 0x49a3c874 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x49dcaeb1 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x49e121ff fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4a416b7b ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x4a524095 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x4a66c341 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x4a7cd98e crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x4a889013 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x4a89a14c regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x4a977d0e user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4adabdc6 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x4ae11c60 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x4ae8c705 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x4b16e290 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x4b62b61a crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x4b89bb5c clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x4b98827c rh_init +EXPORT_SYMBOL_GPL vmlinux 0x4baef320 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x4bb099c7 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x4bb5bfd2 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x4bdb7732 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x4bde9b9d usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4bfdeba6 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x4c33b040 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x4c374709 devm_nsio_enable +EXPORT_SYMBOL_GPL vmlinux 0x4c3bf694 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x4c4d0355 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x4c523dc9 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c62c706 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x4c6eb22f usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c77d5f7 security_inode_readlink +EXPORT_SYMBOL_GPL vmlinux 0x4c7ddae4 __of_genpd_xlate_simple +EXPORT_SYMBOL_GPL vmlinux 0x4c7ebc96 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x4ca1c643 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x4ca2258e class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x4ca44da9 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x4ca6b135 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x4cd3e634 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x4ce66897 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d18c251 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x4d2a0cab of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x4d2ac197 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x4d31fe45 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4d48b71a ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x4d5c0af3 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x4d624e23 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x4d6911b8 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x4d72a42f wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x4d7f71db pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x4d9be022 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x4db4f860 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x4dd57987 netdev_default_l2upper_neigh_construct +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de5d97d fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x4de84e8f phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x4deabcd6 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x4dec8b19 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x4e0d4853 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e2457e0 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x4e261202 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x4e364bd3 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4e505363 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x4e9106d7 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x4e917af4 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x4eb70a0f crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x4eb80935 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x4ee16ee8 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x4eebdc32 max_gen_clk_probe +EXPORT_SYMBOL_GPL vmlinux 0x4eefdf68 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4ef33255 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4ef754ae devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x4f0ac0fd udp4_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0x4f24fd6d dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f3634b4 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x4f43739e bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x4f4bf92c net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4f4c056b user_read +EXPORT_SYMBOL_GPL vmlinux 0x4f5f0b80 of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f8f22af phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x4faaf572 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fdd75a5 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ff1c015 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4ffb2298 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x50124f01 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x50361cba swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x5049ec37 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x506e435d tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x507596d8 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50ae4dac nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50cc248d rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x512ccc3c nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x51367159 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x51467922 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x515daf16 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x517ac4ba regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x51811f94 wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5183c0dc synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x51950f69 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x51a2d7b0 phy_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x51a3ab2f bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock +EXPORT_SYMBOL_GPL vmlinux 0x51b6f400 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x51e48009 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x520c205d devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x5211966c clk_hw_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x52382f59 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x5245a8f2 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5268d8d2 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x528fe02b of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x52924f20 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x52b84fc7 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x52c0e5b5 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x52c780a4 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x52f520a3 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x5302d4fc of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x530ce925 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x53114468 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x531f9d2e devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x534eaa2b unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x534f8fc1 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x5388665d regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x5394ee85 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x539bfbb3 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x53ab0725 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x53b1c1eb md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x53c11bc7 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x53c3e92e ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x53d01807 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x53d38ca8 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x53e35106 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x545f271c devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq +EXPORT_SYMBOL_GPL vmlinux 0x54728d48 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x5491b235 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54a74fed dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x54c20ad4 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x54c89252 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x54c8d486 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x54c9fda7 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x54d2fbb3 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54ea0018 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x54ec93c1 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x54eca0b9 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x54ed6935 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x55053937 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x551c1689 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x551c666f wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x551ce6c8 pm_clk_resume +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 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x5584aee4 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x55c874c2 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x55c91189 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x55d6e6ad pcibios_finish_adding_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x55e40cfd gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x55e911df sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f268a1 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x55f51ef3 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x5612e7cf xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x5613d7eb cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x5619f8a1 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x561c1423 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x5626ca17 pcibios_free_controller +EXPORT_SYMBOL_GPL vmlinux 0x562a3d96 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x564dacb3 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x564f5a91 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x565dc599 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x5676288e clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x56838ac5 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x5686b971 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x56928bf3 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x56adccec blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56db38dc unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56f00789 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x57152b73 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x57387a9a regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x573e685e ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x5749698a __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x574abdba usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x575e37f5 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579dcd60 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57b7ce0b irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57d93d2f driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x57dac353 bdev_dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x57deb1a3 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x57e8bbf2 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x5812ce91 iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0x582d78a0 kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0x583259b0 udp6_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0x58374d46 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x585f755e usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x5861c376 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x588f962b of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58aa87e4 devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x58c057af generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x58e9ba56 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x591abf55 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x5920baec ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x5936efb5 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x593ebda9 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x596fe39c blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x598304a5 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x59b347c5 kvmppc_kvm_pv +EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59f61611 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x5a112628 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x5a11817d sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x5a1eb977 devm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x5a40d1f9 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x5a4972c7 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x5a65c37b devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5a71329a device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x5a7935a9 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a87f8e5 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x5ab43113 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x5ac97e5d scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x5ad0e2d4 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x5af3de3d dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x5b1c7d7f usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x5b22b994 securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x5b335150 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x5b59f700 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x5b692f71 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0x5b6bc963 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5b80f2a4 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x5b927115 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x5bb80e53 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5bc7ef45 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdb780c rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5be12fa6 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x5bf45efb xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x5bf79259 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x5bfddd7b __class_register +EXPORT_SYMBOL_GPL vmlinux 0x5c19ce41 fsl_spi_cpm_free +EXPORT_SYMBOL_GPL vmlinux 0x5c348c5e crypto_has_skcipher2 +EXPORT_SYMBOL_GPL vmlinux 0x5c407cef ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c6828eb driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x5c712523 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x5c7ce8af usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x5c8297b3 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x5c871411 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x5c96a9d4 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x5ca3f25f scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cb1d3f1 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cc97ca4 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x5cd0b773 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x5cd61d4a device_add +EXPORT_SYMBOL_GPL vmlinux 0x5cd886a9 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x5cf46af0 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d152b20 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x5d1b4d37 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x5d2a4a21 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x5d4b9295 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x5d591c27 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x5d5b189d devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x5d5dcd14 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x5d61878d da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dbc44bd ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x5dce3c67 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x5dd10085 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x5dd26a43 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e13b992 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e67b71d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0x5e7d6dc1 cpu_feature_keys +EXPORT_SYMBOL_GPL vmlinux 0x5e80c81b nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x5e8c74b2 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x5e8e31de ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x5e8e8c2f __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5eb6d87f sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x5ef05572 kvm_get_dirty_log +EXPORT_SYMBOL_GPL vmlinux 0x5f015c08 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x5f113f75 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x5f1226a6 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x5f2a6a9e regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x5f3c6926 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x5f43f5e8 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x5f4d907a transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5f50712c virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x5fc0711a usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x5fc44a63 cpu_remove_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x5fd34076 pcibios_scan_phb +EXPORT_SYMBOL_GPL vmlinux 0x5ff518d7 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x6005cd12 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6012fc4d iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x604d8018 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x607b38a0 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60b33b48 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x60d04871 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x60d648a7 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x60ff8ca0 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x61180541 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x61638fc1 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x616bc97a devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x616cee1e fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x619ffa9c gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x61b1d6a0 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x61beac00 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x61e3956f rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x61ea3a5e dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x61f1dd92 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x61fc48ba hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x622beb75 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6242ec91 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x62579109 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x62bf74cd inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x62d59c9e trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x62d59f9f serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x62d6afa2 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x62dca9c9 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x62f41154 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6339898e fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x634e6b5a kvmppc_sanity_check +EXPORT_SYMBOL_GPL vmlinux 0x634fae0c devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x635441fe serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x6396c7f4 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x63abcef4 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x63ad802a nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x63c9a8de of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x63d6091d regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x64239d09 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x6428da4f rh_attach_region +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x644e0250 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x648b7f81 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x6495e622 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x64a70cfc io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x64b8d3bf class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x64d4d808 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x64e24a5e memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x64f5fa78 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x6521eb7b to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x65275603 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x652f331e pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x6555f810 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x6557b159 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x656020b3 component_del +EXPORT_SYMBOL_GPL vmlinux 0x6584fa0f ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x66072a5c debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x6607d052 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x660e5675 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x66151085 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6620f0b9 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x667d393e hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x668f38fc fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x66925382 dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x669ae5c6 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x66ae6586 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x66b75d41 path_noexec +EXPORT_SYMBOL_GPL vmlinux 0x66ba366a dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x66c397f7 nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66c77827 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x66ce46ba __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66e140b5 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x66f486a6 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x6705a367 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x677b8440 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x678a2323 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x678b8cbb kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x6799f685 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x67bbb60d crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x67c5dbfb of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x67d1ceea class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x67f09355 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x67fdcbaf param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x681b811f regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x681e65c1 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x682e6bb0 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x68326275 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6838e103 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x683af146 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x685f1db5 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x6863dbb8 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0x686c3f3e transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x6871552e max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x68956406 static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x689955d8 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x68ae9898 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x68b1df4b rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x68c83d29 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x68d92af3 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x68dacda5 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x69090979 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x6924a510 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x69253480 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x692ae7bb virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x693390bd devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6936c7a1 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x693d62c2 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0x6961c1bd tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x6963ef7e spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x6976be8e sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x697cbbb4 threads_per_core +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x698fe440 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x6993ece2 arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x6a00f3d8 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x6a0352ca of_display_timings_exist +EXPORT_SYMBOL_GPL vmlinux 0x6a1d0216 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x6a1d9aec of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0x6a28161d ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x6a2e928c fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x6a40c98b led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a55b233 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a630717 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6ab3781f trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x6ac7dd14 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x6af49d3c transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x6b17aac6 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6b27edc1 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b48a910 switch_booke_debug_regs +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6bb00232 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x6bc8d2eb fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x6bf6ea1a dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c1a2b7a xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6c4593c2 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c55a076 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x6c5b1ccc devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6c78b794 clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x6c813395 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c911bef wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca65c33 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x6cac1999 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6ce1164a cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x6d1fe3c0 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d302232 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x6d30d36c debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x6d3ed0fb ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x6d758812 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6da02baa blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x6dac0acb hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6db9439c fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e0e9e66 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x6e15e68c use_mm +EXPORT_SYMBOL_GPL vmlinux 0x6e235806 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x6e253c45 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x6e2692b0 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x6e26c5ac pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x6e283bcb pm_genpd_syscore_poweron +EXPORT_SYMBOL_GPL vmlinux 0x6e2a817a pcibios_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x6e2afbfc usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x6e5dd151 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x6e6de342 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e97690e generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x6ea1f3b8 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x6ebaf144 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x6ee6a8ea irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x6ef478f4 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x6f19f1d3 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f1fc87a crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x6f3b8564 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x6f44cd49 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x6f512d62 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x6f5ed22e of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x6f7875ee of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x6f86b79d debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x6fc12648 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x6fd43032 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x6fd82fa5 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x6fe1f1da handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ffb0798 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x6ffe6760 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x70467b53 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x708f71aa nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x708f93cc ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x709524ab flush_fp_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x70b26c5e of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x70b5a87a disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x70bf8146 clk_register_divider +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 0x70d7ab05 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x70d8c944 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x70dc7e1f fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x713ed5dd usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7174d0ca gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x71797b1f blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x717ddb95 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x7189bcd9 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x719387c2 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x7198f60e crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x7199a3a1 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a4fd4a sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x71adbb27 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x71b2010f power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x71beb663 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x71d83c75 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x721119ef bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x72239034 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x722dba01 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x724e3352 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x726ffc67 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x7271c052 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x728397e9 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x729d5791 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x72c20542 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x72c3a26e fsl_spi_cpm_irq +EXPORT_SYMBOL_GPL vmlinux 0x72cdae2a netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x734e8815 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x73634137 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x73960b67 nvdimm_bus_add_poison +EXPORT_SYMBOL_GPL vmlinux 0x73969274 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73c9c8d0 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73fb179b param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x74026d46 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x740cba4d usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x741a371f crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x741a5caf mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x74212ab0 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x742e7f55 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x743edd5f ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7476e781 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x7478e86b clk_hw_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x747cd934 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x747deead nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x7493a311 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74d007c2 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x74de09ed cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x74edf83c pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7531643e init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x75329035 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x7567c2fa kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x75808bd5 clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x75824049 fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x75baec44 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x75c11159 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x75c2b9f1 memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x75c8b231 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x75c9d8c3 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75dae793 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x75f2a044 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x75f6f089 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x7602e88c wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7606ce46 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x7617653d pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x761ed6ec hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x762c0858 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x762c0f89 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x764d0806 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x765c4379 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x76635557 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x76805388 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76aa4ac2 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x76add0a9 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x76ca1466 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e04f9e perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x76f2c1f6 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x770a6b6d led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x770edbf0 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x77189421 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x771fa1b9 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x774daa4a dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x774f18a3 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x77893272 ipv6_rcv_saddr_equal +EXPORT_SYMBOL_GPL vmlinux 0x779358cc ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77cec7d5 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x77d1d350 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x77d8a8e8 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x77de98b7 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x77f779cb mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x77fb963d gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x78151326 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x781a2ee9 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x783cf551 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x7840c03c bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x7851b9c4 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7854ef8e usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785cf1c3 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x786506c6 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x7880f218 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x78848c4c regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x788e6b20 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78cf42d8 clk_hw_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x78cfa404 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x78e3db30 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x78f6236e regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x78f84791 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x792b4779 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794547d9 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x796014ac power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x796dab62 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x797b3c39 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x797e6085 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x798f1d2e usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x799696f3 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x7996d8a1 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x799cfc7a __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x79c480da rh_dump +EXPORT_SYMBOL_GPL vmlinux 0x79dc2b5b devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e0caf7 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x79e58c81 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x7a1c4edc of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x7a29e5f0 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a67535e xts_crypt +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a94b951 gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7aced0f1 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x7ad07329 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x7ad8e82f pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x7ae4cdb6 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x7aedbeb7 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL vmlinux 0x7b0a9cbe ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b103540 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b24b824 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x7b367bc3 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x7b3f4bf8 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x7b59e6a8 vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7b75fde3 kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0x7b856713 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x7b9b49e6 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x7bbaf969 security_mmap_file +EXPORT_SYMBOL_GPL vmlinux 0x7bc77b69 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x7bccdbf8 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x7bd1ab9e kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x7bd5875d unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x7bdf60d7 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x7bee1e37 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x7beeab07 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x7bfa8340 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x7c0eff39 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x7c18873b pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x7c3d434a nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x7c43021b device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x7c57edf0 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x7c8a677a ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x7c8effa9 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7ca6ecbc clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x7cab9446 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x7cb0ee38 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7cc0c030 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ce9c3b2 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cf5cce9 clk_hw_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x7cffc48e __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d7642ec thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7d79b53a pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x7d8237df __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dc1e388 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x7dc5c9fe power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x7dc6cf62 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x7dd12fac register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x7dd6e42c _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7deabfa0 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x7e05ff26 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7e2675f1 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7e2b67b7 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x7e2ca670 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x7e4c3899 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x7e5d04cc cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e768cb1 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7ec0887a get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x7ec79d7b setfl +EXPORT_SYMBOL_GPL vmlinux 0x7edebeff hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x7f008202 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7f15251d device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x7f42b07f kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x7f69edb2 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x7f6b0c8f usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f853f60 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x7f8574e9 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x7f9ec681 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fd9b948 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x7fda5998 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x7fdbb682 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x7ffdab3b ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x801210c6 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x8017b4bf nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x80327074 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x80372445 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x80403db8 kvmppc_st +EXPORT_SYMBOL_GPL vmlinux 0x805b2546 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x80719ee3 user_update +EXPORT_SYMBOL_GPL vmlinux 0x807291b2 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x808ac566 of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x808ff158 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x80910e40 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x8092de37 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x809fc8a6 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x80c426b3 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x80c588e1 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d05963 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80eece90 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x80f41909 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x80f6eb15 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x810170df ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x8105836d fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x81251fdb led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x812ac349 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x813e4a9e __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x8141ec47 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x81454387 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x814d7cc1 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x81601b9d ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x81632914 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x816d9773 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x816e2b2d sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x818e73b9 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x8198c01f sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x81ad012b devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x81af8f9d blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x81b2388f crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x81c4b93c crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x81c7fc15 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x81c80ff8 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x81df2cbc input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x81f0259d watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x822c6843 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x823570b7 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x823645d1 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x8253e3ff devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x8255145e ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x8283e1a6 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x82858491 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x828b8235 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8298c83d gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x82a78d92 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x82b740e3 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82e478ff pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x830bdf29 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x835643dc pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83934cb4 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x839a3a14 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x83c5aee3 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x83cdc712 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x8409999e pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x840be9bd clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x84119d65 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x841da239 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x84474a2e dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x846be28d sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84b58b5b debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x84e13aac vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x84e23877 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x85068c1b platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x85152f69 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x852c760f skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x854a02f7 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x854e207a gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x85606add thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x8566de96 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x85833628 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x85849b8e thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x85bc935c crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x85c244ed l3mdev_get_saddr6 +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85d06872 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x85e51e56 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x85e773a2 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x85eb6213 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x862799bc mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x8636cff0 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x86599ba1 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8675bdbb sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868da956 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x869237e7 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x86b2082a ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x86c36b7e ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x86d407d8 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x86ee97c9 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x86fa00ff ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x87067ef2 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x8717117e device_attach +EXPORT_SYMBOL_GPL vmlinux 0x8732daae input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x87447e1e trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0x875715f6 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x877539a0 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x877bb795 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x87d9b48a sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x87f54ca9 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x8803f6da bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x8804af3d usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x880a91f8 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x884ea961 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x8872ad7a nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x88884abe rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x888ade96 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x888be9e9 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x888d361c securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x888ef2dc __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x8899324e ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x88a8e7fc kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x88ab0b8d fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88b8a48d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x88b9b72b dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x88c04340 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x88ed5697 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x88f4d3dc __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x891044a0 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x8913d05b rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x8914dc42 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x89286dbd vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x892f266d tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x894190b3 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x8984573e wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x89867c07 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x899a3d59 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x89a7c72a mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x89b9ed36 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89d1a02e mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x89d23492 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x89dbb52e ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x89dbf5b0 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x89ed5131 device_del +EXPORT_SYMBOL_GPL vmlinux 0x89eda98e blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x89fa4703 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x8a0a406f trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x8a1141d2 spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8a34ef10 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x8a36e535 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x8a3b5281 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x8a4912c6 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a5d588c serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x8a66dbae l3mdev_get_rt6_dst +EXPORT_SYMBOL_GPL vmlinux 0x8a81a21e __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x8a842ba4 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x8a8694cf spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x8a8cff91 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8a9a1c17 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x8aaef0f3 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ad73396 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8af8b5fb devres_get +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b17a5de device_reset +EXPORT_SYMBOL_GPL vmlinux 0x8b1d7490 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x8b1ecffd inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x8b579611 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x8b79fcc9 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x8b806795 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b880839 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8b921862 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x8bc7e145 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x8bd2ca1f gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x8bf12e4c kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0a784d crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8c1c8345 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x8c38d8ca show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x8c5b46ff led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c675af8 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c799af4 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x8c9ef227 of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x8ca2643f pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8cab5936 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x8cb0dfe4 extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x8cbba9c1 vfs_writef +EXPORT_SYMBOL_GPL vmlinux 0x8ce8354b sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x8d0581b3 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x8d1edb1e platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x8d47b76d fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x8d6c84fd blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8d7bc9f8 loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0x8da42a37 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x8dae22c0 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x8dae8124 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x8db798d7 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x8dc9b74e devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x8dcda718 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x8de83868 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x8de86c62 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x8dfd5821 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e3b7e00 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x8e47109f of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x8e7e97b1 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8e8b19f2 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x8e9369b9 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x8e9f7d81 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x8e9fd44c fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x8ec24034 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x8ec5b77d ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x8ec65bc2 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x8ed0a110 of_scan_bus +EXPORT_SYMBOL_GPL vmlinux 0x8ed38e31 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x8ee157f3 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f2f4870 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x8f350109 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x8f487783 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x8f66220c trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f774d51 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x8fa03e32 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x8fb19c43 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x8fbf5086 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x8fc77054 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x8fd262c4 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x8ff67575 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x8fff2f82 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x900968d7 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x901018f1 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9010a740 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x9013b3f9 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x90206fc5 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x9022d5bc memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x9031c2c4 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x903a77b4 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x903bc532 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x9042d8a9 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x90471c9f ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x906f3d01 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x9077d5ea usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x90890c4b dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90a1fa35 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x90a53345 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x90f4e8d6 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x910cb69a __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x91353c2b xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x916cf4fb pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x91883f4a fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x919fa518 dm_use_blk_mq +EXPORT_SYMBOL_GPL vmlinux 0x91bc5652 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x91c24fd2 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c7e7b1 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x91cb4875 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x91cedddd blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x91f40a04 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x91fa2a3f pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x9228130c __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x922fdf72 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x9236f6f6 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x923860ca verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x9247b1ec spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x924a3c75 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x924c7271 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x92594e81 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x926a06d0 kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0x92725c92 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x92b4bbf3 fsl_spi_cpm_bufs +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x93102b74 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x931627d1 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x93227eee get_system_keyring +EXPORT_SYMBOL_GPL vmlinux 0x933998f8 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x9371523f addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x939cbc7c inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x93a2cb47 reserve_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x93a51a85 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x93b63fd7 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x93b88d53 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x93c733ba __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x93cf1605 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x93dc442c ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x93de5cac remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9432b036 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x943a14d8 __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x943f9cfe put_filp +EXPORT_SYMBOL_GPL vmlinux 0x946d60cb __module_address +EXPORT_SYMBOL_GPL vmlinux 0x947773ac devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x94e15e9f kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f5d9a1 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x94f9d2d2 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +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 0x957fd56d __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x959998e9 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95bcd3bd da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x95dbf25f unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x95dc68cd uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x95f1cace alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x960177a1 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x962a1043 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x964c460a init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9655b911 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x9659097c pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x967fe62c irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x96c2bdae led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x96c63f07 component_add +EXPORT_SYMBOL_GPL vmlinux 0x970a7028 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x970c8e10 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x971e2780 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x97423ae7 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x97ae8c51 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x97ca6baa virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x982cd486 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x983c7494 rh_detach_region +EXPORT_SYMBOL_GPL vmlinux 0x98422e3c __find_linux_pte_or_hugepte +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985e91b7 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x986ce256 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9895e2c3 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x98972b89 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x98ce5a90 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x98ebb92c nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x990c1585 devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x990d4ce5 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x99139c3b spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x992a9692 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x995c47c4 dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x995cdf5d virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x996a3373 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x99721f29 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x99864909 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x9997c752 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99b6f5bb pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99ce0592 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x99d6bccc pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a195883 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x9a265365 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x9a3ab3c1 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x9a3db1b0 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x9a40eed9 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x9a4eff6f spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x9a7abbd9 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x9a82be99 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9aad6540 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9ab3f558 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x9abbb987 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x9ad96ac8 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x9ad96ef5 pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x9add74bd dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af113d7 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x9af94689 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x9b002f52 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x9b3db760 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x9b6f38a0 __tracepoint_kvm_ppc_instr +EXPORT_SYMBOL_GPL vmlinux 0x9b998f28 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x9ba11b32 clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0x9bada786 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x9bae3214 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x9bc0d3ad kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x9bce7a03 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bf4e426 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x9bf64da6 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x9c0a4f2d regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x9c2db75a pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x9c302f17 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x9c6f9208 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x9c7cb2a1 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x9c831d2d led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x9ca2f8ec rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x9cb5e449 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x9cb90efb vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cf375c2 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x9d001d6d thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9d160637 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x9d25588b gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x9d6d7f0a __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x9d6e9700 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x9d7e8f06 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9d963ba1 arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0x9da80c3d usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x9dc7ea72 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x9ddbaeec __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x9de62e9b ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x9dfa22ab get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e0366f5 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x9e0d66f6 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x9e27685c pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x9e349796 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e63f026 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x9e7142c9 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x9e7a8671 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9e87a828 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x9ea4fa54 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x9ec49971 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x9ed32d3c pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ed720c1 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x9f00642b security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0x9f07cbde fsl_rio_mcheck_exception +EXPORT_SYMBOL_GPL vmlinux 0x9f2b7aab sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x9f4521f9 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x9f4541f3 of_fixed_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x9f55d75d unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x9f64d568 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9f6c14ae crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x9f7959dd tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x9fcd46ed irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9ff5a8e3 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x9ff87739 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xa00abb1c ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xa0208e02 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa022df9a tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xa0584505 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xa06268fb of_fixed_factor_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0xa06adc1e debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xa07b6f4a device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xa09da386 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa0a27fff pci_address_to_pio +EXPORT_SYMBOL_GPL vmlinux 0xa105c0cf pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xa11f7729 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xa1438e58 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xa148d444 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xa15a1ba3 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa17e0d3c regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xa1874d56 kvmppc_prepare_to_enter +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa190433f ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xa1b24906 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xa1dc0fc9 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0xa1e1d295 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xa1e5a299 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xa1e5bf4b of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xa23a3503 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xa23d2ca1 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0xa2416992 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xa25c81d8 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xa2637aae pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa271a380 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa27a4d13 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xa27ed8c8 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xa28aaf29 rh_create +EXPORT_SYMBOL_GPL vmlinux 0xa2907c80 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2c1a6c3 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xa2e4bbef sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xa2eaca31 i2c_new_secondary_device +EXPORT_SYMBOL_GPL vmlinux 0xa2fc8cba devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xa307af65 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xa30e031b dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0xa3104e78 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa3153424 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa320a958 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0xa3480b87 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xa34b2d90 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xa357179b thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa3743286 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xa3782363 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa38729c6 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xa38812f6 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa38cbebb arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range +EXPORT_SYMBOL_GPL vmlinux 0xa3a6512d of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3e5110e ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3edf8f7 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xa3f782c6 store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0xa3f96922 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xa41ccfaa ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0xa42e43ea pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xa43c5262 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xa43efcb7 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xa444fe24 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xa45e29ce blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xa465f613 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0xa46901f1 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa48e4fac wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa4b058d7 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa4b18882 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0xa4d78712 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xa4ec807f fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0xa4ecb38c get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xa4fb6cb8 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xa4ff543f mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xa4ffdb7b handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0xa500a9a2 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0xa52d8175 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xa557992e devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa55fa094 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xa596c4ee crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xa59fe444 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xa5a467a7 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq +EXPORT_SYMBOL_GPL vmlinux 0xa5bba7e9 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xa5d5ccbd fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5efe460 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xa616107a gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0xa61ffbe3 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xa62233f9 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa6381e37 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xa6424a8e arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0xa650c9eb debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xa65e6507 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xa660dd06 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xa671a019 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0xa6862577 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xa688d82f fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0xa69adac2 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa69c5196 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xa6a98d02 mmu_feature_keys +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6d354b0 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa706eadb cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0xa718b7db ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa757ac65 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xa7619847 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xa77269c2 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xa7732748 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xa77674e3 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa786a3cd devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa7c021ee rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xa7cdd8ca wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0xa7d7a9cb do_truncate +EXPORT_SYMBOL_GPL vmlinux 0xa8151f1a mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa81c7789 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0xa82c8266 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xa83766e4 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xa83c5e7e gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xa84c5ced dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa8545552 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xa858aa03 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa85ba9d5 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xa8728dc4 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa8749a88 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0xa88505dc debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xa893679e pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xa8a49825 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xa8a7a2c7 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8edf516 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xa8f946ce to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xa9072c22 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xa90c352b dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0xa90e538b __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xa9128724 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa926f9a0 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xa9295e77 nl_table +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa939ad00 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xa94c0f27 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xa95fd54e static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xa9607950 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xa9614090 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa96775fe pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xa9928fe3 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xa99ab757 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xa9a4c896 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xa9aa3b30 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa9aef2e1 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa0a93e4 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xaa10c138 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xaa17a2e2 rh_alloc_align +EXPORT_SYMBOL_GPL vmlinux 0xaa1e6f3a device_move +EXPORT_SYMBOL_GPL vmlinux 0xaa25babe extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xaa2969af kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa4b809d __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xaa4c3c0d sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xaa4e931b ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xaa785644 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xaa85eb7b __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xaa8bcaba debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xaa8d53b2 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xaaa3dff5 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaac62d08 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xaac7db81 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xaad431c5 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xaaf4fcff anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xaafe8ad1 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xab13afd1 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0xab1d701f crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xab22fd83 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab2ba9a4 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xab45d9d7 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xab59d373 kvmppc_free_lpid +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab790cb7 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xab7a4216 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xab8d5af7 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0xab8ec58f devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xab924498 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xab952487 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xaba61d17 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xabc3aaf7 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabcdd360 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xabf2792c virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xabf69f43 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xabf91e62 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xabfd7ee1 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xac017a2c regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xac0283ac napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xac40c5e9 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xac5fc87c extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xac62e94f ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xac63ef72 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xac877eef blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0xac9b4567 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xaca7712a usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xacb4226a __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xacb6be84 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xacbb6521 kvmppc_ld +EXPORT_SYMBOL_GPL vmlinux 0xacc600ee usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xacfe8cf3 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xad094fa9 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xad1350bf dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0xad24716b blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0xad29160d relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xad31fbbb tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xad574705 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xad9c55ee __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xada8e82a __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xada9a81d dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xadaa1d64 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xadc5fe28 _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0xadc61ba1 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae0f6903 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xae19d815 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xae3a98e7 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xae404b01 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xae48f86a device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xae52ce25 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xae58a7d8 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xae5ab583 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all +EXPORT_SYMBOL_GPL vmlinux 0xae8b1f72 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0xae90f18c tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xaea27afe ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xaed032e1 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xaee6221c sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xaef33243 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xaf0d542d usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xaf0de6d2 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xaf10e085 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xaf92f2c6 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xafa1a522 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xafb330bb led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xafc5a0ba udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xafcaae25 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xafcdd7ad pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xaff8d0ac pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xaffd7db2 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xb0039a1b device_create +EXPORT_SYMBOL_GPL vmlinux 0xb02e08f2 vmalloc_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xb02e0eca pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb0414d35 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xb04246c7 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xb061a9de wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb0794d32 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xb080fcca ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xb0913148 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xb09532af user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xb09a94ce tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0cac7a9 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xb0d4f633 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb0e9619e dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xb0ec2ca1 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xb0fdcaeb spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb147d009 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xb14f752c PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xb15d03e2 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0xb1610565 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xb1794f8e bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb182edfc thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1c761c1 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xb1e253a8 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1fa8d8e is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xb1fc3598 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xb204b4da kvmppc_emulate_instruction +EXPORT_SYMBOL_GPL vmlinux 0xb2123afb gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2256567 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xb24db548 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xb2608fd8 dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xb28ba609 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xb28bdaba dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xb2a16df8 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xb2ab6d25 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xb2c61c43 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xb2ccc528 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xb2df19ca __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xb2e4e003 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xb2fd3191 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xb2fe5d35 device_register +EXPORT_SYMBOL_GPL vmlinux 0xb308e421 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xb319f15d class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xb3239ec2 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xb33dad00 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xb3443e55 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xb3462393 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xb347d015 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xb35e9022 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0xb3823cc9 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xb3875b47 fb_sys_write +EXPORT_SYMBOL_GPL vmlinux 0xb3b2b1c4 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb3c09fa2 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xb3c5de27 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xb3cdac02 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xb3f5ff4a crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xb3f98fff blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xb421b02f posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xb439af6e rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0xb43ee3d4 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xb4432072 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xb44fe11b sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xb4793f59 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns +EXPORT_SYMBOL_GPL vmlinux 0xb499eeb7 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xb4b3050d perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4e8b802 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4ec3300 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xb4f60af3 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xb5197a94 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb522ea09 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xb525db8a spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xb5354e0c da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb5368607 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xb5400da9 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xb54d40db cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb57c2388 of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb59f5aaf regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5b52841 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xb5bb8b24 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xb5c8edf4 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0xb5e2825c sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xb5ebc2fc cs47l24_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb5f0e4a8 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb63a77be module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xb63b84dc crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xb658d685 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xb65a1846 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xb68827fc kvm_get_pfn +EXPORT_SYMBOL_GPL vmlinux 0xb68b6cf7 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xb691037f trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0xb69da29b rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xb6a877de rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6b0afea mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xb6b5be10 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6e94951 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xb711d130 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xb713c0db rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb7686286 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xb76de4fb usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xb77a8334 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xb786e77d percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb790f3d0 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb79fb656 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xb7a8817e gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xb7ada9a9 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xb7bf7a24 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xb7c23cdd of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xb7c4a9af irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7db5f61 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb7f9f8a7 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xb809b2d3 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xb810c8c3 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xb83b4a7c __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xb85e9fcc platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xb883206b hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb88df67e da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb8a01d1b platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xb8c0db11 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8e3bf0d synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb8eb4098 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xb94e6dff cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xb986d712 shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0xb998190f irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xb999a37a od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xb9a1a885 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c1c1fc sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9c87b37 security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9e51adc debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xb9f7e618 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xba036b76 i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0xba2a5e72 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba39f9dd __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xba649dc6 kvm_clear_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xba7ebdf3 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0xba85c635 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xbab0a515 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xbab40212 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xbab72ac1 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbafb8c86 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb3367e6 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xbb3ee770 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xbb58a3bd clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xbb5cf3c1 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xbb80d24b public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xbb83baf4 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xbb979fc3 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xbbc77e09 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xbbdb6e34 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xbbf2baf6 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xbc037d31 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xbc601cb4 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xbc656bd2 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc7993ab __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xbca0efc2 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcbdb7ec of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xbceba7f3 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xbcf1ed4a kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcf27dd3 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xbcfedb2d disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbd08ae28 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xbd17be59 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbd1f01ce devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbd2f10f7 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xbd31a567 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0xbd33d86b ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd6c34b1 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xbda7eed8 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xbdbedab0 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbde08652 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xbde8dc00 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xbdf1d8cd usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xbe037bb0 dev_pm_opp_put_regulator +EXPORT_SYMBOL_GPL vmlinux 0xbe0dc1c1 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe1b529d rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xbe44fd75 mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbe4b58ce ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbe55eccd crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xbe5e1ce0 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe6b47bd gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xbe6c41f5 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xbe8fb44c regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xbe92c854 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbec711a4 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xbee215b5 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xbee31cb5 save_stack_trace_regs +EXPORT_SYMBOL_GPL vmlinux 0xbeefef50 clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xbf0136ff cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xbf3d1585 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xbf495d04 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xbf51b237 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xbf6230ca clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xbf7cea14 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xbfb4b878 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfde8cfb of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 +EXPORT_SYMBOL_GPL vmlinux 0xc001eb7d reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc01cc916 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc024987a list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xc02bec3c usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc02e3f57 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xc061367e mpic_msgr_get +EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread +EXPORT_SYMBOL_GPL vmlinux 0xc066acc1 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc07c2d9e usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc09a518f pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b73614 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xc0cfa4f7 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0dad99d scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 +EXPORT_SYMBOL_GPL vmlinux 0xc0eb8bba rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f46733 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xc116c00e pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xc14a5053 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0xc1563eb0 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xc156d2a4 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc1765f16 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc194099d ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xc1c06ef2 pcibios_claim_one_bus +EXPORT_SYMBOL_GPL vmlinux 0xc1d123ac of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0xc1d401aa bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xc1dd3787 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc1e16f2d irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xc200c5c3 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2234b10 rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0xc229771e device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc24439d9 fsl_spi_cpm_bufs_complete +EXPORT_SYMBOL_GPL vmlinux 0xc25f8dc6 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xc272fac4 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc281d832 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xc2a07c36 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc2c92fc1 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xc2ce8a6c device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xc2f66db2 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xc3172af5 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xc33ebf75 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc34e8c01 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xc34eb1e6 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xc359c9a8 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc3727792 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xc37b1ffd sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xc37dbf89 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xc38d68d0 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0xc3a8216e devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xc3c26532 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xc3c60666 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xc3d14837 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xc3d67211 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0xc3ddecd0 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc3eab1c2 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xc3eccec5 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xc3fab163 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc46a23a9 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc47dc84d sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xc47f257f __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc49f6ac0 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0xc4d2a69f ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xc4e79466 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xc4f9de5d rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0xc519b56c nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xc51ae7bd blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0xc51e124a fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc52d6bf7 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xc53158c3 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xc53f55ae devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc5560db3 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0xc564f21a sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc580531e extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc5878314 blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0xc58a1687 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xc5a2c19f idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc5b1bb10 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xc5c57548 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5ddecfd kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid +EXPORT_SYMBOL_GPL vmlinux 0xc6131712 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc627431a alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc62ca899 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xc638eec9 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc646f3d3 nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xc6584225 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xc6599514 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc66b7be4 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xc67b53d3 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xc68151b1 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xc6823707 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xc68aa252 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc68ae82c pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xc69464bd spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xc6957d29 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6b87686 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xc6be21a6 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xc6c04f77 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xc6d40bb8 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xc6e5f0cc input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc70e4b59 kvmppc_claim_lpid +EXPORT_SYMBOL_GPL vmlinux 0xc71c7bdf device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc7335bb7 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xc75ef797 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xc76d4b5f transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xc778acde cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0xc783d3e4 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xc78d148d irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7be1bfa __put_net +EXPORT_SYMBOL_GPL vmlinux 0xc7c25f41 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xc7c3d58c devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc7dea80d da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc830262c da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xc85bda83 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xc86a910e devm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0xc871fd30 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xc874c6e8 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xc8a7320d adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8b9b7b2 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0xc8cf6e0a inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8fc497f ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xc908a846 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc9163e8a percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0xc9277449 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xc93017bb netdev_default_l2upper_neigh_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc9525e7c gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc959a7ac fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xc964c7d2 kvmppc_handle_load +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc97e9bff register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xc9862ee1 devm_nsio_disable +EXPORT_SYMBOL_GPL vmlinux 0xc9ab500d kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0xc9b1f4b7 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xc9b2e679 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xc9c8c78b ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xc9d31664 clk_register +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9fa92a8 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xca320b9d isa_bridge_pcidev +EXPORT_SYMBOL_GPL vmlinux 0xca3ef789 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xca425e4c ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xca77b464 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca83b9e7 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xca9c1f6f crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcae87bb1 regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xcb051e96 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xcb0e03b9 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb16eda3 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0xcb2062b3 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xcb2a8de8 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xcb56b354 clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xcb5e4385 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xcb5ee621 hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xcb6250a7 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xcb7e3eaa to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xcb909339 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xcb97822f devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xcba83f90 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xcbcef38e rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xcbe025d8 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbe8ca0d rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcc089efd wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcc278209 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xcc28272c regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcc2ba30d list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xcc408c22 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0xcc44961f kvmppc_alloc_lpid +EXPORT_SYMBOL_GPL vmlinux 0xcc68b88d device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xcc85a884 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc8736af pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xcc87faa9 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xcc9807b4 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xccb26661 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xccbf4690 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd8f25d ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xccf44d04 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xccf53b0f md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xcd1645c2 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xcd1d84d5 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xcd381983 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xcd6492ab trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xcd662e0b pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd99faa7 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcda89160 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdbbe64d tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xcdbd0b30 security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdd575d8 of_css +EXPORT_SYMBOL_GPL vmlinux 0xcdebdb55 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xce2c459a cs47l24_irq +EXPORT_SYMBOL_GPL vmlinux 0xce44edfd __dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xce5372e9 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce6ffcac kvmppc_handle_store +EXPORT_SYMBOL_GPL vmlinux 0xce717fcb crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xce761f51 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xce922ae7 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xceb3afa1 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xcecc0154 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xceda15ce scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xceeb2468 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xcf2786e5 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcf3de648 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf75e100 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xcf81d7d1 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcfaffb54 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfb79121 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfc9cf89 debugfs_use_file_finish +EXPORT_SYMBOL_GPL vmlinux 0xcfd3221a clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xcfd67af2 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xcfdaf788 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcfebd2e8 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xcfefb440 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd00db268 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xd03603fa __of_genpd_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xd03b31a2 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd07579e5 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xd07df102 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xd09079d5 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xd098fc85 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xd0a2fe07 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd0ac0f4c debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd0b3b752 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0d1bf49 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xd0e4068b device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xd0ebf91c ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xd0ff9ff6 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xd10e0b64 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xd11b3a25 dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xd123ca7b devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xd129a678 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xd1324535 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xd134e1c8 i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd14d43a2 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd1575050 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0xd15fe835 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd18bffd9 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xd1bb97c4 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xd1d1b3ee trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xd1de20ca crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd2015104 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd20bf0f9 arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd215731b bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd221daba kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0xd2587238 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xd267c3dd sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd26f0c5f wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd284646d pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xd2a00b12 update_time +EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd2be6e46 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xd2d5bfcb key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd2fa39e7 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd2fa8e9e wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd31b125d blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xd329d536 spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0xd337042d crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xd34a4265 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xd34f686d spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0xd363958d __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xd36904a4 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xd3709bfe gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd37b27de wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd385dbc0 do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0xd39460ac usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xd398469c rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xd39a597b init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xd3bd1b18 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0xd3d0d977 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xd3d4f5fb sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd413e049 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xd419956a perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd429fa40 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd45d1e02 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xd4702f61 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xd4884646 max_gen_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0xd497eaf6 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xd4a69a62 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xd4a70256 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xd4b7935f kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c74480 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0xd4e3923b cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0xd4e7ae18 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xd4f333c3 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xd5022ad8 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd50888ac kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xd52021f6 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd531e0a4 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xd544ef05 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xd550122f ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xd55bdc8e devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xd56ea94f security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0xd56eb298 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xd57b6e4d crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xd59024b3 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0xd59ef122 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0xd5b85c98 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5c4618a phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xd5f6ab7b l3mdev_get_saddr +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd640eec8 of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0xd643e90c ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xd6519932 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xd652ee5c power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xd6649c69 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0xd66f909d fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd674159a sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xd6bb9098 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0xd6d122b0 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xd6fd7d95 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd705110d ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd728ddd3 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xd731ae94 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xd731e78c tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xd746a6ff vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xd748a32d xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd775a889 __pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd79262ad device_rename +EXPORT_SYMBOL_GPL vmlinux 0xd795e614 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xd7a88a8f ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7e53d2e vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0xd7e6c69a subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xd7f63658 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd7fc3e98 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xd7feebdd da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd8171568 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xd81caceb md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd82a3ca8 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xd850e047 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xd8514739 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xd85b759d devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd878e48e skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xd879d6df inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd88ff54f usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xd893db69 clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xd8a4d008 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xd8e52017 insert_resource +EXPORT_SYMBOL_GPL vmlinux 0xd8f11efc pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd908fdab security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0xd9243b36 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xd932a61e usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xd934b435 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0xd950b408 cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0xd950db70 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd96fa306 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xd98f0724 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xd9c68a86 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0xd9c90992 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9f0d8bf key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xda040c72 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xda0969f4 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xda0a4d22 mpic_msgr_enable +EXPORT_SYMBOL_GPL vmlinux 0xda39c416 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xda49bdc6 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xda50630a fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0xda50b555 of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0xda7a6f8e regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xda8cb2e5 threads_core_mask +EXPORT_SYMBOL_GPL vmlinux 0xda923d85 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xdab0b553 serial8250_em485_init +EXPORT_SYMBOL_GPL vmlinux 0xdab884b3 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xdabea763 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb0e61b3 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xdb2e4e30 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb5e167d of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0xdb64a27f gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0xdb6695a3 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xdb859f4a regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb93e818 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xdb98f870 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc1c379d __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0xdc227b3d crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xdc702664 of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc827a7e crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca6607e pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xdcac8c18 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdcc36a40 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xdccd7778 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xdce98439 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xdce9b093 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdcf79adc ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xdd029392 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd514df0 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0xdd5c1781 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xdd5d0d16 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xdd729424 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xdd83e58c do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0xdd977dbf platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xdd9a1af3 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xdda1fcdd gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xdda288e3 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xddbd90a4 clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd4327a tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddd964e8 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xdde78200 dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xddf7d408 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xddf83340 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xde1c6750 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xde2660bc pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xde35349a percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xde381393 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xde381b78 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde56627f mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0xde68734c blk_mq_reinit_tagset +EXPORT_SYMBOL_GPL vmlinux 0xde6abb24 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xde723093 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0xde73dd3b regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xde9463a6 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xdeadc26f skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xded413b0 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xdeee651b dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf18b734 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xdf196c4c blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xdf20118c crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xdf2a634c bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xdf2a860d ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xdf2a8c12 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xdf45b3aa device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xdf5490b5 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0xdf60218b of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0xdf7ac6bd devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xdf997c8d subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xdf9d444b crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xdfa2cb92 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0xdfac1efc bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xdfb24aec smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xdffe1f8a devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe036b3e9 mpic_msgr_put +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe0822c06 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0a5a618 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0bc67a0 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xe0be7a93 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0xe0c5b8e8 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0xe0d6b475 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xe0d8ce38 user_describe +EXPORT_SYMBOL_GPL vmlinux 0xe0f45e5b mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xe12fb18c usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0xe13725cc register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xe1546261 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xe16a3f88 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xe16cd231 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xe16ff2c6 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe19eb1c4 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe1b5ceef kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1d67cc8 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xe20233fc rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0xe209e49e tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xe2205cc6 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0xe22d553f of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xe22f0f83 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe231b9f7 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xe23a0db9 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe24d6849 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0xe255acef power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xe2730a79 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xe2774b37 fsl_spi_cpm_init +EXPORT_SYMBOL_GPL vmlinux 0xe28361e2 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe28fc928 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe2adfc88 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xe2c26d85 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xe2dd6432 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe30ef7e6 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xe3298c88 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xe33aa464 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0xe33b05c3 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xe342ab92 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xe357425e tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0xe36fe1a4 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0xe3e7bef0 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0xe3e84306 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xe3eb5945 max_gen_clk_ops +EXPORT_SYMBOL_GPL vmlinux 0xe3eb856f iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xe3f2db4f dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xe40e5d7d rcu_exp_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0xe42c049b aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4316644 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xe436ca90 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe496fd33 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe49fec38 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xe4b94526 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xe4bf9818 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xe4c031f8 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xe4d36431 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xe4d9071c crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe506593e ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xe51971f3 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xe5309a95 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xe541934e tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xe5501742 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xe56d88b8 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58eb00c kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5900691 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xe5a678c3 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xe5b001b6 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xe5b2b8c1 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xe5e18047 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xe5f01f6e i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xe5f26551 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xe6075ddb skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xe61283dc pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe62885d3 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xe62e9a4a of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0xe639ba6c i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe6712931 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xe68ac2c6 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xe6922378 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xe6943764 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6da0e02 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe6e0a20e usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6e30ad1 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xe6f15556 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xe70ba304 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xe7145917 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xe726c557 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xe72e29cf pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0xe73fb015 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xe7403666 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0xe748f649 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xe749c74c dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe755548b regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe755eeb4 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe75ca7a4 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xe7633fa8 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0xe768e5af fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe782fde4 devres_add +EXPORT_SYMBOL_GPL vmlinux 0xe793a85f md_stop +EXPORT_SYMBOL_GPL vmlinux 0xe79a41f5 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xe7b17a3e devres_release +EXPORT_SYMBOL_GPL vmlinux 0xe7decc73 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe7e84f79 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0xe7ecf269 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore +EXPORT_SYMBOL_GPL vmlinux 0xe7f6eb3f thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xe7fab0de __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe811f168 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe81cb2d6 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xe8217b99 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xe82aa4fe tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0xe84223a1 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe85053e9 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xe85c55e7 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe8747ad7 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0xe8776e0a tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xe87d3fa6 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xe8826918 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xe8a00e70 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xe8ae417b unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xe8b7b05d gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0xe91965c3 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xe921ecee class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe92aede6 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xe936d471 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9415941 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0xe9436c7f kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0xe9474bde dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xe951a738 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xe96e8c8b tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xe97a332b perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xe99189ad uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xe9c6f747 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9f27dc0 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xea0cc778 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xea0d2ca5 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea29727b watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea64581c skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xea69e6d0 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea9715a8 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xea98044f regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xea9eefcc single_open_net +EXPORT_SYMBOL_GPL vmlinux 0xeace49fd rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0xead3a1e5 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xead5f284 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xeaf9bc7a replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xeb044725 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xeb2a7f78 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xeb2c540e usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xeb41e43d bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xeb69598e netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeb7887f1 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0xeb80a3c3 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xeb8ae736 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xeb8ca281 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0xebd06062 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xebdb31d4 analyse_instr +EXPORT_SYMBOL_GPL vmlinux 0xebe86984 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebfb5a8a platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xebfd0813 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xec060a86 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec27502a to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0xec2753cc regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xec2e65c9 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xec318035 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xec4aa839 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xec72a6d5 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xec7cf46d relay_close +EXPORT_SYMBOL_GPL vmlinux 0xec92df1a regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xec933a38 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xecb20dc2 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0xecb9bee3 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xecbf17e9 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xecd51ec6 mpic_subsys +EXPORT_SYMBOL_GPL vmlinux 0xece4d5e3 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xecf71b0e powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xed06c5cb pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xed0f8126 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xed1f2500 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xed4820e5 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xed4bd3aa ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xed53ad6a ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xed5c2431 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xed5e71f9 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xed73688a __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xed778b47 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xedb95d8d tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xedc5bd55 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xedd13dda security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0xedf09efd ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xedfa6a72 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xee10a473 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xee1bec59 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xee52541b static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0xee52fe2b bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee723733 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xee81f505 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xee9ba8b7 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0xeebc6691 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xeec18bf7 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xeecfbb43 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run +EXPORT_SYMBOL_GPL vmlinux 0xeee9cf9b __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xeefbda2b dev_pm_opp_get_notifier +EXPORT_SYMBOL_GPL vmlinux 0xef162333 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xef2499cc wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0xef319eb5 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef4e3ae7 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0xef54aec1 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xef55729d devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xef613827 split_page +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef74ca06 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xef754a50 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xef8e4bee arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefb2dccd disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xefdedf35 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xeff26477 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xf00580d6 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0xf00c1dd6 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf0568723 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xf05d4296 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xf070cb9d usb_string +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf090a44c fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xf0928f63 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xf0938714 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xf094d67f fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xf0a341e8 blk_poll +EXPORT_SYMBOL_GPL vmlinux 0xf0bcf88b iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xf0c1ca0f rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xf0d8d0af invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf0fb0871 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xf12e758d nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xf17eebf4 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1c346b6 nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xf1c9276b da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xf1d57d56 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xf1e7ccc2 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xf1ea3013 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xf2022653 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf26abde6 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xf26cf402 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf27ab3f3 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xf29f89f7 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2af4c51 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xf2c50957 clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xf2f0c848 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xf2f59e4a pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xf2fc19d9 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xf2fc8aac adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf3012f6c rh_free +EXPORT_SYMBOL_GPL vmlinux 0xf305351d debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30b2b15 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xf30bf7ea wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf31f924c posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xf326a86d skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf334eff1 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0xf33ac357 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xf344111a crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xf34477da irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0xf34ae2b0 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf38eaacc event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3c5fddf pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xf3d0a1e8 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3f7ab9a sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xf444d56a cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xf46357df usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4a84280 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf4abaa92 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4b9c9f4 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xf4ce405a pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xf4d41b71 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf4da3546 kvmppc_init_lpid +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf51b3a75 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xf523f62c of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xf5295534 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xf5363fff fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf54f1632 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xf5504cbc dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf56678d3 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xf573839d bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0xf581f3c7 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xf5930f18 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5ac93d1 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xf5bcf1b2 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xf5db5169 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xf5e7f053 rh_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf6247675 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xf630bff8 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xf663ed78 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xf69a0e65 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0xf6b037f2 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6ba8025 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6dcd44e dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6f031c7 get_device +EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks +EXPORT_SYMBOL_GPL vmlinux 0xf7056950 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xf716a0ef __of_genpd_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xf73d638f devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xf75d8708 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xf76f0c4a irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xf77d6764 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0xf782d736 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xf78a4632 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xf7aeb18f screen_pos +EXPORT_SYMBOL_GPL vmlinux 0xf7cd6294 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xf7d14a71 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xf7d6ba6c pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0xf7eb43ae sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0xf7ef0222 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0xf7f8846a msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0xf81afa9b pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf84b66ee of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0xf87283ec spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf874d4b7 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf882e3a7 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf8933eae __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xf8a62f96 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xf8c23a9e __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xf8c3bb29 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xf8c85e58 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xf8e15d9b platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xf8e4e4c0 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0xf8e5c3fb serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f540f9 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xf8fb506a subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf91a5c6a spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0xf91d8454 kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xf91dcc5e bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf93871f5 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf954c538 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0xf95cf913 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xf9669a2c ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xf966aa65 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xf977c14c ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf989e9c2 pcibios_free_controller_deferred +EXPORT_SYMBOL_GPL vmlinux 0xf990c5c3 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9bc71d3 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xfa15733a security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa22bbd7 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xfa5643fe of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0xfa58e55b usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xfa748c14 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0xfa7f5b50 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xfa9759d5 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xfac97b12 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfad006d5 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0xfadf3876 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL_GPL vmlinux 0xfaf3ab0b arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0xfb113322 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xfb11454f __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xfb1684c4 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xfb30949f tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb52b77d __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0xfb68232f gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xfb6bb553 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb83db03 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xfb8ffbb7 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xfb931d36 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xfbadb3f3 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0xfbb0e680 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbe2ddca remove_resource +EXPORT_SYMBOL_GPL vmlinux 0xfc012703 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc0518d4 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xfc23f767 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xfc2eb261 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xfc3d16d5 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xfc517d83 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfc58d732 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xfc5b4a2e kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xfc740267 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xfc759359 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xfc79a88c skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xfc869ce4 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xfca64b46 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xfcb04d22 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xfcc4e3e3 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0xfcd33946 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xfcdba3d7 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xfce12c33 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xfce7f30c gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0xfd05c8e6 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xfd10b94d rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xfd27d726 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0xfd3b0631 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xfd536dcf clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xfd5c5173 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0xfdd3fbbc __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xfdde241f pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xfdf19037 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xfe12f9fc platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfe355d9d device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfe3c8ee0 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xfe5522e8 clk_hw_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xfe9646cc led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfec5f414 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xfec967e8 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xff035575 dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff1d5890 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xff21ac8b wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff63e2d9 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xff82e6af __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xff8862d7 rh_get_stats +EXPORT_SYMBOL_GPL vmlinux 0xffa77768 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xffaaf9b9 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xffaff46d kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffbcd5cd bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xffd42531 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xffe17893 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xffe5f947 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xffed67aa clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xfff75dc1 kvmppc_pr_ops +EXPORT_SYMBOL_GPL vmlinux 0xfffa2523 __fsnotify_inode_delete --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/powerpc/powerpc-e500mc.compiler +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/powerpc/powerpc-e500mc.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 6.2.0-5ubuntu12) 6.2.0 20161005 --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/powerpc/powerpc-e500mc.modules +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/powerpc/powerpc-e500mc.modules @@ -0,0 +1,4538 @@ +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_dw +8250_moxa +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +BusLogic +DAC960 +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +ac97_bus +acard-ahci +acecad +acenic +act200l-sir +act8865-regulator +act8945a +act8945a-regulator +act8945a_charger +act_bpf +act_connmark +act_csum +act_gact +act_ife +act_ipt +act_meta_mark +act_meta_skbprio +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5761 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7606_par +ad7606_spi +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +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 +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adf7242 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16209 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7170 +adv7175 +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +afe4403 +afe4404 +affs +ah4 +ah6 +aha152x_cs +ahci +ahci_ceva +ahci_platform +ahci_qoriq +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airo_cs +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +ali-ircc +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am2315 +am53c974 +ambassador +amc6821 +amd +amd5536udc +amd8111e +amdgpu +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 +anatop-regulator +ansi_cprng +anubis +aoe +apbps2 +apds9300 +apds9802als +apds990x +apds9960 +appledisplay +appletalk +appletouch +applicom +aquantia +ar1021_i2c +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arcpgu +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +asc7621 +ascot2e +asix +ast +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atlas-ph-sensor +atm +atmel +atmel-flexcom +atmel-hlcdc +atmel_captouch +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atusb +atxp1 +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avm_cs +avma1_cs +avmfritz +ax25 +ax88179_178a +axnet_cs +axp20x +axp20x-i2c +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_epp +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-keypad +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7xxx +bcm87xx +bcma +bcma-hcd +bcmsysport +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780 +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bma220_spi +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmc150_magn_i2c +bmc150_magn_spi +bmg160_core +bmg160_i2c +bmg160_spi +bmi160_core +bmi160_i2c +bmi160_spi +bmp085 +bmp085-i2c +bmp085-spi +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bonding +bpa10x +bpck +bpck6 +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +bq27xxx_battery_i2c +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt3c_cs +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btuart_cs +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +caam +caam_jr +caam_pkc +caamalg +caamhash +caamrng +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +cap11xx +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +cec +cec-edid +ceph +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipone_icn8318 +chipreg +chnl_net +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +clip +clk-cdce706 +clk-cdce925 +clk-cs2000-cp +clk-max77686 +clk-max77802 +clk-palmas +clk-pwm +clk-rk808 +clk-s2mps11 +clk-si514 +clk-si5351 +clk-si570 +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 +colibri-vf50-ts +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 +configfs +contec_pci_dio +cordic +core +cp210x +cpia2 +cpm_uart +cpsw_ale +cpu-notifier-error-inject +cpufreq_schedutil +cramfs +crc-itu-t +crc32_generic +crc7 +crc8 +cryptd +crypto_user +cryptoloop +cs3308 +cs5345 +cs53l32a +csiostor +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +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 +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cxgbit +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +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-regulator +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 +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +ddbridge +de2104x +de4x5 +decnet +deflate +defxx +denali +denali_dt +denali_pci +des_generic +designware_i2s +designware_pcm +devlink +dgnc +dh_generic +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +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-verity +dm-zero +dm1105 +dm9601 +dmfe +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +donauboe +dp83848 +dp83867 +dpt_i2o +drbd +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1803 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +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-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +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_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc2_pci +dwc3 +dwc3-of-simple +dwc3-pci +dwc_eth_qos +dwmac-generic +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +earth-pt1 +earth-pt3 +eata +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 +ecdh_generic +echainiv +echo +edac_core +edt-ft5x06 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efs +egalax_ts +egalax_ts_serial +ehset +elan_i2c +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emac_arc +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_pcmcia +ems_usb +emu10k1-gp +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +eni +enic +epat +epia +epic100 +eql +esas2r +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max3355 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f75375s +f81232 +fakelb +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_ssd1289 +fb_ssd1305 +fb_ssd1306 +fb_ssd1325 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdp +fdp_i2c +fealnx +ff-memless +fhci +fid +firedtv +firestream +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fl512 +fld +flexcan +flexfb +floppy +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +fmvj18x_cs +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fou6 +fpga-mgr +freevxfs +friq +frpw +fs_enet +fsa9480 +fscache +fsl-corenet-cf +fsl-diu-fb +fsl-edma +fsl_elbc_nand +fsl_hypervisor +fsl_ifc_nand +fsl_lpuart +fsl_pq_mdio +fsl_qe_udc +fsl_upm +fsl_usb2_udc +fsldma +ft6236 +ftdi-elan +ftdi_sio +ftl +ftsteutates +fujitsu_ts +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 +gcm +gdmtty +gdmulte +gdth +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +gf2k +gfs2 +ghash-generic +gianfar_driver +gianfar_ptp +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-addr-flash +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-altera +gpio-amd8111 +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-fan +gpio-grgpio +gpio-ir-recv +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-max77620 +gpio-mc33880 +gpio-mcp23s08 +gpio-menz127 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-pisosr +gpio-rdc321x +gpio-regulator +gpio-syscon +gpio-tpic2810 +gpio-tps65086 +gpio-tps65218 +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gpio_wdt +gr_udc +grace +grcan +gre +grip +grip_mp +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 +gtco +gtp +guillemot +gunze +gxt4500 +hackrf +hamachi +hampshire +hanwang +hci +hci_uart +hci_vhci +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdma +hdma_mgmt +hdpvr +he +helene +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hi6421-pmic-core +hi6421-regulator +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-asus +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-cmedia +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-led +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +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-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hih6130 +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi504_nand +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horizon +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hp03 +hp100 +hp206c +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +htc-pasic3 +htu21 +huawei_cdc_ncm +hwa-hc +hwa-rc +hwmon-vid +hx8357 +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-cbus-gpio +i2c-cpm +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-emev2 +i2c-gpio +i2c-hid +i2c-i801 +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-mpc +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-reg +i2c-nforce2 +i2c-ocores +i2c-parport +i2c-parport-light +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-xiic +i40e +i40evf +i40iw +i5k_amb +i6300esb +i740fb +i82092 +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibmaem +ibmpex +icp_multi +icplus +ics932s401 +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_gen2 +idt_gen3 +idtcps +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ifi_canfd +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-hrtimer +iio-trig-interrupt +iio-trig-loop +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +img-i2s-in +img-i2s-out +img-parallel-out +img-spdif-in +img-spdif-out +imm +imon +ims-pcu +imx074 +imx6ul_tsc +imx_thermal +ina209 +ina2xx +ina2xx-adc +ina3221 +industrialio +industrialio-buffer-cb +industrialio-configfs +industrialio-sw-device +industrialio-sw-trigger +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int51x1 +intel-xway +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +interval_tree_test +inv-mpu6050 +inv-mpu6050-i2c +inv-mpu6050-spi +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +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_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_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 +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipwireless +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irtty-sir +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it913x +itd1000 +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +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 +khazad +kingsun-sir +kl5kusb105 +kmx61 +ko2iblnd +kobil_sct +ks0108 +ks0127 +ks7010 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksocklnd +ksz884x +ktti +kvaser_pci +kvaser_usb +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan78xx +lanai +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-adp5520 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-is31fl32xx +leds-ktd2692 +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libceph +libcfs +libcomposite +libcrc32c +libcxgb +libcxgbi +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +litelink-sir +lkkbd +ll_temac +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lmc +lms283gf05 +lms501kf03 +lmv +lnbh25 +lnbp21 +lnbp22 +lnet +lnet_selftest +lockd +locktorture +lov +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc2990 +ltc3589 +ltc3815 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lustre +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +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 +mac_hid +macb +macsec +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mailbox-test +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577-regulator +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max30100 +max3100 +max31722 +max31790 +max3421-hcd +max34440 +max44000 +max517 +max5487 +max5821 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77620-regulator +max77620_wdt +max77686-regulator +max77693-haptic +max77693-regulator +max77693_charger +max77802-regulator +max8649 +max8660 +max8688 +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 +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4131 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +md5-ppc +mdc +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-gpio +mdio-hisi-femac +mdio-mux +mdio-mux-gpio +mdio-mux-mmioreg +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +melfas_mip4 +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +metro-usb +metronomefb +mf6x4 +mga +mgc +michael_mic +micrel +microchip +microread +microread_i2c +microtek +mii +mii-bitbang +minix +mip6 +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma7455_core +mma7455_i2c +mma7455_spi +mma7660 +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_block +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpc85xx_edac +mpl115 +mpl115_i2c +mpl115_spi +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi001 +msi2500 +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6323-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-quadspi +mtk-sd +mtk_ecc +mtk_nand +mtouch +multipath +multiq3 +musb_hdrc +mv643xx_eth +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxc6255 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxser +mxuport +myri10ge +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nand +nand_bch +nand_ecc +nand_ids +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +ncpfs +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netdev-notifier-error-inject +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +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_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfp_netvf +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_exthdr +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_ghc_ext_dest +nhc_ghc_ext_frag +nhc_ghc_ext_hop +nhc_ghc_ext_route +nhc_ghc_icmpv6 +nhc_ghc_udp +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +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_tio +ni_tiocmd +ni_usb6501 +nicstar +nilfs2 +niu +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-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 +nosy +notifier-error-inject +nouveau +nozomi +nps_enet +ns558 +ns83820 +nsc-ircc +nsp32 +nsp_cs +ntb +ntb_netdev +ntb_perf +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nvidiafb +nvme +nvme-core +nvme-fabrics +nvme-loop +nvme-rdma +nvmem_core +nvmet +nvmet-rdma +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxt200x +nxt6000 +obdclass +obdecho +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_xilinx_wdt +ofpart +old_belkin-sir +omap4-keypad +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orangefs +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osc +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +palmas-pwrbutton +palmas-regulator +palmas_gpadc +pandora_bl +panel +panel-lg-lg4573 +panel-panasonic-vvx10f034n00 +panel-samsung-ld9040 +panel-samsung-s6e8aa0 +panel-sharp-lq101r1sx01 +panel-sharp-ls043t1le01 +panel-simple +parade-ps8622 +paride +parkbd +parport +parport_ax88796 +parport_cs +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_pcmcia +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 +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-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 +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +pdc_adma +peak_pci +peak_pcmcia +peak_usb +pegasus +pegasus_notetaker +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-exynos-usb2 +phy-generic +phy-gpio-vbus-usb +phy-isp1301 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-tahvo +phy-tusb1210 +physmap +physmap_of +physmap_of_versatile +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pn533 +pn533_i2c +pn533_usb +pn544 +pn544_i2c +pn_pep +poly1305_generic +port100 +powermate +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_core +pps_parport +pptp +prism2_usb +ps2mult +psmouse +psnap +pt +ptlrpc +ptp +pulse8-cec +pulsedlight-lidar-lite-v2 +pv88060-regulator +pv88080-regulator +pv88090-regulator +pvrusb2 +pwc +pwm-atmel-hlcdc +pwm-beeper +pwm-fan +pwm-fsl-ftm +pwm-lp3943 +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pwrseq_emmc +pwrseq_simple +pxa27x_udc +qcaspi +qcaux +qcom-spmi-iadc +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom_spmi-regulator +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas408 +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qoriq-cpufreq +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quatech_daqp_cs +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +ray_cs +raydium_i2c_ts +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +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-behold +rc-behold-columbus +rc-budget-ci-old +rc-cec +rc-cinergy +rc-cinergy-1400 +rc-core +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-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-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +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-pctv-sedna +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-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-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rcuperf +rdc321x-southbridge +rdma_cm +rdma_rxe +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +reboot-mode +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +reset-ti-syscon +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio-scan +rio500 +rio_cm +rio_mport_cdev +rionet +rivafb +rj54n1cb0c +rk808 +rk808-regulator +rmd128 +rmd160 +rmd256 +rmd320 +rmi_core +rmi_i2c +rmi_spi +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-as3722 +rtc-bq32k +rtc-bq4802 +rtc-cmos +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-em3027 +rtc-fm3130 +rtc-hid-sensor-time +rtc-hym8563 +rtc-isl12022 +rtc-isl12057 +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-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-r9701 +rtc-rc5t583 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx6110 +rtc-rx8010 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-snvs +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 +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +salsa20_generic +samsung-keypad +samsung-sxgbe +sata_dwc_460ex +sata_fsl +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sbp_target +sbs-battery +sc16is7xx +sc92031 +sca3000 +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +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_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 +scsi_transport_srp +sctp +sctp_diag +sctp_probe +sdhci +sdhci-of-arasan +sdhci-of-at91 +sdhci-of-esdhc +sdhci-of-hlwd +sdhci-pci +sdhci-pltfm +sdhci_f_sdh30 +sdio_uart +sdricoh_cs +sedlbauer_cs +seed +sensorhub +ser_gigaset +serial2002 +serial_cs +serio_raw +sermouse +serpent_generic +serport +ses +sfc +sgy_cts1000 +sh_veu +sha1-powerpc +sha3_generic +shark2 +shpchp +sht15 +sht21 +sht3x +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sii902x +sil164 +silead +sir-dev +sis +sis190 +sis5595 +sis900 +sis_i2c +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +sl811_cs +slcan +slic_ds26522 +slip +slram +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smc91c92_cs +smipcie +smm665 +smsc +smsc-ircc2 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4117 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-als4000 +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-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-firewire-digi00x +snd-firewire-lib +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-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-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-pdaudiocf +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-ac97 +snd-soc-acp-pcm +snd-soc-adau1701 +snd-soc-adau7002 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-bt-sco +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs35l33 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +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-cs4349 +snd-soc-cs53l30 +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-imx-audmux +snd-soc-inno-rk3036 +snd-soc-max98504 +snd-soc-max9860 +snd-soc-pcm1681 +snd-soc-pcm179x-codec +snd-soc-pcm179x-i2c +snd-soc-pcm179x-spi +snd-soc-pcm3168a +snd-soc-pcm3168a-i2c +snd-soc-pcm3168a-spi +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rl6231 +snd-soc-rt5616 +snd-soc-rt5631 +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-simple-card-utils +snd-soc-spdif-rx +snd-soc-spdif-tx +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-tas5086 +snd-soc-tas571x +snd-soc-tas5720 +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +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-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8960 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-xtfpga-i2s +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-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 +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +softing_cs +solo6x10 +solos-pci +sony-btf-mpx +soundcore +sp2 +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedtch +spi-altera +spi-axi-spi-engine +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-loopback-test +spi-nor +spi-oc-tiny +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-sc18is602 +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spmi +sr9700 +sr9800 +ssb +ssb-hcd +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +ssu100 +st +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st95hf +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_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 +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stm_heartbeat +stmmac +stmmac-platform +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sun4i-codec +sun4i-i2s +sun4i-spdif +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +surface3_spi +svgalib +sx8 +sx8654 +sx9500 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_usb +synclink +synclink_cs +synclink_gt +synclinkmp +syscon-reboot-mode +sysv +t1pci +t5403 +talitos +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 +tc358767 +tc3589x-keypad +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_nv +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teles_cs +teranetics +test-kstrtox +test-string_helpers +test_bitmap +test_bpf +test_firmware +test_hash +test_hexdump +test_module +test_power +test_printf +test_static_key_base +test_static_keys +test_udelay +test_user_copy +test_uuid +tg3 +tgr192 +thermal-generic-adc +thmc50 +thunderbolt +ti-adc081c +ti-adc0832 +ti-adc128s052 +ti-ads1015 +ti-ads8688 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +torture +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm-rng +tpm_atmel +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tpm_tis_core +tpm_tis_spi +tpm_vtpm_proxy +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65086 +tps65086-regulator +tps65090-charger +tps65090-regulator +tps65217 +tps65217-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw686x +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish_common +twofish_generic +typhoon +u132-hcd +uPD98402 +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucc_geth_driver +ucc_uart +ucd9000 +ucd9200 +uda1342 +udc-core +udc-xilinx +udf +udl +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-dwc +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_fsl_elbc_gpcm +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +umc +umem +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 +us5182d +usb-serial-simple +usb-storage +usb3503 +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_uac2 +usb_f_uvc +usb_gigaset +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 +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +v4l2-tpg +vcan +vcnl4000 +veml6070 +ves1820 +ves1x93 +veth +vf610_adc +vf610_dac +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +vhost_vsock +via +via-ircc +via-rhine +via-sdmmc +via-velocity +via686a +videobuf-core +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videocodec +videodev +vim2m +viperboard +viperboard_adc +virt-dma +virtio-gpu +virtio-rng +virtio_blk +virtio_input +virtio_net +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vme_ca91cx42 +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vrf +vringh +vsock +vsxxxaa +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5100-spi +w5300 +w6692 +w83781d +w83791d +w83792d +w83793 +w83795 +w83977af_ir +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +wanxl +warrior +wbsd +wcn36xx +wd719x +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wilc1000 +wilc1000-sdio +wilc1000-spi +wimax +winbond-840 +windfarm_core +wire +wishbone-serial +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wl3501_cs +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 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x_tables +xc4000 +xc5000 +xcbc +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xhci-plat-hcd +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx_emaclite +xilinx_ps2 +xilinx_uartps +xillybus_core +xillybus_of +xillybus_pcie +xirc2ps_cs +xircom_cb +xor +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +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 +xz_dec_test +yam +yealink +yellowfin +yenta_socket +yurex +z3fold +zatm +zaurus +zd1201 +zd1211rw +zforce_ts +zhenhua +ziirave_wdt +zl10036 +zl10039 +zl10353 +zl6100 +zr36016 +zr36050 +zr36060 +zr36067 +zr364xx +zram +zynq-fpga --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/powerpc/powerpc-smp +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/powerpc/powerpc-smp @@ -0,0 +1,18963 @@ +EXPORT_SYMBOL crypto/mcryptd 0x327c4a8d mcryptd_arm_flusher +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0x96a097fd suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0x3a36d0a1 uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x5d21dd11 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0x5fb8cc08 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 0x012648e6 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x0df58c2d paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x511d6868 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x5be5a42f paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x625b5f50 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x685e2046 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x8cd4dd4c pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x917f7fa0 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x95e69ab0 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0xa68ed39b pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xc33eb42a pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xd5e8815e pi_connect +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x2760a7e1 btbcm_patchram +EXPORT_SYMBOL drivers/char/apm-emulation 0x129e74f2 apm_get_power_status +EXPORT_SYMBOL drivers/char/apm-emulation 0xdf3329b8 apm_queue_event +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x04e12c19 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x42ebc335 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4dde7206 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaff2d65e ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe58bb04d ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe65786f8 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x159870ee st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x3137f554 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x8d2c2657 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xf8ef6625 st33zp24_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x16ccd6a9 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x524a93f3 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x7f7de056 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x29fc594c dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x2a0c53cd dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x57918b75 dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x5a912aee dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xa699e8c1 dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xc2a40d47 dw_dma_get_src_addr +EXPORT_SYMBOL drivers/edac/edac_core 0xa0c519d2 edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x03841a12 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0ae882d1 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1aa51cbf fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x300a89b5 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x33cbec50 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x35b9b727 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x688de2ea fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6ae57685 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6e30ef61 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7781c85d fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x84ccb557 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x855eb0ae fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8693515c fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x88157bcf fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8ff4affa fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x936b3a8c fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa3b4ab70 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa644fca1 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa6611981 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa79663ec fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa8800649 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb7a61e06 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc61eb7fb fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe0c5a6fe fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe780613b fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xedf6327c fw_iso_context_stop +EXPORT_SYMBOL drivers/fmc/fmc 0x1b257934 fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x3a06a3fe fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x51654ec4 fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0x89303e64 fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0x96d05af5 fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0xa034d1e2 fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xa58e7b59 fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xae62cf4c fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0xae8484f0 fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0xb53beae9 fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0xec609c43 fmc_reprogram +EXPORT_SYMBOL drivers/gpu/drm/drm 0x000e05a8 drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00a8e026 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x013d783f drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03e5168b drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x044c7a06 drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05725de8 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0686368d drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06a400f3 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x075b8e1f drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0857e17e drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b3bed5a drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bf6d939 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d8b8f5a drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f6f010c drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10471901 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10d421e9 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16b76e67 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18a68b6e drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x191e5bfb drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a3407d9 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1aa4ecf7 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bb2ffcf drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e826021 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e8d9005 drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f601c10 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fe10057 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2139d309 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2193466a drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22018f40 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x224350a5 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22e0332e drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23874754 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x250671c3 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25fa5134 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2689dbe0 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26d24d97 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x273a3a5a drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27927846 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27a5d7af drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2919ee9d drm_mode_object_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29540c96 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x297341f4 drm_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b19c5e9 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c0e2595 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c39fc67 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c94a218 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c9c2788 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d1bf05d drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2de0ffc6 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e80fa60 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fcc79c0 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30b4fbd1 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30f8443e drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31d4b6f7 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3206e798 drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x321810c7 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x322e9e6d drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32391ec3 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32e917d3 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3301e044 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36359c06 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36a8834b drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37465315 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x389c015f drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39469f66 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a64b374 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b374f33 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c2ebb11 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d8283c8 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3db0b421 drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dc4dec5 drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3df90cf4 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eca9f69 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f1ff7e6 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x403aba8f drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41d117bf drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42570392 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4399401f drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43e56f73 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44092971 drm_gem_object_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44c0bfed drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x454020bd drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45ac45dc drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45f02c39 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45f6f637 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x471eef3d drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47384c80 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4787622f drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47a0012d drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x485a79d2 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4917063d drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x493c4b93 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a11440f drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a2002af drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ab0847d drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bb5fa67 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bc69e4c drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cbca3bd drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e2b0240 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e42a35d drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f076de8 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50907f34 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50963c47 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50b2119e drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x512a46e2 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51db353a drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x527c6712 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52dbdeef drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55913b83 drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55d0488b drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57e8207e drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x599c75fb drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a268d54 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a2f0a43 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a6c337c drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e62cc94 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60262b8c drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6072deec drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60798162 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60a6ebb6 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60a89cbd drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6191efc2 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62d52cd8 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63df88ea drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64324187 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x646d75e0 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64b8648a drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6714d067 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67f19872 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69f4c9a0 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b6ebeb4 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c20237b drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cab35d0 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cb9cdc3 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cd9917b drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e49e98a drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e5842bd drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70174500 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7179fec9 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74767d7e drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75ae3cd6 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76f5424e drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77fae637 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7901d5ce drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7931ba74 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79cb3cfe drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b9bbc8a drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cfc2fa7 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d1697dc drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d3955c8 drm_crtc_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d3a0ad8 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e31901b drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e9ca4c9 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ebc3915 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f4229b8 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fd539dc drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x805d4138 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8082ab83 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x813904d6 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82a25d89 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82f85352 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x837c85bb drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85bcf7f6 drm_mode_object_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85e64a75 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x865c73fb drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88486816 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88bf781c drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x894e6c7a drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89bfe374 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89dc03ba drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ca81aaa drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dd36747 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de182ec drm_gem_object_unreference_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ec5028b drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ef601c4 drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f0c2fb9 drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fd00dc4 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9147effa drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9180179d drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94d91140 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x951551a6 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x955c437b drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96d63839 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9723fa46 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x989251b0 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b585f4b drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f6a559b drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa013a52e drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0890e8c drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c1c15f drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2d626f1 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa335d2d8 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa34eb4ed drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3ae8d63 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3b1c598 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3f74f35 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5264288 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5a234b7 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5ea38c5 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7e83eaa drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa87b8011 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa89d42b8 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa92ef80b drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab96b1dd drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabc12f39 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac2aa1b0 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac3150bd drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacf60b72 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad271377 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadedeb0a drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafc24c5c drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafd86779 drm_crtc_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb09d8b73 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb21236d5 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb37d51ad drm_format_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb474132d drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb49f0774 drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4bb54d2 drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5f2eb65 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6663c4f drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6b08227 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6f34dc1 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb74ca615 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb807ba1d drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb80e49c6 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8f717d0 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb95be9c7 drm_crtc_commit_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb99c3158 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9d6c8a2 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbba789d0 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc4a15f4 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc962c1e drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbedbbf72 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3c4a380 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5180994 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6a87372 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7747fd8 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7d1ee52 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7f9220d drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc851155a drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8af6249 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc95da547 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9612533 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc1df15f drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd4d71eb drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xced99f34 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf49441c drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfa7f56e drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0903f15 drm_format_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd35b8514 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4578a3d drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd540f0ac drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd62259bd drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd62432d0 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd67e4ab4 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7284310 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8f3a18d drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd92ec4bb drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9398426 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc18bc33 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdca18ec2 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd52f2e5 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde11a13c drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfbb6cef drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfe2d639 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0d813ce drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1c73f4a drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe35a7e28 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe39986ea drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe44779e2 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe44cec72 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5f5799b drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7f2bd76 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7fcd169 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe85e1d68 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8f06200 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb87c5ef drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef928316 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf04bc31b of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1876bae drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b098be drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf25ca844 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2bbe52b drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3748b09 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf59b4e91 drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf60c7747 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf860bd8b drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8b0498e drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfadd59f5 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd7b8204 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe321652 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff56ab61 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffa812f8 drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02453820 drm_fbdev_cma_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0262f579 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0393bb1c drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x039f7750 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0402c1e9 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0545a249 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09556d0b drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0aea57f1 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c06aaf7 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d0fb3e1 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f8f4dbf drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12204d00 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1245ec8e drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14f9aaa5 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18895c9b drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19da69c3 drm_fb_cma_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19eb2bc2 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b2b7a01 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1bb204fd drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d7ec064 drm_fbdev_cma_create_with_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1da1f8ff drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dddafae drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22371ffa drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23c9b73a drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2463f03e drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24b38413 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x269c7d10 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c1f2acd drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ed8164c drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ff03f62 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30070fae drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30abe941 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31f87559 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31fba91b drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x330b369d drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x388f43ca drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38b7df6f drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38edd0d4 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c880091 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e505af5 drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ea5c1a2 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fdae4cd drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4269e13b drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x435db3e9 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43979449 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43f38ac8 drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45c37d30 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48b8348f drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a2eb96b drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4aa42a88 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fcdc2d3 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fd5d96f drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51706dba drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51c28165 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5218912f drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5247436d drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52d1e3db drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x554e1bc6 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57c82a1b drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x587cb919 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b9d431f drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5de3ca1e drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e6cf920 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f8226fc drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x613880f3 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61749e51 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6293ca5d drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64d3e5a2 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x688a751b drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6963b5e9 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b25c076 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c47f27a __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cd9b2ce drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fc53fce drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71b29842 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71e8d1e5 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72ab3d26 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73c919c9 drm_atomic_helper_best_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75cd9c7c drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75e14c74 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76b34efb drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x778b029f drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ad0048e drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b46b1f5 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d265754 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f925490 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80721cb3 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x810d7d35 drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x814981b9 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x849690d5 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8592851d __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x888cf4a0 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89d39506 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c6dc452 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9000a9be drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90b89426 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x928e99f1 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92f89bf9 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x956a9c1b drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x979b13de drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97a31169 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x982740b2 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98ac6129 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f4dc6b8 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa00811e3 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa12d8c6f drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa14cbf0d drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2c89ba1 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5e5f4b5 drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa935b2a2 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac5e7b76 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf986b03 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0bba4dd drm_fb_cma_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb64115c2 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb653f33a drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6db24ba drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb94a5c2c drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba7285e4 drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbb930df drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc86e036 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbce85ecd drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe301b34 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf3098d2 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf735dbf drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf881294 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0cf4f5b drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2d4ac79 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3295650 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc43c8224 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc453e689 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc511246b drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c2508c drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c2acc4 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6980f4a drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc831b93c drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc89b7a89 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce8a1b93 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfe5fac9 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd20ed0bf drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd315cfea drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3b1114a drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd98e91d6 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb81f2b1 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf02702d drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0a78c38 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2d30339 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3d33fbc drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe42d1607 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe802db8c __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf301adf6 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf31ad135 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3911ea1 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6191e21 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8d1ea18 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb2459a9 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc61f5bc drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc970bd2 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff1580b7 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x045ad5c7 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05838cef ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a0b9682 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x11603f08 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1d32cfa0 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21c65052 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2becb358 ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c400f59 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2e70e5c9 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3364d2f7 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x35ea6965 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3865c695 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3e16db45 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3eda8985 ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x42c8cdd5 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x485a5bc0 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d848776 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x52790237 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x53ef5413 ttm_bo_default_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a8fdfea ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60a0ea24 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6555b793 ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x680c195e ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x69d500d5 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6adbda68 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e152795 ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x73134d57 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x76b2982a ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7949f151 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7cc25954 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d55da85 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7de6b56d ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e5c5877 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x82bc9d45 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x838d1c6f ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84a13931 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x88a985d5 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89a443de ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8a65bd32 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8f3571fa ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9fae2ae4 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa0ab60de ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2a129fd ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa73de2a9 ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaa942ec0 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xab3e7e8e ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xac90bc5d ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae5e5f52 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb185d878 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb4ded97a ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb5d3a2b7 ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb6145142 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0c2da ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc8c75be7 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcb9f3d21 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc58c1eb ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc817f23 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf0f9e5d ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0e73b81 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd6984832 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd712d238 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7b45487 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7f51742 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdf55bf91 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe0c0c82f ttm_bo_pipeline_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe3377108 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe979fbc0 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xec0a064c ttm_bo_default_swap_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeec797c7 ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe98f81a ttm_bo_mem_compat +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x1efffd4a i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x494ad7cd i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x6006ead2 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x4dc693e7 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xade55b3a i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x29f48fd5 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0218a588 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x028e80e4 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0634cf73 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x07cf4db9 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x08ad7d61 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0a4fdc74 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x101c348a mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1b33f45b mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x227f49da mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2e5b15ca mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5eedbd5b mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x67d2dd04 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xabaef0f4 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbaba79c3 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xce33457e mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcee7111d mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x236fabf5 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xd5f317d9 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x1684f331 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xb97ea7ef iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x5b05884e iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x6677c88a iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x71e05d7d devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xc864280e devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x6a28cf1a hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x8fc46ae4 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x9c165dd5 hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa1c85ab2 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc35a84ae hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc3f04c0e hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x1a9061b7 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x3ccf3bd5 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xd152346c hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xdf5acb9e hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4a23735d ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4a2e2eba ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x54f426ef ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa96e01f3 ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc45b29ff ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc4caa1ed ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xcf04a11a ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xdd1dc054 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe754b7aa ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x0a0778d9 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x1b294122 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x37ebdefa ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x7dce1aa6 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xe9a1834e ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x1bccc9d8 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x37e7ab3e ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xb40b3570 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x03c90065 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x11f8a675 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1a01ee49 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3209e10a st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3769db39 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x488b1ead st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5304a397 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x59187fa6 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x734ee804 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7c8f8bf9 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8f7a7b3d st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa50210c0 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xac5c5a1f st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xba1145e0 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe74faafc st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfc241ef0 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x3f77373b st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xbe4e1c54 st_sensors_of_i2c_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x5e9c196e st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x1a1b1d3c st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x96d7abae st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x49717c08 adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xf8d8443d adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x63f10135 bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x022b425e iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x08c977f1 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x09ce6089 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x0fd4c67a iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x238bb339 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x261fdcc5 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x51eb98a1 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x6982c739 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x69c88412 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x6a1dbb4b of_iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0x6a20805b iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x6c12023f iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0x7415ae66 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x7cd00e42 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x82a69354 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xc4411ee6 iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0xcd425e43 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0xcf4add15 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe4bca9be iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0xf4b96ae9 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x87eea803 iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x1ee87449 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x33cd2372 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x4ee4c26f iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xd72983ca iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x306a8d73 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x52a16a64 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x88cd15b0 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xcd3311b5 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xc4b0bde2 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xfa6fe9b0 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x02258ba0 bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x8e8bb0b1 bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xa7f4d8b8 bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xb9540749 bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x73a55135 hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x807db8d1 hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x9246f91f hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x9ac20a97 hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x88436643 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x8f2498ae st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xa7541fae ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xdb2afc97 ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x382e530d st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x95ae948c st_press_common_probe +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x015f13f4 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0c47ccd4 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0cf49158 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x111a7cdf ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x15db2d08 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x18db4593 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1d197898 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3860b6e1 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3bd299c3 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x52822310 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7de1a875 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8cf0274a ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x93c633ad ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9ce0cb03 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb3096ec2 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbe937a13 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe4b84008 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xff2ea256 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01d8cee4 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x020a2a6b ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x049ace30 rdma_addr_find_smac_by_sgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0912953f ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09b12d69 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a1e62fb ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c3504af ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0dc26a97 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1487e97d ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15305990 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16cf2b44 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x181e3b06 ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a1ad34c ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a5e736e ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b172acc ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ba02d36 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e84e7d9 ib_modify_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ea5767b rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2043b811 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2598730e ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x262e4544 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26b5e171 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a3dbb40 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d53395e ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d95eb4e ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ee99cbd ib_destroy_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f374e66 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3026f1d3 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32239c5f rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32a8402c rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34081f21 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37f06a53 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39a58847 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a96e727 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f361ec3 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40b32d0d ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x429968b2 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42cd3e04 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x453515e3 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4631ff54 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46c7ec4f ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47dcd8d0 ib_sa_classport_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4942b2c3 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bc2b5a6 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c7e8ffb ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e53fdf6 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x501c7b5e ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x505de251 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5328d7a6 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x542e5567 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54b75ea6 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56362a21 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x576fdbac ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ae23ea4 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5cde9aa0 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x602bfc76 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62652a37 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x665c85a4 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x675135ec ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6783b92a ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67d5c121 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a03345c ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ce9d8f1 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f4bddbb rdma_resolve_ip_route +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x701240d2 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73e5c66b ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75c6af51 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x763853a8 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78378be0 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79130a59 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x799d2d00 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79b7a5e3 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79d00f43 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a023365 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f09a247 ib_create_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fdf8ea6 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x806b33ac ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8073de46 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80bf8fd3 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80e7973e ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83e7f983 ib_destroy_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87c208dc ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b92d9d1 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d59e4e8 ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8dc61114 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e423c00 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90432495 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x926fcc7e ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9367307d ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96457863 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b9cf9a rdma_addr_find_l2_eth_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99c8153a ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a1cd50d ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bbaed3a ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c0bb5af ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9dddffd5 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa010b0e5 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa21a1269 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa60fecb0 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa61720f3 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9d72565 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa6f90eb ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab364006 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad462159 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xade3bb69 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadffb404 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb02af971 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0c2c810 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb16753ed ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1d3c949 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5cbc416 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb81fde90 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbca711ea ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe5d1d7a ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4cad71a ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc62fb5a2 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc814aa82 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8b460b4 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca79437d ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb9deddd ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbae9f4d ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce4eebcc ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcea8f834 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd03875cc ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1cef717 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd352bde1 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5672eff rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb435cd1 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0ebcdba ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe17b1475 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2568872 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3738da4 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe67bc5a0 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7a2b1df roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe948e2c1 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9fcfb98 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee4da4f6 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef0f16f8 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3212b28 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf32712c2 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4456231 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5ac99b0 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa0c804d ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcd81575 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdc7c941 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x47635073 ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5397d778 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe4b49be2 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x15daf2b6 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2d7b9640 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2e7718a6 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4816eac8 iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4d9888cf iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x646c71b6 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa2648da6 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa6751233 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb738a2ba iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc5634346 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xca18316c iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xeb4c5f6a iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf1f407d7 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfd6cb06b iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfe805410 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x050bac3d rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x130d6c48 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2390d215 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2852388e rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3e597e21 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x58a39bb4 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x652b0078 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x677acdca rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x755accba rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7610d803 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7d48ed78 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7e3568cd rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x842f4681 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x851fef11 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x882780ed rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x90b66bd4 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa22713db rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa6ab714f rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbe4e6640 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcf2eaaa7 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe7e73501 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x48f93f58 rxe_remove_all +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x87785963 rxe_rcv +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0xc16ac47e rxe_set_mtu +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0xc4896375 rxe_add +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0xcd1829e9 rxe_remove +EXPORT_SYMBOL drivers/input/gameport/gameport 0x3a924dad gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x44ba6fc7 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x82940e34 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x8da5fc8f gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x994cee60 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9fe249a3 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc53354c1 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf4db9712 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xfcf44e52 __gameport_register_driver +EXPORT_SYMBOL drivers/input/input-polldev 0x01b43fad input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x16b2a9a8 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x39f9b31a input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xa6b86859 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xc9346285 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xdd7037f4 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0xbb60c112 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xc29e3290 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xf0b5e628 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 0xb75c67c8 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0xe46bc0cf rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x245075a6 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4c5ffe1b sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x6b75f3f3 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x99f105b0 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xe771783a sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0xe9cecf0c sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x7dd481c5 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xcd6c5c18 ad7879_pm_ops +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0728ec43 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x20073551 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3d5bbbde capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6b848cca capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x91eca51a capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb2427607 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd77ea2bc capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xdc745fb7 capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf2c3e0e3 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf70e9247 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x17d682d8 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1a913ba8 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x238f4dad avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x27c95be6 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x5cfcc202 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x61d145a2 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x79a9869f b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8ed99f77 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x911b6abc b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x952c6608 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc441345f b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc9e3f415 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe63da097 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xefa42646 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa58ba1e b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x223ac953 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x2c7a2518 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x310c5d46 b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x356322fb b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x39c19c7f b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x6341480c b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x736a116a b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x917f5b59 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xcbdf7a3f t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x5c376b6e mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xe48b0cf1 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xee6fe6ce mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xf1b90036 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x0530a323 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x41a4eb41 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x71306046 hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x7a1e9014 FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x8bc4b67f FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0ec1296 FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x232a9a19 isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x25a4fc37 isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xb2f77c3a isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xd2645dc6 isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xfcd0888e isac_init +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x779fb675 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xd6c2e3f7 register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xdd5ecc76 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x00e8b7c6 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x024deacf mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0d31b019 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x42c8e277 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4d180d89 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4e502884 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5052103c recv_Dchannel +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 0x62608985 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x62c0bdaa mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6c4ed77c mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7a27e51b mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8478fe10 mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8549d8d0 mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8c1e3282 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa039a6c7 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa38a9411 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xab978926 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xac743851 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb59338ee mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc525fd78 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcdc26b3a mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xceaf50f6 mISDN_ctrl_bchannel +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 0xd6400112 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe6d68d18 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf1f64cb9 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf4414fcb recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf84ae11f mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfc7c585c recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/bcache/bcache 0x0c4d0956 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0x410cf831 closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0x66d28e22 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6969b5d8 bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7b55ca4f bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x9e8b3cee bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0xab2d2b84 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xad29a6f5 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaec09a2b bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf77343c bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc0b9ef00 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc3ef4034 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0xca580595 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xcb52a7fe closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0xdc3ba372 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe47e0829 __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe67c2d16 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-bufio 0xa7978f56 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-log 0x35279215 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x5915ad3c dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x5da98d2d dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xca6d4daf dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x66c42f3b dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb436fa4f dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xcec95d90 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xcfd02be3 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xd0e56170 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xf976ee9f dm_snap_origin +EXPORT_SYMBOL drivers/md/raid456 0x7283213d raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x05b04737 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1c57040c flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x47313b2f flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x47a1bea2 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4c1b7954 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5bffd34a flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x638d6e20 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6caa50fd flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8ebc25e5 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x959d4fd9 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9a9be86d flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9c3ad89d flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd6acec27 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x54b54f4d cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6cc7797c cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0xacb73b38 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb64a4e05 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0xfb4496ff cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x3f88a967 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x609b1819 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0x67cb1524 tveeprom_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x03034f8e dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x04c59917 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0cdca1dd dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0df501e4 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x19591134 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x22d6ce4a dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x28ee2ae8 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x31cf3831 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x32202c3e dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x348c5797 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x34a60a31 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3f7224d5 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x47c88250 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4b421a81 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4c49787a dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4d3b9a9c dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x59329f9d dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5bedb09f dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6218fc36 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x65886421 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x78d62338 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7ba5d8bd dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7d26bb29 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8e47dce5 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x90752e02 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x921e6a70 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x942fa01a dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x98165049 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9cbbe997 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb7816725 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd06964d4 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd4fa4ca4 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd75a6283 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb576668 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xde68d8b8 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe0319c50 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf45d4cdf dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf9e65db4 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x29e45403 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x1d82ae65 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x972f4b85 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x13a4af9f au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2f901c66 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2fc5f025 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x60575c53 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6c9071c2 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x75cba148 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x85b4e027 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa3e1e49c au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xfcc17cc5 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x40aa0c45 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xb704dbd4 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x19a8d529 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x5a40e987 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xcaf32d9e cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x660212a9 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xbd9c63aa cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xae240c10 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xa69f737b cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x7add7c23 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x8637fa50 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x00f07bec cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x45b84196 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xd2d1ef0e cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x1e085915 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x3a3cd4e4 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x43f04f5e dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa93ba488 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd6366bfd dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0d0deb21 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0f91d8a3 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3c8010bf dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x421b0cf1 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x48b17a59 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5d51a46d dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5fda75d1 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x721f2e99 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x94622038 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbd4f1e22 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbf27f480 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd49fe43f dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf093a833 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf8566e7c dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfea57c2b dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x3b7b7aa3 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x227c5d07 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4a627959 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x683526e1 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb4687c3f dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xbbce0c2f dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xd7acbeff dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x17af7ff0 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x2d8eebd5 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x41081748 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x50ccfde9 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xb0b6c23a dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x78a82063 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x183c3110 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x2ce00b92 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x319cfa2c dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x4b1692a4 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x9494fe09 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xc7228a41 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xb01fe21f drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xea1d11f1 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xfc3591fc ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x93b26040 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xb591dc80 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x1c24f6a3 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x82381f67 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x7659b21f horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xb3afb875 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x8a5a50eb isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x04c21e72 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x3ba72b18 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x06716adb ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xe76450ed l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xa36324ea lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x4902b144 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xee937b03 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xa32ffcf0 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xe41428e4 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xbfc6ad09 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x0f224fd4 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x2f41c875 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x9b2f224c lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xb360fdd1 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xda56ee38 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xa672f0c4 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x6f00d002 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x16c4fb1f mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xc8bdb9ad mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x983f75df mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xb2109a3d nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x404c7b67 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xe55516bb or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x59010101 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x142e55b0 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xb97d77cd s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x19499e8c s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x966b8019 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xde8bdff9 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x366d3b97 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xb16aca48 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x9255e160 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x4c06bc79 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x782ca9ad stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x348a8899 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x7bfa3ed1 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x7fb25369 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x6f61c7d3 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x66042adf stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x08dc774b stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xe43f4dba stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x34ec5563 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x7a4385ac stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x3d18b22a stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x6a7bd380 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xe8e1b10a tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x3f19026f tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xedb55b77 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x2fb84875 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xe688ad45 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x26beac47 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xcb582c48 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x4ba1013c tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x75350b37 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x6355f362 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x6b3a1187 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x27a9e61c tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x09a340d4 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x7ca8f132 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xe1743b3f zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xf1481aa0 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xa64ca0de zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x019ef812 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0eebbdf4 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x127976e0 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x2c395912 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x54bef8b5 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x92c5183a flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x92cfda29 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x00594f9b bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x2e024096 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x3264200f bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xfd6a6869 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x59f8bf34 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x7dc11a43 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xaee158c1 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1509d482 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2502216d dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2a778ff9 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x60ae8259 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6fd2769e dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa8b0c290 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc9f2a5e2 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xceee993c dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf93fa252 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xc9c02c3e dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x1ccb30d9 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x72d5e020 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x8aaaf3a8 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa823c281 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xea1d6367 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x835f96b5 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 0x1b7bf07f cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4f390a67 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x58271626 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7af38943 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x92b02ee3 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9dbc67bc cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xee3fd3c0 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x288cf532 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x8bf9e527 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x4afc65c0 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x4e00e64f cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x91e13bfd cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xc16abfbc cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3fb8634c cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x58f349a4 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x60ff606e cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x68f6ac4a cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9643ab06 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x97c22726 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbc789e96 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x04a10630 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0f8fbb8b cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1d373ef7 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2b63b6d0 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2b69be81 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2d63d604 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2e8731f2 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4b1c05a0 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6042e583 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x62371d24 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7cd07f39 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x80377cb1 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x977fdaea cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb4ea256f cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc4cae63f cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe532d21c cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf51d8d9f cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf52fbfe3 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf6afd924 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xff40f333 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0af89918 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0d422310 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2040cbe9 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3d54aa4f ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4923bdbf ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6333f0e2 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x70903e6f ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9428bcee ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa59fe4ae ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xba54a977 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc42de0cb ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd3f57de3 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd928082f ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe2c4c26c ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xefcc65ae ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf183484a ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfb0c5d49 ivtv_udma_alloc +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 0x193f4d52 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x485d24cf saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5207e677 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x68fcee63 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x73eb47ef saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9c49c1b4 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xab9d8417 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc130c3b3 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc96c050e saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xca595ce8 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcbc7cbe0 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd671f1a2 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe9305aad saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x8d6f0b7e ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x6711fca7 videocodec_attach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xbb3d9e2d videocodec_detach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xd34172fd videocodec_register +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xe82a9404 videocodec_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x13081ffe soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x2a44f160 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x81ce9c44 soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xa7de304d soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xa8721b36 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xd0c512c4 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xd9bfe95f soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/radio/tea575x 0x164c9b9c snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x25d5d35a snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x497ac9ec snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x517716dd snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xc414ce86 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xd74b885b snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe347cfe4 snd_tea575x_init +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x4eca6c82 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x64fcfcca lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x66ee33f0 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x77e0a07f lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x79940eb2 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xabad164b lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xe7d1cd98 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xfdebb05b lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x49f2190a ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0xf1c4930c ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x68009059 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x41d9f958 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x438f66b8 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xc32704f0 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xfd78147f fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0xc368fa80 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xa8a84f29 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x4090a634 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xa428f091 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x2f8af919 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xa0572d06 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0xe0c2ff40 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x0ca96307 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x9b47d79f xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xd4b6a90b xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xb7bff127 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x867c5213 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xd93ddf04 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0d9ffd01 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1106a69c dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3bb3aa66 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6c60241a dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6fc6c78e dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x859dc4f4 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdc9c21c8 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe4297e51 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe9e690f3 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x482a3641 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x595eca91 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x68716c47 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x79fdef05 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x94679840 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb2fcb03b dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xcdf22293 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x6721dd1f 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 0x0f49e96d dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x12bdbc46 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x44420956 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5053198e dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5c438d2f dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x654586c2 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6f6e1387 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x74ae1a1e dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9880a44a dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcd8c15b5 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf4e52792 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x09993f74 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x7b7caec3 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x018225d7 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x205a9ea8 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2e4e3498 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4fca477e go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x68b34dd8 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x856ca230 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8f7b4014 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9a3ce062 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xdc0cb79b go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x188bcbc9 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1b5cee2c gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x381380ba gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7a6840f2 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x90800487 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x989c8d61 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc67b4e5e gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc77fcc73 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x1cdf1d49 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x3bd4101a tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xcb3b7d01 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x1a705a3e ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x31b75bf4 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x1d5dec02 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 0x9b5fe0ba v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xee384402 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x15b68059 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x4ec2d6ed videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x60e9dc9c videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xa67f77dc videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xa7a82e59 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xaa2bfe36 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x824e4d17 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xbcef66c0 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x2d55db7d vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xbad794fd vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xbbd356dc vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xc7ed82e0 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xcf6bd56c vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xf34ac3a6 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x253f70b7 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09e86fec v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1130c552 v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x12b9c543 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x12bbf2a3 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x134abef2 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x15efd75c v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1628d514 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1afda786 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1bdbdcac video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1c6e8c8e video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1cc57dc8 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1ff7f198 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2491f5e2 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d359639 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x373db523 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x390ab48b v4l2_ctrl_handler_setup +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 0x3d92eed6 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3f1d802c v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x40d22510 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x46177d82 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x49077cfb video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x497e3378 v4l2_of_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4deceeb0 v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4ed3fb95 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x503e9565 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x517add9b v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x58451863 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5d0a13d8 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x62989a88 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6409642f v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x650afabf __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x67009c7d v4l2_of_parse_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x68efabcb v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x697eed11 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6d0d3e5f v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6dc8b9af __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x75f77b53 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x79108dba v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a130a0f v4l2_of_free_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ae24155 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7edbccc6 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x85bbd7ac v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x880f5668 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8d6b3d66 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x91203220 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x923679fe __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x97d54915 v4l2_of_alloc_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99b750af v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9b8ca4e9 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9d927faa v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9e30fe76 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa52eab58 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa69dd244 video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xabba2bcc v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xac9787fa v4l2_async_unregister_subdev +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 0xbf972573 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc2a9b29f v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc6c312d6 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc80816e3 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd145d3b5 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe3926483 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe3dbbd45 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xee923fa0 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf7b8ec27 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf82ab4e5 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/memstick/core/memstick 0x16630c0f memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x274443f7 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x46d08b4b memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5b5c17c8 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x78bbf0ba memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8c9b5da4 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb44c107b memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbe0b818f memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc6e48ec2 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xca0b6e2f memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd04a8666 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd73db2e8 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf10c82da memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xfd1565a7 memstick_free_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x097ae539 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x178b879d mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1c3b7a85 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x308091c8 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x43b9a4e8 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x57cc4125 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6c5a9008 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x87c65da7 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x88acfa48 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8b458536 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8e586e5c mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9079b4bb mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x93c10bd0 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9a4adecd mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa0b4b006 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa89ae850 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa9a2f8e2 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaae062b8 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb022085e mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbe0d8557 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc7c1562c mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc920ffa8 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcb4add63 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd47973b1 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xddb45fde mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe0ba640c mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe637f186 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xea787c35 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf5d38d4c mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3127a12a mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x32668479 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x437f53b1 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4e016452 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4e53ef05 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x50b0e2b3 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x52b5d4ef mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x63c6b353 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x79dec794 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8d1f33c7 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x90db0442 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x98cb5f49 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xafa498c5 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbd548fc0 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc4784625 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcb654f8c mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcbb13add mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xce7e7d64 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd6257b29 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdbfeb540 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe0c7dd87 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xef21eb7d mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xefdd11fe mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf0c3ee21 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf1e04cdd mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf35136b4 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfa23a629 mptscsih_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0x07abb203 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xecb6af34 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0xf059dca8 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/dln2 0x2426b308 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x4b139196 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x7bc87550 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x47ddea69 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x4d6d28a0 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x020d9db6 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x042a2517 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x09f0ec4a mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x338ea88f mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3b4f48b5 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4e1e72de mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6231d1e5 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6ad7c637 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x72d070eb mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x969bcceb mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xbedb382a mc13xxx_irq_request +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 0x14d66038 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x175910a5 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x883b1288 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x9465d9c7 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0xba01a911 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xe574ef82 wm8994_irq_init +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x4177cd07 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xc5594e6c ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5b0ba682 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x57e5887a c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x6368a411 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/ioc4 0x764454b4 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xfe349441 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x078bf9fb tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x0e41bcd0 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x103f695f tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x325da44d tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x39de08db tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x5011d29b tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x90c07c1b tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xa68b38de tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xb0764ecf tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xd32f9ece tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xe53ffa2b tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xf2bd62a3 tifm_map_sg +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x4c6a3f64 mmc_cleanup_queue +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x10effc34 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x249bb68f cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x273ef712 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x995e5027 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa138cb1b cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xbda7a98b cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xddf6e52a cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x335323c5 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x34abbbc4 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x5d5fd882 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xb194bd25 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xe516b28d mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xd741dd62 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x842253d2 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x693a7c0e mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0x86d64ae1 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/denali 0x110264e5 denali_init +EXPORT_SYMBOL drivers/mtd/nand/denali 0x1eff9f49 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x2bd372c7 mtk_ecc_encode +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x5437e775 mtk_ecc_disable +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x67dc4d5c mtk_ecc_adjust_strength +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x6df58afb mtk_ecc_release +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x76e53683 mtk_ecc_wait_done +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x77ecf26d mtk_ecc_get_stats +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x7b6fccab of_mtk_ecc_get +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0xb5bec54c mtk_ecc_enable +EXPORT_SYMBOL drivers/mtd/nand/nand 0x25751a76 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0x260f0710 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/nand 0x3a8914bd nand_write_oob_syndrome +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8081e074 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x87d133be nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0x962d57bc nand_read_oob_syndrome +EXPORT_SYMBOL drivers/mtd/nand/nand 0xcee4c6f8 nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand 0xf2f3c0d3 nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0xf66a55ea nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xd31efb86 nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xd431cabb nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xfb735d3b nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x5e191d57 nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xc91fc48e nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xbec3e80d flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xcd136a80 onenand_addr +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3bcb5086 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4ef68e4f arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x67695d3d arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8deea3a3 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe0871be2 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe46e3cec alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe8c74ec1 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xee84aa02 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf53703cc arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfd036601 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x8e5c7872 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xc6d83cb3 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xf311f76c com20020_check +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x00ec9fa4 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0721e965 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0a085e8b ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x29ea9643 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x34ff15f8 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4ea7a197 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x84524bf5 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8802702a NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8f9339c4 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa9a7839e ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xc1b4d70f cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0b4ae25c dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x29e0a0be cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x515ad98a cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6c1cb075 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa5e47f68 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbf61242e t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc176096b cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc1b2e353 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc77fe97c cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc839cb0a cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcc5c0341 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd4788940 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd586d887 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd7c41c9a t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfc1e9992 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfc236488 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x08bf3107 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0d505ec6 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f34cf44 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1886b878 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x307c3087 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x39004cea cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3ba2fd8c cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3bf19b19 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x42f1e380 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4daaa95e cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4dfb75a9 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66215c21 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6bb41f09 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6ce3ad3b cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7515098a cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x821dcd63 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86b663bd cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x94cff221 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x97383905 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9874d089 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9c6beb38 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9ca7985d cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9d305c59 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa559e19c cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaafbf9f7 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xab0d9369 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbe9bda90 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc8426734 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xce5ccc70 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xda6b9a7e cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdaa8e528 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe3c693a9 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xebf0a667 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf5346df5 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf813c57f cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfa7385a7 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x2fffea28 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x54d837e1 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x745710e9 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x84a9234d cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xf343b014 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x1614c353 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x167272b6 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5503ab75 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5ac55191 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x61e1aaab enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xdc28f626 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x52e1d16d be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x8ff9d2ad be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x2e7c0045 i40e_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0xb7f69b00 i40e_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1644e00d mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x195ad3d4 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e0f6ad1 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f4cfd64 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20787596 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ac94962 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ea60e0d mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4438fb36 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ad2d3dd mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51facd14 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x548419d5 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5aa15699 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c87290e mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x636b8e18 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68b5279f mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68bc4360 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c336f4c mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8452fcd4 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x921a9edf mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9682cb42 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b4146ca mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9cce1c32 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaab36154 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb12ee0be mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb923386e mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb5e3c50 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe2f31b2 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbebbac86 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0e3a584 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcab224a7 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd160c2a1 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdaf61c66 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc7cc4e7 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeabeba3c mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb02f38d mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed6ee66d mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3f07961 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7ccf6ae mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf83e0ddd mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa926d10 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x053e2c28 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08668d06 mlx5_del_flow_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18d01e3b mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b18069c mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20d25880 mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x219a1191 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22b7b0eb mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2388431c mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2be04829 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x314bb3d2 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34425d7f mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4157024f mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44f8a7ab mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48087e4f mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d45327f mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51ef98a6 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c4c3af7 mlx5_core_destroy_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f90d7a1 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6be28311 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f7bd6e0 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x750f6960 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7754b79c mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a69074a mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c0d2495 mlx5_add_flow_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80e5407f mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82d42ba6 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x844b16f7 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ae33ba5 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e94351c mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92f0c2d7 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93c0683e mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94e1a579 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98202d11 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98a459ef mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ef688dc mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ffeef4c mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3f9fbd9 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9288f13 mlx5_core_create_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1768c84 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1bdc0f0 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb20dfd2d mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3fabc07 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb83031cf mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc85a909 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc09328f7 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc30e6eef mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc906c572 mlx5_core_destroy_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb01e886 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd033c4a4 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2981423 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbde38cd mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc8f6fbf mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdce553e5 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe10280bd mlx5_core_create_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe69182a8 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec5c09c9 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf672d91f mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb45c4ad mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcced346 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe9ead76 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfeacc8ba mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ab0c687 mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1c916646 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1e264990 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x304c6907 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x39a96739 mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3b8a844d mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x67725220 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x714dccc2 mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x72a05371 mlxsw_core_resources_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7ceae540 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f539b8e mlxsw_reg_trans_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x948da847 mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5ff38e0 mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb5c8545 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd4810ec5 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdbe9cd9f mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe4321885 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xec51e246 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x7d0b81ec qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x20de1022 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x22493dce hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x33555086 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc1137034 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe1fc3c2d hdlcdrv_register +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x27dfe7ed sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4a0382cc sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4c0dfc0a sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x5e2502f7 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x6883c7e1 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x6ff22174 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x93b418ef sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd294f6af sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf0a09b49 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xfca671bb sirdev_get_instance +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mii 0x11c18ef6 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x1dc6c682 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x214b13af mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x5635e341 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x63b3a2cd mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x71f09c37 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x94119656 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0xca6aca59 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x9de391ef alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xd6273c53 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/ppp/pppox 0x46fabe3d pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x484824dc register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xa7346998 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0xcbd551f5 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x33c8e098 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x62645da7 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x7504b3a9 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x83c368f5 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x8477ca91 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x9630a03f team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xca320550 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xfd1a4c58 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/usb/usbnet 0x2ce7279b usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x6291d158 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xb1d3dab6 usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x041652d8 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2bc33330 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2bff49df register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x595accaa hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5de20458 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x913c16c1 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x93d2e6cb unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa50a3a0d hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb29d78f0 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb9f5b490 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbe952e78 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x018ccf6f i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x18b14043 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1a3262ba ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x42053a43 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4a7028d0 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x541aacac ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x67746dd9 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x735c3b2c ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9554db82 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xab92db0a ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb38d2595 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdc095efd ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdf375d62 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf3e3cc6f ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x03f621ff ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1d360148 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2870b987 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4c26870b ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x57e73cd2 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5b5cb3b1 ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5c25bcc4 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8050daed ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x87641125 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x93ae0a6c ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb05d6ca2 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcbdf4d5c ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcc09cb6c ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xda1caee7 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe753d664 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfe78b6b6 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x11c3acce ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2a7c3a24 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x341864c5 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x372900fa ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5bc8dbb1 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8a41f955 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb7020ed7 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc0ff533b ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd06a5f96 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd6046520 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xdd8489e0 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x13330fe0 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x19af9726 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x30f0704a ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3d7a1974 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x44a4f807 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x49f6f329 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x63aa6ca6 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6699cafb ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x699e4c90 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa34e9b08 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa6aaf134 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xae11a2bc ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb78d6ce6 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd68a923e ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe19b53ac ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe7bb6e26 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xed8a7e07 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xedde461e ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf18e93f9 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf72bc261 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf752346a ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf8eb4597 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfdcedd64 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00cabbd0 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0337bf9c ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x037fe098 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0816d722 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x099b73ba ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0befef71 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0db4b0b1 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e13ea8b ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0fb5a645 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x153fdc71 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1828649d ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19589508 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c44a42f ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1cb1aad6 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ed00424 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fa38608 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fb58312 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21258f56 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23fa854d ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24a316ff ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26c39875 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a09f3db ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a2d2939 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a37bdd0 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d21aeed ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x309edf25 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x381f9950 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x384342d0 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40338236 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x442fa713 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4528cb58 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x455305c3 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45744ed1 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x461947a1 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x465344c9 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d1a0fa5 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x505f0d4e ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x576eec6a ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x589544eb ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5db68f04 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63ed3463 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65af2e87 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x684d5846 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68a65614 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68f1ec83 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71c7b80c ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x726dcffc ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75528973 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76acdfb4 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x778d7a15 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ac4f2a1 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e8782ef ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x809e8ec7 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81d94d15 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84733afd ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85b19254 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85d9d8b1 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f377c0b ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97140fa6 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97b4ae11 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b43498e ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c0b8cc0 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ceb03a0 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ceb6c67 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e0c45cf ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1784c96 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa213f1cb ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4509068 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa748ed83 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa901d0cb ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa96f70d3 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa98c6f6e ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa165f74 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad9db3c3 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xadba126d ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4801f30 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7be2d55 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8ca71d4 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9c9c999 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbddf5b02 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc03d0638 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc575ecf6 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc95decdf ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc4bf8e8 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcdd7ccde ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf0e2e55 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd31132f0 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4664805 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd73d4222 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd74ca548 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd847b0bf ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb9116b0 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc5fef22 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdcbead13 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde759cb4 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe412c0f8 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeba32369 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebfb1bb4 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf34d1f3b ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf49509cd ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa02e838 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb0ea8ca ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb7fc418 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfcf78a9c ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfeeea5e1 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xa0cbcb12 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xd921794a stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xf65589bb atmel_open +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0f3f9b49 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x169792f2 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x20233e31 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4b62120e brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4c283ee3 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x54edbe7f brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x74d13be7 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8a58725e brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x92b476aa brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9772a2d9 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbceaaf05 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe7591792 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xebd3c7f4 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xee96fb8f brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x282a7d7c stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x3a1ed0f7 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x68e1b96d reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x05201ce7 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x18e47ee2 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2668efe2 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3777db77 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x49cd36fe alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x60130937 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x64b21a79 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x75fcc93a libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8791a97b free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x92f86faf libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x984b420f libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9afd5649 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcddd44b0 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd59b74ed libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd7683a9c libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd929c0c4 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe0effdc9 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xecad2226 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xeec5710d libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf4160ba6 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf7b9a506 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x021fcd4b il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02f96df9 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0a237d23 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x150691fe il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x16004910 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1685230b il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19128e71 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19d3f2c3 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2077ef07 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x25356061 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x25a484a3 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2aeb662e il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2cad29fa il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2ea71e8f il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3161eb52 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3405d722 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x34b55792 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x35fb7a60 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x377f7157 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x38cdab23 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f799a57 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4c3ac897 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4eeca511 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4f6da96e il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51a6ead7 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51cdfab5 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x521903a3 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x52aa18f4 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x551191b0 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55368eea il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x569aa69b il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x572cd750 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x573b5d72 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5af10495 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5bd52c45 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5c8096d0 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5c85809a il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f70c1cb il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6195deaa il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x62c1a67f il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64284308 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x67aca25c il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a61cc06 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d9187b0 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6e6753be il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6f0f8252 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x761d93f1 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7d862e9d il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x81c46e2e il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x83c94042 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86372062 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8da88cb8 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8f15d5a8 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x90b13642 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x913dc557 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x92dac5d1 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9395bce8 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9d58f51e il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9f10d925 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa0a7293b il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa1a1882f il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa3aaec6f il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa3f43c6c il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa4aebcd7 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8225773 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa922069a il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xad52d006 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaddfa213 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae046ee7 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaf51c1d7 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb5315777 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb85709d5 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb9302522 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbb50f11e il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbb9bd38b il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbc8df05d il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0fb54a2 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc275e705 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc7ba6a9a il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcad39cf4 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcbc1e42f il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcd9c4177 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd0bb90e5 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1af6d20 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd6606008 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd70cca24 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdd6036ec il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xddc88c32 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xde036911 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xded01555 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe045d228 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe9dbbb0a il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xed3fd9c0 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xed965a90 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xee2e8639 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf0060750 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf8dc360e il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfeaf464c il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xff4fe87d il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x165246b0 __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x184eebc0 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5047acc4 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7798ef97 __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa80efde2 __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc7cbd0fe __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd361ddde __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x02455a00 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0c0b14f3 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2975c7ca hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3799d4a1 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x389f472b hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x38f9b02e hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x39b71982 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4e96e88c hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5aa2d682 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5bf410af hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5f21c3b8 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5fb3b208 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x76f370fd hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x812886a0 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x829b7007 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x87ffffdf hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x89539c5b hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb469579d hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdc95b068 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe0666298 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe3265d08 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe9f3d188 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf3e50e0a hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf7474159 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf8cdb86b prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x24d63eef orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x268a389b orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3056f4ca orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4d31921f orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x50941494 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5ca0e2de orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5dea5bf1 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x675ba9bf orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x72cbfe94 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9db932d8 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb5ec8f0c orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb81406de orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd9fbf824 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdc9b6291 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf41dadb9 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf4ef6c9e __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf6601886 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xfa0f8eb5 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x00cf27c5 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x022931d7 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x02786b26 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x099d0f01 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x115aee28 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x15c9723b rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x18c91909 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3735b64c rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x38376857 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4c1a073b rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5125e402 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5a39f752 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5b97a90d _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5bede986 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5cddfddb _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5e444eb2 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6545d7ad rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6599e5a2 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x81551948 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8377aee1 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8a0ca3d6 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x980e66f5 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9b9791d2 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9f86c78c rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa7413be0 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaaec2dc8 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb680e252 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbad210a8 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbcf92db6 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbe17f264 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd0f7b32c _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd248e7bc _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd88b2598 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe18b04bb rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe4731c2f rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe4fac024 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe5739710 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xebbab7aa rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xec62c75e rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf22771d1 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf9667862 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x4fb77eeb rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x5a01510c rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x92861eb7 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xc700eaf6 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x0610cdea rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x7453e3c1 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x883ced1b rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc2a19ad5 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x02f7d57a rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x044ff43c efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x14e82110 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x25e3640c efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2a6cac75 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2a9e8fab rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e3e8e25 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e97f2cb rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5cd814d9 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5e941eb3 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x67e1a246 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x68384a93 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x702ceb6b rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x726798a4 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79fb7265 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7daffaf7 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8cfa6e7d rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8feba6e4 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90c202dc channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa9459791 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xad041b34 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbfcc7a97 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc5e54124 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd7fa4117 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe2c1481f rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe844a49f rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe8926a7c rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebbefea8 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xef9117d8 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf9e968ff rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfba4daca rtl_ps_enable_nic +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x6f2d9cbe fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xa8f16e66 fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xe4bb9d66 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xee1087ba microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xf2f37c1c microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x237cca56 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x83befc4a nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xc917aba1 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x131d198d pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x75c78bce pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xf55d9056 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x4c3def74 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x853544cf s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf10a9443 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x065221b7 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x558c211f st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x733208b2 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x776d6e88 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8855aa89 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x94588096 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa5e7492d ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbd878593 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe12ee315 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf50ddde3 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0ef06f0c st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x17b73ecd st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x302f5f5b st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x41eab43a st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x502a36c0 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6d28a59e st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7b0c6a47 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7dab436c st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa3d65458 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb32e48b8 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb39bbd9a st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc4fd1a7b st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc73b2359 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcf38bbde st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe4343404 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe6c8d93a st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xee0d3844 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf814cdb6 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/ntb/ntb 0x05ed6b47 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x2aaab02e ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x343dd29b ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x393b6c09 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x9fc505ed __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xb85da718 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xe1d2a084 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xf859c898 ntb_clear_ctx +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x3ae4b762 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x04238a99 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x08b47ea1 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x0ac2f4bc parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x0fdc05c2 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x14ace78b parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x1d0e15ef parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x27394370 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x274245fa parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x338465a9 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x360513e6 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x3a91c3c8 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x3e770c2a __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x447e3df9 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x46173261 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x49a55352 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x55987972 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x6cb016dc parport_release +EXPORT_SYMBOL drivers/parport/parport 0x77712ab3 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x79ecdf23 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x7b6b9260 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x8070e49a parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x85c064b8 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x8b5d9128 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x8bec4381 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x93240ddb parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x9b2c315f parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x9b7bc313 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xb1a0c4fa parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xc4898a3b parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xdb67789b parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xe82fe1f1 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xec6da667 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport_pc 0x432ef68d parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x476c842b parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1d7a419c pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2306a37c pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x287a0733 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2e3dfc31 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x318304b0 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x641cbd74 pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6431fe51 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x67cc1a7a pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6a43dd08 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x70351490 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x721e10e3 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8359a364 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8d6f489d pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa7330751 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb6934d5b __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbd010aa5 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc42b1253 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc8cbc333 pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdd06dae7 pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x01e51e35 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x298e81b5 pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3663867e pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3c0d937d pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x41e33090 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9543678e pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xac0242c4 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd0696f80 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd72f9ba2 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe95f31e1 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfed7ef3c pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xd7bbdf7e pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xfca5630f pccard_static_ops +EXPORT_SYMBOL drivers/pps/pps_core 0x5252fd36 pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0x71fcdcc3 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0x93f74ec5 pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0xfe845df8 pps_unregister_source +EXPORT_SYMBOL drivers/ptp/ptp 0x8eeb26e2 ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0xaea66e3a ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0xc3bad2b7 ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0xf3ab2c0d ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0xfee59207 ptp_find_pin +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0a228266 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0b642f1a rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x1ff6b528 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x5b9186f7 rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x60341209 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x8f91fa45 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xcedb308c rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xea8513a3 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf05a8b2c rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf611817a rproc_put +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xae8a3a75 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x0211d14a scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x0d71622d scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x89272037 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xb3310f8a scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0a995d9f fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1bc86e18 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x265446fb fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x289413fa fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x38a3ce51 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3c8c8f72 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x45df4dea fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x67db8ad4 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x71df9369 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa51e3511 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdb8e43a9 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe2398491 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x02035e35 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x068433a9 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b83fe37 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0e6e04b9 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x122c58c1 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1413ed96 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1610f554 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1f25f0a2 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2382a631 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27012409 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27f93054 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30feafec fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x32eff318 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36d47058 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x392346ca fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x46e122de fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4e22cee0 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x542704f5 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ed4bd80 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x635fda58 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x65065444 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69ade61a fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69ae3313 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6aac9ed2 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6b8dd0a3 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x842536db fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x89a6b541 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9475ee9f fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x95bccf70 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x95e7219f fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x965519df fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0b22001 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa642b750 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaaf52946 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xab5e4d9c fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb00fa9b9 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb051d8a3 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb318db48 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbaaeab18 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbfa771f0 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc22f332f fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc3d1f92a fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5d89fef fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc9388c81 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0448fcb fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd107a0a9 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe4d9b759 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe548292c fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xee02f683 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf53cfc31 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x08b6d30a sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x24ca27e9 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a575652 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4b02dee3 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xfcb6c1db mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0d8fd62a osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x13f3f9a8 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1d7f1558 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1fc7910e osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x24601e9d osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x24ec93eb osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x29363bc3 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x316f54dd osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x365728ee osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3c9c29aa osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3daf37e4 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4de37059 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x54051053 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6ab39c2f osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7f7092f2 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x89f5de2b osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8ee66619 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x998a93f6 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa8579c6f osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa9edf2b8 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb529f0e6 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb8d81bc4 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb98912b1 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbb037d97 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbc48b4d0 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbd8ca33f osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbec2f371 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc6518c67 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc66f30f5 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd74cf035 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe4ec6f9a osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe56ef90d osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf8616866 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfa7f82b4 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfd33ff61 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfe562e38 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/osd 0x267ea544 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x27bc5578 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0x387dfb20 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0xb53f0193 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0xc9764f85 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0xfb572a0d osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0286bf10 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x101bcd89 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x17552033 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x40410ea7 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x49a9b712 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x54ec067c qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x57e69525 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5f186cbd qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8ad96319 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x968e6e5e qlt_put_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb2159b63 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xffdccc3b qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x084404f4 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x26d450eb qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x344ebc51 qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x7772ec86 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x88bd866e qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xc0926c4b qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0x9dede970 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xb1e92ea6 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xc049cef6 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x02080a86 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0cfc738e fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x29ec8f5a fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4a711b45 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5f45ba38 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x76163266 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x769191af fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x95e183bc scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb76408fe fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbc6563fb fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcbcf201b fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd1914266 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x00577b28 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x06af555a sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x10dbc1ee sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x24f7e43b sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x32ca9dbe sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3392e29f sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3a452ac2 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x449db19b sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4e5f589a scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4ea33427 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6442c70e sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6c42bab7 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x72801b7e scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7da02bee sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7f90d7d5 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x89cba73c sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8c92dd83 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x911725b9 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb9a28b82 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbc02016b sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbe5bb8a0 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc7c62940 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc861ae4b sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcd5934e9 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe368891c sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xedce9419 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xee62096a sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xee90d51a sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfbb601c0 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0df3f9fe spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x5981e223 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7eab243c spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x9bbff56f spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xcb78ccf4 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x34d1b691 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x581cbbb5 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x64b3d1cc srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x6cb74510 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x60d2096d tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xe4a9a97d tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x477b1a2e ufshcd_read_device_desc +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x57a0f5e6 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x70fcab8e ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x80834f85 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x983b261c ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x9e7fd9be ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xb943ed14 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xdc3aebfe ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xe68cdfd4 ufshcd_query_descriptor_retry +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xeb535e9e ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xfc005f22 ufshcd_read_string_desc +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x4c8b0e90 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xbd798544 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/ssb/ssb 0x11dfbef1 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x14363bc2 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x14c3f1f1 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x1768d14a ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x1df9c558 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x275228a0 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x33e8df76 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x46e805fd ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x482b58d7 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x66500844 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x691fc8b6 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x71ee4e42 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x751588d1 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x809c9c30 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x919240e4 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x99aa4b36 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xcd9c29ac ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe0bc12ea ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xe1310b8d ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xf374e453 ssb_commit_settings +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1a238c1f fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2c4908f4 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3f981c0c fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x427977db fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4b5934a2 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4bdca2b0 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4cf8e112 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5323a041 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x607cb6b2 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x613cdeea fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x84de2086 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x86675636 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x869c00ef fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x889be370 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8e1d37ac fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8ebbb73b fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9a0a353f fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9d77cb7c fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb3fbb181 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd0560209 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xda22694c fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xde55e7a6 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe5e6fcf7 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf920360f fbtft_read_spi +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xca294649 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x8d878ed2 ade7854_probe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x000c507f libcfs_debug_dumplog +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x00c881f6 cfs_cpt_number +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x01fef7b4 libcfs_register_ioctl +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0389f857 cfs_cpt_spread_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x06443cdb cfs_wi_deschedule +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0b15026d cfs_hash_for_each_empty +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0c68bc45 cfs_cpt_clear +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0de6c369 cfs_cap_lower +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0f5eff79 cfs_percpt_number +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x10b7e9c3 cfs_cpt_unset_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x151e7546 cfs_cpt_table_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x1e8cdb47 cfs_race_waitq +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x22924b94 cfs_hash_for_each +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x23e25c18 cfs_wi_exit +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x23f6f445 cfs_restore_sigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x247da28c libcfs_kvzalloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2663147a __cfs_fail_timeout_set +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x286ce5ba cfs_hash_bd_add_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2dbe54b2 cfs_trimwhite +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2e5044c7 cfs_cpt_set_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2efcc0e6 cfs_block_sigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2f439265 cfs_percpt_unlock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3009b1a2 cfs_hash_del +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x30e15cc9 cfs_hash_bd_peek_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x31fc5082 cfs_crypto_hash_update +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3658dc0c cfs_hash_add +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x37175882 cfs_expr_list_print +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x377f93fb cfs_srand +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3c1285bd libcfs_subsystem_debug +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3d5e6098 cfs_race_state +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3ea730c0 cfs_gettok +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4062f92b libcfs_run_lbug_upcall +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x411db754 cfs_crypto_hash_final +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4349b980 cfs_hash_debug_header +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x438e735b cfs_hash_for_each_safe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x44688a0a cfs_block_allsigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x44728d76 cfs_cpt_bind +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x44839bbb cfs_rand +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x482deff7 cfs_cpt_unset_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4a99af72 cfs_clear_sigpending +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4d3b4eaf cfs_fail_err +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4d89e988 cfs_block_sigsinv +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x52b9c7e9 lbug_with_loc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x58a7ee00 libcfs_catastrophe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5a785762 cfs_cpt_online +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5c013b81 cfs_expr_list_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5d73c3e3 cfs_expr_list_free_list +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5df8c623 cfs_cpt_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x62289d65 cfs_array_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x66ea4400 cfs_hash_is_empty +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x67398404 cfs_wi_sched_destroy +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x67ddedc9 cfs_hash_getref +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x6e6b8b14 cfs_hash_hlist_for_each +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x71e3804b cfs_crypto_hash_digest +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x71f662a3 libcfs_debug +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x7f7b182a cfs_hash_for_each_nolock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x7fda989d cfs_fail_loc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8151c3aa cfs_cap_raised +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8286ffa5 cfs_percpt_lock_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x828d16a2 cfs_cpt_table +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x87e201ab cfs_hash_bd_del_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8b8f321d cfs_crypto_hash_speed +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x93896a8b cfs_crypto_hash_init +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x940ed192 libcfs_stack +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9879b229 cfs_get_random_bytes +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x98f0e065 libcfs_deregister_ioctl +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9c3aae35 cfs_hash_size_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9f82f712 cfs_trace_copyout_string +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa28a6757 cfs_percpt_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa2b68b2a cfs_array_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa9088531 cfs_expr_list_values +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa9dc74e2 cfs_trace_copyin_string +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xac0f67e3 cfs_cpt_unset_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xad019238 cfs_str2num_check +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xadb100a9 lprocfs_call_handler +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb473e79e cfs_wi_sched_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xba8132b3 cfs_hash_for_each_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xbc275420 cfs_cpt_unset_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc0ea7fc0 cfs_expr_list_parse +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc2911d96 cfs_expr_list_match +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc86ee1b1 cfs_hash_bd_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc93905cf cfs_hash_cond_del +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xca7a4ee7 cfs_hash_add_unique +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xcb2160d3 cfs_cpt_of_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xcf61bacb __cfs_fail_check_set +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xcf90528c cfs_cpt_table_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd1319447 cfs_cpt_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd1fefbcc cfs_hash_lookup +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd5396536 cfs_cpt_set_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd688fe94 cfs_hash_findadd_unique +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd96f406d cfs_cap_raise +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd99d9f64 cfs_hash_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xdce448d0 cfs_cpt_set_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xde83075f libcfs_kvzalloc_cpt +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xdf2789c0 cfs_curproc_cap_pack +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe2c0c15b cfs_percpt_lock_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe2f91ce3 libcfs_debug_msg +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe3bf6897 cfs_percpt_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe45b62ff cfs_cpt_current +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe9baf5e8 cfs_hash_debug_str +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xeb326606 cfs_crypto_hash_update_page +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xeceac781 cfs_fail_val +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf0246bf2 cfs_cpt_table_print +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf03bdf11 cfs_wi_schedule +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf3565b71 libcfs_debug_vmsg2 +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf372d1c2 cfs_firststr +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf47e16aa cfs_hash_del_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf52e4f4e cfs_hash_rehash_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf63a3d8d cfs_percpt_lock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf782fbe6 cfs_cpt_weight +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xfa0d98ca cfs_cpt_set_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xfa756153 cfs_hash_bd_lookup_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xfdf00c70 cfs_hash_putref +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x0090e935 libcfs_net2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x049f2d6b lnet_sock_write +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1366b7ac LNetSetLazyPortal +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x13f23fca lnet_copy_kiov2iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x144e6b92 lnet_parse +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x17ef659a lnet_finalize +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x19670622 LNetNIInit +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1a60d439 cfs_parse_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1ee5f15e lnet_ipif_query +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1f88604c lnet_sock_setbuf +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1fe16fd5 LNetGet +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x2aa9953d lnet_cpt_of_nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x2ac93e90 lnet_connect_console_error +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x2ff3944d lnet_copy_iov2kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x33202a6c LNetGetId +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x3c779ee0 LNetPut +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x3f4f5b46 LNetNIFini +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x473ad33b LNetDist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x48f163c6 libcfs_str2anynid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x4c15006b lnet_set_reply_msg_len +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x50345570 libcfs_str2net +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x50d2cbf5 lnet_kiov_nob +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x55db5324 lnet_iov_nob +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x56097a29 the_lnet +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x58a1ca89 LNetMDUnlink +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x5e91cfec lnet_copy_iov2iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x5fee352c lnet_acceptor_timeout +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x61f784b2 LNetClearLazyPortal +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x6490f7be lnet_connect +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x64cdea3a LNetCtl +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x66d449b1 lnet_ipif_enumerate +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x722c76e5 LNetMDAttach +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x786b467a libcfs_nid2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7d59a7fe LNetMEInsert +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x824ba1ed lnet_extract_kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x83d795e4 cfs_match_nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x893feaa2 lnet_register_lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x89627306 lnet_sock_getbuf +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x8e18dc7c LNetDebugPeer +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x90b308fa lnet_unregister_lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x91815e99 lnet_sock_read +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x97f5966b libcfs_lnd2modname +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x9de986d3 LNetEQAlloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xa56de08d lnet_ipif_free_enumeration +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaa414970 LNetMEUnlink +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaa9b477e LNetMDBind +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xade657cc libcfs_next_nidstring +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb179ac66 lnet_net2ni +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb3235c5b cfs_nidrange_find_min_max +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb7547bf6 lnet_sock_getaddr +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb75f7953 LNetEQFree +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xba5566d2 lnet_acceptor_port +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xbf0760a2 LNetMEAttach +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xccc45639 cfs_free_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xcf4eb544 cfs_print_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xd1c2f3e4 lnet_extract_iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xd672a0b7 lnet_create_reply_msg +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xdbf967d6 lnet_notify +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xe18690e9 lnet_copy_kiov2kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xeaeb6565 cfs_nidrange_is_contiguous +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xec1f56d5 libcfs_str2nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf1b316bf LNetSnprintHandle +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf30efdf5 libcfs_lnd2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf8a8644b libcfs_id2str +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf94025d1 libcfs_str2lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfa106804 lnet_counters_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfe7ca17c libcfs_isknown_lnd +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x1c4bb5f9 LU_OBF_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x30b49165 seq_client_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x375e6f8d LUSTRE_BFL_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x86795a4e seq_client_alloc_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x9de63790 client_fid_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xae61cff5 LU_DOT_LUSTRE_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xc997a02f LUSTRE_SEQ_SPACE_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xecee2727 LUSTRE_SEQ_ZERO_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xed49cd4c client_fid_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x24923c60 fld_client_del_target +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x2bc10e44 fld_client_debugfs_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x5e7e8f9e fld_client_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x7a7ee9d9 fld_client_lookup +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x9c8a9cc6 fld_client_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xe515bbf6 fld_client_add_target +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xe859d6f0 fld_client_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0x03c935da ll_direct_rw_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0x8adc1b4c ll_stats_ops_tally +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0xcd3cde92 ll_iocontrol_unregister +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0xecb90cf0 ll_iocontrol_register +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x1e6ce990 lov_read_and_clear_async_rc +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x76addc3a lov_lsm_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0xd1eba11e lov_lsm_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0xd97dfd06 lov_device_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/mdc/mdc 0x6f503f4c it_open_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/mgc/mgc 0xdc287f95 mgc_fsname2resid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x007b8f76 cl_page_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x00d51a8c cl_page_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0329205c cl_page_discard +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x035852d0 lustre_swab_llog_rec +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x048e16ef cl_sync_io_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x05d5e69b lustre_register_client_fill_super +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x06648c40 lprocfs_rd_uint +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x07aa68bb lustre_swab_lustre_cfg +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x07d45876 obdo_set_parent_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x083942ff class_del_profile +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x089d95d7 lu_object_find_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x095d2359 lprocfs_wr_uint +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0c378d79 lustre_swab_llog_hdr +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0e9b0558 lu_device_type_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0f287d15 cl_object_attr_unlock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x10fc40b9 cl_object_glimpse +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1108ca94 cl_env_nested_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x11495519 lprocfs_write_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x11b244ad lustre_common_put_super +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x13ff8071 cl_io_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1518b5f6 lu_object_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x17ef37aa cl_2queue_init_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1954e3d2 cl_page_list_del +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1bf52525 cl_io_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1c52fd5b lu_context_key_revive +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1d5f0713 lu_site_purge +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1dd7ba81 lu_device_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1e325ea2 cl_cache_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1e3821d1 class_connect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1fd98eb8 lu_context_key_quiesce +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x221826f1 class_parse_nid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x22198c98 lu_context_key_register_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x224bd0da cl_object_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x22e9e0db llog_init_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x24e1671d lprocfs_counter_sub +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x252407df lu_kmem_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2547efae lustre_uuid_to_peer +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x25b16373 cl_io_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x26b25e85 cl_object_prune +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2747460e lprocfs_single_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x275cdc7a cl_env_reexit +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x276fcc14 cl_lock_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x27a91563 lu_object_find_slice +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x286860f5 class_handle_free_cb +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x288bd2a0 cl_lock_descr_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x28d48c56 cl_type_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x29054589 lu_object_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x297cf5e0 class_handle2object +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x29c24895 class_new_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2af3ee5d lprocfs_rd_conn_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2b8e05a3 cl_page_is_under_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2c565c37 class_import_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2ec26d56 class_config_parse_llog +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x304148cf cl_io_submit_rw +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x304d8897 lu_object_locate +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3060a9a9 cl_lock_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3092675f llog_cat_process +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x30fe663d cl_object_kill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3209c568 cl_lock_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3242ed35 obdo_cachep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x33e47ff0 lu_device_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3450c289 libcfs_kkuc_group_rem +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x352eae4d cl_io_unlock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3580ada7 lu_object_unhash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x35f703fe cl_conf_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x36b56dba cl_cache_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3726f79e cl_lvb2attr +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x37ed6e4b at_early_margin +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3bcbdc4b lprocfs_stats_alloc_one +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3bcc43d7 lprocfs_at_hist_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3cfc4744 cl_page_prep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3da2aa39 lprocfs_alloc_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3e2f45f0 cl_page_list_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3e4ce161 llog_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x410d0bf1 llog_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x42a166ee lu_context_key_degister +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x42d6fad1 cl_lock_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x438257c1 cl_page_list_splice +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x43de9abe class_destroy_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x43eab1c8 cl_page_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x45370bcd cl_req_completion +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4583e6cb class_config_llog_handler +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x460320dd llog_close +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x465ef997 lu_context_key_degister_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x472e7588 lu_object_header_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x47b35f7d statfs_unpack +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4823c872 md_from_obdo +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x492a1a27 lu_env_refill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x49a29223 lprocfs_find_named_value +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x49ac3387 lustre_process_log +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4a41ccc9 libcfs_kkuc_group_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4a66eaa7 cl_io_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4ac58713 obd_connect_flags2str +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4b018f41 class_exp2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4bca1826 cl_io_lock_alloc_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4c02c4e9 cl_env_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4d01df48 llog_open +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4d58b576 lu_site_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4d8d6dfa lprocfs_counter_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4ede6045 lprocfs_seq_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4f59e9c9 lu_site_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5018f6a0 lprocfs_rd_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x50c7fc36 ptlrpc_put_connection_superhack +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5168cc9f obdo_from_inode +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5202d790 llog_process +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x521f8103 lprocfs_rd_connect_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5276020c cl_site_stats_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x54e1ac19 cl_page_make_ready +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x552c0ad9 cl_env_cache_purge +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x558bec27 obd_ioctl_getdata +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x568e8be5 cl_page_assume +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x569e39aa cl_req_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x570d09ae lustre_swab_lu_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x58d1cee1 cl_lock_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5aaeee5b cl_page_delete +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5bb057a1 cl_sync_io_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5bc18045 cl_stack_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5c147777 class_process_proc_param +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5daccf19 cl_sync_io_note +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5e93341f lprocfs_oh_sum +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5fd2e7e2 cl_site_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5fe97b73 block_debug_check +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x61e98df7 libcfs_kkuc_group_foreach +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x624ffe24 lprocfs_counter_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x634bb8d3 lu_context_key_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6375b783 lu_cdebug_printer +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x648a7f66 lprocfs_free_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x65385163 cl_io_read_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x659d53c0 lprocfs_exp_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6674ecde cl_page_own +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x668e9919 cl_index +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x672a80b8 cl_env_unplant +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6734adbd lprocfs_read_frac_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6890d175 lustre_get_jobid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x69c42114 at_min +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6bb65146 cl_page_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6ddd1164 cl_page_list_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6e8746ce cl_2queue_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6f0065b9 cl_page_clip +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7097262a cl_req_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x711967b7 class_fail_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x71727b02 __llog_ctxt_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x732f0043 class_import_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x73ff71b3 cl_io_submit_sync +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x742559b1 class_unregister_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x74b91d8b cl_page_unassume +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x752168d8 obd_unstable_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x752f71a8 class_get_profile +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x756a77f3 class_parse_nid_quiet +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7604f8de cl_vmpage_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x76d19f1a cl_object_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x773824af lu_context_key_quiesce_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x77d2089a class_name2dev +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7802fcd7 lustre_swab_llogd_conn_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x789796a1 obd_zombie_barrier +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7b4fc57b at_max +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7bf8b2e1 class_find_client_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7cc3537d cl_page_list_move_head +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7db42f16 obd_devs +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7e209318 cl_page_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7edcafa0 cl_env_reenter +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7fe5561a obd_dirty_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x803dda43 lu_site_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8052f31b cl_object_header_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x806cc497 class_add_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x80fc0ab6 lu_object_header_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x81742d89 obd_ioctl_popdata +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x831f656c class_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8446b9a8 obdo_to_ioobj +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x88998504 class_manual_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x88b87068 lprocfs_stats_collect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x891054f1 lprocfs_clear_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x89141295 class_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8b40c692 cl_req_attr_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8ba6e479 lustre_swab_lu_seq_range +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8bac56fd cl_object_attr_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8bb8b7cc lu_context_exit +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8d381623 class_incref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8e2f3b16 lu_context_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8e8235b8 lprocfs_rd_timeouts +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8e86f0e1 class_unlink_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8f67314c obd_dump_on_eviction +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9022e9e8 cl_io_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x91a1d9a4 class_handle_hash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x92e58479 obd_dump_on_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x92f57631 lu_context_refill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x93303029 cl_io_sub_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x93859814 lprocfs_oh_tally +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x95735c6c at_extra +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x969a4734 lu_context_enter +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9767adce class_uuid2dev +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x97d03783 at_history +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x981d8d37 cl_page_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9b1ed9d8 obd_jobid_var +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9fbacb69 lu_object_add_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa1364e75 cl_object_find +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa1468140 cl_cache_incref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa15582bb class_devices_in_group +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa160da4a lu_object_header_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa1c1970f lu_device_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa1cd0190 lu_context_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa380ea04 cl_page_list_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa5fb234f lprocfs_write_frac_u64_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa799d8f9 cl_io_commit_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa82a3dd1 class_handle_unhash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xaaa44cbb cl_io_lock_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xabf1b6de lu_device_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xac465ae6 lprocfs_rd_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xac81527b class_disconnect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xad195587 cl_env_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xadfdf50d class_num2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xae3a0e14 lu_env_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xaea95580 cl_env_percpu_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xaf233f4c cl_object_attr_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xafab6f17 cl_page_is_vmlocked +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb01963a6 class_uuid_unparse +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb35519ed lustre_swab_cfg_marker +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb4f8ee63 lprocfs_read_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb6ed390d llog_cat_close +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb75d7e12 lustre_end_log +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb774334f cl_env_percpu_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb821b203 cl_io_iter_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb9277579 lprocfs_rd_server_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb9e17ede class_new_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xba299247 lu_object_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xba73b3de cl_site_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xba819793 lu_context_key_register +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xba985283 lustre_register_client_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbac3b016 cl_lock_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbacac922 lprocfs_write_frac_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbc0809a6 cl_env_nested_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbc601d00 cl_2queue_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbc91ec6e cl_env_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbd4258ae cl_io_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbd89fe1d class_conn2export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbe1e46e3 lu_context_key_revive_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc0175b52 cl_page_own_try +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc05a4652 cl_page_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc0954007 lprocfs_oh_clear +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc0bf7ef2 obd_debug_peer_on_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc208daae cl_io_is_going +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc2e89dd2 cl_page_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc3dcb4a5 cl_io_iter_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc5706c39 class_name2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc644f9e1 obdo_refresh_inode +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc7084377 lustre_register_kill_super_cb +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc79bb752 cl_req_page_done +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc7f8521c cl_page_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc90a40f6 cl_page_list_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc950628a cl_lock_mode_name +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcb0ab67f obd_max_dirty_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcb218f91 cl_object_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xccfb15cc cl_lock_enqueue +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcef84d77 cl_lock_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcf2bd395 class_export_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd016b32e cl_page_header_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd04b9d3e cl_req_page_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd20aed3a cl_offset +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd3667d9c cl_page_list_move +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd3de277c lu_object_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd457b86e class_export_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd70fe669 lustre_swab_llogd_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd7bc8654 obd_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd886f4bc cl_io_rw_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd98fa893 libcfs_kkuc_group_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xda2c73ce cl_page_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xda5b1ced class_find_param +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xda87b422 cl_object_attr_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdabf04ff cl_page_completion +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdc10dc68 cl_env_implant +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdcc40af0 class_check_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdd7f01d6 llog_process_or_fork +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xde7d985b obd_dirty_transit_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdeca6a57 libcfs_kkuc_msg_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe07b3c68 cl_2queue_discard +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe33082cb class_register_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe372b231 cl_req_prep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe3fee8d2 lu_stack_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe5027fb6 cl_page_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe583b23b lu_kmem_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe6a35b9f lu_site_init_finish +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe6fa40b9 cl_page_find +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe937b3dc llog_thread_key +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xea7dc997 cl_io_start +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xeacec47c lprocfs_oh_tally_log2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xeb6778bc class_exp2cliimp +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xec42ff3b cl_io_loop +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xec7d6b85 obd_timeout_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xec8f1a80 cl_page_is_owned +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xede2c463 cl_lock_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xef59449d lu_device_type_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xef76f858 block_debug_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xefb686bf lu_object_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf0dea6df lu_env_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf141e4f7 class_put_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf15c739d cl_sync_io_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf490d5f9 class_del_profiles +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf86f7adc lu_site_stats_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfbea0098 lu_types_stop +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfd68d17a class_notify_sptlrpc_conf +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfdbe1557 lprocfs_write_u64_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfeefb5cf cl_2queue_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfffc1f11 lustre_swab_ost_id +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x002e09de lprocfs_wr_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00cb99c1 RQF_LDLM_INTENT_GETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00d95039 ptlrpcd_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x01687d84 ldlm_resource_unlink_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x01af8ccc ptlrpc_schedule_difficult_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x01eb308b ptlrpc_unregister_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0336989b ptlrpc_request_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0355505b ldlm_completion_ast_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x035e3eb6 ptlrpc_fail_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x03d2d9c7 ptlrpc_set_destroy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x048b59d5 lustre_msg_set_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0515f93b RQF_FLD_QUERY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x056241c1 ptl_send_rpc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x06b3942b lustre_swab_lov_user_md_objects +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x071fc74a RQF_LDLM_ENQUEUE_LVB +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x07c59805 req_capsule_set_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x08bb2d27 lustre_swab_obd_ioobj +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x08d45df2 ptlrpc_reconnect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x095587d0 lustre_msg_buflen +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0a3130b0 RMF_MDT_EPOCH +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0ac252b2 lustre_msg_set_jobid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0ac54708 lustre_errno_hton +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0ba6e210 sptlrpc_import_sec_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0baa02b6 unlock_res_and_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0bcacb5d RMF_MDS_HSM_USER_ITEM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0cf343dd RQF_LDLM_INTENT_BASIC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0d2206e5 ptlrpc_lprocfs_brw +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0e4c580c req_capsule_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0e732c2e req_capsule_server_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0f1e2ba4 client_import_find_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x107ac646 lustre_pack_reply_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x10a1a86d ldlm_error2errno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x113adcaa _debug_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x115017f6 req_layout_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x117b5e90 ptlrpc_set_add_new_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x12b6f5a3 ptlrpc_connection_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x13f0ebec req_capsule_shrink +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x13f32777 ldlm_replay_locks +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x14708afc lustre_swab_mdt_rec_reint +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x14b1bc6e ptlrpc_set_import_active +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x14d192db lustre_msg_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x152f066f sptlrpc_flavor_has_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x15a3e4db RMF_GETINFO_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x15c43e1e ptlrpc_request_committed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x172fb86d lustre_msg_hdr_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1747d8b3 ldlm_lockname +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x17950f60 RQF_SEC_CTX +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x181ce3fe ldlm_lock_set_data +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19108a0f RQF_OST_DISCONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19c08934 RQF_LDLM_INTENT_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1a6a3ce9 RQF_OST_GET_INFO_LAST_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1a9b76aa RMF_OBD_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1abd3258 RMF_SETINFO_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ace4b5f RQF_LDLM_BL_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ad6c330 RMF_EAVALS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1b4a3b43 ptlrpc_wake_delayed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1be21715 lustre_msg_size_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1c300d8e lustre_msg_get_slv +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1cd3937d ldlm_lock_allow_match +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1dc2051d RMF_SEQ_OPC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1de9c288 lustre_swab_layout_intent +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1eb2a65f RQF_OST_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ee46b51 lustre_init_msg_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ee9eb3c RQF_MDS_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1f49d423 ptlrpcd_alloc_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1fd6a65b req_capsule_server_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2096f5b5 RQF_OST_SET_GRANT_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x219391ec RMF_EAVALS_LENS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2324c6aa ptlrpc_activate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x233790b5 RMF_OST_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2368796e ldlm_namespace_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2487b966 ptlrpc_at_set_req_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x248b1df3 ldlm_namespace_new +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x24aafdba RMF_MGS_TARGET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2585a629 RMF_SEQ_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2587513c RQF_LDLM_CP_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x25fff22a sptlrpc_sec_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2618914a ldlm_flock_completion_ast +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x269554ce RQF_LDLM_INTENT_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x26f99d16 RQF_MGS_CONFIG_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x27b3b9ba ldlm_completion_ast +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x285e5b99 lustre_msg_set_conn_cnt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x29e0869a sptlrpc_get_hash_name +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x29e7994a client_obd_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2a409944 req_capsule_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2a63a472 lustre_swab_ptlrpc_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2c00c60d ptlrpc_sample_next_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2cec385f ldlm_lock_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d56f168 ptlrpc_pinger_ir_up +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d798316 RMF_MGS_CONFIG_RES +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e4562fe RQF_LLOG_ORIGIN_HANDLE_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e4ca396 RQF_LDLM_INTENT_UNLINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2f0e4f87 RQF_OST_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2f793215 lustre_swab_ost_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2fab3539 lustre_swab_ost_lvb_v1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2fd2f737 lustre_msg_set_limit +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2fd3df16 ldlm_pool_del +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x301d4fcd RQF_MDS_READPAGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x302937e0 RQF_MDS_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x31ea2f0d sptlrpc_cli_enlarge_reqbuf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3261b862 RQF_OST_SYNC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x33939327 __ptlrpc_free_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x34056d5b ptlrpc_pinger_add_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x35939a3d lustre_swab_fiemap +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x35edb789 ptlrpc_connect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x36081ae3 ptlrpc_recover_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x37f9af32 sptlrpc_cli_ctx_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3835ab4b RQF_LLOG_ORIGIN_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3839a79f ptlrpc_request_set_replen +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3858fb94 RMF_OBD_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x38c01799 RQF_LDLM_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x38fce533 lustre_msg_set_versions +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3937f6f5 sptlrpc_unregister_policy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x39f60a5f RMF_OST_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3a1e4bcb __lustre_unpack_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ab90f6e lustre_msg_bufcount +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ac00716 lustre_swab_hsm_user_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3b6b7cba dump_ioo +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3bedb0c7 RMF_LLOGD_CONN_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c39d0cb ldlm_cancel_resource_local +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c63e62b RQF_MDS_REINT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c7a7e54 ptlrpc_request_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c8b16ab lustre_swab_ost_lvb +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ca50f33 RQF_MDS_HSM_CT_REGISTER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3cc225b3 ldlm_resource_dump +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3d6d07fe ptlrpc_resend +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3d7dc5f9 ldlm_pools_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3dc1d20f sptlrpc_register_policy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3dc47695 lustre_msg_get_magic +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f034caf lustre_msg_get_status +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f35a11d RQF_FLD_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f752e78 RQF_MDS_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3fbbad04 _ldlm_lock_debug +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x41008cef RQF_LDLM_CANCEL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x415a4b36 ldlm_extent_shift_kms +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x418a758e ptlrpc_deactivate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x41937440 sec2target_str +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43168488 RQF_MDS_RELEASE_CLOSE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4351e916 lustre_swab_hsm_user_item +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43705ee4 RQF_LOG_CANCEL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43d7efc8 lustre_msg_set_transno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x44036eda RQF_MDS_GET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x440c2a71 RMF_FIEMAP_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4481591d RQF_OST_SET_INFO_LAST_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45d05893 lustre_swab_lustre_capa +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45e30cea lustre_swab_ldlm_intent +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x47f5e903 RMF_MDS_HSM_REQUEST +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4a5a2416 RMF_DLM_REQ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4b3a390b ldlm_lock_allow_match_locked +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4d92c18c sptlrpc_conf_client_adapt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e01bf5a ptlrpc_disconnect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e040ebf ldlm_cli_cancel_unused_resource +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e1706e5 lustre_msg_buf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e696b96 ptlrpcd_queue_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4eb03a6f ptlrpcd_destroy_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4f45e46c ptlrpc_check_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4f766c3b lustre_swab_generic_32s +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4fd0b7a3 ldlm_lock_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x50443f6a ptlrpc_init_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x50dd74f8 RMF_STRING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5140046f ptlrpcd_wake +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x514b3851 lustre_swab_ldlm_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x51e311e9 lustre_swab_ldlm_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x52c62150 RMF_RCS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x53411557 RMF_DLM_REP +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x53a4a004 bulk_sec_desc_unpack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x53a7e316 ldlm_resource_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x54194c73 req_capsule_client_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5552d9d9 ptlrpc_send_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x555eb7fe RQF_MDS_HSM_STATE_SET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x56d9eae6 ldlm_cli_cancel_list +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5719a7be ptlrpc_start_threads +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x576e6db3 lock_res_and_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5814b8f9 client_import_del_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x591d96f6 ptlrpcd_add_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x595ab175 lustre_swab_obd_quotactl +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x596582bf RMF_GETINFO_VALLEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5b6ba895 lustre_packed_msg_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5c6a3a83 RQF_SEQ_QUERY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ca1b491 lustre_swab_close_data +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5caae213 ptlrpc_next_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5cd4f776 client_import_add_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e0b19b1 RMF_CLUUID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e2b7558 lustre_msghdr_get_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e6f435d RQF_OST_BRW_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e80f899 RQF_LLOG_ORIGIN_HANDLE_READ_HEADER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ec3284d RQF_MDS_HSM_CT_UNREGISTER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ef831ee lustre_msg_get_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5f96ccdd ptlrpc_connection_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5fafe9bd ldlm_namespace_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5fc9a455 RMF_CLOSE_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6042bc15 RQF_MDS_REINT_RENAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x604e2505 RMF_SWAP_LAYOUTS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x60cd26ad RQF_MDS_REINT_CREATE_SYM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x61646e1b RQF_MDS_SWAP_LAYOUTS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x618ad203 RQF_OST_GET_INFO_LAST_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x62aaae3f RQF_MDS_HSM_REQUEST +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6315dd4c RMF_LLOGD_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6352a62d ldlm_get_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x653723dc RMF_LOGCOOKIES +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6767371f ptlrpc_send_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x67f7a84b sptlrpc_cli_unwrap_bulk_read +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x683243bf ptlrpc_set_next_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x685eeaba RMF_DLM_GL_DESC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6896af91 lprocfs_wr_ping +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x68f49e5e ptlrpc_expired_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6912990a RQF_OST_QUOTACHECK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x696ba811 lustre_msg_get_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x69835550 ptlrpc_invalidate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x69ac9a80 lustre_pack_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x69c9f04d RQF_MDS_REINT_LINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6a3785c9 RMF_EADATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6acd8c6e ldlm_resource_putref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6d72828c sptlrpc_conf_log_update_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6d90a483 req_capsule_filled_sizes +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6e932370 ptlrpc_unpack_rep_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6ee02af7 ldlm_lock2desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6efa82b0 RQF_MGS_TARGET_REG +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6fb92092 sptlrpc_flavor2name_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6fbbebb4 client_connect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x703538e4 lustre_swab_hsm_current_action +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x712fb454 ptlrpc_mark_interrupted +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x725a892c RQF_MDS_REINT_OPEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7263dcb1 __ptlrpc_prep_bulk_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x74840056 lustre_msg_set_status +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x75a0925f client_destroy_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x75a2c40d ldlm_put_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x75e4ca61 RQF_OST_GET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x77e0f22c ldlm_namespace_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x77e9d3f8 lprocfs_wr_pinger_recov +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x78b9cbb5 sptlrpc_target_export_check +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7997d327 ldlm_namespace_dump +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7a31ab60 ptlrpc_request_alloc_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7a832f10 RMF_CONN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7bbf8001 RMF_MDT_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7bcc15fa ptlrpc_resend_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7bce2240 req_capsule_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7c4c6107 RQF_LDLM_CONVERT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7d1ecd7f RQF_LDLM_INTENT_LAYOUT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7d23e543 req_capsule_client_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7dfb3c18 lustre_msg_clear_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7f5a1cc7 lustre_msg_set_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x80ecb4e3 RMF_MDS_HSM_CURRENT_ACTION +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x80f638f9 lustre_pack_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x817d7f1f lustre_msg_add_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x818388ca ldlm_lock_decref_and_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8269ad6b ptlrpc_unpack_req_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x826d3c4f RQF_LDLM_GL_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x837efb00 RMF_NAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x842c3373 ptlrpc_free_rq_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85135801 RMF_DLM_LVB +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8531d42b req_capsule_server_sized_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85a9e0d8 RMF_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85eecf67 sptlrpc_get_hash_alg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x863db6eb RMF_HSM_USER_STATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x875212bb ptlrpc_unregister_service +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x876c2551 RMF_GETINFO_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x87bf7b3c sptlrpc_get_next_secid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8872f3d2 RMF_SETINFO_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x88fff52d RMF_CAPA2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x89f9edf7 RQF_MDS_REINT_SETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8a1ea476 lustre_swab_hsm_state_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8a257736 RQF_MDS_HSM_STATE_GET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8ac440fa ptlrpc_uuid_to_connection +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8b854254 lustre_swab_mgs_config_res +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8be54af8 req_capsule_client_sized_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8cb71d4b RQF_MDS_REINT_CREATE_SLAVE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d1ab900 ldlm_lock_dump_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d77ea75 lustre_msg_set_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8da3fca7 lustre_msg_add_version +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8e9abe4d RMF_GENERIC_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8f0aceac RQF_MDS_HSM_ACTION +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8fec0451 lustre_msg_get_limit +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9113f109 ldlm_cli_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x919c4ce3 RMF_OBD_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x91cf58d3 RQF_MDS_PIN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9222977b ldlm_lock_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9228392f lustre_swab_mdt_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9277ae5e RQF_MDS_REINT_CREATE_ACL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9334be43 ptlrpc_abort_inflight +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x937b1ee0 lustre_swab_mdt_ioepoch +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9385fd80 sptlrpc_import_flush_all_ctx +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9553c633 RQF_LDLM_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9564a202 ldlm_lock_addref_try +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x95d08f0c lustre_swab_mgs_target_info +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9660ace0 RMF_FLD_MDFLD +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x967bfd52 RQF_OBD_PING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x96ce7f50 lprocfs_rd_pinger_recov +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9798f2f1 RQF_MDS_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x980fcfdc ptlrpc_connection_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x99285c21 ptlrpc_register_service +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x99761eed ldlm_pool_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9999cf7a dump_ost_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9a258886 RQF_MDS_GETSTATUS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9a6f2f6d lustre_msg_set_opc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9b88f6ce RMF_NIOBUF_REMOTE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9bb5198b RQF_MDS_CLOSE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9cd3edbf ldlm_lock2handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9d7ea314 sptlrpc_pack_user_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9d934bda ptlrpc_request_bufs_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9db5526c ldlm_prep_elc_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9fb088f1 lustre_swab_lov_mds_md +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa0a5a0c5 sptlrpc_cli_ctx_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa163f4c3 dump_rniobuf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa1a0602d ptlrpc_lprocfs_unregister_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa2244636 RQF_MDS_GETATTR_NAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa2be8404 sptlrpc_import_flush_my_ctx +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa36e888f ptlrpc_queue_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa38d5d9f sptlrpc_cli_wrap_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa3d2a6ee RMF_CAPA1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa3e727a9 sptlrpc_lprocfs_cliobd_attach +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa4368802 ldlm_cli_enqueue_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa47787ef RMF_PTLRPC_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa4a2d089 RQF_OST_PUNCH +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa4d368fd ldlm_resource_iterate +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa6c436ca RQF_MDS_WRITEPAGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7a03774 ldlm_cli_cancel_list_local +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7c41391 ptlrpc_replay_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7e360b1 RMF_OBD_IOOBJ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7ec567d RMF_CONNECT_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa8617578 do_set_info_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9704f80 lustre_msg_get_last_committed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9c4658e lustre_swab_lov_user_md_v3 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9e40b00 ldlm_lock_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaaba2a6b llog_initiator_connect +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xab702ba7 ldlm_pool_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xabce86bb ldlm_cli_update_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xacd6a7d7 lustre_swab_ost_last_id +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xae769957 ptlrpc_request_free +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xae9de7f4 ptlrpc_add_timeout_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaeac0868 ptlrpc_prep_bulk_imp +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf4e9658 RQF_MDS_SYNC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf503da8 ptlrpc_req_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf50a0d6 RMF_HSM_STATE_SET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb0751fa4 RQF_LLOG_ORIGIN_HANDLE_DESTROY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb1b43d8a dump_rcs +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb291473d lustre_msg_early_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb3c920fc ldlm_lock_change_resource +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb4566e84 client_obd_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb4a7ecf3 lustre_msg_add_op_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb512ebc2 sptlrpc_parse_flavor +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb564a399 req_capsule_has_field +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb61cb95a RQF_MDS_GETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb68476df interval_erase +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb68de2dd ptlrpc_pinger_del_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb6aafd03 RQF_MDS_DONE_WRITING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb7b38189 RMF_MDT_MD +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb7fa3cc8 RMF_LLOG_LOG_HDR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb903634e RQF_OST_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb9b631cf lustre_swab_mgs_config_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbaa76097 lustre_msg_string +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbc1370dc lustre_shrink_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbc4ec307 ptlrpc_pinger_sending_on_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbd83bc44 RQF_OBD_SET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbef769cc RQF_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbf5fc4a7 ldlm_cli_enqueue +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbf98b86f RQF_MDS_QUOTACHECK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbffd4313 RQF_OST_BRW_WRITE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc06c4670 lustre_msg_get_versions +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc081c308 req_capsule_server_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc0867da7 RMF_REC_REINT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc0cdf55e RMF_MGS_SEND_PARAM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc1fdc33f ptlrpc_unregister_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc20b83b0 sptlrpc_cli_unwrap_bulk_write +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc2768690 sptlrpc_target_sec_part +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc2b1af57 RQF_MGS_SET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc2be922a RMF_SYMTGT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc3071355 ptlrpc_set_add_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc4f4f0fd ptlrpc_request_alloc_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc559a634 RMF_LAYOUT_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc60a60e1 RQF_OST_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc621ee40 ptlrpc_req_finished +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc64b36c7 req_capsule_get_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc694be4b RQF_LLOG_ORIGIN_HANDLE_PREV_BLOCK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc763fabc sptlrpc_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc79b9c67 ldlm_pools_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc7ca8257 RQF_MDS_REINT_SETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc7e47564 ptlrpc_interrupted_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc8f586a9 ptlrpc_connection_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc96547d6 ldlm_revalidate_lock_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xca5a81ec ptlrpc_pinger_ir_down +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcb16107d ptlrpc_set_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcb2cc0cf lustre_swab_lquota_lvb +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcc6156e2 ptlrpc_buf_set_swabbed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xce86066d lustre_msg_set_slv +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcec513c9 RQF_MDS_UNPIN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcf9963db lustre_msg_get_op_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcf9aab6a RQF_MDS_DISCONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd0069b4c req_capsule_server_sized_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd0e0f60f client_disconnect_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd27e73bc sptlrpc_enc_pool_put_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2983334 lustre_swab_swap_layouts +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2b71ff0 ldlm_pool_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2e0d4eb lustre_msg_get_opc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd313265b ptlrpc_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd3dae408 ldlm_it2str +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd69e0a27 RQF_MDS_IS_SUBDIR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd6a7953a ptlrpc_lprocfs_register_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd6ba0615 llog_client_ops +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd6c3ebfb RMF_FIEMAP_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd741876c ptlrpc_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd770eee2 target_pack_pool_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd7910326 lustre_swab_obd_statfs +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd8b91b3e lustre_swab_lov_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd8de41c3 sptlrpc_gc_add_sec +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd8f06300 RQF_MDS_HSM_PROGRESS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd9561861 RQF_LDLM_INTENT_OPEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd97bddeb ldlm_lock_fail_match_locked +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdad1b58a lustre_free_reply_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb1fb0a2 RQF_MDS_REINT_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb74057f lustre_swab_hsm_progress_kernel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb9d5a6a lustre_swab_niobuf_remote +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd011cc5 ptlrpc_init_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd0ffb04 sptlrpc_flavor2name +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd30d7bf RMF_ACL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd3129c2 ldlm_cli_cancel_unused +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xddc40a85 lustre_msg_get_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xde12d36b RMF_MDS_HSM_ARCHIVE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xde5061c1 ptlrpc_init_rq_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdee87192 sptlrpc_conf_log_update_begin +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdf2f6300 req_capsule_extend +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdf701ae7 lustre_swab_fid2path +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe0cc694c RQF_LLOG_ORIGIN_HANDLE_NEXT_BLOCK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe3cedeb9 sptlrpc_get_bulk_checksum +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe40e0a50 lustre_msg_get_transno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe57bd972 sptlrpc_current_user_desc_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe5e8169b lustre_errno_ntoh +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe61d50cc ptlrpc_buf_need_swab +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe643998e RQF_OST_SETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe679ef42 ptlrpc_request_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe6f0dc96 RQF_OST_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe7062b5f RMF_U32 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe7512278 ptlrpcd_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe8d3badd ldlm_lock_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xebb64e68 req_layout_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xec939a00 RQF_MDS_REINT_UNLINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xed1c10d6 ptlrpc_connection_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xedcb740d sptlrpc_name2flavor_base +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xeef6bb53 ptlrpc_obd_ping +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xef1aeca9 RMF_FLD_OPC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xefb25bf7 ldlm_prep_enqueue_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf049650b target_send_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf1300275 _sptlrpc_enlarge_msg_inplace +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf277c125 RQF_OST_GET_INFO_FIEMAP +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf298bc84 ptlrpc_retain_replayable_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf3d44370 RQF_OST_DESTROY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf43540b9 lustre_swab_mgs_nidtbl_entry +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf45085e1 sptlrpc_conf_log_stop +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf55c033b RMF_MGS_CONFIG_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf563c566 lustre_pack_reply_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf596e9ae sptlrpc_conf_log_start +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf607fc23 sptlrpc_flavor2name_base +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf617ab8a lustre_msg_get_conn_cnt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf697b756 ldlm_dump_all_namespaces +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf7408f84 lustre_swab_hsm_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf7ba40c0 RMF_MDS_HSM_PROGRESS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf870fed9 RQF_LDLM_GL_DESC_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf9051bd6 RQF_QC_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf973aa93 lustre_swab_lov_user_md_v1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf9b1bc51 sptlrpc_gc_del_sec +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf9f72dfc RMF_TGTUUID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfa51688d interval_insert +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfb444a98 ptlrpc_prep_fcset +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfc2fa83f ptlrpc_del_timeout_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfd148bf8 RMF_LDLM_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfe6048ce ptlrpc_add_rqs_to_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfe721a7d ldlm_lock_match +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xff2b5341 ptlrpc_prep_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xff4e44c3 __ldlm_handle2lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xffc807e8 sptlrpc_unpack_user_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xffe29c3f RQF_LDLM_ENQUEUE +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xbfcaa08b cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x3c804b25 most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0114198a rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x017529b8 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x021eb441 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x02505e11 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0c6aa5df rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x13008c4d rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x134e661d rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x18e53d78 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1d3725ec rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x28adcc2d notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2abe6ef7 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2b6ca338 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e9899d8 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e9db0cc rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x37e665b9 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x39cda003 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3a696beb RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3eabdf04 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3ee53554 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x487213f9 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4c93dcde rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4f8ec2a4 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x55525d1d rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5c34c877 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5c8d7aa7 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6077e0cc rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x64e6cf09 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x70ec45f4 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x723edbab rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x727031fb rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x730e393d rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x738e2266 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x74f1b9d4 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b4c4ebd rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x812818c1 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x89c70c45 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8da828af HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9ff5bbf7 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa3ff1a04 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xab290b3e rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xae29c678 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb5587443 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbb93ed98 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc72d5c45 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd5b9e379 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd8b554ba rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdaf11579 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xecd6c7af Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf2019847 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf951da7c rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x02ed4e1d ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0dcee4b5 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1493be37 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x198a690a notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x247bb0e6 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x29551aaa ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x29e416b1 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2b3db702 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2f0c5afc Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x38b62187 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x46ec320f ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x475f8597 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x489f4296 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4cec0603 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x51564950 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x53c6e56b ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x55b15c81 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5850a694 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6a34aa79 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6d648cf1 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6f7fe5f7 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x786f3299 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x78d1adc7 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7991ebfd SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x85774b64 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x87dcf0f6 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x912dcf75 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x93e42ebf ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9ad7da82 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa0f1948d ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa59fc4ad ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xabb90297 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xacb57504 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xadcd8218 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb08c8e38 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb245ceaf IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb3246e10 ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb3b255f9 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbecae75f ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb17e956 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd458b58d ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd6da91b1 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe465c25c DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe6595abb ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe7afcb1f DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe903998d ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe954dd0d ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeab42956 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf18b5aea ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf499a5ea ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf61b81d6 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfafb6b34 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xffae23fe ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0027427f iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0aa380ab iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0e7b3d6c iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x195fa221 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x232492ab iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2455c553 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x33e7ae96 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x37f014f6 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3940ccdc iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3bb1c50b iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4bd0eb97 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4c2096bd iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4c9e8544 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4e00d83f iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5553af7e iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5560592f iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x61bc7a55 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65eb6cef iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6840028f iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x739c9b5a iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7b4f614c iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7be33732 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c22de41 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8582b3d1 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8907c27e iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8cc4158c iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x93c8bb0d iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9abea0de iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb025bff5 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbd872f8d iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc3c7172b iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc6244f0a iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcf65194b iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd02ac749 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd0dfc99a iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xde6733f8 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe49da85c iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe50e1cf4 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe736ad7e iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe82e803f iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xee3811d5 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf9401ecd iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfd38c03d iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/target_core_mod 0x0233c538 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0b3da551 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f4c8e9d transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x1187be6c transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x189a7d1a transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x21a952d1 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x22830171 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x22e547f8 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x25796e8a transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x2c36891c target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x334e3a1b core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x3502373a core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x389b8474 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x3f77e088 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x43ba2d74 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x4737d38a target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x478b4178 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x49a930b4 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x4bc78281 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x4fa7920f transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x52595784 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x52aa5d8d transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x54ce9182 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5a6e454d target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x5ec4b60d target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x5ede3b47 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x5fd5caf0 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x6202ae91 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x62660229 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x65a39706 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x667967c3 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6877e3a6 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x69d4c401 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x6a9da3ad target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6aa9ef3a target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x7603dd87 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7647417d target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7b2ca206 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x85e81fb5 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x870f61e4 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x8ae3bcd7 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x92c64c40 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x931d7270 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x945ae6cf transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xa3c37f9b core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xa77f93af target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb11f6979 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xb3a086d1 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xb7196ec7 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xb882e2b8 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xc02169cd target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0xc3bc8622 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc1af17e transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xce421ad4 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xd4280a22 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd55a12fa transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xd9fcd038 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xdb0330bb core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xdc8e5728 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xdef5d58e target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xdfe22f24 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe2909347 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xe3602e74 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe5312108 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xe848ccb7 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xebf235fa target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf1f1f3c2 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xf55cc164 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xfefa5277 target_submit_tmr +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xbf5be4f9 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x9838a22d usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x29b2e40a sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x05ba9cf2 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x166b5987 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x42d8633c usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x48510183 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x547f9a7a usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5b097e25 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9ea8123b usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa8d4c703 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd0c9abc6 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdc523310 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe7f7dca1 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf511faf7 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x026701fd usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x98e67cd5 usb_serial_resume +EXPORT_SYMBOL drivers/vhost/vhost 0x471d13ef vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0x9e687e75 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x59f824d9 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x937e412c vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user +EXPORT_SYMBOL drivers/video/backlight/lcd 0x98884208 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x9b7c2069 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xaf6eaa36 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xd98285b1 lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0d458110 svga_tilecursor +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 0x4be0f45d svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x60284d9d svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x720bd405 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x9e44b558 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x9ebb9b26 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb43c88d6 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xa8853cee sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x67f11975 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x10dec94c 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 0xa064259d cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x53b73f1c matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x99fb1e66 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xfdaf4eb2 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x89be2976 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x8f80cb12 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xc4e81b9d matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xe049140c DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x279eca2a matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xfefab9c8 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x42b31729 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x568090ef matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xd5cf1a53 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xe21104b2 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x4b882c0f matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xaddffe5c matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x6c824bac matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x73641dec matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb8da7f65 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc5ad1f69 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xdffc62af matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xf927b78a mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x01c372e4 w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x295e921b w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x95df5333 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xa00fd858 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x3d7a8655 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xf2f1255b w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x5bcc3897 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xce8d1d4d w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x15061d20 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x4988d905 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x9371e398 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xee310e7d w1_unregister_family +EXPORT_SYMBOL fs/configfs/configfs 0x05981587 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x23b7f4ff config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x240826d1 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x30fcc470 configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x4fec3a1a config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x65b8a9d0 configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x6751213d configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x6a93486f configfs_remove_default_groups +EXPORT_SYMBOL fs/configfs/configfs 0x6c5bb3a1 config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0x77230902 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x8086092e config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x935e0a52 config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0xb9ce1d66 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xc64ea845 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0xd1bbc1b2 configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xda59dde4 configfs_depend_item_unlocked +EXPORT_SYMBOL fs/configfs/configfs 0xf474fb17 configfs_depend_item +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x28ac3ef0 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x36a75d9b ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x434a894a extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x914af4c5 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0x9274f55f ore_read +EXPORT_SYMBOL fs/exofs/libore 0x9619f7d1 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x9ac47e7c ore_create +EXPORT_SYMBOL fs/exofs/libore 0xa1748f14 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xc48fc1a0 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0xee9f9e96 ore_write +EXPORT_SYMBOL fs/fscache/fscache 0x0df19cd2 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x1bdf11ad fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x1c3eacd1 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x203bd01d __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x2baa52fe __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x2c598232 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x35e63cf1 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x46fb9aaf fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x493a3694 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x49fa0931 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x4d4c1287 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x4e59d971 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x4fe3e9da __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x54c169b1 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x5ec64090 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x72453d95 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x74704df4 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x7a53896f __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x7e2fcc12 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x7f3e24ed __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x8280d52f fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x8d3eef30 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x93a8ef76 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x96b977a6 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x9936647e fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xa079b450 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xa76a7900 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xafbfa631 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xb36bb839 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0xbc49e666 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xc056d4e0 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0xc4b63d8c fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xc90fa47d __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xc99a7db9 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xe3475f68 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xec757d1f __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf702b609 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xf8e44438 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xfa85bfc7 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xff0603f2 fscache_put_operation +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x0f5faaa2 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x3216b5bf qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x6c0cca02 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x7144a28c qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x757e5910 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xe1fedc76 qtree_release_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t +EXPORT_SYMBOL lib/crc7 0x66213969 crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative +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 0x73c9ef70 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed +EXPORT_SYMBOL lib/lru_cache 0x99ab27f5 lc_seq_printf_stats +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 0xcbc5d521 lz4_compress +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x26c3aa22 lz4hc_compress +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0x7456cc61 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul +EXPORT_SYMBOL net/6lowpan/6lowpan 0x083da4b4 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x2a73fd9f lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x37736398 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x5242a8f3 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x7c2b200f lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x9740931d lowpan_register_netdevice +EXPORT_SYMBOL net/802/p8022 0x2feacea7 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0x47d126ed register_8022_client +EXPORT_SYMBOL net/802/p8023 0x0bb7470e make_8023_client +EXPORT_SYMBOL net/802/p8023 0x7c04ed63 destroy_8023_client +EXPORT_SYMBOL net/802/psnap 0x45772a2c register_snap_client +EXPORT_SYMBOL net/802/psnap 0xe5bfb32d unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x041aacb5 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x0918a0fe p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x0f630f6f p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x0f7b6360 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x140ef423 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x14284959 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x28e7c9f7 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x3404ef7c p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x369cb8b8 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x372d42bd p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3e0f0b34 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x420a3072 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x59772262 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x5a73db43 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x5c771da1 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x61d2a19f p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x634ea7c2 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x6d415a1a p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x707923eb p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x707b2519 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x7355080b p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x7b78b42f p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x82896528 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x9f94a5ee p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xa540d6a1 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xa5d84b4b p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xb1a68b26 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xbeedd5da p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xc5be83db p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc9903226 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xcd3436f6 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xddfe825c p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xde50e58c p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xe45d0880 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xea18d2fa p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xeab594d7 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xeacafdb1 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xef117953 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xf2460ae7 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xf8c8c63b p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf9bb7019 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x44e70839 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x58808e5a alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xdb918fbc atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xf1401c3e aarp_send_ddp +EXPORT_SYMBOL net/atm/atm 0x06a06c4a atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x1e067308 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x48483a8d atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x4fd61921 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x528d39d1 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x6f4e2ded vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x8a332b98 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x9cfbdd57 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 0xacd30314 atm_charge +EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xd069913a deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xe4daf330 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xfb0dc981 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xfcd6cce7 vcc_insert_socket +EXPORT_SYMBOL net/ax25/ax25 0x0f7a89d6 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x1a794ffd ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x37c4fdfd ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x388cce0b ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x3c2a9ef1 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x4599e80f ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x9aa7a148 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xd5545bfe ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0xe9aaf0a4 ax25_display_timer +EXPORT_SYMBOL net/bluetooth/bluetooth 0x04d56724 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x062f69c3 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0639717e bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0660515b l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x092dc4e0 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0bff8c23 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0d5d0208 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0fb8e9dd l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x14fd100a bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1ab471ab hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x22a2cc45 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x24306ee2 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2e91d7dd hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x394fcb9e hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3987d78f __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ff9e258 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x42506598 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x51ff7a8c l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x529ae910 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x54389b2e bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x64233c0c bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x648a5ef8 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x65530643 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6820813f hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7cb043e2 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7dd31463 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fc8f042 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9111082c hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x95401056 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x979ad825 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa255f114 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa763aa4a bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaea4e553 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xafad2b70 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb178d4c3 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb81205ed hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb89adb51 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcced683e hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcf36eeaf l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd9107e18 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe9caab42 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xea1a8433 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf4c9e70b bt_sock_wait_state +EXPORT_SYMBOL net/bridge/bridge 0x4672c86a br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x20b5e989 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x34e241c3 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc7dbf24c ebt_do_table +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x1ae4c1eb 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 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x7292a3d4 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x98bd4ac6 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb68011d3 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xb82a3438 caif_connect_client +EXPORT_SYMBOL net/can/can 0x219461d4 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x8082a911 can_rx_register +EXPORT_SYMBOL net/can/can 0x95faed30 can_ioctl +EXPORT_SYMBOL net/can/can 0xb1af8d01 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xb97b04c3 can_proto_register +EXPORT_SYMBOL net/can/can 0xf8088317 can_send +EXPORT_SYMBOL net/ceph/libceph 0x00513c3c ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x009fb63d ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x022f34e7 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x082779b0 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x0861c5fe ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x088302ad ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0a9d4993 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x0c66edd6 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x0fb37579 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x10a3edd1 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x15642c5e ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x18d0290f ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x1c7adea7 ceph_file_layout_from_legacy +EXPORT_SYMBOL net/ceph/libceph 0x1e8d8586 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x2459b5be ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x2db717f3 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x2e84fc13 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x2f083178 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x322971dd ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x32d89be3 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x3402f8e9 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x38b5dd48 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x38edc602 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x3fbf6d72 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x439b15fa ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x450f4da2 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x46f02dcf ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x480b4c4d ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x4ba7c4f4 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x4e5442ab ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x51480f60 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5c7a42d2 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x5d91b905 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x5dd84e06 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x5e7c9469 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x5effd82a osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x63d9e95f ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x63e2e0cc ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x66c85617 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x66d32868 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x684bcf71 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6c187de6 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x72351c6b ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x730bb6be ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x732e2aba osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x78548200 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x7ee2ed1c ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x8155cc2c ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x85d03a9e ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0x87345f87 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x8914edf8 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x893857ab ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x8a7672f3 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x8dcd048c ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x902d399b osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x987955da ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0x99885784 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9a29dc16 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x9a674aa0 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x9b2046ed ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x9b591873 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x9cfe1ec6 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x9d46f43d ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x9e48e056 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa004ca8c ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xa043bd16 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa0c518c4 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xa2d69d01 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xaa5bf92a ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb5c14089 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb63c0b3b ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0xbb96c236 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xbf15e03c ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0xbfba3013 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xc2a5a57d ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc676c1f6 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xc704d66c ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcf316f67 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xdd8e7550 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xe4951b83 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xe55d1e31 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xe6b3c4bf osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xe7901348 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xe9c670ef ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xebc8d181 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0xec4aa352 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xee1ac17c ceph_file_layout_to_legacy +EXPORT_SYMBOL net/ceph/libceph 0xf26bcb57 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xf6b75a4d ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf7f861f4 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xfdc9eb5a osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xff8fa867 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xff9a175b ceph_oloc_copy +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x5ccf3f7d dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xc5c6de94 dccp_syn_ack_timeout +EXPORT_SYMBOL net/ieee802154/ieee802154 0x3ed2fbe1 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x762eb540 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7b5aa502 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb4c5cad9 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xd034f9e3 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe877a5f0 wpan_phy_unregister +EXPORT_SYMBOL net/ipv4/fou 0x05d6386e gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x84720085 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xc4509225 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd340b914 fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x91eaca4a gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2fe02457 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x52c82b58 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x57ba5038 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6720f76b ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x159510b0 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x3d4a7147 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xcc08acd6 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x38b426c0 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xe45e82f6 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xec2d892f ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0xc3659295 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xe03aea99 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x6e819c39 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/fou6 0x02f20984 fou6_build_header +EXPORT_SYMBOL net/ipv6/fou6 0x1d9020a9 gue6_build_header +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2928007c ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x42f328c8 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4444efa3 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6884cd60 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7709d8b2 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x85472971 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa5907334 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa65a0f05 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd5d3ac0b ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x2bdd870a ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x54db84ef ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x768414e4 ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x7abeec3e xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xfee4cfe2 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x753a0ea6 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xda1f7d17 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x05c0cc96 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x05cb8ffe ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x0ca58143 ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x1b40ce27 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x4148cc39 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xd3048833 ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xdcefed5b ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xf7b37d91 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x0064e0ea hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x0523837c irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x1320b6b4 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x1a50d4d4 irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x21f56fb3 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x3147f73f iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x35b231bd irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0x3e56064f hashbin_new +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x489f55d6 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x4fb54356 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0x53f29ca8 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x601bda46 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6b5fbcef hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x6e0ab3c7 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x72473f3f iriap_open +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x76960d81 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7a3325a6 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x85d88217 irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x9269ca3b irlap_open +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x9fd5c73b irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0xa5465b87 irttp_dup +EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xadfc3b79 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0xaffc64f9 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbda273e5 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xc68e43be irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xc9b985ae irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0xcead7dbb hashbin_find +EXPORT_SYMBOL net/irda/irda 0xd033cc30 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xd06e557e iriap_close +EXPORT_SYMBOL net/irda/irda 0xd087cb78 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0xd2108314 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0xd24b797f irlap_close +EXPORT_SYMBOL net/irda/irda 0xd355aa4f irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe32ee353 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0xe3463529 hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0xe3bde43e irias_insert_object +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xf0a694a1 irias_find_object +EXPORT_SYMBOL net/irda/irda 0xf39b7fe0 irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xf5876b95 hashbin_remove_this +EXPORT_SYMBOL net/kcm/kcm 0x4a261f9e kcm_proc_unregister +EXPORT_SYMBOL net/kcm/kcm 0xbad6cc09 kcm_proc_register +EXPORT_SYMBOL net/l2tp/l2tp_core 0xd97ef68a l2tp_recv_common +EXPORT_SYMBOL net/lapb/lapb 0x21a53754 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x3c7c227b lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x4eb05deb lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x88311f60 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xc1804fb4 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xc5f4a41a lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xe95a4954 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xed156d90 lapb_connect_request +EXPORT_SYMBOL net/llc/llc 0x1ea36de3 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x3111387f llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x3511c38c llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x39b75b54 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x6794e67d llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x721a9b2f llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x8fca8537 llc_mac_hdr_init +EXPORT_SYMBOL net/mac80211/mac80211 0x00682106 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x020f35da ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x02166686 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x033c6407 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x04fb49bb ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x05c9ac76 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x0c39c6e9 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x0da06609 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x143dd2b2 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x14938652 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x1e2b8bd7 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x218969cf ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x2314bb0f ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x263c390b ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x275a7a62 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x2ba0e81a ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2dc6bcd6 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x2f2d4ad5 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x2fd7e7ef __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x3091b5fe ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x3120217e ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x3481bbe8 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x409e669f ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x41a1ae43 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x42888435 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x453f5569 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x4757ab08 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x48f652e7 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x49198dfc ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x4a7e3a37 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x4b3115f5 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x5cc09819 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x6208a485 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x66a6fc7c ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x69de096c ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x6b3821fe ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x6e079868 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x703c2569 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x73573a05 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x73749735 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x76b9ef28 ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x776cbdfb ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x79be1cc1 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x79ff439c ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x7dcae721 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x7f3b65ad ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x809cbb8e ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x8192d19f ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x827b721e ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x8b26f1e3 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x8e1e7d11 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x8ee7a530 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x91298043 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x927ac535 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x93a87feb ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x953c9d76 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x968c85b5 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x96c1eae0 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x96f37ee2 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x9e3ccb38 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xa0989431 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xa582e290 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xa9d138b8 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xad076d52 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xbcd3afc7 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xc0eeb1c0 ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xc288874a ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xc2a9d8b0 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xcaf54c58 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xcda243a8 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xd09eee15 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xd24842eb ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0xd66bd977 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd8b189e8 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xd8f727aa ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0xd96c5cbf ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xda398ddd ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xdd3efdce ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xddf670cb ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0xdedcc3d2 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe0e1a583 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xe3d2c75b ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xed08e270 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xed2b311f ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xf3230e32 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xf3a14939 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xfa62b336 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac802154/mac802154 0x2ddf6517 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x7eeaeab4 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x816135a9 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xa3924d41 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xab245283 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xcb34b589 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xd5808ad5 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xe5a95ef9 ieee802154_wake_queue +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0716f65d ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x09b19ca9 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1ea83d41 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x29f24ccb ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3f5c7f9a register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x49cc293c ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4ed5e0fa ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5a0ca8eb ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5b184763 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x65c4c672 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6c270893 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x950a48a2 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbe543535 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xceb80326 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xeba32f28 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x4ae0538f __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x73ad6a65 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xb489f47a nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x07e42eb6 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x590e9cf9 nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0x6f43998a nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x8f5eb40b __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xdadf7d22 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0xdc5310bb nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x29d297b8 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x55890c2f xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x6a6d9b4f xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x6b717c5b xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x9172a4f7 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x9db88653 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xc61b5276 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xe26d2910 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xe6ea7d19 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xf5dba02e xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x13b797e3 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x159171a7 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x21a1ed29 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x376eeb26 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x47df5929 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x4a9f5a9d nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x53057f71 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x62442128 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x65003ee0 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x70b02bd6 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x761fcfd7 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x88d8fd90 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x8e496b87 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x9b22372b nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xad13f54c nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xafe640f3 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xc6acd13f nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xd35d4c7b nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xd49daf87 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xf2bcbaf0 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xf7158a73 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/nci/nci 0x02097260 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x1b56ca01 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x1f2497bd nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x2419fd58 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x418f15d6 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x449d4d77 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x51637f8e nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x53e8cc5f nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x5416aa88 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x5438d4bb nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x5e2b3f4d nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x63f9ddff nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x649ae28e nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x71c38fac nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x836b6b19 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x9e954a48 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xaa3e5ae3 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xaabac4b6 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xaeeb7952 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xd04242e7 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xd1cd4036 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xd1ffa1d0 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xd51af133 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0xd67bf6d9 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xde40f7a1 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xe77c5975 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xeee2075c nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xf291ded2 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xf6b6b6a9 nci_recv_frame +EXPORT_SYMBOL net/nfc/nfc 0x0f782354 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x2ec33203 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x32c95e9c nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x35cc6861 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x3a3f3e6c nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x4031406c nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x5178a021 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x536a3cbd nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x5817f977 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x6102dc27 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x625cfd63 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x69c063eb nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x8704e42c __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x8cadc305 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x938077a7 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xa2e04143 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0xa3036faf nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xb6168cb8 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xba9d3d2e nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xbd556a4a nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xc3d5c32b nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xcf63cd46 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xdb93460a nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xdf9f23c4 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xfe9c58ca nfc_add_se +EXPORT_SYMBOL net/nfc/nfc_digital 0x1407d256 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x153488bf nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x6d07d69b nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x7f63d036 nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x30038e08 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x44bd30ca phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x45bcfc27 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x569b65ee pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x7e7defc0 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x89c8e7cb pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x8c15fac5 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xa31d9654 pn_sock_unhash +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00fd2c7d rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0ea047f8 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x211ead2c rxrpc_kernel_data_consumed +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4d0a0dab rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x686d81cc rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7beba05f rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x97f94b8d rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd39d95e0 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd4644f0a rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd58f39b9 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd770c85c key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd7ad4c52 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd7d7f9cd rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe00b02e4 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe13c5282 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/sctp/sctp 0x10aadac4 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x3129ce2e gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x3bd44dd5 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7e71a3c6 gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x0bcf0fb0 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x79963c0e xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xa036764e svc_pool_stats_open +EXPORT_SYMBOL net/wimax/wimax 0x37446aa7 wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0xc9120443 wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x02c6e788 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x07faf4ef regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0a429cb8 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x0ad0d0b1 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0c855b25 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x0e77cabe cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x16e904e2 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x18e4434f cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1bc9d40c cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x1bf02823 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1c00f8ea ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x21f0aab5 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x2751a2a3 cfg80211_connect_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x297a67f4 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x3f4b3169 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x42256d84 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x43e20097 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x476aea84 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x48580204 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4b578081 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x4ca642d2 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x4f7cce45 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x51fe3cfc cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x53c725c8 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x547468f7 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x54eb3cd0 ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x5c3fc1f5 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x5d2c0b51 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x5d9927e6 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x5f11f6b1 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x619a4a26 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x641d25d3 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6b1d41c7 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x6c040132 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x754a490d cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x798b683b regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x7eeb0530 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7f24369b __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x856e6c15 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x862e568d wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x8916c097 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x899379ef ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x8c0b3950 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x90234f25 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x9552b56e cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x9627802c cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x9895f10d cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x992b54fd cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9d302cf9 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x9d77d3c6 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xa4b03786 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0xa4ce6559 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xa7776c35 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xa8d2041b cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa8eceb27 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0xabfcebe8 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xaed485aa cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xb17577af cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xb4d3b3b6 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xb95d1d62 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xb99fbb33 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xbe7936ef cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xbfc5a92a cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xc3d1e7a4 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xc5aeadb6 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc9442f5d ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0xd50876f3 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xd7e9c48c cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xd7ee014f cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd93457f7 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdc311b58 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xdc3469b8 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/cfg80211 0xe0b97d33 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xe10d5ea9 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe1eb62a7 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe50d96cb wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xe7f0508c cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xe80b4e92 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xe8663ae6 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0xea53437f regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xec29888a cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xec6d6975 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xefd7f81b cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0xf13be6cb cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xf166faf4 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xf20f6bb4 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xf511f3a9 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xf6290f66 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xf65f6da9 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xf696d52f cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xf6e28866 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xf82d1e8b cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/lib80211 0x033cceeb lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x629735b6 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x637e3f80 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x7b6f8976 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xad143bd9 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xc73b0424 lib80211_crypt_info_free +EXPORT_SYMBOL sound/ac97_bus 0x90d0119e ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x4869320b 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 0x362c6f99 snd_seq_kernel_client_enqueue_blocking +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 0x8c1d92fd snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb0114751 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 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xdaeeb7cc 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-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xdce04383 snd_seq_device_new +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 0xf0a1fdb3 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 0xd7c7afcc snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe60fb228 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xecbde43c snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xb1837994 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x0275e8e3 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x0287bac0 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x0852a329 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x093c371a snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x0a113e23 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x0b76c00a snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x0bd46bfc snd_card_new +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 0x1d115092 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x1f22260b snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x20be2dee snd_register_device +EXPORT_SYMBOL sound/core/snd 0x216287e3 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x2464bf70 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x25bc74af snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x270fd0dd snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x281c3921 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x2bdc6ec6 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x2c16f7c8 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x38f894bd snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x47b8f7bc snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x48bc72f1 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4eddbb5f snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x59b9665b snd_device_register +EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x64205af5 snd_device_new +EXPORT_SYMBOL sound/core/snd 0x692830ee snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x6ab52c3a snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x6be57953 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x6ced7dec snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x70821714 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x7aa1e5ff snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x7fefd56f snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x808cc8cf snd_card_register +EXPORT_SYMBOL sound/core/snd 0x81770b40 snd_cards +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x84eb1fa8 release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0x87f38fab snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x93803a6e snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x96ad0df5 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xa28c10da snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xa3123f8f snd_info_register +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb50a1828 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xb65df7d2 snd_device_free +EXPORT_SYMBOL sound/core/snd 0xb9644034 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL sound/core/snd 0xd1e1a12a snd_power_wait +EXPORT_SYMBOL sound/core/snd 0xd51401ef snd_component_add +EXPORT_SYMBOL sound/core/snd 0xdfa050b3 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xe0a99012 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xea5f7bcd snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xfb922d39 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd-hwdep 0x9d4961cd snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x021131da snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x02f66c87 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x0552062b snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x0a68be1f snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x0c4b5c94 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x1a265bf9 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1d9a5309 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x20387724 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x29d49bce snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x2bc829f4 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x37bb8d7f snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3b91f3af snd_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x4d9b6d35 snd_pcm_format_size +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 0x51494b7c snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x52459d98 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x53f9ba19 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x5439301f snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x59cee926 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x5b1ec464 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5b4689c1 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x5cc988bb snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x5dd0f531 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x5f1d3f32 snd_pcm_stop +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 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x7cd0237f snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0x7d1b3fab snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0x7f2493f6 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x8136ad24 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x8adb3ab5 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x9a601466 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xa1a44c1b snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xaa0555a2 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xac8b7325 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xade88e76 snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xaf2794b6 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0xb2729584 snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0xb56452d5 snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0xb62861fe snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xb6c372b8 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xc285d7e2 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xc64e3dac snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xc7287cae snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0xc8ef387e snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xd6f09bd6 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xd794a7ac snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xe1f6e5dd snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe80a8f67 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xeab87356 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xee6cdf0c snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0xfa89f819 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xfa8ccfbb snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x13b0c04b snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1a9923ef snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5092aa5a snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5b17a379 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5b4b62b4 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5cadcd21 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x67ad7bb1 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6e6f8ea0 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x78422392 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x82e08652 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x86ea28cb snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8739ab84 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9d56b514 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb8628259 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe4610fed snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe98a579e __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xee4339e9 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf3076614 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf8c448b4 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-timer 0x04e222c9 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x05be3468 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x3bd9b8b6 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x4265b57d snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x4ad0ebfc snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x5a831241 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x79fceefa snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x80814809 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x84f87146 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x91060ac7 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xa3472bc1 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xa361e3bb snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xb01ef396 snd_timer_interrupt +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x308fd414 snd_mpu401_uart_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/opl3/snd-opl3-lib 0x027bac69 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x20ebbcfb snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5b760cd3 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x880058e0 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x89abb402 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x949e0218 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xcde361be snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd83e7cc9 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe22a46ca snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x15e5bc24 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x210a4942 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x25269c9f snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5b09c5ac snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7807399d snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa8ce9354 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb14cf6a7 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd13e0af0 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xea330592 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x04ecb3a0 snd_fw_schedule_registration +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x06dfbf8f amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0c0c0b52 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1c3bed7d amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x23836cb5 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2bb32631 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x33c6e0f8 amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x362a3e79 amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3b868a78 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3e9b42f7 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x46076e34 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ddbfb6 snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5da5a8bf iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6f6233cd fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x779ba9f1 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x79c43446 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x873fabff fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x87985d73 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8d47baba avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x91e199c2 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9f2fec99 snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa9555b68 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xadc9c537 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb8d52f8e cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbd1ffa7b avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc89a400a fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc8e27c2c fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdd5b1594 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xde80dc1c amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdf9e39f4 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe2d52f52 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf49c02e5 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfff7d074 fw_iso_resources_update +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xb59d803f snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xddeb4e60 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x09890f4b snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1393d63b snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1efd62b8 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x391a1bf4 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3a6ff365 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x61fe5335 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9e3abff1 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbf2cff3d snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x18f264f6 snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x779a3a03 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x95edec24 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x9fa5e71f snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xac704ede snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xf6b0d16e snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x0b67f504 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x309a9762 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x576455ba snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xcd9d7015 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x04537973 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xc20294a7 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x085d595d snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x76e023bc snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x81f987b3 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xbc98993e snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xd2a7dd89 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xfa2ed617 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-i2c 0x36953120 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x53e84d0e snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x95a785cf snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x9ef40c75 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xa74466e4 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xdb88c40a snd_i2c_bus_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0c85b630 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x21b4c1c6 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x2268589b snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x287bb7d2 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x2c87e70d snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5fc6f3f2 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x61f291b0 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xcb11ef5a snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xe977dce8 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xfc79c4d2 snd_sbmixer_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x252aa0d3 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x36740359 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4301f9e3 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5caed25c snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x710f7c08 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8de114ae snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x94cc70ef snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x99b66471 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9a2041d8 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb913a5fe snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd0067bd2 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdd141ab7 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe1437ca3 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf293af95 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf63158a3 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf7f26ccc snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xff61b9e4 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0139b6e7 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x33fe3a77 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x44a859d4 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6c745f1d snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7735a998 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x976c812d snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xbad3bdb9 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xbff9f246 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc6379121 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x06cfd3a2 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x31ecca76 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x3d6d9c1a snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x013a170e oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2f66bd04 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x330d655d oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x33564ee1 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3e70f091 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x47a980bf oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4a1bb32b oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4fd5d85a oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5876e092 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x60269134 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x783edb19 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8e11ecb6 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x94a247bf oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x99602a8c oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa1ad034c oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc0af8be5 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc926ed86 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcd7a0fd2 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcfe8fdd1 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdbd9cdf0 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe3dad6af oxygen_write_uart +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x2a9227fc snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x6c4155c0 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x758d75f2 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x76325a9d snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xe5e20d07 snd_trident_alloc_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x47d99465 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xccc0a93a tlv320aic23_probe +EXPORT_SYMBOL sound/soc/snd-soc-core 0x4522f473 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x0a3cabae register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x626a04f2 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x930bd836 sound_class +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0x9ca174d8 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x9ffcec5f register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xa9532b85 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x0df6837c snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x33624c1e snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x630374e9 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 0x6d5e414a snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x9f84da0c snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb229f106 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/snd-util-mem 0x3e88948e snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x66c5c327 snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x68951cfc snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0x7fc31e46 __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x86076b0f __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xa2795d24 snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xd33f2eca snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xda181aa4 __snd_util_mem_free +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x2583a33f __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 0x001ee9b9 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x003d7343 inode_change_ok +EXPORT_SYMBOL vmlinux 0x003ed69a __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x00ad902f pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x00af70f4 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x00b90c40 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x00c1096e con_is_bound +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x0109a95e nf_ct_attach +EXPORT_SYMBOL vmlinux 0x010ec436 seq_read +EXPORT_SYMBOL vmlinux 0x010fc476 pci_disable_device +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x01143210 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x012a97fc xor_altivec_4 +EXPORT_SYMBOL vmlinux 0x013a3086 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x015fe9f0 sock_i_ino +EXPORT_SYMBOL vmlinux 0x017d5b46 find_get_entry +EXPORT_SYMBOL vmlinux 0x0184de06 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x0186e2de smp_call_function_many +EXPORT_SYMBOL vmlinux 0x01940fb0 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x019db55a radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0x01b09d09 vfs_statfs +EXPORT_SYMBOL vmlinux 0x01b81c2e dev_open +EXPORT_SYMBOL vmlinux 0x01d0ae66 pci_release_region +EXPORT_SYMBOL vmlinux 0x01d5ad29 of_get_property +EXPORT_SYMBOL vmlinux 0x01db731a fscrypt_release_ctx +EXPORT_SYMBOL vmlinux 0x01fb6ae2 blk_rq_init +EXPORT_SYMBOL vmlinux 0x022004da param_ops_ushort +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0265a976 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x026cd9dc complete_request_key +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x027cc5f3 block_commit_write +EXPORT_SYMBOL vmlinux 0x02882e24 xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x02961658 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02b6e75c __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x02b7792d serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x02cc7dd2 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x02cd3337 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x02defe68 param_set_byte +EXPORT_SYMBOL vmlinux 0x02e03fd8 fence_remove_callback +EXPORT_SYMBOL vmlinux 0x02e6a048 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x02f2860f crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x030af588 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x0317f2e2 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x038eaee0 netdev_err +EXPORT_SYMBOL vmlinux 0x03b98d13 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x03b99fe7 kmap_to_page +EXPORT_SYMBOL vmlinux 0x03c228a9 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x03cb799f key_put +EXPORT_SYMBOL vmlinux 0x03ce65e4 blk_end_request +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x042419c6 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x04315c0d generic_perform_write +EXPORT_SYMBOL vmlinux 0x0445c311 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x045bd897 fb_show_logo +EXPORT_SYMBOL vmlinux 0x047eb7a2 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x04963398 brioctl_set +EXPORT_SYMBOL vmlinux 0x04e44ba7 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04f1041d lockref_get +EXPORT_SYMBOL vmlinux 0x04f6fd25 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x053031db msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x0535d8c1 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x05484c42 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x054b5085 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x05582487 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x0565e61a i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns +EXPORT_SYMBOL vmlinux 0x05a86c1f generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x05b302c0 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x05bfd284 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x05d9c45f simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x05d9f6ea pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x05e3c7e7 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x060bfde3 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x065c7184 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x0660c105 prepare_to_swait +EXPORT_SYMBOL vmlinux 0x0675c7eb atomic64_cmpxchg +EXPORT_SYMBOL vmlinux 0x0677a6ef poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x069dc035 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x069e08b1 genlmsg_put +EXPORT_SYMBOL vmlinux 0x06a47e21 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x06a56e65 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x06c34a25 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x06c96cf9 blk_get_backing_dev_info +EXPORT_SYMBOL vmlinux 0x06df9094 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x06fc91f7 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x070b2572 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x071dca21 param_ops_string +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0748fa91 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x074e9213 down_killable +EXPORT_SYMBOL vmlinux 0x074ee202 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x075bf061 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x076b0797 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x076b24e8 inet_addr_type +EXPORT_SYMBOL vmlinux 0x079bc2c4 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07abda9c inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x07b8ea34 sk_capable +EXPORT_SYMBOL vmlinux 0x07bcbd0e mount_bdev +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07dbb148 tcf_em_register +EXPORT_SYMBOL vmlinux 0x07e21587 register_qdisc +EXPORT_SYMBOL vmlinux 0x07ec02f5 devm_memremap +EXPORT_SYMBOL vmlinux 0x07fafc62 neigh_table_init +EXPORT_SYMBOL vmlinux 0x0803648a ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x081481f4 pci_save_state +EXPORT_SYMBOL vmlinux 0x081a9ad7 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x0824c99c sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x082b482d mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x08338dd1 phy_attached_info +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x084a9cbd sock_init_data +EXPORT_SYMBOL vmlinux 0x0851056c bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x085e48f5 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x08601126 set_security_override +EXPORT_SYMBOL vmlinux 0x0867618f __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x086af53f kfree_skb +EXPORT_SYMBOL vmlinux 0x08a514c4 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x08ce8073 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x08df9457 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x09059704 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x09208706 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x094288aa ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x0944a531 kill_bdev +EXPORT_SYMBOL vmlinux 0x096b3019 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x09736862 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x09821be1 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x0993a222 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x09952b8c netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x09b77ebc sk_busy_loop +EXPORT_SYMBOL vmlinux 0x09bbbb91 trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c6411f schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x09c67afb flex_array_get +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09ec3f08 get_super_thawed +EXPORT_SYMBOL vmlinux 0x09f7f65a simple_dir_operations +EXPORT_SYMBOL vmlinux 0x09fc6164 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x0a12fcc1 generic_file_open +EXPORT_SYMBOL vmlinux 0x0a15a242 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a318a55 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x0a35c7b2 ip_defrag +EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x0a415ce3 i2c_release_client +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a5f049f mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x0a633668 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x0a8214f2 sg_miter_next +EXPORT_SYMBOL vmlinux 0x0a98e457 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aab66f9 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x0ac3ce9e dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad0b706 scsi_device_put +EXPORT_SYMBOL vmlinux 0x0ad1fc10 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x0af5d18a netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b3c840f inet6_getname +EXPORT_SYMBOL vmlinux 0x0b45f2d4 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b59fddf inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b6ac9bb dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x0b71f93f xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b93b2ea bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x0bb8ea5b skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bcf22e8 vme_register_driver +EXPORT_SYMBOL vmlinux 0x0bd18d84 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x0bf79d4b pagecache_get_page +EXPORT_SYMBOL vmlinux 0x0c12e626 __debugger_bpt +EXPORT_SYMBOL vmlinux 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c8977bb devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x0c9b6089 nvram_get_size +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0cab7640 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cb71795 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x0cc0c5fb mmc_can_erase +EXPORT_SYMBOL vmlinux 0x0d0242cd scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x0d0d50e2 mount_single +EXPORT_SYMBOL vmlinux 0x0d1e5f33 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x0d2d0d52 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x0d418fd5 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d9150ff dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x0d9e1ea7 fence_signal +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da56f06 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x0db67d05 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x0dbf38b8 mol_trampoline +EXPORT_SYMBOL vmlinux 0x0dc0ace0 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0de7a6fa bitmap_unplug +EXPORT_SYMBOL vmlinux 0x0de825e6 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x0debe803 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x0e06d5a3 skb_seq_read +EXPORT_SYMBOL vmlinux 0x0e0e8136 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x0e3b1eb6 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x0e44b78b jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e7d2758 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x0e820f32 note_scsi_host +EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0ea9920f vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0eb53063 fb_get_mode +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ee8b1cd backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0ef20db1 kernstart_addr +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f11a0a6 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x0f180a41 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x0f1f3842 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL vmlinux 0x0f294d5e tty_port_close_end +EXPORT_SYMBOL vmlinux 0x0f2aa21e jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f521079 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x0f5faa7e wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x0f629c5c pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x0f693dda dev_change_flags +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f81d24b in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x0f820448 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x0f93ea40 dm_put_device +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fc19f6e __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x0fd91e1e of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x0fd9d89e alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x0ff771bd __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x0fff58b9 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x1006e5a1 nmi_panic +EXPORT_SYMBOL vmlinux 0x100e99a4 vme_slave_request +EXPORT_SYMBOL vmlinux 0x101c43ce vme_irq_generate +EXPORT_SYMBOL vmlinux 0x102bdc09 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x1042baf4 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x10506540 agp_free_memory +EXPORT_SYMBOL vmlinux 0x10577066 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x1061498f fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x1063092a copy_to_iter +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x108f8a42 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x10999ee0 param_get_string +EXPORT_SYMBOL vmlinux 0x10ae220b user_path_create +EXPORT_SYMBOL vmlinux 0x10c18177 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x10ddfa80 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x10ec159f fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x10ec7942 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x110e83b2 lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x110fa9d2 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x111394ac kern_unmount +EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x11231aed unlock_rename +EXPORT_SYMBOL vmlinux 0x11268776 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x112c3fec revalidate_disk +EXPORT_SYMBOL vmlinux 0x114ea304 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x115170a9 dev_alert +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x1165fdee __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x11663cec adb_register +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x117d04b6 vme_init_bridge +EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable +EXPORT_SYMBOL vmlinux 0x119bfb6d tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x11b82eb6 netdev_features_change +EXPORT_SYMBOL vmlinux 0x11c2c827 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x11c6a787 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x11e833d9 mdio_device_free +EXPORT_SYMBOL vmlinux 0x11ef588d tso_start +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x12020698 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x12023499 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x1202e7b9 phy_disconnect +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x12237b04 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x1235fc2b blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x124a7271 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x124cf4ed devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x12593fc4 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x12735b22 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12c62046 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x12d3db95 mutex_unlock +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x12e5ef0c rtas_set_power_level +EXPORT_SYMBOL vmlinux 0x13009607 sock_wfree +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x1327f9f4 inet_frag_find +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x135f6839 fscrypt_encrypt_page +EXPORT_SYMBOL vmlinux 0x136ac605 genl_notify +EXPORT_SYMBOL vmlinux 0x1383492e vmap +EXPORT_SYMBOL vmlinux 0x139eb38a lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13e0ad60 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x13f04bca ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13fff033 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x14361adb __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x1443b1f2 rt6_lookup +EXPORT_SYMBOL vmlinux 0x144ab5ad security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x1485d5d0 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x14880874 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x1490f261 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x14a21ac5 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x14a27f69 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x14a9fc66 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x14c4fa01 genphy_update_link +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14dbf4cf key_task_permission +EXPORT_SYMBOL vmlinux 0x14e3ef01 PDE_DATA +EXPORT_SYMBOL vmlinux 0x14e50f6f eth_gro_receive +EXPORT_SYMBOL vmlinux 0x14ef8e45 of_translate_address +EXPORT_SYMBOL vmlinux 0x14fa3d6c nobh_write_end +EXPORT_SYMBOL vmlinux 0x14ff76eb ll_rw_block +EXPORT_SYMBOL vmlinux 0x15103c52 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x151059fe dev_mc_sync +EXPORT_SYMBOL vmlinux 0x1523d748 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x15401af2 fs_bio_set +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x154cd1f5 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x155fe3a0 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x1567ec78 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x159731e6 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x159ef75e devm_request_resource +EXPORT_SYMBOL vmlinux 0x15a93b5f blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15c3d464 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x15d3fd60 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x15dee11d input_reset_device +EXPORT_SYMBOL vmlinux 0x15e006e1 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x15fd29e9 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x16075e75 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x160bd45c rtas_token +EXPORT_SYMBOL vmlinux 0x161d0033 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x1629b323 put_io_context +EXPORT_SYMBOL vmlinux 0x164a096b __destroy_inode +EXPORT_SYMBOL vmlinux 0x16529ed5 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x16540bbc __cmpdi2 +EXPORT_SYMBOL vmlinux 0x16687f13 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x1679fe7d pci_set_master +EXPORT_SYMBOL vmlinux 0x167b209c macio_request_resources +EXPORT_SYMBOL vmlinux 0x16844a9d cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x16851b95 build_skb +EXPORT_SYMBOL vmlinux 0x168ac8eb simple_transaction_release +EXPORT_SYMBOL vmlinux 0x16a3f121 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x16ae47fe flush_signals +EXPORT_SYMBOL vmlinux 0x16b8ea45 register_cdrom +EXPORT_SYMBOL vmlinux 0x16c62436 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x16cd5297 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e566ca forget_cached_acl +EXPORT_SYMBOL vmlinux 0x16f9d384 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x16f9ffcc inet_getname +EXPORT_SYMBOL vmlinux 0x16fab375 scsi_print_result +EXPORT_SYMBOL vmlinux 0x16fedffe get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x17220445 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x173cbf68 dquot_get_state +EXPORT_SYMBOL vmlinux 0x17487122 security_task_getsecid +EXPORT_SYMBOL vmlinux 0x174afb1a __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x174d4b85 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x1760f020 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x1763a1cf submit_bio +EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock +EXPORT_SYMBOL vmlinux 0x177c5ab3 vfs_setpos +EXPORT_SYMBOL vmlinux 0x1796f114 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x179f3823 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x17aa156a __ucmpdi2 +EXPORT_SYMBOL vmlinux 0x17ab3b76 get_io_context +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17bc1b25 page_waitqueue +EXPORT_SYMBOL vmlinux 0x17cbc2e9 file_ns_capable +EXPORT_SYMBOL vmlinux 0x17d8d547 clear_inode +EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern +EXPORT_SYMBOL vmlinux 0x17e9a319 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x181089a1 end_page_writeback +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x183014a2 fence_free +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x184f7729 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x187607e7 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x187f114f bio_reset +EXPORT_SYMBOL vmlinux 0x18849b16 phy_device_remove +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x189e9198 kern_path +EXPORT_SYMBOL vmlinux 0x18c2227f cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18e89d9a iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x18ffc82c copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x190b0ebf tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x19130170 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x192199fd path_is_under +EXPORT_SYMBOL vmlinux 0x192592c0 mntput +EXPORT_SYMBOL vmlinux 0x1945c93f dev_mc_add +EXPORT_SYMBOL vmlinux 0x194ba79c submit_bh +EXPORT_SYMBOL vmlinux 0x19610e1f cpu_all_bits +EXPORT_SYMBOL vmlinux 0x1963f9ef read_dev_sector +EXPORT_SYMBOL vmlinux 0x197acd0c netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x19857570 dquot_alloc +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a89d6f inode_add_bytes +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19b430ad jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19ca07ce vm_event_states +EXPORT_SYMBOL vmlinux 0x19d15874 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x19e63bcd vfs_symlink +EXPORT_SYMBOL vmlinux 0x19f93cb0 vga_get +EXPORT_SYMBOL vmlinux 0x1a336aea dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x1a5492c1 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x1a55882d i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x1a6bb694 netdev_all_lower_get_next +EXPORT_SYMBOL vmlinux 0x1a752326 blk_run_queue +EXPORT_SYMBOL vmlinux 0x1aa0bcac mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x1aa511ae ppp_dev_name +EXPORT_SYMBOL vmlinux 0x1ac53e18 bioset_create +EXPORT_SYMBOL vmlinux 0x1af5077a consume_skb +EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b0ac599 pskb_extract +EXPORT_SYMBOL vmlinux 0x1b123877 is_bad_inode +EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock +EXPORT_SYMBOL vmlinux 0x1b46ba45 poll_freewait +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b6b5529 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x1b81b5d0 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b89b04c inet_stream_connect +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b8f69de d_set_fallthru +EXPORT_SYMBOL vmlinux 0x1b9bcb57 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x1ba0f63f pci_set_power_state +EXPORT_SYMBOL vmlinux 0x1bb8542e netdev_crit +EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x1bc7fc85 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x1bca2b59 load_fp_state +EXPORT_SYMBOL vmlinux 0x1bd9afe2 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x1c096075 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x1c1060a0 netlink_unicast +EXPORT_SYMBOL vmlinux 0x1c1e2d62 mdiobus_write +EXPORT_SYMBOL vmlinux 0x1c2fc1a1 rwsem_wake +EXPORT_SYMBOL vmlinux 0x1c3f2786 pci_find_hose_for_OF_device +EXPORT_SYMBOL vmlinux 0x1c5b2c15 pmu_wait_complete +EXPORT_SYMBOL vmlinux 0x1c6b2f20 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x1c7cfdb1 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check +EXPORT_SYMBOL vmlinux 0x1cb049d6 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x1cb8bbe1 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x1d23ce2b ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x1d41048a file_remove_privs +EXPORT_SYMBOL vmlinux 0x1d49c2db kmap_atomic_prot +EXPORT_SYMBOL vmlinux 0x1d75f082 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x1d801fb1 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x1d830d8d down_write_trylock +EXPORT_SYMBOL vmlinux 0x1d870bc4 phy_driver_register +EXPORT_SYMBOL vmlinux 0x1daee28a percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x1db93536 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd3a1c6 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de3f433 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x1e131e82 simple_empty +EXPORT_SYMBOL vmlinux 0x1e2535f8 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e38b856 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x1e61e0ef input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e7a4183 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1e9feb7a __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x1eb4256b nvm_unregister_tgt_type +EXPORT_SYMBOL vmlinux 0x1ee8ff4d neigh_parms_release +EXPORT_SYMBOL vmlinux 0x1eef37ed tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x1f1f18ff sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x1f500dd4 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x1f70581f blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x1f7286d6 tcp_close +EXPORT_SYMBOL vmlinux 0x1f72aeb1 lwtunnel_output +EXPORT_SYMBOL vmlinux 0x1f7536a2 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1f985e43 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x1f9ab5a5 generic_fillattr +EXPORT_SYMBOL vmlinux 0x1fb89c1d phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fccdc6e set_create_files_as +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1ff37f3c sock_update_memcg +EXPORT_SYMBOL vmlinux 0x1fff0d37 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x20030ecd ioremap +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x201e2985 skb_trim +EXPORT_SYMBOL vmlinux 0x20421305 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x2051a68d get_thermal_instance +EXPORT_SYMBOL vmlinux 0x205dd3b4 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x205eb4d0 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x205fc557 blk_finish_request +EXPORT_SYMBOL vmlinux 0x206cb9b5 register_console +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x2073134f register_framebuffer +EXPORT_SYMBOL vmlinux 0x207ce759 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20bca598 sk_wait_data +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20d35857 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x20dbf2b5 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x210a2b15 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x21140d13 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x21170294 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x2129c253 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x212ca685 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x212dcc0f vfs_mknod +EXPORT_SYMBOL vmlinux 0x21420f1e ata_print_version +EXPORT_SYMBOL vmlinux 0x2143b8ad key_revoke +EXPORT_SYMBOL vmlinux 0x2157965d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x215cb447 dst_discard_out +EXPORT_SYMBOL vmlinux 0x2167db87 nla_reserve +EXPORT_SYMBOL vmlinux 0x217427fb cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x21a5f144 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x21a7f317 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x21c15d68 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x21d133dd _dev_info +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21eaf189 vme_lm_request +EXPORT_SYMBOL vmlinux 0x22142f2e vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x221f2994 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222f6207 __nla_reserve +EXPORT_SYMBOL vmlinux 0x223c4f33 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2278e94b slhc_remember +EXPORT_SYMBOL vmlinux 0x22807788 qdisc_reset +EXPORT_SYMBOL vmlinux 0x22982863 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x229d7432 textsearch_register +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22c5845c fb_set_cmap +EXPORT_SYMBOL vmlinux 0x2304934c input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL vmlinux 0x234db079 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x235a0f50 param_ops_bool +EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x2389eb8c xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x23a4f5e8 mac_find_mode +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c3a273 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x23d87e89 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free +EXPORT_SYMBOL vmlinux 0x23f86073 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2409d9be dev_crit +EXPORT_SYMBOL vmlinux 0x241cf5f1 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x2425c213 blk_put_queue +EXPORT_SYMBOL vmlinux 0x243d252c pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x243daa7e swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x243f7fa5 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2445aa89 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x2452a203 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2477d1d0 twl6040_power +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2482ed01 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x24855cba __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x248fe230 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x24a05836 register_quota_format +EXPORT_SYMBOL vmlinux 0x24bf5eb1 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x24cb9c39 phy_detach +EXPORT_SYMBOL vmlinux 0x24dbdca5 dev_uc_del +EXPORT_SYMBOL vmlinux 0x24dd0c85 task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0x24ec43ee atomic64_or_return +EXPORT_SYMBOL vmlinux 0x24f00380 ida_init +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x2508865d dquot_destroy +EXPORT_SYMBOL vmlinux 0x250cba34 tcp_req_err +EXPORT_SYMBOL vmlinux 0x250ecac8 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x2527a087 vme_slave_set +EXPORT_SYMBOL vmlinux 0x253a44c1 register_gifconf +EXPORT_SYMBOL vmlinux 0x254189c2 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x25524f7d mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x255f5a7b neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x25614fc1 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x256a6ba5 write_one_page +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x25748f82 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2584ad6b seq_release +EXPORT_SYMBOL vmlinux 0x2592302e seq_pad +EXPORT_SYMBOL vmlinux 0x2596c417 i8042_install_filter +EXPORT_SYMBOL vmlinux 0x25b439db of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x25b64335 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x25c813f8 netlink_ack +EXPORT_SYMBOL vmlinux 0x25c83638 set_device_ro +EXPORT_SYMBOL vmlinux 0x25e32b0a input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x25e9b4d9 mount_ns +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f3bd2e atomic64_xchg +EXPORT_SYMBOL vmlinux 0x25f5d99b napi_consume_skb +EXPORT_SYMBOL vmlinux 0x260c50e6 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x26123386 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x26283867 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x2631adea kmap_prot +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2642cdda netpoll_print_options +EXPORT_SYMBOL vmlinux 0x264ec50e block_write_full_page +EXPORT_SYMBOL vmlinux 0x2674f4cd inet_del_protocol +EXPORT_SYMBOL vmlinux 0x267de7f3 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x26882fac eth_header_cache +EXPORT_SYMBOL vmlinux 0x268d8b29 agp_copy_info +EXPORT_SYMBOL vmlinux 0x26aabdaa vfs_iter_read +EXPORT_SYMBOL vmlinux 0x26ab3dfd netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x26aefdd1 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x26b760c4 slhc_init +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26d64ea7 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x26e0d33a xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26e7e4fd pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x26f23f3c jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x272c4e36 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x272c9acd pmu_battery_count +EXPORT_SYMBOL vmlinux 0x2731943b scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x2771d7ff ida_get_new_above +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x277b0bff ip_setsockopt +EXPORT_SYMBOL vmlinux 0x277c073a param_set_ulong +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x27879e0f pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x2788fa07 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c299f0 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x27cf0685 proc_set_user +EXPORT_SYMBOL vmlinux 0x27cf7bbf seq_write +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27fb6b2f mmc_can_discard +EXPORT_SYMBOL vmlinux 0x280338ad nf_log_trace +EXPORT_SYMBOL vmlinux 0x28166464 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x283e8587 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x283efc12 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x2840fdfa pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x285d4a39 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x28662ef9 param_get_uint +EXPORT_SYMBOL vmlinux 0x28790279 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x289cae63 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x289db3ee idr_remove +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28a3275b d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x28a5df27 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x28a7beba __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x28cf2559 netif_napi_del +EXPORT_SYMBOL vmlinux 0x28d121d4 save_mount_options +EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x28e8085c kobject_set_name +EXPORT_SYMBOL vmlinux 0x28f784f5 __debugger_break_match +EXPORT_SYMBOL vmlinux 0x29008ea1 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x290329d3 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x290947df bio_endio +EXPORT_SYMBOL vmlinux 0x2928b5fb md_update_sb +EXPORT_SYMBOL vmlinux 0x292ab1d1 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x2948f032 nf_reinject +EXPORT_SYMBOL vmlinux 0x294af921 sock_create +EXPORT_SYMBOL vmlinux 0x2951fdb5 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x29556b8a unregister_qdisc +EXPORT_SYMBOL vmlinux 0x295f019f ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x296d7450 init_special_inode +EXPORT_SYMBOL vmlinux 0x2993de63 dma_common_mmap +EXPORT_SYMBOL vmlinux 0x29984bcf xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x29b4bd7a dget_parent +EXPORT_SYMBOL vmlinux 0x29bf6278 igrab +EXPORT_SYMBOL vmlinux 0x29d987de touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x29e8d8b2 blk_register_region +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x2a04dea2 dm_put_table_device +EXPORT_SYMBOL vmlinux 0x2a11e212 tcf_hash_search +EXPORT_SYMBOL vmlinux 0x2a18f8f9 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a67f40a blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aacf16a mmc_remove_host +EXPORT_SYMBOL vmlinux 0x2ab3cc9d __release_region +EXPORT_SYMBOL vmlinux 0x2ab6ed5d set_blocksize +EXPORT_SYMBOL vmlinux 0x2ac4575e tcp_conn_request +EXPORT_SYMBOL vmlinux 0x2ac7e417 rwsem_down_write_failed_killable +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ad2e12f nf_setsockopt +EXPORT_SYMBOL vmlinux 0x2aea0c8e blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x2aec013f tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x2af1ca74 fscrypt_process_policy +EXPORT_SYMBOL vmlinux 0x2b010849 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b12925d cpumask_next_and +EXPORT_SYMBOL vmlinux 0x2b2a5afd sock_create_lite +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b36a376 blk_recount_segments +EXPORT_SYMBOL vmlinux 0x2b4ce45d pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x2b5e0a61 inet6_offloads +EXPORT_SYMBOL vmlinux 0x2b821007 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2baeb8ba iput +EXPORT_SYMBOL vmlinux 0x2bcd61b7 d_drop +EXPORT_SYMBOL vmlinux 0x2bea418f tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x2bff5ba5 tcf_hashinfo_destroy +EXPORT_SYMBOL vmlinux 0x2c0370a7 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x2c0e2781 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c25daeb invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x2c3df811 __secpath_destroy +EXPORT_SYMBOL vmlinux 0x2c3eb980 d_splice_alias +EXPORT_SYMBOL vmlinux 0x2c4588f3 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout +EXPORT_SYMBOL vmlinux 0x2c90a2ae nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x2c9d37ed __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x2ca51d7c bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x2cbb5591 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x2cd73c66 register_shrinker +EXPORT_SYMBOL vmlinux 0x2cea8a49 netdev_update_features +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d4fe1ab fifo_set_limit +EXPORT_SYMBOL vmlinux 0x2d7b49de iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x2da61509 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x2da93a85 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x2db8573c param_set_bool +EXPORT_SYMBOL vmlinux 0x2dcb8b1d revert_creds +EXPORT_SYMBOL vmlinux 0x2de25ef4 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x2de37534 vfs_create +EXPORT_SYMBOL vmlinux 0x2def03d2 d_set_d_op +EXPORT_SYMBOL vmlinux 0x2dfbdf6c blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x2e156d97 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x2e2effbd set_bh_page +EXPORT_SYMBOL vmlinux 0x2e34e29e scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x2e41b5cf devm_ioport_map +EXPORT_SYMBOL vmlinux 0x2e8e23a0 page_symlink +EXPORT_SYMBOL vmlinux 0x2e8ef7b6 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x2e944f5e dev_addr_flush +EXPORT_SYMBOL vmlinux 0x2e96baa5 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x2e995831 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x2ea0e489 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f01ad23 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f15c31f mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x2f26a395 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL vmlinux 0x2f2f87a2 __elv_add_request +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f735c1a pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x2fae96de rtas_data_buf_lock +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fcafc52 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fea4f7c xattr_full_name +EXPORT_SYMBOL vmlinux 0x300afb1c md_unregister_thread +EXPORT_SYMBOL vmlinux 0x30204cad netdev_alert +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x30328edb blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x30542516 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3090e45a scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x309c81e9 phy_resume +EXPORT_SYMBOL vmlinux 0x30a4ca2d mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id +EXPORT_SYMBOL vmlinux 0x30bc5aa2 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x30d8b4bd param_get_short +EXPORT_SYMBOL vmlinux 0x30e1dfba param_ops_short +EXPORT_SYMBOL vmlinux 0x30e6ffee tcp_proc_register +EXPORT_SYMBOL vmlinux 0x30ed9de6 ether_setup +EXPORT_SYMBOL vmlinux 0x30fa81a3 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x30fb6abf of_root +EXPORT_SYMBOL vmlinux 0x30ffb960 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x314a487b tty_write_room +EXPORT_SYMBOL vmlinux 0x3150c566 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x3158bb42 module_layout +EXPORT_SYMBOL vmlinux 0x3159f178 elevator_exit +EXPORT_SYMBOL vmlinux 0x315ea566 rps_needed +EXPORT_SYMBOL vmlinux 0x31644f17 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x317101de pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x318022b7 skb_insert +EXPORT_SYMBOL vmlinux 0x31887ded __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x31a9992b ppp_channel_index +EXPORT_SYMBOL vmlinux 0x31babb41 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x31c3c5c5 elv_add_request +EXPORT_SYMBOL vmlinux 0x31e209f6 sock_no_bind +EXPORT_SYMBOL vmlinux 0x31efbb2b free_netdev +EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx +EXPORT_SYMBOL vmlinux 0x3217890b touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x322a322c icmp_send +EXPORT_SYMBOL vmlinux 0x32384c76 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x3268c71d pci_fixup_device +EXPORT_SYMBOL vmlinux 0x327b9c1b pmu_poll_adb +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy +EXPORT_SYMBOL vmlinux 0x32999fff mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x32af188e dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x32bbfdd1 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x32ec3047 blk_requeue_request +EXPORT_SYMBOL vmlinux 0x32eca77f phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x3303c161 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x3346620e phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x335806cb generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x3375504f mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x339fb63a i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33be3763 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x33c0786f pci_get_subsys +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33df6a9e prepare_binprm +EXPORT_SYMBOL vmlinux 0x33e01ba8 macio_dev_put +EXPORT_SYMBOL vmlinux 0x33e4e6ad of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f0bfa2 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x340dc548 generic_update_time +EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x3422d270 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x34416aee dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x3449d096 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x345c8916 strict_msr_control +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x34686c32 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34c559e1 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x34dee23e generic_removexattr +EXPORT_SYMBOL vmlinux 0x34ec5478 fsync_bdev +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x350cd64d input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x350d0955 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x351da4a1 blk_init_queue +EXPORT_SYMBOL vmlinux 0x3526c094 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x3529ef66 fget +EXPORT_SYMBOL vmlinux 0x352c6ca9 register_netdev +EXPORT_SYMBOL vmlinux 0x353d9ebf neigh_app_ns +EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x35410e93 __genl_register_family +EXPORT_SYMBOL vmlinux 0x3542781f get_gendisk +EXPORT_SYMBOL vmlinux 0x35475898 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x3595c5a8 giveup_fpu +EXPORT_SYMBOL vmlinux 0x359b01a8 scsi_unregister +EXPORT_SYMBOL vmlinux 0x35a6bbdd __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35aae6cf pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x35be8fce lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x35c152b0 __find_get_block +EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 +EXPORT_SYMBOL vmlinux 0x35c4a615 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x35e61369 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x35ed35a1 from_kprojid +EXPORT_SYMBOL vmlinux 0x35f1b412 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x35f554c1 devm_iounmap +EXPORT_SYMBOL vmlinux 0x35fbd6a1 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x360b85d8 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x36165c89 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy +EXPORT_SYMBOL vmlinux 0x361cd305 netif_napi_add +EXPORT_SYMBOL vmlinux 0x36207f2c ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x3626e77f iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x362deb86 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x363070f3 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x36389ec4 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x363f0931 devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x364d960c blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x364f5b0f should_remove_suid +EXPORT_SYMBOL vmlinux 0x364ff51b pci_bus_type +EXPORT_SYMBOL vmlinux 0x366926b5 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x366eef96 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy +EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x36826d87 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x3685519c sock_rfree +EXPORT_SYMBOL vmlinux 0x369466d9 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x36b20312 param_get_ullong +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36c06b9f skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x36e05208 pid_task +EXPORT_SYMBOL vmlinux 0x36e94142 md_flush_request +EXPORT_SYMBOL vmlinux 0x36ee4f92 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x36f29511 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x36f5d9d2 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport +EXPORT_SYMBOL vmlinux 0x37383edd rtas_get_power_level +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x37613521 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x3771b461 crc_ccitt +EXPORT_SYMBOL vmlinux 0x3774a2cd __i2c_transfer +EXPORT_SYMBOL vmlinux 0x378afe79 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x3795ef00 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x379e64e1 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b25d4c cont_write_begin +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c05496 free_user_ns +EXPORT_SYMBOL vmlinux 0x37c21a64 phy_find_first +EXPORT_SYMBOL vmlinux 0x37c37e1c mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x37e0153d flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37eb5427 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x37f6fee5 fsl_lbc_find +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x389af44f tty_unregister_device +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b825d1 idr_replace +EXPORT_SYMBOL vmlinux 0x38cb4faf dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x38f7740b nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios +EXPORT_SYMBOL vmlinux 0x39141df7 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x3915b116 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x391d6718 devm_release_resource +EXPORT_SYMBOL vmlinux 0x3920a82d blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394e00c5 bdi_init +EXPORT_SYMBOL vmlinux 0x39614381 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x396621f9 downgrade_write +EXPORT_SYMBOL vmlinux 0x397ab724 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x397df5df __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x39819a30 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39b8ad77 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x39eb75f3 of_get_address +EXPORT_SYMBOL vmlinux 0x39f13f64 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x39f563c2 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x39fb4836 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x3a05f687 validate_sp +EXPORT_SYMBOL vmlinux 0x3a154f3f skb_append +EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x3a1dd4f2 inet_offloads +EXPORT_SYMBOL vmlinux 0x3a2a44c1 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x3a3176fe xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x3a3a049b skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x3a5fa177 dm_io +EXPORT_SYMBOL vmlinux 0x3a715091 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3a9cb434 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x3ac1c5e7 release_pages +EXPORT_SYMBOL vmlinux 0x3ac4adad kernel_write +EXPORT_SYMBOL vmlinux 0x3af27fbb filemap_check_errors +EXPORT_SYMBOL vmlinux 0x3b1655c3 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x3b462ca9 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x3b5c4c53 nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x3b5f0636 i2c_master_send +EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6d77b9 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x3b7917e9 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x3b993e64 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x3ba35db2 rtnl_notify +EXPORT_SYMBOL vmlinux 0x3bc055d5 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x3be2eed1 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x3c0eab5d set_posix_acl +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c185cbd __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x3c21b288 pci_find_bus +EXPORT_SYMBOL vmlinux 0x3c25bc6a km_report +EXPORT_SYMBOL vmlinux 0x3c2be372 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x3c39cb11 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c577ee0 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x3c652b24 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3c73be82 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x3c7eda72 bio_phys_segments +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c8685f9 serio_bus +EXPORT_SYMBOL vmlinux 0x3c893651 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x3c8da225 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x3c90a842 dev_mc_init +EXPORT_SYMBOL vmlinux 0x3cb4864e fb_set_var +EXPORT_SYMBOL vmlinux 0x3cbc35b0 of_create_pci_dev +EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init +EXPORT_SYMBOL vmlinux 0x3cce7409 audit_log +EXPORT_SYMBOL vmlinux 0x3ccf5aba locks_remove_posix +EXPORT_SYMBOL vmlinux 0x3cd4c428 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x3cdddae3 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3d6ad38b alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x3d748d70 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x3d860066 ata_port_printk +EXPORT_SYMBOL vmlinux 0x3d8ab298 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x3da6b311 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x3da6e858 powerpc_debugfs_root +EXPORT_SYMBOL vmlinux 0x3dba4f8b __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x3dbce74c __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x3dc02a4e flex_array_free_parts +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3df4689d input_free_device +EXPORT_SYMBOL vmlinux 0x3dfadfab d_invalidate +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e19e96a pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x3e1a3bd4 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x3e1cc0f6 put_tty_driver +EXPORT_SYMBOL vmlinux 0x3e333eca mpage_writepages +EXPORT_SYMBOL vmlinux 0x3e478f6f blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x3e4bb87f arp_send +EXPORT_SYMBOL vmlinux 0x3e71e97b call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e9685d4 dev_get_flags +EXPORT_SYMBOL vmlinux 0x3e9efd26 open_exec +EXPORT_SYMBOL vmlinux 0x3ecf2152 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x3ed48364 module_refcount +EXPORT_SYMBOL vmlinux 0x3eebbdc2 kernel_connect +EXPORT_SYMBOL vmlinux 0x3eecee68 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x3eed1a46 vc_cons +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f1a9f0d __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x3f220d88 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x3f266c78 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x3f2dfee0 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f500030 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x3f50cf9f get_acl +EXPORT_SYMBOL vmlinux 0x3f5c6471 del_timer_sync +EXPORT_SYMBOL vmlinux 0x3f6e8b83 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x3f711038 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x3f993736 simple_readpage +EXPORT_SYMBOL vmlinux 0x3f9ad8cd fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x3fa4502f pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x3fb024f8 netdev_state_change +EXPORT_SYMBOL vmlinux 0x3fb1cf71 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x3fb2cc83 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x3fd71f09 pci_clear_master +EXPORT_SYMBOL vmlinux 0x3fddf977 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x3fe0d1c0 slhc_free +EXPORT_SYMBOL vmlinux 0x3fe3f247 vfs_readv +EXPORT_SYMBOL vmlinux 0x3fe935ae unregister_netdev +EXPORT_SYMBOL vmlinux 0x3ff27efa mmc_release_host +EXPORT_SYMBOL vmlinux 0x3ff8e495 lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x4015cc42 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x40163080 tso_build_data +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x405fe1af scsi_remove_host +EXPORT_SYMBOL vmlinux 0x40947110 seq_release_private +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40bb3020 security_path_unlink +EXPORT_SYMBOL vmlinux 0x40bf77ec sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x40c3f909 __nla_put +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40cd8c31 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40dd2555 nobh_writepage +EXPORT_SYMBOL vmlinux 0x40e84d5f of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0x40f1ad10 tb_ticks_per_jiffy +EXPORT_SYMBOL vmlinux 0x4136a99f twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x413c52ef devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x41494a15 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x41560d76 irq_to_desc +EXPORT_SYMBOL vmlinux 0x41682343 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x418170b8 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41898359 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x41aa60e2 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x41b3f0fc touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0x41b89ba7 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x41caaa4a make_kprojid +EXPORT_SYMBOL vmlinux 0x41d09de6 inet_select_addr +EXPORT_SYMBOL vmlinux 0x41dac46e tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x41f8647f radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x42046d79 macio_request_resource +EXPORT_SYMBOL vmlinux 0x4212b8a0 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x421e1a80 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x422b2ea4 bdget_disk +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424aa442 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x424d5a45 macio_enable_devres +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x429be6d3 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0x42a93d03 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x42ab9143 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x42b350d4 inet_add_offload +EXPORT_SYMBOL vmlinux 0x42b6bec6 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x42efbd53 kmap_high +EXPORT_SYMBOL vmlinux 0x42f1896c input_allocate_device +EXPORT_SYMBOL vmlinux 0x42f9e020 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x43155a3c phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x43158bdc filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x43160db0 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x432ac89a mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x433e2e52 km_policy_expired +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x43554fe2 key_invalidate +EXPORT_SYMBOL vmlinux 0x436b38e5 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x436ca04e pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x43715e5e xfrm_init_state +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x437a9ecc generic_file_fsync +EXPORT_SYMBOL vmlinux 0x4384b84e textsearch_destroy +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x438e2694 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all +EXPORT_SYMBOL vmlinux 0x43a40fe9 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x43be355b dev_addr_add +EXPORT_SYMBOL vmlinux 0x43c8fd74 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x43ea3c72 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x43fa3577 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x440a6b9f ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x441a3b37 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x4426325c blk_peek_request +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x444db596 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x44514050 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x445f524a __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x447cb818 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x4480805a blk_put_request +EXPORT_SYMBOL vmlinux 0x44906cae bdi_register_owner +EXPORT_SYMBOL vmlinux 0x449f2b2a unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x44a00ec6 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x44afd6a4 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x44b5ee9a kasprintf +EXPORT_SYMBOL vmlinux 0x44d0d075 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x44dc63ba rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x44e1b770 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion +EXPORT_SYMBOL vmlinux 0x44f87d4f serio_interrupt +EXPORT_SYMBOL vmlinux 0x44fcb7e6 dev_add_offload +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x45008d30 __vfs_write +EXPORT_SYMBOL vmlinux 0x451f647d gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x4536a7c6 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x453d7508 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x454829df __inet_hash +EXPORT_SYMBOL vmlinux 0x45528862 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x45676938 rio_query_mport +EXPORT_SYMBOL vmlinux 0x457246d1 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45853cf8 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x4596405b __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x4598720b drop_super +EXPORT_SYMBOL vmlinux 0x45ad934d __ps2_command +EXPORT_SYMBOL vmlinux 0x45ba27df __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x45d63fe1 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x45f889f7 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x45fd2e88 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x46084295 kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock +EXPORT_SYMBOL vmlinux 0x4612dcfc jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x461e4b23 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user +EXPORT_SYMBOL vmlinux 0x462345e1 xmon +EXPORT_SYMBOL vmlinux 0x462449c6 __sb_start_write +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x46350ab7 elevator_change +EXPORT_SYMBOL vmlinux 0x46405db9 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x4657ebaa fence_context_alloc +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x4665f95f pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x46756bb8 neigh_destroy +EXPORT_SYMBOL vmlinux 0x46785e08 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x46898cbe con_copy_unimap +EXPORT_SYMBOL vmlinux 0x468ff858 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x469d3534 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x46afdb2b pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x46b11f26 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x46cedd02 make_kuid +EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x46faef95 pci_device_from_OF_node +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x4723d77e misc_deregister +EXPORT_SYMBOL vmlinux 0x47346cf9 pci_find_capability +EXPORT_SYMBOL vmlinux 0x4735818c generic_permission +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x475db9b9 of_mm_gpiochip_add_data +EXPORT_SYMBOL vmlinux 0x4760f189 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x47637f81 kobject_init +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47bab262 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x47cd74fa pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x47cf10c5 neigh_lookup +EXPORT_SYMBOL vmlinux 0x47d3b7a6 read_code +EXPORT_SYMBOL vmlinux 0x47e1ce91 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x47ed08d6 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x47f4da81 set_nlink +EXPORT_SYMBOL vmlinux 0x47f828d2 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x48120d93 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x481af4c8 key_alloc +EXPORT_SYMBOL vmlinux 0x48233ef2 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x48258862 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x48269538 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x48375008 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x48396b6f generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x4847b3cf new_inode +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x4866f65c input_register_handler +EXPORT_SYMBOL vmlinux 0x4868fd8a vme_master_request +EXPORT_SYMBOL vmlinux 0x48738399 dm_get_device +EXPORT_SYMBOL vmlinux 0x487e97b3 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x4881efab pmac_get_partition +EXPORT_SYMBOL vmlinux 0x489ee116 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x48b8f6d6 pci_bus_put +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48bb02a5 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x48e14f83 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x48ee004a blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x48f7f703 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x4943f54a pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x4945bec6 udp_disconnect +EXPORT_SYMBOL vmlinux 0x4948e348 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x498bb784 dquot_drop +EXPORT_SYMBOL vmlinux 0x49957085 ilookup +EXPORT_SYMBOL vmlinux 0x49aeeabf jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49c61fc7 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x49c68026 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x49ea58be radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a4849c1 param_set_ullong +EXPORT_SYMBOL vmlinux 0x4a540592 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x4a5720d5 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x4a777122 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x4a77bbad tty_port_put +EXPORT_SYMBOL vmlinux 0x4a7982b0 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x4ad43d20 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x4aed38d7 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b1253a7 kernel_read +EXPORT_SYMBOL vmlinux 0x4b130e7b invalidate_partition +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b38ffc8 inode_init_once +EXPORT_SYMBOL vmlinux 0x4b3fcda8 __blk_end_request +EXPORT_SYMBOL vmlinux 0x4b4fe1ab posix_lock_file +EXPORT_SYMBOL vmlinux 0x4b4fe75b radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x4b594d43 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b6bb591 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x4b8326ff ida_remove +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bbb279a pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x4bbf51a9 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x4bc1b452 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x4be3a4fb cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4be9b024 registered_fb +EXPORT_SYMBOL vmlinux 0x4bed99b3 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0x4bf84131 pci_irq_vector +EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c157f7f tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x4c29e189 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c31bbaa scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x4c575e19 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x4c600fdc tty_port_close +EXPORT_SYMBOL vmlinux 0x4c76152a iov_iter_init +EXPORT_SYMBOL vmlinux 0x4c9fe4e3 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x4cc04607 tty_register_driver +EXPORT_SYMBOL vmlinux 0x4cc5086f xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4cdb5ee0 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x4ce9c85d md_cluster_ops +EXPORT_SYMBOL vmlinux 0x4d1ad1da scsi_register_interface +EXPORT_SYMBOL vmlinux 0x4d365852 pipe_unlock +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d3d5fea skb_make_writable +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x4d67a9de sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x4d6f5c99 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x4d791953 mempool_resize +EXPORT_SYMBOL vmlinux 0x4d7fb098 proto_unregister +EXPORT_SYMBOL vmlinux 0x4d82c47c input_release_device +EXPORT_SYMBOL vmlinux 0x4d83b295 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x4d83fda0 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4db42167 skb_checksum +EXPORT_SYMBOL vmlinux 0x4db7bfdb neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4de9b56b inet6_add_offload +EXPORT_SYMBOL vmlinux 0x4dec6038 memscan +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4e09cc5e tty_register_device +EXPORT_SYMBOL vmlinux 0x4e0f27aa rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x4e1274a6 dcache_readdir +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e4ae139 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x4e4b38d5 of_dev_put +EXPORT_SYMBOL vmlinux 0x4e61c463 mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x4e62d0fd tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x4e65b090 d_instantiate +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e6f0087 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x4e9e97f2 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x4ea2604a ps2_init +EXPORT_SYMBOL vmlinux 0x4eb65995 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x4eb6e424 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x4eb96634 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f2a3041 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f40fa0a elv_register_queue +EXPORT_SYMBOL vmlinux 0x4f52db42 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f78570c dump_skip +EXPORT_SYMBOL vmlinux 0x4f7b523b block_write_begin +EXPORT_SYMBOL vmlinux 0x4f970e17 elevator_init +EXPORT_SYMBOL vmlinux 0x4fbae6a6 uuid_le_to_bin +EXPORT_SYMBOL vmlinux 0x4fcd455e __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x4fdcc687 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x4fdedd4c get_disk +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fe99583 atomic64_dec_if_positive +EXPORT_SYMBOL vmlinux 0x4ffb713b copy_from_iter +EXPORT_SYMBOL vmlinux 0x4ffe4990 would_dump +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x500fa8f1 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x502c2725 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x504cd003 force_sig +EXPORT_SYMBOL vmlinux 0x50507374 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x5061a095 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x5062caab clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x5084e80e arp_create +EXPORT_SYMBOL vmlinux 0x509817cf vprintk_emit +EXPORT_SYMBOL vmlinux 0x50aace7b serio_close +EXPORT_SYMBOL vmlinux 0x50aae0e1 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x50b3359a nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50c56198 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x50ee613f unlock_new_inode +EXPORT_SYMBOL vmlinux 0x50fb6fd0 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x51040d06 of_phy_attach +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x51232517 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x515e24a7 flush_instruction_cache +EXPORT_SYMBOL vmlinux 0x517eb6ae vfs_getattr +EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait +EXPORT_SYMBOL vmlinux 0x51dd09ac input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x520dfe23 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x52248596 set_groups +EXPORT_SYMBOL vmlinux 0x522c61a4 account_page_redirty +EXPORT_SYMBOL vmlinux 0x52377fa8 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x523b50de padata_start +EXPORT_SYMBOL vmlinux 0x524f69f6 mb_cache_entry_delete_block +EXPORT_SYMBOL vmlinux 0x52526dd8 get_tz_trend +EXPORT_SYMBOL vmlinux 0x527830ff pmac_xpram_read +EXPORT_SYMBOL vmlinux 0x527b27f0 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x528144eb input_set_keycode +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x528ee0aa inet_csk_accept +EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le +EXPORT_SYMBOL vmlinux 0x52b7ef19 inet_bind +EXPORT_SYMBOL vmlinux 0x52cd7f15 put_disk +EXPORT_SYMBOL vmlinux 0x52ef7c9d blk_start_queue_async +EXPORT_SYMBOL vmlinux 0x52fb87cf sock_no_accept +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53131101 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x5325c073 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x533684ad swake_up +EXPORT_SYMBOL vmlinux 0x5355d752 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x536ab1ec blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x536f063e flush_all_to_thread +EXPORT_SYMBOL vmlinux 0x53730cc9 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x5398560c inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x53af32ac __lock_buffer +EXPORT_SYMBOL vmlinux 0x53c129b5 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x53cbc81d pci_reenable_device +EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns +EXPORT_SYMBOL vmlinux 0x53ec4d97 bdi_register +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x5412c7c7 up +EXPORT_SYMBOL vmlinux 0x5423d306 flow_cache_init +EXPORT_SYMBOL vmlinux 0x54254d93 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x54261d19 tty_name +EXPORT_SYMBOL vmlinux 0x542655c6 make_kgid +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5462f05b single_release +EXPORT_SYMBOL vmlinux 0x546fef47 vfs_writev +EXPORT_SYMBOL vmlinux 0x54884503 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x548a8e6b vm_mmap +EXPORT_SYMBOL vmlinux 0x54a186a5 update_devfreq +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54aec087 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x54b2400d i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54eee11b phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x55274331 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x553fa2d8 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x554637d1 unlock_buffer +EXPORT_SYMBOL vmlinux 0x55467ede fsl_upm_find +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x55548034 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x555d3ab2 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x5560ca00 sock_no_getname +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x5568c553 complete +EXPORT_SYMBOL vmlinux 0x556e3e0d of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x557bf907 md_integrity_register +EXPORT_SYMBOL vmlinux 0x55acd570 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x56065067 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x56727de0 dquot_release +EXPORT_SYMBOL vmlinux 0x567c6aba lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x56805355 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x56a53e90 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL vmlinux 0x56b8e443 nvm_bb_tbl_fold +EXPORT_SYMBOL vmlinux 0x56c2b95b rtas_progress +EXPORT_SYMBOL vmlinux 0x56c4e0db km_new_mapping +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56c8f1f1 load_nls +EXPORT_SYMBOL vmlinux 0x56cf5dc5 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x56d0f400 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x56fa1239 keyring_clear +EXPORT_SYMBOL vmlinux 0x570101bb mmc_register_driver +EXPORT_SYMBOL vmlinux 0x571ccbf3 fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x5728e970 param_ops_uint +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x5736d478 input_inject_event +EXPORT_SYMBOL vmlinux 0x5737eb09 vfs_write +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x5752f17d reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x57730a39 redraw_screen +EXPORT_SYMBOL vmlinux 0x5774301b dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x5792ece4 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits +EXPORT_SYMBOL vmlinux 0x57d21d77 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x57eb0619 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x57fea39d atomic64_and_return +EXPORT_SYMBOL vmlinux 0x581e9f51 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x584717c5 devm_free_irq +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x585b437d jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x58623807 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x587012d1 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x5890b60f mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x5899bff5 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58bad6bd try_to_release_page +EXPORT_SYMBOL vmlinux 0x58c60186 mmc_put_card +EXPORT_SYMBOL vmlinux 0x58d05da2 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x59054ae5 __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x590f02c4 backlight_force_update +EXPORT_SYMBOL vmlinux 0x591241d0 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x591bc1da __lock_page +EXPORT_SYMBOL vmlinux 0x593e7a98 param_set_int +EXPORT_SYMBOL vmlinux 0x59409933 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x59511057 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page +EXPORT_SYMBOL vmlinux 0x5972d3ab serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59b3378a completion_done +EXPORT_SYMBOL vmlinux 0x5a0a4d91 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a165ec2 dump_emit +EXPORT_SYMBOL vmlinux 0x5a53f5c9 dev_mc_del +EXPORT_SYMBOL vmlinux 0x5a5cffff netlink_broadcast +EXPORT_SYMBOL vmlinux 0x5a5e6f1c __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x5a66a58c gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x5a8922c6 agp_create_memory +EXPORT_SYMBOL vmlinux 0x5aabdb6f pcie_set_mps +EXPORT_SYMBOL vmlinux 0x5ababe9b elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x5abc03f8 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x5ac46a14 udplite_prot +EXPORT_SYMBOL vmlinux 0x5ac7a30a mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x5ae3f48c bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b12ed6d noop_llseek +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b336ec9 try_module_get +EXPORT_SYMBOL vmlinux 0x5b43f1f1 rtas_service_present +EXPORT_SYMBOL vmlinux 0x5b524dbd noop_qdisc +EXPORT_SYMBOL vmlinux 0x5b676a22 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x5b78b75e of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x5baba6b1 tty_do_resize +EXPORT_SYMBOL vmlinux 0x5bb8415f xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x5bb9daec __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0x5bbcff8e param_get_ulong +EXPORT_SYMBOL vmlinux 0x5bcf0882 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x5c106116 of_node_get +EXPORT_SYMBOL vmlinux 0x5c265cba sg_init_one +EXPORT_SYMBOL vmlinux 0x5c32441c ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x5c57913b blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x5c942219 scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x5c95e8fd xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x5c96fd26 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x5cc10b6c ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x5cd0c965 md_write_start +EXPORT_SYMBOL vmlinux 0x5cdb589e phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x5cdfab48 netlink_capable +EXPORT_SYMBOL vmlinux 0x5cea9faf stop_tty +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cf8c35b get_unmapped_area +EXPORT_SYMBOL vmlinux 0x5d0b4d5a gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x5d44b985 kill_block_super +EXPORT_SYMBOL vmlinux 0x5d4721a1 write_inode_now +EXPORT_SYMBOL vmlinux 0x5d4a8320 kvasprintf +EXPORT_SYMBOL vmlinux 0x5d4b863f generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d5e816c blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x5d65d03e may_umount_tree +EXPORT_SYMBOL vmlinux 0x5d7c59ea inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x5d957296 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x5dac9ba2 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x5e024a2e mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x5e27321b register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up +EXPORT_SYMBOL vmlinux 0x5e499652 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x5e4cc481 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x5e510285 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x5e52f9ec tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x5e6eed1c iget_locked +EXPORT_SYMBOL vmlinux 0x5e71fbd6 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x5e727831 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x5e825786 cpumask_any_but +EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e8cf75a __pci_register_driver +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e97008f __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x5e9f35ee devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x5eb0401e proc_dostring +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb51cdc input_set_abs_params +EXPORT_SYMBOL vmlinux 0x5eb625c0 nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x5eb7ab69 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x5ec50fb1 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ef215e0 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x5ef42a4e inet_gro_complete +EXPORT_SYMBOL vmlinux 0x5ef6d86d dcb_getapp +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f064679 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x5f068c1f bio_clone_fast +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f1a55da vfs_read +EXPORT_SYMBOL vmlinux 0x5f221eaa reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x5f5f6aca inc_node_state +EXPORT_SYMBOL vmlinux 0x5f754e5a memset +EXPORT_SYMBOL vmlinux 0x5f88f2fe dma_direct_ops +EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base +EXPORT_SYMBOL vmlinux 0x5f8deedc netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x5f95a278 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x5f9878b8 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x5f98ad37 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601cf561 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x604e58dd truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x6069cc9e phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x606f8988 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609c86fb alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x610b52f2 md_check_recovery +EXPORT_SYMBOL vmlinux 0x6123813d scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x6133455c blk_stop_queue +EXPORT_SYMBOL vmlinux 0x6136c4ef kernel_listen +EXPORT_SYMBOL vmlinux 0x613733a7 tty_kref_put +EXPORT_SYMBOL vmlinux 0x613c82cf current_fs_time +EXPORT_SYMBOL vmlinux 0x616206f2 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x616b825d dql_init +EXPORT_SYMBOL vmlinux 0x617b027b of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x6198dcb9 flush_icache_user_range +EXPORT_SYMBOL vmlinux 0x619cf309 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x619e0bef md_cluster_mod +EXPORT_SYMBOL vmlinux 0x61a9590b fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61b9853a key_type_keyring +EXPORT_SYMBOL vmlinux 0x61cd4069 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x61d6eb30 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x61dd7d18 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb +EXPORT_SYMBOL vmlinux 0x620d5c80 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x62109aa3 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x62127cc6 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x622da1a1 of_parse_phandle +EXPORT_SYMBOL vmlinux 0x623d7182 _chrp_type +EXPORT_SYMBOL vmlinux 0x623f7c72 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x6244d8a7 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x62538167 slhc_toss +EXPORT_SYMBOL vmlinux 0x626318fd of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0x62737c25 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x6279d0c2 simple_rmdir +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x628332e8 pmu_power_flags +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62899003 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x629ec483 __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x62a15819 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x62bd3722 dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x62f3f2fb param_set_bint +EXPORT_SYMBOL vmlinux 0x63072b97 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x63159ec8 param_get_invbool +EXPORT_SYMBOL vmlinux 0x6316a445 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x634c7e8c release_resource +EXPORT_SYMBOL vmlinux 0x635a0fbb inet_accept +EXPORT_SYMBOL vmlinux 0x636f3bd7 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x636f7195 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x6381c383 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x6390489e inet_release +EXPORT_SYMBOL vmlinux 0x6393c1f5 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x63a3cf3e dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63aef97b dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x63b40d07 dev_add_pack +EXPORT_SYMBOL vmlinux 0x63b63432 scsi_execute +EXPORT_SYMBOL vmlinux 0x63b7637a blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d1e51f set_anon_super +EXPORT_SYMBOL vmlinux 0x63e8fc9c scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x63ea09a7 pci_bus_get +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x6408ce3e agp_put_bridge +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x641f067e make_bad_inode +EXPORT_SYMBOL vmlinux 0x642a57dd dquot_commit +EXPORT_SYMBOL vmlinux 0x643544ee ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x643fa6d0 __radix_tree_insert +EXPORT_SYMBOL vmlinux 0x644adf67 key_validate +EXPORT_SYMBOL vmlinux 0x64565307 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x645681f7 free_buffer_head +EXPORT_SYMBOL vmlinux 0x646cc6ab pmu_poll +EXPORT_SYMBOL vmlinux 0x646ce65b blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x647444aa nf_register_hook +EXPORT_SYMBOL vmlinux 0x6496267f eth_type_trans +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a45406 padata_free +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64ccd8a9 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x64e4860e pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x6503e133 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x6524627d linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x65400222 __irq_offset_value +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x657b1b3e framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x6580e602 neigh_xmit +EXPORT_SYMBOL vmlinux 0x658b0505 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x65bcfbe1 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x65c2eb86 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x65c7bbb2 __SetPageMovable +EXPORT_SYMBOL vmlinux 0x65c8a85f ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x65d56414 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x66095719 netif_skb_features +EXPORT_SYMBOL vmlinux 0x66227eae vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x6678051c remove_proc_entry +EXPORT_SYMBOL vmlinux 0x667849b6 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x66ad2b4f sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x66ad6dcc scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x66c966d9 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x66cbf14b pmac_xpram_write +EXPORT_SYMBOL vmlinux 0x66fb967a udp_gro_complete +EXPORT_SYMBOL vmlinux 0x66fd4cc8 d_move +EXPORT_SYMBOL vmlinux 0x670859b9 input_set_capability +EXPORT_SYMBOL vmlinux 0x67156828 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x671f354b textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x6721d872 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x6726c6d4 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x673b0876 current_in_userns +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x67409508 skb_copy +EXPORT_SYMBOL vmlinux 0x675bcd7d proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x67824d39 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x678f8acf vme_irq_request +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c5143a inode_nohighmem +EXPORT_SYMBOL vmlinux 0x67cde053 dev_uc_add +EXPORT_SYMBOL vmlinux 0x67cfd854 input_open_device +EXPORT_SYMBOL vmlinux 0x67d0d5bc pci_choose_state +EXPORT_SYMBOL vmlinux 0x67d4131e blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x67dfc0ee inode_get_bytes +EXPORT_SYMBOL vmlinux 0x67eb81e1 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x67f92ebc __next_node_in +EXPORT_SYMBOL vmlinux 0x6805881d fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x68078fc5 blk_start_request +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680cf97c vm_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x681bd9f9 get_phy_device +EXPORT_SYMBOL vmlinux 0x681f5efa bdput +EXPORT_SYMBOL vmlinux 0x683f546b fscrypt_get_encryption_info +EXPORT_SYMBOL vmlinux 0x6859562c jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x688aeedc udp_set_csum +EXPORT_SYMBOL vmlinux 0x68904124 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x689cbb75 vm_insert_page +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68a36ff1 poll_initwait +EXPORT_SYMBOL vmlinux 0x68a405bd icmpv6_send +EXPORT_SYMBOL vmlinux 0x68a5e20b generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x68c58975 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x68f0a1cc ip6_xmit +EXPORT_SYMBOL vmlinux 0x690f8471 devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0x69117bfe __bforget +EXPORT_SYMBOL vmlinux 0x691363ab simple_getattr +EXPORT_SYMBOL vmlinux 0x69186997 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x6919f229 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x692053bd no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x69215276 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6929ea33 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x6957b75b bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x695f6a07 pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0x696b6120 read_cache_pages +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6979ea06 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x69a0929b mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69af7ada dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x69b4053b fd_install +EXPORT_SYMBOL vmlinux 0x69c03fc5 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x69d7e5b8 __debugger_ipi +EXPORT_SYMBOL vmlinux 0x69dfc1da eth_mac_addr +EXPORT_SYMBOL vmlinux 0x6a000ddb find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x6a02e1f8 skb_tx_error +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a1659f5 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x6a3454a2 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x6a5a5f36 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a736da9 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x6a7d2ed3 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x6a8772ba d_path +EXPORT_SYMBOL vmlinux 0x6a8a3e22 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x6a9cb8dd pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x6aa5474d contig_page_data +EXPORT_SYMBOL vmlinux 0x6aa82ac0 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x6ab217f1 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af3f794 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x6af88f58 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b08ce44 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x6b1ae63a __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b29669c __dquot_free_space +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b323e4e vme_master_mmap +EXPORT_SYMBOL vmlinux 0x6b481857 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0x6b7cea63 have_submounts +EXPORT_SYMBOL vmlinux 0x6ba64a28 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x6ba9337a posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x6bba77cf uart_get_divisor +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6c096e23 sock_no_listen +EXPORT_SYMBOL vmlinux 0x6c101f23 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x6c1743b5 __alloc_skb +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c8b00d8 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x6c942dfe i2c_master_recv +EXPORT_SYMBOL vmlinux 0x6c9a3e2b __devm_request_region +EXPORT_SYMBOL vmlinux 0x6c9c2b30 of_get_pci_address +EXPORT_SYMBOL vmlinux 0x6ca1d1a4 atomic64_read +EXPORT_SYMBOL vmlinux 0x6ca56772 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x6cb37127 flex_array_clear +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6ced8c5e disk_stack_limits +EXPORT_SYMBOL vmlinux 0x6cf7c736 start_tty +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d150400 scsi_host_get +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d31112a end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x6d3cc002 posix_test_lock +EXPORT_SYMBOL vmlinux 0x6d740223 flex_array_put +EXPORT_SYMBOL vmlinux 0x6d905442 i2c_use_client +EXPORT_SYMBOL vmlinux 0x6d95a749 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x6d989e97 get_pci_dma_ops +EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6dfad730 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x6e3b819f sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x6e4c4e68 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x6e5b9fad blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e779d9d pmac_register_agp_pm +EXPORT_SYMBOL vmlinux 0x6e8792ce devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6eac2c9b phy_attached_print +EXPORT_SYMBOL vmlinux 0x6eb272b2 iget_failed +EXPORT_SYMBOL vmlinux 0x6eb345c3 generic_make_request +EXPORT_SYMBOL vmlinux 0x6eb68499 write_cache_pages +EXPORT_SYMBOL vmlinux 0x6eb74dff proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x6eca4d4f mod_timer_pending +EXPORT_SYMBOL vmlinux 0x6ed0029c lease_modify +EXPORT_SYMBOL vmlinux 0x6ed71bb7 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x6ef1c3a1 module_put +EXPORT_SYMBOL vmlinux 0x6f1249f9 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x6f15d646 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x6f250495 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x6f451c29 param_get_long +EXPORT_SYMBOL vmlinux 0x6f5243c0 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f947390 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x6f977017 sync_blockdev +EXPORT_SYMBOL vmlinux 0x6fac3f18 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x6fb4d646 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd431b5 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x6fee7649 kill_anon_super +EXPORT_SYMBOL vmlinux 0x700784e3 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x700c79bb phy_register_fixup +EXPORT_SYMBOL vmlinux 0x701b0670 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x701e44c0 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x7045f0e0 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x70696d75 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x707b878b inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x70889104 ip6_frag_match +EXPORT_SYMBOL vmlinux 0x709a7c39 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x70c212a0 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x70caefe9 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x70d5d9e3 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x70d888b7 __debugger_fault_handler +EXPORT_SYMBOL vmlinux 0x70e1af92 skb_split +EXPORT_SYMBOL vmlinux 0x70f512bb scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x70f86c70 pmu_queue_request +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x70fea65d generic_read_dir +EXPORT_SYMBOL vmlinux 0x71024bc0 path_put +EXPORT_SYMBOL vmlinux 0x7112ddb3 inet_put_port +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712a117d mmc_add_host +EXPORT_SYMBOL vmlinux 0x7170147e __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x718f7926 serio_reconnect +EXPORT_SYMBOL vmlinux 0x7194ee0d __put_page +EXPORT_SYMBOL vmlinux 0x719dbdff tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71b1a8a5 param_set_uint +EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71d514e6 neigh_update +EXPORT_SYMBOL vmlinux 0x71e17dd9 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x71f309d2 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x720fad3c proc_symlink +EXPORT_SYMBOL vmlinux 0x7217ba99 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x7226c05b phy_drivers_register +EXPORT_SYMBOL vmlinux 0x722c2d95 pmac_suspend_agp_for_card +EXPORT_SYMBOL vmlinux 0x722c4af3 vme_dma_request +EXPORT_SYMBOL vmlinux 0x725f9c34 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x726d715b pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x72a0e6f2 __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x72aeb6ab tcf_action_exec +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b6e89b dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x72e7c005 pci_release_regions +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72fcf0e2 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x73175e65 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x733d6b2a free_task +EXPORT_SYMBOL vmlinux 0x73444dce inode_set_bytes +EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue +EXPORT_SYMBOL vmlinux 0x73639f40 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x73710a3e dqstats +EXPORT_SYMBOL vmlinux 0x7377f881 import_iovec +EXPORT_SYMBOL vmlinux 0x73979de6 atomic64_or +EXPORT_SYMBOL vmlinux 0x73994035 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x73b908ed mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x73b9c588 simple_release_fs +EXPORT_SYMBOL vmlinux 0x73dc1e56 fscrypt_get_policy +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73edc8d9 tcp_check_req +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7410e7fe tcp_poll +EXPORT_SYMBOL vmlinux 0x74221d32 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x744746b7 done_path_create +EXPORT_SYMBOL vmlinux 0x7459203b mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x745d3fa4 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x7460736b pci_dev_put +EXPORT_SYMBOL vmlinux 0x746ddb26 agp_bridge +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74870a2d dev_remove_offload +EXPORT_SYMBOL vmlinux 0x749a542e skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x749d5972 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x74a911c8 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c50103 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x74d14d07 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74fe8730 sys_ctrler +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x7539cbd5 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x7543f868 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x7557f7fa fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x756dd160 start_thread +EXPORT_SYMBOL vmlinux 0x75752376 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x7575b870 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x75811312 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x758b00cd vc_resize +EXPORT_SYMBOL vmlinux 0x758b5d44 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +EXPORT_SYMBOL vmlinux 0x75994700 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x75a1fd91 commit_creds +EXPORT_SYMBOL vmlinux 0x75ba092a mdio_device_create +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75d03ff6 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x75d68a73 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x75ea35fd blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x75fd9edd tcp_ioctl +EXPORT_SYMBOL vmlinux 0x75ff97b3 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x76400e8b mark_page_accessed +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764f1d1f tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x7657d1ee seq_path +EXPORT_SYMBOL vmlinux 0x765aaad2 nla_append +EXPORT_SYMBOL vmlinux 0x7672f646 rtas +EXPORT_SYMBOL vmlinux 0x76794b0a mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x769595c9 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x76ad0bac security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x76b08491 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be +EXPORT_SYMBOL vmlinux 0x76ebd454 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order +EXPORT_SYMBOL vmlinux 0x771449c0 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x771a07f1 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x77262a6e follow_up +EXPORT_SYMBOL vmlinux 0x772f0ebc netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x775a130e __sg_free_table +EXPORT_SYMBOL vmlinux 0x776607a8 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x7771da28 inet_gso_segment +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77a15b10 dqget +EXPORT_SYMBOL vmlinux 0x77bb3bfb netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c7e7e8 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x77c93093 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x77f30106 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x77f96b1c of_node_put +EXPORT_SYMBOL vmlinux 0x7803e95d __block_write_full_page +EXPORT_SYMBOL vmlinux 0x780b574d sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x780dabf0 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x7819f129 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x7825a550 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x7827ca95 tcp_seq_open +EXPORT_SYMBOL vmlinux 0x78337ca5 of_device_register +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x78414aec __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x78428c3d param_set_ushort +EXPORT_SYMBOL vmlinux 0x7843e3fd blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x78465fc2 posix_acl_init +EXPORT_SYMBOL vmlinux 0x7848c2c6 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x785e7b15 param_get_ushort +EXPORT_SYMBOL vmlinux 0x786a7c33 elevator_alloc +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x78848586 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78d52fdd sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x78dd9c67 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78ea665c PageMovable +EXPORT_SYMBOL vmlinux 0x78fa751d xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x7926fa80 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x79298a71 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x793c5956 __init_rwsem +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x797fa6fd devm_ioremap +EXPORT_SYMBOL vmlinux 0x798a3bed dm_table_get_md +EXPORT_SYMBOL vmlinux 0x798b919c sync_filesystem +EXPORT_SYMBOL vmlinux 0x798bf51b ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x7994980e abx500_register_ops +EXPORT_SYMBOL vmlinux 0x7997048a crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79bbb3e8 cdev_add +EXPORT_SYMBOL vmlinux 0x7a005132 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x7a2691d0 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x7a296d21 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 +EXPORT_SYMBOL vmlinux 0x7a36bf38 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x7a410c41 simple_setattr +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a455a72 cur_cpu_spec +EXPORT_SYMBOL vmlinux 0x7a466316 cdev_init +EXPORT_SYMBOL vmlinux 0x7a775ff4 param_set_short +EXPORT_SYMBOL vmlinux 0x7a7ea466 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x7a8154d6 finish_swait +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ae780cc mntget +EXPORT_SYMBOL vmlinux 0x7af97d8b blk_get_request +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b34f2e6 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x7b4a6445 mmc_erase +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b732641 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x7b885f50 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x7b99bac3 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x7ba9774b dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x7bb6c86a serio_unregister_port +EXPORT_SYMBOL vmlinux 0x7be3a68f kobject_del +EXPORT_SYMBOL vmlinux 0x7be4827c pci_dram_offset +EXPORT_SYMBOL vmlinux 0x7be98a84 pci_enable_msix +EXPORT_SYMBOL vmlinux 0x7bf4d81a __frontswap_load +EXPORT_SYMBOL vmlinux 0x7bffd788 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x7c043a89 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c28c4e4 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x7c2bcf4f unregister_console +EXPORT_SYMBOL vmlinux 0x7c30a5c6 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x7c31de3b ihold +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c46d0de of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x7c580110 pcim_iomap +EXPORT_SYMBOL vmlinux 0x7c63b30d i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x7c68a5ac agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x7c88c714 kset_register +EXPORT_SYMBOL vmlinux 0x7c89f4a5 cad_pid +EXPORT_SYMBOL vmlinux 0x7c9291d1 csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7ca7ae19 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cdbc0fe padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x7cdd4263 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf61381 param_set_invbool +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d1b9204 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x7d36a968 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x7d4c1626 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x7d5d2245 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x7d5e445d __neigh_create +EXPORT_SYMBOL vmlinux 0x7d632b39 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d7734c2 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x7d7c61bd __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x7d8696d6 skb_store_bits +EXPORT_SYMBOL vmlinux 0x7da7dc0a devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x7dbb3451 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x7dc97879 rtas_get_error_log_max +EXPORT_SYMBOL vmlinux 0x7de67062 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df6d557 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x7df79d4e blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x7e02d6a1 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x7e196f11 md_register_thread +EXPORT_SYMBOL vmlinux 0x7e237aea locks_copy_lock +EXPORT_SYMBOL vmlinux 0x7e257728 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x7e5c02cd param_ops_long +EXPORT_SYMBOL vmlinux 0x7e87227e slhc_compress +EXPORT_SYMBOL vmlinux 0x7e9d45b6 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x7ed21a29 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x7ed5a708 kill_pgrp +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f21a206 __vfs_read +EXPORT_SYMBOL vmlinux 0x7f2435e8 of_dev_get +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f324f4d try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7f3cc4f9 param_set_long +EXPORT_SYMBOL vmlinux 0x7f4407e9 flush_tlb_mm +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f68fed0 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x7f729085 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7fc904b8 mapping_tagged +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7ff3b187 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x7ffd8a00 vfs_whiteout +EXPORT_SYMBOL vmlinux 0x800fb92b full_name_hash +EXPORT_SYMBOL vmlinux 0x802f670c gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x805a3103 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x80655bbc elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x80bfc3b2 __register_chrdev +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80e1181b audit_log_start +EXPORT_SYMBOL vmlinux 0x80eb7d14 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x81002a39 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x810519fd hashlen_string +EXPORT_SYMBOL vmlinux 0x81064f29 of_n_size_cells +EXPORT_SYMBOL vmlinux 0x81240f53 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x8127f166 pci_iounmap +EXPORT_SYMBOL vmlinux 0x813f8aec generic_write_checks +EXPORT_SYMBOL vmlinux 0x8144f81b d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x81819480 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x818be492 mpage_readpages +EXPORT_SYMBOL vmlinux 0x819a4161 no_llseek +EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x81b85a3e mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x81c0a84f rtas_set_indicator +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e3f991 address_space_init_once +EXPORT_SYMBOL vmlinux 0x81eaf1d8 __kernel_write +EXPORT_SYMBOL vmlinux 0x81f848d5 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x81fe5170 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x822bc278 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x824517f3 passthru_features_check +EXPORT_SYMBOL vmlinux 0x8255a4f4 of_get_next_parent +EXPORT_SYMBOL vmlinux 0x825d715d napi_get_frags +EXPORT_SYMBOL vmlinux 0x825f7303 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x8269f5b1 lookup_bdev +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82843a66 of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x828fd4b6 __break_lease +EXPORT_SYMBOL vmlinux 0x829f39eb wireless_send_event +EXPORT_SYMBOL vmlinux 0x82bebb2b ns_capable +EXPORT_SYMBOL vmlinux 0x82bfbd49 md_write_end +EXPORT_SYMBOL vmlinux 0x82cd540a atomic64_and +EXPORT_SYMBOL vmlinux 0x82d563ea twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x82fdac5f dev_disable_lro +EXPORT_SYMBOL vmlinux 0x8301ef5a ab3100_event_register +EXPORT_SYMBOL vmlinux 0x8312f83d fasync_helper +EXPORT_SYMBOL vmlinux 0x831991ba kobject_add +EXPORT_SYMBOL vmlinux 0x8323e478 lookup_one_len +EXPORT_SYMBOL vmlinux 0x83257643 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x832e533f vme_bus_type +EXPORT_SYMBOL vmlinux 0x832f80d3 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x8343b1fa nf_afinfo +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x836c366c tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0x837ae62a kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x837e831d abort_creds +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8394cf63 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x83952ce2 fget_raw +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83b8a2e5 __netif_schedule +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83daaee8 d_exact_alias +EXPORT_SYMBOL vmlinux 0x83db54ec md_error +EXPORT_SYMBOL vmlinux 0x84099e43 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x8438b852 genphy_resume +EXPORT_SYMBOL vmlinux 0x844404cf ISA_DMA_THRESHOLD +EXPORT_SYMBOL vmlinux 0x8447612f agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x845fe554 vga_con +EXPORT_SYMBOL vmlinux 0x847bef48 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x84828b6f netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x849fe807 csum_and_copy_from_user +EXPORT_SYMBOL vmlinux 0x84a69fdc vme_slave_get +EXPORT_SYMBOL vmlinux 0x84b0920a phy_stop +EXPORT_SYMBOL vmlinux 0x84b183ae strncmp +EXPORT_SYMBOL vmlinux 0x84b368bb dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock +EXPORT_SYMBOL vmlinux 0x84d180d8 dev_addr_del +EXPORT_SYMBOL vmlinux 0x84f8f882 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x85078201 flush_tlb_page +EXPORT_SYMBOL vmlinux 0x853f83d7 nvm_register_tgt_type +EXPORT_SYMBOL vmlinux 0x8541bccc intercept_table +EXPORT_SYMBOL vmlinux 0x854e1c0b sg_nents +EXPORT_SYMBOL vmlinux 0x855a64e2 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x855f72e2 tty_lock +EXPORT_SYMBOL vmlinux 0x85645cd4 qdisc_list_add +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x856751f3 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x8572dd00 flush_dcache_icache_page +EXPORT_SYMBOL vmlinux 0x85825898 add_timer +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x859f9eb0 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85b96951 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x85bd371a tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x85ca1699 bdgrab +EXPORT_SYMBOL vmlinux 0x85d3f3d5 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x85d472aa queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e8a2e2 param_ops_bint +EXPORT_SYMBOL vmlinux 0x85ec2fd2 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x85ed1173 noop_fsync +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f27f88 __scm_send +EXPORT_SYMBOL vmlinux 0x85f74b00 iomem_resource +EXPORT_SYMBOL vmlinux 0x86081bc3 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x861344c0 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x8647d3ab skb_put +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x866f4970 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x868200b8 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x86850c56 seq_puts +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86936d29 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86b8ca61 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x86ba4ca3 machine_id +EXPORT_SYMBOL vmlinux 0x86d742d9 blk_get_queue +EXPORT_SYMBOL vmlinux 0x86db1cbb rtas_flash_term_hook +EXPORT_SYMBOL vmlinux 0x86dbc6bd pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x86e5eed7 alloc_file +EXPORT_SYMBOL vmlinux 0x86f35440 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x86f8869b ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x8700c3e2 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x870aa7cf mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x871a4f14 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x8729d49e devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0x873928aa nf_log_register +EXPORT_SYMBOL vmlinux 0x8743f382 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x87837ae5 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x8786f0bf sock_from_file +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x878b9c7b tcp_filter +EXPORT_SYMBOL vmlinux 0x879dde92 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x87b5b13f blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x87b71088 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x87bea1eb __skb_checksum +EXPORT_SYMBOL vmlinux 0x87d3f4f4 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x87ec3b56 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x87f0cc95 get_fs_type +EXPORT_SYMBOL vmlinux 0x882ad663 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x882c179d cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x88349752 soft_cursor +EXPORT_SYMBOL vmlinux 0x884e9d63 fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x884f012d __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x887bafeb twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x8892a5a7 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x88a7b8e8 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x88b76988 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x88bdf3b8 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x88c33565 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88edcabd __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy +EXPORT_SYMBOL vmlinux 0x8943c1b3 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x89746f95 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x897ba29b km_state_notify +EXPORT_SYMBOL vmlinux 0x89b3107b isa_mem_base +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89e0fe26 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x89e94126 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x89eda809 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x89f7e756 __sock_create +EXPORT_SYMBOL vmlinux 0x8a12e916 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x8a17d78e md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a2c0110 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x8a2d7d68 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x8a2e36f2 __free_pages +EXPORT_SYMBOL vmlinux 0x8a2f2e82 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a514ec9 tcp_connect +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a66b664 mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0x8a72f404 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa23047 mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x8aa2731d scsi_remove_device +EXPORT_SYMBOL vmlinux 0x8aa4ead6 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x8ab4079e atomic64_add +EXPORT_SYMBOL vmlinux 0x8ab767b2 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x8ad27e88 proc_remove +EXPORT_SYMBOL vmlinux 0x8ae99469 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0x8af4935f radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x8af90b41 datagram_poll +EXPORT_SYMBOL vmlinux 0x8afcf0cf pcim_enable_device +EXPORT_SYMBOL vmlinux 0x8b144191 console_stop +EXPORT_SYMBOL vmlinux 0x8b26844a of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x8b3ac32a simple_unlink +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b85177e unload_nls +EXPORT_SYMBOL vmlinux 0x8b8bfc35 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x8b9289a2 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x8b99b705 scsi_init_io +EXPORT_SYMBOL vmlinux 0x8ba2ae71 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x8bb36e92 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x8bda44fa netdev_all_lower_get_next_rcu +EXPORT_SYMBOL vmlinux 0x8be49524 del_gendisk +EXPORT_SYMBOL vmlinux 0x8bee9797 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x8bfad56b neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x8c13bbe9 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x8c1547ae inc_node_page_state +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c1b14a4 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x8c1dc156 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x8c24d9e5 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x8c299e1a vme_irq_free +EXPORT_SYMBOL vmlinux 0x8c4016b3 blk_start_queue +EXPORT_SYMBOL vmlinux 0x8c44b196 __seq_open_private +EXPORT_SYMBOL vmlinux 0x8c460a62 __put_cred +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c708e6e security_path_mknod +EXPORT_SYMBOL vmlinux 0x8c8cc313 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x8c9db4e6 param_ops_int +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8ccfa1db lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x8cd8f89e of_find_property +EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 +EXPORT_SYMBOL vmlinux 0x8d077a31 pmac_resume_agp_for_card +EXPORT_SYMBOL vmlinux 0x8d320376 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x8d3baf10 pci_set_vpd_size +EXPORT_SYMBOL vmlinux 0x8d3c5e7b dump_page +EXPORT_SYMBOL vmlinux 0x8d45cff1 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d58a517 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x8d6df652 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d9b69ad inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x8d9f0505 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x8dab9d30 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x8db80d9f tty_set_operations +EXPORT_SYMBOL vmlinux 0x8dc6e5ae unregister_shrinker +EXPORT_SYMBOL vmlinux 0x8dcc21e7 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x8dd174a7 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create +EXPORT_SYMBOL vmlinux 0x8def4986 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x8df56961 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x8df5da63 memstart_addr +EXPORT_SYMBOL vmlinux 0x8e035203 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0x8e26b098 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x8e4949cc freezing_slow_path +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e780bb7 macio_release_resource +EXPORT_SYMBOL vmlinux 0x8e813b12 posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x8e879bb7 __vmalloc +EXPORT_SYMBOL vmlinux 0x8e941b49 ata_link_printk +EXPORT_SYMBOL vmlinux 0x8eabb6bd ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x8eb7c29d nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x8eb914d6 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x8ebdf927 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8ed81eaa inet6_ioctl +EXPORT_SYMBOL vmlinux 0x8f22e5cf dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x8f547e0a xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x8f66bb06 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x8f6d9fdf tty_port_init +EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x8fa3c669 dev_set_group +EXPORT_SYMBOL vmlinux 0x8fafdf3a input_close_device +EXPORT_SYMBOL vmlinux 0x8fbf37e0 profile_pc +EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x8fd254c7 __skb_csum_offload_chk +EXPORT_SYMBOL vmlinux 0x8fd48a1f eth_header +EXPORT_SYMBOL vmlinux 0x8fdf3bd4 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x8fdf772a init_timer_key +EXPORT_SYMBOL vmlinux 0x8fec1b56 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x90355060 fb_class +EXPORT_SYMBOL vmlinux 0x905d569f mount_nodev +EXPORT_SYMBOL vmlinux 0x9062cbdf rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x9076a0bb neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x909980a7 mutex_lock +EXPORT_SYMBOL vmlinux 0x90b9df24 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x90bfdd6b blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x90c0e753 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x912557ce rtas_busy_delay +EXPORT_SYMBOL vmlinux 0x912a45d9 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x915af842 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec +EXPORT_SYMBOL vmlinux 0x9160d395 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x9168c033 rtas_get_sensor +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x9188804d of_phy_connect +EXPORT_SYMBOL vmlinux 0x91992599 of_match_device +EXPORT_SYMBOL vmlinux 0x919cf367 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x91b5ef0c i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x91c24f39 default_llseek +EXPORT_SYMBOL vmlinux 0x91e86be9 sync_inode +EXPORT_SYMBOL vmlinux 0x91f71671 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923ee0fd simple_open +EXPORT_SYMBOL vmlinux 0x925520db atomic64_fetch_xor +EXPORT_SYMBOL vmlinux 0x9262a6a0 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x9281eb61 request_key_async +EXPORT_SYMBOL vmlinux 0x9287aebb of_get_ibm_chip_id +EXPORT_SYMBOL vmlinux 0x92cf65ce kill_pid +EXPORT_SYMBOL vmlinux 0x92e317f1 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x92ed18a2 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x9309de94 cuda_request +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x9330cb9f sg_alloc_table +EXPORT_SYMBOL vmlinux 0x933693fb agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x9339b991 phy_device_free +EXPORT_SYMBOL vmlinux 0x933e7f7f devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x934186a8 elv_rb_del +EXPORT_SYMBOL vmlinux 0x936a6431 d_add +EXPORT_SYMBOL vmlinux 0x9373f756 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x93768774 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x937c07c5 cdrom_release +EXPORT_SYMBOL vmlinux 0x93842b0d netpoll_setup +EXPORT_SYMBOL vmlinux 0x93935d82 dev_deactivate +EXPORT_SYMBOL vmlinux 0x93a09d01 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x93b18879 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93bc6a5f block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x93e3c79c inet6_del_offload +EXPORT_SYMBOL vmlinux 0x93e42672 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x93fcebb4 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x9416e1d8 __request_region +EXPORT_SYMBOL vmlinux 0x943dc80f csum_and_copy_to_user +EXPORT_SYMBOL vmlinux 0x944041cb sget +EXPORT_SYMBOL vmlinux 0x945c2f29 mpage_readpage +EXPORT_SYMBOL vmlinux 0x9490b0d5 __inode_permission +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x949a90cb inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x949cbbd4 neigh_for_each +EXPORT_SYMBOL vmlinux 0x94a7a43a kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x94b2590f vme_free_consistent +EXPORT_SYMBOL vmlinux 0x94cbd061 dql_reset +EXPORT_SYMBOL vmlinux 0x94cdf085 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x94dfb891 km_state_expired +EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x95214d82 blk_end_request_all +EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb +EXPORT_SYMBOL vmlinux 0x952a17b5 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x95379cde skb_queue_tail +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x955850ea scsi_scan_host +EXPORT_SYMBOL vmlinux 0x9559dd4c md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x955be96e sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x957e3565 d_add_ci +EXPORT_SYMBOL vmlinux 0x9590af1b xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x95b84d63 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x95c5653d msi_bitmap_free_hwirqs +EXPORT_SYMBOL vmlinux 0x95fd4bce from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x9618689b bio_advance +EXPORT_SYMBOL vmlinux 0x9623d942 fscrypt_decrypt_bio_pages +EXPORT_SYMBOL vmlinux 0x9647410a nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x964c4dec uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x964c8b79 of_get_parent +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x96629e97 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x96664ecc generic_getxattr +EXPORT_SYMBOL vmlinux 0x966a25d1 nvm_find_target_type +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x968abbff devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x96a0c08a scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x96afe64f request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x96b1db88 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x96b6fdfb fb_validate_mode +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96dbcca2 ioremap_prot +EXPORT_SYMBOL vmlinux 0x96dcbcde writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x96e7b4d8 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x96e86063 km_query +EXPORT_SYMBOL vmlinux 0x96ff2623 bdi_register_dev +EXPORT_SYMBOL vmlinux 0x970fa6b0 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x97106714 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x971890b2 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x97255bdf strlen +EXPORT_SYMBOL vmlinux 0x972a4e9c ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x973d01a1 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x97711b52 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x9778dcdd pci_disable_msix +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x9799f0cb param_ops_byte +EXPORT_SYMBOL vmlinux 0x97af4e3f tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x97e626c5 fscrypt_free_filename +EXPORT_SYMBOL vmlinux 0x97e8100c scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x97f39ba5 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x97f43d0a kmap_pte +EXPORT_SYMBOL vmlinux 0x97f87ace cdev_del +EXPORT_SYMBOL vmlinux 0x982aa668 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x983abc13 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x9853c320 dqput +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x9883260d mem_map +EXPORT_SYMBOL vmlinux 0x98cf5eec pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x98d13599 pci_map_rom +EXPORT_SYMBOL vmlinux 0x98d691ea blk_delay_queue +EXPORT_SYMBOL vmlinux 0x98df6b72 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x98f521f6 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x98fe7882 DMA_MODE_READ +EXPORT_SYMBOL vmlinux 0x990815ed radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x9918bfa8 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x9955e5d4 kobject_put +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x998a3487 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x999fcf3b page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x99a291b2 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x99a7728b mod_node_page_state +EXPORT_SYMBOL vmlinux 0x99aa1694 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x99aafd9a netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x99bb8806 memmove +EXPORT_SYMBOL vmlinux 0x99bc8060 lock_fb_info +EXPORT_SYMBOL vmlinux 0x99be238d blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x99d0dd66 tty_devnum +EXPORT_SYMBOL vmlinux 0x99d4a5e8 register_netdevice +EXPORT_SYMBOL vmlinux 0x99e3023d unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x99ea6aaa netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a3b008d dquot_acquire +EXPORT_SYMBOL vmlinux 0x9a3fabfb of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x9a4c806d pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x9a5b34a8 input_get_keycode +EXPORT_SYMBOL vmlinux 0x9a6c2235 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x9a74823c d_find_alias +EXPORT_SYMBOL vmlinux 0x9a7dd7b8 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x9a911bdf fscrypt_get_ctx +EXPORT_SYMBOL vmlinux 0x9ac701ce nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x9ac88e97 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b337fb2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b38386b dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b62d0fe sk_free +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b713f7c ppp_input +EXPORT_SYMBOL vmlinux 0x9b76e6a6 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x9b8e4ba8 atomic64_fetch_sub +EXPORT_SYMBOL vmlinux 0x9b99cb5e blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9ba82ab6 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x9bc3d902 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x9bc69e28 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x9bcc12d6 fb_blank +EXPORT_SYMBOL vmlinux 0x9bdf37f5 wake_up_process +EXPORT_SYMBOL vmlinux 0x9be0b01e page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9bfbc1f4 mach_chrp +EXPORT_SYMBOL vmlinux 0x9c1b0931 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x9c22cb38 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x9c27f77c netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x9c339bcb input_flush_device +EXPORT_SYMBOL vmlinux 0x9c3527d8 migrate_page +EXPORT_SYMBOL vmlinux 0x9c414f73 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x9c5166e0 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x9c6294bb i2c_clients_command +EXPORT_SYMBOL vmlinux 0x9c65a4d8 sock_no_connect +EXPORT_SYMBOL vmlinux 0x9c76eb42 pci_platform_rom +EXPORT_SYMBOL vmlinux 0x9c92d94d radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb92223 inet_del_offload +EXPORT_SYMBOL vmlinux 0x9cc2d11e search_binary_handler +EXPORT_SYMBOL vmlinux 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs +EXPORT_SYMBOL vmlinux 0x9d184871 lwtunnel_input +EXPORT_SYMBOL vmlinux 0x9d669763 memcpy +EXPORT_SYMBOL vmlinux 0x9d6a54c2 flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0x9d7ce8dd _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x9dde511d mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e093eb4 __brelse +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e1cfc90 ioremap_wc +EXPORT_SYMBOL vmlinux 0x9e2e2d2b udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x9e315493 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x9e3a86e2 block_write_end +EXPORT_SYMBOL vmlinux 0x9e4dd7f5 fence_init +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e51dff3 flush_tlb_range +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e64b401 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x9e672ff6 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x9e6a41d3 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x9e7040e5 proc_create_data +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e91b77a sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x9e97375d rtas_busy_delay_time +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9eaa0316 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x9ebb7b5a cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x9ebc5556 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x9ec03fb6 device_add_disk +EXPORT_SYMBOL vmlinux 0x9ec571c7 udp_poll +EXPORT_SYMBOL vmlinux 0x9ec587e7 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x9ec98970 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x9ed329e3 alloc_disk +EXPORT_SYMBOL vmlinux 0x9eda4718 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x9edb5ad2 nvm_mark_blk +EXPORT_SYMBOL vmlinux 0x9ee82cd6 uuid_be_index +EXPORT_SYMBOL vmlinux 0x9f37e7b0 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4c417b ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x9f5d19a0 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x9f7d32d2 nvm_get_bb_tbl +EXPORT_SYMBOL vmlinux 0x9f8b249c qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x9f911629 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x9f94e306 page_mapped +EXPORT_SYMBOL vmlinux 0x9f982e6f inet_frag_kill +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f9ca9ed atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x9fb1d0ed uuid_is_valid +EXPORT_SYMBOL vmlinux 0x9fcfb4b7 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x9fd700a9 udp_seq_open +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9ff4de05 unregister_key_type +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa00edc57 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0xa0240d4a unregister_binfmt +EXPORT_SYMBOL vmlinux 0xa033880e sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa060d51a of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xa0687ce7 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xa06aaa37 d_tmpfile +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa070676b ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xa0744ea9 cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa0aca9d4 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xa0af3a1e scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0bdc00b __ip_select_ident +EXPORT_SYMBOL vmlinux 0xa0c659cb __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0ff6ffc devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xa1061432 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xa107d94a wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa11d504f handle_edge_irq +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa129006e clear_nlink +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa15d633a proc_set_size +EXPORT_SYMBOL vmlinux 0xa163fab2 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xa1711a82 dev_addr_init +EXPORT_SYMBOL vmlinux 0xa18152d0 tty_unlock +EXPORT_SYMBOL vmlinux 0xa1af854c dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xa1b263dd jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xa1ce3682 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1e5e88d i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xa1fcafd6 dquot_enable +EXPORT_SYMBOL vmlinux 0xa1fdfbdc of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa2118e7b gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xa2276d64 vfs_unlink +EXPORT_SYMBOL vmlinux 0xa23b247f f_setown +EXPORT_SYMBOL vmlinux 0xa25a4d4b fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0xa25fccc7 devm_memunmap +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa28a8931 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xa2975cd7 sock_i_uid +EXPORT_SYMBOL vmlinux 0xa2ab1f3e add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xa2b8a607 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register +EXPORT_SYMBOL vmlinux 0xa2e634ba twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xa2e92dcb blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0xa30b469d unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0xa31a8d9c radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa320f5cb pci_request_regions +EXPORT_SYMBOL vmlinux 0xa34e0218 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xa3691ea2 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xa37abb79 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xa38e691a ioremap_bot +EXPORT_SYMBOL vmlinux 0xa394cef2 framebuffer_release +EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay +EXPORT_SYMBOL vmlinux 0xa3a14bfa scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa3cb33b7 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xa3dc5b7e invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xa3e75545 flush_tlb_kernel_range +EXPORT_SYMBOL vmlinux 0xa3ea1252 freeze_super +EXPORT_SYMBOL vmlinux 0xa3fd997f scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xa427765e security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xa42cd429 get_task_io_context +EXPORT_SYMBOL vmlinux 0xa42db798 __neigh_event_send +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa458724d input_unregister_device +EXPORT_SYMBOL vmlinux 0xa470144f clear_wb_congested +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa47da371 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xa48723ff page_mapping +EXPORT_SYMBOL vmlinux 0xa48b8555 thaw_super +EXPORT_SYMBOL vmlinux 0xa48e8661 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0xa495385c dquot_initialize +EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4c76509 gen_pool_free +EXPORT_SYMBOL vmlinux 0xa4d43981 thaw_bdev +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4f5b88e tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xa5054aa8 skb_vlan_push +EXPORT_SYMBOL vmlinux 0xa529031f bio_chain +EXPORT_SYMBOL vmlinux 0xa54b8083 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa56b8ab2 flex_array_free +EXPORT_SYMBOL vmlinux 0xa56c6618 tso_build_hdr +EXPORT_SYMBOL vmlinux 0xa5714ab7 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xa5742338 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xa58e51ee inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a633b9 sg_last +EXPORT_SYMBOL vmlinux 0xa5bfda44 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0xa5db5580 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xa5f528dc ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0xa608e76f try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xa639b630 tcf_hash_check +EXPORT_SYMBOL vmlinux 0xa648bee6 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xa652c4ef __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio +EXPORT_SYMBOL vmlinux 0xa661bcb7 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0xa66c8d2e sock_kmalloc +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa6b172d7 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xa6bb5351 sg_miter_skip +EXPORT_SYMBOL vmlinux 0xa6df8745 vga_client_register +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock +EXPORT_SYMBOL vmlinux 0xa731bc32 migrate_page_copy +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa7381945 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0xa74f1eea simple_get_link +EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get +EXPORT_SYMBOL vmlinux 0xa75aa043 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0xa765ec91 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xa777bec9 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0xa77d2a76 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0xa78d9eb7 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xa79efe6a blk_queue_bounce +EXPORT_SYMBOL vmlinux 0xa7a703d7 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xa7ab8608 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xa7b39b55 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0xa7d79968 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xa7da12d8 softnet_data +EXPORT_SYMBOL vmlinux 0xa7deb733 filemap_flush +EXPORT_SYMBOL vmlinux 0xa819678f backlight_device_register +EXPORT_SYMBOL vmlinux 0xa8232648 kmem_cache_create +EXPORT_SYMBOL vmlinux 0xa8235c65 mdiobus_scan +EXPORT_SYMBOL vmlinux 0xa825f616 inode_init_owner +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8596e82 block_read_full_page +EXPORT_SYMBOL vmlinux 0xa861ab6e __ioremap +EXPORT_SYMBOL vmlinux 0xa86d3ed1 simple_link +EXPORT_SYMBOL vmlinux 0xa87006d0 fscrypt_fname_encrypted_size +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa88516c8 pci_select_bars +EXPORT_SYMBOL vmlinux 0xa89464b7 __ashldi3 +EXPORT_SYMBOL vmlinux 0xa899054c netif_receive_skb +EXPORT_SYMBOL vmlinux 0xa8b483e4 bio_map_kern +EXPORT_SYMBOL vmlinux 0xa8b5058c ps2_command +EXPORT_SYMBOL vmlinux 0xa8bc1a5e of_scan_pci_bridge +EXPORT_SYMBOL vmlinux 0xa8c6bc93 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xa8d9cb30 flow_cache_fini +EXPORT_SYMBOL vmlinux 0xa8db8f0c tcf_register_action +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa926b358 dmam_pool_create +EXPORT_SYMBOL vmlinux 0xa9273e1a epapr_hypercall_start +EXPORT_SYMBOL vmlinux 0xa93a8e25 invalidate_bdev +EXPORT_SYMBOL vmlinux 0xa941099e cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xa9571d6d DMA_MODE_WRITE +EXPORT_SYMBOL vmlinux 0xa95ac89d sg_miter_stop +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9848599 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0xa99a8859 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0xa99e7a0e sock_alloc_file +EXPORT_SYMBOL vmlinux 0xa9a0a07f dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xa9bebb73 path_nosuid +EXPORT_SYMBOL vmlinux 0xa9bec8d9 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9dd8c04 udp_ioctl +EXPORT_SYMBOL vmlinux 0xa9edbabc fence_default_wait +EXPORT_SYMBOL vmlinux 0xa9f16d42 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xaa2402b8 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xaa258c09 find_get_entries_tag +EXPORT_SYMBOL vmlinux 0xaa27b3ab inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock +EXPORT_SYMBOL vmlinux 0xaa4df512 pmu_batteries +EXPORT_SYMBOL vmlinux 0xaa62b48c __mdiobus_register +EXPORT_SYMBOL vmlinux 0xaa6487f5 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa898cc6 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xaa8a48cd tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xaaa8c8aa d_lookup +EXPORT_SYMBOL vmlinux 0xaaaca06a __get_user_pages +EXPORT_SYMBOL vmlinux 0xaac06a44 bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaadaa3c7 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0xaae411ef tcf_hash_create +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab126668 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xab264fde chacha20_block +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab401bc2 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0xab527eb5 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xab54aa12 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xab63f524 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xab694444 bsearch +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab6d54fc memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xab748109 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab78d63e dev_close +EXPORT_SYMBOL vmlinux 0xab849eef account_page_dirtied +EXPORT_SYMBOL vmlinux 0xab957293 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xab9fe426 seq_file_path +EXPORT_SYMBOL vmlinux 0xabc63b5f devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xabc946b2 fscrypt_decrypt_page +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabedab9a phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xabf090bc vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0xabf89b83 adjust_resource +EXPORT_SYMBOL vmlinux 0xac13987f bh_submit_read +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xac37ffd6 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0xac3a711a free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xac4848d8 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0xac4cc1bc lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb1c894 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xacbbdc12 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xacc0924c phy_connect_direct +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xaccd823a xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xacceb3ec gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xace2220e sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacfd192a __blk_run_queue +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad1c12e9 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xad4027d1 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xad4a5762 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock +EXPORT_SYMBOL vmlinux 0xad6264bb dput +EXPORT_SYMBOL vmlinux 0xad7955fe delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xad79e6d4 dquot_transfer +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xada134b3 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xadc8d177 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0xadd52be9 vfs_llseek +EXPORT_SYMBOL vmlinux 0xaddd4770 __debugger_iabr_match +EXPORT_SYMBOL vmlinux 0xadef8a8e nf_log_packet +EXPORT_SYMBOL vmlinux 0xadf36bf6 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xadf5236b bmap +EXPORT_SYMBOL vmlinux 0xadf5fc94 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae0416f4 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xae087370 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xae0b3b1d rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0xae425a78 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xae42d64e fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xae8655ac bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0xae8e6546 tc_classify +EXPORT_SYMBOL vmlinux 0xaea28b6b abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0xaea6d5e8 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaed81e79 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xaef6ed87 kernel_bind +EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xaf071dc7 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xaf0a6898 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xaf0b81c2 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xaf2c176d i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf5424ff set_wb_congested +EXPORT_SYMBOL vmlinux 0xaf571291 may_umount +EXPORT_SYMBOL vmlinux 0xaf73e434 of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0xaf7bca21 send_sig_info +EXPORT_SYMBOL vmlinux 0xaf9b3c81 dev_driver_string +EXPORT_SYMBOL vmlinux 0xafaa096c scsi_target_resume +EXPORT_SYMBOL vmlinux 0xafe6a1ec skb_pull +EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc +EXPORT_SYMBOL vmlinux 0xb00b8027 init_task +EXPORT_SYMBOL vmlinux 0xb01e68b8 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xb021e041 __page_symlink +EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove +EXPORT_SYMBOL vmlinux 0xb042cbf2 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xb046171f dev_remove_pack +EXPORT_SYMBOL vmlinux 0xb0556c1f kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb0654211 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xb06abd08 d_obtain_root +EXPORT_SYMBOL vmlinux 0xb0804ee3 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e3a471 __kfree_skb +EXPORT_SYMBOL vmlinux 0xb0ffb0c9 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xb10ea75b bio_split +EXPORT_SYMBOL vmlinux 0xb116cfc8 find_vma +EXPORT_SYMBOL vmlinux 0xb11e091c I_BDEV +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb156001d padata_do_serial +EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb15e54be pci_claim_resource +EXPORT_SYMBOL vmlinux 0xb187075e skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xb1a8908e mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xb1aa41a0 phy_device_register +EXPORT_SYMBOL vmlinux 0xb1bbee3b blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0xb1bc7308 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xb1be4e8c xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xb1c2a3d3 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c6e787 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1ec3847 uart_register_driver +EXPORT_SYMBOL vmlinux 0xb1ffb3da netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0xb2031d5c blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0xb218848f do_SAK +EXPORT_SYMBOL vmlinux 0xb21b6be3 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xb22594ae pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xb226ec53 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0xb233762c atomic64_set +EXPORT_SYMBOL vmlinux 0xb237bbab put_cmsg +EXPORT_SYMBOL vmlinux 0xb255c9a3 iptun_encaps +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb26f507c genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xb2884f99 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xb2ac27f6 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xb2acc4cd __msr_check_and_clear +EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on +EXPORT_SYMBOL vmlinux 0xb2f1e1c4 sk_net_capable +EXPORT_SYMBOL vmlinux 0xb31b533c skb_clone_sk +EXPORT_SYMBOL vmlinux 0xb31d926e bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xb328987c request_key +EXPORT_SYMBOL vmlinux 0xb343e7d4 sg_miter_start +EXPORT_SYMBOL vmlinux 0xb36837b0 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0xb368fb8b fscrypt_initialize +EXPORT_SYMBOL vmlinux 0xb36c468c nvm_register +EXPORT_SYMBOL vmlinux 0xb378eb8b blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xb39170be dst_alloc +EXPORT_SYMBOL vmlinux 0xb39189ab pci_iomap +EXPORT_SYMBOL vmlinux 0xb3a5d123 simple_pin_fs +EXPORT_SYMBOL vmlinux 0xb3ab994e param_set_charp +EXPORT_SYMBOL vmlinux 0xb3b4eb36 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0xb3d238fb vga_put +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3d75a23 giveup_altivec +EXPORT_SYMBOL vmlinux 0xb3e13fde of_device_is_available +EXPORT_SYMBOL vmlinux 0xb3e694cd dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb45ba813 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb47b0d23 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xb47dd263 netdev_notice +EXPORT_SYMBOL vmlinux 0xb485623b bio_add_page +EXPORT_SYMBOL vmlinux 0xb4ab2cf6 kset_unregister +EXPORT_SYMBOL vmlinux 0xb4c893e2 inet_ioctl +EXPORT_SYMBOL vmlinux 0xb4e3f40b set_binfmt +EXPORT_SYMBOL vmlinux 0xb4ea1658 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xb4eee7a1 scsi_register +EXPORT_SYMBOL vmlinux 0xb5065547 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xb50bf192 key_reject_and_link +EXPORT_SYMBOL vmlinux 0xb5259132 gen_pool_alloc_algo +EXPORT_SYMBOL vmlinux 0xb53d7c3f pci_add_resource +EXPORT_SYMBOL vmlinux 0xb55df077 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xb55f0bf6 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xb571b5ad twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb573c6b7 finish_no_open +EXPORT_SYMBOL vmlinux 0xb57e2836 generic_listxattr +EXPORT_SYMBOL vmlinux 0xb581af7b netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xb5956ab4 inode_dio_wait +EXPORT_SYMBOL vmlinux 0xb59cddfc iunique +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5a482c1 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5cd92e9 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xb5d9454c printk_emit +EXPORT_SYMBOL vmlinux 0xb5ddd816 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xb5fb3271 atomic64_fetch_or +EXPORT_SYMBOL vmlinux 0xb61121a9 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb64074e3 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0xb64f1b38 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xb6575a32 sock_sendmsg +EXPORT_SYMBOL vmlinux 0xb65d44b8 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xb6750426 __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb68a1afb dquot_operations +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb695b7c9 blk_complete_request +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6cbc826 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xb6fdadac kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0xb7088cb9 fb_pan_display +EXPORT_SYMBOL vmlinux 0xb70f2d2b genphy_suspend +EXPORT_SYMBOL vmlinux 0xb7118884 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xb721701c phy_init_hw +EXPORT_SYMBOL vmlinux 0xb728d0f2 mpage_writepage +EXPORT_SYMBOL vmlinux 0xb72e50c7 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xb72ebaf6 iterate_supers_type +EXPORT_SYMBOL vmlinux 0xb73509f4 __frontswap_test +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb750e131 msi_bitmap_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0xb753bcc8 __ashrdi3 +EXPORT_SYMBOL vmlinux 0xb75a1aab fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0xb75ddef8 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xb7628b65 page_readlink +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb78178bb blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0xb7846f16 param_ops_charp +EXPORT_SYMBOL vmlinux 0xb78bc3c1 mmc_power_save_host +EXPORT_SYMBOL vmlinux 0xb7982c94 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xb79a4e1a store_fp_state +EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0xb7a1b58f netlink_net_capable +EXPORT_SYMBOL vmlinux 0xb7a99781 __irq_regs +EXPORT_SYMBOL vmlinux 0xb7b7639f jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7cc3ad8 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0xb7d94cc7 kill_litter_super +EXPORT_SYMBOL vmlinux 0xb7d9b843 fence_add_callback +EXPORT_SYMBOL vmlinux 0xb7e17ce7 arp_xmit +EXPORT_SYMBOL vmlinux 0xb8004245 __frontswap_store +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb82e003d skb_queue_head +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb894c0f1 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xb8a279b0 security_path_rename +EXPORT_SYMBOL vmlinux 0xb8a3d7e6 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb8eec98b del_timer +EXPORT_SYMBOL vmlinux 0xb903b8c4 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xb9136f6c call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xb92f6f5e deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xb92f98ee nvm_get_blk +EXPORT_SYMBOL vmlinux 0xb941fdfb key_unlink +EXPORT_SYMBOL vmlinux 0xb9701638 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xb972cf56 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xb99c01db shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xb9a8698d elv_rb_find +EXPORT_SYMBOL vmlinux 0xb9a923d4 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xb9b31d6e sock_release +EXPORT_SYMBOL vmlinux 0xb9c04b52 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xb9e2c403 sk_dst_check +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9eb0471 pci_pme_active +EXPORT_SYMBOL vmlinux 0xb9f33b8c dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xba0b2fe4 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xba243762 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0xba359c5a gen_new_estimator +EXPORT_SYMBOL vmlinux 0xba3cedd5 d_rehash +EXPORT_SYMBOL vmlinux 0xba4259d6 udp_prot +EXPORT_SYMBOL vmlinux 0xba432b94 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xba440850 __skb_get_hash +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba5919f1 mmc_can_reset +EXPORT_SYMBOL vmlinux 0xba74b7cc inet6_release +EXPORT_SYMBOL vmlinux 0xba91e685 memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0xbaa736da i2c_register_driver +EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0xbac5d9f0 md_reload_sb +EXPORT_SYMBOL vmlinux 0xbac7ff62 blk_queue_split +EXPORT_SYMBOL vmlinux 0xbac9d101 phy_start +EXPORT_SYMBOL vmlinux 0xbaf2cca4 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xbafabe1f nlmsg_notify +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb0983b2 qdisc_list_del +EXPORT_SYMBOL vmlinux 0xbb1c27ea mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xbb1e2eba dev_activate +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb427571 agp_enable +EXPORT_SYMBOL vmlinux 0xbb454dba skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb756a8c give_up_console +EXPORT_SYMBOL vmlinux 0xbb7bb723 phy_init_eee +EXPORT_SYMBOL vmlinux 0xbb95821a unregister_nls +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbba2b6da tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xbbe726bd adb_client_list +EXPORT_SYMBOL vmlinux 0xbbeeb59f file_open_root +EXPORT_SYMBOL vmlinux 0xbbf79835 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xbc110d79 sock_efree +EXPORT_SYMBOL vmlinux 0xbc118395 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0xbc1b71d4 __getblk_slow +EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0xbc31dd85 seq_lseek +EXPORT_SYMBOL vmlinux 0xbc3a5b7b iov_iter_zero +EXPORT_SYMBOL vmlinux 0xbc4ee986 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0xbc55c693 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0xbc635240 mdiobus_free +EXPORT_SYMBOL vmlinux 0xbc7c411d bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xbc7ea284 input_event +EXPORT_SYMBOL vmlinux 0xbc84b7d1 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0xbc864fa3 mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0xbc872ea6 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xbca0a0b8 kernel_param_lock +EXPORT_SYMBOL vmlinux 0xbca595ae copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xbcacd89a napi_disable +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcca0a8a dev_alloc_name +EXPORT_SYMBOL vmlinux 0xbcd3635d get_super +EXPORT_SYMBOL vmlinux 0xbce112f4 seq_printf +EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 +EXPORT_SYMBOL vmlinux 0xbcf69372 allocate_resource +EXPORT_SYMBOL vmlinux 0xbcfd5167 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xbd0cd769 scmd_printk +EXPORT_SYMBOL vmlinux 0xbd0f3487 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0xbd3063fc __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xbd8d541d flush_hash_pages +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbd964215 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xbd9e5d49 __lshrdi3 +EXPORT_SYMBOL vmlinux 0xbdaa8a7a scsi_print_command +EXPORT_SYMBOL vmlinux 0xbdceab6d input_register_device +EXPORT_SYMBOL vmlinux 0xbddab372 dev_warn +EXPORT_SYMBOL vmlinux 0xbdf40df2 fscrypt_fname_usr_to_disk +EXPORT_SYMBOL vmlinux 0xbdfc947a macio_unregister_driver +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe11d7d3 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe2e1e69 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xbe313ad9 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xbe56cb6d register_filesystem +EXPORT_SYMBOL vmlinux 0xbe5dbf33 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xbe6ada7d uuid_le_index +EXPORT_SYMBOL vmlinux 0xbe97675c phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xbe97c4df zero_fill_bio +EXPORT_SYMBOL vmlinux 0xbe98141d pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xbe9f2214 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xbeba02bc blk_integrity_register +EXPORT_SYMBOL vmlinux 0xbebde874 from_kuid +EXPORT_SYMBOL vmlinux 0xbebec29b devm_gpio_free +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbeece3f4 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf000096 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xbf1222b5 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xbf2d7cb2 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xbf2fb308 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xbf310248 alloc_disk_node +EXPORT_SYMBOL vmlinux 0xbf3b0301 of_get_min_tck +EXPORT_SYMBOL vmlinux 0xbf403cc3 da903x_query_status +EXPORT_SYMBOL vmlinux 0xbf5c7590 param_get_int +EXPORT_SYMBOL vmlinux 0xbf60b933 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xbf6518ed scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xbf6ffb37 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xbf75cbd3 netdev_emerg +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf925c42 idr_init +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfd3e8e9 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc00c69e5 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xc02c0b2a ioport_resource +EXPORT_SYMBOL vmlinux 0xc05119fe sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xc05c5a32 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xc07216f7 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0856179 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL vmlinux 0xc093ffcb xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xc09ad34e pci_restore_state +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0b137fd pci_dev_get +EXPORT_SYMBOL vmlinux 0xc0ce50c3 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xc0d5010e mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xc0d84ced cuda_poll +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc127ffc9 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xc13a10dc flex_array_alloc +EXPORT_SYMBOL vmlinux 0xc15906ae bio_clone_bioset +EXPORT_SYMBOL vmlinux 0xc1860afa xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xc1abcda6 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0xc1b4f533 eth_change_mtu +EXPORT_SYMBOL vmlinux 0xc1be976a agp_find_bridge +EXPORT_SYMBOL vmlinux 0xc1c631da locks_free_lock +EXPORT_SYMBOL vmlinux 0xc1d53b32 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1dd4a7f adb_request +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1ed5c1a component_match_add_release +EXPORT_SYMBOL vmlinux 0xc221f2d5 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xc23b365d netif_rx +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc24ad200 __f_setown +EXPORT_SYMBOL vmlinux 0xc250d52a __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xc286275d __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xc29d1578 param_set_copystring +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xc2b64a8a inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xc2c2589e cfb_copyarea +EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc +EXPORT_SYMBOL vmlinux 0xc2d74ba4 tty_hangup +EXPORT_SYMBOL vmlinux 0xc2da211c pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xc2e370ba kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2e69f7c udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xc313b692 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xc3405960 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xc35e1901 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0xc363abbd lock_page_memcg +EXPORT_SYMBOL vmlinux 0xc368849f nvram_sync +EXPORT_SYMBOL vmlinux 0xc383db3c mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xc3b83bcc pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3cb4c4c reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0xc3d04bfe scsi_register_driver +EXPORT_SYMBOL vmlinux 0xc3d31915 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xc3fcaf05 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xc3fd16cb mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xc3fdda46 from_kgid +EXPORT_SYMBOL vmlinux 0xc4007f14 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xc40995ed netif_rx_ni +EXPORT_SYMBOL vmlinux 0xc4112ab4 inet_sendpage +EXPORT_SYMBOL vmlinux 0xc41f0516 node_states +EXPORT_SYMBOL vmlinux 0xc420980c netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0xc460f150 pci_request_region +EXPORT_SYMBOL vmlinux 0xc46f0b85 seq_escape +EXPORT_SYMBOL vmlinux 0xc47125fb tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xc47957e9 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xc48d6432 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xc4936188 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xc4945168 d_alloc +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4a02907 cdrom_open +EXPORT_SYMBOL vmlinux 0xc4b090bd vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0xc4b5197f dma_set_mask +EXPORT_SYMBOL vmlinux 0xc4b9d73c napi_gro_flush +EXPORT_SYMBOL vmlinux 0xc4c5625b iterate_dir +EXPORT_SYMBOL vmlinux 0xc505f195 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xc521edec netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xc5413a6b of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0xc544013f qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc559dad9 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0xc55de23c percpu_counter_set +EXPORT_SYMBOL vmlinux 0xc5718627 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0xc5877e8d netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5a060d1 vme_irq_handler +EXPORT_SYMBOL vmlinux 0xc5a38d10 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xc5a396fd udplite_table +EXPORT_SYMBOL vmlinux 0xc5a5176f eth_header_parse +EXPORT_SYMBOL vmlinux 0xc5bc590d mmc_retune_pause +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc5ffd855 sk_common_release +EXPORT_SYMBOL vmlinux 0xc608fe3f keyring_alloc +EXPORT_SYMBOL vmlinux 0xc614015d inet_shutdown +EXPORT_SYMBOL vmlinux 0xc6157a85 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xc628be68 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc631c8a8 alloc_fcdev +EXPORT_SYMBOL vmlinux 0xc64a837e mmc_free_host +EXPORT_SYMBOL vmlinux 0xc6520abc csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xc65537d0 memremap +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc6671247 pci_get_class +EXPORT_SYMBOL vmlinux 0xc6693c43 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xc66b7d13 netdev_change_features +EXPORT_SYMBOL vmlinux 0xc677406c skb_queue_purge +EXPORT_SYMBOL vmlinux 0xc6907b34 netdev_printk +EXPORT_SYMBOL vmlinux 0xc6b22c71 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xc6c05b34 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc7114d42 phy_attach +EXPORT_SYMBOL vmlinux 0xc7162619 import_single_range +EXPORT_SYMBOL vmlinux 0xc716a858 ip6_frag_init +EXPORT_SYMBOL vmlinux 0xc71b5890 radix_tree_delete +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc720dc1e inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0xc736134b nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xc74b8f00 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xc74c602f simple_write_begin +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc75bc63d del_random_ready_callback +EXPORT_SYMBOL vmlinux 0xc7702e86 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7898275 flex_array_shrink +EXPORT_SYMBOL vmlinux 0xc795e23e cpu_core_map +EXPORT_SYMBOL vmlinux 0xc79b0262 iget5_locked +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7de6021 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc807bef3 agp_bind_memory +EXPORT_SYMBOL vmlinux 0xc8276a79 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc8571bcb idr_for_each +EXPORT_SYMBOL vmlinux 0xc86021e0 dst_init +EXPORT_SYMBOL vmlinux 0xc861af7a simple_transaction_set +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc87577eb xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b44582 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8bccc87 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xc8c17425 xfrm_state_add +EXPORT_SYMBOL vmlinux 0xc8ea89ce mach_powermac +EXPORT_SYMBOL vmlinux 0xc8ff2746 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc90243c4 mmc_start_req +EXPORT_SYMBOL vmlinux 0xc9028a29 phy_connect +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc925c6fb iterate_fd +EXPORT_SYMBOL vmlinux 0xc925f7d9 bdevname +EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xc9426a17 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc9657f60 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9b8c308 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xc9b99870 simple_fill_super +EXPORT_SYMBOL vmlinux 0xc9c11689 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xc9e4920c decrementer_clockevent +EXPORT_SYMBOL vmlinux 0xc9eb6ed0 eth_gro_complete +EXPORT_SYMBOL vmlinux 0xc9f7c0d5 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xc9f8ba8a devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0xca0bbd87 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xca1f7588 inc_nlink +EXPORT_SYMBOL vmlinux 0xca249664 prepare_creds +EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get +EXPORT_SYMBOL vmlinux 0xca32b2b7 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state +EXPORT_SYMBOL vmlinux 0xca3fc3e4 param_get_byte +EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xca4fd582 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xca771c47 param_array_ops +EXPORT_SYMBOL vmlinux 0xca825895 pmu_suspend +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcaa81db9 pipe_lock +EXPORT_SYMBOL vmlinux 0xcacd272d atomic64_sub_return +EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty +EXPORT_SYMBOL vmlinux 0xcad08e48 mmu_hash_lock +EXPORT_SYMBOL vmlinux 0xcad147d1 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xcad98cfc vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaf5ed24 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb031f4d vfs_fsync +EXPORT_SYMBOL vmlinux 0xcb1ea3a0 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xcb2095b1 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xcb2bf971 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xcb3bbb96 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xcb3c8a7d ___ratelimit +EXPORT_SYMBOL vmlinux 0xcb3eed9d xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xcb4277c2 set_disk_ro +EXPORT_SYMBOL vmlinux 0xcb4a7e8f genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xcb4f492a blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xcb50290b phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0xcb5e44ba gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0xcb7504fe dma_find_channel +EXPORT_SYMBOL vmlinux 0xcb75bd29 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xcb89c3ed __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xcba5f16f dev_get_stats +EXPORT_SYMBOL vmlinux 0xcbbb2816 mmc_request_done +EXPORT_SYMBOL vmlinux 0xcbbd1824 __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbcd9bc3 dquot_quota_off +EXPORT_SYMBOL vmlinux 0xcbce49e0 load_nls_default +EXPORT_SYMBOL vmlinux 0xcbdf9894 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc385bf1 tty_throttle +EXPORT_SYMBOL vmlinux 0xcc409a44 mount_subtree +EXPORT_SYMBOL vmlinux 0xcc4db1a4 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc6254b7 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xcc72d668 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xcc8f65c0 bio_put +EXPORT_SYMBOL vmlinux 0xccb2a919 of_device_unregister +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccd8071b sk_stream_error +EXPORT_SYMBOL vmlinux 0xccfbd6ff filp_open +EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xcd13dc7c ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xcd1c170f inet_gro_receive +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd33fe30 filp_close +EXPORT_SYMBOL vmlinux 0xcd41a1e0 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xcd6844b7 vga_tryget +EXPORT_SYMBOL vmlinux 0xcd8626f4 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xcd8d9810 vm_map_ram +EXPORT_SYMBOL vmlinux 0xcda89fd5 kobject_get +EXPORT_SYMBOL vmlinux 0xcdaf2a82 proto_register +EXPORT_SYMBOL vmlinux 0xcdc36c75 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdfdeb93 simple_lookup +EXPORT_SYMBOL vmlinux 0xce030405 user_revoke +EXPORT_SYMBOL vmlinux 0xce26dbff sock_register +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce409cda pmac_set_early_video_resume +EXPORT_SYMBOL vmlinux 0xce4e07e8 security_d_instantiate +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce65cfb1 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0xce7bfe70 vm_brk +EXPORT_SYMBOL vmlinux 0xce82570d generic_file_llseek +EXPORT_SYMBOL vmlinux 0xce934966 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xce97ffa6 blkdev_get +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceb6c306 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf0c98c0 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xcf6cf9cf ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xcf6d5cc7 register_key_type +EXPORT_SYMBOL vmlinux 0xcf6e9b85 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xcf717a7e gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0xcf90a3aa set_user_nice +EXPORT_SYMBOL vmlinux 0xcf92d6c9 release_firmware +EXPORT_SYMBOL vmlinux 0xcf9b6913 __invalidate_device +EXPORT_SYMBOL vmlinux 0xcfa98fc7 scsi_device_get +EXPORT_SYMBOL vmlinux 0xcfb15714 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xcfbe48c6 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xcfd14b37 misc_register +EXPORT_SYMBOL vmlinux 0xcfd79b2b setattr_copy +EXPORT_SYMBOL vmlinux 0xcfd927df bdget +EXPORT_SYMBOL vmlinux 0xcfdd9dfe blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0xcfe9705f ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xcfecbd0e truncate_setsize +EXPORT_SYMBOL vmlinux 0xd0032c93 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xd0195a01 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xd01c7cfa rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0xd01d5755 dev_change_xdp_fd +EXPORT_SYMBOL vmlinux 0xd01d9c12 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0xd020b88d devm_gpiod_get +EXPORT_SYMBOL vmlinux 0xd0254818 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xd0257cae generic_writepages +EXPORT_SYMBOL vmlinux 0xd027e785 dev_uc_init +EXPORT_SYMBOL vmlinux 0xd03bdeb4 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xd04647ec xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xd048cda0 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xd06dec4d devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a45fa5 pmu_enable_irled +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0aae06a skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xd0bc5000 scsi_add_device +EXPORT_SYMBOL vmlinux 0xd0dada59 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xd0e9e968 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0xd0ec8247 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f0ffb5 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd10042f3 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xd1128326 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xd11368fa lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0xd11a84c7 __napi_schedule +EXPORT_SYMBOL vmlinux 0xd1262886 rtas_data_buf +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd1bd5dda agp_unbind_memory +EXPORT_SYMBOL vmlinux 0xd1bea7ef tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xd1c2c5b6 down_write_killable +EXPORT_SYMBOL vmlinux 0xd1c39d32 __devm_release_region +EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xd1d2cec7 bio_init +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1e3b653 audit_log_task_info +EXPORT_SYMBOL vmlinux 0xd1e3f3c4 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd1f8a7d9 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xd238e8e2 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xd23e1d19 dquot_free_inode +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2525173 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xd25355be kthread_stop +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd256254a nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd26d9b1b cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd27ef2e6 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xd2952b8c pci_iomap_range +EXPORT_SYMBOL vmlinux 0xd2a941d4 sg_init_table +EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class +EXPORT_SYMBOL vmlinux 0xd2c2b185 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xd2c88afa unregister_cdrom +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e9fd36 tty_unthrottle +EXPORT_SYMBOL vmlinux 0xd2fc19bd proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0xd304fe45 dst_release +EXPORT_SYMBOL vmlinux 0xd316882e mmc_get_card +EXPORT_SYMBOL vmlinux 0xd31a4af8 phy_print_status +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd35f7109 genphy_read_status +EXPORT_SYMBOL vmlinux 0xd35f75a1 match_string +EXPORT_SYMBOL vmlinux 0xd3771145 max8925_reg_write +EXPORT_SYMBOL vmlinux 0xd39be59a __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0xd3a212f9 generic_write_end +EXPORT_SYMBOL vmlinux 0xd3b4932a remove_arg_zero +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd403a651 dm_register_target +EXPORT_SYMBOL vmlinux 0xd409383c pmu_request +EXPORT_SYMBOL vmlinux 0xd410f199 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xd433ed7c seq_putc +EXPORT_SYMBOL vmlinux 0xd43c5e04 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm +EXPORT_SYMBOL vmlinux 0xd45e45ca __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xd4647b66 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xd46ba24e touch_atime +EXPORT_SYMBOL vmlinux 0xd4967e6f scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xd4a1d975 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0xd4bc4914 pci_get_device +EXPORT_SYMBOL vmlinux 0xd4d583fa of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xd50ebae9 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0xd5148cd2 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd528cf52 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xd52923fc pagevec_lookup +EXPORT_SYMBOL vmlinux 0xd559b868 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0xd55fa07d __quota_error +EXPORT_SYMBOL vmlinux 0xd5675d06 arp_tbl +EXPORT_SYMBOL vmlinux 0xd569f5f7 seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xd56df8b9 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xd580b35b __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd5ca35c6 inode_init_always +EXPORT_SYMBOL vmlinux 0xd5cd5682 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xd5cff907 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xd5dea512 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xd5e3fdc7 set_cached_acl +EXPORT_SYMBOL vmlinux 0xd5e8444a __div64_32 +EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xd606503d register_sysctl +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd61ee5ff dump_align +EXPORT_SYMBOL vmlinux 0xd627480b strncat +EXPORT_SYMBOL vmlinux 0xd628cfd4 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xd62c5714 replace_mount_options +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd675950b tty_vhangup +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68ca5e4 fscrypt_pullback_bio_page +EXPORT_SYMBOL vmlinux 0xd68f2ba3 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xd69b30e0 atomic64_add_unless +EXPORT_SYMBOL vmlinux 0xd69ba623 nvm_submit_io +EXPORT_SYMBOL vmlinux 0xd69ef97d posix_acl_alloc +EXPORT_SYMBOL vmlinux 0xd6a693a3 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xd6b365ad dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xd6bc7d76 vfs_link +EXPORT_SYMBOL vmlinux 0xd6d2f70e find_lock_entry +EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f5c96b touch_buffer +EXPORT_SYMBOL vmlinux 0xd714f751 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xd7203992 md_finish_reshape +EXPORT_SYMBOL vmlinux 0xd7384390 scsi_host_put +EXPORT_SYMBOL vmlinux 0xd751dc25 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xd75269d0 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd7805a7e skb_copy_bits +EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write +EXPORT_SYMBOL vmlinux 0xd7a398cd jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xd7b015c6 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0xd7b201bd security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xd7b541bf rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xd7b6b5a2 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xd7c508f4 clear_user_page +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7d440ce tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd808bfb3 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xd80ab08f ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xd80c9406 single_open_size +EXPORT_SYMBOL vmlinux 0xd8270a1d scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xd82a9e29 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xd8435cfa serio_open +EXPORT_SYMBOL vmlinux 0xd845cf95 nla_put +EXPORT_SYMBOL vmlinux 0xd84902d0 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0xd84c43a6 lockref_put_return +EXPORT_SYMBOL vmlinux 0xd876f385 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xd879e640 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xd889dd58 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b1e4f8 fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xd8c1cdfb netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e22d39 locks_init_lock +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8e88899 kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0xd8ef75f6 skb_find_text +EXPORT_SYMBOL vmlinux 0xd91abe35 __dst_free +EXPORT_SYMBOL vmlinux 0xd92514ca agp_special_page +EXPORT_SYMBOL vmlinux 0xd936e9a2 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xd93cc2f3 param_get_bool +EXPORT_SYMBOL vmlinux 0xd93dd71d filp_clone_open +EXPORT_SYMBOL vmlinux 0xd9498b22 proc_dointvec +EXPORT_SYMBOL vmlinux 0xd94e0f90 cdev_alloc +EXPORT_SYMBOL vmlinux 0xd966ddc2 __do_once_done +EXPORT_SYMBOL vmlinux 0xd979bb3d flush_hash_entry +EXPORT_SYMBOL vmlinux 0xd97b791a get_cached_acl +EXPORT_SYMBOL vmlinux 0xd9844fb6 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9992307 __scsi_add_device +EXPORT_SYMBOL vmlinux 0xd99f8d6d vlan_vid_add +EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xd9bfc18a of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0xd9cc3758 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9f07adf page_cache_next_hole +EXPORT_SYMBOL vmlinux 0xda33e60c gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0xda36c12a __d_lookup_done +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda680c98 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda819b83 sock_no_poll +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda9e6da0 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xdaa4cbad netlink_set_err +EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages +EXPORT_SYMBOL vmlinux 0xdab02190 __posix_acl_create +EXPORT_SYMBOL vmlinux 0xdab2c324 macio_register_driver +EXPORT_SYMBOL vmlinux 0xdabbc042 up_write +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdac8afcc __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xdae192b8 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xdae20d62 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xdae2b5cc mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xdaedaa8c sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xdafc336c elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xdb30fdba tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xdb3b41ff swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xdb3f07f8 blk_fetch_request +EXPORT_SYMBOL vmlinux 0xdb4d5c2e sk_alloc +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb741384 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb785668 get_agp_version +EXPORT_SYMBOL vmlinux 0xdb7b5e65 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xdb7f4bb2 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xdb8ad668 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xdb97d7f0 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xdba90746 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xdbac1659 of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0xdbbf4e6c simple_nosetlease +EXPORT_SYMBOL vmlinux 0xdbd33240 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xdbde63f0 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xdbe25bd0 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xdbe87f11 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc04ea1f pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xdc0e2889 ppp_input_error +EXPORT_SYMBOL vmlinux 0xdc14be90 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0xdc14de0e fsl_lbc_ctrl_dev +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc26c7d8 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xdc2f6935 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc656438 kern_path_create +EXPORT_SYMBOL vmlinux 0xdc66b396 dst_destroy +EXPORT_SYMBOL vmlinux 0xdc68ef5b __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xdc7d2b21 dev_err +EXPORT_SYMBOL vmlinux 0xdc9498dd down +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcc0784f pm860x_reg_read +EXPORT_SYMBOL vmlinux 0xdcddfcd0 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xdcefb9a5 pmu_resume +EXPORT_SYMBOL vmlinux 0xdcfdc432 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0xdd055a06 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd2695bd sock_edemux +EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd33939b macio_release_resources +EXPORT_SYMBOL vmlinux 0xdd3724f9 nf_log_set +EXPORT_SYMBOL vmlinux 0xdd4e17c6 lock_rename +EXPORT_SYMBOL vmlinux 0xdd52aa45 nvm_put_blk +EXPORT_SYMBOL vmlinux 0xdd58220d tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xdd5ac589 filemap_fault +EXPORT_SYMBOL vmlinux 0xdd656629 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xdd6d5929 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xdd79130f vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xdd836440 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer +EXPORT_SYMBOL vmlinux 0xdda6abbd generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xddadb9cc mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xddb14404 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xdde72514 generic_setxattr +EXPORT_SYMBOL vmlinux 0xdde80290 d_genocide +EXPORT_SYMBOL vmlinux 0xddedd94f read_cache_page +EXPORT_SYMBOL vmlinux 0xddf1521d mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xde2c83be pci_enable_device +EXPORT_SYMBOL vmlinux 0xde44e9dd drop_nlink +EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xde794841 send_sig +EXPORT_SYMBOL vmlinux 0xde871b6b bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdeecf712 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xdef623ec seq_open_private +EXPORT_SYMBOL vmlinux 0xdf0d72e4 dev_mc_flush +EXPORT_SYMBOL vmlinux 0xdf17944f dm_kobject_release +EXPORT_SYMBOL vmlinux 0xdf1e6aa2 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update +EXPORT_SYMBOL vmlinux 0xdf429d31 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf65bd8a set_page_dirty +EXPORT_SYMBOL vmlinux 0xdf796ae2 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf9f0254 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xdfb1a08a blk_init_tags +EXPORT_SYMBOL vmlinux 0xdfb42921 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0xdfb63ca4 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xdfbbbadc xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xdfc7dec8 freeze_bdev +EXPORT_SYMBOL vmlinux 0xdfef63e7 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xdff43ed4 __debugger +EXPORT_SYMBOL vmlinux 0xdff56e64 adb_poll +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe005d299 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0xe006b7d0 flush_old_exec +EXPORT_SYMBOL vmlinux 0xe0129c98 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xe0173011 seq_open +EXPORT_SYMBOL vmlinux 0xe0359411 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xe0375b2f md_done_sync +EXPORT_SYMBOL vmlinux 0xe04c31a8 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe05e05ad elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xe0602a03 kfree_skb_list +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe0786a41 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xe0827ddd ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe094ef39 sg_next +EXPORT_SYMBOL vmlinux 0xe0a37b1e max8998_write_reg +EXPORT_SYMBOL vmlinux 0xe0aeaa20 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b479e9 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xe0e1d435 netdev_info +EXPORT_SYMBOL vmlinux 0xe0e3decd locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xe0f189a2 kernel_accept +EXPORT_SYMBOL vmlinux 0xe0fb383e pci_read_vpd +EXPORT_SYMBOL vmlinux 0xe101718c path_get +EXPORT_SYMBOL vmlinux 0xe1214702 follow_pfn +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe14543d9 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xe15f9c86 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xe165f8ff dcache_dir_close +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe1837046 inet_listen +EXPORT_SYMBOL vmlinux 0xe184041e qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0xe184c789 netif_device_attach +EXPORT_SYMBOL vmlinux 0xe191cf84 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xe197b90e d_delete +EXPORT_SYMBOL vmlinux 0xe19a4350 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xe1b3047c bdev_read_only +EXPORT_SYMBOL vmlinux 0xe1b4fd22 page_address +EXPORT_SYMBOL vmlinux 0xe1cc4424 get_monotonic_coarse64 +EXPORT_SYMBOL vmlinux 0xe1ee37b4 dma_pool_create +EXPORT_SYMBOL vmlinux 0xe1f68c2e abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe206ecf8 vfs_rename +EXPORT_SYMBOL vmlinux 0xe2221243 dquot_resume +EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL vmlinux 0xe24ab564 follow_down +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe279b5a8 default_file_splice_read +EXPORT_SYMBOL vmlinux 0xe2845cdf proc_douintvec +EXPORT_SYMBOL vmlinux 0xe28c3ce0 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xe28cfa50 flush_dcache_page +EXPORT_SYMBOL vmlinux 0xe29a7904 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xe29e13f0 simple_dname +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2b8750b fb_find_mode +EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock +EXPORT_SYMBOL vmlinux 0xe2cb3b8c add_random_ready_callback +EXPORT_SYMBOL vmlinux 0xe2d4acc7 d_find_any_alias +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe2fc83a2 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xe32333ad nvm_dev_factory +EXPORT_SYMBOL vmlinux 0xe32e609f pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xe33465cb sk_mc_loop +EXPORT_SYMBOL vmlinux 0xe33d1ecd security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xe3409246 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xe34b388a grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xe3690fa7 kmem_cache_size +EXPORT_SYMBOL vmlinux 0xe39abce4 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xe3a77196 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3c025e2 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0xe3d49fc9 __bread_gfp +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3e07cc4 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xe40ee149 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xe4196dd6 atomic64_fetch_add +EXPORT_SYMBOL vmlinux 0xe4352a46 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xe47c26e6 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe4930c5c update_region +EXPORT_SYMBOL vmlinux 0xe494a01a radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4fe2328 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe57c539d jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe5a23285 of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0xe5ac8ebd pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xe5b946c8 dec_node_page_state +EXPORT_SYMBOL vmlinux 0xe5c4d57c sock_wake_async +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5d0ec53 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xe5dcb8d9 kthread_bind +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe5eee3f0 macio_dev_get +EXPORT_SYMBOL vmlinux 0xe5fbd070 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0xe61e1577 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xe6206e02 nf_register_hooks +EXPORT_SYMBOL vmlinux 0xe62ed22a mmc_start_bkops +EXPORT_SYMBOL vmlinux 0xe646cae5 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xe6752be9 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xe67d84ed sync_file_create +EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size +EXPORT_SYMBOL vmlinux 0xe6bec90e dcb_setapp +EXPORT_SYMBOL vmlinux 0xe6e79214 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe70d6f6f mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xe7161a05 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xe726be0e sock_wmalloc +EXPORT_SYMBOL vmlinux 0xe73aa0e7 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xe73b893b ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xe73f005b crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xe751ff38 bio_integrity_free +EXPORT_SYMBOL vmlinux 0xe7665469 fb_deferred_io_mmap +EXPORT_SYMBOL vmlinux 0xe7890b39 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0xe790f7b7 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xe79c6bcd tcp_child_process +EXPORT_SYMBOL vmlinux 0xe7a01e85 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xe7a5a5e3 __mutex_init +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7bf317d fsl_lbc_addr +EXPORT_SYMBOL vmlinux 0xe7c87402 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xe7ca71f9 inet6_protos +EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7e4e6ea mdio_driver_register +EXPORT_SYMBOL vmlinux 0xe7eade22 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xe7eb8cf8 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xe7f1adc7 udp_proc_register +EXPORT_SYMBOL vmlinux 0xe7f9e0c3 dentry_open +EXPORT_SYMBOL vmlinux 0xe805395b tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0xe805856d i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xe812cac6 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xe8137b73 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xe817c830 __napi_complete +EXPORT_SYMBOL vmlinux 0xe81a496c __check_sticky +EXPORT_SYMBOL vmlinux 0xe8214a9a pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xe82cc752 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xe8300ba8 mount_pseudo +EXPORT_SYMBOL vmlinux 0xe85194ec of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0xe8754ac0 up_read +EXPORT_SYMBOL vmlinux 0xe878546b __cpu_present_mask +EXPORT_SYMBOL vmlinux 0xe88c9821 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8c5fb81 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xe8c75e3c crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xe8ccf11d pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xe8e7a86b blk_alloc_queue +EXPORT_SYMBOL vmlinux 0xe8ecbf58 bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0xe9103751 mdio_device_remove +EXPORT_SYMBOL vmlinux 0xe914938b tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95bcacc giveup_all +EXPORT_SYMBOL vmlinux 0xe971b137 generic_setlease +EXPORT_SYMBOL vmlinux 0xe9822296 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xe9845541 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xe98eaf4b of_find_node_with_property +EXPORT_SYMBOL vmlinux 0xe9925f6a __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xe99adeba scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0xe9b6b3c8 tty_check_change +EXPORT_SYMBOL vmlinux 0xe9bacb65 get_task_exe_file +EXPORT_SYMBOL vmlinux 0xe9bf940e __breadahead +EXPORT_SYMBOL vmlinux 0xe9c72b39 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xe9e753e2 blk_free_tags +EXPORT_SYMBOL vmlinux 0xe9f1bc7f kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xe9f44c63 nonseekable_open +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea1638b7 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xea1e25dd blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xea2892da xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xea329bdc of_get_next_child +EXPORT_SYMBOL vmlinux 0xea4a0f76 request_firmware +EXPORT_SYMBOL vmlinux 0xea782c75 nvm_end_io +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea8b5e73 sock_alloc +EXPORT_SYMBOL vmlinux 0xeac5e7ec agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0xead4592d km_policy_notify +EXPORT_SYMBOL vmlinux 0xeade21a2 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0xeaf19672 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xeb018f8d key_link +EXPORT_SYMBOL vmlinux 0xeb0395ba qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xeb062ec4 page_get_link +EXPORT_SYMBOL vmlinux 0xeb08e316 phy_suspend +EXPORT_SYMBOL vmlinux 0xeb36069f km_is_alive +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb393f1c xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xeb3d9a71 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xeb507beb dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeb82e928 simple_write_end +EXPORT_SYMBOL vmlinux 0xeb8873ef ps2_end_command +EXPORT_SYMBOL vmlinux 0xeb8d93b5 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xeb9df515 tty_port_open +EXPORT_SYMBOL vmlinux 0xeba2a1f7 rtas_indicator_present +EXPORT_SYMBOL vmlinux 0xebb4c616 agp_generic_enable +EXPORT_SYMBOL vmlinux 0xebc6aa58 uart_resume_port +EXPORT_SYMBOL vmlinux 0xebd18deb sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xebdc0694 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit +EXPORT_SYMBOL vmlinux 0xec1b0470 i2c_transfer +EXPORT_SYMBOL vmlinux 0xec312a1d sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xec5f7913 of_match_node +EXPORT_SYMBOL vmlinux 0xec603e42 atomic64_fetch_and +EXPORT_SYMBOL vmlinux 0xec77c6be phy_attach_direct +EXPORT_SYMBOL vmlinux 0xec7fd6e4 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xec9ddbe2 devm_gpio_request +EXPORT_SYMBOL vmlinux 0xecbb926f xor_altivec_3 +EXPORT_SYMBOL vmlinux 0xecd982a2 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xecdde919 pci_get_slot +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xece9e00d blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0xed129711 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xed305dcd single_open +EXPORT_SYMBOL vmlinux 0xed42601f phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0xed4342c5 seq_vprintf +EXPORT_SYMBOL vmlinux 0xed48c6f6 bdi_destroy +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed6595ea dev_get_iflink +EXPORT_SYMBOL vmlinux 0xed72d5a4 __scm_destroy +EXPORT_SYMBOL vmlinux 0xed80c0f7 kunmap_high +EXPORT_SYMBOL vmlinux 0xed8fce7a __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedba7e20 netdev_warn +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc208ff __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xee045180 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xee05eb2f switch_mmu_context +EXPORT_SYMBOL vmlinux 0xee065285 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xee06c142 __d_drop +EXPORT_SYMBOL vmlinux 0xee13a216 dquot_disable +EXPORT_SYMBOL vmlinux 0xee1ef512 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3496c3 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0xee39aaf5 kill_fasync +EXPORT_SYMBOL vmlinux 0xee4d17b5 skb_dequeue +EXPORT_SYMBOL vmlinux 0xee53f5c0 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xee59412f adb_try_handler_change +EXPORT_SYMBOL vmlinux 0xee831507 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea7a5dd nf_log_unregister +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeafd304 __pagevec_release +EXPORT_SYMBOL vmlinux 0xeece2253 follow_down_one +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeef6085a xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0xef1f5ee0 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0xef22d920 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xef6a948d ipv4_specific +EXPORT_SYMBOL vmlinux 0xef9e0ef0 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0xefa1ed00 dcache_dir_open +EXPORT_SYMBOL vmlinux 0xefa7efbb default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xefb207d3 padata_stop +EXPORT_SYMBOL vmlinux 0xefc6195d posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xefcac7b8 of_iomap +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefeed370 install_exec_creds +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0247bfb bioset_free +EXPORT_SYMBOL vmlinux 0xf0248f13 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xf0251359 dev_trans_start +EXPORT_SYMBOL vmlinux 0xf029e165 __serio_register_port +EXPORT_SYMBOL vmlinux 0xf0382516 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xf03d4974 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xf051855e nf_log_unset +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf0827aea tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xf0877754 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf098a927 mmc_detect_change +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0bc10a4 vme_bus_num +EXPORT_SYMBOL vmlinux 0xf0ce6ace generic_block_bmap +EXPORT_SYMBOL vmlinux 0xf0cf656c inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xf0e08c2e generic_show_options +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf1108d83 generic_readlink +EXPORT_SYMBOL vmlinux 0xf112b9a9 console_start +EXPORT_SYMBOL vmlinux 0xf115f175 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible +EXPORT_SYMBOL vmlinux 0xf120872a dql_completed +EXPORT_SYMBOL vmlinux 0xf1349228 swake_up_locked +EXPORT_SYMBOL vmlinux 0xf1365085 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf14bcb16 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xf14e3f9d param_get_charp +EXPORT_SYMBOL vmlinux 0xf152bf83 fscrypt_inherit_context +EXPORT_SYMBOL vmlinux 0xf154e59d truncate_pagecache +EXPORT_SYMBOL vmlinux 0xf1597db6 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xf15fd7ec agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xf17466ef netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0xf1770563 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xf17b0388 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xf18305d2 ip_options_compile +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1978baa file_path +EXPORT_SYMBOL vmlinux 0xf1a3c873 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xf1c61e69 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0xf1d4626c inet_frags_init +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1de756c pcie_get_mps +EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf217924e inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xf22881e8 lg_local_lock +EXPORT_SYMBOL vmlinux 0xf2345f2f sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xf239a0f3 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf262c1cf nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xf2649692 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0xf27563cb irq_stat +EXPORT_SYMBOL vmlinux 0xf278488b dentry_update_name_case +EXPORT_SYMBOL vmlinux 0xf29adf3c __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xf2bd2735 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xf2c3a2ed d_alloc_name +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2c87c5b ilookup5 +EXPORT_SYMBOL vmlinux 0xf2de8b73 tty_port_hangup +EXPORT_SYMBOL vmlinux 0xf2e1f114 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xf2e91c2e mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0xf309ce7c setup_new_exec +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf322a206 bit_waitqueue +EXPORT_SYMBOL vmlinux 0xf327bffa kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf33e9ed4 udp_sendmsg +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf37ea199 vfs_rmdir +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf39dbae0 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xf3a4620b dup_iter +EXPORT_SYMBOL vmlinux 0xf3a4e587 deactivate_super +EXPORT_SYMBOL vmlinux 0xf3a69285 request_resource +EXPORT_SYMBOL vmlinux 0xf3b3f061 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xf3de9c4b sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3f0b9dc jbd2_journal_inode_add_wait +EXPORT_SYMBOL vmlinux 0xf3f67596 alloc_fddidev +EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xf4180e12 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xf43aece3 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xf441877f fence_array_create +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf44325ba serio_rescan +EXPORT_SYMBOL vmlinux 0xf4449388 timer_interrupt +EXPORT_SYMBOL vmlinux 0xf447dc76 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xf44f6835 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xf4525668 napi_complete_done +EXPORT_SYMBOL vmlinux 0xf45766c0 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xf45bf049 __register_binfmt +EXPORT_SYMBOL vmlinux 0xf472017a swake_up_all +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4768125 netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0xf478e117 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0xf47cf364 fscrypt_restore_control_page +EXPORT_SYMBOL vmlinux 0xf4b41bc9 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4cbae8a secpath_dup +EXPORT_SYMBOL vmlinux 0xf4cfe268 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xf4db3b09 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf5222143 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0xf52321e0 atomic64_sub +EXPORT_SYMBOL vmlinux 0xf53a698f xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf543285d sock_create_kern +EXPORT_SYMBOL vmlinux 0xf54bf697 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xf54c51a2 dma_pool_free +EXPORT_SYMBOL vmlinux 0xf55619d9 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0xf56d7171 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xf56f3abf d_make_root +EXPORT_SYMBOL vmlinux 0xf58095ca devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xf59df1b9 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io +EXPORT_SYMBOL vmlinux 0xf5af7d95 unlock_page +EXPORT_SYMBOL vmlinux 0xf5bfe7e9 notify_change +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5c3dedb down_write +EXPORT_SYMBOL vmlinux 0xf5cb28bd dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xf5cf1ddb seq_hex_dump +EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister +EXPORT_SYMBOL vmlinux 0xf5ea101c tcp_prequeue +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5ecb2bc kdb_current_task +EXPORT_SYMBOL vmlinux 0xf5fe0236 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0xf60513e1 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xf6108828 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xf620893d bio_copy_data +EXPORT_SYMBOL vmlinux 0xf625a0bc simple_transaction_read +EXPORT_SYMBOL vmlinux 0xf640bb40 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0xf64ac299 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0xf64d0e82 dev_printk +EXPORT_SYMBOL vmlinux 0xf65313c0 atomic64_xor_return +EXPORT_SYMBOL vmlinux 0xf65c489a do_splice_direct +EXPORT_SYMBOL vmlinux 0xf65e0e7f ppc_md +EXPORT_SYMBOL vmlinux 0xf663c11d ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xf66f5a64 register_md_personality +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf6789a40 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf69143b0 __register_nls +EXPORT_SYMBOL vmlinux 0xf6b641ad unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xf6c5bd69 get_user_pages +EXPORT_SYMBOL vmlinux 0xf6d146fa padata_do_parallel +EXPORT_SYMBOL vmlinux 0xf6d8074b of_device_alloc +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf70384d7 __debugger_sstep +EXPORT_SYMBOL vmlinux 0xf71521ba atomic64_add_return +EXPORT_SYMBOL vmlinux 0xf715b49b generic_ro_fops +EXPORT_SYMBOL vmlinux 0xf7189252 proc_mkdir +EXPORT_SYMBOL vmlinux 0xf748472c flush_delayed_work +EXPORT_SYMBOL vmlinux 0xf7486cdd __bio_clone_fast +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf7634027 mdio_device_register +EXPORT_SYMBOL vmlinux 0xf763c4bf input_register_handle +EXPORT_SYMBOL vmlinux 0xf764ea28 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xf77ba41c ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xf78c8200 finish_open +EXPORT_SYMBOL vmlinux 0xf794af78 dev_emerg +EXPORT_SYMBOL vmlinux 0xf7a28914 neigh_seq_start +EXPORT_SYMBOL vmlinux 0xf7d1a90a blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xf7d279cc vme_slot_num +EXPORT_SYMBOL vmlinux 0xf7d5478c tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xf80e95af inet6_bind +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf81a3394 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82d22a7 of_get_mac_address +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf840ee99 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xf84d8c7d textsearch_unregister +EXPORT_SYMBOL vmlinux 0xf859163c pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xf87bfe4e simple_rename +EXPORT_SYMBOL vmlinux 0xf8886a03 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xf89c1f61 qdisc_destroy +EXPORT_SYMBOL vmlinux 0xf8a72d35 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xf8ac1468 __sb_end_write +EXPORT_SYMBOL vmlinux 0xf8c4ef0a fput +EXPORT_SYMBOL vmlinux 0xf8c513f9 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xf8d2a069 jbd2_journal_inode_add_write +EXPORT_SYMBOL vmlinux 0xf8dceda2 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xf8eae88e agp_backend_release +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf90e5a2a __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xf912af58 uart_match_port +EXPORT_SYMBOL vmlinux 0xf932e69d init_buffer +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf93ab77b try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xf991ef73 vm_node_stat +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9af50b2 tcp_init_sock +EXPORT_SYMBOL vmlinux 0xf9b77589 tcp_prot +EXPORT_SYMBOL vmlinux 0xf9cba240 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xf9d32695 override_creds +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xf9f6fef5 __module_get +EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0xf9fb5f38 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xfa07bb85 pci_match_id +EXPORT_SYMBOL vmlinux 0xfa090d79 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xfa0f18e0 bd_set_size +EXPORT_SYMBOL vmlinux 0xfa1d5361 ps2_drain +EXPORT_SYMBOL vmlinux 0xfa40c743 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xfa42adae iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa5769a0 block_truncate_page +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5bcf35 mod_timer +EXPORT_SYMBOL vmlinux 0xfa62f381 tty_port_destroy +EXPORT_SYMBOL vmlinux 0xfac7c60a __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfac99d43 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfad0e0ae release_sock +EXPORT_SYMBOL vmlinux 0xfad17976 scsi_remove_target +EXPORT_SYMBOL vmlinux 0xfadb5750 pmu_unlock +EXPORT_SYMBOL vmlinux 0xfae69a92 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xfaf124a8 seq_dentry +EXPORT_SYMBOL vmlinux 0xfb086330 dquot_file_open +EXPORT_SYMBOL vmlinux 0xfb202fc9 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xfb36c7fa __pci_enable_wake +EXPORT_SYMBOL vmlinux 0xfb403585 file_update_time +EXPORT_SYMBOL vmlinux 0xfb41dd3b skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xfb4ed643 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xfb4f33a0 dev_load +EXPORT_SYMBOL vmlinux 0xfb61254f pci_domain_nr +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb6b537b skb_unlink +EXPORT_SYMBOL vmlinux 0xfb7900d6 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xfb80a821 keyring_search +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfb9896c7 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbb22cd8 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xfbbb4ee3 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbd59d65 mutex_trylock +EXPORT_SYMBOL vmlinux 0xfbdf99bc of_platform_device_create +EXPORT_SYMBOL vmlinux 0xfbee3482 netif_device_detach +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc174504 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xfc1a0cd4 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xfc1d8fcc skb_pad +EXPORT_SYMBOL vmlinux 0xfc2188ee blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xfc2dc477 check_disk_change +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node +EXPORT_SYMBOL vmlinux 0xfc3da0cb ping_prot +EXPORT_SYMBOL vmlinux 0xfc489605 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xfc4ff8b3 inode_set_flags +EXPORT_SYMBOL vmlinux 0xfc57b815 init_net +EXPORT_SYMBOL vmlinux 0xfc6207fc mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xfc68d825 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xfc9adcac inode_permission +EXPORT_SYMBOL vmlinux 0xfca31c79 genphy_config_init +EXPORT_SYMBOL vmlinux 0xfcb42c34 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xfcc25737 dev_notice +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfccddf40 __block_write_begin +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfce6f9d0 elv_rb_add +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf84a93 atomic64_xor +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd008b1a lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0xfd0c5038 adb_unregister +EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xfd33ffe2 skb_clone +EXPORT_SYMBOL vmlinux 0xfd3cb2c0 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0xfd4e21e6 fscrypt_d_ops +EXPORT_SYMBOL vmlinux 0xfd7795e9 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0xfd887900 phy_device_create +EXPORT_SYMBOL vmlinux 0xfd928e4f iov_iter_npages +EXPORT_SYMBOL vmlinux 0xfd939018 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfd9bc202 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xfda1020e __getblk_gfp +EXPORT_SYMBOL vmlinux 0xfda1cca2 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0xfdae9f53 simple_statfs +EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdbccb05 irq_set_chip +EXPORT_SYMBOL vmlinux 0xfdbefaf1 gen_pool_create +EXPORT_SYMBOL vmlinux 0xfdc907cc skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xfdd53080 nvm_submit_ppa_list +EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfdfcdd5f __csum_partial +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe19dc34 empty_aops +EXPORT_SYMBOL vmlinux 0xfe45a837 pcim_iounmap +EXPORT_SYMBOL vmlinux 0xfe46b61c xfrm_input +EXPORT_SYMBOL vmlinux 0xfe4cd071 blkdev_put +EXPORT_SYMBOL vmlinux 0xfe4daee7 mdiobus_read +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe80cae1 uuid_be_to_bin +EXPORT_SYMBOL vmlinux 0xfe8c2f96 input_grab_device +EXPORT_SYMBOL vmlinux 0xfe904beb mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xfe9869cb ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0xfea10b1c skb_push +EXPORT_SYMBOL vmlinux 0xfea8e5e8 clone_cred +EXPORT_SYMBOL vmlinux 0xfeb71edc cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xff1754fc down_read +EXPORT_SYMBOL vmlinux 0xff1765c7 rtas_call +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff1f85ca sget_userns +EXPORT_SYMBOL vmlinux 0xff37eabe iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6dea25 smp_hw_index +EXPORT_SYMBOL vmlinux 0xff76b8cd phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffb76b7f fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0xffc1b918 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffdb82bc sg_free_table +EXPORT_SYMBOL vmlinux 0xffe33cd2 tso_count_descs +EXPORT_SYMBOL vmlinux 0xffe690fd udp_table +EXPORT_SYMBOL_GPL crypto/af_alg 0x3366e6c2 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x3448f21d af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x35f3829c af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x3a63f784 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x646ecb80 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x937fdc68 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x968daa78 af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0xa5b12f73 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xae11fbd4 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xf4ad6e1d af_alg_release +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xf0f4315f async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x298e6a45 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xe3ad466f async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x011adac0 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x26098250 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x45df7ce5 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x5ed66bcb async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xad7af072 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd7fd5acd async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xd5899ec7 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xeaf22947 async_xor +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xf837e7cc blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x0318b117 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dae800e cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 +EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x4b6aa1f4 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xdb464ab1 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x3f4935dc cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x4c516896 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x4c7cd7fd cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x5559f1db cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x5b1fd6e6 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x69a39674 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x6b34b81a cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x7973182a cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x7e8ead4b cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x9587b4d3 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xba32128e cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xe88f8c8d cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xfc61146c cryptd_ablkcipher_queued +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey +EXPORT_SYMBOL_GPL crypto/dh_generic 0x9edeb49b crypto_dh_decode_key +EXPORT_SYMBOL_GPL crypto/dh_generic 0xa9c31fb3 crypto_dh_key_len +EXPORT_SYMBOL_GPL crypto/dh_generic 0xb25efd9f crypto_dh_encode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x597307c5 crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/lrw 0x09afd024 lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x55403ee0 mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x691b3861 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x86db3d5b mcryptd_ahash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0xfbc425b4 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x82ad34ed crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x862ddb1c crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xc557b9d0 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xe6023976 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x9664d6e0 serpent_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xa1a81e31 twofish_setkey +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0affb7ee ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0ce7540e ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x26126905 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2987dabc ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3b4c99b8 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4049b037 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x444f76cb ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4cff7e49 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x50443a01 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x724422fa ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9cbd753f ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xad94bffa ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb7f60852 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc05e8922 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc12680a3 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc87b0b68 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xccfd4dd1 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcf396b0c ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd1d63bd6 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd6689c34 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xef7d98eb ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf6a0c759 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf767286c ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2d13c142 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3bc49013 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x578c5894 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5b428f05 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x72d3e2c9 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8b636fd1 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9d29129c ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9ece6572 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb5776bfe ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xbd0c1cae ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc0ecf34b ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc625fdd8 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf3e09605 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x42727d69 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x4812bd32 sis_info133_for_sata +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-spmi 0x276e3ce0 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4cb6dcb4 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xabd16b07 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xf8f488ee __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x075283f6 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x09743943 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1db74fb7 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x23e000f1 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x35d0940b bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3a3ab609 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x408e1e0c bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x486f72de __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4a1ba83a bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5260d670 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x54c991c2 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x68c52e30 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x68e92ba4 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x78c035e0 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x95d56a53 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9984e360 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9e9f71c4 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa43aa09e bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa5d985c7 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaa0b6cbe bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb07c12c6 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb47ec1a5 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbe36afe1 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd9748f88 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x39d027d6 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x45b5a1b3 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7288c1bd btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd02acad1 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xdd6bb0ae btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xffe9219a btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0c4fe028 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x13c62ff2 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1b505a3a btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1bbc20c1 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2073634a btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4ac484e6 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5e591841 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x88e9f48c btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8faea44c btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xaaaed5f3 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbe1dbe81 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe6c5b2f7 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf81d0d29 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfe972291 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x04eacafb btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0c23786f btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x18314384 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1db0992a btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x41913fe1 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x811fe8b0 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8a6c6d7c btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x94531a95 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa8fe8a36 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xcbe8d98c btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfae1e285 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x6d1f9068 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xb35826e0 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xb8abc81b btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xe518d5df h4_recv_buf +EXPORT_SYMBOL_GPL drivers/char/tpm/tpm_tis_core 0x133172d8 tpm_tis_remove +EXPORT_SYMBOL_GPL drivers/char/tpm/tpm_tis_core 0x361fb9de tpm_tis_core_init +EXPORT_SYMBOL_GPL drivers/char/tpm/tpm_tis_core 0x871034b0 tpm_tis_resume +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x5936bd16 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xcc2e62fe dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe44bc066 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf0e5e3c2 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xfae4e508 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x0e0e5e1f hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x753d735e hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x1b21d219 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x685f38f3 vchan_tx_desc_free +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x88c5597d vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x99cb547e vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xd7729929 vchan_init +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x004285a6 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x02656f1f find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0971e810 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0ca8d620 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1bfedb50 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x20d84637 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2301893f edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2ba4acef edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x311d23b0 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x43cacf8c edac_stop_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4e0b8973 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x59266175 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x70a4e069 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7ca43794 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7f995a0f edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x97a5d7ad edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x99cbc11d edac_mod_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xaf14322c edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xba50329f edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbf97afde edac_queue_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd090ff7c edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd699544e edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe23fa263 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf231da3e edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf8279485 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf854072a edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x732957e6 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x803c9bd1 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8f60b005 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc1fb6761 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd3ced1bb fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf016f2c6 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xb29b8520 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x1cb94ac5 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x6425d67a __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x00af8d7e drm_gem_cma_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0877ec3d drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x271450a6 drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2aa6a626 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x37789d89 drm_gem_cma_prime_vunmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x38372d71 drm_gem_cma_prime_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4122cd5e drm_gem_cma_describe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4fc33ad8 drm_gem_cma_prime_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5360fa2f drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x64b1caab drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8528a672 drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x86e35bf8 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa0f8c095 drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xadebc4e7 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbb835ef1 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xce075f38 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd1d4dce2 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdc7c849b drm_gem_cma_prime_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xec8650d7 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf107acac drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0cdc288e drm_fb_cma_debugfs_show +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1148b623 drm_fbdev_cma_fini +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5a950ac8 drm_fb_cma_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xac212276 drm_fbdev_cma_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb2c912af drm_fbdev_cma_hotplug_event +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc0787761 drm_fb_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcbae4dc2 drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcc337fd5 drm_fbdev_cma_restore_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe3479a3f drm_fbdev_cma_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x046892ca ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xaaeebf65 ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xf7bccd43 ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/hid/hid 0x01da61ee hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x03631343 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x150eb6be hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x15404392 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1cf0f35a hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1e98c0d6 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2f66bd47 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x32c5e3bc hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4c7505bc hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x581715d9 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5cc7b54c hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5e3d0d73 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x64f0af9c hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x685b14f0 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x68caa1d1 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6bb46b4d hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x736b4171 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7e637fc5 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x88ce76e8 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x94c20031 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x96ea7aa5 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaf970256 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb4b60b66 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc35980ed __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc52ea081 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd2444f1f hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd2a4f2c6 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd61e8cc2 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd84247d0 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd89c1430 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd8fe71b3 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd95e574a hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdf88fc49 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe24165bc hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe91d98da hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfe8dc289 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xb3637609 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x124ef89a roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x509fea25 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x75ee01ab roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x8970a375 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x9ba73b92 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xdc7bd136 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x227cdb9f sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x241ac5fc sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x52d2ea44 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x63429bc1 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9e650479 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd58295cb sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xdc1e5c81 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf0cc0012 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf9488056 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x18fa173d hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x03960122 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x148ca48c hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2d7b292d hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x326f988c hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x37b6fe65 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3be46a47 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3ee315aa hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6f3389be hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x74ac7e72 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x758dae2b hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x997a914a hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb1fc2bb1 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc4df8407 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc94707bb hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd6620e5e hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe757aa2f hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf3d96af7 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf3ddcbff hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x41e4f92b adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xa95d71c6 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xcc15f3ad adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x096ac7e0 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x111dc971 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1651692e pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2a6266d2 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x657a09f6 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6c2dbb1c pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6e6a3455 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x71e8867a pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8109a70b pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8a8702ea pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x96dd2c9d pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa2b40d3a pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa4b323ca pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc8dc6468 pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xed82b3ba pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2499c69c intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x405714c0 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9098e7e2 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xbdbfd19e intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xbfb3fbc4 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf541201e intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf9187f78 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8f8b821f stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa2aa2ddc stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc804435b stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xcdea3a70 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf91ce1e3 stm_source_write +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x06092e53 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x6146c62f i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x93ed8b54 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xacac1c16 i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xfb119a33 i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x2d15b00c i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x77459165 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xaae6c204 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xac36f902 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x432e2d61 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x50c80263 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x95c52949 i2c_setup_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xa43715bd i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x29e6f03a bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x3d70d06c bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x46094e88 bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xca970b82 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x22b02a2c mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x530bb8c1 mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xf8829b19 mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x024a338a ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x32f091c8 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x42d7b7c3 ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x442dff37 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5c1c0726 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x635d3e2f ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8beb05d8 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa917cc6e ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xbeb25fbc ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x1028601d 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 0x91addae0 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xb0bee959 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xbaffee72 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x513a5ab1 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xb10336c9 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xc5d52b3b bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0c58eab2 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3ed42e46 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x513a7ae2 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x67f7173c adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x83450ad9 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x88a36d65 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8b376092 adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8f8b3543 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9625669c adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xef4ea02f adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf425e73f adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xfcc7ec25 adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x85d59522 bmi160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x94a493af bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x00d8b992 inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x05d286f3 inv_mpu_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x9cd75dab inv_mpu6050_set_power_itg +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xab3ddbf4 inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x01f211ce devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0fd9ed60 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1616106b devm_iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1c7ca047 devm_iio_trigger_alloc +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 0x273904b0 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x28528ccd iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3c8bd382 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x463034f5 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x476bb124 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x496fc6cf iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4a8579a4 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4bc59e79 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4ccb2aaf iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x52f96093 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x533605c6 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x57df15e8 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x66cea4e4 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6ace8735 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x725e5dfc iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7361c586 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x73a29422 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7951abbc iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7aac8208 devm_iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7c0f2b65 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x87d84256 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8972fa89 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa826fe37 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc454726e iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc73b8ae1 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd1f288d2 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd60e4722 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd9516efe iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd99f527a iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xda217559 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeda4c738 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf56005c9 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf6c2d021 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfce6842b devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0xc5f6fbd5 mpl115_probe +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/sw/rxe/rdma_rxe 0x9eaa6f4c rxe_dev_put +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xe131c5a6 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x2c2a26fe matrix_keypad_parse_of_params +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x050b3233 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 0x13302e5e rmi_get_register_desc_item +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2528d9c7 rmi_read_register_desc +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x27f199ee rmi_register_desc_calc_size +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3abb62f7 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3addc6e3 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4c174065 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x610cb21a rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x612a772b rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6405429d rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7059825a rmi_register_desc_calc_reg_offset +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8c4c4459 rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9176576f rmi_process_interrupt_requests +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9d04f990 rmi_2d_sensor_set_input_params +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa5d3cbb9 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc221ae94 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc9bdc91c rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd85598dc rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf2305046 rmi_read_pdt_entry +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf5ee0afa rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x2b07be86 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x347a644a cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x774dd741 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x4ace2b65 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xf5148635 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x295d7c67 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x5aa427c6 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x0bcdcf09 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x538ae36b tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x7df81424 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xc6b2144b tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x031657bb wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0369dddb wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x23ada5f0 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2491199b wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3bae2130 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4499bd1f wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x450369cc wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5927a045 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5aff8b55 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x958da0db wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xad3d07cd wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb52c111d wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x29a0dc6f ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3fa72728 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x790ee990 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7d9b45ed ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x81768fbc ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8d535be2 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa04109bd ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb3dccde7 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfbb9370a ipack_put_device +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0527abff gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x12b8065e gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x18b3ca3b gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2f78c6fb gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3bc47919 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3c864566 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4408a5e4 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x45249ff7 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4687f20d gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x69698795 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x81ca4fc5 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9120ac9a gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x963db8e7 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x98a8f8f3 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc94e2da3 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xee5cc5d5 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf806b1a5 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x04b10b1d led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x0b207e78 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x48d2d8a2 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x5fea74b0 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9324dbe4 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa78ddf89 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0808ec6b lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1e7b7a53 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3b5bf21d lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x455d93c1 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7f263128 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa00f5518 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb1459fb4 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb6ec3b38 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc29c93c0 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcfea1591 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdc66cd15 lp55xx_register_leds +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 0x0b51bf67 wf_put_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x47d9d0fd wf_get_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x5089e85e wf_unregister_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x9fdd8624 wf_unregister_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xa39b3d91 wf_put_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xe739b72d wf_get_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xf3ed45d8 wf_register_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xf6b3e7dd wf_register_sensor +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x026bc1ff chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x04664eca mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x26db7591 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2f93a84d mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x35401d1e mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x613e6377 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x62d591c5 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7d85d86a mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x953b46ff mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9ced1f46 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9e6a0883 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa58d7637 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xdcba53b0 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xfaff050f mcb_get_irq +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x02ce290c __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17eac0f8 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a9ab848 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2c437ee8 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x47eb5d3c __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4c335f55 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ef50c7b __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ba7ca35 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x652a0434 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x69302482 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x722e42af __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x73d3c8c3 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x76b62b5b __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7a166f35 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x83976f6a __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8d6b9077 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8f176e80 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x91000c8f __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d57059c __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa09ec603 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xade292e7 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xadeb7c0b __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6d9add1 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc7ec4586 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce62b302 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd1dc5463 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd20bb2e0 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd2b0cbc6 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd539a89c __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef63fd59 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf55d5c1c __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x04a41b53 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0e442ee2 dm_cell_error +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 0x3c2e96d7 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x432d6940 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 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7837506e dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x881c4b91 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb4e28c6f dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb620e7a3 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 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd29b8cd9 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 0x22163b69 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3909d3a8 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x5d7a7bdb dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +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 0x9b2b253a dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new +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-cache 0x6263b473 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7d950e37 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x832e00d8 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x83ebc425 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc7d719cf dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xeac50030 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xec4dafda dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x89c7b0a0 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xe904266f 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 0x09472122 dm_rh_dec +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 0x49380614 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6f12a82d 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 0x86e869ba dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa52bcec4 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 0xa8813ad6 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc8f41786 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc0ae85c dm_rh_delay +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 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x150c85ce dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum +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 0x32b5f546 dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x33c03da6 dm_sm_disk_open +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 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x619701dc dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk +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 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit +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 0x832bf228 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x85257ded dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify +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 0x966a8838 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock +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 0xa2507774 dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbcfdc290 dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbe0497aa dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xead1e727 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0x00096a0f cec_set_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0x4961a844 cec_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0xbff6533d cec_phys_addr_validate +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0xd2f2eac1 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2dad983c saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2f7d5c96 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4655b4b6 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x55bd93f3 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x65742c8b saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x66ac7933 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9bb5442e saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa1f17209 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe577c063 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe8418c09 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x4f541a2d saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa21a38f6 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xbde02280 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xc4e4e7ab saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd92c9b77 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe5e95e30 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xef16e9bc saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x047d9ae7 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1265d553 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x13e0e144 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2d29c7ce sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x338eccf3 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34c1c9b2 smscore_register_client +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 0x5b1b99af smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6bf17d0f sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x75844775 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7840316f smscore_start_device +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 0x94274496 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x952a45ec smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbd64ded3 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbfe25f9d sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd6e62dc3 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xec7b115d sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf90b1c94 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x0756995d tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x0b63430e tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x1c236f52 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x395504e9 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4cf9e178 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x5c15f12d tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6da054cc tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7527c0ad tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x89685ab4 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x8deb2d91 tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x9e9e5267 tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xbbf641fb tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe01d21d2 tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf26d0c08 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x775c031d as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xc52aeadc cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x7e050de3 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x01928e03 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x02371ce9 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x096eb1ca media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x1276c787 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/media 0x17fb3c6e __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x1d8b3d2b media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x26c83c16 media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x26cbae23 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/media 0x313bbf4f __media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x343b7d7f media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0x3d7a771a media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x450f97ad media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/media 0x4f990c5c media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x5248e7d4 media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0x5d443857 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/media 0x728e65c7 media_device_init +EXPORT_SYMBOL_GPL drivers/media/media 0x7765fa8b media_entity_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x7e09409f media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x892222cc __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0x8ba42d5e media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0x955f4178 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x96c43be8 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/media 0x99658130 media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0x99c3cee3 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x9dd91cb1 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0xa2948eff __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xae067510 __media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0xaeb84278 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/media 0xc0c70d64 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/media 0xc78dc972 media_entity_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/media 0xca86438c media_device_find_devres +EXPORT_SYMBOL_GPL drivers/media/media 0xcb2ea18f media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/media 0xd6b7aa7e media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/media 0xdbedd02f media_device_get_devres +EXPORT_SYMBOL_GPL drivers/media/media 0xdc581289 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/media 0xdcb6461d media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/media 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xf7c6ea3d media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0xff4e9b51 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xff8648de media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xd95e3c56 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x11fee944 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2772bb89 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3b2af976 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3d917505 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5063ec87 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x619bea09 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x64a51727 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6e8311fa mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x853901ff mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x92f9a95a mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x975a5e98 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9d7c5845 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa39ca538 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb4747a4f mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbce45d67 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc02ff811 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc72af186 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd4805395 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe6e8ad67 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x211456ec saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x27f7e2fb saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x327d5706 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x32b35e39 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3e5bc079 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x504b1cfe saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x63fc7caf saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6fe6fbd1 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8c930819 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbba479f3 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc49fd2ee saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcdb29778 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdbaabc1b saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdbd3ffc4 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe7998741 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xea5bdf3a saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf0e1dbab saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf6b8f79e saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xffb340fc saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x255b3020 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4994dae0 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4bd55cbd ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x537a87e5 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x657c5853 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xab45d1fc ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd2594fec ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x10730081 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x2cd63fe3 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x47885997 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x67172ad0 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x9f430643 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xaf387c06 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb14bee93 xvip_enum_mbus_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 0x9521d2f5 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x697acedb radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xf8ab1ca6 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0232af9d ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x08c3a525 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0a97aeea rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0cc678e7 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x237988c3 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x29ef3278 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2e1eb549 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3d16d820 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x76c674ac ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7b356dbc ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7b8a1230 rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x956023bf rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9a477afb rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xafaf71cb rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb9c6654a rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc0558688 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd448f56f rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdbf56ca5 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe550f43c rc_free_device +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x94f98637 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x9b07b7e3 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xc463cadc mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xdd65c8ee r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x9bb7403b tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x92f7ae55 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x3c6e2c37 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x896a3854 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x55c43567 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x27e1eb8c tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xae79c3af tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x4e782ecd tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xf7879e73 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x433c8c79 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x074542da cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x08e3c603 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x11a61d49 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2b2c369f is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x34ec5a84 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x79f8a5a4 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7a99109d cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7dcd7ed3 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8109c092 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8a4916d6 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8f5fda67 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9ee4ddb8 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa1c11126 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa6d47fc6 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xab0d2f6b cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xae692327 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb70e5a4f cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf5ced746 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf754dfa3 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf763fc57 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x91b000a7 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x66f87425 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0f0585b7 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x170b0a8e em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3dbbf03a em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3fa3ea79 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4031cc40 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x41817014 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x46fee688 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x48b96296 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8004cd5c em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8a96574f em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9c787b71 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa73c8df4 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xae94a7c3 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbd777146 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc3bf7ed8 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd64366c5 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd6f1038c em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdb8fca41 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfdedce92 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x41cffcb1 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x4ec9db6f tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xc17175f0 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xccce1807 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x2c94fd59 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x341dee74 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x6b799187 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x8772c777 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xd04884c0 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xd717b82d v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x363ad524 v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x4841c798 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x4df041d3 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0b6bd490 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0b9b0aaa v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x19a7de0d v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x233ec4b3 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x290a6f5a v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2984a148 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2b9fb4dc v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5e63a16d v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x65c378d0 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7943ec72 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7c62e73c v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7cd3676c v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7f122db9 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8966a14b v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x96f0efdb v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9bfd269d v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9ca63250 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa4dd2bd6 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa762eb06 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa875261b v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa91ca83d v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xab9172eb v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb5f07ea2 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc2b6fa7c v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc9be393d v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcd0a07dc v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfb1cff3c v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x00f526bb videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x15b1325c videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1b43ce6f videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1ca4ae7a videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x218a05b0 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3ac6298c videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4766c1d5 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x549946b2 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x593c338c videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5ab30983 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6416474a __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6e804792 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x755594c0 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8328d915 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8ed8a46f videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x999914a9 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa5e3134e videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xab6dcd62 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcd34b2bc videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd2e7ed5a videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd4813be7 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd827314e videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe83e73b3 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe94deb3a videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x0237200d videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x0b985ed7 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x2f2d0b97 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 0xb5d085ae videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x1a402ee1 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x3dff473c videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xff6b80a0 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x11839190 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x12c03bdc vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x197810f6 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1fef6022 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x21481659 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3716b344 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x37b50167 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4871819d vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x513c0eba vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6034f0a7 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x61f2de39 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x635657d2 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x643f898c vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7f12d1e9 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7f29a1f0 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x95aea890 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x96d91853 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa003181e vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xaf7d8669 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xccdbe72b vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xdc8c80e0 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe6e911c3 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xeb332227 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x335e5681 vb2_dma_contig_clear_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x3cdd6fe6 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xcddb861c vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd5cac60f vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x153e7f01 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x11a88283 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2084695b _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x36d88943 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x462d94ce vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6519724e vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6bf84f4a vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6ea82511 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7552f863 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x78d3da1f vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x839e55b1 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x848d5320 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9154ab57 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9204c3eb vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x92cfc7d4 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x94a061e6 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9af2aa61 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9b67264f vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9c75f92e vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa488c2d1 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa4c4d70b vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa8018605 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd71da235 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdeba57f0 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe291f1d2 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xeead8807 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf616662c vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfdad46bd vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfddb3f7d vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0xe9b7ad6a vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x038f5f05 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x060d61d6 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x065b2bcb v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x09639208 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x220c2a3a v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x30b0f8b0 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x373b3af5 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x38977f0f __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x38a35588 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3a0d0918 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x45559c5c v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x46bc1274 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4d10fa07 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50d65b11 v4l2_subdev_free_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5c83ec02 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5edc0a40 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6666d2e8 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x783da15d __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x78713588 v4l2_pipeline_pm_use +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x86fa4ca9 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8c346263 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x945241b9 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x97205cb3 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9922d91c v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x99e9fa22 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9c4269bf v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9df83972 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa2cff2e8 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa2edfe87 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa41c8f16 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa6f53f9e v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb404bc16 v4l2_subdev_alloc_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbbb30bd4 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc739e4d9 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc896e9ab v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd315e872 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd8dca7df __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdba3df1c v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde5ddc00 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe0189ddb v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5af2234 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5ec3d0f v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf171ea70 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfbecbeec __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x2b38cecd pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x75454526 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xf433716f pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x08d554b3 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x317929db da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4c9d6e1c da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x511c4a8b da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x87a6200d da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xcaed30e2 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf895788f da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x17af97e3 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x20102543 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x306889b2 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5ec24aa6 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x623845ab kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x74cc43ae kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7b0a59be kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xff32f79c kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x47ec0ff6 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xac4668c6 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xffc107e7 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x09c09cb0 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2856a9e0 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa5bef8ba lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xab3ff807 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xab8842a2 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc8d14509 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xeef5420e lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x90bbb8f1 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xb07a3dc7 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xc12e7e66 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x0eb4108d mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x4e0e5bad mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5c01aec5 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6dd591bd mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x78d9bf88 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf86373af mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x21dba8d9 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2da736e9 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2e42d990 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x334ef368 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x33c5a9da pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x54d4624e pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6738dff6 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa1161d51 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa967be83 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf451f616 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfb3794e3 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x74cfda2e pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xafc58f34 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x4b7aa66f pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x752af953 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x863d3286 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xbafda7a5 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xefb694d9 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x14823ddb rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x472fd91e rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x60edf980 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x67ecf98f rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7390bac7 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x765ee7db rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x800bb954 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x81037716 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8195c9c3 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x88777992 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8dd2d5c3 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9a926e7a rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa575afd2 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xacbcbb63 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb3d7ff4c rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb96775ac rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbc55f4d2 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbef29415 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc53e64bf rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe2203a57 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xeb34e29a rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf1ce7e5c rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf3798af5 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xffde4178 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0652f1e2 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x558f5f7d rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5655c79d rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x657fe040 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x65a4c1dd rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x67e99600 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x74c2c77b rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x8cc2d351 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x9b8f7f26 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb068d8bc rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc3177736 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xcba250a4 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xdb3005d5 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x00a0c8a1 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x139215eb si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x13f253b3 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1c37f73e si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2366fc3f si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x29507e6f si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2c08ad78 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x31df1d87 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x41ecee73 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x44cb498b si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x44f44bdc si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x505fcd52 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x59183598 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x603b2163 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6307f3bf si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x663b3b36 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x67ce857a si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x68257a4c si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x69d9981f si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6d49f174 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x76543582 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x786aabde si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7b1b46f0 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x992fe6c3 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb5acd91b si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcf1276b1 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcfc9cae1 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd8ee2179 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe3327adb si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeaf2b5d9 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf133964a si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf7d8ff87 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfc5a0ee7 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfe50d90f si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x304013ca sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x56f1cd28 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x7ff29a25 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x84cdaa7c sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xf19c47de sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x04d74cba am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x2e40e128 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xad3acf3a am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xb2713e52 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x23a1fa60 tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x76630383 tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x92ee2838 tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x9f292957 tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x5c4cac4c tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x67931eef tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xd97b89f6 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xee665ff4 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x6a392a6a ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x1f7d555f bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x268cb4de bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x31d6660e bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x5a7eacf9 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x27a2db4d cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x582e2990 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xaa6549a7 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xe65f6f10 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1f2e8f0b enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x46972dec enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4ab7e750 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x62265680 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7e7187ba enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x80d44a62 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x82d9c56a enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x96c4d545 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x224405c2 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x279ec90d lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x290e3dca lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x57c75224 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x74cb8628 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9aba622b lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9d36d951 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd30c4656 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x090615c3 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xbf97dc83 st_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x10b96b7a sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x167781bb sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x17e035ac sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2ad12cbe sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3283bb41 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3602e64c sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3c420c75 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x495df7a9 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5b7867b1 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x64f2a505 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x836decd1 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8afba0f5 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x91461069 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9e68c3c6 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa008d10f sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbe01a1d7 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe0f9b6bb sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe3341e2a sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfa27c39d sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x06402df6 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x19bd6cae sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2f405706 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x71f5f7c7 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x73c9ca06 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa04ac2e9 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf89c1c6e sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x77d4d5f9 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x8acaf06f cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xb5e3d587 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x66a7ad1d cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x955e629b cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xeb0c294b cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x0499041c cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x180c4e6f cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x1c35143f cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xf3d69d22 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/maps/physmap_of_versatile 0x3bbca81f of_flash_probe_versatile +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x069adc34 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x071f6cbc get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x124dc8ab mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x13fbb37f mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x17b52dfb mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1958e366 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1f30f800 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x23e90fac mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2c014e9e get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x30a25464 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x35bc2127 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x38778b88 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3e8f54ec mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x412e76c2 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x41845c15 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x43b61363 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x611a6d68 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x66dfe605 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x67eedeb3 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x697c4fad deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x737c4c36 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7391265b mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7a401a09 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7bcad619 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7d035872 mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7fedb292 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x80ee2660 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9085bb57 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9a744a24 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa2c997b4 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa85202ae mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa8c6429b mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa8cafbfa mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa93072f9 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaa25bb33 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xabb05bf7 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xafd411e9 mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb972f658 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xba4e1785 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbb402ceb mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbd0cdc37 mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc1a2061a mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc51261c0 mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xce1704e8 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xce366add register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd75c09bc mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xde34151e mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe9e1477d __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xed2215ee mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfa574636 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfb52770b mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfbffbabf mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x86f697a0 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa58d8107 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd04ca9bb del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xe04db2b2 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xe369bb18 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x0085e446 nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x10a954db nand_ooblayout_sp_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x813fb8fc nand_ooblayout_lp_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xc0d01bdd nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0xa1dcd7b5 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xb2ae97e7 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xd60a620b onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xead8918f spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0db1ed29 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2736cf55 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x31678e1e 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 0x53b37368 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5a8894ca ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x60c7d6b0 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x905d7f6f ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x995a74ef ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa2152dcf ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xaa89ffc3 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xaec0728c ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd032de42 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe19e1b3f ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf85b0a5b ubi_leb_map +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x05e4a360 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xfd1e2682 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x34cff094 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3a0f99bf free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5149192a unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x59ef37df register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7cff64f2 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb523c975 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x08c77903 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1bb14f33 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x209a3e06 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x21390e3f register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x23bad0a3 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3dfa7417 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x40c6f6a2 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x63a94e88 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x73f65d52 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7ebcf844 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb17fcba2 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc93b6123 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xcf6f9d16 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd194882f can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdf1debae can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe5320582 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe61e36c3 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xff2e261a alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x734a43f4 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x76cdfe25 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x78759d53 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xd361a30f alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x17f154ab register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x3a026a43 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xba2fb481 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xf949cd36 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xd5566b59 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xdd1f3a3a arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00f77428 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x014e210d mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x018737d7 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0504e2dd mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x074c3421 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07ecbe75 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x086f3aef mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b162edf mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b8d06b9 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c5e19fa mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d6e277e mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ddd1988 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10e9d2d3 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11337f50 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x126309d3 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1431189b mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x147f4043 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18ccc014 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d09e68c mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d930e93 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x226de275 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28b1f558 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28bb8b21 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28fbb357 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2952c32f mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29a5120f mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f761d65 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32fa797c mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33046a00 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37151889 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3752c6c0 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37bf8c35 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x393cf49d mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c1d0bfc mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3dac57c4 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3df14ac2 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3eaee10a mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4032af4d mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45704ac8 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48da6a76 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48df97ff mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c61b376 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d63b67f mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f19a201 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53b108cc mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53ec234b mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x553fe80c mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55629f02 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55718b3e mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a081da2 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b6d8b4a mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x627b3928 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6418aaf3 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x665d5df7 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7158d087 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74e12d47 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7581c228 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x797ae006 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a0870d7 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81d3b409 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85dbe607 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x869c95d8 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86cb82cf mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87b08f9a mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x881acbb3 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x882552c9 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d744086 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8eb0658d mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90e46c9d mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9332e96e mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94732f5d mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x965ebb79 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x966a5240 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96a93bf4 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x984eaf7e mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99cb7456 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b1c26ce mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b3742ce mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c1d5536 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9cd43014 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1e7376b mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa76a55be mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa3e2839 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaadf3f80 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab49fac1 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabaafb93 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabcf0be1 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae26bcd1 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb002ec96 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb46f0c4f mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb60c0f3a mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6c21949 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6d4bb82 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8b3472a mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbcf0227 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc057833 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd5f5584 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5db6865 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6efb0b1 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc827b0c0 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcce83e35 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce84b205 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd266616a mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3afb18c mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd74aebd7 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd91420a2 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb9eae05 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd17c172 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd18fdb3 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd5b5f39 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0e61aa1 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe224934b mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe279307f mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3c1a937 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe49a12b8 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5361832 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8865e56 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8ab1ada __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9aa6dab mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeee90dbe mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0778c0d mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8ea9974 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf988d56c mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9aaa40b mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbf1b139 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffbaa691 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0178d9bc mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04184ff8 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c5af742 mlx5_set_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e2aeb0f mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13e6e7da mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b7c4e4a mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c705a58 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e105c74 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x250a4fc0 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f8a9137 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3211c03e mlx5_core_alloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3daa36fc mlx5_nic_vport_disable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x418ef9cd mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41aa6186 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48153ac8 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ab558f2 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c060253 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c68b1f4 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ca2524f mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d9a6b6c mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ddda0be mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x505400f4 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5443959b mlx5_query_port_autoneg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x548f4cf9 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5916690d mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d094d76 mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x603cf805 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6804433a mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c35490a mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x714981cc mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ee7d14e mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fe0a208 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x813b09bf mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81c17278 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bb14128 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93f66b0f mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96b4d7c3 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96b7c6a3 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99172606 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9abc7aca mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa49108a1 mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa792eb56 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7b59720 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8b59e6d mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac66e560 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2bd5d54 mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb60a9575 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8a36619 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb2feb74 mlx5_modify_vport_admin_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbba87e69 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1375d99 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc25fa3a0 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc37c2989 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc98b257e mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcaf33f79 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc435632 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcca4ee14 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccab075f mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce6e1b6d mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf3317e9 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4b85cc7 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7eff27d mlx5_core_dealloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9ba3427 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8e16457 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8fe86dc mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea74ce91 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeaf19688 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee1d50b1 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf11b0928 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1a45098 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2043c10 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3eda2cf mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6ba77fe mlx5_core_query_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbbded20 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdd0a35a mlx5_query_vport_admin_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xa2c9604e devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd4ab3625 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x2c551ff5 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x9679105d stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xab75a7ad stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xb5d1af2f stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x12fea6cb stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x1ca96c0a stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x6818a91d stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xa54a306b stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x45b9076d cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4f41b983 cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x538e8713 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x66ef5e08 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x6f694cd6 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x8db64fbc cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x8de5e9a9 cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb95f2d93 cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb96c8dd7 cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc7ea14eb cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xca6ceb22 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xdd51a7c7 cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xef9148bb cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf2950f76 cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf38abadc cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x57346e15 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x95bfbab5 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x9b2380c5 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xc0aeb171 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/geneve 0x93bd8f21 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x87bcbfe5 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xbed133fc macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xdee4069f macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf3f2fe68 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x1665a1aa macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x15d1a060 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x27b709b8 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x466b9992 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x562cd9ff bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x746c1e23 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xab11d71d bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbddabd22 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbe3f2ed9 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdc6e3e33 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfb155b25 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0xff69d264 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x3967b8ca usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5ef67287 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa8978fbc usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xef46fc4b usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1cf882e7 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x27466825 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x45bb9492 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x72b1ec00 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa2e33d0c cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb429d32d cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe1c1b455 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe5cc3dc2 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfdf06f22 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x04139d73 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x3e3c654b rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x667a7d8d rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x81afb67a rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x9c11dee9 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xd56d1bea rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x05946353 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x06a3d4bc usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0b6f47b0 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0f7a06d6 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1166f082 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x16f4fc3d usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3c22836b usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3de21260 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3e5401d0 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x430f3602 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4bc8ca37 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x53b32980 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x58caf7c6 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5dc8c7e7 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5f462819 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x613b9f27 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x62fc199e usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fcdf5f6 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x81d9d95d usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x97b364f4 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb190e096 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb3551e3e usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc7f8d718 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc913731e usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcf1ea312 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd817e08e usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xda549642 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdb9b113b usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe4ee317a usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xeb043234 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf4f92dbb usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf6eab1d1 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x84c38908 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x092bab95 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0b205fc1 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2507847e i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x427a90b5 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5188493e i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5a9f8c25 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5d50e269 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x60c1b1f5 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x72e4dfc5 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x86511e51 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8ec4f9a2 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa3eb5643 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xada32ce9 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcb5e5881 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcc48c5a4 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcfc4cffb i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x0c7ff974 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x550ab153 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c4f7478 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd0ba4750 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf65eed1e il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfbb3fc53 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x002b2e74 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0d556623 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0f48dcb7 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x22d5f69b iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3c646435 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3c90dc5e iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x44e034f1 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x462332a6 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4d113e3d iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5742939b iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5bfe6f68 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c4d51e9 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6289eb98 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7c14314f iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7d3754e9 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7f87b9ad __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x802ce68a iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x86073320 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x89e9882e iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x89ef3be8 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8ab14d93 iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8d24b9e1 iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8d4da899 iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8f623560 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x95965ded iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa266fa65 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa5cc4185 iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaab3dc20 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xab38f9c0 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb62408e7 iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb7eb6033 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc67c31ed iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd3e22311 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd578a0bb iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xde5487ba iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xde6c3925 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0d3442b iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf3672453 iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf4dc2d94 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf5aea4a7 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfafe5e84 iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x13baa7ac p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x413ab88c p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x610f6b9a p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x9f282e3b p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xaf03e34d p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xaf5fc29f p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc5dbd9c0 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc84a7629 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd785f8c0 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1c5ee47b lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2a9e69e4 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2c26e0ac lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x346845b6 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3bbf9b74 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x49874ac1 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 0x600a7c3e lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9e258eb0 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa1da946d lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa584cd67 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc65f3cfe lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xcb59dc30 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdfdc65d7 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe4bc56aa lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xecf9ee8a lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf8de593d lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x38dfe989 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x63f66c68 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6b7735dd lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x8321247b lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa1618933 lbtf_add_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 0xde415234 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf040a08c lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf647b856 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1af56657 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x50724176 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5a27f768 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5f0c7041 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x67e2e9b8 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x69006d42 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x69f32446 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7ef0c8d5 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x83311922 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x891c1bfa mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x91a71ab8 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x91f9801c mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9f97fd79 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa6adcbac mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa8e85291 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbbf46faa mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xda084a8d mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdc658e79 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe6f8d57b mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf52d3e3c _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x01e2311f rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1207eda7 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x16b22757 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x17cb326b rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x21bbcaa7 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x221eade2 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x27635861 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x29174980 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2d31a0ed rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2de7dba8 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x342de8ce rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3e04fd51 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3e1a1ed4 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4f54ef91 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5790bc64 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5948950d rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x676ba195 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6e881f61 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x74e332b2 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8114805a rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9a16de5b rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9afdb927 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9c7ec7fe rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xac4e3373 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb84e7139 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb8a167a6 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbad3e863 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbb46dcdc rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbed6b802 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbfef2dec rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc489adad rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd3df9626 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd759e524 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd910a14c rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe477cbac rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe8c4345a rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe9c5a952 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf0de3d93 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x01dcf9d5 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x05a02f59 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0d7af7f0 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2580d363 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3c223f32 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4c3f9c49 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x54a5fdd5 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7102e580 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7e85896c rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x87c99ad7 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e6788e rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x99b1780a rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf2baf6b3 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x03882c54 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x03ddb980 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0796c1b7 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0b4e3c02 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0f3bfb2d rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x16078430 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x19b06ec2 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2d386486 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2ee8fccb rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2fbfc6c2 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3097ec2f rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3e32d1b8 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3e40b1af rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x45408ecc rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x501d944e rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5a324b5e rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6ccd6d2c rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6d82feac rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6f4af1d5 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6f970221 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x700bdade rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x70a1e187 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x72d452ac rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7359b08c rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x73a46c04 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x772c34dc rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x796feb1b rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fd30c8d rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x82654155 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x84366aca rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x87825d29 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8b04b945 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x938af315 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9d0a3e5a rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa6ef81ff rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaa20a1d3 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb8116750 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbd99d94c rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc4b135c3 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc7a37d9b rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcbbab269 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xddae1565 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xde702db2 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xea555b53 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xed516e97 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf74c9541 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x1051a9b4 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x45c2e9a2 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xb2cc8ff0 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xd91d043f rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xda1d782b rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x24242f14 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x640afa7e rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x84a587cd rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x8f637257 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x039a8e20 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x102cb890 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4940be6e rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4e458f5c rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6442738d rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6929efbd rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x768a5b65 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x835cc66d rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x90f4e56a rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x925f8c4f rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9495ffa3 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x971a5bd1 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa581b662 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb6cd5f4e rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xef093c52 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf522346d rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x465b76b8 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6f476805 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc3171a60 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe85ebddc dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x00c37580 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0562f7ba rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x068319cc rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x13eda760 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2517a090 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x30a53ebc rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x34a5a298 rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5a0b698f rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5ae1564b rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5e40abfd rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x63bb87a5 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6d39f616 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8966eab2 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x97e5e815 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa1a54845 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa456c006 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xadb055b6 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xadfd0063 rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4fbe52 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb0c2bf5a rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb30cee00 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb756ae04 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb8e2f00d rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc1a004db rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc2cb5bc4 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcced002e rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe0e8ef4e rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x02870a3a rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0e890950 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x10b9d141 rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2525c991 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 0x38783cbc rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3c601036 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3f010b01 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4926d568 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e1c1e53 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7bd95caa rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8e2b71cb read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x91822846 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9976eee5 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xac9c4a3e rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbab78903 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd91c0bca rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdc63dd3f rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe83598a8 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xee4605a7 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf3386c50 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x11e19187 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8c3e1995 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcb3d447b rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xea86d424 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x4da920c2 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x8301632c cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xa7c98594 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xf83fdcf3 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x3c4c355f nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x4901461e nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x5c40e3f3 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x63b008e2 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x10455806 pn533_unregister_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x1d0c532b pn533_register_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x4a34cdb4 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 0x4fa62c15 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x50961fe1 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x89a68387 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa7ac980a st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc16e4dd9 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xcd155107 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf2b496ab st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xffae1f84 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x2c7c355c st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xb2d2b2d6 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xe83a2031 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0f7a204a ntb_transport_register_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 0x40ed3f86 ntb_transport_unregister_client +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 0xb50458d1 ntb_transport_create_queue +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 0x0f22448e nvme_queue_async_events +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2f81d402 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x327858b1 nvme_max_retries +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3809d279 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3d90ded8 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4245361f nvme_requeue_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4f58caa9 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5d8e1430 nvme_init_identify +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x67b7d339 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x69d9fbed nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7130a4f0 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x76f9025a nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7f450d0e nvme_put_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8dbbd738 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x91f0ce2d nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x93025de9 nvme_queue_scan +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb1476340 nvme_start_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc296c419 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc3cc3aec nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc6b12b55 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd0996e0f nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd16f36c2 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd2449ec4 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd77fd667 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd7e3be5e __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe8d6e658 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf958ab24 admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x026462e5 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2e3544f4 nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x33abd007 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x47a5511c nvmf_get_subsysnqn +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x57e1130d nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x67567e51 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x790756fa nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe711a34c nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe749470c nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xec412500 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0f250a1c nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1fc8a3df nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x269992dd nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x33a88305 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3724a712 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xcf092e9f nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xfa993ce9 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x05bf472d of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x068615fc devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x161c2155 nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x19fbda45 devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x33c9a0de nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4f8265a8 of_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x57ec5ca0 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x68758fda nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe18960ba nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xff18352c nvmem_device_get +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0x8456a245 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0xb5fe1631 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0xdb75894e bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x28d82e17 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x350f1c74 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xe7c7df95 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x4748f049 reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x6640d865 reboot_mode_register +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x1967fa4f mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x7678c6a9 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x8300a8d3 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x83a8b644 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xeaa5872d mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa63d11d8 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xbd0c56d4 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xbe1198b7 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd1b0e4b6 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xfd767418 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xfea2fad4 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x97102c2d wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0018a513 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x09981af8 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0b1077df cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0bd54788 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0e9299ed cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x13f84718 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x150cc124 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1c1877bd cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1c2ad9ab cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1ce45db5 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x278f907b cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x409c6ced cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x41db6f4a cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5dc94359 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5f945e55 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x606e03de cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x620bdcb5 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6349c0cd cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6894a4dd cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6af5dcfa cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x71da143c cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x74acf489 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x79acf849 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7a8a7f81 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x84f24668 cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8983d59f cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a0a2e4b cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x92e81b01 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9714525a cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9813ad29 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9eadfea9 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa17a0160 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb85619ad cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb9026f56 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc194c3a0 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc2f47081 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd4188908 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd4b0f8a1 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd94a6aee cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd988e90c cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe5e9aae3 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf7c82052 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf84afecb cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfa9a32b6 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfc101f4c cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0e1c96ec fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x19c65c8f fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x27e6440f fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3ac1ea35 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3caccafb fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6f5279ee fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x762aedab fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9b6e5914 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9dce516d fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa4c92264 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb13605e7 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb1de966c fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbaf2079e fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd5c0d8de __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdbdad9fa fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf4f60733 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3926566b iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3b9bed1a iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x4baa167a iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x96e3f126 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x999cb1fe iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9c9fbab8 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xbd972879 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x01b6e090 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x06a445fe __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x146daee8 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x17042355 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1adaa74a iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3413a947 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x35d1a26d iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x394780cc iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39f51022 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x47e3b744 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x507fae41 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x50938737 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x52fb275c iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x572f288d iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x62b1e83a iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x63f3fb86 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d8cd8f4 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6fd2bab1 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x73a50ba6 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7496cf93 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x76f55901 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7be35ede iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x801d738f iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8e11c2f5 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9077d465 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x91838ddf iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9c283e5c iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb3397abc iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb513cb43 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb66ac202 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb93cc3e5 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcb99fde5 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd07a415b iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd0c62a36 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd8312471 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdba559e6 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe76ca768 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeb13ce05 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xed200b27 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf650c2a0 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf84b6140 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0486b8e5 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x10fb1ed8 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x17e2731f iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1879168b iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x18b5096c iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4a51f3c5 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6f18a524 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7e1ac62d iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7f20d307 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8bb42ced iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9024ee6a iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa88fe84d iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb983a358 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd77ec7fe iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdbbfa3cc iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xebc571b0 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf7c3f283 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0691b4ae sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x164f09d6 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1bc083e9 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x27267bca sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2b5228d7 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2c47f7ef sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x45a18be2 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4710f7a0 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4d67bed1 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4dd7728c sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x62d2ea84 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x664dac62 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x76bf3d1f sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9e4b454f sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa04fea09 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa885261d sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa9a25cb7 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc343f87b sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcc4aa95f sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd444e26f sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdb728765 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdc797f26 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe05a98cc sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf0d8a4b8 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x01c3b122 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0561e4db iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1a9394d1 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1cd6dee2 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1ff45206 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x20f286ef iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3502ab45 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x35c0fcc0 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3b4f6239 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x42911ffb iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4b697a6a iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5a2f56d5 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d72c792 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5ed6f0cd iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6d2baaca iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f3f786b iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x74b75f8e iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x794a5411 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88773ab9 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9471f464 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x998268b2 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9cce2fac iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa2ed7774 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa7dd90b7 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa9b6caad iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb116e27e iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb4004486 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb777d911 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc7bf06a8 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xca558ccf iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe10210e0 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe13f16e9 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe5297cea iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe6e7e34a iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xed497a4e iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xed83a734 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7b19f0d iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf8d5077d iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfe1313ca iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x6385cdf8 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x82419247 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x90dc08a0 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xfdc2d7bd 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 0xa1bc3043 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 0x05ad589c srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x06fd22ff srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x514ed473 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x64ba15e1 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x8758330c srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf28f3e2c srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x08395849 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x0965b981 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x13d94f84 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x5ab1170a ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x9245aada ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xb5d036dd ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xe7b500d7 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x1a67bb0c ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x41051617 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x4df10929 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x573d7750 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x7694e7d9 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x8e8cdd26 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xd1797652 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x423b064e spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6a6084fe spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x754cd4c4 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7a34f2a9 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xae69799a spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa7a4d5ab dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xbae47fa1 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xef694e68 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf397310e dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x21735bb6 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xa5f9930c spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xf12657e9 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x02824584 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0447ee2b spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x051baaa9 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2867b37e spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3a5c7633 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x503f49d2 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x51a0d78d spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6149a807 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x85266a3c spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x88431d6c spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9bdb73fa spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb3157f98 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbc785945 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc44d2dcb spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc91988df spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe5aba4fa spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xea10b4fb spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf543725c spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xf938fad4 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0607690c comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0dae125c comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1f50c708 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x227e50e5 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x24272e25 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2b2e61e3 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x43448868 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x47ae9e55 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4b0e9972 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4c1fb2fe comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x529901dc comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5704720c comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6356a838 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x64c4fae8 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x670f10ff comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6ced61e8 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7f629896 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x807aaf3c comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x811d0b5d comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x84c366e4 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x887edc0d comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8e3897ba comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x948fc6b1 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x99eec49b __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa02990be comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa0de529b comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa21d2905 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa414ced8 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa867bcf8 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe02407ae comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xea1a16bb comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xec4d8b74 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf47ae75c comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf672ed5e comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfa577782 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x1e847855 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x2ec43fa8 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x320d8648 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x6e1cf6bb comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x75993f19 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x8640d457 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x9bb5302a comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xb0c7b348 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x0b24b9bd comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x260e9ccd comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x264f386d comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xb75d9e74 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xc08ceeae comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xd26fcbb2 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xfed8be13 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x465f731b comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x4bb0ca79 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x62c37011 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x7ee70b22 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x9067f2f1 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xe31ecf06 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x8df43a0c addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x4a9d504b amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x94521f3e amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x1427cd45 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x02e04813 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x168c7712 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1e06d740 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x32754527 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3f0e48b1 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x4db1f383 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x57daea79 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6903febc comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6c1d2ba2 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x81b7d28b comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x992fb27b comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xeafa6125 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfec9f63f comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x242a922d subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x57a1be2f subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xbb6cd4b6 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0ab7ffd8 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x1cea85c6 comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x3789f086 comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x7040990c comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa228e27e comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x95c72e0e das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x23eae5fb mite_sync_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2f3feedc mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x352cb543 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3ce174e3 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x43e1615f mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x65176eae mite_request_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x76d755b2 mite_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x939661b0 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa2855a28 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa3dba722 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa54f91fe mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb4463789 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xbeac92e4 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xbfc85bf1 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf6cb6dfb mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf801b6d2 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x0812bf6d labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x7d422f76 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x3561ca2b labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x432ac7ff labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x8930fbc7 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xa7ad29fb labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xf9e99d8d labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x02c93208 ni_tio_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x28d5489b ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x29ef12b8 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2f6c500a ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x70e7f0b7 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x70fe4a91 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x7423e5b7 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x8ae49e99 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9fbfdcc0 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa61f7014 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xae422457 ni_tio_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xf6fbc497 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x0545008c ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x194021f3 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x238aaa33 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x7d9a94de ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x904dab09 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x9f054846 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x11890a23 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x1dc8af4f comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x32e2e017 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x3e52511d comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa443888d comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xda56b6a8 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe667b156 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0x19520c28 ad7606_remove +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0x21b35fb8 ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0x6833cc2e ad7606_probe +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x26194678 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/lustre/lnet/libcfs/libcfs 0x44388c65 lustre_insert_debugfs +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x2007c026 ldebugfs_register_stats +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x26358acf ldebugfs_register +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x28fedeea ldebugfs_obd_seq_create +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x3786673c lustre_kobj +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x4fe8ba1f ldebugfs_add_simple +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x5bf41d76 ldebugfs_seq_create +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x6fa92377 ldebugfs_remove +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x714a79b2 lustre_sysfs_ops +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x83526a18 ldebugfs_add_vars +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xa7588b5b debugfs_lustre_root +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xcaa943df lprocfs_obd_setup +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xf5a14525 lprocfs_obd_cleanup +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x2a4c8126 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x47781da9 cec_received_msg +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x8a2262cb cec_register_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x921d94bb cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xa3603b94 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xb0c942df cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xbe4643a4 cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xdd2956f6 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xde59ab18 cec_transmit_done +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0372e678 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x169efb4a most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x16c64b6b most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x2da2b2e1 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x47199b12 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x89ace64b most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x8f16b8bf most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xbb4cce5c most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd26ec00e most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xdc5d4e3e most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xede13baa most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf646a23d channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ef1d765 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3cb322fe spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5f486ff4 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x674b883c spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6e73e79e synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6fb86181 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e804755 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x91eddb3f synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x98b35b55 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb35aaab9 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xdab429a8 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe3e37e33 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x15ab7a51 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x2e843e39 wilc_netdev_init +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x4876492b host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x6a72dffe chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x76838e84 WILC_DEBUG_LEVEL +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x8039e91f wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xc4bc9134 chip_wakeup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xd8a35c09 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xeec71c36 wilc_chip_sleep_manually +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x2eca6c79 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x51a3a560 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xbd941b0c uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x59fe379c usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xfe30cbc0 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x0da2aa85 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xfedbc0b1 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x5e3d2596 imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x928727a5 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xf72a69c9 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x022bd9f6 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x38e23d9e ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6aa7780f ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x77ed81d7 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xcb38006d ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf167997d ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0a80e933 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x11e73601 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x336ff4b2 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3564ea2a gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7141c2f9 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x745be62e gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8b034d8a gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8bb9b161 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x91822e0d gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa23432c9 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb12c90fc gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb48c7a80 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb88ee7b5 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfdeb7dca gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xffd6816a gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x3393b90d gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x692041fb gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc06bcc41 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfb39f842 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x07fc2648 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x3353b97a ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xf59620cf ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x08c2eddd fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x10319fa5 fsg_show_ro +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 0x1b1cc3af store_cdrom_address +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 0x2d10b6a7 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2ea624e2 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 0x3f3380f7 fsg_show_removable +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 0x4f6336df fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns +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 0x66ee7d2d fsg_common_remove_lun +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 0x7f639e85 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 0x95cffb3e fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x987bc0cf fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put +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 0x9b172204 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9bd40e82 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9c8934f4 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa2ef4594 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get +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 0xb203a8ad fsg_lun_close +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 0xd468f882 fsg_common_set_ops +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdcb699e4 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe9d156eb fsg_store_cdrom +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 0xff95f2b1 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x06c41b9d rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1109fcd5 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x177585b5 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x35e850f4 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x373a8570 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3d63e786 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x88e515f1 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x96a19d9b rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x989ad681 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa9e92728 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xad251af7 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xaf169fd6 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcb8118a1 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdff16216 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfc13e12b rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0041186d usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x07aaeb4c usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x08434386 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x14ecf995 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x266d6c58 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2c6da175 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x40851b55 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x47cc448f usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x48a9b8be usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x48f0102a usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5e5af62d usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7b7fd35a usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x85e54573 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8aa6f1cf usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8b130d8f usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8c5d73b1 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8f856728 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9a5041f1 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa16c5290 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa4c6eef0 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa55357bc usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa66bb368 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb02695e2 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc7fe5678 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd430c006 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe3a52516 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeea65374 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf0cc0b99 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf61ca6cf usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf8d0c470 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfc8f9e73 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfcbf5833 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x09e59ce7 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0cd2980e usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0f4aab8b usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2163167b usb_ep_set_wedge +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x379469e2 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x41fee4ed usb_ep_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x43b921b5 usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4e584789 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x56b4f038 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x583b2d4e usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5f6865e6 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x694fc14c usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7887b7c8 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7cb8ad10 usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x84e47405 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8e6e4723 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x95a5fcb3 usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x98019b7d usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9e01e24f usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa10a7c7c usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4a30861 usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa6696294 usb_ep_fifo_status +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaae52a5a usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb1f38015 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb2567762 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb86bf2c3 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbd3b68cc usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbf3474e8 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc5e12d72 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd61cd56d usb_ep_fifo_flush +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd769e3b5 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd9706925 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdb4f8103 usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe1ac8da3 usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe1fd83ac usb_ep_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe7442a4b usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf8692c46 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfce35ea0 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x4f5fcc8d ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x6eb71afc ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x007bb7e3 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2162bf4c usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x36e03986 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4b00f464 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5989e4e9 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x59eef595 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5c82ab3c usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb2d8d287 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xffb1d616 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xa41aa60b musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x1e5b66b7 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x2f64b133 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x891b9893 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xc974056b usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xd6dabedc usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x667b98d2 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xe1ea7730 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x01de963b usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0271cda5 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x06b9ee50 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0a83e90b usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0ef3c363 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x281fa27a usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x340bc32f usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3adbf360 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4679d407 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5cfa3c79 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7066dd10 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x74c9655e usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7eb404d1 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x86347d92 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x939574cf usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb07017ca usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc0b6a3ec usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc7ab30a9 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd4f324d2 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdded8774 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xec2617b9 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x008a8957 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1eb709e3 usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x254487a5 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x29b44def usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x29cf8525 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2d410eca usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2d9915a8 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x468ae36f usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5abcf19c usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5d25369c usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x633eb810 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x679fff8d usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x68d53d2f usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6d535a98 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6e97b89a usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7c7c8bf2 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7dcf9bde usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x83152ba3 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9aa17f1e usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xacbf9fc9 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb25a43af usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd4167e5b usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdb88d901 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xea644eb5 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x165dc091 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1fb21b7c usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x21206f5c usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2ab52a11 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3c142bbc dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4cb05a6a usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5cb8f386 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6385d443 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x66f03eba usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8ba73e2e usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9ac02440 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa2e3ac90 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa580aad4 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/wusbcore/wusb-wa 0x04294663 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x3e465f26 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x9352f8c9 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xaebbeac9 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb1cf1e5e wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc338dfcc wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4da3433 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0fd59716 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x1f54a004 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2942887a wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x43ba0a85 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4cba17b1 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x575f5706 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x810093e5 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x816aa208 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x86c2c609 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8e1c2699 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xab462375 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb9e68543 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe6d5eb49 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xeb43f2eb wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x22df80bc i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x80907eb7 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x90f920d8 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x038d7302 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x25d63d21 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x841ab886 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xabca6bbd __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xaddc2846 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xb90f3efb umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xc75d47ae umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xfa68bc06 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x009b2871 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x075d4e5a __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0e3a81ab uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0ea93e59 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x11ac1c69 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x144990b2 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x36eb0b54 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3cd31350 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x446bff32 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x48547293 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4be7cd90 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4f0d8744 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x515a72fc uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5176dc69 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x54374b6f uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x54f3e6db uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5c03d9c3 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5c3bf3e3 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6e93f83b uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x70068aa4 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x732253de uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x77a8c213 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7da768bd uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x856984ff uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8bd9272d uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x99c0f26a uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9afefd74 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9b9f3a7f uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa1d0b0e1 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac9975e7 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb1e32bf9 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb40fca0d uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xce0ea87d uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe061c562 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe15071ac uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe17e2197 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe83105d6 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x37c894f0 whci_wait_for +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x01201c0b vq_iotlb_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0fb6c542 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1b136a54 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1f7bd4bb vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2ad92c31 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2f6bf3da vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x327ad3fa vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3b7b5ff1 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x469b5568 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x47b3cc3c vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x48e23c62 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4f5fb91b vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x56e052b7 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x59d48fdd vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x60e567bb vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x62b187bd vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x63328c1e vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x64e33aa7 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6844c124 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7606ce1a vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7642d83a vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7c53adfa vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7cf9c581 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9bf82fae vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa38c0e35 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa587d96b vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa86213fc vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaf7c3497 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0be40d2 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbe40d9aa vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc8851f85 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcb1a6342 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd0807992 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd631d64d vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd681282f vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xda2673d3 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe8abfee5 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe984be5a vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeca5674c vhost_poll_start +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2bda1cc6 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x54e6a710 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x66a03344 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8def58b0 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xcff5e42a ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe0925077 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe2a6f926 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x07792bfb auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x18b5b22b auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x3c11f421 auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x684a7808 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x7642ac53 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x93ce3f2e auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa36f5e96 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa8aadad5 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb62edf52 auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xcb185f6a auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xa0146f0e fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xccd61ca0 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xef97ad3e fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x52aba4b9 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x962c83d5 sis_free_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x02aa3778 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x241ff6a9 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x324d0c7e w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x778c27e1 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7f4a3efb w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9727a6d3 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa6bc793c w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xae5ac1e6 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xcd1e5e40 w1_read_block +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x18aedfa9 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8b2c5233 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xd5a35c27 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4b4ad59f lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6ad916be nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6e0f1a59 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x959a7443 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9dbe1c6c nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9ff9a4d4 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd1dbc44a lockd_down +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00094299 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00b8ce07 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x049c5f35 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04b733a9 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06a0480d nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06fe7fde nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x076f88b8 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07b97117 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c524771 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e37364c nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f4a4444 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0feadbb2 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10e2817a nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10e8cf50 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12a5f3f6 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1346960c nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13dafa59 nfs_commit_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1576fd8f nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x191aba5e nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c05dc75 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f718231 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2046c366 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2101c8d6 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2105c38b get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23144543 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25080180 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b19b3c4 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d9abf7b nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2eaa2bdc nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x305ca79b nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31341ead nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3299ba3f __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3870775f nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d2045c4 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f4e704a nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3fd70535 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4252da80 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42841827 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x454e0926 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a9a72ee nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c4fdfe0 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53d515d6 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x589eaa1b nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b838960 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63553c4f nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63ccc7b1 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6585f9e9 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x680914aa nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ce53b0c nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6dd82f37 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6dee80b8 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f567fe1 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72e08265 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x739e0812 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73fdf97d nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74bc4d8e nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7653b444 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78e39f39 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7922256f nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7aed7f65 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7daf65ff nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7eb901c5 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x814c4918 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8171f996 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82c9bd20 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8446c758 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85099f39 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88df8bd2 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x896e0758 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c0127d0 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c8cb2e7 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e595aa2 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91b5dfc5 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x955221bc nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95d56034 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x976964e5 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e5773f0 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1e2e4ff nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2479f47 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa29ac667 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9c46d79 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab95249c nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae14b98c nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae8e43df nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaedf292b nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb00189d1 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb179fa67 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1a9781d nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb42dd869 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6369eb0 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb665254d nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7c18f81 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9e7dacc nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9f25ee2 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb4b1285 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd721488 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbecaefeb nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc00ca30c unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0b19a83 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc361a218 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5285ee2 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca9d0ccc put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb71ab56 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf4e8ef2 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1e013b0 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9bc02b8 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda0947a7 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc01384d nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc2bda56 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdda8bb23 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde1927ad nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe03d63f8 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe06c7eeb nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2b9ce83 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe34b08ca nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe50f554b nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe63591c9 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7e763b2 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe99d8760 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed2d6efb nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2a80cd3 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4512246 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf47c7705 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8d7de85 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf98c8782 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfaeb66a2 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe943103 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffa02fbd nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x05db69aa nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0079d4d6 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x03408f56 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0394513a nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b78d072 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ba9cb5d pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f8fcece nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0fd56b9c nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff0ec8e pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10bda26e pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x11622d5a pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15595c11 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1bc3bbfb nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1dcdc10a pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f0dc971 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23cc614e pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b6a33c9 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2eeafa97 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31b50a70 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32c61d6e pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d43099e _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d617665 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49aeed52 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e47b6e9 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50a4aee4 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5590103d nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55d01e7b nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59be46ef pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c1b65fd pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63387cd3 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6400d8bb nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7021af3f pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f1fd4ab pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f8c60bb pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x839f4698 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ab40b56 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8da92378 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e76349a nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9385f2b7 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94d387a6 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98caa774 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9b63b4af nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c6626d8 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e22f064 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4d0324f pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8d1775f pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf498564 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc604f4aa nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc70a10ff nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc9a38bbc nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcab633ff nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0087f4a nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd07979ff pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd15c5e5c nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd56326ae nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd805589a pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1297564 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1b76024 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe255576d nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb179742 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef1c392e nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf57941b3 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1b759870 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x24800601 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x3924b794 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x1018d8be nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x15c0e62f nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x086c7dc4 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +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 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x243f8dfe o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x451335ec o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x45cfcacf o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x97242bde o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa68a5867 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc0f1757a o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +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/dlm/ocfs2_dlm 0x163453cc dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2215f5d8 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x30dfd395 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 0x945bd295 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa3cb4c37 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd21d363c 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 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x15bf18af ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x936916c1 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbc393a47 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xdda2d7fb ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online +EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0x9ce7452c _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xb9b84dd4 torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xdb2b712c _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xdac85f11 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xfa2cb58e 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 lib/reed_solomon/reed_solomon 0x201d8ea3 encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57861324 base_inv_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x57d39367 base_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x882ce5fc base_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x9e0112d0 base_inv_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xaedfbb15 base_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xc8fca8a6 base_inv_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xd11741a1 base_inv_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xe3d900b5 base_old_false_key +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x0d6d3c29 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x34a4b915 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x36adb700 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x438f1a15 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x6d534a4d garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x87e9b6f2 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xa0dadbef garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xf0147fe3 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x11fbd29a mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x406f3d45 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x688bafa4 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xbf3620ec mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xd9bddec2 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xf45ff41c mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/stp 0x11120ccb stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0x8d1d0065 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x6a431b75 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xb70a06b1 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 0x0222ff0c 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 0x022d32d2 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0c729128 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3e712bb9 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8947b575 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8f39eaf7 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbbd0168f l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc3812a54 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xeedb3694 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x27f15942 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x322be1d8 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4411ecf1 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6985009a br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8210eb8e br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd4837ada br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf8dfad25 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfab54510 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x47b3d510 nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xf78ed8fd nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/core/devlink 0x11a8d4c4 devlink_alloc +EXPORT_SYMBOL_GPL net/core/devlink 0x22718fc1 devlink_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0x2f5a27a8 devlink_port_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0x40f8fcb2 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL net/core/devlink 0x5cce9908 devlink_port_type_clear +EXPORT_SYMBOL_GPL net/core/devlink 0xa955230b devlink_port_type_eth_set +EXPORT_SYMBOL_GPL net/core/devlink 0xa9e59bbe devlink_register +EXPORT_SYMBOL_GPL net/core/devlink 0xb0c875f2 devlink_port_register +EXPORT_SYMBOL_GPL net/core/devlink 0xb2d52158 devlink_sb_register +EXPORT_SYMBOL_GPL net/core/devlink 0xca80a2c6 devlink_port_split_set +EXPORT_SYMBOL_GPL net/core/devlink 0xcf9a1fdf devlink_free +EXPORT_SYMBOL_GPL net/core/devlink 0xdbfe4db7 devlink_sb_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0xfccbe398 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL net/dccp/dccp 0x00a7a77b dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x030c899d inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0b9bd77c dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0fb422d6 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x24bab826 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2cc9cc49 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3279505b dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x35d6b808 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ccca368 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x515bbf69 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5417de58 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x56603256 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5b180569 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5b5252f3 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5ce90900 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5f747d7b dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x69a7afe6 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6ba57a07 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6f7f3b6a dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x755be5ae dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7cd53468 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x92767211 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9af7de67 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xabf5aa18 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbf321a37 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc06d5729 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0b7b890 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc1c20e98 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc7217646 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xca54f696 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf1950392 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf8822f38 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf9057b0a dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfa3bfd54 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x22ceb4b6 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x53a99b5d dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9c2910f7 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd18f019f dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe21f86de dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe23c5aad dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x011400e5 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x67316e1d ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x6a5a5825 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd58dfa29 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xffe886e8 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ipv4/gre 0x3f513d99 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xddad9c17 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1a7e72bf inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x39b77160 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6dfb5d8c inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x81f87c74 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa2a95baa inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa6293e2e inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb6f0ac77 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xde96e5c5 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xef82fbca inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xf4198cdc gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x18474e77 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3c236a42 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x45c578fb ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4eaca0a5 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5ac920c6 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x728e3346 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x808d8f24 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x979e3653 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xab7adce6 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xacb1a003 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc464350a ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xce633e7f ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd9c0aad4 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdcc0cb60 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe60e9dd5 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xe1d40967 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x33a248a5 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x8414f29a nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x247e8fd3 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x32949352 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x4f5388e5 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x7ac85abd nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xba78d8ec nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x422f5bce nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x375f4609 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x73310e03 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x948cf596 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xae66c199 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xcf846617 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xb93978ba nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_nv 0xb8ecd46c tcpnv_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x01df3773 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x10fa787a tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x426328e1 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x5af9f0b6 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xca130e9c tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x12fb4075 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9c28508d udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa6388e59 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb95900b9 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc210f3c0 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe3e3ec0c setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf5087dd8 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x763d9a75 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9b0e7fd8 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd4c97301 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x3915b620 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x6af10769 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x2c2b2d39 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x614bd026 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xa598dc2b nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x01d0d429 nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x6afb6428 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x81d9ad2e nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xddb90f2f nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xe5f281f8 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x365137d1 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x32668bb2 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3b660fed nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x74ba266e nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb2da51c4 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xbf09a17f nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x4d686eae nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x012a227a l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x06033191 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1398f182 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x32bd2db7 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5e932ea3 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x62667263 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6816bab4 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6f242a15 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x737610fb l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb768e380 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbf11d4bb l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc82a1bac l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xda67115f l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdf0ed798 l2tp_session_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdf3f0f77 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xeda130c1 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x07f61e4c l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1d066db6 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x21e4c0c8 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x22ccac6d ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x301516f5 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3b432f8f ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4a7d2672 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5127c098 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x573e09f0 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x88b711b0 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8bda87ee ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa48a5506 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa5937333 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb4b8019e ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb4f0f1b6 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb871e012 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xea32cb7f ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xed3d0c87 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xef0d150e ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9fa191d ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x1cfc21b8 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4a9c2317 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4e8eb553 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x90172a0a mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x14d0aa29 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1cec72b1 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x312b913c ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x35fd3575 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x408dd6be ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6c0fcd1c ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7110a858 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x73fa1b57 ip_set_nfnl_put +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 0x85e98a4a ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8ac13d07 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x97bc4cda 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 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb9743f51 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd20a58e3 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdb72e2aa ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe65b2dc4 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xeee29f58 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x20b9d8ab unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x3597a0b7 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x75b9f3e8 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xfd952233 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01d2fd55 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b0c99d1 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b51fc38 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ef03ee1 nf_conntrack_get_ht +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f56993f nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1356ee14 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19514faa nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a9a68b9 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x247792ec nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2680cfd7 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x283a8889 nf_ct_tmpl_alloc +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 0x2ac3a5f8 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c667e7b nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x312e3b36 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3560a9e6 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36d1028a nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x430e1b87 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x460b2f51 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4639e5ef nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x480afd51 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48e18645 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4bb75db9 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4fa5e3c0 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52b72019 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x54b101ac seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x55081cce nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56af0a8e nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56c1a527 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x58210c45 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65526b47 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x673e7e4c nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x691888cb nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b6fbe11 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6c4557d5 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6fb8eb03 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74853a8e __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74a53dc3 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74f795ef nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x77912cca nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x77933b1b nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b224304 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84d221f5 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85a006b8 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88b14f16 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a63b1f4 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b40dd62 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e803e92 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92817b25 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9602298c nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a6efa35 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ce54292 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1259a4c nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4478799 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4ea454b nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa886fa11 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa90f242f nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xabdae34e nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaffea0c5 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1256a0d __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb976bfe0 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe3cf7e9 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbff9b884 nf_ct_helper_log +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 0xc60d513f nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8ec2bf5 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca669232 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce2ab5ce __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2adb2b9 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd362186f nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xddb00a49 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0ac141 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe852584b nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea0318ea nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb8f5eb3 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xede5e65f nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeebad536 nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef49b1cc nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0c6b69b nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf399ddae __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9e4156e nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa0f79b7 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa333f92 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfbe5648c nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xce3204ba nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x38d149b6 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xf3ed2404 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x00506f82 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0eb5a267 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1299c763 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x25c7cf0f nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2761f0df set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4af14114 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4c75a09d nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x78c3e0ca nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcce7994d set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd7db364d nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x64f511d6 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x21984c73 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x5e4a1a7c nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xa38188ab nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xef3bd2c5 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x3b3c0678 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xda5f788d nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x32446bdd ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3299cdef ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6d31dee1 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7ea7a506 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x83b181af ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb451b8d6 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xdcc1a798 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x1e942df4 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x2876230c nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xe829f9b6 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x351b123e nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x5e32c554 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xb5f16079 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xdf3f6f56 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1d1535f2 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2392d27f nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x433c3f84 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4d9345d7 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4eb8b330 nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x65ab1446 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6ee98af9 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9316a5f nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfa0aecf0 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xae52158f nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xcda5129c nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2309afb8 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5f339439 synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcba006a0 synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06555b4a nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1127537d nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x33719add nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x449ccc5e nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5c797afe nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x624c12f7 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x858def3b nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x89c00e67 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x90222737 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9743bbb5 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x99095051 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa2b425a4 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa3111322 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa43d3fc2 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb2ea15fd nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc6cf8e6c nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdd714a88 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde571fd0 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe48adc81 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xee32e759 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x198d6cb3 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6728f7a9 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x78115858 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x78d12a48 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x799fad08 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x800169e7 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x5ec081ed nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xa2fec8f5 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xd16d8ae3 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x075e81b4 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x609775b4 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xcef763a9 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xd7ba7059 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x18bca207 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x624ca9a9 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x72a59396 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x7a9cf2be nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x87a277b6 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb75f188f nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xcbf7eac5 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xffc02168 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x4d190a7f nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x4f1d93b2 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x839b4d3f nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x64959b5f nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xab0d8dfd nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xf8bec4da nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x017532a7 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0d38a800 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x29bf3598 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2be9f03d xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4bc46d8b xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5ab223f8 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7d74c2b2 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ae62bb0 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8d364208 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8e461987 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9a21171a xt_check_target +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 0xe7f8e9fb xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xead4005c xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x00204983 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x482b6a12 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x47fa90f8 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x84dac457 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xa228023d nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x25a9cbad nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x7823ff53 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xe9cb1836 nci_uart_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0a0b641b ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x213e55c5 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3aaed2f5 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x56865b70 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x58b0472f ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8a5aa6b6 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x97182076 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xeea8b64b __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf2de103d ovs_vport_free +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x07c3c8ac rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x1344cd5f rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2c9f99f7 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3997d635 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x3e2a5005 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x40df5d1a rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x413bed01 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x4622b59b rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x49fd6a47 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x5082c71c rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x5164c444 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x544da02b rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x61ce8690 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x6299b410 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x64aefaa2 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x6ac3863a rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x6dbb7aca rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x710d8e03 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x7eaa8620 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xa2e353f9 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xa5273c6b rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xa6cdd975 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xaa8f2601 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc56efdda rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xe1b98e51 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xe34a38cb rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xece43292 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xf9e6c84d rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xfc326ef4 rds_inc_put +EXPORT_SYMBOL_GPL net/sctp/sctp 0x3e1b9578 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x65d081d8 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xa1920d14 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xe6649bf0 sctp_for_each_transport +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x53d99c90 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x9b8b9656 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa1067d75 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x008ed5c3 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03acdcc6 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x044b0f2b svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04540f92 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04c64331 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04f314a5 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0519492a rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05c6b436 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05fa6642 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07f9d810 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x099f3ee5 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09d2cf3e rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a4391d6 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0aa3a2ae xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ac4a56e svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b0c2f5c rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b6bc8af rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ba229e9 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bdf572e xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e8c963d rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ed621a7 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f2409ec xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x140bdd4f bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14e09b62 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15e707d5 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1746cec9 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a2156d6 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a29efc8 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1aa2b6d1 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b1c3688 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c445326 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cc554de xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d0247eb svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e4c93b8 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2245d801 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22a5e313 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23630788 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26f05ea0 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26fbbb6b svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27bcaff0 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x281a0210 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ac87cb2 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b32b241 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d515fe9 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d714d35 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2df7b39f sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e7e8b2d svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32f7579e rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33a763d8 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x349dd110 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3644ce38 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x365f8251 cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dc95470 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e68ba90 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ed03900 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f782601 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x424e6dbb rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4446d6ca sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46f9523c svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x475bf219 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47aa87c3 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4831dd8e xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x495b6094 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49e4ac31 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a5aa05e rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4aa6114f rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b842582 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bb8f8eb rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bd7e36c sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ce506e4 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4df86e00 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8656af cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f49ad5e xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fc6e645 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x507a7093 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50ce830b rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5496fdff rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54a2416c rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57a0bc15 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c2a1d9c rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fe856cb svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6093e9e3 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6183fca9 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x676600b5 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6998d5ed xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b8e46c1 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bb0644d sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c5f5e83 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e79894a xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fd43820 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x705ebc97 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71c81aaa xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x740a0442 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x757ebcf6 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7690ee45 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77031f7b svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7773a0a2 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x788d9916 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78ccbe9e xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b146506 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b8c066c svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c72cefb xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cd7410b svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ee0b6aa rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f99659e xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82da9d68 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83b93c8f svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84040627 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8567b40f svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8715bbdc gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89a3a258 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b53efe4 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c208697 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c92c699 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ca0d55b __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8de1efc0 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e4390df svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ef6cd43 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90b492d7 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92835071 rpc_cap_max_reconnect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x932a9109 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93f5a28d rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94995022 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x954f73e4 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95a55edc xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95dddedb svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96dba9a7 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98621398 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ab29113 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dd365ae rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9efc99a6 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f333233 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f541398 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1917756 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2b3bee6 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3304d58 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa44e6ea5 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4ae1d5c rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa785a4e0 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa89d3083 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa959bfe6 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9b8befd xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa74d335 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa8e8a81 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab0bbcbf xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab9aad83 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac1472c9 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb044ad28 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0905c98 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2495601 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2705f26 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3e3ca9b rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb50c67a7 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb57524bd svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6901aa8 rpc_lookup_generic_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb880f5e7 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb989bf98 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbb7931e rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc830b45 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcd77db9 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd42a528 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf59001f xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0753bdf xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc355e672 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3593c2a rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3ab4cea read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc650ab05 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6595352 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7fcd113 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc85dc156 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9080463 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9b68e50 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd98f2eb rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdcd1766 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xceb76042 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd12a09db rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd18e27dc xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1f3cd16 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2f06f45 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd30b109f xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5ab2f24 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7272eec rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9a0ee26 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda02a092 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb4bdce2 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcfaee09 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde45e991 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe07e9fe1 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2cec78c svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe42b19b1 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe72fa5e7 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe78c433d rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe81adea3 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedb70752 rpc_init_priority_wait_queue +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 0xf047fcf6 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf06e732a rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf144ccee svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf34ae320 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf37d223f xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf495318c put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7be4943 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7bf54cd rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb210647 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcf18e02 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe7c55cb rpc_count_iostats +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x01e9e00e virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x06dbeae4 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0a28532d virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0be6072c virtio_transport_set_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1ce8cc71 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1e348f4a virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1eee27b4 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2738ab58 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2be6aa6b virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x30ca4e16 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3a3a937e virtio_transport_get_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x479e2e8a virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x47c28a85 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4e64f1b0 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x52006055 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x58125fb5 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5bb8954c virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x62764c62 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x62f0684f virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7d86aeae virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x869b541e virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x88937c5d virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x942ac9f1 virtio_transport_set_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x946f6b40 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x973408d2 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x98d42558 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9c67c762 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa92812b0 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb0c1ffd9 virtio_transport_alloc_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb3b544c9 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc2083eba virtio_transport_get_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd8fa30a1 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdec52878 virtio_transport_set_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe16ca3f8 virtio_transport_stream_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf7d522b4 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfa687ac3 virtio_transport_get_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xff55a512 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xffd1b48d virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x12ddd240 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1749c38d vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x28614d57 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2f6f190e vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4087ba63 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x56c6caff vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8672bab3 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa8953b71 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf49d279 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc1cdc844 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc4ed98d6 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdbbc6865 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdcb7b105 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf5d3b740 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfdd42411 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/wimax/wimax 0x0c510e96 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x0cfa58b9 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x255b004a wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x2c2888c4 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x2c28adcc wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x4ae36ba4 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5525b756 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x700755d7 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x73b573c0 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x9a9dc90a wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa02d1dc6 wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xbe321b99 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0xf6c1873f wimax_dev_rm +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x03e1604d cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x167fd2de cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1cafebc3 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1f4c58aa cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2902e6d0 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x355bd321 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x41776d7c cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6d292925 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x88e5f15d cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9e97a6c8 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb648292b cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc711c978 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd8f1e21d cfg80211_wext_giwscan +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 0x3bf471d7 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x26df0c44 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x2982313b ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xa1edee9f ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xbed2d620 ipcomp_init_state +EXPORT_SYMBOL_GPL sound/ac97_bus 0x0ba056a7 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x0ebf62f9 aoa_fabric_register +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x1bea796c aoa_fabric_unregister +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x25aeac68 ftr_gpio_methods +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x60894871 pmf_gpio_methods +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x814e65ef aoa_get_card +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xbd714282 aoa_fabric_unlink_codec +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xc05538f9 aoa_codec_unregister +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xc9644a82 aoa_snd_device_new +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xde6ff1fb aoa_snd_ctl_add +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xeb6e0c58 aoa_codec_register +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x23a2443d soundbus_dev_put +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x2e460cd9 soundbus_remove_one +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x32d8e92e soundbus_add_one +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x4c93b58a soundbus_unregister_driver +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x529f9911 soundbus_register_driver +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0xdf964fc7 soundbus_dev_get +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x7a5cb822 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xd86f4169 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd 0x1bd14d6f snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x4087fdb3 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x41e665c3 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x5c500632 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x75780489 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xe1c6e610 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xe8e3b630 snd_ctl_sync_vmaster +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 0x24f0f983 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x45cd967f snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x63749f74 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8266db6f snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9fad15cd snd_pcm_lib_default_mmap +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 0xabde4787 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc256c3ee _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xdf2a544c snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe93853ab snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x14d03dd7 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x16ab243a snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x297b7780 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7a6e67e7 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x91febabb snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x92cb6442 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa0600173 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa0f58c2f snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa74acf7b snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb68ab6ba snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe6afa5fc snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x07a319b3 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x199972f4 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x547e158e amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x93288b8e amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xba77949c amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbefceb24 amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdda47b20 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x081f098f snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x087ed9bf snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a606b5d snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0d8c6980 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10ceed84 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19803a71 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1edc28c4 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1f16f70c snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1fe394b0 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22da9c01 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x23b9c780 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x263bf4bf snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a423e5a snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x31094e6c snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x327cddb2 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35bd81b7 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35cb118f snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3d66a0c7 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3dd8e399 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3f0c0a43 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4765f633 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x483b94fd snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x486c0c1f snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a9a2e74 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4d113589 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x50525266 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5356dbf0 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54010b5d snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x57c6b615 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5baf7d8f snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5cd1382d snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d5ee942 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d6d346c snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x60a04918 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62739e99 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x679263cd _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6977a887 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x69c03c06 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a8af3b1 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73000cc1 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74a9029d snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x779fd699 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b290412 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7cc858a7 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8464721c snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x85f43820 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88d56d01 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8edabe8f snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x91c6c4a4 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9475bcae snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x95431376 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa5a0791d snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa62960cd snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaa4a77bc snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae2480bf snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb321e544 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd9c1695 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbdeb0b6a snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe977f4f snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc143e163 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc2e629a7 snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc62eac0f snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc7a59ccc snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd31e17c2 snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd45910f7 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd64f9df snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xde86d6e4 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdfda8ca4 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe2198bac snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe80c88b0 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0469c75 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf1c3f3bc snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf825e8e2 snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf83b040e hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfbfb8c1b snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3cfc95f6 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x60519d00 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7997498a snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x86157a15 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x8ca5db10 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xabc845d2 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00d8d0cb snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02e1ce12 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x06428fda snd_hda_sync_vmaster_hook +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 0x0ca41c97 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0cd32251 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0de2d1ea snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f47643d snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1181e4c8 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14883613 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x153ca220 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ecc7dec snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20e553d1 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22f4727a snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23163a70 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x232543d9 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23bbe4ef snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x27671982 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29a15133 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b8b0c09 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c826f03 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f606c0a __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x308cabc6 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30aead17 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30dde0a2 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31500cc5 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34e3a96e snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3661250f snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x387df8a2 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38d98b7f _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3adc9743 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d8bb17b snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f45fbe9 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x419bf1ae snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41ee5085 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4341c145 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46caf171 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46fa68fb snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4953359e snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cba89e4 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4dde32cf snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4fb96c2f query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5075bab4 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50866f8d snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x522bd7fb snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x534ccefe snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5946088f is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ac77a59 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68d3700c snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a34abdc azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b98d6e6 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6bd83b37 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e0b0132 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e608bd7 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e903044 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f4f9b7d snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x721ccd99 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x729a7026 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75c0f8e6 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x773fd9b2 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77ff12d2 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x785ba51b snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a3aac90 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a5d82f9 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f1b89ef snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83f357bf snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x855579e5 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85fd74b0 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86ea27f4 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88669de7 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88799c96 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a86510d snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8aff54aa snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f5186e6 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93bc9850 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x958b9cbb snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a1726d7 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a4db961 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ba6b7e5 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f2dfa0b snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa138b4c7 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1fbac89 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa544f928 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa59ceccb snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7081961 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac188f15 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaca2d635 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xacc1055b hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaec81215 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf086e1c snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf1c9063 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf605427 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2c54029 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2d184d8 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8865a19 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb96f6e12 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd9f2a52 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbed2f964 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1007a81 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc28a6523 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc435cac9 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc71d86da snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca8f48b8 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0485b80 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd31ba5b2 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7ff004b snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8aea1cc snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdadc906e hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdaf85e25 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd1ab675 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xddc0cb47 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0a691b7 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2c3314b snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5d665a2 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8046f50 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeeb2610f azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeeea5091 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xefa5076c snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf126c79d snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1edcbf4 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf27729eb snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf32eb2d0 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3a828e0 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf460844d snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf971fb37 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x08ae1ed6 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0ab20704 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0ec8b5b7 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2acea050 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3bfe8427 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4413865f snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x45de098c snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4ea35e01 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x55b790a0 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6eb18154 snd_hda_gen_line_automute +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 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x95fc9761 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9dddb778 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd0c6b127 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd1365716 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd582bdbc snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdc4d994b snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdc804d9e snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf0f93eac snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfd249303 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x14d99db9 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xd615ed1f cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x5f9f7adc cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xaed57dd8 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x6c74fcd2 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xb1c27545 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xd0cedec7 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x0666ac0d es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x7f45c978 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x5c116c83 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x61da5633 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xf2ed418e pcm179x_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x4d616e9b pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x5444830b pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x6d9c3ccc pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xb5a7f20a pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x04ebb253 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x44385e92 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x451ce94b pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x5effe995 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc +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-sigmadsp 0x5cc71dcb sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x6ed7e6c5 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x6f91e42d sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x81e1b9a4 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xff78e241 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xd6529592 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xb1d4d4f3 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xd9f22b6c ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x185c862f ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x4c2a4ee0 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xb6572224 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xd8721f3d wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xdeb16fbf wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xe42a072b wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xd1f901da wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xa31a52ec fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xd88ec6c5 fsl_asrc_get_dma_channel +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 0x7d12a8e6 asoc_simple_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xde758511 asoc_simple_card_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf2938c71 asoc_simple_card_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x004e88c0 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02afd375 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0473666d snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x057258c5 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06d7e3a3 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x074854b2 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0bc29168 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c373711 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x128ff05d snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12f287a8 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13a8d5ce soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16332e4a snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1746ddea snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1826b53b devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19362566 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b252bb9 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bfd1ed7 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c640938 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e084de0 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20d8d817 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x223d11cf snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x227ca1a3 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2728de30 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x297e4fd5 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2980e43f snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29898c62 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bed831b snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e3e3ca5 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ffcd163 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x306554cc snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32659773 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34c8c6f3 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35071256 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35fa6ce5 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36a846b2 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3725f424 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a8171f6 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3cc3ae98 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e855873 snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f1eded8 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4084a241 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40fda707 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x416cc67e snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4210e4ad snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45986cf5 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45f71926 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4aa2552d snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b37a0d5 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e3583e4 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f052866 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50902d87 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52a564e2 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5325101f snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53730c87 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x546f44dd snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x572971cb snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59b4ce67 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5aa285dc snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b6067dc snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e4afa34 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60a221f6 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60fb6bb7 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62f35908 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62f68505 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6313223a snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x651f8eda snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x657c1a36 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x667f8eed snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66b19d00 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68da13ec snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a2056a6 snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f929142 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fc9b763 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72c686ca snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74ab0769 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74e72b99 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76b99746 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x771d7b3b snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7954e99e snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a496993 snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d2f0578 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 0x7f3f7e18 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f7ec9d0 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80e152bc snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80fbf872 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85535d80 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85bc8719 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x872de9fd snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c5c34c1 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d0ea365 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e37beb2 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f595836 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90305ab7 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x941cf912 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d7db325 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa022375f snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa022a939 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa04c94b7 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa26f16b6 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa573e1cb snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7d41c30 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9757424 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad48c926 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf1567b9 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb06a9734 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0737c30 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0d0894f snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb14a8996 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb151073c snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1de67e2 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3c5dd3a snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5bb351a snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb756ddd4 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8cf65b6 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9583fac snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf0f5b5f snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfc2cdab snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc04083b9 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2baf5a9 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8dd919a snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcacc2fc3 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbc59b83 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xccef94f5 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce92160a snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf4f0a0d dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf84396a snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1db6b7d snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd56008c7 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8e9589a snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8f74db7 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9a732d4 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0f87b7c snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1f360ac snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe212a542 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2539e1e snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4111521 snd_soc_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe55856bc snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe80d720f snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9c909b4 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xecc01f63 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed720216 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf12c18d0 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1a5aba1 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1b8881d snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf52b1639 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6c6ce8b snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf87c790f snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa8dbb25 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfae33e09 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfafb5409 snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfbb47917 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfda79552 snd_soc_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffbeae20 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x016017a6 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2a146c92 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4031f105 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6059d138 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7a88d942 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7ddb9673 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x89ba374f line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x920d7be0 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9334b63e line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9e30d5f5 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc2adca34 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc870e4a4 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcacd6015 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe1000e1f line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe71b5278 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf613fd87 line6_send_raw_message_async +EXPORT_SYMBOL_GPL vmlinux 0x000eaabe usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x0012f053 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x00166df7 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x001c9d84 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x004385a7 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x005a0275 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x00657b8e usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x007a6d7b device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x008ee8a3 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x009b86f1 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x009e1318 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x009f720f component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x00aa2845 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x00ab5e97 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00f86fcb stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x010bdcd7 find_module +EXPORT_SYMBOL_GPL vmlinux 0x0116741b shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x0133d268 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x015f3fed uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0160b8f1 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x0173a825 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x0180eac7 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x0189a030 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x0195fba9 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x019ea522 _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x01a17aef dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x01a5a76f extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x01aae5ce wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x01cba3db fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01f234a8 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x02078640 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x0209bfec rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x021ebfda btree_update +EXPORT_SYMBOL_GPL vmlinux 0x02242561 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x0238a991 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x0239a4cf ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x024ea209 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x02a108bc regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x02b55067 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x02c0147d spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0x02f0cb67 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x02fb7880 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x03349c09 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03692d74 blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x0374eca4 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x037bd616 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x03920ef9 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03a81a76 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x03b6f8b0 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x03c689ee tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x03e0e480 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03ea72cc devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x03ef4ef2 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x03f9c6eb gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x040e6582 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x0446e0ab __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x0452dea1 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x047b2811 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04b04547 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x04b5549c __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04cf68e3 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x04e16b4e sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x04ef9a63 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x05008667 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x05080b8a usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x05140e06 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x052acff8 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x055047d8 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0563505d usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x0597f304 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x05b4db46 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x05b8e168 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x05bafa14 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x05cd036d serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x05df16ba tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x06052093 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x061dee59 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x06467ff1 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x065d51cf balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x0680c8e3 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x06924e7a class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x069f088b sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x06cc9b59 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x06f24272 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x07010e3e dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x07058497 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x07155170 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x07694be2 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x078ebb18 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x07a856e2 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b2825d devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07da54c7 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x07f5c596 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x07fe485b percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x08205f5e pmf_register_irq_client +EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x083e498a wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x08499e7e irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x0855b324 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x085c6207 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x0862cb07 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0876ae07 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0898b210 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x08d0a02c blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x090ae864 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x090cb83b ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x090feed0 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x091a821c __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x092e7190 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x0941303b lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x0961b62e public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x096c0379 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x09d7f4e5 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x09de4c1f gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x09e8125d fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x09f41696 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x09ff4130 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x0a0f1cc7 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x0a335775 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x0a4c0640 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a7575fe device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x0a8e7ff5 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x0a948353 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x0ad98810 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x0ad99f70 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x0adc9699 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x0af7f38f pmac_backlight +EXPORT_SYMBOL_GPL vmlinux 0x0b049bf7 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b2378a5 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x0b27f840 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x0b3c872b devres_find +EXPORT_SYMBOL_GPL vmlinux 0x0b8072e5 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x0b8a5934 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x0ba2e2b3 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x0bf10a87 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0bfe9eb2 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x0c0b083b ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c29b2a8 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c51f3c9 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x0c5f129e usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x0c765aff rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x0c88c15a l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0c90da3f posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cd123c0 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x0cf56e42 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x0d267721 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x0d2f45be tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x0d3dd2be ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x0d44a060 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d52278b stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x0d67c8c5 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x0d6cdbea rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d86df82 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x0d996450 pm_genpd_syscore_poweron +EXPORT_SYMBOL_GPL vmlinux 0x0dac29ab ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x0dcc5d94 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core +EXPORT_SYMBOL_GPL vmlinux 0x0df22ad0 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x0df44cf6 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x0e23454a regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x0e289cad spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x0e5b9750 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x0e5e2072 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x0e5e6fb6 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x0e8b4407 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x0eb92185 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x0eb9295c pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x0ef0c0ab __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x0ef0ee76 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x0ef1897a pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x0ef2e754 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x0efea2ee ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x0f03ab88 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f6bd0fe irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f8ad4db devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x0f8c99b4 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x0fa156f5 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x0faf2dea fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x0fc01e9f static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x0fcb5ba2 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x101b5403 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x101c0035 l3mdev_get_rt6_dst +EXPORT_SYMBOL_GPL vmlinux 0x101c5cf7 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x102a7724 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x1030ffe6 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x103abcec devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x1048bd92 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x105cab90 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x10651485 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x107633f8 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x108a2243 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x1099dd2c __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x10b3df33 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x10cad93f regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x10d62a51 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x10d72cb9 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x10df7575 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10f8b53b __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x1104e304 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift +EXPORT_SYMBOL_GPL vmlinux 0x113c383f pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x11489601 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x11490969 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x1178cf74 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x11881485 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x11a2549b ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x11b825d5 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x11c2ebf5 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x11e700d3 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x1217e98e rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1233a831 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x123fbd3f gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x125ed81f spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x126fbc6e gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x1295999b irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x12af9bd3 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12ca8e17 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x12cafa53 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x12d4c01f crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x12e3dff5 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x13354608 scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x1355d447 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x13579740 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x136a4ee6 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x13784929 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x13a2468a ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x13acb3da pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x13b04138 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x13d1b14e device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x13e49200 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x14101741 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0x14150a61 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x1416ce5b kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x144dcd34 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x146a4099 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x1476edea devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x1478e646 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x148ff817 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x14938341 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x14a75797 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x14abea42 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x1512bccd ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x15306af7 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x155c9263 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x156db01a tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x1582081a single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x15984c4a device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x15e0fb55 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x160a1be8 blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x1633c9b4 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x1635b3a6 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x1636a890 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x1657bf41 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x16773229 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x167a9a79 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x1694a2d5 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x16a70ea8 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x16a755e1 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x16c34cba addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x16fbd389 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x173cad07 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x17457466 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x1751e81f devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x176f5460 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x179135ee devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x17c05173 add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0x17c5d95a rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x17d10de7 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x181b4bc4 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x1824209a badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x182d649b of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x182f1b41 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x18403c31 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x18570516 pmac_i2c_xfer +EXPORT_SYMBOL_GPL vmlinux 0x1865dd78 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x1869fe00 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x18a82756 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x190634b4 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x19063aa3 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x1954eac3 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x19664ec9 usb_of_get_child_node +EXPORT_SYMBOL_GPL vmlinux 0x197329b1 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19987337 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19ae7ad0 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x19b5fb3c devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x19c8066e crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x19ec48bb device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x19f192bd register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a8c5907 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x1a931169 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x1a93d594 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x1a943533 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x1a9da6c4 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x1aa9f775 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x1aab4cc8 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x1abc12ed balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x1abdd8f7 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x1abe084d fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x1accaeb5 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1ae45a5d governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x1ae9f5a0 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x1aea8ad6 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x1b20ca9d scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x1b258351 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x1b270331 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x1b271f16 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x1b2ce4be cs47l24_patch +EXPORT_SYMBOL_GPL vmlinux 0x1b3a7554 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x1b3e7734 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x1b433f16 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x1b4a8479 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b74b8ad pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x1b87604e dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1bc79e87 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x1bddb236 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x1be08288 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x1bef3d93 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x1bf07ab4 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x1bf5f10e sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x1bfe93fa relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x1c085dd8 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x1c0d963f of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x1c161bb9 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x1c2a73d8 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x1c2f8455 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x1c34aabb power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c603f00 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x1c6cb464 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x1c71f8ac jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c8d28f2 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x1c950728 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x1ca20366 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x1cb66ad5 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x1cdd3681 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x1ce07a81 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x1cf25b1f device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x1cf82066 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x1d07f094 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d4487fc rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x1d45be72 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x1d47ef4c wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d6aa02b devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d78faaf inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1d7cd295 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1d9635de dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x1da7bd07 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x1da7da15 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x1db4b7eb __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x1dbc1d5c rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x1dbecb27 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x1dde7724 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x1de4a6c7 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x1df4d9fd kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x1dfbcf4c mpic_msgr_disable +EXPORT_SYMBOL_GPL vmlinux 0x1e0ba884 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x1e199fcc sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x1e35bb52 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e668d27 static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x1e6fecbb __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e83ae56 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e963718 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x1e9fcf50 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x1ea107ee gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x1ea67e31 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec0085a mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x1ec9c723 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x1edb0fc7 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x1ee97ed8 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x1f00c80c virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x1f0e4761 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x1f18fecc fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x1f420878 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1f6a7245 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8d71c4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1fa28fd2 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x1fb048f9 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x1fb21403 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x1fbcef76 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x1fc04101 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x1fc09c86 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x1fe18ca1 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x1fe98208 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x1fed5bfc aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x20004371 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x20100ced transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x2021eada spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x2049bab8 __destroy_context +EXPORT_SYMBOL_GPL vmlinux 0x205b3328 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x207f5e0d ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x2082740f ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x208d47ef blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x209769a0 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20ac0393 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x20b427bd __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x20df4404 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x20eda350 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x20fea3b3 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x21034ed3 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x2113c153 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x2130d3f7 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x213c4fa0 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0x216fef6d da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x217bd615 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x21912735 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x2197c69f static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x21af326e dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x21bd6d84 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x21c16bc5 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x21c21144 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d37e84 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x21d81a59 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x21e9b2f0 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x21ecad2d pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x22019679 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x22062f90 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x222ca2e0 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x2247d16d sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x2258e1c9 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x2286c1a9 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22aab264 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x22afeaa6 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x22afffb2 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x22edac19 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x22f315b1 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x23031054 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x2331119e hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x233816a5 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x235019fc irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x235544e8 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x2369008b cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x2371e831 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x238060b3 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23882d2e devres_release +EXPORT_SYMBOL_GPL vmlinux 0x23a3b352 netdev_default_l2upper_neigh_destroy +EXPORT_SYMBOL_GPL vmlinux 0x23a3bcf0 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x23bbd9c6 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x23c6f55c i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x23e05585 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x23e1fd27 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x2406dae3 pci_address_to_pio +EXPORT_SYMBOL_GPL vmlinux 0x241d9bf4 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x24346855 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x244e2013 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x244e2c51 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x245c7cce usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x246015fc get_device +EXPORT_SYMBOL_GPL vmlinux 0x24623fa6 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x246c79ca reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x24728e4e crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x24772ebd of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x247e1554 device_create +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24a545a3 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f2145f usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f989b8 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x252328fa iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x2536a2f9 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x255c234a regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x258ef31c ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x25981d02 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x25b0505b crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x25b9f8d9 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x25c07812 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x25ccdb95 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x2618d466 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x26536368 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x266c3d15 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x2674155e cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x26854048 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x268d630a locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x268efd43 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x269008da regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x2691412e boot_cpuid_phys +EXPORT_SYMBOL_GPL vmlinux 0x26947281 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x26a94527 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26b8b501 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x26c50ed7 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26cd2d9c usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x26e7ab9e pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x26e7b9ea regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26ed9fb3 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x26ef6c1a rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x26fe68d7 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x27048862 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x273a6ad7 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x27561e6e phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x276e062a percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x2774bc6a irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x27abefe0 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x27beaccf crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x2814fdd2 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x28211f12 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x2822becc perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x283682f8 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x28468ec2 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x285100c3 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x286260a4 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x286bba74 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x2896a1d4 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x28a718e4 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x28b7c41e dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x28bb72ee gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x28bb9b3a vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x28d1aa82 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x290917f5 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x291c58ed skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x29205bcd rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x292f3e74 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x29310fd8 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x29400297 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x2945cc7e usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x294bf308 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x2965497e devm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x296f8a73 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x297463e4 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0x29ca0e60 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x29d161c5 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x29d54ca4 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x29e07f6c rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a0e919a devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x2a17be95 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x2a263337 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x2a3e6b28 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x2a58dc2f tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a7c4c88 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x2aa7fc0c thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x2ab0ffd8 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x2ad3d09d irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x2aeb4c55 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x2afaef98 of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0x2b1bae0e cpu_to_core_id +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b2b6f08 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x2b322be7 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule +EXPORT_SYMBOL_GPL vmlinux 0x2b69c957 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x2b8fb1df pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c2dfeeb cpu_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c30cb45 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x2c41142d ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2c63ba12 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c97c085 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2c9d7a3c device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x2cc3e675 pmac_i2c_close +EXPORT_SYMBOL_GPL vmlinux 0x2cd34d33 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2d13f40e yield_to +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d231b72 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2d301fa4 get_system_keyring +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d50f98b call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d6d07aa ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x2d7032d1 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x2d7615b2 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x2d7c73b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0x2d814dfa gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x2d906eb1 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x2d9947d8 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x2d9c65f9 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x2dae74c5 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last +EXPORT_SYMBOL_GPL vmlinux 0x2dd10f82 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x2df9ae0d dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x2e09c0ed udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2e1a7399 skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2d6e88 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e2fe5d3 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2e5255d6 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x2e684f60 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x2e6df1d0 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x2e6fe4f5 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x2e792bb1 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x2e95f86e sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x2e98b366 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x2ea286b4 pmf_call_one +EXPORT_SYMBOL_GPL vmlinux 0x2ea3c7ca bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec1ee56 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x2ec405ca device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x2ec97d84 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x2ef4d512 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x2ef6b5bf smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x2f09866c crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f1004cc gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x2f165e24 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x2f2de321 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x2f3a6dae mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f54d402 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x2f56bea4 early_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x2f60ec88 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f6fc257 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x2f7266cc mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2f9cce99 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x2fa7f0c9 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x2fcc9863 __of_genpd_xlate_simple +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2fe6e12f pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x2ffb471f __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2ffb5ff7 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x300bf2c8 udp6_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0x301cd13e sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x304f848e file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x30525979 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x305b7cd2 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x307c9b28 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x30a1c5c0 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30cb9917 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x30ccf402 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x30edfa35 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x31170593 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x311af601 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x31230a6e phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x31438328 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3146aec8 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x3152d316 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x3155e5d7 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x3181c838 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x31a26985 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x31ad5344 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31f78e8b blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x322164d2 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x3227f9a1 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x322a8c0a crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x3249d4c3 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x3258e115 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x327659cd xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x327fcaec remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x3281605d sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x329213c9 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x32a6aab3 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32b2b86a of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32cd5e18 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x32ecd0a2 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x32fef6d2 fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0x33158bfa devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x33227b4b usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x335c09ee pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x335c3484 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x337786fa usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x33bc9968 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x33f677ca devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x340d5346 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x340d9e9e devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x3410c2d6 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x34240b57 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x3443daa5 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x348dfeb2 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x34948df8 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x34990684 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34abf600 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x34d8534e srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x34fa430c rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x34fe312d xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x353c724c rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x35401cdd sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x3548b1e9 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x354e3a3c policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x35707fb4 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x35714f39 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x357bfd80 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x357fcad7 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x358a63f9 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35adc8d7 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x35c80e2d fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x35cf283a perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x35cfcfa6 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x35f9ffd0 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x360ed91d pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x3614a1e6 reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x36169903 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x36184d78 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x364f5104 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x3653ce6b rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x365b8252 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x367145f3 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x3674e961 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x367e8d61 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x3684d8a7 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x3691fb9f virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a93166 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36c61afc regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x36cd78cc crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x36d38368 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36dd7740 ipv6_rcv_saddr_equal +EXPORT_SYMBOL_GPL vmlinux 0x36e13715 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x37076cb4 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x37097603 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x370e9ad2 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x3720dfb0 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x37360440 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x37408866 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x37595517 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x3762cc88 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x376ee297 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x37ca031e serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x37ef4350 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x37fcea45 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x3802a857 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x3809b2fd con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x3809d2a9 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x383272fa pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x385cfa3a ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3882385b sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x3883d903 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38aa843b exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x38ac1cd3 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x38c0bbbd tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x38c1985b bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x38c70bde platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x38ceaef6 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x391ef93a tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x39436035 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x39557175 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x395a107f scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x39676120 sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x397ccbd8 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x397d1d1f bpf_prog_get_type +EXPORT_SYMBOL_GPL vmlinux 0x399a420c wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x39a2502d security_mmap_file +EXPORT_SYMBOL_GPL vmlinux 0x39abddd5 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0x39ae1222 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39d7ddf3 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x39db1b2f __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39eeaaf0 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x39eeedc3 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x3a02777d ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x3a17fbb0 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x3a253be9 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a6aab02 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x3a893229 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x3a8bb4c9 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3a9ce8f4 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x3aad1ebd addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3af9bd3b i2c_new_secondary_device +EXPORT_SYMBOL_GPL vmlinux 0x3b1e87ba __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x3b575c3d pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x3b8aeed0 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x3bbe5c7d virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x3bfb9666 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c3f45af blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x3c453e50 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x3c46b15c fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c9db8b4 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x3ca33d13 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x3caba862 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x3cb8946c bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3d281607 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3d2e3032 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x3d2f66a8 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x3d304deb crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x3d354a9e __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d3a91b5 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x3d42be19 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x3d5b115c tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x3d615aab rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x3da0ecb3 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x3da4afe2 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x3dc215f3 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dcbf67e __devcgroup_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf +EXPORT_SYMBOL_GPL vmlinux 0x3de12dc7 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3deda41a usb_string +EXPORT_SYMBOL_GPL vmlinux 0x3df324f0 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x3dfd2178 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x3e12737b platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x3e23a900 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x3e2ca2c3 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x3e4498a0 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e5e9d22 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x3e6efac9 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e9339cc dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x3e9493ad __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x3e97eb09 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x3eadf17f nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x3eb69845 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x3ec79685 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x3ec95227 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x3eeadd41 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f032feb kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x3f060887 __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x3f07bb9d percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x3f0ade00 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x3f0ba96b regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x3f146825 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x3f18b08f devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x3f1cacda spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x3f1cb321 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x3f1e1f23 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3f2a4a70 dm_use_blk_mq +EXPORT_SYMBOL_GPL vmlinux 0x3f4506d4 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x3f50f122 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x3f55fc64 use_mm +EXPORT_SYMBOL_GPL vmlinux 0x3f64c567 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x3f6ec863 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x3f88d803 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x3f8e6d39 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x3f91bda9 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x3fb416c9 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x3fbe1325 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x3fc291fe ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3fdfd5c8 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x3fe1bc82 rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x3fe91dd7 put_device +EXPORT_SYMBOL_GPL vmlinux 0x3ff282a0 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x3ff44570 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x3ff930d9 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x402564c8 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x4037a1d4 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x403fb5f7 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x4045bb3b arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x40593512 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x40760759 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x40938942 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x40a16473 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x40a62918 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40daa73e devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x40e27fad of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x40ee7ed2 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f1b108 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x41029d5a pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x41198be7 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x411da724 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x4120501e sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x41322612 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x4142f499 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x41567d57 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x41695648 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x4182866a __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4183ebc2 pcibios_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x419d2691 vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x41a2adf9 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x41abead3 store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41e9cf46 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x41f39d35 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x42059a4f arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x422f47f7 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x424d423d wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x4261482f pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x427a066b trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x428952c5 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x4298ec4e usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x429a59e8 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x42cce3f6 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x42de7761 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x42e33a9a cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x42f4615d rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x43071d3b pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x437d4096 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x439e2fe1 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43ac333e sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43d61817 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x43e94dd5 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43fe3c3e badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x445e467e rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x448306f3 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x4491ba0d blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x44a58852 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44dd302c serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x44eff47d percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x4505e422 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x451a7b7c dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x4538a20b max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x4541849c unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x454e98e4 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x4554421f rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x4576b608 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x458cd4f7 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x45acd5b2 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x45b6b719 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45cb29df device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x45f13e15 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x45f84666 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x4602fe7e devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x462324fb inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x4660406a pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x466493e9 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x46661bda trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x466ae826 ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0x4688c96a usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x469005b3 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x46c0e74b elv_register +EXPORT_SYMBOL_GPL vmlinux 0x46cbd3b4 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x46ce7fc3 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x46d68278 pmf_call_function +EXPORT_SYMBOL_GPL vmlinux 0x46d8e115 __of_genpd_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x46d95b87 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x475ee854 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47714a79 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x4773c886 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x477e5a4d bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47c2a3d6 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x4817eba4 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x4820c514 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x485050a4 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x4853bee4 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x4857bd3a device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x4862bd8c cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x488a8f67 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x4894a54c subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x48bb0fcd usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x48dee1a6 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x48e6e773 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x48ead9ae usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x48ebbf2f dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x48f5a3d6 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x49036268 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x490b99ff virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x49295727 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x4938b2e5 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x4943a338 __init_new_context +EXPORT_SYMBOL_GPL vmlinux 0x49753d34 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x497d855e ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x4986df7e __pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49ab53a1 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x49dfab1e xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x49e8d3ec of_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49ef8f8c relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x49f6581b gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4a07f124 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x4a158b80 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x4a2547c2 threads_core_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a3dbd3f sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x4a583817 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x4a889013 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x4a977d0e user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x4a98a520 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ae49ed1 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x4ae8c705 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x4b096c33 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x4b1aa150 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x4b3db062 vfs_writef +EXPORT_SYMBOL_GPL vmlinux 0x4b441288 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x4b7d41ba regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x4b91655e ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x4b969111 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x4ba2ccf9 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x4ba56577 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x4bb26165 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x4bceda09 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x4bd1e8da perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x4bd72551 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x4be489f3 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x4bf86d29 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x4c1fbd89 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c65ae85 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x4c6acb47 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x4c6eb22f usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c76c2e7 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x4c7bf6db __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x4c974760 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x4ca44da9 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x4ca7d978 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d1e8dbc dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x4d40a1ae skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x4d535ba4 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x4d6416ea ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x4d6edaba pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x4d72a42f wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x4d742d7c securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x4d76dc09 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x4dbd885b device_reset +EXPORT_SYMBOL_GPL vmlinux 0x4dc18757 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x4ddcb1fe bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4df35210 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x4dff0037 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x4e069607 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x4e06e0e9 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e39800c usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x4e49a2a9 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4e4b5774 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x4e4d7f14 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x4e68805b __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x4e709fdc sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x4e984dc4 device_move +EXPORT_SYMBOL_GPL vmlinux 0x4eb11abf bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x4eb35054 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x4ec05b5a rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x4ec82e71 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4ed14038 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x4ed31d7b pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x4ef1f807 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x4ef2a0f5 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efbe9bf cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x4efbfe77 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x4f0704b3 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4f185a43 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f43739e bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x4f464dd2 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x4f47fe0d user_update +EXPORT_SYMBOL_GPL vmlinux 0x4f497009 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x4f4b009f crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x4f4bf92c net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4f61e6f4 debugfs_use_file_start +EXPORT_SYMBOL_GPL vmlinux 0x4f631c9c ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x4f64b6bc thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f705502 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x4f774ca1 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x4f820755 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x4f9c5353 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x500eb506 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x507596d8 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x508d20fc crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50a4fc00 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x50ac6a56 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x50b07238 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50c942b0 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x50db94d5 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f1492a ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x50f24a08 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x51044aa7 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x510a8a65 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x510f8163 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x512a83fc inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x51467922 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514df04b mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x517b88cf adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x517c289c crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x51811f94 wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5183c0dc synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x51912552 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock +EXPORT_SYMBOL_GPL vmlinux 0x51c41627 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x51d24bc1 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x51dbeafa pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x51f7b484 extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x521489d6 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x528e3fb3 vfs_readf +EXPORT_SYMBOL_GPL vmlinux 0x529980b1 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x529cacf5 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x52beab61 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x52f5f86c virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x52fea2e6 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x531025c6 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x5311f79c metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x5321fd93 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x53325474 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5356f059 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x535dcb28 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x5366ca41 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x536b8790 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x5372d9bd dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x539fc178 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x53b94135 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x53bba486 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x53db1f35 pmac_low_i2c_unlock +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x541c8843 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x543ce9bc invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq +EXPORT_SYMBOL_GPL vmlinux 0x54717d73 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x5496d696 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54f59776 pmac_i2c_find_bus +EXPORT_SYMBOL_GPL vmlinux 0x54fc507e pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x550731fd get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x552d9b10 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55408311 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x55588218 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x5571bcb0 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x55848802 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x5594e70a sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x55a56be1 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x55afb76d mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x55b21fe8 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x55b23f29 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x55db2b78 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x55e47fdc anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f51ef3 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x5616ff7f ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56301388 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x56454505 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x564915cc devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x5653b0df pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x56652870 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x568ff747 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x56a98e3d class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x56b392e5 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56c80174 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x56ceb887 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e3e86a rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56ed0696 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x56f51ed4 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x570639f4 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x5740c371 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5743ef30 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x576079d7 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x577b058a regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x577ed860 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57d578d5 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x57f471e8 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x57ff1466 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x582b3fdb sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x584ff069 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x5851e659 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58e1bf71 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x58ea6c24 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x58f8a512 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x5941197f __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x595e2384 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x59a72acf of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x59b53424 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x59ba26f5 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x59da69f5 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x59daddb4 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x59df2f6f pcibios_claim_one_bus +EXPORT_SYMBOL_GPL vmlinux 0x59e4f8e2 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x59e570e1 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5a051471 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x5a2d01a6 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x5a337520 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x5a65c37b devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5a6d9a31 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5ab974a5 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x5ab9cc05 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x5aba76aa scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5ac6f931 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x5aea6353 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5af57e05 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x5b096c36 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x5b0d4d43 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x5b13b0c3 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x5b3964fa simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x5b71751d regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x5b933c20 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x5bb25e73 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x5bc36788 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5be9b153 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x5bf2615b ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x5c1c6ab6 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x5c2dae39 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x5c348c5e crypto_has_skcipher2 +EXPORT_SYMBOL_GPL vmlinux 0x5c3f2f8c wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5bdb20 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x5c60ff3a exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x5c8dbe67 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cd4c24a ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d1bafb9 arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x5d1ed8e6 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x5d4e7480 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x5d52e79c xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x5d5dae37 netdev_default_l2upper_neigh_construct +EXPORT_SYMBOL_GPL vmlinux 0x5d5dec93 put_filp +EXPORT_SYMBOL_GPL vmlinux 0x5d9d3a0a ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x5da221e5 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dd921f1 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5dedaec5 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x5df1ec14 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e14c3b4 cpu_remove_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x5e16a292 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x5e181fd0 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x5e189dc0 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x5e23183d device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x5e27357a pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x5e2cdc7d __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x5e475969 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x5e47b4f5 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e5d43bc rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x5e5f000d tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x5e67b71d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0x5e766d70 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x5e7d6dc1 cpu_feature_keys +EXPORT_SYMBOL_GPL vmlinux 0x5e7f2e00 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5e8e8c2f __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5edb6e73 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x5ee2a79c list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x5f0008c6 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x5f0c2da2 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x5f3729a7 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x5f43351d irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x5fc6470b device_add +EXPORT_SYMBOL_GPL vmlinux 0x5ff24cf6 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x5ff493b8 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x6044a3be da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x6091790d pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60adab96 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x60eb78b3 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x60f2a2be dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x60f2b102 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x60f65439 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x6127f4eb percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0x612e9eb3 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x616e0b27 flush_fp_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x61963c09 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x61a37154 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x61aa1e92 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x61ac4419 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x61bad9da crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x61bd2021 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x61c28362 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x61cb7069 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x6210299e scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x6216bd73 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62409146 l3mdev_get_saddr +EXPORT_SYMBOL_GPL vmlinux 0x6267e6ce relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x6286edbe pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x628c9e45 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x628dc0c0 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x6291cbcb platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x62994dc0 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x6299cfa5 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x62ab0b7a pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x62d3aea1 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x62d59c9e trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x62d649d9 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x62e701e0 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x62eab405 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x62fb287c cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x631a33f0 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x632ef203 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x634ae02c fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x634cb552 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x63692c2d debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x636f0846 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x6371d0ea shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0x63836c2e gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x63866a7d security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x639cbd58 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x63ae4c0b eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x63ae86c0 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x63b28d7c spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x63bcaee2 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x63dd712f pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x63fdc314 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x641ecc3e sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x6453f77c pmac_has_backlight_type +EXPORT_SYMBOL_GPL vmlinux 0x645742dc ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x645b0d8e netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x646d12e8 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x647ba980 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x64821854 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x64893e10 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x64a70cfc io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x64aa0e3c pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x64bfcf09 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x64d1ebab perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x64d872b5 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x64e24a5e memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x64f3601c pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x64f5701e __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x6524eede usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x65309c6d __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x65310823 component_add +EXPORT_SYMBOL_GPL vmlinux 0x65414ec5 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x655dbef1 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x656e0d7f ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x6596c1bf rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x65a28198 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x65ac0b35 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x65bc2199 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d7018b attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x65e64f18 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x65e89c9b bdev_dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x663382c0 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x665b6042 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x6667393b debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x667d393e hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x66bb865e subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66c837cc ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x66cfbe13 pcibios_finish_adding_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x670ddb5c rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x672da370 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x673e5a02 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x6753d6c5 mmput +EXPORT_SYMBOL_GPL vmlinux 0x675cfc75 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x6771f94b blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x67885331 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x678b8cbb kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67b82eef serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x67e8fa49 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x67f0135c fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x67f69015 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x67fc8869 of_scan_bus +EXPORT_SYMBOL_GPL vmlinux 0x682057d5 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x68304a12 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x6846cd54 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x6856fd7c crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x6863dbb8 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0x68795fc9 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x68956406 static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x689bcecc pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x68a3dfbd tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x68e9a924 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x68fceb86 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x6914f924 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x691b8fa6 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x6920f6f4 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x693ee285 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0x695a55f6 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x6965be94 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x69788e57 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x697cbbb4 threads_per_core +EXPORT_SYMBOL_GPL vmlinux 0x698536aa posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x69a706c4 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x69b70611 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x69c146df thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x69cb6e5a pmf_put_function +EXPORT_SYMBOL_GPL vmlinux 0x69d1af48 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x69db05a1 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x69e62126 pmac_i2c_get_bus_node +EXPORT_SYMBOL_GPL vmlinux 0x6a4a1c6b blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5445ad driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a6361b9 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x6a7a3ca4 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x6a811b4b bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a88c12f device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x6ab3781f trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x6aeb77cb spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x6b1c798f regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6b1d50fa usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x6b2038d0 mpic_subsys +EXPORT_SYMBOL_GPL vmlinux 0x6b27a848 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b2ee89e power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x6b3f1bf6 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6b416fdc gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x6b5c85dc inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x6b63f8f1 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x6b6737eb component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b874961 input_class +EXPORT_SYMBOL_GPL vmlinux 0x6b88d86a root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6b902520 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x6b9fa524 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x6b9fcbd8 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c1fbfa2 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6c32221f unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6caf6b60 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x6cc030c0 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x6cd0ba03 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cd698da power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x6cd8ede6 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x6cd9ea36 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x6cdbef17 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x6ce50915 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x6d152b97 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x6d1869df ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x6d194d60 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x6d1c88d8 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x6d21a121 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x6d2ed056 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d3ed0fb ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x6d44f8ec crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x6d632910 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6da853c0 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x6db5bfc3 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x6dca0c46 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x6dec1645 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e0560e9 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x6e1e0287 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x6e3e031f udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x6e4a008a regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x6e6cc60a iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0x6e70e0ab ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x6e78a912 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e89f5bb disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6e8dd95c sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x6e9d0393 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x6e9f14a4 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x6f1272b8 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0x6f1906a6 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x6f1ca392 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f524b21 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x6fa0e202 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x6fb004bc tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x6fb3b5e6 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x6fd4caef ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x6fdb928a platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff45ce6 skb_gso_validate_mtu +EXPORT_SYMBOL_GPL vmlinux 0x6ff5acd9 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x70384355 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x704c74f8 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x70b5a87a disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x70c0b792 of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time +EXPORT_SYMBOL_GPL vmlinux 0x70ca0c68 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d56db4 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x70e59f9d disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x70e629a6 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x70f20871 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x7101f37a d_walk +EXPORT_SYMBOL_GPL vmlinux 0x710a927f irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7110b615 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x71245a9a ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71733eb3 security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x71882a0f usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x718da3ff wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x71a3158c stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x71a3391c of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x71b3b9f4 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x71c82bfd mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71e10906 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x720c309b platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x720d4710 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7222a2c2 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x7246d229 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x726a70a0 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x726dff51 of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7279c1a3 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x727a10dd md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x72bb42b8 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x72eb9d82 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x733df2e7 pm_genpd_syscore_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x73462947 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x73541de8 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x73823e50 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x738a8366 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x739aa1a1 pmac_i2c_setmode +EXPORT_SYMBOL_GPL vmlinux 0x73a42efb disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73b088f1 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73c2c7cb rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73cce58f dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73dcefa9 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0x7415ad02 arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0x7439ec88 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x7445dfc6 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x74488dc6 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x7454c026 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x745d5b5a rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x74a10ca8 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c1a310 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x74c92d3a usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x74d007c2 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x74e5dcc8 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x74e66836 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x74ebeb50 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x74ed4650 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x74f7e0b9 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x7516508f pcibios_free_controller +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7531643e init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x75316de5 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x75329035 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x753a9106 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x75692a5f mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x756937c9 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x75740a27 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x757ebc04 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x759db919 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x75a829a2 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x75b966ae sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x75bdf764 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x75c2b9f1 memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x75c9d8c3 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75cccf35 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x75d17d0b pmac_i2c_open +EXPORT_SYMBOL_GPL vmlinux 0x75d6393a da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x75f2a044 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x75fa1132 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x76118dec tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x761ed6ec hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x76214d6c scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x7624e494 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x762c0858 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x763c4a36 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x76474898 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7666a996 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x767a027b init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76c4299b cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x76d84219 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x76f1f0b8 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x771ba12e ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x77554560 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7778dba6 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x77a4fb2f i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77cb6c98 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x780055c4 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x78151326 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x782e78a0 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x782ff48e __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x78547b7e anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785cf1c3 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x786d2985 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x787f1181 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x7890eefd input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78e117c4 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x79103af3 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x791a611e inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x794ed393 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x795e8458 insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x79717550 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x79dc2b5b devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x79dd308c hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79ea8b01 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x79fab182 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x79fb5169 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x7a08cd7a fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x7a1c0bc2 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x7a29e5f0 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a3288ea fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x7a397df7 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7a3a9730 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x7a657bde usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x7a83c944 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x7a89f24e register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x7a8beb4e kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7aae37c1 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7abf5c75 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7acc1cf5 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1620a1 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b4368bb pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x7b5c7ccf add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x7b9b49e6 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x7b9c2f83 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7bafeee5 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x7bd5875d unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x7bd70e3c __dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x7bed44dc wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7bfca386 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x7c2bf1c4 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x7c3503cb ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x7c35aeaf phy_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x7c3ece63 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x7c47ee3d ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x7c48ed7c irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7c4f8535 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x7c5a2a4d sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x7c6a8e8e mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x7c88b6b9 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x7c9e6400 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x7cbc90f4 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d1ca60b __find_linux_pte_or_hugepte +EXPORT_SYMBOL_GPL vmlinux 0x7d261bc4 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7d28c62f pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x7d365c73 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x7d55b2e3 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d68cbda pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x7d75ac16 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7d79b53a pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x7da31389 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7da4024f nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dc1e388 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x7dd12fac register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x7dd1ff14 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddf997a bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x7e02c156 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x7e1100f0 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7e19a412 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x7e2675f1 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7e2aaf33 pmf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x7e2df954 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x7e3b56d7 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x7e4fa18d dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x7e5c7c0b pmac_backlight_mutex +EXPORT_SYMBOL_GPL vmlinux 0x7e608595 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7e986f99 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x7ea57754 security_path_link +EXPORT_SYMBOL_GPL vmlinux 0x7edebeff hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x7eeb3de1 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x7f008202 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7f23f82b od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x7f2ec81f trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x7f389bd8 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x7f462eeb devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x7f4ad4a6 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x7f68854e ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7fabbe9b __module_address +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fcacc57 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fdcdce0 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x80013a7d spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x804a77cd regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x8070478e i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x80788fa4 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x809194bf __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x8092de37 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x8095c789 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x80a7231b sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x80aff263 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x80b30854 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x80bdc6f6 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d385d8 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80e98d48 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x80f94684 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x81022958 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x810de3b0 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x8125a118 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x81543513 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x81562e26 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x81ba5d1e dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x81e4fdae dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x81e9a0cd led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x81fcecc3 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x822c6843 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x823570b7 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x82364547 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x8252cbe6 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x8256d7af ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x82677cf6 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x828b8235 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x829454c7 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x82a7306c perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x82a78d92 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x82c2f0da sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82eaad60 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x832bbe37 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x833bb8b7 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x83669bbb regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x8388e89d thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x839f50fc thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x83a6c910 spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0x83bbe04c bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x83c526ec led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x83c690e9 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x83ca1d64 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x83f6ce36 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x83fc6d27 pmac_i2c_get_dev_addr +EXPORT_SYMBOL_GPL vmlinux 0x841da239 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x845de081 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x846ac1eb bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x846fbfd3 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x848a9474 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84b785c4 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x84c6ee02 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x84fc938c __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x8501cf1f regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x850b63f9 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x851cf9ff verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x852b2d3f platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x8562d2ac pmac_i2c_adapter_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x8597b88f shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x85b39403 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x85ba4de1 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85de0957 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x861e87ba dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x8632fa51 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x8638ff4a of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x863ed9ac regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x8656775d _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x86644ebe ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x866891fc iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x8691b60e mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x86ace4de rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x86b1c9d5 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x86b6b0a9 of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x86c9a29e gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x86d4732b cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x86da86fc crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x872ac149 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x8730499a of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x873840ae pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x87442f09 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x87447e1e trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0x87733768 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x8777df7d __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x87807a81 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x87d71eea cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x87f03c2e vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x8804af3d usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88238d12 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x882a6756 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x885a0186 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8878f0d4 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x88a58cc6 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88c90e08 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x88d31c99 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x88f4d3dc __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x88fe2c7b trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x89240ac6 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x89461c64 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x895ed93c srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8961c8e7 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x899331f5 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x89b2e11a pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89bf0970 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x89dbf5b0 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8a0108ed usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x8a16121d gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a5f86ce fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x8a6fc3e9 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x8a880253 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x8a8c0a46 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x8aba93dc power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac0d3dc set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x8ac4f28b spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x8ac9491c cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x8ad83e34 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x8ae91c66 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x8aea6318 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x8aebb138 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8aebc323 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x8aed0f02 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x8af3d3dd rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x8b1d0aed eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x8b2ae201 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x8b3ffd0b vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x8b466279 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x8b707468 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8b929cef dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x8bbc35da ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x8bbf99e8 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x8bee645b crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x8bf438a2 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c1ae48d skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x8c388ce0 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x8c561993 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x8c5e2d9f usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x8c5fdae9 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c675af8 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8cdd3b1d rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x8d21939c uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x8d23586c security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0x8d71d301 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x8d89b849 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x8da17b42 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x8da8b312 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x8de03f21 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x8dfd5821 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8e0590a3 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x8e06ffbd event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x8e0afc2a usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x8e23d49d xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x8e2af263 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e60d410 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x8e89d7b5 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x8e8b9c23 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x8ed1804b io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x8ee511d6 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x8ee99343 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0fee99 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x8f32ce01 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8fa89cbe __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x8fac3053 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x8fbccf6c raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x8fbd0aa7 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x8fc26c34 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x8fc4fd0f fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x8fd6393c net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x8fd87ab8 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x8fe34dd4 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x8ffdbc1f usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x9019c8fb ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x901d173f ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x9022d5bc memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x905372f1 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x9077d5ea usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x908f537d regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x90971355 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90b003a5 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x90c19168 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x90c47f7b page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x91055d02 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x910ff057 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x911bd4a8 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x91234bd4 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x912df3d6 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x914e1447 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x91569dec wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9158cec0 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x915f01ce phy_init +EXPORT_SYMBOL_GPL vmlinux 0x9163b4fb crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x916c71e8 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x9178ed07 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x917b1140 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x917d51ff devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x9190ac8e usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x919402f1 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x91a8a822 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x91acc63d virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x91afe9d5 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c81f63 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x91d08f4f sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x91e468f1 setfl +EXPORT_SYMBOL_GPL vmlinux 0x923cc244 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x92602cda __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x928bc5e0 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x928ddfa6 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x9290ff6d devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x92ae823a ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92c2e94e xts_crypt +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x9304be28 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x930cb184 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x931627d1 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x931828fb of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x931bf1fd ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x933c49e9 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x935834db pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x93649a7c ping_close +EXPORT_SYMBOL_GPL vmlinux 0x937cdb7e rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x937e49ca dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x93a0cba4 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x93a248a8 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x93a2cb47 reserve_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x93b6c315 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x93c3e9ae ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x93cbc0bd sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x93d00c08 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x93d30b9f sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x93e2d8e3 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x93e372ee of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0x93e47cce posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x941c599d irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x942bde56 split_page +EXPORT_SYMBOL_GPL vmlinux 0x9432b036 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x947b1457 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x948195fe blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x949173f4 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x94920fe7 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x94cf0df4 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x953a7bc6 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x954f3d28 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x955f3a9e dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x95641171 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x957abae6 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95949d49 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x95a16393 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x95a7e582 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95c1ec66 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x95cf7d02 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x96426c22 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x96471d20 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9655b911 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x965981f0 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x9660a52a agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x96718dc8 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x96753721 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x967764f8 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x968bc24d event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x96b14e73 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x96c47dc8 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x96c847c4 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x96cf6084 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9704dd56 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x97061285 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x970f7713 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x97192aad bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x973401b7 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x97350cd2 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x97809668 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x97cc8941 udp4_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97ea8702 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x97ee5669 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x980cab06 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x982cd486 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x982d8799 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x983d5cd0 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x98696c9c usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9884bb89 blk_mq_reinit_tagset +EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x98a9c4e4 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x98be9e13 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x98d86dd7 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x98ffc422 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x990fff3c pmac_low_i2c_lock +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x992b630f of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x99436c89 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99bf843c list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x99ce0592 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x99e9f4b6 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a3c270c md_stop +EXPORT_SYMBOL_GPL vmlinux 0x9a45253b sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x9a5cf1b6 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9aa88a1a inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x9aad6540 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9aadc337 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x9aaf9093 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ac25ba5 of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x9ac9e0d3 do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0x9ad96ef5 pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x9ae11d14 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9aeacff6 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0x9b0477e5 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x9b394f1c crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x9b50aa7a devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x9b8016b7 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x9b803641 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x9b8b80a7 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x9bbd5592 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x9bc72547 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x9bd23b06 cpu_remove_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c093958 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x9c137b63 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x9c16b813 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x9c203f5d ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x9c2db75a pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x9c3f04a2 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x9c3ff9f5 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x9cb87dbc blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cf26b26 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x9cf315ce adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x9d22ab00 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9d282c53 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9d2f3be0 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x9d31d514 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x9d3a3192 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x9d3fbe2f dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x9d6d7f0a __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9d9e6504 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x9dbfd4d9 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x9de9de45 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e0c4fcc regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x9e16dcf1 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x9e1ebaf8 md_run +EXPORT_SYMBOL_GPL vmlinux 0x9e20f589 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e50a571 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x9e553db4 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x9ea59f9f usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ef067d1 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x9f68c31d crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x9f69a061 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9f6b6400 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x9f6bfc06 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x9f869d36 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x9f87ba20 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x9f8b8adf kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x9f8ceb0d usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x9f93c9b9 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x9fa1fce3 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x9fbc2ccf component_del +EXPORT_SYMBOL_GPL vmlinux 0x9fcaca0b __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x9fcc7d00 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x9fcdf8c1 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9ffd9017 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0xa0023418 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xa0028208 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xa00a8e6f of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0xa00c1268 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xa0288635 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xa02a0757 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xa02b21c3 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xa041372a bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa04b2773 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0xa06be6b6 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xa0756b48 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0xa0b2a0d5 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xa0c2100e debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xa0c93cc7 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xa0da78cf regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xa0faa364 pcibios_free_controller_deferred +EXPORT_SYMBOL_GPL vmlinux 0xa0fb71ea bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa11bf6ce blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xa11cbeba ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xa13ed0ab ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xa13ede74 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xa15d77e7 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xa178bce3 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xa18165fc class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1ac7685 cpu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0xa1d6c93b wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa22d9c91 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xa23618e4 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xa2373b32 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xa25bcf29 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa270ba82 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xa27ae248 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xa2928ce4 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xa2a17005 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xa2a354ba platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2c04001 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xa2c1a6c3 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xa2d0468b __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xa2fac0e2 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xa2faf172 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xa309097b udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa3094f72 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xa31c47dc kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xa329e1d5 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xa32c7a3d wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa33141f8 pcibios_scan_phb +EXPORT_SYMBOL_GPL vmlinux 0xa3543ebf ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xa3743286 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xa375f92b usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a43b __of_genpd_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa38d2207 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xa3932669 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xa397eed3 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a223e8 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range +EXPORT_SYMBOL_GPL vmlinux 0xa3a613c1 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3bb4acb dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0xa3c6f8b8 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3e7e417 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa3fcdac6 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xa40f8483 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xa42b25eb rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0xa4327575 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xa447c24c rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xa452f010 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xa4807b6a devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa49ae287 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xa4a51fed pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xa4b058d7 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa4b9e332 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xa4e7230d rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa4e78c8e of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xa4f47420 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xa510f6c7 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xa51885cc ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xa52ab86b devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xa53134d2 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa556b5cd devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xa56091f1 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xa56481c4 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xa5669e8b bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa57242ad usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xa57726a1 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xa57b2505 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa57b6a8a crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xa5849388 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xa58cd175 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xa5a9ea53 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa5ae78ba wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq +EXPORT_SYMBOL_GPL vmlinux 0xa5dd6368 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5efe460 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xa5f71d6a bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa607e3d1 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xa621d71c iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xa6228557 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa6284e34 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xa637f444 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0xa649a9ae class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xa64e72af wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xa674f3bd shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0xa69107ed stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0xa6a98d02 mmu_feature_keys +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6ea917e sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xa70e87ae akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xa73977a3 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xa74fc9e0 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xa76589e6 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xa77269c2 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xa7732748 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xa7780547 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xa778d1b5 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xa77da3b1 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xa78e5ce8 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xa7ad5a19 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xa7cdd8ca wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0xa7e0c2b7 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xa7e43e29 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa808125c mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xa82ce15d inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa865c230 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8cbe317 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa8d74eb9 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xa8e3eedd get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xa8ff8ffa __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xa901e42c usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xa9091469 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xa916720b pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xa92907b2 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa94d551b securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xa95bc92f usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xa95fd54e static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xa962f85b xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xa9669249 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xa9958cf8 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xa99db435 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9b04404 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xa9b94baf ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xa9ba7c8a irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xa9bc6a07 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa037339 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa5793fa fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xaa5fbe28 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xaa7ce345 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xaaa90559 phy_create +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaabde11 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xaaaf8b0c i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xaab30cd0 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xaad3c0be loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0xaaf5d5f7 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xaafe8ad1 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xab0e7564 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xab15ee61 dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab3a32a6 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xab4711b8 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xab4ee961 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0xab547222 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xab619ac8 isa_bridge_pcidev +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab8d5af7 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xabc28a7c adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xabc4768e tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabce5a1c add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xac05d723 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xac126f27 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xac2b81d3 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xac45c59d bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0xac5e427c user_read +EXPORT_SYMBOL_GPL vmlinux 0xac735c15 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xac892ec6 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xac96492c mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xac9d313f pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xacaed8da gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xacb4226a __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xacb6580b usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xad113bf5 macio_find +EXPORT_SYMBOL_GPL vmlinux 0xad16ebbe fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xad2e4b91 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xad3c73c6 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xad8b47b2 open_check_o_direct +EXPORT_SYMBOL_GPL vmlinux 0xad909af8 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xad9c55ee __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xaddc4dac bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xade3b11e usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xadeba5db usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae0e86f7 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xae12970e skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xae177b39 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xae5ab583 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0xae62d8c0 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6f9948 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all +EXPORT_SYMBOL_GPL vmlinux 0xaea2aa24 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xaeb7f554 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xaec7bc04 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xaecde435 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0xaede2521 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaede3866 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xaef7310d __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xaefc9037 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xaefe264a mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xaf03b9dc blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xaf213ee6 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xaf2d3395 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xaf398f49 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xaf42972e pmac_i2c_get_controller +EXPORT_SYMBOL_GPL vmlinux 0xaf68ac23 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xaf6b1aa8 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xaf72c2b9 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0xafd52fea scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xb00a78de thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0xb00b75c0 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xb0204a4e setup_irq +EXPORT_SYMBOL_GPL vmlinux 0xb02d014c of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xb02e08f2 vmalloc_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xb0311ca4 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xb0379865 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0xb04eeb50 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xb059297e crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xb0669548 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xb0747c85 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xb0913148 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xb09532af user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xb0aaa3d1 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xb0ad6c98 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb0adfa37 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb14f7895 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xb1572680 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0xb16167d1 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xb17c8644 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xb17e4ddc splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1862aec pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xb18cbbe9 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0xb19d3ba8 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1f892c2 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2256567 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xb267bdbb crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xb27a84a1 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xb27df075 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xb2856d3a blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xb286cfde dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xb2a56440 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xb2ab6d25 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xb2ba75a8 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xb2c8f2db regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xb2d1d756 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2f07ab9 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xb2f5cff3 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xb3091616 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xb30e08f4 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xb319f65b bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0xb3301cda subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xb3305186 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0xb339f53c blk_poll +EXPORT_SYMBOL_GPL vmlinux 0xb33dad00 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xb3462e07 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xb35736ad __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb38eb555 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xb3cad55b raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xb3d57360 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xb40976f9 of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0xb4112090 get_empty_filp +EXPORT_SYMBOL_GPL vmlinux 0xb4138640 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0xb43d4a5c __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xb454bebb pmf_get_function +EXPORT_SYMBOL_GPL vmlinux 0xb46ef758 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns +EXPORT_SYMBOL_GPL vmlinux 0xb494ed3e ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0xb49b92f6 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xb4a96bba devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4e719ca ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4ed679a debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xb504b881 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb538377a lock_media_bay +EXPORT_SYMBOL_GPL vmlinux 0xb54d40db cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb565466a irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb592c73b devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xb595824f of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xb5976cfa kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5a7a44a usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5b1877a usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xb5c8edf4 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0xb5ddc046 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb5f392e2 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xb5f5b678 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xb5f9c5ae badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0xb5ff0ecc virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq +EXPORT_SYMBOL_GPL vmlinux 0xb61108ee pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb62e4d2e alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xb63b00ff gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xb6611eac devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb67a21d2 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xb691037f trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0xb6972f1e usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xb6a3cc55 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xb6a8179d devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6b83db5 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xb6c825b2 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xb6db8aa2 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xb70332d8 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xb711d130 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xb71a8e89 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb72f143c clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xb74091e3 do_truncate +EXPORT_SYMBOL_GPL vmlinux 0xb74bb27a i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0xb7627b23 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xb79fb656 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xb7a03df3 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xb7bd3ec3 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7d80861 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0xb7f04e78 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb7f8b08c __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xb7fbc018 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xb8322f89 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb841fcc7 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xb870df08 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xb883206b hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8953621 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0xb89dc06d gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0xb8be4e07 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xb8cc94f5 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8db1019 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xb8e11a2c regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xb8e3bf0d synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xb922df3d mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xb9243d68 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xb92eb91e phy_put +EXPORT_SYMBOL_GPL vmlinux 0xb930d297 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xb9574f43 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0xb987c2d2 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xb98b02da sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xb9993334 ata_pci_device_resume +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 0xb9d7bf61 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xb9ea2c84 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xba158769 rtas_cancel_event_scan +EXPORT_SYMBOL_GPL vmlinux 0xba29097a blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba32b808 pmf_do_irq +EXPORT_SYMBOL_GPL vmlinux 0xba3592d2 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xba8bafd5 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbaf2d214 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0441b0 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb12d64c tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0xbb1631b3 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbb40a068 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbb4b5f1d cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xbb79327f tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0xbb80d24b public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xbb888149 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xbb8dd19e regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xbb95c8f0 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xbbbc1ec0 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xbbc293a9 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xbbd52416 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xbbd7ca80 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xbbe8a47f ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xbc151b2c blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xbc58a7a3 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xbc5e58af regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xbc64f6ea pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcac7a9b sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xbcaf9a9e tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xbcafd60f scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xbcb7f9eb cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0xbcdfc896 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbd1ae046 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd768b83 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xbdb8c328 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xbdbbec84 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xbdcff05c regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbdd829d5 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xbde8dc00 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xbdf185dc __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xbe064023 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xbe068eda sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe1b529d rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xbe1b8579 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xbe2712bc percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbe432d8b ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xbe451ec0 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xbe4bc404 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xbe551357 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe779380 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xbe818df5 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xbe88919b crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbea92283 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xbeade0ea vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xbeba1163 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xbebd52cb dm_hold +EXPORT_SYMBOL_GPL vmlinux 0xbee31cb5 save_stack_trace_regs +EXPORT_SYMBOL_GPL vmlinux 0xbefd074b of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0xbefefad6 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf1386a3 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xbf27f250 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xbf62f116 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0xbf631ca0 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xbf6d1ae3 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xbf8befbd ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xbf9cc305 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xbf9e3200 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xbf9e3e24 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfcc0e72 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xbfcc52ae dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfe76aa0 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbfe99f34 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 +EXPORT_SYMBOL_GPL vmlinux 0xc01c6575 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xc02bec3c usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc03e87d3 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xc05b2452 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xc061367e mpic_msgr_get +EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread +EXPORT_SYMBOL_GPL vmlinux 0xc06d41df sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xc06dd58c ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xc07a2a6e screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xc080b286 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0933e0e cap_mmap_file +EXPORT_SYMBOL_GPL vmlinux 0xc097953e nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0xc0a81d33 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 +EXPORT_SYMBOL_GPL vmlinux 0xc0ebe2a9 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc1474d70 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xc163d51b trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xc1659e2d dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xc16a248f unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc18a4821 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xc196d3ab handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xc1bf1278 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xc1c8f454 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xc1dd3787 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc1f79cc8 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xc202f919 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xc225b631 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xc227ca71 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc23aecff ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xc258338b pmac_i2c_match_adapter +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc29a180f ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xc2a99ddc pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc2ce755d __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xc2d7cf72 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0xc2e81b9e devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xc2f64b3c perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc352a8f8 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xc359c9a8 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xc35a1bc2 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xc3714a6a __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc3988048 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xc3adb56d perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xc3f10b66 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xc4017060 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xc408e9f4 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xc41d8005 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc44b47b5 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc47f257f __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4914a13 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0xc49cb197 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xc49f1c5a devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc4d1825a __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xc4dddc3a pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xc4e69605 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xc5049881 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xc5135ce7 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc54e8558 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xc5545fbd of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0xc56e4af8 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5878314 blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0xc58a1687 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xc5a2c19f idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid +EXPORT_SYMBOL_GPL vmlinux 0xc60ab05f led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc615315c regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc627431a alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc63efc86 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xc644de28 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc64dae8c scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc67c135a gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xc67f08cc __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xc68aa252 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc68bb5f6 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a35740 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xc6c57c67 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xc6cd2d21 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xc7125167 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0xc7232017 flush_altivec_to_thread +EXPORT_SYMBOL_GPL vmlinux 0xc7271689 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc7416c17 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xc7713b79 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xc7716293 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0xc7781390 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xc779d8b4 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a8497a device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xc7b2320d blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0xc7c73f8a cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xc7ce5ddb unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xc7dcea94 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7f5e2ea scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xc8248a1f devm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xc82af057 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xc8341231 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xc874fa0d spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8b106be of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0xc8c84cd0 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xc8c8a26b badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xc8d5d28d pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8f24f29 serial8250_em485_init +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc92da9ca ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc97e9bff register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xc9912c83 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0xc998373b pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xc9a3b0dd inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xc9ad92af dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xc9b789b3 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xc9bd9dda attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xc9bf6498 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca09653f extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xca328763 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xca3ddd06 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xca3ec1df devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xca5004c9 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xca5762b4 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xca7c356d thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca9bd25f __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xcaa175f2 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcadeaaca security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0xcae87bb1 regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xcb0217fb extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb16eda3 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0xcb209ed9 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xcb2c3f1d invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xcb506c9d irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xcb54eba1 pmf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xcb5ee621 hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xcbc750ae tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xcbc80ced serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbf8fa98 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xcbfd10dc netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xcc0d296c get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcc2a4923 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xcc2ba30d list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xcc4c53c4 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xcc4e9bcb cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0xcc512d4f posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc731f3c register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xcc7cb5f1 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xcc806fab dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc8ab9c5 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xcc8fcd22 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xccc3a3e2 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xcccb6625 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccf53b0f md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xccfd6089 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xcd1645c2 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xcd268447 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xcd40ef07 mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xcd44de17 irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xcd532cee ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xcd57b92f pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xcd647592 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xcd6492ab trace_seq_putmem +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 0xcdb4db93 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdcbc99c dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xcdce1161 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0xcddbb1d7 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xce18c37c __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xce2c459a cs47l24_irq +EXPORT_SYMBOL_GPL vmlinux 0xce60ea71 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce831c7c evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xceb08306 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xceb279c9 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xced2a20b xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xcedd981f ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcf02f5f4 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xcf07d8d0 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf68db7d __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0xcfb1c0e4 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0xcfb38214 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfc9cf89 debugfs_use_file_finish +EXPORT_SYMBOL_GPL vmlinux 0xcfe2dbe2 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xcfe4b906 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd04c387a device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd0738eac devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xd080b7c7 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xd0888070 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c5f172 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xd0c9af3d kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xd0cc805f ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xd0d69287 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xd1389ef1 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd1717747 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd175e799 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xd1822f0b cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd1c353eb regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1f8c9a7 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21b3cee sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xd21e226e mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xd2587238 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd273c923 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xd2872d13 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0xd28bd531 check_media_bay +EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd2c9049e cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd3038a8e get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xd3126d0b of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xd3151797 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0xd33cc52b crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xd37af028 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xd382b0d4 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xd3943bd2 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xd39bfd38 pmf_unregister_irq_client +EXPORT_SYMBOL_GPL vmlinux 0xd3ab4ead wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xd3b7c004 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xd3c36587 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xd3d2d9c3 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xd3d63f58 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xd3f4eb7d blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd3f5d15f spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0xd40035c7 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd40e848b regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xd4166223 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0xd41bd452 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd4b4cc85 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4d2e3a4 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xd4e818a7 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xd50ec8b1 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd53a58ed set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xd544cb70 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0xd552efde __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xd56276ef shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xd56f8d9d trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xd58b70b9 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd59f6e1a __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xd5b04f81 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xd5b85c98 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5c7124e dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xd5e7fd79 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xd5f32fbe fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0xd60b3128 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd6299dfd dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xd660d807 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd679eeb9 securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0xd67e9a74 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xd696b8b0 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd6a463d9 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xd6a80824 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xd6b887cf thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd7014ecc __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0xd70588d9 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd7236056 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xd7254a8f tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xd731e78c tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xd7616126 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd77c99d3 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0xd7857f9d blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xd7baf3fb dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7fc3e98 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xd8081fa6 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xd80a061d sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xd818d715 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd8236584 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xd83a983a xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xd8507587 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8c1b968 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xd90eb76b gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0xd91a04e8 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xd9294740 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xd92d0568 extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0xd932e96d gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd93a8c57 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0xd950ef3f platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xd96546af ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd9a0f5aa blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xd9a4d5da __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xd9a6cc47 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd9b77daa anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd9c7499f generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xda0a4d22 mpic_msgr_enable +EXPORT_SYMBOL_GPL vmlinux 0xda1ae375 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xda26d000 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xda2e8285 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xda431e44 unlock_media_bay +EXPORT_SYMBOL_GPL vmlinux 0xda5a8cae regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xda5f80aa gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xda67593b ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xda6b9f7b pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xda9529a1 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0xda967bbc cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0xda9691b0 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xda97448b pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0xdac373e2 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0xdadd0074 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xdadf5523 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xdae3752b inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaffb1b8 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xdb12366a tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xdb2302c2 do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0xdb2d9c5d skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xdb445a33 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb4be59f tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xdb5583dc tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0xdb566dee rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xdb6e5abb usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xdb809610 security_inode_readlink +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb94048e __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xdbaeac48 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xdbb2aa0a pmf_do_functions +EXPORT_SYMBOL_GPL vmlinux 0xdbe7026c led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc1c379d __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0xdc461430 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xdc4b9adb iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xdc8133bf of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc92ff3f rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca78db3 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xdcba6f10 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xdcbcfd93 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xdcbf5955 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xdccfe12b crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xdcd0a0b4 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd2f8490 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd729424 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xdd77d556 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xdd7b31e0 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xdd96651d dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xdded2199 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xddf81d52 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xddf9cc65 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xde3580af blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xde79f70e tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xde873e1a rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0xde8b7f53 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xde9061dd ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xde91e0c6 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xde9463a6 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xdea0d3e3 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xdeb4dcc8 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xdeea7811 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0xdf08d7de l3mdev_get_saddr6 +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf1c79de update_time +EXPORT_SYMBOL_GPL vmlinux 0xdf5382e7 security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0xdf6b7d4d gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xdf769459 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xdfa53692 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xdfd66372 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdfdd6116 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xdfe3f274 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xdfec6755 of_display_timings_exist +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe014bb71 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe01522cb virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xe02b03c1 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xe02d8091 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe036b3e9 mpic_msgr_put +EXPORT_SYMBOL_GPL vmlinux 0xe03da1a6 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xe045eef7 spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe07ca631 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xe080f5dc pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0968e55 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xe0a62815 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xe126e30f class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xe1279c18 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xe12b1a9e regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xe1404440 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xe14267bf pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xe16d680f ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1d67cc8 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xe20014d1 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xe22a2109 spi_flash_read +EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe243d48e vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xe24d4954 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe289cd3c pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe2a00cd1 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xe2d2af21 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe2e18284 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xe2f40c2d power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe31bb4d2 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0xe3409e14 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe35ac9b8 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xe3626a2c do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xe36ea22d fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xe37af6f7 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xe39f66ca transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xe3b6afda __class_register +EXPORT_SYMBOL_GPL vmlinux 0xe3babbb8 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xe3cb6b5d devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe3e7bef0 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0xe3f0bba4 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xe40e5d7d rcu_exp_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe43d7395 security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0xe43e4be9 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xe45585ef of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xe456a01c of_genpd_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe493b872 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4a458cd crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xe4aad4bd wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0xe4add3b4 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xe4b875a8 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xe4c031f8 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xe4c61978 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe4e1b07f mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4eeeaf1 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xe515db7d rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xe536f2fa arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0xe5534edb thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xe5696ec8 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe589736d inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe59f3023 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xe5ca755e wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xe601f8d6 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xe61bbf89 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xe61e34db regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe671f33c pmac_i2c_get_channel +EXPORT_SYMBOL_GPL vmlinux 0xe67fd992 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0xe6b175f6 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6cc2fcf devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe6d2befd devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe6d85a2e regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe7145917 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe75b58ea vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe76cce3b __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xe77872c6 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xe7811001 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe7a2cea0 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xe7b77a63 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xe7c95047 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xe7dd50d2 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore +EXPORT_SYMBOL_GPL vmlinux 0xe7f6e433 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe800b0b5 security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0xe804a323 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe83080aa pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xe839a7de kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0xe84004e9 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xe84580db pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe85c55e7 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe8695286 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xe87634bd __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xe87ae084 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xe88e49f1 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xe8adb62a ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xe8c2e68b usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xe8ca783c pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0xe8cd3350 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe8dbd554 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xe8ed879a serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xe8fadb3b tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xe90fadb8 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe931f5ea pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9474bde dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xe950f604 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xe9579af1 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xe9748984 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0xe98438b5 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xe98f0943 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xe9c3e44f relay_open +EXPORT_SYMBOL_GPL vmlinux 0xe9c9f59c inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea17b0f3 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xea31a185 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xea3be5a2 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea53c660 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xea5fd66c fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xea662b56 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea9a49b5 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xeaab5966 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0xeafaaa28 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xeb235224 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0xeb24d1bf __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xeb2a7f78 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xeb8ae736 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xeb922f5e tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xeb953c50 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xeba73558 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xebaf8c63 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0xebdb31d4 analyse_instr +EXPORT_SYMBOL_GPL vmlinux 0xebdec41e usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xec07865e debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec282df7 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xec2be2f2 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xec2d1e83 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xec424a47 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xec54ad7c usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xec625181 device_del +EXPORT_SYMBOL_GPL vmlinux 0xec74b8ec of_css +EXPORT_SYMBOL_GPL vmlinux 0xec97e5cf ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xecab20fe simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xecafd0b2 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xecb87005 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xecc0f3cf platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xecdac1cd ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xecdfed54 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xed06c5cb pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xed1f517f devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xed3b7df0 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0xed61a2e5 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xed6feaf4 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xed8a6c03 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xeda78d10 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xedd49c91 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xedd4ab27 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xedd93bb7 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xedf08314 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xee0edc77 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xee10a473 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xee3e0d63 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xee4a99d9 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xee4f9dd0 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xee52541b static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0xee5be9fb handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee778b83 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0xee7e0377 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xeeb84204 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xeeb9c9c0 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0xeebc7df7 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xeec18bf7 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xeec6845c usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xeed06618 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run +EXPORT_SYMBOL_GPL vmlinux 0xeef4c8bb inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xef0fd127 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xef3a2259 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefacc89d dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xefb1368f sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xefd9c95d pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xefde0191 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xefe377ea of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0xf003ad41 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xf0077e46 security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0xf02dd602 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xf032c4ab page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf0414c4f vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xf04198d9 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf048433a blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0xf048e68f power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xf05d19a3 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xf067376c da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf0946d9a blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0xf0947680 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf095569a gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xf0bf280e ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xf0c361ce stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0xf0d77a11 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf111ef5c pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0xf129a40a mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf12bf7ac ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xf15bb8b0 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xf16bc5ba sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xf174e322 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xf177d50b device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1b896cd pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xf1c98445 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xf1dd3102 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xf1e66d85 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf1e8a3af usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xf1ea3013 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf23428bb tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf277908d scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf298722f of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xf2a165e5 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2c7b53c device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0xf2e2dd20 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf307b1c5 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0xf308e3df bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf31cbb95 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf352099c usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xf35552ab bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xf3640ec8 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf37f4227 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3822a66 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3e856b3 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3fe756b phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf40204bf lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xf419fabf ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xf41b5283 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xf4297f06 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf43200cd pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xf44e5252 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xf45a64b0 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xf45fef36 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xf466e755 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xf48ae20e xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf497c3d8 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4c8c6d3 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xf4e624fd virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf4ff3372 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xf5118326 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf51887ea user_describe +EXPORT_SYMBOL_GPL vmlinux 0xf5224040 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xf52c20d7 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xf538509d pmf_find_function +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf553a85f __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xf5783cc4 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xf57c17a8 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xf59034e3 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xf5908022 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5b6ffbc crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf5bcf1b2 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xf5d252c8 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xf5d7fae8 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xf5ed7390 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xf5f3f177 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xf6035049 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xf60a1504 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xf6316837 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xf643c119 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0xf683de1e pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xf6895718 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xf68e3c52 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xf6c63f50 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6deeb5a single_release_net +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks +EXPORT_SYMBOL_GPL vmlinux 0xf6fe9b3b dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xf75434b5 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf75ac79b inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xf75be564 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xf769b123 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xf770b4a2 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xf775a04a ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xf79cafda crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xf79d2e0d mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf7b87d8f task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xf80cc0e3 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xf82e03ab cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf8391f78 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xf846506f irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf8476b3a skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xf86c987c flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf8a3e43e tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xf8e30ff7 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8efe41c ip6_input +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe26ac devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf900cf3b subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xf9040422 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xf91e870a apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xf9259113 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf93eab54 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xf9408a5e rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf95e6505 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xf978bf90 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xf98dfe6c gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf99f7391 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9d7cce4 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0xf9e78aa2 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf9fdd8f9 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa6bd75a rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xfa9349a0 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xfa9b8286 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xfa9d1989 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xfacb3f51 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xfad39b84 pmac_i2c_get_adapter +EXPORT_SYMBOL_GPL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL_GPL vmlinux 0xfb052ca5 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xfb14e143 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0xfb27c8bd driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfb2b0d7f __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0xfb2e8e00 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb525dfc pmac_i2c_get_type +EXPORT_SYMBOL_GPL vmlinux 0xfb52b77d __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0xfb5a9edc sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xfb5e21ee tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xfb628209 path_noexec +EXPORT_SYMBOL_GPL vmlinux 0xfb6da157 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb7b81c8 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xfb8c1958 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xfbacfa55 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbf8b784 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xfbfed82f device_register +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc12defb sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xfc1324eb watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0xfc51b23f simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xfc91a425 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xfcadbf7f devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfcb59d43 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xfcb5f125 tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xfccaa091 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xfcce9f61 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xfcdac9dc usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xfcddcae2 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xfcf49377 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xfcf628e9 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xfcf69b48 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfcffb4e1 pmac_i2c_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xfd15711e mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0xfd1b5618 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xfd2617c7 of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xfd846f43 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xfd9d9157 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xfdc80fa4 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0xfdd3fbbc __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xfde81e24 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xfe1645bd fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xfe229630 dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0xfe328655 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xfe3d1850 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xfe4e6bf4 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xfe4f3eb9 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xfe8fcb04 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfea3e62a ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xfea95ec7 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0xfeaa940a virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfeea7c51 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0xfeeaf017 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0xfef29c58 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xff02d0c3 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff3d8ab5 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff763baf irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xff7e57dd gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffbe921c trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xffdbf34e of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0xffe17893 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xfff9dd0f ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xfffed3e4 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xffff32a7 ata_scsi_ioctl --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/powerpc/powerpc-smp.compiler +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/powerpc/powerpc-smp.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 6.2.0-5ubuntu12) 6.2.0 20161005 --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/powerpc/powerpc-smp.modules +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/powerpc/powerpc-smp.modules @@ -0,0 +1,4494 @@ +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_dw +8250_moxa +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +BusLogic +DAC960 +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +ac97_bus +acard-ahci +acecad +acenic +act200l-sir +act8865-regulator +act8945a +act8945a-regulator +act8945a_charger +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5761 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7606_par +ad7606_spi +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +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 +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adf7242 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16209 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7170 +adv7175 +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +afe4403 +afe4404 +affs +ah4 +ah6 +aha152x_cs +ahci +ahci_ceva +ahci_platform +ahci_qoriq +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airo_cs +airport +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +ali-ircc +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am2315 +am53c974 +ambassador +amc6821 +amd +amd5536udc +amd8111e +amdgpu +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams +ams-iaq-core +ams369fg06 +analog +analogix-anx78xx +anatop-regulator +ans-lcd +ansi_cprng +anubis +aoe +apbps2 +apds9300 +apds9802als +apds990x +apds9960 +apm-emulation +apm-power +apm_emu +apm_power +appledisplay +appletalk +appletouch +applicom +aquantia +ar1021_i2c +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arcpgu +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +asc7621 +ascot2e +asix +ast +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atlas-ph-sensor +atm +atmel +atmel-flexcom +atmel-hlcdc +atmel_captouch +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atusb +atxp1 +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avm_cs +avma1_cs +avmfritz +ax25 +ax88179_178a +axnet_cs +axp20x +axp20x-i2c +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_epp +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7xxx +bcm87xx +bcma +bcma-hcd +bcmsysport +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780 +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bma220_spi +bmac +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmc150_magn_i2c +bmc150_magn_spi +bmg160_core +bmg160_i2c +bmg160_spi +bmi160_core +bmi160_i2c +bmi160_spi +bmp085 +bmp085-i2c +bmp085-spi +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bonding +bpa10x +bpck +bpck6 +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +bq27xxx_battery_i2c +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt3c_cs +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btuart_cs +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +cap11xx +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +cec +cec-edid +ceph +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipone_icn8318 +chipreg +chnl_net +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +clip +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 +colibri-vf50-ts +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 +configfs +contec_pci_dio +cordic +core +cp210x +cpia2 +cpsw_ale +cpu-notifier-error-inject +cpufreq_schedutil +cramfs +crc-itu-t +crc32_generic +crc7 +crc8 +cryptd +crypto_user +cryptoloop +cs3308 +cs5345 +cs53l32a +csiostor +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +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 +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cxgbit +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +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-regulator +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 +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +ddbridge +de2104x +de4x5 +decnet +deflate +defxx +denali +denali_pci +des_generic +devlink +dgnc +dh_generic +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +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-verity +dm-zero +dm1105 +dm9601 +dmfe +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +donauboe +dp83848 +dp83867 +dpt_i2o +drbd +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1803 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +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-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +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_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc2_pci +dwc3 +dwc3-pci +dwc_eth_qos +dwmac-generic +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +earth-pt1 +earth-pt3 +eata +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 +ecdh_generic +echainiv +echo +edac_core +edt-ft5x06 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efs +egalax_ts +egalax_ts_serial +ehset +elan_i2c +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emac_arc +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_pcmcia +ems_usb +emu10k1-gp +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +eni +enic +epat +epia +epic100 +eql +esas2r +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max3355 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f75375s +f81232 +fakelb +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_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 +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdp +fdp_i2c +fealnx +ff-memless +fid +firedtv +firestream +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fl512 +fld +flexcan +flexfb +floppy +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +fmvj18x_cs +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fou6 +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fsl-edma +fsl_elbc_nand +fsl_lpuart +ft6236 +ftdi-elan +ftdi_sio +ftl +ftsteutates +fujitsu_ts +fusb300_udc +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 +gcm +gdmtty +gdmulte +gdth +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +gf2k +gfs2 +ghash-generic +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-addr-flash +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-altera +gpio-amd8111 +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-fan +gpio-generic +gpio-grgpio +gpio-ir-recv +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-max77620 +gpio-mc33880 +gpio-mcp23s08 +gpio-menz127 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-pisosr +gpio-rdc321x +gpio-regulator +gpio-syscon +gpio-tpic2810 +gpio-tps65086 +gpio-tps65218 +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gpio_wdt +gr_udc +grace +grcan +gre +grip +grip_mp +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 +gtco +gtp +guillemot +gunze +gxt4500 +hackrf +hamachi +hampshire +hanwang +hci +hci_uart +hci_vhci +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdma +hdma_mgmt +hdpvr +he +helene +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hi6421-pmic-core +hi6421-regulator +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-asus +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-cmedia +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-led +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +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-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hifn_795x +hih6130 +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi504_nand +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horizon +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hp03 +hp100 +hp206c +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +htc-pasic3 +htu21 +huawei_cdc_ncm +hwa-hc +hwa-rc +hwmon-vid +hx8357 +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-cbus-gpio +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-gpio +i2c-hid +i2c-hydra +i2c-i801 +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-mpc +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-reg +i2c-nforce2 +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-piix4 +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-xiic +i40e +i40evf +i40iw +i5k_amb +i6300esb +i740fb +i82092 +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibmaem +ibmpex +icp_multi +icplus +ics932s401 +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_gen2 +idt_gen3 +idtcps +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ifi_canfd +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-hrtimer +iio-trig-interrupt +iio-trig-loop +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +img-i2s-in +img-i2s-out +img-parallel-out +img-spdif-in +img-spdif-out +imm +imon +ims-pcu +imx074 +imx6ul_tsc +imx_thermal +ina209 +ina2xx +ina2xx-adc +ina3221 +industrialio +industrialio-buffer-cb +industrialio-configfs +industrialio-sw-device +industrialio-sw-trigger +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int51x1 +intel-xway +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +interval_tree_test +inv-mpu6050 +inv-mpu6050-i2c +inv-mpu6050-spi +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +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_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_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 +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipwireless +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irtty-sir +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it913x +itd1000 +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +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 +khazad +kingsun-sir +kl5kusb105 +kmx61 +ko2iblnd +kobil_sct +ks0108 +ks0127 +ks7010 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksocklnd +ksz884x +ktti +kvaser_pci +kvaser_usb +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan78xx +lanai +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-adp5520 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-is31fl32xx +leds-ktd2692 +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libceph +libcfs +libcomposite +libcrc32c +libcxgb +libcxgbi +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +litelink-sir +lkkbd +ll_temac +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lmc +lms283gf05 +lms501kf03 +lmv +lnbh25 +lnbp21 +lnbp22 +lnet +lnet_selftest +lockd +locktorture +lov +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc2990 +ltc3589 +ltc3815 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lustre +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac53c94 +mac80211 +mac80211_hwsim +mac802154 +mac_hid +macb +mace +macsec +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mailbox-test +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577-regulator +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max30100 +max3100 +max31722 +max31790 +max3421-hcd +max34440 +max44000 +max517 +max5487 +max5821 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77620-regulator +max77620_wdt +max77686-regulator +max77693-haptic +max77693-regulator +max77693_charger +max77802-regulator +max8649 +max8660 +max8688 +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 +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4131 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +md5-ppc +mdc +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-gpio +mdio-hisi-femac +mdio-mux +mdio-mux-gpio +mdio-mux-mmioreg +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +melfas_mip4 +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +mesh +metro-usb +metronomefb +mf6x4 +mga +mgc +michael_mic +micrel +microchip +microread +microread_i2c +microtek +mii +minix +mip6 +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma7455_core +mma7455_i2c +mma7455_spi +mma7660 +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_block +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpl115 +mpl115_i2c +mpl115_spi +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi001 +msi2500 +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6323-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-quadspi +mtk-sd +mtk_ecc +mtk_nand +mtouch +multipath +multiq3 +musb_hdrc +mv643xx_eth +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxc6255 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxser +mxuport +myri10ge +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nand +nand_bch +nand_ecc +nand_ids +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +ncpfs +nct7802 +nct7904 +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +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_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfp_netvf +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_exthdr +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +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_tio +ni_tiocmd +ni_usb6501 +nicstar +nilfs2 +niu +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-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 +nosy +notifier-error-inject +nouveau +nozomi +nps_enet +ns558 +ns83820 +nsc-ircc +nsp32 +nsp_cs +ntb +ntb_netdev +ntb_perf +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nvidiafb +nvme +nvme-core +nvme-fabrics +nvme-loop +nvme-rdma +nvmem_core +nvmet +nvmet-rdma +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxt200x +nxt6000 +obdclass +obdecho +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_xilinx_wdt +ofpart +old_belkin-sir +omap4-keypad +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osc +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +palmas-pwrbutton +palmas-regulator +palmas_gpadc +pandora_bl +panel +panel-lg-lg4573 +panel-panasonic-vvx10f034n00 +panel-samsung-ld9040 +panel-samsung-s6e8aa0 +panel-sharp-lq101r1sx01 +panel-sharp-ls043t1le01 +panel-simple +parade-ps8622 +paride +parkbd +parport +parport_ax88796 +parport_cs +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_pcmcia +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 +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-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 +pcspkr +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +pdc_adma +peak_pci +peak_pcmcia +peak_usb +pegasus +pegasus_notetaker +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-exynos-usb2 +phy-generic +phy-gpio-vbus-usb +phy-isp1301 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-tahvo +phy-tusb1210 +physmap +physmap_of +physmap_of_versatile +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pmu_battery +pn533 +pn533_i2c +pn533_usb +pn544 +pn544_i2c +pn_pep +poly1305_generic +port100 +powermate +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_core +pps_parport +pptp +prism2_usb +ps2mult +psmouse +psnap +pt +ptlrpc +ptp +pulse8-cec +pulsedlight-lidar-lite-v2 +pv88060-regulator +pv88080-regulator +pv88090-regulator +pvrusb2 +pwc +pwm-beeper +pwm-fan +pwm-fsl-ftm +pwm-lp3943 +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pwrseq_emmc +pwrseq_simple +pxa27x_udc +qcaspi +qcaux +qcom-spmi-iadc +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom_spmi-regulator +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas408 +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quatech_daqp_cs +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +rack-meter +radeon +radeonfb +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +ray_cs +raydium_i2c_ts +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +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-behold +rc-behold-columbus +rc-budget-ci-old +rc-cec +rc-cinergy +rc-cinergy-1400 +rc-core +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-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-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +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-pctv-sedna +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-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-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rcuperf +rdc321x-southbridge +rdma_cm +rdma_rxe +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +reboot-mode +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +reset-ti-syscon +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio-scan +rio500 +rio_cm +rio_mport_cdev +rionet +rivafb +rj54n1cb0c +rk808 +rk808-regulator +rmd128 +rmd160 +rmd256 +rmd320 +rmi_core +rmi_i2c +rmi_spi +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-as3722 +rtc-bq32k +rtc-bq4802 +rtc-cmos +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-hid-sensor-time +rtc-hym8563 +rtc-isl12022 +rtc-isl12057 +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-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-r9701 +rtc-rc5t583 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx6110 +rtc-rx8010 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-snvs +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 +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +salsa20_generic +samsung-sxgbe +sata_dwc_460ex +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sbp_target +sbs-battery +sc16is7xx +sc92031 +sca3000 +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +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_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 +scsi_transport_srp +sctp +sctp_diag +sctp_probe +sdhci +sdhci-of-at91 +sdhci-of-esdhc +sdhci-of-hlwd +sdhci-pci +sdhci-pltfm +sdhci_f_sdh30 +sdio_uart +sdricoh_cs +sedlbauer_cs +seed +sensorhub +ser_gigaset +serial2002 +serial_cs +serio_raw +sermouse +serpent_generic +serport +ses +sfc +sh_veu +sha1-powerpc +sha3_generic +shark2 +shpchp +sht15 +sht21 +sht3x +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sii902x +sil164 +silead +sir-dev +sis +sis190 +sis5595 +sis900 +sis_i2c +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +sl811_cs +slcan +slip +slram +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smc91c92_cs +smipcie +smm665 +smsc +smsc-ircc2 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4117 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-als4000 +snd-aoa +snd-aoa-codec-onyx +snd-aoa-codec-tas +snd-aoa-codec-toonie +snd-aoa-fabric-layout +snd-aoa-i2sbus +snd-aoa-soundbus +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-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-firewire-digi00x +snd-firewire-lib +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-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-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-pdaudiocf +snd-portman2x4 +snd-powermac +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-ac97 +snd-soc-acp-pcm +snd-soc-adau1701 +snd-soc-adau7002 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-bt-sco +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs35l33 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +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-cs4349 +snd-soc-cs53l30 +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-imx-audmux +snd-soc-inno-rk3036 +snd-soc-max98504 +snd-soc-max9860 +snd-soc-pcm1681 +snd-soc-pcm179x-codec +snd-soc-pcm179x-i2c +snd-soc-pcm179x-spi +snd-soc-pcm3168a +snd-soc-pcm3168a-i2c +snd-soc-pcm3168a-spi +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rl6231 +snd-soc-rt5616 +snd-soc-rt5631 +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-simple-card-utils +snd-soc-spdif-rx +snd-soc-spdif-tx +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-tas5086 +snd-soc-tas571x +snd-soc-tas5720 +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +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-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8960 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-xtfpga-i2s +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-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 +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +softing_cs +solo6x10 +solos-pci +sony-btf-mpx +soundcore +sp2 +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedtch +spi-altera +spi-axi-spi-engine +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-loopback-test +spi-nor +spi-oc-tiny +spi-pxa2xx-platform +spi-sc18is602 +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spmi +sr9700 +sr9800 +ssb +ssb-hcd +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +ssu100 +st +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st95hf +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_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 +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stm_heartbeat +stmmac +stmmac-platform +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sun4i-codec +sun4i-i2s +sun4i-spdif +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +surface3_spi +svgalib +swim3 +sx8 +sx8654 +sx9500 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_usb +synclink +synclink_cs +synclink_gt +synclinkmp +syscon-reboot-mode +syscopyarea +sysfillrect +sysimgblt +sysv +t1pci +t5403 +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 +tc358767 +tc3589x-keypad +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_nv +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teles_cs +teranetics +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_hash +test_hexdump +test_module +test_power +test_static_key_base +test_static_keys +test_udelay +test_user_copy +test_uuid +tg3 +tgr192 +therm_windtunnel +thermal-generic-adc +thmc50 +thunderbolt +ti-adc081c +ti-adc0832 +ti-adc128s052 +ti-ads1015 +ti-ads8688 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +torture +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm-rng +tpm_atmel +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tpm_tis_core +tpm_tis_spi +tpm_vtpm_proxy +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65086 +tps65086-regulator +tps65090-charger +tps65090-regulator +tps65217 +tps65217-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw686x +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish_common +twofish_generic +typhoon +u132-hcd +uPD98402 +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-core +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-dwc +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_fsl_elbc_gpcm +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +umc +umem +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 +uninorth-agp +unix_diag +upd64031a +upd64083 +us5182d +usb-serial-simple +usb-storage +usb3503 +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_uac2 +usb_f_uvc +usb_gigaset +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 +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +v4l2-tpg +vcan +vcnl4000 +veml6070 +ves1820 +ves1x93 +veth +vf610_adc +vf610_dac +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +vhost_vsock +via +via-ircc +via-rhine +via-sdmmc +via-velocity +via686a +videobuf-core +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videocodec +videodev +vim2m +viperboard +viperboard_adc +virt-dma +virtio-gpu +virtio-rng +virtio_blk +virtio_input +virtio_net +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vme_ca91cx42 +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vrf +vringh +vsock +vsxxxaa +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5100-spi +w5300 +w6692 +w83781d +w83791d +w83792d +w83793 +w83795 +w83977af_ir +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +wanxl +warrior +wbsd +wcn36xx +wd719x +wdrtas +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wilc1000 +wilc1000-sdio +wilc1000-spi +wimax +winbond-840 +windfarm_core +wire +wishbone-serial +wl1273-core +wl3501_cs +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 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x_tables +xc4000 +xc5000 +xcbc +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xhci-plat-hcd +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx_emaclite +xilinx_ps2 +xilinx_uartps +xillybus_core +xillybus_of +xillybus_pcie +xirc2ps_cs +xircom_cb +xor +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +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 +xz_dec_test +yam +yealink +yellowfin +yenta_socket +yurex +z3fold +zatm +zaurus +zd1201 +zd1211rw +zforce_ts +zhenhua +ziirave_wdt +zl10036 +zl10039 +zl10353 +zl6100 +zr36016 +zr36050 +zr36060 +zr36067 +zr364xx +zram +zynq-fpga --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/powerpc/powerpc64-emb +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/powerpc/powerpc64-emb @@ -0,0 +1,19241 @@ +EXPORT_SYMBOL crypto/mcryptd 0xc1a503a2 mcryptd_arm_flusher +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0x22c2b652 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x835a94e2 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xf3949ba9 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 0x0df48a15 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x328881f9 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x6c49c804 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x804045ab pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x8d786ab1 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x91863c58 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x94232f6a pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xb2a6f13d pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xbc51ccb7 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xd8a1ba65 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xe1bdd0bc pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xf63be1e9 pi_read_regr +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xec180216 btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1ef0b766 ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x2ec6209d ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4837719f ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4dde7206 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x87518cc8 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x9491b4a3 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x1e239179 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x96bcb754 st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x2714d560 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x39e0932a xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xc1ab15a8 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/crypto/caam/caam 0x1c758e97 caam_get_era +EXPORT_SYMBOL drivers/crypto/caam/caam 0xa51f16c7 caam_little_end +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x08532749 gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x0dccecb8 caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xc40911ef caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xc52ef11f caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xe26afd3f split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xf0f779db caam_jr_strstatus +EXPORT_SYMBOL drivers/crypto/talitos 0x04250fbc talitos_submit +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x0f9f1430 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x3d1af2ab dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x985dcde1 dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xa89fac4e dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xdf62cc91 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xf2af47f6 dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/edac/edac_core 0x75f65974 edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x01027177 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x01644d62 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x095be478 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x13d7f8b6 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x146a9106 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x18614355 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1a9614a2 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2205ba49 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x274bee45 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3be6dcb7 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4587d806 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x645b715f fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x64ad85ce fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7a357060 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x80e7b8bb fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x83662c81 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x879d0123 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8c525ed4 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaeb85b80 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbcb05403 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc1a9af26 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe0851a24 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe19ff857 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe6a04a32 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xeb828597 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xec7ff422 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfa39250a fw_bus_type +EXPORT_SYMBOL drivers/fmc/fmc 0x0e96b2a5 fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0x384df142 fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x44bf7a54 fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0x4af3b519 fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0x8bf78e48 fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0x8db6336c fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0xb6d78c33 fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0xc41d9df6 fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0xc49c817f fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xc70d22ac fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0xd3d10dda fmc_show_sdb_tree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00122465 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00140932 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00f7bba3 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x022c4877 drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x029a3191 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x040a7ef4 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04d4a5a2 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04f70f6b drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x050562bc drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08f7488c drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08fdc110 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09b5d678 drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09da3069 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c087c12 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c8f7217 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e6bb44e drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ea72d69 drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ec51e37 drm_av_sync_delay +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 0x11f34070 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12848388 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1357e02e drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13d8aad4 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x154148c2 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x154f9662 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18034fcf drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1830ffd7 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1937ff62 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e4430f drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1aad6bb6 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ab2bfe9 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bd3cbd6 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d1d9f29 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f16d8e4 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x236f8842 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x239e325a drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23aa7ef9 drm_mode_object_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2420c4c5 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25e3aa76 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2689dbe0 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27286f4a drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2829bec6 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2839fe7e drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2956f910 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a2e509a drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b943e1f drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c363257 drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d7bcd61 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dde0ec0 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e37bcd6 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed730f3 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f479606 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f84b11a drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3047de05 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33411680 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34a380ea drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34fe0a4a drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36dfe86b drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x375fb868 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37c411f7 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a9a7ed drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac652e8 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c3fab75 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f35da94 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43c1932d drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43e7c6b8 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44033101 drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4528bb71 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45fd2ea7 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4603b2ee drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4671344f drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46733149 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46784aa1 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47caab3b drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x482a6ea4 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4856b88c drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48974146 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cf2d1 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49606d00 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49a932cb drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b3d6130 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b3d63b1 drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bbb2961 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bc8dc8b drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d72da47 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dfd9526 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5018cf3d drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50225ba9 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50404014 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51db353a drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51f35dea drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51f5802a drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x523bd1f7 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53af0198 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54bdf2b4 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55071e6d drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x552e536e drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56d27f9e drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57a03c3a drm_crtc_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x591dc9fb drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59cdab05 drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ee4113 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5be29e46 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cd52abc drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cd87e75 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5deb2f7f drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e7152e7 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ecb7fc9 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60b2a701 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60c8e998 drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61c69c75 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x621ee620 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x630196d8 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x635cec57 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63901526 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63f2c848 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65503952 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x655a8048 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66521fd0 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x675de7e8 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67a9630b drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68c21f7e drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68ed607c drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a3a786d drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b33b269 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b9c6ed5 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c080776 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c18200d drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ca467ff drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d68be93 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d7fc4f6 drm_crtc_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f45d2a5 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f465828 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f6dea1c drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f795a3f drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fd651b6 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x704bf914 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70ed060a drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x711a2061 drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72db8407 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x732c9afb drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73407477 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73e91777 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74255627 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7444698b drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75827a87 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75b9b35b drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75e1d7ce drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7802d541 drm_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78a9a401 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78b8d36a drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79243081 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79685bff drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a145bd7 drm_gem_object_unreference_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c36c3fc drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d731e25 drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d96375d drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e327103 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e45222f drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f982f02 drm_crtc_commit_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8090f0af drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80fadb58 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x818cde72 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83485933 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x837c85bb drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x838b1bc3 drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84f3d020 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x859c4fa7 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87132e19 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8794b878 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b2e1b06 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c8a9eaf drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d4ad329 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dacf2c9 drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e02a8b7 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fbcf7e4 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9315aaed drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x941ebecc drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x947f8c47 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x948bab24 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x954ffbb5 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97189b3c drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9723fa46 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x978283cb drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9803b2fd drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9828d780 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x985d8bda drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a7d9e62 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ab8dbf4 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bd9c347 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c942c76 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ef7ed54 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f730380 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0f6e9e6 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2ec793f drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3bbb372 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5a1b53c drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa68725d6 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac73fdb2 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4ef8bd drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf62cbd2 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf6493a3 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb01295e7 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0f1279a drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb28b2e8a drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2b9792b drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3281476 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb33a1d8b drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb37d51ad drm_format_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4cdd2d1 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb71390fe drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb76edad1 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8b6f70a drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8caf8de drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb95831b4 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb25135f drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb9a8ae6 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbbbc67c drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbd722ea drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbff4784 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0330310 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc14db78f drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1cbf719 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2054d83 drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3abaade drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc431cfd0 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4b5e97d drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4f1eb34 drm_gem_object_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6023a65 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc79eb390 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc866b92a drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc880de62 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc98e9a56 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca971742 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb686751 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbd061bf drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf081a38 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf847048 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd07cbfbc drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0903f15 drm_format_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0c6b6b3 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1dcaba7 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8f1ee34 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd90197ac drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd99f0a8d drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9b35eb7 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda7aac25 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb0f74d0 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb52b8f7 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb58a383 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcd04fbf drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddd4b17b drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf120e62 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe00cdec4 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0309fec drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1f994ee drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe225f0b9 drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4bd380a drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5cd0515 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8295e43 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe85a17f0 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe87cd4de drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea09e3c3 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeac7d52c drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb8dbed0 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec72ca09 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed8a753f drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedf5cba4 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee97f3ea drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeec527ca drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef702b92 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf039e4f6 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1686ab1 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf170ad4d drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b098be drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf26021a1 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2794211 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2c73665 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4642226 drm_mode_object_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4cd244b drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf529e461 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6809194 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6ffae0d drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf997f6f5 drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa060c27 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa3b1a77 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa60ae97 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa6983d9 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb23a869 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb52f143 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb77f070 drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc23edc1 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffaa0b26 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffafd74c drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02453820 drm_fbdev_cma_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x040ee3d9 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x060a6e85 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06880925 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06ca3112 drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07aa5337 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09301fa3 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0948442e drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a21497c drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b5d90e1 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c7ca66a drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e56ceb5 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f9c3a07 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ffb149f drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1099be6f drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10e2a90f drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1161f083 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x133c5dba drm_atomic_helper_best_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14df356f drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x175b5646 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dd916e5 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2622c190 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26ad6d1a drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x270262f8 drm_fb_cma_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28c13cc1 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ae9e565 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cb7a55d drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30ac119f drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x330fc92a drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x373e88b7 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3890ee36 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3975464e drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3979704a drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b0f11d1 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e8755cd drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40e44b09 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4346c934 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4395e869 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4790858c drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x487e8bcb drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4909c92f drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49507ea6 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x512eeb9e drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x537bbc21 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5396df5a drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x545f5ae2 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55193fe7 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x558694eb drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58969cfa drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x599f66a3 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d08f22a drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d89cefd drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e2ae52e __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60a24ecc drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x612b3e83 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62a21c79 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x645e3fae drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64670f53 drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x651f28cf drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66249560 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6784d5f5 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69213fa4 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x697a9a91 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a07303b drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ee9136b drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f167aa6 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fcc5813 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7216ade1 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x732d69d9 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73cbd0c1 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74f7ac5b drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x755c868e drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7588fd14 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76f89964 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77c7b266 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78b0ffa3 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x798511de drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a4c0620 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7aacd968 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c6cfae3 drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e86b3ab drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x810d7d35 drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84095cf4 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x844cb8b7 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x875a9b9d drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x877f8150 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x890ad7cd drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a9877ed drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cce32b5 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d795206 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x907e6dbd drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90b1a793 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x913977f1 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93c1ae6d drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95ea9859 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96f8116a __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97785761 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a5a6e34 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ae744e5 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b936ec6 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ed7e48f drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f44376c drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2c87b57 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6c7eae7 drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7c9893a drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7ed8108 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa0d3486 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa803f61 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab395176 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab858440 drm_fb_cma_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2524178 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb46d22a6 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5346bd5 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6f3593d drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb97f220 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf1d1e04 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc094b36e drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1bbe7bf drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc34ebad6 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc689986e drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc976623f drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca166ce9 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb75deea drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce14c722 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd021ca6a drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd05a1b7a drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd11309b9 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1d87364 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd38b57be drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd813ac48 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9a0dfa9 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda32983f drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdaa7d968 drm_fbdev_cma_create_with_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe00977ed drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe019270f __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe080d268 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe319a696 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe410a4c0 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe52c62ed drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7fba00f drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8360eaf drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9b29baa drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9fb10bf drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea2d5c15 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea66c1cd drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeaa65921 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeac6a1a5 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xead445fd drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xebb9e7f0 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed4f4ea2 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed7e51c0 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4227599 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7447720 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbd0c114 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd258dd8 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfed6ce85 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff2c27f1 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff4c68ee drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x15018caf ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x163bb051 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c1cf8af ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1e6c136a ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x23fe3c7e ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2599146a ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2dc19a50 ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x32255b93 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x34ef0530 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x39481584 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3afa46c8 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3db4d1f0 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x42b56408 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x482427c5 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x485a5bc0 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x52486f12 ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5974fc89 ttm_bo_default_swap_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a8fdfea ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63d06ee9 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x682150b6 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6d563eb5 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6fc99376 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7ba7a642 ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7ca51978 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7cc25954 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d55da85 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8332667c ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84a13931 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85d5a926 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86d0b300 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8866b2e5 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89a443de ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x914603f5 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x919e5cd4 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x92cb23a3 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94f8ec77 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9536925e ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x98faf7ec ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9a0c8a9b ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9a8a3605 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d8e8c02 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9f2aa476 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9f9671d8 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa12a0d5f ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2a129fd ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa437ecac ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa6282930 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa73de2a9 ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb19729fd ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb1c03df0 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb2dc540f ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb62927ed ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb66024c0 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbe9ee092 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0c2da ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc68f47d2 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc902f1d3 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc9f277aa ttm_bo_default_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcb83f398 ttm_bo_pipeline_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd2e123e7 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd3ee0986 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7f51742 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe6c35235 ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xed2c2068 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xed85a0d4 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xee0fb0f5 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf29330d8 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf9b1de78 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfa1151bf ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfc54b9a8 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x034d4e6e i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x292d779f i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x9a2c6305 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x9d485a5a i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xcbbb4dcf i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xe4468a6d amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0bf0ee3d mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x171736c9 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3e81eee2 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x443591f9 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6231b695 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x62aa2d1e mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x76a0bac3 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x930878ad mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9c4290c2 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9eddc44d mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xadeea657 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb53e8a0a mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbe2d5938 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xee8ea6dd mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf31c5827 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf668daae mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x3201e74e st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xf0448100 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x4d544642 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x54d52013 iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x1665c8d6 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x2b550d8e devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x5c3915cd iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xb7eabf31 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x14a91507 hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x2ddfa680 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x64304689 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7cbdf2d2 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xabd53631 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xe5ba54e4 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x27f8c255 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x523d55c3 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x83571307 hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xb4705858 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x067a59bf ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x0ea16715 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x0f09af9a ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x18a3f05c ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x19b54e65 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x44981c32 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5defc2db ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xdb612827 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf0cefc7d ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x718e1566 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x8c2ee01e ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x92f620bf ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xb190552d ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xfc268769 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x1e0e4e07 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x22dba4f3 ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xeda07763 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 0x34374cb6 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3713d6bf st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4404d8bb st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4947b235 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x741486b5 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x891acc6c st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8f7891fe st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x955be92f st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa3229f82 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa3faa78a st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb2bf5cbd st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbbcb5c63 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xceb5e9cd st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdc1fef54 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe2ac8127 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xea886d4d st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x31bcdb8c st_sensors_of_i2c_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xd4644e29 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xa1a64d1d st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x235e22c8 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xdfd68163 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x18bb2302 adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x6cee3c35 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x77747074 bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x0ce9da7b iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x21241a0b iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x23a5d400 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x37567559 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x3b710009 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x5071ffb2 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x6a9eb646 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x6cc2cca1 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x6f98b7f4 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x72a486b1 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x8c4aa6fe iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x9197c304 of_iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0xba9fcd80 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xc13efebb iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xd4b6300d iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xd6e1c95c iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe65395d8 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xede5ec81 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xf8aad12d iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0xfc10cc86 iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x7261ef14 iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x4c196317 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x6fabf942 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xa02a9141 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xc80899ac iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x4d40969d iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x7f3abc59 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xadc3e7e9 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xc9da5d55 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x3a665706 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x95f17df9 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x3532e841 bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x71a4a467 bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x7d65339e bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x8db172f2 bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x39c8a1d0 hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x39daed05 hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xa7d2efe6 hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xe669c36c hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xa43501e3 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xbc5678f2 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x36b4be28 ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x8da95308 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x31337b70 st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x62c5e188 st_press_common_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x13d4f2c1 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x156ac763 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x48497e9e ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5630834e ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x60ac058d cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x65bd0c04 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69774969 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6e3a184b ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6f588fe1 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7567556a ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x897ea1b7 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x95b8c8d8 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaa067d75 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xad79d569 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc5784593 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdad2eacd ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdecffe95 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf5c130ea ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x032e04d1 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03ae8326 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04633a9e rdma_resolve_ip_route +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x049ace30 rdma_addr_find_smac_by_sgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06920e29 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a1e62fb ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a6d8f28 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ae84e3c ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b5b6ac8 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0db8a8c5 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11176eff ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1126214d ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x127adf65 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14d38684 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1621d8a0 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17ff1178 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ca0ed52 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d726c38 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1dfedb33 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ea5767b rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ecfd67e ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20577383 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23e357eb ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24a23a67 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27914ad4 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2900bcca ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c06c072 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c4d357c ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c7699d7 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30d7b63c ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x316a5319 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31db70bf ib_sa_classport_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x321df678 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32a8402c rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x350a1925 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36f999b3 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x375195af ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b0e10e6 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c6ec47e ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d85dcdf ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3dcfa8e7 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4116c06d ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x437e7569 ib_create_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44f0aeb8 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x451baed3 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45b0df96 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x461ac407 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48fff83c ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c46d190 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d6a566d ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x530a493b ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5328d7a6 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x532e82bb ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x550b567a ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x550fc7fe ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x568c89a1 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56b7a64f rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x576fdbac ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a61cd5e ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b14d3be rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5cf4f7f9 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d11e6be ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d4261d5 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60fb6dd7 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61896e87 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6303e1cc ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65925b79 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x665c85a4 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67414f3b ib_destroy_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a277ac6 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b0301a6 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6bf20942 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fd34eb6 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7298837e ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73ceedaa ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x742b33fc ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74a895e7 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78a00bb9 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x793c3358 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a146512 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae7b561 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bf88de5 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c97e33f ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80415392 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80e7973e ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82269f66 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x834fc964 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8444b41e ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x873f31af ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88a4f471 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d9300bd ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d97ea70 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fbb8531 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91ac8ba9 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91f5bb19 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93565f40 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94ad62c1 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9702d437 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x970d8915 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x976f27d2 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b9cf9a rdma_addr_find_l2_eth_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a1cd50d ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b601a08 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9dfff251 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaab7167f ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafd5cd91 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2ca6892 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb337cea9 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb84526ba ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8c11dd6 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0660766 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc14a6373 ib_modify_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc49454e1 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4fabcd9 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc62fb5a2 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc724eb07 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc96e28d5 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9c4fdc2 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca45f0b8 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccbed911 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf3f3e8f ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfed47ca ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0e2f72d ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2aa4d9f ib_destroy_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd43b3910 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd640647a ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd948a1ed rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbd6fdcb ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc099eb2 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc5ef769 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdcf69470 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf3cbe7b ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe40f1323 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4ab87c8 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe57c2d43 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6d6752f ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed2e60be ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef885c50 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf20ede45 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf21d48f4 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf229ea6a ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7f4a3ef ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfca40e53 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd9fb6a3 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdeda9dd ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2e10e8ba ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x348773e7 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5397d778 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x149b14ed iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x19d8f256 iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1a5a290c iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x26f0cfdb iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x38b00a0f iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x47cd3605 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4c342542 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4f0f8195 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x57854d58 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x597af8e7 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8ec534ab iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd5114e67 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe3023f48 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe849ee41 iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfd720cca iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0f95cd4c rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3695f37e rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x41408a6a rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x42c70555 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4403af44 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4e6685a7 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5314f567 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5b6dd722 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6abd3609 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8241391f rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8b467719 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8b9eccf3 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9adac674 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9fc5000c rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb0ecce8e rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc5cd56f8 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcf89022f rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd191c6cd rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdcf05e8d rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe32ac188 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfdcfa49f rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e385842 ib_rvt_state_ops +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4840c0ef rvt_mcast_find +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4d48abea rvt_init_port +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x5c789f60 rvt_lkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x611e87f3 rvt_unregister_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x69417c4d rvt_cq_enter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x9530e80b rvt_check_ah +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x9a15cd4e rvt_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xad89ccfc rvt_invalidate_rkey +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb34b56a9 rvt_error_qp +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb4432d3a rvt_alloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb49ad595 rvt_register_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc7c25485 rvt_dealloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xcbca5427 rvt_rkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x050e843e rxe_remove +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x36daa257 rxe_add +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x48f93f58 rxe_remove_all +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x5af4ff8a rxe_set_mtu +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0xbfcaf71a rxe_rcv +EXPORT_SYMBOL drivers/input/gameport/gameport 0x18db8541 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x39c5da65 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x49499c81 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x4b6a39ae gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x587c72da gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x65674adc gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7ca7fee6 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb84bae78 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xcab27988 gameport_stop_polling +EXPORT_SYMBOL drivers/input/input-polldev 0x27aeeae7 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x41def65b devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x90321968 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xc959c01f input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xedd2c600 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xa55fce4d matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x5f98495c ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x60c13afd ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xf43e86fa ad714x_disable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x4804624a 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 0x49a11598 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x2eca8d25 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x30100f98 sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x789b2ef4 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x932c846c sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xad7454bf sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xde8d9110 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x51b90045 ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x89d85033 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1c24f294 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x27012bb2 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3f2c2de7 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4066aefe attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5879299c capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5ba0dc66 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5d65f77a capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8384a252 capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x904a188e capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa856e0b9 capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0681e63a avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0d5296f2 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x326b3f36 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x48735494 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x508aee2a avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x58b39e15 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x685e72d4 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x93c25d29 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x97562df4 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdd9fdf20 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe5344176 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe6e47c33 b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf20c889a b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf55a76fc b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfd8534d9 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x284775aa b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x2b4deced b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x44c2c06f b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x645c6cc6 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x65933a46 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb4cb5ba6 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xbdf3cf91 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xdd3d5ce7 b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xe2192c97 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x156ba2b9 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x8c7a4d05 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xaf426815 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xdfe2db67 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x1050739f mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x1b28542f mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x139e560b hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x7a1e9014 FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x8bc4b67f FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0ec1296 FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x8406745c isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xad989e39 isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xb60fb40c isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xcbc7f76c isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xfd8c64ab isac_setup +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x073829f6 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x93e01bfc register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xd87fdfe8 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x01bad32c mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03b818bb mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0b8595ad recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x25b1cc7d bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2c929ec7 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2cdbb31a recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4a707c54 mISDN_initdchannel +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 0x5ba174e2 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7099d9e6 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x785efca1 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7a27e51b mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7d936dc0 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x813e8808 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x814a6fdd mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8478fe10 mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8549d8d0 mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9dcdf78a mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa56a3a57 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa702afc7 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa9e6c4f3 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaa67794a mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbd17e8a6 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc23c0a4d bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3f5bbe9 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc525fd78 mISDN_clock_update +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 0xd98568f4 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xefb262be recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf84ae11f mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/bcache/bcache 0x0d17bf04 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1d89bd11 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1f529ce8 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0x26481f26 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x44a37d62 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x5b59b856 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x64168fbf closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7daccb73 bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0x8833b0e8 bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa3c5c702 bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaa1f6802 closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0xb8def647 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0xca5df778 __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0xce47a6d9 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd2813054 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0xdf892351 bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe67c2d16 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xec6f33d0 bch_bset_init_next +EXPORT_SYMBOL drivers/md/dm-bufio 0x268682d2 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-log 0x07b3402b dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x3c4b2a25 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x4878f350 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xff78cb90 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x0b13d690 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x30a444ff dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x6bce1981 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x79fbf603 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x9a984d8c dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xa0b3b5f1 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/raid456 0x2059f877 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1fe7b981 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x23cae322 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x388bc4f9 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8fa152de flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x92328487 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9795f8d8 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9f1c3812 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa04060ee flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb39c4ddb flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd580d89d flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe07797e2 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe1a76f5b flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf3bc3122 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x27c28b06 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0x33fddd93 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x47b0e670 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6cc7797c cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7a6a9556 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x78a171c8 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x9f06c9a9 tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0xa59200f1 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x17eefc8c dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2a83b3f6 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x32706276 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x368f3d1a dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b9026a9 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5258fbd4 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5bfbeeef dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5c0ea535 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x64514136 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6ee61158 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70af1058 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x78a00ec6 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x78db694b dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x797a1786 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7f4f9b54 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x85a5e7d3 dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8b673164 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9f358f86 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9fee215a dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa130d569 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb0e4376a dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbe4c9f61 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc1559b10 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3137f7a dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc6456df7 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcc5fe1b3 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcf589e8c dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcf81e0d9 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd164669f dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd407ea5d dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd5d1c59b dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd793c23f dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8f7184c dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe2855ddb dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe6f7b19e dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xef9dc3e3 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf28e7431 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfbaa7e01 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x7ef76997 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xb610cbbf ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xa95a473f atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0083c925 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x21b81ca9 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2d28cfeb au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6de5f9e4 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbcb0ed2b au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc1506555 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc9e5e8cc au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd3bd6500 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf9651263 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xedfe7aa4 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xf0a5da7c bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xacae3f8b cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x173cadc2 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xd42b8099 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x96551de2 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xe98ca387 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x278a9cb3 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x06576f44 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x10296e5d cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x94ca6e75 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x352f86b9 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x2a13f21f cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xa7b8e609 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x36714304 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x6803a04c dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9c8ba8d2 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xae40ca03 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xeb703244 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1b6570b0 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x248ef780 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3dcd222c dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4131bd1b dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x77f03e80 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8670b878 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8d676ba2 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa871c305 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb1579c56 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbf2696c1 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcf817ca0 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcfd67dfc dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdf719945 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xee1f6a5c dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xef71b66d dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x519e9b1e dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x1f51f382 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x52a49c52 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7f9bc21b dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xcd6e0fca dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe0b2afee dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xef4b9fdb dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x0c29cead dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x0ed283d9 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x5821563d dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xb4b20e6b dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x593fec85 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xee46355b dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x26265bcd dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x64b0c44e dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x96220d6e dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xb029ad3c dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc43f01ba dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xc832c8c5 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x75e5261e drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x05637bae drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xe43393dc ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x587f97d8 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x95ede6e6 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x3bed1567 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xe8d0892b helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x0c2d130e horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x4a46a57b isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x94d08f08 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xe2c2d3b5 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xba52ed41 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x8fa9bcee ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x321b1100 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x2ac9d14a lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x58bdf480 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xf20158b7 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xf919ede9 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x96c689fb lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x6f4a3069 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x7ba117e2 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xe4c9c431 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xd0840296 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x35fadbd4 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xd44ebc5c m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x2286bbf6 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xd19b9b75 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xfbdb7c5d mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xe1dac9d6 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x6f695e1b mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xbcdea5f4 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x4bf449fa nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xe245d112 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xf6042fa9 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x0b37fcf9 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x62b138a4 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x25834597 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x5d4b52ee s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xfe3c642c s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x3608f8a9 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xef2c063a si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xc4135725 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x41c06773 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x7b2d87e3 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x9389062c stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x0f907324 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x3482142f stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x282ea158 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x1ee1fe3a stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x4965a7fa stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x6db738df stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xbfe57109 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x47e2a33c stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xa6104957 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x585dd36f stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x832d56df tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x49192ce7 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xefaeec80 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x367f0229 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x527377b8 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xdd3f43dd tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x36f80868 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xd6db13ec tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xa39248ea tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x1987e987 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xb1c59e2d ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xa091c169 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x8371fb96 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xfabce7a3 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xc27d4bf5 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x5c8f675b zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xf7c39582 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0e17a47e flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1343f934 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x74026c70 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb9e4d295 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xde215b5a flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf07649e6 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xfb8e80d7 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x16602b5e bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x6ad7b2af bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x6f81a421 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xc363bf17 bt878_stop +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 0xa1e46311 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xab413971 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xb2219052 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x06a7f71c dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x11659ee7 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x22151cd7 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x493e0a05 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4ccd4a46 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7a686abb read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7ad650a1 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xaf082263 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe2d27355 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xcdb60744 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x1eceda85 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2eaeddfd cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x5a0ca68b cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb57d391b cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd1152597 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x40d34c70 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 0x0639dfb0 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x13c2f126 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x22282ada cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x485c99ed cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x891d5591 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd67beb95 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe8cf9e0f cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x2500b152 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x7b28a67d vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x1046c0cb cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x166df142 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x20260b1e cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x9d0c2bba cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x87187360 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xcd6e91e3 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xce6d1adb cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd421dbd0 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xdceb909f cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xde9fe13f cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf2a1a3cb cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x091b60ec cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0a764ef1 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x409d5d8a cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4110310b cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x599bdee7 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5cda2d67 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5f2b55a3 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x63f6ed41 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x67c2b9b0 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x73d68d7c cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8489f793 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x867a26b9 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8b104df8 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb1a3891d cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb6723d74 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc151ae88 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd74ebdbd cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe3c416da cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf44d8e25 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfea6e373 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2b7f80e6 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3a5c4b45 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3e5485db ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4df0eadb ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x59f51bd2 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5a46ac56 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8370f719 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x93398545 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x978b5e5b ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9790e98d ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb5d1f8a2 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbd3216ae ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc6294886 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe651fefc ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe6da9cf9 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xeb39e1da ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf76fa578 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0526fec1 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0ef84432 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2965b306 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2e45d600 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x307a8679 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x485d24cf saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4d331f09 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5036e959 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7331f1d8 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8af65b6a saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x999ed75c saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc6206653 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcc3bf32e saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xf495402e ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x35dc8abb soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x55460721 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x598988b6 soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xb63a36e7 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xbb8d100b soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xca45968a soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xfaadd8f2 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/radio/tea575x 0x28ee6646 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x29a15fd6 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x40af5e60 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x4ad4fdf9 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x525c70ca snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x9d2f0486 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xfcd05b5b snd_tea575x_init +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x10e597cc lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x1a595151 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x7468c6d1 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xac948e75 lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xad0f333e lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xb85957cd lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xbc04a4ad lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xdfaf2502 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/rc-core 0x74e12b7a ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0xc2d44e26 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x7b0be7c5 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0xa87b2ea6 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x157cb582 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x1c845ac1 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x1e5c462b fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0xa969d067 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xa43af54b mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x661e23ac mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xfd312629 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x217b0ea2 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x15308964 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0xe052aab9 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xe92ac2d6 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x9757d8ec xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x5619b773 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x43cd9100 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xa46363ad cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xc0369bda cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x256a1241 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x58aa7ff0 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5e10d04f dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5fc75c40 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x693db04b dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x837e226a dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9f3f9cdb dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc58fc035 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdfc3653c dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x34c3905e dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4e488b1b dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x6bf4a440 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xbc5bea3d dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc5b93823 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd607a220 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd6811a09 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x09a06a37 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 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 0x083bb2d6 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x251aef27 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x37df48c6 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7a0d32db dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9b166a74 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xac48eb52 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xbc8bcade dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcdbe763a dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdc9c7f5b dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xde727162 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf274c2e7 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x8519ab8d em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xf47c583a em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x00bd8380 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1c3916c5 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2b4ca562 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3de43ae4 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x86f15d28 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9063aa84 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x93d4e9ed go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa7c61b77 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb626b8b5 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x387782ac gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x560bf1da gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x79b67ad8 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7a7ff367 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb033cc57 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xbf0ec506 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xcccd09d4 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xdb300b4c gspca_suspend +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x505f67d2 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x70a22397 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xe9dc3205 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x0cef8513 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x272884d9 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x37b4ca73 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 0x8c1f6be7 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xb7569175 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x126569a1 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x6ecb533d videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x92a27d97 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x96d59845 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xd1852a8c videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xd34fb9e0 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x3e524de2 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xba01712b vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x4a864f46 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x6105dae8 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x77f76125 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x8db96013 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xcbb1b621 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xfe713559 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x9b267654 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0259921e v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x02a8fb51 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a780483 v4l2_of_alloc_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0b50cdbc v4l2_ctrl_new_int_menu +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 0x166d4484 v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x18a6e9ea v4l2_of_free_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1db09d06 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x202fe4f5 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x25610974 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28a17e2c v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2bc8dfb4 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d3ef2a7 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2e76f70b v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2e8cc0cf v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2ffd7859 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3340583d v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x348de9cb v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x362a0923 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x37c8804b v4l2_ctrl_handler_free +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 0x414a63da v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4631ca4f __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x49569e19 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4bcabac9 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x547149f7 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x54fb751a v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5acecb91 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c21c25d v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5e97c633 video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5fb27aa7 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x616459d9 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x63fe8ed3 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6472a2ea v4l2_of_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6670839b __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6db29dc7 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x707461c0 v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a59d2e2 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7b424d56 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7b4ae1af video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7c0513fe v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x880e09e9 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9b8cc679 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9c87bd36 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9dbd1168 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa543f546 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa70a83f3 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa70c3028 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf56ebdd v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb4e222a1 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xba211141 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbdbf3339 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbfa9b682 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc3d65b5e v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc442dfba v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc7b43c84 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcf675240 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd0c7d8e0 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd933321b v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdbba1791 v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe5e79aaf v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe9006c06 v4l2_of_parse_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xec7cadb1 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf05e489f v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf1435e29 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf71b311d v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfc1b81a2 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1e465c7f memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2d622103 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4bcf253f memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5af6f4aa memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6988c9a0 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7b86bb48 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8cc04648 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x930725f5 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa5c4a9be memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc0fb50b9 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xecbaf0bd memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xfb888171 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x01dd989a mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1d7d737d mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1f7d2f71 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x20211863 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x26a5b793 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2a4c6f41 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2b43d6c9 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x486fe56e mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4f3b2e19 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4f6c7bbb mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x605d7bbd mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7ad9e190 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x80201eac mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x814aa82e mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x81db3f85 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x82e87f91 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x94c8f497 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x953425dc mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9c6f2350 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9cd121a7 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa7abccee mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaeeae462 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb9ce5169 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe394726c mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe599928a mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf6910a6c mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf9ae92fc mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfdf65153 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xff5147ce mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0fffd06c mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x14fe8e92 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x20026067 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2ff403ed mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3f9332ec mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x47bb0a4f mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x51b3b4b0 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x610917b0 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6b01cf9f mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x795e92ad mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x80c01ad7 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8f589d22 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9856948c mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa355c6b7 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa843ea0b mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaa9f29c3 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xab415ff8 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb0b13147 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb76ba81d mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbf8bd941 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd63daf48 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd8e770c3 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdf4a855b mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdfc09178 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe55cfceb mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xeba901cd mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xee2a3572 mptscsih_bios_param +EXPORT_SYMBOL drivers/mfd/axp20x 0x0435f736 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0x1b80d29d axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0x8a0aa1e7 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/dln2 0x11a2f105 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x2d25408b dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x92f6aeab dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x62bb7ec1 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xe2a3c966 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x125845eb mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x49ca723f mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x54d3fde0 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7f04db6b mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x850b4014 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa378615f mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xad8bb743 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd6877332 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe05f5ab5 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe3dbb125 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf5064b69 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 0x10a7feef wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x229d4576 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x3c15ccae wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xa707e6fe wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0xad432bab wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0xbdff475b wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x2eab70db ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x8ff3d0da ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x8ed02032 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x6b655da9 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0x8586f589 c2port_device_register +EXPORT_SYMBOL drivers/misc/ioc4 0x6963db9b ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0x6cf2790d ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x04021454 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x116b8eb3 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x251987d5 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x46047c8d tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x4684921e tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x49ce502b tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x5b67d43e tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x751ea094 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x79dba6fb tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0xba2a9cef tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xbc1d31ed tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xd1a6505a tifm_map_sg +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x54fa2558 mmc_cleanup_queue +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x29029d04 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x8e49bdee mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x0ff0688c cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x2b6af518 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8663ed75 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x974087ec cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb9274fde cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd1848a31 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xeaf79730 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x27f61c61 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x3130d3af map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x6a750db5 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xc81334bf do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x92af7518 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x8afd1811 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x65d806f4 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x59d0b4e5 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xfb5a54c4 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/denali 0x696fd03a denali_init +EXPORT_SYMBOL drivers/mtd/nand/denali 0xb4755cc0 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x4077c768 mtk_ecc_enable +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x5437e775 mtk_ecc_disable +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x67dc4d5c mtk_ecc_adjust_strength +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x6df58afb mtk_ecc_release +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x76e53683 mtk_ecc_wait_done +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x77ecf26d mtk_ecc_get_stats +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x8f7138a2 of_mtk_ecc_get +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0xf00129a1 mtk_ecc_encode +EXPORT_SYMBOL drivers/mtd/nand/nand 0x11a68bd4 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8be23c71 nand_read_oob_syndrome +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0xadfc6b74 nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0xb24984af nand_write_oob_syndrome +EXPORT_SYMBOL drivers/mtd/nand/nand 0xb80f247e nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/nand 0xc7b7ddec nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0xcab4267d nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/nand 0xcdc58181 nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand 0xf605a2c6 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x5ab1a96c nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x78d3f7b4 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xa851e033 nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x2e769071 nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb73fc76d nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x0acf682f flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x560e0d9d onenand_addr +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x05c7ac81 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x11404b95 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x191916ea arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1c83b428 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x22fb1510 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x53bef359 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x56f806a0 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8b334a98 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb8223c94 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd899e5af arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x02c65fb0 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x4e62d193 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x84247316 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x04867690 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x10725856 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x287c20f9 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x52f44968 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6af2be15 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x775424b5 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xabbe411a ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc22eb4a5 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc6b4ab9d ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd2e23bc2 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x4f625cec cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x285bde59 bgx_get_rx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6dc1648d bgx_get_lmac_mac +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 0xe48ca42a bgx_get_tx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf9508980 bgx_set_lmac_mac +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0094eb64 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x16d0327c t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1ae0457a cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x40816541 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4382ccd2 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4f80f10e dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x55986129 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5bb9ec7a cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x717f8d63 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x903e7ad8 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9de50e30 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbe0ec9a8 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdc47db10 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdce81b1c t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xde87b06a t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfe829a41 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x00facce1 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x05936b41 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0c43a498 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1bca943a cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1f1334fb cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x27e6c7c0 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x39c41b27 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b880136 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3eed884c cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x40de8ce9 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4617895d cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x48001e6f cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4d8992cc cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x538c309a cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x53ca6413 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x567eb05c t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x595fa6f5 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6155e688 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x70d51e5b cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x78c39145 cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x807f9a2e cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x818045e1 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x831126f7 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86b663bd cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x937beda3 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9433ad6d cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9fe3ab12 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa46621db cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xafdc8da8 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb1489c14 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb4a9dcf3 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbd3b9981 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd8495f25 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdc255ae7 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdcd1a245 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe2146974 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x0593eae7 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x0c62d46c cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x129c2659 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x30dc113d cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xaec3a5f8 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x17dbfdfb vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x1fe09c5a vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x79a932e9 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa632c840 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb18c2afc vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe1a79579 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x234de411 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x96cb2920 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/freescale/gianfar_driver 0x79f28897 gfar_phc_index +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x0eaff745 i40e_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x2602a817 i40e_register_client +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0298a0cc mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x134bb3a9 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1dd63ae6 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24700231 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ac7f21c mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35ce0b91 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3aab1e5b mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3eccd5ab get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fc4752c mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43b3b48d mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43db6684 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x484fc0be mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x488f5f5f set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a61272c set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a7d8d23 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x504f762f mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f964ef9 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x880749d8 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93ecd626 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9af49aab mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b49f4f3 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dbb4d01 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9eb827f7 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f51dedc mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1fb6b57 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa539d0d1 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa643b8ff mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7b1a9a5 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacd3af24 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6a56d0c mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc82324b1 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8d76c3c mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0a07c50 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd26ee939 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2919e97 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5b3a485 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9e34ab0 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebb55aa7 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8915a6b mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa170a2d mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0035161f mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03ac6660 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09777eb1 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19a1597b mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f9c1308 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26555946 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2957df5c mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ca75e29 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ddc8037 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fe0300a mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3998c26c mlx5_del_flow_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d7e8c06 mlx5_core_create_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41e56088 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x437aae05 mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b5ff277 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ca63e5f mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5196e707 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58d1809d mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e7d921c mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7551cd34 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76229789 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ba1044f mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8489143c mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x866a00b4 mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bb3552b mlx5_core_create_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f83cc73 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9709864b mlx5_core_destroy_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f28c2ad mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3ca3acc mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa47cf7fb mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa531211 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae0eac4f mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf0b2d13 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf24c7ef mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafc29ce6 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb043feb3 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1008c97 mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb59057a6 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb75f29bc mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb811781b mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfd40e04 mlx5_add_flow_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5e5f010 mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc64444e7 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc71a171c mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca7bcad1 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcaef21b4 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccc80064 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd79e46c9 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf3b566a mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4901e53 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8989c6d mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedea3c65 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee51d4b7 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef853e16 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4125d25 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfadfe6d2 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfaf37508 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb119264 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe85dac8 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff9fabe9 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffb2956a mlx5_core_destroy_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x00ae1665 mlxsw_reg_trans_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ab0c687 mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19ff3363 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d07a992 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3247e4bb mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x33a654bc mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x39a96739 mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x62361170 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x668baa94 mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x72a05371 mlxsw_core_resources_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7467ece0 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x76ce8b44 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x89108a6d mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5ff38e0 mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb7c2d67b mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd449ec2d mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xea708e98 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xec51e246 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa9287132 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x233618a1 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x45fc6542 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x8ff427c6 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x9da8d2be hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe9f3f978 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x11a855fc sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x1595c564 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x1dd20c8f irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x3f95a7c1 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x6aac76ad sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x6ecc64bb sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x91fb4cdd sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xbf77e9d7 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xee857458 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xfdadec27 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mii 0x23d427fa generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x343b983a mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x8cc783f4 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x8f01173e mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x9242a427 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x9faa4aff mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xdcc7ca63 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xef03adda mii_link_ok +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x4f729bf1 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x54805152 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x026aa8cf cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xc461b27b cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency +EXPORT_SYMBOL drivers/net/ppp/pppox 0x575f9d5f register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x9f28946f pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xba4d0b1b pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x78cff286 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x26318c22 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x5ba52673 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x6b9fe863 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x71ac5d8e team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xb0c955f2 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xb5a3b16d team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xbb49d3a9 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xc79b5d1f team_modeop_port_enter +EXPORT_SYMBOL drivers/net/usb/usbnet 0x12e696d3 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x80d808a7 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xda097efc usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x22d506e3 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x33263a7b unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x34423d9f register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3f9a9813 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x855927e8 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x87b696ee attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa40cf35d alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa63d0a8b hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb318faf5 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd6340628 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xfb180031 hdlc_close +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x84dd043c i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x10f69ac4 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x18b14043 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2d9714e1 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x41610fb0 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7d32d933 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa46ccb70 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa71c0a5d ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbfe9203a ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xca16266f ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd13e87ff ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf4b685f8 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf58620f1 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfd218995 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1e20e6d9 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4689a749 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5c2f7123 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5d197f83 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6753042d ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x816b2ec5 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x89c508df ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8e9f9810 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa867d6b4 ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xab111bd8 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xad132084 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb332e883 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc86639ce ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd244e08f ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd2cf7bf1 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe61c77fd ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x00a041ed ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1ad57c27 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x314d02c2 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x41c14334 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x476d5d98 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9aa12349 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa14b26a5 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa73fd854 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb42df15b ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe795d9ae ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe97ec4cd ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x025af397 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x098a22d7 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2147d325 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2a990f32 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2e8caed0 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3b9d6362 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4fe2cec5 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x55748350 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x668f5218 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7bab32e5 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x90fe46c9 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x925611c2 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x93fd9988 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x959b9959 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9a08fd08 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9b0b1a79 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaaf52323 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc1165aef ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc320c191 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc5c771ae 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 0xdd2fb52a ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdec28355 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf150947d ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06294285 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07d95471 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a5942e1 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b4f7330 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b9f2da7 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f2fe592 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x128c779a ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12922ea7 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x136866e6 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15f7dfe5 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16bd0da9 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17f33593 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x199e3c1b ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f94eb99 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2393e6cb ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3210ee0a ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33317b8c ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3347ea82 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x334ed403 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3361e002 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35464b9f ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a5f9d18 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c860260 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3de99ab7 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f2985fc ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41b033fd ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42d602c1 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44ea2fdf ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4547229e ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x456b7ee5 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x469c8ae6 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4edebcad ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52e30a60 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5690a295 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b3f67a6 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5bda86cf ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ff03a2a ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x651fe7f1 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e9de622 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71ee4e00 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72cee099 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73aa85e7 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x775bccc4 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78ea7cfb ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d38e76b ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f1c668b ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fe4225f ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81db9e03 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x832e407d ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x836d53c7 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x839f7f40 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84de88ce ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x861b4cd9 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8bb01210 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8fb2069d ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9424aff8 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95142453 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95c5c180 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x970a2506 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99b083a9 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b34ad2a ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c8c9e12 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d223e64 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9eed1946 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3d2ecc8 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa72a7362 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7aeddbd ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa830cea1 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9234f0b ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac930e5b ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad7486ea ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae92834e ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb21ac3e3 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb83b0877 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc18699a8 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1cf77e7 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc79e7b1c ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb00c8b8 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc36551f ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc606045 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd63d3f04 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6757d60 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd91551ef ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda5fda71 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb804809 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc5c64f4 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf451310 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf598241 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdfa12342 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe020a1df ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0b25d78 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1820247 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1c29661 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe41164f1 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe52d6a12 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe594133b ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6035151 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe92757df ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9c59399 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea0e86de ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb5a8726 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb7563d9 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xecfcfac5 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf82b39e5 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfff52c9d ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x014230ae stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x7c282308 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xd08481ea init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2134ca76 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3640b464 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x39a742cb brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x40b619e7 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x52e16ddd brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x74fe43d7 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x776b115a brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7e5778b0 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9296c102 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbceaaf05 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xcdd7f0e9 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd1db3f4c brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe7587833 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe84a8ec3 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x0212745c init_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x31497808 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x697492db reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x02d948bf libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0351fc46 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0ce50d8b libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x12f8ad8e libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1d9e8eea libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1dfa6a41 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x25bea09a libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x54a5c474 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5b98b0d5 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7bd952c9 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x813f6a55 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8d0e3951 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x96071643 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9be7fef6 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9c5de114 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xae795654 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbd967687 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdbd262ea libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe4f9d87e libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfb6a2cd3 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfde66680 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x01455eb6 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x034d4389 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0418be67 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04c22c1b il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x11beac8e il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x176e4f65 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x17923e40 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19961885 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b4afc7b il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1cd966b4 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1e07aa4e il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1fcf5ee4 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2403ed22 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x242056ad il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x250cefb3 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2513e3da il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x27571593 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x28b46019 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2c37240b il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31c66e95 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31ca7763 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3558be3a il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3ba4bbe6 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3bc059a3 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3c01f227 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3d799b4b il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3e843e4c il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x43a98433 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4481674a il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x46086048 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x46716259 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4fe9a719 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5234b95e il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x52bf5a4d il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x542ea21d il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x57e2a4f1 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x59552a8a il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5cfd6521 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x67de1181 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ac07e02 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ad55b8d il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c2823a0 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6cd1db88 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6cdf4e86 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d6b1e10 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x706b0427 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x754639bb il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x77c5ca59 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7808e3bf il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x789167c2 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x78aba418 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x78fd8f01 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fd463c1 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8d6bb791 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8e93ad0d il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8f4b0a9b il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9159ad80 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x926ce4d7 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x95927aaf il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x96639db9 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x984839d2 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c089a19 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa773f094 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaa2b3399 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab648d50 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xac261015 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb92f236a _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xba1e2c89 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbc10eecf il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbd2f4e57 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbd7dd3d8 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc265caab il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc4ac9c89 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb97c55c il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xce525bd4 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcefbe51f il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcfcd8911 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd18c3b20 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1ba69da il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3a812a2 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd4decac4 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd4f8b680 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd5f931a8 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd633671c il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd89e6518 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdbc7f625 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xde425c6c il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xde4452b2 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe0971894 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe4960d87 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe9202719 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeae3b54e il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf1489349 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf94f4816 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa068d1a il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfbfc609f il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfcdfc7f1 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x47bda8f9 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4e0c2b0e __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8b0e519b __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd031d4c3 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe4d855cc __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf050905c __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xffe01d38 __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0191a97e hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x15d78948 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1dbf88b3 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1e5f5170 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1e8f47f0 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x30223a25 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x55ebf3bf hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x56fa8d36 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5819755a hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6a0bae0a hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6d0a4f2c hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6ed6dffa hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8bce42bd hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8d9a2a8a hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x939fce6c hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa1ea28b9 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa9da69fe hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbe6d1b03 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc37e6e73 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc3827e34 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc50c6a2b hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd4fbd257 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdb6296b2 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdcf2a207 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe7040bbd hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0aaab9fd __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0d2684ca orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x11724fa2 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x16d68d01 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2b103d2d orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x389f49ed orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3d3696ac orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4783d45c orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5dea5bf1 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6dd2ece8 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x76d47fd3 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8769f1c1 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8de43bb2 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb3c91a75 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc85931fa orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd83da2da orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdaf97b1c __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xeafd9421 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x00d427a8 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0371cefb rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x04a396fa rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0caacba0 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x13515a1b rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1bf5362e rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x23294565 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x29cc82fc rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2b6cfb1c _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2dad2213 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3eb9503c _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x41e7d0da rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x43bf032e rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4e471f55 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4f025f35 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x592a73c6 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x60ebaaba _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x70896154 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x75f353ff rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x79a2b69f _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x802117f1 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8400a06a rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x846cf895 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8fafb748 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x92824c0a rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x93a87d83 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9423ec20 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9507a820 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x98ad29e8 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaa078165 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xab15533e rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xae64492a rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbc6a2377 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc32307ff rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcc5a5c68 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd00eec23 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd327c177 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdaabf95b rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdbc6e0e7 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdea054bf _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe920b793 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x3c057471 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x9cc28731 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x40b80edd rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xd2eeac86 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xdee99853 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf2e259c4 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x01ae1f1c rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1456e3f1 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a868e9a efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e97f2cb rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x426f53e3 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x46773490 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5a39b9b0 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5dba472f rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x68f85f9c rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x697dc49f rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6fa04f00 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x702ceb6b rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x74747735 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x837219e3 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x874c5e5c rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x874e97eb rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90c202dc channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x91c8380e rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xab871b88 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xad041b34 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb8fce882 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbe39c9a2 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcfc6f7d9 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd1513f3b rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd41fe4cd rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd9bd2f56 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe5a2f1a0 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeec230e1 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf088afa2 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf4b78bbf rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf73cdc3f rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x375e392d wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x8091d895 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x8224c4fc wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xb10d1e8c wl1271_free_tx_id +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x7a0b8582 fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x7fbcc079 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x98ea8177 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x02c361b0 microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x1216cdde microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x867d4b66 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xa513e210 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xec9d5cc5 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xf237f5ed pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x73889454 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xce18f217 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x2bb44f8c s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x96de281a s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xb50366d3 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1af50eb7 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x24626e71 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x325cb2bc ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x82e5499e ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9361cecd st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb6909235 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbdc59178 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbde4af7c st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xda3f6092 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xddc1dd56 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1ba64863 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2656e563 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x272b460a st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x361d23a6 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x49492703 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4e6cb3bd st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x551c02fa st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x73ded2fe st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8c449ef5 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x94beb4fc st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x94fcfccc st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa433e7fa st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa56d2d0c st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa94f620a st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xac9a65ca st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xaf61f8e8 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc7e343c1 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdea5a538 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/ntb/ntb 0x3d7b32d2 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x5fe917da ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x608cf6ee ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x8deb4036 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xbeaee3f2 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xc65c0b7b ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0xe536a0c7 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xf712685a ntb_set_ctx +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x833dae53 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xdaedd066 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x8a1899c9 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x01f39ac3 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x043fa1d4 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x05e66ffb parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x113c393d parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x145152e7 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x1f0f0211 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x24657269 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x269e168e parport_read +EXPORT_SYMBOL drivers/parport/parport 0x2c807c12 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x38007a13 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x4b3416fe parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x532c503c parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x5af62d09 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x5f473165 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x5f83f8b2 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x61b06ab0 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x6551e842 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x74e6e17a __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x773423f5 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x7b1b2578 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x7e00e520 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x7e4db8cc parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x8b1977d3 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x92c82d2d parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x938bb2ed parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x9c2c8272 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xb741887f parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0xbd2c1de7 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xdd36419f parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xe1d20cb8 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xe3cd9013 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xffcd2c4a parport_register_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xa79ae684 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xb80176d2 parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1789d950 pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1dfffbd4 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1f9a12ef pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x25f551f9 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2b32ca03 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3ca90dc2 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4a22a73c pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5155cab0 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5f217afa pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x62a8f921 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x65a7334e pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x66d05fc0 __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x69704862 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x84aa9fd1 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9b90d561 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa36e93bc pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb9122fc6 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xcdda2c6a pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfa7d22e6 pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0305c3b3 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x11dee809 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x19c8ad6b pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3b9ba783 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x53f07769 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5a07c26e pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x70d56b5c pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7ad6a0cd pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7d2e3b40 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8b4316e9 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb542c822 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x01b7df1a pccard_static_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x769f2ee4 pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pps/pps_core 0x001deeef pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0x36dc7ad1 pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0x5f172b63 pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0x9de1d10a pps_unregister_source +EXPORT_SYMBOL drivers/ptp/ptp 0x11496ca4 ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0x394cd289 ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0x3c3d6868 ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0x70624f79 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0xb3e07e8a ptp_clock_unregister +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x192866cf rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3a504ba8 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x7e62dc61 rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x8951c336 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x9e9fb959 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xaa5a3f64 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xcc9aafd6 rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xddbb0863 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf38584ef rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf498982f rproc_da_to_va +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x4a1b8b7b ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x6e7c6fae scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd19a7a6e scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xf28cd5b2 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xfacdf6e7 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x070d2967 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0cbe0b28 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2b5bf303 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2db77ef3 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2e28ad0c fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x681b4863 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6b1e8663 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x75d9d629 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7a02a00a fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa27ef217 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe90be33d fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xff597e8d fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x00003a22 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x12983358 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27976232 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27f1fc0a fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x29f7d64a fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x34772e89 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x39218995 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x39ac2c40 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4b2cfa5a fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x53106306 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6024ea4d fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6a30bff3 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6dc83bdc _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x74e3eb4e fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ce48ac9 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80398c00 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8124b02b fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x82ccba02 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8569caa5 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x860bdae0 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8669013f fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8b42b168 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9036d704 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x96763d5e fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9b25f668 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa219001b fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa4591bf7 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xacf161ae fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xae1bdda8 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbc95a2c0 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbdde1bea fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc583e5b6 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcb6ec80f fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd62abe39 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd7b86a11 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd881c473 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdc783fc1 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe2649f7e fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe52befec fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe701513f fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea5e5bd6 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xec50d2f0 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xec583563 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed5119b0 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0b4dae9 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf84736b0 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf93248c3 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf9f383d5 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb65989c fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd942007 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x1d20f75a sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x442c3b3f sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xbc6f61c7 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xda326987 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xc77db2fa mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x07d1cc13 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0bb434b2 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x11bec4f1 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x142fb5df osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1cc1fd75 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x25999255 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2a56386b osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3659b621 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3796488e osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x39c7aa9e osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4a8882ed osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4b9b85dc osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x52f91345 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5bfb1c70 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x63ee4299 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x801b07d3 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x81e48522 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x87671100 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8bbf4405 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8e5982eb osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x909f2517 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa9e30d65 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xaa1a217d osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xaa5d5eca osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb21b83c9 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb4a74ac8 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc37ebb3c osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc77d3db1 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd9aefe9e osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdc32329a osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdeb1e978 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe2e242f7 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf0264e6b osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf4ed1e02 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf97ff80c osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfc417b99 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/osd 0x04d23963 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0x443ee4e6 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x587085a0 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x7e54a63c osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xaa77b3f9 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0xe1af6e53 osduld_register_test +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x14b47b7c qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5a811a6f qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5f42d11e qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6c33c93c qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6f628e17 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x81e87b21 qlt_put_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb43b9257 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb5b808ab qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdb11437d qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdcf87c2f qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe5bddf99 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe8831645 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x4e8515dd qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x502ccc6d qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x81d18207 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xb2ab5d4e qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe2ca4666 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xee1a6b04 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0x2cf00597 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x99288b4a raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xe89e9e36 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x409d1580 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x42d55a0b fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5ec3c7e4 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x80b289ab fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8fef0ed2 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa03ef952 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa6185eec fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb0af73cc fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcbb7f995 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xee46f8b1 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf541a0e5 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfacc9fed fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x024d9b9b sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0401336f sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x04ca3651 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0544fc4e sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0546d124 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x10c2467b sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x124ea5b7 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x13c2e911 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1c2e70e9 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2e2bfc70 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2e78144f sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4e5758ba sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x539aa1d2 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5b179c2d sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x60f56f59 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6cd1333d sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7003918f scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x758e5038 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x77a1f00f sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8755c919 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa0a3f74f sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc0e46789 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcbf3c3e0 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd1c5573f sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd3b33db2 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd4692c02 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd6df4c36 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xde18f854 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe9ef5aae scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x63a359b6 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x9af07b2e spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc28faae6 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc72634b2 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xcf6fe02d spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xab76d0ee srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xb100b7b4 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xc3c5eb1e srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xcf56f8d3 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x77eaf4a2 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xc23209d6 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x1d3a554c ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x3bbc2e4c ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x41079d3c ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x5c9483fd ufshcd_read_string_desc +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x615897f9 ufshcd_query_descriptor_retry +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x691a6521 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x766c01ac ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xc47e17f9 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xdb3e94c1 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xe48569a5 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xed01d0e4 ufshcd_read_device_desc +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x00332f47 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xd65aeb90 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/ssb/ssb 0x07e132ec ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x09dca067 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x0e645222 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x18546434 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x1fa616ca ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x24c37c93 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x41705b9f __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x500c2382 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x5f75d3d7 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x5fa44203 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x669761d2 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x6b83cf4e ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x7f44bfc3 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x9db3fac7 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xb6375f8e ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xb9fffb94 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc5cd2471 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xd8b12a95 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xe6929ad2 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xfd6d35db ssb_device_disable +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0447c715 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0992e8c3 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0bc3c4ac fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1435af90 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x16c2cf1d fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1df864ad fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3713d37d fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x380704ce fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4e75ef34 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4f13110a fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x590c3731 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x60800b2c fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x658c746a fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x804c923f fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8132f9f8 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8e947bc4 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb0fd731e fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb428e815 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbe8e61f9 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc9d2b18b fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd0d5e8b4 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf6be0cba fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfb4e0370 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfd20b533 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x1754d2f8 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x0c02fd6c ade7854_probe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x000c507f libcfs_debug_dumplog +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x01fef7b4 libcfs_register_ioctl +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x06443cdb cfs_wi_deschedule +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0b15026d cfs_hash_for_each_empty +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0d1b8a30 cfs_percpt_lock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0de6c369 cfs_cap_lower +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0e4820ab cfs_percpt_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0f5eff79 cfs_percpt_number +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x117c8a95 cfs_cpt_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x15565c7f cfs_cpt_set_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x1e8cdb47 cfs_race_waitq +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x22924b94 cfs_hash_for_each +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x23e25c18 cfs_wi_exit +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2663147a __cfs_fail_timeout_set +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x286ce5ba cfs_hash_bd_add_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2dbe54b2 cfs_trimwhite +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3009b1a2 cfs_hash_del +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x30e15cc9 cfs_hash_bd_peek_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x31fc5082 cfs_crypto_hash_update +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x361e82d4 cfs_firststr +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3658dc0c cfs_hash_add +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x37175882 cfs_expr_list_print +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x377f93fb cfs_srand +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x38828b92 cfs_cpt_unset_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3a62a183 cfs_cpt_set_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3c1285bd libcfs_subsystem_debug +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3d5e6098 cfs_race_state +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3ea730c0 cfs_gettok +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3f0d9281 cfs_wi_sched_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4062f92b libcfs_run_lbug_upcall +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x411db754 cfs_crypto_hash_final +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x413056d8 cfs_cpt_weight +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x42e22feb cfs_cpt_table +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x438e735b cfs_hash_for_each_safe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x44839bbb cfs_rand +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4a99af72 cfs_clear_sigpending +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4d3b4eaf cfs_fail_err +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x52b9c7e9 lbug_with_loc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x52e9cfc1 cfs_cpt_current +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x53b383e4 cfs_cpt_unset_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x58a7ee00 libcfs_catastrophe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5c013b81 cfs_expr_list_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5ce62c0e cfs_cpt_table_print +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5d73c3e3 cfs_expr_list_free_list +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x61cbdb52 libcfs_kvzalloc_cpt +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x62289d65 cfs_array_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x66ea4400 cfs_hash_is_empty +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x67398404 cfs_wi_sched_destroy +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x67ddedc9 cfs_hash_getref +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x68497dbf cfs_cpt_number +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x6c605eaa cfs_cpt_unset_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x6e6b8b14 cfs_hash_hlist_for_each +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x71e3804b cfs_crypto_hash_digest +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x71f662a3 libcfs_debug +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x752858fb cfs_cpt_table_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x7d93cded cfs_cpt_of_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x7f7b182a cfs_hash_for_each_nolock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x7fda989d cfs_fail_loc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8151c3aa cfs_cap_raised +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x865483a9 libcfs_kvzalloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x87e201ab cfs_hash_bd_del_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8840f591 cfs_block_allsigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8b8f321d cfs_crypto_hash_speed +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8c6be9ab cfs_percpt_lock_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8e61d47b cfs_cpt_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x93896a8b cfs_crypto_hash_init +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x940ed192 libcfs_stack +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9879b229 cfs_get_random_bytes +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x98f0e065 libcfs_deregister_ioctl +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9c3aae35 cfs_hash_size_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9e420643 cfs_restore_sigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9f82f712 cfs_trace_copyout_string +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa2b68b2a cfs_array_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa711aec5 cfs_cpt_table_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa9088531 cfs_expr_list_values +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa9dc74e2 cfs_trace_copyin_string +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xaaf59b75 cfs_cpt_set_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xad019238 cfs_str2num_check +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb53b5569 cfs_cpt_spread_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb8354b83 lprocfs_call_handler +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xba8132b3 cfs_hash_for_each_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xbada117b cfs_cpt_clear +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc0ea7fc0 cfs_expr_list_parse +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc2911d96 cfs_expr_list_match +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc77a24c3 cfs_cpt_set_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc86ee1b1 cfs_hash_bd_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc8d5200e cfs_percpt_lock_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc93905cf cfs_hash_cond_del +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc9fe388e cfs_hash_debug_str +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xca7a4ee7 cfs_hash_add_unique +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xcf61bacb __cfs_fail_check_set +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd0d8d08a cfs_cpt_unset_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd18eb37a cfs_hash_debug_header +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd1fefbcc cfs_hash_lookup +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd46225d8 cfs_percpt_unlock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd688fe94 cfs_hash_findadd_unique +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd96f406d cfs_cap_raise +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd99d9f64 cfs_hash_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xdf2789c0 cfs_curproc_cap_pack +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xdfecb98d cfs_block_sigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe2f91ce3 libcfs_debug_msg +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe3bf6897 cfs_percpt_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xea411f63 cfs_block_sigsinv +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xeccafa5c cfs_cpt_online +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xeceac781 cfs_fail_val +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf03bdf11 cfs_wi_schedule +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf2c02048 cfs_cpt_bind +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf3565b71 libcfs_debug_vmsg2 +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf42ea557 cfs_crypto_hash_update_page +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf47e16aa cfs_hash_del_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf52e4f4e cfs_hash_rehash_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xfa756153 cfs_hash_bd_lookup_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xfdf00c70 cfs_hash_putref +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x08581961 lnet_connect +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1366b7ac LNetSetLazyPortal +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x15cbb103 lnet_sock_getaddr +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x19670622 LNetNIInit +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1a60d439 cfs_parse_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1ee5f15e lnet_ipif_query +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1fe16fd5 LNetGet +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1ff6e877 lnet_sock_write +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x2009a47a lnet_kiov_nob +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x20bbead2 lnet_sock_setbuf +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x2aa9953d lnet_cpt_of_nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x2ac93e90 lnet_connect_console_error +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x33202a6c LNetGetId +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x37d0de12 lnet_sock_getbuf +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x3c779ee0 LNetPut +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x3f4f5b46 LNetNIFini +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x473ad33b LNetDist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x48f163c6 libcfs_str2anynid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x49993ea3 lnet_extract_iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x50345570 libcfs_str2net +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x56145f44 lnet_sock_read +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x58a1ca89 LNetMDUnlink +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x5a7c97e6 lnet_finalize +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x5fee352c lnet_acceptor_timeout +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x618b10ff lnet_copy_iov2kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x61ba0e10 the_lnet +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x61f784b2 LNetClearLazyPortal +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x64cdea3a LNetCtl +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x66d449b1 lnet_ipif_enumerate +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x722c76e5 LNetMDAttach +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7d59a7fe LNetMEInsert +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7e93080c libcfs_nid2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7ef21bee cfs_nidrange_find_min_max +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x83d795e4 cfs_match_nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x880e2329 lnet_register_lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x8e18dc7c LNetDebugPeer +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x97f5966b libcfs_lnd2modname +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x9de986d3 LNetEQAlloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xa33802df lnet_notify +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xa56de08d lnet_ipif_free_enumeration +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaa414970 LNetMEUnlink +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaa9b477e LNetMDBind +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xade657cc libcfs_next_nidstring +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaed3e209 libcfs_net2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb0a85cb8 libcfs_lnd2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb20da2b1 lnet_copy_iov2iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb75f7953 LNetEQFree +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xba5566d2 lnet_acceptor_port +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xbf0760a2 LNetMEAttach +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xccc45639 cfs_free_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xcf4eb544 cfs_print_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xd2f65b97 lnet_create_reply_msg +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xd54259af lnet_extract_kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xd7445725 lnet_copy_kiov2iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xdd9fc322 lnet_net2ni +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xeac0f516 lnet_parse +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xeaeb6565 cfs_nidrange_is_contiguous +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xeb17de0b lnet_copy_kiov2kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xeb68fcfd lnet_unregister_lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xec1f56d5 libcfs_str2nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf1b316bf LNetSnprintHandle +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf5dc6337 lnet_iov_nob +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf8a8644b libcfs_id2str +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf94025d1 libcfs_str2lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfa106804 lnet_counters_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfb389b61 lnet_set_reply_msg_len +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfe7ca17c libcfs_isknown_lnd +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x06ad35b7 client_fid_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x1c4bb5f9 LU_OBF_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x375e6f8d LUSTRE_BFL_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x4c9091e8 seq_client_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x634863e2 client_fid_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xae61cff5 LU_DOT_LUSTRE_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xc997a02f LUSTRE_SEQ_SPACE_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xecee2727 LUSTRE_SEQ_ZERO_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xeda5a42a seq_client_alloc_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x08376af7 fld_client_del_target +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x2196ec56 fld_client_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x33ba9210 fld_client_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x7c9fedcf fld_client_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x863abb3e fld_client_debugfs_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xc3f8e303 fld_client_add_target +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xe31d72e4 fld_client_lookup +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0x690b4472 ll_iocontrol_register +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0xcd3cde92 ll_iocontrol_unregister +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0xd3311e16 ll_stats_ops_tally +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0xfa289744 ll_direct_rw_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x206570e5 lov_device_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x43fc50fc lov_read_and_clear_async_rc +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x84e29fa5 lov_lsm_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0xb55e3f2b lov_lsm_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/mdc/mdc 0x1fdd36bd it_open_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/mgc/mgc 0xdc287f95 mgc_fsname2resid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x006fe144 lu_object_find_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x00e81345 lu_object_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x01e5f2b3 lustre_process_log +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x02a7c55e cl_page_assume +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x035852d0 lustre_swab_llog_rec +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x03b37a9c lu_kmem_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x03efa803 class_find_client_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x05340776 cl_object_kill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x059b4c71 cl_sync_io_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x06378b2c llog_thread_key +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x07aa68bb lustre_swab_lustre_cfg +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x07d45876 obdo_set_parent_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x083942ff class_del_profile +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0c378d79 lustre_swab_llog_hdr +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0c9a4f76 cl_io_lock_alloc_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0e7fd50c cl_object_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1017c923 cl_page_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x11495519 lprocfs_write_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x11f14b07 class_new_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x132e24ca cl_object_prune +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1348bc9f cl_env_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x14eb887d lu_object_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x14fe9b4f lu_site_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x15241c3c cl_page_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x16160021 llog_cat_close +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x173f4055 class_export_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x177f8740 cl_req_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x178fb90d cl_page_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x199c6ae3 lu_site_init_finish +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1b9f9466 obd_devs +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1d5c062c lu_context_key_degister_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1daa4775 llog_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1e325ea2 cl_cache_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1e74d3ca cl_lock_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1f194379 llog_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1fe211c3 lu_site_stats_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x221826f1 class_parse_nid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x243249e1 class_name2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x24e1671d lprocfs_counter_sub +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2506384f cl_page_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2547efae lustre_uuid_to_peer +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x254eed78 lu_device_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x25709b56 class_exp2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x275cdc7a cl_env_reexit +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x27df5567 cl_sync_io_note +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x286860f5 class_handle_free_cb +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x28ad667f lu_env_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x28bb1d0d lu_context_key_revive_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x297cf5e0 class_handle2object +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x29c1d630 class_new_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x29d88202 class_export_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2b3a1653 cl_page_list_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2c7196ed cl_lock_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2da93cef lu_context_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2de33f95 cl_io_sub_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2e1e5914 cl_io_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2e45e787 cl_site_stats_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x30b8014e cl_io_loop +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x30e8b43c cl_page_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x313cc166 cl_env_implant +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x315fbd02 cl_lock_enqueue +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3180c220 cl_io_iter_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3242ed35 obdo_cachep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x326bcf39 lustre_register_client_fill_super +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x33a73cb2 cl_io_unlock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x343ba37b cl_lock_descr_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3450c289 libcfs_kkuc_group_rem +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x36b56dba cl_cache_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3726f79e cl_lvb2attr +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3797774f cl_page_list_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x37ed6e4b at_early_margin +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3822379b cl_lock_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x38cda83a llog_cat_process +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3b9f0cf6 cl_env_nested_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3bcbdc4b lprocfs_stats_alloc_one +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3da2aa39 lprocfs_alloc_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3eea6329 cl_io_start +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3f098018 lu_context_enter +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3f37b450 lu_context_exit +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3f41c6a4 cl_env_nested_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x412fc160 cl_page_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x43774d65 class_exp2cliimp +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x44479ebe cl_page_discard +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x444c4cd9 lu_context_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x44e87621 cl_page_is_owned +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x47b35f7d statfs_unpack +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4876b3c1 cl_lock_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4a41ccc9 libcfs_kkuc_group_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4a560ef3 cl_env_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4a796ce8 cl_io_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4ac58713 obd_connect_flags2str +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4c190aad lprocfs_find_named_value +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4cac186c lu_device_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4d8d6dfa lprocfs_counter_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4dee11bd class_config_parse_llog +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4e547c32 lprocfs_rd_uint +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4f04ced3 lprocfs_rd_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4f202777 cl_page_delete +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4fc163d6 class_manual_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x50c7fc36 ptlrpc_put_connection_superhack +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x510922f5 lu_context_key_quiesce +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x51c7f6c3 lu_context_key_register +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x52016ecd cl_io_submit_rw +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x521915f8 lprocfs_rd_connect_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x532ec19e cl_object_attr_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x53653600 cl_page_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x543c7f10 lu_device_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5500e69f cl_page_list_move_head +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x552c0ad9 cl_env_cache_purge +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5580d918 cl_object_find +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x558bec27 obd_ioctl_getdata +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x570d09ae lustre_swab_lu_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x577e90dd cl_io_lock_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x58b5738a md_from_obdo +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5a2b2f3a lu_object_add_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5c689e2e class_import_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5e93341f lprocfs_oh_sum +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5f115612 lu_object_locate +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5fe97b73 block_debug_check +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x60e2391b lu_cdebug_printer +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x61e98df7 libcfs_kkuc_group_foreach +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6231919f cl_page_list_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x62465b76 lu_device_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x624ffe24 lprocfs_counter_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x631e7589 lu_site_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x636649b4 cl_page_clip +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x648a7f66 lprocfs_free_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x654548ba cl_io_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6634d4de cl_req_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6734adbd lprocfs_read_frac_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6774f4e9 lu_object_header_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6840242c cl_sync_io_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6890d175 lustre_get_jobid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x693c4ca8 cl_page_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x69c42114 at_min +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6a909f9e cl_object_attr_unlock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6b5edd82 cl_env_percpu_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6d4f33c3 lprocfs_at_hist_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6de573d7 cl_stack_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6f42096b llog_open +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x709ce127 cl_page_own_try +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7109541d lu_context_key_quiesce_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7404887b cl_page_list_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x742559b1 class_unregister_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x752168d8 obd_unstable_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x752f71a8 class_get_profile +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x756a77f3 class_parse_nid_quiet +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x775e9a41 llog_process_or_fork +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x77d2089a class_name2dev +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7802fcd7 lustre_swab_llogd_conn_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x789796a1 obd_zombie_barrier +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x79f9b05f lu_env_refill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7abd0ac3 lprocfs_rd_conn_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7b4fc57b at_max +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7c027853 lu_object_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7edcafa0 cl_env_reenter +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7f6f8b93 class_fail_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7fe5561a obd_dirty_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8052f31b cl_object_header_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x806cc497 class_add_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x80fc0ab6 lu_object_header_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x816579be lu_device_type_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x81742d89 obd_ioctl_popdata +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8218dfbc cl_io_submit_sync +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x831f656c class_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8446b9a8 obdo_to_ioobj +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x869896b4 class_conn2export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x871a1a30 class_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x88b87068 lprocfs_stats_collect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x891054f1 lprocfs_clear_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x898a8674 cl_io_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x89de5cd7 cl_object_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8b04e6ca class_incref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8b658953 class_num2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8ba6e479 lustre_swab_lu_seq_range +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8c64c116 lu_object_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8da4a51a class_unlink_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8ea8e195 class_put_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8f67314c obd_dump_on_eviction +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8fd78ba2 class_disconnect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8ffa85c5 cl_page_prep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x90e6308f lu_context_key_degister +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x91a1d9a4 class_handle_hash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x92291390 cl_vmpage_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x92aa80ed lu_env_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x92e58479 obd_dump_on_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x93859814 lprocfs_oh_tally +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x93d370c3 lustre_common_put_super +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x95735c6c at_extra +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x972922ab lu_context_key_register_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9767adce class_uuid2dev +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9769a5a1 class_config_llog_handler +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x97d03783 at_history +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x992e14b7 cl_page_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9b1ed9d8 obd_jobid_var +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9b9e619f obdo_from_inode +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9d9ee9e9 cl_object_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9dc3b7e8 lu_object_unhash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa132edbb cl_lock_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa1468140 cl_cache_incref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa160da4a lu_object_header_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa31da545 __llog_ctxt_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa5fb234f lprocfs_write_frac_u64_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa6068547 cl_io_is_going +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa67134a4 cl_io_read_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa677e564 cl_index +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa67bb9a5 cl_io_iter_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa729bb8e class_devices_in_group +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa7e16614 lu_kmem_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa82a3dd1 class_handle_unhash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa99a8e32 lu_context_refill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa9c6b290 llog_close +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xaaeb25d0 lustre_end_log +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xab8c2793 cl_conf_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xae393b28 llog_process +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xae41eb7b libcfs_kkuc_msg_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xaec63bc4 lprocfs_single_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb01963a6 class_uuid_unparse +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb02fbb5b lustre_register_kill_super_cb +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb0ef396b class_register_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb35519ed lustre_swab_cfg_marker +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb4cbc8c6 cl_sync_io_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb4f8ee63 lprocfs_read_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xba985283 lustre_register_client_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbacac922 lprocfs_write_frac_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbb89fe83 lu_stack_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbcd544ca cl_page_own +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc01c3c00 lu_object_find_slice +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc03746c9 libcfs_kkuc_group_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc0954007 lprocfs_oh_clear +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc0992375 cl_req_attr_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc0bf7ef2 obd_debug_peer_on_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc0ee93da lu_site_purge +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc14e91ad class_destroy_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc2b1c554 cl_site_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc306a12a cl_page_completion +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc4298c86 cl_2queue_discard +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc44156cd cl_2queue_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc4a81cf4 cl_io_commit_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc4c9e523 lu_context_key_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc5b6ac36 cl_env_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc5ceeac6 cl_page_header_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc73c0ae3 cl_req_page_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc950628a cl_lock_mode_name +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcb0ab67f obd_max_dirty_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcd69c898 cl_page_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xce31bd77 obdo_refresh_inode +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xceae6b2c cl_object_attr_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcf6bd980 lu_device_type_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd5fb6893 lprocfs_rd_timeouts +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd70fe669 lustre_swab_llogd_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd7bc1ae9 cl_io_rw_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd7bc8654 obd_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xda5b1ced class_find_param +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdb3f359a class_import_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdb9ea0b8 cl_page_list_move +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdcc40af0 class_check_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdd02db82 cl_page_list_splice +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdd130e60 cl_env_unplant +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xde7d985b obd_dirty_transit_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdec1c0b1 cl_lock_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe021d8f5 cl_page_is_under_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe03a517c cl_page_unassume +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe1195522 cl_req_completion +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe1283489 cl_io_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe34d99e0 cl_page_make_ready +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe5ab40cb lu_object_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe69066b1 cl_2queue_init_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe6c4ec23 cl_object_glimpse +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe735b657 cl_site_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe84d4b76 cl_req_prep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe94af9b2 cl_page_list_del +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xea2db078 cl_object_attr_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xea32c78f cl_type_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xeacc67e7 cl_2queue_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xeacec47c lprocfs_oh_tally_log2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xebeee2d6 class_process_proc_param +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xec09abff lprocfs_seq_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xec7d6b85 obd_timeout_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xecec865a lprocfs_exp_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xeebbe912 lprocfs_wr_uint +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xef76f858 block_debug_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xefa36040 cl_env_percpu_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf066dfc0 lu_context_key_revive +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf083c061 cl_lock_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf190b67d llog_init_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf1a6c529 cl_io_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf3718ab0 lprocfs_rd_server_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf38ebe51 cl_page_find +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf481d962 class_connect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf490d5f9 class_del_profiles +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf4a357ce lu_site_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf83efe74 cl_2queue_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf903dd2c lprocfs_rd_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfad7b257 cl_page_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfb91c802 cl_offset +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfba4917d cl_req_page_done +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfbea0098 lu_types_stop +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfd68d17a class_notify_sptlrpc_conf +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfd9a0a93 cl_lock_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfdbe1557 lprocfs_write_u64_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xff056dda cl_page_is_vmlocked +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfffc1f11 lustre_swab_ost_id +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x008dc986 sptlrpc_gc_del_sec +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00cb99c1 RQF_LDLM_INTENT_GETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00d95039 ptlrpcd_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x01e6b155 lprocfs_wr_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x01fa36b3 ptlrpc_wake_delayed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x03c1965c ptlrpc_retain_replayable_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x03d2d9c7 ptlrpc_set_destroy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x048b59d5 lustre_msg_set_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0515f93b RQF_FLD_QUERY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x06b3942b lustre_swab_lov_user_md_objects +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x071fc74a RQF_LDLM_ENQUEUE_LVB +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x078d2445 sptlrpc_cli_unwrap_bulk_write +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x08bb2d27 lustre_swab_obd_ioobj +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x095587d0 lustre_msg_buflen +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0a3130b0 RMF_MDT_EPOCH +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0a3f9fee llog_initiator_connect +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0ac252b2 lustre_msg_set_jobid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0ac54708 lustre_errno_hton +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0bcacb5d RMF_MDS_HSM_USER_ITEM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0bd8d8ea sptlrpc_cli_wrap_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0c2c17a8 ldlm_cancel_resource_local +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0cf343dd RQF_LDLM_INTENT_BASIC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0da888d3 sptlrpc_cli_ctx_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x10269deb target_pack_pool_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x10758cf1 ptlrpc_register_service +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x10a1a86d ldlm_error2errno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x10f4d7b2 ptlrpc_lprocfs_brw +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1148a3d5 ptlrpc_send_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x115017f6 req_layout_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x12b6f5a3 ptlrpc_connection_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1318d6a5 client_import_add_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x14708afc lustre_swab_mdt_rec_reint +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x14d192db lustre_msg_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x152f066f sptlrpc_flavor_has_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x157c8252 req_capsule_client_sized_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x15a3e4db RMF_GETINFO_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x163bf683 ldlm_prep_elc_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x172fb86d lustre_msg_hdr_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1747d8b3 ldlm_lockname +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x17950f60 RQF_SEC_CTX +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x181ce3fe ldlm_lock_set_data +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19108a0f RQF_OST_DISCONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19826d33 ldlm_extent_shift_kms +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19c08934 RQF_LDLM_INTENT_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19ffea4a lustre_pack_reply_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1a6a3ce9 RQF_OST_GET_INFO_LAST_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1a9b76aa RMF_OBD_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1abd3258 RMF_SETINFO_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ace4b5f RQF_LDLM_BL_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ad6c330 RMF_EAVALS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1be21715 lustre_msg_size_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1c300d8e lustre_msg_get_slv +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1dc2051d RMF_SEQ_OPC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1de9c288 lustre_swab_layout_intent +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1eb2a65f RQF_OST_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ee46b51 lustre_init_msg_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ee9eb3c RQF_MDS_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2096f5b5 RQF_OST_SET_GRANT_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x218c6f3d __ptlrpc_prep_bulk_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x219391ec RMF_EAVALS_LENS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x21a0ec73 ldlm_cli_cancel_unused_resource +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2252ddd6 ptlrpc_req_finished +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x233790b5 RMF_OST_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x24aafdba RMF_MGS_TARGET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2585a629 RMF_SEQ_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2587513c RQF_LDLM_CP_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x269554ce RQF_LDLM_INTENT_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x26b99c8c ldlm_lock_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x26f99d16 RQF_MGS_CONFIG_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x26feadb6 ptlrpc_request_free +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x276e97a9 ldlm_namespace_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x280e30fe ptlrpc_unregister_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x285e5b99 lustre_msg_set_conn_cnt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x29e0869a sptlrpc_get_hash_name +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2a63a472 lustre_swab_ptlrpc_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2b4e341b client_disconnect_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2b5bbc0f ptlrpc_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2b6ebb80 ptlrpc_set_add_new_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2c00c60d ptlrpc_sample_next_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2cec385f ldlm_lock_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d075c0c sptlrpc_import_flush_my_ctx +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d1b3486 ldlm_lock_allow_match_locked +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d56f168 ptlrpc_pinger_ir_up +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d798316 RMF_MGS_CONFIG_RES +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2dc69b03 sptlrpc_cli_unwrap_bulk_read +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2deec2e4 ldlm_cli_cancel_list +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e4562fe RQF_LLOG_ORIGIN_HANDLE_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e4ca396 RQF_LDLM_INTENT_UNLINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2f0e4f87 RQF_OST_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2f793215 lustre_swab_ost_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2fab3539 lustre_swab_ost_lvb_v1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2fd2f737 lustre_msg_set_limit +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x301d4fcd RQF_MDS_READPAGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x302937e0 RQF_MDS_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x305e66d3 req_capsule_filled_sizes +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x32256ab2 ptlrpc_obd_ping +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x322b2c14 req_capsule_client_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3261b862 RQF_OST_SYNC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x327e18c8 req_capsule_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x34763fc3 ldlm_resource_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x35939a3d lustre_swab_fiemap +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x365201cd ldlm_completion_ast_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3835ab4b RQF_LLOG_ORIGIN_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3858fb94 RMF_OBD_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x388ae433 sptlrpc_cli_ctx_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x38c01799 RQF_LDLM_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x38fce533 lustre_msg_set_versions +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x39f3383a req_capsule_server_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x39f60a5f RMF_OST_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3a1e4bcb __lustre_unpack_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3a7155fa ptlrpc_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ab90f6e lustre_msg_bufcount +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ac00716 lustre_swab_hsm_user_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3b6b7cba dump_ioo +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3bedb0c7 RMF_LLOGD_CONN_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c63e62b RQF_MDS_REINT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c8b16ab lustre_swab_ost_lvb +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ca50f33 RQF_MDS_HSM_CT_REGISTER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3d7dc5f9 ldlm_pools_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3dc47695 lustre_msg_get_magic +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3e823917 ldlm_lock_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f034caf lustre_msg_get_status +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f35a11d RQF_FLD_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f752e78 RQF_MDS_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x40104627 ldlm_cli_enqueue_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x41008cef RQF_LDLM_CANCEL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43168488 RQF_MDS_RELEASE_CLOSE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43203dd4 ptlrpc_set_add_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4351e916 lustre_swab_hsm_user_item +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43705ee4 RQF_LOG_CANCEL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43d7efc8 lustre_msg_set_transno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x44036eda RQF_MDS_GET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x440c2a71 RMF_FIEMAP_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4481591d RQF_OST_SET_INFO_LAST_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x44caeddf client_connect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45d05893 lustre_swab_lustre_capa +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45e30cea lustre_swab_ldlm_intent +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4782f3e8 lustre_free_reply_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x47f5e903 RMF_MDS_HSM_REQUEST +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x482a7f6c ldlm_pool_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x484db2ef ldlm_resource_unlink_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x49ef2de3 req_capsule_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4a5a2416 RMF_DLM_REQ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4b18c72c ptlrpc_recover_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4ddda47e ptlrpc_lprocfs_unregister_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e1706e5 lustre_msg_buf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e696b96 ptlrpcd_queue_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4eb03a6f ptlrpcd_destroy_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4f766c3b lustre_swab_generic_32s +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4f966c2c ptlrpc_replay_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x503337c2 ldlm_flock_completion_ast +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x50443f6a ptlrpc_init_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x50a1774e lock_res_and_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x50dd74f8 RMF_STRING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x514b3851 lustre_swab_ldlm_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x51d2ef22 req_capsule_shrink +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x51e311e9 lustre_swab_ldlm_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x52c62150 RMF_RCS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x53411557 RMF_DLM_REP +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x53a4a004 bulk_sec_desc_unpack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x555eb7fe RQF_MDS_HSM_STATE_SET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x55669470 ptlrpc_pinger_add_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5569ee13 req_capsule_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x57d598d7 lprocfs_wr_ping +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x595ab175 lustre_swab_obd_quotactl +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x596582bf RMF_GETINFO_VALLEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ae18418 ptlrpc_request_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5b6ba895 lustre_packed_msg_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5c658c8b ldlm_completion_ast +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5c6a3a83 RQF_SEQ_QUERY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ca1b491 lustre_swab_close_data +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5caae213 ptlrpc_next_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5d6574d7 ldlm_lock_match +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5d8a24a8 req_capsule_get_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e0b19b1 RMF_CLUUID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e2b7558 lustre_msghdr_get_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e6f435d RQF_OST_BRW_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e80f899 RQF_LLOG_ORIGIN_HANDLE_READ_HEADER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ec3284d RQF_MDS_HSM_CT_UNREGISTER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ef831ee lustre_msg_get_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5f96ccdd ptlrpc_connection_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5fa1a1ca ptlrpc_unregister_service +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5fc9a455 RMF_CLOSE_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6042bc15 RQF_MDS_REINT_RENAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x604e2505 RMF_SWAP_LAYOUTS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x60cd26ad RQF_MDS_REINT_CREATE_SYM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x61646e1b RQF_MDS_SWAP_LAYOUTS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x618ad203 RQF_OST_GET_INFO_LAST_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x61cd102a ldlm_namespace_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x62aaae3f RQF_MDS_HSM_REQUEST +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6315dd4c RMF_LLOGD_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6352a62d ldlm_get_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x641c9732 ptlrpc_request_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6427356e ldlm_resource_putref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x653723dc RMF_LOGCOOKIES +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x65c4df17 sptlrpc_gc_add_sec +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x679c3a1c sec2target_str +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x683243bf ptlrpc_set_next_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x685eeaba RMF_DLM_GL_DESC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x68f49e5e ptlrpc_expired_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6912990a RQF_OST_QUOTACHECK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x696ba811 lustre_msg_get_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x69b3ec86 ptlrpc_prep_bulk_imp +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x69c9f04d RQF_MDS_REINT_LINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6a3785c9 RMF_EADATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6ac5dc4a client_obd_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6bef1a1d req_capsule_server_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6d72828c sptlrpc_conf_log_update_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6e227f4f sptlrpc_enc_pool_put_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6efa82b0 RQF_MGS_TARGET_REG +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6fb92092 sptlrpc_flavor2name_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6fde1612 ptlrpcd_add_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x70087021 req_capsule_extend +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x703538e4 lustre_swab_hsm_current_action +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x725a892c RQF_MDS_REINT_OPEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x72fa8570 client_import_find_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x73524c85 sptlrpc_lprocfs_cliobd_attach +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x73b7f569 client_import_del_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x74840056 lustre_msg_set_status +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x75a2c40d ldlm_put_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x75e4ca61 RQF_OST_GET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x786e2692 ptlrpc_request_set_replen +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x78dfe19c ptlrpc_request_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7902aeb7 ptlrpc_lprocfs_register_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x79ab7f51 _debug_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7a2e08f0 __ptlrpc_free_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7a832f10 RMF_CONN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7b76a0a9 sptlrpc_unregister_policy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7bbf8001 RMF_MDT_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7c4c6107 RQF_LDLM_CONVERT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7d1ecd7f RQF_LDLM_INTENT_LAYOUT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7dfb3c18 lustre_msg_clear_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7f5a1cc7 lustre_msg_set_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x80ecb4e3 RMF_MDS_HSM_CURRENT_ACTION +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x817d7f1f lustre_msg_add_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x818388ca ldlm_lock_decref_and_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x822a5eb5 __ldlm_handle2lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x826d3c4f RQF_LDLM_GL_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x837efb00 RMF_NAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x842c3373 ptlrpc_free_rq_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85135801 RMF_DLM_LVB +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85a9e0d8 RMF_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85eecf67 sptlrpc_get_hash_alg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x863db6eb RMF_HSM_USER_STATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x876c2551 RMF_GETINFO_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x87bf7b3c sptlrpc_get_next_secid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x885c9ef3 ptlrpc_activate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x886aff5d ptlrpc_request_alloc_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8872f3d2 RMF_SETINFO_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x88fff52d RMF_CAPA2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x89e62eb7 req_capsule_server_sized_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x89f9edf7 RQF_MDS_REINT_SETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8a1655b2 sptlrpc_target_sec_part +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8a1ea476 lustre_swab_hsm_state_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8a257736 RQF_MDS_HSM_STATE_GET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8ac440fa ptlrpc_uuid_to_connection +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8b854254 lustre_swab_mgs_config_res +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8cb71d4b RQF_MDS_REINT_CREATE_SLAVE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8cc974d2 ldlm_namespace_dump +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d1ab900 ldlm_lock_dump_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d22667a sptlrpc_import_sec_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d77ea75 lustre_msg_set_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d79ea77 req_capsule_server_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8da3fca7 lustre_msg_add_version +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8e9abe4d RMF_GENERIC_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8ec4a457 ldlm_lock2handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8f0aceac RQF_MDS_HSM_ACTION +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8fec0451 lustre_msg_get_limit +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x900df032 ptlrpc_deactivate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x90b512b8 client_obd_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9113f109 ldlm_cli_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x919c4ce3 RMF_OBD_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x91cf58d3 RQF_MDS_PIN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9228392f lustre_swab_mdt_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9277ae5e RQF_MDS_REINT_CREATE_ACL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x937b1ee0 lustre_swab_mdt_ioepoch +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x93de15ea ptlrpcd_wake +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9553c633 RQF_LDLM_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9564a202 ldlm_lock_addref_try +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x95d08f0c lustre_swab_mgs_target_info +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x95e367bc ptlrpc_init_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9660ace0 RMF_FLD_MDFLD +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x967bfd52 RQF_OBD_PING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x97318a60 lustre_pack_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9798f2f1 RQF_MDS_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x97f4ae42 ldlm_prep_enqueue_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x980fcfdc ptlrpc_connection_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9999cf7a dump_ost_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9a258886 RQF_MDS_GETSTATUS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9a6f2f6d lustre_msg_set_opc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9b88f6ce RMF_NIOBUF_REMOTE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9bb5198b RQF_MDS_CLOSE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9d7ea314 sptlrpc_pack_user_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9fb088f1 lustre_swab_lov_mds_md +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa029d505 ptlrpc_start_threads +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa12d0f51 ptlrpc_unpack_req_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa163f4c3 dump_rniobuf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa2244636 RQF_MDS_GETATTR_NAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa243761f ptlrpc_fail_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa32f459e ptlrpc_unpack_rep_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa38396c0 lustre_pack_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa3b808cc ptlrpc_send_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa3d2a6ee RMF_CAPA1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa47787ef RMF_PTLRPC_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa4a2d089 RQF_OST_PUNCH +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa5db6e12 sptlrpc_import_flush_all_ctx +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa6c436ca RQF_MDS_WRITEPAGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7928ddd ptlrpc_at_set_req_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7a03774 ldlm_cli_cancel_list_local +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7b0a21d ptlrpc_disconnect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7e360b1 RMF_OBD_IOOBJ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7ec567d RMF_CONNECT_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa8c3e3f4 req_capsule_set_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa8f0f075 ldlm_lock_fail_match_locked +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9704f80 lustre_msg_get_last_committed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9c4658e lustre_swab_lov_user_md_v3 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9e40b00 ldlm_lock_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaa8df495 ptlrpc_resend_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xac337963 ptlrpc_connect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xacd6a7d7 lustre_swab_ost_last_id +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xae9de7f4 ptlrpc_add_timeout_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf4e9658 RQF_MDS_SYNC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf50a0d6 RMF_HSM_STATE_SET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf5df501 ldlm_replay_locks +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb0751fa4 RQF_LLOG_ORIGIN_HANDLE_DESTROY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb0a8ec28 ptl_send_rpc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb1b43d8a dump_rcs +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb291473d lustre_msg_early_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb31fde81 ptlrpc_schedule_difficult_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb45fc821 ptlrpc_request_committed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb4a7ecf3 lustre_msg_add_op_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb512ebc2 sptlrpc_parse_flavor +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb525bee2 sptlrpc_register_policy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb5601b00 lprocfs_wr_pinger_recov +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb61cb95a RQF_MDS_GETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb68476df interval_erase +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb6aafd03 RQF_MDS_DONE_WRITING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb738372b ptlrpc_check_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb7b38189 RMF_MDT_MD +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb7fa3cc8 RMF_LLOG_LOG_HDR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb87dbd35 ldlm_cli_update_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb903634e RQF_OST_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb9b631cf lustre_swab_mgs_config_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb9c234a0 ptlrpc_req_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xba2f0a31 ptlrpc_pinger_del_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbaa76097 lustre_msg_string +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbc1370dc lustre_shrink_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbd83bc44 RQF_OBD_SET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbdfa720e ptlrpc_resend +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbef769cc RQF_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbf98b86f RQF_MDS_QUOTACHECK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbffd4313 RQF_OST_BRW_WRITE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc06c4670 lustre_msg_get_versions +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc0867da7 RMF_REC_REINT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc0cdf55e RMF_MGS_SEND_PARAM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc254732a ldlm_pool_del +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc2b1af57 RQF_MGS_SET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc2be922a RMF_SYMTGT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc311c9ff ldlm_cli_enqueue +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc4dee39d ldlm_lock_change_resource +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc559a634 RMF_LAYOUT_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc60a60e1 RQF_OST_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc6949cf0 ldlm_lock2desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc694be4b RQF_LLOG_ORIGIN_HANDLE_PREV_BLOCK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc763fabc sptlrpc_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc79b9c67 ldlm_pools_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc7ca8257 RQF_MDS_REINT_SETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc7e47564 ptlrpc_interrupted_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc8f586a9 ptlrpc_connection_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc96547d6 ldlm_revalidate_lock_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc985bd61 sptlrpc_conf_client_adapt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xca5a81ec ptlrpc_pinger_ir_down +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcb16107d ptlrpc_set_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcb2cc0cf lustre_swab_lquota_lvb +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcbff7cd9 ptlrpc_buf_set_swabbed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcdcaf06e unlock_res_and_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xce86066d lustre_msg_set_slv +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcec513c9 RQF_MDS_UNPIN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcf9963db lustre_msg_get_op_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcf9aab6a RQF_MDS_DISCONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd05df946 ptlrpc_mark_interrupted +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd0f5deec ldlm_namespace_new +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2983334 lustre_swab_swap_layouts +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2e0d4eb lustre_msg_get_opc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd3dae408 ldlm_it2str +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd4ad69a7 ldlm_resource_iterate +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd4e2270b req_capsule_client_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd69e0a27 RQF_MDS_IS_SUBDIR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd6c3ebfb RMF_FIEMAP_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd6ce17ac _ldlm_lock_debug +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd7910326 lustre_swab_obd_statfs +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd8b91b3e lustre_swab_lov_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd8f06300 RQF_MDS_HSM_PROGRESS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd9561861 RQF_LDLM_INTENT_OPEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd9c78bfc req_capsule_has_field +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xda5ff572 ptlrpc_set_import_active +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb1fb0a2 RQF_MDS_REINT_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb74057f lustre_swab_hsm_progress_kernel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb9d5a6a lustre_swab_niobuf_remote +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdc5c4de3 ldlm_lock_allow_match +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdcaf5a3b ldlm_pool_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdcb3e9ec ptlrpcd_alloc_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd0ffb04 sptlrpc_flavor2name +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd30d7bf RMF_ACL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xddc40a85 lustre_msg_get_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xde12d36b RMF_MDS_HSM_ARCHIVE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xde5061c1 ptlrpc_init_rq_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdee87192 sptlrpc_conf_log_update_begin +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdf701ae7 lustre_swab_fid2path +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe0be1983 ldlm_lock_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe0cc694c RQF_LLOG_ORIGIN_HANDLE_NEXT_BLOCK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe0f05a7d ptlrpc_buf_need_swab +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe18277a1 sptlrpc_target_export_check +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe40e0a50 lustre_msg_get_transno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe43832d0 sptlrpc_sec_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe4c467ca ldlm_cli_cancel_unused +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe5075999 ptlrpc_reconnect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe57bd972 sptlrpc_current_user_desc_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe5e8169b lustre_errno_ntoh +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe643998e RQF_OST_SETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe691ea37 sptlrpc_cli_enlarge_reqbuf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe6a63e1f client_destroy_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe6f0dc96 RQF_OST_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe7062b5f RMF_U32 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe7512278 ptlrpcd_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe7af606a req_capsule_server_sized_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe80d44ae ldlm_resource_dump +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe815d197 ldlm_namespace_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xeac5b13a ptlrpc_abort_inflight +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xebb64e68 req_layout_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xec2e2415 ptlrpc_request_alloc_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xec939a00 RQF_MDS_REINT_UNLINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xed1c10d6 ptlrpc_connection_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xedcb740d sptlrpc_name2flavor_base +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xef1aeca9 RMF_FLD_OPC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xef49d0c4 target_send_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf1300275 _sptlrpc_enlarge_msg_inplace +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf1f4a513 sptlrpc_get_bulk_checksum +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf248413b lustre_pack_reply_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf277c125 RQF_OST_GET_INFO_FIEMAP +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf2e9ecd2 llog_client_ops +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf3d44370 RQF_OST_DESTROY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf422f8c1 ptlrpc_request_bufs_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf43540b9 lustre_swab_mgs_nidtbl_entry +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf45085e1 sptlrpc_conf_log_stop +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf55c033b RMF_MGS_CONFIG_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf596e9ae sptlrpc_conf_log_start +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf607fc23 sptlrpc_flavor2name_base +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf617ab8a lustre_msg_get_conn_cnt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf697b756 ldlm_dump_all_namespaces +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf6a089aa ptlrpc_pinger_sending_on_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf7408f84 lustre_swab_hsm_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf7ba40c0 RMF_MDS_HSM_PROGRESS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf7cc8811 ldlm_pool_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf822fe0c ptlrpc_unregister_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf870fed9 RQF_LDLM_GL_DESC_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf9051bd6 RQF_QC_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf973aa93 lustre_swab_lov_user_md_v1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf9f72dfc RMF_TGTUUID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfa51688d interval_insert +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfb444a98 ptlrpc_prep_fcset +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfba14b3c ptlrpc_invalidate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfbced38c do_set_info_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfbee26f8 lprocfs_rd_pinger_recov +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfc2fa83f ptlrpc_del_timeout_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfd148bf8 RMF_LDLM_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfe6048ce ptlrpc_add_rqs_to_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xff00a0b2 ptlrpc_queue_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xff2b5341 ptlrpc_prep_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xffc807e8 sptlrpc_unpack_user_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xffe29c3f RQF_LDLM_ENQUEUE +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xe80eccdb cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x668d3727 most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x01a6ac4b rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x06cb9b6a rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0b801fb1 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0e636800 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1462c5b8 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x14caaed0 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x197b3c53 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1b5d8d52 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2616b9bc rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2ceabb88 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2fda0ead rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x33d8fe81 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3fbf5c4c rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x48537988 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4c2e2f3b rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4ddf0051 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x54a59d46 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x568176a7 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5fcb467d rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x669edfc4 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x66cff4a7 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7008516a rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7109b8a4 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x739f288f rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7858a3a1 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7c5d47e0 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x835dc9c5 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x84814846 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8d1858d2 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8e07fa29 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x988e720b rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9c0afa3b rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9c84dec5 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa07b58cf rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa2cefad0 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaa53b53e rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb1db009a dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbdefe1cb rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbeb80ac3 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbf73fe75 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc5d91cf9 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc937617e alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd265480c rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd30f2be8 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd4d8feb2 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdccda2c5 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe445dcf5 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe9c06e6d rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xed8d35c3 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf634c59a rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x00684962 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0298c8c5 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x03a5928f ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x18b4776d ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x196ed8e3 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1c46b94c ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1e1e2d8a ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x20b8b854 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x22ab0a38 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2d2d98db ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2e83263c SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2f540ab7 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x37b93cfc Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3a9ee9aa ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3bdf8ddf ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3f87fe7e ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4250a013 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x471ebf6e ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4f3f847b ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5c3cf5f9 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5fb34881 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6390478a ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x66d4c260 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6ff07189 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7216baa5 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x75d62077 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x80e9ea95 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x83b090d6 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x85dfd516 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x86a145dc IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x86e7ae3d ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x87f5bf7e ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x892f30ec ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8b7d36ef ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8e555740 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8f8ff8ce ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8f979b75 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa37d4086 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa669af70 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa8599892 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb590859b ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb9f0d48b HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc54b767a ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd2cf620 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf592637 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd237aa93 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd6d1d575 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdc47849b ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe87a71d3 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xefa88d62 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xefcbf37e ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf845afc2 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfcdf0ea3 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x00185f89 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x072ea887 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x08730efc iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0ced4fdc iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0e7d180b iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x157de13a iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x17901b43 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1ba38341 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1e13279c iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3ae233f5 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x403d22d3 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x43fd5b7d iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x49743b47 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4fa58129 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4fd751b5 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x60e6f649 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65eb6cef iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8247d0d5 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x85337c39 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8a85dd4c iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8dbca506 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x90af9765 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x98ccd88c iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9c24a296 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa5849312 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa87d1f80 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaac459f6 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xab197c9e iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xad9365d9 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb42a78ec iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb6014478 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbfebfa7b iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc4e87a26 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd32efa59 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd447aa24 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd5512ba3 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xda1ec36b iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdeafb3dc iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe1dba768 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf0ea3eab iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf3b81777 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf4b4f7ea iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfb807005 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0355e74b spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x05d55881 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x0adacd45 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x10ae5e89 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x13af2fbd target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x1813ac28 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x28f4495a sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x2ef57782 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x35a28f46 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x39de5d7a spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x3db7603a passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x4184e8ae target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x4c96b667 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x4ca78ce9 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x4ef30922 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4f71f763 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x50ee5b08 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x53f97445 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x55bbf35c __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x5e5f4efa transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x5f495a4f transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x5fbc74ba core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x6109fd62 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x61d8ea13 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x648eb08b target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x689e32b9 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x6bc529ac sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x6bf2b339 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x6cc217e2 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x720b8993 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x76e08745 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x7ad19954 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x7f322136 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x8e21f4af sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x8f9eaec8 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x940f7875 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x9834be2b target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x99a7d16f target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x9b183107 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xa32f1640 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa3766aef core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xa7d73644 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xa941b27e transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xab6ec67c core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xabe8d693 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xae042b07 target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0xb19de753 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xb62675e1 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xb73eb419 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xb9ee8cf6 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xbda625f8 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc188cd5a transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xc1940d82 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xc4308510 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xc7f6c5e9 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc929ee35 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xcb6a3355 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xd09d29f6 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xd19ac047 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd30382e5 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0xd451e05b spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xdd7f6580 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xdfbc96e1 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf2644344 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3e8d647 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf7da6cc9 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0xf88a0aa5 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xf9074df6 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xfffc8c5a target_show_dynamic_sessions +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xc92fa4b4 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xc25d86a4 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xccf1c7d4 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x29a2a9bd usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2cfdbe10 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x36e17e8b usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x47deff86 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x526b7164 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x68a29286 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x799a604e usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7dcb1308 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbf4998f2 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd29811ed usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdce471e7 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf86de0c5 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x17d98709 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xeaad4eb3 usb_serial_suspend +EXPORT_SYMBOL drivers/vhost/vhost 0x3dfe1cea vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0x72fc48df vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3c71c418 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x5fedea44 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/video/backlight/lcd 0x0b8bda13 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x3c513f03 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x768ff389 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x9641339d lcd_device_register +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x03cd1085 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x045c6e2b svga_tilecopy +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 0x4c737ac3 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4cdb9843 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb061fe78 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe8a1f03e svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xfc8e280e svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x42511697 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 0x5c555727 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x5c98ecff g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xf20b4225 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x270cd154 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x69efea4b matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xabb2e2a1 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xdf9f7d22 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xdadaba7f matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x5e2f33c4 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x294b25a5 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x43c0787b matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x61260cdd matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xbbc669e0 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xeac75c64 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xf698fe67 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x2ef3f402 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x3787eb39 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x391a0566 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xea89bc64 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf470e827 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xb967b89d mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/virt/fsl_hypervisor 0x45fd1882 fsl_hv_failover_unregister +EXPORT_SYMBOL drivers/virt/fsl_hypervisor 0x77c9b191 fsl_hv_failover_register +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x0f748e2e w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x88a77366 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xbeee8c3f w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xc32bd4a6 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x557802c7 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xcac5f7ba w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x1ba44097 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xd22b8f27 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x40d5333f w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x5cf37a03 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x6a191de5 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x89d52dbe w1_register_family +EXPORT_SYMBOL fs/configfs/configfs 0x0043ff3c config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x0c991fcf configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x297f16d5 configfs_remove_default_groups +EXPORT_SYMBOL fs/configfs/configfs 0x3a2023ef config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0x3c7c1acf configfs_depend_item_unlocked +EXPORT_SYMBOL fs/configfs/configfs 0x47b1a6b6 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x48efaf9e configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x61fdfcad configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xadb9070c configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xdf35ba73 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xe50b2aae configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xe644746a configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0xf2692e56 config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0xf570c8d7 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0xf67c7cc3 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0xf83dd718 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xfd9a8e85 configfs_register_group +EXPORT_SYMBOL fs/exofs/libore 0x20352cff ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x24835742 ore_read +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x48ad9fdd ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x88a16f42 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xb3794c48 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0xccdda055 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0xd34a770e ore_create +EXPORT_SYMBOL fs/exofs/libore 0xe3c865bd ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0xf4f8c67e ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0xfc3168a0 ore_write +EXPORT_SYMBOL fs/fscache/fscache 0x03c3e240 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x08614018 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x123c2693 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x153be362 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x20472202 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x2c263190 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x473ea5d8 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x475d6a24 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4ac2e1e2 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x4ccc45e6 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x51cd7935 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x5777ea71 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x608c7650 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x64298113 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x6b52476b fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x72453d95 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x78d8d7bd fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x7f78b450 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x8204ae23 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x88db7a78 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x8d03583c __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x8e1d2802 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x99505ff5 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xa2a0664b __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0xa34d35a9 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xadbf55a1 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xb4802a20 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xb900403b fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xc3a0f1b4 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xc778f536 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xca081bf0 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xcf37fb58 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xd2560459 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xd47c4353 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xd8eee9e2 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xda995bcc __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xde3662a9 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xea727285 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xf9f82396 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xfa5cced6 fscache_io_error +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x0060fd97 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x1467bf23 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x602c269d qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x94473622 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0xc092ba23 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xd374d676 qtree_read_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-itu-t 0x6d356209 crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x56329ecc crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd09b2cba crc8 +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 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 0x5c3ed6e8 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x6ee83143 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 0x0c222eb5 lz4_compress +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x682a23e0 lz4hc_compress +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0x7456cc61 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul +EXPORT_SYMBOL net/6lowpan/6lowpan 0x39517119 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x5f600bb3 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x6430ed57 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x84d88ea5 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xaaed1f29 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xeb85b299 lowpan_register_netdev +EXPORT_SYMBOL net/802/p8022 0x666a269d register_8022_client +EXPORT_SYMBOL net/802/p8022 0xeb9543ec unregister_8022_client +EXPORT_SYMBOL net/802/p8023 0x0408e962 destroy_8023_client +EXPORT_SYMBOL net/802/p8023 0x1908bca3 make_8023_client +EXPORT_SYMBOL net/802/psnap 0x658b5ebe register_snap_client +EXPORT_SYMBOL net/802/psnap 0xcfe7def8 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0268aeb0 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x046c2437 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x16416d5e p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x171688f7 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x1b99c174 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x23d44a0d p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x2f8793de p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x36d2a811 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x3aeaa2d6 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x44f7c11e p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x46db9886 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x47e598e8 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x48bfe13f p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x4f3083e9 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x53d58a07 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x554eb5a6 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x5ee779a7 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x5fb8f190 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x61a90896 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x685ee8da p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x6deaed47 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x703efbef p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7148ec70 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x726c5377 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x83885422 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x857123b1 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x873deee3 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x926a87f3 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x992ca6b5 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x9acc818a p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x9ecbe18b v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xa297a906 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xa7d845ee p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xca03018c p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xcc45251b p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd1a731dc p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xd1d41ad5 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xd6c3734d p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xddf897f4 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe7194da2 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf42ed434 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfbd785e9 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x273f97fa atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x5b324dda alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xc6fd7683 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xde362c06 atalk_find_dev_addr +EXPORT_SYMBOL net/atm/atm 0x0a970edc atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x218d2898 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x25398761 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x379b702f atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x4c1f8586 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x6764a334 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x680c6fbf register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x93ad8fe3 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 0xc09584cb atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xdc2e69f5 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xe0b7968e vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0xeffe7cb3 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf5f42fc0 atm_charge +EXPORT_SYMBOL net/ax25/ax25 0x07088ed1 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x550aae13 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x75b0541d ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x85343bf6 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x98666563 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0xb62e7143 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xe0da13e6 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xe7ac47cb ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xe9aaf0a4 ax25_display_timer +EXPORT_SYMBOL net/bluetooth/bluetooth 0x031e57b1 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x14ed8692 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x151ec174 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1f05ef5f bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x22a3177f l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x28ada284 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2d1b1897 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3231c5b5 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x337806e4 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x33e66968 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x34690bcb bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x38b521af hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3912b8f0 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3a8284f5 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x40b6145d bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x48f4861c bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x49bbf43c hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4ce37776 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x57a0c440 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5e70bcf1 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6c9f59f1 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x745ef549 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8069d146 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x81b022f6 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8e808f17 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x927e873b l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x98e9769e hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9c7be6f5 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9ec6e4ee hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa6b7533a hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa97bbcc4 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb54db4af hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbda2e7ac bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc8746591 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcb8f1b01 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd00ce558 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd6a76d43 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe83439cd hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeabba415 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf1147058 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf4917550 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf574718b __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf594a579 __hci_cmd_sync +EXPORT_SYMBOL net/bridge/bridge 0xf55c1fcf br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x316542f7 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xae19ac93 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xfb23400c ebt_register_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 0x4511792d get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x6c769b38 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x8f76d489 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x951f27e3 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x9a063e7f cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/can/can 0x03c28ecb can_proto_register +EXPORT_SYMBOL net/can/can 0x8dabfbdf can_ioctl +EXPORT_SYMBOL net/can/can 0x9e07ed67 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xa208b539 can_rx_register +EXPORT_SYMBOL net/can/can 0xdf39ba3d can_send +EXPORT_SYMBOL net/can/can 0xe1bbce87 can_rx_unregister +EXPORT_SYMBOL net/ceph/libceph 0x016ba3fa osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x04ecca3c ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x10542d6d ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x10c29031 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x10e4cd52 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x1472937b ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x15d42a2c ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x17f8bf64 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x1ad47397 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x1c7adea7 ceph_file_layout_from_legacy +EXPORT_SYMBOL net/ceph/libceph 0x1ee4de80 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x20a93994 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x26570a3a ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x2a41cfae ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x2db717f3 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x2e14556f ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x305c3721 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x321da794 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x3623b051 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x382c2d97 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3dc15d69 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x3e1dbbdf osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x3f4f2cf5 ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x419cb09b ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x42547c5f osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x42e62993 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x44cc9f5c ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x468ea45a osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x46be231e ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x48a48ff5 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x494fa826 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x49c147af ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x51e1bc19 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x53e13ff5 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x54c6a393 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x54e838a8 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x55ef3d32 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x561a7d41 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5f755cef ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x63464d7c ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6454b6b7 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x646cc164 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x66c6911a osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x685aa15a ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x6941caee ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x69577753 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x6ae47e39 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6ba109da ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x6eabcdad ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x766c413c ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x7aaa21b0 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x7c774dcf ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x7ecf4d53 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x7fd34f71 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x825086c8 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x85d03a9e ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0x8c8dee23 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x9230d0b9 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x9516ca2e ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x95d62570 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x987955da ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9b15d6f1 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa3bdeff5 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0xa4b091bb ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa87471ae ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xa94ff014 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xaa2f9ffb osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xab68f531 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb73c16fd ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0xb90262cf osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xbbeaa9eb ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xbcf9b4cb ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xbcfcf303 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xbf15e03c ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xca4954be ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xce575b65 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd38e94e0 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd4e1a03c ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0xd586b1c8 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd98ad3cf osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xd9a42362 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0xdd8e7550 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xddf6bff7 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xde5e6f31 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xe156e777 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xe55df0db ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xe5b21c9c ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xe62804ba ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xe726aee1 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xe7633d84 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0xee1ac17c ceph_file_layout_to_legacy +EXPORT_SYMBOL net/ceph/libceph 0xf056a6b6 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xf13af00c ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xf25ea845 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x6af56c8b dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xbafd27e0 dccp_syn_ack_timeout +EXPORT_SYMBOL net/ieee802154/ieee802154 0x1c68e305 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x2fb5c75b wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x3f1bab86 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x444ce507 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x684dc630 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x76039503 wpan_phy_unregister +EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x48aca633 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x6ef660a2 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x7a38a120 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xea7ab57b fou_build_header +EXPORT_SYMBOL net/ipv4/gre 0x006aeaef gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x1e8723c8 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x230d6675 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x9054c8b3 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb98cea26 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7c695c9a arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x80d954e0 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xd7c962ec arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x356ffa73 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x8c65cedf ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xe7bd6f63 ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x0d8fb6b6 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x1ae5ad37 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xd22a2945 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/fou6 0x56639369 fou6_build_header +EXPORT_SYMBOL net/ipv6/fou6 0x6f4518b7 gue6_build_header +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x041c2537 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x175a4370 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2bd0d07d ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6dff1102 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x89e4f663 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcb7e673f ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd8ab0397 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe4991acb ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf80f9ea4 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xae5fcf67 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xea0fda3f ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf5977fa2 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x266c38d1 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0x9f8e6c90 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x74c53174 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xdecc6c59 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x78667c39 ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x8a215513 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x9232b4bd ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x9a10ab0c ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xc4fc4807 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xde66d81a ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe3afe715 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe69ddde0 ircomm_connect_request +EXPORT_SYMBOL net/irda/irda 0x0064e0ea hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x00b95772 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x034ed240 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x14b74ede irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0x14dd6c0a alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x210b98e4 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x2f7e50c5 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x33198696 irlap_close +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x3e56064f hashbin_new +EXPORT_SYMBOL net/irda/irda 0x41001f5a async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x589be6f7 irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x5de79bda irttp_dup +EXPORT_SYMBOL net/irda/irda 0x601bda46 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6b5fbcef hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x6e0ab3c7 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x718315d9 iriap_open +EXPORT_SYMBOL net/irda/irda 0x762b47ae irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x77da2e7b irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7d46363f irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x7de03853 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x85d88217 irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0xa23c7934 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0xa601bc96 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xa83480c0 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xb5d2f6ed irda_notify_init +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xb974dadf irlap_open +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xc68e43be irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xcdcd4e54 iriap_close +EXPORT_SYMBOL net/irda/irda 0xcead7dbb hashbin_find +EXPORT_SYMBOL net/irda/irda 0xd1be9981 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0xd2108314 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0xd4d76254 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe3463529 hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0xe3bde43e irias_insert_object +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xf0a694a1 irias_find_object +EXPORT_SYMBOL net/irda/irda 0xf5876b95 hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0xf719c37a irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0xff34277d irttp_udata_request +EXPORT_SYMBOL net/kcm/kcm 0x03ff7159 kcm_proc_register +EXPORT_SYMBOL net/kcm/kcm 0x85f74141 kcm_proc_unregister +EXPORT_SYMBOL net/l2tp/l2tp_core 0x99ed9148 l2tp_recv_common +EXPORT_SYMBOL net/lapb/lapb 0x0d563c6c lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x35596ec7 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x40aa1c56 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x686a05a0 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x886e3843 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x9f8b3ca2 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xa86b2e44 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xdf535d7b lapb_unregister +EXPORT_SYMBOL net/llc/llc 0x3340658a llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x46e39133 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x4c225d95 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x75dc5348 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xb609c74c llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xd8f37c29 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xe81e17df llc_add_pack +EXPORT_SYMBOL net/mac80211/mac80211 0x00b1b6a4 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x024591e2 ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x08449ece ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x0f5302ca ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x14390a7e ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x16378672 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x1686df8e ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x17cd5eef ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x1a38c65c ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x1a6d0b42 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x1e004e92 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x246ee0f1 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x280e2b3d wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x2a3fe5cf __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x2adcb828 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x2b9a75bb ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2e42754c ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0x31252511 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x34709efe ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x3474ced4 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x3516e952 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x38426db6 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x3d24b130 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x3f742490 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x3f95446c ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x41e3d697 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x43e92c70 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x4bd8ac28 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x4cde6580 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x530a30bd ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x5315d480 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x531f754f ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x54b5b45b ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x57d4544d ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x5b36893a ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x5d5ba09a ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x5ea71379 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x609237f8 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x62b097d7 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x6a856691 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x6bda8e8b __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x70b761a3 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x72c54bad ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x73f4cff0 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x741bbc9d __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x76395570 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x7a972225 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x7b29972e ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x7ca7be0c __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x817a1cf4 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x82dd2e63 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x87eab4c6 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x8dd2c755 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x8ed2b742 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x931cf65c ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x94bde462 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xa38b670d ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xa7fb5850 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xa927df96 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xb46541a4 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xb62ea57a ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xb7f536a4 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0xb83b8b44 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xb988b6d7 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xbf29357d ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xc2bbecbf ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xc5f1f589 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xc76c4346 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd17e720b ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xd291f45e ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xd54ddbaf ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xd62dbebb ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xdaa0eeed ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xdb85f79e ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xde322c1c ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xdf38c081 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xe5335131 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xeaac0190 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xeaae679b ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xf8f80a8c ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xf9e9a58e ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xfc8e841a ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xfd80f6a7 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xfff8e1b1 ieee80211_scan_completed +EXPORT_SYMBOL net/mac802154/mac802154 0x524471bc ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x6030c256 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x64a1cb81 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x7d29ceeb ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xa6a3e38a ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xbd7085e9 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xbdff155d ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xfeaf9183 ieee802154_wake_queue +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x044fcd1f ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x328cf224 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x41ab54a1 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4eac38cc ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5784df19 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6eb14c68 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7633f82b register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x79a499ae unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8dabff9d ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb23aee69 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb653402a ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc4b8245a ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xceb1e96d ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe8c31aa3 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xef4be333 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x13d5bd86 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x6f79b5ca __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x8c3af6a6 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x00297ae6 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x4d6539ad nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x721fd100 nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0xa1239a48 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xe2df1ea3 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xf7d6a279 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/x_tables 0x0ac2f9d4 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x0ea8aad3 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x36fce4d3 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x6e9668f2 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x7009b5c4 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x7a3b1224 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x927a130e xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x9902c486 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xf20a8cf4 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xfddec995 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x0ac07b52 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x0bcf146d nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x14d97192 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x26953437 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x2d0a7857 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x4d01c6ac nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x672066e1 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x724c3877 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x809f747b nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x8113df3e nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xa0471c7e nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xa45888d1 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xa616cd47 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xb584118a nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xbb409b10 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xc787d731 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xca0378cc nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xe01c23e9 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xed6fbe05 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xf199b78f nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xfc5c95f5 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x0282bac5 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x0726beb6 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x0f9c4b3d nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x16d42303 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x1c497f3c nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x2d52b571 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x3fd6a591 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x489136ff nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x4c2f2031 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x4daeac6a nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x4f802134 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x60383857 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x6df6300b nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x7c206e49 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xa121798d nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xa9c1e117 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xac8cc80e nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xb1817006 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xb7782206 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc9eaa694 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xcad20db4 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xce4338f7 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xd696d6fb nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xd793fcc5 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xdd878ccd nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xdfb2676c nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xe6c9a978 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xf8a081ef nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xfd68211b nci_core_cmd +EXPORT_SYMBOL net/nfc/nfc 0x001c010f nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x0130fb31 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x1a5de880 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x1e0810b9 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x24315732 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x2c83f841 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x48a10b28 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x57cc6948 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x716c19d2 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x7de9a762 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x8287f5db nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x847170aa nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x9855778d nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xa3f22fc5 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xa405726e nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xa54769a2 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xacf8d2db nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xb32c0214 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xb5c5b6a9 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xbb91a9f4 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xc4784891 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xd3a459e4 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xe52c0238 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xe6bf5afe nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xef561b54 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc_digital 0x3e5fdf34 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x436c2656 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x8a50d13e nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xb853e7b7 nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x1a74cffc pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x3035684f phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x307d2372 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x6863e2a9 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xac58a7c3 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xcd5eb841 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xcdb635ca pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xf21d8f7a phonet_proto_register +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0814651d rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2487df3a rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x25445698 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x38d91b40 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4107a833 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6252c8ec rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x763aae50 rxrpc_kernel_data_consumed +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7e60cfe0 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x838ffbc3 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x899e0f3c rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8d254d62 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x990d4b09 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9d190708 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbb200252 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xee571b35 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/sctp/sctp 0x523a7a78 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x104ad7d8 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x148051ef gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x768a9a73 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x1fd0b5da xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x44ec7929 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xa0eb65ed svc_pool_stats_open +EXPORT_SYMBOL net/wimax/wimax 0x3c069070 wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0xbe0b834f wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x009029e1 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x01d1be1b cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x03981635 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x09c03081 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0a07642a cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x0bf8f7f1 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x0c855b25 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x0e60639e cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x13812375 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1b18bda5 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x1c00f8ea ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x1dcb09b5 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x1f0608ba cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x1fe47202 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x200dd041 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x21018266 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x220c0cca cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x23da7093 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x24fb7aaf freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x297a67f4 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x2d520583 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x3356e420 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x33f010c1 cfg80211_connect_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x35f1bf27 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x466a3a84 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x4790c594 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x48348723 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4eab568d wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x588ad2e0 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x5d9a4dcb __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x5ec91d06 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x5ee16ce1 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x61ea7132 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x6715d803 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6c040132 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x6c91b92c cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x6ce4a5a2 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x6eb3139a cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x6eb949f0 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x6fd6fa77 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x70c4b2a9 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x717c64e6 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x71c4ebfd regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x71edf600 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x727ac6f5 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x72abdb2b wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x88f02056 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x899379ef ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x8c2a4c61 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x8cc9e61c cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x8e9aa0f2 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x9552b56e cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x98019b99 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x981b33ba wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x9f07e083 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xa3c8290e cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xa3eed02f cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xa4b03786 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0xa69d95a2 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa809011f cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xa823e6ed cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xba5f1778 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xbd5155fa ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xc1712b4c wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xc19b814b cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc82c369f cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc9442f5d ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0xcf4f4435 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xd20430e5 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xd2502fcd cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd713765b cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xd8069c64 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xd9f149df wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xdb2ee8ce cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdc3469b8 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/cfg80211 0xe0ed0931 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xe2b6767d cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xe4e333cb wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xe64bb7e7 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xe64d315c cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xe68d152c cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xe6d4af5f cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xe8663ae6 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0xe9eb7b37 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xeebbd4d8 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xf1c04a79 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xf1c64a52 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xf3402db8 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xf4926a4b wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xfb2c15cb cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xfe341e73 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xff96ec34 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/lib80211 0x43923848 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x540b7ac3 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x8b4c7440 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xb70d6890 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xbc6c16fb lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xf0fc1f02 lib80211_crypt_info_init +EXPORT_SYMBOL sound/ac97_bus 0xab9ab3f7 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xbfb60c13 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 0x93871a7b snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0xabb15208 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 0xbe3ba3e1 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe8f1ab34 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-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xefb23308 snd_seq_device_new +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 0xf0a1fdb3 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 0xd7c7afcc snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe60fb228 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xecbde43c snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xb6622074 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x07549e96 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x0e57e83b snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x0fafaf49 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x1729ca0c snd_ctl_new1 +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 0x275ce68d snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x28f2dde8 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x2b28c22f snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x331032f0 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x336b3948 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3d6faa5d snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x3ee4f2f9 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x437d129b snd_cards +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4a64e07e snd_info_register +EXPORT_SYMBOL sound/core/snd 0x4ebf633b snd_device_register +EXPORT_SYMBOL sound/core/snd 0x4f0bc1db snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x55efc4a0 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x58efbd66 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x74ee5e7a snd_card_new +EXPORT_SYMBOL sound/core/snd 0x77e9868e snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x7cab3abb snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x7d78b974 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x843ec999 snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x84fcd767 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x97892045 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x996b4a5d snd_device_free +EXPORT_SYMBOL sound/core/snd 0x9980dd61 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x9a50b37a snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xa561bcfd snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xb065a5ea snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xb0e61ae8 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb3a710b7 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xb5506670 snd_card_register +EXPORT_SYMBOL sound/core/snd 0xb69f06a4 snd_component_add +EXPORT_SYMBOL sound/core/snd 0xbe978547 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xc2123ee6 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0xc908f0bc snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xcc627d0d _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0xd19dee74 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0xd6abe854 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xd801a269 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0xd84f42e0 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xdba01903 snd_device_new +EXPORT_SYMBOL sound/core/snd 0xddcf91c8 release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xdf2e8984 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xe2149b22 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xe343e44f snd_register_device +EXPORT_SYMBOL sound/core/snd 0xeb49eae0 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0xedbd2e01 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xfa02105c snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-hwdep 0x9132bf66 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x00bceb0d snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x02f1024b snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x066c67e9 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x06b310c9 snd_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x0a6a0746 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x12d4c964 snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0x13c45f7d snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x18d46e09 snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1d57fce5 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x2e46fdc9 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x3009e721 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x30ca7f2b snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x3219fbf0 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x32cb5dc6 snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0x33dacdf2 snd_pcm_lib_mmap_iomem +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 0x39d53e1c snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x3b4696bb snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x414c21cb snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x4cb96ad6 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x4e275f37 snd_pcm_hw_constraint_list +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 0x55f0e62e snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x58785f40 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x5898dcba snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5be8fd6a snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x5cc3c5ac snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x5f92be88 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x62395c7c snd_pcm_lib_ioctl +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 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x70b42f9d snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x773b9252 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x8fb8f0f4 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x95f90759 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x993e06e5 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x9974b74e snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x9c6c3498 snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0x9cd1b828 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xa0d464e6 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xa3d2510a snd_pcm_mmap_data +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 0xb7331bc4 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xb8cd01e4 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xba416399 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xbd450028 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xc6ee0309 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xcf345f73 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xd3f653b1 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xd9bb35a3 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xea0791aa snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xec554ed7 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xf3e1a49f snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xff182fd1 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x01d2c40a snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1fcacf3a snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3bce4527 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3fc1144c snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5533c8da snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5bbb0472 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5eca4f4f snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x74a322ea snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x83bee6ea snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8f267ee2 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8fd84087 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9d256ebb snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa0c3ceda __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa472964d __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb1a9efd8 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbd45ba65 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcc4484d2 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd085b13e snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xec7a2785 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-timer 0x2b012a6b snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x415d8dd6 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x519494da snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x6f804c04 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x7527838d snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x8c4da3fe snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xa3e638f4 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xa7b2af31 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xa85ff275 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xbd88bc50 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xcb537c56 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xdf4a5d38 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xef802ee5 snd_timer_resolution +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x39136990 snd_mpu401_uart_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/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x47117383 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4e5141c0 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x537aeddb snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8b7309e7 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xaf47303f snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb4321df3 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb896deae snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xdb022413 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe8a33a5c snd_opl3_init +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x127016c6 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x12f934cf snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x29a8770d snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x650b387d snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xcae565e0 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd5539cda snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd7dc14b7 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe685108f snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xea5a60b3 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1559923a snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1e81217e iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x290537e4 amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x313482ff cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x47afbcd8 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x49b20317 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x61cbab63 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6866a052 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6e460bcf cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x77213848 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8401463a cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8856119f amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x90ddfa25 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x92dc6ee5 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x987796bd fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x99360e42 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9cdb7b4c amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa717dbc1 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa8bb615a fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaafcec4f fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaea5b281 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbe533490 amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc88a4e24 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc8c7b337 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcacdb7d2 snd_fw_schedule_registration +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcc42ee04 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdc3e76d5 snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe8da6a18 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xec70fbbe avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf5763468 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf6398909 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfafda544 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfd59ebbf snd_fw_transaction +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x30763f7d snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x7b607edf snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x08dff4e0 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x10c4fee0 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x468ecc38 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x57edbf0a snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5db640fb snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x81698268 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8fe7094b snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf2465d5c snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x4955da38 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x547e2a66 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x700af82a snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xb9f985ff snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xe2ef210d snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xe54e0721 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x248e1a1f snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x8db24d8f snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x90e63e61 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xdae4c726 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x00f4daee snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x095510be snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x3d792c1c snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x9417cfd4 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x9bdf6e45 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x9e7a1613 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xc1859cc4 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xef24b8aa snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x15584637 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x398a9058 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x49313356 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x567236f5 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xb04a9051 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xd58d8874 snd_i2c_device_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5f2d759b snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x90c44435 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa85752ad snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xaf523120 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb1ddc5b0 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb73eb3f1 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc81ca1e8 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd95ddcc2 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xe5f1d875 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xedcaf81b snd_sbmixer_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x08347fbc snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1fa14dff snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x265d3f06 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2a591f91 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3281bced snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x68c31d43 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6cabc7af snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x870b9bc5 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8e32a808 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9e502f4e snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xaa42dcab snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xae741024 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb0ba8137 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb884ce6d snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbf1afa01 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd8dca277 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe0918bba snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2bb2841c snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x32d84e70 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x69d5ec38 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7e4759e9 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x981b9198 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9828fa29 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc46dc2d9 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd52174d0 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xde6e25d4 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x244b5649 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x7fcaa0f7 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xc379be50 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x033785eb oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x078bc2a5 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x166bb126 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2f24581f oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x569e9883 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5d741e8a oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x65daa1c9 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x77105f03 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x879d2e53 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8b79d71f oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8c4385c2 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x91e12939 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x972eef5d oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb0f2e691 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd637cb73 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe208701f oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe385041e oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe8bf21a8 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xed888c2c oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf08e20c0 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x2d9c9634 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x46100a7e snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x54c9f2c9 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x6481dd8d snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xfa2c627e snd_trident_write_voice_regs +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xdc2136ea tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xf671f271 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/snd-soc-core 0xc47a8918 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x07dd0f38 sound_class +EXPORT_SYMBOL sound/soundcore 0x43eb00fb register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x4896d716 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x660537de register_sound_special +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x9725f9b1 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xe8204206 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x368ff71c snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x3ded5e30 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x662e719a snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xa2fdc6c2 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe90e0d86 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xeddb071e snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/snd-util-mem 0x2c70b496 __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x316e3fdb __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x43baf076 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x7fb2c657 snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x8cc729af __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xc29e52bc snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xd03016d5 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0xe758bda9 snd_util_mem_free +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x3d6cc03f __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 0x00018513 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x000e48cc __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x0033e4d3 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x00394809 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x006b6459 dev_change_xdp_fd +EXPORT_SYMBOL vmlinux 0x006bebf2 mntget +EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done +EXPORT_SYMBOL vmlinux 0x009b503f nvm_get_bb_tbl +EXPORT_SYMBOL vmlinux 0x00b23673 ata_print_version +EXPORT_SYMBOL vmlinux 0x00c4742d init_special_inode +EXPORT_SYMBOL vmlinux 0x00cbc83b skb_insert +EXPORT_SYMBOL vmlinux 0x00d1d544 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00d86cb5 set_groups +EXPORT_SYMBOL vmlinux 0x00ddbdf3 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x00ee221f ata_link_printk +EXPORT_SYMBOL vmlinux 0x00f7b77c neigh_connected_output +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x0109ad2e simple_dname +EXPORT_SYMBOL vmlinux 0x011194c5 skb_put +EXPORT_SYMBOL vmlinux 0x0112e601 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x012a97fc xor_altivec_4 +EXPORT_SYMBOL vmlinux 0x01322b07 nvm_get_blk +EXPORT_SYMBOL vmlinux 0x01331d9b dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x013b8a2d pci_set_mwi +EXPORT_SYMBOL vmlinux 0x014b71b6 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x0153ab34 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x01605842 fb_set_var +EXPORT_SYMBOL vmlinux 0x018461e5 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x0186e20d jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x01b11d03 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x01d02a58 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x01e823c7 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x02009cd1 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x022bbd25 of_device_unregister +EXPORT_SYMBOL vmlinux 0x023357e7 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x0247c143 vme_irq_free +EXPORT_SYMBOL vmlinux 0x0256a1a0 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x025a368d __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x025aca16 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x028342af locks_remove_posix +EXPORT_SYMBOL vmlinux 0x028c27e9 bio_integrity_free +EXPORT_SYMBOL vmlinux 0x029df66d neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02acd924 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x02bac727 mmc_free_host +EXPORT_SYMBOL vmlinux 0x02c26887 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x02e03fd8 fence_remove_callback +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02f0d8a9 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x0317f2e2 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x03237890 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x033d81c4 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x034abc39 vc_resize +EXPORT_SYMBOL vmlinux 0x03520669 seq_file_path +EXPORT_SYMBOL vmlinux 0x0355b31a inet_release +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036a25f8 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x036db1c2 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037bb494 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x038c57c8 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x03af63e5 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x04074f48 ioremap +EXPORT_SYMBOL vmlinux 0x04086024 PDE_DATA +EXPORT_SYMBOL vmlinux 0x04152635 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x041863f6 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x041f192c vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0433a67c crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x043867ed tty_unthrottle +EXPORT_SYMBOL vmlinux 0x043f9133 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x04421e6e filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x045a2650 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x0470c6a1 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x0479e7ae tty_set_operations +EXPORT_SYMBOL vmlinux 0x047b7044 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x047e6db0 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x04985a83 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x04c738ed mdio_bus_type +EXPORT_SYMBOL vmlinux 0x04c8db84 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x04d9c892 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x050baff6 agp_bridge +EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range +EXPORT_SYMBOL vmlinux 0x051cfca4 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x053f6bf4 of_get_mac_address +EXPORT_SYMBOL vmlinux 0x05507262 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x0558fb8e elv_rb_del +EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x057084d1 of_translate_address +EXPORT_SYMBOL vmlinux 0x0583e3bd sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x058a9ecc netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns +EXPORT_SYMBOL vmlinux 0x05a6fca1 phy_start +EXPORT_SYMBOL vmlinux 0x05ac36a9 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x05bcc7f7 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x05c54729 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x05cbfe41 d_tmpfile +EXPORT_SYMBOL vmlinux 0x05e25804 __request_region +EXPORT_SYMBOL vmlinux 0x05e29890 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x05f9d813 bdi_init +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061ab557 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x0639d86b pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x063df47f of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x063efc2d blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x0640b255 sock_create_lite +EXPORT_SYMBOL vmlinux 0x0644fdc6 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x0659bcb1 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x068f5207 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x06914a8e vfs_link +EXPORT_SYMBOL vmlinux 0x06bf25f0 ll_rw_block +EXPORT_SYMBOL vmlinux 0x06cc877d key_payload_reserve +EXPORT_SYMBOL vmlinux 0x06df508c iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x06e565c1 dev_notice +EXPORT_SYMBOL vmlinux 0x06e97557 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x06f5b3a1 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x06fa1127 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x07019524 tcp_check_req +EXPORT_SYMBOL vmlinux 0x0708bbd9 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x070fc4c1 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x071e8361 pipe_lock +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x074e9213 down_killable +EXPORT_SYMBOL vmlinux 0x0754f093 tty_port_put +EXPORT_SYMBOL vmlinux 0x0757c5f6 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x0766a3f4 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x07899b43 __scm_send +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07cbfd77 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07e4d860 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x080fa3f4 nmi_panic +EXPORT_SYMBOL vmlinux 0x08108dd7 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x0818c828 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x08216661 nvm_put_blk +EXPORT_SYMBOL vmlinux 0x082a349e security_path_rename +EXPORT_SYMBOL vmlinux 0x082a967d xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x082d0bca xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x086d8cdd irq_stat +EXPORT_SYMBOL vmlinux 0x08773486 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x087f8071 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x08841696 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x088eef0c ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x0897c522 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x08a2f303 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x08be5faa iterate_supers_type +EXPORT_SYMBOL vmlinux 0x08cf1c4a filp_open +EXPORT_SYMBOL vmlinux 0x08d71f04 pci_clear_master +EXPORT_SYMBOL vmlinux 0x08e81ab8 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08f2377c phy_detach +EXPORT_SYMBOL vmlinux 0x08fae022 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x09102477 generic_permission +EXPORT_SYMBOL vmlinux 0x092343a6 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x0931781a tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x09382d5c jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x095118dd scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x095d4b47 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x096e725a unregister_key_type +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09bd4f8d nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c6411f schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x09c67afb flex_array_get +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09eee984 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x09f5ba3f soft_cursor +EXPORT_SYMBOL vmlinux 0x0a0a4c9c generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x0a10228f __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a2a4778 __inode_permission +EXPORT_SYMBOL vmlinux 0x0a3bf0dd ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x0a48d943 __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x0a5beb17 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0x0a77db72 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x0a865184 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0x0a89b388 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x0aa22332 sock_edemux +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0ab04e42 proto_register +EXPORT_SYMBOL vmlinux 0x0abba5ad nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x0abc207a devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x0ac888f5 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0af856ea xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b11d5f2 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b2dcf37 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x0b4b8dc5 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0bafd5e4 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0x0c404ad1 arp_xmit +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c5d177e kobject_set_name +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c74d7ef dev_emerg +EXPORT_SYMBOL vmlinux 0x0c75efb3 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x0c8cc3ae skb_copy +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cb0e6d7 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x0cb2de50 md_check_recovery +EXPORT_SYMBOL vmlinux 0x0cba2ffc blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x0cd47461 default_llseek +EXPORT_SYMBOL vmlinux 0x0cda57e8 generic_update_time +EXPORT_SYMBOL vmlinux 0x0ce18e55 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x0ce63c19 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x0ce7a907 fb_find_mode +EXPORT_SYMBOL vmlinux 0x0d3fe853 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x0d468a32 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d6c963c copy_from_user +EXPORT_SYMBOL vmlinux 0x0d9410aa i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x0d9e1ea7 fence_signal +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0dbed456 have_submounts +EXPORT_SYMBOL vmlinux 0x0dc0ace0 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x0de59428 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x0df67686 md_integrity_register +EXPORT_SYMBOL vmlinux 0x0e073a26 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x0e0e856e page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x0e1d2d9d fasync_helper +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e77ed3b submit_bio_wait +EXPORT_SYMBOL vmlinux 0x0e8062f7 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0e9b3666 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ed4a584 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x0edb2da6 contig_page_data +EXPORT_SYMBOL vmlinux 0x0ee205da try_module_get +EXPORT_SYMBOL vmlinux 0x0ee2fa70 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f0166bb nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x0f03e68f inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x0f1ae1f0 skb_tx_error +EXPORT_SYMBOL vmlinux 0x0f27b827 release_pages +EXPORT_SYMBOL vmlinux 0x0f2b35c7 dev_trans_start +EXPORT_SYMBOL vmlinux 0x0f4899fd __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f5faa7e wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f7882db of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f7bfb01 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x0f9b4473 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fb9f5d7 input_get_keycode +EXPORT_SYMBOL vmlinux 0x0fc942f5 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x0fd0c3db inet6_getname +EXPORT_SYMBOL vmlinux 0x0ff86607 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x0ffc37e6 input_set_capability +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x100209a3 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x103184cb i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x10399718 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x105950d9 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x1059f363 devm_release_resource +EXPORT_SYMBOL vmlinux 0x105fa6d2 dm_put_device +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x1073e9f2 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x109f9a79 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x10b7cc7b kmem_cache_create +EXPORT_SYMBOL vmlinux 0x10c4bf8e vm_insert_page +EXPORT_SYMBOL vmlinux 0x10ed1586 install_exec_creds +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x110f216a param_set_ushort +EXPORT_SYMBOL vmlinux 0x11139c91 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x11319492 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x11609c82 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable +EXPORT_SYMBOL vmlinux 0x118af023 init_task +EXPORT_SYMBOL vmlinux 0x11b98963 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x11bb5f81 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x11c96136 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x11eb25ae sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x11f4ae8c fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x11fbb356 __vfs_write +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x12253731 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x122dfbf1 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x122e819b pci_set_master +EXPORT_SYMBOL vmlinux 0x12316762 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x1241a447 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x1252b5dc sget +EXPORT_SYMBOL vmlinux 0x125a1b41 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x125ca32a input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x125e1ed7 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x128b6a6a dev_change_flags +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit +EXPORT_SYMBOL vmlinux 0x12e85ce8 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x12e90ff8 do_splice_direct +EXPORT_SYMBOL vmlinux 0x12ec55bf pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x12f09606 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x13215eac mem_section +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x132bfe9a nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x134b53b5 dev_crit +EXPORT_SYMBOL vmlinux 0x1353f8a2 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x13729da5 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x138bf7bb textsearch_register +EXPORT_SYMBOL vmlinux 0x13abff9a fb_validate_mode +EXPORT_SYMBOL vmlinux 0x13bc571c scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13eb1510 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x13f29115 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x1416e251 simple_fill_super +EXPORT_SYMBOL vmlinux 0x143e1481 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x144d562a bdgrab +EXPORT_SYMBOL vmlinux 0x144d8099 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x1455681b user_revoke +EXPORT_SYMBOL vmlinux 0x14784ab5 mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x14804e61 udp_disconnect +EXPORT_SYMBOL vmlinux 0x1489220e pci_restore_state +EXPORT_SYMBOL vmlinux 0x149939d8 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x149b2c07 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x14aaccff i2c_del_driver +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x150ad92b ioport_resource +EXPORT_SYMBOL vmlinux 0x151cc576 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1555409a free_task +EXPORT_SYMBOL vmlinux 0x159cc6f6 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x15a2c055 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bfad92 inet_listen +EXPORT_SYMBOL vmlinux 0x15bfafa5 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x15d3fd60 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x15f2a377 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x1618be24 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x161a4f8e sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x161be19b bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x162f4465 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x163ac224 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x163bc4c5 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x1644662d iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x166640a9 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x1673a144 d_instantiate +EXPORT_SYMBOL vmlinux 0x1679b955 task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x168259dc register_console +EXPORT_SYMBOL vmlinux 0x169c957e __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x16a8a2d1 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x16ad75a3 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x16b78c64 serio_interrupt +EXPORT_SYMBOL vmlinux 0x16b8f042 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x16c3e9d8 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16f64195 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x16faddfa tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x174159d2 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x1743414f __debugger_fault_handler +EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock +EXPORT_SYMBOL vmlinux 0x176f660d param_ops_ullong +EXPORT_SYMBOL vmlinux 0x17781bab __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17b373d8 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x17c6098f dev_mc_flush +EXPORT_SYMBOL vmlinux 0x17d805cc zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x17d9a7a1 backlight_device_register +EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern +EXPORT_SYMBOL vmlinux 0x17eedf8f vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x17f0b999 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x1821f088 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x183014a2 fence_free +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x18537bf8 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x1857aa39 proc_dointvec +EXPORT_SYMBOL vmlinux 0x185f0452 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x1868bb63 mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x187b6630 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x1892970b fs_bio_set +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x189942a9 inet_offloads +EXPORT_SYMBOL vmlinux 0x18b9dfea invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x190f1f62 __kernel_write +EXPORT_SYMBOL vmlinux 0x191f5a16 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x193bda00 __sb_start_write +EXPORT_SYMBOL vmlinux 0x1964d881 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x196536e4 dev_driver_string +EXPORT_SYMBOL vmlinux 0x19900965 sync_filesystem +EXPORT_SYMBOL vmlinux 0x19979fa8 inet_frag_find +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a8bcfb neigh_for_each +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19b7cbec unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19bd9a34 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x19c85478 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x19d2c03b dev_addr_init +EXPORT_SYMBOL vmlinux 0x19eead27 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x1a360948 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x1a39fcd4 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x1a54a2d0 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x1a581020 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x1a5bd888 fscrypt_inherit_context +EXPORT_SYMBOL vmlinux 0x1a5e17ae blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x1a703ba1 crc_ccitt +EXPORT_SYMBOL vmlinux 0x1a86ebb2 skb_trim +EXPORT_SYMBOL vmlinux 0x1a8ab7b8 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x1a9072e0 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x1aa2693a radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x1aa53307 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x1abccd94 pskb_extract +EXPORT_SYMBOL vmlinux 0x1ac36be4 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1adf95d1 rwsem_down_write_failed_killable +EXPORT_SYMBOL vmlinux 0x1ae9bb18 set_blocksize +EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b0bf63d of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0x1b0efc9a swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock +EXPORT_SYMBOL vmlinux 0x1b18e9c7 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b41b0d2 vm_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x1b592fb5 simple_getattr +EXPORT_SYMBOL vmlinux 0x1b594e25 lease_modify +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b6569e7 inc_nlink +EXPORT_SYMBOL vmlinux 0x1b69e5d2 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x1b6c3a77 register_netdevice +EXPORT_SYMBOL vmlinux 0x1b7c1bdc request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x1b7d31e3 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8ae098 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b8e826f pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x1b9980cd noop_llseek +EXPORT_SYMBOL vmlinux 0x1b9e04ed handle_edge_irq +EXPORT_SYMBOL vmlinux 0x1ba553f8 get_user_pages +EXPORT_SYMBOL vmlinux 0x1baa676f blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x1bb4e98c framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x1bca2b59 load_fp_state +EXPORT_SYMBOL vmlinux 0x1bd955ab netif_device_attach +EXPORT_SYMBOL vmlinux 0x1be17342 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x1bf002a8 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x1bf2b312 generic_file_open +EXPORT_SYMBOL vmlinux 0x1bfec830 __iounmap_at +EXPORT_SYMBOL vmlinux 0x1c1efdfc of_phy_attach +EXPORT_SYMBOL vmlinux 0x1c25b6f6 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x1c2c68ca con_is_bound +EXPORT_SYMBOL vmlinux 0x1c2f5215 __brelse +EXPORT_SYMBOL vmlinux 0x1c337fa0 fscrypt_get_encryption_info +EXPORT_SYMBOL vmlinux 0x1c3e02e4 memcmp +EXPORT_SYMBOL vmlinux 0x1c421fea skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x1c7cfdb1 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x1c7eecec get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check +EXPORT_SYMBOL vmlinux 0x1ccd50da module_layout +EXPORT_SYMBOL vmlinux 0x1cfcba63 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d0e5574 local_flush_tlb_page +EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be +EXPORT_SYMBOL vmlinux 0x1d298494 __blk_run_queue +EXPORT_SYMBOL vmlinux 0x1d342496 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x1da2d28d mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x1daa2cef jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x1dbc4d0c proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dce344e put_io_context +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1debe115 tty_register_device +EXPORT_SYMBOL vmlinux 0x1e041a32 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x1e09a10a tty_port_init +EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query +EXPORT_SYMBOL vmlinux 0x1e1c114f dev_add_offload +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e54aa70 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x1e57373d sock_no_mmap +EXPORT_SYMBOL vmlinux 0x1e6154e3 compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e81e901 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea99b13 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x1ecef9f3 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x1ed10128 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x1ed71bb3 dst_discard_out +EXPORT_SYMBOL vmlinux 0x1f182ad6 kernel_write +EXPORT_SYMBOL vmlinux 0x1f22ba31 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x1f2ef05c of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x1f5dfd7f scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x1f5fff84 pci_bus_type +EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1f78aca8 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe0e1e1 lock_rename +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x20135fc6 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x201b3a94 skb_pad +EXPORT_SYMBOL vmlinux 0x20211fef eth_gro_receive +EXPORT_SYMBOL vmlinux 0x2022b533 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x203f88c1 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204f042a xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x205410fa __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x20640bb5 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x206affe6 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x207407d1 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ad0c86 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x20c4eea7 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20ddafba km_report +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20e00e60 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x2112893c pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x212384fb crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x2128465c skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x21341bcb inode_init_owner +EXPORT_SYMBOL vmlinux 0x213b44e1 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x2155489c mmc_can_erase +EXPORT_SYMBOL vmlinux 0x215d44ad inet_sendmsg +EXPORT_SYMBOL vmlinux 0x2180058b pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x21964271 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21eb85bf input_grab_device +EXPORT_SYMBOL vmlinux 0x22217782 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x224dc4b2 param_get_short +EXPORT_SYMBOL vmlinux 0x22582a21 nvm_unregister_tgt_type +EXPORT_SYMBOL vmlinux 0x225e17bf vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2278e94b slhc_remember +EXPORT_SYMBOL vmlinux 0x229af98d security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22bcdb68 of_get_pci_address +EXPORT_SYMBOL vmlinux 0x22d3af3c __sock_create +EXPORT_SYMBOL vmlinux 0x22e147fb noop_qdisc +EXPORT_SYMBOL vmlinux 0x22e49662 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x22fc33b6 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x2313d48f netdev_alert +EXPORT_SYMBOL vmlinux 0x2316ab0b mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x231efe84 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x2326b99a skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x2332b2b6 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL vmlinux 0x2345c0ae kdb_current_task +EXPORT_SYMBOL vmlinux 0x23525ae5 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x2358c719 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x23693685 ilookup +EXPORT_SYMBOL vmlinux 0x236d53d5 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x23934b98 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x23a461e4 tcp_req_err +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x23ca771a kill_pgrp +EXPORT_SYMBOL vmlinux 0x23e278a2 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x23ff683a mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x24097d57 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x24106f85 pci_request_regions +EXPORT_SYMBOL vmlinux 0x241296f1 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x2421ad5e of_iomap +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x244f879e simple_rmdir +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245ebbc5 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x245f3ba9 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x246787e6 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x249887f7 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x24b6eb4c sget_userns +EXPORT_SYMBOL vmlinux 0x24c25e4f memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0x24c70a23 param_ops_int +EXPORT_SYMBOL vmlinux 0x24dbd025 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x24dda2d8 keyring_search +EXPORT_SYMBOL vmlinux 0x24de224d dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x24e3f27d scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x24e6d494 blk_end_request +EXPORT_SYMBOL vmlinux 0x24f00380 ida_init +EXPORT_SYMBOL vmlinux 0x24f48519 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x24fcee13 pagevec_lookup +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x251fadcb sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x252f7e2f devm_memremap +EXPORT_SYMBOL vmlinux 0x25375a00 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x253de10f ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x253f408f of_mm_gpiochip_add_data +EXPORT_SYMBOL vmlinux 0x25494a20 ps2_end_command +EXPORT_SYMBOL vmlinux 0x25504d68 register_filesystem +EXPORT_SYMBOL vmlinux 0x25622ff7 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x25673d73 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x256a5e16 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25877c44 param_set_bint +EXPORT_SYMBOL vmlinux 0x25a8d34c pci_add_resource +EXPORT_SYMBOL vmlinux 0x25cb2f17 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x25de1a98 iov_iter_init +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25fa78e4 request_firmware +EXPORT_SYMBOL vmlinux 0x260f45b8 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x2623c8f4 dev_addr_add +EXPORT_SYMBOL vmlinux 0x2629c410 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update +EXPORT_SYMBOL vmlinux 0x2666851c audit_log_start +EXPORT_SYMBOL vmlinux 0x26808ac7 dev_load +EXPORT_SYMBOL vmlinux 0x269e4e52 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x26b760c4 slhc_init +EXPORT_SYMBOL vmlinux 0x26baff01 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x26c07fd6 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x26d99d5a skb_push +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26f496ce stop_tty +EXPORT_SYMBOL vmlinux 0x27085320 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x270edd08 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x271f6e4c mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x2723f735 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x273e35e7 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x275d921c elv_rb_find +EXPORT_SYMBOL vmlinux 0x27646df3 start_thread +EXPORT_SYMBOL vmlinux 0x2771d7ff ida_get_new_above +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x2793cc9b inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27e7f88a pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x28166464 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28318305 snprintf +EXPORT_SYMBOL vmlinux 0x283d5080 skb_store_bits +EXPORT_SYMBOL vmlinux 0x283ec76d empty_aops +EXPORT_SYMBOL vmlinux 0x284632bb tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x2855fa34 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x285a0a2b netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x28752a3c sock_init_data +EXPORT_SYMBOL vmlinux 0x289db3ee idr_remove +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28abfe6e scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x28b7ac9d netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x28bf1a7c dev_set_mtu +EXPORT_SYMBOL vmlinux 0x28c92c6c dquot_initialize +EXPORT_SYMBOL vmlinux 0x28d7594e inet6_bind +EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x28ea41d5 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x28f7f082 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x290915ff generic_fillattr +EXPORT_SYMBOL vmlinux 0x290caab3 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x292a4f05 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0x2939a41b sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x295bb44c is_nd_btt +EXPORT_SYMBOL vmlinux 0x297c39de skb_clone_sk +EXPORT_SYMBOL vmlinux 0x298a8d5d uart_register_driver +EXPORT_SYMBOL vmlinux 0x29aae77b dec_node_page_state +EXPORT_SYMBOL vmlinux 0x29b72e9e dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x29bfd4aa __getblk_gfp +EXPORT_SYMBOL vmlinux 0x29c112d1 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x29c9aeb2 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x29e1b1c9 dm_put_table_device +EXPORT_SYMBOL vmlinux 0x29f7236f of_platform_device_create +EXPORT_SYMBOL vmlinux 0x29f8f560 bio_chain +EXPORT_SYMBOL vmlinux 0x29fee735 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a375551 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a46393b of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x2a49ea5d __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x2a4ae089 tc_classify +EXPORT_SYMBOL vmlinux 0x2abff73f of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0x2ac09dd5 __nla_put +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2adb5af6 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x2aeb7413 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b4991ec xmon +EXPORT_SYMBOL vmlinux 0x2b4b62df dev_warn +EXPORT_SYMBOL vmlinux 0x2b84ae03 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x2b8ef94a mdio_driver_register +EXPORT_SYMBOL vmlinux 0x2b95c0a8 send_sig +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bdd6e28 node_states +EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed +EXPORT_SYMBOL vmlinux 0x2bf7ad52 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x2c0257b1 sock_no_listen +EXPORT_SYMBOL vmlinux 0x2c1ab6af fb_pan_display +EXPORT_SYMBOL vmlinux 0x2c1c4f70 pci_irq_vector +EXPORT_SYMBOL vmlinux 0x2c1fced0 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c2e4a9f xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x2c31650f generic_setxattr +EXPORT_SYMBOL vmlinux 0x2c67177b dump_align +EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout +EXPORT_SYMBOL vmlinux 0x2ca232c7 bio_init +EXPORT_SYMBOL vmlinux 0x2cb6ec04 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x2cc9863b dm_register_target +EXPORT_SYMBOL vmlinux 0x2ce41e0e twl6040_power +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d162340 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x2d1f94d8 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d3ca1e3 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x2d54487f dev_alert +EXPORT_SYMBOL vmlinux 0x2d7ebb5b netif_rx +EXPORT_SYMBOL vmlinux 0x2d8c03ad vfs_whiteout +EXPORT_SYMBOL vmlinux 0x2dcf7fbc genphy_resume +EXPORT_SYMBOL vmlinux 0x2dd07acc param_ops_charp +EXPORT_SYMBOL vmlinux 0x2dd570d0 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x2de0f36d dcb_getapp +EXPORT_SYMBOL vmlinux 0x2df0e1cb mutex_trylock +EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e33f90d simple_write_begin +EXPORT_SYMBOL vmlinux 0x2e366e84 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x2e45916e tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x2e7beb1a phy_device_register +EXPORT_SYMBOL vmlinux 0x2e834e26 load_nls +EXPORT_SYMBOL vmlinux 0x2e83cc03 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x2e97e5a0 generic_show_options +EXPORT_SYMBOL vmlinux 0x2ea4e805 down_read_trylock +EXPORT_SYMBOL vmlinux 0x2eae7ec7 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x2ebf70cc kernel_sendpage +EXPORT_SYMBOL vmlinux 0x2ebfc0c4 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x2ed0360f km_policy_notify +EXPORT_SYMBOL vmlinux 0x2ee1d34b of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f0cd6b0 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x2f0d0110 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x2f287f0d copy_to_user +EXPORT_SYMBOL vmlinux 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL vmlinux 0x2f3426ec __inet_hash +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f4f8755 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x2f5f2a57 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2f6dd73f inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x2f7984a5 seq_path +EXPORT_SYMBOL vmlinux 0x2f979233 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x2f990efd pagecache_write_end +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fd4a302 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x2fdd1d40 ihold +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe8c626 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x2ff3e52a lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x2ff7a424 compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x3027c903 del_gendisk +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x303b62aa mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x30425c1a tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x30738862 dqget +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b2436f xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id +EXPORT_SYMBOL vmlinux 0x30bd93c9 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x30e11b61 sk_common_release +EXPORT_SYMBOL vmlinux 0x30ef242e elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x30fb395a inode_set_flags +EXPORT_SYMBOL vmlinux 0x30feddfe bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310cafc0 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x310f02ec memremap +EXPORT_SYMBOL vmlinux 0x311002d1 sock_rfree +EXPORT_SYMBOL vmlinux 0x3112c070 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x3120f061 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x312a94bc __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x312ab456 fscrypt_release_ctx +EXPORT_SYMBOL vmlinux 0x3134fb51 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x313e114e ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x31416873 flush_dcache_icache_page +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x31485479 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x31a72bfe xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x31b7fdcc xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x31e665c1 tcp_seq_open +EXPORT_SYMBOL vmlinux 0x320124de mapping_tagged +EXPORT_SYMBOL vmlinux 0x32097aef prepare_binprm +EXPORT_SYMBOL vmlinux 0x321e3aa5 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x3226f59a fb_blank +EXPORT_SYMBOL vmlinux 0x322a96b4 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x32398050 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x323d68c1 put_tty_driver +EXPORT_SYMBOL vmlinux 0x323f756e __skb_checksum +EXPORT_SYMBOL vmlinux 0x324d97b5 netlink_unicast +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x326d3f4d abx500_register_ops +EXPORT_SYMBOL vmlinux 0x326eabd7 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x32be73eb user_path_at_empty +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x3305ade4 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x33152bfa inet_select_addr +EXPORT_SYMBOL vmlinux 0x331c4df3 from_kuid +EXPORT_SYMBOL vmlinux 0x3331b79f to_ndd +EXPORT_SYMBOL vmlinux 0x333a1da7 genphy_update_link +EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x3344a615 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x334b906e ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x33507eaf remove_proc_entry +EXPORT_SYMBOL vmlinux 0x335b64af xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x335cc5c0 request_key +EXPORT_SYMBOL vmlinux 0x3386b465 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x338ec107 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x33903b25 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33b8d622 unregister_nls +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33d3c217 cdrom_open +EXPORT_SYMBOL vmlinux 0x33d8b039 dquot_destroy +EXPORT_SYMBOL vmlinux 0x33dd281c mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x33e1ff5e sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x33ec329a kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x340d465e genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x341b3a46 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x342c7673 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x344f070d nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x345c8916 strict_msr_control +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x347ba88d scsi_init_io +EXPORT_SYMBOL vmlinux 0x348127e2 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34b5f6c4 path_is_under +EXPORT_SYMBOL vmlinux 0x34bfc0de dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x34d11ad0 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x34d70198 from_kprojid +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f984c8 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x3510fa6c dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x352ebbb6 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x354b70c2 of_device_alloc +EXPORT_SYMBOL vmlinux 0x355c9d4d pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x3588046f blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 +EXPORT_SYMBOL vmlinux 0x35d3a2c2 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x35dfe9aa __frontswap_test +EXPORT_SYMBOL vmlinux 0x35e4bfed inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x35f25453 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x36099240 sock_register +EXPORT_SYMBOL vmlinux 0x3615b1b2 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy +EXPORT_SYMBOL vmlinux 0x362e2c41 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x3634ff21 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x36444d8b vme_register_driver +EXPORT_SYMBOL vmlinux 0x366a8385 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy +EXPORT_SYMBOL vmlinux 0x3680d187 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x3695edda request_resource +EXPORT_SYMBOL vmlinux 0x36975e20 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x36a31dcd generic_block_bmap +EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36c1cffc skb_seq_read +EXPORT_SYMBOL vmlinux 0x36fa5973 key_validate +EXPORT_SYMBOL vmlinux 0x36fde575 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x3709aabc km_state_expired +EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport +EXPORT_SYMBOL vmlinux 0x3725893a radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x37344510 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x3738718e cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x37507917 vme_init_bridge +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x37613521 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x377078c7 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x37740c87 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x377e5d0b call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x37884734 blk_put_queue +EXPORT_SYMBOL vmlinux 0x378afe79 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b2bae4 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x37b5d496 sock_no_connect +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37b8d53c i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c554dd __SetPageMovable +EXPORT_SYMBOL vmlinux 0x37d49a84 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x37d775f8 md_write_end +EXPORT_SYMBOL vmlinux 0x37e0153d flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x380229b8 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x380651cc __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x380c36c1 should_remove_suid +EXPORT_SYMBOL vmlinux 0x380c48d3 save_mount_options +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x3825cd7f kern_unmount +EXPORT_SYMBOL vmlinux 0x382a5e93 set_create_files_as +EXPORT_SYMBOL vmlinux 0x38495d0f nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x384e8c02 pci_find_bus +EXPORT_SYMBOL vmlinux 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x3855f12a of_clk_get +EXPORT_SYMBOL vmlinux 0x385e88d8 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x38679680 vme_irq_request +EXPORT_SYMBOL vmlinux 0x387014ae pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b825d1 idr_replace +EXPORT_SYMBOL vmlinux 0x38d7784f sk_free +EXPORT_SYMBOL vmlinux 0x38ed9aef dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x38ef0141 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios +EXPORT_SYMBOL vmlinux 0x392f3f64 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394cb76f kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x39534b3a skb_vlan_push +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x39628630 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x39732482 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x3990db22 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39a01b4b unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x39a7734a end_page_writeback +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39ba0bdc xfrm_input +EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x39d2a69b skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x39dd3441 km_query +EXPORT_SYMBOL vmlinux 0x39ddfe84 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x39e51598 __kfree_skb +EXPORT_SYMBOL vmlinux 0x39f6a187 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x39f87791 input_open_device +EXPORT_SYMBOL vmlinux 0x39f92002 scmd_printk +EXPORT_SYMBOL vmlinux 0x3a0872fb inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x3a471d8e tty_vhangup +EXPORT_SYMBOL vmlinux 0x3a4de076 cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x3a522917 sock_create_kern +EXPORT_SYMBOL vmlinux 0x3a7e63e2 sk_net_capable +EXPORT_SYMBOL vmlinux 0x3a7feba7 fsync_bdev +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aaa7384 param_get_uint +EXPORT_SYMBOL vmlinux 0x3aae38f0 inet_ioctl +EXPORT_SYMBOL vmlinux 0x3ac08f57 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x3ad0dc02 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x3addc05b xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x3b048a5c udp_sendmsg +EXPORT_SYMBOL vmlinux 0x3b057270 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x3b2b5e57 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x3b31c888 sock_update_memcg +EXPORT_SYMBOL vmlinux 0x3b55c5cf ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x3b55f6e9 simple_setattr +EXPORT_SYMBOL vmlinux 0x3b5dd8dd lookup_bdev +EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b768c70 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x3b8004c9 kern_path_create +EXPORT_SYMBOL vmlinux 0x3b829930 udp_ioctl +EXPORT_SYMBOL vmlinux 0x3b8d5949 generic_write_checks +EXPORT_SYMBOL vmlinux 0x3b953a70 allocate_resource +EXPORT_SYMBOL vmlinux 0x3b9a54a6 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x3b9be527 alloc_disk +EXPORT_SYMBOL vmlinux 0x3ba6fda8 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x3bbc5c4a freeze_bdev +EXPORT_SYMBOL vmlinux 0x3bc8e8d9 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x3bd9351e vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x3bea4f4a simple_unlink +EXPORT_SYMBOL vmlinux 0x3c054bc4 i2c_transfer +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c207180 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c71ac03 blk_get_backing_dev_info +EXPORT_SYMBOL vmlinux 0x3c72018f kobject_get +EXPORT_SYMBOL vmlinux 0x3c7a112a genphy_suspend +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c905973 devm_clk_get +EXPORT_SYMBOL vmlinux 0x3cb31b12 inet_getname +EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init +EXPORT_SYMBOL vmlinux 0x3ccf6521 bdget_disk +EXPORT_SYMBOL vmlinux 0x3cdb46ec of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x3cddc18b inet_gro_receive +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cfbc8fa d_path +EXPORT_SYMBOL vmlinux 0x3d0b5504 noop_fsync +EXPORT_SYMBOL vmlinux 0x3d1bb562 done_path_create +EXPORT_SYMBOL vmlinux 0x3d477524 netdev_state_change +EXPORT_SYMBOL vmlinux 0x3d7422bc is_bad_inode +EXPORT_SYMBOL vmlinux 0x3d8ac30f skb_clone +EXPORT_SYMBOL vmlinux 0x3d8f8a63 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x3d8fc8a2 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x3d967ef2 account_page_redirty +EXPORT_SYMBOL vmlinux 0x3da05a94 dquot_file_open +EXPORT_SYMBOL vmlinux 0x3dad8b00 netdev_warn +EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x3dc02a4e flex_array_free_parts +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3deb4385 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x3def924b i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x3df336c2 flow_cache_init +EXPORT_SYMBOL vmlinux 0x3df895ff agp_create_memory +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e0e7d52 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x3e1ed448 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x3e2286cd __radix_tree_insert +EXPORT_SYMBOL vmlinux 0x3e475086 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x3e4d916f inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x3e6fae19 elevator_init +EXPORT_SYMBOL vmlinux 0x3e804537 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3eda810a blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x3ef3b919 init_net +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f173a99 iget_locked +EXPORT_SYMBOL vmlinux 0x3f198577 page_readlink +EXPORT_SYMBOL vmlinux 0x3f2e21bd of_get_address +EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f559b6e scsi_host_get +EXPORT_SYMBOL vmlinux 0x3f5c6471 del_timer_sync +EXPORT_SYMBOL vmlinux 0x3f921b66 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x3f97e494 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x3fb1ea36 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x3fb3e5b9 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x3fb78d70 page_waitqueue +EXPORT_SYMBOL vmlinux 0x3fbb07ca lock_page_memcg +EXPORT_SYMBOL vmlinux 0x3fc47b71 eth_header +EXPORT_SYMBOL vmlinux 0x3fe0d1c0 slhc_free +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ff8e495 lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x3ffc704c twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x402bdbb6 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x4034073b devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x4057c0d0 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x407318c0 tty_check_change +EXPORT_SYMBOL vmlinux 0x40764c41 sock_release +EXPORT_SYMBOL vmlinux 0x408172a9 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x40951c66 load_nls_default +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b67c00 mpage_writepages +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x4115bab5 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414b2f3d iptun_encaps +EXPORT_SYMBOL vmlinux 0x41556a4d blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x4159c38f ioremap_wc +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x4188f878 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x4196547d request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x419d2761 pci_release_regions +EXPORT_SYMBOL vmlinux 0x41a1ba61 d_set_d_op +EXPORT_SYMBOL vmlinux 0x41b3f0fc touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x41f5e051 do_SAK +EXPORT_SYMBOL vmlinux 0x42139ee2 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x4229cb56 ilookup5 +EXPORT_SYMBOL vmlinux 0x42305585 md_update_sb +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x424eba82 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x4255f1fa crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x4277b24f blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x4280f229 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x42ab0390 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x42b22ff6 replace_mount_options +EXPORT_SYMBOL vmlinux 0x42be4aac from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x42c406ad kill_fasync +EXPORT_SYMBOL vmlinux 0x42ca1482 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x42d40d15 tty_unlock +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x43128744 pci_request_region +EXPORT_SYMBOL vmlinux 0x431c1c4f security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x431ef18f release_sock +EXPORT_SYMBOL vmlinux 0x43494532 pci_bus_put +EXPORT_SYMBOL vmlinux 0x434bef9a ip6_frag_init +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43872d1d netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all +EXPORT_SYMBOL vmlinux 0x43a44394 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x43a8362e phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x43bd75d9 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x43c712bc lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x43c9042f inet_shutdown +EXPORT_SYMBOL vmlinux 0x43d5d184 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x43e2891d pci_set_vpd_size +EXPORT_SYMBOL vmlinux 0x43e30e0b of_scan_pci_bridge +EXPORT_SYMBOL vmlinux 0x43e58689 flush_old_exec +EXPORT_SYMBOL vmlinux 0x43ea5c50 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x43ef8bbf vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x442cf944 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x443ba998 rwsem_wake +EXPORT_SYMBOL vmlinux 0x44468156 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x44509f96 inode_init_always +EXPORT_SYMBOL vmlinux 0x44545830 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x445fc6bf dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x446011e5 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x44621573 devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x4473e5ab fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x44783355 module_put +EXPORT_SYMBOL vmlinux 0x44824611 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup +EXPORT_SYMBOL vmlinux 0x44a66f7a misc_deregister +EXPORT_SYMBOL vmlinux 0x44b5ee9a kasprintf +EXPORT_SYMBOL vmlinux 0x44ba50a1 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x44bb7c68 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x44c4d270 kill_pid +EXPORT_SYMBOL vmlinux 0x44da3ccb __lock_buffer +EXPORT_SYMBOL vmlinux 0x44dcd210 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x450d49a1 __get_user_pages +EXPORT_SYMBOL vmlinux 0x45220205 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x454d7411 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x454d9158 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x4561fbea netlink_broadcast +EXPORT_SYMBOL vmlinux 0x456433ad param_set_int +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45a3e7a1 sys_copyarea +EXPORT_SYMBOL vmlinux 0x45a55ec8 __iounmap +EXPORT_SYMBOL vmlinux 0x45b0b52b blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x45bf6122 bio_add_page +EXPORT_SYMBOL vmlinux 0x45c46180 netif_device_detach +EXPORT_SYMBOL vmlinux 0x45c6c237 pci_domain_nr +EXPORT_SYMBOL vmlinux 0x45e37686 param_get_byte +EXPORT_SYMBOL vmlinux 0x45eec3dd find_get_entry +EXPORT_SYMBOL vmlinux 0x45fbc5dd phy_attach +EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock +EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user +EXPORT_SYMBOL vmlinux 0x462b0280 input_release_device +EXPORT_SYMBOL vmlinux 0x4632d9aa __bread_gfp +EXPORT_SYMBOL vmlinux 0x464609ae pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x46495e9b sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x4654b855 da903x_query_status +EXPORT_SYMBOL vmlinux 0x4657ebaa fence_context_alloc +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x4660be83 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x46a4c362 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x46c4fb20 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x46ee6272 sg_miter_start +EXPORT_SYMBOL vmlinux 0x46fb8209 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x470d95bb mpage_readpage +EXPORT_SYMBOL vmlinux 0x470f31aa netdev_update_features +EXPORT_SYMBOL vmlinux 0x473177a5 netlink_capable +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x474462cc __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x4748e86c __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x477c8bdb register_key_type +EXPORT_SYMBOL vmlinux 0x47819351 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47b1ef02 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x47cbc3f4 dquot_resume +EXPORT_SYMBOL vmlinux 0x47d9d26f dev_uc_flush +EXPORT_SYMBOL vmlinux 0x481c3c77 dev_open +EXPORT_SYMBOL vmlinux 0x4826aead n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x482b5fe9 seq_printf +EXPORT_SYMBOL vmlinux 0x483248cc dev_remove_offload +EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x4841e622 dma_pool_create +EXPORT_SYMBOL vmlinux 0x484cb06f seq_read +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x4878b14a remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x487fc03c dev_addr_del +EXPORT_SYMBOL vmlinux 0x48872311 unregister_console +EXPORT_SYMBOL vmlinux 0x488acc3b netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x4890fff8 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x4894a62a bdevname +EXPORT_SYMBOL vmlinux 0x489c6ef3 flush_tlb_range +EXPORT_SYMBOL vmlinux 0x48a771c5 cpu_core_map +EXPORT_SYMBOL vmlinux 0x48aa6829 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x48b06f80 __break_lease +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48d1f44f register_gifconf +EXPORT_SYMBOL vmlinux 0x48e225cd security_task_getsecid +EXPORT_SYMBOL vmlinux 0x48ef1b10 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x49059048 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x490bb5a1 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x492dde34 ip_options_compile +EXPORT_SYMBOL vmlinux 0x4932546b of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x4934b69d truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x4969c49a generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x49713462 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x49728243 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x49ae143b sock_i_uid +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b3ee06 vfs_statfs +EXPORT_SYMBOL vmlinux 0x49d628aa copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x49f0e934 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x49f4f9ae mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a030325 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x4a38b698 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x4a3e2daa __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x4a5388cd md_error +EXPORT_SYMBOL vmlinux 0x4a60e3c2 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x4a6f4f5f skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x4a76e70b tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x4a771f2c seq_putc +EXPORT_SYMBOL vmlinux 0x4a780ed3 giveup_fpu +EXPORT_SYMBOL vmlinux 0x4a887440 tcp_filter +EXPORT_SYMBOL vmlinux 0x4aa91224 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x4abd7906 bioset_free +EXPORT_SYMBOL vmlinux 0x4acaae05 param_get_int +EXPORT_SYMBOL vmlinux 0x4af29d54 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b153b19 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x4b25fb62 alloc_disk_node +EXPORT_SYMBOL vmlinux 0x4b3dd414 dm_io +EXPORT_SYMBOL vmlinux 0x4b5e5c49 blk_put_request +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b6006fd bdput +EXPORT_SYMBOL vmlinux 0x4b7461c8 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x4b8326ff ida_remove +EXPORT_SYMBOL vmlinux 0x4b8570e4 mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x4ba6209c __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bb9b08e dquot_operations +EXPORT_SYMBOL vmlinux 0x4bc907b1 mount_bdev +EXPORT_SYMBOL vmlinux 0x4bcdf3e9 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x4bdb5129 wireless_send_event +EXPORT_SYMBOL vmlinux 0x4be50cfc tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x4bfe1194 kthread_bind +EXPORT_SYMBOL vmlinux 0x4c05aeb1 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c1d4059 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x4c3b214a __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x4c4a8ecf sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x4c6a9aa3 find_get_entries_tag +EXPORT_SYMBOL vmlinux 0x4c72c014 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x4c7e4f18 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x4c84a2d2 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x4c95f979 nvm_register_tgt_type +EXPORT_SYMBOL vmlinux 0x4c96fd11 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf +EXPORT_SYMBOL vmlinux 0x4cab52dc pci_disable_msi +EXPORT_SYMBOL vmlinux 0x4caf6127 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x4cd923e0 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4cde1033 compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0x4cdfe533 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x4ce6b79f blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x4d06e423 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x4d17e2c6 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x4d57e0a0 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x4d791953 mempool_resize +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4de08403 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4e0988c1 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x4e1385b2 tty_hangup +EXPORT_SYMBOL vmlinux 0x4e271914 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e894913 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x4eb8005a phy_start_aneg +EXPORT_SYMBOL vmlinux 0x4eb98c6e dentry_open +EXPORT_SYMBOL vmlinux 0x4ebfebc5 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x4eca2ffa commit_creds +EXPORT_SYMBOL vmlinux 0x4ece84a6 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x4ed26724 __frontswap_store +EXPORT_SYMBOL vmlinux 0x4edae7ac mmc_request_done +EXPORT_SYMBOL vmlinux 0x4efaab1d sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x4f0a836d jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x4f1415f9 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x4f1c95e3 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f4b7606 kernel_bind +EXPORT_SYMBOL vmlinux 0x4f524a3b tty_devnum +EXPORT_SYMBOL vmlinux 0x4f58a884 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x4f601bcd sync_inode +EXPORT_SYMBOL vmlinux 0x4f631f17 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f78a97e ppp_input +EXPORT_SYMBOL vmlinux 0x4f79dd6e nla_reserve +EXPORT_SYMBOL vmlinux 0x4f7e29b4 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x4f81912c rtnl_create_link +EXPORT_SYMBOL vmlinux 0x4fb61d2e freeze_super +EXPORT_SYMBOL vmlinux 0x4fbae6a6 uuid_le_to_bin +EXPORT_SYMBOL vmlinux 0x4fbed7f2 pci_find_capability +EXPORT_SYMBOL vmlinux 0x4fceecec posix_lock_file +EXPORT_SYMBOL vmlinux 0x4fdb9318 down_write +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4ff57a01 kill_bdev +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x50223898 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x5023099d param_array_ops +EXPORT_SYMBOL vmlinux 0x50255edb sock_from_file +EXPORT_SYMBOL vmlinux 0x505fbded nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x5064da52 up_write +EXPORT_SYMBOL vmlinux 0x5064e59e __lock_page +EXPORT_SYMBOL vmlinux 0x5076cd93 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x5091d786 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x50a59b93 nf_register_hooks +EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x50c23697 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x50cca711 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x50cd6254 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x50ddbcde mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x50ea7190 scsi_device_get +EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x512752d4 release_firmware +EXPORT_SYMBOL vmlinux 0x513398c6 of_find_property +EXPORT_SYMBOL vmlinux 0x513415d5 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x51344a04 jbd2_journal_inode_add_wait +EXPORT_SYMBOL vmlinux 0x51503d86 input_register_device +EXPORT_SYMBOL vmlinux 0x515364e7 register_shrinker +EXPORT_SYMBOL vmlinux 0x51667d90 of_get_next_child +EXPORT_SYMBOL vmlinux 0x517691e3 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x51843cbf scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x519ae888 sock_wake_async +EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait +EXPORT_SYMBOL vmlinux 0x519b6f2f dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x51a3c583 bdev_read_only +EXPORT_SYMBOL vmlinux 0x51ba038f blk_free_tags +EXPORT_SYMBOL vmlinux 0x51bea4a5 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x51d3ef1a netdev_printk +EXPORT_SYMBOL vmlinux 0x51d54fe6 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x51ecb28d cfb_copyarea +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x520ec116 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x521a479e elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x522254a8 get_super +EXPORT_SYMBOL vmlinux 0x52281ef9 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x5234b0c4 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x523a846c dquot_quota_on +EXPORT_SYMBOL vmlinux 0x5244c612 param_get_long +EXPORT_SYMBOL vmlinux 0x524d17c8 genl_notify +EXPORT_SYMBOL vmlinux 0x526a65d1 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x528a15c3 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52d6100c __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x530a8cf8 irq_to_desc +EXPORT_SYMBOL vmlinux 0x5318e15a kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x533684ad swake_up +EXPORT_SYMBOL vmlinux 0x533d25bf read_cache_pages +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin +EXPORT_SYMBOL vmlinux 0x537eb19f inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x53817ed0 ping_prot +EXPORT_SYMBOL vmlinux 0x539731a3 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53a0b6fd rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x53b38b72 inet_sendpage +EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns +EXPORT_SYMBOL vmlinux 0x5408a8af tso_build_data +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x540c44d6 sk_wait_data +EXPORT_SYMBOL vmlinux 0x5412c7c7 up +EXPORT_SYMBOL vmlinux 0x5417f166 dev_deactivate +EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x54271b3c __nlmsg_put +EXPORT_SYMBOL vmlinux 0x542c005d of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x54351125 skb_queue_head +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5441b2d1 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x54884503 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x548e9c7a pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54abc022 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54c6379a kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0x54d45d30 nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x54db86b0 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f44654 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x55239b9d kmalloc_caches +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x554cb754 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x554cddb9 tcf_hashinfo_destroy +EXPORT_SYMBOL vmlinux 0x55590a22 open_exec +EXPORT_SYMBOL vmlinux 0x5565e9d3 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x55681177 single_open_size +EXPORT_SYMBOL vmlinux 0x5568c553 complete +EXPORT_SYMBOL vmlinux 0x556f8d9f init_buffer +EXPORT_SYMBOL vmlinux 0x5575b721 bdget +EXPORT_SYMBOL vmlinux 0x558e61e0 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x55a9219e seq_open_private +EXPORT_SYMBOL vmlinux 0x55ac0d9e blk_init_tags +EXPORT_SYMBOL vmlinux 0x55c26d0e sk_busy_loop +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55d7b849 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x55de5640 mdio_device_register +EXPORT_SYMBOL vmlinux 0x55fc73fe posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x5632475a no_llseek +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x5664a803 tcf_register_action +EXPORT_SYMBOL vmlinux 0x568ca715 __elv_add_request +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x56a53e90 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x56ab3ed5 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL vmlinux 0x56afb950 skb_unlink +EXPORT_SYMBOL vmlinux 0x56c530d7 __register_nls +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56cd621b kthread_stop +EXPORT_SYMBOL vmlinux 0x56db4298 filp_clone_open +EXPORT_SYMBOL vmlinux 0x56db751b alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x56dfe012 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x56e381ac scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x56e69fe0 unlock_page +EXPORT_SYMBOL vmlinux 0x56f6c7de lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x56fa088f mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x57037683 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x571ffed1 of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x5732f11d nf_ct_attach +EXPORT_SYMBOL vmlinux 0x573af33b scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x5744c936 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x5746b063 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57597cdf netif_napi_del +EXPORT_SYMBOL vmlinux 0x575af70c on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x57686b00 compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x576c3b1d clear_nlink +EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x57891e8b brioctl_set +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57a47b4b bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x57ae095f decrementer_clockevent +EXPORT_SYMBOL vmlinux 0x57bdcdd3 pci_map_rom +EXPORT_SYMBOL vmlinux 0x57c865f4 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x57efab69 padata_stop +EXPORT_SYMBOL vmlinux 0x57f27982 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x5814bbb5 prepare_creds +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x58271221 md_write_start +EXPORT_SYMBOL vmlinux 0x582a1d93 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x584472ae iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x586dc7e5 vc_cons +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x58842dda __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x58a420f0 __f_setown +EXPORT_SYMBOL vmlinux 0x58a940f3 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58c80b28 vme_dma_request +EXPORT_SYMBOL vmlinux 0x58d8413b set_anon_super +EXPORT_SYMBOL vmlinux 0x58d8e6da reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0x58e217ea blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58e5d5c9 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x58e8596b mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x58eca27f kset_register +EXPORT_SYMBOL vmlinux 0x59054ae5 __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x5922b0bd phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x59318410 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x5932b12d clkdev_drop +EXPORT_SYMBOL vmlinux 0x593a9737 mdio_device_create +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x59588ce5 account_page_dirtied +EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page +EXPORT_SYMBOL vmlinux 0x5963a112 machine_id +EXPORT_SYMBOL vmlinux 0x5970fb01 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x597beb81 blk_queue_split +EXPORT_SYMBOL vmlinux 0x5981c1ae sock_no_bind +EXPORT_SYMBOL vmlinux 0x598be38e kill_block_super +EXPORT_SYMBOL vmlinux 0x5992655e __register_binfmt +EXPORT_SYMBOL vmlinux 0x5995853c scsi_scan_host +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59b3378a completion_done +EXPORT_SYMBOL vmlinux 0x59cb4fb6 d_alloc +EXPORT_SYMBOL vmlinux 0x59f6277b i8042_install_filter +EXPORT_SYMBOL vmlinux 0x5a025f7b arch_local_irq_restore +EXPORT_SYMBOL vmlinux 0x5a042c75 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x5a0aaa12 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a173643 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x5a1dd264 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x5a2cda3e trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x5a2e67dc kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x5a394316 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x5a3abd11 page_mapped +EXPORT_SYMBOL vmlinux 0x5a4634d3 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x5a5d5adc generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x5a66a58c gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x5a79cd84 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a957310 generic_write_end +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b17d42d pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x5b4a89dc lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b5a19b0 datagram_poll +EXPORT_SYMBOL vmlinux 0x5b6bfd56 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x5b72a23d from_kuid_munged +EXPORT_SYMBOL vmlinux 0x5b8e3200 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x5b9862bb scsi_ioctl +EXPORT_SYMBOL vmlinux 0x5badfb90 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x5bbd2bf9 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit +EXPORT_SYMBOL vmlinux 0x5bfb2d33 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x5c0edf9e mmc_register_driver +EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x5c4344d1 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x5c525552 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x5c56001d nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x5c70e330 nf_register_hook +EXPORT_SYMBOL vmlinux 0x5c942219 scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x5c958c18 mount_single +EXPORT_SYMBOL vmlinux 0x5cbabd41 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x5cc2ecc8 framebuffer_release +EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x5ccae1c3 __genl_register_family +EXPORT_SYMBOL vmlinux 0x5cd76760 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x5cdca6bc sock_kmalloc +EXPORT_SYMBOL vmlinux 0x5ce2b9a6 devm_iounmap +EXPORT_SYMBOL vmlinux 0x5cef5b34 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x5cf30e10 __debugger_ipi +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d07d267 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0x5d0a4fa5 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x5d27c850 dev_get_flags +EXPORT_SYMBOL vmlinux 0x5d338f45 bio_phys_segments +EXPORT_SYMBOL vmlinux 0x5d4a8320 kvasprintf +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d58efa0 convert_ifc_address +EXPORT_SYMBOL vmlinux 0x5d59f813 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x5d5e8362 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x5d8b2647 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x5da192d0 param_get_ullong +EXPORT_SYMBOL vmlinux 0x5dd5216f eth_type_trans +EXPORT_SYMBOL vmlinux 0x5dd87329 get_fs_type +EXPORT_SYMBOL vmlinux 0x5e0a47c8 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x5e0e3830 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x5e15425b tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x5e23f988 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x5e24eb6d skb_queue_tail +EXPORT_SYMBOL vmlinux 0x5e2cd8d3 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up +EXPORT_SYMBOL vmlinux 0x5e4b1018 nvm_submit_ppa_list +EXPORT_SYMBOL vmlinux 0x5e55ea6a blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x5e6360d0 dev_close +EXPORT_SYMBOL vmlinux 0x5e74a643 skb_split +EXPORT_SYMBOL vmlinux 0x5e847706 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x5e8f7b2d make_bad_inode +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5ea0ebee pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0x5eab37b3 locks_init_lock +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5eddb914 lockref_put_return +EXPORT_SYMBOL vmlinux 0x5ef5cc8f bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0dae50 agp_free_memory +EXPORT_SYMBOL vmlinux 0x5f0fe7ca inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x5f14c75e simple_release_fs +EXPORT_SYMBOL vmlinux 0x5f167145 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x5f1d1918 cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x5f2a6237 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x5f46e364 iterate_dir +EXPORT_SYMBOL vmlinux 0x5f59a130 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x5f693af0 nf_log_set +EXPORT_SYMBOL vmlinux 0x5f730275 elv_register_queue +EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base +EXPORT_SYMBOL vmlinux 0x5f9d062e devm_gpio_request +EXPORT_SYMBOL vmlinux 0x5fce895c xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fe7d114 register_netdev +EXPORT_SYMBOL vmlinux 0x5fff832e igrab +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x60141f2b backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x6018a8d6 pci_select_bars +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x604d1875 dma_find_channel +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x60711182 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x6081b19a scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x60824575 truncate_setsize +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60abd209 neigh_lookup +EXPORT_SYMBOL vmlinux 0x60deb47a scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x60ed5ead netdev_info +EXPORT_SYMBOL vmlinux 0x60fdc4db file_remove_privs +EXPORT_SYMBOL vmlinux 0x61170a57 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x611f8b3b reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x6123631d uart_update_timeout +EXPORT_SYMBOL vmlinux 0x61260f21 unregister_netdev +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61615813 lookup_one_len +EXPORT_SYMBOL vmlinux 0x6181a5fe param_ops_string +EXPORT_SYMBOL vmlinux 0x61847242 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x6184a9a3 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x6187aa18 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x619cb17c i2c_clients_command +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61b9ec56 blk_end_request_all +EXPORT_SYMBOL vmlinux 0x61d45ae8 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x61d45e70 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x61dcf24a trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb +EXPORT_SYMBOL vmlinux 0x61fd58bf sock_no_poll +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x624e7f18 proc_mkdir +EXPORT_SYMBOL vmlinux 0x62538167 slhc_toss +EXPORT_SYMBOL vmlinux 0x626b819f vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62786efb ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x627c43a4 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x6283ce44 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x6286d1f8 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x62a1f77b pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x62a2714a xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x62bd3722 dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x62c1d423 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x62e7d70f blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x62e9cf65 vfs_write +EXPORT_SYMBOL vmlinux 0x62ee8ab2 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x62f8f092 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x630db9fd inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x6328f251 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x63357741 down_write_killable +EXPORT_SYMBOL vmlinux 0x63396aec __debugger_break_match +EXPORT_SYMBOL vmlinux 0x6354c193 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x63608c4e input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x637b8e68 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x637fea5a clear_wb_congested +EXPORT_SYMBOL vmlinux 0x639e42f3 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63a82333 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x63aaa4b5 __alloc_skb +EXPORT_SYMBOL vmlinux 0x63c42458 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63e2d9c9 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x63fd000a sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x644743bc free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x648b631d cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a4b84d cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64bc6b05 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x64ccd8a9 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x64d442b3 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x64d5693b posix_test_lock +EXPORT_SYMBOL vmlinux 0x650f3232 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x6513d3f7 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x651419dd __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x65215285 get_super_thawed +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x6531065a xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65504f7c of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x65621906 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x657f59bc tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x658bb77c mach_qemu_e500 +EXPORT_SYMBOL vmlinux 0x65a14cc1 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x65a4a616 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x65b3d491 devm_clk_put +EXPORT_SYMBOL vmlinux 0x65b91ebe truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65e2a292 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x65eccd6e __devm_release_region +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x65f670fc keyring_alloc +EXPORT_SYMBOL vmlinux 0x65f6ee92 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x6610de6f udp_prot +EXPORT_SYMBOL vmlinux 0x661ce683 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x662d249b security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x6635bbdd simple_readpage +EXPORT_SYMBOL vmlinux 0x664bbfa3 tcp_child_process +EXPORT_SYMBOL vmlinux 0x666c18df clear_user_page +EXPORT_SYMBOL vmlinux 0x667218f0 lwtunnel_input +EXPORT_SYMBOL vmlinux 0x669076a0 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x669ec232 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x66a3e7ed blkdev_put +EXPORT_SYMBOL vmlinux 0x66b6b4a6 of_node_get +EXPORT_SYMBOL vmlinux 0x66bc7731 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x66c98fdc shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x66dbb76e finish_open +EXPORT_SYMBOL vmlinux 0x66e05d22 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x66ff0790 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x671791a6 __invalidate_device +EXPORT_SYMBOL vmlinux 0x672087a8 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x6734780f scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x673ea4ff dev_uc_sync +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x67437274 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x67501563 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x6768a0c8 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x67a72a37 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c8281c agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x67daffa6 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x67e5baad bdi_destroy +EXPORT_SYMBOL vmlinux 0x67f0f6ef block_commit_write +EXPORT_SYMBOL vmlinux 0x67f92ebc __next_node_in +EXPORT_SYMBOL vmlinux 0x67fa2396 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x6815a099 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x681bbe58 filp_close +EXPORT_SYMBOL vmlinux 0x6829e73d scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x6846b79c sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x6851a7cd netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x685d353a inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68af3fc5 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x68d6b875 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x68d8e88e override_creds +EXPORT_SYMBOL vmlinux 0x68e60328 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x6910496a copy_from_iter +EXPORT_SYMBOL vmlinux 0x692f597c max8998_update_reg +EXPORT_SYMBOL vmlinux 0x693a8ab0 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x694a349d vme_register_bridge +EXPORT_SYMBOL vmlinux 0x694e1284 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x695ab64a pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x69832d1b free_buffer_head +EXPORT_SYMBOL vmlinux 0x698ad374 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x698bdd4b page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69aee582 of_dev_get +EXPORT_SYMBOL vmlinux 0x69c074a8 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x69f1be5f of_get_ibm_chip_id +EXPORT_SYMBOL vmlinux 0x69f284dd rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x69fce3db neigh_seq_next +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a2283d4 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x6a362387 put_disk +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a6b14fa generic_writepages +EXPORT_SYMBOL vmlinux 0x6a80dc79 start_tty +EXPORT_SYMBOL vmlinux 0x6a82a001 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x6a8f9b85 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x6a9f9aff mark_page_accessed +EXPORT_SYMBOL vmlinux 0x6aade87e write_inode_now +EXPORT_SYMBOL vmlinux 0x6ac125f7 flow_cache_fini +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6acce551 phy_device_free +EXPORT_SYMBOL vmlinux 0x6ad43992 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x6add7f6e cdrom_release +EXPORT_SYMBOL vmlinux 0x6aed6b2c cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af2bcea vfs_readv +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b08ce44 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x6b0b2089 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b4b7326 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x6b5dfe73 __debugger_bpt +EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6b7406d4 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x6b7ad709 tcp_prequeue +EXPORT_SYMBOL vmlinux 0x6b815736 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x6b84acee tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x6b8e9736 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x6b8fc003 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x6b9258c7 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bca25bc i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x6bd708aa neigh_xmit +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6be75970 ioread64 +EXPORT_SYMBOL vmlinux 0x6be81c6b unlock_rename +EXPORT_SYMBOL vmlinux 0x6be878d1 input_set_keycode +EXPORT_SYMBOL vmlinux 0x6c03fa4c sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x6c0b7e10 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x6c13071a __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x6c2cd6a6 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x6c32a384 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x6c3ce9bd pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x6c454484 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x6c5ab1b0 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c8fcc79 key_link +EXPORT_SYMBOL vmlinux 0x6c9425c6 unlock_buffer +EXPORT_SYMBOL vmlinux 0x6c97e0cd __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x6c9bd6e5 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x6c9e5c0d skb_queue_purge +EXPORT_SYMBOL vmlinux 0x6cb37127 flex_array_clear +EXPORT_SYMBOL vmlinux 0x6cdaed8c pcie_set_mps +EXPORT_SYMBOL vmlinux 0x6cfad866 pcim_iomap +EXPORT_SYMBOL vmlinux 0x6d0336f7 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d1d69a9 i2c_use_client +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d3e8ef7 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x6d6874ce of_get_parent +EXPORT_SYMBOL vmlinux 0x6d692d69 dev_uc_add +EXPORT_SYMBOL vmlinux 0x6d71f555 set_cached_acl +EXPORT_SYMBOL vmlinux 0x6d740223 flex_array_put +EXPORT_SYMBOL vmlinux 0x6d7408f3 __getblk_slow +EXPORT_SYMBOL vmlinux 0x6d85df6e seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x6d885d63 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns +EXPORT_SYMBOL vmlinux 0x6dc60555 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x6dcc7533 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x6dcd87df of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x6de6fff7 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x6debc3f4 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df5f85f agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x6e184f7c free_netdev +EXPORT_SYMBOL vmlinux 0x6e2f4c2a dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x6e36b8df kern_path +EXPORT_SYMBOL vmlinux 0x6e4ece63 param_ops_bint +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e75d465 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x6e80bed4 fb_get_mode +EXPORT_SYMBOL vmlinux 0x6e8111cd of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x6e82174d d_drop +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea2b29e audit_log_task_info +EXPORT_SYMBOL vmlinux 0x6ea817e4 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x6eae28b1 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x6eb2ffee pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x6eca4d4f mod_timer_pending +EXPORT_SYMBOL vmlinux 0x6ef4bbd1 __secpath_destroy +EXPORT_SYMBOL vmlinux 0x6f13cdc7 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x6f6fff9b simple_link +EXPORT_SYMBOL vmlinux 0x6f7c4b3a fscrypt_get_policy +EXPORT_SYMBOL vmlinux 0x6f7d891e iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fcf6003 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x6ff4f026 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x6ffe84e6 of_get_property +EXPORT_SYMBOL vmlinux 0x700dfa10 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x702f42e7 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x7030fd01 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x7031ac9b tcp_read_sock +EXPORT_SYMBOL vmlinux 0x7041cf77 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x7064fa2e unregister_md_personality +EXPORT_SYMBOL vmlinux 0x7071bd53 dev_add_pack +EXPORT_SYMBOL vmlinux 0x707331e1 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x707a50d5 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x70dd02bf __find_get_block +EXPORT_SYMBOL vmlinux 0x70ddbd41 seq_write +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x711c98af dev_mc_add +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7136ee3a of_device_register +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x717cde09 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x7182c234 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71b7c536 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x71c439bf dcb_setapp +EXPORT_SYMBOL vmlinux 0x71c53451 dquot_drop +EXPORT_SYMBOL vmlinux 0x71d069f5 kernel_accept +EXPORT_SYMBOL vmlinux 0x71dc94aa update_devfreq +EXPORT_SYMBOL vmlinux 0x71e67db2 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x71ea0809 simple_lookup +EXPORT_SYMBOL vmlinux 0x722c01da tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x72366eae md_unregister_thread +EXPORT_SYMBOL vmlinux 0x7238d2e0 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x72554825 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x72577e6b get_monotonic_coarse64 +EXPORT_SYMBOL vmlinux 0x72594e8b touch_buffer +EXPORT_SYMBOL vmlinux 0x725fd887 nla_append +EXPORT_SYMBOL vmlinux 0x729d1fb5 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72be509b migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x72c98139 __arch_hweight64 +EXPORT_SYMBOL vmlinux 0x72d4c23c fsl_get_sys_freq +EXPORT_SYMBOL vmlinux 0x72e676ab of_get_next_parent +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731a747a pci_io_base +EXPORT_SYMBOL vmlinux 0x733b2383 next_tlbcam_idx +EXPORT_SYMBOL vmlinux 0x733d9182 bio_reset +EXPORT_SYMBOL vmlinux 0x733df7c3 vm_event_states +EXPORT_SYMBOL vmlinux 0x734758b8 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x7349dda3 blk_get_request +EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue +EXPORT_SYMBOL vmlinux 0x7365f2bb xattr_full_name +EXPORT_SYMBOL vmlinux 0x73673a55 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x736dc3cc sock_i_ino +EXPORT_SYMBOL vmlinux 0x73815bbf ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x738a9538 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x73f3059d compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0x73f85c13 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x73fddcbb sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x7407d461 key_put +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x74173e24 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x7439822f keyring_clear +EXPORT_SYMBOL vmlinux 0x74465a1d clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x74492cdf generic_perform_write +EXPORT_SYMBOL vmlinux 0x7451e315 ip6_frag_match +EXPORT_SYMBOL vmlinux 0x7454f5c7 of_parse_phandle +EXPORT_SYMBOL vmlinux 0x745733e3 d_invalidate +EXPORT_SYMBOL vmlinux 0x74590b1e bio_advance +EXPORT_SYMBOL vmlinux 0x746241e2 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x74702604 bh_submit_read +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7483c173 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x748ca75a d_set_fallthru +EXPORT_SYMBOL vmlinux 0x74998f5d gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x749dfbaa pcim_pin_device +EXPORT_SYMBOL vmlinux 0x74a758e7 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x74aaf00f napi_gro_flush +EXPORT_SYMBOL vmlinux 0x74bb3f99 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74da5542 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74f7f878 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x75163ac5 devm_ioremap +EXPORT_SYMBOL vmlinux 0x7525efb0 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x752fb74f dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x755208b7 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x7557f7fa fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x756f8166 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x7575e0c9 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x75811312 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7589a968 set_page_dirty +EXPORT_SYMBOL vmlinux 0x75994700 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75be6702 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x75d1b6fd jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x75d67da1 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x75da6565 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x75dd0f0c generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x75e528ac tcf_hash_search +EXPORT_SYMBOL vmlinux 0x7602b2bc revert_creds +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7637e05d dcache_readdir +EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764fc87d nd_btt_probe +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x769e06d7 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x76b30cea buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x76c02b51 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x76c4ce7d napi_gro_frags +EXPORT_SYMBOL vmlinux 0x76cd9a73 file_path +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76da5aa0 audit_log +EXPORT_SYMBOL vmlinux 0x76e7722d dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x7707829c cdev_del +EXPORT_SYMBOL vmlinux 0x770d6553 netdev_all_lower_get_next +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x7725f794 new_inode +EXPORT_SYMBOL vmlinux 0x772b6d67 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x772ea315 iterate_fd +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77429817 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x7743006f blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x77610021 of_device_is_available +EXPORT_SYMBOL vmlinux 0x7770bd89 param_set_copystring +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77a9ca1a kobject_put +EXPORT_SYMBOL vmlinux 0x77b46f9d put_cmsg +EXPORT_SYMBOL vmlinux 0x77b953fa tty_register_driver +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c1f265 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x77cbaab5 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x77e3b801 inet_del_offload +EXPORT_SYMBOL vmlinux 0x781c7b8d blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x781f3c9c serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x782bfcf9 dget_parent +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x7840d6f3 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x7842fa9a vme_bus_type +EXPORT_SYMBOL vmlinux 0x784414c3 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x7845c931 __block_write_begin +EXPORT_SYMBOL vmlinux 0x7845f58a pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x78465fc2 posix_acl_init +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x78577db9 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x785dc86d bitmap_unplug +EXPORT_SYMBOL vmlinux 0x786766c3 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x78678034 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x787c9c01 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x788e46a1 set_bh_page +EXPORT_SYMBOL vmlinux 0x78994d84 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x789cffb1 vfs_rename +EXPORT_SYMBOL vmlinux 0x78c09220 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x78dc82a0 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e20199 input_event +EXPORT_SYMBOL vmlinux 0x78f8c2ea netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x78fe410d devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0x79285724 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x7938a13f proto_unregister +EXPORT_SYMBOL vmlinux 0x79393606 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x793eb569 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x7964866e dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x7966be71 dump_page +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x79782682 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79b8cf76 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x79e69a15 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0x79f3a4b4 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x7a03da18 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x7a236ff5 tcf_em_register +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a680c4f pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a6d3a70 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x7a6db388 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x7a849df7 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x7a8d8987 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x7a9273b6 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x7a93764f mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x7aa0a920 fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa3289f tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x7aa561ac skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7acdfad5 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7addf05e dst_init +EXPORT_SYMBOL vmlinux 0x7ade104b vfs_read +EXPORT_SYMBOL vmlinux 0x7ae4d130 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x7ae90cba tso_count_descs +EXPORT_SYMBOL vmlinux 0x7b061b99 iget_failed +EXPORT_SYMBOL vmlinux 0x7b088125 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc +EXPORT_SYMBOL vmlinux 0x7b398e82 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0x7b40320f generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x7b4e8ef4 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x7ba39f68 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x7bb756cc neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x7bc7d5c7 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x7bd1cfe2 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x7be30a55 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x7c0471b6 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x7c08fb84 input_flush_device +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c207d94 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc +EXPORT_SYMBOL vmlinux 0x7c3f9c4a param_ops_byte +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c51a4d7 pci_get_slot +EXPORT_SYMBOL vmlinux 0x7c6d7fed register_sysctl +EXPORT_SYMBOL vmlinux 0x7c852d9e mdiobus_free +EXPORT_SYMBOL vmlinux 0x7c9291d1 csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x7c9788f0 km_is_alive +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7c9ac32e __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x7cb30cb9 msi_bitmap_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0x7cb84bf1 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x7cc25a9b __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x7cd2397d fscrypt_encrypt_page +EXPORT_SYMBOL vmlinux 0x7cdc5500 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x7ce0f137 seq_pad +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7d04db22 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x7d081b41 import_iovec +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d22bffb netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x7d4f9da9 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x7d5b7a9c page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x7d64718a bmap +EXPORT_SYMBOL vmlinux 0x7d650dae __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d8b271d devm_gpiod_get +EXPORT_SYMBOL vmlinux 0x7d90115b netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x7d93f647 ipv4_specific +EXPORT_SYMBOL vmlinux 0x7da18c16 clear_inode +EXPORT_SYMBOL vmlinux 0x7da5b9be mdiobus_read +EXPORT_SYMBOL vmlinux 0x7dc4415b mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x7dd0536a elevator_alloc +EXPORT_SYMBOL vmlinux 0x7dd8d739 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x7debbaf0 fscrypt_pullback_bio_page +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7dfc2d3c vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x7e1f65e9 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x7e430d37 of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x7e43941c bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x7e5773e6 page_symlink +EXPORT_SYMBOL vmlinux 0x7e78ffe4 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x7e79a52b get_task_io_context +EXPORT_SYMBOL vmlinux 0x7e7ea933 __neigh_create +EXPORT_SYMBOL vmlinux 0x7e87227e slhc_compress +EXPORT_SYMBOL vmlinux 0x7e8e7b01 skb_find_text +EXPORT_SYMBOL vmlinux 0x7e97b87e of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x7ea34eeb blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x7ea9dd71 compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0x7ecb001b __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7eea00ae dev_mc_sync +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f1be129 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7f324f4d try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f7bc75e __neigh_event_send +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7fbed76e set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe38f48 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x7ff2820b jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x800fb92b full_name_hash +EXPORT_SYMBOL vmlinux 0x802bb1da send_sig_info +EXPORT_SYMBOL vmlinux 0x80ae19b2 arp_create +EXPORT_SYMBOL vmlinux 0x80b37592 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d22103 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80edda87 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x80f47ae9 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x810519fd hashlen_string +EXPORT_SYMBOL vmlinux 0x81083f87 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x810d48ae tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x813505c6 mmc_erase +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x8157030f sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x818a3118 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x81b8d058 d_genocide +EXPORT_SYMBOL vmlinux 0x81c92a78 elevator_change +EXPORT_SYMBOL vmlinux 0x81d103fc sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x82038725 cpumask_any_but +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x8245716e pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x8250d464 simple_statfs +EXPORT_SYMBOL vmlinux 0x825da489 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x82701139 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x8276def0 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x8289d9d3 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x82b37ad3 blk_start_request +EXPORT_SYMBOL vmlinux 0x82c9a1ef of_create_pci_dev +EXPORT_SYMBOL vmlinux 0x83105a2d pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x8322f8cf ppp_input_error +EXPORT_SYMBOL vmlinux 0x832cd193 udp_poll +EXPORT_SYMBOL vmlinux 0x832d65d3 uart_resume_port +EXPORT_SYMBOL vmlinux 0x8351e002 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x83536ef1 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x835bae00 vga_put +EXPORT_SYMBOL vmlinux 0x83776b19 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x83888dfe deactivate_super +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8397feb6 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x83ad8d9d tty_port_close +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83b762a1 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83c772d1 give_up_console +EXPORT_SYMBOL vmlinux 0x840a6174 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x84120862 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x8419d9fa qdisc_destroy +EXPORT_SYMBOL vmlinux 0x841ed60c nvm_bb_tbl_fold +EXPORT_SYMBOL vmlinux 0x843cb321 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x8443d81b pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x844a33fa blk_get_queue +EXPORT_SYMBOL vmlinux 0x845858a1 fscrypt_decrypt_page +EXPORT_SYMBOL vmlinux 0x84621b7a mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x848e6b23 phy_print_status +EXPORT_SYMBOL vmlinux 0x84998bd9 input_inject_event +EXPORT_SYMBOL vmlinux 0x849fe807 csum_and_copy_from_user +EXPORT_SYMBOL vmlinux 0x84bbbf65 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock +EXPORT_SYMBOL vmlinux 0x84c4d83d xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x84c76ce9 param_set_ullong +EXPORT_SYMBOL vmlinux 0x84eb4437 rps_needed +EXPORT_SYMBOL vmlinux 0x84f8f882 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x84f948c6 mmc_get_card +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x8513b193 misc_register +EXPORT_SYMBOL vmlinux 0x8517b77b eth_header_parse +EXPORT_SYMBOL vmlinux 0x851b2dbf fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x8521c7ea rio_query_mport +EXPORT_SYMBOL vmlinux 0x85351ea2 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x853fd0dc ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x854ae707 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x85651c14 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x8574942d dst_alloc +EXPORT_SYMBOL vmlinux 0x85825898 add_timer +EXPORT_SYMBOL vmlinux 0x85899fff add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x85a56c71 iunique +EXPORT_SYMBOL vmlinux 0x85ae6052 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85ba4c84 flush_dcache_page +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e91671 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f40ceb __put_page +EXPORT_SYMBOL vmlinux 0x85fcb295 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x85fd93d5 vm_mmap +EXPORT_SYMBOL vmlinux 0x860c127e __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x8610748f tcp_prot +EXPORT_SYMBOL vmlinux 0x8627a9d4 copy_to_iter +EXPORT_SYMBOL vmlinux 0x862f2a33 vme_lm_request +EXPORT_SYMBOL vmlinux 0x86387c74 get_phy_device +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x866a2500 __ps2_command +EXPORT_SYMBOL vmlinux 0x8670bc63 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x86765aae __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x86879b1d devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x868ddb41 set_user_nice +EXPORT_SYMBOL vmlinux 0x86a26497 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86b15e6e nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x86bf1f84 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x86d5a552 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x86e2c724 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x8708d3e1 genphy_config_init +EXPORT_SYMBOL vmlinux 0x871aa952 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x872084db nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0x873a53ea __arch_hweight8 +EXPORT_SYMBOL vmlinux 0x873d24f6 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x878c0b54 mpage_readpages +EXPORT_SYMBOL vmlinux 0x879dde92 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x87a02070 phy_suspend +EXPORT_SYMBOL vmlinux 0x87a72d10 phy_driver_register +EXPORT_SYMBOL vmlinux 0x87ab30ff mac_find_mode +EXPORT_SYMBOL vmlinux 0x87ed6a25 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x87ed9139 blkdev_get +EXPORT_SYMBOL vmlinux 0x87f25ecd unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x87f80275 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x87fb92dc locks_free_lock +EXPORT_SYMBOL vmlinux 0x88051743 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x8823104f __page_symlink +EXPORT_SYMBOL vmlinux 0x882db37f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x88329124 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x884e9d63 fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x885767da fsl_ifc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x8860ecd9 clkdev_hw_alloc +EXPORT_SYMBOL vmlinux 0x886a5540 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x887c3ceb filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x888727e2 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x889d59b4 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x88a8db05 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x88cdca9d inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x88d3fb17 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e1f9b9 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x88e9b918 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x88f4b43b sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy +EXPORT_SYMBOL vmlinux 0x893c32cc key_type_keyring +EXPORT_SYMBOL vmlinux 0x89468829 tso_start +EXPORT_SYMBOL vmlinux 0x895108f3 proc_dostring +EXPORT_SYMBOL vmlinux 0x8963fedd scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x896f4af4 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x898ecc95 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x899584ef prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x899bf9f8 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x89aa71d2 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x89af6e59 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89b02929 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x89b741b2 vme_master_request +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89f866ae phy_disconnect +EXPORT_SYMBOL vmlinux 0x8a1a8e31 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a40f073 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a638b5e pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x8a695faa __ip_select_ident +EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x8a764f88 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a9114c9 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9a09fc touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x8aa925db phy_find_first +EXPORT_SYMBOL vmlinux 0x8aaab6aa tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x8ab05383 block_read_full_page +EXPORT_SYMBOL vmlinux 0x8ac7b24f check_disk_change +EXPORT_SYMBOL vmlinux 0x8ae99469 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0x8afaebe7 nla_put +EXPORT_SYMBOL vmlinux 0x8b01fecf nf_getsockopt +EXPORT_SYMBOL vmlinux 0x8b1421f5 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x8b19eb21 kernel_connect +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b89fb4e ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x8ba0ee00 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x8baf3116 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x8bbc67ea scsi_print_command +EXPORT_SYMBOL vmlinux 0x8bc3c4e1 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x8be4e0f1 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x8be735fd pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x8bf2ae1f fsl_lbc_addr +EXPORT_SYMBOL vmlinux 0x8c134f04 touch_atime +EXPORT_SYMBOL vmlinux 0x8c178322 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c1e636e compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0x8c2477ef i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x8c2cf445 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x8c57b5ff xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c6c1c8a jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x8c7e4eb9 mpage_writepage +EXPORT_SYMBOL vmlinux 0x8c81c068 xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x8c94cc01 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x8c97ff47 seq_release_private +EXPORT_SYMBOL vmlinux 0x8ca346c3 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x8cada81d kernel_param_lock +EXPORT_SYMBOL vmlinux 0x8cba39e2 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cc8a055 pci_dev_put +EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 +EXPORT_SYMBOL vmlinux 0x8d0b8f0c qdisc_list_del +EXPORT_SYMBOL vmlinux 0x8d15114a __release_region +EXPORT_SYMBOL vmlinux 0x8d19d642 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d5a4138 file_open_root +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d944cbb copy_in_user +EXPORT_SYMBOL vmlinux 0x8d9e22b4 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x8da47e69 inet6_release +EXPORT_SYMBOL vmlinux 0x8dadf340 simple_open +EXPORT_SYMBOL vmlinux 0x8db075b9 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create +EXPORT_SYMBOL vmlinux 0x8df7c20d devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8e019b25 dma_iommu_ops +EXPORT_SYMBOL vmlinux 0x8e07faf4 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x8e0ff516 vga_con +EXPORT_SYMBOL vmlinux 0x8e170dc9 __napi_schedule +EXPORT_SYMBOL vmlinux 0x8e1eb2bc sys_fillrect +EXPORT_SYMBOL vmlinux 0x8e265940 compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0x8e397b5f inet_frag_kill +EXPORT_SYMBOL vmlinux 0x8e442020 param_get_bool +EXPORT_SYMBOL vmlinux 0x8e4a5dfe reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x8e522d1c phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e813b12 posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x8e879bb7 __vmalloc +EXPORT_SYMBOL vmlinux 0x8e888ec3 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x8e8d58da diu_ops +EXPORT_SYMBOL vmlinux 0x8eb5c3d8 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x8eb907e4 inode_init_once +EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8ed959a9 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x8ee367be mmc_can_reset +EXPORT_SYMBOL vmlinux 0x8efb1ee3 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x8f0252f2 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x8f142b3e ata_port_printk +EXPORT_SYMBOL vmlinux 0x8f394a70 device_add_disk +EXPORT_SYMBOL vmlinux 0x8f5e8907 passthru_features_check +EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x8f941f54 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x8f9cc59a update_region +EXPORT_SYMBOL vmlinux 0x8fa4580e touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x8fa9bf83 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x8fb5260a __d_lookup_done +EXPORT_SYMBOL vmlinux 0x8fbf359e phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x8fc7c2d8 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x8fcbe68c dump_skip +EXPORT_SYMBOL vmlinux 0x8fd791b0 inode_change_ok +EXPORT_SYMBOL vmlinux 0x8fdf772a init_timer_key +EXPORT_SYMBOL vmlinux 0x8fec1b56 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x90046dd3 get_task_exe_file +EXPORT_SYMBOL vmlinux 0x9010d2dd ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x901fa381 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x902dcdd9 pci_platform_rom +EXPORT_SYMBOL vmlinux 0x902e19af fsl_lbc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x90fe3afb submit_bio +EXPORT_SYMBOL vmlinux 0x9108e1a5 phy_connect +EXPORT_SYMBOL vmlinux 0x9119e862 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x912aff22 fd_install +EXPORT_SYMBOL vmlinux 0x9131c12b jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x914d8fb9 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec +EXPORT_SYMBOL vmlinux 0x915e6af4 param_set_ulong +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x918efce9 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x919a39d9 md_cluster_mod +EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x91a1ab80 tty_name +EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf +EXPORT_SYMBOL vmlinux 0x91cf2079 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x91d4574c __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x91ecb1cd bio_copy_data +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x9209b880 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x9218cff1 adjust_resource +EXPORT_SYMBOL vmlinux 0x92318f02 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x925736b6 vfs_mknod +EXPORT_SYMBOL vmlinux 0x9264e95f try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x9288ab2a inet_gso_segment +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92b32bf3 mmc_start_req +EXPORT_SYMBOL vmlinux 0x92b3a433 redraw_screen +EXPORT_SYMBOL vmlinux 0x92c4badc nd_device_register +EXPORT_SYMBOL vmlinux 0x92d1b8fc tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x92dbe7b9 __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x92dda085 vfs_symlink +EXPORT_SYMBOL vmlinux 0x92e2153b security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x92ebd857 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x92f0cfb1 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x92f9fdf8 qdisc_list_add +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x9308c067 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x935116f3 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x935ec184 sock_efree +EXPORT_SYMBOL vmlinux 0x9370673b skb_append +EXPORT_SYMBOL vmlinux 0x9376b193 lock_fb_info +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x9393caf9 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93bfd2f2 d_alloc_name +EXPORT_SYMBOL vmlinux 0x93c7e8f9 read_code +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x940e8481 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x9413f14f blk_register_region +EXPORT_SYMBOL vmlinux 0x9415ff44 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x942b7927 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x943dc80f csum_and_copy_to_user +EXPORT_SYMBOL vmlinux 0x945f4f99 devm_request_resource +EXPORT_SYMBOL vmlinux 0x946c46ad skb_make_writable +EXPORT_SYMBOL vmlinux 0x946d3856 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x946f4398 phy_device_remove +EXPORT_SYMBOL vmlinux 0x94785a54 mount_subtree +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94a8ba27 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x94bfa95b qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x94cbb31b xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x94e44c44 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x94ecc9c3 param_set_long +EXPORT_SYMBOL vmlinux 0x94f27f05 sock_alloc +EXPORT_SYMBOL vmlinux 0x94f9df6c mod_node_page_state +EXPORT_SYMBOL vmlinux 0x950d0c01 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x95197290 of_node_put +EXPORT_SYMBOL vmlinux 0x95244ddd neigh_destroy +EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb +EXPORT_SYMBOL vmlinux 0x952e11b2 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x953a6419 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x955016ca __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x956672da serio_bus +EXPORT_SYMBOL vmlinux 0x957b11b8 mount_ns +EXPORT_SYMBOL vmlinux 0x959fdb97 phy_init_hw +EXPORT_SYMBOL vmlinux 0x95ac4816 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x95b06539 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x95eec4c3 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x95fa6e4c param_ops_long +EXPORT_SYMBOL vmlinux 0x9612394d udp_gro_receive +EXPORT_SYMBOL vmlinux 0x9621397b neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x96240dd6 kill_litter_super +EXPORT_SYMBOL vmlinux 0x9637baa7 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x96399032 __block_write_full_page +EXPORT_SYMBOL vmlinux 0x96593e15 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x965ddff3 vga_tryget +EXPORT_SYMBOL vmlinux 0x9661279b make_kprojid +EXPORT_SYMBOL vmlinux 0x966a91f9 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x966c73d3 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x969987fc lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x96a52c86 iowrite64 +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96ba17b1 serio_rescan +EXPORT_SYMBOL vmlinux 0x96c68231 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96dc7658 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x96e4931a xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x96f1566f d_move +EXPORT_SYMBOL vmlinux 0x9716f896 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x971ea24c dma_direct_ops +EXPORT_SYMBOL vmlinux 0x972a0ffc msi_bitmap_free_hwirqs +EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x97767f81 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x9784957c sg_miter_next +EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97a0139a md_done_sync +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97a8cbae clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x97afba7b proc_douintvec +EXPORT_SYMBOL vmlinux 0x97cd62b0 netif_napi_add +EXPORT_SYMBOL vmlinux 0x97d080f3 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x97e626c5 fscrypt_free_filename +EXPORT_SYMBOL vmlinux 0x97f18b46 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x97f287a5 ether_setup +EXPORT_SYMBOL vmlinux 0x9823dc66 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x98254e02 register_md_personality +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x982e9d82 invalidate_partition +EXPORT_SYMBOL vmlinux 0x982fc9be param_get_invbool +EXPORT_SYMBOL vmlinux 0x9838e06d mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x987585fe md_reload_sb +EXPORT_SYMBOL vmlinux 0x987fc124 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x98991952 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x98a99f2a dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x98c39977 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98d2cd99 scsi_print_result +EXPORT_SYMBOL vmlinux 0x98f0e0be nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x990ad99c skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x9917071d unregister_qdisc +EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x993ba457 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x993c1353 of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x9951b553 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x995d2f6e tcp_init_sock +EXPORT_SYMBOL vmlinux 0x99694ad5 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999a66ed skb_checksum +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x99b16f8c release_resource +EXPORT_SYMBOL vmlinux 0x99d0b572 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size +EXPORT_SYMBOL vmlinux 0x99f21dfd mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x99f3140a generic_readlink +EXPORT_SYMBOL vmlinux 0x99f48389 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x9a154ad0 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a2d37d6 submit_bh +EXPORT_SYMBOL vmlinux 0x9a2e97b6 vme_bus_num +EXPORT_SYMBOL vmlinux 0x9a470809 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x9a51de05 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x9a51e790 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x9a74cd45 i2c_master_send +EXPORT_SYMBOL vmlinux 0x9a8fbace __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x9a98eb86 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x9aa1ff05 dquot_commit +EXPORT_SYMBOL vmlinux 0x9aa8db7b get_acl +EXPORT_SYMBOL vmlinux 0x9ab91a41 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x9acdb2e8 up_read +EXPORT_SYMBOL vmlinux 0x9aced03d set_disk_ro +EXPORT_SYMBOL vmlinux 0x9adb0702 nd_iostat_end +EXPORT_SYMBOL vmlinux 0x9ae1f8e8 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9af66de4 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x9afdb4d1 would_dump +EXPORT_SYMBOL vmlinux 0x9b07dbb0 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x9b084ce1 address_space_init_once +EXPORT_SYMBOL vmlinux 0x9b14635d bd_set_size +EXPORT_SYMBOL vmlinux 0x9b16ad40 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x9b1fc488 nvm_end_io +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b32fd91 cdev_alloc +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b77b0c7 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x9b914d32 param_get_charp +EXPORT_SYMBOL vmlinux 0x9b9d6a44 key_task_permission +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bbd0e17 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x9bc92892 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x9bd585b1 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9bff3a4b param_ops_invbool +EXPORT_SYMBOL vmlinux 0x9c38930f netdev_err +EXPORT_SYMBOL vmlinux 0x9c38eb99 fscrypt_fname_encrypted_size +EXPORT_SYMBOL vmlinux 0x9c3b45b8 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x9c404bc9 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x9c437e44 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c77452b devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x9c79822b dquot_transfer +EXPORT_SYMBOL vmlinux 0x9c910880 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x9c9cb2fd filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x9ca7da5e nobh_writepage +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9caf7ba8 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x9cb78028 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x9ce3c17a sock_setsockopt +EXPORT_SYMBOL vmlinux 0x9cfdb25a netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x9cff93d8 nonseekable_open +EXPORT_SYMBOL vmlinux 0x9d0d07c8 cdev_add +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs +EXPORT_SYMBOL vmlinux 0x9d378f70 queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x9d6a54c2 flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0x9d6c53d2 alloc_file +EXPORT_SYMBOL vmlinux 0x9d72229b fsl_ifc_find +EXPORT_SYMBOL vmlinux 0x9d7ce8dd _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x9d83737c setup_new_exec +EXPORT_SYMBOL vmlinux 0x9d92f17f blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x9dca1bb2 vfs_setpos +EXPORT_SYMBOL vmlinux 0x9de1b23a d_lookup +EXPORT_SYMBOL vmlinux 0x9de51646 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x9dee1a7f i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e15684b consume_skb +EXPORT_SYMBOL vmlinux 0x9e21c6a7 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x9e2e34d4 iput +EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e4c79ac call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x9e4dd7f5 fence_init +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e4ff317 netdev_emerg +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e644071 inet_gro_complete +EXPORT_SYMBOL vmlinux 0x9e6f3b7a vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e9a6a89 __register_chrdev +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea4fd70 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x9ec98ca8 vm_node_stat +EXPORT_SYMBOL vmlinux 0x9ee355cb kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x9ee7bdcb dup_iter +EXPORT_SYMBOL vmlinux 0x9ee82cd6 uuid_be_index +EXPORT_SYMBOL vmlinux 0x9f08c40f neigh_seq_start +EXPORT_SYMBOL vmlinux 0x9f20cfc0 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x9f370c9a block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x9f4243c0 get_disk +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f51c25e sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x9f726091 fb_show_logo +EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x9f911629 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f9b34c7 nvm_mark_blk +EXPORT_SYMBOL vmlinux 0x9f9ba85a kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x9fa28a0a __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x9fb1d0ed uuid_is_valid +EXPORT_SYMBOL vmlinux 0x9fbaa7c9 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x9fbba9a7 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x9fc71c51 __mutex_init +EXPORT_SYMBOL vmlinux 0x9fc771bd md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x9fd086ec netpoll_setup +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9ff04a0d inet_put_port +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0x9fff0aac blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xa01ab8a3 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xa01b9742 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa047c446 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa05a7fe9 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa0788130 console_stop +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07b5d59 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0d55352 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0ef4801 kset_unregister +EXPORT_SYMBOL vmlinux 0xa0f85d46 phy_stop +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0xa101e532 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa1112f55 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa198c77b mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0xa1b6f090 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1c78f65 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xa1d203b1 pid_task +EXPORT_SYMBOL vmlinux 0xa1d83fe4 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1e31752 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa206dc86 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa20d8973 __put_cred +EXPORT_SYMBOL vmlinux 0xa2118e7b gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xa23f0085 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0xa2b7a892 filemap_flush +EXPORT_SYMBOL vmlinux 0xa2b8a607 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xa2e032bd sync_file_create +EXPORT_SYMBOL vmlinux 0xa2e76718 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xa2f1a37c mmc_power_save_host +EXPORT_SYMBOL vmlinux 0xa303d01e pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xa3091582 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa335ba36 napi_complete_done +EXPORT_SYMBOL vmlinux 0xa3385e99 paca +EXPORT_SYMBOL vmlinux 0xa33baedd phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0xa3550faa follow_down +EXPORT_SYMBOL vmlinux 0xa36be0a6 mmc_fixup_device +EXPORT_SYMBOL vmlinux 0xa381944f dql_reset +EXPORT_SYMBOL vmlinux 0xa39a23dc tcp_shutdown +EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay +EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa3abea8e iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xa3beef95 block_invalidatepage +EXPORT_SYMBOL vmlinux 0xa3c443f2 iov_iter_advance +EXPORT_SYMBOL vmlinux 0xa3ca542d kfree_skb_list +EXPORT_SYMBOL vmlinux 0xa3e75545 flush_tlb_kernel_range +EXPORT_SYMBOL vmlinux 0xa3f09f3a rtnl_unicast +EXPORT_SYMBOL vmlinux 0xa3fb4f8e bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xa4115623 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xa41dd018 eth_change_mtu +EXPORT_SYMBOL vmlinux 0xa441133c blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xa448dd46 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xa4511467 crc16 +EXPORT_SYMBOL vmlinux 0xa45144ce jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xa4540637 tcp_ioctl +EXPORT_SYMBOL vmlinux 0xa46d929a ppc_md +EXPORT_SYMBOL vmlinux 0xa46dbd7b xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa47caccf mutex_unlock +EXPORT_SYMBOL vmlinux 0xa491600e xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xa4a28f03 irq_set_chip +EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4c1a8ff clk_get +EXPORT_SYMBOL vmlinux 0xa4cdbc95 agp_copy_info +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa5124227 blk_stop_queue +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa55c6830 register_sysctl_table +EXPORT_SYMBOL vmlinux 0xa56b0a64 scsi_unregister +EXPORT_SYMBOL vmlinux 0xa56b8ab2 flex_array_free +EXPORT_SYMBOL vmlinux 0xa58a7cb2 netdev_notice +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa59fed9e dma_common_mmap +EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le +EXPORT_SYMBOL vmlinux 0xa5b020bc generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xa5ce8fed skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xa5db9260 migrate_page_copy +EXPORT_SYMBOL vmlinux 0xa5ff6871 blk_complete_request +EXPORT_SYMBOL vmlinux 0xa60c8931 dev_get_stats +EXPORT_SYMBOL vmlinux 0xa6117314 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xa6334a21 mmc_of_parse +EXPORT_SYMBOL vmlinux 0xa6579cdb mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa69c7777 pci_bus_get +EXPORT_SYMBOL vmlinux 0xa6e26cae tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xa6e7fecb get_tz_trend +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa7429fc7 __netif_schedule +EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get +EXPORT_SYMBOL vmlinux 0xa7549828 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0xa75f5d3a scsi_dma_map +EXPORT_SYMBOL vmlinux 0xa768620d md_flush_request +EXPORT_SYMBOL vmlinux 0xa77dd08a sk_alloc +EXPORT_SYMBOL vmlinux 0xa78d9eb7 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xa7904be1 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xa7a104bc dcache_dir_close +EXPORT_SYMBOL vmlinux 0xa7a1a739 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xa7ccf8fa pci_iomap +EXPORT_SYMBOL vmlinux 0xa7d47080 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xa7ed8f5c neigh_ifdown +EXPORT_SYMBOL vmlinux 0xa7fbf56f simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xa81e100e blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xa8283ec2 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xa83b8543 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa852e138 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xa86ceb21 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa8803916 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0xa891b286 register_framebuffer +EXPORT_SYMBOL vmlinux 0xa892d39a bdi_register_owner +EXPORT_SYMBOL vmlinux 0xa89de870 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0xa8a55e2f inet_csk_accept +EXPORT_SYMBOL vmlinux 0xa8b21b3d bio_endio +EXPORT_SYMBOL vmlinux 0xa8d6994e jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa90a91c8 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa91e1781 key_invalidate +EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xa9273e1a epapr_hypercall_start +EXPORT_SYMBOL vmlinux 0xa93ba88e proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xa9575dab blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xa957c633 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xa971933e swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9b736c6 param_set_short +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9c86ff2 padata_start +EXPORT_SYMBOL vmlinux 0xa9c998d2 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0xa9edbabc fence_default_wait +EXPORT_SYMBOL vmlinux 0xaa0fa3fe rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xaa2603da __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xaa306585 may_umount +EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock +EXPORT_SYMBOL vmlinux 0xaa4c722e netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xaa57e323 compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xaa63409e nf_unregister_hook +EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa73bbe9 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0xaa92ada5 flush_all_to_thread +EXPORT_SYMBOL vmlinux 0xaaa3e132 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xaaab8067 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0xaab5ca60 param_ops_short +EXPORT_SYMBOL vmlinux 0xaacf67b4 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaada381d padata_do_parallel +EXPORT_SYMBOL vmlinux 0xaafb8d62 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab0185e7 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xab0a2987 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xab264fde chacha20_block +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab45fba9 seq_vprintf +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xabb286dd __seq_open_private +EXPORT_SYMBOL vmlinux 0xabb5070b __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabea7c9d nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xabf98d58 agp_find_bridge +EXPORT_SYMBOL vmlinux 0xac05978c phy_device_create +EXPORT_SYMBOL vmlinux 0xac0abeb8 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac258259 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xac88a325 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd08ae0 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacdcf38b __nd_iostat_start +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacfd01ec vfs_llseek +EXPORT_SYMBOL vmlinux 0xad012e42 pipe_unlock +EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xad1a6fb8 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xad1e8cd7 inet_frags_init +EXPORT_SYMBOL vmlinux 0xad53650c abort_creds +EXPORT_SYMBOL vmlinux 0xad5620a0 devm_free_irq +EXPORT_SYMBOL vmlinux 0xad5aa3b9 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xad5fa071 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xad76f161 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xadac24ba dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xadcff9e3 prepare_to_swait +EXPORT_SYMBOL vmlinux 0xade9dcaf seq_puts +EXPORT_SYMBOL vmlinux 0xadeceec9 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xadfb572d cdev_init +EXPORT_SYMBOL vmlinux 0xadfc3343 param_set_charp +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae2422c0 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xae49c190 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xae4dc887 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xae586f0f jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xae65b456 dqput +EXPORT_SYMBOL vmlinux 0xae785e15 nvm_find_target_type +EXPORT_SYMBOL vmlinux 0xae97b5d5 search_binary_handler +EXPORT_SYMBOL vmlinux 0xaec7a6a3 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0xaec8ca94 dev_uc_del +EXPORT_SYMBOL vmlinux 0xaedb2d73 of_phy_connect +EXPORT_SYMBOL vmlinux 0xaeef300f uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xaf1b4cbd scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xaf219067 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xaf286919 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait +EXPORT_SYMBOL vmlinux 0xaf39d395 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xaf3c87ee tcp_close +EXPORT_SYMBOL vmlinux 0xaf3ccab1 inet_add_offload +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf4639e6 simple_transaction_read +EXPORT_SYMBOL vmlinux 0xaf552ba8 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup +EXPORT_SYMBOL vmlinux 0xaf6e8942 from_kgid +EXPORT_SYMBOL vmlinux 0xafa7c531 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xafb644f6 d_add_ci +EXPORT_SYMBOL vmlinux 0xafe054ed tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xaff76147 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xaffd5bc1 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc +EXPORT_SYMBOL vmlinux 0xb007bfb7 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xb0205e4e serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove +EXPORT_SYMBOL vmlinux 0xb0478cc5 ns_capable +EXPORT_SYMBOL vmlinux 0xb05049e0 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xb052327c mmc_put_card +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb067a8f8 loop_register_transfer +EXPORT_SYMBOL vmlinux 0xb07ce494 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0xb0903f82 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0b068bc generic_read_dir +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0be6970 phy_init_eee +EXPORT_SYMBOL vmlinux 0xb0ca5b67 __sb_end_write +EXPORT_SYMBOL vmlinux 0xb0d09760 set_posix_acl +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0ee90de vfs_writev +EXPORT_SYMBOL vmlinux 0xb0f1ebc5 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0xb111bda9 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xb1222bb7 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb1351292 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xb14940a8 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0xb149dc94 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xb14b2e5a find_lock_entry +EXPORT_SYMBOL vmlinux 0xb14c977f inet_frags_fini +EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb15e885b kobject_del +EXPORT_SYMBOL vmlinux 0xb16122b4 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0xb161707b blk_requeue_request +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb165ef45 __irq_regs +EXPORT_SYMBOL vmlinux 0xb168985c __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xb16f57d6 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xb18d1c97 giveup_all +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c6e787 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xb1c7852f scsi_host_put +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1e698f7 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xb1fafe94 fget +EXPORT_SYMBOL vmlinux 0xb1ffb3da netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0xb2014586 f_setown +EXPORT_SYMBOL vmlinux 0xb201a52e md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xb21631ea kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xb228c053 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0xb22ca416 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xb2302a41 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xb2329f01 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xb23f4b0c nf_reinject +EXPORT_SYMBOL vmlinux 0xb25612de mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xb266db05 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb26dc7e4 simple_write_end +EXPORT_SYMBOL vmlinux 0xb2a2afac padata_free +EXPORT_SYMBOL vmlinux 0xb2a748b8 key_alloc +EXPORT_SYMBOL vmlinux 0xb2acc4cd __msr_check_and_clear +EXPORT_SYMBOL vmlinux 0xb2bd7f52 dev_mc_del +EXPORT_SYMBOL vmlinux 0xb2cc53d3 dm_table_get_md +EXPORT_SYMBOL vmlinux 0xb2da2084 pci_write_vpd +EXPORT_SYMBOL vmlinux 0xb2ecbd4c key_revoke +EXPORT_SYMBOL vmlinux 0xb2f1eb8d simple_pin_fs +EXPORT_SYMBOL vmlinux 0xb2fb0f2f nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xb3482e18 netlink_set_err +EXPORT_SYMBOL vmlinux 0xb35cb2bb forget_cached_acl +EXPORT_SYMBOL vmlinux 0xb363ade5 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xb368fb8b fscrypt_initialize +EXPORT_SYMBOL vmlinux 0xb3780b6e jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xb37a2cd2 key_reject_and_link +EXPORT_SYMBOL vmlinux 0xb3922484 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xb3a33d8c __i2c_transfer +EXPORT_SYMBOL vmlinux 0xb3b5f34b blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xb3bb1a83 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xb3c1d174 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3d9a8c4 iget5_locked +EXPORT_SYMBOL vmlinux 0xb3dbb856 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0xb3e3085f giveup_altivec +EXPORT_SYMBOL vmlinux 0xb3f4549b blk_queue_make_request +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb40bd841 dmam_pool_create +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb42e838e d_make_root +EXPORT_SYMBOL vmlinux 0xb431978a path_nosuid +EXPORT_SYMBOL vmlinux 0xb450ba93 dm_get_device +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class +EXPORT_SYMBOL vmlinux 0xb473e2c2 lockref_get +EXPORT_SYMBOL vmlinux 0xb47b083d __bforget +EXPORT_SYMBOL vmlinux 0xb48364ea ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xb48b270f eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xb4b68174 phy_attached_info +EXPORT_SYMBOL vmlinux 0xb4cdd2f7 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xb4de24de make_kuid +EXPORT_SYMBOL vmlinux 0xb4e5e1cb jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xb4ecb5b9 get_agp_version +EXPORT_SYMBOL vmlinux 0xb4ee85ad generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xb504c3b1 __d_drop +EXPORT_SYMBOL vmlinux 0xb5064eef dquot_alloc +EXPORT_SYMBOL vmlinux 0xb50818ad skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xb53c4ebe blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xb5436a20 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xb55b5391 blk_run_queue +EXPORT_SYMBOL vmlinux 0xb565450f simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xb56b6d3b blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb59dec74 mount_pseudo +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5bd8b00 poll_initwait +EXPORT_SYMBOL vmlinux 0xb5c22afc input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xb5cc3e5d neigh_event_ns +EXPORT_SYMBOL vmlinux 0xb5e454ab serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xb61a9e8d bdi_register +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb635db07 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xb64c0c20 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xb65c98fe jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xb6613c68 tcf_hash_check +EXPORT_SYMBOL vmlinux 0xb67235ff set_nlink +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb68d5929 nla_put_64bit +EXPORT_SYMBOL vmlinux 0xb6936c03 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6bbdfc9 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xb6fc1049 blk_start_queue_async +EXPORT_SYMBOL vmlinux 0xb70699c7 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb74a9372 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xb76070ea mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xb770be3e __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb779ad64 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xb7890d7e gen_new_estimator +EXPORT_SYMBOL vmlinux 0xb78aed92 block_write_full_page +EXPORT_SYMBOL vmlinux 0xb79a4e1a store_fp_state +EXPORT_SYMBOL vmlinux 0xb79f5c27 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0xb7c2ae92 scsi_register_interface +EXPORT_SYMBOL vmlinux 0xb7c4ec41 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d9b843 fence_add_callback +EXPORT_SYMBOL vmlinux 0xb7e55518 compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xb7e891be check_disk_size_change +EXPORT_SYMBOL vmlinux 0xb802c67a fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xb809be38 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xb80db9c2 ps2_init +EXPORT_SYMBOL vmlinux 0xb82cf540 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xb833c70f mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xb84f6e1f pci_claim_resource +EXPORT_SYMBOL vmlinux 0xb85eeb74 seq_escape +EXPORT_SYMBOL vmlinux 0xb864d4fe unregister_shrinker +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb874d461 dma_set_mask +EXPORT_SYMBOL vmlinux 0xb8aed3b3 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b4a2f8 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xb8bd6576 tty_port_destroy +EXPORT_SYMBOL vmlinux 0xb8e7bc05 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xb8eec98b del_timer +EXPORT_SYMBOL vmlinux 0xb8f0ec70 nf_log_unset +EXPORT_SYMBOL vmlinux 0xb915a215 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xb91e3bb6 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xb9249539 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xb9254a4c inet_addr_type +EXPORT_SYMBOL vmlinux 0xb9257993 wireless_spy_update +EXPORT_SYMBOL vmlinux 0xb92bb4ab pci_dev_get +EXPORT_SYMBOL vmlinux 0xb93894c3 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xb978b752 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xb97fa44b radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0xb9a69ab5 fscrypt_decrypt_bio_pages +EXPORT_SYMBOL vmlinux 0xb9a8e3b2 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xb9bb471a kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xb9cc80f0 __destroy_inode +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9eb6b26 tcp_poll +EXPORT_SYMBOL vmlinux 0xb9f72862 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xba06f97e skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xba2b71bd pci_get_class +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba6835fa sock_wmalloc +EXPORT_SYMBOL vmlinux 0xba879bb0 finish_no_open +EXPORT_SYMBOL vmlinux 0xba939d72 scsi_add_device +EXPORT_SYMBOL vmlinux 0xbac307f5 generic_listxattr +EXPORT_SYMBOL vmlinux 0xbaf7dc2f compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb138fff devm_ioport_map +EXPORT_SYMBOL vmlinux 0xbb1e667a pcim_enable_device +EXPORT_SYMBOL vmlinux 0xbb22c612 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xbb2df35b sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb363169 of_root +EXPORT_SYMBOL vmlinux 0xbb38b2b3 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0xbb494e7c finish_swait +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb61fe9a jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xbb86e325 netdev_features_change +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbba32afc xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0xbba9469b generic_make_request +EXPORT_SYMBOL vmlinux 0xbbb6b412 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xbbd521ec pci_get_device +EXPORT_SYMBOL vmlinux 0xbbde4b91 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0xbbf7397c dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xbc0a0cde blk_sync_queue +EXPORT_SYMBOL vmlinux 0xbc0c0a97 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xbc1d4a15 fscrypt_d_ops +EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0xbc37b784 component_match_add_release +EXPORT_SYMBOL vmlinux 0xbc7a5a7c mdiobus_write +EXPORT_SYMBOL vmlinux 0xbc8e85f1 param_ops_uint +EXPORT_SYMBOL vmlinux 0xbc92b898 proc_symlink +EXPORT_SYMBOL vmlinux 0xbca32472 pci_iomap_range +EXPORT_SYMBOL vmlinux 0xbcb5cce3 ps2_begin_command +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbccc3633 of_get_min_tck +EXPORT_SYMBOL vmlinux 0xbcdf2c39 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0xbceb928a dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 +EXPORT_SYMBOL vmlinux 0xbd04a5af kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xbd13bab2 __nla_reserve +EXPORT_SYMBOL vmlinux 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0xbd3eeb26 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbdb4c72d pci_release_region +EXPORT_SYMBOL vmlinux 0xbdbc4198 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xbde45677 elevator_exit +EXPORT_SYMBOL vmlinux 0xbdf3ad84 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xbe0cf11c thaw_bdev +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe395551 dquot_enable +EXPORT_SYMBOL vmlinux 0xbe421bbb skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xbe6398d8 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xbe6ada7d uuid_le_index +EXPORT_SYMBOL vmlinux 0xbeabda3c security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xbeb8bfe0 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf14d1f3 arp_send +EXPORT_SYMBOL vmlinux 0xbf171c9c lwtunnel_output +EXPORT_SYMBOL vmlinux 0xbf395e0a nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xbf4e0121 mmc_release_host +EXPORT_SYMBOL vmlinux 0xbf5e7976 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xbf7d04f1 xfrm_state_add +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8559aa of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf925c42 idr_init +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfabfe59 __debugger_iabr_match +EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfd342dc frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xbfd951a4 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc0310d4b netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xc034d8b7 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xc03e273b devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xc062f51c mb_cache_entry_delete_block +EXPORT_SYMBOL vmlinux 0xc066db5f ps2_handle_response +EXPORT_SYMBOL vmlinux 0xc06a4f34 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL vmlinux 0xc0904360 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0bbe934 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xc0d4a967 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xc0e234ba of_n_addr_cells +EXPORT_SYMBOL vmlinux 0xc0e41baf __skb_get_hash +EXPORT_SYMBOL vmlinux 0xc0e61f0a clkdev_alloc +EXPORT_SYMBOL vmlinux 0xc0f65ea9 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xc120094a dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xc13a10dc flex_array_alloc +EXPORT_SYMBOL vmlinux 0xc14ea779 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xc1568135 get_gendisk +EXPORT_SYMBOL vmlinux 0xc1568ef5 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit +EXPORT_SYMBOL vmlinux 0xc16728c6 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xc16f3e5a seq_lseek +EXPORT_SYMBOL vmlinux 0xc19b1842 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xc1a937ca xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xc1ab3ced kernel_getsockopt +EXPORT_SYMBOL vmlinux 0xc1bbab5b jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1ea027a iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xc20220cb inet_bind +EXPORT_SYMBOL vmlinux 0xc21ed936 get_cached_acl +EXPORT_SYMBOL vmlinux 0xc2252705 seq_release +EXPORT_SYMBOL vmlinux 0xc23fca6f input_set_abs_params +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc247e039 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xc25218a8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0xc265df26 inode_permission +EXPORT_SYMBOL vmlinux 0xc270a2dd vm_map_ram +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2a767f0 nobh_write_begin +EXPORT_SYMBOL vmlinux 0xc2db2987 pci_dev_driver +EXPORT_SYMBOL vmlinux 0xc2e1f847 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0xc2e4a212 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc31dee63 qdisc_reset +EXPORT_SYMBOL vmlinux 0xc3294f95 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xc3542cb9 I_BDEV +EXPORT_SYMBOL vmlinux 0xc35faa93 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0xc364ae22 iomem_resource +EXPORT_SYMBOL vmlinux 0xc36c6c48 write_cache_pages +EXPORT_SYMBOL vmlinux 0xc3728267 max8998_read_reg +EXPORT_SYMBOL vmlinux 0xc379a8e7 seq_hex_dump +EXPORT_SYMBOL vmlinux 0xc37df91f __nla_put_64bit +EXPORT_SYMBOL vmlinux 0xc380c53e insert_inode_locked +EXPORT_SYMBOL vmlinux 0xc398dccc fb_class +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3db917f netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xc3e3d2cc blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xc3e65acf sk_capable +EXPORT_SYMBOL vmlinux 0xc4115bb5 ioread64be +EXPORT_SYMBOL vmlinux 0xc4282d38 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xc433c567 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xc4453650 inode_get_bytes +EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress +EXPORT_SYMBOL vmlinux 0xc48af0d3 d_obtain_root +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4aed0eb alloc_fddidev +EXPORT_SYMBOL vmlinux 0xc4ba6eb5 vme_master_mmap +EXPORT_SYMBOL vmlinux 0xc4cecbb1 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xc4d90e8c qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xc4dc5a82 flush_tlb_page +EXPORT_SYMBOL vmlinux 0xc4ec55de mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xc529ea9c __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xc53b8877 scsi_register +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc578adac __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xc59758a8 blk_fetch_request +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5a396fd udplite_table +EXPORT_SYMBOL vmlinux 0xc5ac8626 single_open +EXPORT_SYMBOL vmlinux 0xc5b25e36 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xc5c6c4a8 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xc5cb2010 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xc5d31ff4 tty_lock +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5e2b652 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0xc5e442dc unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xc5e6539e nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc5ff0b1a dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xc6161030 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xc626c965 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xc6295665 tcp_proc_register +EXPORT_SYMBOL vmlinux 0xc62deffa compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc637556f __module_get +EXPORT_SYMBOL vmlinux 0xc63ae3b0 tso_build_hdr +EXPORT_SYMBOL vmlinux 0xc652d6ea __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc662ce4e unregister_binfmt +EXPORT_SYMBOL vmlinux 0xc663b075 __ioremap +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc6b15d17 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6ce29f6 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xc6d5793c netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xc6ea0107 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xc6f26ffc validate_sp +EXPORT_SYMBOL vmlinux 0xc6f6f28c security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xc70ef5d6 blk_delay_queue +EXPORT_SYMBOL vmlinux 0xc712f90a current_fs_time +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc72a61d8 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xc7447b51 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xc747ccab neigh_update +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc75814d9 bio_map_kern +EXPORT_SYMBOL vmlinux 0xc759a2f2 pci_find_hose_for_OF_device +EXPORT_SYMBOL vmlinux 0xc75f3aae atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xc768de19 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc7705b75 __serio_register_port +EXPORT_SYMBOL vmlinux 0xc774b07c netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xc77eb541 reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7898275 flex_array_shrink +EXPORT_SYMBOL vmlinux 0xc78ddd4f pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a306e9 compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7bb7c3c d_rehash +EXPORT_SYMBOL vmlinux 0xc7bfe605 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0xc7c8d408 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xc81462f3 softnet_data +EXPORT_SYMBOL vmlinux 0xc81e2abf current_in_userns +EXPORT_SYMBOL vmlinux 0xc82db00d xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc8571bcb idr_for_each +EXPORT_SYMBOL vmlinux 0xc871f749 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc87b4b23 pci_choose_state +EXPORT_SYMBOL vmlinux 0xc88b1579 param_get_ulong +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc89452c2 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8ad3c50 vme_slave_request +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8ce3588 ps2_command +EXPORT_SYMBOL vmlinux 0xc8da99b4 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xc8fc63d1 param_ops_bool +EXPORT_SYMBOL vmlinux 0xc901915d down_write_trylock +EXPORT_SYMBOL vmlinux 0xc908bd74 cur_cpu_spec +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc91fdf64 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xc9295959 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xc94106e3 find_vma +EXPORT_SYMBOL vmlinux 0xc94a9207 of_dev_put +EXPORT_SYMBOL vmlinux 0xc9505368 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xc954dd88 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xc95ebb1e path_put +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc96e5f8e pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xc9757234 serio_reconnect +EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc9857ce5 padata_do_serial +EXPORT_SYMBOL vmlinux 0xc98af12d d_splice_alias +EXPORT_SYMBOL vmlinux 0xc98b7de8 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0xc998a379 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9cf53d1 bio_split +EXPORT_SYMBOL vmlinux 0xc9f4e64e netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xc9fb4b05 wake_up_process +EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get +EXPORT_SYMBOL vmlinux 0xca3001ba tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state +EXPORT_SYMBOL vmlinux 0xca42f03e rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0xca539de7 dst_destroy +EXPORT_SYMBOL vmlinux 0xca575f1f scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xca57c0cd napi_consume_skb +EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent +EXPORT_SYMBOL vmlinux 0xca609192 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xca778d2d ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca976914 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xcab2b2ea __sk_dst_check +EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty +EXPORT_SYMBOL vmlinux 0xcad52052 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb041df7 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xcb0901cb param_set_byte +EXPORT_SYMBOL vmlinux 0xcb26551f netdev_change_features +EXPORT_SYMBOL vmlinux 0xcb382967 param_get_string +EXPORT_SYMBOL vmlinux 0xcb3c8a7d ___ratelimit +EXPORT_SYMBOL vmlinux 0xcb3fd9ea pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xcb617869 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xcb65fe6e __vfs_read +EXPORT_SYMBOL vmlinux 0xcb76c885 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0xcb79a7c5 sock_no_getname +EXPORT_SYMBOL vmlinux 0xcb839e4c udp_set_csum +EXPORT_SYMBOL vmlinux 0xcb85e990 backlight_force_update +EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcba6e6af nf_afinfo +EXPORT_SYMBOL vmlinux 0xcbab17bb __blk_end_request +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc2e63c input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xcbc84b8f udp6_csum_init +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbebc3bf d_find_alias +EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xcc190b8a set_wb_congested +EXPORT_SYMBOL vmlinux 0xcc1bb428 vme_slot_num +EXPORT_SYMBOL vmlinux 0xcc1d89af xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc41eed4 dquot_scan_active +EXPORT_SYMBOL vmlinux 0xcc4c2557 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0xcc4cad64 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc745315 eth_header_cache +EXPORT_SYMBOL vmlinux 0xcc928e5f mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xcc9ba162 nvm_submit_io +EXPORT_SYMBOL vmlinux 0xccaa9249 sock_wfree +EXPORT_SYMBOL vmlinux 0xccac0029 fb_set_cmap +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccc313dc kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0xccc99d14 input_free_device +EXPORT_SYMBOL vmlinux 0xcce95591 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xcd03df5e resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xcd0c3f77 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd59c623 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xcd6ad839 tty_throttle +EXPORT_SYMBOL vmlinux 0xcd8302f9 vmap +EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xcd96cdeb devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xcdc0850d delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdd21c42 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xcde8fa75 import_single_range +EXPORT_SYMBOL vmlinux 0xcdf1689d follow_up +EXPORT_SYMBOL vmlinux 0xcdf4288b bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xcdf8c572 udplite_prot +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce3b3f09 profile_pc +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce4f34b0 unload_nls +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce61fbdd napi_disable +EXPORT_SYMBOL vmlinux 0xce728a56 input_close_device +EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift +EXPORT_SYMBOL vmlinux 0xce7a9fbf page_get_link +EXPORT_SYMBOL vmlinux 0xce7bfe70 vm_brk +EXPORT_SYMBOL vmlinux 0xce867ede dst_release +EXPORT_SYMBOL vmlinux 0xce89c8d0 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xce92d637 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xce9c9520 sg_miter_skip +EXPORT_SYMBOL vmlinux 0xcea4744a generic_getxattr +EXPORT_SYMBOL vmlinux 0xcea67528 ab3100_event_register +EXPORT_SYMBOL vmlinux 0xcea95d24 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free +EXPORT_SYMBOL vmlinux 0xcecb15d1 get_io_context +EXPORT_SYMBOL vmlinux 0xced777cb proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xcee061f1 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xcef10cd6 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcefdd79b gen_pool_alloc_algo +EXPORT_SYMBOL vmlinux 0xcf1bd94e kernel_listen +EXPORT_SYMBOL vmlinux 0xcf237dd7 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xcf28218a nvm_register +EXPORT_SYMBOL vmlinux 0xcf33f6d3 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xcf3811d2 fscrypt_fname_usr_to_disk +EXPORT_SYMBOL vmlinux 0xcf5203bc __pagevec_release +EXPORT_SYMBOL vmlinux 0xcf5288bd vfs_unlink +EXPORT_SYMBOL vmlinux 0xcf799a15 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xcf7b2c78 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xcf8a9fa7 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xcf9c6aab neigh_table_init +EXPORT_SYMBOL vmlinux 0xcfd2a809 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xd024f4eb ip_getsockopt +EXPORT_SYMBOL vmlinux 0xd0269a2b mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xd02b73d6 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xd02bc8d3 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xd0342b47 rfkill_alloc +EXPORT_SYMBOL vmlinux 0xd0402e0e poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0xd049065d abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0xd0568a29 simple_get_link +EXPORT_SYMBOL vmlinux 0xd062088b param_set_invbool +EXPORT_SYMBOL vmlinux 0xd06cebc0 dev_disable_lro +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd07d86da of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0xd07f7b41 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xd083b324 netif_carrier_off +EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a3f03e ps2_drain +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0aaec99 sk_dst_check +EXPORT_SYMBOL vmlinux 0xd0ce3f66 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xd0dd8b13 blk_start_queue +EXPORT_SYMBOL vmlinux 0xd0eae562 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0ee5487 file_update_time +EXPORT_SYMBOL vmlinux 0xd0f270e1 km_state_notify +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd11a02e4 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xd12ecc28 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xd133e53e input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xd16dc492 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd1b44019 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xd1b5ebea pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xd1be011b mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xd1c18be6 dquot_disable +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1dad18d udp_seq_open +EXPORT_SYMBOL vmlinux 0xd1e7d322 genlmsg_put +EXPORT_SYMBOL vmlinux 0xd1ea0551 disk_stack_limits +EXPORT_SYMBOL vmlinux 0xd1fa7b90 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0xd20e902a ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xd210bfb7 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xd2121939 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xd24222e7 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xd2453c59 scsi_remove_target +EXPORT_SYMBOL vmlinux 0xd2493cac dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd25f65d9 key_unlink +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd29daba3 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xd29ed9bf fscrypt_process_policy +EXPORT_SYMBOL vmlinux 0xd2a1513f backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc +EXPORT_SYMBOL vmlinux 0xd2b68b6f compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2ec1eba ip_check_defrag +EXPORT_SYMBOL vmlinux 0xd3172d1a input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd3381b45 sk_reset_timer +EXPORT_SYMBOL vmlinux 0xd3518347 kobject_init +EXPORT_SYMBOL vmlinux 0xd362ef51 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd378067c dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xd388e488 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xd38bd39a __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3e2b2c4 sync_blockdev +EXPORT_SYMBOL vmlinux 0xd3eb5f3c jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xd3f49ae4 netlink_ack +EXPORT_SYMBOL vmlinux 0xd3f68311 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xd418b18f tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xd437f9b5 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm +EXPORT_SYMBOL vmlinux 0xd45ca13c pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd490c440 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0xd4ae2037 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xd4c18351 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xd4dfde6f mmc_add_host +EXPORT_SYMBOL vmlinux 0xd4e45dba dma_async_device_register +EXPORT_SYMBOL vmlinux 0xd4e4eed7 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0xd4e88013 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xd4ea9fc2 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0xd4f15051 napi_get_frags +EXPORT_SYMBOL vmlinux 0xd500ee88 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xd504119b blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0xd51a2b82 seq_open +EXPORT_SYMBOL vmlinux 0xd520fb38 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd53b6f61 of_n_size_cells +EXPORT_SYMBOL vmlinux 0xd5591d0c get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xd567e036 blk_recount_segments +EXPORT_SYMBOL vmlinux 0xd569f5f7 seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xd58d45d3 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xd59118da simple_rename +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd59ae153 write_one_page +EXPORT_SYMBOL vmlinux 0xd5a5baf3 agp_generic_enable +EXPORT_SYMBOL vmlinux 0xd5c382d0 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xd5dac79a mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0xd5e2d3a2 read_cache_page +EXPORT_SYMBOL vmlinux 0xd5ed7bf2 n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0xd5f5451a nf_log_packet +EXPORT_SYMBOL vmlinux 0xd5fd2db2 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd60753de key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xd6162df4 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd61be35e dev_err +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd6345838 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xd6432715 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xd648d891 kfree_skb +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd64d4f06 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xd670ae76 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xd68196ae mount_nodev +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd689c517 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0xd68ea93d rt_dst_alloc +EXPORT_SYMBOL vmlinux 0xd696a10c ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xd69d9376 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xd69ef97d posix_acl_alloc +EXPORT_SYMBOL vmlinux 0xd69f1dfd __napi_complete +EXPORT_SYMBOL vmlinux 0xd6b02f80 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0xd6dcaeae devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xd6e7cef1 blk_init_queue +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6ee88ce __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xd6f7dfc6 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xd6fd4053 __arch_hweight32 +EXPORT_SYMBOL vmlinux 0xd70a7e7f neigh_app_ns +EXPORT_SYMBOL vmlinux 0xd7161639 tty_kref_put +EXPORT_SYMBOL vmlinux 0xd719d89b mem_map +EXPORT_SYMBOL vmlinux 0xd72265c0 serio_open +EXPORT_SYMBOL vmlinux 0xd72c0613 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xd741ad4c __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xd75219b3 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd761a383 ioremap_prot +EXPORT_SYMBOL vmlinux 0xd78313c6 __pci_register_driver +EXPORT_SYMBOL vmlinux 0xd78f00db inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xd7aa98da build_skb +EXPORT_SYMBOL vmlinux 0xd7b79a40 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xd7c318c1 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xd7c5068b inet6_offloads +EXPORT_SYMBOL vmlinux 0xd7c7d4fd mach_corenet_generic +EXPORT_SYMBOL vmlinux 0xd7c942b6 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7d3b95a phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xd7d58f38 km_new_mapping +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ec49be phy_drivers_register +EXPORT_SYMBOL vmlinux 0xd7f57255 radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xd81ee1bd __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xd82e0875 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xd8348a0c __devm_request_region +EXPORT_SYMBOL vmlinux 0xd84bb418 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xd8646379 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xd86bce82 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xd86cb15e jbd2_journal_inode_add_write +EXPORT_SYMBOL vmlinux 0xd86d9ae9 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xd88ec4c2 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b1e4f8 fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xd8ddb87d kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8e68e60 skb_pull +EXPORT_SYMBOL vmlinux 0xd8e72485 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0xd92214d2 inet_stream_connect +EXPORT_SYMBOL vmlinux 0xd923c175 register_quota_format +EXPORT_SYMBOL vmlinux 0xd9279aab register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xd928d697 __free_pages +EXPORT_SYMBOL vmlinux 0xd9505c74 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xd97aa220 try_to_release_page +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd98bd665 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xd9d0c5f7 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xd9d8b731 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9df9c66 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0xda17014a nf_log_trace +EXPORT_SYMBOL vmlinux 0xda19d374 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xda2f712e blk_run_queue_async +EXPORT_SYMBOL vmlinux 0xda33e60c gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda4aa8e4 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0xda70b637 remove_arg_zero +EXPORT_SYMBOL vmlinux 0xda728de1 fscrypt_get_ctx +EXPORT_SYMBOL vmlinux 0xda74271b __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0xda77d8bd __init_rwsem +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda7dce7b pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xdaa83aba agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xdab02190 __posix_acl_create +EXPORT_SYMBOL vmlinux 0xdabc1ea8 fsl_lbc_find +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdac545b9 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xdad4bd4a dev_get_by_index +EXPORT_SYMBOL vmlinux 0xdad4ca0e tty_port_open +EXPORT_SYMBOL vmlinux 0xdad7adff dqstats +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdb01198e fsl_upm_find +EXPORT_SYMBOL vmlinux 0xdb0646ea pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xdb10328e pci_iounmap +EXPORT_SYMBOL vmlinux 0xdb2d53fe __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xdb5458f7 powerpc_debugfs_root +EXPORT_SYMBOL vmlinux 0xdb6583e5 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb74ae35 kernel_read +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb9bc047 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0xdba41b5a jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xdbd33240 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xdbd6732b radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xdbddcee7 block_write_begin +EXPORT_SYMBOL vmlinux 0xdbe50f6c scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xdbef1547 dev_printk +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc0b3bed inode_dio_wait +EXPORT_SYMBOL vmlinux 0xdc0e5f95 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc281f9e sk_ns_capable +EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc6d721a udp_proc_register +EXPORT_SYMBOL vmlinux 0xdc9498dd down +EXPORT_SYMBOL vmlinux 0xdca989ad netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xdcae59ec sk_stream_error +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdcc54925 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xdcf5a902 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xdd10f20b devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd479d06 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd7c99f6 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xdd8034b0 generic_setlease +EXPORT_SYMBOL vmlinux 0xdd80fc69 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer +EXPORT_SYMBOL vmlinux 0xdd955144 __debugger +EXPORT_SYMBOL vmlinux 0xddb1d23c mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xddb3769b lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xddea41e8 vfs_create +EXPORT_SYMBOL vmlinux 0xde0cced3 __dst_free +EXPORT_SYMBOL vmlinux 0xde3bed76 block_truncate_page +EXPORT_SYMBOL vmlinux 0xde423c07 tty_port_hangup +EXPORT_SYMBOL vmlinux 0xde43ca7e register_cdrom +EXPORT_SYMBOL vmlinux 0xde468fcb nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0xde47a8a3 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xde613bb5 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0xde6cade4 complete_request_key +EXPORT_SYMBOL vmlinux 0xde6f0fda gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xde817c29 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xde84c2d8 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xde863676 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xde8c6621 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdea06e19 drop_nlink +EXPORT_SYMBOL vmlinux 0xdef3a165 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0xdefd45df nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0xdf0bdc35 flush_tlb_mm +EXPORT_SYMBOL vmlinux 0xdf179b75 security_d_instantiate +EXPORT_SYMBOL vmlinux 0xdf18c1a0 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2fd1db request_key_async +EXPORT_SYMBOL vmlinux 0xdf40bea0 eth_gro_complete +EXPORT_SYMBOL vmlinux 0xdf426361 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf6c80c8 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdfa27b00 bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0xdfa54086 follow_down_one +EXPORT_SYMBOL vmlinux 0xdfa802a9 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xdfae8bb5 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xdfe31b24 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdfedd1d5 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe00179b7 page_mapping +EXPORT_SYMBOL vmlinux 0xe00353f0 dquot_acquire +EXPORT_SYMBOL vmlinux 0xe04919c7 dev_uc_init +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe0546629 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xe05c9fc3 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe06c32bf ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe07c0519 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe0954067 block_write_end +EXPORT_SYMBOL vmlinux 0xe09a0453 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0d8906c inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0xe0d9d5e8 devm_memunmap +EXPORT_SYMBOL vmlinux 0xe0db0af2 nd_device_notify +EXPORT_SYMBOL vmlinux 0xe0e5376a scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xe1147f96 ip_defrag +EXPORT_SYMBOL vmlinux 0xe12739a0 tcp_disconnect +EXPORT_SYMBOL vmlinux 0xe12d20ce mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe1477040 pci_match_id +EXPORT_SYMBOL vmlinux 0xe14c1bb2 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe1a86808 __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe1bd7640 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0xe1e097e3 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe220ceb8 __debugger_sstep +EXPORT_SYMBOL vmlinux 0xe22272d1 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xe22bc707 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0xe22c0e25 d_exact_alias +EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL vmlinux 0xe23f1b23 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe2622ac9 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xe26bbdb3 seq_dentry +EXPORT_SYMBOL vmlinux 0xe28a2150 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe29f46d7 d_delete +EXPORT_SYMBOL vmlinux 0xe2ae7a5d simple_transaction_set +EXPORT_SYMBOL vmlinux 0xe2b54986 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock +EXPORT_SYMBOL vmlinux 0xe2d292a6 fb_deferred_io_mmap +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e04fed ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0xe2ea16a9 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2f5dc77 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xe30336d3 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xe309e46f single_release +EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0xe32f5464 force_sig +EXPORT_SYMBOL vmlinux 0xe332b768 thaw_super +EXPORT_SYMBOL vmlinux 0xe33c29bb devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xe37af30f __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xe393bf7c neigh_direct_output +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3a8ae37 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe4050e14 generic_removexattr +EXPORT_SYMBOL vmlinux 0xe40e8b7c pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xe4251c1c xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xe42a10a3 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xe42a369e security_path_unlink +EXPORT_SYMBOL vmlinux 0xe4315639 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xe435bf03 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xe44f04ba devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xe4555bd0 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xe47cf239 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xe480936e proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe48838f8 uart_match_port +EXPORT_SYMBOL vmlinux 0xe48a432b pci_get_subsys +EXPORT_SYMBOL vmlinux 0xe492196d pci_disable_device +EXPORT_SYMBOL vmlinux 0xe49a5f3e pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xe4a9fa0b agp_put_bridge +EXPORT_SYMBOL vmlinux 0xe4ac8369 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0xe4ae7c63 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xe4b5f8b8 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xe4ce930d scsi_device_resume +EXPORT_SYMBOL vmlinux 0xe4dc9f77 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe4eb8ddb pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xe4ec4954 iowrite64be +EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe4ff3a7a __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xe520004f nf_log_register +EXPORT_SYMBOL vmlinux 0xe521b740 blk_finish_request +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe5351aa9 proc_remove +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe58acba1 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xe58bf60b cad_pid +EXPORT_SYMBOL vmlinux 0xe58d66ff scsi_target_resume +EXPORT_SYMBOL vmlinux 0xe59912a5 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xe59ab4fa make_kgid +EXPORT_SYMBOL vmlinux 0xe5b12272 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5d4aaa9 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe601349d devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xe6125572 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xe63259dd agp_enable +EXPORT_SYMBOL vmlinux 0xe63e529f pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xe6421443 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xe64bfa90 nf_hook_slow +EXPORT_SYMBOL vmlinux 0xe6501c0e xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xe65a6442 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xe6607b05 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xe662c783 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xe66452ab dql_init +EXPORT_SYMBOL vmlinux 0xe670aee6 tcp_connect +EXPORT_SYMBOL vmlinux 0xe677b147 input_register_handle +EXPORT_SYMBOL vmlinux 0xe6810e5a memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xe68dcbaf of_get_cpu_node +EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe69aa536 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xe69f1db9 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xe6a14903 kobject_add +EXPORT_SYMBOL vmlinux 0xe6a25892 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xe6bbd534 get_pci_dma_ops +EXPORT_SYMBOL vmlinux 0xe6de54f2 setattr_copy +EXPORT_SYMBOL vmlinux 0xe6e8bf9e __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xe700a636 scsi_device_put +EXPORT_SYMBOL vmlinux 0xe7034523 max8925_reg_write +EXPORT_SYMBOL vmlinux 0xe71ae000 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xe71b1478 mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0xe733b221 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xe741279b devm_gpio_free +EXPORT_SYMBOL vmlinux 0xe747685f bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0xe7499a2e __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xe75107f7 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0xe7586df8 scsi_remove_device +EXPORT_SYMBOL vmlinux 0xe77e14fe nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xe792694e sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xe795fc02 mdio_device_free +EXPORT_SYMBOL vmlinux 0xe7972647 ip6_xmit +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7a83c79 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xe7b7c14a rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xe7bd5720 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xe7c0ddc1 icmpv6_send +EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe816cb7a dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8281647 icmp_send +EXPORT_SYMBOL vmlinux 0xe837cfd6 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xe83e70da phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xe84efeb9 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xe868fc3e dput +EXPORT_SYMBOL vmlinux 0xe88df8de sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xe89c0b79 from_kgid_munged +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8afcfa2 blk_rq_init +EXPORT_SYMBOL vmlinux 0xe8b9993c nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xe8be4504 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8c438f3 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xe8cc9de2 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91c7107 md_register_thread +EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next +EXPORT_SYMBOL vmlinux 0xe93eb833 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe955b05a sys_imageblit +EXPORT_SYMBOL vmlinux 0xe96349c7 netdev_crit +EXPORT_SYMBOL vmlinux 0xe9747fcf __check_sticky +EXPORT_SYMBOL vmlinux 0xe98de785 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xe98e2c45 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xe9a2449f of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0xe9bb963b tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xe9c12947 notify_change +EXPORT_SYMBOL vmlinux 0xe9c6039a sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xe9ea4d70 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xe9ec2d4e follow_pfn +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea1f950e d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0xea2955c9 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xea4c8dd9 downgrade_write +EXPORT_SYMBOL vmlinux 0xea54e634 of_match_node +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea7ff9e8 set_device_ro +EXPORT_SYMBOL vmlinux 0xea8b550a tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xeac14815 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xeac4c870 filemap_fault +EXPORT_SYMBOL vmlinux 0xead35d9b sock_no_accept +EXPORT_SYMBOL vmlinux 0xeaea59e1 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xeb194c59 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xeb322c14 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb378f89 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb87d51b arp_tbl +EXPORT_SYMBOL vmlinux 0xeba049fc flush_icache_user_range +EXPORT_SYMBOL vmlinux 0xebaf9bab nd_device_unregister +EXPORT_SYMBOL vmlinux 0xebb18b05 __quota_error +EXPORT_SYMBOL vmlinux 0xebe6e018 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xec263696 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec5fedf2 i2c_verify_client +EXPORT_SYMBOL vmlinux 0xec72f0c4 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xecae0762 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xecbb926f xor_altivec_3 +EXPORT_SYMBOL vmlinux 0xecd982a2 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecfc6bf6 poll_freewait +EXPORT_SYMBOL vmlinux 0xed022892 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0xed130317 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xed1d57ca skb_dequeue +EXPORT_SYMBOL vmlinux 0xed30b40d xfrm_lookup +EXPORT_SYMBOL vmlinux 0xed4d3fcb get_unmapped_area +EXPORT_SYMBOL vmlinux 0xed4f976a agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed69a567 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0xed79b31a neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xed820132 fput +EXPORT_SYMBOL vmlinux 0xed8b0ace blk_peek_request +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedac6926 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc39b07 to_nd_btt +EXPORT_SYMBOL vmlinux 0xedd0cd89 radix_tree_delete +EXPORT_SYMBOL vmlinux 0xedd3d4f0 dquot_get_state +EXPORT_SYMBOL vmlinux 0xedd7c04d vfs_fsync +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xedfbde19 __frontswap_load +EXPORT_SYMBOL vmlinux 0xee08a3f9 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee51cfc4 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xee659d19 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0xee70ff26 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0xee712e19 mntput +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee9d81c6 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeb03031 pagecache_get_page +EXPORT_SYMBOL vmlinux 0xeecaecfa sock_alloc_file +EXPORT_SYMBOL vmlinux 0xeedb3e2b input_unregister_device +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xef0fb17a __bio_clone_fast +EXPORT_SYMBOL vmlinux 0xef2bc8e8 netdev_all_lower_get_next_rcu +EXPORT_SYMBOL vmlinux 0xef591a23 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xef5b218d dev_set_group +EXPORT_SYMBOL vmlinux 0xef6f7d04 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xef7a736e rt6_lookup +EXPORT_SYMBOL vmlinux 0xef8b217d __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xef8da008 migrate_page +EXPORT_SYMBOL vmlinux 0xef8e2511 phy_attach_direct +EXPORT_SYMBOL vmlinux 0xefb47df7 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xefc3488d cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefd2f099 drop_super +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefde1bbe flush_dcache_range +EXPORT_SYMBOL vmlinux 0xefec7939 read_dev_sector +EXPORT_SYMBOL vmlinux 0xeff777c9 gen_pool_free +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf00bc5bd xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xf00e0ea6 uart_add_one_port +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf01bbdde jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xf0333e75 alloc_fcdev +EXPORT_SYMBOL vmlinux 0xf0462cbf __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xf04b7595 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf066e8e3 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xf07fe9a0 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf0951a8e xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0a316bb tcf_action_exec +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0fc75c1 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf11bf53e i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible +EXPORT_SYMBOL vmlinux 0xf12f9400 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xf1343fff skb_copy_expand +EXPORT_SYMBOL vmlinux 0xf1349228 swake_up_locked +EXPORT_SYMBOL vmlinux 0xf13e5eef inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xf146a793 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf16b2f48 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xf183189b __ioremap_at +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1dcdd59 mdiobus_scan +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1ffbd9a proc_set_user +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf20edda5 i2c_master_recv +EXPORT_SYMBOL vmlinux 0xf215d8c9 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xf2196742 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0xf2286677 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xf22881e8 lg_local_lock +EXPORT_SYMBOL vmlinux 0xf238ad81 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xf23f11ee dump_emit +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf25e7a61 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xf266a1ed of_get_child_by_name +EXPORT_SYMBOL vmlinux 0xf26a0c54 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xf270911d of_match_device +EXPORT_SYMBOL vmlinux 0xf28b1bd5 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0xf29bac9b lock_sock_fast +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2d0ed07 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xf2d41f7a agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0xf2deea6c fget_raw +EXPORT_SYMBOL vmlinux 0xf2e9de52 path_get +EXPORT_SYMBOL vmlinux 0xf3011f81 pci_save_state +EXPORT_SYMBOL vmlinux 0xf306e9d4 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf322a206 bit_waitqueue +EXPORT_SYMBOL vmlinux 0xf32552df input_register_handler +EXPORT_SYMBOL vmlinux 0xf3285540 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34a47a0 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf3561c4a mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xf35a5ad0 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xf3892c13 dev_activate +EXPORT_SYMBOL vmlinux 0xf389e562 fscrypt_restore_control_page +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf392d1d5 security_path_mknod +EXPORT_SYMBOL vmlinux 0xf3ae88a6 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xf3ca13e4 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xf3cc2291 pci_pme_active +EXPORT_SYMBOL vmlinux 0xf3de3c3d input_allocate_device +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3f1ba4f pcibios_align_resource +EXPORT_SYMBOL vmlinux 0xf3f48d95 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xf40341ad uart_get_divisor +EXPORT_SYMBOL vmlinux 0xf4084a84 cont_write_begin +EXPORT_SYMBOL vmlinux 0xf425500c vga_client_register +EXPORT_SYMBOL vmlinux 0xf4267508 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xf441877f fence_array_create +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf4533328 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xf453a8f8 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xf461123c abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0xf464b9b3 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xf46fec3a writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xf472017a swake_up_all +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4768125 netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0xf49a2d69 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xf4b9123b elv_rb_add +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4c742f1 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xf4da2e4e pci_scan_bus +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f41369 revalidate_disk +EXPORT_SYMBOL vmlinux 0xf4f7dd17 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0xf513f50a proc_set_size +EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xf51bf88b nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf51f9d96 rtnl_notify +EXPORT_SYMBOL vmlinux 0xf5222143 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0xf5297240 set_security_override +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf5400443 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0xf54a7616 proc_create_data +EXPORT_SYMBOL vmlinux 0xf552f389 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xf55b3b3d __arch_hweight16 +EXPORT_SYMBOL vmlinux 0xf5674de5 free_user_ns +EXPORT_SYMBOL vmlinux 0xf5777aac mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xf57bf20f vga_get +EXPORT_SYMBOL vmlinux 0xf5879cd0 bio_put +EXPORT_SYMBOL vmlinux 0xf5968281 i2c_release_client +EXPORT_SYMBOL vmlinux 0xf599a0bc file_ns_capable +EXPORT_SYMBOL vmlinux 0xf59ee7b2 agp_backend_release +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io +EXPORT_SYMBOL vmlinux 0xf5b30c1d pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5ef2a2b lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xf5f02e39 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xf5fab1c6 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xf61f1ca3 local_flush_tlb_mm +EXPORT_SYMBOL vmlinux 0xf63a38be __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xf641c036 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xf64eae47 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xf6631b86 simple_empty +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf67bfd73 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf6aa8602 pci_enable_msix +EXPORT_SYMBOL vmlinux 0xf6d4167b phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xf6d5cb88 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f5416d ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf719d92a csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xf74b42fa user_path_create +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf77ef9d3 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xf785897f nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0xf790176a param_set_uint +EXPORT_SYMBOL vmlinux 0xf79100bd blk_queue_bounce +EXPORT_SYMBOL vmlinux 0xf7a76b0a textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xf7b59227 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0xf7b5f2d7 agp_bind_memory +EXPORT_SYMBOL vmlinux 0xf7b611f3 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xf7cdc736 clkdev_add +EXPORT_SYMBOL vmlinux 0xf7d40ff1 tcf_hash_create +EXPORT_SYMBOL vmlinux 0xf7d59e1e blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xf7e009a7 inc_node_state +EXPORT_SYMBOL vmlinux 0xf800b19c _dev_info +EXPORT_SYMBOL vmlinux 0xf80f98b4 genl_unregister_family +EXPORT_SYMBOL vmlinux 0xf81103ea radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf829b63b clone_cred +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf850010b vfs_getattr +EXPORT_SYMBOL vmlinux 0xf8536c52 register_qdisc +EXPORT_SYMBOL vmlinux 0xf861e2e5 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xf89a3c85 PageMovable +EXPORT_SYMBOL vmlinux 0xf89d4aad scsi_execute +EXPORT_SYMBOL vmlinux 0xf89de262 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0xf8a923a7 bioset_create +EXPORT_SYMBOL vmlinux 0xf8b7b3b1 param_get_ushort +EXPORT_SYMBOL vmlinux 0xf8bb6edf radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0xf8bccddd ip_ct_attach +EXPORT_SYMBOL vmlinux 0xf8c7b97f __mdiobus_register +EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0xf8dbce51 mutex_lock +EXPORT_SYMBOL vmlinux 0xf8e91f70 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf8f2e044 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xf9109feb netif_skb_features +EXPORT_SYMBOL vmlinux 0xf914d6b6 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0xf922702b mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xf9228003 get_immrbase +EXPORT_SYMBOL vmlinux 0xf9430439 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xf96e0a01 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0xf99201b6 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9e36e74 d_add +EXPORT_SYMBOL vmlinux 0xf9ea42b3 dquot_quota_off +EXPORT_SYMBOL vmlinux 0xf9eda761 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5bcf35 mod_timer +EXPORT_SYMBOL vmlinux 0xfa628210 pci_enable_device +EXPORT_SYMBOL vmlinux 0xfa78bc1e sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xfa7c4e3c genphy_read_status +EXPORT_SYMBOL vmlinux 0xfa8fd1e2 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xfab53e89 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfae352da clk_add_alias +EXPORT_SYMBOL vmlinux 0xfae3c5b7 dev_mc_init +EXPORT_SYMBOL vmlinux 0xfaea2744 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xfb14b0e8 dquot_free_inode +EXPORT_SYMBOL vmlinux 0xfb157eb0 bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0xfb235e24 nobh_write_end +EXPORT_SYMBOL vmlinux 0xfb26687c tty_do_resize +EXPORT_SYMBOL vmlinux 0xfb2fb7da inet6_protos +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfba10f94 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbb801d3 serio_close +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbcc1d0a jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xfbcc3302 flush_signals +EXPORT_SYMBOL vmlinux 0xfbcddc61 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xfbea40d1 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0xfbf59045 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node +EXPORT_SYMBOL vmlinux 0xfc4a1f25 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xfc6b1c69 vm_zone_stat +EXPORT_SYMBOL vmlinux 0xfc766b54 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xfc898b78 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xfc8ec4ab xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0xfcaad39d __scm_destroy +EXPORT_SYMBOL vmlinux 0xfcb92609 phy_resume +EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xfcbe7b56 module_refcount +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfccb929f input_reset_device +EXPORT_SYMBOL vmlinux 0xfcd70bab devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcdfd58e __skb_csum_offload_chk +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf02f84 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd00c6f5 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xfd3a0e7d bdi_register_dev +EXPORT_SYMBOL vmlinux 0xfd4f4af3 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0xfd5a0c10 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xfd6acc4e inet_accept +EXPORT_SYMBOL vmlinux 0xfd711d8a registered_fb +EXPORT_SYMBOL vmlinux 0xfd816bea pskb_expand_head +EXPORT_SYMBOL vmlinux 0xfd851106 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfd9b3e26 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xfd9c9651 secpath_dup +EXPORT_SYMBOL vmlinux 0xfda2c7c4 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdbefaf1 gen_pool_create +EXPORT_SYMBOL vmlinux 0xfdbf943b param_ops_ulong +EXPORT_SYMBOL vmlinux 0xfdc6d26f sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xfdce981d posix_unblock_lock +EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp +EXPORT_SYMBOL vmlinux 0xfdf0206c lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfdfcdd5f __csum_partial +EXPORT_SYMBOL vmlinux 0xfe01a625 kill_anon_super +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe03d35a may_umount_tree +EXPORT_SYMBOL vmlinux 0xfe0acfb8 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xfe2e78c9 dquot_release +EXPORT_SYMBOL vmlinux 0xfe35aa4a percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xfe59914e param_set_bool +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe80cae1 uuid_be_to_bin +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe9869cb ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0xfe9b103b mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xfeb67521 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xfec7b5f7 sock_create +EXPORT_SYMBOL vmlinux 0xfec8c5e1 set_binfmt +EXPORT_SYMBOL vmlinux 0xfed64460 __breadahead +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfeecfc1c elv_add_request +EXPORT_SYMBOL vmlinux 0xfef013c5 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xfef40d20 console_start +EXPORT_SYMBOL vmlinux 0xff021dfc phy_attached_print +EXPORT_SYMBOL vmlinux 0xff07963b down_read +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff2b9551 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0xff4ec365 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6fc9c4 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xff794748 tty_write_room +EXPORT_SYMBOL vmlinux 0xff8856a9 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff993463 km_policy_expired +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffbe214f mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xffbecac7 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xffc36f7e pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffe03618 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xffe690fd udp_table +EXPORT_SYMBOL_GPL crypto/af_alg 0x1c4df5c6 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x33440340 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x3dd1db6f af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x48e7f338 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x522fa15c af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x612c089d af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xb1ab69a8 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xee762b52 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xf971e316 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xfe7cae6d af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xab2d51fd async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x94b4bc00 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xba82c90c async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x6467db37 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xc4b7f3cb async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x5eb567ac async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x932dccaa async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xaaf64b47 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf160593d __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x18bc2825 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xee914e06 async_xor +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xb6bc7130 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x34fd0b8b cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xfa62f765 cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 +EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x606cf11c crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xd30dad59 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x0e2a1d0c cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x181e93aa cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x217e3c61 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x6153a586 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x68a5752c cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x6be022ff cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x859a90e8 cryptd_ablkcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x8b077815 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x91b41326 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xd49a209f cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xd9f5c4e0 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xfb19fd5e cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xfd9e4745 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey +EXPORT_SYMBOL_GPL crypto/dh_generic 0x9edeb49b crypto_dh_decode_key +EXPORT_SYMBOL_GPL crypto/dh_generic 0xa9c31fb3 crypto_dh_key_len +EXPORT_SYMBOL_GPL crypto/dh_generic 0xb25efd9f crypto_dh_encode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x597307c5 crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table +EXPORT_SYMBOL_GPL crypto/lrw 0x843b502a lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x21a66662 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0x46d53a1e mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x7249e598 mcryptd_ahash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0xcbe50896 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x4ab84cd5 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x8b1c235f crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x8b2002c4 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xd5b5f43a crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xa15ea0d3 serpent_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xc8a87664 twofish_setkey +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0bfce86f ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0fab8e53 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1270572b ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x12b09dc9 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x17cb6cbf ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x38830876 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4d95e271 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5e7ed9b0 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6ba3d7a4 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6bcdf99e ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x72ef9ff7 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7fb83c3d ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8212a60b ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x85877423 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9c7c0d3f ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa9390ab4 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xad4b9330 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb0e389fb ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb736a24a ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbe7005a4 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdff6ac1c ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe4cf0ccf ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe6c33666 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2a8ac4bb ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x437180ec ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5ef40edf ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7e0ac5ff ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa114dc58 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa32c6536 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcc105763 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd64ae670 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf435d5cb ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xf35e34ae __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x56aac1ad sis_info133_for_sata +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-spmi 0x41971a12 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xa374ca2c __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xb8a4593d __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xe30e73f4 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x09c15a93 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2a42398b bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4050ad48 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x61daf4f9 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x934d8ce4 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x96048b9e bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9842de54 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9a2f6ba1 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9db83094 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa3040f44 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa315ffe4 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa7e6d935 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa9493e49 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xae0e9033 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb33ba610 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xba9f1b36 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbde3ed94 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbe7d5bcf bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc42ed164 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd962e7cd bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xecd350e0 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xed7200c8 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf784408e bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfdc2f45a bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x54ad94d8 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6e1c6a28 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7391b196 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbac574f9 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbbc2d4a3 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf10c1cde btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0be109f7 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0c5b4e8f btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2c08c5db btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2effacfe btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x331ee421 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x343b78ac btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3d265a58 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x47ba63bb btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6e166f2f btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x85cd38eb btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x85ef53ce btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9c8a0868 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd7b6b81d btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe8435889 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1cf62dec btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4b04e750 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x51d8fa41 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x597763ca btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x694f0dfb btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x857d54b2 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x954df338 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xad2d8c81 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbaabb02a btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc6351851 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdf4a56ed btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4febafee qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x990df3e6 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xfe5b3d4c btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x1070c4e1 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/char/tpm/tpm_tis_core 0xc85abd4a tpm_tis_remove +EXPORT_SYMBOL_GPL drivers/char/tpm/tpm_tis_core 0xd2ad9821 tpm_tis_core_init +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x5a8bc6be dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x67e7fef9 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7eb1e1fd dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc20340eb dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdf39e466 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/fsldma 0xdeeae01a fsl_dma_external_start +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x14afe9a6 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x1da3770c hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x783be40d vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xbe025507 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xc7539a1c vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xd5ea0f16 vchan_tx_desc_free +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xe757977e vchan_init +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x022040b5 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0a8a531f edac_stop_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0ea6648c edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x108b79d3 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x16690587 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4b7f52c5 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4e177995 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x69f9a774 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6ccfbca1 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e40a3f5 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x71b28010 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7edac5a7 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x881c8133 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9f9f44fe edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa3695636 edac_queue_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa92325ff edac_mod_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xabd903c2 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xad8abeeb edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb1b52369 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb9f3df06 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbcd18feb edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbe2a4991 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc8e40382 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd9c84124 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf4b39e60 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf636f6d6 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5c2b5a20 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6c9aa1b8 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6f5af003 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8630c6cf fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xae66ba8e fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd105dfac of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xbdcd0013 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xd5662cb9 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0218ae19 drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x07107fda drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x07176ca7 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2085d9cc of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2507f193 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x284db6b6 drm_gem_cma_prime_vunmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x54bb6dd1 drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5ca2b6cf drm_gem_cma_describe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x604ca362 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x65c9f979 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7772d22f drm_gem_cma_prime_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7898301b drm_gem_cma_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x86cb3eaa drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8f496b40 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa056566d drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbab17daf drm_gem_cma_prime_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc2d4d36a drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd51bd393 drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe298cef4 drm_gem_cma_prime_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfdf52c50 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x02099fcd drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x04ae2986 drm_fb_cma_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1148b623 drm_fbdev_cma_fini +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa17693ee drm_fbdev_cma_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb2c912af drm_fbdev_cma_hotplug_event +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc5daa0e6 drm_fbdev_cma_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcc337fd5 drm_fbdev_cma_restore_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe18bfd96 drm_fb_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf961c022 drm_fb_cma_debugfs_show +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x0062260c ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x53d9b67c ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x8651a1c2 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0249ffe8 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05b2d854 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1075c025 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1b39e921 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2a1749fa __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2d2e870e hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x306215e0 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x452900a9 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x46f94662 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4baff694 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5000f062 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x54f8c745 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5a0fdecb hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x60171fb3 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6ad5e478 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6b36561d hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7bd9ec78 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8c27deed hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x95c77f60 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x95feab6d hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa18e1c18 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa7303564 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa7fa34f3 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaa07c3a8 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbb682545 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbe2df2a0 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbef49119 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbf18a86d hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc8e71fb4 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xce6f67b4 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdd5fc1d9 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdfd33069 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe684b8b3 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xea653cd3 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf6809bb7 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfd8e414a hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xe0f9450c roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x01b4cf4b roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2e8308f1 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x620e2f1c roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x74e3e7a2 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x921f7e9e roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xe1895b88 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0f445fb6 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1b2a6d92 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x59d2de7f hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x875f635f sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8a30d8a5 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xab514926 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcaae4ca5 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe87e9486 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfeb4dd8d sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xb6fcb3a9 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0db5c91c hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x13e6e3e4 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1963c8a5 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1bf8dba4 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x24b8a32b hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x49f3cdf0 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x84076bf2 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa05340da hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa0d6f4c0 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa7997d0d hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb0cc2c7d hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcc975b93 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd7123dbd hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd852564b hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd8afcbff hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe1ea04e9 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe51d59f3 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe5efe642 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x052da599 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x80399055 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1991a8a3 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1bba9f4e pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x204095fb pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2bb1fbfc pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x36ea8fb7 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7284106b pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x745ff4fe pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8038217b pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x889a1bbb pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9cb9990c pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa41d6fdd pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb532988e pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc4e008b7 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xcbe2bc51 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xcc5c6651 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x64f2f03b intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x72660ae6 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x92152673 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x995df29d intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9f3669c0 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe0273a68 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe6299f74 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1b2debae stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5e62f7c9 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x609ae256 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7fb0478a stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa7b3e053 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x0ec8c403 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x4a1f2bb6 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x76b222ea i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x7a74653b i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xa6e701fd i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x73c5cc9c i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x87e2d4f0 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xaaed390f i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xcaec8633 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x618bbacf i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x7b41513d i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x896e7ccc i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xc79299f8 i2c_setup_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xc06e927f bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xc630dad2 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xd5468c9b bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xf2e7d7e0 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x6b28de74 mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x7caf9505 mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x7fc42e56 mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x01c8fa66 ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x135feb07 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3968dd79 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7160b7ec ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8b076134 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x98db34a1 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xba62d519 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xed5e7e2a ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf4d3fbe9 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion +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 0x370d518b iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x65d1a61c 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/dac/ad5592r-base 0x509bc519 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x90d50477 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x781abca2 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xc50fa299 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xde24eb91 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x1caa9887 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2d820e26 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2fa26efb adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3909f2f4 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4ac45877 adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4b6c4c3e adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x73cd42d6 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x848f9bb3 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd378e54d adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xdb68fc30 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf57e9086 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf69491fb adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x3a99e0c1 bmi160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xd2c93d90 bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x8d6eb0ec inv_mpu6050_set_power_itg +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xa317fdb4 inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xd693279e inv_mpu_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xe34ae01f inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x094f093f iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0b95a984 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0cb4e19b iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1287da98 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x153c594d devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x19fc6c75 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1c81385f iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1efdd016 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1f08b76b iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x254a4fcd iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2e8367a4 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2f55114a iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x340135cd iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x36e0b1e0 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x48074036 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6dbf53de iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x700bb7cb devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x74577712 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7460a59b iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x80074d3a iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x819c9b7b devm_iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x85d1233b iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x876748e3 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x91f15e95 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x93311924 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa3972b52 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa4f053a4 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa6a7305c iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaf813c10 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb478a81b devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc64bc0e9 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcb23474e iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcc0ad783 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xce9b3221 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdaee03b7 devm_iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe43ca99d iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf51ba1a7 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfbc16962 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0xbd536dfc mpl115_probe +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/sw/rxe/rdma_rxe 0x59e4403f rxe_dev_put +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xb3c73985 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xd638bafb matrix_keypad_parse_of_params +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x3136f4b0 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 0x092465da rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x13302e5e rmi_get_register_desc_item +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x14b502d5 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x279ee395 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2885abc5 rmi_2d_sensor_set_input_params +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x31162707 rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x35ae92bf rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x365118ee rmi_read_register_desc +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x441a08fc rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4a0e11c2 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5c550dfa rmi_register_desc_calc_size +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5eb8c403 rmi_read_pdt_entry +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7059825a rmi_register_desc_calc_reg_offset +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x87634532 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa07834fc rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe1d6ff0a rmi_process_interrupt_requests +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe83a9c68 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf425a9df rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xfa0b7633 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x4d56ee53 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x7d38cb99 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xc47a0a21 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xd1f03ed9 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xfae9a9a5 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x666e8994 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x846f75df cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x36b27a20 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xbe980795 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xcc237c8b tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd7ca0974 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0d36929f wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0eec5a01 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1352475b wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x47038c25 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x64a0613f wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb568d1e6 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb571cfeb wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbc114057 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc2465a9f wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xeeb08ce8 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf4617bd4 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf5e2cc6a wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x419e7d76 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x44c5350b ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x71eef88f ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7cac5140 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7eba1334 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8fde05ed ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xad81a904 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc6508fbc ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd5142a67 ipack_device_init +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x05807fb2 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2793bf60 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2c9aa57b gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x65ebfdac gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6892e952 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x78324cc1 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7caf0c5a gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x85cc7799 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x90a2461a gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb47d370a gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb5090c04 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc8173546 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xcdb3fc30 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xce42f889 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe6a53372 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf168a9bf gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf5554095 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1f0e9b97 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x25376ede led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x60ea5eee led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x988bd784 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd16d216e led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd2f74136 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x11844fb6 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1a5724d1 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4266c7fd lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x45582527 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6715823e lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x925a428d lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xaacd3fd4 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb6b23824 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcbe86f9e lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xea0b07a2 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xfa7c74b0 lp55xx_write +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 0x291ea59b wf_put_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x6d4220bb wf_register_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x78827c09 wf_get_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x9c4d860a wf_get_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xaaa0f6a4 wf_unregister_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xb3939fa3 wf_put_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xe135f8d2 wf_unregister_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xe42d1301 wf_register_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x07efd9ee mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x098ceff4 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0b628f93 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x292c0d90 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x401511cd mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x864b514c mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8a5c64d8 mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa4fbe2b4 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa5dea987 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xbedaf914 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc91642d7 mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe91e9a9a __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf039e339 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xfc922a26 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x07b0caf6 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1bcb69cf __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x290dee5b __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x29bfa0b4 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2e9a0300 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x350f0b52 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3eabc650 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x40978466 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4797ee5e __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4c5dce08 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51c85a21 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5930cf1d __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cb40ec5 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6d024748 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6f4bb251 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7a8a162a __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7c234702 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x898239dd __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x940edb75 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x94287194 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9dcb7c83 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9fb22838 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa4f27010 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7c2e5d1 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbb4a3f4a __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd4abe767 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9dc9cfa __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda147480 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe16ef8f4 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe43c667b __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf16c2227 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x02e701b7 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0add802f dm_bio_detain +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 0x2fffab75 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x336d0646 dm_bio_prison_free_cell +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 0xb4fa15e9 dm_cell_release_no_holder +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 0xbb737556 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc3e539f8 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd1580d67 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xeeae0e1e dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +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 0x9310ba06 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa448e19f dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc8278e4 dm_bufio_client_create +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-cache 0x2ecd6f22 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x61aa48e8 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x6a6dbe35 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xb68b7506 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbb8bd7a5 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xddbe23fe dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf8bd68bc dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x3dc72e88 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xa1adb05e 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 0x1e8fe693 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x2841c1b0 dm_rh_inc_pending +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 0x4430764e dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x617c659c dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x782c9b66 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x9443ec3b dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state +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 0xcb40e7e3 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key +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 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x17c36f29 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +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 0x32b5f546 dm_array_empty +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 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42dbdfc3 dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49b35849 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x55b4bd4d dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk +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 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit +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 0x827a42f4 dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify +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 0x966a8838 dm_btree_lookup +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 0x9f624559 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xafeda29f dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd29923fb dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf375d009 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf5455120 dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf69d29c8 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0x00096a0f cec_set_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0x4961a844 cec_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0xbff6533d cec_phys_addr_validate +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0xd2f2eac1 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2d304c91 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5b4a6280 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x746e19f7 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8a28ed77 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa87e71de saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb3f0e53a saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc98adb68 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd8fcea9c saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xebdd9f0e saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfb102030 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x64aec1a4 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7a2488fa saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7dac004c saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7f714edc saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8ec85e83 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xc0ce9339 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xdae204df saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x05cbadd7 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x205314ce sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x379d05fc smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3bab94a0 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4f4d161e smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4ff86944 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6dbc1b2e sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6dc3533c sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x75cb4c86 smscore_get_device_mode +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 0x87cd8431 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8846eadd smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x90d10d9c sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x96c2fb7f smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xaecb931f smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb48795ce smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb7bc947e smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc3e32a1f smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x0756995d tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x0b63430e tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x1c236f52 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x395504e9 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4cf9e178 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x5c15f12d tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6da054cc tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7527c0ad tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x89685ab4 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x8deb2d91 tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x9e9e5267 tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xbbf641fb tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe01d21d2 tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf26d0c08 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x88dc485f dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xdbbdc0c3 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x26f53c32 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x4b6c4df6 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x0266f726 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x030d35a3 media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x08764bee media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/media 0x0b301d87 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x0b758e86 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x1391b895 media_entity_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x185a9d2e media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/media 0x1c544c91 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x1ebedff9 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x21d491e5 media_device_find_devres +EXPORT_SYMBOL_GPL drivers/media/media 0x29f0c8f1 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/media 0x2e4a3083 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x2ee5be61 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/media 0x32aecef0 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/media 0x36a5eb2b media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0x4f31274c media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x4f71ac1c media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/media 0x542b0441 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x6198818c __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/media 0x6a9163f4 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x7fe4a557 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0x870986ea media_device_get_devres +EXPORT_SYMBOL_GPL drivers/media/media 0x9d008d77 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x9fe65fcb media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xb03a8641 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0xb21c7720 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/media 0xb7fd582c media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0xb92ea11f media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/media 0xbe92cb25 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/media 0xc02042ee __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/media 0xc3a57dc6 media_device_init +EXPORT_SYMBOL_GPL drivers/media/media 0xcb5b3ca3 __media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0xcbdbd6c1 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0xcf0c65b8 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0xcf42cf68 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0xd09c2bce media_entity_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/media 0xdc581289 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/media 0xdce70507 __media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xed95a398 media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xa8503e34 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x11c5d364 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1a84820e mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x361c590e mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x37b8f9b8 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x62cc525a mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6e7f8dda mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7111a5db mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7a50f4b1 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x89a15f66 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x969f8db6 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9f1872e5 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa6b8389b mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc5b21b76 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc66c4e24 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc74ecaeb mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd8eadacb mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe6fae4ea mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe7bd95a0 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xecefc933 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0e3bef0f saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x12587826 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2e051d1e saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4dcbcb3e saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x718935da saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x79658af7 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9e876a1f saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xaca2e029 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc7e93f04 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcc27ed84 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xce9338e7 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd2cac564 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdb4f988c saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe80f1b10 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe9ad156b saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf79bfea1 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf7f5413c saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfdd658c3 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfe2e6cd5 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x2422d015 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4634c612 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa29a70af ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa2f8b52b ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xcdbbff84 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd44ae7cd ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xde09f977 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x04736e18 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x08f619a0 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0cf33330 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x789eeced xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe10e04a2 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe394c1ed xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xff24bf37 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x04162590 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 0xaf2a6fd7 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xdb4ff697 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x088dc73c rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x103299a5 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1791e286 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x26c953db rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2a248039 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2d785038 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7b8a1230 rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7b953eec rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7ea39983 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x841ef63d rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x956023bf rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd2201675 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd448f56f rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd7d5a322 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd8f96b8f rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdaa2e9a3 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe544120a ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf1977015 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfdff918f ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x427e3722 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xaa3a3381 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xfee40784 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x3fd0fe6c r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xe29e30e7 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x4d93c193 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x0ff4c8ed tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xc7a20ff3 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x0b7b46ee tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xa7b2fd35 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xac625873 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xd13734ed tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xf7dc8e9e tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x1b5d2359 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x02743c1d cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x13f55935 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2b5f13f0 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2da22829 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2e3cc3dc cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2e485aa9 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x34e309ed cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5d5a1648 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x615febf3 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7de094b7 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x89a65b2c cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x97299e13 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9c196c5c cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa0193ec1 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa8ee0c4a cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb1b284ca cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbff99c85 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc06097ba cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcbb2e7f9 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf2d70ca4 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x2c5736e3 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x4954de10 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x10b7723a em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x170b0a8e em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x223b33fd em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x22e2235b em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2b5ff36d em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3547f8ea em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5ed3a30b em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x607340d0 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x62e82491 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x67997117 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6e94a281 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7daad590 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7e29109d em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x96a80a0c em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa2d2c61c em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa7dc300c em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc72a6ff4 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf8cf6381 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfee22acb em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x5b97df27 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x5eafeb40 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xc7e8bc54 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xd35d94db tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x1830cfb1 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x3b775dd8 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x4bd3cb21 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x7c1f4984 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xea50c655 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf67105f6 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x363ad524 v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x767f9164 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xc79af35d v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0b33750b v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x15c8679e v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2306f5a4 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x24c14dcd v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x280109e4 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2bd506b3 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3a833f24 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5ef651fc v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x734f5882 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8003d5b1 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8abef1c1 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa0a905d9 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa25c7798 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb69f4da0 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc5679008 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcc77f81e v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xccd9a7b1 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcef6fb2e v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcfb565ee v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd133aa42 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xda4f1243 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xde93f777 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe15210c5 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe52337a6 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xed3e2363 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf92a04a0 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf9ea7e6a v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0c2339b2 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x231ee7e4 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2996c381 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2f823e8e videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3144bd0f videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x37b247dc videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x483d24ac videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4ce3868a videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4e8ea4ce videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x74f5b222 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x86d2093b videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa046e571 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa4df8958 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa6c46a8a videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xabd2ac8b videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xba707696 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc36d334c videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc3d6744c videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc62bbb0e videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcd3328ce videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd010590c videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xeb89630f videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xef246170 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfe213faf videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x14e3c5cf videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x1d1a34d8 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 0x992396e4 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xc68656c5 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x3cf17fca videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x6c0eea7d videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xc28c425d videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x01ee5b2b vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x144ac39e vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3b86068b vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x413dc32d vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4c3dd145 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x575fc78f vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x670e4deb vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x67e7015d vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6c697271 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6e2e5b3a vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7c9fe70e vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8c3929f7 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8e3dcd32 vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x9ad37192 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xaa6b3ea6 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb15892f5 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xba1dddd0 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xbeb768f5 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc1c72397 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xed651dcf vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xef67b98f vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf53082cc vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf9b1bf4e vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x1b3589c8 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x8e35df48 vb2_dma_contig_clear_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xf811707c vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x01246fc9 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x8dd79d77 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x05d23ca8 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0e9382b1 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x19339c40 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x19fecee9 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1e3a182e vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x33344fcc vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x44e0ed25 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4f5f977b vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4f670731 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x562f675d vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6c2d78fe vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6fc4c1c5 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x76cda297 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7c536695 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7df3dd51 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x85a4578b vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x870634a5 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x89930942 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8c1332bb vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9097861e vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9d70966d vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbb16aeca vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbd13838b vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc6e1448e vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcac37170 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcd00cf04 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xef05ea43 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf1fe13ca vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x9b642446 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x00836172 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x04b8da0f v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x16acf9c6 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1d450429 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2133607d v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x22bd9ca7 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x29ded27f __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2a4ff2c3 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2c0ba38d v4l2_pipeline_pm_use +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2dcb1f71 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3272252b v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3596d0dc v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3acf72c5 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3b56b084 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3ba56566 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x415f49b0 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x42246376 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50d65b11 v4l2_subdev_free_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x52818dd7 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x53656c99 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x58c44a94 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5cb90f8d v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x731d4c83 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x83cd1889 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x88bb4f9e v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x909144cf v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x933dfed7 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x954b20a9 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x99707369 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9d7f0487 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa41f8703 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa9eaf17b v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad4ffbcb __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb836482a v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc470c439 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcb0f7cb8 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdff470d9 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe1e4c554 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4a17f70 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5592866 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf0ece3f0 v4l2_subdev_alloc_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf3018dae v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf456bf95 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf76c41d8 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfa74f94f v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x2c994073 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x3c949115 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x617ee08a pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x077fb620 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0c8c9a38 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x41306cd9 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xaa41bcfc da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb109d993 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc34c0b61 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xcd3ecee5 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1fc4ed0a kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4fb81c8b kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x899c0c3d kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x8e22d92b kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb81733ce kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd6e6eeda kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe19e835a kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xfc1f7a21 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x07bbeec1 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x9abf5f7f lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xd741dc84 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x0f86c7dc lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1d2e2af2 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2596945e lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5c2b0cd0 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8f45f107 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa273c94b lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb9bc6c25 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x018c57c9 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x45f72583 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xcdca3608 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x09ae713b mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x3307c0a6 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6a264a4d mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xac68978c mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xecd2dcac mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xfedd29c4 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x16db795a pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x26446cbe pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4d0f803b pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6962ac10 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7eba9be5 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa128dd3b pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa7689fbd pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xcadbe4d3 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd37a31a9 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf262b18a pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf3959551 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x05ec032d pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x7d05142f pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x05774863 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6a0e29e2 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb8fca135 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xbe47770e pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf690dfd1 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x157514c0 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1838c1a6 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1bb37396 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x25b281d5 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3d418144 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4591c117 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x468119c7 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x529b679a rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x54546542 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x64680f14 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x68362801 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x68845da5 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6be583bf rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7316722a rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x88b32557 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x90627f0c rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa5ec3457 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb339e765 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb55f42bf rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc7759358 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe66978f5 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf39dcbe9 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf80d881b rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xfb55357e rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x3282eeef rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x3a3014fd rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x55a2fce5 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5d853ecf rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x6de9385d rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x9df8b618 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xbaf3b239 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd7265de3 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd7917f0c rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xdba6e664 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe0d18aad rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xef12c1e2 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf5e0a7ab rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x051efa76 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0c954024 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x122cfcb9 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x13f9503b si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x18a27fe4 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1a1777fa si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2570cf5f si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3a262e00 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3ee02d37 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3f359540 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x48c769dc si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x491cde09 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x57ab51fc si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6d47cc25 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x710edff6 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7227b15d si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7ac09e9c si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7c042524 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x81e3865c si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9618b834 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9c050d60 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xae8b0cc9 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb9177e16 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc0cb178a si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd5215455 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdff4760c si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe4b166b8 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe4d2f31d si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe50974d1 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xed234afc si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xef9159e5 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf2bb9ca2 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf37b8934 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf88caa50 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x5331747c sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6220232f sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x95d1f8a6 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xc5fc1291 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xffdcdb76 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x15831243 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x23e5f62c am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7e1d419a am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xa286e84d am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x0a1bb206 tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x0cac5ced tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x9b481ea5 tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xbcbee8ce tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x18c20cb8 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x25069b29 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x4b054dc7 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x66fc7f36 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xa07fd66a ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x2f3f6fff bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x64e5b2a7 bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xa306de40 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xfa1eae56 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x59027f94 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x6b3e1085 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa65371c3 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xbfeef850 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x051260be enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x0eb0abee enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x21510cd6 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x39be9ba2 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x528db92a enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa85467d0 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc709ad89 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe410076f enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x002b79b2 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0bb1eb65 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2480b647 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8ca91299 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc9b628d1 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd0083b43 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xfa2e1b4f lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xfbf449a1 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x31bb761f st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xc80b36cf st_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0702c9f1 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0ec0c853 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0f69475c sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x276d0ef4 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2a5d4d93 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x45bbf8ce sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x490aaaee sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x56778bab sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x63c55d06 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6ec2b953 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9644662f sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa73a1f08 sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd079ab18 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd70e1e7a __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd9b16aac sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd9e93ac6 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe6c40012 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xefd7504f sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfbba2271 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x15ea526e sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2f6a503c sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3987c2fa sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4149443b sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5da78715 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x83a59d0d sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xbc477f86 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x78758ea1 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x856bab37 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xba428edf cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x6906f645 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x9aff39c3 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xe4ad7213 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x0b385f44 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x1759a152 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x6348dd80 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xd306135b cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/maps/physmap_of_versatile 0xee826565 of_flash_probe_versatile +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0562714c mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x07ac6055 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x09db668e mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0b887401 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0fff5559 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1a2f5199 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1a76e242 mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x255ecec8 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3c8f3705 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3ca87d22 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x41b2b56a mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x45ca2a3e mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x45ee8c96 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x46f438df mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4ee685be mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x52fc5307 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x55aa610e get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5b220f82 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5be64d1a mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x61488b35 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x682927e4 mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6c4be03a mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x70cbd1d6 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x79946937 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7e8804b2 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x80d2a997 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x83ed99b2 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8df44318 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8f766ae6 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x90917e6b mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x934059d0 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x93f8efad mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x99045067 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa38914e2 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb1842561 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbb7b7875 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc50617e6 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc537091d mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd1d1e0e9 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd2179561 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd98b8029 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xda73120c deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdc1e236e mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdd4de14a mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xde1c4431 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe212914d mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xecb94f60 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf6120b66 mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf72a3c52 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf860a5a2 mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfbdeed17 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfe3fd88d __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x5f54eb91 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x8b86623b del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xae0ec71e mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xc2c69c49 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xe6bfbc06 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x47bc32c6 nand_ooblayout_lp_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x756feb0d nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xd62adee1 nand_ooblayout_sp_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xef58b6f1 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x0d5f1a10 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x49ba024b onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xaebc522d onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x735169ba spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00ee261a ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x22a80754 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x23b679f2 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x365b3032 ubi_leb_read_sg +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 0x4aaf8634 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6a31ec54 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6d27c5f3 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x763a90d6 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7ac51ca5 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7b379ba0 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x82813569 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdc110e97 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe78eb32e ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xef117222 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xa5c76aaf arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xdd4840f8 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0d21f867 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3296d183 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x368bee91 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3e8b7aac register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xae3627d9 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe2da3ec9 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0051a298 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0b12d5cf alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0d0922d4 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1370a4e1 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1a77d6ee devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2524af0e can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3158c39b can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4805619a alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5462270b register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5fbe8266 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5fc7d33e free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7b0fb196 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9782ca67 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x97a64a98 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x99725211 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9bd372e1 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb3a1a2e1 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdddd733d can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x123df7d0 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x2d5fb696 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x8f75491a free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc008ef18 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x3417e6b0 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xed4cb18e unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xf0808d89 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xfd03a6ab register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x2ab92bb3 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xa37e6518 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0396e716 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03e266fe mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04a4e7a4 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0516626c __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x066b38cf mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07c7d03e mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0910e512 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09b148c3 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e9df4b1 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ecb6cad mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ee3264d mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1aa29f53 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b3599fa mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bea5f7e mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c9afc52 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ec4220e mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23434d06 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2630a36c mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2667bc3d mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x282310ac mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29ae9f6b mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29fbc9c8 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30d03332 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30de9e1c mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31814ef2 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33d203c3 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x374fed18 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38c36ee8 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38ebc31a mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a9b9833 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b011c9c mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d541421 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4076822b mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40e83de0 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4170ce83 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4444ab59 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47cbcab9 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47cbe654 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48bd5fa8 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bd5c394 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c3f2a62 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c98c268 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ecbd0f7 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51d57bbd mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5223bb32 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54f520db mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x573ef903 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a281989 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c53862f mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5dee3480 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5df68fb7 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e4e345b mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f33580e mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x609cf1e7 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60aab30b mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61313011 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x623d3a1e mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6411ef40 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x661a7235 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x681e356e mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6da733aa mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x705c93fd mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x718c73a1 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7203ec97 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75979ad2 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x776b942b mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79571d0e mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c5f94aa mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d9b4ad1 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80703970 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8118c802 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82378a69 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82be11b8 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x842f6e14 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8448ac7b mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84e98fd4 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87a1c611 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a253cc5 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b13aca0 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cc3d10e mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cc6f684 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90b2effd mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92e5f1b2 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9450b91a mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95932a5a mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96de0cd4 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x986364ad mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c9f30fb mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0a6af80 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa55681ec mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa63f5158 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7e5c195 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8e1eb1d mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa054c5b mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab37dd24 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacb4c80d mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf4bb10a mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb435fbcb mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4a18685 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7569bbe mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbde9a85a mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc13c0445 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1a2a630 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2f6e3f5 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc457d22e mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc721f6f4 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc879089f mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc88b8be4 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8b53277 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcae3d95c mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcecd5880 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1260455 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3eb2033 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5b4e3b5 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd957932e mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdafaf215 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb9b9a64 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc77da2f mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcc7c548 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde0977ac mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf7e4db1 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2ea6e97 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe56e7bac mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7c385cd mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb90cb31 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9d649bf mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x052a9a5c mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08d5f7c1 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d3beb88 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e6cc38b mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f2a1780 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10d5d99f mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12408542 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16dc323f mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cb68c83 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cfbdf01 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x213d589a mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b95f02b mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ebd0f1a mlx5_query_port_autoneg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34898173 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x348db625 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36de25dc mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39184899 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3adda633 mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3bc95d07 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4005e3fb mlx5_core_alloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46ca36f1 mlx5_set_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ae24ce0 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4de11bf1 mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x536d325f mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54e3cc54 mlx5_core_dealloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6146730f mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6154e8d2 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ed2c79a mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x714930f6 mlx5_query_vport_admin_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76c9415b mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a59d314 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80c027d2 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8389e907 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83b6a2d7 mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x854e0c77 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x860ca6c5 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c916b4d mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93301a89 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x963d9df5 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d1656ee mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e6ecfee mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f2dd89c mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2c8229b mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4e22967 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaab7540f mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabadcd52 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabf2066e mlx5_modify_vport_admin_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaded84be mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1779429 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2829336 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2c98126 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb54d8908 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb636260f mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8e15bd8 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba5ecec9 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc755625 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd279059 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0a3a45e mlx5_core_query_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5fcc8d1 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb33f125 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc492835 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfa8922d mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd58af363 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd634f6a6 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda3e268a mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe09ac85f mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe37fc12c mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe51f193a mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8c5a014 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb60c3b1 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2d95ba1 mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa442388 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc55ca82 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfff42067 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x5e28947e regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xac144314 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xc920e270 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x3e0ce1ec stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x4e270b62 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7de72653 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xfa75247b stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x577fb83c stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x660e55e5 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd2fa77e2 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe88ec30a stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x02bbb5df cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x155a0508 cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x1abe4421 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x2e1f62c0 cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x370878d1 cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x3b681f6e cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x454241fe cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x52555cc7 cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x7079ac69 cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x8104f4c9 cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x812c3e6f cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x866c5399 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd568bb1d cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xdcb14f2d cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xfea8f83d cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x7b191fec w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xba70235f w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xc0572b03 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xf7074391 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/geneve 0x759ef537 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x141bb882 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x3d5d5cf7 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x608212ce macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x86216f2c macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x850d27c3 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x52cbeca7 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x74068ac4 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8941c669 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8b3ff4d0 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8c4e5d7f bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x903e1800 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9d98b297 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc84b6d20 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf0830069 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfa93581a bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x06617156 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x32b5b146 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x34990501 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x76231e18 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xbac8c1d0 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0153b3c2 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1f7bc8ef cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x244943a0 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x29077414 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x37f6d9bd cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb2510b6e cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb3b976e3 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc00a791a cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xddae9e85 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0867637a rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7e01d725 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7e7641dd rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8d939cbe generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xecded21a rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xfea4dd00 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0e158ef2 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x18f4634d usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1963ad5b usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x21db00e9 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x229a76d4 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3328fd94 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x34632647 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3ac555da usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3cc3b1d8 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3ce981c9 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3f250974 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4831dd86 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x76e8c8ea usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8690c7d3 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x897e61b5 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8ae241f8 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8e6f8dc0 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x96e40a54 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x97434989 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x98287df5 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xaa04f4c1 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb35bb79a usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb87e459d usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbe0ed4eb usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc9f2e085 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd1cceddc usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd53ba8ad usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdbd5c789 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdfcbbf4c usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xee7a4d9c usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfb16c565 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xffb2f75b usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x6644aef8 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1b9625c7 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1c52dfc8 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4a61e441 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x55871f10 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6b1abc36 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x829c84e8 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x88cfaf6f i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x90c0b5cb i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x93350432 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa35456b1 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb9decd43 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xdecdf5a6 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xea03f3c3 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xeffd571a i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf50fe31f i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf8bcb009 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x4141ea38 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x525bff0e il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c5e0442 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd41a7eed il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf34fff07 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfdc1569e il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x002b2e74 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0d556623 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0f48dcb7 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1212dccc iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x16a65a05 iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1b7f138b iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1ca65f49 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1ee169d9 iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1fbe0756 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x20b1b356 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2b443c02 iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2df7f388 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3353d72e iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35c92b00 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3d0ecb5d iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x400e4abf iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x463b8bd6 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4c4889c1 iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x675376c2 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7755dc18 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x84a5d0ae __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8808a0d4 iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8ab14d93 iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x90bab79c __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x95965ded iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9856891c iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x995ed5ed iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa88bba09 iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaf69df75 iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb606ad0b iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbe76032a iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc67c31ed iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd4173121 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0d3442b iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe5d61854 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xeb096d03 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xeb54dbe3 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xef23b438 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf28fc530 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf2c3e022 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf5aea4a7 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x03cfc56c p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2e274cce p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x31faf1be p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x571c4ec5 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x64313e05 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x9625bbc4 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc56086d3 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf5a10415 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf93fbb5e p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0a79fe57 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0e2afe86 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0f5d8734 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x260c3965 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2f877fdc lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3d1c0509 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4776cdac lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x537a4601 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5679b7bb 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 0x7fe1a2b7 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8004ea8b lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8ccf79e5 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8e0e6f04 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa13cba72 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc30bfc77 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf6287140 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 0x26f7119c lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x348389c4 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x385635e9 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x721a6776 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xbab84036 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 0xd186a758 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe56979fd lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xeb1876ca lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x083acfc3 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2c8bffde mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2d9c396b mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2e0ceb29 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x56381cae mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5c16aa94 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x60bb8255 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x664d2414 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x68d9e9fe mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x71004655 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x741abb45 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x74e838aa mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x780a755b mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8bd5eea2 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa4689010 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb2319d27 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcd5b3bd7 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf79beb82 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf857f68d mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf9310d39 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x007edb39 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0c6ea68d rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0f586732 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1bb30ffa rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1f074cc5 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x23582ff7 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x35376402 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3ccbf7af rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x40df1044 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x44b26a2f rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4b1eb07a rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x582fde3d rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x60ffa820 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x659e85ff rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x72b1c7e4 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x85162e32 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x85b9d0ea rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9286895e rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9336edf4 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa1f04eab rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa541acb8 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa855ae88 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaebdc99f rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc9417809 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xccddc731 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd24e642a rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd29f60ac rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdbe8f0ed rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdffe00e5 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe268c4f6 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe402b28c rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xef8f79c8 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf548f242 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf9ac1d5e rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf9f4774a rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf9fe8073 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xff50f731 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xff9e9202 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1f60078a rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x26e7edb4 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2e8f46f3 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3e686745 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6f45fd3d rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7f6016a2 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x900dd354 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9bd85791 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xabe92221 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xac7646ae rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xae22872e rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe4612a8a rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfc8b8339 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0343785c rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0fbea23f rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x10ad11be rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1ca5b37c rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1e91b78b rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x23ec25a4 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x283e3fd0 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x33928521 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x34de8801 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x372d5c1a rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x38610b1c rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3b6f88c7 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x440e85a9 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x51cdbe91 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5205b6c9 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5623c8ee rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x58aacd0d rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x591eb7e5 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x59aba039 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x60a7c30b rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6438641e rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x66b04235 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x68c1313f rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6dd329b4 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x73736a24 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x76e4c519 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7f691b6a rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7f93342c rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x83cfa84e rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8f253d56 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa2e29c88 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xac4c6539 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbaa43461 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbb6f2a66 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbe0a862c rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbfa62b19 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc8c5c09f rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcceee5f4 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcfcdfb3a rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe2648b7f rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe2e07e13 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe9e54836 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xee5ab591 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xef6a42d8 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf365f948 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf81a90c1 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x35e66587 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x404c3d5f rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xb8137d68 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xdda11074 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xea824e8e rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x5cf75989 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x757a289f rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x9477bb1a rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xfbfe5108 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x08b03e88 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0e516af8 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0e5931d7 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2311d91b rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x293ef8fb rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x385041ac rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3949eb03 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x455af627 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5b9df502 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5e454b39 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9bbc2ec3 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa21b01a2 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb82c2129 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdedc781f rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdf7791c9 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xeff87876 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1aed6c77 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x58a9d9c4 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6cf2db6f dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa4f5c044 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0a0d2f43 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1641bafd rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x282f42ad rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x28a8cbe4 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2cc8fa76 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3554cbe9 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3defab97 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x42748b94 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x44ac85c8 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x57f02e5c rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x63cb8b66 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x66fccd8f rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x67fee749 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6d0e0c43 rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7a2d8d71 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x85784695 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbaa32682 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc2b49f3b rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc63a4df2 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcaaecaf5 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xccf82831 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcf77a8a6 rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdba1f3ec rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe26091c2 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe958dea8 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xea39e58f rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf8ed46fd rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x09eabb2f rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x10f9e8f0 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x14365ddc rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1ca30b3a rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1ecc937a rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x288d3093 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 0x2b9e29d4 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3f782c55 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x446b19f0 rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4f1b4ba6 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x533d339e rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5c058d6a rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x60bc157c read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b4de810 rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x758e41c8 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x785917f8 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa7da82b0 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbd6bf980 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbd8fc832 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdead5021 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe1241050 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0a54cc71 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x75267367 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x87846d89 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xfa9d29aa rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x1c99d37d cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xc6b12822 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xd9f1ac55 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xf61fd50e cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x7ae6c541 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x7d9a4587 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xcf75c26d wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x03070faa wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x04665489 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0a56320d wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0b9461a3 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0d576271 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x10632071 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x13f98837 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1c4d2c25 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x229bd294 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x244f207f wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x24ce4cc8 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x367e542a wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4a05dc44 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4e7d9c12 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53f9e218 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5ee648fe wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x63c02fc1 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x64177182 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6788bf10 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x69f5fd3a wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6e699360 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x70db23f2 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7ad9cdb8 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7cae7bc8 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x84dc3442 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x87ef5a3f wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa06adda8 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaa286d1f wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaaca9d4f wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaaf94731 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xab5e7171 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb5724319 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb805a0fa wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbdc4d0f3 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbfc6e199 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xce1e2cd1 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd70a497a wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd87ee992 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xddc45ed1 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xee9a5cf4 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xef8ce42f wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf1504d44 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf4e7fbdd wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf5af9a74 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf95b036b wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfe715d70 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x1420336b nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x1ee33100 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x4aaf0e1e nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xa545d0d5 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x7e2dd933 pn533_unregister_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xaedb312c pn533_register_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xe59e3140 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0228c766 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0247ba20 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x076bb95b st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1d0769fe st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2fc2f80b st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3a967c09 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xef65728b st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xfab40287 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x2343fe06 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x42116f17 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xeb368298 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 0x12a32a8c ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x217e9581 ntb_transport_register_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 0xde28363c 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/nvme/host/nvme-core 0x0e63d6d2 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1b572b5d nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x296bd6da nvme_queue_async_events +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x327858b1 nvme_max_retries +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x41c16fd5 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4927fe3b nvme_start_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4a4db046 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x50400c6d nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x516767f1 nvme_requeue_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x668029b8 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6a6ed7e7 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6d80afae nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x70db8f6a nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7679c9cc nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7b86ec7f __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x82f575f9 nvme_queue_scan +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9f40dd nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x90901c0f nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9be8dfb0 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa6adfbe4 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa995fad9 nvme_init_identify +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb5eebc84 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd0996e0f nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe3207350 nvme_put_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe52f3e3a nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf958ab24 admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfeda0104 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x066c4aeb nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x10401800 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x15f1ccbd nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x211d759e nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x54be74d9 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x56bd05a5 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x59dbc8e7 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9997502c nvmf_get_subsysnqn +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb3105038 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xed4426df nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1c532b96 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x385b9c54 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x46a34629 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5d60861c nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb1d76a4f nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc90081dd nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd75ebd8a nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x16c6438a nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x224f51bf nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x59d289eb devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x90a8926c devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xa1741306 of_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc4d8e0e2 of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe4f6136a nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe531659a devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xfe7d1df1 nvmem_register +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0x20871ad1 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0x7917e7ed bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0x96c1e0b5 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x0a0e8533 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x429c58d5 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x54b8709d pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x4dec38e7 reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xdc86d9cd reboot_mode_register +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x64178bac mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x99ecb0a1 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xa056784a mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xe65c4dfa mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xeb4c915d mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x32e0b1ee wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x5ace2349 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x616a641f wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x78c0e4b3 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf0f1e35e wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf6aef57a wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xbf764994 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x003207d7 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x05176979 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x078464aa cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x098fcd87 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0a82d8cb cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1d00fc6d cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x279e2f42 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2fb9e581 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x312f68b6 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x370063bc cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3db5109c cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x452362ee cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4d8a26cf cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4ed8e7b0 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x50fdbaac cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5b724c2e cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5ea4f919 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5ef23466 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5fe6fab9 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6898388d cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x73be0ced cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x84d7b1bf cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x959a58c9 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x96743754 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x97517414 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9973ac0b cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaed75080 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb38e59cd cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb5faa5e4 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbb0d8e3b cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc32069b2 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc35aa4fb cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xca97ffab cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xccf1b24a cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcdfe1d3e cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd408d6ad cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd4f09e5f cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd5159ad9 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe1131b44 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe1919404 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf4f4ef0f cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf62227b6 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf6af4095 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfa97316f cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfd23e3bc cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x079bb677 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0e5147d3 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x20121856 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x20213eb8 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x20f33155 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x37956863 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x501163cf fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xad53f621 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb0dad2d7 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbbeaaec9 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc44a6841 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdbf49b29 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe2f8bf48 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf5f7b5a7 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfce5dd42 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xff5069c6 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x13219d27 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x46577f73 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x49031c50 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x662e48a5 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7f25a07d iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc1a08d22 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfdbf76a8 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x088cf762 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0ecde220 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x11389ec2 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x13fcab04 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x20c069b4 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x229c0df0 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x29ef1801 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2e178465 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x32ed2cdb iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3408b484 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4541ea40 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4b2f477d iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4d2dddd0 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4f9783d6 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x50e292af iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x537d67dc iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x53e36b6b iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5cca70be iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5cff12e1 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x61115672 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x65233b8c iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x73996beb iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x77576f73 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x79d6330f iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7c9f12b5 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ce54885 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x880e6075 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xafe643ed iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb3e5dc33 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc187c9ed iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc1dbda8e iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcfd5e6ef iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe17adeaa iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe1c8b9c3 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe315dc53 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe8e916f5 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeb93d82b iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xecc35a9f iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf7270a62 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf744abbf iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfdca3fb3 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0324c4bb iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x060d4666 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0b9a9244 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0d195181 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x177741ce iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x21ae06c8 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x35ce7067 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5f1c3c5a iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8996733c iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x958ef580 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xacf20da4 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xafe0371f iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdfd1447e iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe28140f1 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe83b7a09 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf04e31bf iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf69f5015 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0ebe92ce sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2ad3b7ac sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3512efa0 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3fe9c547 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x430e8e40 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x46cc4db3 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5a8c63df sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5f121ecb sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x715f6608 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x77bc9f0d sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7bcf42bb sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8a11fd72 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x96434529 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa837153a sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa909b422 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb99f99bc sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc2b2c22e sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc54917b5 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc8a9fa6b sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd03c8d2c sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd2e25159 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xecaf6053 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfac5a8da sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfd7d3cd6 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0db8a176 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x149f3538 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x199cdffd iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x19e2e798 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x29c4523f iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2a5e2761 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2b26e401 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x31a0bc64 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x36209d38 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47315997 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4896720a iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x49b11aab iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4c49f4f0 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x57eb74c6 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5a926fb3 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5b6dde96 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x691f9f3f iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x70bcc518 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7bb805fb iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7c19174f iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7e4b44fe iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8e7b4fc2 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x93b7cfb8 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9bc44766 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e413b3b iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb1b84d2a iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb78058a9 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc7b33ca8 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcc06c2cc iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcf6607ac iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd20eae5b iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd69d917a iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdc04d5bf iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdd4a8916 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe113e42a iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeaa3a1fc iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf22172ba iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf3930a19 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf4ae06eb iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x61e45b8d sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7e5856aa sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xb1bd34c6 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd262d9e1 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x2e30b1b4 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 0x090025e0 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4aba23df srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6d41f876 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6f49a3ab srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa1174556 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb440e881 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x5ad82155 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x79977c77 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x7bbfeb67 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xa2b03449 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc80836ae ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xd189efa8 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xfbe26958 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x3c820972 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x82ca5253 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x8f3329bc ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x9873150a ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xdc98a9d9 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe6d55574 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xfec60086 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x54eec977 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x77207db5 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xcd84d3e5 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf36cde7d spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xff2f96c3 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x36090fc5 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x60b47bf9 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x863a2fe7 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x93842596 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x915d4bdd spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xe0781c50 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xe2ff15ae spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x265595fa spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3ac5927b spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4111a60f spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x44d502cd spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x46160488 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5e7f81d8 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6cdf280a spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6da3ebff spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8fd32c9d spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x94ec0d8a spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x953ac15e spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa2aab18d spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa776e784 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbb3f5eae spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc4e03f3c spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcd28d9f9 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe6b7d97e spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfc73e7b5 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xcc2034c7 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0e60d25f comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x17e19e17 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x195859cf comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2064ae7f comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x20cf3b1c comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21e84a14 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x260b36c4 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x27eff325 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2b5d0608 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x30e906e8 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x321a2feb __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x34ea3764 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x415480bb comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4a9de052 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4e4eb81f comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x519470e2 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x60a7574a comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7a4fad5a comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8067f693 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x84734311 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x928ef534 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9924c085 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa4164273 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa86b53a0 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa9569ef5 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb0f07a96 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb4c26e8f comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb872de43 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc4a0b35d comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc6d5e406 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd138b33a comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdc3f8fe5 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe3ed3ed4 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xeb57d9aa comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xff04d3cb comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x0e7dcb1d comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x3d406fff comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x666395f5 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x7eeb4b8c comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x99f6b367 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa1de19d0 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xcd09d2e5 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xdae7d8fa comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x11295c9b comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x2cd4207e comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x92e26c21 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xae4149b4 comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xc885a270 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xda87d98e comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xdd61385b comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x143db102 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x3c5df7e0 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x4e8acc30 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xaaa1e12d comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xc2dc93ae comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xd8f6f9cf comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x462cb547 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x33470749 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xa981f866 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xfa70d729 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0c8df0bd comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x110fd59c comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x122a73b9 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1dc5150c comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2bb605c0 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x371f1b88 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3a7b2852 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x47d11e2a comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x4953a49d comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x54632746 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x555de6fd comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xbb80a217 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xff1c3ba0 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x0fc4de10 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x236abe2a subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x87e39c6f subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x1d71673a comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x195bf2ab das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0475295b mite_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x061dae2f mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0bb50713 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x15d29d1d mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x17421f94 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3760eef2 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4f038a92 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5fd2a018 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x69333f69 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc6353fef mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd79ce934 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe0431023 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe354990f mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe3d47675 mite_request_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfbf2d8ac mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfd9e0d11 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x423887a2 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x67d8343f labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x060b0353 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x25dbc8cb labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x409a8771 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x5cefee99 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x6f0badcb labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x05da2b56 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x3459ffb8 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x44c5451d ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x52986b90 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x6b0671e3 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x6cafe027 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x84af9302 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x8d035338 ni_tio_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x94c1c333 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb942c421 ni_tio_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xbdb817c8 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xd8f1ee7c ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x386869b6 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x4ce26bcc ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x7b368fb8 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xa6447a30 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xd6f4428f ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xdc1e985f ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x19d26887 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x5a747fe6 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x935ac57f comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa9a43c3a comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xad196321 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xb26598a9 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xbe28a6f6 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0xccc1c87c ad7606_remove +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0xeb4ca455 ad7606_probe +EXPORT_SYMBOL_GPL drivers/staging/lustre/lnet/libcfs/libcfs 0xe44c317f lustre_insert_debugfs +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x018fe561 lustre_sysfs_ops +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x1143504e ldebugfs_add_vars +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x12fea199 lustre_kobj +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x188b2649 ldebugfs_register +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x18c0a6eb lprocfs_obd_cleanup +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x1ce56f6f debugfs_lustre_root +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x1f1714c0 ldebugfs_add_simple +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x46c6fe90 ldebugfs_remove +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x595771ea ldebugfs_obd_seq_create +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xd2e11e71 ldebugfs_register_stats +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xe92f1f3f ldebugfs_seq_create +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xf3e0e847 lprocfs_obd_setup +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x05c8b9a3 cec_received_msg +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x182acfb4 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x3f1cc738 cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x5bfd87d0 cec_transmit_done +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x6444d377 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x68429ecf cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x7690067d cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x7fe32457 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xade0a0e5 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1d01a7d7 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x29f6067e most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x3dab69ff most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x57d8d9a7 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x709bcee7 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x7d0f0cf8 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x918ef191 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x991a54ff most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9ba7d746 most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa0031df1 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa4d08a1f most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xdfb6bb24 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x047ef481 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ef1d765 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ffbbe5d synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2da1d496 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4023a9e0 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x504a8c23 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x858d0b71 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8700fedd synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xa1a20d31 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb35aaab9 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd7eafb2c spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xeddf68d5 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x0384dbc6 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x14a4492f wilc_netdev_init +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x2ff19f35 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x6b2ad5eb host_sleep_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x6e7f35ea wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x76838e84 WILC_DEBUG_LEVEL +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xa8afa6d9 chip_wakeup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xcf6e88a1 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xfd4b93d7 wilc_chip_sleep_manually +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x36aa2e6a uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x555a2259 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x65a51243 uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x898af6ba usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xcd148ec4 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x0cc65d7b ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xa0c58c16 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x7639f155 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x8a8a5028 imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x8a9cfc09 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x22405c54 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x489864f2 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x59b9d147 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x742584f8 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xecc25fbe ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf6724877 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x074d8340 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x07895e60 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x255250af gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2c000b8b gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2cb1bebd gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2df0ae2e gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x50c48456 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x50e365c9 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x80326764 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x81e80a1f 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 0x9445a291 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa4deff8f gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xaaecb759 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd95bb9c0 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe8bb82b1 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x351f3dc7 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfa8703d4 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x2e2258b2 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x5735ab42 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x5baf9aa0 ffs_single_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 0x1b1cc3af store_cdrom_address +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 0x286a896d 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 0x2d10b6a7 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x348b314b fsg_store_nofua +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 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x50f536b1 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns +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 0x5f661d5a fsg_lun_fsync_sub +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 0x74599152 fsg_show_ro +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 0x7f22fa76 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x809568f8 fsg_store_cdrom +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 0x987bc0cf fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put +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 0x9c8d025e fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get +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 0xb2f9d410 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb4f94b59 fsg_store_file +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 0xcab3d7d5 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd80ce854 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd93f24c9 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe26bb372 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe29d33e4 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 0x31b9610d rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x322ab97b rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x365bd92f rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x37fddb32 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x42dd197d rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x46203c06 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x48429cfd rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4cb0c698 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x738fb8f1 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x75fc260b rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8c728604 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa72d5243 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcae4bf99 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcca4900d rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe48d99a9 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1334e951 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1392126c usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2ac34cb8 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x35db4f90 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4d84b612 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x528b46cc usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5588eda5 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5f28ee71 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x61690ac3 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x64d3e121 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6c56554a usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7403ca42 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7af51906 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7c0459fc usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8305d7f2 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8945189a usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x98632910 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa8dfa65e usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa953e64e usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xad30a0ad usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb14c4b0d usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbc943b32 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcc3db2cf usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd74fb983 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd79a4447 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe081e35f usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe186012f usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeba6930c usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xec0c83d5 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xed735d26 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x009d1d8d usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0c900b81 usb_ep_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x10aae872 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x11a296bf usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x17fba9dc usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1947b6ce usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1a69a2d4 usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x26f662fe usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2e9029b3 usb_ep_fifo_flush +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x302cafb0 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3a53b0d2 usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3c01002c usb_ep_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3fb236ea usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x423774a7 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x48e2a1d1 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5162f30b usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5295a662 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x600b15ce usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x68b8ec16 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6afa37d6 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6b84e881 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7d81fa19 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9bc56a5c usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9c2ccfe0 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa9639f45 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xabbcf461 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb6fa8d98 usb_ep_fifo_status +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbaa79191 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc5bf3c3a usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xce3d337b usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd16b6bce usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd67d8fa1 usb_ep_set_wedge +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd7904ea5 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd8d32b10 usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xede178f7 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfe981a0d usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xff6ac60f usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x77419a81 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xde09dc8e ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x24d51fed usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6a295021 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9242db99 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbee42ebe usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc1a76b09 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xcfa55886 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd5f26ecf usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf137bfae usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf7e9b45f usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x424db8de musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x54f28290 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x79ed55fb usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xd98f685f usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xe79d4ed7 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xfb600452 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xdbc85cbd isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xb4ef0a80 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x035d9d39 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0fbbdf2e usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2151e04c usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x348a7a02 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3c6a52b5 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4d5a02d8 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7835c0e3 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7a99e63d usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x87538dcc usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x89cb94a4 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9ee36176 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9ef22e63 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa1cfb6ed usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xad3bd7dd usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb191ddf7 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb353d4db usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb568eba3 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb5e218d4 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbe0c88b9 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc2806f50 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xeefb643b usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x03d5fe4a usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x05422b93 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x064c52e1 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0a9b0466 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0d30cd9c usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x26f366f7 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x36747b7a usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x391e54cf usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3b4334a7 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x458560b6 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6154b815 usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x65f815b7 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x71ce9e3b usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8357903e usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8665917d usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x915b0d79 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9612884b usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa998b609 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xae996949 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb3c4f154 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbb7ff9f5 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc1d24bed usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd62ac044 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfb286f43 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0f0b96d7 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x22e3cc49 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x34ca7b1f dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x41c685e4 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x67edd1e4 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7eb8c713 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7f88fb18 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x85fdcd61 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xac11e6b3 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb0d4b272 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb1b632e9 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xda1a0392 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe5b2c3cd usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0bd816f0 wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x25c3e558 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x44621856 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x5b92cafe wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x7c44f299 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xad927e0b __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xd811f31a wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xfc378dda rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x12c23228 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x245a3695 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3374a1fd wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3bcf7f2c wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x41734b62 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x465a75ba wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7785d726 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x85c8e3ba wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8b3cc546 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x988ee866 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9bda8cc9 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbcfea39e wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc97d0f9f wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf7bdf4bd wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x97bc99b1 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xafaab6b7 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xcce465f2 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x1a0f340d umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x3be3a400 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x4d5efa4f umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x7d531845 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x84346572 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x883ad38c __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xa93e7e72 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xca8e7db4 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x00002870 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x007a3e8a uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x06345409 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b952dc4 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d78016e __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fc02440 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x16a614aa uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x16d0a701 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x251dc0f2 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x30b3d921 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3390e07b uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x379790c2 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x41633002 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x475b9226 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x48c4f9ac uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4abb82b2 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x55fd7c4b uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x589cfa38 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x59d64be3 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5cb240ac uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6b3a4c11 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x725b147c uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7922121f uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8ac7eb1a uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x90d5c0ea uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9791bd83 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9b433bbf uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9bb22257 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa1659299 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb309f9d5 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb97d5db3 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc7d7ba5b uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xccf9dbe4 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xce1d114b uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcf9264ac uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd0a649e0 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd489470f uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe6bf664f uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf3254f61 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/whci 0xc9633860 whci_wait_for +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0054007f vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0116631e vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0c897b1d vq_iotlb_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x135479bf vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1a0056c0 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1b529697 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x21b83365 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2756340a vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2c2132dc vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2d808cc1 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3148721c vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x327ad3fa vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3748d502 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3a4266e5 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4217bb15 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x458e1875 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x460497ea vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x50341efd vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5736619f vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x59c54b2c vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x66de7f52 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6b938d8a vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x74539c29 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x792e0079 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x88588ed2 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x940d9697 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x96ae1832 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x97ab71b7 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9ed1694b vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaca6a8eb vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbe40d9aa vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd0c98000 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdaab5e1c vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdaea19a0 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdc790819 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe431af4e vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf1b68e70 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfaf0ae20 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfc84a365 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x07932559 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x13a5c4e4 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xaeacde74 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xaf2956e4 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb61d8fc4 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x0dea895d auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x137a9b01 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x20b850ff auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x23074ce0 auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x7a1351a8 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xc0bbe7e4 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe0a65569 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe989e1d5 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xef7e4787 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xfad3aee7 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x47d7b056 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x4dceca59 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x9c0d11e2 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0a7f6a63 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x15621715 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x39c3e15d w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x45f8682f w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x83bdb39f w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9cc57560 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc2255ccd w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xfaad9aeb w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xfb333ec5 w1_next_pullup +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x3ecc51ec dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x45e4291a dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x92e34429 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x63f6f648 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x75a10d2b nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7b50f26c nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa66e9507 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb61935be lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xee533f70 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf8514563 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x063fa5f1 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x074a51d8 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x075794d7 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0835b6f9 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09409609 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d53efff nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1119d60e nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11c9780c nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12490e07 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12b231f0 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1395cb9e nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13c318ac nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14650792 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14ab93af nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18b0da89 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1932e11c nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c231244 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c78e3d7 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21cacc76 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2723bf6b nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ef8ee5e alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fab261f __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x342c600f nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36924163 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b9bb108 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d84f8f8 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3fc3badd nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41372244 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x422fd6f3 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x427c976b nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42b5b1a9 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4399f678 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43e3158b nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x457a2bc1 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4993d33c nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b9069cf nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e1ed3da nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5068f57e nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52803cb9 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54a486ad nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55151211 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57ee1d19 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b75af97 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5fcd38b7 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x606565f5 nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6207ce8a nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62ddc903 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6738a3ff nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6939d3b1 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69da08f3 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6efcf613 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f4e06d1 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f8642c7 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x700a6b15 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x737949b3 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75d7e4a8 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x765d79b2 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76f21ced nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b18f748 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d667e6b nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fc88e1a nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80d94c27 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x868d460b nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ba6c196 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f232853 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91386e63 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9153b7d5 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92e6a29b nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93c7f894 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x956fc5a4 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98a07447 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99370178 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x998b326b nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b831f64 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c803e12 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d45ee15 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9dd42739 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9efe09f5 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f817429 nfs_commit_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa49f2964 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa54178e2 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5d6c949 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6a6f71b nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa87d0f44 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa97789e4 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa4b6ed1 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaab8b673 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae017c29 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb110738b nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb38a2809 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9345d50 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbe9118f nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcf17267 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcfe1c40 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf6c8bb5 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbfeb07b7 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5860dd4 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc67d4fd8 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce05e17f nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0503538 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2e4a99b nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd39a62f6 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd956f829 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda7b30c3 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb087bf5 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb7c1491 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc76f2d1 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde16cac3 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde1d22bc nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf6825e4 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0d75b76 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe25471fc nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe48bf5ca nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6093b6b put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6cf5259 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb0de887 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xebd38379 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec00c8da nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedd9ab3c nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1953d3e nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1bdfb6c nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf28a7f8f nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf38af01e nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf554f54f nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6e3776b nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7b17fa0 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8c374e1 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe60a8b3 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xbf863e47 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0cc21093 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x116c573a pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x13739865 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16a26f2c __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ef9bede nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f86daea pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x229ae66e pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26997c73 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a0f2d3c pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c2d80ce nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d323c00 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d96b064 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30c9096d nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35aacdac nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39781243 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3cba589b pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45dd152e pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x469225e0 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50252cc7 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x540ded2b pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56a8fd7b pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x647fd035 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x726d771a pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7369b951 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7954e7c0 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82d54c27 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83893875 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86830f79 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x88fed8da pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c2986ab pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ce78d04 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91425f08 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9445563d nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x980a503a nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a8e110b pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d7d8d3e nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9fe4410b nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4ac4df8 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9778fc0 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbabb430a nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc95a46b __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe77bec7 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3b0b41e nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc5aee30a nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce36877b pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0f3ea96 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5e5f080 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd65b7e5f nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd89de18a pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd90c160a nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda07150c _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda6d5b3a nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe4ca22d7 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe542d1d4 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee1220b0 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf03e0840 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf44e0330 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf76f2a9b nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7b39977 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa6ea5d1 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfbc4c116 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x98635d61 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xbd104cb1 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xd0513db0 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x19fc9cd5 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x244e70f1 nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x064b38e4 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0daee914 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36a28a9e 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 0x673e1950 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x74a77e78 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x74d8c0ab o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7df13e08 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 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6a95aee o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +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/dlm/ocfs2_dlm 0x0ac03586 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x145021cb dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa1010f69 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xcb35f6cf 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 0xebf54d51 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf3e102bc dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x48558ca3 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x598d0373 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x90ecb348 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa127f007 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0x9a1f1437 torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0xbbf93846 _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xbecf18ad _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x17e74f72 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x435c58b2 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 0x201d8ea3 encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x0adcb055 base_inv_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x221df614 base_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x4da25bec base_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x63f42b6a base_inv_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x76203267 base_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xca3140ce base_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfa5eee0a base_inv_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfc02472a base_inv_true_key +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x76735bc1 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xa94e818c lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x4776d375 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x62e2132e garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x99b04983 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xafa85fcb garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xc8b14294 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xcb15495d garp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x23271827 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x2d666a06 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x7dbdbd6d mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x92bdc050 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xd359905a mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xeead78bb mrp_register_application +EXPORT_SYMBOL_GPL net/802/stp 0x7fbeaaef stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xbe856111 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x7454d88f p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xd8895f4d 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 0x8b7a4f14 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 0x07558a75 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1ffe3a2b l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4184a455 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4de07906 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xba2a8a51 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xca110d8f l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xebf579ce l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf9c24717 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x23a8f21f br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2701d82d nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x35573757 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x47316861 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6494cfea br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7e07e127 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8ffcbe21 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe27224ce br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x358e2d1c nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x8b95161c nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/core/devlink 0x043b3190 devlink_port_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0x1c18af9d devlink_port_split_set +EXPORT_SYMBOL_GPL net/core/devlink 0x3374b458 devlink_free +EXPORT_SYMBOL_GPL net/core/devlink 0x40a1c329 devlink_sb_register +EXPORT_SYMBOL_GPL net/core/devlink 0x5cf24c1c devlink_sb_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0x5e56e83b devlink_port_type_eth_set +EXPORT_SYMBOL_GPL net/core/devlink 0x63a2c041 devlink_register +EXPORT_SYMBOL_GPL net/core/devlink 0x9acbc297 devlink_port_register +EXPORT_SYMBOL_GPL net/core/devlink 0x9be7ae3d devlink_alloc +EXPORT_SYMBOL_GPL net/core/devlink 0xb1fa8912 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL net/core/devlink 0xbba5f852 devlink_port_type_clear +EXPORT_SYMBOL_GPL net/core/devlink 0xdced2b2b devlink_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0xeae98f16 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL net/dccp/dccp 0x08cfc3bd dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e5ac282 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x23b6a327 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x27b32fc3 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x375d5efc dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x38b85ee7 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x54b979f0 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x58fab874 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59c6024e dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5c885862 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6638dc01 compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x66aeda30 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x74c24698 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x75f253dd dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x762f7226 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x78c9f3e3 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x79b3be65 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7c3114f7 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7d02c015 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8415af89 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x897f5938 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8b34ca96 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8eae7966 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8fd9bce7 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa3b52f77 compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa4781746 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xad91de54 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaf044b20 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc40104ba dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcbfe89b3 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcfedf24d dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe716b6c8 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe99b7db4 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xee149f18 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfef51378 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xff4446cb dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x45eeae65 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4878e59c dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9b1e190c dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb1b14ccf dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd374491f dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe8683990 dccp_v4_connect +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x9541bd63 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa613ae6b ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc9e0d73f ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd58dfa29 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xdef9d918 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ipv4/gre 0x696c673d gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xefcbb254 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1affe76e inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2b506dd2 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x938ad087 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb06a4805 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbe950109 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xdbb9fb7d inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe2495b6d inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe8a38cf3 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfcf8d86a inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x36f444c2 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x263baf85 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x505fb26d ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x61e7b907 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x77f4ea06 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x796caa94 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x83bef900 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8a560fdf ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x96e6e1fa ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb2085c5c ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb5ec4f6b ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc43d8acb __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc6902221 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc6ec41c7 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcbf99d1f ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe9bdb80e ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xc28ca85c arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xcc886617 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x54d72599 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x4dec00a5 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x522e6747 nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x5b0ec27d nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xb6ccd2f6 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xcd1acaac nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x189c5734 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x0e17cd21 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7c25f20a nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9d6da431 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc347f256 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xfe2a8c86 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x7ebb10d1 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_nv 0x0536101f tcpnv_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x1944d697 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x1c0cb369 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x593c6a34 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x83e5342e tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xe64a3474 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1699f359 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5be31999 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x778e764d setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7834e9c7 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xaba1186b udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xfa789dcc udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xfe014fc7 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x01e0bc63 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x4373fd71 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc7206f7f ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x03bb459e udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x65d21088 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x760106ae ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xbe6f193d nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x649b09be nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x66dcf2a5 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x7c78466c nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xb58794c2 nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xc9c882a8 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xe57dfde3 nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x977838b1 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4e92e317 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x657bcf0f nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xbb6cadf1 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xcd6e3b03 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd20b91bc nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x44c3b663 nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x029914c3 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x258753f4 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2f7880b2 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3092512b l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x395aad1a __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3982c7e0 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x48464826 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x67887274 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7c4edd11 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x86fc228b l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8c89dc65 l2tp_session_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8e8b78fe l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x99579420 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9c2b3acb l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbfd3f1ac l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe97499c5 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xd2649a9c l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0195fafa ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x05d65921 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0bfac8ff ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11e1f72f ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x179571dd ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x18436729 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1a5da1fb ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f9aac4f ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x217d93da ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x286c3da6 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x35acc3c7 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6a4c6c01 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x83f34928 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x93941a55 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xabce56c9 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc65ce864 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcdae534e ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdb329805 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x02f7d577 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x38b4c0c0 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8f6d84ae mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb954100d mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x317a5c33 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x55464b7f ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x58c86e32 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x66bbef3b ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x67246d21 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x80c7fb27 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8308671b ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x883fce72 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8d4f4d05 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2295fb4 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa295d2dc ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbc44adba ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd7d876a3 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf2f1c969 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf4ad435c ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf6943c38 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x3c891787 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7d1b93dd unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb9749848 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xeb386ad8 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00a5c48e nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00c1b092 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x079800f8 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ab19cfa nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ba5ae2e nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0cb164cb nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ef03ee1 nf_conntrack_get_ht +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f3b8456 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16389957 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19948f52 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1af3e7e4 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e467e17 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23ed18c7 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2756869a nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27850455 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2891fba8 nf_connlabels_get +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 0x2d96a3ae nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f2638af nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3526d2a0 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3993ccac nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x401cb078 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41174c03 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41d43e12 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4438df51 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44527a0c nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x445aab17 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x46f9a7c4 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a733c47 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f6ad17d nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f9f2ecf nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x50a1980f nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x50a61953 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d87b716 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d96004a nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x612aef13 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61ba6800 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6202c9ce nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63cdda93 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x669dac4a nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b59ea45 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x71f60085 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x77a8b02f nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d2061fe nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f89ff5c __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80fd0752 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83bad8b7 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x89e62c60 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8bccbbf7 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c40f4cc nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91394eef nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x944aea51 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x94709f64 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97924676 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x998eb2e2 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a5d657a __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2d5412b nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa316e9a1 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3cdeace nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa499ce66 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa67c88d3 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8fe50ed seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa8ac271 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbdc4aab3 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe4fa3b2 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2be2bda nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3f8fcd7 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc5d02451 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8db2459 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc902a1e7 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc909e35d nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9c16455 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9393e4e nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda2ee13c nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf1fa7a3 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1790621 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe38e97e7 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4391a52 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4be45d1 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeebad536 nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7dc1b75 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9f18234 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb4d2315 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xb81ceca2 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x4dbf0b5a nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x58adc736 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1f582bf4 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4d6e8bfa set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6e369547 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x86933d19 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa8fe8658 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb32a1d59 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb8ef5c2c get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc3b18b0d nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc59937d9 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfd6d93ca set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x05ee6c7d nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x5e0bfd8c nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe2c351bb nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe4c81f7d nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xfe2a2e39 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x0293d68c nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x9c223f4e nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x003101d2 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x54607bec ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x61bb9c75 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8a6d64ba ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8c7d1ffe ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd5da28d9 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe1f78758 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x79ff8ad9 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xd2d951fd nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xab438117 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x10485da3 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x3dc5067e nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x478d24c8 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x4bea399d nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x00fd5abe nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x27144542 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x27e5509a nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6bc01af4 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7f5036f7 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x84796405 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf563579f nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf7f3039d nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xff777c4e nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x4fba344c nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x6aefd52a nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1906324d synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5f339439 synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xeb96a22a synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x04e44c72 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x07f77de2 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x17284375 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x34ed28b0 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3845fe8d nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4079609f nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4f51b4b3 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5c797afe nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x62692a8b nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6ec69406 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7782f6d2 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7ce92235 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x858def3b nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x975fe152 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9cbfda97 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb7c2e4d3 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbc91e0e3 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcfacd529 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe48adc81 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf1e32744 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x578b8b19 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x66f7eb02 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7d69b481 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8c5e01a6 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa0e7b97c nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xec2a9e16 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x7d884830 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x8939282a nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xfd982422 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x940ba8da nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x4b5c623b nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x52a5ffb2 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xcc6c7278 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x1bbc999f nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x4cd8a3bd nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xabe777a6 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xd853d763 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xde114d6d nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xf07e8779 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xfa7e524b nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xfb049bf8 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x69adb438 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa160a031 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xdf601b16 nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x40ad01b4 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x47213e8a nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x48b36c49 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x08bea14f xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0ad6f36b xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x16f9b74a xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2b877c2a xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x321e8039 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4ec894a5 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5378c413 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x632274a9 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9ac40232 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa564a1ec xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbeb7d97a xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcd462e46 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd0bbd186 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd4035fd3 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xebfa680a xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf090378c xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfb632090 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfe80c0bb xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x00204983 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x482b6a12 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x7ff88f47 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xa7f21552 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xbe56bc4f nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x2054cc82 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x2643ddb7 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x7fa6ec45 nci_uart_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x17d7e89e ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x306765f9 ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x56566581 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x567f8a32 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x724dd8d6 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x85587463 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x95cac608 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbae849e7 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xeaca8aff ovs_netdev_link +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x08f0b44d rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x0a48993d rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x1470bb25 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x1e4d86d8 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x1f85d3f2 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x2786399d rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x390d789c rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x4edd8dec rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x58141493 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x5b70cc52 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x5e552bf0 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x6ac3863a rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x73612c9f rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x967200b3 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x982676f9 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x9dff0300 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xb180e635 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xb5888d16 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc945edab rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xcadd0dca rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xd1b1e0fc rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xd36e8129 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xe66f8abd rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xecc49867 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xed12fc33 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xee05ab2e rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xf5c2939e rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xff6a2813 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/sched/act_ife 0x238b1fb9 register_ife_op +EXPORT_SYMBOL_GPL net/sched/act_ife 0x32949a6a ife_get_meta_u32 +EXPORT_SYMBOL_GPL net/sched/act_ife 0x43c143e5 ife_get_meta_u16 +EXPORT_SYMBOL_GPL net/sched/act_ife 0x6b3cbd14 ife_check_meta_u32 +EXPORT_SYMBOL_GPL net/sched/act_ife 0x78f9e296 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/sched/act_ife 0x88bfffc7 ife_release_meta_gen +EXPORT_SYMBOL_GPL net/sched/act_ife 0x8b8d9e01 ife_encode_meta_u32 +EXPORT_SYMBOL_GPL net/sched/act_ife 0xa39666ec unregister_ife_op +EXPORT_SYMBOL_GPL net/sched/act_ife 0xaacdd8ae ife_alloc_meta_u32 +EXPORT_SYMBOL_GPL net/sched/act_ife 0xd7a9660c ife_validate_meta_u32 +EXPORT_SYMBOL_GPL net/sched/act_ife 0xf40f1d62 ife_validate_meta_u16 +EXPORT_SYMBOL_GPL net/sched/act_ife 0xf8049722 ife_alloc_meta_u16 +EXPORT_SYMBOL_GPL net/sctp/sctp 0x390b1cd4 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x562052ce sctp_for_each_transport +EXPORT_SYMBOL_GPL net/sctp/sctp 0xd4b2c957 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0xf1a4a92b sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x1c872c1d svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x252de4c0 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4530fb7e gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00be7b75 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01f10e73 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02cae76c xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x047d23b8 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05f5934e xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08ab00ee rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x092e798a svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09a389fe rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a06e680 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ca78960 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cc3508b __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0eb0f6a5 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fc8ed6e rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fec38e7 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ffc51f0 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10b7c1d0 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1266e71a rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13786b99 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14c615cb put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14f3a58e svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1677e88c xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x167c64d5 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19a0fa93 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a93061e xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b94333d rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c4921a7 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e9c613b gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x205866ac sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21bf322b rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2258d96e xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22a3aed7 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22a76a2b xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25e29ead xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26e563b5 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27ae67b7 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27b40f78 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x286cba92 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28a6b577 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a0ffe63 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b296f38 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c515dd0 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e5eecb2 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ecbe719 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2faf23b2 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x304209ca rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30c3da25 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30fea5bc xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x377bc919 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x380b8694 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3aad49de rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c04cf4d rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c263659 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c311ab2 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c590809 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d91b0fd rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d936e0a rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e4b2b8f rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40581d58 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x422bd50b svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x443189b9 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46266538 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4788b7b1 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48393f51 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x489bb77a svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4985e77b svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49a9d203 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49bae331 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4aac1d0f xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b45867b rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c24c2bf xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c5d02fb svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d426f6d xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52f25cf1 cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53cd31b9 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55eb3157 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58ae0799 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58f9e9cc xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5af101fb cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b114090 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5dc7fc38 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5eb68672 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x602cfa30 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6084f22b xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60a4bb21 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6177e563 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64694700 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66102a77 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67fcc817 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6923e798 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x697270f3 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c9f14c1 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ca24b6f cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d4017f4 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75c06ba5 rpc_lookup_generic_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77aa5211 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77f5bdc8 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77f62706 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x797a5471 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7aba04d6 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b146506 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d5d6b1f rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f2ac3a4 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81076165 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x813e14d1 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x822b221d svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x824e1a07 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x858dba42 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86a68a70 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86be8a99 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8777e693 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x897c00ed svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b0b7ae9 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b61ce9e svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d11bc56 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8eb81536 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ed70da7 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x920cbe9e xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92490118 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9762ab25 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98a1c7ee xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98f406be svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99737fdd rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c7b3f3c auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cc2ddeb rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fd31e92 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1909d21 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1a48337 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa481c01a rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5b21c3c rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8edabd1 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaae84807 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab1febf3 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaff296ab rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb026b078 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0957261 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0f73598 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb14aeb8f rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb18b5df4 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1a7e965 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6b14969 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba6a6c47 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbafd152e svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbf4f3d5 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc1dbaf0 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcf0728a svc_rqst_free +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 0xc32019e5 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc396ff4b svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4271218 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc431fdce svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc44f7da1 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc50538e1 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc55586f6 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5629854 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6b21344 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc85becfb xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8f552a7 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc92c9f6b xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc988534f rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca59db48 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce00adbe xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf6bd0f5 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfe1e545 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcffacb3c csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd13b16f1 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1f3cd16 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd25b59d4 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd265b6e5 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3f8dc93 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd41949f3 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5e5189c xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9068442 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9951dcd svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9a0ee26 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb0ae1a4 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc27a015 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcfaee09 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd8b322b rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde3a6547 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf9746fa rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe064598e rpc_cap_max_reconnect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe109c66a rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1abfe3f auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2c2f5a9 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3f43963 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4ce3736 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6563e2f xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe79b2ef6 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7b0684f rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe84a8421 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebc7f233 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedb70752 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee20b341 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b43e2f sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1b98c48 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3a71f66 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf54ef970 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5a6d549 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf65e5264 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf83492ee rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8ab2aac xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9226a99 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf92ca097 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfad03441 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc4c3353 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff1be61e rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x001fc431 virtio_transport_set_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x040cdde9 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1038295c virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2425e3f4 virtio_transport_set_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x24c2f472 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x26183fd5 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x40df33aa virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x42316e4c virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4261e948 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x461e3ba8 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x483fa838 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x54203c5f virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x69633f20 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6d939948 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6f2efd23 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x77839160 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7dd73a1e virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8b7c54d9 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x98d42558 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x98e75164 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa9e289e1 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xab7d7c31 virtio_transport_get_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb962ff89 virtio_transport_get_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbda6b63f virtio_transport_alloc_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc53e1aa9 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcc6c5583 virtio_transport_set_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xccf8799e virtio_transport_get_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd09b1ab4 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd0b1b0e7 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd7bf2dda virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdd18d1dd virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe0ada771 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe10615ed virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe16ca3f8 virtio_transport_stream_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe3d8c8ed virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe847cf71 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xea31feab virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfcd2d3d0 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1c52aab2 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x21ec54e4 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2755ea01 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x40d170f0 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5931bbb6 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x84770c3b vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa9ef4e72 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbc60dd16 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc0dee804 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc4fd907c vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc541f381 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd96a8510 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe9c417e2 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf0e2524f vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfd9733ae vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/wimax/wimax 0x1aa1c1a1 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x2f15f529 wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x409207a6 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x65dc581a wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x6a42b51e wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x7a5d1564 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x7ac13527 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x8d4aa71a wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa9596567 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc95ce1b1 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd92874af wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0xf898d9f5 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0xfedfad19 wimax_msg_send +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0061bb96 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5e7ec521 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x61a15e80 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x797f79e8 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7dbbb3e3 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x81424164 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x843e034d cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9aa06488 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa48e500d cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa49fccfa cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb3b71e4e cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc96c7040 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf99ed272 cfg80211_wext_siwmode +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 0x3bf471d7 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x36e19c51 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x5d4d8bcb ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb2706fcc ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xdc5b29c9 ipcomp_input +EXPORT_SYMBOL_GPL sound/ac97_bus 0x20c60893 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x143f31ee snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x81a0bb4c __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd 0x06eba05a snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x376c81de snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x7aacf2d1 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x9e0fc848 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0xf5019d73 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xf916ade7 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xfecbd91b snd_device_initialize +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 0x48538ddb snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x53bfa4d8 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x55371b98 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5a9394f8 snd_pcm_stream_unlock_irqrestore +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 0xa973ba11 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xad2a97d0 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xbba29ee6 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xbd1a6e77 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd145a5e5 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x09acc2ad snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0ebfbd3a snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2924517e snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3b612ba1 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x42ff60e9 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x93d83813 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9e7c2eb9 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc890dc5a snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd4535051 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe6e4731c snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfb196fdf snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x05d6cfa2 amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0bff1d6d amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x18b04aba amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4c54a55e amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb6a1cc92 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbce991a3 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd8af12cd amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x021e4193 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x098f55fd snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b038770 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0e6896c4 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0fa848a4 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0fb4ae77 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x158e17eb snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19cedbe2 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1cc56cf4 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1f671d66 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x234a5852 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x23ee5dbc snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a5ab43e snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2baf586f snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2dd77dc6 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e1f240c snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2f9cd257 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34a8b7ab snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x37e8a1ea snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x39ec9c9f snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b9d6e13 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c40c916 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3d82dd6c snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3d8d6fc9 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x555e5c2d snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x566ef9d8 snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x588825ae snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a5eb3cc snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e4c27de snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x70518152 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71b9b4ca snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72fec753 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 0x7c7c250c snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e10491d snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x81c79f1c snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8478f07d _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8496c153 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x86eeeb56 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x893dbfd1 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8f8750d5 snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ff00424 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x906423ec snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9094a912 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x962548c9 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x96a384bf snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x989ae541 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9a366ed snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaa6f6400 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xabb8cfc3 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb01860d5 snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4c52973 snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4fb0ea3 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb5d4fd9b snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb736dbb7 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb9b964a9 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc19dc97 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc84283fb snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc88c32cd snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc8aaf96e snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc8fa3469 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcbda17ac snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd3f74fa2 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4724515 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd6133aed snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd88ab473 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb86ed9c snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdfe82e70 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe2cbc0f8 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe3de2cac snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec43f5f0 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xefd7d285 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa3db320 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfafca68c snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfc2c1107 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfc9134b2 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x2b0d77be snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x571db035 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x978cc4c4 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc5ddd61b snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc61cfffc snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf786abe7 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00c949b2 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01eb431e snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02003ddd snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02aeabc2 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04eed466 snd_hda_input_mux_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 0x076d5820 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0964a3aa snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c591a4d snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0da51376 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10957928 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10f4e932 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11d2849d snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12ef62c7 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x134b5cb3 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19f8e769 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e23aa52 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f760d83 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21baa804 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2511a3b8 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2777c0b4 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28282207 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x299ce025 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a5aa90e snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c0d42f1 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d5cbdc4 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3262212d snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a95c5cf snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ce8417d snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e9736fa snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ef8c22f snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3fd122e2 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x407182e7 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42e56291 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4489dd85 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x489876c1 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49277c08 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49bd150d snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d4d3358 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4da3a0fb azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x528ec6d1 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53ade2f4 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54bd46c6 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54cecfc2 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x568fef66 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x585ecadc snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b8ac936 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f847dba azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x631c6af8 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ce05160 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d8de888 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f069b1c snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f06b87b snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f38a471 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7037be34 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x759013d7 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75d50ccb __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77924c79 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7884e5e7 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81262b1a snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83ce8eb7 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c841764 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e75e145 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ff6a714 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x920c20f0 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93956ef8 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x964cb88a snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98fb20ad snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99a142f1 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bcb0153 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f516a5d azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f587777 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa07ae974 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa18a5ec5 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1b4c581 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3f30e9f snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4cc1d59 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5cfc0fe snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8c0a0e9 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa309c3c snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad69b62f snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb06a287a snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0cc5a53 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1a012dc snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2ce9dab snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb391e572 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4ee41db hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5996959 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb59f774a snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd618777 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe82d1a8 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf15c5a5 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc062a541 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6bcb49e snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8f95738 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc97aa921 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc99e5183 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9d7ed30 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca2733ac snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc891e29 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xccd068a5 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce43c10e snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce76c2bc azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6bd1228 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd96012a6 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc08ffb2 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc3a65e2 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc53ae9a snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd16eef8 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde09d316 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe58ae9a7 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe66eb795 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8e76e09 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe980c848 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9d9f614 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea89d95b snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeae62fd2 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeeb17ae3 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0916e15 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf681172a snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6de3178 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf79797cc snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7ecd1d6 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfda00040 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xffc2ee22 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0239e0d5 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x114d822e snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x23aca662 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x25b37281 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3765ac3e snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3ae2388c snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x45707971 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x532c8aa0 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5b7eba94 snd_hda_get_path_idx +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 0x866977df 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 0x9ddaab35 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb0765311 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb61d899c snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc52ae719 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcf5d8056 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe2befcbb snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe3f7c417 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe97bbf47 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf7f57379 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x52d630a7 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xdbdb877e cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xa2c5ee9d cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xb0e9337e cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x428f3cba cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x74fc8d26 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x96ca52d4 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x1bb76dff es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x82a571b5 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x1081bb6e pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x992f94e0 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xc34970c7 pcm179x_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x2d03e374 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x5723c2b0 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x68de0f69 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x8a0cc899 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x4aae1dce pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x5a041034 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x8f5c5e17 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf2b655ee pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc +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-sigmadsp 0x6b233185 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x91edf0d4 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xda3378bc sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xdbbef1cb devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xfaf8cf45 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xec10dc01 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x1cccd30f ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xc3d80e0c ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xe29e0f1f ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x5a72b207 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x69e17a23 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xa384b860 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xb5713afe wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x400aec0a wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x675319fc wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/dwc/designware_pcm 0x858f15d7 dw_pcm_push_tx +EXPORT_SYMBOL_GPL sound/soc/dwc/designware_pcm 0xa7f94e7e dw_pcm_register +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x5d5b70fd fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x951e4e25 fsl_asrc_platform +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 0x34ffc0fb asoc_simple_card_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4e2a9607 asoc_simple_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x917092c9 asoc_simple_card_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00a50cd9 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01fb639d snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07ff7d0e snd_soc_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b3e3377 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c94c95a snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e51e971 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x109458f3 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14c07200 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15e1b0d1 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15feefa9 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17aaf37b snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17bc2bf4 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17e7828f snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1aa0b7bf snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c614444 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1dad2e56 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x200ffe90 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20aa09d3 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x223eedd7 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x235a0571 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24d0dacf dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x257374b6 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2675ac12 snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26925680 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2783ea34 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x283ccdf4 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x292194fe snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29266215 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a3205f6 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a421159 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b02a842 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x355ce025 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x369ee889 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3afdf4ed snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b560c33 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bb211b2 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bd15f6a snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c2c2f72 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c56d87d snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3cee9cbc snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3daa6dc7 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ec240d2 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3fa466f0 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4040f4c0 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e401224 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x513a8b95 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51f43d77 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52db4486 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x532d5a3f snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56b5a063 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56f20560 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59c055f3 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cb367af snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ea07e82 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ece54f6 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f2ac714 snd_soc_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6119e193 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61881a35 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61cd1362 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6433095f snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64d6846f snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67928930 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x696f50aa snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a2119ad snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b86993b snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fbea540 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7024888f snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72b98a4b snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x731a80cb snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73a9b0de snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7564f589 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x757cbff8 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7640d6df snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77b070ee snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7cbdd137 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 0x8121273f snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82ab5679 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x834e7ee2 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x849e9948 snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8523bb4b snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88155eee snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8914defa snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8dd363ca snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90dacedb snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x920a539a snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92aa8a47 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x942cecaa snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96fe750c dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x975def4a snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98b2a6a4 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98e6a37e snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b55f487 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cdb5dc6 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d4d73f0 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e1ea9a3 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e5c3d93 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9eddd8fb snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0655a31 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa45683ff snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa45a489a snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8b3aaf3 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8fd5fda snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa5c2ef4 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa6b485c devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa7e4001 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaaa1c0f4 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf85010a snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf889e58 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb37b6b3b snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb63d62d7 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7a881cb snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba61473e snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbccac4dd snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcfe8d96 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd52031c snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe5db1a4 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc209fc11 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2d98863 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2f49ef1 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc60720fd snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6fcf75b snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc910c874 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbe49404 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc2aecf3 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce0541cd dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd35b09e2 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd58b304a dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6e368f4 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd97f7895 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda06b6e1 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda9b3a6a snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe19d2613 snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe384d118 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4c636f1 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6508c79 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea4d0c70 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb3df13c dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebbad825 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xecaecb3e snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee202e51 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef3ca4da snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0a5de35 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf24e53b8 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf33064f8 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4fd7f37 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6074ae4 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8c22969 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf98a832f snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9c0f0bb snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc58ff13 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff0b84d6 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3569286b line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3629c61b line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x38693c55 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4ab63e2b line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x538ee7d0 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x57636dec line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5a5848e8 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x67f69ae8 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x73167d85 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7c228f70 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x854ff822 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa2e758db line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcf8de061 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe1000e1f line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xed39aaa8 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfc1fae67 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL vmlinux 0x0015483e disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x003f3f96 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x00619ad1 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00658857 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x007a3860 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x0082a16d generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00aebc35 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x00b882d3 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x00bb6c2f firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x00e5c2ee sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x00eaea73 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00fc1433 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x00fdc66d pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x0106c92a crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x01212bc6 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x013626eb ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x0145c8ec ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x01587d3c crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x0177872b __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x017c0da1 clk_hw_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x0185b82e crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x01b4fa40 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x01b9e8cb isa_bridge_pcidev +EXPORT_SYMBOL_GPL vmlinux 0x01bb2db7 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x01d8e428 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x01ded681 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e5c77f __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x01e75c33 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0x01f1a127 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x01f41994 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x0206722a wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x021ebfda btree_update +EXPORT_SYMBOL_GPL vmlinux 0x0226be4b da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x024a690d led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x026a05f3 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x027435ff remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x0287a024 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x029ed3f4 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x02ab120d nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x02cf29aa usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x02d1f550 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x02d5b319 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x02dbb08c mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x02e227fd do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x02e346e1 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x02ea23de arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x02fda4d8 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x030994a7 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x030b7e6d sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0340d061 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0353216d ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x035b6324 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x037359de power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x0396c080 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03a3e299 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x03a77a48 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x03af713f phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x03d4d6be crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x03d7bf2f init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x03e0f315 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0405b2c8 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x041b0ad1 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x044aaa2e usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x0457a302 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0484f035 l3mdev_get_rt6_dst +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04b0a87f gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x04b5549c __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c6700c clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x04d8721e ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04f4244d fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x05373459 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x056996cf ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x05b4d8b9 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x05c7f958 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x05d9b431 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x05ffe2e7 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x060d552a skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x061dee59 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x062e5a2a pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x063dc76b gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x064164ee rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x06485e41 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x066fffaa crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x06717f7f dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x0673eec7 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x06754630 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x0685bc18 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x06b15882 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x06b4cfbe sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x06b7bc2a tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x06d1335d eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x06e21d31 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x06fb8903 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x0705fd4d kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x0706d2d4 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x0726752a page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x072a376c led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x073b5506 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x078ca859 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07951f82 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07b8cc8a kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07d35f57 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x07de966d pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x07f300c3 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x08007c2c devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x08199910 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x0819d193 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x083b22e2 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x08453e29 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x084ba444 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x087897e2 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x0880bdfd clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x08aa1fd5 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08e8c01b __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x08eddedb led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x09071aac kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x090ae864 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09298835 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x093ec6e5 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x095d32a0 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x0961b62e public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x09671340 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x0969e397 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x096cbc62 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x09876f35 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x09aa94e1 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x09ab0990 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x09c0f718 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x09dc41a9 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x09eb1c8d of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x09ec3370 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x09f3a9af sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x0a255c2e regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x0a27efe7 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0a3577b3 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x0a4c6a59 of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0x0a4faa0f fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a89ce4e input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x0a9d99cc ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x0abe9626 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x0ad07600 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x0b01a2ff evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b2072fc platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x0b3f6af6 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x0b58350e __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x0b825ef7 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x0b90c402 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c3594e1 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x0c393308 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x0c4c9952 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x0c548822 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x0c8c81e9 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x0cba6f59 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x0cbd95f1 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cc59296 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x0cd25349 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x0cead851 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x0cf03bcc device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x0d13e6a1 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x0d314789 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0d36c0c4 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x0d37cad0 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d5dc5cb dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x0d648937 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x0d706d2e rh_set_owner +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d9760a0 device_create +EXPORT_SYMBOL_GPL vmlinux 0x0dcb35f3 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0ddc7adb inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x0dddf1fc pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core +EXPORT_SYMBOL_GPL vmlinux 0x0de456ab nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x0e248e91 nvdimm_bus_add_poison +EXPORT_SYMBOL_GPL vmlinux 0x0e2a140d user_describe +EXPORT_SYMBOL_GPL vmlinux 0x0e36ef8b to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x0e5bc67e led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0e84875e __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x0e912a14 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x0e99cd46 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x0eb1af7f fsl_spi_cpm_irq +EXPORT_SYMBOL_GPL vmlinux 0x0ec3f898 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x0ed8b9b5 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x0ee76149 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x0efb12e4 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x0f0690c7 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x0f125f0a __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x0f2f4e66 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0f3233d2 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f467f74 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f76f709 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x0f7f83e7 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x0f977dac devres_add +EXPORT_SYMBOL_GPL vmlinux 0x0f9c9617 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x0fae219e regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x0fbc5459 cpu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x0fc1568d fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x0fcb32a6 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x0fd5236a blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x0ff3f62c mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x100bd3b6 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10138bff rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x10168b4d phy_init +EXPORT_SYMBOL_GPL vmlinux 0x1037459a ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x104ae901 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x105c64f6 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x10932bbd dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x109c60c7 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x10bc13c2 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x10c681f2 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x10e92f3e cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift +EXPORT_SYMBOL_GPL vmlinux 0x1135eeb2 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x1143403e ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x1145fef8 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x1164dc7d cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x119428b4 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x11a46e74 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x11adcafc crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x11b6467b __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x11b661d5 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x11d4eb65 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x11fc2163 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x120179aa component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x1210a6bf device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x121deac5 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x122f39be usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x1238d8e8 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x12423b60 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x12454766 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x125884e2 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x1265c82a regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x126de229 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x12771f1a jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0x1288e5b3 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x128dfb15 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x12979f71 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x12a5813b module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x12aadd1b cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x12c70b24 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x13559b7e fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1364fffc rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x136650df kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0x1367b8a3 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x1369b336 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x136a4ee6 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x13be4181 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x13c29161 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x13f1bca1 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x13fdb275 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x1409aa59 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x141083ca irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x1421534f debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x14322343 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x145eba47 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x1469a843 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x146ae0c8 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x1492bcaf clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x14958f3e init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x149ee52a mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x14bf4eef spi_flash_read +EXPORT_SYMBOL_GPL vmlinux 0x150e1613 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x15190d00 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x156d6f20 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x156d9039 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x157eb2a2 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x15986b89 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x15a8fc3d bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x15b18e5e fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x15e373e2 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x15f1f92b regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x15fcb556 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x16272c7c serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x16315b0b dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x1645c0ff dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x165a83d4 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1664575b nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x1668a1d6 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x16771c41 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x168f8a00 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x16a1a687 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x16a9bffa bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x16a9e9bf alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x16b1b146 usb_of_get_child_node +EXPORT_SYMBOL_GPL vmlinux 0x171ee699 kvmppc_st +EXPORT_SYMBOL_GPL vmlinux 0x1728fbab __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x177e3418 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x17acf138 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x17bbc656 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x17c05173 add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0x17e2f1d5 cs47l24_patch +EXPORT_SYMBOL_GPL vmlinux 0x17f6430c netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x18091c84 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x180b4e35 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x18200f51 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x1842a08d wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x185bdd9c bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x18b494fe kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x18bd3a7a regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x18bd9797 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x18da3027 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x191d0784 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x1925fe2c spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x193b0fd8 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x197b5eab ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x198d5630 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x199e04d3 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a54231 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x19b28522 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x19bb857a tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19c70ccc i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x19d52bdf device_del +EXPORT_SYMBOL_GPL vmlinux 0x19d944a4 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a01a882 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x1a090522 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x1a0991f9 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x1a157304 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x1a22b902 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x1a2a37b9 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x1a49e2b5 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x1a4d96d1 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x1a8c5907 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x1a989e85 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x1a9a30e6 of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0x1abbd544 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x1acd7d51 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1ad04b3b ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x1adbbe0d gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x1aedd325 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x1b22a948 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x1b248f2f md_run +EXPORT_SYMBOL_GPL vmlinux 0x1b382924 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x1b495408 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x1b6f5dc0 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x1b8fb458 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x1b934f91 clk_hw_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x1b993b37 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1bae16f1 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x1bae3fdf ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x1bbcb1b8 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x1bededce class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x1bf5cee5 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x1c12ba69 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x1c35e5ed arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x1c3813da max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x1c39a1dd blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5af768 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5d0df5 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c7d63c1 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c86b569 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1ccb0f87 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x1cdd5b63 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x1d11d162 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d28341f device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x1d33b990 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x1d4f2775 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d5f1478 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x1d7148c6 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1d9bf0eb dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x1daf87f6 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x1dc3da0c rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x1dd4f2c4 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x1de28532 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x1dfbcf4c mpic_msgr_disable +EXPORT_SYMBOL_GPL vmlinux 0x1e04dd7f bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x1e0e775a crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x1e293325 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x1e2c6a69 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x1e472bd1 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x1e562cc7 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e6d256b find_module +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e849a74 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1ea2bc01 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x1ea89b80 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ecc368a cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1ecff659 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x1eecd232 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x1ef66858 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x1ef687d3 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x1f0a5c48 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x1f2e9b42 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x1f300b22 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x1f443db3 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x1f45cba0 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x1f4af136 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x1f503e05 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x1f525510 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x1f55c11a dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x1f835af7 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8d71c4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f91c1f8 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x1f9255f7 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x1fadc048 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x1fb6467e dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x1fcebf1a pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x1fe699d9 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x1fec4276 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x201925b8 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x201b8ee2 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x202ac9be kvm_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x203440c6 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x2045a76f of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x206f6a3e led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x20842577 mmu_feature_keys +EXPORT_SYMBOL_GPL vmlinux 0x2084cc4e spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0x20a4d960 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20b7d36c led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x20be1a17 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x20d05cdb vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL vmlinux 0x20e62f15 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x21274a79 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0x2127aa6e regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x21347a53 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x213ff40f devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x2175c961 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x21a435aa badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ba9cee ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x220bedcd debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x2212a308 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2259ef8f of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x22847196 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x22865aa6 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x229274f5 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22dcea32 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x22e9fdef irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x22f1b0d4 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0x22f8dfb8 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x22fde75a perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x23611c4a clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x2361679f devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x2369008b cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23958fc8 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x239677ec devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x239c5eec tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x23bca2d1 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x23fd87f8 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x24169769 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x241c87b9 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x24207be3 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x24209c1a napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x2421efdb sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x24738fc4 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x24798cfb blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x247a9ee6 blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2498f808 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x24a61406 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x24a70cf0 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24d565c8 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x24e5bae9 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x2537b5d2 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x254c3930 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x257a8471 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x2588c209 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x259ef9fe metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x25b24855 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x25b836c3 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x25d7e0ea rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x25fcdfb6 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x260218ec sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x260a3645 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x26115fcc arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0x261f69eb __put_net +EXPORT_SYMBOL_GPL vmlinux 0x2636edda rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x26410948 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x26452d99 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x266cd419 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x2673af8d __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x26789276 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x26abef7b i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26b75f2b gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26d5bd76 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x26e622bc sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2700fa05 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x27096d03 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x270d5dc8 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x271df8e9 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x272d7d84 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x273be51c tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x27448b79 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x27589b56 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x27681930 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x277a1efb unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x27819185 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x278c6ac8 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x278d4a8a dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x27923039 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27d1b3e6 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x27d951fa led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x27e15820 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fee2b7 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x281343cf nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x283066d7 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x2844c786 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x2851e066 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x285a5f9d percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x286230ea gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x286f254c pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x2871ed80 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x2894300f cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x289533ed rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x28c2ba32 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x28d3fe86 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x290917f5 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x291fa7ee skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x2941d17f kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x295bb3ab cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x2961522a devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x296ab3e9 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x296e2b6c single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x297463e4 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0x297cad9d nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x29886156 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x2996db71 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x29a896cb cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x29b6ca7f bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x29b91f66 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x29d5619f skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x29dfd030 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a13a0e7 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x2a536709 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x2a58b0a3 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x2a5b5d71 device_add +EXPORT_SYMBOL_GPL vmlinux 0x2b09dad3 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x2b1bae0e cpu_to_core_id +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule +EXPORT_SYMBOL_GPL vmlinux 0x2b6d3afb gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x2b80ded9 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2bb40eab ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x2bbaa281 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x2bea14d1 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c7f4d2c blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2cac9f31 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x2cb272c7 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x2cbb3b60 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x2ccc2051 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d36c57b rh_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2d3895c1 kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d700eb8 blk_mq_reinit_tagset +EXPORT_SYMBOL_GPL vmlinux 0x2d7c73b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0x2d9b8d97 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x2d9ce483 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x2db011fa rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last +EXPORT_SYMBOL_GPL vmlinux 0x2dcae6a4 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x2dfc9c7b devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x2dfcd4e1 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x2e01a841 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x2e086d81 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2e186561 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e24f450 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x2e25c415 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e5d329b clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x2e63c0ac ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2e696658 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x2e73cb8f rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x2ea940c9 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2eea9d4d __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f2cab2a perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x2f32b9be ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x2f409909 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f47c95f spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x2f495026 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x2f4da8c1 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x2f62a85d fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f6ed466 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x2f704504 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x2f840ed3 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x2f866a34 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x2f8d80cf crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x2f9118d0 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x2fb172cb balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x2fbee95d md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x2fd02c9f pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2fdfcadc max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x2ff67f8b sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x2ffb5ff7 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x30020660 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x30174c34 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x30358d37 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x305ad5c2 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x305be091 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3064a992 pcibios_unmap_io_space +EXPORT_SYMBOL_GPL vmlinux 0x3097a1ae shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x30b6e3a1 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x30f1b233 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x31094b38 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x3119f1fc iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x312d2ce9 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x312d9a0b regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x3130fbd2 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x3145b361 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x31539f02 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x315bdeaf usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x3163ca4c virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x31910b39 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x319352f5 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x31ba50a0 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31cb990e of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x31e8ecad phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x31eafe93 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x31f20f8c spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0x31fe7fab driver_register +EXPORT_SYMBOL_GPL vmlinux 0x321823d2 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x3220bd0a user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x3222b867 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x32452713 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x3245b408 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x328a88e9 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x3295ece8 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x329ba5b7 dev_pm_opp_set_regulator +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32bcc65c usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x32bd8856 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x32c0f020 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32c93150 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x32ca1504 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x32f839ca serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x332c0856 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x332c6449 security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x33375d02 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x33631af4 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x3367f405 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x337786fa usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x3390f930 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x339369bc sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x3399508f fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x339acf2a irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x33a08a56 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x33bff38a path_noexec +EXPORT_SYMBOL_GPL vmlinux 0x33fd0591 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x340c4638 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x3413394e pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x341eab26 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x345880ec split_page +EXPORT_SYMBOL_GPL vmlinux 0x347811b2 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x347cd535 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x34882999 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x348f3b27 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x34a370a0 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34ad699b pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x34bfa669 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x34d4dd2d pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x352222d3 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x352517a5 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x35269f4d kvmppc_kvm_pv +EXPORT_SYMBOL_GPL vmlinux 0x355240b1 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x355e4757 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x35698bb3 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x358e13b4 kvmppc_handle_load +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x3594e75d cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x359547e2 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x35a0830e clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x35a37b6f ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x35a7a12d watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x35bb25ea wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x35cfed60 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x35db1518 cpu_feature_keys +EXPORT_SYMBOL_GPL vmlinux 0x35de75a2 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x36044d62 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3609a067 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x361652a8 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x3627309f xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x363e5322 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x364800ec vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x3671a690 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x368d53a8 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x368f1ecc crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x369275d9 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a47db9 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x36a64e5c percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36be879d rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x36c574a3 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36df2aea usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x3704a59f usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x3709dd61 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x370bf1a4 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x370e3545 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x371353dc security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0x373720a1 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x374e7360 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x374ef56b lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x378c218e bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x379ee142 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x37a70780 netdev_default_l2upper_neigh_destroy +EXPORT_SYMBOL_GPL vmlinux 0x37d2c2c5 rh_dump_blk +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x38019458 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x3816a4a1 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x381c95b3 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3839944d crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x384886ac ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x38515044 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x387b660f devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x388db01b dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x38a55a06 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x38d1bcc4 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38f01a1d of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x3921d694 nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x394febfc irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x39521db0 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x3960d6f8 wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x3965fcbc of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x39676120 sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x399867ca cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39db1b2f __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39f3ba9a crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL vmlinux 0x3a13602e component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a32f1a6 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3a331e54 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x3a38d09a inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a506355 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a562ffc __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x3a573cb1 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x3a5ba1e7 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x3a5edcde ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x3a6e7e5d gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3a7c0dd0 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa43526 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x3aa55922 of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x3ac038cf ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x3ac75851 component_del +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x3af7e1f8 clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x3b0ca72a __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x3b26c684 kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x3b48eb14 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x3b51ef49 nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x3b6f8f52 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x3b899d56 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3b993167 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x3bc1ba59 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x3c0a40be dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x3c2455a5 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c3631c5 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x3c52db85 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x3c56b79d inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3ca4c882 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x3ca65232 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x3ca65684 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3cb67ff3 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3ce067cf ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x3ce36f7f mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3ce8355b srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x3ceeca3a cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x3d03ca81 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x3d354c90 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x3d43b58d xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x3d612305 iommu_direction_to_tce_perm +EXPORT_SYMBOL_GPL vmlinux 0x3d7a2ce4 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0x3d93e4a1 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x3d98db61 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x3db12dec mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3dddc91e regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3deb12ce realmode_pfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x3df7c0c3 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x3e1ce561 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e300f1e security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x3e31dbce root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e5ffe42 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e9ed592 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x3ea4683e pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x3eac8ffd sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x3eaf5fea mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x3ee23358 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3f1aafac bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x3f1cb321 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x3f3fbbdc dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x3f63ccf5 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x3f64e9a7 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x3f875ff7 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x3fe2f709 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL vmlinux 0x3fe9dd74 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x3fef7431 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x4012da33 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x40178454 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x401dcf2f tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x403605ea dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x40452765 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x404a7036 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x40616d51 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x407e15f0 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x408a4156 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x408f9036 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x409bb568 clk_hw_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40b110dd get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40de362e trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x40e7bc65 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x410cc554 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x410e5072 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x41172a7e fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4118343c pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x41219f78 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x41322612 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x4145d263 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x41733bce sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x4173ae32 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x417688de of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x41a53860 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x41b6cfd4 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x41cf1078 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41dac357 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x41ea58f2 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x420e9786 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x420f847e spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x421cc0fc tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x424eb4a2 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x4283050a serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x4288379e pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x42afc1a6 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x42c16ce7 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x42d51748 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x42dcdbc4 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x42dd11bb gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x42e6d2e1 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x433cfe36 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0x4350569c tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x43538502 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x43607aac devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x438084e2 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x438a049e of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x43969dbe rh_alloc_fixed +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43c3ed1a dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43f15bfd cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43fadcb5 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x44174b17 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x4423cad3 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x442c206c of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x443fe569 flush_altivec_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x4469d5a8 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44cb9baa wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x44db893a devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x45003ff2 of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x4528c0b0 of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x45519e54 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x45576b86 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x45612d90 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x45683613 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x457316cc raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x4595c542 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45e0d46b device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x45edefec ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x45f3dd1d security_mmap_file +EXPORT_SYMBOL_GPL vmlinux 0x45fc4bf6 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x4608338c sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x460ce2d7 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x46151c29 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x461c570b disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x46275737 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x464c9c15 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x4660b5f6 dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x467f1bc5 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x467fe18d hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4688c96a usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4688f953 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x468e5a62 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x46c121c4 get_system_keyring +EXPORT_SYMBOL_GPL vmlinux 0x46e71916 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x46fa4bad perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x472811ca irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47718824 of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0x4780f6fc __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x4793be7e pcibios_scan_phb +EXPORT_SYMBOL_GPL vmlinux 0x4795df28 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47af0898 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x47d34f3f extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47f001b3 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x47f0f7f4 of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x4800c990 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x480c0b5b crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x4817283b key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x482ea5f1 serial8250_em485_init +EXPORT_SYMBOL_GPL vmlinux 0x48403f82 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x489e22bd kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x48acee73 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x48c0e767 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x48c4609a inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x48d668eb gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x48ed4080 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x48fe5ecb wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x490ede1d ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x492576fb debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x49279b1a ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x49380a52 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x494b1489 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x4979f024 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x498bae66 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49aa1846 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x49b434e3 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x49b531f4 put_filp +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49ecdba3 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x49f0c58d vfs_writef +EXPORT_SYMBOL_GPL vmlinux 0x49fed98a static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0x4a38555e blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x4a628bf0 devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x4a8c0192 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x4a8f3bdf wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4abcd8d9 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x4ae8c705 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x4af2075f PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x4af2f78b irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x4b186eb3 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x4b4425f9 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x4b4bcbfb blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x4b4fe675 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x4b5a0b5f kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x4b634657 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x4b6e8d52 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4b79e30f of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x4b89bb5c clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x4b8ede80 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x4b98827c rh_init +EXPORT_SYMBOL_GPL vmlinux 0x4bcbf022 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x4c31021e ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x4c35fa4a blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x4c3815ce nl_table +EXPORT_SYMBOL_GPL vmlinux 0x4c529ab3 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c6eb22f usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c762723 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x4c8c5e9c pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x4c93689e devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x4cc76ab1 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x4cd0dc08 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x4cf21e4d stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x4cff79b8 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x4d06e353 kvmppc_handle_store +EXPORT_SYMBOL_GPL vmlinux 0x4d24e269 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x4d72a42f wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x4d7eb07a sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x4dbd2479 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x4dc8bdcc invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x4dd8f4f3 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x4de154ce rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e13155e fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e385569 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x4e3d90e7 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4e61bfb6 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4e693c9a spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x4e9a62d5 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x4eadaa6e __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x4eb51ddf subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x4eb60e76 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4eb88b94 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x4ebd987a cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x4ecd1ef7 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x4ef455f7 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f01dcf6 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4f1c6878 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x4f21551c fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f43739e bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x4f4c2e1b gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x4f5aece6 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f76e701 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x4f7af201 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x4f926da9 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x4fb58db2 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x4fb592ff devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe62daa regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x5002fa8e tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x502150db tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x50268cf1 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x50329882 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x503b85c8 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x506881f1 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x507596d8 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x507dbcd4 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x507de581 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50920e8a usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x50bfce44 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x50d843c8 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x5110d989 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x51223be5 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x512e601d set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x51467922 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x514b354a rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5166639c led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x51810958 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x51811f94 wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5189304a device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock +EXPORT_SYMBOL_GPL vmlinux 0x51b98cd3 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x51d8e48c __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x51d8f79f phy_create +EXPORT_SYMBOL_GPL vmlinux 0x51e28c1b open_check_o_direct +EXPORT_SYMBOL_GPL vmlinux 0x51fd0b46 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5205e64d disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x521b0195 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x524b72c2 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x524ce12a da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x52924f20 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x52b28b0a rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x52dd9de6 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x52f51ab4 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x530a1311 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x530c8fd6 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x530f94eb kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x5325b00b cap_mmap_file +EXPORT_SYMBOL_GPL vmlinux 0x5330ecc3 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x53391328 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x5355579d kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0x5358b8df ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x53671bff da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x5374d5aa dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x53a09c42 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x53a4c8bf pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x53d63032 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x53f1ef74 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x53f33f20 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x5406e499 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x5410cf16 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x541b9252 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x5431b982 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x5433aac0 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x5443888b sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq +EXPORT_SYMBOL_GPL vmlinux 0x546face4 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x547a5299 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x547b83e0 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54ae3a08 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x54bba3a5 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x54c8d486 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x54ceacb5 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x5519962a list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x552f6b7c sata_link_hardreset +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 0x5546fb36 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x554b7562 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x55600247 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x55784a8f fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x55846c5a find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x55872994 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x558caa28 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x558e27e7 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x559be2e5 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x55b51d2d blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x55d45450 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x55d4b78c ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x55e83149 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x55e8dac6 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f51ef3 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x55f9a5af platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x561a36c9 kvmppc_pr_ops +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x564ac114 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x564fb320 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x56644fd1 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x566f32a2 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x56814d6c __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x568307be transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x56871916 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x569285bc relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x5694a5c2 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x56b056b6 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x56cffa0b sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e17d30 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56ef769a regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x57077522 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x570b0b06 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x571a3824 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x5728bbd4 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x57472b14 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x57674340 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x576eef1d cpu_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x57760b0f usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5790a70a key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579bbf90 mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57d52387 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x57f2cf2f blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x580cadfe crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x583f1e30 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x58455546 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x584d47ae regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x585af4fc clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x588e29e8 inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0x588e8bbb of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5896c39b gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58b1d76d usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x58be27fb dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x58c0d929 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x58ce9bbc security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x58f4caec shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x5914911a mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x591bb9f1 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x59430964 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x598df050 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x5995774d unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x599f36bf crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59bdc8d6 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x59c5cb09 fsl_spi_cpm_bufs +EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL vmlinux 0x59e8b82e synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59ee39e1 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x59f4d2b2 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x59fc4427 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x5a03b015 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x5a12214a led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x5a240b8c bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x5a2de258 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x5a32852d blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x5a33a98c l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x5a730c11 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a887d27 kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0x5a8edae8 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x5a984221 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5aaa45fc pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x5aaafb56 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5aaff956 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x5ac7b6d2 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x5ac8b738 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x5ad12abb usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x5ad53e8b trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x5b06bdc6 sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x5b2759c3 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x5b37e8e8 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x5b3ca131 i2c_new_secondary_device +EXPORT_SYMBOL_GPL vmlinux 0x5b4ec722 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x5b579338 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x5b59b339 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x5b5c2490 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x5b60bd20 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5b7a61c1 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5b8155f4 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x5bc20f45 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bf80e42 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x5bfa84e1 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x5c15130c __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x5c2b790e register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x5c2d9d7f tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x5c348c5e crypto_has_skcipher2 +EXPORT_SYMBOL_GPL vmlinux 0x5c3796a7 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x5c4590e2 arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x5c586ca1 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c81e8b6 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x5ca0e87e crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x5ca19385 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cbe9a8c unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cc7d44c kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x5cd05799 devm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x5ce939f5 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x5cf0fc3b update_time +EXPORT_SYMBOL_GPL vmlinux 0x5cf67201 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x5cf6fa34 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d335f5d regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x5d53fee3 of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x5d6ea38f pci_add_device_node_info +EXPORT_SYMBOL_GPL vmlinux 0x5d8ae1ea debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dbf1344 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x5dc4820d exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x5dc91b09 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x5ddec605 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x5df6edb9 fsl_spi_cpm_free +EXPORT_SYMBOL_GPL vmlinux 0x5e044706 blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x5e0f19e5 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x5e2e1d32 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x5e39340b ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x5e4fbb18 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e55363a devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x5e56a15f xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5e6cb59d usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x5e6dba15 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x5e7b9cc9 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x5e8ffeca ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5eb0132b __module_address +EXPORT_SYMBOL_GPL vmlinux 0x5ecd3937 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5ee7542e reserve_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5ef44191 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x5f3423b5 dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x5f659f3f put_pid +EXPORT_SYMBOL_GPL vmlinux 0x5f82168b ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x5f9940fd unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x5faa5ebb i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x5fe9e446 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x600e6eff pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x60123c49 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x60174860 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x60208d16 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x60467b06 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x605072a9 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x60570d65 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x605b8be2 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x605e49d9 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x607fe8be dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x608cc30a pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60a74757 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x60b38483 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x60e22aa7 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x61164892 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x614f2591 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x61708bf4 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x6170f64e usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x6172dbaf __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6173d6d6 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x618b48f4 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x618f615c of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x61a8bbaa l3mdev_get_saddr6 +EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x61c2d858 max_gen_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x61f02af8 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x620ef750 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x62145271 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x62197c05 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62304c7a debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x623c0381 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x626afd6d pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x627a4408 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x62dbac60 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x62df69f4 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x62f41154 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x6311f43a __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x63208a2a usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x6348e3f2 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x634ea1be kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x6388baad __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x6391dc01 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x63ad250f dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x63db2faf palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63e55c50 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x63eabb41 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x640a8fbf device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x640e3aec dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6428da4f rh_attach_region +EXPORT_SYMBOL_GPL vmlinux 0x6431ef63 gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x643b88e6 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x64413de8 of_fixed_factor_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x644d0b99 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x6474d65c stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x647ac5fa __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0x649f1d75 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x64e36218 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x64ee5117 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x64f50401 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x65261f26 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x6543691d pci_traverse_device_nodes +EXPORT_SYMBOL_GPL vmlinux 0x6581eafa shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0x65982a8e pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x65ad5de5 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x65bc3d19 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d20142 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x65dbd765 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x66051ae7 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x660cbac9 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661e898c pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x66303a58 kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6657e841 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x666b173d vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66a93fb1 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x66c397f7 nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66d8eac2 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x670bdaf8 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x671284bb sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x6712d133 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x6734bf05 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x6752fe66 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x67723489 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x677239ed gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x6780ae88 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x678b8cbb kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x678e23b3 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x679f57b8 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x67a34ce3 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x67aa7d07 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x67b75ad8 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x67be6349 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x67c6fd33 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x67cf72ec setfl +EXPORT_SYMBOL_GPL vmlinux 0x67f316a5 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x67fd7b22 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x6826a3e2 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x68345b11 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x68461041 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x684e8e8f gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x68541966 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x68613137 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x686d5bb9 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x687e6c7f usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x68866a89 user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x68a9c0a3 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x68dd55bd ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x68de9fa8 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x68f4deff srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x68f5a1cd regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x69090979 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x690912a1 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x691819df clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x69428b36 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x6964eb37 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x697cbbb4 threads_per_core +EXPORT_SYMBOL_GPL vmlinux 0x6981f335 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x699553d3 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x69c2c08e vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x69c3cf9c bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x69d16d8c __of_genpd_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x69df1198 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x69df14e8 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x69e44ff1 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x69f4bf0d event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x69f556f1 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x6a11f637 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x6a49fc01 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x6a4dae96 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x6a6d4d00 __tracepoint_kvm_ppc_instr +EXPORT_SYMBOL_GPL vmlinux 0x6a76e36d security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0x6a8100e0 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a82a607 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a8c4caa debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x6aa20b13 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x6ac26889 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x6acb8d84 ppc64_caches +EXPORT_SYMBOL_GPL vmlinux 0x6adbcf36 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x6adf5da8 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x6af1fcaf debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x6af6edc0 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6af8bf73 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x6b1c8ad6 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b3c40fb pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x6b3ee1c0 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x6b40855b devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x6b48a910 switch_booke_debug_regs +EXPORT_SYMBOL_GPL vmlinux 0x6b71eb8e devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x6b794ad6 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6bd33dc8 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x6bd59f4a digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x6be2bd6e __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x6be5aba0 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x6befdb15 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x6c072ea6 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c09d59d policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x6c10e275 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x6c196d06 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c5dbe77 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6cb11c03 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x6cba07cf nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x6cc193bb rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cefcc7c ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x6cf0120f dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x6cf61a8f mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6cf9e15c inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0x6d193973 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x6d23bc8a iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d34eb2f watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x6d4454ff usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x6d545130 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x6d5e6f47 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x6d60626a nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d8fdb22 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x6d9f005e devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x6db98e0a ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x6dc30e69 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x6dd3e355 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x6e000fd6 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e0e9e66 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x6e379526 kernstart_addr +EXPORT_SYMBOL_GPL vmlinux 0x6e44d921 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e9962b4 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6ea54d3b usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x6ebe483b md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x6ecb8bea regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6eeb80a0 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x6eee3553 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f27f0b0 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x6f4d0851 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6f571f68 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x6f5fa259 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6f70bb57 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x6f81da9e devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6fad7058 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x6fb73e32 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x6fc68f3e vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x6fd2d185 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x6fe08d3c crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x700fea82 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x70196bb9 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x7025e74b rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x7071c4be ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x708e825a usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key +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 0x70f20e8a ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x70f753b8 loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7118738e tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x7123da7d i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x7130fc2f aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x714fbfbc tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x71621fe0 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71814c2e gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71bc6876 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x71c9e548 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x71cd01ed devm_nsio_enable +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71dd2209 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x71e82201 dev_pm_opp_get_suspend_opp +EXPORT_SYMBOL_GPL vmlinux 0x720a2ecd regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x7212e0bf __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x72204235 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x722dcd6d blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x7241a3f0 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x72544c52 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x729d31b0 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x72af87ea mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x72b232ef fsl_spi_cpm_reinit_txrx +EXPORT_SYMBOL_GPL vmlinux 0x72c20542 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x72c44e52 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x72d6cb02 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x72e5880b usb_string +EXPORT_SYMBOL_GPL vmlinux 0x72ee2f33 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x7304113f perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x731d5d73 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x732b8931 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x732e90db usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7349e1b2 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x734b2dff raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x7367351a dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x739623cb vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x73a1f255 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x73a3f987 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73c88a3d anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x73cd99d2 kvm_get_dirty_log +EXPORT_SYMBOL_GPL vmlinux 0x73d2d9d3 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x73d31a37 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73e6f5d6 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x73f6fec7 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x740d2004 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x740e6468 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x740f695f __class_create +EXPORT_SYMBOL_GPL vmlinux 0x74230702 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x742dc94a free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x74473713 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x744eadf3 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x744f082e kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x7458db5b pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x746700ba dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x7471f1c9 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x7474647a tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x7494fa41 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74cb5f2d usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x74d168ba d_walk +EXPORT_SYMBOL_GPL vmlinux 0x74de55ef of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x74e11ef6 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x74fd6932 pci_remove_device_node_info +EXPORT_SYMBOL_GPL vmlinux 0x75123368 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x75158ef2 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75329035 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x75404b57 xts_crypt +EXPORT_SYMBOL_GPL vmlinux 0x754cbe46 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x7574424f clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x758c24ae regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x7599a171 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x759b7d02 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x75b5d00e irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x75c9d8c3 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75d44c06 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x75ede44c transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x75f2a044 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x75fd77e1 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x76069900 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x761ed6ec hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x762c0858 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x76314ffc cpu_remove_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x7633d78c pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x76397722 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x7647019b devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x76535d5f usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x7675cf45 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x767e5e32 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x76b58956 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x76b81999 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x76c4de3a irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x76cf21cc of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e90ebb __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x76f3d39d fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x770643cb devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x77385338 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x7738db4e device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x7752a946 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7758e90f perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x776a019b ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x776b47ec ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x776c87b4 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x77760be9 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x77809493 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x778b9d5f component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x7791f6bc rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x7797787a fb_sys_read +EXPORT_SYMBOL_GPL vmlinux 0x77ab82ca bdev_dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b91b7a virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x77c59126 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0x77cfa3fe posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x77db68b0 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x77dbc2f0 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x77e201aa mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x77ec471a of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x77fde19d cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x7801a023 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7804ad97 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x783167bf devm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x7839e5a8 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x7844ff17 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x786179a3 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x78a8cdc0 clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78b24cdd virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x78c34b48 dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x78ce7df5 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x78d5d6ca fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x79001421 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x79480bd3 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x794ed332 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x79ac6b2a __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x79c480da rh_dump +EXPORT_SYMBOL_GPL vmlinux 0x79cb80b6 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x79de1f14 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79df9db7 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x7a2e046b pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7a2e2642 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a33bfdb debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x7a399af6 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x7a5327b3 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x7a74d3fa gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x7a87c070 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7aa78692 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7aa9579e bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x7aaeb25a usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL vmlinux 0x7b0bb73f __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b131ae4 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x7b1a4c5d led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b2a6c6d serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x7b342734 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x7b377fd6 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x7b3ed1d0 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x7b4772b4 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x7b478d89 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x7b9b49e6 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x7bbc23c8 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7bc17a0f of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x7bd60fbe irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x7bfb620e blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x7c03b9bf rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x7c151dcf crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x7c4af842 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x7c5f0862 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x7c666414 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x7c67d20a usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x7c7126de sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x7c8a1742 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x7c9347cb pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7ca278e0 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x7ca7a29f irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x7cc20e2e ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x7cc71b97 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cec86b4 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d103a2c devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7d1ca60b __find_linux_pte_or_hugepte +EXPORT_SYMBOL_GPL vmlinux 0x7d428eae nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x7d43defb irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7d5285fc regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d867f41 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dbcb6af tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x7dc1e388 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x7dca5524 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x7dcbfaa8 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de41fcd mpic_subsys +EXPORT_SYMBOL_GPL vmlinux 0x7de51c2c pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x7e04482c regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7e2675f1 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7e2a6cc7 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7e3b011b sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x7e51ed1f ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7e609cf8 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x7e63cc77 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7ea797c2 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x7ece9dc7 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x7edebeff hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x7ee3050c usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x7efe9fad wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x7f008202 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7f02b34c kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x7f24fa89 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x7f266339 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x7f3d8f31 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x7f478d4d aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7f51ff47 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x7f570f0e tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x7f7c832e rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7faf530b add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fd8742e generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fe1cb47 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x7fe595cf device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x7fe9161f fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7ff1f3a9 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x7ff21c2e regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7ff65fa8 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x7ffa0316 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x800bcd66 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x801c3521 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x8025b08d __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x80419819 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x805051a8 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x80666e0f devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x806a7b8d dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80b54c8e tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x80bc10f8 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80c6d75f handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80d5f0fb __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x80e1d453 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x80e2756c netdev_default_l2upper_neigh_construct +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811822a2 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x8141fd14 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x81492368 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x8152e111 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x816981c7 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x81904585 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x81ed90d8 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x81f14f2f of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x820e86d9 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x82385e98 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8266edfe pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x8285043c page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x8299296c of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x829b573e mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x82a78d92 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82dc3e94 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x83018d07 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x83025c39 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x8302e43a bpf_prog_get_type +EXPORT_SYMBOL_GPL vmlinux 0x8319cce9 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x8333edbc device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x834118cb ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x83535da5 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x83626b13 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x836406ce sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x8364c14f irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x838ee0d5 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x83a1650d kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x83aeafaf mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x83f2fcf0 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x83f6e182 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x840be9bd clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x84200f4c pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x8457539d pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x8476f592 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x848b7ec3 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x848b9cdb regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x84b085d1 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x84b1c78b kvm_vcpu_init +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84c57fc2 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x84c9a347 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x84d7abee netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x84d9adec __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x84df41ee leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x84ea4b38 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x84ead889 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x85057ecd kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x8514f11b device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x8527eb63 fsl_spi_cpm_init +EXPORT_SYMBOL_GPL vmlinux 0x852f1be3 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x85404fb2 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x8546dfb0 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x8556ee29 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x855eefcc devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x858295a5 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x858d1187 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x85931652 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x859c084c fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x859cc59c pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85fdaf8c da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x8612d0d2 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x8615b19a sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x861b2956 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x8670522e __of_genpd_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x867bb0f5 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x869e1b08 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x86c2ccc7 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x86d30e5d tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x86dedeed fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu +EXPORT_SYMBOL_GPL vmlinux 0x870b70b7 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x870d84ef of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x87302e9e dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x8731e540 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x8758d602 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x875e5e42 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x8783b679 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x878d467b usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x87a803d1 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x87b86ddd dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x87c1be41 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x87cf0575 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x87d226ca stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x87edabb9 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x87f11f0c rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x8804af3d usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x881cf668 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x881de8d1 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x88223d9e kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x88448b53 __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0x8850faa9 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x889265be gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88c1486b rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x88f3bffa pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x88fa86f0 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x891d5790 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x893e8583 user_update +EXPORT_SYMBOL_GPL vmlinux 0x89429bd9 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x895723cd save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0x896035f2 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x896d86aa sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x89724ee6 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x897556cc driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x897795df cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x897a3b91 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x898c03b5 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x8995946a __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89d0f1e2 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x89dbf5b0 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x89e3265d fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x8a0531b9 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x8a0e06df param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a844f3e __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x8a8d02ab irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x8a94d0a9 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x8a95c0d8 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8add9d83 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x8adef31a tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x8af41815 dev_pm_opp_put_regulator +EXPORT_SYMBOL_GPL vmlinux 0x8b0f62f4 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b301276 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x8b3c7bbf __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x8b4e1d95 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x8b61853b fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x8b6538db register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x8b72b63c class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x8b78e9be to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b91d53b ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x8b94fb9b relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x8ba2db76 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x8bbb62f5 _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x8bf6b61c arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x8c012d04 kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c08ef2f ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x8c0bb8aa blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x8c0d96ff pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x8c183182 of_css +EXPORT_SYMBOL_GPL vmlinux 0x8c1b067f shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x8c21d96c extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x8c25e1e1 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x8c494748 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x8c4b2dd9 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c928cee pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8cbcf042 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x8cbf56b7 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x8cd1a89e sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x8ceeb46f xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x8cfa1c6f device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x8cff4a9a user_read +EXPORT_SYMBOL_GPL vmlinux 0x8d1031ee pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x8d346b5b phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x8d496d1a clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x8d690f6b register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x8d7a3a44 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x8d7fcfb3 clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x8d887aa5 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x8dbf678a vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x8dc72a9b kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x8dcb4e32 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x8df3497c clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x8dfd5821 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8e0486a7 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e44d2a9 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x8e8b0d7f xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x8ea27033 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x8ea8e58b spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x8ead7c44 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x8eb15fd0 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x8eb4e6f5 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x8ed61b97 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x8eedc284 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x8f0683ef sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f1c3fba i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x8f20bc3f fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x8f2cda85 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x8f3abf4b usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x8f3f4ead extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x8f606a11 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f7b895c wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x8f81f238 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x8fa7c24d rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x8faa9a4d tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x8fd68bf9 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x8fff4586 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x9002573e usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x9035470c of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x903ae463 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x903cbf05 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x9058ffe8 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x906d1af8 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x9077d5ea usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x9081e917 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x90876571 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90ab363d wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x90bc1544 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x90d49f1e rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x90dc5cd9 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x90fb8f48 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x9107942e rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x9116103d fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x913c727d phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x914b068d mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x915e5fd1 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x91802519 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x918037ab nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x9198948c sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x91a761a4 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x91af40ae ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91d54fb0 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x91e80c11 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x91efc254 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x91f214e4 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x920323b0 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x9242bb80 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x92588a3f pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x927ca56e pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x92bfdfeb fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x92c6e4db exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e872a4 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x9302690a of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x930bb3b4 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x9318d5b3 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x933f43cd of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x933f6db5 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x93693b9d rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x93922111 get_compat_bpf_fprog +EXPORT_SYMBOL_GPL vmlinux 0x93956c9f gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x939cbc7c inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x93acedb9 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x93b112d0 kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0x93b5f233 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x93b88d53 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x93f9de87 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x9418c41d sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x942dd940 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x943a14d8 __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x943af743 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x945e027b dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x947d51b8 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x9487b25f badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94c1aa56 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x94d972b7 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f765e4 kvmppc_ld +EXPORT_SYMBOL_GPL vmlinux 0x94fc6789 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x95062302 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x953e66cd of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x953fa4c7 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x954f3aab dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x9564771d led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95905e4b crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x959c7289 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x95a7308c inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x95b84aa2 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x95b98e7c __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95bfeff1 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x95d1ff68 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x95e71646 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9618e8b8 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9625e8e3 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x962e2f1c rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x9644089f dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96555d16 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x965c4e99 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x96991fcc usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x96b801a9 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x96bbcc8e init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x96c602c6 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x96c78384 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x96cab2a1 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x96ce52d4 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x96e2eb8e vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x96efebd1 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x9702142c blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x971cfc08 do_truncate +EXPORT_SYMBOL_GPL vmlinux 0x97206665 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9735f061 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x97565750 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x975b43df fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x9765f5a5 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0x9792dee4 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x9799be6b regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x97ac8c4f usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x97b289dc tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x97c5bf01 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x97d55330 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97df8778 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x97e91e6b regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x9801ed0a trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x9806fd5c dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x982033af wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x982cd486 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x982fabd8 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x983c7494 rh_detach_region +EXPORT_SYMBOL_GPL vmlinux 0x984cd305 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x989da679 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x98a02a70 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x98aa8d41 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x98bc14ed of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x98de9443 clk_hw_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x98eb9735 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x98f9f73d fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x990034dc fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x9907437f ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x990a8999 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x990c9dde regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x990df4bf wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x9937a8b9 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x9948b6be dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x995591a8 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x995c47c4 dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x995fdfea blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9968aaaf devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x9982ef39 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x99a68e3f pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99ab9a56 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x99adb06b posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x99baa676 kvmppc_hv_ops +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99de9bd2 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x99e2cf8d i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x99e2eeb4 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x99ed645d iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x9a03fd65 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a14f716 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x9a42ac9a ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x9a5b65d0 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x9a7212f5 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9a91d15e rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x9aa21198 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9aad6540 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9adc9ad7 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x9adeaf3f crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9ae4c12b regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9afcbdee blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x9b1ae469 pcibios_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x9b28a300 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x9b2dfca0 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0x9b32216d gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x9b350352 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x9b438562 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x9b528ad7 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x9b78efbe blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x9b9465ef dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9babffce ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x9bb8ac17 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x9bc6e19a cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x9bc814a3 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x9bd79b1d driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x9bd9b355 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9bde947d blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x9be94345 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bf9f73d tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x9c1ea1de dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x9c6d2e0f led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x9c95abe5 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x9c9b3724 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x9c9c4700 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9cb2c1f6 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x9cb42335 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x9cb79091 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x9cbae2b2 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x9cfd6ffe led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x9d015398 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x9d12ec24 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x9d267c7f sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x9d45c7ab pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x9d6e9700 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x9d738176 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x9d7d628c fsl_rio_mcheck_exception +EXPORT_SYMBOL_GPL vmlinux 0x9d81f7e3 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x9d84ea8d trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x9d8b7256 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x9d9b60dc tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x9da22cf3 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x9da23cb0 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x9da7d3be usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x9daabf1e securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x9db61166 device_register +EXPORT_SYMBOL_GPL vmlinux 0x9ddea676 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x9df7d9a2 tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x9e0a1fa9 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x9e2bfba7 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9ea59f26 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9eec2d5a device_reset +EXPORT_SYMBOL_GPL vmlinux 0x9f0c0c67 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x9f1510f1 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x9f30987c inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x9f4866a1 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x9f7bc762 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x9f8a2b80 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x9f8c3716 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x9f931b3e cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x9fba891a irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe11d6b class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x9fe509df dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0xa0208e02 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa07c49a4 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xa08b82a4 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa0a27fff pci_address_to_pio +EXPORT_SYMBOL_GPL vmlinux 0xa0aa339f usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xa0b2c54c sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xa0b56230 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa0bf6caa usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xa0c17d44 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0xa0c6dc1b __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa0f0304f kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xa11ec1d2 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xa1424dcb ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xa14b59f2 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xa17b8766 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xa18e18e9 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1c60823 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa26567b5 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xa26a6315 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa28aaf29 rh_create +EXPORT_SYMBOL_GPL vmlinux 0xa2a9bc8b sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0xa2af513f dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xa2b63665 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2c06098 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xa2c1a6c3 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xa2cb7608 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0xa2d42c8c wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xa2e5cb8a security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0xa3050eb4 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xa307217a mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xa3172b02 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xa317a7c2 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xa3187287 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xa33c9f62 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xa35727e0 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xa374c8ab devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range +EXPORT_SYMBOL_GPL vmlinux 0xa3a546fb device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xa3a9db17 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xa3b8678e thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3d547d6 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3ffe4ee crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xa41de739 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xa460102b inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xa4736e48 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa48bbef5 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0xa4b6f641 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xa4bbeaf1 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xa4d44b1e regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xa4e85250 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xa500a9a2 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0xa50901d6 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xa51abe5a wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xa52bc832 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xa5a0065e cpu_remove_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0xa5aec763 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq +EXPORT_SYMBOL_GPL vmlinux 0xa5b9bbb5 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xa5bcc71e devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xa5d57e7f gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5efe460 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xa607f60a badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xa6129520 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xa616edbe of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xa61fc081 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa628e7a5 store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0xa62935fc wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa6663ec0 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xa6709037 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xa69745c9 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xa69f1b19 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xa6d51e0d pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6e4c991 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xa6e8cb07 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xa6f055e6 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xa7063084 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xa725c512 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xa7282826 phy_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xa73e55d9 udp4_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0xa749006d clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xa74d990d wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xa75f723e skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xa769275f apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xa77269c2 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xa79bf7e0 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xa7a7db01 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa7c0e66b file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xa7cdd8ca wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0xa802cb28 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xa81db4a7 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa858aa03 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa86d824d ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xa86fd19a __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xa8a121dd fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0xa8a785a1 mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa8b01b0e bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8e9d804 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0xa8f4a526 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xa8f736dd pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xa92c38b6 l3mdev_get_saddr +EXPORT_SYMBOL_GPL vmlinux 0xa93041b5 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa93eb12b tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa9406e05 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xa94aa38e hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xa9595e3d do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0xa969211d pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xa988744a ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xa9aef2e1 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0xa9ce341e usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9edc5cf vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xa9f5a254 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xaa0c1ee9 phy_get +EXPORT_SYMBOL_GPL vmlinux 0xaa1279ef transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa17a2e2 rh_alloc_align +EXPORT_SYMBOL_GPL vmlinux 0xaa3498c7 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xaa4581cc nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0xaa64d4b6 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaafd11a5 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xab17481d da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xab20e3e9 of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab2d1ba7 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xab59d373 kvmppc_free_lpid +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab8d5af7 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0xaba2db15 trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabddf579 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xabf3f05b kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xac0cf169 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xac202fd5 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xac2d34f5 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xac44db8b fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xac461941 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xac4bcf40 pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0xac5c6682 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xac696c26 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0xac7f3b3f devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xac9ea78b devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xaca07af4 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xaca7daa0 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0xacc8c440 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xaccf355e i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xacd2d5c7 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xacf0e024 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0xacfe997e powerpc_firmware_features +EXPORT_SYMBOL_GPL vmlinux 0xad158da3 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xad4a495f simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xad4d3e3e powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xad51fef9 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xad5682b5 nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xad62bcb8 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0xad6c9983 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xad84e217 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xad97cb2f of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae00e2e9 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xae10ec17 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xae243f01 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xae3fd365 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xae4d70ff platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae807b26 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all +EXPORT_SYMBOL_GPL vmlinux 0xae8a5a0a security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xae8fdf2b devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xae99625e reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0xae9c96b0 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0xae9d4bb1 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xaea7e876 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xaebd1103 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0xaeeb1e84 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaef38ea6 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xaef9b90f regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xaf0257c0 arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0xaf1429f9 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xaf2db286 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xaf3fe7eb bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0xaf517367 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xaf67f6e1 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xaf6cb0f9 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xaf6cd378 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0xafab2ff4 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xafed75c1 skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0xb019bcba rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0xb0201d4e sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xb02e08f2 vmalloc_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xb039b575 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xb060f075 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xb0678654 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0xb06f0e7f ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb0798ca3 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb07f0070 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xb086b033 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0fb5b7d ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb1036c41 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xb109dac4 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xb119979e usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xb137fa6f devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb14d32d9 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xb159e331 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xb190c5f0 of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1f28506 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xb208b250 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb22429e6 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0xb24c7092 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0xb2608fd8 dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb28a2f4a blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb28a92bc platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xb2ab6d25 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xb2c88725 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xb2d1c252 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xb304daae gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xb31b6a18 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xb3258094 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xb32cf0ac tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xb33dad00 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xb3420ec1 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb352dc77 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xb3573086 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL vmlinux 0xb39b1859 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xb3ac0ab1 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xb3b53937 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xb3c1a316 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xb3d02528 put_device +EXPORT_SYMBOL_GPL vmlinux 0xb3d09fea power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xb3d122f4 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb3e4c5a5 __class_register +EXPORT_SYMBOL_GPL vmlinux 0xb3ee6de0 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xb403736a usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xb404c5ce region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xb416c11f devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xb41a8065 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xb42ac9c5 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xb4390efd iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0xb4419040 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xb450da1e devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4597227 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xb47ecc10 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4e79d86 pci_find_bus_by_node +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4fb228b rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xb5141f08 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb530e6cc crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb5403c49 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xb57cad8e ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb59291ed crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xb5953dcf gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5a16178 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0xb5a163cb rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xb5a2eaa6 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5be1c32 devres_get +EXPORT_SYMBOL_GPL vmlinux 0xb5c8edf4 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0xb5cace60 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb60053e7 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq +EXPORT_SYMBOL_GPL vmlinux 0xb614a140 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xb61b84af skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb6307102 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xb649b207 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xb676fc81 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xb68827fc kvm_get_pfn +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6e76fd2 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb6ecc448 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb71bec8a fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xb726baf4 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb758ca00 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xb75d3ba6 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0xb76ed6a2 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xb786e77d percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb7a3ede2 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7cb3c90 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xb7dbe308 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb7e7958d attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb805b326 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xb81d5713 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb82953af of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xb8307ad3 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xb8357a2e percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xb83d41cb kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0xb8429f0b rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xb856abe1 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb8600455 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8754b8c skb_gso_validate_mtu +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8cbcff7 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d74756 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb8f56c90 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xb8fc95c8 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb90bc9f7 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xb9190d0d usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xb922a35b fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xb9539f99 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9cf2417 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9e82dd1 __of_genpd_xlate_simple +EXPORT_SYMBOL_GPL vmlinux 0xba133e84 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xba20fa0c task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xba2800f8 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba452801 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xba4899ff da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xba59ef9f arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0xba5f34ce of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0xba82fc6f __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xba9fa636 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xbaa5fc7b nvdimm_clear_from_poison_list +EXPORT_SYMBOL_GPL vmlinux 0xbaaaded2 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbacf26ce elv_register +EXPORT_SYMBOL_GPL vmlinux 0xbacf3b68 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xbad69c94 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xbae6ea45 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xbaf64445 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbafb8c86 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0de3aa pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xbb175106 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xbb192601 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xbb43b73e __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xbb5bbc63 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb78340a transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xbb7e901b regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xbb80d24b public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xbb882b9d inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xbb97403e crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xbbb7482a cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xbbbc757c pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xbbbe072b pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xbbd3d25b netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbbe02b3a swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0xbbf89d9f static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0xbc11730b sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xbc1428d5 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xbc197c82 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xbc24ed6f show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xbc30b8ed of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0xbc4739ff driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbc584243 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc6f6696 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xbc73a402 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xbc7565c9 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcc247fe led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xbcc4de6c find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcf1ed4a kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbd060655 get_device +EXPORT_SYMBOL_GPL vmlinux 0xbd0715ec scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xbd35664f devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xbd3d6a36 kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd490fa0 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xbd51d5dc badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xbd929ee8 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xbd960589 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xbda34570 ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xbdad5978 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xbdb9fe9f ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xbdbfddc6 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xbdcee194 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbde8dc00 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xbded601e rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe1ca320 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xbe3ef488 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xbe408692 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xbe44fd75 mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe693b6e ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xbe7d4a94 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xbe8ed4c8 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbea3ba38 device_move +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeaa1458 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xbeb19e0a gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0xbeb62f4c srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbec8d1c8 analyse_instr +EXPORT_SYMBOL_GPL vmlinux 0xbeed5206 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xbeefef50 clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xbeffe0c0 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xbf4d1e2b of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0xbf56761f devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xbf7b1e7e swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0xbf89755c ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfbe66f5 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xbfdb7a86 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0xbfe5169d regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc019c65a fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xc01b5cc9 kvm_clear_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xc01cfb3e mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xc0253181 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xc02bec3c usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc05e0871 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xc061367e mpic_msgr_get +EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread +EXPORT_SYMBOL_GPL vmlinux 0xc07f203b mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xc08277a4 __devcgroup_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0a2c81b ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0c6b505 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xc0c9dec5 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0e3c921 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f95949 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0xc1410817 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xc15caa63 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc19b9356 vfs_readf +EXPORT_SYMBOL_GPL vmlinux 0xc1a6e8f5 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xc1ab7eea br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xc1c401a3 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xc1d27527 of_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xc1f0ffdb sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xc22188fa kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xc2266378 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc23e56b6 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xc241ea5c __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xc24930fe pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xc26d5079 pcibios_free_controller +EXPORT_SYMBOL_GPL vmlinux 0xc27343d4 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc2a969e4 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xc2b16743 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc2cb70c7 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0xc2d19371 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0xc2d471dd rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xc2df1771 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xc2eaeb6b serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xc2f9da8e uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xc3205462 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc34258a3 security_path_link +EXPORT_SYMBOL_GPL vmlinux 0xc35bd756 dm_use_blk_mq +EXPORT_SYMBOL_GPL vmlinux 0xc3658b5c do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc38e6a1d fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xc3998f2c virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xc39b6663 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc3a08037 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xc3a432fb xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0xc3aace8b perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc3b3c018 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xc3cabb95 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc3d25f10 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xc3e32335 kvmppc_prepare_to_enter +EXPORT_SYMBOL_GPL vmlinux 0xc4060324 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xc4182592 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xc424bac7 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc4287bf4 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4a16a61 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xc4acc35b alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xc4c7bb0a ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xc4d446b9 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xc4f6a798 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0xc5226b2f kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc52337e2 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc5617f33 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5878314 blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0xc58a1687 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xc5a2c19f idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc5a363fe screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xc5afee62 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xc5b6b7bc gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xc5b99d92 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xc5befd50 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xc5ceb797 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5df0457 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xc5e6ac03 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc5edb434 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xc5f134c6 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xc602a9ab blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xc6041458 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xc606a368 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid +EXPORT_SYMBOL_GPL vmlinux 0xc60e0f70 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc627431a alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc635e296 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc6407778 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xc657d1d2 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0xc65a8b00 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xc65b8395 of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc669c0f2 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xc66ca321 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xc683d25e crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xc68aa252 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6c728ee cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xc6ce5fd7 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xc6ef2684 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xc6fbec5e thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xc70e4b59 kvmppc_claim_lpid +EXPORT_SYMBOL_GPL vmlinux 0xc7112552 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xc71cb75a cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc760f467 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xc764a64a pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xc776b01c __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc77a7878 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xc79f91ff ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a8ffa3 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xc7b11c37 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xc7b5d50f devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc7bc2675 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xc7cca105 dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xc7ccc216 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0xc7d20770 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0xc7db59b8 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7fd5149 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc8490a4e crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc89a002f sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8b09ac6 spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0xc8b6988b pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xc8c39235 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xc8d85bbf ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8eafc69 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc8f8fe34 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc9163e8a percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0xc91d35df gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xc930463e usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xc939355c gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xc93d0f45 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc985dedb sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xc991a86a thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xc9aec6f6 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xc9b2e679 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xc9e1259e platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9f5771d wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0xca176dcd net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xca181cb9 blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xca4cb6ae devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0xca501406 mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xca61b5b1 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca833564 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcacdc987 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xcaddbdf6 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0xcade394e ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0xcae87bb1 regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xcaf0108b crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xcaf29a4a udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcaf96575 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xcb12f02c pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb5ee621 hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xcb6b21a4 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xcb84db2d crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xcbc492d5 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xcbc65c9d regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xcbe16a85 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xcbe1b3d9 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbe94e8c kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcc04ce13 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0xcc0d746d trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcc1429f1 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xcc2ba30d list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xcc2e1847 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xcc34c111 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0xcc44961f kvmppc_alloc_lpid +EXPORT_SYMBOL_GPL vmlinux 0xcc4b1730 get_empty_filp +EXPORT_SYMBOL_GPL vmlinux 0xcc58dbe1 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xcc75e52f of_genpd_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xcc8372c7 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc92922a pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0xcc9d4d3a inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xccb38305 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xccbc1948 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0xcccc838b blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccddf5e0 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xccf53b0f md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xccf9d5af irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0xcd39abe7 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xcd400561 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xcd41af20 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xcd59c87a bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xcd78c291 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xcd83ce79 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd995b35 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xcd998d33 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcd9f90df mmput +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdcd8015 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xcde31dcd uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xcde93fc4 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xcdf53b45 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xce188c61 early_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xce225a19 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xce252814 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0xce2c459a cs47l24_irq +EXPORT_SYMBOL_GPL vmlinux 0xce322efb input_class +EXPORT_SYMBOL_GPL vmlinux 0xce3cff37 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xce42106d unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xce58a695 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xce5aa2f8 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xcea8f3af register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xceb0149b input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb5f7b3 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xced53cd7 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcf23ee0e bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xcf24122d dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0xcf3dd9e3 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf660eac dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0xcf7d7fb1 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0xcfac08bf gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfc9cf89 debugfs_use_file_finish +EXPORT_SYMBOL_GPL vmlinux 0xcfd3221a clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xcfdc2c5a rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xcff74491 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd00c52be __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd054a73e __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd07fea1b dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xd0bc118d ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xd0bd4d36 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0f35f38 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xd0fa2a34 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xd11cf277 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xd11d897d of_scan_bus +EXPORT_SYMBOL_GPL vmlinux 0xd12ef4d0 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xd14bcbc7 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xd1576046 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd186e0cf usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xd187383e mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xd1a6efbc inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xd1b5aeab crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xd1c687ee scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1f3d9c8 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xd1fb1952 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd20d466c xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xd20d7f36 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xd2135dff thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd2245ec5 of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd25ee794 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xd26f6431 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd279418a ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0xd29bf991 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0xd2af7c9a nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xd2c1f696 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xd2d8a4b1 dev_pm_opp_get_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd307ed20 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xd32ef18f nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xd3335e80 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xd34205bc led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd34ba3e2 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xd3544a66 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xd356d3a0 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0xd35a0439 pcibios_finish_adding_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xd360451f irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xd37e5b51 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xd3a0a2e9 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xd3b36dde regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xd3cc1dae __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xd3d56368 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xd3d926cd gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xd3ef1355 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xd3f0ef4d dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd40f6ca3 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xd413eba6 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd46c26c6 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xd47764f0 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xd484a2f4 pcibios_map_io_space +EXPORT_SYMBOL_GPL vmlinux 0xd4a8137b usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c190b7 clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0xd4c48cd1 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xd4d3fa32 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xd4ea05af dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0xd4f5677f bus_register +EXPORT_SYMBOL_GPL vmlinux 0xd50ea93d gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0xd5151f53 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xd520105c ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xd52177c5 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0xd52938f7 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xd56a5759 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0xd5a6f47b debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xd5b1eb6d virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd5b5f104 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd5b9af98 __pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5db447e debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd61d5e58 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd6261975 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0xd63019f5 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xd65379e6 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xd6599eb2 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd695ff8b gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xd69d6d8d register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xd6bf87cf of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xd6f1ad1b aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd704eb68 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd72c476a usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xd754947f cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xd757ca77 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0xd75efd76 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd77497ad pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd77e63b6 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xd79eec89 debugfs_use_file_start +EXPORT_SYMBOL_GPL vmlinux 0xd7a42550 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0xd7bbefe6 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd7c5a8ee spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0xd7d2f3fc subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd7e3ddb4 fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0xd7fc3e98 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xd7fd0e28 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd828a786 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xd82a5a3f led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xd861b223 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd88773db dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xd893db69 clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xd8970d0d virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0xd8ca0c91 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xd8d6bbdc crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0xd8ddebfb exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xd8e117e6 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xd8e52017 insert_resource +EXPORT_SYMBOL_GPL vmlinux 0xd8e74744 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xd8f62268 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xd90a496a linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0xd91676ec ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xd9219c0c fb_sys_write +EXPORT_SYMBOL_GPL vmlinux 0xd9311f88 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0xd957ac2c usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd96d323d usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xd97138c5 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xd973cac6 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xd97c6988 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd998c755 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xd9a3a8d9 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xd9a40f6e of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xd9b1365c lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xd9cf5f48 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xd9db4791 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xd9decc78 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9f0089a rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xd9f07c38 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0xd9f4f709 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xda074565 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0xda0a4d22 mpic_msgr_enable +EXPORT_SYMBOL_GPL vmlinux 0xda0b8457 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xda1fdfc7 udp6_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0xda3f110a bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xda54ed92 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xda58a2f3 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xda7c8bb4 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xda8150da md_stop +EXPORT_SYMBOL_GPL vmlinux 0xda83daf1 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xda8a5d21 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xda8cb2e5 threads_core_mask +EXPORT_SYMBOL_GPL vmlinux 0xda92539f power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xdad8f08a pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xdadf1a51 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb038510 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xdb222b22 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xdb222da9 security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0xdb2728d5 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdb3f4ed4 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xdb43be74 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb64a27f gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0xdb65c3bb usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb9d2df8 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0xdbb09720 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xdbb9ca8c devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xdbbbb9b7 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xdbbc076b crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdbc118ea regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xdbc66266 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0xdbd59b1e regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xdbd842e0 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc1c379d __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0xdc201831 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdc32e2f5 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xdc3b1687 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xdc4cb5e6 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xdc5483d4 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xdc5e7b93 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc90e5ad ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca751b9 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xdca8ab9d pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xdce3f108 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xdcec34b5 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xdd0e8b5d regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xdd0efe7d pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd36497a bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0xdd729424 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xdd76ac56 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xdda3ff3c regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xdda744b8 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xddadff2c sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xdddc5497 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xdde84572 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xddeafb15 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xde338cde __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde51fac9 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xde634872 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xde6711bc dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdef68587 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf64384a kvmppc_sanity_check +EXPORT_SYMBOL_GPL vmlinux 0xdf6d07fa dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xdf7e3f43 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xdf7e72f8 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0xdf80476d trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xdf8c80ad uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xdf9cdbcd of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0xdf9db1ed __dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xdfbe0c17 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xdfc5425b pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xdfd9e90b phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdff20ab1 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe0097c58 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xe02319a4 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0xe02cf792 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe0315852 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0xe036b3e9 mpic_msgr_put +EXPORT_SYMBOL_GPL vmlinux 0xe039ade4 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xe0552226 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xe06ed070 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0a1875f pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xe0ac0100 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0fd704c blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xe12932dc pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xe12f11d0 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xe130cfec dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0xe147b10f debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xe149960b devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17e8ff1 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0xe185a98f __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xe1868826 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xe18eb6a4 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0xe19eb1c4 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe1a6ba08 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xe1a6d8fa pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xe1b97600 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1e84b49 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xe20763a2 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xe207a8f4 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xe213b443 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xe21f4b10 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xe236dcbd get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe2745321 blk_poll +EXPORT_SYMBOL_GPL vmlinux 0xe274dc7f usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xe280b9d2 max_gen_clk_probe +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe290c740 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xe2cd03f4 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2f971f2 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xe2fd0899 flush_fp_to_thread +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe33d4dd1 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xe3428694 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xe3566162 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0xe36ed136 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0xe3a73baa get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xe3a7f57b of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xe3d7750e btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xe3eb5945 max_gen_clk_ops +EXPORT_SYMBOL_GPL vmlinux 0xe40e5d7d rcu_exp_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0xe44487d9 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xe4468969 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xe45645d0 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe49fd173 of_fixed_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0xe4a81261 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xe4b30933 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe4b4f704 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xe4c031f8 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xe4d8599f power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4eb1fc1 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe511f4b0 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe5137b28 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xe51c040f register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xe52a4990 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xe5464ae3 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0xe5540302 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xe5718c03 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0xe576bab7 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe592054f crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe5b9a47c __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0xe5bce247 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0xe5c371d7 spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0xe5c844e8 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xe5ea06cc x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xe60df28b fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xe61e39b0 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe669f2a7 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe676fda0 vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6cff3be crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xe6d6c8e0 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6e27d0f bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7264768 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xe7348524 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe75b427a ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xe760ffaf rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe7817978 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe785c818 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xe7c5cc1a of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xe7d2c078 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe7d639db component_add +EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore +EXPORT_SYMBOL_GPL vmlinux 0xe7f704f7 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe80c6a75 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xe80cda8d dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe81e493f ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe848565f device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe8583b56 phy_put +EXPORT_SYMBOL_GPL vmlinux 0xe85a8409 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xe85c55e7 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe8aca1f9 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0xe8b2fef5 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xe8b7b05d gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0xe8c5c106 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xe8f166e4 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0xe8f33284 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe941eb0a led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xe9474bde dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xe94fe045 of_display_timings_exist +EXPORT_SYMBOL_GPL vmlinux 0xe9523dba ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xe98006eb trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xe983da46 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xe98a66b2 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xe9acd1a9 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe9ba3899 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9dcb02e hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe9f23740 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xe9f95301 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xe9fea85b sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0xea082f5e noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea136c46 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xea1b3980 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xea282726 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea48fb53 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xea58f8ed crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xea5d44b1 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0xea7bd882 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xeaae47c0 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xeab5f72b regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xeac82069 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xeb037783 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0xeb2a7f78 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xeb3f0348 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xeb408c99 i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0xeb6f84fd queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xeb729af4 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0xeb81d3c9 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xeb82deab pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xeb8ae736 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xebc44526 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xebd241df pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xec028a13 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec1f052c kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec2a5ca1 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xec2d6b2e dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xec34eb75 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0xec538078 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xec655aec n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xec69fba0 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0xeca0c5ad task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xeca55801 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xeca7ce17 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xecb67ef6 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xecb7d1e5 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xeccdf168 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xecede19a extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0xed1c7ff3 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xed1fdf55 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xed4733fc pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0xed5a3e8e ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xed8cd467 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xed9b4e87 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xed9f410f get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xedca62d2 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xedfa2bba sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xee0c2fe5 securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0xee1e3edc usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xee2167c8 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xee26ce11 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0xee2fbde7 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0xee30a204 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee74c4ce regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xee822767 security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0xee9237eb extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee9c18a8 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xee9ce8f5 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xeea70694 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xeea8afeb clk_hw_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0xeeaff563 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xeec18bf7 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xeed07a98 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xeed6a362 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xeed9f6ae pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run +EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xeee99542 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xef467157 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xef53637f tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xef5be5f8 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat +EXPORT_SYMBOL_GPL vmlinux 0xef715993 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xef72a916 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xef7d1bb8 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefaead1f rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xefb8a75a pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xefd34835 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xf006ea89 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xf0124f07 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf063fee6 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xf0659a41 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf0928d22 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xf09c2b53 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xf0a276a9 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xf0a7e390 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf0c54e77 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xf0caf31f ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf0d23cb3 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xf0f4f52d tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf13d406a rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xf15d9d4d watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xf1673501 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0xf1694111 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xf16a0caf gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf19bc004 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xf1a4481b dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq +EXPORT_SYMBOL_GPL vmlinux 0xf1a99f19 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1c346b6 nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xf1ca533a shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xf1d5e800 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0xf1fde4dd hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf2024912 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xf21cac52 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf221a515 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xf223732f inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf234388d agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0xf2425c3a trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xf2433a3a clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xf249913b use_mm +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf298b292 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2c627f5 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xf2d47300 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0xf2d48db4 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf3012f6c rh_free +EXPORT_SYMBOL_GPL vmlinux 0xf30a4834 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf3133f51 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xf318ace6 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf31f5253 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xf3456865 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xf357b252 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xf3613858 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf3797ff5 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3803ce5 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf39d40e4 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b83b96 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf3c20c81 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xf3c34af9 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xf3d213df ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xf3e136a9 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xf3f0ea41 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3f5d9a3 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xf431af70 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf460199d dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xf4620628 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0xf48f6023 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4c630b3 devm_nsio_disable +EXPORT_SYMBOL_GPL vmlinux 0xf4c82284 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xf4da3546 kvmppc_init_lpid +EXPORT_SYMBOL_GPL vmlinux 0xf4e8938a kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xf4ec402c kvmppc_emulate_mmio +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf5019c22 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xf50abc84 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xf5108e6c skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xf5218e02 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf544950b __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf544b5a1 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf56031a7 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xf5642e52 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xf5658f31 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xf57ef4a1 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0xf5a33dfb srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5b4c05b of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0xf5b8ba28 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0xf5bbff6a trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xf5bcf1b2 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xf5cb60f3 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xf5d8d07c power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf5e7f053 rh_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf5f0c1f3 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xf6157c3b bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xf61760a7 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xf61e6553 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xf62ea2ad platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xf63acb70 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf6484411 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xf663b62e tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xf6727e2f debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xf681756d uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xf695ad89 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xf6a32368 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0xf6abb2d8 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xf6bffc60 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xf6cfc6ff xfrm_audit_policy_delete +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 0xf6fdb0ed shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xf73387d6 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xf74c193b spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xf7560c05 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xf75c4b00 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf76a70e7 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xf7787f1c fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0xf77ef25a fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xf78cde3a perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xf78f3ce2 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xf79079b4 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf7a76928 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0xf7addedb tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xf7eb43ae sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0xf7f461df gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0xf80ae541 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xf8259762 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xf8273acc pcibios_free_controller_deferred +EXPORT_SYMBOL_GPL vmlinux 0xf82a1cfa sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xf82aa76e ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf8344cfe rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xf837e0eb unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xf83ac357 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xf86b8fa0 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xf871dcee devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xf8724bd7 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf88d75d1 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf899a86a sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xf89ee97b pci_hp_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0xf8b1dae4 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xf8d4f35a save_stack_trace_regs +EXPORT_SYMBOL_GPL vmlinux 0xf8e398fc memstart_addr +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fb996f ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf91a43ac pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xf9262a52 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xf9271efa kvmppc_emulate_instruction +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf948bfbb disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf979768a crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a6f111 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xf9c7eeb9 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9f29590 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xf9fe9497 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xfa1656a0 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa53fa3f extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfa80c871 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0xfa8d098a of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfa9dedc6 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xfacc5d6b pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL_GPL vmlinux 0xfaf6622c usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xfafb4aee pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xfb01100c class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xfb0ad229 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0xfb0c2814 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfb0c837a regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xfb11454f __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xfb1c2431 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xfb22bc6c cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb498d26 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xfb52b77d __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0xfb5c1eaf devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb8d5159 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xfb9ec6d9 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0xfbaad9c4 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xfbaeca56 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbde7aed usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xfbe2ddca remove_resource +EXPORT_SYMBOL_GPL vmlinux 0xfbeb9798 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc048671 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc4f9c29 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xfc55cb98 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xfc61fa51 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xfc9004f9 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xfcbeb94b __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xfcca60b6 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xfcf6997a bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0xfd222792 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xfd2b4b57 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xfd335aa8 fsl_spi_cpm_bufs_complete +EXPORT_SYMBOL_GPL vmlinux 0xfd3a393b mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xfd68ba48 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xfd7589a4 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xfd7a29af devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfd90f11d iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xfd916df4 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfda52f00 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xfdaece31 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xfdc9a2b8 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xfdcafcea sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xfdd889f3 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xfddcc587 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xfdf1dca1 pcibios_claim_one_bus +EXPORT_SYMBOL_GPL vmlinux 0xfdfb8ab2 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xfe065b60 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0xfe12fbe2 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xfe1373e2 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xfe36c7a2 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xfe396d04 security_inode_readlink +EXPORT_SYMBOL_GPL vmlinux 0xfe50a517 arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0xfe71c220 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xfe767832 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xfe8312bb blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xfe833ee9 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xfe8b6544 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfeb4194c ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xfebb9d17 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed1461a device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xfed25ec8 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfee18f06 ipv6_rcv_saddr_equal +EXPORT_SYMBOL_GPL vmlinux 0xfef97c4e fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff3837e9 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xff4f05cb rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff5db51d pci_hp_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xff6a443b cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xff830731 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xff8862d7 rh_get_stats +EXPORT_SYMBOL_GPL vmlinux 0xff9c066c do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffbb9ecb of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xffc4f824 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xffc70fc1 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xffdaf1e2 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xffe17893 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xffe963a5 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xfff08d62 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xfff3df29 fat_detach --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/powerpc/powerpc64-emb.compiler +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/powerpc/powerpc64-emb.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 6.2.0-5ubuntu12) 6.2.0 20161005 --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/powerpc/powerpc64-emb.modules +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/powerpc/powerpc64-emb.modules @@ -0,0 +1,4513 @@ +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_dw +8250_moxa +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +DAC960 +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +ac97_bus +acard-ahci +acecad +acenic +act200l-sir +act8865-regulator +act8945a +act8945a-regulator +act8945a_charger +act_bpf +act_connmark +act_csum +act_gact +act_ife +act_ipt +act_meta_mark +act_meta_skbprio +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5761 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7606_par +ad7606_spi +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +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 +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adf7242 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16209 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +afe4403 +afe4404 +affs +ah4 +ah6 +aha152x_cs +ahci +ahci_ceva +ahci_platform +ahci_qoriq +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airo_cs +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +ali-ircc +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am2315 +am53c974 +amc6821 +amd +amd5536udc +amd8111e +amdgpu +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 +anatop-regulator +ansi_cprng +anubis +aoe +apbps2 +apds9300 +apds9802als +apds990x +apds9960 +appledisplay +appletalk +appletouch +applicom +aquantia +ar1021_i2c +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arcpgu +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +asc7621 +ascot2e +asix +ast +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atlas-ph-sensor +atm +atmel +atmel-flexcom +atmel-hlcdc +atmel_captouch +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atusb +atxp1 +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avm_cs +avma1_cs +avmfritz +ax25 +ax88179_178a +axnet_cs +axp20x +axp20x-i2c +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-keypad +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7xxx +bcm87xx +bcma +bcma-hcd +bcmsysport +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780 +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bma220_spi +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmc150_magn_i2c +bmc150_magn_spi +bmg160_core +bmg160_i2c +bmg160_spi +bmi160_core +bmi160_i2c +bmi160_spi +bmp085 +bmp085-i2c +bmp085-spi +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bonding +bpa10x +bpck +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +bq27xxx_battery_i2c +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bt3c_cs +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btuart_cs +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +caam +caam_jr +caam_pkc +caamalg +caamhash +caamrng +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +cap11xx +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +cec +cec-edid +ceph +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipone_icn8318 +chipreg +chnl_net +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +clip +clk-cdce706 +clk-cdce925 +clk-cs2000-cp +clk-max77686 +clk-max77802 +clk-palmas +clk-pwm +clk-rk808 +clk-s2mps11 +clk-si514 +clk-si5351 +clk-si570 +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 +colibri-vf50-ts +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 +configfs +contec_pci_dio +cordic +core +cp210x +cpc925_edac +cpia2 +cpsw_ale +cpufreq_schedutil +cramfs +crc-itu-t +crc32_generic +crc32c-vpmsum +crc7 +crc8 +cryptd +crypto_user +cryptoloop +cs3308 +cs5345 +cs53l32a +csiostor +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +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 +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cxgbit +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +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-regulator +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 +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +ddbridge +de2104x +de4x5 +decnet +deflate +defxx +denali +denali_dt +denali_pci +des_generic +designware_i2s +designware_pcm +devlink +dgnc +dh_generic +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +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-verity +dm-zero +dm1105 +dm9601 +dmfe +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +dp83848 +dp83867 +drbd +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1803 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +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-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +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_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc2_pci +dwc3 +dwc3-of-simple +dwc3-pci +dwc_eth_qos +dwmac-generic +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +earth-pt1 +earth-pt3 +eata +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 +ecdh_generic +echainiv +echo +edac_core +edt-ft5x06 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efs +egalax_ts +egalax_ts_serial +ehset +elan_i2c +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emac_arc +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_pcmcia +ems_usb +emu10k1-gp +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +eni +enic +epat +epia +epic100 +eql +esas2r +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max3355 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f75375s +f81232 +fakelb +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_ssd1289 +fb_ssd1305 +fb_ssd1306 +fb_ssd1325 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdp +fdp_i2c +fealnx +ff-memless +fid +firedtv +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fl512 +fld +flexcan +flexfb +floppy +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +fmvj18x_cs +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fou6 +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fsl-corenet-cf +fsl-diu-fb +fsl-edma +fsl_elbc_nand +fsl_hypervisor +fsl_ifc_nand +fsl_lpuart +fsl_pq_mdio +fsl_usb2_udc +fsldma +ft6236 +ftdi-elan +ftdi_sio +ftl +ftsteutates +fujitsu_ts +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 +gcm +gdmtty +gdmulte +gdth +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +genwqe_card +gf2k +gfs2 +ghash-generic +gianfar_driver +gianfar_ptp +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-addr-flash +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-altera +gpio-amd8111 +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-fan +gpio-grgpio +gpio-ir-recv +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-max77620 +gpio-mc33880 +gpio-mcp23s08 +gpio-menz127 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-pisosr +gpio-rdc321x +gpio-regulator +gpio-syscon +gpio-tpic2810 +gpio-tps65086 +gpio-tps65218 +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gpio_wdt +gr_udc +grace +grcan +gre +grip +grip_mp +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 +gtco +gtp +guillemot +gunze +gxt4500 +hackrf +hamachi +hampshire +hangcheck-timer +hanwang +hci +hci_uart +hci_vhci +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdma +hdma_mgmt +hdpvr +he +helene +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hi6421-pmic-core +hi6421-regulator +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-asus +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-cmedia +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-led +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +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-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hih6130 +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi504_nand +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hp03 +hp100 +hp206c +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +htc-pasic3 +htu21 +huawei_cdc_ncm +hwa-hc +hwa-rc +hwmon-vid +hx8357 +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-cbus-gpio +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-emev2 +i2c-gpio +i2c-hid +i2c-i801 +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-mpc +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-reg +i2c-nforce2 +i2c-ocores +i2c-parport +i2c-parport-light +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-xiic +i40e +i40evf +i40iw +i5k_amb +i6300esb +i740fb +i82092 +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_qib +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibmaem +ibmpex +icp_multi +icplus +ics932s401 +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_gen2 +idt_gen3 +idtcps +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ifi_canfd +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-hrtimer +iio-trig-interrupt +iio-trig-loop +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +img-i2s-in +img-i2s-out +img-parallel-out +img-spdif-in +img-spdif-out +imm +imon +ims-pcu +imx074 +imx6ul_tsc +imx_thermal +ina209 +ina2xx +ina2xx-adc +ina3221 +industrialio +industrialio-buffer-cb +industrialio-configfs +industrialio-sw-device +industrialio-sw-trigger +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int51x1 +intel-xway +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +interval_tree_test +inv-mpu6050 +inv-mpu6050-i2c +inv-mpu6050-spi +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +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_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_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 +ipack +ipaq +ipcomp +ipcomp6 +ipddp +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +ips +ipt_CLUSTERIP +ipt_ECN +ipt_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipwireless +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irtty-sir +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it913x +itd1000 +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +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 +khazad +kingsun-sir +kl5kusb105 +kmx61 +ko2iblnd +kobil_sct +ks0108 +ks7010 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksocklnd +ksz884x +ktti +kvaser_pci +kvaser_usb +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan78xx +lanai +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-adp5520 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-is31fl32xx +leds-ktd2692 +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libceph +libcfs +libcomposite +libcrc32c +libcxgb +libcxgbi +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +liquidio +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +litelink-sir +lkkbd +ll_temac +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lms283gf05 +lms501kf03 +lmv +lnbh25 +lnbp21 +lnbp22 +lnet +lnet_selftest +lockd +locktorture +lov +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc2990 +ltc3589 +ltc3815 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lustre +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +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 +mac_hid +macb +macsec +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mailbox-test +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577-regulator +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max30100 +max3100 +max31722 +max31790 +max3421-hcd +max34440 +max44000 +max517 +max5487 +max5821 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77620-regulator +max77620_wdt +max77686-regulator +max77693-haptic +max77693-regulator +max77693_charger +max77802-regulator +max8649 +max8660 +max8688 +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 +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4131 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +md5-ppc +mdc +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-cavium +mdio-gpio +mdio-hisi-femac +mdio-mux +mdio-mux-gpio +mdio-mux-mmioreg +mdio-octeon +mdio-thunder +me4000 +me_daq +media +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +melfas_mip4 +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +metro-usb +metronomefb +mf6x4 +mga +mgc +michael_mic +micrel +microchip +microread +microread_i2c +microtek +mii +minix +mip6 +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma7455_core +mma7455_i2c +mma7455_spi +mma7660 +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_block +mmc_spi +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpc85xx_edac +mpl115 +mpl115_i2c +mpl115_spi +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi001 +msi2500 +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6323-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-quadspi +mtk-sd +mtk_ecc +mtk_nand +mtouch +multipath +multiq3 +musb_hdrc +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxc6255 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxser +mxuport +myri10ge +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nand +nand_bch +nand_ecc +nand_ids +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +ncpfs +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netdev-notifier-error-inject +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +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_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfp_netvf +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_exthdr +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_ghc_ext_dest +nhc_ghc_ext_frag +nhc_ghc_ext_hop +nhc_ghc_ext_route +nhc_ghc_icmpv6 +nhc_ghc_udp +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +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_tio +ni_tiocmd +ni_usb6501 +nicpf +nicstar +nicvf +nilfs2 +niu +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-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 +nosy +notifier-error-inject +nouveau +nozomi +nps_enet +ns558 +ns83820 +nsc-ircc +ntb +ntb_netdev +ntb_perf +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nvidiafb +nvme +nvme-core +nvme-fabrics +nvme-loop +nvme-rdma +nvmem_core +nvmet +nvmet-rdma +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxt200x +nxt6000 +obdclass +obdecho +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_mmc_spi +of_xilinx_wdt +ofpart +old_belkin-sir +omap4-keypad +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orangefs +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osc +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +palmas-pwrbutton +palmas-regulator +palmas_gpadc +pandora_bl +panel +panel-lg-lg4573 +panel-panasonic-vvx10f034n00 +panel-samsung-ld9040 +panel-samsung-s6e8aa0 +panel-sharp-lq101r1sx01 +panel-sharp-ls043t1le01 +panel-simple +parade-ps8622 +paride +parkbd +parport +parport_ax88796 +parport_cs +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_pcmcia +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 +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-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 +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +pdc_adma +peak_pci +peak_pcmcia +peak_usb +pegasus +pegasus_notetaker +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-exynos-usb2 +phy-generic +phy-gpio-vbus-usb +phy-isp1301 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-tahvo +phy-tusb1210 +physmap +physmap_of +physmap_of_versatile +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pn533 +pn533_i2c +pn533_usb +pn544 +pn544_i2c +pn_pep +poly1305_generic +port100 +powermate +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_core +pps_parport +pptp +prism2_usb +ps2mult +psmouse +psnap +pt +ptlrpc +ptp +pulse8-cec +pulsedlight-lidar-lite-v2 +pv88060-regulator +pv88080-regulator +pv88090-regulator +pvrusb2 +pwc +pwm-atmel-hlcdc +pwm-beeper +pwm-fan +pwm-fsl-ftm +pwm-lp3943 +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pwrseq_emmc +pwrseq_simple +pxa27x_udc +qcaspi +qcaux +qcom-spmi-iadc +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom_spmi-regulator +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas408 +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qoriq-cpufreq +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quatech_daqp_cs +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +ray_cs +raydium_i2c_ts +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +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-behold +rc-behold-columbus +rc-budget-ci-old +rc-cec +rc-cinergy +rc-cinergy-1400 +rc-core +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-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-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +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-pctv-sedna +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-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-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rcuperf +rdc321x-southbridge +rdma_cm +rdma_rxe +rdma_ucm +rdmavt +rds +rds_rdma +rds_tcp +realtek +reboot-mode +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +reset-ti-syscon +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio-scan +rio500 +rio_cm +rio_mport_cdev +rionet +rivafb +rj54n1cb0c +rk808 +rk808-regulator +rmd128 +rmd160 +rmd256 +rmd320 +rmi_core +rmi_i2c +rmi_spi +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-as3722 +rtc-bq32k +rtc-bq4802 +rtc-cmos +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-em3027 +rtc-fm3130 +rtc-hid-sensor-time +rtc-hym8563 +rtc-isl12022 +rtc-isl12057 +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-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-r9701 +rtc-rc5t583 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx6110 +rtc-rx8010 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-snvs +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 +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7706h +safe_serial +salsa20_generic +samsung-keypad +samsung-sxgbe +sata_dwc_460ex +sata_fsl +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sbp_target +sbs-battery +sc16is7xx +sc92031 +sca3000 +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +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_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 +scsi_transport_srp +sctp +sctp_diag +sctp_probe +sdhci +sdhci-of-arasan +sdhci-of-at91 +sdhci-of-esdhc +sdhci-of-hlwd +sdhci-pci +sdhci-pltfm +sdhci_f_sdh30 +sdio_uart +sdricoh_cs +sedlbauer_cs +seed +sensorhub +ser_gigaset +serial2002 +serial_cs +serio_raw +sermouse +serpent_generic +serport +ses +sfc +sh_veu +sha1-powerpc +sha3_generic +shark2 +shpchp +sht15 +sht21 +sht3x +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sii902x +sil164 +silead +sir-dev +sis +sis190 +sis5595 +sis900 +sis_i2c +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skd +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +sl811_cs +slcan +slic_ds26522 +slip +slram +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smc91c92_cs +smipcie +smm665 +smsc +smsc-ircc2 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4117 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-als4000 +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-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-firewire-digi00x +snd-firewire-lib +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-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-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-pdaudiocf +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-ac97 +snd-soc-acp-pcm +snd-soc-adau1701 +snd-soc-adau7002 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-bt-sco +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs35l33 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +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-cs4349 +snd-soc-cs53l30 +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-imx-audmux +snd-soc-inno-rk3036 +snd-soc-max98504 +snd-soc-max9860 +snd-soc-pcm1681 +snd-soc-pcm179x-codec +snd-soc-pcm179x-i2c +snd-soc-pcm179x-spi +snd-soc-pcm3168a +snd-soc-pcm3168a-i2c +snd-soc-pcm3168a-spi +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rl6231 +snd-soc-rt5616 +snd-soc-rt5631 +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-simple-card-utils +snd-soc-spdif-rx +snd-soc-spdif-tx +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-tas5086 +snd-soc-tas571x +snd-soc-tas5720 +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +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-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8960 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-xtfpga-i2s +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-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 +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +softing_cs +solo6x10 +solos-pci +sony-btf-mpx +soundcore +sp2 +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedtch +spi-altera +spi-axi-spi-engine +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-loopback-test +spi-nor +spi-oc-tiny +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-sc18is602 +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spmi +sr9700 +sr9800 +ssb +ssb-hcd +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +ssu100 +st +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st95hf +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_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 +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stm_heartbeat +stmmac +stmmac-platform +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sun4i-codec +sun4i-i2s +sun4i-spdif +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +surface3_spi +svgalib +sx8 +sx8654 +sx9500 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_usb +synclink +synclink_cs +synclink_gt +synclinkmp +syscon-reboot-mode +sysv +t1pci +t5403 +talitos +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 +tc358767 +tc3589x-keypad +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_nv +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teles_cs +teranetics +test-kstrtox +test-string_helpers +test_bitmap +test_bpf +test_firmware +test_hash +test_hexdump +test_module +test_power +test_printf +test_static_key_base +test_static_keys +test_udelay +test_user_copy +test_uuid +tg3 +tgr192 +thermal-generic-adc +thmc50 +thunder_bgx +thunderbolt +ti-adc081c +ti-adc0832 +ti-adc128s052 +ti-ads1015 +ti-ads8688 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +torture +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm-rng +tpm_atmel +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tpm_tis_core +tpm_tis_spi +tpm_vtpm_proxy +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65086 +tps65086-regulator +tps65090-charger +tps65090-regulator +tps65217 +tps65217-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw686x +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish_common +twofish_generic +typhoon +u132-hcd +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-core +udc-xilinx +udf +udl +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-dwc +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_fsl_elbc_gpcm +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +umc +umem +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 +us5182d +usb-serial-simple +usb-storage +usb3503 +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_uac2 +usb_f_uvc +usb_gigaset +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 +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +v4l2-tpg +vcan +vcnl4000 +veml6070 +ves1820 +ves1x93 +veth +vf610_adc +vf610_dac +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +vhost_vsock +via +via-ircc +via-rhine +via-sdmmc +via-velocity +via686a +videobuf-core +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videodev +vim2m +viperboard +viperboard_adc +virt-dma +virtio-gpu +virtio-rng +virtio_blk +virtio_input +virtio_net +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vrf +vringh +vsock +vsxxxaa +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5100-spi +w5300 +w6692 +w83781d +w83791d +w83792d +w83793 +w83795 +w83977af_ir +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +wanxl +warrior +wbsd +wcn36xx +wd719x +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wilc1000 +wilc1000-sdio +wilc1000-spi +wimax +winbond-840 +windfarm_core +wire +wishbone-serial +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wl3501_cs +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 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x_tables +xc4000 +xc5000 +xcbc +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xhci-plat-hcd +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx_ps2 +xilinx_uartps +xillybus_core +xillybus_of +xillybus_pcie +xirc2ps_cs +xircom_cb +xor +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +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 +xz_dec_test +yam +yealink +yellowfin +yenta_socket +yurex +z3fold +zaurus +zd1201 +zd1211rw +zforce_ts +zhenhua +ziirave_wdt +zl10036 +zl10039 +zl10353 +zl6100 +zr364xx +zram +zynq-fpga --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/ppc64el/generic +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/ppc64el/generic @@ -0,0 +1,19374 @@ +EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0x048d27cc hvcs_register_connection +EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0x536d329b hvcs_get_partner_info +EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0xc39c3704 hvcs_free_partner_info +EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0xd0a02396 hvcs_free_connection +EXPORT_SYMBOL crypto/mcryptd 0xc1a503a2 mcryptd_arm_flusher +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0x23c68b67 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0xb3846d3f bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xd7e52e92 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 0x178bb246 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x29fb1f98 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x447fee7c pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x4b27a2de pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x655d2318 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x72edc624 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x8e9ace94 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x95c30f0a paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x9c33a9de pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xa3a7155a pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xba9260af pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xe99625dd pi_do_claimed +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xb6eb154c btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x17a38320 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x45cf17d6 ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4dde7206 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5f536409 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe8e54159 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe908e712 ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x54d4f582 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xabcb9279 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xe97c869e st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xf7ecc8a2 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x4e2f3a93 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x9c527967 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xafb6e2b0 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x168e0f48 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x23a2ac2c dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x44419edb dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x55bdd0d8 dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x67956a66 dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xd750d20d dw_dma_cyclic_free +EXPORT_SYMBOL drivers/edac/edac_core 0xbdd252a2 edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2a8728c3 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2cfecec0 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4c46c169 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x56a623ba fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5dabcdf0 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x62cbdb4c fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6364ebaa fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x645b715f fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6bedac55 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6e52a749 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e31718b fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fdea5a5 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8158b4ae fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8eee842e fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x914762bf fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x93083fe5 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x95545c0a fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa672bc1e fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaf2df1a5 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb5ed0545 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbb621351 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbf9ef449 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc7e58d1c fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd54ec1f7 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdc2a3fdf fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe250bb1d fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xefd04049 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/fmc/fmc 0x0bf57e6a fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x0dc3ed73 fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x4f518805 fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x501b2aeb fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x6c6c7520 fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0x7bfbc708 fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0x947be5d8 fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0xa3aee7a8 fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0xafd581c7 fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0xb0796574 fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0xdb1ed96b fmc_device_unregister_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0x005bc0c2 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00b2e91a drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0119c3e3 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x017cf68e drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0212dddb drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02c141a2 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02f0d3b5 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02feca69 drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03ee06f8 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x051dfad7 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x060a9735 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x074393cf drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07a7da23 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07e041ed drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0864d669 drm_mode_object_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ada99e1 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bdd284a drm_crtc_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c0df729 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c789af8 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0da0c3c9 drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e6860e7 drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ebfe3b7 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eead59d drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f930d15 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fbd2c1e drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fc54bf1 drm_mode_set_config_internal +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 0x10c9828f drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14269388 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14d80708 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14e1b858 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15fe6636 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17dad439 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17ec53a7 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19751c9a drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e4430f drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a546ddd drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a770ac3 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bd3cbd6 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d59b24d drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d9d66a4 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x224aee5b drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x228fedf7 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x236e58c8 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x242078cd drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2626fe4d drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x264756da drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x266d4d48 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2689dbe0 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27477899 drm_gem_object_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27d2509c drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28ac60f2 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29427859 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29c99ee0 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2aa933be drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bf162ae drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cb06a7c drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e38d5b6 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fe2254e drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3088c900 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31ed62a5 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32222004 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33424484 drm_crtc_commit_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x337090b9 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x354f883a drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x378cb648 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38e6b329 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39fc2ee2 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a601a7f drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3aa29c91 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3adeeb6d drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bc5e189 drm_crtc_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c28aef2 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ca98f2d drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cb25392 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdceae0 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d1ff1bb drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dacdf54 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40730329 drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42394aa7 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x455bf309 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4671344f drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4676901a drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4734a7fd drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49866853 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a495d7e drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a64cefe drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ad40d78 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b8c2a41 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bdf1611 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cfdc51c drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d1f0cb9 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e0484ea drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f3f09b7 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f94282c drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fc4350a drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x501aa01a drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x504c4c94 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51db353a drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x527d6431 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53e05546 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54030684 drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54e076d0 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5518821e drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5661f2cc drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58254282 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5899a77e drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59133a4e drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ac77c1f drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c6bf672 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cb8c729 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cf2976d drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d04fd58 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60a01014 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6108c505 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x616aa587 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62b31705 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66e5a9ce drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x683e66c3 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68ed607c drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6931c497 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a396b8b drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b75d6ab drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b875376 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e094653 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e28af11 drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e9f19b0 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x704bf914 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x706ca1f9 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71ef049b drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72203f51 drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x729e5b0b drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76bf5b90 drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x777108ea drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78d261f2 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79b55e69 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a88847d drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b409de4 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b75ed67 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d1fb691 drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d34bf44 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e4f3ab4 drm_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e924b8a drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f36dc54 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f8454f4 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f95d92b drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fe4d13f drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80cf3b38 drm_gem_object_unreference_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x822528c1 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8284d93f drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x837c85bb drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8391375a drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84c6f896 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8501e1f0 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88546535 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x890ab980 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8968a0bb drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a57bea9 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c0809d8 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c14265d drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d53f237 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dd7734e drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e09cec7 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e2fdf5c drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e4ea5f8 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f9a1478 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f9ee486 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9037f273 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91f53546 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x929ad656 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94460298 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95261b42 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x958a3d71 drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x960ccb0c drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96f1d9df drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9723fa46 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x980fe235 drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98120ec0 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a6dd690 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ad5a914 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d84be05 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1b87419 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2002768 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa258699d drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4487934 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4f914d5 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa55bc7aa drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa55e671e drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa712f9d5 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa750e9e4 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa78af018 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7cf5507 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa803c651 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa816f025 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9765587 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa1cc49c drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaba3aaa0 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabc5216f drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabdecd99 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacccb38e drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadbeaa36 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae7ad504 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaecbcfac drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf4ec65e drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1dd2fb9 drm_mode_object_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb24e5e5b drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb37d51ad drm_format_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb401a9bf drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb41ad326 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb47a277d drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5241303 drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb54538ef drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb57390da drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb80b40c2 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8aa8b54 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9fd906f drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb9adc0e drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcee076a drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdd2e662 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe875e19 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbef6da49 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf272a73 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc00566e1 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc079c5e6 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc33675eb drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3de1abc drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4688a2e drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc49434ab drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc496dfc7 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc52db713 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc64c188f drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8701ebb drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc969fe8e drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5c7790 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcab4456e drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcacc826d of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcae0933c drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbda4c7f drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc186526 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc8e9fb7 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd29dfa2 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdd95043 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcde30eaf drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce7a9fea drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf7befff drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0903f15 drm_format_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1f02a1d drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd615ab97 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6641716 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6c3d5c3 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a6bf03 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8c11454 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda29344f drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda743499 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb4bf165 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb5fd767 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdba987f4 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbe7fd34 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde3bf503 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf11097b drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf21f92e drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe012d1c4 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe15876a6 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe21ef34d drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2c51a0b drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ff3f7b drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3bf56af drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4b49064 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe57d8257 drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5e21cba drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe710f7dd drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe71f7645 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea99fb8a drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb9262c1 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebe00476 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebf423b6 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec9187ba drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed79776f drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef01b6bc drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf07ce7f0 drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf09dff16 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf16e07d6 drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b098be drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf25504c0 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf34c4a4f drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3b0f291 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf44fe0f7 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf466dd79 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf475a9d8 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5732756 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf959d775 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9f9a5fa drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa97e406 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb923efd drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbe17938 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf54a4f drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd063935 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd0d8b7b drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe1fa8a2 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00fc7930 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02453820 drm_fbdev_cma_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x025d94ac drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05c67fd3 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07dcf56b drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07e46ac9 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x089c2b30 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0acc4ac4 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b1a1d3f drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b4e6947 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c67819b drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d0bbaa8 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0da4aa2c drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10a30a25 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10bfbb56 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10c1a53b drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14daa261 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x167172eb drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a37c6e8 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1bf7235b drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d493826 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f26f9a2 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f2dd4bb drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fe6787d drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20825e6a drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2225bdc6 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2574cf8d drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27097f94 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29343dea drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b645e52 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bf80d51 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cdba68e drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cf93f27 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2de68961 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2de9a283 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ec43de8 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32f44ea9 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33c3507e drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36b2ae5c drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x374bd81e drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3909a3a2 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x393374bf drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a84c0f0 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x418d8ff3 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4332589c __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4371f242 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43d65fa9 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b109e99 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c3a2989 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ca93ba1 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4dc3829c drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e317366 drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x509c85e8 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53ded322 drm_atomic_helper_update_legacy_modeset_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 0x54e20c98 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5830608d drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58fe7da9 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4267f4 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cf0b5bb drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cf84871 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d5fb31d drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f7739d5 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61f66d52 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x696c5f00 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a0a13aa drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b68db6d drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d071be9 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f7d9bfd drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x718ddfcf drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73be8d2f drm_fbdev_cma_create_with_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73f0fc18 drm_fb_cma_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x742a4d97 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74f270d8 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75e9e33a drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76c4bcd5 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77079708 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a066ddc drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7acb23b8 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b640f03 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d9ace20 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7db395d9 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x810d7d35 drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82ab071c drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82db875c drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8361a21f drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88725338 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88cbdee7 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8926717e drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b01b477 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b022b0c drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bdf49cb drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f987a2e drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90e8d8cf drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91da0893 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9435220a drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x986de210 drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b9b57ee drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0266482 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0283aa2 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa17363a3 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2c2f540 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa37500dd drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3baba50 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa74ce770 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa775ec0b drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9e18a59 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae55bc8b drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1d2929b drm_fb_cma_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2d08d88 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb45d7b51 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4f21a16 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb577a947 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5bb9949 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5d262c2 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7fc53cd drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb89c6e0b drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb96dda11 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0ca4f6c drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2381d70 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc298b946 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3d71d49 drm_atomic_helper_best_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc52e432a drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc59d2a23 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8b60ede drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca1b3808 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc7bd901 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xceeb8f87 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0a21e4c drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd28ecb3a __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd343cdfb drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5c8214e drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6ba5891 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8a8ced9 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd99112f3 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda876f48 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd40e452 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddd0fdfa drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdedc7a2c drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf1eb718 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe18a4507 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe315bf5c drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe33d5b6f drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe394c3ed drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4678761 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4947111 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6179888 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe681627c drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9aaaec3 drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf17c94a2 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf294d6cb drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3b01e07 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6f36b7e drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa2606c7 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa852caf drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd1622a4 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd55eef5 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe83b8df drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe93cded drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x001f62b6 ttm_bo_pipeline_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x011c17e4 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x110d8d80 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1635094a ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25e96b34 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b7f1257 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3389afb1 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x36f95211 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3776a7b0 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x39a00ace ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ec117fb ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4323edde ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4384f67d ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4711a0ed ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x485a5bc0 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x495633aa ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x49f844ea ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x49f9b57c ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4c92c3b6 ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x569756cc ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5743d607 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5948f791 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a8fdfea ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x61521168 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x615fe1bd ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x69fae6b9 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x708f8473 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x71b3f562 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x76353b6f ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7709f3b8 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7cc25954 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d55da85 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7df42922 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e5f5855 ttm_bo_default_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80a196ca ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x831558b0 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84a13931 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8675d94a ttm_bo_default_swap_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89a443de ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b7cf923 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8c7595f3 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8ee71be8 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x91e52e24 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9ec88aff ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa1e3b35c ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2a129fd ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa73de2a9 ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaa39aa29 ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf1b92c1 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb66024c0 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xba242cb8 ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbc249b35 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc357a989 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0c2da ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcd587956 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce9e3a53 ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcefe55f8 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf3eac12 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd1b076c4 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7f51742 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdeb6d5b0 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1328de4 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1ca3ac3 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe23cfecb ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeb08ba39 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeb582c6c ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xee21ee14 ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf35a8d27 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfb4988a6 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbf0a848 ttm_mem_io_lock +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x0d392734 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x372903e5 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xe79e8e70 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x29447619 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x598ab964 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x8604335c amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x11689a69 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x402097d9 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4a2c7942 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x56e6227e mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5a293fde mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6157fecb mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x68cae013 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7d2a5b75 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7dd9c976 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7ed33298 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9a16d87c mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa1aa8304 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdbbfa85e mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xed42ae60 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfa6348e9 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfaeaaadf mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x3205b99c st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xc362e0bc st_accel_common_remove +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x3cb2163c iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xc4dce33c iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x0ffac918 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x4bdf730c devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x55ed9a47 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xc38a0ad5 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x27e4a77f hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x2cb5486f hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x9d1e2f26 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa51f246f hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc213ac9a hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc83a92bf hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xd0759e5b hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x4d189cbd hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x7b9a118c hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x8df30790 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xce066dfd hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x053715ae ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x0f89e30f ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x15107a80 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x211d9f2c ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5e909883 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x652d4150 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8142892e ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xaacf3b9b ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xbb4f12e0 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd8f609fc ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xdcd3fc7c ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x2756c826 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x3377e48e ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x7d410ffb ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x8897be93 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xcad74c8d ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xb2ebf151 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xdb3f788e ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xe53d8643 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 0x17039080 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x45799172 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x50f49497 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x54cd99b6 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5e1fb239 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5f65a11c st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7071bd96 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x71c272c5 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7310b4c5 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x90b83596 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc079dfdb st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc1d8070c st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc431b652 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc58a55df st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd01eea52 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xda217ab4 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x646d6875 st_sensors_of_i2c_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x7385f8cd st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x23c6e4f2 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x1ef56171 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x2e308c03 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xce8b73db adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xfa72e728 adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x0ced90e0 bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x0296acc6 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x0d760620 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x2e01764b iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x32fa2b5c iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x33080d90 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x4004463e iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x41620376 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x5f0cfee7 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x8d8a5ff7 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x911b455a iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0x95d35821 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0x9b3d2d34 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xb22b9316 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xb9b62e74 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xbf62a5dc iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xcbc9a38a iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0xd6a00dbd iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe2010fd4 iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0xe616c8d5 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xf01ae40c of_iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xcf03ade2 iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x1e0cb31a iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x84a923f9 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x9f97463a iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xd1f2001c iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x027c1b8d iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x0c00ad5d iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x4de6dae4 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x6a9bc695 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x9d40b1b7 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xd83c195c iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x0f6b0755 bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x9e67c149 bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xb195d034 bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xe0175476 bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x1efa4257 hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x70eff5fb hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x9d1c5a29 hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xf510d2bf hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x0a492dca st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xd3f70e82 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x1876924f ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x5b268d69 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x017c1a62 st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x99544604 st_press_common_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0cf4583f ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x11d0cb0c ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3c83b328 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x478e9456 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x47955681 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5b2af436 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x610b65a4 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6cb23ab0 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x80556f24 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x80d0a284 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8588be9a ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x85a0d5fc ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8d8d74ed ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x950becee cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xab0674b6 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd1c264a7 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe43e85a3 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfbe96cb9 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x036802ef ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0446c4be ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x049ace30 rdma_addr_find_smac_by_sgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06c2c940 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06dfab6c ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08cec47e ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a1e62fb ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a3eca5c ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0cd3a325 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d9df296 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0efa6760 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1051bb32 ib_sa_classport_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x156cedad ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bcd158e ib_destroy_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ceacf34 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1dea45b0 rdma_resolve_ip_route +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ea5767b rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x261ba254 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26e98c8e rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2962d6dd ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b6b0b0a ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c0ef076 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32a8402c rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3881190c ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38f26f95 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39a31c6d ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cee5d34 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3dd501e0 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4082a382 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x411ca80a rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41eaafb7 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42766c84 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x478a5fbd ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49612c4e ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a19bf00 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a27fb8f ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b3d7909 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b81f63d ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c845e23 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d77476f ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ff3ecdd ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5328d7a6 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5367864c ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x542409bc ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x576fdbac ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57d14c4c ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58c74934 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c397057 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d3175cb ib_create_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f2f02db ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x607209a8 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x607a5257 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x632c2991 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65307645 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x661fa69b ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x665c85a4 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x693dd8d1 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69c41d24 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b896a8d ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ccb756c ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d58fd77 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6dee40eb ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71dee777 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7258d878 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74388dca ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74506aae ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c0ef36d rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d5aff43 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e777444 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f80aaf8 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80e7973e ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x829e4387 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8483fbc9 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85467a3e roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8590971e ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8685b126 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x870230d3 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ba590db rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8bdabb0a ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c08f82b ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c856871 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f73ed3c ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9187a164 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91b80cbb ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9237b5ce ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x937c2e35 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98b30f18 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9944a315 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x996fa9e2 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9979bf89 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b9cf9a rdma_addr_find_l2_eth_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a1cd50d ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c1f89db ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9dc6da9c ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e7f6ce3 ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f11b748 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa10ce96b rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2d310da ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9f45564 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab065756 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac1991bf ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadcd49fc ib_modify_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae257b5f ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafe94641 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5fb52ca ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb61e1c6d ib_destroy_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb72922cf ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb4ecd00 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbf1759b ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbf3aa6f ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbce6b86e ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbeb0506a ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbee854b4 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3053d87 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc62fb5a2 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7b2d57d ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8003f05 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc83e2ed4 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc873fd81 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcecb79b5 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1624666 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4078dfc ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd48d90ff ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5f6c603 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6c5f248 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd832a0aa ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda7331ea ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdadb3857 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe42c6860 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7d10d59 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe802af7e ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9de56d1 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed139a9a ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed3b551a ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeda95561 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xede901c5 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef6a6514 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf006a49a ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf207652b rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf89af5dd ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9207873 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa343ad0 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb9c38ae ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbe4bd8e rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd6bea98 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5397d778 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x70a8da01 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xed9a54a7 ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x047964ac iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0a809fd9 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2982d34d iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x456249b5 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4de08ad9 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5c56b29d iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5d23c7dd iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6545a935 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x79a78ddc iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x93099b55 iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9546d61f iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xae4dc86d iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb906c59d iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdb3e5d37 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xef0122ee iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x134ef10f rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2b00d13b rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3151361d rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x35c040a0 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3a7ec0cf rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x43770139 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5eced965 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6b546995 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7c11c922 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7cf33f31 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8485bc5d rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x874daf7b rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x914f0bc4 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x992b95b9 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xab8d3721 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaee4dda3 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb5be6cdc rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb84f249a rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xba66e7cd rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe3fd3ae3 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfd4b921e rdma_listen +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0490b5bc rvt_register_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x05415182 rvt_check_ah +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e385842 ib_rvt_state_ops +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1bf075fc rvt_init_port +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x24acf0dd rvt_invalidate_rkey +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x40bbc45d rvt_dealloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4315ee66 rvt_alloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6ef3c7ae rvt_cq_enter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x76d108fd rvt_rkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7904b926 rvt_unregister_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7a1e4b4e rvt_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x813ed1f7 rvt_lkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xbf048d8e rvt_mcast_find +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xdf24e17d rvt_error_qp +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x48f93f58 rxe_remove_all +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x6e238903 rxe_rcv +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x7019869e rxe_remove +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x8e6db99c rxe_add +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x9d7c1456 rxe_set_mtu +EXPORT_SYMBOL drivers/input/gameport/gameport 0x0151e337 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7152fd8e gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x75b60a8e gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x8052e573 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa9e4186a gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xd456340e __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xdfcf26d2 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf9478572 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xfcc76292 gameport_stop_polling +EXPORT_SYMBOL drivers/input/input-polldev 0x055707f8 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x17525909 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xb35d0c5a devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xcd01ce69 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xec5210f6 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x12cad5be matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x7f103690 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x872854df ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xb2d92aeb ad714x_probe +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 0xdaae52fe cma3000_init +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x7ac89de7 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x134bf701 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x28d25119 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xa4916fda sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xa59f8468 sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0xa7744d47 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xbf1d3ba1 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x7f7c9b2c ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x9baacde1 ad7879_pm_ops +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1179b6e5 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x36bd40b8 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x57b7d358 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6b824739 capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71f0cba9 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaabd66aa capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb943a161 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xea315abe capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf0979ccd capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfc2426e7 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1df9d816 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3c6e9253 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x5041346d avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x53fff5ae b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x59bbd16d b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x642be81d b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7531d2b8 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x77e12fb7 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8adee55d b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8e4a6e46 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbd146952 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc33fde92 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdccdc7c6 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xebe95164 b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfbf6f594 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x26890302 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x3890d631 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x42a0988e b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x44fc4b05 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x543d39a1 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x5d66c094 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x907eb49f b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x944117cc b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xcdafabb5 b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7ab59853 proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x2c408bf1 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x813bd2dd mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x84ff997a mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xd68d5399 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xccc663d8 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xe74ca160 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x31f1bca4 hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x7a1e9014 FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x8bc4b67f FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0ec1296 FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x25b95947 isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x4d41e928 isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x6fbdb452 isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x9d1c552d isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xd01d6fed isac_setup +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x5116eec1 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xce83cac3 register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xdda6192f isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0eeeb522 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1ef253e7 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4567a6e0 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4a710ed8 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x515f7a5e recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x521021af mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6472a15c mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6ea193ab mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x74983fb1 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7a27e51b mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7dfd9af1 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7ee10807 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8478fe10 mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8549d8d0 mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x86ff42b4 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9311b53f mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9778bd75 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa00fba5c mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbcceadb2 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc0de98ab mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc525fd78 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc78a0f97 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd4fe58eb queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe29e3cd2 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe56099fc recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe647d492 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf7e7690f mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf84ae11f mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1652d3ec closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1d89bd11 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1f529ce8 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0x26481f26 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x44a37d62 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x5b59b856 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7b3dba24 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7daccb73 bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0x8833b0e8 bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa3c5c702 bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa41cb832 closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0xca5df778 __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0xce47a6d9 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd2813054 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0xdf892351 bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe67c2d16 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xeb3300c0 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0xec6f33d0 bch_bset_init_next +EXPORT_SYMBOL drivers/md/dm-bufio 0x268682d2 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-log 0x53dbc608 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x960e4524 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xc8d4433d dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xc9f8b933 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x11b2528e dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x88cf22d1 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x94260187 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xabf22d53 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc44d6d1b dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc94cae9c dm_snap_origin +EXPORT_SYMBOL drivers/md/raid456 0x8f80efcb raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1e83a87b flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x21696f0b flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3cad5f65 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x48631189 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x50f98d64 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5e95f7d7 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6ddcc8f1 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7dfa8576 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x83370346 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8d303d42 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa4724a14 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa555ff01 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbc3a5831 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/cx2341x 0x03ecce5f cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x09a45f83 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x247af8c9 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6cc7797c cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0xafdf3998 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x97aadd78 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x5335433c tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0x9a86a73d tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x07242b98 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1d831c19 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x32706276 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x32eebbd2 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x35663ce2 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x364af46c dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x44c6776f dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4bef122c dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x573f741f dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5c0ea535 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x62a31cc0 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x67cb0f86 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6f07342a dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70af1058 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x76d39e87 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x78db694b dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7f4f9b54 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x85a5e7d3 dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9cffc478 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9d651750 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa6c7159b dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa9eaa920 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaa130d2b dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac08597f dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac155f3e dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac2f95e8 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3acef31 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbe23b69f dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc7dc9b86 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcd37e996 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcf589e8c dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcfd9c6a9 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8f7184c dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xda4343ad dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf28e7431 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf821d629 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb4c81da dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfbaa7e01 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfd3103c1 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x87add83e af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xe48a8058 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x20853127 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0cfaa765 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x27e68c57 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4b38864b au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6d575824 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7be24867 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x86181f10 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa009ecac au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa9e2ea36 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf72c8e9f au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x5579580d au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x08ed9590 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x2f46567b cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x03807ee0 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xfc1daecc cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x7f77ade8 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xb6017683 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xbf5deb10 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xc74675c0 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x8dd46c35 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xc42b31dc cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x266ec8dc cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x2034c7fa cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x65a1c007 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x0a5eaa93 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x4120b35c dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa87c60f6 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xc10c3320 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd4bcc63b dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0f1c4050 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1435ee9f dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2668e05b dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2fd00a02 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3c106579 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4f0dd5a6 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x52315c8e dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5f78354d dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6c41e183 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6cdf7d68 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x748deabc dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8331757c dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8f973a1f dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcb77dd17 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xebbe8a1d dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x9907957c dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x49e36577 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5a118120 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x806b5490 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x9028e044 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe658952a dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xeaf6fd9d dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x6be2be9f dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xa1236894 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xa680b2a0 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xd6ac6182 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x5c30b6f2 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xcaf1b01d dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x30dbabe1 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x451e4891 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x54902a20 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x71e0bbd2 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x9082cadc dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x0e342c82 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x56f9c280 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x8bdb0696 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x5d03cd41 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x931c30b3 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xb33016ca ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x6af8c71f helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x9b968835 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x8f519c22 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xe4e6c581 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xaeee5d1d isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x2dd0945e isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x480d5b64 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x887cc138 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x9643da6d l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x119a4c34 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x057d437d lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x5ff37565 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x898d6034 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x05d48727 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x5ac04a9f lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x0e891901 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xc9d9bd49 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x190dcfec lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x46481b78 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xd48ef540 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x20b33d86 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x9c547948 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x99abcd78 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x2dbb5e3b mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xb06c5ca1 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x3a89f212 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x94e62979 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x6dcc7e94 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xc9231f38 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xba67d98d s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xf69d75fc s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x5b555500 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x77428214 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x1660d967 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x6adb4407 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xe8aa5d2f si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xbeb41083 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x60e74d9a sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x59ecb817 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x25aa517f stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x92421247 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x6dadc5b9 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xfe530e0b stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x60848a44 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x176be4f0 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xfb88de01 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x88d15524 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x3780e238 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x6bbdfd64 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x57761c0c stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xac36134d tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xb9d8cf2d tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xab01d472 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x67c6e786 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xaef602b6 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xa8b307a4 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x6909bf28 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x7d4f826e tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x8116b776 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x9a7b70ac tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x573a77e8 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x36893ffa tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x3b0c9afc ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xf3c7c755 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x508f813e zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xd09aa07b zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x747d0fa8 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x2d0ff55e flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x3cf3e317 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9d3b08b3 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9f2c1b39 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa54c402a flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf0b4830a flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf9f7ba8b flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x70f66c44 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x75a00a1e bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x915ee053 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xf219dbdc bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x03a05fae bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x0900184d bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x4fca9120 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/dst 0x0bf650ee dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1b749059 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x74f3d73c read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x75d92d9f dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x99cf7f0d dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xbf0e1cba write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc8275f56 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd83f80b6 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe30fd3f3 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xe338e7c5 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x0efe7d82 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x121d674b cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x6b7f0974 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x97421882 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa2e5f1fe cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x84d4350c 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 0x095bb65d cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x133c9cb6 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x2b8e5ba8 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x2ff24239 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x79878952 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7f1f7293 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf6308f61 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x1815dbd6 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x8870bed2 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x3e727251 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x52e4d567 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x8b554de0 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x9c1fbdd7 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x51e24acd cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7ab10f9f cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x988ab792 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xcbfe2071 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe13d20bb cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe55c6986 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xea02de73 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0b3b5014 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x18d5432e cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1adf8e13 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x219d72c6 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x34cea5ff cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x60640166 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x71f2de81 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x92032b13 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9475d218 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x97076d48 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9d51fc51 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xaa494614 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xaff068ba cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcf8714c4 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd35bcfd5 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdde2a596 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdf7127b8 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf15aa083 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf52ffd82 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfd008596 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x04d25da6 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x15437020 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x38755921 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x45ebfa97 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4fab0703 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x68341530 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x70ffce3d ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7a839263 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9c5db005 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa3044228 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xaffca7a8 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbd790ec1 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcbee0901 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdccd0701 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe0685910 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xee672988 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xff24c146 ivtv_stop_v4l2_encode_stream +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 0x19f49611 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1f1cdba2 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x36148af1 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x485d24cf saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x63858243 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x727cdb96 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x74d60b5b saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x906bfd65 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x91776d71 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa8f1d3e6 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd574b846 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe6a58f45 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf348bc2a saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xb1ced696 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x53c09de7 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x719335e4 soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x9b69e67e soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xa4984129 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xabcef8c4 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xb13c3530 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xe0a749f7 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x25c52d97 soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x2863728e soc_mbus_image_size +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x29f5a98b soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0x5f3e3558 soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_mediabus 0xdc5dafe2 soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/radio/tea575x 0x35e3dbd9 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x551b1502 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x608d3c69 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x8674eccd snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa0ecb079 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xb25a3acd snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe316ab34 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x18a48074 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x3b58a24e lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x4ada152a lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x8e8e0393 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x93250ee2 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa8b314da lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xba5b725a lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc7ae3c72 lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/rc-core 0x630b9b9a ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x648ec250 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x80fc93c8 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x30d7959f fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xac0d4de1 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xcf38cb45 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xef3aa4bc fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0xc9c0625c max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x7bf1d4e4 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x4152a28d mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xa5eaf428 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x9534ee59 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x9c574b69 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x5a7ce800 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x5a0c2c49 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x8a137a1f xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x9b56ab3a xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x5696f32a xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x0745b914 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x129b7c11 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x37ac3bb1 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5c6032bf dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7f638c37 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x806e09cb dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x96337c68 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9dd92f2a dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa3ffb119 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xcb5d7654 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xed641106 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x35e06c92 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4c2bcf1f dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4f1874c3 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7633e718 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x87250c6b dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xeb6d0c4e dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xfec62073 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 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 0xfa7446f3 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x17193420 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x28d65a5f dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x29eb8ced dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4017e557 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5b794b16 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5d94a1db dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8b96ecd9 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe0bcfd5b dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfe04cfed dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfeaae5f7 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xff42bbe7 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x9638ef42 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xc6369aa6 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3805e963 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3f9bb7ba go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4f7194fa go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x68b765f6 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x77e51e6e go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x797c8c54 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8941c3ef go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xad52d21e go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb848eff3 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0f7b4313 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x314da71f gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xac68cdd4 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc50ad526 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe4060ace gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xede2e52d gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xefd40fd4 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf6095200 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x99b16403 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xc3499447 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xe0ad22f0 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x43dfe3e4 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x6818e22e ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x1294a6e9 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 0xc8150d1f v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xd4f7eb98 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x1c6b2d4a videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x2014f845 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x32a4deae videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x403f67b6 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x9adedee5 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x9d1aa1c7 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x3b4777d4 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x4099d8f6 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x1607e300 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x23e3cd1f vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x446b4db9 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x5fbe1f50 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x65cca362 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xfe005b6b vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-memops 0xab31d65a vb2_create_framevec +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-v4l2 0x9270f6b5 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x050da131 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x05ac518f v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09e706f9 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0e0f3aa3 v4l2_of_alloc_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x132bd7bc v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x157735a0 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x167861ec v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x17527e32 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x18efd203 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1d0418f3 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x261e5128 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2b52644f v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2eaf7069 v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x333613cd v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x33898152 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3552621c __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x363c7f86 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x373e2c33 v4l2_ctrl_radio_filter +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 0x3eccead3 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3fa80403 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x407b40fd v4l2_of_parse_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x482e5121 video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4924409d v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4fb24872 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5158a577 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x59d7c241 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5a860fb6 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x61ac864c v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x649e1d1d __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6b784208 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e7d5b34 v4l2_of_free_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x76790fdc v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x77d81fba v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x77d8e179 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x79515b4b v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a8889b2 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f55524b v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x84892d07 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c078e8b v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8cd46891 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99bdb808 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9d3fa2bf v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9debec56 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa02eafaf v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa0f0fe6a video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa659255d v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaa828269 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xabd8750c video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb12df2c0 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb60d1f66 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb659fcdf v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb8038b1c __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc6807b23 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd43f3c64 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd84302c4 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2cf1a1a v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xec3e70e2 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed3c0a0a v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf2827bfd v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf5ca6d7c v4l2_of_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf72c3f41 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfa35ca1a v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfcacbc6c v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfd9850b1 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xff0f1889 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/memstick/core/memstick 0x011c697c memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1103ef87 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x18eaa224 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5327907e memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x582a3778 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa5a22ef5 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa64a392a memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb2c7db77 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb3e409b6 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb90a65e9 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xef80010f memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf67f088f memstick_resume_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x031878f7 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x064a3c63 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x07d98944 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x095ee1b9 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x097b8cea mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1099d121 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x14893cf0 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1bc2ccde mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x407bee51 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4edac3a8 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5430a748 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7296c84b mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x79d1873d mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x868db482 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x947ec7ce mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb1a2edb2 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc837e772 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcb75afce mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd380d26e mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd5c49abb mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9620db5 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdf1f37d1 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf02f6c6b mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf33cdd7e mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf4ac0ed6 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf5390ae7 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfe10f6e4 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xff9977d1 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xffa3384b mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x02a53f5e mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0a337075 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1212a4ad mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x262c99ea mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x42487cfc mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x42a2020f mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4491d7e2 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5a747156 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6132a142 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x689ab5ee mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x696f0ce1 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6c540b33 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7b5d7990 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9a4c154e mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa718d887 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaa7a237d mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb120bfe3 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbdfc29a1 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc2ead817 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc3f1866d mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc8d58804 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc97290cc mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd3a9b9a2 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd645025b mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd91429c8 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdde94396 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf43228ad mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/mfd/axp20x 0x16500387 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0x844286d7 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0xa436c662 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/dln2 0x5d53ebef dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x89f5afc0 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xed29750c dln2_transfer +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x02d0d01b pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x8e82f646 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0249c74a mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x02f1e24d mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x154ee241 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x42da1910 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7321faa9 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x78405aeb mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x816133bb mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa589ded6 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc9ab3e34 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcc3df6e3 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xdc856118 mc13xxx_get_flags +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 0x5d65782e wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x6d098a7e wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x6f5fc3b7 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xf03dc19a wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xf7ae9744 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xf7fd04fc wm8994_irq_init +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x5b4d22e8 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xfb22ecec ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x8ed02032 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x3034cc35 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x974fa903 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/ioc4 0xcf4e9c2c ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xdac0c8cb ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x087988b7 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x0c72028b tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x178b8992 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x463c285b tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x4a1303ef tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x4e8cfad6 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x50ee190a tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x5e8a84ba tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x6d5a0d01 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0xaa7d9aef tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xabb19372 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xcb84fef3 tifm_unregister_driver +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x94dee946 mmc_cleanup_queue +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x840f0b53 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x98e194c9 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4132cd62 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x743a846e cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xaac8bbac cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb2ef76c3 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd21c4080 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xdb23cc87 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe758d640 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x7e682bc2 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa1125295 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xac44ecbc map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xc3b736ff do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xb9163bb4 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xfb95fdfb lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x03f98bc1 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x53f01af8 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0xef64980d mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/denali 0x19c5d984 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/denali 0xcc7737c4 denali_init +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x4077c768 mtk_ecc_enable +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x5437e775 mtk_ecc_disable +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x67dc4d5c mtk_ecc_adjust_strength +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x6df58afb mtk_ecc_release +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x6fd9dda0 of_mtk_ecc_get +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x76e53683 mtk_ecc_wait_done +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0x77ecf26d mtk_ecc_get_stats +EXPORT_SYMBOL drivers/mtd/nand/mtk_ecc 0xf00129a1 mtk_ecc_encode +EXPORT_SYMBOL drivers/mtd/nand/nand 0x46b84a63 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/nand 0x505225db nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x674438e0 nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0x76a01e34 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8340cb2a nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8d871c15 nand_read_oob_syndrome +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ea85300 nand_write_oob_syndrome +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0xa5fb07da nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0xd7300b3d nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x08f2695f nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x65474e1b nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x97700454 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x84c4f3ec nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xbba1134e nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x8cfcf75c nand_flash_ids +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x86b63b29 flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xf81df4a3 onenand_addr +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0017ae2d arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1ad0c2d8 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6d655569 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x81687963 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9908f87b arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb5669540 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xeae9b4ba arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xec24d23b arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xee6303cc arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf7f1b6b2 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x333d5806 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xa5fd7d3b com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xbb4ee8ec com20020_found +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x130f17dc NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x79e080e8 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9618165f ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa7ce6e85 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xae857325 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb24e1dad ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbc4d7737 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc0a05053 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd3b8e495 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfbce8321 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x4ee512a1 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x285bde59 bgx_get_rx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6dc1648d bgx_get_lmac_mac +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 0xe48ca42a bgx_get_tx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf9508980 bgx_set_lmac_mac +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x03efe721 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x08c49641 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x19f13bfb cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2cf19115 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x40688eae t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x46412f4d cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4f46a745 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x830e608c cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8a7659d3 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaea1dce1 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbd6b653d cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xddf2e170 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xde09369b cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe0294f43 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf5b28bbe cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfa120346 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x11266c47 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x171a0bfd cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1b0cf36c cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x31fd8b3b cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x370b5ece cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4c87e4a4 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4d9aabae cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x561aeef5 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x58040a6e cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5ab04126 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5c729248 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6d248ae2 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x723ed6ca cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7c9403d2 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86b663bd cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8734f980 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8a004fa1 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x96b114e5 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9829eae0 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9bd65488 cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa458b1bd cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaf5367de cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb0687115 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb220a9b4 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb64fccb2 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbc8a5617 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbf3c1605 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc8c91852 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xca8b53e4 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd2754e98 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd8fb6d82 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdad32cc2 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xec748318 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef30c82c cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xefab4a4c cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf809dfba t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x06a7bbd4 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x37eb8710 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x482f39f8 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x9a608412 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x9dbf0979 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5a9dcb34 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7df45c52 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8a521ec7 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x95f52937 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9b4ae734 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc282008c enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x71db0a26 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xa70ee58e be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x2bfeab70 i40e_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0xc8e0097d i40e_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01b7954d mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x049821a0 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d71db60 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10b2a20f mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1396a188 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b29d93c mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29370771 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d82f430 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36fb9ebf mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41ce757c mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x448aea7d mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fdf20b8 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54e85144 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f897af2 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70da6852 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e693e70 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7efeb854 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f84b2d0 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85a3d3a1 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85c526f1 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93a050de mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d74fbd9 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ef9985c mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa70ef082 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb32049e4 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf837303 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc142ba38 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4cf4218 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2e7f392 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8f584da mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe37ea7f2 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec113df9 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecaa303c mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedc8ec12 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee363220 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf292ef93 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf40eca30 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8e40fdb mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb0e272f get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd341a50 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05d43257 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07e2eacb mlx5_core_destroy_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x138e3bf9 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1494719d mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1717bf51 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cd3241a mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ffe83e7 mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21bc2640 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33482740 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33b739eb mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x394a155d mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b9ac166 mlx5_add_flow_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43661fdf mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x439a5948 mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4df129b9 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x532573a0 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5564cdec mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56993886 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58cf1006 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5978c095 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60369db8 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x654c3cc8 mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6701cf5c mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67a97f2b mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bba2c73 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e438f54 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7565172d mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7638692b mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b86fba1 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7da41714 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ef30ab7 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f7dc0a3 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82224661 mlx5_core_destroy_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82a35bf4 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8617c770 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x897c096e mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a188c8d mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c5659a3 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c5bba6f mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x960fda5a mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x960fffb8 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d0aa11d mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0b30021 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5d5513b mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7e9413c mlx5_core_create_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb88b8788 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb891fb46 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbfef32c mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf755980 mlx5_del_flow_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1c25542 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd25ad3fa mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc25375d mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf84be72 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdff9c89c mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe55190dc mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4759a49 mlx5_core_create_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6f24285 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6f45187 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd1b2542 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff43750f mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffac0877 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x00ae1665 mlxsw_reg_trans_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x080a5291 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ab0c687 mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x189abfc9 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d07a992 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3247e4bb mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x39216435 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x39a96739 mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x51de3672 mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x56761f16 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5f1bfa0d mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x66444bc8 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x668baa94 mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x72a05371 mlxsw_core_resources_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa5ea0342 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5ff38e0 mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe7a9973b mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xec51e246 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xb8c8de1f qed_get_eth_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x09356aea hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x2d4fe08f hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x30a98836 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x6bfbba3e hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb1b5f842 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x12760266 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4d65fb2c sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x526527cc sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x8bb8c9c4 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x94f50726 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9970a52d irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa325ff90 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xeb0c2978 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf53be70f sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xfb3f4dac sirdev_get_instance +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xddc98749 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mii 0x10f51ea9 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x1519986e mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x151ae192 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x44c179ce mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x4d50961a mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x5d8e39f4 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x600f1d8b mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x956e1684 mii_link_ok +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x1b7206f3 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x9238bcdf alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x8f7ac0b8 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xb002b4c5 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency +EXPORT_SYMBOL drivers/net/ppp/pppox 0x259a5d55 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x4a2ffe4f register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe39d2305 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/sungem_phy 0x3d5956f6 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x31240f9d team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x767fc083 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xa4421feb team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xadd76b07 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xae93d7b2 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xb6bce52f team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xb915d0db team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xf135f694 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/usb/usbnet 0x44462a8e usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xd12f8466 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xf84cdb17 usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3161c321 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x417f5e1b unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5335f01d hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x83bf36e6 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa14dea28 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa67cbcb3 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa8b663c7 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbb06fabf hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbe1c2c70 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xeb063f7e hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf38033d0 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x7e772ff6 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x08114d10 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x18b14043 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2d2be3dc ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2f3bbb61 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x31368cd6 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3ff4a3fd ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x81eb7929 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb440de00 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcde24f07 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdb5d6b12 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf2499588 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf3286ab0 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xffc76941 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0ef5a16a ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x19f5bb57 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x254bf384 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3178498f ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x38eee2e8 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5edf8ed1 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x745d921c ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x75a3a3f4 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x76ee32ed ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7866c5ae ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x95362263 ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9a3bbb77 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa2d35cf4 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xafd6da40 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcc49169e ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf0ae649f ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x24be2d37 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x264249fc ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x390e9a7f ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3c1b060c ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6e75c235 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa5f6b798 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb6b990de ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbbe5cf00 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc778a64e ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf4e7b2f2 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf71f550d ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x13c5d026 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x17e0409c ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x18977a98 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1cf7bb27 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x260054d5 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x32518eb3 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3f809301 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x417f7e9a ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x625bdf92 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6a26a278 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7415a596 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8b37cda5 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x92aba75a ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x932b3d6c ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x94e69eac ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa13e3e95 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb02eefd6 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb3b5fe5e ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbb2b143f ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc4ed17d7 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd79924f2 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdd4bf496 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xee056132 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01ddaad4 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x020f225d ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02a36f0f ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05a862b8 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06b23276 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0785dd6e ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x089ea9af ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c0e4bf7 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0edd122d ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f40b87a ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x137638b9 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17d9365f ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d496a05 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26ab833b ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29ecda5f ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b68739e ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c116387 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2daef6d4 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x337d7ebb ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3498a6da ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ac48368 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b619809 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e0299e1 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42d1d7fd ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43577746 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43c3dfcc ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b5d1fd7 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d9c8ebd ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4fd27f82 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4fe124e2 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58ae1870 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5bbac4bc ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61ecc1b8 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62381446 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6453debd ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a6d1ee5 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b35c9aa ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6cbc2615 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d349771 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6eb645ac ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73a5e631 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x747cb3f3 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7567f35e ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75b2ddfd ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76905f11 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b687e39 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83d4e1c1 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83f46798 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x872352da ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8879a5c3 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b546bcd ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94a2c90e ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94cc9cac ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x953c2f9e ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97030293 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9807a0af ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x985289a7 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a117b71 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d883a18 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e1eee4b ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ed03195 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3ad2dd8 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6cd1672 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7f5dc4c ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf6e13db ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1afe3f9 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3290ff7 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8376e90 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd9b893f ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe9a4c1a ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0ec07e8 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc60311e7 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc678d8f7 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9a73c22 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9b9fdd8 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb608674 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcba8244a ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc0a1bb9 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc3341aa ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc638cbb ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2841965 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd45cf20d ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4ca9549 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5b7eef8 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8677678 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc6d9f5f ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde1847e6 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdea1f689 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdecc25c8 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe28c86f9 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe8569328 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb2e1287 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb2e4683 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb30faee ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebd3b6f1 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xedc160c2 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef576768 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf320c104 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3ede12d ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf542b7c2 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf576b259 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf76023e5 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf77cd84a ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd9d82c0 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe144270 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x82590f7b init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xb2faea02 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xfb54f95e stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x039754e2 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x04841ee3 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0db7cd86 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x306453d9 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x316f20d6 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6726dc88 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7a19841b brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8ab34b4a brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa19dc651 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbceaaf05 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc68dc034 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc70e1a43 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd1585b02 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xff4b734b brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x2e646c59 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xb8196baf reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xf18ac909 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x057c59bd free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0712f7ba libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0f0bc0ca libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x13556fa1 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x200da3bc libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x34606a27 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x39f2e6d4 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3a473ab3 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x46892ab6 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4eae3510 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x52a36378 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x60742d70 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x62956b21 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x85fc04ac libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8c080c65 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x931df5ed libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa3285ab3 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc11ab5ec libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc76b995a libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xca411773 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe21f7c78 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0498fdb3 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x06e7c2e4 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0998aea2 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0dd9f8c5 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0ef30f76 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f3f79d7 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x11421f07 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x180f5341 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1934e900 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x197e2966 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1c8dc777 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x21656e96 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2194edcb il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x256e0f63 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2de37c49 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x32d9424b il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x339d7817 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x38cd7579 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3a5cf078 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3d80ed99 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x40db827a il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x41df173c il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x467a739d il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4817db2f il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4c10caa3 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4cee996f il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x528536a6 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x54a553df il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x576ad4b2 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x57d79843 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x59f6b1cf il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5d583455 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x607c17f5 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x62ec3a5b il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x669fb50b il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x66a36e67 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x688dd2ca _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x690fb25f il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x69f2842f il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b81fa8e il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6df66145 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6e2b803e _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6eeeb6ec il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7008d10b il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x76455fd3 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x76e26bd8 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7ce9938e il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7d93d11d il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7f292155 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x826067de il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x84341ef5 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87145701 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x886f4da4 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b024d1b il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8c388378 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8f750ea8 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x93a9cc91 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9474dfd0 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x973ebd33 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9982f6df il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9bfe9404 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa0a8d627 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa4661d44 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa4c3e772 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa59596b4 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa7737149 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa90ccbbe il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaef66582 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaf145c22 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaf51ad0f il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb0bfef09 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbcdd7178 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0b5f7fd il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc6efe306 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd084601b il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd088e07c il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd307dc3a il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3fc7fc5 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7ccdcf5 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7ee9b4d il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd8ce2025 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdc7d686b il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdeb130f9 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe2f330a0 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe3b041ec il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe483de63 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe5246257 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe5488148 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec1d43e4 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf1f2933a il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf2e5ebb9 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf38dad84 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4faab81 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf761fc35 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf882caa8 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf954c97d il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf99fd314 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfc7e9f13 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x47bda8f9 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4e0c2b0e __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8b0e519b __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd031d4c3 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe4d855cc __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf050905c __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xffe01d38 __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x09781bcf hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1038f9a9 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x189fedf2 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x19817a16 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x24f1c696 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x26753d26 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x26ab1b0a hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x27850e13 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x29d6b123 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3257b901 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x37a5d0c6 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x37ef2a52 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x44ec3871 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x577074ac hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x579a88b8 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5e431123 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x952573d4 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa7e0869f hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xade541a2 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb5eda3ed hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcdb1e238 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd6d3cb4a hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf20da038 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf5f87e15 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf62d8137 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0171ac6a free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x13a3ee8f orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1cdb10eb orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2042d9d8 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x29059a32 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2e589342 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x48fcc5df __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5c7cae94 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5dea5bf1 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x787f598c orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8bbca257 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xbaeda20d orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd5b38f56 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdb405b91 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdcd02a4e alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe907978a orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe9fedbfb orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x913a8789 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x002aa95b rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x02a13c23 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x098e0a3b rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x19be9f81 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1f50ec7e rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1fe74709 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2174d835 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2233a469 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2462213c _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x31c79dc4 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x38830f43 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4157f73e _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4240e02e _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x465586ce rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x512331d2 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x518af379 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7090044e rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x734ddf16 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x83cd2c10 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x886a3f53 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x89b8e31e rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8c65b7a4 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9314f2a1 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xac93255c rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb248d002 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb34ea0bd rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb435a12a rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb73a2b2a _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb84c029d rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbb867c4a rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc97e5e14 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcadb815e rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcce2cb17 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcdf5d1db rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe9bb7d96 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeca0b20b _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xecd8421b rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xed414aeb _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf609af63 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf87d55fa rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfaafba7c _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x1da39d86 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x24f78d78 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xcc3b35ac rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xf45ea229 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x0c908032 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x983892cb rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa38bc5ca rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xdfec44af rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x03dbf491 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x057317c6 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x172794c0 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x27942038 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2ccd740d rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x330803d1 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e97f2cb rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x42559856 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4c326774 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5060fad5 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x59580d93 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5fb032f6 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x67542e6c rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6d7242ed rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x702ceb6b rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7bf060c3 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8241f4bc efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90c202dc channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x98e813ac rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9a2ade97 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9a3d8930 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xac6ecf43 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xad041b34 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xca537ac2 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xce8fc1ed rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd69135ff rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd9ecc3c3 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdc2ad555 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xde6dfa62 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe8270d23 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xff105d37 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xad7e2144 fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xb4eb3271 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xf22ecb6a fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x7e3a5bd1 microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xbc00705e microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x4c9759a3 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xca580691 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xd59104fd nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xa01cb8c4 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x23ef1b1a pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x89062c81 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x3d066546 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x7eaa7ed7 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xcdc1f7a9 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x09d5a20b ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x14c4280a ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x22b82fa3 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3516a1b1 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4071183d ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x77f75db4 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x79b980ef ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x89f091ad st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8bbc6b91 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf94f1a7d st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1a5ee12b st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2614f129 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x28c669f7 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3962a135 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3b1ece7c st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x464562cf st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4cf6499a st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6bb8241d st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8330ab86 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x92021fbb st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa4371ac2 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb0848240 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb65d792f st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe3cef295 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe4799b3b st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xef663863 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf5474327 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf62885dc st21nfca_se_init +EXPORT_SYMBOL drivers/ntb/ntb 0x1cf85864 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x24708256 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x6d188079 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x990ade48 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xd310d522 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xe400fb9d ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xe5617ef3 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xea9b1881 ntb_link_event +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x721e3069 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xf67defc6 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x89b720e1 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x1359be67 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x1cc6dfa4 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x1e1934a6 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x2059dd5a parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x38391ba9 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x482f30a0 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x5335be8f __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x58994ba9 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x5e3d0edd parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x718f0e03 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x7f8b16e2 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x91c94be7 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x9380c8ae parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x9792e959 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x9a10867b parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x9fbbaa7e parport_write +EXPORT_SYMBOL drivers/parport/parport 0xa1379d07 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xa31135ce parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xae358b78 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xb016b89f parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xb50cab7d parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0xb54a70bc parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xb65f6b84 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xc254fcd5 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xd2e2ec56 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xda70f7bb parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xee32a7f9 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xeef42092 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0xf07249e8 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xf4ff4fac parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xf574cc35 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xfb80c626 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport_pc 0x8b25e742 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xbabb0992 parport_pc_probe_port +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3665c07e rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x68b76c46 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x7fbb056e rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x8e65075e rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x92b788a2 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xad6b4e10 rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xbff51ad2 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd991f27f rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xe9a60b40 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xfa13250e rproc_boot +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x1a5fbbdb ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x32001497 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4e95e7c2 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x76f2339e scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe176eca4 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x51321ba7 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x530fe1ae fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7ba9bf74 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9068e167 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb66b34fd fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xcf587f5c fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd3c2f7d1 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe313f2a1 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe3156474 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe96bb2a6 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf5b4c3c9 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfa7f6ee7 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0ee4a33a fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x15702129 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x18f1b2a6 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x249d1f04 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27f1fc0a fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3bf30d93 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3f00659c fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4cfeb2b2 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4fa87143 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x517bb2d1 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x53c522f8 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5787720c fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x615a19fd fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x61d5c267 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x67dae856 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6dc83bdc _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x76e23eab fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ce48ac9 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7e395cdd fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fb3b2d5 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8669013f fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x87bcbbcf fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8b796959 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9116c1d0 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x953d3eec fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9e414f4e fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa219001b fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa4a564e0 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa6d75081 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaaecb28c fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xadec3f8d fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0132387 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb50fb3bc fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb6e95f47 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbe38c17b fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc583e5b6 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xce8d8438 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd22b0e66 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd7192b7d fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd83f2d90 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdaa7a394 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdc37c703 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdd6e3b30 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3f167a7 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe7f47b00 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0b4dae9 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf43f8e12 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf808c7b3 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf9d7be89 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb6a5418 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x780ed229 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x853151b9 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa44067c8 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xaed5a8b1 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x39741a73 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0b502e43 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1764da8e osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1b162e0a osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1efd4ae6 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2af3d91d osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2ee1f1f6 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x332052ba osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x36929326 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3e7ea952 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4ba498cc osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4df551eb osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x52987573 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x572d4e5a osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x574d22d8 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x60ebdf7e osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x62003e18 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7031c242 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x71f6d106 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x89709119 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9cb6c2f7 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa026c870 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa6a7c167 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xaedcaaf9 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb034340a osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb9afa9ce osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbf3d6814 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc0fde11a osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd06e02d9 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd08c3bd1 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xeda5ff67 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xeed08112 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xef1f26d8 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf47d9700 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf99d100c osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfe1201bf osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfe4f5bfa osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/osd 0x045b87f9 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0x0f8358da osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x29e8c3d8 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x375e55e2 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x37c42fd6 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x3fca753f osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x05df2411 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1c9611fc qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5c7a6b35 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5ec8456e qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6841bc1f qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7411b2b9 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9466b075 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xaa75edd3 qlt_put_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb15ee11f qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd26a6b4c qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd7dabed3 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfd1ec608 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/raid_class 0x0a228820 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x6f61c514 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xe52a5f62 raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x02d6ff78 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x30463d5b fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4a9c67de fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4c7d1a97 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x50645f98 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xafdf4cda fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb8812431 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb9a3657d fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc96a837a fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdcb0b59b fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xec167acb scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xed29dea8 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x05bb7b85 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0cf87360 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0e413d23 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x18562c70 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x192d3c57 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1b7e578a scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x26df22c8 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x30bc8ebf sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x43a67214 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x468dd3ce sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4c83f2eb sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4cc1c77f sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4debbf3f sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x60ef0d3f sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x68c86ac1 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6fe1d4bf sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x71e252e7 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7b477f15 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7d62ffa6 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x85846f0f sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8a6b15c2 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x94f96e35 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x98768d76 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb536e61d sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc7846586 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcb088165 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcf63bf8c sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe823724d scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xec0fd511 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7ef979ab spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x963f2e6c spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xaf9227ac spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xfb6f7539 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xfe6e7999 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x19ab5f1e tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x6d1101eb tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x060c9614 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x15e189a0 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x204a19be ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x7201eb2b ufshcd_read_string_desc +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x830f8c92 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x90d93718 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x93f1f284 ufshcd_read_device_desc +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xb173e7af ufshcd_query_descriptor_retry +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xc466985d ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xc7e7a5f4 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xf48a573c ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x74f43a53 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xc98e9464 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/ssb/ssb 0x003e58fb ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x03dc4af7 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x1204f1bb ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x21957f49 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x2ef09e0b ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x300f3c9f ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x380695e2 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x43835682 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x4edcc9d7 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x52100dfc ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x539a5f14 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x64cdf3da ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x6d8eb5f6 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x73e0ffcd ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x87edc3f2 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x907595e5 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xaf932bbe ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xbdebc856 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xcaa8e580 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xd9689449 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x122e9308 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1f64d732 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2381d341 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x25f13925 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x31c08d41 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x470c1ef5 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4f33331a fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4f7ccdc3 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x64deaa7c fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x96178cd8 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9ac1cbab fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa1c1f66b fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa4c87580 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa88c790f fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb210f4bb fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb2fbd3d6 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb69a15dc fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc2d451c1 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcee7a1b3 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe0eacb2c fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xed89bef4 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf24dc730 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf7eae579 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xffafc82a fbtft_remove_common +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xe3fcee78 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x2e46b3de ade7854_probe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x000c507f libcfs_debug_dumplog +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x01fef7b4 libcfs_register_ioctl +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x06443cdb cfs_wi_deschedule +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0b15026d cfs_hash_for_each_empty +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0cc98c73 cfs_cpt_weight +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0de6c369 cfs_cap_lower +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x0f5eff79 cfs_percpt_number +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x156bdc53 libcfs_kvzalloc_cpt +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x1bfac2ea cfs_cpt_set_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x1d90d7b2 cfs_cpt_set_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x1e8cdb47 cfs_race_waitq +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x21e8366c cfs_cpt_set_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x22924b94 cfs_hash_for_each +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x23e25c18 cfs_wi_exit +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2663147a __cfs_fail_timeout_set +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2810bd15 cfs_cpt_clear +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x286ce5ba cfs_hash_bd_add_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x2dbe54b2 cfs_trimwhite +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3009b1a2 cfs_hash_del +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x30e15cc9 cfs_hash_bd_peek_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x31fc5082 cfs_crypto_hash_update +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x334df8ea cfs_wi_sched_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x33a91f2c cfs_cpt_unset_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x33f4f293 cfs_cpt_unset_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3502185c cfs_cpt_bind +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x361e82d4 cfs_firststr +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3658dc0c cfs_hash_add +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x37175882 cfs_expr_list_print +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x377f93fb cfs_srand +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x388386d7 cfs_cpt_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3c1285bd libcfs_subsystem_debug +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3d5e6098 cfs_race_state +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x3ea730c0 cfs_gettok +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4062f92b libcfs_run_lbug_upcall +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x40b24fbc cfs_cpt_current +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x411db754 cfs_crypto_hash_final +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x437d67a5 cfs_percpt_unlock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x438e735b cfs_hash_for_each_safe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x44839bbb cfs_rand +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4a99af72 cfs_clear_sigpending +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x4d3b4eaf cfs_fail_err +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x52b9c7e9 lbug_with_loc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x53eb442d cfs_crypto_hash_update_page +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x55636c2e cfs_cpt_table_print +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x58a7ee00 libcfs_catastrophe +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5c013b81 cfs_expr_list_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x5d73c3e3 cfs_expr_list_free_list +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x62289d65 cfs_array_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x66ea4400 cfs_hash_is_empty +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x67398404 cfs_wi_sched_destroy +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x67ddedc9 cfs_hash_getref +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x6a738b2f cfs_cpt_nodemask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x6b5ed70b cfs_cpt_unset_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x6c4f4c31 cfs_percpt_lock_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x6e42f98b cfs_hash_debug_header +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x6e6b8b14 cfs_hash_hlist_for_each +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x71e3804b cfs_crypto_hash_digest +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x71f662a3 libcfs_debug +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x72e42e76 cfs_cpt_number +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x74aa92eb cfs_cpt_spread_node +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x7f7b182a cfs_hash_for_each_nolock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x7fda989d cfs_fail_loc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8151c3aa cfs_cap_raised +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x82e71509 cfs_cpt_set_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x865483a9 libcfs_kvzalloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x87e201ab cfs_hash_bd_del_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8840f591 cfs_block_allsigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x8b8f321d cfs_crypto_hash_speed +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x93896a8b cfs_crypto_hash_init +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x940ed192 libcfs_stack +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9879b229 cfs_get_random_bytes +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x98f0e065 libcfs_deregister_ioctl +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9a2b68bf cfs_hash_debug_str +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9c3aae35 cfs_hash_size_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9e420643 cfs_restore_sigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0x9f82f712 cfs_trace_copyout_string +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa2b68b2a cfs_array_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa9088531 cfs_expr_list_values +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xa9dc74e2 cfs_trace_copyin_string +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xad019238 cfs_str2num_check +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb0d3e5c8 cfs_percpt_lock_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb52fd765 cfs_cpt_online +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xb8354b83 lprocfs_call_handler +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xba8132b3 cfs_hash_for_each_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xbc1b15c2 cfs_cpt_unset_cpumask +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc0ea7fc0 cfs_expr_list_parse +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc2911d96 cfs_expr_list_match +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc72eb745 cfs_percpt_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc86ee1b1 cfs_hash_bd_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xc93905cf cfs_hash_cond_del +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xca68980a cfs_cpt_table +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xca7a4ee7 cfs_hash_add_unique +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xcf61bacb __cfs_fail_check_set +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd1fefbcc cfs_hash_lookup +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd688fe94 cfs_hash_findadd_unique +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd96f406d cfs_cap_raise +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xd99d9f64 cfs_hash_create +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xdf2789c0 cfs_curproc_cap_pack +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xdfecb98d cfs_block_sigs +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe2f91ce3 libcfs_debug_msg +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe3bf6897 cfs_percpt_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe4278c25 cfs_cpt_table_free +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xe4ca8fda cfs_percpt_lock +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xea411f63 cfs_block_sigsinv +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xec1331dc cfs_cpt_table_alloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xeceac781 cfs_fail_val +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf03bdf11 cfs_wi_schedule +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf3030ab7 cfs_cpt_of_cpu +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf3565b71 libcfs_debug_vmsg2 +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf47e16aa cfs_hash_del_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xf52e4f4e cfs_hash_rehash_key +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xfa756153 cfs_hash_bd_lookup_locked +EXPORT_SYMBOL drivers/staging/lustre/lnet/libcfs/libcfs 0xfdf00c70 cfs_hash_putref +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x124a6eb5 lnet_sock_getaddr +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1366b7ac LNetSetLazyPortal +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x15a3d4bc lnet_parse +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x19670622 LNetNIInit +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1a60d439 cfs_parse_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1ee5f15e lnet_ipif_query +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1f8e5bee lnet_sock_read +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x1fe16fd5 LNetGet +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x2aa9953d lnet_cpt_of_nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x2ac93e90 lnet_connect_console_error +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x33202a6c LNetGetId +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x3c779ee0 LNetPut +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x3f4f5b46 LNetNIFini +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x473ad33b LNetDist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x48f163c6 libcfs_str2anynid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x49993ea3 lnet_extract_iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x4d32c483 lnet_kiov_nob +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x4e5fe106 lnet_sock_setbuf +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x50345570 libcfs_str2net +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x54badec9 lnet_connect +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x58a1ca89 LNetMDUnlink +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x5a88fda7 lnet_sock_getbuf +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x5fee352c lnet_acceptor_timeout +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x61f784b2 LNetClearLazyPortal +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x64cdea3a LNetCtl +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x66d449b1 lnet_ipif_enumerate +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x6aeedd35 lnet_notify +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x6de18b12 lnet_finalize +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x722c76e5 LNetMDAttach +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7d59a7fe LNetMEInsert +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7e93080c libcfs_nid2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7e9fa282 lnet_net2ni +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x7ef21bee cfs_nidrange_find_min_max +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x833e6f33 lnet_set_reply_msg_len +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x83d795e4 cfs_match_nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x8e18dc7c LNetDebugPeer +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x92373d79 the_lnet +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x97f5966b libcfs_lnd2modname +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0x9de986d3 LNetEQAlloc +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xa49bca32 lnet_unregister_lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xa4eb551e lnet_sock_write +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xa56de08d lnet_ipif_free_enumeration +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xa96dc15f lnet_copy_kiov2iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaa414970 LNetMEUnlink +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaa9b477e LNetMDBind +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xad10b02e lnet_copy_kiov2kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xade657cc libcfs_next_nidstring +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xaed3e209 libcfs_net2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb0a85cb8 libcfs_lnd2str_r +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb20da2b1 lnet_copy_iov2iov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xb75f7953 LNetEQFree +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xba5566d2 lnet_acceptor_port +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xbf0760a2 LNetMEAttach +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xc27df149 lnet_register_lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xccc45639 cfs_free_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xcf4eb544 cfs_print_nidlist +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xd4a6b9e1 lnet_create_reply_msg +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xd8afcae9 lnet_extract_kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xd9cc416f lnet_copy_iov2kiov +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xeaeb6565 cfs_nidrange_is_contiguous +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xec1f56d5 libcfs_str2nid +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf1b316bf LNetSnprintHandle +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf5dc6337 lnet_iov_nob +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf8a8644b libcfs_id2str +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xf94025d1 libcfs_str2lnd +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfa106804 lnet_counters_get +EXPORT_SYMBOL drivers/staging/lustre/lnet/lnet/lnet 0xfe7ca17c libcfs_isknown_lnd +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x142523b8 client_fid_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x1c4bb5f9 LU_OBF_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x31743409 client_fid_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x375e6f8d LUSTRE_BFL_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x3d50710e seq_client_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0x405ca856 seq_client_alloc_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xae61cff5 LU_DOT_LUSTRE_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xc997a02f LUSTRE_SEQ_SPACE_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/fid/fid 0xecee2727 LUSTRE_SEQ_ZERO_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x0fb51766 fld_client_debugfs_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x3bea7e86 fld_client_lookup +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x5868a29b fld_client_add_target +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x5eb4dfa1 fld_client_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0x7dbfe748 fld_client_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xa8032a03 fld_client_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/fld/fld 0xaeae6f85 fld_client_del_target +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0x477bd606 ll_direct_rw_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0x5d111ebd ll_stats_ops_tally +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0xcd3cde92 ll_iocontrol_unregister +EXPORT_SYMBOL drivers/staging/lustre/lustre/llite/lustre 0xfc610f3e ll_iocontrol_register +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0x86131026 lov_read_and_clear_async_rc +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0xc421ae1f lov_lsm_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0xc6570951 lov_device_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/lov/lov 0xe0e7a196 lov_lsm_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/mdc/mdc 0x0dae5136 it_open_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/mgc/mgc 0xdc287f95 mgc_fsname2resid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x007d7f98 class_exp2cliimp +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x00e41911 lprocfs_rd_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x00ef1465 cl_offset +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x01a54871 cl_page_list_del +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x01d6fcf7 lprocfs_rd_timeouts +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x02dbbebb cl_req_attr_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x033e38be cl_object_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x03436924 cl_2queue_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x035852d0 lustre_swab_llog_rec +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x03b37a9c lu_kmem_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x03d12f7c cl_env_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x046e65ae lustre_process_log +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x04a468d9 lu_site_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0529fa91 lustre_register_client_fill_super +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x05e5fa5b lu_context_key_degister_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x06ebc493 llog_cat_close +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x07aa68bb lustre_swab_lustre_cfg +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x07d45876 obdo_set_parent_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x083942ff class_del_profile +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0c3707f6 obd_devs +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0c378d79 lustre_swab_llog_hdr +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0daf9196 cl_io_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0df31fab class_process_proc_param +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x0e51640c cl_site_stats_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x100a1235 cl_sync_io_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x109d903b cl_page_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x10c1f52b cl_req_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x10e2556d cl_io_rw_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x11495519 lprocfs_write_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1197e644 lu_site_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x13283b4c cl_page_own_try +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x16821cee cl_req_prep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x17935bf7 lustre_common_put_super +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1860c1ac libcfs_kkuc_msg_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x18cc50b4 lu_context_key_revive_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x19c3ddac cl_page_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1b70e1b0 cl_object_find +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1c6e8866 lu_site_init_finish +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1da847e8 cl_object_glimpse +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1e325ea2 cl_cache_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1e7638a5 cl_object_attr_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1e865c07 class_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x1f07b103 cl_page_flush +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x209605a4 lprocfs_rd_conn_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x20bbd746 lu_object_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x221826f1 class_parse_nid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x239d8002 llog_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x24e1671d lprocfs_counter_sub +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x25041b07 lu_env_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2547efae lustre_uuid_to_peer +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x26494ece cl_page_list_move_head +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x275cdc7a cl_env_reexit +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2836cf1a class_destroy_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x286860f5 class_handle_free_cb +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x297cf5e0 class_handle2object +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2d1223db cl_page_make_ready +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2dd2292e lu_context_key_register +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2fdf47fb cl_io_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x2ff40e14 cl_io_sub_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3242ed35 obdo_cachep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x325abba9 cl_2queue_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x34276508 cl_page_own +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3450c289 libcfs_kkuc_group_rem +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3544c349 cl_env_percpu_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x36b56dba cl_cache_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3726f79e cl_lvb2attr +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x37ed6e4b at_early_margin +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x389cdf51 class_connect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x39318948 cl_lock_descr_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3bcbdc4b lprocfs_stats_alloc_one +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3da2aa39 lprocfs_alloc_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3e86ba34 lu_object_add_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3efcf4e2 cl_page_prep +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x3ffeda39 lu_context_key_register_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4055bc0b lprocfs_single_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4224970c class_unlink_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x423d28f5 class_config_parse_llog +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x42770e3d lu_context_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x46206631 llog_open +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x466b640c lu_device_type_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x47169380 lu_device_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x47b35f7d statfs_unpack +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x49ef45b9 llog_cat_process +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4a09fbbd cl_io_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4a176b23 class_manual_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4a41ccc9 libcfs_kkuc_group_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4ac58713 obd_connect_flags2str +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4b2841d7 cl_env_unplant +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4c190aad lprocfs_find_named_value +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4d5ecb2c lu_object_find_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4d8d6dfa lprocfs_counter_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4e080575 cl_page_list_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4e701e43 cl_lock_at +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4ebde796 cl_page_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4ec388b3 cl_io_commit_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4ec5e9e2 lu_object_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x4fd09803 cl_page_is_owned +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x50c7fc36 ptlrpc_put_connection_superhack +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x51bc1eba cl_io_submit_sync +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x527280c5 llog_process +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x52fb79fa class_new_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x53648804 cl_io_submit_rw +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x538a1906 lprocfs_exp_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x552c0ad9 cl_env_cache_purge +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x558bec27 obd_ioctl_getdata +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x570d09ae lustre_swab_lu_fid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x591d6a74 llog_close +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5a194ec0 llog_thread_key +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5b431c3c cl_page_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5b500ddd lu_env_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5cccecda cl_io_is_going +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5e93341f lprocfs_oh_sum +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x5fe97b73 block_debug_check +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x60f0e78c class_num2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x61e98df7 libcfs_kkuc_group_foreach +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x62345243 class_export_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x624ffe24 lprocfs_counter_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x63664e8d lustre_register_kill_super_cb +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x63ad25db cl_page_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x63da47fc lu_context_key_quiesce_many +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x648a7f66 lprocfs_free_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x652e0a2a cl_page_is_under_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6734adbd lprocfs_read_frac_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x67fab6f4 lu_context_key_quiesce +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6890d175 lustre_get_jobid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x694f1aed lu_context_enter +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x69c42114 at_min +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x69eb631e class_find_client_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6a90e402 cl_page_clip +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6b6c847b lu_context_key_degister +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6c1bdd6e class_fail_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x6cc85f46 cl_page_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x70cd94a5 cl_page_list_splice +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7106fabe md_from_obdo +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7157dca0 cl_page_list_move +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x738c018e cl_io_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x73c38c48 cl_lock_enqueue +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x742559b1 class_unregister_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x74be5356 class_incref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x752168d8 obd_unstable_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x752f71a8 class_get_profile +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x756a77f3 class_parse_nid_quiet +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x75c46b38 lu_object_locate +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x75f568e2 lu_object_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x77d2089a class_name2dev +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7802fcd7 lustre_swab_llogd_conn_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x783aac44 lu_context_key_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x784e8f6b class_name2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x789796a1 obd_zombie_barrier +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x78b464ee lu_device_type_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7b4fc57b at_max +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7d1ca1f1 cl_site_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7d7484ff lprocfs_seq_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7e0aae63 class_disconnect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7edcafa0 cl_env_reenter +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7fe5561a obd_dirty_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x7fee154b cl_io_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8052f31b cl_object_header_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x806cc497 class_add_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x80fc0ab6 lu_object_header_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x81742d89 obd_ioctl_popdata +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x831f656c class_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x835d2a04 cl_req_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8435a2f7 cl_io_iter_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8446b9a8 obdo_to_ioobj +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x84e727e4 lu_site_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x85b6f8aa cl_page_header_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x87fd4b30 class_new_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x88b87068 lprocfs_stats_collect +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x891054f1 lprocfs_clear_stats +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8b2096df cl_page_list_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8ba6e479 lustre_swab_lu_seq_range +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8be9037e lprocfs_rd_connect_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8c607647 cl_sync_io_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8e03c9d4 class_export_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8eb1a3c1 cl_page_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8eea8958 cl_page_find +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8f67314c obd_dump_on_eviction +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8fe25f93 lprocfs_at_hist_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x8fe7c8ad cl_object_attr_unlock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x904c0afe lprocfs_rd_server_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x905338c9 cl_lock_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x91a1d9a4 class_handle_hash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x92e58479 obd_dump_on_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x93859814 lprocfs_oh_tally +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x95735c6c at_extra +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9755f57f cl_io_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9767adce class_uuid2dev +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x97d03783 at_history +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x98350767 class_import_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x988cfb95 cl_page_list_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9b1ed9d8 obd_jobid_var +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9b2755bf cl_vmpage_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9b9d0c98 lu_stack_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0x9e56b7ea class_devices_in_group +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa0894c9c cl_lock_release +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa1468140 cl_cache_incref +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa160da4a lu_object_header_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa4ce50be cl_io_lock_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa54b2f4b cl_page_is_vmlocked +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa5fb234f lprocfs_write_frac_u64_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa5ff654e lu_context_key_revive +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa6e76b07 cl_env_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa786b6b6 class_import_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa7e16614 lu_kmem_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa81dcbe1 cl_object_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa82a3dd1 class_handle_unhash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa8b44ca8 lu_context_exit +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xa96252bc lu_object_header_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xaa4d3646 lu_object_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xaa8f92d6 cl_lock_slice_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xaab3a133 lu_object_unhash +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xab4bd712 lu_env_refill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xacea2578 class_config_llog_handler +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xad74c17d cl_lock_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xadd752c8 obdo_from_inode +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb01963a6 class_uuid_unparse +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb1d0c17d cl_io_read_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb2036a60 lu_device_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb2ff3e89 cl_io_iter_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb35519ed lustre_swab_cfg_marker +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb4efd470 cl_object_prune +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb4f8ee63 lprocfs_read_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb58db11a cl_req_completion +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb60a26a2 cl_conf_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb8417963 class_exp2obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb86d6ac7 lu_object_find_slice +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb8b247e0 cl_2queue_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xb8d9ddf6 cl_io_unlock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xba985283 lustre_register_client_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbacac922 lprocfs_write_frac_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbc1da2ae lu_object_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xbd5410b5 cl_lock_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc0954007 lprocfs_oh_clear +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc0bf7ef2 obd_debug_peer_on_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc0cdaf30 cl_io_loop +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc0ff77ef lprocfs_rd_uint +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc103352c cl_sync_io_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc2474ecd cl_env_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc397fa94 obdo_refresh_inode +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc3f27306 cl_req_page_done +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc634c734 cl_io_lock_alloc_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc6c147ba cl_page_list_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc6dcd7db lprocfs_wr_uint +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xc950628a cl_lock_mode_name +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcaa3a472 cl_page_delete +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcb0ab67f obd_max_dirty_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcc02cd58 cl_sync_io_note +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcc3f47cf class_put_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcc82046f cl_env_nested_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcd29c361 cl_lock_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcd42572b cl_page_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xcef8067c llog_process_or_fork +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd1abe07d cl_2queue_discard +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd316384f class_conn2export +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd70fe669 lustre_swab_llogd_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd715899c lu_context_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd732bcb7 cl_object_attr_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd75cf724 cl_env_percpu_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd7bc8654 obd_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd8ebd157 cl_object_attr_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd979442b cl_page_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd9bcd71a lustre_end_log +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xd9e0bcdb cl_lock_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xda5b1ced class_find_param +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xda872731 lu_device_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xda8e1ed6 cl_page_assume +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xdcc40af0 class_check_uuid +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xde7d985b obd_dirty_transit_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe1da5bb1 cl_req_page_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe20d93a1 llog_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe27caab2 cl_stack_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe34c281a libcfs_kkuc_group_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe52f5a7c __llog_ctxt_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xe5d8d5ea cl_page_disown +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xeacec47c lprocfs_oh_tally_log2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xebae5122 class_register_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xec7d6b85 obd_timeout_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xec96c83a cl_io_start +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xecda2140 lu_site_stats_print +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xed31d24f cl_2queue_init_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xed7a995b lu_device_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xedd1ce19 cl_object_kill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xef76f858 block_debug_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf13afe5c cl_index +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf261be94 llog_init_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf2da1ed5 cl_env_implant +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf2e0b532 cl_object_top +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf490d5f9 class_del_profiles +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf594485e lu_site_purge +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf6ab7378 lprocfs_rd_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf6daa6a3 lu_cdebug_printer +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf8142716 cl_env_nested_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xf8807a80 lu_context_refill +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfafec76b cl_page_discard +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfbe6f70c cl_page_unassume +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfbea0098 lu_types_stop +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfd57b164 cl_page_completion +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfd68d17a class_notify_sptlrpc_conf +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfdbe1557 lprocfs_write_u64_helper +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfeb8053a cl_site_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xffd5e3e6 cl_type_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/obdclass/obdclass 0xfffc1f11 lustre_swab_ost_id +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0060e995 ptlrpc_set_add_new_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00a173c6 ldlm_completion_ast_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00cb99c1 RQF_LDLM_INTENT_GETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00d8c5d3 ldlm_resource_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x00d95039 ptlrpcd_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x031f1222 ptlrpc_pinger_del_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0382c88f lprocfs_wr_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x03d2d9c7 ptlrpc_set_destroy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x048b59d5 lustre_msg_set_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0515f93b RQF_FLD_QUERY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x05c113bf ldlm_lock_match +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x06b3942b lustre_swab_lov_user_md_objects +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x071fc74a RQF_LDLM_ENQUEUE_LVB +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0784dc38 sptlrpc_cli_ctx_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x08bb2d27 lustre_swab_obd_ioobj +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x095587d0 lustre_msg_buflen +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0a3130b0 RMF_MDT_EPOCH +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0a4c918d ldlm_resource_dump +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0ac252b2 lustre_msg_set_jobid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0ac54708 lustre_errno_hton +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0b07167c sec2target_str +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0bcacb5d RMF_MDS_HSM_USER_ITEM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0c965afe ldlm_pool_add +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0cf343dd RQF_LDLM_INTENT_BASIC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0d1a053a sptlrpc_conf_client_adapt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0d4a816d ptlrpc_buf_set_swabbed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x0df739e9 ptlrpc_pinger_sending_on_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x10a1a86d ldlm_error2errno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x113443b9 ptlrpc_check_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x115017f6 req_layout_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x12b6f5a3 ptlrpc_connection_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x13444afa ptlrpc_request_free +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1418badb ptlrpc_resend_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x14708afc lustre_swab_mdt_rec_reint +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x14d192db lustre_msg_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x152f066f sptlrpc_flavor_has_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1556b80d ldlm_lock2desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x15a3e4db RMF_GETINFO_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x170d638b ldlm_extent_shift_kms +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x172fb86d lustre_msg_hdr_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1747d8b3 ldlm_lockname +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x17950f60 RQF_SEC_CTX +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x17a9be50 client_obd_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x181ce3fe ldlm_lock_set_data +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19108a0f RQF_OST_DISCONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1962dceb client_disconnect_export +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x19c08934 RQF_LDLM_INTENT_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1a6a3ce9 RQF_OST_GET_INFO_LAST_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1a99599c ldlm_cli_cancel_list +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1a9b76aa RMF_OBD_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1abd3258 RMF_SETINFO_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ace4b5f RQF_LDLM_BL_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ad6c330 RMF_EAVALS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1af02cce ptlrpc_wake_delayed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1be21715 lustre_msg_size_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1c300d8e lustre_msg_get_slv +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1d6a41bd ptlrpc_send_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1d7675c9 req_capsule_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1dc2051d RMF_SEQ_OPC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1de9c288 lustre_swab_layout_intent +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1eb2a65f RQF_OST_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ee46b51 lustre_init_msg_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x1ee9eb3c RQF_MDS_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x202e9ab3 sptlrpc_enc_pool_put_pages +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x208fb891 ptlrpcd_alloc_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2096f5b5 RQF_OST_SET_GRANT_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x219391ec RMF_EAVALS_LENS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x21ac4379 ptlrpc_request_committed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x229b7b2e ptl_send_rpc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x22ced4f6 req_capsule_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x233790b5 RMF_OST_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x23503126 ptlrpc_buf_need_swab +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x24aafdba RMF_MGS_TARGET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x24e9f530 ldlm_prep_elc_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x25683168 ldlm_cli_update_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2585a629 RMF_SEQ_RANGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2587513c RQF_LDLM_CP_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x26893c93 _ldlm_lock_debug +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x269554ce RQF_LDLM_INTENT_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x26cf8ea9 ldlm_namespace_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x26f252e7 __ptlrpc_free_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x26f99d16 RQF_MGS_CONFIG_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x285e5b99 lustre_msg_set_conn_cnt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x29e0869a sptlrpc_get_hash_name +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2a63a472 lustre_swab_ptlrpc_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2b60b065 ptlrpc_invalidate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2c00c60d ptlrpc_sample_next_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2cec385f ldlm_lock_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d14f314 ptlrpc_request_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d56f168 ptlrpc_pinger_ir_up +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2d798316 RMF_MGS_CONFIG_RES +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e048ea8 ptlrpc_at_set_req_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e41e1bb req_capsule_server_sized_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e4562fe RQF_LLOG_ORIGIN_HANDLE_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2e4ca396 RQF_LDLM_INTENT_UNLINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2f0e4f87 RQF_OST_QUOTACTL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2f793215 lustre_swab_ost_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2fab3539 lustre_swab_ost_lvb_v1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x2fd2f737 lustre_msg_set_limit +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x301d4fcd RQF_MDS_READPAGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x302937e0 RQF_MDS_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x318d095b sptlrpc_import_flush_my_ctx +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3261b862 RQF_OST_SYNC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x341b48ab lock_res_and_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x35939a3d lustre_swab_fiemap +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x36f4ac8e ptlrpc_retain_replayable_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x38187428 ptlrpc_set_add_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3835ab4b RQF_LLOG_ORIGIN_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3858fb94 RMF_OBD_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x38c01799 RQF_LDLM_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x38fce533 lustre_msg_set_versions +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x39f60a5f RMF_OST_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3a1e4bcb __lustre_unpack_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ab90f6e lustre_msg_bufcount +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ac00716 lustre_swab_hsm_user_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3b6b7cba dump_ioo +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3bd09e25 sptlrpc_import_flush_all_ctx +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3bedb0c7 RMF_LLOGD_CONN_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c63e62b RQF_MDS_REINT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3c8b16ab lustre_swab_ost_lvb +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ca50f33 RQF_MDS_HSM_CT_REGISTER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3d7dc5f9 ldlm_pools_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3dc47695 lustre_msg_get_magic +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3e304426 req_capsule_client_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3e4a15f8 ptlrpc_init_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3ef66ae6 ptlrpc_queue_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f034caf lustre_msg_get_status +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f35a11d RQF_FLD_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x3f752e78 RQF_MDS_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x402442ae ldlm_replay_locks +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x41008cef RQF_LDLM_CANCEL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43168488 RQF_MDS_RELEASE_CLOSE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43365c57 lustre_pack_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4351e916 lustre_swab_hsm_user_item +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43705ee4 RQF_LOG_CANCEL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x43d7efc8 lustre_msg_set_transno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x44036eda RQF_MDS_GET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x440c2a71 RMF_FIEMAP_VAL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4481591d RQF_OST_SET_INFO_LAST_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x452d81f0 ptlrpc_activate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45d05893 lustre_swab_lustre_capa +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x45e30cea lustre_swab_ldlm_intent +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x46599549 lprocfs_rd_pinger_recov +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4767e695 sptlrpc_cli_enlarge_reqbuf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x47f5e903 RMF_MDS_HSM_REQUEST +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x48cef7f1 ldlm_pool_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4938e4b7 ldlm_flock_completion_ast +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4a5a2416 RMF_DLM_REQ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4ba594cd ptlrpc_unregister_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e1706e5 lustre_msg_buf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e37e7b6 sptlrpc_unregister_policy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4e696b96 ptlrpcd_queue_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4eb03a6f ptlrpcd_destroy_work +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4ede4270 req_capsule_server_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x4f766c3b lustre_swab_generic_32s +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x50443f6a ptlrpc_init_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x50dd74f8 RMF_STRING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x514b3851 lustre_swab_ldlm_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x51e311e9 lustre_swab_ldlm_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x51fcf62c lustre_pack_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x527e00c8 ptlrpc_prep_bulk_imp +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x52c62150 RMF_RCS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x53411557 RMF_DLM_REP +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x53a4a004 bulk_sec_desc_unpack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x555eb7fe RQF_MDS_HSM_STATE_SET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x56f448d1 ptlrpc_unpack_req_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x595ab175 lustre_swab_obd_quotactl +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x596582bf RMF_GETINFO_VALLEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x59a2dcd8 ptlrpc_abort_inflight +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x59b48d02 ldlm_lock_change_resource +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5a59f56e ptlrpc_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5b6ba895 lustre_packed_msg_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5c5c52ca target_send_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5c6a3a83 RQF_SEQ_QUERY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ca1b491 lustre_swab_close_data +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5caae213 ptlrpc_next_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e0b19b1 RMF_CLUUID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e2b7558 lustre_msghdr_get_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e6f435d RQF_OST_BRW_READ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e75181f client_import_add_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5e80f899 RQF_LLOG_ORIGIN_HANDLE_READ_HEADER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ec3284d RQF_MDS_HSM_CT_UNREGISTER +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5ef831ee lustre_msg_get_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5f96ccdd ptlrpc_connection_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5f9981ec ptlrpc_start_threads +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x5fc9a455 RMF_CLOSE_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6042bc15 RQF_MDS_REINT_RENAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x604e2505 RMF_SWAP_LAYOUTS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x60cd26ad RQF_MDS_REINT_CREATE_SYM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x60d5df6d ldlm_prep_enqueue_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6141cf62 ptlrpc_unregister_service +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x61646e1b RQF_MDS_SWAP_LAYOUTS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6186e2ad ptlrpc_fail_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x618ad203 RQF_OST_GET_INFO_LAST_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x62503dbb lustre_free_reply_state +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x62aaae3f RQF_MDS_HSM_REQUEST +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6315dd4c RMF_LLOGD_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6352a62d ldlm_get_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x653723dc RMF_LOGCOOKIES +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x662a2a52 llog_client_ops +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x67fd4e25 req_capsule_server_sized_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x683243bf ptlrpc_set_next_timeout +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x685eeaba RMF_DLM_GL_DESC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x68f49e5e ptlrpc_expired_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6912990a RQF_OST_QUOTACHECK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6915f79a sptlrpc_get_bulk_checksum +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x694c578c ldlm_lock_fail_match_locked +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x696ba811 lustre_msg_get_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x69c9f04d RQF_MDS_REINT_LINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6a08dc3d sptlrpc_register_policy +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6a3785c9 RMF_EADATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6acc7313 ldlm_namespace_cleanup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6d72828c sptlrpc_conf_log_update_end +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6efa82b0 RQF_MGS_TARGET_REG +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6fb92092 sptlrpc_flavor2name_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x6fdd0890 client_connect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x703538e4 lustre_swab_hsm_current_action +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x71772aa1 llog_initiator_connect +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x725a892c RQF_MDS_REINT_OPEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x72f3b9bd ldlm_namespace_dump +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x74840056 lustre_msg_set_status +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x75a2c40d ldlm_put_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x75e4ca61 RQF_OST_GET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x778488a8 client_import_find_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7a832f10 RMF_CONN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7b1741ce ldlm_cli_enqueue +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7bbf8001 RMF_MDT_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7c2caefd ptlrpc_unregister_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7c4c6107 RQF_LDLM_CONVERT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7c84f633 ptlrpc_reconnect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7d0db26b ldlm_cancel_resource_local +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7d1ecd7f RQF_LDLM_INTENT_LAYOUT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7dfb3c18 lustre_msg_clear_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x7f5a1cc7 lustre_msg_set_type +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x80ecb4e3 RMF_MDS_HSM_CURRENT_ACTION +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x817d7f1f lustre_msg_add_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x818388ca ldlm_lock_decref_and_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8215dab5 client_destroy_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x826d3c4f RQF_LDLM_GL_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x837efb00 RMF_NAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x842c3373 ptlrpc_free_rq_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x84b07017 req_capsule_shrink +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85135801 RMF_DLM_LVB +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85a9e0d8 RMF_FID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85bf7b06 ldlm_pool_del +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x85eecf67 sptlrpc_get_hash_alg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x863db6eb RMF_HSM_USER_STATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x876c2551 RMF_GETINFO_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x87bf7b3c sptlrpc_get_next_secid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8808c531 __ldlm_handle2lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8872f3d2 RMF_SETINFO_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x88fff52d RMF_CAPA2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x89f9edf7 RQF_MDS_REINT_SETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8a1ea476 lustre_swab_hsm_state_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8a257736 RQF_MDS_HSM_STATE_GET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8ac440fa ptlrpc_uuid_to_connection +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8b854254 lustre_swab_mgs_config_res +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8cb71d4b RQF_MDS_REINT_CREATE_SLAVE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8cd352c7 ldlm_resource_unlink_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d1ab900 ldlm_lock_dump_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8d77ea75 lustre_msg_set_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8da3fca7 lustre_msg_add_version +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8db8a482 sptlrpc_cli_unwrap_bulk_write +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8dc2aa64 req_capsule_server_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8dd126d9 ptlrpc_unpack_rep_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8e9abe4d RMF_GENERIC_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8e9ce55e ptlrpc_request_alloc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8f0aceac RQF_MDS_HSM_ACTION +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x8fec0451 lustre_msg_get_limit +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x90d93e54 sptlrpc_target_export_check +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9113f109 ldlm_cli_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9173204f sptlrpc_cli_wrap_bulk +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x919c4ce3 RMF_OBD_ID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x91cf58d3 RQF_MDS_PIN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9228392f lustre_swab_mdt_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x922fc074 ldlm_resource_iterate +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9277ae5e RQF_MDS_REINT_CREATE_ACL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x937b1ee0 lustre_swab_mdt_ioepoch +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x949e1e10 ptlrpc_lprocfs_register_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9553c633 RQF_LDLM_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9564a202 ldlm_lock_addref_try +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x95a1e681 lustre_pack_reply_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x95d08f0c lustre_swab_mgs_target_info +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9601ec27 ldlm_lock2handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9660ace0 RMF_FLD_MDFLD +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9671984a sptlrpc_gc_add_sec +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x96798421 lustre_pack_reply_v2 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x967bfd52 RQF_OBD_PING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9798f2f1 RQF_MDS_GETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x980fcfdc ptlrpc_connection_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9999cf7a dump_ost_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x99bf496d ptlrpc_request_bufs_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9a258886 RQF_MDS_GETSTATUS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9a4e265b sptlrpc_target_sec_part +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9a6f2f6d lustre_msg_set_opc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9b7dcb09 ptlrpc_disconnect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9b88f6ce RMF_NIOBUF_REMOTE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9bb5198b RQF_MDS_CLOSE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9c343318 ptlrpc_deactivate_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9d07557c ptlrpc_recover_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9d7ea314 sptlrpc_pack_user_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9d991b24 ptlrpc_set_import_active +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9fb088f1 lustre_swab_lov_mds_md +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0x9fcb3db2 ptlrpc_obd_ping +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa0b86463 req_capsule_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa163f4c3 dump_rniobuf +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa17ab53f sptlrpc_gc_del_sec +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa2244636 RQF_MDS_GETATTR_NAME +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa3d2a6ee RMF_CAPA1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa47787ef RMF_PTLRPC_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa4a2d089 RQF_OST_PUNCH +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa50ca341 _debug_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa58b03cf ldlm_lock_allow_match +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa617d6e6 ldlm_resource_putref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa6a53a38 ptlrpc_send_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa6c436ca RQF_MDS_WRITEPAGE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa6ef9f3e ldlm_completion_ast +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7a03774 ldlm_cli_cancel_list_local +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7d9b9fa ldlm_namespace_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7e360b1 RMF_OBD_IOOBJ +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa7ec567d RMF_CONNECT_DATA +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa8c15b60 sptlrpc_import_sec_ref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9704f80 lustre_msg_get_last_committed +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9c4658e lustre_swab_lov_user_md_v3 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xa9e40b00 ldlm_lock_decref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xacd6a7d7 lustre_swab_ost_last_id +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xae9de7f4 ptlrpc_add_timeout_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf4e9658 RQF_MDS_SYNC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xaf50a0d6 RMF_HSM_STATE_SET +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xafae17e9 ldlm_namespace_new +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xafcbb9fe ldlm_cli_cancel_unused_resource +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb026603c req_capsule_filled_sizes +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb0751fa4 RQF_LLOG_ORIGIN_HANDLE_DESTROY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb161cc2b sptlrpc_lprocfs_cliobd_attach +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb1b43d8a dump_rcs +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb2146349 ldlm_cli_enqueue_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb291473d lustre_msg_early_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb2e4bdd1 sptlrpc_cli_unwrap_bulk_read +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb4a7ecf3 lustre_msg_add_op_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb512ebc2 sptlrpc_parse_flavor +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb61cb95a RQF_MDS_GETXATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb68476df interval_erase +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb6aafd03 RQF_MDS_DONE_WRITING +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb7b38189 RMF_MDT_MD +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb7fa3cc8 RMF_LLOG_LOG_HDR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb8a618ec ptlrpcd_wake +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb8b1dbf3 req_capsule_extend +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb903634e RQF_OST_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xb9b631cf lustre_swab_mgs_config_body +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xba98bebc ldlm_lock_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbaa76097 lustre_msg_string +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbc1370dc lustre_shrink_msg +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbd83bc44 RQF_OBD_SET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbef769cc RQF_CONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbf98b86f RQF_MDS_QUOTACHECK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xbffd4313 RQF_OST_BRW_WRITE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc06c4670 lustre_msg_get_versions +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc0867da7 RMF_REC_REINT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc0cdf55e RMF_MGS_SEND_PARAM +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc2b1af57 RQF_MGS_SET_INFO +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc2be922a RMF_SYMTGT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc4f99e5a ldlm_lock_cancel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc522b47b ptlrpc_schedule_difficult_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc559a634 RMF_LAYOUT_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc60a60e1 RQF_OST_STATFS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc694be4b RQF_LLOG_ORIGIN_HANDLE_PREV_BLOCK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc6b50198 unlock_res_and_lock +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc763fabc sptlrpc_process_config +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc79b9c67 ldlm_pools_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc7ca8257 RQF_MDS_REINT_SETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc7e47564 ptlrpc_interrupted_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc814121a ptlrpc_request_alloc_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc8f586a9 ptlrpc_connection_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xc96547d6 ldlm_revalidate_lock_handle +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xca33f254 ptlrpc_connect_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xca5a81ec ptlrpc_pinger_ir_down +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcb16107d ptlrpc_set_wait +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcb2cc0cf lustre_swab_lquota_lvb +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xccc238c9 req_capsule_has_field +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcd0f71bc req_capsule_client_sized_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcd7a5153 ptlrpc_req_xid +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcddc8d1e ldlm_cli_cancel_unused +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xce86066d lustre_msg_set_slv +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcec513c9 RQF_MDS_UNPIN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcf9963db lustre_msg_get_op_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xcf9aab6a RQF_MDS_DISCONNECT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2983334 lustre_swab_swap_layouts +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd2e0d4eb lustre_msg_get_opc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd31a46f1 req_capsule_server_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd3dae408 ldlm_it2str +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd636e004 ptlrpc_request_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd69e0a27 RQF_MDS_IS_SUBDIR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd6c3ebfb RMF_FIEMAP_KEY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd7769fc9 __ptlrpc_prep_bulk_page +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd7910326 lustre_swab_obd_statfs +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd8b91b3e lustre_swab_lov_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd8f06300 RQF_MDS_HSM_PROGRESS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd9561861 RQF_LDLM_INTENT_OPEN +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd9ac6750 ptlrpc_req_finished +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xd9d4a151 ptlrpc_replay_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xda00edd8 ptlrpc_lprocfs_unregister_obd +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb1fb0a2 RQF_MDS_REINT_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb74057f lustre_swab_hsm_progress_kernel +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdb9d5a6a lustre_swab_niobuf_remote +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdc38f423 ptlrpcd_add_req +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdcfebbaf client_obd_setup +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd0ffb04 sptlrpc_flavor2name +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd30d7bf RMF_ACL +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdd5fbd29 ptlrpc_error +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xddc40a85 lustre_msg_get_flags +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xde12d36b RMF_MDS_HSM_ARCHIVE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xde5061c1 ptlrpc_init_rq_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdebdb3c6 ldlm_pool_init +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdee87192 sptlrpc_conf_log_update_begin +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdeee4311 req_capsule_set_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xdf701ae7 lustre_swab_fid2path +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe0cc694c RQF_LLOG_ORIGIN_HANDLE_NEXT_BLOCK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe18b9f2b ptlrpc_request_set_replen +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe34eaed8 target_pack_pool_reply +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe40e0a50 lustre_msg_get_transno +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe4109b7a ptlrpc_request_alloc_pack +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe45f0360 ldlm_lock_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe4d60b80 do_set_info_async +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe57bd972 sptlrpc_current_user_desc_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe5e8169b lustre_errno_ntoh +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe629622b ptlrpc_lprocfs_brw +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe643998e RQF_OST_SETATTR +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe6dd3bc9 ptlrpc_pinger_add_import +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe6f0dc96 RQF_OST_CREATE +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe7062b5f RMF_U32 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe7512278 ptlrpcd_addref +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe783c95c lprocfs_wr_pinger_recov +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xe89c7dcd client_import_del_conn +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xea07e2ac ldlm_lock_allow_match_locked +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xebb64e68 req_layout_fini +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xec939a00 RQF_MDS_REINT_UNLINK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xed1c10d6 ptlrpc_connection_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xed95da32 lprocfs_wr_ping +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xedcb740d sptlrpc_name2flavor_base +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xeee4cbb0 ptlrpc_mark_interrupted +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xef1aeca9 RMF_FLD_OPC +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf1103ff0 sptlrpc_sec_put +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf1300275 _sptlrpc_enlarge_msg_inplace +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf190a4bd req_capsule_client_swab_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf277c125 RQF_OST_GET_INFO_FIEMAP +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf36a10d8 sptlrpc_cli_ctx_get +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf3d44370 RQF_OST_DESTROY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf43540b9 lustre_swab_mgs_nidtbl_entry +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf45085e1 sptlrpc_conf_log_stop +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf55c033b RMF_MGS_CONFIG_BODY +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf596e9ae sptlrpc_conf_log_start +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf607fc23 sptlrpc_flavor2name_base +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf617ab8a lustre_msg_get_conn_cnt +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf697b756 ldlm_dump_all_namespaces +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf7408f84 lustre_swab_hsm_request +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf7ba40c0 RMF_MDS_HSM_PROGRESS +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf870fed9 RQF_LDLM_GL_DESC_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf9051bd6 RQF_QC_CALLBACK +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf973aa93 lustre_swab_lov_user_md_v1 +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xf9f72dfc RMF_TGTUUID +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfa51688d interval_insert +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfb444a98 ptlrpc_prep_fcset +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfbfe4edd req_capsule_get_size +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfc2fa83f ptlrpc_del_timeout_client +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfcecfa52 ptlrpc_resend +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfd148bf8 RMF_LDLM_INTENT +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfdeddf8d ptlrpc_register_service +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xfe6048ce ptlrpc_add_rqs_to_pool +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xff2b5341 ptlrpc_prep_set +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xffc807e8 sptlrpc_unpack_user_desc +EXPORT_SYMBOL drivers/staging/lustre/lustre/ptlrpc/ptlrpc 0xffe29c3f RQF_LDLM_ENQUEUE +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x6574c51d cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x3e177be5 most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x013fc27d rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x014ffabd rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x07f7787f rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08097e07 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0e3e4352 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x26df6a80 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x37521b06 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4573098b rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4647e477 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x513164db rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6952c345 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6b77ad9f rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6f0607b9 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6f9a7947 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x72c1107f rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7cf27403 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x80f68dad rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x814cdcf2 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x86cbaeed rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x87e0dbd4 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8b7b692d rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8c1ffc25 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x94aef9df rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x94c6baa4 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9a7be6f0 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa44ed532 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa4e153c7 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xadd2bafa rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaeb7151d rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb6d90be7 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb9089c6b rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc3754b19 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc3ee8ab3 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc51532d9 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcb78db06 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcc40b4d1 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd2af2fb7 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdcff0136 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe2a01427 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe311c327 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe846b59a Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe89b8c95 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xed7fe746 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeed13097 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf216e7c8 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf4361ddf rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf4399384 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf495d4a9 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf7e21879 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf8060544 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x02d5c984 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x032c14f1 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x06b67b5d SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x086c8945 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x11f0e771 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1a26fff1 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1a8eae12 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x23885dcf ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2520faa8 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x25a84f83 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x26fbb592 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x26fbc1f1 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x30c80612 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x35179a1b DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x35913361 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x454c33a7 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x476a8333 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a4f01c9 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4db21cb1 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5c0691df ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x65cecb9a ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x65e682bc ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x73d7da3b ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x74233e08 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x75a50a6f ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7b943f98 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x85b2fab3 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x88174527 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8caeb48c DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8f52bac9 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x972d3342 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x97776d23 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9889d736 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaa18cfa8 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xace225f7 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0b0ce99 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb72e3e74 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc159c2a9 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc329c003 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc400f7da ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb046027 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcbcafb40 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd425855 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd4398b38 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd56e43d3 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd72e51a8 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xddaf2ee7 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xde74b3ec ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe7ee826a ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe815758f ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf0a0de37 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf346aff2 IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf5963748 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x081597ec iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0a31e242 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0dcc8753 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x10ceef2e iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1e152151 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2023f57a iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x20f0f7db iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x258c9d8c iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x31009c89 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3906243e iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x439196da iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x48945cf9 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x593720e8 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5dee98bc iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6315f52e iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x63c2b580 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65eb6cef iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x736b3ce2 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7663a0a0 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7ed52588 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x857a514d iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x86aaa67b iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8f91c592 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x970a8b91 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9732c7b6 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9964ea23 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9efd8d38 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa132d03c iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb6de0a61 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb9465df7 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbaf9ae01 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbeb7ed5a iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc19337fb iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc247dac1 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc3597a43 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcbac88c5 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcfab4d25 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe180e6c8 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe8bc32f2 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf3873c6a iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf51354db iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf5e5096d iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfcea1cc2 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x000ee695 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x05d55881 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x067b4ca4 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ac5792e sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ad7959b sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x0e0f24fa core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x152dba05 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x18fe2fe4 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x1c4db828 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x20ef9ed8 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x231a2321 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x242dff42 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x2a52e592 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a1e852f core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x3db5a134 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x42340840 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x443b9fd3 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x45636bcf target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x524828db target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x53f50be2 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x54fe001d transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x56ca5868 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x5a83257b target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5b8c7ed4 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5e98d467 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x60966038 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x609b2f86 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x6ba69656 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x70a70673 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x74055e38 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x745669e1 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x75263ac1 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x8ce9f80e sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x8dd4944c passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x9367f3b3 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x93b30732 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x94761b88 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x972b0649 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x98118d06 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x98dac9e0 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xa0bdb78f spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xa269e83d transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xa353d1d0 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa43f740b transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0xa4a2fd5d target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xac892868 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xae042b07 target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0xb2baefc8 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xb6a0a68b transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xb92baa61 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xbccd715a transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc750b70f transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc83a43c3 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xc8c7ed4e transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xd2b6ec4b core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xdadfc281 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xdeab0688 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe0ff5614 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xe61cba76 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xe98dbf40 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xecc26f93 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xefccc2af transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf27d0574 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf2b348d4 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xf5bd88b0 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xf894cad0 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xf8f02175 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xfa723850 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xff1cdbfe transport_handle_cdb_direct +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x5d26a6d5 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x7271030e usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x6e643a09 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3ae7424c usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x693bbf73 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x69746905 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6ac326a2 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7315f6a4 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x94bf8174 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xcd326b7e usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdb15c9fa usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe264c0ef usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe2eed46d usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xeab9a6e9 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfc06a532 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x79879d9e usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x7a4f6810 usb_serial_resume +EXPORT_SYMBOL drivers/vhost/vhost 0x96f8676b vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0xd72e5e3b vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vringh 0x0fd987f7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x14397bb5 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x32da6f89 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x39c9d7a5 vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3c71c418 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4f384f8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x58abf4ed vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x5fedea44 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x6432894b vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x8d080d03 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x95e62337 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xb4b63575 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc578f0f7 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd355e031 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd609393d vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/video/backlight/lcd 0x56b18ff2 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xc8b016b8 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xd9efe8db lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xed767ad7 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x03a9adaf svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0c61f8c1 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 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5f3a0e49 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6c353f53 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x79d87ee0 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdead2955 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf4b2010f svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x1ca20c96 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x0df28d90 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x619538ac 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 0xb446f283 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x33e933ba matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x4ef05fe3 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xd290b12e matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x0a139226 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x2083f547 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x6f8687d1 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xfd0cc195 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x2133d193 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x9ab5fbcb matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x3dabcfbc matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x7074c9e3 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xa6652eff matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xe8da571a matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x4796aef8 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x889d8083 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1255d18f matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x4b4e8c3e matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xa58390f8 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcc1a8e63 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xd60cdcc1 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x91e8362a mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x37ace23e w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x6f848236 w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xb7a5aef9 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xf00a8404 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x305d3757 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xc2405b16 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x5b3de1d4 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xf1356903 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x248141e8 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x2c28f825 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x55927739 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xee94426a w1_register_family +EXPORT_SYMBOL fs/configfs/configfs 0x02887e2b config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x14eea5b2 config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0x1c7b366f config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x24362d79 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0x32263363 configfs_remove_default_groups +EXPORT_SYMBOL fs/configfs/configfs 0x3e0f97ff configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x3e33adae config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x40f436df configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x4e57a855 configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x6aabcebd config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x88d87823 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x926c5b43 configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x93fbe9d0 config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0xcb998a42 configfs_depend_item_unlocked +EXPORT_SYMBOL fs/configfs/configfs 0xd06e6e18 configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xec065bea configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0xf2fd373b config_group_init_type_name +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x3c367ed7 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x44ab1dc4 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x4afa6c4d ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0x62ec04f7 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x74429c7d ore_create +EXPORT_SYMBOL fs/exofs/libore 0x8f943083 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xa8a53f2d ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0xb61b3f84 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0xca8e84d7 ore_write +EXPORT_SYMBOL fs/exofs/libore 0xdd53cdb3 ore_read +EXPORT_SYMBOL fs/fscache/fscache 0x025bdb31 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x0a9b3ca1 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x0e864841 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x10630824 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x1289c652 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x1f5cbaf5 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x2248d81e fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x25c471a9 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x3347ff77 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x362735fd __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x3d9fc0cf fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x3e474676 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x40d1f6fc fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x41f68270 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x4b63a18f fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x4d053a81 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x4e39d1e0 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x4f12ce0e fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x57260f2a fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x67cd03c0 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x72453d95 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x91197de1 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x927932c5 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x9507e138 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xa0e5636d __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xa14374bd fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xa3541aeb __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xab23d59b __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xaceea595 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xb09b7bcd __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xb1339c63 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xba6ef855 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xbd8141d7 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xc4e5221c __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xc50969fc fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xc8407501 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xcdad13cf fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xd5f20c20 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xe7110f8e __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xfcd49e6e fscache_object_init +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x7152da50 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x71829109 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x96d6d296 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xb98a6283 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xbe07bd4c qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xe378e312 qtree_get_next_id +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-itu-t 0x6d356209 crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x56329ecc crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd09b2cba crc8 +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 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 0xd5730e12 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find +EXPORT_SYMBOL lib/lru_cache 0xf18a1342 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put +EXPORT_SYMBOL lib/lz4/lz4_compress 0x0c222eb5 lz4_compress +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x682a23e0 lz4hc_compress +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0xefc78e77 raid6_empty_zero_page +EXPORT_SYMBOL net/6lowpan/6lowpan 0x01af8a98 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x1010a8bd lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x71b634c4 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xad7005a0 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xc4a5c054 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xeaae5ba6 lowpan_unregister_netdev +EXPORT_SYMBOL net/802/p8022 0x091eb3ed register_8022_client +EXPORT_SYMBOL net/802/p8022 0x45a70dc0 unregister_8022_client +EXPORT_SYMBOL net/802/p8023 0x8c59e0b4 make_8023_client +EXPORT_SYMBOL net/802/p8023 0xfa459b72 destroy_8023_client +EXPORT_SYMBOL net/802/psnap 0xbddd0aab unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0xfffa39fe register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0289ff7b p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x046c2437 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x0ace971c v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x2572a4f7 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x36d2a811 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x3aeaa2d6 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x3d63df3e p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3db77b7c p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x3e3b8584 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x3ff4fcf7 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x456fc0ff p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x4f52becd p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x5254bc9d p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x53d58a07 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x5b4860d1 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x61a00e14 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x703e4c6d p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x757a9125 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x780b2379 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x78628b46 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x79f35292 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x85a5e86c p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x86386186 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x9387339f p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x9acebd55 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x9ca2c2f2 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xa5666d20 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xa83dd4e8 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa903246a p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xae213683 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xae818c9c p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xafb41716 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xb4e608a2 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xbd8930a2 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xd201f5a0 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xd4fb9bf0 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xd8ec15ff p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe4a97a5f p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe9cc6383 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xf169bcc3 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xf3f3f2b2 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfa6c37d8 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x1eff80b8 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x2f5769cb atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x302f5887 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x4a5493d3 aarp_send_ddp +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x5cd36d0a atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x62f700e8 atm_charge +EXPORT_SYMBOL net/atm/atm 0x7bb5fdcf atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x8108777c vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x85bc569c register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x907ccb8a atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x9526c58e deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x9bf28af3 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa91b1e55 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xb25371de atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xb9795dbb atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xf37cd1b9 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xfd50f5c8 atm_init_aal5 +EXPORT_SYMBOL net/ax25/ax25 0x169fdbcc ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x19ca880c ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x209621fa ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x51922b99 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xb5687176 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xd67a60be ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xe9aaf0a4 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0xee9d157a ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xfc1303f5 ax25_listen_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0246075f bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x096fae43 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0eccbf2e bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x122d4c62 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x14ba9d0c hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1aebea8c hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x200b7191 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x22b77274 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2b6e713a hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x324333de l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x33998623 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x34e98cc3 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x35abf475 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3aa1be40 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3c412910 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ef22e23 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47c257fb bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x48abd23a bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4901c11d bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4a762e9f hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5228449d l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x570bb058 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5d09cdf9 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x63e0b33c hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x682d3572 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x75013dd0 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x78faa3a9 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7ee6d39f l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x80fa1321 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x85fdff7e bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9c290107 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa2202425 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa64b4ec9 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb1687750 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc7993eea hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcdb07a7d bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcec014cb bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd0c9b63d hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd8c9f043 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeb3128a4 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf64cc7f1 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf65ec308 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf712ff65 hci_set_hw_info +EXPORT_SYMBOL net/bridge/bridge 0x60c6df2b br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0201cd4e ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x35978749 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x892e28b3 ebt_register_table +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x27de7fb0 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 0x4452eced cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x842f5425 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x8e547710 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xe91aac4b caif_disconnect_client +EXPORT_SYMBOL net/can/can 0x0dc20da5 can_send +EXPORT_SYMBOL net/can/can 0x1f390e1f can_proto_unregister +EXPORT_SYMBOL net/can/can 0x40fdfe92 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x5d3e5dd3 can_proto_register +EXPORT_SYMBOL net/can/can 0x9c14ccee can_rx_register +EXPORT_SYMBOL net/can/can 0xab595649 can_ioctl +EXPORT_SYMBOL net/ceph/libceph 0x00f2c6ed ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x17f8bf64 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x1b91d18d osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x1c226487 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x1c7adea7 ceph_file_layout_from_legacy +EXPORT_SYMBOL net/ceph/libceph 0x1d2b7ef6 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x1ef5860b ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x20981d59 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x22b8b590 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x24571f92 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x25b38e00 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x265178af ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x27a92ea5 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x28ca3a05 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x2db717f3 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x2f762bd4 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x35b68134 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x363fb605 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x3789e4e4 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3c4fb8a0 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x419cb09b ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x44b35009 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x4870801f ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x488d888e __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x48a48ff5 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x491e98e4 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x4e55837c ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x54e45b15 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x55948589 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x57822711 ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x57c90709 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x5e0f73c0 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x617d696c ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x650d1b13 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x6521a3d9 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x68085bc0 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6c7b545e ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6d0741ee ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x6ec5aba3 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x70226497 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x711cb6fb osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x730d5d62 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x768f05ce ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x772b4025 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x7ee25dc9 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x7f66a796 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x81de8ed4 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x85d03a9e ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0x86873926 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x88f3df6d ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x8b72fdf3 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x8d9da0d8 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x8f7e0a9a ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x9098c490 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x91abbedf ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x9667e793 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x97239c0f ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x987955da ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9ba0aef1 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0x9f61373f ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa31dd8e6 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa3a7126a ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0xa3bdeff5 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0xa3ddade4 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0xa5518a24 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xaa022831 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xaacb080c ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xae45e14e ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb2d52ea5 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xb379eb5b ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb604ef4b ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xbb3f84cf ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xbb88b7d3 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0xbb907c18 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xbda0d6c0 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xbf15e03c ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0xbfe1bbd7 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc78a04f0 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xc92b66c2 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd64fce47 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd892f910 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xda269221 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xdd8e7550 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xe076c0db ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xe1add2ed osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xe53b61fe ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xe744649f osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xee1ac17c ceph_file_layout_to_legacy +EXPORT_SYMBOL net/ceph/libceph 0xee884e75 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xf13af00c ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xf219939e ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xf39227c3 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xf92ad7d9 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xf93d77e6 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x652fe169 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xc016f8d3 dccp_req_err +EXPORT_SYMBOL net/ieee802154/ieee802154 0x3fc4ae0f wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x518a4f47 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x67759a07 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x70dfc5d8 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc7d1c35a wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe31a41c1 wpan_phy_register +EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x4ac1f0a7 fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xa5abcbac __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xdbe46b86 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xe45c7de2 __fou_build_header +EXPORT_SYMBOL net/ipv4/gre 0xb24f7632 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x4cf7e648 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x635ffe54 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x9a3c2f34 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf959f77e ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x14fc7ac2 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7e5161d8 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x81a2fddf arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x31cb19c7 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x547cb337 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xeb052d9d ipt_unregister_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x06b72c43 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x14a32e3a xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xa771c999 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/fou6 0x6170b337 fou6_build_header +EXPORT_SYMBOL net/ipv6/fou6 0x8778b836 gue6_build_header +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0ba96377 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x28aada73 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7636a420 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x80839099 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x84aac793 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x93cba9a8 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xab3bf2aa ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb8cd055e ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd57b67e9 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x31ec5024 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5a7b0e5c ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8b67fd89 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/tunnel6 0xa8a0c4aa xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xb361055b xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x0fe6c3b6 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xd4b6690f xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x1c72f91d ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x1e959775 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x4ab37937 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x58dfbdbd ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x6d5d0371 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x86f2cf99 ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xcbd36cb3 ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe4047fa1 ircomm_connect_request +EXPORT_SYMBOL net/irda/irda 0x0064e0ea hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x03738a2f iriap_close +EXPORT_SYMBOL net/irda/irda 0x067c0363 irlap_close +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x1ed50ba8 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x2660f6db irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x2c40c34a irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x3300fae4 irttp_dup +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x3410b87a async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x3cb915a7 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0x3e56064f hashbin_new +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x55e22ef9 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x57aff0f8 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x587e4520 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x5a4c0bef irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x5a6118fb irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x601bda46 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x634e8c05 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6b5fbcef hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x6da4338d iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x6e0ab3c7 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7bba962e iriap_open +EXPORT_SYMBOL net/irda/irda 0x7e710848 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x85d88217 irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x94eafaef async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0x9c475499 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x9e243de7 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xabfc6240 irlap_open +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xc1012e30 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0xc13b8389 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0xc68e43be irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xcead7dbb hashbin_find +EXPORT_SYMBOL net/irda/irda 0xd2108314 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe19ad5b1 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0xe3463529 hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0xe3bde43e irias_insert_object +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xf0a694a1 irias_find_object +EXPORT_SYMBOL net/irda/irda 0xf5876b95 hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0xf62bbfc8 irda_device_set_media_busy +EXPORT_SYMBOL net/kcm/kcm 0x2d8b38f0 kcm_proc_unregister +EXPORT_SYMBOL net/kcm/kcm 0xb0879860 kcm_proc_register +EXPORT_SYMBOL net/l2tp/l2tp_core 0xde713a44 l2tp_recv_common +EXPORT_SYMBOL net/lapb/lapb 0x17f0078f lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x33b3b530 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x5a87cd2d lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xa167cd37 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xc57729da lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xd0d1818e lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xd8d54398 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xe42970ab lapb_disconnect_request +EXPORT_SYMBOL net/llc/llc 0x1fec887a llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x2d4dbcbe llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x352bff39 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x4de505b8 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x8dec6354 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xf754e463 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xfc5df4b6 llc_sap_find +EXPORT_SYMBOL net/mac80211/mac80211 0x01ecee76 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x0af249bf ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x0b56ea5e ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x0baf730b ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x1482167a ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x17ef923c ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x24066cfa ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x27c342d4 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x29d274c0 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x2a09d760 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x2d4baca3 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2df514b2 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x325371d9 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x33cd9824 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x35ae1409 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x38c4ba82 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x3d477065 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x40de0750 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x420ff9bf ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x447bcbe9 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x4a20990e ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x4ab9d802 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x5079d543 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x50e25dbc ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x51ec3626 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x58dbace0 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x5ef4ffd8 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x609c9374 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x60dd6d1b ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x63ee7d3d ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x6508dce5 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x6824519d ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x6cc0b87d ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x6dfc3571 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x717560a8 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x750d517c ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x755a4c38 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x77799a90 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x7838ce32 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x80101d1d ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x803b881f ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x86d8ec45 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x86e77409 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x8a315282 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x8a3e70d8 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x8ca24902 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x8caea16a wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x8ccf52c2 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x9038f1c8 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x913d3dce ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x97d60d4f ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x99e51c9d ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x9e87d1f1 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x9e924b29 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xa11a0aa0 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xa59b7b90 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xa8b4fbe5 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xa958e1b9 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xad84f1b0 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xb1f99d37 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb63aa565 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xb7759f20 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xb79eb7ba ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb7aaa010 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xc49ace57 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xc547bc32 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xc734b1a8 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xcaa8eb82 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd2285f8e ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xd5779771 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xda4260d2 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0xde4886df ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xded21721 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xdee25b8e ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xdfae8202 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xe012fa50 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xe1e114fa ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xe8226e95 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xea9e1fa1 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xed2cf83c ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xef0bb710 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xfb54288d ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xfc89f78f ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xfd83b58f ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac802154/mac802154 0x2f795187 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x3a133b8a ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x4d23fd29 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x60c532bf ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x98d49ec4 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x9aa82b14 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xc5441146 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xf5a3c419 ieee802154_alloc_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1d37e1e2 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2e8a80c9 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3de02f28 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x76d6e364 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x78d2154c ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa78c95e1 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb8cc905b ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc7d501cf register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc859be76 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd0a2b749 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd34f89fc unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd8d73741 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdca78826 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf33bf192 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf6541d0b register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x2e9f6267 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x48077fa4 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x91935155 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x04f8bd95 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x96fa994b nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xb0250643 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0xbc2cdfd9 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xd191b947 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xf1507b4d nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/x_tables 0x0a38b207 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x81cd82f1 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x8881e014 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x889b4a63 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x942a50a8 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x968944b4 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xc82c97aa xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0xd472f5c0 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xe609f102 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xebe95ed3 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x0aa9f7fc nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x1736b32c nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x17a33a90 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x339f55b6 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x4cb8c8d9 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x4fefe549 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x5211b6ab nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x6c91d1d9 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x7eb5afef nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x804b9d8a nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x91a944b8 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x92b2e24f nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x99ebff2d nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xb34798e0 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xcad78600 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xd7c11eba nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xda199655 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xe1c79732 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xf3342d16 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xfc2ac200 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xfc72e787 nfc_llc_start +EXPORT_SYMBOL net/nfc/nci/nci 0x047b262b nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x091009cc nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x1c9f780d nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x1fdf2057 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x25dc02d0 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x3fe034ec nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x45ec1070 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x47162580 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x4841fb5b nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x5015d534 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x5256fff2 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x65c23a4f nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x687cfaae nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x737c842a nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x78a7b62f nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x7fc11bac nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x8b8ea16f nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x8da6587d nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x95cb2612 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x96d4760e nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x977543fb nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xa4377e3d nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xa88557cc nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xad3a3fef nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xb1d389ee nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xbe6f863a nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xc85dc7f1 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xe23e85c5 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xf2e8c443 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nfc 0x00c892bd nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x03025b27 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x1a041551 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x1c46ceef nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x24d0d0b8 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x2621b601 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x3ac84894 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x3ae66456 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x44f90c0a nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x4a28ed2c nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x4e629d8f nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x7e043c7d nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x7e219346 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xae8b0480 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xb169c270 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xb70f2dc5 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xb7bc127c nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xbbf1af3a nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xbd150ea9 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xc7aa9203 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xcdbd4aaf nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xeae43f31 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xf7fa6e5c __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xff2e862b nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xff4679c0 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc_digital 0x04cf5790 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x54b8c359 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xb4d152dd nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xc4e952c6 nfc_digital_unregister_device +EXPORT_SYMBOL net/phonet/phonet 0x3f77ec9e phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x45e944da phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x4748c272 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x8c6dab14 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xbdee0ec7 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xd600f841 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xe792c557 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xfa587679 phonet_header_ops +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x09c8681d rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x164544f8 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1e75a890 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x32a0b946 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x46729011 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6d517bf9 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8c09010f rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8fce5496 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9fc6cd32 rxrpc_kernel_data_consumed +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xafa7e1b8 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb96d741d rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbe01af6d rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf2c90c50 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf3efdc6f rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xfb5210c6 key_type_rxrpc +EXPORT_SYMBOL net/sctp/sctp 0x4e81a6a4 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x1c4c7dec gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x2703c7c1 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xcf8afb7a gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0xa9b1780d svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xd0e3ae91 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xd1de3121 xdr_truncate_encode +EXPORT_SYMBOL net/wimax/wimax 0x350fb351 wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0xb35c215b wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0a25dda2 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x0bda3140 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x0c855b25 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x170caa1c __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1c00f8ea ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x1f0588f0 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x2360cedc cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x263d321e cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x26aff83e cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x271e0efb wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x297a67f4 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x2a339d3b cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x2b04d623 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x2cafc8d9 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x2fe98c72 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x37d26b07 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x3f8fc61b cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x40316ebb cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x41bb88c7 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x45c65bb8 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x47079c30 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x49775f38 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x4d0ba373 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x53127d25 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x580620bc wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x5ae925ab cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x5ce0ab18 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5ecc7055 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x61e629be cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x6226e90f cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x633b3791 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x638837e5 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x638f2bd6 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6b1f1917 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x6c040132 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x735f5472 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x744975b8 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x74c122fe cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x7858d110 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x7863e52e cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x7a895ddf cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x806673fb ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x8338fbce cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x85ea07b5 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x899379ef ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x9552b56e cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x97f9a298 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x99385ee7 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x9a0ce5d5 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x9ad59457 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x9d2c4b68 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x9eee8b77 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xa139177b cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xa4b03786 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0xa4d07dd4 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa81f8c3a ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xae7853db cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xb6bab820 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xbf538f7a cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xc0a0f359 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xc4829d57 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc6d02211 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xc9442f5d ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0xcc2470d6 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xcc385d5e cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xcf2cb3bc cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd1276df2 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xd47d62bb cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xd56730c3 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdc3469b8 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/cfg80211 0xde05b115 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xde87a3f1 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0xdec98bb1 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xe142b7b9 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xe15aff13 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe1b858c6 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xe23d842a cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xe54313dc cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xe79b9291 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xe8663ae6 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0xe8fbf112 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xe924eaf2 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xe9bfbbf8 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xea5b09ce cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xeec65716 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xf0de0d22 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xf304a816 cfg80211_connect_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xf41187d7 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xf520e46d cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xf91409df cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xfcc7903a cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xfd65b915 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/lib80211 0x09bbad01 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x20c2b6df lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x54e16464 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xbf860860 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xdb0fe00d lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xf8d117d3 lib80211_register_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0xab221893 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x8b9bbc2e snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x0e9f24d6 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x13e0f848 snd_seq_kernel_client_enqueue_blocking +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 0x9c82eb93 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe7c1075e 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-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x5d449985 snd_seq_device_new +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +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 0xf0a1fdb3 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 0xd7c7afcc snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe60fb228 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xecbde43c snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x2f2f9fda snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x05035a6a snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x09841cf2 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x0d236e5a snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x0f9c3ff1 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x10bbb2e7 snd_ctl_free_one +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 0x1a919cd0 snd_cards +EXPORT_SYMBOL sound/core/snd 0x1e9ddce5 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x221d9ea6 snd_info_register +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 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4c82bfb6 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x4e26a130 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x4f9512d2 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x52f8f335 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x5309e7f5 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x54d98a59 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x5fa399d1 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x5fb05e98 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x7155f0a8 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x71fe145e snd_card_new +EXPORT_SYMBOL sound/core/snd 0x76105aa0 snd_device_register +EXPORT_SYMBOL sound/core/snd 0x76f84dd7 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x7cd9fc4e snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x80d05a17 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x80dabca0 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x8748109d snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x8ffb2f5f snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x949f799c snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x9737cdd9 snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xa70b03bb _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0xac1d3d26 snd_device_new +EXPORT_SYMBOL sound/core/snd 0xae6d7e46 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xb0ae332f snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb6bd60bf snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xbd927e68 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0xc0fa20b0 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xc55c6351 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xcd24f76b snd_register_device +EXPORT_SYMBOL sound/core/snd 0xd59a062d snd_component_add +EXPORT_SYMBOL sound/core/snd 0xddcf91c8 release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xde2561bf snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xe2fc74f9 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xe4b0c89e snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xeece4ae7 snd_device_free +EXPORT_SYMBOL sound/core/snd 0xf0ae95bf snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xf0f5bae4 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0xf12fbac9 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xf9dbbcb0 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xfa10b3d3 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xfccd5599 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xffb347d1 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-hwdep 0x0d81ddce 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 0x06b310c9 snd_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x072c8fc0 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x0a29735e snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0x141d14e8 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x14e35ba4 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x18a6c8bd snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x1ba9c606 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x1cdc71f3 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1f2661fc snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x2bb2ac07 snd_pcm_lib_read +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 0x3cb30626 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x3dd1f24a snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x45c54672 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x48c93c72 snd_pcm_lib_mmap_iomem +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 0x526bd848 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x5898dcba snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x60c32001 snd_pcm_hw_constraint_msbits +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 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x73dadd54 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x7a28b0b7 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x7bd48d99 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x80482a52 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x847a096d snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x8823240b snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x886b7f8a snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x88d5ce47 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x8a2f8599 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x9331b611 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x9ef9dad9 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xa4fcd655 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa729f000 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0xa8e66704 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xa94b2cf6 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xac970ddf snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xad462fa8 snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0xad564168 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xb2dcb62e snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xb8e616ae snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbda345f7 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0xcd3c7eb0 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xd022813d snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0xd102f63c snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xd7e13d42 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xdc8d09aa snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xe30b86e6 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xe4588dc7 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe56b5320 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xf429d17e snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xf5da929f snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0xfd2c9e30 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x11c2dad4 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x14b942c7 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x16884844 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2014b7c4 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2258bc62 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2caaa0f4 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x44835a53 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4e2ea31a snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x70ce3112 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x77e9f5e5 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x786ea0f8 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9202c482 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9cdcbeb1 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa02d7261 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa6be67c0 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xaba2b8e6 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdc689f45 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe7f25223 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf369afc0 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-timer 0x008fd51e snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x04d794f5 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x0a33eb1c snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x455cc4f4 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x5fe484a3 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x6f8cf725 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x774281b1 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x8593c808 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x99375828 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x9acd2530 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xa79fb80b snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xe8398f9f snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xf1816e95 snd_timer_stop +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x0d181ab4 snd_mpu401_uart_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/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x35b73831 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x62006f6c snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x621767d1 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8e36af1b snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x95dab471 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa9e98c4b snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb35767bd snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf268e5d5 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfbd80a4a snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2cf07b86 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7046cf71 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7a2ad360 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x80b64a25 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb46d36b8 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb967e930 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xbd6eb3a2 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc164f8d3 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfd8dffd7 snd_vx_load_boot_image +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x04e97c00 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0cfe2e8d amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x129f5959 snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x206e4437 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2349f9c6 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x371d9353 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3a96aa49 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3df4b109 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x40ada519 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x48f41f17 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4bf8e627 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4c9292a7 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4e00fd5e amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4fd1c14e snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x64bf04f6 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x68a21276 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6d7d5d25 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x74c26694 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7a46f490 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x86f48b34 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8e533e12 amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x93309d43 snd_fw_schedule_registration +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x999c10be cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa6b61d02 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xab2ab383 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xac596a97 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb6e21c3b amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdc128445 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdcd973d3 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xeacce770 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xed462c1e cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xef987ef1 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfa1077b2 fw_iso_resources_allocate +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x47b1465d snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xe57b30c7 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1208ee57 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x32b4f875 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x733b39a8 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa97bcbdf snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbcdee4e4 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd7602bde snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xda4895a1 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xfce5d23d snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x2d6c4a98 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x65ba2c79 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x7915cc0e snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xb0e2c8e3 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x0d9c340c snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xf9996b48 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2a86ef6c snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x3e2b1e4a snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x515f9d2f snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x683a5211 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7023e456 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe1a6c4d5 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-i2c 0x20d40126 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x297be106 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x7afda508 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x8f888d49 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xe4a6d347 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xf5d53a83 snd_i2c_probeaddr +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x2abe4d84 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x525282ed snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x67f34afc snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x6a59a383 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x85e2cb32 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x90db617b snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x9600b639 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd8a7f0dc snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xfbaf3b0e snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xfc831e36 snd_sbdsp_create +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x07435aa0 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x22a3df4b snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x237eb48d snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x25180bf5 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x27fd8782 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5586fe03 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x75b6c125 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x76fe6f49 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x81c90c80 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa2f70722 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xaf431139 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb80ab77f snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbcd484e6 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd137bc93 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdd4faf4e snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe37929da snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe8838eaf snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x162dd15a snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6ed84573 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x772a9388 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8c6d1f55 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8f6a64af snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x961a491c snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd6ea1f9f snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xdcc66f59 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf853bfe0 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x452674dd snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x5edbd21c snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x7da2d51e snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x02eeac62 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0bf92134 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x13e03e55 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1b95b0a5 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1f67c9d3 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x261c687f oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3261f12c oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x406d177b oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x45daf2a7 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5027630b oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x68e210ca oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x79b3d975 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x82df0762 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x83d0fb0d oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xad851bbb oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcefaef20 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd10d0f64 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd2eaeafa oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xee82b919 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xef4def99 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf630d84b oxygen_write_uart +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x2b8b456b snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x3b8c8597 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc980e60b snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xea386917 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xeaf7bfe7 snd_trident_start_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x13989e6b tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x17017869 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/snd-soc-core 0x56365098 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x17947af4 sound_class +EXPORT_SYMBOL sound/soundcore 0x2bd3ae02 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x6224dd1b register_sound_midi +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xa8d87832 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xca604e68 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xfcfc138e register_sound_special +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x080d4eee snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5803f9c1 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x77eebf04 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x9b38c274 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb11d8593 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xbcc6748e snd_emux_register +EXPORT_SYMBOL sound/synth/snd-util-mem 0x5791bf8a snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x633680a1 snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x78c8318a snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x7bb22554 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0x916b567d __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x9cfed2fe snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xa20f31b8 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xc973bdc2 __snd_util_mem_free +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x503d529b __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 0x000b6658 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x001d6521 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x0027936b fget +EXPORT_SYMBOL vmlinux 0x0034992a scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x00398fcb skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x003a7a96 h_ipi_redirect +EXPORT_SYMBOL vmlinux 0x00462cca blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x00562d78 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x0069e0f5 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x00712334 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done +EXPORT_SYMBOL vmlinux 0x00867c38 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x009554aa mdio_device_register +EXPORT_SYMBOL vmlinux 0x0095ce23 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x00ad1f1a blk_finish_request +EXPORT_SYMBOL vmlinux 0x00c3a7f1 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x00c91e56 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x00cc2385 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x00cf3589 generic_make_request +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00ed50c3 key_link +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x012a97fc xor_altivec_4 +EXPORT_SYMBOL vmlinux 0x015ff1ae blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x017967a3 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x0196aa1b sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x019b1cfc ptp_clock_register +EXPORT_SYMBOL vmlinux 0x01b27b68 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x01bc9c54 radix__flush_tlb_page +EXPORT_SYMBOL vmlinux 0x01bf56c3 __pmd_cache_index +EXPORT_SYMBOL vmlinux 0x01da9e43 commit_creds +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x0223ca23 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0x023a074a hvc_get_chars +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02c6d8cb skb_put +EXPORT_SYMBOL vmlinux 0x02e03fd8 fence_remove_callback +EXPORT_SYMBOL vmlinux 0x02e671f7 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02fd7215 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x0317f2e2 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x031e5a26 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x031ebeae get_tz_trend +EXPORT_SYMBOL vmlinux 0x031f02c4 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x032b49e0 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x03671610 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x03726d14 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x0377cd4b ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x03795c91 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03864339 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x03a54f5c invalidate_partition +EXPORT_SYMBOL vmlinux 0x03aad86e sock_wfree +EXPORT_SYMBOL vmlinux 0x03c2cb11 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x03dda3ae end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x03f27265 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x03f4acba user_path_create +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x04074f48 ioremap +EXPORT_SYMBOL vmlinux 0x040fe615 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x0420bdc6 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x043830a6 save_mount_options +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044f7510 km_is_alive +EXPORT_SYMBOL vmlinux 0x045d98d6 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x0473eb1f sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x0475a19b ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x04a122b9 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x04ae7f52 pci_irq_vector +EXPORT_SYMBOL vmlinux 0x04b23a9a __nd_driver_register +EXPORT_SYMBOL vmlinux 0x04bda32c tc_classify +EXPORT_SYMBOL vmlinux 0x04c7de17 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x04d3537b __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x04d468ce mount_bdev +EXPORT_SYMBOL vmlinux 0x04dbfcd6 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x053ede36 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x0542cea3 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x056a6f45 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x056c5154 qdisc_list_add +EXPORT_SYMBOL vmlinux 0x05971857 __module_get +EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns +EXPORT_SYMBOL vmlinux 0x05df27d0 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x05e25804 __request_region +EXPORT_SYMBOL vmlinux 0x05ec4a2d get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x05ed6d87 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x05f04024 irq_set_chip +EXPORT_SYMBOL vmlinux 0x05f3d468 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x05f773d4 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x06006eac read_cache_page +EXPORT_SYMBOL vmlinux 0x060556d0 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x06249383 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x0667910b mmc_register_driver +EXPORT_SYMBOL vmlinux 0x06719568 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x0672a246 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x06867dd2 bdi_register_owner +EXPORT_SYMBOL vmlinux 0x06a50d7f blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x06e9dadb find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x06ee62ec mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x0704fdc3 bio_endio +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072a91eb twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x073a7e8c xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x074e9213 down_killable +EXPORT_SYMBOL vmlinux 0x077b7d61 cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x07a7317a jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07c6b6e3 kernel_write +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07df41ea jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x07e05105 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x07eec76b dquot_acquire +EXPORT_SYMBOL vmlinux 0x07f0dc71 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x07f37268 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x07f68d23 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x08043f7a vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x0807120f param_ops_ullong +EXPORT_SYMBOL vmlinux 0x080fa3f4 nmi_panic +EXPORT_SYMBOL vmlinux 0x0817355c nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x081739bf blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x0817e9c4 nvm_submit_io +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x082ea7b4 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x083e3b01 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0840a141 dput +EXPORT_SYMBOL vmlinux 0x0847dedb __next_node_in +EXPORT_SYMBOL vmlinux 0x085084f1 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x087255df drop_super +EXPORT_SYMBOL vmlinux 0x087b004b __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x088488af of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x08b63b81 con_is_bound +EXPORT_SYMBOL vmlinux 0x08c07e18 sk_net_capable +EXPORT_SYMBOL vmlinux 0x08c74653 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x08d7c169 skb_trim +EXPORT_SYMBOL vmlinux 0x08e972ab pci_disable_msi +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08f91fae sock_no_connect +EXPORT_SYMBOL vmlinux 0x091b1c9c ibmebus_bus_type +EXPORT_SYMBOL vmlinux 0x09207109 dump_skip +EXPORT_SYMBOL vmlinux 0x09375afd dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x095d469f inet_select_addr +EXPORT_SYMBOL vmlinux 0x09855cc9 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x098d6ed2 generic_read_dir +EXPORT_SYMBOL vmlinux 0x09990dc2 d_add_ci +EXPORT_SYMBOL vmlinux 0x09bdcaf0 dma_pool_create +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c6411f schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d25122 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09e363cd bmap +EXPORT_SYMBOL vmlinux 0x09f0e4d8 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x0a056d20 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x0a0d1359 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a2dbb44 tcf_hash_search +EXPORT_SYMBOL vmlinux 0x0a39a2f5 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x0a3bbefb nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x0a48d943 __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x0a67bd56 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a800964 __SetPageMovable +EXPORT_SYMBOL vmlinux 0x0a9792f2 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0ab4cdfb dev_mc_init +EXPORT_SYMBOL vmlinux 0x0abec7db insert_inode_locked +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad66394 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x0ad99b2e pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x0affa698 xfrm_input +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1bb7e7 freeze_bdev +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b2d97cc lock_sock_fast +EXPORT_SYMBOL vmlinux 0x0b2e1ec7 h_get_mpp +EXPORT_SYMBOL vmlinux 0x0b58b23f __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x0b590f1a tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b729b1a tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b771e76 registered_fb +EXPORT_SYMBOL vmlinux 0x0b8977db inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bbdec54 abx500_register_ops +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bc7152e udp_gro_receive +EXPORT_SYMBOL vmlinux 0x0bcf10ad dquot_initialize +EXPORT_SYMBOL vmlinux 0x0beb090b reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x0c17da82 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0x0c334945 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c513441 abort_creds +EXPORT_SYMBOL vmlinux 0x0c57a0ed textsearch_destroy +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c65d96a i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c7587c2 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x0c75efb3 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0ccb7988 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x0cdc60b0 dquot_file_open +EXPORT_SYMBOL vmlinux 0x0d0f7aa3 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x0d211750 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x0d4246d4 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d567cae proc_set_user +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d67c1f3 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x0d6a94f1 generic_show_options +EXPORT_SYMBOL vmlinux 0x0d6c963c copy_from_user +EXPORT_SYMBOL vmlinux 0x0d965cfb pcim_iounmap +EXPORT_SYMBOL vmlinux 0x0d9e1ea7 fence_signal +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da652a4 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x0dbbd564 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x0dc0ace0 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x0de3904d jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x0e00f347 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x0e2574cb serio_close +EXPORT_SYMBOL vmlinux 0x0e379df8 node_states +EXPORT_SYMBOL vmlinux 0x0e4f96b5 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x0e5b4b85 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e6f72da inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x0e7aa625 sock_update_memcg +EXPORT_SYMBOL vmlinux 0x0e7fa7a6 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x0e8062f7 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0ea0c5a2 dm_register_target +EXPORT_SYMBOL vmlinux 0x0eae7b66 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x0ebb928c i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ed000e8 set_anon_super +EXPORT_SYMBOL vmlinux 0x0eda38a9 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f1bf000 component_match_add_release +EXPORT_SYMBOL vmlinux 0x0f3d54a2 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x0f4b3ce1 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f5faa7e wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0faedbfb set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fb7601e bh_submit_read +EXPORT_SYMBOL vmlinux 0x0fd4f19a pcie_get_mps +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x0ff8f4fc __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x0ffff00f padata_start +EXPORT_SYMBOL vmlinux 0x1004a747 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x1017426e clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x102ca1a0 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x103c39cd simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x10446fae pnv_cxl_get_irq_count +EXPORT_SYMBOL vmlinux 0x104e7fc5 kobject_init +EXPORT_SYMBOL vmlinux 0x1059f28d prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x106916e6 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x106f2186 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1082a4f1 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x1082eb04 PageMovable +EXPORT_SYMBOL vmlinux 0x108d6f08 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x1091c667 phy_init_eee +EXPORT_SYMBOL vmlinux 0x10929599 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x10ac240c generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x10b1e80f dev_remove_offload +EXPORT_SYMBOL vmlinux 0x10bf04b6 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x10cbc73e dcache_dir_open +EXPORT_SYMBOL vmlinux 0x10dc53d2 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x10ddea9e blk_requeue_request +EXPORT_SYMBOL vmlinux 0x10e0f124 __pud_index_size +EXPORT_SYMBOL vmlinux 0x10e3cf47 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11138e66 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x11269722 vfs_create +EXPORT_SYMBOL vmlinux 0x112b26e4 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x116bc4c4 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x11802e83 set_disk_ro +EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable +EXPORT_SYMBOL vmlinux 0x1189517d skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x119703fd load_nls +EXPORT_SYMBOL vmlinux 0x11a64b72 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x11c3143e kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0x11d06238 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x11d2e92f __sb_start_write +EXPORT_SYMBOL vmlinux 0x11ddf8fb sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x11e304bd fscrypt_encrypt_page +EXPORT_SYMBOL vmlinux 0x11eaa0f2 inet6_bind +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x12237cef qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x12278146 arp_xmit +EXPORT_SYMBOL vmlinux 0x12282826 genphy_resume +EXPORT_SYMBOL vmlinux 0x122a1fc1 sk_common_release +EXPORT_SYMBOL vmlinux 0x122e3bd9 deactivate_super +EXPORT_SYMBOL vmlinux 0x123894ec ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x123d076f mdio_driver_register +EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x12591946 ps2_command +EXPORT_SYMBOL vmlinux 0x1260c622 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x12794af5 block_read_full_page +EXPORT_SYMBOL vmlinux 0x1283709b block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12abb67a blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x12c69035 pci_select_bars +EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit +EXPORT_SYMBOL vmlinux 0x12e5ef0c rtas_set_power_level +EXPORT_SYMBOL vmlinux 0x12f8641f skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x12fef9dd xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x1313a424 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x1313c4c7 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x131f9a69 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x133b9677 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x13471702 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x13611f2e nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x1364cc4f migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x1364e6b4 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x136f0719 write_one_page +EXPORT_SYMBOL vmlinux 0x13943155 tty_name +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d6dd95 padata_do_serial +EXPORT_SYMBOL vmlinux 0x13df3779 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x13f3a505 proc_set_size +EXPORT_SYMBOL vmlinux 0x13f53da6 CMO_PageSize +EXPORT_SYMBOL vmlinux 0x13fc6a81 tcp_prequeue +EXPORT_SYMBOL vmlinux 0x14209f6c __kernel_virt_size +EXPORT_SYMBOL vmlinux 0x14214a4e __lock_buffer +EXPORT_SYMBOL vmlinux 0x1422b535 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x1438eb3a nvm_mark_blk +EXPORT_SYMBOL vmlinux 0x1439c52d backlight_force_update +EXPORT_SYMBOL vmlinux 0x14473af8 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x145ff581 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x14657107 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x147f2df4 cdrom_release +EXPORT_SYMBOL vmlinux 0x148396ef sg_miter_skip +EXPORT_SYMBOL vmlinux 0x148a5494 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x148c2be3 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x1491def0 tcp_connect +EXPORT_SYMBOL vmlinux 0x149b2d62 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x14bd2ffb __serio_register_port +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14e6fbab blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x14ec79e3 address_space_init_once +EXPORT_SYMBOL vmlinux 0x14ee8f3c generic_writepages +EXPORT_SYMBOL vmlinux 0x14fc74d0 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x150ad92b ioport_resource +EXPORT_SYMBOL vmlinux 0x150bb6d5 blk_free_tags +EXPORT_SYMBOL vmlinux 0x1528cae2 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x1529f840 pci_dev_put +EXPORT_SYMBOL vmlinux 0x152cacba netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x153229db blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x15719458 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x157cb96e fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x157fdec9 param_set_byte +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15cedfee netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x15cfad45 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x15d3fd60 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x15ef65e2 cdev_alloc +EXPORT_SYMBOL vmlinux 0x15f9a1ce make_bad_inode +EXPORT_SYMBOL vmlinux 0x15fa8111 vfs_unlink +EXPORT_SYMBOL vmlinux 0x1607fc72 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x160b13d2 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x160bd45c rtas_token +EXPORT_SYMBOL vmlinux 0x16260f12 of_root +EXPORT_SYMBOL vmlinux 0x1644df94 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x167590c0 nf_register_hooks +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x1691f47a bdi_register_dev +EXPORT_SYMBOL vmlinux 0x16ae6a10 pnv_cxl_ioda_msi_setup +EXPORT_SYMBOL vmlinux 0x16c4a068 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x16d4e5f7 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e6d834 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x16f9329c __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x16ff51d3 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x17011c52 ab3100_event_register +EXPORT_SYMBOL vmlinux 0x170d0a49 scsi_unregister +EXPORT_SYMBOL vmlinux 0x1720ebbd mdiobus_free +EXPORT_SYMBOL vmlinux 0x174090f6 locks_free_lock +EXPORT_SYMBOL vmlinux 0x1743414f __debugger_fault_handler +EXPORT_SYMBOL vmlinux 0x175d19f5 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock +EXPORT_SYMBOL vmlinux 0x177fea05 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x17920088 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x17a00d6d tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x17acea47 kill_bdev +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17c827db devm_iounmap +EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern +EXPORT_SYMBOL vmlinux 0x17e61652 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x17ef770d devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17fa5b66 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x183014a2 fence_free +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x1842a6b3 param_ops_short +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x184ca1e4 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x1853911c netif_device_detach +EXPORT_SYMBOL vmlinux 0x1857aa39 proc_dointvec +EXPORT_SYMBOL vmlinux 0x185945e7 of_iomap +EXPORT_SYMBOL vmlinux 0x1868bb63 mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x1871c0c8 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x1877450c fscrypt_decrypt_bio_pages +EXPORT_SYMBOL vmlinux 0x1883c64c inode_nohighmem +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x18a75f9d pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x190ef117 input_flush_device +EXPORT_SYMBOL vmlinux 0x191be529 agp_copy_info +EXPORT_SYMBOL vmlinux 0x192f4786 touch_buffer +EXPORT_SYMBOL vmlinux 0x1937f713 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x194c6d43 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x194dc990 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x19507e73 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x197906b9 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x1993bf79 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a5b9c6 inet_shutdown +EXPORT_SYMBOL vmlinux 0x19adc147 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x19ae056d scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19ba9478 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c85478 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x19e0a1fd blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x19e9f8d4 vmap +EXPORT_SYMBOL vmlinux 0x19f1d307 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x1a41ee12 flush_dcache_icache_page +EXPORT_SYMBOL vmlinux 0x1a4b70f6 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x1a549920 generic_setlease +EXPORT_SYMBOL vmlinux 0x1a603437 inet_offloads +EXPORT_SYMBOL vmlinux 0x1a60aa4e twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x1a703ba1 crc_ccitt +EXPORT_SYMBOL vmlinux 0x1a8162ef i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x1a8629f2 dcache_readdir +EXPORT_SYMBOL vmlinux 0x1a93e1be rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x1a947170 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x1aa011b4 md_done_sync +EXPORT_SYMBOL vmlinux 0x1aa2693a radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x1ac05af5 ether_setup +EXPORT_SYMBOL vmlinux 0x1ac54045 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ad0a77b mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x1af0e883 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x1af1df0c kill_litter_super +EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x1afd2b93 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b07bb15 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b33f21b sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x1b45f2ed phy_start_aneg +EXPORT_SYMBOL vmlinux 0x1b5d23d5 __frontswap_load +EXPORT_SYMBOL vmlinux 0x1b625d33 enable_kernel_vsx +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b65d333 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b844b7d zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b8bfd22 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x1b8c0b70 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x1ba4e83f rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x1bd8185c generic_getxattr +EXPORT_SYMBOL vmlinux 0x1bfd36a1 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x1bfec830 __iounmap_at +EXPORT_SYMBOL vmlinux 0x1c3d2987 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x1c3e02e4 memcmp +EXPORT_SYMBOL vmlinux 0x1c539d75 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x1c6777d6 __sock_create +EXPORT_SYMBOL vmlinux 0x1c7cfdb1 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x1c9ee353 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x1cacec77 mount_nodev +EXPORT_SYMBOL vmlinux 0x1cb0da14 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x1cb84eba crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x1ce680c0 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x1cef629c inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x1cf2764f inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x1d047e05 build_skb +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d0f9a93 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be +EXPORT_SYMBOL vmlinux 0x1d3fea8c mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x1d749ae6 ipv4_specific +EXPORT_SYMBOL vmlinux 0x1d75e52b account_page_dirtied +EXPORT_SYMBOL vmlinux 0x1d8b5665 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x1daee28a percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x1db0bdcf __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x1dba71e8 proc_remove +EXPORT_SYMBOL vmlinux 0x1dbc4d0c proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dcfde72 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de34221 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x1dfea812 blk_get_queue +EXPORT_SYMBOL vmlinux 0x1e042865 lookup_bdev +EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query +EXPORT_SYMBOL vmlinux 0x1e12c098 kset_unregister +EXPORT_SYMBOL vmlinux 0x1e1ae961 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e2af9da lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x1e4301f1 send_sig_info +EXPORT_SYMBOL vmlinux 0x1e497e23 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x1e6c35e6 tty_write_room +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e70e739 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x1e9027de generic_delete_inode +EXPORT_SYMBOL vmlinux 0x1e9c1091 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eafeead dma_iommu_ops +EXPORT_SYMBOL vmlinux 0x1eb577a6 agp_free_memory +EXPORT_SYMBOL vmlinux 0x1ef566f1 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x1ef70154 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x1f02968a eth_gro_complete +EXPORT_SYMBOL vmlinux 0x1f186a8d seq_vprintf +EXPORT_SYMBOL vmlinux 0x1f248743 __vfs_write +EXPORT_SYMBOL vmlinux 0x1f2d1478 simple_setattr +EXPORT_SYMBOL vmlinux 0x1f41fcc6 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x1f51f59a nf_ct_attach +EXPORT_SYMBOL vmlinux 0x1f626439 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1f822a48 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x1f8fef21 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x1f974e26 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x1fa90a08 vme_irq_request +EXPORT_SYMBOL vmlinux 0x1fa9381c eth_mac_addr +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fced0d2 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd09f7b __nlmsg_put +EXPORT_SYMBOL vmlinux 0x1fd85738 unregister_nls +EXPORT_SYMBOL vmlinux 0x1fd8f0e0 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1fef01f5 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x2013a823 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x201a3e2b skb_push +EXPORT_SYMBOL vmlinux 0x2022b533 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x2035529a loop_register_transfer +EXPORT_SYMBOL vmlinux 0x204bb715 mutex_unlock +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x208aac38 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x209b3b96 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ad0485 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x20b1fef5 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x20ba4301 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20ca6338 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20e1430b ip_setsockopt +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x212a4ce8 ppc_md +EXPORT_SYMBOL vmlinux 0x212b12b9 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x213adae2 neigh_xmit +EXPORT_SYMBOL vmlinux 0x2147689a lwtunnel_input +EXPORT_SYMBOL vmlinux 0x2157f1b7 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x2177adab get_cached_acl +EXPORT_SYMBOL vmlinux 0x217a8a83 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x218faa01 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x21b4f1d9 block_truncate_page +EXPORT_SYMBOL vmlinux 0x21d38a69 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x21d73a45 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x21dbee63 alloc_pages_current +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21f1c916 dev_emerg +EXPORT_SYMBOL vmlinux 0x221dd18a cfb_copyarea +EXPORT_SYMBOL vmlinux 0x22261e96 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x22461b02 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x225898dd skb_queue_tail +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x226df5a8 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2283c7d2 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x2286f270 fb_get_mode +EXPORT_SYMBOL vmlinux 0x228f64be fb_set_var +EXPORT_SYMBOL vmlinux 0x229548c4 iget5_locked +EXPORT_SYMBOL vmlinux 0x22a4a7a4 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22c5475e scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x23058716 agp_put_bridge +EXPORT_SYMBOL vmlinux 0x230ea68c xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x231efe84 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x23325b2a neigh_table_clear +EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL vmlinux 0x233ec932 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x23411cd9 netdev_update_features +EXPORT_SYMBOL vmlinux 0x234945a1 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x234a5669 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x23802584 sock_create_lite +EXPORT_SYMBOL vmlinux 0x238f133a phy_connect +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c7d776 blk_delay_queue +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x23dfab76 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x241ce7a5 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x242935da param_ops_bint +EXPORT_SYMBOL vmlinux 0x242b1986 nd_iostat_end +EXPORT_SYMBOL vmlinux 0x24347804 vme_init_bridge +EXPORT_SYMBOL vmlinux 0x2435dc0d netif_receive_skb +EXPORT_SYMBOL vmlinux 0x2438f1e7 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x2440d3d6 mach_powernv +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x244dcf73 mpage_readpage +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2460912f dev_mc_flush +EXPORT_SYMBOL vmlinux 0x246a7fed tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x246dd6e6 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x24736335 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x247c09eb blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x24855cba __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x249c278e vm_map_ram +EXPORT_SYMBOL vmlinux 0x249c4f92 tcp_proc_register +EXPORT_SYMBOL vmlinux 0x24b09bd2 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x24b12678 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x24c25e4f memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0x24cb42ad ip_do_fragment +EXPORT_SYMBOL vmlinux 0x24e94895 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x24f00380 ida_init +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250a211b compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0x25134f95 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x252d7294 dump_page +EXPORT_SYMBOL vmlinux 0x2546d479 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x259316a0 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x25a8d34c pci_add_resource +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x261bd83e user_path_at_empty +EXPORT_SYMBOL vmlinux 0x2625809f md_write_start +EXPORT_SYMBOL vmlinux 0x2630e799 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x264f58f9 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x265ea528 elv_rb_del +EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update +EXPORT_SYMBOL vmlinux 0x2670a756 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x26827da3 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x269a3e39 vga_put +EXPORT_SYMBOL vmlinux 0x26c7cd3f of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x26cb44a8 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26e7f46f uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x26fc453a truncate_pagecache +EXPORT_SYMBOL vmlinux 0x271df015 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x27350eba blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x27502814 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x27646df3 start_thread +EXPORT_SYMBOL vmlinux 0x2770653b write_inode_now +EXPORT_SYMBOL vmlinux 0x2771d7ff ida_get_new_above +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x278ca642 do_splice_direct +EXPORT_SYMBOL vmlinux 0x278fe2a0 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x27a0c76f dquot_operations +EXPORT_SYMBOL vmlinux 0x27aa5c02 put_io_context +EXPORT_SYMBOL vmlinux 0x27b2c44e pci_assign_resource +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27bda1ff cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x27d16f0c sync_filesystem +EXPORT_SYMBOL vmlinux 0x27d88693 __find_get_block +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27e3fdd4 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x28166464 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x28171277 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x281c4aec jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x28318305 snprintf +EXPORT_SYMBOL vmlinux 0x28483828 inet6_getname +EXPORT_SYMBOL vmlinux 0x28532386 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x285e7675 cdev_del +EXPORT_SYMBOL vmlinux 0x2891e649 blk_register_region +EXPORT_SYMBOL vmlinux 0x289db3ee idr_remove +EXPORT_SYMBOL vmlinux 0x289e0914 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28a3ed9a free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x28a7beba __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x28abfe6e scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x28b05371 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x28d74d8f irq_to_desc +EXPORT_SYMBOL vmlinux 0x28dffda7 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x2912d85a vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x2929cc75 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0x292a4f05 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0x293477ac simple_link +EXPORT_SYMBOL vmlinux 0x293e00e6 mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x295cab95 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x296c1155 compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x2995b551 replace_mount_options +EXPORT_SYMBOL vmlinux 0x299baf64 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x29b11b14 dev_alert +EXPORT_SYMBOL vmlinux 0x29dc3a26 single_release +EXPORT_SYMBOL vmlinux 0x29edd8c3 rtas_online_cpus_mask +EXPORT_SYMBOL vmlinux 0x2a074712 netdev_notice +EXPORT_SYMBOL vmlinux 0x2a0ec832 get_agp_version +EXPORT_SYMBOL vmlinux 0x2a1434b5 dst_discard_out +EXPORT_SYMBOL vmlinux 0x2a17ef11 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x2a1b3c73 fb_show_logo +EXPORT_SYMBOL vmlinux 0x2a292d80 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x2a2e4156 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a378c52 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a4d3bb3 unlock_rename +EXPORT_SYMBOL vmlinux 0x2a4edd7a backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x2a626cb1 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x2a882b18 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x2a9c4c34 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x2ab5d33a vfs_getattr +EXPORT_SYMBOL vmlinux 0x2ac09dd5 __nla_put +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ad624c7 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x2adbb4f4 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0x2ade477e compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b2ead30 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x2b35a732 sock_register +EXPORT_SYMBOL vmlinux 0x2b36950e pci_bus_type +EXPORT_SYMBOL vmlinux 0x2b3f5a9e md_unregister_thread +EXPORT_SYMBOL vmlinux 0x2b4991ec xmon +EXPORT_SYMBOL vmlinux 0x2b8a7bc9 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x2b8c4f43 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2ba9c190 inet_add_offload +EXPORT_SYMBOL vmlinux 0x2bf5d498 phy_disconnect +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c32a87f blkdev_put +EXPORT_SYMBOL vmlinux 0x2c6cdaf3 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x2c70c7d9 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x2c7af7a2 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout +EXPORT_SYMBOL vmlinux 0x2c852d59 fb_deferred_io_mmap +EXPORT_SYMBOL vmlinux 0x2c8fd9f4 genl_notify +EXPORT_SYMBOL vmlinux 0x2cbe78e1 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x2ccdc20d get_super +EXPORT_SYMBOL vmlinux 0x2cd735bd get_gendisk +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x2d0fad21 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d2481b8 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d423bb9 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x2d4766b3 mntget +EXPORT_SYMBOL vmlinux 0x2d60176d dquot_release +EXPORT_SYMBOL vmlinux 0x2d618a40 account_page_redirty +EXPORT_SYMBOL vmlinux 0x2d8a355f pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x2da1d0d9 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x2dad76c5 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x2db1e0c6 dql_init +EXPORT_SYMBOL vmlinux 0x2db58eff blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x2db5f616 I_BDEV +EXPORT_SYMBOL vmlinux 0x2dc1958b __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x2dcbe6a2 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x2dd4ced6 vm_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x2ddcb786 set_security_override +EXPORT_SYMBOL vmlinux 0x2df0fab6 __init_rwsem +EXPORT_SYMBOL vmlinux 0x2dff869f vio_register_device_node +EXPORT_SYMBOL vmlinux 0x2e012cdf blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on +EXPORT_SYMBOL vmlinux 0x2e12a93b ibmebus_request_irq +EXPORT_SYMBOL vmlinux 0x2e1aece2 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e35dbfc blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x2e3e6e4b end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x2e4a5186 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x2e66fbb0 tcp_req_err +EXPORT_SYMBOL vmlinux 0x2ec2980c dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x2ee57601 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x2ef06736 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f08881d devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x2f23555c tso_build_data +EXPORT_SYMBOL vmlinux 0x2f287f0d copy_to_user +EXPORT_SYMBOL vmlinux 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL vmlinux 0x2f33bb9d get_fs_type +EXPORT_SYMBOL vmlinux 0x2f37698e __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x2f644f57 put_disk +EXPORT_SYMBOL vmlinux 0x2f7037b3 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x2f95aca2 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x2f9c028e pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x2fae96de rtas_data_buf_lock +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fc32668 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x2fc71777 radix__local_flush_tlb_mm +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe69061 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x2fec553e prepare_binprm +EXPORT_SYMBOL vmlinux 0x2ff23b41 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x2ffc108c misc_deregister +EXPORT_SYMBOL vmlinux 0x2ffd2cda gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x300c741a eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x30209f0c dev_set_group +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x303b62aa mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x30570d91 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x307bbf6a phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3090818f ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x30937c5a gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id +EXPORT_SYMBOL vmlinux 0x30c4e640 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x30e723b1 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x30e81e19 pskb_extract +EXPORT_SYMBOL vmlinux 0x30ebc0c7 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x31074849 compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x310f02ec memremap +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x31497b1f d_genocide +EXPORT_SYMBOL vmlinux 0x315c247f sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x3171c354 node_data +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x3186d123 md_reload_sb +EXPORT_SYMBOL vmlinux 0x319a9abb sg_miter_stop +EXPORT_SYMBOL vmlinux 0x31c5716a pci_write_vpd +EXPORT_SYMBOL vmlinux 0x31c5833f zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x31cb7264 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x31cc1412 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x31cd7d3f xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x31cd995b store_fp_state +EXPORT_SYMBOL vmlinux 0x31d7a7d7 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x31e27b94 submit_bio +EXPORT_SYMBOL vmlinux 0x321c5f08 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x321eea47 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x32218679 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x32460973 vio_enable_interrupts +EXPORT_SYMBOL vmlinux 0x325035e7 dev_add_pack +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x325970c0 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x3272f98d pid_task +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x3288456d register_filesystem +EXPORT_SYMBOL vmlinux 0x3294edbf filemap_fault +EXPORT_SYMBOL vmlinux 0x32995e56 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x32998e84 sock_create_kern +EXPORT_SYMBOL vmlinux 0x32b6bfd9 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x32d1e990 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32e59f44 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x33050e90 __f_setown +EXPORT_SYMBOL vmlinux 0x330f6d43 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x333add29 tty_hangup +EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x3340a718 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x3343494a seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x334d508c cfb_fillrect +EXPORT_SYMBOL vmlinux 0x33597afb generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x3372b4d7 skb_copy +EXPORT_SYMBOL vmlinux 0x33748144 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x33767922 devm_memunmap +EXPORT_SYMBOL vmlinux 0x33914593 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x33b844b7 backlight_device_register +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33bcdeb5 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x33bdfaac uart_get_divisor +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33d04ef3 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x33d0c9e7 setattr_copy +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f577cb ps2_handle_response +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x34175839 mmc_can_reset +EXPORT_SYMBOL vmlinux 0x3430ba08 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x3432fa41 __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x343d1add __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x344dbb10 blk_start_request +EXPORT_SYMBOL vmlinux 0x345c8916 strict_msr_control +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x346bfffd inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x34771478 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x347d5a9c from_kprojid +EXPORT_SYMBOL vmlinux 0x34915c7d devm_ioport_map +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a88d94 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x34a9f1ee vm_zone_stat +EXPORT_SYMBOL vmlinux 0x34b29585 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x34c7185e tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x34cdb8e1 set_bh_page +EXPORT_SYMBOL vmlinux 0x34d5ef5b of_translate_address +EXPORT_SYMBOL vmlinux 0x34dbcf5f inet_gso_segment +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34fd39b7 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x351e5487 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x351f1280 bdgrab +EXPORT_SYMBOL vmlinux 0x352cb8c4 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x353e38d1 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x3558ffdc agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x356155af ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x35812607 generic_listxattr +EXPORT_SYMBOL vmlinux 0x3597287d security_path_unlink +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35af569b ip_ct_attach +EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 +EXPORT_SYMBOL vmlinux 0x35e09980 flex_array_put +EXPORT_SYMBOL vmlinux 0x35fafb74 set_binfmt +EXPORT_SYMBOL vmlinux 0x3601c857 twl6040_power +EXPORT_SYMBOL vmlinux 0x36075706 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x361028b6 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x361402f4 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy +EXPORT_SYMBOL vmlinux 0x362c552e kthread_stop +EXPORT_SYMBOL vmlinux 0x362c841f __devm_request_region +EXPORT_SYMBOL vmlinux 0x362e4c4e pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x362fca2c param_get_ulong +EXPORT_SYMBOL vmlinux 0x365867f3 param_ops_byte +EXPORT_SYMBOL vmlinux 0x3668fd48 flex_array_free_parts +EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy +EXPORT_SYMBOL vmlinux 0x3671b7bc iget_locked +EXPORT_SYMBOL vmlinux 0x367a5177 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x36817cf0 param_get_bool +EXPORT_SYMBOL vmlinux 0x3695edda request_resource +EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36c9a168 pnv_cxl_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0x36dbb2fd scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x36dc5244 finish_no_open +EXPORT_SYMBOL vmlinux 0x36f3c0e4 alloc_disk +EXPORT_SYMBOL vmlinux 0x36f6b167 vfs_statfs +EXPORT_SYMBOL vmlinux 0x370a8205 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport +EXPORT_SYMBOL vmlinux 0x3725893a radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x372ee9b4 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x37344510 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x3735b606 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x37383edd rtas_get_power_level +EXPORT_SYMBOL vmlinux 0x3741d628 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x3743f495 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3745be09 poll_freewait +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x375e904d blk_start_queue_async +EXPORT_SYMBOL vmlinux 0x37613521 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x377f2d9f tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x3781b9b4 nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x378afe79 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x37abad6a cdev_init +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c58c18 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x37f4d90a netlink_unicast +EXPORT_SYMBOL vmlinux 0x37fedc20 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x383e8e4c param_set_short +EXPORT_SYMBOL vmlinux 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x3853d51b vio_cmo_set_dev_desired +EXPORT_SYMBOL vmlinux 0x3859b275 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x38651077 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x38939a12 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x389d3b2f pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x38a71029 eth_header_cache +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b0a6d1 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x38b825d1 idr_replace +EXPORT_SYMBOL vmlinux 0x38ca5711 __block_write_begin +EXPORT_SYMBOL vmlinux 0x38e9d477 tty_check_change +EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios +EXPORT_SYMBOL vmlinux 0x39284bce elevator_init +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x39762686 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39bb3fef sk_busy_loop +EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x3a2aee70 vfs_readv +EXPORT_SYMBOL vmlinux 0x3a4dcf10 napi_disable +EXPORT_SYMBOL vmlinux 0x3a4de076 cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x3a5623fd tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x3a563f02 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x3a6e5956 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x3a6ff79a mmc_free_host +EXPORT_SYMBOL vmlinux 0x3a8c76cd d_splice_alias +EXPORT_SYMBOL vmlinux 0x3a8d8605 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3ac18329 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x3accdcb5 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x3b3b3683 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x3b4454ad i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x3b4514d5 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x3b953a70 allocate_resource +EXPORT_SYMBOL vmlinux 0x3ba2d084 uart_resume_port +EXPORT_SYMBOL vmlinux 0x3bac6d8c dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x3bc49da4 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x3bd58cc7 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x3bffc1ee wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x3c051de0 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c36f93e rtas +EXPORT_SYMBOL vmlinux 0x3c3b91fc ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c89c032 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x3ca2e5b5 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x3cb41ba5 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init +EXPORT_SYMBOL vmlinux 0x3cc75e47 vme_dma_request +EXPORT_SYMBOL vmlinux 0x3cc9af20 nf_register_hook +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ceaeff9 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x3cf0babc ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x3d52203c of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x3d5d5937 dm_io +EXPORT_SYMBOL vmlinux 0x3d66508b eth_type_trans +EXPORT_SYMBOL vmlinux 0x3d6939e8 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x3dae0395 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3de6088f mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x3dec7047 srp_reconnect_rport +EXPORT_SYMBOL vmlinux 0x3dfa2d42 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3dfe81f5 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x3e20db4a kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x3e2286cd __radix_tree_insert +EXPORT_SYMBOL vmlinux 0x3e3a32c2 seq_release +EXPORT_SYMBOL vmlinux 0x3e48de92 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x3e4df66e dcb_setapp +EXPORT_SYMBOL vmlinux 0x3e614b68 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x3e7f1199 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x3e88cd11 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x3e8e9eca lock_page_memcg +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f0961fb iov_iter_zero +EXPORT_SYMBOL vmlinux 0x3f222613 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f5c6471 del_timer_sync +EXPORT_SYMBOL vmlinux 0x3f6d71ac __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x3f762027 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x3fcf6585 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x3fde387e path_put +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ff20139 cdrom_open +EXPORT_SYMBOL vmlinux 0x3ff8e495 lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x40010c65 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x402f1c2d dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x40431d29 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x40573102 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x405d7825 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x407ab730 vfs_setpos +EXPORT_SYMBOL vmlinux 0x407b3f7f __cpu_active_mask +EXPORT_SYMBOL vmlinux 0x407b408d del_gendisk +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x4097cad0 file_remove_privs +EXPORT_SYMBOL vmlinux 0x409db1e7 __kernel_write +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b5ff6f block_invalidatepage +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40efa856 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x410d0949 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x41135938 dm_get_device +EXPORT_SYMBOL vmlinux 0x41288716 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x413b17c9 __free_pages +EXPORT_SYMBOL vmlinux 0x414343a3 of_match_node +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x41571efd jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x4159198b __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x4159c38f ioremap_wc +EXPORT_SYMBOL vmlinux 0x4166d3ce elv_register_queue +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41b2e185 init_task +EXPORT_SYMBOL vmlinux 0x41b3f0fc touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x41bbfb84 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x41c941a2 fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x42038032 tcf_hash_create +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x422c0361 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x423ac327 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x42782819 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x4280a076 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x4290dbdd clone_cred +EXPORT_SYMBOL vmlinux 0x429b902b tcp_parse_options +EXPORT_SYMBOL vmlinux 0x42a492da mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x42ac8859 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x42ac8ec5 pnv_phb_to_cxl_mode +EXPORT_SYMBOL vmlinux 0x42bfb185 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x42db2111 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4306d457 devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x430859d1 register_qdisc +EXPORT_SYMBOL vmlinux 0x430d97a7 vc_resize +EXPORT_SYMBOL vmlinux 0x431cf79a rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x432b0081 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x433b6e2b kfree_skb +EXPORT_SYMBOL vmlinux 0x433f3105 netdev_alert +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x43695c28 tcp_filter +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x437802c6 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all +EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x43bd2c99 __sb_end_write +EXPORT_SYMBOL vmlinux 0x43be882e ata_port_printk +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x4416a000 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0x4436a9b0 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x44484f79 flush_signals +EXPORT_SYMBOL vmlinux 0x4452039a crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup +EXPORT_SYMBOL vmlinux 0x449703fe dev_printk_emit +EXPORT_SYMBOL vmlinux 0x44aa6afb dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x44afc031 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x44b4bfc9 devm_release_resource +EXPORT_SYMBOL vmlinux 0x44b5ee9a kasprintf +EXPORT_SYMBOL vmlinux 0x44dabac5 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x44e19089 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion +EXPORT_SYMBOL vmlinux 0x44f07ddd mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x44f7366b filp_open +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x45040966 eth_header_parse +EXPORT_SYMBOL vmlinux 0x450bd37e __pmd_index_size +EXPORT_SYMBOL vmlinux 0x453b0c7f param_set_long +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45590bfc devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x456b2067 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x456ef0b1 unregister_console +EXPORT_SYMBOL vmlinux 0x4572bbb5 dev_load +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x459002ef make_kuid +EXPORT_SYMBOL vmlinux 0x45a55ec8 __iounmap +EXPORT_SYMBOL vmlinux 0x45c3b235 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x45d93630 import_iovec +EXPORT_SYMBOL vmlinux 0x45e5685e mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x45ed0066 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x45f4327b redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock +EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user +EXPORT_SYMBOL vmlinux 0x463314d3 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x464306cd is_bad_inode +EXPORT_SYMBOL vmlinux 0x4647e308 vga_con +EXPORT_SYMBOL vmlinux 0x464aa94a cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x4657ebaa fence_context_alloc +EXPORT_SYMBOL vmlinux 0x465b7242 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x4668fe3d blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x4674ec42 __pgd_val_bits +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x468b0f2c gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x46a0170e flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0x46bdf1ab __register_nls +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46c4fb20 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x46dab800 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x46e2ef8f pci_scan_bus +EXPORT_SYMBOL vmlinux 0x46e47b30 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x47095651 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x471f3271 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x472e6df8 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x47371ad5 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x473cf4ba unregister_filesystem +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x474462cc __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x4759cfa2 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x475c52e0 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x475dedd9 iget_failed +EXPORT_SYMBOL vmlinux 0x476187e8 blkdev_get +EXPORT_SYMBOL vmlinux 0x4771e465 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x4773ffbb __mutex_init +EXPORT_SYMBOL vmlinux 0x478f1f4d i2c_master_send +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47d12963 netdev_err +EXPORT_SYMBOL vmlinux 0x47d211f6 ilookup +EXPORT_SYMBOL vmlinux 0x47ec3fd0 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x47f763df param_get_long +EXPORT_SYMBOL vmlinux 0x4816c6a3 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x481d99fb icmp_send +EXPORT_SYMBOL vmlinux 0x48242ebf radix__local_flush_tlb_page +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x482e4f86 try_module_get +EXPORT_SYMBOL vmlinux 0x4836ab7d no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x483b1f7c netif_skb_features +EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x48999390 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x48b05a6f agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48cc4cc6 register_console +EXPORT_SYMBOL vmlinux 0x48e1b174 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x48f88ba5 input_unregister_device +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x49211fcf phy_stop +EXPORT_SYMBOL vmlinux 0x4933c37e phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x4956b2f1 dst_alloc +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x496319e7 md_check_recovery +EXPORT_SYMBOL vmlinux 0x4987780d mach_pseries +EXPORT_SYMBOL vmlinux 0x498ae5ce input_open_device +EXPORT_SYMBOL vmlinux 0x498f4b39 arp_create +EXPORT_SYMBOL vmlinux 0x499bfc6d __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x49b04622 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49c778f4 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x49f2c895 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x49fb5dd1 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x4a1646e8 param_set_bool +EXPORT_SYMBOL vmlinux 0x4a38b698 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x4a82d08f dquot_enable +EXPORT_SYMBOL vmlinux 0x4aad92ff invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x4aaebb5f mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x4aafbc14 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x4ab2bd00 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x4ab73184 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x4ac54dd3 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x4ad2a57a opal_event_request +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b026176 register_md_personality +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b3433d8 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x4b473d30 tty_port_init +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b611515 simple_dname +EXPORT_SYMBOL vmlinux 0x4b6e4309 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x4b77af23 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x4b8326ff ida_remove +EXPORT_SYMBOL vmlinux 0x4b8f3307 kernel_bind +EXPORT_SYMBOL vmlinux 0x4b9db0ee sock_i_uid +EXPORT_SYMBOL vmlinux 0x4ba2b75c dev_addr_init +EXPORT_SYMBOL vmlinux 0x4bac6770 pci_get_device +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4be3bb66 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x4be49385 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x4bed99b3 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c423e42 simple_get_link +EXPORT_SYMBOL vmlinux 0x4c4a8832 cad_pid +EXPORT_SYMBOL vmlinux 0x4c60f937 udp_prot +EXPORT_SYMBOL vmlinux 0x4c763656 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x4c8eba6e inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x4c978e4d fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x4c994ad8 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf +EXPORT_SYMBOL vmlinux 0x4cb81017 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x4cd0ae7e skb_seq_read +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4d310dcb get_pci_dma_ops +EXPORT_SYMBOL vmlinux 0x4d5084c0 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x4d63ffa3 kernel_listen +EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x4d791953 mempool_resize +EXPORT_SYMBOL vmlinux 0x4d7ced1e mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x4d8514a2 pci_bus_get +EXPORT_SYMBOL vmlinux 0x4d892398 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x4d94a2c4 pnv_cxl_release_hwirqs +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4db7af3b iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x4dc4d14d __put_page +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4de8a4ff generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4e013df7 fput +EXPORT_SYMBOL vmlinux 0x4e1b2d69 redraw_screen +EXPORT_SYMBOL vmlinux 0x4e2d9615 clear_nlink +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e3fb9a0 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x4e5fcdfa dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6da59e freezing_slow_path +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e757a68 page_get_link +EXPORT_SYMBOL vmlinux 0x4ebc686b nvm_get_bb_tbl +EXPORT_SYMBOL vmlinux 0x4ed30e9f devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0x4ed75b1d serio_open +EXPORT_SYMBOL vmlinux 0x4eec020a __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x4ef566a6 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x4f01d607 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x4f0caa23 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f3bdca7 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f48f8e8 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f79dd6e nla_reserve +EXPORT_SYMBOL vmlinux 0x4f81a0a5 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x4f843080 blk_end_request_all +EXPORT_SYMBOL vmlinux 0x4fafbabf mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x4fb1537d sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x4fbae6a6 uuid_le_to_bin +EXPORT_SYMBOL vmlinux 0x4fc10c0b of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x4fc9e3f9 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x4fd1a02f netdev_warn +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x50034d06 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x50050178 netif_napi_del +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x501b53da dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x506c3194 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x5079c9d7 __pte_index_size +EXPORT_SYMBOL vmlinux 0x5084d068 compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x50d84c86 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x50e666ef fscrypt_free_filename +EXPORT_SYMBOL vmlinux 0x50fe3740 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x51136397 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x51251f44 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x512e356e pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x5138873b kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x515145f4 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x519a9e84 neigh_for_each +EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait +EXPORT_SYMBOL vmlinux 0x51a0bd76 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x51c17c4b swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x51cdefcb scsi_block_requests +EXPORT_SYMBOL vmlinux 0x51da64cf simple_transaction_release +EXPORT_SYMBOL vmlinux 0x51e29fb7 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x51f1b139 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x51f982ec blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x5209bce5 dev_activate +EXPORT_SYMBOL vmlinux 0x520d5789 would_dump +EXPORT_SYMBOL vmlinux 0x5210a3af tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x523c6f66 netif_napi_add +EXPORT_SYMBOL vmlinux 0x5247fe4c of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0x524a7127 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x52548bf2 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x525a78ca inet6_protos +EXPORT_SYMBOL vmlinux 0x5282e080 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x5287baf8 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x528f8b11 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x52921373 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x529ad092 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x52aaadd4 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x52b59ba6 inet_gro_complete +EXPORT_SYMBOL vmlinux 0x52c42376 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x52d3199d blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x53066289 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x5308e350 __vmalloc_start +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x533684ad swake_up +EXPORT_SYMBOL vmlinux 0x53532ca4 sync_inode +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x535d0e78 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x53612d20 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x536f754b ip_getsockopt +EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin +EXPORT_SYMBOL vmlinux 0x5392fa8d rtnl_notify +EXPORT_SYMBOL vmlinux 0x539996f6 genphy_suspend +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53aace7a iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x53b0e1ea mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x53e0e859 netlink_set_err +EXPORT_SYMBOL vmlinux 0x53e5e21d pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x53e78bcf param_get_byte +EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns +EXPORT_SYMBOL vmlinux 0x53f36ef8 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x53f94248 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x5412c7c7 up +EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5485cd41 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x54884503 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x549e6cb5 fscrypt_d_ops +EXPORT_SYMBOL vmlinux 0x54a0b8ed of_parse_phandle +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54b24fd6 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54c6379a kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0x54d45d30 nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x54d51777 md_update_sb +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54ea496f nd_integrity_init +EXPORT_SYMBOL vmlinux 0x54ed6e37 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x54ff0d2e rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x5508c25c tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x55240796 srp_start_tl_fail_timers +EXPORT_SYMBOL vmlinux 0x5529ab68 submit_bh +EXPORT_SYMBOL vmlinux 0x5534218c kernel_connect +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x5543ca8e pcim_enable_device +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x554cb754 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x555b63fe kset_register +EXPORT_SYMBOL vmlinux 0x55620b27 is_nd_btt +EXPORT_SYMBOL vmlinux 0x5562a091 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x5568c553 complete +EXPORT_SYMBOL vmlinux 0x55732e9d phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x55909b06 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55d7ff82 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x55e0b715 __skb_csum_offload_chk +EXPORT_SYMBOL vmlinux 0x55f0afcc kern_path +EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node +EXPORT_SYMBOL vmlinux 0x5615be52 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x566acbec nobh_writepage +EXPORT_SYMBOL vmlinux 0x56845a7e locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x56a53e90 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x56a97473 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL vmlinux 0x56c2b95b rtas_progress +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56d09511 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x56eaae4c fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x56eb83ae of_device_unregister +EXPORT_SYMBOL vmlinux 0x56f6c7de lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x572647d6 get_mce_fault_addr +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x5733bb4c skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x5733dc16 igrab +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x575cb416 path_is_under +EXPORT_SYMBOL vmlinux 0x575df3c9 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x57649bd7 seq_open_private +EXPORT_SYMBOL vmlinux 0x5767020d pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x578f8585 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57bfa80d pskb_expand_head +EXPORT_SYMBOL vmlinux 0x57d611f7 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x57d6733c dquot_alloc +EXPORT_SYMBOL vmlinux 0x57e40e57 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x57e4245b scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x57e45350 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x57e767f0 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x57f3c3d5 set_page_dirty +EXPORT_SYMBOL vmlinux 0x57fd6aac pnv_cxl_alloc_hwirq_ranges +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x58383baf xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x583b2e7d blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x5852dc49 vio_unregister_device +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x58b14c16 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58e0cfb9 __bread_gfp +EXPORT_SYMBOL vmlinux 0x58e1b00e param_set_copystring +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58f6f427 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x58fc7e20 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x5900012d skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x59054ae5 __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x5930423a sock_release +EXPORT_SYMBOL vmlinux 0x59370b3e vme_slave_request +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x59545aa0 sock_create +EXPORT_SYMBOL vmlinux 0x5958e71c ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page +EXPORT_SYMBOL vmlinux 0x59884b11 kernel_accept +EXPORT_SYMBOL vmlinux 0x598b51bd nvm_put_blk +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59aca172 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x59b3378a completion_done +EXPORT_SYMBOL vmlinux 0x59c2c2d8 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x59e42dc2 request_key_async +EXPORT_SYMBOL vmlinux 0x5a025f7b arch_local_irq_restore +EXPORT_SYMBOL vmlinux 0x5a0aaa12 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a0e2e7d pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x5a253642 __inet_hash +EXPORT_SYMBOL vmlinux 0x5a3ae548 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x5a66a58c gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x5a66ee8e mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x5a6e5360 devm_gpio_request +EXPORT_SYMBOL vmlinux 0x5a7ab968 kill_pid +EXPORT_SYMBOL vmlinux 0x5a8277f7 __put_cred +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5aae0b5a bdevname +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b0f4e75 lookup_one_len +EXPORT_SYMBOL vmlinux 0x5b169503 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x5b247e8c __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x5b43f1f1 rtas_service_present +EXPORT_SYMBOL vmlinux 0x5b5067e3 key_type_keyring +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b771ce3 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x5b7fcd6f inet_csk_accept +EXPORT_SYMBOL vmlinux 0x5b84e907 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x5b928451 read_cache_pages +EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x5bb53f61 __check_sticky +EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit +EXPORT_SYMBOL vmlinux 0x5bc43a7f __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x5be5334a mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x5bed0f37 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x5bf3e030 tcf_hashinfo_destroy +EXPORT_SYMBOL vmlinux 0x5bfb716a free_user_ns +EXPORT_SYMBOL vmlinux 0x5bfc04be mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x5bffe4de __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x5c13ac1f input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x5c16ed99 freeze_super +EXPORT_SYMBOL vmlinux 0x5c248d4d kern_unmount +EXPORT_SYMBOL vmlinux 0x5c2ecf4d pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x5c36dfe1 xattr_full_name +EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x5c388ea5 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x5c4344d1 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x5c6072d0 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x5c71b121 netdev_features_change +EXPORT_SYMBOL vmlinux 0x5c815829 blk_put_queue +EXPORT_SYMBOL vmlinux 0x5c8e5e69 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x5c9077fc ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x5c942219 scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x5c9738bd mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x5c9b4f12 blk_start_queue +EXPORT_SYMBOL vmlinux 0x5ca702e0 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x5caf5a68 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x5cc9eff3 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x5cdbca65 ppp_input +EXPORT_SYMBOL vmlinux 0x5cddb4ec blk_recount_segments +EXPORT_SYMBOL vmlinux 0x5ce4c60c mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x5cf30e10 __debugger_ipi +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfc92f0 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x5d0e2b17 mpage_writepages +EXPORT_SYMBOL vmlinux 0x5d11ed27 blk_init_queue +EXPORT_SYMBOL vmlinux 0x5d254b1c dma_async_device_register +EXPORT_SYMBOL vmlinux 0x5d2c367b pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x5d4a8320 kvasprintf +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d76d9c7 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x5d9720cd nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x5ddaa637 d_exact_alias +EXPORT_SYMBOL vmlinux 0x5ddc8025 inet_sendpage +EXPORT_SYMBOL vmlinux 0x5ded4d39 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x5e0b1f6e phy_device_register +EXPORT_SYMBOL vmlinux 0x5e28bddf poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x5e336987 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up +EXPORT_SYMBOL vmlinux 0x5e3b7924 free_netdev +EXPORT_SYMBOL vmlinux 0x5e3d642d of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x5e40ebe3 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x5e87e95f call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb9be4a fb_find_mode +EXPORT_SYMBOL vmlinux 0x5ecba62d vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5eddb14c radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x5eddb860 bio_init +EXPORT_SYMBOL vmlinux 0x5eddb914 lockref_put_return +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f1236cb sk_free +EXPORT_SYMBOL vmlinux 0x5f21273e of_dev_put +EXPORT_SYMBOL vmlinux 0x5f35b87b netdev_info +EXPORT_SYMBOL vmlinux 0x5f3efedb __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x5f670038 __bforget +EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base +EXPORT_SYMBOL vmlinux 0x5f9a0e48 bd_set_size +EXPORT_SYMBOL vmlinux 0x5fc20614 vio_h_cop_sync +EXPORT_SYMBOL vmlinux 0x5fc43ae2 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fe6a3a1 d_path +EXPORT_SYMBOL vmlinux 0x5ff186cc crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60214e7b jbd2_journal_inode_add_write +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x603923f5 proc_mkdir +EXPORT_SYMBOL vmlinux 0x605f861d phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x6078e574 pci_set_vpd_size +EXPORT_SYMBOL vmlinux 0x6084fe9a nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60c62cd7 __invalidate_device +EXPORT_SYMBOL vmlinux 0x60d38339 put_tty_driver +EXPORT_SYMBOL vmlinux 0x60fc6644 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x616cd9ca genphy_config_init +EXPORT_SYMBOL vmlinux 0x61847242 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61af48b8 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61d45e70 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x61ebc499 udp_set_csum +EXPORT_SYMBOL vmlinux 0x61eeb537 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb +EXPORT_SYMBOL vmlinux 0x62042366 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x6210a1df unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x623ce1a3 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62894f12 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x62a6845b dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x62aa35c4 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x62bd3722 dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x63189716 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x632a4adf get_thermal_instance +EXPORT_SYMBOL vmlinux 0x63396aec __debugger_break_match +EXPORT_SYMBOL vmlinux 0x634e9b92 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x639cdb09 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x63a2f7df pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63aad622 input_register_handle +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63dc5610 clear_inode +EXPORT_SYMBOL vmlinux 0x63e0d51c __page_symlink +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x63fee688 simple_readpage +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x64183ccf blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x641a0b7a dev_addr_flush +EXPORT_SYMBOL vmlinux 0x64215858 register_framebuffer +EXPORT_SYMBOL vmlinux 0x646dae67 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x6483b791 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a29238 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x64a7cf2a kernel_read +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64ccd8a9 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x64ceab21 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x64d6d7bc __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x64dd7882 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x64eebf49 tcf_register_action +EXPORT_SYMBOL vmlinux 0x64f1ccbd pci_dev_get +EXPORT_SYMBOL vmlinux 0x64f77382 init_special_inode +EXPORT_SYMBOL vmlinux 0x64ffb363 i2c_transfer +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x651e09ae key_unlink +EXPORT_SYMBOL vmlinux 0x6524b63f remap_pfn_range +EXPORT_SYMBOL vmlinux 0x652c25fe unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x654c71d4 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x659a48d3 inet_del_offload +EXPORT_SYMBOL vmlinux 0x65a1cb9e touch_atime +EXPORT_SYMBOL vmlinux 0x65a5671e inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x65b0cbed posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x65c24ae6 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0x65cc4e9b devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dbb3c2 radix__local_flush_tlb_pwc +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65ed7708 set_create_files_as +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x660b4c67 km_policy_notify +EXPORT_SYMBOL vmlinux 0x660e810e bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x6636728a tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x66425f13 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x66545c6a padata_stop +EXPORT_SYMBOL vmlinux 0x6670302a netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x66b19984 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x66bef233 icmpv6_send +EXPORT_SYMBOL vmlinux 0x66c6d31b input_inject_event +EXPORT_SYMBOL vmlinux 0x66d93d40 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x671e677b devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0x672968a5 udp_seq_open +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x674e72c6 agp_find_bridge +EXPORT_SYMBOL vmlinux 0x677b3b63 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x679328d1 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x67a2f42e devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x67aa94fd skb_insert +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67b8f424 vga_tryget +EXPORT_SYMBOL vmlinux 0x67c1fd8a vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x67d65fc2 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x67fb3221 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680c44cd flush_icache_user_range +EXPORT_SYMBOL vmlinux 0x680f7a87 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x68234e2e sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x68430e17 load_nls_default +EXPORT_SYMBOL vmlinux 0x685873c4 phy_start +EXPORT_SYMBOL vmlinux 0x685f0ac4 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit +EXPORT_SYMBOL vmlinux 0x6860e7ba tcp_poll +EXPORT_SYMBOL vmlinux 0x686183c8 nf_log_trace +EXPORT_SYMBOL vmlinux 0x68685e2c filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x6871e9e2 devm_ioremap +EXPORT_SYMBOL vmlinux 0x687546ea n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x6882a3aa netdev_emerg +EXPORT_SYMBOL vmlinux 0x688b0242 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68b5969c zero_fill_bio +EXPORT_SYMBOL vmlinux 0x68b970b9 of_device_alloc +EXPORT_SYMBOL vmlinux 0x68cd59fe lwtunnel_output +EXPORT_SYMBOL vmlinux 0x68da5d37 tty_lock +EXPORT_SYMBOL vmlinux 0x6909440b __pgd_table_size +EXPORT_SYMBOL vmlinux 0x693d855f seq_write +EXPORT_SYMBOL vmlinux 0x6950ddb9 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x696ae6c4 _dev_info +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6974e1d8 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69b20454 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x69e94e10 radix__flush_tlb_mm +EXPORT_SYMBOL vmlinux 0x69ecdd9d mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a039d38 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6a09c5cd unlock_new_inode +EXPORT_SYMBOL vmlinux 0x6a0c1039 read_dev_sector +EXPORT_SYMBOL vmlinux 0x6a2396a1 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a7590ad skb_copy_bits +EXPORT_SYMBOL vmlinux 0x6a7e452b netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x6a88eaa0 misc_register +EXPORT_SYMBOL vmlinux 0x6a8a134b dev_mc_sync +EXPORT_SYMBOL vmlinux 0x6a8fe28f param_get_invbool +EXPORT_SYMBOL vmlinux 0x6ac53e89 mmc_get_card +EXPORT_SYMBOL vmlinux 0x6ac69c09 d_instantiate +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af40efa seq_escape +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b08ce44 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b5dfe73 __debugger_bpt +EXPORT_SYMBOL vmlinux 0x6b6001f0 of_match_device +EXPORT_SYMBOL vmlinux 0x6b611b95 register_key_type +EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6b7291ed simple_open +EXPORT_SYMBOL vmlinux 0x6b9992be console_stop +EXPORT_SYMBOL vmlinux 0x6ba2b44f scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x6ba9d33c d_set_d_op +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bca1e93 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x6bd3d72d bio_clone_fast +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6bf102de mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x6bfc10f1 km_new_mapping +EXPORT_SYMBOL vmlinux 0x6c23a3f1 dget_parent +EXPORT_SYMBOL vmlinux 0x6c41f2a5 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x6c45003c inode_dio_wait +EXPORT_SYMBOL vmlinux 0x6c48572b kernel_getsockname +EXPORT_SYMBOL vmlinux 0x6c4ff80d blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x6c5844ce __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c6211a3 dev_addr_add +EXPORT_SYMBOL vmlinux 0x6c6a8bd4 put_cmsg +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c9f2569 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x6cbf85f2 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x6ce677f1 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x6ce6b64d simple_nosetlease +EXPORT_SYMBOL vmlinux 0x6ce7f25e devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x6cf2a81f nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x6d0c68df input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d159737 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x6d1f28eb jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x6d232047 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d4549f5 seq_pad +EXPORT_SYMBOL vmlinux 0x6d8a5a7f generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x6da8f6c9 pci_bus_put +EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns +EXPORT_SYMBOL vmlinux 0x6dcfe602 fscrypt_release_ctx +EXPORT_SYMBOL vmlinux 0x6de0e542 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e0c5f6f scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x6e158164 mount_ns +EXPORT_SYMBOL vmlinux 0x6e4efad4 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x6e6bd7d6 setup_new_exec +EXPORT_SYMBOL vmlinux 0x6e6e8f40 read_code +EXPORT_SYMBOL vmlinux 0x6e709cec netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x6e833a6b nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x6e8d50a9 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x6e9a448d __pte_frag_nr +EXPORT_SYMBOL vmlinux 0x6e9c6345 from_kgid +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ec83f76 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x6eca4d4f mod_timer_pending +EXPORT_SYMBOL vmlinux 0x6ef0e9cb devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0x6f243f40 audit_log +EXPORT_SYMBOL vmlinux 0x6f2db61e module_layout +EXPORT_SYMBOL vmlinux 0x6f730645 __d_lookup_done +EXPORT_SYMBOL vmlinux 0x6f7a7f35 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x6f7daea5 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x6f88da7f pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f9e85cd __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fe4a583 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x6feaa7dc lock_sock_nested +EXPORT_SYMBOL vmlinux 0x6ff2d3df __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x6ff4f026 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x7005a74d xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x70352e08 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x70393a5a blk_stop_queue +EXPORT_SYMBOL vmlinux 0x70504b8e d_set_fallthru +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x70556416 block_write_begin +EXPORT_SYMBOL vmlinux 0x70727cb7 __seq_open_private +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x7088be28 tty_devnum +EXPORT_SYMBOL vmlinux 0x7089aae7 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x7090f6bb xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x70927540 key_task_permission +EXPORT_SYMBOL vmlinux 0x70afa2bd noop_fsync +EXPORT_SYMBOL vmlinux 0x70b062bf __napi_complete +EXPORT_SYMBOL vmlinux 0x70bce858 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x70f09e1c blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x7100f996 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x71014cea cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x712035a2 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x71267505 register_cdrom +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7142a3fe phy_resume +EXPORT_SYMBOL vmlinux 0x715762da vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x715d9151 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x716d3e83 __pagevec_release +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71ae19e9 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x71f2ca94 fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x721860d8 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x72205904 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x722c8b0b pci_fixup_device +EXPORT_SYMBOL vmlinux 0x723bafa4 page_mapping +EXPORT_SYMBOL vmlinux 0x72577e6b get_monotonic_coarse64 +EXPORT_SYMBOL vmlinux 0x725afa3d agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x725fd887 nla_append +EXPORT_SYMBOL vmlinux 0x7278beec max8925_set_bits +EXPORT_SYMBOL vmlinux 0x72a1bb53 of_scan_pci_bridge +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72c98139 __arch_hweight64 +EXPORT_SYMBOL vmlinux 0x72dac0fd no_llseek +EXPORT_SYMBOL vmlinux 0x72dcaf69 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72fb7aea mpage_readpages +EXPORT_SYMBOL vmlinux 0x72fb82bd elv_rb_find +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x73186880 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x731a747a pci_io_base +EXPORT_SYMBOL vmlinux 0x7344cd8f skb_pad +EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue +EXPORT_SYMBOL vmlinux 0x73710a3e dqstats +EXPORT_SYMBOL vmlinux 0x73765ad5 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x7382731e netlink_broadcast +EXPORT_SYMBOL vmlinux 0x738a00de mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x73a2f463 param_set_ushort +EXPORT_SYMBOL vmlinux 0x73a5d6a4 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x73ae122e sock_no_getname +EXPORT_SYMBOL vmlinux 0x73b62d43 security_task_getsecid +EXPORT_SYMBOL vmlinux 0x73f85c13 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x740d8ddb proc_symlink +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x74347304 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x746241e2 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x7462b4f2 posix_test_lock +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74908d7a km_policy_expired +EXPORT_SYMBOL vmlinux 0x74998f5d gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x749ec608 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x74a053bf lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74cca2df __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x74d0e375 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74ed072b dma_direct_ops +EXPORT_SYMBOL vmlinux 0x751bbad2 __napi_schedule +EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x75388fd6 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x7557f7fa fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x75667904 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x75731214 inode_init_always +EXPORT_SYMBOL vmlinux 0x757b9281 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x75811312 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x75876c65 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x75994700 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x75a9d637 kobject_get +EXPORT_SYMBOL vmlinux 0x75aa6ca1 __kernel_virt_start +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75be6702 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x75be9386 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x75bf789c key_revoke +EXPORT_SYMBOL vmlinux 0x75e42cb9 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x75ee3313 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x76128924 dev_get_stats +EXPORT_SYMBOL vmlinux 0x76135d0d __inode_permission +EXPORT_SYMBOL vmlinux 0x761b1025 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x7627d00e copy_to_iter +EXPORT_SYMBOL vmlinux 0x76338a2b mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x766aecce devm_request_resource +EXPORT_SYMBOL vmlinux 0x766ffa66 wireless_send_event +EXPORT_SYMBOL vmlinux 0x7671c5c6 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x769d5e13 thaw_super +EXPORT_SYMBOL vmlinux 0x769fd455 udp_poll +EXPORT_SYMBOL vmlinux 0x76b3df2c add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x76b59b33 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x76c6c8d0 input_free_device +EXPORT_SYMBOL vmlinux 0x76d2e0c4 compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76e87c42 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x76f1084f blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x76f739b0 vfs_whiteout +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x7742fc33 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x775c599e vfs_llseek +EXPORT_SYMBOL vmlinux 0x775f92e6 simple_write_end +EXPORT_SYMBOL vmlinux 0x776ccc10 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x777caf3b skb_split +EXPORT_SYMBOL vmlinux 0x777cd5fb qdisc_list_del +EXPORT_SYMBOL vmlinux 0x77880316 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77ac1b96 vga_client_register +EXPORT_SYMBOL vmlinux 0x77b15f17 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c0e941 input_register_device +EXPORT_SYMBOL vmlinux 0x77d5c6d5 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x77e19d51 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x780cc326 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x7830b04f hvc_put_chars +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x78465fc2 posix_acl_init +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x78653c99 __secpath_destroy +EXPORT_SYMBOL vmlinux 0x786cae08 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x787705ab mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x78825020 blk_end_request +EXPORT_SYMBOL vmlinux 0x7893299b scsi_register +EXPORT_SYMBOL vmlinux 0x78973610 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x789f054d tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x78a35e1b nf_reinject +EXPORT_SYMBOL vmlinux 0x78a9bff8 dev_deactivate +EXPORT_SYMBOL vmlinux 0x78a9e905 _numa_mem_ +EXPORT_SYMBOL vmlinux 0x78aa99b7 datagram_poll +EXPORT_SYMBOL vmlinux 0x78b778f1 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x78c37db0 devm_free_irq +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78f496b2 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x78fc49e4 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x79164ad1 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x7917dcb6 pci_iounmap +EXPORT_SYMBOL vmlinux 0x794ec9f2 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x79608ab5 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x79a26e9c revert_creds +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79c38c12 finish_open +EXPORT_SYMBOL vmlinux 0x79ed2380 bio_split +EXPORT_SYMBOL vmlinux 0x79f9357f find_get_entry +EXPORT_SYMBOL vmlinux 0x7a3ca523 set_blocksize +EXPORT_SYMBOL vmlinux 0x7a40f2af of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a6645b7 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a6f236e mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x7a7fcde4 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x7a8411d3 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x7a8d6762 kobject_add +EXPORT_SYMBOL vmlinux 0x7a9464c9 dev_crit +EXPORT_SYMBOL vmlinux 0x7a9f4d15 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa4de7e scsi_scan_target +EXPORT_SYMBOL vmlinux 0x7ab6eb8d may_umount +EXPORT_SYMBOL vmlinux 0x7ab72831 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ac3e2e0 pci_release_regions +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ae2f078 bio_integrity_free +EXPORT_SYMBOL vmlinux 0x7aeb3cb2 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x7aed011e agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x7b0420cf kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b1d8465 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x7b26e8da mntput +EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc +EXPORT_SYMBOL vmlinux 0x7b41de22 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x7b8049b4 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x7b85275b pcim_iomap +EXPORT_SYMBOL vmlinux 0x7bb6fbf4 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x7bb756cc neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x7bc9eda4 file_path +EXPORT_SYMBOL vmlinux 0x7bcc823c netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x7bd41f07 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x7bd435cc tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x7bd8519b blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x7be2a086 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x7bfb03b2 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x7c102e62 eth_header +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc +EXPORT_SYMBOL vmlinux 0x7c36a3ad validate_sp +EXPORT_SYMBOL vmlinux 0x7c401c2d ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c52ad8f udplite_prot +EXPORT_SYMBOL vmlinux 0x7c5ca3d4 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x7c6d7fed register_sysctl +EXPORT_SYMBOL vmlinux 0x7c9291d1 csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7c9c51f4 request_firmware +EXPORT_SYMBOL vmlinux 0x7cad7df7 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cbed416 elv_add_request +EXPORT_SYMBOL vmlinux 0x7cc25a9b __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x7cd004d6 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x7cd60000 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d3fe362 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x7d530c07 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x7d5ab868 d_alloc_name +EXPORT_SYMBOL vmlinux 0x7d6476d7 simple_rmdir +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d7ecd0b scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x7d8b517f dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x7d9514c1 node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x7da7924b __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x7dab2401 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x7db6ed88 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x7dbb0620 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x7dbe2962 poll_initwait +EXPORT_SYMBOL vmlinux 0x7dc0d1a8 blk_complete_request +EXPORT_SYMBOL vmlinux 0x7dc97879 rtas_get_error_log_max +EXPORT_SYMBOL vmlinux 0x7dcdf497 drop_nlink +EXPORT_SYMBOL vmlinux 0x7dcec61b pci_request_regions +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7dfaf566 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x7e29712f security_path_rename +EXPORT_SYMBOL vmlinux 0x7e29ca93 blk_peek_request +EXPORT_SYMBOL vmlinux 0x7e485c5e netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x7e5eef39 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x7e6cb989 phy_driver_register +EXPORT_SYMBOL vmlinux 0x7e6d3848 blk_get_backing_dev_info +EXPORT_SYMBOL vmlinux 0x7e7ba3bb mdio_device_remove +EXPORT_SYMBOL vmlinux 0x7e7d4b88 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x7ea6f790 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ee9d1fc param_ops_string +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f024b85 d_alloc +EXPORT_SYMBOL vmlinux 0x7f0b822a file_update_time +EXPORT_SYMBOL vmlinux 0x7f15deec of_get_address +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7f324f4d try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7f36ae52 simple_rename +EXPORT_SYMBOL vmlinux 0x7f567062 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x7f5f5cc3 __destroy_inode +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f6d31df __neigh_event_send +EXPORT_SYMBOL vmlinux 0x7f7811d4 d_invalidate +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f870da3 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x7f96c8d2 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x7fa8c57e tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x7fbc7662 nonseekable_open +EXPORT_SYMBOL vmlinux 0x7fbe8444 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x7fd638b5 fscrypt_get_ctx +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe38f48 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x7ff425d2 inc_node_state +EXPORT_SYMBOL vmlinux 0x7ff893d1 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x7ff9b0db blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x800fb92b full_name_hash +EXPORT_SYMBOL vmlinux 0x8016654d ns_capable +EXPORT_SYMBOL vmlinux 0x80203adf bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0x8027ad2e xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x8034e7a7 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x8071d1a8 cpu_all_bits +EXPORT_SYMBOL vmlinux 0x808b9781 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x80a20860 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x80b1a8ba sockfd_lookup +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80e158e6 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x80f5fcfc netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x810519fd hashlen_string +EXPORT_SYMBOL vmlinux 0x810750d1 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x814571b6 inet_addr_type +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x81715445 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x8173b1cc simple_transaction_set +EXPORT_SYMBOL vmlinux 0x817ce354 i2c_master_recv +EXPORT_SYMBOL vmlinux 0x81858670 dump_emit +EXPORT_SYMBOL vmlinux 0x8190420f truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x819073b8 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x819e635d max8998_read_reg +EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x81c0a84f rtas_set_indicator +EXPORT_SYMBOL vmlinux 0x81c79d98 ppp_input_error +EXPORT_SYMBOL vmlinux 0x81db69ab uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e36ab1 vfs_read +EXPORT_SYMBOL vmlinux 0x81e55bce __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x81eef7f6 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x81f5b38a dev_close +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x821559d6 __vmalloc_end +EXPORT_SYMBOL vmlinux 0x82156b4d skb_clone +EXPORT_SYMBOL vmlinux 0x822bc005 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x822e86d9 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x824aac80 sock_no_bind +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x82788256 kdb_current_task +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x8294ea1f __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x829b9868 param_ops_bool +EXPORT_SYMBOL vmlinux 0x82b669b8 page_symlink +EXPORT_SYMBOL vmlinux 0x82d6b0d0 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x82e7f878 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x82fb2624 vio_unregister_driver +EXPORT_SYMBOL vmlinux 0x8308caf6 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x83187cc3 pci_enable_msix +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x835b7f8b disk_stack_limits +EXPORT_SYMBOL vmlinux 0x8366db33 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x83825ec0 single_open_size +EXPORT_SYMBOL vmlinux 0x83904bd6 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x8391515c mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83b1708a d_delete +EXPORT_SYMBOL vmlinux 0x83b4f0f4 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x83ba98e3 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83d16f0b param_get_int +EXPORT_SYMBOL vmlinux 0x83d4f9b9 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x83dfcf0d blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x83e0016d jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x83f794e4 done_path_create +EXPORT_SYMBOL vmlinux 0x84416fa5 scsi_host_put +EXPORT_SYMBOL vmlinux 0x84571096 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x8485dc88 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x849e5a43 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x849fe807 csum_and_copy_from_user +EXPORT_SYMBOL vmlinux 0x84b08cf4 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock +EXPORT_SYMBOL vmlinux 0x84eb4437 rps_needed +EXPORT_SYMBOL vmlinux 0x84f5785b inode_get_bytes +EXPORT_SYMBOL vmlinux 0x84f8f882 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x8511385d dev_addr_del +EXPORT_SYMBOL vmlinux 0x85128e7d qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x85234810 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x854044b4 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x855f2579 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x85625b15 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85759e46 __frontswap_store +EXPORT_SYMBOL vmlinux 0x8575ec60 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x85825898 add_timer +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x8597eb47 plpar_hcall +EXPORT_SYMBOL vmlinux 0x85a80035 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x85b5427f mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85c3ba94 udp_ioctl +EXPORT_SYMBOL vmlinux 0x85c69dfd vme_register_bridge +EXPORT_SYMBOL vmlinux 0x85cd79c2 elevator_exit +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e67519 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x85e67f81 ll_rw_block +EXPORT_SYMBOL vmlinux 0x85eb8100 page_readlink +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x8604cac8 __alloc_skb +EXPORT_SYMBOL vmlinux 0x861e910e reuseport_alloc +EXPORT_SYMBOL vmlinux 0x86247577 default_llseek +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x86443e83 ibmebus_unregister_driver +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x8664cddb mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x8676749f secpath_dup +EXPORT_SYMBOL vmlinux 0x8682f25d alloc_fcdev +EXPORT_SYMBOL vmlinux 0x868602b8 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x868d7be1 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x86a02cf7 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86da3be6 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x86db1cbb rtas_flash_term_hook +EXPORT_SYMBOL vmlinux 0x86e48faf mmc_put_card +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x870888eb iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x8731ba8b filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x873a53ea __arch_hweight8 +EXPORT_SYMBOL vmlinux 0x8745d2ac ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x874d13cd sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x8760604b iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x87633a90 textsearch_register +EXPORT_SYMBOL vmlinux 0x8787d240 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x87925552 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x8792b386 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x879dde92 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x87c21d4e agp_generic_enable +EXPORT_SYMBOL vmlinux 0x87dd7e2a genphy_update_link +EXPORT_SYMBOL vmlinux 0x87efefaf set_posix_acl +EXPORT_SYMBOL vmlinux 0x87fc65c7 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x87ffd55b sock_alloc +EXPORT_SYMBOL vmlinux 0x881c2d56 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x882db37f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x884da70f tty_do_resize +EXPORT_SYMBOL vmlinux 0x884e9d63 fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x8878ae59 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x8885eb3f lease_get_mtime +EXPORT_SYMBOL vmlinux 0x8892ffea block_commit_write +EXPORT_SYMBOL vmlinux 0x8898b7be sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x8898cccd mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x88b11b4f __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x88ba11ea seq_dentry +EXPORT_SYMBOL vmlinux 0x88be5eac proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x88cd4aed ilookup5 +EXPORT_SYMBOL vmlinux 0x88d074c0 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x88d75705 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88db9f81 vme_bus_type +EXPORT_SYMBOL vmlinux 0x88dc5318 nf_log_unset +EXPORT_SYMBOL vmlinux 0x88e7aa54 get_task_io_context +EXPORT_SYMBOL vmlinux 0x88e88b55 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x88ee0718 search_binary_handler +EXPORT_SYMBOL vmlinux 0x88f5a23a phy_connect_direct +EXPORT_SYMBOL vmlinux 0x8903d1c4 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy +EXPORT_SYMBOL vmlinux 0x892aff23 dev_trans_start +EXPORT_SYMBOL vmlinux 0x895108f3 proc_dostring +EXPORT_SYMBOL vmlinux 0x895577b0 numa_cpu_lookup_table +EXPORT_SYMBOL vmlinux 0x8975c5f9 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x89898459 kvm_irq_bypass +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89affb68 find_lock_entry +EXPORT_SYMBOL vmlinux 0x89b8db07 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x89bfd579 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x89c3003f may_umount_tree +EXPORT_SYMBOL vmlinux 0x89d089cf reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89fce514 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a1c45ba cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x8a1ca0e3 ping_prot +EXPORT_SYMBOL vmlinux 0x8a2fd86b dev_warn +EXPORT_SYMBOL vmlinux 0x8a31897d udp_sendmsg +EXPORT_SYMBOL vmlinux 0x8a3bcd79 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8ae786bc neigh_event_ns +EXPORT_SYMBOL vmlinux 0x8ae99469 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0x8afaebe7 nla_put +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b3718b2 vc_cons +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b719d93 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x8b78f314 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b8c5077 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x8bc8a109 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x8bd5dc53 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x8be4f311 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x8bf064fe key_reject_and_link +EXPORT_SYMBOL vmlinux 0x8bf2ae1f fsl_lbc_addr +EXPORT_SYMBOL vmlinux 0x8bfe8c70 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x8c091ea4 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c31da8d uart_match_port +EXPORT_SYMBOL vmlinux 0x8c4ac524 file_ns_capable +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c66f5eb of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x8c6a61b7 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x8c6f4d89 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x8cba10d6 of_get_min_tck +EXPORT_SYMBOL vmlinux 0x8cc78908 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cd60f4d agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x8cdb458a flow_cache_init +EXPORT_SYMBOL vmlinux 0x8cdf4aa2 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x8cf59d19 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 +EXPORT_SYMBOL vmlinux 0x8d080f39 tcf_em_register +EXPORT_SYMBOL vmlinux 0x8d15114a __release_region +EXPORT_SYMBOL vmlinux 0x8d1a8d40 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x8d3ccd2a elevator_alloc +EXPORT_SYMBOL vmlinux 0x8d3dfc0c i2c_release_client +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d5be8e6 pci_restore_state +EXPORT_SYMBOL vmlinux 0x8d621883 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d944cbb copy_in_user +EXPORT_SYMBOL vmlinux 0x8d96ddf7 phy_attach +EXPORT_SYMBOL vmlinux 0x8d96deea migrate_page +EXPORT_SYMBOL vmlinux 0x8db4a6c6 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x8dcb41ea scsi_init_io +EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8e0334d4 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x8e201a68 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x8e2910df vio_get_attribute +EXPORT_SYMBOL vmlinux 0x8e300e67 powerpc_debugfs_root +EXPORT_SYMBOL vmlinux 0x8e507f80 giveup_fpu +EXPORT_SYMBOL vmlinux 0x8e5a5532 lease_modify +EXPORT_SYMBOL vmlinux 0x8e642df7 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x8e69d265 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e813b12 posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x8e83f653 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x8e879bb7 __vmalloc +EXPORT_SYMBOL vmlinux 0x8e8e9b7e proto_register +EXPORT_SYMBOL vmlinux 0x8eadb452 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x8eb01289 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x8eb88386 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8ece2e01 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x8efb1ee3 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x8efb4c7c lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x8f2d6a59 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x8f3dfae7 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x8f81eaa9 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x8f8cc747 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x8fc59f9b rtas_offline_cpus_mask +EXPORT_SYMBOL vmlinux 0x8fdc8553 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x8fdf772a init_timer_key +EXPORT_SYMBOL vmlinux 0x8fec1b56 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x900e5d4f mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x901f0370 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x902d564f framebuffer_release +EXPORT_SYMBOL vmlinux 0x90308802 sock_no_listen +EXPORT_SYMBOL vmlinux 0x90411961 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x9051ad88 seq_file_path +EXPORT_SYMBOL vmlinux 0x905203ab generic_write_checks +EXPORT_SYMBOL vmlinux 0x905a2afb __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x90aad181 fs_bio_set +EXPORT_SYMBOL vmlinux 0x90acfbd3 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x90d22104 param_set_uint +EXPORT_SYMBOL vmlinux 0x90d70215 task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0x90d93175 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x912557ce rtas_busy_delay +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x914a4b97 sync_file_create +EXPORT_SYMBOL vmlinux 0x914d3f8a security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x915183ec dentry_open +EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x9168c033 rtas_get_sensor +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf +EXPORT_SYMBOL vmlinux 0x91b7aa24 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x91d3d567 simple_lookup +EXPORT_SYMBOL vmlinux 0x91f72f96 param_get_charp +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x9207cba0 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x9218cff1 adjust_resource +EXPORT_SYMBOL vmlinux 0x9229b902 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x922c5834 of_dev_get +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923bcc51 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x92748186 genphy_read_status +EXPORT_SYMBOL vmlinux 0x9274f491 kill_anon_super +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92ae21b0 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x92dbe7b9 __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x92dc8f1f dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x930edf04 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x932b0a65 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x93380331 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x933fe50b dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x9354fcde ibmebus_free_irq +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x9390fba0 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x939cd023 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93e95252 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x93f0a651 phy_detach +EXPORT_SYMBOL vmlinux 0x93f9542b paca +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x93fec7e7 fscrypt_fname_usr_to_disk +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x9404480f sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x940d1860 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x9436eb2d of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x943dc80f csum_and_copy_to_user +EXPORT_SYMBOL vmlinux 0x94512233 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x945a9b57 input_release_device +EXPORT_SYMBOL vmlinux 0x94663118 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x94686be0 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x9485813f blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x948643fd of_find_property +EXPORT_SYMBOL vmlinux 0x948d9761 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x948fdee3 block_write_full_page +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94a8ebc6 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x94ba01bf mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x94e23429 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x94fa71d1 find_get_entries_tag +EXPORT_SYMBOL vmlinux 0x9502ac1d pcibus_to_node +EXPORT_SYMBOL vmlinux 0x95087716 km_report +EXPORT_SYMBOL vmlinux 0x950d5c6b of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9512dae0 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x952192b9 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb +EXPORT_SYMBOL vmlinux 0x952bd3a6 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x9568a09e pci_choose_state +EXPORT_SYMBOL vmlinux 0x9573c8c3 neigh_table_init +EXPORT_SYMBOL vmlinux 0x9578ead0 radix__flush_tlb_lpid_va +EXPORT_SYMBOL vmlinux 0x959ea1a8 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x95c6be96 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x95ccda09 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x95d7bcd0 unlock_page +EXPORT_SYMBOL vmlinux 0x95e9f120 __vfs_read +EXPORT_SYMBOL vmlinux 0x95f18e4d uart_suspend_port +EXPORT_SYMBOL vmlinux 0x95f62b53 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x95fa67d1 neigh_update +EXPORT_SYMBOL vmlinux 0x95ffbaf4 dev_open +EXPORT_SYMBOL vmlinux 0x9612b6a8 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x963eed41 register_netdevice +EXPORT_SYMBOL vmlinux 0x963f0186 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x965ec806 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x96615d16 pci_release_region +EXPORT_SYMBOL vmlinux 0x966baaed netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x969451ef xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x969987fc lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x96b15fc3 of_mm_gpiochip_add_data +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96b93280 generic_write_end +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d31f48 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x96dc7658 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x96eb3cb4 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x97088ab2 blk_put_request +EXPORT_SYMBOL vmlinux 0x970ac954 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x972ad4a2 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x97391dd3 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x973c09e5 __pgd_index_size +EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x975c3a7b kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x975eb06a seq_read +EXPORT_SYMBOL vmlinux 0x976f546d path_nosuid +EXPORT_SYMBOL vmlinux 0x977327f2 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x978474bd jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97a321ab nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97afba7b proc_douintvec +EXPORT_SYMBOL vmlinux 0x97da8856 serio_interrupt +EXPORT_SYMBOL vmlinux 0x97f03d6f vio_cmo_entitlement_update +EXPORT_SYMBOL vmlinux 0x97f18b46 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9814a2a9 mutex_lock +EXPORT_SYMBOL vmlinux 0x981e3565 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x981ecadc mmc_start_req +EXPORT_SYMBOL vmlinux 0x9824e07c phy_find_first +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x983ba03c napi_complete_done +EXPORT_SYMBOL vmlinux 0x98530eef devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x985e072d udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x985f3c65 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x98647dbd set_device_ro +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x987fc124 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x9887ee01 scsi_host_get +EXPORT_SYMBOL vmlinux 0x9896b2c6 keyring_alloc +EXPORT_SYMBOL vmlinux 0x989bd95b swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x98bb54f9 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98f7983f generic_permission +EXPORT_SYMBOL vmlinux 0x990b9c58 import_single_range +EXPORT_SYMBOL vmlinux 0x99134ffc blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf +EXPORT_SYMBOL vmlinux 0x992433a8 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x99305307 radix__flush_tlb_pwc +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x993bcda9 cdev_add +EXPORT_SYMBOL vmlinux 0x99415b80 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99551567 input_register_handler +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x996456a0 dev_uc_add +EXPORT_SYMBOL vmlinux 0x996456f9 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x9967a8c6 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x996957fd cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x996e9872 tcp_seq_open +EXPORT_SYMBOL vmlinux 0x9979fb08 sock_wake_async +EXPORT_SYMBOL vmlinux 0x997f9aaa tcf_hash_check +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x99999dd8 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a72c4c generic_setxattr +EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x99b16f8c release_resource +EXPORT_SYMBOL vmlinux 0x99cf5217 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99e2b78b tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x99eba605 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x99f0ca4b mount_subtree +EXPORT_SYMBOL vmlinux 0x9a07f3b6 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a3ac7bf of_n_size_cells +EXPORT_SYMBOL vmlinux 0x9a457610 dev_mc_add +EXPORT_SYMBOL vmlinux 0x9a5ff9fd of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x9a7b4fa5 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x9ab277b8 inet6_release +EXPORT_SYMBOL vmlinux 0x9ab4a719 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x9ac47719 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x9addf6c7 iterate_dir +EXPORT_SYMBOL vmlinux 0x9ae9dcb3 get_super_thawed +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9af381e9 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x9afa960a tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x9aff1183 nd_device_notify +EXPORT_SYMBOL vmlinux 0x9b0359cc proto_unregister +EXPORT_SYMBOL vmlinux 0x9b07e11e twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x9b0b1e31 inet_bind +EXPORT_SYMBOL vmlinux 0x9b1132e1 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x9b2370c3 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b6b00eb elevator_change +EXPORT_SYMBOL vmlinux 0x9b789cec debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x9b8d4b41 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9ba8d78b blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x9bb5c397 scsi_print_command +EXPORT_SYMBOL vmlinux 0x9bbbb9cb of_get_next_child +EXPORT_SYMBOL vmlinux 0x9bcfe708 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x9bd97fc6 empty_aops +EXPORT_SYMBOL vmlinux 0x9be14ba8 inode_set_flags +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9bee8b16 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x9c189382 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0x9c336da1 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x9c3e905f thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c4ff2e0 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x9c5e3b89 ip_options_compile +EXPORT_SYMBOL vmlinux 0x9c6710c6 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x9c6f1570 to_ndd +EXPORT_SYMBOL vmlinux 0x9c99f247 param_ops_int +EXPORT_SYMBOL vmlinux 0x9c9ac5f3 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x9c9bcea0 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x9c9ca859 module_put +EXPORT_SYMBOL vmlinux 0x9ca72143 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cedea48 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x9cefd87f genlmsg_put +EXPORT_SYMBOL vmlinux 0x9d021771 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs +EXPORT_SYMBOL vmlinux 0x9d14c57b inet_gro_receive +EXPORT_SYMBOL vmlinux 0x9d378f70 queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x9d5f93d9 update_devfreq +EXPORT_SYMBOL vmlinux 0x9d684339 bio_map_kern +EXPORT_SYMBOL vmlinux 0x9d7ce8dd _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x9d84dd70 pci_map_rom +EXPORT_SYMBOL vmlinux 0x9d8d22e5 sock_no_accept +EXPORT_SYMBOL vmlinux 0x9d98d2ab i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x9d9aa643 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x9d9bfae7 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x9d9dfc18 load_fp_state +EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x9da14f39 ps2_init +EXPORT_SYMBOL vmlinux 0x9da3fa3c try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x9dc51fe3 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x9dc7d7d5 sg_miter_next +EXPORT_SYMBOL vmlinux 0x9de281af key_alloc +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e258709 udp_gro_complete +EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e4393c1 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x9e45edb8 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x9e48812e ihold +EXPORT_SYMBOL vmlinux 0x9e4dd7f5 fence_init +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e68a955 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e7f94d1 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x9e97375d rtas_busy_delay_time +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea98ccd is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x9eb3a865 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x9ebbe1aa inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x9ebc9529 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x9ec4ef9e generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x9ec98ca8 vm_node_stat +EXPORT_SYMBOL vmlinux 0x9ed79b9b pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x9ee82cd6 uuid_be_index +EXPORT_SYMBOL vmlinux 0x9f1142ec skb_copy_expand +EXPORT_SYMBOL vmlinux 0x9f13fef0 ata_print_version +EXPORT_SYMBOL vmlinux 0x9f23f02d netif_device_attach +EXPORT_SYMBOL vmlinux 0x9f27161f param_ops_charp +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f500afe mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x9f513b40 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x9f6a51d5 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x9f725a77 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x9f89b30e bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x9f911629 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f9ffd89 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x9fa00fcc mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x9fb1d0ed uuid_is_valid +EXPORT_SYMBOL vmlinux 0x9fc6ef7e console_start +EXPORT_SYMBOL vmlinux 0x9fc86529 vfs_fsync +EXPORT_SYMBOL vmlinux 0x9fd68fab __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0x9ffe117c swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xa0010ffc lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0xa00c7bf9 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xa00e3de7 bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0xa0241410 single_open +EXPORT_SYMBOL vmlinux 0xa037eb13 i2c_verify_client +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa073715b request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa0816e6c dev_notice +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa09534ac pci_save_state +EXPORT_SYMBOL vmlinux 0xa09885f6 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xa0ac351a free_task +EXPORT_SYMBOL vmlinux 0xa0acec42 dev_err +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0c2e518 giveup_altivec +EXPORT_SYMBOL vmlinux 0xa0d8b055 bdi_register +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fa8786 release_firmware +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa118fedd xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0xa11a3aa4 eth_change_mtu +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa121e379 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xa12634a9 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa152818e flush_old_exec +EXPORT_SYMBOL vmlinux 0xa1571598 get_task_exe_file +EXPORT_SYMBOL vmlinux 0xa182cfa3 scsi_device_get +EXPORT_SYMBOL vmlinux 0xa1900690 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xa1a03f34 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xa1a0de87 sk_wait_data +EXPORT_SYMBOL vmlinux 0xa1a6bf68 ptp_find_pin +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1b86555 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xa1b8c977 agp_create_memory +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1c7e15f fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0xa1c88f8e rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xa1cb1b5d pps_register_source +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1e320ef generic_perform_write +EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xa2018964 free_buffer_head +EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa2118e7b gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xa2204aa2 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xa221b7d9 mem_section +EXPORT_SYMBOL vmlinux 0xa22c9505 of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0xa234153f km_state_expired +EXPORT_SYMBOL vmlinux 0xa2615b8b mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xa27be315 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa29d3d3f pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0xa2b30daf max8998_update_reg +EXPORT_SYMBOL vmlinux 0xa2b8a607 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xa2ba2f57 fb_class +EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register +EXPORT_SYMBOL vmlinux 0xa2be2908 tty_port_open +EXPORT_SYMBOL vmlinux 0xa2d403f9 skb_dequeue +EXPORT_SYMBOL vmlinux 0xa2d47e06 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xa2dc0936 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xa2e1e9a4 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0xa310e116 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa350cb12 mount_single +EXPORT_SYMBOL vmlinux 0xa3622e76 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xa376fd4a mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xa3809382 dma_find_channel +EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay +EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa3ac5f72 sock_edemux +EXPORT_SYMBOL vmlinux 0xa3ee0a04 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xa3f277b6 dquot_scan_active +EXPORT_SYMBOL vmlinux 0xa41abc1c vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xa4292200 vfs_writev +EXPORT_SYMBOL vmlinux 0xa42bb8ac inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xa43ccc1f mfd_add_devices +EXPORT_SYMBOL vmlinux 0xa4511467 crc16 +EXPORT_SYMBOL vmlinux 0xa454cf05 mmc_detect_change +EXPORT_SYMBOL vmlinux 0xa455a965 bitmap_unplug +EXPORT_SYMBOL vmlinux 0xa45a778b iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xa465b16e generic_fillattr +EXPORT_SYMBOL vmlinux 0xa46c599e down_write +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa499d3ad neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xa49d3d67 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4bd7cc8 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xa4c077c3 skb_tx_error +EXPORT_SYMBOL vmlinux 0xa4c21035 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xa4caed40 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xa4d05f87 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4dc1fdf sget_userns +EXPORT_SYMBOL vmlinux 0xa4df150d tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xa4ef511c scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xa5007a22 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xa5153c62 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xa5207ce6 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa55c6830 register_sysctl_table +EXPORT_SYMBOL vmlinux 0xa5774a6e scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xa58ddadd netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xa58eb48c dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xa5967e67 bdget +EXPORT_SYMBOL vmlinux 0xa5970436 inode_init_once +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5992f66 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0xa59a5f8f md_register_thread +EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le +EXPORT_SYMBOL vmlinux 0xa5c4e42d __skb_get_hash +EXPORT_SYMBOL vmlinux 0xa5d92dad unregister_quota_format +EXPORT_SYMBOL vmlinux 0xa5ea18cc of_get_mac_address +EXPORT_SYMBOL vmlinux 0xa5f35c6b netlink_ack +EXPORT_SYMBOL vmlinux 0xa5fe08fb xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xa5fe12ce uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xa61173e6 down_write_killable +EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xa6372da1 finish_swait +EXPORT_SYMBOL vmlinux 0xa6398e79 sock_sendmsg +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa6430e6c tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xa6579f21 __pud_val_bits +EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa69901e5 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xa6a44fea alloc_disk_node +EXPORT_SYMBOL vmlinux 0xa6bcf8c9 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xa6db7e8b make_kgid +EXPORT_SYMBOL vmlinux 0xa6df81ad generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa70f9986 inet_ioctl +EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock +EXPORT_SYMBOL vmlinux 0xa72167a4 radix__flush_pmd_tlb_range +EXPORT_SYMBOL vmlinux 0xa7255f3c wake_up_process +EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa738b3e4 sock_no_poll +EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get +EXPORT_SYMBOL vmlinux 0xa75149c7 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xa751b32b ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xa7527d92 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xa75b3706 pseries_enable_reloc_on_exc +EXPORT_SYMBOL vmlinux 0xa788d5e4 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xa7904be1 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xa79e33eb jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xa7a8f5e7 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xa7b8aace scsi_ioctl +EXPORT_SYMBOL vmlinux 0xa7bf96f3 sock_kmalloc +EXPORT_SYMBOL vmlinux 0xa7c0ebdb rfkill_alloc +EXPORT_SYMBOL vmlinux 0xa7c44f55 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xa7cfdb36 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xa7f16c16 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xa7f725cc unload_nls +EXPORT_SYMBOL vmlinux 0xa8063070 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xa80f3386 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0xa83d29af jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa85e4ee8 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xa865716e fddi_type_trans +EXPORT_SYMBOL vmlinux 0xa86c08cd ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa88fd35d phy_device_remove +EXPORT_SYMBOL vmlinux 0xa89de870 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0xa8b2a0d0 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0xa8b480eb xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xa8b4db23 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xa8bed719 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xa8c1e59a scsi_remove_device +EXPORT_SYMBOL vmlinux 0xa8f179bf scsi_target_resume +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa9060d2e of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xa906bf9f __break_lease +EXPORT_SYMBOL vmlinux 0xa9160562 neigh_lookup +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa917360f srp_rport_put +EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xa9273e1a epapr_hypercall_start +EXPORT_SYMBOL vmlinux 0xa9288d31 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xa93ba88e proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xa94682b6 __register_binfmt +EXPORT_SYMBOL vmlinux 0xa96fb3c3 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xa971f552 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xa972b76d page_mapped +EXPORT_SYMBOL vmlinux 0xa9738a32 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa977ce3a pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xa9929fdf try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9a71f0f tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xa9a99ec2 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xa9ac5e48 tty_unthrottle +EXPORT_SYMBOL vmlinux 0xa9b2ca79 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xa9b6599d buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9e4a43b blk_init_tags +EXPORT_SYMBOL vmlinux 0xa9edbabc fence_default_wait +EXPORT_SYMBOL vmlinux 0xaa0c45a4 tcp_prot +EXPORT_SYMBOL vmlinux 0xaa11b3b4 input_close_device +EXPORT_SYMBOL vmlinux 0xaa15210c pci_clear_master +EXPORT_SYMBOL vmlinux 0xaa154601 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xaa29bcf9 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xaa3f6f04 radix__flush_tlb_kernel_range +EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock +EXPORT_SYMBOL vmlinux 0xaa47b4f8 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xaa4ca44b set_nlink +EXPORT_SYMBOL vmlinux 0xaa609cc1 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa793080 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xaa81c111 pci_platform_rom +EXPORT_SYMBOL vmlinux 0xaa90e670 dev_printk +EXPORT_SYMBOL vmlinux 0xaa934445 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xaa9968c4 thaw_bdev +EXPORT_SYMBOL vmlinux 0xaaaef606 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaaec17e1 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0xaaef815b mmc_of_parse +EXPORT_SYMBOL vmlinux 0xaaf54837 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe6416 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab264fde chacha20_block +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab43862d nvm_dev_factory +EXPORT_SYMBOL vmlinux 0xab61359c reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xab66bfc1 unregister_cdrom +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab7279c6 flush_all_to_thread +EXPORT_SYMBOL vmlinux 0xab77efe4 vme_slot_num +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab94bd5a __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xaba84a8f mmc_remove_host +EXPORT_SYMBOL vmlinux 0xabca9426 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabcee429 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xabd9df6a override_creds +EXPORT_SYMBOL vmlinux 0xabe7205e __ps2_command +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xac430423 __pmd_val_bits +EXPORT_SYMBOL vmlinux 0xac52de0f iterate_supers_type +EXPORT_SYMBOL vmlinux 0xac76e4de copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacaf0eb4 bdget_disk +EXPORT_SYMBOL vmlinux 0xacafe936 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xacb1093c tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xacc56d5c xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacdcfa9a nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0xacddf9b6 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xace7eb19 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xacf0c291 keyring_search +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xad1f4762 __getblk_gfp +EXPORT_SYMBOL vmlinux 0xad2bfa1f complete_request_key +EXPORT_SYMBOL vmlinux 0xad325dfb remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0xad4c1b51 flex_array_alloc +EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock +EXPORT_SYMBOL vmlinux 0xad572350 ip_defrag +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad84f7a0 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xad875a75 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xad93eca4 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xadab9e90 dev_uc_del +EXPORT_SYMBOL vmlinux 0xadb76cc6 dev_change_xdp_fd +EXPORT_SYMBOL vmlinux 0xadc46d30 dev_disable_lro +EXPORT_SYMBOL vmlinux 0xadcd45a8 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xadec0c30 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae42326d blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0xae4c8439 __pte_table_size +EXPORT_SYMBOL vmlinux 0xae540473 dst_release +EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xae579f72 nobh_write_end +EXPORT_SYMBOL vmlinux 0xae5eadb5 release_pages +EXPORT_SYMBOL vmlinux 0xae7644a1 bio_copy_data +EXPORT_SYMBOL vmlinux 0xae8abe20 dev_mc_del +EXPORT_SYMBOL vmlinux 0xaec35db4 flex_array_free +EXPORT_SYMBOL vmlinux 0xaed0eb81 agp_enable +EXPORT_SYMBOL vmlinux 0xaee70890 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xaef025f4 sk_capable +EXPORT_SYMBOL vmlinux 0xaef16c93 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xaef3db21 noop_llseek +EXPORT_SYMBOL vmlinux 0xaeffbc85 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xaf195f9d qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf401408 bio_add_page +EXPORT_SYMBOL vmlinux 0xaf63ea99 generic_removexattr +EXPORT_SYMBOL vmlinux 0xaf6486bf sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup +EXPORT_SYMBOL vmlinux 0xaf73cd36 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xaf7c6496 netif_rx_ni +EXPORT_SYMBOL vmlinux 0xaf83b1a9 skb_pull +EXPORT_SYMBOL vmlinux 0xaf846ee8 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0xafa4ced5 bio_phys_segments +EXPORT_SYMBOL vmlinux 0xafbabf8a tcp_close +EXPORT_SYMBOL vmlinux 0xafbc5dd8 dquot_drop +EXPORT_SYMBOL vmlinux 0xaff0c754 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xaff3a46b md_write_end +EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc +EXPORT_SYMBOL vmlinux 0xb0061716 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0xb0127aaf tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xb01ac2ea tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xb028a338 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xb03e2bcc jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove +EXPORT_SYMBOL vmlinux 0xb04822ba mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xb049c8de current_in_userns +EXPORT_SYMBOL vmlinux 0xb05ec358 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb070853f xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xb0729560 do_SAK +EXPORT_SYMBOL vmlinux 0xb0870f30 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xb091c93d radix__flush_tlb_lpid +EXPORT_SYMBOL vmlinux 0xb09a433d tcp_conn_request +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0b10f15 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb104d294 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb1342238 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset +EXPORT_SYMBOL vmlinux 0xb147e4e5 skb_queue_head +EXPORT_SYMBOL vmlinux 0xb14c44fe sock_rfree +EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec +EXPORT_SYMBOL vmlinux 0xb15c4f43 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1619bcd of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0xb161d2ba sk_alloc +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb1659fd6 __sk_dst_check +EXPORT_SYMBOL vmlinux 0xb165ef45 __irq_regs +EXPORT_SYMBOL vmlinux 0xb18663e1 register_netdev +EXPORT_SYMBOL vmlinux 0xb191bbe1 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xb19e6744 phy_attached_print +EXPORT_SYMBOL vmlinux 0xb1a78f4a inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c6e787 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1f65faf of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xb1ffb3da netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0xb22ab9a7 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0xb23ee16e dev_uc_init +EXPORT_SYMBOL vmlinux 0xb241d5df from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xb2558fe1 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xb264154c vlan_vid_del +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb27c03d1 nvm_submit_ppa_list +EXPORT_SYMBOL vmlinux 0xb27c78ac msi_bitmap_free_hwirqs +EXPORT_SYMBOL vmlinux 0xb283cd12 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xb2881fda input_unregister_handle +EXPORT_SYMBOL vmlinux 0xb2a05897 nvm_end_io +EXPORT_SYMBOL vmlinux 0xb2acc4cd __msr_check_and_clear +EXPORT_SYMBOL vmlinux 0xb2c10146 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xb2dd002b dm_put_table_device +EXPORT_SYMBOL vmlinux 0xb2e71e0a dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xb2fb0f2f nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xb31fe26f ps2_begin_command +EXPORT_SYMBOL vmlinux 0xb32939da scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xb332c677 bprm_change_interp +EXPORT_SYMBOL vmlinux 0xb3479c28 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xb368fb8b fscrypt_initialize +EXPORT_SYMBOL vmlinux 0xb37a84bc inet6_del_offload +EXPORT_SYMBOL vmlinux 0xb37ab0d7 pci_get_slot +EXPORT_SYMBOL vmlinux 0xb394f66f netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xb3a84f24 cpumask_any_but +EXPORT_SYMBOL vmlinux 0xb3b0175e __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xb3b886e9 giveup_all +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3e3ceda jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xb3e5dd7b skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xb3f55deb tty_port_put +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb406e68e inet_frags_fini +EXPORT_SYMBOL vmlinux 0xb41233f3 tty_port_close +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb42bba41 pci_match_id +EXPORT_SYMBOL vmlinux 0xb45ba5e4 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class +EXPORT_SYMBOL vmlinux 0xb473e2c2 lockref_get +EXPORT_SYMBOL vmlinux 0xb479c718 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xb47be20e pseries_disable_reloc_on_exc +EXPORT_SYMBOL vmlinux 0xb4a183aa phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xb4c6a351 blk_sync_queue +EXPORT_SYMBOL vmlinux 0xb4d060ca msi_bitmap_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0xb4dea370 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xb4e57346 compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xb4e896e5 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0xb4eee60f inet_recvmsg +EXPORT_SYMBOL vmlinux 0xb4f1c422 vfs_write +EXPORT_SYMBOL vmlinux 0xb4fcdcff scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xb508828e ppp_channel_index +EXPORT_SYMBOL vmlinux 0xb515ac23 pci_enable_device +EXPORT_SYMBOL vmlinux 0xb5252f41 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xb54838dc phy_attach_direct +EXPORT_SYMBOL vmlinux 0xb56763a8 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb577afea generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xb58c525c devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ae3afd __genl_register_family +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5d446a7 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xb5d9ee52 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xb5f06c0a phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xb6103342 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xb611fc6d uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xb61357ec xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb62db562 scmd_printk +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb63afe9b md_flush_request +EXPORT_SYMBOL vmlinux 0xb644625d __scm_destroy +EXPORT_SYMBOL vmlinux 0xb6459950 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xb6483dd1 iptun_encaps +EXPORT_SYMBOL vmlinux 0xb652435d audit_log_task_info +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb68d5929 nla_put_64bit +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb698e629 simple_empty +EXPORT_SYMBOL vmlinux 0xb6996c59 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6bb33df tcp_init_sock +EXPORT_SYMBOL vmlinux 0xb6cb0fa2 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xb6d5bdc0 skb_unlink +EXPORT_SYMBOL vmlinux 0xb6d65723 consume_skb +EXPORT_SYMBOL vmlinux 0xb6edd8cf decrementer_clockevent +EXPORT_SYMBOL vmlinux 0xb6f08ebb of_get_property +EXPORT_SYMBOL vmlinux 0xb718c678 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0xb729e05c compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xb744f799 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb76b4f56 mmc_release_host +EXPORT_SYMBOL vmlinux 0xb770d99e dm_table_get_md +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb77932eb flex_array_clear +EXPORT_SYMBOL vmlinux 0xb779ad64 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xb7890d7e gen_new_estimator +EXPORT_SYMBOL vmlinux 0xb7a2c664 ibmebus_register_driver +EXPORT_SYMBOL vmlinux 0xb7bcfb1d lock_fb_info +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d0deec from_kuid +EXPORT_SYMBOL vmlinux 0xb7d363a2 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0xb7d699ba rwsem_wake +EXPORT_SYMBOL vmlinux 0xb7d82cf3 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xb7d9b843 fence_add_callback +EXPORT_SYMBOL vmlinux 0xb7dcb87d i2c_clients_command +EXPORT_SYMBOL vmlinux 0xb7e74bc1 fscrypt_restore_control_page +EXPORT_SYMBOL vmlinux 0xb81df682 pci_domain_nr +EXPORT_SYMBOL vmlinux 0xb81fb3a0 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0xb86aaad0 compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb88b7bb9 __elv_add_request +EXPORT_SYMBOL vmlinux 0xb8982a6d padata_free +EXPORT_SYMBOL vmlinux 0xb89a460a nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xb8ad2222 md_integrity_register +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8dbe511 netdev_all_lower_get_next +EXPORT_SYMBOL vmlinux 0xb8eec98b del_timer +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb91301fa devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xb927c675 param_set_charp +EXPORT_SYMBOL vmlinux 0xb9503bed mapping_tagged +EXPORT_SYMBOL vmlinux 0xb9556c09 noop_qdisc +EXPORT_SYMBOL vmlinux 0xb9563963 kill_fasync +EXPORT_SYMBOL vmlinux 0xb9585177 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xb97fa44b radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0xb994df4c eeh_dev_release +EXPORT_SYMBOL vmlinux 0xb9a377a6 compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0xb9accb8a serio_rescan +EXPORT_SYMBOL vmlinux 0xb9b252e1 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xba181c5b jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xba1c9d34 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xba2ffec2 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xba35584b fb_pan_display +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4a76f9 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0xba5cd341 i2c_use_client +EXPORT_SYMBOL vmlinux 0xba634673 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0xba82aaea pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xba976774 netdev_state_change +EXPORT_SYMBOL vmlinux 0xbaab9054 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xbad87515 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xbae45aa9 pci_get_class +EXPORT_SYMBOL vmlinux 0xbae8259e unlock_buffer +EXPORT_SYMBOL vmlinux 0xbafe28dc generic_file_llseek +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb1494a1 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xbb2e374d scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten +EXPORT_SYMBOL vmlinux 0xbb3457b3 ptp_clock_event +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb3c2748 generic_file_mmap +EXPORT_SYMBOL vmlinux 0xbb3e9e90 __pmd_table_size +EXPORT_SYMBOL vmlinux 0xbb455a21 inet_listen +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb545b05 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xbb5c81a0 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xbb5c9cf2 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb97bcb0 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbb9a16df kernel_getpeername +EXPORT_SYMBOL vmlinux 0xbb9d506d dquot_transfer +EXPORT_SYMBOL vmlinux 0xbbb6b412 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xbbcde255 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xbc11e4cf dev_get_flags +EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0xbc32df3d netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0xbc390580 bio_advance +EXPORT_SYMBOL vmlinux 0xbc5471da PDE_DATA +EXPORT_SYMBOL vmlinux 0xbc5b2037 ip6_xmit +EXPORT_SYMBOL vmlinux 0xbc5f5abf inode_change_ok +EXPORT_SYMBOL vmlinux 0xbc5f8536 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xbc621ad1 dup_iter +EXPORT_SYMBOL vmlinux 0xbc6d2be0 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xbc82db17 agp_bridge +EXPORT_SYMBOL vmlinux 0xbc8d9a1f up_read +EXPORT_SYMBOL vmlinux 0xbc982b06 eeh_subsystem_flags +EXPORT_SYMBOL vmlinux 0xbc9b334e inet_register_protosw +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcdcadd5 dma_common_mmap +EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 +EXPORT_SYMBOL vmlinux 0xbcf58dba sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xbd13bab2 __nla_reserve +EXPORT_SYMBOL vmlinux 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0xbd19ef9f __nd_iostat_start +EXPORT_SYMBOL vmlinux 0xbd1a46bf blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xbd250fe1 pci_dev_driver +EXPORT_SYMBOL vmlinux 0xbd2dc492 d_make_root +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd4da202 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xbd547ec9 mdiobus_write +EXPORT_SYMBOL vmlinux 0xbd62bacd phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xbd6582e1 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xbd6b997d dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xbd6d75d9 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xbd79915b dec_node_page_state +EXPORT_SYMBOL vmlinux 0xbd86e1e5 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbd93aeef blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0xbd996bc1 bio_reset +EXPORT_SYMBOL vmlinux 0xbda418ac xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xbdccb0ca __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xbdce7a0d nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0xbde85838 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0xbdfad388 get_disk +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe2df2d4 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xbe33b584 pps_event +EXPORT_SYMBOL vmlinux 0xbe4141e5 of_get_ibm_chip_id +EXPORT_SYMBOL vmlinux 0xbe44c06e sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xbe6ada7d uuid_le_index +EXPORT_SYMBOL vmlinux 0xbe8e4e59 path_get +EXPORT_SYMBOL vmlinux 0xbee9e947 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbef5575d nobh_write_begin +EXPORT_SYMBOL vmlinux 0xbf034bc9 dcb_getapp +EXPORT_SYMBOL vmlinux 0xbf0ca7e0 new_inode +EXPORT_SYMBOL vmlinux 0xbf1edef9 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xbf257336 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xbf26c780 dqput +EXPORT_SYMBOL vmlinux 0xbf308532 fscrypt_get_policy +EXPORT_SYMBOL vmlinux 0xbf3249bb find_inode_nowait +EXPORT_SYMBOL vmlinux 0xbf47f1fa notify_change +EXPORT_SYMBOL vmlinux 0xbf59434a mutex_trylock +EXPORT_SYMBOL vmlinux 0xbf5ffd6e simple_fill_super +EXPORT_SYMBOL vmlinux 0xbf769283 get_phy_device +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf925c42 idr_init +EXPORT_SYMBOL vmlinux 0xbf991e52 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbf9d5482 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xbfa4c41c tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xbfabfe59 __debugger_iabr_match +EXPORT_SYMBOL vmlinux 0xbfb4fb6d input_set_keycode +EXPORT_SYMBOL vmlinux 0xbfb7d6d4 vme_irq_free +EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff8182c plpar_hcall_norets +EXPORT_SYMBOL vmlinux 0xc01404a3 input_reset_device +EXPORT_SYMBOL vmlinux 0xc018d79f pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0xc0204974 start_tty +EXPORT_SYMBOL vmlinux 0xc0356672 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xc062f51c mb_cache_entry_delete_block +EXPORT_SYMBOL vmlinux 0xc06328c4 dev_driver_string +EXPORT_SYMBOL vmlinux 0xc07041be inet6_offloads +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0c8c7de mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xc0cae47b simple_release_fs +EXPORT_SYMBOL vmlinux 0xc0cb4531 param_set_ullong +EXPORT_SYMBOL vmlinux 0xc0dabacd install_exec_creds +EXPORT_SYMBOL vmlinux 0xc0ed96a3 mmc_can_trim +EXPORT_SYMBOL vmlinux 0xc0f08365 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xc1450cd7 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xc1530f09 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xc15a3492 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit +EXPORT_SYMBOL vmlinux 0xc15adb27 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xc1613e93 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xc17718a5 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xc1899bd2 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0xc19881da bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0xc199b032 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xc1c3f59c __vio_register_driver +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1f837d3 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0xc20eb07f dqget +EXPORT_SYMBOL vmlinux 0xc218482f fscrypt_inherit_context +EXPORT_SYMBOL vmlinux 0xc21f40ab i8042_install_filter +EXPORT_SYMBOL vmlinux 0xc21f6611 mmc_add_host +EXPORT_SYMBOL vmlinux 0xc2413844 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc24f4eb2 dm_put_device +EXPORT_SYMBOL vmlinux 0xc25218a8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0xc25705a0 vfs_rename +EXPORT_SYMBOL vmlinux 0xc26bf77d xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xc2778b42 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0xc295c0a4 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2c57857 iunique +EXPORT_SYMBOL vmlinux 0xc2d0e105 request_key +EXPORT_SYMBOL vmlinux 0xc2d18681 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xc2d75446 qdisc_destroy +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc3083478 vme_register_driver +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc315ea31 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xc340f9c7 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xc34fbe37 vme_master_request +EXPORT_SYMBOL vmlinux 0xc361b1d7 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xc364ae22 iomem_resource +EXPORT_SYMBOL vmlinux 0xc3704528 nf_log_set +EXPORT_SYMBOL vmlinux 0xc37df91f __nla_put_64bit +EXPORT_SYMBOL vmlinux 0xc394bbc8 d_drop +EXPORT_SYMBOL vmlinux 0xc3967219 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xc39998b3 check_disk_change +EXPORT_SYMBOL vmlinux 0xc3aadb02 napi_gro_flush +EXPORT_SYMBOL vmlinux 0xc3b7d744 device_add_disk +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3ef537c __frontswap_test +EXPORT_SYMBOL vmlinux 0xc3f5fd8e end_page_writeback +EXPORT_SYMBOL vmlinux 0xc40d4c07 vfs_iter_read +EXPORT_SYMBOL vmlinux 0xc40de757 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xc41b9774 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xc41ba683 ps2_end_command +EXPORT_SYMBOL vmlinux 0xc42166a7 pci_disable_device +EXPORT_SYMBOL vmlinux 0xc42ea90d dev_change_flags +EXPORT_SYMBOL vmlinux 0xc43bf758 skb_queue_purge +EXPORT_SYMBOL vmlinux 0xc44416b9 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xc44705f6 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xc4760327 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xc47a70bc __d_drop +EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xc481bc54 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4a5c467 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0xc4cb2b05 ppp_unit_number +EXPORT_SYMBOL vmlinux 0xc4d2314c vm_event_states +EXPORT_SYMBOL vmlinux 0xc4e262cf filemap_check_errors +EXPORT_SYMBOL vmlinux 0xc4e3794b pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xc4ec55de mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xc524d95f agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0xc53cade1 fasync_helper +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc55de23c percpu_counter_set +EXPORT_SYMBOL vmlinux 0xc5857adf cdrom_check_events +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5a396fd udplite_table +EXPORT_SYMBOL vmlinux 0xc5c82bfe kobject_del +EXPORT_SYMBOL vmlinux 0xc5cbe54d input_allocate_device +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5db7e75 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xc5de0630 d_add +EXPORT_SYMBOL vmlinux 0xc5f165dc grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc609f5f1 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc65e05c6 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xc663b075 __ioremap +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc666f592 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xc66a3144 mmc_request_done +EXPORT_SYMBOL vmlinux 0xc677f97e __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xc68668f1 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xc69ad5a0 __brelse +EXPORT_SYMBOL vmlinux 0xc6b22c71 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xc6c818cb blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc70c37aa pci_find_hose_for_OF_device +EXPORT_SYMBOL vmlinux 0xc70efb2a ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc739ba88 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0xc74b66a2 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc75c54ae block_write_end +EXPORT_SYMBOL vmlinux 0xc766f057 blk_rq_init +EXPORT_SYMBOL vmlinux 0xc77d43d3 mark_info_dirty +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7c7165c of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xc7c8d408 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xc7df95f8 module_refcount +EXPORT_SYMBOL vmlinux 0xc7f1cd41 udp_proc_register +EXPORT_SYMBOL vmlinux 0xc7f39b15 irq_stat +EXPORT_SYMBOL vmlinux 0xc80eea2b sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xc815e9e8 set_wb_congested +EXPORT_SYMBOL vmlinux 0xc839afea netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xc847c85a sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc8571bcb idr_for_each +EXPORT_SYMBOL vmlinux 0xc864be84 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xc871750f machine_id +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8845bb2 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc8a8b021 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8aa5913 vio_disable_interrupts +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8be81a7 skb_make_writable +EXPORT_SYMBOL vmlinux 0xc8c7a3cd param_get_short +EXPORT_SYMBOL vmlinux 0xc8d4782c __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xc8f02283 lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0xc908bd74 cur_cpu_spec +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc927783a flow_cache_fini +EXPORT_SYMBOL vmlinux 0xc9287b52 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run +EXPORT_SYMBOL vmlinux 0xc980b7df scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xc989b3e4 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9a6464a stop_tty +EXPORT_SYMBOL vmlinux 0xc9b065dc tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xc9b51adc ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xc9c658af nvm_unregister_tgt_type +EXPORT_SYMBOL vmlinux 0xc9d1a732 seq_puts +EXPORT_SYMBOL vmlinux 0xc9dc3d79 __pte_frag_size_shift +EXPORT_SYMBOL vmlinux 0xc9eb578f d_move +EXPORT_SYMBOL vmlinux 0xca10d51a of_create_pci_dev +EXPORT_SYMBOL vmlinux 0xca19d7a7 pnv_pci_get_gpu_dev +EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get +EXPORT_SYMBOL vmlinux 0xca35573b tty_register_device +EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state +EXPORT_SYMBOL vmlinux 0xca4570be d_obtain_root +EXPORT_SYMBOL vmlinux 0xca49566e vm_mmap +EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent +EXPORT_SYMBOL vmlinux 0xca644a68 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xca6e55d1 simple_statfs +EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order +EXPORT_SYMBOL vmlinux 0xca8c8a0f kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xca8eba27 kobject_set_name +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty +EXPORT_SYMBOL vmlinux 0xcad455c0 vme_bus_num +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaffc2dd tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb06b83f ps2_drain +EXPORT_SYMBOL vmlinux 0xcb2214bf skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xcb227ef7 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0xcb324bb2 tty_set_operations +EXPORT_SYMBOL vmlinux 0xcb3c8a7d ___ratelimit +EXPORT_SYMBOL vmlinux 0xcb8481af xfrm_state_update +EXPORT_SYMBOL vmlinux 0xcb84abcd of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xcb8cdf3a phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0xcb903f00 mdiobus_scan +EXPORT_SYMBOL vmlinux 0xcb915810 vga_get +EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcb982a56 sock_wmalloc +EXPORT_SYMBOL vmlinux 0xcb9c8568 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xcba81700 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xcbb41f15 __quota_error +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc3b94e eeh_check_failure +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbce848c netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xcbd4e152 kernel_param_lock +EXPORT_SYMBOL vmlinux 0xcbe2ce6d ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xcc088ab9 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xcc159920 mmu_hash_ops +EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xcc215573 flex_array_shrink +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc73d3ac dma_set_mask +EXPORT_SYMBOL vmlinux 0xcc9009bd vmemmap +EXPORT_SYMBOL vmlinux 0xccaf381e skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccc313dc kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0xccc76d56 phy_print_status +EXPORT_SYMBOL vmlinux 0xccce2e1a __bio_clone_fast +EXPORT_SYMBOL vmlinux 0xcced5614 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xccee543d unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0xccf41fd8 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xccf7f0b4 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0xcd03df5e resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd3d2aa0 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0xcd3db7d9 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xcd43b864 pipe_lock +EXPORT_SYMBOL vmlinux 0xcd6b98a6 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xcd84b263 init_buffer +EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xcd89bf89 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xcd93bffb elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xcdbdce11 blk_queue_split +EXPORT_SYMBOL vmlinux 0xcdbf16e1 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcde10a7d udp_disconnect +EXPORT_SYMBOL vmlinux 0xcde1c15d inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xcdfae840 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xce118a00 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xce1f33ed param_get_string +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce3b3f09 profile_pc +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce558e34 soft_cursor +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift +EXPORT_SYMBOL vmlinux 0xce7bfe70 vm_brk +EXPORT_SYMBOL vmlinux 0xce8b9800 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xce937bf4 f_setown +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free +EXPORT_SYMBOL vmlinux 0xceb6b5d4 __dst_free +EXPORT_SYMBOL vmlinux 0xceb8b87d xfrm_init_state +EXPORT_SYMBOL vmlinux 0xceba4e63 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0xcebb32c1 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xced777cb proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcefdd79b gen_pool_alloc_algo +EXPORT_SYMBOL vmlinux 0xcf0ec632 of_get_next_parent +EXPORT_SYMBOL vmlinux 0xcf16f65f posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0xcf38b0ae nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xcf3fea89 kern_path_create +EXPORT_SYMBOL vmlinux 0xcf4800c0 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xcf530d16 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xcf58c17f pnv_cxl_release_hwirq_ranges +EXPORT_SYMBOL vmlinux 0xcf5f837e netlink_net_capable +EXPORT_SYMBOL vmlinux 0xcf6d74b9 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xcf8c0002 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xcfa59d87 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xcfc84a32 sock_efree +EXPORT_SYMBOL vmlinux 0xcfd9d3e8 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xcfe72738 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xcfe96ae3 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xd003ec43 sk_dst_check +EXPORT_SYMBOL vmlinux 0xd008e006 fd_install +EXPORT_SYMBOL vmlinux 0xd01bb748 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xd01e14f1 pci_iomap +EXPORT_SYMBOL vmlinux 0xd02ebef5 dump_align +EXPORT_SYMBOL vmlinux 0xd0378b70 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xd03b3145 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xd040d377 param_set_bint +EXPORT_SYMBOL vmlinux 0xd051a4d7 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xd090ee76 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0xd099e162 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xd0a25eb1 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0bf8ba1 have_submounts +EXPORT_SYMBOL vmlinux 0xd0c6e720 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xd0d74918 send_sig +EXPORT_SYMBOL vmlinux 0xd0ded721 blk_fetch_request +EXPORT_SYMBOL vmlinux 0xd0e573d2 jbd2_journal_inode_add_wait +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd11556f9 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xd116e4b5 input_set_capability +EXPORT_SYMBOL vmlinux 0xd11a02e4 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xd1262886 rtas_data_buf +EXPORT_SYMBOL vmlinux 0xd12ccd2e mdio_device_create +EXPORT_SYMBOL vmlinux 0xd1370be3 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xd13df541 generic_update_time +EXPORT_SYMBOL vmlinux 0xd14b3a1f of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0xd15395e2 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xd1732382 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd19ad3ba vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xd1a008ab dquot_disable +EXPORT_SYMBOL vmlinux 0xd1a4f9b4 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1ea518e skb_find_text +EXPORT_SYMBOL vmlinux 0xd1fc08e3 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xd204889c bio_chain +EXPORT_SYMBOL vmlinux 0xd209a538 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0xd20c3937 flex_array_get +EXPORT_SYMBOL vmlinux 0xd216282a inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xd2222124 mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0xd22e2c35 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd27bcc6f fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xd27ddcfe current_fs_time +EXPORT_SYMBOL vmlinux 0xd28f250f scsi_register_interface +EXPORT_SYMBOL vmlinux 0xd290dea9 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xd2a4b452 user_revoke +EXPORT_SYMBOL vmlinux 0xd2aaf374 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xd2adaf89 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2f9ab92 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xd2fdd02c jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xd3000626 keyring_clear +EXPORT_SYMBOL vmlinux 0xd301420a pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xd3056318 inode_init_owner +EXPORT_SYMBOL vmlinux 0xd305b90a vme_lm_request +EXPORT_SYMBOL vmlinux 0xd311b0f5 rwsem_down_write_failed_killable +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd347bb3b mdio_device_free +EXPORT_SYMBOL vmlinux 0xd3641909 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd370cf0a uart_register_driver +EXPORT_SYMBOL vmlinux 0xd3784f66 __blk_end_request +EXPORT_SYMBOL vmlinux 0xd3a7f11c inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3fe6dad filp_close +EXPORT_SYMBOL vmlinux 0xd43c80be pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xd43e093b update_region +EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm +EXPORT_SYMBOL vmlinux 0xd458006d tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd465def8 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xd48c6a72 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed +EXPORT_SYMBOL vmlinux 0xd4a85e08 __blk_run_queue +EXPORT_SYMBOL vmlinux 0xd4abc5d2 d_tmpfile +EXPORT_SYMBOL vmlinux 0xd4adec9d __get_user_pages +EXPORT_SYMBOL vmlinux 0xd4aefe16 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0xd4bf93af frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xd4dfcc77 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xd4f26e2a xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0xd51e8e8d get_acl +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd5401cf3 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0xd559e2bc bio_put +EXPORT_SYMBOL vmlinux 0xd56130b4 down_read +EXPORT_SYMBOL vmlinux 0xd569f5f7 seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xd56b3960 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xd5866ccf twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd595ee76 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xd59dc2f5 da903x_query_status +EXPORT_SYMBOL vmlinux 0xd5ab6db4 of_get_pci_address +EXPORT_SYMBOL vmlinux 0xd5bf8cb4 radix__flush_tlb_range +EXPORT_SYMBOL vmlinux 0xd5e36f5c kobject_put +EXPORT_SYMBOL vmlinux 0xd5e807cd blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xd5eab93a set_user_nice +EXPORT_SYMBOL vmlinux 0xd5f74436 fscrypt_get_encryption_info +EXPORT_SYMBOL vmlinux 0xd5f9713f simple_write_begin +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd610f0dc dquot_quota_off +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd63b2af6 follow_up +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68fb998 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xd69ef97d posix_acl_alloc +EXPORT_SYMBOL vmlinux 0xd6cba44d kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0xd6df874f mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fd4053 __arch_hweight32 +EXPORT_SYMBOL vmlinux 0xd71d1acf jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xd72393b8 vfs_mknod +EXPORT_SYMBOL vmlinux 0xd7240f20 sk_stream_error +EXPORT_SYMBOL vmlinux 0xd72f029a netpoll_print_options +EXPORT_SYMBOL vmlinux 0xd732e113 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0xd758ad2a tty_register_driver +EXPORT_SYMBOL vmlinux 0xd758b547 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd761a383 ioremap_prot +EXPORT_SYMBOL vmlinux 0xd76ba337 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xd773837c devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xd774f851 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xd786c0ea plpar_hcall9 +EXPORT_SYMBOL vmlinux 0xd7a81fb8 follow_down_one +EXPORT_SYMBOL vmlinux 0xd7bb31fb generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xd7c2b7d0 register_quota_format +EXPORT_SYMBOL vmlinux 0xd7c3d959 __scm_send +EXPORT_SYMBOL vmlinux 0xd7c5291b scsi_execute +EXPORT_SYMBOL vmlinux 0xd7cd5d56 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ed9a0f of_device_is_available +EXPORT_SYMBOL vmlinux 0xd7f57255 radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xd80c65ab skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xd80ce0e7 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xd812c640 of_platform_device_create +EXPORT_SYMBOL vmlinux 0xd81d7cc0 mount_pseudo +EXPORT_SYMBOL vmlinux 0xd8219a4d dquot_destroy +EXPORT_SYMBOL vmlinux 0xd82331de vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xd831b1bb seq_release_private +EXPORT_SYMBOL vmlinux 0xd838e08f iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xd8450eb3 filemap_flush +EXPORT_SYMBOL vmlinux 0xd865a2bb devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xd865ff47 inet_put_port +EXPORT_SYMBOL vmlinux 0xd876a9f2 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xd881aad7 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a3fe9b vio_find_node +EXPORT_SYMBOL vmlinux 0xd8a5efb6 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8aa01b3 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0xd8b1e4f8 fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xd8bf5c9c mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xd8ddc920 pnv_pci_get_npu_dev +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8e63743 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xd91277c2 ata_link_printk +EXPORT_SYMBOL vmlinux 0xd920f102 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xd9318ff9 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xd9409f77 param_get_ullong +EXPORT_SYMBOL vmlinux 0xd945816f blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xd979e7d1 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0xd97b4638 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xd97e7649 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xd9cea2b1 unregister_shrinker +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9f18747 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xda068044 of_phy_attach +EXPORT_SYMBOL vmlinux 0xda08112a bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xda33e60c gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda6c98ca give_up_console +EXPORT_SYMBOL vmlinux 0xda711674 copy_from_iter +EXPORT_SYMBOL vmlinux 0xda74271b __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda9cf5d2 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xdaa0c535 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xdab02190 __posix_acl_create +EXPORT_SYMBOL vmlinux 0xdabc1ea8 fsl_lbc_find +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdac545b9 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xdac99d9a dev_change_carrier +EXPORT_SYMBOL vmlinux 0xdaddc151 should_remove_suid +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdb01198e fsl_upm_find +EXPORT_SYMBOL vmlinux 0xdb0db6b3 nvm_find_target_type +EXPORT_SYMBOL vmlinux 0xdb10c0dc mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xdb1e8794 ip6_frag_match +EXPORT_SYMBOL vmlinux 0xdb23a983 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xdb293750 pipe_unlock +EXPORT_SYMBOL vmlinux 0xdb2dad2a tty_kref_put +EXPORT_SYMBOL vmlinux 0xdb4341a9 dmam_pool_create +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb790286 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xdb8acf0f lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0xdba9d2f8 of_phy_find_device +EXPORT_SYMBOL vmlinux 0xdbd33240 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xdbd5a853 __neigh_create +EXPORT_SYMBOL vmlinux 0xdbd6732b radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xdbf2a69b phy_suspend +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc10a439 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc232130 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xdc323ef4 blk_integrity_register +EXPORT_SYMBOL vmlinux 0xdc38f255 ppp_dev_name +EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc448e82 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc753aee devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xdc9498dd down +EXPORT_SYMBOL vmlinux 0xdc9865aa i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdccc3cf9 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xdccd6415 bdput +EXPORT_SYMBOL vmlinux 0xdcd73ff0 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xdcec52bc skb_append +EXPORT_SYMBOL vmlinux 0xdd06b213 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xdd096334 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xdd1aa9c9 inode_needs_sync +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd36574c of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0xdd394fc2 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd6b32ad qdisc_reset +EXPORT_SYMBOL vmlinux 0xdd8e2ef5 key_put +EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer +EXPORT_SYMBOL vmlinux 0xdd955144 __debugger +EXPORT_SYMBOL vmlinux 0xdd95645a param_set_ulong +EXPORT_SYMBOL vmlinux 0xdda7b241 key_validate +EXPORT_SYMBOL vmlinux 0xddb2638d get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xddb27817 get_user_pages +EXPORT_SYMBOL vmlinux 0xddb3769b lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xdddc25f3 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xdddce5fb ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xddde760d inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xdde6f9cc follow_pfn +EXPORT_SYMBOL vmlinux 0xdde751d8 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xddf2a7e7 of_phy_connect +EXPORT_SYMBOL vmlinux 0xde011484 compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xde1b09ea devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0xde3e4051 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0xde3facf2 open_exec +EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0xde81c86b inet_getname +EXPORT_SYMBOL vmlinux 0xde897651 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde94a21a bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdeb785d8 flush_dcache_page +EXPORT_SYMBOL vmlinux 0xdedd0cfd cont_write_begin +EXPORT_SYMBOL vmlinux 0xdf071cd2 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0xdf26a0e0 __kfree_skb +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf3dfb98 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xdf547963 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf6a02b0 bioset_free +EXPORT_SYMBOL vmlinux 0xdf9179d3 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf9d95f5 param_ops_long +EXPORT_SYMBOL vmlinux 0xdfa4aa96 seq_lseek +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfca20ec netpoll_setup +EXPORT_SYMBOL vmlinux 0xdfce35ef ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xdfd24fc2 dm_kobject_release +EXPORT_SYMBOL vmlinux 0xdfe39cb7 d_find_alias +EXPORT_SYMBOL vmlinux 0xdff082f8 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe025a8d4 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe07c4408 pci_scan_slot +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe08aa515 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xe08cad22 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xe09517c6 __netif_schedule +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b5f372 proc_create_data +EXPORT_SYMBOL vmlinux 0xe0db77b4 fscrypt_fname_encrypted_size +EXPORT_SYMBOL vmlinux 0xe0dc0238 filemap_map_pages +EXPORT_SYMBOL vmlinux 0xe10003ec rio_query_mport +EXPORT_SYMBOL vmlinux 0xe1221f2f jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe1548c28 iterate_fd +EXPORT_SYMBOL vmlinux 0xe172961c bdev_read_only +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe188857b xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xe18dfab8 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xe1ced524 seq_open +EXPORT_SYMBOL vmlinux 0xe1e38fd2 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xe1ff9b33 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xe200e93c dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe21a149d __serio_register_driver +EXPORT_SYMBOL vmlinux 0xe220ceb8 __debugger_sstep +EXPORT_SYMBOL vmlinux 0xe2249131 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0xe2267334 elv_rb_add +EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL vmlinux 0xe246376a vm_insert_page +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe2585b1d inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xe26b913d ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0xe27182cc bdi_init +EXPORT_SYMBOL vmlinux 0xe277daaf __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xe28375c1 vfs_symlink +EXPORT_SYMBOL vmlinux 0xe293dae0 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xe295ef14 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2a03dc0 posix_lock_file +EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock +EXPORT_SYMBOL vmlinux 0xe2cc4abb sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xe2d4654e param_array_ops +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2da8e08 ip6_frag_init +EXPORT_SYMBOL vmlinux 0xe2e623b0 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xe2ef5d9f __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2fe1cf2 down_write_trylock +EXPORT_SYMBOL vmlinux 0xe2fe3667 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xe314e8fb cpu_core_map +EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0xe31b6c4c dev_add_offload +EXPORT_SYMBOL vmlinux 0xe3668fbe blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xe36f6ff3 nf_afinfo +EXPORT_SYMBOL vmlinux 0xe37569f6 fsync_bdev +EXPORT_SYMBOL vmlinux 0xe375dae3 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xe3938161 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xe3987472 dst_destroy +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3b6899a bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3bafe66 netdev_all_lower_get_next_rcu +EXPORT_SYMBOL vmlinux 0xe3c981a1 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3d970f9 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xe3ec3728 param_set_invbool +EXPORT_SYMBOL vmlinux 0xe3f758e3 tty_vhangup +EXPORT_SYMBOL vmlinux 0xe406b79e of_get_parent +EXPORT_SYMBOL vmlinux 0xe4248ca6 fget_raw +EXPORT_SYMBOL vmlinux 0xe43a681b find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xe43fb3ab mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xe4555019 __devm_release_region +EXPORT_SYMBOL vmlinux 0xe46d8313 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xe4827e79 pci_find_bus +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe4a4046d udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xe4bb013f pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xe4e2d7b8 mpage_writepage +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe4f2d9c0 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe4ff034a generic_readlink +EXPORT_SYMBOL vmlinux 0xe501cf54 up_write +EXPORT_SYMBOL vmlinux 0xe508257b inc_node_page_state +EXPORT_SYMBOL vmlinux 0xe50f34f6 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xe51337c0 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xe5163942 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xe51fca5c pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe56d8c96 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xe56f4672 unregister_binfmt +EXPORT_SYMBOL vmlinux 0xe575f9d7 unregister_netdev +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe593e385 vfs_link +EXPORT_SYMBOL vmlinux 0xe5b30ab7 tso_count_descs +EXPORT_SYMBOL vmlinux 0xe5c31680 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5ec9939 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe5eef49c locks_init_lock +EXPORT_SYMBOL vmlinux 0xe60c2c5f jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xe631fbb0 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xe6369d75 nf_log_register +EXPORT_SYMBOL vmlinux 0xe63c4d4a release_sock +EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xe6725914 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xe686e579 pcie_set_mps +EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe6b67b81 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xe6cb08cd __breadahead +EXPORT_SYMBOL vmlinux 0xe6dc0806 fscrypt_pullback_bio_page +EXPORT_SYMBOL vmlinux 0xe6fa2166 compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0xe6fe735c fddi_change_mtu +EXPORT_SYMBOL vmlinux 0xe705966c unregister_key_type +EXPORT_SYMBOL vmlinux 0xe72719c4 xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0xe7499a2e __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xe74bda04 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xe74ea620 mdiobus_read +EXPORT_SYMBOL vmlinux 0xe75a843c d_prune_aliases +EXPORT_SYMBOL vmlinux 0xe76a5543 ___pskb_trim +EXPORT_SYMBOL vmlinux 0xe77e14fe nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xe79955b2 con_copy_unimap +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7b1413b audit_log_start +EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7ee210b input_grab_device +EXPORT_SYMBOL vmlinux 0xe7eea14b pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xe7f5becb devm_memremap +EXPORT_SYMBOL vmlinux 0xe813576e of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe82cc752 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xe846d0d7 kvmppc_hv_find_lock_hpte +EXPORT_SYMBOL vmlinux 0xe863357f kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xe874d233 generic_file_open +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe87d94d3 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xe8913e86 make_kprojid +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8b2da1f skb_store_bits +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8bf0ad6 rtnl_create_link +EXPORT_SYMBOL vmlinux 0xe8c438f3 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xe8cbd4e6 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xe8cfeb92 netlink_capable +EXPORT_SYMBOL vmlinux 0xe8d48318 skb_free_datagram +EXPORT_SYMBOL vmlinux 0xe8d599b0 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xe8eacdb0 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 +EXPORT_SYMBOL vmlinux 0xe908a48b pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xe913ff02 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe92e6375 inc_nlink +EXPORT_SYMBOL vmlinux 0xe930e6da nvm_get_blk +EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95cc679 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0xe961868e swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0xe96a4c30 __dquot_free_space +EXPORT_SYMBOL vmlinux 0xe971876a on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0xe983fc58 __skb_checksum +EXPORT_SYMBOL vmlinux 0xe98800d9 try_to_release_page +EXPORT_SYMBOL vmlinux 0xe9ac783b nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xe9bcaf7a skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xe9c24646 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0xe9c847db km_query +EXPORT_SYMBOL vmlinux 0xe9cc76fc pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xe9ceab9e skb_vlan_push +EXPORT_SYMBOL vmlinux 0xe9d160dc key_invalidate +EXPORT_SYMBOL vmlinux 0xe9f0f4e5 blk_run_queue +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9f9ac2a sock_from_file +EXPORT_SYMBOL vmlinux 0xe9fe79a5 arp_tbl +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea34276d __lock_page +EXPORT_SYMBOL vmlinux 0xea35602d vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xea3a9a0e __i2c_transfer +EXPORT_SYMBOL vmlinux 0xea71229e __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xea753446 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea7d8e02 register_gifconf +EXPORT_SYMBOL vmlinux 0xea816bcd ptp_clock_index +EXPORT_SYMBOL vmlinux 0xea8d37a0 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xea945e9c insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xeab7c8da tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xeadf4bab inode_permission +EXPORT_SYMBOL vmlinux 0xeaee7aaf arp_send +EXPORT_SYMBOL vmlinux 0xeafd154f param_get_uint +EXPORT_SYMBOL vmlinux 0xeb0278d3 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xeb126ecf qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xeb142e95 get_io_context +EXPORT_SYMBOL vmlinux 0xeb2156fc inet_stream_connect +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb88f297 neigh_destroy +EXPORT_SYMBOL vmlinux 0xeb8c7b7b cxl_use_count +EXPORT_SYMBOL vmlinux 0xeb9c72e3 serio_bus +EXPORT_SYMBOL vmlinux 0xeba2a1f7 rtas_indicator_present +EXPORT_SYMBOL vmlinux 0xeba82399 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xeba90fca unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xebaa11d2 inet_frags_init +EXPORT_SYMBOL vmlinux 0xebbf19d0 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0xebc5016a dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0xebcab3a6 ppc_pci_io +EXPORT_SYMBOL vmlinux 0xebd55ff0 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xebf88890 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xebf99d14 revalidate_disk +EXPORT_SYMBOL vmlinux 0xec02d8c2 param_get_ushort +EXPORT_SYMBOL vmlinux 0xec2af164 seq_putc +EXPORT_SYMBOL vmlinux 0xec554c89 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xec5b9e45 follow_down +EXPORT_SYMBOL vmlinux 0xec77f6c8 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xec809cbe agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xec87751b jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xec92bd30 mmc_can_discard +EXPORT_SYMBOL vmlinux 0xec9ab846 param_set_int +EXPORT_SYMBOL vmlinux 0xeca38eb4 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0xecbb926f xor_altivec_3 +EXPORT_SYMBOL vmlinux 0xecd62314 tcp_check_req +EXPORT_SYMBOL vmlinux 0xecd982a2 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xecdb1774 phy_attached_info +EXPORT_SYMBOL vmlinux 0xecde338c seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xeceed919 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xed008f6a agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0xed38ef3b tty_throttle +EXPORT_SYMBOL vmlinux 0xed525882 brioctl_set +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed819112 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xed88fe24 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0xed8a2d8d netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xed8d6925 sock_i_ino +EXPORT_SYMBOL vmlinux 0xed90bde5 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc35e09 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xedd0cd89 radix_tree_delete +EXPORT_SYMBOL vmlinux 0xedd9e0ae mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xede2c153 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0xededd370 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xedfb8485 sk_mc_loop +EXPORT_SYMBOL vmlinux 0xee0637dd filp_clone_open +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee31bc15 of_node_put +EXPORT_SYMBOL vmlinux 0xee341a1f sk_reset_timer +EXPORT_SYMBOL vmlinux 0xee4bbea3 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xee7709e7 scsi_remove_target +EXPORT_SYMBOL vmlinux 0xee831944 seq_hex_dump +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeb06308 scsi_device_put +EXPORT_SYMBOL vmlinux 0xeeb2e904 tso_start +EXPORT_SYMBOL vmlinux 0xeeb5a70f phy_device_create +EXPORT_SYMBOL vmlinux 0xeeb7c9e7 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xeec662df blk_get_request +EXPORT_SYMBOL vmlinux 0xeed5bcca __pud_table_size +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeef39a83 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xef24b729 netif_rx +EXPORT_SYMBOL vmlinux 0xef2931f8 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xef4d7468 sget +EXPORT_SYMBOL vmlinux 0xef5dfc0d padata_alloc_possible +EXPORT_SYMBOL vmlinux 0xef5e5aef sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xef60c38a nvm_register +EXPORT_SYMBOL vmlinux 0xef6ad01f max8998_write_reg +EXPORT_SYMBOL vmlinux 0xef819874 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xef830de1 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xef886102 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xef990b5e dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xef9e25e0 pci_request_region +EXPORT_SYMBOL vmlinux 0xef9f5b3a tty_unlock +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefd6b975 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xefdce0ba netdev_change_features +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefde1bbe flush_dcache_range +EXPORT_SYMBOL vmlinux 0xefe665f5 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xeff777c9 gen_pool_free +EXPORT_SYMBOL vmlinux 0xeffd5f9f netdev_printk +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf02a3558 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xf038162a gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xf03c4de8 pci_set_master +EXPORT_SYMBOL vmlinux 0xf0425da4 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xf048c69e to_nd_btt +EXPORT_SYMBOL vmlinux 0xf04da572 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0xf04f08ce mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf06020bb init_net +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0xf070b515 phy_drivers_register +EXPORT_SYMBOL vmlinux 0xf07fe9a0 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf08c862d __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0a001dc textsearch_unregister +EXPORT_SYMBOL vmlinux 0xf0b24505 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xf0b25ff5 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xf0b52947 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xf0cd2b3a write_cache_pages +EXPORT_SYMBOL vmlinux 0xf0d536b2 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xf0e739d6 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf1104380 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible +EXPORT_SYMBOL vmlinux 0xf12dc3c7 __register_chrdev +EXPORT_SYMBOL vmlinux 0xf12e2d6d of_device_register +EXPORT_SYMBOL vmlinux 0xf1349228 swake_up_locked +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf151bba3 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xf1521367 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xf17b7c2c scm_detach_fds +EXPORT_SYMBOL vmlinux 0xf183189b __ioremap_at +EXPORT_SYMBOL vmlinux 0xf183f34d of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xf190070c clear_user_page +EXPORT_SYMBOL vmlinux 0xf1906147 phy_device_free +EXPORT_SYMBOL vmlinux 0xf19492a5 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf19e1e8f scsi_add_device +EXPORT_SYMBOL vmlinux 0xf1bcc1c0 phy_init_hw +EXPORT_SYMBOL vmlinux 0xf1c453c3 seq_printf +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf204c965 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf2122e25 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xf21c258c ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xf22881e8 lg_local_lock +EXPORT_SYMBOL vmlinux 0xf22e1736 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xf232ba28 pagevec_lookup +EXPORT_SYMBOL vmlinux 0xf23efb6d ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf24a1acf input_get_keycode +EXPORT_SYMBOL vmlinux 0xf27063ac scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xf2b8d291 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xf2bcaf53 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2d27eef kmem_cache_free +EXPORT_SYMBOL vmlinux 0xf2f445f4 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xf306002f inet_sendmsg +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf31a9736 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0xf31e2869 agp_bind_memory +EXPORT_SYMBOL vmlinux 0xf322a206 bit_waitqueue +EXPORT_SYMBOL vmlinux 0xf325d2fd pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf3475c51 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xf34a47a0 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf36459ce jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xf36e2430 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xf37e569f inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0xf3822b6b inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xf3a05e96 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xf3ab3710 skb_checksum +EXPORT_SYMBOL vmlinux 0xf3b72539 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xf3c9794e pagecache_get_page +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3e86933 dst_init +EXPORT_SYMBOL vmlinux 0xf3ea5258 fsl_lbc_ctrl_dev +EXPORT_SYMBOL vmlinux 0xf3f1ba4f pcibios_align_resource +EXPORT_SYMBOL vmlinux 0xf41d823f blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xf4236fd4 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xf42aa150 dquot_commit +EXPORT_SYMBOL vmlinux 0xf437ab70 down_read_trylock +EXPORT_SYMBOL vmlinux 0xf43ba56c tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xf441877f fence_array_create +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf44d179b simple_getattr +EXPORT_SYMBOL vmlinux 0xf4523338 iov_iter_init +EXPORT_SYMBOL vmlinux 0xf452b458 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0xf45b86b4 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xf4631830 nd_device_unregister +EXPORT_SYMBOL vmlinux 0xf472017a swake_up_all +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4768125 netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0xf4ba90cf tcp_child_process +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4be2ba5 compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xf4bfc984 security_path_mknod +EXPORT_SYMBOL vmlinux 0xf4c698e3 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xf4da93c9 simple_pin_fs +EXPORT_SYMBOL vmlinux 0xf4e1bac4 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0xf4ed52a0 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf50a2ef2 kfree_skb_list +EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xf51bf88b nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf5222143 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf542a2a6 sock_setsockopt +EXPORT_SYMBOL vmlinux 0xf55b3b3d __arch_hweight16 +EXPORT_SYMBOL vmlinux 0xf567056f md_error +EXPORT_SYMBOL vmlinux 0xf56dfec4 nvm_bb_tbl_fold +EXPORT_SYMBOL vmlinux 0xf5854738 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xf58b46e8 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0xf59895dc md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xf5992a5f simple_unlink +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io +EXPORT_SYMBOL vmlinux 0xf5ac22aa nd_device_register +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5cc7981 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5eee74e nvm_register_tgt_type +EXPORT_SYMBOL vmlinux 0xf5fcab67 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xf635d6a5 km_state_notify +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf6786213 security_path_mkdir +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf682ba45 d_find_any_alias +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf68b8b62 inet_frag_find +EXPORT_SYMBOL vmlinux 0xf68cdf1a skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xf69cf4c1 agp_backend_release +EXPORT_SYMBOL vmlinux 0xf6a45c73 prepare_to_swait +EXPORT_SYMBOL vmlinux 0xf6c71fec get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xf6cd8cb4 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xf6dd6ce6 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xf6e97e48 param_ops_uint +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f062ab mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xf6fae1db sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf71659df dquot_resume +EXPORT_SYMBOL vmlinux 0xf7186c72 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0xf71cdbf0 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xf720e68f pagecache_write_end +EXPORT_SYMBOL vmlinux 0xf7443b8b netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xf753efd0 sync_blockdev +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf75f425a inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xf79d0341 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0xf79ffe05 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xf7a4f4d1 textsearch_prepare +EXPORT_SYMBOL vmlinux 0xf7b1f08f input_event +EXPORT_SYMBOL vmlinux 0xf7b4b88f mac_find_mode +EXPORT_SYMBOL vmlinux 0xf7b75535 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xf7e0ce1b fscrypt_decrypt_page +EXPORT_SYMBOL vmlinux 0xf80e43f0 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xf81103ea radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf819e6b2 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0xf81ea6c6 lock_rename +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf835524a neigh_ifdown +EXPORT_SYMBOL vmlinux 0xf8422081 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xf84fe2e2 __getblk_slow +EXPORT_SYMBOL vmlinux 0xf85b76a7 alloc_file +EXPORT_SYMBOL vmlinux 0xf8670686 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xf86d272d pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0xf872cd49 srp_rport_get +EXPORT_SYMBOL vmlinux 0xf88b7caf prepare_creds +EXPORT_SYMBOL vmlinux 0xf8999ba5 find_vma +EXPORT_SYMBOL vmlinux 0xf89ec5c5 rt6_lookup +EXPORT_SYMBOL vmlinux 0xf8cadeca sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0xf8d0be2c nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xf8dc2b49 netdev_crit +EXPORT_SYMBOL vmlinux 0xf8e6661d register_shrinker +EXPORT_SYMBOL vmlinux 0xf8e8448f neigh_connected_output +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf8f9f3f2 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0xf90116b9 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xf9038bcf smp_call_function_many +EXPORT_SYMBOL vmlinux 0xf91dbf81 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xf92c6294 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xf9478109 truncate_setsize +EXPORT_SYMBOL vmlinux 0xf9553d7c scsi_remove_host +EXPORT_SYMBOL vmlinux 0xf95cc3e5 page_waitqueue +EXPORT_SYMBOL vmlinux 0xf95f6afa nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xf96e0a01 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9a4b009 scsi_print_result +EXPORT_SYMBOL vmlinux 0xf9af12f1 softnet_data +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9d6daa2 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xf9dac233 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xf9e7cc16 iput +EXPORT_SYMBOL vmlinux 0xf9e8a8c7 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xf9f67c55 dquot_get_state +EXPORT_SYMBOL vmlinux 0xf9f94ae4 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0xfa0730eb locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xfa2ee9e6 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xfa310810 md_cluster_mod +EXPORT_SYMBOL vmlinux 0xfa39b300 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5bcf35 mod_timer +EXPORT_SYMBOL vmlinux 0xfa90928b kill_pgrp +EXPORT_SYMBOL vmlinux 0xfac5144e set_groups +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfad41f53 downgrade_write +EXPORT_SYMBOL vmlinux 0xfafaeacf dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0xfb03d87e inet_release +EXPORT_SYMBOL vmlinux 0xfb04e2db passthru_features_check +EXPORT_SYMBOL vmlinux 0xfb08a376 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0xfb138a2c iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xfb360197 sock_init_data +EXPORT_SYMBOL vmlinux 0xfb429614 fb_blank +EXPORT_SYMBOL vmlinux 0xfb44c01b devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0xfb472806 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0xfb6770cf arch_free_page +EXPORT_SYMBOL vmlinux 0xfb68694e md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb6bba11 __scsi_add_device +EXPORT_SYMBOL vmlinux 0xfb74df8c pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xfb7be9d1 fscrypt_process_policy +EXPORT_SYMBOL vmlinux 0xfb8c30b8 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xfb8c6372 compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfba387ff xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbb0f908 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbd979f1 kthread_bind +EXPORT_SYMBOL vmlinux 0xfbda0fb7 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xfbf49242 generic_ro_fops +EXPORT_SYMBOL vmlinux 0xfc012cf9 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xfc01de8b scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc2244d4 nf_log_packet +EXPORT_SYMBOL vmlinux 0xfc299381 mmc_power_save_host +EXPORT_SYMBOL vmlinux 0xfc33b1ec pci_find_capability +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node +EXPORT_SYMBOL vmlinux 0xfc4b2528 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xfc7080ff mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xfc85d13d blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xfc90b933 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xfc992512 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd01dbea seq_path +EXPORT_SYMBOL vmlinux 0xfd23c382 bioset_create +EXPORT_SYMBOL vmlinux 0xfd25162f inet_del_protocol +EXPORT_SYMBOL vmlinux 0xfd48afc9 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xfd490dff inet6_add_offload +EXPORT_SYMBOL vmlinux 0xfd4a1346 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0xfd795b5b __block_write_full_page +EXPORT_SYMBOL vmlinux 0xfd821307 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0xfd87fae5 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xfd94f1f7 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfda2daa0 d_rehash +EXPORT_SYMBOL vmlinux 0xfdab5e30 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdbefaf1 gen_pool_create +EXPORT_SYMBOL vmlinux 0xfdc3ee65 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0xfdd74798 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xfde7c813 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xfde7f526 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp +EXPORT_SYMBOL vmlinux 0xfdf79c93 napi_get_frags +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfdfcdd5f __csum_partial +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe068bc0 sg_miter_start +EXPORT_SYMBOL vmlinux 0xfe0d8d72 serio_reconnect +EXPORT_SYMBOL vmlinux 0xfe18b966 file_open_root +EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids +EXPORT_SYMBOL vmlinux 0xfe276594 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0xfe533af7 of_node_get +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe60ba23 force_sig +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe80cae1 uuid_be_to_bin +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe97751e mmc_erase +EXPORT_SYMBOL vmlinux 0xfe9869cb ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0xfea20dcf netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xfea7072c agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0xfea735ab d_lookup +EXPORT_SYMBOL vmlinux 0xfeb70f88 set_cached_acl +EXPORT_SYMBOL vmlinux 0xfed8c462 pci_pme_active +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfeefb3dc blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xfef92abe devm_gpio_free +EXPORT_SYMBOL vmlinux 0xfefb06b7 of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0xff1765c7 rtas_call +EXPORT_SYMBOL vmlinux 0xff1dfd76 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff350191 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xff4544a3 submit_bio_wait +EXPORT_SYMBOL vmlinux 0xff508066 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xff57db0a kill_block_super +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6969de from_kgid_munged +EXPORT_SYMBOL vmlinux 0xff897a27 bdi_destroy +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff95f760 pci_pme_capable +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffc2edc7 pnv_pci_get_phb_node +EXPORT_SYMBOL vmlinux 0xffcb8e12 inet_accept +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffe690fd udp_table +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x037233c0 kvmppc_sanity_check +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x04697d23 kvmppc_h_stuff_tce +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x04b81707 kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0545fff4 gfn_to_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0735a7f4 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0bc0402c kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0c7f3ddb kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0f66a61d kvm_put_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x11635b37 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x13517256 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x14847dc3 kvmppc_xics_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x14b22a7b kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x14f74557 kvm_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1c871688 kvmppc_core_queue_program +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1f7d371c kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x21a7c6b5 kvmppc_emulate_mmio +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x24c5e0a3 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x27962e68 vcpu_put +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x280f59bb gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2c82ce97 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2cb86b54 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2cf54529 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2dc46a90 kvm_unmap_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3019bd20 kvm_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3033551e mark_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3108471a kvmppc_h_put_tce +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x319f4909 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x33ef3739 kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x34334a44 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x39ed23d3 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3cd10885 vcpu_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x40430137 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x40cf6cad kvmppc_pr_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x48d53a23 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x48d55790 kvmppc_xics_set_mapped +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4918436c kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4f59a294 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x54c8d486 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5dbf3a2a kvmppc_xics_clr_mapped +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6159ab95 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x62381935 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x65a4eaa9 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x671e64e8 kvmppc_set_msr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x692a1d80 kvm_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6979b132 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6a6d4d00 __tracepoint_kvm_ppc_instr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6c2dce6a kvmppc_handle_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x72c20542 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x72de96a7 kvmppc_load_last_inst +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x733939b1 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x76549e41 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7f514f78 kvmppc_h_logical_ci_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x83d1d3b5 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8789a593 kvmppc_book3s_queue_irqprio +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x89b040b2 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8f6ffc12 kvmppc_hv_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x91c9f1c3 kvmppc_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x932b98c6 kvmppc_gpa_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9684f761 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x99ab0663 kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9e46906a kvmppc_ld +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa3730564 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa6d6a425 kvmppc_core_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa80facf1 kvmppc_kvm_pv +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa8ab9746 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xab59d373 kvmppc_free_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xae4b40a0 gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb68827fc kvm_get_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbcf1ed4a kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbf409523 kvmppc_unfixup_split_real +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc081bdcd kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc70e4b59 kvmppc_claim_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc8d7ee71 kvmppc_xics_rm_complete +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc8dc9425 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcc44961f kvmppc_alloc_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcd2eb27e kvmppc_core_dequeue_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcdf3b22a kvmppc_st +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xce5219d8 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcf38df4e kvm_get_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd24466a6 kvmppc_rtas_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd499999b gfn_to_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd684fb54 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd7aa3f87 kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdbb4bbbb kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdbcade06 kvmppc_handle_store +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe0b86526 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe6bce8d0 kvmppc_h_put_tce_indirect +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe79933bc kvmppc_core_pending_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe807eb9d kvmppc_core_queue_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xeab9e4dd __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf48a2948 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf48c750f kvm_read_guest_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf4da3546 kvmppc_init_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfaf5f7ff kvmppc_h_logical_ci_store +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xff8f8853 kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm-pr 0xcab2d3e7 kvmppc_emulate_instruction +EXPORT_SYMBOL_GPL crypto/af_alg 0x0987bdc0 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x3e84c56a af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x51c698d1 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x599efbc7 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x5b6ddac3 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x6294fd25 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x8062cf80 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x867ef26a af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x97be577a af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xf1db8275 af_alg_accept +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xfa84c5a1 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x01ae1652 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x256500eb async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x50e17d4d async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x7a3913f1 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x94c72406 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xae4c3295 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xe0cbb8bd __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf929783d async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x6851b0ed async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x800408af async_xor +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x3f1344e4 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xaf80bd23 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xa03713e5 cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 +EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x54e8d764 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x7ccc1a95 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x24c86f01 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x271ef208 cryptd_ablkcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x7683ad23 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xa279c433 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xa3cb2699 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xab0b52a5 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xb1b9f03e cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xcad40ba5 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xd6fe1ed0 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xe8b36638 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xea2dea67 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xeebfde4d cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xefebb4ef cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey +EXPORT_SYMBOL_GPL crypto/dh_generic 0x9edeb49b crypto_dh_decode_key +EXPORT_SYMBOL_GPL crypto/dh_generic 0xa9c31fb3 crypto_dh_key_len +EXPORT_SYMBOL_GPL crypto/dh_generic 0xb25efd9f crypto_dh_encode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x597307c5 crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table +EXPORT_SYMBOL_GPL crypto/lrw 0xc10f81d2 lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x0f28f240 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0x284ce970 mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x41926e41 mcryptd_ahash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x97afd183 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5d0a95d8 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x68a15c31 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x97cfa769 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xd8e226f0 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x86962a26 serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/twofish_common 0x462ab182 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x050c4d8d ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1fc87a4c ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2317c672 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2e87be0d ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3997fbf0 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3c3bb726 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5c6bf4de ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x625b251f ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x66893a81 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6d7fb870 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x71115869 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x734e3b12 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x97d90e7a ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa8454a7d ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb1f6b641 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbccd290c ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc6ab25ff ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc76acb99 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcf5e8189 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd127a49f ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd8cab36f ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdd254b85 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfccf2c61 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x01721cde ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x09cd83fc ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1912b438 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x32538b02 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3974bfad ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4ee4be37 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x51541891 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6b876d8c ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x75ad5c05 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa600525a ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xbdad11f0 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd1b4ee50 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xdf7739eb ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x63ebc36c __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x3fa54409 sis_info133_for_sata +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-spmi 0x862f77de __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xba57619a __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xcc87e149 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xcd64b7fe __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x02520bf5 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x029981f5 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0b588f39 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1394586c bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1c576eac bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x256e56f5 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x33ade8fd bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3bddfce5 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x43df0c74 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4660a41f bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4adab440 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x710cf3c4 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x80658f0b bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8504117b bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x863c2028 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x918e43c3 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x934b2135 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa1021efa bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa3842fa3 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa93d48c4 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb5abfd50 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe7c35ef5 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe9a9662e bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfb6fa6b2 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x139992b9 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5d4fe82c btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x61340421 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9d7bc905 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd83fa1fe btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xed65beb5 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x11ccd0a2 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x16ccd154 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1832d41e btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1c39a16e btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x259f7242 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x40f620c6 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x70a01665 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x72dae92f btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7e93236d btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x91f96b39 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x97250eee btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xada268f7 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe6027aa0 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe6f3c1fc btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x01cd6fd6 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x10690f3c btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6631d208 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x68c406ea btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6f3c5b57 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9ee328ba btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xaaef4041 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd9b8ade0 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdf21aaea btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf15c9d99 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfa3321eb btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xb7cf85d7 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xfb93fbfd qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x85d1ccc1 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x3d24c884 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/char/tpm/tpm_tis_core 0x429b60c4 tpm_tis_remove +EXPORT_SYMBOL_GPL drivers/char/tpm/tpm_tis_core 0x8b824ed7 tpm_tis_resume +EXPORT_SYMBOL_GPL drivers/char/tpm/tpm_tis_core 0xe59ba121 tpm_tis_core_init +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x27c16980 nx842_crypto_exit +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x2d3fe27f nx842_crypto_decompress +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x497f2f15 nx842_crypto_compress +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x53cc9012 nx842_crypto_init +EXPORT_SYMBOL_GPL drivers/dax/dax 0x17bce14a devm_create_dax_dev +EXPORT_SYMBOL_GPL drivers/dax/dax 0x25ae61bd alloc_dax_region +EXPORT_SYMBOL_GPL drivers/dax/dax 0x85fc80e9 dax_region_put +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x198c5d37 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1b27739a dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x33c50ece dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xcc34e608 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xeca4ec6f dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xb199902c hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xc9f4babe hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x24fe89af vchan_tx_desc_free +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x32363597 vchan_init +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x60d09f8d vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x6375977b vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xcf974e74 vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x02dd22de edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x04d6debe edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0a8a531f edac_stop_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0da6a470 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1204095c edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x206e70c9 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4155742c edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x497fd3dc edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x517b353f find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x51a7fa96 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x580d88b7 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6008c967 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x68aad38e edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6fa7bff5 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7c1b0d6d edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x80594d17 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8a55dbf7 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8fc7c1c0 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x934ca351 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa3695636 edac_queue_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa92325ff edac_mod_work +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb1d8ae62 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbf375dac edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xcc4ae95d edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd17f5aed edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd1cfc89e edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x17d31185 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x31ba1de6 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3b41b4f3 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x59a47df0 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa1c3ed5e fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf63867d6 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x66163bbd bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x28a96b68 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x8363fd2e __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x01239b96 drm_gem_cma_prime_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1379ffad of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x16b92617 drm_gem_cma_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2c4d6c84 drm_gem_cma_prime_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4cb706bf drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5584dc6b drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x58f19efe drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x723de9bf drm_gem_cma_describe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x72fa6de7 drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8a5581e3 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8bc8014e drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaa617a28 drm_gem_cma_prime_vunmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbea55c94 drm_gem_cma_prime_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc2a72856 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcc16e0ba drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd3a84d1d drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe878641a drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf17b1cb9 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfcff497c drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe68b6a6 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1148b623 drm_fbdev_cma_fini +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x497629db drm_fbdev_cma_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6ecae305 drm_fb_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa6622468 drm_fbdev_cma_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb2c912af drm_fbdev_cma_hotplug_event +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc085bc07 drm_fb_cma_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc2941044 drm_fb_cma_debugfs_show +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc2a4ac4b drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcc337fd5 drm_fbdev_cma_restore_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xd4a3abac ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xdc3a52b6 ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xf70ced84 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/hid/hid 0x02e6920a hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0340e905 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0f0ef7b0 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x18268272 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1a639980 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1f04002c hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x296f47ca hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3c5e6a59 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x419a1a40 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4a2e39d9 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4cf3b115 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5979fcfa hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x636ab255 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x675abe44 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6ca31ff9 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x70af75a4 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x774d8a25 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x785dafcc hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x79bd9a8e hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7dc1cc80 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x816e10ea hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x81b604dd hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x95b24c1b hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9bc826d3 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa0661455 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa42e2970 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaeb47e84 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbb7d25a4 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd57445db hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdc1ce68e hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdcc3114d hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe3873d2d hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe5477b05 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf5df05cf hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfba1dddd hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xff8c86c3 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xa9247917 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x15f3fe33 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x165d9e72 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x272d54db roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x88bb892c roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa62977db roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd8ac6382 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x07261105 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x34bac867 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x37fbf548 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x54a31c15 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x54aed8ae sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xad1a6709 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xafb2b365 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc92ecbec sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfae5a14c sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xfc396c6c hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x11cd6aa2 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x33f31a7a hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4269ac01 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x48b74da0 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4b5e126e hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4cbdba92 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x584d7c89 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5daf004c hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6a5cc2e6 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x718385d0 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x75fe4a44 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8a415efe hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x954b2d58 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x97ce1f2f hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdbcdc763 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdd422e29 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xeb5a3f6d hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf57ca8d2 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x6d39a99f adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x939df796 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xb9b1003e adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x10f118df pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x114a9cde pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1231b6c2 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1a064553 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x275605ac pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3c91ea51 pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4173080f pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x494a145d pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x51351f4f pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x57e8b982 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7810f1bd pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x841ecef5 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x97a59515 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa981258e pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xcf6d1334 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x12f2a61e intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x426858fd intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x46c2f9fb intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7cfb7bee intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xaa373104 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xbf154fb7 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xce618c63 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x514f4dfd stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5dd2a701 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8b4542cf stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9e38c851 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfcf60a25 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x0c15c0e4 i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x206a3666 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x7d7e3910 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x883ef34f i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xc024f2ac i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x46eaacda i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x70a618c6 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xbeb37786 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xf7ad8bb1 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x206263bc i2c_setup_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x865095c8 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xbdd84a07 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xe1292195 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x1cc4d8a3 bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x6cab0d9f bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x9a906665 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xed5f10b0 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x4ca8606f mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x5464afcf mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x5552539a mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2c240153 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6050589d ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x63a96cf3 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x68aa17d0 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x87673a92 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x96840c9e ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9c81cd1c ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf699a12c ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf851ab9f ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/twl4030-madc 0xb1be4a75 twl4030_madc_conversion +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x1fe0afe8 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 0xaad6c8d3 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x39e7b640 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xbacf70a8 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x3763b809 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x684f98a0 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x7a3319ca bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x1ea398cf adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x25894960 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x279f721d adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2ac42735 adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x312eeb59 adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6eab6fb3 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb0959aea adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xbba4e540 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc141e95d adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd34b6a3e adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xdb9e264c adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xec7121b6 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x2316ea98 bmi160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x8773c125 bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x4cca84ff inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x57b0f6cd inv_mpu6050_set_power_itg +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x64566590 inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xa0da3059 inv_mpu_core_remove +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x00806d82 iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x04460d5b devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x05841323 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0782531b iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x084003d7 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x201ec98d iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x23e6bb61 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2855daa6 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2cad7902 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x303987f5 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x31985cd0 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x55f5073d devm_iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x61cfed94 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x639c8154 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x68c4c7e2 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6e87a68c devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7ded5aa9 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9ff68eeb devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa38417ad iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa386cd0b devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa3f9ebe1 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaf36a6c4 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb3db482c iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbb4e3766 devm_iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbef15be1 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbfcf852d iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc2efd35c iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc69102c3 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8948eb1 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8cdd122 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcc35e5a0 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcec4ad96 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xda1655e0 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe80727b2 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeb7ac1fe iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf16683fa iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf53cfd8f devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfef3ad80 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0xe7e840b5 mpl115_probe +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/sw/rxe/rdma_rxe 0x54a018b3 rxe_dev_put +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x14da54b7 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x5d83b2cf matrix_keypad_parse_of_params +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x3b8afec2 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 0x0398999d rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x13302e5e rmi_get_register_desc_item +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x14dbbe43 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1d432fc0 rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1d8e8b2d rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1f50a977 rmi_read_pdt_entry +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x52749d50 rmi_2d_sensor_set_input_params +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5c550dfa rmi_register_desc_calc_size +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6e4b8de4 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7059825a rmi_register_desc_calc_reg_offset +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x71162cf6 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x72851ee1 rmi_process_interrupt_requests +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x74621127 rmi_read_register_desc +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7fe0d433 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8a2ce518 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa11deddd rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xca6b5794 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd2b2911c rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe14e39f2 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x46ed894c cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x709c57a9 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xa186959b cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x26c0022f cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x659e05f3 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x91460eba cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xd2bcb376 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x506c0be9 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x62578d52 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xb425f94d tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd2fe96f0 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0516ece2 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x19093859 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x47414873 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6d56b677 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7e114d1a wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xadcf52d4 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc2dc9881 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc9bcec7c wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd402f126 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe023f77d wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe21a1f66 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe683b448 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x01312bbc ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x291a3023 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x34a27377 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x66554d31 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x687e828e ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb7a00844 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb969356f ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd5731b77 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe661dd6a ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x10baaaa9 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2a48d318 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x314a7804 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x35a431a2 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x47b56139 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5144805d gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7f36e7ec gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x878d7146 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8fafa1fe gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8fe764be gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x92a223e1 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xac1714b5 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc3e6b2ae gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd47733ba gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd5ddc4de gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe1587ffb gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe7cb9ec6 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x04cd079a led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x367c4b22 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9a78617b led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb1392509 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb47ea009 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xdd303420 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x24a7313b lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2535fe42 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4010eb59 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x407fd12b lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x871c8dcc lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x963e6645 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x99d14d95 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb9a8c878 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbd6db2b9 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc9a0471d lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xfd6545d0 lp55xx_read +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 0x173c010e wf_get_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x45357532 wf_register_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x7135559b wf_unregister_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xb98631a7 wf_register_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xe2127638 wf_put_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xe90f8565 wf_get_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xea1d0dee wf_put_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xfef75490 wf_unregister_sensor +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x03f33cd2 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x07efd9ee mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x23c13b3d chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x254a37c9 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2e161ed8 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2f419f29 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x3ebc3df4 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x576d2036 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5fb4b0d6 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x628cbb3a mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x763de936 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7684f955 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9756b8c6 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xbd7795f7 mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x07b0caf6 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1bcb69cf __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x290dee5b __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x29bfa0b4 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2e9a0300 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x350f0b52 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3eabc650 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x40978466 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4797ee5e __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4c5dce08 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51c85a21 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5930cf1d __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cb40ec5 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6d024748 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6f4bb251 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7a8a162a __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7c234702 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x898239dd __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x940edb75 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x94287194 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9dcb7c83 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9fb22838 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa4f27010 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7c2e5d1 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbb4a3f4a __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd4abe767 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9dc9cfa __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda147480 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe16ef8f4 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe43c667b __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf16c2227 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x141e5046 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x26d1bb4f dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3db64b9e dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x42741423 dm_cell_visit_release +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 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 0xbca99abb dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc1b744eb dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc4d4e51f 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 0xe09f0d7f dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe9295846 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3a97723e dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +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 0x9310ba06 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa448e19f dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +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-cache 0x05476ffe dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0d5035be dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x24e2dd74 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7f642550 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8e840565 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xb5fb5a17 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc9ca214d dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x91f36a50 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xd0d9972a 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 0x170ed3b9 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x2bb7fe6a dm_rh_delay +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 0x4430764e dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5cea4af4 dm_region_hash_create +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 0x8f53239f dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa3115bac dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state +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 0xddae01f2 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key +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 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x17c36f29 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +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 0x32b5f546 dm_array_empty +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 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42dbdfc3 dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49b35849 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x55b4bd4d dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk +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 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit +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 0x827a42f4 dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify +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 0x966a8838 dm_btree_lookup +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 0x9f624559 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xafeda29f dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd29923fb dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd722d7d4 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf375d009 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf5455120 dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0x00096a0f cec_set_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0x4961a844 cec_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0xbff6533d cec_phys_addr_validate +EXPORT_SYMBOL_GPL drivers/media/cec-edid 0xd2f2eac1 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0383b68b saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x04c14c5b saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x07efefe1 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x352a6d91 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3cbfd33e saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x51c563ad saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb0e89d03 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb869dcd8 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xdbc8ce62 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe9e06540 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x202d1a02 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3bfb7fd7 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x49413d7a saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x50b6fbf1 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x52e4d3a0 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x9ddbb256 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf2a5aeb1 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x10e929fd smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x18b7a771 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2a753a5a smscore_getbuffer +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 0x48d8165a smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4a1befba smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4c3dcada smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5b81e5af smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5db3882f sms_board_setup +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 0x909cf415 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x94708456 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x97220670 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c02f0ae smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xabb9809c smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc43e8c3f smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcbb22d07 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xce1f4c50 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xefbb9cf9 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x0756995d tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x0b63430e tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x1c236f52 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x395504e9 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4cf9e178 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x5c15f12d tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6da054cc tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7527c0ad tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x89685ab4 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x8deb2d91 tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x9e9e5267 tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xbbf641fb tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xe01d21d2 tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf26d0c08 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x46b36bd6 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xf3c4698e cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xf07d19e8 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x048d0619 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/media 0x0aa1a16b media_entity_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/media 0x0ef27177 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x18402ec2 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x1f92e1cd media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0x313eb473 media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x3a0a8b14 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/media 0x422e9d49 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0x4f454eb9 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/media 0x510a35d8 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/media 0x54d84142 media_device_get_devres +EXPORT_SYMBOL_GPL drivers/media/media 0x63172722 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x6ce36fd0 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x73eed168 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/media 0x76874b3d media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x804b6996 media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0x9564f674 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0x970399c4 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x99d6cd00 media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0xa9b77922 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/media 0xabd3ac46 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xb22d4e00 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/media 0xb40b3d8c media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0xb7a46750 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/media 0xc5e8ad3f media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0xc98beec1 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0xca3e9f2e media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/media 0xd590e14f __media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0xd5a67e33 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xdb5860c8 __media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0xdc581289 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/media 0xe1feaaca media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/media 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xea46ccae media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0xeeebd2a2 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/media 0xeef81f46 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/media 0xf26ca9d5 media_entity_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xf71b2cc2 media_device_init +EXPORT_SYMBOL_GPL drivers/media/media 0xf90a6bf8 media_device_find_devres +EXPORT_SYMBOL_GPL drivers/media/media 0xfa76c2c5 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x89448c4d cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x01003c44 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0719bdfb mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1b6233f5 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1c481e1a mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x219e22dc mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x22f48544 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2a500639 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2f7a32a5 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3eb2274b mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4158806d mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4dcafa44 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6a4bb013 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x78452d10 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x829cbc25 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8c78ac5c mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x96ec5d85 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9da3a26a mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd5a3a390 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xef44b9fb mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x08f45249 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1655401d saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x18fe9424 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x41117b23 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x43cca641 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4bd880b0 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x538360e1 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x60ba7d97 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x647e88e6 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6dbe847e saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x701e0a56 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7f3e21e2 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x82e5a04b saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8eaf6c53 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa04ee410 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb27180b5 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb3e3d465 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdfa795fb saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xff67497c saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4905cd46 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4b4234a2 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x585976d1 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 0x95c09420 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xad0d8b33 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xcdcbf9db ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xdcda2512 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3af4d4e5 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3b427f62 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x490bd11c xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x6cfbc923 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb4842dca xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xcb2f06c1 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xdf4e7983 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xee5c08de xvip_clr_and_set +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 0xf79f7213 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x897f981c radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xa24ffd8f radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x036dd71e rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x06a8becc rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x18aa42d4 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1cde8968 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x27edd4ce rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x31790fc9 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x528254e1 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5971eb1b ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5e5f8df5 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7b8a1230 rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7f402803 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x83af8998 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x956023bf rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa6713a66 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb7bd519e rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc44cd182 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd448f56f rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xea0ccc77 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf50668a4 rc_close +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x47a01dfa mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xd27fd077 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x3cace22d mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xbac0c6be r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x0e1f1dd6 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x502cde7d tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x18d25f4c tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xcf2c906c tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x49e06036 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x8f032628 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x8fab7974 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x6faa9416 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xf77375c4 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x4702788e simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0d598438 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x22fa8b41 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2349b6fa cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2496e833 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x27a86024 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3685e40e cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x374bfe8a cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x76038028 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x84fb9f43 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x944b5c54 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa4740905 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaa477c2e is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb1371b02 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd0c69507 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd823b0aa cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdf4a73f9 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe8e0215a cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe8f1b7f1 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf0d94a57 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf6c57afc cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xea8dcc11 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xdc0b850a mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x002c0312 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0417bdeb em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x06e9939e em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x15169b47 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x170b0a8e em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7737d067 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8b05daa9 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8b3a73dc em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x94ac7d0a em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9afc76ff em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9cdf8b52 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa27545d0 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xaf8fa9d3 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb5173637 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbf4f5675 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcc5de027 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd8be537d em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xebc8e031 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfc2672a4 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x290a572f tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x59fece77 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x5f8eee04 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x983ca759 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x08f37e3d v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x2db26634 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x33dcb474 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x62722401 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xb3084a6d v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xe035930d v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x363ad524 v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4103badb v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x5491c182 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x6f344bb9 v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae15a915 v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xb0891da2 v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xdfa5a008 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf0e1988c v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf98d0f9d v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x0ef4f935 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xeaf49657 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x10a0c544 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x16106a3c v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x224e8061 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x27f28080 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5ff4c425 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7d19f127 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x845875d9 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x87a44d09 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x89120cb0 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8efc891f v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x91f13a7b v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x939348e6 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x94880a8f v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9dde76bb v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb29b9f58 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb749d638 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb91e4c92 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbc951f96 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc1ba04bc v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xca387a99 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xce3a7e18 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcfdaa748 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd2d6a1d1 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe3561d52 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeb4f4926 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfaf643b1 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfebedf58 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x11a1c8b6 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x144ab153 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1e8bf59e videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2309aa64 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x27906e60 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2863a6a1 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x286c6668 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x29a8fb30 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3382ef4e videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3a97e347 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x56eb5822 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x57e53ca0 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x67aefe35 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x73e751b5 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7484ab66 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7d6bfb8c videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8e9c087f videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x995b57f8 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xaadb7737 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbe61ba29 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcc118488 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd0462edc videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd45dfd22 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xeb4ef369 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x641dcb57 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x68d02d2e videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x87df73e0 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xaa4dc43f videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x244e6fe7 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x30e37141 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xa2554f74 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x043fda8c vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x065ac4cf vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x08430b95 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0a43c69d vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0a62ec28 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x356f54b0 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x53a581e2 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6c3e56f9 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x70f437b0 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x79cc97d4 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8b6e1094 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa4fd8b08 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb024f5be vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb8685079 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xbd1a84e7 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xbda572d7 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc52962ad vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd9aa73d4 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xdd74316d vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe7589a62 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe768f5e2 vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xed67cb93 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf684c634 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x20d52195 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x9743e59c vb2_dma_contig_clear_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xf783350a vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xb229992d vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x415c1b8d vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x070d8bad _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x10eef8a1 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x39a55011 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x41547099 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4c602c1e vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4ffa7c76 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x50d563b4 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x579da4cf vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5e541cde vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6a6ae41b vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6f5cfc0e vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6f9159ba vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7539b1e9 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x77305ef0 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8522ca86 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x98d8e36b vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9ea3e062 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa39a30c2 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa892cdfd vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb63020cf vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb96b947d vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbe05af96 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc7c24e08 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc7cb2402 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xddf2ac5f vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdee82098 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xebcf2173 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfd689fe4 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x3cb00fd1 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x107f0eca v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11013602 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11c5f16a v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x132f6b41 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x16acf9c6 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x16ca8fc5 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1bad7f2f v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1f3dc74e v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x29ded27f __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2a09ba80 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2abccb04 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2c2a1818 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2dcb1f71 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3d5ea906 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x41e4e485 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x46558758 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x475f9ec8 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4dd0b220 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50d65b11 v4l2_subdev_free_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x72e17e71 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7c4d89cd v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x85e292d8 v4l2_pipeline_pm_use +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8be91f24 v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9099c32a v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x936c95c7 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x937ecb97 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x954893de v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98be8ec4 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa2a4234b v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa41f8703 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad4ffbcb __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb57d1a0f v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb64d4167 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb9e3016a v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbe02526e v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc70d799d v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcb0f7cb8 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdd881f19 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdff470d9 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe3c3903a v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4a17f70 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf221c734 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf279a5f4 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2aebaae v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf4cc3d41 v4l2_subdev_alloc_pad_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xaa5af237 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xde2a3a98 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xe38e958f pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x18ca8daf da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2004da96 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5d934f3f da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x68c496a1 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb6ced274 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd78bf6d5 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf4086d79 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2639d141 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x639194ae kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6c2e70cc kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x8012c438 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9bfa9439 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xc55b5955 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xc7b5a1b0 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf736b847 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x4346e494 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xdf521848 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xf9f03437 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x18faa827 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x37ceebe7 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x3d30737a lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x719bcbfd lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7ec2d5a8 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc842bade lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xcda7f36b lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x347155ce lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x619eebc9 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x92b2bdcb lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2e9b6f90 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x3c949af8 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6e2124b0 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x985524a5 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa10115c9 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa34ce042 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x014d171c pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0a6d235d pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x11a6e8c9 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1d84ef7a pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5b08ce92 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x747d32d0 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7703d7da pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb027c502 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb2e785df pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb98e4631 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf49e8a8f pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xa0072322 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xf0190861 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x343a1687 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x3c1ea3ed pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x76e1aa80 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x9280cab4 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe47ef9e7 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x01a33234 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x4fca3918 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0a2aa6ab rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0a6f0113 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0e05cb4f rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2303bcca rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2b40ca30 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2cbd504e rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x35353710 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3c01c792 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x41e3575d rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x48577a12 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5c098dc1 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6aff7e54 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x81476818 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8af418e4 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8f2d45e9 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9bb7820b rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xab801e08 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xba95b36e rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcb0f43a6 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe4577adb rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe70d90a8 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xef83b7f8 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xfb8af537 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xff11bdbd rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x092bb057 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0ada34ec rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x17cdf908 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x339024ea rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x34ce49d2 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4b92477e rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5943242e rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x65da0512 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x696d3da6 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x804cece1 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x87d4fc9b rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc97a580b rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xdca7cd7e rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x01ef833b si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x02e1b528 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0599a001 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0629a410 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0ff4adc1 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1502ca09 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1ab83eaa si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x219963d4 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3922cdd7 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x498717d2 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4994e525 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x524caf1d si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x61fd7353 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x651bc63b si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6966728d devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x71959a1e si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7b7d421e si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7ec1918a si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8287d4f7 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8918a51f si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8b5feeb0 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x963de496 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaa6fcef7 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xab4902d9 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xab9ab239 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaebbf16d si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc5d3447d si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc989c1ef si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcb0e3642 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd27ef5b2 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdb058ab0 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdca3b60a si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe60eb0f9 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeb080a11 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x13dfa3a1 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x23fa6985 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x4198f85c sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x4bb75162 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xc579479d sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x2865980b am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x38259158 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xb45f824d am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xd41e6993 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x19e0b545 tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x6f4dad86 tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x84d9dd57 tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xd151455b tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x0b044c95 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x3b8fc183 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x8a60eb9c tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xe825e9ee tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x8c6e97e3 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x048069cd bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x065bc0a0 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x1008892e bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xcb10767b bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x770cc939 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x7f8813ab cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x8b2d4023 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xda11ab70 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x04956941 cxl_map_afu_irq +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x0693796d cxl_get_fd +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x0a600798 cxl_dev_context_init +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x0b084cef cxl_start_work +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x116b5c89 cxl_check_and_switch_mode +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x1e2bbb97 cxl_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x24e6ed42 cxl_process_element +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x29dc5397 cxl_unmap_afu_irq +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x2c562836 cxl_set_driver_ops +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x304b4d6f cxl_psa_map +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x525176c5 cxl_free_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x78d6e46e cxl_fd_read +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7f37fc18 cxl_set_priv +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8740bc47 cxl_psa_unmap +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8a0721a6 cxl_fops_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x9674a62e cxl_context_events_pending +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x9ea8bbbf cxl_get_priv +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa5061398 cxl_set_master +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa717996b cxl_set_translation_mode +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa9a2933f cxl_fd_mmap +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xae35341d cxl_fd_open +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xafc35448 cxl_fd_ioctl +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xb27f4b5a cxl_slot_is_supported +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xb8fca455 cxl_afu_reset +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xb9bff6b6 cxl_allocate_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xc74ac783 cxl_get_max_irqs_per_process +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xcb855de2 cxl_pci_to_cfg_record +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xcc37cb2d cxl_set_max_irqs_per_process +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xce11563a cxl_perst_reloads_same_image +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd1d1c596 cxl_stop_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe32586f9 cxl_fd_poll +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe99d19da cxl_release_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xeab16683 cxl_start_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xec54aba0 cxl_pci_to_afu +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xf125e782 cxl_fd_release +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xf60b3c00 cxl_read_adapter_vpd +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x1a1b5249 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x2feda75b oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3227a28e oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7dc9dddd oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xb2c66001 oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xc8b5a524 oslec_free +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0xd370f679 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x27cb133b eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x793fc8de eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x822222db eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x98bb5a22 eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xdb9ca14b eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x23a09115 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3c7c66fe enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3e8facb8 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa48c4c23 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc454e566 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcc089d75 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcfd381f6 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf58c9831 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2db09122 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x46c5574d lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4be046d9 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa4b5cb2e lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb0942fa7 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbe460c71 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xcc3ef974 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf9e8b7aa lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x31bb761f st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xc80b36cf st_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0e821d47 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0ff6c137 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x308914ff sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x493f94ea sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4db835c7 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x722f8d10 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x754e94d3 sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x85c21708 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8686bb3f __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa1c8bbfe sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa57504ff sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa9362dcc sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc0adb752 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd362df23 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe764f632 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xeb458e83 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf3680c09 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf62faa92 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf876f774 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x043d2c8d sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x16c7867a sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x375d1a08 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x6f84889b sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8ca648ea sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa199e8b4 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf2e1094a sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x41d6c584 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x83e1c5fa cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xbcc8e012 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x50a5bd60 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xa35c72e6 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xdd0e3936 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x329b1461 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x07d581eb cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xc8aec3c0 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xf304f9f1 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/maps/physmap_of_versatile 0x1c98fa4d of_flash_probe_versatile +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x03ad1cd7 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x03dc2e7a mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x08cde67b mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0e44d987 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0f4ba37d mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x158e6f5f mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1611d824 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x179edac2 mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x26ba4d3a mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x26dd462a mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x304e50d7 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x371c64ec register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x37861900 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3c0829d1 mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3c5df402 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x44b666db mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4570cd69 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x457c9d6c deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4bb67d95 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4fef0813 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50ba1b69 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x52d8b89a mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5ba40d86 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5efb1e67 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x62b2c62b mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x67c25272 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6df2d49f mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7243b9b6 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x73e8b917 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x741b1bca __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7524fd84 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7a445efe mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x85c4bdb4 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9639826f mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9b421c89 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9fca5d65 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9fe7ee27 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa69eb9ca mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xae824f91 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb46b35ee mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb9097f1a mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbff9e8f7 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc027415f mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc051654d mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc1b6670d __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcc35926b unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd55a6c09 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xde3d10a4 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdfd67022 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe063e0c8 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf4623c25 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfd231e1b mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x46e16bcb deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x9afc0a92 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xbdd0608e add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xc7020c8c mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xea9b7309 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x49b4b1a3 nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x7d961c4e nand_ooblayout_sp_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xc569f339 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xec00f069 nand_ooblayout_lp_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0xdbec360f sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x5ce3cfe7 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x84133d03 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x953f35ba spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x09f1e7b2 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0f0c7d00 ubi_leb_read_sg +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 0x449a41d4 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x77e05d20 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7990208f ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x886e2ccd ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa42d5dd4 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xaa2e2ec8 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc9ab8c53 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdfc6d85c ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe74462df ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xeaf53591 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf6e21398 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfc4834c4 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x1f7f8c14 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x7f3cf079 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2c9afb82 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x36d8669a free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x387cf1b2 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x681e90be c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6a0ad897 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbf3f0a82 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x03687b1d alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x07cee4bc free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x288ecf65 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x39aab3e9 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x425e421a can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4951382a can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x51f059d2 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x70bfbfc7 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7100e8ad alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x72a9e7e3 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9a074758 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa6eb1e98 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc3f76bec open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc9879bcd can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xca173cd9 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd219c3cd register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xeb66b717 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfa1f4b83 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x248616b5 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x2d1f64bb alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x6e4a06da free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x73310e0d register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x12392434 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x2d49cf65 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x7ce00fe7 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xedeb09f4 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x42d44749 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xd6be772c arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x007066ad mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d8f41bd mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10c11360 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1229275b mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x134b9870 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1364df79 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13c0ea72 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16b99492 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x179eec90 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18e7c184 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b66098c __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c85723e mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ee8ac37 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f6d19d4 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2042a78c mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x231a61b5 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24116e39 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24bfbd92 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27ffcd2a mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x282e2c51 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28f7540d mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29579e00 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x296b0919 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e011ba3 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30db2e5c mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33dedd10 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35bc6f4e mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38a7b7ca mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x392e50a9 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3990e5ce mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fc907e4 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x414cd8f5 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41d921b3 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42672205 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43c0d6da mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4707d1f1 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47569e81 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x479a6afb mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47a0b4de mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47f5ed6e mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x485235bc mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48cf9973 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49dcc86f mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b5320e2 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c130b23 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c541093 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x524e2e08 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53ab8520 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54618147 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54ff151f mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e319d3a mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61874afe __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62cd1efd mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x639290b8 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66221df6 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66aefe95 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66c5a92f mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a58bdf6 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b0fa35f mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d02ce07 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d1323f7 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ee8da02 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f9d9510 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x700f3058 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7086f6fd mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74241bfe mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x774e3779 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ea9f266 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81cb53a9 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85be6423 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8743b301 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x885f9c35 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8dfad37e mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e7fa3a8 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fc9cdcd mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91bc11d3 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92b35bf3 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x943cf100 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94cc2d33 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x954264d2 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9554c80f mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x998a9739 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99d5c427 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a19f41a mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9da2dd87 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9db0e2de mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e73946b mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fcb7b72 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa394848e mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa644ccc5 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa69d3625 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7102fb6 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa88a89f8 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab2dd9d3 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf352f01 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafb58a82 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2b007de mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4a15bce mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb569df22 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb831874e mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb50dacc mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0c6dbf1 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3d943b9 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc416402b mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5f39da7 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca64ee29 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcae6db57 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccaf62d6 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd378a49a mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd55068a7 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5652b2d mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd602fc9b mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd432da2 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfd7d251 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe08628a2 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe398dab5 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeafccd55 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf02a36d2 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3540300 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf47a843e mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4ffb6a8 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf603a584 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7cbc5b9 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfaf6d214 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd59ec58 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff9e81d2 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0041bebc mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x026f996f mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0378f1a5 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04169e97 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0764375a mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x097e7b0d mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a217510 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e585293 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x151ff221 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17124d8f mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19e69d78 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a2c2e4e mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2301efa8 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2664dcae mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a4b5831 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d87bdd3 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e684ed1 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ee9c396 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fc3539d mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3149f779 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36187cbc mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ad42050 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42d86952 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44e9e55b mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c615c45 mlx5_modify_vport_admin_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e52b9e9 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f7b0b4f mlx5_core_alloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x542590ef mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58ed65cb mlx5_query_vport_admin_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e4c1838 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f6dd06e mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x641addf7 mlx5_query_port_autoneg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d794974 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7345bd0c mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76a04e5c mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78a04ae3 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bfb8bf1 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7deba314 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f17249e mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85010420 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8aac9eec mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f1a8c17 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f84101a mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f9246dc mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96dfbc2e mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c77304e mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9dcf8fa9 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9eaf5b48 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa015fa0f mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa167327e mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8297868 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa5cbab0 mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb204a0fc mlx5_nic_vport_disable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7856f68 mlx5_set_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb92839f3 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba5096bd mlx5_core_dealloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbaef978d mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc37abf93 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8b1c105 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9565a23 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9a99514 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf23e026 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfe13ffe mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd20a217c mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd211f90 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5c8a87b mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7ba3fba mlx5_core_query_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed205fc1 mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed948d0e mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4ab5406 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf67c2d53 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa0c1d4e mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfae2fccc mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe48a341 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x5e28947e regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xac144314 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xbd8bc058 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7573dcc1 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x812afd23 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x9fe75c9f stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa7d420b0 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x183bf846 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x21bba855 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x516cd640 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xae2bb062 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x089b2f76 cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x0eaae0a2 cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x0fc23e73 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x11790293 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x7efc3dae cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x851cffc9 cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x85fcd8f2 cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x89a728b7 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb46ee4aa cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd3aa2d92 cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xec08b19a cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf0743322 cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf2ecb68e cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xffa42b55 cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xffb344d9 cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x004c7daa w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x10945b11 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xa9ea04de w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xbabec210 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/geneve 0x75443d3b geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x740f35a3 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xa31e732b macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xba5f3b66 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd177e800 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x97e3c01b macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x01edbe62 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3141dcea bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x68f61dee bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7ceb0221 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x88f2475b bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaa4a4dae bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb14a97f1 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb16a081d bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdc6c1403 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfe146d9f bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x9f45593d mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x3e33a5e1 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6071a78b usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9004a181 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xffe71641 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x034f31e3 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3a26122c cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3a41c85d cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6c8b19fd cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x82f9375f cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbbdda863 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xcdeb3f54 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xcf271f52 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe49d28b2 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x70a4c54b rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x771d9af7 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7ed531f8 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xac346e9b rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe2f94bf0 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf886cf65 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x04d69042 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x08710819 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x21df27d8 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x24ea44e6 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3213df6f usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x33deaccf usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x34bc9c47 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3b531af0 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3ee24ebc usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3f6de309 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4131b71c usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x42d14510 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x45585b85 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5135e5d1 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x60ab4c15 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x67dcdc9a usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x68ffd0b7 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6dc7975a usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6e8e97f5 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8572891f usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x87441c1f usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x960064df usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xaf71391e usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb1111572 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb6246fa4 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb8493a89 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbc86ba0e usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe446d23e usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe5af7b48 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe8ec0c77 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf6fa45e0 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfe0def07 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xc161197d vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x07311807 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0eb5024f i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x12bb802e i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1868ff93 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2861bc60 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5eb46b02 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x71301450 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x76a9f086 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x770ebf80 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x851d0f93 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8ed92f23 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa1ed16ab i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc76626b0 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xca3ab1d3 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd1e39317 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe1dad8ff i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x5b9b3aef libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c9a0468 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4820b7d5 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4f4b2192 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa3e1ed9c il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa90f3309 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x002b2e74 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0132e22a iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x035ccd72 iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x04c511b3 iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0d556623 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0f48dcb7 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x140c3f79 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x193c6aae iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x19a319c0 iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x29516035 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x29cba1c3 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2c9c0d3c __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3ed62787 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3fd90d71 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x41e0017c __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4f420c51 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5143649d iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5e90b610 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6d2e04be __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x752ca837 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x757408fb iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x75ae9672 iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x827afe1b iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8ab14d93 iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8ee2acd6 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x95965ded iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa07377aa iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaf27bffb iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb73f5d86 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb80bd046 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb9777e16 iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbfa8d022 iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbfe20dea iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc67c31ed iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd6b3bea1 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd725a60a iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0d3442b iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe34fd9d6 iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe3dad573 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xed630cdc iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf5aea4a7 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2cef99bc p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x4392e274 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x46e612de p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x52e27311 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x67a3ecc7 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x68e389ed p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6d210416 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x8e4434be p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf10ff757 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x04ccedc2 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x078454ea lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0bfc524c lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x13b80d5e lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2d391e65 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x54cab568 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5ce31e08 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x70a6d248 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x811aa015 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x835d02bc lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8b8cba07 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9dcfc69f lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb39ef4df lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe193d669 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xec6809de lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf7192ef8 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x041befa7 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x43ffb3ae lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x5f3026c4 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x92dea3b4 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x92df297a __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa860f1f9 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 0xf4fb76a5 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xfd6e0279 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0336256a mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1af01c70 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x260c2bf6 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x310dde60 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4252eddf mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4f281cc4 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5b888d51 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x65008286 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6c95b0ba mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6fa38a6a mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x94c1ad9f mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x97dec7fd mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9f89ddbe mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa309c526 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb056372b mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb0f39e20 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc935a575 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcb06642b mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe55002d1 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xeced939e _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x03f0741f rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x03f14b94 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0ac42bc5 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0aeaab22 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2174fbfa rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x290bd1f5 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2ed61311 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x40dd6b78 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x41b3276c rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x43d273be rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x55c6f4c4 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x632c82bf rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6f04131c rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x751e1e13 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7ba12913 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x878f1ec3 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x88dbc75b rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x938b7228 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9674967a rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x96881b49 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9a23fecc rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa0680e53 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xad2dfb7f rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb98d180f rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbae724e4 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbc92381a rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbd555750 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc29fbc39 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc728afc7 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd258b991 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd5b76b03 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdaca7b4a rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe2c3531f rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe70f962c rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe88b2139 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe8c7ea33 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xed76aca6 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf066cc59 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x076b54c6 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x205be194 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2290e7db rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x22dda062 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3393c9ad rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5d487885 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7572efab rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa04f6dde rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa7776ecf rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc1bbccbc rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc292bc62 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd4cf0841 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd8994d4a rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x11809cdd rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x13d290b6 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x175b1494 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1eed4457 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2c224423 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2d5164d6 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3f74ea71 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x40e2dd39 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x49c4b11f rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4a96076a rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4b62d651 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4b720c66 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5007f525 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5c9137e2 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5e01a5f8 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x66308b11 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6aa414a6 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7120651b rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7402d292 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x81ea2a2f rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9064a249 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9414ed07 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9700305c rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9763f16e rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x98aaffa3 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa6f9f11e rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa84d28e5 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa900df92 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb035e2f8 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb8af0e23 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb8c351db rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbed53e06 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc83ccb0f rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xca0e93ed rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcbdb9787 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcc0a0fad rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcdcd346a rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd0242d2a rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd708a3d2 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd80bb3c9 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd9583a44 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe8377691 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe9d399ce rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xebe85fa8 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xec5947d0 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfe84e3ab rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x0a44176b rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x1d0f7f6b rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x2d3115a0 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xa6bd2c78 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xe575ca87 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x0c2354ce rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xc98a4475 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xd3b0c894 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xd78ae224 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x17f5257a rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x54a1b968 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5e4a8277 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7fc8a51e rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x85e49185 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9c4364c3 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbe059346 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc0782263 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc0dad025 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc4b37f09 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc897308d rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc9ce0934 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe57b92d3 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe59ecc4d rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe5be01cb rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xed2cded4 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4986d269 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8a8de30b dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdc052f2b rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfc313cb0 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0045a0f9 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x096dffb4 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x097229d3 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0b3621a6 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0e6c60b8 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x118b9078 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x24c09d32 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x24c6ebdd rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2ce92665 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4642278c rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5886116d rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x69963094 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fee3a6c rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7518a0db rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x76a33397 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x80159009 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8100d48b rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8fb6788c rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x98c30501 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9ed683b3 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf4d6d94 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb34d85a5 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb8aa157d rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcbb3ec44 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd974c03f rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xda9802da rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xea695381 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xea986144 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf6237baa rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0926063d rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x13f5140d rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1ccdf040 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x26d5aee8 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e457d09 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x538d896e rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x55e1b534 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x57d5b8dd rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6597f46f rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b4de810 rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x80cef6ae rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9119c64a read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9caedd22 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa063fe0f rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd172934e rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdedf25a0 rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe1a23b33 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe4813f1f rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe5ba4cf6 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf11ac21c rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf291a918 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x20f62043 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3542e1be rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x5a7f100c rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8856d5d8 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x4d483e66 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xb8a1693e cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xc4078756 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xdeed2be2 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x8b61e7f4 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xa3f355d0 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xafeb52bf nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xfd8fa41f nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x5fdb740b pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xcd455490 pn533_unregister_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdf5213b1 pn533_register_device +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x478b577e st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x588e43db st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7c0d13fc st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x92ac2538 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xbe9641ce st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc6ece7f3 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf07c96a9 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf514b5b6 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x6f6242a4 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x7ba5f006 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x993e5186 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 0x85e28595 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xa0aae48c ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xb3b059fb 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 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 0x163b2138 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x185abbbd nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1d170add nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x327858b1 nvme_max_retries +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x345ed4d9 nvme_queue_async_events +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3799b3e9 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3b02ff50 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x54568fba nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x611bbb04 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6569c03b nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x670e6080 nvme_start_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6905d062 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7f58eca7 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x86349afc nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x99d35202 nvme_put_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaadd38e0 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xabf915bd nvme_init_identify +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaecf13ce nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb09eff5b nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb83c7d40 nvme_requeue_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd0996e0f nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd3dbadd6 nvme_queue_scan +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe7289ff4 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe8e7de3f __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf24c67df nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf958ab24 admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfdd0c8cc nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x066c4aeb nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0773d25b nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x09531036 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x42b6e94f nvmf_get_subsysnqn +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa47ed394 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xca2ea577 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xcb19e856 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe3589482 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xec7ef4c4 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xfa3ed5b0 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0a1e864c nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1cd8c801 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2c319801 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8d1cfc6d nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9e0baf8f nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xae51464e nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf27d1ee8 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x224f51bf nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x26837a2a nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x62a25ad5 devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x66c91d51 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xa5e83770 nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc14a955d of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xd971d07f devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe578b303 nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xfe220140 of_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/pci/hotplug/pnv-php 0x27786936 pnv_php_find_slot +EXPORT_SYMBOL_GPL drivers/pci/hotplug/pnv-php 0x483b8269 pnv_php_set_slot_power_state +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x01cc7086 rpaphp_slot_head +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x4237e468 rpaphp_deregister_slot +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x900fe4bb rpaphp_add_slot +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0xa853a726 rpaphp_get_drc_props +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0x253e5430 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0xc6e3779e bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/bq27xxx_battery 0xd6ce9590 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x1175f056 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xc670f4ba pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xe2fa58df pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x29db6fd5 reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xb1685e74 reboot_mode_register +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x19ac9636 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3548d122 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x93c16f69 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x946fb117 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xd0712735 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x0f56408a wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x5fbbdda6 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7589cc03 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x98916ada wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xee99a122 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf514ecd8 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xc15bed1d wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0055c38d cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x09c10f54 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x10e88f83 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x13b3572f cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1673b4ad cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x186844b4 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x19fbb5e4 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2d0304fe cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2d0f5707 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x33bcb8b1 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x36d0a076 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3b384f63 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3d4eda92 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x474e7463 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4952af62 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4cdebfe7 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5368dd3e cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6004ca58 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x787d24fb cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x78de7703 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7ee59e34 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7f77f554 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8190d81c cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x88502219 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x92ba1226 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9f3d1d5c cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9f809975 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa074001a cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb38e59cd cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb5445c98 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb900219b cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbaa53284 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbb4fbfef cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbe6a55d2 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc10b0adc cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc9b649b0 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd2ec290d cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdca02872 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdcfb8769 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdea6d64f cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe1aa2960 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf2a5a513 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf49fbd37 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf5d8e705 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfa509249 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0083d470 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x14ee15dd fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x23219cd5 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4c3430e9 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4f25a817 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5fb6f2b9 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6a1ba7ab fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa4904682 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xab45aeca fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xab6fe3a7 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb373d37c fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe2b63ec6 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe501e4ea __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf39c6c60 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf75ffda9 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfa9ea2eb fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1127cd6f iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x38376da4 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3c7b66a1 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x478b0378 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xace1f255 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xae56a081 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xef661b6a iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0580a3fb iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x11ebf62d __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x151b2936 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x171ce9fa iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1812c49f iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1b3a6a37 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x25ff224c iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2fdd8382 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x317e2b62 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x41e861d0 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4b00fe15 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4cad922d iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x595f835f iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5b1faaa2 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x64c3516c __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6af20f45 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6b974d7c iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a333e83 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7dc43c99 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d0fbc31 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9a5c49cf iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9c7ce55e iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa1a1e8cf iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa632a238 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa63c0f64 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xab9e47b3 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaf1c5153 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb8ec17a3 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbcd03295 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbd2a7c8f iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc0c8c88e iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc2d96fa8 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc8a8fd48 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcce1715f iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd134ef3d iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd447efc4 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd75dbcb0 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe6433f2f iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf3df0bbf iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf47c4c97 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xff150a88 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0d391f38 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2ad05fdc iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2ed6d952 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x396fe06d iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x45d2911c iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x71104787 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7b77b693 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9147d952 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x96654ef4 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x99ee8e28 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb7d6f278 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcad1352a iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd5421e34 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe3a62329 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe3fb1c30 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf813ee54 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfc8acac5 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0165a6d0 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x196c3bac sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x19c09b32 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x20f9a230 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x22a527de sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2986812f sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x35a3461d sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x55bf09ad sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x60ba5bd3 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x625fea0e sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6c5ef719 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7945c720 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x872d342c sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9462213c sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x94afbf0f sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xad359b90 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbfd16fbf sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc004ff9c sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc07a87af sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xce887ca9 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcfb727a3 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdae88b6d sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xea47e9a5 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xec7d41b2 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x06432bc9 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2031e7f6 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2e063e3b iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x31960b00 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x347ef820 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f67d16c iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f8cfa0b iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4df12ea0 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4e82698c iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4e9f1421 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4ebdf5b8 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5490fa1c iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x54f286d1 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5cf7f588 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5ef9974b iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5f881762 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x670b1db0 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 0x6d6fdfec iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71357016 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7217fc01 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9b458bc2 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xae1ecf75 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xba685b6d iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc27ab05e iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc3cd2b2e iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc5f52ab0 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc75130c2 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc7fef7a8 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc9b46635 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xce7fa8c3 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcef2cb96 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd98f9dc2 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde3991ef iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe06fb3a6 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe1869738 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe9c2c0ac iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xef2f26e3 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf22abec7 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfc216cab iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0ead6726 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1ae71250 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x244133e5 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xba676cec sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x16f34e1d 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 0x41c0872b ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x54a055fc ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x5ca2d6be ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x863d7d67 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc822ab62 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xcc2a9194 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xd7110208 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x4138a292 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x6449ad9f ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x71310984 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x84763cd4 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xa417a1ab ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe4555ff9 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xecc43d6e ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x10ff8ab1 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3e7eb886 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x5ac45de9 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xd52c3fad spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xdfcf584e spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa3633d78 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xb04fe62b dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xb7347d20 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xbcc20061 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x7b4dfa11 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x8e32f97b spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xedd204b2 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0b10b494 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x10b91685 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x115c99ad spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x26633af1 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3c2444b6 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3cb58810 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x450acb31 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x47c5be15 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x65042137 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x68519f5d spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6bab1c7d spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x90318d07 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa49db170 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb8549e27 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc361c8a1 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd17b498b __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf0150a63 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfaee3927 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x64c2ca96 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x23f07fff comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3204d20d comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x324348f6 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x339dc0d4 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x35af1e36 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x35d618f0 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4153c0c7 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x57c6b945 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x597b2ae9 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5c2f8802 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x617e19e9 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x678227a3 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7e19efc7 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7e74c22d comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x831ba38c comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x856e3303 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x89591638 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8d7849de comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9b2aa939 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa69af006 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa9b45ed4 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb32b5a85 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb35b86a0 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb4166567 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xba095d27 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbc05e0e5 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd91c3a86 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe16da21d comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe1c1c4fa comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe76a5439 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf5c04825 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf755a659 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf77cec14 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf934eb66 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xff31d6c9 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x1cfb3af9 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x376c2443 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x80e1e76a comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa35ad19a comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xb6dcc015 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xb9ee30f1 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xf7c37e77 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xfe6b6c66 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x3805be78 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x3b6fea4d comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x78ad9214 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x8756738f comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x8cf31aaf comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xc0e9523d comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0xcf450261 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x5ba4fe10 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xcbdb1ec7 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xaf5e3b7e amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x23e97fc5 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2ae38db3 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2d514b18 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x53d84100 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5bc230da comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x84bc7241 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa3e87756 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc48513cf comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xcc364499 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xcc5aac2f comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xea1b2a1e comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfa27df9d comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfbbf2295 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x026ea535 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x6693c2d1 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xf5957647 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x0d68fcd9 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6815a033 comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x89ee91e3 comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa3d01a85 comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa7ebb8a3 comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0xf5c567b6 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0c17b42a mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x22a099c8 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3688eb10 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7f799c5e mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x828d4fc1 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x85628ca7 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x964da079 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa5c35ed0 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa895d407 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb9e3d8d8 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcb55f332 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xddab3aa2 mite_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe1cdc317 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf0ad16be mite_request_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf5457da1 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf908b1b2 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x783ee230 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xc8f952d9 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x1d42fe28 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x80245849 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x91b2ed3c labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xc54f0ec3 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xf4eee894 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x04f95c0f ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x1e73edd9 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x3b633f7d ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x408dd54e ni_tio_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x4194ff88 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x7b55b96a ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa11bec2e ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xac82eb81 ni_tio_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc1c99787 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xcd766515 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xda731180 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xdc9905ff ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x50b1f162 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x623ce36d ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x8a962f46 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xe3de9ad0 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xef22d2e8 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xf2f8de66 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x015d24f3 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x16752336 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x787d7811 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x97ed989e comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xbcf2d4eb comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe43971a9 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xf7416b2d comedi_close +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0x2f2fdcea ad7606_probe +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0xbfe9ae62 ad7606_remove +EXPORT_SYMBOL_GPL drivers/staging/iio/adc/ad7606 0xf8fff1d1 ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x3524aeca adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/lustre/lnet/libcfs/libcfs 0xe44c317f lustre_insert_debugfs +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x15259a8f ldebugfs_remove +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x2129dbd7 ldebugfs_register_stats +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x35d862f8 ldebugfs_register +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x4cf6e363 lustre_kobj +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x512a4e82 debugfs_lustre_root +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x6c37832e ldebugfs_obd_seq_create +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x7361f894 lprocfs_obd_cleanup +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x73dfd5eb lprocfs_obd_setup +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x77aaa3c2 ldebugfs_seq_create +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0x85c5c67d lustre_sysfs_ops +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xa61cc659 ldebugfs_add_vars +EXPORT_SYMBOL_GPL drivers/staging/lustre/lustre/obdclass/obdclass 0xbcb9f3f9 ldebugfs_add_simple +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x1e566eb1 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x4356ea1b cec_register_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x7721a3df cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0x8e087c7b cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xa5e6f46d cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xb597cd91 cec_transmit_done +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xd20e9c32 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xf553b42e cec_received_msg +EXPORT_SYMBOL_GPL drivers/staging/media/cec/cec 0xf920dd63 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0393cb2b most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1bf8a547 most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x2da1758a most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x45743cdb channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x5aa2fde9 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x7880fea1 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x81bcd869 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9208f12a most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x92a3bee5 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xcbfcccce most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe9183fbe most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf5e8facb most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0d1aa050 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ef1d765 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3654736f spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x378a9057 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6a863e61 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x7f197304 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x84037ff7 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9bf5dd2f spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb35aaab9 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb6c41c71 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc9875eda spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xedc9f93e spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x1ff4499a wilc_chip_sleep_manually +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x2a4c2086 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x76838e84 WILC_DEBUG_LEVEL +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x7beb5f2c wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x94089e23 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xbd6d3ed2 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xc873c98a chip_wakeup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xdcdeb1e3 wilc_netdev_init +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xe251db65 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x44929c09 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x547fd2ea __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xc5a99cda uio_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x1ec44592 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x92130450 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x2883cb49 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x69fdecad ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x2064100f imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x729ad620 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xbf84f993 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x06001d74 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2241f7b8 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2ae2567a ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x9ee7a374 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb472b3fe ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xbd7a337e ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x031cd604 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x20eea12c gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4ff770af gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x50d01b52 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5472723a gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x54b42498 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x62790cde gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6e0fa20b gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7df32f04 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7feb2a19 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x81edca3b gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcd1aeb3a gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd5608922 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd74cef3e gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe83d435f gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x2ba40813 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x5b98fed3 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x16850842 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x921160eb ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xe3c1161e ffs_lock +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 0x1b1cc3af store_cdrom_address +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 0x2af5590a fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d10b6a7 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3080f306 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x355bc139 fsg_show_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 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4beef7e0 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4eccbb16 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x546c7f99 fsg_common_create_luns +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 0x571692e5 fsg_show_cdrom +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 0x795724ce fsg_lun_open +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 0x7ebf88f7 fsg_store_ro +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 0x987bc0cf fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99023bfc fsg_common_put +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9963e5cd 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 0xa123260e fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa46e6443 fsg_common_get +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 0xa72a0a9d fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xaed5e55b fsg_lun_close +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 0xc0d2f29b fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd468f882 fsg_common_set_ops +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 0xfd644199 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xffaaa267 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0efa72e7 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x171ec6a0 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x59b1b642 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5d9ffd32 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x62b1bff4 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x64ac97ad rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6a29eb50 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8696616a rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbfe44881 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc3770acc rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd05ccf86 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd14e116a rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe5b0969d rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xeb64a1a3 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xeea38e58 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x05227688 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1a842e3f usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1b7c15fe usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x24e325c7 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x410a1f31 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x44f6622a unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4d9d0641 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x54fd822e usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5682c4d1 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6a529433 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6ab20172 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x750a08f0 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x787eeccd usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x79749fa9 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x80ea2dea usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x81e8a403 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x92baeef3 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x92f98c05 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x979528a4 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9c5dcef5 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa7548f8f usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa82cd44d usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xae941cf3 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcca0dd06 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd068b9fe usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd5cc7886 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe3de137b usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe60511cf usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xee71849a usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfcbcee94 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x009d1d8d usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0c900b81 usb_ep_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1a69a2d4 usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x26afe91c usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2e9029b3 usb_ep_fifo_flush +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2fbfb7ca usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3022768f usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x36425435 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3a53b0d2 usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3c01002c usb_ep_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x446362bf usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x446b5f9c usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x447b27bb usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5162f30b usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x51a1f264 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x623f8fcd usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6a10cb87 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x703fdb89 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x74f79193 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7d80d202 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x81102503 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x868a91c3 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x88b40e1a usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa582920e usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa86446f4 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xae9dd849 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb1e7179a usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb6fa8d98 usb_ep_fifo_status +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc1565bbb usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc2e4c7c0 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc3956fdd usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xce3d337b usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd16b6bce usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd67d8fa1 usb_ep_set_wedge +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd8d32b10 usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xea69959c usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfef7e181 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x372bad6b ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x4c0f106c ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x26439af8 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x349472db usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x480deb89 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7a085547 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x95819a8d ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x98413829 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc8787c6f usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xda62c2bd usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf229f1b9 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56d31820 musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96919667 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xbb799f54 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x10fd6d6c usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x325bfa89 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x645e29d7 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x865e8be2 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xe8bc47b1 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x4bc384f7 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x6b2a309b usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x09df7dff usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1968d027 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1f692f01 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2b71b2d8 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x52656775 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x662599da usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6e1f40e1 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7168a5cb usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x79a6ba01 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7d44f609 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x898441f1 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9422f7c8 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x95e41bb5 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9ab7141b usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb884ede7 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd2bf7caa usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe4ac2cbe usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe56d15a2 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xec5bbd53 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xef5d3aea usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf1c08f40 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x082de4d8 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1e2092cf usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x34167201 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3db9865d usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4254242e usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x49631109 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4d0cc103 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x55032ad3 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x55e85b77 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x59416873 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x720450b0 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x88290ac6 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8c872bc7 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8cdf79d8 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9f42d2b7 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa4a68448 usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa5348a85 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb776f1fa usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb9f4e355 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbb509b07 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc789d3cb usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcd07397d usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf7e3e144 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfeeecd32 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x10fb9543 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x149e097f usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3497d0b9 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x47970c2d usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x557fcf55 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x70fe22de usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9f30b713 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa93410e0 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbcc3934c usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd0617797 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd5ef81e2 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdb66c3f7 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf41678a4 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0bd816f0 wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x41b36b8f wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x7c3e7fca wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb9cf6f1a __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc2f025e9 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xe31125e8 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xef896b5e wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf487e2e3 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x089512d6 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2b84c4f1 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3a1d591a wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3b570d1a wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x400353ad wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4cda524a wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5f6d4b26 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8b963b78 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9bea4708 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa0512959 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xcd319ddc wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xcf344de5 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xedc6874a wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf53fac0a __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x02c72f1b i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xca74553a i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xe3a41996 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x0ef7607a umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x13dd52b4 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x201291c2 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x23050b93 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x9b4ccff0 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xbe7e1f35 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xc0c042d4 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xff0b186a umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x00549417 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x021f285c uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d78016e __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fc02440 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x12c1f91d uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1e18c6ac uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x202f27a3 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x25406b22 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x29eb2894 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3212ad92 uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x425b0766 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x48c5efe7 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4bd90a18 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5a6541c2 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x60e2c59a uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x62c97497 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x649885f5 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x69cb9856 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x80a78515 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8964ca11 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8a970dc5 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8c073c4f uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8f29d611 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9120fe48 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x920fff7f uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98384b28 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9a14a7e5 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa0b64716 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xad4a714e uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb5109380 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb677f38c uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbf33bf04 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbfdf3141 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe2fcc9c1 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xec27f367 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf0a68da4 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf0ba9d17 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf78a880f uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xffc21bd9 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/whci 0xe678b10f whci_wait_for +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x002913aa vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x02d4ac5e vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0506203c vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0562ee7d vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0ee071fd vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x128cf90c vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x193bf87c vq_iotlb_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x24162fe0 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x327ad3fa vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x380ade3c vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4313a237 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x43ed4ddb vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x44993aa4 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5384d339 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x59d76065 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5bf6807d vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x626b3fb6 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6943e8d5 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6ed1ecd7 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x88848867 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8dd39421 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa264c4ef vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xac965afa vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb21ec937 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb67829c4 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbe40d9aa vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc6c0801d vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc756d3f7 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc9afc6b9 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcfd1b8e4 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd05e98aa vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd2568193 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd43fb9fb vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd6bec263 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdd2cd855 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdfb8d1bc vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe43c0e42 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xee7ea47c vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf9b7b378 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x090765da ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x336bfdcb ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6806c0fe ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa2f25ac8 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb6caa161 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd7139a08 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xdf7ddb77 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x057e3191 auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x29f44928 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x42d9dc3a auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x49f23f29 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x59115cbe auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x60b86f8e auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x6a41ce1f auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd9fa2285 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xde9c201e auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf62388c2 auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xab8268c8 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xb64f1f01 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xfc885d57 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x16786763 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x9dca4a59 sis_free_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x02b8bff7 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x100b2657 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x399d2d4c w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x688f4f16 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb00b96c6 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb30b2999 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc5cf3dbd w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd34f66c3 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xe5fa267f w1_write_8 +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x41171c70 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf30e4fd dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xf9ccd096 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1818b18f nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5d068a7d nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x85692207 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9feb4480 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa4e35fa4 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xcee1be18 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf41b32b2 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00b15e41 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0488d4c9 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x049976d1 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04e27846 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08c9711e nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09c7a3c9 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a8fc6e7 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b7fe3db nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ea45908 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f025c9e nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x106a0cb3 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1127f237 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x112efc80 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1292ebc5 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12bf6192 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x134320f7 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14c32560 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15d47eb3 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1867ce32 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x195a0819 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e54ac3a nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f7c16c4 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x249c62eb nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25f6ca02 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x264b68ed nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28454232 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a5816bd nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a935e30 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b63bab5 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fab261f __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3276176b nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33b8a0e4 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34a932a0 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35976c39 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +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 0x40a492fc nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41cfa6bc nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41f7a68d nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x439a36cf nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44aae0c0 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46e5d0f4 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ebaab4a nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f8e2d6b nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51843341 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57f70391 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x596b558f nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c2dd030 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ce6a225 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ed32460 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f3c6c7a nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61127e31 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x638dd3c4 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x654bd9a7 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6813e0f7 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71ef7e61 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7523607f nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7669352f nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7bc41714 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7bf610c2 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c05a13b nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c675660 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f182e4c nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ff38823 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x803e9fa2 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83d0e97b nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84847822 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85430d30 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89554f2f nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89f59b8e nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d9ed74c nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90ce4f48 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90edcf69 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92b3a231 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93d4ee03 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9471e09d nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x988b678e nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a96cf52 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9abd3697 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bd1ccd1 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c023a84 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c600884 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2386a11 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa28c6256 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2fdd724 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa30ff946 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa547f448 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa662400c nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6b87ee2 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa823420f nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9805753 nfs_commit_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0154d04 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0d055bb nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0d8627c nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2532691 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5602810 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5d023f9 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6831c28 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba2093e6 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb2a1845 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcf17267 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd82c2b6 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd8c94a3 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe3e1791 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1b3159e nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2dadfdf nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3f837e9 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca9501ec nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce0a1f31 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7c7be81 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8aedde7 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda45bdbe nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdaab62de nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf92aee4 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe03c0dbe nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2f33ae6 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2fb9412 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe41b9534 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe915649b nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea1cdb72 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb351104 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef4b359f unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf410cc02 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf54226d2 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7a1c338 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9042379 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9c473b4 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfaf73268 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc4d8761 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcdcc16a put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x1f35fa29 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e11b1a0 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15dd0ad9 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16a26f2c __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x199b8bf5 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1a3574ff nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1a7a0f71 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b84723a nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1da0f1c3 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d2bfea8 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37f05f7a nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x380cce50 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3a53bd99 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d3f3287 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x423b9c6d pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x43cead0e pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x446aea89 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f71ad63 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51f669aa pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5d9bb892 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x677d0da4 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72aeb65d pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x77e6323f pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78488ceb pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x793b5b09 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b4722ae nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83d300cb nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83eb1ee7 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86830f79 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b92acd3 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f2870bf nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x914a522f nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9214f417 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x93332e48 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96f6ceef nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96fcf9fd pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99c69d94 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99cbd5e1 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9adcec26 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa008d94f nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa37a743b pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6fd9704 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa7c4cd9f pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xada5df2d nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb69364cf nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8342a15 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbaf628df pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc95a46b __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc33ef13d pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb92bacf pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce178629 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5b3eb5d nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd753404d pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9024e05 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda961451 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe18cbf23 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe42b2750 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5380868 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xefe558a2 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe49e0b1 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff8f93a5 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfff013c6 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x34e017b1 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x3d3a04e4 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xa2120b76 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x93b35d4c nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc7d26f8d nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36a28a9e 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 0x7eab689f o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x946f4834 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1701c15 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb433a679 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc15fef2a o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4201703 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +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 0xf9870f85 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0b96e0e1 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7602dbc8 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x78d48f45 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x861c4f28 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc2086105 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 0xe079a9d9 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x2ca2d833 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x32ab76a2 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x8bf0a5df ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xb1c8baae ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x2631ea74 torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0x3dec312d _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online +EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0x629840ab _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x96b44bce notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xca6601f9 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 0x201d8ea3 encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x29fa419f decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x0adcb055 base_inv_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x221df614 base_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x4da25bec base_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x63f42b6a base_inv_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x76203267 base_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xca3140ce base_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfa5eee0a base_inv_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xfc02472a base_inv_true_key +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x89333b13 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xdf936247 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x058f21a1 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x08040e45 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x309e1176 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x5bc2d361 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xdb2794ab garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xf05b8268 garp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x04a1b565 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x3f15b50f mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x48853e47 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x4f732023 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x8c27a679 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xf919f4c2 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/stp 0xab9e8a4f stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xf6d6fd8e stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x7c2e0971 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xd6c33bed 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 0xd57cd690 ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x27d6aab1 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3fcd39d2 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x41d54669 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5508d87d l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7206448b l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8db685dd l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9e59e717 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb7aae6e4 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x083e47c7 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x10777fda br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3ebb917a br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x53c5d911 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5cfb2c09 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7388cd2d br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x960e4314 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9f6fe229 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x2ee9a28c nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x5b4f2a26 nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/core/devlink 0x0467e03a devlink_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0x3e125608 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL net/core/devlink 0x5854369c devlink_port_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0x59d6157a devlink_port_type_ib_set +EXPORT_SYMBOL_GPL net/core/devlink 0x638a4516 devlink_register +EXPORT_SYMBOL_GPL net/core/devlink 0x6c9412b6 devlink_free +EXPORT_SYMBOL_GPL net/core/devlink 0x7e8387ab devlink_port_type_clear +EXPORT_SYMBOL_GPL net/core/devlink 0x8246edc9 devlink_port_split_set +EXPORT_SYMBOL_GPL net/core/devlink 0x949f147b devlink_port_register +EXPORT_SYMBOL_GPL net/core/devlink 0xb1fa8912 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL net/core/devlink 0xc292198a devlink_sb_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0xd5254c5a devlink_alloc +EXPORT_SYMBOL_GPL net/core/devlink 0xf80442b0 devlink_sb_register +EXPORT_SYMBOL_GPL net/dccp/dccp 0x06d62f19 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1a8871f9 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2dd32593 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x325b4845 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e19ab2e dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x54f06101 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5873ff53 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59e1509c dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5b2a7f38 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5e4cab9f dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x61aaaf7f dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6aedd015 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7ab391a1 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8a19c972 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8bdb0a37 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8d6a9054 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9a8b734e dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9c007c60 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaa860975 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xba70322a dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbe3ef25e dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0b7b890 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc5729ee3 compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xccf7188c dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd9712458 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdba937c1 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe03bf0ef dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe0afcc8d dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe0e94a0b dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe3b5ed1a dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe61ba394 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xeb776fc6 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xed44a40e dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf6c4737a compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf6cdc1a7 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xff77e9b4 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x658e2603 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x75b8c360 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x771df49e dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8f741755 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xdea2e4fc dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe382bff0 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x0c9442ae ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x34110f7c ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x8549c2e1 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb0c52b90 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ipv4/gre 0x1d0ff333 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xf2268fc3 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x05330602 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4c76d48f inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5a91efd9 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7185e71d inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa5f880b0 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb001c06f inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc1108e84 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc2695c36 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd111ea13 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x8363c262 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0cd1da8e ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0f21f713 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1da65293 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2f3c1d43 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x65d3f366 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6e148924 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6edc1b26 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7a6fc169 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x80e0f6f4 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x896f6315 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb43f457d ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc1b0a5aa ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd38c649a __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdaffb2f3 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe6902a82 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x340ca9e0 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x590d4276 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x7b41835d nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x8e214d23 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xb229ec14 nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xc650453d nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xe7dc5281 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xfca4338a nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x66e5bc27 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7cc7b73d nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa146fd37 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd40a33a8 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xde34bbd7 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xfee00fa2 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x583231f3 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_nv 0x5adfd7ec tcpnv_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0235338c tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0c376a25 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x219be409 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x499682a7 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf7c27576 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x194ee55f udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2e9f773f udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x3db990f1 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5f318f9c udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7631f299 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7742f6d4 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb3c101ac setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x4dd66e28 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x57c1f24b ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd7941e5c ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x730f0485 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xe6f09e00 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x31e9f8e0 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x077a82b7 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x0737c5ac nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x5ecdc749 nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x8a3cf9e1 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x8c8e6d21 nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xe8965abe nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xf7c2f5a5 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x99fb8bc9 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2d3b7470 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4a49a330 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8bd7950e nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc1b7d6cf nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf3d01dbd nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xc9716f65 nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0d0dd7fe l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x18b32c43 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1c9f50a8 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1fce7637 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x27748e17 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2f3f8ea7 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x46360edc l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5d3f3267 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x821f05f9 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x90028cfe __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x97af4bf4 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa37f006f l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc138bc6c l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc6e574b9 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xce5487d7 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xddbb61c9 l2tp_session_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xd5155d67 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11e1f72f ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f9aac4f ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x31b1006f ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4a0783e9 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5943b860 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5eb4bd23 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7a74bdd2 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7d0a7bd4 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x83c84cdf ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x87863fe8 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9f003952 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa35fb3c4 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa8ef9abb ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xab409172 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc588531a ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xec394e9c ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfbbebab5 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfeabc5a5 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x0d54383c mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x5f212bb2 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9a7a69bd nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xfdd13f26 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x06203169 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x24d17dca ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2621ddc8 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x34b37cce ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3e1aa351 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4fbc1c09 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5316b344 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5443cc16 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x61e08b8d ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x655b235f ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6af42eb8 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x72172afa ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7f2b8044 ip_set_put_extensions +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 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe39ccb70 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xeb54c3c3 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xeeb4a3bc ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x4d294a44 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x4d7477eb register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x85f31584 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xbb68ab1f ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03194540 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03660ad2 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0800f4ce nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ba2ef68 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ef03ee1 nf_conntrack_get_ht +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11159236 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12ef304d __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15bfc4f0 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a51883f nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1dec7d31 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21744915 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21d78887 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23bc7596 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x24d15c50 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x275100ae nf_conntrack_in +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 0x2aa6065a nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b699e71 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c77b3d8 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32aaa03a nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32fa1c8f nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33e3f779 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3595f09c nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35d6dbc5 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c14a3ae nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f07975a __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44e5c124 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x489ad196 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a408b90 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x50d9e6d0 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x513ac6b1 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x51531531 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x527bd624 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57f1a0fe nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59e81f97 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a8dd5db nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c982df5 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d25240d nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x604db4a6 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6680ee60 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f8b3bd7 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x824f66b3 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x854ac061 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8734bed5 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8947f748 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c4c380e nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8dd5d223 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e795975 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x903cd894 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9082f193 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91669fbb nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91da8a85 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92335782 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x95c3951a nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x96799e63 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c7999a9 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa25d80cc nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa391d29c nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8c3bf92 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb559380a nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8942b48 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbcda1de6 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbfe3b0a1 nf_conntrack_l4proto_udp6 +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 0xc98a0ed9 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd04c4391 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd19cd958 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd27a921d nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2a92129 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2da33d7 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3c7bb1b nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5f9d898 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf681969 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe30ad4b6 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe32e3078 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6382a5e nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe657f33a nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea4369dd nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec0ed6ce __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeebad536 nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1745543 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2ef9955 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf43568b3 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6e56bbd __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x5aed8f97 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xc3497dc2 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x7562cd75 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x09b7d1cc set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1b25e0a7 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x205a475e set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x229452d7 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3da77fea nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x46c0c5e0 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x593b6a84 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x94ec566a set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe0bf3de8 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe20bc521 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x027ab2bc nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xa2faf0aa nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xb918d258 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xcb4f0aa5 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xf6e443cf nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x48112a78 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x57f74319 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2a996bf1 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x593bbeb1 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xae77ce01 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xccddbba1 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe3661182 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf61ae6af ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfe010238 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xb9bc8c06 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x10f8c14a nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xbdec83ae nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x14be18ef nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x28c72200 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x5be93618 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x64d6cc2e nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x162f364c nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2782eab3 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x299f5347 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3ba45656 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x49753a16 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5d2e3794 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x96268a7e nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xadca46e7 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf6905574 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x2858c10b nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xa33d637e nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x516d65ab synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb61c8ad9 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x29256211 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x302503a8 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x34ed28b0 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3e36609c nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x448d0e63 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x49989d55 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4e3cca14 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5c797afe nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5f4d5e96 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fb6b73e nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x80d078db nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x837442d9 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x858def3b nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b3b3b5d nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae9c96d0 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb28ba644 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb92156fe nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xca7ff30d __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe48adc81 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe9686117 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4a397930 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x54a262e4 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5a9089a1 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x60b1bf5a nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6d8b8c4c nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x863116aa nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x233fc7e9 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x91b5798b nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xf8812cba nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x3e168a9f nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x6664038f nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x84b9d6af nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x953aa7d6 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x136ef3dc nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x19574b4d nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x1a7c9ad5 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x1b01522a nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x24905ec2 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xa5f470f2 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xd4a3878c nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xf9367bf0 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x09a837c8 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x204991c8 nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x3403ca51 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x30b68f91 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xb3a11e7d nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe665c3cf nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x180b3dea xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1f434b16 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3004c036 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x30b2a05a xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4b8e9f8b xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x605b177c xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x63f0958f xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x76423463 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7ab66dfa xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x89b739c5 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x91ccd312 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x966a6ed6 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xaa040f85 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xaf6742a8 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb6f46b02 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc68680d3 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9eda99a xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe7917551 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x00204983 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x482b6a12 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x42f7402e nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xb62f1def nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xc74a1926 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x448a56db nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x5e2126f4 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x98c50801 nci_uart_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x03f1807b ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0bef9e10 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1a28bd70 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x31952fc0 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x782291aa ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7cc40c68 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa230e259 ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb77d0f8e ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda4ada8e ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x04ff0c36 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x09ab6acd rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x1199cb25 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x34b785e2 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x3cdffcf9 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x3e971479 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x480cab41 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x512e9e39 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x5c3f55db rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x5c7702bc rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x62c6eff3 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x768c0e1d rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x76a83bce rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x7a8c16cc rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x7ef920df rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x8503869e rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x8be8a1ed rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x963e935c rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x9aa74711 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xb46d257e rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xb683d3f6 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xb8b5607a rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xcd8dbd8b rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xd855f7f3 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xe428b9e2 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xf0fac26e rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xf60e9f08 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xfa284134 rds_recv_incoming +EXPORT_SYMBOL_GPL net/sctp/sctp 0x247fb4cf sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xc0478cd6 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xce0f07d5 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0xd1cbf533 sctp_for_each_transport +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x6494aec9 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x9e3fa84c gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc01d3fc1 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0177fa42 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02727f47 cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02ba967f svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04415415 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05459eac xdr_buf_trim +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 0x070c2628 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07b2aa57 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x098ab97e rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09d9ab00 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b06f076 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b777052 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c4eddb7 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fd6d2cf xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x101d126c rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1042f7c7 rpc_lookup_generic_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x111b9a7a svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11378525 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13ee04f3 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1777f935 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x187a48d3 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18b89a3e cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1aa09802 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b5d1459 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b615dac rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1baad222 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ea4caa7 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22a95d8f xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x255856f5 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29525619 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29848e11 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29d34d30 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2be10abf rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c938aee svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d9b6f94 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x317ce856 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x368ac227 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3706994d xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37cfb899 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38573b90 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a9aa06d xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b7d3281 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bf36e15 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e459992 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e5ac158 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f8b8d35 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40f656bb read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4152a635 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x462e36a4 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a5df41c svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4aad60bc rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ad9cf44 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c0b607a svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d855899 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5067bfcf xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50ae4c6c svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53807ae9 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59053b22 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a77e030 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b2913c3 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b4df718 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f91b815 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6064d7a2 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6087f555 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x628c55ae xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62e8d19c svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x640d1964 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x643346a1 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65a646c6 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6678e6a5 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67a0ae3d xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x680ba9d7 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6877c394 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c0b53a3 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cfd7d4a rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dce6144 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e475353 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f27564b rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7138c9e9 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74a3d161 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75c7fd86 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76074593 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77574a01 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77faf711 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78481077 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78d0783c xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7952a575 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x796326bc svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x799a93f0 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a01e88f svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b146506 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b62a27b rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bb2cba7 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c7c3b18 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ced8e82 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ec6d5db xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7efbedc2 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f242ec8 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80e9f5ce xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81634fbf sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82984ab0 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x833716c9 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8350646e rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8564ead3 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8827468a xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x885f98d7 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89834142 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b379cd7 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b602730 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b90eeb8 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c3cb59b rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c78375d xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ce5cd5e cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d8ed353 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e5db974 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91788d43 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91cc5e85 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x922e32bf xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x924289b9 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9252c051 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x928d6505 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93ba9701 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96291a36 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9692fc71 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96fd8a93 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98351efc svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x983f0cad rpc_cap_max_reconnect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98ddb1b1 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b01c28d xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d710931 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9eae1f3d rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1963dd6 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa23a399e rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3004131 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa37891a3 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5568110 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa57ed180 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6fb4536 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7554124 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa777fda1 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa90d81c5 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa967ea05 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9e52507 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa09edc1 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa3772a0 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabb0e495 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac67cbee svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacc56547 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf7f0c0f svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0264a32 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0354db6 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1d3fdc8 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1ee7eba rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb302c722 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3faacac svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5916be5 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb594653a xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb62acbb6 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6a906dd svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9507539 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba3dca6c rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaaa8c93 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc49d65f gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc8593ab xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd4edfc7 rpc_clone_client_set_auth +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 0xc23d577d xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3624a72 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7029b73 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7bb3208 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb60d363 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd0e6d3c xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdcac680 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcea57e10 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd12bf1ee svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1f3cd16 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd304e3c9 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd62c545d csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7efdadc rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd80934a0 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9a0ee26 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda0e9749 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda97d86f rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc48d1d8 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcfaee09 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf18f051 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfa4ba2a svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0cf0312 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6ab6369 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea42d0e1 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeae85100 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb974bce rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecdf4e02 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedb70752 rpc_init_priority_wait_queue +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 0xeeca5135 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1b3d74a xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf32d2cee svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf33d5dd9 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf54356f2 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf59329e8 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf779c9d4 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf817fdbe rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8bbf033 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb36208e xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb46850f xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb8be8e1 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffc6749e rpc_call_null +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0308dc17 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x04c3dcad virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0de652de virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x26f395ff virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2ac39957 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2b990fca virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x39e983dc virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x42a7692c virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4d65d3ba virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4dd8ae63 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5101b976 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x540a6dca virtio_transport_get_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x560a96d3 virtio_transport_set_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6f46a4ff virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x75d8b98f virtio_transport_get_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7b07f84c virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7dd73a1e virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x82276cc8 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x82a8356d virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x98d42558 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9987a60f virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9f4bd1ca virtio_transport_get_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa4231328 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa6a07171 virtio_transport_set_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa9d82d25 virtio_transport_alloc_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa9e289e1 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb8f529ad virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc579a987 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc8e48f80 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc90d91c8 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xca5e8da3 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd62836d3 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd62c3f74 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd97768d8 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xde9be52f virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe16ca3f8 virtio_transport_stream_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf8024289 virtio_transport_set_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfb9f68d7 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x11201897 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x27e41bd7 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x39f592bf vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3a836c3c vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x417ace16 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x529a889a vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5646736a vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x649011ba __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xab1e08bf vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb7f5f766 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc1afc733 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xccf366be vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe7152c07 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf382a336 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf4661cff vsock_remove_bound +EXPORT_SYMBOL_GPL net/wimax/wimax 0x179d90a2 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x2ab4aa53 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x40aea84a wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x43cba829 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x4836ad68 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x6f867018 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x7700114d wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x88b7dc43 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc38a9011 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd14c4de7 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd9f6d09d wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0xdae5317f wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xf24d6509 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x17aa3d43 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x28ec19a9 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x313c9d2f cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3e1d3cb4 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4fe036a1 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7078562e cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8a1a0a65 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8c78f90c cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa0631bd9 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb5cff3d8 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbca51c08 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc9b97a95 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xda2c01d0 cfg80211_shutdown_all_interfaces +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 0x3bf471d7 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x3647b47b ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x3c826a1d ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x613a7d74 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xff2c7944 ipcomp_output +EXPORT_SYMBOL_GPL sound/ac97_bus 0x3b6b9bc4 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x4a79ceb7 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x89c3719a __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd 0x11a090eb snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x222fecda snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x246bf4a3 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x512995c4 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xad3c088f snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xb2d4cf95 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xb886d194 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x05612bdb snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0a89cc1a snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0b49c79e snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x11d39858 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5cd3cfd2 _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 0xc0c5b9f3 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc3ebbe30 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc87b0de9 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe476574f snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1e770d31 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3b1a5207 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x414403e3 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4835e30b snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x55664dec snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7cb50895 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x877f7e0b snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8eb996f9 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa60e311f snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xbcf390ca snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xff8773e8 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x01d46fa9 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0c5a882b amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x547c62ee amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x97cb79af amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xce9908ef amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf428a5bd amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfa45e198 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x053c972e snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x07caceca snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x096b6c96 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0af05d82 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0dc66a30 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0dd60d5a snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0e2f5dcf snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1299aa11 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1370ac54 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ac39a46 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c6f8e97 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1e24671b snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1f29779f snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2378cd70 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x24fdbe85 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x25eb7f48 snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x27984e70 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x27ee5fa0 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28d4f881 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28d9a2c0 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a4a0df7 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x343f1c79 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35a5290b snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x38fa5278 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x40fc05c5 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4530858b snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x463f3871 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4cc66179 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4cd44980 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x509a0740 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f6e45a3 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f733e3c snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6383e40f snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x64ee7304 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67f50b62 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x680b383e snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x69963319 snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72d36929 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x79d9b0e0 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c4dcfca snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x82bb1624 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83c8940f snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83e362ae snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x855e8740 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8a16650e snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8fc0e3ed snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x93ebcbb3 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x98830c03 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f5a86b0 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa1116839 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa238e278 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb143851a snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4ae63e7 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb7d4794b snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc0ef8f02 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc14494dc snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc3f2a338 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc6e02c96 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xca6436f8 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcd436aa7 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcfcfba69 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcff83d66 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd014a89d snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2bef7fc snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd7809dab snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd982c272 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xda828fab snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe5bcdd7d snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe746264d snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec5e83db snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xecfe9349 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf044d303 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf36739dc snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf8b860f9 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfac04856 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x01f392ac snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3169a3db snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x771ce08a snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x924916c5 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x9bed7d93 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd4509348 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02c8e898 snd_hda_pin_sense +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 0x08941ed3 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x091c84eb snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0984d8ef snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bb8f292 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0cd5481d azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e025ba3 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f438be1 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12c915a3 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13c84822 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13ce4043 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1451b114 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x172e3ffd snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b43a02a snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1cbc9b43 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1cda204e snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1debd8ae snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e4b84ab snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1eb183d6 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1eb4bce6 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21fd373a snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x241bca29 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29eb1924 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2da9d343 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e11ae06 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32f35950 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34f24cd3 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3662da96 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x398fcfc0 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a7d611d azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c13eb89 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3cb85e8e snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x401956f4 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44d9fffb snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x460ba67c azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x485249cc snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49f90c50 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4feb69d5 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58c7fa10 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59a6be4d snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a0f1c66 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5da7c38c snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e7ee98c snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f0baf5c __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x652cf1ab snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65afc349 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6661cede snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x687b77b6 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6bf4ad06 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c1f4dd2 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c5f3860 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ea62402 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71734893 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x721b25b8 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x730bcac8 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73d7d444 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x744f9b16 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76fb5a06 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77824192 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e76ba6f snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e9fd9ff snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82e0c543 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88556174 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8982e77e snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b97abe5 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x902fea87 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91b5f7ca snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93adc5d1 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95558874 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x985d6de5 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98ec8084 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x993817a3 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b6d0b0e azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d49be81 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d7aa348 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9daf8474 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e7931a8 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ecde567 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f2e9b41 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0a82337 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2390c5e snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa253e90e is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa296aa74 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5f01a64 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa68904c8 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9c6e21d snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaab5ecbf snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xadd89336 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaec1a55d __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf3f46d3 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf44b36e snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb25bead0 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb863ace3 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb89debbe snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc077ea8 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbca79047 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbceaa74b snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe546f51 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc03ec13a hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0f7b691 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4f322cc snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7e09e58 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7e5ede3 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcbe00cb0 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd31fba2b snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd36656c3 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd37ab88d snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd49bce71 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda955e33 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdda8f1fb snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2732298 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe44e55a3 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4f0ec3c query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf00f5f1b snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf10163de snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf35b807d snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4618d03 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4b49d2f snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf559b636 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7e818ab snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9786379 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb13802a snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb2b12ea snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xffc77074 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x02c3e04a snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x09fdd41f snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x16fe4973 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1a151c63 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1b5b6975 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3b53c964 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4e1c6579 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5e312989 snd_hda_gen_hp_automute +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 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x88d62857 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8f9e9e47 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9abdb437 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9b2c36f9 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9c77f2c2 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xace797c8 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xaf5b1986 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb266c1c6 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd0df01ab snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdb9d5a8b snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf7cd1f87 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x063f69ed cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xa8437dce cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x36ac1a12 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xc4390ba8 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x4068c197 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x6463b235 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x84d8b95a cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x78303cdc es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xea9d744e es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x50a4e1fa pcm179x_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x850254bb pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xadbbd851 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x3fdd0db7 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x96886e6e pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xaa87ae48 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xce8ea0c3 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x114c27cb pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xab6ecd54 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xac20a1c5 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xdc413958 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc +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-sigmadsp 0x12adcc48 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x2ad9aeeb devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x45102f91 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa08792fe sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xad7eb5d2 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x4e49d7fc devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x28589fbe ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xb7c33c30 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x3864a0f2 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x53262917 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x9ff9df31 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xa0e7ff6e wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xcce3a47a wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x93a2bdae wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xe1743db9 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x3b5b22aa fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x8643bb16 fsl_asrc_platform +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 0x268f0cf7 asoc_simple_card_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xafe2a4ab asoc_simple_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf13a0ec0 asoc_simple_card_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01422416 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0177fa41 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03ffe407 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04cb9785 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04d74759 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0535d031 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0606b3a4 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x068d8b3e snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0714ea55 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x092b9fc9 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09419798 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a53e14e snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b98d487 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c1c8133 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c23d9ae snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d116080 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10540fd5 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12777f20 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x138081dd snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x149625f4 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15c16fc8 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ac7f148 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b1e6f4d snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e551619 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ea526d6 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f3f1939 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f59cdd5 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x208ce725 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21072215 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2353cda8 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2473b6da snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2628b9a8 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b90025b snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3099934e snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31f76a0b snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x327eeb38 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33139d14 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34ced89c snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x368c34ea snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37af8c52 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38cc4638 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4163c117 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42a71f59 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45504a5a snd_soc_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47e61b63 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x488d2b95 snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b185d6a snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c0ca2bd snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4dfeab5f snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5409d9f7 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x550780f5 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5747c661 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x579e626f snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a3d056a snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c9f09c0 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63db8868 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64bbe1f1 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65d51eb3 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x666a51f5 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x691883d1 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6aa47402 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b101746 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6dbb5ca7 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6dcecc34 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f945251 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x708cae06 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7115b375 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7415e81f dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x746786b2 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x788284cd snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7925f7b2 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e12538e snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e58daf0 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f73929b snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f7e4be8 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80ea7b09 snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8317af1a snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8459be76 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84d20222 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84d6ecb2 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8542d4b6 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85536d7d snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x860dcc20 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8767679d snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87837677 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8819290d snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a16af05 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ad7f60f devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d3f65b2 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8dead9ce snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93444bae snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x947ef3af snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9489105f snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cb808d7 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ed7785d snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa00ce60c snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa065562f snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1226482 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1872e23 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1ea4b76 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa86efd27 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa92b9551 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa92d2b70 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa8de096 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf7f1498 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0863b0e dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0ec42c3 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb17fbcc0 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb26a746f devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb44d403b snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc3ff7c7 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd779c84 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf8057de devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfe0335b snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2e03198 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc53ed4d9 snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7729fb3 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7ff2fcb snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc77ab73 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd21bcf7f snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd25f6df1 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd40c7c4d snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6b4d524 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc26c959 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdfe22ab1 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0fe9be7 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1e342cc snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe255d809 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe375d871 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe387065b snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5899378 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6278f0b snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6ecb03b snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8dfc38b snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9765742 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeac6c077 snd_soc_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb7df283 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec3c6703 snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf231507e snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf240adba snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf26e4db4 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2838890 snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf31e8a54 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf347494b snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3a99d2a snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5981539 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfac3cb68 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfaf3eb04 snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfbd0b6a5 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc088c14 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe631da0 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe9f5d41 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfef3947c snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0de6042d 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 0x245a6ff1 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5514367c line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x55618893 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5efd7810 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x86a2d7c2 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9112a411 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa4f28bc5 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xab7929d2 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb0aad3d8 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcaf04626 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd5bc4d9e line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd81642af line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe1000e1f line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe1011a99 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xef16c79c line6_version_request_async +EXPORT_SYMBOL_GPL vmlinux 0x0013cbb6 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x00155ca6 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x002854ba mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x004b3df0 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x006ef53e is_pnv_opal_msi +EXPORT_SYMBOL_GPL vmlinux 0x007059e1 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x007add2a gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x0088ac5b crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x0090a706 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00b894e0 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x00bbd992 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x0125bb4b devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x01506a3f regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x01897bba shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x0194a177 component_add +EXPORT_SYMBOL_GPL vmlinux 0x01b63335 klp_disable_patch +EXPORT_SYMBOL_GPL vmlinux 0x01bb2db7 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x01c04837 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x01d47325 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e5c77f __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x01f1a127 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x01fe8dba fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x01ffb423 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x0216103c ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x021ebfda btree_update +EXPORT_SYMBOL_GPL vmlinux 0x025a4dd1 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x026211e2 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x0277008b crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x027775a3 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x027efcd7 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x028699a5 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x02969144 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x02a5b7f1 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x02b95a53 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x02bfe61f sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x02c5fa7d trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x030d2599 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x0324de56 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x034fd860 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x035401cd kick_process +EXPORT_SYMBOL_GPL vmlinux 0x035aeca0 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x03602d3e gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x0369e482 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x037dfa07 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03b6b180 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x03d0047c pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x041fcb0e bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x042d90cd securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x04435f63 do_truncate +EXPORT_SYMBOL_GPL vmlinux 0x044a84dc fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0x045822ce spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046ba401 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x04879d14 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x0494f5a1 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x04b6b5b8 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x04bb5c95 pcibios_free_controller_deferred +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04ec2469 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x04f29c6e device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x0509a008 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x050fc469 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x05148e59 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x052a2290 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x052b4509 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0552fc8d usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x05810eee fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x059732ad mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x05a0eeaf bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x05c051ae tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x05c248be __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0x05c6f3fe split_page +EXPORT_SYMBOL_GPL vmlinux 0x05e8cd9e crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x060ac644 isa_bridge_pcidev +EXPORT_SYMBOL_GPL vmlinux 0x06104e9c sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x0618e706 blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x061dee59 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x0629afe9 find_module +EXPORT_SYMBOL_GPL vmlinux 0x062f898f __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x063a4b22 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x06404df1 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x06551264 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x066451c6 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x06860887 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x069dbcb6 kvmppc_do_h_remove +EXPORT_SYMBOL_GPL vmlinux 0x06a3c1bf of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x06afb214 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x06bec270 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x070e8159 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x071d7f7a sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x074be29f rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x0760f5ab led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x076adc9b of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0x076ffc9f tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x077236dd pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x07817e38 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x0788e939 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07bb3761 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07d789ca __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x07f358a4 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x0825d744 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x0835184f fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x083be112 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x085f5f59 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x086483d5 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x0867223c mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x08b0021b usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08d19388 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x08ea38c5 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x08f3058a devm_nsio_enable +EXPORT_SYMBOL_GPL vmlinux 0x08f43abd fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x08fe4234 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x090ae864 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09253804 eeh_dev_open +EXPORT_SYMBOL_GPL vmlinux 0x093badcf vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x095f93a5 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x0961b62e public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x09a5fa12 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x09a88580 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x09e39962 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x09f60186 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x0a455e0f find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a59ac48 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x0a61a29a blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x0a6907ac pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x0a6b3f00 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x0a7cde15 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x0a86cacc shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0x0aa021f1 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x0aaa4f84 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x0aadec51 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x0ab62743 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x0ab8f0d5 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x0abb0865 vfs_readf +EXPORT_SYMBOL_GPL vmlinux 0x0abddea2 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x0ad06a67 dm_use_blk_mq +EXPORT_SYMBOL_GPL vmlinux 0x0ad2fd61 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x0ad8dffb cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x0ad946de input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0adda4ae ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x0b0259c2 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b1ef4cd set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x0b2f2f56 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x0b4b4311 srp_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x0b5e5654 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x0b754593 put_filp +EXPORT_SYMBOL_GPL vmlinux 0x0b8ee242 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x0b9b108f pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x0b9b3cea usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x0ba784a3 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x0bb050f8 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x0bba9130 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x0befbea9 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x0bf8bb16 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0bfe4904 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c0cc605 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x0c1ae95f xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x0c21f285 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0c246941 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x0c24a58d pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c2ef9fc devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x0c788886 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x0c7dd51a ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x0c86658b pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x0c999a16 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x0caf75d9 opal_flash_erase +EXPORT_SYMBOL_GPL vmlinux 0x0cbaaaba crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cca34f1 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x0cd20e21 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x0cdb7a8d i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x0ce3ee5a mmu_kernel_ssize +EXPORT_SYMBOL_GPL vmlinux 0x0cf65bd2 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x0d150f91 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d26d723 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x0d436596 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d7322b4 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x0d79acf2 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d8af1f9 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x0dae3b95 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x0dafe170 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core +EXPORT_SYMBOL_GPL vmlinux 0x0df905f3 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x0e217ac6 __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0x0e559684 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x0e72973f sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x0e736426 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x0e897874 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x0ed2e367 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x0efb677c pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x0f0d545a cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x0f1bdf17 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f409cfe pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x0f5ad36b debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x0f64d4ef regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f929b43 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x0f9febad fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x0fce3dd9 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0x0ff199dd cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x1007d6d4 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10188d42 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x10814d95 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x109748b5 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x1097fed7 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x10b4beb7 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x10d356bb devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10ee82da platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1105505e blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x110fc544 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift +EXPORT_SYMBOL_GPL vmlinux 0x11145dd1 _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x11227896 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x1126bee1 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x117c7305 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x117e414b pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x118f2f6f regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x119428b4 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x11b07885 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x11b2230f of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x11e048e3 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x11e3ecb2 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x12013c18 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x1212abf2 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x121c4003 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x121cdb15 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x121e5ceb bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x1223fa6c copro_calculate_slb +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x124f6825 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x125884e2 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x12618f89 __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x126b46e3 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x12771f1a jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0x129c51b3 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x12b44d56 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x12ba3a17 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x12c9997b i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x12cb1f84 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x12ecd240 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12ed3669 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x12f6942d da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x130745cb devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131a9e82 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x1321288c reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x133a924e ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x133f7d81 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x136a4ee6 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x13774d74 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x1389da84 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x13965e91 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x13c5c9c3 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x13ca5530 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13d8e23c ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x13d9e776 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x13e5a108 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x1420c411 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x14368ceb arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x143b8598 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x144bb3d5 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x146e05b6 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x147e1f0b irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x14a66194 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x14b61d20 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x14d4d3be ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x14f57e70 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x14fec258 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x14ff30da ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x152f6ec4 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x153de4bf devm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x154468b8 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x1587ae30 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x159ada94 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x15a8257c proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x15a83493 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x15b5b77e rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x15b6ccf5 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x15b8b44d opal_async_wait_response +EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x15e7ab58 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x15f0c818 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x1638ce06 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x1649d5f3 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x16586c66 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x1658d555 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x1659c171 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x16788dce regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x16952ab0 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x16b1b146 usb_of_get_child_node +EXPORT_SYMBOL_GPL vmlinux 0x16b300d9 security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x16bb0be9 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x16d39e5b component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x16d8c025 iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x16e9de88 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x16f7e2e9 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x1711c196 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x17193f69 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x17214154 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x172a308d sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x173532cf fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x173ae95b rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x175363ea sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x175d55a2 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x1780635c gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x17bf6ec8 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x17c05173 add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0x17d97f3b smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x17fc2fa8 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x1802b7b4 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x1829b9ed hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x182e671b kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x184c57a9 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x1879c0f9 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x189b09dd class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x189f874d powernv_get_random_long +EXPORT_SYMBOL_GPL vmlinux 0x18ce9761 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18f0ec8a inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0x18f0ee11 do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0x18f84156 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x19124560 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x191973cb unregister_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0x1920fcf7 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x19472fe2 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x19544eaa usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL_GPL vmlinux 0x195a0465 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19f6268a dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x1a51af21 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x1a615b33 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x1a8c5907 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1ae803e7 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x1b118afe bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x1b12f9cf user_describe +EXPORT_SYMBOL_GPL vmlinux 0x1b1d22d6 pnv_pci_get_power_state +EXPORT_SYMBOL_GPL vmlinux 0x1b2671ac sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x1b30cc40 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x1b3ed996 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x1b3fc9bc ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x1b536d37 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x1b699f64 path_noexec +EXPORT_SYMBOL_GPL vmlinux 0x1b6aca15 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x1b707389 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x1b8b7488 cpu_remove_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x1b9664d1 __destroy_context +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1baf5c97 spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0x1baf93c0 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x1bb60a07 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x1beaf7b9 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x1bee408c of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x1bf7891a pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x1bfe2a08 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1c08bb43 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x1c1215bd threads_core_mask +EXPORT_SYMBOL_GPL vmlinux 0x1c129a03 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x1c1c1a6e devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1c1fc478 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x1c2dfae7 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x1c403d00 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5fe8aa scom_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x1c6d0238 pnv_pci_get_device_tree +EXPORT_SYMBOL_GPL vmlinux 0x1c7df74c kvm_hv_vm_activated +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c948511 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x1cb63d0e spi_flash_read +EXPORT_SYMBOL_GPL vmlinux 0x1cc6d122 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x1cd62ced rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x1cdc75ad sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x1cdfa654 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x1cf82066 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x1cfc8de5 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x1d0a6912 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x1d0e5996 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x1d1d9bef crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d3d7685 of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x1d3ed657 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x1d4380b1 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d59d526 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d77dffd blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1da37a55 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x1db35f2f eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x1df22f63 pnv_pci_on_cxl_phb +EXPORT_SYMBOL_GPL vmlinux 0x1dfa970f kvmppc_host_rm_ops_hv +EXPORT_SYMBOL_GPL vmlinux 0x1e000879 hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e2fd27b sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1e4062a5 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e849a74 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e86c029 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1ea2e128 pcibios_map_io_space +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1eba245c of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ecc368a cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1ecc7bfc usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x1ed1ae69 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x1edc21cb hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x1edf884e wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1eef015d wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x1f1988f7 hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x1f1e218a of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x1f232979 get_system_keyring +EXPORT_SYMBOL_GPL vmlinux 0x1f2a4a50 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x1f2cdb63 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x1f451e7e default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x1f478ce1 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x1f80b663 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8698a9 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x1f8d71c4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f922048 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x1f9c2bf3 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x1fa502d1 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x1fa550f4 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x1fabdcc1 security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0x1fbdb5e1 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x1fcf2b86 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x1fd8d278 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x1fec2be9 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x1ff94edf ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x200540ae devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x20072eac disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x201b5258 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x206f6265 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x207fa02e md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x20842577 mmu_feature_keys +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20ab10e8 cap_mmap_file +EXPORT_SYMBOL_GPL vmlinux 0x20b1056a da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x20d0965f iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x20de2ecc key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x20f386bd get_slice_psize +EXPORT_SYMBOL_GPL vmlinux 0x21152ea5 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x211850f5 htab_hash_mask +EXPORT_SYMBOL_GPL vmlinux 0x211cfd65 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x2148cc31 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x2158603d rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x215d9c37 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x217ad02a class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x2189d97a rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x21a48e02 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x21aa3567 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21ad713a dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x21c37ca8 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21e1b1c8 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21feb281 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x2251884a of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x2257db9d max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x22721f5d __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x22737abb sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x22818743 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x2284da8a cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x228f53e7 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22985fbd iommu_tce_xchg +EXPORT_SYMBOL_GPL vmlinux 0x22a387b5 init_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x22b31b5f pnv_cxl_enable_phb_kernel_api +EXPORT_SYMBOL_GPL vmlinux 0x22d57fc5 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x22dcea32 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x22f1b0d4 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0x2335b78c devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x23626286 hpte_page_sizes +EXPORT_SYMBOL_GPL vmlinux 0x2369008b cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x236e8440 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2399b649 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x239dbe80 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x23a9cd6c inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x23c6ecde wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x23cc8ce7 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x242a9ea9 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x2444485f crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x244839d1 nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x24496263 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x244d376d power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x244de2fc pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x24716faf virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24883e23 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x24a7f2e2 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24ae4162 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x24bab88a rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x25370d16 realmode_pfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x25572040 pnv_cxl_phb_set_peer_afu +EXPORT_SYMBOL_GPL vmlinux 0x2557fa04 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x256ac22e gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x25b285cb pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x25d1b5f0 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x25e16f9a sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x25e60499 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x25faee4c gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x2609eda1 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x262244dc stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x262fc7a2 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x2635ffd0 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x263f5c0c rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x267cf782 of_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x26a996ac dm_put +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c62e0b pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26d0a1ad ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x271167be of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0x2722abe8 of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x272645f3 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x2729e891 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x272a82be eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x278bed20 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x278c6a6d rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x27930b5f crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x279eb2fe pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x27ba4faf ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27d4e79b netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x27dc8ccf platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x27ddcce6 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x280c5c87 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x281366b4 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28375182 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x28430ba3 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x285bf648 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x285d8b8f wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x28620a16 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x2864cd38 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x2878d3a3 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x2880c7f3 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x2882bda8 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x289579d6 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x28b88c94 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x28d22758 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x28d9742a rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x28fdf305 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x28ff99a9 opal_prd_msg +EXPORT_SYMBOL_GPL vmlinux 0x290917f5 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x290bc6cc vfs_writef +EXPORT_SYMBOL_GPL vmlinux 0x29352051 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x295b992f usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x2968d6fa __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x296f54f2 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x297463e4 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0x29a46658 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x29c8a40e bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f580ae pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x2a0da2fe inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x2a2d7328 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x2a465428 kvmppc_do_h_enter +EXPORT_SYMBOL_GPL vmlinux 0x2a6092fe devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a67a52b rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x2a6d5598 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x2a8dd082 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2a9c86c3 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x2ac0ab13 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x2ac149cf relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x2ac8201b ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x2ad351b2 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x2ae030e9 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x2aedceca inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x2b055d8f regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2b080216 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x2b16c5ab dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x2b1bae0e cpu_to_core_id +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b292940 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x2b4147ed kvmppc_hcall_impl_hv_realmode +EXPORT_SYMBOL_GPL vmlinux 0x2b444698 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x2b4b156d of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x2b4ec3e8 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule +EXPORT_SYMBOL_GPL vmlinux 0x2b5da8a5 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x2b615578 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x2b75d46b crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x2b9e36f3 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x2ba4f6c1 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x2bcec8c5 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x2be33de2 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x2c0195f1 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x2c02234c register_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c72d3a4 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2cb6c401 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x2cba9f80 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x2cd17a8f __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x2cd27737 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x2cd88f51 kvm_hv_vm_deactivated +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cfccdc4 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x2d0b070a ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d39a11a blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x2d39cea7 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d46dd45 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x2d54fd67 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d5af8eb ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x2d5d3c0a __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x2d7c73b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0x2db150fa skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x2db565d1 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last +EXPORT_SYMBOL_GPL vmlinux 0x2dd2484c mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x2dd29645 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x2dd4b20f raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x2df7281d pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x2dfb3879 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e4110d6 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x2e5f87d0 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x2e75ce1e iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x2e7be574 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x2e8738a6 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x2e8dc6c7 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x2e9fb20b nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec3a9de ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f21e583 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f43a9fb platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f6e00bb ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x2f74772f mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x2f90f7ae __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x2fc79fd5 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2fe191f7 extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x2ff4a4bd __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x2ffb5ff7 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x2fffe216 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x30061926 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x30116506 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x301832fb opal_async_get_token_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x301f715b irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x302773f3 kvmppc_invalidate_hpte +EXPORT_SYMBOL_GPL vmlinux 0x3031fd04 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x305ab874 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x305aded8 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x30641376 kvmppc_find_table +EXPORT_SYMBOL_GPL vmlinux 0x306b63be __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x3092dc00 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x309f256f debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x30afc858 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x30b1a007 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x30b6e3a1 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x30b9113a usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x30b9a61f perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x30c710a4 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x30d1129c __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x30e5b6ea handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x30ea01aa iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x30eea783 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x30efcbf7 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x31220204 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x313363c6 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x3139f4a9 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x3142e57b splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x31437c26 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x31490d05 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x3165da7b sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x316aa67b transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x316b6b73 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x318154a0 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x31b4d7ef blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x31bef441 opal_i2c_request +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d3757e sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x31d71557 pci_hp_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0x31d887d1 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x31dc586e security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x31f2a13b mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x32027376 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x3214984c debugfs_use_file_start +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x321c83b7 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x3220bd0a user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x3223afa5 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x3223cf48 scom_map_device +EXPORT_SYMBOL_GPL vmlinux 0x322da782 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x324657a6 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x32554b9c dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x325f8bed da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x3266fc2c usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c3acea regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32c92451 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x32d62245 __add_pages +EXPORT_SYMBOL_GPL vmlinux 0x32f0e4d9 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x333099f3 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x3341a2c0 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x334fc8ba platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x33661304 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x337786fa usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x3381f5d0 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x338951f7 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x3397044f regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x339b476d pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x33a664ac of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x33addfcf cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x33caa291 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3413b7e7 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x345b2455 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x345e9c83 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x346f949b dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x347eb4d0 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x348631bf virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34af0adf opal_ipmi_send +EXPORT_SYMBOL_GPL vmlinux 0x34b0bcc0 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x34d8ca48 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x3503e12d dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x35116882 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x354a0af3 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL vmlinux 0x357a8e1d crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x357cfdf8 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x357e836a dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x35805af5 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35989974 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x35c83a39 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x35cfc7d8 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x35db1518 cpu_feature_keys +EXPORT_SYMBOL_GPL vmlinux 0x35fee385 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x3600fc9d tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x360b3191 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x362fcef8 vmf_insert_pfn_pmd +EXPORT_SYMBOL_GPL vmlinux 0x3636937c crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x364154dc irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x3669c0ed handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x3671158a bpf_prog_get_type +EXPORT_SYMBOL_GPL vmlinux 0x36838895 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x368ff6c9 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36bba04c irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36bfcd74 tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x36c3217b devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x36c34eac powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x36c8992f irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x370a72fe fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x37127325 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x37136e59 kvm_release_hpt +EXPORT_SYMBOL_GPL vmlinux 0x3738c9c9 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x3749db7c preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x375283eb fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x3756e1ff sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x375cc172 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x37765fe6 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0x37c54448 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x37ca7d6a netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x3806dc1d perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x380dff53 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x381a5c14 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x3847b39e cxl_cx4_teardown_msi_irqs +EXPORT_SYMBOL_GPL vmlinux 0x385272a8 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3866c0ad ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x3866e472 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x3876d561 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x388c3c6f class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x389aa0cc tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x38ab32e7 pnv_get_supported_cpuidle_states +EXPORT_SYMBOL_GPL vmlinux 0x38ce74b5 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x38d120f3 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x38ee0504 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x38ef5738 device_add +EXPORT_SYMBOL_GPL vmlinux 0x38fe74df led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x38ff1f76 of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x3920047c bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x39239d30 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x392d74a7 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x394e40ab perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x39676120 sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x3970d7b7 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x397cccff nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x39a1bcb0 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x39a88a2a ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x39af5d7b wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x39b6bc16 pnv_pci_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x39ba0150 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x39c03353 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39db1b2f __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x39df7299 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39ec821c inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x39f13bc8 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x39f52166 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x39fa56fb spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3a158c46 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x3a1a29af usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x3a1a304d devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x3a26d641 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a31dda8 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x3a38dc65 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a5ba1e7 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x3a854cb0 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x3a932a15 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x3a962ced regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x3a980384 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3a9cdc56 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x3aa3ff00 cpu_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x3aa7ffc2 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x3aaaf3c8 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x3b370d59 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x3b3e27b5 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x3b6b0776 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x3b6d9286 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x3b770867 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x3b778c11 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x3b791dd3 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x3b816f87 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x3b8d01c8 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3b996ac6 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x3bafd4a9 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x3bc0d027 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x3beddb0c gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x3c23a4c1 setfl +EXPORT_SYMBOL_GPL vmlinux 0x3c2b1174 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c51ea7c opal_leds_get_ind +EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3ca3b83d crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3ceae2f5 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x3cf69baf slice_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x3d298696 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d5f2d73 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x3d612305 iommu_direction_to_tce_perm +EXPORT_SYMBOL_GPL vmlinux 0x3d6845a0 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x3d8893e6 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x3d93e4a1 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x3d9f2943 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x3db1f167 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dcd04b2 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x3e110bb7 pcibios_free_controller +EXPORT_SYMBOL_GPL vmlinux 0x3e20adfd __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x3e259239 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x3e2ac1f0 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x3e318a60 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x3e3f47af __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x3e4ee641 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x3e5c0651 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e620056 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x3e634a48 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e710ba4 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x3e7e3420 add_memory_resource +EXPORT_SYMBOL_GPL vmlinux 0x3e891f1e unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x3e9da3b5 copro_handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x3ec44789 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x3ec50bff clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x3ed9adc7 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x3ee39b56 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x3ef37834 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f06be0f tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x3f09a37a __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x3f16f4bc inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x3f1cb321 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x3f30e90d hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3f6b7f07 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x3f7dbce6 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x3f852d6a regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3f8885c6 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x3fb2bd8a irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x3fddf4d6 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL vmlinux 0x3feb5d5e rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x3fef7431 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x4009628a ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x404a7036 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x408dc27e pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40d0ed8e xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x40d1a4b2 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40e70fa7 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f396eb scom_controller +EXPORT_SYMBOL_GPL vmlinux 0x411c6d4d dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x4123df8c ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x4123f3fd sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x41266213 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0x41322612 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x4168f3ab flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x417cbab4 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x41a395b0 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x41b51537 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41e73b3f iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x41f14349 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x41fad6d3 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x41ff2f32 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x422323ee __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x4236ec9f is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x423adce4 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x423e5676 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x425ccf19 __spin_yield +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426687fe vfio_del_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x428b3cc7 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x429db43b ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x42ac2776 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x42cb450a inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x42dcfb8b crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x42e57c67 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x432111f4 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x432702e6 mm_iommu_mapped_inc +EXPORT_SYMBOL_GPL vmlinux 0x4336f306 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x434de928 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x43524fd4 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x435dfa1f device_move +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x4377de42 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x43834f32 srp_release_transport +EXPORT_SYMBOL_GPL vmlinux 0x438811dc pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43b26993 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x43b7479e lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x43bb1e14 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x43c21dd6 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x43ca143a ref_module +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43d82721 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x43f343ba ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f5cd90 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x43fb5682 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x440e9a0b xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x4423cad3 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x445969bc klp_unregister_patch +EXPORT_SYMBOL_GPL vmlinux 0x447523ac addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44ab7a8f crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x44afa0f0 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x44afe277 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44bd1eac __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x44ca3ef7 cpu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x4503cb74 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x4511b7a9 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x4530b683 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x45315f97 __find_linux_pte_or_hugepte +EXPORT_SYMBOL_GPL vmlinux 0x4562ebef disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x45af1714 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x45b46008 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45f0f7e7 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x4621e4d9 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x46431046 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x4675abcd trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x467816c9 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x4688c96a usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4688f953 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x469bcf48 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x46b832c6 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x46cfe4bd debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x46e28015 ipv6_rcv_saddr_equal +EXPORT_SYMBOL_GPL vmlinux 0x46edf7d5 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x470a1ce2 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4737c3b5 iommu_del_device +EXPORT_SYMBOL_GPL vmlinux 0x47419489 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x4757b434 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x475e459e cpu_remove_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x476e1f35 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x4772e40d eeh_pe_reset +EXPORT_SYMBOL_GPL vmlinux 0x477a6659 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4780f6fc __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x4787453a device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x47944579 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47b7c06c fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x47ce1ab5 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x47ec1d77 arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x47eeef4e iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x4813afd3 eeh_add_sysfs_files +EXPORT_SYMBOL_GPL vmlinux 0x481b236a vfio_virqfd_disable +EXPORT_SYMBOL_GPL vmlinux 0x48284d45 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x482a01db regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x482df2ae crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4847c495 mm_iommu_lookup +EXPORT_SYMBOL_GPL vmlinux 0x48500a6e sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x48704c09 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x4877af7c blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x48ada3d3 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x48b063ba fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x48ce0227 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x49063ba3 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x49235f24 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x492d547a of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x494b9239 of_display_timings_exist +EXPORT_SYMBOL_GPL vmlinux 0x4969ec58 cxl_update_properties +EXPORT_SYMBOL_GPL vmlinux 0x4983f313 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x4984852f unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x49856f42 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x4988ebed od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49c663f7 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49ebf832 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x49fed98a static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0x4a026413 mm_iommu_mapped_dec +EXPORT_SYMBOL_GPL vmlinux 0x4a0d3293 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x4a2077e0 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x4a26fb7c pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x4a289b62 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4a3c5b1a spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x4a448f43 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x4a48e9c0 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x4a5aeffc ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x4a6826f5 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x4a76dd4e relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x4a8eee02 flush_vsx_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf +EXPORT_SYMBOL_GPL vmlinux 0x4a9e3e28 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ae8c705 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x4af823c7 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x4b1d55ca device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x4b307bcc vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x4b845bd8 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4b8d70b0 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x4bd0fb4a pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x4bd95896 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x4bedcd31 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x4bf809e0 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x4c03d744 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x4c03fedf md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x4c247a53 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x4c4c6e11 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x4c5861f9 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c6eb22f usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c7911ee relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x4c7ae583 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x4c810ba7 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4c8de8c7 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x4c9e4b95 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x4cb2f012 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x4cb5cf75 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x4cb730a5 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x4cbf65b3 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x4ce1a850 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x4ce365d4 user_update +EXPORT_SYMBOL_GPL vmlinux 0x4ceebdb7 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x4cf939fe trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d2cc081 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4d3c6326 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4d4712c0 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x4d72a42f wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x4d9c2f16 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x4da30939 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x4daa39f8 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x4db20cf8 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x4dc4b7a9 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x4dd634d1 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4dd64da4 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4df831a4 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4dfdea4b blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x4e07872a dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e15f534 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e247d64 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x4e248dde nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x4e2be708 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x4e346fa1 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4e3d09d4 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x4e3ee7fa scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x4e5c5f8c __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x4e5ce208 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4e63052f of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x4e698d90 klp_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x4e6e0d3c scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x4e6f8a7c led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x4e72106d bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x4e9fa235 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x4eb34c0f rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x4ecd6923 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x4ed75378 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x4edeacb6 irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x4edf75fe devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efa822b mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x4efd11d9 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f3bf591 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x4f43739e bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6b6d4c kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x4f95e307 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x4f967183 vfio_add_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5001a725 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x50143b61 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x50371cc5 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x5039c4ab percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0x504d7ed0 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x507596d8 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50980eef crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x50a7d7ec rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x50af8e22 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x50afd0fb anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f8e4cc ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x51061a02 vfio_spapr_pci_eeh_release +EXPORT_SYMBOL_GPL vmlinux 0x510edc7b __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x512cac24 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x513d318f kvm_alloc_hpt +EXPORT_SYMBOL_GPL vmlinux 0x51450c20 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x51467922 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x5148a39e blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x516d3f4a pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x51811f94 wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x518d65e1 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x51a3956e ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock +EXPORT_SYMBOL_GPL vmlinux 0x51c4807a cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x51cc289a usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x51d8e48c __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x5205e64d disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x520b1b24 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x522a6224 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x522ac052 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x523061ba pci_traverse_device_nodes +EXPORT_SYMBOL_GPL vmlinux 0x525706bb ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x5279717b sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x52994f40 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52b0fa69 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x52bcde15 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x52c04d80 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x52d9af3e device_del +EXPORT_SYMBOL_GPL vmlinux 0x52e05a81 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x52f10a39 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5301d255 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x5303e226 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x530af31f fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x531b7191 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x5324c5c1 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x534efed5 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x535a8087 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x535ad4e9 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x535bda23 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x53765881 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x53999d51 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x53d0e04b component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x53e3aa62 of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0x53eed5c4 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x53f8d40c dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x540dd5ad pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x541a20ad led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x543c8e7a fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x5443d001 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x545eefb7 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x546988b2 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq +EXPORT_SYMBOL_GPL vmlinux 0x547212b1 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54a4a7e5 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x54b0ab32 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x54cc6c75 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x54ceacb5 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x550f1a7e rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x552099db tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x5535f095 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x5540b7b0 udp4_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x554222f8 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x55536ea3 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x5588879e kvmppc_entry_trampoline +EXPORT_SYMBOL_GPL vmlinux 0x5590cb4e sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x559f1eff __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x55d1cde3 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x55e6aabe perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x55ecbd29 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f51ef3 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x55fdeb16 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x55ffcd4a skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x560aa1db opal_tpo_write +EXPORT_SYMBOL_GPL vmlinux 0x5612d5c2 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x5623e257 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5647213f bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x5647ec6a blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x56516cf5 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x565421a7 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x56594aca fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x5668d7dd __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x5675ff98 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x56814d6c __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x568a5f1e kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x569eeff8 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x56c45ce7 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x56c9e2fb shake_page +EXPORT_SYMBOL_GPL vmlinux 0x56cf322b mpic_subsys +EXPORT_SYMBOL_GPL vmlinux 0x56d520e1 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56f63c4c ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x57059bc6 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x57076537 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x5725c1bf scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x575b35b6 percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x576575d1 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x577aef40 arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0x5783841f device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a545f6 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57dabe04 of_node_to_nid +EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x583fbdff nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x5843c214 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x5853385a irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x5856ec49 __of_genpd_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5894ffc6 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58a55743 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x58a8e508 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x58b0496c usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x58c01fa1 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x58c2e105 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x58c2f6aa dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x58e2252a crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x58f04fc7 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x5929d0f1 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x5934c5e2 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x593fa2af store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0x5950cb93 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x59746f84 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x597e360b arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x59884067 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x598d48da __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x5990ee38 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x59af3dc5 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x59b07b48 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59e22e80 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x59e3e9ae of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x59e8b82e synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59f58285 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x59ff6c8d percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x5a024ecd percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5a19e5e0 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a1ebdce blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x5a28c266 pcibios_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x5a2de3d8 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x5a2e3ede badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x5a3de2d4 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x5a4fb086 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a9960ac get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x5a9dc9e8 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x5abb21ce usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x5b133be2 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5b146d38 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x5b23e02c usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x5b3425ab usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x5b53b4fe tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5b652cbe sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x5b80f408 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x5b88b3bc mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x5b9389ba __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x5b9d931b locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bee93da __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x5beeed60 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5c019bee gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x5c05bac3 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x5c348c5e crypto_has_skcipher2 +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c7cfdb7 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x5ca10ac0 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x5ca7627c class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cad3b47 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d38e1e7 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x5d3ef617 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x5d650960 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x5d7a5beb debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5da9a077 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5dad72e8 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x5db2c017 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x5dbe1a1a disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x5dbee276 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5dd4efb9 input_class +EXPORT_SYMBOL_GPL vmlinux 0x5de6bf29 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x5deac63d simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x5df1919f blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x5e154118 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x5e21afdb fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x5e21db03 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x5e2c7fdd tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e5bce82 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x5e66ed28 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x5e82d4ee irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x5e97498c usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x5e99df82 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x5ea575d2 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x5ea95aa3 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x5ebd9fb5 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x5ecae31b inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x5eda5697 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x5eddaf62 early_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x5ee7542e reserve_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5eec4a6a get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x5f1e9913 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x5f3a76f6 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x5f44628d blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5f51c5f1 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x5f79d420 eeh_add_device_tree_late +EXPORT_SYMBOL_GPL vmlinux 0x5f7d8e81 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x5f8e4a84 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x5f92f7a3 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x5fc8ca6a blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x5fe039c9 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x5fe45e92 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x5fee0be1 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x600bca51 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x600c5c34 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x6011b400 mmu_partition_table_set_entry +EXPORT_SYMBOL_GPL vmlinux 0x602fdcd6 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x60467b06 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x60526cd3 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x60762548 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x6084dfce devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x6092ca95 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x609c9ced ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60ae6000 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x60b847ce hash_page_mm +EXPORT_SYMBOL_GPL vmlinux 0x60c7f3df serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x60caff54 devm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x60d2b36c aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x61062a30 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x61140b3a led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x6116e32b virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x614f2591 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x6197cb1e ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x61995f2e pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x61be0a78 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x61cbe791 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x61eca5c1 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x62145271 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x62208226 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x623216f7 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x62391365 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x62590e87 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x6267ccd5 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x626a10a6 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x627f58e0 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x629f36e8 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x62bf84da devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x62cf5e7a devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x62da5ad6 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x62f32904 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x62f3f26c palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x633543e8 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x63354b81 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x6347a522 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x63704c5d reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x63a62230 mmu_psize_defs +EXPORT_SYMBOL_GPL vmlinux 0x63af33f6 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x63b0326f ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x63b810c0 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x63cf2230 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x63f09f20 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x642aa516 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x643d81c0 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x64624e07 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x64644ec2 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x6465b75a of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x6472c65f ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x648c0507 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x649d5c86 eeh_iommu_group_to_pe +EXPORT_SYMBOL_GPL vmlinux 0x64b25da8 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x64b5efcf opal_int_set_mfrr +EXPORT_SYMBOL_GPL vmlinux 0x64be5433 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x64c65135 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x64d1a138 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x64ecaaaa vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x64f69441 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x65068d19 md_run +EXPORT_SYMBOL_GPL vmlinux 0x65112fbc tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x6519c6b5 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x65369e22 cxl_cx4_setup_msi_irqs +EXPORT_SYMBOL_GPL vmlinux 0x655f68f0 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x65847ffe of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0x65ab8568 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65de6893 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x65e80331 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x660b3d7b cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x662beaee pcibios_unmap_io_space +EXPORT_SYMBOL_GPL vmlinux 0x6630be9c md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x664cc108 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x66563ae6 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x6658cfe9 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x66626037 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x66704962 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x6670b0eb get_device +EXPORT_SYMBOL_GPL vmlinux 0x667a63d7 security_mmap_file +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66898adf skb_gso_validate_mtu +EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x66c397f7 nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66d3c51a __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x66d427c9 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66da6f68 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x670f4fc0 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x6715c060 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x671ef147 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x67224b50 bdev_dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x672ce891 security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0x674e790c get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x67626a8d pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x677ca4f4 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x678b8cbb kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67b0ff48 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x67b291c9 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x67c2d613 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x67c6ceab i2c_new_secondary_device +EXPORT_SYMBOL_GPL vmlinux 0x67c7fade __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x67f2741c crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x681b3718 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x68544fd2 nvdimm_bus_add_poison +EXPORT_SYMBOL_GPL vmlinux 0x686d5bb9 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x68712d78 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x687ace0f sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x68866a89 user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x68869ca3 nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x68bd0c8b regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x68e5f821 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0x68f4deff srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x68fc2a86 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x692c70bc tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x696ad97f ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x69790ef6 __init_new_context +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x697cbbb4 threads_per_core +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x6999328b phy_init +EXPORT_SYMBOL_GPL vmlinux 0x69a284b9 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0x69c3f0b4 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x6a03b910 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x6a0e7c58 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a417f04 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a85437b tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x6a880e63 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x6a8f342c set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6ac87ea9 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x6acb8d84 ppc64_caches +EXPORT_SYMBOL_GPL vmlinux 0x6ad3eeef rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x6ae7358c dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x6b00425f crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b654ac3 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6b67c050 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b8934b7 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6ba08461 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x6ba47820 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x6bade2c4 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x6bae2966 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x6bb7f95e root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6bda1a55 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c095461 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x6c27c71f posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c4f3c59 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x6c5c5659 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x6c5cf1f1 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x6c6c4517 __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0x6c709870 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x6c748037 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x6c7502c9 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cd5bda9 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6cdf8fec device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x6cee2b24 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x6cf8c581 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x6cfc5ae8 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x6d010b6c __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x6d07bb0f crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x6d0bb0bb devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d30c6ba devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x6d316b7b cxl_pci_associate_default_context +EXPORT_SYMBOL_GPL vmlinux 0x6d391b73 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x6d4a6e74 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x6d4c2cf1 get_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6ddde6b7 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x6de34d1f posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x6dea3ae5 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x6df53be6 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e0d3702 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x6e0f700f pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x6e133c98 phy_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x6e1b44bc balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x6e362abc regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6e379526 kernstart_addr +EXPORT_SYMBOL_GPL vmlinux 0x6e38a219 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e82eaa4 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e8d32a8 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x6f0d8549 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x6f16d079 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f35a8ab __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6f3fed7b bus_register +EXPORT_SYMBOL_GPL vmlinux 0x6f4b0fed aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x6f656953 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x6f73805f raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x6f7cc97d md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x6f87f61c devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x6f908dca pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x6f9a8ae0 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x6fa18e15 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x6fab9c63 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x70210383 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x7029765b __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x70613d2b dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x70958656 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x70a5e704 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x70acb1de phy_destroy +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 0x71037382 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x7107b9e0 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x715b1c84 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x7160224a usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x718f6ca5 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x7196d89d crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x71ca4c15 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71dd86af sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x71e91ca4 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x71f0a7c3 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x71f28789 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x71fe8210 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x7223c6f5 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x72402e04 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x72411bf8 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x72618ffa blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7276919a sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x72857188 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x72914ec2 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x72b92943 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x72cd6b75 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x72f46d75 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x730f50f7 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x732e27f3 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x733cc9c6 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x7341e849 __of_genpd_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x735c05c6 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x735ddf22 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x736f64aa pci_hp_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x7375fb15 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x738579da security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0x738cd7f8 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x738e240d cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73c1cfda device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73d26ef3 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73f2b817 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x74067d71 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x740af89a devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x74152c71 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x744990a8 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x746252b6 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7474647a tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x748d6fa6 security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x748f2164 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c4fc9e device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x74c51d75 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x74cf5c9a arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x74ece1da tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x74fc7ae2 kvmppc_tce_validate +EXPORT_SYMBOL_GPL vmlinux 0x750dc591 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7526d176 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x75329035 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x75382825 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x755a5cc8 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x759c17c1 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x759e1741 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x75a36116 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x75c51b84 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x75c9d8c3 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75cd816d __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x75d44c06 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x75f2a044 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x75fa812a relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x7609092a dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x7619b293 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x761ed6ec hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x7625649f tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x7629e6cc tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x762c0858 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x7630ead5 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x764d9248 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x766a5a20 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76a1581a usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x76b6479d pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x76eeb7cd devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x76f69dd0 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x770620ce bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x77134632 pcibios_scan_phb +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x77329196 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x77370602 inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0x773b9d30 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x7764cf56 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x77799a42 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x779ffcdc gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x77a9f9b6 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77c21b93 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x77c531d1 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x77e0224e md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x77e1f2a5 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x77ec8374 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x78342467 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x7834c5f8 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785ae8cf cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x786179a3 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x786cb002 devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x787f4e72 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78c0a137 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x78c4f501 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x78df32d6 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x78f07038 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x78f9f398 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x79154d5e tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x7932357c ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x7937756c cs47l24_patch +EXPORT_SYMBOL_GPL vmlinux 0x793d9a1d regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x7961bd6d fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x79628101 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x797fdc50 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x79807c09 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x798ed569 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x799500cf devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x79ca02a6 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x79cf0fca l3mdev_get_saddr6 +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79ec4c92 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x7a13d547 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x7a1d97c1 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x7a2622fa pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x7a2b4a59 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a36a349 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x7a3fd917 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x7a5ce1ef vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7aa89c1e power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x7aaeffc5 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x7abe61e4 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7acb8205 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x7acdc360 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7acf1c13 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x7aed5f82 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x7af15523 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x7afb1d19 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7b0bb73f __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b13009b udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b258494 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x7b2d6e6a fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x7b3fb07d rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x7b4673c3 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x7b4ca81f dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x7b510c7c __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x7b558aef of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x7b7e2301 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x7b82b4c7 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x7b9b49e6 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x7b9c5df8 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x7bc3a604 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x7bd2ef04 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x7be3dec8 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x7bff3a1c bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x7c078bd0 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x7c19314c cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x7c1badb9 kvmppc_add_revmap_chain +EXPORT_SYMBOL_GPL vmlinux 0x7c35a3a3 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7c37bc89 pseries_ioei_notifier_list +EXPORT_SYMBOL_GPL vmlinux 0x7c4d59d1 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x7c71674e netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x7c71f3e4 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x7cb72e2d platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x7cbba872 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x7cc5138c l3mdev_get_saddr +EXPORT_SYMBOL_GPL vmlinux 0x7cce0a9d inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ced2e04 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7cf4996d ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x7cfe62f5 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d28c203 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x7d29fb04 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x7d514a75 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5ba5d2 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x7d5dfc92 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x7d7ac609 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dc1e388 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7e2675f1 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7e422ebc of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e6919ba nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x7e70d1ee devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x7e756810 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7ea11125 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7eb25884 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x7edebeff hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x7f008202 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7f080b7c napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x7f08c0f6 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x7f150d8f dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x7f296ca8 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x7f332ff1 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x7f47ef42 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x7f516920 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x7f5c06f5 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x7f6c6e8d pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f98c7c3 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x7f9d3aad pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7ff7704b mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x7ffa3bf1 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x80086b74 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x8012891b nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x80189d24 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8023c8ee dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x802d290b extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x803041ab rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x805da9a8 eeh_dev_check_failure +EXPORT_SYMBOL_GPL vmlinux 0x805dcadb usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x80756771 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x807670bd trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x809802b0 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x80a38960 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x80ab6d76 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80e5ff8b ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x81036c3b wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x8126b5d8 rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x81279962 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x8132c34d udp6_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0x8147156a __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x8152e111 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x81618fd9 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x81633f13 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x8175581a regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x81be6ff2 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x81c89512 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x81eee021 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x8206c9f6 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x8213b04b usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x821b7963 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x82210acb usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x825d101e page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x829647f5 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x82a78d92 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x82bb6e8b ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x82bcac06 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82e71c83 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x8301cc71 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x831c0ea6 kvmppc_tce_put +EXPORT_SYMBOL_GPL vmlinux 0x831cd50b rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x832c1b80 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x839560ed device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x839c877d regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x83a54b40 iommu_add_device +EXPORT_SYMBOL_GPL vmlinux 0x840523db stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x84106173 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x8410f843 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8411fd84 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x843ef28e serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x847109ed pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x849d2297 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84c57cf3 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x84f13d9a devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x84f71b07 xts_crypt +EXPORT_SYMBOL_GPL vmlinux 0x8506e28a mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x850b3180 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x852b6f33 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x85314440 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x8562ab70 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x8582983e pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x858b6519 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x8596a833 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x859b338d rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x85ad6b6c raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85d2ba45 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x85e1c7ec regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x85e37ef9 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x86072990 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x86097fae __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x861dd680 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x86202b44 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x863b1588 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x863dca21 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x864046e0 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x864169bf spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x867bb0f5 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86b90f7d unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x86c1d1c6 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x86cd2980 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x86dd15b4 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x86e8105c open_check_o_direct +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu +EXPORT_SYMBOL_GPL vmlinux 0x87177aab __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x87345a4e cs47l24_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x874984cb kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x876642f4 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x877bf55a __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x878ec3e7 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0x87961d86 __of_genpd_xlate_simple +EXPORT_SYMBOL_GPL vmlinux 0x87b8b988 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x87f6a3a6 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x8804af3d usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88111e67 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x881ef905 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x883519ab power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x887cfac0 srp_rport_del +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x889904bf __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x889b9473 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x88a5e835 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b22523 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88d29189 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x88d6978f bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x88e38dfc serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x88fab49e pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892f77f7 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x8940af14 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x8946b632 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x894fd540 cxl_afu_put +EXPORT_SYMBOL_GPL vmlinux 0x89880209 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x898c994f pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x899cca3f __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x899e51ae pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x89acf119 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89cbbad4 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x89d0c694 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x89dbf5b0 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8a3913cd devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8a3bb4d0 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x8a53e71f ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a6af5bb ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x8a77e87a crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x8a8b6310 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x8a8fffe9 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac66533 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x8adcaa00 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x8ae48ebd fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x8aea5517 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x8b1bbad7 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x8b2680b5 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x8b5d589d pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x8b5fc176 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x8b6f898b tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8ba5243e of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x8ba6c64e gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x8baadfff clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x8bc13527 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x8be44a7a cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c276fad devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x8c62403e get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c679f78 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x8c6c7d19 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x8c70de0d usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c879b61 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x8ca99258 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8cba28cb pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x8cc3e023 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x8cee86cd led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x8cf07597 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x8cfa57d1 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x8d1031ee pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d2dde90 wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x8d51372c cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x8d54ebb9 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x8d614c0e lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x8d66c1b2 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8da00ae4 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x8dbf5a20 kvmppc_hv_entry_trampoline +EXPORT_SYMBOL_GPL vmlinux 0x8dcc9d4e of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x8dd4d134 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x8df2639f gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x8e0baeb8 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x8e0c71bd regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x8e108dd3 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x8e196d94 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x8e1f77e0 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e46fe9e gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8e477bd8 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x8e4dad8e usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x8e70a038 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x8e73a596 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x8e7a6bcd devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x8e82e735 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x8e852c41 iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x8e9db533 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x8eb79e6a nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x8eb7f7dc agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x8ec8e4e3 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x8ed7fe4f flush_fp_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x8ed9dd38 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x8edf5dd3 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x8eec2bf9 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f86e984 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x8f88a39b irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x8fa6cb7b add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x8fde407e mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x90042a24 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x900c5854 put_device +EXPORT_SYMBOL_GPL vmlinux 0x901495f2 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x901f9b6c powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x90382c07 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x9077d5ea usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x907d6377 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x908ac3ca pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x9093ec57 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x909a66d3 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90c7519a handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x910e89e5 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x91149c29 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x91205b77 do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0x91249b45 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x917a425e of_genpd_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x917bebc0 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91905212 copro_flush_all_slbs +EXPORT_SYMBOL_GPL vmlinux 0x919416aa gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x919878f1 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x91b89f01 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x91b8d679 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91ec3adc trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x920c465c mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x92116cfe ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x92128644 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x92300c8f ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x923d4944 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x9242bb80 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x92667236 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x927e16f2 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e4a25e regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x931b46c2 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x931e77fd fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9322638a ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x932a212d fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x932db4ee crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x932f9038 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x93311080 opal_flash_read +EXPORT_SYMBOL_GPL vmlinux 0x9349658b device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x936e3d4d gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x93922111 get_compat_bpf_fprog +EXPORT_SYMBOL_GPL vmlinux 0x93fcd7d7 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x942ac52a i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x94334089 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x94403997 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x947b4226 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x947becf6 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94b5a51a of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x94d65950 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x94d972b7 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x94eee282 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f6da43 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x9501a8ac sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x954d3794 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95904b4a leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x95b24ced rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x95b98e7c __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9622fcc1 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x9634c6d5 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x96361efe wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9680d425 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x9692f4d3 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x9694215f kvmppc_h_get_tce +EXPORT_SYMBOL_GPL vmlinux 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL vmlinux 0x96bf4cac devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x96dccf95 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x96df2f3b of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x96ffbd8e device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x97312d21 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x9735f061 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x97435329 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9759676c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x9771e706 pcibios_finish_adding_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x977db6eb event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x9786726e sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x9793343e register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x979f762f ping_err +EXPORT_SYMBOL_GPL vmlinux 0x97d51afe pci_find_bus_by_node +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97dfc109 __devcgroup_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x97f9a60c phy_create +EXPORT_SYMBOL_GPL vmlinux 0x97faedc4 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x9804954b badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9836ad38 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x98730200 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98a02a70 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x98a139af device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x98a40608 pci_remove_device_node_info +EXPORT_SYMBOL_GPL vmlinux 0x98bb9fa0 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x98c0f412 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x98e37a87 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x98e5e530 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x98f9f73d fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x99011668 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x99018f99 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x9935cb56 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x99368d65 kvmppc_update_rmap_change +EXPORT_SYMBOL_GPL vmlinux 0x9939cd9f badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x995c0738 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x9987e6e9 opal_get_sensor_data +EXPORT_SYMBOL_GPL vmlinux 0x9989fb62 __dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x998be09c pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x9999762c device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99bf8add crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x99fa9738 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x99ff8d08 opal_invalid_call +EXPORT_SYMBOL_GPL vmlinux 0x9a09044d attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a127fad metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9a3f3a94 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x9a42ac9a ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x9a5737db bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x9a608691 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x9a816d8c regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9a9b430e spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x9aac673d gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x9aad6540 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9aaf6345 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9aca315b __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0x9acaa5fd crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x9ad6cf7e ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x9adf08c3 mmu_linear_psize +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af62e78 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x9b1b1588 of_get_dma_window +EXPORT_SYMBOL_GPL vmlinux 0x9b28dcf2 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x9b5a50ab cxl_pci_disable_device +EXPORT_SYMBOL_GPL vmlinux 0x9b5cd3e5 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x9b726c14 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x9b860e06 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x9b96e0d0 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bae5b00 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c04617a sysfs_remove_device_from_node +EXPORT_SYMBOL_GPL vmlinux 0x9c55cbdc __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x9c595e92 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x9c5aaec6 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x9c71b700 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x9c749dcd pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x9c8bc17e uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x9c93a4b8 vfio_info_cap_add +EXPORT_SYMBOL_GPL vmlinux 0x9caea68b phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9cb0df4b trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x9cc444e2 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cc6e88b pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x9cda2b1a of_scan_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ce0a291 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x9ce5e110 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x9d637d18 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x9d67ffd5 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x9d6e9700 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x9d6eb4a3 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x9d762454 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x9d7d2341 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x9dd54ede cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x9dd6acfc debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x9dd9749f dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x9dec4a29 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x9def74bb ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x9e1756bc thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x9e1762f2 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9e2dc5aa device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9e30758f usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e92e810 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x9e992b28 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x9e9a0320 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9eaef02a regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x9eb5e2dd put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9f02842f rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x9f1ec9a7 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x9f3a2982 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x9f477fd4 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x9f4bafe7 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x9f58e487 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9f62c1a2 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x9f6ac3ed ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x9f8e467f crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x9f931b3e cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x9f980c2c skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x9f984be2 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0xa00e5edd driver_find +EXPORT_SYMBOL_GPL vmlinux 0xa01de938 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xa02c56ba thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xa02c9ca8 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa03fbc1c mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xa0720a33 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xa074683d fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xa081fa70 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xa0a162d1 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xa0a27fff pci_address_to_pio +EXPORT_SYMBOL_GPL vmlinux 0xa0c6dc1b __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa0c75654 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xa0e99647 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xa0f3e989 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xa0f9d3fb cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xa10337fb da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xa126cbc1 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xa12b0ac3 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xa12e813b pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xa1336981 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0xa1529c1c tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0xa163a20f ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xa16bdf51 eeh_pe_set_option +EXPORT_SYMBOL_GPL vmlinux 0xa182a660 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xa1863879 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xa18b3a50 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa18b454d crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0xa18c07b7 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1b89d33 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0xa1d89e52 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa2011c87 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xa2080716 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xa21cee7c hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xa232a813 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xa2546ec2 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xa256c08f crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xa25f4fbb ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa2634e8f blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa27134bb dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa279a05f power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xa290c270 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xa2a99796 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2c1a6c3 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xa2c1bb73 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0xa2dae289 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xa2df06b1 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa2e09388 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xa2fbdf9d class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xa3083ae0 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xa35eea18 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xa36cb97d sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0xa37d7bdb inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range +EXPORT_SYMBOL_GPL vmlinux 0xa3b02316 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3bdec70 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3f921c0 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xa402f95e get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xa4243fc2 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xa4268ff0 update_time +EXPORT_SYMBOL_GPL vmlinux 0xa42919b2 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xa4357143 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa43bd614 d_walk +EXPORT_SYMBOL_GPL vmlinux 0xa44fc522 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0xa45419c5 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa45ce9d6 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa472c642 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xa48157e0 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4911925 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xa4a7a174 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xa4b415cc i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0xa4d90733 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xa4e2e462 pcibios_claim_one_bus +EXPORT_SYMBOL_GPL vmlinux 0xa501759c subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xa50dce27 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xa54dcf60 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xa552c5c3 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xa576f875 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xa57c2a1a devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xa5953779 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq +EXPORT_SYMBOL_GPL vmlinux 0xa5b37c93 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xa5d1a10b devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xa5e54ad1 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5efe460 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xa60fbf6c trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0xa617af68 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa626067c regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xa62b9bf0 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xa62bddbd gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xa63ed166 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa694f297 vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6be3d10 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0xa6dae460 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6eded6c opal_xscom_read +EXPORT_SYMBOL_GPL vmlinux 0xa70d375d iommu_flush_tce +EXPORT_SYMBOL_GPL vmlinux 0xa7215606 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xa721bc3f opal_rtc_write +EXPORT_SYMBOL_GPL vmlinux 0xa72ad68b vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xa73f9155 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xa7546fbc spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xa765f4d4 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xa77269c2 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xa77fce93 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xa7866f21 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xa7917d4b inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa793eb24 dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xa7a2c7ef list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xa7b65773 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xa7b9bd3f dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa7cdd8ca wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0xa7e3b494 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xa84fd1c1 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa86acd3d shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xa8702691 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xa879d917 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xa87de66f request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xa888a72e phy_get +EXPORT_SYMBOL_GPL vmlinux 0xa8932d13 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xa89eb9e9 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8bb72f3 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xa8bdca0c pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xa8cb4f7d sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa8d55b59 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xa8ddb3eb gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xa911b14f xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa93a21b8 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xa9473443 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xa95d8e13 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xa96a1644 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xa9763ca6 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xa97dc317 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xa9aa1b00 opal_poll_events +EXPORT_SYMBOL_GPL vmlinux 0xa9abd79c scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xa9cae16f security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0xa9ce341e usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xa9d929ce pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9f541e0 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xa9fafd72 eeh_pe_configure +EXPORT_SYMBOL_GPL vmlinux 0xaa03330e dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xaa16f9c2 md_stop +EXPORT_SYMBOL_GPL vmlinux 0xaa183689 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xaa1db100 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xaa23c499 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0xaa3ed251 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xaa454425 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xaa48d5df loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0xaa6b2933 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xaa774bca sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xaa7a5ed9 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xaa917fa4 __class_register +EXPORT_SYMBOL_GPL vmlinux 0xaa980343 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xaa9dcd42 devres_get +EXPORT_SYMBOL_GPL vmlinux 0xaaa20d93 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xaaa355ae pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xaaa57f87 of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaab4fa07 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0xaabe4da6 opal_write_oppanel_async +EXPORT_SYMBOL_GPL vmlinux 0xaadd58c5 devres_add +EXPORT_SYMBOL_GPL vmlinux 0xaae0070d pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xab023725 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xab05b562 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xab106f65 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab4734eb devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xab5d189e ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab7ce084 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xab8779ea vfio_virqfd_enable +EXPORT_SYMBOL_GPL vmlinux 0xab8d0ca8 of_css +EXPORT_SYMBOL_GPL vmlinux 0xab8d5af7 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0xab8df192 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xab9cb8ad power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xab9ec32f generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xabadb33d device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xabbad8f2 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabef64ea of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xabf327c3 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xac0624b4 vfio_spapr_iommu_eeh_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xac0d2a30 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xac0e4881 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xac34c603 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xac58bdc9 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xac640dd8 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xac7ae57a usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xac8bd9c2 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xac8eda23 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xaca46119 device_reset +EXPORT_SYMBOL_GPL vmlinux 0xacca087a gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xacfe997e powerpc_firmware_features +EXPORT_SYMBOL_GPL vmlinux 0xad036d02 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xad1791f4 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xad25c204 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xad398114 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xad64abc8 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xad6b2766 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xad73de59 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xad8d2717 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xada0c101 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadade124 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0xadc4b8c6 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xade8b83c dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0xadee80df __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae53ac64 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0xae5995b5 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6c9569 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0xae6eaf93 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0xae778cdd usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all +EXPORT_SYMBOL_GPL vmlinux 0xae821b6d regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xaea27505 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xaeaf3d30 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xaec0cd9f iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xaec9921f hash_page +EXPORT_SYMBOL_GPL vmlinux 0xaedb8b93 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xaef11316 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xaef3c8e9 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xaf279112 opal_leds_set_ind +EXPORT_SYMBOL_GPL vmlinux 0xaf283988 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xaf2a3a51 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xaf790737 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0xaf7b1d75 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xafb1772d ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xafbe6c9e kvmppc_hwrng_present +EXPORT_SYMBOL_GPL vmlinux 0xafcde71b dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xb011f117 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xb0184f8a phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xb018aa96 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xb02d5d75 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xb02e08f2 vmalloc_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xb03ed35f iommu_tce_clear_param_check +EXPORT_SYMBOL_GPL vmlinux 0xb075d378 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xb0800fc8 __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0xb082bdae pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xb095b196 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xb09b43a8 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xb0a5ac9b ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0d173b8 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0xb0d6c034 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xb0e35dd4 of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0xb0ee6ba3 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0xb0fd8a44 devm_nsio_disable +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb14d60d9 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xb16873b2 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb18528fd crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1dcdfbd trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xb1dec4aa iommu_take_ownership +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb21d4df9 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb21e0d12 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb25dff72 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xb266320c spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xb269e7a8 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb2ab6d25 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xb2bab32a phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xb2c53bff crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xb2d4c8c4 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0xb2d95375 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0xb2decdcc pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xb2e6b910 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb313b095 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xb31c58c6 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xb31fd89a of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xb33b03ee ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0xb33dad00 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb35fb861 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xb371e12e register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xb3798fd1 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xb37cf650 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xb3999afd mm_iommu_preregistered +EXPORT_SYMBOL_GPL vmlinux 0xb3c6e845 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xb3cd7f03 user_read +EXPORT_SYMBOL_GPL vmlinux 0xb404c5ce region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xb417274b ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xb417a505 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb423cd6c fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xb4528c75 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xb455f919 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xb47ebece crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns +EXPORT_SYMBOL_GPL vmlinux 0xb48f7004 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xb49b0ea3 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xb49bb749 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4ee6fad cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0xb50468ba bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xb50c2a3a ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb52f6711 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb5565db3 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5b7ca40 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xb5bbc1d6 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb5c8edf4 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0xb5dbb156 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb5dfd3c0 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb5fbe654 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq +EXPORT_SYMBOL_GPL vmlinux 0xb61f1781 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xb6229d5a security_inode_readlink +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb6298506 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xb62abcc5 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xb62b6fc3 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0xb63a8539 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0xb643c250 xics_wake_cpu +EXPORT_SYMBOL_GPL vmlinux 0xb64d8e33 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xb656cdac spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb665fa77 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xb666cce4 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xb67aa3d4 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xb68a2956 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0xb692e50e device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xb6a0d553 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6b4c9cd fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xb6bcb891 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xb6bf26c0 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xb6c7eddb __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0xb6f4e19f usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xb711216b dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xb72fbaba regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xb732a0e0 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xb73e8893 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xb7469bfb _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0xb75389ac mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xb7614a8b xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xb7710ea9 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0xb7846198 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0xb7ab417e crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xb7bbdb94 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7c715d1 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xb7cfb185 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xb7d2bc75 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb7f40a26 opal_message_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb8508ac6 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb8656c3b trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xb86fc0a9 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0xb872cf00 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xb87ebe52 srp_attach_transport +EXPORT_SYMBOL_GPL vmlinux 0xb8895730 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb897ecea fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xb8aafa39 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8df57c2 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xb8f2209e crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb90bc9f7 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xb9170278 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xb928c221 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb929d8d9 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb934f23a usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xb946d5aa dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0xb9539f99 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb9710946 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xb9ab9236 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c3a1df blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9e011a0 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xb9ed9252 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0xb9eee167 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xba13a994 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xba158769 rtas_cancel_event_scan +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba53d0fe swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0xba93dd2e devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbac67bf0 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xbacd4b1c cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xbaef1c2f usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbb017a8c device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0f8c85 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbb16b68f skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xbb2bcf22 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xbb414138 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0xbb4c100d device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xbb54098e __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xbb55ef85 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb725fb9 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xbb785f76 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xbb80d24b public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xbba9b6a8 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xbbb3411c __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xbbdfcece regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xbbe3f255 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0xbbf3e186 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xbbf89d9f static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0xbbffa793 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0xbc2afbfe platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xbc48637e sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xbc5dcbef regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc8a769b __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcc11bdd ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce18536 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xbcec054f sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbd045ee6 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xbd0ea863 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xbd3b2e8d serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xbd6da0b0 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xbd6f929e __pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xbd837892 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xbda34570 ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xbdb4dc55 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xbdcf3379 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbde3f18d usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xbde8dc00 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xbdf367e1 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xbdf52f83 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xbe053074 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe2322d7 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0xbe245a08 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xbe3d3056 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe44fd75 mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbe471cdf opal_rtc_read +EXPORT_SYMBOL_GPL vmlinux 0xbe5c6389 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe718213 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xbe74248e usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeba7d31 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbec8d1c8 analyse_instr +EXPORT_SYMBOL_GPL vmlinux 0xbedc1528 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf1c226c sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xbf34d487 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xbf4bce85 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xbf51c762 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xbf5bb672 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xbf74c658 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xbf779561 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xbf8113cb regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xbf81d496 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfc0731c ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfeb2391 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc00bb2a9 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xc011fa71 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc02bec3c usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread +EXPORT_SYMBOL_GPL vmlinux 0xc07721fd device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xc07be0f7 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0a5f0f2 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b811eb do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xc0c69803 pnv_pci_get_presence_state +EXPORT_SYMBOL_GPL vmlinux 0xc0d03b13 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0d8b132 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0e077c2 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0fc5b23 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc118ffa2 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xc1248878 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xc12cf693 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc175a622 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xc196bc68 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xc19f93e0 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xc1a09f6c tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xc1addb2f __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xc1b68f93 trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xc1ba54f1 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xc1bf3d16 security_path_link +EXPORT_SYMBOL_GPL vmlinux 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL vmlinux 0xc1e8a44b sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xc1ebe6b9 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xc1f93c6c sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xc1fde184 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xc204da27 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xc209377d dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xc20db4a4 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xc211fe40 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xc2271bdb devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc2583230 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xc25a8f72 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0xc262266d ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xc2667b05 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc272e7df crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xc27440c1 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xc27fc6fe sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc28aa62f ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xc298954e __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xc2a8af39 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xc2ac485e yield_to +EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc2d01ea2 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc2efb7ce __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xc30782af param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xc3149374 dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xc31806ed dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xc328d9d9 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xc33489a5 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xc33c643a cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc37696b4 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xc37cac48 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc3bc6fe9 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xc3cabb95 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc3d8920e i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0xc3de20ed securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xc3e4af4f pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xc424930f wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc4287bf4 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xc4287cfc of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0xc441b742 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xc4424c0b iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0xc4479477 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc457c91b l3mdev_get_rt6_dst +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc484883e nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL vmlinux 0xc49456a5 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xc4982707 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xc4a16a61 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xc4b075ee ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc4be0005 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0xc50191b0 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc518cda1 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xc51cdde0 mm_iommu_get +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc54a07ef list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xc5615eca netdev_default_l2upper_neigh_construct +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc57c7942 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xc5878314 blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0xc58a1687 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xc58fb05c percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0xc590a3c3 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xc59193cc bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xc59f6629 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc5a2c19f idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc5b06ac2 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xc5e07383 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xc5e2cf69 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xc5f2e773 nvdimm_clear_from_poison_list +EXPORT_SYMBOL_GPL vmlinux 0xc5f6b65f iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid +EXPORT_SYMBOL_GPL vmlinux 0xc6110bd2 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc624f829 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xc627431a alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc633da10 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xc63d13a0 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc65c9d9c ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc67057b5 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xc67bc1d7 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc68aa252 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6c69a8f opal_flash_write +EXPORT_SYMBOL_GPL vmlinux 0xc6d1ed0a tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xc6f35bf7 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc771a5b8 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xc7767cd1 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xc776b01c __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc77d5c5a rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc781393c usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xc78f2c3c gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0xc791079a gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xc791e071 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xc79a1ce2 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7bab597 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xc7be0c40 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xc7c7e50e __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xc7ccc216 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0xc7d07cf2 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xc7d69d11 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0xc7e29cb0 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc800a54b dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xc80aeb53 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xc8249543 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xc8450266 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xc845b206 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc84d33f5 spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc856a11e dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0xc856d9fe dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc89a4408 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xc89b46f7 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8b6988b pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xc8be4559 pci_add_device_node_info +EXPORT_SYMBOL_GPL vmlinux 0xc8c9c06a screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xc8cad513 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xc8d79480 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xc8dd1551 serial8250_em485_init +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8e31d07 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xc8f82b98 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc94dd80a trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc9664003 device_create +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc97fa7d6 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xc9cecd39 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xc9e64363 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9fc7f62 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xca2fb44f pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xca365c41 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca846b0b dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcaccdfa4 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xcae87bb1 regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xcb085b4b pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb458f81 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xcb5ee621 hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xcb6b14ac ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xcb749268 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcb7ac9ca opal_message_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcb8c1d5b spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xcb8e707c usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xcb948f59 mm_iommu_find +EXPORT_SYMBOL_GPL vmlinux 0xcbaf22a5 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xcbbe3779 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xcbc94d28 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xcbcddfbc debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbfaff23 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcc1be521 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xcc213da7 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xcc2ba30d list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xcc3378b1 pnv_pci_get_slot_id +EXPORT_SYMBOL_GPL vmlinux 0xcc490562 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0xcc779d2a extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc955cfb platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xccc7918f dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0xcccdce92 arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccde7b75 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xccf53b0f md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xccf6a346 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xccff8fa0 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xcd5051ec crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xcd58589b irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xcd672e51 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0xcd71513b skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd92a21b addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcdafe1d4 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdd6ce2c dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xcdd99c6c badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0xce2c459a cs47l24_irq +EXPORT_SYMBOL_GPL vmlinux 0xce5397e8 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xce626bf8 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce93249a crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xcecb9c78 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcefeee61 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xcf13f025 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xcf14e00e bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf568abd kvmppc_ioba_validate +EXPORT_SYMBOL_GPL vmlinux 0xcf77aeb9 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xcf811a83 flush_altivec_to_thread +EXPORT_SYMBOL_GPL vmlinux 0xcf9d6400 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xcfaa66bb to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xcfac4d0e device_rename +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfbd902a crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfc93a34 pm_genpd_syscore_poweron +EXPORT_SYMBOL_GPL vmlinux 0xcfc9cf89 debugfs_use_file_finish +EXPORT_SYMBOL_GPL vmlinux 0xcfd072ec __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xcfd71365 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xcfe11c20 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xcfeb5e34 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xcff74491 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd0036556 pm_genpd_syscore_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xd01afd3f opal_tpo_read +EXPORT_SYMBOL_GPL vmlinux 0xd0203fab mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd03b4056 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd04dee07 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd066511e pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd074a3fb simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xd087f4dd get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xd0a83fd8 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xd0b37f7a __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xd0b85038 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0d20ac1 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xd0e59130 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xd0e75fe0 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xd0e7b112 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xd109d74b subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xd12d7bef bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xd14a9eb0 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xd14c52f6 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0xd165d107 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd19c3022 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xd19db2df pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xd1aea509 cxl_afu_get +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd2050a9c ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21b31aa i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xd228ae73 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xd22e72cb usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd25e8de0 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0xd266bf37 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xd2688ea4 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0xd27175f0 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd277fd1a cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2e38d48 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xd2ec51c1 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd2f665e4 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd302812c dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xd31244f5 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xd324c3a3 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0xd380dc01 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xd38e46e8 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xd39ab4a6 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xd39f985a rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd3a9a6a3 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0xd3c15390 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xd3ca65cb rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xd3d8c0ce cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0xd3ddb8b1 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0xd3e765ca thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd3f9addb of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd4069cf9 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xd40ee220 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd41c8f84 nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd432164b gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd459e143 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xd470a476 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xd486001c __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xd4886da2 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xd495cb58 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xd497c322 remove_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd4be0d30 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4d65093 dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0xd50edfb2 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd51c6b65 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xd543c051 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xd54c0c47 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xd54e56dc blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0xd555c177 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xd5596d48 opal_xscom_write +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd5633dc9 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0xd5893781 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xd590716f spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5c22b70 use_mm +EXPORT_SYMBOL_GPL vmlinux 0xd5ea9c07 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xd5f6946c watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd6303cff ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xd65ddca8 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6792266 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xd67ffa54 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xd6886ecf uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd6a43677 opal_async_release_token +EXPORT_SYMBOL_GPL vmlinux 0xd6bde09a max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xd6be15f5 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd6d53527 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xd6f0b1be phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xd6fa9e52 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd7130241 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xd731d972 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0xd73831ee module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xd74572c8 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xd74d3d09 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd756df28 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xd75ab5fd desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd77af617 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd7b9316f vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xd7ceffab scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7f26159 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0xd7f2a5c8 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0xd7fc3e98 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xd8196a5e bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd8263870 mmu_slb_size +EXPORT_SYMBOL_GPL vmlinux 0xd828a786 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xd8292a99 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xd829366e ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xd82f4c3b kvmppc_clear_ref_hpte +EXPORT_SYMBOL_GPL vmlinux 0xd83a77be wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xd8427418 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xd850b7fe regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xd85c74fc device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xd86ed9b4 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87bb6f5 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd899b664 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xd8ae9e9b wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xd8b0080c blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0xd8db54ae __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xd8e42cc0 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xd8e52017 insert_resource +EXPORT_SYMBOL_GPL vmlinux 0xd8e6f8b2 iommu_release_ownership +EXPORT_SYMBOL_GPL vmlinux 0xd9124959 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xd92fc237 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0xd94c2231 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xd96609ff irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd97ae38f led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xd980680b tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd985c7da regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd9b7373a kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9f230b0 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xd9f5ca5a subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xd9fca204 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xda07c23e spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xda5294d1 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xda5dd0b0 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0xdab6bce9 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xdac694b9 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf9671f serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xdb0d8985 mm_iommu_put +EXPORT_SYMBOL_GPL vmlinux 0xdb2f2a05 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xdb3eaf58 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb5801df pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xdb695417 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xdb6e11f2 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xdb70d3ef irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdbb7c4ee srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdbc47e82 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xdbc99dda skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xdbe470f6 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xdbeb2dd5 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0xdbf585c3 vfio_spapr_pci_eeh_open +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc1c379d __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0xdc1d2992 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xdc3ca1af tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xdc681819 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xdc68be9a __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xdc801755 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc90b501 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9eda92 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcabc7f3 reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdcffce58 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xdd13010a __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd350607 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd4114f9 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0xdd5e54b9 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0xdd729424 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xddb85e7f pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc3af26 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xddd2fdba crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xdddf496b stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xdde05551 blk_poll +EXPORT_SYMBOL_GPL vmlinux 0xdde80082 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xddf8fab8 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xde054607 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xde0ae4d9 vfio_group_get_external_user +EXPORT_SYMBOL_GPL vmlinux 0xde0dc5e8 device_register +EXPORT_SYMBOL_GPL vmlinux 0xde0e0578 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xde18e90c register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xde19ef6f regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xde2bee0e bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xde3ade24 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xde849d32 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xde91c764 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdee46f87 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xdefef2a4 dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0xdf056407 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf1f31c7 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xdf354026 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xdf376012 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xdf3d9d8d dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xdf4098d2 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xdf78d402 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xdf7e623e n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xdf8f0780 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xdfbdf740 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xdfc5555c __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe0228830 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xe02ab3c2 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xe02c5eb4 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe054941c of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe099ef36 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0xe099ffb4 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xe0a02d53 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xe0b5860d pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xe0b7e2a5 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xe0c0ae20 eeh_add_device_tree_early +EXPORT_SYMBOL_GPL vmlinux 0xe0ce30c4 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xe0de196f hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xe0e6982c cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe0ef70b2 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xe1011763 security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0xe1025456 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xe16791d4 kvmppc_gpa_to_ua +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe18ebfc8 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1e8797b usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xe1e97b3a devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1f6552f serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0xe2389cd7 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe255a688 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xe258775c srp_stop_rport_timers +EXPORT_SYMBOL_GPL vmlinux 0xe265dd97 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xe2859d60 sysfs_add_device_to_node +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe2922953 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xe2a576ac __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2da04d5 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xe2ef788b tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe31781dd uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xe3562613 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xe370c41d pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xe371cf96 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0xe37dc62d device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xe380e787 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xe3830dcd wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe3a4dad1 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xe3ad792c of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xe3b200d2 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xe3d7750e btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xe3de7332 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xe3f457ed component_del +EXPORT_SYMBOL_GPL vmlinux 0xe4000269 of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xe40815e3 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xe40e5d7d rcu_exp_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe44794bc fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xe45762d3 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe46a715d of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xe46c87e0 page_endio +EXPORT_SYMBOL_GPL vmlinux 0xe48da177 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xe48e734c __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4985292 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xe4a699be usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xe4c031f8 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xe4c0ed0c dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0xe4d57fef fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe4e021ee tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4f6ecd0 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe4f79d78 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xe4fb65e2 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xe50fc958 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xe51c040f register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xe52aaba6 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xe53ea575 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xe54cdfc0 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xe5540302 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xe56d3678 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xe578c2c7 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5931c6f udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe5a2e9ff transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe5aaf98b __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xe5ea06cc x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xe6440e78 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe6537990 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xe6671147 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0xe6821041 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xe69ad9b3 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xe69b034b ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xe6a1ea18 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xe6b5aa42 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xe6c6257e dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6c7151c virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe71bdc12 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xe72881e7 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xe72d4b25 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe7641014 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe7817978 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe785c818 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xe797e758 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xe7b2b33e page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xe7c1fbbd pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xe7c205b7 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe84795cb iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe85266c1 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0xe8530ec9 iommu_tce_put_param_check +EXPORT_SYMBOL_GPL vmlinux 0xe85c55e7 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe86d1997 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe8b3d664 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xe8c79d69 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xe8d554f5 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xe912f0a8 eeh_pe_inject_err +EXPORT_SYMBOL_GPL vmlinux 0xe929e120 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xe92c7c85 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9474bde dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xe9506579 iommu_tce_direction +EXPORT_SYMBOL_GPL vmlinux 0xe96383fb irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xe984bcc9 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xe996459c sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xe9afd665 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xe9b0a69d __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d38fef usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xe9dcb02e hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe9e759db ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xea1122c2 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea13a151 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea2d0359 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xea2f8132 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xea304d0f rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea3d83b9 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0xea6e8719 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xea7c752a devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xea85977a cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea92405a badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0xea9e1eb4 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xeaa35cd1 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0xeaa600a2 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xeabc86be irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0xeade13d8 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xeade83e1 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xeaeacedb ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xeaf816c1 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xeafa534b iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xeafa5f21 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0xeb037783 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0xeb16fbcb ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xeb2a7f78 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xeb33b1af hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xeb6f67c1 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xeb82deab pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xeb8ae736 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xeba340a7 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xebb1d9c2 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xebc9232b gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xebd29eda pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebf4c7c6 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xec19e6be sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec437311 get_empty_filp +EXPORT_SYMBOL_GPL vmlinux 0xec52ee0b irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xec5a5e81 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xec5bd0c9 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xec5d49ca ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0xec6f4382 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0xec7d1ee7 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xec9171be wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xec98405c gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xeca1859c of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xeca6f215 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xecc45b10 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xece0311f blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0xecf373aa attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xecf955fd blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0xed181ade wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xed3039c2 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xed32d5fa pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xed3a46d8 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xed5bd7a8 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0xed6bcae7 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xed964df1 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xeda39c6c tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xedb81ca5 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0xedbf8566 devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xedca62d2 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xedd44240 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xedeb6055 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xedf71e44 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0xee06a51e gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xee24093c sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xee335285 cxl_next_msi_hwirq +EXPORT_SYMBOL_GPL vmlinux 0xee38740e virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xee605c01 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee72adde gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL vmlinux 0xee8dd6e6 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xeec18bf7 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xeec26353 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0xeed827db devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run +EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xef06ab95 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0xef1a441d rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xef2a6cbd usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xef5deee7 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat +EXPORT_SYMBOL_GPL vmlinux 0xef89deba usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xef9db7bd iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefac47e8 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0xefaead1f rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xefbb1368 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0xefc8832e of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xefd3d426 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xeffdc03b alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xf00335ac ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xf034b930 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf04aa9b7 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xf051d069 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xf06463bb raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xf068bd95 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xf06d4bb5 netdev_default_l2upper_neigh_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf0718b9e ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf075e1f9 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0xf0880e4a dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf0a4eaa0 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xf0a8f3c8 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xf0c98f3d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xf0cd698a rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xf0cdad10 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xf0dd3369 __module_address +EXPORT_SYMBOL_GPL vmlinux 0xf0f5c076 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf0f95d1c regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf156008f of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xf16eaf4a debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1954278 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xf1a25be2 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq +EXPORT_SYMBOL_GPL vmlinux 0xf1b0e5b3 vfio_iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1c346b6 nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xf1cb59fc dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xf1d5aff9 mmput +EXPORT_SYMBOL_GPL vmlinux 0xf1db0dda ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xf1fde4dd hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf205e7b2 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0xf20900f7 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf228b98a user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2f25c0c udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf31df1d9 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33a6cf8 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xf365524b blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf386cbf8 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0xf3879314 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xf38b1a7f devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3d9b0a2 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xf3e6fac3 of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3f51b59 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xf3ff4703 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xf415a642 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf43212af ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xf437e38f wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0xf4545fc6 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xf455e147 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xf45ab9e8 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0xf47feea5 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xf48c3de0 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf49e6a05 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xf4a40f3d dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0xf4a7bef1 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4b19a5a __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xf4c11ac4 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0xf4db09ba perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xf4dd9bbf inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xf4e33e25 extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xf4ee51df dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf4fd7c9f of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0xf4ff3410 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xf505d961 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xf506e147 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xf50797da posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xf51a3405 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xf51a86f2 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf51d9260 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xf53343e9 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xf5368bfd iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf544950b __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf545bf1c rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf56a4759 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xf5954b7d of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0xf59a8425 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0xf5a1f081 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0xf5a4c266 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5abdccc ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xf5cdc426 iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0xf5d3b0e0 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xf5e7b9af devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xf5f5b9c9 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xf5fc2651 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0xf62fbf80 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0xf643664a arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xf6702660 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf67dc38e ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xf6913263 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0xf6acf0b7 devres_find +EXPORT_SYMBOL_GPL vmlinux 0xf6b893ed pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xf6c87e73 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6cfc4fe virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xf6dee0ff regulator_list_voltage_linear_range +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 0xf700a9a1 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xf70c0bae rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xf724437d devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xf72ae2ec ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf74e76e4 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf764a97b arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0xf766becf tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xf7846f68 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xf79bbbbf debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xf79d2290 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xf7a18f3a fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf7a3622a of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xf7e3d848 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xf7eb43ae sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0xf818a477 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf8344cfe rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xf837e0eb unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xf838f5d5 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xf87c0bf4 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf8999a5b bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0xf8bc30fc extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xf8bc9e5f skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xf8d4f35a save_stack_trace_regs +EXPORT_SYMBOL_GPL vmlinux 0xf8e398fc memstart_addr +EXPORT_SYMBOL_GPL vmlinux 0xf8e43aca irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fdda38 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf8ff5540 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0xf90b1862 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xf924d2e9 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf9607028 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xf97c14bd tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf97c6075 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xf9897e39 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9b0659e xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0xf9b883aa __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xf9bd2442 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9ec67ae skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xf9ed5713 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xf9ee7c2a tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0xf9f2fae2 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xf9f4c5b1 blk_mq_reinit_tagset +EXPORT_SYMBOL_GPL vmlinux 0xfa152d85 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xfa198e5d pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa21b437 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xfa233af4 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xfa573a57 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xfa874952 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfaa92b26 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xfaae38f7 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xfabcd746 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xfac56ee0 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL_GPL vmlinux 0xfaeed89c irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xfb0f0e8c pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xfb17f994 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb35d21c single_release_net +EXPORT_SYMBOL_GPL vmlinux 0xfb3e732a crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xfb44a7a1 opal_ipmi_recv +EXPORT_SYMBOL_GPL vmlinux 0xfb52b77d __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0xfb67b4b4 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb7fcb9c rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xfb83c041 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xfb96e97f ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xfba89404 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xfba931a0 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbbd45a4 pnv_cxl_phb_to_afu +EXPORT_SYMBOL_GPL vmlinux 0xfbc1feb4 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xfbe2ddca remove_resource +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc14b3ac inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc278631 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xfc51f5dd rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfc6bdab3 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xfc826183 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xfc90ac6f ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xfcac5e56 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xfcad25b7 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xfcce52bb spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xfce14e1f usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xfcf6efcc invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xfcfae441 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xfd0a432e sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xfd1b1de4 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xfd339098 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xfd3a393b mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xfd615ddd device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xfd79c7d8 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xfd7d5b00 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xfd86627e rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xfd88c468 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xfd9a26cc tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xfdda2e65 vfio_iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0xfddd285f mm_iommu_ua_to_hpa +EXPORT_SYMBOL_GPL vmlinux 0xfde788bd gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0xfdf9a92c skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xfdff5921 eeh_pe_get_state +EXPORT_SYMBOL_GPL vmlinux 0xfe17600d bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0xfe2b57cd restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xfe5ca86b transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfeb89ee4 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfeef3ac7 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xfefb04f4 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xfefdb7ea dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff0848a6 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xff25c6b3 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff644e4a crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xff943e9c extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xffa0c177 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xffb127e0 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xffb3eac5 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffcb60a3 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xffe17893 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xfff3a2e2 srp_rport_add --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/ppc64el/generic.compiler +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/ppc64el/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 6.2.0-5ubuntu12) 6.2.0 20161005 --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/ppc64el/generic.modules +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/ppc64el/generic.modules @@ -0,0 +1,4436 @@ +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_dw +8250_moxa +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pm800 +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +DAC960 +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +ac97_bus +acard-ahci +acecad +acenic +act200l-sir +act8865-regulator +act8945a +act8945a-regulator +act8945a_charger +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +actisys-sir +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5755 +ad5761 +ad5764 +ad5791 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7606_par +ad7606_spi +ad7746 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad799x +ad8366 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +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 +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adf7242 +adfs +adi +adis16060 +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16209 +adis16240 +adis16260 +adis16400 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7511 +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +af-rxrpc +af9013 +af9033 +af_alg +af_key +af_packet_diag +afe4403 +afe4404 +affs +ah4 +ah6 +ahci +ahci_ceva +ahci_platform +ahci_qoriq +aic79xx +aic7xxx +aic94xx +aim_cdev +aim_network +aim_sound +aim_v4l2 +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airspy +ak8975 +al3320a +algif_aead +algif_hash +algif_rng +algif_skcipher +ali-ircc +alim7101_wdt +altera-ci +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am2315 +am53c974 +amc6821 +amd +amd5536udc +amd8111e +amdgpu +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 +anatop-regulator +ansi_cprng +anubis +aoe +apbps2 +apds9300 +apds9802als +apds990x +apds9960 +appledisplay +appletalk +appletouch +applicom +aquantia +ar1021_i2c +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arcpgu +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arp_tables +arpt_mangle +arptable_filter +as102_fe +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +asc7621 +ascot2e +asix +ast +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atlas-ph-sensor +atm +atmel +atmel-flexcom +atmel-hlcdc +atmel_captouch +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +aufs +auo-pixcir-ts +auo_k1900fb +auo_k1901fb +auo_k190x +auth_rpcgss +authenc +authencesn +autofs4 +avmfritz +ax25 +ax88179_178a +axp20x +axp20x-i2c +axp20x-pek +axp20x-regulator +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b1 +b1dma +b1pci +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-phy-lib +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7xxx +bcm87xx +bcma +bcma-hcd +bcmsysport +bd6107 +bdc +bdc_pci +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1750 +bh1770glc +bh1780 +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bma220_spi +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmc150_magn_i2c +bmc150_magn_spi +bmg160_core +bmg160_i2c +bmg160_spi +bmi160_core +bmi160_i2c +bmi160_spi +bmp085 +bmp085-i2c +bmp085-spi +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bonding +bpa10x +bpck +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +bq27xxx_battery_i2c +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +broadsheetfb +bsd_comp +bsr +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btqca +btrfs +btrtl +btsdio +bttv +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +cap11xx +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc2520 +cc770 +cc770_isa +cc770_platform +cciss +ccm +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +cec +cec-edid +ceph +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20_generic +chacha20poly1305 +chaoskey +chipone_icn8318 +chipreg +chnl_net +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +clip +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 +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmm +cmtp +cnic +cobalt +cobra +coda +colibri-vf50-ts +com20020 +com20020-pci +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_isadma +comedi_parport +comedi_pci +comedi_test +comedi_usb +comm +configfs +contec_pci_dio +cordic +core +cp210x +cpc925_edac +cpia2 +cpsw_ale +cpu-notifier-error-inject +cpufreq_schedutil +cramfs +crc-itu-t +crc32_generic +crc32c-vpmsum +crc7 +crc8 +cryptd +crypto_user +cryptoloop +cs3308 +cs5345 +cs53l32a +csiostor +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +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 +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cxgbit +cxl +cxlflash +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da9030_battery +da9034-ts +da903x +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-regulator +da9063_onkey +da9063_wdt +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 +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +ddbridge +de2104x +de4x5 +decnet +deflate +defxx +denali +denali_pci +des_generic +devlink +dgnc +dh_generic +dht11 +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +diva_idi +diva_mnt +divacapi +divadidd +divas +dl2k +dlci +dlm +dln2 +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +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-verity +dm-zero +dm1105 +dm9601 +dmfe +dmm32at +dmx3191d +dn_rtmsg +dnet +docg3 +docg4 +dp83848 +dp83867 +drbd +drm +drm_kms_helper +drop_monitor +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1803 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +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-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +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_usb_v2 +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc2_pci +dwc3 +dwc3-pci +dwc_eth_qos +dwmac-generic +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +earth-pt1 +earth-pt3 +eata +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 +ecdh_generic +echainiv +echo +edac_core +edt-ft5x06 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efs +egalax_ts +egalax_ts_serial +ehci-platform +ehset +elan_i2c +elo +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +emac_arc +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_usb +emu10k1-gp +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +eni +enic +epat +epia +epic100 +eql +esas2r +esd_usb2 +esi-sir +esp4 +esp6 +esp_scsi +et1011c +et131x +ethoc +evbug +exofs +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-gpio +extcon-max14577 +extcon-max3355 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +ezusb +f2fs +f75375s +f81232 +fakelb +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_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 +fbtft_device +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdp +fdp_i2c +fealnx +ff-memless +fid +firedtv +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fl512 +fld +flexcan +flexfb +floppy +fm10k +fm801-gp +fm_drv +fmc +fmc-chardev +fmc-fakedev +fmc-trivial +fmc-write-eeprom +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fou6 +fpga-mgr +freevxfs +friq +frpw +fsa9480 +fscache +fsl-edma +fsl_elbc_nand +fsl_lpuart +ft6236 +ftdi-elan +ftdi_sio +ftl +ftsteutates +fujitsu_ts +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 +gcm +gdmtty +gdmulte +gdth +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gennvm +genwqe_card +gf2k +gfs2 +ghash-generic +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-addr-flash +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-altera +gpio-amd8111 +gpio-arizona +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-fan +gpio-generic +gpio-grgpio +gpio-ir-recv +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-max77620 +gpio-mc33880 +gpio-mcp23s08 +gpio-menz127 +gpio-ml-ioh +gpio-pca953x +gpio-pcf857x +gpio-pisosr +gpio-rdc321x +gpio-regulator +gpio-syscon +gpio-tpic2810 +gpio-tps65086 +gpio-tps65218 +gpio-tps65912 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-viperboard +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio_backlight +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_tilt_polled +gpio_wdt +gr_udc +grace +grcan +gre +grip +grip_mp +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 +gtco +gtp +guillemot +gunze +hackrf +hamachi +hampshire +hangcheck-timer +hanwang +hci +hci_uart +hci_vhci +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdm_dim2 +hdm_i2c +hdm_usb +hdma +hdma_mgmt +hdpvr +he +helene +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfc_usb +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hi6421-pmic-core +hi6421-regulator +hi8435 +hid +hid-a4tech +hid-alps +hid-apple +hid-appleir +hid-asus +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-cherry +hid-chicony +hid-cmedia +hid-corsair +hid-cp2112 +hid-cypress +hid-dr +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-icade +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-led +hid-lenovo +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-primax +hid-prodikeys +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-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steelseries +hid-sunplus +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hidp +hih6130 +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hisi504_nand +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horus3a +hostap +hostap_pci +hostap_plx +hp03 +hp100 +hp206c +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +htc-pasic3 +htu21 +huawei_cdc_ncm +hvcs +hvcserver +hwa-hc +hwa-rc +hwmon-vid +hwpoison-inject +hx8357 +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-cbus-gpio +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-diolan-u2c +i2c-dln2 +i2c-gpio +i2c-hid +i2c-i801 +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-mpc +i2c-mux +i2c-mux-gpio +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-reg +i2c-nforce2 +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-piix4 +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-xiic +i40e +i40evf +i40iw +i5k_amb +i6300esb +i740fb +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_qib +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ibmaem +ibmpex +ibmpowernv +ibmvfc +ibmvnic +ibmvscsi +ibmvscsis +icom +icp_multi +icplus +ics932s401 +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_gen2 +idt_gen3 +idtcps +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ifi_canfd +iforce +igb +igbvf +igorplugusb +iguanair +ii_pci20kc +iio-trig-hrtimer +iio-trig-interrupt +iio-trig-loop +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili922x +ili9320 +img-i2s-in +img-i2s-out +img-parallel-out +img-spdif-in +img-spdif-out +imm +imon +ims-pcu +imx074 +imx6ul_tsc +imx_thermal +ina209 +ina2xx +ina2xx-adc +ina3221 +industrialio +industrialio-buffer-cb +industrialio-configfs +industrialio-sw-device +industrialio-sw-trigger +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +int51x1 +intel-xway +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +interval_tree_test +inv-mpu6050 +inv-mpu6050-i2c +inv-mpu6050-spi +io_edgeport +io_ti +ioc4 +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +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_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_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 +ipack +ipaq +ipcomp +ipcomp6 +ipddp +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_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipw +ipw2100 +ipw2200 +ipx +ir-hix5hd2 +ir-jvc-decoder +ir-kbd-i2c +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irtty-sir +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl9305 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it913x +itd1000 +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_cm +iw_cxgb3 +iw_cxgb4 +iw_nes +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 +khazad +kingsun-sir +kl5kusb105 +kmx61 +ko2iblnd +kobil_sct +ks0108 +ks7010 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksocklnd +ksz884x +ktti +kvaser_pci +kvaser_usb +kvm +kvm-hv +kvm-pr +kxcjk-1013 +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan78xx +lanai +lapb +lapbether +latch-addr-flash +lattice-ecp3-config +lcd +ld9040 +ldusb +lec +led-class-flash +leds-88pm860x +leds-adp5520 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-is31fl32xx +leds-ktd2692 +leds-lm3530 +leds-lm3533 +leds-lm355x +leds-lm3642 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-pca9532 +leds-pca955x +leds-pca963x +leds-powernv +leds-pwm +leds-regulator +leds-tca6507 +leds-tlc591xx +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-oneshot +ledtrig-timer +ledtrig-transient +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libceph +libcfs +libcomposite +libcrc32c +libcxgb +libcxgbi +libertas +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +lightning +lineage-pem +linear +liquidio +lirc_bt829 +lirc_dev +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_zilog +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +litelink-sir +lkkbd +ll_temac +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3630a_bl +lm3639_bl +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lms283gf05 +lms501kf03 +lmv +lnbh25 +lnbp21 +lnbp22 +lnet +lnet_selftest +lockd +locktorture +lov +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc2990 +ltc3589 +ltc3815 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lustre +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m25p80 +m2m-deinterlace +m52790 +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +ma600-sir +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 +mac_hid +macb +macsec +macvlan +macvtap +mag3110 +magellan +mailbox-altera +mailbox-test +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max1111 +max11801_ts +max1363 +max14577-regulator +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max197 +max20751 +max2165 +max30100 +max3100 +max31722 +max31790 +max3421-hcd +max34440 +max44000 +max517 +max5487 +max5821 +max63xx_wdt +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77620-regulator +max77620_wdt +max77686-regulator +max77693-haptic +max77693-regulator +max77693_charger +max77802-regulator +max8649 +max8660 +max8688 +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 +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc44s803 +mcb +mcb-pci +mceusb +mcp2120-sir +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp4131 +mcp4531 +mcp4725 +mcp4922 +mcryptd +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +md5-ppc +mdc +mdc800 +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-cavium +mdio-gpio +mdio-hisi-femac +mdio-mux +mdio-mux-gpio +mdio-mux-mmioreg +mdio-octeon +mdio-thunder +me4000 +me_daq +media +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 +metro-usb +metronomefb +mf6x4 +mga +mgc +michael_mic +micrel +microchip +microread +microread_i2c +microtek +mii +minix +mip6 +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlxsw_core +mlxsw_pci +mma7455_core +mma7455_i2c +mma7455_spi +mma7660 +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_block +mmc_spi +mms114 +mn88472 +mn88473 +mos7720 +mos7840 +mostcore +moxa +mpc624 +mpl115 +mpl115_i2c +mpl115_spi +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msdos +msi001 +msi2500 +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt29f_spinand +mt312 +mt352 +mt6311-regulator +mt6323-regulator +mt6397-core +mt6397-regulator +mt7601u +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-quadspi +mtk-sd +mtk_ecc +mtk_nand +mtouch +multipath +multiq3 +musb_hdrc +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxc6255 +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxser +mxuport +myri10ge +n_gsm +n_hdlc +n_r3964 +n_tracerouter +n_tracesink +nand +nand_bch +nand_ecc +nand_ids +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +ncpfs +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +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_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfcwilink +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfp_netvf +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_exthdr +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +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_tio +ni_tiocmd +ni_usb6501 +nicpf +nicstar +nicvf +nilfs2 +niu +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-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 +nosy +notifier-error-inject +nouveau +nozomi +nps_enet +ns558 +ns83820 +nsc-ircc +ntb +ntb_netdev +ntb_perf +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nvidiafb +nvme +nvme-core +nvme-fabrics +nvme-loop +nvme-rdma +nvmem_core +nvmet +nvmet-rdma +nx-compress +nx-compress-powernv +nx-compress-pseries +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxt200x +nxt6000 +obdclass +obdecho +objlayoutdriver +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_mmc_spi +of_xilinx_wdt +ofpart +ohci-platform +old_belkin-sir +omap4-keypad +omfs +omninet +on20 +on26 +onenand +opal-prd +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orinoco +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osc +osd +osdblk +osst +oti6858 +ov2640 +ov5642 +ov6650 +ov7640 +ov7670 +ov772x +ov9640 +ov9740 +overlay +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +p8023 +pa12203001 +palmas-pwrbutton +palmas-regulator +palmas_gpadc +pandora_bl +panel +panel-lg-lg4573 +panel-panasonic-vvx10f034n00 +panel-samsung-ld9040 +panel-samsung-s6e8aa0 +panel-sharp-lq101r1sx01 +panel-sharp-ls043t1le01 +panel-simple +parade-ps8622 +paride +parkbd +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 +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-stub +pci200syn +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmda12 +pcmmio +pcmuio +pcnet32 +pcrypt +pcspkr +pcwd_pci +pcwd_usb +pd +pda_power +pdc_adma +peak_pci +peak_usb +pegasus +pegasus_notetaker +penmount +percpu_test +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-exynos-usb2 +phy-generic +phy-gpio-vbus-usb +phy-isp1301 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-tahvo +phy-tusb1210 +physmap +physmap_of +physmap_of_versatile +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +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 +prism2_usb +ps2mult +pseries-rng +pseries_energy +psmouse +psnap +pt +ptlrpc +pulse8-cec +pulsedlight-lidar-lite-v2 +pv88060-regulator +pv88080-regulator +pv88090-regulator +pvrusb2 +pwc +pwm-beeper +pwm-fan +pwm-fsl-ftm +pwm-lp3943 +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm_bl +pwrseq_emmc +pwrseq_simple +pxa27x_udc +qcaspi +qcaux +qcom-spmi-iadc +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom_spmi-regulator +qcserial +qed +qede +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qsemi +qt1010 +qt1070 +qt2160 +quatech2 +quota_tree +quota_v1 +quota_v2 +qxl +r128 +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723au +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-bcm2048 +radio-i2c-si470x +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si476x +radio-tea5764 +radio-usb-si470x +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +raydium_i2c_ts +rbd +rbtree_test +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +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-behold +rc-behold-columbus +rc-budget-ci-old +rc-cec +rc-cinergy +rc-cinergy-1400 +rc-core +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-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-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +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-pctv-sedna +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-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-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rc5t583-regulator +rcuperf +rdc321x-southbridge +rdma_cm +rdma_rxe +rdma_ucm +rdmavt +rds +rds_rdma +rds_tcp +realtek +reboot-mode +redboot +redrat3 +reed_solomon +regmap-spmi +regulator-haptic +reiserfs +remoteproc +reset-ti-syscon +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +rio-scan +rio500 +rio_cm +rio_mport_cdev +rionet +rivafb +rj54n1cb0c +rk808 +rk808-regulator +rmd128 +rmd160 +rmd256 +rmd320 +rmi_core +rmi_i2c +rmi_spi +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rocket +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpadlpar_io +rpaphp +rpcrdma +rpcsec_gss_krb5 +rpr0521 +rrpc +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtas_flash +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab3100 +rtc-abx80x +rtc-as3722 +rtc-bq32k +rtc-bq4802 +rtc-cmos +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-hid-sensor-time +rtc-hym8563 +rtc-isl12022 +rtc-isl12057 +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-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf8563 +rtc-pcf8583 +rtc-r9701 +rtc-rc5t583 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx6110 +rtc-rx8010 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-snvs +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 +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rx51_battery +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5h1409 +s5h1411 +s5h1420 +s5m8767 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7706h +safe_serial +salsa20_generic +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 +savage +savagefb +sbp_target +sbs-battery +sc16is7xx +sc92031 +sca3000 +scanlog +sch_atm +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +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_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 +sctp_probe +sdhci +sdhci-of-at91 +sdhci-of-esdhc +sdhci-of-hlwd +sdhci-pci +sdhci-pltfm +sdhci_f_sdh30 +sdio_uart +seed +sensorhub +ser_gigaset +serial2002 +serio_raw +sermouse +serpent_generic +serport +ses +sfc +sh_veu +sha1-powerpc +sha3_generic +shark2 +sht15 +sht21 +sht3x +shtc1 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sii902x +sil164 +silead +sir-dev +sis +sis190 +sis5595 +sis900 +sis_i2c +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skd +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +slcan +slip +slram +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smb347-charger +smipcie +smm665 +smsc +smsc-ircc2 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-als4000 +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-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-firewire-digi00x +snd-firewire-lib +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-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-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-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-ac97 +snd-soc-acp-pcm +snd-soc-adau1701 +snd-soc-adau7002 +snd-soc-ak4104 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-alc5623 +snd-soc-bt-sco +snd-soc-core +snd-soc-cs35l32 +snd-soc-cs35l33 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +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-cs4349 +snd-soc-cs53l30 +snd-soc-es8328 +snd-soc-fsl-asrc +snd-soc-fsl-esai +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-imx-audmux +snd-soc-inno-rk3036 +snd-soc-max98504 +snd-soc-max9860 +snd-soc-pcm1681 +snd-soc-pcm179x-codec +snd-soc-pcm179x-i2c +snd-soc-pcm179x-spi +snd-soc-pcm3168a +snd-soc-pcm3168a-i2c +snd-soc-pcm3168a-spi +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rl6231 +snd-soc-rt5616 +snd-soc-rt5631 +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-simple-card +snd-soc-simple-card-utils +snd-soc-spdif-rx +snd-soc-spdif-tx +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-tas5086 +snd-soc-tas571x +snd-soc-tas5720 +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-wm8510 +snd-soc-wm8523 +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-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8960 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-xtfpga-i2s +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-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-ymfpci +snic +soc_button_array +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +solo6x10 +solos-pci +sony-btf-mpx +soundcore +sp2 +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +speedfax +speedtch +spi-altera +spi-axi-spi-engine +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-loopback-test +spi-nor +spi-oc-tiny +spi-pxa2xx-platform +spi-sc18is602 +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spl +splat +spmi +sr9700 +sr9800 +ssb +ssb-hcd +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st95hf +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_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 +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +ste_modem_rproc +stex +stinger +stir4200 +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stm_heartbeat +stmmac +stmmac-platform +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sun4i-codec +sun4i-i2s +sun4i-spdif +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +surface3_spi +svgalib +sx8 +sx8654 +sx9500 +sym53c8xx +symbolserial +synaptics_i2c +synaptics_usb +synclink +synclink_gt +synclinkmp +syscon-reboot-mode +syscopyarea +sysfillrect +sysimgblt +sysv +t1pci +t5403 +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 +tc358767 +tc3589x-keypad +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_nv +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda998x +tdfx +tdfxfb +tdo24m +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +tekram-sir +teranetics +test-kstrtox +test-string_helpers +test_bpf +test_firmware +test_hash +test_hexdump +test_module +test_power +test_static_key_base +test_static_keys +test_udelay +test_user_copy +test_uuid +tg3 +tgr192 +thermal-generic-adc +thmc50 +thunder_bgx +thunderbolt +ti-adc081c +ti-adc0832 +ti-adc128s052 +ti-ads1015 +ti-ads8688 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_dac7512 +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmp006 +tmp102 +tmp103 +tmp401 +tmp421 +toim3232-sir +torture +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm-rng +tpm_atmel +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tpm_tis_core +tpm_tis_spi +tpm_vtpm_proxy +tps40422 +tps51632-regulator +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65086 +tps65086-regulator +tps65090-charger +tps65090-regulator +tps65217 +tps65217-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps80031-regulator +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2x7x_core +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw2804 +tw68 +tw686x +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish_common +twofish_generic +typhoon +u132-hcd +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +uda1342 +udc-core +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd +ufshcd-dwc +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_fsl_elbc_gpcm +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uli526x +ulpi +umc +umem +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 +us5182d +usb-serial-simple +usb-storage +usb3503 +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_uac2 +usb_f_uvc +usb_gigaset +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 +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-dv-timings +v4l2-flash-led-class +v4l2-mem2mem +v4l2-tpg +vcan +vcnl4000 +veml6070 +ves1820 +ves1x93 +veth +vf610_adc +vf610_dac +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +vhost_vsock +via +via-ircc +via-rhine +via-sdmmc +via-velocity +via686a +videobuf-core +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videobuf2-core +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videodev +vim2m +viperboard +viperboard_adc +virt-dma +virtio-gpu +virtio-rng +virtio_blk +virtio_input +virtio_net +virtio_scsi +virtual +visor +vitesse +vivid +vlsi_ir +vmac +vme_pio2 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vmx-crypto +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vrf +vringh +vsock +vsxxxaa +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxge +vxlan +vz89x +w1-gpio +w1_bq27000 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1_ds2781 +w1_ds28e04 +w1_smem +w1_therm +w5100 +w5100-spi +w5300 +w6692 +w83781d +w83791d +w83792d +w83793 +w83795 +w83977af_ir +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +wanxl +warrior +wbsd +wcn36xx +wd719x +wdrtas +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wilc1000 +wilc1000-sdio +wilc1000-spi +wimax +winbond-840 +windfarm_core +wire +wishbone-serial +wl1273-core +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 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x_tables +xc4000 +xc5000 +xcbc +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xgifb +xhci-plat-hcd +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx_ps2 +xilinx_uartps +xillybus_core +xillybus_of +xillybus_pcie +xor +xpad +xr_usb_serial_common +xsens_mt +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +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 +xz_dec_test +yam +yealink +yellowfin +yurex +z3fold +zaurus +zavl +zcommon +zd1201 +zd1211rw +zforce_ts +zfs +zhenhua +ziirave_wdt +zl10036 +zl10039 +zl10353 +zl6100 +znvpair +zpios +zr364xx +zram +zunicode +zynq-fpga --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/s390x/generic +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/s390x/generic @@ -0,0 +1,9971 @@ +EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe +EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL crypto/mcryptd 0x71dffe5c mcryptd_arm_flusher +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/i2c/algos/i2c-algo-bit 0x8b9b7bbb i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xa4c5257d i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xf41b26ac i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/i2c-core 0x0d1b1de5 i2c_register_driver +EXPORT_SYMBOL drivers/i2c/i2c-core 0x14fed667 __i2c_transfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x243cd7c0 i2c_smbus_write_byte +EXPORT_SYMBOL drivers/i2c/i2c-core 0x34bc771a i2c_smbus_read_word_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x382ca3f9 i2c_verify_client +EXPORT_SYMBOL drivers/i2c/i2c-core 0x47804a98 i2c_del_driver +EXPORT_SYMBOL drivers/i2c/i2c-core 0x516bf37a i2c_smbus_read_byte +EXPORT_SYMBOL drivers/i2c/i2c-core 0x579c602e i2c_smbus_write_byte_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x5b467467 i2c_smbus_xfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x5df00701 i2c_get_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x72371092 i2c_put_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x8232310f i2c_verify_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x84989531 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x8774c7ce i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL drivers/i2c/i2c-core 0x8e5f0bf3 i2c_master_recv +EXPORT_SYMBOL drivers/i2c/i2c-core 0x909720ed i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xa35fd5f1 i2c_smbus_read_byte_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xafe4f6af i2c_smbus_write_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xb6e8e665 i2c_smbus_read_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xb88b2c90 i2c_transfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0xbdd8e6c6 i2c_add_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0xc827cf61 i2c_master_send +EXPORT_SYMBOL drivers/i2c/i2c-core 0xd96ed30a i2c_smbus_write_word_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xe21a7505 i2c_clients_command +EXPORT_SYMBOL drivers/i2c/i2c-core 0xefede004 i2c_release_client +EXPORT_SYMBOL drivers/i2c/i2c-core 0xf96ec45e i2c_del_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0xfa1bc36f i2c_use_client +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x025c90c6 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x15887695 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x289bc4b9 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2a409e8f ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3dad623c ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x602d1bbc ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x667faaf0 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6d0b8197 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x74490cf9 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x95131bd8 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9ea55996 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa8c31d77 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd0f6b201 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe6320615 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xef2ca5df cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xef999cb7 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf29e549f ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfc2f36bd ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0326878c ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x037dfb36 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04062c31 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x049ace30 rdma_addr_find_smac_by_sgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06830b9a ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08fae706 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09e7fec0 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a1e62fb ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0adf2529 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d3a270e ib_destroy_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d6a2af2 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12b385ce ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13e746c5 ib_create_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14c74918 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1569c7d8 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x176efa61 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19ca5007 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ae3e6c1 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b009d07 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b1a0f9a ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bc0c194 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c0513a2 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c8818e7 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d562ea2 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1df09bcf ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e063fc2 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1eeaeabc ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fe1e76f ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22a26038 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x260ece5e ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27afd6fc ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b2a0e45 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x300533f8 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3119348a rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x322b48f8 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3522b9a2 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37ebea00 rdma_resolve_ip_route +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a1a467e ib_modify_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3df52b60 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e7f2a43 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f517f22 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4380ac71 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x486574b9 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49091285 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49ba77e3 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4aabfc05 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d9601bf ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4dfb7505 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e390b5c ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f75ca65 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55c16909 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x576fdbac ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59fe8d90 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b7a883a ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c094b77 ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ce4998b ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5cfd952f ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d291b7b ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5eef190d ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fc29838 ib_destroy_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64b0ff7f rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65022f32 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x665c85a4 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67cc81d9 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x681267b6 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68dc86db ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69c8e0c9 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69e736f7 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c1a2888 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6dd8e091 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7401cb13 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7698b5e7 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7783d6fb ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x792ec227 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80e7973e ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x867727d6 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86b2b83f ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86df1fa0 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8aab01ec ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c32a7d4 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8dbb8dd6 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9373ffe3 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95ca6d0c ib_sa_classport_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96739c79 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x986bd790 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98731a7d ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b9cf9a rdma_addr_find_l2_eth_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99dade9e ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a5e58a1 ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d960673 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ef04f43 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f54273c ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f5cc446 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fab695d ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa044fc18 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa53036c9 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5413cfa rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa59ee440 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6830284 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa848ffe6 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa97882f5 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad6587d9 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadb5892d ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae3e9d3f ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb088d5e9 ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb58ac0ca ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb60416d9 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb654876c ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8f408ec ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9d9f34c ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbac0f6e ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdfa9c6d ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc62fb5a2 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc64dbb00 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6a0f769 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6d1cd6b ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc922a725 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb2ac34a ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce3a770d ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce88bcbc ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcedc4fbe ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd206f3c9 rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd42bf022 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4a67cfa ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6b85fa0 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda91bf5f ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdac92ec7 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf81984b rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe60e26c4 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6a9ab05 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea6fde9a roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebf180c7 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec7b1ae6 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef2b272f ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1467989 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1d4fb57 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf314773c ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3437754 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4e44af4 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5d75b31 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6385b0d ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6a67185 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7e9b3f8 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8670c6e ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf96fc9de ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa012ff0 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcc5b6a3 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x37adaa9b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5397d778 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdccb8ab5 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe8177c83 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0b1e569e iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x59c991a0 iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6dc65ef1 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7bdb5a59 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x812a6380 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x818c6a87 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x88a0e0a2 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8dc112c4 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91a914d6 iwpm_init +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9e1c9362 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa63fafe8 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xaa3c4d4c iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xafe0ab2b iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcd6ce65f iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe9119a53 iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf57c9c8b iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0b00fd52 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x224cc946 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x232ff808 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2379485c rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x35aea625 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5078be47 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7ddf0f51 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8dcfead3 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x95c96cdd rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x96bb537a rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9795fdde rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x99573cf8 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa2472b4d rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa6e5b233 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xab29bb79 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb57ca413 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbbafd6bc rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc28e231d rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc4d6cded rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd2740201 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe6975788 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x061cf4cf rvt_rkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e385842 ib_rvt_state_ops +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x133058de rvt_init_port +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x16149505 rvt_register_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x20fbe90f rvt_mcast_find +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x828a2d7b rvt_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8732309e rvt_invalidate_rkey +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8a7dbda6 rvt_alloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x97832dcb rvt_check_ah +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x9a8218b1 rvt_unregister_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xbcec2c3e rvt_error_qp +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc52fadc0 rvt_dealloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf052e594 rvt_cq_enter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf8c2deb8 rvt_lkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x023711fc rxe_rcv +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x48f93f58 rxe_remove_all +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0x6b184fb1 rxe_add +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0xd54a851d rxe_set_mtu +EXPORT_SYMBOL drivers/infiniband/sw/rxe/rdma_rxe 0xe1270251 rxe_remove +EXPORT_SYMBOL drivers/md/bcache/bcache 0x0187bb6a __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0x0224fc32 bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0x18290c90 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x313ff088 bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x3b42669b bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0x594d1f90 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6dc1194a bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x79711460 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7d2e3553 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7e232679 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa1afdb82 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0xb2fd5778 closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0xbbf73b16 bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0xcb47df76 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd93a541f closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0xdf6f8461 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xf52a58e8 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0xf8446678 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0xf920f854 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/dm-bufio 0x268682d2 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-log 0x0fe59eff dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x6a93cf71 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xd032b15b dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xd750d995 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x42864970 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x5f9fa3c5 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x718a59e9 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb7e0acef dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xf6dfb593 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xfa901dac dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/raid456 0xfeb47920 raid5_set_cache_size +EXPORT_SYMBOL drivers/mfd/axp20x 0xb14fcb5d axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0xcaca7332 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xd0953668 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/mfd-core 0x1a5caa71 mfd_add_devices +EXPORT_SYMBOL drivers/mfd/mfd-core 0x1a7834cf mfd_cell_enable +EXPORT_SYMBOL drivers/mfd/mfd-core 0x5a75a76c mfd_remove_devices +EXPORT_SYMBOL drivers/mfd/mfd-core 0x6385874b mfd_cell_disable +EXPORT_SYMBOL drivers/mfd/mfd-core 0xe72452a6 devm_mfd_add_devices +EXPORT_SYMBOL drivers/mfd/mfd-core 0xfdf33486 mfd_clone_cell +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01ffddcc get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18861467 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c69ea60 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b85a5dd mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e9a2327 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30fa0738 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x343196b6 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x362d047b set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e34cc74 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x424d12cf mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4328798b mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4edf8d88 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x587074d9 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5aaa319a mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b30768d mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b8d795a mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d228054 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e3991aa mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67c902f2 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b28bdde mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70d9a30b mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b38c6ee mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7db62536 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80ee2803 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9243a41d mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x927bf8cc mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa364fe88 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa381bf1e mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8ee0d57 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaaafedff mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabd46f69 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4bf5431 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc2b8c0e mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd42e8c39 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde5d7db3 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe439bfe7 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe459dd32 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7ccdf5c mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9c452cb mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6f3be16 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x015b7152 mlx5_core_destroy_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0182b899 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07f69f30 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b1f5059 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cc9bde8 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cfa01cb mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e43d9a4 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x104f961b mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15f6f978 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17fd2a10 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b49a4f2 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f2bc741 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24262a70 mlx5_add_flow_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26ce8e00 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a0bc9ec mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34f173bf mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37808de7 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ecdc0cf mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f2058ba mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ffecbc5 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41578bd8 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50faf732 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5135e58e mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x514e2073 mlx5_core_destroy_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x534a67bb mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5423ec30 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x577c5b25 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x582ef8e4 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x649f2fad mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71c028db mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x771173b9 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81390af2 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x871147ad mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x880f730f mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8cad2b6f mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93443ecc mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa11bae19 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2623c8b mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4ac89b5 mlx5_core_create_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaad877db mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad1060e7 mlx5_del_flow_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadc93b0c mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb280a79d mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbea315d0 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4d433c0 mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc56135a3 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6dbbaa3 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccdeb927 mlx5_core_create_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf404d47 mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0764134 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3f0d28a mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6368adc mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6ad831c mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe80d9549 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea3f6bfc mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec193565 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefbd81e5 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2594956 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb6afaaa mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbbdc71c mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffdd4943 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0943d80d mlxsw_reg_trans_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ab0c687 mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2360a424 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x28314134 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3247e4bb mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x39a96739 mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3d71f181 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59955b04 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6d8b4a33 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x72a05371 mlxsw_core_resources_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7627cbe1 mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x80822927 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5ff38e0 mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc501b960 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcaab5944 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdb1ec7b8 mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdde7e8c0 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdf2f725c mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe74e5cf7 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xec51e246 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf352f36b mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/phy/libphy 0x004a864a mdiobus_write_nested +EXPORT_SYMBOL drivers/net/phy/libphy 0x01c60487 __mdiobus_register +EXPORT_SYMBOL drivers/net/phy/libphy 0x03b2f256 genphy_suspend +EXPORT_SYMBOL drivers/net/phy/libphy 0x04660404 phy_device_create +EXPORT_SYMBOL drivers/net/phy/libphy 0x0b19826c mdiobus_read +EXPORT_SYMBOL drivers/net/phy/libphy 0x108970bb phy_start +EXPORT_SYMBOL drivers/net/phy/libphy 0x130d5420 phy_device_free +EXPORT_SYMBOL drivers/net/phy/libphy 0x17f36eb3 phy_connect_direct +EXPORT_SYMBOL drivers/net/phy/libphy 0x17f3d731 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/phy/libphy 0x18328db7 phy_device_remove +EXPORT_SYMBOL drivers/net/phy/libphy 0x1a0561ab mdio_driver_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0x1d3492cc phy_detach +EXPORT_SYMBOL drivers/net/phy/libphy 0x1de84c14 get_phy_device +EXPORT_SYMBOL drivers/net/phy/libphy 0x1f75d082 mdiobus_unregister_device +EXPORT_SYMBOL drivers/net/phy/libphy 0x2236a7ea phy_ethtool_gset +EXPORT_SYMBOL drivers/net/phy/libphy 0x26e036ba phy_ethtool_set_wol +EXPORT_SYMBOL drivers/net/phy/libphy 0x28108eaf phy_ethtool_ksettings_set +EXPORT_SYMBOL drivers/net/phy/libphy 0x284fd2ef phy_ethtool_set_eee +EXPORT_SYMBOL drivers/net/phy/libphy 0x29d06582 phy_mii_ioctl +EXPORT_SYMBOL drivers/net/phy/libphy 0x29fbb5c4 genphy_restart_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0x301cd677 mdio_bus_type +EXPORT_SYMBOL drivers/net/phy/libphy 0x32c606ec phy_register_fixup_for_uid +EXPORT_SYMBOL drivers/net/phy/libphy 0x37b35b47 mdiobus_get_phy +EXPORT_SYMBOL drivers/net/phy/libphy 0x3996e516 genphy_aneg_done +EXPORT_SYMBOL drivers/net/phy/libphy 0x3a3e21f4 phy_suspend +EXPORT_SYMBOL drivers/net/phy/libphy 0x3c508f73 mdiobus_write +EXPORT_SYMBOL drivers/net/phy/libphy 0x3ea2dc41 phy_mac_interrupt +EXPORT_SYMBOL drivers/net/phy/libphy 0x44a203ca phy_start_interrupts +EXPORT_SYMBOL drivers/net/phy/libphy 0x49a38158 mdio_device_remove +EXPORT_SYMBOL drivers/net/phy/libphy 0x4b98fc46 mdiobus_register_device +EXPORT_SYMBOL drivers/net/phy/libphy 0x4d08747f phy_attach +EXPORT_SYMBOL drivers/net/phy/libphy 0x4d77ab2f mdiobus_free +EXPORT_SYMBOL drivers/net/phy/libphy 0x55bde859 phy_init_eee +EXPORT_SYMBOL drivers/net/phy/libphy 0x56391fa7 phy_drivers_register +EXPORT_SYMBOL drivers/net/phy/libphy 0x578cd84d phy_start_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0x57eab3f5 mdiobus_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0x6062abc1 phy_attach_direct +EXPORT_SYMBOL drivers/net/phy/libphy 0x609e06b1 phy_register_fixup_for_id +EXPORT_SYMBOL drivers/net/phy/libphy 0x6449657a phy_drivers_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0x6e6bc045 phy_stop_interrupts +EXPORT_SYMBOL drivers/net/phy/libphy 0x75beb723 genphy_resume +EXPORT_SYMBOL drivers/net/phy/libphy 0x784797c0 mdio_device_register +EXPORT_SYMBOL drivers/net/phy/libphy 0x7d0bf6e2 phy_attached_print +EXPORT_SYMBOL drivers/net/phy/libphy 0x7fb8ebfd phy_set_max_speed +EXPORT_SYMBOL drivers/net/phy/libphy 0x8074933c phy_find_first +EXPORT_SYMBOL drivers/net/phy/libphy 0x846817df phy_driver_register +EXPORT_SYMBOL drivers/net/phy/libphy 0x84b69d40 mdiobus_read_nested +EXPORT_SYMBOL drivers/net/phy/libphy 0x873596ab phy_ethtool_ksettings_get +EXPORT_SYMBOL drivers/net/phy/libphy 0x97ff2d8d phy_disconnect +EXPORT_SYMBOL drivers/net/phy/libphy 0x9a9c9c92 phy_driver_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0xa420a17f phy_ethtool_get_eee +EXPORT_SYMBOL drivers/net/phy/libphy 0xa6ca51ef genphy_config_init +EXPORT_SYMBOL drivers/net/phy/libphy 0xa7f837e4 mdio_device_create +EXPORT_SYMBOL drivers/net/phy/libphy 0xa995d56f phy_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/phy/libphy 0xaf55d4cf phy_attached_info +EXPORT_SYMBOL drivers/net/phy/libphy 0xafe47436 mdiobus_scan +EXPORT_SYMBOL drivers/net/phy/libphy 0xb328d511 phy_print_status +EXPORT_SYMBOL drivers/net/phy/libphy 0xb96aef75 genphy_update_link +EXPORT_SYMBOL drivers/net/phy/libphy 0xbf6dd3a0 phy_read_mmd_indirect +EXPORT_SYMBOL drivers/net/phy/libphy 0xbfc69cab genphy_config_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0xc3151326 genphy_setup_forced +EXPORT_SYMBOL drivers/net/phy/libphy 0xc4b0e879 phy_ethtool_sset +EXPORT_SYMBOL drivers/net/phy/libphy 0xcaea2c27 phy_stop +EXPORT_SYMBOL drivers/net/phy/libphy 0xcef01466 phy_device_register +EXPORT_SYMBOL drivers/net/phy/libphy 0xcf379bee phy_connect +EXPORT_SYMBOL drivers/net/phy/libphy 0xd2bcb23b mdio_driver_register +EXPORT_SYMBOL drivers/net/phy/libphy 0xd514be2e genphy_soft_reset +EXPORT_SYMBOL drivers/net/phy/libphy 0xd9863433 phy_init_hw +EXPORT_SYMBOL drivers/net/phy/libphy 0xd9b858b2 mdiobus_is_registered_device +EXPORT_SYMBOL drivers/net/phy/libphy 0xdafdedb4 phy_write_mmd_indirect +EXPORT_SYMBOL drivers/net/phy/libphy 0xe7ef1a75 genphy_read_status +EXPORT_SYMBOL drivers/net/phy/libphy 0xee53d2a0 phy_get_eee_err +EXPORT_SYMBOL drivers/net/phy/libphy 0xf5c7d79f mdio_device_free +EXPORT_SYMBOL drivers/net/phy/libphy 0xf63c4e8d mdiobus_alloc_size +EXPORT_SYMBOL drivers/net/phy/libphy 0xf65ca68c phy_ethtool_get_wol +EXPORT_SYMBOL drivers/net/phy/libphy 0xfaded7c0 phy_resume +EXPORT_SYMBOL drivers/net/phy/libphy 0xfce359b2 phy_register_fixup +EXPORT_SYMBOL drivers/net/team/team 0x2f29a5d5 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x2fe659f8 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x4936ebc0 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x6bae682d team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x8472fa28 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x9ccb537f team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xd648e9c8 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xe3e785fb team_mode_unregister +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x0c9526c3 fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x95f2ee49 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xf1b3e0b9 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x7ad455fc microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xadca094e microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x18704dae nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x91597d4a nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xa97c9054 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x6ccb086f pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x758f34df pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xc2a0a8fc pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x1514d901 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x2baf7f60 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x42788f8b s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2c644841 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x35df5fad st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x39f1ce75 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x41531f6a st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4eef36d5 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x70d2325e ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x74d8b555 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x86b252b4 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa20b5073 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe28547f2 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x03579079 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x06618837 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1ddc4277 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x221795a2 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x25572b4c st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2939bbee st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3c2f4d22 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3c696a5c st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x59d73dcf st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5eae7706 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5f0da38e st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x64ccb935 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6768b630 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7064e379 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc77dca93 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcdcdb97b st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdc6a5e27 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeeb13548 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/pps/pps_core 0x04af3dbd pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0xa9887aa7 pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0xc8e2330d pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0xeeae35db pps_unregister_source +EXPORT_SYMBOL drivers/ptp/ptp 0x027af74f ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0x31689c00 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0x44261364 ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0x60ae6a9c ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0xad9c0e6b ptp_clock_event +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x033b641a dasd_block_set_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x03d8930b dasd_kick_device +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x11bceb06 dasd_kmalloc_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x1e9d32c2 dasd_add_request_head +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x2060eee3 dasd_device_set_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x22557a75 dasd_default_erp_postaction +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x28cf1a27 dasd_start_IO +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x2fa34de1 dasd_device_clear_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x32b878bb dasd_eer_write +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x37229968 dasd_sfree_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x3a644267 dasd_sleep_on_interruptible +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x42e69a43 dasd_set_target_state +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x46751d0d dasd_log_sense +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x471ddcf2 dasd_sleep_on +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x5b0c9f57 dasd_sleep_on_immediatly +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x6239f998 dasd_add_request_tail +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x6b20ea8f dasd_log_sense_dbf +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x8c81cc3b dasd_cancel_req +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x8da502e0 dasd_diag_discipline_pointer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x9cc55cd3 dasd_reload_device +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xa5f83786 dasd_default_erp_action +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xac3ee1cf dasd_alloc_erp_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb4dcb5de dasd_sleep_on_queue +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb94f9f9d dasd_schedule_device_bh +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xcab063a8 dasd_kfree_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xcdb0674c dasd_free_erp_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xcf4b8859 dasd_smalloc_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xd2c10f4b dasd_schedule_block_bh +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xd48898e7 dasd_int_handler +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xdddad0e5 dasd_debug_area +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xf15bb3e0 dasd_enable_device +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xf1830feb dasd_block_clear_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xfee40e77 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 0x068a61c2 tape_do_io +EXPORT_SYMBOL drivers/s390/char/tape 0x14a3378b tape_std_mtreset +EXPORT_SYMBOL drivers/s390/char/tape 0x1f4d50eb tape_std_display +EXPORT_SYMBOL drivers/s390/char/tape 0x2546c415 tape_state_verbose +EXPORT_SYMBOL drivers/s390/char/tape 0x254b4c40 tape_cancel_io +EXPORT_SYMBOL drivers/s390/char/tape 0x265f2dbf tape_std_mtbsf +EXPORT_SYMBOL drivers/s390/char/tape 0x2e55579c tape_free_request +EXPORT_SYMBOL drivers/s390/char/tape 0x2f29e46d tape_generic_pm_suspend +EXPORT_SYMBOL drivers/s390/char/tape 0x31bf7051 tape_alloc_request +EXPORT_SYMBOL drivers/s390/char/tape 0x3b836ede tape_state_set +EXPORT_SYMBOL drivers/s390/char/tape 0x3fc65513 tape_std_write_block +EXPORT_SYMBOL drivers/s390/char/tape 0x3fe2a3f5 tape_generic_offline +EXPORT_SYMBOL drivers/s390/char/tape 0x4147f3b8 tape_std_mtbsr +EXPORT_SYMBOL drivers/s390/char/tape 0x4a4ded25 tape_core_dbf +EXPORT_SYMBOL drivers/s390/char/tape 0x4e2bb279 tape_std_mtunload +EXPORT_SYMBOL drivers/s390/char/tape 0x5268e081 tape_std_mtload +EXPORT_SYMBOL drivers/s390/char/tape 0x558eb063 tape_std_mtbsfm +EXPORT_SYMBOL drivers/s390/char/tape 0x55e47a53 tape_do_io_interruptible +EXPORT_SYMBOL drivers/s390/char/tape 0x575c04c2 tape_std_mtfsfm +EXPORT_SYMBOL drivers/s390/char/tape 0x5ab6c782 tape_std_mtrew +EXPORT_SYMBOL drivers/s390/char/tape 0x5d88f1ef tape_std_read_block_id +EXPORT_SYMBOL drivers/s390/char/tape 0x5db2eebd tape_generic_online +EXPORT_SYMBOL drivers/s390/char/tape 0x66deb66c tape_op_verbose +EXPORT_SYMBOL drivers/s390/char/tape 0x718cbddb tape_std_mtsetblk +EXPORT_SYMBOL drivers/s390/char/tape 0x7b121c8c tape_generic_remove +EXPORT_SYMBOL drivers/s390/char/tape 0x86cc06ae tape_dump_sense_dbf +EXPORT_SYMBOL drivers/s390/char/tape 0x94363cd1 tape_std_mtoffl +EXPORT_SYMBOL drivers/s390/char/tape 0x9768670c tape_std_mterase +EXPORT_SYMBOL drivers/s390/char/tape 0x9978867c tape_std_mtfsf +EXPORT_SYMBOL drivers/s390/char/tape 0x9d1dde27 tape_get_device +EXPORT_SYMBOL drivers/s390/char/tape 0xa5f81fac tape_std_mtnop +EXPORT_SYMBOL drivers/s390/char/tape 0xaab0cb96 tape_std_assign +EXPORT_SYMBOL drivers/s390/char/tape 0xb57e43e9 tape_put_device +EXPORT_SYMBOL drivers/s390/char/tape 0xbb5abca5 tape_mtop +EXPORT_SYMBOL drivers/s390/char/tape 0xbcacbe79 tape_std_mtreten +EXPORT_SYMBOL drivers/s390/char/tape 0xc10dae21 tape_std_mteom +EXPORT_SYMBOL drivers/s390/char/tape 0xc194cab6 tape_do_io_async +EXPORT_SYMBOL drivers/s390/char/tape 0xc26eb1bf tape_generic_probe +EXPORT_SYMBOL drivers/s390/char/tape 0xcc84af83 tape_std_unassign +EXPORT_SYMBOL drivers/s390/char/tape 0xd019ce6e tape_std_mtweof +EXPORT_SYMBOL drivers/s390/char/tape 0xd4d063b3 tape_std_read_backward +EXPORT_SYMBOL drivers/s390/char/tape 0xd9e38852 tape_med_state_set +EXPORT_SYMBOL drivers/s390/char/tape 0xe2087f84 tape_std_mtcompression +EXPORT_SYMBOL drivers/s390/char/tape 0xf13378bc tape_std_process_eov +EXPORT_SYMBOL drivers/s390/char/tape 0xfe60587b tape_std_mtfsr +EXPORT_SYMBOL drivers/s390/char/tape 0xfffa6282 tape_std_read_block +EXPORT_SYMBOL drivers/s390/char/tape_34xx 0xfdbe6808 tape_34xx_dbf +EXPORT_SYMBOL drivers/s390/char/tape_3590 0x30639e5a tape_3590_dbf +EXPORT_SYMBOL drivers/s390/char/tape_class 0x19dcd6a8 unregister_tape_dev +EXPORT_SYMBOL drivers/s390/char/tape_class 0x3aa1de3b register_tape_dev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x1dcf575a ccwgroup_set_online +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x4ce30d58 ccwgroup_set_offline +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x54bc3302 ccwgroup_remove_ccwdev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x6a5dcd55 ccwgroup_driver_register +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x6f394271 ccwgroup_probe_ccwdev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x8971910a ccwgroup_create_dev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xfc2ec779 ccwgroup_driver_unregister +EXPORT_SYMBOL drivers/s390/cio/qdio 0x242adb16 qdio_stop_irq +EXPORT_SYMBOL drivers/s390/cio/qdio 0x472b75d7 qdio_start_irq +EXPORT_SYMBOL drivers/s390/cio/qdio 0xd43dca2a qdio_get_next_buffers +EXPORT_SYMBOL drivers/s390/crypto/ap 0x0ffc9609 ap_recv +EXPORT_SYMBOL drivers/s390/crypto/ap 0x2dff7c1c ap_queue_message +EXPORT_SYMBOL drivers/s390/crypto/ap 0x4fff4973 ap_driver_unregister +EXPORT_SYMBOL drivers/s390/crypto/ap 0x53772c66 ap_device_init_reply +EXPORT_SYMBOL drivers/s390/crypto/ap 0x5e21cb82 ap_send +EXPORT_SYMBOL drivers/s390/crypto/ap 0x77247c5e ap_bus_force_rescan +EXPORT_SYMBOL drivers/s390/crypto/ap 0x8a0170f4 ap_cancel_message +EXPORT_SYMBOL drivers/s390/crypto/ap 0xd5e90454 ap_domain_index +EXPORT_SYMBOL drivers/s390/crypto/ap 0xf60201b4 ap_driver_register +EXPORT_SYMBOL drivers/s390/crypto/ap 0xfe967465 ap_flush_queue +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x0dcb8a18 zcrypt_msgtype_register +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x30e2cb07 zcrypt_msgtype_unregister +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x498b9839 zcrypt_device_alloc +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x50dd2e97 zcrypt_device_put +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x50e4c55d zcrypt_device_get +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x67cedaeb zcrypt_rescan_req +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x9c3adcb7 zcrypt_msgtype_request +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0xba34d24e zcrypt_device_unregister +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0xd81d4e19 zcrypt_device_register +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0xe497e675 zcrypt_msgtype_release +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0xf43855da zcrypt_device_free +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 0x1b770365 kfree_fsm +EXPORT_SYMBOL drivers/s390/net/fsm 0x3805a87b fsm_getstate_str +EXPORT_SYMBOL drivers/s390/net/fsm 0x6ee879ae fsm_settimer +EXPORT_SYMBOL drivers/s390/net/fsm 0x814bc601 fsm_addtimer +EXPORT_SYMBOL drivers/s390/net/fsm 0x910769be fsm_deltimer +EXPORT_SYMBOL drivers/s390/net/fsm 0xdcbc5aa7 init_fsm +EXPORT_SYMBOL drivers/s390/net/fsm 0xf49b8637 fsm_modtimer +EXPORT_SYMBOL drivers/s390/net/qeth_l2 0x26c6795a qeth_osn_assist +EXPORT_SYMBOL drivers/s390/net/qeth_l2 0x9d791af3 qeth_osn_register +EXPORT_SYMBOL drivers/s390/net/qeth_l2 0xafc81162 qeth_osn_deregister +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x089b2449 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x29e55838 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2e60a68b fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x48d75da9 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4dda78b0 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x58d5d0f2 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x887e3e4a fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x905599ff fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb3a50419 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbc17c04a fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xcc0ba226 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xff47b8c4 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0985b2dc fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x09f92be3 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1372955e fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1430e71b fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1555a856 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1579e34d fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x16fbb8b8 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1b004267 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c3f1549 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x218aac87 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27f1fc0a fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x34372d1a fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x49bdf3c2 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4a951522 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4d19681b fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4e63b7d2 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x54e92570 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5e6d26ab fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x68d89b55 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6ae5d622 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x76adf473 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x77ca9294 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x78110c78 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x79b7b8c4 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ce48ac9 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80a17761 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8669013f fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8967da97 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9761c70b fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1ad248a fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb6c4d679 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb7d04969 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xba2bdf27 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc583e5b6 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc87f13eb fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc896dcbd fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcb4a0019 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcc3af557 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdadaa7e7 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdbb0eee9 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdbb193ac fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xddca9705 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe2729793 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe73d2eb5 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeee33287 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0b4dae9 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf193aad8 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf876b2e9 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf9843092 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf9b89ccf fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x5935dfca sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7529a95f sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xb408250a sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd9c7b71b sas_resume_ha +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x05032971 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x15c4f5a5 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1c51653a osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1ca02fb7 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1dcf1b3b osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x292cfe5a osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2d33b979 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x33f5eb97 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x40d8a9c0 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x454023ee osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4ecfccde osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x52205e4c osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x522a709e osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x571d1e5e osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5943f7a0 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5bd90c4a osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x61a167c6 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x633e51b8 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x65db1cde osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6c0b2cb5 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7f0ac2c2 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x87a1b33d osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8c54abb3 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8d71955e osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9a1063b0 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9c09d3c6 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9c99ebe2 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa7c815cd osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa94febae osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xab633799 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xac8a758f osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb2ae53e0 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb9d71991 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd435bf11 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdbd25b0c osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf62f73b5 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/osd 0x0aff1fcd osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0x2a0bdb71 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x3deed1fd osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x90a6f38c osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0xc256ea0a osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0xe4afae20 osduld_device_info +EXPORT_SYMBOL drivers/scsi/raid_class 0x141e4d80 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x56e4a8c4 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x9dee89fa raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x109020f5 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1a722d01 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2f217ee4 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x684967cf fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9c8f9d6d fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xac388357 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb1369d55 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbca5c37f fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbdefbccc scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc92789cd fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdd3688a4 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf526fc7c fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x00aa17a7 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0def2297 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1940a55b sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1bf0b153 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x24e94d09 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x26d7ff4e sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2daa4c57 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x41a8f39c sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4967521b scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4e5ec589 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x546a299a scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5c50d11a sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x749de093 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7b8e1866 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7c145960 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7d13cc26 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaeba67f7 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb06346ef sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb3c708c9 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb4da80b4 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb4fcdd07 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb581d761 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb791727f sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc6ac246a sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcc797f53 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcfcd45d3 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe4fefcca sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xeeb5fcaa sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xff3a0389 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x085a07d1 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x197f7c0c spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x2d0e797a spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x34fd8ccb spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe7f68cf0 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x1bf68b90 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xae99083b srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xdf58b1d8 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe796da2c srp_rport_put +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x01410b84 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x077c7b83 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x13e7edd8 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1783119a iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x18b306dc iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1b6efccf iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1eaddc74 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x20d493c9 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x211c6b6a iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2dcf8bae iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2fc6b83f iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3c4c5a57 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4e40fcf2 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65eb6cef iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x66ff96fc iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6d3c87e3 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7225ffe1 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x778aecfd iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7a16ca30 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x96cba778 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9c2454bf iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9d9e8d0e iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9e549be8 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9fc9bf4f iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa3696527 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa3da1b4e iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xadaf468b iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaf2086e0 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb0476011 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbb3321bc iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbc05dcf9 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc7292319 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xca6f5219 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd6e5b582 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe06133a5 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe25171fe iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe2a455e0 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe2c5124b iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe39870be iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe42ecd68 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xee3a6050 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf32f3b51 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf8e8fe6a iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x05d55881 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x0966635f transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0a7b08b2 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x0bcbaf8c target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x13204cbf transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x16e4df51 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x19b60bcd target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x1ab32ccb target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x1ca3d854 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x1edaa916 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x241686b8 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x261b4461 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x271b76ef sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x2a9386dc transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x30c91b87 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x324f5b8e core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x3413096c target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x38cd3de1 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x3ce768f7 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x3e40a285 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x40ae513b transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x40c9a471 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x422999c6 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x424ea8f1 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x48b27165 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x533ade74 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x5617dece transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x574667ea target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x59f6b69a transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5e5a01ec target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x5e6a5db7 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x63ee3b22 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x643eb653 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x6d3f121b target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x808f2b52 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x925c8ae6 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x97fa1f4d core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xae042b07 target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0xb4201e39 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xb54f3679 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xb6eb427d transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xb9833eb2 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb9e66a90 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0xba49fd76 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xbd8d6f8b target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xc1a7ca9f core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xc1ff11f1 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc4c9a39f spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xc73a9b48 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xc969f60c core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc6d2efe core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xcce43f75 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xcee19a48 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xceec4127 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xd7906672 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd8c7e9a6 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xdded622e target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xe1c68cb9 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xe5ef114e transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xe7621d83 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xeb806b07 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xebad913d target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xef41a6a7 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xefdd06a9 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc3b1228 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xfd95f63a sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xfdb7f684 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xfdeacc14 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xff999689 target_submit_tmr +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x076ccf95 uart_register_driver +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x08528d08 uart_write_wakeup +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x1056ba30 uart_get_baud_rate +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x3981cd37 uart_remove_one_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x52ffa388 uart_get_divisor +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x70723131 uart_suspend_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x7d042ec6 uart_update_timeout +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x7e9519c3 uart_unregister_driver +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x9207fc4a uart_resume_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x98c4f878 uart_add_one_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xd64e0c8a uart_match_port +EXPORT_SYMBOL drivers/vhost/vhost 0x51617fa5 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0xdeb58153 vhost_chr_write_iter +EXPORT_SYMBOL fs/configfs/configfs 0x0ede2813 configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x235283a9 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x3519e7e7 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0x3a0ed25c configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x3a9328f7 configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x482904e6 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x9049496b config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x94c75b2e configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x9e89fe69 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0xa321acaa config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0xaaa62fad configfs_depend_item_unlocked +EXPORT_SYMBOL fs/configfs/configfs 0xb2494070 configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xcad4e15f configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0xd7bc2d27 configfs_remove_default_groups +EXPORT_SYMBOL fs/configfs/configfs 0xe2c1fa6d config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xe52873d5 config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0xed4a6bad config_item_put +EXPORT_SYMBOL fs/crypto/fscrypto 0x0e07fd8b fscrypt_get_ctx +EXPORT_SYMBOL fs/crypto/fscrypto 0x139ab441 fscrypt_fname_usr_to_disk +EXPORT_SYMBOL fs/crypto/fscrypto 0x1b09c286 fscrypt_fname_alloc_buffer +EXPORT_SYMBOL fs/crypto/fscrypto 0x2358fce8 fscrypt_decrypt_page +EXPORT_SYMBOL fs/crypto/fscrypto 0x40582c9c fscrypt_get_encryption_info +EXPORT_SYMBOL fs/crypto/fscrypto 0x41f7d2e1 fscrypt_d_ops +EXPORT_SYMBOL fs/crypto/fscrypto 0x4ff666a6 fscrypt_inherit_context +EXPORT_SYMBOL fs/crypto/fscrypto 0x648b33a0 fscrypt_has_permitted_context +EXPORT_SYMBOL fs/crypto/fscrypto 0x69220a6d fscrypt_put_encryption_info +EXPORT_SYMBOL fs/crypto/fscrypto 0x6af964d4 fscrypt_decrypt_bio_pages +EXPORT_SYMBOL fs/crypto/fscrypto 0x767f189d fscrypt_fname_encrypted_size +EXPORT_SYMBOL fs/crypto/fscrypto 0x7c559a84 fscrypt_pullback_bio_page +EXPORT_SYMBOL fs/crypto/fscrypto 0x896e8f87 fscrypt_process_policy +EXPORT_SYMBOL fs/crypto/fscrypto 0x97e626c5 fscrypt_free_filename +EXPORT_SYMBOL fs/crypto/fscrypto 0xa375184c fscrypt_zeroout_range +EXPORT_SYMBOL fs/crypto/fscrypto 0xa4e49faf fscrypt_restore_control_page +EXPORT_SYMBOL fs/crypto/fscrypto 0xafcc4190 fscrypt_release_ctx +EXPORT_SYMBOL fs/crypto/fscrypto 0xb368fb8b fscrypt_initialize +EXPORT_SYMBOL fs/crypto/fscrypto 0xc688b52d fscrypt_setup_filename +EXPORT_SYMBOL fs/crypto/fscrypto 0xd7f1018c fscrypt_get_policy +EXPORT_SYMBOL fs/crypto/fscrypto 0xd8b1e4f8 fscrypt_fname_free_buffer +EXPORT_SYMBOL fs/crypto/fscrypto 0xdaa7fcc6 fscrypt_encrypt_page +EXPORT_SYMBOL fs/crypto/fscrypto 0xde02d3ad fscrypt_fname_disk_to_usr +EXPORT_SYMBOL fs/exofs/libore 0x12b7eee0 ore_write +EXPORT_SYMBOL fs/exofs/libore 0x1e1b5e50 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0x27a070e7 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x2a2eac4d ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x3b9f1e68 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0x3e2fae2a ore_read +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x81a4bf4d ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xe16c5ee9 ore_create +EXPORT_SYMBOL fs/exofs/libore 0xe5739fa1 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0xe7f47969 ore_get_rw_state +EXPORT_SYMBOL fs/fscache/fscache 0x0614e619 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x1c2c2e40 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x2653a651 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x266d5cf0 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x2af00be0 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x2b4ac5f6 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x2fba7569 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x47513a1f fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x4922bfe1 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x59f73771 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x66f030fa __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x6ad862b1 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7539a97d fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x80439671 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x873f8299 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x8a4b6677 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x8b2aac00 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x8c61f882 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x91972cc5 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x9529db0d __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xa1775960 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xa3f34ef1 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xa8b4f568 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xabc1e06f __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xbbf1f9b4 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xbed4cf0f fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xc4ba8e6a fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xc5b0784b __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xd518dab4 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xde50e519 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xe097f59c __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xe0d47752 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0xede0cd58 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xef44a6cf fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0xf507e93f __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf6592fc8 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xf687e261 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xf6d6b7ec __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xfdcec973 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xfe12f407 fscache_withdraw_cache +EXPORT_SYMBOL fs/jbd2/jbd2 0x03681488 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL fs/jbd2/jbd2 0x0e139fbc jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL fs/jbd2/jbd2 0x115ad7e6 jbd2_journal_ack_err +EXPORT_SYMBOL fs/jbd2/jbd2 0x1639fa95 jbd2_journal_flush +EXPORT_SYMBOL fs/jbd2/jbd2 0x196f4b54 jbd2_journal_dirty_metadata +EXPORT_SYMBOL fs/jbd2/jbd2 0x1cf6e396 jbd2_journal_update_sb_errno +EXPORT_SYMBOL fs/jbd2/jbd2 0x1f17d0fa jbd2_journal_errno +EXPORT_SYMBOL fs/jbd2/jbd2 0x2784e9d4 jbd2_journal_inode_add_write +EXPORT_SYMBOL fs/jbd2/jbd2 0x27dcd565 jbd2_journal_get_undo_access +EXPORT_SYMBOL fs/jbd2/jbd2 0x28693323 jbd2__journal_restart +EXPORT_SYMBOL fs/jbd2/jbd2 0x2d47707e jbd2_journal_force_commit +EXPORT_SYMBOL fs/jbd2/jbd2 0x2e49d59b jbd2_journal_lock_updates +EXPORT_SYMBOL fs/jbd2/jbd2 0x2ffe4d4e jbd2_journal_set_features +EXPORT_SYMBOL fs/jbd2/jbd2 0x3085096d jbd2_complete_transaction +EXPORT_SYMBOL fs/jbd2/jbd2 0x3236f178 jbd2_journal_free_reserved +EXPORT_SYMBOL fs/jbd2/jbd2 0x36757b23 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL fs/jbd2/jbd2 0x37653380 jbd2_journal_check_available_features +EXPORT_SYMBOL fs/jbd2/jbd2 0x37dbfe6e jbd2_journal_extend +EXPORT_SYMBOL fs/jbd2/jbd2 0x42ab2d31 jbd2_journal_unlock_updates +EXPORT_SYMBOL fs/jbd2/jbd2 0x46f7d3cb jbd2__journal_start +EXPORT_SYMBOL fs/jbd2/jbd2 0x5109973b jbd2_journal_blocks_per_page +EXPORT_SYMBOL fs/jbd2/jbd2 0x59adb58d jbd2_log_wait_commit +EXPORT_SYMBOL fs/jbd2/jbd2 0x5b50a445 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL fs/jbd2/jbd2 0x5c77ac0c jbd2_journal_force_commit_nested +EXPORT_SYMBOL fs/jbd2/jbd2 0x605655c3 jbd2_journal_load +EXPORT_SYMBOL fs/jbd2/jbd2 0x6c6d0123 jbd2_journal_get_create_access +EXPORT_SYMBOL fs/jbd2/jbd2 0x6cd789bb jbd2_journal_revoke +EXPORT_SYMBOL fs/jbd2/jbd2 0x80beb0cd jbd2_journal_abort +EXPORT_SYMBOL fs/jbd2/jbd2 0x93046fc3 jbd2_journal_clear_features +EXPORT_SYMBOL fs/jbd2/jbd2 0xa65778c8 jbd2_journal_set_triggers +EXPORT_SYMBOL fs/jbd2/jbd2 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL fs/jbd2/jbd2 0xad9a1fce jbd2_journal_destroy +EXPORT_SYMBOL fs/jbd2/jbd2 0xb0e01a64 jbd2_journal_init_inode +EXPORT_SYMBOL fs/jbd2/jbd2 0xb18d2562 jbd2_journal_inode_add_wait +EXPORT_SYMBOL fs/jbd2/jbd2 0xbcb95101 jbd2_journal_invalidatepage +EXPORT_SYMBOL fs/jbd2/jbd2 0xc4c4437a jbd2_journal_release_jbd_inode +EXPORT_SYMBOL fs/jbd2/jbd2 0xc65ab682 jbd2_journal_wipe +EXPORT_SYMBOL fs/jbd2/jbd2 0xc6f019b2 jbd2_journal_start_reserved +EXPORT_SYMBOL fs/jbd2/jbd2 0xc78e03e3 jbd2_journal_forget +EXPORT_SYMBOL fs/jbd2/jbd2 0xcc126b94 jbd2_journal_start_commit +EXPORT_SYMBOL fs/jbd2/jbd2 0xcead10ee jbd2_journal_clear_err +EXPORT_SYMBOL fs/jbd2/jbd2 0xd339d06c jbd2_journal_check_used_features +EXPORT_SYMBOL fs/jbd2/jbd2 0xd50adabe jbd2_journal_stop +EXPORT_SYMBOL fs/jbd2/jbd2 0xd72cc8c2 jbd2_journal_restart +EXPORT_SYMBOL fs/jbd2/jbd2 0xdffe57d6 jbd2_journal_init_dev +EXPORT_SYMBOL fs/jbd2/jbd2 0xebe61062 jbd2_journal_start +EXPORT_SYMBOL fs/jbd2/jbd2 0xf3857740 jbd2_log_start_commit +EXPORT_SYMBOL fs/jbd2/jbd2 0xf9c311d8 jbd2_journal_get_write_access +EXPORT_SYMBOL fs/mbcache 0x0e8062f7 mb_cache_entry_find_first +EXPORT_SYMBOL fs/mbcache 0x1868bb63 mb_cache_entry_create +EXPORT_SYMBOL fs/mbcache 0x303b62aa mb_cache_entry_find_next +EXPORT_SYMBOL fs/mbcache 0x92dbe7b9 __mb_cache_entry_free +EXPORT_SYMBOL fs/mbcache 0xc062f51c mb_cache_entry_delete_block +EXPORT_SYMBOL fs/mbcache 0xc4ec55de mb_cache_entry_get +EXPORT_SYMBOL fs/mbcache 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL fs/mbcache 0xdd2c169b mb_cache_create +EXPORT_SYMBOL fs/mbcache 0xf34a47a0 mb_cache_entry_touch +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x0e5389c1 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x3d752100 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x44118944 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x514d6b72 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x76a61bb5 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x913b196f qtree_release_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-itu-t 0x276c7e62 crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc16 0x02a6ce5a crc16_table +EXPORT_SYMBOL lib/crc16 0x9aabc564 crc16 +EXPORT_SYMBOL lib/crc7 0x6b96fbac crc7_be +EXPORT_SYMBOL lib/crc7 0x7a222007 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc8 0x3e77b340 crc8 +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0f6f0fdb lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x17c6b1e1 lc_del +EXPORT_SYMBOL lib/lru_cache 0x3d724d8a lc_seq_dump_details +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 0xb93fd949 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 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 0x32ec514e lz4_compress +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xab08068b lz4hc_compress +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd9e91f83 raid6_vgfmul +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL net/6lowpan/6lowpan 0x374531b7 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x7e8d70df lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x8496b0da lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xd4d3ed10 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xf657a7de lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xfc75e4be lowpan_nhc_add +EXPORT_SYMBOL net/802/p8022 0x8f0c3b34 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xd131d8e5 register_8022_client +EXPORT_SYMBOL net/802/p8023 0x98535616 make_8023_client +EXPORT_SYMBOL net/802/p8023 0xd83b96fc destroy_8023_client +EXPORT_SYMBOL net/802/psnap 0x515a5271 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0xead1b92f register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x04bb88a2 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x0fb49ca5 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x13237fe4 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x19eafa3d p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x1a39c700 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x1f9765e1 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x3a3e4db1 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3a572c0c p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x3b9e6224 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x40e55e8c v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x44ad9a70 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x50a23486 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x525c993e p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x54e072ed p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x595b447b p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x5e9ecc1d p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7360fffd p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7520c34c p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x7f729121 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x87d96e35 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x890a535a p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x8976c921 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x913d5382 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x97b24abc p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xa852dbd8 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xaafaf6ae p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xb31442c2 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xba18a995 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc331f003 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xc41f287b p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xcc4fe427 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xcd1142a3 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xcd8912d5 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xe06edf65 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xecbb157e p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xed41e419 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xedd0466c p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf502998a p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xf6c07b9d p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xf9c754a0 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/9p/9pnet 0xfdc6dc48 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xff80704d p9_client_attach +EXPORT_SYMBOL net/bridge/bridge 0xdee3e3b5 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x04f2124f ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x20fd9a75 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x49c2a63c ebt_do_table +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x1e0cafc0 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 0x3f9cc553 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb5e68154 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xe3b60ab6 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0xf2c41b3f get_cfcnfg +EXPORT_SYMBOL net/can/can 0x482fa5fe can_proto_unregister +EXPORT_SYMBOL net/can/can 0x4dd0f504 can_rx_register +EXPORT_SYMBOL net/can/can 0x72ebb943 can_proto_register +EXPORT_SYMBOL net/can/can 0xad15a0be can_ioctl +EXPORT_SYMBOL net/can/can 0xb874066d can_rx_unregister +EXPORT_SYMBOL net/can/can 0xe628818f can_send +EXPORT_SYMBOL net/ceph/libceph 0x01cbf29b ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x06e28669 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x075d6936 ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0997d501 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x0b66617d ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x0e7ae1cc ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x0f7461f8 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x10719bcd ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x144f54ba ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x16b42f21 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x19af2cf4 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x1c7adea7 ceph_file_layout_from_legacy +EXPORT_SYMBOL net/ceph/libceph 0x1ec287de ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x25dad958 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x27d99e9a ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x2c396dc6 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x2d30d260 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x2db717f3 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x2e407ced osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x363dfa84 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x36ceeb94 ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0x36d1cd4e ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x38c30de3 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x39916277 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x3a6e059a ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x43c6e37d ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x4476b457 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x45e283ec ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x4a69fadc ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0x4bf0271e ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0x50b1e30b osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x533f16de osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x54fa9577 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5848386e ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x5aefaf0f ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x5cae4565 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x5f947752 ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0x606a0f91 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x60f423b2 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x653cc8ac ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x66383d86 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x664591a7 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x67240b22 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x6913753d osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6b9c9496 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6d59336f ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x7952e137 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x7d3cbf13 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x7d899e7e ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x7e7f3cb0 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x7fcfab85 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x81cd52e0 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x81e4019a ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x85d03a9e ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0x87416133 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x8744c3e5 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x8897ab80 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x893316f5 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x8977535d ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x92378bdf ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x95961314 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x97541e1e ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x985c2362 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x987955da ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0x98dafb92 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9b8a2a8d osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0x9f613dd6 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x9f8cca74 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0xa00faeac ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa329bb86 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xa9ef07b2 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb14d15d7 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xb268eb29 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb550ef84 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xbf15e03c ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0xc02fa413 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xc1f544bb ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc4dde8cf ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0xc6ae435d ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xc98e34b1 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcb780304 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xcdd122a3 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xd2a299d2 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd85a4ff2 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xd8f71763 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xda476f1d ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xda4a973f ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xdd8e7550 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xddfae9bd ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xe5105351 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xe81e7197 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xedc0be90 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xee0e1fb7 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xee1ac17c ceph_file_layout_to_legacy +EXPORT_SYMBOL net/ceph/libceph 0xefdbab44 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xf0789ae5 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0xf4fcbb79 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf593d0b2 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xf97a7b56 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0xfea418a1 ceph_osdc_cancel_request +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x7cac071c dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xc56af7e6 dccp_req_err +EXPORT_SYMBOL net/dns_resolver/dns_resolver 0x63ab3b8f dns_query +EXPORT_SYMBOL net/ieee802154/ieee802154 0x2ecb96cc wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x3d81354e wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x41c2ad5f wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xa55e82d1 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb8464d99 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb9a32a52 wpan_phy_free +EXPORT_SYMBOL net/ipv4/fou 0x72395c37 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x761c600f gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x934af5fb gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x9a1cb8a9 fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xbc9eddab __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xdfb45d6a __fou_build_header +EXPORT_SYMBOL net/ipv4/gre 0x6f5c75f5 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x119e1918 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x1fefa272 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x37f31544 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe6c79234 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x598772ca arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6005b576 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa654fc34 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x0e171567 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x47bba0b1 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xdd219f87 ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x3e6b96f8 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x7e3f64f6 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xdc7c4cb5 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/fou6 0x0b31c67e gue6_build_header +EXPORT_SYMBOL net/ipv6/fou6 0x93d65571 fou6_build_header +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x03c6df8d ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x09075310 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5a08a150 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x60de0e1b ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x925ee6fc ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9d47f351 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xad7977f9 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xfa79a319 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xfd0af283 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x250804da ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x795c4112 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xe41b9a5c ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x0c62987b xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0x7ac2a720 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x48959ace xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xdd657f12 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/kcm/kcm 0x71ed6295 kcm_proc_register +EXPORT_SYMBOL net/kcm/kcm 0xc0e3b9a2 kcm_proc_unregister +EXPORT_SYMBOL net/l2tp/l2tp_core 0x8af2c7d8 l2tp_recv_common +EXPORT_SYMBOL net/lapb/lapb 0x7ed41402 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x80a670d5 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x80bc1607 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x8a3fb966 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x8fc22f9d lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xa5e77ef9 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xf6923b84 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xf9108ee6 lapb_data_request +EXPORT_SYMBOL net/llc/llc 0x0687ee2b llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x1e8c386c llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x26a855b6 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x571490be llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x71f939ab llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xc6909306 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xec0b1eba llc_sap_open +EXPORT_SYMBOL net/mac802154/mac802154 0x01cf64d5 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x1967141a ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x3a34faa4 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x5719ef1e ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x5c6d6493 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x5d265e38 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x8a4275a1 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xb4900b2e ieee802154_alloc_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0e25d6b4 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x10ba14a2 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x14d109dc ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x18efc277 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2529021f ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x30340ff4 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3ad1d104 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3c7ce536 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4d2db56a ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7b636500 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8efc5e14 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8f99c6c7 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x96d2abe8 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd502a200 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe1749966 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x1e06f342 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x42df360b nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x4bbc283e __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x3c9869de nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0x6e47f7b1 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x6fe6e33e nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x7b0140f1 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x9d86fb52 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xda2b3c8e nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x171b03c7 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x6868c0c1 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x6ead6a1d xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x8526758d xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x896ac059 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x94e7a06e xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x972508fb xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x9932472e xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xbb08e2e2 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xf7112a99 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x0943c215 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x0a4aa3cc nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x0b446c85 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x1397e35f nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x244e84c6 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x292339c9 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x4545303a nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x5c31a99c nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x600369f5 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x603fd570 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x74562980 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x799f4c22 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x7fefdec4 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x9c829f97 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xb127576a nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xcc3a711d nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xd9a08881 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xda6a21c6 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0xdafedf99 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xe8eb36c1 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xea313b2e nfc_llc_start +EXPORT_SYMBOL net/nfc/nci/nci 0x067e6d05 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x0ccade84 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x18ea0430 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x1cc23761 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x216731c8 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x2657a152 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x2a9bae6a nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x316e7236 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x3eb3d776 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x3f27e6c5 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x424f52df nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x438beb4c nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x43906ee6 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x62fce005 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x670ab5cc nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x77c6de77 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x8325a8b7 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x9149673a nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x9b70442f nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xa3247f2a nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xb373e362 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc0b85bde nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xc1301a1f nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xcdd211bd nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xe064b0b0 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xe1ae067a nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xf159350a nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xf8ee22e7 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xf914ad57 nci_core_init +EXPORT_SYMBOL net/nfc/nfc 0x10d9091d nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x11be262a nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x17b924b5 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x41bcf52f nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x44e8f370 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x4741d334 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x682c0e90 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x69f61358 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x6c3de198 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x7028932d nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x8508a14b nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x94bc4ee1 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x97a29490 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x9e3d7568 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x9e715734 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xa3d2f79f nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xbbb71ffe nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xc56ef322 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xd220d289 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xd401f99b nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xdd70aad8 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xdeb871e5 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xdff5d80b nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xe3cb9f94 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xfba2a62f nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc_digital 0x188b4ace nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x229a666c nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x73cde5c4 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xdd0a20fa nfc_digital_allocate_device +EXPORT_SYMBOL net/phonet/phonet 0x7ce15fbc phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x8893b413 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x8cfaa9b9 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xa125be56 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xb6decfa6 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xbe9eb597 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xbeaf733e pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xf32a99dc pn_skb_send +EXPORT_SYMBOL net/rfkill/rfkill 0x04cabed9 rfkill_register +EXPORT_SYMBOL net/rfkill/rfkill 0x083eb21c rfkill_unregister +EXPORT_SYMBOL net/rfkill/rfkill 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL net/rfkill/rfkill 0x3de1a90d rfkill_alloc +EXPORT_SYMBOL net/rfkill/rfkill 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL net/rfkill/rfkill 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL net/rfkill/rfkill 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL net/rfkill/rfkill 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL net/rfkill/rfkill 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL net/rfkill/rfkill 0xc0763484 rfkill_blocked +EXPORT_SYMBOL net/rfkill/rfkill 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL net/rfkill/rfkill 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x17443438 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x288ebdd6 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3ff51609 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x45a2bc3e rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4f1f1a16 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x540b2e82 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5a4316c0 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x66f60661 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x86d47453 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8b1a500d rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9b6ddaa6 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc69ad4f9 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe3901b14 rxrpc_kernel_data_consumed +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf011fd93 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xfe51477e rxrpc_kernel_reject_call +EXPORT_SYMBOL net/sctp/sctp 0x48b5a0d2 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x1d32222d gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x6e79fb3b gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x99c92579 gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x521e4b0d xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xaf545f07 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xd2dd337a svc_pool_stats_open +EXPORT_SYMBOL net/wimax/wimax 0x3abf6792 wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0xa642818d wimax_reset +EXPORT_SYMBOL vmlinux 0x00111c1e netdev_info +EXPORT_SYMBOL vmlinux 0x0013f150 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x00332da8 __lock_page +EXPORT_SYMBOL vmlinux 0x005e078d sock_no_listen +EXPORT_SYMBOL vmlinux 0x006489c0 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x0091bf16 __register_nls +EXPORT_SYMBOL vmlinux 0x00abed75 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x00b47f23 sie64a +EXPORT_SYMBOL vmlinux 0x00dbd77f flow_cache_fini +EXPORT_SYMBOL vmlinux 0x00f4a223 _ebc_toupper +EXPORT_SYMBOL vmlinux 0x00f97474 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x01293941 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x01485533 nf_afinfo +EXPORT_SYMBOL vmlinux 0x014e749c sget +EXPORT_SYMBOL vmlinux 0x014eec74 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x0185a7d7 sclp_pci_deconfigure +EXPORT_SYMBOL vmlinux 0x018ffb00 raw3270_request_set_data +EXPORT_SYMBOL vmlinux 0x019019e9 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x01904b17 padata_start +EXPORT_SYMBOL vmlinux 0x01c54a90 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x01cce68f dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x01dd13d8 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x01ebcb7b lg_global_unlock +EXPORT_SYMBOL vmlinux 0x01f1222e scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x01f1cd53 file_remove_privs +EXPORT_SYMBOL vmlinux 0x02155c85 mntget +EXPORT_SYMBOL vmlinux 0x02307607 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x024a210d blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x0259b955 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x025d889c have_submounts +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x02688433 kill_pgrp +EXPORT_SYMBOL vmlinux 0x026d9a3a inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x028b1681 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a350c6 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x02a4550a simple_nosetlease +EXPORT_SYMBOL vmlinux 0x02c5535b xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x02ca22a8 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0x02d2eeb1 get_ccwdev_by_busid +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02f6242a alloc_disk +EXPORT_SYMBOL vmlinux 0x0311975e sync_blockdev +EXPORT_SYMBOL vmlinux 0x031d6a34 page_waitqueue +EXPORT_SYMBOL vmlinux 0x03330163 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0336ec13 blk_put_queue +EXPORT_SYMBOL vmlinux 0x033e155c __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x0343a1a8 __list_add +EXPORT_SYMBOL vmlinux 0x0343dae7 follow_down +EXPORT_SYMBOL vmlinux 0x03530d8a is_bad_inode +EXPORT_SYMBOL vmlinux 0x035325d0 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x03583d45 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x035aaac0 dev_change_flags +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x0369382b nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x03746fed nf_hooks_needed +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x0388a5d8 idr_init +EXPORT_SYMBOL vmlinux 0x03908e34 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x03a3bf48 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x03aa4b69 dev_add_pack +EXPORT_SYMBOL vmlinux 0x03b27a8c unregister_service_level +EXPORT_SYMBOL vmlinux 0x03c11255 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x03c94a8f dquot_commit +EXPORT_SYMBOL vmlinux 0x03cd5d0d tsb_init +EXPORT_SYMBOL vmlinux 0x03ed9538 raw3270_start_irq +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x041e1422 downgrade_write +EXPORT_SYMBOL vmlinux 0x041fa5a8 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x0422c19e vfs_symlink +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0443abd2 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x0453a000 mount_nodev +EXPORT_SYMBOL vmlinux 0x045c1da8 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x0461b2a4 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x048dcde1 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x04971e02 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x049cc032 dm_get_device +EXPORT_SYMBOL vmlinux 0x04bbb61b dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x04bca38e pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x04caa9b8 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x04f689e8 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x051dd449 alloc_cpumask_var +EXPORT_SYMBOL vmlinux 0x0521445b list_del +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0536749a end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x0543ad3d scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x0565dabb compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0x057ae3ec get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x057c4ea5 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x058249c0 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x059baffc krealloc +EXPORT_SYMBOL vmlinux 0x05c1155e __lock_buffer +EXPORT_SYMBOL vmlinux 0x05e25804 __request_region +EXPORT_SYMBOL vmlinux 0x05ea944f freezing_slow_path +EXPORT_SYMBOL vmlinux 0x05f872e1 bit_waitqueue +EXPORT_SYMBOL vmlinux 0x06026d3b sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x06042344 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x060ea2d6 kstrtoull +EXPORT_SYMBOL vmlinux 0x0612ec9d down_write_killable +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0620386b devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x062da4c2 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x065429aa __tracepoint_s390_cio_rsch +EXPORT_SYMBOL vmlinux 0x066cd28c mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x066e8345 lockref_get +EXPORT_SYMBOL vmlinux 0x066f468d end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x06af3816 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x06b08a7e dget_parent +EXPORT_SYMBOL vmlinux 0x06daa8f1 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x06e32551 __skb_csum_offload_chk +EXPORT_SYMBOL vmlinux 0x07297511 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x07341712 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x0735e4b7 set_anon_super +EXPORT_SYMBOL vmlinux 0x0758f4ef ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x075e5799 kset_register +EXPORT_SYMBOL vmlinux 0x078b2ec9 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free +EXPORT_SYMBOL vmlinux 0x07aa5afd tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x07abd44d tcf_hashinfo_destroy +EXPORT_SYMBOL vmlinux 0x07bb68a6 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07d5bf27 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x07f4aec1 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x07fb0502 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x08044d6f idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x080adbe0 param_ops_short +EXPORT_SYMBOL vmlinux 0x081735fb md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x08456553 match_string +EXPORT_SYMBOL vmlinux 0x0845d95f user_path_create +EXPORT_SYMBOL vmlinux 0x087826f2 single_open_size +EXPORT_SYMBOL vmlinux 0x08a5f2fb scsi_print_sense +EXPORT_SYMBOL vmlinux 0x08ace69e register_external_irq +EXPORT_SYMBOL vmlinux 0x08be4dbd tty_vhangup +EXPORT_SYMBOL vmlinux 0x08d9b92f unregister_cdrom +EXPORT_SYMBOL vmlinux 0x0955209a migrate_page_copy +EXPORT_SYMBOL vmlinux 0x09576f93 complete_and_exit +EXPORT_SYMBOL vmlinux 0x0958e1af ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x095b0105 vm_event_states +EXPORT_SYMBOL vmlinux 0x09637ebc devm_request_resource +EXPORT_SYMBOL vmlinux 0x0963b444 __put_page +EXPORT_SYMBOL vmlinux 0x09969a62 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x09a625c9 ccw_device_is_multipath +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c6411f schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a2c9833 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x0a489166 sock_create_kern +EXPORT_SYMBOL vmlinux 0x0a48d943 __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x0a69dfe9 clear_inode +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a7cee42 generic_setxattr +EXPORT_SYMBOL vmlinux 0x0a8ea732 vfs_writev +EXPORT_SYMBOL vmlinux 0x0a9a2944 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x0a9a73a9 tty_port_put +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aacd352 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x0aec525d ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b121e5c generic_file_llseek +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b2f5d65 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x0b427606 __kernel_write +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b7d1c77 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x0b9541d2 d_path +EXPORT_SYMBOL vmlinux 0x0b976fbc copy_from_iter +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0be8e4ae km_policy_notify +EXPORT_SYMBOL vmlinux 0x0c1c40c8 scsi_host_put +EXPORT_SYMBOL vmlinux 0x0c4223e1 proto_register +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c5f2a5b idr_get_next +EXPORT_SYMBOL vmlinux 0x0c7cf7c6 zero_page_mask +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cc73cab find_vma +EXPORT_SYMBOL vmlinux 0x0cceac6c iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x0cd4bf31 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x0d03f93d filemap_fault +EXPORT_SYMBOL vmlinux 0x0d25a11c qdisc_destroy +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d5b58de devm_memremap +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d71616a insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x0d7d893c pci_pme_active +EXPORT_SYMBOL vmlinux 0x0d9f5186 sget_userns +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da23285 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x0dbe4bf1 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x0dd26a36 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x0ddaa736 eth_header +EXPORT_SYMBOL vmlinux 0x0de60b76 __bread_gfp +EXPORT_SYMBOL vmlinux 0x0de8bc12 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x0dee77d6 check_disk_change +EXPORT_SYMBOL vmlinux 0x0e079ac7 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x0e331d6c __dst_free +EXPORT_SYMBOL vmlinux 0x0e610b05 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x0e618778 param_set_bint +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e764206 kernel_bind +EXPORT_SYMBOL vmlinux 0x0e7b21d3 single_release +EXPORT_SYMBOL vmlinux 0x0e7b2d94 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x0ea763c3 sclp_sync_wait +EXPORT_SYMBOL vmlinux 0x0eab56fa __kfifo_max_r +EXPORT_SYMBOL vmlinux 0x0ec1c412 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x0ee01146 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x0eeeb703 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x0ef5f917 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f1ee2f1 freeze_bdev +EXPORT_SYMBOL vmlinux 0x0f4b5798 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f76d550 register_netdevice +EXPORT_SYMBOL vmlinux 0x0f78e4b0 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f85e5f1 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x0fa7d16b write_one_page +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fb5aa03 dev_trans_start +EXPORT_SYMBOL vmlinux 0x0fe22a50 get_cached_acl +EXPORT_SYMBOL vmlinux 0x0fe63858 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x0feba67d vfs_iter_read +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x101ca444 filemap_flush +EXPORT_SYMBOL vmlinux 0x1028454a unregister_binfmt +EXPORT_SYMBOL vmlinux 0x103ae02b rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x10497616 memweight +EXPORT_SYMBOL vmlinux 0x105d4147 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x107cfcf5 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x107f48ea fs_bio_set +EXPORT_SYMBOL vmlinux 0x109c1ab8 fence_init +EXPORT_SYMBOL vmlinux 0x109c91f2 param_ops_bool +EXPORT_SYMBOL vmlinux 0x109e94e4 tcf_register_action +EXPORT_SYMBOL vmlinux 0x10e020ec blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x10f2eb76 vsnprintf +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x1115e9ab lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x112383de ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x1126f7c7 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x112a916c scsi_device_put +EXPORT_SYMBOL vmlinux 0x113b7652 compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x114aabf4 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x11522413 qdisc_list_add +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x116627fd mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x117ce49b xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x119dccd4 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x119e8866 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x11a13e31 _kstrtol +EXPORT_SYMBOL vmlinux 0x11bee876 passthru_features_check +EXPORT_SYMBOL vmlinux 0x11c92991 xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x11d01edb netdev_change_features +EXPORT_SYMBOL vmlinux 0x11dda02c page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x11ed2eb8 sclp_remove_processed +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x124391bc __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x1251a12e console_mode +EXPORT_SYMBOL vmlinux 0x127f8051 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12a476ce d_exact_alias +EXPORT_SYMBOL vmlinux 0x12b7f551 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x12d1c51d deactivate_super +EXPORT_SYMBOL vmlinux 0x12ff9c6d setattr_copy +EXPORT_SYMBOL vmlinux 0x12ffef09 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x1300e571 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x130c15b3 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x132dfa72 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x13305a5c simple_transaction_read +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x1330803a put_tty_driver +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x1398cc19 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x1399b5f7 tcf_em_register +EXPORT_SYMBOL vmlinux 0x13a6af2b dcb_getapp +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x1402abef inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x1430ba68 path_nosuid +EXPORT_SYMBOL vmlinux 0x1431db8e blk_get_request +EXPORT_SYMBOL vmlinux 0x1436876a netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x1442713a tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x145aa3a7 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x147584eb ccw_device_start_timeout_key +EXPORT_SYMBOL vmlinux 0x14bd7e80 iucv_root +EXPORT_SYMBOL vmlinux 0x14c5e5b3 segment_warning +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14cef41d crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x14da83aa netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x14de3efa writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x14e96658 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x14ed6025 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x14fd023c irq_to_desc +EXPORT_SYMBOL vmlinux 0x150651d4 swake_up_all +EXPORT_SYMBOL vmlinux 0x15077b52 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x150ad92b ioport_resource +EXPORT_SYMBOL vmlinux 0x150b8d7a cdrom_release +EXPORT_SYMBOL vmlinux 0x15238619 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x152a4c53 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x15385ca4 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1551dab9 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x15599840 xfrm_state_sort +EXPORT_SYMBOL vmlinux 0x15a17073 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bebe58 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x15c59217 raw3270_del_view +EXPORT_SYMBOL vmlinux 0x15cb9ebc compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x15f0c9e5 bitmap_unplug +EXPORT_SYMBOL vmlinux 0x1617ebac ll_rw_block +EXPORT_SYMBOL vmlinux 0x16180664 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x1618c21e netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x161d1344 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x16282d67 bdput +EXPORT_SYMBOL vmlinux 0x1648de51 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x164eaf86 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x16501a8d skb_queue_purge +EXPORT_SYMBOL vmlinux 0x1674678f default_file_splice_read +EXPORT_SYMBOL vmlinux 0x169b7aee unregister_adapter_interrupt +EXPORT_SYMBOL vmlinux 0x16a15cae __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x16a5c69d filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x16c00aed neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x16d38658 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16fcba28 finish_swait +EXPORT_SYMBOL vmlinux 0x171ba852 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x177e7be5 __debug_sprintf_event +EXPORT_SYMBOL vmlinux 0x178251fc tcf_hash_create +EXPORT_SYMBOL vmlinux 0x178fb1fa kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x17ac620c __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x17ad49eb nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x17ade9d0 pmdp_xchg_direct +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x180a4552 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x18575b03 pagevec_lookup +EXPORT_SYMBOL vmlinux 0x185a29bb xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x187b9f2b pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x1893b621 dev_crit +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x189b6bac memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x189c3882 sk_common_release +EXPORT_SYMBOL vmlinux 0x18b1b0b2 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x18b87cca sclp_deactivate +EXPORT_SYMBOL vmlinux 0x18cce1ea zpool_register_driver +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18f9d89c sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x1929de08 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x1937a72f ihold +EXPORT_SYMBOL vmlinux 0x1954c131 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x196399b4 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c48250 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x19c85478 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x1a0d369b iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x1a0f9075 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x1a26d32b compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0x1a2774a1 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x1a2806c8 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x1a29c107 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x1a3c0a87 __brelse +EXPORT_SYMBOL vmlinux 0x1a3e2173 nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x1a7d0456 bdev_read_only +EXPORT_SYMBOL vmlinux 0x1aa2693a radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x1aa606be bmap +EXPORT_SYMBOL vmlinux 0x1aab3ad3 __quota_error +EXPORT_SYMBOL vmlinux 0x1ab11c30 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x1ab80189 tcp_connect +EXPORT_SYMBOL vmlinux 0x1aba5a5d would_dump +EXPORT_SYMBOL vmlinux 0x1ac50482 raw3270_request_reset +EXPORT_SYMBOL vmlinux 0x1aca14b2 zalloc_cpumask_var +EXPORT_SYMBOL vmlinux 0x1ade9c6e ccw_device_get_ciw +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b17e06c kstrtoll +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b3d00ad raw3270_reset +EXPORT_SYMBOL vmlinux 0x1b44fa5b simple_getattr +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b7aec1c scsi_print_command +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b854585 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x1b854dcf __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x1bb07a42 lz4_decompress +EXPORT_SYMBOL vmlinux 0x1bbf1c7f devm_memunmap +EXPORT_SYMBOL vmlinux 0x1bdc2e81 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x1c15bf60 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x1c1b23dd blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x1c1c74c7 iucv_message_receive +EXPORT_SYMBOL vmlinux 0x1c287b44 tcp_seq_open +EXPORT_SYMBOL vmlinux 0x1c4b41c4 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check +EXPORT_SYMBOL vmlinux 0x1c98f049 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x1ccf721e sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x1ccfa6f9 __skb_checksum +EXPORT_SYMBOL vmlinux 0x1cd387a7 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x1d1798fd __scsi_add_device +EXPORT_SYMBOL vmlinux 0x1d69298d try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x1d6f4efd pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x1d80d28f tty_do_resize +EXPORT_SYMBOL vmlinux 0x1d99eaf3 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x1db3a943 ___ratelimit +EXPORT_SYMBOL vmlinux 0x1de65b3c scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x1dfa0b89 proto_unregister +EXPORT_SYMBOL vmlinux 0x1e0740de iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x1e0e4d0d dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x1e0ec11d neigh_seq_next +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e299ef3 kset_unregister +EXPORT_SYMBOL vmlinux 0x1e2a1622 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x1e36ac39 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x1e579dc5 __list_add_rcu +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e776ceb filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x1e873ec2 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x1e8a161a crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x1e944ba8 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x1e9cf8a4 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ec45542 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x1ec8d1c3 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x1efb23c0 pci_iomap +EXPORT_SYMBOL vmlinux 0x1f2bf5fb __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x1f43a52a sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x1f88f8ec pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x1f9d03b6 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x1fa78f67 sk_wait_data +EXPORT_SYMBOL vmlinux 0x1fb72772 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc266ee del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x1fc67851 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1ff46c7e pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x20263857 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x2034dfb6 pci_dev_get +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x2052bf32 param_get_long +EXPORT_SYMBOL vmlinux 0x205f4d9f sclp_unregister +EXPORT_SYMBOL vmlinux 0x2062fd5f alloc_disk_node +EXPORT_SYMBOL vmlinux 0x2084cc6a ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x20973b94 segment_unload +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20ea7525 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x20ebce53 tso_build_data +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x21138c1f pci_disable_msix +EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x212bb395 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x216653aa netif_carrier_off +EXPORT_SYMBOL vmlinux 0x21697a21 iucv_message_reject +EXPORT_SYMBOL vmlinux 0x21905504 raw3270_request_free +EXPORT_SYMBOL vmlinux 0x21d3f038 netif_device_detach +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21eb5b00 sclp_cpi_set_data +EXPORT_SYMBOL vmlinux 0x21f06712 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x21f7d090 sock_no_bind +EXPORT_SYMBOL vmlinux 0x220abb23 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x2217750c dev_set_group +EXPORT_SYMBOL vmlinux 0x221f7888 single_open +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2232fcd6 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x224cb332 down +EXPORT_SYMBOL vmlinux 0x2254b948 tty_port_close +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x226b08a4 idr_is_empty +EXPORT_SYMBOL vmlinux 0x226bfa08 lwtunnel_input +EXPORT_SYMBOL vmlinux 0x22722317 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x2288e803 fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x22a50b35 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x22b47d7b blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x22b55ac0 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x22e07ac3 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x22e3fdbd pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x22ecf082 idr_remove +EXPORT_SYMBOL vmlinux 0x230086db kernel_write +EXPORT_SYMBOL vmlinux 0x231e3dbd __tracepoint_s390_cio_chsc +EXPORT_SYMBOL vmlinux 0x231efe84 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x233f7de5 nf_log_packet +EXPORT_SYMBOL vmlinux 0x2365ede7 __irq_regs +EXPORT_SYMBOL vmlinux 0x236c8c64 memcpy +EXPORT_SYMBOL vmlinux 0x2383b4b9 thaw_bdev +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23aed28f pci_request_regions +EXPORT_SYMBOL vmlinux 0x23b6079f dev_addr_init +EXPORT_SYMBOL vmlinux 0x23b884bf request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23d2db96 lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x23feada4 register_qdisc +EXPORT_SYMBOL vmlinux 0x2405bee1 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x241afd51 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x242f3562 irq_subclass_register +EXPORT_SYMBOL vmlinux 0x2436b54d tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x2438387f tccb_add_dcw +EXPORT_SYMBOL vmlinux 0x2455c156 __clear_user +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2472188e __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x24adb706 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x24ae9329 release_pages +EXPORT_SYMBOL vmlinux 0x24bffce9 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x24cfb480 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x24d69e48 try_to_release_page +EXPORT_SYMBOL vmlinux 0x24eaa38c smp_call_function_many +EXPORT_SYMBOL vmlinux 0x24efb9a3 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x24fbd9cb airq_iv_release +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x2508fa68 register_quota_format +EXPORT_SYMBOL vmlinux 0x2510157f generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x25405118 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x257433cd override_creds +EXPORT_SYMBOL vmlinux 0x257c0d0f bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25a520e7 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x25a8d34c pci_add_resource +EXPORT_SYMBOL vmlinux 0x25acf437 __krealloc +EXPORT_SYMBOL vmlinux 0x25b23687 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x25bbb059 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25ec1b28 strlen +EXPORT_SYMBOL vmlinux 0x25f483ac scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x25ffd746 task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0x260b5d15 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x262da148 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2641a1c6 diag224 +EXPORT_SYMBOL vmlinux 0x266479d4 dev_mc_add +EXPORT_SYMBOL vmlinux 0x2667783a tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x2675a359 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x267671a2 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x2697fa38 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x26a8ea27 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x26e0c435 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e2c8de nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0x26e5e3f2 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26fa50c0 complete +EXPORT_SYMBOL vmlinux 0x2702da71 simple_fill_super +EXPORT_SYMBOL vmlinux 0x2733a3e4 dma_pool_create +EXPORT_SYMBOL vmlinux 0x2737fee8 get_task_io_context +EXPORT_SYMBOL vmlinux 0x27412465 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x2749eb53 flush_signals +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x274e09ac blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x274e5b20 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x2752aa53 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x275c3bdc generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x27683bc5 tcp_prot +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x277c732c migrate_page +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27d76bdf proc_set_size +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x280627fc kill_fasync +EXPORT_SYMBOL vmlinux 0x280b3f52 mpage_readpage +EXPORT_SYMBOL vmlinux 0x280f9f14 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x28166464 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28247acc __getblk_slow +EXPORT_SYMBOL vmlinux 0x28343bad scnprintf +EXPORT_SYMBOL vmlinux 0x28624063 page_mapped +EXPORT_SYMBOL vmlinux 0x28667474 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x28988dcf xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28bbd126 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x28eeaa23 nf_log_trace +EXPORT_SYMBOL vmlinux 0x29391e7d vm_munmap +EXPORT_SYMBOL vmlinux 0x295163b7 register_cdrom +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x295bebb4 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x29789394 empty_zero_page +EXPORT_SYMBOL vmlinux 0x29835c59 xfrm_migrate +EXPORT_SYMBOL vmlinux 0x29bd0d93 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x29cc75e3 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x29ce1e1b key_reject_and_link +EXPORT_SYMBOL vmlinux 0x29e6dfa1 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x29f8fbfb neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x2a1a21b3 kernel_listen +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a4ba513 ccw_device_start_timeout +EXPORT_SYMBOL vmlinux 0x2a581f3f pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x2a5e918a pci_get_subsys +EXPORT_SYMBOL vmlinux 0x2a71d2e0 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x2a7dbf12 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x2a8a31c7 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x2ac09dd5 __nla_put +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2aee35fb gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x2b00e2b2 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x2b02e94d up_read +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b256225 init_task +EXPORT_SYMBOL vmlinux 0x2b35f2cf dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x2b56669f generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x2b8af4e7 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba4bfb0 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bb37263 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x2bbadb77 blk_run_queue +EXPORT_SYMBOL vmlinux 0x2c04a689 __tracepoint_s390_cio_hsch +EXPORT_SYMBOL vmlinux 0x2c0a2d7e __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x2c458e9c tcw_add_tidaw +EXPORT_SYMBOL vmlinux 0x2c509679 dev_open +EXPORT_SYMBOL vmlinux 0x2c515f6d drop_super +EXPORT_SYMBOL vmlinux 0x2c559e2f neigh_table_clear +EXPORT_SYMBOL vmlinux 0x2c6084c4 dev_close +EXPORT_SYMBOL vmlinux 0x2c897734 tcw_get_tsb +EXPORT_SYMBOL vmlinux 0x2ca6ffa0 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x2cc31f4c kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x2cdcf937 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x2cfd5f5f generic_write_end +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d22f2f4 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d33ccda kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x2d5528c9 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x2d57320f param_get_short +EXPORT_SYMBOL vmlinux 0x2d610264 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x2d8c2804 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x2d9925d2 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x2d9bf82b dev_driver_string +EXPORT_SYMBOL vmlinux 0x2db2d340 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x2dbb9241 ida_init +EXPORT_SYMBOL vmlinux 0x2dd188b2 blk_register_region +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2e0042c0 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on +EXPORT_SYMBOL vmlinux 0x2e4b0cc8 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x2e62cd26 generic_write_checks +EXPORT_SYMBOL vmlinux 0x2e7a878e generic_writepages +EXPORT_SYMBOL vmlinux 0x2e7de181 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x2e7e1ecd fsync_bdev +EXPORT_SYMBOL vmlinux 0x2e845643 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x2e8abdeb proc_douintvec +EXPORT_SYMBOL vmlinux 0x2eb88383 param_get_ulong +EXPORT_SYMBOL vmlinux 0x2ed31268 ccw_device_set_options_mask +EXPORT_SYMBOL vmlinux 0x2ef5661d segment_modify_shared +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2ef9fa0f vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x2efc102f tcw_set_data +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f06dda4 skb_find_text +EXPORT_SYMBOL vmlinux 0x2f073513 skb_dequeue +EXPORT_SYMBOL vmlinux 0x2f0b60d1 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x2f304e03 tso_start +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f4f48d9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x2f67c109 notify_change +EXPORT_SYMBOL vmlinux 0x2f727736 compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x2f7857c3 get_io_context +EXPORT_SYMBOL vmlinux 0x2f7f2355 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x2f8b7d64 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x2fa5a500 memcmp +EXPORT_SYMBOL vmlinux 0x2faa1b12 tty_set_operations +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fc3f809 md_reload_sb +EXPORT_SYMBOL vmlinux 0x2fcd129f file_ns_capable +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2ff03b12 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x2ff545b1 down_killable +EXPORT_SYMBOL vmlinux 0x2ffea10e vm_map_ram +EXPORT_SYMBOL vmlinux 0x2ffffb6f _ebc_tolower +EXPORT_SYMBOL vmlinux 0x3015db88 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x3021eb6a tcp_make_synack +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x3036a7c1 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3090b071 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x309548a4 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30ebb49e proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x30f1fc4e tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x30f9df54 neigh_update +EXPORT_SYMBOL vmlinux 0x31010eac __crypto_memneq +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x312fcb24 zalloc_cpumask_var_node +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x31511342 bio_map_kern +EXPORT_SYMBOL vmlinux 0x3153d7c6 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x3159427c generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x315f4ff9 hex2bin +EXPORT_SYMBOL vmlinux 0x316f8399 follow_pfn +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x31762ab3 proc_mkdir +EXPORT_SYMBOL vmlinux 0x317d77ed udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x3184e303 __free_pages +EXPORT_SYMBOL vmlinux 0x319fc9b6 simple_release_fs +EXPORT_SYMBOL vmlinux 0x31a189b4 debug_register_mode +EXPORT_SYMBOL vmlinux 0x31b1e8fa __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x31eae6cb __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x32130731 new_inode +EXPORT_SYMBOL vmlinux 0x321b982d idr_replace +EXPORT_SYMBOL vmlinux 0x321e4f95 raw3270_request_set_idal +EXPORT_SYMBOL vmlinux 0x3238a155 rename_lock +EXPORT_SYMBOL vmlinux 0x324b30a0 tty_lock +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x32597ff6 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x3275689f smp_ctl_set_bit +EXPORT_SYMBOL vmlinux 0x3276016b fence_add_callback +EXPORT_SYMBOL vmlinux 0x327f74cf dst_discard_out +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x3286f754 swake_up +EXPORT_SYMBOL vmlinux 0x32932758 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x32c28a98 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x32c50e6e __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x32c6a2d8 _ebcasc_500 +EXPORT_SYMBOL vmlinux 0x32cdfe35 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x32d05033 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x32e7d6f9 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x32f73e8b blk_execute_rq +EXPORT_SYMBOL vmlinux 0x32f9c768 unregister_external_irq +EXPORT_SYMBOL vmlinux 0x32fbdbb3 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x3311feeb igrab +EXPORT_SYMBOL vmlinux 0x333ec789 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x335ea311 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x336d583a xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x336e8bc2 seq_open_private +EXPORT_SYMBOL vmlinux 0x3372791e mapping_tagged +EXPORT_SYMBOL vmlinux 0x3378315d iov_iter_advance +EXPORT_SYMBOL vmlinux 0x3387879d scsi_remove_host +EXPORT_SYMBOL vmlinux 0x338bbef8 __ndelay +EXPORT_SYMBOL vmlinux 0x33bf749d xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33f74de3 _ascebc_500 +EXPORT_SYMBOL vmlinux 0x3405ddf0 debug_register_view +EXPORT_SYMBOL vmlinux 0x34325948 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x3437d6f3 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x34598e6a netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x346554c5 nvm_mark_blk +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x346b462e tty_unlock +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x3470d7a0 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x34729698 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x34798718 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x348542ca filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x348c6b59 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a9f1ee vm_zone_stat +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34fb3bc2 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x35075132 nvm_find_target_type +EXPORT_SYMBOL vmlinux 0x35090e72 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x352357cf inet6_add_offload +EXPORT_SYMBOL vmlinux 0x353d0264 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x3558fa24 crc32_be +EXPORT_SYMBOL vmlinux 0x358ed552 nvm_get_blk +EXPORT_SYMBOL vmlinux 0x358f2c3d xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x359b6770 inet_ioctl +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35b313a8 netif_rx +EXPORT_SYMBOL vmlinux 0x35b3c8ee __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x35ca6c21 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x3602aba9 raw3270_register_notifier +EXPORT_SYMBOL vmlinux 0x360a2666 module_layout +EXPORT_SYMBOL vmlinux 0x3615ecbd __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x361e8778 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x36370a6a frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x367e98ce skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x368f2ada alloc_cpumask_var_node +EXPORT_SYMBOL vmlinux 0x3695edda request_resource +EXPORT_SYMBOL vmlinux 0x36a9f3c7 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x36b2dc8c file_open_root +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x371667e6 set_disk_ro +EXPORT_SYMBOL vmlinux 0x3718c116 arch_lock_relax +EXPORT_SYMBOL vmlinux 0x3725893a radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x373db350 kstrtoint +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3746f4ec alloc_file +EXPORT_SYMBOL vmlinux 0x3757aae7 devm_ioremap +EXPORT_SYMBOL vmlinux 0x37613521 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x376a0b42 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x3774c96c ida_simple_remove +EXPORT_SYMBOL vmlinux 0x378afe79 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37bd2246 inet6_protos +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37ce6294 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x37f05d07 dst_destroy +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x383a2117 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x383d11d7 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b6d881 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x39111a66 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x3919d4aa sockfd_lookup +EXPORT_SYMBOL vmlinux 0x391bcc8a dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x392e7233 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x39367946 pci_save_state +EXPORT_SYMBOL vmlinux 0x393787da init_net +EXPORT_SYMBOL vmlinux 0x3943cbf5 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3950eac6 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x3957699f truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x395797ab nf_log_unregister +EXPORT_SYMBOL vmlinux 0x3958f51f ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x396c47e2 ptep_modify_prot_start +EXPORT_SYMBOL vmlinux 0x3973fd2a pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0x397e1175 neigh_table_init +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399b33e3 netdev_emerg +EXPORT_SYMBOL vmlinux 0x399d05b8 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39f98ac8 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x3a324702 debug_set_level +EXPORT_SYMBOL vmlinux 0x3a39df86 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x3a4de076 cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x3a52c8f5 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x3a6d4cf8 dev_get_flags +EXPORT_SYMBOL vmlinux 0x3a7be9da blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x3a8e08bb itcw_add_dcw +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aa11bd1 _raw_read_lock_wait +EXPORT_SYMBOL vmlinux 0x3ac8cef6 finish_no_open +EXPORT_SYMBOL vmlinux 0x3adaf0cb ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x3ae5823d sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x3b160f3f bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x3b2a43b5 param_set_int +EXPORT_SYMBOL vmlinux 0x3b3016a8 mpage_readpages +EXPORT_SYMBOL vmlinux 0x3b34001a __tracepoint_s390_cio_ssch +EXPORT_SYMBOL vmlinux 0x3b370c17 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x3b5eb504 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x3b90c108 debug_unregister +EXPORT_SYMBOL vmlinux 0x3b953a70 allocate_resource +EXPORT_SYMBOL vmlinux 0x3b9ebb0a scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x3bb751b3 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x3bd71c04 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x3bd87cbe param_set_uint +EXPORT_SYMBOL vmlinux 0x3bf0c6f4 should_remove_suid +EXPORT_SYMBOL vmlinux 0x3bfa199f pcim_enable_device +EXPORT_SYMBOL vmlinux 0x3c0b4eee __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x3c0c9b83 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x3c120335 security_path_mknod +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c297b52 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c4b92ed keyring_search +EXPORT_SYMBOL vmlinux 0x3c4eb01e md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x3c6b5a48 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x3ca2be95 fence_remove_callback +EXPORT_SYMBOL vmlinux 0x3cb3808b nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x3cb89ca3 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x3ce34ec9 generic_make_request +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3d117a60 itcw_calc_size +EXPORT_SYMBOL vmlinux 0x3d176746 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x3d1b2075 blk_rq_init +EXPORT_SYMBOL vmlinux 0x3d2e6497 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x3d46aa3e ccw_device_tm_intrg +EXPORT_SYMBOL vmlinux 0x3d4d115b seq_lseek +EXPORT_SYMBOL vmlinux 0x3dbcd893 d_rehash +EXPORT_SYMBOL vmlinux 0x3dbfe08f sock_from_file +EXPORT_SYMBOL vmlinux 0x3dc09a98 icmpv6_send +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd8beda page_get_link +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e2286cd __radix_tree_insert +EXPORT_SYMBOL vmlinux 0x3e3780b7 vfs_create +EXPORT_SYMBOL vmlinux 0x3e4b7d10 scsi_unregister +EXPORT_SYMBOL vmlinux 0x3e4e9b79 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x3e602655 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x3e627fb1 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x3e7e4f1f tcf_hash_check +EXPORT_SYMBOL vmlinux 0x3e896271 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x3e8e25b2 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e96f9a2 register_sysctl +EXPORT_SYMBOL vmlinux 0x3e98c687 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x3ea1ff69 vm_insert_page +EXPORT_SYMBOL vmlinux 0x3ebcc237 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x3ec97f3e posix_test_lock +EXPORT_SYMBOL vmlinux 0x3ed46d39 proc_set_user +EXPORT_SYMBOL vmlinux 0x3ef414a8 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x3eff0a4f grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x3f0e2189 ip_defrag +EXPORT_SYMBOL vmlinux 0x3f0fd388 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x3f18d3a4 lock_rename +EXPORT_SYMBOL vmlinux 0x3f29b083 vfs_fsync +EXPORT_SYMBOL vmlinux 0x3f2ee66f netdev_update_features +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4e4a0f sock_no_mmap +EXPORT_SYMBOL vmlinux 0x3f5c6471 del_timer_sync +EXPORT_SYMBOL vmlinux 0x3f7de4bd generic_listxattr +EXPORT_SYMBOL vmlinux 0x3f7e8cd0 dcb_setapp +EXPORT_SYMBOL vmlinux 0x3f8344e7 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x3fa913da strspn +EXPORT_SYMBOL vmlinux 0x3fb0b9e3 __udelay +EXPORT_SYMBOL vmlinux 0x3fb58b6d up +EXPORT_SYMBOL vmlinux 0x3fba08ba write_cache_pages +EXPORT_SYMBOL vmlinux 0x3fe4ff0c posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ff9b2e7 pci_bus_get +EXPORT_SYMBOL vmlinux 0x3ffff632 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x4005900b ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x4005c9fe nobh_writepage +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x408950d8 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x409da2c4 key_alloc +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a62b9f pci_scan_bus +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40c5cc44 import_single_range +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x410a9356 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x412453be __skb_get_hash +EXPORT_SYMBOL vmlinux 0x412a9ccd scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x412b3a32 sock_i_uid +EXPORT_SYMBOL vmlinux 0x413b8a29 poll_initwait +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x41505971 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x41777a2c read_code +EXPORT_SYMBOL vmlinux 0x417d2005 kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0x41823920 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x4194df13 touch_buffer +EXPORT_SYMBOL vmlinux 0x41a0e32f tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x41a68715 seq_release_private +EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x41cdb04a __check_sticky +EXPORT_SYMBOL vmlinux 0x41df696c wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x421211a4 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x42221751 sock_update_memcg +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424a992e scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x426d8259 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x427e2459 devm_iounmap +EXPORT_SYMBOL vmlinux 0x428eda5c kmem_cache_create +EXPORT_SYMBOL vmlinux 0x42b109d5 nvm_put_blk +EXPORT_SYMBOL vmlinux 0x42f8f566 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4330740f generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x4352665e sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43890c0f neigh_lookup +EXPORT_SYMBOL vmlinux 0x438fd30b scsi_dma_map +EXPORT_SYMBOL vmlinux 0x4390f7de skb_store_bits +EXPORT_SYMBOL vmlinux 0x439426d2 sock_no_accept +EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x43bdfa20 console_irq +EXPORT_SYMBOL vmlinux 0x43be14d1 memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0x43cf3bc3 dql_completed +EXPORT_SYMBOL vmlinux 0x43d57fb7 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x43d8d1f4 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x43dda013 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x43e50371 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x43f8372d bio_put +EXPORT_SYMBOL vmlinux 0x440d0ae2 pci_get_class +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x44182b5a handle_edge_irq +EXPORT_SYMBOL vmlinux 0x44272425 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x44650c45 kbd_alloc +EXPORT_SYMBOL vmlinux 0x4475a584 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x4483f8cd pci_write_vpd +EXPORT_SYMBOL vmlinux 0x44af6967 inet_add_offload +EXPORT_SYMBOL vmlinux 0x44b30fb5 csch +EXPORT_SYMBOL vmlinux 0x44b5ee9a kasprintf +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44fec0c2 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x45081953 vfs_statfs +EXPORT_SYMBOL vmlinux 0x451258ad lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x4536b63e locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457dd01f xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x45a4192e ssch +EXPORT_SYMBOL vmlinux 0x45c92313 VMALLOC_END +EXPORT_SYMBOL vmlinux 0x45d18330 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x45d3c773 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x45eea518 keyring_alloc +EXPORT_SYMBOL vmlinux 0x46013e72 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x46066e5b perf_pmu_name +EXPORT_SYMBOL vmlinux 0x4610daf2 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x4657ebaa fence_context_alloc +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x465dcf75 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x4699280b locks_init_lock +EXPORT_SYMBOL vmlinux 0x46a2e9d9 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x46b35c5c kthread_stop +EXPORT_SYMBOL vmlinux 0x46c4fb20 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x46d59f7d smp_cpu_mt_shift +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x470984ee padata_do_parallel +EXPORT_SYMBOL vmlinux 0x47392e76 sclp_ocf_cpc_name_copy +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x474462cc __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x474c125a blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x47795fad d_set_d_op +EXPORT_SYMBOL vmlinux 0x477db7fb sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x478aa906 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47a2b06c skb_seq_read +EXPORT_SYMBOL vmlinux 0x47b84c68 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x47d66e83 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x47e8979d xfrm_input +EXPORT_SYMBOL vmlinux 0x47fd8dfd device_get_mac_address +EXPORT_SYMBOL vmlinux 0x48139983 __frontswap_load +EXPORT_SYMBOL vmlinux 0x4823819e raw3270_buffer_address +EXPORT_SYMBOL vmlinux 0x483305ee __tracepoint_s390_cio_tpi +EXPORT_SYMBOL vmlinux 0x48569828 iget_failed +EXPORT_SYMBOL vmlinux 0x48d4621d elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x48f7ec3d blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x48fe0ca4 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x4907a56d wait_for_completion +EXPORT_SYMBOL vmlinux 0x491ef38b param_ops_int +EXPORT_SYMBOL vmlinux 0x4924c850 _raw_write_trylock_retry +EXPORT_SYMBOL vmlinux 0x49472fe4 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x495348e1 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x49894302 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b3facd skb_tx_error +EXPORT_SYMBOL vmlinux 0x49d2ba1f ip_do_fragment +EXPORT_SYMBOL vmlinux 0x49e4ff9b dev_get_stats +EXPORT_SYMBOL vmlinux 0x49f2b6a5 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a0cef24 cdrom_open +EXPORT_SYMBOL vmlinux 0x4a38b698 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x4a49ff59 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x4a65f0b0 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x4a8f6c42 netdev_warn +EXPORT_SYMBOL vmlinux 0x4ac6699a skb_put +EXPORT_SYMBOL vmlinux 0x4adbab6f rwsem_down_write_failed_killable +EXPORT_SYMBOL vmlinux 0x4af57d96 ether_setup +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b169881 set_security_override +EXPORT_SYMBOL vmlinux 0x4b186ae4 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x4b236da8 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x4b26f3b4 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x4b57f56d pci_iomap_range +EXPORT_SYMBOL vmlinux 0x4b5814ef kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b6beb99 udp_proc_register +EXPORT_SYMBOL vmlinux 0x4b94e21a sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x4bb701d1 pipe_unlock +EXPORT_SYMBOL vmlinux 0x4bc79030 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x4bd00746 nvm_submit_ppa_list +EXPORT_SYMBOL vmlinux 0x4bddcb1d tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x4bf2fa53 elv_register_queue +EXPORT_SYMBOL vmlinux 0x4bf88fab dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x4c4c956e nla_memcmp +EXPORT_SYMBOL vmlinux 0x4c51ec37 arp_xmit +EXPORT_SYMBOL vmlinux 0x4ca9b956 bio_add_page +EXPORT_SYMBOL vmlinux 0x4cb52831 blk_start_queue +EXPORT_SYMBOL vmlinux 0x4cc38860 console_stop +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4ce3dc77 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x4ce4310b __tracepoint_s390_cio_xsch +EXPORT_SYMBOL vmlinux 0x4d0d636d compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x4d6a8503 get_super_thawed +EXPORT_SYMBOL vmlinux 0x4d798526 noop_llseek +EXPORT_SYMBOL vmlinux 0x4d82ae07 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x4d8ad329 kernel_connect +EXPORT_SYMBOL vmlinux 0x4d8fb1fc blk_get_queue +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9a9c6f param_ops_long +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4dda726b match_strlcpy +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4dea1053 memchr +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4dfbe481 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x4e091d29 udplite_table +EXPORT_SYMBOL vmlinux 0x4e1d925d seq_puts +EXPORT_SYMBOL vmlinux 0x4e23000c sock_recvmsg +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e3f81ec complete_request_key +EXPORT_SYMBOL vmlinux 0x4e4526cc nvm_register_tgt_type +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e7b2cb8 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x4ea5f94c scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x4ebd0a43 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x4ef4f163 tccb_init +EXPORT_SYMBOL vmlinux 0x4ef95f41 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2cd1b5 __cpcmd +EXPORT_SYMBOL vmlinux 0x4f363d95 ipv4_specific +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f79dd6e nla_reserve +EXPORT_SYMBOL vmlinux 0x4fa1af2a redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x4fafc15d skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x4fbae6a6 uuid_le_to_bin +EXPORT_SYMBOL vmlinux 0x4fe6ce22 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x500b2a7d pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x502bc3ec lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x50720c5f snprintf +EXPORT_SYMBOL vmlinux 0x50734e7a blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x5077c1a7 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x5084228d dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x509d9d15 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x50afdd47 seq_printf +EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x50c68d82 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x50ec1cfd blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x5101bd20 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x510762c4 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x51097a37 textsearch_register +EXPORT_SYMBOL vmlinux 0x510c2535 xz_dec_run +EXPORT_SYMBOL vmlinux 0x510ea009 d_invalidate +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x512943dc cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x513a4bc9 ccw_device_set_options +EXPORT_SYMBOL vmlinux 0x514af24f kobject_get +EXPORT_SYMBOL vmlinux 0x515e7b29 dquot_enable +EXPORT_SYMBOL vmlinux 0x5185ee30 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x518bb9e6 diag204 +EXPORT_SYMBOL vmlinux 0x51b9c615 set_user_nice +EXPORT_SYMBOL vmlinux 0x51c1b2fb d_tmpfile +EXPORT_SYMBOL vmlinux 0x51c687c3 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x51ca46a1 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x51d2d024 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x51ef60fc bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x5246d6bd __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x5256a87e kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x527ac1a6 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x52e0dbb7 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x52f11e68 d_delete +EXPORT_SYMBOL vmlinux 0x53113352 dev_uc_init +EXPORT_SYMBOL vmlinux 0x531a5c3c dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x532dd7f5 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x533b45ba elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x533d7d2e dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x536cd555 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x537ae823 debug_raw_view +EXPORT_SYMBOL vmlinux 0x537c967c tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x537ee181 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x538559bc clocksource_unregister +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53b7f681 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x53e87d6d mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x53e95647 dm_io +EXPORT_SYMBOL vmlinux 0x53f04062 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x53f1caa7 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x540862e2 diag14 +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54466e85 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x54548aec mntput +EXPORT_SYMBOL vmlinux 0x54636b1a sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x546cf11f sock_wake_async +EXPORT_SYMBOL vmlinux 0x549a75bd netdev_all_lower_get_next +EXPORT_SYMBOL vmlinux 0x54a05169 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x54a4ea6f printk_emit +EXPORT_SYMBOL vmlinux 0x54acd6e6 abort_creds +EXPORT_SYMBOL vmlinux 0x54ae5706 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x54c6379a kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0x54d45d30 nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x54d62fb9 try_module_get +EXPORT_SYMBOL vmlinux 0x54d97af5 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x54d9f84d dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x54e0348b dev_emerg +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f46cd8 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x551c2647 rtnl_notify +EXPORT_SYMBOL vmlinux 0x552034fa dentry_open +EXPORT_SYMBOL vmlinux 0x552df34b dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x55678b4b bsearch +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x557aeb04 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x559a6318 neigh_for_each +EXPORT_SYMBOL vmlinux 0x559ded49 blk_queue_split +EXPORT_SYMBOL vmlinux 0x55a3f3e0 sclp_add_request +EXPORT_SYMBOL vmlinux 0x55aa3564 simple_dname +EXPORT_SYMBOL vmlinux 0x55eb9c2e set_groups +EXPORT_SYMBOL vmlinux 0x55f4252d submit_bio +EXPORT_SYMBOL vmlinux 0x55fbaf1d smsg_unregister_callback +EXPORT_SYMBOL vmlinux 0x560b168d diag_stat_inc +EXPORT_SYMBOL vmlinux 0x562fb909 udp_table +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x564b6e47 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x56823b54 inet_getname +EXPORT_SYMBOL vmlinux 0x56977764 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x56b4dd6f netif_napi_add +EXPORT_SYMBOL vmlinux 0x56b8025a page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56d78870 chsc +EXPORT_SYMBOL vmlinux 0x56d9d83e dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x56dad273 bio_split +EXPORT_SYMBOL vmlinux 0x56ddd9e9 fput +EXPORT_SYMBOL vmlinux 0x56eae061 skb_queue_head +EXPORT_SYMBOL vmlinux 0x57034705 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x5707ec3b kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x571d7b75 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x57253853 param_set_byte +EXPORT_SYMBOL vmlinux 0x572df8fc dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x57718b08 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x57881856 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x57a06888 poll_freewait +EXPORT_SYMBOL vmlinux 0x57a8dcc8 __do_once_done +EXPORT_SYMBOL vmlinux 0x57f29562 cad_pid +EXPORT_SYMBOL vmlinux 0x57ff3e13 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x5801f36c __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x580fb6ed blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x581293a3 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5823cdd3 completion_done +EXPORT_SYMBOL vmlinux 0x58273fcc nobh_write_end +EXPORT_SYMBOL vmlinux 0x5847b8af tcw_finalize +EXPORT_SYMBOL vmlinux 0x58530f47 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x5877abf1 revalidate_disk +EXPORT_SYMBOL vmlinux 0x5897d268 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x58b68eb5 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58cd1b54 string_escape_mem +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x59054ae5 __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x5916f6ad generic_ro_fops +EXPORT_SYMBOL vmlinux 0x593bec49 unregister_key_type +EXPORT_SYMBOL vmlinux 0x595ef3e7 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x59623072 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x596dced7 netif_skb_features +EXPORT_SYMBOL vmlinux 0x59879495 mpage_writepages +EXPORT_SYMBOL vmlinux 0x598e5095 md_cluster_mod +EXPORT_SYMBOL vmlinux 0x59a6b14a padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x59a8fecd pci_choose_state +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59b7f62e mark_page_accessed +EXPORT_SYMBOL vmlinux 0x59ca303c netdev_all_lower_get_next_rcu +EXPORT_SYMBOL vmlinux 0x59e05075 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x5a05376e xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x5a0ea66b kill_pid +EXPORT_SYMBOL vmlinux 0x5a1bdf8f ccw_device_clear +EXPORT_SYMBOL vmlinux 0x5a229b75 __devm_request_region +EXPORT_SYMBOL vmlinux 0x5a283334 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x5a30fb74 vfs_mknod +EXPORT_SYMBOL vmlinux 0x5a34a45c __kmalloc +EXPORT_SYMBOL vmlinux 0x5a5a94a6 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5a5b1931 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x5a5e7ea3 simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x5a61c223 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x5a65de46 vm_brk +EXPORT_SYMBOL vmlinux 0x5a72000f dump_skip +EXPORT_SYMBOL vmlinux 0x5a7cfcc3 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x5a881fb4 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x5a8c277b from_kprojid +EXPORT_SYMBOL vmlinux 0x5a9e99e6 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x5ac15bae kstrtou16 +EXPORT_SYMBOL vmlinux 0x5ac88d58 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x5ad1b6fa cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x5b040240 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x5b28bf5d memremap +EXPORT_SYMBOL vmlinux 0x5b33a377 __vfs_read +EXPORT_SYMBOL vmlinux 0x5b38d58e alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x5b604bd1 segment_type +EXPORT_SYMBOL vmlinux 0x5b650de2 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x5b7a93c9 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x5bae8b07 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x5bb74cfa trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x5bd49798 __tracepoint_s390_cio_csch +EXPORT_SYMBOL vmlinux 0x5bec824e security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x5c14e57a skb_checksum +EXPORT_SYMBOL vmlinux 0x5c21477f generic_delete_inode +EXPORT_SYMBOL vmlinux 0x5c4277c0 udplite_prot +EXPORT_SYMBOL vmlinux 0x5c942219 scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x5c980dfc sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x5c9a6644 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x5cae06a0 kbd_free +EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x5d11d95c trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x5d2d42fa blk_complete_request +EXPORT_SYMBOL vmlinux 0x5d2f3b00 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x5d39ea2a sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x5d4a8320 kvasprintf +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d563eb3 sock_rfree +EXPORT_SYMBOL vmlinux 0x5dbbe98e memmove +EXPORT_SYMBOL vmlinux 0x5dc0f338 diag_stat_inc_norecursion +EXPORT_SYMBOL vmlinux 0x5dc70f0a fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x5dcaec76 blk_fetch_request +EXPORT_SYMBOL vmlinux 0x5dd52914 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x5de04828 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x5de1ca19 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x5dee6530 vfs_unlink +EXPORT_SYMBOL vmlinux 0x5df6a28f inet_gro_complete +EXPORT_SYMBOL vmlinux 0x5e0d9e1e register_key_type +EXPORT_SYMBOL vmlinux 0x5e19570c blk_get_backing_dev_info +EXPORT_SYMBOL vmlinux 0x5e4beb6a __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x5e5731af tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x5e86171d raw3270_unregister_notifier +EXPORT_SYMBOL vmlinux 0x5e89b4ce dev_base_lock +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ed98f05 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x5eddb14c radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x5ee53dfd simple_transaction_set +EXPORT_SYMBOL vmlinux 0x5eead9bb nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x5ef2175f __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x5efffd12 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x5f0085bb param_ops_ulong +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f19a6f5 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x5f347727 sync_file_create +EXPORT_SYMBOL vmlinux 0x5f40a111 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x5f4b2de8 cio_irb +EXPORT_SYMBOL vmlinux 0x5f8ae947 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x5f8fe173 prepare_to_wait +EXPORT_SYMBOL vmlinux 0x5f923b57 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x5fbdce71 param_get_bool +EXPORT_SYMBOL vmlinux 0x5fd15275 kbd_keycode +EXPORT_SYMBOL vmlinux 0x5fd2298e strnstr +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5ffaf2de arch_spin_trylock_retry +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x6022fc36 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x603a7d1c setup_new_exec +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x60711e8e pci_release_region +EXPORT_SYMBOL vmlinux 0x6088d544 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60cced20 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x60d76b2c simple_setattr +EXPORT_SYMBOL vmlinux 0x60e52cdc get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x610becbf d_drop +EXPORT_SYMBOL vmlinux 0x61121d89 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x611d9616 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x6140d3f6 kbd_ioctl +EXPORT_SYMBOL vmlinux 0x614d095c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x6178a5ab inet_frag_find +EXPORT_SYMBOL vmlinux 0x617c1537 inode_init_always +EXPORT_SYMBOL vmlinux 0x617c2b9b raw3270_request_alloc +EXPORT_SYMBOL vmlinux 0x61847242 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x618bb5f6 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x6193c42d write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x61985985 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x61af9b75 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x61b07ea0 netdev_state_change +EXPORT_SYMBOL vmlinux 0x61b2caad vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61b93212 mod_virt_timer_periodic +EXPORT_SYMBOL vmlinux 0x61c49bd2 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x61c6a3c8 netif_device_attach +EXPORT_SYMBOL vmlinux 0x61c7d9ba tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x61c8d743 pci_disable_device +EXPORT_SYMBOL vmlinux 0x61d45e70 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x61f23d2b dput +EXPORT_SYMBOL vmlinux 0x61f87895 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x621f688c blk_peek_request +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x6253a9a0 dev_change_xdp_fd +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62b8f05a filp_open +EXPORT_SYMBOL vmlinux 0x62d2e803 lease_modify +EXPORT_SYMBOL vmlinux 0x6311f77b ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x631463b0 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x633fe2ea skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x634b153d blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x635197a9 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x635847d9 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x63701921 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x639d9055 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63a8c8d9 dev_mc_init +EXPORT_SYMBOL vmlinux 0x63b3714e dump_align +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63c769e8 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x63cfe8e2 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x63d89ce8 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x63d975ea dquot_destroy +EXPORT_SYMBOL vmlinux 0x63da68c3 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x645c6b12 bdgrab +EXPORT_SYMBOL vmlinux 0x645eed93 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x646f88bc copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x64707a05 proc_remove +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64b19e61 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x64b8ac4d seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x64bdc438 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x64cbf9b9 __kernel_fpu_end +EXPORT_SYMBOL vmlinux 0x64d2c118 consume_skb +EXPORT_SYMBOL vmlinux 0x64e91e30 write_inode_now +EXPORT_SYMBOL vmlinux 0x64ee77d2 param_ops_uint +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x651a4980 block_write_full_page +EXPORT_SYMBOL vmlinux 0x651c2313 crc_ccitt +EXPORT_SYMBOL vmlinux 0x652972dc eth_type_trans +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65582421 param_set_charp +EXPORT_SYMBOL vmlinux 0x655a6f50 fasync_helper +EXPORT_SYMBOL vmlinux 0x655eeccf skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x6569196a __f_setown +EXPORT_SYMBOL vmlinux 0x657e9dae dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x658d7486 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x659aa171 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x659c7126 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x65c89583 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x65ce65d4 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x65cfee6c from_kuid +EXPORT_SYMBOL vmlinux 0x65da277c pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x65daa364 tcw_set_tsb +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65de3650 user_revoke +EXPORT_SYMBOL vmlinux 0x65e75cb6 __list_del_entry +EXPORT_SYMBOL vmlinux 0x65ff22c6 nvm_get_bb_tbl +EXPORT_SYMBOL vmlinux 0x661aaa40 stop_tty +EXPORT_SYMBOL vmlinux 0x66243893 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x6655b29e prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x66696433 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x669ab706 nf_reinject +EXPORT_SYMBOL vmlinux 0x66bb6f41 vfs_read +EXPORT_SYMBOL vmlinux 0x66dfea90 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x66e3daab skb_unlink +EXPORT_SYMBOL vmlinux 0x66e69897 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x66ea34dc bio_init +EXPORT_SYMBOL vmlinux 0x66edf821 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x672144bd strlcpy +EXPORT_SYMBOL vmlinux 0x6724ddb3 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x6724e119 crc32_le +EXPORT_SYMBOL vmlinux 0x672ab7c5 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x672d034a xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x67471fba kernel_getpeername +EXPORT_SYMBOL vmlinux 0x67548a68 seqno_fence_ops +EXPORT_SYMBOL vmlinux 0x676633a6 iptun_encaps +EXPORT_SYMBOL vmlinux 0x677e4388 vm_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x67a1c346 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c2fa54 __copy_to_user +EXPORT_SYMBOL vmlinux 0x67d8041d scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x67dbcee0 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x67de62bf simple_link +EXPORT_SYMBOL vmlinux 0x67df30c6 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x67dfe8cf blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x6805ba37 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680feb53 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x68129515 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x6813a2ea blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x68394943 proc_create_data +EXPORT_SYMBOL vmlinux 0x6865fdf9 tcp_req_err +EXPORT_SYMBOL vmlinux 0x68718e3d dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x68779a30 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x68827c75 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x6888bb7c param_get_invbool +EXPORT_SYMBOL vmlinux 0x68c5a496 pci_map_rom +EXPORT_SYMBOL vmlinux 0x68d8c361 get_task_exe_file +EXPORT_SYMBOL vmlinux 0x68fd80bf dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x6913654b tcf_action_exec +EXPORT_SYMBOL vmlinux 0x691e9430 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x694af37e netif_receive_skb +EXPORT_SYMBOL vmlinux 0x69558b7f generic_block_bmap +EXPORT_SYMBOL vmlinux 0x696cba96 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x69a680f8 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x69ad7271 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x69bd24ba tcp_release_cb +EXPORT_SYMBOL vmlinux 0x69ce7721 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x69e024f7 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a2511be inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a671c1a kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x6a68ea95 register_netdev +EXPORT_SYMBOL vmlinux 0x6a7a232e __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x6abdfeed udp_sendmsg +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6af7b965 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x6b05a4c7 ccw_device_get_path_mask +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b54216a xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x6b597461 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x6b6d937d md_integrity_register +EXPORT_SYMBOL vmlinux 0x6b9123a1 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x6bb4173a scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc7c311 kmalloc_order +EXPORT_SYMBOL vmlinux 0x6bdb72f3 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6be15d2c wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x6be67c32 md_update_sb +EXPORT_SYMBOL vmlinux 0x6bf6fa21 pci_enable_msix +EXPORT_SYMBOL vmlinux 0x6bf72682 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x6c440651 init_virt_timer +EXPORT_SYMBOL vmlinux 0x6c445d91 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x6c4d7d3b scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x6c5b04fd tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x6c6db3d7 free_task +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c8265df simple_transaction_get +EXPORT_SYMBOL vmlinux 0x6c96b748 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0x6cd7e973 dquot_file_open +EXPORT_SYMBOL vmlinux 0x6cda1364 d_add_ci +EXPORT_SYMBOL vmlinux 0x6ceb7348 __scm_destroy +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d10b7f7 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x6d1ea6ec strlcat +EXPORT_SYMBOL vmlinux 0x6d2913ff __cpu_active_mask +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d29d0c1 mount_single +EXPORT_SYMBOL vmlinux 0x6d2adf71 find_lock_entry +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d45ac75 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x6d509146 tcw_get_intrg +EXPORT_SYMBOL vmlinux 0x6d6980a2 node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x6d767992 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x6d7fa7d0 set_page_dirty +EXPORT_SYMBOL vmlinux 0x6d809feb xfrm_tmpl_sort +EXPORT_SYMBOL vmlinux 0x6d8a6d98 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x6d9288d2 idr_for_each +EXPORT_SYMBOL vmlinux 0x6d9a9780 del_gendisk +EXPORT_SYMBOL vmlinux 0x6d9b2748 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x6da0ae76 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x6da43d40 ccw_device_set_online +EXPORT_SYMBOL vmlinux 0x6dc532fd blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x6dc5f870 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x6dd7203f dm_put_device +EXPORT_SYMBOL vmlinux 0x6ddd4934 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x6de098b1 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e00b8cb _ebcasc +EXPORT_SYMBOL vmlinux 0x6e08ec86 pci_irq_vector +EXPORT_SYMBOL vmlinux 0x6e1083d6 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x6e12cf16 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x6e15eb8a dump_emit +EXPORT_SYMBOL vmlinux 0x6e2887a5 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x6e30e3a3 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x6e41c11d register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x6e616627 seq_dentry +EXPORT_SYMBOL vmlinux 0x6e71c3a0 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e72de2a trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x6e820a11 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x6e828aad percpu_counter_set +EXPORT_SYMBOL vmlinux 0x6e91c099 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x6e9ad290 cpu_have_feature +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6eabe4ca __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x6ead266d dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x6eaf4afe __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x6eb9c48f tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x6ec35f32 dev_mc_del +EXPORT_SYMBOL vmlinux 0x6eca4d4f mod_timer_pending +EXPORT_SYMBOL vmlinux 0x6ed1e011 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x6efbea6a bio_endio +EXPORT_SYMBOL vmlinux 0x6f123295 qdisc_reset +EXPORT_SYMBOL vmlinux 0x6f18e341 fd_install +EXPORT_SYMBOL vmlinux 0x6f1c2e74 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x6f200b03 tcw_set_intrg +EXPORT_SYMBOL vmlinux 0x6f2016a3 debug_register +EXPORT_SYMBOL vmlinux 0x6f2baa10 skb_pad +EXPORT_SYMBOL vmlinux 0x6f33e582 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x6f3f66f5 set_nlink +EXPORT_SYMBOL vmlinux 0x6f4fcb7c bio_phys_segments +EXPORT_SYMBOL vmlinux 0x6f5ef93d memchr_inv +EXPORT_SYMBOL vmlinux 0x6f626913 mutex_lock +EXPORT_SYMBOL vmlinux 0x6f654c78 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x6f7d738d forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x6f915271 airq_iv_create +EXPORT_SYMBOL vmlinux 0x6f9bbc69 nf_log_set +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fc7e626 memzero_explicit +EXPORT_SYMBOL vmlinux 0x6fd96c34 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x6ff4f026 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x6ff710a3 __invalidate_device +EXPORT_SYMBOL vmlinux 0x6ff7ad62 init_special_inode +EXPORT_SYMBOL vmlinux 0x70081f06 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x70173cb1 request_key +EXPORT_SYMBOL vmlinux 0x70216da7 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x703bc4a9 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x7047aedd sk_stop_timer +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x70535e07 sync_filesystem +EXPORT_SYMBOL vmlinux 0x705906c0 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x707fd736 clear_nlink +EXPORT_SYMBOL vmlinux 0x708e73d3 console_start +EXPORT_SYMBOL vmlinux 0x7096f758 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x70a37b31 nf_register_hook +EXPORT_SYMBOL vmlinux 0x70acc0cc vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x70d3936c blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x70e5f5a8 pskb_extract +EXPORT_SYMBOL vmlinux 0x70e7c43d no_llseek +EXPORT_SYMBOL vmlinux 0x70f12f70 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x70f617a0 free_cpumask_var +EXPORT_SYMBOL vmlinux 0x70f64d95 eth_header_parse +EXPORT_SYMBOL vmlinux 0x7107eecf sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x7110fef1 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x711f7e57 raw3270_add_view +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7145aef0 segment_load +EXPORT_SYMBOL vmlinux 0x71600cb2 make_kuid +EXPORT_SYMBOL vmlinux 0x716e2971 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71949cc6 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x71a47f45 netdev_alert +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71ad00c2 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x71c0c3a8 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x71d86e5e class3270 +EXPORT_SYMBOL vmlinux 0x71ed2a8a __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x721b1851 skip_spaces +EXPORT_SYMBOL vmlinux 0x72273f91 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x723bd89f kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x72416d23 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x7242e96d strnchr +EXPORT_SYMBOL vmlinux 0x72436619 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x72476088 sk_stream_error +EXPORT_SYMBOL vmlinux 0x7254bc26 netdev_features_change +EXPORT_SYMBOL vmlinux 0x72577e6b get_monotonic_coarse64 +EXPORT_SYMBOL vmlinux 0x725fd887 nla_append +EXPORT_SYMBOL vmlinux 0x728b5605 node_data +EXPORT_SYMBOL vmlinux 0x728fb46c freeze_super +EXPORT_SYMBOL vmlinux 0x72c86c84 km_query +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f0049f pci_assign_resource +EXPORT_SYMBOL vmlinux 0x72f4d9d9 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x730d4e0b lg_local_lock +EXPORT_SYMBOL vmlinux 0x73112729 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x7324fdb7 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x73630a66 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x73a5110a blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x73bf20c6 _ascebc +EXPORT_SYMBOL vmlinux 0x73c89e53 filp_clone_open +EXPORT_SYMBOL vmlinux 0x73ca2680 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x73d5ceec unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x73dfc703 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x73e5b03d param_set_bool +EXPORT_SYMBOL vmlinux 0x73ee8b48 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x74188f3c put_io_context +EXPORT_SYMBOL vmlinux 0x741a3fd1 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x741f70a9 debug_stop_all +EXPORT_SYMBOL vmlinux 0x742fa835 register_shrinker +EXPORT_SYMBOL vmlinux 0x7431901b set_wb_congested +EXPORT_SYMBOL vmlinux 0x74706598 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x749883f1 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x74996155 load_nls +EXPORT_SYMBOL vmlinux 0x749ae897 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x74a55f6b inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x74aa5826 lookup_bdev +EXPORT_SYMBOL vmlinux 0x74b4302a tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x74bbe42e scsi_scan_host +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74d47264 lwtunnel_output +EXPORT_SYMBOL vmlinux 0x74db0f27 blk_init_tags +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74f530a7 prepare_creds +EXPORT_SYMBOL vmlinux 0x750d4f68 sock_edemux +EXPORT_SYMBOL vmlinux 0x752d5f5b kstrtobool +EXPORT_SYMBOL vmlinux 0x7530c55c md_check_recovery +EXPORT_SYMBOL vmlinux 0x7533ab3f tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x756444c8 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x75811312 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x758fdcf1 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x75b63dfe __seq_open_private +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75c48d2a gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x75db3345 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x76012bf9 get_acl +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760dd69c blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x76140c18 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x767113fb dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x7684357b param_get_byte +EXPORT_SYMBOL vmlinux 0x768d87af dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x7697cd28 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x7699b4ba fget_raw +EXPORT_SYMBOL vmlinux 0x769a239b noop_qdisc +EXPORT_SYMBOL vmlinux 0x76a36f61 pci_match_id +EXPORT_SYMBOL vmlinux 0x76c932c2 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x7707f02e blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x775443d1 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x7773c3f2 proc_symlink +EXPORT_SYMBOL vmlinux 0x777d9f5f udp_ioctl +EXPORT_SYMBOL vmlinux 0x7797ce63 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x77ad841b simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c05fb1 skb_copy +EXPORT_SYMBOL vmlinux 0x77c799b7 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x77d75c26 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x77df5d25 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x77e75a74 udp_set_csum +EXPORT_SYMBOL vmlinux 0x77f8fb7a netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x7803dffc __wake_up +EXPORT_SYMBOL vmlinux 0x7822ed45 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x7828c312 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x782acba5 crc_t10dif +EXPORT_SYMBOL vmlinux 0x7830c0db __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x78465fc2 posix_acl_init +EXPORT_SYMBOL vmlinux 0x7864414c add_virt_timer_periodic +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x788dc165 sg_miter_next +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78ae39d0 bio_copy_data +EXPORT_SYMBOL vmlinux 0x78afea1d ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x78c230a4 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x78d7961a neigh_app_ns +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e25a55 inet6_getname +EXPORT_SYMBOL vmlinux 0x78e29090 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x78e4aedf genl_notify +EXPORT_SYMBOL vmlinux 0x78f85434 param_set_ulong +EXPORT_SYMBOL vmlinux 0x790d079d unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x791ae152 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x79290682 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x792db520 dst_init +EXPORT_SYMBOL vmlinux 0x792e0d45 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x79345fd9 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x79558825 iterate_dir +EXPORT_SYMBOL vmlinux 0x795be331 simple_lookup +EXPORT_SYMBOL vmlinux 0x796b6772 locks_free_lock +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79b62961 mod_virt_timer +EXPORT_SYMBOL vmlinux 0x79bab64a zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x79f3d7e0 generic_permission +EXPORT_SYMBOL vmlinux 0x7a032ae8 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x7a16ef5f __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a7556b6 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x7a789426 __bforget +EXPORT_SYMBOL vmlinux 0x7a832eea blk_start_request +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ae163a4 bio_reset +EXPORT_SYMBOL vmlinux 0x7ae73de1 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x7b05d064 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b5a7137 strncat +EXPORT_SYMBOL vmlinux 0x7b638328 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x7b6a7878 simple_unlink +EXPORT_SYMBOL vmlinux 0x7b7422f4 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x7b8170c7 pci_bus_type +EXPORT_SYMBOL vmlinux 0x7b83c741 tty_devnum +EXPORT_SYMBOL vmlinux 0x7b8f4c40 key_create_or_update +EXPORT_SYMBOL vmlinux 0x7b9aebb9 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x7ba95fe8 scsi_host_get +EXPORT_SYMBOL vmlinux 0x7bc2d1a9 security_path_unlink +EXPORT_SYMBOL vmlinux 0x7bc55025 md_done_sync +EXPORT_SYMBOL vmlinux 0x7bdd3d12 dev_notice +EXPORT_SYMBOL vmlinux 0x7bf1e0b7 scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c2b0576 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x7c30e99d __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x7c3d4326 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x7c5d4a3a sclp_reactivate +EXPORT_SYMBOL vmlinux 0x7c67873f skb_free_datagram +EXPORT_SYMBOL vmlinux 0x7c7362ad tcw_get_data +EXPORT_SYMBOL vmlinux 0x7c7c02ac find_get_entries_tag +EXPORT_SYMBOL vmlinux 0x7c815a11 put_cmsg +EXPORT_SYMBOL vmlinux 0x7c8e7fec down_interruptible +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb34e23 kobject_del +EXPORT_SYMBOL vmlinux 0x7cbea1a1 inode_init_owner +EXPORT_SYMBOL vmlinux 0x7cc2a527 drop_nlink +EXPORT_SYMBOL vmlinux 0x7cc79179 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x7cca7649 block_write_end +EXPORT_SYMBOL vmlinux 0x7cd81bdd remap_pfn_range +EXPORT_SYMBOL vmlinux 0x7cddabb2 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ceba200 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x7cf923bc key_revoke +EXPORT_SYMBOL vmlinux 0x7cff93ea wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d37f628 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x7d3995aa tty_register_device +EXPORT_SYMBOL vmlinux 0x7d509ca6 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d78072a __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x7d7fa13b unregister_console +EXPORT_SYMBOL vmlinux 0x7d87a4d7 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0x7d92b7cd ping_prot +EXPORT_SYMBOL vmlinux 0x7d96510a elv_add_request +EXPORT_SYMBOL vmlinux 0x7d9d9193 nf_log_register +EXPORT_SYMBOL vmlinux 0x7da8dfe1 iucv_if +EXPORT_SYMBOL vmlinux 0x7dbb3121 unlock_buffer +EXPORT_SYMBOL vmlinux 0x7dc2bccf __get_user_pages +EXPORT_SYMBOL vmlinux 0x7dde2f76 send_sig +EXPORT_SYMBOL vmlinux 0x7de006c3 simple_get_link +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7dfe78eb padata_stop +EXPORT_SYMBOL vmlinux 0x7e381a6e dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x7e3f01ea from_kgid_munged +EXPORT_SYMBOL vmlinux 0x7e786859 dquot_resume +EXPORT_SYMBOL vmlinux 0x7e86f181 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x7e89806d eth_validate_addr +EXPORT_SYMBOL vmlinux 0x7e8da024 audit_log_start +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ee90782 d_instantiate +EXPORT_SYMBOL vmlinux 0x7ee9eba3 iucv_register +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f24c843 audit_log_task_info +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7f27d14e __kfree_skb +EXPORT_SYMBOL vmlinux 0x7f324f4d try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7f38db64 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x7f39a871 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x7f3df5ab ___pskb_trim +EXPORT_SYMBOL vmlinux 0x7f3ff686 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x7f59a78b eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f8398bf sock_register +EXPORT_SYMBOL vmlinux 0x7f8b53d0 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x7f985ea6 raw3270_request_add_data +EXPORT_SYMBOL vmlinux 0x7f98b438 touch_atime +EXPORT_SYMBOL vmlinux 0x7fac1d6f down_read_trylock +EXPORT_SYMBOL vmlinux 0x7fae4d22 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fec3f6b gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x80096259 fence_free +EXPORT_SYMBOL vmlinux 0x800fb92b full_name_hash +EXPORT_SYMBOL vmlinux 0x80178b4f eth_header_cache +EXPORT_SYMBOL vmlinux 0x80440711 simple_empty +EXPORT_SYMBOL vmlinux 0x8046c14e pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x805485ab __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x805bdda9 bh_submit_read +EXPORT_SYMBOL vmlinux 0x806495c6 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x807c383a dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x808f48a7 mount_pseudo +EXPORT_SYMBOL vmlinux 0x809362a9 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x80a26a95 tcp_proc_register +EXPORT_SYMBOL vmlinux 0x80a663da __break_lease +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d43432 md_error +EXPORT_SYMBOL vmlinux 0x80ef46e1 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x80f3f82e neigh_destroy +EXPORT_SYMBOL vmlinux 0x810519fd hashlen_string +EXPORT_SYMBOL vmlinux 0x8128c039 smsg_register_callback +EXPORT_SYMBOL vmlinux 0x8138f668 set_device_ro +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x81734d95 pci_select_bars +EXPORT_SYMBOL vmlinux 0x81ac846c remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x81b50c9f pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x81d35bfe tcw_get_tccb +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81f02b17 udp_seq_open +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x8243a904 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x824519f1 finish_wait +EXPORT_SYMBOL vmlinux 0x825370a9 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x8269bdb3 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x82798fbc tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x8297d2d2 cont_write_begin +EXPORT_SYMBOL vmlinux 0x82a6b1e7 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x82bb4852 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x82c8f8a2 brioctl_set +EXPORT_SYMBOL vmlinux 0x82d793d8 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x82dd9d61 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x82fb54a6 key_put +EXPORT_SYMBOL vmlinux 0x831b8434 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x832f30d8 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x833f66ca nmi_panic +EXPORT_SYMBOL vmlinux 0x834690ef key_unlink +EXPORT_SYMBOL vmlinux 0x838e5766 file_update_time +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83be2c37 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x83bfce7c raw3270_start_locked +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83d1f448 debug_sprintf_view +EXPORT_SYMBOL vmlinux 0x83d88adc sock_setsockopt +EXPORT_SYMBOL vmlinux 0x83ebeb12 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x83f874f1 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x841aba48 filp_close +EXPORT_SYMBOL vmlinux 0x841e82ca pid_task +EXPORT_SYMBOL vmlinux 0x843fc757 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x845002fd km_report +EXPORT_SYMBOL vmlinux 0x84733f0d sg_miter_stop +EXPORT_SYMBOL vmlinux 0x84757455 sk_capable +EXPORT_SYMBOL vmlinux 0x847765e9 __crc32c_le +EXPORT_SYMBOL vmlinux 0x84a3df26 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x84b4acde tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x84c02bf0 inet_offloads +EXPORT_SYMBOL vmlinux 0x84cf4af4 follow_down_one +EXPORT_SYMBOL vmlinux 0x84d98e20 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x84e077c2 dump_page +EXPORT_SYMBOL vmlinux 0x84f8f882 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x84ff85cd __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x851015ca vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x85212edd debug_exception_common +EXPORT_SYMBOL vmlinux 0x8545e71e __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x854a5d78 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x8565c1d1 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x8569cb3a ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x85794a6f from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x85825898 add_timer +EXPORT_SYMBOL vmlinux 0x8594641c __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x85abc85f strncmp +EXPORT_SYMBOL vmlinux 0x85ae2b53 simple_write_end +EXPORT_SYMBOL vmlinux 0x85b2fc1c prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85fa4397 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x862de967 get_disk +EXPORT_SYMBOL vmlinux 0x8646b8fe udp_prot +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x866e2e6f neigh_direct_output +EXPORT_SYMBOL vmlinux 0x867e4ec8 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x8698ffe7 seq_escape +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86b46703 alloc_pages_current +EXPORT_SYMBOL vmlinux 0x86b87837 free_user_ns +EXPORT_SYMBOL vmlinux 0x86b96ca8 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x86cace71 kobject_set_name +EXPORT_SYMBOL vmlinux 0x86edd1dd seq_open +EXPORT_SYMBOL vmlinux 0x86f45369 cpumask_any_but +EXPORT_SYMBOL vmlinux 0x86fa5488 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x86fe6830 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x8713ecff nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x872263ad unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x87351f55 compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0x8735ac99 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x873bdedb blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x87636dd9 tcw_set_tccb +EXPORT_SYMBOL vmlinux 0x87732beb udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x87896579 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x879dde92 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x87cfb767 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x87e7fb46 thaw_super +EXPORT_SYMBOL vmlinux 0x87e8896b simple_pin_fs +EXPORT_SYMBOL vmlinux 0x87edc7a6 blk_put_request +EXPORT_SYMBOL vmlinux 0x880ce534 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x88146973 idr_destroy +EXPORT_SYMBOL vmlinux 0x882cf84e misc_register +EXPORT_SYMBOL vmlinux 0x8833bc7e __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x883ea82b inet_register_protosw +EXPORT_SYMBOL vmlinux 0x885b9043 bioset_free +EXPORT_SYMBOL vmlinux 0x887e2832 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x88930140 raw3270_start +EXPORT_SYMBOL vmlinux 0x88abe49f __ip_dev_find +EXPORT_SYMBOL vmlinux 0x88cea752 node_states +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88eaace8 nvm_submit_io +EXPORT_SYMBOL vmlinux 0x88fc6022 lg_local_unlock +EXPORT_SYMBOL vmlinux 0x8906a95a scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x890d69f6 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x8914a35f xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x8914abe8 _raw_read_trylock_retry +EXPORT_SYMBOL vmlinux 0x8914dc0a __tracepoint_s390_cio_tsch +EXPORT_SYMBOL vmlinux 0x89354cfd tty_unthrottle +EXPORT_SYMBOL vmlinux 0x8938866f key_task_permission +EXPORT_SYMBOL vmlinux 0x897c0291 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x8980fb4d tty_hangup +EXPORT_SYMBOL vmlinux 0x8997391f xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x89974876 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x899a0796 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x899ad66a nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x89a65734 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89bd1f09 d_genocide +EXPORT_SYMBOL vmlinux 0x89d5cd01 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x89fcc950 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x89ff68fa ida_pre_get +EXPORT_SYMBOL vmlinux 0x8a088ae6 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a39b38d remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x8a48ff97 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a655d5f tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a875627 pci_request_region +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9aa66d __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x8a9b2d7a inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x8ac3f83f bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x8ad30a1f pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x8ad4b94c sock_sendmsg +EXPORT_SYMBOL vmlinux 0x8ad52eed ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x8ad77f79 cdev_add +EXPORT_SYMBOL vmlinux 0x8ae99469 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0x8aee47fa bdi_register +EXPORT_SYMBOL vmlinux 0x8af52564 pci_dev_put +EXPORT_SYMBOL vmlinux 0x8af77810 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x8afaebe7 nla_put +EXPORT_SYMBOL vmlinux 0x8b0d7fa4 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x8b1344fa udp6_csum_init +EXPORT_SYMBOL vmlinux 0x8b16de08 inet_put_port +EXPORT_SYMBOL vmlinux 0x8b234e34 key_type_keyring +EXPORT_SYMBOL vmlinux 0x8b23f416 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x8b27088c page_symlink +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b63a667 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x8b7246c9 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x8b77c06b kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0x8b7fe311 kmemdup +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b8f067a fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x8b957622 add_virt_timer +EXPORT_SYMBOL vmlinux 0x8bb06101 inet_sendpage +EXPORT_SYMBOL vmlinux 0x8bc78b78 generic_removexattr +EXPORT_SYMBOL vmlinux 0x8bd34e23 __blk_end_request +EXPORT_SYMBOL vmlinux 0x8bd6734a inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x8c51783c kill_anon_super +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c70c297 page_readlink +EXPORT_SYMBOL vmlinux 0x8c71d8ea blk_finish_request +EXPORT_SYMBOL vmlinux 0x8c85bcd8 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x8c8e41f4 arp_tbl +EXPORT_SYMBOL vmlinux 0x8c957a3a iov_iter_npages +EXPORT_SYMBOL vmlinux 0x8c9b99cf param_ops_string +EXPORT_SYMBOL vmlinux 0x8ca9aeff pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x8cf9ca0a irq_set_chip +EXPORT_SYMBOL vmlinux 0x8d15114a __release_region +EXPORT_SYMBOL vmlinux 0x8d16cbd2 vmap +EXPORT_SYMBOL vmlinux 0x8d4e3a3e seq_putc +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d5811f8 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d8f65c7 ccw_device_get_mdc +EXPORT_SYMBOL vmlinux 0x8d99b1a6 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x8da6ec37 ptep_xchg_lazy +EXPORT_SYMBOL vmlinux 0x8db316db pci_platform_rom +EXPORT_SYMBOL vmlinux 0x8dc8c3e9 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x8dd69c5c __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x8e08b7c3 set_posix_acl +EXPORT_SYMBOL vmlinux 0x8e318d4f pci_get_slot +EXPORT_SYMBOL vmlinux 0x8e60f8a0 km_is_alive +EXPORT_SYMBOL vmlinux 0x8e646548 sk_free +EXPORT_SYMBOL vmlinux 0x8e6d0df0 mount_bdev +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e813b12 posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x8e879bb7 __vmalloc +EXPORT_SYMBOL vmlinux 0x8eb49e7c call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x8ec980c9 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x8ef9a6f0 generic_update_time +EXPORT_SYMBOL vmlinux 0x8efd1e35 dq_data_lock +EXPORT_SYMBOL vmlinux 0x8f4ea14e __sb_start_write +EXPORT_SYMBOL vmlinux 0x8f612607 bdevname +EXPORT_SYMBOL vmlinux 0x8f6f6b4c param_ops_charp +EXPORT_SYMBOL vmlinux 0x8fac5276 kill_litter_super +EXPORT_SYMBOL vmlinux 0x8fc7f129 generic_getxattr +EXPORT_SYMBOL vmlinux 0x8fd3dcc9 dup_iter +EXPORT_SYMBOL vmlinux 0x8fdf772a init_timer_key +EXPORT_SYMBOL vmlinux 0x8ff4284d bdi_register_owner +EXPORT_SYMBOL vmlinux 0x907afec4 dqget +EXPORT_SYMBOL vmlinux 0x910f70a8 iucv_bus +EXPORT_SYMBOL vmlinux 0x9116b417 save_fpu_regs +EXPORT_SYMBOL vmlinux 0x913f5b29 param_get_ushort +EXPORT_SYMBOL vmlinux 0x914affb0 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x91568ec5 xfrm_migrate_state_find +EXPORT_SYMBOL vmlinux 0x91680ab0 dquot_transfer +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x91776316 strscpy +EXPORT_SYMBOL vmlinux 0x91926cba nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x91b8b509 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x91e34fb5 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x91f43d3f elevator_init +EXPORT_SYMBOL vmlinux 0x91f5619d vfs_getattr +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x9214ccb3 scsi_add_device +EXPORT_SYMBOL vmlinux 0x9218cff1 adjust_resource +EXPORT_SYMBOL vmlinux 0x9226f414 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x9230434a kern_path +EXPORT_SYMBOL vmlinux 0x92392cd9 iov_shorten +EXPORT_SYMBOL vmlinux 0x92421f3b inet_gso_segment +EXPORT_SYMBOL vmlinux 0x92436eb6 md_write_end +EXPORT_SYMBOL vmlinux 0x927fa370 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x92b56b34 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x92ba5d06 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x92fe6ff2 lg_global_lock +EXPORT_SYMBOL vmlinux 0x934d543c __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x9359cf8a zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x93689931 netlink_capable +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x9378d13d rps_needed +EXPORT_SYMBOL vmlinux 0x9393aa2f inet_frags_init +EXPORT_SYMBOL vmlinux 0x93a22176 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x93ac48c9 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x93b1a7ea add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x93b205e6 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93b5a0c7 __inet_hash +EXPORT_SYMBOL vmlinux 0x93d4f20e scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x93e53989 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x93e9d3b4 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x944ffbc8 param_get_int +EXPORT_SYMBOL vmlinux 0x945775a5 segment_save +EXPORT_SYMBOL vmlinux 0x94774d56 dquot_get_state +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x949806c5 start_tty +EXPORT_SYMBOL vmlinux 0x9498f9c4 inode_change_ok +EXPORT_SYMBOL vmlinux 0x949ef090 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x94c814c3 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x94e462d7 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x95219742 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x95248432 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x95260c62 dquot_disable +EXPORT_SYMBOL vmlinux 0x95303b3a kbd_ascebc +EXPORT_SYMBOL vmlinux 0x9543d9c1 send_sig_info +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x954786db dev_alert +EXPORT_SYMBOL vmlinux 0x9551f4a8 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x957b5054 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x9593d613 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x95ceb864 key_update +EXPORT_SYMBOL vmlinux 0x95d04d9b invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x95f944ab tcp_sendpage +EXPORT_SYMBOL vmlinux 0x96404e39 itcw_set_data +EXPORT_SYMBOL vmlinux 0x96656e97 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x9669ecc8 monotonic_clock +EXPORT_SYMBOL vmlinux 0x96827770 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x968cd909 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x969c1aa1 __page_symlink +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x973aa26d dquot_alloc +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x975f67e7 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x976cb77c fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x97b035cc seq_pad +EXPORT_SYMBOL vmlinux 0x97c98927 generic_show_options +EXPORT_SYMBOL vmlinux 0x97d3e1ca force_sig +EXPORT_SYMBOL vmlinux 0x97d6c942 kernel_accept +EXPORT_SYMBOL vmlinux 0x97f18b46 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x980d48ba km_migrate +EXPORT_SYMBOL vmlinux 0x9831e9e4 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x983621d8 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x98536c87 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x985ba02f seq_vprintf +EXPORT_SYMBOL vmlinux 0x987a4e5f textsearch_destroy +EXPORT_SYMBOL vmlinux 0x989040c2 sock_i_ino +EXPORT_SYMBOL vmlinux 0x98d74ace pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x98ec789f scm_fp_dup +EXPORT_SYMBOL vmlinux 0x98f069f1 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x99413c5e dev_add_offload +EXPORT_SYMBOL vmlinux 0x9942ec77 itcw_finalize +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x995337f7 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x99541d54 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x99671c65 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x996bdb64 _kstrtoul +EXPORT_SYMBOL vmlinux 0x9976fdd2 dev_uc_del +EXPORT_SYMBOL vmlinux 0x997823ae register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x998b1098 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x99917024 account_page_redirty +EXPORT_SYMBOL vmlinux 0x999986eb tty_port_init +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99b16f8c release_resource +EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size +EXPORT_SYMBOL vmlinux 0x99d8b20a kmalloc_caches +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x9a0b96b4 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x9a0b9d87 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a2625d1 set_cached_acl +EXPORT_SYMBOL vmlinux 0x9a2e9834 down_write +EXPORT_SYMBOL vmlinux 0x9a3c0e2e neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x9a3cb969 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x9a3fa947 simple_open +EXPORT_SYMBOL vmlinux 0x9a51df8d dst_alloc +EXPORT_SYMBOL vmlinux 0x9a5a8177 param_set_ullong +EXPORT_SYMBOL vmlinux 0x9a74cc6f dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x9a801290 ccw_device_get_id +EXPORT_SYMBOL vmlinux 0x9a906daf memscan +EXPORT_SYMBOL vmlinux 0x9aa71fcf pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x9ab095c5 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x9ace92a1 iterate_fd +EXPORT_SYMBOL vmlinux 0x9b11803c inetdev_by_index +EXPORT_SYMBOL vmlinux 0x9b1a510d __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x9b31cd38 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b3adb48 __pagevec_release +EXPORT_SYMBOL vmlinux 0x9b3af3e9 generic_setlease +EXPORT_SYMBOL vmlinux 0x9b468210 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x9b8d07aa strnlen +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9ba8b491 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9bea6e0c ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x9bef7463 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x9c1c5804 napi_get_frags +EXPORT_SYMBOL vmlinux 0x9c1c9288 default_llseek +EXPORT_SYMBOL vmlinux 0x9c32bec9 iucv_unregister +EXPORT_SYMBOL vmlinux 0x9c3b4b69 PDE_DATA +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c53149b tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x9c5edd85 may_umount_tree +EXPORT_SYMBOL vmlinux 0x9c7ea758 dql_init +EXPORT_SYMBOL vmlinux 0x9ca2c2dd ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x9ca95a0e sort +EXPORT_SYMBOL vmlinux 0x9cc268d4 raw3270_wait_queue +EXPORT_SYMBOL vmlinux 0x9cd257f6 flow_cache_init +EXPORT_SYMBOL vmlinux 0x9cf22234 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d2b29ae vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x9d378f70 queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x9d66e0a4 netdev_err +EXPORT_SYMBOL vmlinux 0x9d840776 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x9dd2b72f build_skb +EXPORT_SYMBOL vmlinux 0x9de59966 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x9def485c __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x9e0068ab s390_epoch_delta_notifier +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e219c6c dm_put_table_device +EXPORT_SYMBOL vmlinux 0x9e24b983 d_make_root +EXPORT_SYMBOL vmlinux 0x9e3fd97f bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e4ff1a8 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x9e5baf9c ccw_device_clear_options +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e8a5082 lookup_one_len +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ec98ca8 vm_node_stat +EXPORT_SYMBOL vmlinux 0x9ec9b096 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x9ed2d311 ns_capable +EXPORT_SYMBOL vmlinux 0x9ee82cd6 uuid_be_index +EXPORT_SYMBOL vmlinux 0x9f25636d nvm_end_io +EXPORT_SYMBOL vmlinux 0x9f2fa5a8 set_guest_storage_key +EXPORT_SYMBOL vmlinux 0x9f33d03a get_guest_storage_key +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f5fc7c8 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fb6bcc5 fence_default_wait +EXPORT_SYMBOL vmlinux 0x9fd7c2a2 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9ff185fb udp_gro_complete +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa0305fd9 block_read_full_page +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa097c290 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0d3d560 ksize +EXPORT_SYMBOL vmlinux 0xa0d8cd89 module_put +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e5a329 free_buffer_head +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0xa100bdf7 mempool_alloc +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa10f134c nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa12e6034 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xa13be7ff tty_name +EXPORT_SYMBOL vmlinux 0xa13ead5b xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts +EXPORT_SYMBOL vmlinux 0xa154e6f8 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xa15b7b01 dm_register_target +EXPORT_SYMBOL vmlinux 0xa171748f pci_set_mwi +EXPORT_SYMBOL vmlinux 0xa1a5b499 unlock_rename +EXPORT_SYMBOL vmlinux 0xa1abf499 path_get +EXPORT_SYMBOL vmlinux 0xa1b500cc netdev_printk +EXPORT_SYMBOL vmlinux 0xa1b9bc5f make_kprojid +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1cb2fcb xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xa1d1066e wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xa1d5979b find_first_bit_inv +EXPORT_SYMBOL vmlinux 0xa1ec8f1c __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa1eca021 __netif_schedule +EXPORT_SYMBOL vmlinux 0xa1f365d7 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa20da66f kfree_skb +EXPORT_SYMBOL vmlinux 0xa214576a sock_release +EXPORT_SYMBOL vmlinux 0xa218a5ae dev_change_carrier +EXPORT_SYMBOL vmlinux 0xa25739a7 blk_sync_queue +EXPORT_SYMBOL vmlinux 0xa25d1f31 reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa288c353 tcp_poll +EXPORT_SYMBOL vmlinux 0xa2b8a607 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xa310a706 __iucv_message_receive +EXPORT_SYMBOL vmlinux 0xa31b3a64 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xa31f257b inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xa33f7c7c nla_strlcpy +EXPORT_SYMBOL vmlinux 0xa34cf239 blk_start_queue_async +EXPORT_SYMBOL vmlinux 0xa3631ca0 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0xa363a3df remove_proc_entry +EXPORT_SYMBOL vmlinux 0xa3712bba remove_arg_zero +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa37f558a keyring_clear +EXPORT_SYMBOL vmlinux 0xa3b87cf0 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xa3c8da0b tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xa3da65cc swake_up_locked +EXPORT_SYMBOL vmlinux 0xa40f3e44 open_exec +EXPORT_SYMBOL vmlinux 0xa418d617 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xa44b520a __scsi_format_command +EXPORT_SYMBOL vmlinux 0xa44beabd copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xa45f6e69 param_ops_byte +EXPORT_SYMBOL vmlinux 0xa46f2f1b kstrtouint +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa47c0505 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xa4811740 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xa485743f scsi_device_get +EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le +EXPORT_SYMBOL vmlinux 0xa4afc3a2 tty_port_open +EXPORT_SYMBOL vmlinux 0xa4b22444 km_policy_expired +EXPORT_SYMBOL vmlinux 0xa4ec960a dquot_quota_off +EXPORT_SYMBOL vmlinux 0xa4ec9bec register_service_level +EXPORT_SYMBOL vmlinux 0xa4f2f27f skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xa4f55075 iucv_message_send +EXPORT_SYMBOL vmlinux 0xa51822c8 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0xa51a6f4f __frontswap_store +EXPORT_SYMBOL vmlinux 0xa51a93bf bdev_stack_limits +EXPORT_SYMBOL vmlinux 0xa52b2189 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xa52bea4c empty_aops +EXPORT_SYMBOL vmlinux 0xa52f3085 end_page_writeback +EXPORT_SYMBOL vmlinux 0xa54491b1 __napi_schedule +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5531059 dst_release +EXPORT_SYMBOL vmlinux 0xa5557dd4 d_add +EXPORT_SYMBOL vmlinux 0xa5588894 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xa55e7d19 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xa55f154b __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xa5656bb6 blk_init_queue +EXPORT_SYMBOL vmlinux 0xa57666b5 xfrm_state_migrate +EXPORT_SYMBOL vmlinux 0xa57c3f76 napi_complete_done +EXPORT_SYMBOL vmlinux 0xa58112b2 __sock_create +EXPORT_SYMBOL vmlinux 0xa595f30e key_link +EXPORT_SYMBOL vmlinux 0xa59cb687 iucv_path_quiesce +EXPORT_SYMBOL vmlinux 0xa5bafede scsi_print_result +EXPORT_SYMBOL vmlinux 0xa5fb78c0 param_get_uint +EXPORT_SYMBOL vmlinux 0xa61be760 blk_end_request_all +EXPORT_SYMBOL vmlinux 0xa624c79a set_blocksize +EXPORT_SYMBOL vmlinux 0xa6291934 bio_integrity_free +EXPORT_SYMBOL vmlinux 0xa62cb124 make_bad_inode +EXPORT_SYMBOL vmlinux 0xa665611a blk_free_tags +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6919e87 __getblk_gfp +EXPORT_SYMBOL vmlinux 0xa6f98990 sk_dst_check +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa7075c11 may_umount +EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa73755fb dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xa74b1403 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xa7566ef1 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xa7713109 __register_binfmt +EXPORT_SYMBOL vmlinux 0xa7904be1 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xa79307c6 request_firmware +EXPORT_SYMBOL vmlinux 0xa7f1921c ccw_device_tm_start_key +EXPORT_SYMBOL vmlinux 0xa8000208 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xa826e250 sock_wfree +EXPORT_SYMBOL vmlinux 0xa8281880 tty_throttle +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa84655bd sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xa8556174 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0xa8631396 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa87eee44 dev_mc_sync +EXPORT_SYMBOL vmlinux 0xa8949305 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xa89a6d64 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xa89f26c2 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xa929e0a9 eth_gro_complete +EXPORT_SYMBOL vmlinux 0xa93f5d17 ida_remove +EXPORT_SYMBOL vmlinux 0xa93f8612 ccw_device_tm_start_timeout +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa98740a1 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0xa98a09be vfs_whiteout +EXPORT_SYMBOL vmlinux 0xa9af1600 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xa9b8f8f6 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xa9c4b037 seq_write +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9e7ef72 blkdev_get +EXPORT_SYMBOL vmlinux 0xa9ecd25a dcache_readdir +EXPORT_SYMBOL vmlinux 0xa9f5f724 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xa9fe4b91 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xaa118708 get_gendisk +EXPORT_SYMBOL vmlinux 0xaa1c7c4a cdev_alloc +EXPORT_SYMBOL vmlinux 0xaa363eff blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xaa432733 import_iovec +EXPORT_SYMBOL vmlinux 0xaa8368d0 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xaa872793 free_netdev +EXPORT_SYMBOL vmlinux 0xaa8bb0cf follow_up +EXPORT_SYMBOL vmlinux 0xaabe6704 airq_iv_free +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaaddfae4 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xaae63580 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab14d2dd sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xab264fde chacha20_block +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3fc8c2 pci_enable_device +EXPORT_SYMBOL vmlinux 0xab594875 sk_busy_loop +EXPORT_SYMBOL vmlinux 0xab67aea5 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xab6bb008 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab92646a generic_read_dir +EXPORT_SYMBOL vmlinux 0xaba90a91 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xabb5c3ab ip_setsockopt +EXPORT_SYMBOL vmlinux 0xabb9ef1d __blk_run_queue +EXPORT_SYMBOL vmlinux 0xabc8f331 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabcc9192 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xabe8cfe3 blkdev_put +EXPORT_SYMBOL vmlinux 0xac00cdb6 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac23e398 inode_init_once +EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac3ad14d skb_trim +EXPORT_SYMBOL vmlinux 0xac4643a6 raw3270_find_view +EXPORT_SYMBOL vmlinux 0xac5a3c5d blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0xac86f3dd bdi_destroy +EXPORT_SYMBOL vmlinux 0xac9bfc3f __scm_send +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacbcd5eb dquot_acquire +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xace26f83 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad0de9a5 iget_locked +EXPORT_SYMBOL vmlinux 0xad30cc00 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xad4aee39 strncpy +EXPORT_SYMBOL vmlinux 0xad54ff6a __mutex_init +EXPORT_SYMBOL vmlinux 0xad65a6d9 path_is_under +EXPORT_SYMBOL vmlinux 0xad780cf1 compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xad7ed8b8 vfs_setpos +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad855ea5 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xad94c4aa nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xada394bd sk_net_capable +EXPORT_SYMBOL vmlinux 0xadca6020 unregister_nls +EXPORT_SYMBOL vmlinux 0xadcd24a7 down_trylock +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae344562 pcim_iomap +EXPORT_SYMBOL vmlinux 0xae70a0f4 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xae764b67 PageMovable +EXPORT_SYMBOL vmlinux 0xaebee47a neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xaee1c07a block_truncate_page +EXPORT_SYMBOL vmlinux 0xaeea1d13 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0xaef772b8 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xaf08e8fe vprintk_emit +EXPORT_SYMBOL vmlinux 0xaf1c69d0 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xaf239f19 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xaf30afa1 inet6_bind +EXPORT_SYMBOL vmlinux 0xaf31e0d2 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf48b008 ilookup +EXPORT_SYMBOL vmlinux 0xaf4a6b91 sk_alloc +EXPORT_SYMBOL vmlinux 0xaf528a9e inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xaf53b1e9 scsi_init_io +EXPORT_SYMBOL vmlinux 0xaf5c62e0 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xaf62ec69 sock_create +EXPORT_SYMBOL vmlinux 0xaf72a9b8 tty_check_change +EXPORT_SYMBOL vmlinux 0xaf84c23e pci_set_power_state +EXPORT_SYMBOL vmlinux 0xafc367a7 param_get_charp +EXPORT_SYMBOL vmlinux 0xafe7ef61 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xafe82e10 strcspn +EXPORT_SYMBOL vmlinux 0xaffa0932 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xb013d8be kobject_init +EXPORT_SYMBOL vmlinux 0xb02e2fc8 dma_noop_ops +EXPORT_SYMBOL vmlinux 0xb03e48d4 ccw_device_tm_start +EXPORT_SYMBOL vmlinux 0xb04de933 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb0774e04 param_set_short +EXPORT_SYMBOL vmlinux 0xb0a28ade km_state_expired +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0fb945a ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xb12a09b9 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xb13d2fd0 skb_insert +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb1769069 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xb17b1381 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xb18b61ba inet_shutdown +EXPORT_SYMBOL vmlinux 0xb1af9ff0 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1caf3c4 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xb1cc0e6e scsi_remove_target +EXPORT_SYMBOL vmlinux 0xb1cf012b security_path_rename +EXPORT_SYMBOL vmlinux 0xb1cf78bf pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xb1fadcf6 __secpath_destroy +EXPORT_SYMBOL vmlinux 0xb1ffa030 __d_lookup_done +EXPORT_SYMBOL vmlinux 0xb1ffb3da netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0xb2116842 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xb211cf75 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xb21c5bf1 ccw_device_start +EXPORT_SYMBOL vmlinux 0xb2326f49 qdisc_list_del +EXPORT_SYMBOL vmlinux 0xb25ae61d udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb277f3ba datagram_poll +EXPORT_SYMBOL vmlinux 0xb293e119 md_unregister_thread +EXPORT_SYMBOL vmlinux 0xb299a27d inet_csk_accept +EXPORT_SYMBOL vmlinux 0xb29a601e pcim_iounmap +EXPORT_SYMBOL vmlinux 0xb2b0d772 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0xb2b916b4 finish_open +EXPORT_SYMBOL vmlinux 0xb2b9ab83 replace_mount_options +EXPORT_SYMBOL vmlinux 0xb2bb5933 airq_iv_scan +EXPORT_SYMBOL vmlinux 0xb2c718d1 debug_unregister_view +EXPORT_SYMBOL vmlinux 0xb2f88ea5 audit_log +EXPORT_SYMBOL vmlinux 0xb2fb0f2f nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xb308c3d8 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xb32cd1d5 dev_addr_del +EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit +EXPORT_SYMBOL vmlinux 0xb356b9f3 tty_write_room +EXPORT_SYMBOL vmlinux 0xb3b967a1 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3ec16b4 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3ff1f69 free_pages_exact +EXPORT_SYMBOL vmlinux 0xb40b90a9 padata_do_serial +EXPORT_SYMBOL vmlinux 0xb41c3171 n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0xb4210a34 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xb4327ecc kernel_read +EXPORT_SYMBOL vmlinux 0xb43424ae register_gifconf +EXPORT_SYMBOL vmlinux 0xb4476dd7 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xb4599f92 truncate_setsize +EXPORT_SYMBOL vmlinux 0xb45b8777 inet_stream_ops +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb4711fc9 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class +EXPORT_SYMBOL vmlinux 0xb47baabc skb_make_writable +EXPORT_SYMBOL vmlinux 0xb4945ba8 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xb4998c52 ccw_driver_register +EXPORT_SYMBOL vmlinux 0xb49a326c tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xb4a74a9b xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xb4a860e1 pudp_xchg_direct +EXPORT_SYMBOL vmlinux 0xb4aa146a elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0xb4e4f69f get_phys_clock +EXPORT_SYMBOL vmlinux 0xb4f31039 seq_release +EXPORT_SYMBOL vmlinux 0xb4fa252f __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xb502e42a dquot_initialize +EXPORT_SYMBOL vmlinux 0xb508146c __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xb5562eaf __init_rwsem +EXPORT_SYMBOL vmlinux 0xb570b538 d_find_alias +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb57c7003 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ad2564 release_sock +EXPORT_SYMBOL vmlinux 0xb5baf843 tod_to_timeval +EXPORT_SYMBOL vmlinux 0xb5cdf717 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xb5e91f71 d_lookup +EXPORT_SYMBOL vmlinux 0xb60f743c __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb62e3c40 param_ops_bint +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb65d6a16 tcp_ioctl +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb685ee6b netpoll_setup +EXPORT_SYMBOL vmlinux 0xb68d5929 nla_put_64bit +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6947158 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0xb6a377e3 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6cff705 iucv_path_sever +EXPORT_SYMBOL vmlinux 0xb6d76547 proc_dointvec +EXPORT_SYMBOL vmlinux 0xb6e01ab1 file_path +EXPORT_SYMBOL vmlinux 0xb6ef64f3 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xb6f84171 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xb713c278 read_dev_sector +EXPORT_SYMBOL vmlinux 0xb7212667 km_new_mapping +EXPORT_SYMBOL vmlinux 0xb7287d26 d_obtain_root +EXPORT_SYMBOL vmlinux 0xb73b03ed pci_release_regions +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb7533580 bio_chain +EXPORT_SYMBOL vmlinux 0xb76cf5d1 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xb76d05b7 nvm_bb_tbl_fold +EXPORT_SYMBOL vmlinux 0xb76f075f posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb780e5ce qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0xb786c63b nf_hook_slow +EXPORT_SYMBOL vmlinux 0xb7899c6e mempool_free +EXPORT_SYMBOL vmlinux 0xb7a9105e inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xb7aa24cf blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0xb7ad2355 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xb7af28f1 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7e12910 register_console +EXPORT_SYMBOL vmlinux 0xb80b93a0 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0xb83489b3 dcache_dir_open +EXPORT_SYMBOL vmlinux 0xb8546802 bioset_create +EXPORT_SYMBOL vmlinux 0xb85900e1 scsi_execute +EXPORT_SYMBOL vmlinux 0xb85be5ee neigh_xmit +EXPORT_SYMBOL vmlinux 0xb86d03b3 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb8793b0e security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8cb5004 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xb8eec98b del_timer +EXPORT_SYMBOL vmlinux 0xb8efd92f pci_claim_resource +EXPORT_SYMBOL vmlinux 0xb90a4129 kill_block_super +EXPORT_SYMBOL vmlinux 0xb915ceca itcw_init +EXPORT_SYMBOL vmlinux 0xb916a913 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xb927d38f ip_check_defrag +EXPORT_SYMBOL vmlinux 0xb928aa45 netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xb92e01c4 napi_disable +EXPORT_SYMBOL vmlinux 0xb93b85cd ip_ct_attach +EXPORT_SYMBOL vmlinux 0xb9429f82 icmp_send +EXPORT_SYMBOL vmlinux 0xb9463acf dm_kobject_release +EXPORT_SYMBOL vmlinux 0xb949ea58 register_md_personality +EXPORT_SYMBOL vmlinux 0xb97fa44b radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0xb98c1f34 simple_readpage +EXPORT_SYMBOL vmlinux 0xb98ebc75 blk_recount_segments +EXPORT_SYMBOL vmlinux 0xb9a02947 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xb9c45760 submit_bh +EXPORT_SYMBOL vmlinux 0xb9c726d3 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xb9e5033a scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xba26569b page_cache_next_hole +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba6b083e dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xba6f06bf rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0xba7b3870 request_key_async +EXPORT_SYMBOL vmlinux 0xba850a8c dquot_operations +EXPORT_SYMBOL vmlinux 0xbaa2782a kstrndup +EXPORT_SYMBOL vmlinux 0xbaaf5af6 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xbaef4f0f fence_signal +EXPORT_SYMBOL vmlinux 0xbaf64490 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0xbb012c0e neigh_connected_output +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb1e1293 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xbb2a6c84 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xbb2b3538 dev_printk +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb42bdbd bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb8c16a5 block_invalidatepage +EXPORT_SYMBOL vmlinux 0xbb94b4db scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xbb9b8b8d __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xbb9d0dc5 bin2hex +EXPORT_SYMBOL vmlinux 0xbbb6e699 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xbbd705c1 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xbc7dc998 sock_no_connect +EXPORT_SYMBOL vmlinux 0xbc97abd0 security_d_instantiate +EXPORT_SYMBOL vmlinux 0xbca99826 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xbcb18b68 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xbcb87d13 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xbcfba2e8 bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0xbd13bab2 __nla_reserve +EXPORT_SYMBOL vmlinux 0xbd3efaf0 f_setown +EXPORT_SYMBOL vmlinux 0xbd4a5bec neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xbd4b146a setup_arg_pages +EXPORT_SYMBOL vmlinux 0xbd4f2041 __breadahead +EXPORT_SYMBOL vmlinux 0xbd5edd5b netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xbd5fa455 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xbd6e95b7 done_path_create +EXPORT_SYMBOL vmlinux 0xbd740e04 dev_err +EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbd9d7487 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xbd9ed5af __next_node_in +EXPORT_SYMBOL vmlinux 0xbdcdeb16 __module_get +EXPORT_SYMBOL vmlinux 0xbdd330ff down_read +EXPORT_SYMBOL vmlinux 0xbdf773ba __destroy_inode +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe2e3b75 kstrtos8 +EXPORT_SYMBOL vmlinux 0xbe5277ea mark_info_dirty +EXPORT_SYMBOL vmlinux 0xbe555ec6 dquot_drop +EXPORT_SYMBOL vmlinux 0xbe6ada7d uuid_le_index +EXPORT_SYMBOL vmlinux 0xbe6ebccb pcim_pin_device +EXPORT_SYMBOL vmlinux 0xbea5c34b _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xbeae93d9 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xbebeaba5 vm_mmap +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf83d328 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0xbf85080f debug_event_common +EXPORT_SYMBOL vmlinux 0xbf881d63 raw3270_activate_view +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfd79b4d up_write +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc003c637 __strncpy_from_user +EXPORT_SYMBOL vmlinux 0xc04d72e4 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xc04edd6c rtnl_create_link +EXPORT_SYMBOL vmlinux 0xc0819215 device_add_disk +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0daa8a2 bd_set_size +EXPORT_SYMBOL vmlinux 0xc0e3f007 component_match_add_release +EXPORT_SYMBOL vmlinux 0xc0f9423d peernet2id_alloc +EXPORT_SYMBOL vmlinux 0xc0f98809 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xc117c1c7 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xc124280f xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xc155f337 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xc16157d1 scsi_register +EXPORT_SYMBOL vmlinux 0xc179b10a vfs_link +EXPORT_SYMBOL vmlinux 0xc18c24e1 ptep_xchg_direct +EXPORT_SYMBOL vmlinux 0xc18d5a3f vfs_write +EXPORT_SYMBOL vmlinux 0xc1a54486 remove_wait_queue +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc20895b8 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xc212f2ab prandom_bytes +EXPORT_SYMBOL vmlinux 0xc23dad4b napi_gro_frags +EXPORT_SYMBOL vmlinux 0xc242f1c8 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0xc245e1e0 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xc247b31d skb_clone +EXPORT_SYMBOL vmlinux 0xc25218a8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0xc2526677 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0xc255fd7c rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0xc2580843 bdget +EXPORT_SYMBOL vmlinux 0xc2774924 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xc281907e iucv_message_reply +EXPORT_SYMBOL vmlinux 0xc28a0f44 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xc28ed4dc sock_init_data +EXPORT_SYMBOL vmlinux 0xc2a29281 raw3270_request_set_cmd +EXPORT_SYMBOL vmlinux 0xc2a67988 inet_addr_type +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2ae4025 compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0xc2bd588b generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xc2d2c9c1 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2f9a35c __tracepoint_s390_cio_stsch +EXPORT_SYMBOL vmlinux 0xc316908c set_binfmt +EXPORT_SYMBOL vmlinux 0xc34877bb pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xc348f0ab blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xc34ba260 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xc364ae22 iomem_resource +EXPORT_SYMBOL vmlinux 0xc37df91f __nla_put_64bit +EXPORT_SYMBOL vmlinux 0xc385cb58 perf_num_counters +EXPORT_SYMBOL vmlinux 0xc388e61b dquot_commit_info +EXPORT_SYMBOL vmlinux 0xc3a6ad13 sock_no_poll +EXPORT_SYMBOL vmlinux 0xc3a738fa get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xc3c4308c ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0xc3c72e63 __alloc_skb +EXPORT_SYMBOL vmlinux 0xc3e9845e pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xc3eb358f get_super +EXPORT_SYMBOL vmlinux 0xc3f925a0 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xc4027799 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xc4177b1b sock_no_getname +EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0xc4651f80 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xc46eb725 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0xc48e9f6c kern_path_create +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4b2ec73 pcie_get_mps +EXPORT_SYMBOL vmlinux 0xc4c06b59 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xc4dbeced __dec_node_page_state +EXPORT_SYMBOL vmlinux 0xc4ee3c3a skb_clone_sk +EXPORT_SYMBOL vmlinux 0xc5158fa7 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xc51b4e4a pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xc54bf3f4 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xc57ec9e2 __copy_in_user +EXPORT_SYMBOL vmlinux 0xc58571bd inode_needs_sync +EXPORT_SYMBOL vmlinux 0xc5965e6e vfs_llseek +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5a18e2b find_get_pages_tag +EXPORT_SYMBOL vmlinux 0xc5ad93b8 sie_exit +EXPORT_SYMBOL vmlinux 0xc5b15275 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xc5b36643 blk_requeue_request +EXPORT_SYMBOL vmlinux 0xc5b377a4 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xc5b5fa61 tcp_prequeue +EXPORT_SYMBOL vmlinux 0xc5b69987 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xc5d21bfc tcp_read_sock +EXPORT_SYMBOL vmlinux 0xc5da34fa pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xc5eeb6b2 inet6_offloads +EXPORT_SYMBOL vmlinux 0xc5f8b8d6 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc6015f72 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xc60822c1 __inode_permission +EXPORT_SYMBOL vmlinux 0xc622ea97 stsi +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc63588fe inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xc6458e79 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xc64b0603 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xc65782ad abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xc65eb8a8 bdi_init +EXPORT_SYMBOL vmlinux 0xc65f69a2 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xc65fa067 mutex_unlock +EXPORT_SYMBOL vmlinux 0xc6618d68 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xc6837154 down_write_trylock +EXPORT_SYMBOL vmlinux 0xc6845e79 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xc68706f0 udp_poll +EXPORT_SYMBOL vmlinux 0xc6b1d2f5 down_timeout +EXPORT_SYMBOL vmlinux 0xc6bd1ef7 tso_build_hdr +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6ce8273 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xc6efcd0e bio_integrity_endio +EXPORT_SYMBOL vmlinux 0xc7398bda __kernel_fpu_begin +EXPORT_SYMBOL vmlinux 0xc73b6cff lock_page_memcg +EXPORT_SYMBOL vmlinux 0xc76c9ada kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc79052bf sync_inode +EXPORT_SYMBOL vmlinux 0xc792db36 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a24d76 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7c2ffe3 secpath_dup +EXPORT_SYMBOL vmlinux 0xc7c79991 ip_options_compile +EXPORT_SYMBOL vmlinux 0xc7c800f7 netlink_set_err +EXPORT_SYMBOL vmlinux 0xc7c8d408 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xc7e9ebba __neigh_create +EXPORT_SYMBOL vmlinux 0xc7fefa22 module_refcount +EXPORT_SYMBOL vmlinux 0xc83b2140 posix_lock_file +EXPORT_SYMBOL vmlinux 0xc840ee8c tty_kref_put +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc86a6174 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc90c3030 key_validate +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc91ee671 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xc931886d sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc98074bd napi_gro_flush +EXPORT_SYMBOL vmlinux 0xc98782ba pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xc987c88d I_BDEV +EXPORT_SYMBOL vmlinux 0xc99adf12 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xc9ae83de vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xc9d979f8 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xc9df21c7 clear_wb_congested +EXPORT_SYMBOL vmlinux 0xca3141e7 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xca3218ff reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0xca4c923d vscnprintf +EXPORT_SYMBOL vmlinux 0xca4d1736 gen_new_estimator +EXPORT_SYMBOL vmlinux 0xca8dc3f9 inet_bind +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcaab538a kern_unmount +EXPORT_SYMBOL vmlinux 0xcacc204d param_ops_invbool +EXPORT_SYMBOL vmlinux 0xcadd49f2 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb2773be udp_disconnect +EXPORT_SYMBOL vmlinux 0xcb4c22a1 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xcb520d78 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xcb6415ee prepare_to_swait +EXPORT_SYMBOL vmlinux 0xcb643b50 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xcb839d24 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xcb8dae06 nvm_unregister_tgt_type +EXPORT_SYMBOL vmlinux 0xcb9b237d default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xcba17eab vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xcbaf9ffb textsearch_prepare +EXPORT_SYMBOL vmlinux 0xcbb18b96 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbcb4596 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xcbdb4499 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xcbdb7d47 dqput +EXPORT_SYMBOL vmlinux 0xcbdc2f51 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xcbf6557f nf_log_unset +EXPORT_SYMBOL vmlinux 0xcc471967 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xcc4987cb address_space_init_once +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc6fbb54 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xcc74f567 __tracepoint_s390_diagnose +EXPORT_SYMBOL vmlinux 0xcc85d642 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xcc8d1104 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xccacc329 misc_deregister +EXPORT_SYMBOL vmlinux 0xccbdb885 md_write_start +EXPORT_SYMBOL vmlinux 0xccbea048 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xccc313dc kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0xccd80766 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xcd009a37 dev_load +EXPORT_SYMBOL vmlinux 0xcd08d6d7 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0xcd16c666 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xcd2419ee ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd716efa __dquot_free_space +EXPORT_SYMBOL vmlinux 0xcd816cf6 arch_spin_lock_wait +EXPORT_SYMBOL vmlinux 0xcd83278c path_put +EXPORT_SYMBOL vmlinux 0xcd8fc42e pci_clear_master +EXPORT_SYMBOL vmlinux 0xcd91b18b sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xcd96dd7b proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xcdb19c68 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc80a87 loop_register_transfer +EXPORT_SYMBOL vmlinux 0xcde13831 account_page_dirtied +EXPORT_SYMBOL vmlinux 0xcde13ce0 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0xcde7c58a ccw_device_set_offline +EXPORT_SYMBOL vmlinux 0xcdf7484b proc_dostring +EXPORT_SYMBOL vmlinux 0xcdfd1dcd elevator_alloc +EXPORT_SYMBOL vmlinux 0xce00336a panic_notifier_list +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce51d663 sg_miter_start +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce749f90 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xce78f350 iov_iter_zero +EXPORT_SYMBOL vmlinux 0xce81b930 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xce826bcf search_binary_handler +EXPORT_SYMBOL vmlinux 0xcea80755 ccw_device_halt +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceada6e7 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xcecfce86 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xced17bbe rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xcedf0886 cpu_relax +EXPORT_SYMBOL vmlinux 0xcefb252f ccw_device_tm_start_timeout_key +EXPORT_SYMBOL vmlinux 0xcf14f8cd iucv_message_purge +EXPORT_SYMBOL vmlinux 0xcf2817d5 ida_simple_get +EXPORT_SYMBOL vmlinux 0xcf360432 inet_select_addr +EXPORT_SYMBOL vmlinux 0xcf5bd8a2 wait_iff_congested +EXPORT_SYMBOL vmlinux 0xcf62cb14 blk_delay_queue +EXPORT_SYMBOL vmlinux 0xcf6bf501 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xcf88d872 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xcfbe3f7d inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xcfeae122 lockref_put_return +EXPORT_SYMBOL vmlinux 0xcfee67c5 raw3270_deactivate_view +EXPORT_SYMBOL vmlinux 0xcfefc328 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xcff05a2b iov_iter_init +EXPORT_SYMBOL vmlinux 0xcff16334 netif_rx_ni +EXPORT_SYMBOL vmlinux 0xd0164e59 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xd03dc741 load_nls_default +EXPORT_SYMBOL vmlinux 0xd047169d scsi_host_set_state +EXPORT_SYMBOL vmlinux 0xd05241e4 simple_rmdir +EXPORT_SYMBOL vmlinux 0xd06787c9 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd07a104b pipe_lock +EXPORT_SYMBOL vmlinux 0xd0824a68 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0b7b924 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xd0c25fb7 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xd0c5d004 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0f5a711 kthread_bind +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd10d3bda netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xd116e21f truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xd12b839f km_state_notify +EXPORT_SYMBOL vmlinux 0xd1475d94 prepare_binprm +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd18a1390 param_set_invbool +EXPORT_SYMBOL vmlinux 0xd18ce093 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xd199d498 tcw_init +EXPORT_SYMBOL vmlinux 0xd19f13f7 del_virt_timer +EXPORT_SYMBOL vmlinux 0xd1d1db34 dev_uc_add +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1e776fb inode_permission +EXPORT_SYMBOL vmlinux 0xd1eb6b54 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xd20054e3 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0xd216b3d1 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xd21f0ba1 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xd23301d0 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd256158d __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xd26a347f reset_guest_reference_bit +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd28020a4 netlink_ack +EXPORT_SYMBOL vmlinux 0xd2938447 unload_nls +EXPORT_SYMBOL vmlinux 0xd2975f18 do_splice_direct +EXPORT_SYMBOL vmlinux 0xd2a7083e arp_create +EXPORT_SYMBOL vmlinux 0xd2b2371e page_mapping +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2fe003c inet_release +EXPORT_SYMBOL vmlinux 0xd30c5ddd csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xd31c393b iucv_path_accept +EXPORT_SYMBOL vmlinux 0xd345dfdb pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xd362a109 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xd376a094 vmemmap +EXPORT_SYMBOL vmlinux 0xd3a5e337 __elv_add_request +EXPORT_SYMBOL vmlinux 0xd3aef770 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xd3af979c memdup_user +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3c6a7f3 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xd3d0082d forget_cached_acl +EXPORT_SYMBOL vmlinux 0xd40318f3 devm_free_irq +EXPORT_SYMBOL vmlinux 0xd407e12a tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xd413ce33 rt6_lookup +EXPORT_SYMBOL vmlinux 0xd419f981 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xd447e909 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xd4652bdc wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xd466ea16 simple_statfs +EXPORT_SYMBOL vmlinux 0xd4792e90 compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0xd47e211e gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xd4a3abb8 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xd4ab6664 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0xd4b8079c nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xd4d29c01 __napi_complete +EXPORT_SYMBOL vmlinux 0xd4db6951 blk_integrity_register +EXPORT_SYMBOL vmlinux 0xd4dca7f4 tc_classify +EXPORT_SYMBOL vmlinux 0xd52b0d78 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xd52e2716 lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0xd53de2bc skb_append +EXPORT_SYMBOL vmlinux 0xd55121f5 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0xd5611237 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xd5894b69 bio_advance +EXPORT_SYMBOL vmlinux 0xd5b5be2e inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xd5e9d546 ccw_driver_unregister +EXPORT_SYMBOL vmlinux 0xd60e20fd compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd647f006 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xd666a588 smp_ctl_clear_bit +EXPORT_SYMBOL vmlinux 0xd67a6893 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd69ef97d posix_acl_alloc +EXPORT_SYMBOL vmlinux 0xd6b8e852 request_threaded_irq +EXPORT_SYMBOL vmlinux 0xd6e42416 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f71ce7 get_fs_type +EXPORT_SYMBOL vmlinux 0xd6fc8e53 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0xd6fd6849 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xd70a083f sk_ns_capable +EXPORT_SYMBOL vmlinux 0xd73d6197 stsch +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd769ca26 kill_bdev +EXPORT_SYMBOL vmlinux 0xd76d5dd4 tcf_hash_search +EXPORT_SYMBOL vmlinux 0xd78b8e4f arp_send +EXPORT_SYMBOL vmlinux 0xd7a0db6a gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xd7b11f9e copy_to_iter +EXPORT_SYMBOL vmlinux 0xd7b4b54f ilookup5 +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7e0599e save_mount_options +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ed8ba1 do_SAK +EXPORT_SYMBOL vmlinux 0xd7f57255 radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xd7faaf2d submit_bio_wait +EXPORT_SYMBOL vmlinux 0xd803098d __tracepoint_s390_cio_rchp +EXPORT_SYMBOL vmlinux 0xd8126a4a alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xd814d565 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xd8247d83 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xd84fc33f reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xd860545f ip6_frag_match +EXPORT_SYMBOL vmlinux 0xd86cd219 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xd879c98c inet_del_offload +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a1e410 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8bb7405 bdget_disk +EXPORT_SYMBOL vmlinux 0xd8d35907 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8e72107 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xd8ee0902 nvm_register +EXPORT_SYMBOL vmlinux 0xd8f4199c scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xd8f8999a seq_file_path +EXPORT_SYMBOL vmlinux 0xd8fcda72 cpcmd +EXPORT_SYMBOL vmlinux 0xd92f9e80 key_invalidate +EXPORT_SYMBOL vmlinux 0xd93a564b tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xd95578e5 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xd9563677 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xd95935d0 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xd96366a1 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0xd9701ad1 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xd9738022 dev_warn +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9925448 current_fs_time +EXPORT_SYMBOL vmlinux 0xd9a70ea8 pcie_set_mps +EXPORT_SYMBOL vmlinux 0xd9afe2bf tcp_child_process +EXPORT_SYMBOL vmlinux 0xd9b3f97d console_devno +EXPORT_SYMBOL vmlinux 0xd9c05ea8 disk_stack_limits +EXPORT_SYMBOL vmlinux 0xd9cc6da2 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xd9d7a293 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xda1a3356 mpage_writepage +EXPORT_SYMBOL vmlinux 0xda1e39c7 register_sysctl_table +EXPORT_SYMBOL vmlinux 0xda2148de inet_gro_receive +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda6dfce7 __frontswap_test +EXPORT_SYMBOL vmlinux 0xda80e723 mount_ns +EXPORT_SYMBOL vmlinux 0xda92774e tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xdaab818f _dev_info +EXPORT_SYMBOL vmlinux 0xdab02190 __posix_acl_create +EXPORT_SYMBOL vmlinux 0xdabad94c ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xdabec917 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdacf2156 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xdae162cb string_unescape +EXPORT_SYMBOL vmlinux 0xdb04da1c __devm_release_region +EXPORT_SYMBOL vmlinux 0xdb07abbb pci_remove_bus +EXPORT_SYMBOL vmlinux 0xdb185e7b __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xdb64be1f __iucv_message_send +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb880823 sock_efree +EXPORT_SYMBOL vmlinux 0xdba14cce arch_spin_lock_wait_flags +EXPORT_SYMBOL vmlinux 0xdba527da netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xdbaac9aa iput +EXPORT_SYMBOL vmlinux 0xdbb41f25 udp_gro_receive +EXPORT_SYMBOL vmlinux 0xdbc4ec41 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xdbd6732b radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc09eb68 sock_kmalloc +EXPORT_SYMBOL vmlinux 0xdc13977b generic_file_open +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc339505 cond_set_guest_storage_key +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc458c2b inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xdc609127 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xdc6177a3 skb_split +EXPORT_SYMBOL vmlinux 0xdc662bc3 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xdc68c1dc dev_alloc_name +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdccbf8c4 pci_restore_state +EXPORT_SYMBOL vmlinux 0xdd0b0402 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xdd32f009 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xdd371632 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xdd4957c4 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xdd821580 dqstats +EXPORT_SYMBOL vmlinux 0xdd853274 dec_node_page_state +EXPORT_SYMBOL vmlinux 0xdd87ec2e iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xdda08c00 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0xddb180ce pci_set_vpd_size +EXPORT_SYMBOL vmlinux 0xddcb5f92 _raw_write_lock_wait +EXPORT_SYMBOL vmlinux 0xde0bdcff memset +EXPORT_SYMBOL vmlinux 0xde160ec9 pmdp_xchg_lazy +EXPORT_SYMBOL vmlinux 0xde20e026 d_alloc +EXPORT_SYMBOL vmlinux 0xde388eb4 __strnlen_user +EXPORT_SYMBOL vmlinux 0xde48a247 mempool_create +EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0xde8a415c xor_block_xc +EXPORT_SYMBOL vmlinux 0xde8b4f8b airq_iv_alloc +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde997f38 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xde9de7c5 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xdedc76e8 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xdf04b6c1 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xdf22ec9b __page_cache_alloc +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf34e64d reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0xdf3ede23 elevator_change +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf71310a register_filesystem +EXPORT_SYMBOL vmlinux 0xdf8f04f9 nf_register_hooks +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf92d988 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xdfa9acca smp_cpu_mtid +EXPORT_SYMBOL vmlinux 0xdfd067c4 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xdfd7c672 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xdfef1032 elv_rb_del +EXPORT_SYMBOL vmlinux 0xdffade67 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xdffc4c1a kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0xe00aa7dd ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xe01c87a2 pci_dev_driver +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe0555a62 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xe05db997 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe0614a83 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xe06a6c3c bdi_register_dev +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe0812a9e register_adapter_interrupt +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0bc4fb2 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xe0c1bbff cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xe0f46626 simple_rename +EXPORT_SYMBOL vmlinux 0xe1149dab flush_old_exec +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe13fd903 locks_remove_posix +EXPORT_SYMBOL vmlinux 0xe14953a5 blk_end_request +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe192cbde elv_rb_add +EXPORT_SYMBOL vmlinux 0xe198a967 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xe1b7b46b __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xe1f5ae20 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe2032af9 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xe23a285c xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe24ef7cd __block_write_begin +EXPORT_SYMBOL vmlinux 0xe264a443 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xe26a5e39 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xe29be62a blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2b0365f invalidate_partition +EXPORT_SYMBOL vmlinux 0xe2b192ce xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xe2bf5bf4 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xe2cc073f genlmsg_put +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe31414ab dev_remove_offload +EXPORT_SYMBOL vmlinux 0xe3163bb5 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0xe32ef301 block_commit_write +EXPORT_SYMBOL vmlinux 0xe346ca8e inet6_release +EXPORT_SYMBOL vmlinux 0xe35cc7be block_write_begin +EXPORT_SYMBOL vmlinux 0xe3632f6a proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xe36a4d12 dev_addr_add +EXPORT_SYMBOL vmlinux 0xe3b0b0a5 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3be3b88 mount_subtree +EXPORT_SYMBOL vmlinux 0xe3d552dc blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0xe4409190 mem_section +EXPORT_SYMBOL vmlinux 0xe467f9aa sclp_register +EXPORT_SYMBOL vmlinux 0xe4795798 generic_perform_write +EXPORT_SYMBOL vmlinux 0xe479a964 dump_fpu +EXPORT_SYMBOL vmlinux 0xe483b345 inet_listen +EXPORT_SYMBOL vmlinux 0xe4965206 elv_rb_find +EXPORT_SYMBOL vmlinux 0xe4a04efb ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xe4a40d2f diag210 +EXPORT_SYMBOL vmlinux 0xe4a9c43e skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xe4e429f9 __tracepoint_s390_cio_msch +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe4eff248 pci_find_bus +EXPORT_SYMBOL vmlinux 0xe5094832 page_table_allocate_pgste +EXPORT_SYMBOL vmlinux 0xe514b0e1 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0xe51fed85 complete_all +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe54036ef mempool_resize +EXPORT_SYMBOL vmlinux 0xe5493e63 skb_pull +EXPORT_SYMBOL vmlinux 0xe57789d3 rwsem_wake +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe5985bcb pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xe5a5ff82 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xe5b276aa proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xe5e5ba00 param_set_ushort +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe5f0fc00 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xe5f3a1f5 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xe604bad0 mutex_trylock +EXPORT_SYMBOL vmlinux 0xe60ec15d inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xe62b0428 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xe62c5b0a dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xe6913fb6 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xe6982631 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xe6bc11f2 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xe6c86dd3 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xe6f1486d dql_reset +EXPORT_SYMBOL vmlinux 0xe6f59290 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xe70425ed __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0xe713a97a irq_subclass_unregister +EXPORT_SYMBOL vmlinux 0xe75ac863 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xe77e14fe nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7bff8a4 tso_count_descs +EXPORT_SYMBOL vmlinux 0xe7cfbe6e sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7d854ce posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xe7eebf91 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0xe7fe5e48 set_create_files_as +EXPORT_SYMBOL vmlinux 0xe805562a simple_transaction_release +EXPORT_SYMBOL vmlinux 0xe808ce8e __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xe8116e08 __kmalloc_node +EXPORT_SYMBOL vmlinux 0xe817ff45 kobject_add +EXPORT_SYMBOL vmlinux 0xe88e6256 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xe8996511 sk_mc_loop +EXPORT_SYMBOL vmlinux 0xe8a18442 scmd_printk +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8b91fb1 read_cache_pages +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8c69016 netlink_unicast +EXPORT_SYMBOL vmlinux 0xe8d4783d __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 +EXPORT_SYMBOL vmlinux 0xe907a0b4 unlock_page +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe919b45c set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0xe93a36a6 __debug_sprintf_exception +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe962bc29 fence_array_create +EXPORT_SYMBOL vmlinux 0xe98c5157 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0xe9989c8c itcw_get_tcw +EXPORT_SYMBOL vmlinux 0xe9ae4d3d neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xe9b59351 noop_fsync +EXPORT_SYMBOL vmlinux 0xe9ebabde xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0xe9edbd91 softnet_data +EXPORT_SYMBOL vmlinux 0xe9ee048a xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea06130d request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xea12ffff revert_creds +EXPORT_SYMBOL vmlinux 0xea2addc3 zero_fill_bio +EXPORT_SYMBOL vmlinux 0xea34824b xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xea36bd2e elevator_exit +EXPORT_SYMBOL vmlinux 0xea5f41bd add_wait_queue +EXPORT_SYMBOL vmlinux 0xea71f7a7 param_get_string +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea7ba75b reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xea872313 find_next_bit_inv +EXPORT_SYMBOL vmlinux 0xead441da xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xead58fb9 print_hex_dump +EXPORT_SYMBOL vmlinux 0xeaecf694 tty_register_driver +EXPORT_SYMBOL vmlinux 0xeaff734a netdev_notice +EXPORT_SYMBOL vmlinux 0xeb28d4e4 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xeb29d0e4 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeba58e9a inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xeba63dbc from_kgid +EXPORT_SYMBOL vmlinux 0xebbf1dba strncasecmp +EXPORT_SYMBOL vmlinux 0xebcc2ecc tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xebe90743 dev_activate +EXPORT_SYMBOL vmlinux 0xebe9b07a scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xebfb2a9b inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xec04bd8a md_register_thread +EXPORT_SYMBOL vmlinux 0xec33febb blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xec4fa773 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0xec4fd814 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xec65a7b0 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xec700480 __sb_end_write +EXPORT_SYMBOL vmlinux 0xecb4c5cc xattr_full_name +EXPORT_SYMBOL vmlinux 0xecd73a84 ip6_xmit +EXPORT_SYMBOL vmlinux 0xece1b240 ccw_device_resume +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xeceeb1a5 ccw_device_start_key +EXPORT_SYMBOL vmlinux 0xecef11eb iucv_path_connect +EXPORT_SYMBOL vmlinux 0xecf9cfbd bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xecfbc5a1 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0xed18bb50 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xed3c7c23 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xed56d631 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed6d0e1d inc_nlink +EXPORT_SYMBOL vmlinux 0xed77e37c param_get_ullong +EXPORT_SYMBOL vmlinux 0xed9f8e6d kstrtos16 +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc48562 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xedd0cd89 radix_tree_delete +EXPORT_SYMBOL vmlinux 0xedd5b73c __ip_select_ident +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xedfe2d48 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xee24e254 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3ea2c8 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xee40d505 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xee573ed0 security_task_getsecid +EXPORT_SYMBOL vmlinux 0xee61e799 dma_common_mmap +EXPORT_SYMBOL vmlinux 0xee8d2aa7 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea29369 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeed0768a __block_write_full_page +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xef1dbb9b md_flush_request +EXPORT_SYMBOL vmlinux 0xef2a7f83 param_set_long +EXPORT_SYMBOL vmlinux 0xef2bc619 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xef45d32c __kfifo_init +EXPORT_SYMBOL vmlinux 0xef497630 padata_free +EXPORT_SYMBOL vmlinux 0xef68e88b scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xef736ff5 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xef9616d4 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xefa7b253 seq_path +EXPORT_SYMBOL vmlinux 0xefc3cfb7 __vfs_write +EXPORT_SYMBOL vmlinux 0xefcd5af4 netdev_crit +EXPORT_SYMBOL vmlinux 0xefdbf689 current_in_userns +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0027fe6 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xf0094f2f devm_release_resource +EXPORT_SYMBOL vmlinux 0xf01094ad pci_get_device +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf0244c8c shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xf02f607b clone_cred +EXPORT_SYMBOL vmlinux 0xf0500816 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0xf086ef3b rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf08ee962 kobject_put +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0a8fcc5 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit +EXPORT_SYMBOL vmlinux 0xf122c1c5 lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xf124fc04 unregister_netdev +EXPORT_SYMBOL vmlinux 0xf1344573 tcp_check_req +EXPORT_SYMBOL vmlinux 0xf1388e7a compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xf150afc4 fget +EXPORT_SYMBOL vmlinux 0xf1608db7 sock_create_lite +EXPORT_SYMBOL vmlinux 0xf173e01a debug_dflt_header_fn +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1f17afc compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xf200b374 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xf204578d filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf21227f3 find_get_entry +EXPORT_SYMBOL vmlinux 0xf21cd740 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xf21d5b48 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xf22274f9 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xf223d33b tty_port_close_start +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf24ffef9 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xf25c4729 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xf270d519 install_exec_creds +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf29c181d param_array_ops +EXPORT_SYMBOL vmlinux 0xf29ebfb3 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xf2d34c9a blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xf2d60af2 pci_iounmap +EXPORT_SYMBOL vmlinux 0xf2d73682 read_cache_page +EXPORT_SYMBOL vmlinux 0xf2dd652d cdev_del +EXPORT_SYMBOL vmlinux 0xf2eba173 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0xf2f2f6c6 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf31e03dd make_kgid +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf3531fba sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf370ea73 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xf3726720 scm_detach_fds +EXPORT_SYMBOL vmlinux 0xf38171fd iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xf383ad22 vfs_rename +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf39b395b tcp_filter +EXPORT_SYMBOL vmlinux 0xf3b3b421 dev_deactivate +EXPORT_SYMBOL vmlinux 0xf3e2ad85 sk_reset_timer +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf40b7a21 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0xf40c6f3b dquot_quota_on +EXPORT_SYMBOL vmlinux 0xf425857b blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xf44769c9 inode_set_flags +EXPORT_SYMBOL vmlinux 0xf44939e7 get_user_pages +EXPORT_SYMBOL vmlinux 0xf44a9ec4 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0xf4528073 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0xf4597b94 cdev_init +EXPORT_SYMBOL vmlinux 0xf45ab277 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xf4694f10 unregister_shrinker +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4768125 netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4ce368b put_disk +EXPORT_SYMBOL vmlinux 0xf4dc683e ptep_modify_prot_commit +EXPORT_SYMBOL vmlinux 0xf4e09879 pci_bus_put +EXPORT_SYMBOL vmlinux 0xf4e5d375 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f1d73f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xf518e010 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf53f5578 xfrm_register_km +EXPORT_SYMBOL vmlinux 0xf5466760 uuid_is_valid +EXPORT_SYMBOL vmlinux 0xf547182d tcp_close +EXPORT_SYMBOL vmlinux 0xf575e8c4 lease_get_mtime +EXPORT_SYMBOL vmlinux 0xf5795c0a udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xf57a99d4 iget5_locked +EXPORT_SYMBOL vmlinux 0xf5a5b33b nf_ct_attach +EXPORT_SYMBOL vmlinux 0xf5ab03b3 __SetPageMovable +EXPORT_SYMBOL vmlinux 0xf5dbb136 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5ff39e9 param_set_copystring +EXPORT_SYMBOL vmlinux 0xf6585db6 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xf666b1b8 __put_cred +EXPORT_SYMBOL vmlinux 0xf66bf004 inode_dio_wait +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf67b2e48 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf6e6d8b5 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf70c4855 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xf717c284 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xf71e8a91 lowcore_ptr +EXPORT_SYMBOL vmlinux 0xf761fbae kernel_param_lock +EXPORT_SYMBOL vmlinux 0xf77bef67 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xf78a7927 iunique +EXPORT_SYMBOL vmlinux 0xf7994790 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xf7ad85f8 pci_scan_slot +EXPORT_SYMBOL vmlinux 0xf7b042c8 compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0xf7c66d83 rtnl_unicast +EXPORT_SYMBOL vmlinux 0xf7d71918 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0xf7f2d25d iucv_message_send2way +EXPORT_SYMBOL vmlinux 0xf7ff3d66 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xf81003dc ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xf81103ea radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf854049a kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xf86a85b2 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xf89cfde7 VMALLOC_START +EXPORT_SYMBOL vmlinux 0xf8da1b7d neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf94264be pci_find_capability +EXPORT_SYMBOL vmlinux 0xf9559723 seq_read +EXPORT_SYMBOL vmlinux 0xf95d5641 ida_destroy +EXPORT_SYMBOL vmlinux 0xf961ad94 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9b10841 dev_mc_flush +EXPORT_SYMBOL vmlinux 0xf9ecfb0e vfs_readv +EXPORT_SYMBOL vmlinux 0xf9f0faeb bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xf9f5c230 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xfa275647 release_firmware +EXPORT_SYMBOL vmlinux 0xfa306a6f kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xfa4f870d netif_napi_del +EXPORT_SYMBOL vmlinux 0xfa50bbf2 simple_write_begin +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5bcf35 mod_timer +EXPORT_SYMBOL vmlinux 0xfa755a3c param_ops_ullong +EXPORT_SYMBOL vmlinux 0xfa76cbd7 lock_sock_fast +EXPORT_SYMBOL vmlinux 0xfa8484df pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0xfaa09920 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xfab8e026 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0xfac60968 lg_lock_init +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacfe631 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xfad97e00 dquot_release +EXPORT_SYMBOL vmlinux 0xfae51bde init_buffer +EXPORT_SYMBOL vmlinux 0xfaf64c15 __register_chrdev +EXPORT_SYMBOL vmlinux 0xfafc47af generic_readlink +EXPORT_SYMBOL vmlinux 0xfb0649e5 debug_hex_ascii_view +EXPORT_SYMBOL vmlinux 0xfb2c35bd scsi_register_interface +EXPORT_SYMBOL vmlinux 0xfb307cf6 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xfb309da5 sclp +EXPORT_SYMBOL vmlinux 0xfb342d65 __find_get_block +EXPORT_SYMBOL vmlinux 0xfb59e423 nonseekable_open +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb6f4a70 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xfb725329 mempool_create_node +EXPORT_SYMBOL vmlinux 0xfb8e9889 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfb954393 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xfb9fe3d7 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbc74f64 __copy_from_user +EXPORT_SYMBOL vmlinux 0xfbd49024 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xfbf39aa8 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xfbfdf489 skb_queue_tail +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc06f8d2 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xfc18762c netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xfc32ff4d starget_for_each_device +EXPORT_SYMBOL vmlinux 0xfc46bb96 itcw_add_tidaw +EXPORT_SYMBOL vmlinux 0xfc4bd551 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xfc4cd4d6 dquot_scan_active +EXPORT_SYMBOL vmlinux 0xfc54f1e4 sock_alloc +EXPORT_SYMBOL vmlinux 0xfc59d0bc mempool_destroy +EXPORT_SYMBOL vmlinux 0xfc5e0564 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xfc805d4d adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xfc9e00f2 wake_up_process +EXPORT_SYMBOL vmlinux 0xfc9eb209 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xfca60286 pci_set_master +EXPORT_SYMBOL vmlinux 0xfca755ea sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcd934b8 xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf3156a sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xfcf6517a d_alloc_name +EXPORT_SYMBOL vmlinux 0xfcff7e4e __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xfcffe8ca sclp_pci_configure +EXPORT_SYMBOL vmlinux 0xfd0d4b7f devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xfd303c2c inet6_ioctl +EXPORT_SYMBOL vmlinux 0xfd7008b1 reuseport_alloc +EXPORT_SYMBOL vmlinux 0xfd7f9fe1 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfda423ab skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xfdb68754 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xfdbdc1a2 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xfdc56466 commit_creds +EXPORT_SYMBOL vmlinux 0xfdcda694 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xfdd9b8ad skb_push +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe6e0fd7 ccw_device_is_pathgroup +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe8084dc blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0xfe80cae1 uuid_be_to_bin +EXPORT_SYMBOL vmlinux 0xfe8576de generic_end_io_acct +EXPORT_SYMBOL vmlinux 0xfe9869cb ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0xfea242a5 d_splice_alias +EXPORT_SYMBOL vmlinux 0xfecc625a blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee2eac5 __d_drop +EXPORT_SYMBOL vmlinux 0xfef7c62c set_bh_page +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff3ae628 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xff50201e lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xff6a6f8e d_move +EXPORT_SYMBOL vmlinux 0xff935432 generic_fillattr +EXPORT_SYMBOL vmlinux 0xff9bee62 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xffa0ab6a inet_accept +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffdb73d5 blk_stop_queue +EXPORT_SYMBOL vmlinux 0xfffdd336 __genl_register_family +EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0x1a66647f s390_sha_final +EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0xd5e212f4 s390_sha_update +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x06277ba8 kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x06489dcd kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x15e87fbe kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x1896c017 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x197e64bb kvm_init +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x225d8dbc kvm_read_guest +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x27b013a0 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x2b342d1d gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x2bfdf8f3 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x2e085d8f kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x33f5f5fa kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x3451d589 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x3abad4e4 kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x43ca6e0a kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x49caa671 kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x4d032f9d kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x4dc94b4b kvm_read_guest_atomic +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x52159b5d kvm_put_kvm +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x53f10d9e gfn_to_page +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x54c8d486 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x5921968f kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x5996d185 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x5a3ec54e kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x6177ff79 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x64f70f29 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x6c1ceb85 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x6e0e9e66 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x7093bdfb __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x72c20542 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x742ceda8 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x764ef67b kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x76a147f6 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x781c368f gfn_to_pfn +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x7f95bd01 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x84468944 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x8cbe331f gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x8e6ae5ca kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0x98bc1368 kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0xa134150f gfn_to_hva +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0xa9aef2e1 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0xaae675ee kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0xace150e5 vcpu_put +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0xaf3def1a mark_page_dirty +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0xb68827fc kvm_get_pfn +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0xb859efcd kvm_write_guest +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0xbcf1ed4a kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0xcb8bc290 vcpu_load +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0xd0d76422 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0xd53fbb76 kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0xda6df315 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0xdb64a27f gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0xdfa19ddb kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0xe794c92e kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0xe8b7b05d gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0xf60e88e3 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0xf6f63319 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/s390/kvm/kvm 0xfe0da29a kvm_release_page_dirty +EXPORT_SYMBOL_GPL crypto/af_alg 0x1d6cc897 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x2179541b af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x2b03e69c af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x3f6c1c31 af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x4a7e33eb af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x59386f71 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x7a514c58 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x8afd82ea af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x8b60979d af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0xa544b18e af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0xe6c1fca3 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xf374d566 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x87aa1fa0 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xc9f5f0de async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x256fae6e async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xcffe64fb async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x2e8e9e0d async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd09f775f async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf5b02516 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x3dd4b6fe async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x8921ae5d async_xor_val +EXPORT_SYMBOL_GPL crypto/authenc 0x587ef278 crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xb9903a90 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27278ca9 __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4a2a3ca6 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x78a6520c cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1291971c __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1e2c961f __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x7b48ad98 cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8f04034a __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast_common 0x08aa6fb7 cast_s1 +EXPORT_SYMBOL_GPL crypto/cast_common 0x0c5fbf8a cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xe39dd4b4 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0xee83a4f3 cast_s4 +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x017a8b2a crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x048e0543 crypto_chacha20_init +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x87d2734f crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/cryptd 0x22922db9 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x2fe9da34 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x3e973ae7 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x45c479dd cryptd_ablkcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x4d6051bd cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x4e00d597 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x4f41e8cc cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x54a3ef9f cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x55657946 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x568a88cb cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x5b3939ef cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x9846a450 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xe53603db cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/des_generic 0xf8c78d49 __des3_ede_setkey +EXPORT_SYMBOL_GPL crypto/dh_generic 0x9edeb49b crypto_dh_decode_key +EXPORT_SYMBOL_GPL crypto/dh_generic 0xa9c31fb3 crypto_dh_key_len +EXPORT_SYMBOL_GPL crypto/dh_generic 0xb25efd9f crypto_dh_encode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x597307c5 crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/lrw 0x3864eb66 lrw_free_table +EXPORT_SYMBOL_GPL crypto/lrw 0x8405fcd4 lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8b4f329c mcryptd_ahash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0xb2cf3abb mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xb316c771 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0xce1d4643 mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x09f1c7d3 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x60f3221c crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x8101d5b6 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x866fd52b crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x31a8c770 serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5ddb33e9 __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x77b39cb4 __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8a1a99ad __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/twofish_common 0x6c3229bb __twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xfd5c0d5f twofish_setkey +EXPORT_SYMBOL_GPL crypto/xts 0x905ee189 xts_crypt +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i2c 0xa286a860 __regmap_init_i2c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i2c 0xd1ed1ae6 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL drivers/dax/dax 0x17bce14a devm_create_dax_dev +EXPORT_SYMBOL_GPL drivers/dax/dax 0x739e7765 alloc_dax_region +EXPORT_SYMBOL_GPL drivers/dax/dax 0x85fc80e9 dax_region_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0341554a fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x083f6d32 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x27de8701 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x35735dc9 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x57239d57 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcf7403c0 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0659eeaf intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x11f5a436 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2bb33590 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x71ecbb61 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7bb69d3b intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb898391b intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xcbc1d118 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x06f68101 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x074fcf16 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x20c9e5cd stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7a81ba28 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x90f312a6 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x0936e3d9 i2c_for_each_dev +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x0ed8d126 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x1085eb50 i2c_new_probed_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x1e82da1b i2c_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x2e4766ba i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x39d687fb i2c_new_dummy +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x42eb032b i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x44e60dbe i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x7c81a122 i2c_new_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x86a2a298 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x8fe687a0 i2c_bus_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xa861aa8c i2c_new_secondary_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xc6f1b2c1 i2c_adapter_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xceee2d68 i2c_recover_bus +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/sw/rxe/rdma_rxe 0xe6544629 rxe_dev_put +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0528a260 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0878b0c8 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x151016b2 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x189d5b54 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1f9478da __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25a79c7a __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x325b4de0 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x337bbf6b __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3dc6583f __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x47a02332 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4b0ac586 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x560ffd30 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d3ad463 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5fca5ac6 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64f58a16 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x772ae9e9 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7a56bd0d __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x82189dfb __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8521efad __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x86f95c3b __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8b5fed12 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8e52c1fe __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xabb324b0 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb88b306f __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdaed9cc4 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe248d242 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe449c3f6 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeaf432d6 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xebbe86f1 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef288357 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xffd40ce7 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0df7e37f dm_bio_prison_alloc_cell +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 0x3b9c21a5 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x634ce931 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x70f752e5 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x72f6b162 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x954c2a7c dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9b5007f4 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xac2bef4f dm_cell_promote_or_release +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 0xcc582770 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x5c221ea1 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +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 0x9310ba06 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa448e19f dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +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-cache 0x150209fc dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x1c9d0777 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x961e0468 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xb365e41f dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcfdc27eb dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xd759a8fd dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf41ba3aa dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x079eff4b dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x6b708ac3 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 0x20ecf099 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x263fb584 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x2dac1be4 dm_rh_dirty_log +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 0x4430764e dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x672d5643 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 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state +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 0xcb17f2fe dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd6d2d26a dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key +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 0x01445176 dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0604db1b dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x07c4a1ea dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2025e954 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24fa6664 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +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 0x32350144 dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x32b5f546 dm_array_empty +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 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42d1207a dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4360913e dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5aed1dd7 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5e6aea80 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x62c1b9ee dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x67660b4e dm_bm_write_lock_zero +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 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7657e859 dm_bitset_clear_bit +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 0x80afbcf5 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x832bf228 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x858c8d94 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8605e0ec dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x879bca14 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89f1e1cc dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8c195a05 dm_sm_disk_create +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 0x966a8838 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x98925a60 dm_bm_read_lock +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 0xa7e46220 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa87c5b4d dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab96bd2d dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaee02382 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba47c03a dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbd50ebbb dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca40abd5 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd041d62b dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe118796a dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe2d7194c dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed1e1f96 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed58cfa1 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf12ec3cd dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xffff2ac3 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x18109bd8 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x20ab46e5 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x49888cab c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x89a87919 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8aba207a free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa9421069 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x00908123 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x04876456 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x17ec85ae can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x22847c59 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x359c3209 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3f81e2be unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x40d25dc0 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x53bd2c75 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7191dee1 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x772d6150 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb102344a free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb7c802f2 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc3f20d0f can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xddbec56a safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xebb68aed can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf15f02f6 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x6120cdd3 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x8ae9d4f2 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa38ab8ab unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xbd96ce11 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x3c165d07 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x963aefd1 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x9b5ad120 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xfb9fe9e0 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ec0ea74 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1077fe99 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x133810d6 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x142e9218 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1591b382 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ace1237 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b16aa03 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b31d645 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bd3f1bb mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1cee8672 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d066117 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1db0f5ff mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x238b3ca0 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x276559c5 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ea4df42 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fabd106 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x327785b4 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3446dc53 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34579c1b mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x374289a2 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3835e6a2 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a40a3f3 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ac1522b mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bfd159d mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cf9c811 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e155094 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e66ec07 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48e3584b mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a6d9318 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4aa96f40 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b3ce20c mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x547f067d mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59523e42 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x596d5043 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59c4c97d mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b365429 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c691faa mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c9d5b5c mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5dc233c8 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ee57db5 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61006818 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6249728f mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62fe9152 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63862f84 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x654154a3 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66c98fee mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66cfdc42 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6862529a mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a919a3c mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b5b0464 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b88bfe3 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c90b2bf mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e7f8889 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f3a6c6d mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f560a71 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7080a2da mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71059998 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x731f23a9 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x735dd53f mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73672b67 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74a6c9d7 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7504d77c mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78726938 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a516003 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7dafbdbe mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e53a26c mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8154c3e7 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81808905 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x819452ae mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83b3060e mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8475a7e9 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x859175e9 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b4c78dc mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8be06dbf mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bea413d mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d9ac4b7 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d9cdac8 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8dc19103 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9370b13f mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96181439 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x994411fe mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ad18735 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b15b76f mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b172dde mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b840dc4 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bed4efe mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c8e003d mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9caf771e mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d6083c2 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9db0b5a2 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2c1648b mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa668d2b9 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6802174 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa191dea mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacc68982 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1b26e91 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5842e3c mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd624e90 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbde4064e mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc438db4c __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6d511f6 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6e729cd mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc769d652 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8f3f10a mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc99decbd mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca24cf58 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcce0a59d mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf578dcc mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0fe68ab mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2296a19 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2bc0fc8 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda93a933 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcdd0f7b mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde4acedc __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe22e37e4 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2519722 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe813e652 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe92d27bc mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeab07ac7 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeac2357b mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeae02f5b mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf39ca04c mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4a06785 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5ea481b mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf659cb97 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffe3b84c mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x011c9949 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01c69f50 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02fc5128 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0428a20c mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x085f0895 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09543b3d mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e966590 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1276f6a0 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1414d097 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15d62487 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1db41806 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x234d2a20 mlx5_core_alloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2611d093 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x267b1d84 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3374a7ad mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33a25a78 mlx5_set_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x347b62fe mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35510195 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39ec8f68 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4610978e mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47970f82 mlx5_modify_vport_admin_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49122db6 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b03caf6 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50354c21 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x513ddbe8 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x553e9bfc mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57a71f0f mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57bd0322 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d71399e mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66934493 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66991f0a mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7002c1a7 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70732319 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72f82e98 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d79ce59 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84317b85 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8897ee40 mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x892da372 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91798362 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x955181e5 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97d4fc12 mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9828b39e mlx5_core_query_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99be9316 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99c96bcd mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9dc50a55 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2124ae4 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa25d0e4e mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6c0e51b mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3466bfd mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4f33764 mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb866a7f7 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb97fc3f4 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba52046f mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe553487 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf8d56e4 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc00e980a mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc409bae2 mlx5_query_vport_admin_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8507d8e mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9f5f7af mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2edf9e8 mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4c2b279 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd69414c2 mlx5_core_dealloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9a04f1b mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1b4e449 mlx5_query_port_autoneg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3bf80d3 mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe60dd514 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8c31bfc mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe91e64cc mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea0484f2 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedb722d8 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0859107 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4b4b6b2 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf79b791a mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9e9ccfd mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd3cc436 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/geneve 0x0d771696 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x685b2303 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb2c55655 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xedfe710d macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf6af8e9b macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvtap 0xd20ebe4a macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x42748c77 devm_mdiobus_free +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xf47a980e devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x48716779 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x0ea6c252 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x5d45ad2c nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x8eff9cda nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xbe68604d nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x1f2615dd pn533_unregister_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x482896d9 pn533_register_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x725a2855 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 0x0a00833b st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1a33164c st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x335c0fcd st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x54b5b289 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5aeb1b6b st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7f051fa7 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x87dc4d7d st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb1c7c879 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x08d72eb3 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0c57b8ce nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1aaf3706 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1e7d455f __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2a299a9c nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x327858b1 nvme_max_retries +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3279a6c4 nvme_put_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x338f1915 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3a2e7db4 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x41853df4 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x55dab91c nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x587eea18 nvme_requeue_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x68c601e1 nvme_init_identify +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x700242ef nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x784a3c0e nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7ad1be60 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7e4db50f nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x878eac8c nvme_queue_async_events +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x884822b8 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a5dc137 nvme_queue_scan +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x90f6ce80 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb0f99a0a nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbe0bab54 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xca47fe57 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd0996e0f nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf958ab24 admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfe342bb9 nvme_start_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x072d17bc nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0bed029c nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x22182587 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2b81dfad nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4470b8f7 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5bd3495a nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x68ee0878 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb11bb205 nvmf_get_subsysnqn +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xba55b064 nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd5261f36 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x01bc362b nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x099c4821 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x17087f3e nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7a0fa700 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8ebcac63 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x972d595e nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xfba7937f nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x0d27da07 dasd_generic_path_event +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x19227556 dasd_nopav +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x372ed1f2 dasd_device_set_stop_bits +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x3f4b89b4 dasd_put_device_wake +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x46d6ae1a dasd_device_is_ro +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x4c98bf12 dasd_generic_last_path_gone +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x504dfea1 dasd_generic_verify_path +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x55071847 dasd_generic_set_offline +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x5544cafe dasd_device_remove_stop_bits +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x5ab5eb9b dasd_generic_remove +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x627a037d dasd_get_sense +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x81875180 dasd_generic_probe +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x8ad0f269 dasd_free_block +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x9146c67f dasd_generic_notify +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x92dc7716 dasd_alloc_block +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x975f90db dasd_generic_uc_handler +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x9f516f22 dasd_flush_device_queue +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xa5199701 dasd_generic_pm_freeze +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb38fe028 dasd_page_cache +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb9e5f62b dasd_wakeup_cb +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xdc7d2439 dasd_generic_path_operational +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xde2a75b3 dasd_generic_shutdown +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xdee77b45 dasd_generic_set_online +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xe0050bdd dasd_generic_read_dev_chars +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf15784f5 dasd_nofcx +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf43a991a dasd_generic_handle_state_change +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xfdbd68cb dasd_generic_restore_device +EXPORT_SYMBOL_GPL drivers/s390/cio/eadm_sch 0x24f2806e eadm_start_aob +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x05237132 qdio_activate +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x52d49616 qdio_alloc_buffers +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x58dccc54 qdio_establish +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x61e52274 do_QDIO +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x73852c2c qdio_pnso_brinfo +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x80d058cb qdio_allocate +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x8184dc41 qdio_reset_buffers +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x9b2c2502 qdio_get_ssqd_desc +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x9f735319 qdio_shutdown +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xc6755f2b qdio_release_aob +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xc8e3f47d qdio_free_buffers +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xcd4af5dd qdio_allocate_aob +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xf1ec344a qdio_free +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x01007c49 qeth_get_ipacmd_buffer +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x0107e7b0 qeth_wait_for_threads +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x04c5fff4 qeth_fix_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x0b13df3e qeth_set_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x0f3a4a40 qeth_clear_ipacmd_list +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x169e3daf qeth_mdio_read +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x1782dae8 qeth_tx_timeout +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x1cbf1f1b qeth_get_priority_queue +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x22f1e4d6 qeth_core_get_drvinfo +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x27852600 qeth_setadpparms_change_macaddr +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2cd9e4cc qeth_core_header_cache +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x335b7f2e qeth_query_switch_attributes +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x34e8572d qeth_print_status_message +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x37004a47 qeth_get_elements_no +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3828696b qeth_do_send_packet_fast +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3a99d412 qeth_prepare_ipa_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3ee79eae IPA_PDU_HEADER +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x411180c5 qeth_query_oat_command +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x4292090a qeth_clear_working_pool_list +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x43aa8163 qeth_set_access_ctrl_online +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x451db0b6 qeth_query_ipassists +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x48fbc3d1 qeth_core_get_next_skb +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x4b521a54 qeth_wq +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x4e9485dc qeth_qdio_clear_card +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x59df0cdc qeth_send_startlan +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5dbf1082 qeth_send_ipa_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5fe5adf4 qeth_core_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x63e2dfb0 qeth_dbf +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x6511a020 qeth_snmp_command +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x67edb985 qeth_send_control_data +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x6a9a7ac7 qeth_set_recovery_task +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x6afc1cfd qeth_prepare_control_data +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x6cce85b4 qeth_hdr_chk_and_bounce +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x6e8d735c qeth_get_stats +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x7a8757e5 qeth_clear_thread_running_bit +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x7d46a37c qeth_clear_thread_start_bit +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x7f9481a4 qeth_trace_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x80159cf0 qeth_core_card_list +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x82de9a56 qeth_check_qdio_errors +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x8697c40b qeth_recover_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x8fa4508a qeth_do_send_packet +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x906878c1 qeth_core_get_strings +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x90d9b580 qeth_close_dev +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x936604b5 qeth_threads_running +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x949b43b7 qeth_init_qdio_queues +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x958f71e3 qeth_queue_input_buffer +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x9dbade47 qeth_get_elements_for_frags +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa20c309e qeth_query_setadapterparms +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa43c38bd qeth_hw_trap +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xaa7915bf qeth_get_setassparms_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb2260dd3 qeth_realloc_buffer_pool +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb31bb0ea qeth_set_allowed_threads +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb48f9c54 qeth_change_mtu +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb6bad0bc qeth_configure_cq +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb96c4dc0 qeth_clear_recovery_task +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xba5e8b14 qeth_clear_qdio_buffers +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xbd7ef66e qeth_core_hardsetup_card +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xbeefff3a qeth_schedule_recovery +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc5f58f8d qeth_wait_for_buffer +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xca96cc88 qeth_core_get_sset_count +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xcc0efd4d qeth_dbf_longtext +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xd261d9fa qeth_send_simple_setassparms +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xdb5aa953 qeth_qdio_start_poll +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xddcd5885 qeth_card_hw_is_reachable +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe17a085b qeth_qdio_input_handler +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe3e816e6 qeth_core_ethtool_get_settings +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe826bee5 qeth_release_buffer +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xeb5f7f56 qeth_setassparms_cb +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xeb90859f qeth_setadp_promisc_mode +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xec9bf81c qeth_qdio_output_handler +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf03ac58c qeth_do_run_thread +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf23c60f9 qeth_clear_cmd_buffers +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xfa66bc30 qeth_send_setassparms +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0x01d54ff4 qeth_bridgeport_an_set +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0x7c1a9696 qeth_bridgeport_query_ports +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0xe78b13a9 qeth_l2_discipline +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l3 0x3346b25a qeth_l3_discipline +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0f1a66a5 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x13d48032 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3afe6dd7 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x545de76b fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x65975746 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6872ff37 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x693b1981 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7997c4b3 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7d99f9c8 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x83efe2da fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x954eae72 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xaf12a375 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbc8281a9 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc9ec6c63 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcbd7f4ad fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf9f757b1 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x317b165d iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x66eeda29 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7bc10a23 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9bd6953d iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc212bbb2 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd327fe4a iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xed087e8c iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x02631427 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0571ef50 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x05fcb649 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x080a165d iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x089c65ea iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x11a71c94 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x18419dc3 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1b34fe63 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x20f745eb iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b9057db iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2da232cd iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x36519b0e iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4470a991 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x495b7964 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4fb0a9ee iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x52abe5ff iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x54c629d1 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x60b646cd iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6820bb2c iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x75f17bf0 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a93859b __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7e5a32d5 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fa7f3b6 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x83160704 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x86376ff1 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x907d532b iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9ac9f61e iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa276316f iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xadf1ff0b iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaea8870b iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb87ad3b6 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc0486640 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcfe24846 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd32fdfac iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd54b0d8d iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd93d95c4 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdbba3138 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde6ee219 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe8cec58d iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xec94c082 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf4375152 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1816c141 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1986a9f1 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1a1ddea1 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2f49e1b6 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3afd3825 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3cf24cc1 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x684b2bef iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x81d20582 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8b09a884 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8d8196af iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8f64190d iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x99b75582 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xaa149eef iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb1246767 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb84ed4f7 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe0f1aa0e iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe2592f39 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x040f9f81 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0c70bcc0 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1063965a sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x108cbb8f sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2e7e1605 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2f0dab5b sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3d911c46 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x42cfc4e3 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x457fb324 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4cbee994 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x51503272 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x724562a9 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x89e9d156 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9aeee944 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9ec6d9fb sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa2d9474c sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa3bc99d7 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa61f8b37 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa96293b5 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xca084551 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd1b70e61 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd72353ab sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xee944d3d sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x02bb85f4 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0534bfa6 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x11499499 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x17465003 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x19d13cb5 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1a99abb1 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x26168bd7 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2d68a37f iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x377a5c64 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4779038a iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4e895e2d iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5113c25f iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x51cbbcc4 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x598b291a iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5a7394c5 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x63c3ee12 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x63f57e93 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x66cd7da0 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6b47f23a iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6dcb1f61 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6fbc4986 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7d6920d8 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x83243b42 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8f26d723 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x99df5ebb iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa761c65b iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaf6d5075 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb82b1e05 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb92e8eeb iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbbf47784 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc04fd3f iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc85e4266 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xceee5106 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcf883a64 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd10b3311 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdc0f94a4 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2dbdf48 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe7aa7f72 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xec25c893 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1210141f sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x37616161 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xab0fca68 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc1324501 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x93e64880 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 0x5424cf93 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x769a68cf srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xbfb4e658 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd159e9d6 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe5ef0623 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe6fbabc9 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x46e665f0 uart_insert_char +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xa2d995fa uart_handle_cts_change +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xff0de37c uart_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x06443b7b vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x08dce1c0 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x224a2cf3 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x296b615d vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x31588d94 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x31a8cfd0 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3cfac5c8 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4334bc72 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4e174419 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4ed4c496 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x551e62c5 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5fa1ab0f vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x616ed530 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x63027950 vq_iotlb_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x630611db vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6766e6cb vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6d34aa98 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x74521349 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7b63840e vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8861a7fa vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x89e7ecf5 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x95a20a24 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9696381b vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa2c69731 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaf198873 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xba59be49 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbe40d9aa vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc8263926 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xca65cac8 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcb20e232 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcd370e5b vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xce80008e vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdf319010 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe4e4a1b4 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe977b7e8 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xea57b0d6 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xef9499fd vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfe305070 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xff94d5b3 vhost_add_used_n +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9832c860 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xd5febb31 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xe78c9e0c dlm_posix_lock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x13ed5c86 fuse_sync_release +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x26bb95d4 fuse_get_req_for_background +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x3f40b424 fuse_do_open +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x4e77d435 fuse_conn_put +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x52b4de27 fuse_dev_release +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x578e7fa6 fuse_dev_operations +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x5848d06b fuse_abort_conn +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x99e04dcc fuse_conn_init +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x9cef10bf fuse_dev_free +EXPORT_SYMBOL_GPL fs/fuse/fuse 0xa89ea4ed fuse_file_poll +EXPORT_SYMBOL_GPL fs/fuse/fuse 0xacb0d459 fuse_request_send +EXPORT_SYMBOL_GPL fs/fuse/fuse 0xb1fa0856 fuse_do_ioctl +EXPORT_SYMBOL_GPL fs/fuse/fuse 0xb3258970 fuse_put_request +EXPORT_SYMBOL_GPL fs/fuse/fuse 0xb6684470 fuse_dev_alloc +EXPORT_SYMBOL_GPL fs/fuse/fuse 0xbbe64aec fuse_get_req +EXPORT_SYMBOL_GPL fs/fuse/fuse 0xc3d331e5 fuse_direct_io +EXPORT_SYMBOL_GPL fs/fuse/fuse 0xc9eddd60 fuse_request_send_background +EXPORT_SYMBOL_GPL fs/fuse/fuse 0xdc995a65 fuse_conn_get +EXPORT_SYMBOL_GPL fs/fuse/fuse 0xf747f865 fuse_request_alloc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1f3bc0d2 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x53c25a39 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa3debcf3 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xada03ae6 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd2b6384d lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd413f774 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd90f71da lockd_up +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00ff2fe3 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02ed4cae nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x039a8f4c nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04cb5fb8 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05142b5f nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09d52c31 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09eafe83 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a1188fe nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0afdeae9 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f58a500 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10660677 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10abad2a nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1443f96e nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18f638fe nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19aaefab nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19d18f37 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b202d7e nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c4a377a nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c87a704 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d44b462 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d6e50f6 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1fd2f135 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x236e461f nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25cbd563 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28950510 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2898f54f nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2971d033 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d59015c nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31bfa602 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38813a8c nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a8f2661 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3aa2e91c nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b5303d9 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ea0bd82 nfs_access_set_mask +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 0x431f2ece nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43921e89 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44fa4281 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4529c3e5 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x548a4914 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55a079cb nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x576a98f5 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x589c9ee5 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59f952ee nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b89033c nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62bd8600 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x633525a2 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65155064 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67417324 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69853cc8 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6aa2c7cc nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c1372a9 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e06b256 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x730ae1a0 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76535607 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76ae61c8 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b86601c nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b870d1e nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7be661b4 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cb7a59f nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x817867bd nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8180203c nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x856bc361 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x889d2098 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b3718f9 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d31b747 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e3cd7bc nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f149dd0 nfs_do_submount +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 0x94af0ce5 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96bcd724 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x973bf043 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a3498f2 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ab846e0 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9aedd071 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bcea628 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d591359 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e65fd89 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f4836ae nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa02637e8 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0b6bcda put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0f88330 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa208dcc6 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa30a8a42 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4c3d96b nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5579012 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa71b3b18 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8ba835c nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8dd19f1 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab0291c0 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadea2a20 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae76cbba nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb02627b2 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb117839f nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb17e89f5 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3b026c7 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb68b9e06 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6ba351b nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9271d24 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba55b91c nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbc9359b alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcee3ced nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc79aa121 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb8e258f nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbf6280e nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd7c77ef nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce3e2eb4 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce864719 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2105c66 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd30ee1b5 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3aaee37 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd785d727 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7a7a2ba nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7c50773 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd807e544 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9e63c95 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3d43fe0 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8de676b nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9035142 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9059343 nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9492081 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec70f04e nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecb5d2fc nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed8b250e nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf00c23aa register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf26bee25 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf63caf5c nfs_commit_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfab770fe nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc04b52c nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd22ea01 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfeb31a47 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xe51efc67 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0117e74a nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0adef802 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x132c6e41 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x14cdbee8 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16e2c106 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x17de7fa3 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x182ff320 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x19e33b8c __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22fa421b pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27a5e048 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a09d111 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3017c50c nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x329b3bbe nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34705245 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3638d586 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x410bcb54 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44fe8580 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4887b474 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x52669392 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x54abc897 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55e4b7ae pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55edb982 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56863f8d nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6835cbba pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69ab6a40 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69ead4af nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72182127 nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f26adf6 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x812bee01 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8136561b nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85dccfdf pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8690391e pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ca53fb1 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d35afa1 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e761f91 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x90a587c9 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x975c26c5 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e8baf17 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa58ddadf nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaa5e7111 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xafde1d1b nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb3f23cc4 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb492c4b1 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb96c9888 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc38423d nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc207ccf4 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3331772 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc72761dc nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc72e9b30 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcac10c5e pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd6875f0 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd063d525 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd22a46c3 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd2d45418 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe39658d7 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe3a763e0 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe4ede82e pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf11b9111 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf2fd909d nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf828be00 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf8bc01f6 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd790cc0 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x22c492c8 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x552cf41c locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x6659b464 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x0ad6fc14 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xcf438ff7 nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x05898fc0 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1439acd4 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x305cecb5 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x521e0726 o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9396a5f7 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1ae48e1 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb4d79f3e o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4a0b90c o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc7989918 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +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/dlm/ocfs2_dlm 0x1022c2cc dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3c29cb3e dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x975186ac dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb7d85501 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc50724cf dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd21ed641 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 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x269d63fd ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316904e1 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3bcef5f3 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x40718c92 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4226705d ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x424241c9 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x8a5b39c1 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x8aca87c4 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x8cb40bf5 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf9068ab ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe9de6f1e ocfs2_kset +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online +EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x51355ef5 _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5346b23b torture_shuffle_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0x6364b2f0 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6bdeda8f torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xa03fe770 _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xc1361afc torture_onoff_cleanup +EXPORT_SYMBOL_GPL kernel/torture 0xc6527045 torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xd1fa8f65 torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xe9ff1468 torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0x1ce013cf sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x0d22f116 sw842_decompress +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x1bed1cc6 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x411a6078 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 lib/test_static_key_base 0x096acf0d base_inv_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x0ea96336 base_inv_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x23bf768a base_inv_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x28a031c0 base_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x5a14472f base_inv_old_false_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x71398562 base_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0x90ae1c4c base_old_true_key +EXPORT_SYMBOL_GPL lib/test_static_key_base 0xec4c111e base_false_key +EXPORT_SYMBOL_GPL mm/zsmalloc 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL mm/zsmalloc 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL mm/zsmalloc 0x958df3ac zs_free +EXPORT_SYMBOL_GPL mm/zsmalloc 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL mm/zsmalloc 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL mm/zsmalloc 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL mm/zsmalloc 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL mm/zsmalloc 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL mm/zsmalloc 0xfb060749 zs_malloc +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x14a9dccd lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x6b560e11 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x3a94bcc0 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x4d1a3305 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x72af9f76 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x8e9df912 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x93c6576c garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xef15aaf6 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x3060a4d1 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x35fe5656 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xc23ac698 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xcfb0a7c1 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xd767a7df mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xfb0a5768 mrp_register_application +EXPORT_SYMBOL_GPL net/802/stp 0x6fe8a485 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xe27cf22c stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x51afa379 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0x5c5e459e p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0bfb5287 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4d7794fb br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6776b331 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x67c11e7a br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7a3ad26e br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd6151e50 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe0f20dbc nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe2bd9eb4 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x7fcebb9f nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x98293bc4 nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/core/devlink 0x01b0f0ca devlink_port_type_clear +EXPORT_SYMBOL_GPL net/core/devlink 0x07704828 devlink_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0x10b5fb80 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL net/core/devlink 0x1814a0b9 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL net/core/devlink 0x1dd31bc0 devlink_free +EXPORT_SYMBOL_GPL net/core/devlink 0x61309710 devlink_sb_register +EXPORT_SYMBOL_GPL net/core/devlink 0x6f1391f7 devlink_port_register +EXPORT_SYMBOL_GPL net/core/devlink 0x6f348a2c devlink_port_split_set +EXPORT_SYMBOL_GPL net/core/devlink 0xb8aa8da3 devlink_sb_unregister +EXPORT_SYMBOL_GPL net/core/devlink 0xcdb8d35b devlink_register +EXPORT_SYMBOL_GPL net/core/devlink 0xd37fc8f1 devlink_alloc +EXPORT_SYMBOL_GPL net/core/devlink 0xe16cfb53 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL net/core/devlink 0xfe04ea80 devlink_port_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x08f93688 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x13e1204a dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x142bcd62 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x22d09608 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2f321300 compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3c8a90aa dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3e24691d dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x42ab110e dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5c3badda dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6d349fc2 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6f42233b dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x75e7099d compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7b097377 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fbdad8a dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x855d7b18 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9eb72513 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9f71e6de dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa143ef84 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa9dab5bb dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaaeb2c73 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xab34429f dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb2bbbbfe dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb3229f95 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb59365c7 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb7968462 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbbaa8d6a dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbce3c34e dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbe184e10 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc421f06e dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc5eb9dff dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc96b5c32 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd22e36ab dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd5e0cef6 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd7163857 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe26a6f88 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xeea79baa dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3a9c915f dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3cc5b55d dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x645c1039 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7c1256a6 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x97e895ab dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xaf6fb13f dccp_v4_send_check +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xbaf36c47 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd58dfa29 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf90c1716 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf99b1aa5 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xfba1f4fe ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ipv4/gre 0x112bf4e8 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x68c8daa6 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x16086a0b inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4c829a4a inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5c6eb808 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x733c7f2d inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7af7e060 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc0c79d96 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd7859f75 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe4ad3eb4 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe95692eb inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xe9a160ed gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x121597a6 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2c928384 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x36a55b5f ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x396fa2ab ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3a30adcc ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x452ebbce ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x46437852 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5d046fe0 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x67e54bff __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x82c9f0a3 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x93882732 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd26b3091 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd5c277ee ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfa3553f2 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfc42f09b ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x125b1311 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x0f3ad1dd ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x34e2ede4 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x1b906904 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x56b6be80 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x871a704c nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xa3e36c29 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xfdb56e19 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x0f3f86dc nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0x3f5c468e nf_nat_masquerade_ipv4_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_masquerade_ipv4 0xfedbf252 nf_nat_masquerade_ipv4_register_notifier +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x05daf18a nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x191bf356 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x1c1fbb63 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa303dd4f nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xaf3e7dbc nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x0f363441 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_nv 0x0daeafab tcpnv_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x6d9c3021 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8b3fbc36 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb27f9ece tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb716507a tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd87812e5 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0ebf8bcd udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1bf947d5 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x26a62651 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x70ad709d udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x74d3cf57 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xab211149 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbb3a9377 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x08658bc6 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x125f6115 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xbab4fb76 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x1a68ad7d udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x5bbe732f udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xb9986504 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x54c3f380 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xd8fd83f2 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x30ce5cc5 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x7e8aba65 nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xab6a5ec4 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xe751c528 nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xfd4b52e5 nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x2293972c nf_nat_masquerade_ipv6_unregister_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x38d4401a nf_nat_masquerade_ipv6_register_notifier +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0xdf4b9718 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x348da4b8 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x736f6c2b nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8235817b nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd607f02a nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe5052939 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x6a767b0d nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x147ec8f5 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2d6c2652 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3fcd2ba3 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7072a554 l2tp_session_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7501504b l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x781dda52 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7c7d96e9 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7d7d416c l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x86a82553 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x93797f57 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x940230d6 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcc405d80 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd1541e32 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe8759fb1 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xef684bf6 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf684e26c l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xe20cb1ba l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4a233bab mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x66414adb mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9d2eb826 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xea989032 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x087179f2 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0b2310aa ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2baef702 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2e13481b ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3fc773bd ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5ce344b9 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x65022698 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7115be39 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x795ade57 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 0x85ce834f ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9a417946 ip_set_type_register +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 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xaaed083a ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xaca39ac7 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb151aa53 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc15f73ab ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe82b5b0c ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf6d3d66e ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x234bd8d0 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x4b5453d0 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7e42c1d4 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x8a82f659 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0083aa05 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x061f48bc nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bbd5252 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ed05487 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ef03ee1 nf_conntrack_get_ht +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x100b1a6f nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1079052e nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11786dc4 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x148cb253 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15cea3e6 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16535106 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x170b561a __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1724b3b8 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17e54255 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1984cc80 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2217769a nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2243e494 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22952b05 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23fba4c2 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2518ee35 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27f61bde nf_ct_invert_tuple +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 0x2f5d2254 print_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x316144d6 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33691303 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x372a7df5 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c05257e nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d3f653e nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f85b0a5 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ffc9881 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41f6671c nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x456217ce nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4eec8215 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x585a2f6e nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c2ce754 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5cdc3c83 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5f528eea nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x641bdb4a nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a539c67 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b065ff5 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d037c83 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72ebf788 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7754754c nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7e8f338f nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82acf1ec nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85b0cacd __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87857d52 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88e1bcb8 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8bb8f011 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8d7062a0 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f24af7f nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90f853d0 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91102645 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92382ae4 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x94ac9580 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x95bd3a49 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x966e0452 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9811addf nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99c110fa seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e07a54b nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3451384 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae4afefc nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaecae934 nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb369734d nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7d8a27b nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8c329a0 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbad2fd9a nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd12cdfd nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd5d1998 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe061983 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc04f63cd nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc31fbb30 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc91b57de nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd172fdae nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd552714e nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd6f61c66 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd826a49d nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc1b8933 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xddee1b87 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf357c77 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0457a46 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe29b38d5 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xecca2c31 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee649f16 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf3dabac1 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfce2a6fa nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xf8074ada nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xdce13f2a nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xfad32685 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x06e10830 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5957e149 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa80a930f set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdf843199 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xec4dff97 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf370a07f nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf5e67d45 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfc6917dd set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfcd1b24b set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xff254e8a nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x23e1695a nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x32c6cfea nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x945384ea nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe4c79cb3 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe7616231 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x30939bb9 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xa32841a2 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x10b2c449 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3cc65077 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3f542cdc nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x51d11230 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc5df3b8b ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc8ad14fd ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xcdcb2e8d ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xb682bd53 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x6967ca4f nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xe7730e19 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x71d61e7f nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xc2147722 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xca2fe553 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xf5dd956e nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d9bae4b nf_nat_l4proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x19643d5d nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3772cc81 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x402cb4b6 nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4829c05c __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6921c18f nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6d2f290a nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb0f46fef nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb49ccf65 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdc208a98 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x723e4d64 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x76e6c02b nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0c640f8c synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11a006b5 synproxy_check_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5f339439 synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90298227 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef5f1837 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0725e82f nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x34607d91 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x34707c32 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b1d0c7 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4f7da560 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5a672691 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5c797afe nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x61b83dfb nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6f2861da nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x70a0da22 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7a90ec94 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x858def3b nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x887e23f1 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b5ed445 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9aaefdd6 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa1122512 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb0f77d43 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcc96bd56 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xce529f7d nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe48adc81 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6b82941b nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb16aa75b nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xcc383667 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe13f02df nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe48d9491 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xedd16902 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x2789c649 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbd178c30 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xccdfadb2 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x3f4a28b1 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x17dc4d3c nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xaad3d760 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xfeb70a9e nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x284ed9f5 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x7dce5376 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x9feae4e2 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xa5753a2d nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xa8336478 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xdce1836a nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xe3c22275 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xe89e0c48 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x362f43fe nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x5ea01e74 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x64fb783d nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x42ceee78 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa5c46a54 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xddf15889 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe1190022 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x19404934 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x258d802a xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x273a48a3 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3e14227f xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x52259e26 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5713b669 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5dd941ee xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x632532c7 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x640f8adf xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6e026d57 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x75d7e62b xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x79cab9d4 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8be79e2b xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa002ec06 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbde2512a xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc5ca17a4 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc9aa3430 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9b9ac8a xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xff786b00 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x7c470866 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xc0f395bf xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x08b13638 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x49147bff nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x72f3f0b6 nci_uart_set_config +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0e73ef68 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x19c23cd7 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1a102050 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1df4e1cd ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2f5ed031 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x602757c4 ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7eba634f ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9f29a61b ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf713b637 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x0b598d51 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x1b7c306b rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x20e427e9 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x2bf34177 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2e2a1359 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x368ec3ac rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x39aae186 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x3b476327 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x48df5290 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x58643a85 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x63778597 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x722112f3 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x84b46e1d rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x864d4e84 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x87b2ea96 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x8dbc4efa rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x94eb7e9f rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x9c5784f5 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x9ff40b41 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xafadb6d8 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xbbd6118d rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xc1c8d0fe rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xc2da8e38 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc6575d9d rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xceb78e43 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xd14dad2a rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xd2c7a565 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xdfc6ac20 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xf327b406 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x1885468b sctp_for_each_transport +EXPORT_SYMBOL_GPL net/sctp/sctp 0x27b9f86c sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x50c3e09e sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xc6d10b24 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x68afdd3e gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x707e54fd svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x87ae61c8 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01e57a9c xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03c9a463 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +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 0x0685b532 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08683648 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x090f03fa sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09716e0b xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ad82cb3 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b53b08d rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1481cf37 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x148e4d37 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x154b5dd9 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1670bdf3 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1912d89e rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a4f626d rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b95d342 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c677d7a svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ca2196d gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d67c73d rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e8317cd xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f84da65 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f95d8c4 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fe32358 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21646f27 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21c8bbb2 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22155aca svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x250ab9a5 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ab513ab rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ba8706b svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c88b1ef put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2dc6ca74 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e49b882 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f6b5a06 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fa5ba05 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fb5c824 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x302a9682 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35afbdbc svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35c7861a xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3662c490 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38cf5866 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38e09a1e xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x392502e8 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ce40d4b rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d904aed rpc_cap_max_reconnect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41a4633e rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x422184ac _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x425ece37 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x428e15b9 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42dd4e3c svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43d200c8 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43fccdbf svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4448a5c4 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44c4c28a rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45ec3053 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46328e15 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47ab2514 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b1dd5df rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e1771f5 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x529899ad rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52f27bde xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53e6ccd4 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5445d254 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54a670a3 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5530b68a xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x555f7303 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5683aaa0 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58d20152 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59c664d7 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a644c7e rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b3541dc rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bd1b8e8 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5da6df8a rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5faed710 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x631a8b39 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64148625 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64c1c459 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67a43bb8 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68ccce59 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f312158 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6feb7dcd cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70474967 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71708fcf rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73860e7e svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73f28ced xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76734bce rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x772113c4 rpc_lookup_generic_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a4863e7 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f3f24a2 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81c32996 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86a3c1b6 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88b51863 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88fc04d2 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89a529dd xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c2c0cc9 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c808cdb rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d02781d cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f6fbc56 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90780903 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91719fec rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9248ec6e svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92a0b44c svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x933762e9 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93ef068d auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9426c560 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9434b7ae rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9472e08a rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9574ecbe unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x959ea51c svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98f1d6ba xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99b8542a svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d333cd9 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dd4172b xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f598c9b svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f63921c rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f7daa98 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2b114bc rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa39928c9 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4fcd9af cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa57654ac svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6c5781e rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7d1c9f2 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa83dea1d xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa10695e rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa1a6cad rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa4d59d4 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa68289c svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa895edf xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaab44c46 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaecb973d svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaee12aa3 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafadb7f3 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb31d3d6b rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb31e6444 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb321982d xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb43b371d cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb52a38b9 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb593fb9f xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5e416e7 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6a1690e rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6debdec sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb81c70e9 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb834ff5d rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb86ad0b7 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8b21e3b svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb91c1d0b rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba13fb20 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba94f929 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbd1452d rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd859135 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd9962ad xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe010aaa rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe63cc7e xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf1bb61a rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc071b056 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc152ca94 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1ade2ed xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1e605cf rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc217fd40 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2df98d7 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5d568f1 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc62f809b rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca53336f rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca79e77c rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb7f8e02 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd5ee5c2 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcda6fe1b auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcde4f1b0 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfcd6845 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfdcc957 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0b1b6e4 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0ef6c5b xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd11c2ad2 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2c20437 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5cebe15 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6eca148 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd92b63b7 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb37d389 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb746fb2 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbb4f9c6 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc36f214 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd62feb2 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde30c013 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde3201bb sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xded44029 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf498de0 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe193b5c3 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1d336c7 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe395c2c6 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6d7db54 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe719b547 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe93a98aa rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xead00524 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec482e19 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee70cbae svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefd2a1e8 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf076ba5a svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4b7bf71 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf54b8bac write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf72d0656 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf76b0b86 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7aff936 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa0247d7 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfaf89fb7 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfde873fd rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdf6ac30 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe568802 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe6050c6 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe7467f6 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0409e852 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x14eb3f21 virtio_transport_set_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x15678f52 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x27f41ec8 virtio_transport_get_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x39f1bcba virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3a0fb6f5 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3beebfec virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3e8b3935 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4db5c3c3 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5124d8a2 virtio_transport_get_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x58018731 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5e629f04 virtio_transport_set_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6aa76d1c virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x70d25550 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7820e0e2 virtio_transport_get_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7dd73a1e virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x83c80831 virtio_transport_alloc_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x884339da virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x98d42558 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9be4c04f virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9c095419 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa1f61893 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa4bd4e10 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa9aaf861 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa9bac06d virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa9e289e1 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd1dda68b virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd75a0cf1 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd841cf1b virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdae34c79 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdf8b9c4d virtio_transport_set_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe16ca3f8 virtio_transport_stream_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe241d26e virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe7c67ccd virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xefc07d85 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf072929a virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf4763949 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfbdf50b3 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0017edd4 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x188e4bce vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x409e1e2d __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x518865a1 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x58cac496 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6170e8d3 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6d7a03c6 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7290e95e vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x97225015 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9f9afb62 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa0c178e5 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa40cdff4 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb50443fe vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcc07ab1c vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdca4cd2c vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf68d44f0 vsock_remove_pending +EXPORT_SYMBOL_GPL net/wimax/wimax 0x1c2f1b06 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x2108c638 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x2e2e812f wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x3990875b wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x475745b1 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0x6077cb60 wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xaef875c5 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb3f8ce87 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0xcd636612 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd0d98ef4 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0xdb65edc8 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0xebb1d926 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xffd46885 wimax_msg +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 0x3bf471d7 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x47b34e60 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x60b73277 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x834ba96d xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xa6e66685 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaa762fe2 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xad1b60ed xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdbfc35c8 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xdfea3a6d xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x1f158fde ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x8966bd4b ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x9c4aad90 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xa5553b29 ipcomp_init_state +EXPORT_SYMBOL_GPL security/keys/trusted 0xf315975e key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0009ad3c security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x0025d1a3 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x002cc7aa dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x0046a618 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x005e7b12 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x00b783a9 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x013b42bf blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x013b684b visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x01413c5f css_schedule_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x01535e85 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x0188719b regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x01b48869 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x01ddfdf9 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x01e588cb ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x0220a7c3 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x0236a6c8 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x0271c993 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x0285fba1 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x028ce93f irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x02931659 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x02a4bcb1 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x02ebef25 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x02fedbeb handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x030df953 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x0319411e alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x031b3287 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0323c73c pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x034d65c8 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x03837b3b user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x03a4924a xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x04052950 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x041ecd57 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x042c71ce fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x0451b625 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x04637898 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x047a8e34 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x0491072c device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x04962f12 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x04969885 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x04b5549c __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x04ba370a blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04ea8706 __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x04eb5f98 ptep_notify +EXPORT_SYMBOL_GPL vmlinux 0x0539bf82 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0557dfdc crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x05899bd5 security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x05b81da6 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x05d4adeb blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x060bccd9 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x0651da26 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x0658097f net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x065df539 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x0687fbb4 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x06a16b84 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x06b3016b vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x06de88bc inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x06ebe3ac ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x06fbb223 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x073841e0 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x073e73b1 disable_cmf +EXPORT_SYMBOL_GPL vmlinux 0x075a9915 __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0x07ae7ec2 appldata_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07f09ae9 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x07f6da9f flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x08011fcb blk_mq_reinit_tagset +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x082f5aa4 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x08bade4e blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08bc295f __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x08da4197 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x08f6cca4 css_general_characteristics +EXPORT_SYMBOL_GPL vmlinux 0x090ae864 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x09155cdc aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x0938f5d1 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x093a0d2a pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x09500ce1 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x09515015 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x095a47cf platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0961b62e public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x097d6a4c fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x09aae026 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x09acde80 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x09c85108 __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0x09ce9fe7 bdev_dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x09fb11ca transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x0a2c5599 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x0a5b2cde pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0a8eca2a platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x0a92f17b ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x0ab2ca26 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x0acdef73 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x0aedab88 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x0af87be8 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x0b052e32 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b127d97 security_mmap_file +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b4c05f4 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x0b6e1ee6 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x0b962d74 gmap_disable +EXPORT_SYMBOL_GPL vmlinux 0x0bd178f5 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c259e0a ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c4f572d driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x0c60e437 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x0c7596ad bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x0c896806 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x0ca18dee pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x0cb873db metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0ccd772a btree_merge +EXPORT_SYMBOL_GPL vmlinux 0x0d217949 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x0d477edb raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d5fb9e8 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0da76326 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x0dc80dd2 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0df24273 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x0df9cf6d irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x0e105ec8 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x0e6c0870 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x0e81b697 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x0f2b79b4 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f60086d kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x0f69af01 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x0f769da2 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x0f80a7a0 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0f95f6d6 __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x0fc90740 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x1000bee5 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x1003a17f sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x1007be1f l3mdev_get_saddr6 +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10339722 zpci_iomap_start +EXPORT_SYMBOL_GPL vmlinux 0x103f56d7 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x106fae5c subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x10aa2cb8 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x112473de pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x11254b69 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x11255dd8 path_noexec +EXPORT_SYMBOL_GPL vmlinux 0x113e0122 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x1143ffa7 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x1151e242 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x11bfbad3 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x1202c7ba register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x125ca0e2 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x12c98940 gmap_shadow_pgt_lookup +EXPORT_SYMBOL_GPL vmlinux 0x12e4ea87 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x12f4ccf3 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x132999ce crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x133b57a3 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x13679f6a cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x136cb2f9 inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0x137058bd dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x1373fc11 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x137d8a79 get_ccwdev_by_dev_id +EXPORT_SYMBOL_GPL vmlinux 0x13a12dfc pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x13b71f68 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x13ddf5a3 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x13f8e59a fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x14043b30 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x1407f965 securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x1442b5e8 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x1496376a bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x14bc3304 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x14d78a8c attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x157a488b ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x157bc422 s390_enable_skey +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x15901b8d cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x15adaa2c __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x15e5f232 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x15ef76e2 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x161edc82 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x1633c794 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x165fa8fe devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x1673f21b crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x1695e8e0 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x16cf30cc shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x16e48228 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x17054f3e dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x1708b598 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x171e1b1d inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x173805d5 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x179c1802 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x179fb965 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x17a72cc0 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x17aab8c6 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x17b2c255 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x17c05173 add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0x17cd7b50 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x17f936d6 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x181be352 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x181efec6 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x1823639e blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x183879f7 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x18495c0a device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x187b7055 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x18b82e0e kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x18eb4cc8 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x18f6a474 gmap_discard +EXPORT_SYMBOL_GPL vmlinux 0x1910e566 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x1922479e single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x194d90d3 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x195e3be8 __dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x196a49be free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x1970c5a4 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x19716ab2 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x198cc2ad pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x199792af hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x199bf481 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x19b03e22 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x19b5904b device_register +EXPORT_SYMBOL_GPL vmlinux 0x19ef4098 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a3dbe19 tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x1a711612 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x1a992b85 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x1aadfa44 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1ae39164 netdev_default_l2upper_neigh_construct +EXPORT_SYMBOL_GPL vmlinux 0x1b0d43a3 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x1b1beeb6 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x1b6c5a67 chsc_error_from_response +EXPORT_SYMBOL_GPL vmlinux 0x1b94ddea rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1bc2382c device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x1bc3e4ac blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x1be584cf dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x1c132024 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c688454 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c863089 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1ca7258d gmap_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1cb5bd17 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x1ce801ae pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d461e8a debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1d822402 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x1d9c838a kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x1da7ef2c bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1dcf494a devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x1e4cfd3d tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e5c5ea1 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x1e665b8b dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x1e6fc67a pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x1e7576de __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ee4d544 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8d71c4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f93de4a inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x1fa32b9b rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x1fb99f31 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1fd3c677 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x1fdfd85d iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x200afab3 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x200cabd7 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x200e9f36 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x2012a1bb __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x204936f5 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2050f9cb irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x2065e04a msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x20ae4864 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x20cd3a47 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x20ff0dd2 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x216ae5e3 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x216cd645 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x2194dce3 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x219d28d9 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x21a054ad __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x21a92b9c event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21ae4ff9 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d7a756 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x21e6bac4 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x2255aaf5 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x22716936 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x227c8d9a subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22aca58f single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x22cf5561 ccw_device_force_console +EXPORT_SYMBOL_GPL vmlinux 0x22e00f37 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x22e20b10 chsc_siosl +EXPORT_SYMBOL_GPL vmlinux 0x233f5316 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x235ffb32 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x236260ad pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x23751731 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x237d59f6 zpci_load +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23b0e9f5 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x23c8b358 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x23df976a crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x23f92ab7 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x24104db3 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x2412d103 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x241bfd9f zpci_store_block +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x244ce81d virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x2452ac45 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x245bf8a9 jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0x246abd45 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x24970b23 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24c6beee nr_iowait +EXPORT_SYMBOL_GPL vmlinux 0x25021fc3 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x252002ed gmap_shadow +EXPORT_SYMBOL_GPL vmlinux 0x257dfad4 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x257ec28c map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x2592e327 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x25aeeff8 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x25fbe296 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x2607a61d css_chsc_characteristics +EXPORT_SYMBOL_GPL vmlinux 0x26453eab cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x2669f4b8 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x2688a9e6 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x26a028bb platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x26b1e039 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26f2179a tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x27028c18 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x2710d4b4 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x2713b85f pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x2718a5d6 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x2789b55c __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x27c8f334 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x27ec0fdb tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x2815de0b shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x28204e68 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x2824c73a rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x28277050 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x2857b764 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x28620ad9 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x286c388b blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x28780fb7 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x28998bf3 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x28a93cc1 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x28bc4026 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x28bf5317 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x28f1d3ae crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x28fdb2e9 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x290917f5 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x291fefa0 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x292d838d devres_release +EXPORT_SYMBOL_GPL vmlinux 0x293b5255 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x29464cc0 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x29542924 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x297120dd srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x297463e4 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0x298c4fd3 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x2996a0e5 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x29c31ff6 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x29de2171 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x29e0571e inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29fe5179 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2a1538ca lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x2a5197ce blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x2a64df14 open_check_o_direct +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a74d6b0 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x2a8d530c tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x2a903637 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x2a927260 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x2ad5621c dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x2ae3a799 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x2af48629 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x2b0a9b22 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x2b272d47 gmap_register_pte_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b28431b crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x2b6c5680 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x2b8ba718 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x2bad91fe ipl_info +EXPORT_SYMBOL_GPL vmlinux 0x2bba94db tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x2c15c307 security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0x2c28cfdb klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c7d13e2 __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2cca609a blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x2cd06126 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cf2864a crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d7c73b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0x2d9dbe92 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x2da6b14e bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x2da91e90 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x2db266b7 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x2dc1d419 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x2dc7a05f __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x2dda9dc6 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x2df1ba0d memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x2e1566cf tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x2e1d43cf lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2a42c9 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e3cd33b cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x2e62b669 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x2e8b3c70 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec52888 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x2ec92012 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x2eea20d1 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f5592a2 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f729be9 security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0x2f949e9d smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x2fa0bed1 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x2fbfc71e pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x303bbad0 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x303dfc5a ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x30a30250 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x30aff469 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x30cfdb08 devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x30d6d28e regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x30feaf8a pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x3100657a exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x310d8534 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x312d8c30 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x313f1613 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x31c6d8ff page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x321b59bd sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x329f4b3f tcp_orphan_count +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 0x32efef2e __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x3344885f crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x3353f6e0 scm_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x335e1040 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x3365e22c get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x336a39b5 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x3386aafc wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x33efd87f debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x33f62439 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x34096aaf preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x343dd97c regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x3452d822 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x3453f8b0 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x34557952 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x3456f2b7 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3470110a dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x34734cb9 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x3487df9d __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34ba2488 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x35188b7a unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x35220c4b security_path_link +EXPORT_SYMBOL_GPL vmlinux 0x3527ed54 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x356cbff1 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3590006d aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x35a86ccc trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x35dfdcd7 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x35ec33da hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x35ffdd16 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x36149794 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x36351c79 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x364777ee visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x36515475 vtime_account_system +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36cf5277 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x36d46b83 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x36d91474 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x36dc7a54 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x370ff2d2 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x37287b5c kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x373198d5 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x37b72c8c regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x381da796 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x383fe278 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x386a7d1e inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x3880b445 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x38a73f21 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x38c37efc driver_find +EXPORT_SYMBOL_GPL vmlinux 0x38eb467a __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x3926f949 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x393ffa6f asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x394454c1 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x39676120 sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x3985e42d watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39987704 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x39c2b478 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x39cbefde pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39ea250d mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x3a09a4c6 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x3a14ddbe irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x3a4b25ba rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x3a4d863a iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a5ba1e7 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x3a7b958b wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x3a92d611 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x3a95661a srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa1d435 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x3ab93afa dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x3acd69c3 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x3afaf664 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x3afcf452 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x3b13806e __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x3b42bc92 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3b4b7ee9 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x3b54070f iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x3b84d699 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x3b8c737d unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x3bb156a4 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x3bb6389e wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x3be15e75 return_address +EXPORT_SYMBOL_GPL vmlinux 0x3be3d0d0 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x3bfd3bdb virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x3bff1274 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x3c0ad67b pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x3c688257 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3cc60807 evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0x3cca7499 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x3ccaa383 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cfdc7fe device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x3d02f437 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3d0b9e27 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x3d2206e4 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d95719c dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x3d95cb60 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x3db56b58 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x3dbcd03a device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x3dbf3a10 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df77bfa blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x3e1b383c device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x3e2a15db pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x3e3d7947 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e7e3420 add_memory_resource +EXPORT_SYMBOL_GPL vmlinux 0x3e85ffc9 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x3e948de9 unregister_reset_call +EXPORT_SYMBOL_GPL vmlinux 0x3eb71be3 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x3eba7d19 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f088957 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x3f1a652e regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x3f35bc54 blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x3f37195e raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x3f915794 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x3fb17a1b gmap_shadow_r2t +EXPORT_SYMBOL_GPL vmlinux 0x3fc6a9de tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x3fd2f6fb chsc_sadc +EXPORT_SYMBOL_GPL vmlinux 0x3fe2b233 debugfs_use_file_start +EXPORT_SYMBOL_GPL vmlinux 0x400de605 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x40c5d043 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40f4b0e1 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x4110e364 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4113d794 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x411e34c7 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x4141708a blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x4155d915 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x415a6e7f __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418657fd inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x4187c7be security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x418e94aa iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x41996708 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x41cc82a9 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41dbc4d9 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x4202b1ac dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x4246424f devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42ce7ebd aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x42d2ddd1 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x42f2edea kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x43005538 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x430e6b76 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x43107b3d dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x431b51e0 blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x4351573a dump_trace +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43c33665 isc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x440f0e9e debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x4424bbdc sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x4424f103 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x4453703e kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x4458dd80 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x4472be9b debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44a08253 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44ea2b90 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x44eb3994 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x450655bd unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x451e4edd regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x452b89d8 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4536e8b0 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x453ac28e cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x455c9b10 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x456cab38 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x45a5ef25 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x45ae1974 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x461b744a md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x4623c84c fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0x462db45f blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x4668e4ed l3mdev_get_rt6_dst +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46a04864 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x46fcbcd4 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x470df937 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x472e1da8 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x47337827 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x476882e1 find_module +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478b5510 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x47bb2991 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x47bfe226 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x47d0f55e posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x47fc15ef zpci_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x482d5c88 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x483d459b crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x485391ba irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x485570c2 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x487d36ea percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x489c9f62 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x48c62e4a eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x48ed530a security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x49012aff sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x494e6a1c virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x499d5d41 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x49cfacf1 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x49d22dfe udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f116ab __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x49f34aea device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x4a36a936 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x4a572a4a gmap_unregister_pte_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4a58221c dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x4a6538df hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x4a777a94 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x4a7998ca pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x4a81b600 ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0x4a8e0463 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x4a9a4169 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x4aa5bfaa ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4acdb0ae regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x4ae06355 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4af9a9ca crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x4b18565b static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x4b2f84be __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x4b434be6 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x4b748f0f pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x4b840dfd probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x4ba646da regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x4bc99708 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x4be8e496 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x4bf1cf5b list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4c56292a pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x4c57af4a tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c65af8c devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4c6d8410 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c87c0b0 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x4cdcdba8 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x4cf36aa3 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x4cfe690b __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d17415b user_read +EXPORT_SYMBOL_GPL vmlinux 0x4d225551 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x4d6ca1ae __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x4d7c3e0d __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x4d84608c tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x4de7da40 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x4e0ef58b crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e26f118 dm_use_blk_mq +EXPORT_SYMBOL_GPL vmlinux 0x4e2c4af2 security_inode_readlink +EXPORT_SYMBOL_GPL vmlinux 0x4ea0649a tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x4eb30f9c perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x4ec153c6 nr_running +EXPORT_SYMBOL_GPL vmlinux 0x4ec96089 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x4ed18512 __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efa0d70 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f415bc0 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x4f43739e bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x4f54814d securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x4f558b12 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f883064 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x4f96d948 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x4f9bc0ab hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x4fad41e6 cio_update_schib +EXPORT_SYMBOL_GPL vmlinux 0x4fc539b5 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0x4fc68b53 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x4fd9eff7 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe5c03f __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x50377a04 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x504300e0 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x505c5bb3 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x5071fc8f pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory +EXPORT_SYMBOL_GPL vmlinux 0x5082cccf device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50c72866 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x50d3f4dd xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f716f7 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x516dc39e dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x516f4437 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x519549e3 component_del +EXPORT_SYMBOL_GPL vmlinux 0x51fe9140 netdev_default_l2upper_neigh_destroy +EXPORT_SYMBOL_GPL vmlinux 0x522c0ca6 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x527bad6b sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x5320fe39 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x5324d04f bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x534257ba blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x534e6a66 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x535f5303 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x5373f7e6 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x53aa8ef9 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x53aeb4d8 skb_gso_validate_mtu +EXPORT_SYMBOL_GPL vmlinux 0x53be61c9 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x53c30e1c __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x53dab6f0 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x53f510ab __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54b6eb1b __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x54d244ab vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x54dd4db3 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x54e9dee3 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x54ef3d03 ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x552b6223 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x553744f9 split_page +EXPORT_SYMBOL_GPL vmlinux 0x5545bcd2 iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x558044c5 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x55a3dc4f netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x55b52f2d dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x55bee45b __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x55c3e210 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x55d3fbab register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x55ed1ff7 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f2580b __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x55fe98f9 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x56015ce7 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x5616c869 gmap_put +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x564ccd34 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x5655e1e4 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x56572826 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x5665ec36 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x566cefd1 gmap_get +EXPORT_SYMBOL_GPL vmlinux 0x5680e590 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56f5bd84 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x572dda5b get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x574a10ff crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x57877fd7 css_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x58445da6 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x58469112 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x586fd3a4 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x589c833a trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x58bf9ae3 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x58f1d256 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x58fdedbf dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x5904a170 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5a1776a3 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x5a3e79a9 scm_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5a4036b3 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5a5461ed locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x5a55d039 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5ab0304f sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x5abd86fe raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x5ad0e002 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x5aeef995 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x5b41963d bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x5b4bd437 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x5b6b874f shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x5bb89057 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd35787 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bddc54e tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x5bf79f7e update_time +EXPORT_SYMBOL_GPL vmlinux 0x5c215c53 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x5c277c8b device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x5c2f2906 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x5c348c5e crypto_has_skcipher2 +EXPORT_SYMBOL_GPL vmlinux 0x5c4532ce md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x5c4fb22c fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x5c636d34 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x5c71d21a sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x5c7fa02f put_device +EXPORT_SYMBOL_GPL vmlinux 0x5caabca0 __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5caf5434 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x5cb97501 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5d03b3be blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x5d065fcc __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0x5d5dc5c5 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x5d61105f handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x5d799b80 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5d7a4d02 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x5d876faf __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x5d944af0 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x5dc1e094 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x5de975f5 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x5e313b1a hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5e38517b platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x5e86dccf of_css +EXPORT_SYMBOL_GPL vmlinux 0x5e8c432b dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x5e9f0300 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x5ef12f90 d_walk +EXPORT_SYMBOL_GPL vmlinux 0x5efa64a0 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x5f1fe1b7 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x5f2d32b8 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x5f4b081f user_update +EXPORT_SYMBOL_GPL vmlinux 0x5fde6a7f device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x60170fa6 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x6090dbef klist_init +EXPORT_SYMBOL_GPL vmlinux 0x609a1c95 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60b119c8 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x60d14dc2 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x610bb3e4 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x614727ee fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x6163b5c6 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x61a97e5f register_reset_call +EXPORT_SYMBOL_GPL vmlinux 0x61ae600e dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x61e1604e pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x621ea7bf alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x6224d083 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6248864f register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x6248d6d7 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x62689f27 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x626b7b47 css_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x62ab6135 l3mdev_get_saddr +EXPORT_SYMBOL_GPL vmlinux 0x62f74b81 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x634ccaa6 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x635969db platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x63c117d0 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x63ead6f9 device_del +EXPORT_SYMBOL_GPL vmlinux 0x63f4dc09 bprintf +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x644129aa debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x6462ce9c bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x6468d28a dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x646c709c percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6475430a wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x647e77a6 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x6514e017 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x651f1c22 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x655ae8d7 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0x657370d5 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x65993a27 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x65a8cf83 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x65c76de6 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65e744df sched_clock_base_cc +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6619a388 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6620d15a irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6639df42 security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x663a44c3 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x6659a071 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x666e9a8c dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x667ccf94 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66886ae4 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x669d8259 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x66a25234 chsc_ssqd +EXPORT_SYMBOL_GPL vmlinux 0x66b255e9 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x66c01ea2 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66f684cd init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x66f6cd75 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x671ef94a rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6761129d crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x6779d7ec bpf_prog_get_type +EXPORT_SYMBOL_GPL vmlinux 0x678b8cbb kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67a91aa5 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x67be94b7 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x67db84ca debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x6805b05d sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x68312835 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x684fc5bf tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x685179c8 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x6855c709 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x68998723 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x689cb47d bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x68eee760 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x69048c76 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x691186c7 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x6934c2b9 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x6941f490 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x698f1562 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x69a71dc4 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x69ae7d70 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x69c37c53 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x69db1638 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x69e06228 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x6a0cb49b fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a2f337f subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a665320 save_stack_trace_regs +EXPORT_SYMBOL_GPL vmlinux 0x6a6785fa platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a9b2a49 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x6a9cc17e call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x6b1d44ec tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6b1e9bf4 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b2cd877 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x6b2dc52f pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6b2f217e chp_get_sch_opm +EXPORT_SYMBOL_GPL vmlinux 0x6b566c36 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x6b58d9e7 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x6b6f82e3 pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x6b79e45e iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x6bc51e18 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x6bd0fd27 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x6bd80ac3 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x6be3a681 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x6be5162c freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6bef429d xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x6c04bb0d irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c11934f kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x6c2f7fab sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x6c65ffd2 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x6c777419 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x6c813a51 dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6cb06a52 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x6ce2754b key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x6ced0c38 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x6cedc5e0 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x6cf0e97e skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x6cfc3ab8 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x6d04d63c percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x6d0c7f56 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6d230ef7 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x6d2920ba dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d75c9e8 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d861373 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x6d9b5b4b platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6dbac041 gmap_shadow_r3t +EXPORT_SYMBOL_GPL vmlinux 0x6dc15524 ipv6_rcv_saddr_equal +EXPORT_SYMBOL_GPL vmlinux 0x6de5c4b4 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x6defbd5b scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x6e11ee11 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x6e19ef80 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6ef60373 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x6f09be2a dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x6f64fd3a badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x6f803748 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x6f821920 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x6f84db91 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6f976c4b bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x6fbcf946 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x7013f9f6 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x7034f690 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x706b6248 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x7087e8a7 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x70a2b060 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70d57b23 appldata_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x71006148 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7133447e platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x717903b5 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x71984961 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x71a30507 device_add +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71e854b5 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x71fd7b11 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x720f013d srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x724e7b90 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x728980f8 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x72a17df4 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x72c60425 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x72d4db2e find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x730e598a shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x7333ab71 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x7340035c crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x735d6ab3 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x73a3d489 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x73a6ff8a crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x73ac9b56 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x73bee022 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x73d3451b virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73d87cfa mmput +EXPORT_SYMBOL_GPL vmlinux 0x73ef7799 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x73f330dc module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x741ab978 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x7442cd38 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x7457cc7c debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x74793aa5 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x74937272 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7544c06b tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x7568e467 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x759b872f set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x75a1981c inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0x75c3a27b crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x75c541e5 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75ef51ad iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x7609a3ac virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x763b4523 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x7641c92c security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x76436cf8 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x76608da5 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x766317db pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7688c208 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x76910f66 cmf_readall +EXPORT_SYMBOL_GPL vmlinux 0x76de09ed iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7714e670 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x772f821e __module_address +EXPORT_SYMBOL_GPL vmlinux 0x774dd152 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x77599b79 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x775b7a4c transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x77719b7d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0x7787e445 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x77963b0a inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x77b0ed45 gmap_shadow_page +EXPORT_SYMBOL_GPL vmlinux 0x77bac45a pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x77df155f crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x78243852 percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x7826872a tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x783cb682 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x7861c51d fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x7886e42b pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78c0e50b devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x7939df1e dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x793e0d58 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794ad0ff dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x79592994 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x79765d4e pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x79780af4 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x797f3aba pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x79be615f scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x79c73e67 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x79c7609f iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x7a478969 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a954694 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x7ad39f65 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x7ad88784 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x7b00a317 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x7b01599a ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b245726 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b52b9dc __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7b6f719c crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x7ba19328 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x7bbfb080 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x7bc06e49 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x7bca95ca dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x7bd331f3 udp6_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0x7bd74939 do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0x7bf2d25c dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x7c03a09a crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7c21f354 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x7c578b53 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x7ca8b93e devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x7ce4288c gmap_unmap_segment +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d0e6912 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x7d383b4f shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x7d4e7966 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d7d4fd6 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x7d85a065 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x7d957afc task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x7dab129b get_device +EXPORT_SYMBOL_GPL vmlinux 0x7dac290c sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7dce1ffc inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de1919b trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x7e0e0360 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x7e2675f1 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7e39cdf9 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x7e4a109f posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x7e6f826f vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7e9bcf47 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x7ee5d9d3 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x7eeb4db3 static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x7f4f0a3c scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x7f58c94b __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0x7f72a76e sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f9e3fa5 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fe068ac fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x8006b83f pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x802a9886 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8034d7fc zpci_stop_device +EXPORT_SYMBOL_GPL vmlinux 0x803c666f clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x8046049e relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x809eb33b fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80dad137 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x80e4a728 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x80e80941 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x8158c5ca public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x8193ec02 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x819da008 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x81b5ca77 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x81d108fb pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x820124ca pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x822631ef __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x824dc597 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x825068f0 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x825b6e01 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x82a78d92 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x82ac3c87 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82eddae7 btree_last +EXPORT_SYMBOL_GPL vmlinux 0x83109920 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x83137768 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x83228145 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x834dda9a sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x836185f2 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x8372bd79 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83b0816e __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x83b89c58 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x840c9180 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x8416f576 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x847fcc45 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x84821ff6 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x84ae3c99 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84bcd2c7 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x84bd28d1 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x8541fecd invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x8544e4fc handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x8570ec13 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x857cb943 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x85943414 security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85fd1398 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x863ca66e disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x86654adb dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x866e5012 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868fbf89 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x86c18440 zpci_store +EXPORT_SYMBOL_GPL vmlinux 0x86ed23e5 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f32c68 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x8700d0aa dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu +EXPORT_SYMBOL_GPL vmlinux 0x871f34e9 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x8738fe3f pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x874202a1 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x87d07a15 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x87d40fc5 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x87eec508 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88367524 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x885987f1 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x88c7044a sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x890faa63 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x8956ef77 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x895c46ce alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x895c756b crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x897db898 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x89950cd3 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x89df649f __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x89e026b1 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x89f8af50 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x89fd13de __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x8a0d5be3 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x8a20d171 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x8a233b13 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x8a543dcf blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x8a7c6e5c tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x8a805239 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x8aa88780 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac7e90d device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x8ace847c vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x8aebad6c get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x8b4a42c5 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b89a154 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x8baa5c59 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x8bc68a79 reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c08d15b uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x8c262122 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8c510168 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x8c613d40 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8c7779b7 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x8c9d7bba __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8cc19634 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x8cfa925d __add_pages +EXPORT_SYMBOL_GPL vmlinux 0x8d1031ee pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d2c42b8 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x8db616a5 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x8dbba8ef pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x8deec3f3 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x8dfd5821 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8e16e86c restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x8e2b18ed dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e35d447 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x8e46902e perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x8e7fc5d5 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x8ea19fe5 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0x8ea204d4 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8eaac736 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x8eb30ccf inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x8ec3c2b6 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x8eebbdd7 component_add +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f2c16a4 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x8f3874d7 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x8f561ecd md_run +EXPORT_SYMBOL_GPL vmlinux 0x8f681035 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8fcdb090 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8fdd1736 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x8fe8ea37 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x90284c5d driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x906b931b ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90c1c4f0 css_sch_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x90e5d678 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x90fa4f77 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x90fca7ff dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x91132072 gmap_shadow_pgt +EXPORT_SYMBOL_GPL vmlinux 0x913b5988 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x916b9d7d cmf_read +EXPORT_SYMBOL_GPL vmlinux 0x91848b41 pci_debug_msg_id +EXPORT_SYMBOL_GPL vmlinux 0x9185ec2b regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91b0e848 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x91c85cb5 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x92005666 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x923aea69 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x925b8108 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x926e0e67 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x92b1e410 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92fa5289 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9324a924 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x933deb04 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x934ddd8e platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x93704835 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x938b0049 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x938cd09c gmap_enable +EXPORT_SYMBOL_GPL vmlinux 0x93922111 get_compat_bpf_fprog +EXPORT_SYMBOL_GPL vmlinux 0x93a7c9b9 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x93fa1557 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x942e17c0 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x9437fb0e sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x944b270e iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x946592ee ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x94820059 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x948ef70e crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x94b40c49 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x94de8bf5 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x94dea967 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x94eca5eb get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x95459672 appldata_diag +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x95acd79d vfs_writef +EXPORT_SYMBOL_GPL vmlinux 0x95af33dd perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95e72646 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x96042d6b mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x9618cf62 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x962700ed posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x9660a8f0 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x9674fc2a crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x96d68d01 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x96d8e8e5 css_sched_sch_todo +EXPORT_SYMBOL_GPL vmlinux 0x96e73237 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x970f8c68 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x978793f5 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x97916529 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e18934 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x97e1fb8c transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x97f5f70c enable_cmf +EXPORT_SYMBOL_GPL vmlinux 0x97fb0572 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x982cd486 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98362a48 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x988b8b61 gmap_create +EXPORT_SYMBOL_GPL vmlinux 0x98a432ee __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x98cea3fb pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x98f15d07 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x992a1588 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x9938dea2 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x995f3645 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x996d1e20 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x999ae0a4 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x999ebd40 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a73facd __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9a9a2e55 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x9a9e581d page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x9acf636f sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x9ae38036 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x9aea73a0 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9b480462 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x9bbc5f03 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bed557d regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x9c33b12f gmap_map_segment +EXPORT_SYMBOL_GPL vmlinux 0x9c5b7ff5 gmap_fault +EXPORT_SYMBOL_GPL vmlinux 0x9c6bbc99 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x9ca23236 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x9caf85c6 unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9d1e1cd9 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x9d50eeb1 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x9d636ebb zpci_disable_device +EXPORT_SYMBOL_GPL vmlinux 0x9d6e9700 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x9d98628f key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x9d9c3529 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x9df698be fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x9dfabea6 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e504bb8 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x9e594027 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0x9e6cc208 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x9ec2f5c4 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x9ef4e676 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x9f43f800 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x9fe7377d fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0xa0059634 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xa014e2be register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xa01a7329 page_endio +EXPORT_SYMBOL_GPL vmlinux 0xa028ec27 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xa034873a unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xa047901d dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xa09d0dcd btree_remove +EXPORT_SYMBOL_GPL vmlinux 0xa0d7ab90 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xa0fa1742 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa10b70ed iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xa1107299 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa26e75a2 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa283f01d tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xa295175f tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xa2a8ea0a user_preparse +EXPORT_SYMBOL_GPL vmlinux 0xa2a97b66 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xa2f4b26e vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xa310dc1f sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xa3243e23 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xa35cff54 visitor128 +EXPORT_SYMBOL_GPL vmlinux 0xa35f68c7 gmap_mprotect_notify +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a6002d skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa4105b3a blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xa43487a4 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xa43821a2 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xa44e01ca blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa44fa0df cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0xa451e28b cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xa479959c remove_irq +EXPORT_SYMBOL_GPL vmlinux 0xa492b0b7 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa498936b dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0xa4a42813 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0xa4a9c55a tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xa4aa9879 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xa4ace5b3 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xa4c7803e dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xa4cafe34 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa5256fca dax_fault +EXPORT_SYMBOL_GPL vmlinux 0xa5481736 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xa57e455b unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xa57fa9ca regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xa59f67d5 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa5c4e601 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xa5dcb8b3 device_move +EXPORT_SYMBOL_GPL vmlinux 0xa5e2488f debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xa5e901b0 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5ffe769 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xa6030e28 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa6285c51 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xa6506264 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xa67eb942 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xa68f9a9e skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa7104b17 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xa71266a1 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0xa715b76f crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xa715fe4c balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xa73e5a22 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xa780d37a shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0xa80619fe trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0xa825409e nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xa849acce tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xa84ed0c5 devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa8840231 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xa8986061 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xa8ac384f dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8bdda73 mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0xa8cc1ba4 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xa926b148 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa96a1912 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xa97c15c3 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xa985395f reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa9db12d2 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9ff15b9 s390_enable_sie +EXPORT_SYMBOL_GPL vmlinux 0xaa007755 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xaa20a08d kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xaa2524e2 device_create +EXPORT_SYMBOL_GPL vmlinux 0xaa2e03c5 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xaa32bac8 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xaa72fc5b vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xaa88c064 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xaa954160 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xaaa0dc52 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaac24c05 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xaad75f30 devres_get +EXPORT_SYMBOL_GPL vmlinux 0xaade5cef __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0xaae3a37e class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xab1070ee get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xab1f88ab sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0xab2842b2 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0xab454487 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xab58c016 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xab59b452 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab90a6b7 vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xab97a97d s390_handle_mcck +EXPORT_SYMBOL_GPL vmlinux 0xabc08732 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabde0ee0 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xabe12262 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xac069c0e generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xac0e4bf6 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0xac22081f debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0xac2483df rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xac53a735 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xac89d7f6 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xac998778 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xad3a73cc queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xad3dfa13 lgr_info_log +EXPORT_SYMBOL_GPL vmlinux 0xad7f2d39 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xad997680 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadaaa3ae diag308 +EXPORT_SYMBOL_GPL vmlinux 0xadd62c81 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xadfa934f bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xae5ff270 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae9954be crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xaed7c3ab cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xaeeb8c7a hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xaf076b8a crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xaf458ab8 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xafb59987 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xafc5722d inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xafd16c79 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xb013a665 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xb025b095 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xb04fe5a6 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xb056eaa7 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xb0ac5ec2 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0cbb08d sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xb0e13900 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb12eaf65 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xb13c697c crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb18998d6 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1af94ca crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1dbdc30 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb20d9374 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xb21779bc crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xb2452de3 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xb250f067 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb2656082 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb28369a2 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xb2ab6d25 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xb2acb69a device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xb33dad00 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb3551656 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xb38aa0ed platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xb392ed96 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xb3a71b73 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xb3b3e004 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb3cc3d17 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xb3e291b1 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xb3f2d9d5 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xb400d85e transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xb40581d5 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xb4140015 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xb4221fec register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xb42fbaa7 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xb44738e2 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xb44d5220 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xb454218d xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xb45b4f7e chsc_pnso_brinfo +EXPORT_SYMBOL_GPL vmlinux 0xb45d8482 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xb4b31dd8 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4c908e8 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xb4fafec4 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0xb4fb46c5 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xb5047905 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb55309af platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xb5629798 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xb56bd555 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb595a4e6 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xb5985bc1 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5d9a3af devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xb5dfbf60 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb63c1c70 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xb63c8aad inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xb676ed66 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xb688d669 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xb68a4df0 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xb6b5cf1c trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xb70f3c31 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xb71b83b6 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xb74f84ed trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0xb75c0c39 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xb75de490 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xb7be49ea fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb85dae47 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xb87bdf79 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8986c6e cio_enable_subchannel +EXPORT_SYMBOL_GPL vmlinux 0xb8b5f76c ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xb8c8ded4 ccw_device_get_schid +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8cf032e sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xb8ffa8eb __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb907b442 scm_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xb93e981c fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xb94e6a6b driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb95c886b sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9dc3f2d __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xb9f6cd97 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xba253ef3 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xba75b2a2 s390_reset_cmma +EXPORT_SYMBOL_GPL vmlinux 0xba85b569 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xba9ea068 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xbad6cd7b pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xbae89977 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xbae9ccb2 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0d31c4 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xbb1be5b6 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xbb266d4a register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xbb36bbae css_sch_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbb45f2fc devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xbb5ebae8 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xbb80d24b public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xbb9c5f1e __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xbba3562c blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xbbbcd996 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xbbc40a71 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0xbbc97108 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xbbe84863 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc10ac59 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xbc2cb2e8 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xbc4286e2 vmf_insert_pfn_pmd +EXPORT_SYMBOL_GPL vmlinux 0xbc4beefa inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xbc5c2648 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xbc69e0d0 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc7525e9 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xbc75ef7b class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xbc7a9dfb crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xbc8ab8ce virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xbca4ccd3 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcbbd266 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0xbcbe4277 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbd1388b0 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xbd1abcc0 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd43fe41 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbe0370bb splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xbe44fd75 mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbe632cf3 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe6e75b9 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xbe8208fd relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xbe8e0271 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeb67907 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xbec23e3f __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0xbee12e79 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xbee4961c relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xbef3bc98 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xbef5792e sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xbef7dd01 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xbf0dd1cb sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbf18f561 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xbf2bf743 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbf7bba88 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0xbf7de09a irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xbfa46fc1 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xbfc4c24d __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xbfd3620c ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xbfdac0f8 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc01d8d41 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0xc021d326 nl_table +EXPORT_SYMBOL_GPL vmlinux 0xc023a0a9 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0xc054d81d register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xc065e21b __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xc07efae2 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc08f769f sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0aa0d5f inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xc0c47c78 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xc0c7fba7 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xc0cada80 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xc0ce392a regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0d3b8c2 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc130b03e memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0xc1370e71 pci_debug_err_id +EXPORT_SYMBOL_GPL vmlinux 0xc15951f2 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xc15daa9c bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xc193b619 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xc1f2068d scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xc1f5f26a regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc1f61678 md_stop +EXPORT_SYMBOL_GPL vmlinux 0xc212a182 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc236aa66 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xc2517490 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0xc263702c attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xc2686f4b static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0xc28fdf9d get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0xc29ee87b pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xc2db9194 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xc2e58432 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0xc344f3bd crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xc355f8a3 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc39c90d1 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xc3a4b93f crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc3b4b79a __gmap_translate +EXPORT_SYMBOL_GPL vmlinux 0xc3cecf9c pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xc3d7a515 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0xc3de4962 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xc3fe8bb2 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc40c85cb ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xc4168ccd virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xc4830b0d tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xc4b527ef register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xc4e7e822 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc5001aa1 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xc511cd47 snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc556bc26 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5866c63 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xc5878314 blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0xc5be574f crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc62a1b83 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xc6314f6d pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc64b4e73 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xc64d844d relay_close +EXPORT_SYMBOL_GPL vmlinux 0xc6530f96 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc68aaddd pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xc6b22781 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xc6d5156d device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xc6de3a67 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xc6e81fff skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0xc705f5dc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0xc7061ac2 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc745e78f skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7ae663f btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0xc7cec6f1 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xc7d0e86e tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7e61b1f bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0xc7f6c315 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xc878ad43 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc89e8af8 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc89f3cb5 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8b6988b pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8eeab49 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xc9385c20 gmap_read_table +EXPORT_SYMBOL_GPL vmlinux 0xc93d457c dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xc95d9de3 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0xc9653624 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xc99a3223 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xc9eb221f kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9f3207d devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xca3bcc25 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xca572c54 __gmap_zap +EXPORT_SYMBOL_GPL vmlinux 0xca671574 s390_pci_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xca762c04 vtime_account_irq_enter +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xcaf8c347 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0xcb053709 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xcb0a55de save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0xcb1c2abf crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xcb61cfee pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xcba5ff8f watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xcbd80b6e pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbf7a94f console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xcbfa7bda __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xcc2d2f22 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc911e9f alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xcca0a76c anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xccadbac8 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xccaec544 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xccb79ca2 setfl +EXPORT_SYMBOL_GPL vmlinux 0xccc0a14b smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xcce7de6c regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xccf53b0f md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xcd2bd987 get_empty_filp +EXPORT_SYMBOL_GPL vmlinux 0xcd6d605d __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0xcd756c76 fat_sync_inode +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 0xcd9e60c3 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcddc90f7 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xcde7fa40 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xce1c6bff irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0xce4a40ee __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce767cec list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xce7eba54 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xce962335 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xcebb0a86 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xcec197fe crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xcecd96cf device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xcf0c52d6 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xcf1ee38b tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf7b0223 chsc_scm_info +EXPORT_SYMBOL_GPL vmlinux 0xcf86b716 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xcfa28530 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xcfb209d8 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfc9cf89 debugfs_use_file_finish +EXPORT_SYMBOL_GPL vmlinux 0xcfe8c5de mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd031b589 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd051f2c9 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd06bfb67 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xd0a8ab4b __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd0af7fd9 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0xd0be6058 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c78458 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xd0fb92a3 request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xd10868c7 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xd1110b69 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0xd11618fc pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd13d6a25 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xd153e69c md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd16ed413 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xd1794458 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xd1812355 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xd19ae454 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xd1dfec89 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xd1ecf7d4 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xd1f279cd bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21c6e39 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xd247b5db atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd26cbb5c __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd2a9a2e1 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xd2b9207b _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd3061074 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xd3243ae8 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xd32ce3a1 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xd352f029 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xd355bc9c find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xd3951e6f irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4141a35 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xd43397eb ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xd43da854 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xd4bf7d38 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4d75900 gmap_translate +EXPORT_SYMBOL_GPL vmlinux 0xd5276baa pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd531266a __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xd53e4c76 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0xd57eac78 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xd59ebc5f driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xd5ae4896 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5cb729a pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xd5d21995 loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0xd5d42e76 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd657f3c3 gmap_shadow_sgt +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6eec1af iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xd6f8f01b dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xd6fbed49 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd709c5af rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd72c9b28 ccw_device_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd73d3320 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xd75fcca0 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0xd772efb5 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd7c8e8cd register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xd7cde00e ccw_device_get_chp_desc +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7f9eed9 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0xd8007a4e dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd8148617 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd82e15d0 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xd83b6081 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd88c8c1e debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xd8ac5821 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xd8c08903 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xd8e52017 insert_resource +EXPORT_SYMBOL_GPL vmlinux 0xd8feae2b virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xd93d3624 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd97ecdfd vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xd98df863 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xd9a35904 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xd9cd5c74 cap_mmap_file +EXPORT_SYMBOL_GPL vmlinux 0xd9d81e9f crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xd9de1279 driver_register +EXPORT_SYMBOL_GPL vmlinux 0xd9e40703 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xda072962 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0xda3f3e8a isc_register +EXPORT_SYMBOL_GPL vmlinux 0xda424946 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xda518b76 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xda69488e crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0xda735fc8 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xda79c349 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0xda920f86 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xda953c49 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xdaaa504b pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaffbb37 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xdb41f14c aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb6a64bb skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0xdb896c53 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdba62d82 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xdbaf7dfa visitorl +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc2dfe3b tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xdc5377f0 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdc73d1ee __devcgroup_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0xdc78d128 do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0xdc7df90e skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcda4e21 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xdce7a81e blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0xdcf5a9ea security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xdd1cb492 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd428c55 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xdd50c846 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0xdd5c41cb hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xdd628215 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xdd7eef63 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xdd99bb02 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xddb76ce4 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd5797e use_mm +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddda886a pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xde299e6f hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xde32b1ac hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xde361541 iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0xde3977ec unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xde47e306 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0xde48be51 gmap_shadow_valid +EXPORT_SYMBOL_GPL vmlinux 0xde9d5588 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xded3c903 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xded5d8e0 irq_stat +EXPORT_SYMBOL_GPL vmlinux 0xdeed4710 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf152ae7 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xdf2570f2 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xdfbf9d60 security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0xdfe07bd2 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xdff28de3 default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe00875d3 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe0453ac6 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe06388fd add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xe06f6f61 udp4_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0xe06fa8c0 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0xe07de448 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xe0985d9d tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xe0b0af93 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xe0b1adb9 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xe110c766 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xe126baf0 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xe13678fd pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xe156cfba pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xe159791e virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe1bf429f preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1e1664e dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0xe20052c9 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xe245b5cd subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xe28a265b put_filp +EXPORT_SYMBOL_GPL vmlinux 0xe29d355c __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe317229a devres_find +EXPORT_SYMBOL_GPL vmlinux 0xe359a0c8 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xe35d89af ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xe38f5d4e hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe3a109ff wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe3aad153 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe3b9c592 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe3be7682 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xe40e5d7d rcu_exp_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0xe417a6fa bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe43c8999 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xe44d40d8 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe44e5cb6 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xe465ce77 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe470e147 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe497ac11 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0xe4bc46bf crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe4f86fa2 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58d701e blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5a56150 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0xe5a7f4f4 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xe5b025d6 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xe5c17bb6 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xe5cdaf3b pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xe620426e crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe67326cf cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xe68c4bba ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xe68c6e6b fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6f99bc1 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xe721146b tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe758901c fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe76a9fc6 gmap_remove +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe7837c37 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xe7b718df chsc_determine_channel_path_desc +EXPORT_SYMBOL_GPL vmlinux 0xe7fb94f8 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe8092b2b insn_to_mnemonic +EXPORT_SYMBOL_GPL vmlinux 0xe82016ed cio_disable_subchannel +EXPORT_SYMBOL_GPL vmlinux 0xe84c94b8 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xe853f157 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xe8557947 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xe8589ac0 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe872b2d9 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xe873ba79 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xe89a2437 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xe89b1d95 get_system_keyring +EXPORT_SYMBOL_GPL vmlinux 0xe8a72441 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0xe8cde0ff pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xe8d09f2f chp_ssd_get_mask +EXPORT_SYMBOL_GPL vmlinux 0xe8e05469 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9474bde dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xe97124cf tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xe976a859 user_describe +EXPORT_SYMBOL_GPL vmlinux 0xe985fb42 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xe9f3d35b crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea245646 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xea628e36 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea95cb5a memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xeaba3b4e virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xeacd50c4 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xeaf08820 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xeaf754bd ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xeb1f3642 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xeb2a7f78 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xeb2b3d2b pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xeb3b173f init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xeb3c6f01 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xeb6d0814 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xeb74eb61 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xeb7591e0 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0xeb782a3e bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0xeb82deab pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xebc19f4d get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xebc63738 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebfab886 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xec0dc3f2 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xec13c83c si_swapinfo +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec26bf8c rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xec570e24 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0xecf4019f pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xed22a952 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xed44377b rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xed487fda class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xed7209c2 ccw_device_siosl +EXPORT_SYMBOL_GPL vmlinux 0xeda3a884 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xedb193a5 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0xedb1ae0c pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0xedb94ad2 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xede42278 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xedf533b6 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xee1705e5 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xee2bc1b1 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xee46250d ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xee860dad noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xeea1be9b crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xeea40448 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0xeeb26651 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xeeb78d44 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xeec18bf7 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xeec81f14 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xeed597a8 pci_proc_domain +EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run +EXPORT_SYMBOL_GPL vmlinux 0xef09a7e2 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xef13106c nr_threads +EXPORT_SYMBOL_GPL vmlinux 0xef5e1fd5 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat +EXPORT_SYMBOL_GPL vmlinux 0xef86e566 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xef8def8a rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0xef913a18 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xef9da719 dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa551e9 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xefacc096 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0xefff68e9 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf04d2b13 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf0895fc2 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xf0a14a41 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0xf0b2d2a2 do_truncate +EXPORT_SYMBOL_GPL vmlinux 0xf0ce6fe7 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf11861dd device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf1391f63 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xf158d63f regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1b31f83 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xf1d11318 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2edf6f1 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33fe1ca inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0xf3487abb pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf393e939 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xf3dafb30 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xf3e6400b device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf447358b iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xf48e57f7 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf5193279 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xf5207318 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xf520e638 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xf5388e1f __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf58d88c7 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5b23f5d sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xf5bcf1b2 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xf5deb794 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xf6286a67 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xf65c9726 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xf67ebf78 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xf68d32d0 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xf69a1c8d irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0xf6a72a0d fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf6a994e7 blk_poll +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks +EXPORT_SYMBOL_GPL vmlinux 0xf7238ecc ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xf73f2386 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xf76b6590 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xf7eb43ae sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0xf82a73dc trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf8457a14 vfs_readf +EXPORT_SYMBOL_GPL vmlinux 0xf8727328 ping_err +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf88cc493 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xf8bb2f3c platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf8d3a1e1 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xf8e01803 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf9007e53 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xf9306de7 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf95ce602 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf993e900 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf996fc43 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9e382b3 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa43807b test_and_clear_guest_dirty +EXPORT_SYMBOL_GPL vmlinux 0xfa4749da pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfa92da0d watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0xfa9e335e hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfac2930f iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL_GPL vmlinux 0xfb02367d devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xfb03f5f3 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xfb25b64f debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb549109 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xfb58064a debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb76c2ff pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xfb7ff958 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbe2ddca remove_resource +EXPORT_SYMBOL_GPL vmlinux 0xfc03d6a5 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc250cd3 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xfc2638fd elv_register +EXPORT_SYMBOL_GPL vmlinux 0xfc2c52e1 security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0xfc4fcde8 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xfc54ce89 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xfc5eb088 cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc617b2f tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xfd341ae5 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xfd3a393b mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xfd4956c2 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0xfd572ff1 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xfd5ea56e regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xfdcfefe3 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0xfdd70dbf irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0xfe0d4c1d disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xfe394975 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfe4e7680 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xfe5c27c2 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xfe7acba2 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xfe8dea13 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xfea42f09 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xfea5eccb irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xfeed7513 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff71a566 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xff9bd7bc kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xffa6083f securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffc1abd5 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xffe17893 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xfffd1703 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xfffed00f nf_queue_entry_get_refs --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/s390x/generic.compiler +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/s390x/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 6.2.0-5ubuntu12) 6.2.0 20161005 --- linux-4.8.0.orig/debian.master/abi/4.8.0-57.62/s390x/generic.modules +++ linux-4.8.0/debian.master/abi/4.8.0-57.62/s390x/generic.modules @@ -0,0 +1,936 @@ +6lowpan +8021q +842 +842_compress +842_decompress +9p +9pnet +9pnet_rdma +9pnet_virtio +act_bpf +act_connmark +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +act_vlan +adfs +aes_s390 +af-rxrpc +af_alg +af_iucv +af_key +af_packet_diag +affs +ah4 +ah6 +algif_aead +algif_hash +algif_rng +algif_skcipher +ansi_cprng +anubis +ap +appldata_mem +appldata_net_sum +appldata_os +arc4 +arp_tables +arpt_mangle +arptable_filter +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +aufs +auth_rpcgss +authenc +authencesn +autofs4 +axp20x +axp20x-i2c +batman-adv +bcache +befs +bfs +binfmt_misc +blocklayoutdriver +blowfish_common +blowfish_generic +bonding +br_netfilter +brd +bridge +btrfs +c_can +c_can_pci +c_can_platform +cachefiles +caif +caif_socket +caif_usb +camellia_generic +can +can-bcm +can-dev +can-gw +can-raw +cast5_generic +cast6_generic +cast_common +cc770 +cc770_isa +cc770_platform +ccm +ccwgroup +ceph +ch +chacha20_generic +chacha20poly1305 +chnl_net +chsc_sch +cifs +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 +configfs +cordic +cpu-notifier-error-inject +crc-itu-t +crc16 +crc32-vx_s390 +crc32_generic +crc7 +crc8 +cryptd +crypto_user +ctcm +ctr +cts +cuse +dasd_diag_mod +dasd_eckd_mod +dasd_fba_mod +dasd_mod +dax +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +dcssblk +deflate +des_generic +des_s390 +devlink +dh_generic +diag288_wdt +dlm +dm-bio-prison +dm-bufio +dm-cache +dm-cache-cleaner +dm-cache-smq +dm-crypt +dm-delay +dm-era +dm-flakey +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-verity +dm-zero +dns_resolver +drbd +drbg +drop_monitor +dummy +dummy_stm +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 +ecdh_generic +echainiv +efs +em_canid +em_cmp +em_ipset +em_meta +em_nbyte +em_text +em_u32 +ems_pci +eql +esp4 +esp6 +exofs +ext4 +f2fs +faulty +fcoe +fcrypt +fdp +fdp_i2c +fou +fou6 +fpga-mgr +freevxfs +fs3270 +fscache +fscrypto +fsm +fuse +garp +gcm +geneve +gennvm +genwqe_card +gf128mul +gfs2 +ghash-generic +ghash_s390 +grace +gre +gtp +hangcheck-timer +hci +hfs +hfsplus +hmcdrv +hsr +i2c-algo-bit +i2c-core +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_srp +ib_srpt +ib_ucm +ib_umad +ib_uverbs +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ifi_canfd +inet_diag +intel-xway +intel_th +intel_th_gth +intel_th_msu +intel_th_pci +intel_th_pti +intel_th_sth +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_MASQUERADE +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +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_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_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_MASQUERADE +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipx +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isofs +iw_cm +jbd2 +jfs +jitterentropy_rng +kafs +kcm +keywrap +khazad +kvaser_pci +kvm +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +lapb +lcs +libceph +libcrc32c +libfc +libfcoe +libiscsi +libiscsi_tcp +libore +libosd +libphy +libsas +linear +llc +lockd +logfs +lru_cache +lrw +lz4 +lz4_compress +lz4hc +lz4hc_compress +m_can +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac802154 +macsec +macvlan +macvtap +mbcache +mcryptd +md-cluster +md4 +memory-notifier-error-inject +mfd-core +michael_mic +microread +microread_i2c +minix +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlxsw_core +mlxsw_pci +monreader +monwriter +mpls_iptunnel +mpls_router +mrp +msdos +nb8800 +nbd +nci +nci_uart +ncpfs +netconsole +netiucv +netlink_diag +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +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_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_ipv4 +nf_nat_ipv6 +nf_nat_irc +nf_nat_masquerade_ipv4 +nf_nat_masquerade_ipv6 +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_redirect +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_synproxy_core +nf_tables +nf_tables_arp +nf_tables_bridge +nf_tables_inet +nf_tables_ipv4 +nf_tables_ipv6 +nf_tables_netdev +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_uart +nfcsim +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_queue +nfp_netvf +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat_ipv4 +nft_chain_nat_ipv6 +nft_chain_route_ipv4 +nft_chain_route_ipv6 +nft_compat +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_exthdr +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_masq_ipv4 +nft_masq_ipv6 +nft_meta +nft_meta_bridge +nft_nat +nft_queue +nft_rbtree +nft_redir +nft_redir_ipv4 +nft_redir_ipv6 +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +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-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 +ntfs +null_blk +nvme-core +nvme-fabrics +nvme-loop +nvme-rdma +nvmet +nvmet-rdma +nxp-nci +nxp-nci_i2c +objlayoutdriver +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +omfs +openvswitch +oprofile +osd +osdblk +osst +overlay +p8022 +p8023 +pcbc +pci-stub +pcrypt +peak_pci +phonet +pkcs7_test_key +pktgen +plx_pci +pm-notifier-error-inject +pn533 +pn533_i2c +pn544 +pn544_i2c +pn_pep +poly1305_generic +pps_core +prng +psnap +ptp +qdio +qeth +qeth_l2 +qeth_l3 +qnx4 +qnx6 +quota_tree +quota_v1 +quota_v2 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid_class +rbd +rcuperf +rdma_cm +rdma_rxe +rdma_ucm +rdmavt +rds +rds_rdma +rds_tcp +regmap-i2c +reiserfs +rfkill +rmd128 +rmd160 +rmd256 +rmd320 +romfs +rpcrdma +rpcsec_gss_krb5 +rrpc +s3fwrn5 +s3fwrn5_i2c +salsa20_generic +sch_cbq +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_fq +sch_fq_codel +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_tbf +sch_teql +sclp_async +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 +sctp_probe +seed +seqiv +serial_core +serpent_generic +sha1_s390 +sha256_s390 +sha3_generic +sha512_s390 +sha_common +sit +sja1000 +sja1000_isa +sja1000_platform +slcan +smsgiucv_app +softdog +softing +spl +splat +st +st-nci +st-nci_i2c +st21nfca_hci +st21nfca_i2c +stm_console +stm_core +stm_heartbeat +stp +sunrpc +sysv +tape +tape_34xx +tape_3590 +tape_class +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +tcm_fc +tcm_loop +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 +tea +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +test_bpf +test_firmware +test_hash +test_static_key_base +test_static_keys +test_user_copy +test_uuid +tgr192 +tipc +torture +tpm-rng +tpm_vtpm_proxy +tps65086 +trusted +ts_bm +ts_fsm +ts_kmp +tunnel4 +tunnel6 +twofish_common +twofish_generic +uartlite +udf +udp_diag +udp_tunnel +ufs +unix_diag +vcan +veth +vhost +vhost_net +vhost_scsi +vhost_vsock +virtio-rng +virtio_blk +virtio_net +virtio_scsi +vmac +vmlogrdr +vmur +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vport-geneve +vport-gre +vport-vxlan +vrf +vsock +vxlan +wimax +wp512 +x25 +x_tables +xcbc +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_ipcomp +xfrm_user +xfs +xor +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LOG +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 +xts +z3fold +zavl +zcommon +zcrypt_api +zcrypt_cex2a +zcrypt_cex4 +zcrypt_msgtype50 +zcrypt_msgtype6 +zcrypt_pcixcc +zfcp +zfs +ziirave_wdt +zlib_deflate +znvpair +zpios +zram +zsmalloc +zunicode +zynq-fpga --- linux-4.8.0.orig/debian.master/changelog +++ linux-4.8.0/debian.master/changelog @@ -0,0 +1,20098 @@ +linux (4.8.0-58.63) yakkety; urgency=low + + * linux: 4.8.0-58.63 -proposed tracker (LP: #1700533) + + * CVE-2017-1000364 + - Revert "UBUNTU: SAUCE: mm: Only expand stack if guard area is hit" + - Revert "mm: do not collapse stack gap into THP" + - Revert "mm: enlarge stack guard gap" + - mm: vma_adjust: remove superfluous confusing update in remove_next == 1 case + - mm: larger stack guard gap, between vmas + - mm: fix new crash in unmapped_area_topdown() + - Allow stack to grow up to address space limit + + -- Stefan Bader Mon, 26 Jun 2017 17:31:13 +0200 + +linux (4.8.0-57.62) yakkety; urgency=low + + * linux: 4.8.0-57.62 -proposed tracker (LP: #1699035) + + * CVE-2017-1000364 + - SAUCE: mm: Only expand stack if guard area is hit + + * CVE-2017-7374 + - fscrypt: remove broken support for detecting keyring key revocation + + * CVE-2017-100363 + - char: lp: fix possible integer overflow in lp_setup() + + * CVE-2017-9242 + - ipv6: fix out of bound writes in __ip6_append_data() + + * CVE-2017-9075 + - sctp: do not inherit ipv6_{mc|ac|fl}_list from parent + + * CVE-2017-9074 + - ipv6: Prevent overrun when parsing v6 header options + + * CVE-2017-9076 + - ipv6/dccp: do not inherit ipv6_mc_list from parent + + * CVE-2017-9077 + - ipv6/dccp: do not inherit ipv6_mc_list from parent + + * CVE-2017-8890 + - dccp/tcp: do not inherit mc_list from parent + + * extend-diff-ignore should use exact matches (LP: #1693504) + - [Packaging] exact extend-diff-ignore matches + + * APST quirk needed for Intel NVMe (LP: #1686592) + - nvme: Quirk APST on Intel 600P/P3100 devices + + * regression: the 4.8 hwe kernel does not create the + /sys/block/*/device/enclosure_device:* symlinks (LP: #1691899) + - scsi: ses: Fix SAS device detection in enclosure + + * datapath: Add missing case OVS_TUNNEL_KEY_ATTR_PAD (LP: #1676679) + - openvswitch: Add missing case OVS_TUNNEL_KEY_ATTR_PAD + + * connection flood to port 445 on mounting cifs volume under kernel + (LP: #1686099) + - cifs: Do not send echoes before Negotiate is complete + + * Support IPMI system interface on Cavium ThunderX (LP: #1688132) + - i2c: octeon: Rename driver to prepare for split + - i2c: octeon: Split the driver into two parts + - [Config] CONFIG_I2C_THUNDERX=m + - i2c: thunderx: Add i2c driver for ThunderX SOC + - i2c: thunderx: Add SMBUS alert support + - i2c: octeon,thunderx: Move register offsets to struct + - i2c: octeon: Sort include files alphabetically + - i2c: octeon: Use booleon values for booleon variables + - i2c: octeon: thunderx: Add MAINTAINERS entry + - i2c: octeon: Fix set SCL recovery function + - i2c: octeon: Avoid sending STOP during recovery + - i2c: octeon: Fix high-level controller status check + - i2c: octeon: thunderx: TWSI software reset in recovery + - i2c: octeon: thunderx: Remove double-check after interrupt + - i2c: octeon: thunderx: Limit register access retries + - i2c: thunderx: Enable HWMON class probing + + * CVE-2017-5577 + - drm/vc4: Return -EINVAL on the overflow checks failing. + + * Merlin SGMII fail on Ubuntu Xenial HWE kernel (LP: #1686305) + - net: phy: marvell: fix Marvell 88E1512 used in SGMII mode + - drivers: net: phy: xgene: Fix mdio write + + * Keyboard backlight control does not work on some dell laptops. + (LP: #1693126) + - platform/x86: dell-laptop: Add Latitude 7480 and others to the DMI whitelist + - platform/x86: dell-laptop: Add keyboard backlight timeout AC settings + + * 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 + + * CVE-2017-7294 + - drm/vmwgfx: fix integer overflow in vmw_surface_define_ioctl() + + -- Juerg Haefliger Tue, 20 Jun 2017 17:04:41 +0200 + +linux (4.8.0-56.61) yakkety; urgency=low + + * CVE-2017-1000364 + - mm: enlarge stack guard gap + - mm: do not collapse stack gap into THP + + -- Stefan Bader Thu, 08 Jun 2017 12:11:39 +0200 + +linux (4.8.0-54.57) yakkety; urgency=low + + * linux: 4.8.0-54.57 -proposed tracker (LP: #1692589) + + * CVE-2017-0605 + - tracing: Use strlcpy() instead of strcpy() in __trace_find_cmdline() + + * Populating Hyper-V MSR for Ubuntu 13.10 (LP: #1193172) + - SAUCE: (no-up) hv: Supply vendor ID and package ABI + + * [Hyper-V] Implement Hyper-V PTP Source (LP: #1676635) + - hv: allocate synic pages for all present CPUs + - hv: init percpu_list in hv_synic_alloc() + - Drivers: hv: vmbus: Prevent sending data on a rescinded channel + - hv: switch to cpuhp state machine for synic init/cleanup + - hv: make CPU offlining prevention fine-grained + - Drivers: hv: vmbus: Fix a rescind handling bug + - Drivers: hv: util: kvp: Fix a rescind processing issue + - Drivers: hv: util: Fcopy: Fix a rescind processing issue + - Drivers: hv: util: Backup: Fix a rescind processing issue + - Drivers: hv: vmbus: Move the definition of hv_x64_msr_hypercall_contents + - Drivers: hv: vmbus: Move the definition of generate_guest_id() + - Revert "UBUNTU: SAUCE: (no-up) hv: Supply vendor ID and package ABI" + - Drivers: hv vmbus: Move Hypercall page setup out of common code + - Drivers: hv: vmbus: Move Hypercall invocation code out of common code + - Drivers: hv: vmbus: Consolidate all Hyper-V specific clocksource code + - Drivers: hv: vmbus: Move the extracting of Hypervisor version information + - Drivers: hv: vmbus: Move the crash notification function + - Drivers: hv: vmbus: Move the check for hypercall page setup + - Drivers: hv: vmbus: Move the code to signal end of message + - Drivers: hv: vmbus: Restructure the clockevents code + - Drivers: hv: util: Use hv_get_current_tick() to get current tick + - Drivers: hv: vmbus: Get rid of an unsused variable + - Drivers: hv: vmbus: Define APIs to manipulate the message page + - Drivers: hv: vmbus: Define APIs to manipulate the event page + - Drivers: hv: vmbus: Define APIs to manipulate the synthetic interrupt + controller + - Drivers: hv: vmbus: Define an API to retrieve virtual processor index + - Drivers: hv: vmbus: Define an APIs to manage interrupt state + - Drivers: hv: vmbus: Cleanup hyperv_vmbus.h + - hv_util: switch to using timespec64 + - Drivers: hv: restore hypervcall page cleanup before kexec + - Drivers: hv: restore TSC page cleanup before kexec + - Drivers: hv: balloon: add a fall through comment to hv_memory_notifier() + - Drivers: hv: vmbus: Use all supported IC versions to negotiate + - Drivers: hv: Log the negotiated IC versions. + - Drivers: hv: Fix the bug in generating the guest ID + - hv: export current Hyper-V clocksource + - hv_utils: implement Hyper-V PTP source + - SAUCE: (no-up) hv: Supply vendor ID and package ABI + + * CIFS: Enable encryption for SMB3 (LP: #1670508) + - SMB3: Add mount parameter to allow user to override max credits + - SMB2: Separate Kerberos authentication from SMB2_sess_setup + - SMB2: Separate RawNTLMSSP authentication from SMB2_sess_setup + - SMB3: parsing for new snapshot timestamp mount parm + - cifs: Simplify SMB2 and SMB311 dependencies + - cifs: Only select the required crypto modules + - cifs: Add soft dependencies + - CIFS: Separate SMB2 header structure + - CIFS: Make SendReceive2() takes resp iov + - CIFS: Make send_cancel take rqst as argument + - CIFS: Send RFC1001 length in a separate iov + - CIFS: Separate SMB2 sync header processing + - CIFS: Separate RFC1001 length processing for SMB2 read + - CIFS: Add capability to transform requests before sending + - CIFS: Enable encryption during session setup phase + - CIFS: Encrypt SMB3 requests before sending + - CIFS: Add transform header handling callbacks + - CIFS: Add mid handle callback + - CIFS: Add copy into pages callback for a read operation + - CIFS: Decrypt and process small encrypted packets + - CIFS: Add capability to decrypt big read responses + - CIFS: Allow to switch on encryption with seal mount option + - CIFS: Fix possible use after free in demultiplex thread + + * APST quirk needed for Samsung 512GB NVMe drive (LP: #1678184) + - nvme: Adjust the Samsung APST quirk + - nvme: Quirk APST off on "THNSF5256GPUK TOSHIBA" + + -- Kleber Sacilotto de Souza Mon, 22 May 2017 18:56:12 +0200 + +linux (4.8.0-53.56) yakkety; urgency=low + + * linux: 4.8.0-53.56 -proposed tracker (LP: #1690956) + + * bond0: Invalid MTU 9000 requested, hw max 1500 with kernel 4.8 / 4.10 in + XENIAL LTS (LP: #1679823) + - Revert "ethernet: use net core MTU range checking in more drivers" + - Revert "Drivers: hv: ring_buffer: count on wrap around mappings in + get_next_pkt_raw() (v2)" + - Revert "hyperv: Fix spelling of HV_UNKOWN" + - Revert "uio-hv-generic: new userspace i/o driver for VMBus" + - Revert "UBUNTU: [Config] CONFIG_UIO_HV_GENERIC=m" + - Revert "Drivers: hv: balloon: Add logging for dynamic memory operations" + - Revert "Drivers: hv: balloon: Fix info request to show max page count" + - Revert "Drivers: hv: balloon: Disable hot add when CONFIG_MEMORY_HOTPLUG is + not set" + - Revert "hv: change clockevents unbind tactics" + - Revert "Drivers: hv: vss: Improve log messages." + - Revert "Drivers: hv: utils: Fix the mapping between host version and + protocol to use" + - Revert "Drivers: hv: utils: reduce HV_UTIL_NEGO_TIMEOUT timeout" + - Revert "vmbus: add support for dynamic device id's" + - Revert "tools: hv: remove unnecessary header files and netlink related code" + - Revert "tools: hv: fix a compile warning in snprintf" + - Revert "net: use core MTU range checking in virt drivers" + - Revert "hv_netvsc: fix a race between netvsc_send() and netvsc_init_buf()" + - Revert "net: use core MTU range checking in virt drivers" + - Revert "net: deprecate eth_change_mtu, remove usage" + - Revert "net: centralize net_device min/max MTU checking" + - Revert "hv_netvsc: remove excessive logging on MTU change" + - Revert "scsi: storvsc: Payload buffer incorrectly sized for 32 bit kernels." + - Revert "PCI: hv: Use the correct buffer size in new_pcichild_device()" + - Revert "PCI: hv: Fix wslot_to_devfn() to fix warnings on device removal" + - Revert "PCI: hv: Use device serial number as PCI domain" + - [Config] Add uio_hv_generic to modules.ignore for 4.8.0-52.55 abi + + -- Thadeu Lima de Souza Cascardo Mon, 15 May 2017 21:06:52 -0300 + +linux (4.8.0-52.55) yakkety; urgency=low + + * linux: 4.8.0-52.55 -proposed tracker (LP: #1686976) + + * CVE-2017-7477: macsec: avoid heap overflow in skb_to_sgvec (LP: #1685892) + - macsec: avoid heap overflow in skb_to_sgvec + - macsec: dynamically allocate space for sglist + + * net/ipv4: original ingress device index set as the loopback interface. + (LP: #1683982) + - net: fix incorrect original ingress device index in PKTINFO + + * Touchpad not working correctly after kernel upgrade (LP: #1662589) + - Input: ALPS - fix V8+ protocol handling (73 03 28) + + * ifup service of network device stay active after driver stop (LP: #1672144) + - net: use net->count to check whether a netns is alive or not + + * [Hyper-V] mkfs regression in kernel 4.4+ (LP: #1682215) + - block: relax check on sg gap + + * Potential memory corruption with capi adapters (LP: #1681469) + - powerpc/mm: Add missing global TLB invalidate if cxl is active + + * [Hyper-V/Azure] Please include Mellanox OFED drivers in Azure kernel and + image (LP: #1650058) + - net/mlx4_en: Fix bad WQE issue + - net/mlx4_core: Fix racy CQ (Completion Queue) free + - net/mlx4_core: Fix when to save some qp context flags for dynamic VST to VGT + transitions + - net/mlx4_core: Avoid command timeouts during VF driver device shutdown + + -- Stefan Bader Fri, 28 Apr 2017 12:17:12 +0200 + +linux (4.8.0-51.54) yakkety; urgency=low + + * linux: 4.8.0-51.54 -proposed tracker (LP: #1686070) + + * [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 + + -- Kleber Sacilotto de Souza Tue, 25 Apr 2017 13:08:56 +0200 + +linux (4.8.0-50.53) yakkety; urgency=low + + * linux: 4.8.0-50.53 -proposed tracker (LP: #1685847) + + * ubuntu 4.8 kernel, virtio_net error causes NAT packets to be lost + (LP: #1683947) + - virtio_net: Simplify call sites for virtio_net_hdr_{from, to}_skb(). + - virtio: don't set VIRTIO_NET_HDR_F_DATA_VALID on xmit + - virtio-net: restore VIRTIO_HDR_F_DATA_VALID on receiving + + -- Thadeu Lima de Souza Cascardo Mon, 24 Apr 2017 13:47:28 -0300 + +linux (4.8.0-49.52) yakkety; urgency=low + + * linux: 4.8.0-49.52 -proposed tracker (LP: #1684427) + + * [Hyper-V] hv: util: move waiting for release to hv_utils_transport itself + (LP: #1682561) + - Drivers: hv: util: move waiting for release to hv_utils_transport itself + + -- Stefan Bader Thu, 20 Apr 2017 09:38:36 +0200 + +linux (4.8.0-48.51) yakkety; urgency=low + + * linux: 4.8.0-48.51 -proposed tracker (LP: #1682034) + + * [Hyper-V] hv: vmbus: Raise retry/wait limits in vmbus_post_msg() + (LP: #1681893) + - Drivers: hv: vmbus: Raise retry/wait limits in vmbus_post_msg() + + -- Kleber Sacilotto de Souza Wed, 12 Apr 2017 11:06:01 +0200 + +linux (4.8.0-47.50) yakkety; urgency=low + + * linux: 4.8.0-47.50 -proposed tracker (LP: #1679678) + + * CVE-2017-6353 + - sctp: deny peeloff operation on asocs with threads sleeping on it + + * CVE-2017-5986 + - sctp: avoid BUG_ON on sctp_wait_for_sndbuf + + * vfat: missing iso8859-1 charset (LP: #1677230) + - [Config] NLS_ISO8859_1=y + + * [Hyper-V] pci-hyperv: Use device serial number as PCI domain (LP: #1667527) + - net/mlx4_core: Use cq quota in SRIOV when creating completion EQs + + * Regression: KVM modules should be on main kernel package (LP: #1678099) + - [Config] powerpc: Add kvm-hv and kvm-pr to the generic inclusion list + + * linux-lts-xenial 4.4.0-63.84~14.04.2 ADT test failure with linux-lts-xenial + 4.4.0-63.84~14.04.2 (LP: #1664912) + - SAUCE: apparmor: fix link auditing failure due to, uninitialized var + + * regession tests failing after stackprofile test is run (LP: #1661030) + - SAUCE: fix regression with domain change in complain mode + + * Permission denied and inconsistent behavior in complain mode with 'ip netns + list' command (LP: #1648903) + - SAUCE: fix regression with domain change in complain mode + + * unexpected errno=13 and disconnected path when trying to open /proc/1/ns/mnt + from a unshared mount namespace (LP: #1656121) + - SAUCE: apparmor: null profiles should inherit parent control flags + + * apparmor refcount leak of profile namespace when removing profiles + (LP: #1660849) + - SAUCE: apparmor: fix ns ref count link when removing profiles from policy + + * tor in lxd: apparmor="DENIED" operation="change_onexec" + namespace="root//CONTAINERNAME_" profile="unconfined" + name="system_tor" (LP: #1648143) + - SAUCE: apparmor: Fix no_new_privs blocking change_onexec when using stacked + namespaces + + * apparmor oops in bind_mnt when dev_path lookup fails (LP: #1660840) + - SAUCE: apparmor: fix oops in bind_mnt when dev_path lookup fails + + * apparmor auditing denied access of special apparmor .null fi\ le + (LP: #1660836) + - SAUCE: apparmor: Don't audit denied access of special apparmor .null file + + * apparmor label leak when new label is unused (LP: #1660834) + - SAUCE: apparmor: fix label leak when new label is unused + + * apparmor reference count bug in label_merge_insert() (LP: #1660833) + - SAUCE: apparmor: fix reference count bug in label_merge_insert() + + * apparmor's raw_data file in securityfs is sometimes truncated (LP: #1638996) + - SAUCE: apparmor: fix replacement race in reading rawdata + + * unix domain socket cross permission check failing with nested namespaces + (LP: #1660832) + - SAUCE: apparmor: fix cross ns perm of unix domain sockets + + * [Hyper-V][Mellanox] net/mlx4_core: Avoid delays during VF driver device + shutdown (LP: #1672785) + - Revert "net/mlx4_en: Avoid unregister_netdev at shutdown flow" + - net/mlx4_core: Avoid delays during VF driver device shutdown + + * Update ENA driver to 1.1.2 from net-next (LP: #1664312) + - net: ena: Remove unnecessary pci_set_drvdata() + - net: ena: Fix error return code in ena_device_init() + - net: ena: change the return type of ena_set_push_mode() to be void. + - net: ena: use setup_timer() and mod_timer() + - net/ena: remove ntuple filter support from device feature list + - net/ena: fix queues number calculation + - net/ena: fix ethtool RSS flow configuration + - net/ena: fix RSS default hash configuration + - net/ena: fix NULL dereference when removing the driver after device reset + failed + - net/ena: refactor ena_get_stats64 to be atomic context safe + - net/ena: fix potential access to freed memory during device reset + - net/ena: use READ_ONCE to access completion descriptors + - net/ena: reduce the severity of ena printouts + - net/ena: change driver's default timeouts + - net/ena: change condition for host attribute configuration + - net/ena: update driver version to 1.1.2 + + * ISST-LTE:pVM:roselp4:ubuntu16.04.2: number of numa_miss and numa_foreign + wrong in numastat (LP: #1672953) + - mm: fix remote numa hits statistics + - mm: get rid of __GFP_OTHER_NODE + + * Using an NVMe drive causes huge power drain (LP: #1664602) + - nvme/scsi: Remove power management support + - nvme: Pass pointers, not dma addresses, to nvme_get/set_features() + - nvme: introduce struct nvme_request + - nvme: Add a quirk mechanism that uses identify_ctrl + - nvme: Enable autonomous power state transitions + + * POWER9: Additional patches for TTY and CPU_IDLE (LP: #1674325) + - tty: Fix ldisc crash on reopened tty + - SAUCE: powerpc/powernv/cpuidle: Pass correct drv->cpumask for registration + + * Ubuntu 16.10: Network checksum fixes needed for IPoIB for Mellanox CX4/CX5 + card (LP: #1670247) + - Revert "powerpc: port 64 bits pgtable_cache to 32 bits" + - powerpc/Makefile: Drop CONFIG_WORD_SIZE for BITS + - powerpc: port 64 bits pgtable_cache to 32 bits + - [Config] CONFIG_WORD_SIZE disappeared + - powerpc/64: Fix checksum folding in csum_tcpudp_nofold and + ip_fast_csum_nofold + - powerpc/64: Use optimized checksum routines on little-endian + - CONFIG_GENERIC_CSUM=n for ppc64el + - powerpc/64: Fix checksum folding in csum_add() + + * [Hyper-V] Rebase Hyper-V to the upstream 4.10 kernel (LP: #1670544) + - PCI: hv: Use device serial number as PCI domain + - PCI: hv: Fix wslot_to_devfn() to fix warnings on device removal + - PCI: hv: Use the correct buffer size in new_pcichild_device() + - scsi: storvsc: Payload buffer incorrectly sized for 32 bit kernels. + - hv_netvsc: remove excessive logging on MTU change + - net: centralize net_device min/max MTU checking + - net: deprecate eth_change_mtu, remove usage + - net: use core MTU range checking in virt drivers + - hv_netvsc: fix a race between netvsc_send() and netvsc_init_buf() + - net: use core MTU range checking in virt drivers + - tools: hv: fix a compile warning in snprintf + - tools: hv: remove unnecessary header files and netlink related code + - vmbus: add support for dynamic device id's + - Drivers: hv: utils: reduce HV_UTIL_NEGO_TIMEOUT timeout + - Drivers: hv: utils: Fix the mapping between host version and protocol to use + - Drivers: hv: vss: Improve log messages. + - hv: change clockevents unbind tactics + - Drivers: hv: balloon: Disable hot add when CONFIG_MEMORY_HOTPLUG is not set + - Drivers: hv: balloon: Fix info request to show max page count + - Drivers: hv: balloon: Add logging for dynamic memory operations + - [Config] CONFIG_UIO_HV_GENERIC=m + - uio-hv-generic: new userspace i/o driver for VMBus + - hyperv: Fix spelling of HV_UNKOWN + - Drivers: hv: ring_buffer: count on wrap around mappings in + get_next_pkt_raw() (v2) + - ethernet: use net core MTU range checking in more drivers + + * Kernel linux-image-4.4.0-67-generic prevent the boot on Microsoft Hyper-v + 2012r2 Gen2 VM (LP: #1674635) + - scsi: storvsc: Workaround for virtual DVD SCSI version + + * Enable lspcon on i915 (LP: #1676747) + - drm: Helper for lspcon in drm_dp_dual_mode + - drm/i915: Add lspcon support for I915 driver + - drm/i915: Parse VBT data for lspcon + - drm/i915: Enable lspcon initialization + - drm/i915: Add lspcon resume function + + * stress_smoke_test passing and exiting rc=9 (linux 4.9.0-12.13 ADT test + failure with linux 4.9.0-12.13) (LP: #1658633) + - ext4: lock the xattr block before checksuming it + + * ip_rcv_finish() NULL pointer kernel panic (LP: #1672470) + - (upstream) bridge: drop netfilter fake rtable unconditionally + + * dm-queue-length module is not included in installer/initramfs (LP: #1673350) + - d-i: Also add dm-queue-length to multipath modules + + * Broadcom bluetooth modules sometimes fail to initialize (LP: #1483101) + - Bluetooth: btbcm: Add a delay for module reset + + * Need support of Broadcom bluetooth device [413c:8143] (LP: #1166113) + - Bluetooth: btusb: Add support for 413c:8143 + + * Unable to Connect Third HDD via USB Hub (LP: #1663991) + - mm/slub.c: fix random_seq offset destruction + + * POWER9 : Enable Stop 0-2 with ESL=EC=0 (LP: #1666197) + - powernv:idle: Add IDLE_STATE_ENTER_SEQ_NORET macro + - powernv:stop: Rename pnv_arch300_idle_init to pnv_power9_idle_init + - cpuidle:powernv: Add helper function to populate powernv idle states. + - powernv: Pass PSSCR value and mask to power9_idle_stop + - Documentation:powerpc: Add device-tree bindings for power-mgt + - powerpc/powernv: Fix bug due to labeling ambiguity in power_enter_stop + + * Nvlink2: Additional patches (LP: #1667081) + - mm: enable CONFIG_MOVABLE_NODE on non-x86 arches + - of/fdt: mark hotpluggable memory + - dt: add documentation of "hotpluggable" memory property + - powerpc/mm: Fix memory hotplug BUG() on radix + - powerpc/powernv: Initialise nest mmu + - powerpc/powernv: Use OPAL call for TCE kill on NVLink2 + - powerpc/mm: refactor radix physical page mapping + - powerpc/mm: add radix__create_section_mapping() + - powerpc/mm: add radix__remove_section_mapping() + - powerpc/mm: unstub radix__vmemmap_remove_mapping() + - [Config] Update CONFIG_MOVABLE_NODE values and annotations + - [Config] CONFIG_MOVABLE_NODE=n for s390x + + * FC Adapter (LPe32000-based) prints "iotag out of range", goes offline, and + delays boot a lot (Ubuntu17.04/Emulex/lpfc)) (LP: #1670490) + - scsi: lpfc: Correct WQ creation for pagesize + - scsi: lpfc: Add missing memory barrier + + * CIFS: Call echo service immediately after socket reconnect (LP: #1669941) + - Call echo service immediately after socket reconnect + + * Kernel: Fix Transactional memory config typo (LP: #1669023) + - powerpc/process: Fix CONFIG_ALIVEC typo in restore_tm_state() + + * h-prod does not function across cores (LP: #1670726) + - KVM: PPC: Book3S HV: Fix H_PROD to actually wake the target vcpu + + * [Hyper-V] Missing PCI patches breaking SR-IOV hot remove (LP: #1670518) + - PCI: hv: Fix hv_pci_remove() for hot-remove + - PCI: hv: Delete the device earlier from hbus->children for hot-remove + - PCI: hv: Make unnecessarily global IRQ masking functions static + - PCI: hv: Allocate physically contiguous hypercall params buffer + + * move aufs.ko from -extra to linux-image package (LP: #1673498) + - [config] aufs.ko moved to linux-image package + + * POWER9: Improve CAS negotiation (LP: #1671169) + - powerpc: Parse the command line before calling CAS + - powerpc: Add missing error check to prom_find_boot_cpu() + - powerpc/pseries: Advertise HPT resizing support via CAS + - powerpc/64: Disable use of radix under a hypervisor + - powerpc/pseries: Advertise Hot Plug Event support to firmware + - powerpc: Update to new option-vector-5 format for CAS + + * Power9 kernel: add virtualization patches (LP: #1670800) + - powerpc/fadump: Set core e_flags using kernel's ELF ABI version + - powerpc/sparse: Add more assembler prototypes + - powerpc/pasemi: Fix Nemo SB600 i8259 interrupts. + - powerpc/pasemi: Fix device_type of Nemo SB600 node. + - powerpc/pseries: Use H_CLEAR_HPT to clear MMU hash table during kexec + - powerpc/pseries: Move CMO code from plapr_wrappers.h to platforms/pseries + - powerpc: Fix old style declaration GCC warnings + - powerpc/pseries: add definitions for new H_SIGNAL_SYS_RESET hcall + - powerpc/prom: Define structs for client architecture vectors + - powerpc/prom: Switch to using structs for ibm_architecture_vec + - tracing: Have the reg function allow to fail + - powerpc: port 64 bits pgtable_cache to 32 bits + - powerpc/64: Don't try to use radix MMU under a hypervisor + - powerpc/pseries: Fixes for the "ibm,architecture-vec-5" options + - powerpc/64: Enable use of radix MMU under hypervisor on POWER9 + + * lsattr 32bit does not work on 64bit kernel (Inappropriate ioctl error) + (LP: #1619918) + - btrfs: fix btrfs_compat_ioctl failures on non-compat ioctls + + * linux-tools-common should Depends: lsb-release (LP: #1667571) + - [Config] linux-tools-common depends on lsb-release + + * CAPI:Ubuntu: Kernel panic while rebooting (LP: #1667599) + - pci/hotplug/pnv-php: Remove WARN_ON() in pnv_php_put_slot() + + * Add Use-After-Free Patch for Ubuntu16.10 - EEH on BELL3 adapter fails to + recover (serial/tty) (LP: #1669153) + - 8250_pci: Fix potential use-after-free in error path + + * Request to backport cxlflash patches to Xenial SRU stream (LP: #1623750) + - scsi: cxlflash: Scan host only after the port is ready for I/O + - scsi: cxlflash: Fix to avoid EEH and host reset collisions + - scsi: cxlflash: Improve EEH recovery time + + * FlashGT Integration and Setup: fsbmc30: After 17th reboot of soft bootme, + HTX & Linux errors seen with 256 virtual LUNs (LP: #1667239) + - cxl: Fix coredump generation when cxl_get_fd() is used + + * POWER9: Additional patches for 17.04 and 16.04.2 (LP: #1667116) + - powerpc/mm: Update PROTFAULT handling in the page fault path + - powerpc/mm/radix: Update pte update sequence for pte clear case + - powerpc/mm/radix: Use ptep_get_and_clear_full when clearing pte for full mm + - powerpc/mm/radix: Skip ptesync in pte update helpers + - SAUCE: powerpc/mm/hash: Always clear UPRT and Host Radix bits when setting + up CPU + + * [Hyper-V] Ubuntu 14.04.2 LTS Generation 2 SCSI Errors on VSS Based Backups + (LP: #1470250) + - Drivers: hv: vss: Operation timeouts should match host expectation + - SAUCE: Tools: hv: vss: Thaw the filesystem and continue after freeze fails + + * PowerNV: No rate limit for kernel error "KVM can't copy data from" + (LP: #1667416) + - SAUCE: KVM: PPC: Book3S: Ratelimit copy data failure error messages + + * kernel 4.4.0-63 with USB WLAN RTL8192CU freezes desktop (LP: #1666421) + - rtlwifi: rtl_usb: Fix missing entry in USB driver's private data + + * Export symbol "dev_pm_qos_update_user_latency_tolerance" (LP: #1666401) + - PM / QoS: Export dev_pm_qos_update_user_latency_tolerance + + * Linux ZFS port doesn't respect RLIMIT_FSIZE (LP: #1656259) + - SAUCE: (noup) Update zfs to 0.6.5.8-0ubuntu4.2 + + -- Thadeu Lima de Souza Cascardo Tue, 04 Apr 2017 16:56:40 +0100 + +linux (4.8.0-46.49) yakkety; urgency=low + + * linux: 4.8.0-46.49 -proposed tracker (LP: #1678046) + + * Fix CVE-2017-7308 (LP: #1678009) + - net/packet: fix overflow in check for priv area size + - net/packet: fix overflow in check for tp_frame_nr + - net/packet: fix overflow in check for tp_reserve + + -- Stefan Bader Fri, 31 Mar 2017 09:13:32 +0200 + +linux (4.8.0-45.48) yakkety; urgency=low + + * CVE-2017-7184 + - xfrm_user: validate XFRM_MSG_NEWAE XFRMA_REPLAY_ESN_VAL replay_window + - xfrm_user: validate XFRM_MSG_NEWAE incoming ESN size harder + + -- Stefan Bader Fri, 24 Mar 2017 12:03:39 +0100 + +linux (4.8.0-44.47) yakkety; urgency=low + + * linux: 4.8.0-44.47 -proposed tracker (LP: #1674986) + + * snaps with classic + jailmode confinement started to fail on zesty + (LP: #1666897) + - Revert "UBUNTU: SAUCE: apparmor: fix link auditing failure due to, + uninitialized var" + - Revert "UBUNTU: SAUCE: fix regression with domain change in complain mode" + - Revert "UBUNTU: SAUCE: apparmor: flock mediation is not being enforced on + cache check" + - Revert "UBUNTU: SAUCE: apparmor: null profiles should inherit parent control + flags" + - Revert "UBUNTU: SAUCE: apparmor: fix ns ref count link when removing + profiles from policy" + - Revert "UBUNTU: SAUCE: apparmor: Fix no_new_privs blocking change_onexec + when using stacked namespaces" + - Revert "UBUNTU: SAUCE: apparmor: fix oops in bind_mnt when dev_path lookup + fails" + - Revert "UBUNTU: SAUCE: apparmor: Don't audit denied access of special + apparmor .null file" + - Revert "UBUNTU: SAUCE: apparmor: fix label leak when new label is unused" + - Revert "UBUNTU: SAUCE: apparmor: fix reference count bug in + label_merge_insert()" + - Revert "UBUNTU: SAUCE: apparmor: fix replacement race in reading rawdata" + - Revert "UBUNTU: SAUCE: apparmor: fix cross ns perm of unix domain sockets" + + -- Thadeu Lima de Souza Cascardo Wed, 22 Mar 2017 10:22:27 -0300 + +linux (4.8.0-42.45) yakkety; urgency=low + + * linux: 4.8.0-42.45 -proposed tracker (LP: #1671176) + + * Regression in 4.4.0-65-generic causes very frequent system crashes + (LP: #1669611) + - Revert "UBUNTU: SAUCE: apparmor: fix lock ordering for mkdir" + - Revert "UBUNTU: SAUCE: apparmor: fix leak on securityfs pin count" + - Revert "UBUNTU: SAUCE: apparmor: fix reference count leak when + securityfs_setup_d_inode() fails" + - Revert "UBUNTU: SAUCE: apparmor: fix not handling error case when + securityfs_pin_fs() fails" + + * NFS client : permission denied when trying to access subshare, since kernel + 4.4.0-31 (LP: #1649292) + - fs: Better permission checking for submounts + + * shaking screen (LP: #1651981) + - drm/radeon: drop verde dpm quirks + + * [0bda:0328] Card reader failed after S3 (LP: #1664809) + - usb: hub: Wait for connection to be reestablished after port reset + + * linux-lts-xenial 4.4.0-63.84~14.04.2 ADT test failure with linux-lts-xenial + 4.4.0-63.84~14.04.2 (LP: #1664912) + - SAUCE: apparmor: fix link auditing failure due to, uninitialized var + + * In Ubuntu 17.04 : after reboot getting message in console like Unable to + open file: /etc/keys/x509_ima.der (-2) (LP: #1656908) + - SAUCE: ima: Downgrade error to warning + + * 16.04.2: Extra patches for POWER9 (LP: #1664564) + - powerpc/mm: Fix no execute fault handling on pre-POWER5 + - powerpc/mm: Fix spurrious segfaults on radix with autonuma + + * ibmvscsis: Add SGL LIMIT (LP: #1662551) + - ibmvscsis: Add SGL limit + + * [Hyper-V] Bug fixes for storvsc (tagged queuing, error conditions) + (LP: #1663687) + - scsi: storvsc: Enable tracking of queue depth + - scsi: storvsc: Remove the restriction on max segment size + - scsi: storvsc: Enable multi-queue support + - scsi: storvsc: use tagged SRB requests if supported by the device + - scsi: storvsc: properly handle SRB_ERROR when sense message is present + - scsi: storvsc: properly set residual data length on errors + + * Ubuntu16.10-KVM:Big configuration with multiple guests running SRIOV VFs + caused KVM host hung and all KVM guests down. (LP: #1651248) + - KVM: PPC: Book 3S: XICS cleanup: remove XICS_RM_REJECT + - KVM: PPC: Book 3S: XICS: correct the real mode ICP rejecting counter + - KVM: PPC: Book 3S: XICS: Fix potential issue with duplicate IRQ resends + - KVM: PPC: Book 3S: XICS: Implement ICS P/Q states + - KVM: PPC: Book 3S: XICS: Don't lock twice when checking for resend + + * ISST-LTE:pNV: ppc64_cpu command is hung w HDs, SSDs and NVMe (LP: #1662666) + - blk-mq: Avoid memory reclaim when remapping queues + - blk-mq: Fix failed allocation path when mapping queues + - blk-mq: Always schedule hctx->next_cpu + + * systemd-udevd hung in blk_mq_freeze_queue_wait testing unpartitioned NVMe + drive (LP: #1662673) + - percpu-refcount: fix reference leak during percpu-atomic transition + + * [Yakkety SRU] Enable KEXEC support in ARM64 kernel (LP: #1662554) + - [Config] Enable KEXEC support in ARM64. + + * [Hyper-V] Fix ring buffer handling to avoid host throttling (LP: #1661430) + - Drivers: hv: vmbus: On write cleanup the logic to interrupt the host + - Drivers: hv: vmbus: On the read path cleanup the logic to interrupt the host + - Drivers: hv: vmbus: finally fix hv_need_to_signal_on_read() + + * brd module compiled as built-in (LP: #1593293) + - CONFIG_BLK_DEV_RAM=m + + * regession tests failing after stackprofile test is run (LP: #1661030) + - SAUCE: fix regression with domain change in complain mode + + * Permission denied and inconsistent behavior in complain mode with 'ip netns + list' command (LP: #1648903) + - SAUCE: fix regression with domain change in complain mode + + * flock not mediated by 'k' (LP: #1658219) + - SAUCE: apparmor: flock mediation is not being enforced on cache check + + * unexpected errno=13 and disconnected path when trying to open /proc/1/ns/mnt + from a unshared mount namespace (LP: #1656121) + - SAUCE: apparmor: null profiles should inherit parent control flags + + * apparmor refcount leak of profile namespace when removing profiles + (LP: #1660849) + - SAUCE: apparmor: fix ns ref count link when removing profiles from policy + + * tor in lxd: apparmor="DENIED" operation="change_onexec" + namespace="root//CONTAINERNAME_" profile="unconfined" + name="system_tor" (LP: #1648143) + - SAUCE: apparmor: Fix no_new_privs blocking change_onexec when using stacked + namespaces + + * 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 + + * apparmor oops in bind_mnt when dev_path lookup fails (LP: #1660840) + - SAUCE: apparmor: fix oops in bind_mnt when dev_path lookup fails + + * apparmor auditing denied access of special apparmor .null fi\ le + (LP: #1660836) + - SAUCE: apparmor: Don't audit denied access of special apparmor .null file + + * apparmor label leak when new label is unused (LP: #1660834) + - SAUCE: apparmor: fix label leak when new label is unused + + * apparmor reference count bug in label_merge_insert() (LP: #1660833) + - SAUCE: apparmor: fix reference count bug in label_merge_insert() + + * apparmor's raw_data file in securityfs is sometimes truncated (LP: #1638996) + - SAUCE: apparmor: fix replacement race in reading rawdata + + * unix domain socket cross permission check failing with nested namespaces + (LP: #1660832) + - SAUCE: apparmor: fix cross ns perm of unix domain sockets + + * Enable CONFIG_NET_DROP_MONITOR=m in Ubuntu Kernel (LP: #1660634) + - [Config] CONFIG_NET_DROP_MONITOR=m + + * Linux kernel 4.8 hangs at boot up (LP: #1659340) + - SAUCE: x86/efi: Always map first physical page into EFI pagetables + + * s390/kconfig: CONFIG_NUMA without CONFIG_NUMA_EMU does not make any sense on + s390x (LP: #1557690) + - [Config] CONFIG_NUMA_BALANCING=y + - [Config] CONFIG_NUMA=y, CONFIG_NUMA_EMU=y for s390x + + -- Thadeu Lima de Souza Cascardo Wed, 08 Mar 2017 14:37:04 -0300 + +linux (4.8.0-41.44) yakkety; urgency=low + + * CVE-2017-2636 + - tty: n_hdlc: get rid of racy n_hdlc.tbuf + + -- Stefan Bader Fri, 03 Mar 2017 12:23:03 +0100 + +linux (4.8.0-39.42) yakkety; urgency=low + + * CVE-2017-6074 (LP: #1665935) + - dccp: fix freeing skb too early for IPV6_RECVPKTINFO + + -- Stefan Bader Mon, 20 Feb 2017 09:30:56 +0100 + +linux (4.8.0-38.41) yakkety; urgency=low + + [ Thadeu Lima de Souza Cascardo ] + + * Release Tracking Bug + - LP: #1661232 + + * Backport Dirty COW patch to prevent wineserver freeze (LP: #1658270) + - SAUCE: mm: Respect FOLL_FORCE/FOLL_COW for thp + + * Kdump through NMI SMP and single core not working on Ubuntu16.10 + (LP: #1630924) + - x86/hyperv: Handle unknown NMIs on one CPU when unknown_nmi_panic + - SAUCE: hv: don't reset hv_context.tsc_page on crash + + * Call trace when testing fstat stressor on ppc64el with virtual keyboard and + mouse present (LP: #1652132) + - HID: usbhid: Quirk a AMI virtual mouse and keyboard with ALWAYS_POLL + + * regression in linux-libc-dev in yakkety: C++ style comments are not allowed + in ISO C90 (LP: #1659654) + - generic syscalls: kill cruft from removed pkey syscalls + + * [16.04.2] POWER9 patches on top of 4.8 (LP: #1650263) + - powerpc/book3s: Add a cpu table entry for different POWER9 revs + - powerpc/mm/radix: Use different RTS encoding for different POWER9 revs + - powerpc/mm/radix: Use different pte update sequence for different POWER9 + revs + - powerpc/mm: Update the HID bit when switching from radix to hash + - powerpc/64/kexec: NULL check "clear_all" in kexec_sequence + - powerpc/64/kexec: Fix MMU cleanup on radix + - powerpc/mm: Add radix flush all with IS=3 + - powerpc/64/kexec: Copy image with MMU off when possible + - powerpc/64: Simplify adaptation to new ISA v3.00 HPTE format + - powerpc/mm/radix: Invalidate ERAT on tlbiel for POWER9 DD1 + - powerpc/mm: Fix missing update of HID register on secondary CPUs + - powerpc/64: Add some more SPRs and SPR bits for POWER9 + - powerpc/64: Provide functions for accessing POWER9 partition table + - powerpc/powernv: Define real-mode versions of OPAL XICS accessors + - powerpc/64: Define new ISA v3.00 logical PVR value and PCR register value + - mm: update mmu_gather range correctly + - mm/hugetlb: add tlb_remove_hugetlb_entry for handling hugetlb pages + - mm: add tlb_remove_check_page_size_change to track page size change + - powerpc: Revert Load Monitor Register Support + - powerpc/mm: Correct process and partition table max size + - powernv: Clear SPRN_PSSCR when a POWER9 CPU comes online + - powerpc/mm/radix: Setup AMOR in HV mode to allow key 0 + - powerpc/mm: Detect instruction fetch denied and report + - powerpc/mm/radix: Prevent kernel execution of user space + - powerpc/mm: Rename hugetlb-radix.h to hugetlb.h + - powerpc/mm/hugetlb: Handle hugepage size supported by hash config + - powerpc/mm: Introduce _PAGE_LARGE software pte bits + - powerpc/mm: Add radix__tlb_flush_pte_p9_dd1() + - powerpc/mm: update radix__ptep_set_access_flag to not do full mm tlb flush + - powerpc/mm: update radix__pte_update to not do full mm tlb flush + - powerpc/mm: Batch tlb flush when invalidating pte entries + - powerpc/sparse: Make a bunch of things static + - powerpc/perf: factor out the event format field + - powerpc/perf: update attribute_group data structure + - powerpc/perf: power9 raw event format encoding + - powerpc/perf: macros for power9 format encoding + - KVM: PPC: Book3S: Don't crash if irqfd used with no in-kernel XICS emulation + - KVM: PPC: Implement kvm_arch_intc_initialized() for PPC + - KVM: PPC: Book3S HV: Move struct kvmppc_vcore from kvm_host.h to + kvm_book3s.h + - KVM: PPC: Book3S HV: Change vcore element runnable_threads from linked-list + to array + - KVM: Export kvm module parameter variables + - KVM: PPC: Book3S HV: Implement halt polling + - KVM: Add provisioning for ulong vm stats and u64 vcpu stats + - KVM: PPC: Implement existing and add new halt polling vcpu stats + - powerpc/mm: Speed up computation of base and actual page size for a HPTE + - powerpc: Add simple cache inhibited MMIO accessors + - KVM: PPC: Book3S HV: Convert kvmppc_read_intr to a C function + - KVM: PPC: select IRQ_BYPASS_MANAGER + - KVM: PPC: Book3S HV: Introduce kvmppc_passthru_irqmap + - powerpc/powernv: Provide facilities for EOI, usable from real mode + - KVM: PPC: Book3S HV: Enable IRQ bypass + - KVM: PPC: Book3S HV: Handle passthrough interrupts in guest + - KVM: PPC: Book3S HV: Complete passthrough interrupt in host + - KVM: PPC: Book3S HV: Dump irqmap in debugfs + - KVM: PPC: Book3S HV: Tunable to disable KVM IRQ bypass + - KVM: PPC: Book3S HV: Update irq stats for IRQs handled in real mode + - KVM: PPC: Book3S HV: Set server for passed-through interrupts + - KVM: PPC: Book3S HV: Counters for passthrough IRQ stats + - KVM: PPC: e500: Use kmalloc_array() in kvm_vcpu_ioctl_config_tlb() + - KVM: PPC: e500: Less function calls in kvm_vcpu_ioctl_config_tlb() after + error detection + - KVM: PPC: e500: Delete an unnecessary initialisation in + kvm_vcpu_ioctl_config_tlb() + - KVM: PPC: e500: Replace kzalloc() calls by kcalloc() in two functions + - KVM: PPC: e500: Use kmalloc_array() in kvmppc_e500_tlb_init() + - KVM: PPC: e500: Rename jump labels in kvmppc_e500_tlb_init() + - kvm: add stubs for arch specific debugfs support + - KVM: PPC: Book3S: Treat VTB as a per-subcore register, not per-thread + - KVM: PPC: Book3S HV: Take out virtual core piggybacking code + - KVM: PPC: Book3S: Remove duplicate setting of the B field in tlbie + - KVM: PPC: Book3S PR: Support 64kB page size on POWER8E and POWER8NVL + - KVM: PPC: Book3S HV: Fix build error when SMP=n + - KVM: PPC: Book3S HV: Fix sparse static warning + - KVM: PPC: Book3S HV: sparse: prototypes for functions called from assembler + - KVM: PPC: Book3S HV: Use list_move_tail instead of list_del/list_add_tail + - KVM: PPC: Book3S HV: Clear the key field of HPTE when the page is paged out + - KVM: PPC: Book3S HV: Add a per vcpu cache for recently page faulted MMIO + entries + - KVM: PPC: Book3S HV: Drop duplicate header asm/iommu.h + - KVM: PPC: Book3S HV: Adapt to new HPTE format on POWER9 + - KVM: PPC: Book3S HV: Set partition table rather than SDR1 on POWER9 + - KVM: PPC: Book3S HV: Adjust host/guest context switch for POWER9 + - KVM: PPC: Book3S HV: Add new POWER9 guest-accessible SPRs + - KVM: PPC: Book3S HV: Adapt TLB invalidations to work on POWER9 + - KVM: PPC: Book3S HV: Use msgsnd for IPIs to other cores on POWER9 + - KVM: PPC: Book3S HV: Use OPAL XICS emulation on POWER9 + - KVM: PPC: Book3S HV: Use stop instruction rather than nap on POWER9 + - KVM: PPC: Book3S HV: Enable hypervisor virtualization interrupts while in + guest + - KVM: PPC: Book3S HV: Treat POWER9 CPU threads as independent subcores + - KVM: PPC: Book3S HV: Update kvmppc_set_arch_compat() for ISA v3.00 + - KVM: PPC: Book3S HV: Fix compilation with unusual configurations + - KVM: PPC: Correctly report KVM_CAP_PPC_ALLOC_HTAB + - KVM: PPC: Book3S HV: Use generic kvm module parameters + - KVM: PPC: Book3S HV: Add check for module parameter halt_poll_ns + - KVM: PPC: Decrease the powerpc default halt poll max value + - KVM: PPC: Book3S HV: Comment style and print format fixups + - KVM: PPC: Book3S: Move prototypes for KVM functions into kvm_ppc.h + - KVM/PPC/Book3S HV: Convert to hotplug state machine + - [Config] IRQ_BYPASS_MANAGER=y + + * [regression 4.8.0-14 -> 4.8.0-17] keyboard and touchscreen lost on Acer + Chromebook R11 (LP: #1630238) + - [Config] CONFIG_PINCTRL_CHERRYVIEW=y + + * Bug fixes for IBM VNIC Driver (LP: #1655379) + - ibmvnic: Fix GFP_KERNEL allocation in interrupt context + - ibmvnic: Update MTU after device initialization + - ibmvnic: Fix releasing of sub-CRQ IRQs in interrupt context + - ibmvnic: Fix missing brackets in init_sub_crq_irqs + - ibmvnic: Start completion queue negotiation at server-provided optimum + values + - ibmvnic: Unmap ibmvnic_statistics structure + - ibmvnic: Fix size of debugfs name buffer + + * Backport 3 patches to fix bugs with AIX clients using IBMVSCSI Target Driver + (LP: #1657194) + - SAUCE: ibmvscsis: Fix max transfer length + - SAUCE: ibmvscsis: fix sleeping in interrupt context + - SAUCE: ibmvscsis: Fix srp_transfer_data fail return code + + * NVMe: adapter is missing after abnormal shutdown followed by quick reboot, + quirk needed (LP: #1656913) + - nvme: apply DELAY_BEFORE_CHK_RDY quirk at probe time too + + * Ubuntu 16.10 KVM SRIOV: if enable sriov while ping flood is running ping + will stop working (LP: #1625318) + - PCI: Do any VF BAR updates before enabling the BARs + - PCI: Ignore BAR updates on virtual functions + - PCI: Update BARs using property bits appropriate for type + - PCI: Separate VF BAR updates from standard BAR updates + - PCI: Don't update VF BARs while VF memory space is enabled + - PCI: Remove pci_resource_bar() and pci_iov_resource_bar() + - PCI: Decouple IORESOURCE_ROM_ENABLE and PCI_ROM_ADDRESS_ENABLE + - PCI: Add comments about ROM BAR updating + + * Ubuntu - ibmveth: abnormally large TCP MSS value caused a TCP session to + hang with a zero window (LP: #1655420) + - ibmveth: set correct gso_size and gso_type + - ibmveth: calculate gso_segs for large packets + + * netfilter regression introducing a performance slowdown in binary + arp/ip/ip6tables (LP: #1640786) + - netfilter: x_tables: pass xt_counters struct instead of packet counter + - netfilter: x_tables: pass xt_counters struct to counter allocator + - netfilter: x_tables: pack percpu counter allocations + + * Move some kernel modules to the main kernel package (part 2) (LP: #1655002) + - [Config] Add IBM power drivers to the inclusion list + + * [Hyper-V] netvsc: add rcu_read locked to netvsc callback (LP: #1657540) + - netvsc: add rcu_read locking to netvsc callback + + * [Hyper-V] Rebase Hyper-V in 16.04 and 16.10 to the the upstream 4.9 kernel + (LP: #1650059) + - hv_netvsc: Add query for initial physical link speed + - hv_netvsc: Add handler for physical link speed change + - hv_netvsc: Implement batching of receive completions + - PCI: hv: Use list_move_tail() instead of list_del() + list_add_tail() + - hv_netvsc: fix rtnl locking in callback + - hv_netvsc: make RSS hash key static + - hv_netvsc: use kcalloc + - hv_netvsc: style cleanups + - hv_netvsc: make inline functions static + - hv_netvsc: use ARRAY_SIZE() for NDIS versions + - hv_netvsc: make device_remove void + - hv_netvsc: init completion during alloc + - hv_netvsc: rearrange start_xmit + - hv_netvsc: refactor completion function + - hv_netvsc: make netvsc_destroy_buf void + - hv_netvsc: make variable local + - hv_netvsc: report vmbus name in ethtool + - hv_netvsc: add ethtool statistics for tx packet issues + - Drivers: hv: get rid of redundant messagecount in create_gpadl_header() + - Drivers: hv: don't leak memory in vmbus_establish_gpadl() + - Drivers: hv: get rid of timeout in vmbus_open() + - Drivers: hv: utils: fix a race on userspace daemons registration + - Drivers: hv: vmbus: fix the race when querying & updating the percpu list + - Drivers: hv: vmbus: Enable explicit signaling policy for NIC channels + - Drivers: hv: vmbus: Reduce the delay between retries in vmbus_post_msg() + - Drivers: hv: vmbus: Implement a mechanism to tag the channel for low latency + - Tools: hv: kvp: ensure kvp device fd is closed on exec + - Drivers: hv: balloon: keep track of where ha_region starts + - Drivers: hv: balloon: account for gaps in hot add regions + - Drivers: hv: balloon: don't wait for ol_waitevent when memhp_auto_online is + enabled + - Drivers: hv: balloon: replace ha_region_mutex with spinlock + - Drivers: hv: balloon: Use available memory value in pressure report + - Drivers: hv: cleanup vmbus_open() for wrap around mappings + - Drivers: hv: ring_buffer: wrap around mappings for ring buffers + - Drivers: hv: ring_buffer: use wrap around mappings in hv_copy{from, + to}_ringbuffer() + - Drivers: hv: ring_buffer: count on wrap around mappings in + get_next_pkt_raw() + - Drivers: hv: Introduce a policy for controlling channel affinity + - Drivers: hv: utils: Continue to poll VSS channel after handling requests. + - Drivers: hv: utils: Check VSS daemon is listening before a hot backup + - PCI: hv: Use zero-length array in struct pci_packet + - PCI: hv: Use pci_function_description[0] in struct definitions + - PCI: hv: Remove the unused 'wrk' in struct hv_pcibus_device + - PCI: hv: Handle vmbus_sendpacket() failure in hv_compose_msi_msg() + - PCI: hv: Handle hv_pci_generic_compl() error case + - Revert "Drivers: hv: ring_buffer: count on wrap around mappings in + get_next_pkt_raw()" + - Driver: hv: vmbus: Make mmio resource local + - Drivers: hv: vmbus: suppress some "hv_vmbus: Unknown GUID" warnings + - Drivers: hv: utils: Rename version definitions to reflect protocol version. + - Drivers: hv: utils: Use TimeSync samples to adjust the clock after boot. + - Drivers: hv: utils: Support TimeSync version 4.0 protocol samples. + - Drivers: hv: hv_util: Avoid dynamic allocation in time synch + - Revert "hv_netvsc: make inline functions static" + - hv_netvsc: use consume_skb + - hv_netvsc: dev hold/put reference to VF + - hv_netvsc: simplify callback event code + - hv_netvsc: improve VF device matching + - hv_netvsc: use RCU to protect vf_netdev + - hv_netvsc: remove VF in flight counters + - hv_netvsc: count multicast packets received + - hv_netvsc: fix comments + - Drivers: hv: make VMBus bus ids persistent + - Drivers: hv: get rid of id in struct vmbus_channel + - netvsc: fix checksum on UDP IPV6 + - netvsc: Remove mistaken udp.h inclusion. + - net/hyperv: avoid uninitialized variable + - Revert "hv_netvsc: report vmbus name in ethtool" + - vmbus: make sysfs names consistent with PCI + - netvsc: reduce maximum GSO size + - Drivers: hv: vmbus: Base host signaling strictly on the ring state + + * Yakkety update to v4.8.17 stable release (LP: #1655057) + - ssb: Fix error routine when fallback SPROM fails + - rtlwifi: Fix enter/exit power_save + - perf/x86: Fix exclusion of BTS and LBR for Goldmont + - perf/x86/intel/cstate: Prevent hotplug callback leak + - rtl8xxxu: Work around issue with 8192eu and 8723bu devices not reconnecting + - cfg80211/mac80211: fix BSS leaks when abandoning assoc attempts + - ath9k: fix ath9k_hw_gpio_get() to return 0 or 1 on success + - ath9k: Really fix LED polarity for some Mini PCI AR9220 MB92 cards. + - mmc: sdhci: Fix recovery from tuning timeout + - regulator: stw481x-vmmc: fix ages old enable error + - timekeeping_Force_unsigned_clocksource_to_nanoseconds_conversion + - gpio: chardev: Return error for seek operations + - arm64: tegra: Add VDD_GPU regulator to Jetson TX1 + - clk: bcm2835: Avoid overwriting the div info when disabling a pll_div clk + - thermal: hwmon: Properly report critical temperature in sysfs + - docs: sphinx-extensions: make rstFlatTable work with docutils 0.13 + - hv: acquire vmbus_connection.channel_mutex in vmbus_free_channels() + - staging: comedi: ni_mio_common: fix M Series ni_ai_insn_read() data mask + - staging: comedi: ni_mio_common: fix E series ni_ai_insn_read() data + - ACPI / video: Add force_native quirk for Dell XPS 17 L702X + - ACPI / video: Add force_native quirk for HP Pavilion dv6 + - drm/amd/amdgpu: enable GUI idle INT after enabling CGCG + - drm/nouveau/gr: fallback to legacy paths during firmware lookup + - drm/nouveau/kms: lvds panel strap moved again on maxwell + - drm/nouveau/bios: require checksum to match for fast acpi shadow method + - drm/nouveau/ltc: protect clearing of comptags with mutex + - drm/nouveau/ttm: wait for bo fence to signal before unmapping vmas + - drm/nouveau/i2c/gk110b,gm10x: use the correct implementation + - drm/nouveau/fifo/gf100-: protect channel preempt with subdev mutex + - drm/radeon: Also call cursor_move_locked when the cursor size changes + - drm/radeon: Hide the HW cursor while it's out of bounds + - drm/radeon: add additional pci revision to dpm workaround + - drm/radeon/si: load the proper firmware on 0x87 oland boards + - drm/gma500: Add compat ioctl + - drm/amdgpu: fix init save/restore list in gfx_v8.0 + - drivers/gpu/drm/ast: Fix infinite loop if read fails + - mei: request async autosuspend at the end of enumeration + - mei: me: add lewisburg device ids + - block: protect iterate_bdevs() against concurrent close + - vt: fix Scroll Lock LED trigger name + - stm class: Fix device leak in open error path + - scsi: megaraid_sas: For SRIOV enabled firmware, ensure VF driver waits for + 30secs before reset + - scsi: megaraid_sas: Do not set MPI2_TYPE_CUDA for JBOD FP path for FW which + does not support JBOD sequence map + - iscsi-target: Return error if unable to add network portal + - scsi: zfcp: fix use-after-"free" in FC ingress path after TMF + - scsi: zfcp: do not trace pure benign residual HBA responses at default level + - scsi: zfcp: fix rport unblock race with LUN recovery + - scsi: avoid a permanent stop of the scsi device's request queue + - ARC: mm: arc700: Don't assume 2 colours for aliasing VIPT dcache + - firmware: fix usermode helper fallback loading + - s390/vmlogrdr: fix IUCV buffer allocation + - s390/kexec: use node 0 when re-adding crash kernel memory + - arm64: KVM: pmu: Reset PMSELR_EL0.SEL to a sane value before entering the + guest + - sc16is7xx: Drop bogus use of IRQF_ONESHOT + - md/raid5: limit request size according to implementation limits + - scsi: aacraid: remove wildcard for series 9 controllers + - KVM: PPC: Book3S HV: Save/restore XER in checkpointed register state + - KVM: PPC: Book3S HV: Don't lose hardware R/C bit updates in H_PROTECT + - kvm: nVMX: Allow L1 to intercept software exceptions (#BP and #OF) + - fsnotify: Fix possible use-after-free in inode iteration on umount + - vsock/virtio: fix src/dst cid format + - platform/x86: asus-nb-wmi.c: Add X45U quirk + - fgraph: Handle a case where a tracer ignores set_graph_notrace + - IB/mad: Fix an array index check + - IPoIB: Avoid reading an uninitialized member variable + - IB/multicast: Check ib_find_pkey() return value + - IB/rxe: Fix a memory leak in rxe_qp_cleanup() + - IB/cma: Fix a race condition in iboe_addr_get_sgid() + - mn88472: fix chip id check on probe + - mn88473: fix chip id check on probe + - s5p-mfc: fix failure path of s5p_mfc_alloc_memdev() + - media: solo6x10: fix lockup by avoiding delayed register write + - v4l: tvp5150: Add missing break in set control handler + - Input: drv260x - fix input device's parent assignment + - i40iw: Use correct src address in memcpy to rdma stats counters + - PCI: Check for PME in targeted sleep state + - libceph: verify authorize reply on connect + - nfs_write_end(): fix handling of short copies + - pNFS: On error, do not send LAYOUTGET until the LAYOUTRETURN has completed + - pNFS: Don't clear the layout stateid if a layout return is outstanding + - pNFS: Clear NFS_LAYOUT_RETURN_REQUESTED when invalidating the layout stateid + - pNFS: Fix a deadlock between read resends and layoutreturn + - SUNRPC: fix refcounting problems with auth_gss messages. + - powerpc/64e: Convert cmpi to cmpwi in head_64.S + - powerpc/ps3: Fix system hang with GCC 5 builds + - libnvdimm, pfn: fix align attribute + - kconfig/nconf: Fix hang when editing symbol with a long prompt + - sg_write()/bsg_write() is not fit to be called under KERNEL_DS + - net: mvpp2: fix dma unmapping of TX buffers for fragments + - drm/i915/dsi: Fix chv_exec_gpio disabling the GPIOs it is setting + - drm/i915/dsi: Do not clear DPOUNIT_CLOCK_GATE_DISABLE from + vlv_init_display_clock_gating + - drm/i915: Fix cdclk vs. dev_cdclk mess when not recomputing things + - drm/i915: Initialize dev_priv->atomic_cdclk_freq at init time + - drm/i915: skip the first 4k of stolen memory on everything >= gen8 + - Linux 4.8.17 + + * Ubuntu 16.10 KVM: Running out of memory if trying to bringup guest with more + than 64VFs. (LP: #1654067) + - powerpc/iommu: Pass mm_struct to init/cleanup helpers + - powerpc/iommu: Stop using @current in mm_iommu_xxx + - vfio/spapr: Postpone allocation of userspace version of TCE table + - vfio/spapr: Add a helper to create default DMA window + - vfio/spapr: Postpone default window creation + - vfio/spapr: Reference mm in tce_container + - powerpc/mm/iommu, vfio/spapr: Put pages on VFIO container shutdown + + * Miscellaneous Ubuntu changes + - [Config] Drop elants_i2c and pinctrl-cherryview from ABI + + -- Benjamin M Romer Tue, 07 Feb 2017 13:59:06 -0500 + +linux (4.8.0-37.39) yakkety; urgency=low + + [ Thadeu Lima de Souza Cascardo ] + + * Release Tracking Bug + - LP: #1659381 + + * Mouse cursor invisible or does not move (LP: #1646574) + - drm/nouveau/disp/nv50-: split chid into chid.ctrl and chid.user + - drm/nouveau/disp/nv50-: specify ctrl/user separately when constructing + classes + - drm/nouveau/disp/gp102: fix cursor/overlay immediate channel indices + + -- Benjamin M Romer Wed, 25 Jan 2017 16:12:02 -0200 + +linux (4.8.0-36.38) yakkety; urgency=low + + [ John Donnelly ] + + * Release Tracking Bug + - LP: #1657112 + + * Xen MSI setup code incorrectly re-uses cached pirq (LP: #1656381) + - SAUCE: xen: do not re-use pirq number cached in pci device msi msg data + + * nvme drive probe failure (LP: #1626894) + - nvme: revert NVMe: only setup MSIX once + + * i386 ftrace tests hang on ADT testing (LP: #1655040) + - ftrace/x86_32: Set ftrace_stub to weak to prevent gcc from using short jumps + to it + + * SRIOV VNIC Server/Backing Device Failover support (LP: #1654343) + - ibmvnic: Handle backing device failover and reinitialization + + * NVMe drives in Amazon AWS instance fail to initialize (LP: #1648449) + - SAUCE: (no-up) NVMe: only setup MSIX once + + * NVMe driver regression for non-smp/1-cpu systems (LP: #1651602) + - SAUCE: (no-up) NVMe: only setup MSIX once + + * Yakkety update to v4.8.16 stable release (LP: #1654584) + - aoe: fix crash in page count manipulation + - btrfs: limit async_work allocation and worker func duration + - Btrfs: fix BUG_ON in btrfs_mark_buffer_dirty + - Btrfs: fix deadlock caused by fsync when logging directory entries + - Btrfs: fix tree search logic when replaying directory entry deletes + - Btrfs: fix relocation incorrectly dropping data references + - btrfs: store and load values of stripes_min/stripes_max in balance status + item + - Btrfs: fix emptiness check for dirtied extent buffers at check_leaf() + - Btrfs: fix qgroup rescan worker initialization + - USB: serial: option: add support for Telit LE922A PIDs 0x1040, 0x1041 + - USB: serial: option: add dlink dwm-158 + - USB: serial: kl5kusb105: fix open error path + - USB: cdc-acm: add device id for GW Instek AFG-125 + - usb: dwc3: gadget: set PCM1 field of isochronous-first TRBs + - usb: hub: Fix auto-remount of safely removed or ejected USB-3 devices + - usb: gadget: f_uac2: fix error handling at afunc_bind + - usb: gadget: composite: correctly initialize ep->maxpacket + - USB: UHCI: report non-PME wakeup signalling for Intel hardware + - usbip: vudc: fix: Clear already_seen flag also for ep0 + - ALSA: usb-audio: Add QuickCam Communicate Deluxe/S7500 to + volume_control_quirks + - ALSA: hiface: Fix M2Tech hiFace driver sampling rate change + - ALSA: hda/ca0132 - Add quirk for Alienware 15 R2 2016 + - ALSA: hda - ignore the assoc and seq when comparing pin configurations + - ALSA: hda - fix headset-mic problem on a Dell laptop + - ALSA: hda - Gate the mic jack on HP Z1 Gen3 AiO + - ALSA: hda: when comparing pin configurations, ignore assoc in addition to + seq + - clk: ti: omap36xx: Work around sprz319 advisory 2.1 + - Btrfs: fix memory leak in reading btree blocks + - Btrfs: bail out if block group has different mixed flag + - Btrfs: return gracefully from balance if fs tree is corrupted + - Btrfs: don't leak reloc root nodes on error + - btrfs: clean the old superblocks before freeing the device + - Btrfs: fix memory leak in do_walk_down + - btrfs: fix a possible umount deadlock + - Btrfs: don't BUG() during drop snapshot + - Btrfs: fix incremental send failure caused by balance + - btrfs: make file clone aware of fatal signals + - exec: Ensure mm->user_ns contains the execed files + - fs: exec: apply CLOEXEC before changing dumpable task flags + - block_dev: don't test bdev->bd_contains when it is not stable + - vfs,mm: fix return value of read() at s_maxbytes + - ptrace: Capture the ptracer's creds not PT_PTRACE_CAP + - crypto: caam - fix AEAD givenc descriptors + - ext4: fix mballoc breakage with 64k block size + - ext4: fix stack memory corruption with 64k block size + - ext4: use more strict checks for inodes_per_block on mount + - ext4: fix in-superblock mount options processing + - ext4: add sanity checking to count_overhead() + - ext4: reject inodes with negative size + - ext4: return -ENOMEM instead of success + - ext4: do not perform data journaling when data is encrypted + - Revert "f2fs: use percpu_counter for # of dirty pages in inode" + - f2fs: set ->owner for debugfs status file's file_operations + - f2fs: fix overflow due to condition check order + - loop: return proper error from loop_queue_rq() + - nvmet: Fix possible infinite loop triggered on hot namespace removal + - mm/vmscan.c: set correct defer count for shrinker + - mm, page_alloc: keep pcp count and list contents in sync if struct page is + corrupted + - usb: gadget: composite: always set ep->mult to a sensible value + - PM / OPP: Pass opp_table to dev_pm_opp_put_regulator() + - blk-mq: Do not invoke .queue_rq() for a stopped queue + - dm table: fix 'all_blk_mq' inconsistency when an empty table is loaded + - dm table: an 'all_blk_mq' table must be loaded for a blk-mq DM device + - dm flakey: return -EINVAL on interval bounds error in flakey_ctr() + - dm crypt: mark key as invalid until properly loaded + - dm rq: fix a race condition in rq_completed() + - dm raid: fix discard support regression + - dm space map metadata: fix 'struct sm_metadata' leak on failed create + - ASoC: intel: Fix crash at suspend/resume without card registration + - CIFS: Fix a possible memory corruption during reconnect + - CIFS: Fix missing nls unload in smb2_reconnect() + - CIFS: Fix a possible memory corruption in push locks + - kernel/watchdog: use nmi registers snapshot in hardlockup handler + - watchdog: mei_wdt: request stop on reboot to prevent false positive event + - watchdog: qcom: fix kernel panic due to external abort on non-linefetch + - kernel/debug/debug_core.c: more properly delay for secondary CPUs + - tpm xen: Remove bogus tpm_chip_unregister + - xen/gntdev: Use VM_MIXEDMAP instead of VM_IO to avoid NUMA balancing + - arm/xen: Use alloc_percpu rather than __alloc_percpu + - xfs: set AGI buffer type in xlog_recover_clear_agi_bucket + - arm64: mark reserved memblock regions explicitly in iomem + - Revert "netfilter: nat: convert nat bysrc hash to rhashtable" + - Revert "netfilter: move nat hlist_head to nf_conn" + - driver core: fix race between creating/querying glue dir and its cleanup + - Linux 4.8.16 + + * igb i210 probe of pci device failed with error -2 (LP: #1639810) + - SAUCE: igb: Workaround for igb i210 firmware issue. + - SAUCE: igb: add i211 to i210 PHY workaround + + * PowerNV: PCI Slot is invalid after fencedPHB Error injection (LP: #1652018) + - powerpc/powernv: Call opal_pci_poll() if needed + + * Ubuntu16.04.2KVM: Installing any package on Ubuntu16.04.2 guest having NPIV + disk shows traces: blk_update_request: I/O error, dev sda, sector 5006840 + (LP: #1651242) + - block: allow WRITE_SAME commands with the SG_IO ioctl + + * i915 module requests unreleased GUC firmware files (LP: #1626740) + - SAUCE: (no-up) i915: Remove MODULE_FIRMWARE statements for unreleased + firmware + + * mfd: intel-lpss: Add default I2C device properties for Apollo Lake + (LP: #1635177) + - mfd: intel-lpss: Add default I2C device properties for Apollo Lake + + * Yakkety update to v4.8.15 stable release (LP: #1650586) + - powerpc/eeh: Fix deadlock when PE frozen state can't be cleared + - powerpc/mm: Fix lazy icache flush on pre-POWER5 + - powerpc/boot: Fix build failure in 32-bit boot wrapper + - fuse: fix clearing suid, sgid for chown() + - parisc: Purge TLB before setting PTE + - parisc: Remove unnecessary TLB purges from flush_dcache_page_asm and + flush_icache_page_asm + - parisc: Fix TLB related boot crash on SMP machines + - zram: restrict add/remove attributes to root only + - locking/rtmutex: Prevent dequeue vs. unlock race + - locking/rtmutex: Use READ_ONCE() in rt_mutex_owner() + - device-dax: fix private mapping restriction, permit read-only + - sched/autogroup: Fix 64-bit kernel nice level adjustment + - vhost-vsock: fix orphan connection reset + - perf/x86: Fix full width counter, counter overflow + - acpi, nfit: fix extended status translations for ACPI DSMs + - acpi, nfit, libnvdimm: fix / harden ars_status output length handling + - acpi, nfit: validate ars_status output buffer size + - acpi, nfit: fix bus vs dimm confusion in xlat_status + - crypto: marvell - Don't copy hash operation twice into the SRAM + - crypto: caam - fix pointer size for AArch64 boot loader, AArch32 kernel + - crypto: mcryptd - Check mcryptd algorithm compatibility + - crypto: marvell - Don't corrupt state of an STD req for re-stepped ahash + - can: raw: raw_setsockopt: limit number of can_filter that can be set + - can: peak: fix bad memory access and free sequence + - Revert "ACPI: Execute _PTS before system reboot" + - ARM: dts: orion5x: fix number of sata port for linkstation ls-gl + - ARM: dts: imx7d: fix LCDIF clock assignment + - ceph: don't set req->r_locked_dir in ceph_d_revalidate + - m68k: Fix ndelay() macro + - batman-adv: Check for alloc errors when preparing TT local data + - hotplug: Make register and unregister notifier API symmetric + - crypto: rsa - Add Makefile dependencies to fix parallel builds + - Linux 4.8.15 + + * Yakkety update to v4.8.14 stable release (LP: #1650585) + - gro_cells: mark napi struct as not busy poll candidates + - virtio-net: add a missing synchronize_net() + - net: dsa: b53: Fix VLAN usage and how we treat CPU port + - net: check dead netns for peernet2id_alloc() + - ip6_tunnel: disable caching when the traffic class is inherited + - net: sky2: Fix shutdown crash + - af_unix: conditionally use freezable blocking calls in read + - rtnetlink: fix FDB size computation + - l2tp: fix racy SOCK_ZAPPED flag check in l2tp_ip{,6}_bind() + - rtnl: fix the loop index update error in rtnl_dump_ifinfo() + - ipv6: bump genid when the IFA_F_TENTATIVE flag is clear + - udplite: call proper backlog handlers + - net: dsa: bcm_sf2: Ensure we re-negotiate EEE during after link change + - net, sched: respect rcu grace period on cls destruction + - net: dsa: fix unbalanced dsa_switch_tree reference counting + - net/sched: pedit: make sure that offset is valid + - netlink: Call cb->done from a worker thread + - netlink: Do not schedule work from sk_destruct + - net: macb: fix the RX queue reset in macb_rx() + - net/dccp: fix use-after-free in dccp_invalid_packet + - GSO: Reload iph after pskb_may_pull + - ip6_offload: check segs for NULL in ipv6_gso_segment. + - net: bcmgenet: Utilize correct struct device for all DMA operations + - sh_eth: remove unchecked interrupts for RZ/A1 + - tipc: check minimum bearer MTU + - geneve: avoid use-after-free of skb->data + - net: ping: check minimum size on ICMP header length + - ipv4: Restore fib_trie_flush_external function and fix call ordering + - ipv4: Fix memory leak in exception case for splitting tries + - ipv4: Drop leaf from suffix pull/push functions + - ipv4: Drop suffix update from resize code + - sparc64: Fix find_node warning if numa node cannot be found + - sparc64: fix compile warning section mismatch in find_node() + - sparc32: Fix inverted invalid_frame_pointer checks on sigreturns + - constify iov_iter_count() and iter_is_iovec() + - Don't feed anything but regular iovec's to blk_rq_map_user_iov + - ipv6: Set skb->protocol properly for local output + - ipv4: Set skb->protocol properly for local output + - Revert: "ip6_tunnel: Update skb->protocol to ETH_P_IPV6 in ip6_tnl_xmit()" + - flowcache: Increase threshold for refusing new allocations + - esp4: Fix integrity verification when ESN are used + - esp6: Fix integrity verification when ESN are used + - Linux 4.8.14 + + * Yakkety update to v4.8.13 stable release (LP: #1650581) + - libata-scsi: Fixup ata_gen_passthru_sense() + - scsi: hpsa: use bus '3' for legacy HBA devices + - scsi: libfc: fix seconds_since_last_reset miscalculation + - ARC: mm: PAE40: Fix crash at munmap + - ARC: Don't use "+l" inline asm constraint + - mm, thp: propagation of conditional compilation in khugepaged.c + - thp: fix corner case of munlock() of PTE-mapped THPs + - zram: fix unbalanced idr management at hot removal + - kasan: update kasan_global for gcc 7 + - mm: fix false-positive WARN_ON() in truncate/invalidate for hugetlb + - Input: change KEY_DATA from 0x275 to 0x277 + - Input: psmouse - disable automatic probing of BYD touchpads + - rcu: Fix soft lockup for rcu_nocb_kthread + - mm: workingset: fix NULL ptr in count_shadow_nodes + - PCI: Export pcie_find_root_port + - PCI: Set Read Completion Boundary to 128 iff Root Port supports it (_HPX) + - mwifiex: printk() overflow with 32-byte SSIDs + - KVM: arm/arm64: vgic: Don't notify EOI for non-SPIs + - drm/i915: Don't touch NULL sg on i915_gem_object_get_pages_gtt() error + - drm/i915: drop the struct_mutex when wedged or trying to reset + - drm/amdgpu: fix power state when port pm is unavailable + - drm/radeon: fix power state when port pm is unavailable (v2) + - drm/amdgpu: fix check for port PM availability + - drm/radeon: fix check for port PM availability + - arm64: dts: juno: fix cluster sleep state entry latency on all SoC versions + - KVM: use after free in kvm_ioctl_create_device() + - pwm: Fix device reference leak + - drm/mediatek: fix null pointer dereference + - perf/x86: Restore TASK_SIZE check on frame pointer + - clk: sunxi: Fix M factor computation for APB1 + - batman-adv: Detect missing primaryif during tp_send as error + - arm64: cpufeature: Schedule enable() calls instead of calling them via IPI + - arm64: mm: Set PSTATE.PAN from the cpu_enable_pan() call + - arm64: suspend: Reconfigure PSTATE after resume from idle + - Linux 4.8.13 + + * Yakkety update to v4.8.12 stable release (LP: #1647465) + - iommu/vt-d: Fix PASID table allocation + - iommu/vt-d: Fix IOMMU lookup for SR-IOV Virtual Functions + - KVM: x86: fix out-of-bounds access in lapic + - KVM: x86: fix out-of-bounds accesses of rtc_eoi map + - KVM: x86: check for pic and ioapic presence before use + - usb: chipidea: move the lock initialization to core file + - USB: serial: cp210x: add ID for the Zone DPMX + - USB: serial: ftdi_sio: add support for TI CC3200 LaunchPad + - Fix USB CB/CBI storage devices with CONFIG_VMAP_STACK=y + - scsi: mpt3sas: Fix secure erase premature termination + - tile: avoid using clocksource_cyc2ns with absolute cycle count + - cfg80211: limit scan results cache size + - NFSv4.x: hide array-bounds warning + - x86/fpu: Fix invalid FPU ptrace state after execve() + - x86/traps: Ignore high word of regs->cs in early_fixup_exception() + - perf/core: Fix address filter parser + - perf/x86/intel: Cure bogus unwind from PEBS entries + - thermal/powerclamp: add back module device table + - parisc: Fix races in parisc_setup_cache_timing() + - parisc: Switch to generic sched_clock implementation + - parisc: Fix race in pci-dma.c + - parisc: Also flush data TLB in flush_icache_page_asm + - mmc: sdhci-of-esdhc: fixup PRESENT_STATE read + - mpi: Fix NULL ptr dereference in mpi_powm() [ver #3] + - X.509: Fix double free in x509_cert_parse() [ver #3] + - xc2028: Fix use-after-free bug properly + - device-dax: check devm_nsio_enable() return value + - device-dax: fail all private mapping attempts + - powerpc: Set missing wakeup bit in LPCR on POWER9 + - powerpc/mm: Fixup kernel read only mapping + - powerpc/boot: Fix the early OPAL console wrappers + - can: bcm: fix support for CAN FD frames + - mm, oom: stop pre-mature high-order OOM killer invocations + - scsi: mpt3sas: Unblock device after controller reset + - Linux 4.8.12 + + * Miscellaneous Ubuntu changes + - [Debian] consider renames in gen-auto-reconstruct + + -- John Donnelly Tue, 17 Jan 2017 06:45:10 +0000 + +linux (4.8.0-34.36) yakkety; urgency=low + + [ Luis Henriques ] + + * Release Tracking Bug + - LP: #1651800 + + * Miscellaneous Ubuntu changes + - SAUCE: Do not build the xr-usb-serial driver for s390 + + -- Luis Henriques Wed, 21 Dec 2016 16:20:08 +0000 + +linux (4.8.0-33.35) yakkety; urgency=low + + [ Thadeu Lima de Souza Cascardo ] + + * Release Tracking Bug + - LP: #1651721 + + [ Luis Henriques ] + + * crypto : tolerate new crypto hardware for z Systems (LP: #1644557) + - s390/zcrypt: Introduce CEX6 toleration + + * Several new Asus laptops are missing touchpad support (LP: #1650895) + - HID: asus: Add i2c touchpad support + + * Acer, Inc ID 5986:055a is useless after 14.04.2 installed. (LP: #1433906) + - uvcvideo: uvc_scan_fallback() for webcams with broken chain + + * cdc_ether fills kernel log (LP: #1626371) + - cdc_ether: Fix handling connection notification + + * Kernel Fixes to get TCMU File Backed Optical to work (LP: #1646204) + - SAUCE: target/user: Fix use-after-free of tcmu_cmds if they are expired + + * CVE-2016-9756 + - KVM: x86: drop error recovery in em_jmp_far and em_ret_far + + * On boot excessive number of kworker threads are running (LP: #1649905) + - slub: move synchronize_sched out of slab_mutex on shrink + + * Ethernet not work after upgrade from kernel 3.19 to 4.4 [10ec:8168] + (LP: #1648279) + - ACPI / blacklist: Make Dell Latitude 3350 ethernet work + + * Ubuntu 16.10 netboot install fails with "Oops: Exception in kernel mode, + sig: 5 [#1] " (lpfc) (LP: #1648873) + - scsi: lpfc: fix oops/BUG in lpfc_sli_ringtxcmpl_put() + + * CVE-2016-9793 + - net: avoid signed overflows for SO_{SND|RCV}BUFFORCE + + * [Hyper-V] Kernel panic not functional on 32bit Ubuntu 14.10, 15.04, and + 15.10 (LP: #1400319) + - Drivers: hv: avoid vfree() on crash + + * d-i is missing usb support for platforms that use the xhci-platform driver + (LP: #1625222) + - d-i initrd needs additional usb modules to support the merlin platform + + * overlayfs no longer supports nested overlayfs mounts, but there is a fix + upstream (LP: #1647007) + - ovl: fix d_real() for stacked fs + + * Yakkety: arm64: CONFIG_ARM64_ERRATUM_845719 isn't enabled (LP: #1647793) + - [Config] CONFIG_ARM64_ERRATUM_845719=y + + * Ubuntu16.10 - EEH on BELL3 adapter fails to recover (serial/tty) + (LP: #1646857) + - serial: 8250_pci: Detach low-level driver during PCI error recovery + + * Driver for Exar USB UART (LP: #1645591) + - SAUCE: xr-usb-serial: Driver for Exar USB serial ports + - SAUCE: xr-usb-serial: interface for switching modes + - SAUCE: cdc-acm: Exclude Exar USB serial ports + + * [Bug] (Purley) x86/hpet: Reduce HPET counter read contention (LP: #1645928) + - x86/hpet: Reduce HPET counter read contention + + * Need Alps upstream their new touchpad driver (LP: #1571530) + - Input: ALPS - add touchstick support for SS5 hardware + - Input: ALPS - handle 0-pressure 1F events + - Input: ALPS - allow touchsticks to report pressure + - Input: ALPS - set DualPoint flag for 74 03 28 devices + + * CONFIG_NR_CPUS=256 is too low (LP: #1579205) + - [Config] Increase the NR_CPUS to 512 for amd64 to support systems with a + large number of cores. + + -- Thadeu Lima de Souza Cascardo Wed, 21 Dec 2016 10:43:58 -0200 + +linux (4.8.0-32.34) yakkety; urgency=low + + [ Thadeu Lima de Souza Cascardo ] + + * Release Tracking Bug + - LP: #1649358 + + * Vulnerability picked up from 4.8.10 stable kernel (LP: #1648662) + - net: handle no dst on skb in icmp6_send + + -- Thadeu Lima de Souza Cascardo Mon, 12 Dec 2016 15:33:04 -0200 + +linux (4.8.0-31.33) yakkety; urgency=low + + [ Luis Henriques ] + + * Release Tracking Bug + - LP: #1648034 + + * Update hio driver to 2.1.0.28 (LP: #1646643) + - SAUCE: hio: update to Huawei ES3000_V2 (2.1.0.28) + + * Yakkety update to v4.8.11 stable release (LP: #1645421) + - x86/cpu/AMD: Fix cpu_llc_id for AMD Fam17h systems + - KVM: x86: fix missed SRCU usage in kvm_lapic_set_vapic_addr + - KVM: Disable irq while unregistering user notifier + - arm64: KVM: pmu: Fix AArch32 cycle counter access + - KVM: arm64: Fix the issues when guest PMCCFILTR is configured + - ftrace: Ignore FTRACE_FL_DISABLED while walking dyn_ftrace records + - ftrace: Add more checks for FTRACE_FL_DISABLED in processing ip records + - genirq: Use irq type from irqdata instead of irqdesc + - fuse: fix fuse_write_end() if zero bytes were copied + - IB/rdmavt: rdmavt can handle non aligned page maps + - IB/hfi1: Fix rnr_timer addition + - mfd: intel-lpss: Do not put device in reset state on suspend + - mfd: stmpe: Fix RESET regression on STMPE2401 + - can: bcm: fix warning in bcm_connect/proc_register + - gpio: do not double-check direction on sleeping chips + - ALSA: usb-audio: Fix use-after-free of usb_device at disconnect + - ALSA: hda - add a new condition to check if it is thinkpad + - ALSA: hda - Fix mic regression by ASRock mobo fixup + - i2c: mux: fix up dependencies + - i2c: i2c-mux-pca954x: fix deselect enabling for device-tree + - Disable the __builtin_return_address() warning globally after all + - kbuild: add -fno-PIE + - scripts/has-stack-protector: add -fno-PIE + - x86/kexec: add -fno-PIE + - kbuild: Steal gcc's pie from the very beginning + - ext4: sanity check the block and cluster size at mount time + - ARM: dts: imx53-qsb: Fix regulator constraints + - crypto: caam - do not register AES-XTS mode on LP units + - powerpc/64: Fix setting of AIL in hypervisor mode + - drm/amdgpu: Attach exclusive fence to prime exported bo's. (v5) + - drm/i915: Refresh that status of MST capable connectors in ->detect() + - drm/i915: Assume non-DP++ port if dvo_port is HDMI and there's no AUX ch + specified in the VBT + - virtio-net: drop legacy features in virtio 1 mode + - clk: mmp: pxa910: fix return value check in pxa910_clk_init() + - clk: mmp: pxa168: fix return value check in pxa168_clk_init() + - clk: mmp: mmp2: fix return value check in mmp2_clk_init() + - clk: imx: fix integer overflow in AV PLL round rate + - rtc: omap: Fix selecting external osc + - iwlwifi: pcie: fix SPLC structure parsing + - iwlwifi: pcie: mark command queue lock with separate lockdep class + - iwlwifi: mvm: fix netdetect starting/stopping for unified images + - iwlwifi: mvm: fix d3_test with unified D0/D3 images + - iwlwifi: mvm: wake the wait queue when the RX sync counter is zero + - mfd: core: Fix device reference leak in mfd_clone_cell + - sunrpc: svc_age_temp_xprts_now should not call setsockopt non-tcp transports + - uwb: fix device reference leaks + - PM / sleep: fix device reference leak in test_suspend + - PM / sleep: don't suspend parent when async child suspend_{noirq, late} + fails + - perf hists: Fix column length on --hierarchy + - IB/rxe: Update qp state for user query + - IB/rxe: Fix kernel panic in UDP tunnel with GRO and RX checksum + - IB/rxe: Fix handling of erroneous WR + - IB/rxe: Clear queue buffer when modifying QP to reset + - IB/mlx4: Check gid_index return value + - IB/mlx4: Fix create CQ error flow + - IB/mlx5: Validate requested RQT size + - IB/mlx5: Use cache line size to select CQE stride + - IB/mlx5: Fix memory leak in query device + - IB/mlx5: Fix fatal error dispatching + - IB/mlx5: Fix NULL pointer dereference on debug print + - IB/core: Avoid unsigned int overflow in sg_alloc_table + - IB/hfi1: Remove incorrect IS_ERR check + - IB/uverbs: Fix leak of XRC target QPs + - IB/cm: Mark stale CM id's whenever the mad agent was unregistered + - netfilter: nft_dynset: fix element timeout for HZ != 1000 + - gpio: pca953x: Move memcpy into mutex lock for set multiple + - gpio: pca953x: Fix corruption of other gpios in set_multiple. + - Linux 4.8.11 + + * Upstream stable 4.4.34 and 4.8.10 regression (LP: #1645278) + - flow_dissect: call init_default_flow_dissectors() earlier + + * Fix Kernel Crashing under IBM Virtual Scsi Driver (LP: #1642299) + - SAUCE: ibmvscsis: Rearrange functions for future patches + - SAUCE: ibmvscsis: Synchronize cmds at tpg_enable_store time + - SAUCE: ibmvscsis: Synchronize cmds at remove time + - SAUCE: ibmvscsis: Clean up properly if target_submit_cmd/tmr fails + - SAUCE: ibmvscsis: Return correct partition name/# to client + - SAUCE: ibmvscsis: Issues from Dan Carpenter/Smatch + + * Add a driver for Amazon Elastic Network Adapters (ENA) (LP: #1635721) + - net: ena: Add a driver for Amazon Elastic Network Adapters (ENA) + - [config] enable CONFIG_ENA_ETHERNET=m (Amazon ENA driver) + + * Move some kernel modules to the main kernel package (LP: #1642228) + - [Config] Move some powerpc kernel modules to the main kernel package + + * Yakkety update to 4.8.10 stable release (LP: #1643639) + - dctcp: avoid bogus doubling of cwnd after loss + - net: clear sk_err_soft in sk_clone_lock() + - net: mangle zero checksum in skb_checksum_help() + - bgmac: stop clearing DMA receive control register right after it is set + - ip6_tunnel: Clear IP6CB in ip6tunnel_xmit() + - tcp: fix potential memory corruption + - ipv4: allow local fragmentation in ip_finish_output_gso() + - tcp: fix return value for partial writes + - dccp: do not release listeners too soon + - dccp: do not send reset to already closed sockets + - dccp: fix out of bound access in dccp_v4_err() + - ipv6: dccp: fix out of bound access in dccp_v6_err() + - ipv6: dccp: add missing bind_conflict to dccp_ipv6_mapped + - sctp: assign assoc_id earlier in __sctp_connect + - bpf: fix htab map destruction when extra reserve is in use + - net: icmp6_send should use dst dev to determine L3 domain + - fib_trie: Correct /proc/net/route off by one error + - sock: fix sendmmsg for partial sendmsg + - net: icmp_route_lookup should use rt dev to determine L3 domain + - net: __skb_flow_dissect() must cap its return value + - ipv4: use new_gw for redirect neigh lookup + - tcp: take care of truncations done by sk_filter() + - Revert "include/uapi/linux/atm_zatm.h: include linux/time.h" + - mlxsw: spectrum: Fix refcount bug on span entries + - mlxsw: spectrum_router: Correctly dump neighbour activity + - Revert "bnx2: Reset device during driver initialization" + - bnx2: Wait for in-flight DMA to complete at probe stage + - sctp: change sk state only when it has assocs in sctp_shutdown + - net: stmmac: Fix lack of link transition for fixed PHYs + - spi: spidev_test: fix build with musl libc + - sparc: Handle negative offsets in arch_jump_label_transform + - sparc64: Handle extremely large kernel TSB range flushes sanely. + - sparc64: Fix illegal relative branches in hypervisor patched TLB code. + - sparc64: Fix instruction count in comment for + __hypervisor_flush_tlb_pending. + - sparc64: Fix illegal relative branches in hypervisor patched TLB cross-call + code. + - sparc64: Handle extremely large kernel TLB range flushes more gracefully. + - sparc64: Delete __ret_efault. + - sparc64: Prepare to move to more saner user copy exception handling. + - sparc64: Convert copy_in_user to accurate exception reporting. + - sparc64: Convert GENcopy_{from,to}_user to accurate exception reporting. + - sparc64: Convert U1copy_{from,to}_user to accurate exception reporting. + - sparc64: Convert NG4copy_{from,to}_user to accurate exception reporting. + - sparc64: Convert NGcopy_{from,to}_user to accurate exception reporting. + - sparc64: Convert NG2copy_{from,to}_user to accurate exception reporting. + - sparc64: Convert U3copy_{from,to}_user to accurate exception reporting. + - sparc64: Delete now unused user copy assembler helpers. + - sparc64: Delete now unused user copy fixup functions. + - usb: gadget: f_fs: edit epfile->ep under lock + - usb: gadget: f_fs: stop sleeping in ffs_func_eps_disable + - Linux 4.8.10 + + * Yakkety update to v4.8.9 stable release (LP: #1642972) + - ALSA: info: Return error for invalid read/write + - ALSA: info: Limit the proc text input size + - ASoC: cs4270: fix DAPM stream name mismatch + - dib0700: fix nec repeat handling + - mm, frontswap: make sure allocated frontswap map is assigned + - shmem: fix pageflags after swapping DMA32 object + - swapfile: fix memory corruption via malformed swapfile + - mm: hwpoison: fix thp split handling in memory_failure() + - mm/hugetlb: fix huge page reservation leak in private mapping error paths + - coredump: fix unfreezable coredumping task + - s390/hypfs: Use get_free_page() instead of kmalloc to ensure page alignment + - ARC: timer: rtc: implement read loop in "C" vs. inline asm + - PCI: Don't attempt to claim shadow copies of ROM + - arc: Implement arch-specific dma_map_ops.mmap + - pinctrl: cherryview: Serialize register access in suspend/resume + - pinctrl: cherryview: Prevent possible interrupt storm on resume + - cpupower: Correct return type of cpu_power_is_cpu_online() in cpufreq-set + - mmc: sdhci: Fix CMD line reset interfering with ongoing data transfer + - mmc: sdhci: Fix unexpected data interrupt handling + - mmc: mmc: Use 500ms as the default generic CMD6 timeout + - staging: iio: ad5933: avoid uninitialized variable in error case + - staging: sm750fb: Fix bugs introduced by early commits + - staging: comedi: ni_tio: fix buggy ni_tio_clock_period_ps() return value + - drivers: staging: nvec: remove bogus reset command for PS/2 interface + - Revert "staging: nvec: ps2: change serio type to passthrough" + - staging: nvec: remove managed resource from PS2 driver + - usb: dwc3: Fix error handling for core init + - USB: cdc-acm: fix TIOCMIWAIT + - usb: gadget: u_ether: remove interrupt throttling + - drbd: Fix kernel_sendmsg() usage - potential NULL deref + - toshiba-wmi: Fix loading the driver on non Toshiba laptops + - clk: qoriq: Don't allow CPU clocks higher than starting value + - cdc-acm: fix uninitialized variable + - iio: hid-sensors: Increase the precision of scale to fix wrong reading + interpretation. + - iio: orientation: hid-sensor-rotation: Add PM function (fix non working + driver) + - iio: st_sensors: fix scale configuration for h3lis331dl + - scsi: qla2xxx: Fix scsi scan hang triggered if adapter fails during init + - scsi: mpt3sas: Fix for block device of raid exists even after deleting raid + disk + - scsi: scsi_dh_alua: fix missing kref_put() in alua_rtpg_work() + - scsi: scsi_dh_alua: Fix a reference counting bug + - KVM: arm/arm64: vgic: Prevent access to invalid SPIs + - drm/radeon: disable runtime pm in certain cases + - drm/i915: Respect alternate_ddc_pin for all DDI ports + - drm/i915/dp: BDW cdclk fix for DP audio + - drm/i915/dp: Extend BDW DP audio workaround to GEN9 platforms + - drm/amdgpu: disable runtime pm in certain cases + - drm/amdgpu: fix crash in acp_hw_fini + - tty/serial: at91: fix hardware handshake on Atmel platforms + - drm/amdgpu: fix sched fence slab teardown + - drm/amd: fix scheduler fence teardown order v2 + - xprtrdma: use complete() instead complete_all() + - xprtrdma: Fix DMAR failure in frwr_op_map() after reconnect + - iommu/io-pgtable-arm: Check for v7s-incapable systems + - iommu/amd: Free domain id when free a domain of struct dma_ops_domain + - iommu/vt-d: Fix dead-locks in disable_dmar_iommu() path + - agp/intel: Flush chipset writes after updating a single PTE + - watchdog: core: Fix devres_alloc() allocation size + - Input: synaptics-rmi4 - fix error handling in SPI transport driver + - Input: synaptics-rmi4 - fix error handling in I2C transport driver + - perf top: Fix refreshing hierarchy entries on TUI + - mei: bus: fix received data size check in NFC fixup + - svcrdma: Skip put_page() when send_reply() fails + - svcrdma: Tail iovec leaves an orphaned DMA mapping + - nvme: Delete created IO queues on reset + - Revert "clocksource/drivers/timer_sun5i: Replace code by + clocksource_mmio_init" + - x86/build: Fix build with older GCC versions + - clk: samsung: clk-exynos-audss: Fix module autoload + - rtc: pcf2123: Add missing error code assignment before test + - s390/dumpstack: restore reliable indicator for call traces + - lib/genalloc.c: start search from start of chunk + - hwrng: core - Don't use a stack buffer in add_early_randomness() + - i40e: fix call of ndo_dflt_bridge_getlink() + - mmc: sdhci-msm: Fix error return code in sdhci_msm_probe() + - ACPI / APEI: Fix incorrect return value of ghes_proc() + - ACPI/PCI/IRQ: assign ISA IRQ directly during early boot stages + - ACPI/PCI: pci_link: penalize SCI correctly + - ACPI/PCI: pci_link: Include PIRQ_PENALTY_PCI_USING for ISA IRQs + - batman-adv: Modify neigh_list only with rcu-list functions + - gpio/mvebu: Use irq_domain_add_linear + - gpio: of: fix GPIO drivers with multiple gpio_chip for a single node + - ASoC: Intel: Skylake: Always acquire runtime pm ref on unload + - ASoC: sun4i-codec: return error code instead of NULL when create_card fails + - pinctrl: iproc: Fix iProc and NSP GPIO support + - mmc: mxs: Initialize the spinlock prior to using it + - memcg: prevent memcg caches to be both OFF_SLAB & OBJFREELIST_SLAB + - libceph: fix legacy layout decode with pool 0 + - NFSv4.1: work around -Wmaybe-uninitialized warning + - drm/amdgpu: fix fence slab teardown + - drm/amdgpu: fix a vm_flush fence leak + - drm/i915: Fix mismatched INIT power domain disabling during suspend + - netfilter: fix namespace handling in nf_log_proc_dostring + - Linux 4.8.9 + + * Yakkety update to 4.8.8 stable release (LP: #1642607) + - net: fec: set mac address unconditionally + - net: pktgen: fix pkt_size + - net/sched: act_vlan: Push skb->data to mac_header prior calling skb_vlan_*() + functions + - net: Add netdev all_adj_list refcnt propagation to fix panic + - packet: call fanout_release, while UNREGISTERING a netdev + - netlink: do not enter direct reclaim from netlink_dump() + - drivers/ptp: Fix kernel memory disclosure + - net_sched: reorder pernet ops and act ops registrations + - ipv6: tcp: restore IP6CB for pktoptions skbs + - net: phy: Trigger state machine on state change and not polling. + - ip6_tunnel: fix ip6_tnl_lookup + - IB/ipoib: move back IB LL address into the hard header + - net/mlx4_en: fixup xdp tx irq to match rx + - net: pktgen: remove rcu locking in pktgen_change_name() + - bridge: multicast: restore perm router ports on multicast enable + - switchdev: Execute bridge ndos only for bridge ports + - rtnetlink: Add rtnexthop offload flag to compare mask + - net: core: Correctly iterate over lower adjacency list + - net: add recursion limit to GRO + - ipv4: disable BH in set_ping_group_range() + - ipv4: use the right lock for ping_group_range + - net: fec: Call swap_buffer() prior to IP header alignment + - net: sctp, forbid negative length + - sctp: fix the panic caused by route update + - udp: fix IP_CHECKSUM handling + - netvsc: fix incorrect receive checksum offloading + - macsec: Fix header length if SCI is added if explicitly disabled + - net: ipv6: Do not consider link state for nexthop validation + - net sched filters: fix notification of filter delete with proper handle + - sctp: validate chunk len before actually using it + - ip6_tunnel: Update skb->protocol to ETH_P_IPV6 in ip6_tnl_xmit() + - packet: on direct_xmit, limit tso and csum to supported devices + - arch/powerpc: Update parameters for csum_tcpudp_magic & csum_tcpudp_nofold + - usb: dwc3: gadget: properly account queued requests + - scsi: megaraid_sas: Fix data integrity failure for JBOD (passthrough) + devices + - scsi: megaraid_sas: fix macro MEGASAS_IS_LOGICAL to avoid regression + - Linux 4.8.8 + + * Yakkety update to 4.8.7 stable release (LP: #1642606) + - i2c: rk3x: Give the tuning value 0 during rk3x_i2c_v0_calc_timings + - i2c: xgene: Avoid dma_buffer overrun + - i2c: core: fix NULL pointer dereference under race condition + - drm/dp/mst: Clear port->pdt when tearing down the i2c adapter + - spi: fsl-espi: avoid processing uninitalized data on error + - spi: mark device nodes only in case of successful instantiation + - h8300: fix syscall restarting + - gpio / ACPI: fix returned error from acpi_dev_gpio_irq_get() + - gpio: GPIO_GET_CHIPINFO_IOCTL: Fix line offset validation + - gpio: GPIO_GET_CHIPINFO_IOCTL: Fix information leak + - gpio: GPIO_GET_LINEHANDLE_IOCTL: Validate line offset + - gpio: GPIOHANDLE_GET_LINE_VALUES_IOCTL: Fix information leak + - gpio: GPIO_GET_LINEEVENT_IOCTL: Validate line offset + - gpio: GPIO_GET_LINEHANDLE_IOCTL: Reject invalid line flags + - gpio: GPIO_GET_LINEEVENT_IOCTL: Reject invalid line and event flags + - gpio: GPIOHANDLE_GET_LINE_VALUES_IOCTL: Fix another information leak + - gpio: GPIO_GET_LINE{HANDLE,EVENT}_IOCTL: Fix file descriptor leak + - libxfs: clean up _calc_dquots_per_chunk + - mm/list_lru.c: avoid error-path NULL pointer deref + - mm/slab: fix kmemcg cache creation delayed issue + - mm: memcontrol: do not recurse in direct reclaim + - KEYS: Sort out big_key initialisation + - security/keys: make BIG_KEYS dependent on stdrng. + - device-dax: fix percpu_ref_exit ordering + - ALSA: usb-audio: Add quirk for Syntek STK1160 + - ALSA: seq: Fix time account regression + - ALSA: hda - allow 40 bit DMA mask for NVidia devices + - ALSA: hda - Adding a new group of pin cfg into ALC295 pin quirk table + - ALSA: hda - Fix surround output pins for ASRock B150M mobo + - ALSA: hda - Fix headset mic detection problem for two Dell laptops + - ANDROID: binder: Add strong ref checks + - ANDROID: binder: Clear binder and cookie when setting handle in flat binder + struct + - cxl: Fix leaking pid refs in some error paths + - btrfs: fix races on root_log_ctx lists + - powerpc: Convert cmp to cmpd in idle enter sequence + - powerpc/mm/radix: Use tlbiel only if we ever ran on the current cpu + - x86/microcode/AMD: Fix more fallout from CONFIG_RANDOMIZE_MEMORY=y + - timers: Prevent base clock rewind when forwarding clock + - timers: Prevent base clock corruption when forwarding + - timers: Plug locking race vs. timer migration + - timers: Lock base for same bucket optimization + - ubifs: Abort readdir upon error + - ubifs: Fix regression in ubifs_readdir() + - mei: txe: don't clean an unprocessed interrupt cause. + - usb: gadget: udc: atmel: fix endpoint name + - usb: gadget: function: u_ether: don't starve tx request queue + - USB: serial: fix potential NULL-dereference at probe + - USB: serial: cp210x: fix tiocmget error handling + - USB: serial: ftdi_sio: add support for Infineon TriBoard TC2X7 + - xhci: use default USB_RESUME_TIMEOUT when resuming ports. + - usb: renesas_usbhs: add wait after initialization for R-Car Gen3 + - usb: increase ohci watchdog delay to 275 msec + - x86/smpboot: Init apic mapping before usage + - vt: clear selection before resizing + - xhci: add restart quirk for Intel Wildcatpoint PCH + - xhci: workaround for hosts missing CAS bit + - tty: limit terminal size to 4M chars + - arm64: dts: marvell: fix clocksource for CP110 master SPI0 + - iio:chemical:atlas-ph-sensor: Fix use of 32 bit int to hold 16 bit big + endian value + - Staging: wilc1000: Fix kernel Oops on opening the device + - dm: free io_barrier after blk_cleanup_queue call + - KVM: x86: fix wbinvd_dirty_mask use-after-free + - KVM: s390: Fix STHYI buffer alignment for diag224 + - KVM: MIPS: Make ERET handle ERL before EXL + - KVM: MIPS: Precalculate MMIO load resume PC + - ARM: mvebu: Select corediv clk for all mvebu v7 SoC + - ARM: dts: fix the SD card on the Snowball + - nfsd: Fix general protection fault in release_lock_stateid() + - MIPS: KASLR: Fix handling of NULL FDT + - ovl: fix get_acl() on tmpfs + - ovl: update S_ISGID when setting posix ACLs + - ovl: fsync after copy-up + - parisc: Ensure consistent state when switching to kernel stack at syscall + entry + - virtio_ring: Make interrupt suppression spec compliant + - virtio_pci: Limit DMA mask to 44 bits for legacy virtio devices + - virtio: console: Unlock vqs while freeing buffers + - dm mirror: fix read error on recovery after default leg failure + - dm table: fix missing dm_put_target_type() in dm_table_add_target() + - dm rq: clear kworker_task if kthread_run() returned an error + - dm raid: fix activation of existing raid4/10 devices + - rtl8xxxu: Fix memory leak in handling rxdesc16 packets + - rtl8xxxu: Fix big-endian problem reporting mactime + - rtl8xxxu: Fix rtl8723bu driver reload issue + - Input: i8042 - add XMG C504 to keyboard reset table + - firewire: net: guard against rx buffer overflows + - firewire: net: fix fragmented datagram_size off-by-one + - mac80211: discard multicast and 4-addr A-MSDUs + - Revert "ath9k_hw: implement temperature compensation support for AR9003+" + - ath10k: cache calibration data when the core is stopped + - scsi: scsi_debug: Fix memory leak if LBP enabled and module is unloaded + - scsi: arcmsr: Send SYNCHRONIZE_CACHE command to firmware + - mmc: dw_mmc-pltfm: fix the potential NULL pointer dereference + - RAID1: ignore discard error + - RAID10: ignore discard error + - md: be careful not lot leak internal curr_resync value into metadata. -- + (all) + - Revert "drm/radeon: fix DP link training issue with second 4K monitor" + - drm/imx: ipuv3-plane: Switch EBA buffer only when we don't need modeset + - drm/imx: ipuv3-plane: Access old u/vbo properly in ->atomic_check for + YU12/YV12 + - drm/radeon/si_dpm: Limit clocks on HD86xx part + - drm/radeon/si_dpm: workaround for SI kickers + - drm/radeon: drop register readback in cayman_cp_int_cntl_setup + - drm/nouveau/acpi: fix check for power resources support + - drm/fb-helper: Don't call dirty callback for untouched clips + - drm/fb-helper: Fix connector ref leak on error + - drm/fb-helper: Keep references for the current set of used connectors + - drm/i915/gen9: fix DDB partitioning for multi-screen cases + - drm/i915/gen9: fix watermarks when using the pipe scaler + - drm/dp/mst: Check peer device type before attempting EDID read + - drm: Release reference from blob lookup after replacing property + - drm/i915: Respect alternate_aux_channel for all DDI ports + - drm/i915: Clean up DDI DDC/AUX CH sanitation + - drm/i915/fbc: fix CFB size calculation for gen8+ + - drm: i915: Wait for fences on new fb, not old + - i2c: mark device nodes only in case of successful instantiation + - netfilter: xt_NFLOG: fix unexpected truncated packet + - UBI: fastmap: scrub PEB when bitflips are detected in a free PEB EC header + - uapi: add missing install of sync_file.h + - video: fbdev: pxafb: potential NULL dereference on error + - omapfb: fix return value check in dsi_bind() + - pwm: Unexport children before chip removal + - usb: dwc3: Fix size used in dma_free_coherent() + - usb: chipidea: host: fix NULL ptr dereference during shutdown + - usb: musb: Fix hardirq-safe hardirq-unsafe lock order error + - v4l: vsp1: Prevent pipelines from running when not streaming + - tty: vt, fix bogus division in csi_J + - ARM: fix oops when using older ARMv4T CPUs + - kvm: x86: Check memopp before dereference (CVE-2016-8630) + - btrfs: qgroup: Prevent qgroup->reserved from going subzero + - ubi: fastmap: Fix add_vol() return value test in ubi_attach_fastmap() + - cpufreq: intel_pstate: Set P-state upfront in performance mode + - HID: usbhid: add ATEN CS962 to list of quirky devices + - Linux 4.8.7 + - [Config] updateconfigs after 4.8.7 stable update + + * CVE-2016-6213 + - mnt: Add a per mount namespace limit on the number of mounts + + * Cursor doesn't move after multitouch on alps touchpad (LP: #1641874) + - HID: alps: fix multitouch cursor issue + + * [SRU] Add 0cf3:e009 to btusb (LP: #1641562) + - Bluetooth: btusb: Add support for 0cf3:e009 + + * [Hyper-V] do not lose pending heartbeat vmbus packets (LP: #1632786) + - hv: do not lose pending heartbeat vmbus packets + + * ipv6: connected routes are missing after a down/up cycle on the loopback + (LP: #1634545) + - ipv6: correctly add local routes when lo goes up + + * [Feature] Add Knights Mill to Intel processors family list (LP: #1637528) + - x86/cpu/intel: Add Knights Mill to Intel family + - perf/x86/intel: Add Knights Mill CPUID + - perf/x86/intel/rapl: Add Knights Mill CPUID + - perf/x86/intel/uncore: Add Knights Mill CPUID + + * hv_set_ifconfig script parsing fails for certain configuration + (LP: #1640109) + - hv_set_ifconfig -- handle DHCP interfaces correctly + - hv_set_ifconfig -- ensure we include the last stanza + + * nvme: improve performance for virtual Google NVMe devices (LP: #1637565) + - [Config] CONFIG_NVME_VENDOR_EXT_GOOGLE=y + - SAUCE: nvme: improve performance for virtual NVMe devices + + * CVE-2016-7039 and CVE-2016-8666 (LP: #1631287) + - Revert "UBUNTU: SAUCE: net: add recursion limit to GRO" + + -- Luis Henriques Wed, 07 Dec 2016 10:23:48 +0000 + +linux (4.8.0-30.32) yakkety; urgency=low + + * CVE-2016-8655 (LP: #1646318) + - packet: fix race condition in packet_set_ring + + -- Brad Figg Thu, 01 Dec 2016 08:02:53 -0800 + +linux (4.8.0-28.30) yakkety; urgency=low + + [ Luis Henriques ] + + * Release Tracking Bug + - LP: #1641083 + + * lxc-attach to malicious container allows access to host (LP: #1639345) + - Revert "UBUNTU: SAUCE: (noup) ptrace: being capable wrt a process requires + mapped uids/gids" + - (upstream) mm: Add a user_ns owner to mm_struct and fix ptrace permission + checks + + * [Feature] AVX-512 new instruction sets (avx512_4vnniw, avx512_4fmaps) + (LP: #1637526) + - x86/cpufeature: Add AVX512_4VNNIW and AVX512_4FMAPS features + + * zfs: importing zpool with vdev on zvol hangs kernel (LP: #1636517) + - SAUCE: (noup) Update zfs to 0.6.5.8-0ubuntu4.1 + + * Move some device drivers build from kernel built-in to modules + (LP: #1637303) + - [Config] CONFIG_TIGON3=m for all arches + - [Config] CONFIG_VIRTIO_BLK=m, CONFIG_VIRTIO_NET=m + + * I2C touchpad does not work on AMD platform (LP: #1612006) + - pinctrl/amd: Configure GPIO register using BIOS settings + + * guest experiencing Transmit Timeouts on CX4 (LP: #1636330) + - powerpc/64: Re-fix race condition between going idle and entering guest + - powerpc/64: Fix race condition in setting lock bit in idle/wakeup code + + * QEMU throws failure msg while booting guest with SRIOV VF (LP: #1630554) + - KVM: PPC: Always select KVM_VFIO, plus Makefile cleanup + + * [Feature] KBL - New device ID for Kabypoint(KbP) (LP: #1591618) + - SAUCE: mfd: lpss: Fix Intel Kaby Lake PCH-H properties + + * hio: SSD data corruption under stress test (LP: #1638700) + - SAUCE: hio: set bi_error field to signal an I/O error on a BIO + - SAUCE: hio: splitting bio in the entry of .make_request_fn + + * cleanup primary tree for linux-hwe layering issues (LP: #1637473) + - [Config] switch Vcs-Git: to yakkety repository + - [Packaging] handle both linux-lts* and linux-hwe* as backports + - [Config] linux-tools-common and linux-cloud-tools-common are one per series + - [Config] linux-source-* is in the primary linux namespace + - [Config] linux-tools -- always suggest the base package + + * SRU: sync zfsutils-linux and spl-linux changes to linux (LP: #1635656) + - SAUCE: (noup) Update spl to 0.6.5.8-2, zfs to 0.6.5.8-0ubuntu4 (LP: + #1635656) + + * [Feature] SKX: perf uncore PMU support (LP: #1591810) + - perf/x86/intel/uncore: Add Skylake server uncore support + - perf/x86/intel/uncore: Remove hard-coded implementation for Node ID mapping + location + - perf/x86/intel/uncore: Handle non-standard counter offset + + * [Feature] Purley: Memory Protection Keys (LP: #1591804) + - x86/pkeys: Add fault handling for PF_PK page fault bit + - mm: Implement new pkey_mprotect() system call + - x86/pkeys: Make mprotect_key() mask off additional vm_flags + - x86/pkeys: Allocation/free syscalls + - x86: Wire up protection keys system calls + - generic syscalls: Wire up memory protection keys syscalls + - pkeys: Add details of system call use to Documentation/ + - x86/pkeys: Default to a restrictive init PKRU + - x86/pkeys: Allow configuration of init_pkru + - x86/pkeys: Add self-tests + + * kernel invalid opcode in intel_powerclamp (LP: #1630774) + - SAUCE: (no-up) thermal/powerclamp: correct cpu support check + + * please include mlx5_core modules in linux-image-generic package + (LP: #1635223) + - [Config] Include mlx5 in main package + + * [LTCTest] vfio_pci not loaded on Ubuntu 16.10 by default (LP: #1636733) + - [Config] CONFIG_VFIO_PCI=y for ppc64el + + * Yakkety update to v4.8.6 stable release (LP: #1638748) + - drm/vc4: Fix races when the CS reads from render targets. + - drm/prime: Pass the right module owner through to dma_buf_export() + - drm/i915/backlight: setup and cache pwm alternate increment value + - drm/i915/backlight: setup backlight pwm alternate increment on backlight + enable + - drm/amdgpu: fix IB alignment for UVD + - drm/amdgpu/dce10: disable hpd on local panels + - drm/amdgpu/dce8: disable hpd on local panels + - drm/amdgpu/dce11: disable hpd on local panels + - drm/amdgpu/dce11: add missing drm_mode_config_cleanup call + - drm/amdgpu: initialize the context reset_counter in amdgpu_ctx_init + - drm/amdgpu: change vblank_time's calculation method to reduce computational + error. + - drm/radeon: narrow asic_init for virtualization + - drm/radeon/si/dpm: fix phase shedding setup + - drm/radeon: change vblank_time's calculation method to reduce computational + error. + - drm/vmwgfx: Limit the user-space command buffer size + - drm/fsl-dcu: fix endian issue when using clk_register_divider + - drm/amd/powerplay: fix mclk not switching back after multi-head was disabled + - HID: add quirk for Akai MIDImix. + - drm/i915/skl: Update plane watermarks atomically during plane updates + - drm/i915: Move CRTC updating in atomic_commit into it's own hook + - drm/i915/skl: Update DDB values atomically with wms/plane attrs + - drm/i915/skl: Don't try to update plane watermarks if they haven't changed + - drm/i915/gen9: only add the planes actually affected by ddb changes + - drm/i915/gen9: fix the WaWmMemoryReadLatency implementation + - drm/i915/gen9: minimum scanlines for Y tile is not always 4 + - drm/i915/gen9: fix plane_blocks_per_line on watermarks calculations + - drm/i915/gen9: fix the watermark res_blocks value + - drm/i915: SAGV is not SKL-only, so rename a few things + - drm/i915: introduce intel_has_sagv() + - drm/i915/kbl: KBL also needs to run the SAGV code + - Revert "drm/i915: Check live status before reading edid" + - drm/i915: Account for TSEG size when determining 865G stolen base + - drm/i915/skl: Ensure pipes with changed wms get added to the state + - drm/i915: Allow PCH DPLL sharing regardless of DPLL_SDVO_HIGH_SPEED + - drm/i915: Move long hpd handling into the hotplug work + - drm/i915: Allow DP to work w/o EDID + - drm/i915: Just clear the mmiodebug before a register access + - drm/i915: Unalias obj->phys_handle and obj->userptr + - posix_acl: Clear SGID bit when setting file permissions + - rt2x00usb: Fix error return code + - scsi: cxlflash: Remove the device cleanly in the system shutdown path + - genirq/generic_chip: Add irq_unmap callback + - coresight: Remove erroneous dma_free_coherent in tmc_probe + - uio: fix dmem_region_start computation + - ARM: clk-imx35: fix name for ckil clk + - spi: spi-fsl-dspi: Drop extra spi_master_put in device remove function + - i40e: remove a stray unlock + - i40e: fix broken i40e_config_rss_aq function + - mwifiex: correct aid value during tdls setup + - mwifiex: fix failed to reconnect after interface disabled/enabled + - ath10k: Add WMI_SERVICE_PERIODIC_CHAN_STAT_SUPPORT wmi service + - ath10k: fix sending frame in management path in push txq logic + - ath10k: fix reporting channel survey data + - ath10k: fix throughput regression in multi client mode + - crypto: marvell - Don't overwrite default creq->state during initialization + - crypto: gcm - Fix IV buffer size in crypto_gcm_setkey + - crypto: marvell - Update transformation context for each dequeued req + - crypto: arm/ghash-ce - add missing async import/export + - crypto: ccp - Fix return value check in ccp_dmaengine_register() + - hwrng: omap - Only fail if pm_runtime_get_sync returns < 0 + - ASoC: topology: Fix error return code in soc_tplg_dapm_widget_create() + - ASoC: dapm: Fix possible uninitialized variable in snd_soc_dapm_get_volsw() + - ASoC: dapm: Fix value setting for _ENUM_DOUBLE MUX's second channel + - ASoC: dapm: Fix kcontrol creation for output driver widget + - ASoC: sst-bxt-rt298: fix obsoleted initializers for array + - ASoC: sst-bxt-da7219_max98357a: fix obsoleted initializers for array + - iio: ad5755: fix off-by-one on devnr limit check + - iio: light: us5182d: Add missing error code assignment before test + - staging: android ion/hisi: fix dependencies + - staging: sm750fb: Correctly set CLOCK_PHASE bit of display controller. + - staging: r8188eu: Fix scheduling while atomic splat + - staging: ks7010: fix wait_for_completion_interruptible_timeout return + handling + - staging: ks7010: declare private functions static + - IB/hfi1: Move iowait_init() to priv allocate + - IB/rdmavt: Correct sparse annotation + - IB/qib: Remove qpt_mask global + - IB/mlx5: Fix steering resource leak + - power: bq24257: Fix use of uninitialized pointer bq->charger + - dmaengine: ipu: remove bogus NO_IRQ reference + - mm/hugetlb: check for reserved hugepages during memory offline + - mm/hugetlb: improve locking in dissolve_free_huge_pages() + - drm/vmwgfx: Avoid validating views on view destruction + - s390/cio: fix accidental interrupt enabling during resume + - s390/con3270: fix use of uninitialised data + - s390/con3270: fix insufficient space padding + - clk: bcm2835: Skip PLLC clocks when deciding on a new clock parent + - clk: gcc-msm8996: Fix pcie 2 pipe register offset + - clk: qcom: select GDSC for msm8996 gcc and mmcc + - clk: qoriq: fix a register offset error + - clk: Return errors from clk providers in __of_clk_get_from_provider() + - clk: core: Force setting the phase delay when no change + - clk: divider: Fix clk_divider_round_rate() to use clk_readl() + - perf data: Fix building in 32 bit platform with libbabeltrace + - perf hists browser: Fix event group display + - perf powerpc: Fix build-test failure + - perf ui/tui: Reset output width for hierarchy + - perf ui/stdio: Always reset output width for hierarchy + - perf symbols: Check symbol_conf.allow_aliases for kallsyms loading too + - perf symbols: Fixup symbol sizes before picking best ones + - iwlwifi: check for valid ethernet address provided by OEM + - iwlwifi: mvm: fix pending frames tracking on tx resp + - iwlwifi: mvm: call a different txq_enable function + - iwlwifi: mvm: free reserved queue on STA removal + - iwlwifi: mvm: support BAR in reorder buffer + - iwlwifi: mvm: disable P2P queue on mac context release + - iwlwifi: mvm: bail out if CTDP start operation fails + - ARM: dts: sun9i: Add missing #interrupt-cells to R_PIO pinctrl device node + - pinctrl: qcom: fix masking of pinmux functions + - mpt3sas: Don't spam logs if logging level is 0 + - powerpc: Always restore FPU/VEC/VSX if hardware transactional memory in use + - powerpc: Add check_if_tm_restore_required() to giveup_all() + - powerpc/nvram: Fix an incorrect partition merge + - powerpc: Fix usage of _PAGE_RO in hugepage + - ARM: pxa: pxa_cplds: fix interrupt handling + - ARM: pxa: fix GPIO double shifts + - ARM: dts: NSP: Correct RAM amount for BCM958625HR board + - ARM: dts: fix RealView EB SMSC ethernet version + - ARM: dts: omap3: overo: add missing unit name for lcd35 display + - PCI: rcar: Fix pci_remap_iospace() failure path + - PCI: aardvark: Fix pci_remap_iospace() failure path + - PCI: generic: Fix pci_remap_iospace() failure path + - PCI: versatile: Fix pci_remap_iospace() failure path + - PCI: designware: Fix pci_remap_iospace() failure path + - PCI: tegra: Fix pci_remap_iospace() failure path + - libnvdimm: clear the internal poison_list when clearing badblocks + - Linux 4.8.6 + + * Yakkety update to v4.8.5 stable release (LP: #1637520) + - gpio: mpc8xxx: Correct irq handler function + - mei: fix return value on disconnection + - mei: me: add kaby point device ids + - regulator: tps65910: Work around silicon erratum SWCZ010 + - clk: imx6: initialize GPU clocks + - clk: imx6: fix i.MX6DL clock tree to reflect reality + - spi: spidev_test: Fix buffer overflow in unescape() + - PM / devfreq: event: remove duplicate devfreq_event_get_drvdata() + - ath10k: fix copy engine 5 destination ring stuck + - rtlwifi: Fix missing country code for Great Britain + - mmc: block: don't use CMD23 with very old MMC cards + - mmc: sdhci: cast unsigned int to unsigned long long to avoid unexpeted error + - PCI: Mark Atheros AR9580 to avoid bus reset + - PCI: tegra: Fix argument order in tegra_pcie_phy_disable() + - platform: don't return 0 from platform_get_irq[_byname]() on error + - cpufreq: ti: Use generic platdev driver + - cpufreq: conservative: Fix next frequency selection + - cpufreq: skip invalid entries when searching the frequency + - cpufreq: intel_pstate: Fix unsafe HWP MSR access + - cpufreq: fix overflow in cpufreq_table_find_index_dl() + - parisc: Increase KERNEL_INITIAL_SIZE for 32-bit SMP kernels + - parisc: Fix self-detected CPU stall warnings on Mako machines + - parisc: Fix kernel memory layout regarding position of __gp + - parisc: Increase initial kernel mapping size + - pstore/ramoops: fixup driver removal + - pstore/core: drop cmpxchg based updates + - pstore/ram: Use memcpy_toio instead of memcpy + - pstore/ram: Use memcpy_fromio() to save old buffer + - perf intel-pt: Fix snapshot overlap detection decoder errors + - perf intel-pt: Fix estimated timestamps for cycle-accurate mode + - perf intel-pt: Fix MTC timestamp calculation for large MTC periods + - dm: mark request_queue dead before destroying the DM device + - dm: return correct error code in dm_resume()'s retry loop + - dm rq: take request_queue lock while clearing QUEUE_FLAG_STOPPED + - dm mpath: check if path's request_queue is dying in activate_path() + - dm crypt: fix crash on exit + - powerpc/xmon: Don't use ld on 32-bit + - powerpc/vdso64: Use double word compare on pointers + - powerpc/powernv: Pass CPU-endian PE number to opal_pci_eeh_freeze_clear() + - powerpc/eeh: Null check uses of eeh_pe_bus_get + - powerpc/powernv: Use CPU-endian hub diag-data type in + pnv_eeh_get_and_dump_hub_diag() + - powerpc/powernv: Use CPU-endian PEST in pnv_pci_dump_p7ioc_diag_data() + - powerpc/mm: Update FORCE_MAX_ZONEORDER range to allow hugetlb w/4K + - powerpc/mm/hash64: Fix might_have_hea() check + - IB/srp: Fix infinite loop when FMR sg[0].offset != 0 + - IB/core: correctly handle rdma_rw_init_mrs() failure + - ubi: Deal with interrupted erasures in WL + - zfcp: fix fc_host port_type with NPIV + - zfcp: fix ELS/GS request&response length for hardware data router + - zfcp: close window with unblocked rport during rport gone + - zfcp: retain trace level for SCSI and HBA FSF response records + - zfcp: restore: Dont use 0 to indicate invalid LUN in rec trace + - zfcp: trace on request for open and close of WKA port + - zfcp: restore tracing of handle for port and LUN with HBA records + - zfcp: fix D_ID field with actual value on tracing SAN responses + - zfcp: fix payload trace length for SAN request&response + - zfcp: trace full payload of all SAN records (req,resp,iels) + - scsi: zfcp: spin_lock_irqsave() is not nestable + - fbdev/efifb: Fix 16 color palette entry calculation + - ovl: Fix info leak in ovl_lookup_temp() + - ovl: copy_up_xattr(): use strnlen + - mb86a20s: fix the locking logic + - mb86a20s: fix demod settings + - cx231xx: don't return error on success + - cx231xx: fix GPIOs for Pixelview SBTVD hybrid + - cx231xx: can't proceed if I2C bus register fails + - ALSA: hda - Fix a failure of micmute led when having multi adcs + - MIPS: Fix -mabi=64 build of vdso.lds + - MIPS: ptrace: Fix regs_return_value for kernel context + - Input: i8042 - skip selftest on ASUS laptops + - Input: elantech - force needed quirks on Fujitsu H760 + - Input: elantech - add Fujitsu Lifebook E556 to force crc_enabled + - sunrpc: fix write space race causing stalls + - NFSD: fix corruption in notifier registration + - NFS: Fix inode corruption in nfs_prime_dcache() + - NFSv4: Don't report revoked delegations as valid in nfs_have_delegation() + - NFSv4: nfs4_copy_delegation_stateid() must fail if the delegation is invalid + - NFSv4: Open state recovery must account for file permission changes + - NFSv4.2: Fix a reference leak in nfs42_proc_layoutstats_generic + - pnfs/blocklayout: fix last_write_offset incorrectly set to page boundary + - scsi: Fix use-after-free + - watchdog: rt2880_wdt: Remove assignment of dev pointer + - watchdog: mt7621_wdt: Remove assignment of dev pointer + - metag: Only define atomic_dec_if_positive conditionally + - soc/fsl/qe: fix gpio save_regs functions + - soc/fsl/qe: fix Oops on CPM1 (and likely CPM2) + - arm64: KVM: VHE: reset PSTATE.PAN on entry to EL2 + - arc: don't leak bits of kernel stack into coredump + - fs/super.c: fix race between freeze_super() and thaw_super() + - cifs: Limit the overall credit acquired + - fs/cifs: keep guid when assigning fid to fileinfo + - Clarify locking of cifs file and tcon structures and make more granular + - Display number of credits available + - Set previous session id correctly on SMB3 reconnect + - SMB3: GUIDs should be constructed as random but valid uuids + - Do not send SMB3 SET_INFO request if nothing is changing + - Cleanup missing frees on some ioctls + - blkcg: Unlock blkcg_pol_mutex only once when cpd == NULL + - x86/e820: Don't merge consecutive E820_PRAM ranges + - kvm: x86: memset whole irq_eoi + - x86/platform/UV: Fix support for EFI_OLD_MEMMAP after BIOS callback updates + - x86/boot/smp: Don't try to poke disabled/non-existent APIC + - pinctrl: intel: Only restore pins that are used by the driver + - pinctrl: baytrail: Fix lockdep + - sched/fair: Fix incorrect task group ->load_avg + - sched/fair: Fix min_vruntime tracking + - irqchip/gicv3: Handle loop timeout proper + - irqchip/eznps: Acknowledge NPS_IPI before calling the handler + - irqchip/gic-v3-its: Fix entry size mask for GITS_BASER + - cxl: Prevent adapter reset if an active context exists + - isofs: Do not return EACCES for unknown filesystems + - memstick: rtsx_usb_ms: Runtime resume the device when polling for cards + - memstick: rtsx_usb_ms: Manage runtime PM when accessing the device + - arm64: swp emulation: bound LL/SC retries before rescheduling + - arm64: kaslr: fix breakage with CONFIG_MODVERSIONS=y + - arm64: percpu: rewrite ll/sc loops in assembly + - arm64: kernel: Init MDCR_EL2 even in the absence of a PMU + - arm64: Cortex-A53 errata workaround: check for kernel addresses + - arm64: KVM: Take S1 walks into account when determining S2 write faults + - ceph: fix error handling in ceph_read_iter + - powerpc/mm: Prevent unlikely crash in copro_calculate_slb() + - mmc: core: Annotate cmd_hdr as __le32 + - mmc: core: switch to 1V8 or 1V2 for hs400es mode + - mmc: rtsx_usb_sdmmc: Avoid keeping the device runtime resumed when unused + - mmc: rtsx_usb_sdmmc: Handle runtime PM while changing the led + - KVM: s390: reject invalid modes for runtime instrumentation + - fscrypto: make XTS tweak initialization endian-independent + - fscrypto: lock inode while setting encryption policy + - ext4: do not advertise encryption support when disabled + - jbd2: fix incorrect unlock on j_list_lock + - ubifs: Fix xattr_names length in exit paths + - target/tcm_fc: use CPU affinity for responses + - target: Re-add missing SCF_ACK_KREF assignment in v4.1.y + - target: Make EXTENDED_COPY 0xe4 failure return COPY TARGET DEVICE NOT + REACHABLE + - target: Don't override EXTENDED_COPY xcopy_pt_cmd SCSI status code + - Revert "target: Fix residual overflow handling in + target_complete_cmd_with_length" + - Linux 4.8.5 + + * Yakkety update to v4.8.4 stable release (LP: #1637517) + - serial: imx: Fix DCD reading + - BUG: atmel_serial: Interrupts not disabled on close + - serial: 8250_dw: Check the data->pclk when get apb_pclk + - serial: 8250_port: fix runtime PM use in __do_stop_tx_rs485() + - ARCv2: intc: Use kflag if STATUS32.IE must be reset + - ARCv2: fix local_save_flags + - debugfs: introduce a public file_operations accessor + - b43: fix debugfs crash + - b43legacy: fix debugfs crash + - carl9170: fix debugfs crashes + - Btrfs: fix free space tree bitmaps on big-endian systems + - Btrfs: fix mount -o clear_cache,space_cache=v2 + - Btrfs: catch invalid free space trees + - btrfs: assign error values to the correct bio structs + - mei: amthif: fix deadlock in initialization during a reset + - drivers: base: dma-mapping: page align the size when unmap_kernel_range + - IB/hfi1: Fix defered ack race with qp destroy + - clk: mvebu: fix setting unwanted flags in CP110 gate clock + - clk: mvebu: dynamically allocate resources in Armada CP110 system controller + - fuse: listxattr: verify xattr list + - fuse: invalidate dir dentry after chmod + - fuse: fix killing s[ug]id in setattr + - mm: filemap: fix mapping->nrpages double accounting in fuse + - i40e: avoid NULL pointer dereference and recursive errors on early PCI error + - xfs: change mailing list address + - mm: filemap: don't plant shadow entries without radix tree node + - brcmfmac: fix pmksa->bssid usage + - brcmfmac: fix memory leak in brcmf_fill_bss_param + - brcmfmac: use correct skb freeing helper when deleting flowring + - ASoC: nau8825: fix bug in FLL parameter + - ASoC: Intel: Atom: add a missing star in a memcpy call + - reiserfs: Unlock superblock before calling reiserfs_quota_on_mount() + - async_pq_val: fix DMA memory leak + - scsi: arcmsr: Simplify user_len checking + - ipc/sem.c: fix complex_count vs. simple op race + - mm/hugetlb: fix memory offline with hugepage size > memory block size + - vfs,mm: fix a dead loop in truncate_inode_pages_range() + - jbd2: fix lockdep annotation in add_transaction_credits() + - ext4: enforce online defrag restriction for encrypted files + - ext4: reinforce check of i_dtime when clearing high fields of uid and gid + - ext4: bugfix for mmaped pages in mpage_release_unused_pages() + - ext4: fix memory leak in ext4_insert_range() + - ext4: fix memory leak when symlink decryption fails + - ext4: allow DAX writeback for hole punch + - ext4: release bh in make_indexed_dir + - ext4: unmap metadata when zeroing blocks + - dlm: free workqueues after the connections + - vfs: move permission checking into notify_change() for utimes(NULL) + - cachefiles: Fix attempt to read i_blocks after deleting file [ver #2] + - drm: virtio: reinstate drm_virtio_set_busid() + - acpi, nfit: check for the correct event code in notifications + - cfq: fix starvation of asynchronous writes + - Linux 4.8.4 + + * Yakkety update to v4.8.3 stable release (LP: #1637512) + - v4l: rcar-fcp: Don't force users to check for disabled FCP support + - scsi: configure runtime pm before calling device_add in + scsi_add_host_with_dma + - Make __xfs_xattr_put_listen preperly report errors. + - Linux 4.8.3 + + * KVM: PPC: Book3S HV: Migrate pinned pages out of CMA (LP: #1632045) + - KVM: PPC: Book3S HV: Migrate pinned pages out of CMA + + * unexpectedly large memory usage of mounted snaps (LP: #1636847) + - [Config] switch squashfs to single threaded decode + + * Fix bugs under virtual scsi server driver for Power (LP: #1621088) + - target/user: Use sense_reason_t in tcmu_queue_cmd_ring + - target/user: Return an error if cmd data size is too large + - target/user: Fix comments to not refer to data ring + + * ISST-LTE:pVM nvme 0000:a0:00.0: iommu_alloc failed on NVMe card + (LP: #1633128) + - dma-mapping: introduce the DMA_ATTR_NO_WARN attribute + - powerpc: implement the DMA_ATTR_NO_WARN attribute + - nvme: use the DMA_ATTR_NO_WARN attribute + + * arm64: kprobes disabled (LP: #1634271) + - [Config] Enable KPROBES on arm64 + + * Bad page state in process genwqe_gunzip pfn:3c275 in the genwqe device + driver (LP: #1559194) + - SAUCE: (noup) Bad page state in process genwqe_gunzip pfn:3c275 in the + genwqe device driver + + * CVE-2016-7425 + - scsi: arcmsr: Buffer overflow in arcmsr_iop_message_xfer() + + * Add ipvlan module to 16.04 kernel (LP: #1634705) + - [Config] Add ipvlan to the generic inclusion list + + * hio Ubuntu sauce driver needs porting to 4.8 (LP: #1635594) + - SAUCE: import Huawei ES3000_V2 (2.1.0.23) + - SAUCE: hio: bio_endio() no longer takes errors arg + - SAUCE: hio: blk_queue make_request_fn now returns a blk_qc_t + - SAUCE: hio: use alloc_cpumask_var to avoid -Wframe-larger-than + - SAUCE: hio: fix mask maybe-uninitialized warning + - SAUCE: hio: port to v4.8 base + - [config] enable CONFIG_HIO (Huawei ES3000_V2 PCIe SSD driver) + - SAUCE: hio: Makefile and Kconfig + - [Config] Enforce CONFIG_HIO + + * Yakkety update to v4.8.2 stable release (LP: #1633973) + - usb: storage: fix runtime pm issue in usb_stor_probe2 + - timekeeping: Fix __ktime_get_fast_ns() regression + - usb: dwc3: fix Clear Stall EP command failure + - phy: sun4i-usb: Use spinlock to guard phyctl register access + - ALSA: ali5451: Fix out-of-bound position reporting + - ALSA: usb-audio: Extend DragonFly dB scale quirk to cover other variants + - ALSA: usb-line6: use the same declaration as definition in header for MIDI + manufacturer ID + - mfd: rtsx_usb: Avoid setting ucr->current_sg.status + - mfd: atmel-hlcdc: Do not sleep in atomic context + - mfd: 88pm80x: Double shifting bug in suspend/resume + - mfd: wm8350-i2c: Make sure the i2c regmap functions are compiled + - xen/x86: Update topology map for PV VCPUs + - KVM: PPC: Book3s PR: Allow access to unprivileged MMCR2 register + - KVM: MIPS: Drop other CPU ASIDs on guest MMU changes + - KVM: arm64: Require in-kernel irqchip for PMU support + - KVM: arm/arm64: vgic: Don't flush/sync without a working vgic + - KVM: PPC: BookE: Fix a sanity check + - arm64: fix dump_backtrace/unwind_frame with NULL tsk + - x86/boot: Fix kdump, cleanup aborted E820_PRAM max_pfn manipulation + - x86/irq: Prevent force migration of irqs which are not in the vector domain + - x86/pkeys: Make protection keys an "eager" feature + - x86/cpu: Rename Merrifield2 to Moorefield + - x86/platform/intel-mid: Add Intel Penwell to ID table + - x86/platform/intel-mid: Keep SRAM powered on at boot + - x86/apic: Get rid of apic_version[] array + - arch/x86: Handle non enumerated CPU after physical hotplug + - x86/mm/pkeys: Do not skip PKRU register if debug registers are not used + - x86/dumpstack: Fix x86_32 kernel_stack_pointer() previous stack access + - ARM: fix delays + - ARM: dts: mvebu: armada-390: add missing compatibility string and bracket + - ARM: dts: MSM8064 remove flags from SPMI/MPP IRQs + - ARM: dts: MSM8660 remove flags from SPMI/MPP IRQs + - ARM: cpuidle: Fix error return code + - Bluetooth: Add a new 04ca:3011 QCA_ROME device + - ima: use file_dentry() + - tpm: fix a race condition in tpm2_unseal_trusted() + - tpm_crb: fix crb_req_canceled behavior + - Linux 4.8.2 + + * Bluetooth 04ca:3011 [Asus Aspire V3-371] doesn't work (LP: #1535802) + - Bluetooth: Add a new 04ca:3011 QCA_ROME device + + -- Luis Henriques Fri, 11 Nov 2016 10:30:54 +0000 + +linux (4.8.0-27.29) yakkety; urgency=low + + [ Seth Forshee ] + + * Release Tracking Bug + - LP: #1635377 + + * proc_keys_show crash when reading /proc/keys (LP: #1634496) + - SAUCE: KEYS: ensure xbuf is large enough to fix buffer overflow in + proc_keys_show (LP: #1634496) + + * Revert "If zone is so small that watermarks are the same, stop zone balance" + in yakkety (LP: #1632894) + - Revert "UBUNTU: SAUCE: (no-up) If zone is so small that watermarks are the + same, stop zone balance." + + * lts-yakkety 4.8 cannot mount lvm raid1 (LP: #1631298) + - SAUCE: (no-up) dm raid: fix compat_features validation + + * kswapd0 100% CPU usage (LP: #1518457) + - SAUCE: (no-up) If zone is so small that watermarks are the same, stop zone + balance. + + * [Trusty->Yakkety] powerpc/64: Fix incorrect return value from + __copy_tofrom_user (LP: #1632462) + - SAUCE: (no-up) powerpc/64: Fix incorrect return value from + __copy_tofrom_user + + * Ubuntu 16.10: Oops panic in move_page_tables/page_remove_rmap after running + memory_stress_ng. (LP: #1628976) + - SAUCE: (no-up) powerpc/pseries: Fix stack corruption in htpe code + + * Paths not failed properly when unmapping virtual FC ports in VIOS (using + ibmvfc) (LP: #1632116) + - scsi: ibmvfc: Fix I/O hang when port is not mapped + + * [Ubuntu16.10]KV4.8: kernel livepatch config options are not set + (LP: #1626983) + - [Config] Enable live patching on powerpc/ppc64el + + * CONFIG_AUFS_XATTR is not set (LP: #1557776) + - [Config] CONFIG_AUFS_XATTR=y + + * Yakkety update to 4.8.1 stable release (LP: #1632445) + - arm64: debug: avoid resetting stepping state machine when TIF_SINGLESTEP + - Using BUG_ON() as an assert() is _never_ acceptable + - usb: misc: legousbtower: Fix NULL pointer deference + - Staging: fbtft: Fix bug in fbtft-core + - usb: usbip: vudc: fix left shift overflow + - USB: serial: cp210x: Add ID for a Juniper console + - Revert "usbtmc: convert to devm_kzalloc" + - ALSA: hda - Adding one more ALC255 pin definition for headset problem + - ALSA: hda - Fix headset mic detection problem for several Dell laptops + - ALSA: hda - Add the top speaker pin config for HP Spectre x360 + - Linux 4.8.1 + + * PSL data cache should be flushed before resetting CAPI adapter + (LP: #1632049) + - cxl: Flush PSL cache before resetting the adapter + + * thunder nic: avoid link delays due to RX_PACKET_DIS (LP: #1630038) + - net: thunderx: Don't set RX_PACKET_DIS while initializing + + * crypto/vmx/p8_ghash memory corruption (LP: #1630970) + - crypto: ghash-generic - move common definitions to a new header file + - crypto: vmx - Fix memory corruption caused by p8_ghash + - crypto: vmx - Ensure ghash-generic is enabled + + * arm64: SPCR console not autodetected (LP: #1630311) + - of/serial: move earlycon early_param handling to serial + - [Config] CONFIG_ACPI_SPCR_TABLE=y + - ACPI: parse SPCR and enable matching console + - ARM64: ACPI: enable ACPI_SPCR_TABLE + - serial: pl011: add console matching function + + * 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 + + * sha1-powerpc returning wrong results (LP: #1629977) + - crypto: sha1-powerpc - little-endian support + + -- Seth Forshee Thu, 20 Oct 2016 14:09:37 -0500 + +linux (4.8.0-26.28) yakkety; urgency=low + + * CVE-2016-5195 + - SAUCE: mm: remove gup_flags FOLL_WRITE games from __get_user_pages() + + -- Stefan Bader Mon, 17 Oct 2016 13:04:09 +0200 + +linux (4.8.0-22.24) yakkety; urgency=low + + * CVE-2016-7039 (LP: #1631287) + - SAUCE: net: add recursion limit to GRO + + -- Andy Whitcroft Fri, 07 Oct 2016 22:46:28 +0100 + +linux (4.8.0-21.23) yakkety; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1630279 + + * powerpc 4.8.0-17 fails to boot on PowerMac G5 (LP: #1628968) + - Revert "Revert "powerpc: Simplify module TOC handling"" + + * Regression tests can not detect binfmt_elf mmpa semantic change + (LP: #1630069) + - SAUCE: apparmor: add flag to detect semantic change, to binfmt_elf mmap + + * Autofs parameter substitution broken in kernel 4.4.0-38 and 4.4.0-40 + (LP: #1629204) + - SAUCE: (namespace) autofs4: Use real_cred for requestor's ids + + -- Tim Gardner Tue, 04 Oct 2016 08:01:21 -0600 + +linux (4.8.0-20.22) yakkety; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1629730 + + [ Upstream Kernel Changes ] + + * rebase to v4.8 + + -- Tim Gardner Sun, 02 Oct 2016 19:10:40 -0600 + +linux (4.8.0-19.21) yakkety; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1629057 + + * 4.8.0 kernels do not complete boot process on VM (LP: #1627198) + - [Config] CONFIG_HARDENED_USERCOPY_PAGESPAN=n + + * mount-image-callback cannot mount partitioned disk image (LP: #1628336) + - SAUCE: nbd: Only delay uevent until connected + + * Support snaps inside of lxd containers (LP: #1611078) + - apparmor: add interface to be able to grab loaded policy + - securityfs: update interface to allow inode_ops, and setup from vfs fns + - apparmor: refactor aa_prepare_ns into prepare_ns and create_ns routines + - apparmor: add __aa_find_ns fn + - apparmor: add mkdir/rmdir interface to manage policy namespaces + - apparmor: fix oops in pivot_root mediation + - apparmor: fix warning that fn build_pivotroot discards const + - apparmor: add interface to advertise status of current task stacking + - apparmor: update policy permissions to consider ns being viewed/managed + - apparmor: add per ns policy management interface + - apparmor: bump domain stacking version to 1.2 + + * linux-image-extra-4.8.0-17-generic does not provide many sound card modules + (LP: #1628523) + - [Config] CONFIG_ZONE_DMA=y for generic + + * Yakkety - disable ARCH_ZX (LP: #1628503) + - [Config] armhf: disable ARCH_ZX + + * Enable switchdev config parameter for Yakkety (LP: #1628241) + - [Config] CONFIG_NET_SWITCHDEV=y for amd64/arm64 + + * Ubuntu 16.10 kernel v4.8: Installation failing on Habanero with Shiner card + (LP: #1628009) + - firmware: Update bnx2x to 7.13.1.0 + + * vNIC driver missing in 4.8 kernel package (LP: #1628187) + - [Config] Enable CONFIG_IBMVNIC=m + + * Yakkety - armhf: MFD_TPS65217 and REGULATOR_TPS65217 are boot essential + (LP: #1628112) + - [Config] armhf: MFD_TPS65217=y && REGULATOR_TPS65217=y + + * Miscellaneous Ubuntu changes + - Rebase to v4.8-rc8 + - [Config] skip Ubuntu-4.8.0-18.20 + - [Config] missing modules in armhf/s390x + + * Miscellaneous Ubuntu changes + - rebase to v4.8-rc8 + + -- Leann Ogasawara Sun, 25 Sep 2016 12:13:35 -0700 + +linux (4.8.0-17.19) yakkety; urgency=low + + * Release Tracking Bug + - LP: #1627387 + + * build squashfs into xenial kernels by default (LP: #1593134) + - Remove squashfs udeb + + * [Yakkety] Fix up ATA_GENERIC to match annotations file. (LP: #1627322) + - Add d-i support for ata_generic + + * [Yakkety] Fix up CONFIG_BLK_DEV_SD to match annotations (LP: #1627330) + - [Config] Enforce CONFIG_BLK_DEV_SD=y,CONFIG_BLK_DEV_SR=y + + * [Yakkety] Fix up ATA_PIIX to match annotations file (LP: #1627324) + - [Config] Enforce CONFIG_ATA_PIIX=y for amd64/i386 + + * Yakkety - USB drivers must be built in (LP: #1627323) + - Update annotation enforcement for CONFIG_USB_[E|O|U|X]HCI_HCD + + * 4.8.0-16.17: genirq: Flags mismatch serial vs goldfish_pdev_bus + (LP: #1627052) + - [Config] CONFIG_GOLDFISH=n + + * yakkety 4.8, remove module noise kernel-4.8 (LP: #1626104) + - Revert "UBUNTU: SAUCE: Clear Linux: bootstats: add printk's to measure boot + time in more detail" + + * Permission denied in CIFS with kernel 4.4.0-38 (LP: #1626112) + - SAUCE: Fix regression which breaks DFS mounting + + * Miscellaneous Ubuntu changes + - [Config] apply xenial configuration annotations + - s390x -- DEBUG_RODATA is now valid + - [Config] s390x -- CONFIG_SQUASHFS=y + - [Config] s390x -- CONFIG_ECRYPT_FS=y + - [Config] Enable CONFIG_ACPI_PCI_SLOT=y for arm64 + - [Config] Enable CONFIG_ACPI_HED=y for arm64 + - [Config] Enable CONFIG_QUICC_ENGINE=y + + * Miscellaneous upstream changes + - annotations: pull back to xenial + + -- Leann Ogasawara Sat, 24 Sep 2016 21:31:31 -0700 + +linux (4.8.0-16.17) yakkety; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1626768 + + * Support ARM GIC ITS in ACPI mode (LP: #1626631) + - [Config] CONFIG_ACPI_IORT=y + - SAUCE: ACPI: I/O Remapping Table (IORT) initial support + - SAUCE: ACPI: Add new IORT functions to support MSI domain handling + - SAUCE: irqchip/gicv3-its: Cleanup for ITS domain initialization + - SAUCE: irqchip/gicv3-its: Refactor ITS DT init code to prepare for ACPI + - SAUCE: irqchip/gicv3-its: Probe ITS in the ACPI way + - SAUCE: irqchip/gicv3-its: Factor out PCI-MSI part that might be reused for ACPI + - SAUCE: irqchip/gicv3-its: Use MADT ITS subtable to do PCI/MSI domain initialization + - SAUCE: PCI/MSI: Setup MSI domain on a per-device basis using IORT ACPI table + + * 4.8 dropped CONFIG_ATA=y (breaks systemd's TEST-08-ISSUE-2730 upstream test) + (LP: #1626394) + - [Config] CONFIG_ATA=y + + * Yakkety: Enable drivers with respect to Xenial (LP: #1626543) + - [Config] CONFIG_VMD=m + - [Config] CONFIG_MAC80211_RC_MINSTREL_VHT=y for all arches + - [Config] CONFIG_OF=y for all arches + - [Config] CONFIG_BLK_DEV_NVME_SCSI=y + - [Config] Xenial device settings sync with amd64 + - [Config] Xenial device settings sync with i386 + - [Config] CONFIG_MTD_UBI_GLUEBI=m + - [Config] Xenial device settings sync with armhf + - [Config] Xenial device settings sync with arm64 + + * yakkety 4.8, missing config CONFIG_USERFAULTFD=y (LP: #1626149) + - [Config] CONFIG_USERFAULTFD=y + + * 4.8 regression: SLAB is being used instead of SLUB (LP: #1626564) + - [Config] CONFIG_SLUB=y + + * image won't boot after upgrading to yakkety's 4.8 kernel because efi + (LP: #1626158) + - add nls_cp437 to the generic.inclusion-list + + -- Tim Gardner Thu, 22 Sep 2016 06:51:45 -0600 + +linux (4.8.0-15.16) yakkety; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1626239 + + * image won't boot after upgrading to yakkety's 4.8 kernel because efi + (LP: #1626158) + - [Config] CONFIG_FAT_DEFAULT_IOCHARSET=iso8859-1 + - [Config] CONFIG_NLS_CODEPAGE_437=y + - [Config] CONFIG_VFAT_FS=y + + * Miscellaneous Ubuntu changes + - SAUCE: seccomp: log actions even when audit is disabled + + -- Tim Gardner Wed, 21 Sep 2016 06:41:03 -0600 + +linux (4.8.0-14.15) yakkety; urgency=low + + * CVE-2016-1575 (LP: #1534961) + - SAUCE: overlayfs: Skip permission checking for trusted.overlayfs.* xattrs + - SAUCE: overlayfs: Be more careful about copying up sxid files + - SAUCE: overlayfs: Propogate nosuid from lower and upper mounts + + * CVE-2016-1576 (LP: #1535150) + - SAUCE: overlayfs: Skip permission checking for trusted.overlayfs.* xattrs + - SAUCE: overlayfs: Be more careful about copying up sxid files + - SAUCE: overlayfs: Propogate nosuid from lower and upper mounts + + * overlay: mkdir fails if directory exists in lowerdir in a user namespace + (LP: #1531747) + - SAUCE: overlayfs: Skip permission checking for trusted.overlayfs.* xattrs + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_PM_WAKELOCKS=y + - [Config] CONFIG_CLEANCACHE=y + - [Config] CONFIG_WQ_POWER_EFFICIENT_DEFAULT=y + - [Config] CONFIG_PROCESSOR_SELECT=y + - [Config] Enabled some networking options + - SAUCE: overlayfs: Enable user namespace mounts + + -- Leann Ogasawara Tue, 20 Sep 2016 13:56:58 -0700 + +linux (4.8.0-13.14) yakkety; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1625733 + + * fails to mount ext4 crypto-crc32 is missing (LP: #1625728) + - [Config] Add some CRC crypto modules to d-i + + * Linux netfilter IPT_SO_SET_REPLACE memory corruption (LP: #1555338) + - SAUCE: [nf,v2] netfilter: x_tables: don't rely on well-behaving userspace + + * Brightness control on Lenovo ThinkPad T430 does not work. (LP: #1183856) + - SAUCE: (no-up) ACPI: Disable Windows 8 compatibility for some Lenovo + ThinkPads + + * Option GE0301 3G modem doesn't work (LP: #348861) + - SAUCE: (no-up) Added quirk to recognize GE0301 3G modem as an interface. + + * [regression 4.4 -> 4.8] Please re-enable CONFIG_TOUCHSCREEN_ELAN + (LP: #1625259) + - [Config] CONFIG_TOUCHSCREEN_ELAN=m for all arches + + * Miscellaneous Ubuntu changes + - SAUCE: (namespace) block_dev: Forbid unprivileged mounting when device is + opened for writing + - SAUCE: fan: add VXLAN implementation + - [Config] CONFIG_VFIO=m for ppc64el + + -- Tim Gardner Mon, 19 Sep 2016 10:50:29 -0600 + +linux (4.8.0-12.13) yakkety; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1625233 + + * Miscellaneous Ubuntu changes + - rebase to v4.8-rc7 + - [Config] CONFIG_SCSI_DEBUG=m for all arches + + -- Tim Gardner Mon, 19 Sep 2016 06:35:21 -0600 + +linux (4.8.0-11.12) yakkety; urgency=low + + * change_hat is logging failures during expected hat probing (LP: #1615893) + - SAUCE: apparmor: Fix auditing behavior for change_hat probing + + * deleted files outside of the namespace are not being treated as + disconnected + (LP: #1615892) + - SAUCE: apparmor: deleted dentries can be disconnected + + * stacking to unconfined in a child namespace confuses mediation + (LP: #1615890) + - SAUCE: apparmor: special case unconfined when determining the mode + + * apparmor module parameters can be changed after the policy is locked + (LP: #1615895) + - SAUCE: apparmor: fix: parameters can be changed after policy is locked + + * AppArmor profile reloading causes an intermittent kernel BUG (LP: + #1579135) + - SAUCE: apparmor: fix vec_unique for vectors larger than 8 + + * label vec reductions can result in reference labels instead of direct + access + to labels (LP: #1615889) + - SAUCE: apparmor: reduction of vec to single entry is just that entry + + * profiles from different namespaces can block other namespaces from being + able to load a profile (LP: #1615887) + - SAUCE: apparmor: profiles in one ns can affect mediation in another ns + + * The label build for onexec when stacking is wrong (LP: #1615881) + - SAUCE: apparmor: Fix label build for onexec stacking. + + * The inherit check for new to old label comparison for domain transitions + is + wrong (LP: #1615880) + - SAUCE: apparmor: Fix new to old label comparison for domain transitions + + * warning stack trace while playing with apparmor namespaces (LP: #1593874) + - SAUCE: apparmor: fix stack trace when removing namespace with profiles + + * __label_update proxy comparison test is wrong (LP: #1615878) + - SAUCE: apparmor: Fix __label_update proxy comparison test + + * reading /sys/kernel/security/apparmor/profiles requires CAP_MAC_ADMIN + (LP: #1560583) + - SAUCE: apparmor: Allow ns_root processes to open profiles file + - SAUCE: apparmor: Consult sysctl when reading profiles in a user ns + + * policy namespace stacking (LP: #1379535) + - SAUCE: (no-up) apparmor: rebase of apparmor3.5-beta1 snapshot for 4.8 + - SAUCE: add a sysctl to enable unprivileged user ns AppArmor policy loading + + * Miscellaneous Ubuntu changes + - [Debian] Dynamically determine linux udebs package name + - [Debian] d-i -- fix dtb handling in new kernel-wedge form + - SAUCE: apparmor: Fix FTBFS due to bad include path + - SAUCE: apparmor: add data query support + - [Config] Set CONFIG_SECURITY_APPARMOR_UNCONFINED_INIT=y + + * Miscellaneous upstream changes + - fixup backout policy view capable for forward port + - apparmor: fix: Rework the iter loop for label_update + - apparmor: add more assertions for updates/merges to help catch errors + - apparmor: Make pivot root transitions work with stacking + - apparmor: convert delegating deleted files to mediate deleted files + - apparmor: add missing parens. not a bug fix but highly recommended + - apparmor: add a stack_version file to allow detection of bug fixes + - apparmor: push path lookup into mediation loop + - apparmor: default to allowing unprivileged userns policy + - apparmor: fix: permissions test to view and manage policy + - apparmor: Add Basic ns cross check condition for ipc + + -- Leann Ogasawara Sat, 17 Sep 2016 10:03:16 -0700 + +linux (4.8.0-10.11) yakkety; urgency=low + + * Miscellaneous Ubuntu changes + - ubuntu: vbox -- update to 5.1.6-dfsg-1 + - SAUCE: Enable vbox build + + -- Tim Gardner Thu, 15 Sep 2016 07:10:51 -0600 + +linux (4.8.0-9.10) yakkety; urgency=low + + * Miscellaneous Ubuntu changes + - [Config] arm64: CONFIG_ARCH_THUNDER=y + - [Config] arm64: CONFIG_PCI_HOST_THUNDER_*=y + - [Config] arm64: CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y + - [Config] arm64: CONFIG_DRM_AST=m + - [Config] arm64: CONFIG_FRAMEBUFFER_CONSOLE=y + - d-i: initrd needs ext4 and scsi modules + - SAUCE: AUFS aufs4.x-rcN 20160912 + - [Config] Enable CONFIG_GPIO_XGENE* + - [Config] Disable CONFIG_POWER_RESET_XGENE + - [Config] CONFIG_EDAC_XGENE=m + - [Config] CONFIG_ARM64_ACPI_PARKING_PROTOCOL=y + - [Config] CONFIG_XGENE_DMA=m + + -- Tim Gardner Mon, 12 Sep 2016 10:26:12 -0600 + +linux (4.8.0-8.9) yakkety; urgency=low + + * New device ID for Kabypoint (LP: #1622469) + - mfd: lpss: Add Intel Kaby Lake PCH-H PCI IDs + - SAUCE: i2c: i801: Add support for Kaby Lake PCH-H + + * Miscellaneous Ubuntu changes + - rebase to v4.8-rc6 + - SAUCE: (noup) Update spl to 0.6.5.8-0ubuntu1, zfs to 0.6.5.8-0ubuntu1 + + [ Upstream Kernel Changes ] + + * rebase to v4.8-rc6 + - LP: #1617900 + + -- Tim Gardner Fri, 09 Sep 2016 10:53:40 -0600 + +linux (4.8.0-7.8) yakkety; urgency=low + + * Miscellaneous Ubuntu changes + - [Debian] Use src_pkg_name when constructing udeb control files + + -- Tim Gardner Fri, 09 Sep 2016 07:26:25 -0600 + +linux (4.8.0-6.7) yakkety; urgency=low + + * Enable virtual scsi server driver for Power (LP: #1615665) + - SAUCE: Ibmvscsis: Properly deregister target sessions + - SAUCE: Return TCMU-generated sense data to fabric module + - SAUCE: Ibmvscsis: Code cleanup of print statements + - SAUCE: Ibmvscsis: Fixed a bug reported by Dan Carpenter + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_XEN_FBDEV_FRONTEND=m + - rebase to v4.8-rc5 + + [ Upstream Kernel Changes ] + + * rebase to v4.8-rc5 + + -- Tim Gardner Thu, 01 Sep 2016 12:09:26 -0600 + +linux (4.8.0-5.6) yakkety; urgency=low + + * support compressed kernels on arm64 (LP: #1384955) + - [Config] Switch to compressed Image on arm64 + + * Miscellaneous Ubuntu changes + - SAUCE: (namespace) security/integrity: Harden against malformed xattrs + - 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) posix_acl: Export posix_acl_fix_xattr_userns() to modules + - SAUCE: (namespace) fuse: Add support for pid namespaces + - SAUCE: (namespace) fuse: Support fuse filesystems outside of init_user_ns + - SAUCE: (namespace) fuse: Translate ids in posix acl xattrs + - 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) ext4: Add module parameter to enable user namespace + mounts + - rebase to v4.8-rc4 + + [ Upstream Kernel Changes ] + + * rebase to v4.8-rc4 + + -- Tim Gardner Thu, 25 Aug 2016 07:13:03 -0600 + +linux (4.8.0-4.5) yakkety; urgency=low + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_AUFS_FS=m + - SAUCE: AUFS 27ef55c6d5f4726b33f60b33a9888963d26fa7fb + + -- Tim Gardner Tue, 23 Aug 2016 12:25:59 -0600 + +linux (4.8.0-3.4) yakkety; urgency=low + + * MacBookPro11,4 fails to poweroff or suspend (LP: #1587714) + - SAUCE: PCI: Workaround to enable poweroff on Mac Pro 11 + + * Miscellaneous Ubuntu changes + - rebase to v4.8-rc3 + + -- Tim Gardner Thu, 18 Aug 2016 10:33:07 -0600 + +linux (4.8.0-2.3) yakkety; urgency=low + + * Miscellaneous Ubuntu changes + - [Config] Add fuse to inclusion list + - SAUCE: update spl/zfs to support v4.8 + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Debian] do_zfs=false" + + -- Tim Gardner Wed, 17 Aug 2016 08:06:33 -0600 + +linux (4.8.0-1.2) yakkety; urgency=low + + * Miscellaneous Ubuntu changes + - [Config] Enabled enforcement for CONFIG_HOTPLUG_PCI_PCIE + - [Config] Enabled enforcement for CONFIG_NVRAM + - [Config] Enabled enforcement for CONFIG_FRAMEBUFFER_CONSOLE + - [Config] Enabled enforcement for CONFIG_DRM_MGAG200 + - [Config] Enabled enforcement for CONFIG_INPUT_UINPUT + - [Config] Enabled enforcement for CONFIG_THERM_ADT746X + - [Config] Enabled enforcement for CONFIG_REGULATOR_TWL4030 + - [Config] Enabled enforcement for CONFIG_SECCOMP + - [Config] Enabled enforcement for + - rebase to v4.8-rc2 + - [Config] Dropped CONFIG_OVERLAY_FS_V1 from annotations + - [Config] CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y + - SAUCE: security,perf: Allow further restriction of perf_event_open + + [ Upstream Kernel Changes ] + + * rebase to v4.8-rc2 + + -- Tim Gardner Thu, 11 Aug 2016 11:08:14 -0600 + +linux (4.8.0-0.1) yakkety; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to v4.8-rc1 + - LP: #1607647 + - LP: #1498667 + - LP: #1592547 + - LP: #1319984 + - LP: #1268727 + - LP: #1600623 + - LP: #1465724 + - LP: #1333569 + + -- Tim Gardner Tue, 02 Aug 2016 14:23:12 -0600 + +linux (4.8.0-0.0) yakkety; urgency=low + + * empty stanza + + -- Tim Gardner Tue, 02 Aug 2016 10:53:17 -0600 + +linux (4.7.0-0.2) yakkety; urgency=low + + * Miscellaneous Ubuntu changes fixing various FTBS issues + - [Config] CONFIG_BLK_DEV_CRYPTOLOOP=m + - [Config] make powerpc udeb block modules optional + - [Config] CONFIG_PLIP=m + - [Config] CONFIG_IRDA=m armhf/arm64 + - [Config] CONFIG_IPMI_HANDLER=m armhf/arm64 + - [Config] CONFIG_MOUSE_PS2=m + - [Config] remove ppc64el fb-modules + + -- Tim Gardner Mon, 01 Aug 2016 10:00:57 -0600 + +linux (4.7.0-0.1) yakkety; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to v4.7 + - LP: #972604 + + -- Tim Gardner Mon, 06 Jun 2016 12:00:45 -0600 + +linux (4.7.0-0.0) yakkety; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1588856 + + * linux: 4.6 kernel fails to boot on ppc64el multi-path system (LP: #1588421) + - scsi_dh_alua: do not fail for unknown VPD identification + + * [Hyper-V] Put tools/hv/lsvmbus in /usr/sbin (LP: #1585311) + - [Config] Install lsvmbus in cloud tools + - SAUCE: tools/hv/lsvmbus -- convert to python3 + - SAUCE: tools/hv/lsvmbus -- add manual page + + * boot stalls on USB detection errors (LP: #1437492) + - usb: core: hub: hub_port_init lock controller instead of bus + + * [Bug]KNL:Spread MWAIT cache lines over all nodes (LP: #1585850) + - kernek/fork.c: allocate idle task for a CPU always on its local node + + * VirtIO (and probably other modules as well) is built-in, make it modular... + (LP: #1475078) + - [Config] CONFIG_VIRTIO_*=m for all but s390x + - [Config] CONFIG_USB=m + - [Config] CONFIG_BLK_DEV_*=m + - [Config] CONFIG_ATA=m + - [Config] CONFIG_SCSI=m + - [Config] CONFIG_DEVFREQ_GOV_*=m + - [Config] CONFIG_XEN_NETDEV_*=m + - [Config] CONFIG_AGP=m + - [Config] CONFIG_ECRYPT_FS=m + - [Config] CONFIG_ACPI_*=m + - [Config] CONFIG_CPU_FREQ_GOV_*=m for all but powerpc/ppc64el + - [Config] Modularize some CRYPTO + - [Config] CONFIG_FDDI=m + - [Config] CONFIG_FIXED_PHY=m + - [Config] CONFIG_VFAT_FS=m for all but armhf + - [Config] CONFIG_TUN=m + - [Config] CONFIG_UNIX=m + - [Config] CONFIG_TRUSTED_KEYS=m + - [Config] CONFIG_LEDS_CLASS=m for amd64,i386,ppc64el + + * debian.master/.../getabis bogus warnings "inconsistant compiler versions" + and "not a git repository" (LP: #1584890) + - [debian] getabis: Only git add $abidir if running in local repo + - [debian] getabis: Fix inconsistent compiler versions check + + * conflicting modules in udebs - arc4.ko (LP: #1582991) + - [Config] Remove arc4 from nic-modules + + * arm64: statically link rtc-efi (LP: #1583738) + - [Config] Link rtc-efi statically on arm64 + + * Miscellaneous Ubuntu changes + - [Debian] zfs: transform symlink into referent file/dir + - [Debian] Added tristate.sh + - [Config] CONFIG_FUSE_FS=m + - [Config] CONFIG_ACPI_APEI_ERST_DEBUG=m + - [Config] CONFIG_PSTORE_CONSOLE=y + - Added Snapcraft files + - [Config] Mark CONFIG_UNIX enforced + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Config] CONFIG_UNIX=m" + + -- Tim Gardner Tue, 17 May 2016 11:20:20 -0600 + +linux (4.6.0-6.7) yakkety; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1582753 + + * Unsharing user and ipc namespaces simultaneously makes mqueue unmountable + (LP: #1582378) + - SAUCE: (namespace) mqueue: Super blocks must be owned by the user ns which + owns the ipc ns + + * Miscellaneous Ubuntu changes + - [Config] Add Description to kernel-image udeb + - SAUCE: (noup) mm: Use phys_addr_t for reserve_bootmem_region arguments + - SAUCE: (noup) Update spl to 0.6.5.7-0ubuntu1, zfs to 0.6.5.7-0ubuntu1 + + * Miscellaneous upstream changes + - Drivers: hv: vmbus: Introduce functions for estimating room in the ring buffer + - Drivers: hv: vmbus: Use READ_ONCE() to read variables that are volatile + - Drivers: hv: vmbus: Use the new virt_xx barrier code + - Drivers: hv: vmbus: Export the vmbus_set_event() API + - Drivers: hv: vmbus: Move some ring buffer functions to hyperv.h + - Drivers: hv: vmbus: Implement APIs to support "in place" consumption of vmbus packets + - drivers:hv: Lock access to hyperv_mmio resource tree + - drivers:hv: Make a function to free mmio regions through vmbus + - drivers:hv: Reverse order of resources in hyperv_mmio + - drivers:hv: Track allocations of children of hv_vmbus in private resource tree + - drivers:hv: Record MMIO range in use by frame buffer + - drivers:hv: Separate out frame buffer logic when picking MMIO range + - Drivers: hv: kvp: fix IP Failover + - Drivers: hv: vmbus: handle various crash scenarios + - Drivers: hv: balloon: don't crash when memory is added in non-sorted order + - Drivers: hv: balloon: reset host_specified_ha_region + + [ Tim Gardner ] + + * Dropped hv SAUCE patches in favor of linux-next. + + -- Tim Gardner Mon, 16 May 2016 13:50:30 -0600 + +linux (4.6.0-5.6) yakkety; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1582351 + + * aufs CONFIG_AUFS_EXPORT build option should be enabled (LP: #1121699) + - [Config] enable CONFIG_AUFS_EXPORT + + * promote *_diag modules from linux-image-extra to linux-image (LP: #1580355) + - [Config] Update inclusion list for CRIU + + * zfs: disable module checks for zfs when cross-compiling (LP: #1581127) + - [Debian] disable zfs module checks when cross-compiling + + * insecure overlayfs xattrs handling in copy_up (LP: #1534961) + - SAUCE: overlayfs: Propogate nosuid from lower and upper mounts + + * overlayfs over fuse should refuse copy_up of files if uid/gid not mapped + (LP: #1535150) + - SAUCE: overlayfs: Propogate nosuid from lower and upper mounts + + * Ubuntu-4.6.0-5.6 configuration has CONFIG_GOLDFISH and CONFIG_GOLDFISH_BUS + enabled, breaking serial support on normal systems (LP: #1580960) + - [Config] disable CONFIG_GOLDFISH + + * Miscellaneous Ubuntu changes + - [Config] d-i -- update local configuration to new form + - [Config] kernel-wedge -- switch to explicit versions + - [Config] powerpc64-smp --> generic + - [Config] CONFIG_AUFS_FS=m + - SAUCE: AUFS + - SAUCE: (namespace) fs: Add user namesapace member to struct super_block + - SAUCE: (namespace) fs: Limit file caps to the user namespace of the super block + - SAUCE: (namespace) Smack: Add support for unprivileged mounts from user namespaces + - SAUCE: (namespace) fs: fix a posible leak of allocated superblock + - SAUCE: (namespace) fs: Allow sysfs and cgroupfs to share super blocks between user namespaces + - 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) fs: Treat foreign mounts as nosuid + - SAUCE: (namespace) selinux: Add support for unprivileged mounts from user namespaces + - SAUCE: (namespace) userns: Replace in_userns with current_in_userns + - SAUCE: (namespace) Smack: Handle labels consistently in untrusted mounts + - SAUCE: (namespace) fs: Check for invalid i_uid in may_follow_link() + - SAUCE: (namespace) cred: Reject inodes with invalid ids in set_create_file_as() + - SAUCE: (namespace) fs: Refuse uid/gid changes which don't map into s_user_ns + - SAUCE: (namespace) fs: Update posix_acl support to handle user namespace mounts + - SAUCE: (namespace) fs: Allow superblock owner to change ownership of inodes with unmappable ids + - SAUCE: (namespace) fs: Don't remove suid for CAP_FSETID in s_user_ns + - 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) 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) mtd: Check permissions towards mtd block device inode when mounting + - SAUCE: (namespace) block_dev: Forbid unprivileged mounting when device is opened for writing + - SAUCE: (namespace) fs: Update i_[ug]id_(read|write) to translate relative to s_user_ns + - SAUCE: (namespace) quota: Add support for user namespace mounts + - SAUCE: (namespace) evm: Translate user/group ids relative to s_user_ns when computing HMAC + - SAUCE: (namespace) fs: Allow CAP_SYS_ADMIN in s_user_ns to freeze and thaw filesystems + - SAUCE: (namespace) ext4: Add support for unprivileged mounts from user namespaces + - SAUCE: (namespace) fuse: Add module parameter to enable user namespace mounts + - SAUCE: (namespace) ext4: Add module parameter to enable user namespace mounts + - rebase to v4.6 + - SAUCE: Powernv: Remove the usage of PACAR1 from opal wrappers + - SAUCE: powerpc/book3s: Fix TB corruption in guest exit path on HMI interrupt. + + * Miscellaneous upstream changes + - Revert "powerpc/eeh: Fix crash in eeh_add_device_early() on Cell" + - powerpc/iommu: Remove the dependency on EEH struct in DDW mechanism + + [ Upstream Kernel Changes ] + + * rebase to v4.6 + + -- Tim Gardner Mon, 09 May 2016 12:08:54 -0600 + +linux (4.6.0-4.5) yakkety; urgency=low + + * Kernel Panic on EC2 After Upgrading from 14.04 to 16.04 via do-release- + upgrade -d (LP: #1573231) + - SAUCE: (no-up) x86/topology: Handle CPUID bogosity gracefully + + * Really cleaned out the last of the i915_bpo SAUCE patches. ricotz on + IRC pointed out some leftover SAUCE patches that were causing issues. + + * Dropped the attempt to convert powerpc64-smb to generic. kernel-wedge + has some issues. + + -- Tim Gardner Mon, 09 May 2016 10:56:54 -0600 + +linux (4.6.0-3.4) xenial; urgency=low + + * Release Tracking Bug + - LP: #1579594 + + * linux-generic: enable linux-extra split on all architectures (LP: #1568832) + - [Config] Generate an -extras package for arm64 and powerpc + + * Missing libunwind support in perf (LP: #1248289) + - [Config] Add liblzma-dev to enable libunwind support in perf + + * ZFS is confused by user namespaces (uid/gid mapping) when used with + acltype=posixac (LP: #1567558) + - zfs: Fix user namespaces uid/gid mapping + + * Miscellaneous Ubuntu changes + - rebase to v4.6-rc7 + + [ Upstream Kernel Changes ] + + * rebase to v4.6-rc7 + + -- Tim Gardner Thu, 05 May 2016 14:03:17 -0600 + +linux (4.6.0-2.3) yakkety; urgency=low + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_AUFS_FS=m + - SAUCE: AUFS + - zfs: gcc build error: -Wbool-compare in metaslab.c + - zfs: Linux 4.6 compat: PAGE_CACHE_SIZE removal + - zfs: Fix ZPL miswrite of default POSIX ACL + - zfs: Linux 4.5 compat: Use xattr_handler->name for acl + - SAUCE: Dropped ubuntu/i915 + - SAUCE: Dropped ubuntu/dm-raid4-5 + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Debian] Disable ZFS until an update catches it up with the + kernel" + + -- Tim Gardner Thu, 05 May 2016 10:41:17 -0600 + +linux (4.6.0-1.2) yakkety; urgency=low + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_NR_CPUS=8192 for amd64 + + -- Tim Gardner Thu, 05 May 2016 07:25:31 -0600 + +linux (4.6.0-0.1) yakkety; urgency=low + + + [ Upstream Kernel Changes ] + + * rebase to v4.6-rc6 + - LP: #1564712 + - LP: #1555912 + - LP: #1552925 + - LP: #1546694 + - LP: #1549660 + - LP: #1549620 + - LP: #1542944 + - LP: #1542564 + - LP: #1533009 + - LP: #1533461 + - LP: #1529624 + - LP: #1522949 + + -- Tim Gardner Mon, 25 Apr 2016 14:24:45 -0600 + +linux (4.6.0-0.0) yakkety; urgency=low + + [ Kamal Mostafa ] + + * Release Tracking Bug + - LP: #1573817 + + * autoreconstruct: need to also generate extend-diff-ignore options for links + (LP: #1574362) + - [Packaging] autoreconstruct -- generate extend-diff-ignore for links + + * tipc: missing linearization of sk_buff (LP: #1567064) + - tipc: move linearization of buffers to generic code + + * [Hyper-V] In-flight PCI Passthrough Patches (LP: #1570124) + - SAUCE:(noup) drivers:hv: Lock access to hyperv_mmio resource tree + - SAUCE:(noup) drivers:hv: Call vmbus_mmio_free() to reverse + vmbus_mmio_allocate() + - SAUCE:(noup) drivers:hv: Reverse order of resources in hyperv_mmio + - SAUCE:(noup) drivers:hv: Track allocations of children of hv_vmbus in + private resource tree + - SAUCE:(noup) drivers:hv: Record MMIO range in use by frame buffer + - SAUCE:(noup) drivers:hv: Separate out frame buffer logic when picking MMIO + range + + * vbox: resync with 5.0.18-dfsg-2build1 (LP: #1571156) + - ubuntu: vbox -- update to 5.0.18-dfsg-2build1 + + * CONFIG_AUFS_XATTR is not set (LP: #1557776) + - [Config] CONFIG_AUFS_XATTR=y + + * CVE-2016-3672 (LP: #1568523) + - x86/mm/32: Enable full randomization on i386 and X86_32 + + * CVE-2016-3955 (LP: #1572666) + - USB: usbip: fix potential out-of-bounds write + + * Xenial update to v4.4.8 stable release (LP: #1573034) + - hwmon: (max1111) Return -ENODEV from max1111_read_channel if not + instantiated + - PKCS#7: pkcs7_validate_trust(): initialize the _trusted output argument + - parisc: Avoid function pointers for kernel exception routines + - parisc: Fix kernel crash with reversed copy_from_user() + - parisc: Unbreak handling exceptions from kernel modules + - ALSA: timer: Use mod_timer() for rearming the system timer + - ALSA: hda - Asus N750JV external subwoofer fixup + - ALSA: hda - Fix white noise on Asus N750JV headphone + - ALSA: hda - Apply fix for white noise on Asus N550JV, too + - mm: fix invalid node in alloc_migrate_target() + - powerpc/mm: Fixup preempt underflow with huge pages + - libnvdimm: fix smart data retrieval + - libnvdimm, pfn: fix uuid validation + - compiler-gcc: disable -ftracer for __noclone functions + - arm64: opcodes.h: Add arm big-endian config options before including arm + header + - drm/dp: move hw_mutex up the call stack + - drm/udl: Use unlocked gem unreferencing + - drm/radeon: add a dpm quirk for sapphire Dual-X R7 370 2G D5 + - drm/radeon: add another R7 370 quirk + - drm/radeon: add a dpm quirk for all R7 370 parts + - drm/amdgpu/gmc: move vram type fetching into sw_init + - drm/amdgpu/gmc: use proper register for vram type on Fiji + - xen/events: Mask a moving irq + - tcp: convert cached rtt from usec to jiffies when feeding initial rto + - tunnel: Clear IPCB(skb)->opt before dst_link_failure called + - net: jme: fix suspend/resume on JMC260 + - net: vrf: Remove direct access to skb->data + - net: qca_spi: Don't clear IFF_BROADCAST + - net: qca_spi: clear IFF_TX_SKB_SHARING + - net: fix bridge multicast packet checksum validation + - sctp: lack the check for ports in sctp_v6_cmp_addr + - mld, igmp: Fix reserved tailroom calculation + - tipc: Revert "tipc: use existing sk_write_queue for outgoing packet chain" + - qmi_wwan: add Sierra Wireless EM74xx device ID + - ipv6: re-enable fragment header matching in ipv6_find_hdr + - vxlan: fix missing options_len update on RX with collect metadata + - cdc_ncm: toggle altsetting to force reset before setup + - udp6: fix UDP/IPv6 encap resubmit path + - tcp: fix tcpi_segs_in after connection establishment + - ppp: release rtnl mutex when interface creation fails + - net: validate variable length ll headers + - ax25: add link layer header validation function + - packet: validate variable length ll headers + - bpf: avoid copying junk bytes in bpf_get_current_comm() + - sh_eth: fix NULL pointer dereference in sh_eth_ring_format() + - sh_eth: advance 'rxdesc' later in sh_eth_ring_format() + - qlcnic: Remove unnecessary usage of atomic_t + - qlcnic: Fix mailbox completion handling during spurious interrupt + - macvtap: always pass ethernet header in linear + - mlxsw: spectrum: Check requested ageing time is valid + - rocker: set FDB cleanup timer according to lowest ageing time + - bridge: allow zero ageing time + - ipv4: Don't do expensive useless work during inetdev destroy. + - net: Fix use after free in the recvmmsg exit path + - mlx4: add missing braces in verify_qp_parameters + - farsync: fix off-by-one bug in fst_add_one + - ath9k: fix buffer overrun for ar9287 + - ppp: ensure file->private_data can't be overridden + - tcp/dccp: remove obsolete WARN_ON() in icmp handlers + - qlge: Fix receive packets drop. + - net: bcmgenet: fix dma api length mismatch + - bonding: fix bond_get_stats() + - ipv4: fix broadcast packets reception + - ipv4: initialize flowi4_flags before calling fib_lookup() + - ppp: take reference on channels netns + - xfrm: Fix crash observed during device unregistration and decryption + - qmi_wwan: add "D-Link DWM-221 B1" device id + - ipv6: udp: fix UDP_MIB_IGNOREDMULTI updates + - bridge: Allow set bridge ageing time when switchdev disabled + - rtnl: fix msg size calculation in if_nlmsg_size() + - tun, bpf: fix suspicious RCU usage in tun_{attach, detach}_filter + - tuntap: restore default qdisc + - ipv4: l2tp: fix a potential issue in l2tp_ip_recv + - ipv6: l2tp: fix a potential issue in l2tp_ip6_recv + - ip6_tunnel: set rtnl_link_ops before calling register_netdevice + - ipv6: Count in extension headers in skb->network_header + - mpls: find_outdev: check for err ptr in addition to NULL check + - USB: uas: Limit qdepth at the scsi-host level + - USB: uas: Add a new NO_REPORT_LUNS quirk + - cdc-acm: fix NULL pointer reference + - KVM: x86: Inject pending interrupt even if pending nmi exist + - KVM: x86: reduce default value of halt_poll_ns parameter + - MIPS: Fix MSA ld unaligned failure cases + - pinctrl: pistachio: fix mfio84-89 function description and pinmux. + - pinctrl: sh-pfc: only use dummy states for non-DT platforms + - pinctrl: sunxi: Fix A33 external interrupts not working + - pinctrl: nomadik: fix pull debug print inversion + - pinctrl: freescale: imx: fix bogus check of of_iomap() return value + - au0828: fix au0828_v4l2_close() dev_state race condition + - au0828: Fix dev_state handling + - coda: fix error path in case of missing pdata on non-DT platform + - v4l: vsp1: Set the SRU CTRL0 register when starting the stream + - pcmcia: db1xxx_ss: fix last irq_to_gpio user + - rbd: use GFP_NOIO consistently for request allocations + - virtio: virtio 1.0 cs04 spec compliance for reset + - mac80211: properly deal with station hashtable insert errors + - mac80211: avoid excessive stack usage in sta_info + - mac80211: fix ibss scan parameters + - mac80211: fix unnecessary frame drops in mesh fwding + - mac80211: fix txq queue related crashes + - usb: renesas_usbhs: avoid NULL pointer derefernce in usbhsf_pkt_handler() + - usb: renesas_usbhs: disable TX IRQ before starting TX DMAC transfer + - usb: renesas_usbhs: fix to avoid using a disabled ep in usbhsg_queue_done() + - iio: st_magn: always define ST_MAGN_TRIGGER_SET_STATE + - iio: accel: bmc150: fix endianness when reading axes + - iio: gyro: bmg160: fix buffer read values + - iio: gyro: bmg160: fix endianness when reading axes + - sd: Fix excessive capacity printing on devices with blocks bigger than 512 + bytes + - fs: add file_dentry() + - nfs: use file_dentry() + - btrfs: fix crash/invalid memory access on fsync when using overlayfs + - ext4: add lockdep annotations for i_data_sem + - ext4: ignore quota mount options if the quota feature is enabled + - iommu: Don't overwrite domain pointer when there is no default_domain + - Btrfs: fix file/data loss caused by fsync after rename and new inode + - arm64: replace read_lock to rcu lock in call_step_hook + - perf: Do not double free + - perf: Cure event->pending_disable race + - mmc: sdhci-pci: Add support and PCI IDs for more Broxton host controllers + - ALSA: hda - Fixup speaker pass-through control for nid 0x14 on ALC225 + - ALSA: hda - Fix headset support and noise on HP EliteBook 755 G2 + - ALSA: hda/realtek - Enable the ALC292 dock fixup on the Thinkpad T460s + - ALSA: usb-audio: Add a sample rate quirk for Phoenix Audio TMX320 + - ALSA: usb-audio: Add a quirk for Plantronics BT300 + - ALSA: usb-audio: Skip volume controls triggers hangup on Dell USB Dock + - HID: wacom: fix Bamboo ONE oops + - HID: usbhid: fix inconsistent reset/resume/reset-resume behavior + - Revert "x86/PCI: Don't alloc pcibios-irq when MSI is enabled" + - Revert "PCI: Add helpers to manage pci_dev->irq and pci_dev->irq_managed" + - Revert "PCI, x86: Implement pcibios_alloc_irq() and pcibios_free_irq()" + - staging: android: ion: Set the length of the DMA sg entries in buffer + - usbvision: fix crash on detecting device with invalid configuration + - Revert "usb: hub: do not clear BOS field during reset device" + - Linux 4.4.8 + + * Fix speaker volume on a Dell machine (LP: #1549660) + - ALSA: hda - Fixup speaker pass-through control for nid 0x14 on ALC225 + + * Xenial update to v4.4.7 stable release (LP: #1572722) + - regulator: core: avoid unused variable warning + - regulator: core: Fix nested locking of supplies + - ASoC: samsung: pass DMA channels as pointers + - mmc: sh_mmcif: rework dma channel handling + - mmc: sh_mmcif: Correct TX DMA channel allocation + - x86/microcode/intel: Make early loader look for builtin microcode too + - x86/microcode: Untangle from BLK_DEV_INITRD + - x86/entry/compat: Keep TS_COMPAT set during signal delivery + - perf/x86/intel: Add definition for PT PMI bit + - x86/PCI: Mark Broadwell-EP Home Agent & PCU as having non-compliant BARs + - KVM: i8254: change PIT discard tick policy + - KVM: fix spin_lock_init order on x86 + - KVM: VMX: avoid guest hang on invalid invept instruction + - KVM: VMX: avoid guest hang on invalid invvpid instruction + - KVM: VMX: fix nested vpid for old KVM guests + - perf/core: Fix perf_sched_count derailment + - perf tools: Dont stop PMU parsing on alias parse error + - perf tools: Fix checking asprintf return value + - perf tools: Fix python extension build + - sched/cputime: Fix steal_account_process_tick() to always return jiffies + - sched/preempt, sh: kmap_coherent relies on disabled preemption + - EDAC, amd64_edac: Shift wrapping issue in f1x_get_norm_dct_addr() + - s390: fix floating pointer register corruption (again) + - s390/cpumf: add missing lpp magic initialization + - pinctrl-bcm2835: Fix cut-and-paste error in "pull" parsing + - PCI: Disable IO/MEM decoding for devices with non-compliant BARs + - PCI: ACPI: IA64: fix IO port generic range check + - x86/irq: Cure live lock in fixup_irqs() + - x86/apic: Fix suspicious RCU usage in smp_trace_call_function_interrupt() + - x86/iopl/64: Properly context-switch IOPL on Xen PV + - x86/iopl: Fix iopl capability check on Xen PV + - x86/mm: TLB_REMOTE_SEND_IPI should count pages + - sg: fix dxferp in from_to case + - aacraid: Fix RRQ overload + - aacraid: Fix memory leak in aac_fib_map_free + - aacraid: Set correct msix count for EEH recovery + - sd: Fix discard granularity when LBPRZ=1 + - scsi: storvsc: fix SRB_STATUS_ABORTED handling + - be2iscsi: set the boot_kset pointer to NULL in case of failure + - aic7xxx: Fix queue depth handling + - libnvdimm: Fix security issue with DSM IOCTL. + - dm snapshot: disallow the COW and origin devices from being identical + - dm: fix excessive dm-mq context switching + - dm thin metadata: don't issue prefetches if a transaction abort has failed + - dm cache: make sure every metadata function checks fail_io + - dm: fix rq_end_stats() NULL pointer in dm_requeue_original_request() + - usb: retry reset if a device times out + - usb: hub: fix a typo in hub_port_init() leading to wrong logic + - USB: uas: Reduce can_queue to MAX_CMNDS + - USB: cdc-acm: more sanity checking + - USB: iowarrior: fix oops with malicious USB descriptors + - USB: usb_driver_claim_interface: add sanity checking + - USB: mct_u232: add sanity checking in probe + - USB: digi_acceleport: do sanity checking for the number of ports + - USB: cypress_m8: add endpoint sanity check + - USB: serial: cp210x: Adding GE Healthcare Device ID + - USB: serial: ftdi_sio: Add support for ICP DAS I-756xU devices + - USB: option: add "D-Link DWM-221 B1" device id + - pwc: Add USB id for Philips Spc880nc webcam + - Input: powermate - fix oops with malicious USB descriptors + - ALSA: usb-audio: Fix NULL dereference in create_fixed_stream_quirk() + - ALSA: usb-audio: Add sanity checks for endpoint accesses + - ALSA: usb-audio: add Microsoft HD-5001 to quirks + - ALSA: usb-audio: Minor code cleanup in create_fixed_stream_quirk() + - ALSA: usb-audio: Fix double-free in error paths after + snd_usb_add_audio_stream() call + - Bluetooth: btusb: Add new AR3012 ID 13d3:3395 + - Bluetooth: btusb: Add a new AR3012 ID 04ca:3014 + - Bluetooth: btusb: Add a new AR3012 ID 13d3:3472 + - crypto: ccp - Add hash state import and export support + - crypto: ccp - Limit the amount of information exported + - crypto: ccp - Don't assume export/import areas are aligned + - crypto: ccp - memset request context to zero during import + - crypto: keywrap - memzero the correct memory + - crypto: atmel - fix checks of error code returned by devm_ioremap_resource() + - crypto: ux500 - fix checks of error code returned by devm_ioremap_resource() + - crypto: marvell/cesa - forward devm_ioremap_resource() error code + - X.509: Fix leap year handling again + - mei: bus: check if the device is enabled before data transfer + - HID: logitech: fix Dual Action gamepad support + - HID: i2c-hid: fix OOB write in i2c_hid_set_or_send_report() + - HID: multitouch: force retrieving of Win8 signature blob + - HID: fix hid_ignore_special_drivers module parameter + - staging: comedi: ni_tiocmd: change mistaken use of start_src for start_arg + - staging: android: ion_test: fix check of platform_device_register_simple() + error code + - staging: comedi: ni_mio_common: fix the ni_write[blw]() functions + - tty: Fix GPF in flush_to_ldisc(), part 2 + - net: irda: Fix use-after-free in irtty_open() + - 8250: use callbacks to access UART_DLL/UART_DLM + - saa7134: Fix bytesperline not being set correctly for planar formats + - adv7511: TX_EDID_PRESENT is still 1 after a disconnect + - bttv: Width must be a multiple of 16 when capturing planar formats + - coda: fix first encoded frame payload + - media: v4l2-compat-ioctl32: fix missing length copy in put_v4l2_buffer32 + - mtip32xx: Avoid issuing standby immediate cmd during FTL rebuild + - mtip32xx: Fix broken service thread handling + - mtip32xx: Remove unwanted code from taskfile error handler + - mtip32xx: Print exact time when an internal command is interrupted + - mtip32xx: Fix for rmmod crash when drive is in FTL rebuild + - mtip32xx: Handle safe removal during IO + - mtip32xx: Handle FTL rebuild failure state during device initialization + - mtip32xx: Implement timeout handler + - mtip32xx: Cleanup queued requests after surprise removal + - ALSA: pcm: Avoid "BUG:" string for warnings again + - ALSA: intel8x0: Add clock quirk entry for AD1981B on IBM ThinkPad X41. + - ALSA: hda - Don't handle ELD notify from invalid port + - ALSA: hda - fix the mic mute button and led problem for a Lenovo AIO + - ALSA: hda - Fix unconditional GPIO toggle via automute + - tools/hv: Use include/uapi with __EXPORTED_HEADERS__ + - jbd2: fix FS corruption possibility in jbd2_journal_destroy() on umount path + - brd: Fix discard request processing + - IB/srpt: Simplify srpt_handle_tsk_mgmt() + - bcache: cleaned up error handling around register_cache() + - bcache: fix race of writeback thread starting before complete initialization + - bcache: fix cache_set_flush() NULL pointer dereference on OOM + - mm: memcontrol: reclaim when shrinking memory.high below usage + - mm: memcontrol: reclaim and OOM kill when shrinking memory.max below usage + - ia64: define ioremap_uc() + - watchdog: don't run proc_watchdog_update if new value is same as old + - watchdog: rc32434_wdt: fix ioctl error handling + - Bluetooth: Add new AR3012 ID 0489:e095 + - Bluetooth: Fix potential buffer overflow with Add Advertising + - cgroup: ignore css_sets associated with dead cgroups during migration + - net: mvneta: enable change MAC address when interface is up + - of: alloc anywhere from memblock if range not specified + - vfs: show_vfsstat: do not ignore errors from show_devname method + - splice: handle zero nr_pages in splice_to_pipe() + - xtensa: ISS: don't hang if stdin EOF is reached + - xtensa: fix preemption in {clear,copy}_user_highpage + - xtensa: clear all DBREAKC registers on start + - ARC: [BE] readl()/writel() to work in Big Endian CPU configuration + - ARC: bitops: Remove non relevant comments + - quota: Fix possible GPF due to uninitialised pointers + - xfs: fix two memory leaks in xfs_attr_list.c error paths + - raid1: include bio_end_io_list in nr_queued to prevent freeze_array hang + - md/raid5: Compare apples to apples (or sectors to sectors) + - RAID5: check_reshape() shouldn't call mddev_suspend + - RAID5: revert e9e4c377e2f563 to fix a livelock + - raid10: include bio_end_io_list in nr_queued to prevent freeze_array hang + - md/raid5: preserve STRIPE_PREREAD_ACTIVE in break_stripe_batch_list + - md: multipath: don't hardcopy bio in .make_request path + - Revert "UBUNTU: SAUCE: (noup) fuse: Add reference counting for fuse_io_priv" + - Revert "UBUNTU: SAUCE: (noup) fuse: do not use iocb after it may have been + freed" + - fuse: do not use iocb after it may have been freed + - fuse: Add reference counting for fuse_io_priv + - fs/coredump: prevent fsuid=0 dumps into user-controlled directories + - rapidio/rionet: fix deadlock on SMP + - ipr: Fix out-of-bounds null overwrite + - ipr: Fix regression when loading firmware + - iwlwifi: mvm: Fix paging memory leak + - drm/radeon: disable runtime pm on PX laptops without dGPU power control + - drm/radeon: Don't drop DP 2.7 Ghz link setup on some cards. + - drm/amdgpu: disable runtime pm on PX laptops without dGPU power control + - drm/amdgpu: include the right version of gmc header files for iceland + - IB/ipoib: fix for rare multicast join race condition + - tracing: Have preempt(irqs)off trace preempt disabled functions + - tracing: Fix crash from reading trace_pipe with sendfile + - tracing: Fix trace_printk() to print when not using bprintk() + - bitops: Do not default to __clear_bit() for __clear_bit_unlock() + - scripts/coccinelle: modernize & + - scripts/kconfig: allow building with make 3.80 again + - kbuild/mkspec: fix grub2 installkernel issue + - MAINTAINERS: Update mailing list and web page for hwmon subsystem + - ideapad-laptop: Add ideapad Y700 (15) to the no_hw_rfkill DMI list + - mmc: block: fix ABI regression of mmc_blk_ioctl + - mmc: mmc_spi: Add Card Detect comments and fix CD GPIO case + - mmc: sdhci: fix data timeout (part 1) + - mmc: sdhci: fix data timeout (part 2) + - mmc: sdhci: Fix override of timeout clk wrt max_busy_timeout + - clk: rockchip: rk3368: fix cpuclk mux bit of big cpu-cluster + - clk: rockchip: rk3368: fix cpuclk core dividers + - clk: rockchip: rk3368: fix parents of video encoder/decoder + - clk: rockchip: rk3368: fix hdmi_cec gate-register + - clk: rockchip: add hclk_cpubus to the list of rk3188 critical clocks + - clk: bcm2835: Fix setting of PLL divider clock rates + - target: Fix target_release_cmd_kref shutdown comp leak + - iser-target: Fix identification of login rx descriptor type + - iser-target: Add new state ISER_CONN_BOUND to isert_conn + - iser-target: Separate flows for np listeners and connections cma events + - iser-target: Rework connection termination + - nfsd4: fix bad bounds checking + - nfsd: fix deadlock secinfo+readdir compound + - ARM: dts: at91: sama5d3 Xplained: don't disable hsmci regulator + - ARM: dts: at91: sama5d4 Xplained: don't disable hsmci regulator + - ACPI / PM: Runtime resume devices when waking from hibernate + - writeback, cgroup: fix premature wb_put() in + locked_inode_to_wb_and_lock_list() + - writeback, cgroup: fix use of the wrong bdi_writeback which mismatches the + inode + - Revert "UBUNTU: SAUCE: (noup) Input: synaptics - handle spurious release of + trackstick buttons, again" + - Input: synaptics - handle spurious release of trackstick buttons, again + - Input: ims-pcu - sanity check against missing interfaces + - Input: ati_remote2 - fix crashes on detecting device with invalid descriptor + - ocfs2/dlm: fix race between convert and recovery + - ocfs2/dlm: fix BUG in dlm_move_lockres_to_recovery_list + - mm/page_alloc: prevent merging between isolated and other pageblocks + - mtd: onenand: fix deadlock in onenand_block_markbad + - PM / sleep: Clear pm_suspend_global_flags upon hibernate + - scsi_common: do not clobber fixed sense information + - sched/cputime: Fix steal time accounting vs. CPU hotplug + - perf/x86/pebs: Add workaround for broken OVFL status on HSW+ + - perf/x86/intel: Fix PEBS warning by only restoring active PMU in pmi + - perf/x86/intel: Fix PEBS data source interpretation on Nehalem/Westmere + - Linux 4.4.7 + + * QCA9565 / AR9565 bluetooth not work (LP: #1542944) + - Bluetooth: Add new AR3012 ID 0489:e095 + + * The mic mute key and led can't work on a Lenovo AIO machine (LP: #1555912) + - ALSA: hda - fix the mic mute button and led problem for a Lenovo AIO + + * 13d3:3472 bluetooth not working, 4.2 low latency kernel 14.04.1 on asus ROG + gl552jx (LP: #1552925) + - Bluetooth: btusb: Add a new AR3012 ID 13d3:3472 + + * Bluetooth cannot detect other devices (Lite-on 3014 + Atheros AR9565) + (LP: #1546694) + - Bluetooth: btusb: Add a new AR3012 ID 04ca:3014 + + * Atheros AR9462 Bluetooth cannot detect other devices (LP: #1542564) + - Bluetooth: btusb: Add new AR3012 ID 13d3:3395 + + * s390/pci: add extra padding to function measurement block (LP: #1572291) + - s390/pci: add extra padding to function measurement block + + * CVE-2016-3951 (LP: #1567191) + - cdc_ncm: do not call usbnet_link_change from cdc_ncm_bind + - usbnet: cleanup after bind() in probe() + + * linux: Add UEFI keyring for externally signed modules (LP: #1569924) + - efi: Remove redundant efi_set_variable_nonblocking() prototype + - efi/runtime-wrappers: Add a nonblocking version of QueryVariableInfo() + - efi: Add nonblocking option to efi_query_variable_store() + - efi: Add NV memory attribute + - efi: Reformat GUID tables to follow the format in UEFI spec + - efi: stub: implement efi_get_random_bytes() based on EFI_RNG_PROTOCOL + - SAUCE: (noup) Add EFI signature data types + - crypto: KEYS: convert public key and digsig asym to the akcipher api + - [Config] CONFIG_EFI_SIGNATURE_LIST_PARSER=y + - SAUCE: (noup) Add an EFI signature blob parser and key loader. + - [Config] CONFIG_IMA_MOK_KEYRING=y + - IMA: create machine owner and blacklist keyrings + - KEYS: Add an alloc flag to convey the builtinness of a key + - [Config] CONFIG_MODULE_SIG_UEFI=y, CONFIG_SYSTEM_BLACKLIST_KEYRING=y + - SAUCE: (noup) KEYS: Add a system blacklist keyring + - SAUCE: (noup) MODSIGN: Support not importing certs from db + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_PUBLIC_KEY_ALGO_RSA=y + + -- Kamal Mostafa Sun, 24 Apr 2016 12:12:13 -0700 + +linux (4.4.0-21.37) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1571791 + + * linux: MokSBState is ignored (LP: #1571691) + - SAUCE: (noup) MODSIGN: Import certificates from UEFI Secure Boot + - SAUCE: (noup) efi: Disable secure boot if shim is in insecure mode + - SAUCE: (noup) Display MOKSBState when disabled + + -- Tim Gardner Mon, 18 Apr 2016 07:00:22 -0600 + +linux (4.4.0-20.36) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1571069 + + * sysfs mount failure during stateful lxd snapshots (LP: #1570906) + - SAUCE: kernfs: Do not match superblock in another user namespace when + mounting + + * Kernel Panic in Ubuntu 16.04 netboot installer (LP: #1570441) + - x86/topology: Fix logical package mapping + - x86/topology: Fix Intel HT disable + - x86/topology: Use total_cpus not nr_cpu_ids for logical packages + - xen/apic: Provide Xen-specific version of cpu_present_to_apicid APIC op + - x86/topology: Fix AMD core count + + * [regression]: Failed to call clock_adjtime(): Invalid argument + (LP: #1566465) + - ntp: Fix ADJ_SETOFFSET being used w/ ADJ_NANO + + -- Tim Gardner Thu, 14 Apr 2016 06:31:56 -0600 + +linux (4.4.0-19.35) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1570348 + + * CVE-2016-2847 (LP: #1554260) + - pipe: limit the per-user amount of pages allocated in pipes + + * xenial kernel crash on HP BL460c G7 (qla24xx problem?) (LP: #1554003) + - SAUCE: (noup) qla2xxx: Add irq affinity notification V2 + + * arm64: guest hangs when ntpd is running (LP: #1549494) + - SAUCE: (noup) KVM: arm/arm64: Handle forward time correction gracefully + + * linux: Enforce signed module loading when UEFI secure boot (LP: #1566221) + - [Config] CONFIG_EFI_SECURE_BOOT_SIG_ENFORCE=y + + * s390/cpumf: Fix lpp detection (LP: #1555344) + - s390/facilities: use stfl mnemonic instead of insn magic + - s390/facilities: always use lowcore's stfle field for storing facility bits + - s390/cpumf: Fix lpp detection + + * s390x kernel image needs weightwatchers (LP: #1536245) + - [Config] s390x: Use compressed kernel bzImage + + * Surelock GA2 SP1: surelock02p05: Not seeing sgX devices for LUNs after + upgrading to Ubuntu 16.04 (LP: #1567581) + - Revert "UBUNTU: SAUCE: (noup) powerpc/pci: Assign fixed PHB number based on + device-tree properties" + + * Backport upstream bugfixes to ubuntu-16.04 (LP: #1555765) + - cpufreq: powernv: Define per_cpu chip pointer to optimize hot-path + - Revert "cpufreq: postfix policy directory with the first CPU in related_cpus" + - cpufreq: powernv: Add sysfs attributes to show throttle stats + + * systemd-modules-load.service: Failing due to missing module 'ib_iser' (LP: #1566468) + - [Config] Add ib_iser to generic inclusion list + + * thunderx nic performance improvements (LP: #1567093) + - net: thunderx: Set recevie buffer page usage count in bulk + - net: thunderx: Adjust nicvf structure to reduce cache misses + + * fixes for thunderx nic in multiqueue mode (LP: #1567091) + - net: thunderx: Fix for multiqset not configured upon interface toggle + - net: thunderx: Fix for HW TSO not enabled for secondary qsets + - net: thunderx: Fix receive packet stats + + * Miscellaneous Ubuntu changes + - [Config] updateconfigs after CONFIG_DRM_I915_BPO_PRELIMINARY_HW_SUPPORT=n + + * Miscellaneous upstream changes (LP: #1564901) + - Input: xpad - correctly handle concurrent LED and FF requests + + -- Tim Gardner Thu, 07 Apr 2016 07:32:16 +0100 + +linux (4.4.0-18.34) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1566868 + + * [i915_bpo] Fix RC6 on SKL GT3 & GT4 (LP: #1564759) + - SAUCE: i915_bpo: drm/i915/skl: Fix rc6 based gpu/system hang + - SAUCE: i915_bpo: drm/i915/skl: Fix spurious gpu hang with gt3/gt4 revs + + * CONFIG_ARCH_ROCKCHIP not enabled in armhf generic kernel (LP: #1566283) + - [Config] CONFIG_ARCH_ROCKCHIP=y + + * [Feature] Memory Bandwidth Monitoring (LP: #1397880) + - perf/x86/cqm: Fix CQM handling of grouping events into a cache_group + - perf/x86/cqm: Fix CQM memory leak and notifier leak + - x86/cpufeature: Carve out X86_FEATURE_* + - Merge branch 'timers-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip + - x86/topology: Create logical package id + - perf/x86/mbm: Add Intel Memory B/W Monitoring enumeration and init + - perf/x86/mbm: Add memory bandwidth monitoring event management + - perf/x86/mbm: Implement RMID recycling + - perf/x86/mbm: Add support for MBM counter overflow handling + + * User namespace mount updates (LP: #1566505) + - SAUCE: quota: Require that qids passed to dqget() be valid and map into s_user_ns + - SAUCE: fs: Allow superblock owner to change ownership of inodes with unmappable ids + - SAUCE: fuse: Don't initialize user_id or group_id in mount options + - SAUCE: cgroup: Use a new super block when mounting in a cgroup namespace + - SAUCE: fs: fix a posible leak of allocated superblock + + * [arm64] kernel BUG at /build/linux-StrpB2/linux-4.4.0/fs/ext4/inode.c:2394! + (LP: #1566518) + - arm64: Honour !PTE_WRITE in set_pte_at() for kernel mappings + - arm64: Update PTE_RDONLY in set_pte_at() for PROT_NONE permission + + * [Feature]USB core and xHCI tasks for USB 3.1 SuperSpeedPlus (SSP) support + for Alpine Ridge on SKL (LP: #1519623) + - usb: define USB_SPEED_SUPER_PLUS speed for SuperSpeedPlus USB3.1 devices + - usb: set USB 3.1 roothub device speed to USB_SPEED_SUPER_PLUS + - usb: show speed "10000" in sysfs for USB 3.1 SuperSpeedPlus devices + - usb: add device descriptor for usb 3.1 root hub + - usb: Support USB 3.1 extended port status request + - xhci: Make sure xhci handles USB_SPEED_SUPER_PLUS devices. + - xhci: set roothub speed to USB_SPEED_SUPER_PLUS for USB3.1 capable controllers + - xhci: USB 3.1 add default Speed Attributes to SuperSpeedPlus device capability + - xhci: set slot context speed field to SuperSpeedPlus for USB 3.1 SSP devices + - usb: Add USB3.1 SuperSpeedPlus Isoc Endpoint Companion descriptor + - usb: Parse the new USB 3.1 SuperSpeedPlus Isoc endpoint companion descriptor + - usb: Add USB 3.1 Precision time measurement capability descriptor support + - xhci: refactor and cleanup endpoint initialization. + - xhci: Add SuperSpeedPlus high bandwidth isoc support to xhci endpoints + - xhci: cleanup isoc tranfers queuing code + - xhci: Support extended burst isoc TRB structure used by xhci 1.1 for USB 3.1 + - SAUCE: (noup) usb: fix regression in SuperSpeed endpoint descriptor parsing + + * wrong/missing permissions for device file /dev/prandom (prng.ko) + (LP: #1558275) + - s390/crypto: provide correct file mode at device register. + + * The Front MIC jack can't work on a HP desktop machine (LP: #1564712) + - ALSA: hda - fix front mic problem for a HP desktop + + * HP Notebook Probook 440 G3 HDA Intel PCH horrible sounds while booting + (LP: #1556228) + - ALSA: hda - Apply reboot D3 fix for CX20724 codec, too + + * please provide mmc-modules udeb (LP: #1565765) + - [Config] Add mmc block drivers to d-i + + * linux: Enforce signed module loading when UEFI secure boot (LP: #1566221) + - Add secure_modules() call + - PCI: Lock down BAR access when module security is enabled + - x86: Lock down IO port access when module security is enabled + - ACPI: Limit access to custom_method + - asus-wmi: Restrict debugfs interface when module loading is restricted + - Restrict /dev/mem and /dev/kmem when module loading is restricted + - acpi: Ignore acpi_rsdp kernel parameter when module loading is restricted + - kexec: Disable at runtime if the kernel enforces module loading restrictions + - x86: Restrict MSR access when module loading is restricted + - [Config] CONFIG_EFI_SECURE_BOOT_SIG_ENFORCE=n + - Add option to automatically enforce module signatures when in Secure Boot mode + - efi: Make EFI_SECURE_BOOT_SIG_ENFORCE depend on EFI + - efi: Add EFI_SECURE_BOOT bit + - hibernate: Disable in a signed modules environment + + * [Hyper-V] Additional PCI passthrough commits (LP: #1565967) + - PCI: Add fwnode_handle to x86 pci_sysdata + - PCI: Look up IRQ domain by fwnode_handle + - [Config] CONFIG_PCI_HYPERV=m + - PCI: hv: Add paravirtual PCI front-end for Microsoft Hyper-V VMs + + * [Bug]Lenovo Yoga 260 and Carbon X1 4th gen freeze on HWP enable + (LP: #1559923) + - ACPI / processor: Request native thermal interrupt handling via _OSC + + * Sync kernel zfs 0.6.5.6 - align with zfsutils-linux and spl packages + (LP: #1564591) + - SAUCE: (noup) Update spl to 0.6.5.6-0ubuntu1, zfs to 0.6.5.6-0ubuntu3 + + * [Ubuntu 16.04.1] RELEASE and ACQUIRE atomics on Power (LP: #1556096) + - atomics: Allow architectures to define their own __atomic_op_* helpers + - powerpc: atomic: Implement atomic{, 64}_*_return_* variants + - powerpc: atomic: Implement acquire/release/relaxed variants for xchg + - powerpc: atomic: Implement acquire/release/relaxed variants for cmpxchg + + * fix for do_tools_cpupower when cross-compiling (LP: #1564206) + - [Debian] cpupower uses non-standard CROSS + + * ISST:LTE: Regression: roselp2 Oops in kernel during setup io (LP: #1546439) + - SAUCE: block: partition: initialize percpuref before sending out KOBJ_ADD + + * Unable to migrate container (LP: #1563921) + - SAUCE: cgroup mount: ignore nsroot= + + * [Hyper-V] patch inclusion in 16.04 for NIC hot add/remove (LP: #1563688) + - hv_netvsc: Move subchannel waiting to rndis_filter_device_remove() + + * /proc/$pid/maps performance regression (LP: #1547231) + - proc: revert /proc//maps [stack:TID] annotation + + * TPM2.0 trusted keys fixes (LP: #1398274) + - tpm: remove unneeded include of actbl2.h + - tpm: fix checks for policy digest existence in tpm2_seal_trusted() + - tpm_crb: Use the common ACPI definition of struct acpi_tpm2 + - tpm_tis: Disable interrupt auto probing on a per-device basis + - tpm_tis: Do not fall back to a hardcoded address for TPM2 + - tpm_tis: Use devm_ioremap_resource + - tpm_tis: Clean up the force=1 module parameter + - tpm_crb: Drop le32_to_cpu(ioread32(..)) + - tpm_crb: Use devm_ioremap_resource + - tpm: fix the rollback in tpm_chip_register() + - tpm: fix the cleanup of struct tpm_chip + - tpm: fix: set continueSession attribute for the unseal operation + - tpm: fix: return rc when devm_add_action() fails + - tpm_eventlog.c: fix binary_bios_measurements + - tpm_crb/tis: fix: use dev_name() for /proc/iomem + - tpm_crb: tpm2_shutdown() must be called before tpm_chip_unregister() + - tpm_tis: fix build warning with tpm_tis_resume + + * [Feature]intel_idle driver support for Knights Landing (LP: #1461365) + - intel_idle: Support for Intel Xeon Phi Processor x200 Product Family + + * cxlflash: Backport upstream cxlflash commits and submitting a noup patch to + Xenial (LP: #1563485) + - cxlflash: Fix to avoid unnecessary scan with internal LUNs + - cxlflash: Increase cmd_per_lun for better throughput + - SAUCE: (noup) cxlflash: Move to exponential back-off when cmd_room is not available + + * Miscellaneous Ubuntu changes + - [Config] do_zfs_powerpc64-smp = true + - [Debian] fix linux_tools when cross-compiling + - [Config] do_zfs_powerpc64-smp use default value + - SAUCE: apparmor: Fix FTBFS due to bad include path + - SAUCE: i915_bpo: Disable preliminary hw support + + -- Tim Gardner Tue, 29 Mar 2016 15:31:33 -0600 + +linux (4.4.0-17.33) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1563441 + + * ISST-LTE: pVM:high cpus number need a high crashkernel value in kdump + (LP: #1560552) + - SAUCE: (noup) ppc64 boot: Wait for boot cpu to show up if nr_cpus limit is + about to hit. + + * Predictable naming mechanism is leading to issues in DLPAR operations of + NICs (LP: #1560514) + - SAUCE: (noup) powerpc/pci: Assign fixed PHB number based on device-tree + properties + + * ThunderX: support alternative phy implementations (LP: #1562968) + - net: thunderx: Cleanup PHY probing code. + - [Config] CONFIG_MDIO_CAVIUM=m + - phy: mdio-octeon: Refactor into two files/modules + - [Config] CONFIG_MDIO_THUNDER=m + - phy: mdio-thunder: Add driver for Cavium Thunder SoC MDIO buses. + - phy: mdio-cavium: Add missing MODULE_* annotations. + - net: cavium: For Kconfig THUNDER_NIC_BGX, select MDIO_THUNDER. + - phy: mdio-thunder: Fix some Kconfig typos + - [d-i] Add phy drivers for Cavium ThunderX to nic-modules udeb + + * linux: exclude ZONE_DEVICE from GFP_ZONE_TABLE (LP: #1563293) + - Revert "mm: CONFIG_NR_ZONES_EXTENDED" + - mm: exclude ZONE_DEVICE from GFP_ZONE_TABLE + + * lots of printk to serial console can hang system for long time + (LP: #1534216) + - printk: set may_schedule for some of console_trylock() callers + + * [i915_bpo] Update i915 backport driver (LP: #1560395) + - SAUCE: i915_bpo: Update to drm-intel-next-fixes-2016-03-16 + - PM / runtime: Add new helper for conditional usage count incrementation + - drm/core: Add drm_for_each_encoder_mask, v2. + - drm/atomic-helper: Implement subsystem-level suspend/resume + + * [Hyper-V] VM Sockets (LP: #1541585) + - Drivers: hv: vmbus: Cleanup vmbus_set_event() + - Drivers: hv: vmbus: Add vendor and device atttributes + - Drivers: hv: vmbus: avoid infinite loop in init_vp_index() + - Drivers: hv: vmbus: avoid scheduling in interrupt context in vmbus_initiate_unload() + - Drivers: hv: vmbus: don't manipulate with clocksources on crash + - Drivers: hv: vmbus: add a helper function to set a channel's pending send size + - Drivers: hv: vmbus: define the new offer type for Hyper-V socket (hvsock) + - Drivers: hv: vmbus: vmbus_sendpacket_ctl: hvsock: avoid unnecessary signaling + - Drivers: hv: vmbus: define a new VMBus message type for hvsock + - Drivers: hv: vmbus: add a hvsock flag in struct hv_driver + - Drivers: hv: vmbus: add a per-channel rescind callback + - Drivers: hv: vmbus: add an API vmbus_hvsock_device_unregister() + - Drivers: hv: vmbus: Eliminate the spin lock on the read path + - Drivers: hv: vmbus: Give control over how the ring access is serialized + - drivers/hv: Move VMBus hypercall codes into Hyper-V UAPI header + - Drivers: hv: vmbus: don't loose HVMSG_TIMER_EXPIRED messages + - Drivers: hv: vmbus: avoid wait_for_completion() on crash + - Drivers: hv: vmbus: remove code duplication in message handling + - Drivers: hv: vmbus: avoid unneeded compiler optimizations in vmbus_wait_for_unload() + - Drivers: hv: util: Pass the channel information during the init call + - Drivers: hv: utils: Remove util transport handler from list if registration fails + - Revert "Drivers: hv: vmbus: Support handling messages on multiple CPUs" + - Drivers: hv: vmbus: Support handling messages on multiple CPUs + + * [Bug]SKL-H boot hang when c8+c9+c10 enabled by intel_idle driver + (LP: #1559918) + - intel_idle: prevent SKL-H boot failure when C8+C9+C10 enabled + + * ixgbe: Update to Fortville SW5 release (LP: #1562326) + - net: add tc offload feature flag + - net: tc: helper functions to query action types + - sctp: Rename NETIF_F_SCTP_CSUM to NETIF_F_SCTP_CRC + - net: rework ndo tc op to consume additional qdisc handle parameter + - net: rework setup_tc ndo op to consume general tc operand + - net: sched: add cls_u32 offload hooks for netdevs + - net: ixgbe: add support for tc_u32 offload + - net: ixgbe: abort with cls u32 divisor groups greater than 1 + + * Bring fm10k up to Fortville SW5 (LP: #1562310) + - net: add netif_is_team_master helper + - net: add netif_is_team_port helper + - net: add netif_is_lag_master helper + - net: add netif_is_lag_port helper + - ethtool: correctly ensure {GS}CHANNELS doesn't conflict with GS{RXFH} + - fm10k: don't reinitialize RSS flow table when RXFH configured + + * [Feature]Always Running Timer (ART) to System Time translation + (LP: #1519625) + - time: Verify time values in adjtimex ADJ_SETOFFSET to avoid overflow + - timekeeping: Provide internal function __ktime_get_real_seconds + - timekeeping: Cap adjustments so they don't exceed the maxadj value + - clocksource: Make clocksource validation work for all clocksources + - time: Add cycles to nanoseconds translation + - time: Add timekeeping snapshot code capturing system time and counter + - time: Remove duplicated code in ktime_get_raw_and_real() + - time: Add driver cross timestamp interface for higher precision time synchronization + - time: Add history to cross timestamp interface supporting slower devices + - time/timekeeping: Work around false positive GCC warning + - x86/tsc: Always Running Timer (ART) correlated clocksource + - ptp: Add PTP_SYS_OFFSET_PRECISE for driver crosstimestamping + - [Config] CONFIG_E1000E_HWTS=y + - e1000e: Adds hardware supported cross timestamp on e1000e nic + + * x-gene2: add SoC v2 support to clock (LP: #1561604) + - clk: xgene: Add SoC and PMD PLL clocks with v2 hardware + + * [Bug]Disable multi-record PEBS on Merom (LP: #1559914) + - perf/x86: Move perf_event.c ............... => x86/events/core.c + - perf/x86: Move perf_event_amd.c ........... => x86/events/amd/core.c + - perf/x86: Move perf_event_amd_ibs.c ....... => x86/events/amd/ibs.c + - perf/x86: Move perf_event_amd_iommu.[ch] .. => x86/events/amd/iommu.[ch] + - perf/x86: Move perf_event_amd_uncore.c .... => x86/events/amd/uncore.c + - perf/x86: Move perf_event_intel_bts.c ........ => x86/events/intel/bts.c + - perf/x86: Move perf_event_intel.c ............ => x86/events/intel/core.c + - perf/x86: Move perf_event_intel_cqm.c ........ => x86/events/intel/cqm.c + - perf/x86: Move perf_event_intel_cstate.c ..... => x86/events/intel/cstate.c + - perf/x86: Move perf_event_intel_ds.c ......... => x86/events/intel/ds.c + - perf/x86: Move perf_event_intel_lbr.c ........ => x86/events/intel/lbr.c + - perf/x86: Move perf_event_intel_pt.[ch] ...... => x86/events/intel/pt.[ch] + - perf/x86: Move perf_event_intel_rapl.c ....... => x86/events/intel/rapl.c + - perf/x86: Move perf_event_intel_uncore.[ch] .. => + x86/events/intel/uncore.[ch] + - perf/x86: Move perf_event_intel_uncore_nhmex.c => + x86/events/intel/uncore_nmhex.c + - perf/x86: Move perf_event_intel_uncore_snb.c => + x86/events/intel/uncore_snb.c + - perf/x86: Move perf_event_intel_uncore_snbep.c => + x86/events/intel/uncore_snbep.c + - perf/x86: Move perf_event_knc.c .............. => x86/events/intel/knc.c + - perf/x86: Move perf_event_p4.c ............... => x86/events/intel/p4.c + - perf/x86: Move perf_event_p6.c ............... => x86/events/intel/p6.c + - perf/x86: Move perf_event_msr.c .............. => x86/events/msr.c + - perf/x86: Move perf_event.h to its new home + - perf/x86/intel: Use PAGE_SIZE for PEBS buffer size on Core2 + + * [Feature] Enable I2C on Broxton-P (LP: #1520139) + - mfd: intel-lpss: Pass I2C configuration via properties on BXT + + -- Tim Gardner Thu, 24 Mar 2016 20:40:27 -0600 + +linux (4.4.0-16.32) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1561727 + + * fix thermal throttling due to commit "Thermal: initialize thermal zone + device correctly" (LP: #1561676) + - Thermal: Ignore invalid trip points + + * Thinkpad T460: Trackpoint mouse buttons instantly generate "release" event + on press (LP: #1553811) + - SAUCE: (noup) Input: synaptics - handle spurious release of trackstick + buttons, again + + * reading /sys/kernel/security/apparmor/profiles requires CAP_MAC_ADMIN + (LP: #1560583) + - SAUCE: apparmor: Allow ns_root processes to open profiles file + - SAUCE: apparmor: Consult sysctl when reading profiles in a user ns + + * linux: sync virtualbox drivers to 5.0.16-dfsg-2 (LP: #1561492) + - ubuntu: vbox -- update to 5.0.16-dfsg-2 + + * s390/kconfig: CONFIG_NUMA without CONFIG_NUMA_EMU does not make any sense on + s390x (LP: #1557690) + - [Config] CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=n for s390x + + * spl/zfs fails to build on s390x (LP: #1519814) + - [Config] s390x -- re-enable zfs + - [Config] zfs -- disable powerpc until the test failures can be resolved + + * linux: sync to ZFS 0.6.5.6 stable release (LP: #1561483) + - SAUCE: (noup) Update spl to 0.6.5.6-0ubuntu1, zfs to 0.6.5.6-0ubuntu1 + + * zfs: enable zfs for 64bit powerpc kernels (LP: #1558871) + - [Packaging] zfs -- handle rprovides via dpkg-gencontrol + - [Config] powerpc -- convert zfs configuration to custom_override + + * Memory arena corruption with FUSE (was Memory allocation failure crashes + kernel hard, presumably related to FUSE) (LP: #1505948) + - SAUCE: (noup) fuse: do not use iocb after it may have been freed + - SAUCE: (noup) fuse: Add reference counting for fuse_io_priv + + * cgroup namespaces: add a 'nsroot=' mountinfo field (LP: #1560489) + - SAUCE: (noup) cgroup namespaces: add a 'nsroot=' mountinfo field + + * linux packaging: clear remaining redundant delta (LP: #1560445) + - [Debian] Remove generated intermediate files on clean + + * arm64: guest hangs when ntpd is running (LP: #1549494) + - Revert "hrtimer: Add support for CLOCK_MONOTONIC_RAW" + - Revert "hrtimer: Catch illegal clockids" + - Revert "KVM: arm/arm64: timer: Switch to CLOCK_MONOTONIC_RAW" + + * Need enough contiguous memory to support GICv3 ITS table (LP: #1558828) + - [Config] CONFIG_FORCE_MAX_ZONEORDER=13 on arm64 + - SAUCE: (no-up) arm64: gicv3: its: Increase FORCE_MAX_ZONEORDER for Cavium + ThunderX + + * update arcmsr to version v1.30.00.22-20151126 to fix card timeouts + (LP: #1559609) + - arcmsr: fixed getting wrong configuration data + - arcmsr: fixes not release allocated resource + - arcmsr: make code more readable + - arcmsr: adds code to support new Areca adapter ARC1203 + - arcmsr: changes driver version number + - arcmsr: more readability improvements + - arcmsr: Split dma resource allocation to a new function + - arcmsr: change driver version to v1.30.00.22-20151126 + + * server image has no keyboard, desktop image works (LP: #1559692) + - [Config] Rework input-modules (d-i) list + + * PMU support for Cavium ThunderX (LP: #1559349) + - arm64: perf: Rename Cortex A57 events + - arm64/perf: Add Cavium ThunderX PMU support + - arm64: perf: Enable PMCR long cycle counter bit + - arm64: perf: Extend event mask for ARMv8.1 + - arm64: dts: Add Cavium ThunderX specific PMU + + * Show ARM PMU events in perf stat (LP: #1559350) + - drivers/perf: kill armpmu_register + - arm: perf: Convert event enums to #defines + - arm: perf: Add event descriptions + - arm64: perf: Convert event enums to #defines + - arm64: perf: Add event descriptions + - ARM: perf: add format entry to describe event -> config mapping + - arm64: perf: add format entry to describe event -> config mapping + + * [Bug]HSW/BDW EDAC driver reports wrong DIMM (LP: #1559904) + - EDAC/sb_edac: Fix computation of channel address + + * 5-10 second delay in kernel boot with kernel command line ip= (LP: #1259861) + - [Config] disable CONFIG_IP_PNP + + * Miscellaneous Ubuntu changes + - [Debian] Silence the reconstruct script + + -- Tim Gardner Mon, 21 Mar 2016 10:15:31 -0600 + +linux (4.4.0-15.31) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1559252 + + * Xilinx KU3 Capi card does not show up in Ubuntu 16.04 (LP: #1557001) + - SAUCE: (noup) cxl: Allow initialization on timebase sync failures + + * policy namespace stacking (LP: #1379535) + - Revert "UBUNTU: SAUCE: Move replacedby allocation into label_alloc" + - Revert "UBUNTU: SAUCE: Fixup: __label_update() still doesn't handle some cases correctly." + - Revert "UBUNTU: SAUCE: fix: audit "no_new_privs" case for exec failure" + - Revert "UBUNTU: SAUCE: fixup: warning about aa_label_vec_find_or_create not being static" + - Revert "UBUNTU: SAUCE: apparmor: fix refcount race when finding a child profile" + - Revert "UBUNTU: SAUCE: fixup: cast poison values to remove warnings" + - Revert "UBUNTU: SAUCE: fixup: get rid of unused var build warning" + - Revert "UBUNTU: SAUCE: fixup: 20/23 locking issue around in __label_update" + - Revert "UBUNTU: SAUCE: fixup: make __share_replacedby private to get rid of build warning" + - Revert "UBUNTU: SAUCE: fix: replacedby forwarding is not being properly update when ns is destroyed" + - Revert "UBUNTU: SAUCE: apparmor: fix log of apparmor audit message when kern_path() fails" + - Revert "UBUNTU: SAUCE: fixup: cleanup return handling of labels" + - Revert "UBUNTU: SAUCE: apparmor: fix: ref count leak when profile sha1 hash is read" + - Revert "UBUNTU: SAUCE: apparmor: Fix: query label file permission" + - Revert "UBUNTU: SAUCE: apparmor: Don't remove label on rcu callback if the label has already been removed" + - Revert "UBUNTU: SAUCE: apparmor: Fix: break circular refcount for label that is directly freed." + - Revert "UBUNTU: SAUCE: apparmor: Fix: refcount bug when inserting label update that transitions ns" + - Revert "UBUNTU: SAUCE: apparmor: Fix: now that insert can force replacement use it instead of remove_and_insert" + - Revert "UBUNTU: SAUCE: apparmor Fix: refcount bug in pivotroot mediation" + - Revert "UBUNTU: SAUCE: apparmor: ensure that repacedby sharing is done correctly" + - Revert "UBUNTU: SAUCE: apparmor: Fix: update replacedby allocation to take a gfp parameter" + - Revert "UBUNTU: SAUCE: apparmor: Fix: convert replacedby update to be protected by the labelset lock" + - Revert "UBUNTU: SAUCE: apparmor: Fix: add required locking of __aa_update_replacedby on merge path" + - Revert "UBUNTU: SAUCE: apparmor: Fix: deadlock in aa_put_label() call chain" + - Revert "UBUNTU: SAUCE: apparmor: Fix: label_vec_merge insertion" + - Revert "UBUNTU: SAUCE: apparmor: Fix: ensure new labels resulting from merge have a replacedby" + - Revert "UBUNTU: SAUCE: apparmor: Fix: refcount leak in aa_label_merge" + - Revert "UBUNTU: SAUCE: apparmor: Fix: refcount race between locating in labelset and get" + - Revert "UBUNTU: SAUCE: apparmor: Fix: label merge handling of marking unconfined and stale" + - Revert "UBUNTU: SAUCE: apparmor: add underscores to indicate aa_label_next_not_in_set() use needs locking" + - Revert "UBUNTU: SAUCE: apparmor: debug: POISON label and replaceby pointer on free" + - Revert "UBUNTU: SAUCE: apparmor: Fix: ensure aa_get_newest will trip debugging if the replacedby is not setup" + - Revert "UBUNTU: SAUCE: apparmor: Fix: insert race between label_update and label_merge" + - Revert "UBUNTU: SAUCE: apparmor: rework retrieval of the current label in the profile update case" + - Revert "UBUNTU: SAUCE: apparmor: Disallow update of cred when then subjective != the objective cred" + - Revert "UBUNTU: SAUCE: apparmor: Fix: oops do to invalid null ptr deref in label print fns" + - Revert "UBUNTU: SAUCE: fix-up: kern_mount fail path should not be doing put_buffers()" + - Revert "UBUNTU: SAUCE: apparmor: fix sleep from invalid context" + - Revert "UBUNTU: SAUCE: (no-up): apparmor: fix for failed mediation of socket that is being shutdown" + - Revert "UBUNTU: SAUCE: (no-up) apparmor: Fix incompatible pointer type warnings" + - Revert "UBUNTU: SAUCE: (no-up) apparmor: fix mount not handling disconnected paths" + - Revert "UBUNTU: SAUCE: (no-up): apparmor: fix mediation of fs unix sockets" + - Revert "UBUNTU: apparmor -- follow change to this_cpu_ptr" + - Revert "UBUNTU: SAUCE: (no-up) fix: bad unix_addr_fs macro" + - Revert "UBUNTU: SAUCE: Revert: fix: only allow a single threaded process to ..." + - Revert "UBUNTU: SAUCE: (no-up) apparmor: Sync to apparmor3 - RC1 snapshot" + - Revert "UBUNTU: SAUCE: (no-up) apparmor: add parameter to control whether policy hashing is used" + - SAUCE: (no-up) apparmor: sync of apparmor3.5-beta1 snapshot + - SAUCE: add a sysctl to enable unprivileged user ns AppArmor policy loading + + * Add arm64 NUMA support (LP: #1558765) + - SAUCE: (noup) efi: ARM/arm64: ignore DT memory nodes instead of removing them + - SAUCE: (noup) Documentation, dt, numa: dt bindings for NUMA. + - [Config] CONFIG_OF_NUMA=y + - SAUCE: (noup) of, numa: Add NUMA of binding implementation. + - SAUCE: (noup) arm64: Move unflatten_device_tree() call earlier. + - [Config] CONFIG_NUMA=y and CONFIG_NODES_SHIFT=2 on arm64 + - SAUCE: (noup) arm64, numa: Add NUMA support for arm64 platforms. + - SAUCE: (noup) arm64, mm, numa: Add NUMA balancing support for arm64. + + * vivid/linux: total ADT test failures (LP: #1558447) + - Revert "Revert "af_unix: Revert 'lock_interruptible' in stream receive code"" + + * [Hyper-V] patches to allow kdump crash through NMI (LP: #1558720) + - Drivers: hv: vmbus: Support handling messages on multiple CPUs + - Drivers: hv: vmbus: Support kexec on ws2012 r2 and above + + * s390/pci: enforce fmb page boundary rule (LP: #1558625) + - s390/pci: enforce fmb page boundary rule + + * s390/pci: backport upstream commits since v4.4 (LP: #1558624) + - s390/pci_dma: fix DMA table corruption with > 4 TB main memory + - page_to_phys() always returns a multiple of PAGE_SIZE + - s390/pci: provide ZPCI_ADDR macro + - s390/pci: improve ZPCI_* macros + - s390/pci: resize iomap + - s390/pci: fix bar check + - s390/pci: set error state for unusable functions + - s390/pci: remove iomap sanity checks + - s390/pci: remove pdev pointer from arch data + - s390/pci: add ioctl interface for CLP + + * IMA-appraisal is unusable in Ubuntu 16.04 (LP: #1558553) + - [Config] CONFIG_SYSTEM_EXTRA_CERTIFICATE=y, CONFIG_SYSTEM_EXTRA_CERTIFICATE_SIZE=4096 + - KEYS: Use the symbol value for list size, updated by scripts/insert-sys-cert + - KEYS: Reserve an extra certificate symbol for inserting without recompiling + - SAUCE: (noup) KEYS: Support for inserting a certificate into x86 bzImage + + * skb_warn_bad_offload Crash (LP: #1558025) + - ipv4: only create late gso-skb if skb is already set up with CHECKSUM_PARTIAL + + * Add PCIe root complex to Cavium arm64 (LP: #1558342) + - [Config] CONFIG_PCI_HOST_COMMON=y + - [Config] CONFIG_PCI_HOST_THUNDER_PEM=y + - [Config] CONFIG_PCI_HOST_THUNDER_ECAM=y + - PCI: generic: Move structure definitions to separate header file + - PCI: generic: Add pci_host_common_probe(), based on gen_pci_probe() + - PCI: generic: Expose pci_host_common_probe() for use by other drivers + - PCI: thunder: Add PCIe host driver for ThunderX processors + - PCI: thunder: Add driver for ThunderX-pass{1,2} on-chip devices + + * [Hyper-V] vmbus: Fix a bug in hv_need_to_signal_on_read() (LP: #1556264) + - SAUCE: (noup) Drivers: hv: vmbus: Fix a bug in hv_need_to_signal_on_read() + + * Xenial update to v4.4.6 stable release (LP: #1558330) + - arm64: account for sparsemem section alignment when choosing vmemmap offset + - ARM: mvebu: fix overlap of Crypto SRAM with PCIe memory window + - ARM: dts: dra7: do not gate cpsw clock due to errata i877 + - ARM: OMAP2+: hwmod: Introduce ti,no-idle dt property + - PCI: Allow a NULL "parent" pointer in pci_bus_assign_domain_nr() + - kvm: cap halt polling at exactly halt_poll_ns + - KVM: VMX: disable PEBS before a guest entry + - KVM: s390: correct fprs on SIGP (STOP AND) STORE STATUS + - KVM: PPC: Book3S HV: Sanitize special-purpose register values on guest exit + - KVM: MMU: fix ept=0/pte.u=1/pte.w=0/CR0.WP=0/CR4.SMEP=1/EFER.NX=0 combo + - KVM: MMU: fix reserved bit check for ept=0/CR0.WP=0/CR4.SMEP=1/EFER.NX=0 + - s390/dasd: fix diag 0x250 inline assembly + - tracing: Fix check for cpu online when event is disabled + - dmaengine: at_xdmac: fix residue computation + - jffs2: reduce the breakage on recovery from halfway failed rename() + - ncpfs: fix a braino in OOM handling in ncp_fill_cache() + - ASoC: dapm: Fix ctl value accesses in a wrong type + - ASoC: samsung: Use IRQ safe spin lock calls + - ASoC: wm8994: Fix enum ctl accesses in a wrong type + - ASoC: wm8958: Fix enum ctl accesses in a wrong type + - ovl: ignore lower entries when checking purity of non-directory entries + - ovl: fix working on distributed fs as lower layer + - wext: fix message delay/ordering + - cfg80211/wext: fix message ordering + - can: gs_usb: fixed disconnect bug by removing erroneous use of kfree() + - iwlwifi: mvm: inc pending frames counter also when txing non-sta + - mac80211: minstrel: Change expected throughput unit back to Kbps + - mac80211: fix use of uninitialised values in RX aggregation + - mac80211: minstrel_ht: set default tx aggregation timeout to 0 + - mac80211: minstrel_ht: fix a logic error in RTS/CTS handling + - mac80211: check PN correctly for GCMP-encrypted fragmented MPDUs + - mac80211: Fix Public Action frame RX in AP mode + - gpu: ipu-v3: Do not bail out on missing optional port nodes + - drm/amdgpu: Fix error handling in amdgpu_flip_work_func. + - drm/radeon: Fix error handling in radeon_flip_work_func. + - Revert "drm/radeon/pm: adjust display configuration after powerstate" + - userfaultfd: don't block on the last VM updates at exit time + - ovl: fix getcwd() failure after unsuccessful rmdir + - MIPS: Fix build error when SMP is used without GIC + - MIPS: smp.c: Fix uninitialised temp_foreign_map + - block: don't optimize for non-cloned bio in bio_get_last_bvec() + - target: Drop incorrect ABORT_TASK put for completed commands + - ld-version: Fix awk regex compile failure + - Linux 4.4.6 + + * linux fails to load x.509 built-in certificate (LP: #1557250) + - lib/mpi: Endianness fix + + * s390/kconfig: setting for CONFIG...9P.... (LP: #1557994) + - [Config] CONFIG_NET_9P=m for s390x + + * mlx5_core kernel trace after "ethtool -C eth1 adaptive-rx on" flow + (LP: #1557950) + - net/mlx5e: Don't try to modify CQ moderation if it is not supported + - net/mlx5e: Don't modify CQ before it was created + + * [Feature]SD/SDIO/eMMC support for Broxton-P (LP: #1520454) + - mmc: sdhci: Do not BUG on invalid vdd + - mmc: enable MMC/SD/SDIO device to suspend/resume asynchronously + - mmc: It is not an error for the card to be removed while suspended + + * s390/kconfig: disable CONFIG_VIRTIO_MMIO (LP: #1557689) + - [Config] CONFIG_VIRTIO_MMIO=n for s390x + + * s390/kconfig: CONFIG_NUMA without CONFIG_NUMA_EMU does not make any sense on s390x (LP: #1557690) + - [Config] CONFIG_NUMA_EMU=y for s390x + + * Miscellaneous Ubuntu changes + - [Debian] git-ubuntu-log -- prevent bug references being split + - [Debian] git-ubuntu-log -- git log output is UTF-8 + + -- Tim Gardner Tue, 15 Mar 2016 13:18:58 -0600 + +linux (4.4.0-14.30) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1557508 + + * Current 4.4 kernel won't boot on powerpc (LP: #1557130) + - powerpc: Fix dedotify for binutils >= 2.26 + + * ZFS: send fails to transmit some holes [corruption] (LP: #1557151) + - Illumos 6370 - ZFS send fails to transmit some holes + + * Request to cherry-pick uvcvideo patch for Xenial kernel support of RealSense + camera (LP: #1557138) + - UVC: Add support for ds4 depth camera + + * use after free of task_struct->numa_faults in task_numa_find_cpu (LP: #1527643) + - sched/numa: Fix use-after-free bug in the task_numa_compare + + * overlay fs regression: chmod fails with "Operation not permitted" on chowned + files (LP: #1555997) + - ovl: copy new uid/gid into overlayfs runtime inode + + * Miscellaneous Ubuntu changes + - SAUCE: Dump stack when X.509 certificates cannot be loaded + + -- Tim Gardner Mon, 14 Mar 2016 07:16:19 -0600 + +linux (4.4.0-13.29) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1556247 + + * s390/mm: four page table levels vs. fork (LP: #1556141) + - s390/mm: four page table levels vs. fork + + * [Hyper-V] network performance patches for Xenial 16.04 (LP: #1556037) + - hv_netvsc: use skb_get_hash() instead of a homegrown implementation + - hv_netvsc: cleanup netdev feature flags for netvsc + + * fails to boot on megaraid (LP: #1552903) + - SAUCE: (noup) megaraid_sas: Don't issue kill adapter for MFI controllers in + case of PD list DCMD failure + + * ALSA: hda - add codec support for Kabylake display audio codec (LP: #1556002) + - ALSA: hda - add codec support for Kabylake display audio codec + + * Backport upstream bugfixes to ubuntu-16.04 (LP: #1555765) + - cpufreq: powernv: Free 'chips' on module exit + - cpufreq: powernv: Hot-plug safe the kworker thread + - cpufreq: powernv: Remove cpu_to_chip_id() from hot-path + - cpufreq: powernv/tracing: Add powernv_throttle tracepoint + - cpufreq: powernv: Replace pr_info with trace print for throttle event + - SAUCE: (noup) cpufreq: powernv: Fix bugs in powernv_cpufreq_{init/exit} + + * Linux netfilter IPT_SO_SET_REPLACE memory corruption (LP: #1555338) + - SAUCE: [nf,v2] netfilter: x_tables: don't rely on well-behaving userspace + + * integer overflow in xt_alloc_table_info (LP: #1555353) + - SAUCE: (noup) netfilter: x_tables: check for size overflow + + * linux: auto-generate the reconstruct information from the git tag (LP: #1555543) + - [Packaging] reconstruct -- automatically reconstruct against base tag + - [Config] reconstruct -- update to autoreconstruct output + - [Packaging] reconstruct -- update when inserting final changes + + * Xenial update to v4.4.5 stable release (LP: #1555640) + - use ->d_seq to get coherency between ->d_inode and ->d_flags + - drivers: sh: Restore legacy clock domain on SuperH platforms + - Btrfs: fix deadlock running delayed iputs at transaction commit time + - btrfs: Fix no_space in write and rm loop + - btrfs: async-thread: Fix a use-after-free error for trace + - block: Initialize max_dev_sectors to 0 + - PCI: keystone: Fix MSI code that retrieves struct pcie_port pointer + - parisc: Fix ptrace syscall number and return value modification + - mips/kvm: fix ioctl error handling + - kvm: x86: Update tsc multiplier on change. + - fbcon: set a default value to blink interval + - cifs: fix out-of-bounds access in lease parsing + - CIFS: Fix SMB2+ interim response processing for read requests + - Fix cifs_uniqueid_to_ino_t() function for s390x + - vfio: fix ioctl error handling + - KVM: x86: fix root cause for missed hardware breakpoints + - arm/arm64: KVM: Fix ioctl error handling + - iommu/amd: Apply workaround for ATS write permission check + - iommu/amd: Fix boot warning when device 00:00.0 is not iommu covered + - iommu/vt-d: Use BUS_NOTIFY_REMOVED_DEVICE in hotplug path + - target: Fix WRITE_SAME/DISCARD conversion to linux 512b sectors + - drm/ast: Fix incorrect register check for DRAM width + - drm/radeon/pm: update current crtc info after setting the powerstate + - drm/amdgpu/pm: update current crtc info after setting the powerstate + - drm/amdgpu: apply gfx_v8 fixes to gfx_v7 as well + - drm/amdgpu/gfx8: specify which engine to wait before vm flush + - drm/amdgpu: return from atombios_dp_get_dpcd only when error + - libata: fix HDIO_GET_32BIT ioctl + - libata: Align ata_device's id on a cacheline + - block: bio: introduce helpers to get the 1st and last bvec + - writeback: flush inode cgroup wb switches instead of pinning super_block + - Adding Intel Lewisburg device IDs for SATA + - arm64: vmemmap: use virtual projection of linear region + - PM / sleep / x86: Fix crash on graph trace through x86 suspend + - ata: ahci: don't mark HotPlugCapable Ports as external/removable + - tracing: Do not have 'comm' filter override event 'comm' field + - pata-rb532-cf: get rid of the irq_to_gpio() call + - Btrfs: fix loading of orphan roots leading to BUG_ON + - Revert "jffs2: Fix lock acquisition order bug in jffs2_write_begin" + - jffs2: Fix page lock / f->sem deadlock + - Fix directory hardlinks from deleted directories + - dmaengine: pxa_dma: fix cyclic transfers + - adv7604: fix tx 5v detect regression + - ALSA: usb-audio: Add a quirk for Plantronics DA45 + - ALSA: ctl: Fix ioctls for X32 ABI + - ALSA: hda - Fix mic issues on Acer Aspire E1-472 + - ALSA: rawmidi: Fix ioctls X32 ABI + - ALSA: timer: Fix ioctls for X32 ABI + - ALSA: pcm: Fix ioctls for X32 ABI + - ALSA: seq: oss: Don't drain at closing a client + - ALSA: hdspm: Fix wrong boolean ctl value accesses + - ALSA: hdsp: Fix wrong boolean ctl value accesses + - ALSA: hdspm: Fix zero-division + - ALSA: timer: Fix broken compat timer user status ioctl + - usb: chipidea: otg: change workqueue ci_otg as freezable + - USB: cp210x: Add ID for Parrot NMEA GPS Flight Recorder + - USB: qcserial: add Dell Wireless 5809e Gobi 4G HSPA+ (rev3) + - USB: qcserial: add Sierra Wireless EM74xx device ID + - USB: serial: option: add support for Telit LE922 PID 0x1045 + - USB: serial: option: add support for Quectel UC20 + - MIPS: scache: Fix scache init with invalid line size. + - MIPS: traps: Fix SIGFPE information leak from `do_ov' and `do_trap_or_bp' + - ubi: Fix out of bounds write in volume update code + - i2c: brcmstb: allocate correct amount of memory for regmap + - thermal: cpu_cooling: fix out of bounds access in time_in_idle + - block: check virt boundary in bio_will_gap() + - block: get the 1st and last bvec via helpers + - drm/i915: more virtual south bridge detection + - drm/i915: refine qemu south bridge detection + - modules: fix longstanding /proc/kallsyms vs module insertion race. + - drm/amdgpu: fix topaz/tonga gmc assignment in 4.4 stable + - Linux 4.4.5 + + * QEMU: causes vCPU steal time overflow on live migration (LP: #1494350) + - x86/mm: Fix slow_virt_to_phys() for X86_PAE again + + * TPM2.0 trusted keys fixes (LP: #1398274) + - tpm_tis: further simplify calculation of ordinal duration + - tpm_tis: Use devm_free_irq not free_irq + - tpm_tis: Ensure interrupts are disabled when the driver starts + - tpm: rework tpm_get_timeouts() + - tpm_tis: Get rid of the duplicate IRQ probing code + - tpm_tis: Refactor the interrupt setup + - tpm_tis: Tighten IRQ auto-probing + - tpm_ibmvtpm: properly handle interrupted packet receptions + + * linux: review all versioned depends/conflicts/replaces/breaks for validility (LP: #1555033) + - [Config] control.stub.in -- review versioned Build-Depends: + - [Config] control.stub.in -- review versioned + Depends/Breaks/Conflicts/Replaces + - [Config] flavour-control.stub -- review versioned Breaks/Conflicts/Replaces + - [Config] x86 vars.* -- review versioned Breaks/Conflicts/Replaces + + -- Tim Gardner Wed, 09 Mar 2016 05:11:51 -0700 + +linux (4.4.0-12.28) xenial; urgency=low + + * Miscellaneous Ubuntu changes + - reconstruct: Work around orig tarball packaging limitiations + Fixes FTBS + + -- Tim Gardner Tue, 08 Mar 2016 13:26:08 -0700 + +linux (4.4.0-12.27) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1554704 + + * Fails to detect (second) display (LP: #1543683) + - drm/i915: Fix hpd live status bits for g4x + + * s390x -- various configuration changes (LP: #1543165) + - [Config] s390x -- enable CONFIG_NUMA + - [Config] s390x -- disable CONFIG_NET_VENDOR_EMULEX + - [Config] s390x -- disable CONFIG_NET_VENDOR_SYNOPSYS + - [Config] s390x -- disable CONFIG_NVMEM + - [Config] s390x -- switch preempt mode to none + + * Radeon hybrid graphics problem on resume (LP: #1554608) + - Revert "drm/radeon: call hpd_irq_event on resume" + + * Pull in upstream AMD code (amdgpu) in Xenial (LP: #1546572) + - [Config] CONFIG_DRM_AMD_POWERPLAY=y + - drm/amdgpu: use $(src) in Makefile (v2) + - drm/radeon: constify radeon_asic_ring structures + - drm/amdgpu: add a callback for reading the bios from the rom directly + - drm/amdgpu: add read_bios_from_rom callback for CI parts + - drm/amdgpu: add read_bios_from_rom callback for VI parts + - drm/amdgpu: Use new read bios from rom callback + - drm/amdgpu: Use unlocked gem unreferencing + - drm/radeon: Use unlocked gem unreferencing + - drm/amd: add new gfx8 register definitions for EDC + - drm/amdgpu: add EDC support for CZ (v3) + - drm/amd: abstract kernel rq and normal rq to priority of run queue + - drm/amdgpu/gfx8: Enable interrupt on ME1_PIPE3 + - drm/amdgpu/gfx8: update PA_SC_RASTER_CONFIG:PKR_MAP only + - drm/amdgpu: update rev id register for VI + - drm/amdgpu: add more debugging output for driver failures + - drm/amdgpu: add entity only when first job come + - drm/amdgpu: handle error case for ctx + - drm/amdgpu: unify AMDGPU_CTX_MAX_CS_PENDING and amdgpu_sched_jobs + - drm/amdgpu: change default sched jobs to 32 + - drm/amdgpu: limit visible vram if it's smaller than the BAR + - drm/amdgpu: restrict the sched jobs number to power of two + - drm/amdgpu: put VM page tables directly into duplicates list + - drm/amdgpu: split VM PD and PT handling during CS + - drm/amdgpu: keep the PTs validation list in the VM v2 + - drm/radeon: Update radeon_get_vblank_counter_kms() + - drm/radeon: only increment sync_seq when a fence is really emitted + - drm/fb-helper: Use proper plane mask for fb cleanup + - drm/amdgpu: fix dp link rate selection (v2) + - drm/radeon: fix dp link rate selection (v2) + - drm/amdgpu: share struct amdgpu_pm_state_type with powerplay module + - drm/amdgpu: mv some definition from amdgpu_acpi.c to amdgpu_acpi.h + - drm/amdgpu: mv amdgpu_acpi.h to amd/include/amd_acpi.h + - drm/amdgpu: implement new cgs interface for acpi function + - drm/amdgpu: implement cgs interface to query system info + - drm/amdgpu: add new cgs interface to get display info (v2) + - drm/amd/powerplay: add basic powerplay framework + - drm/amdgpu: disable legacy path of firmware check if powerplay is enabled + - drm/amdgpu: export amd_powerplay_func to amdgpu and other ip block + - drm/amd/powerplay: add SMU manager sub-component + - drm/amd/powerplay: add hardware manager sub-component + - SAUCE: amd: Include errno.h + - drm/amd/powerplay: add Carrizo smu support + - drm/amd/powerplay: add Carrizo dpm support + - drm/amd/powerplay: add CG and PG support for carrizo + - drm/amd/powerplay: add event manager sub-component + - drm/amd/powerplay: implement functions of amd_powerplay_func + - drm/amd/powerplay: Add ixSWRST_COMMAND_1 in bif_5_0_d.h + - drm/amd/powerplay: Move smu7*.h from amdgpu to powerplay. + - drm/amd/powerplay: add header file for tonga smu and dpm + - drm/amd/powerplay: Add Tonga SMU support + - drm/amd/powerplay: add Tonga dpm support (v3) + - drm/amd/powerplay: add/update headers for Fiji SMU and DPM + - drm/amd/powerplay: update atomctrl for fiji + - drm/amd/powerplay: add Fiji SMU support. + - drm/amd/powerplay: add Fiji DPM support. + - drm/amdgpu: add amdgpu.powerplay module option + - drm/amd/amdgpu: enable powerplay and smc firmware loading for Fiji. + - drm/amdgpu/powerplay: add function point in hwmgr_funcs for program display gap + - drm/amdgpu/poweprlay: export program display gap function to eventmgr + - drm/amdgpu/powerplay: implement pem_task for display_configuration_change + - drm/amdgpu/powerplay: program display gap for tonga. + - drm/amdgpu: enable powerplay module by default for tonga. + - drm/amdgpu: enable powerplay module by default for fiji. + - drm/amdgpu/powerplay: add some definition for other ip block to update cg pg. + - drm/amd/powerplay: add new function point in hwmgr_func for CG/PG. + - drm/amd/powerplay: Add CG and PG support for tonga + - drm/amdgpu/powerplay: add new function point in hwmgr_funcs for thermal control + - drm/amdgpu/powerplay: mv ppinterrupt.h to inc folder to share with other submodule. + - drm/amdgpu/powerplay: add thermal control interface in hwmgr. + - drm/amdgpu/powerplay: enable thermal interrupt task in eventmgr. + - drm/amdgpu/powerplay: implement thermal control for tonga. + - drm/amdgpu/powerplay: implement fan control interface in amd_powerplay_funcs + - drm/amdgpu: export fan control functions to amdgpu + - drm/amdgpu: enable sysfs interface for powerplay + - drm/amdgpu: support per device powerplay enablement (v2) + - drm/amd/powerplay: add and export hwmgr interface to eventmgr to check hw states. + - drm/amd/powerplay: implement new funcs to check current states for tonga. + - drm/amd/powerplay: refine the logic of whether need to update power state. + - drm/amd/powerplay/tonga: enable pcie and mclk forcing for low + - drm/amd/powerplay/fiji: enable pcie and mclk forcing for low + - drm/amdgpu: extract pcie helpers to common header + - drm: add drm_pcie_get_max_link_width helper (v2) + - drm/amdgpu: store pcie gen mask and link width + - drm/amdgpu/cgs: add sys info query for pcie gen and link width + - drm/amdgpu/powerplay/tonga: query supported pcie info from cgs (v2) + - drm/amdgpu/powerplay/fiji: query supported pcie info from cgs (v2) + - drm/amd/powerplay: fix boolreturn.cocci warnings + - drm/amd/powerplay/tonga: Add UVD DPM init + - drm/amd/amdgpu: add gfx clock gating support for Fiji. + - drm/amd/amdgpu: add gmc clock gating support for Fiji. + - drm/amdgpu: add sdma clock gating support for Fiji. + - drm/amd/powerplay: add parts of system clock gating support for Fiji. (v2) + - drm/amd/powerplay: enable clock gating for Fiji. + - drm/amd/powerplay: add atomctrl function to calculate CZ sclk dividers + - drm/amd/powerplay: implement smc state upload for CZ + - drm/amd/powerplay: fix warning of cast to pointer from integer of different size. + - drm/amd/powerplay: fix warning of cast to pointer from integer of different size. + - drm/amd/powerplay: add new function point in hwmgr. + - drm/amd/powerplay: add smc msg for NB P-State switch + - drm/amd/powerplay: export interface to DAL to init/change display configuration. + - drm/amd/powerplay: enable set_cpu_power_state task. (v2) + - drm/amd/powerplay: enable/disable NB pstate feature for Carrizo. + - drm/amd/powerplay: Add PPLib debug print macro. + - drm/amdgpu: rename tonga_smumgr.h to tonga_smum.h + - drm/amdgpu: rename fiji_smumgr.h to fiji_smum.h + - drm/amd/powerplay: add multimedia power gating support for Fiji. + - drm/amd/amdgpu: add uvd6.0 clock gating support. (v2) + - drm/amd/amdgpu: add vce3.0 clock gating support. (v2) + - drm/amd/amdgpu: enable uvd&vce clock gating for Fiji. + - drm/amdgpu: Prepare DKMS build for powerplay module. + - drm/amd/powerplay: add display configeration changed function in hwmgr for Fiji. + - drm/amd/powerplay: Add thermal protection support for Fiji. + - drm/amd/powerplay: Fix a bug in fan control setting default mode for Tonga and Fiji. + - drm/amd/powerplay: add functions set/get_fan_control_mode in hwmgr for Tonga. + - drm/amd/powerplay: add functions set/get_fan_control_mode in hwmgr for Fiji. + - drm/amd/powerplay: fix boolreturn.cocci warnings + - drm/amd/powerplay: fix bug that dpm funcs in debugfs/sysfs missing. + - drm/amd/powerplay: check whether enable dpm in powerplay. + - drm/amd/powerplay: move shared function of vi to hwmgr. (v2) + - drm/amdgpu/powerplay: enable sysfs and debugfs interfaces late + - drm/amd/powerplay: display gpu load when print performance for tonga. + - drm/powerplay: add debugging output to tonga_processpptables.c + - drm/powerplay: add debugging output to processpptables.c + - drm/powerplay/hwmgr: log errors in tonga_hwmgr_backend_init + - drm/amd/powerplay: Don't return an error if fan table is missing + - amd\powerplay Implement get dal power level + - amd/powerplay: Fix get dal power level + - amd/powerplay: Add structures required to report configuration change + - drm/amdgpu/powerplay: Program a calculated value as Deep Sleep clock. + - drm/amd/powerplay: add point check to avoid NULL point hang. + - drm/amd/powerplay: check whether need to enable thermal control. (v2) + - drm/amd/powerplay: show gpu load when print gpu performance for Cz. (v2) + - drm: powerplay: use div64_s64 instead of do_div + - drm/amd/powerplay: fix a reversed condition + - drm/amdgpu/cgs: cleanup some indenting + - drm/amd/powerplay: precedence bug in init_non_clock_fields() + - drm/amdgpu: fix NULL in vm_grab_id while S3 back + - drm/amd/powerplay: fix bug that NULL checks are reversed. + - drm/amd/powerplay: fix Smatch static checker warnings with indenting (v2) + - drm/amd/powerplay: fix Smatch static checker warnings + - drm/amd/powerplay: add powerplay valid check to avoid null point. (v2) + - drm/amd/powerplay: Reload and initialize the smc firmware on powerplay resume. + - drm/amdgpu: Show gpu load when display gpu performance for Ci. + - drm/amdgpu: Show gpu load when display gpu performance for Fiji of VI. + - drm/amdgpu: fix hex/decimal bug when show gpu load. + - drm/amd/powerplay: add thermal control task when resume. + - drm/amd/powerplay: enable set boot state task + - drm/amd/powerplay: enable power down asic task. (v2) + - drm/amd/powerplay: implement power down asic task for CZ + - drm/amdgpu: add warning to amdgpu_bo_gpu_offset() v2 + - drm/amdgpu/cgs: add an interface to access PCI resources + - drm/amdgpu: add irq domain support + - drm/amdgpu/powerplay: include asm/div64.h for do_div() + - drm/sysfs: use kobj_to_dev() + - drm/amd/powerplay: fix static checker warning for return meaningless value. + - drm/amdgpu/cz: add code to enable forcing UVD clocks + - drm/amdgpu/cz: add code to enable forcing VCE clocks + - drm/amdgpu/cz: force uvd clocks when sclks are forced + - drm/amdgpu/cz: force vce clocks when sclks are forced + - drm/amdgpu: use kobj_to_dev() + - drm/radeon: use kobj_to_dev() + - drm/ttm: fix adding foreign BOs to the LRU during init v2 + - drm/ttm: fix adding foreign BOs to the swap LRU + - drm/ttm: add ttm_bo_move_to_lru_tail function v2 + - drm/amdgpu: move VM page tables to the LRU end on CS v2 + - drm/amdgpu: validate duplicates first + - drm/amdgpu: add missing irq.h include + - drm/fb_cma_helper: Remove implicit call to disable_unused_functions + - drm/amdgpu: Add some tweaks to gfx 8 soft reset + - amdkfd: don't open-code memdup_user() + - amdkfd: Copy from the proper user command pointer + - drm/amdgpu: Use drm_calloc_large for VM page_tables array + - amd/powerplay: disable powerplay by default initially + - drm/amdgpu: Allow the driver to load if amdgpu.powerplay=1 on asics without powerplay support + - drm/atomic-helper: Export framebuffer_changed() + - drm/amd/amdgpu: Improve amdgpu_dpm* macros to avoid unexpected result (v2) + - drm/amdgpu: add a message to indicate when powerplay is enabled (v2) + - drm/amdgpu: fix next_rptr handling for debugfs + - drm/radeon: Ensure radeon bo is unreserved in radeon_gem_va_ioctl + - drm/radeon: only init fbdev if we have connectors + - drm/amdgpu: don't init fbdev if we don't have any connectors + - drm/amd/powerplay: Update SMU firmware loading for Stoney + - drm/amdgpu: fix non-ANSI declaration of amdgpu_amdkfd_gfx_*_get_functions() + - drm/amdkfd: Remove unnecessary cast in kfree + - drm/amdgpu: only move pt bos in LRU list on success + - drm/amdgpu: mask out WC from BO on unsupported arches + - drm/amdgpu/gfx8: enable cp inst/reg error interrupts + - drm/amdgpu/gfx7: enable cp inst/reg error interrupts + - drm/amdgpu: load MEC ucode manually on iceland + - drm/amdgpu: disable uvd and vce clockgating on Fiji + - drm/amdgpu: add pcie cap module parameters (v2) + - drm/amdgpu/cik: don't mess with aspm if gpu is root bus + - drm/amdgpu/dpm/ci: switch over to the common pcie caps interface + - drm/amdgpu: handle uvd pg flags properly + - drm/amdgpu: handle vce pg flags properly + - drm/amdgpu: clean up vce pg flags for cz/st + - drm/amdgpu: be consistent with uvd cg flags + - drm/amd/powerplay/cz: disable uvd pg + - drm/amd/powerplay/cz: disable vce pg + - drm/amd/powerplay/tonga: disable uvd pg + - drm/amd/powerplay/tonga: disable vce pg + - drm/amdgpu: add a cgs interface to fetch cg and pg flags + - drm/amdgpu: remove unused cg defines + - drma/dmgpu: move cg and pg flags into shared headers + - drm/amdgpu/tonga: plumb pg flags through to powerplay + - drm/amdgpu/cz: plumb pg flags through to powerplay + - SAUCE: drm/amdgpu/cz: enable/disable vce dpm even if vce pg is disabled + + * mlx4_core Set UAR page size to 4KB regardless of system page size (LP: + #1552632) + - net/mlx4_core: Set UAR page size to 4KB regardless of system page size + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_CAVIUM_ERRATUM_27456=y + + * Miscellaneous upstream changes + - net: thunderx: Fix for Qset error due to CQ full + - ahci: Workaround for ThunderX Errata#22536 + - arm64: Add workaround for Cavium erratum 27456 + - tipc: fix nullptr crash during subscription cancel + + -- Tim Gardner Mon, 07 Mar 2016 05:04:22 -0700 + +linux (4.4.0-11.26) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1553391 + + * Xenial update to v4.4.4 stable release (LP: #1553179) + - af_iucv: Validate socket address length in iucv_sock_bind() + - gro: Make GRO aware of lightweight tunnels. + - net: dp83640: Fix tx timestamp overflow handling. + - tunnels: Allow IPv6 UDP checksums to be correctly controlled. + - lwt: fix rx checksum setting for lwt devices tunneling over ipv6 + - tcp: fix NULL deref in tcp_v4_send_ack() + - af_unix: fix struct pid memory leak + - pptp: fix illegal memory access caused by multiple bind()s + - sctp: allow setting SCTP_SACK_IMMEDIATELY by the application + - net: dsa: fix mv88e6xxx switches + - tipc: fix connection abort during subscription cancel + - inet: frag: Always orphan skbs inside ip_defrag() + - switchdev: Require RTNL mutex to be held when sending FDB notifications + - tcp: beware of alignments in tcp_get_info() + - ipv6: enforce flowi6_oif usage in ip6_dst_lookup_tail() + - ipv6/udp: use sticky pktinfo egress ifindex on connect() + - ipv6: addrconf: Fix recursive spin lock call + - ipv6: fix a lockdep splat + - unix: correctly track in-flight fds in sending process user_struct + - tcp: do not drop syn_recv on all icmp reports + - net:Add sysctl_max_skb_frags + - tg3: Fix for tg3 transmit queue 0 timed out when too many gso_segs + - enic: increment devcmd2 result ring in case of timeout + - sctp: translate network order to host order when users get a hmacid + - net: Copy inner L3 and L4 headers as unaligned on GRE TEB + - flow_dissector: Fix unaligned access in __skb_flow_dissector when used by + eth_get_headlen + - bpf: fix branch offset adjustment on backjumps after patching ctx expansion + - bonding: Fix ARP monitor validation + - ipv4: fix memory leaks in ip_cmsg_send() callers + - af_unix: Don't set err in unix_stream_read_generic unless there was an error + - af_unix: Guard against other == sk in unix_dgram_sendmsg + - tipc: fix premature addition of node to lookup table + - tcp: md5: release request socket instead of listener + - qmi_wwan: add "4G LTE usb-modem U901" + - net/mlx4_en: Count HW buffer overrun only once + - net/mlx4_en: Avoid changing dev->features directly in run-time + - l2tp: Fix error creating L2TP tunnels + - pppoe: fix reference counting in PPPoE proxy + - net_sched fix: reclassification needs to consider ether protocol changes + - route: check and remove route cache when we get route + - tcp/dccp: fix another race at listener dismantle + - IFF_NO_QUEUE: Fix for drivers not calling ether_setup() + - rtnl: RTM_GETNETCONF: fix wrong return value + - tipc: unlock in error path + - unix_diag: fix incorrect sign extension in unix_lookup_by_ino + - sctp: Fix port hash table size computation + - ext4: fix bh->b_state corruption + - ARM: debug-ll: fix BCM63xx entry for multiplatform + - arm64: errata: Add -mpc-relative-literal-loads to build flags + - KVM: s390: fix guest fprs memory leak + - devm_memremap: Fix error value when memremap failed + - drm/gma500: Use correct unref in the gem bo create function + - ARM: 8457/1: psci-smp is built only for SMP + - lib/ucs2_string: Add ucs2 -> utf8 helper functions + - efi: Use ucs2_as_utf8 in efivarfs instead of open coding a bad version + - efi: Do variable name validation tests in utf8 + - efi: Make our variable validation list include the guid + - efi: Make efivarfs entries immutable by default + - efi: Add pstore variables to the deletion whitelist + - lib/ucs2_string: Correct ucs2 -> utf8 conversion + - bcache: fix a livelock when we cause a huge number of cache misses + - bcache: Add a cond_resched() call to gc + - bcache: clear BCACHE_DEV_UNLINK_DONE flag when attaching a backing device + - bcache: fix a leak in bch_cached_dev_run() + - bcache: unregister reboot notifier if bcache fails to unregister device + - bcache: allows use of register in udev to avoid "device_busy" error. + - bcache: Change refill_dirty() to always scan entire disk if necessary + - dm thin: fix race condition when destroying thin pool workqueue + - can: ems_usb: Fix possible tx overflow + - usb: dwc3: Fix assignment of EP transfer resources + - USB: cp210x: add IDs for GE B650V3 and B850V3 boards + - USB: option: add support for SIM7100E + - USB: option: add "4G LTE usb-modem U901" + - drivers: android: correct the size of struct binder_uintptr_t for + BC_DEAD_BINDER_DONE + - spi: omap2-mcspi: Prevent duplicate gpio_request + - iw_cxgb3: Fix incorrectly returning error on success + - drm/i915: shut up gen8+ SDE irq dmesg noise + - ocfs2: unlock inode if deleting inode from orphan fails + - mm: thp: fix SMP race condition between THP page fault and MADV_DONTNEED + - mm: numa: quickly fail allocations for NUMA balancing on full nodes + - genirq: Validate action before dereferencing it in handle_irq_event_percpu() + - clocksource/drivers/vt8500: Increase the minimum delta + - s390/kvm: remove dependency on struct save_area definition + - KVM: s390: fix memory overwrites when vx is disabled + - Btrfs: add missing brelse when superblock checksum fails + - Btrfs: igrab inode in writepage + - btrfs: statfs: report zero available if metadata are exhausted + - Btrfs: send, don't BUG_ON() when an empty symlink is found + - Btrfs: fix number of transaction units required to create symlink + - Btrfs: fix transaction handle leak on failure to create hard link + - Btrfs: Initialize btrfs_root->highest_objectid when loading tree root and + subvolume roots + - btrfs: initialize the seq counter in struct btrfs_device + - s390: fix normalization bug in exception table sorting + - s390/dasd: prevent incorrect length error under z/VM after PAV changes + - s390/dasd: fix refcount for PAV reassignment + - s390/dasd: fix performance drop + - uml: flush stdout before forking + - uml: fix hostfs mknod() + - um: link with -lpthread + - locks: fix unlock when fcntl_setlk races with a close + - rtlwifi: rtl_pci: Fix kernel panic + - rtlwifi: rtl8192cu: Add missing parameter setup + - rtlwifi: rtl8192ce: Fix handling of module parameters + - rtlwifi: rtl8192de: Fix incorrect module parameter descriptions + - rtlwifi: rtl8723ae: Fix initialization of module parameters + - rtlwifi: rtl8192se: Fix module parameter initialization + - rtlwifi: rtl8188ee: Fix module parameter initialization + - rtlwifi: rtl8723be: Fix module parameter initialization + - mei: fix fasync return value on error + - mei: validate request value in client notify request ioctl + - namei: ->d_inode of a pinned dentry is stable only for positives + - rc: sunxi-cir: Initialize the spinlock properly + - media: dvb-core: Don't force CAN_INVERSION_AUTO in oneshot mode + - si2157: return -EINVAL if firmware blob is too big + - gspca: ov534/topro: prevent a division by 0 + - vb2: fix a regression in poll() behavior for output,streams + - tda1004x: only update the frontend properties if locked + - dm space map metadata: remove unused variable in brb_pop() + - dm snapshot: fix hung bios when copy error occurs + - dm: fix dm_rq_target_io leak on faults with .request_fn DM w/ blk-mq paths + - coresight: checking for NULL string in coresight_name_match() + - irqchip/omap-intc: Add support for spurious irq handling + - irqchip/mxs: Add missing set_handle_irq() + - irqchip/atmel-aic: Fix wrong bit operation for IRQ priority + - irqchip/gic-v3-its: Fix double ICC_EOIR write for LPI in EOImode==1 + - posix-clock: Fix return code on the poll method's error path + - clockevents/tcb_clksrc: Prevent disabling an already disabled clock + - mmc: usdhi6rol0: handle NULL data in timeout + - mmc: sdhci-pci: Do not default to 33 Ohm driver strength for Intel SPT + - mmc: sdio: Fix invalid vdd in voltage switch power cycle + - mmc: mmc: Fix incorrect use of driver strength switching HS200 and HS400 + - mmc: sdhci: Fix sdhci_runtime_pm_bus_on/off() + - mmc: core: Enable tuning according to the actual timing + - mmc: mmci: fix an ages old detection error + - mmc: sdhci-acpi: Fix card detect race for Intel BXT/APL + - mmc: pxamci: fix again read-only gpio detection polarity + - mmc: sdhci-pci: Fix card detect race for Intel BXT/APL + - mmc: sdhci: Allow override of mmc host operations + - mmc: sdhci: Allow override of get_cd() called from sdhci_request() + - Bluetooth: Use continuous scanning when creating LE connections + - Bluetooth: Add support of Toshiba Broadcom based devices + - Bluetooth: Fix incorrect removing of IRKs + - Bluetooth: 6lowpan: Fix kernel NULL pointer dereferences + - Bluetooth: 6lowpan: Fix handling of uncompressed IPv6 packets + - time: Avoid signed overflow in timekeeping_get_ns() + - cputime: Prevent 32bit overflow in time[val|spec]_to_cputime() + - Revert "MIPS: Fix PAGE_MASK definition" + - MIPS: Loongson-3: Fix SMP_ASK_C0COUNT IPI handler + - MIPS: hpet: Choose a safe value for the ETIME check + - MIPS: Fix some missing CONFIG_CPU_MIPSR6 #ifdefs + - MIPS: Fix buffer overflow in syscall_get_arguments() + - EDAC: Robustify workqueues destruction + - EDAC, mc_sysfs: Fix freeing bus' name + - sparc64: fix incorrect sign extension in sys_sparc64_personality + - clk: exynos: use irqsave version of spin_lock to avoid deadlock with irqs + - regulator: axp20x: Fix GPIO LDO enable value for AXP22x + - regulator: mt6311: MT6311_REGULATOR needs to select REGMAP_I2C + - virtio_balloon: fix race by fill and leak + - virtio_balloon: fix race between migration and ballooning + - virtio_pci: fix use after free on release + - drm/vmwgfx: Fix an incorrect lock check + - drm/vmwgfx: Fix a width / pitch mismatch on framebuffer updates + - drm/vmwgfx: respect 'nomodeset' + - drm/amdgpu: Fix off-by-one errors in amdgpu_vm_bo_map + - drm/amdgpu: call hpd_irq_event on resume + - drm/amdgpu: fix lost sync_to if scheduler is enabled. + - drm/amdgpu: fix tonga smu resume + - drm/amdgpu: fix amdgpu_bo_pin_restricted VRAM placing v2 + - drm/amdgpu: no need to load MC firmware on fiji + - drm/amdgpu: move gmc7 support out of CIK dependency + - drm/amdgpu: iceland use CI based MC IP + - drm/amdgpu: The VI specific EXE bit should only apply to GMC v8.0 above + - drm/amdgpu: pull topaz gmc bits into gmc_v7 + - drm/amdgpu: drop topaz support from gmc8 module + - drm/amdgpu: don't load MEC2 on topaz + - drm/amdgpu: remove exp hardware support from iceland + - drm/amdgpu: fix s4 resume + - drm/amdgpu: remove unnecessary forward declaration + - drm/amdgpu: hold reference to fences in amdgpu_sa_bo_new (v2) + - drm/amdgpu: fix issue with overlapping userptrs + - drm/amdgpu: use post-decrement in error handling + - drm/amdgpu: Don't hang in amdgpu_flip_work_func on disabled crtc. + - drm/amdgpu/pm: adjust display configuration after powerstate + - drm/nouveau/kms: take mode_config mutex in connector hotplug path + - drm/nouveau/display: Enable vblank irqs after display engine is on again. + - drm/nouveau/disp/dp: ensure sink is powered up before attempting link + training + - drm/nouveau: platform: Fix deferred probe + - drm/dp/mst: process broadcast messages correctly + - drm/dp/mst: always send reply for UP request + - drm/dp/mst: fix in MSTB RAD initialization + - drm/dp/mst: fix in RAD element access + - drm: Add drm_fixp_from_fraction and drm_fixp2int_ceil + - drm/dp/mst: Calculate MST PBN with 31.32 fixed point + - drm/dp/mst: move GUID storage from mgr, port to only mst branch + - drm/dp/mst: Reverse order of MST enable and clearing VC payload table. + - drm/dp/mst: deallocate payload on port destruction + - drm/radeon: Fix off-by-one errors in radeon_vm_bo_set_addr + - drm/radeon: call hpd_irq_event on resume + - drm/radeon: Fix "slow" audio over DP on DCE8+ + - drm/radeon: clean up fujitsu quirks + - drm/radeon: properly byte swap vce firmware setup + - drm/radeon: cleaned up VCO output settings for DP audio + - drm/radeon: Add a common function for DFS handling + - drm/radeon: fix DP audio support for APU with DCE4.1 display engine + - drm: add helper to check for wc memory support + - drm/radeon: mask out WC from BO on unsupported arches + - drm/radeon: hold reference to fences in radeon_sa_bo_new + - drm: fix missing reference counting decrease + - drm/i915: Restore inhibiting the load of the default context + - drm/i915: intel_hpd_init(): Fix suspend/resume reprobing + - drm/i915: Init power domains early in driver load + - drm/i915: Make sure DC writes are coherent on flush. + - drm/i915/dp: fall back to 18 bpp when sink capability is unknown + - drm/i915: Don't reject primary plane windowing with color keying enabled on + SKL+ + - drm/i915/skl: Don't skip mst encoders in skl_ddi_pll_select() + - drm/i915/dsi: defend gpio table against out of bounds access + - drm/i915/dsi: don't pass arbitrary data to sideband + - drm/i915: fix error path in intel_setup_gmbus() + - drm/qxl: use kmalloc_array to alloc reloc_info in qxl_process_single_command + - drm/radeon: use post-decrement in error handling + - drm: No-Op redundant calls to drm_vblank_off() (v2) + - drm: Prevent vblank counter bumps > 1 with active vblank clients. (v2) + - drm: Fix drm_vblank_pre/post_modeset regression from Linux 4.4 + - drm: Fix treatment of drm_vblank_offdelay in drm_vblank_on() (v2) + - drm/radeon: Don't hang in radeon_flip_work_func on disabled crtc. (v2) + - drm/radeon/pm: adjust display configuration after powerstate + - make sure that freeing shmem fast symlinks is RCU-delayed + - toshiba_acpi: Fix blank screen at boot if transflective backlight is + supported + - ideapad-laptop: Add Lenovo ideapad Y700-17ISK to no_hw_rfkill dmi list + - ideapad-laptop: Add Lenovo Yoga 700 to no_hw_rfkill dmi list + - uapi: update install list after nvme.h rename + - lib: sw842: select crc32 + - ACPI / video: Add disable_backlight_sysfs_if quirk for the Toshiba Portege + R700 + - ACPI / video: Add disable_backlight_sysfs_if quirk for the Toshiba Satellite + R830 + - ACPI: Revert "ACPI / video: Add Dell Inspiron 5737 to the blacklist" + - ACPI / PCI / hotplug: unlock in error path in acpiphp_enable_slot() + - nfit: fix multi-interface dimm handling, acpi6.1 compatibility + - dmaengine: dw: fix cyclic transfer setup + - dmaengine: dw: fix cyclic transfer callbacks + - dmaengine: at_xdmac: fix resume for cyclic transfers + - dmaengine: dw: disable BLOCK IRQs for non-cyclic xfer + - IB/cm: Fix a recently introduced deadlock + - IB/qib: fix mcast detach when qp not attached + - IB/qib: Support creating qps with GFP_NOIO flag + - IB/mlx5: Expose correct maximum number of CQE capacity + - Thermal: initialize thermal zone device correctly + - Thermal: handle thermal zone device properly during system sleep + - Thermal: do thermal zone update after a cooling device registered + - hwmon: (dell-smm) Blacklist Dell Studio XPS 8000 + - hwmon: (gpio-fan) Remove un-necessary speed_index lookup for thermal hook + - hwmon: (ads1015) Handle negative conversion values correctly + - cpufreq: pxa2xx: fix pxa_cpufreq_change_voltage prototype + - cpufreq: Fix NULL reference crash while accessing policy->governor_data + - seccomp: always propagate NO_NEW_PRIVS on tsync + - libceph: fix ceph_msg_revoke() + - libceph: don't bail early from try_read() when skipping a message + - libceph: use the right footer size when skipping a message + - libceph: don't spam dmesg with stray reply warnings + - sd: Optimal I/O size is in bytes, not sectors + - Staging: speakup: Fix getting port information + - Revert "Staging: panel: usleep_range is preferred over udelay" + - cdc-acm:exclude Samsung phone 04e8:685d + - perf stat: Do not clean event's private stats + - tick/nohz: Set the correct expiry when switching to nohz/lowres mode + - rfkill: fix rfkill_fop_read wait_event usage + - mac80211: Requeue work after scan complete for all VIF types. + - workqueue: handle NUMA_NO_NODE for unbound pool_workqueue lookup + - Revert "workqueue: make sure delayed work run in local cpu" + - ALSA: hda - Apply clock gate workaround to Skylake, too + - ALSA: hda - Fixing background noise on Dell Inspiron 3162 + - target: Fix LUN_RESET active I/O handling for ACK_KREF + - target: Fix LUN_RESET active TMR descriptor handling + - target: Fix TAS handling for multi-session se_node_acls + - target: Fix remote-port TMR ABORT + se_cmd fabric stop + - target: Fix race with SCF_SEND_DELAYED_TAS handling + - spi: atmel: fix gpio chip-select in case of non-DT platform + - libata: fix sff host state machine locking while polling + - ARCv2: STAR 9000950267: Handle return from intr to Delay Slot #2 + - ARCv2: SMP: Emulate IPI to self using software triggered interrupt + - PCI/AER: Flush workqueue on device remove to avoid use-after-free + - cpuset: make mm migration asynchronous + - cgroup: make sure a parent css isn't offlined before its children + - writeback: keep superblock pinned during cgroup writeback association + switches + - phy: core: fix wrong err handle for phy_power_on + - i2c: i801: Adding Intel Lewisburg support for iTCO + - bio: return EINTR if copying to user space got interrupted + - block: fix use-after-free in dio_bio_complete + - nfs: fix nfs_size_to_loff_t + - NFSv4: Fix a dentry leak on alias use + - of/irq: Fix msi-map calculation for nonzero rid-base + - KVM: async_pf: do not warn on page allocation failures + - KVM: arm/arm64: vgic: Ensure bitmaps are long enough + - KVM: x86: fix missed hardware breakpoints + - KVM: x86: MMU: fix ubsan index-out-of-range warning + - powerpc/eeh: Fix partial hotplug criterion + - tracing: Fix showing function event in available_events + - sunrpc/cache: fix off-by-one in qword_get() + - kernel/resource.c: fix muxed resource handling in __request_region() + - do_last(): don't let a bogus return value from ->open() et.al. to confuse us + - ARM: OMAP2+: Fix onenand initialization to avoid filesystem corruption + - ARM: at91/dt: fix typo in sama5d2 pinmux descriptions + - xen/arm: correctly handle DMA mapping of compound pages + - xen/scsiback: correct frontend counting + - xen/pciback: Check PF instead of VF for PCI_COMMAND_MEMORY + - xen/pciback: Save the number of MSI-X entries to be copied later. + - xen/pcifront: Fix mysterious crashes when NUMA locality information was + extracted. + - should_follow_link(): validate ->d_seq after having decided to follow + - do_last(): ELOOP failure exit should be done after leaving RCU mode + - hpfs: don't truncate the file when delete fails + - x86/irq: Call chip->irq_set_affinity in proper context + - x86/irq: Fix a race in x86_vector_free_irqs() + - x86/irq: Validate that irq descriptor is still active + - x86/irq: Do not use apic_chip_data.old_domain as temporary buffer + - x86/irq: Reorganize the return path in assign_irq_vector + - x86/irq: Reorganize the search in assign_irq_vector + - x86/irq: Check vector allocation early + - x86/irq: Copy vectormask instead of an AND operation + - x86/irq: Get rid of code duplication + - x86/irq: Remove offline cpus from vector cleanup + - x86/irq: Clear move_in_progress before sending cleanup IPI + - x86/irq: Remove the cpumask allocation from send_cleanup_vector() + - x86/irq: Remove outgoing CPU from vector cleanup mask + - x86/irq: Call irq_force_move_complete with irq descriptor + - x86/irq: Plug vector cleanup race + - IB/cma: Fix RDMA port validation for iWarp + - iwlwifi: dvm: fix WoWLAN + - iwlwifi: pcie: properly configure the debug buffer size for 8000 + - iwlwifi: update and fix 7265 series PCI IDs + - iwlwifi: mvm: don't allow sched scans without matches to be started + - Revert "UBUNTU: SAUCE: bcache: prevent crash on changing writeback_running" + - bcache: prevent crash on changing writeback_running + - Linux 4.4.4 + + * mlx4_en didn't choose time-stamping shift value according to HW frequency + (LP: #1552627) + - net/mlx4_en: Choose time-stamping shift value according to HW frequency + + * [Ubuntu 16.04] Help to flush kernel panics to console (LP: #1552332) + - target/transport: add flag to indicate CPU Affinity is observed + - powerpc/powernv: Add a kmsg_dumper that flushes console output on panic + - powerpc/powernv: Fix OPAL_CONSOLE_FLUSH prototype and usages + + * [Ubuntu 16.04] Update qla2xxx driver for POWER (QLogic) (LP: #1541456) + - qla2xxx: Fix warning reported by static checker + - qla2xxx: Fix TMR ABORT interaction issue between qla2xxx and TCM + - qla2xxx: Fix stale pointer access. + - qla2xxx: Use ATIO type to send correct tmr response + - qla2xxx: use TARGET_SCF_USE_CPUID flag to indiate CPU Affinity + + * [s390x] zfcp.ko missing from scsi-modules udeb (LP: #1552314) + - [Config] Add s390x zfcp to scsi-modules udeb + + -- Tim Gardner Wed, 02 Mar 2016 08:08:16 -0700 + +linux (4.4.0-10.25) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1552247 + + * linux: 4.4.0-9.X fails yama ptrace restrictions tests (LP: #1551894) + - security: let security modules use PTRACE_MODE_* with bitmasks + + * [wily][regression] systemtap script compilation broken by new kernels (LP: #1545330) + - SAUCE: (noup) locking/qspinlock: Move __ARCH_SPIN_LOCK_UNLOCKED to qspinlock_types.h + + * [Feature]SD/SDIO/eMMC support for Broxton-P (LP: #1520454) + - mmc: sdhci: 64-bit DMA actually has 4-byte alignment + - mmc: sdhci: Fix DMA descriptor with zero data length + + * Miscellaneous Ubuntu changes + - SAUCE: (noup) cgroup: fix and restructure error handling in copy_cgroup_ns() + + -- Tim Gardner Mon, 29 Feb 2016 13:04:14 -0700 + +linux (4.4.0-9.24) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1551319 + + * AppArmor logs denial for when the device path is ENOENT (LP: #1482943) + - SAUCE: apparmor: fix log of apparmor audit message when kern_path() fails + + * BUG: unable to handle kernel NULL pointer dereference (aa_label_merge) (LP: + #1448912) + - SAUCE: apparmor: Fix: insert race between label_update and label_merge + - SAUCE: apparmor: Fix: ensure aa_get_newest will trip debugging if the + replacedby is not setup + - SAUCE: apparmor: Fix: label merge handling of marking unconfined and stale + - SAUCE: apparmor: Fix: refcount race between locating in labelset and get + - SAUCE: apparmor: Fix: ensure new labels resulting from merge have a + replacedby + - SAUCE: apparmor: Fix: label_vec_merge insertion + - SAUCE: apparmor: Fix: deadlock in aa_put_label() call chain + - SAUCE: apparmor: Fix: add required locking of __aa_update_replacedby on + merge path + - SAUCE: apparmor: Fix: convert replacedby update to be protected by the + labelset lock + - SAUCE: apparmor: Fix: update replacedby allocation to take a gfp parameter + + * apparmor kernel BUG kills firefox (LP: #1430546) + - SAUCE: apparmor: Disallow update of cred when then subjective != the + objective cred + - SAUCE: apparmor: rework retrieval of the current label in the profile update + case + + * sleep from invalid context in aa_move_mount (LP: #1539349) + - SAUCE: apparmor: fix sleep from invalid context + + * s390x: correct restore of high gprs on signal return (LP: #1550468) + - s390/compat: correct restore of high gprs on signal return + + * missing SMAP support (LP: #1550517) + - x86/entry/compat: Add missing CLAC to entry_INT80_32 + + * Floating-point exception handler receives empty Data-Exception Code in + Floating Point Control register (LP: #1548414) + - s390/fpu: signals vs. floating point control register + + * kvm fails to boot GNU Hurd kernels with 4.4 Xenial kernel (LP: #1550596) + - KVM: x86: fix conversion of addresses to linear in 32-bit protected mode + + * Surelock GA2 SP1: capiredp01: cxl_init_adapter fails for CAPI devices + 0000:01:00.0 and 0005:01:00.0 after upgrading to 840.10 Platform firmware + build fips840/b1208b_1604.840 (LP: #1532914) + - cxl: Fix PSL timebase synchronization detection + + * [Feature]EDAC support for Knights Landing (LP: #1519631) + - EDAC, sb_edac: Set fixed DIMM width on Xeon Knights Landing + + * Various failures of kernel_security suite on Xenial kernel on s390x arch + (LP: #1531327) + - [config] s390x -- CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 + + * Unable to install VirtualBox Guest Service in 15.04 (LP: #1434579) + - [Config] Provides: virtualbox-guest-modules when appropriate + + * linux is missing provides for virtualbox-guest-modules [i386 amd64 x32] (LP: + #1507588) + - [Config] Provides: virtualbox-guest-modules when appropriate + + * Backport more recent driver for SKL, KBL and BXT graphics (LP: #1540390) + - SAUCE: i915_bpo: Provide a backport driver for SKL, KBL & BXT graphics + - SAUCE: i915_bpo: Update intel_ips.h file location + - SAUCE: i915_bpo: Rename the backport driver to i915_bpo + - SAUCE: i915_bpo: Add i915_bpo_*() calls for ubuntu/i915 + - drm/i915: remove an extra level of indirection in PCI ID list + - drm/i915/kbl: Add Kabylake PCI ID + - drm/i915/kbl: Add Kabylake GT4 PCI ID + - mm: Export nr_swap_pages + - async: export current_is_async() + - drm: fix potential dangling else problems in for_each_ macros + - dp/mst: add SDP stream support + - drm: Implement drm_modeset_lock_all_ctx() + - drm: Add "prefix" parameter to drm_rect_debug_print() + - drm/i915: Set connector_state->connector using the helper. + - drm/atomic: add connector mask to drm_crtc_state. + - drm/i915: Report context GTT size + - drm/i915: Add get_eld audio component + - SAUCE: Backport I915_PARAM_HAS_EXEC_SOFTPIN and EXEC_OBJECT_PINNED + - SAUCE: i915_bpo: Revert passing plane/encoder name + - SAUCE: sound/hda: Load i915_bpo from the hda driver on SKL/KBL/BXT + - SAUCE: i915_bpo: Support only SKL, KBL and BXT with the backport driver + - drm/i915/bxt: update list of PCIIDs + - drm/i915/skl: Add missing SKL ids + - SAUCE: i915_bpo: Revert "drm/i915: Defer probe if gmux is present but its + driver isn't" + - SAUCE: uapi/drm/i915: Backport I915_EXEC_BSD_MASK + - drm/atomic: Do not unset crtc when an encoder is stolen + - drm/i915: Update connector_mask during readout, v2. + - drm/atomic: Add encoder_mask to crtc_state, v3. + - SAUCE: drm/core: Add drm_encoder_index. + - SAUCE: i915_bpo: Revert "drm/i915: Switch DDC when reading the EDID" + - i915_bpo: [Config] Enable CONFIG_DRM_I915_BPO=m + + * arm64: guest hangs when ntpd is running (LP: #1549494) + - hrtimer: Add support for CLOCK_MONOTONIC_RAW + - hrtimer: Catch illegal clockids + - KVM: arm/arm64: timer: Switch to CLOCK_MONOTONIC_RAW + + * Miscellaneous Ubuntu changes + - [Debian] git-ubuntu-log -- wrap long bug and commit titles + - [Config] CONFIG_ARM_SMMU=y on arm64 + - rebase to v4.4.3 + - [Debian] git-ubuntu-log -- ensure we get the last commit + - [Config] fix up spelling of probably again + - [Debian] perf -- build in the context of the full generated local headers + - SAUCE: tools: lib/bpf -- add generated headers to search path + - SAUCE: proc: Always set super block owner to init_user_ns + - SAUCE: fix-up: kern_mount fail path should not be doing put_buffers() + - SAUCE: apparmor: Fix: oops do to invalid null ptr deref in label print fns + - SAUCE: apparmor: debug: POISON label and replaceby pointer on free + - SAUCE: apparmor: add underscores to indicate aa_label_next_not_in_set() use + needs locking + - SAUCE: apparmor: Fix: refcount leak in aa_label_merge + - SAUCE: apparmor: ensure that repacedby sharing is done correctly + - SAUCE: apparmor Fix: refcount bug in pivotroot mediation + - SAUCE: apparmor: Fix: now that insert can force replacement use it instead + of remove_and_insert + - SAUCE: apparmor: Fix: refcount bug when inserting label update that + transitions ns + - SAUCE: apparmor: Fix: break circular refcount for label that is directly + freed. + - SAUCE: apparmor: Don't remove label on rcu callback if the label has already + been removed + - SAUCE: apparmor: Fix: query label file permission + - SAUCE: apparmor: fix: ref count leak when profile sha1 hash is read + - SAUCE: fixup: cleanup return handling of labels + - SAUCE: fix: replacedby forwarding is not being properly update when ns is + destroyed + - SAUCE: fixup: make __share_replacedby private to get rid of build warning + - SAUCE: fixup: 20/23 locking issue around in __label_update + - SAUCE: fixup: get rid of unused var build warning + - SAUCE: fixup: cast poison values to remove warnings + - SAUCE: apparmor: fix refcount race when finding a child profile + - SAUCE: fixup: warning about aa_label_vec_find_or_create not being static + - SAUCE: fix: audit "no_new_privs" case for exec failure + - SAUCE: Fixup: __label_update() still doesn't handle some cases correctly. + - SAUCE: Move replacedby allocation into label_alloc + - [Debian] supply zfs dkms Provides: based on do_zfs + - [Config] supply zfs dkms Provides: based on do_zfs + - [Config] drop linux-image-3.0 provides + + * Miscellaneous upstream changes + - x86/mpx: Fix off-by-one comparison with nr_registers + + [ Upstream Kernel Changes ] + + * rebase to v4.4.3 + + -- Tim Gardner Thu, 25 Feb 2016 19:47:55 -0700 + +linux (4.4.0-8.23) xenial; urgency=low + + * cgroup namespace mounts broken in containers (LP: #1549398) + - SAUCE: kernfs: Always set super block owner to init_user_ns + + * 4.4.0-7.22 no longer boots on arm64 (LP: #1547718) + - arm64: mm: avoid calling apply_to_page_range on empty range + - UBUNTU SAUCE: arm: mm: avoid calling apply_to_page_range on empty range + + * kernel install failed /bin/cp: cannot stat ‘/boot/initrd.img-4.3.0-7-generic’: No such file or directory (LP: #1536810) + - [Config] postinst -- handle recreating symlinks when a real file is present + + * insecure overlayfs xattrs handling in copy_up (LP: #1534961) + - SAUCE: cred: Add clone_cred() interface + - SAUCE: overlayfs: Use mounter's credentials instead of selectively raising caps + - SAUCE: overlayfs: Skip permission checking for trusted.overlayfs.* xattrs + - SAUCE: overlayfs: Be more careful about copying up sxid files + - SAUCE: overlayfs: Propogate nosuid from lower and upper mounts + + * overlayfs over fuse should refuse copy_up of files if uid/gid not mapped (LP: #1535150) + - SAUCE: cred: Add clone_cred() interface + - SAUCE: overlayfs: Use mounter's credentials instead of selectively raising caps + - SAUCE: overlayfs: Skip permission checking for trusted.overlayfs.* xattrs + - SAUCE: overlayfs: Be more careful about copying up sxid files + - SAUCE: overlayfs: Propogate nosuid from lower and upper mounts + + * overlay: mkdir fails if directory exists in lowerdir in a user namespace (LP: #1531747) + - SAUCE: cred: Add clone_cred() interface + - SAUCE: overlayfs: Use mounter's credentials instead of selectively raising caps + - SAUCE: overlayfs: Skip permission checking for trusted.overlayfs.* xattrs + + * Update Intel ethernet drivers to Fortville SW5 (LP: #1547674) + - net: bulk free infrastructure for NAPI context, use napi_consume_skb + - net: Add eth_platform_get_mac_address() helper. + - i40e: Add mac_filter_element at the end of the list instead of HEAD + - i40e/i40evf: Fix RSS rx-flow-hash configuration through ethtool + - i40e: Replace X722 mac check in ethtool get_settings + - i40evf: allow channel bonding of VFs + - i40e: define function capabilities in only one place + - i40evf: null out ring pointers on free + - i40e: Cleanup the code with respect to restarting autoneg + - i40e: update features with right offload + - i40e: bump version to 1.4.10 + - i40e: add new device IDs for X722 + - i40e: Extend ethtool RSS hooks for X722 + - i40e/i40evf: Fix for UDP/TCP RSS for X722 + - i40evf: add new write-back mode + - i40e/i40evf: Use private workqueue + - i40e: add new proxy-wol bit for X722 + - i40e: Limit DCB FW version checks to X710/XL710 devices + - i40e: AQ Add Run PHY Activity struct + - i40e: AQ Geneve cloud tunnel type + - i40e: AQ Add external power class to get link status + - i40e: add 100Mb ethtool reporting + - ixgbe: bulk free SKBs during TX completion cleanup cycle + - igb: Remove unnecessary flag setting in igb_set_flag_queue_pairs() + - igb: Unpair the queues when changing the number of queues + - igb/igbvf: don't give up + - igb: clean up code for setting MAC address + - igb: Refactor VFTA configuration + - igb: Allow asymmetric configuration of MTU versus Rx frame size + - igb: Do not factor VLANs into RLPML calculation + - igb: Always enable VLAN 0 even if 8021q is not loaded + - igb: Merge VLVF configuration into igb_vfta_set + - igb: Clean-up configuration of VF port VLANs + - igb: Add support for VLAN promiscuous with SR-IOV and NTUPLE + - igb: Drop unnecessary checks in transmit path + - igb: Enable use of "bridge fdb add" to set unicast table entries + - igb: Add workaround for VLAN tag stripping on 82576 + - i40e: AQ Shared resource flags + - i40e: AQ Add set_switch_config + - i40e: AQ Add VXLAN-GPE tunnel type + - i40e: AQ thermal sensor control struct + - i40e: Bump AQ minor version to 1.5 for new FW features + - i40e: Store lan_vsi_idx and lan_vsi_id in the right size + - i40e: fix write-back-on-itr to work with legacy itr + - i40e: add counter for arq overflows + - i40e: add 20G speed for Tx bandwidth calculations + - i40e: refactor DCB function + - i40e: add a little more to an NVM update debug message + - i40evf: enable bus master after reset + - i40e: add netdev info to VSI dump + - i40e: remove VF device IDs from PF + - i40e: trivial: remove unnecessary local var + - i40e/i40evf: Bump i40e to 1.4.11 and i40evf to 1.4.7 + - net: ixgbe: add minimal parser details for ixgbe + - i40e: trivial: drop duplicate definition + - i40e: trivial: fix missing space + - i40e: fix bug in dma sync + - i40e: do TSO only if CHECKSUM_PARTIAL is set + - i40e: allocate memory safer + - i40e: fix: do not sleep in netdev_ops + - i40e: APIs to Add/remove port mirroring rules + - i40e: negate PHY int mask bits + - i40e: drop unused function + - i40e: count allocation errors + - i40e: avoid large memcpy by assigning struct + - i40e/i40evf: bump version to 1.4.12/1.4.8 + - i40e: Enable Geneve offload for FW API ver > 1.4 for XL710/X710 devices + - i40e: add priv flag for automatic rule eviction + - i40e: use eth_platform_get_mac_address() + - i40e: move sync_vsi_filters up in service_task + - i40e: Make the DCB firmware checks for X710/XL710 only + - i40e: set shared bit for multicast filters + - i40e: add VEB stat control and remove L2 cloud filter + - i40e: use new add_veb calling with VEB stats control + - i40e: Refactor force_wb and WB_ON_ITR functionality code + - i40evf: Change vf driver string to reflect all products i40evf supports + - i40e/i40evf: don't lose interrupts + - i40e/i40evf: try again after failure + - i40e: dump descriptor indexes in hex + - i40e/i40evf: use __GFP_NOWARN + - i40e/i40evf: use pages correctly in Rx + - i40e/i40evf: use logical operators, not bitwise + - i40e: properly show packet split status in debugfs + - i40e/i40evf: Bump version + - ixgbe: use u32 instead of __u32 in model header + - ixgbe: fix dates on header of ixgbe_model.h + - i40e: get rid of magic number + - i40e: drop unused debugfs file "dump" + - i40evf: support packet split receive + - i40e: trivial: cleanup use of pf->hw + - i40e: Add a SW workaround for lost interrupts + - i40e: Fix PROMISC mode for Multi-function per port (MFP) devices + - i40e: Removal of code which relies on BASE VEB SEID + - i40e/i40evf: avoid atomics + - i40e: Do not disable queues in the Legacy/MSI Interrupt handler + - i40e: expand comment + - i40e: better error reporting for nvmupdate + - i40evf: set adapter state on reset failure + - i40e: clean event descriptor before use + - i40e: When in promisc mode apply promisc mode to Tx Traffic as well + - i40e/i40evf: Bump i40e to 1.4.15 and i40evf to 1.4.11. + - i40e/i40evf: Drop outer checksum offload that was not requested + - i40e/i40evf: Use u64 values instead of casting them in TSO function + - i40e/i40evf: Factor out L4 header and checksum from L3 bits in TSO path + - i40e/i40evf: Consolidate all header changes into TSO function + - i40e/i40evf: Replace header pointers with unions of pointers in Tx checksum path + - i40e/i40evf: Add support for IPv4 encapsulated in IPv6 + - i40e/i40evf: Handle IPv6 extension headers in checksum offload + - i40e/i40evf: Do not write to descriptor unless we complete + - i40e/i40evf: Add exception handling for Tx checksum + - i40e/i40evf: Clean-up Rx packet checksum handling + - i40e/i40evf: Enable support for SKB_GSO_UDP_TUNNEL_CSUM + - i40e: Fix ATR in relation to tunnels + - i40e: Do not drop support for IPv6 VXLAN or GENEVE tunnels + - i40e: Update feature flags to reflect newly enabled features + - i40evf: Update feature flags to reflect newly enabled features + - i40e: Add support for ATR w/ IPv6 extension headers + - i40e/i40evf: Break up xmit_descriptor_count from maybe_stop_tx + - i40e/i40evf: Rewrite logic for 8 descriptor per packet check + - i40e/i40evf: Move Tx checksum closer to TSO + - i40e: Add functions to blink led on 10GBaseT PHY + - i40e: Fix led blink capability for 10GBaseT PHY + - i40e: Increase timeout when checking GLGEN_RSTAT_DEVSTATE bit + - i40e: Do not wait for Rx queue disable in DCB reconfig + - i40e: Fix for unexpected messaging + - i40e: Expose some registers to program parser, FD and RSS logic + - i40e: add check for null VSI + - i40e: add adminq commands for Rx CTL registers + - i40e: implement and use Rx CTL helper functions + - i40e: Use the new rx ctl register helpers. Don't use AQ calls from clear_hw. + - i40e: suspend scheduling during driver unload + - i40e: let go of the past + - i40e/i40evf: Bump i40e to 1.4.25 and i40evf to 1.4.15 + + * MPT3SAS Driver update for next kernel release (LP: #1512221) + - mpt3sas: A correction in unmap_resources + - mpt3sas: Added support for high port count HBA variants. + - mpt3sas: Used IEEE SGL instead of MPI SGL while framing a SMP Passthrough request message. + - mpt3sas: Fix static analyzer(coverity) tool identified defects + - mpt3sas: Never block the Enclosure device + - mpt3sas: Make use of additional HighPriority credit message frames for sending SCSI IO's + - mpt3sas: Added smp_affinity_enable module parameter. + - mpt3sas: Add support for configurable Chain Frame Size + - mpt3sas: Updated MPI Header to 2.00.42 + - mpt3sas: Fix for Asynchronous completion of timedout IO and task abort of timedout IO. + - mpt3sas: Updating mpt3sas driver version to 12.100.00.00 + - mpt3sas: Remove cpumask_clear for zalloc_cpumask_var and don't free free_cpu_mask_var before reply_q + + * /sys/class/scsi_host/hostN/partition_number and .../mad_version showing up BE on LE Ubuntu. (ibmvscsi) (LP: #1547153) + - ibmvscsi: Add endian conversions to sysfs attribute show functions + + * Miscellaneous Ubuntu changes + - [Packaging] git-ubuntu-log -- output should be utf-8 + - [Packaging] git-ubuntu-log -- handle invalid or private bugs + + -- Andy Whitcroft Wed, 24 Feb 2016 20:34:49 +0000 + +linux (4.4.0-7.22) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1547205 + + * need arm64 acpi parking protocol support in xenial (LP: #1547047) + - [Config] Enabled ARM64_ACPI_PARKING_PROTOCOL + - arm64: kernel: implement ACPI parking protocol + + * Please pull cgroup namespaces (LP: #1546775) + - SAUCE: (noup) kernfs: Add API to generate relative kernfs path + - SAUCE: (noup) sched: new clone flag CLONE_NEWCGROUP for cgroup namespace + - SAUCE: (noup) cgroup: introduce cgroup namespaces + - SAUCE: (noup) cgroup: cgroup namespace setns support + - SAUCE: (noup) kernfs: define kernfs_node_dentry + - SAUCE: (noup) cgroup: mount cgroupns-root when inside non-init cgroupns + - SAUCE: (noup) Add FS_USERNS_FLAG to cgroup fs + - SAUCE: (noup) cgroup: Add documentation for cgroup namespaces + + * [Feature]Pulse-Width Modulation enabling on Broxton-P (LP: #1520436) + - [Config] CONFIG_PWM_OMAP_DMTIMER=m + - pwm: lpss: Remove ->free() callback + - pwm: bcm2835: Calculate scaler in ->config() + - pwm: bcm2835: Prevent division by zero + - pwm: bcm2835: Fix email address specification + - pwm: lpss: Update PWM setting for Broxton + - pwm: lpss: Select core part automatically + - pwm: lpss: Rework the sequence of programming PWM_SW_UPDATE + - pwm: fsl-ftm: Fix clock enable/disable when using PM + - pwm: lpc32xx: correct number of PWM channels from 2 to 1 + - pwm: lpc32xx: make device usable with common clock framework + - pwm: lpc32xx: fix and simplify duty cycle and period calculations + - pwm: lpc32xx: return ERANGE, if requested period is not supported + - pwm: rcar: Improve accuracy of frequency division setting + - pwm: Add PWM driver for OMAP using dual-mode timers + - pwm: add HAS_IOMEM dependency to PWM_FSL_FTM + - pwm: omap-dmtimer: Potential NULL dereference on error + - pwm: Mark all devices as "might sleep" + + * [Hyper-V] Netmask value is not parsed by hv_set_ifconfig - IP injection (LP: #1540586) + - [Debian] hv: hv_set_ifconfig -- switch to approved indentation + - [Debian] hv: hv_set_ifconfig -- fix numerous parameter handling issues + + * Update megaraid driver to MR6.10 (LP: #1544679) + - megaraid_sas: Do not allow PCI access during OCR + - megaraid_sas: MFI IO timeout handling + - megaraid_sas: Syncing request flags macro names with firmware + - megaraid_sas: Task management support + - megaraid_sas: Update device queue depth based on interface type + - megaraid_sas: Fastpath region lock bypass + - megaraid_sas: Reply Descriptor Post Queue (RDPQ) support + - megaraid_sas: Code optimization build_and_issue_cmd return-type + - megaraid_sas: Dual queue depth support + - megaraid_sas: IO throttling support + - megaraid_sas: Make adprecovery variable atomic + - megaraid_sas: MFI adapter OCR changes + - megaraid_sas: Introduce module parameter for SCSI command timeout + - megaraid_sas: SPERC OCR changes + - megaraid_sas: driver version upgrade + - megaraid: fix null pointer check in megasas_detach_one(). + - megaraid_sas: Fix for IO failing post OCR in SRIOV environment + - megaraid_sas: Fix SMAP issue + - megaraid_sas: Add an i/o barrier + + * Surelock-GA2:kernel panic @ cxl_configure_adapter+0x418/0x8b0 (LP: #1546145) + - powerpc/powernv: Fix stale PE primary bus + + * In A Single Power VM LPAR : Network Configuration Fails in Ubuntu16.04 while installation (LP: #1544321) + - [Config] Update bnx2x d-i firmware to 7.12.30 + + * Miscellaneous Ubuntu changes + - rebase to v4.4.2 + + * Miscellaneous upstream changes + - openvswitch: allow management from inside user namespaces + - net: thunderx: nicvf_queues: nivc_*_intr: remove duplication + - net, thunderx: Remove unnecessary rcv buffer start address management + - net: thunderx: HW TSO support for pass-2 hardware + - net: thunderx: Enable CQE count threshold interrupt + - net: cavium: liquidio: use helpers ns_to_timespec64() + - irqchip/gic-v3: Make sure read from ICC_IAR1_EL1 is visible on redestributor + - arm64: KVM: Configure TCR_EL2.PS at runtime + - arm64: prefetch: don't provide spin_lock_prefetch with LSE + - arm64: prefetch: add alternative pattern for CPUs without a prefetcher + - arm64: lib: improve copy_page to deal with 128 bytes at a time + - arm64: lib: patch in prfm for copy_page if requested + - arm64: prefetch: add missing #include for spin_lock_prefetch + - net, thunderx: Add TX timeout and RX buffer alloc failure stats. + - net: thunderx: Use napi_schedule_irqoff() + - net: thunderx: Assign affinity hints to vf's interrupts + - net: thunderx: bgx: Use standard firmware node infrastructure. + - net: thunderx: bgx: Add log message when setting mac address + - net: thunderx: Alloc higher order pages when pagesize is small + - net: cavium: liquidio: Return correct error code + - net: cavium: liquidio: fix check for in progress flag + - livepatch: add old_sympos as disambiguator field to klp_func + - livepatch: add sympos as disambiguator field to klp_reloc + - livepatch: function,sympos scheme in livepatch sysfs directory + - module: Use the same logic for setting and unsetting RO/NX + - gcov: use within_module() helper. + - module: use a structure to encapsulate layout. + - module: clean up RO/NX handling. + - module: keep percpu symbols in module's symtab + - livepatch: Cleanup module page permission changes + + [ Upstream Kernel Changes ] + + * rebase to v4.4.2 + + -- Tim Gardner Tue, 16 Feb 2016 14:24:45 -0700 + +linux (4.4.0-6.21) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1546283 + + * Naples/Zen, NTB Driver (LP: #1542071) + - [Config] CONFIG_NTB_AMD=m + - NTB: Add support for AMD PCI-Express Non-Transparent Bridge + + * [Hyper-V] kernel panic occurs when installing Ubuntu Server x32 (LP: #1495983) + - SAUCE: storvsc: use small sg_tablesize on x86 + + * Enable arm64 emulation of removed ARMv7 instructions (LP: #1545542) + - [Config] CONFIG_ARMV8_DEPRECATED=y + + * Surelock-GA2:kernel panic/ exception @ pcibios_set_pcie_reset_state+0x118/0x280 + cxl_reset+0x5c/0xc0 (LP: #1545037) + - powerpc/eeh: Fix stale cached primary bus + + * Miscellaneous Ubuntu changes + - SAUCE: fs: Add user namesapace member to struct super_block + - SAUCE: fs: Limit file caps to the user namespace of the super block + - SAUCE: Smack: Add support for unprivileged mounts from user namespaces + - SAUCE: block_dev: Support checking inode permissions in lookup_bdev() + - SAUCE: block_dev: Check permissions towards block device inode when mounting + - SAUCE: fs: Treat foreign mounts as nosuid + - SAUCE: selinux: Add support for unprivileged mounts from user namespaces + - SAUCE: userns: Replace in_userns with current_in_userns + - SAUCE: Smack: Handle labels consistently in untrusted mounts + - SAUCE: fs: Check for invalid i_uid in may_follow_link() + - SAUCE: cred: Reject inodes with invalid ids in set_create_file_as() + - SAUCE: fs: Refuse uid/gid changes which don't map into s_user_ns + - SAUCE: fs: Update posix_acl support to handle user namespace mounts + - SAUCE: fs: Ensure the mounter of a filesystem is privileged towards its inodes + - SAUCE: fs: Don't remove suid for CAP_FSETID in s_user_ns + - SAUCE: fs: Allow superblock owner to access do_remount_sb() + - SAUCE: capabilities: Allow privileged user in s_user_ns to set security.* xattrs + - SAUCE: fuse: Add support for pid namespaces + - SAUCE: fuse: Support fuse filesystems outside of init_user_ns + - SAUCE: fuse: Restrict allow_other to the superblock's namespace or a descendant + - SAUCE: fuse: Allow user namespace mounts + - SAUCE: mtd: Check permissions towards mtd block device inode when mounting + - SAUCE: fs: Update i_[ug]id_(read|write) to translate relative to s_user_ns + - SAUCE: quota: Convert ids relative to s_user_ns + - SAUCE: evm: Translate user/group ids relative to s_user_ns when computing HMAC + - SAUCE: fs: Allow CAP_SYS_ADMIN in s_user_ns to freeze and thaw filesystems + - SAUCE: quota: Treat superblock owner as privilged + - SAUCE: ima/evm: Allow root in s_user_ns to set xattrs + - SAUCE: block_dev: Forbid unprivileged mounting when device is opened for writing + - SAUCE: ext4: Add support for unprivileged mounts from user namespaces + - SAUCE: ext4: Add module parameter to enable user namespace mounts + - SAUCE: fuse: Add module parameter to enable user namespace mounts + + * Miscellaneous upstream changes + - megaraid: Fix possible NULL pointer deference in mraid_mm_ioctl + - libahci: Implement the capability to override the generic ahci interrupt handler. + - ata: Remove the AHCI_HFLAG_EDGE_IRQ support from libahci. + - ahci_xgene: Implement the workaround to fix the missing of the edge interrupt for the HOST_IRQ_STAT. + + -- Tim Gardner Fri, 12 Feb 2016 09:49:05 -0700 + +linux (4.4.0-5.20) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1544637 + + * s390/cio: update measurement characteristics (LP: #1541534) + - s390/cio: fix measurement characteristics memleak + - s390/cio: ensure consistent measurement state + - s390/cio: update measurement characteristics + + * qeth: layer2 reports unknown state to network tools. (LP: #1541907) + - qeth: initialize net_device with carrier off + + * Collateral damage due to kernel configuration change enabling CONFIG_ZONE_DEVICE (Kernel 4.4 amd64) (LP: #1534647) + - [Config] CONFIG_ZONE_DMA=y + - mm: CONFIG_NR_ZONES_EXTENDED + + * perf enahancements for ppc64 (LP: #1521678) + - perf kvm/{x86,s390}: Remove dependency on uapi/kvm_perf.h + - perf kvm/{x86,s390}: Remove const from kvm_events_tp + - perf kvm/powerpc: Port perf kvm stat to powerpc + - perf kvm/powerpc: Add support for HCALL reasons + + * Soft lockup with "block nbdX: Attempted send on closed socket" spam (LP: #1505564) + - SAUCE: nbd: ratelimit error msgs after socket close + + * sleep from invalid context in aa_move_mount (LP: #1539349) + - SAUCE: apparmor: fix sleep from invalid context + + * Introducing ConnectX-4 Ethernet SRIOV (LP: #1540435) + - net/mlx5_core: Modify enable/disable hca functions + - net/mlx5_core: Add base sriov support + - net/mlx5: Add HW capabilities and structs for SR-IOV E-Switch + - net/mlx5: Update access functions to Query/Modify vport MAC address + - net/mlx5: Introduce access functions to modify/query vport mac lists + - net/mlx5: Introduce access functions to modify/query vport state + - net/mlx5: Introduce access functions to modify/query vport promisc mode + - net/mlx5: Introduce access functions to modify/query vport vlans + - net/mlx5e: Write UC/MC list and promisc mode into vport context + - net/mlx5e: Write vlan list into vport context + - net/mlx5: Introducing E-Switch and l2 table + - net/mlx5: E-Switch, Introduce FDB hardware capabilities + - net/mlx5: E-Switch, Add SR-IOV (FDB) support + - net/mlx5: E-Switch, Introduce Vport administration functions + - net/mlx5: E-Switch, Introduce HCA cap and E-Switch vport context + - net/mlx5: E-Switch, Introduce set vport vlan (VST mode) + - net/mlx5: E-Switch, Introduce get vf statistics + - net/mlx5e: Add support for SR-IOV ndos + - net/mlx5: Fix query E-Switch capabilities + - net/mlx5e: Assign random MAC address if needed + + * make wacom_w8001 work well in xenial (LP: #1542771) + - Input: wacom_w8001 - use __set_bit for evbits + - Input: wacom_w8001 - set BTN_TOOL_DOUBLETAP if we have 2fg support + - Input: wacom_w8001 - handle touch error case correctly + - Input: wacom_w8001 - split pen and touch initialization up + - Input: wacom_w8001 - split the touch and pen devices into two devices + - Input: wacom_w8001 - drop use of ABS_MT_TOOL_TYPE + + * virtualbox: update to 5.0.14-dfsg-2 (LP: #1542728) + - ubuntu: vbox -- update to 5.0.14-dfsg-2 + + * Miscellaneous Ubuntu changes + - [Packaging] git-ubuntu-log -- fix empty section formatting + - SAUCE: (noup) Update spl to 0.6.5.4-0ubuntu2, zfs to 0.6.5.4-0ubuntu2 + + -- Andy Whitcroft Sat, 06 Feb 2016 22:32:10 +0000 + +linux (4.4.0-4.19) xenial; urgency=low + + * update ZFS and SPL to 0.6.5.4 (LP: #1542296) + - [Config] update spl/zfs version + - SAUCE: (noup) Update spl to 0.6.5.4-0ubuntu2, zfs to 0.6.5.4-0ubuntu1 + - [Config] reconstruct -- drop links for zfs userspace components + - [Config] reconstruct -- drop links for zfs userspace components -- restore spec links + + * recvmsg() fails SCM_CREDENTIALS request with EOPNOTSUPP. (LP: #1540731) + - Revert "af_unix: Revert 'lock_interruptible' in stream receive code" + + * lxc: ADT exercise test failing with linux-4.4.0-3.17 (LP: #1542049) + - Revert "UBUNTU: SAUCE: apparmor: fix sleep from invalid context" + + * WARNING: at /build/linux-lts-wily-W0lTWH/linux-lts-wily-4.2.0/net/core/skbuff.c:4174 (Travis IB) (LP: #1541326) + - SAUCE: IB/IPoIB: Do not set skb truesize since using one linearskb + + * backport Microsoft Precision Touchpad palm rejection patch (LP: #1541671) + - HID: multitouch: enable palm rejection if device implements confidence usage + + * [Ubuntu 16.04] Update qla2xxx driver for POWER (QLogic) (LP: #1541456) + - qla2xxx: Remove unavailable firmware files + - qla2xxx: Enable Extended Logins support + - qla2xxx: Enable Exchange offload support. + - qla2xxx: Enable Target counters in DebugFS. + - qla2xxx: Add FW resource count in DebugFS. + - qla2xxx: Added interface to send explicit LOGO. + - qla2xxx: Delete session if initiator is gone from FW + - qla2xxx: Wait for all conflicts before ack'ing PLOGI + - qla2xxx: Replace QLA_TGT_STATE_ABORTED with a bit. + - qla2xxx: Remove dependency on hardware_lock to reduce lock contention. + - qla2xxx: Add irq affinity notification + - qla2xxx: Add selective command queuing + - qla2xxx: Move atioq to a different lock to reduce lock contention + - qla2xxx: Disable ZIO at start time. + - qla2xxx: Set all queues to 4k + - qla2xxx: Check for online flag instead of active reset when transmitting responses + - scsi: qla2xxxx: avoid type mismatch in comparison + + * [Hyper-V] PCI Passthrough (LP: #1541120) + - x86/irq: Export functions to allow MSI domains in modules + - genirq/msi: Export functions to allow MSI domains in modules + + * Update lpfc driver to 11.0.0.10 (LP: #1541592) + - lpfc: Fix FCF Infinite loop in lpfc_sli4_fcf_rr_next_index_get. + - lpfc: Fix the FLOGI discovery logic to comply with T11 standards + - lpfc: Fix RegLogin failed error seen on Lancer FC during port bounce + - lpfc: Fix driver crash when module parameter lpfc_fcp_io_channel set to 16 + - lpfc: Fix crash in fcp command completion path. + - lpfc: Modularize and cleanup FDMI code in driver + - lpfc: Fix RDP Speed reporting. + - lpfc: Fix RDP ACC being too long. + - lpfc: Make write check error processing more resilient + - lpfc: Use new FDMI speed definitions for 10G, 25G and 40G FCoE. + - lpfc: Fix mbox reuse in PLOGI completion + - lpfc: Fix external loopback failure. + - lpfc: Add logging for misconfigured optics. + - lpfc: Delete unnecessary checks before the function call "mempool_destroy" + - lpfc: Use kzalloc instead of kmalloc + - lpfc: Update version to 11.0.0.10 for upstream patch set + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_ARM64_VA_BITS=48 + - [Config] Fixed Vcs-Git + + * Miscellaneous upstream changes + - cxl: Fix possible idr warning when contexts are released + - cxl: use correct operator when writing pcie config space values + - cxlflash: drop unlikely before IS_ERR_OR_NULL + - cxl: Fix DSI misses when the context owning task exits + - cxlflash: Removed driver date print + - cxlflash: Fix to resolve cmd leak after host reset + - cxlflash: Resolve oops in wait_port_offline + - cxlflash: Enable device id for future IBM CXL adapter + - cxl: fix build for GCC 4.6.x + - cxl: use -Werror only with CONFIG_PPC_WERROR + - cxl: Enable PCI device ID for future IBM CXL adapter + + -- Andy Whitcroft Fri, 05 Feb 2016 14:58:51 +0000 + +linux (4.4.0-3.17) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1541058 + * [Config] CONFIG_BLK_DEV_NVME_SCSI=y + - LP: #1531539 + * SAUCE: nvme merge cleanup + - LP: #1531539 + * rebase to v4.4.1 + + [ Andy Whitcroft ] + + * Revert "SAUCE: dm: introduce a target_ioctl op to allow target specific + ioctls" + - LP: #1538618 + * postinst -- detect symlinks correctly + - LP: #1536810 + + [ John Johansen ] + + * SAUCE: apparmor: fix sleep from invalid context + - LP: #1539349 + + [ Upstream Kernel Changes ] + + * powerpc/eeh: Fix PE location code + - LP: #1538909 + * powerpc/pseries: Limit EPOW reset event warnings + - LP: #1539102 + * lightnvm: fix bio submission issue + - LP: #1531539 + * lightnvm: fix incorrect nr_free_blocks stat + - LP: #1531539 + * lightnvm: add check after mempool allocation + - LP: #1531539 + * lightnvm: unlock rq and free ppa_list on submission fail + - LP: #1531539 + * lightnvm: move ppa erase logic to core + - LP: #1531539 + * lightnvm: refactor rqd ppa list into set/free + - LP: #1531539 + * lightnvm: refactor end_io functions for sync + - LP: #1531539 + * lightnvm: return the get_bb_tbl return value + - LP: #1531539 + * lightnvm: check bi_error in gc + - LP: #1531539 + * lightnvm: put block back to gc list on its reclaim fail + - LP: #1531539 + * lightnvm: fix locking and mempool in rrpc_lun_gc + - LP: #1531539 + * lightnvm: sectors first in ppa list + - LP: #1531539 + * lightnvm: move the pages per block check out of the loop + - LP: #1531539 + * lightnvm: support multiple ppas in nvm_erase_ppa + - LP: #1531539 + * lightnvm: move rq->error to nvm_rq->error + - LP: #1531539 + * lightnvm: introduce nvm_submit_ppa + - LP: #1531539 + * lightnvm: reference rrpc lun in rrpc block + - LP: #1531539 + * lightnvm: fix missing grown bad block type + - LP: #1531539 + * lightnvm: manage open and closed blocks separately + - LP: #1531539 + * lightnvm: add mccap support + - LP: #1531539 + * lightnvm: introduce mlc lower page table mappings + - LP: #1531539 + * lightnvm: core on-disk initialization + - LP: #1531539 + * lightnvm: introduce ioctl to initialize device + - LP: #1531539 + * lightnvm: use system block for mm initialization + - LP: #1531539 + * lightnvm: introduce factory reset + - LP: #1531539 + * lightnvm: ensure that nvm_dev_ops can be used without CONFIG_NVM + - LP: #1531539 + * blk-mq: add a flags parameter to blk_mq_alloc_request + - LP: #1531539 + * nvme: move struct nvme_iod to pci.c + - LP: #1531539 + * nvme: split command submission helpers out of pci.c + - LP: #1531539 + * nvme: use offset instead of a struct for registers + - LP: #1531539 + * nvme: split nvme_trans_device_id_page + - LP: #1531539 + * nvme: use vendor it from identify + - LP: #1531539 + * nvme: split a new struct nvme_ctrl out of struct nvme_dev + - LP: #1531539 + * nvme: simplify nvme_setup_prps calling convention + - LP: #1531539 + * nvme: refactor nvme_queue_rq + - LP: #1531539 + * nvme: factor out a nvme_unmap_data helper + - LP: #1531539 + * nvme: move nvme_error_status to common code + - LP: #1531539 + * nvme: move nvme_setup_flush and nvme_setup_rw to common code + - LP: #1531539 + * nvme: split __nvme_submit_sync_cmd + - LP: #1531539 + * nvme: use the block layer for userspace passthrough metadata + - LP: #1531539 + * nvme: move block_device_operations and ns/ctrl freeing to common code + - LP: #1531539 + * nvme: add explicit quirk handling + - LP: #1531539 + * nvme: move remaining CC setup into nvme_enable_ctrl + - LP: #1531539 + * nvme: move nvme_{enable,disable,shutdown}_ctrl to common code + - LP: #1531539 + * nvme: add a common helper to read Identify Controller data + - LP: #1531539 + * nvme: move the call to nvme_init_identify earlier + - LP: #1531539 + * nvme: move namespace scanning to common code + - LP: #1531539 + * nvme: move chardev and sysfs interface to common code + - LP: #1531539 + * nvme: refactor set_queue_count + - LP: #1531539 + * blk-integrity: empty implementation when disabled + - LP: #1531539 + * NVMe: fix build with CONFIG_NVM enabled + - LP: #1531539 + * nvme: fix another 32-bit build warning + - LP: #1531539 + * nvme: precedence bug in nvme_pr_clear() + - LP: #1531539 + * nvme: only ignore hardware errors in nvme_create_io_queues + - LP: #1531539 + * nvme: only add a controller to dev_list after it's been fully + initialized + - LP: #1531539 + * nvme: protect against simultaneous shutdown invocations + - LP: #1531539 + * nvme: don't take the I/O queue q_lock in nvme_timeout + - LP: #1531539 + * nvme: merge nvme_abort_req and nvme_timeout + - LP: #1531539 + * nvme: add NVME_SC_CANCELLED + - LP: #1531539 + * nvme: simplify resets + - LP: #1531539 + * nvme: do not restart the request timeout if we're resetting the + controller + - LP: #1531539 + * nvme: merge probe_work and reset_work + - LP: #1531539 + * nvme: remove dead controllers from a work item + - LP: #1531539 + * nvme: switch abort_limit to an atomic_t + - LP: #1531539 + * NVMe: Implement namespace list scanning + - LP: #1531539 + * NVMe: Use unbounded work queue for all work + - LP: #1531539 + * NVMe: Remove device management handles on remove + - LP: #1531539 + * NVMe: Simplify metadata setup + - LP: #1531539 + * nvme: fix admin queue depth + - LP: #1531539 + * nvme: factor out a few helpers from req_completion + - LP: #1531539 + * nvme: switch delete SQ/CQ to blk_execute_rq_nowait + - LP: #1531539 + * nvme: switch abort to blk_execute_rq_nowait + - LP: #1531539 + * nvme: special case AEN requests + - LP: #1531539 + * nvme: simplify completion handling + - LP: #1531539 + * nvme: properly free resources for cancelled command + - LP: #1531539 + * nvme: meta_sg doesn't have to be an array + - LP: #1531539 + * nvme: merge iod and cmd_info + - LP: #1531539 + * NVMe: Add pci error handlers + - LP: #1531539 + * NVMe: Export namespace attributes to sysfs + - LP: #1531539 + * nvme: Move nvme_freeze/unfreeze_queues to nvme core + - LP: #1531539 + * nvme: synchronize access to ctrl->namespaces + - LP: #1531539 + * nvme: fixes for NVME_IOCTL_IO_CMD on the char device + - LP: #1531539 + * nvme: make SG_IO support optional + - LP: #1531539 + * NVMe: Fix admin queue ring wrap + - LP: #1531539 + * NVMe: Use a retryable error code on reset + - LP: #1531539 + * NVMe: Remove queue freezing on resets + - LP: #1531539 + * NVMe: IO queue deletion re-write + - LP: #1531539 + * NVMe: Shutdown controller only for power-off + - LP: #1531539 + * NVMe: Export NVMe attributes to sysfs group + - LP: #1531539 + * i40e: fix build warnings + * net: i40e: shut up uninitialized variable warnings + * Drivers: hv: vmbus: fix build warning + * Drivers: hv: util: Increase the timeout for util services + * Drivers: hv: utils: run polling callback always in interrupt context + * tools: hv: report ENOSPC errors in hv_fcopy_daemon + * tools: hv: remove repeated HV_FCOPY string + * Drivers: hv: util: catch allocation errors + * Drivers: hv: utils: use memdup_user in hvt_op_write + * drivers/hv: cleanup synic msrs if vmbus connect failed + * drivers:hv: Export a function that maps Linux CPU num onto Hyper-V proc + num + * drivers:hv: Export the API to invoke a hypercall on Hyper-V + * drivers:hv: Define the channel type for Hyper-V PCI Express + pass-through + * Drivers: hv: vss: run only on supported host versions + * Drivers: hv: vmbus: Use uuid_le type consistently + * Drivers: hv: vmbus: Use uuid_le_cmp() for comparing GUIDs + * Drivers: hv: vmbus: Get rid of the unused macro + * Drivers: hv: vmbus: Get rid of the unused irq variable + * Drivers: hv: vmbus: serialize process_chn_event() and + vmbus_close_internal() + * Drivers: hv: vmbus: do sanity check of channel state in + vmbus_close_internal() + * Drivers: hv: vmbus: fix rescind-offer handling for device without a + driver + * Drivers: hv: vmbus: release relid on error in vmbus_process_offer() + * Drivers: hv: vmbus: channge vmbus_connection.channel_lock to mutex + * drivers:hv: Allow for MMIO claims that span ACPI _CRS records + * Drivers: hv: vmbus: Fix a Host signaling bug + * drivers/hv: correct tsc page sequence invalid value + * Drivers: hv: vmbus: Force all channel messages to be delivered on CPU 0 + * Drivers: hv: utils: Invoke the poll function after handshake + * tools: hv: vss: fix the write()'s argument: error -> vss_msg + * Drivers: hv: utils: fix memory leak on on_msg() failure + * Drivers: hv: utils: rename outmsg_lock + * Drivers: hv: utils: introduce HVUTIL_TRANSPORT_DESTROY mode + * Drivers: hv: utils: fix crash when device is removed from host side + * Drivers: hv: ring_buffer.c: fix comment style + * Drivers: hv: ring_buffer: remove stray smp_read_barrier_depends() + * Drivers: hv: ring_buffer: remove code duplication from + hv_ringbuffer_peek/read() + * Drivers: hv: remove code duplication between + vmbus_recvpacket()/vmbus_recvpacket_raw() + * Drivers: hv: ring_buffer: eliminate hv_ringbuffer_peek() + * drivers/hv: replace enum hv_message_type by u32 + * drivers/hv: Move HV_SYNIC_STIMER_COUNT into Hyper-V UAPI x86 header + * drivers/hv: Move struct hv_message into UAPI Hyper-V x86 header + * drivers/hv: Move struct hv_timer_message_payload into UAPI Hyper-V x86 + header + * Drivers: hv: vmbus: fix the building warning with hyperv-keyboard + * Drivers: hv: utils: fix hvt_op_poll() return value on transport destroy + * Drivers: hv: vmbus: Treat Fibre Channel devices as performance critical + + [ Upstream Kernel Changes ] + + * rebase to v4.4.1 + - LP: #1533461 + - LP: #1529624 + + -- Tim Gardner Fri, 29 Jan 2016 08:06:37 -0700 + +linux (4.4.0-2.16) xenial; urgency=low + + [ Andy Whitcroft ] + + * Release Tracking Bug + - LP: #1539090 + * SAUCE: hv: hv_set_ifconfig -- convert to python3 + - LP: #1506521 + * SAUCE: dm: introduce a target_ioctl op to allow target specific ioctls + - LP: #1538618 + + [ Colin Ian King ] + + * SAUCE: ACPI / tables: Add acpi_force_32bit_fadt_addr option to force 32 + bit FADT addresses (LP: #1529381) + - LP: #1529381 + + [ John Johansen ] + + * SAUCE: (no-up): apparmor: fix for failed mediation of socket that is + being shutdown + - LP: #1446906 + + [ Mahesh Salgaonkar ] + + * SAUCE: Powernv: Remove the usage of PACAR1 from opal wrappers + - LP: #1537881 + * SAUCE: powerpc/book3s: Fix TB corruption in guest exit path on HMI + interrupt. + - LP: #1537881 + * SAUCE: KVM: PPC: Book3S HV: Fix soft lockups in KVM on HMI for time + base errors + - LP: #1537881 + + [ Paolo Pisati ] + + * SAUCE: arm64: errata: Add -mpc-relative-literal-loads to erratum + #843419 build flags + - LP: #1533009 + * [Config] MFD_TPS65217=y && REGULATOR_TPS65217=y + * [Config] disable ARCH_ZX (ZTE ZX Soc) + + [ Tim Gardner ] + + * Revert "SAUCE: (noup) cxlflash: a couple off by one bugs" + * SAUCE: (no-up) Update bnx2x firmware to 7.12.30.0 + - LP: #1536719 + * SAUCE: drop obsolete bnx2x firmware + * SAUCE: i40e: Silence 'may be used uninitialized' warnings + - LP: #1536474 + * [Config] CONFIG_ZONE_DMA=y for amd64 lowlatency + - LP: #1534647 + * [Config] Add pvpanic to virtual flavour + - LP: #1537923 + * [Config] CONFIG_INTEL_PUNIT_IPC=m, CONFIG_INTEL_TELEMETRY=m + - LP: #1520457 + + [ Upstream Kernel Changes ] + + * i40evf: fix compiler warning of unused variable + - LP: #1536474 + * intel: i40e: fix confused code + - LP: #1536474 + * i40e/i40evf: remove unused tunnel parameter + - LP: #1536474 + * i40e: Change BUG_ON to WARN_ON in service event complete + - LP: #1536474 + * i40e: remove BUG_ON from feature string building + - LP: #1536474 + * i40e: remove BUG_ON from FCoE setup + - LP: #1536474 + * i40e: Workaround fix for mss < 256 issue + - LP: #1536474 + * i40e/i40evf: Add a stat to track how many times we have to do a force + WB + - LP: #1536474 + * i40e: Move the saving of old link info from handle_link_event to + link_event + - LP: #1536474 + * i40e/i40evf: Add comment to #endif + - LP: #1536474 + * i40e/i40evf: clean up error messages + - LP: #1536474 + * i40evf: handle many MAC filters correctly + - LP: #1536474 + * i40e: return the number of enabled queues for ETHTOOL_GRXRINGS + - LP: #1536474 + * i40e: rework the functions to configure RSS with similar parameters + - LP: #1536474 + * i40e: create a generic configure rss function + - LP: #1536474 + * i40e: Bump version to 1.4.2 + - LP: #1536474 + * i40e: add new fields to store user configuration + - LP: #1536474 + * i40e: rename rss_size to alloc_rss_size in i40e_pf + - LP: #1536474 + * i40e/i40evf: Fix RS bit update in Tx path and disable force WB + workaround + - LP: #1536474 + * i40e/i40evf: prefetch skb data on transmit + - LP: #1536474 + * i40evf: rename VF adapter specific RSS function + - LP: #1536474 + * i40evf: create a generic config RSS function + - LP: #1536474 + * i40evf: create a generic get RSS function + - LP: #1536474 + * i40evf: add new fields to store user configuration of RSS + - LP: #1536474 + * i40e: Update error messaging + - LP: #1536474 + * i40e: fix confusing message + - LP: #1536474 + * i40e: make error message more useful + - LP: #1536474 + * i40evf: quoth the VF driver, Nevermore + - LP: #1536474 + * i40evf: allocate queue vectors dynamically + - LP: #1536474 + * i40evf: allocate ring structs dynamically + - LP: #1536474 + * i40e/i40evf: Bump i40e version to 1.4.4 and i40evf to 1.4.1 + - LP: #1536474 + * i40e: fix: do not sleep in netdev_ops + - LP: #1536474 + * i40e: remove unused argument + - LP: #1536474 + * i40evf: increase max number of queues + - LP: #1536474 + * i40evf: set real num queues + - LP: #1536474 + * i40evf: remove duplicate string + - LP: #1536474 + * i40e: Detection and recovery of TX queue hung logic moved to + service_task from tx_timeout + - LP: #1536474 + * i40e: Fix memory leaks, sideband filter programming + - LP: #1536474 + * i40evf: don't use atomic allocation + - LP: #1536474 + * i40e: propagate properly + - LP: #1536474 + * i40evf: use correct types + - LP: #1536474 + * i40e: use priv flags to control packet split + - LP: #1536474 + * i40e: Remove separate functions gathering XOFF Rx stats + - LP: #1536474 + * i40e: fix whitespace + - LP: #1536474 + * i40e/i40evf: use logical operator + - LP: #1536474 + * i40e/i40evf: Bump version to 1.4.7 for i40e and 1.4.3 for i40evf + - LP: #1536474 + * i40e: trivial fixes + - LP: #1536474 + * i40e: Fix i40e_print_features() VEB mode output + - LP: #1536474 + * i40e: chomp the BIT(_ULL) + - LP: #1536474 + * i40e: properly delete VF MAC filters + - LP: #1536474 + * i40e: don't add zero MAC filter + - LP: #1536474 + * i40evf: check rings before freeing resources + - LP: #1536474 + * i40e: use explicit cast from u16 to u8 + - LP: #1536474 + * i40e: Opcode and structures required by OEM Post Update AQ command and + add new NVM arq message + - LP: #1536474 + * i40e: hush little warnings + - LP: #1536474 + * i40e/i40evf: Add a new offload for RSS PCTYPE V2 for X722 + - LP: #1536474 + * i40e: clean whole mac filter list + - LP: #1536474 + * i40evf: change version string generation + - LP: #1536474 + * i40e/i40evf: Bump i40e to 1.4.8 and i40evf to 1.4.4 + - LP: #1536474 + * geneve: UDP checksum configuration via netlink + - LP: #1536474 + * geneve: Add geneve udp port offload for ethernet devices + - LP: #1536474 + * i40e: geneve tunnel offload support + - LP: #1536474 + * geneve: Add geneve_get_rx_port support + - LP: #1536474 + * i40e: Call geneve_get_rx_port to get the existing Geneve ports + - LP: #1536474 + * i40e: change log messages and error returns + - LP: #1536474 + * i40e: allow zero MAC address for VFs + - LP: #1536474 + * i40e: Look up MAC address in Open Firmware or IDPROM + - LP: #1536474 + * i40e: Fix Rx hash reported to the stack by our driver + - LP: #1536474 + * i40e: remove forever unused ID + - LP: #1536474 + * igb: add 88E1543 initialization code + * igb: don't unmap NULL hw_addr + * igb: use the correct i210 register for EEMNGCTL + * igb: fix NULL derefs due to skipped SR-IOV enabling + * igb: improve handling of disconnected adapters + * igb: Remove GS40G specific defines/functions + * igb: Don't add PHY address to PCDL address + * igb: Improve cable length function for I210, etc. + * igb: Explicitly label self-test result indices + * ixgbe: drop null test before destroy functions + - LP: #1536473 + * ixgbe: Delete redundant include file + - LP: #1536473 + * ixgbe: fix multiple kernel-doc errors + - LP: #1536473 + * ixgbe: Fix handling of NAPI budget when multiple queues are enabled per + vector + - LP: #1536473 + * ixgbe: Add KR mode support for CS4227 chip + - LP: #1536473 + * ixgbevf: Limit lowest interrupt rate for adaptive interrupt moderation + to 12K + - LP: #1536473 + * ixgbe/ixgbevf: use napi_schedule_irqoff() + - LP: #1536473 + * ixgbe: Remove CS4227 diagnostic code + - LP: #1536473 + * ixgbevf: use ether_addr_copy instead of memcpy + - LP: #1536473 + * ixgbevf: fix spoofed packets with random MAC + - LP: #1536473 + * ixgbe: Prevent KR PHY reset in ixgbe_init_phy_ops_x550em + - LP: #1536473 + * ixgbe: Add support for newer thermal alarm + - LP: #1536473 + * ixgbe: Use private workqueue to avoid certain possible hangs + - LP: #1536473 + * ixgbevf: Use a private workqueue to avoid certain possible hangs + - LP: #1536473 + * ixgbevf: Minor cleanups + - LP: #1536473 + * ixgbe: Refactor MAC address configuration code + - LP: #1536473 + * ixgbe: Use __dev_uc_sync and __dev_uc_unsync for unicast addresses + - LP: #1536473 + * ixgbe: Allow FDB entries access to more RAR filters + - LP: #1536473 + * ixgbe: Update PTP to support X550EM_x devices + - LP: #1536473 + * ixgbe: Correct spec violations by waiting after reset + - LP: #1536473 + * ixgbe: Wait for master disable to be set + - LP: #1536473 + * ixgbe: Save VF info and take references + - LP: #1536473 + * ixgbe: Handle extended IPv6 headers in Tx path + - LP: #1536473 + * ixgbe: Always turn PHY power on when requested + - LP: #1536473 + * ixgbevf: Handle extended IPv6 headers in Tx path + - LP: #1536473 + * ixgbe: Return error on failure to allocate mac_table + - LP: #1536473 + * ixgbe: Fix SR-IOV VLAN pool configuration + - LP: #1536473 + * ixgbe: Simplify definitions for regidx and bit in set_vfta + - LP: #1536473 + * ixgbe: Reduce VT code indent in set_vfta by introducing jump label + - LP: #1536473 + * ixgbe: Simplify configuration of setting VLVF and VLVFB + - LP: #1536473 + * ixgbe: Add support for adding/removing VLAN on PF bypassing the VLVF + - LP: #1536473 + * ixgbe: Reorder search to work from the top down instead of bottom up + - LP: #1536473 + * ixgbe: Add support for VLAN promiscuous with SR-IOV + - LP: #1536473 + * ixgbe: Fix VLAN promisc in relation to SR-IOV + - LP: #1536473 + * ixgbe: Clear stale pool mappings + - LP: #1536473 + * ixgbe: Clean stale VLANs when changing port VLAN or resetting + - LP: #1536473 + * ixgbe: do not report 2.5 Gbps as supported + - LP: #1536473 + * ixgbevf: Fix handling of NAPI budget when multiple queues are enabled + per vector + - LP: #1536473 + * ixgbevf: minor cleanups for ixgbevf_set_itr() + - LP: #1536473 + * ixgbe: add support for QSFP PHY types in ixgbe_get_settings() + - LP: #1536473 + * ixgbe: report correct media type for KR, KX and KX4 interfaces + - LP: #1536473 + * ixgbe: Clean up redundancy in hw_enc_features + - LP: #1536473 + * ixgbe: fix RSS limit for X550 + - LP: #1536473 + * ixgbe: Correct X550EM_x revision check + - LP: #1536473 + * ixgbe: Fix bugs in ixgbe_clear_vf_vlans() + - LP: #1536473 + * ixgbe: Fill at least min credits to a TC credit refills + - LP: #1536473 + * ixgbe: use correct FCoE DDP max check + - LP: #1536473 + * ixgbe: fix broken PFC with X550 + - LP: #1536473 + * ixgbe: do not call check_link for ethtool in ixgbe_get_settings() + - LP: #1536473 + * ixgbe: Correct handling of any outer UDP checksum setting + - LP: #1536473 + * ixgbe: Fix to get FDMI HBA attributes information with X550 + - LP: #1536473 + * ixgbe: Fix MDD events generated when FCoE+SRIOV are enabled + - LP: #1536473 + * ixgbe: Make ATR recognize IPv6 extended headers + - LP: #1536473 + * e1000: make eeprom read/write scheduler friendly + * e1000: fix data race between tx_ring->next_to_clean + * e1000: Remove checkpatch coding style errors + * e1000: clean up the checking logic + * e1000: fix a typo in the comment + * e1000e: clean up the local variable + * e1000: fix kernel-doc argument being missing + * e1000: get rid of duplicate exit path + * e1000: Elementary checkpatch warnings and checks removed + * e1000e: fix division by zero on jumbo MTUs + * e1000e: Increase timeout of polling bit RSPCIPHY + * e1000e: initial support for i219-LM (3) + * e1000e: Switch e1000e_up to void, drop code checking for error result + * e1000e: Remove unreachable code + * e1000e: Do not read ICR in Other interrupt + * e1000e: Do not write lsc to ics in msi-x mode + * e1000e: Fix msi-x interrupt automask + * acpi: pci: Setup MSI domain for ACPI based pci devices + * irqdomain: Introduce is_fwnode_irqchip helper + * irqchip/gic-v2m: Refactor to prepare for ACPI support + * irqchip/gic-v2m: acpi: Introducing GICv2m ACPI support + * clk: xgene: Fix divider with non-zero shift value + * i2c: designware: Do not require clock when SSCN and FFCN are provided + * fm10k: do not assume VF always has 1 queue + - LP: #1536475 + * fm10k: Correct MTU for jumbo frames + - LP: #1536475 + * fm10k: Fix handling of NAPI budget when multiple queues are enabled per + vector + - LP: #1536475 + * fm10k: use napi_schedule_irqoff() + - LP: #1536475 + * fm10k: set netdev features in one location + - LP: #1536475 + * fm10k: reset max_queues on init_hw_vf failure + - LP: #1536475 + * fm10k: always check init_hw for errors + - LP: #1536475 + * fm10k: reinitialize queuing scheme after calling init_hw + - LP: #1536475 + * fm10k: Correct typecast in fm10k_update_xc_addr_pf + - LP: #1536475 + * fm10k: explicitly typecast vlan values to u16 + - LP: #1536475 + * fm10k: add statistics for actual DWORD count of mbmem mailbox + - LP: #1536475 + * fm10k: rename mbx_tx_oversized statistic to mbx_tx_dropped + - LP: #1536475 + * fm10k: Add support for ITR scaling based on PCIe link speed + - LP: #1536475 + * fm10k: introduce ITR_IS_ADAPTIVE macro + - LP: #1536475 + * fm10k: Update adaptive ITR algorithm + - LP: #1536475 + * fm10k: use macro for default Tx and Rx ITR values + - LP: #1536475 + * fm10k: change default Tx ITR to 25usec + - LP: #1536475 + * fm10k: TRIVIAL fix typo of hardware + - LP: #1536475 + * fm10k: TRIVIAL cleanup order at top of fm10k_xmit_frame + - LP: #1536475 + * fm10k: use ether_addr_copy to copy MAC address + - LP: #1536475 + * fm10k: do not use CamelCase + - LP: #1536475 + * fm10k: remove unnecessary else block from if statements with return + - LP: #1536475 + * fm10k: remove namespace pollution of fm10k_iov_msg_data_pf + - LP: #1536475 + * fm10k: consistently refer to VLANs and VLAN IDs + - LP: #1536475 + * fm10k: bump driver version + - LP: #1536475 + * fm10k: conditionally compile DCB and DebugFS support + - LP: #1536475 + * fm10k: Cleanup MSI-X interrupts in case of failure + - LP: #1536475 + * fm10k: Cleanup exception handling for mailbox interrupt + - LP: #1536475 + * fm10k: do not inline fm10k_iov_select_vid() + - LP: #1536475 + * fm10k: whitespace cleanups + - LP: #1536475 + * fm10k: use BIT() macro instead of open-coded bit-shifting + - LP: #1536475 + * fm10k: cleanup namespace pollution + - LP: #1536475 + * fm10k: cleanup overly long lines + - LP: #1536475 + * fm10k: initialize xps at driver load + - LP: #1536475 + * fm10k: don't initialize fm10k_workqueue at global level + - LP: #1536475 + * fm10k: correctly pack TLV structures and explain reasoning + - LP: #1536475 + * fm10k: Cleanup exception handling for changing queues + - LP: #1536475 + * fm10k: use ether_addr_equal instead of memcmp + - LP: #1536475 + * fm10k: address operator not needed when declaring function pointers + - LP: #1536475 + * fm10k: constify fm10k_mac_ops, fm10k_iov_ops and fm10k_info structures + - LP: #1536475 + * fm10k: remove unused struct element + - LP: #1536475 + * fm10k: use true/false for boolean get_host_state + - LP: #1536475 + * fm10k: cleanup mailbox code comments etc + - LP: #1536475 + * fm10k: IS_ENABLED() is not appropriate for boolean kconfig option + - LP: #1536475 + * device property: always check for fwnode type + - LP: #1533035 + * device property: rename helper functions + - LP: #1533035 + * device property: refactor built-in properties support + - LP: #1533035 + * device property: keep single value inplace + - LP: #1533035 + * device property: helper macros for property entry creation + - LP: #1533035 + * device property: improve readability of macros + - LP: #1533035 + * device property: return -EINVAL when property isn't found in ACPI + - LP: #1533035 + * device property: Fallback to secondary fwnode if primary misses the + property + - LP: #1533035 + * device property: Take a copy of the property set + - LP: #1533035 + * driver core: platform: Add support for built-in device properties + - LP: #1533035 + * driver core: Do not overwrite secondary fwnode with NULL if it is set + - LP: #1533035 + * mfd: core: propagate device properties to sub devices drivers + - LP: #1533035 + * mfd: intel-lpss: Add support for passing device properties + - LP: #1533035 + * mfd: intel-lpss: Pass SDA hold time to I2C host controller driver + - LP: #1533035 + * mfd: intel-lpss: Pass HSUART configuration via properties + - LP: #1533035 + * i2c: designware: Convert to use unified device property API + - LP: #1533035 + * keys, trusted: fix: *do not* allow duplicate key options + - LP: #1398274 + * keys, trusted: select hash algorithm for TPM2 chips + - LP: #1398274 + * keys, trusted: seal with a TPM2 authorization policy + - LP: #1398274 + * perf/x86/intel: Add perf core PMU support for Intel Knights Landing + - LP: #1461360 + * perf/x86/intel/uncore: Add Knights Landing uncore PMU support + - LP: #1461360 + * perf/x86/intel/uncore: Remove hard coding of PMON box control MSR + offset + - LP: #1461360 + * drm/i915: WaRsDisableCoarsePowerGating + - LP: #1527462 + * drm/i915/skl: Add SKL GT4 PCI IDs + - LP: #1527462 + * drm/i915/skl: Disable coarse power gating up until F0 + - LP: #1527462 + * platform:x86: add Intel P-Unit mailbox IPC driver + - LP: #1520457 + * intel_punit_ipc: add NULL check for input parameters + - LP: #1520457 + * platform/x86: Add Intel Telemetry Core Driver + - LP: #1520457 + * intel_pmc_ipc: update acpi resource structure for Punit + - LP: #1520457 + * platform:x86: Add Intel telemetry platform device + - LP: #1520457 + * platform:x86: Add Intel telemetry platform driver + - LP: #1520457 + * platform:x86: Add Intel Telemetry Debugfs interfaces + - LP: #1520457 + * cxlflash: a couple off by one bugs + + -- Andy Whitcroft Thu, 28 Jan 2016 13:56:00 +0000 + +linux (4.4.0-1.15) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1536803 + + [ Upstream Kernel Changes ] + + * Revert "[SCSI] libiscsi: Reduce locking contention in fast path" + - LP: #1517142 + + -- Tim Gardner Wed, 20 Jan 2016 07:41:40 -0700 + +linux (4.4.0-0.14) xenial; urgency=low + + [ Upstream Kernel Changes ] + + * Revert "powerpc/pci: Remove unused struct pci_dn.pcidev field" + - LP: #1522415 + * powerpc: Add __raw_rm_writeq() function + - LP: #1522415 + + -- Tim Gardner Tue, 19 Jan 2016 11:24:26 -0700 + +linux (4.4.0-0.13) xenial; urgency=low + + [ Andy Whitcroft ] + + * [Config] s390x -- the kernel provides ppp-modules such as there are + * SAUCE: (no-up) add compat_uts_machine= kernel command line override + + [ Tim Gardner ] + + * [Config] Update annotations for VIRTIO_{NET,BLK} + - LP: #1533382 + + [ Upstream Kernel Changes ] + + * powerpc/powernv: Add support for Nvlink NPUs + - LP: #1522415 + * powerpc/powernv: Fix update of NVLink DMA mask + - LP: #1522415 + * powerpc/powernv: Change NPU PE# assignment + - LP: #1522415 + * powerpc/powernv: Reserve PE#0 on NPU + - LP: #1522415 + * KEYS: Fix keyring ref leak in join_session_keyring() + - LP: #1534887 + - CVE-2016-0728 + + -- Tim Gardner Tue, 19 Jan 2016 05:49:09 -0700 + +linux (4.4.0-0.12) xenial; urgency=low + + [ Eric Dumazet ] + + * SAUCE: (no-up) udp: properly support MSG_PEEK with truncated buffers + - LP: #1527902 + + [ Guilherme G. Piccoli ] + + * SAUCE: powerpc/eeh: Validate arch in eeh_add_device_early() + - LP: #1486180 + + [ Tim Gardner ] + + * SAUCE: AUFS - update to aufs4.x-rcN 20160111 + * [Config] CONFIG_VIRTIO_BLK=y, CONFIG_VIRTIO_NET=y for s390 + - LP: #1532886 + * [Config] nvme.ko moved to drivers/nvme/host + * [Config] scsi_dh morphed into 4 modules + * [Config] CONFIG_IBMVNIC=m + * [Config] Add DRM ast driver to udeb installer image + - LP: #1514711 + * [Config] CONFIG_KVM=y for s390x + - LP: #1532886 + * [Config] Install spl/zfs under the kernel modules directory + Fixes some errors in generic.inclusion-list.log + + [ Upstream Kernel Changes ] + + * perf/x86/intel/uncore: Add Broadwell-EP uncore support + - LP: #1524574 + * EDAC: Add DDR4 flag + - LP: #1519631 + * EDAC, sb_edac: Virtualize several hard-coded functions + - LP: #1519631 + * EDAC, sb_edac: Add support for duplicate device IDs + - LP: #1519631 + * EDAC, sb_edac: Add Knights Landing (Xeon Phi gen 2) support + - LP: #1519631 + * Driver for IBM System i/p VNIC protocol + - LP: #1532303 + + -- Tim Gardner Mon, 11 Jan 2016 09:57:16 -0700 + +linux (4.4.0-0.11) xenial; urgency=low + + [ Tim Gardner ] + + * [Config] Fix bogus reconstruct script + + -- Tim Gardner Mon, 11 Jan 2016 07:29:17 -0700 + +linux (4.4.0-0.10) xenial; urgency=low + + [ Haren Myneni ] + + * SAUCE: crypto: nx-842 - Mask XERS0 bit in return value + - LP: #1529666 + + [ Serge Hallyn ] + + * SAUCE: add a sysctl to disable unprivileged user namespace unsharing + + [ Tim Gardner ] + + * [Config] CONFIG_ZONE_DEVICE=y for amd64 + * [Config] CONFIG_BLK_DEV_LOOP=y for s390x + - LP: #1526869 + * SAUCE: (no-up) apparmor: Fix incompatible pointer type warnings + * SAUCE: radeon: r100: Silence 'may be used uninitialized' warnings + * SAUCE: dmaengine: ioatdma: Squelch framesize warnings + * rebase to v4.4 + + [ Upstream Kernel Changes ] + + * rebase to v4.4 + + -- Tim Gardner Mon, 04 Jan 2016 17:43:51 -0700 + +linux (4.4.0-0.9) xenial; urgency=low + + [ Tim Gardner ] + + * rebase to v4.4-rc8 + + [ Upstream Kernel Changes ] + + * rebase to v4.4-rc8 + + -- Tim Gardner Sun, 03 Jan 2016 18:50:33 -0700 + +linux (4.4.0-0.8) xenial; urgency=low + + [ Tim Gardner ] + + * rebase to v4.4-rc7 + + [ Upstream Kernel Changes ] + + * rebase to v4.4-rc7 + + -- Tim Gardner Mon, 28 Dec 2015 16:13:11 -0700 + +linux (4.4.0-0.7) xenial; urgency=low + + [ Hui Wang ] + + * [Config] CONFIG_I2C_DESIGNWARE_BAYTRAIL=y, CONFIG_IOSF_MBI=y + - LP: #1527096 + + [ Jann Horn ] + + * SAUCE: (noup) ptrace: being capable wrt a process requires mapped + uids/gids + - LP: #1527374 + + [ Tim Gardner ] + + * rebase to v4.4-rc6 + + [ Upstream Kernel Changes ] + + * rebase to v4.4-rc6 + - LP: #1526330 + + -- Tim Gardner Thu, 17 Dec 2015 05:28:27 -0700 + +linux (4.4.0-0.6) xenial; urgency=low + + [ Andy Whitcroft ] + + * [Config] disable CONFIG_ARM64_LSE_ATOMICS to avoid issues with ARMv8.1 + support in latest compilers + * [Config] disable CONFIG_CRYPTO_AES_ARM64_CE* to avoid issues with + ARMv8.1 support in latest compilers + + [ Tim Gardner ] + + * [Config] s390 -> s390x + * SAUCE: include/linux/mmdebug.h: #include + + -- Tim Gardner Tue, 15 Dec 2015 06:46:26 -0700 + +linux (4.4.0-0.5) xenial; urgency=low + + [ Andy Whitcroft ] + + * [Config] s390x -- enable tools + - LP: #1524319 + * [Config] s390x -- add architecture to getabis + * [Config] s390x -- add s390x ABI information + * [Config] s390x -- enable ABI checks + + [ Tim Gardner ] + + * [Debian] config-check and prepare using ${DEBIAN}/config/annotations + * [Config] Add s390 modules to nic-modules udeb + - LP: #1525297 + * rebase to v4.4-rc5 + + [ Upstream Kernel Changes ] + + * rebase to v4.4-rc5 + - LP: #1523517 + - LP: #1523232 + + -- Tim Gardner Mon, 14 Dec 2015 05:28:05 -0700 + +linux (4.4.0-0.4) xenial; urgency=low + + [ Upstream Kernel Changes ] + + * cgroup: make css_set pin its css's to avoid use-afer-free + * cgroup_freezer: simplify propagation of CGROUP_FROZEN clearing in + freezer_attach() + * cgroup: fix handling of multi-destination migration from + subtree_control enabling + + -- Tim Gardner Tue, 08 Dec 2015 11:20:41 -0700 + +linux (4.4.0-0.3) xenial; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to v4.4-rc4 + + -- Tim Gardner Sun, 06 Dec 2015 16:50:15 -0700 + +linux (4.4.0-0.2) xenial; urgency=low + + [ Tim Gardner ] + + * [Config] Add spl/zfs provides to generic and powerpc64-smp + * [Config] Add zfs to d-i fs-core-modules + * [Config] Include all s390 specific drivers in linux-image + - LP: #1522210 + + -- Tim Gardner Thu, 03 Dec 2015 07:05:56 -0700 + +linux (4.4.0-0.1) xenial; urgency=low + + [ Andy Whitcroft ] + + * [Tests] gcc-multilib does not exist on ppc64el redux + - LP: #1515541 + * [Config] libunwind8-dev is not available on s390x + * [Debian] Disable SPL/ZFS for cross compiling -- redux + * [Config] s390x -- add dasd udebs + - LP: #1519833 + * [Config] s390x -- include dasd modules in linux-image + - LP: #1519833 + * [Config] s390x -- disable ZFS temporarily + - LP: #1519820 + * [Config] s390s -- disable ABI/module checks + * [Config] make IBMVETH consistent on powerpc/ppc64el + - LP: #1521712 + * [Config] follow ibmvscsi name change + - LP: #1521712 + * [Config] move ibm disk and ethernet drivers to linux-image + - LP: #1521712 + * [Config] include ibmveth in nic-modules for ppc64el + - LP: #1521712 + * [Config] s390x -- disable abi/module checks for s390x + + [ Joseph Salisbury ] + + * SAUCE: scsi_sysfs: protect against double execution of + __scsi_remove_device() + - LP: #1509029 + + [ Seth Forshee ] + + * [Config] CONFIG_DRM_AMDGPU_CIK=n + - LP: #1510405 + + [ Tim Gardner ] + + * [Debian] Disable SPL/ZFS for cross compiling + * [Config] CONFIG_SCSI_IBMVSCSI=m + - LP: #1515872 + * rebase to v4.4-rc2 + * [Config] updateconfigs + * [Config] CONFIG_WILC1000_DRIVER=n for FTBS + * SAUCE: do_zfs=false temporarily + * [Config] CONFIG_LUSTRE_FS=n + * [Debian] Disable udebs when cross compiling + * rebase to v4.4-rc3 + * [Config] CONFIG_AUFS_FS=m + * SAUCE: AUFS + + [ Upstream Kernel Changes ] + + * ZFS: Update with 4.4 support + * SPL: Update with 4.4 support + + [ Upstream Kernel Changes ] + + * rebase to v4.4-rc3 + - LP: #1519168 + * rebase to v4.4-rc2 + - LP: #1506615 + - LP: #1502781 + + -- Tim Gardner Mon, 23 Nov 2015 13:22:37 -0700 + +linux (4.3.0-0.8) xenial; urgency=low + + [ Andy Whitcroft ] + + * [Config] re-enable OSS support and blacklist + - LP: #1434842 + * [Config] enable CONFIG_CC_STACKPROTECTOR_STRONG=y + * [Packaging] config-check -- improve syntax diagnostics + * [Packaging] module-inclusion -- add dependency inclusion for a list + * [Packaging] config-check -- accumulate multi-line annotations correctly + * [Packaging] config-check -- handle V2 annotations format + * [Packaging] s390x -- add architecture to kernelconfig + - LP: #1488653 + * [Config] s390x -- initial configuration + * [Config] s390x -- add initial binary image + * [Config] s390x -- initial configuration update + * [Config] s390x -- produce linux-image + * [Config] s390x -- d-i module exclusions + * [Config] apply Device Drivers >> LED Support >> LED Class Support + * [Config] apply File systems >> Miscellaneous filesystems >> SquashFS 4.0 - Squashed file system support + * [Config] apply Device Drivers >> Generic Driver Options >> Userspace firmware loading support + * SAUCE: leds: lp55xx -- do not force use of the fallback loader + * [Config] -- s390x -- configuration review updates + * [Config] annotations -- add review marks + * [Config] annotations -- config review 4.3 updates + * [Config] annotations -- expose reviews + * [Config] updateconfigs following incoporation of s390x configs + * [Tests] gcc-multilib does not exist on ppc64el + - LP: #1515541 + + [ Dan Carpenter ] + + * SAUCE: (noup) cxlflash: a couple off by one bugs + - LP: #1499849 + + [ Haren Myneni ] + + * Revert "SAUCE: (noup) crypto: 842 - Add CRC and validation support" + + [ Jay Vosburgh ] + + * SAUCE: fan: add VXLAN implementation + + [ Manoj Kumar ] + + * SAUCE: (noup) cxlflash: Fix to escalate LINK_RESET also on port 1 + - LP: #1513583 + + [ Matthew R. Ochs ] + + * SAUCE: (noup) cxlflash: Fix to avoid virtual LUN failover failure + - LP: #1513583 + + [ Tim Gardner ] + + * [Config] CONFIG_AUFS_EXPORT=y + - LP: #1121699 + + [ Upstream Kernel Changes ] + + * misc/genwqe: get rid of atomic allocations + * crypto: 842 - Add CRC and validation support + - LP: #1497878 + * cxlflash: Fix to avoid invalid port_sel value + * cxlflash: Replace magic numbers with literals + * cxlflash: Fix read capacity timeout + * cxlflash: Fix potential oops following LUN removal + * cxlflash: Fix data corruption when vLUN used over multiple cards + * cxlflash: Fix to avoid sizeof(bool) + * cxlflash: Fix context encode mask width + * cxlflash: Fix to avoid CXL services during EEH + * cxlflash: Correct naming of limbo state and waitq + * cxlflash: Make functions static + * cxlflash: Refine host/device attributes + * cxlflash: Fix to avoid spamming the kernel log + * cxlflash: Fix to avoid stall while waiting on TMF + * cxlflash: Fix location of setting resid + * cxlflash: Fix host link up event handling + * cxlflash: Fix async interrupt bypass logic + * cxlflash: Remove dual port online dependency + * cxlflash: Fix AFU version access/storage and add check + * cxlflash: Correct usage of scsi_host_put() + * cxlflash: Fix to prevent workq from accessing freed memory + * cxlflash: Correct behavior in device reset handler following EEH + * cxlflash: Remove unnecessary scsi_block_requests + * cxlflash: Fix function prolog parameters and return codes + * cxlflash: Fix MMIO and endianness errors + * cxlflash: Fix to prevent EEH recovery failure + * cxlflash: Correct spelling, grammar, and alignment mistakes + * cxlflash: Fix to prevent stale AFU RRQ + * cxlflash: Fix to double the delay each time + * cxlflash: Fix to avoid corrupting adapter fops + * cxlflash: Correct trace string + * cxlflash: Fix to avoid potential deadlock on EEH + * cxlflash: Fix to avoid leaving dangling interrupt resources + * cxlflash: Fix to escalate to LINK_RESET on login timeout + * cxlflash: Fix to avoid corrupting port selection mask + * cxlflash: Fix to avoid lock instrumentation rejection + * cxlflash: Fix to avoid bypassing context cleanup + + -- Tim Gardner Fri, 06 Nov 2015 10:15:07 -0600 + +linux (4.3.0-0.7) xenial; urgency=low + + [ Tim Gardner ] + + * Revert "Bypass spl/zfs config" + Causes unresolved symbols on load. + * [Config] Enable ZFS for powerpc64-smp + + -- Tim Gardner Thu, 05 Nov 2015 11:42:37 -0600 + +linux (4.3.0-0.6) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1512704 + * UBUNTU: SAUCE: AUFS aufs4.x-rcN 20151102 + + [ Andy Whitcroft ] + + * [Packaging] add feature interlock with mainline builds + * apparmor -- follow change to this_cpu_ptr + + [ John Johansen ] + + * SAUCE: (no-up) apparmor: add parameter to control whether policy hashing is used + - LP: #1383886 + * SAUCE: (no-up) apparmor: Sync to apparmor3 - RC1 snapshot + - LP: #1362199 + * SAUCE: Revert: fix: only allow a single threaded process to ... + - LP: #1371310 + * SAUCE: (no-up) fix: bad unix_addr_fs macro + - LP: #1390223 + * SAUCE: (no-up): apparmor: fix mediation of fs unix sockets + - LP: #1408833 + * SAUCE: (no-up) apparmor: fix mount not handling disconnected paths + - LP: #1496430 + + [ Tim Gardner ] + + * [Config] Add iscsi_ibft and iscsi_boot_sysfs to generic inclusion list + - LP: #1511006 + * rebase to v4.3 + * Bypass spl/zfs config + * SPL/ZFS: Add Makefiles in order to avoid the lengthy config + * [Config] Default AppArmor settings + + [ Upstream Kernel Changes ] + + * rebase to v4.3 + + -- Tim Gardner Thu, 29 Oct 2015 09:16:26 -0600 + +linux (4.3.0-0.5) xenial; urgency=low + + * Update spl to 0.6.5.3-0ubuntu1, zfs to 0.6.5.3-0ubuntu1 + + [ Upstream Kernel Changes ] + + * rebase to v4.3-rc7 + - LP: #1504778 + + -- Tim Gardner Fri, 23 Oct 2015 13:59:52 -0600 + +linux (4.3.0-0.4) xenial; urgency=low + + [ Tim Gardner ] + + * [Debian] Update to new signing key type and location + + -- Tim Gardner Wed, 21 Oct 2015 13:07:30 -0600 + +linux (4.3.0-0.3) wily; urgency=low + + [ Tim Gardner ] + + * [Debian] sign-file is now compiled + + -- Tim Gardner Wed, 21 Oct 2015 09:26:34 -0600 + +linux (4.3.0-0.2) wily; urgency=low + + [ Tim Gardner ] + + * [Config] Added libssl-dev to Build-Depends + + -- Tim Gardner Tue, 20 Oct 2015 14:01:55 -0600 + +linux (4.3.0-0.1) wily; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to v4.3-rc6 + * rebase to v4.3-rc5 + * rebase to v4.3-rc4 + * rebase to v4.3-rc3 + * rebase to v4.3-rc2 + * rebase to v4.3-rc1 + - LP: #1492132 + - LP: #1481575 + + -- Tim Gardner Mon, 14 Sep 2015 07:30:36 -0600 + +linux (4.2.0-10.11) wily; urgency=low + + [ Andy Whitcroft ] + + * Release Tracking Bug + - LP: #1495208 + * No change rebuild to avoid issues with leading zero bytes on + internal module signing key. (see launchpad bug 1494943) + + [ Ming Lei ] + + * [Config] SERIAL_8250_DW=y for arm64 + + [ Upstream Kernel Changes ] + + * drm/i915: Move WaBarrierPerformanceFixDisable:skl to skl code from chv + code + - LP: #1484486 + * drm/i915/gen8: Add infrastructure to initialize WA batch buffers + - LP: #1484486 + * drm/i915/gen8: Re-order init pipe_control in lrc mode + - LP: #1484486 + * drm/i915/gen8: Add WaDisableCtxRestoreArbitration workaround + - LP: #1484486 + * drm/i915/gen8: Add WaFlushCoherentL3CacheLinesAtContextSwitch + workaround + - LP: #1484486 + * drm/i915: Bail out early if WA batch is not available for given Gen + - LP: #1484486 + * drm/i915/gen8: Add WaClearSlmSpaceAtContextSwitch workaround + - LP: #1484486 + * drm/i915: Update WaFlushCoherentL3CacheLinesAtContextSwitch + - LP: #1484486 + * drm/i915/gen9: Implement WaDisableKillLogic for gen 9 + - LP: #1484486 + * drm/i915: Enable WA batch buffers for Gen9 + - LP: #1484486 + * drm/i915/gen9: Add WaDisableCtxRestoreArbitration workaround + - LP: #1484486 + * drm/i915: Update wa_ctx_emit() macro as per kernel coding guidelines + - LP: #1484486 + * drm/i915/gen9: Add WaFlushCoherentL3CacheLinesAtContextSwitch + workaround + - LP: #1484486 + * drm/i915/gen9: Add + WaSetDisablePixMaskCammingAndRhwoInCommonSliceChicken + - LP: #1484486 + * drm/i915:skl: Add WaEnableGapsTsvCreditFix + - LP: #1484486 + * drm/i915/skl: revert duplicated WaBarrierPerformanceFixDisable:skl + - LP: #1484486 + * drm/i915/skl: Don't expose the top most plane on gen9 display + - LP: #1484486 + * drm/i915/skl WaDisableSbeCacheDispatchPortSharing + - LP: #1484486 + * drm/i915/skl: WaIgnoreDDIAStrap is forever, always init DDI A + - LP: #1484486 + * drm/i915: reduce indent in i9xx_hpd_irq_handler + - LP: #1484531 + * drm/i915: reduce duplicate conditions in i9xx_hpd_irq_handler + - LP: #1484531 + * drm/i915: reduce indent in intel_hpd_irq_handler + - LP: #1484531 + * drm/i915: group all hotplug related fields into a new struct in + dev_priv + - LP: #1484531 + * drm/i915: add for_each_hpd_pin to iterate over hotplug pins + - LP: #1484531 + * drm/i915: simplify conditions for skipping the 2nd hpd loop iterations + - LP: #1484531 + * drm/i915: put back the indent in intel_hpd_irq_handler + - LP: #1484531 + * drm/i915: merge the two hpd loops in intel_hpd_irq_handler to one + - LP: #1484531 + * drm/i915: simplify condition for digital port + - LP: #1484531 + * drm/i915: abstract away platform specific parts from hpd handling + - LP: #1484531 + * drm/i915: Handle HPD when it has actually occurred + - LP: #1484531 + * drm/i915: Set power domain for DDI-E + - LP: #1484531 + * drm/i915: Set alternate aux for DDI-E + - LP: #1484531 + * drm/i915/skl: enable DDI-E hotplug + - LP: #1484531 + * drm/i915/bxt: fix DDI PHY vswing scale value setting + - LP: #1494163 + * drm/i915/skl: Buffer translation improvements + - LP: #1494163 + * drm/i915: Per-DDI I_boost override + - LP: #1494163 + * drm/i915: fix VBT parsing for SDVO child device mapping + - LP: #1494163 + * drm/i915/bxt: edp1.4 Intermediate Freq support + - LP: #1494163 + * drm/i915: fix link rates reported for SKL + - LP: #1494163 + * drm/i915: Allow parsing of variable size child device entries from VBT + - LP: #1494163 + * drm/i915/skl: Update DDI buffer translation programming. + - LP: #1494163 + * drm/i915: Enable HDMI on DDI-E + - LP: #1484531 + * drm/i915/skl: Enable DDI-E + - LP: #1484531 + * drm/i915: eDP can be present on DDI-E + - LP: #1484531 + * drm/i915/skl: Adding DDI_E power well domain + - LP: #1484531 + * drm/i915: set CDCLK if DPLL0 enabled during resuming from S3 + - LP: #1490035 + * drm/i915: Split atomic wm update to pre and post variants + - LP: #1493746 + * drm/i915/skl: Drop the preliminary_hw_support flag + - LP: #1486868 + * drm/i915: set FDI translations to NULL on SKL + - LP: #1494163 + + -- Andy Whitcroft Sun, 13 Sep 2015 11:32:02 +0100 + +linux (4.2.0-9.9) wily; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1493970 + * [Config] CONFIG_MFD_INTEL_LPSS=m + - LP: #1397876 + + [ dann frazier ] + + * [Config] Disable CONFIG_IPMI_SI_PROBE_DEFAULTS on armhf and arm64 + - LP: #1388952 + + [ Michael Ellerman ] + + * SAUCE: crypto: vmx - VMX crypto should depend on CONFIG_VSX + Fixes FTBS on 32 bit powerpc, patch sent upstream. + + [ Upstream Kernel Changes ] + + * thermal/powerclamp: add cpu id for skylake h/s + - LP: #1398269 + * perf/x86/intel/uncore: Add Broadwell-DE uncore support + - LP: #1397852 + * mfd: watchdog: iTCO_wdt: Expose watchdog properties using platform data + - LP: #1460905 + * i2c: i801: Create iTCO device on newer Intel PCHs + - LP: #1460905 + * watchdog: iTCO_wdt: Add support for TCO on Intel Sunrisepoint + - LP: #1460905 + * perf/x86: Add a native_perf_sched_clock_from_tsc() + - LP: #1397867 + * perf/x86/intel: Add support for PEBSv3 profiling + - LP: #1397867 + * perf/x86/intel/lbr: Allow time stamp for free running PEBSv3 + - LP: #1397867 + * x86: Add new MSRs and MSR bits used for Intel Skylake PMU support + - LP: #1397867 + * perf: Add cycles to branch_info + - LP: #1397867 + * perf/x86/intel/lbr: Add support for LBRv5 + - LP: #1397867 + * perf/x86/intel: Handle new arch perfmon v4 status bits + - LP: #1397867 + * perf/x86/intel: Move PMU ACK to after LBR read + - LP: #1397867 + * perf/x86/intel/lbr: Optimize v4 LBR unfreezing + - LP: #1397867 + * perf/x86/intel: Add Intel Skylake PMU support + - LP: #1397867 + * perf/x86/intel/lbr: Use correct index to save/restore LBR_INFO with + call stack + - LP: #1397867 + * perf/x86/intel/lbr: Limit LBR accesses to TOS in callstack mode + - LP: #1397867 + * perf/x86: Make merge_attr() global to use from perf_event_intel + - LP: #1397867 + * perf/x86/intel: Use 0x11 as extra reg test value + - LP: #1397867 + * perf tools: Add support for cycles, weight branch_info field + - LP: #1397867 + * perf report: Add flag for non ANY branch mode + - LP: #1397867 + * perf report: Add infrastructure for a cycles histogram + - LP: #1397867 + * perf report: Add processing for cycle histograms + - LP: #1397867 + * perf annotate: Compute IPC and basic block cycles + - LP: #1397867 + * perf annotate: Finally display IPC and cycle accounting + - LP: #1397867 + * perf top: Add branch annotation code to top + - LP: #1397867 + * perf report: Display cycles in branch sort mode + - LP: #1397867 + * perf annotate: Fix 32-bit compilation error in util/annotate.c + - LP: #1397867 + * PM / QoS: Make it possible to expose device latency tolerance to + userspace + - LP: #1460908 + * ACPI / PM: Attach ACPI power domain only once + - LP: #1460908 + * Driver core: wakeup the parent device before trying probe + - LP: #1460908 + * klist: implement klist_prev() + - LP: #1460908 + * driver core: implement device_for_each_child_reverse() + - LP: #1460908 + * mfd: make mfd_remove_devices() iterate in reverse order + - LP: #1460908 + * dmaengine: add a driver for Intel integrated DMA 64-bit + - LP: #1460908 + * mfd: Add support for Intel Sunrisepoint LPSS devices + - LP: #1460908 + * spi: pxa2xx: Add support for Intel Sunrisepoint + - LP: #1397876 + * spi: spi-pxa2xx: Remove unused legacy PXA DMA API channel numbers + - LP: #1397876 + * spi: pxa2xx: Add terminating entry for pxa2xx_spi_pci_compound_match + - LP: #1397876 + * spi: spi-pxa2xx: Remove unused legacy null dma buffer and allocation + for it + - LP: #1397876 + * intel_idle: Skylake Client Support + - LP: #1397877 + * powerpc/kernel: Switch to using MAX_ERRNO + - LP: #1458876 + * powerpc/kernel: Change the do_syscall_trace_enter() API + - LP: #1458876 + * powerpc: Drop unused syscall_get_error() + - LP: #1458876 + * powerpc: Don't negate error in syscall_set_return_value() + - LP: #1458876 + * powerpc: Rework syscall_get_arguments() so there is only one loop + - LP: #1458876 + * powerpc: Use orig_gpr3 in syscall_get_arguments() + - LP: #1458876 + * powerpc: Change syscall_get_nr() to return int + - LP: #1458876 + * powerpc/kernel: Add SIG_SYS support for compat tasks + - LP: #1458876 + * powerpc/kernel: Enable seccomp filter + - LP: #1458876 + * selftests/seccomp: Make seccomp tests work on big endian + - LP: #1458876 + * selftests/seccomp: Add powerpc support + - LP: #1458876 + * eCryptfs: Invalidate dcache entries when lower i_nlink is zero + + -- Tim Gardner Tue, 08 Sep 2015 19:17:57 -0600 + +linux (4.2.0-8.8) wily; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1493357 + * [Config] CONFIG_CRYPTO_DEV_NX_COMPRESS_CRYPTO obsolete + - LP: #1488495 + * [Config] CONFIG_CXLFLASH=m + * [Config] CONFIG_CXL_EEH=y for ppc64el, powerpc64-smp + + + [ Andy Whitcroft ] + + * [Packaging] standardise on stage1 for the bootstrap stage in line with debian + * [Packaging] mark up control for stage1 + * [Config] kernel-versions -- clean up deps field + * [Config] s390x -- build linux-libc-dev + - LP: #1488653 + * [Packaging] control -- prepare for new kernel-wedge semantics + + [ Upstream Kernel Changes ] + + * crypto: vmx - Fixing AES-CTR counter bug + - LP: #1484519 + * crypto: vmx - Fixing GHASH Key issue on little endian + - LP: #1484519 + * powerpc: Uncomment and make enable_kernel_vsx() routine available + - LP: #1484519 + * crypto: vmx - Adding enable_kernel_vsx() to access VSX instructions + - LP: #1484519 + * crypto: nx - nx842_OF_upd_status should return ENODEV if device is not + 'okay' + - LP: #1488495 + * crypto: nx - rename nx842_{init, exit} to nx842_pseries_{init, exit} + - LP: #1488495 + * crypto: nx - do not emit extra output if status is disabled + - LP: #1488495 + * crypto: nx - reduce chattiness of platform drivers + - LP: #1488495 + * crypto: nx/842 - Fix context corruption + - LP: #1488495 + * crypto: nx - remove __init/__exit from VIO functions + - LP: #1488495 + * crypto: nx - remove pSeries NX 'status' field + - LP: #1488495 + * crypto: nx - move kzalloc() out of spinlock + - LP: #1488495 + * crypto: nx - don't register pSeries driver if ENODEV + - LP: #1488495 + * crypto: nx - use common code for both NX decompress success cases + - LP: #1488495 + * crypto: nx - merge nx-compress and nx-compress-crypto + - LP: #1488495 + * crypto: nx - rename nx-842-crypto.c to nx-842.c + - LP: #1488495 + * crypto: nx - make platform drivers directly register with crypto + - LP: #1488495 + * cxlflash: Base support for IBM CXL Flash Adapter + - LP: #1449121 + * cxlflash: Base error recovery support + - LP: #1449121 + * cxlflash: Superpipe support + - LP: #1449121 + * cxlflash: Virtual LUN support + - LP: #1449121 + * cxlflash: off by one bug in cxlflash_show_port_status() + - LP: #1449121 + * cxlflash: shift wrapping bug in afu_link_reset() + - LP: #1449121 + * cxlflash: Remove unused variable from queuecommand + - LP: #1449121 + * powerpc/powernv: move dma_get_required_mask from pnv_phb to + pci_controller_ops + * powerpc/eeh: Probe after unbalanced kref check + * misc: cxl: clean up afu_read_config() + * cxl: Add explicit precision specifiers + * cxl: use more common format specifier + * cxl: Destroy cxl_adapter_idr on module_exit + * cxl: Destroy afu->contexts_idr on release of an afu + * cxl: Don't ignore add_process_element() result when attaching context + * cxl: Compile with -Werror + * cxl: sparse: Make declarations static + * cxl: sparse: Silence iomem warning in debugfs file creation + * cxl: Convert MMIO read/write macros to inline functions + * cxl: Drop commands if the PCI channel is not in normal state + * cxl: Allocate and release the SPA with the AFU + * cxl: Make IRQ release idempotent + * cxl: Clean up adapter MMIO unmap path. + * cxl: Refactor adaptor init/teardown + * cxl: Refactor AFU init/teardown + * cxl: Don't remove AFUs/vPHBs in cxl_reset + * cxl: Allow the kernel to trust that an image won't change on PERST. + * cxl: EEH support + * cxl: Add CONFIG_CXL_EEH symbol + * cxl: Plug irq_bitmap getting leaked in cxl_context + * cxl: Add alternate MMIO error handling + * cxl: Allow release of contexts which have been OPENED but not STARTED + * cxl: Remove use of macro DEFINE_PCI_DEVICE_TABLE + * cxl: Release irqs if memory allocation fails + * cxl: Remove racy attempt to force EEH invocation in reset + * cxl: Fix + cleanup error paths in cxl_dev_context_init + * cxl: Fix force unmapping mmaps of contexts allocated through the kernel api + * cxl: Set up and enable PSL Timebase + + -- Tim Gardner Tue, 01 Sep 2015 07:38:43 -0600 + +linux (4.2.0-7.7) wily; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1490564 + * rebase to v4.2 + + [ Wen Xiong ] + + * SAUCE: ipr: Byte swapping for device_id attribute in sysfs + - LP: #1453892 + + [ Upstream Kernel Changes ] + + * rebase to v4.2 + - LP: #1487345 + + -- Tim Gardner Wed, 26 Aug 2015 07:06:10 -0600 + +linux (4.2.0-6.6) wily; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1488138 + + [ Andy Whitcroft ] + + * rebase to v4.2-rc8 + + [ Shilpasri G Bhat ] + + * SAUCE: cpufreq: powernv: Handle throttling due to Pmax capping at chip + level + - LP: #1480894 + * SAUCE: powerpc/powernv: Add definition of OPAL_MSG_OCC message type + - LP: #1480894 + * SAUCE: cpufreq: powernv: Register for OCC related opal_message + notification + - LP: #1480894 + * SAUCE: cpufreq: powernv: Call throttle_check() on receiving + OCC_THROTTLE + - LP: #1480894 + * SAUCE: cpufreq: powernv: Report Psafe only if PMSR.psafe_mode_active + bit is set + - LP: #1480894 + * SAUCE: cpufreq: powernv: Restore cpu frequency to policy->cur on + unthrottling + - LP: #1480894 + + [ Upstream Kernel Changes ] + + * rebase to v4.2-rc8 + - LP: #1483440 + - LP: #1484334 + + -- Tim Gardner Fri, 21 Aug 2015 07:12:11 -0600 + +linux (4.2.0-5.5) wily; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1487173 + + [ Andy Whitcroft ] + + * [Packaging] correct spelling of probabaly on the tools packages + - LP: #1256822 + * rebase to v4.2-rc7 + + [ dann frazier ] + + * d-i: Add nicpf and nicvf to nic-modules + * d-i: Enable usb modules on arm64 + + [ Mahesh Salgaonkar ] + + * SAUCE: powerpc/powernv: display reason for Malfunction Alert HMI. + - LP: #1482343 + * SAUCE: powerpc/powernv: Pull all HMI events before panic. + - LP: #1482343 + * SAUCE: powerpc/powernv: Invoke opal_cec_reboot2() on unrecoverable + machine check errors. + - LP: #1482343 + * SAUCE: powerpc/powernv: Invoke opal_cec_reboot2() on unrecoverable HMI. + - LP: #1482343 + + [ Vipin K Parashar ] + + * SAUCE: powerpc/powernv: Add poweroff (EPOW, DPO) events support for + PowerNV platform + - LP: #1469771 + + [ Upstream Kernel Changes ] + + * rebase to v4.2-rc7 + + -- Tim Gardner Tue, 11 Aug 2015 09:48:40 -0600 + +linux (4.2.0-4.4) wily; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1483677 + + [ Achiad Shochat ] + + * SAUCE: net/mlx5e: Support TX packet copy into WQE + * SAUCE: net/mlx5e: TX latency optimization to save DMA reads + * SAUCE: net/mlx5e: Cosmetics: use BIT() instead of "1 <<", and others + * SAUCE: net/mlx5e: Input IPSEC.SPI into the RX RSS hash function + + [ Adam Lee ] + + * SAUCE: serial: 8250_pci: Add support for Pericom PI7C9X795[1248] + - LP: #1480142 + + [ dann frazier ] + + * [Config] CONFIG_NR_CPUS=128 on arm64 + + [ Leann Ogasawara ] + + * [Config] d-i -- Add sfc to nic-modules udeb + - LP: #1481490 + + [ Saeed Mahameed ] + + * SAUCE: net/mlx5e: Support ETH_RSS_HASH_XOR + * SAUCE: net/mlx5e: Allocate DMA coherent memory on reader NUMA node + + [ Tim Gardner ] + + * [Config] CONFIG_X86_INTEL_MPX=y + - LP: #1460902 + * [Debian] change dependency on module-init-tools to kmod + - LP: #1481986 + * rebase to v4.2-rc6 + + [ Upstream Kernel Changes ] + + * rebase to v4.2-rc6 + + -- Tim Gardner Tue, 04 Aug 2015 16:59:45 -0600 + +linux (4.2.0-3.3) wily; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1481462 + * SAUCE: workqueue: Make flush_workqueue() available again to non GPL modules + Fixes an FTBS for at least one DKMS package. + + -- Tim Gardner Tue, 04 Aug 2015 11:26:53 -0600 + +linux (4.2.0-2.2) wily; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1481067 + * rebase to v4.2-rc5 + + [ Andy Whitcroft ] + + * [Packaging] module-inclusion -- commonise copy code and simplify + * [Packaging] module-inclusion -- add manual command entries + * [Packaging] module blacklists -- add support for manual blacklists + * [Packaging] do_common_tools should always be on + * [Packaging] initscripts need installing when making the package + * [Packaging] initscripts work around bug in debhelper systemd support + * [Config] exclude oss modules from linux-image + - LP: #1434842 + * hyper-v -- add hid and fb drivers to linux-virtual + - LP: #1444179 + * ubuntu: (no-squash) vbox -- infrastructure and updater + * ubuntu: vbox -- elide the new symlinks and reconstruct on clean: + - LP: #1426113 + * ubuntu: vbox -- update to 5.0.0-dfsg-1 + - LP: #1480879 + * SAUCE: vbox: follow v4.2 updates to follow_link()/put_link() API + * [Config] move vbox modules into linux-image + + [ Upstream Kernel Changes ] + + * rebase to v4.2-rc5 + - LP: #1478497 + - LP: #1477900 + + -- Andy Whitcroft Mon, 03 Aug 2015 12:20:10 +0100 + +linux (4.2.0-1.1~rc1) wily; urgency=low + + [ Andy Whitcroft ] + + * Release Tracking Bug + - LP: #1479903 + * Initial upload of v4.2 based kernel (currently v4.-rc4) + + [ Upstream Kernel Changes ] + + * rebase to v4.2-rc4 + - LP: #1476987 + - LP: #1476888 + * rebase to v4.2-rc3 + * rebase to v4.2-rc2 + * rebase to v4.2-rc1 + - LP: #1394368 + - LP: #1427680 + - LP: #1462614 + - LP: #1397021 + + -- Andy Whitcroft Thu, 30 Jul 2015 18:42:46 +0100 + +linux (4.1.0-3.3) wily; urgency=low + + [ Andy Whitcroft ] + + * Release Tracking Bug + - LP: #1478897 + + [ Colin Ian King ] + + * SAUCE: KEYS: ensure we free the assoc array edit if edit is valid + - CVE-2015-1333 + + [ Seth Forshee ] + + * SAUCE: overlayfs: Enable user namespace mounts for the "overlay" fstype + - LP: #1478578 + + [ Upstream Kernel Changes ] + + * sched/stop_machine: Fix deadlock between multiple stop_two_cpus() + - LP: #1461620 + * x86/nmi: Enable nested do_nmi() handling for 64-bit kernels + * x86/nmi/64: Remove asm code that saves cr2 + * x86/nmi/64: Switch stacks on userspace NMI entry + * x86/nmi/64: Reorder nested NMI checks + * x86/nmi/64: Use DF to avoid userspace RSP confusing nested NMI + detection + + -- Andy Whitcroft Tue, 28 Jul 2015 11:59:03 +0100 + +linux (4.1.0-2.4) wily; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: overlayfs: when copying up and reading directories ensure + mounter had permissions V2 + - CVE-2015-1328 + + [ Leann Ogasawara ] + + * Release Tracking Bug + - LP: #1465419 + + -- Leann Ogasawara Mon, 15 Jun 2015 14:09:22 -0700 + +linux (4.1.0-2.2) wily; urgency=low + + [ Tim Gardner ] + + * rebase to v4.1.3 + * [Config] Add i40e[vf] to d-i + - LP: #1476393 + + [ Upstream Kernel Changes ] + + * rebase to v4.1.3 + - LP: #1427680 + - LP: #1462614 + - LP: #1394368 + + -- Tim Gardner Wed, 22 Jul 2015 09:13:02 -0600 + +linux (4.1.0-1.1) wily; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: overlay: add backwards compatible overlayfs format support V3 + - LP: #1395877, #1410480 + * SAUCE: overlayfs: when copying up and reading directories ensure + mounter had permissions V2 + - CVE-2015-1328 + * [Packaging] fix up Vcs-Git: to point to launchpad + * [Config] correct linux-initramfs-tool virtual linkage + - LP: #1474810 + + [ Chris J Arges ] + + * [Config] Add dm-service-time to multipath-modules + - LP: #1469240 + * [Config] Add MTD_POWERNV_FLASH and OPAL_PRD + - LP: #1464560 + + [ Jay Vosburgh ] + + * SAUCE: fan: Proof of concept implementation (v2) + - LP: #1439706 + * SAUCE: fan: tunnel multiple mapping mode (v3) + - LP: #1470091 + + [ Leann Ogasawara ] + + * Revert "SAUCE: ext4: disable ext4_punch_hole for indirect filesystems" + * Revert "SAUCE: intel_pstate: inform user that thermald is worth + considering" + * Revert "SAUCE: Work around broken ACPI backlight on Dell Inspiron 5537" + * Revert "SAUCE: dm-crypt: never use write same" + * Release Tracking Bug + - LP: #1476333 + + [ Tim Gardner ] + + * Rebase to v4.1 + - LP: #1443371 + * [Config] Enable Apparmor + * [Config] CONFIG_OVERLAY_FS_V1=y + * [Config] DEFAULT_IOSCHED="deadline" for ppc64el + - LP: #1469829 + * [Config] CONFIG_VM86=n + - LP: #1473447 + * [Config] ACORN_PARTITION=n + - LP: #1453117 + + [ Timo Aaltonen ] + + * [Config] Disable CONFIG_DRM_I915_PRELIMINARY_HW_SUPPORT + - LP: #1473319 + + [ Upstream Kernel Changes ] + + * efi: efivar_create_sysfs_entry() should return negative error codes + * efi: Add esrt support + * x86, doc: Remove cmdline_size from list of fields to be filled in for + EFI handover + * efi/esrt: Fix some compiler warnings + * efi: dmi: List SMBIOS3 table before SMBIOS table + * efi: Add 'systab' information to Documentation/ABI + * ALSA: hda - restore the MIC FIXUP for some Dell machines + - LP: #1473560 + * mtd: powernv: Add powernv flash MTD abstraction driver + - LP: #1464560 + * powerpc/powernv: Expose OPAL APIs required by PRD interface + - LP: #1464560 + * powerpc/powernv: Add opal-prd channel + - LP: #1464560 + * powerpc/powernv: fix construction of opal PRD messages + - LP: #1464560 + * powerpc/include: Add opal-prd to installed uapi headers + - LP: #1464560 + * powerpc/powernv: Fix vma page prot flags in opal-prd driver + - LP: #1464560 + + -- Leann Ogasawara Mon, 20 Jul 2015 10:16:06 -0700 + +linux (4.0.0-2.4) wily; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: overlayfs: when copying up and reading directories ensure + mounter had permissions V2 + - CVE-2015-1328 + + [ Leann Ogasawara ] + + * Release Tracking Bug + - LP: #1465419 + + -- Leann Ogasawara Mon, 15 Jun 2015 14:09:22 -0700 + +linux (4.0.0-1.2) wily; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: overlay: add backwards compatible overlayfs format support V3 + - LP: #1395877, #1410480 + * [Config] enable CONFIG_OVERLAY_FS_V1 + + [ Tai Nguyen ] + + * SAUCE: power: reset: Add syscon reboot device node for APM X-Gene platform + - LP: #1463211 + + [ Tim Gardner ] + + * [Config] CONFIG_HIBERNATION=n for ppc64el + - LP: #1463836 + + -- Tim Gardner Fri, 12 Jun 2015 06:11:53 -0600 + +linux (4.0.0-1.1) wily; urgency=low + + [ Leann Ogasawara ] + + * Revert "md/raid0: fix bug with chunksize not a power of 2." + - LP: #1457510 + * powerpc/powernv: Check image loaded or not before calling flash + - LP: #1461553 + + [ Tim Gardner ] + + * [Config] armhf: CPUFREQ_DT=y + - LP: #1457781 + + [ Upstream Kernel Changes ] + + * rebase to v4.0.5 + - LP: #1429756 + - LP: #1452175 + - LP: #1454656 + - LP: #1447909 + - LP: #1446517 + - LP: #1428947 + - LP: #1410704 + - LP: #1412800 + - LP: #1400215 + - LP: #1411193 + - LP: #1412800 + - LP: #1408295 + - LP: #1436745 + + -- Leann Ogasawara Tue, 09 Jun 2015 05:58:46 -0700 + +linux (3.19.0-10.10) vivid; urgency=low + + [ Andy Whitcroft ] + + * [Packaging] control -- make element ordering deterministic + * [Config] allow dracult to support initramfs as well + - LP: #1109029 + * [Packaging] generate live watchdog blacklists + - LP: #1432837 + + [ Leann Ogasawara ] + + * [Config] CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y + - LP: #1397860 + * rebase to v3.19.2 + + [ Upstream Kernel Changes ] + + * thinkpad_acpi: support new BIOS version string pattern + - LP: #1417915 + * arm64: Invalidate the TLB corresponding to intermediate page table + levels + - LP: #1432546 + * perf tools: Support parsing parameterized events + - LP: #1430341 + * perf tools: Extend format_alias() to include event parameters + - LP: #1430341 + * perf Documentation: Add event parameters + - LP: #1430341 + * perf tools: Document parameterized and symbolic events + - LP: #1430341 + * perf: provide sysfs_show for struct perf_pmu_events_attr + - LP: #1430341 + * perf: add PMU_EVENT_ATTR_STRING() helper + - LP: #1430341 + * perf: define EVENT_DEFINE_RANGE_FORMAT_LITE helper + - LP: #1430341 + * powerpc/perf/hv-24x7: parse catalog and populate sysfs with events + - LP: #1430341 + * powerpc/perf/{hv-gpci, hv-common}: generate requests with counters + annotated + - LP: #1430341 + * powerpc/perf/hv-gpci: add the remaining gpci requests + - LP: #1430341 + * powerpc/perf/hv-24x7: Document sysfs event description entries + - LP: #1430341 + * powerpc/iommu: Remove IOMMU device references via bus notifier + - LP: #1425202 + * powerpc/pseries: Fix endian problems with LE migration + - LP: #1428351 + * intel_idle: support additional Broadwell model + - LP: #1400970 + * tools/power turbostat: support additional Broadwell model + - LP: #1400970 + * KVM: x86: flush TLB when D bit is manually changed. + - LP: #1397860 + * Optimize TLB flush in kvm_mmu_slot_remove_write_access. + - LP: #1397860 + * KVM: Add generic support for dirty page logging + - LP: #1397860 + * KVM: x86: switch to kvm_get_dirty_log_protect + - LP: #1397860 + * KVM: Rename kvm_arch_mmu_write_protect_pt_masked to be more generic for + log dirty + - LP: #1397860 + * KVM: MMU: Add mmu help functions to support PML + - LP: #1397860 + * KVM: MMU: Explicitly set D-bit for writable spte. + - LP: #1397860 + * KVM: x86: Change parameter of kvm_mmu_slot_remove_write_access + - LP: #1397860 + * KVM: x86: Add new dirty logging kvm_x86_ops for PML + - LP: #1397860 + * KVM: VMX: Add PML support in VMX + - LP: #1397860 + * HID: multitouch: add support of clickpads + * HID: multitouch: Add support for button type usage + + [ Upstream Kernel Changes ] + + * rebase to v3.19.2 + - LP: #1428947 + + -- Andy Whitcroft Mon, 23 Mar 2015 15:28:16 +0000 + +linux (3.19.0-9.9) vivid; urgency=low + + [ Leann Ogasawara ] + + * Release Tracking Bug + - LP: #1430930 + + [ Shachar Raindel ] + + * SAUCE: IB/core: Prevent integer overflow in ib_umem_get address + arithmetic + - LP: #1413741 + - CVE-2014-8159 + + -- Leann Ogasawara Wed, 11 Mar 2015 10:29:17 -0700 + +linux (3.19.0-8.8) vivid; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: vbox -- elide the new symlinks and reconstruct on clean: + - LP: #1426113 + * rebase to stable v3.19.1 + + [ John Johansen ] + + * SAUCE: (no-up): apparmor: fix mediation of fs unix sockets + - LP: #1408833 + + [ Leann Ogasawara ] + + * Release Tracking Bug + - LP: #1429940 + + [ Upstream Kernel Changes ] + + * xen: correct bug in p2m list initialization + * net/mlx5_core: Fix configuration of log_uar_page_sz + - LP: #1419938 + * tpm/ibmvtpm: Additional LE support for tpm_ibmvtpm_send + - LP: #1420575 + * net/mlx4_core: Maintain a persistent memory for mlx4 device + - LP: #1422481 + * net/mlx4_core: Set device configuration data to be persistent across + reset + - LP: #1422481 + * net/mlx4_core: Refactor the catas flow to work per device + - LP: #1422481 + * net/mlx4_core: Enhance the catas flow to support device reset + - LP: #1422481 + * net/mlx4_core: Activate reset flow upon fatal command cases + - LP: #1422481 + * net/mlx4_core: Manage interface state for Reset flow cases + - LP: #1422481 + * net/mlx4_core: Handle AER flow properly + - LP: #1422481 + * net/mlx4_core: Enable device recovery flow with SRIOV + - LP: #1422481 + * net/mlx4_core: Reset flow activation upon SRIOV fatal command cases + - LP: #1422481 + * tg3: Hold tp->lock before calling tg3_halt() from tg3_init_one() + - LP: #1428111 + * rebase to v3.19.1 + - LP: #1410704 + - LP: #1411193 + - LP: #1400215 + + -- Leann Ogasawara Mon, 09 Mar 2015 10:08:29 -0700 + +linux (3.19.0-7.7) vivid; urgency=low + + [ Andy Whitcroft ] + + * Release Tracking Bug + - LP: #1426013 + + [ Upstream Kernel Changes ] + + * x86/irq: Fix regression caused by commit b568b8601f05 + * cxl: Fix leaking interrupts if attach process fails + - LP: #1415102 + * cxl: Early return from cxl_handle_fault for a shut down context + - LP: #1415102 + * cxl: Disable AFU debug flag + - LP: #1415102 + * cxl: Disable SPAP register when freeing SPA + - LP: #1415102 + * cxl: remove redundant increment of hwirq + - LP: #1415102 + * cxl: Add tracepoints + - LP: #1415102 + * cxl: Update CXL ABI documentation + - LP: #1415102 + * cxl: Use image state defaults for reloading FPGA + - LP: #1415102 + * cxl: Add image control to sysfs + - LP: #1415102 + * cxl: Enable CAPP recovery + - LP: #1415102 + * cxl: Add ability to reset the card + - LP: #1415102 + * cxl: Fix device_node reference counting + - LP: #1415102 + * cxl: Export optional AFU configuration record in sysfs + - LP: #1415102 + * cxl: Fail AFU initialisation if an invalid configuration record is + found + - LP: #1415102 + * cxl: Add missing return statement after handling AFU errror + - LP: #1415102 + * powerpc/eeh: Introduce flag EEH_PE_REMOVED + - LP: #1415102 + * powerpc/eeh: Allow to set maximal frozen times + - LP: #1415102 + * HID: i2c-hid: Limit reads to wMaxInputLength bytes for input events + + -- Andy Whitcroft Thu, 26 Feb 2015 16:00:18 +0000 + +linux (3.19.0-6.6) vivid; urgency=low + + [ Andy Whitcroft ] + + * systemd -- fix hyper-v units to be non-forking + - LP: #1401525 + * [Config] move vbox modules into linux-image + * ubuntu: vbox -- update to 4.3.22-dfsg-1 + + [ Brad Figg ] + + * SAUCE: DEP8 test to run our regression tests + + [ Paolo Pisati ] + + * [Config] I2C_CHARDEV=y + - LP: #1417032 + + [ Upstream Kernel Changes ] + + * PCI: Fix infinite loop with ROM image of size 0 + * tpm: Fix NULL return in tpm_ibmvtpm_get_desired_dma + * Bluetooth: ath3k: workaround the compatibility issue with xHCI + controller + - LP: #1400215 + + -- Andy Whitcroft Thu, 19 Feb 2015 12:44:43 +0000 + +linux (3.19.0-5.5) vivid; urgency=low + + [ Andy Whitcroft ] + + * [Config] CONFIG_FA_DUMP=y + - LP: #1415562 + * ubuntu: (no-squash) vbox -- infrastructure and updater + * ubuntu: vbox -- update to 4.3.20-dfsg-1ubuntu1 + * rebase to v3.19 final + + [ Chris J Arges ] + + * [Config] Add ibmvfc to d-i + - LP: #1416001 + * SAUCE: ext4: disable ext4_punch_hole for indirect filesystems + - LP: #1292234 + + [ Upstream Kernel Changes ] + + * rebase to v3.19 + + -- Andy Whitcroft Mon, 09 Feb 2015 10:41:11 +0000 + +linux (3.19.0-4.4) vivid; urgency=low + + [ Andy Whitcroft ] + + * [Config] apply Kernel hacking >> Tracers config defaults + * hyper-v -- fix comment handing in /etc/network/interfaces + - LP: #1413020 + * rebase to v3.19-rc7 + * updateconfigs following rebase to v3.19-rc7 + + [ Ben Hutchings ] + + * SAUCE: rtsx_usb_ms: Use msleep_interruptible() in polling loop + - LP: #1413149 + + [ Upstream Kernel Changes ] + + * rebase to v3.19-rc7 + + -- Andy Whitcroft Mon, 02 Feb 2015 17:03:07 +0200 + +linux (3.19.0-3.3) vivid; urgency=low + + [ Andy Whitcroft ] + + * [Debian] arm64 -- build ubuntu drivers + - LP: #1411284 + * [Packaging] config-check -- add support for enforced annotations + * [Config] annotations -- switch to ENFORCED annotations + * [Packaging] config-check -- drop support for enforce file + * [Packaging] enforce -- drop empty enforce file + * rebase to v3.19-rc5 + * [Config] add modules removed due to tighter dependencies + * [Config] updateconfigs following rebase to v3.19-rc5 + * [Config] enforce CONFIG_FHANDLE=y + - LP: #1412543 + * [Packaging] hyper-v -- daemons now require -n for non-forking startup + - LP: #1408355 + * [Config] CONFIG_DEBUG_INFO_SPLIT=n + - LP: #1413646 + * [Config] apply Device Drivers >> Character devices >> IPMI top-level + message handler config defaults + * [Config] apply Device Drivers >> Character devices >> Serial drivers + config defaults + * [Config] apply Device Drivers >> GPIO Support config defaults + * [Config] apply Device Drivers >> Graphics support >> Direct Rendering + Manager >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI + support) config defaults + * [Config] apply Device Drivers >> Graphics support >> Frame buffer + Devices >> Support for frame buffer devices config defaults + * [Config] apply Device Drivers >> HID support >> HID bus support >> + Special HID drivers config defaults + * [Config] apply Device Drivers >> Hardware Monitoring support config + defaults + * [Config] apply Device Drivers >> I2C support >> I2C support >> I2C + Hardware Bus support config defaults + * [Config] apply Device Drivers >> Industrial I/O support >> Analog to + digital converters config defaults + * [Config] apply Device Drivers >> Industrial I/O support >> Humidity + sensors config defaults + * [Config] apply Device Drivers >> Industrial I/O support >> Pressure + sensors config defaults + * [Config] apply Device Drivers >> Input device support >> Generic input + layer (needed for keyboard, mouse, ...) >> Mice config defaults + * [Config] apply Device Drivers >> Input device support >> Generic input + layer (needed for keyboard, mouse, ...) >> Touchscreens config defaults + * [Config] apply Device Drivers >> LED Support >> LED Class Support + config defaults + * [Config] apply Device Drivers >> MMC/SD/SDIO card support config + defaults + * [Config] apply Device Drivers >> Multifunction device drivers config + defaults + * [Config] apply Device Drivers >> Multimedia support >> Cameras/video + grabbers support >> Media test drivers config defaults + * [Config] apply Device Drivers >> Multimedia support >> Media PCI + Adapters config defaults + * [Config] apply Device Drivers >> Multimedia support >> Remote + Controller devices config defaults + * [Config] apply Device Drivers >> Network device support >> Distributed + Switch Architecture drivers config defaults + * [Config] apply Device Drivers >> Network device support >> Network core + driver support config defaults + * [Config] apply Device Drivers >> Network device support >> Wireless LAN + >> Hermes chipset 802.11b support (Orinoco/Prism2/Symbol) config + defaults + * [Config] apply Device Drivers >> Network device support >> Wireless LAN + >> Intel PRO/Wireless 2200BG and 2915ABG Network Connection config + defaults + * [Config] apply Device Drivers >> PHY Subsystem config defaults + * [Config] apply Device Drivers >> Pin controllers config defaults + * [Config] apply Device Drivers >> SPI support config defaults + * [Config] apply Device Drivers >> Sound card support >> Advanced Linux + Sound Architecture >> ALSA for SoC audio support config defaults + * [Config] apply Device Drivers >> Sound card support >> Advanced Linux + Sound Architecture >> FireWire sound devices config defaults + * [Config] apply Device Drivers >> Sound card support >> Advanced Linux + Sound Architecture >> HD-Audio config defaults + * [Config] apply Device Drivers >> Staging drivers >> Lustre file system + client support config defaults + * [Config] apply Device Drivers >> Staging drivers >> Media staging + drivers config defaults + * [Config] apply Device Drivers >> USB support >> USB Gadget Support >> + USB Gadget Drivers >> USB functions configurable through configfs + config defaults + * [Config] apply Device Drivers >> USB support >> USB Gadget Support >> + USB Peripheral Controller config defaults + * [Config] apply Networking support >> NFC subsystem support >> Near + Field Communication (NFC) devices config defaults + * [Config] apply Networking support >> Networking options >> Network + packet filtering framework (Netfilter) >> Core Netfilter Configuration + >> Netfilter nf_tables support config defaults + * [Config] apply Networking support >> Networking options >> QoS and/or + fair queueing >> Actions config defaults + * [Config] apply Networking support >> Networking options >> TCP/IP + networking config defaults + * [Config] apply Networking support >> Wireless >> Generic IEEE 802.11 + Networking Stack (mac80211) config defaults + * [Config] apply Device Drivers >> Input device support >> Generic input + layer (needed for keyboard, mouse, ...) >> Keyboards config defaults + * [Config] apply Device Drivers >> Input device support >> Generic input + layer (needed for keyboard, mouse, ...) >> Mice config defaults + * [Config] apply Device Drivers >> Pulse-Width Modulation (PWM) Support + config defaults + * [Config] apply Networking support >> Networking options >> Network + packet filtering framework (Netfilter) >> IP: Netfilter Configuration + >> IPv4 NAT config defaults + * [Config] apply Networking support >> Networking options >> Network + packet filtering framework (Netfilter) >> IPv6: Netfilter Configuration + >> IPv6 NAT config defaults + * [Config] apply Kernel hacking >> Kernel debugging config defaults + * [Config] apply General setup >> Timers subsystem >> Timer tick handling + config defaults + * SAUCE: arm64 -- psci tell the compiler which registers we are needing + values in + - LP: #1414002 + * [Config] apply Device Drivers >> Network device support >> Wireless LAN + >> Intel Wireless WiFi Next Gen AGN - Wireless-N/Advanced-N/Ultimate-N + (iwlwifi) config defaults + * [Config] apply Device Drivers >> Real Time Clock config defaults + * [Config] apply Device Drivers >> SCSI device support >> SCSI device + support >> SCSI low-level drivers config defaults + * [Config] apply General setup >> CPU/Task time and stats accounting >> + Cputime accounting config defaults + * [Config] apply Device Drivers >> Mailbox Hardware Support config + defaults + * rebase to v3.19-rc6 + * [Config] updateconfigs following rebase to v3.19-rc6 + + [ Kamal Mostafa ] + + * [Packaging] force "dpkg-source -I -i" behavior + + [ Leann Ogasawara ] + + * [Config] Disable CONFIG_USB_OTG + - LP: #1411295 + + [ Upstream Kernel Changes ] + + * overlay: add backwards compatible overlayfs format support (fixes) + - LP: #1410480 + + [ Upstream Kernel Changes ] + + * rebase to v3.19-rc5 + * rebase to v3.19-rc6 + + -- Andy Whitcroft Mon, 26 Jan 2015 11:37:39 +0000 + +linux (3.19.0-2.2) vivid; urgency=low + + [ Andy Whitcroft ] + + * rebase to v3.19-rc4 + * [Config] updateconfigs following rebase to v3.19-rc4 + * [Packaging] install all dtb files + - LP: #1408002 + * [Config] switch on "all" dtbs + - LP: #1408002 + + [ Colin Ian King ] + + * SAUCE: drivers/rtc/interface.c: ignore exprired times when enqueing new + timers + - LP: #1333569 + + [ Joseph Salisbury ] + + * [Config] Enable CONFIG_N_GSM as module. + - LP: #1404670 + + [ K. Y. Srinivasan ] + + * SAUCE: storvsc: force SPC-3 compliance on win8 and win8 r2 hosts + - LP: #1406867 + + [ Steve McIntyre ] + + * SAUCE: efi: Expose underlying UEFI firmware platform size to userland + - LP: #1409750 + + [ Upstream Kernel Changes ] + + * rebase to v3.19-rc4 + + -- Andy Whitcroft Tue, 13 Jan 2015 12:35:58 +0000 + +linux (3.19.0-1.1) vivid; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: AUFS -- aufs3-standalone.patch" + * Revert "SAUCE: AUFS -- aufs3-mmap.patch" + * Revert "SAUCE: AUFS -- aufs3-base.patch" + * ubuntu: AUFS3 -- follow switch to vfs_fallocate + * rebase to v3.19-rc1 + * rebase to v3.19-rc2 + * [Config] defaultconfigs following rebase to v3.19-rc2 + * ubuntu: aufs3 -- follow rename of d_child + * ubuntu: aufs3 -- follow switch to d_splice_alias + * ubuntu: aufs3 -- follow switch to get_unused_fd_flags() + * ubuntu: aufs3 -- follow rename for d_alias + * apparmor -- follow change to this_cpu_ptr + * disable module checks for rebase + * ubuntu: AUFS -- substrate: aufs3-base.patch + * ubuntu: AUFS -- substrate: aufs3-mmap.patch + * ubuntu: AUFS -- substrate: aufs3-standalone.patch + * ubuntu: AUFS -- update to 92ad9cc8bd289bf8e59b6bd8d83137d8e1a58c1c + * [Configs] updateconfigs following aufs update + * v3.19 series start + * rebase to v3.19-rc3 + * [Configs] updateconfigs following rebase to v3.19-rc3 + * [Packaging] uploadnum should be the remainder of the version + - LP: #1407755 + * [Packaging] handle dts directories + - LP: #1408004 + * [Config] follow move of arm64 dts' into vendor directories + + [ Upstream Kernel Changes ] + + * arm64: optimized copy_to_user and copy_from_user assembly code + - LP: #1400349 + * iommu/ipmmu-vmsa: follow flag switch to IOMMU_NOEXEC + + [ Upstream Kernel Changes ] + + * rebase to v3.19-rc1 + - LP: #1173681 + * rebase to v3.19-rc2 + * rebase to v3.19-rc3 + + -- Andy Whitcroft Tue, 06 Jan 2015 14:30:02 +0000 + +linux (3.18.0-7.8) vivid; urgency=low + + [ Leann Ogasawara ] + + * Release Tracking Bug + - LP: #1401590 + + [ John Johansen ] + + * SAUCE: (no-up) apparmor: Sync to apparmor3 - RC1 snapshot + - LP: #1362199 + * SAUCE: Revert: fix: only allow a single threaded process to ... + - LP: #1371310 + * SAUCE: (no-up) fix: bad unix_addr_fs macro + - LP: #1390223 + * SAUCE: (no-up) apparmor: add parameter to control whether policy + hashing is used + - LP: #1383886 + * [config] set apparmor config options + + [ Seth Forshee ] + + * [Config] CONFIG_FW_LOADER_USER_HELPER_FALLBACK=n + - LP: #1398458 + + [ Upstream Kernel Changes ] + + * mfd: rtsx: Fix PM suspend for 5227 & 5249 + - LP: #1359052 + * mmc: sdhci-pci-o2micro: Fix Dell E5440 issue + - LP: #1346067 + + -- Leann Ogasawara Thu, 11 Dec 2014 08:36:36 -0800 + +linux (3.18.0-6.7) vivid; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: (no-up) arm64: optimized copy_to_user and copy_from_user + assembly code" + - LP: #1398596 + * rebase to v3.18 + + [ Chris J Arges ] + + * [Config] CONFIG_PCIEASPM_DEBUG=y + - LP: #1398544 + + [ Paolo Pisati ] + + * [Config] armhf: VIRTIO_[BALLOON|MMIO]=y + - LP: #1396470 + + [ Upstream Kernel Changes ] + + * drivers:scsi:storvsc: Fix a bug in handling ring buffer failures that + may result in I/O freeze + - LP: #1400289 + + [ Upstream Kernel Changes ] + + * rebase to v3.18 + + -- Leann Ogasawara Mon, 08 Dec 2014 09:15:17 -0800 + +linux (3.18.0-5.6) vivid; urgency=low + + [ Leann Ogasawara ] + + * Release Tracking Bug + - LP: #1398109 + + [ Andy Whitcroft ] + + * [Config] CONFIG_SCSI_MQ_DEFAULT=n + - LP: #1397061 + * rebase to v3.18-rc7 + + [ Chris J Arges ] + + * [Config] CONFIG_SCOM_DEBUGFS=y for powerpc/powerpc64-smp + ppc64el/generic + - LP: #1395855 + + [ Upstream Kernel Changes ] + + * rebase to v3.18-rc7 + - LP: #1389497 + + -- Leann Ogasawara Mon, 01 Dec 2014 10:09:09 -0800 + +linux (3.18.0-4.5) vivid; urgency=low + + [ Leann Ogasawara ] + + * Release Tracking Bug + - LP: #1395891 + + [ Andy Whitcroft ] + + * rebase to v3.18-rc6 + * [Config] update configs following rebase to v3.18-rc6 + * [Config] enable overlayfs v1 support + + [ Tim Gardner ] + + * rebase to v3.18-rc5 + + [ Upstream Kernel Changes ] + + * overlay: add backwards compatible overlayfs format support + - LP: #1395877 + + [ Upstream Kernel Changes ] + + * rebase to v3.18-rc5 + * rebase to v3.18-rc6 + + -- Leann Ogasawara Mon, 24 Nov 2014 13:12:48 -0800 + +linux (3.18.0-3.4) vivid; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Config] CONFIG_AUFS_FS=n for FTBS" + * Revert "SAUCE: AUFS -- update to + dcf336a754c86d5ee1c3d50699fd75c586d037cb" + * Revert "SAUCE: aufs3 -- (no-up) aufs3-standalone.patch" + * Revert "SAUCE: aufs3 -- (no-up) aufs3-base.patch" + * [Config] amd64 is now the indep architecture + * [Debian] basic hook support + * SAUCE: AUFS -- aufs3-base.patch + * SAUCE: AUFS -- aufs3-mmap.patch + * SAUCE: AUFS -- aufs3-standalone.patch + * ubuntu: AUFS -- update to 9d5c349d5c452170b8e813d86956f896a0aef170 + * [Config] updateconfigs following aufs3 update + * SAUCE: AUFS (no-squash): basic framework and update machinary -- part 2 + + [ dann frazier ] + + * [Config] Disable CONFIG_IPMI_SI_PROBE_DEFAULTS on armhf and arm64 + - LP: #1388952 + * [Config] disable CONFIG_ARM64_RANDOMIZE_TEXT_OFFSET + * [Config] Disable CONFIG_RCU_USER_QS on arm64 + + [ Tim Gardner ] + + * rebase to v3.18-rc4 + + [ Upstream Kernel Changes ] + + * rebase to v3.18-rc4 + - LP: #1389497 + - LP: #1387128 + + -- Andy Whitcroft Tue, 11 Nov 2014 17:16:13 +0000 + +linux (3.18.0-2.2) vivid; urgency=low + + [ Tim Gardner ] + + * SAUCE: nft_reject_bridge.c: Include net/ip6_checksum.h + + [ Upstream Kernel Changes ] + + * rebase to v3.18-rc3 + + -- Tim Gardner Mon, 03 Nov 2014 06:09:06 -0700 + +linux (3.18.0-1.1) vivid; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Config] Switch kernel to vmlinuz (from vmlinux) on ppc64el" + * [Config] tools -- only build common tools when enabled + * [Config] follow rename of DEB_BUILD_PROFILES + * [Config] linux-image-extra is additive to linux-image + - LP: #1375310 + * [Config] linux-image-extra postrm is not needed on purge + * [Config] enable cloud tools on i386 + - LP: #1367399 + + [ Marc Dietrich ] + + * [Config] arm/tegra/d-i: framebuffer and usb support for Tegra SoCs + + [ Paolo Pisati ] + + * [Config] armhf: REGULATOR_TWL4030=y + * [Config] armhf: disable JUMP_LABEL + - LP: #1378856 + + [ Tim Gardner ] + + * rebase to v3.17-rc2 + * updateconfigs + * [Config] CONFIG_NFC_ST21NFCB=n + * [Config] Added net/6lowpan/* to generic inclusion list + * [Config] Add arm64 to enforcer CONFIG_CC_STACKPROTECTOR + * rebase to v3.17-rc3 + * rebase to v3.17-rc4 + * rebase to v3.17-rc5 + * [Config] armhf: USB_[E|O]HCI_EXYNOS=y + * [Config] CONFIG_XMON=y + - LP: #1365655 + * [Config] CONFIG_KVM_BOOK3S_64=m for ppc64el + - LP: #1362514 + * [Config] CONFIG_KVM_BOOK3S_64_HV=m + - LP: #1362514 + * [Config] CONFIG_DMA_CMA=n + - LP: #1362261 + * [Config] Add mpt3sas to d-i + - LP: #1368907 + * [Debian] set do_*_tools after stage1 or bootstrap is determined + - LP: #1370211 + * [Config] CONFIG_USB_OHCI_HCD_PCI=y + - LP: #1244176 + * rebase to v3.17-rc6 + * SAUCE: usbip: Update include path + * [Debian] usbip tools packaging + - LP: #898003 + * [Config] Enable usbip tools + - LP: #898003 + * [Config] CONFIG_CRASH_DUMP=n for powerpc-smp + - LP: #1363180 + * [Config] Correct annotation regarding CONFIG_DMA_CMA + - LP: #1362261 + * [Config] CONFIG_SND_HDA_INTEL=n for ppc64el + - LP: #1374438 + * [Config] CONFIG_HOTPLUG_PCI_SHPC=n for ppc64el + - LP: #1374440 + * [Debian] Don't fail if a symlink already exists + * rebase to v3.17-rc7 + * [Config] CONFIG_HOTPLUG_PCI_PCIE=n for ppc64el + - LP: #1374440 + * rebase to v3.17 + * rebase to v3.18-rc1 + * [Config] CONFIG_AUFS_FS=n for FTBS + * Enable vivid + * [Config] CONFIG_SOUND_OSS_CORE_PRECLAIM=n + - LP: #1385510 + * rebase to v3.18-rc2 + * [Debian] Fix linux-doc dangling symlinks + - LP: #661306 + * CONFIG_MODULE_COMPRESS=n + * [Config] dropped scsi_tgt from generic inclusion list + * [Config] Added drivers/uio to generic inclusion list + * [Config] CONFIG_PATA_MACIO=y + - LP: #1378894 + * [Config] CONFIG_DRM_BOCHS=n + * [Debian] install usbipd + - LP: #898003 + + [ Upstream Kernel Changes ] + + * rebase to v3.18-rc2 + + [ Upstream Kernel Changes ] + + * rebase to v3.18-rc1 + - LP: #1316518 + - LP: #1371591 + - LP: #1357928 + + [ Upstream Kernel Changes ] + + * rebase to v3.17 + + [ Upstream Kernel Changes ] + + * rebase to v3.17-rc7 + + [ Upstream Kernel Changes ] + + * rebase to v3.17-rc6 + + [ Upstream Kernel Changes ] + + * rebase to v3.17-rc5 + + [ Upstream Kernel Changes ] + + * rebase to v3.17-rc4 + + [ Upstream Kernel Changes ] + + * rebase to v3.17-rc3 + + [ Upstream Kernel Changes ] + + * rebase to v3.17-rc2 + - LP: #1358116 + - LP: #1350148 + - LP: #1334950 + - LP: #1329580 + - LP: #1329580 + - LP: #1329580 + + [ Upstream Kernel Changes ] + + * rebase to v3.17-rc2 + + -- Tim Gardner Tue, 26 Aug 2014 10:36:19 -0600 + +linux (3.17.0-0.0) utopic; urgency=medium + + * Empty entry + + -- Tim Gardner Tue, 26 Aug 2014 10:34:44 -0600 + +linux (3.16.0-11.16) utopic; urgency=low + + [ Mauricio Faria de Oliveira ] + + * [Config] Switch kernel to vmlinuz (from vmlinux) on ppc64el + - LP: #1358920 + + [ Peter Zijlstra ] + + * SAUCE: (no-up) mmu_notifier: add call_srcu and sync function for listener to delay call and sync + - LP: #1361300 + + [ Tim Gardner ] + + * [Config] CONFIG_ZPOOL=y + - LP: #1360428 + * Release Tracking Bug + - LP: #1361308 + + [ Upstream Kernel Changes ] + + * Revert "net/mlx4_en: Fix bad use of dev_id" + - LP: #1347012 + * net/mlx4_en: Reduce memory consumption on kdump kernel + - LP: #1347012 + * net/mlx4_en: Fix mac_hash database inconsistency + - LP: #1347012 + * net/mlx4_en: Disable blueflame using ethtool private flags + - LP: #1347012 + * net/mlx4_en: current_mac isn't updated in port up + - LP: #1347012 + * net/mlx4_core: Use low memory profile on kdump kernel + - LP: #1347012 + * Drivers: scsi: storvsc: Change the limits to reflect the values on the host + - LP: #1347169 + * Drivers: scsi: storvsc: Set cmd_per_lun to reflect value supported by the Host + - LP: #1347169 + * Drivers: scsi: storvsc: Filter commands based on the storage protocol version + - LP: #1347169 + * Drivers: scsi: storvsc: Fix a bug in handling VMBUS protocol version + - LP: #1347169 + * Drivers: scsi: storvsc: Implement a eh_timed_out handler + - LP: #1347169 + * drivers: scsi: storvsc: Set srb_flags in all cases + - LP: #1347169 + * drivers: scsi: storvsc: Correctly handle TEST_UNIT_READY failure + - LP: #1347169 + * namespaces: Use task_lock and not rcu to protect nsproxy + - LP: #1328088 + * net: xgene: Check negative return value of xgene_enet_get_ring_size() + * mm/zbud: change zbud_alloc size type to size_t + - LP: #1360428 + * mm/zpool: implement common zpool api to zbud/zsmalloc + - LP: #1360428 + * mm/zpool: zbud/zsmalloc implement zpool + - LP: #1360428 + * mm/zpool: update zswap to use zpool + - LP: #1360428 + * ideapad-laptop: Change Lenovo Yoga 2 series rfkill handling + - LP: #1341296 + * iommu/amd: Fix for pasid initialization + - LP: #1361300 + * iommu/amd: Moving PPR fault flags macros definitions + - LP: #1361300 + * iommu/amd: Drop oprofile dependency + - LP: #1361300 + * iommu/amd: Fix typo in amd_iommu_v2 driver + - LP: #1361300 + * iommu/amd: Don't call mmu_notifer_unregister in __unbind_pasid + - LP: #1361300 + * iommu/amd: Don't free pasid_state in mn_release path + - LP: #1361300 + * iommu/amd: Get rid of __unbind_pasid + - LP: #1361300 + * iommu/amd: Drop pasid_state reference in ppr_notifer error path + - LP: #1361300 + * iommu/amd: Add pasid_state->invalid flag + - LP: #1361300 + * iommu/amd: Don't hold a reference to mm_struct + - LP: #1361300 + * iommu/amd: Don't hold a reference to task_struct + - LP: #1361300 + * iommu/amd: Don't call the inv_ctx_cb when pasid is not set up + - LP: #1361300 + * iommu/amd: Don't set pasid_state->mm to NULL in unbind_pasid + - LP: #1361300 + * iommu/amd: Remove change_pte mmu_notifier call-back + - LP: #1361300 + * iommu/amd: Fix device_state reference counting + - LP: #1361300 + * iommu/amd: Fix 2 typos in comments + - LP: #1361300 + + -- Tim Gardner Fri, 22 Aug 2014 08:45:54 -0400 + +linux (3.16.0-10.15) utopic; urgency=low + + [ dann frazier ] + + * [debian] Fix regression with ABI subversions and backport + + [ Feng Kan ] + + * SAUCE: (no-up) irqchip:gic: change access of gicc_ctrl register to read + modify write. + - LP: #1357527 + * SAUCE: (no-up) arm64: optimized copy_to_user and copy_from_user + assembly code + - LP: #1358949 + + [ Stefan Bader ] + + * SAUCE: bcache: prevent crash on changing writeback_running + - LP: #1357295 + + [ Tim Gardner ] + + * [Config] CONFIG_XFRM_STATISTICS=y + * [Config] CONFIG_SECURITY_NETWORK_XFRM=y + * [Config] CONFIG_SENSORS_IBMPOWERNV=m + - LP: #1353005 + * Release Tracking Bug + - LP: #1359783 + + [ Upstream Kernel Changes ] + + * intel_idle: Broadwell support + - LP: #1256170 + * powerpc/book3s: Add basic infrastructure to handle HMI in Linux. + - LP: #1357108 + * powerpc/powernv: Invoke opal call to handle hmi. + - LP: #1357108 + * powerpc/book3s: handle HMIs for cpus in nap mode. + - LP: #1357108 + * powerpc/book3s: Fix endianess issue for HMI handling on napping cpus. + - LP: #1357108 + * powerpc: Add smp_mb() to arch_spin_is_locked() + - LP: #1358569 + * powerpc: Add smp_mb()s to arch_spin_unlock_wait() + - LP: #1358569 + * hwmon: (powerpc/powernv) hwmon driver for power, fan rpm, voltage and + temperature + - LP: #1353005 + * tools/testing/selftests/ptrace/peeksiginfo.c: add PAGE_SIZE definition + - LP: #1358855 + * printk: Add function to return log buffer address and size + - LP: #1359423 + * powerpc/powernv: Interface to register/unregister opal dump region + - LP: #1359423 + * bcache: fix crash on shutdown in passthrough mode + - LP: #1357295 + * bcache: fix uninterruptible sleep in writeback thread + - LP: #1357295 + + [ Vinayak Kale ] + + * SAUCE: (no-up) dt-bindings: Add Potenza PMU binding + - LP: #1357527 + * SAUCE: (no-up) arm64: dts: Add PMU node for APM X-Gene Storm SOC + - LP: #1357527 + + -- Tim Gardner Fri, 15 Aug 2014 12:34:33 -0600 + +linux (3.16.0-9.14) utopic; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1357370 + + [ Serge Hallyn ] + + * SAUCE: Overlayfs: allow unprivileged mounts + - LP: #1357025 + + [ Upstream Kernel Changes ] + + * MAINTAINERS: Add entry for APM X-Gene SoC ethernet driver + * Documentation: dts: Add bindings for APM X-Gene SoC ethernet driver + * dts: Add bindings for APM X-Gene SoC ethernet driver + * drivers: net: Add APM X-Gene SoC ethernet driver support. + * powerpc/thp: Add write barrier after updating the valid bit + - LP: #1357014 + * powerpc/thp: Don't recompute vsid and ssize in loop on invalidate + - LP: #1357014 + * powerpc/thp: Invalidate old 64K based hash page mapping before insert + of 4k pte + - LP: #1357014 + * powerpc/thp: Handle combo pages in invalidate + - LP: #1357014 + * powerpc/thp: Invalidate with vpn in loop + - LP: #1357014 + * powerpc/thp: Use ACCESS_ONCE when loading pmdp + - LP: #1357014 + * powerpc/mm: Use read barrier when creating real_pte + - LP: #1357014 + * powerpc/thp: Add tracepoints to track hugepage invalidate + - LP: #1357014 + * rebase to v3.16.1 + + -- Tim Gardner Thu, 14 Aug 2014 08:18:02 -0400 + +linux (3.16.0-8.13) utopic; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1356403 + + [ dann frazier ] + + * [debian] Allow for package revisions condusive for branching + + [ Upstream Kernel Changes ] + + * ahci_xgene: Fix the watermark threshold for the APM X-Gene SATA host controller driver. + - LP: #1350087 + * ahci_xgene: Use correct OOB tunning parameters for APM X-Gene SoC AHCI SATA Host controller driver. + - LP: #1350087 + * powerpc/powernv: Enable M64 aperatus for PHB3 + - LP: #1355469 + * powerpc: Fail remap_4k_pfn() if PFN doesn't fit inside PTE + - LP: #1352994 + * powerpc: Add machine_early_initcall() + - LP: #1352640 + * powerpc/powernv: Switch powernv drivers to use machine_xxx_initcall() + - LP: #1352640 + * powerpc/eeh: Avoid event on passed PE + - LP: #1352640 + * powerpc/eeh: EEH support for VFIO PCI device + - LP: #1352640 + * powerpc/eeh: sysfs entries lost + - LP: #1352640 + * powerpc/powernv: Fix IOMMU table for VFIO dev + - LP: #1352640 + * powerpc/eeh: Fetch IOMMU table in reliable way + - LP: #1352640 + * powerpc/eeh: Refactor EEH flag accessors + - LP: #1352640 + * powerpc/eeh: Selectively enable IO for error log + - LP: #1352640 + * powerpc/eeh: Reduce lines of log dump + - LP: #1352640 + * powerpc/eeh: Replace pr_warning() with pr_warn() + - LP: #1352640 + * powerpc/eeh: Make diag-data not endian dependent + - LP: #1352640 + * powerpc/eeh: Aux PE data for error log + - LP: #1352640 + * PCI: Support BAR sizes up to 128GB + - LP: #1352640 + * powerpc/powernv: Allow to freeze PE + - LP: #1352640 + * powerpc/powernv: Split ioda_eeh_get_state() + - LP: #1352640 + * powerpc/powernv: Handle compound PE + - LP: #1352640 + * powerpc/powernv: Handle compound PE for EEH + - LP: #1352640 + * powerpc/powernv: Handle compound PE in config accessors + - LP: #1352640 + * mnt: Only change user settable mount flags in remount + - LP: #1356318 + - CVE-2014-5206 + * mnt: Move the test for MNT_LOCK_READONLY from change_mount_flags into do_remount + - LP: #1356318 + - CVE-2014-5206 + * mnt: Correct permission checks in do_remount + - LP: #1356323 + - CVE-2014-5207 + * mnt: Change the default remount atime from relatime to the existing value + - LP: #1356323 + - CVE-2014-5207 + + -- Tim Gardner Sun, 10 Aug 2014 09:10:51 -0600 + +linux (3.16.0-7.12) utopic; urgency=low + + [ Andy Whitcroft ] + + * rebase to v3.16 final + * [Config] d-i -- add virtio_scsi to virtio-modules + - LP: #1342000 + + [ dann frazier ] + + * [Packaging] Fix 'printchanges' to work with versions containing '+' + + [ Tim Gardner ] + + * [Config] CONFIG_MICROCODE=y + - LP: #1084373 + * [Config] CONFIG_CONTEXT_TRACKING_FORCE=n + - LP: #1349028 + * [Config] Add hv_balloon to d-i virtio-modules + - LP: #1292216 + * Release Tracking Bug + - LP: #1354530 + + [ Upstream Kernel Changes ] + + * rebase to v3.16 + + -- Tim Gardner Tue, 29 Jul 2014 09:55:15 -0400 + +linux (3.16.0-6.11) utopic; urgency=low + + [ Paolo Pisati ] + + * [Config] armhf: MXS_DMA=y && MTD_NAND_GPMI_NAND=m + * [Config] armhf: KEYBOARD_IMX=m + * [Config] armhf: build cubox & imx6 DTBs + * [Config] armhf: RTC_DRV_PCF8523=y + + [ Tim Gardner ] + + * [Config] CONFIG_KEYS_DEBUG_PROC_KEYS=y + - LP: #1344405 + * [Config] CONFIG_SCSI_IPR_TRACE=y, CONFIG_SCSI_IPR_DUMP=y + - LP: #1343109 + * Release Tracking Bug + - LP: #1349196 + + [ Upstream Kernel Changes ] + + * rebase to v3.16-rc7 + + -- Tim Gardner Thu, 24 Jul 2014 09:08:55 -0400 + +linux (3.16.0-5.10) utopic; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1346298 + * [Config] CONFIG_GPIO_SYSFS=y + - LP: #1342153 + * rebase to v3.16-rc6 + + [ Paolo Pisati ] + + * [Config] enable ARCH_MVEBU* + * [Config] AHCI_MVEBU=m + * [Config] ARMADA_THERMAL=y + * [Config] ARM_ARMADA_370_XP_CPUIDLE=y + * [Config] CRYPTO_DEV_MV_CESA=m + * [Config] I2C_MV64XXX=m + * [Config] MMC_MVSDIO=m + * [Config] MMC_SDHCI_DOVE=m + * [Config] MTD_NAND_ORION=m + * [Config] MTD_NAND_PXA3xx=m + * [Config] MVNETA=m + * [Config] MV_XOR=y + * [Config] ORION_WATCHDOG=m + * [Config] PCI_MVEBU=y + * [Config] RTC_DRV_MV=y + * [Config] SND_KIRKWOOD_SOC*=m + * [Config] SPI_ORION=m + * [Config] USB_XHCI_MVEBU=m + * [Config] armhf: build all Armada and Dove DTBs + * [Config] armhf: SERIAL_8250_DW=y + + [ Upstream Kernel Changes ] + + * rebase to v3.16-rc6 + + -- Tim Gardner Tue, 15 Jul 2014 07:49:42 -0400 + +linux (3.16.0-4.9) utopic; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1341543 + + [ Upstream Kernel Changes ] + + * rebase to v3.16-rc5 + + -- Tim Gardner Sun, 13 Jul 2014 21:30:27 -0400 + +linux (3.16.0-3.8) utopic; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1340091 + + -- Tim Gardner Thu, 10 Jul 2014 10:06:47 +0100 + +linux (3.16.0-2.7) utopic; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: aufs3 -- avoid aufs3-mmap.patch include hell for arm64 + ubuntu: aufs3 -- (no-up) aufs3-mmap.patch + + -- Tim Gardner Wed, 09 Jul 2014 16:16:28 +0100 + +linux (3.16.0-2.6) utopic; urgency=low + + [ Andy Whitcroft ] + + * Revert "ubuntu: aufs3 -- (no-up) aufs3-mmap.patch" + Fixes FTBS. + + -- Tim Gardner Tue, 08 Jul 2014 17:29:26 +0100 + +linux (3.16.0-2.5) utopic; urgency=low + + [ Andy Whitcroft ] + + * ubuntu -- fix basic format for ubuntu/Makefile + * ubuntu: AUFS (no-squash): basic framework and update machinary + * ubuntu: aufs3 -- update update scripting + * ubuntu: aufs3 -- (no-up) aufs3-base.patch + * ubuntu: aufs3 -- (no-up) aufs3-mmap.patch + * ubuntu: aufs3 -- (no-up) aufs3-standalone.patch + * ubuntu: AUFS -- update to dcf336a754c86d5ee1c3d50699fd75c586d037cb + * [Configs] AUFS configs + * ubuntu: aufs3 -- reenable + + [ Tim Gardner ] + + * CONFIG_LATENCYTOP=n + + -- Tim Gardner Tue, 08 Jul 2014 15:27:35 +0100 + +linux (3.16.0-2.4) utopic; urgency=low + + [ Andy Whitcroft ] + + * [Config] flip VIRTIO*=y + * [Config] commonise CONFIG_SWIOTLB=y + * [Config] apply Bus options (PCI etc.) >> PCI support config defaults + * [Config] apply Device Drivers >> ATA/ATAPI/MFM/RLL support (DEPRECATED) + config defaults + * [Config] apply Device Drivers >> Block devices config defaults + * [Config] apply Device Drivers >> Character devices config defaults + * [Config] apply Device Drivers >> DMA Engine support config defaults + * [Config] apply Device Drivers >> EDAC (Error Detection And Correction) + reporting config defaults + * [Config] apply Device Drivers >> Graphics support >> Direct Rendering + Manager >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI + support) config defaults + * [Config] apply Device Drivers >> GPIO Support config defaults + * [Config] apply Device Drivers >> Graphics support >> Console display + driver support config defaults + * [Config] apply Device Drivers >> IIO staging drivers >> Accelerometers + config defaults + * [Config] apply Device Drivers >> IOMMU Hardware Support config defaults + * [Config] apply Device Drivers >> Input device support >> Generic input + layer (needed for keyboard, mouse, ...) >> Miscellaneous devices config + defaults + * [Config] apply Device Drivers >> Input device support >> Hardware I/O + ports config defaults + * [Config] apply Device Drivers >> LED Support >> LED Class Support + config defaults + * [Config] apply Device Drivers >> Hardware Spinlock drivers config + defaults + * [Config] apply Device Drivers >> Multimedia support >> Cameras/video + grabbers support config defaults + * [Config] apply Security options config defaults + * [Config] apply Networking options >> Network packet filtering framework + (Netfilter) >> Core Netfilter Configuration config defaults + * [Config] apply Device Drivers >> MMC/SD/SDIO card support config + defaults + * [Config] apply Device Drivers >> Graphics support >> Frame buffer + Devices >> Support for frame buffer devices config defaults + * [Config] apply Power management and ACPI options >> CPU Frequency + scaling config defaults + * [Config] apply Processor type and features config defaults + * [Config] apply Partition Types config defaults + * [Config] apply Power management and ACPI options config defaults + * [Config] apply Device Drivers >> InfiniBand support config defaults + * [Config] apply Device Drivers >> Misc devices config defaults + * [Config] apply Device Drivers >> Multifunction device drivers config + defaults + * [Config] apply Device Drivers >> SCSI device support >> SCSI device + support >> SCSI low-level drivers config defaults + * [Config] apply Device Drivers >> Network device support >> Ethernet + driver support config defaults + * [Config] apply Device Drivers >> Network device support >> Network core + driver support config defaults + * [Config] apply Device Drivers >> Network device support >> PHY Device + support and infrastructure config defaults + * [Config] apply File systems >> Network File Systems config defaults + * [Config] apply Device Drivers >> Input device support >> Generic input + layer (needed for keyboard, mouse, ...) >> Touchscreens config defaults + * [Config] apply Device Drivers >> Memory Technology Device (MTD) support + >> NAND Device Support config defaults + * [Config] apply Device Drivers >> Network device support >> Wireless LAN + >> Ralink driver support config defaults + * [Config] apply Device Drivers >> Staging drivers config defaults + * [Config] apply Cryptographic API >> Hardware crypto devices config + defaults + * [Config] apply Device Drivers >> Macintosh device drivers config + defaults + * [Config] apply Device Drivers >> Network device support >> Wireless LAN + config defaults + * [Config] apply Device Drivers >> PPS support config defaults + * [Config] apply Device Drivers >> Sound card support config defaults + * [Config] apply Networking support >> RF switch subsystem support config + defaults + * [Config] apply Library routines config defaults + * [Config] apply Device Drivers >> CODEC drivers config defaults + * [Config] apply Device Drivers >> PHY Subsystem config defaults + * [Config] apply Device Drivers >> Pulse-Width Modulation (PWM) Support + config defaults + * [Config] apply Kernel hacking >> Tracers config defaults + * [Config] apply Kernel hacking >> Runtime Testing config defaults + * [Config] apply Kernel hacking >> Architecture: powerpc config defaults + * [Config] apply Device Drivers >> USB support config defaults + * [Config] apply Device Drivers >> Power supply class support config + defaults + * [Config] apply Device Drivers >> USB Network Adapters config defaults + * [Config] apply General setup >> IRQ subsystem config defaults + * [Config] apply General setup config defaults + * [Config] apply File systems >> Miscellaneous filesystems config + defaults + * [Config] apply File systems config defaults + * [Config] apply Device Drivers >> Userspace I/O drivers config defaults + * [Config] apply Device Drivers >> Virtio drivers config defaults + * [Config] apply Device Drivers >> USB Peripheral Controller config + defaults + * [Config] apply Device Drivers >> SCSI device support >> SCSI device + support >> SCSI Transports config defaults + * [Config] apply Device Drivers >> Real Time Clock config defaults + * [Config] apply Device Drivers >> Serial ATA and Parallel ATA drivers + (libata) config defaults + * [Config] apply Device Drivers >> SoC Audio for Freescale CPUs config + defaults + * [Config] apply Device Drivers >> Voltage and Current Regulator Support + config defaults + * [Config] apply Device Drivers >> USB Physical Layer drivers config + defaults + * [Config] apply Device Drivers >> Watchdog Timer Support config defaults + * [Config] powerpc-powerpc-e500mc FTBFS -- CONFIG_CRASH_DUMP=n + * [Config] powerpc-powerpc64-emb FTBFS -- CONFIG_IMA=n + * [Config] powerpc-powerpc64-emb FTBFS -- CONFIG_HIBERNATION=n + CONFIG_HOTPLUG_CPU=n + * [Config] ppc64el-generic FTBFS -- CONFIG_LUSTRE_FS=n + * [Config] drivers/message/fusion needs scsi_transport_spi in virtual + * [Config] drivers/acpi/acpi_ipmi.ko needs + drivers/char/ipmi/ipmi_msghandler.ko in virtual + * [Config] armhf-* FTBFS -- CONFIG_STACK_TRACER=n + CONFIG_FUNCTION_TRACER=n + * [Config] ignore modules changing following major config changes + + [ Tim Gardner ] + + * rebase to v3.16-rc4 + + [ Upstream Kernel Changes ] + + * rebase to v3.16-rc4 + - LP: #1297581 + + -- Andy Whitcroft Thu, 03 Jul 2014 11:00:43 +0100 + +linux (3.16.0-1.3) utopic; urgency=low + + [ Andy Whitcroft ] + + * Revert "Disable do_tools_perf for FTBS" + * SAUCE: fix perf_regs definitions for arm64 + + [ Paolo Pisati ] + + * [Config] armhf: ARCH_EXYNOS5* support + * [Config] armhf: CPU_IDLE=y and ARM_EXYNOS_CPUIDLE=y + * [Config] armhf: EXYNOS_THERMAL=y + * [Config] armhf: EXYNOS_IOMMU=y + * [Config] armhf: EXYNOS_ADC=m + * [Config] armhf: EXYNOS_I2C_EXYNOS5=m + * [Config] armhf: MMC_SDHCI_S3C=m + * [Config] armhf: PCI_EXYNOS=y + * [Config] armhf: PHY_EXYNOS5250_SATA=y + * [Config] armhf: USB_[E|O]HCI_EXYNOS=y && SAMSUNG_USBPHY=y + * [Config] armhf: PWM_SAMSUNG=m + * [Config] armhf: RTC_DRV_S3C=y + * [Config] armhf: S3C2410_WATCHDOG=m + * [Config] armhf: MMC_DW_EXYNOS=m + * [Config] armhf: SERIAL_SAMSUNG=y + * [Config] armhf: SND_SOC_SAMSUNG=m + * [Config] armhf: SPI_S3C64XX=m + * [Config] armhf: EXYNOS_VIDEO=y and VIDEO_SAMSUNG*=m + * [Config] armhf: FB_S3C=m + * [Config] armhf: build all Exynos 5 DTBs + * [Config] armhf: disable CPUFREQ_EXYNOS + + [ Tim Gardner ] + + * rebase to v3.16-rc3 + + [ Upstream Kernel Changes ] + + * rebase to v3.16-rc3 + - LP: #1331915 + + -- Tim Gardner Tue, 24 Jun 2014 08:58:09 -0600 + +linux (3.16.0-0.2) utopic; urgency=low + + [ Tim Gardner ] + + * Revert "SAUCE: intel_pstate -- toggle default to disable" + - LP: #1333322 + * CONFIG_BOOKE_WDT=y + * Disable do_tools_perf for FTBS (just until I can figure it out) + + -- Tim Gardner Mon, 23 Jun 2014 13:37:53 -0600 + +linux (3.16.0-0.1) utopic; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1333265 + + [ Andy Whitcroft ] + + * [Config] cloud-tools -- add systemd units + - LP: #1329027 + + [ dann frazier ] + + * [Config] CONFIG_RTC_DRV_XGENE=y for arm64 + * [Config] CONFIG_NET_XGENE=m for arm64 + * [Config] Restrict CONFIG_POWER_RESET_SYSCON to arm64 only + + [ Feng Kan ] + + * SAUCE: (no-up) arm64: dts: Add X-Gene reboot driver dts node + * SAUCE: (no-up) Add documentation for generic SYSCON reboot driver. + * SAUCE: (no-up) Select reboot driver for X-Gene platform. + + [ Iyappan Subramanian ] + + * SAUCE: (no-up) MAINTAINERS: Add entry for APM X-Gene SoC ethernet driver + * SAUCE: (no-up) Documentation: dts: Add bindings for APM X-Gene SoC ethernet driver + * SAUCE: (no-up) dts: Add bindings for APM X-Gene SoC ethernet driver + * SAUCE: (no-up) drivers: net: Add APM X-Gene SoC ethernet driver support. + + [ Tim Gardner ] + + * updateconfigs + * Fix arm64 crypto Makefile + * [Config] CONFIG_BOOKE_WDT=n for FTBS + * [Debian] Add UTS_UBUNTU_RELEASE_ABI to utsrelease.h + - LP: #1327619 + * Disabled powerpc64-emb for FTBS + * [Config] CONFIG_DRM_TEGRA=m + * [Config] CONFIG_CMA_SIZE_MBYTES=64 + * rebase to v3.16-rc2 + * Clean up generic.inclusion-list warnings + + [ Upstream Kernel Changes ] + + * rebase to v3.16-rc2 + - LP: #1328587 + - LP: #1319291 + - LP: #1310512 + - LP: #1310512 + - LP: #1305480 + + -- Tim Gardner Thu, 12 Jun 2014 12:26:09 +0000 + +linux (3.15.0-6.11) utopic; urgency=low + + [ Adam Conrad ] + + * Enable building the sata-modules udeb on ppc64el. + - LP: #1323980 + * [Packaging] Set bootloader and loader on ppc64el to grub + + [ Adam Lee ] + + * SAUCE: (no-up) rtlwifi: rtl8723be: disable MSI interrupts mode + - LP: #1310512, #1320070 + + [ Alex Hung ] + + * SAUCE: (no-up) dell-led: add mic mute led interface + - LP: #1308297 + + [ Andy Whitcroft ] + + * [Config] d-i -- add hyperv_keyboard to serial-modules udeb + - LP: #1285434 + * [Config] tools -- enable cpupower on ppc64el + * [Config] ppc64el -- enable perf tools + * [Config] powerpc -- enable perf tools + * [Config] ppc64el -- reduce MAX_ORDER with 64k pages + * [Config] arm64 -- enable tools + - LP: #1326050 + * [Config] switch hyper-keyboard to virtual + - LP: #1325306 + * [Config] fix up Breaks/Replaces on linux-cloud-tools-common to fix + upgrades + * SAUCE: kvm: BIOS disabled kvm support should be a warning + - LP: #1300247 + * SAUCE: nouveau: missing outputs should be warnings + - LP: #1300244 + * [Config] d-i -- add nvme devices to block-modules udeb + - LP: #1303710 + + [ Anton Blanchard ] + + * SAUCE: (no-up) powerpc: 64bit sendfile is capped at 2GB + - LP: #1328230 + + [ Colin Ian King ] + + * SAUCE: intel_pstate: inform user that thermald is worth considering + + [ Dave Chiluk ] + + * [Config] Enable CONFIG_IP_VS_IPV6=y + - LP: #1300739 + + [ Paolo Pisati ] + + * [Config] build vexpress a9 dtb + - LP: #1303657 + + [ Tetsuo Handa ] + + * SAUCE: kthread: Do not leave kthread_create() immediately upon SIGKILL. + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1329045 + * [Debian] Treat vdso install as an environment variable + - LP: #1325713 + * [Config] Treat vdso install as an environment variable + - LP: #1325713 + * [config] Set IPMI suppoort default to "y" + * [Config] powerpc -- CONFIG_SCSI_IBMVSCSI=y + * [Config] CONFIG_RT_GROUP_SCHED=n + - LP: #1284731 + * [Config] ppc64el -- switch to 64K system pages + * [Config] CONFIG_MICROCODE_EARLY=y + * [Config] SND_DAVINCI_SOC && SND_AM33XX_SOC_EVM =m + * [Config] armhf: DRM_TILCDC=m + * SAUCE: (no-up) mei_me: Add module parameter to disable MSI + * [Config] arm64: KVM=y + * [Config] armhf: LEDS_TRIGGER_HEARTBEAT=y + * [Config] armhf: generic: disable CPU_IDLE + * [Config] armhf: CPU_FREQ=y + * [Config] Add new mlx modules to d-i + * [Config] Added Muti-Arch support for linux-headers-PKGVER-ABINUM, linux-tools-common, and linux-cloud-tools-common + - LP: #1295112 + * [Config] CONFIG_EXYNOS_ADC=n, CONFIG_HW_RANDOM_EXYNOS=n, CONFIG_MMC_DW_EXYNOS=n, CONFIG_USB_DWC3_EXYNOS=n + - LP: #1294353 + * [Config] CONFIG_ABX500_CORE=y for ppc64el + * [Config] CONFIG_ALX=m for powerpc + * [Config] CONFIG_ACENIC_OMIT_TIGON_I=n for ppc64el + * [Config] CONFIG_ACORN_PARTITION_*=n for ppc64el + * [Config] CONFIG_ANDROID=n for powerpc + * [Config] CONFIG_ASYNC_RAID6_TEST=m for ppc64el + * [Config] CONFIG_BIG_KEYS=y for ppc64el + * [Config] CONFIG_BSD_PROCESS_ACCT=y for ppc64el + * rebase to v3.15 + * [Config] CONFIG_PHY_XGENE=y + * [Config] CONFIG_MLX4_DEBUG=y + - LP: #1328256 + * [Config] CONFIG_POWERNV_CPUFREQ=y for powerpc, ppc64el + - LP: #1324571 + * [Config] CONFIG_BLK_DEV_SR_VENDOR=n for ppc64el + * [Config] CONFIG_CFG80211=m for ppc64el + * [Config] CONFIG_CHARGER_BQ24190=m for powerpc + * [Config] CONFIG_CHARGER_BQ24735=m for powerpc + * [Config] CONFIG_EXPERT=y for ppc64el + * [Config] CONFIG_ATA_SFF=y on ppc64el + * [Config] CONFIG_ATA_GENERIC=y for ppc64el, powerpc + * [Config] CONFIG_CHR_DEV_ST=m for ppc64el + * [Config] CONFIG_CHECKPOINT_RESTORE=y for ppc64el + * [Config] CONFIG_CHELSIO_T1_1G=y for ppc64el + * [Config] CONFIG_CHR_DEV_OSST=m for ppc64el + * [Config] CONFIG_CHR_DEV_SCH=m for ppc64el + * [Config] CONFIG_CPU_FREQ_STAT=y for powerpc + * [Config] CONFIG_DDR=y for ppc64el + * [Config] CONFIG_DEBUG_BUGVERBOSE=y for powerpc + * [Config] CONFIG_E100=m, CONFIG_E1000=m, CONFIG_E1000E=m for ppc64el + * [Config] CONFIG_EZX_PCAP=n for all arches + * [Config] CONFIG_DYNAMIC_DEBUG=y for powerpc + * [Config] CONFIG_ENABLE_MUST_CHECK=n for ppc64el + * [Config] CONFIG_ENABLE_WARN_DEPRECATED=n for ppc64el + * [Config] CONFIG_FB_3DFX=m for all arches + * [Config] CONFIG_FB_MATROX=m for ppc64el + * [Config] CONFIG_FB_RADEON=m for ppc64el + * [Config] CONFIG_FB_SAVAGE_I2C=y for all arches + * [Config] CONFIG_FIREWIRE=m for ppc64el + * [Config] CONFIG_FTR_FIXUP_SELFTEST=n for ppc64el + * [Config] CONFIG_HAMRADIO=y for ppc64el + * [Config] CONFIG_I2C_CHARDEV=m for ppc64el + * [Config] CONFIG_I2C_MUX=m for ppc64el + * [Config] CONFIG_I2C_STUB=m for ppc64el + * [Config] CONFIG_I2O=m for ppc64el + * [Config] CONFIG_INET_XFRM_MODE_BEET=m, CONFIG_INET_XFRM_MODE_TRANSPORT=m, CONFIG_INET_XFRM_MODE_TUNNEL=m for ppc64el + * [Config] CONFIG_INFINIBAND_IPOIB_DEBUG=n, CONFIG_INFINIBAND_MTHCA_DEBUG=n for ppc64el + * [Config] CONFIG_INFINIBAND_NES=m, CONFIG_INFINIBAND_OCRDMA=m, CONFIG_INFINIBAND_QIB=m for ppc64el + * [Config] CONFIG_INPUT_FF_MEMLESS=m for ppc64el + * [Config] CONFIG_INTERVAL_TREE_TEST=m for ppc64el + * [Config] CONFIG_IPACK_BUS=m for ppc64el + * [Config] CONFIG_ISDN=y for ppc64el + * [Config] CONFIG_ISO9660_FS=m for ppc64el + * [Config] CONFIG_KGDB=y for ppc64el + * [Config] CONFIG_KVM_GUEST=y for ppc64el + * [Config] CONFIG_L2TP_V3=y for powerpc + * [Config] CONFIG_MAILBOX=y for ppc64el + * [Config] CONFIG_MD_LINEAR=m, CONFIG_MD_RAID0=m, CONFIG_MD_RAID1=m for ppc64el + * [Config] CONFIG_MEDIA_SUPPORT=m for ppc64el + * [Config] CONFIG_MEMORY=y for ppc64el + * [Config] CONFIG_MEMSTICK=m for ppc64el + * [Config] CONFIG_MFD_SM501_GPIO=n for ppc64el + * [Config] CONFIG_MMC_BLOCK=m for ppc64el + * [Config] CONFIG_MOUSE_PS2=m for ppc64el + * [Config] CONFIG_NET_9P=m for ppc64el + * [Config] CONFIG_MSDOS_FS=m for ppc64el + * [Config] CONFIG_MSI_BITMAP_SELFTEST=n for ppc64el + * [Config] CONFIG_MTD=m for arm64 + * [Config] CONFIG_NETCONSOLE=m for ppc64el + * [Config] CONFIG_NETFILTER_XT_TARGET_NOTRACK=m for ppc64el + * [Config] CONFIG_NET_IPIP=m for ppc64el + * [Config] CONFIG_NET_TEAM=m for all arches + * [Config] CONFIG_NFC=m for ppc64el + * [Config] CONFIG_NL80211_TESTMODE=n for all arches + * [Config] CONFIG_NLS_CODEPAGE_437=y for powerpc + * [Config] CONFIG_NLS_ASCII=m, CONFIG_NLS_ISO8859_1=m, CONFIG_NLS_UTF8=m for ppc64el + * [Config] CONFIG_NOP_USB_XCEIV=m for ppc64el + * [Config] CONFIG_NOTIFIER_ERROR_INJECTION=m for ppc64el + * [Config] CONFIG_OPROFILE=m for ppc64el + * [Config] CONFIG_PARPORT_1284=y for ppc64el + * [Config] CONFIG_PARPORT_AX88796=m, CONFIG_PARPORT_PC_FIFO=y, CONFIG_PARPORT_SERIAL=m for ppc64el + * [Config] CONFIG_8723AU_P2P=n + * [Config] CONFIG_PCI_IOV=y, CONFIG_PCI_PASID=y, CONFIG_PCI_PRI=y, CONFIG_PCI_REALLOC_ENABLE_AUTO=y, CONFIG_PCI_STUB=m for ppc64el + * [Config] CONFIG_PCNET32=m for ppc64el + * [Config] CONFIG_SCSI_DH_EMC=m for ppc64el + * [Config] CONFIG_SCSI_DH_HP_SW=m for ppc64el + * [Config] CONFIG_SCSI_FC_ATTRS=m for ppc64el + * [Config] CONFIG_SCSI_IPR=m for ppc64el + * [Config] CONFIG_SCSI_LOGGING=y for ppc64el + * [Config] CONFIG_SCSI_OSD_INITIATOR=m for ppc64el + * [Config] CONFIG_SCSI_SCAN_ASYNC=y for ppc64el + * [Config] CONFIG_SCSI_SYM53C8XX_2=m for ppc64el + * [Config] CONFIG_XILINX_LL_TEMAC=m for powerpc + * [Config] CONFIG_WQ_POWER_EFFICIENT_DEFAULT=y for ppc64el + * [Config] CONFIG_WLAN=y for arm64 + * [Config] CONFIG_VORTEX=m for ppc64el + * [Config] CONFIG_WIMAX=m for ppc64el + * [Config] CONFIG_WATCHDOG=y for ppc64el + * [Config] CONFIG_VIRT_DRIVERS=y for ppc64el + * [Config] CONFIG_VERSION_SIGNATURE="" for powerpc64-emb + * [Config] CONFIG_UWB=m for ppc64el + * [Config] CONFIG_USB_STORAGE=y + * [Config] CONFIG_SATA_AHCI_PLATFORM=y for armhf + * [Config] CONFIG_HID_RMI=m + * [Config] CONFIG_HVC_DCC=n + - LP: #1303657 + + [ Upstream Kernel Changes ] + + * mm/numa: Remove BUG_ON() in __handle_mm_fault() + - LP: #1323165 + * powerpc/powernv: Add calls to support little endian host + - LP: #1327400 + * HID: rmi: introduce RMI driver for Synaptics touchpads + * HID: rmi: do not stop the device at the end of probe + * HID: rmi: check for the existence of some optional queries before reading query 12 + * HID: rmi: do not fetch more than 16 bytes in a query + * HID: rmi: fix wrong struct field name + * HID: rmi: fix masks for x and w_x data + * HID: rmi: do not handle touchscreens through hid-rmi + * ALSA: pcm: 'BUG:' message unnecessarily triggers kerneloops + - LP: #1305480 + * rebase to v3.15 + + -- Tim Gardner Tue, 03 Jun 2014 17:02:49 +0000 + +linux (3.15.0-5.10) utopic; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1325596 + * [Config] CONFIG_POWERNV_CPUFREQ=y for ppc64el + * rebase to v3.15-rc8 + + [ Upstream Kernel Changes ] + + * rebase to v3.15-rc8 + + -- Tim Gardner Mon, 02 Jun 2014 12:59:34 +0000 + +linux (3.15.0-4.9) utopic; urgency=low + + * no change rebuild to fix embeded debhelper. + + -- Andy Whitcroft Thu, 29 May 2014 12:41:58 +0100 + +linux (3.15.0-4.8) utopic; urgency=low + + [ Andy Whitcroft ] + + * Release Tracking Bug + - LP: #1324107 + * [Config] enable SECURITY_APPARMOR_UNCONFINED_INIT + + [ Javier Martinez Canillas ] + + * SAUCE: (no-up) apparmor: fix bug that constantly spam the console + - LP: #1323526 + + [ John Johansen ] + + * SAUCE: (no-up) apparmor: Sync to apparmor3 - alpha6 snapshot + - LP: #1323528 + * SAUCE: (no-up) apparmor: fix apparmor spams log with warning message + - LP: #1308761 + * SAUCE: (no-up) apparmor: fix refcount bug in apparmor pivotroot + - LP: #1308765 + * SAUCE: (no-up): apparmor: fix apparmor refcount bug in apparmor_kill + - LP: #1308764 + * SAUCE: (no-up): apparmor: use custom write_is_locked macro + - LP: #1323530 + + [ Kamal Mostafa ] + + * [Config] add debian/gbp.conf + + [ Tim Gardner ] + + * [Config] CONFIG_SATA_AHCI=m for ppc64el + - LP: #1323980 + + -- Andy Whitcroft Wed, 28 May 2014 12:47:17 +0100 + +linux (3.15.0-3.7) utopic; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1323189 + + [ Andy Whitcroft ] + + * [Config] autopkgtest -- need fakeroot for tests + + [ Upstream Kernel Changes ] + + * rebase to v3.15-rc7 + + -- Tim Gardner Mon, 26 May 2014 08:12:50 +0200 + +linux (3.15.0-2.6) utopic; urgency=low + + [ Andy Whitcroft ] + + * [Config] remove the kernel-image firmware list on clean + + [ Martin Pitt ] + + * [Config] autopkgtest -- switch to significantly faster rebuild + + [ Stefan Bader ] + + * [Config]: Add missing modules to inclusion list + + [ Tim Gardner ] + + * [debian] Dynamically generate the kernel-image udebs firmware list + * [d-i] firmware/kernel-image is generated + * rebase to v3.15-rc6 + * Release Tracking Bug + - LP: #1322251 + + [ Upstream Kernel Changes ] + + * rebase to v3.15-rc6 + - LP: #1297581 + + -- Tim Gardner Wed, 21 May 2014 10:51:29 -0700 + +linux (3.15.0-1.5) utopic; urgency=low + + [ Tim Gardner ] + + * [Config] Add apm-mustang.dtb to kernel-image udeb + + -- Tim Gardner Mon, 19 May 2014 14:47:42 -0700 + +linux (3.15.0-1.4) utopic; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: (no-up) hv -- bodge hv_vss_daemon so it can use the + local linux/hyperv.h" + * Revert "SAUCE: (no-up) hv -- bodge hv_kvp_daemon so it can use the + local linux/hyperv.h" + * [Packaging] tools -- hv tools build correctly against the built headers + * [Packaging] cloud-tools -- add the hv_fcopy_daemon to the package + * cloud-tools -- pull in init scripts for Hyper-V daemons + * cloud-tools -- detect Hyper-V VM to avoid starting + * cloud-tools -- update IF_NAME to DEVICE in hv_* scripts + - LP: #1295401 + * [Config] cloud-tools: reenable cloud-tools + + -- Andy Whitcroft Sun, 18 May 2014 19:21:04 +0100 + +linux (3.15.0-1.3) utopic; urgency=low + + [ Andy Whitcroft ] + + * [Packaging] ppc64el is a powerpc kernel arch and needs its quirks + - LP: #1318848 + + [ Ben Collins ] + + * [Config] Switch to grub-ieee1275 as recommended on book3e systems + - LP: #1318629 + + [ Tim Gardner ] + + * [Config] CONFIG_FSL_PAMU=n + - LP: #1311738 + * Release Tracking Bug + - LP: #1320239 + + -- Tim Gardner Fri, 16 May 2014 07:37:07 -0600 + +linux (3.15.0-1.2) utopic; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1318171 + * Add rpcsec_gss_krb5 to generic inclusion list + - LP: #769527 + * rebase to v3.15-rc5 + + [ Upstream Kernel Changes ] + + * rebase to v3.15-rc5 + - LP: #1297581 + + -- Tim Gardner Tue, 06 May 2014 15:20:10 -0500 + +linux (3.15.0-0.1) utopic; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to v3.15-rc4 + - LP: #1297581 + - LP: #1297581 + - LP: #1305133 + - LP: #1297581 + - LP: #1297581 + - LP: #871808 + - LP: #1260303 + - LP: #1268468 + - LP: #1248116 + - LP: #1211920 + - LP: #1259790 + - LP: #1259437 + - LP: #1259435 + - LP: #1268468 + + -- Tim Gardner Fri, 07 Feb 2014 09:35:13 -0700 + +linux (3.15.0-0.0) utopic; urgency=low + + * Initial version for 3.15. + + -- Andy Whitcroft Fri, 02 May 2014 15:06:39 +0100 + +linux (3.13.0-8.27) trusty; urgency=low + + [ John Johansen ] + + * SAUCE: Add config option to disable new apparmor 3 semantics + -LP: #1270215 + + [ Tim Gardner ] + + * [debian] Fix indep_hdrs_pkg_name + - LP: #1134441 + * Update lttng to 00808267d3ba7cdcddfed7bec7e62a40463c1307 Version 2.4.0-rc3 + * Enabled lttng build + * Don't build lttng for armhf + lttng hates gcc-4.8 for armhf + * Release Tracking Bug + - LP: #1277309 + + [ Upstream Kernel Changes ] + + * rebase to v3.13.2 + - LP: #1260303 + - LP: #1260303 + - LP: #1268468 + + -- Tim Gardner Thu, 06 Feb 2014 09:25:51 -0700 + +linux (3.13.0-7.26) trusty; urgency=low + + [ John Johansen ] + + * SAUCE: apparmor: fix uninitialized lsm_audit membe + - LP: #1268727 + * Add config option to optionally enable new apparmor 3 semantics + + [ Tim Gardner ] + + * [Config] Add lowlatency to getabis + * [Config] CONFIG_SECURITY_APPARMOR_AA3_SEMANTICS=y + - LP: #1270215 + * Release Tracking Bug + - LP: #1276810 + + [ Upstream Kernel Changes ] + + * x86, x32: Correct invalid use of user timespec in the kernel + - LP: #1274349 + - CVE-2014-0038 + + -- Tim Gardner Wed, 05 Feb 2014 15:49:44 -0500 + +linux (3.13.0-7.25) trusty; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: fix fmd headers" + * SAUCE: fix fmd headers + + -- Andy Whitcroft Tue, 04 Feb 2014 09:36:09 +0000 + +linux (3.13.0-7.24) trusty; urgency=low + + [ Stefan Bader ] + + * [Config] Make vmwgfx driver enable the framebuffer device + + [ Tim Gardner ] + + * rebase to v3.13.1 + * [Config] CONFIG_NFS_FS=m for ppc64el + * [Config] CONFIG_X86_SYSFB=n + https://lists.ubuntu.com/archives/kernel-team/2014-February/038166.html + * Release Tracking Bug + - LP: #1275898 + + [ Upstream Kernel Changes ] + + * i2c: piix4: Add support for AMD ML and CZ SMBus changes + - LP: #1272525 + * i2c: piix4: Use different message for AMD Auxiliary SMBus Controller + - LP: #1272525 + * mm: ignore VM_SOFTDIRTY on VMA merging + - LP: #1274917 + * drm/radeon: disable dpm on BTC + - LP: #1266984 + + [ Upstream Kernel Changes ] + + * rebase to v3.13.1 + + -- Tim Gardner Thu, 30 Jan 2014 15:24:48 +0000 + +linux (3.13.0-6.23) trusty; urgency=low + + [ Andy Whitcroft ] + + * [Config] fix up architecture for linux-tools + + -- Andy Whitcroft Thu, 30 Jan 2014 09:00:41 +0000 + +linux (3.13.0-6.22) trusty; urgency=low + + [ Andy Whitcroft ] + + * [Packaging] limit linux-udebs- to matching arch + * [Config] powerpc -- disable perf to fix FTBFS + * [Config] ppc64el -- fix up missing udebs + + -- Andy Whitcroft Wed, 29 Jan 2014 16:00:28 +0000 + +linux (3.13.0-6.21) trusty; urgency=low + + [ Andy Fleming ] + + * SAUCE: net: Add support for handling queueing in hardware + * SAUCE: of_mdio: Add of_phy_attach function + * SAUCE: phylib: Add generic 10G driver + * SAUCE: phylib: Support attaching to gen10g_driver + * SAUCE: phylib: Add Clause 45 read/write functions + + [ Andy Whitcroft ] + + * SAUCE: fix fmd headers + * [Packaging] lowlatency -- merge out of tree flavours + * SAUCE: allow IRQs to be irq-threaded by default via config + * [Config]: enable CONFIG_IRQ_FORCED_THREADING_DEFAULT for lowlatency + * [Config] powerpc -- fix up Build-depends: + * Release Tracking Bug + - LP: #1273747 + + [ Ben Collins ] + + * SAUCE: PPC: PCI: Fix pcibios_io_space_offset() so it works for 32-bit + ptr/64-bit rsrcs + * SAUCE: Revert "phy: vitesse make vsc824x_add_skew static" + * SAUCE: Fixup freescale usb phy driver to work on ppc64 + * SAUCE: xgmac_mdio: Silence read errors + * SAUCE: Provide booke stub for kvmppc_is_bigendian() + * SAUCE: Fix stack overflow on ppc32 + * SAUCE: Use resource_size_t instead of long for PCI resource address + * SAUCE: net/phy: Export function for use by dpaa_eth + * [Packaging] powerpc -- merge out of tree powerpc arch + + [ Bjorn Helgaas ] + + * SAUCE: Revert "EISA: Log device resources in dmesg" + - LP: #1251816 + * SAUCE: Revert "EISA: Initialize device before its resources" + - LP: #1251816 + + [ Emil Medve ] + + * SAUCE: phylib: Minimum hack to get the generic 10G PHY driver to work + with 10G "fixed-link"s + + [ Kumar Gala ] + + * SAUCE: fsl_qbman: Add drivers for Freescale DPAA Qman & Bman + * SAUCE: fsl_pme2: Add support for DPAA PME + * SAUCE: fmd: FMD14 integration + * SAUCE: dpaa_eth: Ethernet driver for Freescale QorIQ DPA Architecture + * SAUCE: powerpc/85xx: Add DPAA/networking support for CoreNet + + [ Madalin Bucur ] + + * SAUCE: net/flow: remove sleeping and deferral mechanism from + flow_cache_flush + * SAUCE: net/phy: abort genphy_read_status when link changes during speed + and duplex reading + + [ Stefan Bader ] + + * [Config] move some VMWare related modules into main package + - LP: #1271669 + + [ Tim Gardner ] + + * [Config] Add r815x to nic-modules + - LP: #1273735 + * [Config] CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y + - LP: #239479 + + [ Upstream Kernel Changes ] + + * mmc: sdhci-pci: break out definitions to header file + - LP: #1239938 + * mmc: sdhci-pci: add support of O2Micro/BayHubTech SD hosts + - LP: #1239938 + * powerpc/book3e: rename interrupt_end_book3e with __end_interrupts + * powerpc/book3e: support CONFIG_RELOCATABLE + * book3e/kexec/kdump: enable kexec for kernel + * book3e/kexec/kdump: create a 1:1 TLB mapping + * book3e/kexec/kdump: introduce a kexec kernel flag + * book3e/kexec/kdump: implement ppc64 kexec specfic + * book3e/kexec/kdump: redefine VIRT_PHYS_OFFSET + * book3e/kexec/kdump: recover "r4 = 0" to create the initial TLB + + -- Andy Whitcroft Tue, 28 Jan 2014 22:59:46 +0000 + +linux (3.13.0-5.20) trusty; urgency=low + + [ Andy Whitcroft ] + + * [Packaging] tools -- do not make symlinks when not making packages + * [Packaging] tools -- tidy up control.stub.in ordering + * [Packaging] tools -- tools-common is shared and not conditional + * rebase to v3.13 + + [ Dirk Brandewie ] + + * SAUCE: intel_pstate: Add setting voltage value for baytrail P states. + + [ KY Srinivasan ] + + * SAUCE: Drivers: hv: vmbus: Specify the target CPU that should receive + notification + + [ Upstream Kernel Changes ] + + * rebase to v3.13 + - LP: #1270603 + + -- Andy Whitcroft Fri, 17 Jan 2014 15:45:31 +0000 + +linux (3.13.0-4.19) trusty; urgency=low + + [ Andy Whitcroft ] + + * [Config] libunwind8-dev is now available for ppc64el + * [Packaging] tools -- make cpupower optional + * [Packaging] tools -- enable correctly for x86 + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1269872 + + [ Upstream Kernel Changes ] + + * SAUCE: ARM: OMAP: hwmod: Add SYSC offsets for AES IP + * SAUCE: ARM: OMAP4: hwmod: Add hwmod data for AES IP + * SAUCE: OMAP: AM33xx: hwmod: Correct AES module SYSC type + * SAUCE: crypto: omap-aes: add error check for pm_runtime_get_sync + + [ Upstream Kernel Changes ] + + * rebase to 85ce70fdf48aa290b4845311c2dd815d7f8d1fa5 + + -- Tim Gardner Wed, 15 Jan 2014 13:23:05 +0000 + +linux (3.13.0-3.18) trusty; urgency=low + + [ Andy Whitcroft ] + + * rebase to v3.13-rc8 + * [Packaging] efi -- allow EFI signatures on any arch + + [ Tim Gardner ] + + * [Config] Fix vcs-git path + * Release Tracking Bug + - LP: #1268683 + + [ Upstream Kernel Changes ] + + * rebase to v3.13-rc8 + + -- Andy Whitcroft Sun, 12 Jan 2014 11:58:01 +0000 + +linux (3.13.0-2.17) trusty; urgency=low + + [ Andy Whitcroft ] + + * Release Tracking Bug + - LP: #1267809 + * [Config] apply Platform support>>CPUIdle driver>>CPU Idle config + defaults + * [Config] apply Platform support>>CPU Frequency scaling config defaults + * [Config] CONFIG_PARIDE_EPATC8=y + * [Config] apply Device Drivers >> Broadcom specific AMBA config defaults + * [Config] apply Bus options >> PCI support >> RapidIO support >> RapidIO + Switch drivers config defaults + * [Config] apply Cryptographic API config defaults + * [Config] apply Device Drivers >> Common Clock Framework config defaults + * [Config] apply Device Drivers >> Distributed Switch Architecture + drivers config defaults + * [Config] apply Device Drivers >> Graphics support >> Backlight & LCD + device support config defaults + * [Config] apply Device Drivers >> Graphics support >> Support for frame + buffer devices >> Bootup logo config defaults + * annotations -- update in tree annotations + * [Config] apply Bus options >> PCI support >> RapidIO support config + defaults + * [Config] CONFIG_POWER_AVS=y CONFIG_RESET_CONTROLLER=y + * [Config] apply Device Drivers >> 1-wire Bus Masters config defaults + * [Config] apply CAN Device Drivers >> Platform CAN drivers with Netlink + support config defaults + * [Config] apply Device Drivers >> Character devices >> Serial drivers + config defaults + * [Config] apply Device Drivers >> Generic Thermal sysfs driver config + defaults + * [Config] apply Device Drivers >> Character devices >> TPM Hardware + Support config defaults + * [Config] apply Device Drivers >> Character devices config defaults + * [Config] apply Device Drivers >> HID support >> USB HID support >> USB + HID transport layer config defaults + * [Config] apply Device Drivers >> HID support >> HID bus support config + defaults + * [Config] apply Device Drivers >> HID support >> USB HID support config + defaults + * annotations -- update in tree annotations + * [Config] apply Device Drivers >> GPIO Support config defaults + * [Config] update configs for apparmour update + + [ John Johansen ] + + * SAUCE: (no-up) apparmor: Sync to apparmor 3 - alpha 4 snapshot + * SAUCE: apparmor: fix unix domain sockets to be mediated on connection + - LP: #1208988 + * SAUCE: apparmor: allocate path lookup buffers during init + - LP: #1208988 + * SAUCE: (no-up) apparmor: Fix tasks not subject to, reloaded policy + - LP: #1236455 + + [ Tim Gardner ] + + * Revert "[Debian] getabis: Preface module with package name" + * [Config] Added ppc64el to getabis + * [packaging] Bump ABI for every new release + + -- Andy Whitcroft Fri, 10 Jan 2014 11:48:39 +0000 + +linux (3.13.0-1.16) trusty; urgency=low + + * First 3.13 upload. + * Release tracker + - LP: #1266852 + + -- Tim Gardner Tue, 07 Jan 2014 09:21:26 -0700 + +linux (3.13.0-0.15) trusty; urgency=low + + [ Tim Gardner ] + + * rebase to v3.13-rc7 + + [ Upstream Kernel Changes ] + + * rebase to v3.13-rc7 + + -- Tim Gardner Sun, 05 Jan 2014 06:13:33 -0700 + +linux (3.13.0-0.14) trusty; urgency=low + + [ Andy Whitcroft ] + + * rebase to 7a262d2ed9fa42fad8c4f243f8025580b58cf2f6 + + [ Tim Gardner ] + + * Remove ubuntu/dm-raid4-5 in favor of CONFIG_MD_RAID456 + * Update lttng to Version 2.4.0-rc2 + * lttng: Disabled trace_kvm_async_pf_completed + * [Config] CONFIG_IMA=y + - LP: #1244627 + + [ Upstream Kernel Changes ] + + * rebase to 7a262d2ed9fa42fad8c4f243f8025580b58cf2f6 + + -- Tim Gardner Thu, 02 Jan 2014 12:57:13 -0700 + +linux (3.13.0-0.13) trusty; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: aufs3 -- (no-up) aufs3-base.patch + * ubuntu: aufs3 -- (no-up) aufs3-mmap.patch + * ubuntu: aufs3 -- (no-up) aufs3-standalone.patch + * ubuntu: AUFS (no-squash): basic framework and update machinary + * ubuntu: AUFS -- update to 7b136a27b021da9010d8b6c101939dd298e46be7 + * ubuntu: aufs3 -- enable + * ubuntu: aufs3 -- update configs + + -- Andy Whitcroft Thu, 02 Jan 2014 09:41:02 +0000 + +linux (3.13.0-0.12) trusty; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to v3.13-rc6 + + -- Tim Gardner Tue, 31 Dec 2013 06:16:03 -0700 + +linux (3.13.0-0.11) trusty; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: suspicious unlocked ->status reading and writing in ipc/sem.c + * [Config] ppc64el -- initial defconfig based -generic flavour + * [Config] initial defconfig for ppc64el + * [Config] ubuntuise ppc64el config + * [Config] ubuntuise ppc64el config part 2 + * [Config] d-i -- update empty udebs list + * [Config] ppc64el -- split extras package + + [ Anton Blanchard ] + + * SAUCE: KVM: PPC: Book3S HV: Add little-endian guest support + + [ Benjamin Herrenschmidt ] + + * SAUCE: powerpc/powernv: Add calls to support little endian + + [ Cédric Le Goater ] + + * SAUCE: KVM: PPC: Book3S: add helper routine to load guest instructions + * SAUCE: KVM: PPC: Book3S: add helper routines to detect endian order + * SAUCE: KVM: PPC: Book3S: MMIO emulation support for little endian + guests + + [ Paul E. McKenney ] + + * SAUCE: powerpc: Make 64-bit non-VMX copy_tofrom_user() bi-endian + + -- Andy Whitcroft Fri, 27 Dec 2013 16:48:55 +0000 + +linux (3.13.0-0.10) trusty; urgency=low + + [ Andy Whitcroft ] + + * rebase to v3.13-rc5 + * [Config] updateconfigs following rebase to v3.13-rc5 + + [ Upstream Kernel Changes ] + + * rebase to v3.13-rc5 + - LP: #1260303 + - LP: #1260303 + - LP: #1260225 + + -- Andy Whitcroft Mon, 23 Dec 2013 12:48:28 +0000 + +linux (3.13.0-0.9) trusty; urgency=low + + [ Andy Whitcroft ] + + * [Config] d-i -- allow missing firmware + + -- Andy Whitcroft Fri, 20 Dec 2013 17:57:06 +0000 + +linux (3.13.0-0.8) trusty; urgency=low + + [ Andy Whitcroft ] + + * [Config] annotations -- first pass over entire config + * [Config] drop libunwind8-dev from Build-Depends for ppc64el + + [ Tim Gardner ] + + * [Config] Add arm64 device tree files + - LP: #1262901 + + -- Andy Whitcroft Thu, 19 Dec 2013 18:36:43 +0000 + +linux (3.13.0-0.7) trusty; urgency=low + + [ Rajesh B Prathipati ] + + * SAUCE: powerpc: Make unaligned accesses endian-safe for powerpc + + [ Tim Gardner ] + + * [Config] CONFIG_REGULATOR_S2MPS11=n for FTBS + + [ Upstream Kernel Changes ] + + * rebase to v3.13-rc4 + - LP: #1259790 + - LP: #1259437 + - LP: #1259435 + + -- Tim Gardner Fri, 13 Dec 2013 07:56:34 -0700 + +linux (3.13.0-0.6) trusty; urgency=low + + [ Paolo Pisati ] + + * [Config] armhf: arm64: VIRTIO_[BLK|MMIO|NET|CONSOLE|BALLOON]=y + * [Config] i386: amd64: VIRTIO_CONSOLE=y + + [ Tim Gardner ] + + * [Config] CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y + + -- Tim Gardner Sun, 08 Dec 2013 09:22:01 -0700 + +linux (3.13.0-0.5) trusty; urgency=low + + [ Andy Whitcroft ] + + * correct bug listing for v3.13-rc2 rebase + * [Config] ppc64el -- create linux-libc-dev + * [Debian] Improve tools version message + - LP: #1257715 + + [ Serge Hallyn ] + + * SAUCE: fork: Allow CLONE_PARENT after setns(CLONE_NEWPID)] + - LP: #1248590 + * SAUCE: vfs: Fix a regression in mounting proc + + [ Tim Gardner ] + + * [Config] Build-in ohci-pci + - LP: #1244176 + * Rebase to v3.13-rc3 + + [ Upstream Kernel Changes ] + + * Revert "Revert "fork: unify and tighten up CLONE_NEWUSER/CLONE_NEWPID + checks"" + - LP: #1248590 + + [ Upstream Kernel Changes ] + + * rebase to v3.13-rc3 + - LP: #1256840 + - LP: #1256212 + + -- Tim Gardner Sat, 07 Dec 2013 07:55:39 -0700 + +linux (3.13.0-0.4) trusty; urgency=low + + [ Tim Gardner ] + + * Rebase to v3.13-rc2 + + [ Upstream Kernel Changes ] + + * rebase to v3.13-rc2 + + -- Tim Gardner Fri, 29 Nov 2013 23:54:05 -0500 + +linux (3.13.0-0.3) trusty; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: Fix DocBook FTBS" + + [ Tim Gardner ] + + * [Debian] Re-sign modules after debug objcopy + - LP: #1253155 + * [Config] CONFIG_EXT4_USE_FOR_EXT23=y + + [ Upstream Kernel Changes ] + + * doc: fix generation of device-drivers + * rebase to b975dc3689fc6a3718ad288ce080924f9cb7e176 + + -- Tim Gardner Tue, 26 Nov 2013 12:24:42 -0700 + +linux (3.13.0-0.2) trusty; urgency=low + + [ Tim Gardner ] + + * SAUCE: Fix DocBook FTBS + + -- Tim Gardner Mon, 25 Nov 2013 13:24:15 -0700 + +linux (3.13.0-0.1) trusty; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to 7e3528c3660a2e8602abc7858b0994d611f74bc3 + + -- Tim Gardner Tue, 12 Nov 2013 07:28:53 -0700 + +linux (3.13.0-0.0) trusty; urgency=low + + * Major release bump. + + -- Andy Whitcroft Tue, 12 Nov 2013 21:37:52 +0000 + +linux (3.12.0-2.7) trusty; urgency=low + + * Fixed armhf ABI build failure. + * Release tracker + - LP: #1249477 + + -- Tim Gardner Fri, 08 Nov 2013 16:22:45 -0700 + +linux (3.12.0-2.6) trusty; urgency=low + + [ Joseph Salisbury ] + + * SAUCE: tg3: Add support for new 57786 device id. + - LP: #1242610 + + [ Tim Gardner ] + + * [Config] CONFIG_OABI_COMPAT=n + * [Config] add the wandboard to shipped dtb + - LP: #1249421 + * Release tracker + - LP: #1249477 + + -- Tim Gardner Fri, 08 Nov 2013 12:23:18 -0700 + +linux (3.12.0-2.5) trusty; urgency=low + + [ Andy Whitcroft ] + + * rebase to mainline v3.12 + * [Config] updateconfigs following rebase to v3.12 + * postinst -- improve relative symlink detection with missing files + - LP: #1248053 + * postinst -- fix unchanged link detection + * [Config] update configs following addition of apparmor fixes + + [ Anthony Wong ] + + * SAUCE: Work around broken ACPI backlight on Dell Inspiron 5537 + - LP: #1231305 + + [ John Johansen ] + + * SAUCE: (no-up) apparmor: Sync to apparmor 3 - alpha 4 snapshot + * SAUCE: apparmor: fix unix domain sockets to be mediated on connection + - LP: #1208988 + * SAUCE: apparmor: allocate path lookup buffers during init + - LP: #1208988 + + [ Tim Gardner ] + + * [Config] Remove superfluous ubuntu/lttng-modules + + [ Upstream Kernel Changes ] + + * Revert "fork: unify and tighten up CLONE_NEWUSER/CLONE_NEWPID checks" + - LP: #1248590 + + [ Upstream Kernel Changes ] + + * rebase to v3.12 + - LP: #1222850 + + [ Adam Conrad ] + * etc/getabis: Fetch arm64/generic abis as well + + -- Andy Whitcroft Wed, 06 Nov 2013 21:00:21 +0000 + +linux (3.12.0-1.3) trusty; urgency=low + + [ Andy Whitcroft ] + + * [Config] arm64 -- add arch to the configuration handlers + * [Config] arm64 -- add generic flavour + * [Config] arm64 -- default config + * [Config] arm64 -- fix up various FTBFS config options + * SAUCE: arm64: export __copy_in_user to modules + * [Config] arm64 -- disable ABI/module checks + * [Config] arm64 -- enforcer -- add arm64 to the enforcer + * [Config] arm64 -- enable udebs for arm64 + + [ Colin Watson ] + + * [Config] Clean up various udeb Provides + + [ Paolo Pisati ] + + * [Config] AHCI_IMX=y + * [Config] build imx*-wandboard dtbs + + [ Serge Hallyn ] + + * SAUCE: device_cgroup: remove can_attach + + [ Tim Gardner ] + + * rebase to v3.12-rc7 + * SAUCE: KVM: Fix modprobe failure for kvm_intel/kvm_amd + * Release tracker + - LP: #1245932 + + [ Upstream Kernel Changes ] + + * rebase to v3.12-rc7 + - LP: #1180881 + - LP: #1180881 + - LP: #1217957 + + -- Tim Gardner Sun, 27 Oct 2013 22:08:55 -0600 + +linux (3.12.0-0.2) trusty; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: (no-up) scsi: hyper-v storage -- mark as preferring READ + CAPACITY (16) at SPC-2" + * Revert "SAUCE: (no-up) scsi: hyper-v storage -- mark as VPD capable at + SPC-2" + * Revert "SAUCE: (no-up) scsi: add scsi device flag to request READ + CAPACITY (16) be preferred" + * Revert "SAUCE: (no-up) scsi: add scsi device flag to request VPD pages + be used at SPC-2" + * Revert "overlayfs: Update to v19" + * Revert "ubuntu: overlayfs v18 -- -- overlayfs: implement show_options" + * Revert "ubuntu: overlayfs v18 -- -- overlayfs: add statfs support" + * Revert "ubuntu: overlayfs v18 -- -- overlay filesystem" + * Revert "ubuntu: overlayfs v18 -- -- vfs: introduce + clone_private_mount()" + * Revert "ubuntu: overlayfs v18 -- -- vfs: export do_splice_direct() to + modules" + * Revert "ubuntu: overlayfs v18 -- -- overlay: overlay filesystem + documentation" + * ubuntu: overlayfs v20 -- overlayfs: add statfs support + * [Config] fix linux-libc-dev generation for arm64 + * [Config] fix linux-libc-dev generation for x32 + * [Config] add linux-libc-dev generation for ppc64el + + [ Erez Zadok ] + + * ubuntu: overlayfs v20 -- overlayfs: implement show_options + + [ Miklos Szeredi ] + + * ubuntu: overlayfs v20 -- vfs: add i_op->dentry_open() + * ubuntu: overlayfs v20 -- vfs: export do_splice_direct() to modules + * ubuntu: overlayfs v20 -- vfs: export __inode_permission() to modules + * ubuntu: overlayfs v20 -- vfs: introduce clone_private_mount() + * ubuntu: overlayfs v20 -- overlay filesystem + * ubuntu: overlayfs v20 -- fs: limit filesystem stacking depth + + [ Neil Brown ] + + * ubuntu: overlayfs v20 -- overlay: overlay filesystem documentation + + [ Paolo Pisati ] + + * [Config] arm: VIRTIO_[BLK|NET|MMIO]=y + + [ Seth Forshee ] + + * SAUCE: (no-up) ACPI: Disable Windows 8 compatibility for some Lenovo + ThinkPads + - LP: #1183856 + + [ Tim Gardner ] + + * [Config] CONFIG_CRYPTO_CRCT10DIF=y, CONFIG_CRYPTO_CRCT10DIF_PCLMUL=m + * rebase to v3.12-rc2 + * updateconfigs + * [Config] disable CONFIG_FB_VESA enforcer check + * [Config] Disable lttng for FTBS + * rebase to v3.12-rc3 + * rebase to v3.12-rc4 + * [Config] CONFIG_ANDROID=n + - LP: #1235161 + * [Config] CONFIG_L2TP_V3=y + - LP: #1235914 + * [Config] CONFIG_USB_OTG=n for all arches + * Release tracker + - LP: #1242811 + + [ Upstream Kernel Changes ] + + * scsi: hyper-v storsvc switch up to SPC-3 + + * rebase to v3.12-rc6 + - LP: #1235977 + - LP: #1235523 + - LP: #1239392 + - LP: #1227491 + + * rebase to v3.12-rc3 + - LP: #1231931 + + * rebase to v3.12-rc2 + - LP: #1213820 + - LP: #1213055 + - LP: #1198030 + + -- Tim Gardner Mon, 23 Sep 2013 07:41:07 -0600 + +linux (3.11.0-8.15) saucy; urgency=low + + [ Tim Gardner ] + + * Release tracker + - LP: #1227969 + + * Update lttng + Updated to git://git.lttng.org/lttng-modules.git 9998f5216f4641a79e158135 + Version 2.3.0+ + + [ Upstream Kernel Changes ] + + * igb: Add additional get_phy_id call for i354 devices + - LP: #1219619 + * igb: Read flow control for i350 from correct EEPROM section + - LP: #1219619 + * timekeeping: Fix HRTICK related deadlock from ntp lock changes + Required for lttng update. + + -- Tim Gardner Thu, 19 Sep 2013 07:41:49 -0600 + +linux (3.11.0-7.14) saucy; urgency=low + + [ Andy Whitcroft ] + + * [Packaging] sort out linux-tools naming + - LP: #1205284 + * [Packaging] linux-tools: switch to common generic version helper + + [ Paolo Pisati ] + + * [Config] highbank: ecx1000: CPU_IDLE causes instabilities, disable it + + [ Tim Gardner ] + + * Release tracker + - LP: #1226160 + + [ Tony Lindgren ] + + * SAUCE: ARM: dts: Fix muxing and regulator for wl12xx on the SDIO bus + for pandaboard + + [ Upstream Kernel Changes ] + + * USB: handle LPM errors during device suspend correctly + - LP: #1011415 + * usb: don't check pm qos NO_POWER_OFF flag in usb_port_suspend() + - LP: #1011415 + * usb: Don't fail port power resume on device disconnect. + - LP: #1011415 + + [ Upstream Kernel Changes ] + + * rebase to v3.11.1 + + -- Tim Gardner Wed, 11 Sep 2013 07:30:17 -0600 + +linux (3.11.0-7.13) saucy; urgency=low + + * Release tracker + - LP: #1223545 + + [ Andy Whitcroft ] + + * SAUCE: (no-up) scsi: add scsi device flag to request VPD pages be used at SPC-2 + - LP: #1223499 + * SAUCE: (no-up) scsi: add scsi device flag to request READ CAPACITY (16) be preferred + - LP: #1223499 + * SAUCE: (no-up) scsi: hyper-v storage -- mark as VPD capable at SPC-2 + - LP: #1223499 + * SAUCE: (no-up) scsi: hyper-v storage -- mark as preferring READ CAPACITY (16) at SPC-2 + - LP: #1223499 + + [ Maximiliano Curia ] + + * SAUCE: (no-up) Only let characters through when there are active readers. + - LP: #1208740 + + [ Tim Gardner ] + + * [Debian] getabis: Commit new ABI directory, remove the old + * [Config] CONFIG_EFIVAR_FS=y + - LP: #1223195 + * [Config] CONFIG_EFI_VARS_PSTORE=m, + CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE=n + * SAUCE: (no-up) USB: input: cm109.c: Convert high volume dev_err() to dev_err_ratelimited() + - LP: #1222850 + + [ Upstream Kernel Changes ] + + * Intel xhci: refactor EHCI/xHCI port switching + - LP: #1210858 + + -- Tim Gardner Tue, 10 Sep 2013 09:00:19 -0600 + +linux (3.11.0-6.12) saucy; urgency=low + + * Release tracker + - LP: #1222893 + + [ Andy Whitcroft ] + + * Revert "ubuntu: (no-squash) AUFS3 -- aufs3-standalone.patch" + * Revert "ubuntu: (no-squash) AUFS3 -- aufs3-base.patch" + * ubuntu: (no-squash) AUFS3 -- aufs3-base.patch + * ubuntu: (no-squash) AUFS3 -- aufs3-standalone.patch + - LP: #1222407 + + [ Paolo Pisati ] + + * [Config] restore mmc boot on panda + + [ Tyler Hicks ] + + * SAUCE: apparmor: Use shash crypto API interface for profile hashes + - LP: #1216294 + + [ Upstream Kernel Changes ] + + * net: calxedaxgmac: remove NETIF_F_FRAGLIST setting + * net: calxedaxgmac: read correct field in xgmac_desc_get_buf_len + * net: calxedaxgmac: fix race between xgmac_tx_complete and xgmac_tx_err + * net: calxedaxgmac: fix possible skb free before tx complete + * net: calxedaxgmac: update ring buffer tx_head after barriers + * net: calxedaxgmac: fix race with tx queue stop/wake + * net: calxedaxgmac: enable interrupts after napi_enable + * net: calxedaxgmac: fix various errors in xgmac_set_rx_mode + * net: calxedaxgmac: remove some unused statistic counters + * net: calxedaxgmac: fix rx DMA mapping API size mismatches + * net: calxedaxgmac: fix xgmac_xmit DMA mapping error handling + * mfd: rtsx: Read vendor setting from config space + - LP: #1201698 + + -- Tim Gardner Mon, 09 Sep 2013 07:21:06 -0600 + +linux (3.11.0-5.11) saucy; urgency=low + + * Release tracker + - LP: #1221886 + + [ Adam Lee ] + + * SAUCE: Bluetooth: Add support for 04ca:2007 + - LP: #1153448 + * SAUCE: Bluetooth: Add support for 105b:e065 + - LP: #1161261 + + [ Gavin Guo ] + + * SAUCE: Bluetooth: Add support for Broadcom 413c:8143 + - LP: #1166113 + + [ Upstream Kernel Changes ] + + * igb: Reset the link when EEE setting changed + - LP: #1219619 + * igb: Read register for latch_on without return value + - LP: #1219619 + * igb: Added rcu_lock to avoid race + - LP: #1219619 + * igb: don't allow SR-IOV without MSI-X + - LP: #1219619 + * igb: Update MTU so that it is always at least a standard frame size + - LP: #1219619 + * igb: Refactor of init_nvm_params + - LP: #1219619 + * igb: Refactor NVM read functions to accommodate devices with no flash + - LP: #1219619 + * igb: Add device support for flashless SKU of i210 device + - LP: #1219619 + * igb: Fix get_fw_version function for all parts + - LP: #1219619 + * igb: Add macro for size of RETA indirection table + - LP: #1219619 + * igb: Expose RSS indirection table for ethtool + - LP: #1219619 + * igb: Don't look for a PBA in the iNVM when flashless + - LP: #1219619 + * igb: Implementation of 1-sec delay for i210 devices + - LP: #1219619 + * igb: New PHY_ID for i354 device + - LP: #1219619 + * igb: M88E1543 PHY downshift implementation + - LP: #1219619 + * igb: No PHPM support in i354 devices + - LP: #1219619 + * igb: Support to get 2_5G link status for appropriate media type + - LP: #1219619 + * igb: Get speed and duplex for 1G non_copper devices + - LP: #1219619 + * igb: Implementation to report advertised/supported link on i354 devices + - LP: #1219619 + * igb: Update version number + - LP: #1219619 + * Bluetooth: Take proper tty_struct references + - LP: #1189998 + * Bluetooth: Remove the device from the list in the destructor + - LP: #1189998 + * Bluetooth: Move the tty initialization and cleanup out of open/close + - LP: #1189998 + * Bluetooth: Implement .activate, .shutdown and .carrier_raised methods + - LP: #1189998 + * Bluetooth: Fix the reference counting of tty_port + - LP: #1189998 + * Bluetooth: Purge the dlc->tx_queue to avoid circular dependency + - LP: #1189998 + + [ Wen-chien Jesse Sung ] + + * SAUCE: Bluetooth: Support for loading broadcom patchram firmware + - LP: #1065400 + * SAUCE: Bluetooth: Add support for 13d3:3388 and 13d3:3389 + - LP: #1065400 + + -- Tim Gardner Thu, 05 Sep 2013 08:06:17 -0600 + +linux (3.11.0-5.10) saucy; urgency=low + + [ Andy Whitcroft ] + + * Release tracker + - LP: #1220222 + * Revert "[Config] Fix ubuntu directoy Kbuilds" + * Revert "aufs update dropped some Kbuild files" + * Revert "ubuntu: AUFS -- follow rename of loop.h into drivers/block" + * Revert "ubuntu: AUFS -- update to + 8e503d4142c189ed6c47a2177ad2cd058e8d340e" + * Revert "ubuntu: (no-squash) AUFS3 -- aufs3-standalone.patch" + * Revert "ubuntu: (no-squash) AUFS3 -- aufs3-base.patch" + * rebase to v3.11 final + * [Config] clean up ubuntu/Kconfig and ubuntu/Makefile + * ubuntu: AUFS (no-squash): basic framework and update machinary + * ubuntu: (no-squash) AUFS3 -- aufs3-base.patch + * ubuntu: (no-squash) AUFS3 -- aufs3-standalone.patch + * ubuntu: AUFS -- update to 5ac5fe26a90a818218310e208d17688fddb07622 + * ubuntu: (no-squash) AUFS -- enable aufs + * ubuntu: AUFS -- fix remaining d_count references to use accessor + * ubuntu: lttng -- follow rename of pid_ns + * SAUCE: disable stack-protector for ARM compressed bootloader + + [ Paolo Pisati ] + + * [Config] ARM_ATAG_DTB_COMPAT=y + + [ Rob Herring ] + + * [Config] Enable KVM and virtio for armhf generic-lpae + + [ Tim Gardner ] + + * [Config] CONFIG_ARPD=y + * [Config] CONFIG_ZSWAP=y + - LP: #1215379 + + [ Upstream Kernel Changes ] + + * uvcvideo: quirk PROBE_DEF for Dell SP2008WFP monitor. + - LP: #1217957 + * ARM: use phys_addr_t for DMA zone sizes + * ARM: highbank: enable DMA zone for LPAE + * ARM: highbank: select ARCH_HAS_HOLES_MEMORYMODEL + * ARM: highbank: select required errata work-arounds + * DMA: fix AMBA PL08x compilation issue with 64bit DMA address type + * DMA: fix printk warning in AMBA PL08x DMA driver + * ARM: highbank: select ARCH_DMA_ADDR_T_64BIT for LPAE + * ARM: move outer_cache declaration out of ifdef + * ARM: highbank: avoid L2 cache smc calls when PL310 is not present + * ARM: highbank: clean-up some unused includes + * ARM: xen: only set pm function ptrs for Xen guests + + [ Upstream Kernel Changes ] + + * rebase to v3.11 + + -- Andy Whitcroft Tue, 03 Sep 2013 17:08:06 +0100 + +linux (3.11.0-4.9) saucy; urgency=low + + [ Tim Gardner ] + + * rebase to v3.11-rc7 + * Release tracker + - LP: #1216962 + + [ Upstream Kernel Changes ] + + * mwifiex: do not create AP and P2P interfaces upon driver loading + - LP: #1212720 + + -- Tim Gardner Mon, 26 Aug 2013 06:25:35 -0600 + +linux (3.11.0-3.8) saucy; urgency=low + + [ Johannes Berg ] + + * SAUCE: mac80211: ignore (E)CSA in probe response frames + - LP: #1201470 + + -- Tim Gardner Fri, 23 Aug 2013 09:47:36 -0600 + +linux (3.11.0-3.7) saucy; urgency=low + + [ Tim Gardner ] + + * SAUCE: (no-up) hv_vss_daemon -- prevent self-daemonising to allow + upstart to track + * SAUCE: (no-up) hv -- bodge hv_vss_daemon so it can use the local + linux/hyperv.h + * SAUCE: hv: Add vss daemon to Makefile + * [Debian] Add hv_vss_daemon to tools package + - LP: #1213282 + * [Config] Fix ubuntu directoy Kbuilds + - LP: #1181755 + + -- Tim Gardner Tue, 20 Aug 2013 08:34:05 -0600 + +linux (3.11.0-3.6) saucy; urgency=low + + [ Andy Whitcroft ] + + * [Packaging] tools: conditionalise x86 and hyper-v tools sensibly + * [Config] tools: enable x86 and hyper-v + + [ John Johansen ] + + * Revert "SAUCE: (no-up) apparmor: Sync to apparmor 3 dev stable + snapshot" + * Revert "SAUCE: (no-up) apparmor: fix apparmor module status for none + root users" + * SAUCE: (no-up) apparmor: Sync to apparmor 3 - alpha 4 snapshot + + [ Joseph Salisbury ] + + * SAUCE: (no-up) intel_ips: blacklist ASUSTek G60JX laptops + - LP: #1210848 + + [ Kamal Mostafa ] + + * [debian] tools: ship 'cpupower' in linux-tools + - LP: #1158668 + * [Config] Build-dep on libpci-dev for cpu tools + - LP: #1158668 + + [ Tim Gardner ] + + * rebase to v3.11-rc6 + * Release tracker + - LP: #1213941 + + -- Tim Gardner Fri, 16 Aug 2013 07:02:07 -0600 + +linux (3.11.0-2.5) saucy; urgency=low + + [ Tim Gardner ] + + * [Config] CONFIG_PM_DEBUG=y + - LP: #1210539 + * rebase to v3.11-rc5 + * Release tracker + - LP: #1211378 + + -- Tim Gardner Mon, 12 Aug 2013 06:10:39 -0600 + +linux (3.11.0-1.4) saucy; urgency=low + + [ Tim Gardner ] + + * Bump ABI when making changes to the inclusion list lest + you cause conflicts with existing installed kernel + packages. + - LP: #1210331 + + -- Tim Gardner Fri, 09 Aug 2013 03:03:51 +0100 + +linux (3.11.0-0.3) saucy; urgency=low + + [ Tim Gardner ] + + * [Config] Include rbd and kvm in the virtual inclusion list + - LP: #1206961 + * [Config] Removed obsolete inclusion list entries + + -- Tim Gardner Tue, 06 Aug 2013 08:52:14 +0100 + +linux (3.11.0-0.2) saucy; urgency=low + + [ Bruce Allan ] + + * SAUCE: (no-up) e1000e: fix I217/I218 PHY initialization flow + - LP: #1206757 + * SAUCE: (no-up) e1000e: enable support for new device IDs + - LP: #1206757 + + [ John Johansen ] + + * SAUCE: (no-up) apparmor: Sync to apparmor 3 dev stable snapshot + + [ Paolo Pisati ] + + * build vexpress a15 dtb + * [Config] disable Broadcom bcm support (ARCH_BCM) + * [Config] disable Allwinner a1x support (ARCH_SUNXI) + * [Config] disable WonderMedia WM8850 support (ARCH_WM8850) + * [Config] disable Rockchip support (ARCH_ROCKCHIP) + * [Config] disable STMicroelectronics STiH41x SOCs (ARCH_STI) + * [Config] disable TI Keystone, AM43xx and OMAP5 support + * [Config] ARM_APPENDED_DTB=y + + [ Tim Gardner ] + + * rebase to v3.11-rc4 + * overlayfs: Update to v19 + * [Config] Enable overlayfs + * SAUCE: Fix lttng compile errors + + [ Upstream Kernel Changes ] + + * rebase to v3.11-rc4 + - LP: #1163720 + - LP: #1162026 + - LP: #1195636 + - LP: #1195597 + - LP: #1180409 + - LP: #1168430 + + -- Tim Gardner Sun, 04 Aug 2013 03:45:31 -0600 + +linux (3.11.0-0.1) saucy; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to 64ccccf8525fee499625b517c0faadf784c79e93 + - LP: #1163720 + - LP: #1162026 + - LP: #1195636 + - LP: #1195597 + - LP: #1180409 + - LP: #1168430 + + -- Tim Gardner Mon, 08 Jul 2013 08:50:46 -0600 + +linux (3.10.0-2.10) saucy; urgency=low + + [ Andy Whitcroft ] + + * [Config] CONFIG_INTEL_MEI*=m + - LP: #1196155 + * [Config] CONFIG_DEBUG_INFO=y + + [ Stephen Warren ] + + * [Config] fix Calxeda xgmac module filename + + [ Upstream Kernel Changes ] + + * Revert "serial: 8250_pci: add support for another kind of NetMos + Technology PCI 9835 Multi-I/O Controller" + - LP: #1190967 + * mfd: lpc_ich: Add support for Intel Avoton SoC + - LP: #1196658 + + -- Andy Whitcroft Fri, 05 Jul 2013 18:08:02 +0100 + +linux (3.10.0-2.9) saucy; urgency=low + + [ Andy Whitcroft ] + + * rebase to v3.10 + + [ John Johansen ] + + * Revert "SAUCE: (no-up) apparmor: Fix quieting of audit messages for + network mediation" + * Revert "SAUCE: (no-up) apparmor: Fix compile warnings" + * Revert "SAUCE: (no-up) AppArmor: basic networking rules" + * Revert "SAUCE: (no-up) apparmor: Add the ability to mediate mount" + * Revert "SAUCE: (no-up) AppArmor: Add profile introspection file to + interface" + * Revert "SAUCE: (no-up) AppArmor: Disable Add PR_{GET,SET}_NO_NEW_PRIVS + to prevent execve from granting privs" + * SAUCE: (no-up) apparmor: Sync to apparmor 3 dev stable snapshot + + [ Upstream Kernel Changes ] + + * rebase to v3.10 + + -- Andy Whitcroft Mon, 01 Jul 2013 17:42:29 +0100 + +linux (3.10.0-1.8) saucy; urgency=low + + [ Andy Whitcroft ] + + * Release Tracking Bug + - LP: #1195717 + + [ Andy Whitcroft ] + + * Revert "ubuntu: overlayfs -- follow change to do_splice_direct + interface" + * Revert "ubuntu: overlayfs -- expose do_splice_direct prototype" + * Revert "SAUCE: ubuntu: overlayfs -- ovl_path_open should not take path + reference" + * Revert "ubuntu: overlayfs -- add FS_ALIAS" + * Revert "ubuntu: overlayfs -- + overlayfs-copy-up-i_uid-i_gid-from-the-underlying-inode" + * Revert "ubuntu: overlayfs -- ovl-switch-to-inode_permission" + * Revert "ubuntu: overlayfs -- vfs-export-inode_permission-to-modules" + * Revert "ubuntu: overlayfs -- overlayfs-create-new-inode-in-ovl_link" + * Revert "ubuntu: overlayfs -- + overlayfs-fix-possible-leak-in-ovl_new_inode" + * Revert "ubuntu: overlayfs -- fs-limit-filesystem-stacking-depth" + * Revert "ubuntu: overlayfs -- overlay-overlay-filesystem-documentation" + * Revert "ubuntu: overlayfs -- overlayfs-implement-show_options" + * Revert "ubuntu: overlayfs -- overlayfs-add-statfs-support" + * Revert "ubuntu: overlayfs -- overlay filesystem" + * Revert "ubuntu: overlayfs -- vfs-introduce-clone_private_mount" + * Revert "ubuntu: overlayfs -- vfs-export-do_splice_direct-to-modules" + * Revert "ubuntu: overlayfs -- vfs-add-i_op-dentry_open" + * ubuntu: overlayfs v18 -- -- overlayfs: add statfs support + + [ Erez Zadok ] + + * ubuntu: overlayfs v18 -- -- overlayfs: implement show_options + + [ Miklos Szeredi ] + + * ubuntu: overlayfs v18 -- -- vfs: add i_op->dentry_open() + * ubuntu: overlayfs v18 -- -- vfs: export do_splice_direct() to modules + * ubuntu: overlayfs v18 -- -- vfs: export __inode_permission() to modules + * ubuntu: overlayfs v18 -- -- vfs: introduce clone_private_mount() + * ubuntu: overlayfs v18 -- -- overlay filesystem + * ubuntu: overlayfs v18 -- -- fs: limit filesystem stacking depth + + [ Neil Brown ] + + * ubuntu: overlayfs v18 -- -- overlay: overlay filesystem documentation + + [ Tim Gardner ] + + * [Config] CONFIG_SUNRPC_DEBUG=y + - LP: #1127319 + + -- Andy Whitcroft Fri, 28 Jun 2013 10:26:52 +0100 + +linux (3.10.0-0.7) saucy; urgency=low + + [ Andy Whitcroft ] + + * autopkgtest: switch Depends: to build-essential + + -- Andy Whitcroft Tue, 25 Jun 2013 08:40:55 +0100 + +linux (3.10.0-0.6) saucy; urgency=low + + [ Andy Whitcroft ] + + * [Config] enable CONFIG_ARCH_TEGRA to fix FTBFS on armhf + * SAUCE: ubuntu: overlayfs -- ovl_path_open should not take path reference + - LP: #1098378 + * ubuntu: AUFS -- update to 4f14cef47eb7c23eda7198931fbab1040866b6ee + * ubuntu: overlayfs -- expose do_splice_direct prototype + * ubuntu: overlayfs -- follow change to do_splice_direct interface + * [Config] flip CONFIG_NO_HZ_FULL_ALL off as it is overheating machines + - LP: #1192691 + + [ Stefan Bader ] + + * (d-i) Add dm-snapshot to md-modules + - LP: #1191726 + + [ Tim Gardner ] + + * Release tracker + - LP: #1194149 + * [Config] CONFIG_WIL6210=n for armhf + * [Config] d-i: Add calxedaxgmac to nic-modules + - LP: #1192358 + * [debian] Use dh_strip + - LP: #1192759 + * [Config] Enable perf for armhf + * do_tools=false when cross compiling + * [Config] CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y + - LP: #1108082 + + [ Upstream Kernel Changes ] + + * nsp32: switch reset delay to msleep() as it is tooo long + * alx: add a simple AR816x/AR817x device driver + Plucked from linux-next. replaces ubuntu/alx in favor of + 'to be merged' version in 3.11. + * rebase to v3.10-rc7 + - LP: #1189363 + + -- Tim Gardner Sat, 22 Jun 2013 18:10:31 -0600 + +linux (3.10.0-0.5) saucy; urgency=low + + [ Andy Whitcroft ] + + * rebase to v3.10-rc6 + * [Config] updateconfigs following rebase to v3.10-rc6 + + [ Upstream Kernel Changes ] + + * rebase to v3.10-rc6 + + -- Andy Whitcroft Mon, 17 Jun 2013 11:12:39 +0100 + +linux (3.10.0-0.4) saucy; urgency=low + + [ Andy Whitcroft ] + + * [Config] updateconfigs following rebase to v3.10-rc4 + + -- Andy Whitcroft Mon, 10 Jun 2013 11:42:28 +0100 + +linux (3.10.0-0.3) saucy; urgency=low + + [ Andy Whitcroft ] + + * rebase to v3.10-rc5 + + [ Upstream Kernel Changes ] + + * rebase to v3.10-rc5 + - LP: #1186170 + + -- Andy Whitcroft Mon, 10 Jun 2013 09:23:31 +0100 + +linux (3.10.0-0.2) saucy; urgency=low + + [ Andy Whitcroft ] + + * rebase to v3.10-rc4 + * [Config] CONFIG_BINFMT_SCRIPT=y to fix booting initramfs scripts + * [Config] enable SND_PCM_DEBUG SND_PCM_XRUN_DEBUG + - LP: #1187744 + * [Config] enforce CONFIG_BINFMT_SCRIPT=y + + [ Dave Chiluk ] + + * SAUCE: ncpfs: fix rmdir returns Device or resource busy + - LP: #1035226 + + [ Tim Gardner ] + + * rebase to v3.10-rc3 + * [Config] sparc be gone + * [Config] ia64 be gone + * d-i: block-modules provides nbd-modules + + [ Upstream Kernel Changes ] + + * rebase to v3.10-rc4 + * rebase to v3.10-rc3 + + -- Tim Gardner Tue, 28 May 2013 06:16:46 -0600 + +linux (3.10.0-0.1) saucy; urgency=low + + [ Tim Gardner ] + + * UBUNTU: Disabled lttng + * UBUNTU: Disable aufs for FTBS + * UBUNTU: Disabled alx + * UBUNTU: alx: rename NETIF_F_HW_VLAN_* feature flags to NETIF_F_HW_VLAN_CTAG_* + * UBUNTU: rebase to v3.10-rc2 + * UBUNTU: SAUCE: uvcvideo: quirk PROBE_DEF for Alienware X51 OmniVision webcam + + [ Andy Whitcroft ] + + * UBUNTU: [Config] update standards version to 3.9.4.0 + * UBUNTU: [Config] squash duplicate package description (long and short) + * UBUNTU: [Config] fix up Vcs-git: to point to saucy + * UBUNTU: [Config] drop depenancy on util-linux as is Essential + * UBUNTU: [Config] drop redundant Build-Conficts: + + [ Upstream Kernel Changes ] + + * rebase to v3.10-rc2 + - LP: #1180351 + + [ Upstream Kernel Changes ] + + * rebase to v3.10-rc1 + - LP: #1172151 + - LP: #1089795 + - LP: #1167270 + - LP: #1128840 + + -- Tim Gardner Tue, 14 May 2013 13:41:07 -0600 + +linux (3.10.0-0.0) saucy; urgency=low + + * Dummy + + -- Tim Gardner Thu, 09 May 2013 20:30:40 +0100 + +linux (3.9.0-2.6) saucy; urgency=low + + [ Tim Gardner ] + + * rebase to v3.9.2 + + -- Tim Gardner Thu, 09 May 2013 20:30:40 +0100 + +linux (3.9.0-1.5) saucy; urgency=low + + [ Tim Gardner ] + + * rebase to v3.9.1 + + -- Tim Gardner Wed, 08 May 2013 12:49:45 -0400 + +linux (3.9.0-0.4) saucy; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: overlayfs -- add FS_ALIAS + + [ Tim Gardner ] + + * Added lttng + - LP: #1175784 + + -- Tim Gardner Thu, 02 May 2013 17:17:13 -0400 + +linux (3.9.0-0.3) saucy; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to v3.9 + + -- Tim Gardner Mon, 29 Apr 2013 18:20:00 -0400 + +linux (3.9.0-0.2) saucy; urgency=low + + [ Tim Gardner ] + + * Enable extras packaging for amd64/i386. + Fixes build depenencies with brittany and linux-meta. + + -- Tim Gardner Mon, 29 Apr 2013 05:37:01 -0600 + +linux (3.9.0-0.1) saucy; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to v3.9-rc8 + + [ Upstream Kernel Changes ] + + * rebase to v3.9-rc7 + - LP: #1128840 + + [ Upstream Kernel Changes ] + + * rebase to v3.9-rc6 + + [ Upstream Kernel Changes ] + + * rebase to v3.9-rc5 + + [ Upstream Kernel Changes ] + + * rebase to v3.8-rc4 + - LP: #1095315 + - LP: #886975 + - LP: #1086921 + + [ Upstream Kernel Changes ] + + * rebase to v3.9-rc3 + - LP: #1155016 + - LP: #1103594 + + [ Upstream Kernel Changes ] + + * rebase to v3.9-rc2 + + [ Upstream Kernel Changes ] + + * rebase to v3.9-rc1 + - LP: #901105 + - LP: #961286 + - LP: #1011792 + - LP: #1128934 + - LP: #886975 + - LP: #978807 + + -- Tim Gardner Wed, 20 Feb 2013 09:12:39 -0700 + +linux (3.8.0-7.14) raring; urgency=low + + [ Andy Whitcroft ] + + * [Config] CONFIG_RCU_USER_QS=n + * [Config] CONFIG_MTD_ONENAND_SIM=n + * annotations: add annotations for CONFIG_CC_STACKPROTECTOR + + [ Upstream Kernel Changes ] + + * rebase to v3.8 + + [Tim Gardner] + + * Release Tracking Bug + - LP: #1130111 + * UBUNTU: SAUCE: rt2x00: rt2x00pci_regbusy_read() - only print register access failure once + - LP: #1128840 + + -- Tim Gardner Mon, 18 Feb 2013 09:25:56 -0700 + +linux (3.8.0-6.13) raring; urgency=low + + [Tim Gardner] + + * Release Tracking Bug + - LP: #1125364 + * Add ahci modules to d-i + - LP: #1124415 + + + [ Chris Wilson ] + + * SAUCE: drm/i915: Wait for pending flips to complete before tearing down + the encoders + - LP: #1097315 + + -- Tim Gardner Wed, 13 Feb 2013 12:16:48 -0700 + +linux (3.8.0-6.12) raring; urgency=low + + [Tim Gardner] + + * perf: NO_LIBPERL=1 + * Fix linux-headers dependency + * Release Tracking Bug + - LP: #1124362 + + [ Andy Whitcroft ] + + * [Config] enable CONFIG_AUFS_EXPORT to allow nfs exports + - LP: #1121699 + + [ Daniel Vetter ] + + * SAUCE: drm/i915: write backlight harder + - LP: #954661 + + -- Tim Gardner Wed, 13 Feb 2013 10:25:11 -0700 + +linux (3.8.0-6.11) raring; urgency=low + + [Tim Gardner] + + * Release Tracking Bug + - LP: #1122071 + * rebase to v3.8-rc7 + * Add libaudit-dev as a build dependency + * Build perf with NO_LIBPYTHON=1 to avoid a python build dependency. + + [ Leann Ogasawara ] + + * [Config] Remove CONFIG_SATA_AHCI annotation + + -- Tim Gardner Fri, 08 Feb 2013 07:41:13 -0500 + +linux (3.8.0-5.10) raring; urgency=low + + [Tim Gardner] + + * Release Tracking Bug + - LP: #1118568 + + * Bump ABI to fix install issue with 3.8.0-4.8. + Moving drivers/ata/*ahci* to linux-image caused an + install conflict with linux-image-extras without an + ABI bump. + + [ Jan Beulich ] + + * SAUCE: xen-pciback: rate limit error messages from + xen_pcibk_enable_msi{, x}() + - LP: #1117336 + - CVE-2013-0231 + + -- Tim Gardner Thu, 07 Feb 2013 05:38:12 -0700 + +linux (3.8.0-4.9) raring; urgency=low + + [ Herton Ronaldo Krzesinski ] + + * d-i: Add mellanox ethernet drivers to nic-modules + - LP: #1015339 + + [ Joseph Salisbury ] + + * SAUCE: ACPI: Add DMI entry for Sony VGN-FW41E_H + - LP: #1113547 + + [ Kamal Mostafa ] + + * SAUCE: alx driver import script + + [ Qualcomm Atheros, Inc ] + + * SAUCE: alx: Update to heads/master + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1117673 + + * [debian] Remove dangling symlink from headers package + - LP: #1112442 + * [config] CONFIG_ALX=m + * [Config] Add alx to d-i nic-modules + * [Config] CONFIG_SATA_AHCI=m + - LP: #1056563 + + -- Leann Ogasawara Tue, 05 Feb 2013 05:54:32 -0800 + +linux (3.8.0-4.8) raring; urgency=low + + [ Allen Ibara ] + + * SAUCE: imx6: dts: Add IMX6Q AHCI support + + [ Andy Whitcroft ] + + * rebase to v3.8-rc6 + * updateconfigs following rebase to v3.8-rc6 + + [Leann Ogasawara] + + * Release Tracking Bug + - LP: #1112573 + + [ Paolo Pisati ] + + * SAUCE: imx6: enable sata clk if SATA_AHCI_PLATFORM + * [Config] SERIAL_AMBA_PL011=y (vexpress serial console) + * [Config] MMC_ARMMMCI=y (vexpress mmc) + * [Config] FB_ARMCLCD=y (vexpress framebuffer) + + [ Seth Forshee ] + + * [Config] CONFIG_MAC80211_MESSAGE_TRACING=y + + [ Upstream Kernel Changes ] + + * rebase to v3.8-rc6 + - LP: #1107477 + + -- Leann Ogasawara Fri, 01 Feb 2013 07:20:59 -0800 + +linux (3.8.0-3.7) raring; urgency=low + + [ Andy Green ] + + * SAUCE: ARM: OMAP2+: add cpu id register to MAC address helper + * SAUCE: ARM: omap2 add mac address allocation register api + * SAUCE: ARM: omap2 panda register ethernet and wlan for automatic mac + allocation + + [ Leann Ogasawara ] + + * rebase to v3.8-rc5 + * Release Tracking Bug + - LP: #1111486 + + [ Paolo Pisati ] + + * SAUCE: davinci: vpss: compilation fix + * [Config] enable TI OMAP4 support (Pandaboard/ES) + * [Config] OMAP_USB2=y (since TWL6030_USB depends on it) + * [Config] enable Freescale IMX6 support (SabreLite) + * [Config] SERIAL_IMX_CONSOLE=y + * [Config] MMC_*_IMX=y + * [Config] disable USB_SUSPEND + * [Config] USB_MXS_PHY=y + * [Config] USB_CHIPIDEA=y + * SAUCE: DTB: add support for multiple DTBs + * SAUCE: DTB: build imx6q-sabrelite + * SAUCE: DTB: build beaglexm + * SAUCE: DTB: build panda/panda es + * [Config] disable CPU_FREQ + * [Config] PANEL_TFP410=y (video DVI output) + * [Config] SND_OMAP_SOC*=y + * [Config] SND_IMX_SOC*=y + * [Config] I2C_IMX=y + * [Config] SPI_IMX=m + + [ Stefan Bader ] + + * [Config] Move 9p modules into generic package + - LP: #1107658 + + [ Tony Lindgren ] + + * SAUCE: ARM: OMAP2+: Limit omap initcalls to omap only on multiplatform + kernels + * SAUCE: ARM: OMAP2+: Use omap initcalls + * SAUCE: ARM: OMAP: Fix i2c cmdline initcall for multiplatform + * SAUCE: ARM: OMAP: Fix dmaengine init for multiplatform + * SAUCE: ARM: OMAP2+: Add multiplatform debug_ll support + * SAUCE: ARM: OMAP2+: Disable code that currently does not work with + multiplaform + * SAUCE: ARM: OMAP2+: Enable ARCH_MULTIPLATFORM support + * SAUCE: ARM: OMAP2+: Add minimal support for booting vexpress + * SAUCE: ARM: OMAP2+: Remove now obsolete uncompress.h and debug-macro.S + + [ Upstream Kernel Changes ] + + * rebase to v3.8-rc5 + - LP: #1096789 + + -- Leann Ogasawara Thu, 31 Jan 2013 06:44:52 -0800 + +linux (3.8.0-2.6) raring; urgency=low + + [ Adam Conrad ] + + * Fix up linux-tools -> SRCPKGNAME-tools rename + + [ Andy Whitcroft ] + + * [Config] re-disable CONFIG_SOUND_OSS + - LP: #1105230 + + [ Arend van Spriel ] + + * SAUCE: brcmsmac: fix tx status processing + + [Leann Ogasawara] + + * Release Tracking Bug + - LP: #1105104 + + -- Leann Ogasawara Fri, 25 Jan 2013 11:56:30 -0800 + +linux (3.8.0-1.5) raring; urgency=low + + [Tim Gardner] + + * Release Tracking Bug + - LP: #1101235 + + [ Dudley Du ] + + * SAUCE: Input: add support for Cypress PS/2 Trackpads + - LP: #978807 + + [ Kamal Mostafa ] + + * SAUCE: Input: increase struct ps2dev cmdbuf[] to 8 bytes + * SAUCE: Input: Cypress PS/2 Trackpad simulated multitouch + * [Config] Add CONFIG_PS2_CYPRESS + + [ Tim Gardner ] + + * rebase to v3.8-rc4 + + [ Upstream Kernel Changes ] + + * rebase to v3.8-rc4 + - LP: #1095315 + - LP: #886975 + - LP: #1086921 + + -- Leann Ogasawara Thu, 17 Jan 2013 10:50:22 -0800 + +linux (3.8.0-0.4) raring; urgency=low + + [ Leann Ogasawara ] + + * [Config] Update CONFIG_TOUCHSCREEN_EGALAX build annotation + * [Config] Update CONFIG_IIO build annotation + * [Config] Update CONFIG_TOUCHSCREEN_EETI annotation + * [Config] Remove CONFIG_SPI_DW_MMIO annotation + * [Config] Remove CONFIG_SPI_PL022 annotation + * [Config] Update CONFIG_EZX_PCAP annotation + * [Config] Update CONFIG_SENSORS_AK8975 annotation + * [Config] Disable CONFIG_DRM_MGAG200 + - LP: #1042903 + + -- Leann Ogasawara Mon, 14 Jan 2013 10:01:50 -0800 + +linux (3.8.0-0.3) raring; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: (no-up) trace: add trace events for open(), exec() and + uselib()" + + [ Scott James Remnant ] + + * SAUCE: (no-up) trace: add trace events for open(), exec() and uselib() + (for v3.7+) + - LP: #1085766, #462111 + + -- Andy Whitcroft Fri, 11 Jan 2013 16:57:27 +0000 + +linux (3.8.0-0.2) raring; urgency=low + + [ Tim Gardner ] + + * [packaging] Add macro to selectively disable building perf + * [packaging] Cannot depend on universe package libaudit-dev + + -- Tim Gardner Thu, 10 Jan 2013 12:43:24 -0700 + +linux (3.8.0-0.1) raring; urgency=low + + + [ Upstream Kernel Changes ] + + * rebase to v3.8-rc3 + - LP: #1096789 + + [ Upstream Kernel Changes ] + + * rebase to v3.8-rc2 + - LP: #1082357 + - LP: #1075882 + + -- Andy Whitcroft Mon, 17 Dec 2012 10:35:09 +0000 + +linux (3.7.0-7.15) raring; urgency=low + + [ Chris J Arges ] + + * SAUCE: add eeprom_bad_csum_allow module parameter + - LP: #1070182 + + [ Leann Ogasawara ] + + * Add ceph to linux-image for virtual instances + - LP: #1063784 + + [ Serge Hallyn ] + + * SAUCE: net: dev_change_net_namespace: send a KOBJ_REMOVED/KOBJ_ADD + + [ Tim Gardner ] + + * [Config] CONFIG_SLUB_DEBUG=y + - LP: #1090308 + + [ Upstream Kernel Changes ] + + * Revert "[SCSI] sd: Implement support for WRITE SAME" + - LP: #1089818 + + -- Leann Ogasawara Wed, 12 Dec 2012 06:50:20 -0800 + +linux (3.7.0-6.14) raring; urgency=low + + [ Andy Whitcroft ] + + * [Config] annotations: all new annotations scheme including defaults + * [Configs] apply annotation updates to main configs (top section) + + [ Leann Ogasawara ] + + * Revert "SAUCE: include and for mmc_core arm + build" + * Revert "SAUCE: [arm] fixup __aeabi_uldivmod undefined build error" + * Temporarily disable module check for build + + [ Stefan Bader ] + + * ubuntu: dm-raid45: Adapt to upstream interface changes + * Re-enable build of dm-raid45 + + [ Tim Gardner ] + + * SAUCE: Moved scripts/fw-to-ihex.sh to debian/scripts/misc + * SAUCE: ACPICA: Fix ACPI mutex object allocation memory leak on error + * SAUCE: drm: Fix possible EDID memory allocation oops + * SAUCE: ttm: Fix possible _manager memory allocation oops + * SAUCE: iwlwifi: iwlagn_request_scan: Fix check for priv->scan_request + * SAUCE: i915: intel_set_mode: Reduce stack allocation from 500 bytes to + 2 pointers + + [ Tomas Hozza ] + + * SAUCE: tools: hv: Netlink source address validation allows DoS + - LP: #1084777 + - CVE-2012-5532 + + [ Upstream Kernel Changes ] + + * rebase to v3.7 + + -- Leann Ogasawara Wed, 05 Dec 2012 14:11:12 -0800 + +linux (3.7.0-5.13) raring; urgency=low + + [ Lino Sanfilippo ] + + * SAUCE: inotify, fanotify: replace fsnotify_put_group() with + fsnotify_destroy_group() + - LP: #922906 + * SAUCE: fsnotify: introduce fsnotify_get_group() + - LP: #922906 + * SAUCE: fsnotify: use reference counting for groups + - LP: #922906 + * SAUCE: fsnotify: take groups mark_lock before mark lock + - LP: #922906 + * SAUCE: fanotify: add an extra flag to mark_remove_from_mask that + indicates wheather a mark should be destroyed + - LP: #922906 + * SAUCE: fsnotify: use a mutex instead of a spinlock to protect a groups + mark list + - LP: #922906 + * SAUCE: fsnotify: pass group to fsnotify_destroy_mark() + - LP: #922906 + * SAUCE: fsnotify: introduce locked versions of fsnotify_add_mark() and + fsnotify_remove_mark() + - LP: #922906 + * SAUCE: fsnotify: dont put marks on temporary list when clearing marks + by group + - LP: #922906 + * SAUCE: fsnotify: change locking order + - LP: #922906 + + [ Tim Gardner ] + + * [Config] CONFIG_NFC_LLCP=y + * [Config] get-firmware: Filter new files through fwinfo + * [Config] CONFIG_MTD_NAND_DOCG4=m for all arches + * [Config] CONFIG_DRM_EXYNOS_HDMI=y + * [Config] CONFIG_XEN=y for all arches + * [Config] CONFIG_SND_OMAP_SOC_ZOOM2=m + * [Config] CONFIG_MMC_DW_EXYNOS=m + * [Config] CONFIG_GPIO_ADNP=m + * [Config] find-obsolete-firmware: Use correct path + * rebase to v3.7-rc8 + - LP: #1084640 + + [ Upstream Kernel Changes ] + + * Revert "VFS: don't do protected {sym,hard}links by default" + - LP: #1084192 + + -- Tim Gardner Wed, 28 Nov 2012 16:07:08 +0000 + +linux (3.7.0-4.12) raring; urgency=low + + [ Tim Gardner ] + + * Revert "[Config] Use -j1 for headers_install" + * Revert "[Config] install-arch-headers needs a valid config" + Strayed into the weeds in search of the root cause of the periodic + build failure. + Fixes powerpc FTBS introduced in -4.11. + * [Config] hmake -j1 + The kernel makefile appears to have parallel dependency + problems for the install_headers target. This appears to be root + cause for a periodic build failure on N-way machines. + + -- Leann Ogasawara Tue, 27 Nov 2012 12:33:06 -0800 + +linux (3.7.0-4.11) raring; urgency=low + + [ Tim Gardner ] + + * [Config] Use -j1 for headers_install + Also fixes a powerpc FTBS introduced by + "[Config] install-arch-headers needs a valid config". + + -- Tim Gardner Tue, 27 Nov 2012 10:19:30 -0700 + +linux (3.7.0-4.10) raring; urgency=low + + [ Andy Whitcroft ] + + * [Config] add rebuild-test support for autopkgtest + - LP: #1081500 + * [tests] move build tests out of the way + - LP: #1081500 + * [tests] add an autopkgtest rebuild test + - LP: #1081500 + + [ Tim Gardner ] + + * rebase to v3.7-rc7 + * SAUCE: Remove emi62 files duplicated in linux-firmware + * SAUCE: Remove sb16 files duplicated in linux-firmware + * SAUCE: Remove whiteheat files duplicated in linux-firmware + * SAUCE: Remove yamaha files duplicated in linux-firmware + * SAUCE: Remove dsp56k files used only by m68k + * SAUCE: firmware: Remove last vestiges of dabusb + * SAUCE: Remove vicam files duplicated in linux-firmware + * [Config] install-arch-headers needs a valid config + + [ Upstream Kernel Changes ] + + * rebase to v3.7-rc7 + - LP: #1076840 + - LP: #1081466 + + -- Leann Ogasawara Wed, 21 Nov 2012 06:07:23 -0800 + +linux (3.7.0-3.9) raring; urgency=low + + [ Leann Ogasawara ] + + * [Config] Enable CONFIG_X86_CPUFREQ_NFORCE2=y + - LP: #1079900 + * Add nfsv3 to nfs-modules udeb + + [ Paolo Pisati ] + + * [Config] SND_OMAP_SOC*=y + - LP: #1019321 + + [ Stefan Bader ] + + * SAUCE: (no-up) xen/netfront: handle compound page fragments on transmit + - LP: #1078926 + + [ Tim Gardner ] + + * Revert "SAUCE: SECCOMP: audit: always report seccomp violations" + - LP: #1079469 + * Revert "SAUCE: omap3 clocks .dev_id = NULL" + * rebase to v3.7-rc6 + * SAUCE: script to detect obsolete firmware + * SAUCE: Remove yam files duplicated in linux-firmware + * SAUCE: Remove tehuti files duplicated in linux-firmware + * SAUCE: Remove matrox files duplicated in linux-firmware + * SAUCE: Remove cxgb3 files duplicated in linux-firmware + * SAUCE: Remove r128 files duplicated in linux-firmware + * SAUCE: Remove acenic files duplicated in linux-firmware + * SAUCE: Remove keyspan files duplicated in linux-firmware + * SAUCE: Remove sun files duplicated in linux-firmware + * SAUCE: Remove radeon files duplicated in linux-firmware + * SAUCE: Update bnx2x firmware to 7.8.2.0 + * [Config] generic.inclusion-list: econet has disappeared + + [ Upstream Kernel Changes ] + + * seccomp: forcing auditing of kill condition + - LP: #1079469 + * rebase to v3.7-rc6 + + -- Leann Ogasawara Tue, 20 Nov 2012 12:28:55 -0800 + +linux (3.7.0-2.8) raring; urgency=low + + [ Andy Whitcroft ] + + * Revert "overlayfs: disable until FTBS is fixed" + * Revert "ubuntu: overlayfs" + * Revert "ubuntu: AUFS" + * ubuntu: overlayfs -- overlayfs: add statfs support + * ubuntu: overlayfs -- ovl: switch to __inode_permission() + * ubuntu: overlayfs -- overlayfs: copy up i_uid/i_gid from the underlying + inode + - LP: #944386 + * ubuntu: AUFS (no-squash): basic framework and update machinary + * ubuntu: AUFS (no-squash) -- aufs3-base.patch + * ubuntu: AUFS (no-squash) -- aufs3-standalone.patch + * ubuntu: AUFS: aufs-update -- follow the uapi header changes + * ubuntu: AUFS -- update to f2873474324d0a31af4340554b9715f51331bc7f + * ubuntu: AUFS (no-squash) -- reenable + - LP: #1079193 + + [ Erez Zadok ] + + * ubuntu: overlayfs -- overlayfs: implement show_options + + [ Miklos Szeredi ] + + * ubuntu: overlayfs -- vfs: add i_op->dentry_open() + * ubuntu: overlayfs -- vfs: export do_splice_direct() to modules + * ubuntu: overlayfs -- vfs: introduce clone_private_mount() + * ubuntu: overlayfs -- overlay filesystem + * ubuntu: overlayfs -- fs: limit filesystem stacking depth + * ubuntu: overlayfs -- vfs: export __inode_permission() to modules + + [ Neil Brown ] + + * ubuntu: overlayfs -- overlay: overlay filesystem documentation + + [ Robin Dong ] + + * ubuntu: overlayfs -- overlayfs: fix possible leak in ovl_new_inode + * ubuntu: overlayfs -- overlayfs: create new inode in ovl_link + + -- Andy Whitcroft Thu, 15 Nov 2012 13:35:12 +0000 + +linux (3.7.0-1.7) raring; urgency=low + + [ Tim Gardner ] + + * [Config] Drop dependency on libaudit-dev + Its a universe package which causes an FTBS on the builders. + libaudit-dev is not strictly required for the perf tools build. + + -- Tim Gardner Wed, 14 Nov 2012 10:08:13 -0700 + +linux (3.7.0-1.6) raring; urgency=low + + [ Andy Whitcroft ] + + * [Config] enforce -- switch CONFIG_NVRAM to more readable form + * [Config] better encode the CONFIG_NVRAM constaint + * enforcer -- fix debugging output + + [ Ben Collins ] + + * [Config] Add custom_override rule to allow for alternate kernel + file/install + * [Config] Use SRCPKGNAME as prefix for indep linux headers package + + [ Tim Gardner ] + + * [Config] Dropped armel + * Drop highbank from ABI fetch list + * [Config] Use dh_prep instead of 'dh_clean -k' + * [Config] Build depend on libaudit-dev, libunwind8-dev for tools + * [Config] Document binary-indep dependency chain + * rebase to v3.7-rc5 + + [ Upstream Kernel Changes ] + + * rebase to v3.7-rc5 + + -- Tim Gardner Tue, 13 Nov 2012 07:13:37 -0500 + +linux (3.7.0-0.5) raring; urgency=low + + [ Tim Gardner ] + + * [Config] CONFIG_AMD_IOMMU_V2=m + - LP: #1071520 + * [Config] CONFIG_MTD_ONENAND_SIM=n for armel + Fixes FTBS + + -- Tim Gardner Thu, 08 Nov 2012 15:45:39 -0500 + +linux (3.7.0-0.4) raring; urgency=low + + [ Ben Collins ] + + * [Config] Update enforce rule for CONFIG_NVRAM to better suit flavours + + [ Tim Gardner ] + + * [Config] do_tools=false for arm + + -- Tim Gardner Thu, 08 Nov 2012 05:39:51 -0700 + +linux (3.7.0-0.3) raring; urgency=low + + [ Tim Gardner ] + + * [Config] CONFIG_DRM_EXYNOS_HDMI=n for armhf + * [Config] CONFIG_MTD_NAND_DOCG4=n for armel/armhf + * [Config] Drop highbank harder + + -- Tim Gardner Wed, 07 Nov 2012 18:11:45 +0000 + +linux (3.7.0-0.2) raring; urgency=low + + [ Andy Whitcroft ] + + * [Config] add fs/udf to linux-image to support DVD/CD formats in virtual + instances + - LP: #1066921 + * [Config] drop highbank builds + + [ Jeremy Kerr ] + + * SAUCE: efivarfs: Implement exclusive access for {get, set}_variable + - LP: #1063061 + + [ Leann Ogasawara ] + + * Reinstate dropped.txt from Ubuntu-3.7.0-0.1-rc1 + + [ Tim Gardner ] + + * [Config] Dropped powerpc/ppc64 in favour of the community kernel + * [Config] CONFIG_MODULE_SIG=y for amd64,i386, and highbank + * rebase to v3.7-rc4 + * SAUCE: MODSIGN: Emit error for incorrectly signed module + + [ Upstream Kernel Changes ] + + * rebase to v3.7-rc4 + + -- Tim Gardner Mon, 05 Nov 2012 05:35:41 -0700 + +linux (3.7.0-0.1) raring; urgency=low + + + [ Upstream Kernel Changes ] + + * rebase to v3.7-rc3 + - LP: #1056078 + + [ Upstream Kernel Changes ] + + * rebase to v3.7-rc2 + - LP: #1060729 + - LP: #1059523 + - LP: #1006690 + - LP: #1049623 + - LP: #1046512 + - LP: #1052499 + - LP: #1037642 + - LP: #559939 + - LP: #1052460 + - LP: #939161 + - LP: #1046734 + + -- Tim Gardner Tue, 02 Oct 2012 08:13:07 -0600 + +linux (3.6.0-0.1) UNRELEASED; urgency=low + + + [ Upstream Kernel Changes ] + + * rebase to v3.6 + + [ Upstream Kernel Changes ] + + * rebase to v3.6-rc7 + + [ Upstream Kernel Changes ] + + * rebase to v3.6-rc6 + - LP: #1000424 + + [ Upstream Kernel Changes ] + + * rebase to v3.6-rc5 + - LP: #1040077 + + [ Upstream Kernel Changes ] + + * rebase to v3.6-rc4 + + [ Upstream Kernel Changes ] + + * rebase to v3.6-rc3 + - LP: #1038651 + - LP: #1034779 + + -- Leann Ogasawara Tue, 24 Jul 2012 06:37:09 -0700 + +linux (3.5.0-6.6) quantal-proposed; urgency=low + + [ Andy Whitcroft ] + + * [Config] CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION enable IPv6 + experimental features + * SAUCE: highbank -- export clock functions for modules + * [Config] highbank -- reenable CONFIG_TOUCHSCREEN_W90X900 + * [Config] highbank -- renenable CONFIG_SERIO_AMBAKMI + * [Config] highbank -- reenable CONFIG_RFKILL_GPIO + * [Config] highbank -- reenable CONFIG_MMC_SDHCI_PXAV3 + * [Config] highbank -- reenable CONFIG_MMC_SDHCI_PXAV3 + * [Config] highbank -- reenable CONFIG_KEYBOARD_SAMSUNG + * [Config] highbank -- reenable CONFIG_FB_ARMCLCD + * [Config] highbank -- reenable CONFIG_DW_DMAC + * [Config] highbank -- reenable CONFIG_USB_R8A66597_HCD + * [Config] highbank -- reenable CONFIG_USB_MV_UDC + * [Config] highbank -- reenable CONFIG_USB_DWC3 + * [Config] highbank -- reenable CONFIG_SATA_MV + * [Config] highbank -- reenable CONFIG_PATA_ARASAN_CF + * [Config] highbank -- CONFIG_CAN_C_CAN_PLATFORM + * [Config] highbank -- reenable CONFIG_MMC_ARMMMCI + * [Config] highbank -- reenable CONFIG_SERIAL_AMBA_PL010 + * [Config] highbank -- reenable CONFIG_ATMEL_PWM + * [Config] highbank -- enable CONFIG_CHECKPOINT_RESTORE + * [Config] highbank -- enable CONFIG_EXPERT + * [Config] highbank -- enable CONFIG_CHECKPOINT_RESTORE + * [Config] enable CONFIG_USB_DYNAMIC_MINORS + * [Config] enable CONFIG_USB_EHCI_TT_NEWSCHED + * [Config] enable CONFIG_USB_ETH_EEM + * [Config] enable CONFIG_USB_HCD_BCMA/CONFIG_USB_HCD_SSB + * [Config] disable CONFIG_USB_M66592 + * [Config] enable CONFIG_USB_NET2272 + * [Config] enable CONFIG_USB_R8A66597 + * [Config] annotate: CONFIG_USB_OMAP not required for our h/w + * [Config] set CONFIG_USB_MUSB_HDRC=m for omap + * [Config] annotate: CONFIG_USB_G_MULTI fix rule + * [Config] CONFIG_USB_GPIO_VBUS=m for OMAP + * [Config] Enable CONFIG_DRM_AST/_CIRRUS_QEMU/_MGAG200 + * [Config] sync configuration armhf omap -> armel omap + * [Config] annotate: CONFIG_IIO triggers build failures on OMAP4 + * [Config] disable CONFIG_OMAP_IOVMM is deprecated + + [ Bryan Wu ] + + * [Config] change default IO scheduler from CFQ to Deadline + + [ Leann Ogasawara ] + + * Revert "[Config] Temporarily disable CONFIG_MV643XX_ETH on powerpc" + * [Config] Disable CONFIG_MOUSE_INPORT + + [ Tim Gardner ] + + * SAUCE: firmware: Update bnx2x to current firmware version 7.2.51 + * [Config] Add bnx2x firmware to nic-modules udeb + * SAUCE: Add script to convert firmware to ihex format + * SAUCE: firmware: Upgrade bnx2 to current versions + * [Config] Add tigon firmware to nic-modules udeb + * [Config] CONFIG_EARLY_PRINTK_DBGP=y + - LP: #1026761 + * SAUCE: Remove redundant cis firmware + * SAUCE: Remove redundant emi26 firmware + * SAUCE: Remove redundant ttusb-budget firmware + * SAUCE: Remove redundant sun/cassini firmware + * SAUCE: Remove redundant ositech/Xilinx7OD firmware + * SAUCE: Remove redundant 3com/typhoon.bin firmware + * SAUCE: Remove redundant yamaha/ds1 firmware + * SAUCE: Remove redundant keyspan_pda firmware + * rebase to v3.5 + + [ Upstream Kernel Changes ] + + * rebase to v3.5 + - LP: #1027828 + + -- Leann Ogasawara Mon, 23 Jul 2012 05:57:04 -0700 + +linux (3.5.0-5.5) quantal-proposed; urgency=low + + [ Andy Whitcroft ] + + * [Config] annotations: initial import of configuration annotations + + [ Bryan Wu ] + + * [Config] enforcer -- add CONFIG_I2C_DESIGNWARE_PLATFORM enforce checker + + [ Leann Ogasawara ] + + * Rebase to v3.5-rc7 + + [ Manoj Iyer ] + + * SAUCE: Bluetooth: btusb: Add vendor specific ID (0a5c:21f4) BCM20702A0 + - LP: #1010281 + + [ Tim Gardner ] + + * [Config] enable CONFIG_I2C_HELPER_AUTO for all flavours as policy + expects + * [Config] CONFIG_I2O_CONFIG_OLD_IOCTL=n + * [Config] CONFIG_BRIDGE_EBT_ULOG=n + * [Config] CONFIG_IP_NF_QUEUE=n + * [Config] CONFIG_MTD_DOC2000=n + * [Config] CONFIG_PRINT_QUOTA_WARNING=n + * [Config] CONFIG_PRISM54=n + * [Config] CONFIG_SCx200_I2C=n + * [Config] CONFIG_USB_ANNOUNCE_NEW_DEVICES=y + + [ Upstream Kernel Changes ] + + * rebase to v3.5-rc7 + + -- Leann Ogasawara Mon, 16 Jul 2012 15:38:41 -0700 + +linux (3.5.0-4.4) quantal-proposed; urgency=low + + [ Andy Whitcroft ] + + * [Packaging] getabis should be extracting all packages + - LP: #1021174 + * [Config] getabis -- series uses linux-image-extra + - LP: #1021174 + * rebase to v3.5-rc6 + + [ Bryan Wu ] + + * [Config] built-in CONFIG_MICREL_PHY as other PHY drivers for all + flavours + * [Config] sync CONFIG_MOUSE_PS2_ config for all flavours + + [ Leann Ogasawara ] + + * [Config] Enable CONFIG_RT2800USB_RT35XX and CONFIG_RT2800USB_RT53XX + - LP: #1019561 + + [ Paolo Pisati ] + + * [Config] SND_OMAP_SOC, SND_OMAP_SOC_MCBSP and SND_OMAP_SOC_OMAP3_BEAGLE =y + - LP: #1019321 + + [ Stefan Bader ] + + * SAUCE: (pre-up) net: dont use __netdev_alloc_skb for bounce buffer + - LP: #1018456 + * (config) Disable ACPI_PROCFS_POWER + + [ Tim Gardner ] + + * [Config] CONFIG_ACPI_BGRT=y + * Extract firmware module info during getabi + - LP: #1021174 + + [ Upstream Kernel Changes ] + + * rebase to v3.5-rc6 + + -- Leann Ogasawara Mon, 09 Jul 2012 08:50:20 -0700 + +linux (3.5.0-3.3) quantal-proposed; urgency=low + + [ Andy Whitcroft ] + + * [Config] enable CONFIG_MEMTEST=y + - LP: #1004535 + * [Config] config-check: add support for a cut operation + * [Config] enforcer -- switch to cut where appropriate + + [ Leann Ogasawara ] + + * Rebase to v3.5-rc5 + * [Config] Updateconfigs after rebase to v3.5-rc5 + + [ Luis Henriques ] + + * SAUCE: ocfs2: Fix NULL pointer dereferrence in + __ocfs2_change_file_space + - LP: #1006012 + + [ Seth Forshee ] + + * SAUCE: (drop after 3.5) drm/i915: ignore pipe select bit when checking + for LVDS register initialization + - LP: #1012800 + + [ Upstream Kernel Changes ] + + * rebase to v3.5-rc5 + - LP: #1013183 + - LP: #1017017 + - LP: #884652 + + -- Leann Ogasawara Mon, 02 Jul 2012 06:41:58 -0700 + +linux (3.5.0-2.2) quantal-proposed; urgency=low + + [ Andy Whitcroft ] + + * rebase to v3.5-rc4 + + [ Arend van Spriel ] + + * SAUCE: (drop after 3.5) brcmsmac: fix NULL pointer crash in + brcms_c_regd_init() + - LP: #950320 + + [ Bryan Wu ] + + * [Config] Sync CONFIG_CGROUP_MEM_RES_CTLR_SWAP for ARM + + [ Chris J Arges ] + + * PACKAGING: add .gnu_debuglink sections to .ko files + - LP: #669641 + + [ Leann Ogasawara ] + + * d-i: Add hid-generic to input-modules + - LP: #1017879 + + [ Ming Lei ] + + * SAUCE: Revert "mmc: omap_hsmmc: Enable Auto CMD12" + - LP: #1017717, #225 + + [ Paolo Pisati ] + + * SAUCE: Revert "Fix OMAP EHCI suspend/resume failure (i693)" + - LP: #1017718 + * [Config] Disable generic USB_EHCI_HCD_PLATFORM on omap3 + + [ Seth Forshee ] + + * SAUCE: (drop after 3.5) brcm80211: smac: don't set up tx power limits + during initialization + - LP: #950320 + * SAUCE: (drop after 3.5) brcm80211: smac: always set channel specified + by mac80211 + - LP: #950320 + * SAUCE: (drop after 3.5) brcm80211: smac: remove unused code for 40MHz + channels + - LP: #950320 + * SAUCE: (drop after 3.5) brcm80211: smac: clean up channel.c + - LP: #950320 + * SAUCE: (drop after 3.5) brcm80211: smac: inform mac80211 of the X2 + regulatory domain + - LP: #950320 + * SAUCE: (drop after 3.5) brcm80211: smac: enable/disable radio on + regulatory updates + - LP: #950320 + * SAUCE: (drop after 3.5) brcm80211: smac: use mac80211 channel data for + tx power limits + - LP: #950320 + * SAUCE: (drop after 3.5) brcm80211: smac: don't validate channels + against internal regulatory data + - LP: #950320 + * SAUCE: (drop after 3.5) brcm80211: smac: use current regulatory domain + when checking whether OFDM is allowed + - LP: #950320 + + [ Tim Gardner ] + + * [Config] Enable CONFIG_CGROUPS for highbank + - LP: #1014692 + * [Config] FB_OMAP*=y and PANEL_TFP410=y + + [ Upstream Kernel Changes ] + + * rebase to v3.5-rc4 + + -- Leann Ogasawara Tue, 26 Jun 2012 06:21:05 -0700 + +linux (3.5.0-1.1) quantal-proposed; urgency=low + + [ Andy Whitcroft ] + + * [Config] highbank -- enable CONFIG_RFKILL=y and CONFIG_CAN=m + + [ Leann Ogasawara ] + + * Rebase to v3.5-rc1 + * [Config] Remove USB_DEVICEFS from the config enforcer + * [Config] Updateconfigs after rebase to v3.5-rc1 + * [Config] Temporarily disable CONFIG_MACH_NOKIA_RX51 on arm + * [Config] Temporarily disable CONFIG_TOUCHSCREEN_EETI on arm + * [Config] Temporarily disable CONFIG_TOUCHSCREEN_EGALAX on arm + * [Config] Temporarily disable CONFIG_EZX_PCAP on arm + * [Config] Temporarily disable CONFIG_LIS3L02DQ on arm + * [Config] Temporarily disable CONFIG_TI_CPSW on arm + * [Config] Temporarily disable CONFIG_GPIO_EM on arm + * [Config] Temporarily disable CONFIG_SERIAL_8250_EM on armhf + * [Config] Temporarily disable CONFIG_STMMAC_ETH on armhf + * [Config] Temporarily disable CONFIG_HW_RANDOM_ATMEL on armhf + * Rebase to v3.5-rc2 + * [Config] Updateconfigs after rebase to v3.5-rc2 + * [Config] Temporarily disable CONFIG_MV643XX_ETH on powerpc + * Rebase to v3.5-rc3 + * [Config] Updateconfigs after rebase to v3.5-rc3 + + [ Paul Mundt ] + + * SAUCE: fix bug.h's inclusion of kernel.h + + [ Stefan Bader ] + + * SAUCE: Fix compile failures of dm-raid45 + * [Config] Enable dm-raid45 + * Move dependency on crda to extra package + - LP: #657901 + * SAUCE: Mask CR4 writes on older Xen hypervisors + + [ Upstream Kernel Changes ] + + * rebase to v3.5-rc3 + - LP: #993162 + - LP: #925577 + * rebase to v3.5-rc2 + * rebase to v3.5-rc1 + - LP: #955892 + - LP: #978038 + - LP: #987371 + - LP: #929545 + - LP: #942316 + - LP: #903853 + + -- Leann Ogasawara Fri, 08 Jun 2012 14:28:46 -0700 + +linux (3.4.0-5.11) quantal-proposed; urgency=low + + [ Leann Ogasawara ] + + * [Config] Disable CONFIG_ARM_LPAE + - LP: #1009061 + + [ Oleksij Rempel ] + + * SAUCE: b43: do not call ieee80211_unregister_hw if we are not registred + - LP: #1008905 + + [ Paolo Pisati ] + + * [Config] omap3: MFD_OMAP_USB_HOST is usb host in omap2+. + - LP: #1009061 + + -- Leann Ogasawara Tue, 05 Jun 2012 08:06:28 -0700 + +linux (3.4.0-4.10) quantal; urgency=low + + [ Leann Ogasawara ] + + * Temporarily disable ABI and module check + + -- Leann Ogasawara Mon, 04 Jun 2012 20:27:31 -0700 + +linux (3.4.0-4.9) quantal; urgency=low + + [ Andy Whitcroft ] + + * [Config] fix config split to avoid the shared config + * [Config] updateconfigs following split config fix + * [Config] linux-image-extras needs full postinst + * [Config] CONFIG_BLK_DEV_NVME commonise across architectures + * [Config] CONFIG_HP_WATCHDOG enable as module + * [Config] CONFIG_PDC_ADMA is not boot essential + * [Config] CONFIG_XEN_ACPI_PROCESSOR should be enabled on x86 + * [Config] CONFIG_VT6655/CONFIG_VT6656=m + * [Config] CONFIG_TRANZPORT=m commonise + * [Config] CONFIG_R3964=m commonise + * [Config] CONFIG_SCSI_DH=m commonise + * [Config] CONFIG_SCSI_IBMVSCSIS=m commonise + * [Config] CONFIG_AMD_PHY=y phys are not autoloadable + * [Config] CONFIG_SCSI_QLA_ISCSI=m commonise + * [Config] CONFIG_SCSI_SPI_ATTR=m commonise + * [Config] CONFIG_USB_SN9C102 is deprecated disable + * [Config] CONFIG_USB_SI470X=m commonise + * [Config] CONFIG_USB_ET61X251=m commonise + * [Config] CONFIG_RTS_PSTOR=m commonise + * [Config] CONFIG_SCANLOG=m commonise + * [Config] CONFIG_SCSI_SYM53C8XX_2=m commonise + * [Config] CONFIG_SM_FTL=m commonise + * [Config] CONFIG_SOLO6X10=m commonise + * [Config] CONFIG_SND_PCM_OSS=n using pulseaudio emulation instead + * [Config] CONFIG_SPI_DESIGNWARE=m commonise + * [Config] CONFIG_SPI_SPIDEV=m commonise + * [Config] CONFIG_TABLET_USB_WACOM=m commonise + * [Config] CONFIG_TPS65010=m commonise + * [Config] CONFIG_STE10XP=y commonise + * [Config] CONFIG_X25_ASY=m commonise + * [Config] CONFIG_USB_MON=m commonise + * [Config] CONFIG_VME_BUS=m commonise + * [Config] CONFIG_W35UND=m commonise + * [Config] -CONFIG_TCG_TPM=y commonise + * [Config] highbank -- commonise filesystems + * [Config] highbank -- commonise subsystems + * [Config] highbank -- commonise network protocols + * [Config] highbank -- commonise input drivers + * [Config] highbank -- commonise CRYPTO options + * [Config] highbank -- commonise HID options + * [Config] highbank -- commonise sensors options + * [Config] highbank -- commonise EXPORTFS/FHANDLE + * [Config] highbank -- commonise CONFIG_CRYPTO_LZO + * [Config] highbank -- commonise ENCRYPTED_KEYS + * [Config] highbank -- commonise CONFIG_ATALK + * [Config] highbank -- commonise INET/INET6 + * [Config] highbank -- commonise NLS + * [Config] highbank -- commonise BLK/CHR + * [Config] highbank -- CONFIG_EXT2_FS=y boot essential on highbank + * [Config] highbank -- commonise INET/INET6 part 2 + * [Config] highbank -- commonise PHY settings + * [Config] highbank -- commonise CRC settings + * [Config] highbank -- commonise BINFMT settings + * [Config] highbank -- commonise DM settings + * [Config] highbank -- commonise RTC_DRV settings + * [Config] highbank -- commonise KEYBOARD/MOUSE settings + * [Config] highbank -- commonise USB settings + * [Config] highbank -- commonise GPIO settings + * [Config] highbank -- commonise I2C settings + * [Config] highbank -- commonise numerous subsystem selectors + * [Config] highbank -- commonise A-C modules missmatches + * [Config] highbank -- commonise D-F modules missmatches + * [Config] CONFIG_AUDIT_LOGINUID_IMMUTABLE incompatible with upstart + * [Config] highbank -- commonise G-I modules missmatches + * [Config] highbank -- commonise J-L modules missmatches + * [Config] highbank -- commonise M modules missmatches + * [Config] highbank -- commonise N-P modules missmatches + * [Config] highbank -- commonise Q-R modules missmatches + * [Config] highbank -- commonise S modules missmatches -- part 1 + * [Config] highbank -- commonise S modules missmatches -- part 2 + * [Config] highbank -- commonise T modules missmatches + * [Config] highbank -- commonise U-Z modules missmatches + + [ Ike Panhc ] + + * [Config] add highbank flavour + - LP: #1000831 + + [ Mark Langsdorf ] + + * SAUCE: arm highbank: add support for pl320-ipc driver + - LP: #1000831 + + [ Rob Herring ] + + * SAUCE: input: add a key driver for highbank + - LP: #1000831 + * SAUCE: ARM: highbank: Add smc calls to enable/disable the L2 + - LP: #1000831 + * SAUCE: force DMA buffers to non-bufferable on highbank + - LP: #1000831 + * SAUCE: net: calxedaxgmac: fix net timeout recovery + - LP: #1000831 + + [ Tim Gardner ] + + * [Config] CONFIG_IWLWIFI_EXPERIMENTAL_MFP=n + * [Config] CONFIG_PCI_REALLOC_ENABLE_AUTO=y + * [Config] CONFIG_CIFS_EXPERIMENTAL has disappeared + * [Config] Homogenize CIFS configs across all arches + * [Config] armhf should not be skipabi or skipmodules + - LP: #1006913 + + -- Leann Ogasawara Mon, 04 Jun 2012 05:52:49 -0700 + +linux (3.4.0-3.8) quantal; urgency=low + + [ Andy Whitcroft ] + + * [Config] include include/generated/compile.h + - LP: #942569 + * [Config] fix up postinst to ensure we know which error is which + - LP: #1002388 + + [ Herton Ronaldo Krzesinski ] + + * SAUCE: async_populate_rootfs: fix build warnings + - LP: #1003417 + + [ John Johansen ] + + * Revert "SAUCE: AppArmor: Add the ability to mediate mount" + * SAUCE: apparmor: Add the ability to mediate mount + * SAUCE: AppArmor: basic networking rules + * SAUCE: apparmor: fix profile lookup for unconfined + - LP: #978038, #987371 + * SAUCE: apparmor: fix long path failure due to disconnected path + - LP: #955892 + + [ Mario Limonciello ] + + * SAUCE: dell-laptop: rfkill blacklist Dell XPS 13z, 15 + - LP: #901410 + + [ Stefan Bader ] + + * (config) Built-in xen-acpi-processor + + [ Tim Gardner ] + + * [Config] CONFIG_NET_DSA=m + - LP: #1004148 + * [Config] Ensure CONFIG_XEN_ACPI_PROCESSOR=y for amd64 + + -- Leann Ogasawara Fri, 25 May 2012 11:38:33 -0700 + +linux (3.4.0-3.7) quantal; urgency=low + + [ Andy Whitcroft ] + + * [Config] drop the virtual flavour in favour of a split generic et al + * [Config] enforcer -- drop IDLE enforcement + * [Config] enable CONFIG_SCSI_VIRTIO=m for amd64 + * [Config] updateconfigs following removal of -virtual + + [ Leann Ogasawara ] + + * Rebase to v3.4 + + [ Seth Forshee ] + + * [Config] disable CONFIG_B43_BCMA_EXTRA + + [ Tim Gardner ] + + * [Config] Check for extras when building udebs + * [Config] Collapsed generic-pae into generic [i386] + + [ Upstream Kernel Changes ] + + * rebase to v3.4 + + -- Leann Ogasawara Mon, 21 May 2012 07:23:47 -0700 + +linux (3.4.0-2.6) quantal; urgency=low + + [ Andy Whitcroft ] + + * Revert "ubuntu: overlayfs -- overlayfs: update touch_atime() usage" + * Revert "ubuntu: overlayfs -- overlayfs: switch from d_alloc_root() to + d_make_root()" + * Revert "ubuntu: overlayfs -- overlayfs: follow header cleanup" + * Revert "ubuntu: overlayfs -- overlayfs: apply device cgroup and + security permissions to overlay files" + * Revert "ubuntu: overlayfs -- fs: limit filesystem stacking depth" + * Revert "ubuntu: overlayfs -- overlay: overlay filesystem documentation" + * Revert "ubuntu: overlayfs -- overlayfs: implement show_options" + * Revert "ubuntu: overlayfs -- overlayfs: add statfs support" + * Revert "ubuntu: overlayfs -- overlay filesystem" + * Revert "ubuntu: overlayfs -- vfs: introduce clone_private_mount()" + * Revert "ubuntu: overlayfs -- vfs: export do_splice_direct() to modules" + * Revert "ubuntu: overlayfs -- vfs: add i_op->open()" + * Revert "ubuntu: overlayfs -- vfs: pass struct path to __dentry_open()" + * ubuntu: overlayfs -- overlayfs: add statfs support + * ubuntu: overlayfs -- inode_only_permission: export inode level + permissions checks + * ubuntu: overlayfs -- overlayfs: switch to use inode_only_permissions + + [ Erez Zadok ] + + * ubuntu: overlayfs -- overlayfs: implement show_options + + [ Miklos Szeredi ] + + * ubuntu: overlayfs -- vfs: pass struct path to __dentry_open() + * ubuntu: overlayfs -- vfs: add i_op->open() + * ubuntu: overlayfs -- vfs: export do_splice_direct() to modules + * ubuntu: overlayfs -- vfs: introduce clone_private_mount() + * ubuntu: overlayfs -- overlay filesystem + * ubuntu: overlayfs -- fs: limit filesystem stacking depth + + [ Neil Brown ] + + * ubuntu: overlayfs -- overlay: overlay filesystem documentation + + [ Robin Dong ] + + * ubuntu: overlayfs -- overlayfs: fix possible leak in ovl_new_inode + * ubuntu: overlayfs -- overlayfs: create new inode in ovl_link + + [ Tim Gardner ] + + * [Config] perarch and indep tools builds need separate build directories + * Prevent upgrading a non-PAE CPU + * perf is not parallel build safe + + -- Leann Ogasawara Wed, 16 May 2012 08:43:18 -0700 + +linux (3.4.0-2.5) quantal; urgency=low + + [ Andy Whitcroft ] + + * [Config] perarch and indep tools builds need separate build directories + + [ Tim Gardner ] + + * Prevent upgrading a non-PAE CPU + * [Config] build debug + * [Config] perf tools are not parallel build safe + + -- Leann Ogasawara Tue, 15 May 2012 11:37:53 -0700 + +linux (3.4.0-2.4) quantal; urgency=low + + [ Leann Ogasawara ] + + * Revert "SAUCE: fsam7400: use UMH_WAIT_PROC consistently" + * Revert "ubuntu: fsam7400 select CHECK_SIGNATURE and depend on X86" + * Revert "ubuntu: fsam7400: Depend on CHECK_SIGNATURE" + * Revert "ubuntu: fsam7400 -- Cleanup Makefile" + * Revert "ubuntu: fsam7400 -- kill switch for Fujitsu Siemens Amilo M + 7400" + * Revert "ubuntu: omnibook: fix source file newline" + * Revert "ubuntu: omnibook -- update BOM" + * Revert "SAUCE: Make CONFIG_{OMNIBOOK, AVERATEC_5100P, PACKARDBELL_E5} + depend on X86" + * Revert "ubuntu: omnibook -- Added missing BOM file" + * Revert "ubuntu: omnibook -- support Toshiba (HP) netbooks" + * Revert "ubuntu: nx-emu - i386: mmap randomization for executable + mappings" + * Revert "SAUCE: disable_nx should not be in __cpuinitdata section for + X86_32" + * Revert "ubuntu: nx-emu - i386: NX emulation" + * Revert "ubuntu: rfkill drivers -- version 1.3" + * Temporarily disable module check + * [Config] Remove CONFIG_FSAM7400 + * [Config] Remove CONFIG_OMNIBOOK + * [Config] Update configs + * Rebase to v3.4-rc7 + * SAUCE: genirq: export handle_edge_irq() and irq_to_desc() + + [ Tim Gardner ] + + * Updated generic-pae description + * Rebase to v3.4-rc6 + * install-tools depends on build targets + + [ Upstream Kernel Changes ] + + * kconfig: in debug mode some 0 length message prints occur + * rebase to v3.4-rc7 + * rebase to v3.3-rc6 + + -- Leann Ogasawara Mon, 14 May 2012 08:22:56 -0700 + +linux (3.4.0-1.3) quantal; urgency=low + + [ Andy Whitcroft ] + + * [Config] control.stub is an intermediate product not a dependancy + - LP: #992414 + + [ Leann Ogasawara ] + + * remove i386 generic from getabis + + [ Upstream Kernel Changes ] + + * (pre-stable) b43: only reload config after successful initialization + - LP: #950295 + + -- Leann Ogasawara Wed, 02 May 2012 09:48:14 -0700 + +linux (3.4.0-1.2) quantal; urgency=low + + [ Andy Whitcroft ] + + * [Config] add build depends for flex, bison and pkg-config + + -- Andy Whitcroft Tue, 01 May 2012 13:15:41 +0100 + +linux (3.4.0-1.1) quantal; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: overlayfs -- overlayfs: apply device cgroup and security + permissions to overlay files + - LP: #915941, #918212 + - CVE-2012-0055 + + [ Leann Ogasawara ] + + * Open Q + * Rebase to v3.4-rc5 + * [Config] Temporarily disable CONFIG_TOUCHSCREEN_EETI on arm + * [Config] Temporarily disable CONFIG_TOUCHSCREEN_EGALAX on arm + * [Config] Temporarily disable CONFIG_EZX_PCAP on arm + * [Config] Temporarily disable CONFIG_MFD_OMAP_USB_HOST on arm + * [Config] Temporarily disable CONFIG_LIS3L02DQ on arm + * [Config] Temporarily disable CONFIG_USB_EHCI_HCD_PLATFORM on arm + * [Config] Temporarily disable CONFIG_TI_CPSW on arm + * [Config] Temporarily disable CONFIG_AX88796 on arm + + [ Upstream Kernel Changes ] + + * vfs: pass struct path to __dentry_open() + * vfs: add i_op->open() + * vfs: export do_splice_direct() to modules + * vfs: introduce clone_private_mount() + * overlay filesystem + * overlayfs: add statfs support + * overlayfs: implement show_options + * overlay: overlay filesystem documentation + * fs: limit filesystem stacking depth + * overlayfs: follow header cleanup + * overlayfs: switch from d_alloc_root() to d_make_root() + * overlayfs: update touch_atime() usage + * rebase to v3.4-rc5 + - LP: #950490 + * rebase to v3.4-rc4 + * rebase to v3.4-rc3 + * rebase to v3.4-rc2 + * rebase to v3.4-rc1 + * rebase to v3.3 + * rebase to v3.3-rc7 + * rebase to v3.3-rc6 + * rebase to v3.3-rc5 + * rebase to v3.3-rc4 + - LP: #900802 + - LP: #930842 + * rebase to v3.3-rc3 + - LP: #924320 + - LP: #923316 + - LP: #923409 + - LP: #918254 + * rebase to v3.3-rc2 + * rebase to v3.3-rc1 + - LP: #795823 + - LP: #909419 + - LP: #910792 + - LP: #878701 + - LP: #724831 + + -- Leann Ogasawara Wed, 25 Jan 2012 06:50:04 -0800 + +linux (3.2.0-10.18) precise; urgency=low + + [ Tim Gardner ] + + * SAUCE: ecryptfs: Print inode on metadata error + + [ Upstream Kernel Changes ] + + * Revert "proc: enable writing to /proc/pid/mem" + - LP: #919115 + - CVE-2012-0056 + * (pre-stable) ALSA: HDA: Use LPIB position fix for Macbook Pro 7, 1 + - LP: #909419 + + -- Andy Whitcroft Tue, 24 Jan 2012 10:15:12 +0000 + +linux (3.2.0-10.17) precise; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: overlayfs -- fs: limit filesystem stacking depth" + * Revert "SAUCE: overlayfs -- overlay: overlay filesystem documentation" + * Revert "SAUCE: overlayfs -- overlayfs: implement show_options" + * Revert "SAUCE: overlayfs -- overlayfs: add statfs support" + * Revert "SAUCE: overlayfs -- overlay filesystem" + * Revert "SAUCE: overlayfs -- vfs: introduce clone_private_mount()" + * Revert "SAUCE: overlayfs -- vfs: export do_splice_direct() to modules" + * Revert "SAUCE: overlayfs -- vfs: add i_op->open()" + * ensure debian/ is not excluded from git by default + * add new scripting to handle buglinks in rebases + * ubuntu: overlayfs -- overlayfs: add statfs support + * ubuntu: overlayfs -- overlayfs: apply device cgroup and security + permissions to overlay files + - LP: #915941, #918212 + - CVE-2012-0055 + + [ Erez Zadok ] + + * ubuntu: overlayfs -- overlayfs: implement show_options + + [ Leann Ogasawara ] + + * Revert "SAUCE: dmar: disable if ricoh multifunction detected" + * [Config] Disable CONFIG_INTEL_IOMMU_DEFAULT_ON + - LP: #907377, #911236 + * [Config] Enable CONFIG_IRQ_REMAP + + [ Miklos Szeredi ] + + * ubuntu: overlayfs -- vfs: pass struct path to __dentry_open() + * ubuntu: overlayfs -- vfs: add i_op->open() + * ubuntu: overlayfs -- vfs: export do_splice_direct() to modules + * ubuntu: overlayfs -- vfs: introduce clone_private_mount() + * ubuntu: overlayfs -- overlay filesystem + * ubuntu: overlayfs -- fs: limit filesystem stacking depth + + [ Neil Brown ] + + * ubuntu: overlayfs -- overlay: overlay filesystem documentation + + [ Upstream Kernel Changes ] + + * (pre-stable) x86/PCI: amd: factor out MMCONFIG discovery + - LP: #647043 + * (pre-stable) PNP: work around Dell 1536/1546 BIOS MMCONFIG bug that + breaks USB + - LP: #647043 + + -- Leann Ogasawara Mon, 16 Jan 2012 07:10:08 -0800 + +linux (3.2.0-9.16) precise; urgency=low + + [ Andy Whitcroft ] + + * [Config] Enable numerous CONFIG_VIDEO_* cards on ARM + * [Config] pull ARM sound modules =m + * [Config] CONFIG_RTC_DRV_TEST is for testing only + * [Config] CONFIG_USB_DUMMY_HCD is testing only + * [Config] CONFIG_USB_FILE_STORAGE is deprecated + + [ Leann Ogasawara ] + + * Revert "[Config] Temporarily disable CONFIG_CAN_TI_HECC on armel" + * [Config] Enable CONFIG_HW_RANDOM_PASEMI=m + * [Config] Enable CONFIG_MMC_TMIO=m + * [Config] Enable CONFIG_MTD_NAND_FSL_ELBC=m + * [Config] Enable CONFIG_ISI=m + * [Config] Enable CONFIG_MMC=y + * [Config] Enable CONFIG_LIRC_PARALLEL=m + * [Config] Enable CONFIG_MAC_EMUMOUSEBTN=m + * [Config] Enable CONFIG_CHR_DEV_SG=y + * [Config] Enable CONFIG_GPIO_PCA953X=m + * [Config] Enable CONFIG_GPIO_TWL4030=m + * [Config] Enable CONFIG_INET_DIAG=m + * [Config] Enable CONFIG_NLS_ISO8859_1=m + * [Config] Enable CONFIG_NVRAM=m + * [Config] Enable CONFIG_SLIP=m + * [Config] Enable CONFIG_PC300TOO=m + * [Config] Enable CONFIG_TUN=y + * [Config] Enable CONFIG_NET_CLS_CGROUP=m + * [Config] Enable CONFIG_THERMAL=y + * [Config] Enable CONFIG_PPP=y + * [Config] Enable CONFIG_PCI_STUB=m + * Rebase to v3.2.1 + * [Config] Enable CONFIG_RTL8192E=m + * [Config] Enable CONFIG_RTS5139=m + + [ Stefan Bader ] + + * [Config] Make CONFIG_VIRTIO_(NET|BLK)=y + + [ Upstream Kernel Changes ] + + * ARM: restart: add restart hook to machine_desc record + * ARM: restart: allow platforms more flexibility specifying restart mode + * ARM: restart: move reboot failure handing into machine_restart() + * ARM: restart: remove argument to setup_mm_for_reboot() + * ARM: 7159/1: OMAP: Introduce local common.h files + * ARM: restart: only perform setup for restart when soft-restarting + * ARM: 7189/1: OMAP3: Fix build break in cpuidle34xx.c because of irq + function + * ARM: idmap: populate identity map pgd at init time using .init.text + * ARM: suspend: use idmap_pgd instead of suspend_pgd + * ARM: proc-*.S: place cpu_reset functions into .idmap.text section + * ARM: idmap: use idmap_pgd when setting up mm for reboot + * ARM: head.S: only include __turn_mmu_on in the initial identity mapping + * ARM: SMP: use idmap_pgd for mapping MMU enable during secondary booting + * ARM: 7194/1: OMAP: Fix build after a merge between v3.2-rc4 and ARM + restart changes + * ARM: lib: add call_with_stack function for safely changing stack + * ARM: reset: implement soft_restart for jumping to a physical address + * ARM: stop: execute platform callback from cpu_stop code + * ARM: kexec: use soft_restart for branching to the reboot buffer + * ARM: restart: omap: use new restart hook + * topdown mmap support + - LP: #861296 + + [ Upstream Kernel Changes ] + + * Rebase to v3.2.1 + + -- Leann Ogasawara Fri, 13 Jan 2012 20:32:08 +0100 + +linux (3.2.0-8.15) precise; urgency=low + + [ Leann Ogasawara ] + + * [Config] Disable CONFIG_ACPI_PROCFS + * Remove server from getabis + * Temporarily disable module check + * [Config] Disable CONFIG_MTD_TESTS + * [Config] Disable CONFIG_X86_E_POWERSAVER + * [Config] Set CONFIG_ARCNET=m + * [Config] Enable CONFIG_ATM_DUMMY=m + * [Config] Enable CONFIG_BLK_DEV_MD=y + * ubuntu: fsam7400 select CHECK_SIGNATURE and depend on X86 + * [Config] Enable CONFIG_BLK_DEV_SD=y + * [Config] Enable CONFIG_BLK_DEV_SR=y + * [Config] Enable CONFIG_BLK_DEV_UB=m + * [Config] Enable CONFIG_COPS=m + * [Config] Enable CONFIG_DVB_USB_EC168=m + * [Config] Enable CONFIG_ENC28J60=m + * [Config] Enable CONFIG_FB_UVESA=m + * [Config] Enable CONFIG_FB_ATY=m + * [Config] Enable CONFIG_BROADCOM_PHY=y + * [Config] Enable CONFIG_CICADA_PHY=y + * [Config] Enable CONFIG_DAVICOM_PHY=y + * [Config] Enable CONFIG_ICPLUS_PHY=y + * [Config] Enable CONFIG_LSI_ET1011C_PHY=y + * [Config] Enable CONFIG_LXT_PHY=y + * [Config] Enable CONFIG_MARVELL_PHY=y + * [Config] Enable CONFIG_NATIONAL_PHY=y + * [Config] Enable CONFIG_QSEMI_PHY=y + * [Config] Enable CONFIG_SMSC_PHY=y + * [Config] Enable CONFIG_VITESSE_PHY=y + * Add 3w-sas to scsi-modules + - LP: #776542 + + [ Mathieu Trudel-Lapierre ] + + * SAUCE: ipv6: make the net.ipv6.conf.all.use_tempaddr sysctl propagate + to interface settings + + [ Paolo Pisati ] + + * Revert "SAUCE: omap3: beagle: if rev unknown, assume xM revision C" + - LP: #912199 + * Revert "SAUCE: omap3: beagle: detect new xM revision B" + - LP: #912199 + * Revert "SAUCE: omap3: beaglexm: fix DVI initialization" + - LP: #912199 + + [ Upstream Kernel Changes ] + + * Bluetooth: Add support for BCM20702A0 [0a5c:21e3] + - LP: #906832 + + -- Leann Ogasawara Fri, 06 Jan 2012 10:02:03 -0800 + +linux (3.2.0-8.14) precise; urgency=low + + [ Andy Whitcroft ] + + * [Config] enable CONFIG_SND_USB_6FIRE + - LP: #912197 + * rebase to mainline v3.2 final release + * updateconfigs following rebase to v3.2 final + * ubuntu: AUFS -- add BOM and automated update script + * ubuntu: AUFS -- include the aufs_types.h file in linux-libc-headers + - LP: #684666 + * ubuntu: AUFS -- update aufs-update to track new locations of headers + * ubuntu: AUFS -- clean up the aufs updater and BOM + * ubuntu: AUFS -- documentation on updating aufs2 + * ubuntu: AUFS -- aufs3-base.patch + * ubuntu: AUFS -- aufs3-standalone.patch + * ubuntu: AUFS -- fix undefined __devcgroup_inode_permission + * ubuntu: AUFS -- fix undefined security_path_link + * ubuntu: AUFS -- update to 4cf5db36bcd9748e8e7270022f295f84d1fc2245 + * ubuntu: AUFS -- updateconfigs following update + * ubuntu: AUFS -- suppress benign plink warning messages + - LP: #621195 + * ubuntu: AUFS -- enable in config and makefile + * ubuntu: AUFS -- disable in favor of overlayfs + * [Config] linux-virtual -- should include the extX modules + - LP: #912308 + + [ Tyler Hicks ] + + * SAUCE: eCryptfs: Improve statfs reporting + - LP: #885744 + + [ Upstream Kernel Changes ] + + * rebase to upstream v3.2 + + -- Leann Ogasawara Mon, 26 Dec 2011 20:24:30 -0800 + +linux (3.2.0-7.13) precise; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to upstream 3.2-rc7 + + -- Leann Ogasawara Mon, 19 Dec 2011 09:14:34 -0800 + +linux (3.2.0-6.12) precise; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to upstream v3.2-rc6 + + -- Leann Ogasawara Fri, 16 Dec 2011 10:19:02 -0800 + +linux (3.2.0-5.11) precise; urgency=low + + [ Andy Whitcroft ] + + * enforcer -- allow arch and flavour predicates to take lists + * enforcer -- simplify armel/armhf specific options + * enforcer -- fix incorrectly specified flavour matches + + [ Leann Ogasawara ] + + * [Config] Disable IRQ_REMAP + * [Config] Enable CONFIG_SENSORS_LM95245=m + * [Config] Enable CONFIG_SENSORS_MAX1668=m + * [Config] Enable CONFIG_SENSORS_NTC_THERMISTOR=m + * [Config] Enable CONFIG_SENSORS_MAX6639=m + * [Config] Enable CONFIG_SENSORS_MAX6642=m + * [Config] Enable CONFIG_SENSORS_LINEAGE=m + * [Config] Enable CONFIG_CRYPTO_SALSA20=m + * [Config] Enable CONFIG_PATA_TOSHIBA=m + * [Config] Enable CONFIG_POHMELFS=m + * [Config] Enable CONFIG_NET_PACKET_ENGINE=y + * [Config] Enable CONFIG_PATA_OPTI=m + * add overlayfs to virtual inclusion list + - LP: #903897 + * add veth to virtual inclusion list + - LP: #903897 + * SAUCE: resolve WARNING: at drivers/block/floppy.c:2929 do_fd_request + + [ Paolo Pisati ] + + * [Config] DEFAULT_MMAP_MIN_ADDR=32k on arm + - LP: #903346 + + [ Tim Gardner ] + + * [Config] CONFIG_LOCKUP_DETECTOR=y + - LP: #903615 + + [ Upstream Kernel Changes ] + + * rebase to upstream 55b02d2f + + -- Leann Ogasawara Mon, 12 Dec 2011 07:08:10 -0800 + +linux (3.2.0-4.10) precise; urgency=low + + [ Kyle McMartin ] + + * SAUCE: dmar: disable if ricoh multifunction detected + - LP: #894070 + + [ Seth Forshee ] + + * SAUCE: dell-wmi: Demote unknown WMI event message to pr_debug + - LP: #581312 + + [ Tim Gardner ] + + * Start new release, Bump ABI, rebase to 3.2-rc5 + + [ Leann Ogasawara ] + + * [Config] Enable CONFIG_SENSORS_AK8975=m + + -- Tim Gardner Sat, 10 Dec 2011 08:57:04 -0700 + +linux (3.2.0-3.9) precise; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: ext4: correct partial write discard size calculation + - LP: #894768 + + [ Leann Ogasawara ] + + * Revert "SAUCE: x86, microcode, AMD: Restrict microcode reporting" + - LP: #892615 + + [ Matthew Garrett ] + + * SAUCE: pci: Rework ASPM disable code + + [ Upstream Kernel Changes ] + + * x86: Fix boot failures on older AMD CPU's + - LP: #892615 + * EHCI : Fix a regression in the ISO scheduler + - LP: #899165 + + -- Leann Ogasawara Mon, 05 Dec 2011 10:37:36 -0800 + +linux (3.2.0-3.8) precise; urgency=low + + [ Andy Whitcroft ] + + * armhf -- add d-i configuration + * armhf -- disable ABI checks for armhf + * armhf -- add arch to getabis config + + -- Andy Whitcroft Sat, 03 Dec 2011 14:22:52 +0000 + +linux (3.2.0-3.7) precise; urgency=low + + [ Stefan Bader ] + + * SAUCE: x86/paravirt: PTE updates in k(un)map_atomic need to be + synchronous, regardless of lazy_mmu mode + - LP: #854050 + + [ Tim Gardner ] + + * rebase to v3.2-rc4 + + -- Leann Ogasawara Fri, 02 Dec 2011 11:53:56 -0800 + +linux (3.2.0-2.6) precise; urgency=low + + [ Andy Whitcroft ] + + * armhf -- fix omap flavour to build on armhf + * [Config] CONFIG_PATA_MACIO=y to fix MAC qemu boot + + [ Borislav Petkov ] + + * SAUCE: x86, microcode, AMD: Restrict microcode reporting + - LP: #892615 + + [ Colin Watson ] + + * Add pata_macio to pata-modules + + [ Tim Gardner ] + + * [Config] Prefer crda over wireless-crda + * [Config] Fix virtual inclusion list. + - LP: #897795 + + -- Leann Ogasawara Wed, 30 Nov 2011 06:09:35 -0800 + +linux (3.2.0-2.5) precise; urgency=low + + [ Paolo Pisati ] + + * [Config] PANEL_DVI=y + + -- Leann Ogasawara Mon, 28 Nov 2011 09:13:24 -0800 + +linux (3.2.0-2.4) precise; urgency=low + + [ Andy Whitcroft ] + + * rebase to v3.2-rc3 + + [ Leann Ogasawara ] + + * Revert "SAUCE: xen: Do not use pv spinlocks on HVM" + * Revert "fix ERROR: __devcgroup_inode_permission undefined" + * Revert "olpc_dcon_xo_1_5 needs delay.h" + * Revert "olpc_dcon_xo_1 needs delay.h" + * rebase to 6fe4c6d4 + * [Config] updateconfigs after rebase to 6fe4c6d4 + + [ Tim Gardner ] + + * [Config] Replace wireless-crda with crda,wireless-regdb + - LP: #856421 + * [Config] Relax the dependencies on crda + + [ Upstream Kernel Changes ] + + * (pre-stable) HID: bump maximum global item tag report size to 96 bytes + - LP: #724831 + * Ubuntu: remove coreutils|fileutils package dependency + - LP: #892814 + * iio: iio_event_getfd -- fix ev_int build failure + + [ Upstream Kernel Changes ] + + * Rebase to v3.2-rc3 + + -- Andy Whitcroft Thu, 24 Nov 2011 16:20:45 +0000 + +linux (3.2.0-1.3) precise; urgency=low + + [ Upstream Kernel Changes ] + + * Ubuntu: Add ext2 to fs-core-modules + - LP: #893395 + + -- Leann Ogasawara Mon, 21 Nov 2011 20:42:33 -0800 + +linux (3.2.0-1.2) precise; urgency=low + + [ Andy Whitcroft ] + + * [Config] enable CONFIG_NFC and associated devices + * SAUCE: allow brcmsmac and b43 to both build + + [ Soren Hansen ] + + * Add ixgbe driver to d-i + - LP: #891969 + + -- Leann Ogasawara Mon, 21 Nov 2011 08:33:46 -0800 + +linux (3.2.0-1.1) precise; urgency=low + [ Andy Whitcroft ] + + * armhf -- enable armhf and create the first flavours + * SAUCE: ensure root is ready before running usermodehelpers in it + * [Config] enforcer -- ensure CONFIG_FAT_FS is built-in on arm + + [ Leann Ogasawara ] + + * Temporarily ignore module check + * [Config] Enable PCI_IOV on powerpc + * [Config] Temporarily disable CONFIG_PASEMI_MAC on powerpc + * rebase to v3.2-rc2 + * SAUCE: include for cpuidle34xx arm build + * SAUCE: include for linux/mtd/map.h arm build + * SAUCE: include and for mmc_core arm build + * SAUCE: select ARM_AMBA if OMAP3_EMU + * [Config] updateconfigs after select ARM_AMBA + * [Config] Temporarily disable CONFIG_KVM_BOOK3S_32 on powerpc + * [Config] Enable CONFIG_EXT2_FS=m + * [Config] Build in CONFIG_SATA_AHCI=y + * Resolve linux-image-extra's install dependency + + [ Seth Forshee ] + + * [Config] Enable EVENT_POWER_TRACING_DEPRECATED=y for powertop + * SAUCE: (drop after 3.2) Input: ALPS - move protocol information to + Documentation + * SAUCE: (drop after 3.2) Input: ALPS - add protocol version field in + alps_model_info + * SAUCE: (drop after 3.2) Input: ALPS - remove assumptions about packet + size + * SAUCE: (drop after 3.2) Input: ALPS - add support for protocol versions + 3 and 4 + * SAUCE: (drop after 3.2) Input: ALPS - add semi-MT support for v3 + protocol + * SAUCE: (drop after 3.2) Input: ALPS - add documentation for protocol + versions 3 and 4 + + [ Stefan Bader ] + + * [Config] Built-in xen-netfront and xen-blkfront + * Fix build of dm-raid45 and re-enable it + + [ Tim Gardner ] + + * [Config] CONFIG_USB_XHCI_HCD=y + - LP: #886167 + * [Config] CONFIG_R6040=m + - LP: #650899 + * SAUCE: Add a new entry (413c:8197) to Bluetooth USB device ID table + - LP: #854399 + * [Config] Consolidated amd64 server flavour into generic + * [Config] updateconfigs after rebase to 3.2-rc1 + * [Config] Disabled dm-raid4-5 + * [Config] Disabled ndiswrapper + * [Config] Disable vt6656 + * [Config] exclude ppp-modules for virtual flavour + * [Config] CONFIG_MEMSTICK_R592=m + - LP: #238208 + + [ Upstream Kernel Changes ] + + * CHROMIUM: seccomp_filter: new mode with configurable syscall filters + - LP: #887780 + * CHROMIUM: seccomp_filter: add process state reporting + - LP: #887780 + * CHROMIUM: seccomp_filter: Document what seccomp_filter is and how it + works. + - LP: #887780 + * CHROMIUM: x86: add HAVE_SECCOMP_FILTER and seccomp_execve + - LP: #887780 + * CHROMIUM: arm: select HAVE_SECCOMP_FILTER + - LP: #887780 + * CHROMIUM: seccomp_filters: move to btrees + * CHROMIUM: enable CONFIG_BTREE + * CHROMIUM: seccomp_filter: kill NR_syscall references + * CHROMIUM: seccomp_filters: guard all ftrace wrapper code + * CHROMIUM: seccomp_filters: clean up warnings; kref mistake + * CHROMIUM: seccomp_filter: remove "skip" from copy and add drop helper + * CHROMIUM: seccomp_filter: allow CAP_SYS_ADMIN management of execve + * CHROMIUM: seccomp_filter: inheritance documentation + * CHROMIUM: seccomp_filter: make inherited filters composable + * CHROMIUM: Fix seccomp_t compile error + - LP: #887780 + * CHROMIUM: Fix kref usage + - LP: #887780 + * CHROMIUM: enable CONFIG_SECCOMP_FILTER and CONFIG_HAVE_SECCOMP_FILTER + * rebase to v3.2-rc2 + + -- Leann Ogasawara Mon, 31 Oct 2011 09:24:39 -0400 + +linux (3.1.0-2.3) precise; urgency=low + + [ Tim Gardner ] + + * Add postinit and postrm scripts to the extras package + - LP: #882120 + + -- Leann Ogasawara Fri, 28 Oct 2011 12:48:33 -0700 + +linux (3.1.0-2.2) precise; urgency=low + + [ Andy Whitcroft ] + + * debian: add locking to protect debian/files from parallel update + + [ Leann Ogasawara ] + + * rebase to v3.1 + + [ Upstream Kernel Changes ] + + * rebase to v3.1 + + -- Leann Ogasawara Wed, 19 Oct 2011 07:12:38 -0700 + +linux (3.1.0-1.1) precise; urgency=low + + [ Andiry Xu ] + + * SAUCE: (drop during 3.2 merge) xHCI: AMD isoc link TRB chain bit quirk + - LP: #872811 + + [ Andy Whitcroft ] + + * Revert "ubuntu: compcache -- follow changes to bd_claim/bd_release" + - LP: #832694 + * Revert "ubuntu: compcache -- version 0.5.3" + - LP: #832694 + * [Config] standardise CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m + * [Config] Enable CONFIG_MACVTAP=m + - LP: #822601 + * record the compiler in the ABI and check for inconsistant builds + * [Config] move ECRYPT_FS back to =y for all architectures + - LP: #827197 + * [Config] enable CONFIG_DRM_VMWGFX=m + - LP: #698009 + * [Config] re-fix ECRYPT_FS=y + - LP: #827197 + * enforcer -- ensure we have CONFIG_ECRYPT_FS=y + - LP: #827197 + * [Config] dropping compcache configuration options + * [Config] standardise on HZ=250 + * SAUCE: headers_install: fix #include "..." usage for userspace + - LP: #824377 + * make module-inclusion selection retain the left overs + * add a new linux-image-extras package for virtual + + [ Colin Watson ] + + * Deliver more Atheros, Ralink, and iwlagn NIC drivers to d-i + + [ edwin_rong ] + + * SAUCE: Staging: add driver for Realtek RTS5139 cardreader + - LP: #824273 + + [ Greg Kroah-Hartman ] + + * SAUCE: staging: rts5139: add vmalloc.h to some files to fix the build. + - LP: #824273 + + [ Jesse Sung ] + + * SAUCE: Unregister input device only if it is registered + - LP: #839238 + + [ Jiri Kosina ] + + * SAUCE: HID: add MacBookAir4, 2 to hid_have_special_driver[] + + [ Joshua V. Dillon ] + + * SAUCE: HID: add support for MacBookAir4,2 keyboard. + + [ Kees Cook ] + + * [Config] enable and enforce SECCOMP_FILTER on x86 + + [ Keng-Yu Lin ] + + * [Config] Enable CONFIG_RTS5139=m on i386/amd64 + - LP: #824273 + + [ Leann Ogasawara ] + + * Revert "ubuntu: overlayfs -- ovl: make lower mount read-only" + * Revert "ubuntu: overlayfs -- fs: limit filesystem stacking depth" + * Revert "ubuntu: overlayfs -- ovl: improve stack use of lookup and + readdir" + * Revert "ubuntu: overlayfs -- ovl: fix overlayfs over overlayfs" + * Revert "ubuntu: overlayfs -- overlayfs: implement show_options" + * Revert "ubuntu: overlayfs -- overlayfs: add statfs support" + * Revert "ubuntu: overlayfs -- overlay filesystem" + * Revert "ubuntu: overlayfs -- overlay: overlay filesystem documentation" + * Revert "SAUCE: ARM: OMAP: Add macros for comparing silicon revision" + * Revert "SAUCE: OMAP: DSS2: check for both cpu type and revision, rather + than just revision" + * Revert "SAUCE: OMAP: DSS2: enable hsclk in dsi_pll_init for OMAP36XX" + * Revert "ubuntu: fsam7400 disable driver" + - LP: #876030 + * rebase to v3.1-rc1 + * [Config] updateconfigs after rebase to v3.1-rc1 + * rebase to v3.1-rc2 + * [Config] Updateconfigs after rebase to v3.1-rc2 + * ubuntu: Yama - update calls to generic_permission() and + inode->i_op->permission() + * ubuntu: ndiswrapper -- remove netdev_priv macro + * ubuntu: aufs -- Temporarily disable due to build failure + * [Config] Diable INTEL_MID_PTI on armel + * [Config] Temporarily disable CONFIG_FTMAC100 on armel + * [Config] Temporarily disable CONFIG_FTGMAC100 on armel + * [Config] Temporarily disable CONFIG_CAN_TI_HECC on armel + * [Config] Temporarily disable CONFIG_VIDEO_OMAP2_VOUT on armel + * [Config] Set CONFIG_DM_MIRROR=m on amd64, i386, and arm + * [Config] Set CONFIG_DM_MULTIPATH=m on amd64, i386, and arm + * [Config] Set CONFIG_DM_SNAPSHOT=m on amd64, i386, and arm + * [Config] Enable CONFIG_EDAC_AMD8111=m on powerpc + * [Config] Enable CONFIG_EDAC_AMD8131=m on powerpc + * [Config] Enable CONFIG_EDAC_CPC925=m on powerpc + * [Config] Enable CONFIG_EDAC_PASEMI=m on powerpc + * [Config] Enable CONFIG_ECHO=m on powerpc + * [Config] Enable CONFIG_ET131X=m on powerpc + * [Config] Set CONFIG_FB_MATROX=m + * [Config] Enable CONFIG_FB_UDL=m on powerpc + * [Config] Set CONFIG_FB_VIRTUAL=n + * [Config] Enable CONFIG_FB_VGA16=m on powerpc + * [Config] Enable CONFIG_GPIO_MAX732X=m on arm + * [Config] Enable CONFIG_GPIO_PCF857X=m on arm + * [Config] Set CONFIG_HOTPLUG_PCI_FAKE=m + * [Config] Enable CONFIG_HOTPLUG_PCI=y on powerpc + * [Config] Enable CONFIG_HOTPLUG_PCI_CPCI=y on powerpc + * [Config] Enable CONFIG_HP_ILO=m on powerpc-smp + * [Config] Enable CONFIG_I2C_PASEMI=m on powerpc + * [Config] Enable CONFIG_IBM_BSR=m on powerpc + * [Config] Enable CONFIG_IBMVETH=m on powerpc + * [Config] Enable CONFIG_IDE_PHISON=m on powerpc + * [Config] Enable CONFIG_IGB=m on powerpc + * [Config] Enable CONFIG_IIO=m on powerpc + * [Config] Enable CONFIG_INFINIBAND_NES=m + * [Config] Enable CONFIG_IPMI_HANDLER=m on arm + * [Config] Enable CONFIG_IWL3945=m on powerpc + * [Config] Disable CONFIG_KVM_BOOK3S_64 + * [Config] Enable CONFIG_LAPBETHER=m on arm + * [Config] Enable CONFIG_LEDS_GPIO=m on powerpc + * [Config] Enable CONFIG_LEDS_CLEVO_MAIL=m all arch's + * [Config] Enable CONFIG_LEDS_PCA9532=m on powerpc + * [Config] Enable CONFIG_LEDS_PCA955X=m on powerpc + * [Config] Enable CONFIG_LEDS_TRIGGER_DEFAULT_ON=m on powerpc + * [Config] Set CONFIG_LEDS_TRIGGER_HEARTBEAT=m on arm and powerpc + * [Config] Set CONFIG_LEDS_TRIGGER_TIMER=m on powerpc + * [Config] Enable CONFIG_LINE6_USB=m on arm and powerpc + * [Config] Enable CONFIG_MEMSTICK=m on arm + * [Config] Enable CONFIG_MTD_AFS_PARTS=m on arm + * [Config] Enable CONFIG_MTD_ALAUDA=m on arm + * [Config] Enable CONFIG_MTD_AR7_PARTS=m on arm + * [Config] Enable CONFIG_MTD_ARM_INTEGRATOR=m on arm + * [Config] Enable CONFIG_MOXA_SMARTIO=m on powerpc + * [Config] Enable CONFIG_MTD_DATAFLASH=m on arm + * [Config] Enable CONFIG_MTD_GPIO_ADDR=m on arm + * [Config] Enable CONFIG_MTD_IMPA7=m on arm + * [Config] Enable CONFIG_MTD_NAND_GPIO=m on arm + * [Config] Enable CONFIG_MTD_NAND_NANDSIM=m on arm + * [Config] Enable CONFIG_MTD_NAND_PASEMI=m on powerpc + * [Config] Enable CONFIG_MTD_NAND_PLATFORM=m on arm + * [Config] Enable CONFIG_MTD_NAND_TMIO=m on arm + * [Config] Enable CONFIG_MTD_SST25L=m on arm + * [Config] Enable CONFIG_NET_CLS_CGROUP=y on arm + * [Config] Enable CONFIG_NET_CLS_FLOW=m on arm + * [Config] Enable CONFIG_NET_CLS_U32=m on arm + * [Config] Enable CONFIG_NET_DCCPPROBE=m on arm + * [Config] Enable CONFIG_NET_SCH_INGRESS=m on arm + * [Config] Enable CONFIG_NET_TCPPROBE=m on arm + * [Config] Enable CONFIG_PASEMI_MAC=m on powerpc + * [Config] Enable CONFIG_PATA_NS87410=m on powerpc + * [Config] Enable CONFIG_I2C_GPIO=m on powerpc64-smp + * [Config] Enable CONFIG_PANEL=m on powerpc + * [Config] Enable CONFIG_PATA_CMD640_PCI=m on powerpc + * SAUCE: x86: reboot: Make Dell Latitude E6520 use reboot=pci + - LP: #833705 + * [Config] Add CONFIG_EFI_VARS=y to the enforcer + - LP: #837332 + * [Config] Update CONFIG_EFI_VARS enforcer check + * [Config] Add aufs to virtual flavor inclusion list + - LP: #844159 + * SAUCE: x86: reboot: Make Dell Optiplex 790 use reboot=pci + - LP: #818933 + * SAUCE: x86: reboot: Make Dell Optiplex 990 use reboot=pci + - LP: #768039 + * SAUCE: x86: reboot: Make Dell Latitude E6220 use reboot=pci + - LP: #838402 + * [Config] Add igbvf to the virtual flavor inclusion list + - LP: #794570 + * [Config] Add ixgbevf to the virtual inclusion list + - LP: #872411 + * [Config] Transition -generic and -server to be identical + * rebase to v3.1-rc10 + + [ Luke Yelavich ] + + * [Config] Disable legacy IDE drivers on powerpc + + [ Ming Lei ] + + * SAUCE: fireware: add NO_MSI quirks for o2micro controller + - LP: #801719 + * SAUCE: ata_piix: make DVD Drive recognisable on systems with Intel + Sandybridge chipsets(v2) + - LP: #737388, #782389, #794642 + + [ Paolo Pisati ] + + * [Config] Compile-in vfat support for armel + - LP: #853783 + + [ Randy Dunlap ] + + * SAUCE: staging: fix rts5139 depends & build + - LP: #824273 + + [ Rene Bolldorf ] + + * SAUCE: (drop after 3.0) ideapad: Check if acpi already handle backlight + power in 'ideapad_backlight_notify_power' to avoid a page fault + + [ Seth Forshee ] + + * SAUCE: (no-up) Input: elantech - Add v3 hardware support + - LP: #681904 + * SAUCE: (drop after 3.1) usb_storage: Don't freeze in usb-stor-scan + - LP: #810020 + + [ Stefan Bader ] + + * (config) Package macvlan and macvtap for virtual + * [Config] Force perf to use libiberty for demangling + - LP: #783660 + * SAUCE: xen: Do not use pv spinlocks on HVM + - LP: #838026 + + [ Tim Gardner ] + + * [Config] Clean up tools rules + * [Config] Package x86_energy_perf_policy and turbostat + - LP: #797556 + * rebase to v3.1-rc3 + * [Config] Simplify binary-udebs dependencies + * [Config] kernel preparation cannot be parallelized + * [Config] Linearize module/abi checks + * [Config] Linearize and simplify tree preparation rules + * [Config] Build kernel image in parallel with modules + * [Config] Set concurrency for kmake invocations + * [Config] Improve install-arch-headers speed + * [Config] Fix binary-perarch dependencies + * [Config] Removed stamp-flavours target + * [Config] Serialize binary indep targets + * [Config] Use build stamp directly + * [Config] Restore prepare-% target + * rebase to v3.1-rc4 + * rebase to v3.1-rc5 + * [Config] Disable makedumpfile for i386/amd64 + * rebase to v3.1-rc6 + * [Config] Fix binary-% build target + * rebase to v3.1-rc7 + * rebase to v3.1-rc8 + * SAUCE: Add a new entry (413c:8197) to Bluetooth USB device ID table + - LP: #854399 + * [Config] Enable ftrace support in the mac80211 layer + - LP: #865171 + * rebase to v3.1-rc9 + * SAUCE: usb/core/devio.c: Check for printer class specific request + - LP: #872711 + + [ Upstream Kernel Changes ] + + * overlay filesystem + * overlayfs: add statfs support + * overlayfs: implement show_options + * overlay: overlay filesystem documentation + * fs: limit filesystem stacking depth + + [ Will Drewry ] + + * SAUCE: seccomp_filter: new mode with configurable syscall filters + * SAUCE: seccomp_filter: add process state reporting + * SAUCE: seccomp_filter: Document what seccomp_filter is and how it + works. + * SAUCE: seccomp_filter: add HAVE_SECCOMP_FILTER and seccomp_execve + + [ Upstream Kernel Changes ] + + * rebase to v3.1-rc1 + * rebase to v3.1-rc2 + * rebase to v3.1-rc3 + +CONFIG_BLK_DEV_BSGLIB=y + +CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 + -CONFIG_VIDEO_OMAP2_VOUT_VRFB=y + * rebase to v3.1-rc4 + * rebase to v3.1-rc5 + * rebase to v3.1-rc6 + * rebase to v3.1-rc7 + * rebase to v3.1-rc8 + * rebase to v3.1-rc9 + * rebase to v3.1-rc10 + + -- Leann Ogasawara Wed, 10 Aug 2011 15:43:38 -0700 + +linux (3.1.0-1.0) oneiric; urgency=low + + [ Leann Ogasawara ] + + * Open P-series + + -- Leann Ogasawara Wed, 10 Aug 2011 13:42:40 -0700 + +linux (3.0.0-8.10) oneiric; urgency=low + + [ Adam Jackson ] + + * SAUCE: drm/i915/pch: Fix integer math bugs in panel fitting + - LP: #753994 + + [ John Johansen ] + + * [Config] Enable missing IPv6 options + + [ Leann Ogasawara ] + + * [Config] Disable config IWLWIFI_DEVICE_SVTOOL + - LP: #819925 + * Rebase to 3.0.1 + + [ Upstream Kernel Changes ] + + * x86, intel, power: Correct the MSR_IA32_ENERGY_PERF_BIAS message + * ALSA: hda - Turn on extra EAPDs on Conexant codecs + - LP: #783582 + * KVM: Remove SMEP bit from CR4_RESERVED_BITS + - LP: #796476 + * KVM: Add SMEP support when setting CR4 + - LP: #796476 + * KVM: Mask function7 ebx against host capability word9 + - LP: #796476 + * KVM: Add instruction fetch checking when walking guest page table + - LP: #796476 + + [ Upstream Kernel Changes ] + + * rebase to v3.0.1 + + -- Leann Ogasawara Fri, 05 Aug 2011 11:32:25 -0700 + +linux (3.0.0-7.9) oneiric; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Upstream] add local prefix to oss local change_bits" + * Revert "SAUCE: add tracing for user initiated readahead requests" + * Revert "SAUCE: vfs: Add a trace point in the mark_inode_dirty function" + * Revert "SAUCE: Input: ALPS - Enable Intellimouse mode for Lenovo + Zhaoyang E47" + * Revert "SAUCE: fix documentation strings for struct input_keymap_entry" + * Revert "SAUCE: vt -- fix handoff numbering to 1..n and add range checks + (grub)" + * Revert "SAUCE: vt -- fix handoff numbering to 1..n and add range + checks" + * Revert "SAUCE: vt -- allow grub to request automatic vt_handoff" + * Revert "SAUCE: vt -- maintain bootloader screen mode and content until + vt switch" + * [Config] enable CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=1 + - LP: #816035 + * ubuntu: Yama: if an underlying filesystem provides a permissions op use + it + * SAUCE: (no-up) add tracing for user initiated readahead requests + * SAUCE: vt -- maintain bootloader screen mode and content until vt + switch + * SAUCE: vt -- allow grub to request automatic vt_handoff + + [ Arjan van de Ven ] + + * SAUCE: (no-up) vfs: Add a trace point in the mark_inode_dirty function + + [ Kees Cook ] + + * Revert "SAUCE: (no-up) Disable building the ACPI debugfs source" + * [Config] enforce ACPI_CUSTOM_METHOD disabled + + [ Keng-Yu Lin ] + + * SAUCE: (no-up) Input: ALPS - Enable Intellimouse mode for Lenovo + Zhaoyang E47 + - LP: #632884, #803005 + + [ Leann Ogasawara ] + + * [Config] Enable CONFIG_BLK_DEV_CMD64X=m on powerpc + - LP: #513131 + * [Config] Enable CONFIG_RT2800PCI_RT53XX=y + - LP: #815064 + + [ Rezwanul Kabir ] + + * SAUCE: (no-up) Add support for Intellimouse Mode in ALPS touchpad on + Dell E2 series Laptops + - LP: #632884 + + [ Upstream Kernel Changes ] + + * Revert "yama: if an underlying filesystem provides a permissions op use + it" + * Revert "Add support for Intellimouse Mode in ALPS touchpad on Dell E2 + series Laptops" + * Revert "tty: include linux/slab.h for kfree" + * Revert "gpio/ml_ioh_gpio: include linux/slab.h for kfree" + * Revert "pch_dma: add include/slab.h for kfree" + * mmc: Added quirks for Ricoh 1180:e823 lower base clock frequency + - LP: #773524 + * oss: rename local change_bits to avoid powerpc bitsops.h definition + + -- Leann Ogasawara Mon, 25 Jul 2011 09:08:01 -0700 + +linux (3.0.0-7.8) oneiric; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: overlayfs -- overlayfs: add statfs support + * [Config] enable CONFIG_OVERLAYFS + + [ Erez Zadok ] + + * ubuntu: overlayfs -- overlayfs: implement show_options + + [ Leann Ogasawara ] + + * [Config] Enable CONFIG_ALIM7101_WDT=m on powerpc + * [Config] Enable CONFIG_ASUS_OLED=m on powerpc + * [Config] Disable CONFIG_ATM_DUMMY on arm + * [Config] Enable CONFIG_BLK_DEV_DRBD=m on powerpc + * Temporarily disable module check on arm + * Rebase to 3.0 final + * [Config] Enable CONFIG_CAN_TI_HECC=m on arm + * [Config] Set CONFIG_CDROM_PKTCDVD=m on amd64 and i386 + * [Config] Enable CONFIG_CRYPTO_CCM=m on powerpc + * [Config] Enable CONFIG_CRYPTO_DEV_HIFN_795X=m on powerpc + * [Config] Enable CONFIG_CRYPTO_GCM=m on powerpc + * [Config] Set CRYPTO_LZO=m on powerpc64-smp + * [Config] Enable CONFIG_DM9000=m on arm + * [Config] Set CONFIG_DISPLAY_SUPPORT=m on arm + * [Config] Enable CONFIG_DL2K=m on amd64 and i386 + + [ Miklos Szeredi ] + + * ubuntu: overlayfs -- vfs: add i_op->open() + * ubuntu: overlayfs -- vfs: export do_splice_direct() to modules + * ubuntu: overlayfs -- vfs: introduce clone_private_mount() + * ubuntu: overlayfs -- overlay filesystem + * ubuntu: overlayfs -- ovl: fix overlayfs over overlayfs + * ubuntu: overlayfs -- ovl: improve stack use of lookup and readdir + * ubuntu: overlayfs -- fs: limit filesystem stacking depth + * ubuntu: overlayfs -- ovl: make lower mount read-only + + [ Neil Brown ] + + * ubuntu: overlayfs -- overlay: overlay filesystem documentation + + [ Tim Gardner ] + + * [Config] Add enic/fnic to udebs + - LP: #801610 + + [ Upstream Kernel Changes ] + + * yama: if an underlying filesystem provides a permissions op use it + + [ Major Kernel Changes ] + + * Rebase to 3.0 final + + -- Leann Ogasawara Thu, 21 Jul 2011 07:01:32 -0700 + +linux (3.0.0-6.7) oneiric; urgency=low + + [ Eagon Yager ] + + * [Config] Fix misspelled 'skipmodule' in arm makefile. + + [ Keng-Yu Lin ] + + * SAUCE: Input: ALPS - Enable Intellimouse mode for Lenovo Zhaoyang E47 + - LP: #632884, #803005 + + [ Leann Ogasawara ] + + * Revert "[Config] Temporarily disable CONFIG_SMC91X on armel-omap" + * Revert "[Config] Temporarily Disable CONFIG_BRCMSMAC on arm" + * Revert "[Config] Temporarily Disable CONFIG_RTL8192SE on powerpc" + * Revert "[Config] Temporarily Disable CONFIG_RTL8192SE on arm" + * Revert "[Config] Temporarily disable CONFIG_BRCMSMAC on powerpc" + * [Config] Set CONFIG_ACPI_PCI_SLOT=m + * [Config] Set CONFIG_ACPI_SBS=m + * [Config] Set CONFIG_ACPI_WMI=m + * [Config] Set CONFIG_AD7150=m on arm + * [Config] Set CONFIG_AD7152=m on arm + * [Config] Drop CONFIG_GPIO_S5PV210 + * [Config] Drop CONFIG_GPIO_S5PC100 + * [Config] Drop CONFIG_GPIO_PLAT_SAMSUNG + * [Config] Drop CONFIG_GPIO_EXYNOS4 + + [ Stefan Bader ] + + * SAUCE: Re-enable RODATA for i386 virtual + - LP: #809838 + + [ Upstream Kernel Changes ] + + * Revert "Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15" + * (drop after 3.0.0) acer-wmi: Add support for Aspire 1830 wlan hotkey + - LP: #771758 + + -- Leann Ogasawara Wed, 20 Jul 2011 06:36:02 -0700 + +linux (3.0.0-5.6) oneiric; urgency=low + + [ Tim Gardner ] + + * [Config] CONFIG_RTL8192CU=m + * Rebase to -rc7 + + -- Tim Gardner Mon, 11 Jul 2011 22:13:50 +0100 + +linux (3.0.0-4.5) oneiric; urgency=low + + [ Ming Lei ] + + * SAUCE: fix yama_ptracer_del lockdep warning + - LP: #791019 + + [ Seth Forshee ] + + * SAUCE: (drop after 3.0) asus-wmi: Add callback for hotkey filtering + * SAUCE: (drop after 3.0) eeepc-wmi: Add support for T101MT Home/Express Gate key + * SAUCE: (drop after 3.0) asus-wmi: Enable autorepeat for hotkey input device + * [Config] CONFIG_{ASUS,ASUS_NB,EEEPC}_WMI=m + - LP: #805218 + + [ Tim Gardner ] + + * [Config] updateconfigs after rebase to -rc6+ + Rebased against 4dd1b49c6d215dc41ce50c80b4868388b93f31a3 + * Adopt a 3 digit verion, e.g., 3.0.0-x.x + * Revert "UBUNTU: add dependancies for module-init-tools" + This dependency is no longer required for a 3 digit version. + + -- Tim Gardner Tue, 05 Jul 2011 14:03:04 +0100 + +linux (3.0-3.4) oneiric; urgency=low + + [ Keng-Yu Lin ] + + * SAUCE: Revert: "dell-laptop: Toggle the unsupported hardware + killswitch" + - LP: #775281 + + [ Leann Ogasawara ] + + * rebase to v3.0-rc5 + * [Config] updateconfigs after rebase to 3.0-rc5 + + [ Tim Gardner ] + + * [Config] Remove ubuntu/rtl8192se + * [Config] Added armel ABI files + * [Config] Removed armel versatile flavour + * [Config] CONFIG_INTEL_MEI=m + - LP: #716867 + + [ Upstream Kernel Changes ] + + * ALSA: hda - Enable auto-parser as default for Conexant codecs + + [ Upstream Kernel Changes ] + + * rebase to v3.0-rc5 + + -- Leann Ogasawara Thu, 30 Jun 2011 14:27:10 +0100 + +linux (3.0-2.3) oneiric; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: AUFS -- update to 0e2bafab74f0d1463383faeb93f9fc5eb8c2c54e + + [ Leann Ogasawara ] + + * rebase to v3.0-rc4 + * [Config] updateconfigs after rebase to 3.0-rc4 + * fix ERROR: __devcgroup_inode_permission undefined + + [ Stefan Bader ] + + * SAUCE: iscsitarget: Remove driver from the kernel + + [ Tim Gardner ] + + * SAUCE: rtl8192se: Force a build for a 2.6/3.0 kernel + * [Config] Add grub-efi as a recommended bootloader for server and + generic + - LP: #800910 + + [ Upstream Kernel Changes ] + + * Fix node_start/end_pfn() definition for mm/page_cgroup.c + + [ Leann Ogasawara ] + + * rebase to v3.0-rc4 + + -- Leann Ogasawara Fri, 24 Jun 2011 11:51:12 -0700 + +linux (3.0-1.2) oneiric; urgency=low + + [ Andy Whitcroft ] + + * [Config] enable CONFIG_CAN_CALC_BITTIMING + + [ Leann Ogasawara ] + + * rebase to v3.0-rc3 + * [Config] updateconfigs after rebase to 3.0-rc3 + + [ Upstream Kernel Changes ] + + * perf: clear out make flags when calling kernel make kernelver + + [ Leann Ogasawara ] + + * rebase to v3.0-rc3 + + -- Leann Ogasawara Tue, 14 Jun 2011 07:25:35 -0700 + +linux (3.0-0.1) oneiric; urgency=low + + [ Andy Whitcroft ] + + * use the packaging version in the kernel + * use the kernels idea of its version for version_signature + * add dependancies for module-init-tools + * update control files to version 3 + * printchanges/insertchanges allow override of prev_release + * correct Vcs-Git: to point to oneiric + + [ Leann Ogasawara ] + + * rebase to v3.0-rc1 + * [Config] updateconfigs after rebase to 3.0-rc1 + * ubuntu: dm-raid4-5 fix up build failure + * [Config] Temporarily Disable CONFIG_GPIO_EXYNOS4 on arm + * [Config] Temporarily Disable CONFIG_GPIO_PLAT_SAMSUNG on arm + * [Config] Temporarily Disable CONFIG_GPIO_S5PC100 on arm + * [Config] Temporarily Disable CONFIG_GPIO_S5PV210 on arm + * [Config] Temporarily disable CONFIG_BRCMSMAC on powerpc + * [Config] Temporarily Disable CONFIG_BRCMSMAC on arm + * [Config] Temporarily Disable CONFIG_RTL8192SE on arm + * [Config] Temporarily Disable CONFIG_RTL8192SE on powerpc + * [Config] Temporarily disable CONFIG_SMC91X on armel-omap + * rebase to v3.0-rc2 + + [ Manoj Iyer ] + + * SAUCE: mmc: Enable MMC card reader for RICOH [1180:e823] + - LP: #790754 + + [ Upstream Kernel Changes ] + + * Revert "x86 idle: EXPORT_SYMBOL(default_idle, pm_idle) only when APM + demands it" + * drm/i915: fix regression after clock gating init split + + [ Major Kernel Changes ] + + * rebase from v2.6.39 to v3.0-rc1 + * rebase from v3.0-rc1 to v3.0-rc2 + + -- Andy Whitcroft Thu, 09 Jun 2011 15:18:33 +0100 + +linux (2.6.39-3.10) oneiric; urgency=low + + [ Colin Ian King ] + + * SAUCE: S3 early resume debug via keyboard LEDs + + [ Ingo Molnar ] + + * ubuntu: nx-emu - i386: NX emulation + * ubuntu: nx-emu - i386: mmap randomization for executable mappings + + [ Leann Ogasawara ] + + * Revert "[Config] Disable CONFIG_FT1000 on powerpc64-smp" + * Revert "[Config] Disable CONFIG_DM_RAID45" + * [Config] enable CONFIG_BRCMFMAC=y + * [Config] enable CONFIG_MDIO_BITBANG=m across all arch's and flavors + * [Config] enable CONFIG_VIDEO_OUTPUT_CONTROL=m on armel-omap + + [ Robert Nelson ] + + * SAUCE: omap3: beagle: detect new xM revision B + - LP: #770679 + * SAUCE: omap3: beagle: detect new xM revision C + - LP: #770679 + * SAUCE: omap3: beagle: if rev unknown, assume xM revision C + - LP: #770679 + + [ Stefan Bader ] + + * SAUCE: Convert dm-raid45 to new block plugging + + -- Leann Ogasawara Mon, 23 May 2011 11:46:43 -0700 + +linux (2.6.39-3.9) oneiric; urgency=low + + [ Leann Ogasawara ] + + * [Config] Disable CONFIG_SCSI_LPFC_DEBUG_FS + * rebase to v2.6.39 + * [Config] enable CONFIG_LLC2=m across all arch's and flavours + * [Config] enable CONFIG_INPUT_APANEL=m + + [ Thomas Schlichter ] + + * SAUCE: vesafb: mtrr module parameter is uint, not bool + - LP: #778043 + * SAUCE: vesafb: enable mtrr WC by default + - LP: #778043 + + [ Major Kernel Changes ] + + * rebase from v2.6.39-rc7 to v2.6.39 + + -- Andy Whitcroft Fri, 20 May 2011 09:52:32 +0100 + +linux (2.6.39-2.8) oneiric; urgency=low + + [ Andy Whitcroft ] + + * Revert "ubuntu: AUFS -- aufs2-standalone.patch aufs2.1-37" + * Revert "ubuntu: AUFS -- aufs2-base.patch aufs2.1-37" + * Revert "[Config] Disable CONFIG_AUFS_FS" + * ubuntu: AUFS -- aufs2-base.patch aufs2.1-39 + * ubuntu: AUFS -- aufs2-standalone.patch aufs2.1-39 + * ubuntu: AUFS -- update to c6b76974311efc5bf3eddf921cd015b6aae46935 + * ubuntu: AUFS -- clean up the aufs updater and BOM + * ubuntu: AUFS -- documentation on updating aufs2 + + [ Kees Cook ] + + * ubuntu: Yama - LSM hooks + * ubuntu: Yama - create task_free security callback + * ubuntu: Yama - add ptrace relationship tracking interface + * ubuntu: Yama - unconditionally chain to Yama LSM + + [ Leann Ogasawara ] + + * Revert "SAUCE: Fix drivers/staging/easycap FTBS" + * Revert "[Config] Disable CONFIG_EASYCAP" + * ubuntu: fsam7400 disable driver + * ubuntu: omnibook disable driver + * ubuntu: rfkill disable driver + + [ Tim Gardner ] + + * SAUCE: Fix extra reference in fb_open() + + -- Leann Ogasawara Mon, 16 May 2011 09:23:56 -0700 + +linux (2.6.39-2.7) oneiric; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.39-rc7 + + [ Major Kernel Changes ] + + * rebase from v2.6.39-rc6 to v2.6.39-rc7 + + -- Leann Ogasawara Tue, 10 May 2011 10:18:28 +0200 + +linux (2.6.39-1.6) oneiric; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.39-rc6 + * SAUCE: [arm] fixup __aeabi_uldivmod undefined build error + + [ Tim Gardner ] + + * [Config] updateconfigs after rebase to 2.6.39-rc6 + + [ Major Kernel Changes ] + + * rebase from v2.6.39-rc5 to v2.6.39-rc6 + - LP: #740126 + + -- Leann Ogasawara Thu, 05 May 2011 09:46:12 -0700 + +linux (2.6.39-0.5) oneiric; urgency=low + + [ Herton Ronaldo Krzesinski ] + + * SAUCE: Revert "x86, hibernate: Initialize mmu_cr4_features during boot" + - LP: #764758 + + [ Leann Ogasawara ] + + * rebase to v2.6.39-rc5 + * [Config] updateconfigs following rebase to v2.6.39-rc5 + + [ Paolo Pisati ] + + * [Config] s/USB_MUSB_TUSB6010/USB_MUSB_OMAP2PLUS/ on omap3 to get musb + - LP: #759913 + + [ Stefan Bader ] + + * Include nls_iso8859-1 for virtual images + - LP: #732046 + + [ Major Kernel Changes ] + + * rebase from v2.6.39-rc4 to v2.6.39-rc5 + + -- Leann Ogasawara Wed, 27 Apr 2011 06:39:42 -0700 + +linux (2.6.39-0.4) oneiric; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.39-rc4 + * [Config] updateconfigs following rebase to v2.6.39-rc4 + * fixup powerpc implicit declaration of function + 'crash_kexec_wait_realmode' + * [Config] Disable CONFIG_FT1000 on powerpc64-smp + + [ Tim Gardner ] + + * [Config] CONFIG_TRANSPARENT_HUGEPAGE=y + - LP: #769503 + * [Config] Add cachefiles.ko to virtual flavour + - LP: #770430 + + [ Major Kernel Changes ] + + * rebase from v2.6.39-rc3 to v2.6.39-rc4 + + -- Leann Ogasawara Tue, 19 Apr 2011 06:25:20 -0700 + +linux (2.6.39-0.3) oneiric; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.39-rc3 + * crash_kexec_wait_realmode() undefined when !SMP + + [ Tim Gardner ] + + * [Config] CONFIG_PM_ADVANCED_DEBUG=y for i386/amd64 + - LP: #632327 + + [ Major Kernel Changes ] + + * rebase from v2.6.39-rc2 to v2.6.39-rc3 + + -- Leann Ogasawara Tue, 12 Apr 2011 06:52:24 -0700 + +linux (2.6.39-0.2) oneiric; urgency=low + + [ Gustavo F. Padovan ] + + * SAUCE: Revert "Bluetooth: Add new PID for Atheros 3011" + - LP: #720949 + + [ John Johansen ] + + * AppArmor: Fix masking of capabilities in complain mode + - LP: #748656 + + [ Leann Ogasawara ] + + * rebase to v2.6.39-rc2 + * [Config] updateconfigs following rebase to v2.6.39-rc2 + * hv_mouse needs delay.h + * olpc_dcon_xo_1 needs delay.h + * olpc_dcon_xo_1_5 needs delay.h + * Update dropped.txt for Oneiric + + [ Steve Langasek ] + + * [Config] Make linux-libc-dev coinstallable under multiarch + - LP: #750585 + + [ Upstream Kernel Changes ] + + * x86, hibernate: Initialize mmu_cr4_features during boot + - LP: #752870 + + [ Major Kernel Changes ] + + * rebase from v2.6.39-rc1 to v2.6.39-rc2 + + -- Leann Ogasawara Wed, 06 Apr 2011 11:04:15 -0700 + +linux (2.6.39-0.1) oneiric; urgency=low + + [ Brad Figg ] + + * [Config] Set CONFIG_NR_CPUS=256 for amd64 generic + - LP: #737124 + + [ Henrik Rydberg ] + + * SAUCE: HID: hid-ntrig: add support for 1b96:0006 model + * SAUCE: HID: ntrig: fix suspend/resume on recent models + + [ Herton Ronaldo Krzesinski ] + + * SAUCE: (drop after 2.6.39) v4l: make sure drivers supply a zeroed + struct v4l2_subdev + - LP: #745213 + + [ Kees Cook ] + + * [Config] packaging: adjust perms on vmlinuz as well + * SAUCE: nx-emu: further clarify dmesg reporting + - LP: #745181 + + [ Leann Ogasawara ] + + * rebase to v2.6.39-rc1 + * [Config] updateconfigs following rebase to v2.6.39-rc1 + * [Config] Disable CONFIG_DM_RAID45 + * [Config] Disable CONFIG_SCSI_ISCSITARGET + * [Config] Disable CONFIG_EASYCAP + * [Config] Disable CONFIG_AUFS_FS + * update bnx2 firmware files in d-i/firmware/nic-modules + * xhci-pci.c resolve implicit declaration of kzalloc + * [Config] Enable CONFIG_DRM_PSB for only x86 + * [Config] Enable CONFIG_RTS_PSTOR for only x86 + * mfd/asic3: Fix typo, s/irq_data/data/ + + [ Luke Yelavich ] + + * [Config] Disable CONFIG_CRASH_DUMP on 32-bit powerpc kernels + - LP: #745358 + * [Config] Disable CONFIG_DRM_RADEON_KMS on powerpc kernels + * [Config] Build some framebuffer drivers as modules for powerpc kernels. + + [ Manoj Iyer ] + + * SAUCE: thinkpad-acpi: module autoloading for newer Lenovo ThinkPads. + - LP: #745217 + + [ Tim Gardner ] + + * SAUCE: INR_OPEN=4096 + - LP: #663090 + * SAUCE: Increase the default hard limit for open FDs to 4096 + - LP: #663090 + + [ Upstream Kernel Changes ] + + * (drop after 2.6.39-rc1) arm: versatile : Fix typo introduced in irq + namespace cleanup + * (drop after 2.6.39-rc1) [media] staging: altera-jtag needs delay.h + * ALSA: pcm: fix infinite loop in snd_pcm_update_hw_ptr0() + + [ Major Kernel Changes ] + + * rebase from v2.6.38 to v2.6.39-rc1 + + -- Leann Ogasawara Thu, 31 Mar 2011 12:50:10 -0700 + +linux (2.6.39-0.0) oneiric; urgency=low + + [ Leann Ogasawara ] + + * Open Oneiric + + -- Leann Ogasawara Thu, 31 Mar 2011 12:29:23 -0700 + +linux (2.6.38-7.39) natty; urgency=low + + [ Leann Ogasawara ] + + * No change upload. This is just to rebuild with gcc-4.5.2-7ubuntu1. + + -- Leann Ogasawara Thu, 24 Mar 2011 09:27:45 -0700 + +linux (2.6.38-7.38) natty; urgency=low + + [ Leann Ogasawara ] + + * No change upload take 2. 2.6.38-7.37 was accidentally uploaded before + gcc-4.5.2-6ubuntu5 finished building on all arches. + + -- Leann Ogasawara Tue, 22 Mar 2011 06:12:47 -0700 + +linux (2.6.38-7.37) natty; urgency=low + + [ Leann Ogasawara ] + + * No change upload. This is just to rebuild with gcc-4.5.2-6ubuntu5. + + -- Leann Ogasawara Sun, 20 Mar 2011 16:02:48 -0700 + +linux (2.6.38-7.36) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: KLUDGE: work around failed 'shrink-wrap' compiler + optimisation" + * purge last vestiges of maverick + * [Config] switch CONFIG_FB_VESA back to module + + [ Chris Wilson ] + + * SAUCE: drm/i915: Fix pipelined fencing + - LP: #717114 + + [ Loïc Minier ] + + * Include nls_cp437 module in virtual for fat + - LP: #732046 + * Support arch= cross-compilation for any arch + * Fix couple of typos in 0-common-vars.mk + * Enforce DEFAULT_MMAP_MIN_ADDR on armhf + * Add armhf to Debian -> Linux arch map + * Add initial armhf.mk + * Enable common packages for armhf + + [ Upstream Kernel Changes ] + + * Yama: fix default relationship to check thread group + - LP: #737676 + + -- Andy Whitcroft Fri, 18 Mar 2011 18:18:02 +0000 + +linux (2.6.38-7.35) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to 2fbfac4e053861925fa3fffcdc327649b09af54c + * rebase fixes bug #715330 + * [Config] disable CONFIG_SCSI_QLA_ISCSI for powerpc 32bit to fix FTBS + * rebase to v2.6.38 final + + [ Herton Ronaldo Krzesinski ] + + * SAUCE: Apply OPTION_BLACKLIST_SENDSETUP also for ZTE MF626 + - LP: #636091 + + [ Tim Gardner ] + + * [Confg] CONFIG_BOOT_PRINTK_DELAY=y + + [ Upstream Kernel Changes ] + + * Yama: use thread group leader when creating match + - LP: #729839 + * (drop after 2.6.38) ahci: AHCI mode SATA patch for Intel Patsburg SATA + RAID controller + - LP: #735240 + * (drop after v2.6.38) x86, quirk: Fix SB600 revision check + + [ Major Kernel Changes ] + + * rebase from v2.6.38-rc8 to v2.6.38 final + - LP: #715330 + + -- Andy Whitcroft Tue, 15 Mar 2011 19:04:19 +0000 + +linux (2.6.38-6.34) natty; urgency=low + + [ Andy Whitcroft ] + + * [Config] normalise CONFIG_INTEL_TXT + * SAUCE: KLUDGE: work around failed 'shrink-wrap' compiler optimisation + - LP: #730860 + * rebase to mainline v2.6.38-rc8 + + [ Major Kernel Changes ] + + * rebase from v2.6.38-rc7 + fb62c00a6d8942775abc23d1621db1252e2d93d1 + to v2.6.38-rc8 + + -- Andy Whitcroft Tue, 08 Mar 2011 11:54:48 +0000 + +linux (2.6.38-6.33) natty; urgency=low + + [ Andy Whitcroft ] + + * d-i -- enable speakup-modules udeb + - LP: #672699 + * rebase to 493f3358cb289ccf716c5a14fa5bb52ab75943e5 + * [Config] debian PPC64 configuration + * [Config] cleanup powerpc config fixing unexpected inconsistancies + * [Config] resync ppc64 configuration + * SAUCE: match up ENTRY/END naming for 32/64 bit + * rebase to fb62c00a6d8942775abc23d1621db1252e2d93d1 + * [Config] update configs after rebase to + fb62c00a6d8942775abc23d1621db1252e2d93d1 + * [Config] pps_gen_parport no longer built + + [ Corentin Chary ] + + * SAUCE: (drop after 2.6.38) eeepc-wmi: reorder keymap + - LP: #689393 + * SAUCE: (drop after 2.6.38) eeepc-wmi: add wlan key found on 1015P + - LP: #689393 + + [ John Johansen ] + + * SAUCE: Fix aufs calling of security_path_mknod + - LP: #724456 + + [ Kees Cook ] + + * SAUCE: proc: hide kernel addresses via %pK in /proc//stack + + [ Tim Gardner ] + + * rebase to 2.6.38-rc7 + + [ Upstream Kernel Changes ] + + * Revert "drm/i915: fix corruptions on i8xx due to relaxed fencing" + + [ Major Kernel Changes ] + + * rebase from v2.6.38-rc6 to v2.6.38-rc7 + + fb62c00a6d8942775abc23d1621db1252e2d93d1 + - LP: #721389 + - LP: #722925 + - LP: #723672 + - LP: #723676 + - LP: #715318 + + -- Andy Whitcroft Mon, 07 Mar 2011 15:33:17 +0000 + +linux (2.6.38-5.32) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to mainline 6f576d57f1fa0d6026b495d8746d56d949989161 + * [Config] updateconfigs following rebase to v2.6.38-rc6 + * [Config] enable CONFIG_DMAR + - LP: #552311 + + [ Upstream Kernel Changes ] + + * drm/i915: skip FDI & PCH enabling for DP_A + - LP: #561802, #600453, #681877 + + [ Major Kernel Changes ] + + * rebase from v2.6.38-rc5 to v2.6.38-rc6 + - LP: #718402 + - LP: #719524 + - LP: #721126 + - LP: #719691 + - LP: #722689 + - LP: #722310 + + -- Andy Whitcroft Tue, 22 Feb 2011 13:28:39 +0000 + +linux (2.6.38-4.31) natty; urgency=low + + [ Andy Whitcroft ] + + * add in bugs closed by upstream patches pulled in by rebases + * rebase to 795abaf1e4e188c4171e3cd3dbb11a9fcacaf505 + * [Config] enable CONFIG_VSX to allow use of vector instuctions + * resync with maverick 98defa1c5773a3d7e4c524967eb01d5bae035816 + * rebase to mainline v2.6.38-rc5 + * SAUCE: ecryptfs: read on a directory should return EISDIR if not + supported + - LP: #719691 + + [ Colin Ian King ] + + * SAUCE: Dell All-In-One: Remove need for Dell module alias + + [ Manoj Iyer ] + + * SAUCE: (drop after 2.6.38) add ricoh 0xe823 pci id. + - LP: #717435 + + [ Tim Gardner ] + + * [Config] CONFIG_CRYPTO_CRC32C_INTEL=y + + [ Upstream Kernel Changes ] + + * Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15 + - LP: #702434 + * vfs: fix BUG_ON() in fs/namei.c:1461 + + [ Vladislav P ] + + * SAUCE: Release BTM while sleeping to avoid deadlock. + - LP: #713837 + + [ Major Kernel Changes ] + + * rebase from v2.6.38-rc4 to v2.6.38-rc5 + - LP: #579276 + - LP: #715877 + - LP: #713769 + - LP: #716811 + * resync with Maverick Ubuntu-2.6.35-27.47 + + -- Andy Whitcroft Fri, 11 Feb 2011 17:24:09 +0000 + +linux (2.6.38-3.30) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.38-rc4 + * ppc64 -- add basic architecture + * ubuntu: AUFS -- update to 65835da20b77c98fb538c9114fc31f5de1328230 + + [ Colin Ian King ] + + * SAUCE: Add WMI hotkeys support for Dell All-In-One series + - LP: #676997 + * SAUCE: Add WMI hotkeys support for another Dell All-In-One series + - LP: #701530 + * SAUCE: Dell WMI: Use sparse keymaps and tidy up code. + - LP: #701530 + + [ Dan Rosenberg ] + + * SAUCE: (drop after 2.6.38) Convert net %p usage %pK + + [ Kees Cook ] + + * Revert "SAUCE: kernel: make /proc/kallsyms mode 400 to reduce ease of + attacking" + * SAUCE: (drop after 2.6.38) use %pK for /proc/kallsyms and /proc/modules + + [ Tim Gardner ] + + * [Config] CONFIG_BLK_CGROUP=y + - LP: #706394 + * [Config] CONFIG_DELL_WMI_AIO=m + + [ Upstream Kernel Changes ] + + * drm/i915/lvds: Restore dithering on native modes for gen2/3 + - LP: #711568 + + [ Upstream Kernel Changes ] + + * rebase from v2.6.38-rc3 to v2.6.38-rc4. + - LP: #701271 + - LP: #708521 + - LP: #710371 + + -- Andy Whitcroft Tue, 08 Feb 2011 02:07:18 +0000 + +linux (2.6.38-2.29) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to 1f0324caefd39985e9fe052fac97da31694db31e + * [Config] updateconfigs following rebase to + 1f0324caefd39985e9fe052fac97da31694db31e + * rebase to 70d1f365568e0cdbc9f4ab92428e1830fdb09ab0 + * [Config] reenable HIBERNATE + - LP: #710877 + * rebase to v2.6.38-rc3 + * [Config] reenable CONFIG_CRASH_DUMP + + [ Kamal Mostafa ] + + * SAUCE: rtl8192se: fix source file perms + * SAUCE: rtl8192se: fix source file newline + * SAUCE: omnibook: fix source file newline + + [ Kees Cook ] + + * [Config] packaging: really make System.map mode 0600 + + [ Ricardo Salveti de Araujo ] + + * SAUCE: OMAP3630: PM: don't warn the user with a trace in case of + PM34XX_ERRATUM + + [ Soren Hansen ] + + * SAUCE: nbd: Remove module-level ioctl mutex + + [ Tim Gardner ] + + * SAUCE: Disable building the ACPI debugfs source + + [ Upstream Kernel Changes ] + + * Set physical start and alignment 1M for virtual i386 + - LP: #710754 + + [ Upstream Kernel Changes ] + + * rebase from v2.6.38-rc2 + c723fdab8aa728dc2bf0da6a0de8bb9c3f588d84 + to v2.6.38-rc3 + - LP: #707902 + + -- Andy Whitcroft Fri, 28 Jan 2011 16:30:32 +0000 + +linux (2.6.38-1.28) natty; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: AUFS -- update to b1cee06249dfa0ab30951e7f06490a75c155b620 + + [ Ricardo Salveti de Araujo ] + + * SAUCE: omap3: beaglexm: fix DVI initialization + * [Config] omap: move CONFIG_PANEL_GENERIC_DPI to build in to make + display work at Beagle + + -- Andy Whitcroft Fri, 28 Jan 2011 10:51:57 +0000 + +linux (2.6.38-1.27) natty; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: AUFS -- update aufs-update to track new locations of headers + * ubuntu: AUFS -- update to c5021514085a5d96364e096dbd34cadb2251abfd + * SAUCE: ensure root is ready before running usermodehelpers in it + * correct the Vcs linkage to point to natty + * rebase to linux tip e78bf5e6cbe837daa6ab628a5f679548742994d3 + * [Config] update configs following rebase + e78bf5e6cbe837daa6ab628a5f679548742994d3 + * SAUCE: Yama: follow changes to generic_permission + * ubuntu: compcache -- follow changes to bd_claim/bd_release + * ubuntu: iscsitarget -- follow changes to open_bdev_exclusive + * ubuntu: ndiswrapper -- fix interaction between __packed and packed + * ubuntu: AUFS -- update to 806051bcbeec27748aae2b7957726a4e63ff308e + * update package version to match payload version + * rebase to e6f597a1425b5af64917be3448b29e2d5a585ac8 + * rebase to v2.6.38-rc1 + * [Config] updateconfigs following rebase to v2.6.38-rc1 + * SAUCE: x86 fix up jiffies/jiffies_64 handling + * rebase to linus tip 2b1caf6ed7b888c95a1909d343799672731651a5 + * [Config] updateconfigs following rebase to + 2b1caf6ed7b888c95a1909d343799672731651a5 + * [Config] disable CONFIG_TRANSPARENT_HUGEPAGE to fix i386 boot crashes + * ubuntu: AUFS -- suppress benign plink warning messages + - LP: #621195 + * [Config] CONFIG_NR_CPUS=256 for amd64 -server flavour + * rebase to v2.6.38-rc2 + * rebase to mainline d315777b32a4696feb86f2a0c9e9f39c94683649 + * rebase to c723fdab8aa728dc2bf0da6a0de8bb9c3f588d84 + * [Config] update configs following rebase to + c723fdab8aa728dc2bf0da6a0de8bb9c3f588d84 + * [Config] disable CONFIG_AD7152 to fix FTBS on armel versatile + * [Config] disable CONFIG_AD7150 to fix FTBS on armel versatile + * [Config] disable CONFIG_RTL8192CE to fix FTBS on armel omap + * [Config] disable CONFIG_MANTIS_CORE to fix FTBS on armel versatile + + [ Kees Cook ] + + * SAUCE: kernel: make /proc/kallsyms mode 400 to reduce ease of attacking + + [ Stefan Bader ] + + * Temporarily disable RODATA for virtual i386 + - LP: #699828 + + [ Tim Gardner ] + + * [Config] CONFIG_NLS_DEFAULT=utf8 + - LP: #683690 + * [Config] CONFIG_HIBERNATION=n + * update bnx2 firmware files in d-i/firmware/nic-modules + + [ Upstream Kernel Changes ] + + * Revert "drm/radeon/bo: add some fallback placements for VRAM only + objects." + * packaging: make System.map mode 0600 + * thinkpad_acpi: Always report scancodes for hotkeys + - LP: #702407 + * sched: tg->se->load should be initialised to tg->shares + * Input: sysrq -- ensure sysrq_enabled and __sysrq_enabled are consistent + * brcm80211: include linux/slab.h for kfree + * pch_dma: add include/slab.h for kfree + * i2c-eg20t: include linux/slab.h for kfree + * gpio/ml_ioh_gpio: include linux/slab.h for kfree + * tty: include linux/slab.h for kfree + * winbond: include linux/delay.h for mdelay et al + + [ Upstream Kernel Changes ] + + * mark the start of v2.6.38 versioning + * rebase v2.6.37 to v2.6.38-rc2 + c723fdab8aa728dc2bf0da6a0de8bb9c3f588d84 + - LP: #689886 + - LP: #702125 + - LP: #608775 + - LP: #215802 + - LP: #686333 + - LP: #677830 + - LP: #677652 + - LP: #696493 + - LP: #697240 + - LP: #689036 + - LP: #705323 + - LP: #686692 + + -- Andy Whitcroft Sun, 09 Jan 2011 13:44:52 +0000 + +linux (2.6.37-12.26) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.37-rc8 + * [Config] armel -- reenable omap flavour + * [Config] disable CONFIG_MACH_OMAP3517EVM to fix FTBS on armel omap + * [Config] disable CONFIG_GPIO_VX855 to fix FTBS on omap armel + * [Config] disable CONFIG_WESTBRIDGE_ASTORIA to fix FTBS on omap armel + * [Config] disable CONFIG_TI_DAVINCI_EMAC to fix FTBS on omap armel + * rebase to mainline 989d873fc5b6a96695b97738dea8d9f02a60f8ab + * [Config] track missing modules + * rebase to v2.6.37 final + + [ Chase Douglas ] + + * SAUCE: (drop after 2.6.37) HID: magicmouse: Don't report REL_{X, Y} for + Magic Trackpad + + [ Stefan Bader ] + + * Revert "SAUCE: blkfront: default to sd devices" + - LP: #684875 + + [ Tim Gardner ] + + * Revert "SAUCE: (no-up) libata: Ignore HPA by default." + - LP: #380138 + * [Config] Added autofs4.ko to -virtual flavour + - LP: #692917 + + [ Upstream Kernel Changes ] + + * Add support for Intellimouse Mode in ALPS touchpad on Dell E2 series + Laptops + - LP: #632884 + + [ Upstream Kernel Changes ] + + * rebase to v2.6.37-rc8 + * rebase to mainline 989d873fc5b6a96695b97738dea8d9f02a60f8ab + * rebase to v2.6.37 final + + -- Andy Whitcroft Thu, 23 Dec 2010 18:34:13 +0000 + +linux (2.6.37-11.25) natty; urgency=low + + [ Andy Whitcroft ] + + * [Config] d-i -- add hpsa to the list of block devices + - LP: #684304 + * [Config] add vmw-balloon driver to -virtual flavour + - LP: #592039 + * rebase to v2.6.37-rc7 + + [ Upstream Kernel Changes ] + + * rebase to v2.6.37-rc7 + + -- Andy Whitcroft Tue, 21 Dec 2010 13:35:28 +0000 + +linux (2.6.37-10.24) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.37-rc6 + * updateconfigs following rebase to v2.6.37-rc6 + + [ Upstream Kernel Changes ] + + * rebase to v2.6.37-rc6 + + -- Andy Whitcroft Thu, 16 Dec 2010 12:34:19 +0000 + +linux (2.6.37-9.23) natty; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: vt -- fix handoff numbering to 1..n and add range checks + - LP: #689606 + * SAUCE: vt -- fix handoff numbering to 1..n and add range checks (grub) + - LP: #689606 + + [ Kees Cook ] + + * SAUCE: RO/NX protection for loadable kernel, fix ftrace + - LP: #690190 + + -- Andy Whitcroft Wed, 15 Dec 2010 19:29:57 +0000 + +linux (2.6.37-9.22) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.35-rc5 + * [Config] updateconfigs following rebase to v2.6.37-rc5 + * (no-up) add support for installed header files to ubuntu directory + - LP: #684666 + * ubuntu: AUFS -- include the aufs_types.h file in linux-libc-headers + - LP: #684666 + * ubuntu: dm-raid4-5 -- follow changes to bio flags + * ubuntu: dm-raid4-5 -- re-enable + * ubuntu: omnibook -- update BOM + * ubuntu: ndiswrapper -- update BOM to match actual version + * ubuntu: ndiswrapper -- follow removal of the BKL and locked ioctl + * ubuntu: ndiswrapper -- re-enable + * ubuntu: iscsitarget -- re-instate copy_io_context + * ubuntu: iscsitarget -- follow changes to semaphore initialisation + * ubuntu: iscsitarget -- convert NIPQUAD to %pI4 + * ubuntu: iscsitarget -- re-enable + + [ Kees Cook ] + + * [Config] update config for CONFIG_DEBUG_SET_MODULE_RONX + + [ Manoj Iyer ] + + * SAUCE: Enable jack sense for Thinkpad Edge 13 + - LP: #685015 + + [ Tim Gardner ] + + * [Config] CONFIG_9P_FSCACHE=y,CONFIG_9P_FS_POSIX_ACL=y + * [Config] CONFIG_CRYPTO_CRC32C=y + - LP: #681819 + * [Config] CONFIG_9P_FSCACHE=n + * [Config] Add nfsd modules to -virtual flavour + - LP: #688070 + + [ Upstream Kernel Changes ] + + * Revert "Staging: zram: work around oops due to startup ordering snafu" + * NFS: Fix panic after nfs_umount() + - LP: #683938 + * x86: Add NX protection for kernel data + * x86: Add RO/NX protection for loadable kernel modules + * x86: Resume trampoline must be executable + * x86: RO/NX protection for loadable kernel, jump_table fix + + [ Upstream Kernel Changes ] + + * rebase to v2.6.37-rc5 + + -- Andy Whitcroft Thu, 09 Dec 2010 18:15:35 +0000 + +linux (2.6.37-8.21) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "ubuntu: AUFS -- include the aufs_types.h file in + linux-libc-headers" + * Revert "(no-up) add support for installed header files to ubuntu + directory" + + -- Andy Whitcroft Sun, 05 Dec 2010 17:33:28 +0000 + +linux (2.6.37-8.20) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Upstream] drivers/serial/mfd.c: Fix ARM compile error" + * Revert "SAUCE: Nouveau: Disable acceleration on MacBook Pros" + * Revert "SAUCE: Nouveau: Add quirk framework to disable acceleration" + * Revert "SAUCE: i915 -- disable powersave by default" + * SAUCE: enable Marvell 9128 PCIe SATA controller + - LP: #658521 + * [Config] evtchn has been renamed + * (no-up) add support for installed header files to ubuntu directory + - LP: #684666 + * ubuntu: AUFS -- include the aufs_types.h file in linux-libc-headers + - LP: #684666 + + [ Tim Gardner ] + + * [Config] MISS: evtchn, NEW : xen-evtchn + * rebase to v2.6.37-rc4 + + [ Upstream Kernel Changes ] + + * drm/i915: Clean conflicting modesetting registers upon init + - LP: #683775 + * rebase to v2.6.37-rc4 + + -- Andy Whitcroft Fri, 03 Dec 2010 18:42:07 +0000 + +linux (2.6.37-7.19) natty; urgency=low + + [ Tim Gardner ] + + * [Config] Add bnx2 firmware to nic-modules udeb + - LP: #676245 + + -- Andy Whitcroft Fri, 26 Nov 2010 17:53:45 +0000 + +linux (2.6.37-7.18) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Upstream] USB: option: Remove duplicate AMOI_VENDOR_ID" + * Revert "SAUCE: Add extra headers to linux-libc-dev" + * Revert "SAUCE: Enable speedstep for sonoma processors." + * [Config] enable CONFIG_BT_HCIUART_ATH3K + * [Config] enable CONFIG_IWLWIFI_DEBUGFS + * [Config] standardise CONFIG_MII + * [Config] standardise CONFIG_PRISM2_USB + * [Config] standardise CONFIG_SCSI_QLA_ISCSI + * [Config] build in CONFIG_AGP + * [Config] build in CONFIG_AGP_INTEL + * [Config] build in CONFIG_AGP_AMD + * [Config] build in CONFIG_AGP_AMD64 + * [Config] build in CONFIG_AGP_NVIDIA + * [Config] build in CONFIG_AGP_VIA + * [Config] disable CONFIG_SCSI_QLA_ISCSI for FTBS (arm) + * (no-up): document the new ## scheme + * [Config] harmonise CONFIG_SERIAL_8250_NR_UARTS + * [Config] update CONFIG_SERIAL_8250_RUNTIME_UARTS=32 + - LP: #675453 + + [ Mathieu J. Poirier ] + + * SAUCE: ARM: Adding vdd_sdi regulator supply to OMAP3EVM + + [ Upstream Kernel Changes ] + + * nx-emu: fix inverted report of disable_nx + + -- Andy Whitcroft Tue, 23 Nov 2010 21:00:39 +0000 + +linux (2.6.37-6.17) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "ubuntu: AUFS -- aufs2-standalone.patch + aufs2.1-36-UNRELEASED-20101103" + * Revert "ubuntu: AUFS -- aufs2-base.patch + aufs2.1-36-UNRELEASED-20101103" + * [Config] standardise CONFIG_BT + * [Config] standardise CONFIG_IRDA + * [Config] standardise CONFIG_LAPB + * [Config] standardise CONFIG_RDS + * [Config] standardise CONFIG_RFKILL + * [Config] standardise CONFIG_TIPC + * [Config] standardise CONFIG_X25 + * [Config] standardise CONFIG_INPUT_EVDEV + * [Config] standardise CONFIG_INPUT_JOYDEV + * [Config] standardise CONFIG_INPUT_JOYSTICK + * [Config] standardise CONFIG_INPUT_TOUCHSCREEN + * [Config] CONFIG_INPUT_TOUCHSCREEN=n for FTBS (arm) + * [Config] CONFIG_IRDA=n for FTBS (arm) + * ubuntu: AUFS -- aufs2-base.patch aufs2.1-37 + * ubuntu: AUFS -- aufs2-standalone.patch aufs2.1-37 + * ubuntu: AUFS -- update to 097bf62d6f49619359d34bf17f242df38562489a + + [ Tim Gardner ] + + * SAUCE: Fix drivers/staging/easycap FTBS + * [Config] CONFIG_EASYCAP=m after fixing FTBS + + [ Upstream Kernel Changes ] + + * Revert "x86: Add NX protection for kernel data" + + -- Andy Whitcroft Mon, 22 Nov 2010 18:09:10 +0000 + +linux (2.6.37-6.16) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Config] update config for CONFIG_DEBUG_SET_MODULE_RONX" + * rebase to v2.6.37-rc3 + + [ Tim Gardner ] + + * [Config] CONFIG_SCHED_AUTOGROUP=y + + [ Upstream Kernel Changes ] + + * Revert "x86: Add RO/NX protection for loadable kernel modules" + * sched: automated per session task groups + * rebase to v2.6.37-rc3 + + -- Andy Whitcroft Mon, 22 Nov 2010 10:11:13 +0000 + +linux (2.6.37-6.15) natty; urgency=low + + [ Andy Whitcroft ] + + * [Config] standardise CONFIG_CEPH_FS + * [Config] standardise CONFIG_SCSI_LPFC_DEBUG_FS + * [Config] standardise CONFIG_SCSI_PROC_FS + * [Config] standardise CONFIG_UBIFS_FS + * [Config] standardise CONFIG_USB_GADGET_DEBUG_FS + + [ Kees Cook ] + + * [Config] update config for CONFIG_DEBUG_SET_MODULE_RONX + + [ Manoj Iyer ] + + * SAUCE: Enable jack sense for Thinkpad Edge 11 + - LP: #677210 + * SAUCE: enable rfkill for rtl8192se driver + - LP: #640992 + + [ Tim Gardner ] + + * [Config] CONFIG_EASYCAP=n for FTBS + * Rebase to v2.6.32-rc2+git + + [ Upstream Kernel Changes ] + + * x86: Fix improper large page preservation + * x86: Add NX protection for kernel data + * x86: Add RO/NX protection for loadable kernel modules + + [ Upstream Kernel Changes ] + + * Rebase to Linus 2.6.37-rc2+git + + -- Andy Whitcroft Sat, 20 Nov 2010 11:40:00 +0000 + +linux (2.6.37-5.14) natty; urgency=low + + [ Upstream Kernel Changes ] + + * PCI: fix offset check for sysfs mmapped files + - LP: #676963 + + -- Andy Whitcroft Thu, 18 Nov 2010 18:12:27 +0000 + +linux (2.6.37-5.13) natty; urgency=low + + [ Andy Whitcroft ] + + * rebased to v2.6.37-rc2 + * updateconfigs following rebase to v2.6.37-rc2 + + [ Tim Gardner ] + + * [Config] Added NFS and related modules to virtual flavour + - LP: #659084 + + [ Upstream Kernel Changes ] + + * x86, cpu: Rename verify_cpu_64.S to verify_cpu.S + * x86, cpu: Clear XD_DISABLED flag on Intel to regain NX + * x86, cpu: Call verify_cpu during 32bit CPU startup + * x86, cpu: Only CPU features determine NX capabilities + + [ Upstream Changes ] + + * rebased to v2.67.37-rc2 + + -- Andy Whitcroft Tue, 16 Nov 2010 13:13:29 +0000 + +linux (2.6.37-4.12) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Upstream] HID: magicmouse: add param for scroll speed" + * Revert "[Upstream] HID: magicmouse: properly account for scroll + movement in state" + * Revert "[Upstream] HID: magicmouse: disable and add module param for + scroll acceleration" + * Revert "[Upstream] HID: magicmouse: scroll on entire surface, not just + middle of mouse" + + [ Henrik Rydberg ] + + * SAUCE: hid: ntrig: remove sysfs nodes + * SAUCE: hid: ntrig: Setup input filtering manually + * SAUCE: hid: ntrig: New ghost-filtering event logic + + [ Manoj Iyer ] + + * SAUCE: Added quirk to recognize GE0301 3G modem as an interface. + - LP: #348861 + + [ Upstream Kernel Changes ] + + * Revert "mmc: fix all hangs related to mmc/sd card insert/removal during + suspend/resume" + * Revert "[ARM] implement arch_randomize_brk()" + * Revert "ARM: stack protector: change the canary value per task" + * Revert "ARM: initial stack protector (-fstack-protector) support" + * Revert "ALSA: hda - Handle pin NID 0x1a on ALC259/269" + * Revert "ALSA: hda - Handle missing NID 0x1b on ALC259 codec" + * Revert "perf probe: Add kernel source path option" + * hid: ntrig: Support single-touch devices + * hid: ntrig: Mask pen switch events + * net: rtnetlink.h -- only include linux/netdevice.h when used by the + kernel + - LP: #673073 + * Fix userspace build of linux/fs.h + + -- Andy Whitcroft Mon, 15 Nov 2010 19:31:44 +0000 + +linux (2.6.37-3.11) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "ubuntu: AUFS -- update to + b37c575759dc4535ccc03241c584ad5fe69e3b25" + * Revert "ubuntu: AUFS -- track changes to the arguements to fop fsync()" + * Revert "ubuntu: AUFS -- update to standalone 2.6.35-rcN as at 20100601" + * Revert "ubuntu: AUFS -- update to standalone 2.6.34 as at 20100601" + * Revert "ubuntu: AUFS -- aufs2 base patch for linux-2.6.34" + * [Config] Disable intel_idle for -virtual kernels + - LP: #651370 + * [Config] enforcer -- ensure we never enable CONFIG_IMA + * debian -- pass the correct flavour name when checking configs + * [Config] enforcer -- ensure CONFIG_INTEL_IDLE is off for -virtual + * [Config] ensure CONFIG_IPV6=y for powerpc + * [Config] enforcer -- ensure CONFIG_IPV6=y + * ubuntu: AUFS -- aufs2-base.patch aufs2.1-36-UNRELEASED-20101103 + * ubuntu: AUFS -- aufs2-standalone.patch aufs2.1-36-UNRELEASED-20101103 + * ubuntu: AUFS -- update to aufs2.1-36-UNRELEASED-20101103 + * ubuntu: AUFS -- re-enable + * ubuntu: AUFS -- track changes to work queue initialisation + * ubuntu: AUFS -- track changes to llseek in v2.6.37-rc1 + * SAUCE: fbcon -- fix race between open and removal of framebuffers + * SAUCE: fbcon -- fix OOPs triggered by race prevention fixes + - LP: #614008 + * SAUCE: drm -- stop early access to drm devices + + [ Jeremy Kerr ] + + * [Config] Build-in powermac ZILOG serial driver + - LP: #673346 + + [ Kees Cook ] + + * SAUCE: nx-emu: use upstream ASLR when possible + + [ Tim Gardner ] + + * [Config] Use correct be2iscsi module name in d-i/modules/scsi-modules + - LP: #628776 + + [ Upstream Kernel Changes ] + + * i386: NX emulation + * nx-emu: drop exec-shield sysctl, merge with disable_nx + * nx-emu: standardize boottime message prefix + * mmap randomization for executable mappings on 32-bit + * exec-randomization: brk away from exec rand area + + -- Andy Whitcroft Thu, 11 Nov 2010 23:46:37 +0000 + +linux (2.6.37-2.10) natty; urgency=low + + [ Andy Whitcroft ] + + * reinstate armel config changes: + * [Config] CONFIG_GPIO_PCH=n for armel FTBS + * [Config] CONFIG_GPIO_VX855=n for armel FTBS + + -- Andy Whitcroft Wed, 03 Nov 2010 22:20:35 +0000 + +linux (2.6.37-2.9) natty; urgency=low + + [ Andy Whitcroft ] + + * config -- fix genportsconfig + * [Config] move powerpc over from ports to distro + * bump master version number to match contained kernel + * SAUCE: fix documentation strings for struct input_keymap_entry + * usb: gadget: goku_udc: add registered flag bit + + -- Andy Whitcroft Tue, 02 Nov 2010 15:14:11 +0000 + +linux (2.6.36-2.8) natty; urgency=low + + [ Tim Gardner ] + + * [Config]: fix changed CONFIG_SYSFS_DEPRECATED_V2 enforcement rules + * [Config]: TWL4030_CORE=n for FTBS + * [Config]: CONFIG_ATH6K_LEGACY=n for FTBS + * [Config]: CONFIG_SOLO6X10=n for FTBS + * [Config]: CONFIG_GPIO_PCH=n for armel FTBS + * [Config]: CONFIG_GPIO_VX855=n for armel FTBS + * [Config]: CONFIG_DRM_NOUVEAU=n for armel FTBS + * [Config]: CONFIG_LINE6_USB=n for armel FTBS + * [Config]: CONFIG_SENSORS_AK8975=n for armel FTBS + * [Config]: CONFIG_I2C_I801=n for armel FTBS + * UBUNTU: SAUCE: AppArmor: Fix unpack of network tables. + * AppArmor: compatibility patch for v5 interface + * AppArmor: compatibility patch for v5 network controll + * Dropped (pre-stable): input: Support Clickpad devices in ClickZone mode + * Dropped: UBUNTU: SAUCE: libata: Add ALPM power state accounting to the AHCI driver + * Dropped: UBUNTU: SAUCE: Added quirk to recognize GE0301 3G modem as an interface. + * Dropped: hid: 3m: Convert to MT slots + * Dropped: HID: magicmouse: don't allow hidinput to initialize the device + * Dropped: HID: magicmouse: simplify touch data bit manipulation + * Dropped: HID: magicmouse: simplify touch down logic + * Dropped: HID: magicmouse: enable Magic Trackpad support + * Dropped: UBUNTU: SAUCE: hid: ntrig: remove sysfs nodes + * Dropped: UBUNTU: SAUCE: hid: ntrig: Setup input filtering manually + * Dropped: UBUNTU: SAUCE: hid: ntrig: New ghost-filtering event logic + * Dropped: UBUNTU: SAUCE: hid: ntrig: identify firmware version (wiggled) + * Dropped: UBUNTU: (pre-stable): input: Support Clickpad devices in ClickZone mode + * Dropped: UBUNTU: SAUCE: KMS: cache the EDID information of the LVDS + * Dropped: UBUNTU: SAUCE: fbcon -- fix race between open and removal of framebuffers + * Dropped: UBUNTU: SAUCE: fbcon -- fix OOPs triggered by race prevention fixes + * Dropped: UBUNTU: SAUCE: x86: implement cs-limit nx-emulation for ia32 + * Dropped: UBUNTU: SAUCE: x86: more tightly confine cs-limit nx-emulation to ia32 only + * Dropped: UBUNTU: SAUCE: [um] Don't use nx_enabled under UML + * Dropped: UBUNTU: SAUCE: x86: brk away from exec rand area + + [ Upstream Kernel Changes ] + + * rebased against 2.6.27-rc1 + + -- Tim Gardner Fri, 22 Oct 2010 19:35:05 -0600 + +linux (2.6.36-1.7) natty; urgency=low + + [ Andy Whitcroft ] + + * rebased to v2.6.36 final + * [Config] update configs following rebase to v2.6.36 final + * [Config] update ports configs following rebase to v2.6.36 final + + [ Upstream Kernel Changes ] + + * rebased to v2.6.36 final + + -- Andy Whitcroft Thu, 21 Oct 2010 14:28:57 +0100 + +linux (2.6.36-1.6) natty; urgency=low + + [ Upstream Kernel Changes ] + + * drop broadcom staging driver preview: + * Revert "Staging: Add initial release of brcm80211 - Broadcom 802.11n + wireless LAN driver." + + -- Andy Whitcroft Wed, 20 Oct 2010 10:41:25 +0100 + +linux (2.6.36-1.5) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.36-rc8 + * updateconfigs following rebase to v2.6.36-rc8 + * updateportsconfigs following rebase to v2.6.36-rc8 + * config -- simplify the kernelconfig interface + * config -- add new config mode 'dumpconfigs' + + [ Tim Gardner ] + + * Simplify the use of CROSS_COMPILER + + [ Upstream Kernel Changes ] + + * drop broadcom staging driver preview: + * Revert "staging: brcm80211: Make compiling of brcm80211.ko and + brcmfmac.ko mutually exclusive." + * Revert "staging: brcm80211: Fix compile issue when BRCM80211_PCI is not + set." + * Revert "Staging: brcm80211: remove driver specific -W options" + * Revert "Staging: brcm80211: clean up makefile cflag lines" + * Revert "staging: brcm80211: add fullmac driver" + * Revert "staging: brcm80211: use string native library" + * Revert "staging: brcm80211: use native ctype library" + * Revert "staging: brcm80211: fix remaining checkpatch errors." + * Revert "staging: brcm80211: fix "ERROR: trailing whitespace."" + * Revert "staging: brcm80211: fix "ERROR: spaces required around that + ..."" + * Revert "staging: brcm80211: fix "ERROR: spaces prohibited around that + ':' ..."" + * Revert "staging: brcm80211: fix "ERROR: space required before that + ..."" + * Revert "staging: brcm80211: fix "ERROR: space required after that ..."" + * Revert "staging: brcm80211: fix "ERROR: space required after that close + brace"" + * Revert "staging: brcm80211: fix "ERROR: space prohibited before + ...close square bracket"" + * Revert "staging: brcm80211: fix "ERROR: space prohibited after that + ..."" + * Revert "staging: brcm80211: fix "ERROR: need consistent spacing around + '*'"" + * Revert "staging: brcm80211: fix 'ERROR: "(foo*)" should be "(foo *)"'" + * Revert "staging: brcm80211: fix "ERROR: Macros w/ mult. statements ... + do - while loop"" + * Revert "staging: brcm80211: fix "ERROR: Macros w/ complex values ... + parenthesis"" + * Revert "staging: brcm80211: fix "ERROR: do not initialise statics to 0 + or NULL"" + * Revert "staging: brcm80211: fix "ERROR: do not initialise globals to 0 + or NULL"" + * Revert "staging: brcm80211: fix "ERROR: while should follow close brace + '}'"" + * Revert "staging: brcm80211: fix "ERROR: that open brace { ... prev + line"" + * Revert "staging: brcm80211: fix "ERROR: trailing statements should be + on next line"" + * Revert "staging: brcm80211: fix "ERROR: do not use assignment in if + condition"" + * Revert "staging: brcm80211: fix "ERROR: return is not a function, + paren..."" + * Revert "staging: brcm80211: fix "ERROR: open brace '{' following + function dec..."" + * Revert "staging: brcm80211: fix 'ERROR: "foo * bar" should be "foo + *bar"'" + * Revert "staging: brcm80211: Fix URLs for firmware files." + * Revert "staging: brcm80211: use '%pM' format to print MAC address" + * Revert "staging: brcm80211: Add contact info to TODO list." + * Revert "staging: brcm80211: Fix some initialisation failure paths" + * Export dump_{write,seek} to binary loader modules + * rebase to v2.6.36-rc8. + + -- Andy Whitcroft Tue, 19 Oct 2010 18:58:11 +0100 + +linux (2.6.36-0.4) natty; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: perf: increase stack footprint to avoid stack-protector warning + (fixes FTBS on powerpc) + + -- Andy Whitcroft Thu, 14 Oct 2010 13:16:16 +0100 + +linux (2.6.36-0.3) natty; urgency=low + + [ Andy Whitcroft ] + + * [Config] disable CONFIG_SCSI_QLA_ISCSI to fix FTBS on powerpc + + -- Andy Whitcroft Thu, 14 Oct 2010 03:01:30 +0100 + +linux (2.6.36-0.2) natty; urgency=low + + [ Andy Whitcroft ] + + * [Config] updateportsconfigs following rebase to 2.6.36-rc7 + (fix FTBS on powerpc) + + -- Andy Whitcroft Wed, 13 Oct 2010 23:25:12 +0100 + +linux (2.6.36-0.1) natty; urgency=low + + [ Andy Whitcroft ] + + * reduce disk usage during buildd builds + - LP: #645653 + * [Config] enforcer -- ensure CONFIG_INIT_PASS_ALL_PARAMS is y + * [Config] armel -- drop omap flavour + + [ Tim Gardner ] + + * Added dropped patch list + * more dropped patches + * [Config] Disable aufs, dmraid-4.5, ndis-wrapper + * [Config] Add support for cross compiling armel + * [Config] CONFIG_SCSI_QLA_ISCSI=n for armel + * [Upstream] drivers/serial/mfd.c: Fix ARM compile error + * [Config]: updateconfigs after adding brcm80211 + * staging: brcm80211: Fix Makefile syntax error + * rebased to v2.6.36-rc7 + + [ Upstream Kernel Changes ] + + * (upstream) IPS driver: don't toggle CPU turbo on unsupported CPUs + * (upstream) IPS driver: verify BIOS provided limits + * intel_ips: Print MCP limit exceeded values. + * Staging: Add initial release of brcm80211 - Broadcom 802.11n wireless + LAN driver. + * staging: brcm80211: Fix some initialisation failure paths + * staging: brcm80211: Add contact info to TODO list. + * staging: brcm80211: use '%pM' format to print MAC address + * staging: brcm80211: Fix URLs for firmware files. + * staging: brcm80211: fix 'ERROR: "foo * bar" should be "foo *bar"' + * staging: brcm80211: fix "ERROR: open brace '{' following function + dec..." + * staging: brcm80211: fix "ERROR: return is not a function, paren..." + * staging: brcm80211: fix "ERROR: do not use assignment in if condition" + * staging: brcm80211: fix "ERROR: trailing statements should be on next + line" + * staging: brcm80211: fix "ERROR: that open brace { ... prev line" + * staging: brcm80211: fix "ERROR: while should follow close brace '}'" + * staging: brcm80211: fix "ERROR: do not initialise globals to 0 or NULL" + * staging: brcm80211: fix "ERROR: do not initialise statics to 0 or NULL" + * staging: brcm80211: fix "ERROR: Macros w/ complex values ... + parenthesis" + * staging: brcm80211: fix "ERROR: Macros w/ mult. statements ... do - + while loop" + * staging: brcm80211: fix 'ERROR: "(foo*)" should be "(foo *)"' + * staging: brcm80211: fix "ERROR: need consistent spacing around '*'" + * staging: brcm80211: fix "ERROR: space prohibited after that ..." + * staging: brcm80211: fix "ERROR: space prohibited before ...close square + bracket" + * staging: brcm80211: fix "ERROR: space required after that close brace" + * staging: brcm80211: fix "ERROR: space required after that ..." + * staging: brcm80211: fix "ERROR: space required before that ..." + * staging: brcm80211: fix "ERROR: spaces prohibited around that ':' ..." + * staging: brcm80211: fix "ERROR: spaces required around that ..." + * staging: brcm80211: fix "ERROR: trailing whitespace." + * staging: brcm80211: fix remaining checkpatch errors. + * staging: brcm80211: use native ctype library + * staging: brcm80211: use string native library + * staging: brcm80211: add fullmac driver + * Staging: brcm80211: clean up makefile cflag lines + * Staging: brcm80211: remove driver specific -W options + * staging: brcm80211: Fix compile issue when BRCM80211_PCI is not set. + * staging: brcm80211: Make compiling of brcm80211.ko and brcmfmac.ko + mutually exclusive. + + -- Andy Whitcroft Tue, 12 Oct 2010 16:00:27 +0100 + +linux (2.6.35-22.33) maverick; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: Add support for Intellimouse Mode in ALPS touchpad on + Dell E2 series Laptops" + - LP: #641320 + + [ Brian Rogers ] + + * SAUCE: ir-core: Fix null dereferences in the protocols sysfs interface + - LP: #624701 + + [ Christopher James Halse Rogers ] + + * SAUCE: Nouveau: Add quirk framework to disable acceleration + - LP: #544088, #546393 + * SAUCE: Nouveau: Disable acceleration on MacBook Pros + - LP: #546393 + + [ John Johansen ] + + * Revert "SAUCE: AppArmor: allow newer tools to load policy on older + kernels" + * SAUCE: AppArmor: allow newer tools to load policy on older kernels + - LP: #639758 + + [ Mathieu J. Poirier ] + + * SAUCE: Adding vdd_sdi regulator supply to OMAP3EVM + + [ Upstream Kernel Changes ] + + * ALSA: HDA: Enable internal speaker on Dell M101z + - LP: #640254 + + -- Leann Ogasawara Fri, 17 Sep 2010 13:21:28 -0700 + +linux (2.6.35-22.32) maverick; urgency=low + + [ Arjan van de Ven ] + + * SAUCE: libata: Add ALPM power state accounting to the AHCI driver + + [ David Henningsson ] + + * SAUCE: ALSA: HDA: Enable internal mic on Dell E6410 and Dell E6510 + - LP: #605047, #628961 + + [ John Johansen ] + + * [Upstream] AppArmor: Fix splitting an fqname into separate namespace + and profile names + - LP: #615947 + * [Upstream] AppArmor: Fix locking from removal of profile namespace + - LP: #615947 + * SAUCE: AppArmor: allow newer tools to load policy on older kernels + - LP: #639758 + * SAUCE: Improve Amazon EBS performance for EC2 + - LP: #634316 + + [ Leann Ogasawara ] + + * Revert "SAUCE: i915 KMS -- blacklist i855" + * Revert "SAUCE: i915 KMS -- blacklist i845g" + * Revert "SAUCE: i915 KMS -- blacklist i830" + * Revert "SAUCE: i915 KMS -- support disabling KMS for known broken + devices" + * execute module-inclusion within a subshell + - LP: #621175 + + [ Upstream Kernel Changes ] + + * (pre-stable) bounce: call flush_dcache_page() after bounce_copy_vec() + - LP: #633227 + * (pre-stable) drm/i915: don't enable self-refresh on Ironlake + - LP: #629711 + * (pre-stable) mm: Move vma_stack_continue into mm.h + * x86, hwmon: Fix unsafe smp_processor_id() in thermal_throttle_add_dev + - LP: #601073 + * PM / Runtime: Make runtime_status attribute not debug-only (v. 2) + * PM / Runtime: Add runtime PM statistics (v3) + * compat: Make compat_alloc_user_space() incorporate the access_ok() + - CVE-2010-3081 + * x86-64, compat: Test %rax for the syscall number, not %eax + - CVE-2010-3301 + * x86-64, compat: Retruncate rax after ia32 syscall entry tracing + - CVE-2010-3301 + + -- Leann Ogasawara Tue, 14 Sep 2010 08:46:49 -0700 + +linux (2.6.35-21.31) maverick; urgency=low + + [ Andy Whitcroft ] + + * bodge linux-libc-dev package version due to ti-omap4 error + * linux-libc-dev -- ensure we can only build this on debian.master + + -- Leann Ogasawara Mon, 13 Sep 2010 09:54:31 -0700 + +linux (2.6.35-21.30) maverick; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: fbcon -- fix OOPs triggered by race prevention fixes + - LP: #614008 + + [ Daniel Lezcano ] + + * SAUCE: fix compilation warning when CONFIG_SECURITY is not set + + [ Henrik Rydberg ] + + * SAUCE: Input: wacom - add fuzz parameters to features + * SAUCE: Input: wacom - collect device quirks into single function + * SAUCE: Input: wacom - add support for the Bamboo Touch trackpad + * SAUCE: Input: wacom - add a quirk for low resolution Bamboo devices + * SAUCE: hid: ntrig: Remove unused device ids + * SAUCE: hid: ntrig: remove sysfs nodes + * SAUCE: hid: ntrig: Correct logic for quirks + * SAUCE: hid: ntrig: zero-initialize ntrig struct + * SAUCE: hid: ntrig: Setup input filtering manually + * SAUCE: hid: ntrig: New ghost-filtering event logic + + [ Leann Ogasawara ] + + * SAUCE: ndiswrapper: Initialize buffer index and check its value + - LP: #613796 + + [ Manoj Iyer ] + + * SAUCE: Add support for Intellimouse Mode in ALPS touchpad on Dell E2 + series Laptops + - LP: #632884 + + [ Ping Cheng ] + + * SAUCE: Input: wacom - parse the Bamboo device family + + [ Rafi Rubin ] + + * SAUCE: hid: ntrig: identify firmware version (wiggled) + + [ Tim Gardner ] + + * [Config] CONFIG_NL80211_TESTMODE=n + + [ Upstream Kernel Changes ] + + * Revert "input: mt: Add support for the Bamboo Touch trackpad" + * e1000e: initial support for 82579 LOMs + * e1000e: correct MAC-PHY interconnect register offset for 82579 + * (pre-stable) ALSA: hda - Add a new hp-laptop model for Conexant 5066, + tested on HP G60 + - LP: #587388 + * DSS2: Don't power off a panel twice + - LP: #588243 + * mmc: build fix: mmc_pm_notify is only available with CONFIG_PM=y + * Input: i8042 - reset keyboard controller wehen resuming from S2R + - LP: #86820 + * ALSA: hda - Fix beep frequency on IDT 92HD73xx and 92HD71Bxx codecs + - LP: #414795 + * agp/intel: Support the extended physical addressing bits on + Sandybridge. + - LP: #632488 + * drm/i915,intel_agp: Add support for Sandybridge D0 + - LP: #632488 + * (pre-stable) intel_agp,i915: Add more sandybridge graphics device ids + - LP: #632488 + * mmc: omap: fix for bus width which improves SD card's peformance. + + -- Leann Ogasawara Tue, 07 Sep 2010 09:58:52 -0700 + +linux (2.6.35-20.29) maverick; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: i915 KMS -- support disabling KMS for known broken devices + - LP: #563277 + * SAUCE: i915 KMS -- blacklist i830 + - LP: #542208, #563277 + * SAUCE: i915 KMS -- blacklist i845g + - LP: #541492, #563277 + * SAUCE: i915 KMS -- blacklist i855 + - LP: #511001, #541511, #563277 + + [ Leann Ogasawara ] + + * [Config] Enable CONFIG_SENSORS_PKGTEMP=m + - LP: #601073 + * ARM: Temporarily disable module check for armel + * rebase to v2.6.35.4 + * [Config] update configs following rebase to v2.6.35.4 + + [ Ricardo Salveti de Araujo ] + + * [Config] Change CONFIG_LEDS_TRIGGER_HEARTBEAT from module to built-in + in Omap + + [ Tim Gardner ] + + * [Config] Added be2net, be2scsi to udebs + - LP: #628776 + + [ Upstream Kernel Changes ] + + * x86, cpu: Package Level Thermal Control, Power Limit Notification + definitions + - LP: #601073 + * x86, hwmon: Package Level Thermal/Power: pkgtemp hwmon driver + - LP: #601073 + * x86, hwmon: Package Level Thermal/Power: thermal throttling handler + - LP: #601073 + * x86, hwmon: Package Level Thermal/Power: power limit + - LP: #601073 + * x86, hwmon: Package Level Thermal/Power: pkgtemp documentation + - LP: #601073 + * hid: 3m: Adjust to sequential MT HID protocol + * hid: 3m: Convert to MT slots + * hid: 3m: Correct touchscreen emulation + * hid: 3m: Adjust major / minor axes to scale + * input: bcm5974: Adjust major / minor to scale + * HID: magicmouse: don't allow hidinput to initialize the device + * HID: magicmouse: simplify multitouch feature request + * HID: magicmouse: simplify touch data bit manipulation + * HID: magicmouse: simplify touch down logic + * HID: magicmouse: remove timestamp logic + * HID: magicmouse: enable Magic Trackpad support + * HID: magicmouse: Adjust major / minor axes to scale + * mmc: fix all hangs related to mmc/sd card insert/removal during + suspend/resume + - LP: #477106 + * drm/i915: fix VGA plane disable for Ironlake+ + - LP: #602281 + + -- Leann Ogasawara Mon, 30 Aug 2010 08:38:01 -0700 + +linux (2.6.35-19.28) maverick; urgency=low + + [ Leann Ogasawara ] + + * No changes from 2.6.35-19.27. Some armel udebs were accidentally deleted + from the archive and a no-change rebuild was attempted. However, the ABI + did not get bumped and resulted in build failures for 2.6.35-19.27. Fix + up the ABI and re-upload. + + -- Leann Ogasawara Sat, 28 Aug 2010 16:42:27 -0700 + +linux (2.6.35-19.27) maverick; urgency=low + + [ Leann Ogasawara ] + + * No changes from 2.6.35-19.26. Some armel udebs were accidentally deleted + from the archive. + + -- Leann Ogasawara Fri, 27 Aug 2010 08:58:35 -0700 + +linux (2.6.35-19.26) maverick; urgency=low + + [ Upstream Kernel Changes ] + + * ARM: OMAP: Beagle: revision detection + * ARM: OMAP: Beagle: only Cx boards use pin 23 for write protect + * ARM: OMAP: Beagle: no gpio_wp pin connection on xM + + -- Leann Ogasawara Thu, 26 Aug 2010 09:15:09 -0700 + +linux (2.6.35-19.25) maverick; urgency=low + + [ Jarod Wilson ] + + * SAUCE: Bring in staging/lirc from 2.6.36 + - LP: #609234 + * SAUCE: Update ir-core to linuxtv/other which should be merged for + 2.6.36. + - LP: #609234 + * SAUCE: Fix memleaks in imon and mceusb drivers + - LP: #609234 + * SAUCE: Bring in streamzap support from linuxtv/other + - LP: #609234 + + [ Mario Limonciello ] + + * Remove ubuntu/lirc in favor of staging/lirc from 2.6.36 + - LP: #609234 + + [ Mathieu J. Poirier ] + + * SAUCE: ARM: adding i2c eeprom driver to read EDID + - LP: #608279 + + [ Upstream Kernel Changes ] + + * intel_idle: disable module support + - LP: #615265 + * (pre-stable) ALSA: hda - Ensure codec patch files are checked for the + correct codec ID + * (pre-stable) ALSA: hda - Rename iMic to Int Mic on Lenovo NB0763 + - LP: #605101 + * (pre-stable) ALSA: HDA: Use model=auto for LG R510 + - LP: #495134 + * (pre-stable) ALSA: HDA: Add Sony VAIO quirk for ALC269 + - LP: #519066 + * (pre-stable) ALSA: HDA: Fix front mic on Dell Precision M6500 + - LP: #519066 + * input: mt: Initialize slots to unused (rev2) + * input: mt: Add support for the Bamboo Touch trackpad + * hid: Add a hid quirk for input sync override + + -- Leann Ogasawara Mon, 23 Aug 2010 12:42:52 -0700 + +linux (2.6.35-18.24) maverick; urgency=low + + [ Colin Watson ] + + * Pass DEB_MAINT_PARAMS to hook scripts + + [ Leann Ogasawara ] + + * [Config] Add CONFIG_INPUT_UINPUT=y to config enforcer + - LP: #584812 + * rebase to v2.6.35.3 + + [ Upstream Kernel Changes ] + + * (pre-stable) dell-wmi: Add support for eject key on Dell Studio 1555 + - LP: #609234 + * can: add limit for nframes and clean up signed/unsigned variables + - CVE-2010-2959 + * drm: Initialize ioctl struct when no user data is present + - CVE-2010-2803 + * ARM: initial stack protector (-fstack-protector) support + * ARM: stack protector: change the canary value per task + * [ARM] implement arch_randomize_brk() + * [ARM] add address randomization to mmap() + * ARM: fix ASLR of PIE executables + + -- Leann Ogasawara Sun, 22 Aug 2010 19:22:04 -0700 + +linux (2.6.35-17.23) maverick; urgency=low + + [ Jeremy Kerr ] + + * [Config] build-in uinput module + - LP: #584812 + + [ Leann Ogasawara ] + + * Revert "[Config] [FTBS] ia64: Temporarily disable CONFIG_CEPH_FS" + * Revert "[Config] [FTBS] ia64: Temporarily disable gpiolib" + * Revert "[Config] [FTBS] sparc: Temporarily disable + CONFIG_MTD_NAND_DENALI" + * Revert "[Config] [FTBS] sparc: Temporarily disable + CONFIG_MFD_JANZ_CMODIO" + * Revert "[Config] [FTBS] sparc: Temporarily disable + CONFIG_INFINIBAND_QIB" + * [Config] Enable INTEL_IPS + - LP: #601057 + * Remove ia64 support + * [Config] Update portsconfigs after removing ia64 support + * Remove sparc support + * [Config] Update portsconfigs after removing sparc support + + [ Linus Torvalds ] + + * (pre-stable) mm: fix page table unmap for stack guard page properly + + [ Mathieu J. Poirier ] + + * SAUCE: (no-up) ARM: Resetting power_mode to its original value. + - LP: #591941 + + [ Upstream Kernel Changes ] + + * timer: add on-stack deferrable timer interfaces + - LP: #601057 + * x86 platform driver: intelligent power sharing driver + - LP: #601057 + * IPS driver: add GPU busy and turbo checking + - LP: #601057 + * X86: intel_ips, check for kzalloc properly + - LP: #601057 + * ips driver: make it less chatty + - LP: #601057 + + -- Leann Ogasawara Tue, 17 Aug 2010 09:38:08 -0700 + +linux (2.6.35-16.22) maverick; urgency=low + + [ Andy Whitcroft ] + + * debian -- more agressivly clean up after depmod on purge + - LP: #618591 + + [ Henrik Rydberg ] + + * SAUCE: hid: 3m: Simplify touchsreen emulation logic + + [ Leann Ogasawara ] + + * ubuntu: iscsitarget -- version 1.4.20.2 + * ubuntu: rtl8192se -- update to version 0017.0507.2010 + * rebase to v2.6.35.2 + * [Config] update configs following rebase to v2.6.35.2 + * [Config] update ports configs following rebase to v2.6.35.2 + + [ Luke Yelavich ] + + * [Config] Enable new firewire stack on powerpc + + [ Mathieu J. Poirier ] + + * SAUCE: (drop after 2.6.35) ARM: Using gpmc function to init nand flash. + - LP: #608266 + + -- Leann Ogasawara Thu, 12 Aug 2010 09:58:01 -0700 + +linux (2.6.35-15.21) maverick; urgency=low + + [ Luke Yelavich ] + + * [Config] CONFIG_SND_USB_UA101=m for all architectures + + [ Upstream Kernel Changes ] + + * Input: introduce MT event slots + * Input: document the MT event slot protocol + * (pre-stable) sched: Revert nohz_ratelimit() for now + * (pre-stable) drm/radeon/kms: add missing copy from user + - LP: #606081 + + [ Leann Ogasawara ] + + * rebase to v2.6.35.1 + + -- Leann Ogasawara Mon, 09 Aug 2010 09:24:04 -0700 + +linux (2.6.35-14.20) maverick; urgency=low + + [ Andy Whitcroft ] + + * update Vcs-Git to point to maverick repo + * debian -- include the debian packaging in the -source package + - LP: #608674 + * select debian source format 1.0 + * add support for building selected stages of kernel + - LP: #603087 + * cleanup conditional dependancy handling + - LP: #603087 + + [ Upstream Kernel Changes ] + + * ALSA: hda - Handle missing NID 0x1b on ALC259 codec + - LP: #582199, #586418, #588031 + * ALSA: hda - Handle pin NID 0x1a on ALC259/269 + - LP: #582199, #586418, #588031 + * sched: Revert nohz_ratelimit() for now + + -- Leann Ogasawara Tue, 03 Aug 2010 08:46:47 -0700 + +linux (2.6.35-14.19) maverick; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.35 + + -- Leann Ogasawara Sun, 01 Aug 2010 10:35:56 -0700 + +linux (2.6.35-13.18) maverick; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: (no-up) Modularize vesafb -- fix initialisation + * SAUCE: add tracing for user initiated readahead requests + * SAUCE: vt -- maintain bootloader screen mode and content until vt + switch + * SAUCE: vt -- allow grub to request automatic vt_handoff + * SAUCE: fbcon -- fix race between open and removal of framebuffers + * SAUCE: drm -- stop early access to drm devices + + [ Bryan Wu ] + + * CONFIG: compile in OTG driver and Transceiver driver + - LP: #566645 + * remove OTG modules from modules list file + + [ John Johansen ] + + * SAUCE: AppArmor: -- sync to AppArmor mainline 2010-07-27 + - LP: #581525, #599450 + * SAUCE: AppArmor: -- sync to AppArmor mainline 2010-07-29 + * SAUCE: AppArmor 2.4 compatibility patch + * SAUCE: AppArmor: Allow dfa backward compatibility with broken userspace + * SAUCE: fix pv-ops for legacy Xen + * SAUCE: blkfront: default to sd devices + * [Config] Build in drivers required for Xen pv-ops + + [ Leann Ogasawara ] + + * Revert "[Upstream] i915: Use the correct mask to detect i830 aperture + size." + + [ Lee Jones ] + + * SAUCE: ARM: OMAP: Add macros for comparing silicon revision + - LP: #608095 + * SAUCE: OMAP: DSS2: check for both cpu type and revision, rather than + just revision + - LP: #608095 + * SAUCE: OMAP: DSS2: enable hsclk in dsi_pll_init for OMAP36XX + - LP: #608095 + * SAUCE: ARM: OMAP: Beagle: support twl gpio differences on xM + - LP: #608095 + + [ Upstream Kernel Changes ] + + * agp/intel: Use the correct mask to detect i830 aperture size. + - LP: #597075 + + -- Leann Ogasawara Fri, 30 Jul 2010 15:46:59 -0700 + +linux (2.6.35-12.17) maverick; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.35-rc6 + * [Config] update configs following rebase to v2.6.35-rc6 + * [Config] update ports configs following rebase to v2.6.35-rc6 + * SAUCE: [FTBS] armel: define KEY_F10 and KEYF11 + + [ Leann Ogasawara ] + + * rebase to v2.6.35-rc6 + + -- Leann Ogasawara Fri, 23 Jul 2010 16:16:38 +0200 + +linux (2.6.35-11.16) maverick; urgency=low + + [ Leann Ogasawara ] + + * Bump ABI for new compiler update + + -- Leann Ogasawara Fri, 23 Jul 2010 10:24:58 +0200 + +linux (2.6.35-10.15) maverick; urgency=low + + [ Leann Ogasawara ] + + * Revert "SAUCE: ensure vga16fb loads if no other driver claims the VGA + device" + * [Config] Enable CONFIG_M686=y + - LP: #592495 + + [ Upstream Kernel Changes ] + + * tracing: Add alignment to syscall metadata declarations + + -- Leann Ogasawara Tue, 20 Jul 2010 18:18:49 +0200 + +linux (2.6.35-9.14) maverick; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: AUFS -- add BOM and automated update script + * ubuntu: AUFS -- update to b37c575759dc4535ccc03241c584ad5fe69e3b25 + + [ John Johansen ] + + * [Config] Enable DRBD as a module + + [ Kees Cook ] + + * SAUCE: Yama: verify inode is symlink to avoid bind mounts + - LP: #604407 + + [ Leann Ogasawara ] + + * [Config] Disable CONFIG_DRM_VMWGFX (staging driver) + - LP: #606139 + * [Config] ports: Disable CONFIG_DRM_VMWGFX (staging driver) + - LP: #606139 + * [Config] Enable CONFIG_DEBUG_STRICT_USER_COPY_CHECKS=y + * [Config] ports: Enable CONFIG_DEBUG_STRICT_USER_COPY_CHECKS=y + + [ Lee Jones ] + + * Stop ARM boards crashing when CUPS is loaded + - LP: #601226 + + [ Upstream Kernel Changes ] + + * perf probe: Support tracing an entry of array + * perf probe: Support static and global variables + + -- Leann Ogasawara Fri, 16 Jul 2010 14:38:17 -0700 + +linux (2.6.35-8.13) maverick; urgency=low + + [ Kees Cook ] + + * SAUCE: Yama: check PTRACE using thread group leader + * SAUCE: Yama: search for PTRACE exceptions via thread group leader + - LP: #603716 + + [ Leann Ogasawara ] + + * rebase to v2.6.35-rc5 + * [Config] update configs following rebase to v2.6.35-rc5 + + [ Nicolas Pitre ] + + * SAUCE: make ndiswrapper available on X86 only + + [ Tim Gardner ] + + * [Config] Added ums-cypress to udeb + - LP: #576066 + * SAUCE: fix build error with CONFIG_BLK_DEV_INITRD=n + * [Config] CONFIG_NDISWRAPPER=m across all configs + + [ Upstream Kernel Changes ] + + * HID: magicmouse: report last touch up + * rebase to 2.6.35-rc5 + + -- Leann Ogasawara Tue, 13 Jul 2010 18:57:59 -0700 + +linux (2.6.35-7.12) maverick; urgency=low + + [ Tim Gardner ] + + * [Upstream] i915: Use the correct mask to detect i830 aperture size. + - LP: #597075 + + [ Upstream Kernel Changes ] + + * (drop after 2.6.35) drm/radeon/kms: add ioport register access + (squashed) + + -- Tim Gardner Thu, 08 Jul 2010 09:53:13 -0600 + +linux (2.6.35-7.11) maverick; urgency=low + + [ Tim Gardner ] + + * [Config] CONFIG_X86_MRST=n + + [ Upstream Kernel Changes ] + + * (drop after 2.6.35-rc5) writeback: remove writeback_inodes_wbc + * (drop after 2.6.35-rc5) writeback: split writeback_inodes_wb + * (drop after 2.6.35-rc5) writeback: simplify the write back thread queue + + -- Tim Gardner Tue, 06 Jul 2010 18:39:08 -0600 + +linux (2.6.35-7.10) maverick; urgency=low + + [ Kees Cook ] + + * SAUCE: security: create task_free security callback + * SAUCE: Yama: add PTRACE exception tracking and interface + * SAUCE: security: unconditionally chain to Yama LSM + * Revert "SAUCE: ptrace: restrict ptrace scope to children" + * Revert "SAUCE: fs: block hardlinks to non-accessible sources" + * Revert "SAUCE: fs: block cross-uid sticky symlinks" + * [Upstream] security: Yama LSM + * [Config] Enable CONFIG_SECURITY_YAMA=y + + [ Tim Gardner ] + + * [Config] updateconfigs/updateportsconfigs after rebase to 2.6.35-rc4 + + [ Upstream Kernel Changes ] + + * rebase to 2.6.35-rc4 + + -- Leann Ogasawara Thu, 01 Jul 2010 08:55:57 -0700 + +linux (2.6.35-6.9) maverick; urgency=low + + [ Tim Gardner ] + + * [Upstream] direct_splice_actor() should not use pos in sd + - LP: #588861 + + -- Leann Ogasawara Mon, 28 Jun 2010 12:35:49 -0700 + +linux (2.6.35-6.8) maverick; urgency=low + + [ Mathieu J. Poirier ] + + * ARM: Adding regulator supply for vdds_sdi. + - LP: #597904 + + -- Leann Ogasawara Sun, 27 Jun 2010 16:34:43 -0700 + +linux (2.6.35-6.7) maverick; urgency=low + + [ Alberto Milone ] + + * [Upstream] Add support for the ATIF ACPI method to the radeon driver + + [ Chase Douglas ] + + * [Upstream] HID: magicmouse: scroll on entire surface, not just middle + of mouse + * [Upstream] HID: magicmouse: disable and add module param for scroll + acceleration + * [Upstream] HID: magicmouse: properly account for scroll movement in + state + * [Upstream] HID: magicmouse: add param for scroll speed + * [Upstream] HID: magicmouse: enable horizontal scrolling + + [ Henrik Rydberg ] + + * [Upstream] Input: evdev - convert to dynamic event buffer + * [Upstream] Input: evdev - use driver hint to compute size of event + buffer + * [Upstream] Input: bcm5974 - set the average number of events per MT + event packet + * [Upstream] Input: hid-input - use a larger event buffer for MT devices + * [Upstream] Input: evdev - never leave the client buffer empty after + write + + [ John Johansen ] + + * SAUCE: AppArmor: -- mainline 2010-06-23 + * SAUCE: AppArmor 2.4 compatibility patch + * SAUCE: fs: block hardlinks to non-accessible sources AppArmor portion + + [ Leann Ogasawara ] + + * [Config] Enable CONFIG_INTR_REMAP=y + - LP: #597091 + * [Config] Enable CONFIG_X86_X2APIC + - LP: #597091 + + [ Mathieu J. Poirier ] + + * [Config] ARM: Turning off CONFIG_CPU_IDLE on omap + - LP: #594382 + + -- Leann Ogasawara Thu, 24 Jun 2010 12:19:48 -0700 + +linux (2.6.35-5.6) maverick; urgency=low + + [ Amit Kucheria ] + + * [Config] update omap flavour description + + [ Andy Whitcroft ] + + * update to ubuntu-debian:508b7aa34b578c0d1e51bfb571f2bfb824dc65ac + - LP: #570500, #576274 + * SAUCE: add option to hand off all kernel parameters to init + - LP: #586386 + * [Config] enable passing all kernel command line to init + - LP: #586386 + * [Config] disable CONFIG_VMI + - LP: #537601 + * [Config] enable CONFIG_IPV6_SIT_6RD + - LP: #591869 + * [Config] enable CONFIG_VMWARE_BALOON as module + - LP: #592039 + + [ Leann Ogasawara ] + + * Revert "SAUCE: pm: Config option to disable handling of console during + suspend/resume" + - LP: #594885 + * [Config] Remove CONFIG_PM_DISABLE_CONSOLE + * [Config] ports: enable passing all kernel command line to init + - LP: #586386 + * [Config] Enable CONFIG_FB_VESA=y for x86 + * [Config] Add CONFIG_FRAMEBUFFER_CONSOLE=y to config enforcer + * [Config] Add CONFIG_FB_VESA=y for x86 to config enforcer + * [Config] Enable CONFIG_TASK_DELAY_ACCT=y + - LP: #493156 + + [ Mathieu Poirier ] + + * ARM: Adding MosChip MCS7830 to nic-usb + - LP: #584920 + + [ Upstream Kernel Changes ] + + * Revert "[Upstream] docbook: need xmldoclinks for all doc types" + * docbook: need xmldoclinks for all doc types + * perf probe: Add kernel source path option + + -- Leann Ogasawara Thu, 17 Jun 2010 08:05:29 -0700 + +linux (2.6.35-4.5) maverick; urgency=low + + [ Leann Ogasawara ] + + * Revert "[Upstream] (evdev) Use driver hint to compute the evdev buffer + size (rev2)" + * Revert "[Upstream] (evdev) Convert to dynamic event buffer (rev4)" + * Revert "[Upstream] (evdev) Use multi-reader buffer to save space + (rev4)" + * Revert "SAUCE: drivers: Remove some duplicate device entries in various + modules" + * [Upstream] USB: option: Remove duplicate AMOI_VENDOR_ID + * [Upstream] Revert "USB: Adding support for HTC Smartphones to ipaq" + * [Upstream] p54usb: Comment out duplicate Medion MD40900 device id + + [ Tim Gardner ] + + * [Config] CONFIG_NFS_FSCACHE=y + - LP: #440522 + * [Config] CONFIG_FSCACHE_STATS=y, CONFIG_FSCACHE_HISTOGRAM=y + - LP: #440522 + + -- Leann Ogasawara Wed, 16 Jun 2010 08:43:07 -0700 + +linux (2.6.35-3.4) maverick; urgency=low + + [ Andy Whitcroft ] + + * debian -- ensure the version number is clean + + [ Henrik Rydberg ] + + * [Upstream] Introduce MT event slots (rev 5) + * [Upstream] Document the MT event slot protocol (rev5) + * [Upstream] (evdev) Use multi-reader buffer to save space (rev4) + * [Upstream] (evdev) Convert to dynamic event buffer (rev4) + * [Upstream] (evdev) Use driver hint to compute the evdev buffer size + (rev2) + + [ Leann Ogasawara ] + + * Revert "SAUCE: Add MODULE_ALIAS for Dell WMI module" + * Revert "SAUCE: hostap: send events on data interface as well as master + interface" + * Revert "Fix webcam having USB ID 0ac8:303b" + * Revert "SAUCE: toshiba_acpi -- pull in current -dev version of driver" + * rebase to v2.6.35-rc3 + + [ Maxim Levitsky ] + + * [Config] Enable new Smartmedia/xD translation layer + - LP: #202490 + + [ Upstream Kernel Changes ] + + * net: fix deliver_no_wcard regression on loopback device + + [ Upstream changes ] + + * rebased to v2.6.35-rc3 + + -- Leann Ogasawara Thu, 10 Jun 2010 16:15:22 -0700 + +linux (2.6.35-2.3) maverick; urgency=low + + [ Bryan Wu ] + + * CONFIG: enforce -- make sure we disable CONFIG_LOCALVERSION_AUTO + + [ Leann Ogasawara ] + + * [Config] armel: Enable CONFIG_BNX2=m + * [Config] ports: Enable CONFIG_BNX2X=m + * SAUCE: armel: define get_dma_ops to fix FTBS + + [ Tim Gardner ] + + * [Upstream] net: Print num_rx_queues imbalance warning only when there + are allocated queues + - LP: #591416 + + -- Leann Ogasawara Wed, 09 Jun 2010 08:27:41 -0700 + +linux (2.6.35-2.2) maverick; urgency=low + + [ Andy Whitcroft ] + + * [Config] d-i: make armel configuration versatile flavour specific + - LP: #588805 + * [Config] d-i: enable .udebs for omap flavour + - LP: #588805 + + [ Kees Cook ] + + * ptrace: limit scope to attach only (allow read) + - LP: #589656 + + [ Leann Ogasawara ] + + * rebase to v2.6.35-rc2 + * [Config] update configs following rebase to v2.6.35-rc2 + * [Config] update port configs following rebase to v2.6.35-rc2 + + [ Lee Jones ] + + * Enable perf to be more helpful when perf_ does not exist. + - LP: #570500 + * 'fdr editconfig' modification. Easily skip over unwanted menuconfigs. + + [ Tim Gardner ] + + * [Config] Update bnx2 udeb firmware files + - LP: #589304 + + [ Upstream changes ] + + * rebased to v2.6.35-rc2 + + -- Leann Ogasawara Mon, 07 Jun 2010 09:45:04 -0700 + +linux (2.6.35-1.1) maverick; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: AUFS -- update to standalone 2.6.35-rcN as at 20100601 + - LP: #587888 + * ubuntu: AUFS -- track changes to the arguements to fop fsync() + + [ Leann Ogasawara ] + + * rebase to v2.6.35-rc1 + * [Config] update configs following rebase to v2.6.35-rc1 + * [Config] update port configs following rebase to v2.6.35-rc1 + * SAUCE: lirc: rename usb_buffer_alloc() and usb_buffer_free() + * SAUCE: ndiswrapper: rename usb_buffer_alloc() and usb_buffer_free() + * SAUCE: ndiswrapper: convert multicast list to list_head + * [Config] [FTBS] armel: Temporarily disable CONFIG_GPIO_JANZ_TTL + * [Config] [FTBS] ia64: Temporarily disable gpiolib + * [Config] [FTBS] ia64: Temporarily disable CONFIG_CEPH_FS + * [Config] [FTBS] sparc: Temporarily disable CONFIG_INFINIBAND_QIB + * [Config] [FTBS] sparc: Temporarily disable CONFIG_MFD_JANZ_CMODIO + * [Config] [FTBS] armel: Temporarily disable CONFIG_MFD_JANZ_CMODIO + * [Config] [FTBS] armel: Temporarily disable CONFIG_DT3155 + * [Config] [FTBS] sparc: Temporarily disable CONFIG_MTD_NAND_DENALI + * [Config] [FTBS] armel: Temporarily disable bnx2 + * [Config] [FTBS] armel: Temporarily disable CONFIG_SERIAL_UARTLITE + * SAUCE: [FTBS] armel: Don't include asm/agp.h for ttm + * SAUCE: [FTBS] armel: include linux/dma-mapping.h + * SAUCE: [FTBS] armel: replace omap_set_gpio_debounce with + gpio_set_debounce + + [ Upstream Kernel Changes ] + + * of/usb: fix build error due to of_node pointer move + * n2_crypto: Fix build after of_device/of_platform_driver changes. + * powerpc/fsl-booke: fix the case where we are not in the first page + * powerpc/fsl-booke: Move the entry setup code into a seperate file + * powerpc/kexec: Add support for FSL-BookE + * greth: Fix build after OF device conversions. + + [ Upstream changes ] + + * rebased to v2.6.35-rc1 + + -- Leann Ogasawara Fri, 04 Jun 2010 23:01:52 -0700 + +linux (2.6.35-1.0) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * Null entry. + + -- Leann Ogasawara Wed, 02 Jun 2010 15:17:41 -0700 + +linux (2.6.34-5.14) maverick; urgency=low + + [ Tim Gardner ] + + * [Config] Added module inclusion support + * [Config] Added virtual flavour module inclusion list and d-i package + definitions + + -- Leann Ogasawara Wed, 02 Jun 2010 12:58:14 -0700 + +linux (2.6.34-5.13) maverick; urgency=low + + [ Andy Whitcroft ] + + * Revert "ubuntu: AUFS -- aufs2 20091209" + * Revert "ubuntu: AUFS -- export various core functions + (aufs2-standalone.patch)" + * Revert "ubuntu: AUFS -- export various core functions + (aufs2-base.patch)" + * ubuntu: AUFS -- aufs2 base patch for linux-2.6.34 + - LP: #587888 + * ubuntu: AUFS -- aufs2 standalone patch for linux-2.6.34 + - LP: #587888 + * ubuntu: AUFS -- update to standalone 2.6.34 as at 20100601 + - LP: #587888 + * [Config] AUFS -- enable aufs options + - LP: #587888 + + -- Leann Ogasawara Tue, 01 Jun 2010 08:56:43 -0700 + +linux (2.6.34-5.12) maverick; urgency=low + + [ Andy Whitcroft ] + + * enforce -- ensure SYSFS compatibility is disabled + + [ Chase Douglas ] + + * build with libdw-dev for perf probe symbol support + * maverick ftrace configuration changes + + [ Kees Cook ] + + * Revert "SAUCE: x86: brk away from exec rand area" + * Revert "SAUCE: [um] Don't use nx_enabled under UML" + * Revert "SAUCE: [x86] implement cs-limit nx-emulation for ia32" + * SAUCE: x86: implement cs-limit nx-emulation for ia32 + - LP: #369978 + * SAUCE: x86: more tightly confine cs-limit nx-emulation to ia32 only + * SAUCE: x86: brk away from exec rand area + - LP: #452175 + * SAUCE: ptrace: restrict ptrace scope to children + + [ Leann Ogasawara ] + + * Add new omap flavour to getabis + * [Config] Enable CONFIG_FRAMEBUFFER_CONSOLE=y for all archs + - LP: #585490 + * build/modules: Temorarily add ignore.modules + * ubuntu: iscsitarget -- version 1.4.20.1 + + [ Loïc Minier ] + + * SAUCE: [um] Don't use nx_enabled under UML + - LP: #524849 + + -- Leann Ogasawara Fri, 28 May 2010 08:27:17 -0700 + +linux (2.6.34-4.11) maverick; urgency=low + + [ Amit Kucheria ] + + * SAUCE: omap: remove calls to usb_nop_xceiv_register from board files + * [Config] Add support for OMAP-mainline flavour + + [ Andy Whitcroft ] + + * SAUCE: powerpc: fix compile error when ptrace.h is included from + userspace + - LP: #583733 + + [ Chase Douglas ] + + * Revert "SAUCE: Don't register vga16fb framebuffer if other framebuffers + are present" + * Revert "SAUCE: Disable function tracing after hitting __schedule_bug" + * Revert "SAUCE: drm/i915: don't change DRM configuration when releasing + load detect pipe" + + [ Kees Cook ] + + * SAUCE: fs: block cross-uid sticky symlinks + * SAUCE: fs: block hardlinks to non-accessible sources + + [ Koen Kooi ] + + * SAUCE: board-omap3-beagle: add DSS2 support + + [ Leann Ogasawara ] + + * Revert "staging/go7007 -- disable" + * Revert "[Config] staging/winbond -- disable" + * Revert "Disable 4MB page tables for Atom, work around errata AAE44" + * Revert "SAUCE: sync before umount to reduce time taken by ext4 umount" + * Revert "SAUCE: Enable an e1000e Intel Corporation 82567 Gigabit + controller" + * Revert "SAUCE: Fix MODULE_IMPORT/MODULE_EXPORT" + * Revert "SAUCE: Created MODULE_EXPORT/MODULE_IMPORT macros" + * Revert "SAUCE: input/mouse/alps: Do not call psmouse_reset() for alps" + * Revert "SAUCE: r8169: disable TSO by default for RTL8111/8168B + chipsets." + * Revert "[Upstream] b43: Declare all possible firmware files." + * Revert "add Breaks: against hardy lvm2" + * Revert "SAUCE: Guest OS does not recognize a lun with non zero target + id on Vmware ESX Server" + * Revert "SAUCE: Catch nonsense keycodes and silently ignore" + * [Config] Enable CONFIG_ECRYPT_FS=y for ports + * [Config] Enable CONFIG_USB=y for armel and sparc + * [Config] Enable CONFIG_SCSI=y for ia64 and sparc + * [Config] Enable CONFIG_RFKILL=y for ports + * [Config] Enable CONFIG_ATH9K_DEBUGFS=y + * [Config] Enable CONFIG_IWMC3200TOP_DEBUGFS=y + * [Config] Enable CONFIG_RCU_FAST_NO_HZ=y + * [Config] Enable CONFIG_IWLWIFI_DEVICE_TRACING=y + * [Config] Enable CONFIG_LIBERTAS_MESH=y + * [Config] Enable CONFIG_MMC_RICOH_MMC=y + * [Config] CONFIG_RT2800USB_UNKNOWN=y + * [Config] Enable CONFIG_VGA_SWITCHEROO=y + * [Config] Enable CONFIG_CEPH_FS=m + * [Config] Enable CONFIG_CRYPTO_PCRYPT=m + * [Config] Enable CONFIG_EEEPC_WMI=m + * [Config] Enable CONFIG_RT2800PCI=m + * [Config] Enable CONFIG_SCSI_HPSA=m + * [Config] Enable CONFIG_VHOST_NET=m + * [Config] Disable CONFIG_SND_HDA_INPUT_BEEP_MODE by default + - LP: #582350 + * [Config] Disable CONFIG_SOUND_OSS* and CONFIG_SND_*OSS + - LP: #579300 + * [Config] Enable CONFIG_PCIEASPM=y + - LP: #333990 + * [Config] updateconfigs for OMAP flavour + + [ Loïc Minier ] + + * Enable perf tools on armel + + [ Tim Gardner ] + + * SAUCE: Updated ndiswrapper to 1.56 + - LP: #582555 + * [Config] Added virtual flavour + * [Config] Remove support for sub-flavours + * [Config] Removed amd64 preempt flavour + * [Config] updateconfigs, updateportsconfigs after flavour munging + + -- Leann Ogasawara Tue, 25 May 2010 09:34:55 -0700 + +linux (2.6.34-3.10) maverick; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.34 + + [ Upstream changes ] + + * rebased to v2.6.34 + + -- Leann Ogasawara Tue, 18 May 2010 17:35:35 -0700 + +linux (2.6.34-2.9) maverick; urgency=low + + [ Leann Ogasawara ] + + * [Config] [FTBS] Disable comedi for armel + + -- Leann Ogasawara Thu, 13 May 2010 23:20:55 +0200 + +linux (2.6.34-2.8) maverick; urgency=low + + [ Leann Ogasawara ] + + * Drop lpia + * [Config] [FTBS] disable KVM + * [Config] [FTBS] disable ipr for armel + + -- Leann Ogasawara Thu, 13 May 2010 16:07:52 +0200 + +linux (2.6.34-2.7) maverick; urgency=low + + [ Leann Ogasawara ] + + * [Config] disable CONFIG_SCSI_IPR on powerpc + * [Config] Remove 386 flavour per UDS discussion + + -- Leann Ogasawara Wed, 12 May 2010 18:26:43 +0200 + +linux (2.6.34-1.6) maverick; urgency=low + + [ Chase Douglas ] + + * enforce CONFIG_TMPFS_POSIX_ACL=y + - LP: #575940 + * don't force module dependency checking + - LP: #577029 + + [ Kees Cook ] + + * SAUCE: mmap_min_addr check CAP_SYS_RAWIO only for write + - LP: #568844 + + [ Leann Ogasawara ] + + * Revert "SAUCE: ata: blacklist FUJITSU MHW2160BH PL" + * rebase to v2.6.34-rc7 + * [Config] update configs following rebase to v2.6.34-rc7 + * [Config] update port configs following rebase to v2.6.34-rc7 + * Add btrfs to the udebs + + [ Tim Gardner ] + + * [Config] Add atl1c to nic-modules udeb + - LP: #557130 + + [ Upstream changes ] + + * rebased to v2.6.34-rc7 + + -- Leann Ogasawara Tue, 11 May 2010 11:29:08 +0200 + +linux (2.6.34-1.5) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.34-rc6 + * [Config] update configs following rebase to v2.6.34-rc6 + * [Config] update port configs following rebase to v2.6.34-rc6 + + [ Upstream changes ] + + * rebased to v2.6.34-rc6 + + -- Leann Ogasawara Fri, 30 Apr 2010 15:54:05 +0100 + +linux (2.6.34-1.4) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.34-rc5 + * [Config] update ports configs following rebase to v2.6.34-rc5 + + [ Upstream changes ] + + * rebased to v2.6.34-rc5 + + -- Leann Ogasawara Thu, 22 Apr 2010 15:36:12 -0700 + +linux (2.6.34-1.3) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.34-rc4 + * [Config] update configs following rebase to v2.6.34-rc4 + * [Config] update port configs following rebase to v2.6.34-rc4 + * ubuntu: dm-raid4-5 -- update to compile with 2.6.34-rc4 + + [ Upstream changes ] + + * rebased to v2.6.34-rc4 + + -- Leann Ogasawara Tue, 13 Apr 2010 18:33:44 -0700 + +linux (2.6.34-1.2) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * Temorarily disable building linux-doc + * rebase to v2.6.34-rc3 + * [Config] update configs following rebase to v2.6.34-rc3 + * [Config] update port configs following rebase to v2.6.34-rc3 + + [ Upstream changes ] + + * rebased to v2.6.34-rc3 + + -- Leann Ogasawara Tue, 30 Mar 2010 16:55:44 -0700 + +linux (2.6.34-1.1) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.34-rc2 + * ubuntu: dm-raid4-5 -- update to compile with 2.6.34-rc2 + * [Config] update port configs following rebase to v2.6.34-rc2 + * [Config] update configs following rebase to v2.6.34-rc2 + + [ Upstream changes ] + + * rebased to v2.6.34-rc2 + + -- Leann Ogasawara Wed, 24 Mar 2010 23:00:39 -0700 + +linux (2.6.33-1.1) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * ubuntu: dm-raid4-5 -- update to compile with 2.6.33 + * ubuntu: lirc -- drop explicit include of linux/autoconf.h + * ubuntu: lirc -- pass kfifo to kfifo_alloc and move spinlock + * ubuntu: lirc -- rename kfifo_put and kfifo_get + * ubuntu: iscsitarget -- rename daddr inet_sock field + * rebased to v2.6.33 + * [Config] update configs following rebase to v2.6.33 + * [Config] update ports configs following rebase to v2.6.33 + + [ Upstream changes ] + + * rebased to v2.6.33 + + -- Leann Ogasawara Tue, 23 Mar 2010 03:55:46 -0700 + +linux (2.6.33-0.0) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * Null entry. + + -- Leann Ogasawara Wed, 17 Mar 2010 07:48:56 -0700 + +linux (2.6.32-16.25) lucid; urgency=low + + [ Andy Whitcroft ] + + * linux-tools -- move to Suggests: with explicit seeding + - LP: #534635 + + [ Tim Gardner ] + + * [Config] CONFIG_HID=m + + [ Upstream Kernel Changes ] + + * (pre-stable) sched: Fix SMT scheduler regression in + find_busiest_queue() + * KVM: introduce kvm_vcpu_on_spin + * KVM: VMX: Add support for Pause-Loop Exiting + + -- Andy Whitcroft Tue, 09 Mar 2010 14:13:51 +0000 + +linux (2.6.32-16.24) lucid; urgency=low + + [ Andy Whitcroft ] + + * armel -- perf userspace does not support arm + * ia64 -- libelf-dev/binutils-dev to not provide necessary libraries + + -- Andy Whitcroft Sat, 06 Mar 2010 11:42:12 +0000 + +linux (2.6.32-16.23) lucid; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: PM report driver and device suspend/resume times -- move config + * update to standards version 3.8.4.0 + * printenv -- expose all of the package selectors + * source package -- cleanup source content control + * doc package -- ensure we do build package content on buildd + * lintian -- correct the address in the debian/copyright + * lintian -- update debhelper package version dependancy + * lintian -- fix ghostscript dependancy + * lintian -- add required misc:Depends + * lintian -- move our debhelper compat level to debian/compat + * perf -- build the kernel carried tools + * perf -- add linux-tools carrying the version switches and manuals + * SAUCE: fix up Kconfig for staging drivers + * [Config] enable NOUVEAU etc following drm backport + * update DRM to mainline v2.6.33 + * [Config] Remove AppArmor config options that no longer exist (ports) + * [Config] updateportsconfigs following drm update + + [ John Johansen ] + + * ubuntu: AppArmor -- update to mainline 2010-03-04 + * SAUCE: AppArmor: Reintroduce AppArmor 2.4 compatibility + * SAUCE: AppArmor: replace strim with strstrip for 2.6.32 kernels + * [Config] Remove AppArmor config options that no longer exist + + [ Manoj Iyer ] + + * ubuntu: rtl8192se -- version 2010-0115,0014 + - LP: #530275 + * [Config] added CONFIG_RTL8192SE module. + - LP: #530275 + + [ Tim Gardner ] + + * [Config] Added vmw_pvscsi to d-i/scsi-modules + - LP: #531017 + * [Upstream] netfilter: xt_recent: Add an entry reaper + + [ Upstream Kernel Changes ] + + * Revert "KVM: x86 emulator: Check CPL level during privilege instruction + emulation" + * Revert "KVM: x86 emulator: Fix popf emulation" + * Revert "KVM: x86 emulator: Check IOPL level during io instruction + emulation" + * Revert "KVM: x86 emulator: Add Virtual-8086 mode of emulation" + * Revert "KVM: fix memory access during x86 emulation." + * Add vlan (8021.Q) module package for d-i. + * (pre-stable) drm/i915: blacklist lid status: Sony VGN-BX196VP, Dell + Inspiron 700m + - LP: #515246 + * [Upstream] docbook: need xmldoclinks for all doc types + * x86: set_personality_ia32() misses force_personality32 + * lib: Introduce generic list_sort function + * drm/nv50: Implement ctxprog/state generation. + * drm/nv50: Remove redundant/incorrect ctxvals initialisation. + * (pre-stable) drm/i915: blacklist lid status: Sony VGN-BX196VP, Dell + Inspiron 700m + - LP: #515246 + + -- Andy Whitcroft Fri, 05 Mar 2010 15:40:38 +0000 + +linux (2.6.32-15.22) lucid; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Config] added new config option CONFIG_SR_REPORT_TIME_LIMIT" + * Revert "SAUCE: PM report driver and device suspend/resume times." + * [Config] set CONFIG_SR_REPORT_TIME_LIMIT + + [ Manoj Iyer ] + + * SAUCE: PM report driver and device suspend/resume times. + + -- Andy Whitcroft Tue, 02 Mar 2010 01:35:37 +0000 + +linux (2.6.32-15.21) lucid; urgency=low + + [ Andy Whitcroft ] + + * Revert "(pre-stable) drm/i915: Increase fb alignment to 64k" + * Revert "[Config] lenovo-sl-laptop -- enable" + * Revert "ubuntu: lenovo-sl-laptop -- git tip (b19a08f81f)" + * armel -- cramfs module will no longer be built + * d-i -- make all modules optional + * rename the debug packages to match archive standard + - LP: #527837 + * lenovo-sl-laptop is no longer built + + [ Colin Ian King ] + + * Disable 4MB page tables for Atom, work around errata AAE44 + - LP: #523112 + + [ Colin Watson ] + + * ubuntu: dm-raid4-5: Depend on XOR_BLOCKS + * ubuntu: fsam7400: Depend on CHECK_SIGNATURE + + [ Jesse Barnes ] + + * SAUCE: drm/i915: don't change DRM configuration when releasing load + detect pipe + - LP: #488328 + + [ Loïc Minier ] + + * [Config] armel Update versatile initrd configs + - LP: #524893 + * SAUCE: [um] Don't use nx_enabled under UML + - LP: #524849 + + [ Manoj Iyer ] + + * [Config] added new config option CONFIG_SR_REPORT_TIME_LIMIT + + [ Mario Limonciello ] + + * SAUCE: v3 - Add Dell Business Class Netbook LED driver + + [ Rafael J. Wysocki ] + + * SAUCE: PM report driver and device suspend/resume times. + + [ Surbhi Palande ] + + * Revert "[Upstream] e1000e: enhance frame fragment detection" + - CVE-2009-4538 + * Revert "[Upstream] e1000: enhance frame fragment detection" + - CVE-2009-4536 + + [ Tim Gardner ] + + * [Config] Enabled CONFIG_LEDS_DELL_NETBOOKS=m + * SAUCE: (pre-stable) netfilter: xt_recent: fix buffer overflow + * SAUCE: (pre-stable) netfilter: xt_recent: fix false match + + [ Upstream Kernel Changes ] + + * Revert "(pre-stable) eCryptfs: Add getattr function" + * Fix potential crash with sys_move_pages + * futex_lock_pi() key refcnt fix + * futex: Handle user space corruption gracefully + * futex: Handle futex value corruption gracefully + * Fix race in tty_fasync() properly + * hwmon: (w83781d) Request I/O ports individually for probing + * hwmon: (lm78) Request I/O ports individually for probing + * hwmon: (adt7462) Wrong ADT7462_VOLT_COUNT + * ALSA: ctxfi - fix PTP address initialization + * drm/i915: disable hotplug detect before Ironlake CRT detect + * drm/i915: enable self-refresh on 965 + * drm/i915: Disable SR when more than one pipe is enabled + * drm/i915: Fix DDC on some systems by clearing BIOS GMBUS setup. + * drm/i915: Add HP nx9020/SamsungSX20S to ACPI LID quirk list + * drm/i915: Fix the incorrect DMI string for Samsung SX20S laptop + * drm/i915: Add MALATA PC-81005 to ACPI LID quirk list + * usb: r8a66597-hcd: Flush the D-cache for the pipe-in transfer buffers. + * i2c-tiny-usb: Fix on big-endian systems + * drm/i915: handle FBC and self-refresh better + * drm/i915: Increase fb alignment to 64k + * drm/i915: Update write_domains on active list after flush. + * regulator: Fix display of null constraints for regulators + * ALSA: hda-intel: Avoid divide by zero crash + * CPUFREQ: Fix use after free of struct powernow_k8_data + * freeze_bdev: don't deactivate successfully frozen MS_RDONLY sb + * cciss: Make cciss_seq_show handle holes in the h->drv[] array + * ioat: fix infinite timeout checking in ioat2_quiesce + * resource: add helpers for fetching rlimits + * fs/exec.c: restrict initial stack space expansion to rlimit + * cifs: fix length calculation for converted unicode readdir names + * NFS: Fix a reference leak in nfs_wb_cancel_page() + * NFS: Try to commit unstable writes in nfs_release_page() + * NFSv4: Don't allow posix locking against servers that don't support it + * NFSv4: Ensure that the NFSv4 locking can recover from stateid errors + * NFS: Fix an Oops when truncating a file + * NFS: Fix a umount race + * NFS: Fix a bug in nfs_fscache_release_page() + * NFS: Fix the mapping of the NFSERR_SERVERFAULT error + * md: fix 'degraded' calculation when starting a reshape. + * V4L/DVB: dvb-core: fix initialization of feeds list in demux filter + * Export the symbol of getboottime and mmonotonic_to_bootbased + * kvmclock: count total_sleep_time when updating guest clock + * KVM: PIT: control word is write-only + * tpm_infineon: fix suspend/resume handler for pnp_driver + * amd64_edac: Do not falsely trigger kerneloops + * netfilter: nf_conntrack: fix memory corruption with multiple namespaces + * netfilter: nf_conntrack: per netns nf_conntrack_cachep + * netfilter: nf_conntrack: restrict runtime expect hashsize modifications + * netfilter: xtables: compat out of scope fix + * netfilter: nf_conntrack: fix hash resizing with namespaces + * drm/i915: remove full registers dump debug + * drm/i915: add i915_lp_ring_sync helper + * drm/i915: Don't wait interruptible for possible plane buffer flush + * dasd: remove strings from s390dbf + * crypto: padlock-sha - Add import/export support + * wmi: Free the allocated acpi objects through wmi_get_event_data + * dell-wmi, hp-wmi, msi-wmi: check wmi_get_event_data() return value + * /dev/mem: introduce size_inside_page() + * devmem: check vmalloc address on kmem read/write + * devmem: fix kmem write bug on memory holes + * SCSI: mptfusion : mptscsih_abort return value should be SUCCESS instead + of value 0. + * sh: Couple kernel and user write page perm bits for CONFIG_X2TLB + * ALSA: hda - use WARN_ON_ONCE() for zero-division detection + * dst: call cond_resched() in dst_gc_task() + * ALSA: hda - Improved MacBook (Pro) 5,1 / 5,2 support + * befs: fix leak + * rtc-fm3130: add missing braces + * Call flush_dcache_page after PIO data transfers in libata-sff.c + * ahci: add Acer G725 to broken suspend list + * pktgen: Fix freezing problem + * x86/amd-iommu: Fix IOMMU-API initialization for iommu=pt + * x86/amd-iommu: Fix deassignment of a device from the pt_domain + * x86: Re-get cfg_new in case reuse/move irq_desc + * Staging: fix rtl8187se compilation errors with mac80211 + * ALSA: usb-audio - Avoid Oops after disconnect + * serial: 8250: add serial transmitter fully empty test + * sysfs: sysfs_sd_setattr set iattrs unconditionally + * class: Free the class private data in class_release + * USB: usbfs: only copy the actual data received + * USB: usbfs: properly clean up the as structure on error paths + * rtl8187: Add new device ID + * ACPI: Add NULL pointer check in acpi_bus_start + * ACPI: fix High cpu temperature with 2.6.32 + * drm/radeon/kms: use udelay for short delays + * NFS: Too many GETATTR and ACCESS calls after direct I/O + * eCryptfs: Add getattr function + * b43: Fix throughput regression + * ath9k: Fix sequence numbers for PAE frames + * mac80211: Fix probe request filtering in IBSS mode + * iwlwifi: Fix to set correct ht configuration + * dm stripe: avoid divide by zero with invalid stripe count + * dm log: userspace fix overhead_size calcuations + * Linux 2.6.32.9 + * sfc: Fix SFE4002 initialisation + * sfc: Fix sign of efx_mcdi_poll_reboot() error in efx_mcdi_poll() + * sfc: SFE4002/SFN4112F: Widen temperature and voltage tolerances + * (pre-stable) HID: handle joysticks with large number of buttons + - LP: #492056 + * (pre-stable) HID: extend mask for BUTTON usage page + - LP: #492056 + * PM: Measure device suspend and resume times + * e1000: enhance frame fragment detection + - CVE-2009-4536 + * e1000e: enhance frame fragment detection + - CVE-2009-4538 + * KVM: fix memory access during x86 emulation. + - CVE-2010-0306 + * KVM: x86 emulator: Add Virtual-8086 mode of emulation + - CVE-2010-0306 + * KVM: x86 emulator: Check IOPL level during io instruction emulation + - CVE-2010-0306 + * KVM: x86 emulator: Fix popf emulation + - CVE-2010-0306 + * KVM: x86 emulator: Check CPL level during privilege instruction + emulation + - CVE-2010-0306 + * Input: wacom - ensure the device is initialized properly upon resume + * Input: wacom - add defines for packet lengths of various devices + * Input: wacom - add support for new LCD tablets + - LP: #516777 + + -- Andy Whitcroft Mon, 01 Mar 2010 22:56:28 +0000 + +linux (2.6.32-14.20) lucid; urgency=low + + [ Andy Whitcroft ] + + * rebuild following the GCC update to match compiler for out of tree modules + * Revert "[Config] drbd -- enable" + * Revert "ubuntu: drbd -- version 8.3.1" + * SAUCE: khubd -- switch USB product/manufacturer/serial handling to RCU + - LP: #510937 + + -- Andy Whitcroft Fri, 19 Feb 2010 18:47:18 +0000 + +linux (2.6.32-14.19) lucid; urgency=low + + [ Andy Whitcroft ] + + * ensure we build the source package contents when enabled + - LP: #522308 + * [Config] enable CONFIG_X86_MCE_XEON75XX + * SAUCE: AppArmor -- add linux/kref.h for struct kref + * [Config] enable CONFIG_HID_ORTEK + * enable udeb generation for arm versatile flavour + - LP: #522515 + + [ John Johansen ] + + * ubuntu: AppArmor -- update to mainline 2010-02-18 + - LP: #439560, #496110, #507069 + + [ Johnathon Harris ] + + * SAUCE: HID: add support for Ortek WKB-2000 + - LP: #405390 + + [ Upstream Kernel Changes ] + + * tpm_tis: TPM_STS_DATA_EXPECT workaround + - LP: #490487 + * x86, mce: Xeon75xx specific interface to get corrected memory error + information + * x86, mce: Rename cpu_specific_poll to mce_cpu_specific_poll + * x86, mce: Make xeon75xx memory driver dependent on PCI + * drm/edid: Unify detailed block parsing between base and extension + blocks + - LP: #500999 + * (pre-stable) eCryptfs: Add getattr function + - LP: #390833 + + -- Andy Whitcroft Thu, 18 Feb 2010 19:22:02 +0000 + +linux (2.6.32-13.18) lucid; urgency=low + + [ Andy Whitcroft ] + + * Revert "enforcer -- make the enforcement configuration common" + * Revert "(pre-stable) Input: ALPS - add interleaved protocol support + (Dell E6x00 series)" + * Revert "(pre-stable) driver-core: fix devtmpfs crash on s390" + * Revert "(pre-stable) Driver-Core: devtmpfs - set root directory mode to + 0755" + * Revert "SAUCE: Adds support for COMPAL JHL90 webcam" + * Revert "SAUCE: fix kernel oops in VirtualBox during paravirt patching" + * Revert "SAUCE: make fc transport removal of target configurable" + * enforcer -- make the enforcement configuration common + * getabis -- add preempt flavour to the list + * [Config] enforce DEVTMPFS options + * [Config] armel -- cleanup to-be builtin modules + * [Config] cleanup ports configs + * [Config] enable CRYPTO_GHASH_CLMUL_NI_INTEL + - LP: #485536 + * add printdebian target to find branch target + * distclean -- do not remove debian.env + * [Config] generic-pae switch to M586TSC + - LP: #519448 + * git-ubuntu-log -- commonise duplicated log handling + * git-ubuntu-log -- tighten up Bug: NNNN matching + * git-ubuntu-log -- sort the bug numbers + + [ Chris Wilson ] + + * (pre-stable) drm/i915: Increase fb alignment to 64k + - LP: #404064 + + [ Eric Miao ] + + * arm -- enable ubuntu/ directory + + [ Huang Ying ] + + * SAUCE: crypto: ghash - Add PCLMULQDQ accelerated implementation + * SAUCE: crypto: ghash-intel - Fix building failure on x86_32 + + [ Loïc Minier ] + + * [Config] cleanup preempt configuration + * [Config] versatile: Fix video output + - LP: #517594 + * [Config] armel DEFAULT_MMAP_MIN_ADDR=32768 + * [Config] Large update to armel/versatile + * [Config] versatile: Add RTC support + * [Config] armel: Enable NEON + * [Config] versatile: Builtin MMC support + * [Config] versatile Builtin SCSI controller + * [Config] armel Disable dma_cache_sync callers + * [Config] armel Disable asm/time.h users + * [Config] armel Disable out of range udelay() + * [Config] armel Disable flush_cache_range() users + * [Config] armel -- Enable ubuntu/ drivers + + [ Steve Conklin ] + + * SAUCE: drm/i915: Add display hotplug event on Ironlake + * SAUCE: drm/i915: Add ACPI OpRegion support for Ironlake + + [ Upstream Kernel Changes ] + + * Revert "[Upstream]: oprofile/x86: add Xeon 7500 series support" + * Revert "Revert "[Bluetooth] Eliminate checks for impossible conditions + in IRQ handler"" + * clockevent: Don't remove broadcast device when cpu is dead + * clockevents: Add missing include to pacify sparse + * ACPI: don't cond_resched if irq is disabled + * be2net: Add support for next generation of BladeEngine device. + * be2net: Add the new PCI IDs to PCI_DEVICE_TABLE. + * mpt2sas: New device SAS2208 support is added + * ar9170: Add support for D-Link DWA 160 A2 + * powerpc/fsl: Add PCI device ids for new QoirQ chips + * davinci: dm646x: Add support for 3.x silicon revision + * Input: ALPS - add interleaved protocol support (Dell E6x00 series) + * Driver-Core: devtmpfs - set root directory mode to 0755 + * driver-core: fix devtmpfs crash on s390 + * vfs: get_sb_single() - do not pass options twice + * ALSA: hda - Add PCI IDs for Nvidia G2xx-series + * V4L/DVB (13569): smsusb: add autodetection support for five additional + Hauppauge USB IDs + * USB: mos7840: add device IDs for B&B electronics devices + * USB: ftdi_sio: add USB device ID's for B&B Electronics line + * V4L/DVB (13168): Add support for Asus Europa Hybrid DVB-T card (SAA7134 + SubVendor ID: 0x1043 Device ID: 0x4847) + * iTCO_wdt: Add support for Intel Ibex Peak + * atl1c:use common_task instead of reset_task and link_chg_task + * atl1e:disable NETIF_F_TSO6 for hardware limit + * V4L/DVB (13680a): DocBook/media: copy images after building HTML + * V4L/DVB (13680b): DocBook/media: create links for included sources + * netfilter: xtables: fix conntrack match v1 ipt-save output + * partitions: read whole sector with EFI GPT header + * partitions: use sector size for EFI GPT + * ALSA: ice1724 - Patch for suspend/resume for ESI Juli@ + * sched: Fix isolcpus boot option + * sched: Fix missing sched tunable recalculation on cpu add/remove + * nohz: Prevent clocksource wrapping during idle + * nfsd: Fix sort_pacl in fs/nfsd/nf4acl.c to actually sort groups + * timers, init: Limit the number of per cpu calibration bootup messages + * PCI: Always set prefetchable base/limit upper32 registers + * iscsi class: modify handling of replacement timeout + * NFS: Revert default r/wsize behavior + * HID: fixup quirk for NCR devices + * scsi_devinfo: update Hitachi entries (v2) + * scsi_dh: create sysfs file, dh_state for all SCSI disk devices + * scsi_transport_fc: remove invalid BUG_ON + * lpfc: fix hang on SGI ia64 platform + * libfc: fix typo in retry check on received PRLI + * libfc: fix ddp in fc_fcp for 0 xid + * fcoe: remove redundant checking of netdev->netdev_ops + * libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + * libfc: lport: fix minor documentation errors + * libfc: don't WARN_ON in lport_timeout for RESET state + * fcoe: initialize return value in fcoe_destroy + * libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in fc_fcp_send_data + * libfc: fix memory corruption caused by double frees and bad error + handling + * libfc: fix free of fc_rport_priv with timer pending + * libfc: remote port gets stuck in restart state without really + restarting + * fcoe, libfc: fix an libfc issue with queue ramp down in libfc + * fcoe: Fix checking san mac address + * fcoe: Fix getting san mac for VLAN interface + * qlge: Remove explicit setting of PCI Dev CTL reg. + * qlge: Set PCIE max read request size. + * qlge: Don't fail open when port is not initialized. + * qlge: Add handler for DCBX firmware event. + * qlge: Bonding fix for mode 6. + * PCI: AER: fix aer inject result in kernel oops + * DMI: allow omitting ident strings in DMI tables + * Input: i8042 - remove identification strings from DMI tables + * Input: i8042 - add Gigabyte M1022M to the noloop list + * Input: i8042 - add Dritek quirk for Acer Aspire 5610. + * ALSA: hda - select IbexPeak handler for Calpella + * ALSA: hda - Fix quirk for Maxdata obook4-1 + * ALSA: hda - Add missing Line-Out and PCM switches as slave + * iTCO_wdt.c - cleanup chipset documentation + * iTCO_wdt: add PCI ID for the Intel EP80579 (Tolapai) SoC + * iTCO_wdt: Add Intel Cougar Point and PCH DeviceIDs + * ahci: disable SNotification capability for ich8 + * ata_piix: fix MWDMA handling on PIIX3 + * md: fix small irregularity with start_ro module parameter + * V4L/DVB (13826): uvcvideo: Fix controls blacklisting + * cio: fix double free in case of probe failure + * cio: dont panic in non-fatal conditions + * netiucv: displayed TX bytes value much too high + * ipc ns: fix memory leak (idr) + * ALSA: hda - Fix HP T5735 automute + * hwmon: (fschmd) Fix a memleak on multiple opens of /dev/watchdog + * UBI: fix memory leak in update path + * UBI: initialise update marker + * ASoC: fix a memory-leak in wm8903 + * mac80211: check that ieee80211_set_power_mgmt only handles STA + interfaces. + * cfg80211: fix channel setting for wext + * KVM: S390: fix potential array overrun in intercept handling + * KVM: only allow one gsi per fd + * KVM: Fix race between APIC TMR and IRR + * KVM: MMU: bail out pagewalk on kvm_read_guest error + * KVM: x86: Fix host_mapping_level() + * KVM: x86: Fix probable memory leak of vcpu->arch.mce_banks + * KVM: x86: Fix leak of free lapic date in kvm_arch_vcpu_init() + * KVM: fix lock imbalance in kvm_*_irq_source_id() + * KVM: only clear irq_source_id if irqchip is present + * IPoIB: Clear ipoib_neigh.dgid in ipoib_neigh_alloc() + * x86: Reenable TSC sync check at boot, even with NONSTOP_TSC + * ACPI: enable C2 and Turbo-mode on Nehalem notebooks on A/C + - LP: #516325 + * iwlwifi: Fix throughput stall issue in HT mode for 5000 + * fnctl: f_modown should call write_lock_irqsave/restore + * x86, msr/cpuid: Pass the number of minors when unregistering MSR and + CPUID drivers. + * Linux 2.6.32.7 + * scsi_lib: Fix bug in completion of bidi commands + * mptsas: Fix issue with chain pools allocation on katmai + * mm: add new 'read_cache_page_gfp()' helper function + * drm/i915: Selectively enable self-reclaim + * firewire: ohci: fix crashes with TSB43AB23 on 64bit systems + * S390: fix single stepped svcs with TRACE_IRQFLAGS=y + * x86: Set hotpluggable nodes in nodes_possible_map + * x86: Remove "x86 CPU features in debugfs" (CONFIG_X86_CPU_DEBUG) + * libata: retry FS IOs even if it has failed with AC_ERR_INVALID + * zcrypt: Do not remove coprocessor for error 8/72 + * dasd: fix possible NULL pointer errors + * ACPI: Add a generic API for _OSC -v2 + * ACPI: Add platform-wide _OSC support. + * ACPI: fix OSC regression that caused aer and pciehp not to load + * ACPI: Advertise to BIOS in _OSC: _OST on _PPC changes + * UBI: fix volume creation input checking + * e1000/e1000e: don't use small hardware rx buffers + * drm/i915: Reload hangcheck timer too for Ironlake + * Fix a leak in affs_fill_super() + * Fix failure exits in bfs_fill_super() + * fix oops in fs/9p late mount failure + * fix leak in romfs_fill_super() + * Fix remount races with symlink handling in affs + * fix affs parse_options() + * Fix failure exit in ipathfs + * mm: fix migratetype bug which slowed swapping + * FDPIC: Respect PT_GNU_STACK exec protection markings when creating + NOMMU stack + * Split 'flush_old_exec' into two functions + * sparc: TIF_ABI_PENDING bit removal + * x86: get rid of the insane TIF_ABI_PENDING bit + * Input: winbond-cir - remove dmesg spam + * x86: Disable HPET MSI on ATI SB700/SB800 + * iwlwifi: set default aggregation frame count limit to 31 + * drm/i915: only enable hotplug for detected outputs + * firewire: core: add_descriptor size check + * SECURITY: selinux, fix update_rlimit_cpu parameter + * regulator: Specify REGULATOR_CHANGE_STATUS for WM835x LED constraints + * x86: Add Dell OptiPlex 760 reboot quirk + - LP: #488319 + * x86: Add quirk for Intel DG45FC board to avoid low memory corruption + * x86/amd-iommu: Fix possible integer overflow + * clocksource: fix compilation if no GENERIC_TIME + * tcp: update the netstamp_needed counter when cloning sockets + * sky2: Fix oops in sky2_xmit_frame() after TX timeout + * net: restore ip source validation + * af_packet: Don't use skb after dev_queue_xmit() + * ax25: netrom: rose: Fix timer oopses + * KVM: allow userspace to adjust kvmclock offset + * oprofile/x86: add Xeon 7500 series support + * oprofile/x86: fix crash when profiling more than 28 events + * libata: retry link resume if necessary + * mm: percpu-vmap fix RCU list walking + * mm: purge fragmented percpu vmap blocks + * block: fix bio_add_page for non trivial merge_bvec_fn case + * Fix 'flush_old_exec()/setup_new_exec()' split + * random: drop weird m_time/a_time manipulation + * random: Remove unused inode variable + * block: fix bugs in bio-integrity mempool usage + * usb: r8a66597-hdc disable interrupts fix + * connector: Delete buggy notification code. + * be2net: Bug fix to support newer generation of BE ASIC + * be2net: Fix memset() arg ordering. + * mm: flush dcache before writing into page to avoid alias + * mac80211: fix NULL pointer dereference when ftrace is enabled + * imxfb: correct location of callbacks in suspend and resume + * mx3fb: some debug and initialisation fixes + * starfire: clean up properly if firmware loading fails + * kernel/cred.c: use kmem_cache_free + * uartlite: fix crash when using as console + * pktcdvd: removing device does not remove its sysfs dir + * ath9k: fix eeprom INI values override for 2GHz-only cards + * ath9k: fix beacon slot/buffer leak + * powerpc: TIF_ABI_PENDING bit removal + * NET: fix oops at bootime in sysctl code + * Linux 2.6.32.8 + + -- Andy Whitcroft Wed, 10 Feb 2010 18:56:52 +0000 + +linux (2.6.32-12.17) lucid; urgency=low + + [ Andy Whitcroft ] + + * restore linux-image prefix -- master + * enforce -- we require SELINUX enabled -- master + * enforce -- ensure APPARMOR is our default LSM -- master + * make doc package completely optional -- master + * make source package completely optional -- master + * make linux-libc-dev completly optional -- master + * convert package disable to a deps list -- master + * allow common headers to switch from indep to arch -- master + * convert binary package disable to a deps list -- master + * add configuration option for a full source build tree -- master + * add support for uImage kernels in package control scripts + * getabis -- cleanup and parameterise repository list -- master + * getabis -- move configuration to etc/getabi -- master + * kernelconfig -- move configuration to etc -- master + * rules -- make debian/debian.env master for branch name + * set the current branch name -- master + * pull back common debian.master files into debian -- master + * enforcer -- make the enforcement configuration common + * insert-changes -- correctly link to debian/rules in DROOT + + [ Colin Watson ] + + * future-proof ddeb handling against buildd changes + + [ Eric Miao ] + + * SAUCE: Make CONFIG_{OMNIBOOK, AVERATEC_5100P, PACKARDBELL_E5} depend on + X86 + + [ Loïc Minier ] + + * Add modules.builtin.bin to prerm rm list + - LP: #516584 + + [ Tim Gardner ] + + * [Config] Implement the amd64 preempt flavour + + [ Upstream Kernel Changes ] + + * syslog: distinguish between /proc/kmsg and syscalls + - LP: #515623 + * sfc: Fix polling for slow MCDI operations + * sfc: Fix conditions for MDIO self-test + * sfc: QT202x: Remove unreliable MMD check at initialisation + * sfc: Add workspace for GMAC bug workaround to MCDI MAC_STATS buffer + * sfc: Use fixed-size buffers for MCDI NVRAM requests + + -- Andy Whitcroft Fri, 05 Feb 2010 07:09:31 +0000 + +linux (2.6.32-12.16) lucid; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: acpi battery -- delay first lookup of the battery until + first use" + * SAUCE: acpi battery -- move first lookup asynchronous + - LP: #507211 + * [Config] update configs to cleanup generic configs + * [Config] disable CONFIG_X86_CPU_DEBUG for amd64 + * [Config] enable USER_NS + - LP: #480739, #509808 + + [ Heiko Carstens ] + + * (pre-stable) driver-core: fix devtmpfs crash on s390 + - LP: #512370 + + [ John Johansen ] + + * [Config] for server and virtual flavours make CONFIG_SCSI_SYM53C8XX_2=y + - LP: #494565 + * [Config] VIRTIO=y for server/virtual flavours + - LP: #494565 + + [ Kay Sievers ] + + * (pre-stable) Driver-Core: devtmpfs - set root directory mode to 0755 + - LP: #512370 + + [ Kees Cook ] + + * SAUCE: x86: brk away from exec rand area + - LP: #452175 + + [ Leann Ogasawara ] + + * [Upstream] e1000: enhance frame fragment detection + - CVE-2009-4536 + * [Upstream] e1000e: enhance frame fragment detection + - CVE-2009-4538 + + [ Sebastian Kapfer ] + + * (pre-stable) Input: ALPS - add interleaved protocol support (Dell E6x00 + series) + - LP: #296610 + + [ Upstream Kernel Changes ] + + * inotify: do not reuse watch descriptors + - LP: #485556 + * inotify: only warn once for inotify problems + * revert "drivers/video/s3c-fb.c: fix clock setting for Samsung SoC + Framebuffer" + * memcg: ensure list is empty at rmdir + * drm/i915: remove loop in Ironlake interrupt handler + * block: Fix incorrect reporting of partition alignment + * x86, mce: Thermal monitoring depends on APIC being enabled + * futexes: Remove rw parameter from get_futex_key() + * page allocator: update NR_FREE_PAGES only when necessary + * x86, apic: use physical mode for IBM summit platforms + * edac: i5000_edac critical fix panic out of bounds + * x86: SGI UV: Fix mapping of MMIO registers + * mfd: WM835x GPIO direction register is not locked + * mfd: Correct WM835x ISINK ramp time defines + * ALSA: hda - Fix missing capture mixer for ALC861/660 codecs + * V4L/DVB (13868): gspca - sn9c20x: Fix test of unsigned. + * reiserfs: truncate blocks not used by a write + * HID: add device IDs for new model of Apple Wireless Keyboard + * PCI/cardbus: Add a fixup hook and fix powerpc + * Input: pmouse - move Sentelic probe down the list + * asus-laptop: add Lenovo SL hotkey support + * sched: Fix cpu_clock() in NMIs, on !CONFIG_HAVE_UNSTABLE_SCHED_CLOCK + * sparc64: Fix NMI programming when perf events are active. + * sparc64: Fix Niagara2 perf event handling. + * i2c: Do not use device name after device_unregister + * i2c/pca: Don't use *_interruptible + * serial/8250_pnp: add a new Fujitsu Wacom Tablet PC device + * sched: Fix task priority bug + * vfs: Fix vmtruncate() regression + * Linux 2.6.32.5 + * x86, msr/cpuid: Register enough minors for the MSR and CPUID drivers + * V4L/DVB (13900): gspca - sunplus: Fix bridge exchanges. + * Staging: asus_oled: fix oops in 2.6.32.2 + * Staging: hv: fix smp problems in the hyperv core code + * tty: fix race in tty_fasync + * ecryptfs: use after free + * ecryptfs: initialize private persistent file before dereferencing + pointer + * nozomi: quick fix for the close/close bug + * serial: 8250_pnp: use wildcard for serial Wacom tablets + * usb: serial: fix memory leak in generic driver + * USB: fix bitmask merge error + * USB: Don't use GFP_KERNEL while we cannot reset a storage device + * USB: EHCI: fix handling of unusual interrupt intervals + * USB: EHCI & UHCI: fix race between root-hub suspend and port resume + * USB: add missing delay during remote wakeup + * USB: add speed values for USB 3.0 and wireless controllers + * ACPI: EC: Accelerate query execution + * ACPI: EC: Add wait for irq storm + * SCSI: enclosure: fix oops while iterating enclosure_status array + * drm/i915: Read the response after issuing DDC bus switch command + * drm/i915: try another possible DDC bus for the SDVO device with + multiple outputs + * block: bdev_stack_limits wrapper + * DM: Fix device mapper topology stacking + * x86/PCI/PAT: return EINVAL for pci mmap WC request for !pat_enabled + * USB: fix usbstorage for 2770:915d delivers no FAT + * vmalloc: remove BUG_ON due to racy counting of VM_LAZY_FREE + * perf timechart: Use tid not pid for COMM change + * perf events: Dont report side-band events on each cpu for + per-task-per-cpu events + * perf: Honour event state for aux stream data + * Linux 2.6.32.6 + + -- Andy Whitcroft Wed, 27 Jan 2010 16:40:23 +0000 + +linux (2.6.32-11.15) lucid; urgency=low + + [ Andy Whitcroft ] + + * Revert "(pre-stable) drm/radeon/kms: fix crtc vblank update for r600" + * Revert "(pre-stable) sched: Fix balance vs hotplug race" + * Revert "[Upstream] acerhdf: Limit modalias matching to supported + boards" + * Revert "[Upstream] mmc: prevent dangling block device from accessing + stale queues" + * Revert "SAUCE: Fix nx_enable reporting" + * Revert "SAUCE: [x86] fix report of cs-limit nx-emulation" + * Revert "SAUCE: [x86] implement cs-limit nx-emulation for ia32" + * SAUCE: i915 -- disable powersave by default + - LP: #492392 + + [ Kees Cook ] + + * SAUCE: [x86] implement cs-limit nx-emulation for ia32 + - LP: #369978 + * SAUCE: [x86] fix report of cs-limit nx-emulation + - LP: #454285 + * SAUCE: Fix nx_enable reporting + - LP: #454285 + + [ Tim Gardner ] + + * [Upstream] b43: Declare all possible firmware files. + - LP: #488636 + * [Config] updateconfigs after adding pvscsi + - LP: #497156 + * [Config] CONFIG_BT=m + + [ Upstream Kernel Changes ] + + * Revert "x86: Side-step lguest problem by only building cmpxchg8b_emu + for pre-Pentium" + * SCSI: ipr: fix EEH recovery + * SCSI: qla2xxx: dpc thread can execute before scsi host has been added + * SCSI: st: fix mdata->page_order handling + * SCSI: fc class: fix fc_transport_init error handling + * sched: Fix task_hot() test order + * x86, cpuid: Add "volatile" to asm in native_cpuid() + * sched: Select_task_rq_fair() must honour SD_LOAD_BALANCE + * clockevents: Prevent clockevent_devices list corruption on cpu hotplug + * pata_hpt3x2n: fix clock turnaround + * pata_cmd64x: fix overclocking of UDMA0-2 modes + * ASoC: wm8974: fix a wrong bit definition + * sound: sgio2audio/pdaudiocf/usb-audio: initialize PCM buffer + * ALSA: hda - Fix missing capsrc_nids for ALC88x + * acerhdf: limit modalias matching to supported + - LP: #435958 + * ACPI: EC: Fix MSI DMI detection + * ACPI: Use the return result of ACPI lid notifier chain correctly + * powerpc: Handle VSX alignment faults correctly in little-endian mode + * ASoC: Do not write to invalid registers on the wm9712. + * drm/radeon: fix build on 64-bit with some compilers. + * USB: emi62: fix crash when trying to load EMI 6|2 firmware + * USB: option: support hi speed for modem Haier CE100 + * USB: Fix a bug on appledisplay.c regarding signedness + * USB: musb: gadget_ep0: avoid SetupEnd interrupt + * Bluetooth: Prevent ill-timed autosuspend in USB driver + * USB: rename usb_configure_device + * USB: fix bugs in usb_(de)authorize_device + * drivers/net/usb: Correct code taking the size of a pointer + * x86: SGI UV: Fix writes to led registers on remote uv hubs + * md: Fix unfortunate interaction with evms + * dma: at_hdmac: correct incompatible type for argument 1 of + 'spin_lock_bh' + * dma-debug: Do not add notifier when dma debugging is disabled. + * dma-debug: Fix bug causing build warning + * cifs: NULL out tcon, pSesInfo, and srvTcp pointers when chasing DFS + referrals + * x86/amd-iommu: Fix initialization failure panic + * ioat3: fix p-disabled q-continuation + * ioat2,3: put channel hardware in known state at init + * KVM: MMU: remove prefault from invlpg handler + * KVM: LAPIC: make sure IRR bitmap is scanned after vm load + * Libertas: fix buffer overflow in lbs_get_essid() + * iwmc3200wifi: fix array out-of-boundary access + * mac80211: fix propagation of failed hardware reconfigurations + * mac80211: fix WMM AP settings application + * mac80211: Fix IBSS merge + * cfg80211: fix race between deauth and assoc response + * ath5k: fix SWI calibration interrupt storm + * ath9k: wake hardware for interface IBSS/AP/Mesh removal + * ath9k: Fix TX queue draining + * ath9k: fix missed error codes in the tx status check + * ath9k: wake hardware during AMPDU TX actions + * ath9k: fix suspend by waking device prior to stop + * ath9k_hw: Fix possible OOB array indexing in gen_timer_index[] on + 64-bit + * ath9k_hw: Fix AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_BB and its shift value + in 0x4054 + * iwl3945: disable power save + * iwl3945: fix panic in iwl3945 driver + * iwlwifi: fix EEPROM/OTP reading endian annotations and a bug + * iwlwifi: fix more eeprom endian bugs + * iwlwifi: fix 40MHz operation setting on cards that do not allow it + * mac80211: fix race with suspend and dynamic_ps_disable_work + * NOMMU: Optimise away the {dac_,}mmap_min_addr tests + * 'sysctl_max_map_count' should be non-negative + * kernel/sysctl.c: fix the incomplete part of + sysctl_max_map_count-should-be-non-negative.patch + * V4L/DVB (13596): ov511.c typo: lock => unlock + * x86/ptrace: make genregs[32]_get/set more robust + * memcg: avoid oom-killing innocent task in case of use_hierarchy + * e100: Fix broken cbs accounting due to missing memset. + * ipv6: reassembly: use seperate reassembly queues for conntrack and + local delivery + * netfilter: fix crashes in bridge netfilter caused by fragment jumps + * hwmon: (sht15) Off-by-one error in array index + incorrect constants + * b43: avoid PPC fault during resume + * Keys: KEYCTL_SESSION_TO_PARENT needs TIF_NOTIFY_RESUME architecture + support + * sched: Fix balance vs hotplug race + * drm/radeon/kms: fix crtc vblank update for r600 + * drm: disable all the possible outputs/crtcs before entering KMS mode + * S390: dasd: support DIAG access for read-only devices + * xen: fix is_disconnected_device/exists_disconnected_device + * xen: improvement to wait_for_devices() + * xen: wait up to 5 minutes for device connetion + * orinoco: fix GFP_KERNEL in orinoco_set_key with interrupts disabled + * udf: Try harder when looking for VAT inode + * Add unlocked version of inode_add_bytes() function + * quota: decouple fs reserved space from quota reservation + * ext4: Convert to generic reserved quota's space management. + * ext4: fix sleep inside spinlock issue with quota and dealloc (#14739) + * x86, msr: Unify rdmsr_on_cpus/wrmsr_on_cpus + * cpumask: use modern cpumask style in drivers/edac/amd64_edac.c + * amd64_edac: unify MCGCTL ECC switching + * x86, msr: Add support for non-contiguous cpumasks + * x86, msr: msrs_alloc/free for CONFIG_SMP=n + * amd64_edac: fix driver instance freeing + * amd64_edac: make driver loading more robust + * amd64_edac: fix forcing module load/unload + * sched: Sched_rt_periodic_timer vs cpu hotplug + * ext4: Update documentation to correct the inode_readahead_blks option + name + * lguest: fix bug in setting guest GDT entry + * vmscan: do not evict inactive pages when skipping an active list scan + * ksm: fix mlockfreed to munlocked + * rt2x00: Disable powersaving for rt61pci and rt2800pci. + * generic_permission: MAY_OPEN is not write access + * Linux 2.6.32.3 + * untangle the do_mremap() mess + * fasync: split 'fasync_helper()' into separate add/remove functions + * ASoC: fix params_rate() macro use in several codecs + * modules: Skip empty sections when exporting section notes + * exofs: simple_write_end does not mark_inode_dirty + * nfsd: make sure data is on disk before calling ->fsync + * sunrpc: fix peername failed on closed listener + * SUNRPC: Fix up an error return value in + gss_import_sec_context_kerberos() + * SUNRPC: Fix the return value in gss_import_sec_context() + * sunrpc: on successful gss error pipe write, don't return error + * drm/i915: Update LVDS connector status when receiving ACPI LID event + * drm/i915: fix order of fence release wrt flushing + * drm/i915: Permit pinning whilst the device is 'suspended' + * drm: remove address mask param for drm_pci_alloc() + * drm/i915: Enable/disable the dithering for LVDS based on VBT setting + * drm/i915: Make the BPC in FDI rx/transcoder be consistent with that in + pipeconf on Ironlake + * drm/i915: Select the correct BPC for LVDS on Ironlake + * drm/i915: fix unused var + * rtc_cmos: convert shutdown to new pnp_driver->shutdown + * drivers/cpuidle/governors/menu.c: fix undefined reference to + `__udivdi3' + * cgroups: fix 2.6.32 regression causing BUG_ON() in cgroup_diput() + * lib/rational.c needs module.h + * dma-debug: allow DMA_BIDIRECTIONAL mappings to be synced with + DMA_FROM_DEVICE and + * kernel/signal.c: fix kernel information leak with print-fatal-signals=1 + * mmc_block: add dev_t initialization check + * mmc_block: fix probe error cleanup bug + * mmc_block: fix queue cleanup + * ALSA: hda - Fix ALC861-VD capture source mixer + * ALSA: ac97: Add Dell Dimension 2400 to Headphone/Line Jack Sense + blacklist + * ALSA: atiixp: Specify codec for Foxconn RC4107MA-RS2 + - LP: #498863 + * ASoC: Fix WM8350 DSP mode B configuration + * netfilter: ebtables: enforce CAP_NET_ADMIN + * netfilter: nf_ct_ftp: fix out of bounds read in update_nl_seq() + * hwmon: (coretemp) Fix TjMax for Atom N450/D410/D510 CPUs + * hwmon: (adt7462) Fix pin 28 monitoring + * quota: Fix dquot_transfer for filesystems different from ext4 + * xen: fix hang on suspend. + * iwlwifi: fix iwl_queue_used bug when read_ptr == write_ptr + * ath5k: Fix eeprom checksum check for custom sized eeproms + * cfg80211: fix syntax error on user regulatory hints + * iwl: off by one bug + * mac80211: add missing sanity checks for action frames + * drm/i915: remove render reclock support + * libertas: Remove carrier signaling from the scan code + * kernel/sysctl.c: fix stable merge error in NOMMU mmap_min_addr + * mac80211: fix skb buffering issue (and fixes to that) + * fix braindamage in audit_tree.c untag_chunk() + * fix more leaks in audit_tree.c tag_chunk() + * module: handle ppc64 relocating kcrctabs when CONFIG_RELOCATABLE=y + * ipv6: skb_dst() can be NULL in ipv6_hop_jumbo(). + * agp/intel-agp: Clear entire GTT on startup + * Linux 2.6.32.4 + * ethtool: Add reset operation + * gro: Name the GRO result enumeration type + * gro: Change all receive functions to return GRO result codes + * sfc: 10Xpress: Initialise pause advertising flags + * sfc: 10Xpress: Report support for pause frames + * sfc: Remove redundant header gmii.h + * sfc: Remove redundant hardware initialisation + * sfc: Rename Falcon-specific board code and types + * sfc: Remove boards.h, moving last remaining declaration to falcon.h + * sfc: Remove versioned bitfield macros + * sfc: Move RX data FIFO thresholds out of struct efx_nic_type + * sfc: Update hardware definitions for Siena + * sfc: Rename register I/O header and functions used by both Falcon and + Siena + * sfc: Eliminate indirect lookups of queue size constants + * sfc: Define DMA address mask explicitly in terms of descriptor field + width + * sfc: Move all TX DMA length limiting into tx.c + * sfc: Change order of device removal to reverse of probe order + * sfc: Remove declarations of nonexistent functions + * sfc: Move efx_xmit_done() declaration into correct stanza + * sfc: Move shared members of struct falcon_nic_data into struct efx_nic + * sfc: Maintain interrupt moderation values in ticks, not microseconds + * sfc: Removed kernel-doc for nonexistent member of efx_phy_operations + * sfc: Remove pointless abstraction of memory BAR number + * sfc: Remove incorrect assertion from efx_pci_remove_main() + * sfc: Remove unnecessary tests of efx->membase + * sfc: Move MTD probe after netdev registration and name allocation + * sfc: Remove unused code for non-autoneg speed/duplex switching + * sfc: Rename 'xfp' file and functions to reflect reality + * sfc: Really allow RX checksum offload to be disabled + * sfc: Feed GRO result into RX allocation policy and interrupt moderation + * sfc: Enable heuristic selection between page and skb RX buffers + * sfc: Remove pointless abstraction of memory BAR number (2) + * sfc: Remove redundant gotos from __efx_rx_packet() + * sfc: Remove ridiculously paranoid assertions + * sfc: Move assertions and buffer cleanup earlier in efx_rx_packet_lro() + * sfc: Record RX queue number on GRO path + * sfc: SFT9001: Reset LED configuration correctly after blinking + * sfc: Use a single blink implementation + * sfc: Rename efx_board::init_leds to init_phy and use for SFN4111T + * sfc: Make board information explicitly Falcon-specific + * sfc: Move definition of struct falcon_nic_data into falcon.h + * sfc: Move struct falcon_board into struct falcon_nic_data + * sfc: Move all I2C stuff into struct falcon_board + * sfc: Gather link state fields in struct efx_nic into new struct + efx_link_state + * sfc: Remove unnecessary casts to struct sk_buff * + * sfc: Remove redundant efx_xmit() function + * sfc: Combine high-level header files + * sfc: Log interrupt and reset type names, not numbers + * sfc: Fix descriptor cache sizes + * sfc: Treat all MAC registers as 128-bit + * sfc: Strengthen EFX_ASSERT_RESET_SERIALISED + * sfc: Comment corrections + * sfc: Remove unused constant + * sfc: Clean up struct falcon_board and struct falcon_board_data + * sfc: Fix bugs in RX queue flushing + * sfc: Remove unused function efx_flush_queues() + * sfc: Only switch Falcon MAC clocks as necessary + * sfc: Hold MAC lock for longer in efx_init_port() + * sfc: Split MAC stats DMA initiation and completion + * sfc: Move Falcon board/PHY/MAC monitoring code to falcon.c + * sfc: Simplify XMAC link polling + * sfc: Change MAC promiscuity and multicast hash at the same time + * sfc: Move inline comment into kernel-doc + * sfc: Do not set net_device::trans_start in self-test + * sfc: Simplify PHY polling + * sfc: QT202x: Reset before reading PHY id + * sfc: Replace MDIO spinlock with mutex + * sfc: Always start Falcon using the XMAC + * sfc: Limit some hardware workarounds to Falcon + * sfc: Remove EFX_WORKAROUND_9141 macro + * sfc: Remove another unused workaround macro + * sfc: Remove some redundant whitespace + * sfc: Decouple NIC revision number from Falcon PCI revision number + * sfc: Move descriptor cache base addresses to struct efx_nic_type + * sfc: Clean up RX event handling + * sfc: Remove redundant writes to INT_ADR_KER + * sfc: Remove duplicate hardware structure definitions + * sfc: Turn pause frame generation on and off at the MAC, not the RX FIFO + * sfc: Move Falcon NIC operations to efx_nic_type + * sfc: Refactor link configuration + * sfc: Generalise link state monitoring + * sfc: Add power-management and wake-on-LAN support + * sfc: Implement ethtool reset operation + * sfc: Add efx_nic_type operation for register self-test + * sfc: Add efx_nic_type operation for NVRAM self-test + * sfc: Add efx_nic_type operation for identity LED control + * sfc: Separate shared NIC code from Falcon-specific and rename + accordingly + * sfc: Fold falcon_probe_nic_variant() into falcon_probe_nic() + * sfc: Extend loopback mode enumeration + * sfc: Remove static PHY data and enumerations + * sfc: Extend MTD driver for use with new NICs + * sfc: Allow for additional checksum offload features + * sfc: Rename falcon.h to nic.h + * sfc: Move shared NIC code from falcon.c to new source file nic.c + * sfc: Add firmware protocol definitions (MCDI) + * sfc: Add support for SFC9000 family (1) + * sfc: Add support for SFC9000 family (2) + * sfc: Implement TSO for TCP/IPv6 + * sfc: Update version, copyright dates, authors + * drivers/net/sfc: Correct code taking the size of a pointer + * sfc: Move PHY software state initialisation from init() into probe() + * sfc: Include XGXS in XMAC link status check except in XGMII loopback + * sfc: Fix DMA mapping cleanup in case of an error in TSO + * sfc: QT2025C: Work around PHY bug + * sfc: QT2025C: Switch into self-configure mode when not in loopback + * sfc: QT2025C: Work around PHY firmware initialisation bug + * sfc: QT2025C: Add error message for suspected bad SFP+ cables + * sfc: Disable TX descriptor prefetch watchdog + * [SCSI] vmw_pvscsi: SCSI driver for VMware's virtual HBA. + - LP: #497156 + + -- Andy Whitcroft Tue, 19 Jan 2010 16:12:47 +0000 + +linux (2.6.32-10.14) lucid; urgency=low + + [ Alex Deucher ] + + * SAUCE: drm/radeon/kms: fix LVDS setup on r4xx + - LP: #493795 + + [ Andy Whitcroft ] + + * Revert "(pre-stable) acpi: Use the ARB_DISABLE for the CPU which model + id is less than 0x0f." + * config-check -- ensure the checks get run at build time + * config-check -- check the processed config during updateconfigs + * config-check -- CONFIG_SECCOMP may not be present + * TUN is now built in ignore + * SAUCE: acpi battery -- delay first lookup of the battery until first + use + * SAUCE: async_populate_rootfs: move rootfs init earlier + * ubuntu: AppArmor -- update to mainline 2010-01-06 + * SAUCE: move RLIMIT_CORE pipe dumper marker to 1 + - LP: #498525 + + [ Dave Airlie ] + + * (pre-stable) drm/radeon/kms: fix crtc vblank update for r600 + + [ Leann Ogasawara ] + + * Add asix to nic-usb-modules file + - LP: #499785 + + [ Peter Zijlstra ] + + * (pre-stable) sched: Fix balance vs hotplug race + + [ Tim Gardner ] + + * [Config] Enable CONFIG_FUNCTION_TRACER + - LP: #497989 + * [Config] Drop lpia from getabis + * [Config] Build in TUN/TAP driver + - LP: #499491 + * [Config] DH_COMPAT=5 + + [ Upstream Kernel Changes ] + + * Revert "(pre-stable) drm/i915: Avoid NULL dereference with + component_only tv_modes" + * Revert "(pre-stable) drm/i915: Fix sync to vblank when VGA output is + turned off" + * USB: usb-storage: fix bug in fill_inquiry + * USB: option: add pid for ZTE + * firewire: ohci: handle receive packets with a data length of zero + * rcu: Prepare for synchronization fixes: clean up for non-NO_HZ handling + of ->completed counter + * rcu: Fix synchronization for rcu_process_gp_end() uses of ->completed + counter + * rcu: Fix note_new_gpnum() uses of ->gpnum + * rcu: Remove inline from forward-referenced functions + * perf_event: Fix invalid type in ioctl definition + * perf_event: Initialize data.period in perf_swevent_hrtimer() + * perf: Don't free perf_mmap_data until work has been done + * PM / Runtime: Fix lockdep warning in __pm_runtime_set_status() + * sched: Check for an idle shared cache in select_task_rq_fair() + * sched: Fix affinity logic in select_task_rq_fair() + * sched: Rate-limit newidle + * sched: Fix and clean up rate-limit newidle code + * x86/amd-iommu: attach devices to pre-allocated domains early + * x86/amd-iommu: un__init iommu_setup_msi + * x86, Calgary IOMMU quirk: Find nearest matching Calgary while walking + up the PCI tree + * x86: Fix iommu=nodac parameter handling + * x86: GART: pci-gart_64.c: Use correct length in strncmp + * x86: ASUS P4S800 reboot=bios quirk + - LP: #366682 + * x86, apic: Enable lapic nmi watchdog on AMD Family 11h + * ssb: Fix range check in sprom write + * ath5k: allow setting txpower to 0 + * ath5k: enable EEPROM checksum check + * hrtimer: Fix /proc/timer_list regression + * ALSA: hrtimer - Fix lock-up + * ALSA: hda - Terradici HDA controllers does not support 64-bit mode + * KVM: x86 emulator: limit instructions to 15 bytes + * KVM: s390: Fix prefix register checking in arch/s390/kvm/sigp.c + * KVM: s390: Make psw available on all exits, not just a subset + * KVM: fix irq_source_id size verification + * KVM: x86: include pvclock MSRs in msrs_to_save + * x86: Prevent GCC 4.4.x (pentium-mmx et al) function prologue wreckage + * x86: Use -maccumulate-outgoing-args for sane mcount prologues + * x86, mce: don't restart timer if disabled + * x86/mce: Set up timer unconditionally + * x86: SGI UV: Fix BAU initialization + * x86: Fix duplicated UV BAU interrupt vector + * x86: Add new Intel CPU cache size descriptors + * x86: Fix typo in Intel CPU cache size descriptor + * pata_hpt{37x|3x2n}: fix timing register masks (take 2) + * s390: clear high-order bits of registers after sam64 + * V4L/DVB: Fix test in copy_reg_bits() + * bsdacct: fix uid/gid misreporting + * UBI: flush wl before clearing update marker + * jbd2: don't wipe the journal on a failed journal checksum + * USB: xhci: Add correct email and files to MAINTAINERS entry. + * USB: musb_gadget_ep0: fix unhandled endpoint 0 IRQs, again + * USB: option.c: add support for D-Link DWM-162-U5 + * USB: usbtmc: repeat usb_bulk_msg until whole message is transfered + * USB: usb-storage: add BAD_SENSE flag + * USB: Close usb_find_interface race v3 + * pxa/em-x270: fix usb hub power up/reset sequence + * hfs: fix a potential buffer overflow + * SUNRPC: IS_ERR/PTR_ERR confusion + * NFS: Fix nfs_migrate_page() + * md/bitmap: protect against bitmap removal while being updated. + * futex: Take mmap_sem for get_user_pages in fault_in_user_writeable + * devpts_get_tty() should validate inode + * debugfs: fix create mutex racy fops and private data + * Driver core: fix race in dev_driver_string + * Serial: Do not read IIR in serial8250_start_tx when UART_BUG_TXEN + * mac80211: Fix bug in computing crc over dynamic IEs in beacon + * mac80211: Fixed bug in mesh portal paths + * mac80211: Revert 'Use correct sign for mesh active path refresh' + * mac80211: fix scan abort sanity checks + * wireless: correctly report signal value for IEEE80211_HW_SIGNAL_UNSPEC + * rtl8187: Fix wrong rfkill switch mask for some models + * x86: Fix bogus warning in apic_noop.apic_write() + * mm: hugetlb: fix hugepage memory leak in mincore() + * mm: hugetlb: fix hugepage memory leak in walk_page_range() + * powerpc/windfarm: Add detection for second cpu pump + * powerpc/therm_adt746x: Record pwm invert bit at module load time] + * powerpc: Fix usage of 64-bit instruction in 32-bit altivec code + * drm/radeon/kms: Add quirk for HIS X1300 board + * drm/radeon/kms: handle vblanks properly with dpms on + * drm/radeon/kms: fix legacy crtc2 dpms + * drm/radeon/kms: fix vram setup on rs600 + * drm/radeon/kms: rs6xx/rs740: clamp vram to aperture size + * drm/ttm: Fix build failure due to missing struct page + * drm/i915: Set the error code after failing to insert new offset into mm + ht. + * drm/i915: Add the missing clonemask for display port on Ironlake + * xen/xenbus: make DEVICE_ATTR()s static + * xen: re-register runstate area earlier on resume. + * xen: restore runstate_info even if !have_vcpu_info_placement + * xen: correctly restore pfn_to_mfn_list_list after resume + * xen: register timer interrupt with IRQF_TIMER + * xen: register runstate on secondary CPUs + * xen: don't call dpm_resume_noirq() with interrupts disabled. + * xen: register runstate info for boot CPU early + * xen: call clock resume notifier on all CPUs + * xen: improve error handling in do_suspend. + * xen: don't leak IRQs over suspend/resume. + * xen: use iret for return from 64b kernel to 32b usermode + * xen: explicitly create/destroy stop_machine workqueues outside + suspend/resume region. + * Xen balloon: fix totalram_pages counting. + * xen: try harder to balloon up under memory pressure. + * dm exception store: free tmp_store on persistent flag error + * dm snapshot: only take lock for statustype info not table + * dm crypt: move private iv fields to structs + * dm crypt: restructure essiv error path + * dm: avoid _hash_lock deadlock + * dm snapshot: cope with chunk size larger than origin + * dm crypt: separate essiv allocation from initialisation + * dm crypt: make wipe message also wipe essiv key + * slc90e66: fix UDMA handling + * tcp: Stalling connections: Fix timeout calculation routine + * ip_fragment: also adjust skb->truesize for packets not owned by a + socket + * b44 WOL setup: one-bit-off stack corruption kernel panic fix + * sparc64: Don't specify IRQF_SHARED for LDC interrupts. + * sparc64: Fix overly strict range type matching for PCI devices. + * sparc64: Fix stack debugging IRQ stack regression. + * sparc: Set UTS_MACHINE correctly. + * b43legacy: avoid PPC fault during resume + * tracing: Fix event format export + * ath9k: Fix TX hang poll routine + * ath9k: fix processing of TX PS null data frames + * ath9k: Fix maximum tx fifo settings for single stream devices + * ath9k: fix tx status reporting + * mac80211: Fix dynamic power save for scanning. + * drm/i915: Fix sync to vblank when VGA output is turned off + * memcg: fix memory.memsw.usage_in_bytes for root cgroup + * thinkpad-acpi: fix default brightness_mode for R50e/R51 + * thinkpad-acpi: preserve rfkill state across suspend/resume + * ipw2100: fix rebooting hang with driver loaded + * matroxfb: fix problems with display stability + * acerhdf: add new BIOS versions + * asus-laptop: change light sens default values. + * vmalloc: conditionalize build of pcpu_get_vm_areas() + * ACPI: Use the ARB_DISABLE for the CPU which model id is less than 0x0f. + * net: Fix userspace RTM_NEWLINK notifications. + * ext3: Fix data / filesystem corruption when write fails to copy data + * V4L/DVB (13116): gspca - ov519: Webcam 041e:4067 added. + * bcm63xx_enet: fix compilation failure after get_stats_count removal + * x86: Under BIOS control, restore AP's APIC_LVTTHMR to the BSP value + * drm/i915: Avoid NULL dereference with component_only tv_modes + * drm/i915: PineView only has LVDS and CRT ports + * drm/i915: Fix LVDS stability issue on Ironlake + * mm: sigbus instead of abusing oom + * ipvs: zero usvc and udest + * jffs2: Fix long-standing bug with symlink garbage collection. + * intel-iommu: Detect DMAR in hyperspace at probe time. + * intel-iommu: Apply BIOS sanity checks for interrupt remapping too. + * intel-iommu: Check for an RMRR which ends before it starts. + * intel-iommu: Fix oops with intel_iommu=igfx_off + * intel-iommu: ignore page table validation in pass through mode + * netfilter: xtables: document minimal required version + * perf_event: Fix incorrect range check on cpu number + * implement early_io{re,un}map for ia64 + * Linux 2.6.32.2 + + -- Andy Whitcroft Thu, 07 Jan 2010 15:28:43 +0000 + +linux (2.6.32-9.13) lucid; urgency=low + + [ Andy Whitcroft ] + + * [Config] enable CONFIG_B43_PHY_LP + - LP: #493059 + * include modules.builtin in the binary debs + * config-check -- add a configuration enforcer + * config-check -- add a unit-test suite to the checker + * [Config] Enable CONFIG_SYN_COOKIES for versatile + * [Config] Enable CONFIG_SECURITY_SMACK for ports + * [Config] Enable CONFIG_SECURITY_FILE_CAPABILITIES for ports + * [Config] Disable CONFIG_COMPAT_BRK for ports + * getabis -- add armel versatile to the list + + [ Brad Figg ] + + * SAUCE: Increase the default prealloc buffer for HDA audio devices + (non-modem) + + [ Manoj Iyer ] + + * ubuntu: onmibook -- Added missing BOM file + + [ Tim Gardner ] + + * ubuntu: fsam7400 -- Cleanup Makefile + + [ Upstream Kernel Changes ] + + * Revert "ext4: Fix insufficient checks in EXT4_IOC_MOVE_EXT" + * signal: Fix alternate signal stack check + * SCSI: scsi_lib_dma: fix bug with dma maps on nested scsi objects + * SCSI: osd_protocol.h: Add missing #include + * SCSI: megaraid_sas: fix 64 bit sense pointer truncation + * ext4: fix potential buffer head leak when add_dirent_to_buf() returns + ENOSPC + * ext4: avoid divide by zero when trying to mount a corrupted file system + * ext4: fix the returned block count if EXT4_IOC_MOVE_EXT fails + * ext4: fix lock order problem in ext4_move_extents() + * ext4: fix possible recursive locking warning in EXT4_IOC_MOVE_EXT + * ext4: plug a buffer_head leak in an error path of ext4_iget() + * ext4: make sure directory and symlink blocks are revoked + * ext4: fix i_flags access in ext4_da_writepages_trans_blocks() + * ext4: journal all modifications in ext4_xattr_set_handle + * ext4: don't update the superblock in ext4_statfs() + * ext4: fix uninit block bitmap initialization when s_meta_first_bg is + non-zero + * ext4: fix block validity checks so they work correctly with meta_bg + * ext4: avoid issuing unnecessary barriers + * ext4: fix error handling in ext4_ind_get_blocks() + * ext4: make trim/discard optional (and off by default) + * ext4: make "norecovery" an alias for "noload" + * ext4: Fix double-free of blocks with EXT4_IOC_MOVE_EXT + * ext4: initialize moved_len before calling ext4_move_extents() + * ext4: move_extent_per_page() cleanup + * jbd2: Add ENOMEM checking in and for + jbd2_journal_write_metadata_buffer() + * ext4: Return the PTR_ERR of the correct pointer in + setup_new_group_blocks() + * ext4: Avoid data / filesystem corruption when write fails to copy data + * ext4: wait for log to commit when umounting + * ext4: remove blocks from inode prealloc list on failure + * ext4: ext4_get_reserved_space() must return bytes instead of blocks + * ext4: quota macros cleanup + * ext4: fix incorrect block reservation on quota transfer. + * ext4: Wait for proper transaction commit on fsync + * ext4: Fix insufficient checks in EXT4_IOC_MOVE_EXT + * ext4: Fix potential fiemap deadlock (mmap_sem vs. i_data_sem) + * Linux 2.6.32.1 + * kbuild: generate modules.builtin + * (pre-stable) drm/i915: Fix sync to vblank when VGA output is turned off + - LP: #494461 + * (pre-stable) drm/i915: Avoid NULL dereference with component_only + tv_modes + - LP: #494045 + + [ Zhao Yakui ] + + * (pre-stable) acpi: Use the ARB_DISABLE for the CPU which model id is + less than 0x0f. + - LP: #481765 + + -- Andy Whitcroft Thu, 17 Dec 2009 15:41:21 +0000 + +linux (2.6.32-8.12) lucid; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: AppArmor -- add linux/err.h for ERR_PTR + + -- Andy Whitcroft Sat, 12 Dec 2009 10:56:16 +0000 + +linux (2.6.32-8.11) lucid; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: default ATI Radeon KMS to off until userspace catches + up" + * Revert "SAUCE: AppArmor: Fix oops there is no tracer and doing unsafe + transition." + * Revert "SAUCE: AppArmor: Fix refcounting bug causing leak of creds" + * Revert "SAUCE: AppArmor: Fix cap audit_caching preemption disabling" + * Revert "SAUCE: AppArmor: Fix Oops when in apparmor_bprm_set_creds" + * Revert "SAUCE: AppArmor: Fix oops after profile removal" + * Revert "SAUCE: AppArmor: AppArmor disallows truncate of deleted files." + * Revert "SAUCE: AppArmor: AppArmor fails to audit change_hat correctly" + * Revert "SAUCE: AppArmor: Policy load and replacement can fail to alloc + mem" + * Revert "SAUCE: AppArmor: AppArmor wrongly reports allow perms as + denied" + * Revert "SAUCE: AppArmor: Fix mediation of "deleted" paths" + * Revert "SAUCE: AppArmor: Fix off by 2 error in getprocattr mem + allocation" + * Revert "SAUCE: AppArmor: Set error code after structure + initialization." + * Revert "AppArmor -- fix pstrace_may_access rename" + * Revert "ubuntu: AppArmor security module" + * Revert "SAUCE: Add config option to set a default LSM" + * Revert "ubuntu: fsam7400 -- sw kill switch driver" + * Revert "[Config] fsam7400 -- enable" + * Revert "[Config] AUFS -- enable" + * Revert "ubuntu: AUFS -- aufs2-30 20090727" + * Revert "ubuntu: AUFS -- export various core functions -- fixes" + * Revert "ubuntu: AUFS -- export various core functions" + * Revert "[Config] ubuntu/iscsitarget -- disable" + * Revert "[Config] iscsitarget -- enable" + * Revert "ubuntu: iscsitarget -- SVN revision r214" + * update Vcs-Git to point to the correct repository + - LP: #493589 + * update build environment overrides to lucid + - LP: #493589 + * [Config] enable CONFIG_DEVTMPFS + * [Config] update all configs following AppArmor 2009-12-08 update + * SAUCE: isapnp_init: make isa PNP scans occur async + * [Config] fsam7400 -- enable + * [Config] omnibook -- enable + * [Config] cleanup CONFIG_AUDIT + * ubuntu: AUFS -- export various core functions (aufs2-base.patch) + * ubuntu: AUFS -- export various core functions (aufs2-standalone.patch) + * ubuntu: AUFS -- aufs2 20091209 + * [Config] AUFS -- enable + * [Config] iscsitarget -- enable + + [ Arjan van de Ven ] + + * SAUCE: KMS: cache the EDID information of the LVDS + + [ Colin Watson ] + + * bnx2: update d-i firmware filenames + - LP: #494052 + * add cdc_ether to nic-usb-modules udeb + - LP: #495060 + + [ John Johansen ] + + * ubuntu: AppArmor -- mainline 2009-10-08 + + [ Manoj Iyer ] + + * ubuntu: fsam7400 -- kill switch for Fujitsu Siemens Amilo M 7400 + * ubuntu: omnibook -- support Toshiba (HP) netbooks + * ubuntu: iscsitarget --- version 1.4.19 + - LP: #494693 + + [ Surbhi Palande ] + + * SAUCE: Make populate_rootfs asynchronous + + [ Tim Gardner ] + + * Parallelize flavour builds and packaging + * [Config] Enable CONFIG_KSM + + [ Upstream Kernel Changes ] + + * Config option to set a default LSM + * LSM: Add security_path_chroot(). + * LSM: Add security_path_chroot(). + * LSM: Move security_path_chmod()/security_path_chown() to after + mutex_lock(). + * ext4: Fix insufficient checks in EXT4_IOC_MOVE_EXT + + -- Andy Whitcroft Fri, 11 Dec 2009 17:45:19 +0000 + +linux (2.6.32-7.10) lucid; urgency=low + + [ Andy Whitcroft ] + + * [Config] disable CONFIG_THUMB2_KERNEL to fix arm FTBFS + + -- Andy Whitcroft Sun, 06 Dec 2009 12:56:48 +0000 + +linux (2.6.32-7.9) lucid; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: set /proc/acpi/video/*/DOS to 4 by default + - LP: #458982 + * SAUCE: ensure vga16fb loads if no other driver claims the VGA device + * [Config] update configs following versatile switch to V7 + * rebased to v2.6.32 + * [Config] update configs following rebase to v2.6.32 + * [Config] update ports configs following rebase to v2.6.32 + * SAUCE: default ATI Radeon KMS to off until userspace catches up + + [ Arjan van de Ven ] + + * SAUCE: vfs: Add a trace point in the mark_inode_dirty function + + [ Leann Ogasawara ] + + * [SCSI] megaraid_sas: remove sysfs poll_mode_io world writeable + permissions + - CVE-2009-3939 + + [ Loic Minier ] + + * SAUCE: select a v7 CPU for versatile + + [ Takashi Iwai ] + + * SAUCE: ALSA: hda - Add power on/off counter + + [ Upstream changes ] + + * rebased to v2.6.32 + + -- Andy Whitcroft Fri, 04 Dec 2009 10:44:50 +0000 + +linux (2.6.32-6.8) lucid; urgency=low + + [ Andy Whitcroft ] + + * [Config] disable SSB devices for armel + + -- Andy Whitcroft Sat, 28 Nov 2009 12:16:40 +0000 + +linux (2.6.32-6.7) lucid; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: default ATI Radeon KMS to off until userspace catches up" + * Revert "SAUCE: Dell XPS710 reboot quirk" + * Revert "SAUCE: Link acpi-cpufreq.o first" + * Revert "SAUCE: LPIA Logical reset of USB port on resume" + * Revert "SAUCE: LPIA Reboot fix for Intel Crownbeach development boards" + * Revert "SAUCE: Enable HDMI audio codec on Studio XPS 1340" + * Revert "SAUCE: Dell laptop digital mic does not work, PCI 1028:0271" + * Revert "Add Dell Dimension 9200 reboot quirk" + * Revert "SAUCE: Correctly blacklist Thinkpad r40e in ACPI" + * Revert "SAUCE: tulip: Define ULI PCI ID's" + * Revert "SAUCE: Lower warning level of some PCI messages" + * Revert "mac80211: fix two issues in debugfs" + Drop a number of known redundant commits as identified in the Ubuntu + delta review blueprint. + + * reenable armel versatile flavour + * [Config] disable CONFIG_USB_DEVICEFS + + [ Tim Gardner ] + + * [Config] udeb: Add squashfs to fs-core-modules + - LP: #352615 + * [Config] Create a real squashfs udeb + - LP: #352615 + + + -- Andy Whitcroft Fri, 27 Nov 2009 17:31:16 +0000 + +linux (2.6.32-5.6) lucid; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.32-rc8 + * update configs following rebase to v2.6.32-rc8 + * update ports configs since rebase to v2.6.32-rc8 + * [Config] enable cgroup options + - LP: #480739 + + [ Upstream Kernel Changes ] + + * rebase to v2.6.32-rc8 + + -- Andy Whitcroft Mon, 23 Nov 2009 11:16:14 +0000 + +linux (2.6.32-4.5) lucid; urgency=low + + [ Andy Whitcroft ] + + * [Config] SERIO_LIBPS2 and SERIO_I8042 must match + * rebase to v2.6.32-rc7 + * resync with Karmic proposed + + [ John Johansen ] + + * SAUCE: AppArmor: Fix oops after profile removal + - LP: #475619 + * SAUCE: AppArmor: Fix Oops when in apparmor_bprm_set_creds + - LP: #437258 + * SAUCE: AppArmor: Fix cap audit_caching preemption disabling + - LP: #479102 + * SAUCE: AppArmor: Fix refcounting bug causing leak of creds + - LP: #479115 + * SAUCE: AppArmor: Fix oops there is no tracer and doing unsafe + transition. + - LP: #480112 + + [ Ubuntu Changes ] + + * resync with Karmic proposed (ddbc670a86a3dee18541a3734149f250ff307adf) + + [ Upstream Kernel Changes ] + + * rebase to v2.6.32-rc7 + + -- Andy Whitcroft Fri, 13 Nov 2009 11:35:13 +0000 + +linux (2.6.32-3.4) lucid; urgency=low + + [ Andy Whitcroft ] + + * [Config] SERIO_LIBPS2 and SERIO_I8042 must match + * [Upstream] add local prefix to oss local change_bits + + [ Upstream Kernel Changes ] + + * mtd/maps: gpio-addr-flash: pull in linux/ headers rather than asm/ + * mtd/maps: gpio-addr-flash: depend on GPIO arch support + + -- Andy Whitcroft Wed, 11 Nov 2009 14:47:04 +0000 + +linux (2.6.32-3.3) lucid; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.32-rc6 + * [Config] update configs following rebase to v2.6.32-rc6 + * [Config] update ports configs following rebase to v2.6.32-rc6 + * resync with Karmic Ubuntu-2.6.31-15.49 + * [Config] add module ignores for broken drivers + + [ John Johansen ] + + * SAUCE: AppArmor: AppArmor wrongly reports allow perms as denied + - LP: #453335 + * SAUCE: AppArmor: Policy load and replacement can fail to alloc mem + - LP: #458299 + * SAUCE: AppArmor: AppArmor fails to audit change_hat correctly + - LP: #462824 + * SAUCE: AppArmor: AppArmor disallows truncate of deleted files. + - LP: #451375 + + [ Kees Cook ] + + * SAUCE: Fix nx_enable reporting + - LP: #454285 + + [ Scott James Remnant ] + + * Revert "SAUCE: trace: add trace_event for the open() syscall" + * SAUCE: trace: add trace events for open(), exec() and uselib() + - LP: #462111 + + [ Stefan Bader ] + + * SAUCE: Fix sub-flavour script to not stop on missing directories + - LP: #453073 + + [ Ubuntu Changes ] + + * resync with Karmic Ubuntu-2.6.31-15.49 + + [ Upstream Kernel Changes ] + + * rebase to v2.6.32-rc6 + - LP: #464552 + + -- Andy Whitcroft Tue, 10 Nov 2009 15:00:57 +0000 + +linux (2.6.32-2.2) lucid; urgency=low + + [ Andy Whitcroft ] + + * install the full changelog with the binary package + * changelog -- explicitly note rebases and clean history + * reinstate armel.mk with no flavours + - LP: #449637 + * [Upstream] block: silently error unsupported empty barriers too + - LP: #420423 + * [Config] udate configs following karmic resync + * [Config] update ports configs following karmic resync + * [Upstream] lirc -- follow removal of .id element + + [ Colin Watson ] + + * Use section 'admin' rather than 'base' + * Add more e100 firmware to nic-modules + - LP: #451872 + * Add qla1280 firmware to scsi-modules + - LP: #381037 + + [ John Johansen ] + + * SAUCE: AppArmor: Set error code after structure initialization. + - LP: #427948 + * SAUCE: AppArmor: Fix off by 2 error in getprocattr mem allocation + - LP: #446595 + * SAUCE: AppArmor: Fix mediation of "deleted" paths + + [ Kees Cook ] + + * SAUCE: [x86] fix report of cs-limit nx-emulation + - LP: #454285 + + [ Leann Ogasawara ] + + * SAUCE: (drop after 2.6.31) input: Add support for filtering input + events + - LP: #430809 + * SAUCE: (drop after 2.6.31) dell-laptop: Trigger rfkill updates on wifi + toggle switch press + - LP: #430809 + + [ Luke Yelavich ] + + * SAUCE: Add sr_mod to the scsi-modules udeb for powerpc + * [Config] Add sd_mod to scsi-modules udeb for powerpc + + [ Mario Limonciello ] + + * SAUCE: Update to LIRC 0.8.6 + - LP: #432678 + * SAUCE: dell-laptop: Store the HW switch status internally rather than + requerying every time + - LP: #430809 + * SAUCE: dell-laptop: Blacklist machines not supporting dell-laptop + - LP: #430809 + + [ Stefan Bader ] + + * [Upstream] acerhdf: Limit modalias matching to supported boards + - LP: #435958 + + [ Tim Gardner ] + + * [Upstream] i915: Fix i2c init message + - LP: #409361 + * [Config] Add sym53c8xx.ko to virtual sub-flavour + - LP: #439415 + * [Config] Add d101m_ucode.bin to d-i/firmware/nic-modules + - LP: #439456 + * [Config] Set default I/O scheduler back to CFQ for desktop flavours + - LP: #381300 + * SAUCE: Created MODULE_EXPORT/MODULE_IMPORT macros + - LP: #430694 + * SAUCE: Use MODULE_IMPORT macro to tie intel_agp to i915 + - LP: #430694 + * [Config] CONFIG_GFS2_FS_LOCKING_DLM=y + - LP: #416325 + * SAUCE: Fix MODULE_IMPORT/MODULE_EXPORT + - LP: #430694 + * SAUCE: Raise the default console 'quiet' level to 2 + * [Config] CONFIG_X86_PAT=y + * [Config] Add armel arch to linux-libc-dev arches. + - LP: #449637 + * [Config] CONFIG_X86_MCE + * [Upstream] (drop after 2.6.31) Input: synaptics - add another Protege + M300 to rate blacklist + - LP: #433801 + + [ Upstream Kernel Changes ] + + * sgi-gru: Fix kernel stack buffer overrun, CVE-2009-2584 + * drm/i915: Fix FDI M/N setting according with correct color depth + - LP: #416792 + + -- Andy Whitcroft Thu, 22 Oct 2009 16:53:33 +0100 + +linux (2.6.32-1.1) lucid; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.32-rc3 + * [Config] update configs following rebase to 2.6.32-rc3 + * [Config] update ports configs following rebase to 2.6.32-rc3 + * AppArmor -- fix pstrace_may_access rename + * staging/android -- disable + * ubuntu: dm-raid-45 -- update to compile with 2.6.32 + * ubuntu: drbd -- disable + * staging/comdi -- disable + * staging/go7007 -- disable + * [Config] staging/winbond -- disable + * [Config] ubuntu/iscsitarget -- disable + * [d-i] cbc and ecb are builtin make them optional in udebs + * rebase to v2.6.32-rc5 + * [Config] update configs following rebase to v2.6.32-rc5 + * [Config] update ports configs following rebase to v2.6.31-rc5 + + [ Tim Gardner ] + + * [Config] Add cpio as a build dependency. + + [ Upstream Kernel Changes ] + + * rebase to v2.6.32-rc3 + * rebase to v2.6.32-rc5 + + -- Andy Whitcroft Mon, 05 Oct 2009 15:48:58 +0100 + +linux (2.6.31-11.37) karmic; urgency=low + + [ Tim Gardner ] + + * [Config] Increase kernel log buffer to 256K for amd64 flavours + - LP: #424810 + * [Config] Set HZ=100 for amd64 flavours + - LP: #438234 + * [Upstream] e1000e: Emit notice instead of an error when + pci_enable_pcie_error_reporting() fails + - LP: #436370 + + [ Upstream Kernel Changes ] + + * n_tty: honor opost flag for echoes + * n_tty: move echoctl check and clean up logic + - LP: #438310 + + * Revert "[Upstream] drm/i915: Check that the relocation points to within + the target" - Use upstream cherry-pick. + * drm/i915: Check that the relocation points to within the target + - LP: #429241 + + * drm/i915: fix tiling on IGDNG + * drm/i915: add B43 chipset support + * agp/intel: Add B43 chipset support + Intel request from kernel team mailing list. + + * HID: completely remove apple mightymouse from blacklist + - LP: #428111 + + -- Tim Gardner Mon, 28 Sep 2009 11:47:29 -0600 + +linux (2.6.31-11.36) karmic; urgency=low + + [ Brian Rogers ] + + * SAUCE: (drop after 2.6.31) em28xx: ir-kbd-i2c init data needs a + persistent object + * SAUCE: (drop after 2.6.31) saa7134: ir-kbd-i2c init data needs a + persistent object + + [ Takashi Iwai ] + + * [Upstream] ALSA: hda - Add another entry for Nvidia HDMI device + - LP: #416482 + + [ Tyler Hicks ] + + * SAUCE: (drop after 2.6.31) eCryptfs: Prevent lower dentry from going + negative during unlink + + [ Upstream Kernel Changes ] + + * sg: fix oops in the error path in sg_build_indirect() + * mpt2sas : Rescan topology from Interrupt context instead of work thread + * mpt2sas: Prevent sending command to FW while Host Reset + * mpt2sas: setting SDEV into RUNNING state from Interrupt context + * mpt2sas: Raid 10 Volume is showing as Raid 1E in dmesg + * SCSI: fix oops during scsi scanning + * SCSI: libsrp: fix memory leak in srp_ring_free() + * cfg80211: fix looping soft lockup in find_ie() + * ath5k: write PCU registers on initial reset + * binfmt_elf: fix PT_INTERP bss handling + * TPM: Fixup boot probe timeout for tpm_tis driver + * md: Fix "strchr" [drivers/md/dm-log-userspace.ko] undefined! + * x86/amd-iommu: fix broken check in amd_iommu_flush_all_devices + * fix undefined reference to user_shm_unlock + * perf_counter: Fix buffer overflow in perf_copy_attr() + * perf_counter: Start counting time enabled when group leader gets + enabled + * powerpc/perf_counters: Reduce stack usage of power_check_constraints + * powerpc: Fix bug where perf_counters breaks oprofile + * powerpc/ps3: Workaround for flash memory I/O error + * block: don't assume device has a request list backing in nr_requests + store + * agp/intel: remove restore in resume + * ALSA: cs46xx - Fix minimum period size + * ASoC: Fix WM835x Out4 capture enumeration + * sound: oxygen: work around MCE when changing volume + * mlx4_core: Allocate and map sufficient ICM memory for EQ context + * perf stat: Change noise calculation to use stddev + * x86: Fix x86_model test in es7000_apic_is_cluster() + * x86/i386: Make sure stack-protector segment base is cache aligned + * PCI: apply nv_msi_ht_cap_quirk on resume too + * x86, pat: Fix cacheflush address in change_page_attr_set_clr() + * ARM: 5691/1: fix cache aliasing issues between kmap() and kmap_atomic() + with highmem + * KVM guest: do not batch pte updates from interrupt context + * KVM: Fix coalesced interrupt reporting in IOAPIC + * KVM: VMX: Check cpl before emulating debug register access + * KVM guest: fix bogus wallclock physical address calculation + * KVM: x86: Disallow hypercalls for guest callers in rings > 0 + * KVM: VMX: Fix cr8 exiting control clobbering by EPT + * KVM: x86 emulator: Implement zero-extended immediate decoding + * KVM: MMU: make __kvm_mmu_free_some_pages handle empty list + * KVM: x86 emulator: fix jmp far decoding (opcode 0xea) + * KVM: limit lapic periodic timer frequency + * libata: fix off-by-one error in ata_tf_read_block() + * PCI quirk: update 82576 device ids in SR-IOV quirks list + * PCI: Unhide the SMBus on the Compaq Evo D510 USDT + * powerpc/pseries: Fix to handle slb resize across migration + * Linux 2.6.31.1 + + -- Tim Gardner Thu, 24 Sep 2009 13:04:28 -0600 + +linux (2.6.31-10.35) karmic; urgency=low + + [ Amit Kucheria ] + + * Disable CONFIG_UEVENT_HELPER_PATH + + [ Andy Whitcroft ] + + * [Config] Enable CONFIG_USB_GADGET_DUMMY_HCD + * remove the tlsup driver + * remove lmpcm logitech driver support + + [ Bryan Wu ] + + * Add 3 missing files to prerm remove file list + - LP: #345623, #415832 + + [ Chris Wilson ] + + * [Upstream] drm/i915: Check that the relocation points to within the + target + - LP: #429241 + + [ Luke Yelavich ] + + * [Config] Set CONFIG_EXT4_FS=y on ports architectures + + [ Manoj Iyer ] + + * SAUCE: Added quirk to recognize GE0301 3G modem as an interface. + - LP: #348861 + + [ Tim Gardner ] + + * Revert "[Upstream] ACPI: Add Thinkpad W500, W700, & W700ds to OSI(Linux) white-list" + * Revert "[Upstream] ACPI: Add Thinkpad R400 & Thinkpad R500 to OSI(Linux) white-list" + * Revert "[Upstream] ACPI: Add Thinkpad X300 & Thinkpad X301 to OSI(Linux) white-list" + * Revert "[Upstream] ACPI: Add Thinkpad X200, X200s, X200t to OSI(Linux) white-list" + * Revert "[Upstream] ACPI: Add Thinkpad T400 & Thinkpad T500 to OSI(Linux) white-list" + Upstream suggests that this is not the right approach. + + * [Config] Set default I/O scheduler to DEADLINE + CFQ seems to have some load related problems which are often exacerbated by sreadahead. + - LP: #381300 + + [ ubuntu@tjworld.net ] + + * SAUCE: ipw2200: Enable LED by default + - LP: #21367 + + [ Upstream Kernel Changes ] + + * ALSA: hda - Add support for new AMD HD audio devices + - LP: #430564 + + -- Andy Whitcroft Wed, 16 Sep 2009 15:37:49 +0100 + +linux (2.6.31-10.34) karmic; urgency=low + + [ Ted Tso ] + + * [Upstream] ext3: Don't update superblock write time when filesystem is + read-only + - LP: #427822 + + -- Tim Gardner Tue, 15 Sep 2009 16:00:45 -0600 + +linux (2.6.31-10.33) karmic; urgency=low + + [ Leann Ogasawara ] + + * [Upstream] dvb-usb: fix tuning with Cinergy T2 + - LP: #421258 + + [ Tim Gardner ] + + * [Config] Unconditionally copy files from sub-flavours lists. + (really, really fix it this time) + - LP: #423426 + * [Config] Set CONFIG_CACHEFILES=m for all flavours + + [ Upstream Kernel Changes ] + + * ext4: Don't update superblock write time when filesystem is read-only + - LP: #427822 + + -- Tim Gardner Tue, 15 Sep 2009 07:50:21 -0600 + +linux (2.6.31-10.32) karmic; urgency=low + + [ Eric Miao ] + + * [Config] enable module support for memory stick + - LP: #159951 + + [ Tim Gardner ] + + * [Config] Unconditionally copy files from sub-flavours lists. + - LP: #423426 + + -- Tim Gardner Thu, 10 Sep 2009 15:57:55 -0600 + +linux (2.6.31-10.31) karmic; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.31 final + + [ Colin Watson ] + + * [Config] Recommend grub-pc in linux-image + - LP: #385741 + + [ Ike Panhc ] + + * [Upstream] Pull latest update of lenovo-sl-laptop + + [ Peter Feuerer ] + + * [Upstream] (drop after 2.6.31) acerhdf: fix fan control for AOA150 + model + - LP: #426691 + + [ Tim Gardner ] + + * [Config] De-macro some package names. + + [ Upstream Changes ] + + * rebase to 2.6.31 final. + + -- Andy Whitcroft Thu, 10 Sep 2009 09:38:10 +0100 + +linux (2.6.31-10.30) karmic; urgency=low + + [ Amit Kucheria ] + + * [Config] Enable CONFIG_USB_DEVICEFS + - LP: #417748 + * [Config] Populate the config-update template a bit more + + [ Andy Whitcroft ] + + * rebase to v2.6.31-rc9 + * [Config] update configs following rebase to v2.6.31-rc9 + * [Config] update ports configs following rebase to v2.6.31-rc9 + + [ Colin Ian King ] + + * SAUCE: wireless: hostap, fix oops due to early probing interrupt + - LP: #254837 + + [ Jerone Young ] + + * [Upstream] ACPI: Add Thinkpad T400 & Thinkpad T500 to OSI(Linux) + white-list + - LP: #281732 + * [Upstream] ACPI: Add Thinkpad X200, X200s, X200t to OSI(Linux) + white-list + - LP: #281732 + * [Upstream] ACPI: Add Thinkpad X300 & Thinkpad X301 to OSI(Linux) + white-list + - LP: #281732 + * [Upstream] ACPI: Add Thinkpad R400 & Thinkpad R500 to OSI(Linux) + white-list + - LP: #281732 + * [Upstream] ACPI: Add Thinkpad W500, W700, & W700ds to OSI(Linux) + white-list + - LP: #281732 + + [ John Johansen ] + + * SAUCE: AppArmor: Fix profile attachment for regexp based profile names + - LP: #419308 + * SAUCE: AppArmor: Return the correct error codes on profile + addition/removal + - LP: #408473 + * SAUCE: AppArmor: Fix OOPS in profile listing, and display full list + - LP: #408454 + * SAUCE: AppArmor: Fix mapping of pux to new internal permission format + - LP: #419222 + * SAUCE: AppArmor: Fix change_profile failure + - LP: #401931 + * SAUCE: AppArmor: Tell git to ignore generated include files + - LP: #419505 + + [ Stefan Bader ] + + * [Upstream] acpi: video: Loosen strictness of video bus detection code + - LP: #333386 + * SAUCE: Remove ov511 driver from ubuntu subdirectory + + [ Tim Gardner ] + + * [Config] Exclude char-modules from non-x86 udeb creation + * SAUCE: Notify the ACPI call chain of AC events + * [Config] CONFIG_SATA_VIA=m + - LP: #403385 + * [Config] Build in all phylib support modules. + * [Config] Don't fail when sub-flavour files are missing + - LP: #423426 + * [Config] Set CONFIG_LSM_MMAP_MIN_ADDR=0 + - LP: #423513 + + [ Upstream ] + + * Rebased against v2.6.31-rc9 + + -- Andy Whitcroft Mon, 07 Sep 2009 11:33:45 +0100 + +linux (2.6.31-9.29) karmic; urgency=low + + [ Leann Ogasawara ] + + * [Upstream] agp/intel: support for new chip variant of IGDNG mobile + - LP: #419993 + * [Config] d-i/modules: Add new char-modules file, initialize with + intel-agp + - LP: #420605 + + [ Upstream ] + + * Rebased against 2.6.31-rc8 plus some inotify regression patches: + up through git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git + adda766193ea1cf3137484a9521972d080d0b7af. + + -- Tim Gardner Fri, 28 Aug 2009 06:31:30 -0600 + +linux (2.6.31-8.28) karmic; urgency=low + + [ Ike Panhc ] + + * [Config] Let nic-shared-modules depends on crypto-modules + - LP: #360966 + + [ Leann Ogasawara ] + + * [Upstream] (drop after 2.6.31) drm/i915: increase default latency + constant + - LP: #412492 + + [ Mario Limonciello ] + + * [Upstream]: (drop after 2.6.31) dell-laptop: don't change softblock + status if HW switch is disabled + - LP: #418721 + * [Upstream]: (drop after 2.6.31) compal-laptop: Add support for known + Compal made Dell laptops + * [Upstream]: (drop after 2.6.31) compal-laptop: Replace sysfs support + with rfkill support + + [ Tim Gardner ] + + * [Config] Add acpiphp to virtual sub-flavour + - LP: #364916 + * Drop KSM patch set for now because of instabilities with encrypted swap. + - LP: #418781 + + -- Tim Gardner Wed, 26 Aug 2009 08:14:26 -0600 + +linux (2.6.31-7.27) karmic; urgency=low + + [ Tim Gardner ] + + * [Config] updateconfigs updateportsconfigs after 2.6.31-rc7 rebase + * SAUCE: (drop after 2.6.31) Added KSM from mmotm-2009-08-20-19-18 + Replaces previous ksm patches from 2.6.31-6.25 + * [Config] KSM=y + + [ Upstream ] + + * Rebased against v2.6.31-rc7 + + -- Tim Gardner Sat, 22 Aug 2009 20:32:11 -0600 + +linux (2.6.31-6.26) karmic; urgency=low + + [ Andy Whitcroft ] + + * [Config] enable CONFIG_AUFS_BR_RAMFS + - LP: #414738 + * split out debian directory ready for abstraction + * add printdebian target to find branch target + * abstracted debian -- debian/files is not abstracted + * abstracted debian -- packages must be built in debian/ + * abstracted debian -- kernel-wedge needs to work in debian/ + * abstracted debian -- ensure we install the copyright file + * abstracted-debian -- drop the debian directories from headers + * abstracted-debian -- drop the debian directories from headers part 2 + * SAUCE: ubuntu-insert-changes -- follow abstracted debian + * [Upstream] aoe: ensure we initialise the request_queue correctly V2 + - LP: #410198 + + [ Luke Yelavich ] + + * [Config] Ports: Disable CONFIG_CPU_FREQ_DEBUG on powerpc-smp + * [Config] Ports: Re-enable windfarm modules on powerpc64-smp + - LP: #413150 + * [Config] Ports: Build all cpu frequency scaling governors into ports + kernels + * [Config] Ports: Build ext2 and ext3 modules into ports kernels + * [Config] Ports: CONFIG_PACKET=y for all ports kernels + * [Config] Ports: Enable PS3 network driver + + [ Stefan Bader ] + + * abstracted debian -- call $(DEBIAN)/rules using make + + [ Tim Gardner ] + + * [Config] Abstract the debian directory + * SAUCE: Improve error reporting in postinst + - LP: #358564 + + -- Tim Gardner Sun, 16 Aug 2009 20:33:28 -0600 + +linux (2.6.31-6.25) karmic; urgency=low + + [ Andy Whitcroft ] + + * script to generate Ubuntu changes from changelog + * [Config] standardise ANDROID options + * [Config] standardise CONFIG_ATM as module + * [Config] standardise CONFIG_LIB80211 as module + * [Config] disable CONFIG_PRINT_QUOTA_WARNING + * [Config] set CONFIG_CRAMFS as module + * [Config] enable CONFIG_DAB and modules + * [Config] set CONFIG_MAC80211_HWSIM as module + * [Config] set CONFIG_NET_CLS_FLOW as module + * [Config] set CONFIG_NF_CONNTRACK_SANE as module + * [Config] set CONFIG_NF_CT_PROTO_DCCP as module + * [Config] set CONFIG_RTC_DRV_DS1511 as module + * [Config] set CONFIG_RTC_DRV_R9701 as module + * [Config] set CONFIG_RTC_DRV_S35390A as module + * [Config] set CONFIG_TOIM3232_DONGLE as module + * [Config] standardise CONFIG_USB_MIDI_GADGET as module + * [Config] standardise CONFIG_USB_G_PRINTER as module + * [Config] standardise CONFIG_USB_SERIAL_IR as module + * [Config] set CONFIG_USB_SERIAL_IUU as module + * [Config] standardise CONFIG_USB_STORAGE_CYPRESS_ATACB as module + * [Config] standardise CONFIG_USB_STORAGE_ONETOUCH as module + * cleanup remains of dm-loop + * drop thinkpad ec and smapi support + * drop appleir + * [Config] update configs following rebase to v2.6.31-rc6 + * rebase to v2.6.31-rc6 + + [ Hugh Dickins ] + + * SAUCE: ksm patch 1, drop after 2.6.31 + * SAUCE: ksm patch 2, drop after 2.6.31 + * SAUCE: ksm patch 3, drop after 2.6.31 + * SAUCE: ksm patch 4, drop after 2.6.31 + * SAUCE: ksm patch 5, drop after 2.6.31 + * SAUCE: ksm patch 7, drop after 2.6.31 + + [ Izik Eidus ] + + * SAUCE: ksm patch 0, drop after 2.6.31 + * SAUCE: ksm patch 6, drop after 2.6.31 + * SAUCE: ksm patch 8, drop after 2.6.31 + * SAUCE: ksm patch 9, drop after 2.6.31 + + [ Luke Yelavich ] + + * [Config] Ports: Re-add PS3 modules to udebs + + [ Michael Casadevall ] + + * [Config] Update SPARC config and d-i files to reflect what can be built + + [ Tim Gardner ] + + * [Config] Removed armel package support + * [Config] Enabled CONFIG_KSM=y + + [ Upstream Kernel Changes ] + + * Rebased against v2.6.31-rc6 + * ARM: Cleanup: Revert "ARM: Add more cache memory types macros" + * ARM: Cleanup: Revert "Do not use OOB with MLC NAND" + * ARM: Cleanup: Revert "ARM: Make ARM arch aware of ubuntu/ drivers" + * ARM: Cleanup: Revert "ARM: IMX51: Make video capture drivers compile" + * ARM: Cleanup: Revert "ARM: IMX51: Fix isl29003 HWMON driver for i2c + changes" + * ARM: Cleanup: Revert "ARM: IMX51: IPU irq handler deadlock fix" + * ARM: Cleanup: Revert "ARM: IMX51: Babbage 2.5 needs a different system + revision" + * ARM: Cleanup: Revert "ARM: IMX51: Compile-in the IMX51 cpufreq driver + by default" + * ARM: Cleanup: Revert "ARM: IMX51: Enable ZONE_DMA for ARCH_MXC" + * ARM: Cleanup: Revert "ARM: IMX51: Make ARCH_MXC auto-enable + ARCH_MXC_CANONICAL" + * ARM: Cleanup: Revert "ARM: IMX51: Unconditionally disable + CONFIG_GPIOLIB" + * ARM: Cleanup: Revert "ARM: IMX51: Minimal changes for USB to work on + 2.6.31" + * ARM: Cleanup: Revert "ARM: IMX51: Fix plat-mxc/timer.c to handle imx51" + * ARM: Cleanup: Revert "ARM: IMX51: Make it compile." + * ARM: Cleanup: Revert "ARM: IMX51: Clean-up the craziness of including + mxc_uart.h _everywhere_" + * ARM: Cleanup: Revert "ARM: IMX51: Move board-mx51* header files to the + correct location" + * ARM: Cleanup: Revert "ARM: IMX51: Changed from snd_card_new to + snd_card_create" + * ARM: Cleanup: Revert "ARM: IMX51: Fix up merge error in Kconfig" + * ARM: Cleanup: Revert "ARM: IMX51: mxc_timer_init prototype" + * ARM: Cleanup: Revert "ARM: IMX51: Removed the mxc_gpio_port structure." + * ARM: Cleanup: Revert "ARM: IMX51: Added external declaration for + mxc_map_io." + * ARM: Cleanup: Revert "ARM: IMX51: Get to bus_id by calling dev_name." + * ARM: Cleanup: Revert "ARM: IMX51: Get to bus_id by calling dev_name." + * ARM: Cleanup: Revert "ARM: IMX51: snd_soc_machine structure replaced + with snd_soc_card." + * ARM: Cleanup: Revert "ARM: IMX51: codec structure was moved to the card + structure" + * ARM: Cleanup: Revert "ARM: IMX51: Hack to add defines for + DMA_MODE_READ/WRITE/MASK" + * ARM: Cleanup: Revert "ARM: IMX51: Add SoC and board support for + Freescale mx51 platform" + * Driver core: add new device to bus's list before probing + * [Upstream] (drop after 2.6.31) ALSA: hda - Reduce click noise at + power-saving + - LP: #381693, #399750, #380892 + + -- Andy Whitcroft Fri, 14 Aug 2009 11:32:23 +0100 + +linux (2.6.31-5.24) karmic; urgency=low + + [ Amit Kucheria ] + + * ARM: IMX51: Make video capture drivers compile + * [Config] IMX51: Config updates + + [ Andy Whitcroft ] + + * remove leftovers of dm-bbr + + [ Leann Ogasawara ] + + * Add pata_cs5535 to pata-modules + - LP: #318805 + + [ Luke Yelavich ] + + * [Config] CONFIG_PPC64=y for powerpc64-smp + * [Config] Set the maximum number of CPUs to 1024 for powerpc64-smp + * [Config] CONFIG_PPC_PS3=y for powerpc64-smp + * [Config] CONFIG_PPC_MAPLE=y on powerpc64-smp + * [Config] CONFIG_PPC_PASEMI=y on powerpc64-smp + * [Config] CONFIG_CPU_FREQ_PMAC64=y on powerpc64-smp + * [Config] Enable all PS3 drivers in powerpc64-smp + + [ Mario Limonciello ] + + * LIRC -- fix lirc-i2c 2.6.31 compilation + + [ Matthew Garrett ] + + * [Upstream] dell-laptop: Fix rfkill state queries + + [ Tim Gardner ] + + * [Config] Ignore armel ABI and module changes + * [Config] Update configs after rebase against 2.6.31-rc5 + + [ Upstream ] + + * Rebased to 2.6.31-rc5 + + -- Andy Whitcroft Tue, 28 Jul 2009 10:10:09 +0100 + +linux (2.6.31-4.23) karmic; urgency=low + + [ Andy Whitcroft ] + + * AUFS -- update to aufs2-30 20090727 + * [Config] enable AUFS FUSE support + + [ Luke Yelavich ] + + * [Config] CONFIG_JFS_FS=m on sparc + + [ Tim Gardner ] + + * [Upstream] dell-laptop: Fix rfkill state setting. + + -- Andy Whitcroft Mon, 27 Jul 2009 11:11:47 +0100 + +linux (2.6.31-4.22) karmic; urgency=low + + [ Amit Kucheria ] + + * ARM: IMX51: Add SoC and board support for Freescale mx51 platform + * ARM: IMX51: Move board-mx51* header files to the correct location + * ARM: IMX51: Clean-up the craziness of including mxc_uart.h _everywhere_ + * ARM: IMX51: Make it compile. + * ARM: IMX51: Unconditionally disable CONFIG_GPIOLIB + * ARM: IMX51: Make ARCH_MXC auto-enable ARCH_MXC_CANONICAL + * ARM: IMX51: Enable ZONE_DMA for ARCH_MXC + * ARM: IMX51: Compile-in the IMX51 cpufreq driver by default + * ARM: IMX51: Fix isl29003 HWMON driver for i2c changes + * ARM: USB: musb: Refer to musb_otg_timer_func under correct #ifdef + * ARM: staging: udlfb: Add vmalloc.h include + * UBUNTU [Config]: Bring imx51 config upto date with other flavours + + [ Brad Figg ] + + * ARM: IMX51: Hack to add defines for DMA_MODE_READ/WRITE/MASK + * ARM: IMX51: codec structure was moved to the card structure + * ARM: IMX51: snd_soc_machine structure replaced with snd_soc_card. + * ARM: IMX51: Get to bus_id by calling dev_name. + * ARM: IMX51: Get to bus_id by calling dev_name. + * ARM: IMX51: Added external declaration for mxc_map_io. + * ARM: IMX51: Removed the mxc_gpio_port structure. + * ARM: IMX51: mxc_timer_init prototype + * ARM: IMX51: Fix up merge error in Kconfig + * ARM: IMX51: Changed from snd_card_new to snd_card_create + + [ Dinh Nguyen ] + + * ARM: IMX51: Fix plat-mxc/timer.c to handle imx51 + * ARM: IMX51: Minimal changes for USB to work on 2.6.31 + * ARM: IMX51: Babbage 2.5 needs a different system revision + * ARM: IMX51: IPU irq handler deadlock fix + + [ Tim Gardner ] + + * [Config] Enabled CONFIG_CAN=m + - LP: #327243 + * [Config] Enabled CONFIG_SERIAL=m + - LP: #397189 + + -- Tim Gardner Fri, 24 Jul 2009 06:19:10 -0600 + +linux (2.6.31-4.21) karmic; urgency=low + + [ Amit Kucheria ] + + * dm-raid-4-5: Add missing brackets around test_bit() + + [ John Johansen ] + + * AppArmor: Fix change_profile failing lpn401931 + * AppArmor: Fix determination of forced AUDIT messages. + * AppArmor: Fix oops in auditing of the policy interface offset + + -- Andy Whitcroft Thu, 23 Jul 2009 19:18:30 +0100 + +linux (2.6.31-4.20) karmic; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: iscsitarget -- update to SVN revision r214 + * SAUCE: iscsitarget -- renable driver + * [Config] consolidate lpia/lpia and i386/generic configs + * [Config] enable CRYPTO modules for all architectures + * [Config] enable cryptoloop + * [Config] enable various filesystems for armel + * [Config] sync i386 generic and generic-pae + * [Config] add the 386 (486 processors and above) flavour + * [Config] re-set DEFAULT_MMAP_MIN_ADDR + - LP: #399914 + * add genconfigs/genportsconfigs to extract the built configs + * updateconfigs -- alter concatenation order allow easier updates + * intelfb -- INTELFB now conflicts with DRM_I915 + * printchanges -- rebase tree does not have stable tags use changelog + * AppArmor: fix argument size missmatch on 64 bit builds + + [ Ike Panhc ] + + * Ship bnx2x firmware in nic-modules udeb + - LP: #360966 + + [ Jeff Mahoney ] + + * AppArmor: fix build failure on ia64 + + [ John Johansen ] + + * AppArmour: ensure apparmor enabled parmater is off if AppArmor fails to + initialize. + * AppArmour: fix auditing of domain transitions to include target profile + information + * AppArmor: fix C99 violation + * AppArmor: revert reporting of create to write permission. + * SAUCE: Add config option to set a default LSM + * [Config] enable AppArmor by default + * AppArmor: Fix NULL pointer dereference oops in profile attachment. + + [ Keith Packard ] + + * SAUCE: drm/i915: Allow frame buffers up to 4096x4096 on 915/945 class + hardware + - LP: #351756 + + [ Luke Yelavich ] + + * [Config] add .o files found in arch/powerpc/lib to all powerpc kernel + header packages + - LP: #355344 + + [ Michael Casadevall ] + + * [Config] update SPARC config files to allow success build + + [ Scott James Remnant ] + + * SAUCE: trace: add trace_event for the open() syscall + + [ Stefan Bader ] + + * SAUCE: jfs: Fix early release of acl in jfs_get_acl + - LP: #396780 + + [ Tim Gardner ] + + * [Upstream] Fix Soltech TA12 volume hotkeys not sending key release + - LP: #397499 + * [Upstream] USB Option driver - Add USB ID for Novatel MC727/U727/USB727 + refresh + - LP: #365291 + * [Config] SSB/B44 are common across all arches/flavours. + + [ Upstream ] + + * Rebased to 2.6.31-rc4 + + -- Andy Whitcroft Thu, 23 Jul 2009 08:41:39 +0100 + +linux (2.6.31-3.19) karmic; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Config] Disabled NDISWRAPPER" + * ndiswrapper -- fix i386 compilation failures on cmpxchg8b + * AUFS -- export various core functions + * AUFS -- export various core functions -- fixes + * AUFS -- core filesystem + * AUFS -- track changes in v2.6.31 + * [Config] Enable AUFS + * droppped 'iwl3945: do not send scan command if channel count zero' as it + is already upstream but failed to auto-drop on rebase. + + [ Eric Paris ] + + * SAUCE: fsnotify: use def_bool in kconfig instead of letting the user + choose + * SAUCE: inotify: check filename before dropping repeat events + * SAUCE: fsnotify: fix inotify tail drop check with path entries + + -- Andy Whitcroft Tue, 14 Jul 2009 12:52:55 +0100 + +linux (2.6.31-3.18) karmic; urgency=low + + [ Andy Whitcroft ] + + * Revert "Add splice-2.6.23.patch from AUFS to export a symbol needed by + AUFS" + * Revert "Add put_filp.patch from AUFS to export a symbol needed by AUFS" + * Revert "Add sec_perm-2.6.24.patch from AUFS - export + security_inode_permission" + * clear out left over AUFS files and modifications + + [ Luke Yelavich ] + + * [Config] Enable CONFIG_USB_ISP116X_HCD on sparc + * SAUCE: Explicitly include header files to allow apparmor to build on + powerpc + * [Config] Enable CONFIG_BLK_DEV_IDECD on powerpc + + [ Tim Gardner ] + + * [Config] Dropped ubuntu/misc/wireless/acx + * [Config] Disabled NDISWRAPPER until the compile issues are fixed. + + [ Upstream ] + + * Rebased to 2.6.31-rc3 + + -- Andy Whitcroft Fri, 10 Jul 2009 18:59:33 +0100 + +linux (2.6.31-2.17) karmic; urgency=low + + [ Andy Whitcroft ] + + * [Config] CONFIG_BLK_DEV_CRYPTOLOOP=m for sparc + * compcache -- remove redundant Kconfig entries part 2 + * compcache -- clean up CCFLAGS declarations + * [Config] enable AppArmor + * AppArmor: fix operator precidence issue in as_path_link + + [ John Johansen ] + + * AppArmor security module + * AppArmor: Correct mapping of file permissions. + * AppArmor: Turn auditing of ptrace on + + [ Luke Yelavich ] + + * [Config] disable CONFIG_DM_RAID45 on powerpc + + -- Andy Whitcroft Fri, 10 Jul 2009 15:02:05 +0100 + +linux (2.6.31-2.16) karmic; urgency=low + + [ Andy Whitcroft ] + + * compcache -- remove redundant Kconfig entries + added ignore and ignore.modules for all arches since the compcache update + changes the modules names as well as some compcache ABI values. + + [ Manoj Iyer ] + + * SAUCE: updated dm-raid45 module version to 2009.04.24 (2.6.30-rc3) + * SAUCE: update compcache version to 0.5.3 + + [ Tim Gardner ] + + * [Config]: Fix sparc FTBS by adding ignore.modules + + -- Tim Gardner Mon, 06 Jul 2009 13:35:29 -0600 + +linux (2.6.31-2.15) karmic; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: default ATI Radeon KMS to off until userspace catches up + * [Config] Update configs following rebase to 2.6.31-rc2 + * [Config] update ports configs following update to 2.6.31-rc2 + + [ Luke Yelavich ] + + * [Config] powerpc - Disable CONFIG_RDS + + [ Matt Zimmerman ] + + * Rename linux-doc-PKGVER to linux-doc and clean up its description + - LP: #382115 + + [ Upstream Kernel Changes ] + + * rebased to mainline 2.6.31-rc2 + + -- Andy Whitcroft Sat, 04 Jul 2009 17:39:13 +0100 + +linux (2.6.31-1.14) karmic; urgency=low + + [ Andy Whitcroft ] + + * update ndiswrapper to 1.55 + * remove leftovers of gfs + * [Config] powerpc: enable CONFIG_PPC_DISABLE_WERROR + + [ Luke Yelavich ] + + * [Config] re-enable and build the ide-pmac driver into powerpc kernels + * [Config] Build the ServerWorks Frodo / Apple K2 SATA driver into the + kernel + + [ Manoj Iyer ] + + * Remove snd-bt-sco ubuntu driver + + [ Michael Casadevall ] + + * [Config] updates ia64 config and d-i folders to allow succesful build + * [Config] Update powerpc and sparc for 2.6.31 + + [ Upstream Kernel Changes ] + + * intel-iommu: fix Identity Mapping to be arch independent + - LP: #384695 + * ACPI: video: prevent NULL deref in acpi_get_pci_dev() + + -- Andy Whitcroft Tue, 30 Jun 2009 17:47:32 +0100 + +linux (2.6.31-1.13) karmic; urgency=low + + [ Andy Whitcroft ] + + * REBASE: rebased to mainline 2.6.31-rc1 + - "UBUNTU: SAUCE: UHCI USB quirk for resume" + no longer applies, using deprecated interfaces, LPIA only, dropped + - "UBUNTU: SAUCE: Mask off garbage in Dell WMI scan code data" + changes now upstream, dropped + * [Config] Update configs following rebase to 2.6.31-rc1 + * [Config] update ports configs following update to 2.6.31-rc1 + + * [Config] disable broken staging driver CONFIG_STLC45XX + * SAUCE: fix compcache to use updates accessors + * [Config] disable staging driver CONFIG_VT6655 + * SAUCE: fix DRDB to use updates accessors + * [Disable] ndiswrapper needs update + * [Disable] LIRC I2C needs update + * [Disable] CONFIG_LENOVO_SL_LAPTOP needs update + * [Config] disable I2C_DESIGNWARE does not compile + * [Config] disable CONFIG_TLSUP for lpia + * [Config] disable CONFIG_FB_UDL for arm + * SAUCE: disable adding scsi headers to linux-libc-dev + + [ Mario Limonciello ] + + * SAUCE: Add LIRC drivers + + -- Andy Whitcroft Thu, 25 Jun 2009 12:06:22 +0100 + +linux (2.6.30-10.12) karmic; urgency=low + + [ Andy Whitcroft ] + + * [Config] split out the ports configs into their own family + * [Config] update configs following introduction of ports family + + [ Upstream Kernel Changes ] + + * Revert "Rename linux-doc-PKGVER to linux-doc and clean up its + description". Fixes linux-doc package name conflicts for now. + - LP: #382115 + + -- Tim Gardner Mon, 22 Jun 2009 09:17:14 -0600 + +linux (2.6.30-10.11) karmic; urgency=low + + [ Amit Kucheria ] + + * [Config] Comment splitconfig.pl and misc cleanup + * [Config] Rename all configs to the new naming scheme + * [Config] Splitconfig rework + * [Config] Rename scripts/misc/oldconfig to kernelconfig + * [Config] Fix build system for new config split + * [Config] Run updateconfigs after the splitconfig rework + + [ Andy Whitcroft ] + + * Revert "SAUCE: Default to i915.modeset=0 if CONFIG_DRM_I915_KMS=y" + * [Config] standardise CONFIG_STAGING=y + * [Config] standardise CONFIG_RD_LZMA=y + * [Config] CONFIG_PCI_IOV=y + * [Config] CONFIG_PCI_STUB=m + * [Config] merge kernel configs more agressively + + [ Colin Watson ] + + * [Config] Run kernel-wedge in $(builddir) rather than at the top level + * [Config] Add support for including firmware in udebs + * [Config] Ship bnx2 firmware in nic-modules udeb + - LP: #384861 + + [ Luke Yelavich ] + + * [Config] ports - Import of ports architectures into kernel packaging + infrastructure + * [Config] ports - Do not update ports kernel configurations by default + * [Config] ports - Disable ABI checking for ports architectures + * [Config] ports - Build drivers in ubuntu sub-directory on powerpc + * [Config] ports - Add control.d/vars.* files for ports architectures + * [Config] ports - Add ports architectures for linux-libc-dev + * [Config] ports - Create powerpc specific message-modules and + block-modules udebs + * [Config] ports - Add configuration files for ports architectures + + [ Manoj Iyer ] + + * [Config] Enable CONFIG_BLK_DEV_AEC62XX=m for amd64 and i386 + - LP: #329864 + + [ Michael Casadevall ] + + * [Config] ports - Fix compression of kernels + + [ Stefan Bader ] + + * [Upstream] mmc: prevent dangling block device from accessing stale + queues + - LP: #383668 + + [ Tim Gardner ] + + * [Config] Recommend grub-pc in linux-image + - LP: #385741 + * [Config] Implement i386 generic and generic-pae flavours + * [Config] ports - Add control info after integrating ports arches + * [Config] Removed auto-generated files from git + * [Config] Added netxen_nic to nic-modules + - LP: #389603 + + [ Matt Zimmerman ] + + * Rename linux-doc-PKGVER to linux-doc and clean up its description + - LP: #382115 + + -- Tim Gardner Mon, 15 Jun 2009 14:38:26 -0600 + +linux (2.6.30-9.10) karmic; urgency=low + + [ Andy Whitcroft ] + + * [Config] CONFIG_SECURITY_TOMOYO=y (amd64, i386, lpia) + * [Config] CONFIG_KEXEC_JUMP=y (amd64, lpia) + * [Config] CONFIG_LENOVO_SL_LAPTOP=m (amd64, lpia) + * [Config] CONFIG_POHMELFS_CRYPTO=y (i386, amd64) + * [Config] CONFIG_SERIAL_MAX3100=m (i386, amd64, lpia) + * [Config] CONFIG_VIDEO_GO7007=m (amd64, i386) + + [ Upstream Kernel Changes ] + + * rebased to 2.6.30 final + + -- Andy Whitcroft Fri, 05 Jun 2009 11:42:53 +0100 + +linux (2.6.30-8.9) karmic; urgency=low + + [ Andy Whitcroft ] + + * Config update removed the following options: + CONFIG_EDAC_AMD8111=m + CONFIG_EDAC_AMD8131=m + + [ Upstream Kernel Changes ] + + * rebased to 2.6.30-rc8 + + -- Andy Whitcroft Wed, 03 Jun 2009 09:21:13 +0100 + +linux (2.6.30-7.8) karmic; urgency=low + + [ Andy Whitcroft ] + + * Enabled NEW configration options: + Paravirtualization layer for spinlocks (PARAVIRT_SPINLOCKS) [N/y/?] Y + Cisco FNIC Driver (FCOE_FNIC) [N/m/y/?] M + + [ Upstream Kernel Changes ] + + * rebased to 2.6.30-rc7 + + -- Andy Whitcroft Sat, 23 May 2009 23:47:24 +0100 + +linux (2.6.30-6.7) karmic; urgency=low + + [ Andy Whitcroft ] + + * Dropped: UBUNTU: SAUCE: input: Blacklist digitizers from joydev.c (now + upstream) + + [ Upstream Kernel Changes ] + + * rebased to 2.6.30-rc6 + + -- Andy Whitcroft Mon, 18 May 2009 18:05:54 +0100 + +linux (2.6.30-5.6) karmic; urgency=low + + [ Tim Gardner ] + + * [Config] Enable Keyspan USB serial device firmware in kernel module + - LP: #334285 + + [ Upstream Kernel Changes ] + + * rebased to 2.6.30-rc5 + + -- Tim Gardner Mon, 11 May 2009 12:02:16 -0600 + +linux (2.6.30-4.5) karmic; urgency=low + + [ Colin Watson ] + + * Build-Conflict with findutils (= 4.4.1-1ubuntu1), to avoid + /usr/include/asm/* going missing + - LP: #373214 + + -- Stefan Bader Fri, 08 May 2009 11:09:08 +0200 + +linux (2.6.30-3.4) karmic; urgency=low + + [ Kees Cook ] + + * SAUCE: [x86] implement cs-limit nx-emulation for ia32 + - LP: #369978 + + [ Stefan Bader ] + + * SAUCE: input: Blacklist digitizers from joydev.c + - LP: #300143 + + -- Tim Gardner Fri, 01 May 2009 14:00:42 -0600 + +linux (2.6.30-2.3) karmic; urgency=low + + [ Tim Gardner ] + + * [Config] Enabled CC_STACKPROTECTOR=y for all x86en + - LP: #369152 + * SAUCE: Default to i915_modeset=0 if CONFIG_DRM_I915_KMS=y + * [Config] CONFIG_DRM_I915_KMS=y + * [Config] Set CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR to appropriate ARCH + minimums + + [ Upstream Kernel Changes ] + + * rebased to 2.6.30-rc4 + + -- Tim Gardner Thu, 30 Apr 2009 09:17:05 -0600 + +linux (2.6.30-1.2) karmic; urgency=low + + [ Tim Gardner ] + + * [Config] armel: disable staging drivers, fixes FTBS + * [Config] armel imx51: Disable CONFIG_MTD_NAND_MXC, fixes FTBS + + [ Upstream Kernel Changes ] + + * mpt2sas: Change reset_type enum to avoid namespace collision. + Submitted upstream. + + -- Tim Gardner Tue, 28 Apr 2009 16:54:41 -0600 + +linux (2.6.30-1.1) karmic; urgency=low + + * Initial release after rebasing against v2.6.30-rc3 + + -- Tim Gardner Thu, 12 Mar 2009 19:16:07 -0600 + --- linux-4.8.0.orig/debian.master/changelog.historical +++ linux-4.8.0/debian.master/changelog.historical @@ -0,0 +1,4171 @@ + +linux (2.6.28-9.31) jaunty; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: cpufreq-nforce2: probe failures are not errors + - LP: #332170 + * SAUCE: mmc: add MODALIAS linkage for MMC/SD devices + - LP: #30335 + * remove test-suspend script + - LP: #333856 + + [ Kees Cook ] + + * handle relative paths in modules.dep + Fixes 2.6.28-9.30 FTBS. + + [ Upstream Kernel Changes ] + + * ricoh_mmc: Handle newer models of Ricoh controllers + + -- Tim Gardner Wed, 11 Mar 2009 08:19:24 -0600 + +linux (2.6.28-9.30) jaunty; urgency=low + + [ Amit Kucheria ] + + * ARM:mx51 Add SoC and board support for mx51 platforms + * ARM:mx51 Add CONFIG_ARCH_MXC_CANONICAL to disable parts of Freescale's + code + * MMC: Add support for 8-bit cards + * Add ARM:MX51 SoC support to the build system + * ARM: Make ARM arch aware of ubuntu/ drivers + * ARM: Add imx51 configuration + * Disable d-i modules for imx51 and mv78xx0 + * Disable Apparmor on boot for ARM + * Updating imx51 config + + [ Jason Liu ] + + * Do not use OOB with MLC NAND + + [ Richard Zhu ] + + * Support the eMMC4.3 card + + [ Rob Herring ] + + * ARM: Add more cache memory types macros + + [ Tim Gardner ] + + * Set CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y for i386/amd64/lpia + + [ Manoj Iyer ] + + * Enable CONFIG_RTL8187SE=m + + [ Upstream Kernel Changes ] + + * USB: EHCI: slow down ITD reuse + - LP: #329437 + + -- Tim Gardner Sun, 08 Mar 2009 14:14:15 -0600 + +linux (2.6.28-9.29) jaunty; urgency=low + + [ Andy Whitcroft ] + + * link-headers -- only link directories which do not already exist + - LP: #315252 + + [ Daniel Marjamäki ] + + * SAUCE: (drop after 2.6.28) netxen: fix memory leak in + drivers/net/netxen_nic_init.c + - LP: #330813 + + [ Dhananjay Phadke ] + + * SAUCE: (drop after 2.6.28) netxen: fix endianness in firmware commands + - LP: #330813 + * SAUCE: (drop after 2.6.28) netxen: fix ipv6 offload and tx cleanup + - LP: #330813 + * SAUCE: (drop after 2.6.28) netxen: fix link speed reporting for some + boards + - LP: #330813 + * SAUCE: (drop after 2.6.28) netxen: firmware init fix + - LP: #330813 + * SAUCE: (drop after 2.6.28) netxen: cleanup mac list on driver unload + - LP: #330813 + * SAUCE: (drop after 2.6.28) netxen: hold tx lock while sending firmware + commands + - LP: #330813 + * SAUCE: (drop after 2.6.28) netxen: handle dma mapping failures + - LP: #330813 + * SAUCE: (drop after 2.6.28) netxen: avoid invalid iounmap + - LP: #330813 + * SAUCE: (drop after 2.6.28) netxen: include ipv6.h (fixes build failure) + - LP: #330813 + * SAUCE: (drop after 2.6.28) netxen: fix vlan tso/checksum offload + - LP: #330813 + * SAUCE: (drop after 2.6.28) netxen: reduce memory footprint + - LP: #330813 + * SAUCE: (drop after 2.6.28) netxen: revert jumbo ringsize + - LP: #330813 + * SAUCE: (drop after 2.6.28) netxen: fix msi-x interrupt handling + - LP: #330813 + * SAUCE: (drop after 2.6.28) netxen: remove pcie workaround + - LP: #330813 + + [ Hannes Eder ] + + * SAUCE: (drop after 2.6.28) drivers/net/netxen: fix sparse warnings: use + NULL pointer instead of plain integer + - LP: #330813 + + [ Huaxu Wan ] + + * SAUCE: report rfkill changes event if interface is down + - LP: #193970 + + [ Tim Gardner ] + + * MV78XX0 must specify a target in the vars definition. + + [ Upstream Kernel Changes ] + + * Revert "ext4: wait on all pending commits in ext4_sync_fs()" + * jbd2: Fix return value of jbd2_journal_start_commit() + * jbd2: Avoid possible NULL dereference in + jbd2_journal_begin_ordered_truncate() + * ext4: Fix to read empty directory blocks correctly in 64k + * ext4: Fix lockdep warning + * ext4: Initialize preallocation list_head's properly + * ext4: Implement range_cyclic in ext4_da_writepages instead of + write_cache_pages + * ext4: Fix NULL dereference in ext4_ext_migrate()'s error handling + * ext4: Add fallback for find_group_flex + * ext4: Fix deadlock in ext4_write_begin() and ext4_da_write_begin() + * Added mv78xx0 flavor + + -- Tim Gardner Fri, 06 Mar 2009 06:13:31 -0700 + +linux (2.6.28-8.28) jaunty; urgency=low + + [ Alexey Starikovskiy ] + + * SAUCE: ACPI: EC: Limit workaround for ASUS notebooks even more + - LP: #288385 + + [ Scott James Remnant ] + + * SAUCE: Auto-load esp module when device opened. + * SAUCE: Auto-load bridge module when socket opened. + * SAUCE: Auto-load af_netlink module when socket opened. + * SAUCE: Auto-load wanrouter module when socket opened. + * SAUCE: Auto-load ip_queue module when socket opened. + * SAUCE: Auto-load ip6_queue module when socket opened. + * SAUCE: Auto-load cn module when socket opened. + * SAUCE: Auto-load scsi_transport_iscsi module when socket opened. + * SAUCE: Auto-load ftl module when device opened. + * SAUCE: Auto-load pcd module when device opened. + * SAUCE: Auto-load pf module when device opened. + * SAUCE: Auto-load nftl module when device opened. + * SAUCE: Auto-load mousedev module when psaux device opened. + * SAUCE: Auto-load mousedev module when /dev/input/mice opened. + * SAUCE: Auto-load rng-core module when device opened. + * SAUCE: Auto-load openprom module when device opened. + * SAUCE: Auto-load applicom module when device opened. + * SAUCE: Auto-load toshiba module when device opened. + * SAUCE: Auto-load cyclades module when device opened. + * SAUCE: Auto-load riscom8 module when device opened. + * SAUCE: Auto-load specialix module when device opened. + * SAUCE: Auto-load videodev module when device opened. + * SAUCE: Auto-load i2c_dev module when device opened. + * SAUCE: Auto-load mtdchar module when device opened. + * SAUCE: Auto-load pt module when device opened. + * SAUCE: Auto-load pg module when device opened. + * SAUCE: Auto-load cdc_acm module when device opened. + * SAUCE: Auto-load msr module when device opened. + * SAUCE: Auto-load cpuid module when device opened. + * SAUCE: quickcam: Enable double-buffering by default + * SAUCE: libata: Ignore HPA by default. + * SAUCE: hostap: Change initial operation mode to managed (infra) + * SAUCE: floppy: Provide a PnP device table in the module. + - LP: #255651 + * SAUCE: Auto-load mwave module when device opened. + * Build CONFIG_FUSE_FS into kernel, not as module. + + [ Stefan Bader ] + + * Enable build of ext4 as a module on LPIA + - LP: #331848 + + [ Tim Gardner ] + + * Update configs to fix LPIA FTBS + + -- Tim Gardner Thu, 05 Mar 2009 10:43:24 -0700 + +linux (2.6.28-8.27) jaunty; urgency=low + + [ Amit Kucheria ] + + * Updating configs (arm:ixp4xx) + + [ Andy Whitcroft ] + + * SAUCE: enable Intel HDMI output + + [ Manoj Iyer ] + + * SAUCE: Added quirk for Linksys WUSB600N USB wifi-n networking adapter + - LP: #323473 + + [ Steve Beattie ] + + * fix apparmor memory leak on unlinked file ops + - LP: #329489 + + [ Tim Gardner ] + + * SAUCE: Dell XPS710 reboot quirk + - LP: #323592 + * SAUCE: (drop after 2.6.28) ieee80211: Add infrastructure to obsolete + scan results + - LP: #336055 + * Add modules.order to the linux-image package. + + [ Upstream Kernel Changes ] + + * iwlwifi: fix time interval misuse in iwl_poll_{direct_}bit + * x86: only scan the root bus in early PCI quirks + - LP: #267295 + * ALSA: hda - Intel HDMI audio support + * ALSA: hda - Fix unused function in patch_intelhdmi.c + * ALSA: handle SiI1392 HDMI codec in patch_intelhdmi.c + * ALSA: hda-intel: reorder HDMI audio enabling sequence + * ALSA: introduce snd_print_pcm_rates() + * ALSA: create hda_eld.c for ELD routines and proc interface + * ALSA: ELD proc interface for HDMI sinks + * ALSA: hda: make standalone hdmi_fill_audio_infoframe() + * ALSA: hda: make global snd_print_channel_allocation() + * ALSA: hda: HDMI channel allocations for audio infoframe + * ALSA: hda: HDMI channel mapping cleanups + * ALSA: hda: minor code cleanups + * ALSA: hda: rename sink_eld to hdmi_eld + * ALSA: hda - Release ELD proc file + * ALSA: hda - minor HDMI code cleanups + * ALSA: hda - report selected CA index for Audio InfoFrame + * ALSA: hda - Add Intel vendor id string + + -- Tim Gardner Wed, 25 Feb 2009 14:23:46 -0700 + +linux (2.6.28-8.26) jaunty; urgency=low + + [ Amit Kucheria ] + + * Updating configs (armel:ixp4xx) + - LP: #331510 + + [ Tim Gardner ] + + * Add more missing modules + + -- Tim Gardner Tue, 24 Feb 2009 06:58:53 -0700 + +linux (2.6.28-8.25) jaunty; urgency=low + + [ Scott James Remnant ] + + * SAUCE: Prefer powernow-k8 to acpi-cpufreq + * Change CONFIG_X86_P4_CLOCKMOD to be a module again. + + [ Tim Gardner ] + + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Initialize the new + group descriptor when resizing the filesystem" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Add sanity check + to make_indexed_dir" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: only use + i_size_high for regular files" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Add sanity checks + for the superblock before mounting the filesystem" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Fix + s_dirty_blocks_counter if block allocation failed with nodelalloc" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Init the complete + page while building buddy cache" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Don't allow new + groups to be added during block allocation" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: mark the + blocks/inode bitmap beyond end of group as used" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Use new + buffer_head flag to check uninit group bitmaps initialization" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Fix the race + between read_inode_bitmap() and ext4_new_inode()" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Fix race between + read_block_bitmap() and mark_diskspace_used()" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: don't use blocks + freed but not yet committed in buddy cache init" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: cleanup mballoc + header files" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Use + EXT4_GROUP_INFO_NEED_INIT_BIT during resize" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Add blocks added + during resize to bitmap" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Don't overwrite + allocation_context ac_status" + * Revert "SAUCE: (revert before 2.6.28.y update) jbd2: Add barrier not + supported test to journal_wait_on_commit_record" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Widen type of + ext4_sb_info.s_mb_maxs[]" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: avoid ext4_error + when mounting a fs with a single bg" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Fix the delalloc + writepages to allocate blocks at the right offset." + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: tone down + ext4_da_writepages warnings" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Add support for + non-native signed/unsigned htree hash algorithms" + * Enabled X86_ACPI_CPUFREQ=y + + [ Upstream Kernel Changes ] + + * ath9k: quiet harmless ForceXPAon messages + - LP: #321474 + * [WATCHDOG] iTCO_wdt: fix SMI_EN regression 2 + - LP: #314050 + * pid: implement ns_of_pid + * mqueue: fix si_pid value in mqueue do_notify() + * powerpc/vsx: Fix VSX alignment handler for regs 32-63 + * sata_nv: give up hardreset on nf2 + * Fix Intel IOMMU write-buffer flushing + * SCSI: libiscsi: fix iscsi pool leak + * x86/cpa: make sure cpa is safe to call in lazy mmu mode + * sched: SCHED_OTHER vs SCHED_IDLE isolation + * x86, vm86: fix preemption bug + * Add support for VT6415 PCIE PATA IDE Host Controller + * ext2/xip: refuse to change xip flag during remount with busy inodes + * 3c505: do not set pcb->data.raw beyond its size + * Bluetooth: Fix TX error path in btsdio driver + * ext4: Add support for non-native signed/unsigned htree hash algorithms + * ext4: tone down ext4_da_writepages warnings + * ext4: Fix the delalloc writepages to allocate blocks at the right + offset. + * ext4: avoid ext4_error when mounting a fs with a single bg + * ext4: Widen type of ext4_sb_info.s_mb_maxs[] + * jbd2: Add barrier not supported test to journal_wait_on_commit_record + * ext4: Don't overwrite allocation_context ac_status + * ext4: Add blocks added during resize to bitmap + * ext4: Use EXT4_GROUP_INFO_NEED_INIT_BIT during resize + * ext4: cleanup mballoc header files + * ext4: don't use blocks freed but not yet committed in buddy cache init + * ext4: Fix race between read_block_bitmap() and mark_diskspace_used() + * ext4: Fix the race between read_inode_bitmap() and ext4_new_inode() + * ext4: Use new buffer_head flag to check uninit group bitmaps + initialization + * ext4: mark the blocks/inode bitmap beyond end of group as used + * ext4: Don't allow new groups to be added during block allocation + * ext4: Init the complete page while building buddy cache + * ext4: Fix s_dirty_blocks_counter if block allocation failed with + nodelalloc + * ext4: Add sanity checks for the superblock before mounting the + filesystem + * ext4: only use i_size_high for regular files + * ext4: Add sanity check to make_indexed_dir + * ext4: Initialize the new group descriptor when resizing the filesystem + * Fix longstanding "error: storage size of '__mod_dmi_device_table' isn't + known" + * Linux 2.6.28.7 + + -- Tim Gardner Thu, 19 Feb 2009 06:45:55 -0700 + +linux (2.6.28-8.24) jaunty; urgency=low + + [ Scott James Remnant ] + + * Change CPU_FREQ_DEFAULT_GOV_ONDEMAND to y + * SAUCE: Link acpi-cpufreq.o first + + [ Tim Gardner ] + + * Build in CPU Frequency scaling drivers + + -- Tim Gardner Wed, 18 Feb 2009 06:12:24 -0700 + +linux (2.6.28-8.23) jaunty; urgency=low + + [ Andy Whitcroft ] + + * include the kernel configuration in the sub-flavour images + - LP: #328859 + + [ Tim Gardner ] + + * Revert "SAUCE: (drop after 2.6.28) [eCryptfs] Regression in unencrypted + filename symlinks" in favor of upstream commit. + * Fix compile issues with qc-usb + * SAUCE: (remove after 2.6.28) V4L/DVB (10216): saa7127: fix broken + S-Video with saa7129 + - LP: #329267 + + [ Upstream Kernel Changes ] + + * Subject:SAUCE: LP#193970 iwlagn: fix hw-rfkill while the interface is + down + - LP: #193970 + * x86, vmi: put a missing paravirt_release_pmd in pgd_dtor + * nbd: fix I/O hang on disconnected nbds + * mac80211: restrict to AP in outgoing interface heuristic + * w1: w1 temp calculation overflow fix + * zd1211rw: adding 0ace:0xa211 as a ZD1211 device + * zd1211rw: treat MAXIM_NEW_RF(0x08) as UW2453_RF(0x09) for TP-Link + WN322/422G + * parport: parport_serial, don't bind netmos ibm 0299 + * syscall define: fix uml compile bug + * kernel-doc: fix syscall wrapper processing + * Fix page writeback thinko, causing Berkeley DB slowdown + * write-back: fix nr_to_write counter + * writeback: fix break condition + * mm: rearrange exit_mmap() to unlock before arch_exit_mmap + * powerpc/fsl-booke: Fix mapping functions to use phys_addr_t + * lockd: fix regression in lockd's handling of blocked locks + * sctp: Fix crc32c calculations on big-endian arhes. + * sctp: Correctly start rtx timer on new packet transmissions. + * sctp: Properly timestamp outgoing data chunks for rtx purposes + * net: Fix frag_list handling in skb_seq_read + * net: Fix OOPS in skb_seq_read(). + * drivers/net/skfp: if !capable(CAP_NET_ADMIN): inverted logic + * ipv4: fix infinite retry loop in IP-Config + * net: Fix userland breakage wrt. linux/if_tunnel.h + * net: packet socket packet_lookup_frame fix + * packet: Avoid lock_sock in mmap handler + * sungem: Soft lockup in sungem on Netra AC200 when switching interface + up + * udp: Fix UDP short packet false positive + * udp: increments sk_drops in __udp_queue_rcv_skb() + * ipv6: Disallow rediculious flowlabel option sizes. + * ipv6: Copy cork options in ip6_append_data + * net: 4 bytes kernel memory disclosure in SO_BSDCOMPAT gsopt try #2 + * sky2: fix hard hang with netconsoling and iface going up + * tun: Add some missing TUN compat ioctl translations. + * tun: Fix unicast filter overflow + * virtio_net: Fix MAX_PACKET_LEN to support 802.1Q VLANs + * tcp: splice as many packets as possible at once + * tcp: Fix length tcp_splice_data_recv passes to skb_splice_bits. + * sparc: Enable syscall wrappers for 64-bit (CVE-2009-0029) + * sparc64: Annotate sparc64 specific syscalls with SYSCALL_DEFINEx() + * ALSA: hda - Add missing terminator in slave dig-out array + * ALSA: mtpav - Fix initial value for input hwport + * HID: adjust report descriptor fixup for MS 1028 receiver + * ide/libata: fix ata_id_is_cfa() (take 4) + * libata: fix EH device failure handling + * netfilter: fix tuple inversion for Node information request + * netfilter: xt_sctp: sctp chunk mapping doesn't work + * x86: microcode_amd: fix wrong handling of equivalent CPU id + * ide-cd: fix DMA for non bio-backed requests + * net: Fix data corruption when splicing from sockets. + * Linux 2.6.28.6 + * eCryptfs: Regression in unencrypted filename symlinks + + -- Tim Gardner Mon, 16 Feb 2009 06:43:51 -0700 + +linux (2.6.28-8.22) jaunty; urgency=low + + [ Amit Kucheria ] + + * Remove perm-blacklist + + [ Andy Whitcroft ] + + * SAUCE: psmouse/synaptics: ensure we reset the device on resume + - LP: #317270 + + [ Tim Gardner ] + + * Add lpia to getabi script + * SAUCE: tracer for sreadahead + + -- Amit Kucheria Fri, 13 Feb 2009 15:23:21 +0200 + +linux (2.6.28-8.21) jaunty; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: switch the Asus Pundit P1-AH2 to old acpi sleep ordering + - LP: #327267 + + [ Tim Gardner ] + + * Added LPIA arch support + * Added libdrm-dev as a 'Replaces' to linux-libc-dev + * SAUCE: LPIA support for 9202 HDA Sigmatel codec + * SAUCE: Add an X86_LPIA Kconfig option + * SAUCE: UHCI USB quirk for resume + * SAUCE: LPIA Reboot fix for Intel Crownbeach development boards + * SAUCE: LPIA Logical reset of USB port on resume + * Set CONFIG_WIRELESS_OLD_REGULATORY=n, added wireless-crda + as an install dependency. + + [ Upstream Kernel Changes ] + + * Revert "Revert "x86, early_ioremap: fix fencepost error"" + - LP: #312554 + * drm/i915: capture last_vblank count at IRQ uninstall time too + - LP: #320813 + * drm/i915: add get_vblank_counter function for GM45 + - LP: #320813 + * Staging: comedi: fix Kbuild + * Staging: meilhaus: fix Kbuild + * Staging: android: binder: fix arm build errors + * Staging: android: timed_gpio: Fix build to build on kernels after + 2.6.25. + * Staging: android: fix build error on 64bit boxes + * Staging: android: Add lowmemorykiller documentation. + * Staging: android: task_get_unused_fd_flags: fix the wrong usage of + tsk->signal + * staging: agnx: drivers/staging/agnx/agnx.h needs + * Staging: usbip: usbip_start_threads(): handle kernel_thread failure + * Staging: poch: fix verification of memory area + * Documentation: move DMA-mapping.txt to Doc/PCI/ + * sgi-xp: fix writing past the end of kzalloc()'d space + * do_wp_page: fix regression with execute in place + * wait: prevent exclusive waiter starvation + * shm: fix shmctl(SHM_INFO) lockup with !CONFIG_SHMEM + * revert "rlimit: permit setting RLIMIT_NOFILE to RLIM_INFINITY" + * prevent kprobes from catching spurious page faults + * sound: usb-audio: handle wMaxPacketSize for FIXED_ENDPOINT devices + * md: Ensure an md array never has too many devices. + * md: Fix a bug in linear.c causing which_dev() to return the wrong + device. + * ACPI: Enable bit 11 in _PDC to advertise hw coord + * ACPI: dock: Don't eval _STA on every show_docked sysfs read + * ieee1394: ohci1394: increase AT req. retries, fix ack_busy_X from + Panasonic camcorders and others + * firewire: ohci: increase AT req. retries, fix ack_busy_X from Panasonic + camcorders and others + * firewire: sbp2: fix DMA mapping leak on the failure path + * firewire: sbp2: add workarounds for 2nd and 3rd generation iPods + * ieee1394: sbp2: add workarounds for 2nd and 3rd generation iPods + * module: remove over-zealous check in __module_get() + * x86: APIC: enable workaround on AMD Fam10h CPUs + * eeepc-laptop: fix oops when changing backlight brightness during + eeepc-laptop init + * eeepc-laptop: Add support for extended hotkeys + * e1000: fix bug with shared interrupt during reset + * e1000: Fix PCI enable to honor the need_ioport flag + * agp/intel: Fix broken ® symbol in device name. + * ALSA: hda - Add quirk for FSC Amilo Xi2550 + * ALSA: hda - Add missing COEF initialization for ALC887 + * ALSA: hda - Add missing initialization for ALC272 + * asus_acpi: Add R1F support + * panasonic-laptop: fix X[ ARRAY_SIZE(X) ] + * ACPI: Skip the first two elements in the _BCL package + * ACPI: proc_dir_entry 'video/VGA' already registered + * ACPI: disable ACPI cleanly when bad RSDP found + * ACPICA: Fix table entry truncation calculation + * PCI: properly clean up ASPM link state on device remove + * PCI: return error on failure to read PCI ROMs + * seq_file: move traverse so it can be used from seq_read + * seq_file: fix big-enough lseek() + read() + * serial: set correct baud_base for Oxford Semiconductor Ltd EXSYS + EX-41092 Dual 16950 Serial adapter + * Add support for '8-port RS-232 MIC-3620 from advantech' + * mm: fix error case in mlock downgrade reversion + * elf core dump: fix get_user use + * ACPI: video: Fix reversed brightness behavior on ThinkPad SL series + * ipw2200: fix scanning while associated + * XFS: set b_error from bio error in xfs_buf_bio_end_io + * Revert USB: option: add Pantech cards + * USB: option: New mobile broadband modems to be supported + * USB: new id for ti_usb_3410_5052 driver + * USB: two more usb ids for ti_usb_3410_5052 + * USB: usb-storage: add Pentax to the bad-vendor list + * sata_via: Add VT8261 support + * nbd: do not allow two clients at the same time + * sctp: Fix another socket race during accept/peeloff + * Linux 2.6.28.5 + + -- Tim Gardner Mon, 09 Feb 2009 16:11:28 -0700 + +linux (2.6.28-7.20) jaunty; urgency=low + + [ Tim Gardner ] + + * SAUCE: Input: atkbd - Samsung NC10 key repeat fix + + [ Upstream Kernel Changes ] + + * Manually revert "mlock: downgrade mmap sem while populating mlocked + regions" + * xen: make sysfs files behave as their names suggest + * sata_mv: fix 8-port timeouts on 508x/6081 chips + * m68knommu: set NO_DMA + * PCI/MSI: bugfix/utilize for msi_capability_init() + * x86: use early clobbers in usercopy*.c + * netfilter: ctnetlink: fix scheduling while atomic + * orinoco: move kmalloc(..., GFP_KERNEL) outside spinlock in + orinoco_ioctl_set_genie + * fbdev/atyfb: Fix DSP config on some PowerMacs & PowerBooks + * kmalloc: return NULL instead of link failure + * sata_nv: rename nv_nf2_hardreset() + * sata_nv: fix MCP5x reset + * sata_nv: ck804 has borked hardreset too + * Fix memory corruption in console selection + * Add enable_ms to jsm driver + * nfsd: only set file_lock.fl_lmops in nfsd4_lockt if a stateowner is + found + * nfsd: Ensure nfsv4 calls the underlying filesystem on LOCKT + * iwlwifi: fix rs_get_rate WARN_ON() + * p54: fix lm87 checksum endianness + * p54: fix p54_read_eeprom to cope with tx_hdr_len + * p54usb: rewriting rx/tx routines to make use of usb_anchor's facilities + * minstrel: fix warning if lowest supported rate index is not 0 + * PCI: irq and pci_ids patch for Intel Tigerpoint DeviceIDs + * cpuidle: Add decaying history logic to menu idle predictor + * ACPI: Avoid array address overflow when _CST MWAIT hint bits are set + * video: always update the brightness when poking "brightness" + * Newly inserted battery might differ from one just removed, so update of + battery info fields is required. + * ACPI: Do not modify SCI_EN directly + * dlm: initialize file_lock struct in GETLK before copying conflicting + lock + * sata_mv: Fix chip type for Hightpoint RocketRaid 1740/1742 + * ACPICA: Allow multiple backslash prefix in namepaths + * Linux 2.6.28.4 + + -- Tim Gardner Sat, 07 Feb 2009 18:53:42 -0700 + +linux (2.6.28-7.19) jaunty; urgency=low + + * Fix missing modules FTBS + + -- Tim Gardner Thu, 05 Feb 2009 15:28:15 -0700 + +linux (2.6.28-7.18) jaunty; urgency=low + + [ Alok Kataria ] + + * SAUCE: (drop after 2.6.29) x86: add a synthetic TSC_RELIABLE feature + bit + - LP: #319945 + * SAUCE: (drop after 2.6.29) x86: add X86_FEATURE_HYPERVISOR feature bit + - LP: #319945 + * SAUCE: (drop after 2.6.29) x86: Hypervisor detection and get tsc_freq + from hypervisor + - LP: #319945 + * SAUCE: (drop after 2.6.29) x86: Add a synthetic TSC_RELIABLE feature + bit. + - LP: #319945 + * SAUCE: (drop after 2.6.29) x86: Skip verification by the watchdog for + TSC clocksource. + - LP: #319945 + * SAUCE: (drop after 2.6.29) x86: VMware: Fix vmware_get_tsc code + - LP: #319945 + * SAUCE: (drop after 2.6.29) x86: vmware: look for DMI string in the + product serial key + - LP: #319945 + + [ Andy Whitcroft ] + + * SAUCE: toshiba_acpi -- pull in current -dev version of driver + - LP: #269831 + * SAUCE: toshiba_acpi -- add acpi hotkey kernel thread + - LP: #269831 + * move toshiba laptops back from tlsup to toshiba_acpi + - LP: #269831 + + [ Aneesh Kumar K.V ] + + * SAUCE: (revert before 2.6.28.y update) ext4: Fix the delalloc + writepages to allocate blocks at the right offset. + * SAUCE: (revert before 2.6.28.y update) ext4: avoid ext4_error when + mounting a fs with a single bg + * SAUCE: (revert before 2.6.28.y update) ext4: Don't overwrite + allocation_context ac_status + * SAUCE: (revert before 2.6.28.y update) ext4: Add blocks added during + resize to bitmap + * SAUCE: (revert before 2.6.28.y update) ext4: Use + EXT4_GROUP_INFO_NEED_INIT_BIT during resize + * SAUCE: (revert before 2.6.28.y update) ext4: cleanup mballoc header + files + * SAUCE: (revert before 2.6.28.y update) ext4: don't use blocks freed but + not yet committed in buddy cache init + * SAUCE: (revert before 2.6.28.y update) ext4: Fix race between + read_block_bitmap() and mark_diskspace_used() + * SAUCE: (revert before 2.6.28.y update) ext4: Fix the race between + read_inode_bitmap() and ext4_new_inode() + * SAUCE: (revert before 2.6.28.y update) ext4: Use new buffer_head flag + to check uninit group bitmaps initialization + * SAUCE: (revert before 2.6.28.y update) ext4: mark the blocks/inode + bitmap beyond end of group as used + * SAUCE: (revert before 2.6.28.y update) ext4: Don't allow new groups to + be added during block allocation + * SAUCE: (revert before 2.6.28.y update) ext4: Init the complete page + while building buddy cache + * SAUCE: (revert before 2.6.28.y update) ext4: Fix s_dirty_blocks_counter + if block allocation failed with nodelalloc + + [ Hannes Eder ] + + * SAUCE: (drop after 2.6.29) x86: vmware - fix sparse warnings + - LP: #319945 + + [ Luke Yelavich ] + + * hid modules have hyphens instead of underscores in their names + + [ Mark Fasheh ] + + * SAUCE: (revert before 2.6.28.y update) jbd2: Add BH_JBDPrivateStart + + [ Theodore Ts'o ] + + * SAUCE: (revert before 2.6.28.y update) ext4: Add support for non-native + signed/unsigned htree hash algorithms + * SAUCE: (revert before 2.6.28.y update) ext4: tone down + ext4_da_writepages warnings + * SAUCE: (revert before 2.6.28.y update) jbd2: Add barrier not supported + test to journal_wait_on_commit_record + * SAUCE: (revert before 2.6.28.y update) ext4: Add sanity checks for the + superblock before mounting the filesystem + * SAUCE: (revert before 2.6.28.y update) ext4: only use i_size_high for + regular files + * SAUCE: (revert before 2.6.28.y update) ext4: Add sanity check to + make_indexed_dir + * SAUCE: (revert before 2.6.28.y update) jbd2: On a __journal_expect() + assertion failure printk "JBD2", not "EXT3-fs" + * SAUCE: (revert before 2.6.28.y update) ext4: Initialize the new group + descriptor when resizing the filesystem + + [ Tyler Hicks ] + + * SAUCE: (drop after 2.6.28) [eCryptfs] Regression in unencrypted + filename symlinks + - LP: #322532 + + [ Upstream Kernel Changes ] + + * Input: atkbd - broaden the Dell DMI signatures + - LP: #261721 + * ti_usb_3410_5052: support alternate firmware + * ath5k: fix mesh point operation + * mac80211: decrement ref count to netdev after launching mesh discovery + * inotify: clean up inotify_read and fix locking problems + * fuse: destroy bdi on umount + * fuse: fix missing fput on error + * fuse: fix NULL deref in fuse_file_alloc() + * x86, mm: fix pte_free() + * klist.c: bit 0 in pointer can't be used as flag + * sysfs: fix problems with binary files + * x86: fix page attribute corruption with cpa() + * USB: fix toggle mismatch in disable_endpoint paths + * sound: virtuoso: enable UART on Xonar HDAV1.3 + * USB: usbmon: Implement compat_ioctl + * USB: fix char-device disconnect handling + * USB: storage: add unusual devs entry + * alpha: nautilus - fix compile failure with gcc-4.3 + * alpha: fix vmalloc breakage + * resources: skip sanity check of busy resources + * rtl8187: Add termination packet to prevent stall + * it821x: Add ultra_mask quirk for Vortex86SX + * libata: pata_via: support VX855, future chips whose IDE controller use + 0x0571 + * serial_8250: support for Sealevel Systems Model 7803 COMM+8 + * drm: stash AGP include under the do-we-have-AGP ifdef + * Fix OOPS in mmap_region() when merging adjacent VM_LOCKED file segments + * bnx2x: Block nvram access when the device is inactive + * ext3: Add sanity check to make_indexed_dir + * rtl8187: Fix error in setting OFDM power settings for RTL8187L + * epoll: drop max_user_instances and rely only on max_user_watches + * gpiolib: fix request related issue + * sgi-xpc: Remove NULL pointer dereference. + * sgi-xpc: ensure flags are updated before bte_copy + * include/linux: Add bsg.h to the Kernel exported headers + * ALSA: hda - Fix PCM reference NID for STAC/IDT analog outputs + * ALSA: hda - add another MacBook Pro 4, 1 subsystem ID + * ALSA: hda - Add quirk for HP DV6700 laptop + * crypto: authenc - Fix zero-length IV crash + * crypto: ccm - Fix handling of null assoc data + * x86, pat: fix reserve_memtype() for legacy 1MB range + * x86, pat: fix PTE corruption issue while mapping RAM using /dev/mem + * PCI hotplug: fix lock imbalance in pciehp + * dmaengine: fix dependency chaining + * NET: net_namespace, fix lock imbalance + * relay: fix lock imbalance in relay_late_setup_files + * Linux 2.6.28.3 + * ALSA: Enable SPDIF output on ALC655 + * ALSA: hda - Add ASUS V1Sn support + * ALSA: hda - support detecting HD Audio devices with PCI class code + * ALSA: hda: alc883 model for ASUS P5Q-EM boards + * ALSA: hda - Add quirk for MSI 7260 mobo + * ALSA: hda - Add quirk for Sony VAIO VGN-SR19XN + * ALSA: oxygen: add Claro halo support + * ALSA: hda - Add a new function to seek for a codec ID + * ALSA: patch_sigmatel: Add missing Gateway entries and autodetection + * ALSA: hda - More fixes on Gateway entries + * ALSA: hda - Add MCP67 HDMI support + * ALSA: hda - fix name for ALC1200 + * LSA: hda - Add HP Acacia detection + * ALSA: hda - Add quirk for HP 2230s + * ALSA: hda - Add quirk for Dell Inspiron Mini9 + * ALSA: hda - add support for Intel DX58SO board + * ALSA: hda - Fix silent headphone output on Panasonic CF-74 + * ALSA: USB quirk for Logitech Quickcam Pro 9000 name + * ALSA: hda - add quirks for some 82801H variants to use ALC883_MITAC + + [ Yasunori Goto ] + + * SAUCE: (revert before 2.6.28.y update) ext4: Widen type of + ext4_sb_info.s_mb_maxs[] + + -- Tim Gardner Mon, 02 Feb 2009 23:07:13 -0700 + +linux (2.6.28-6.17) jaunty; urgency=low + + [ Amit Kucheria ] + + * Updating configs: ARMEL/versatile + + -- Amit Kucheria Fri, 30 Jan 2009 13:36:59 +0200 + +linux (2.6.28-6.16) jaunty; urgency=low + + [ Luke Yelavich ] + + * Add hid quirks to input-modules udeb + + [ Tim Gardner ] + + * Revert "[arm] Fix kexec on ARM by properly calling the relocation + function". This patch was deemed 'bogus' by Russell King on the + ARM mailing list. + + [ Upstream Kernel Changes ] + + * PCI: keep ASPM link state consistent throughout PCIe hierarchy + * security: introduce missing kfree + * rt2x00: add USB ID for the Linksys WUSB200. + * p54usb: Add USB ID for Thomson Speedtouch 121g + * lib/idr.c: use kmem_cache_zalloc() for the idr_layer cache + * sgi-xp: eliminate false detection of no heartbeat + * sched: fix update_min_vruntime + * IA64: Turn on CONFIG_HAVE_UNSTABLE_CLOCK + * sound: virtuoso: do not overwrite EEPROM on Xonar D2/D2X + * ALSA: hda - Add quirk for another HP dv5 + * ALSA: hda - Fix HP dv5 mic input + * ALSA: hda - Don't reset HP pinctl in patch_sigmatel.c + * ALSA: hda - make laptop-eapd model back for AD1986A + * drivers/net/irda/irda-usb.c: fix buffer overflow + * usb-storage: add last-sector hacks + * usb-storage: set CAPACITY_HEURISTICS flag for bad vendors + * pkt_sched: sch_htb: Fix deadlock in hrtimers triggered by HTB + * ipv6: Fix fib6_dump_table walker leak + * sctp: Avoid memory overflow while FWD-TSN chunk is received with bad + stream ID + * pkt_sched: cls_u32: Fix locking in u32_change() + * r6040: fix wrong logic in mdio code + * r6040: save and restore MIER correctly in the interrupt routine + * r6040: bump release number to 0.19 + * tcp: don't mask EOF and socket errors on nonblocking splice receive + * p54usb: fix traffic stalls / packet drop + * netfilter: x_tables: fix match/target revision lookup + * netfilter: ebtables: fix inversion in match code + * netfilter: nf_conntrack: fix ICMP/ICMPv6 timeout sysctls on big-endian + * dell_rbu: use scnprintf() instead of less secure sprintf() + * powerpc: is_hugepage_only_range() must account for both 4kB and 64kB + slices + * hwmon: (abituguru3) Fix CONFIG_DMI=n fallback to probe + * mm: write_cache_pages cyclic fix + * mm: write_cache_pages early loop termination + * mm: write_cache_pages writepage error fix + * mm: write_cache_pages integrity fix + * mm: write_cache_pages cleanups + * mm: write_cache_pages optimise page cleaning + * mm: write_cache_pages terminate quickly + * mm: write_cache_pages more terminate quickly + * mm: do_sync_mapping_range integrity fix + * mm: direct IO starvation improvement + * fs: remove WB_SYNC_HOLD + * fs: sync_sb_inodes fix + * fs: sys_sync fix + * Linux 2.6.28.2 + + -- Tim Gardner Sun, 25 Jan 2009 13:36:16 -0700 + +linux (2.6.28-5.15) jaunty; urgency=low + + [ Tim Gardner ] + + * Revert "Enabled CONFIG_PID_NS=y for i386/amd64" + Somehow this commit also reverted the 7 prior commits (which is bad). + * Enabled CONFIG_PID_NS=y for i386/amd64 (version 2) + + -- Tim Gardner Thu, 22 Jan 2009 13:48:34 -0700 + +linux (2.6.28-5.14) jaunty; urgency=low + + [ Ben Collins ] + + * lirc_gpio: Forward ported to current kernel (jaunty) + * configs: Enable LIRC_GPIO on 64-bit/32-bit x86 + - LP: #298791 + + [ Jeff Layton ] + + * SAUCE: cifs: make sure we allocate enough storage for socket address + - LP: #318565 + + [ Tim Gardner ] + + * check-abi: Return success when ABI skip is requested and no ABI files exist. + This ought to fix the armel FTBS. + + -- Tim Gardner Thu, 22 Jan 2009 06:42:49 -0700 + +linux (2.6.28-5.13) jaunty; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: don't use buggy _BCL/_BCM/_BQC for backlight control" + + [ Tim Gardner ] + + * Fix udeb generation breakage caused by the previous armel versatile + flavour config update. + + -- Tim Gardner Wed, 21 Jan 2009 12:38:35 -0700 + +linux (2.6.28-5.12) jaunty; urgency=low + + [ Ante ] + + * Update drbd to 8.3.0 + + [ Dave Airlie ] + + * i915/drm: provide compat defines for userspace for certain struct + + [ Eric Anholt ] + + * drm/i915: Don't double-unpin buffers if we take a signal in + * drm/i915: Don't complain when interrupted while pinning in execbuffers. + * drm/i915: Don't allow objects to get bound while VT switched. + + [ Jani Monoses ] + + * Fix webcam having USB ID 0ac8:303b + - LP: #292086 + + [ Jesse Barnes ] + + * drm/i915: set vblank enabled flag correctly across IRQ + * drm/i915: don't enable vblanks on disabled pipes + + [ Michael Casadevall ] + + * [arm] Fix kexec on ARM by properly calling the relocation function + + [ Tim Gardner ] + + * Enabled CONFIG_PID_NS=y for i386/amd64 + * SAUCE: Increase ATA_TMOUT_PMP_SRST_WAIT to 5 seconds. + - LP: #318978 + * Update armel versatile config + - LP: #314789 + * Enabled CONFIG_RT2860=m for i386/amd64 + * Enabled CONFIG_RT2870=m for i386/amd64 + + [ Upstream Kernel Changes ] + + * Input: atkbd - add keyboard quirk for HP Pavilion ZV6100 laptop + - LP: #291878 + * ALSA: hda - Add quirk for another HP dv7 + * ALSA: hda - Add quirk for HP6730B laptop + * ALSA: caiaq - Fix Oops with MIDI + * ALSA: hda - Fix typos for AD1882 codecs + * x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies + * x86: default to SWIOTLB=y on x86_64 + * CIFS: make sure that DFS pathnames are properly formed + * ring-buffer: prevent false positive warning + * ring-buffer: fix dangling commit race + * iwlwifi: use GFP_KERNEL to allocate Rx SKB memory + * tx493[89]ide: Fix length for __ide_flush_dcache_range + * tx4939ide: Do not use zero count PRD entry + * SCSI: eata: fix the data buffer accessors conversion regression + * USB: emi26: fix oops on load + * x86, UV: remove erroneous BAU initialization + * x86: fix incorrect __read_mostly on _boot_cpu_pda + * vmalloc.c: fix flushing in vmap_page_range() + * fs: symlink write_begin allocation context fix + * cgroups: fix a race between cgroup_clone and umount + * dm raid1: fix error count + * dm log: fix dm_io_client leak on error paths + * minix: fix add link's wrong position calculation + * md: fix bitmap-on-external-file bug. + * sched_clock: prevent scd->clock from moving backwards, take #2 + * devices cgroup: allow mkfifo + * SCSI: aha152x_cs: Fix regression that keeps driver from using shared + interrupts + * ioat: fix self test for multi-channel case + * USB: isp1760: use a specific PLX bridge instead of any bdridge + * USB: isp1760: Fix probe in PCI glue code + * USB: unusual_devs.h additions for Pentax K10D + * inotify: fix type errors in interfaces + * Move compat system call declarations to compat header file + * Convert all system calls to return a long + * Rename old_readdir to sys_old_readdir + * Remove __attribute__((weak)) from sys_pipe/sys_pipe2 + * Make sys_pselect7 static + * Make sys_syslog a conditional system call + * System call wrapper infrastructure + * powerpc: Enable syscall wrappers for 64-bit + * s390: enable system call wrappers + * System call wrapper special cases + * System call wrappers part 01 + * System call wrappers part 02 + * System call wrappers part 03 + * System call wrappers part 04 + * System call wrappers part 05 + * System call wrappers part 06 + * System call wrappers part 07 + * System call wrappers part 08 + * System call wrappers part 09 + * System call wrappers part 10 + * System call wrappers part 11 + * System call wrappers part 12 + * System call wrappers part 13 + * System call wrappers part 14 + * System call wrappers part 15 + * System call wrappers part 16 + * System call wrappers part 17 + * System call wrappers part 18 + * System call wrappers part 19 + * System call wrappers part 20 + * System call wrappers part 21 + * System call wrappers part 22 + * System call wrappers part 23 + * System call wrappers part 24 + * System call wrappers part 25 + * System call wrappers part 26 + * System call wrappers part 27 + * System call wrappers part 28 + * System call wrappers part 29 + * System call wrappers part 30 + * System call wrappers part 31 + * System call wrappers part 32 + * System call wrappers part 33 + * s390 specific system call wrappers + * x86: fix RIP printout in early_idt_handler + * Fix timeouts in sys_pselect7 + * USB: another unusual_devs entry for another bad Argosy storage device + * USB: storage: extend unusual range for 067b:3507 + * USB: storage: recognizing and enabling Nokia 5200 cell phoes + * HID: fix error condition propagation in hid-sony driver + * fix switch_names() breakage in short-to-short case + * nfs: remove redundant tests on reading new pages + * eCryptfs: check readlink result was not an error before using it + * mvsas: increase port type detection delay to suit Seagate's 10k6 drive ST3450856SS 0003 + * x86: avoid theoretical vmalloc fault loop + * ath9k: enable RXing of beacons on STA/IBSS + * mm lockless pagecache barrier fix + * powerpc: Disable Collaborative Memory Manager for kdump + * ibmvfc: Delay NPIV login retry and add retries + * ibmvfc: Improve async event handling + * getrusage: RUSAGE_THREAD should return ru_utime and ru_stime + * ath5k: ignore the return value of ath5k_hw_noise_floor_calibration + * mm: fix assertion + * XFS: truncate readdir offsets to signed 32 bit values + * Linux 2.6.28.1 + * eCryptfs: Filename Encryption: Tag 70 packets + * eCryptfs: Filename Encryption: Header updates + * eCryptfs: Filename Encryption: Encoding and encryption functions + * eCryptfs: Filename Encryption: filldir, lookup, and readlink + * eCryptfs: Filename Encryption: mount option + * eCryptfs: Replace %Z with %z + * eCryptfs: Fix data types (int/size_t) + * eCryptfs: kerneldoc for ecryptfs_parse_tag_70_packet() + * eCryptfs: Clean up ecryptfs_decode_from_filename() + * fs/ecryptfs/inode.c: cleanup kerneldoc + * staging-p80211: Kill directly reference of netdev->priv + * staging-slicoss: Kill directly reference of netdev->priv + * staging-winbond: Kill directly reference of netdev->priv + * Staging: go7007: fixes due to video_usercopy api change + * Staging: go7007: fixes due v4l2_file_operations api change + * staging: correct dubious use of !x & y + * Staging: w35und: make wb35_probe() and wb35_disconnect() funtions static + * Staging: w35und: remove unused wb35_open() and wb35_close() functions + * Staging: w35und: use msleep() and udelay() + * Staging: w35und: remove the no-op pa_stall_execution macro + * Staging: w35und: purb typedef removal + * Staging: w35und: reg queue struct typedef removal + * Staging: w35und: wb35reg struct typedef removal + * Staging: w35und: padapter struct typedef removal + * Staging: w35und: merge wblinux struct to adapter + * Staging: w35und: wb35_probe() cleanup + * Staging: w35und: remove usb_submit_urb wrapper function + * Staging: w35und: remove usb_alloc_urb wrapper function + * w35und: remove dead code from wbusb_f.h + * Staging: w35und: remove true/false boolean macros + * Staging: w35und: OS_MEMORY_ALLOC wrapper removal + * Staging: w35und: usb_put_dev() is missing from wb35_disconnect() + * Staging: w35und: remove macro magic from MLME_GetNextPacket() + * Staging: w35und: plug memory leak in wbsoft_tx() + * Staging: w35und: move supported band initialization out of wb35_probe() + * Staging: w35und: remove timer wrappers + * Staging: w35und: remove atomic op wrappers + * Staging: w35und: remove memcpy/memcmp wrappers + * Staging: w35und: remove abs() and BIT() macros + * Staging: w35und: remove unused macros from common.h + * Staging: w35und: remove unused link status code + * Staging: w35und: #include cleanup + * Staging: w35und: remove some dead code + * Staging: w35und: move source files to one directory + * Staging: w35und: move struct wbsoft_priv to core.h and use it + * Staging: w35und: remove ->adapter from struct _HW_DATA_T + * Staging: w35und: clean up adapter.h a bit + * Staging: w35und: merge struct wb35_adapter to struct wbsoft_priv + * Staging: w35und: remove global struct ieee80211_hw + * Staging: w35und: inline DRIVER_AUTHOR and DRIVER_DESC macros + * Staging: w35und: clean up wblinux.c a bit + * Staging: w35und: remove unused ->ShutDowned member from struct + LOCAL_PARA + * Staging: w35und: move global wbsoft_enabled to struct wbsoft_priv + * Staging: w35und: move packet_came() to wb35rx.c + * Staging: w35und: remove ->skb_array from struct wbsoft_priv + * Staging: w35und: remove ->shutdown from struct wbsoft_priv + * Staging: w35und: make functions local to mds.c static + * Staging: w35und: make functions local to mlmetxrx.c static + * Staging: w35und: remove dead code from mto.c + * Staging: w35und: make functions local to wb35rx.c static + * Staging: w35und: make functions local to wb35tx.c static + * Staging: w35und: remove dead code from wbhal.c + * Staging: w35und: remove rxisr.c as dead code + * Staging: w35und: fix Kconfig + * Staging: w35und: fix config build warnings + * Staging: wlan-ng: Remove PCI/PLX/PCMCIA files. + * Staging: wlan-ng: Update Help text to mention prism3 devices. + * Staging: wlan-ng: Delete PCI/PLX/PCMCIA-specific code. + * Staging: wlan-ng: Make wlan-ng use WEXT mode by default. + * Staging: wlan-ng: Eliminate more <2.6 kernel support. + * Staging: wlan-ng: Eliminate all backwards-compatibility for <2.6.13 kernels. + * Staging: wlan-ng: Eliminate a boatload of tertiaryAP-only code. + * Staging: wlan-ng: Remove AP-only code from MLME functions. + * Staging: wlan-ng: Get rid of the MTU tests in the rx conversion path. + * Staging: wlan-ng: Eliminate one more rx mtu test. + * Staging: wlan-ng: Eliminate local 'version.h' + * Staging: wlan-ng: Eliminate usage of procfs. + * Staging: wlan-ng: Use standard kernel integer (u32/s32/etc) types. + * Staging: wlan-ng: Eliminate all backwards-compatible kernel code. + * Staging: wlan-ng: Wireless Extension support is mandatory. + * Staging: wlan-ng: use WIRELESS_EXT, not CONFIG_WIRELESS_EXT + * Staging: wlan-ng: Delete a large pile of now-unused code. + * Staging: wlan-ng: Delete a pile of unused mibs. And fix WEXT SET_TXPOWER. + * Staging: wlan-ng: Consolidate wlan-ng into a single module. + * Staging: wlan-ng: Purge all MIBs not used internally. + * Staging: wlan-ng: p80211netdev.c fix netdev alloc to prevent oops on device start + * Staging: wlan-ng: prism2_usb.c always enable the card in probe_usb + * Staging: wlan-ng: hfa384x_usb.c use newest version of 384x_drvr_start + * Staging: wlan-ng: p80211wext.c add latest changes & remove extra nulls from wext_handlers + * Staging: wlan-ng: p80211wext don't set default key id twice + * Staging: wlan-ng: hfa384x_usbin_callback: check for hardware removed + * Staging: wlan-ng: p80211conv.c copy code from wlan-ng-devel branch to not drop packets + * Staging: wlan-ng: remove unused #include + * Staging: wlan-ng: p80211wext.c: use ARRAY_SIZE + * Staging: wlan-ng: fix compiler warnings + * Staging: wlan-ng: skb_p80211_to_ether() - payload_length is unsigned, check before subtraction + * Staging: at76_usb: update drivers/staging/at76_usb w/ mac80211 port + * Staging: at76_usb: fix build breakage + * Staging: at76_usb: remove compiler warnings + * Staging: at76_usb: fix up all remaining checkpatch.pl warnings + * Staging: at76_usb: cleanup dma on stack issues + * Staging: poch: Block size bug fix + * Staging: poch: Update TODO list + * Staging: poch: Correct pages from bytes. + * Staging: poch: minor fixes + * Staging: poch: Fix build warnings + * Staging: poch: Rx control register init + * Staging: poch: Fix user space protocol syncing + * Staging: poch: Fine grained locking + * Staging: sxg: remove typedefs + * Staging: sxg: break the build in a cleaner way when !x86 + * Staging: sxg: update README + * staging: struct device - replace bus_id with dev_name(), dev_set_name() + * Staging: echo: remove typedefs + * Staging: echo: Lindent drivers/staging/echo + * Staging: go7007: saa7134 updates + * Staging: go7007: add sensoray 2250/2251 support + * Staging: go7007: Convert driver to use video_ioctl2 + * Staging: go7007: annotate code pointers + * Staging: go7007: fix minor build warnings + * Staging: go7007: small cleanup + * Staging: go7007: add some more v4l2 ioctls + * Staging: et131x: Cleanup et131x_debug.h defines + * Staging: et131x: fix build failure + * Staging: et131x: remove unused variable in et1310_tx.c + * Staging: usbip: cleanup kerneldoc + * Staging: slicoss: use kzalloc + * Staging: slicoss: use correct type for memory allcations + * Staging: slicoss: use request_firmware + * Staging: add agnx wireless driver + * Staging: agnx: fix build errors due to ssid removal + * Staging: agnx: fix build errors due to rate control API changes + * Staging: agnx: fix build warnings + * Staging: add otus Atheros wireless network driver + * Staging: otus: fix netdev->priv usage + * Staging: otus: fix name clash + * Staging: otus: fix urb callback function type + * Staging: otus: remove dependence on kernel version + * Staging: add rt2860 wireless driver + * Staging: rt2860: disable root hack for reading files + * Staging: rt2860: fix up netdev->priv usage + * Staging: rt2860: use standard bit-reverse function + * Staging: rt2860: Fix minor compiler warnings + * Staging: rt2860: enable WPA_SUPPLICANT support + * Staging: Add ServerEngines benet 10Gb ethernet driver + * Staging: benet: fix netif api breakage + * Staging: benet: fix up netdev->priv change + * Staging: benet: build is broken unless CONFIG_NETPOLL is enabled + * Staging: benet: patch to remove subdirectories + * Staging: benet: fix build errors when CONFIG_NETPOLL is off + * Staging: benet: fix build error. + * Staging: benet: patch to use offsetof() instead of AMAP_BYTE_OFFSET() + * Staging: benet: fix problems reported by checkpatch + * Staging: benet: cleanup a check while posting rx buffers + * Staging: add comedi core + * Staging: comedi: fix up a lot of checkpatch.pl warnings + * Staging: comedi: fix checkpatch.pl errors in comedi_fops.c + * Staging: comedi: fix build error in comedilib.h + * Staging: comedi: add kcomedilib to the tree + * Staging: comedi: set up infrastructure for individual drivers + * Staging: comedi: add local copy of interrupt.h + * Staging: comedi: add pci and usb wrapper header files + * Staging: comedi: comedi driver common function module + * Staging: comedi: add mite comedi pci driver + * Staging: comedi: add usb usbdux driver + * Staging: comedi: add usb usbduxfast driver + * Staging: comedi: add usb dt9812 driver + * Staging: comedi: add comedi_bond driver + * Staging: comedi: add comedi_test driver + * Staging: comedi: add comedi_parport driver + * Staging: comedi: dt9812: fix up a lot of coding style issues + * Staging: comedi: dt9812: remove dt9812.h + * Staging: comedi: dt9812: remove typedefs + * Staging: comedi: dt9812: fix sparse warnings + * Staging: comedi: usbdux: remove kernel version checks + * Staging: comedi: usbdux: code style cleanups + * Staging: comedi: usbdux: remove // comments + * Staging: comedi: usbdux: fix up printk calls + * Staging: comedi: usbdux: remove checkpatch.pl warnings + * Staging: comedi: usbdux: remove typedef + * Staging: comedi: usbdux: remove comedi usb wrappers + * Staging: comedi: usbduxfast: remove comedi usb wrappers + * Staging: comedi: dt9812: remove #ifdef that is not needed + * Staging: comedi: remove usb wrappers + * Staging: comedi: remove PCI wrappers + * Staging: comedi: add icp_multi driver + * Staging: comedi: add me4000 driver + * Staging: comedi: fix checkpatch.pl issues in comedi_bond.c + * Staging: comedi: fix checkpatch.pl issues in comedi_fc.c + * Staging: comedi: remove typedefs from comedi_bond.c + * Staging: comedi: fix sparse issues in comedi_bond.c + * Staging: comedi: fix checkpatch.pl issues in comedi_test.c + * Staging: comedi: fix sparse issues in comedi_test.c + * Staging: comedi: remove typedefs from comedi_test.c + * Staging: comedi: fix comedi_parport.c checkpatch.pl issues. + * Staging: comedi: fix comedi_fc.h checkpatch.pl issues. + * Staging: comedi: fix comedi_pci.h checkpatch.pl issues. + * Staging: comedi: comedi_pci.h: remove unneeded wrapper + * Staging: comedi: comedi_pci.h: remove comedi_pci_enable_no_regions + * Staging: comedi: comedi_pci.h: remove comedi_pci_disable_no_regions + * Staging: comedi: add s626 driver + * Staging: comedi: add rtd520 driver + * Staging: comedi: add me_daq driver + * Staging: comedi: me_daq: fix checkpatch.pl issues + * Staging: comedi: me_daq: remove typedefs + * Staging: comedi: me_daq: fix sparse issues + * Staging: comedi: fix checkpatch.pl warning in interrupt.h + * Staging: comedi: fix build if CONFIG_PROC_FS is not set + * Staging: add asus_oled driver + * Staging: asus_oled: fix build dependancy + * Staging: Add the Meilhaus ME-IDS driver package + * Staging: meilhaus: fix __symbol_get problems + * Staging: add lcd-panel driver + * Staging: panel: major checkpatch cleanup + * Staging: panel: remove ifdefs and code for pre-2.6 kernels + * Staging: panel: remove support for smartcards + * Staging: add Driver for Altera PCI Express Chaining DMA reference design + * Staging: add rtl8187se driver + * Staging: rtl8187se: remove unneeded files + * Staging: rtl8187se: make the built module be the proper name + * Staging: rtl8187se: remove duplicate pci ids + * Staging: me4000: switch to list_for_each*() + * Staging: usbip: switch to list_for_each_entry() + * Staging: add princeton instruments usb camera driver + * Staging: add mimio xi driver + * Staging: add rt2870 wireless driver + * Staging: rt2870: disable root hack for reading files + * Staging: rt2870: fix up netdev->priv usage + * Staging: add frontier tranzport and alphatrack drivers + * Staging: frontier: remove unused alphatrack_sysfs.c file + * Staging: frontier: fix compiler warnings + * Staging: add epl stack + * Staging: epl: run Lindent on all kernel/*.h files + * Staging: epl: run Lindent on all user/*.h files + * Staging: epl: run Lindent on *.h files + * Staging: epl: run Lindent on *.c files + * Staging: epl: hr timers all run in hard irq context now + * Staging: epl: fix netdev->priv b0rkage + * Staging: add android framework + * Staging: android: add binder driver + * Staging: android: binder: Fix gcc warnings about improper format specifiers for size_t in printk + * staging: android: binder: Fix use of euid + * Staging: android: add logging driver + * Staging: android: add ram_console driver + * Staging: android: add timed_gpio driver + * Staging: android: timed_gpio: Rename android_timed_gpio to timed_gpio + * Staging: android: remove dummy android.c driver + * Staging: android: add lowmemorykiller driver + * Staging: android: binder: fix build errors + * staging: __FUNCTION__ is gcc-specific, use __func__ + * V4L/DVB (10176a): Switch remaining clear_user_page users over to + clear_user_highpage + + [ Zhenyu Wang ] + + * agp/intel: add support for G41 chipset + + -- Tim Gardner Sun, 18 Jan 2009 20:22:54 -0700 + +linux (2.6.28-4.11) jaunty; urgency=low + + [ Mario Limonciello ] + + * SAUCE: Enable HDMI audio codec on Studio XPS 1340 + - LP: #309508 + + [ Tim Gardner ] + + * Fix armel d-i FTBSs + + [ Upstream Kernel Changes ] + + * USB: re-enable interface after driver unbinds + + -- Tim Gardner Tue, 13 Jan 2009 16:33:08 -0700 + +linux (2.6.28-4.10) jaunty; urgency=low + + [ Andy Whitcroft ] + + * update kernel bootloader recommends: to prefer grub + - LP: #314004 + * SAUCE: don't use buggy _BCL/_BCM/_BQC for backlight control + - LP: #311716 + * SAUCE: test-suspend -- add the suspend test scripts + - LP: #316419 + + [ Colin Watson ] + + * Enable udebs for armel + + [ Tim Gardner ] + + * SAUCE: Dell laptop digital mic does not work, PCI 1028:0271 + - LP: #309508 + * Enable CIFS_XATTR=y and CONFIG_CIFS_POSIX=y + - LP: #220658 + + -- Tim Gardner Thu, 08 Jan 2009 10:38:22 -0700 + +linux (2.6.28-4.9) jaunty; urgency=low + + [ Tim Gardner ] + + * Restore DM_CRYPT, AES, ECB, and CBC as modules. This fixes + some installer issues with encrypted /home and Private directories. + * Take one more stab at building armel without module or ABI errors. + + -- Tim Gardner Tue, 06 Jan 2009 08:38:23 -0700 + +linux (2.6.28-4.8) jaunty; urgency=low + + * Fix i386/amd64 FTBS by ignoring all module and ABI changes, + not something you would normally do, but I'm sure the ABI + has not changed. This will probably also allow the ARM builds to complete. + + -- Tim Gardner Mon, 05 Jan 2009 14:42:58 -0700 + +linux (2.6.28-4.7) jaunty; urgency=low + + [ Tim Gardner ] + + * Enable CONFIG_ATH5K=m for i386/amd64 + - LP: #306719 + * Build all i386/amd64 AGP/DRM components as modules. + - LP: #312721 + * git commands are now installed outside the default $PATH + Use 'git CMD' instead of 'git-CMD'. + * Build in most PATA/SATA drivers. This should allow most i386/amd64 systems to boot + without an initramfs, though some support work is still required in initramfs-tools + and grub. + - LP: #311730 + + -- Tim Gardner Fri, 02 Jan 2009 07:33:09 -0700 + +linux (2.6.28-4.6) jaunty; urgency=low + + [ Tim Gardner ] + + * Enable CONFIG_X86_E_POWERSAVER=m for i386 generic + - LP: #237405 + * Build i386 AGP drivers as modules + - LP: #312721 + * Build i386 DRM as a module + - LP: #312721 + + [ Upstream Kernel Changes ] + + * drm/i915: Add missing userland definitions for gem init/execbuffer. + - LP: #308387 + + -- Tim Gardner Mon, 29 Dec 2008 09:16:47 -0700 + +linux (2.6.28-4.5) jaunty; urgency=low + + [ Andy Whitcroft ] + + * clean up module dependancy information on package removal/purge + - LP: #300773 + + [ Tim Gardner ] + + * Update iscsitarget to 0.4.17 + * Build in ext{234} + * Build in Crypto modules AES, CBC, ECB + * Build in ACPI AC,BATTERY,BUTTON,FAN,PCI_SLOT,PROCESSOR,SBS,THERMAL,WMI + * Build in AGP intel,via,sis,ali,amd,amd64,efficeon,nvidia,sworks + * Build in ata,dev_dm,dev_loop,dev_md,dev_sd,dev_sr + * Build in BT l2cap,rfcomm,sco + * Reduce CONFIG_LEGACY_PTY_COUNT to 0 + * Build in CDROM_PKTCDVD and CHR_DEV_SG + * Build in CPU_FREQ + GOV_CONSERVATIVE,GOV_ONDEMAND,GOV_POWERSAVE,GOV_USERSPACE,STAT,TABLE + * Build in DM CRYPT,MIRROR,MULTIPATH,SNAPSHOT + * Build in DRM + * Build in HID + * Build in HOTPLUG PCI,PCIE + * Build in I2C + * Build in IEEE1394 OHCI1394 + * Build in INPUT EVDEV + * Build in IPV6 + * Build in MMC + * Build in PACKET + * Enable both IEEE1394 (Firewire) stacks as modules + - LP: #276463 + * Disable SUNRPC_REGISTER_V4 + - LP: #306016 + * Enable dm-raid4-5 + - LP: #309378 + * Build in PPP + * Build in RFKILL + * Build in USB SERIAL + + [ Upstream Kernel Changes ] + + * Rebased to v2.6.28 + + -- Tim Gardner Thu, 18 Dec 2008 21:18:44 -0700 + +linux (2.6.28-3.4) jaunty; urgency=low + + [ Tim Gardner ] + + * Build ecryptfs into the kernel + - LP: #302870 + * Deprecated gnbd + + [ Upstream Kernel Changes ] + + * Rebased to v2.6.28-rc8 + + -- Tim Gardner Wed, 10 Dec 2008 22:45:13 -0700 + +linux (2.6.28-2.3) jaunty; urgency=low + + [ Andy Whitcroft ] + + * update the templates so that we have spaces following the title line + + [ Tim Gardner ] + + * Add upload number to kernel version signature. This has the side effect + of renaming kernel packages back to the original way, e.g., without '-ub' + in the name. + + -- Tim Gardner Thu, 04 Dec 2008 12:18:31 -0700 + +linux (2.6.28-2.2) jaunty; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: (no-up) version: Implement version_signature proc file." + * SAUCE: (no-up) version: Implement version_signature proc file. + * SAUCE: serial: RS485 ioctl structure uses __u32 include linux/types.h + - LP: #303711 + + [ Tim Gardner ] + + * UBUNTU: Removed CONFIG_DRM_VIA_CHROME9 since it is upstream. + * UBUNTU: Removed ubuntu/via_chrome9 + + [ Upstream Kernel Changes ] + + * Rebased to v2.6.28-rc7 + + -- Tim Gardner Tue, 02 Dec 2008 07:33:32 -0700 + +linux (2.6.28-1.1) jaunty; urgency=low + + [ Amit Kucheria ] + + * SAUCE: make fc transport removal of target configurable + * SAUCE: pm: Config option to disable handling of console during + suspend/resume + * SAUCE: Adds support for COMPAL JHL90 webcam + * Map armel to arm to all editconfigs to work correctly + * Add armel to getabis for completeness sake + * Add -ub to our versioning to allow kerneloops.org to identify us + + [ Andy Whitcroft ] + + * Fix Vcs-Git path for the kernel repository. + - LP: #296915 + + [ Ben Collins ] + + * SAUCE: Lower warning level of some PCI messages + - LP: #159241 + * SAUCE: input/mouse/alps: Do not call psmouse_reset() for alps + * SAUCE: tulip: Let dmfe handle davicom on non-sparc + * SAUCE: tulip: Define ULI PCI ID's + * SAUCE: (no-up) version: Implement version_signature proc file. + * SAUCE: (no-up) connector.h: Add idx/val for drbd + * SAUCE: (no-up) swap: Add notify_swap_entry_free callback for compcache + * SAUCE: drivers: Remove some duplicate device entries in various modules + * SAUCE: (no-up) [AppArmor] merge with upstream subversion r1291 + * SAUCE: (no-up) Enable ubuntu extra subdirectory + * SAUCE: (no-up) ACPI: initramfs DSDT override support + * ubuntu: Add drbd module + * ubuntu: Add iscsitarget module + * ubuntu: Add BOM for iscsitarget + * ubuntu: Add squashfs driver + * SAUCE: (no-up) Check for squashfs superblock in initramfs mounting. + * ubuntu: Add aufs module + * ubuntu: Added atl2 driver + * ubuntu: Added et131x driver + * ubuntu: Add dm-raid4-5 driver + * ubuntu: Add ndiswrapper driver + * ubuntu: Added ram backed compressed swap module (compcache) + * ubuntu: Add misc drivers from hardy lum + * ubuntu: Add heci driver 3.2.0.24 + * ubuntu: Add ov511 and bt-sco drivers + * ubuntu: Add acx, prism2_usb wireless drivers + * ubuntu: Add at76 driver to build + * ubuntu: Add fsam7400 sw kill switch driver + * ubuntu: Added qc-usb driver + * ubuntu: e1000e: Upgraded module to 0.4.1.7 + * ubuntu: Added rfkill drivers + * ubuntu: VIA - Add VIA DRM Chrome9 3D engine + * ubuntu: unionfs: Added v1.4 module from hardy + * ubuntu: Add LIRC driver + * ubuntu: Add GFS driver + * ubuntu: New tlsup driver for toshiba laptops + * SAUCE: (no-up) Export lookup_has for aufs + * SAUCE: (no-up) Modularize vesafb + * ubuntu: Config files + * Disable some modules that need porting to 2.6.28 + * ubuntu: Fixup headers creation to include arch/*/include + * ubuntu/module-check: Ignore comment lines + + [ Chuck Short ] + + * SAUCE: ata: blacklist FUJITSU MHW2160BH PL + + [ cking ] + + * SAUCE: Enable speedstep for sonoma processors. + + [ Colin Ian King ] + + * ubuntu: Add dm-loop + * SAUCE: cx88: Support Leadtek WinFast DTV2000 H version J. + * SAUCE: fix kernel oops in VirtualBox during paravirt patching + * SAUCE: qc-usb: Enable Logitech QuickCam Messenger + * SAUCE: appleir: Enable driver for new MacBook Pro + + [ Colin Watson ] + + * Enable configfs, fuse, jfs, reiserfs, and xfs for armel + * Extend debian/d-i/ modules handling to make armel easier to support + * Create udebs for armel + + [ Fabio M. Di Nitto ] + + * ubuntu: update GFS Cluster File System + + [ Kees Cook ] + + * SAUCE: AppArmor: update to upstream subversion r1302 + + [ Leann Ogasawara ] + + * Add automatic model setting for Samsung Q45 + * Add Dell Dimension 9200 reboot quirk + + [ Mackenzie Morgan ] + + * SAUCE: Add quirk for ASUS Z37E to make sound audible after resume + + [ Matthew Garrett ] + + * SAUCE: hostap: send events on data interface as well as master + interface + + [ Michael Frey (Senior Manager, MID ] + + * SAUCE: Send HCI_RESET for Broadcomm 2046 + + [ Michael Haas ] + + * add proper aufs source tree from 20080922 + * Fix AUFS compilation in vfsub.c + * Add splice-2.6.23.patch from AUFS to export a symbol needed by AUFS + * Add put_filp.patch from AUFS to export a symbol needed by AUFS + * Add deny_write_access.patch from AUFS - export deny_write_access + * Add sec_perm-2.6.24.patch from AUFS - export security_inode_permission + * make sure TMPFS_MAGIC is defined in AUFS Makefile + * SAUCE: Revert aufs changes from AppArmor merge + + [ Mohamed Abbas ] + + * SAUCE: iwlagn -- fix rfkill when on when driver loaded + + [ Phillip Lougher ] + + * SAUCE: r8169: disable TSO by default for RTL8111/8168B chipsets. + + [ Stefan Bader ] + + * SAUCE: (no-up) Export dm_disk function of device-mapper + * SAUCE: Restore VT fonts on switch + * SAUCE: mmc: Increase power_up deleay to fix TI readers + * gfs1: GFS1 can't create more than 4kb file + * uvcvideo: Commit streaming parameters when enabling the video stream. + + [ Tim Gardner ] + + * SAUCE: Add extra headers to linux-libc-dev + * SAUCE: Catch nonsense keycodes and silently ignore + * SAUCE: Added support for HDAPS on various ThinkPads from Lenovo and IBM + * SAUCE: Guest OS does not recognize a lun with non zero target id on + Vmware ESX Server + * SAUCE: (no-up) Take care of orinoco_cs overlap with hostap_cs + * ubuntu: Add GNBD driver + * SAUCE: e1000e: Map NV RAM dynamically only when needed. + * SAUCE: Correctly blacklist Thinkpad r40e in ACPI + * SAUCE: Update Wacom tablet driver to 1.49 + * SAUCE: Fix Wacom tablet 1.49 porting errors + * SAUCE: Enable an e1000e Intel Corporation 82567 Gigabit controller + * SAUCE: Fix Oops in wlan_setup + * SAUCE: ipw2200: change default policy for auto-associate + * Dell Wireless 365 needs BTUSB_RESET quirk. + * ndiswrapper remote buffer overflows on long ESSIDs (CVE 2008-4395) + * Disabled ubuntu/e1000e config + + [ Upstream Kernel Changes ] + + * Revert "[Bluetooth] Eliminate checks for impossible conditions in IRQ + handler" + * Revert "x86, early_ioremap: fix fencepost error" + * mac80211: fix two issues in debugfs + * iwl3945: do not send scan command if channel count zero + + -- Ben Collins Fri, 07 Nov 2008 09:37:42 -0700 + +linux (2.6.27-8.17) intrepid-proposed; urgency=low + + [ John W. Linville ] + + * SAUCE: iwlagn: avoid sleep in softirq context + -LP: #286285 + + [ Tim Gardner ] + + * Dell Wireless 365 needs BTUSB_RESET quirk. + - LP: #293670 + * SAUCE: ALSA: hda: make a STAC_DELL_EQ option (version 2) + - LP: #293271 + + [ Upstream Kernel Changes ] + + * iwlagn: downgrade BUG_ON in interrupt + * Input: atkbd - expand Latitude's force release quirk to other Dells + * fbcon_set_all_vcs: fix kernel crash when switching the rotated consoles + * modules: fix module "notes" kobject leak + * Driver core: Fix cleanup in device_create_vargs(). + * Driver core: Clarify device cleanup. + * ath9k/mac80211: disallow fragmentation in ath9k, report to userspace + * md: Fix rdev_size_store with size == 0 + * xfs: fix remount rw with unrecognized options + * OHCI: Allow broken controllers to auto-stop + * USB: OHCI: fix endless polling behavior + * USB: Fix s3c2410_udc usb speed handling + * USB: EHCI: log a warning if ehci-hcd is not loaded first + * usb gadget: cdc ethernet notification bugfix + * usb: musb_hdrc build fixes + * drm/i915: fix ioremap of a user address for non-root (CVE-2008-3831) + * DVB: au0828: add support for another USB id for Hauppauge HVR950Q + * DVB: sms1xxx: support two new revisions of the Hauppauge WinTV + MiniStick + * security: avoid calling a NULL function pointer in + drivers/video/tvaudio.c + * Linux 2.6.27.3 + -LP: #294152 + + * gpiolib: fix oops in gpio_get_value_cansleep() + * edac cell: fix incorrect edac_mode + * x86 ACPI: fix breakage of resume on 64-bit UP systems with SMP kernel + * sched: fix the wrong mask_len + * USB: cdc-wdm: make module autoload work + * USB: don't rebind drivers after failed resume or reset + * USB: fix memory leak in cdc-acm + * USB: Speedtouch: add pre_reset and post_reset routines + * dm kcopyd: avoid queue shuffle + * dm snapshot: fix primary_pe race + * amd_iommu: fix nasty bug that caused ILLEGAL_DEVICE_TABLE_ENTRY errors + * CIFS: fix saving of resume key before CIFSFindNext + * netfilter: xt_iprange: fix range inversion match + * netfilter: snmp nat leaks memory in case of failure + * netfilter: restore lost ifdef guarding defrag exception + * anon_vma_prepare: properly lock even newly allocated entries + * hvc_console: Fix free_irq in spinlocked section + * ACPI Suspend: Enable ACPI during resume if SCI_EN is not set + * ACPI suspend: Blacklist HP xw4600 Workstation for old code ordering + * ACPI suspend: Always use the 32-bit waking vector + * proc: fix vma display mismatch between /proc/pid/{maps,smaps} + * SCSI: scsi_dh: add Dell product information into rdac device handler + * PCI hotplug: cpqphp: fix kernel NULL pointer dereference + * V4L/DVB (9300): pvrusb2: Fix deadlock problem + * Linux 2.6.27.4 + -LP: #294155 + + -- Tim Gardner Tue, 04 Nov 2008 12:16:07 -0700 + +linux (2.6.27-7.16) intrepid-security; urgency=low + + [ Tim Gardner ] + + * ndiswrapper remote buffer overflows on long ESSIDs (CVE 2008-4395) + - LP: #275860 + + [ Upstream Kernel Changes ] + + * ext[234]: Avoid printk floods in the face of directory corruption + (CVE-2008-3528) + + -- Tim Gardner Mon, 03 Nov 2008 13:34:42 -0700 + +linux (2.6.27-7.15) intrepid-security; urgency=low + + [ Upstream Kernel Changes ] + + * tcp: Restore ordering of TCP options for the sake of inter-operability + - LP: #264019 + + -- Tim Gardner Mon, 27 Oct 2008 19:28:06 -0600 + +linux (2.6.27-7.14) intrepid; urgency=low + + [ Tim Gardner ] + + * Disable ath5k in 2.6.27 + - LP: #288148 + + -- Tim Gardner Thu, 23 Oct 2008 07:40:43 -0600 + +linux (2.6.27-7.13) intrepid; urgency=low + + [ Stefan Bader ] + + * gfs1: GFS1 can't create more than 4kb file + + [ Tim Gardner ] + + * Revert "SAUCE: x86: Reserve FIRST_DEVICE_VECTOR in used_vectors + bitmap.". Use upstream commit to avoid future conflicts. + * Revert "STABLE queue: mac80211: fix two issues in debugfs". + Use upstream commit to avoid future conflicts. + * Revert "x86, early_ioremap: fix fencepost error" + Use upstream commit to avoid future conflicts. + + [ Upstream Kernel Changes ] + + * sched_rt.c: resch needed in rt_rq_enqueue() for the root rt_rq + * x86: Reserve FIRST_DEVICE_VECTOR in used_vectors bitmap. + * mac80211: fix two issues in debugfs + * Fix barrier fail detection in XFS + * tty: Termios locking - sort out real_tty confusions and lock reads + * CIFS: make sure we have the right resume info before calling + CIFSFindNext + * rfkill: update LEDs for all state changes + * libertas: clear current command on card removal + * b43legacy: Fix failure in rate-adjustment mechanism + * x86, early_ioremap: fix fencepost error + * x86: SB450: skip IRQ0 override if it is not routed to INT2 of IOAPIC + * x86: improve UP kernel when CPU-hotplug and SMP is enabled + * sky2: Fix WOL regression + * netdrvr: atl1e: Don't take the mdio_lock in atl1e_probe + * Linux 2.6.27.2 + + [ Amit Kucheria ] + + * Ubuntu: agp: Fix stolen memory counting on G4X. + -LP: 285572 + + [ Scott Remnant ] + + * add MODULE_ALIAS to load ipmi_devintf with ipmi_si + + -- Tim Gardner Sun, 19 Oct 2008 10:06:21 -0600 + +linux (2.6.27-7.12) intrepid; urgency=low + + [ Chuck Short ] + + * xen: Add xen modules to virtual flavours. + + [ Mario Limonciello ] + + * SAUCE: Add back in lost commit for Apple BT Wireless Keyboard + - LP: #162083 + + [ Tim Gardner ] + + * Remove depmod created files from packages. + - LP: #250511 + * Changed default TCP congestion algorithm to 'cubic' (again) + - LP: #278801 + * Update configs for 'disable CONFIG_DYNAMIC_FTRACE' + - LP: #263555 + + [ Upstream Kernel Changes ] + + * x86: register a platform RTC device if PNP doesn't describe it + * disable CONFIG_DYNAMIC_FTRACE due to possible memory corruption on + module unload + + -- Tim Gardner Fri, 17 Oct 2008 11:25:39 -0600 + +linux (2.6.27-7.11) intrepid; urgency=low + + [ Amit Kucheria ] + + * STABLE queue: mac80211: fix two issues in debugfs + - LP: #275227 + * SAUCE: Adds support for COMPAL JHL90 webcam + + [ Ben Collins ] + + * SAUCE: (no-up) x86: Quiet "Kernel alive" messages + - LP: #39985 + * SAUCE: (no-up) Modularize vesafb + * build/config: Enable vesafb module + * build: Switch to vesafb as preferred. + + [ Leann Ogasawara ] + + * Add Dell Dimension 9200 reboot quirk + - LP: #271370 + + [ Michael Haas ] + + * SAUCE: Revert aufs changes from AppArmor merge + + [ Tim Gardner ] + + * fix virtio udeb layout + - LP: #257739 + * Enabled CONFIG_EXT4DEV_FS=m + * Changed default TCP congestion algorithm to 'cubic' + - LP: #278801 + * SAUCE: ipw2200: change default policy for auto-associate + - LP: #264104 + + [ Upstream Kernel Changes ] + + * x86, early_ioremap: fix fencepost error + - LP: #263543 + + -- Tim Gardner Sat, 11 Oct 2008 08:07:42 -0600 + +linux (2.6.27-7.10) intrepid; urgency=low + + [ Alexey Starikovskiy ] + + * SAUCE: ACPI: EC: do transaction from interrupt context + - LP: #277802 + + [ Ben Collins ] + + * build/d-i: Change virtio-modules udeb to prio standard + + [ Colin Ian King ] + + * SAUCE: Blacklist IBM 2656 in serio/i8042 + - LP: #21558 + + [ Henrik Rydberg ] + + * Revert "SAUCE: applesmc: Add MacBookAir" + * SAUCE: [PATCH 1/5] hwmon: applesmc: Specified number of bytes to read + should match actual + * SAUCE: [PATCH 2/5] hwmon: applesmc: Fix the 'wait status failed: c != + 8' problem + * SAUCE: [PATCH 3/5] hwmon: applesmc: Prolong status wait + * SAUCE: [PATCH 4/5] hwmon: applesmc: Allow for variable ALV0 and ALV1 + package length + * SAUCE: [PATCH 5/5] hwmon: applesmc: Add support for Macbook Air + * SAUCE: hwmon: applesmc: Add support for Macbook Pro 4 + * SAUCE: hwmon: applesmc: Add support for Macbook Pro 3 + * SAUCE: hwmon: applesmc: Lighter wait mechanism, drastic improvement + + [ Leann Ogasawara ] + + * Add automatic model setting for Samsung Q45 + - LP: #200210 + + [ Tim Gardner ] + + * SAUCE: Correctly blacklist Thinkpad r40e in ACPI + - LP: #278794 + * SAUCE: Update Wacom tablet driver to 1.49 + - LP: #260675 + * SAUCE: ALPS touchpad for Dell Latitude E6500/E6400 + - LP: #270643 + * SAUCE: Fix Wacom tablet 1.49 porting errors + * SAUCE: Enable an e1000e Intel Corporation 82567 Gigabit controller + * SAUCE: Fix Oops in wlan_setup + - LP: #263309 + + [ Upstream Kernel Changes ] + + * ath9k: fix oops on trying to hold the wrong spinlock + * [Bluetooth] Fix double frees on error paths of btusb and bpa10x drivers + * [Bluetooth] Add reset quirk for new Targus and Belkin dongles + * [Bluetooth] Add reset quirk for A-Link BlueUSB21 dongle + * Revert "ax25: Fix std timer socket destroy handling." + * ax25: Quick fix for making sure unaccepted sockets get destroyed. + * netrom: Fix sock_orphan() use in nr_release + * Revert "V4L/DVB (8904): cx88: add missing unlock_kernel" + * SLOB: fix bogus ksize calculation + * net: only invoke dev->change_rx_flags when device is UP + * tcp: Fix possible double-ack w/ user dma + * net: Fix netdev_run_todo dead-lock + * tcp: Fix tcp_hybla zero congestion window growth with small rho and large cwnd. + * [MIPS] Sibyte: Register PIO PATA device only for Swarm and Litte Sur + * eeepc-laptop: Fix hwmon interface + * hwmon: (it87) Prevent power-off on Shuttle SN68PT + * hwmon: Define sysfs interface for energy consumption register + * hwmon: (adt7473) Fix some bogosity in documentation file + * hwmon: (abituguru3) Enable reading from AUX3 fan on Abit AT8 32X + * hwmon: (abituguru3) Enable DMI probing feature on Abit AT8 32X + * [CPUFREQ] correct broken links and email addresses + * SLOB: fix bogus ksize calculation fix + * Don't allow splice() to files opened with O_APPEND + * Linux 2.6.27 + + -- Tim Gardner Wed, 08 Oct 2008 21:19:34 -0600 + +linux (2.6.27-6.9) intrepid; urgency=low + + [ Kees Cook ] + + * SAUCE: AppArmor: update to upstream subversion r1302 + - LP: #269921 + + [ Stefan Bader ] + + * Update configuration files to be compliant to desktop specs + - LP: #279019 + + [ Tim Gardner ] + + * Add support in e1000e for a couple of ICH10 PCI IDs + * Enable CONFIG_INPUT_PCSPKR=m + - LP: #275453 + + [ Upstream Kernel Changes ] + + * V4L/DVB (8559a): Fix a merge conflict at gspca/sonixb + * V4L/DVB (8789): wm8739: remove wrong kfree + * V4L/DVB (8883): w9968cf: Fix order of usb_alloc_urb validation + * V4L/DVB (8884): em28xx-audio: fix memory leak + * V4L/DVB (8885): cpia2_usb: fix memory leak + * V4L/DVB (8886): ov511: fix memory leak + * V4L/DVB (8887): gspca: fix memory leak + * V4L/DVB (8892): pvrusb2: Handle USB ID 2040:2950 same as 2040:2900 + * V4L/DVB (8904): cx88: add missing unlock_kernel + * V4L/DVB (8905): ov511: fix exposure sysfs attribute bug + * V4L/DVB (8909): gspca: PAC 7302 webcam 093a:262a added. + * hrtimer: migrate pending list on cpu offline + * hrtimer: fix migration of CB_IRQSAFE_NO_SOFTIRQ hrtimers + * hrtimer: mark migration state + * hrtimer: prevent migration of per CPU hrtimers + * [IA64] Put the space for cpu0 per-cpu area into .data section + * powerpc: Fix PCI in Holly device tree + * powerpc: Fix failure to shutdown with CPU hotplug + * mfd: Fix Kconfig accroding to the new gpiolib symbols + * mfd: Fix asic3 compilation + * x86: fix typo in enable_mtrr_cleanup early parameter + * ipsec: Fix pskb_expand_head corruption in xfrm_state_check_space + * iucv: Fix mismerge again. + * ALSA: ASoC: Fix cs4270 error path + * ALSA: hda - Fix model for Dell Inspiron 1525 + * sctp: Fix kernel panic while process protocol violation parameter + * x86: Fix broken LDT access in VMI + * x86, vmi: fix broken LDT access + * tcp: Fix NULL dereference in tcp_4_send_ack() + * ipv6: NULL pointer dereferrence in tcp_v6_send_ack + * XFRM,IPv6: initialize ip6_dst_blackhole_ops.kmem_cachep + * af_key: Free dumping state on socket close + * dm: always allow one page in dm_merge_bvec + * dm: cope with access beyond end of device in dm_merge_bvec + * dm mpath: add missing path switching locking + * MN10300: Fix IRQ handling + * pxa2xx_spi: fix build breakage + * e1000e: write protect ICHx NVM to prevent malicious write/erase + * powerpc: Fix boot hang regression on MPC8544DS + * ASoC: Set correct name for WM8753 rec mixer output + * ALSA: snd-powermac: mixers for PowerMac G4 AGP + * ALSA: snd-powermac: HP detection for 1st iMac G3 SL + * fbcon: fix monochrome color value calculation + * inotify: fix lock ordering wrt do_page_fault's mmap_sem + * braille_console: only register notifiers when the braille console is used + * fix error-path NULL deref in alloc_posix_timer() + * memory hotplug: missing zone->lock in test_pages_isolated() + * mm: tiny-shmem nommu fix + * mm: handle initialising compound pages at orders greater than MAX_ORDER + * e1000e: reset swflag after resetting hardware + * e1000e: do not ever sleep in interrupt context + * e1000e: remove phy read from inside spinlock + * e1000e: drop stats lock + * e1000e: debug contention on NVM SWFLAG + * e1000e: update version from k4 to k6 + * Check mapped ranges on sysfs resource files + * e1000e: Fix incorrect debug warning + * [MIPS] Build fix: Fix irq flags type + * [MIPS] SMTC: Build fix: Fix filename in Makefile + * [MIPS] SMTC: Fix holes in SMTC and FPU affinity support. + * [MIPS] SMTC: Close tiny holes in the SMTC IPI replay system. + * [MIPS] SMTC: Fix SMTC dyntick support. + * [S390] nohz: Fix __udelay. + * [S390] qdio: prevent stack clobber + * Fix init/main.c to use regular printk with '%pF' for initcall fn + * x86 setup: correct segfault in generation of 32-bit reloc kernel + * selinux: Fix an uninitialized variable BUG/panic in selinux_secattr_to_sid() + * rtc: fix kernel panic on second use of SIGIO nofitication + * fbdev: fix recursive notifier and locking when fbdev console is blanked + * orion_spi: fix handling of default transfer speed + * include/linux/stacktrace.h: declare struct task_struct + * cpusets: remove pj from cpuset maintainers + * MAINTAINERS: add mailing list for man-pages + * SubmitChecklist: interfaces changes should CC linux-api@ + * Documentation/HOWTO: info about interface changes should CC linux-api@vger + * dw_dmac: fix copy/paste bug in tasklet + * leds-fsg: change order of initialization and deinitialization + * leds-pca955x: add proper error handling and fix bogus memory handling + * ACPI: Make /proc/acpi/wakeup interface handle PCI devices (again) + * clockevents: check broadcast tick device not the clock events device + * V4L/DVB (8919): cx18: Fix tuner audio input for Compro H900 cards + * V4L/DVB (8926): gspca: Bad fix of leak memory (changeset 43d2ead315b1). + * V4L/DVB (8933): gspca: Disable light frquency for zc3xx cs2102 Kokom. + * V4L/DVB (8935): em28xx-cards: Remove duplicate entry (EM2800_BOARD_KWORLD_USB2800) + * V4L/DVB (8955): bttv: Prevent NULL pointer dereference in radio_open + * V4L/DVB (8957): zr36067: Restore the default pixel format + * V4L/DVB (8958): zr36067: Return proper bytes-per-line value + * V4L/DVB (8960): drivers/media/video/cafe_ccic.c needs mm.h + * V4L/DVB (8961): zr36067: Fix RGBR pixel format + * V4L/DVB (8963): s2255drv field count fix + * V4L/DVB (8967): Use correct XC3028L firmware for AMD ATI TV Wonder 600 + * V4L/DVB (8978): sms1xxx: fix product name for Hauppauge WinTV MiniStick + * V4L/DVB (8979): sms1xxx: Add new USB product ID for Hauppauge WinTV MiniStick + * V4L/DVB (9029): Fix deadlock in demux code + * V4L/DVB (9037): Fix support for Hauppauge Nova-S SE + * V4L/DVB (9043): S5H1420: Fix size of shadow-array to avoid overflow + * V4L/DVB (9053): fix buffer overflow in uvc-video + * V4L/DVB (9075): gspca: Bad check of returned status in i2c_read() spca561. + * V4L/DVB (9080): gspca: Add a delay after writing to the sonixj sensors. + * V4L/DVB (9092): gspca: Bad init values for sonixj ov7660. + * V4L/DVB (9099): em28xx: Add detection for K-WORLD DVB-T 310U + * V4L/DVB (9103): em28xx: HVR-900 B3C0 - fix audio clicking issue + * x86: gart iommu have direct mapping when agp is present too + * ide-cd: temporary tray close fix + * ide-dma: fix ide_build_dmatable() for TRM290 + * IDE: Fix platform device registration in Swarm IDE driver (v2) + * ide-cd: Optiarc DVD RW AD-7200A does play audio + * ide: workaround for bogus gcc warning in ide_sysfs_register_port() + * [MIPS] Fix CMP Kconfig configuration and mark as broken. + * [MIPS] IP27: Fix build errors if CONFIG_MAPPED_KERNEL=y + * x86 ACPI: Blacklist two HP machines with buggy BIOSes + * kgdb, x86: Avoid invoking kgdb_nmicallback twice per NMI + * kgdb: call touch_softlockup_watchdog on resume + * atmel-mci: Initialize BLKR before sending data transfer command + * Marker depmod fix core kernel list + * Linux 2.6.27-rc9 + + -- Tim Gardner Sun, 05 Oct 2008 21:27:49 -0600 + +linux (2.6.27-5.8) intrepid; urgency=low + + [ Amit Kucheria ] + + * Update AUFS-related Kconfig + - LP: #264048 + + [ Michael Haas ] + + * add proper aufs source tree from 20080922 + * Fix AUFS compilation in vfsub.c + * Add splice-2.6.23.patch from AUFS to export a symbol needed by AUFS + * Add put_filp.patch from AUFS to export a symbol needed by AUFS + * apply (modified) lhash.patch from AUFS to export __lookup_hash() + * Add deny_write_access.patch from AUFS - export deny_write_access + * Add sec_perm-2.6.24.patch from AUFS - export security_inode_permission + * make sure TMPFS_MAGIC is defined in AUFS Makefile + + [ Tim Gardner ] + + * Enabled CONFIG_IPWIRELESS + - LP: #274748 + * Enabled CONFIG_E1000E, disabled CONFIG_E1000E_NEW + This takes advantage of the upstream NVM protection fix in + commit 4a7703582836f55a1cbad0e2c1c6ebbee3f9b3a7. + + [ Upstream Kernel Changes ] + + * Revert "[Bluetooth] Eliminate checks for impossible conditions in IRQ + handler" + * [SCSI] qla2xxx: Defer enablement of RISC interrupts until ISP + initialization completes. + * PCI: Fix pcie_aspm=force + * PCI: fix compiler warnings in pci_get_subsys() + * UBIFS: create the name of the background thread in every case + * UBIFS: TNC / GC race fixes + * UBIFS: remove incorrect assert + * UBIFS: fix printk format warnings + * AMD IOMMU: set iommu sunc flag after command queuing + * AMD IOMMU: protect completion wait loop with iommu lock + * sparc64: Fix disappearing PCI devices on e3500. + * x86, oprofile: BUG scheduling while atomic + * ALSA: ASoC: Fix at32-pcm build breakage with PM enabled + * ath9k: connectivity is lost after Group rekeying is done + * wireless: zd1211rw: add device ID fix wifi dongle "trust nw-3100" + * [IA64] Ski simulator doesn't need check_sal_cache_flush + * [IA64] kexec fails on systems with blocks of uncached memory + * ath9k: Fix IRQ nobody cared issue with ath9k + * [Bluetooth] Fix I/O errors on MacBooks with Broadcom chips + * [Bluetooth] Fix wrong URB handling of btusb driver + * [Bluetooth] Fix USB disconnect handling of btusb driver + * sparc64: Fix missing devices due to PCI bridge test in + of_create_pci_dev(). + * [WATCHDOG] ibmasr: remove unnecessary spin_unlock() + * [WATCHDOG] wdt285: fix sparse warnings + * [WATCHDOG] unlocked_ioctl changes + * x86: fix 27-rc crash on vsmp due to paravirt during module load + * sched: fix init_hrtick() section mismatch warning + * clockevents: prevent cpu online to interfere with nohz + * x86: prevent stale state of c1e_mask across CPU offline/online + * clockevents: prevent stale tick_next_period for onlining CPUs + * clockevents: check broadcast device not tick device + * clockevents: prevent mode mismatch on cpu online + * x86: prevent C-states hang on AMD C1E enabled machines + * x86: c1e_idle: don't mark TSC unstable if CPU has invariant TSC + * timers: fix build error in !oneshot case + * ALSA: ASoC: maintainers - update email address for Liam Girdwood + * ibmasr: remove unnecessary spin_unlock() + * smb.h: do not include linux/time.h in userspace + * kernel-doc: allow structs whose members are all private + * kexec: fix segmentation fault in kimage_add_entry + * Documentation/DMA-mapping.txt: update for pci_dma_mapping_error() + changes + * sys_paccept: disable paccept() until API design is resolved + * mm: tiny-shmem fix lock ordering: mmap_sem vs i_mutex + * Documentation/sysctl/kernel.txt: fix softlockup_thresh description + * memcg: check under limit at shrink_usage + * atmel_serial: update the powersave handler to match serial core + * [SCSI] Fix hang with split requests + * USB Storage: Sierra: Non-configurable TRU-Install + * USB Serial: Sierra: Device addition & version rev + * USB: ehci: fix some ehci hangs and crashes + * USB: Fix the Nokia 6300 storage-mode. + * USB: Correct Sierra Wireless USB EVDO Modem Device ID + * USB: fix hcd interrupt disabling + * USB: update of Documentation/usb/anchors.txt + * usb gadget: fix omap_udc DMA regression + * USB: Fixing Nokia 3310c in storage mode + * usb: musb: fix include path + * USB: fix EHCI periodic transfers + * usb-serial: Add Siemens EF81 to PL-2303 hack triggers + * USB: SERIAL CP2101 add device IDs + * USB: unusual_devs addition for RockChip MP3 player + * USB: fsl_usb2_udc: fix VDBG() format string + * usb serial: ti_usb_3410_5052 obviously broken by firmware changes + * USB: ftdi_sio: Add 0x5050/0x0900 USB IDs (Papouch Quido USB 4/4) + * USB: serial: add ZTE CDMA Tech id to option driver + * USB Serial: Sierra: Add MC8785 VID/PID + * USB: drivers/usb/musb/: disable it on SuperH + * usb: ftdi_sio: add support for Domintell devices + * usb: unusual devs patch for Nokia 5310 Music Xpress + * USB: revert recovery from transient errors + * [MIPS] au1000: Fix gpio direction + * [MIPS] Fixe the definition of PTRS_PER_PGD + * x86: prevent stale state of c1e_mask across CPU offline/online, fix + * x86: disable apm on the olpc + * i2c-powermac: Fix section for probe and remove functions + * i2c-dev: Return correct error code on class_create() failure + * i2c: Fix mailing lists in two MAINTAINERS entries + * ath9k: disable MIB interrupts to fix interrupt storm + * 9p: implement proper trans module refcounting and unregistration + * 9p-trans_fd: fix trans_fd::p9_conn_destroy() + * 9p-trans_fd: clean up p9_conn_create() + * 9p-trans_fd: don't do fs segment mangling in p9_fd_poll() + * 9p-trans_fd: fix and clean up module init/exit paths + * 9p: introduce missing kfree + * 9p: use an IS_ERR test rather than a NULL test + * 9p: fix put_data error handling + * netfilter: ip6t_{hbh,dst}: Rejects not-strict mode on rule insertion + * MN10300: Move asm-arm/cnt32_to_63.h to include/linux/ + * MN10300: Make sched_clock() report time since boot + * ALSA: fix locking in snd_pcm_open*() and snd_rawmidi_open*() + * ALSA: remove unneeded power_mutex lock in snd_pcm_drop + * IPoIB: Fix crash when path record fails after path flush + * [XFS] Fix extent list corruption in xfs_iext_irec_compact_full(). + * [XFS] Remove xfs_iext_irec_compact_full() + * kgdb: could not write to the last of valid memory with kgdb + * kgdb, x86, arm, mips, powerpc: ignore user space single stepping + * kgdb, x86_64: gdb serial has BX and DX reversed + * kgdb, x86_64: fix PS CS SS registers in gdb serial + * kgdboc,tty: Fix tty polling search to use name correctly + * ARM: Delete ARM's own cnt32_to_63.h + * m32r: remove the unused NOHIGHMEM option + * m32r: don't offer CONFIG_ISA + * m32r: export empty_zero_page + * m32r: export __ndelay + * m32r/kernel/: cleanups + * [MIPS] au1000: Make sure GPIO value is zero or one + * [MIPS] IP27: Switch to dynamic interrupt routing avoding panic on + error. + * [MIPS] BCM47xx: Fix build error due to missing PCI functions + * [SSB] Initialise dma_mask for SSB_BUSTYPE_SSB devices + * Swarm: Fix crash due to missing initialization + * ide-tape: fix vendor strings + * ide: note that IDE generic may prevent other drivers from attaching + * cdrom: update ioctl documentation + * [SCSI] qlogicpti: fix sg list traversal error in continuation entries + * sata_nv: reinstate nv_hardreset() for non generic controllers + * scsi: fix fall out of sg-chaining patch in qlogicpti + * ALSA: make the CS4270 driver a new-style I2C driver + * ALSA: ASoC: Fix another cs4270 error path + * Fix NULL pointer dereference in proc_sys_compare + * kconfig: fix silentoldconfig + * kconfig: readd lost change count + * mm owner: fix race between swapoff and exit + * Linux 2.6.27-rc8 + * e1000e: write protect ICHx NVM to prevent malicious write/erase + + -- Amit Kucheria Tue, 30 Sep 2008 18:22:35 +0300 + +linux (2.6.27-4.7) intrepid; urgency=low + + [ Ben Collins ] + + * build/abi: Add gfs1 to perm blacklist + * build/abi: Ignored changes in gfs2 symbols + + [ Fabio M. Di Nitto ] + + * Revert "SAUCE: Export gfs2 symbols required for gfs1 kernel module" + * ubuntu: update GFS Cluster File System + + [ Stefan Bader ] + + * SAUCE: x86: Reserve FIRST_DEVICE_VECTOR in used_vectors bitmap. + - LP: #276334 + + [ Tim Gardner ] + + * Revert "Disable e1000e until the NVRAM corruption problem is found." + * Add atl1e and atl2 to Debian installer bits + - LP: #273904 + * SAUCE: e1000e: Map NV RAM dynamically only when needed. + - LP: #263555 + + -- Tim Gardner Fri, 26 Sep 2008 20:51:22 -0600 + +linux (2.6.27-4.6) intrepid; urgency=low + + [ Tim Gardner ] + + * Disable e1000e until the NVRAM corruption problem is found. + - LP: #263555 + + [ Upstream Kernel Changes ] + + * Revert "[Bluetooth] Eliminate checks for impossible conditions in IRQ + handler" + + -- Ben Collins Tue, 23 Sep 2008 09:53:57 -0400 + +linux (2.6.27-4.5) intrepid; urgency=low + + [ Upstream Kernel Changes ] + + * Revert "b43/b43legacy: add RFKILL_STATE_HARD_BLOCKED support" + * udf: Fix lock inversion between iprune_mutex and alloc_mutex (v2) + * udf: Fix error paths in udf_new_inode() + * [SCSI] sd: select CRC_T10DIF only when necessary + * [SCSI] zfcp: Fix request queue locking + * [SCSI] zfcp: Correctly query end flag in gpn_ft response + * [SCSI] zfcp: Simplify ccw notify handler + * [SCSI] zfcp: Fix reference counter for remote ports + * [SCSI] zfcp: channel cannot be detached due to refcount imbalance + * [SCSI] zfcp: Remove duplicated unlikely() macros. + * [SCSI] scsi_dh: make check_sense return ADD_TO_MLQUEUE + * [SCSI] make scsi_check_sense HARDWARE_ERROR return ADD_TO_MLQUEUE on + retry + * [SCSI] fix check of PQ and PDT bits for WLUNs + * pcm037: add rts/cts support for serial port + * i.MX serial: fix init failure + * imx serial: set RXD mux bit on i.MX27 and i.MX31 + * imx serial: fix rts handling for non imx1 based hardware + * mlx4_core: Set RAE and init mtt_sz field in FRMR MPT entries + * udf: add llseek method + * PCI/iommu: blacklist DMAR on Intel G31/G33 chipsets + * PCI: Fix printk warnings in probe.c + * PCI: Fix printk warnings in setup-bus.c + * PCI Hotplug: fakephp: fix deadlock... again + * clockevents: remove WARN_ON which was used to gather information + * ocfs2: Fix a bug in direct IO read. + * arch/x86/kernel/kdebugfs.c: introduce missing kfree + * [IA64] fix compile failure with non modular builds + * [IA64] fix up bte.h + * [IA64] arch/ia64/sn/pci/tioca_provider.c: introduce missing kfree + * PCI: fix pciehp_free_irq() + * [IA64] prevent ia64 from invoking irq handlers on offline CPUs + * ide: Fix pointer arithmetic in hpt3xx driver code (3rd try) + * add deprecated ide-scsi to feature-removal-schedule.txt + * swiotlb: fix back-off path when memory allocation fails + * sparc64: Fix interrupt register calculations on Psycho and Sabre. + * VIDEO_SH_MOBILE_CEU should depend on HAS_DMA + * m68k: Update defconfigs for 2.6.27-rc6 + * sparc32: Fix function signature of of_bus_sbus_get_flags(). + * sched: fix 2.6.27-rc5 couldn't boot on tulsa machine randomly + * sched: fix deadlock in setting scheduler parameter to zero + * KVM: SVM: fix random segfaults with NPT enabled + * KVM: SVM: fix guest global tlb flushes with NPT + * KVM: VMX: Always return old for clear_flush_young() when using EPT + * clocksource, acpi_pm.c: fix check for monotonicity + * [ARM] OMAP: Fix MMC device data + * block: disable sysfs parts of the disk command filter + * ath9k: Assign seq# when mac80211 requests this + * sg: disable interrupts inside sg_copy_buffer + * MN10300: Change the fault handler to check in_atomic() not + in_interrupt() + * [Bluetooth] Fix regression from using default link policy + * netlink: fix overrun in attribute iteration + * x86: fix possible x86_64 and EFI regression + * sparc64: Fix PCI error interrupt registry on PSYCHO. + * sparc: Fix user_regset 'n' field values. + * niu: panic on reset + * PCI: re-add debug prints for unmodified BARs + * [ARM] 5245/1: Fix warning about unused return value in drivers/pcmcia + * [ARM] 5246/1: tosa: add proper clock alias for tc6393xb clock + * [ARM] 5247/1: tosa: SW_EAR_IN support + * [ARM] Fix PCI_DMA_BUS_IS_PHYS for ARM + * ata: duplicate variable sparse warning + * sata_inic162x: enable LED blinking + * [libata] LBA28/LBA48 off-by-one bug in ata.h + * proc: more debugging for "already registered" case + * include/linux/ioport.h: add missing macro argument for devm_release_* + family + * cpuset: avoid changing cpuset's cpus when -errno returned + * cpuset: hotplug documentation fix + * coredump_filter: add description of bit 4 + * bfs: fix Lockdep warning + * mm: ifdef Quicklists in /proc/meminfo + * spi_mpc83xx: fix clockrate calculation for low speed + * spi_mpc83xx: reject invalid transfer sizes + * pxa2xx_spi: chipselect bugfixes + * pxa2xx_spi: dma bugfixes + * mm: mark the correct zone as full when scanning zonelists + * Documentation/ABI: /sys/class/gpio + * MAINTAINERS: fix USB VIDEO CLASS mail list address + * ia64: fix panic during `modprobe -r xpc' + * atmel_lcdfb: disable LCD and DMA engines when suspending + * spi_s3c24xx: fix section warning + * rescan_partitions(): make device capacity errors non-fatal + * memstick: fix MSProHG 8-bit interface mode support + * Add Uwe Kleine-König to .mailmap + * xen: fix for xen guest with mem > 3.7G + * x86/paravirt: Remove duplicate paravirt_pagetable_setup_{start, done}() + * crypto: talitos - Avoid consecutive packets going out with same IV + * slub: fixed uninitialized counter in struct kmem_cache_node + * udp: Fix rcv socket locking + * IB/mlx4: Fix up fast register page list format + * [MIPS] VR41xx: unsigned irq cannot be negative + * x86: completely disable NOPL on 32 bits + * [S390] cio: Fix driver_data handling for ccwgroup devices. + * [S390] cio: fix orb initialization in cio_start_key + * sparc64: Fix OOPS in psycho_pcierr_intr_other(). + * sparc64: Fix SMP bootup with CONFIG_STACK_DEBUG or ftrace. + * RDMA/nes: Fix client side QP destroy + * IPoIB: Fix deadlock on RTNL between bcast join comp and ipoib_stop() + * clockevents: make device shutdown robust + * powerpc: Fix interrupt values for DMA2 in MPC8610 HPCD device tree + * hpplus: fix build regression + * Fix PNP build failure, bugzilla #11276 + * warn: Turn the netdev timeout WARN_ON() into a WARN() + * [XFS] Move memory allocations for log tracing out of the critical path + * [XFS] Fix regression introduced by remount fixup + * [XFS] Prevent direct I/O from mapping extents beyond eof + * [XFS] Fix barrier status change detection. + * [XFS] Prevent lockdep false positives when locking two inodes. + * [XFS] Fix use-after-free with buffers + * [XFS] Don't do I/O beyond eof when unreserving space + * powerpc: Holly board needs dtbImage target + * Fix compile failure with non modular builds + * [ARM] 5249/1: davinci: remove redundant check in davinci_psc_config() + * [ARM] omap: back out 'internal_clock' support + * sctp: set the skb->ip_summed correctly when sending over loopback. + * [ARM] 5255/1: Update jornada ssp to remove build errors/warnings + * sctp: do not enable peer features if we can't do them. + * sctp: Fix oops when INIT-ACK indicates that peer doesn't support AUTH + * bnx2: Promote vector field in bnx2_irq structure from u16 to unsigned + int + * forcedeth: call restore mac addr in nv_shutdown path + * e1000: prevent corruption of EEPROM/NVM + * e100: Use pci_pme_active to clear PME_Status and disable PME# + * md: Don't wait UNINTERRUPTIBLE for other resync to finish + * atstk1000: fix build breakage with BOARD_ATSTK100X_SW2_CUSTOM=y + * avr32: add .gitignore files + * avr32: add generic_find_next_le_bit bit function + * avr32: fix sys_sync_file_range() call convention + * avr32: nmi_enter() without nmi_exit() + * KVM: ia64: 'struct fdesc' build fix + * hwmon: (atxp1) Fix device detection logic + * hwmon: (it87) Fix fan tachometer reading in IT8712F rev 0x7 (I) + * hwmon: (ad7414) Make ad7414_update_device() static + * tmio_mmc: fix compilation with debug enabled + * atmel-mci: debugfs: enable clock before dumping regs + * atmel-mci: Fix memory leak in atmci_regs_show + * atmel-mci: Fix bogus debugfs file size + * atmel-mci: Set MMC_CAP_NEEDS_POLL if no detect_pin + * mmc_block: handle error from mmc_register_driver() + * mmc_test: initialize mmc_test_lock statically + * [MIPS] Fix 64-bit IP checksum code + * [MIPS] SMTC: Clear TIF_FPUBOUND on clone / fork. + * [MIPS] Fix potential latency problem due to non-atomic cpu_wait. + * [MIPS] vmlinux.lds.S: handle .text.* + * MAINTAINERS: Trivial whitespace cleanups + * MAINTAINERS: Various fixes + * Linux 2.6.27-rc7 + + -- Tim Gardner Sun, 21 Sep 2008 21:49:28 -0600 + +linux (2.6.27-3.4) intrepid; urgency=low + + [ Colin Ian King ] + + * SAUCE: fix kernel oops in VirtualBox during paravirt patching + - LP: #246067 + * SAUCE: qc-usb: Enable Logitech QuickCam Messenger + - LP: #209901 + * SAUCE: appleir: Enable driver for new MacBook Pro + - LP: #157919 + + [ Tim Gardner ] + + * Enabled CONFIG_DEBUG_RODATA=y + + [ Upstream Kernel Changes ] + + * Revert "ALSA: hda - Added model selection for iMac 24"" + * Revert "x86: fix HPET regression in 2.6.26 versus 2.6.25, check hpet + against BAR, v3" + * Revert "[ARM] use the new byteorder headers" + * Revert "mac80211: Use IWEVASSOCREQIE instead of IWEVCUSTOM" + * Revert "crypto: camellia - Use kernel-provided bitops, unaligned access + helpers" + * svcrdma: Fix race between svc_rdma_recvfrom thread and the dto_tasklet + * sched, cpuset: rework sched domains and CPU hotplug handling (v4) + * ACPI: Fix now signed module parameter. + * ACPI: Change package length error to warning + * ACPI: Fix now signed module parameter. + * ACPI: Fix typo in "Disable MWAIT via DMI on broken Compal board" + * acpi: add checking for NULL early param + * UBIFS: fix zero-length truncations + * Input: bcm5974 - add maintainer entry + * sh64: re-add the __strnlen_user() prototype + * sh: fix ptrace_64.c:user_disable_single_step() + * PNPACPI: ignore the producer/consumer bit for extended IRQ descriptors + * UBIFS: always read hashed-key nodes under TNC mutex + * UBIFS: allow for racing between GC and TNC + * [CIFS] Fix plaintext authentication + * sparc32: Implement smp_call_function_single(). + * sh: crash kernel resource fix + * sh: fix kexec entry point for crash kernels + * sh: fix platform_resource_setup_memory() section mismatch + * sh: update Migo-R defconfig + * sh: update AP325RXA defconfig + * sh: fix semtimedop syscall + * cifs: fix O_APPEND on directio mounts + * [CIFS] update cifs change log + * [CIFS] Turn off Unicode during session establishment for plaintext + authentication + * ACPI: thinkpad-acpi: wan radio control is not experimental + * sparc: Fix resource flags for PCI children in OF device tree. + * remove blk_register_filter and blk_unregister_filter in gendisk + * ALSA: oxygen: fix distorted output on AK4396-based cards + * ipv6: When we droped a packet, we should return NET_RX_DROP instead of + 0 + * pkt_sched: Fix locking of qdisc_root with qdisc_root_sleeping_lock() + * net: Unbreak userspace usage of linux/mroute.h + * Don't trigger softlockup detector on network fs blocked tasks + * Resource handling: add 'insert_resource_expand_to_fit()' function + * sparc64: setup_valid_addr_bitmap_from_pavail() should be __init + * UBIFS: do not update min_idx_lebs in stafs + * UBIFS: push empty flash hack down + * UBIFS: remove incorrect index space check + * UBIFS: improve statfs reporting + * UBIFS: fix assertion + * UBIFS: add forgotten gc_idx_lebs component + * UBIFS: introduce LEB overhead + * UBIFS: improve statfs reporting even more + * UBIFS: fill f_fsid + * drm/radeon: downgrade debug message from info to debug. + * Remove invalidate_partition call from do_md_stop. + * Fix problem with waiting while holding rcu read lock in md/bitmap.c + * ALSA: hda: Distortion fix for dell_m6_core_init + * ALSA: ASoC: fix pxa2xx-i2s clk_get call + * block: restore original behavior of /proc/partition when there's no + partition + * debugobjects: fix lockdep warning + * avr32: Fix lockup after Java stack underflow in user mode + * avr32: pm_standby low-power ram bug fix + * nfsd: fix compound state allocation error handling + * sunrpc: fix possible overrun on read of /proc/sys/sunrpc/transports + * nfsd: fix buffer overrun decoding NFSv4 acl + * audit: Moved variable declaration to beginning of function + * Fix modules_install on RO nfs-exported trees. + * Remove '#include ' from mm/page_isolation.c + * dabusb_fpga_download(): fix a memory leak + * [MTD] mtdchar.c: Fix regression in MEMGETREGIONINFO ioctl() + * ALSA: hda - Fix ALC663 auto-probe + * ALSA: hda - Add mic-boost controls to ALC662/663 auto configuration + * Un-break printk strings in x86 PCI probing code + * kernel/resource.c: fix new kernel-doc warning + * softlockup: minor cleanup, don't check task->state twice + * fix typo in arch/parisc/hpux/fs.c + * m68k: atari_keyb_init operator precedence fix + * ACPI: Fix typo in "Disable MWAIT via DMI on broken Compal board" + * don't diff generated firmware files + * IDE: compile fix for sff_dma_ops + * IDE: palm_bk3710: fix compile warning for unused variable + * ide: fix hwif_to_node() + * palm_bk3710: improve IDE registration + * ide-disk: remove stale init_idedisk_capacity() documentation + * ide/Kconfig: mark ide-scsi as deprecated + * net/wireless/Kconfig: clarify the description for + CONFIG_WIRELESS_EXT_SYSFS + * iwlwifi: do not use GFP_DMA in iwl_tx_queue_init + * iwlwifi: workaround interrupt handling no some platforms + * iwlwifi: fix apm_stop (wrong bit polarity for FLAG_INIT_DONE) + * iwlwifi: fix 64bit platform firmware loading + * orinoco: Multicast to the specified addresses + * wireless/libertas/if_cs.c: fix memory leaks + * mac80211: Fix debugfs union misuse and pointer corruption + * rt2x00: Compiler warning unmasked by fix of BUILD_BUG_ON + * ath9k: Incorrect key used when group and pairwise ciphers are + different. + * ath9: Fix ath_rx_flush_tid() for IRQs disabled kernel warning message. + * net/xfrm: Use an IS_ERR test rather than a NULL test + * ipv: Re-enable IP when MTU > 68 + * NTFS: update homepage + * mm: make setup_zone_migrate_reserve() aware of overlapping nodes + * VFS: fix dio write returning EIO when try_to_release_page fails + * acer-wmi: remove debugfs entries upon unloading + * mm/bootmem: silence section mismatch warning - + contig_page_data/bootmem_node_data + * MAINTAINERS: add a maintainer for the BCM5974 multitouch driver + * 8250: improve workaround for UARTs that don't re-assert THRE correctly + * mmc: at91_mci: don't use coherent dma buffers + * pid_ns: zap_pid_ns_processes: fix the ->child_reaper changing + * pid_ns: (BUG 11391) change ->child_reaper when init->group_leader exits + * cirrusfb: check_par fixes + * devcgroup: fix race against rmdir() + * mm: show quicklist usage in /proc/meminfo + * mm: size of quicklists shouldn't be proportional to the number of CPUs + * ipc: document the new auto_msgmni proc file + * hp-wmi: update to match current rfkill semantics + * hp-wmi: add proper hotkey support + * tdfxfb: fix SDRAM memory size detection + * tdfxfb: fix frame buffer name overrun + * rtc_time_to_tm: fix signed/unsigned arithmetic + * ibft: fix target info parsing in ibft module + * sysfs: document files in /sys/firmware/sgi_uv/ + * rtc-cmos: wake again from S5 + * pm_qos_requirement might sleep + * drivers/char/random.c: fix a race which can lead to a bogus BUG() + * ipsec: Fix deadlock in xfrm_state management. + * [x86] Fix TSC calibration issues + * tipc: Don't use structure names which easily globally conflict. + * sparc64: Fix IPI call locking. + * [ARM] omap: fix gpio.c build error + * sparc64: Prevent sparc64 from invoking irq handlers on offline CPUs + * powerpc: Fix uninitialised variable in VSX alignment code + * powerpc: Only make kernel text pages of linear mapping executable + * powerpc: Make sure _etext is after all kernel text + * powerpc: Work around gcc's -fno-omit-frame-pointer bug + * powerpc: Fix build error with 64K pages and !hugetlbfs + * powerpc: Fix for getting CPU number in power_save_ppc32_restore() + * UBIFS: amend f_fsid + * net/usb/pegasus: avoid hundreds of diagnostics + * ixgbe: initialize interrupt throttle rate + * pcnet-cs, axnet_cs: add new IDs, remove dup ID with less info + * netxen: Remove workaround for chipset quirk + * Split up PIT part of TSC calibration from native_calibrate_tsc + * iwlwifi: W/A for the TSF correction in IBSS + * iwlwifi: fix hidden ssid discovery in passive channels + * iwlwifi: remove false rxon if rx chain changes + * iwlwifi: fix station mimo power save values + * iwlwifi: fix rx_chain computation + * iwlwifi: fix Tx cmd memory allocation failure handling + * iwlwifi: call apm stop on exit + * iwlwifi: fix STATUS_EXIT_PENDING is not set on pci_remove + * ath9k: Fix TX status reporting + * ath9k: Fix TX control flag use for no ACK and RTS/CTS + * V4L/DVB (8555): au8522: add mechanism to configure IF frequency for vsb + and qam + * V4L/DVB (8556): au0828: add support for Hauppauge Woodbury + * V4L/DVB (8598): au8522: clean up function au8522_set_if + * V4L/DVB (8599): au8522: remove if frequency settings from vsb/qam + modulation tables + * V4L/DVB (8600): au0828: explicitly set 6 MHz IF frequency in + hauppauge_hvr950q_config + * V4L/DVB (8629): v4l2-ioctl: do not try to handle private V4L1 ioctls + * V4L/DVB (8633): ivtv: update ivtv version number + * V4L/DVB (8648): ivtv: improve CC support + * V4L/DVB (8660): gspca: Simplify the scan of URB packets in pac7311. + * V4L/DVB (8661): gspca: Bug in the previous changeset about pac7311. + * V4L/DVB (8663): gspca: Webcam 0c45:6128 added in sonixj. + * V4L/DVB (8664): gspca: The bridge/sensor of the webcam 093a:2621 is a + PAC 7302. + * V4L/DVB (8665): gspca: Fix the 640x480 resolution of the webcam + 093a:2621. + * V4L/DVB (8666): gspca: Bad scanning of frames in pac7311. + * V4L/DVB (8667): gspca: Bad probe of Z-Star/Vimicro webcams with pas106 + sensor. + * V4L/DVB (8668): gspca: Conflict GSPCA / ET61X251 for the webcam + 102c:6251. + * V4L/DVB (8669): gspca: Add white balance control for spca561 rev 012A. + * V4L/DVB (8671): gspca: Remove the unused field 'dev_name' of the device + structure. + * V4L/DVB (8672): gspca: Big rewrite of spca561. + * V4L/DVB (8673): gspca: Bad frame scanning again and bad init in + pac7311. + * V4L/DVB (8674): gspca: Webcam 0c45:612e added in sonixj. + * V4L/DVB (8675): gspca: Pixmap PJPG (Pixart 73xx JPEG) added, generated + by pac7311. + * V4L/DVB (8678): Remove the dead CONFIG_RADIO_MIROPCM20{,_RDS} code + * V4L/DVB (8681): v4l2-ioctl.c: fix warning + * V4L/DVB (8682): V4L: fix return value of register video func + * V4L/DVB (8701): cx18: Add missing lock for when the irq handler + manipulates the queues + * V4L/DVB (8703): gspca: Do controls work for spca561 revision 12a. + * V4L/DVB (8705): gspca: Adjust some control limits in spca561. + * V4L/DVB (8706): Make contrast and brightness work for pac7302. + * V4L/DVB (8707): gspca: Colors, hflip and vflip controls added for + pac7302. + * V4L/DVB (8709): gspca: Fix initialization and controls of sn9x110 - + ov7630. + * V4L/DVB (8710): gspca: Bad color control in sonixj. + * V4L/DVB (8711): gspca: Bad controls and quantization table of pac7311. + * V4L/DVB (8712): gspca: Bad start of sonixj webcams since changeset + a8779025e7e8. + * V4L/DVB (8713): gspca: Bad color control again in sonixj. + * V4L/DVB (8714): gspca: Bad start of sn9c110 and sensor om6802. + * V4L/DVB (8715): gspca: Change the name of some webcam in the gspca doc. + * V4L/DVB (8716): gspca: Bad start of sn9c110 and sensor ov7630. + * V4L/DVB (8717): gspca: Frame buffer too small for small resolutions + (sonixj and t613). + * V4L/DVB (8718): gspca: suspend/resume added. + * V4L/DVB (8719): gspca: Have VIDIOC_QUERYCTRL more compliant to the + spec. + * V4L/DVB (8720): gspca: V4L2_CAP_SENSOR_UPSIDE_DOWN added as a cap for + some webcams. + * V4L/DVB (8722): sms1xxx: fix typo in license header + * V4L/DVB (8726): link tuner before saa7134 + * V4L/DVB (8727): V4L1: make PMS not autoprobe when builtin. + * V4L/DVB (8728): 1-make-pms-not-autoprobe-when-builtin update + * V4L/DVB (8749): Fix error code, when camera is not turned on by sonypi + * V4L/DVB (8750): V4L: check inval in video_register_device_index() + * V4L/DVB (8751): vivi: Fix some issues at vivi register routine + * V4L/DVB (8757): v4l-dvb: fix a bunch of sparse warnings + * V4L/DVB (8769): cx18: Simplify queue flush logic to prevent oops in + cx18_flush_queues() + * V4L/DVB (8778): radio: fix incorrect video_register_device result check + * V4L/DVB (8779): v4l: fix more incorrect video_register_device result + checks + * V4L/DVB (8790): saa7115: call i2c_set_clientdata only when state != + NULL + * V4L/DVB (8803): s5h1409: Enable QAM_AUTO mode + * V4L/DVB (8804): s5h1411: Enable QAM_AUTO mode + * V4L/DVB (8805): Steven Toth email address change + * V4L/DVB (8809): gspca: Revert commit + 9a9335776548d01525141c6e8f0c12e86bbde982 + * V4L/DVB (8810): gspca: Compile error when CONFIG_PM not defined. + * V4L/DVB (8812): gspca: Do pac73xx webcams work. + * V4L/DVB (8813): gspca: Adjust SOF detection for pac73xx. + * V4L/DVB (8814): gspca: Set DISABLED the disabled controls at query + control time. + * V4L/DVB (8815): gspca: Fix problems with disabled controls. + * V4L/DVB (8816): gspca: Set disabled ctrls and fix a register pb with + ovxxxx in sonixb. + * V4L/DVB (8817): gspca: LED and proble changes in sonixb. + * V4L/DVB (8818): gspca: Reinitialize the device on resume. + * V4L/DVB (8819): gspca: Initialize the ov519 at open time and source + cleanup. + * V4L/DVB (8820): gspca: Change initialization and gamma of zc3xx - + pas106. + * V4L/DVB (8822): gspca: Change some subdriver functions for + suspend/resume. + * V4L/DVB (8823): gspca: H and V flips work for ov7670 only in ov519. + * V4L/DVB (8824): gspca: Too much code removed in the suspend/resume + changeset. + * V4L/DVB (8825): gspca: More controls for pac73xx and new webcam + 093a:2624. + * V4L/DVB (8826): gspca: Webcam Labtec 2200 (093a:2626) added in pac7311. + * V4L/DVB (8827): gspca: Stop pac7302 autogain oscillation. + * V4L/DVB (8828): gspca: Set the clock at the end of initialization in + sonixj. + * V4L/DVB (8829): gspca: Have a clean kmalloc-ated buffer for USB + exchanges. + * V4L/DVB (8830): gspca: Move some probe code to the new init function. + * V4L/DVB (8831): gspca: Resolve webcam conflicts between some drivers. + * V4L/DVB (8832): gspca: Bad pixelformat of vc0321 webcams. + * V4L/DVB (8833): gspca: Cleanup the sonixb code. + * V4L/DVB (8834): gspca: Have a bigger buffer for sn9c10x compressed + images. + * V4L/DVB (8835): gspca: Same pixfmt as the sn9c102 driver and raw Bayer + added in sonixb. + * V4L/DVB (8837): dvb: fix I2C adapters name size + * V4L/DVB (8839): dib0700: add comment to identify 35th USB id pair + * V4L/DVB (8840): dib0700: add basic support for Hauppauge Nova-TD-500 + (84xxx) + * V4L/DVB (8842): vivi_release(): fix use-after-free + * V4L/DVB (8843): tda10048_firmware_upload(): fix a memory leak + * V4L/DVB (8844): dabusb_fpga_download(): fix a memory leak + * bnx2x: Accessing un-mapped page + * SELinux: memory leak in security_context_to_sid_core + * x86: add io delay quirk for Presario F700 + * mmap: fix petty bug in anonymous shared mmap offset handling + * x86: Change warning message in TSC calibration. + * PCI: fix pbus_size_mem() resource alignment for CardBus controllers + * [ARM] omap: fix build error in ohci-omap.c + * [ARM] remove unused #include + * ACPI: Make Len Brown the ACPI maintainer again + * fujitsu-laptop: fix regression for P8010 in 2.6.27-rc + * ACPI: Avoid bogus timeout about SMbus check + * acer-wmi: remove debugfs entries upon unloading + * forgotten refcount on sysctl root table + * V4L/DVB (8868): gspca: Support for vga modes with sif sensors in + sonixb. + * V4L/DVB (8869): gspca: Move the Sonix webcams with TAS5110C1B from + sn9c102 to gspca. + * V4L/DVB (8870): gspca: Fix dark room problem with sonixb. + * V4L/DVB (8872): gspca: Bad image format and offset with rev072a of + spca561. + * V4L/DVB (8873): gspca: Bad image offset with rev012a of spca561 and + adjust exposure. + * V4L/DVB (8874): gspca: Adjust hstart for sn9c103/ov7630 and update + usb-id's. + * [ARM] omap: fix virtual vs physical address space confusions + * V4L/DVB (8876): budget: udelay changed to mdelay + * V4L/DVB (8877): b2c2 and bt8xx: udelay to mdelay + * V4L/DVB (8880): PATCH: Fix parents on some webcam drivers + * V4L/DVB (8881): gspca: After 'while (retry--) {...}', retry will be -1 + but not 0. + * powerpc/spufs: Fix multiple get_spu_context() + * powerpc/spufs: Fix race for a free SPU + * Input: bcm5974 - small formatting cleanup + * Input: bcm5974 - improve finger tracking and counting + * Input: bcm5974 - add BTN_TOUCH event for mousedev benefit + * Input: i8042 - make Lenovo 3000 N100 blacklist entry more specific + * sh: resume_kernel fix for kernel oops built with CONFIG_BKL_PREEMPT=y. + * sh64: resume_kernel fix for kernel oops built with + CONFIG_BKL_PREEMPT=y. + * i2c: fix i2c-sh_mobile timing issues + * clockevents: prevent clockevent event_handler ending up handler_noop + * clockevents: prevent endless loop in periodic broadcast handler + * clockevents: enforce reprogram in oneshot setup + * clockevents: prevent multiple init/shutdown + * clockevents: prevent endless loop lockup + * HPET: make minimum reprogramming delta useful + * [MTD] [NAND] tmio_nand: fix base address programming + * Fix conditional export of kvh.h and a.out.h to userspace. + * async_tx: fix the bug in async_tx_run_dependencies + * sched_clock: fix NOHZ interaction + * sched: fix process time monotonicity + * UBIFS: fix division by zero + * UBIFS: make minimum fanout 3 + * [MIPS] Fix data bus error recovery + * [MIPS] Fix WARNING: at kernel/smp.c:290 + * [MIPS] TXx9: Fix txx9_pcode initialization + * [MIPS] TX39xx: Add missing local_flush_icache_range initialization + * [MIPS] Probe initrd header only if explicitly specified + * res_counter: fix off-by-one bug in setting limit + * forcedeth: fix kexec regression + * atmel_lcdfb: fix oops in rmmod when framebuffer fails to register + * tracehook: comment pasto fixes + * drivers/mmc/card/block.c: fix refcount leak in mmc_block_open() + * x86: boot: stub out unimplemented CPU feature words + * x86: add NOPL as a synthetic CPU feature bit + * x86: use X86_FEATURE_NOPL in alternatives + * clockevents: broadcast fixup possible waiters + * x86: HPET fix moronic 32/64bit thinko + * x86: HPET: read back compare register before reading counter + * Fix CONFIG_AC97_BUS dependency + * [ARM] 5241/1: provide ioremap_wc() + * ntp: fix calculation of the next jiffie to trigger RTC sync + * clocksource, acpi_pm.c: use proper read function also in errata mode + * clocksource, acpi_pm.c: check for monotonicity + * x86: delay early cpu initialization until cpuid is done + * x86: move mtrr cpu cap setting early in early_init_xxxx + * sched: arch_reinit_sched_domains() must destroy domains to force + rebuild + * x86, xen: Use native_pte_flags instead of native_pte_val for .pte_flags + * x86: pda_init(): fix memory leak when using CPU hotplug + * x86: cpu_init(): fix memory leak when using CPU hotplug + * powerpc/spufs: Fix possible scheduling of a context to multiple SPEs + * netfilter: nf_conntrack_sip: de-static helper pointers + * netfilter: nf_conntrack_gre: more locking around keymap list + * netfilter: nf_conntrack_gre: nf_ct_gre_keymap_flush() fixlet + * netfilter: nf_conntrack_irc: make sure string is terminated before + calling simple_strtoul + * pkt_sched: Fix qdisc state in net_tx_action() + * powerpc: Fix rare boot build breakage + * ahci, pata_marvell: play nicely together + * sata_mv: add RocketRaid 1720 PCI ID to driver + * ahci: disable PMP for marvell ahcis + * sata_nv: disable hardreset for generic + * libata-sff: kill spurious WARN_ON() in ata_hsm_move() + * pata_sil680: remove duplicate pcim_enable_device + * ahci: RAID mode SATA patch for Intel Ibex Peak DeviceIDs + * [MIPS] IP22: Fix detection of second HPC3 on Challenge S + * xen: fix 2.6.27-rc5 xen balloon driver warnings + * x86: disable static NOPLs on 32 bits + * netns : fix kernel panic in timewait socket destruction + * bridge: don't allow setting hello time to zero + * NFS: Restore missing hunk in NFS mount option parser + * usb: fix null deferences in low level usb serial + * Fix format of MAINTAINERS + * sparc64: Disable timer interrupts in fixup_irqs(). + * [Bluetooth] Fix reference counting during ACL config stage + * [Bluetooth] Enforce correct authentication requirements + * [Bluetooth] Reject L2CAP connections on an insecure ACL link + * [S390] CVE-2008-1514: prevent ptrace padding area read/write in 31-bit + mode + * [S390] cio: Correct cleanup on error. + * [S390] cio: handle ssch() return codes correctly. + * [S390] cio: allow offline processing for disconnected devices + * ipsec: Restore larval states and socket policies in dump + * update Documentation/filesystems/Locking for 2.6.27 changes + * MAINTAINERS: add Atheros maintainer for atlx + * lib: Correct printk %pF to work on all architectures + * x86: fix memmap=exactmap boot argument + * clockevents: remove WARN_ON which was used to gather information + * ipv6: Fix OOPS in ip6_dst_lookup_tail(). + * Linux 2.6.27-rc6 + + -- Ben Collins Tue, 02 Sep 2008 12:45:56 -0400 + +linux (2.6.27-2.3) intrepid; urgency=low + + [ Ben Collins ] + + * build/retag: Make script save .orig of tags for later use + * ubuntu/lirc: Fix device_create call + * build/firmware: Put in-kernel firmware into version specific subdir + - LP: #262115 + * Rebase on linux-2.6 git. + * ABI bump + + [ Herton Ronaldo Krzesinski ] + + * SAUCE: (no-up) Apparmor warning fixes + + [ John Johansen ] + + * SAUCE: (no-up) Proper AppArmor ptrace updates for newer lsm API + + [ Mackenzie Morgan ] + + * SAUCE: Add quirk for ASUS Z37E to make sound audible after resume + - LP: #25896 + + -- Ben Collins Wed, 27 Aug 2008 14:03:05 -0400 + +linux (2.6.27-1.2) intrepid; urgency=low + + [ Amit Kucheria ] + + * SAUCE: make fc transport removal of target configurable + * SAUCE: pm: Config option to disable handling of console during + suspend/resume + + [ Ben Collins ] + + * SAUCE: Lower warning level of some PCI messages + * SAUCE: input/mouse/alps: Do not call psmouse_reset() for alps + * SAUCE: tulip: Let dmfe handle davicom on non-sparc + * SAUCE: tulip: Define ULI PCI ID's + * SAUCE: (no-up) version: Implement version_signature proc file. + * SAUCE: (no-up) connector.h: Add idx/val for drbd + * SAUCE: (no-up) swap: Add notify_swap_entry_free callback for compcache + * SAUCE: drivers: Remove some duplicate device entries in various modules + * SAUCE: (no-up) [AppArmor] merge with upstream subversion r1291 + * SAUCE: apparmor: Update for changes to ptrace lsm hooks + * SAUCE: (no-up) Enable ubuntu extra subdirectory + * SAUCE: applesmc: Add MacBookAir + * SAUCE: (no-up) ACPI: initramfs DSDT override support + * ubuntu: Add drbd module + * ubuntu: Add iscsitarget module + * ubuntu: Add BOM for iscsitarget + * ubuntu: Add squashfs driver + * SAUCE: (no-up) Check for squashfs superblock in initramfs mounting. + * ubuntu: Add aufs module + * ubuntu: Added atl2 driver + * ubuntu: Added et131x driver + * ubuntu: Add dm-raid4-5 driver + * ubuntu: Add ndiswrapper driver + * ubuntu: Added ram backed compressed swap module (compcache) + * ubuntu: Add misc drivers from hardy lum + * ubuntu: Add heci driver 3.2.0.24 + * ubuntu: Add ov511 and bt-sco drivers + * ubuntu: Add acx, prism2_usb wireless drivers + * ubuntu: Add at76 driver to build + * ubuntu: Add fsam7400 sw kill switch driver + * ubuntu: Added qc-usb driver + * ubuntu: e1000e: Upgraded module to 0.4.1.7 + * ubuntu: Added rfkill drivers + * ubuntu: VIA - Add VIA DRM Chrome9 3D engine + * ubuntu: unionfs: Added v1.4 module from hardy + * ubuntu: Add LIRC driver + * ubuntu: Add GFS driver + * ubuntu: New tlsup driver for toshiba laptops + * Update config files + * build/d-i: Remove obsolete dm modules + + [ Chuck Short ] + + * SAUCE: ata: blacklist FUJITSU MHW2160BH PL + + [ Colin Ian King ] + + * ubuntu: Add dm-loop + * SAUCE: Enable speedstep for sonoma processors. + + [ Dennis Noordsij ] + + * SAUCE: Work around ACPI corruption upon suspend on some Dell machines. + + [ Fabio M. Di Nitto ] + + * SAUCE: Export gfs2 symbols required for gfs1 kernel module + + [ Matthew Garrett ] + + * SAUCE: hostap: send events on data interface as well as master + interface + + [ Michael Frey (Senior Manager, MID ] + + * SAUCE: Send HCI_RESET for Broadcomm 2046 + + [ Phillip Lougher ] + + * SAUCE: r8169: disable TSO by default for RTL8111/8168B chipsets. + + [ Stefan Bader ] + + * SAUCE: (no-up) Export dm_disk function of device-mapper + * SAUCE: Restore VT fonts on switch + * SAUCE: mmc: Increase power_up deleay to fix TI readers + + [ Tim Gardner ] + + * SAUCE: Add extra headers to linux-libc-dev + * SAUCE: Catch nonsense keycodes and silently ignore + * SAUCE: Added support for HDAPS on various ThinkPads from Lenovo and IBM + * SAUCE: Guest OS does not recognize a lun with non zero target id on + Vmware ESX Server + * SAUCE: (no-up) Take care of orinoco_cs overlap with hostap_cs + * ubuntu: Add GNBD driver + + -- Ben Collins Sat, 23 Aug 2008 15:48:35 -0400 + +linux (2.6.27-0.0) intrepid; urgency=low + + * Not uploaded, placeholder for new release + + -- Ben Collins Sat, 23 Aug 2008 15:48:35 -0400 + +linux (2.6.26-5.17) intrepid; urgency=low + + [ Ben Collins ] + + * build/abi: Add tosh_smm symbol to blacklist + + -- Ben Collins Fri, 15 Aug 2008 09:29:34 -0400 + +linux (2.6.26-5.16) intrepid; urgency=low + + [ Ben Collins ] + + * Revert "SAUCE: toshiba_acpi: Rewrote most of the proc entry bits." + * Revert "SAUCE: Update toshiba_acpi.c to version 0.19a" + * build/config: Disable in-kernel toshiba driver(s) + * ubuntu/tlsup: New driver for toshiba laptops + * build/config: Enable TLSUP driver + * SAUCE: e1000e: Fix E1000E_ENABLED logic to check for our E1000E_NEW + driver as well + * ubuntu/e1000e: Remove E1000E_ENABLED option in local config + * build/config: Update configs to have E1000E_ENABLED set + * ubuntu/prism2: Remove duplicate device + + [ Fabio M. Di Nitto ] + + * SAUCE: Export gfs2 symbols required for gfs1 kernel module + + [ Stefan Bader ] + + * SAUCE: x86: HPET rework for SB700 + - LP: #255910 + + [ Tim Gardner ] + + * Add GNBD driver + * Enable GNBD driver + * SAUCE: Add GFS driver + * SAUCE: Enable gfs driver configs + * b43: Linksys WMP54G (BCM4306/3) card in a PCI format has an SPROM + coding + + [ Upstream Kernel Changes ] + + * KVM: x86 emulator: emulate clflush + * USB: quirk PLL power down mode + + -- Ben Collins Mon, 11 Aug 2008 13:19:28 -0400 + +linux (2.6.26-5.15) intrepid; urgency=low + + [ Ben Collins ] + + * Revert "SAUCE: Add blacklist support to fix Belkin bluetooth dongle." + - Superceded by upstream changes. + * build/config: New option enabled for uvcvideo + * build/control: Add Vcs-Git meta data to control file + * SAUCE: toshiba_acpi: Rewrote most of the new code + * abi/perm-blacklist: Add emu10k1 driver to blacklist + + [ Upstream Kernel Changes ] + + * pxamci: trivial fix of DMA alignment register bit clearing + * udplite: Protection against coverage value wrap-around + * ipv6: use timer pending + * ipv6: __KERNEL__ ifdef struct ipv6_devconf + * hdlcdrv: Fix CRC calculation. + * quota: fix possible infinite loop in quota code + * isofs: fix minor filesystem corruption + * KVM: VMX: Fix a wrong usage of vmcs_config + * KVM: SVM: fix suspend/resume support + * KVM: mmu_shrink: kvm_mmu_zap_page requires slots_lock to be held + * KVM: VMX: Add ept_sync_context in flush_tlb + * KVM: x86 emulator: Fix HLT instruction + * KVM: MMU: nuke shadowed pgtable pages and ptes on memslot destruction + * KVM: MMU: Fix potential race setting upper shadow ptes on nonpae hosts + * Patch Upstream: x86 ptrace: fix PTRACE_GETFPXREGS error + * rcu: fix rcu_try_flip_waitack_needed() to prevent grace-period stall + * Fix typos from signal_32/64.h merge + * x86 reboot quirks: add Dell Precision WorkStation T5400 + * USB: fix usb serial pm counter decrement for disconnected interfaces + * x86, suspend, acpi: enter Big Real Mode + * markers: fix duplicate modpost entry + * Fix build on COMPAT platforms when CONFIG_EPOLL is disabled + * proc: fix /proc/*/pagemap some more + * cpusets: fix wrong domain attr updates + * x86: fix crash due to missing debugctlmsr on AMD K6-3 + * ide-cd: fix oops when using growisofs + * rtc-at91rm9200: avoid spurious irqs + * vmlinux.lds: move __attribute__((__cold__)) functions back into final + .text section + * ARM: fix fls() for 64-bit arguments + * tcp: Clear probes_out more aggressively in tcp_ack(). + * sparc64: Fix lockdep issues in LDC protocol layer. + * sparc64: Fix cpufreq notifier registry. + * sparc64: Do not define BIO_VMERGE_BOUNDARY. + * iop-adma: fix platform driver hotplug/coldplug + * myri10ge: do not forget to setup the single slice pointers + * myri10ge: do not use mgp->max_intr_slots before loading the firmware + * ALSA: trident - pause s/pdif output + * V4L: cx18: Upgrade to newer firmware & update documentation + * DVB: dib0700: add support for Hauppauge Nova-TD Stick 52009 + * V4L: uvcvideo: Fix a buffer overflow in format descriptor parsing + * V4L: uvcvideo: Use GFP_NOIO when allocating memory during resume + * V4L: uvcvideo: Don't free URB buffers on suspend + * V4L: uvcvideo: Make input device support optional + * V4L: uvcvideo: Add support for Medion Akoya Mini E1210 integrated + webcam + * V4L: saa7134: Copy tuner data earlier to avoid overwriting manual tuner + type + * V4L: cx23885: Bugfix for concurrent use of /dev/video0 and /dev/video1 + * DVB: cx23885: Ensure PAD_CTRL is always reset to a sensible default + * DVB: cx23885: DVB Transport cards using DVB port VIDB/TS1 did not + stream + * DVB: cx23885: Reallocated the sram to avoid concurrent VIDB/C issues + * DVB: cx23885: SRAM changes for the 885 and 887 silicon parts + * x86: fix kernel_physical_mapping_init() for large x86 systems + * eCryptfs: use page_alloc not kmalloc to get a page of memory + * UML - Fix boot crash + * ixgbe: remove device ID for unsupported device + * mpc52xx_psc_spi: fix block transfer + * tmpfs: fix kernel BUG in shmem_delete_inode + * markers: fix markers read barrier for multiple probes + * VFS: increase pseudo-filesystem block size to PAGE_SIZE + * cpufreq acpi: only call _PPC after cpufreq ACPI init funcs got called + already + * b43legacy: Release mutex in error handling code + * ath5k: don't enable MSI, we cannot handle it yet + * Fix off-by-one error in iov_iter_advance() + * Linux 2.6.26.1 + * ftrace: remove unneeded documentation + * romfs_readpage: don't report errors for pages beyond i_size + * netfilter: nf_nat_sip: c= is optional for session + * SCSI: bsg: fix bsg_mutex hang with device removal + * x86: idle process - add checking for NULL early param + * x86: io delay - add checking for NULL early param + * Close race in md_probe + * Kprobe smoke test lockdep warning + * netfilter: xt_time: fix time's time_mt()'s use of do_div() + * linear: correct disk numbering error check + * SCSI: ch: fix ch_remove oops + * NFS: Ensure we zap only the access and acl caches when setting new acls + * jbd: fix race between free buffer and commit transaction + * Input: i8042 - add Intel D845PESV to nopnp list + * Input: i8042 - add Gericom Bellagio to nomux blacklist + * Input: i8042 - add Acer Aspire 1360 to nomux blacklist + * Bluetooth: Signal user-space for HIDP and BNEP socket errors + * Add compat handler for PTRACE_GETSIGINFO + * ALSA: hda - Fix wrong volumes in AD1988 auto-probe mode + * ALSA: hda - Fix DMA position inaccuracy + * ALSA: hda - Add missing Thinkpad Z60m support + * ALSA: emu10k1 - Fix inverted Analog/Digital mixer switch on Audigy2 + * vfs: fix lookup on deleted directory + * Ath5k: fix memory corruption + * Ath5k: kill tasklets on shutdown + * sound: ensure device number is valid in snd_seq_oss_synth_make_info + * Linux 2.6.26.2 + + -- Ben Collins Sun, 03 Aug 2008 13:25:02 -0400 + +linux (2.6.26-5.14) intrepid; urgency=low + + [ Ben Collins ] + + * SAUCE: applesmc: Add MacBookAir + * build: Do not build ddeb unless we are on the buildd + * build: control: Consistency in arch fields. + * SAUCE: Update toshiba_acpi.c to version 0.19a + - LP: #77026 + * build: Added perm blacklist support and per-module support to abi-check + - Blacklist p80211 module from abi checks + * ubuntu/lirc: Get rid of drivers symlink and use real include stuff + + + [ Colin Ian King ] + + * SAUCE: acerhk module - add support for Amilo A1650g keyboard + - LP: #84159 + * SAUCE: rt2x00: Fix OOPS on failed creation of rt2x00lib workqueue + - LP: #249242 + + [ Mario Limonciello ] + + * Add LIRC back in + + [ Tim Gardner ] + + * Makefile race condition can lead to ndiswrapper build failure + - LP: #241547 + * update linux-wlan-ng (prism2_usb) to upstream version 1861 + - LP: #245026 + + [ Upstream Kernel Changes ] + + * Fix typos from signal_32/64.h merge + + -- Ben Collins Fri, 01 Aug 2008 00:05:01 -0400 + +linux (2.6.26-5.13) intrepid; urgency=low + + [ Ben Collins ] + + * build: Make makedumpfile an amd64/i386 only build-dep + * ubuntu/acerhk: Fixup assembly to compile with newer binutils + + -- Ben Collins Sat, 26 Jul 2008 16:41:50 -0400 + +linux (2.6.26-4.12) intrepid; urgency=low + + [ Ben Collins ] + + * e1000e: Upgraded module to 0.4.1.7 upstream. Placed in ubuntu/, + in-kernel driver disabled + * config: Disable e1000e in-kernel, and enable newer driver in ubuntu/ + * rfkill: Update to 1.3 drivers, and move to common location + * ubuntu: Actually link kconfig/kbuild into rfkill subdir + * config: Enable loading dsdt from initramfs + - LP: #246222 + * ubuntu: [compcache] Update to fix crashes in improper BUG() + * build: Create a retag scripts to recover tags from rebases + * build: Updates for dbg pkg + * build: Make sure no empty lines show up in debian/files + * ubuntu: atl1e: Add new driver from 2.6.27-pre-rc1 + - LP: #243894 + * sys_getcwd: Fix some brokeness introduced by AppArmor __d_path + changes + - LP: #251223 + * ubuntu: unionfs: Added v1.4 module from hardy + * build: Add sub-flavour infrastructure, and virtual subflav + + [ Eric Piel ] + + * ACPI: Allow custom DSDT tables to be loaded from initramfs + + [ Kees Cook ] + + * AppArmor: Smack VFS patches + + [ Mario Limonciello ] + + * Work around ACPI corruption upon suspend on some Dell machines. + - LP: #183033 + + [ Tim Gardner ] + + * Export usbhid_modify_dquirk for LBM module bcm5974 + - LP: #250838 + * VIA - Add VIA DRM Chrome9 3D engine + - LP: #251862 + * Define TRUE/FALSE for VIA DRM driver. + + -- Ben Collins Tue, 15 Jul 2008 12:51:39 -0400 + +linux (2.6.26-4.11) intrepid; urgency=low + + [ Ben Collins ] + + * config: Enable bcm5974 driver in all configs + + [ 2.6.26-4.10 ] + + [ Amit Kucheria ] + + * Fix typo in GSPCA Makefile and make it compile + + [ Ben Collins ] + + * ubuntu: Remove UVC driver in favor of in-kernel one (-rc9) + * config: Updates for -rc9 + * ubuntu: Add acx, prism2_usb wireless drivers + * config: Enable prism2_usb and acx drivers. + * ubuntu: Add at76 driver to build + * config: Enable at76_usb driver. + * iscsitarget: Fix prototype for bi_end_io callback. + * acx: Fix section type mismatch warnings + * fsam7400: Add sw kill switch driver + * config: Enable fsam7400 driver + * qc-usb: Added new driver + * config: Enable qc-usb driver + * drbd: Remove built-in connector usage + * drbd: Do not define idx/val for connector here + * connector.h: Add idx/val for drbd + * bcm5974: Added new driver + + [ Kees Cook ] + + * SAUCE: [AppArmor] merge with upstream subversion r1291 + * SAUCE: [AppArmor] fix typo in selinux_inode_link + * SAUCE: [AppArmor] aufs patches + + [ Michael Frey (Senior Manager, MID ] + + * SAUCE: Send HCI_RESET for Broadcomm 2046 + - LP: #241749 + + [ Tim Gardner ] + + * SAUCE: Medion Akoya Mini E1210 + + [ Upstream Kernel Changes ] + + * Revert "BAST: Remove old IDE driver" + * ARM: OMAP: DMA: Don't mark channel active in omap_enable_channel_irq + * ARM: OMAP: Correcting the gpmc prefetch control register address + * debugobjects: fix lockdep warning + * [ARM] 5115/1: pxafb: fix ifdef for command line option handling + * [ARM] 5116/1: pxafb: cleanup and fix order of failure handling + * [ARM] 5109/1: Mark rtc sa1100 driver as wakeup source before + registering it + * [ARM] Export dma_sync_sg_for_device() + * fix cgroup-inflicted breakage in block_dev.c + * [patch for 2.6.26 2/4] vfs: utimensat(): be consistent with utime() for + immutable and append-only files + * [patch for 2.6.26 1/4] vfs: utimensat(): ignore tv_sec if tv_nsec == + UTIME_OMIT or UTIME_NOW + * [patch for 2.6.26 3/4] vfs: utimensat(): fix error checking for + {UTIME_NOW,UTIME_OMIT} case + * [patch for 2.6.26 4/4] vfs: utimensat(): fix write access check for + futimens() + * [patch 1/4] vfs: path_{get,put}() cleanups + * [patch 2/4] fs: make struct file arg to d_path const + * [patch 3/4] vfs: fix ERR_PTR abuse in generic_readlink + * [patch 4/4] flock: remove unused fields from file_lock_operations + * [patch 3/3] vfs: make d_path() consistent across mount operations + * [patch 1/3] vfs: dcache sparse fixes + * [patch 2/3] vfs: dcache cleanups + * udf: Fix regression in UDF anchor block detection + * [SCSI] ses: Fix timeout + * netfilter: ip6table_mangle: don't reroute in LOCAL_IN + * [SCSI] esp: Fix OOPS in esp_reset_cleanup(). + * kernel/audit.c: nlh->nlmsg_type is gotten more than once + * audit: fix kernel-doc parameter notation + * remove useless argument type in audit_filter_user() + * Blackfin arch: fix bug - kernel boot fails when Spinlock and rw-lock + debugging enabled + * Blackfin arch: fix up section mismatch warning + * mac80211: implement EU regulatory domain + * b43: Do not return TX_BUSY from op_tx + * b43legacy: Do not return TX_BUSY from op_tx + * b43: Fix possible MMIO access while device is down + * b43legacy: Fix possible NULL pointer dereference in DMA code + * rt2x00: Fix unbalanced mutex locking + * iwlwifi: improve scanning band selection management + * [SCSI] esp: tidy up target reference counting + * [ARM] 5117/1: pxafb: fix __devinit/exit annotations + * thermal: Create CONFIG_THERMAL_HWMON=n + * ACPI: don't walk tables if ACPI was disabled + * dock: bay: Don't call acpi_walk_namespace() when ACPI is disabled. + * x86: shift bits the right way in native_read_tscp + * x86: section/warning fixes + * V4L/DVB (8004): Fix INPUT dependency at budget-ci + * V4L/DVB (8005): Fix OOPS if frontend is null + * V4L/DVB (8007): cx18/cx25840: the S-Video LUMA input can use all + In1-In8 inputs + * V4L/DVB (8008): cx18: remove duplicate audio and video input enums + * V4L/DVB (8010): em28xx: Properly register extensions for already + attached devices + * V4L/DVB (8011): em28xx: enable DVB for HVR-900 + * V4L/DVB (8012): gl861: sleep a little to avoid I2C errors + * V4L/DVB (8013): gl861: remove useless identify_state + * V4L/DVB (8015): gl861: replace non critical msleep(0) with msleep(1) to + be on the safe side + * V4L/DVB (8017): Ensure em28xx extensions only get run against devs that + support them + * V4L/DVB (8018): Add em2860 chip ID + * V4L/DVB (8020): Fix callbacks functions of saa7134_empress + * V4L/DVB (8022): saa7134: fix race between opening and closing the + device + * V4L/DVB (8026): Avoids an OOPS if dev struct can't be successfully + recovered + * V4L/DVB (8027): saa7134: Avermedia A700: only s-video and composite + input are working + * V4L/DVB (8028): Improve error messages for tda1004x attach + * V4L/DVB (8029): Improve error message at tda1004x_attach + * V4L/DVB (8034): tda18271: fix IF notch frequency handling + * V4L/DVB (8035): tda18271: dont touch EB14 if rf_cal lookup is out of + range + * V4L/DVB (8036): tda18271: toggle rf agc speed mode on TDA18271HD/C2 + only + * V4L/DVB (8037): tda18271: ensure that the thermometer is off during + channel configuration + * V4L/DVB (8039): pxa-camera: fix platform_get_irq() error handling. + * V4L/DVB (8040): soc-camera: remove soc_camera_host_class class + * V4L/DVB (8042): DVB-USB UMT-010 channel scan oops + * V4L/DVB (8043): au0828: add support for additional USB device id's + * V4L/DVB (8044): au8522: tuning optimizations + * V4L/DVB (8048): saa7134: Fix entries for Avermedia A16d and Avermedia + E506 + * V4L/DVB (8061): cx18: only select tuner / frontend modules if + !DVB_FE_CUSTOMISE + * V4L/DVB (8063): cx18: Fix unintended auto configurations in + cx18-av-core + * V4L/DVB (8066): cx18: Fix audio mux input definitions for HVR-1600 Line + In 2 and FM radio + * V4L/DVB (8067): cx18: Fix firmware load for case when digital capture + happens first + * V4L/DVB (8068): cx18: Add I2C slave reset via GPIO upon initialization + * V4L/DVB (8069): cx18: Fix S-Video and Compsite inputs for the Yuan + MPC718 and enable card entry + * V4L/DVB (8071): tda10023: Fix possible kernel oops during + initialisation + * V4L/DVB (8073): av7110: Catch another type of ARM crash + * V4L/DVB (8074): av7110: OSD transfers should not be interrupted + * V4L/DVB (8075): stv0299: Uncorrected block count and bit error rate + fixed + * V4L/DVB (8092): videodev: simplify and fix standard enumeration + * V4L/DVB (8096): au8522: prevent false-positive lock status + * V4L/DVB (8097): xc5000: check device hardware state to determine if + firmware download is needed + * V4L/DVB (8100): V4L/vivi: fix possible memory leak in vivi_fillbuff + * V4L/DVB (8108): Fix open/close race in saa7134 + * s2io: fix documentation about intr_type + * tc35815: Mark carrier-off before starting PHY + * tc35815: Fix receiver hangup on Rx FIFO overflow + * ixgbe: fix EEH recovery during reset on PPC + * igb: fix EEH recovery during reset on PPC + * e1000e: fix EEH recovery during reset on PPC + * pcnet_cs, axnet_cs: clear bogus interrupt before request_irq + * drivers/net/r6040.c: Eliminate double sizeof + * ipg: fix jumbo frame compilation + * ipg: use NULL, not zero, for pointers + * [netdrvr] 3c59x: remove irqs_disabled warning from local_bh_enable + * [netdrvr] netxen: fix netxen_pci_tbl[] breakage + * e100: Do pci_dma_sync after skb_alloc for proper operation on ixp4xx + * e1000: only enable TSO6 via ethtool when using correct hardware + * [netdrvr] Fix IOMMU overflow checking in s2io.c + * qla3xxx: Hold RTNL while calling dev_close() + * Hold RTNL while calling dev_close() + * sata_uli: hardreset is broken + * rt2x00: Fix lock dependency errror + * prism: islpci_eth.c endianness fix + * mac80211: fix an oops in several failure paths in key allocation + * firewire: fw-sbp2: fix parsing of logical unit directories + * kbuild: fix a.out.h export to userspace with O= build. + * Ensure interrupted recovery completed properly (v1 metadata plus + bitmap) + * Don't acknowlege that stripe-expand is complete until it really is. + * Fix error paths if md_probe fails. + * hamradio: remove unused variable + * tcp: calculate tcp_mem based on low memory instead of all memory + * tcp: fix for splice receive when used with software LRO + * af_unix: fix 'poll for write'/connected DGRAM sockets + * netdevice: Fix typo of dev_unicast_add() comment + * pkt_sched: ERR_PTR() ususally encodes an negative errno, not positive. + * pkt_sched: Remove CONFIG_NET_SCH_RR + * include/linux/netdevice.h: don't export MAX_HEADER to userspace + * tcp: /proc/net/tcp rto,ato values not scaled properly (v2) + * netlink: Fix some doc comments in net/netlink/attr.c + * CONNECTOR: add a proc entry to list connectors + * inet fragments: fix race between inet_frag_find and + inet_frag_secret_rebuild + * net/inet_lro: remove setting skb->ip_summed when not LRO-able + * netlabel: Fix a problem when dumping the default IPv6 static labels + * ipv6 route: Convert rt6_device_match() to use RT6_LOOKUP_F_xxx flags. + * sched: fix cpu hotplug + * Fix and clean top .gitignore + * x86: fix cpu hotplug crash + * ptrace GET/SET FPXREGS broken + * Input: add KEY_MEDIA_REPEAT definition + * Input: fix locking in force-feedback core + * [ARM] 5131/1: Annotate platform_secondary_init with trace_hardirqs_off + * ide: fix /proc/ide/ide?/mate reporting + * netfilter: nf_conntrack_tcp: fixing to check the lower bound of valid + ACK + * textsearch: fix Boyer-Moore text search bug + * hostap: don't report useless WDS frames by default + * hostap: fix sparse warnings + * mac80211: don't accept WEP keys other than WEP40 and WEP104 + * V4L/DVB (8145a): USB Video Class driver + * [IA64] Bugfix for system with 32 cpus + * [IA64] export account_system_vtime + * sched: fix divide error when trying to configure rt_period to zero + * x86: fix NODES_SHIFT Kconfig range + * block: Fix the starving writes bug in the anticipatory IO scheduler + * Properly notify block layer of sync writes + * rcu: fix hotplug vs rcu race + * I2C: S3C2410: Check ACK on byte transmission + * I2C: S3C2410: Fixup error codes returned rom a transfer. + * I2C: S3C2410: Add MODULE_ALIAS() for s3c2440 device. + * PCI: Restrict VPD read permission to root + * powerpc/bootwrapper: update for initrd with simpleImage + * i2c: Documentation: fix device matching description + * i2c: Fix bad hint about irqs in i2c.h + * powerpc/legacy_serial: Bail if reg-offset/shift properties are present + * powerpc/mpc5200: Fix lite5200b suspend/resume + * ipv4: fix sysctl documentation of time related values + * net-sched: change tcf_destroy_chain() to clear start of filter list + * net-sched: fix filter destruction in atm/hfsc qdisc destruction + * netlink: Unneeded local variable + * net: Tyop of sk_filter() comment + * netdevice: Fix wrong string handle in kernel command line parsing + * net: fib_rules: fix error code for unsupported families + * dm crypt: use cond_resched + * V4L/DVB (8178): uvc: Fix compilation breakage for the other drivers, if + uvc is selected + * PCI: Limit VPD read/write lengths for Broadcom 5706, 5708, 5709 rev. + * PCI: acpiphp: cleanup notify handler on all root bridges + * drivers/input/ff-core.c needs + * DRM/i915: only use tiled blits on 965+ + * tty: Fix inverted logic in send_break + * x86: fix Intel Mac booting with EFI + * arch/x86/mm/init_64.c: early_memtest(): fix types + * 9p: fix O_APPEND in legacy mode + * slub: Do not use 192 byte sized cache if minimum alignment is 128 byte + * Do not overwrite nr_zones on !NUMA when initialising zlcache_ptr + * [MIPS] IP32: Fix unexpected irq 71 + * [MIPS] IP22: Fix crashes due to wrong L1_CACHE_BYTES + * [MIPS] cevt-txx9: Reset timer counter on initialization + * hrtimer: prevent migration for raising softirq + * svcrpc: fix handling of garbage args + * OHCI: Fix problem if SM501 and another platform driver is selected + * USB: fix cdc-acm resume() + * USB: ehci - fix timer regression + * USB: ohci - record data toggle after unlink + * USB: mass storage: new id for US_SC_CYP_ATACB + * sisusbvga: Fix oops on disconnect. + * USB: New device ID for ftdi_sio driver + * USB: fix interrupt disabling for HCDs with shared interrupt handlers + * USB: don't lose disconnections during suspend + * USB: another option device id + * USB: add a pl2303 device id + * USB: fix Oops on loading ipaq module since 2.6.26 + * USB: adding comment for ipaq forcing number of ports + * [MIPS] Fix bug in atomic_sub_if_positive. + * xen: fix address truncation in pte mfn<->pfn conversion + * sata_sil24: add DID for another adaptec flavor + * ahci: always clear all bits in irq_stat + * libata-sff: improve HSM violation reporting + * sata_mv: safer logic for limit_warnings + * Update maintainers for powerpc + * Christoph has moved + * mm: dirty page accounting vs VM_MIXEDMAP + * rtc: rtc_read_alarm() handles wraparound + * firmware: fix the request_firmware() dummy + * serial: fix serial_match_port() for dynamic major tty-device numbers + * get_user_pages(): fix possible page leak on oom + * rtc-x1205: Fix alarm set + * rtc: fix CMOS time error after writing /proc/acpi/alarm + * pci: VT3336 can't do MSI either + * Miguel Ojeda has moved + * ext3: add missing unlock to error path in ext3_quota_write() + * ext4: add missing unlock to an error path in ext4_quota_write() + * reiserfs: add missing unlock to an error path in reiserfs_quota_write() + * ecryptfs: remove unnecessary mux from ecryptfs_init_ecryptfs_miscdev() + * lib: taint kernel in common report_bug() WARN path. + * gpio: pca953x (i2c) handles max7310 too + * fsl_diu_fb: fix build with CONFIG_PM=y, plus fix some warnings + * Update taskstats-struct document for scaled time accounting + * cciss: fix regression that no device nodes are created if no logical + drives are configured. + * delay accounting: maintainer update + * Doc*/kernel-parameters.txt: fix stale references + * hdaps: add support for various newer Lenovo thinkpads + * mn10300: export certain arch symbols required to build allmodconfig + * mn10300: provide __ucmpdi2() for MN10300 + * Introduce rculist.h + * man-pages is supported + * ntfs: update help text + * add kernel-doc for simple_read_from_buffer and memory_read_from_buffer + * w100fb: do not depend on SHARPSL + * w100fb: add 80 MHz modeline + * MFD maintainer + * cgroups: document the effect of attaching PID 0 to a cgroup + * spi: fix the read path in spidev + * doc: doc maintainers + * security: filesystem capabilities: fix fragile setuid fixup code + * security: filesystem capabilities: fix CAP_SETPCAP handling + * Alpha Linux kernel fails with inconsistent kallsyms data + * cpusets: document proc status cpus and mems allowed lists + * MAINTAINERS: update the email address of Andreas Dilger + * cciss: read config to obtain max outstanding commands per controller + * olpc: sdhci: add quirk for the Marvell CaFe's vdd/powerup issue + * olpc: sdhci: add quirk for the Marvell CaFe's interrupt timeout + * cpumask: introduce new APIs + * mm: switch node meminfo Active & Inactive pages to Kbytes + * Update MAINTAINERS file for the TPM device driver + * devcgroup: fix odd behaviour when writing 'a' to devices.allow + * doc: document the relax_domain_level kernel boot argument + * mmc: don't use DMA on newer ENE controllers + * mempolicy: mask off internal flags for userspace API + * x86 ACPI: normalize segment descriptor register on resume + * x86 ACPI: fix resume from suspend to RAM on uniprocessor x86-64 + * softlockup: print a module list on being stuck + * ide: fix hwif->gendev refcounting + * ide: ide_unregister() warm-plug bugfix + * ide: ide_unregister() locking bugfix + * ahci: give another shot at clearing all bits in irq_stat + * Fix clear_refs_write() use of struct mm_walk + * Move _RET_IP_ and _THIS_IP_ to include/linux/kernel.h + * Fix pagemap_read() use of struct mm_walk + * Linux 2.6.26-rc9 + * Revert "USB: don't explicitly reenable root-hub status interrupts" + * Revert "PCI: Correct last two HP entries in the bfsort whitelist" + * iwlwifi: fix incorrect 5GHz rates reported in monitor mode + * iwlwifi: drop skb silently for Tx request in monitor mode + * libertas: support USB persistence on suspend/resume (resend) + * tcp: net/ipv4/tcp.c needs linux/scatterlist.h + * tcp: fix a size_t < 0 comparison in tcp_read_sock + * bridge: fix use-after-free in br_cleanup_bridges() + * Add missing skb->dev assignment in Frame Relay RX code + * forcedeth: fix lockdep warning on ethtool -s + * ehea: fix might sleep problem + * ehea: add MODULE_DEVICE_TABLE + * ehea: fix race condition + * ehea: Access iph->tot_len with correct endianness + * pasemi_mac: Access iph->tot_len with correct endianness + * ibm_newemac: Fixes kernel crashes when speed of cable connected changes + * ibm_newemac: Fixes entry of short packets + * fs_enet: restore promiscuous and multicast settings in restart() + * can: add sanity checks + * x86: KVM guest: Add memory clobber to hypercalls + * KVM: IOAPIC: Fix level-triggered irq injection hang + * [SCSI] erase invalid data returned by device + * pxamci: fix byte aligned DMA transfers + * vsprintf: split out '%s' handling logic + * vsprintf: split out '%p' handling logic + * vsprintf: add infrastructure support for extended '%p' specifiers + * vsprintf: add support for '%pS' and '%pF' pointer formats + * powerpc: Fix unterminated of_device_id array in legacy_serial.c + * [UML] fix gcc ICEs and unresolved externs + * ocfs2/dlm: Fixes oops in dlm_new_lockres() + * hostap_cs: correct poor NULL checks in suspend/resume routines + * drivers/net/wireless/iwlwifi/iwl-3945.c Fix type issue on 64bit + * mac80211: move netif_carrier_on to after + ieee80211_bss_info_change_notify + * mac80211: Only flush workqueue when last interface was removed + * zd1211rw: add ID for AirTies WUS-201 + * ssb-pcicore: Fix IRQ-vector init on embedded devices + * mac80211: don't report selected IBSS when not found + * crypto: tcrypt - Fix memory leak in test_cipher + * sctp: Mark the tsn as received after all allocations finish + * [S390] protect _PAGE_SPECIAL bit against mprotect + * irda: via-ircc proper dma freeing + * irda: New device ID for nsc-ircc + * irda: Fix netlink error path return value + * [SCSI] mptspi: fix oops in mptspi_dv_renegotiate_work() + * Correct hash flushing from huge_ptep_set_wrprotect() + * ide: add __ide_default_irq() inline helper + * palm_bk3710: fix IDECLK period calculation + * it8213: fix return value in it8213_init_one() + * [MIPS] Atlas, decstation: Fix section mismatches triggered by + defconfigs + * [MIPS] Fix 32bit kernels on R4k with 128 byte cache line size + * NFS: Fix readdir cache invalidation + * SUNRPC: Fix a double-free in rpcbind + * SUNRPC: Fix an rpcbind breakage for the case of IPv6 lookups + * reiserfs: discard prealloc in reiserfs_delete_inode + * Fix broken fix for fsl-diu-db + * RDMA/cxgb3: Fix regression caused by class_device -> device conversion + * ipv6: fix race between ipv6_del_addr and DAD timer + * sctp: Add documentation for sctp sysctl variable + * kernel/printk.c: Made printk_recursion_bug_msg static. + * powerpc: Add missing reference to coherent_dma_mask + * rc80211_pid: Fix fast_start parameter handling + * rt2x00: Disable synchronization during initialization + * zd1211rw: stop beacons on remove_interface + * libertas: fix memory alignment problems on the blackfin + * netfilter: nf_conntrack_tcp: fix endless loop + * netfilter: nf_nat_snmp_basic: fix a range check in NAT for SNMP + * md: ensure all blocks are uptodate or locked when syncing + * sched: fix cpu hotplug + * x86: fix /dev/mem compatibility under PAT + * crypto: chainiv - Invoke completion function + * ocfs2: Fix flags in ocfs2_file_lock + * kernel/kprobes.c: Made kprobe_blacklist static. + * arch/x86/kernel/.gitignore: Added vmlinux.lds to .gitignore file + because it shouldn't be tracked. + * ftrace: Documentation + * Fix PREEMPT_RCU without HOTPLUG_CPU + * sched: fix cpu hotplug, cleanup + * exec: fix stack excutability without PT_GNU_STACK + * slub: Fix use-after-preempt of per-CPU data structure + * Documentation: clarify tcp_{r,w}mem sysctl docs + * ip: sysctl documentation cleanup + * tcp: correct kcalloc usage + * ipv4: fib_trie: Fix lookup error return + * netlabel: netlink_unicast calls kfree_skb on error path by itself + * ipv6: missed namespace context in ipv6_rthdr_rcv + * xfrm: Add a XFRM_STATE_AF_UNSPEC flag to xfrm_usersa_info + * tun: Persistent devices can get stuck in xoff state + * tpm: add Intel TPM TIS device HID + * rapidio: fix device reference counting + * Fix name of Russell King in various comments + * rtc: fix reported IRQ rate for when HPET is enabled + * libata-acpi: filter out DIPM enable + * Added Targa Visionary 1000 IDE adapter to pata_sis.c + * libata-acpi: don't call sleeping function from invalid context + * Fix reference counting race on log buffers + * [SCSI] ipr: Fix HDIO_GET_IDENTITY oops for SATA devices + * IPMI: return correct value from ipmi_write + * x86: fix ldt limit for 64 bit + * [SCSI] fusion: default MSI to disabled for SPI and FC controllers + * [SCSI] bsg: fix oops on remove + * drivers/char/pcmcia/ipwireless/hardware.c fix resource leak + * drivers/isdn/i4l/isdn_common.c fix small resource leak + * fbdev: bugfix for multiprocess defio + * serial8250: sanity check nr_uarts on all paths. + * ov7670: clean up ov7670_read semantics + * rtc-fm3130: fix chip naming + * rtc-pcf8563: add chip id + * OProfile kernel maintainership changes + * frv: fix irqs_disabled() to return an int, not an unsigned long + * cifs: fix inode leak in cifs_get_inode_info_unix + * cifs: fix wksidarr declaration to be big-endian friendly + * cpusets, hotplug, scheduler: fix scheduler domain breakage + * Documentation/HOWTO: correct wrong kernel bugzilla FAQ URL + * devcgroup: always show positive major/minor num + * devcgroup: fix permission check when adding entry to child cgroup + * Linux 2.6.26 + + -- Ben Collins Mon, 14 Jul 2008 13:41:50 -0400 + +linux (2.6.26-3.9) intrepid; urgency=low + + * abi: Add dca and ioatdma to modules.ignore + + [ 2.6.26-3.8 ] + + [ Ben Collins ] + + * ubuntu: Add heci driver 3.2.0.24 + * ubuntu: Add heci to kconfig/kbuild + * config: Enable heci module on all flavours + * dm-bbr: Update to get it to compile with 2.6.26 + * config: Enable dm-bbr + * ubuntu: Add some media drivers + * config: Enable misc media drivers + * udeb: Switch to uvesafb in fb-modules + * abi: Add more modules to ignore (known) + + [ 2.6.26-3.7 ] + + [Amit Kucheria] + + * SAUCE: make fc transport removal of target configurable + - LP: #163075 + * SAUCE: pm: Config option to disable handling of console during + suspend/resume + + [Ben Collins] + + * SAUCE: input/mouse/alps: Do not call psmouse_reset() for alps + * SAUCE: irda: Default to dongle type 9 on IBM hardware + * SAUCE: tulip: Let dmfe handle davicom on non-sparc + * SAUCE: tulip: Define ULI PCI ID's + * SAUCE: version: Implement version_signature proc file. + * build: Cleanup arches + * build: Remove remnants of unused binary-custom infrastructure + * build: Remove disable_d_i (not needed) and cleanup ppa build stuff + * ubuntu: New modules, acer-acpi + * build: Remove -virtual, and rebuild configs + * ubuntu: Add drbd module + * acer-acpi: Fix makefile + * x86/Kconfig: Fix missing quote for ubuntu Kconfig source + * ubuntu: Add iscsitarget module + * ubuntu: Added Amiga FS driver + * ubuntu: Add squashfs driver + * ubuntu: Remove asfs (Amiga FS). Need to be in linux-ports instead + * squashfs: Move headers to real include directory + * build/configs: The Great Config Consistency Check of 2008 + * ubuntu: Move third-party includes to ubuntu/include + * ubuntu: Add aufs module + * ubuntu: Added atl2 driver + * ubuntu: Add dm-radi4-5 driver + * build: Add CONFIG_DEBUG_SECTION_MISMATCH=y to get old style warnings + from build + * ubuntu/Makefile: Fixup dm-raid4-5 and add kludge for kbuild + * squashfs: Fixes for VFS changes + * ubuntu/dm-raid4-5: Fixups for moved/renamed headers/functions in core + md + * ubuntu: Add ndiswrapper driver + * d-i: Update module listings + * build: Disable xd block device (ancient) + * ndiswrapper: Fixup makefile + * d-i: Remove efi-modules. The only module, efivars, is built-in + * build: Remove install-source, obsolete and caused build failure + * Ubuntu-2.6.26-1.3 + * build: linux-doc rules got broken when disabling html side. Fixed now. + * Ubuntu-2.6.26-1.4 + * x86: Update to -rc6 allows CONFIG_PCI_OLPC to work with PCI_GOANY + * d-i: Make virtio-ring optional (it's built-in on i386) + * Ubuntu-2.6.26-1.4 + * Ubuntu-2.6.26-1.5 + * config: Enable DVB devices + * ubuntu/aufs: Make aufs a bool config, since it needs to be built-in + * config: Build aufs into the kernels + * build: Fix arguments passed to link-headers script + * config: Disable early printk + * d-i: Move isofs to storage-core and kill st (scsi tape) from list + * config: Enable non-promiscuous access to /dev/mem + * x86: Add option to disable decompression info messages + * config: Enable no-bz-chatter config options + * build: Re-add linux-source package + * d-i: Re-add socket-modules. Accidentally removed + - LP: #241295 + * Ubuntu-2.6.26-2.6 + * Use makedumpfile to generate a vmcoreinfo file. + * build: Build-Depend on makedumpfile for vmcoreinfo generation + * build: Remove debug print from git-ubuntu-log + * Updated configs for -rc7 + * build: postinst, do not call depmod with -F + * config: Enable rtc-cmos as a built-in driver. + * control: Provide ndiswrapper-modules-1.9 + * build: Generate vmcoreinfo in image build for crashdumps without debug + image + * config: Disable vesafb, since we'll prefer uvesafb + * build: Copy uvesafb module to initrd mod directory + * abi-check: New, more robust script + * config: Enable heap randomization by default + * abi-check: Cleanup output and call with perl (not $SHELL) + * abi: Ignore missing vesafb (known) + * config: Disable pcspkr (in favor of snd-pcsp) + * swap: Add notify_swap_entry_free callback for compcache + * compcache: Added ram backed compressed swap module + * ubuntu: Enable kbuild and kconfig for compcache + * config: Enable compcache and tlsf allocator as modules + * config: Updated for -rc8. Disables XEN on i386 + * config: Switch i386-server to 64G, enable PAE, 64-bit res, and XEN + * ubuntu: Add misc drivers from hardy lum + * ubuntu: Enable build of misc/ subdir + * config: Enable misc drivers + * aufs: Fix warning about single non-string-literal arg to printf style + function + * drivers: Remove some duplicate device entries in various modules + * config: Disable some duplicate drivers + * keyspan: Remove duplicate device ID's + * check-aliases: Cleanup output, and fix rolling checks + * ubuntu: Disable dm-bbr for now + * dm-bbr: First cut at forward portiong. Still needs work. + * ubuntu: Disable dm-bbr in kbuild/kconfig + + [Chuck Short] + + * SAUCE: ata: blacklist FUJITSU MHW2160BH PL + - LP: #175834 + * SAUCE: [USB]: add ASUS LCM to the blacklist + + [Colin Ian King] + + * SAUCE: airprime.c supports more devices + - LP: #208250 + * SAUCE: Enable speedstep for sonoma processors. + - LP: #132271 + * Add dm-loop + * Add dm-loop BOM + + [Kyle McMartin] + + * SAUCE: fix orinoco_cs oops + + [Mario Limonciello] + + * SAUCE: Enable Reset and SCO workaround on Dell 410 BT adapter + + [Matthew Garrett] + + * SAUCE: hostap: send events on data interface as well as master + interface + + [Phillip Lougher] + + * SAUCE: r8169: disable TSO by default for RTL8111/8168B chipsets. + + [Stefan Bader] + + * SAUCE: Export dm_disk function of device-mapper + * SAUCE: Restore VT fonts on switch + * SAUCE: Always use SCO protocol (disable eSCO support) Bug: #39414 + * SAUCE: mmc: Increase power_up deleay to fix TI readers OriginalAuthor: + Pascal Terjan Bug: #137686 + * SAUCE: Add blacklist support to fix Belkin bluetooth dongle. Bug: + #140511 + * SAUCE: Lower warning level of pci resource allocation messages. Bug: + 159241 + * SAUCE: Lower message level for PCI memory and I/O allocation. + - LP: #159241 + * Modify log generation to catch bug numbers when adding with git-am. + + [Tim Gardner] + + * Added the debian directory. Ignore: yes + * Add support for UBUNTUINCLUDE Ignore: yes + * LUM headers go in /usr/src Ignore: yes + * First pass at 2.6.25 configs Ignore: yes + * i386 -generic builds. Ignore: yes + * SAUCE: Increase CONFIG_IDE_MAX_HWIFS to 8 (from 4) + * SAUCE: Add extra headers to linux-libc-dev OriginalAuthor: Soren Hansen + OriginalLocation: + https://lists.ubuntu.com/archives/kernel-team/2007-November/001891.html + * Set CONFIG_DEVKMEM=n Ignore: yes + * Enabled ALSA and CGROUPS for i386 Ignore: yes + * Enabled amd64 configs. Ignore: yes + * CONFIG_STANDALONE=n Ignore: yes + * CONFIG_BLK_DEV_4DRIVES=n for i386 Ignore: yes + * CONFIG: CONFIG_DEFAULT_RELATIME=y for all flavours. Ignore: yes + * Set CONFIG_EDD_OFF=y Ignore: yes + * SAUCE: Blacklist Bluetooth Dell Wireless 370 for SCO MTU + OriginalAuthor: Mario Limonciello Bug: + #209715 + * SAUCE: Catch nonsense keycodes and silently ignore + * SAUCE: frame buffer regression - screen blank except for blinking + cursor after fbcon vtswitch OriginalAuthor: Matthew Garrett + Bug: #201591 + * SAUCE: Added support for HDAPS on various ThinkPads from Lenovo and IBM + OriginalAuthor: Klaus S. Madsen + OriginalAuthor: Chuck Short + * SAUCE: Guest OS does not recognize a lun with non zero target id on + Vmware ESX Server + * SAUCE: orinoco_cs.ko missing + * Set CONFIG_FB_VESA=m for i386/amd64 Ignore: yes + * Set CONFIG_PM_DISABLE_CONSOLE=y for all flavours Ignore: yes + * Thorough review of amd64 -generic config Ignore: yes + * Build PPA packages for Hardy until the Intrepid archive is opened. + * Deleted obsolete flavours Ignore: yes + * Don't build docs for PPA Ignore: yes + * Build all standard packages in PPA. Ignore: yes + * Remove duplicate USB ids + * SAUCE: DVB-USB UMT-010 driver oops on install Bug: #115284 + * Update configs after rebase to 2.6.26-rc1 Ignore: yes + * Update configs after rebase Ignore: yes + * Disable V4L until the build issues get ironed out. Ignore: yes + * Update configs after rebase. Ignore: yes + * Another device enable pass Ignore: yes + * Update configs after merge. Ignore: yes + * SAUCE: fn key doesn't work in hardy with macbook pro fourth generation + (4,1) + - LP: #207127 + * Enabled CONFIG_CIFS_DFS_UPCALL=y and CONFIG_CIFS_UPCALL=y + - LP: #236830 + + [Upstream Kernel Changes] + + * Revert "[WATCHDOG] hpwdt: Add CFLAGS to get driver working" + * mac80211: detect driver tx bugs + * hwmon: (lm85) Fix function RANGE_TO_REG() + * hwmon: (adt7473) Initialize max_duty_at_overheat before use + * hwmon: Update the sysfs interface documentation + * hwmon: (abituguru3) Identify Abit AW8D board as such + * hwmon: (w83791d) new maintainer + * hwmon: (abituguru3) update driver detection + * hwmon: (lm75) sensor reading bugfix + * ipv6: Remove options header when setsockopt's optlen is 0 + * ipv6: Drop packets for loopback address from outside of the box. + * sched: rt: dont stop the period timer when there are tasks wanting to + run + * sched: fix wait_for_completion_timeout() spurious failure under heavy + load + * x86: fix NULL pointer deref in __switch_to + * xen: Use wmb instead of rmb in xen_evtchn_do_upcall(). + * xen: mask unwanted pte bits in __supported_pte_mask + * xen: don't drop NX bit + * sched: refactor wait_for_completion_timeout() + * Ext4: Fix online resize block group descriptor corruption + * [IA64] SN2: security hole in sn2_ptc_proc_write + * alpha: fix module load failures on smp (bug #10926) + * alpha: link failure fix + * alpha: fix compile failures with gcc-4.3 (bug #10438) + * alpha: resurrect Cypress IDE quirk + * pppoe: warning fix + * sctp: Make sure N * sizeof(union sctp_addr) does not overflow. + * netns: Don't receive new packets in a dead network namespace. + * Add return value to reserve_bootmem_node() + * Slab: Fix memory leak in fallback_alloc() + * Fix performance regression on lmbench select benchmark + * ALSA: aw2 - Fix Oops at initialization + * ALSA: sb - Fix wrong assertions + * futexes: fix fault handling in futex_lock_pi + * IB/mthca: Clear ICM pages before handing to FW + * tty_driver: Update required method documentation + * removed unused var real_tty on n_tty_ioctl() + * Fix ZERO_PAGE breakage with vmware + * mm: fix race in COW logic + * NFS: Reduce the NFS mount code stack usage. + * NFS: Fix filehandle size comparisons in the mount code + * NFS: nfs_updatepage(): don't mark page as dirty if an error occurred + * alpha: fix compile error in arch/alpha/mm/init.c + * KVM: Fix race between timer migration and vcpu migration + * KVM: close timer injection race window in __vcpu_run + * KVM: MMU: Fix rmap_write_protect() hugepage iteration bug + * KVM: MMU: large page update_pte issue with non-PAE 32-bit guests + (resend) + * KVM: MMU: Fix oops on guest userspace access to guest pagetable + * KVM: ioapic: fix lost interrupt when changing a device's irq + * KVM: VMX: Fix host msr corruption with preemption enabled + * [GFS2] BUG: unable to handle kernel paging request at ffff81002690e000 + * xen: remove support for non-PAE 32-bit + * kgdb: documentation update - remove kgdboe + * kgdb: sparse fix + * [IA64] Fix boot failure on ia64/sn2 + * [IA64] Handle count==0 in sn2_ptc_proc_write() + * [IA64] Eliminate NULL test after alloc_bootmem in iosapic_alloc_rte() + * [GFS2] fix gfs2 block allocation (cleaned up) + * x86: Add structs and functions for paravirt clocksource + * x86: Make xen use the paravirt clocksource structs and functions + * KVM: Make kvm host use the paravirt clocksource structs + * x86: KVM guest: Use the paravirt clocksource structs and functions + * KVM: Remove now unused structs from kvm_para.h + * enable bus mastering on i915 at resume time + * Linux 2.6.26-rc8 + * # Ubuntu external driver commit. + * # Ubuntu commit template. + + -- Ben Collins Sat, 21 Jun 2008 09:05:15 -0400 + +linux (2.6.26-2.6) intrepid; urgency=low + + [Ben Collins] + + * Revert "SAUCE: Export symbols for aufs (in lum) (not needed) + * config: Enable DVB devices + * ubuntu/aufs: Make aufs a bool config, since it needs to be built-in + * config: Build aufs into the kernels + * build: Fix arguments passed to link-headers script + * config: Disable early printk + * d-i: Move isofs to storage-core and kill st (scsi tape) from list + * config: Enable non-promiscuous access to /dev/mem + * x86: Add option to disable decompression info messages + * config: Enable no-bz-chatter config options + * build: Re-add linux-source package + * d-i: Re-add socket-modules. Accidentally removed + - LP: #241295 + + [Colin Ian King] + + * Add dm-loop + + [Tim Gardner] + + * Revert "SAUCE: USB bluetooth device 0x0e5e:0x6622 floods errors to + syslog (merged upstream) + + -- Ben Collins Mon, 16 Jun 2008 10:56:01 -0400 + +linux (2.6.26-1.5) intrepid; urgency=low + + * d-i: Make virtio-ring optional (it's built-in on i386) + * Rebased on 2.6.26-rc6 + + [Ubuntu-2.6.26-1.4 Changes below] + + * build: linux-doc rules got broken when disabling html side. Fixed now. + + [Ubuntu-2.6.26-1.3 Changes below] + + * build: Remove install-source, obsolete and caused build failure + + [Ubuntu-2.6.26-1.2 Changes below] + + * Remove efi-modules from d-i module list (efivars is built-in). Caused a + build failure. + * Patch to arch/x86/xen/time.c to remove __divdi3 usage (build failure on + i386). + + [Ubuntu-2.6.26-1.1 Changes below] + + [Amit Kucheria] + + * SAUCE: make fc transport removal of target configurable + * SAUCE: Add AGP support for Radeon Mobility 9000 chipset + * SAUCE: pm: Config option to disable handling of console during + suspend/resume + + [Ben Collins] + + * SAUCE: input/mouse/alps: Do not call psmouse_reset() for alps + * SAUCE: irda: Default to dongle type 9 on IBM hardware + * SAUCE: tulip: Let dmfe handle davicom on non-sparc + * SAUCE: tulip: Define ULI PCI ID's + * SAUCE: version: Implement version_signature proc file. + * build: Remove remnants of unused binary-custom infrastructure + * mmc_block: Fix bad allocation on 64-bit (zero len array) + * ubuntu: New modules, acer-acpi + * build: Remove -virtual, and rebuild configs + * ubuntu: Add drbd module + * ubuntu: Add iscsitarget module + * ubuntu: Add squashfs driver + * build/configs: The Great Config Consistency Check of 2008 + * ubuntu: Add aufs module + * ubuntu: Added atl2 driver + * ubuntu: Add dm-radi4-5 driver + * build: Add CONFIG_DEBUG_SECTION_MISMATCH=y to get old style warnings + from build + * squashfs: Fixes for VFS changes + * ubuntu/dm-raid4-5: Fixups for moved/renamed headers/functions in core + md + * ubuntu: Add ndiswrapper driver + * d-i: Update module listings + + [Chuck Short] + + * SAUCE: ata: blacklist FUJITSU MHW2160BH PL + * SAUCE: [USB]: add ASUS LCM to the blacklist + + [Colin Ian King] + + * SAUCE: Enable speedstep for sonoma processors. + * SAUCE: airprime.c supports more devices + + [Kyle McMartin] + + * SAUCE: fix orinoco_cs oops + + [Mario Limonciello] + + * SAUCE: Enable Reset and SCO workaround on Dell 410 BT adapter + + [Matthew Garrett] + + * SAUCE: hostap: send events on data interface as well as master + interface + + [Phillip Lougher] + + * SAUCE: r8169: disable TSO by default for RTL8111/8168B chipsets. + + [Stefan Bader] + + * SAUCE: Export dm_disk function of device-mapper + * SAUCE: Restore VT fonts on switch + * SAUCE: Always use SCO protocol (disable eSCO support) Bug: #39414 + * SAUCE: mmc: Increase power_up deleay to fix TI readers + * SAUCE: Add blacklist support to fix Belkin bluetooth dongle. + * SAUCE: Lower warning level of pci resource allocation messages. + * SAUCE: Lower message level for PCI memory and I/O allocation. + - LP: #159241 + * Modify log generation to catch bug numbers when adding with git-am. + + [Tim Gardner] + + * SAUCE: hdaps module does not load on Thinkpad T61P + * SAUCE: Add extra headers to linux-libc-dev + * SAUCE: Export symbols for aufs (in lum). + * SAUCE: USB bluetooth device 0x0e5e:0x6622 floods errors to syslog + * SAUCE: Blacklist Bluetooth Dell Wireless 370 for SCO MTU + * SAUCE: Catch nonsense keycodes and silently ignore + * SAUCE: frame buffer regression - screen blank except for blinking + cursor after fbcon vtswitch + * SAUCE: Added support for HDAPS on various ThinkPads from Lenovo and IBM + * SAUCE: Guest OS does not recognize a lun with non zero target id on + Vmware ESX Server + * SAUCE: Modualrize vesafb + * SAUCE: DVB-USB UMT-010 driver oops on install + * SAUCE: fn key doesn't work in hardy with macbook pro fourth generation + (4,1) + - LP: #207127 + + -- Ben Collins Wed, 11 Jun 2008 05:28:35 -0400 --- linux-4.8.0.orig/debian.master/config/amd64/config.common.amd64 +++ linux-4.8.0/debian.master/config/amd64/config.common.amd64 @@ -0,0 +1,679 @@ +# +# Config options for config.common.amd64 automatically generated by splitconfig.pl +# +CONFIG_64BIT=y +# 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_ABX500_CORE=y +CONFIG_AC97_BUS=m +CONFIG_ACPI_DOCK=y +CONFIG_ACPI_EC_DEBUGFS=m +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +CONFIG_AD525X_DPOT=m +CONFIG_AIX_PARTITION=y +CONFIG_ALIM7101_WDT=m +CONFIG_ALTERA_STAPL=m +CONFIG_ALTERA_TSE=m +CONFIG_AMD_PHY=m +CONFIG_AMIGA_PARTITION=y +CONFIG_APDS9802ALS=m +CONFIG_APPLICOM=m +CONFIG_AQUANTIA_PHY=m +CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +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_MIN=8 +# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set +CONFIG_ARCH_PHYS_ADDR_T_64BIT=y +CONFIG_ARCH_RANDOM=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCNET=m +CONFIG_ASYNC_RAID6_TEST=m +CONFIG_AT803X_PHY=m +CONFIG_ATALK=m +CONFIG_ATARI_PARTITION=y +CONFIG_ATA_GENERIC=y +# CONFIG_ATA_NONSTANDARD is not set +CONFIG_ATA_OVER_ETH=m +CONFIG_ATA_PIIX=y +CONFIG_ATM=m +# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set +CONFIG_AUXDISPLAY=y +CONFIG_BACKLIGHT_LCD_SUPPORT=y +# CONFIG_BATMAN_ADV_BATMAN_V is not set +CONFIG_BCH=m +CONFIG_BCM7XXX_PHY=m +CONFIG_BCM87XX_PHY=m +CONFIG_BCMA=m +CONFIG_BCM_KONA_USB2_PHY=m +CONFIG_BE2ISCSI=m +CONFIG_BLK_CMDLINE_PARSER=y +CONFIG_BLK_CPQ_CISS_DA=m +CONFIG_BLK_DEV_3W_XXXX_RAID=m +CONFIG_BLK_DEV_CRYPTOLOOP=m +CONFIG_BLK_DEV_DAC960=m +CONFIG_BLK_DEV_NVME=m +CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m +CONFIG_BLK_DEV_RSXX=m +CONFIG_BLK_DEV_SKD=m +# CONFIG_BLK_DEV_SR_VENDOR is not set +CONFIG_BLK_DEV_SX8=m +CONFIG_BLK_DEV_UMEM=m +CONFIG_BMP085_I2C=m +CONFIG_BROADCOM_PHY=m +CONFIG_C2PORT=m +CONFIG_CADENCE_WATCHDOG=m +CONFIG_CAIF_HSI=m +CONFIG_CAIF_SPI_SLAVE=m +CONFIG_CAIF_TTY=m +CONFIG_CAIF_VIRTIO=m +CONFIG_CB710_CORE=m +CONFIG_CC_STACKPROTECTOR=y +CONFIG_CDROM_PKTCDVD=m +CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y +CONFIG_CGROUP_HUGETLB=y +CONFIG_CICADA_PHY=m +CONFIG_CIFS_SMB311=y +# CONFIG_CIFS_STATS2 is not set +# CONFIG_CLS_U32_PERF is not set +CONFIG_CMA=y +CONFIG_CMDLINE_PARTITION=y +# CONFIG_CPU_NO_EFFICIENT_FFS is not set +CONFIG_CRAMFS=m +CONFIG_CRASH_DUMP=y +CONFIG_CRC16=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_CTR=y +CONFIG_CRYPTO_CTS=y +CONFIG_CRYPTO_DRBG=y +CONFIG_CRYPTO_DRBG_MENU=y +CONFIG_CRYPTO_GF128MUL=y +CONFIG_CRYPTO_JITTERENTROPY=y +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_RNG_DEFAULT=y +CONFIG_CRYPTO_SEQIV=y +CONFIG_CRYPTO_XTS=y +# CONFIG_CXL_AFU_DRIVER_OPS is not set +# CONFIG_CXL_BASE is not set +CONFIG_DAVICOM_PHY=m +CONFIG_DEBUG_INFO_DWARF4=y +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_DECNET=m +# CONFIG_DEFAULT_CFQ is not set +CONFIG_DEFAULT_DEADLINE=y +CONFIG_DEFAULT_IOSCHED="deadline" +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +# CONFIG_DLM_DEBUG is not set +CONFIG_DMADEVICES=y +CONFIG_DMA_VIRTUAL_CHANNELS=m +# CONFIG_DM_DEBUG is not set +# CONFIG_DM_MQ_DEFAULT is not set +# CONFIG_DM_VERITY_FEC is not set +CONFIG_DNET=m +CONFIG_DNS_RESOLVER=y +CONFIG_DP83848_PHY=m +CONFIG_DP83867_PHY=m +CONFIG_DRM=m +CONFIG_DS1682=m +CONFIG_DUMMY_IRQ=m +CONFIG_DW_WATCHDOG=m +CONFIG_ECHO=m +CONFIG_EEPROM_93CX6=m +CONFIG_EEPROM_AT24=m +CONFIG_EEPROM_LEGACY=m +CONFIG_EEPROM_MAX6875=m +CONFIG_EFI=y +# CONFIG_EM_TIMER_STI is not set +# CONFIG_ENABLE_MUST_CHECK is not set +# CONFIG_ENABLE_WARN_DEPRECATED is not set +CONFIG_ENCLOSURE_SERVICES=m +CONFIG_ETHOC=m +CONFIG_EXT4_FS=y +CONFIG_EXTCON=y +CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y +# CONFIG_FAT_DEFAULT_UTF8 is not set +CONFIG_FB=y +CONFIG_FB_ATY128=m +CONFIG_FB_BOOT_VESA_SUPPORT=y +# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set +CONFIG_FB_EFI=y +# CONFIG_FB_IBM_GXT4500 is not set +# CONFIG_FB_MACMODES is not set +CONFIG_FB_SYS_COPYAREA=m +CONFIG_FB_SYS_FILLRECT=m +CONFIG_FB_SYS_FOPS=m +CONFIG_FB_SYS_IMAGEBLIT=m +CONFIG_FB_UDL=m +CONFIG_FB_VOODOO1=m +CONFIG_FDDI=y +CONFIG_FEALNX=m +CONFIG_FIREWIRE=m +CONFIG_FIREWIRE_NOSY=m +CONFIG_FIRMWARE_IN_KERNEL=y +CONFIG_FIXED_PHY=y +CONFIG_FMC=m +# CONFIG_FONTS is not set +CONFIG_FRAME_WARN=1024 +CONFIG_FS_ENCRYPTION=y +CONFIG_FS_MBCACHE=y +CONFIG_FUNCTION_PROFILER=y +CONFIG_FUSE_FS=y +CONFIG_FUSION=y +CONFIG_GAMEPORT=m +CONFIG_GDB_SCRIPTS=y +CONFIG_GENERIC_PHY=y +CONFIG_GPIOLIB=y +CONFIG_GPIO_GENERIC=m +CONFIG_GPIO_GENERIC_PLATFORM=m +CONFIG_GPIO_TWL4030=m +CONFIG_GPIO_TWL6040=m +# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set +# CONFIG_HAVE_AOUT is not set +# CONFIG_HAVE_ARCH_BITREVERSE is not set +CONFIG_HAVE_BOOTMEM_INFO_NODE=y +# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_HFSPLUS_FS_POSIX_ACL=y +CONFIG_HIBERNATION=y +CONFIG_HIO=m +CONFIG_HMC6352=m +CONFIG_HOTPLUG_CPU=y +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_PCIE=y +CONFIG_HOTPLUG_PCI_SHPC=m +CONFIG_HPET=y +CONFIG_HPFS_FS=m +CONFIG_HP_ILO=m +CONFIG_HSI=m +CONFIG_HTC_PASIC3=m +CONFIG_HUGETLB_PAGE=y +CONFIG_HWMON=y +CONFIG_HW_RANDOM_TIMERIOMEM=m +CONFIG_I2C=y +CONFIG_I2C_ALGOPCA=m +CONFIG_I2C_ALI1535=m +CONFIG_I2C_ALI1563=m +CONFIG_I2C_ALI15X3=m +CONFIG_I2C_AMD756=m +CONFIG_I2C_AMD8111=m +CONFIG_I2C_CHARDEV=y +CONFIG_I2C_COMPAT=y +CONFIG_I2C_DESIGNWARE_PCI=m +CONFIG_I2C_DESIGNWARE_PLATFORM=m +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_I801=m +CONFIG_I2C_ISCH=m +CONFIG_I2C_MUX=m +CONFIG_I2C_NFORCE2=m +CONFIG_I2C_OCORES=m +CONFIG_I2C_PARPORT_LIGHT=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_SLAVE_EEPROM is not set +CONFIG_I2C_SMBUS=m +CONFIG_I2C_STUB=m +CONFIG_I2C_TAOS_EVM=m +CONFIG_I2C_VIA=m +CONFIG_I2C_VIAPRO=m +CONFIG_I2C_XILINX=m +CONFIG_I6300ESB_WDT=m +CONFIG_ICPLUS_PHY=m +CONFIG_ICS932S401=m +CONFIG_IDLE_PAGE_TRACKING=y +CONFIG_IEEE802154_DRIVERS=m +# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set +CONFIG_IIO=m +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +CONFIG_IMA=y +CONFIG_INFINIBAND_NES=m +CONFIG_INFINIBAND_OCRDMA=m +CONFIG_INFINIBAND_QIB=m +CONFIG_INPUT=y +CONFIG_INTERVAL_TREE_TEST=m +CONFIG_IPACK_BUS=m +CONFIG_IPMI_HANDLER=m +CONFIG_IPV6_ILA=m +CONFIG_IPV6_MIP6=m +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +# CONFIG_IPX_INTERN is not set +# CONFIG_IP_DCCP_CCID3 is not set +# CONFIG_IP_MROUTE_MULTIPLE_TABLES is not set +CONFIG_IRQ_BYPASS_MANAGER=m +CONFIG_ISA_BUS_API=y +CONFIG_ISL29003=m +CONFIG_ISL29020=m +# CONFIG_IWLWIFI_PCIE_RTPM is not set +CONFIG_JBD2=y +CONFIG_JFS_STATISTICS=y +CONFIG_JME=m +CONFIG_JUMP_LABEL=y +CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y +CONFIG_KALLSYMS_ALL=y +CONFIG_KERNEL_GZIP=y +# CONFIG_KERNEL_XZ is not set +CONFIG_KEXEC=y +CONFIG_KVM=m +CONFIG_LDM_PARTITION=y +CONFIG_LIBNVDIMM=y +CONFIG_LLC2=m +CONFIG_LOCK_TORTURE_TEST=m +# CONFIG_LOGFS is not set +CONFIG_LOG_BUF_SHIFT=18 +CONFIG_LPC_ICH=m +CONFIG_LPC_SCH=m +CONFIG_LSI_ET1011C_PHY=m +CONFIG_LXT_PHY=m +CONFIG_MAC_PARTITION=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 +CONFIG_MAILBOX=y +CONFIG_MARVELL_PHY=m +CONFIG_MAX63XX_WATCHDOG=m +CONFIG_MCB=m +CONFIG_MDIO_BCM_UNIMAC=m +CONFIG_MDIO_BITBANG=m +CONFIG_MDIO_OCTEON=m +CONFIG_MDIO_THUNDER=m +CONFIG_MD_MULTIPATH=m +# CONFIG_MEDIA_CONTROLLER_DVB is not set +CONFIG_MEDIA_SUPPORT=m +CONFIG_MEGARAID_LEGACY=m +CONFIG_MEGARAID_NEWGEN=y +CONFIG_MEGARAID_SAS=m +CONFIG_MEMORY=y +CONFIG_MEMORY_HOTPLUG=y +CONFIG_MEMSTICK=m +CONFIG_MEMTEST=y +CONFIG_MEM_SOFT_DIRTY=y +CONFIG_MFD_88PM800=m +CONFIG_MFD_88PM805=m +CONFIG_MFD_ARIZONA_I2C=m +CONFIG_MFD_BCM590XX=m +CONFIG_MFD_CORE=y +CONFIG_MFD_CROS_EC=m +CONFIG_MFD_DA9062=m +CONFIG_MFD_DA9063=y +CONFIG_MFD_DA9150=m +CONFIG_MFD_JANZ_CMODIO=m +CONFIG_MFD_KEMPLD=m +CONFIG_MFD_LM3533=m +CONFIG_MFD_LP3943=m +CONFIG_MFD_MAX14577=y +CONFIG_MFD_MAX77693=y +CONFIG_MFD_MAX8907=m +CONFIG_MFD_MC13XXX_I2C=m +CONFIG_MFD_MENF21BMC=m +CONFIG_MFD_MT6397=m +CONFIG_MFD_PCF50633=m +CONFIG_MFD_RDC321X=m +CONFIG_MFD_RETU=m +CONFIG_MFD_RT5033=m +CONFIG_MFD_RTSX_PCI=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_TMIO is not set +CONFIG_MFD_TPS65217=m +CONFIG_MFD_TPS65218=m +CONFIG_MFD_TPS65912_I2C=y +CONFIG_MFD_VX855=m +CONFIG_MFD_WL1273_CORE=m +CONFIG_MFD_WM8994=m +CONFIG_MICREL_PHY=m +CONFIG_MICROCHIP_PHY=m +CONFIG_MII=m +CONFIG_MINIX_SUBPARTITION=y +CONFIG_MMC=y +CONFIG_MMC_BLOCK=m +CONFIG_MMC_SDHCI=m +CONFIG_MMC_SDHCI_PLTFM=m +# CONFIG_MODULE_FORCE_LOAD is not set +# CONFIG_MODULE_FORCE_UNLOAD is not set +CONFIG_MODULE_SRCVERSION_ALL=y +CONFIG_MOVABLE_NODE=y +CONFIG_MTD=m +CONFIG_MTD_BLKDEVS=m +CONFIG_MTD_BLOCK=m +CONFIG_MTD_CMDLINE_PARTS=m +CONFIG_MTD_NAND=m +CONFIG_MTD_NAND_BCH=m +CONFIG_MTD_NAND_ECC=m +CONFIG_MTD_NAND_IDS=m +# CONFIG_MTD_NAND_OMAP_BCH_BUILD is not set +CONFIG_NATIONAL_PHY=m +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +# CONFIG_NETDEV_NOTIFIER_ERROR_INJECT is not set +# CONFIG_NET_ACT_IFE is not set +CONFIG_NET_CADENCE=y +# CONFIG_NET_CLS_IND is not set +# CONFIG_NET_KEY_MIGRATE is not set +CONFIG_NET_MPLS_GSO=m +CONFIG_NET_PACKET_ENGINE=y +CONFIG_NET_SWITCHDEV=y +CONFIG_NET_TCPPROBE=m +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_EXAR=y +CONFIG_NET_VENDOR_EZCHIP=y +CONFIG_NET_VENDOR_HP=y +CONFIG_NET_VENDOR_INTEL=y +CONFIG_NET_VENDOR_MARVELL=y +CONFIG_NET_VENDOR_MICREL=y +CONFIG_NET_VENDOR_MYRI=y +CONFIG_NET_VENDOR_NATSEMI=y +CONFIG_NET_VENDOR_NVIDIA=y +CONFIG_NET_VENDOR_OKI=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_SYNOPSYS=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_NFS_V4_1_MIGRATION=y +# CONFIG_NF_CONNTRACK_PROCFS is not set +CONFIG_NODES_SHIFT=6 +CONFIG_NOP_USB_XCEIV=m +CONFIG_NOZOMI=m +CONFIG_NO_HZ=y +CONFIG_NR_CPUS=512 +CONFIG_NTB=m +CONFIG_NUMA=y +CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y +# CONFIG_NUMA_EMU is not set +CONFIG_NVMEM=m +CONFIG_NVRAM=m +CONFIG_N_GSM=m +# CONFIG_OF is not set +# CONFIG_ORANGEFS_FS is not set +CONFIG_OSF_PARTITION=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +# CONFIG_PAGE_EXTENSION is not set +CONFIG_PARAVIRT=y +CONFIG_PARPORT=m +CONFIG_PATA_SIS=y +CONFIG_PCCARD=m +CONFIG_PCIPCWATCHDOG=m +CONFIG_PCI_MSI_IRQ_DOMAIN=y +CONFIG_PCI_PASID=y +CONFIG_PCI_PRI=y +CONFIG_PCI_QUIRKS=y +CONFIG_PCMCIA=m +CONFIG_PERCPU_TEST=m +CONFIG_PERSISTENT_KEYRINGS=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_PGTABLE_MAPPING=y +CONFIG_PHANTOM=m +CONFIG_PHYLIB=y +CONFIG_PHYSICAL_ALIGN=0x200000 +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_PHYS_ADDR_T_64BIT=y +# CONFIG_PHY_EXYNOS5250_USB2 is not set +CONFIG_PHY_PXA_28NM_HSIC=m +CONFIG_PHY_PXA_28NM_USB2=m +CONFIG_PM_DEVFREQ=y +CONFIG_POWERCAP=y +CONFIG_POWER_AVS=y +CONFIG_POWER_RESET=y +CONFIG_POWER_SUPPLY=y +CONFIG_PPP=y +CONFIG_PPS=m +CONFIG_PPS_CLIENT_GPIO=m +CONFIG_PPS_CLIENT_LDISC=m +# CONFIG_PRINT_QUOTA_WARNING is not set +CONFIG_PSTORE=y +# CONFIG_PSTORE_CONSOLE is not set +CONFIG_PSTORE_RAM=m +CONFIG_PTP_1588_CLOCK=m +CONFIG_PWM=y +# CONFIG_PWM_PCA9685 is not set +CONFIG_QSEMI_PHY=m +CONFIG_R3964=m +CONFIG_RAW_DRIVER=m +CONFIG_RBTREE_TEST=m +CONFIG_RCU_CPU_STALL_TIMEOUT=60 +CONFIG_REALTEK_PHY=m +CONFIG_REED_SOLOMON=m +CONFIG_REGMAP_I2C=y +CONFIG_REGULATOR=y +CONFIG_REGULATOR_FIXED_VOLTAGE=m +CONFIG_REGULATOR_TPS65217=m +CONFIG_REGULATOR_TWL4030=m +CONFIG_RELOCATABLE=y +CONFIG_RESET_CONTROLLER=y +CONFIG_RFKILL=y +CONFIG_RTC_DRV_CMOS=y +CONFIG_RTC_DRV_DS3232=m +CONFIG_RTC_DRV_PCF8523=m +CONFIG_RTC_DRV_TWL4030=m +CONFIG_SATA_AHCI_PLATFORM=m +CONFIG_SATA_SVW=m +CONFIG_SCHEDSTATS=y +CONFIG_SCHED_SMT=y +CONFIG_SCHED_TRACER=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_DPT_I2O=m +CONFIG_SCSI_ESAS2R=m +CONFIG_SCSI_FUTURE_DOMAIN=m +CONFIG_SCSI_HPSA=m +CONFIG_SCSI_HPTIOP=m +CONFIG_SCSI_INIA100=m +CONFIG_SCSI_INITIO=m +CONFIG_SCSI_IPS=m +CONFIG_SCSI_LPFC=m +CONFIG_SCSI_MPT2SAS=m +CONFIG_SCSI_MPT3SAS=m +# CONFIG_SCSI_MQ_DEFAULT is not set +CONFIG_SCSI_MVSAS=m +CONFIG_SCSI_MVUMI=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_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set +CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y +CONFIG_SECURITY_SELINUX_BOOTPARAM=y +CONFIG_SECURITY_SELINUX_DISABLE=y +CONFIG_SENSORS_APDS990X=m +CONFIG_SENSORS_BH1770=m +CONFIG_SENSORS_SCH56XX_COMMON=m +CONFIG_SENSORS_TSL2550=m +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_DW=m +CONFIG_SERIAL_8250_FINTEK=y +# CONFIG_SERIAL_8250_FSL is not set +CONFIG_SERIAL_ALTERA_JTAGUART=m +CONFIG_SERIAL_ALTERA_UART=m +CONFIG_SERIAL_ARC=m +CONFIG_SERIAL_CORE=y +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_SGETMASK_SYSCALL=y +CONFIG_SGI_IOC4=m +CONFIG_SGI_PARTITION=y +# CONFIG_SG_SPLIT is not set +# CONFIG_SH_TIMER_CMT is not set +# CONFIG_SH_TIMER_MTU2 is not set +# CONFIG_SH_TIMER_TMU is not set +CONFIG_SLIP=m +CONFIG_SMSC_PHY=m +CONFIG_SND=m +CONFIG_SND_DMAENGINE_PCM=m +CONFIG_SND_EMU10K1_SEQ=m +# CONFIG_SND_OPL4_LIB_SEQ is not set +CONFIG_SND_PCM=m +# CONFIG_SND_SBAWE_SEQ is not set +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_RT5677_SPI is not set +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_PXA2XX_PCI=m +# CONFIG_SPI_ROCKCHIP is not set +CONFIG_SPMI=m +# CONFIG_SQUASHFS_FILE_CACHE is not set +CONFIG_SQUASHFS_FILE_DIRECT=y +CONFIG_SQUASHFS_LZ4=y +CONFIG_SRAM=y +CONFIG_SSB=m +CONFIG_STAGING=y +# CONFIG_STANDALONE is not set +CONFIG_STE10XP=m +CONFIG_STE_MODEM_RPROC=m +# CONFIG_STRIP_ASM_SYMS is not set +CONFIG_SUN_PARTITION=y +CONFIG_SYSCTL_SYSCALL=y +CONFIG_SYSFS_SYSCALL=y +CONFIG_SYSV68_PARTITION=y +CONFIG_SYS_HYPERVISOR=y +CONFIG_TCG_TIS_CORE=y +CONFIG_TCG_TIS_I2C_ATMEL=m +CONFIG_TCG_TIS_I2C_INFINEON=m +CONFIG_TCG_TIS_I2C_NUVOTON=m +CONFIG_TCG_TIS_ST33ZP24_I2C=m +CONFIG_TERANETICS_PHY=m +# CONFIG_TEST_BITMAP is not set +CONFIG_TEST_HEXDUMP=m +CONFIG_TEST_KSTRTOX=m +CONFIG_TEST_LKM=m +# CONFIG_TEST_PRINTF is not set +CONFIG_TEST_STRING_HELPERS=m +CONFIG_TEST_UDELAY=m +CONFIG_THERMAL=y +CONFIG_THUNDERBOLT=m +CONFIG_TIFM_CORE=m +CONFIG_TI_CPSW_ALE=m +CONFIG_TPS6105X=m +CONFIG_TPS6507X=m +CONFIG_TRACE_SINK=m +CONFIG_TRANSPARENT_HUGEPAGE=y +CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y +# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set +CONFIG_TRUSTED_KEYS=y +CONFIG_TTY_PRINTK=y +# CONFIG_UBIFS_ATIME_SUPPORT is not set +CONFIG_UIO=m +CONFIG_ULTRIX_PARTITION=y +CONFIG_UNIXWARE_DISKLABEL=y +CONFIG_UNUSED_SYMBOLS=y +CONFIG_UPROBES=y +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_USB_SWITCH_FSA9480=m +CONFIG_USELIB=y +CONFIG_UWB=m +CONFIG_VFIO=m +CONFIG_VFIO_IOMMU_TYPE1=m +# CONFIG_VFIO_NOIOMMU is not set +CONFIG_VFIO_PCI=m +CONFIG_VFIO_VIRQFD=m +CONFIG_VGASTATE=m +CONFIG_VIRTIO_MMIO=y +CONFIG_VITESSE_PHY=m +# CONFIG_VM86 is not set +CONFIG_VME_BUS=y +CONFIG_VMXNET3=m +CONFIG_W1=m +CONFIG_WAN=y +CONFIG_WDTPCI=m +# CONFIG_WLAN_VENDOR_TI is not set +# CONFIG_WQ_WATCHDOG is not set +# CONFIG_X86_INTEL_MID is not set +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_SPEEDSTEP_LIB=m +CONFIG_XEN=y +CONFIG_XEN_BALLOON_MEMORY_HOTPLUG_LIMIT=512 +# CONFIG_XFRM_MIGRATE is not set +CONFIG_XFRM_STATISTICS=y +# CONFIG_XFRM_SUB_POLICY is not set +CONFIG_XILINX_WATCHDOG=m +CONFIG_XILLYBUS=m +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_TEST=m +CONFIG_ZLIB_DEFLATE=y +CONFIG_ZSMALLOC=y --- linux-4.8.0.orig/debian.master/config/amd64/config.flavour.generic +++ linux-4.8.0/debian.master/config/amd64/config.flavour.generic @@ -0,0 +1,9 @@ +# +# Config options for config.flavour.generic automatically generated by splitconfig.pl +# +CONFIG_HZ=250 +# CONFIG_HZ_1000 is not set +CONFIG_HZ_250=y +# CONFIG_IRQ_FORCED_THREADING_DEFAULT is not set +# CONFIG_PREEMPT is not set +CONFIG_PREEMPT_VOLUNTARY=y --- linux-4.8.0.orig/debian.master/config/amd64/config.flavour.lowlatency +++ linux-4.8.0/debian.master/config/amd64/config.flavour.lowlatency @@ -0,0 +1,9 @@ +# +# Config options for config.flavour.lowlatency automatically generated by splitconfig.pl +# +CONFIG_HZ=1000 +CONFIG_HZ_1000=y +# CONFIG_HZ_250 is not set +CONFIG_IRQ_FORCED_THREADING_DEFAULT=y +CONFIG_PREEMPT=y +# CONFIG_PREEMPT_VOLUNTARY is not set --- linux-4.8.0.orig/debian.master/config/annotations +++ linux-4.8.0/debian.master/config/annotations @@ -0,0 +1,10313 @@ +# Menu: HEADER +# FORMAT: 2 +# ARCH: x86 arm powerpc s390 + +# Mark debugging symbols. +# exceptions +CONFIG_DEBUG_FS note +CONFIG_DEBUG_KERNEL note + +# Menu: ROOT +CONFIG_RELOCATABLE policy<{'amd64': 'y', 'i386': 'y', 'powerpc-powerpc64-emb': 'y', 'powerpc-generic': 'y', 'ppc64el': 'y'}> +CONFIG_LIVEPATCH policy<{'amd64': 'y', 's390x': 'n'}> + +# 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_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'}> + +# Menu: Advanced setup >> Architecture: powerpc + +# Menu: Advanced setup >> Prompt for advanced kernel configuration options + +# Menu: Advanced setup >> Prompt for advanced kernel configuration options >> Architecture: powerpc +CONFIG_ADVANCED_OPTIONS policy<{'powerpc-powerpc-e500mc': 'n', 'powerpc-powerpc-smp': 'n'}> +CONFIG_LOWMEM_CAM_NUM policy<{'powerpc-powerpc-e500mc': '3'}> + +# Menu: Architecture: arm +CONFIG_ARM_DMA_IOMMU_ALIGNMENT policy<{'armhf': '8'}> +CONFIG_ARM_PATCH_PHYS_VIRT policy<{'armhf': 'y'}> + +# Menu: Architecture: arm64 +CONFIG_ARM64_VA_BITS policy<{'arm64': '48'}> +CONFIG_ARM64_VA_BITS mark note + +# Menu: Architecture: powerpc +CONFIG_PPC64 policy<{'powerpc-powerpc64-emb': 'y', 'powerpc-generic': 'y', 'powerpc-powerpc-e500mc': 'n', 'powerpc-powerpc-smp': 'n', 'ppc64el': 'y'}> +CONFIG_NR_IRQS policy<{'powerpc': '512', 'ppc64el': '512'}> +CONFIG_SCOM_DEBUGFS policy<{'powerpc-generic': 'y', 'ppc64el': 'y'}> + +# Menu: Architecture: x86 +CONFIG_64BIT policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'n', 'powerpc-powerpc64-emb': 'y', 'powerpc-generic': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Boot options +CONFIG_CMDLINE policy<{'arm64': '"console=ttyAMA0"', 'armhf': '""'}> +CONFIG_KEXEC policy<{'amd64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc-generic': 'y', 'powerpc-powerpc-e500mc': 'y', 'powerpc-powerpc-smp': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRASH_DUMP policy<{'amd64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc-powerpc64-emb': 'y', 'powerpc-generic': 'y', 'powerpc-powerpc-e500mc': 'n', 'powerpc-powerpc-smp': 'n', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_CRASH_DUMP mark note + +# Menu: Boot options >> Architecture: arm +CONFIG_USE_OF policy<{'armhf': 'y'}> +CONFIG_ATAGS policy<{'armhf': 'y'}> +CONFIG_DEPRECATED_PARAM_STRUCT policy<{'armhf': 'n'}> +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 >> Kernel command line type +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: Bus options (PCI etc.) +CONFIG_ISA policy<{'i386': 'y', 'powerpc-powerpc-smp': 'n'}> + +# Menu: Bus options (PCI etc.) >> Architecture: arm + +# Menu: Bus options (PCI etc.) >> Architecture: powerpc +CONFIG_FSL_LBC policy<{'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Bus options (PCI etc.) >> 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'}> + +# Menu: Bus options (PCI etc.) >> Architecture: x86 +CONFIG_ISA_DMA_API policy<{'amd64': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SCx200 policy<{'i386': 'm'}> +CONFIG_SCx200HR_TIMER policy<{'i386': 'm'}> +CONFIG_ALIX policy<{'i386': 'y'}> +CONFIG_NET5501 policy<{'i386': 'y'}> +CONFIG_GEOS policy<{'i386': 'y'}> +CONFIG_X86_SYSFB policy<{'amd64': 'n', 'i386': 'n'}> +# +CONFIG_X86_SYSFB flag + +# Menu: Bus options (PCI etc.) >> EISA support +CONFIG_EISA_VLB_PRIMING policy<{'i386': 'y'}> +CONFIG_EISA_PCI_EISA policy<{'i386': 'y'}> +CONFIG_EISA_VIRTUAL_ROOT policy<{'i386': 'y'}> +CONFIG_EISA_NAMES policy<{'i386': 'y'}> + +# Menu: Bus options (PCI etc.) >> EISA support >> Architecture: x86 +CONFIG_EISA policy<{'i386': 'y'}> + +# Menu: Bus options (PCI etc.) >> PCCard (PCMCIA/CardBus) support +CONFIG_PCCARD policy<{'amd64': 'm', 'armhf': 'n', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'n'}> +CONFIG_CARDBUS policy<{'amd64': 'y', 'i386': 'y', 'powerpc': 'y'}> + +# Menu: Bus options (PCI etc.) >> PCCard (PCMCIA/CardBus) support >> 16-bit PCMCIA support +CONFIG_PCMCIA policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm', 's390x': 'n'}> +CONFIG_PCMCIA_LOAD_CIS policy<{'amd64': 'y', 'i386': 'y', 'powerpc': 'y'}> +CONFIG_PD6729 policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_I82092 policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_I82365 policy<{'i386': 'm'}> +CONFIG_TCIC policy<{'i386': 'm'}> +CONFIG_ELECTRA_CF policy<{'powerpc-generic': 'm'}> + +# Menu: Bus options (PCI etc.) >> PCCard (PCMCIA/CardBus) support >> CardBus yenta-compatible bridge support +CONFIG_YENTA policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_YENTA_O2 policy<{'amd64': 'y', 'i386': 'y', 'powerpc': 'y'}> +CONFIG_YENTA_RICOH policy<{'amd64': 'y', 'i386': 'y', 'powerpc': 'y'}> +CONFIG_YENTA_TI policy<{'amd64': 'y', 'i386': 'y', 'powerpc': 'y'}> +CONFIG_YENTA_ENE_TUNE policy<{'amd64': 'y', 'i386': 'y', 'powerpc': 'y'}> +CONFIG_YENTA_TOSHIBA policy<{'amd64': 'y', 'i386': 'y', 'powerpc': 'y'}> + +# Menu: Bus options (PCI etc.) >> PCI support +CONFIG_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PCI_MSI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PCI_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_PCI_REALLOC_ENABLE_AUTO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PCI_STUB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_XEN_PCIDEV_FRONTEND policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_HT_IRQ policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_PCI_IOV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PCI_PRI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_PCI_PASID policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> + +# Menu: Bus options (PCI etc.) >> PCI support >> Architecture: s390 +CONFIG_PCI_NR_FUNCTIONS policy<{'s390x': '64'}> +CONFIG_PCI_NR_MSI policy<{'s390x': '256'}> + +# Menu: Bus options (PCI etc.) >> PCI support >> Architecture: x86 +CONFIG_PCI_MMCONFIG policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_PCI_CNB20LE_QUIRK policy<{'amd64': 'n', 'i386': 'n'}> + +# Menu: Bus options (PCI etc.) >> PCI support >> PCI Express Port Bus support +CONFIG_PCIEPORTBUS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_HOTPLUG_PCI_PCIE policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'n', 's390x': 'y'}> +CONFIG_PCIEAER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PCIE_ECRC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_PCIEAER_INJECT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_PCIEASPM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PCIEASPM_DEBUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_PCIEASPM_DEBUG note +CONFIG_HOTPLUG_PCI_PCIE mark note +CONFIG_PCIEAER_INJECT flag + +# Menu: Bus options (PCI etc.) >> PCI support >> PCI Express Port Bus support >> Default ASPM policy +CONFIG_PCIEASPM_DEFAULT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PCIEASPM_POWERSAVE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_PCIEASPM_PERFORMANCE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_PCIEASPM_DEFAULT note + +# Menu: Bus options (PCI etc.) >> PCI support >> PCI access mode >> Architecture: x86 +CONFIG_PCI_GOBIOS policy<{'i386': 'n'}> +CONFIG_PCI_GOMMCONFIG policy<{'i386': 'n'}> +CONFIG_PCI_GODIRECT policy<{'i386': 'n'}> +CONFIG_PCI_GOANY policy<{'i386': 'y'}> + +# Menu: Bus options (PCI etc.) >> PCI support >> PCI host controller drivers +CONFIG_PCI_DRA7XX policy<{'armhf': 'y'}> +CONFIG_PCI_MVEBU policy<{'armhf': 'y'}> +CONFIG_PCI_EXYNOS policy<{'armhf': 'y'}> +CONFIG_PCI_IMX6 policy<{'armhf-generic': 'y'}> +CONFIG_PCI_TEGRA policy<{'armhf-generic': 'y'}> +CONFIG_PCI_RCAR_GEN2 policy<{'armhf': 'y'}> +CONFIG_PCI_RCAR_GEN2_PCIE policy<{'armhf': 'y'}> +CONFIG_PCI_HOST_GENERIC policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PCI_XGENE policy<{'arm64': 'y'}> +CONFIG_PCI_XGENE_MSI policy<{'arm64': 'y'}> +CONFIG_PCI_LAYERSCAPE policy<{'armhf': 'n'}> +CONFIG_PCIE_IPROC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PCIE_IPROC_PLATFORM policy<{'arm64': 'm'}> + +# Menu: Bus options (PCI etc.) >> PCI support >> RapidIO support +CONFIG_RAPIDIO policy<{'amd64': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_RAPIDIO_TSI721 policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RAPIDIO_DISC_TIMEOUT policy<{'amd64': '30', 'i386': '30', 'powerpc': '30', 'ppc64el': '30'}> +CONFIG_RAPIDIO_ENABLE_RX_TX_PORTS policy<{'amd64': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_RAPIDIO_DMA_ENGINE policy<{'amd64': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_RAPIDIO_DEBUG policy<{'amd64': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: Bus options (PCI etc.) >> PCI support >> RapidIO support >> Architecture: powerpc +CONFIG_FSL_RIO policy<{'powerpc-powerpc64-emb': 'y', 'powerpc-powerpc-e500mc': 'y'}> + +# Menu: Bus options (PCI etc.) >> PCI support >> RapidIO support >> Enumeration method +CONFIG_RAPIDIO_ENUM_BASIC policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Bus options (PCI etc.) >> PCI support >> RapidIO support >> RapidIO Switch drivers +CONFIG_RAPIDIO_TSI57X policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RAPIDIO_CPS_XX policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RAPIDIO_TSI568 policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RAPIDIO_CPS_GEN2 policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Bus options (PCI etc.) >> PCI support >> Support for PCI Hotplug +CONFIG_HOTPLUG_PCI policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_HOTPLUG_PCI_COMPAQ policy<{'i386': 'm'}> +CONFIG_HOTPLUG_PCI_COMPAQ_NVRAM policy<{'i386': 'y'}> +CONFIG_HOTPLUG_PCI_IBM policy<{'i386': 'm'}> +CONFIG_HOTPLUG_PCI_ACPI policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +CONFIG_HOTPLUG_PCI_ACPI_IBM policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_HOTPLUG_PCI_CPCI policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_HOTPLUG_PCI_CPCI_ZT5550 policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_HOTPLUG_PCI_CPCI_GENERIC policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_HOTPLUG_PCI_SHPC policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_HOTPLUG_PCI_RPA policy<{'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_HOTPLUG_PCI_RPA_DLPAR policy<{'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_HOTPLUG_PCI_S390 policy<{'s390x': 'y'}> +# +CONFIG_HOTPLUG_PCI_SHPC note + +# Menu: Cryptographic API +CONFIG_CRYPTO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_RSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_MANAGER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_USER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_GF128MUL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_NULL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_PCRYPT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CRYPTD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_MCRYPTD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_AUTHENC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_TEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CCM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_GCM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CHACHA20POLY1305 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_SEQIV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_ECHAINIV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CBC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_CTR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CTS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_ECB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_LRW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_PCBC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_XTS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_HMAC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_XCBC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_VMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CRC32C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_CRC32C_INTEL policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_CRYPTO_CRC32 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CRC32_PCLMUL policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_CRYPTO_CRCT10DIF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_CRCT10DIF_PCLMUL policy<{'amd64': 'm'}> +CONFIG_CRYPTO_GHASH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_POLY1305 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_POLY1305_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_MD4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_MD5 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_MD5_PPC policy<{'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CRYPTO_MICHAEL_MIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_RMD128 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_RMD160 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_RMD256 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_RMD320 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_SHA1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': '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<{'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CRYPTO_SHA1_MB policy<{'amd64': 'm'}> +CONFIG_CRYPTO_SHA256 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_SHA512 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_TGR192 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_WP512 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL policy<{'amd64': 'm'}> +CONFIG_CRYPTO_AES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_AES_586 policy<{'i386': 'm'}> +CONFIG_CRYPTO_AES_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_AES_NI_INTEL policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_CRYPTO_ANUBIS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_ARC4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_BLOWFISH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_BLOWFISH_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_CAMELLIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CAST5_AVX_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_CAST6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CAST6_AVX_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_DES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_DES3_EDE_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_FCRYPT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_KHAZAD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_SALSA20 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_SALSA20_586 policy<{'i386': 'm'}> +CONFIG_CRYPTO_SALSA20_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_CHACHA20 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CHACHA20_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_SEED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_SERPENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_SERPENT_SSE2_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_SERPENT_SSE2_586 policy<{'i386': 'm'}> +CONFIG_CRYPTO_SERPENT_AVX_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_SERPENT_AVX2_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_TEA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_TWOFISH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_TWOFISH_586 policy<{'i386': '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': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_ZLIB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_LZO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_842 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_LZ4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_LZ4HC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_ANSI_CPRNG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_JITTERENTROPY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_USER_API_HASH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_USER_API_SKCIPHER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_USER_API_RNG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_USER_API_AEAD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +# +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS flag +CONFIG_CRYPTO_TEST flag +CONFIG_CRYPTO_SHA512 note + +# Menu: Cryptographic API >> Asymmetric (public-key cryptographic) key type +CONFIG_ASYMMETRIC_KEY_TYPE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PUBLIC_KEY_ALGO_RSA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_X509_CERTIFICATE_PARSER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PKCS7_MESSAGE_PARSER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PKCS7_TEST_KEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SIGNED_PE_FILE_VERIFICATION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_ASYMMETRIC_KEY_TYPE note +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE note +CONFIG_PUBLIC_KEY_ALGO_RSA 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"', 'i386': '"certs/signing_key.pem"', 'powerpc': '"certs/signing_key.pem"', 'ppc64el': '"certs/signing_key.pem"', 's390x': '"certs/signing_key.pem"'}> +CONFIG_SYSTEM_TRUSTED_KEYRING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SYSTEM_TRUSTED_KEYS policy<{'amd64': '""', 'arm64': '""', 'armhf': '""', 'i386': '""', 'powerpc': '""', 'ppc64el': '""', 's390x': '""'}> + +# Menu: Cryptographic API >> Hardware crypto devices +CONFIG_CRYPTO_HW policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_DEV_PADLOCK policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_CRYPTO_DEV_PADLOCK_AES policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_CRYPTO_DEV_PADLOCK_SHA policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_CRYPTO_DEV_GEODE policy<{'i386': 'm'}> +CONFIG_ZCRYPT policy<{'s390x': 'm'}> +CONFIG_CRYPTO_SHA1_S390 policy<{'s390x': 'm'}> +CONFIG_CRYPTO_SHA256_S390 policy<{'s390x': 'm'}> +CONFIG_CRYPTO_SHA512_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_DEV_MV_CESA policy<{'armhf': 'm'}> +CONFIG_CRYPTO_DEV_MARVELL_CESA policy<{'armhf': 'm'}> +CONFIG_CRYPTO_DEV_HIFN_795X policy<{'armhf-generic': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_CRYPTO_DEV_HIFN_795X_RNG policy<{'armhf-generic': 'y', 'powerpc-powerpc-smp': 'y'}> +CONFIG_CRYPTO_DEV_FSL_CAAM policy<{'armhf-generic': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_DEBUG policy<{'armhf-generic': 'n', 'powerpc-powerpc64-emb': 'n', 'powerpc-powerpc-e500mc': 'n'}> +CONFIG_CRYPTO_DEV_TALITOS policy<{'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_CRYPTO_DEV_TALITOS2 policy<{'powerpc-powerpc64-emb': 'y', 'powerpc-powerpc-e500mc': 'y'}> +CONFIG_CRYPTO_DEV_OMAP_SHAM policy<{'armhf': 'm'}> +CONFIG_CRYPTO_DEV_OMAP_AES policy<{'armhf': 'm'}> +CONFIG_CRYPTO_DEV_OMAP_DES policy<{'armhf': 'm'}> +CONFIG_CRYPTO_DEV_SAHARA policy<{'armhf-generic': 'm'}> +CONFIG_CRYPTO_DEV_S5P policy<{'armhf': 'm'}> +CONFIG_CRYPTO_DEV_NX policy<{'powerpc-powerpc64-emb': 'y', 'powerpc-generic': 'y', 'ppc64el': 'y'}> +CONFIG_CRYPTO_DEV_NX_ENCRYPT policy<{'powerpc-generic': 'm'}> +CONFIG_CRYPTO_DEV_NX_COMPRESS policy<{'powerpc-powerpc64-emb': 'm', 'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_CRYPTO_DEV_NX_COMPRESS_PSERIES policy<{'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_CRYPTO_DEV_NX_COMPRESS_POWERNV policy<{'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_CRYPTO_DEV_CCP policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +CONFIG_CRYPTO_DEV_CCP_DD policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_CRYPTO_DEV_CCP_CRYPTO policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_CRYPTO_DEV_QAT_DH895xCC policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_CRYPTO_DEV_QAT_DH895xCCVF policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_CRYPTO_DEV_QCE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CRYPTO_DEV_VMX policy<{'powerpc-generic': 'y', 'ppc64el': 'y'}> +CONFIG_CRYPTO_DEV_VMX_ENCRYPT policy<{'powerpc-generic': 'm', 'ppc64el': 'm'}> + +# Menu: Cryptographic API >> Hardware crypto devices >> Freescale CAAM Job Ring driver backend +CONFIG_CRYPTO_DEV_FSL_CAAM_JR policy<{'armhf-generic': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_RINGSIZE policy<{'armhf-generic': '9', 'powerpc-powerpc64-emb': '9', 'powerpc-powerpc-e500mc': '9'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_INTC policy<{'armhf-generic': 'y', 'powerpc-powerpc64-emb': 'y', 'powerpc-powerpc-e500mc': 'y'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_INTC_COUNT_THLD policy<{'armhf-generic': '255', 'powerpc-powerpc64-emb': '255', 'powerpc-powerpc-e500mc': '255'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_INTC_TIME_THLD policy<{'armhf-generic': '2048', 'powerpc-powerpc64-emb': '2048', 'powerpc-powerpc-e500mc': '2048'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API policy<{'armhf-generic': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_AHASH_API policy<{'armhf-generic': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_RNG_API policy<{'armhf-generic': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> + +# Menu: Cryptographic API >> NIST SP800-90A DRBG +CONFIG_CRYPTO_DRBG_MENU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_DRBG_HASH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_DRBG_CTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Device Drivers +CONFIG_TEGRA_AHB policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_RESET_CONTROLLER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_THUNDERBOLT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> + +# Menu: Device Drivers >> ATA/ATAPI/MFM/RLL support (DEPRECATED) +CONFIG_IDE policy<{'amd64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> ATA/ATAPI/MFM/RLL support (DEPRECATED) >> IDE Mode for AMD Alchemy Au1200 + +# Menu: Device Drivers >> Accessibility support +CONFIG_ACCESSIBILITY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_ACCESSIBILITY flag + +# Menu: Device Drivers >> Adaptive Voltage Scaling class support +CONFIG_POWER_AVS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> + +# Menu: Device Drivers >> Android +CONFIG_ANDROID policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Device Drivers >> Auxiliary Display support +CONFIG_AUXDISPLAY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_KS0108 policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KS0108_DELAY policy<{'amd64': '2', 'armhf': '2', 'i386': '2', 'powerpc': '2', 'ppc64el': '2'}> +CONFIG_CFAG12864B policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_CFAG12864B_RATE policy<{'amd64': '20', 'i386': '20'}> + +# Menu: Device Drivers >> Block devices +CONFIG_BLK_DEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BLK_DEV_NULL_BLK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BLK_DEV_FD policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MAC_FLOPPY policy<{'powerpc-powerpc-smp': 'm'}> +CONFIG_BLK_DEV_PCIESSD_MTIP32XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_ZRAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_ZRAM_LZ4_COMPRESS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BLK_CPQ_CISS_DA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_CISS_SCSI_TAPE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BLK_DEV_DAC960 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_BLK_DEV_UMEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_BLK_DEV_LOOP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BLK_DEV_LOOP_MIN_COUNT policy<{'amd64': '8', 'arm64': '8', 'armhf': '8', 'i386': '8', 'powerpc': '8', 'ppc64el': '8', 's390x': '8'}> +CONFIG_BLK_DEV_CRYPTOLOOP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_BLK_DEV_DRBD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DRBD_FAULT_INJECTION policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_BLK_DEV_NBD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BLK_DEV_NVME policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_BLK_DEV_SKD policy<{'amd64': 'm', 'arm64': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-generic': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_BLK_DEV_OSD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BLK_DEV_SX8 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_CDROM_PKTCDVD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_CDROM_PKTCDVD_BUFFERS policy<{'amd64': '8', 'arm64': '8', 'armhf': '8', 'i386': '8', 'powerpc': '8', 'ppc64el': '8'}> +CONFIG_CDROM_PKTCDVD_WCACHE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_ATA_OVER_ETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MG_DISK policy<{'armhf': 'm'}> +CONFIG_MG_DISK_RES policy<{'armhf': '0'}> +CONFIG_BLK_DEV_XPRAM policy<{'s390x': 'n'}> +CONFIG_DCSSBLK policy<{'s390x': 'm'}> +CONFIG_SCM_BLOCK policy<{'s390x': 'm'}> +CONFIG_SCM_BLOCK_CLUSTER_WRITE policy<{'s390x': 'y'}> +CONFIG_XEN_BLKDEV_FRONTEND policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +CONFIG_XEN_BLKDEV_BACKEND policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_VIRTIO_BLK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BLK_DEV_HD policy<{'amd64': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_BLK_DEV_RBD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BLK_DEV_RSXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +# +CONFIG_BLK_DEV_UMEM note +CONFIG_CDROM_PKTCDVD_WCACHE mark +CONFIG_XEN_BLKDEV_FRONTEND note +CONFIG_VIRTIO_BLK note +CONFIG_BLK_DEV_HD note mark + +# Menu: Device Drivers >> Block devices >> Parallel port IDE device support +CONFIG_PARIDE policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_PD policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_PCD policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_PF policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_PT policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_PG policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_ATEN policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_BPCK policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_BPCK6 policy<{'armhf': 'm', 'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_PARIDE_COMM policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_DSTR policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_FIT2 policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_FIT3 policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_EPAT policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_EPATC8 policy<{'amd64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_PARIDE_EPIA policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_FRIQ policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_FRPW policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_KBIC policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_KTTI policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_ON20 policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_ON26 policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Block devices >> RAM block device support +CONFIG_BLK_DEV_RAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BLK_DEV_RAM_COUNT policy<{'amd64': '16', 'arm64': '16', 'armhf': '16', 'i386': '16', 'powerpc': '16', 'ppc64el': '16', 's390x': '16'}> +CONFIG_BLK_DEV_RAM_SIZE policy<{'amd64': '65536', 'arm64': '65536', 'armhf': '65536', 'i386': '65536', 'powerpc': '65536', 'ppc64el': '65536', 's390x': '65536'}> +CONFIG_BLK_DEV_RAM_DAX policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_BLK_DEV_RAM note +CONFIG_BLK_DEV_RAM_SIZE mark note flag + +# 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 >> Broadcom specific AMBA +CONFIG_BCMA_HOST_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Broadcom specific AMBA >> BCMA support +CONFIG_BCMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_BCMA_HOST_SOC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BCMA_DRIVER_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BCMA_DRIVER_GMAC_CMN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BCMA_DRIVER_GPIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BCMA_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Bus devices +CONFIG_ARM_CCI400_PMU policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARM_CCI500_PMU policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARM_CCN policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_BRCMSTB_GISB_ARB policy<{'armhf': 'y'}> +CONFIG_IMX_WEIM policy<{'armhf-generic': 'y'}> +CONFIG_OMAP_INTERCONNECT policy<{'armhf': 'y'}> +CONFIG_OMAP_OCP2SCP policy<{'armhf': 'm'}> +CONFIG_SIMPLE_PM_BUS policy<{'armhf': 'y'}> +CONFIG_VEXPRESS_CONFIG policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> Character devices +CONFIG_DEVMEM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEVKMEM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TTY_PRINTK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_PRINTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LP_CONSOLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_PPDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HVC_CONSOLE policy<{'powerpc-generic': 'y', 'ppc64el': 'y'}> +CONFIG_HVC_OLD_HVSI policy<{'powerpc-generic': 'y', 'ppc64el': 'y'}> +CONFIG_HVC_OPAL policy<{'powerpc-generic': 'y', 'ppc64el': 'y'}> +CONFIG_HVC_RTAS policy<{'powerpc-generic': 'y', 'powerpc-powerpc-smp': 'y', 'ppc64el': 'y'}> +CONFIG_HVC_IUCV policy<{'s390x': 'y'}> +CONFIG_HVC_XEN policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +CONFIG_HVC_XEN_FRONTEND policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +CONFIG_HVC_UDBG policy<{'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HVC_DCC policy<{'armhf': 'n'}> +CONFIG_HVCS policy<{'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_VIRTIO_CONSOLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IBM_BSR policy<{'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_NVRAM policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc-powerpc-e500mc': 'y', 'powerpc-powerpc-smp': 'y'}> +CONFIG_DTLK policy<{'i386': 'm'}> +CONFIG_R3964 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_APPLICOM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SONYPI policy<{'i386': 'm'}> +CONFIG_MWAVE policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SCx200_GPIO policy<{'i386': 'm'}> +CONFIG_PC8736x_GPIO policy<{'i386': 'm'}> +CONFIG_NSC_GPIO policy<{'i386': 'm'}> +CONFIG_RAW_DRIVER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MAX_RAW_DEVS policy<{'amd64': '256', 'arm64': '256', 'armhf': '256', 'i386': '256', 'powerpc': '256', 'ppc64el': '256'}> +CONFIG_HPET policy<{'amd64': 'y', 'arm64': 'n', 'i386': 'y'}> +CONFIG_HPET_MMAP policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_HPET_MMAP_DEFAULT policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_HANGCHECK_TIMER policy<{'amd64': 'm', 'i386': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-generic': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TELCLOCK policy<{'amd64': 'm', 'i386': '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_SCLP_CPI policy<{'s390x': 'm'}> +CONFIG_SCLP_ASYNC policy<{'s390x': 'm'}> +CONFIG_SCLP_ASYNC_ID policy<{'s390x': '"000000000"'}> +CONFIG_HMC_DRV policy<{'s390x': 'm'}> +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_MONREADER policy<{'s390x': 'm'}> +CONFIG_MONWRITER policy<{'s390x': 'm'}> +CONFIG_S390_VMUR policy<{'s390x': 'm'}> +CONFIG_XILLYBUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_XILLYBUS_PCIE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_XILLYBUS_OF policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +# +CONFIG_DEVKMEM mark note +CONFIG_NVRAM mark note + +# Menu: Device Drivers >> Character devices >> Enable TTY +CONFIG_TTY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_VT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_CONSOLE_TRANSLATIONS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_VT_CONSOLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_VT_HW_CONSOLE_BINDING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_UNIX98_PTYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEVPTS_MULTIPLE_INSTANCES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_LEGACY_PTYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_LEGACY_PTY_COUNT policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'i386': '0', 'powerpc': '0', 'ppc64el': '0', 's390x': '0'}> +CONFIG_NOZOMI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_N_GSM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_TRACE_ROUTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TRACE_SINK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_PPC_EPAPR_HV_BYTECHAN policy<{'powerpc': 'n', 'ppc64el': 'n'}> +# +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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_ROCKETPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CYCLADES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CYZ_INTR policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_MOXA_INTELLIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MOXA_SMARTIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SYNCLINK policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SYNCLINKMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SYNCLINK_GT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ISI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_N_HDLC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Character devices >> Hardware Random Number Generator Core support +CONFIG_HW_RANDOM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_HW_RANDOM_TIMERIOMEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_HW_RANDOM_INTEL policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_HW_RANDOM_AMD policy<{'amd64': 'm', 'i386': 'm', 'powerpc-generic': 'm'}> +CONFIG_HW_RANDOM_IPROC_RNG200 policy<{'arm64': 'm'}> +CONFIG_HW_RANDOM_GEODE policy<{'i386': 'm'}> +CONFIG_HW_RANDOM_VIA policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_HW_RANDOM_OMAP policy<{'armhf': 'm'}> +CONFIG_HW_RANDOM_OMAP3_ROM policy<{'armhf-generic': 'm'}> +CONFIG_HW_RANDOM_PASEMI policy<{'powerpc-generic': 'm'}> +CONFIG_HW_RANDOM_VIRTIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_HW_RANDOM_PSERIES policy<{'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_HW_RANDOM_POWERNV policy<{'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_HW_RANDOM_EXYNOS policy<{'armhf': 'm'}> +CONFIG_HW_RANDOM_TPM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_HW_RANDOM_MSM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HW_RANDOM_XGENE policy<{'arm64': 'm'}> +# +CONFIG_HW_RANDOM_ATMEL note + +# Menu: Device Drivers >> Character devices >> IPMI top-level message handler +CONFIG_IPMI_HANDLER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_IPMI_PANIC_EVENT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_IPMI_DEVICE_INTERFACE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IPMI_SI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IPMI_SI_PROBE_DEFAULTS policy<{'amd64': 'y', 'arm64': 'n', 'armhf': 'n', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_IPMI_SSIF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IPMI_POWERNV policy<{'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_IPMI_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IPMI_POWEROFF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Character devices >> PCMCIA character devices +CONFIG_SYNCLINK_CS policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_CARDMAN_4000 policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_CARDMAN_4040 policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_IPWIRELESS policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> + +# Menu: Device Drivers >> Character devices >> 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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SERIAL_MESON policy<{'armhf': 'm'}> +CONFIG_SERIAL_SAMSUNG policy<{'armhf': 'm'}> +CONFIG_SERIAL_TEGRA policy<{'armhf-generic': 'm'}> +CONFIG_SERIAL_MAX3100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SERIAL_MAX310X policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SERIAL_IMX policy<{'armhf-generic': 'y'}> +CONFIG_SERIAL_IMX_CONSOLE policy<{'armhf-generic': 'y'}> +CONFIG_SERIAL_PMACZILOG policy<{'powerpc-generic': 'y', 'powerpc-powerpc-smp': 'y'}> +CONFIG_SERIAL_PMACZILOG_TTYS policy<{'powerpc-generic': 'n', 'powerpc-powerpc-smp': 'n'}> +CONFIG_SERIAL_PMACZILOG_CONSOLE policy<{'powerpc-generic': 'y', 'powerpc-powerpc-smp': 'y'}> +CONFIG_SERIAL_CPM policy<{'powerpc-powerpc-e500mc': 'm'}> +CONFIG_SERIAL_ICOM policy<{'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_SERIAL_JSM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SERIAL_MSM policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_MSM_CONSOLE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_OF_PLATFORM policy<{'arm64': 'y', 'armhf': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SERIAL_OMAP policy<{'armhf': 'y'}> +CONFIG_SERIAL_OMAP_CONSOLE policy<{'armhf': 'y'}> +CONFIG_SERIAL_SCCNXP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_SERIAL_SCCNXP_CONSOLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SERIAL_SC16IS7XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SERIAL_SC16IS7XX_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SERIAL_SC16IS7XX_SPI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SERIAL_TIMBERDALE policy<{'i386': 'm'}> +CONFIG_SERIAL_BCM63XX policy<{'armhf': 'm'}> +CONFIG_SERIAL_ALTERA_JTAGUART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SERIAL_IFX6X60 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_SERIAL_PCH_UART policy<{'i386': 'm'}> +CONFIG_SERIAL_XILINX_PS_UART policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SERIAL_ARC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SERIAL_ARC_NR_PORTS policy<{'amd64': '1', 'arm64': '1', 'armhf': '1', 'i386': '1', 'powerpc': '1', 'ppc64el': '1'}> +CONFIG_SERIAL_RP2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SERIAL_RP2_NR_UARTS policy<{'amd64': '32', 'arm64': '32', 'armhf': '32', 'i386': '32', 'powerpc': '32', 'ppc64el': '32'}> +CONFIG_SERIAL_FSL_LPUART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SERIAL_CONEXANT_DIGICOLOR policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SERIAL_ST_ASC policy<{'armhf': 'm'}> +CONFIG_SERIAL_MEN_Z135 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SERIAL_SPRD policy<{'arm64': 'm'}> +CONFIG_SERIAL_STM32 policy<{'armhf': 'm'}> +CONFIG_SERIAL_UARTLITE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> Character devices >> Serial drivers >> 8250/16550 and compatible serial support +CONFIG_SERIAL_8250 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_SERIAL_8250_DEPRECATED_OPTIONS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_SERIAL_8250_PNP policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +CONFIG_SERIAL_8250_CONSOLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SERIAL_8250_DMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SERIAL_8250_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SERIAL_8250_CS policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_SERIAL_8250_NR_UARTS policy<{'amd64': '48', 'arm64': '48', 'armhf': '48', 'i386': '48', 'powerpc': '48', 'ppc64el': '48'}> +CONFIG_SERIAL_8250_RUNTIME_UARTS policy<{'amd64': '32', 'arm64': '32', 'armhf': '32', 'i386': '32', 'powerpc': '32', 'ppc64el': '32'}> +CONFIG_SERIAL_8250_DW policy<{'amd64': 'm', 'arm64': 'y', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SERIAL_8250_EM policy<{'armhf': 'n'}> +CONFIG_SERIAL_8250_OMAP policy<{'armhf': 'm'}> +CONFIG_SERIAL_8250_FINTEK policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_SERIAL_8250_MT6577 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_8250_UNIPHIER policy<{'armhf': 'm'}> +CONFIG_SERIAL_8250_INGENIC policy<{'arm64': 'y', 'armhf': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +# +CONFIG_SERIAL_8250_DW note + +# Menu: Device Drivers >> Character devices >> 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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SERIAL_8250_SHARE_IRQ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SERIAL_8250_DETECT_IRQ policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_SERIAL_8250_RSA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Character devices >> 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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SERIAL_8250_FOURPORT policy<{'i386': 'm'}> +CONFIG_SERIAL_8250_ACCENT policy<{'i386': 'm'}> +CONFIG_SERIAL_8250_BOCA policy<{'i386': 'm'}> +CONFIG_SERIAL_8250_EXAR_ST16C554 policy<{'i386': 'm'}> +CONFIG_SERIAL_8250_HUB6 policy<{'i386': 'm'}> + +# Menu: Device Drivers >> Character devices >> Serial drivers >> AT91 / AT32 on-chip serial port support + +# Menu: Device Drivers >> Character devices >> Serial drivers >> Altera UART support +CONFIG_SERIAL_ALTERA_UART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SERIAL_ALTERA_UART_MAXPORTS policy<{'amd64': '4', 'arm64': '4', 'armhf': '4', 'i386': '4', 'powerpc': '4', 'ppc64el': '4'}> +CONFIG_SERIAL_ALTERA_UART_BAUDRATE policy<{'amd64': '115200', 'arm64': '115200', 'armhf': '115200', 'i386': '115200', 'powerpc': '115200', 'ppc64el': '115200'}> + +# Menu: Device Drivers >> Character devices >> Serial drivers >> Blackfin SPORT emulate UART + +# Menu: Device Drivers >> Character devices >> Serial drivers >> Blackfin serial port support + +# Menu: Device Drivers >> Character devices >> Serial drivers >> Blackfin serial port support >> UART Mode + +# Menu: Device Drivers >> Character devices >> Serial drivers >> SuperH SCI(F) serial port support +CONFIG_SERIAL_SH_SCI policy<{'armhf': 'm'}> +CONFIG_SERIAL_SH_SCI_NR_UARTS policy<{'armhf': '2'}> +CONFIG_SERIAL_SH_SCI_DMA policy<{'armhf': 'y'}> + +# Menu: Device Drivers >> Character devices >> Serial drivers >> TMPTX39XX/49XX SIO support + +# Menu: Device Drivers >> Character devices >> TPM Hardware Support +CONFIG_TCG_TPM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TCG_TIS policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_TCG_TIS_I2C_ATMEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TCG_TIS_I2C_INFINEON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TCG_TIS_I2C_NUVOTON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TCG_NSC policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_TCG_ATMEL policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TCG_INFINEON policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_TCG_IBMVTPM policy<{'powerpc-generic': 'y', 'ppc64el': 'y'}> +CONFIG_TCG_XEN policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_TCG_CRB policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_TCG_TIS_ST33ZP24 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TCG_TIS_ST33ZP24_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TCG_TIS_ST33ZP24_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +# +CONFIG_TCG_TPM note + +# Menu: Device Drivers >> Clock Source drivers +CONFIG_ARM_ARCH_TIMER_EVTSTREAM policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARM_TIMER_SP804 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SH_TIMER_CMT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'y', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SH_TIMER_MTU2 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'y', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SH_TIMER_TMU policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'y', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_EM_TIMER_STI policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'y', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CLKSRC_VERSATILE policy<{'armhf': 'y'}> +CONFIG_CLKSRC_IMX_GPT policy<{'armhf-generic': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework +CONFIG_COMMON_CLK_WM831X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_COMMON_CLK_VERSATILE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CLK_SP810 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CLK_VEXPRESS_OSC policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_COMMON_CLK_MAX77686 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_COMMON_CLK_MAX77802 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_COMMON_CLK_RK808 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_COMMON_CLK_SI5351 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_COMMON_CLK_SI570 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_COMMON_CLK_CDCE925 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_COMMON_CLK_S2MPS11 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_CLK_TWL6040 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_CLK_QORIQ policy<{'armhf': 'y', 'powerpc-powerpc64-emb': 'y', 'powerpc-powerpc-e500mc': 'y'}> +CONFIG_COMMON_CLK_XGENE policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_PALMAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_COMMON_CLK_PWM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_COMMON_CLK_CDCE706 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_COMMON_CLK_IPROC policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_HI6220 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_STUB_CLK_HI6220 policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Support for Qualcomm's clock controllers +CONFIG_COMMON_CLK_QCOM 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_GCC_806X policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IPQ_LCC_806X 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_8960 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_LCC_8960 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_MMCC_8960 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_GCC_8974 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_MMCC_8974 policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Connector - unified userspace <-> kernelspace linker +CONFIG_CONNECTOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PROC_EVENTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Device Drivers >> DMA Engine support +CONFIG_DMADEVICES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_DMADEVICES_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_AMBA_PL08X policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_DMA_OMAP policy<{'armhf': 'y'}> +CONFIG_FSL_DMA policy<{'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_FSL_EDMA policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IMX_DMA policy<{'armhf-generic': 'm'}> +CONFIG_IMX_SDMA policy<{'armhf-generic': 'm'}> +CONFIG_IDMA64 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INTEL_IOATDMA policy<{'amd64': 'm'}> +CONFIG_INTEL_MIC_X100_DMA policy<{'amd64': 'm'}> +CONFIG_K3_DMA policy<{'armhf': 'm'}> +CONFIG_MV_XOR policy<{'armhf': 'y'}> +CONFIG_MXS_DMA policy<{'armhf-generic': 'y'}> +CONFIG_MX3_IPU policy<{'armhf-generic': 'y'}> +CONFIG_MX3_IPU_IRQS policy<{'armhf-generic': '4'}> +CONFIG_NBPFAXI_DMA policy<{'armhf': 'm'}> +CONFIG_PCH_DMA policy<{'i386': 'm'}> +CONFIG_PL330_DMA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_BAM_DMA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_TEGRA20_APB_DMA policy<{'armhf-generic': 'y'}> +CONFIG_TIMB_DMA policy<{'i386': 'm'}> +CONFIG_TI_CPPI41 policy<{'armhf': 'm'}> +CONFIG_TI_EDMA policy<{'armhf': 'y'}> +CONFIG_XGENE_DMA policy<{'arm64': 'm'}> +CONFIG_ZX_DMA policy<{'armhf': 'm'}> +CONFIG_DW_DMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DW_DMAC_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HSU_DMA_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RCAR_DMAC policy<{'armhf': 'm'}> +CONFIG_RENESAS_USB_DMAC policy<{'armhf': 'm'}> +CONFIG_ASYNC_TX_DMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_DMATEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +# +CONFIG_DMATEST flag + +# Menu: Device Drivers >> DMA Engine support >> Renesas SuperH DMA Engine support +CONFIG_SH_DMAE_BASE policy<{'armhf': 'y'}> +CONFIG_SH_DMAE policy<{'armhf': 'm'}> +CONFIG_SUDMAC policy<{'armhf': 'm'}> +CONFIG_RCAR_HPB_DMAE policy<{'armhf': 'm'}> + +# Menu: Device Drivers >> Dallas's 1-wire support +CONFIG_W1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_W1_CON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_W1_MASTER_DS2490 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_W1_MASTER_DS2482 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_W1_MASTER_MXC policy<{'armhf-generic': 'm'}> +CONFIG_W1_MASTER_DS1WM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_W1_MASTER_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HDQ_MASTER_OMAP policy<{'armhf': 'm'}> + +# Menu: Device Drivers >> Dallas's 1-wire support >> 1-wire Slaves +CONFIG_W1_SLAVE_THERM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_W1_SLAVE_SMEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_W1_SLAVE_DS2408 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_W1_SLAVE_DS2408_READBACK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_W1_SLAVE_DS2413 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_W1_SLAVE_DS2406 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_W1_SLAVE_DS2423 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_W1_SLAVE_DS2431 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_W1_SLAVE_DS2433 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_W1_SLAVE_DS2433_CRC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_W1_SLAVE_DS2760 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_W1_SLAVE_DS2780 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_W1_SLAVE_DS2781 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_W1_SLAVE_DS28E04 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_W1_SLAVE_BQ27000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Device Tree and Open Firmware support +CONFIG_OF policy<{'amd64': 'n', 'arm64': 'y', 'armhf': 'y', 'i386': 'n', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_OF_UNITTEST policy<{'arm64': 'n', 'armhf': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_OF_DYNAMIC policy<{'arm64': 'y', 'armhf': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_OF_OVERLAY policy<{'arm64': 'y', 'armhf': 'y', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_EDAC_LEGACY_SYSFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_EDAC_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_EDAC_DECODE_MCE policy<{'amd64': 'm', 'i386': 'm'}> + +# Menu: Device Drivers >> EDAC (Error Detection And Correction) reporting >> Main Memory EDAC (Error Detection And Correction) reporting +CONFIG_EDAC_MM_EDAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_EDAC_AMD64 policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_EDAC_AMD64_ERROR_INJECTION policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_EDAC_AMD76X policy<{'i386': 'm'}> +CONFIG_EDAC_E7XXX policy<{'i386': 'm'}> +CONFIG_EDAC_E752X policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_EDAC_I82875P policy<{'i386': 'm'}> +CONFIG_EDAC_I82975X policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_EDAC_I3000 policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_EDAC_I3200 policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_EDAC_IE31200 policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_EDAC_X38 policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_EDAC_I5400 policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_EDAC_I7CORE policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_EDAC_I82860 policy<{'i386': 'm'}> +CONFIG_EDAC_R82600 policy<{'i386': 'm'}> +CONFIG_EDAC_I5000 policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_EDAC_I5100 policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_EDAC_I7300 policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_EDAC_SBRIDGE policy<{'amd64': 'm'}> +CONFIG_EDAC_MPC85XX policy<{'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_EDAC_PASEMI policy<{'powerpc-generic': 'm'}> +CONFIG_EDAC_AMD8131 policy<{'powerpc-generic': 'm'}> +CONFIG_EDAC_AMD8111 policy<{'powerpc-generic': 'm'}> +CONFIG_EDAC_CPC925 policy<{'powerpc-powerpc64-emb': 'm', 'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_EDAC_HIGHBANK_MC policy<{'armhf': 'm'}> +CONFIG_EDAC_HIGHBANK_L2 policy<{'armhf': 'm'}> +CONFIG_EDAC_XGENE policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> External Connector Class (extcon) support +CONFIG_EXTCON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_EXTCON_ADC_JACK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_EXTCON_ARIZONA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_EXTCON_AXP288 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_EXTCON_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_EXTCON_MAX14577 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_EXTCON_MAX77693 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_EXTCON_MAX77843 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_EXTCON_MAX8997 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_EXTCON_PALMAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_EXTCON_RT8973A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_EXTCON_SM5502 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_EXTCON_USB_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> FMC support +CONFIG_FMC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FMC_FAKEDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FMC_TRIVIAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FMC_WRITE_EEPROM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FMC_CHARDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Fusion MPT device support +CONFIG_FUSION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_FUSION_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FUSION_FC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FUSION_SAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FUSION_MAX_SGE policy<{'amd64': '128', 'arm64': '128', 'armhf': '128', 'i386': '128', 'powerpc': '128', 'ppc64el': '128'}> +CONFIG_FUSION_CTL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FUSION_LAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FUSION_LOGGING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> GPIO Support +CONFIG_GPIOLIB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_DEBUG_GPIO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_GPIO_SYSFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +# +CONFIG_GPIO_SYSFS note + +# Menu: Device Drivers >> GPIO Support >> I2C GPIO expanders +CONFIG_GPIO_ADP5588 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_ADNP policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_MAX7300 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_MAX732X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_PCA953X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_PCF857X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_SX150X policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> GPIO Support >> MFD GPIO expanders +CONFIG_GPIO_ADP5520 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_ARIZONA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_CRYSTAL_COVE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_CS5535 policy<{'i386': 'm'}> +CONFIG_GPIO_DA9052 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_DA9055 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_DLN2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_JANZ_TTL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_KEMPLD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_LP3943 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_MSIC policy<{'i386': 'y'}> +CONFIG_GPIO_PALMAS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_GPIO_RC5T583 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_GPIO_STMPE policy<{'arm64': 'y', 'armhf': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_GPIO_TC3589X policy<{'arm64': 'y', 'armhf': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_GPIO_TIMBERDALE policy<{'i386': 'y'}> +CONFIG_GPIO_TPS6586X policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_GPIO_TPS65910 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_GPIO_TPS65912 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_TWL4030 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_TWL6040 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_UCB1400 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_WM831X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_WM8350 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_WM8994 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_ALTERA policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_DWAPB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_EM policy<{'armhf': 'n'}> +CONFIG_GPIO_F7188X policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_GPIO_GENERIC_PLATFORM policy<{'amd64': 'm', 'arm64': 'y', 'armhf': 'y', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_GRGPIO policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_ICH policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_GPIO_IT8761E policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_GPIO_LYNXPOINT policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_GPIO_MPC8XXX policy<{'powerpc-powerpc64-emb': 'y', 'powerpc-powerpc-e500mc': 'y'}> +CONFIG_GPIO_MSM_V2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_GPIO_OMAP policy<{'armhf': 'y'}> +CONFIG_GPIO_PL061 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_GPIO_RCAR policy<{'armhf': 'm'}> +CONFIG_GPIO_SCH policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_GPIO_SCH311X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_SYSCON policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_VX855 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_XGENE policy<{'arm64': 'y'}> +CONFIG_GPIO_XGENE_SB policy<{'arm64': 'm'}> +CONFIG_GPIO_XILINX policy<{'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_GPIO_ZEVIO policy<{'armhf': 'y'}> +CONFIG_GPIO_ZYNQ policy<{'arm64': 'm'}> +# +CONFIG_GPIO_EM note + +# Menu: Device Drivers >> GPIO Support >> PCI GPIO expanders +CONFIG_GPIO_AMD8111 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_INTEL_MID policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_GPIO_ML_IOH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_PCH policy<{'i386': 'm'}> +CONFIG_GPIO_RDC321X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> GPIO Support >> SPI GPIO expanders +CONFIG_GPIO_74X164 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_MAX7301 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_MCP23S08 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_MC33880 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_ZX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> GPIO Support >> USB GPIO expanders +CONFIG_GPIO_VIPERBOARD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Generic Driver Options +CONFIG_UEVENT_HELPER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_UEVENT_HELPER_PATH policy<{'amd64': '""', 'arm64': '""', 'armhf': '""', 'i386': '""', 'powerpc': '""', 'ppc64el': '""', 's390x': '""'}> +CONFIG_DEVTMPFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEVTMPFS_MOUNT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_STANDALONE policy<{'amd64': 'n', 'arm64': 'y', 'armhf': 'y', 'i386': 'n', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PREVENT_FIRMWARE_BUILD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ALLOW_DEV_COREDUMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEBUG_DRIVER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_DEVRES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_FENCE_TRACE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +# +CONFIG_DEVTMPFS note note +CONFIG_DEVTMPFS_MOUNT note note +CONFIG_FENCE_TRACE flag + +# Menu: Device Drivers >> Generic Driver Options >> DMA Contiguous Memory Allocator +CONFIG_DMA_CMA policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n'}> +# +CONFIG_DMA_CMA note + +# Menu: Device Drivers >> Generic Driver Options >> DMA Contiguous Memory Allocator >> Selected region size + +# Menu: Device Drivers >> Generic Driver Options >> Userspace firmware loading support +CONFIG_FW_LOADER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FIRMWARE_IN_KERNEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_EXTRA_FIRMWARE policy<{'amd64': '""', 'arm64': '""', 'armhf': '""', 'i386': '""', 'powerpc': '""', 'ppc64el': '""', 's390x': '""'}> +CONFIG_FW_LOADER_USER_HELPER_FALLBACK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_DEVFREQ_GOV_PERFORMANCE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_DEVFREQ_GOV_POWERSAVE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_DEVFREQ_GOV_USERSPACE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ARM_EXYNOS5_BUS_DEVFREQ policy<{'armhf': 'n'}> +CONFIG_ARM_TEGRA_DEVFREQ policy<{'armhf-generic': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_DEVFREQ_EVENT_EXYNOS_PPMU policy<{'armhf': 'n'}> + +# Menu: Device Drivers >> Generic Target Core Mod (TCM) and ConfigFS Infrastructure +CONFIG_TARGET_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCM_IBLOCK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCM_FILEIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCM_PSCSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCM_USER2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LOOPBACK_TARGET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCM_FC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_ISCSI_TARGET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SBP_TARGET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Generic Thermal sysfs driver +CONFIG_THERMAL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_THERMAL_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_THERMAL_OF policy<{'arm64': 'y', 'armhf': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_THERMAL_WRITABLE_TRIPS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_THERMAL_GOV_FAIR_SHARE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_THERMAL_GOV_STEP_WISE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_THERMAL_GOV_BANG_BANG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_THERMAL_GOV_USER_SPACE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_THERMAL_GOV_POWER_ALLOCATOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_CLOCK_THERMAL policy<{'arm64': 'n', 'armhf': 'n', 'powerpc-powerpc64-emb': 'n', 'powerpc-powerpc-e500mc': 'n'}> +CONFIG_THERMAL_EMULATION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_RCAR_THERMAL policy<{'armhf': 'm'}> +CONFIG_DOVE_THERMAL policy<{'armhf': 'm'}> +CONFIG_ARMADA_THERMAL policy<{'armhf': 'y'}> +CONFIG_TEGRA_SOCTHERM policy<{'armhf-generic': 'n'}> +CONFIG_INTEL_POWERCLAMP policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_X86_PKG_TEMP_THERMAL policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_INTEL_SOC_DTS_THERMAL policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_INT340X_THERMAL policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_INTEL_PCH_THERMAL policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_QCOM_SPMI_TEMP_ALARM policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Generic Thermal sysfs driver >> Default Thermal governor +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Generic Thermal sysfs driver >> STMicroelectronics thermal drivers + +# Menu: Device Drivers >> Generic Thermal sysfs driver >> Samsung thermal drivers +CONFIG_EXYNOS_THERMAL policy<{'armhf': 'y'}> + +# Menu: Device Drivers >> Generic Thermal sysfs driver >> Texas Instruments thermal drivers + +# Menu: Device Drivers >> Generic Thermal sysfs driver >> Texas Instruments thermal drivers >> Texas Instruments SoCs temperature sensor driver +CONFIG_TI_SOC_THERMAL policy<{'armhf': 'm'}> +CONFIG_TI_THERMAL policy<{'armhf': 'y'}> +CONFIG_OMAP4_THERMAL policy<{'armhf-generic': 'y'}> +CONFIG_DRA752_THERMAL policy<{'armhf': 'y'}> + +# Menu: Device Drivers >> Generic Thermal sysfs driver >> generic cpu cooling support +CONFIG_CPU_THERMAL policy<{'arm64': 'y', 'armhf': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HISI_THERMAL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IMX_THERMAL policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Generic powercap sysfs driver +CONFIG_POWERCAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_INTEL_RAPL policy<{'amd64': 'm', 'i386': 'm'}> + +# Menu: Device Drivers >> Graphics support +CONFIG_VGA_ARB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_VGA_ARB_MAX_GPUS policy<{'amd64': '16', 'arm64': '16', 'armhf': '16', 'i386': '16', 'powerpc': '16', 'ppc64el': '16'}> +CONFIG_VGA_SWITCHEROO policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_TEGRA_HOST1X policy<{'armhf-generic': 'm'}> +CONFIG_TEGRA_HOST1X_FIREWALL policy<{'armhf-generic': 'y'}> +CONFIG_IMX_IPUV3_CORE policy<{'armhf': 'm'}> +CONFIG_DRM_LOAD_EDID_FIRMWARE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Graphics support >> /dev/agpgart (AGP Support) +CONFIG_AGP policy<{'amd64': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_AGP_ALI policy<{'i386': 'm'}> +CONFIG_AGP_ATI policy<{'i386': 'm'}> +CONFIG_AGP_AMD policy<{'i386': 'y'}> +CONFIG_AGP_AMD64 policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_AGP_INTEL policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_AGP_NVIDIA policy<{'i386': 'y'}> +CONFIG_AGP_SIS policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_AGP_SWORKS policy<{'i386': 'm'}> +CONFIG_AGP_VIA policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_AGP_UNINORTH policy<{'powerpc-generic': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_AGP_EFFICEON policy<{'i386': 'm'}> +# +CONFIG_AGP note flag + +# Menu: Device Drivers >> Graphics support >> Backlight & LCD device support +CONFIG_BACKLIGHT_LCD_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> + +# Menu: Device Drivers >> Graphics support >> Backlight & LCD device support >> Lowlevel Backlight controls +CONFIG_BACKLIGHT_CLASS_DEVICE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BACKLIGHT_GENERIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_LM3533 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_CARILLO_RANCH policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_BACKLIGHT_PWM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_DA903X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_DA9052 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_MAX8925 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_APPLE policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_BACKLIGHT_PM8941_WLED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_SAHARA policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_BACKLIGHT_WM831X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_ADP5520 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_ADP8860 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_ADP8870 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_88PM860X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_PCF50633 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_AAT2870 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_LM3630A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_LM3639 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_LP855X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_LP8788 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_PANDORA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_SKY81452 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_TPS65217 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_AS3711 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_LV5207LP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_BD6107 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LCD_L4F00242T03 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LCD_LMS283GF05 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LCD_LTV350QV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LCD_ILI922X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LCD_ILI9320 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LCD_TDO24M policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LCD_VGG2432A4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LCD_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LCD_S6E63M0 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LCD_LD9040 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LCD_AMS369FG06 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LCD_LMS501KF03 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LCD_HX8357 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Graphics support >> Bootup logo +CONFIG_LOGO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Graphics support >> Console display driver support +CONFIG_VGA_CONSOLE policy<{'amd64': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_VGACON_SOFT_SCROLLBACK policy<{'amd64': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_MDA_CONSOLE policy<{'i386': 'm'}> +CONFIG_DUMMY_CONSOLE_COLUMNS policy<{'amd64': '80', 'arm64': '80', 'i386': '80', 'powerpc': '80', 'ppc64el': '80'}> +CONFIG_DUMMY_CONSOLE_ROWS policy<{'amd64': '25', 'arm64': '25', 'i386': '25', 'powerpc': '25', 'ppc64el': '25'}> +CONFIG_FRAMEBUFFER_CONSOLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_FRAMEBUFFER_CONSOLE_ROTATION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +# +CONFIG_FRAMEBUFFER_CONSOLE mark note + +# 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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_DRM_FBDEV_EMULATION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_DRM_TDFX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_R128 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_RADEON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_RADEON_USERPTR policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_DRM_RADEON_UMS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_DRM_I810 policy<{'amd64-generic': 'm', 'i386-generic': 'm'}> +CONFIG_DRM_I915 policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_DRM_I915_PRELIMINARY_HW_SUPPORT policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_DRM_MGA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_SIS policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_VIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_SAVAGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_VGEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_VMWGFX policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_DRM_VMWGFX_FBCON policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_DRM_UDL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_AST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_MGAG200 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_DRM_CIRRUS_QEMU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_ARMADA policy<{'armhf': 'm'}> +CONFIG_DRM_ATMEL_HLCDC policy<{'armhf': 'm'}> +CONFIG_DRM_RCAR_DU policy<{'armhf': 'm'}> +CONFIG_DRM_RCAR_HDMI policy<{'armhf': 'y'}> +CONFIG_DRM_RCAR_LVDS policy<{'armhf': 'y'}> +CONFIG_DRM_SHMOBILE policy<{'armhf': 'm'}> +CONFIG_DRM_OMAP policy<{'armhf': 'n'}> +CONFIG_DRM_TILCDC policy<{'armhf': 'm'}> +CONFIG_DRM_TILCDC_SLAVE_COMPAT policy<{'armhf': 'y'}> +CONFIG_DRM_QXL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_BOCHS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_DRM_VIRTIO_GPU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_FSL_DCU policy<{'armhf': 'm'}> +CONFIG_DRM_STI policy<{'armhf': 'n'}> +# +CONFIG_DRM_MGAG200 mark note +CONFIG_DRM_BOCHS note +CONFIG_DRM_STI note +CONFIG_DRM_I915_PRELIMINARY_HW_SUPPORT 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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_AMDGPU_CIK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_DRM_AMDGPU_USERPTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HSA_AMD policy<{'amd64': 'm'}> +# +CONFIG_DRM_AMDGPU_CIK note + +# 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_FB_HELPER 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 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_EXYNOS_VIDI policy<{'armhf': 'n'}> +CONFIG_DRM_EXYNOS_G2D policy<{'armhf': 'n'}> +CONFIG_DRM_EXYNOS_MIC policy<{'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 >> Exynos DRM IPP +CONFIG_DRM_EXYNOS_IPP policy<{'armhf': 'n'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> DRM Support for Samsung SoC EXYNOS Series >> Exynos7 DRM DECON +CONFIG_DRM_EXYNOS7_DECON policy<{'armhf': 'n'}> +CONFIG_DRM_EXYNOS_DSI policy<{'armhf': 'y'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> Display Interface Bridges +CONFIG_DRM_NXP_PTN3460 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PARADE_PS8622 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> Display Panels +CONFIG_DRM_PANEL_SIMPLE policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_SAMSUNG_LD9040 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_LG_LG4573 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_SHARP_LQ101R1SX01 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> I2C encoder or helper chips +CONFIG_DRM_I2C_ADV7511 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_I2C_CH7006 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_I2C_SIL164 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_I2C_NXP_TDA998X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> Intel GMA5/600 KMS Framebuffer +CONFIG_DRM_GMA500 policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_DRM_GMA600 policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_DRM_GMA3600 policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_DRM_MEDFIELD policy<{'i386': 'y'}> + +# 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_FBDEV policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_DRM_MSM_REGISTER_LOGGING 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_PLL 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'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> NVIDIA Tegra DRM +CONFIG_DRM_TEGRA policy<{'armhf-generic': 'm'}> +CONFIG_DRM_TEGRA_FBDEV policy<{'armhf-generic': 'y'}> +CONFIG_DRM_TEGRA_DEBUG policy<{'armhf-generic': 'n'}> +CONFIG_DRM_TEGRA_STAGING policy<{'armhf-generic': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NOUVEAU_PLATFORM_DRIVER policy<{'armhf-generic': 'y'}> +CONFIG_NOUVEAU_DEBUG policy<{'amd64': '5', 'arm64': '5', 'armhf': '5', 'i386': '5', 'powerpc': '5', 'ppc64el': '5'}> +CONFIG_NOUVEAU_DEBUG_DEFAULT policy<{'amd64': '3', 'arm64': '3', 'armhf': '3', 'i386': '3', 'powerpc': '3', 'ppc64el': '3'}> +CONFIG_DRM_NOUVEAU_BACKLIGHT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices +CONFIG_FB_SH_MOBILE_MERAM policy<{'armhf': 'm'}> + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Exynos Video driver support +CONFIG_EXYNOS_VIDEO policy<{'armhf': 'y'}> +CONFIG_EXYNOS_MIPI_DSI policy<{'armhf': 'y'}> + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Marvell MMP Display Subsystem support + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> OMAP Display Device Drivers (new device model) +CONFIG_DISPLAY_ENCODER_OPA362 policy<{'armhf': 'm'}> +CONFIG_DISPLAY_ENCODER_TFP410 policy<{'armhf': 'm'}> +CONFIG_DISPLAY_ENCODER_TPD12S015 policy<{'armhf': 'y'}> +CONFIG_DISPLAY_CONNECTOR_DVI policy<{'armhf': 'm'}> +CONFIG_DISPLAY_CONNECTOR_HDMI policy<{'armhf': 'y'}> +CONFIG_DISPLAY_CONNECTOR_ANALOG_TV policy<{'armhf': 'm'}> +CONFIG_DISPLAY_PANEL_DPI policy<{'armhf': 'm'}> +CONFIG_DISPLAY_PANEL_DSI_CM policy<{'armhf': 'm'}> +CONFIG_DISPLAY_PANEL_SONY_ACX565AKM policy<{'armhf': 'm'}> +CONFIG_DISPLAY_PANEL_LGPHILIPS_LB035Q02 policy<{'armhf': 'm'}> +CONFIG_DISPLAY_PANEL_SHARP_LS037V7DW01 policy<{'armhf': 'm'}> +CONFIG_DISPLAY_PANEL_TPO_TD028TTEC1 policy<{'armhf': 'm'}> +CONFIG_DISPLAY_PANEL_TPO_TD043MTEA1 policy<{'armhf': 'm'}> +CONFIG_DISPLAY_PANEL_NEC_NL8048HL11 policy<{'armhf': 'm'}> + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> OMAP2+ Display Subsystem support +CONFIG_OMAP2_DSS policy<{'armhf': 'y'}> +CONFIG_OMAP2_DSS_DEBUG policy<{'armhf': 'n'}> +CONFIG_OMAP2_DSS_DEBUGFS policy<{'armhf': 'n'}> +CONFIG_OMAP2_DSS_DPI policy<{'armhf': 'y'}> +CONFIG_OMAP2_DSS_VENC policy<{'armhf': 'y'}> +CONFIG_OMAP4_DSS_HDMI policy<{'armhf': 'y'}> +CONFIG_OMAP5_DSS_HDMI policy<{'armhf': 'y'}> +CONFIG_OMAP2_DSS_SDI policy<{'armhf': 'y'}> +CONFIG_OMAP2_DSS_DSI policy<{'armhf': 'n'}> +CONFIG_OMAP2_DSS_MIN_FCK_PER_PCK policy<{'armhf': '0'}> +CONFIG_OMAP2_DSS_SLEEP_AFTER_VENC_RESET policy<{'armhf': 'y'}> + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices +CONFIG_FB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_FIRMWARE_EDID policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_FB_MODE_HELPERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_FB_TILEBLITTING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_FB_CIRRUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_PM2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_PM2_FIFO_DISCONNECT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_FB_ARMCLCD policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_FB_IMX policy<{'armhf-generic': 'm'}> +CONFIG_FB_CYBER2000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_CYBER2000_DDC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_FB_ARC policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_FB_OF policy<{'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_FB_CONTROL policy<{'powerpc-powerpc-smp': 'y'}> +CONFIG_FB_PLATINUM policy<{'powerpc-powerpc-smp': 'y'}> +CONFIG_FB_VALKYRIE policy<{'powerpc-powerpc-smp': 'y'}> +CONFIG_FB_CT65550 policy<{'powerpc-powerpc-e500mc': 'y', 'powerpc-powerpc-smp': 'y'}> +CONFIG_FB_ASILIANT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_FB_IMSTT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_FB_VGA16 policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_UVESA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_VESA policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_FB_EFI policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_FB_N411 policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_FB_HGA policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_FB_OPENCORES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_S1D13XXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_I740 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_I810 policy<{'i386': 'm'}> +CONFIG_FB_I810_GTF policy<{'i386': 'n'}> +CONFIG_FB_LE80578 policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_FB_CARILLO_RANCH policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_FB_INTEL policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_FB_INTEL_DEBUG policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_FB_INTEL_I2C policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_FB_ATY128 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'y', 'ppc64el': 'm'}> +CONFIG_FB_ATY128_BACKLIGHT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_FB_S3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_S3_DDC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_FB_SAVAGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_SAVAGE_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_FB_SAVAGE_ACCEL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_FB_SIS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_SIS_300 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_FB_SIS_315 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_FB_VIA policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_FB_VIA_DIRECT_PROCFS policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_FB_VIA_X_COMPATIBILITY policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_FB_NEOMAGIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_KYRO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_3DFX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_3DFX_ACCEL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_FB_3DFX_I2C policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_FB_VOODOO1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'y', 'ppc64el': 'm'}> +CONFIG_FB_VT8623 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TRIDENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_ARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_PM3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_CARMINE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_FSL_DIU policy<{'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_FB_SH_MOBILE_LCDC policy<{'armhf': 'm'}> +CONFIG_FB_SH_MOBILE_HDMI policy<{'armhf': 'm'}> +CONFIG_FB_TMIO policy<{'armhf': 'm'}> +CONFIG_FB_TMIO_ACCELL policy<{'armhf': 'y'}> +CONFIG_FB_S3C policy<{'armhf': 'm'}> +CONFIG_FB_S3C_DEBUG_REGWRITE policy<{'armhf': 'n'}> +CONFIG_FB_SM501 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_SMSCUFX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_UDL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc-powerpc64-emb': 'y', 'powerpc-generic': 'm', 'powerpc-powerpc-e500mc': 'y', 'powerpc-powerpc-smp': 'm', 'ppc64el': 'm'}> +CONFIG_FB_IBM_GXT4500 policy<{'powerpc': 'm', 'ppc64el': 'y'}> +CONFIG_FB_PS3 policy<{'powerpc-generic': 'y'}> +CONFIG_FB_PS3_DEFAULT_SIZE_M policy<{'powerpc-generic': '9'}> +CONFIG_FB_DA8XX policy<{'armhf-generic': 'm'}> +CONFIG_FB_VIRTUAL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_XEN_FBDEV_FRONTEND policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_FB_METRONOME policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_MB862XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_MB862XX_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_FB_MX3 policy<{'armhf-generic': 'y'}> +CONFIG_FB_BROADSHEET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_AUO_K190X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_AUO_K1900 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_AUO_K1901 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_MXS policy<{'armhf-generic': 'm'}> +CONFIG_FB_HYPERV policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_FB_SIMPLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_FB_SSD1307 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_SM712 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +# +CONFIG_FB_ATY128 note +CONFIG_FB_VOODOO1 note +CONFIG_FB_VIRTUAL flag + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> AMD Geode family framebuffer support +CONFIG_FB_GEODE policy<{'i386': 'y'}> +CONFIG_FB_GEODE_LX policy<{'i386': 'm'}> +CONFIG_FB_GEODE_GX policy<{'i386': 'm'}> +CONFIG_FB_GEODE_GX1 policy<{'i386': 'm'}> + +# 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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_ATY_CT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_FB_ATY_GENERIC_LCD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_FB_ATY_GX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_FB_ATY_BACKLIGHT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_RADEON_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_FB_RADEON_BACKLIGHT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_FB_RADEON_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_CARMINE_DRAM_CUSTOM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': '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', 'i386': 'n', 'powerpc': 'n', 'ppc64el': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_FB_MB862XX_LIME policy<{'powerpc': 'n', '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_MATROX_MILLENIUM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_FB_MATROX_MYSTIQUE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_FB_MATROX_G policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_FB_MATROX_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_MATROX_MAVEN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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'}> + +# 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 >> Size of ADV7393 frame buffer memory Single/Double Size + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> Video mode support + +# 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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_NVIDIA_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_FB_NVIDIA_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_FB_NVIDIA_BACKLIGHT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_RIVA_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_FB_RIVA_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_FB_RIVA_BACKLIGHT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> HID support + +# Menu: Device Drivers >> HID support >> HID bus support +CONFIG_HID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_BATTERY_STRENGTH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HIDRAW policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_UHID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_GENERIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> HID support >> HID bus support >> Special HID drivers +CONFIG_HID_A4TECH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_ACRUX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_ACRUX_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HID_APPLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_APPLEIR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_AUREAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_BELKIN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_BETOP_FF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_CHERRY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_CHICONY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_PRODIKEYS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_CP2112 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_CYPRESS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_DRAGONRISE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DRAGONRISE_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HID_EMS_FF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_ELECOM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_ELO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_EZKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_GEMBIRD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_HOLTEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HOLTEK_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HID_GT683R policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_KEYTOUCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_KYE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_UCLOGIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_WALTOP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_GYRATION policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_ICADE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_TWINHAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_KENSINGTON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_LCPOWER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_LENOVO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_MAGICMOUSE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_MICROSOFT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_MONTEREY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_MULTITOUCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_NTRIG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_ORTEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_PANTHERLORD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PANTHERLORD_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HID_PENMOUNT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_PETALYNX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_PLANTRONICS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_PRIMAX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_ROCCAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SAITEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SAMSUNG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SONY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SONY_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HID_SPEEDLINK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_STEELSERIES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SUNPLUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_RMI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_GREENASIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GREENASIA_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HID_HYPERV_MOUSE policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_HID_SMARTJOYPLUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SMARTJOYPLUS_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HID_TIVO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_TOPSEED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_THINGM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_THRUSTMASTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_THRUSTMASTER_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HID_WACOM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_WIIMOTE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_XINMO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_ZEROPLUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ZEROPLUS_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HID_ZYDACRON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SENSOR_HUB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SENSOR_CUSTOM_SENSOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_LOGITECH_DJ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_LOGITECH_HIDPP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LOGITECH_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_LOGIRUMBLEPAD2_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_LOGIG940_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_LOGIWHEELS_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_PICOLCD_FB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HID_PICOLCD_BACKLIGHT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HID_PICOLCD_LCD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HID_PICOLCD_LEDS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HID_PICOLCD_CIR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> HID support >> I2C HID support +CONFIG_I2C_HID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> HID support >> USB HID support +CONFIG_USB_HID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_PID policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_HIDDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_MOUSE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> HSI support +CONFIG_HSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Hardware Monitoring support +CONFIG_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_HWMON_DEBUG_CHIP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_SENSORS_ABITUGURU policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SENSORS_ABITUGURU3 policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SENSORS_AD7314 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_AD7414 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_AD7418 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADM1021 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADM1025 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADM1026 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADM1029 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADM1031 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADM9240 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADT7310 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADT7410 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADT7411 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADT7462 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADT7470 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADT7475 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ASC7621 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_K8TEMP policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SENSORS_K10TEMP policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SENSORS_FAM15H_POWER policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SENSORS_APPLESMC policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SENSORS_ASB100 policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SENSORS_ATXP1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_DS620 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_DS1621 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_DELL_SMM policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SENSORS_DA9052_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_DA9055 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_I5K_AMB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_F71805F policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm'}> +CONFIG_SENSORS_F71882FG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm'}> +CONFIG_SENSORS_F75375S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MC13783_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_FSCHMD policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SENSORS_GL518SM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_GL520SM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_G760A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_G762 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_GPIO_FAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_HIH6130 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_IBMAEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_IBMPEX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_IBMPOWERNV policy<{'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_IIO_HWMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_I5500 policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SENSORS_CORETEMP policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SENSORS_IT87 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm'}> +CONFIG_SENSORS_JC42 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_POWR1220 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LINEAGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LTC2945 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LTC4151 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LTC4215 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LTC4222 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LTC4245 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LTC4260 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LTC4261 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX1111 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX16065 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX1619 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX1668 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX197 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX6639 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX6642 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX6650 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX6697 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_HTU21 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MCP3021 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MENF21BMC_HWMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADCXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM63 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM70 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM73 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM75 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM77 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM78 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM80 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM83 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM85 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM87 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM90 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM92 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM93 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM95234 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM95241 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM95245 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_PC87360 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm'}> +CONFIG_SENSORS_PC87427 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm'}> +CONFIG_SENSORS_NTC_THERMISTOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_NCT6683 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm'}> +CONFIG_SENSORS_NCT6775 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm'}> +CONFIG_SENSORS_NCT7802 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_NCT7904 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_PCF8591 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_PWM_FAN policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_SHT15 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_SHT21 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_SHTC1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_SIS5595 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_DME1737 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm'}> +CONFIG_SENSORS_EMC1403 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_EMC2103 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_EMC6W201 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_SMSC47M1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm'}> +CONFIG_SENSORS_SMSC47M192 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_SMSC47B397 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm'}> +CONFIG_SENSORS_SCH5627 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm'}> +CONFIG_SENSORS_SCH5636 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm'}> +CONFIG_SENSORS_SMM665 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADC128D818 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADS1015 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADS7828 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADS7871 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_AMC6821 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_INA209 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_INA2XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_TC74 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_THMC50 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_TMP102 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_TMP103 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_TMP401 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_TMP421 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_TWL4030_MADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_VEXPRESS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SENSORS_VIA_CPUTEMP policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SENSORS_VIA686A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_VT1211 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm'}> +CONFIG_SENSORS_VT8231 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_W83781D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_W83791D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_W83792D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_W83793 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_W83795 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_W83795_FANCTRL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_SENSORS_W83L785TS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_W83L786NG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_W83627HF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm'}> +CONFIG_SENSORS_W83627EHF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm'}> +CONFIG_SENSORS_WM831X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_WM8350 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ACPI_POWER policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_SENSORS_ATK0110 policy<{'amd64': 'm', 'i386': 'm'}> + +# Menu: Device Drivers >> Hardware Monitoring support >> PMBus support +CONFIG_PMBUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_PMBUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADM1275 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM25066 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LTC2978 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LTC2978_REGULATOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SENSORS_MAX16064 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX20751 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX34440 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX8688 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_TPS40422 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_UCD9000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_UCD9200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ZL6100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Hardware Spinlock drivers +CONFIG_HWSPINLOCK_OMAP policy<{'armhf': 'm'}> +CONFIG_HWSPINLOCK_QCOM policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> I2C support + +# Menu: Device Drivers >> I2C support >> I2C support +CONFIG_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_ACPI_I2C_OPREGION policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +CONFIG_I2C_COMPAT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_I2C_CHARDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_I2C_MUX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_HELPER_AUTO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_I2C_SMBUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_STUB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_SLAVE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'y', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_I2C_SLAVE_EEPROM policy<{'armhf': 'm'}> +CONFIG_I2C_THUNDERX policy<{'arm64': 'y'}> +CONFIG_I2C_DEBUG_CORE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_I2C_DEBUG_ALGO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_I2C_DEBUG_BUS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +# +CONFIG_I2C_CHARDEV note +CONFIG_I2C_THUNDERX note + +# Menu: Device Drivers >> I2C support >> I2C support >> I2C Algorithms +CONFIG_I2C_ALGOBIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_ALGOPCA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> I2C support >> I2C support >> I2C Hardware Bus support +CONFIG_I2C_ALI1535 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_ALI1563 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_ALI15X3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_AMD756 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_AMD756_S4882 policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_I2C_AMD8111 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_HIX5HD2 policy<{'armhf': 'm'}> +CONFIG_I2C_I801 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_ISCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_ISMT policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_I2C_PIIX4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_NFORCE2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_NFORCE2_S4985 policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_I2C_SIS5595 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_SIS630 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_SIS96X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_VIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_VIAPRO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_SCMI policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_I2C_HYDRA policy<{'powerpc-powerpc-smp': 'm'}> +CONFIG_I2C_POWERMAC policy<{'powerpc-generic': 'y', 'powerpc-powerpc-smp': 'y'}> +CONFIG_I2C_AXXIA policy<{'armhf-generic-lpae': 'm'}> +CONFIG_I2C_BCM_IPROC policy<{'arm64': 'm'}> +CONFIG_I2C_CBUS_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_CPM policy<{'powerpc-powerpc-e500mc': 'm'}> +CONFIG_I2C_DESIGNWARE_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_DESIGNWARE_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_EG20T policy<{'i386': 'm'}> +CONFIG_I2C_EMEV2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_I2C_EXYNOS5 policy<{'armhf': 'm'}> +CONFIG_I2C_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_IMX policy<{'armhf-generic': 'y'}> +CONFIG_I2C_KEMPLD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_MESON policy<{'armhf': 'm'}> +CONFIG_I2C_MPC policy<{'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_MT65XX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_MV64XXX policy<{'armhf': 'm'}> +CONFIG_I2C_NOMADIK policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_OCORES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_OMAP policy<{'armhf': 'y'}> +CONFIG_I2C_PASEMI policy<{'powerpc-generic': 'm'}> +CONFIG_I2C_PCA_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_QUP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_RIIC policy<{'armhf': 'm'}> +CONFIG_I2C_RK3X policy<{'arm64': 'm', 'armhf': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_I2C_S3C2410 policy<{'armhf': 'y'}> +CONFIG_I2C_SH_MOBILE policy<{'armhf': 'm'}> +CONFIG_I2C_SIMTEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_TEGRA policy<{'armhf-generic': 'm'}> +CONFIG_I2C_VERSATILE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_XILINX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_RCAR policy<{'armhf': 'm'}> +CONFIG_I2C_DIOLAN_U2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_DLN2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_PARPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_PARPORT_LIGHT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_ROBOTFUZZ_OSIF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_TAOS_EVM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_TINY_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_VIPERBOARD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_PCA_ISA policy<{'i386': 'm'}> +CONFIG_I2C_CROS_EC_TUNNEL policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm'}> +CONFIG_I2C_XGENE_SLIMPRO policy<{'arm64': 'm'}> +CONFIG_SCx200_ACB policy<{'i386': 'm'}> +CONFIG_I2C_OPAL policy<{'powerpc-generic': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> I2C support >> I2C support >> Multiplexer I2C Chip support +CONFIG_I2C_ARB_GPIO_CHALLENGE policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_MUX_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_MUX_PCA9541 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_MUX_PCA954x policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_MUX_PINCTRL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm'}> +CONFIG_I2C_MUX_REG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> IEEE 1394 (FireWire) support +CONFIG_FIREWIRE_NOSY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> + +# Menu: Device Drivers >> IEEE 1394 (FireWire) support >> FireWire driver stack +CONFIG_FIREWIRE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FIREWIRE_OHCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FIREWIRE_SBP2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FIREWIRE_NET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> IOMMU Hardware Support +CONFIG_IOMMU_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_FSL_PAMU policy<{'powerpc-powerpc-e500mc': 'n'}> +CONFIG_AMD_IOMMU policy<{'amd64': 'y'}> +CONFIG_AMD_IOMMU_STATS policy<{'amd64': 'y'}> +CONFIG_AMD_IOMMU_V2 policy<{'amd64': 'm'}> +CONFIG_INTEL_IOMMU policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_INTEL_IOMMU_DEFAULT_ON policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_IRQ_REMAP policy<{'amd64': 'y'}> +CONFIG_OMAP_IOMMU policy<{'armhf': 'y'}> +CONFIG_OMAP_IOMMU_DEBUG policy<{'armhf': 'n'}> +CONFIG_TEGRA_IOMMU_GART policy<{'armhf-generic': 'y'}> +CONFIG_TEGRA_IOMMU_SMMU policy<{'armhf-generic': 'y'}> +CONFIG_EXYNOS_IOMMU policy<{'armhf': 'y'}> +CONFIG_EXYNOS_IOMMU_DEBUG policy<{'armhf': 'n'}> +CONFIG_SHMOBILE_IOMMU policy<{'armhf': 'y'}> +CONFIG_IPMMU_VMSA policy<{'armhf-generic-lpae': 'y'}> +CONFIG_SPAPR_TCE_IOMMU policy<{'powerpc-generic': 'y', 'ppc64el': 'y'}> +CONFIG_ARM_SMMU policy<{'arm64': 'y', 'armhf': 'n'}> +CONFIG_ARM_SMMU_V3 policy<{'arm64': 'y'}> +# +CONFIG_INTEL_IOMMU_DEFAULT_ON note flag + +# Menu: Device Drivers >> IOMMU Hardware Support >> Generic IOMMU Pagetable Support +CONFIG_IOMMU_IO_PGTABLE_LPAE policy<{'arm64': 'y', 'armhf-generic': 'n', 'armhf-generic-lpae': 'y'}> +CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST policy<{'arm64': 'n', 'armhf-generic-lpae': 'n'}> + +# Menu: Device Drivers >> IOMMU Hardware Support >> IPMMU/IPMMUI address space size +CONFIG_SHMOBILE_IOMMU_ADDRSIZE_2048MB policy<{'armhf': 'y'}> +CONFIG_SHMOBILE_IOMMU_ADDRSIZE_1024MB policy<{'armhf': 'n'}> +CONFIG_SHMOBILE_IOMMU_ADDRSIZE_512MB policy<{'armhf': 'n'}> +CONFIG_SHMOBILE_IOMMU_ADDRSIZE_256MB policy<{'armhf': 'n'}> +CONFIG_SHMOBILE_IOMMU_ADDRSIZE_128MB policy<{'armhf': 'n'}> +CONFIG_SHMOBILE_IOMMU_ADDRSIZE_64MB policy<{'armhf': 'n'}> +CONFIG_SHMOBILE_IOMMU_ADDRSIZE_32MB policy<{'armhf': 'n'}> + +# Menu: Device Drivers >> ISDN support +CONFIG_ISDN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HYSDN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HYSDN_CAPI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> ISDN support >> CAPI 2.0 subsystem +CONFIG_ISDN_CAPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAPI_TRACE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ISDN_CAPI_CAPI20 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ISDN_CAPI_MIDDLEWARE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ISDN_CAPI_CAPIDRV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ISDN_CAPI_CAPIDRV_VERBOSE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> ISDN support >> CAPI 2.0 subsystem >> Active AVM cards +CONFIG_CAPI_AVM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ISDN_DRV_AVMB1_B1ISA policy<{'i386': 'm'}> +CONFIG_ISDN_DRV_AVMB1_B1PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ISDN_DRV_AVMB1_B1PCIV4 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ISDN_DRV_AVMB1_T1ISA policy<{'i386': 'm'}> +CONFIG_ISDN_DRV_AVMB1_B1PCMCIA policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_ISDN_DRV_AVMB1_AVM_CS policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_ISDN_DRV_AVMB1_T1PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ISDN_DRV_AVMB1_C4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> ISDN support >> CAPI 2.0 subsystem >> Active Eicon DIVA Server cards +CONFIG_CAPI_EICON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> ISDN support >> CAPI 2.0 subsystem >> Active Eicon DIVA Server cards >> Support Eicon DIVA Server cards +CONFIG_ISDN_DIVAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ISDN_DIVAS_BRIPCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ISDN_DIVAS_PRIPCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ISDN_DIVAS_DIVACAPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ISDN_DIVAS_USERIDI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ISDN_DIVAS_MAINT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> ISDN support >> Modular ISDN driver +CONFIG_MISDN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MISDN_DSP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MISDN_L1OIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MISDN_HFCPCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MISDN_HFCMULTI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MISDN_HFCUSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MISDN_AVMFRITZ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MISDN_SPEEDFAX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MISDN_INFINEON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MISDN_W6692 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MISDN_NETJET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> ISDN support >> Old ISDN4Linux (deprecated) +CONFIG_ISDN_I4L policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ISDN_AUDIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ISDN_TTY_FAX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ISDN_X25 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +# +CONFIG_ISDN_I4L flag + +# Menu: Device Drivers >> ISDN support >> Old ISDN4Linux (deprecated) >> Active cards +CONFIG_ISDN_DRV_ICN policy<{'i386': 'm'}> +CONFIG_ISDN_DRV_PCBIT policy<{'i386': 'm'}> +CONFIG_ISDN_DRV_SC policy<{'i386': 'm'}> +CONFIG_ISDN_DRV_ACT2000 policy<{'i386': 'm'}> + +# Menu: Device Drivers >> ISDN support >> Old ISDN4Linux (deprecated) >> ISDN feature submodules +CONFIG_ISDN_DIVERSION policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> ISDN support >> Old ISDN4Linux (deprecated) >> Passive cards + +# Menu: Device Drivers >> ISDN support >> Old ISDN4Linux (deprecated) >> Passive cards >> HiSax SiemensChipSet driver support +CONFIG_ISDN_DRV_HISAX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HISAX_1TR6 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HISAX_NI1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HISAX_MAX_CARDS policy<{'amd64': '8', 'arm64': '8', 'armhf': '8', 'i386': '8', 'powerpc': '8', 'ppc64el': '8'}> +CONFIG_HISAX_16_0 policy<{'i386': 'y'}> +CONFIG_HISAX_16_3 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HISAX_TELESPCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y'}> +CONFIG_HISAX_S0BOX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HISAX_AVM_A1 policy<{'i386': 'y'}> +CONFIG_HISAX_FRITZPCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc-powerpc-e500mc': 'y', 'powerpc-powerpc-smp': 'y'}> +CONFIG_HISAX_AVM_A1_PCMCIA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HISAX_ELSA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HISAX_IX1MICROR2 policy<{'i386': 'y'}> +CONFIG_HISAX_DIEHLDIVA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HISAX_ASUSCOM policy<{'i386': 'y'}> +CONFIG_HISAX_TELEINT policy<{'i386': 'y'}> +CONFIG_HISAX_HFCS policy<{'i386': 'y'}> +CONFIG_HISAX_SEDLBAUER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HISAX_SPORTSTER policy<{'i386': 'y'}> +CONFIG_HISAX_MIC policy<{'i386': 'y'}> +CONFIG_HISAX_NETJET policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_HISAX_NETJET_U policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_HISAX_NICCY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HISAX_ISURF policy<{'i386': 'y'}> +CONFIG_HISAX_HSTSAPHIR policy<{'i386': 'y'}> +CONFIG_HISAX_BKM_A4T policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HISAX_SCT_QUADRO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HISAX_GAZEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HISAX_HFC_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y'}> +CONFIG_HISAX_W6692 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HISAX_HFC_SX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HISAX_ENTERNOW_PCI policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_HISAX_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_HISAX_SEDLBAUER_CS policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_HISAX_ELSA_CS policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_HISAX_AVM_A1_CS policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_HISAX_TELES_CS policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_HISAX_ST5481 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HISAX_HFCUSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HISAX_HFC4S8S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HISAX_FRITZ_PCIPNP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> ISDN support >> Old ISDN4Linux (deprecated) >> Passive cards >> HiSax SiemensChipSet driver support >> HiSax Support for EURO/DSS1 +CONFIG_HISAX_EURO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_DE_AOC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HISAX_NO_SENDCOMPLETE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_HISAX_NO_LLC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_HISAX_NO_KEYPAD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> ISDN support >> Old ISDN4Linux (deprecated) >> Support synchronous PPP +CONFIG_ISDN_PPP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ISDN_PPP_VJ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ISDN_MPP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_IPPP_FILTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ISDN_PPP_BSDCOMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> ISDN support >> Siemens Gigaset support +CONFIG_ISDN_DRV_GIGASET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GIGASET_CAPI policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_GIGASET_BASE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GIGASET_M105 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GIGASET_M101 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GIGASET_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Industrial I/O support +CONFIG_IIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_IIO_BUFFER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_IIO_BUFFER_CB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_IIO_KFIFO_BUF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_TRIGGER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_IIO_CONSUMERS_PER_TRIGGER policy<{'amd64': '2', 'arm64': '2', 'armhf': '2', 'i386': '2', 'powerpc': '2', 'ppc64el': '2'}> + +# Menu: Device Drivers >> Industrial I/O support >> Accelerometers +CONFIG_BMA180 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BMC150_ACCEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SENSOR_ACCEL_3D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_ST_ACCEL_3AXIS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KXSD9 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MMA8452 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KXCJK1013 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MMA9551 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MMA9553 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_STK8312 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_STK8BA50 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Amplifiers +CONFIG_AD8366 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Analog to digital converters +CONFIG_AD7266 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD7291 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD7298 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD7476 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD7791 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD7793 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD7887 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD7923 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD799X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AXP288_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BERLIN2_ADC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DA9150_GPADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CC10001_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_EXYNOS_ADC policy<{'armhf': 'm'}> +CONFIG_LP8788_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MAX1027 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MAX1363 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MCP320X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MCP3422 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEN_Z188_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NAU7802 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_QCOM_SPMI_IADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_QCOM_SPMI_VADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TI_ADC081C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TI_ADC128S052 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TI_AM335X_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TWL4030_MADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TWL6030_GPADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VF610_ADC policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIPERBOARD_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Digital gyroscope sensors +CONFIG_ADIS16080 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ADIS16130 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ADIS16136 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ADIS16260 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ADXRS450 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BMG160 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SENSOR_GYRO_3D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_ST_GYRO_3AXIS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ITG3200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Digital to analog converters +CONFIG_AD5064 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD5360 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD5380 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD5421 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD5446 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD5449 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD5504 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD5624R_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD5686 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD5755 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD5764 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD5791 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD7303 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_M62332 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MAX517 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MAX5821 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MCP4725 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MCP4922 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SENSOR_IIO_TRIGGER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Humidity sensors +CONFIG_DHT11 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SI7005 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SI7020 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Inclinometer sensors +CONFIG_HID_SENSOR_INCLINOMETER_3D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SENSOR_DEVICE_ROTATION policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Inertial measurement units +CONFIG_ADIS16400 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ADIS16480 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KMX61 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INV_MPU6050_IIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Light sensors +CONFIG_ACPI_ALS policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_ADJD_S311 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AL3320A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_APDS9300 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BH1750 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CM32181 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CM3232 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CM3323 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CM36651 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GP2AP020A00F policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ISL29125 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SENSOR_ALS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SENSOR_PROX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_JSA1212 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RPR0521 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM3533 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LTR501 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_OPT3001 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PA12203001 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_STK3310 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TCS3414 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TCS3472 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_TSL2563 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TSL4531 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VCNL4000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Lightning sensors +CONFIG_AS3935 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Magnetometer sensors +CONFIG_AK8975 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AK09911 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MAG3110 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SENSOR_MAGNETOMETER_3D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MMC35240 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_ST_MAGN_3AXIS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BMC150_MAGN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Pressure sensors +CONFIG_BMP280 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SENSOR_PRESS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MPL115 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MPL3115 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MS5611 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MS5611_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MS5611_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_ST_PRESS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_T5403 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Proximity sensors +CONFIG_SX9500 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_SSP_SENSORHUB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Temperature sensors +CONFIG_MLX90614 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TMP006 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Triggers - standalone +CONFIG_IIO_INTERRUPT_TRIGGER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_SYSFS_TRIGGER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> IndustryPack bus support +CONFIG_IPACK_BUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_BOARD_TPCI200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SERIAL_IPOCTAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> InfiniBand support +CONFIG_INFINIBAND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_USER_MAD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_USER_ACCESS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_ON_DEMAND_PAGING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_INFINIBAND_MTHCA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_MTHCA_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_INFINIBAND_QIB policy<{'amd64': 'm', 'arm64': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-generic': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_INFINIBAND_QIB_DCA policy<{'amd64': 'y'}> +CONFIG_INFINIBAND_CXGB3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INFINIBAND_CXGB3_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_INFINIBAND_CXGB4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MLX4_INFINIBAND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MLX5_INFINIBAND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_NES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_INFINIBAND_NES_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_INFINIBAND_OCRDMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_INFINIBAND_USNIC policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_INFINIBAND_IPOIB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_IPOIB_CM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_INFINIBAND_IPOIB_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_INFINIBAND_SRP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_SRPT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_ISER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_ISERT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_INPUT_LEDS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_FF_MEMLESS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_POLLDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_SPARSEKMAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_MATRIXKMAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_JOYDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_EVDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_INPUT_EVBUG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_APMPOWER policy<{'powerpc-powerpc-smp': 'm'}> + +# 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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_JOYSTICK_ANALOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_A3D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_ADI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_COBRA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_GF2K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_GRIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_GRIP_MP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_GUILLEMOT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_INTERACT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_SIDEWINDER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_TMDC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_IFORCE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_IFORCE_USB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_JOYSTICK_IFORCE_232 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_JOYSTICK_WARRIOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_MAGELLAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_SPACEORB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_SPACEBALL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_STINGER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_TWIDJOY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_ZHENHUA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_DB9 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_GAMECON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_TURBOGRAFX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_AS5011 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_JOYDUMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_XPAD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_XPAD_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_JOYSTICK_XPAD_LEDS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_JOYSTICK_WALKERA0701 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_KEYBOARD_ADP5520 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_ADP5588 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_ADP5589 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_ATKBD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_KEYBOARD_QT1070 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_QT2160 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_LKKBD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_GPIO_POLLED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_TCA6416 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_TCA8418 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_MATRIX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_LM8323 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_LM8333 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_MAX7359 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_MCS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_MPR121 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_SNVS_PWRKEY policy<{'armhf-generic': 'm'}> +CONFIG_KEYBOARD_IMX policy<{'armhf-generic': 'm'}> +CONFIG_KEYBOARD_NEWTON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_TEGRA policy<{'armhf-generic': 'm'}> +CONFIG_KEYBOARD_OPENCORES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_PMIC8XXX policy<{'armhf': 'm'}> +CONFIG_KEYBOARD_SAMSUNG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_KEYBOARD_STOWAWAY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_SUNKBD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_SH_KEYSC policy<{'armhf': 'm'}> +CONFIG_KEYBOARD_STMPE policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_OMAP4 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_TC3589X policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_TWL4030 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_XTKBD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_CROS_EC policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm'}> +CONFIG_KEYBOARD_CAP11XX policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_BCM policy<{'arm64': 'm', 'armhf': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MOUSE_SERIAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MOUSE_APPLETOUCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MOUSE_BCM5974 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MOUSE_CYAPA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MOUSE_ELAN_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MOUSE_ELAN_I2C_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MOUSE_ELAN_I2C_SMBUS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MOUSE_INPORT policy<{'i386': 'n'}> +CONFIG_MOUSE_LOGIBM policy<{'i386': 'm'}> +CONFIG_MOUSE_PC110PAD policy<{'i386': 'm'}> +CONFIG_MOUSE_VSXXXAA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MOUSE_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MOUSE_SYNAPTICS_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MOUSE_SYNAPTICS_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MOUSE_PS2_ALPS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MOUSE_PS2_LOGIPS2PP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MOUSE_PS2_SYNAPTICS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MOUSE_PS2_CYPRESS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MOUSE_PS2_LIFEBOOK policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_MOUSE_PS2_TRACKPOINT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MOUSE_PS2_ELANTECH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MOUSE_PS2_SENTELIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MOUSE_PS2_TOUCHKIT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MOUSE_PS2_FOCALTECH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MOUSE_PS2_VMMOUSE policy<{'amd64': 'y', 'i386': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_INPUT_88PM860X_ONKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_88PM80X_ONKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_AD714X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_AD714X_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_AD714X_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_ARIZONA_HAPTICS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_BMA150 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_E3X0_BUTTON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_PCSPKR policy<{'amd64': 'm', 'i386': 'm', 'powerpc-generic': 'm', 'powerpc-powerpc-smp': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_PM8941_PWRKEY policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INPUT_PM8XXX_VIBRATOR policy<{'armhf': 'm'}> +CONFIG_INPUT_PMIC8XXX_PWRKEY policy<{'armhf': 'm'}> +CONFIG_INPUT_MAX77693_HAPTIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_MAX8925_ONKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_MAX8997_HAPTIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_MC13783_PWRBUTTON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_MMA8450 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_MPU3050 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_APANEL policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_INPUT_GP2A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_GPIO_BEEPER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_GPIO_TILT_POLLED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_WISTRON_BTNS policy<{'i386': 'm'}> +CONFIG_INPUT_ATLAS_BTNS policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_INPUT_ATI_REMOTE2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_KEYSPAN_REMOTE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_KXTJ9 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_KXTJ9_POLLED_MODE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_INPUT_POWERMATE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_YEALINK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_CM109 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_REGULATOR_HAPTIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_RETU_PWRBUTTON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_TPS65218_PWRBUTTON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_AXP20X_PEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_TWL4030_PWRBUTTON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_TWL4030_VIBRA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_TWL6040_VIBRA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_UINPUT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_INPUT_PALMAS_PWRBUTTON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_PCF50633_PMU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_PCF8574 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_PWM_BEEPER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_GPIO_ROTARY_ENCODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_DA9052_ONKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_DA9055_ONKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_DA9063_ONKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_WM831X_ON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_PCAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_ADXL34X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_ADXL34X_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_ADXL34X_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_IMS_PCU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_CMA3000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_CMA3000_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_XEN_KBDDEV_FRONTEND policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_INPUT_IDEAPAD_SLIDEBAR policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_SOC_BUTTON_ARRAY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_DRV260X_HAPTICS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_DRV2665_HAPTICS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_DRV2667_HAPTICS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_INPUT_MOUSEDEV_PSAUX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_INPUT_MOUSEDEV_SCREEN_X policy<{'amd64': '1024', 'arm64': '1024', 'armhf': '1024', 'i386': '1024', 'powerpc': '1024', 'ppc64el': '1024'}> +CONFIG_INPUT_MOUSEDEV_SCREEN_Y policy<{'amd64': '768', 'arm64': '768', 'armhf': '768', 'i386': '768', 'powerpc': '768', 'ppc64el': '768'}> + +# Menu: Device Drivers >> Input device support >> Generic input layer (needed for keyboard, mouse, ...) >> Tablets +CONFIG_INPUT_TABLET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_TABLET_USB_ACECAD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TABLET_USB_AIPTEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TABLET_USB_GTCO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TABLET_USB_HANWANG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TABLET_USB_KBTAB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TABLET_SERIAL_WACOM4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_88PM860X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_ADS7846 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_AD7877 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_AD7879 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_AD7879_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_AD7879_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_AR1021_I2C policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_ATMEL_MXT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_AUO_PIXCIR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_BU21013 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_CY8CTMG110 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_CYTTSP_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_CYTTSP_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_CYTTSP_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_CYTTSP4_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_CYTTSP4_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_CYTTSP4_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_DA9034 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_DA9052 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_DYNAPRO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_HAMPSHIRE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_EETI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_EGALAX policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_FUJITSU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_GOODIX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_ILI210X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_IPROC policy<{'arm64': 'm'}> +CONFIG_TOUCHSCREEN_GUNZE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_ELAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_ELO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_WACOM_W8001 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_WACOM_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_MAX11801 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_MCS5000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_MMS114 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_MTOUCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_IMX6UL_TSC policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_INEXIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_INTEL_MID policy<{'i386': 'm'}> +CONFIG_TOUCHSCREEN_MK712 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_HTCPEN policy<{'i386': 'm'}> +CONFIG_TOUCHSCREEN_PENMOUNT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_EDT_FT5X06 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_TOUCHRIGHT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_TOUCHWIN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_TI_AM335X_TSC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_UCB1400 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_PIXCIR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_WDT87XX_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_WM831X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_MC13783 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_TOUCHIT213 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_TSC_SERIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_TSC2005 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_TSC2007 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_PCAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_ST1232 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_STMPE policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_SUR40 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_SX8654 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_TPS6507X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_ZFORCE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_COLIBRI_VF50 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# 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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_WM9705 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_WM9712 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_WM9713 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_USB_EGALAX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_PANJIT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_3M policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_ITM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_ETURBO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_GUNZE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_DMC_TSC10 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_IRTOUCH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_IDEALTEK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_GOTOP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_JASTEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_ELO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_E2I policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_ZYTRONIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_ETT_TC45USB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_NEXIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_EASYTOUCH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_GAMEPORT_NS558 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GAMEPORT_L4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GAMEPORT_EMU10K1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GAMEPORT_FM801 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_SERIO_I8042 policy<{'amd64': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SERIO_SERPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SERIO_CT82C710 policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SERIO_PARKBD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SERIO_AMBAKMI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SERIO_PCIPS2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SERIO_LIBPS2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SERIO_RAW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SERIO_XILINX_XPS_PS2 policy<{'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SERIO_ALTERA_PS2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SERIO_PS2MULT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SERIO_ARC_PS2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SERIO_APBPS2 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HYPERV_KEYBOARD policy<{'amd64': 'm', 'i386': 'm'}> + +# Menu: Device Drivers >> LED Support +CONFIG_NEW_LEDS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_LEDS_LP55XX_COMMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> LED Support >> LED Class Support +CONFIG_LEDS_CLASS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_LEDS_88PM860X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_BCM6328 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_BCM6358 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_LM3530 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_LM3533 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_LM3642 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_NET48XX policy<{'i386': 'm'}> +CONFIG_LEDS_WRAP policy<{'i386': 'm'}> +CONFIG_LEDS_PCA9532 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_PCA9532_GPIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_LEDS_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_LP3944 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_LP5521 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_LP5523 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_LP5562 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_LP8501 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_LP8788 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_LP8860 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_CLEVO_MAIL policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_LEDS_PCA955X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_PCA963X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_WM831X_STATUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_WM8350 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_DA903X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_DA9052 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_DAC124S085 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_PWM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_REGULATOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_BD2802 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_INTEL_SS4200 policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_LEDS_LT3593 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_ADP5520 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_DELL_NETBOOKS policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_LEDS_MC13783 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_TLC591XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_MAX8997 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_LM355x policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_OT200 policy<{'i386': 'm'}> +CONFIG_LEDS_MENF21BMC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_BLINKM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_POWERNV policy<{'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_SYSCON policy<{'arm64': 'y', 'armhf': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> LED Support >> LED Class Support >> LED Flash Class Support +CONFIG_LEDS_CLASS_FLASH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_AAT1290 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_LEDS_MAX77693 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_KTD2692 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> LED Support >> LED Class Support >> LED Trigger support +CONFIG_LEDS_TRIGGERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_LEDS_TRIGGER_TIMER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_TRIGGER_ONESHOT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_TRIGGER_HEARTBEAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_TRIGGER_BACKLIGHT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_TRIGGER_CPU policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_LEDS_TRIGGER_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_TRIGGER_DEFAULT_ON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_TRIGGER_TRANSIENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_TRIGGER_CAMERA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> MCB support +CONFIG_MCB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MCB_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_MMC_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_MMC_CLKGATE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_MMC_BLOCK policy<{'amd64': 'm', 'arm64': 'y', 'armhf': 'y', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_BLOCK_MINORS policy<{'amd64': '8', 'arm64': '8', 'armhf': '8', 'i386': '8', 'powerpc': '8', 'ppc64el': '8'}> +CONFIG_MMC_BLOCK_BOUNCE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SDIO_UART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_MMC_ARMMMCI policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MMC_QCOM_DML policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_OMAP policy<{'armhf': 'm'}> +CONFIG_MMC_OMAP_HS policy<{'armhf': 'y'}> +CONFIG_MMC_WBSD policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_MXC policy<{'armhf-generic': 'm'}> +CONFIG_MMC_TIFM_SD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_MVSDIO policy<{'armhf': 'm'}> +CONFIG_MMC_SPI policy<{'amd64': 'm', 'arm64': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_SDRICOH_CS policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_MMC_TMIO policy<{'armhf': 'm'}> +CONFIG_MMC_SDHI policy<{'armhf': 'm'}> +CONFIG_MMC_CB710 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_VIA_SDMMC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_SH_MMCIF policy<{'armhf': 'm'}> +CONFIG_MMC_VUB300 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_USHC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_USDHI6ROL0 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_REALTEK_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_REALTEK_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_TOSHIBA_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_MTK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': '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': 'm', 'armhf': 'y', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_SDHCI_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_RICOH_MMC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MMC_SDHCI_ACPI policy<{'amd64': 'm', 'arm64': 'm', 'i386': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_SDHCI_OF_ARASAN policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_SDHCI_OF_AT91 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_SDHCI_OF_ESDHC policy<{'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_SDHCI_OF_HLWD policy<{'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_SDHCI_ESDHC_IMX policy<{'armhf-generic': 'y'}> +CONFIG_MMC_SDHCI_DOVE policy<{'armhf': 'm'}> +CONFIG_MMC_SDHCI_TEGRA policy<{'armhf-generic': 'm'}> +CONFIG_MMC_SDHCI_PXAV3 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_SDHCI_F_SDH30 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_SDHCI_IPROC policy<{'arm64': 'm'}> +CONFIG_MMC_SDHCI_MSM policy<{'arm64': 'm', 'armhf': '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_IDMAC policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MMC_DW_PLTFM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_DW_EXYNOS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_DW_K3 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_DW_PCI policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Macintosh device drivers +CONFIG_MACINTOSH_DRIVERS policy<{'amd64': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_PMAC_SMU policy<{'powerpc-generic': 'y'}> +CONFIG_PMAC_MEDIABAY policy<{'powerpc-powerpc-smp': 'y'}> +CONFIG_MAC_EMUMOUSEBTN policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_THERM_WINDTUNNEL policy<{'powerpc-powerpc-smp': 'm'}> +CONFIG_THERM_ADT746X policy<{'powerpc-powerpc-smp': 'y'}> +CONFIG_PMAC_RACKMETER policy<{'powerpc-generic': 'm', 'powerpc-powerpc-smp': 'm'}> +# +CONFIG_THERM_ADT746X mark note + +# Menu: Device Drivers >> Macintosh device drivers >> Apple Desktop Bus (ADB) support +CONFIG_ADB policy<{'powerpc-powerpc-smp': 'y'}> +CONFIG_ADB_CUDA policy<{'powerpc-powerpc-smp': 'y'}> +CONFIG_ADB_MACIO policy<{'powerpc-powerpc-smp': 'y'}> +CONFIG_INPUT_ADBHID policy<{'powerpc-powerpc-smp': 'y'}> +CONFIG_ANSLCD policy<{'powerpc-powerpc-smp': 'm'}> + +# Menu: Device Drivers >> Macintosh device drivers >> New PowerMac thermal control infrastructure +CONFIG_WINDFARM policy<{'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_WINDFARM_PM81 policy<{'powerpc-generic': 'm'}> +CONFIG_WINDFARM_PM72 policy<{'powerpc-generic': 'm'}> +CONFIG_WINDFARM_RM31 policy<{'powerpc-generic': 'm'}> +CONFIG_WINDFARM_PM91 policy<{'powerpc-generic': 'm'}> +CONFIG_WINDFARM_PM112 policy<{'powerpc-generic': 'm'}> +CONFIG_WINDFARM_PM121 policy<{'powerpc-generic': 'm'}> + +# Menu: Device Drivers >> Macintosh device drivers >> Support for PMU based PowerMacs +CONFIG_ADB_PMU policy<{'powerpc-generic': 'y', 'powerpc-powerpc-smp': 'y'}> +CONFIG_ADB_PMU_LED policy<{'powerpc-generic': 'y', 'powerpc-powerpc-smp': 'y'}> +CONFIG_PMAC_APM_EMU policy<{'powerpc-powerpc-smp': 'm'}> +CONFIG_PMAC_BACKLIGHT policy<{'powerpc-powerpc-smp': 'y'}> +CONFIG_PMAC_BACKLIGHT_LEGACY policy<{'powerpc-powerpc-smp': 'y'}> +CONFIG_SENSORS_AMS policy<{'powerpc-powerpc-smp': 'm'}> +CONFIG_SENSORS_AMS_PMU policy<{'powerpc-powerpc-smp': 'n'}> +CONFIG_SENSORS_AMS_I2C policy<{'powerpc-powerpc-smp': 'n'}> + +# Menu: Device Drivers >> Mailbox Hardware Support +CONFIG_MAILBOX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_ARM_MHU policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PL320_MBOX policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_OMAP2PLUS_MBOX policy<{'armhf': 'm'}> +CONFIG_OMAP_MBOX_KFIFO_SIZE policy<{'armhf': '256'}> +CONFIG_PCC policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +CONFIG_ALTERA_MBOX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Memory Controller drivers +CONFIG_MEMORY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_ARM_PL172_MPMC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_TI_EMIF policy<{'armhf': 'm'}> +CONFIG_OMAP_GPMC_DEBUG policy<{'armhf': 'n'}> +CONFIG_MVEBU_DEVBUS policy<{'armhf': 'y'}> +CONFIG_TEGRA20_MC policy<{'armhf-generic': 'y'}> +CONFIG_FSL_CORENET_CF policy<{'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_TEGRA_MC policy<{'armhf-generic': 'y'}> +CONFIG_TEGRA124_EMC policy<{'armhf-generic': 'y'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support +CONFIG_MTD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MTD_TESTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_MTD_CMDLINE_PARTS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_AFS_PARTS policy<{'armhf': 'm'}> +CONFIG_MTD_OF_PARTS policy<{'arm64': 'm', 'armhf': 'y', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_AR7_PARTS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_BLOCK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_BLOCK_RO policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FTL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NFTL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NFTL_RW policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_INFTL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RFD_FTL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SSFDC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SM_FTL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_OOPS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_SWAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_PARTITIONED_MASTER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_MTD_NAND_ECC_SMC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +# +CONFIG_MTD note +CONFIG_MTD_CMDLINE_PARTS flag +CONFIG_MTD_BLOCK note +CONFIG_MTD_OF_PARTS note + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> Enable UBI - Unsorted block images +CONFIG_MTD_UBI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_UBI_WL_THRESHOLD policy<{'amd64': '4096', 'arm64': '4096', 'armhf': '4096', 'i386': '4096', 'powerpc': '4096', 'ppc64el': '4096'}> +CONFIG_MTD_UBI_BEB_LIMIT policy<{'amd64': '20', 'arm64': '20', 'armhf': '20', 'i386': '20', 'powerpc': '20', 'ppc64el': '20'}> +CONFIG_MTD_UBI_FASTMAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MTD_UBI_GLUEBI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_UBI_BLOCK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> LPDDR & LPDDR2 PCM memory drivers +CONFIG_MTD_LPDDR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_QINFO_PROBE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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_PHYSMAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_PHYSMAP_COMPAT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_MTD_PHYSMAP_OF policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_SCx200_DOCFLASH policy<{'i386': 'm'}> +CONFIG_MTD_AMD76XROM policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_MTD_ICHXROM policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_MTD_ESB2ROM policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_MTD_CK804XROM policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_MTD_SCB2_FLASH policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_MTD_NETtel policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_MTD_L440GX policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_MTD_IMPA7 policy<{'armhf': 'm'}> +CONFIG_MTD_INTEL_VR_NOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_PLATRAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> Mapping drivers for chip access >> Maximum mappable memory available for flash IO + +# 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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MTD_SBC_GXX policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_MTD_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_PCMCIA policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_MTD_PCMCIA_ANONYMOUS policy<{'amd64': 'n', 'i386': 'n', 'powerpc': 'n'}> +CONFIG_MTD_GPIO_ADDR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_LATCH_ADDR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> NAND Device Support +CONFIG_MTD_NAND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_NAND_ECC_BCH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MTD_NAND_DENALI_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_NAND_DENALI_DT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_MTD_NAND_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_NAND_OMAP2 policy<{'armhf': 'y'}> +CONFIG_MTD_NAND_OMAP_BCH policy<{'armhf': 'y'}> +CONFIG_MTD_NAND_RICOH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_NAND_DISKONCHIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADVANCED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_MTD_NAND_DOCG4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_NAND_CAFE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_NAND_CS553X policy<{'i386': 'm'}> +CONFIG_MTD_NAND_PXA3xx policy<{'armhf': 'm'}> +CONFIG_MTD_NAND_PASEMI policy<{'powerpc-generic': 'm'}> +CONFIG_MTD_NAND_TMIO policy<{'armhf': 'm'}> +CONFIG_MTD_NAND_NANDSIM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_NAND_GPMI_NAND policy<{'armhf-generic': 'm'}> +CONFIG_MTD_NAND_BRCMNAND policy<{'armhf': 'm'}> +CONFIG_MTD_NAND_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_NAND_ORION policy<{'armhf': 'm'}> +CONFIG_MTD_NAND_FSL_ELBC policy<{'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_NAND_FSL_IFC policy<{'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_MTD_NAND_FSL_UPM policy<{'powerpc-powerpc-e500mc': 'm'}> +CONFIG_MTD_NAND_MXC policy<{'armhf-generic': 'm'}> +CONFIG_MTD_NAND_SH_FLCTL policy<{'armhf': 'm'}> +CONFIG_MTD_NAND_HISI504 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +# +CONFIG_MTD_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 Device Support >> NAND Flash support for Samsung S3C SoCs + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> OneNAND Device Support +CONFIG_MTD_ONENAND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_ONENAND_VERIFY_WRITE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MTD_ONENAND_GENERIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_ONENAND_OMAP2 policy<{'armhf-generic': 'm'}> +CONFIG_MTD_ONENAND_OTP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_MTD_ONENAND_2X_PROGRAM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +# +CONFIG_MTD_ONENAND_VERIFY_WRITE note +CONFIG_MTD_ONENAND_OTP flag + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> RAM/ROM/Flash chip drivers +CONFIG_MTD_CFI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_JEDECPROBE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_CFI_INTELEXT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_CFI_AMDSTD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_CFI_STAA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_RAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_ROM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_ABSENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'n', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MTD_MAP_BANK_WIDTH_2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MTD_MAP_BANK_WIDTH_4 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MTD_MAP_BANK_WIDTH_8 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_MTD_MAP_BANK_WIDTH_16 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_MTD_MAP_BANK_WIDTH_32 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_MTD_CFI_I1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MTD_CFI_I2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MTD_CFI_I4 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_MTD_CFI_I8 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> RedBoot partition table parsing +CONFIG_MTD_REDBOOT_PARTS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK policy<{'amd64': '-1', 'arm64': '-1', 'armhf': '-1', 'i386': '-1', 'powerpc': '-1', 'ppc64el': '-1'}> +CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_MTD_REDBOOT_PARTS_READONLY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> SPI-NOR device support +CONFIG_MTD_SPI_NOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_SPI_NOR_USE_4K_SECTORS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SPI_FSL_QUADSPI policy<{'armhf-generic': 'm'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> Self-contained MTD device drivers +CONFIG_MTD_PMC551 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_PMC551_BUGFIX policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_MTD_PMC551_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_MTD_DATAFLASH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_DATAFLASH_WRITE_VERIFY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_MTD_DATAFLASH_OTP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MTD_M25P80 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_SST25L policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_SLRAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_PHRAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_MTDRAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTDRAM_TOTAL_SIZE policy<{'amd64': '4096', 'arm64': '4096', 'armhf': '4096', 'i386': '4096', 'powerpc': '4096', 'ppc64el': '4096'}> +CONFIG_MTDRAM_ERASE_SIZE policy<{'amd64': '128', 'arm64': '128', 'armhf': '128', 'i386': '128', 'powerpc': '128', 'ppc64el': '128'}> +CONFIG_MTD_BLOCK2MTD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_POWERNV_FLASH policy<{'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_DOCG3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Microsoft Hyper-V guest support +CONFIG_HYPERV policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_HYPERV_UTILS policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_HYPERV_BALLOON policy<{'amd64': 'm', 'i386': 'm'}> + +# Menu: Device Drivers >> Misc devices +CONFIG_AD525X_DPOT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD525X_DPOT_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD525X_DPOT_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DUMMY_IRQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_IBM_ASM policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_PHANTOM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_INTEL_MID_PTI policy<{'i386': 'm'}> +CONFIG_SGI_IOC4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_TIFM_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_TIFM_7XX1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ICS932S401 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ENCLOSURE_SERVICES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_CS5535_MFGPT policy<{'i386': 'n'}> +CONFIG_HP_ILO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_QCOM_COINCELL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_APDS9802ALS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ISL29003 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ISL29020 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_TSL2550 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_BH1780 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_BH1770 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_APDS990X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HMC6352 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DS1682 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TI_DAC7512 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VMWARE_BALLOON policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_ARM_CHARLCD policy<{'armhf': 'y'}> +CONFIG_BMP085_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BMP085_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PCH_PHUB policy<{'i386': 'm'}> +CONFIG_USB_SWITCH_FSA9480 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LATTICE_ECP3_CONFIG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SRAM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_VEXPRESS_SYSCFG policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CB710_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_CB710_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_SENSORS_LIS3_SPI policy<{'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LIS3_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ALTERA_STAPL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INTEL_MEI policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_INTEL_MEI_ME policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_INTEL_MEI_TXE policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_VMWARE_VMCI policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_INTEL_MIC_BUS policy<{'amd64': 'm'}> +CONFIG_ECHO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_CXL policy<{'powerpc-generic': 'm', 'ppc64el': 'm'}> +# +CONFIG_CS5535_MFGPT note + +# Menu: Device Drivers >> Misc devices >> EEPROM support +CONFIG_EEPROM_AT24 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_EEPROM_AT25 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_EEPROM_LEGACY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_EEPROM_MAX6875 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_EEPROM_93CX6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_EEPROM_93XX46 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Misc devices >> GenWQE PCIe Accelerator +CONFIG_GENWQE policy<{'amd64': 'm', 'arm64': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-generic': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_GENWQE_PLATFORM_ERROR_RECOVERY policy<{'amd64': '0', 'arm64': '0', 'powerpc-powerpc64-emb': '0', 'powerpc-generic': '0', 'ppc64el': '0', 's390x': '0'}> + +# Menu: Device Drivers >> Misc devices >> SCIF Bus Driver +CONFIG_SCIF_BUS policy<{'amd64': 'm'}> +CONFIG_INTEL_MIC_HOST policy<{'amd64': 'm'}> +CONFIG_INTEL_MIC_CARD policy<{'amd64': 'm'}> +CONFIG_SCIF policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Misc devices >> Silicon Labs C2 port support +CONFIG_C2PORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_C2PORT_DURAMAR_2150 policy<{'amd64': 'm', 'i386': 'm'}> + +# Menu: Device Drivers >> Misc devices >> Texas Instruments shared transport line discipline +CONFIG_TI_ST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multifunction device drivers +CONFIG_MFD_CS5535 policy<{'i386': 'm'}> +CONFIG_MFD_AS3711 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_AS3722 policy<{'arm64': 'y', 'armhf': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_PMIC_ADP5520 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_AAT2870_CORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_ATMEL_HLCDC policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_BCM590XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_AXP20X policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_CROS_EC policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm'}> +CONFIG_MFD_CROS_EC_I2C policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm'}> +CONFIG_MFD_CROS_EC_SPI policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm'}> +CONFIG_MFD_ASIC3 policy<{'armhf': 'y'}> +CONFIG_PMIC_DA903X policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_DA9052_SPI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_DA9052_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_DA9055 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_DA9062 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_DA9063 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_DA9150 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_DLN2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_MC13XXX_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_MC13XXX_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_HI6421_PMIC policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HTC_EGPIO policy<{'armhf': 'y'}> +CONFIG_HTC_PASIC3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_HTC_I2CPLD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_INTEL_QUARK_I2C_GPIO policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_LPC_ICH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_LPC_SCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_INTEL_SOC_PMIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_INTEL_LPSS_ACPI policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_MFD_INTEL_LPSS_PCI policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_MFD_INTEL_MSIC policy<{'i386': 'y'}> +CONFIG_MFD_JANZ_CMODIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_KEMPLD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_88PM800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_88PM805 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_88PM860X policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_MAX14577 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_MAX77686 policy<{'arm64': 'y', 'armhf': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_MAX77693 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_MAX77843 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_MAX8907 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_MAX8925 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_MAX8997 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_MAX8998 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_MT6397 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_MENF21BMC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_EZX_PCAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_VIPERBOARD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_RETU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_PCF50633 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PCF50633_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PCF50633_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_UCB1400_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_PM8921_CORE 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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_RTSX_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_RT5033 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_RTSX_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_RC5T583 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_RK808 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_RN5T618 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_SEC_CORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_SI476X_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_SM501 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_SM501_GPIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_SKY81452 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_SMSC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ABX500_CORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_AB3100_CORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_AB3100_OTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_STMPE policy<{'arm64': 'y', 'armhf': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_SYSCON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_MFD_TI_AM335X_TSCADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_LP3943 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_LP8788 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_OMAP_USB_HOST policy<{'armhf': 'y'}> +CONFIG_MFD_PALMAS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_TPS6105X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TPS65010 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TPS6507X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_TPS65090 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_TPS65217 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_TPS65218 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_TPS6586X policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_TPS65910 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_TPS65912 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_TPS65912_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_TPS65912_SPI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_TPS80031 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_TWL4030_CORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_TWL4030_POWER policy<{'armhf': 'y'}> +CONFIG_MFD_TWL4030_AUDIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_TWL6040_CORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_WL1273_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_LM3533 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_TIMBERDALE policy<{'i386': 'm'}> +CONFIG_MFD_TC3589X policy<{'arm64': 'y', 'armhf': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_T7L66XB policy<{'armhf': 'y'}> +CONFIG_MFD_TC6387XB policy<{'armhf': 'y'}> +CONFIG_MFD_TC6393XB policy<{'armhf': 'y'}> +CONFIG_MFD_VX855 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_ARIZONA_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_ARIZONA_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_WM5102 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_WM5110 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_WM8997 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_WM8998 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_WM8400 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_WM831X_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_WM831X_SPI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_WM8350_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_WM8994 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_VEXPRESS_SYSREG policy<{'arm64': 'y', 'armhf': 'y'}> +# +CONFIG_MFD_SM501 note +CONFIG_MFD_TPS65217 mark note + +# 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', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_STMPE_SPI policy<{'arm64': 'y', 'armhf': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Multimedia support +CONFIG_MEDIA_SUPPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MEDIA_ANALOG_TV_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MEDIA_DIGITAL_TV_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MEDIA_RADIO_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MEDIA_SDR_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MEDIA_RC_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MEDIA_CONTROLLER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_V4L2_SUBDEV_API policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_ADV_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_VIDEO_FIXED_MINOR_RANGES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_V4L2_FLASH_LED_CLASS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_NET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_DVB_MAX_ADAPTERS policy<{'amd64': '8', 'arm64': '8', 'armhf': '8', 'i386': '8', 'powerpc': '8', 'ppc64el': '8'}> +CONFIG_DVB_DYNAMIC_MINORS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_RC_MAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SMS_SDIO_DRV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_FIREDTV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CYPRESS_FIRMWARE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SMS_SIANO_RC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SMS_SIANO_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MEDIA_SUBDRV_AUTOSELECT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_IR_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Cameras/video grabbers support +CONFIG_MEDIA_CAMERA_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Multimedia support >> Cameras/video grabbers support >> Media test drivers +CONFIG_V4L_TEST_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_VIVID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_VIM2M policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Cameras/video grabbers support >> Memory-to-memory multimedia devices +CONFIG_V4L_MEM2MEM_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_CODA policy<{'armhf-generic': 'm'}> +CONFIG_VIDEO_MEM2MEM_DEINTERLACE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': '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_SH_VEU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_RENESAS_JPU policy<{'armhf': 'm'}> +CONFIG_VIDEO_RENESAS_VSP1 policy<{'armhf': 'm'}> +CONFIG_VIDEO_TI_VPE policy<{'armhf': 'm'}> +CONFIG_VIDEO_TI_VPE_DEBUG policy<{'armhf': 'n'}> + +# Menu: Device Drivers >> Multimedia support >> Cameras/video grabbers support >> V4L platform devices +CONFIG_V4L_PLATFORM_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_CAFE_CCIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_VIA_CAMERA policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_VIDEO_OMAP2_VOUT policy<{'armhf-generic': 'm'}> +CONFIG_VIDEO_SH_VOU policy<{'armhf': 'm'}> +CONFIG_VIDEO_TIMBERDALE policy<{'i386': 'm'}> +CONFIG_VIDEO_OMAP3 policy<{'armhf-generic': 'm'}> +CONFIG_VIDEO_OMAP3_DEBUG policy<{'armhf-generic': 'n'}> +CONFIG_VIDEO_XILINX policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_XILINX_TPG policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_XILINX_VTC policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Cameras/video grabbers support >> V4L platform devices >> Samsung S5P/EXYNOS4 SoC series Camera Subsystem driver +CONFIG_VIDEO_SAMSUNG_EXYNOS4_IS policy<{'armhf': 'n'}> + +# Menu: Device Drivers >> Multimedia support >> Cameras/video grabbers support >> V4L platform devices >> Samsung TV driver for S5P platform +CONFIG_VIDEO_SAMSUNG_S5P_TV policy<{'armhf': 'y'}> +CONFIG_VIDEO_SAMSUNG_S5P_HDMI policy<{'armhf': 'm'}> +CONFIG_VIDEO_SAMSUNG_S5P_HDMI_DEBUG policy<{'armhf': 'n'}> +CONFIG_VIDEO_SAMSUNG_S5P_HDMIPHY policy<{'armhf': 'm'}> +CONFIG_VIDEO_SAMSUNG_S5P_SII9234 policy<{'armhf': 'm'}> +CONFIG_VIDEO_SAMSUNG_S5P_SDO policy<{'armhf': 'm'}> +CONFIG_VIDEO_SAMSUNG_S5P_MIXER policy<{'armhf': 'm'}> +CONFIG_VIDEO_SAMSUNG_S5P_MIXER_DEBUG policy<{'armhf': 'n'}> + +# Menu: Device Drivers >> Multimedia support >> Cameras/video grabbers support >> V4L platform devices >> SoC camera support +CONFIG_SOC_CAMERA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SOC_CAMERA_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_MX3 policy<{'armhf-generic': 'm'}> +CONFIG_VIDEO_RCAR_VIN policy<{'armhf': 'm'}> +CONFIG_VIDEO_SH_MOBILE_CSI2 policy<{'armhf': 'm'}> +CONFIG_VIDEO_SH_MOBILE_CEU policy<{'armhf': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Customise DVB Frontends +CONFIG_DVB_STB0899 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_STB6100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_STV090x policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_STV6110x policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_M88DS3103 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_DRXK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TDA18271C2DD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_SI2165 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_CX24110 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_CX24123 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_MT312 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_ZL10036 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_ZL10039 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_S5H1420 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_STV0288 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_STB6000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_STV0299 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_STV6110 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_STV0900 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TDA8083 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TDA10086 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TDA8261 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_VES1X93 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TUNER_ITD1000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TUNER_CX24113 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TDA826X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TUA6100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_CX24116 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_CX24117 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_CX24120 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_SI21XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TS2020 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_DS3000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_MB86A16 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TDA10071 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_SP8870 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_SP887X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_CX22700 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_CX22702 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_DRXD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_L64781 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TDA1004X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_NXT6000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_MT352 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_ZL10353 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_DIB3000MB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_DIB3000MC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_DIB7000M policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_DIB7000P policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TDA10048 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_AF9013 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_EC100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_STV0367 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_CXD2820R policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_CXD2841ER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_RTL2830 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_RTL2832 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_RTL2832_SDR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_SI2168 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_VES1820 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TDA10021 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TDA10023 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_STV0297 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_NXT200X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_OR51211 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_OR51132 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_BCM3510 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_LGDT330X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_LGDT3305 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_LGDT3306A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_LG2160 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_S5H1409 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_AU8522_DTV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_AU8522_V4L policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_S5H1411 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_S921 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_DIB8000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_MB86A20S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TC90522 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_PLL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TUNER_DIB0070 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TUNER_DIB0090 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_DRX39XYJ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_LNBH25 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_LNBP21 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_LNBP22 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_ISL6405 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_ISL6421 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_ISL6423 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_A8293 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_SP2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_LGS8GXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_ATBM8830 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TDA665x policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_IX2505V policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_M88RS2000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_AF9033 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_HORUS3A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_ASCOT2E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_DUMMY_FE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +# +CONFIG_DVB_DUMMY_FE note + +# Menu: Device Drivers >> Multimedia support >> Customize TV tuners +CONFIG_MEDIA_TUNER_SIMPLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_TDA8290 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_TDA827X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_TDA18271 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_TDA9887 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_TEA5761 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_TEA5767 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_MSI001 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_MT20XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_MT2060 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_MT2063 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_MT2266 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_MT2131 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_QT1010 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_XC2028 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_XC5000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_XC4000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_MXL5005S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_MXL5007T policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_MC44S803 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_MAX2165 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_TDA18218 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_FC0011 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_FC0012 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_FC0013 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_TDA18212 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_E4000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_FC2580 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_M88RS6000T policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_TUA9001 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_SI2157 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_IT913X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_R820T policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_MXL301RF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_QM1D1C0042 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> DVB platform devices +CONFIG_DVB_PLATFORM_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_DVB_C8SECTPFE policy<{'armhf': 'n'}> +# +CONFIG_DVB_C8SECTPFE flag + +# Menu: Device Drivers >> Multimedia support >> Encoders, decoders, sensors and other helper chips +CONFIG_VIDEO_TVAUDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TDA7432 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TDA9840 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TEA6415C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TEA6420 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_MSP3400 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CS5345 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CS53L32A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_UDA1342 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_WM8775 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_WM8739 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_VP27SMPX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_SONY_BTF_MPX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_SAA6588 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_ADV7180 policy<{'i386': 'm'}> +CONFIG_VIDEO_ADV7604 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_ADV7842 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_BT819 policy<{'amd64': 'm', 'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_VIDEO_BT856 policy<{'amd64': 'm', 'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_VIDEO_BT866 policy<{'amd64': 'm', 'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_VIDEO_KS0127 policy<{'amd64': 'm', 'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_VIDEO_SAA7110 policy<{'amd64': 'm', 'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_VIDEO_SAA711X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TVP5150 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TW2804 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TW9903 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TW9906 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_VPX3220 policy<{'amd64': 'm', 'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_VIDEO_SAA717X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CX25840 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_SAA7127 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_SAA7185 policy<{'amd64': 'm', 'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_VIDEO_ADV7170 policy<{'amd64': 'm', 'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_VIDEO_ADV7175 policy<{'amd64': 'm', 'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_VIDEO_ADV7511 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OV7640 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OV7670 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_MT9V011 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_UPD64031A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_UPD64083 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_SAA6752HS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_M52790 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media PCI Adapters +CONFIG_MEDIA_PCI_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_MEYE policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_VIDEO_SOLO6X10 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TW68 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_ZORAN policy<{'amd64': 'm', 'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_VIDEO_ZORAN_DC30 policy<{'amd64': 'm', 'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_VIDEO_IVTV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_IVTV_ALSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_FB_IVTV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_HEXIUM_GEMINI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_HEXIUM_ORION policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_MXB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_DT3155 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CX18 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CX18_ALSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CX23885 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_ALTERA_CI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CX25821 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CX25821_ALSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_BT848 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_BT8XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_SAA7164 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_COBALT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_AV7110 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_AV7110_OSD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_DVB_B2C2_FLEXCOP_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_DVB_PLUTO2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_DM1105 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_PT1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_PT3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MANTIS_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_MANTIS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_HOPPER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_NGENE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_DDBRIDGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_SMIPCIE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_NETUP_UNIDVB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media PCI Adapters >> Conexant 2388x (bt878 successor) support +CONFIG_VIDEO_CX88 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CX88_ALSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CX88_BLACKBIRD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CX88_DVB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CX88_ENABLE_VP3054 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Multimedia support >> Media PCI Adapters >> Philips SAA7134 support +CONFIG_VIDEO_SAA7134 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_SAA7134_ALSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_SAA7134_RC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_SAA7134_DVB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_SAA7134_GO7007 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media PCI Adapters >> SAA7146 DVB cards (aka Budget, Nova-PCI) +CONFIG_DVB_BUDGET_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_BUDGET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_BUDGET_CI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_BUDGET_AV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_BUDGET_PATCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media PCI Adapters >> Zoran ZR36060 +CONFIG_VIDEO_ZORAN_ZR36060 policy<{'amd64': 'm', 'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_VIDEO_ZORAN_BUZ policy<{'amd64': 'm', 'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_VIDEO_ZORAN_DC10 policy<{'amd64': 'm', 'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_VIDEO_ZORAN_LML33 policy<{'amd64': 'm', 'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_VIDEO_ZORAN_LML33R10 policy<{'amd64': 'm', 'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_VIDEO_ZORAN_AVS6EYES policy<{'amd64': 'm', 'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media USB Adapters +CONFIG_MEDIA_USB_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_VIDEO_CLASS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_PWC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_PWC_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_USB_PWC_INPUT_EVDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_CPIA2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_ZR364XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_STKWEBCAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_S2255 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_USBTV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_PVRUSB2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_PVRUSB2_SYSFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_PVRUSB2_DVB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_PVRUSB2_DEBUGIFC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_VIDEO_HDPVR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_USBVISION policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_STK1160_COMMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_STK1160_AC97 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_GO7007 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_GO7007_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_GO7007_LOADER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_GO7007_USB_S2250_BOARD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_AU0828 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_AU0828_V4L2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_AU0828_RC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_TM6000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TM6000_ALSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TM6000_DVB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TTUSB_BUDGET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TTUSB_DEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SMS_USB_DRV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_B2C2_FLEXCOP_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_DVB_AS102 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_AIRSPY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_HACKRF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_MSI2500 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media USB Adapters >> Conexant cx231xx USB video capture support +CONFIG_VIDEO_CX231XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CX231XX_RC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_CX231XX_ALSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CX231XX_DVB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media USB Adapters >> Empia EM28xx USB devices support +CONFIG_VIDEO_EM28XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_EM28XX_V4L2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_EM28XX_ALSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_EM28XX_DVB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_EM28XX_RC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media USB Adapters >> GSPCA based webcams +CONFIG_USB_GSPCA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_M5602 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_STV06XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GL860 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_BENQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_CONEX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_CPIA1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_DTCS033 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_ETOMS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_FINEPIX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_JEILINJ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_JL2005BCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_KINECT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_KONICA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_MARS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_MR97310A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_NW80X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_OV519 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_OV534 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_OV534_9 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_PAC207 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_PAC7302 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_PAC7311 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SE401 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SN9C2028 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SN9C20X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SONIXB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SONIXJ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SPCA500 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SPCA501 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SPCA505 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SPCA506 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SPCA508 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SPCA561 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SPCA1528 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SQ905 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SQ905C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SQ930X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_STK014 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_STK1135 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_STV0680 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SUNPLUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_T613 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_TOPRO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_TOUPTEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_TV8532 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_VC032X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_VICAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_XIRLINK_CIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_ZC3XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media USB Adapters >> Support for various USB DVB devices +CONFIG_DVB_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_DVB_USB_A800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_DIBUSB_MB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_DIBUSB_MB_FAULTY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_DVB_USB_DIBUSB_MC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_DIB0700 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_UMT_010 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_CXUSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_M920X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_DIGITV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_VP7045 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_VP702X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_GP8PSK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_NOVA_T_USB2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_TTUSB2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_DTT200U policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_OPERA1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_AF9005 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_AF9005_REMOTE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_PCTV452E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_DW2102 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_CINERGY_T2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_DTV5100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_FRIIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_AZ6027 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_TECHNISAT_USB2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media USB Adapters >> Support for various USB DVB devices v2 +CONFIG_DVB_USB_V2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_AF9015 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_AF9035 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_ANYSEE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_AU6610 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_AZ6007 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_CE6230 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_EC168 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_GL861 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_LME2510 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_MXL111SF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_RTL28XXU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_DVBSKY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Radio Adapters +CONFIG_RADIO_ADAPTERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_RADIO_SI470X policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_SI470X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_SI470X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RADIO_SI476X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_MR800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_DSBR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RADIO_MAXIRADIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RADIO_SHARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RADIO_SHARK2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_KEENE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_RAREMONO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_MA901 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RADIO_TEA5764 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RADIO_SAA7706H policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RADIO_TEF6862 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RADIO_TIMBERDALE policy<{'i386': 'm'}> +CONFIG_RADIO_WL1273 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Radio Adapters >> ISA radio devices +CONFIG_V4L_RADIO_ISA_DRIVERS policy<{'i386': 'y'}> +CONFIG_RADIO_CADET policy<{'i386': 'm'}> +CONFIG_RADIO_RTRACK policy<{'i386': 'm'}> +CONFIG_RADIO_RTRACK2 policy<{'i386': 'm'}> +CONFIG_RADIO_AZTECH policy<{'i386': 'm'}> +CONFIG_RADIO_GEMTEK policy<{'i386': 'm'}> +CONFIG_RADIO_MIROPCM20 policy<{'i386': 'm'}> +CONFIG_RADIO_SF16FMI policy<{'i386': 'm'}> +CONFIG_RADIO_SF16FMR2 policy<{'i386': 'm'}> +CONFIG_RADIO_TERRATEC policy<{'i386': 'm'}> +CONFIG_RADIO_TRUST policy<{'i386': 'm'}> +CONFIG_RADIO_TYPHOON policy<{'i386': 'm'}> +CONFIG_RADIO_ZOLTRIX policy<{'i386': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Radio Adapters >> Silicon Labs Si4713 FM Radio with RDS Transmitter support +CONFIG_RADIO_SI4713 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SI4713 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PLATFORM_SI4713 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_SI4713 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Radio Adapters >> Texas Instruments WL128x FM driver (ST based) +CONFIG_RADIO_WL128X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Remote Controller devices +CONFIG_RC_DEVICES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_RC_ATI_REMOTE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IR_ENE policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_IR_HIX5HD2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IR_IMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IR_MCEUSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IR_ITE_CIR policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_IR_FINTEK policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_IR_MESON policy<{'armhf': 'm'}> +CONFIG_IR_NUVOTON policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_IR_REDRAT3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IR_STREAMZAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IR_WINBOND_CIR policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_IR_IGORPLUGUSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IR_IGUANA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IR_TTUSBIR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RC_LOOPBACK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IR_GPIO_CIR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Remote Controller devices >> Hardware decoder + +# Menu: Device Drivers >> Multimedia support >> Remote controller decoders +CONFIG_RC_DECODERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_LIRC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IR_LIRC_CODEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IR_NEC_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IR_RC5_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IR_RC6_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IR_JVC_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IR_SONY_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IR_SANYO_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IR_SHARP_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IR_MCE_KBD_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IR_XMP_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Sensors used on soc_camera driver +CONFIG_SOC_CAMERA_IMX074 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SOC_CAMERA_MT9M001 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SOC_CAMERA_MT9M111 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SOC_CAMERA_MT9T031 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SOC_CAMERA_MT9T112 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SOC_CAMERA_MT9V022 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SOC_CAMERA_OV2640 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SOC_CAMERA_OV5642 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SOC_CAMERA_OV6650 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SOC_CAMERA_OV772X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SOC_CAMERA_OV9640 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SOC_CAMERA_OV9740 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SOC_CAMERA_RJ54N1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SOC_CAMERA_TW9910 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multiple devices driver support (RAID and LVM) +CONFIG_MD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BCACHE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BCACHE_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_BCACHE_CLOSURES_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DM_DEBUG_BLOCK_STACK_TRACING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Device Drivers >> Multiple devices driver support (RAID and LVM) >> Device mapper support +CONFIG_BLK_DEV_DM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DM_MQ_DEFAULT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'y'}> +CONFIG_DM_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'y'}> +CONFIG_DM_CRYPT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_SNAPSHOT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_THIN_PROVISIONING policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_ERA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_MIRROR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_LOG_USERSPACE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_RAID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_ZERO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_MULTIPATH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_MULTIPATH_QL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_MULTIPATH_ST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_DELAY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_UEVENT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DM_FLAKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_VERITY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_SWITCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_LOG_WRITES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +# +CONFIG_BLK_DEV_DM mark note + +# Menu: Device Drivers >> Multiple devices driver support (RAID and LVM) >> Device mapper support >> Cache target (EXPERIMENTAL) +CONFIG_DM_CACHE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_CACHE_MQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_CACHE_SMQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_CACHE_CLEANER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MD_AUTODETECT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MD_LINEAR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MD_RAID0 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MD_RAID1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MD_RAID10 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MD_RAID456 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MD_MULTIPATH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'y'}> +CONFIG_MD_FAULTY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MD_CLUSTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> NVDIMM (Non-Volatile Memory Device) Support +CONFIG_LIBNVDIMM policy<{'amd64': 'y', 'arm64': 'y', 'armhf-generic-lpae': 'y', 'i386': 'y', 'powerpc-powerpc64-emb': 'y', 'powerpc-generic': 'y', 'powerpc-powerpc-e500mc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_BLK_DEV_PMEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm', 'i386': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-generic': 'm', 'powerpc-powerpc-e500mc': 'm', 'ppc64el': 'm'}> +CONFIG_ND_BLK policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm', 'i386': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-generic': 'm', 'powerpc-powerpc-e500mc': 'm', 'ppc64el': 'm'}> +CONFIG_BTT policy<{'amd64': 'y', 'arm64': 'y', 'armhf-generic-lpae': 'y', 'i386': 'y', 'powerpc-powerpc64-emb': 'y', 'powerpc-generic': 'y', 'powerpc-powerpc-e500mc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> NVMEM Support +CONFIG_NVMEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_QCOM_QFPROM policy<{'arm64': 'm', 'armhf': 'm'}> +# +CONFIG_NVMEM flag note + +# Menu: Device Drivers >> Network device support +CONFIG_NETDEVICES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CAIF_TTY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAIF_SPI_SLAVE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAIF_SPI_SYNC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_CAIF_HSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FDDI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_DEFXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DEFXX_MMIO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_SKFP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HIPPI policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_NET_SB1000 policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_MICREL_KS8995MA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PLIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_XEN_NETDEV_FRONTEND policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +CONFIG_XEN_NETDEV_BACKEND policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_VMXNET3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FUJITSU_ES policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_HYPERV_NET policy<{'amd64': 'm', 'i386': 'm'}> +# +CONFIG_HIPPI note +CONFIG_XEN_NETDEV_FRONTEND note +CONFIG_DEFXX_MMIO flag + +# Menu: Device Drivers >> Network device support >> ARCnet support +CONFIG_ARCNET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_ARCNET_1201 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ARCNET_1051 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ARCNET_RAW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ARCNET_CAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ARCNET_COM90xx policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ARCNET_COM90xxIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ARCNET_RIM_I policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ARCNET_COM20020_ISA policy<{'i386': 'm'}> +CONFIG_ARCNET_COM20020_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ARCNET_COM20020_CS policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> + +# Menu: Device Drivers >> Network device support >> ATM drivers +CONFIG_ATM_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ATM_DUMMY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ATM_TCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ATM_LANAI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ATM_ENI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ATM_ENI_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_ATM_FIRESTREAM policy<{'amd64': 'm', 'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_ATM_ZATM policy<{'amd64': 'm', 'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_ATM_ZATM_DEBUG policy<{'amd64': 'n', 'i386': 'n', 'powerpc-powerpc-e500mc': 'n', 'powerpc-powerpc-smp': 'n'}> +CONFIG_ATM_NICSTAR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ATM_NICSTAR_USE_SUNI policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_ATM_NICSTAR_USE_IDT77105 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_ATM_IDT77252 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ATM_IDT77252_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_ATM_IDT77252_RCV_ALL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_ATM_AMBASSADOR policy<{'amd64': 'm', 'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_ATM_AMBASSADOR_DEBUG policy<{'amd64': 'n', 'i386': 'n', 'powerpc-powerpc-e500mc': 'n', 'powerpc-powerpc-smp': 'n'}> +CONFIG_ATM_HORIZON policy<{'amd64': 'm', 'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_ATM_HORIZON_DEBUG policy<{'amd64': 'n', 'i386': 'n', 'powerpc-powerpc-e500mc': 'n', 'powerpc-powerpc-smp': 'n'}> +CONFIG_ATM_IA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ATM_IA_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_ATM_HE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ATM_HE_USE_SUNI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ATM_SOLOS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ATM_FORE200E_USE_TASKLET policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_ATM_FORE200E_TX_RETRY policy<{'amd64': '16', 'arm64': '16', 'armhf': '16', 'i386': '16', 'powerpc': '16', 'ppc64el': '16'}> +CONFIG_ATM_FORE200E_DEBUG policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'i386': '0', 'powerpc': '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', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Network device support >> CAIF virtio transport driver +CONFIG_CAIF_VIRTIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VHOST_NET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_VHOST_SCSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_VHOST_CROSS_ENDIAN_LEGACY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Device Drivers >> Network device support >> Distributed Switch Architecture drivers + +# Menu: Device Drivers >> Network device support >> Ethernet driver support +CONFIG_ETHERNET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NET_VENDOR_ADAPTEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_ADAPTEC_STARFIRE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_AGERE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_ET131X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_ALTEON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_ACENIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ACENIC_OMIT_TIGON_I policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_ALTERA_TSE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_NET_XGENE policy<{'arm64': 'm'}> +CONFIG_NET_VENDOR_ARC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_ARC_EMAC policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_EMAC_ROCKCHIP policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NET_CADENCE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_MACB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_BROCADE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_BNA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NET_CALXEDA_XGMAC policy<{'armhf': 'm'}> +CONFIG_NET_VENDOR_CISCO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_ENIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CX_ECAT policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_DM9000 policy<{'armhf': 'm'}> +CONFIG_DM9000_FORCE_SIMPLE_PHY_POLL policy<{'armhf': 'n'}> +CONFIG_DNET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_NET_VENDOR_DEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_NET_VENDOR_DLINK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_DL2K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SUNDANCE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SUNDANCE_MMIO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_NET_VENDOR_EMULEX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_BE2NET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BE2NET_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BE2NET_VXLAN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NET_VENDOR_EZCHIP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_EZCHIP_NPS_MANAGEMENT_ENET policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_EXAR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_S2IO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VXGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VXGE_DEBUG_TRACE_ALL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_NET_VENDOR_FARADAY policy<{'armhf': 'y'}> +CONFIG_FTMAC100 policy<{'armhf': 'm'}> +CONFIG_FTGMAC100 policy<{'armhf': 'm'}> +CONFIG_NET_VENDOR_FUJITSU policy<{'amd64': 'y', 'i386': 'y', 'powerpc': 'y'}> +CONFIG_PCMCIA_FMVJ18X policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_NET_VENDOR_HISILICON policy<{'armhf': 'y'}> +CONFIG_HIX5HD2_GMAC policy<{'armhf': 'm'}> +CONFIG_HIP04_ETH policy<{'armhf': 'm'}> +CONFIG_NET_VENDOR_HP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_HP100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IP1000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_JME policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_NET_VENDOR_MICROCHIP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ENC28J60 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ENC28J60_WRITEVERIFY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_NET_VENDOR_MYRI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_MYRI10GE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MYRI10GE_DCA policy<{'amd64': 'y'}> +CONFIG_FEALNX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_NET_VENDOR_NVIDIA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_FORCEDETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_OKI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_PCH_GBE policy<{'i386': 'm'}> +CONFIG_ETHOC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_NET_PACKET_ENGINE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_HAMACHI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_YELLOWFIN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_PASEMI policy<{'powerpc-generic': 'y'}> +CONFIG_PASEMI_MAC policy<{'powerpc-generic': 'n'}> +CONFIG_NET_VENDOR_QUALCOMM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_QCA7000 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_RENESAS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_SH_ETH policy<{'armhf': 'm'}> +CONFIG_RAVB policy<{'armhf': 'm'}> +CONFIG_NET_VENDOR_RDC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_R6040 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_ROCKER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_NET_VENDOR_SAMSUNG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_SXGBE_ETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_SEEQ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_NET_VENDOR_SILAN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_SC92031 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_SIS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_SIS900 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SIS190 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_STMICRO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_STMMAC_ETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_STMMAC_PCI policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_NET_VENDOR_TEHUTI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_TEHUTI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_VIA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_VIA_RHINE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIA_RHINE_MMIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_VIA_VELOCITY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_WIZNET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_WIZNET_W5100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_WIZNET_W5300 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_XIRCOM policy<{'amd64': 'y', 'i386': 'y', 'powerpc': 'y'}> +CONFIG_PCMCIA_XIRC2PS policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_NET_VENDOR_SYNOPSYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_SYNOPSYS_DWC_ETH_QOS policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> 3Com devices +CONFIG_NET_VENDOR_3COM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_EL3 policy<{'i386': 'm'}> +CONFIG_3C515 policy<{'i386': 'm'}> +CONFIG_PCMCIA_3C574 policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_PCMCIA_3C589 policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_VORTEX policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TYPHOON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_AMD8111_ETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LANCE policy<{'i386': 'm'}> +CONFIG_PCNET32 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PCMCIA_NMCLAN policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_NI65 policy<{'i386': 'm'}> +CONFIG_AMD_XGBE policy<{'arm64': 'm'}> +CONFIG_AMD_XGBE_DCB policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Apple devices +CONFIG_NET_VENDOR_APPLE policy<{'powerpc-powerpc-smp': 'y'}> +CONFIG_MACE policy<{'powerpc-powerpc-smp': 'm'}> +CONFIG_MACE_AAUI_PORT policy<{'powerpc-powerpc-smp': 'n'}> +CONFIG_BMAC policy<{'powerpc-powerpc-smp': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Atheros devices +CONFIG_NET_VENDOR_ATHEROS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_ATL2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ATL1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ATL1E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ATL1C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ALX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Blackfin on-chip MAC support + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Broadcom devices +CONFIG_NET_VENDOR_BROADCOM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_B44 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BCMGENET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BNX2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CNIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TIGON3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BNX2X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BNX2X_SRIOV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BNX2X_VXLAN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SYSTEMPORT policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Cavium ethernet drivers +CONFIG_NET_VENDOR_CAVIUM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_THUNDER_NIC_PF policy<{'amd64': 'm', 'arm64': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_THUNDER_NIC_VF policy<{'amd64': 'm', 'arm64': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_THUNDER_NIC_BGX policy<{'amd64': 'm', 'arm64': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_LIQUIDIO policy<{'amd64': 'm', 'arm64': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-generic': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_CHELSIO_T1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CHELSIO_T1_1G policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_CHELSIO_T3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CHELSIO_T4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CHELSIO_T4_DCB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_CHELSIO_T4_FCOE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_CHELSIO_T4VF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Cirrus devices +CONFIG_NET_VENDOR_CIRRUS policy<{'armhf': 'y', 'i386': 'y'}> +CONFIG_CS89x0 policy<{'armhf': 'm', 'i386': 'm'}> +CONFIG_CS89x0_PLATFORM policy<{'armhf': 'y', 'i386': 'y'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> DEC - Tulip devices +CONFIG_NET_TULIP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_DE2104X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DE2104X_DSL policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'i386': '0', 'powerpc': '0', 'ppc64el': '0'}> +CONFIG_DE4X5 policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_WINBOND_840 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DM9102 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ULI526X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PCMCIA_XIRCOM policy<{'amd64': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TULIP_MWI policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_TULIP_MMIO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_TULIP_NAPI policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +# +CONFIG_TULIP_NAPI flag + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Freescale devices +CONFIG_NET_VENDOR_FREESCALE policy<{'armhf-generic': 'y', 'powerpc-powerpc64-emb': 'y', 'powerpc-powerpc-e500mc': 'y'}> +CONFIG_FEC policy<{'armhf-generic': 'y'}> +CONFIG_FSL_PQ_MDIO policy<{'armhf-generic': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_FSL_XGMAC_MDIO policy<{'armhf-generic': 'y', 'powerpc-powerpc64-emb': 'y', 'powerpc-powerpc-e500mc': 'y'}> +CONFIG_GIANFAR policy<{'armhf-generic': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Freescale devices >> Freescale Ethernet Driver +CONFIG_FS_ENET policy<{'powerpc-powerpc-e500mc': 'm'}> +CONFIG_FS_ENET_HAS_SCC policy<{'powerpc-powerpc-e500mc': 'y'}> +CONFIG_FS_ENET_HAS_FCC policy<{'powerpc-powerpc-e500mc': 'y'}> +CONFIG_FS_ENET_MDIO_FCC policy<{'powerpc-powerpc-e500mc': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> IBM devices +CONFIG_NET_VENDOR_IBM policy<{'powerpc-generic': 'y', 'ppc64el': 'y'}> +CONFIG_IBMVETH policy<{'powerpc-generic': 'm', 'ppc64el': 'y'}> +CONFIG_EHEA policy<{'ppc64el': 'y'}> +CONFIG_IBMVNIC policy<{'powerpc-generic': 'm', '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', 'i386': 'y', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_E100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_E1000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_E1000E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IGB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IGB_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_IGB_DCA policy<{'amd64': 'y'}> +CONFIG_IGBVF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IXGB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IXGBEVF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I40EVF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FM10K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FM10K_VXLAN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# 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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IXGBE_VXLAN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_IXGBE_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_IXGBE_DCA policy<{'amd64': 'y'}> +CONFIG_IXGBE_DCB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Intel devices >> Intel(R) Ethernet Controller XL710 Family support +CONFIG_I40E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_I40E_VXLAN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_I40E_DCB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_I40E_FCOE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_MV643XX_ETH policy<{'armhf': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_MVMDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MVNETA policy<{'armhf': 'm'}> +CONFIG_MVPP2 policy<{'armhf': 'm'}> +CONFIG_PXA168_ETH policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SKGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SKGE_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_SKGE_GENESIS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SKY2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SKY2_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Mellanox devices +CONFIG_NET_VENDOR_MELLANOX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MLX4_EN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MLX4_EN_DCB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MLX4_EN_VXLAN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MLX4_DEBUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MLX5_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MLX5_CORE_EN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MLXSW_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MLXSW_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Micrel devices +CONFIG_NET_VENDOR_MICREL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_KS8842 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KS8851 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KS8851_MLL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KSZ884X_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> National Semi-conductor 8390 devices +CONFIG_NET_VENDOR_8390 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_PCMCIA_AXNET policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_AX88796 policy<{'armhf': 'm'}> +CONFIG_AX88796_93CX6 policy<{'armhf': 'n'}> +CONFIG_NE2000 policy<{'i386': 'm'}> +CONFIG_NE2K_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PCMCIA_PCNET policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_ULTRA policy<{'i386': 'm'}> +CONFIG_WD80x3 policy<{'i386': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> National Semi-conductor devices +CONFIG_NET_VENDOR_NATSEMI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_NATSEMI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NS83820 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> QLogic devices +CONFIG_NET_VENDOR_QLOGIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_QLA3XXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_QLGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NETXEN_NIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_QLCNIC_SRIOV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_QLCNIC_DCB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_QLCNIC_VXLAN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_QLCNIC_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Realtek devices +CONFIG_NET_VENDOR_REALTEK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_ATP policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_8139CP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_R8169 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_8139TOO_PIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_8139TOO_TUNE_TWISTER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_8139TOO_8129 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_8139_OLD_RX_RESET policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_SMC9194 policy<{'i386': 'm'}> +CONFIG_SMC91X policy<{'arm64': 'y', 'armhf': 'm'}> +CONFIG_PCMCIA_SMC91C92 policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_EPIC100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SMC911X policy<{'armhf': 'm'}> +CONFIG_SMSC911X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SMSC9420 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> STMMAC Platform bus support +CONFIG_STMMAC_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DWMAC_GENERIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DWMAC_IPQ806X policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DWMAC_LPC18XX policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DWMAC_MESON policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DWMAC_ROCKCHIP policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DWMAC_SOCFPGA policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DWMAC_STI policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DWMAC_SUNXI policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Solarflare SFC4000/SFC9000/SFC9100-family support +CONFIG_SFC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SFC_MTD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SFC_MCDI_MON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SFC_SRIOV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SFC_MCDI_LOGGING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_HAPPYMEAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SUNGEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CASSINI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NIU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_TI_DAVINCI_EMAC policy<{'armhf-generic': 'm'}> +CONFIG_TI_DAVINCI_MDIO policy<{'armhf': 'y'}> +CONFIG_TI_DAVINCI_CPDMA policy<{'armhf': 'y'}> +CONFIG_TI_CPSW_PHY_SEL policy<{'armhf': 'y'}> +CONFIG_TI_CPSW_ALE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TI_CPSW policy<{'armhf': 'y'}> +CONFIG_TI_CPTS policy<{'armhf': 'y'}> +CONFIG_TLAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Toshiba devices +CONFIG_NET_VENDOR_TOSHIBA policy<{'powerpc-generic': 'y'}> +CONFIG_GELIC_NET policy<{'powerpc-generic': 'm'}> +CONFIG_GELIC_WIRELESS policy<{'powerpc-generic': 'y'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> WIZnet interface mode +CONFIG_WIZNET_BUS_DIRECT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_WIZNET_BUS_INDIRECT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_WIZNET_BUS_ANY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Xilinx devices +CONFIG_NET_VENDOR_XILINX policy<{'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_XILINX_EMACLITE policy<{'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_XILINX_LL_TEMAC policy<{'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> IEEE 802.15.4 drivers +CONFIG_IEEE802154_DRIVERS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IEEE802154_FAKELB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IEEE802154_AT86RF230 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IEEE802154_MRF24J40 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IEEE802154_CC2520 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IEEE802154_ATUSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Network core driver support +CONFIG_NET_CORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BONDING policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DUMMY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_EQUALIZER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_FC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IFB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MACVLAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MACVTAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IPVLAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_VXLAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_GENEVE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETCONSOLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETCONSOLE_DYNAMIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NTB_NETDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RIONET policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RIONET_TX_SIZE policy<{'amd64': '128', 'i386': '128', 'powerpc': '128', 'ppc64el': '128'}> +CONFIG_RIONET_RX_SIZE policy<{'amd64': '128', 'i386': '128', 'powerpc': '128', 'ppc64el': '128'}> +CONFIG_TUN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TUN_VNET_CROSS_LE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_VETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_VIRTIO_NET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_VRF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_TEAM_MODE_BROADCAST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_TEAM_MODE_ROUNDROBIN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_TEAM_MODE_RANDOM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_TEAM_MODE_ACTIVEBACKUP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_TEAM_MODE_LOADBALANCE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> Network device support >> PHY Device support and infrastructure +CONFIG_PHYLIB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_AQUANTIA_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AT803X_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AMD_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MARVELL_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DAVICOM_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_QSEMI_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LXT_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CICADA_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VITESSE_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TERANETICS_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SMSC_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BROADCOM_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BCM7XXX_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BCM87XX_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ICPLUS_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REALTEK_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NATIONAL_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_STE10XP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LSI_ET1011C_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MICREL_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DP83848_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DP83867_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MICROCHIP_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FIXED_PHY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MDIO_BITBANG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MDIO_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MDIO_OCTEON policy<{'amd64': 'm', 'arm64': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_MDIO_BUS_MUX_GPIO policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MDIO_BUS_MUX_MMIOREG policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MDIO_BCM_UNIMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> PPP (point-to-point protocol) support +CONFIG_PPP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_PPP_BSDCOMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PPP_DEFLATE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PPP_FILTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_PPP_MPPE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PPP_MULTILINK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_PPPOATM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PPPOE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PPTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PPPOL2TP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PPP_ASYNC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PPP_SYNC_TTY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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_QETH policy<{'s390x': 'm'}> +CONFIG_QETH_L2 policy<{'s390x': 'm'}> +CONFIG_QETH_L3 policy<{'s390x': 'm'}> + +# Menu: Device Drivers >> Network device support >> SLIP (serial line) support +CONFIG_SLIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SLIP_COMPRESSED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SLIP_SMART policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SLIP_MODE_SLIP6 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> USB Network Adapters +CONFIG_USB_NET_DRIVERS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_CATC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_KAWETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_PEGASUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_RTL8150 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_RTL8152 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_LAN78XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_HSO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_CDC_PHONET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_IPHETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_AX8817X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_AX88179_178A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_CDCETHER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_CDC_EEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_CDC_NCM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_HUAWEI_CDC_NCM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_CDC_MBIM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_DM9601 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_SR9700 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_SR9800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_SMSC75XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_SMSC95XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_GL620A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_NET1080 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_PLUSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_MCS7830 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_RNDIS_HOST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_ZAURUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_CX82310_ETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_KALMIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_QMI_WWAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_INT51X1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SIERRA_NET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_VL600 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_CH9200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_ALI_M5632 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_AN2720 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_BELKIN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_ARMLINUX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_EPSON2888 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_KC2190 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wan interfaces support +CONFIG_WAN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_HOSTESS_SV11 policy<{'i386': 'm'}> +CONFIG_COSA policy<{'i386': 'm'}> +CONFIG_LANMEDIA policy<{'amd64': 'm', 'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_SEALEVEL_4021 policy<{'i386': 'm'}> +CONFIG_DLCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DLCI_MAX policy<{'amd64': '8', 'arm64': '8', 'armhf': '8', 'i386': '8', 'powerpc': '8', 'ppc64el': '8'}> +CONFIG_SDLA policy<{'i386': 'm'}> +CONFIG_LAPBETHER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_X25_ASY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SBNI policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SBNI_MULTILINE policy<{'amd64': 'n', 'i386': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wan interfaces support >> Generic HDLC layer +CONFIG_HDLC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HDLC_RAW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HDLC_RAW_ETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HDLC_CISCO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HDLC_FR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HDLC_PPP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HDLC_X25 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PCI200SYN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_WANXL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PC300TOO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_N2 policy<{'i386': 'm'}> +CONFIG_C101 policy<{'i386': 'm'}> +CONFIG_FARSYNC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DSCC4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DSCC4_PCISYNC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_DSCC4_PCI_RST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> WiMAX Wireless Broadband devices +CONFIG_WIMAX_I2400M_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_WIMAX_I2400M_DEBUG_LEVEL policy<{'amd64': '8', 'arm64': '8', 'armhf': '8', 'i386': '8', 'powerpc': '8', 'ppc64el': '8'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN +CONFIG_WLAN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_PCMCIA_RAYCS policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_LIBERTAS_THINFIRM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LIBERTAS_THINFIRM_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_LIBERTAS_THINFIRM_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AIRO policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ATMEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PCI_ATMEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PCMCIA_ATMEL policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_AT76C50X_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AIRO_CS policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_PCMCIA_WL3501 policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_PRISM54 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_USB_ZD1201 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_RNDIS_WLAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTL8180 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTL8187 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ADM8211 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MAC80211_HWSIM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MWL8K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_B43LEGACY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_B43LEGACY_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_BRCMSMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IPW2100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IPW2100_MONITOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_IPW2100_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_LIBIPW_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_IWL4965 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IWL3945 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ZD1211RW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ZD1211RW_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_CW1200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CW1200_WLAN_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CW1200_WLAN_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Atheros Wireless Cards +CONFIG_ATH_CARDS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ATH_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_ATH5K_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ATH9K_BTCOEX_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ATH9K_HTC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ATH9K_HTC_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_AR5523 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_WIL6210 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_WIL6210_ISR_COR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_WIL6210_TRACING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_WCN36XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_WCN36XX_DEBUGFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Atheros Wireless Cards >> Atheros 5xxx wireless cards support +CONFIG_ATH5K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ATH5K_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_ATH5K_TRACER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Atheros Wireless Cards >> Atheros 802.11ac wireless cards support +CONFIG_ATH10K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ATH10K_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ATH10K_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_ATH10K_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ATH10K_TRACING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Atheros Wireless Cards >> Atheros 802.11n wireless cards support +CONFIG_ATH9K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ATH9K_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ATH9K_AHB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ATH9K_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ATH9K_STATION_STATISTICS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ATH9K_DYNACK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_ATH9K_WOW policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ATH9K_RFKILL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ATH9K_CHANNEL_CONTEXT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ATH9K_PCOEM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Atheros Wireless Cards >> Atheros mobile chipsets support +CONFIG_ATH6KL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ATH6KL_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ATH6KL_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ATH6KL_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_ATH6KL_TRACING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Atheros Wireless Cards >> Linux Community AR9170 802.11n USB support +CONFIG_CARL9170 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CARL9170_LEDS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_CARL9170_DEBUGFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_CARL9170_HWRNG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Broadcom 43xx wireless support (mac80211 stack) +CONFIG_B43 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_B43_PCMCIA policy<{'amd64': 'n', 'i386': 'n', 'powerpc': 'n'}> +CONFIG_B43_SDIO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_B43_PHY_G policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_B43_PHY_N policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_B43_PHY_LP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_B43_PHY_HT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_B43_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Broadcom 43xx wireless support (mac80211 stack) >> Supported bus types +CONFIG_B43_BUSES_BCMA_AND_SSB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_B43_BUSES_BCMA policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_B43_BUSES_SSB policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Broadcom 43xx-legacy data transfer mode +CONFIG_B43LEGACY_DMA_AND_PIO_MODE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_B43LEGACY_DMA_MODE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_B43LEGACY_PIO_MODE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Broadcom IEEE802.11n embedded FullMAC WLAN driver +CONFIG_BRCMFMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BRCMFMAC_SDIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BRCMFMAC_USB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BRCMFMAC_PCIE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BRCM_TRACING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BRCMDBG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +# +CONFIG_BRCMDBG flag + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Hermes chipset 802.11b support (Orinoco/Prism2/Symbol) +CONFIG_HERMES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HERMES_PRISM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_HERMES_CACHE_FW_ON_INIT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_APPLE_AIRPORT policy<{'powerpc-generic': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_PLX_HERMES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TMD_HERMES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NORTEL_HERMES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PCMCIA_HERMES policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_PCMCIA_SPECTRUM policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_ORINOCO_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> IEEE 802.11 for Host AP (Prism2/2.5/3 and WEP/TKIP/CCMP) +CONFIG_HOSTAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HOSTAP_FIRMWARE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HOSTAP_FIRMWARE_NVRAM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_HOSTAP_PLX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HOSTAP_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HOSTAP_CS policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Intel PRO/Wireless 2200BG and 2915ABG Network Connection +CONFIG_IPW2200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IPW2200_MONITOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_IPW2200_RADIOTAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_IPW2200_PROMISCUOUS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_IPW2200_QOS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_IPW2200_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Intel Wireless WiFi Next Gen AGN - Wireless-N/Advanced-N/Ultimate-N (iwlwifi) +CONFIG_IWLWIFI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IWLDVM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IWLMVM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IWLWIFI_BCAST_FILTERING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_IWLWIFI_UAPSD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +# +CONFIG_IWLWIFI_UAPSD note + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> 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', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_IWLWIFI_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_IWLWIFI_DEVICE_TRACING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Marvell 8xxx Libertas WLAN driver support +CONFIG_LIBERTAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LIBERTAS_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LIBERTAS_CS policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_LIBERTAS_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LIBERTAS_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LIBERTAS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_LIBERTAS_MESH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Marvell WiFi-Ex Driver +CONFIG_MWIFIEX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MWIFIEX_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MWIFIEX_PCIE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MWIFIEX_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Mediatek Wireless LAN support +CONFIG_WL_MEDIATEK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MT7601U policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Ralink driver support +CONFIG_RT2X00 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RT2400PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RT2500PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RT61PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RT2500USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RT73USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RT2X00_LIB_DEBUGFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_RT2X00_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RT2800PCI_RT33XX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_RT2800PCI_RT35XX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_RT2800PCI_RT53XX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_RT2800PCI_RT3290 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RT2800USB_RT33XX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_RT2800USB_RT35XX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_RT2800USB_RT3573 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_RT2800USB_RT53XX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_RT2800USB_RT55XX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_RT2800USB_UNKNOWN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Realtek rtlwifi family of devices +CONFIG_RTL_CARDS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTL8192CE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTL8192SE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTL8192DE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTL8723AE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTL8723BE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTL8188EE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTL8192EE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTL8821AE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTL8192CU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTLWIFI_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RSI_DEBUGFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_RSI_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RSI_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Softmac Prism54 support +CONFIG_P54_COMMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_P54_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_P54_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_P54_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_P54_SPI_DEFAULT_EEPROM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> TI Wireless LAN support +CONFIG_WL_TI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_WL12XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_WL18XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_WLCORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_WLCORE_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_WLCORE_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_WILINK_PLATFORM_DATA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> TI Wireless LAN support >> TI wl1251 driver support +CONFIG_WL1251 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_WL1251_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_WL1251_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> iwl3945 / iwl4965 Debugging Options +CONFIG_IWLEGACY_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_IWLEGACY_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Non-Transparent Bridge support +CONFIG_NTB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_NTB_INTEL policy<{'amd64': 'm'}> +CONFIG_NTB_PINGPONG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NTB_TOOL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NTB_TRANSPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> PHY Subsystem +CONFIG_GENERIC_PHY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_PHY_BERLIN_USB policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_BERLIN_SATA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_DM816X_USB policy<{'armhf': 'm'}> +CONFIG_PHY_EXYNOS_MIPI_VIDEO policy<{'armhf': 'y'}> +CONFIG_PHY_PXA_28NM_HSIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_PHY_PXA_28NM_USB2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_PHY_RCAR_GEN2 policy<{'armhf': 'm'}> +CONFIG_OMAP_CONTROL_PHY policy<{'armhf': 'm'}> +CONFIG_OMAP_USB2 policy<{'armhf': 'm'}> +CONFIG_TI_PIPE3 policy<{'armhf': 'm'}> +CONFIG_TWL4030_USB policy<{'armhf': 'm'}> +CONFIG_PHY_EXYNOS_DP_VIDEO policy<{'armhf': 'y'}> +CONFIG_BCM_KONA_USB2_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_PHY_EXYNOS5250_SATA policy<{'armhf': 'y'}> +CONFIG_PHY_HIX5HD2_SATA policy<{'armhf': 'm'}> +CONFIG_PHY_SAMSUNG_USB2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PHY_EXYNOS5_USBDRD policy<{'armhf': 'm'}> +CONFIG_PHY_QCOM_APQ8064_SATA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_QCOM_IPQ806X_SATA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_XGENE policy<{'arm64': 'y'}> +CONFIG_PHY_QCOM_UFS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_TUSB1210 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> PPS support + +# Menu: Device Drivers >> PPS support >> PPS support +CONFIG_PPS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'y', 's390x': 'm'}> +CONFIG_PPS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_PPS_CLIENT_KTIMER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_PPS_CLIENT_LDISC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_PPS_CLIENT_PARPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PPS_CLIENT_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +# +CONFIG_PPS_CLIENT_KTIMER flag +CONFIG_PPS flag + +# Menu: Device Drivers >> PTP clock support +CONFIG_PTP_1588_CLOCK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'y', 's390x': 'm'}> +CONFIG_PTP_1588_CLOCK_GIANFAR policy<{'armhf-generic': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_PTP_1588_CLOCK_PCH policy<{'i386': 'm'}> +# +CONFIG_PTP_1588_CLOCK flag + +# Menu: Device Drivers >> Parallel port support +CONFIG_PARPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_PARPORT_AX88796 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PARPORT_1284 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Parallel port support >> PC-style hardware +CONFIG_PARPORT_PC policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PARPORT_SERIAL policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PARPORT_PC_FIFO policy<{'amd64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_PARPORT_PC_SUPERIO policy<{'amd64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_PARPORT_PC_PCMCIA policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> + +# Menu: Device Drivers >> Performance monitor support +CONFIG_ARM_PMU policy<{'armhf': 'y'}> + +# Menu: Device Drivers >> Pin controllers +CONFIG_PINMUX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y'}> +CONFIG_PINCONF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y'}> +CONFIG_DEBUG_PINCTRL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n'}> +CONFIG_PINCTRL_AS3722 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PINCTRL_AMD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y'}> +CONFIG_PINCTRL_SINGLE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PINCTRL_PALMAS 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_IMX6SX policy<{'armhf-generic': 'y'}> +CONFIG_PINCTRL_IMX6UL policy<{'armhf-generic': 'y'}> +CONFIG_PINCTRL_IMX7D policy<{'armhf-generic': 'y'}> +CONFIG_PINCTRL_VF610 policy<{'armhf-generic': 'y'}> +CONFIG_PINCTRL_BAYTRAIL policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +CONFIG_PINCTRL_CHERRYVIEW policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_PINCTRL_SUNRISEPOINT policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_PINCTRL_APQ8064 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_APQ8084 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_IPQ8064 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_MSM8660 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_MSM8960 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_MSM8X74 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_MSM8916 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_QDF2XXX policy<{'arm64': 'm'}> +CONFIG_PINCTRL_QCOM_SPMI_PMIC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_QCOM_SSBI_PMIC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_EXYNOS policy<{'armhf': 'y'}> +CONFIG_PINCTRL_EXYNOS5440 policy<{'armhf': 'y'}> +CONFIG_GPIO_SH_PFC policy<{'armhf': 'y'}> +CONFIG_PINCTRL_UNIPHIER_PH1_LD4 policy<{'armhf': 'm'}> +CONFIG_PINCTRL_UNIPHIER_PH1_PRO4 policy<{'armhf': 'm'}> +CONFIG_PINCTRL_UNIPHIER_PH1_SLD8 policy<{'armhf': 'm'}> +CONFIG_PINCTRL_UNIPHIER_PH1_PRO5 policy<{'armhf': 'm'}> +CONFIG_PINCTRL_UNIPHIER_PROXSTREAM2 policy<{'armhf': 'm'}> +CONFIG_PINCTRL_UNIPHIER_PH1_LD6B policy<{'armhf': 'm'}> +CONFIG_PINCTRL_MT8135 policy<{'arm64': 'n', 'armhf': 'y'}> +CONFIG_PINCTRL_MT8127 policy<{'arm64': 'n', 'armhf': 'y'}> +CONFIG_PINCTRL_MT8173 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MT6397 policy<{'arm64': 'y', 'armhf': 'y'}> +# +CONFIG_PINCTRL_MT8135 flag +CONFIG_PINCTRL_MT8127 flag + +# Menu: Device Drivers >> Pin controllers >> Nomadik pin controller driver + +# Menu: Device Drivers >> Pin controllers >> ST-Ericsson ABx500 family Mixed Signal Circuit gpio functions + +# Menu: Device Drivers >> Platform support for Chrome hardware +CONFIG_CHROME_PLATFORMS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_CHROMEOS_LAPTOP policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_CHROMEOS_PSTORE policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_CROS_EC_CHARDEV policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm'}> +CONFIG_CROS_EC_LPC policy<{'amd64': 'm', 'i386': 'm'}> + +# Menu: Device Drivers >> Plug and Play support +CONFIG_PNP policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +CONFIG_PNP_DEBUG_MESSAGES policy<{'amd64': 'n', 'arm64': 'n', 'i386': 'n'}> +CONFIG_ISAPNP policy<{'i386': 'y'}> +CONFIG_PNPBIOS policy<{'i386': 'y'}> +CONFIG_PNPBIOS_PROC_FS policy<{'i386': 'y'}> + +# Menu: Device Drivers >> Power supply class support +CONFIG_POWER_SUPPLY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_POWER_SUPPLY_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_PDA_POWER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_APM_POWER policy<{'powerpc-powerpc-smp': 'm'}> +CONFIG_GENERIC_ADC_BATTERY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MAX8925_POWER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_WM831X_BACKUP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_WM831X_POWER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_WM8350_POWER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TEST_POWER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_88PM860X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_DS2760 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_DS2780 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_DS2781 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_DS2782 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_PMU policy<{'powerpc-powerpc-smp': 'm'}> +CONFIG_BATTERY_SBS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_BQ27x00 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_BQ27X00_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BATTERY_BQ27X00_PLATFORM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BATTERY_DA9030 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_DA9052 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_DA9150 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AXP288_CHARGER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AXP288_FUEL_GAUGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_MAX17040 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_MAX17042 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_TWL4030_MADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_88PM860X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_PCF50633 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_INTEL_MID policy<{'i386': 'm'}> +CONFIG_BATTERY_RX51 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_ISP1704 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_MAX8903 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_TWL4030 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_LP8727 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_LP8788 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_MANAGER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_CHARGER_MAX14577 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_MAX77693 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_MAX8997 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_MAX8998 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_BQ2415X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_BQ24190 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_BQ24257 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_BQ24735 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_BQ25890 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_SMB347 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_TPS65090 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_GAUGE_LTC2941 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_RT5033 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_RT9455 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Power supply class support >> Board level reset or power off +CONFIG_POWER_RESET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_POWER_RESET_AS3722 policy<{'arm64': 'y', 'armhf': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_POWER_RESET_AXXIA policy<{'armhf-generic-lpae': 'y'}> +CONFIG_POWER_RESET_BRCMSTB policy<{'armhf': 'n'}> +CONFIG_POWER_RESET_GPIO policy<{'arm64': 'y', 'armhf': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_POWER_RESET_GPIO_RESTART policy<{'arm64': 'y', 'armhf': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_POWER_RESET_HISI policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_POWER_RESET_IMX policy<{'armhf-generic': 'n'}> +CONFIG_POWER_RESET_MSM policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_POWER_RESET_LTC2952 policy<{'arm64': 'y', 'armhf': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_POWER_RESET_QNAP policy<{'armhf': 'n'}> +CONFIG_POWER_RESET_RESTART policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': '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', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_POWER_RESET_SYSCON_POWEROFF policy<{'arm64': 'y', 'armhf': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_POWER_RESET_RMOBILE policy<{'armhf': 'm'}> +CONFIG_POWER_RESET_ZX policy<{'armhf': 'm'}> + +# Menu: Device Drivers >> Pulse-Width Modulation (PWM) Support +CONFIG_PWM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_PWM_ATMEL_HLCDC_PWM policy<{'arm64': 'm', 'armhf': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_PWM_CRC policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_PWM_FSL_FTM policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PWM_IMX policy<{'armhf-generic': 'm'}> +CONFIG_PWM_LP3943 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PWM_LPSS policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_PWM_LPSS_PCI policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_PWM_LPSS_PLATFORM policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_PWM_PCA9685 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PWM_RENESAS_TPU policy<{'armhf': 'm'}> +CONFIG_PWM_SAMSUNG policy<{'armhf': 'm'}> +CONFIG_PWM_TEGRA policy<{'armhf-generic': 'm'}> +CONFIG_PWM_TIECAP policy<{'armhf-generic': 'm'}> +CONFIG_PWM_TIEHRPWM policy<{'armhf-generic': 'm'}> +CONFIG_PWM_TWL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PWM_TWL_LED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Real Time Clock +CONFIG_RTC_CLASS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_RTC_HCTOSYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_RTC_HCTOSYS_DEVICE policy<{'amd64': '"rtc0"', 'arm64': '"rtc0"', 'armhf': '"rtc0"', 'i386': '"rtc0"', 'powerpc': '"rtc0"', 'ppc64el': '"rtc0"'}> +CONFIG_RTC_SYSTOHC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_RTC_SYSTOHC_DEVICE policy<{'amd64': '"rtc0"', 'arm64': '"rtc0"', 'armhf': '"rtc0"', 'i386': '"rtc0"', 'powerpc': '"rtc0"', 'ppc64el': '"rtc0"'}> +CONFIG_RTC_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_RTC_INTF_SYSFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_RTC_INTF_PROC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_RTC_INTF_DEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_RTC_INTF_DEV_UIE_EMUL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_RTC_DRV_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_RTC_DRV_88PM860X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_88PM80X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_ABB5ZES3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_ABX80X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_AS3722 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS1307 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS1374 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS1374_WDT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_RTC_DRV_DS1672 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS3232 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc-powerpc64-emb': 'y', 'powerpc-generic': 'm', 'powerpc-powerpc-e500mc': 'y', 'powerpc-powerpc-smp': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_HYM8563 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_LP8788 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_MAX6900 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_MAX8907 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_MAX8925 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_MAX8998 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_MAX8997 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_MAX77686 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_RK808 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_MAX77802 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_RS5C372 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_ISL1208 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_ISL12022 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_ISL12057 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_X1205 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_PALMAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_PCF2127 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_PCF8523 policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic': 'y', 'armhf-generic-lpae': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_PCF8563 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_PCF85063 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_PCF8583 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_M41T80 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_M41T80_WDT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_RTC_DRV_BQ32K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_TWL4030 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_TPS6586X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_TPS65910 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_TPS80031 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_RC5T583 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_S35390A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_FM3130 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_RX8581 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_RX8025 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_EM3027 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_RV3029C2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_S5M policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_M41T93 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_M41T94 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS1305 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS1343 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS1347 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS1390 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_MAX6902 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_R9701 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_RS5C348 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS3234 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_PCF2123 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_RX4581 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_MCP795 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_CMOS policy<{'amd64': 'y', 'armhf': 'm', 'i386': 'y', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_VRTC policy<{'i386': 'm'}> +CONFIG_RTC_DRV_DS1286 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS1511 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS1553 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS1742 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS2404 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DA9052 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DA9055 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DA9063 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_EFI policy<{'arm64': 'y'}> +CONFIG_RTC_DRV_STK17TA8 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_M48T86 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_M48T35 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_M48T59 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_MSM6242 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_BQ4802 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_RP5C01 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_V3020 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_WM831X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_WM8350 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_PCF50633 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_AB3100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_OPAL policy<{'powerpc-generic': 'y', 'ppc64el': 'y'}> +CONFIG_RTC_DRV_ZYNQMP policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_IMXDI policy<{'armhf-generic': 'm'}> +CONFIG_RTC_DRV_OMAP policy<{'armhf': 'y'}> +CONFIG_RTC_DRV_S3C policy<{'armhf': 'y'}> +CONFIG_RTC_DRV_PL030 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RTC_DRV_PL031 policy<{'arm64': 'm', 'armhf': 'y'}> +CONFIG_RTC_DRV_GENERIC policy<{'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_MV policy<{'armhf': 'y'}> +CONFIG_RTC_DRV_ARMADA38X policy<{'armhf': 'm'}> +CONFIG_RTC_DRV_PS3 policy<{'powerpc-generic': 'm'}> +CONFIG_RTC_DRV_PCAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_MC13XXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_PM8XXX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RTC_DRV_TEGRA policy<{'armhf-generic': 'm'}> +CONFIG_RTC_DRV_MXC policy<{'armhf-generic': 'm'}> +CONFIG_RTC_DRV_SNVS policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_MT6397 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_XGENE policy<{'arm64': 'y'}> +CONFIG_RTC_DRV_HID_SENSOR_TIME policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': '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 >> Dallas/Maxim DS1685 Family +CONFIG_RTC_DRV_DS1685_FAMILY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DS1685_PROC_REGS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_RTC_DS1685_SYSFS_REGS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Real Time Clock >> Dallas/Maxim DS1685 Family >> Subtype +CONFIG_RTC_DRV_DS1685 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_RTC_DRV_DS1689 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_RTC_DRV_DS17285 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_RTC_DRV_DS17485 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_RTC_DRV_DS17885 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Reliability, Availability and Serviceability (RAS) features +CONFIG_RAS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_AMD_MCE_INJ policy<{'amd64': 'm', 'i386': 'm'}> + +# Menu: Device Drivers >> Remoteproc drivers +CONFIG_OMAP_REMOTEPROC policy<{'armhf-generic': 'm'}> +CONFIG_STE_MODEM_RPROC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_WKUP_M3_RPROC policy<{'armhf-generic': 'm'}> + +# Menu: Device Drivers >> SCSI device support +CONFIG_RAID_ATTRS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> SCSI device support >> SCSI device support +CONFIG_SCSI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SCSI_MQ_DEFAULT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'y'}> +CONFIG_SCSI_PROC_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BLK_DEV_SD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CHR_DEV_ST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CHR_DEV_OSST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BLK_DEV_SR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BLK_DEV_SR_VENDOR policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'y'}> +CONFIG_CHR_DEV_SG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CHR_DEV_SCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCSI_ENCLOSURE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SCSI_CONSTANTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SCSI_LOGGING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SCSI_SCAN_ASYNC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': '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 >> OSD-Initiator library +CONFIG_SCSI_OSD_INITIATOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCSI_OSD_ULD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCSI_OSD_DPRINT_SENSE policy<{'amd64': '1', 'arm64': '1', 'armhf': '1', 'i386': '1', 'powerpc': '1', 'ppc64el': '1', 's390x': '1'}> +CONFIG_SCSI_OSD_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Device Drivers >> SCSI device support >> SCSI device support >> PCMCIA SCSI adapter support +CONFIG_SCSI_LOWLEVEL_PCMCIA policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y', 'powerpc': 'y'}> +CONFIG_PCMCIA_AHA152X policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_PCMCIA_FDOMAIN policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_PCMCIA_NINJA_SCSI policy<{'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_PCMCIA_QLOGIC policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_PCMCIA_SYM53C500 policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> + +# Menu: Device Drivers >> SCSI device support >> SCSI device support >> SCSI Device Handlers +CONFIG_SCSI_DH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SCSI_DH_RDAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCSI_DH_HP_SW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCSI_DH_EMC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCSI_DH_ALUA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCSI_FC_ATTRS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCSI_ISCSI_ATTRS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCSI_SAS_ATTRS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCSI_SAS_LIBSAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCSI_SAS_ATA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SCSI_SAS_HOST_SMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SCSI_SRP_ATTRS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-generic': 'y', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ISCSI_TCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_ISCSI_BOOT_SYSFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCSI_CXGB3_ISCSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_CXGB4_ISCSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_BNX2_ISCSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_BNX2X_FCOE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_BE2ISCSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_CXLFLASH policy<{'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_BLK_DEV_3W_XXXX_RAID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_HPSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_3W_9XXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_3W_SAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_7000FASST policy<{'i386': 'm'}> +CONFIG_SCSI_ACARD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_AHA152X policy<{'i386': 'm'}> +CONFIG_SCSI_AHA1542 policy<{'i386': 'm'}> +CONFIG_SCSI_AHA1740 policy<{'i386': 'm'}> +CONFIG_SCSI_AACRAID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_AIC94XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_AIC94XX_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_SCSI_MVSAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_MVSAS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_SCSI_MVSAS_TASKLET policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_SCSI_MVUMI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_DPT_I2O policy<{'amd64': 'm', 'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm', 's390x': 'n'}> +CONFIG_SCSI_ADVANSYS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_IN2000 policy<{'i386': 'm'}> +CONFIG_SCSI_ARCMSR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_ESAS2R policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MEGARAID_NEWGEN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_MEGARAID_MM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEGARAID_MAILBOX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEGARAID_LEGACY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MEGARAID_SAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_MPT2SAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_MPT2SAS_MAX_SGE policy<{'amd64': '128', 'arm64': '128', 'armhf': '128', 'i386': '128', 'powerpc': '128', 'ppc64el': '128'}> +CONFIG_SCSI_MPT2SAS_LOGGING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_SCSI_MPT3SAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_MPT3SAS_MAX_SGE policy<{'amd64': '128', 'arm64': '128', 'armhf': '128', 'i386': '128', 'powerpc': '128', 'ppc64el': '128'}> +CONFIG_SCSI_MPT3SAS_LOGGING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_SCSI_UFSHCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_UFSHCD_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SCSI_UFSHCD_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SCSI_UFS_QCOM policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_SCSI_HPTIOP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_BUSLOGIC policy<{'amd64': 'm', 'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_SCSI_FLASHPOINT policy<{'amd64': 'y', 'i386': 'y', 'powerpc-powerpc-e500mc': 'y', 'powerpc-powerpc-smp': 'y'}> +CONFIG_VMWARE_PVSCSI policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_XEN_SCSI_FRONTEND policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_HYPERV_STORAGE policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_LIBFC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_LIBFCOE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_FCOE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_FCOE_FNIC policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SCSI_SNIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_SNIC_DEBUG_FS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_SCSI_DMX3191D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_DTC3280 policy<{'i386': 'm'}> +CONFIG_SCSI_FUTURE_DOMAIN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_GDTH policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SCSI_ISCI policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SCSI_GENERIC_NCR5380 policy<{'i386': 'm'}> +CONFIG_SCSI_GENERIC_NCR5380_MMIO policy<{'i386': 'm'}> +CONFIG_SCSI_GENERIC_NCR53C400 policy<{'i386': 'y'}> +CONFIG_SCSI_IPS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_IBMVSCSI policy<{'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_SCSI_IBMVFC policy<{'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_SCSI_IBMVFC_TRACE policy<{'powerpc-generic': 'y', 'ppc64el': 'y'}> +CONFIG_SCSI_INITIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_INIA100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_PPA policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SCSI_IMM policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SCSI_IZIP_EPP16 policy<{'amd64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_SCSI_IZIP_SLOW_CTR policy<{'amd64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_SCSI_NCR53C406A policy<{'i386': 'm'}> +CONFIG_SCSI_STEX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_IPR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SCSI_IPR_TRACE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SCSI_IPR_DUMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SCSI_PAS16 policy<{'i386': 'm'}> +CONFIG_SCSI_QLOGIC_FAS policy<{'i386': 'm'}> +CONFIG_SCSI_QLOGIC_1280 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_QLA_FC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_TCM_QLA2XXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SCSI_QLA_ISCSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_LPFC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_LPFC_DEBUG_FS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_SCSI_SIM710 policy<{'i386': 'm'}> +CONFIG_SCSI_SYM53C416 policy<{'i386': 'm'}> +CONFIG_SCSI_DC395x policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_AM53C974 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_T128 policy<{'i386': 'm'}> +CONFIG_SCSI_ULTRASTOR policy<{'i386': 'm'}> +CONFIG_SCSI_NSP32 policy<{'armhf': 'm', 'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_SCSI_WD719X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_DEBUG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCSI_MESH policy<{'powerpc-powerpc-smp': 'm'}> +CONFIG_SCSI_MESH_SYNC_RATE policy<{'powerpc-powerpc-smp': '5'}> +CONFIG_SCSI_MESH_RESET_DELAY_MS policy<{'powerpc-powerpc-smp': '4000'}> +CONFIG_SCSI_MAC53C94 policy<{'powerpc-powerpc-smp': 'm'}> +CONFIG_ZFCP policy<{'s390x': 'm'}> +CONFIG_SCSI_PMCRAID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_PM8001 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_BFA_FC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_VIRTIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCSI_CHELSIO_FCOE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_AIC79XX_CMDS_PER_DEVICE policy<{'amd64': '32', 'arm64': '32', 'armhf': '32', 'i386': '32', 'powerpc': '32', 'ppc64el': '32'}> +CONFIG_AIC79XX_RESET_DELAY_MS policy<{'amd64': '5000', 'arm64': '5000', 'armhf': '5000', 'i386': '5000', 'powerpc': '5000', 'ppc64el': '5000'}> +CONFIG_AIC79XX_DEBUG_ENABLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_AIC79XX_DEBUG_MASK policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'i386': '0', 'powerpc': '0', 'ppc64el': '0'}> +CONFIG_AIC79XX_REG_PRETTY_PRINT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> SCSI device support >> SCSI device support >> SCSI low-level drivers >> Adaptec AIC7xxx Fast -> U160 support (New Driver) +CONFIG_SCSI_AIC7XXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_AIC7XXX_CMDS_PER_DEVICE policy<{'amd64': '8', 'arm64': '8', 'armhf': '8', 'i386': '8', 'powerpc': '8', 'ppc64el': '8'}> +CONFIG_AIC7XXX_RESET_DELAY_MS policy<{'amd64': '5000', 'arm64': '5000', 'armhf': '5000', 'i386': '5000', 'powerpc': '5000', 'ppc64el': '5000'}> +CONFIG_AIC7XXX_DEBUG_ENABLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_AIC7XXX_DEBUG_MASK policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'i386': '0', 'powerpc': '0', 'ppc64el': '0'}> +CONFIG_AIC7XXX_REG_PRETTY_PRINT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> SCSI device support >> SCSI device support >> SCSI low-level drivers >> EATA ISA/EISA/PCI (DPT and generic EATA/DMA-compliant boards) support +CONFIG_SCSI_EATA policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SCSI_EATA_TAGGED_QUEUE policy<{'amd64': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SCSI_EATA_LINKED_COMMANDS policy<{'amd64': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SCSI_EATA_MAX_TAGS policy<{'amd64': '16', 'i386': '16', 'powerpc': '16', 'ppc64el': '16'}> + +# Menu: Device Drivers >> SCSI device support >> SCSI device support >> SCSI low-level drivers >> NCR Quad 720 MCA SCSI support + +# 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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE policy<{'amd64': '1', 'arm64': '1', 'armhf': '1', 'i386': '1', 'powerpc': '1', 'ppc64el': '1'}> +CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS policy<{'amd64': '16', 'arm64': '16', 'armhf': '16', 'i386': '16', 'powerpc': '16', 'ppc64el': '16'}> +CONFIG_SCSI_SYM53C8XX_MAX_TAGS policy<{'amd64': '64', 'arm64': '64', 'armhf': '64', 'i386': '64', 'powerpc': '64', 'ppc64el': '64'}> +CONFIG_SCSI_SYM53C8XX_MMIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> SCSI device support >> SCSI device support >> SCSI low-level drivers >> UltraStor 14F/34F support +CONFIG_SCSI_U14_34F policy<{'i386': 'm'}> +CONFIG_SCSI_U14_34F_TAGGED_QUEUE policy<{'i386': 'y'}> +CONFIG_SCSI_U14_34F_LINKED_COMMANDS policy<{'i386': 'y'}> +CONFIG_SCSI_U14_34F_MAX_TAGS policy<{'i386': '8'}> + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers +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_QCOM_GSBI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_PM policy<{'armhf': 'y'}> +CONFIG_QCOM_SMD policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_SMD_RPM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_SMEM policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> TI SOC drivers support +CONFIG_SOC_TI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +# +CONFIG_SOC_TI flag + +# Menu: Device Drivers >> SPI support +CONFIG_SPI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_SPI_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_SPI_ALTERA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_BITBANG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_BUTTERFLY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_CADENCE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_DLN2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_IMX policy<{'armhf-generic': 'm'}> +CONFIG_SPI_LM70_LLP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_FSL_SPI policy<{'arm64': 'y', 'armhf': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SPI_FSL_DSPI policy<{'armhf-generic': 'm'}> +CONFIG_SPI_FSL_ESPI policy<{'powerpc-powerpc64-emb': 'y', 'powerpc-powerpc-e500mc': 'y'}> +CONFIG_SPI_MESON_SPIFC policy<{'armhf': 'm'}> +CONFIG_SPI_MT65XX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_OC_TINY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_OMAP24XX policy<{'armhf': 'y'}> +CONFIG_SPI_TI_QSPI policy<{'armhf': 'm'}> +CONFIG_SPI_ORION policy<{'armhf': 'm'}> +CONFIG_SPI_PL022 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_PXA2XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_ROCKCHIP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_RSPI policy<{'armhf': 'm'}> +CONFIG_SPI_QUP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_S3C64XX policy<{'armhf': 'm'}> +CONFIG_SPI_SC18IS602 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_SH_MSIOF policy<{'armhf': 'm'}> +CONFIG_SPI_SH_HSPI policy<{'armhf': 'm'}> +CONFIG_SPI_TEGRA114 policy<{'armhf-generic': 'm'}> +CONFIG_SPI_TEGRA20_SFLASH policy<{'armhf-generic': 'm'}> +CONFIG_SPI_TEGRA20_SLINK policy<{'armhf-generic': 'm'}> +CONFIG_SPI_TOPCLIFF_PCH policy<{'i386': 'm'}> +CONFIG_SPI_XCOMM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_XILINX policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_SPI_ZYNQMP_GQSPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_DESIGNWARE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_DW_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_DW_MID_DMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SPI_DW_MMIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_SPIDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_TLE62X0 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> SPMI support +CONFIG_SPMI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SPMI_MSM_PMIC_ARB policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Serial ATA and Parallel ATA drivers (libata) +CONFIG_ATA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ATA_VERBOSE_ERROR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ATA_ACPI policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +CONFIG_SATA_ZPODD policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +CONFIG_SATA_PMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SATA_AHCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SATA_AHCI_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AHCI_IMX policy<{'armhf-generic': 'y'}> +CONFIG_AHCI_CEVA policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AHCI_MVEBU policy<{'armhf': 'm'}> +CONFIG_AHCI_TEGRA policy<{'armhf-generic': 'm'}> +CONFIG_AHCI_XGENE policy<{'arm64': 'm'}> +CONFIG_SATA_FSL policy<{'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_SATA_INIC162X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SATA_ACARD_AHCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SATA_SIL24 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_PDC_ADMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SATA_QSTOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SATA_SX4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_CMD640_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_ISAPNP policy<{'i386': 'm'}> +CONFIG_PATA_MPIIX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_NS87410 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_OPTI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_PCMCIA policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_PATA_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_OF_PLATFORM policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_QDI policy<{'i386': 'm'}> +CONFIG_PATA_RZ1000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_WINBOND_VLB policy<{'i386': 'm'}> +CONFIG_PATA_LEGACY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ATA_PIIX policy<{'amd64': 'y', 'arm64': 'm', 'armhf': 'm', 'i386': 'y', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SATA_HIGHBANK policy<{'armhf': 'm'}> +CONFIG_SATA_MV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SATA_NV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SATA_PROMISE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SATA_RCAR policy<{'armhf': 'm'}> +CONFIG_SATA_SIL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SATA_SIS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SATA_SVW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'y', 'ppc64el': 'm'}> +CONFIG_SATA_ULI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SATA_VIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SATA_VITESSE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_ALI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_AMD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_ARTOP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_ATIIXP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_ATP867X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_CMD64X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_CS5520 policy<{'i386': 'm'}> +CONFIG_PATA_CS5530 policy<{'i386': 'm'}> +CONFIG_PATA_CS5535 policy<{'i386': 'm'}> +CONFIG_PATA_CS5536 policy<{'i386': 'm'}> +CONFIG_PATA_CYPRESS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_EFAR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_HPT366 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_HPT37X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_HPT3X2N policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_HPT3X3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_HPT3X3_DMA policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_PATA_IMX policy<{'armhf-generic': 'm'}> +CONFIG_PATA_IT8213 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_IT821X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_JMICRON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_MACIO policy<{'powerpc-generic': 'y', 'powerpc-powerpc-smp': 'y'}> +CONFIG_PATA_MARVELL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_NETCELL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_NINJA32 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_NS87415 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_OLDPIIX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_OPTIDMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_PDC2027X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_PDC_OLD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_RADISYS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_RDC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_SC1200 policy<{'i386': 'm'}> +CONFIG_PATA_SCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_SERVERWORKS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_SIL680 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_SIS policy<{'amd64': 'y', 'arm64': 'm', 'armhf': 'm', 'i386': 'y', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_TOSHIBA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_TRIFLEX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_VIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_WINBOND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_ACPI policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_ATA_GENERIC policy<{'amd64': 'y', 'arm64': 'm', 'armhf': 'm', 'i386': 'y', 'powerpc': 'm', 'ppc64el': 'm'}> +# +CONFIG_PATA_HPT3X3_DMA note +CONFIG_ATA_PIIX mark note + +# Menu: Device Drivers >> Sonics Silicon Backplane +CONFIG_SSB_PCIHOST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SSB_PCMCIAHOST policy<{'amd64': 'n', 'i386': 'n', 'powerpc': 'n'}> +CONFIG_SSB_SDIOHOST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SSB_DRIVER_PCICORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Sonics Silicon Backplane >> Sonics Silicon Backplane support +CONFIG_SSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SSB_SILENT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_SSB_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_SSB_DRIVER_GPIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Sony MemoryStick card support +CONFIG_MEMSTICK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MEMSTICK_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_MEMSTICK_UNSAFE_RESUME policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_MSPRO_BLOCK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MS_BLOCK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEMSTICK_TIFM_MS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEMSTICK_JMICRON_38X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEMSTICK_R592 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEMSTICK_REALTEK_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MEMSTICK_REALTEK_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Sound card support +CONFIG_SOUND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SOUND_OSS_CORE_PRECLAIM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SEQUENCER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SEQ_DUMMY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_MIXER_OSS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_PCM_OSS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_SND_SEQUENCER_OSS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_SND_HRTIMER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SEQ_HRTIMER_DEFAULT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SND_DYNAMIC_MINORS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SND_MAX_CARDS policy<{'amd64': '32', 'arm64': '32', 'armhf': '32', 'i386': '32', 'powerpc': '32', 'ppc64el': '32'}> +CONFIG_SND_SUPPORT_OLD_API policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SND_PROC_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SND_VERBOSE_PROCFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SND_VERBOSE_PRINTK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_SND_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_SND_HDA_PREALLOC_SIZE policy<{'amd64': '64', 'arm64': '64', 'armhf': '64', 'i386': '64', 'powerpc': '64', 'ppc64el': '64'}> +# +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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_DESIGNWARE_I2S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_SND_KIRKWOOD_SOC policy<{'armhf': 'm'}> +CONFIG_SND_KIRKWOOD_SOC_ARMADA370_DB policy<{'armhf': 'm'}> +CONFIG_SND_MFLD_MACHINE policy<{'i386': 'm'}> +CONFIG_SND_SOC_INTEL_HASWELL_MACH policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SND_SOC_INTEL_BYT_RT5640_MACH policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SND_SOC_INTEL_BYT_MAX98090_MACH policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SND_SOC_INTEL_BROADWELL_MACH policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SND_SOC_INTEL_CHT_BSW_RT5645_MACH policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SND_SOC_INTEL_CHT_BSW_MAX98090_TI_MACH policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SND_SOC_MEDIATEK policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_MT8173_MAX98090 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_MT8173_RT5650_RT5676 policy<{'arm64': 'm', 'armhf': 'm'}> +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_XTFPGA_I2S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ZX296702_SPDIF policy<{'armhf': 'm'}> +CONFIG_ZX296702_I2S policy<{'armhf': 'm'}> +CONFIG_SND_SIMPLE_CARD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +# +CONFIG_SND_SOC note + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> ASoC support for Rockchip + +# 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_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_ODROIDX2 policy<{'armhf': 'm'}> +CONFIG_SND_SOC_ARNDALE_RT5631_ALC5631 policy<{'armhf': 'm'}> + +# 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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_ADAU1701 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_AK4104 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_AK4554 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_AK4642 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_AK5386 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_ALC5623 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS35L32 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS42L51_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS42L52 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS42L56 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS42L73 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS4265 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS4270 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS4271_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS4271_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS42XX8_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS4349 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_HDMI_CODEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_ES8328 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_GTM601 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_PCM1681 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_PCM1792A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_PCM512x_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_PCM512x_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_RT5631 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_SGTL5000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic': 'y', 'armhf-generic-lpae': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_SIRF_AUDIO_CODEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_SPDIF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_SSM2602_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_SSM2602_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_SSM4567 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_STA32X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_STA350 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_STI_SAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TAS2552 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TAS5086 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TAS571X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TFA9879 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TLV320AIC23_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TLV320AIC23_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TLV320AIC31XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TLV320AIC3X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TS3A227E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8510 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8523 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8580 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8711 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8728 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8731 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8737 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8741 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8750 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8753 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8770 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8776 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8804_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8804_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8903 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8962 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8978 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TPA6130A2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +# +CONFIG_SND_SOC_HDMI_CODEC flag +CONFIG_SND_SOC_SGTL5000 flag + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> SoC AC97 Audio for the ADI BF5xx chip + +# 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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_FSL_SAI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_FSL_SSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic': 'y', 'armhf-generic-lpae': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_FSL_SPDIF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_FSL_ESAI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_IMX_AUDMUX policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic': 'y', 'armhf-generic-lpae': 'm', 'i386': 'm', 'powerpc': '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 +CONFIG_SND_POWERPC_SOC policy<{'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> + +# 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<{'armhf-generic': 'y'}> +CONFIG_SND_SOC_EUKREA_TLV320 policy<{'armhf-generic': 'm'}> +CONFIG_SND_SOC_IMX_WM8962 policy<{'armhf-generic': 'm'}> +CONFIG_SND_SOC_IMX_ES8328 policy<{'armhf-generic': 'm'}> +CONFIG_SND_SOC_IMX_SGTL5000 policy<{'armhf-generic': 'y'}> +CONFIG_SND_SOC_IMX_SPDIF policy<{'armhf-generic': 'm'}> +CONFIG_SND_SOC_IMX_MC13783 policy<{'armhf-generic': 'm'}> +CONFIG_SND_SOC_FSL_ASOC_CARD policy<{'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 Texas Instruments chips using eDMA +CONFIG_SND_EDMA_SOC policy<{'armhf-generic': 'm'}> +CONFIG_SND_DAVINCI_SOC_MCASP policy<{'armhf': 'm'}> +CONFIG_SND_AM33XX_SOC_EVM policy<{'armhf-generic': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> SoC Audio for Texas Instruments chips using eDMA >> DM365 codec select + +# 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', 'i386': 'm', 'powerpc': '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<{'armhf-generic': 'm'}> +CONFIG_SND_SOC_TEGRA_RT5640 policy<{'armhf-generic': 'm'}> +CONFIG_SND_SOC_TEGRA_WM8753 policy<{'armhf-generic': 'm'}> +CONFIG_SND_SOC_TEGRA_WM8903 policy<{'armhf-generic': 'm'}> +CONFIG_SND_SOC_TEGRA_WM9712 policy<{'armhf-generic': 'm'}> +CONFIG_SND_SOC_TEGRA_TRIMSLICE policy<{'armhf-generic': 'm'}> +CONFIG_SND_SOC_TEGRA_ALC5632 policy<{'armhf-generic': 'm'}> +CONFIG_SND_SOC_TEGRA_MAX98090 policy<{'armhf-generic': 'm'}> +CONFIG_SND_SOC_TEGRA_RT5677 policy<{'armhf-generic': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> SoC Audio for the Texas Instruments OMAP chips +CONFIG_SND_OMAP_SOC policy<{'armhf': 'y'}> +CONFIG_SND_OMAP_SOC_HDMI_AUDIO policy<{'armhf': 'm'}> +CONFIG_SND_OMAP_SOC_RX51 policy<{'armhf': 'm'}> +CONFIG_SND_OMAP_SOC_OMAP_TWL4030 policy<{'armhf': 'y'}> +CONFIG_SND_OMAP_SOC_OMAP_ABE_TWL6040 policy<{'armhf-generic': 'm'}> +CONFIG_SND_OMAP_SOC_OMAP3_PANDORA policy<{'armhf-generic': 'm'}> +# +CONFIG_SND_OMAP_SOC note +CONFIG_SND_OMAP_SOC_OMAP_TWL4030 note + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> SoC Audio support for SuperH +CONFIG_SND_SOC_SH4_FSI policy<{'armhf': 'm'}> +CONFIG_SND_SOC_RCAR policy<{'armhf': 'm'}> +CONFIG_SND_SOC_RSRC_CARD policy<{'armhf': '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 >> SoC I2S Audio for the ADI Blackfin chip + +# 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 +CONFIG_SND_AOA policy<{'powerpc-generic': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_SND_AOA_FABRIC_LAYOUT policy<{'powerpc-generic': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_SND_AOA_ONYX policy<{'powerpc-generic': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_SND_AOA_TAS policy<{'powerpc-generic': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_SND_AOA_TOONIE policy<{'powerpc-generic': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_SND_AOA_SOUNDBUS policy<{'powerpc-generic': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_SND_AOA_SOUNDBUS_I2S policy<{'powerpc-generic': 'm', 'powerpc-powerpc-smp': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> Atmel devices (AVR32 and AT91) + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> FireWire sound devices +CONFIG_SND_FIREWIRE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SND_DICE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_OXFW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_ISIGHT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SCS1X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_FIREWORKS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_BEBOB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SND_PCSP policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SND_DUMMY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_ALOOP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_VIRMIDI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_MTPAV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_MTS64 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SERIAL_U16550 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_MPU401 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_PORTMAN2X4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_AC97_POWER_SAVE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SND_AC97_POWER_SAVE_DEFAULT policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'i386': '0', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_HDA_TEGRA policy<{'armhf-generic': 'm'}> +CONFIG_SND_HDA_HWDEP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SND_HDA_RECONFIG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SND_HDA_INPUT_BEEP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SND_HDA_INPUT_BEEP_MODE policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'i386': '0', 'powerpc': '0', 'ppc64el': '0'}> +CONFIG_SND_HDA_PATCH_LOADER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SND_HDA_CODEC_REALTEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_HDA_CODEC_ANALOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_HDA_CODEC_SIGMATEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_HDA_CODEC_VIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_HDA_CODEC_HDMI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_HDA_CODEC_CIRRUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_HDA_CODEC_CONEXANT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_HDA_CODEC_CA0110 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_HDA_CODEC_CA0132 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_HDA_CODEC_CA0132_DSP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SND_HDA_CODEC_CMEDIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_HDA_CODEC_SI3054 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_HDA_GENERIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_HDA_POWER_SAVE_DEFAULT policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'i386': '0', 'powerpc': '0', 'ppc64el': '0'}> +# +CONFIG_SND_HDA_RECONFIG note + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ISA sound devices +CONFIG_SND_ISA policy<{'i386': 'y'}> +CONFIG_SND_ADLIB policy<{'i386': 'm'}> +CONFIG_SND_AD1816A policy<{'i386': 'm'}> +CONFIG_SND_AD1848 policy<{'i386': 'm'}> +CONFIG_SND_ALS100 policy<{'i386': 'm'}> +CONFIG_SND_AZT1605 policy<{'i386': 'm'}> +CONFIG_SND_AZT2316 policy<{'i386': 'm'}> +CONFIG_SND_AZT2320 policy<{'i386': 'm'}> +CONFIG_SND_CMI8328 policy<{'i386': 'm'}> +CONFIG_SND_CMI8330 policy<{'i386': 'm'}> +CONFIG_SND_CS4231 policy<{'i386': 'm'}> +CONFIG_SND_CS4236 policy<{'i386': 'm'}> +CONFIG_SND_ES1688 policy<{'i386': 'm'}> +CONFIG_SND_ES18XX policy<{'i386': 'm'}> +CONFIG_SND_SC6000 policy<{'i386': 'm'}> +CONFIG_SND_GUSCLASSIC policy<{'i386': 'm'}> +CONFIG_SND_GUSEXTREME policy<{'i386': 'm'}> +CONFIG_SND_GUSMAX policy<{'i386': 'm'}> +CONFIG_SND_INTERWAVE policy<{'i386': 'm'}> +CONFIG_SND_INTERWAVE_STB policy<{'i386': 'm'}> +CONFIG_SND_JAZZ16 policy<{'i386': 'm'}> +CONFIG_SND_OPL3SA2 policy<{'i386': 'm'}> +CONFIG_SND_OPTI92X_AD1848 policy<{'i386': 'm'}> +CONFIG_SND_OPTI92X_CS4231 policy<{'i386': 'm'}> +CONFIG_SND_OPTI93X policy<{'i386': 'm'}> +CONFIG_SND_MIRO policy<{'i386': 'm'}> +CONFIG_SND_SB8 policy<{'i386': 'm'}> +CONFIG_SND_SB16 policy<{'i386': 'm'}> +CONFIG_SND_SBAWE policy<{'i386': 'm'}> +CONFIG_SND_SB16_CSP policy<{'i386': 'y'}> +CONFIG_SND_SSCAPE policy<{'i386': 'm'}> +CONFIG_SND_WAVEFRONT policy<{'i386': 'm'}> +CONFIG_SND_MSND_PINNACLE policy<{'i386': 'm'}> +CONFIG_SND_MSND_CLASSIC policy<{'i386': 'm'}> + +# 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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SND_AD1889 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_ALS300 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_ALS4000 policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_ALI5451 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_ASIHPI policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SND_ATIIXP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_ATIIXP_MODEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_AU8810 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_AU8820 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_AU8830 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_AW2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_AZT3328 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_BT87X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_BT87X_OVERCLOCK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_SND_CA0106 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_CMIPCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_OXYGEN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_CS4281 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_CS46XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_CS46XX_NEW_DSP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SND_CS5530 policy<{'i386': 'm'}> +CONFIG_SND_CS5535AUDIO policy<{'i386': 'm'}> +CONFIG_SND_CTXFI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_DARLA20 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_GINA20 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_LAYLA20 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_DARLA24 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_GINA24 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_LAYLA24 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_MONA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_MIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_ECHO3G policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_INDIGO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_INDIGOIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_INDIGODJ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_INDIGOIOX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_INDIGODJX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_EMU10K1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_EMU10K1X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_ENS1370 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_ENS1371 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_ES1938 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_ES1968 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_ES1968_INPUT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SND_ES1968_RADIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SND_FM801 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_FM801_TEA575X_BOOL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SND_HDSP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_HDSPM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_ICE1712 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_ICE1724 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_INTEL8X0 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_INTEL8X0M policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_KORG1212 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_LOLA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_LX6464ES policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_MAESTRO3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_MAESTRO3_INPUT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SND_MIXART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_NM256 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_PCXHR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_RIPTIDE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_RME32 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_RME96 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_RME9652 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SIS7019 policy<{'i386': 'm'}> +CONFIG_SND_SONICVIBES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_TRIDENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_VIA82XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_VIA82XX_MODEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_VIRTUOSO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_VX222 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_YMFPCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> PCMCIA sound devices +CONFIG_SND_PCMCIA policy<{'amd64': 'y', 'i386': 'y', 'powerpc': 'y'}> +CONFIG_SND_VXPOCKET policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_SND_PDAUDIOCF policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> PowerPC sound devices +CONFIG_SND_PPC policy<{'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SND_POWERMAC policy<{'powerpc-generic': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_SND_POWERMAC_AUTO_DRC policy<{'powerpc-generic': 'y', 'powerpc-powerpc-smp': 'y'}> +CONFIG_SND_PS3 policy<{'powerpc-generic': 'm'}> +CONFIG_SND_PS3_DEFAULT_START_DELAY policy<{'powerpc-generic': '2000'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> SPI sound devices +CONFIG_SND_SPI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': '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 >> 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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SND_USB_AUDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_USB_UA101 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_USB_USX2Y policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_USB_CAIAQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_USB_CAIAQ_INPUT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SND_USB_US122L policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SND_USB_6FIRE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_USB_HIFACE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_BCD2000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_USB_POD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_USB_PODHD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_USB_TONEPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SND_USB_VARIAX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Open Sound System (DEPRECATED) +CONFIG_SOUND_PRIME policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Sound card support >> Open Sound System (DEPRECATED) >> OSS sound modules + +# Menu: Device Drivers >> Sound card support >> Open Sound System (DEPRECATED) >> Support for Turtle Beach MultiSound Classic, Tahiti, Monterey + +# Menu: Device Drivers >> Sound card support >> Open Sound System (DEPRECATED) >> Support for Turtle Beach MultiSound Pinnacle, Fiji + +# Menu: Device Drivers >> Staging drivers +CONFIG_STAGING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_SLICOSS policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_PRISM2_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTL8192U policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_R8712U policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_R8188EU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_88EU_AP_MODE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_R8723AU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_8723AU_AP_MODE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_8723AU_BT_COEXIST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_RTS5208 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VT6655 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VT6656 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_SM750 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_XGI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_EMXX policy<{'armhf': 'y'}> +CONFIG_FT1000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FT1000_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FT1000_PCMCIA policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_STAGING_BOARD policy<{'arm64': 'n', 'armhf': 'n', 'powerpc-powerpc64-emb': 'n', 'powerpc-powerpc-e500mc': 'n'}> +CONFIG_LTE_GDM724X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FIREWIRE_SERIAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FWTTY_MAX_TOTAL_PORTS policy<{'amd64': '64', 'arm64': '64', 'armhf': '64', 'i386': '64', 'powerpc': '64', 'ppc64el': '64'}> +CONFIG_FWTTY_MAX_CARD_PORTS policy<{'amd64': '32', 'arm64': '32', 'armhf': '32', 'i386': '32', 'powerpc': '32', 'ppc64el': '32'}> +CONFIG_MTD_SPINAND_MT29F policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_SPINAND_ONDIEECC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_LNET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LNET_MAX_PAYLOAD policy<{'amd64': '1048576', 'arm64': '1048576', 'armhf': '1048576', 'i386': '1048576', 'powerpc': '1048576', 'ppc64el': '1048576'}> +CONFIG_LNET_SELFTEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LNET_XPRT_IB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DGNC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DGAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GS_FPGABOOT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CRYPTO_SKEIN policy<{'amd64': 'y'}> +CONFIG_COMMON_CLK_XLNX_CLKWZRD policy<{'arm64': 'n', 'armhf': 'n', 'powerpc-powerpc64-emb': 'n', 'powerpc-powerpc-e500mc': 'n'}> +CONFIG_FSL_MC_BUS policy<{'arm64': 'm'}> +# +CONFIG_STAGING flag + +# Menu: Device Drivers >> Staging drivers >> Android + +# Menu: Device Drivers >> Staging drivers >> Android >> Ion Memory Manager + +# Menu: Device Drivers >> Staging drivers >> Data acquisition support (comedi) +CONFIG_COMEDI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_COMEDI_DEFAULT_BUF_SIZE_KB policy<{'amd64': '2048', 'arm64': '2048', 'armhf': '2048', 'i386': '2048', 'powerpc': '2048', 'ppc64el': '2048'}> +CONFIG_COMEDI_DEFAULT_BUF_MAXSIZE_KB policy<{'amd64': '20480', 'arm64': '20480', 'armhf': '20480', 'i386': '20480', 'powerpc': '20480', 'ppc64el': '20480'}> +CONFIG_COMEDI_8255_SA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_KCOMEDILIB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> Data acquisition support (comedi) >> Comedi ISA and PC/104 drivers +CONFIG_COMEDI_ISA_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_COMEDI_PCL711 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_PCL724 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_PCL726 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_PCL730 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_PCL812 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_PCL816 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_PCL818 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_PCM3724 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_AMPLC_DIO200_ISA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_AMPLC_PC236_ISA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_AMPLC_PC263_ISA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_RTI800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_RTI802 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DAC02 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DAS16M1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DAS08_ISA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DAS16 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DAS800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DAS1800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DAS6402 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DT2801 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DT2811 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DT2814 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DT2815 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DT2817 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DT282X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DMM32AT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_UNIOXX5 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_FL512 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_AIO_AIO12_8 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_AIO_IIRO_16 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_II_PCI20KC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_C6XDIGIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_MPC624 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADQ12B policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_NI_AT_A2150 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_NI_AT_AO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_NI_ATMIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_NI_ATMIO16D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_NI_LABPC_ISA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_PCMAD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_PCMDA12 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_PCMMIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_PCMUIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_MULTIQ3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_S526 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> Data acquisition support (comedi) >> Comedi PCI drivers +CONFIG_COMEDI_PCI_DRIVERS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_8255_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADDI_APCI_1032 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADDI_APCI_1500 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADDI_APCI_1516 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADDI_APCI_1564 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADDI_APCI_16XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADDI_APCI_2032 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADDI_APCI_2200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADDI_APCI_3120 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADDI_APCI_3501 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADDI_APCI_3XXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADL_PCI6208 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADL_PCI7X3X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADL_PCI8164 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADL_PCI9111 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADL_PCI9118 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADV_PCI1710 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADV_PCI1723 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADV_PCI1724 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADV_PCI_DIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_AMPLC_DIO200_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_AMPLC_PC236_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_AMPLC_PC263_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_AMPLC_PCI224 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_AMPLC_PCI230 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_CONTEC_PCI_DIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DAS08_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DT3000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DYNA_PCI10XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_GSC_HPDI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_MF6X4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ICP_MULTI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DAQBOARD2000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_JR3_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_KE_COUNTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_CB_PCIDAS64 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_CB_PCIDAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_CB_PCIDDA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_CB_PCIMDAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_CB_PCIMDDA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ME4000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ME_DAQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_NI_6527 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_NI_65XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_NI_660X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_NI_670X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_NI_LABPC_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_NI_PCIDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_NI_PCIMIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_RTD520 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_S626 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> Data acquisition support (comedi) >> Comedi PCMCIA drivers +CONFIG_COMEDI_PCMCIA_DRIVERS policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_COMEDI_CB_DAS16_CS policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_COMEDI_DAS08_CS policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_COMEDI_NI_DAQ_700_CS policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_COMEDI_NI_DAQ_DIO24_CS policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_COMEDI_NI_LABPC_CS policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_COMEDI_NI_MIO_CS policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_COMEDI_QUATECH_DAQP_CS policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> Data acquisition support (comedi) >> Comedi USB drivers +CONFIG_COMEDI_USB_DRIVERS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DT9812 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_NI_USB6501 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_USBDUX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_USBDUXFAST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_USBDUXSIGMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_VMK80XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> Data acquisition support (comedi) >> Comedi misc drivers +CONFIG_COMEDI_MISC_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_COMEDI_BOND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_TEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_PARPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_SERIAL2002 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_SSV_DNP policy<{'i386': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> GCT GDM72xx WiMAX support +CONFIG_WIMAX_GDM72XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_WIMAX_GDM72XX_QOS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_WIMAX_GDM72XX_K_MODE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_WIMAX_GDM72XX_WIMAX2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_WIMAX_GDM72XX_USB_PM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Staging drivers >> GCT GDM72xx WiMAX support >> Select interface +CONFIG_WIMAX_GDM72XX_USB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_WIMAX_GDM72XX_SDIO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Staging drivers >> IIO staging drivers +CONFIG_IIO_PERIODIC_RTC_TRIGGER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_SIMPLE_DUMMY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_SIMPLE_DUMMY_EVENTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_IIO_SIMPLE_DUMMY_BUFFER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +# +CONFIG_IIO_SIMPLE_DUMMY_EVENTS note +CONFIG_IIO_SIMPLE_DUMMY_BUFFER note + +# Menu: Device Drivers >> Staging drivers >> IIO staging drivers >> Accelerometers +CONFIG_ADIS16201 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ADIS16203 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ADIS16204 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ADIS16209 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ADIS16220 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ADIS16240 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LIS3L02DQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SCA3000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> IIO staging drivers >> Active energy metering IC +CONFIG_ADE7753 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ADE7754 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ADE7758 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ADE7759 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ADE7854 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ADE7854_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ADE7854_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ADT7316_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ADT7316_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> IIO staging drivers >> Analog to digital converters +CONFIG_AD7606 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD7606_IFACE_PARALLEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD7606_IFACE_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD7780 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD7816 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD7192 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD7280 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> IIO staging drivers >> Capacitance to digital converters +CONFIG_AD7150 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD7152 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD7746 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> IIO staging drivers >> Digital gyroscope sensors +CONFIG_ADIS16060 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> IIO staging drivers >> Direct Digital Synthesis +CONFIG_AD9832 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD9834 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> IIO staging drivers >> Light sensors +CONFIG_SENSORS_ISL29018 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ISL29028 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TSL2583 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TSL2x7x policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> IIO staging drivers >> Magnetometer sensors +CONFIG_SENSORS_HMC5843_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_HMC5843_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> IIO staging drivers >> Network Analyzer, Impedance Converters +CONFIG_AD5933 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> IIO staging drivers >> Resolver to digital converters +CONFIG_AD2S90 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD2S1200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AD2S1210 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> Lustre file system client support +CONFIG_LUSTRE_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LUSTRE_OBD_MAX_IOCTL_BUFFER policy<{'amd64': '8192', 'arm64': '8192', 'armhf': '8192', 'i386': '8192', 'powerpc': '8192', 'ppc64el': '8192'}> +CONFIG_LUSTRE_DEBUG_EXPENSIVE_CHECK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_LUSTRE_LLITE_LLOOP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm'}> +# +CONFIG_LUSTRE_FS flag + +# Menu: Device Drivers >> Staging drivers >> MOST driver +CONFIG_MOST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MOSTCORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AIM_CDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AIM_NETWORK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AIM_SOUND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AIM_V4L2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HDM_DIM2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HDM_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HDM_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> Media staging drivers +CONFIG_STAGING_MEDIA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_I2C_BCM2048 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_CXD2099 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_MN88472 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_MN88473 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> Media staging drivers >> Linux Infrared Remote Control IR receiver/transmitter drivers +CONFIG_LIRC_STAGING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_LIRC_BT829 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LIRC_IMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LIRC_PARALLEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LIRC_SASEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LIRC_SERIAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LIRC_SERIAL_TRANSMITTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_LIRC_SIR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LIRC_ZILOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> NV Tegra Embedded Controller SMBus Interface +CONFIG_MFD_NVEC policy<{'armhf-generic': 'm'}> +CONFIG_KEYBOARD_NVEC policy<{'armhf-generic': 'm'}> +CONFIG_SERIO_NVEC_PS2 policy<{'armhf-generic': 'm'}> +CONFIG_NVEC_POWER policy<{'armhf-generic': 'm'}> +CONFIG_NVEC_PAZ00 policy<{'armhf-generic': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> Parallel port LCD/Keypad Panel support +CONFIG_PANEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PANEL_PARPORT policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'i386': '0', 'powerpc': '0', 'ppc64el': '0'}> +CONFIG_PANEL_PROFILE policy<{'amd64': '5', 'arm64': '5', 'armhf': '5', 'i386': '5', 'powerpc': '5', 'ppc64el': '5'}> +CONFIG_PANEL_CHANGE_MESSAGE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Staging drivers >> Parallel port LCD/Keypad Panel support >> LCD type (0=none, 1=custom, 2=old //, 3=ks0074, 4=hantronix, 5=Nexcom) + +# Menu: Device Drivers >> Staging drivers >> 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 >> Staging drivers >> RDMA staging drivers +CONFIG_STAGING_RDMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_INFINIBAND_AMSO1100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_INFINIBAND_AMSO1100_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_INFINIBAND_EHCA policy<{'ppc64el': 'm'}> +CONFIG_INFINIBAND_IPATH policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> RDMA staging drivers >> Intel OPA Gen1 support +CONFIG_INFINIBAND_HFI1 policy<{'amd64': 'm'}> +CONFIG_HFI1_DEBUG_SDMA_ORDER policy<{'amd64': 'n'}> +CONFIG_HFI1_VERBS_31BIT_PSN policy<{'amd64': 'y'}> +CONFIG_SDMA_VERBOSITY policy<{'amd64': 'n'}> +CONFIG_PRESCAN_RXQ policy<{'amd64': 'n'}> + +# Menu: Device Drivers >> Staging drivers >> Speakup console speech + +# Menu: Device Drivers >> Staging drivers >> Speakup console speech >> Speakup core +CONFIG_SPEAKUP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SPEAKUP_SYNTH_ACNTSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SPEAKUP_SYNTH_ACNTPC policy<{'i386': 'm'}> +CONFIG_SPEAKUP_SYNTH_APOLLO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SPEAKUP_SYNTH_AUDPTR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SPEAKUP_SYNTH_BNS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SPEAKUP_SYNTH_DECTLK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SPEAKUP_SYNTH_DECEXT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SPEAKUP_SYNTH_DECPC policy<{'i386': 'm'}> +CONFIG_SPEAKUP_SYNTH_DTLK policy<{'i386': 'm'}> +CONFIG_SPEAKUP_SYNTH_KEYPC policy<{'i386': 'm'}> +CONFIG_SPEAKUP_SYNTH_LTLK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SPEAKUP_SYNTH_SOFT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SPEAKUP_SYNTH_SPKOUT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SPEAKUP_SYNTH_TXPRT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SPEAKUP_SYNTH_DUMMY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> Support for rtllib wireless devices +CONFIG_RTLLIB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTLLIB_CRYPTO_CCMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTLLIB_CRYPTO_TKIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTLLIB_CRYPTO_WEP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RTL8192E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_AGM1264K_FL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_BD663474 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_HX8340BN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_HX8347D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_HX8353D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_HX8357D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_ILI9163 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_ILI9320 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_ILI9325 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_ILI9340 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_ILI9341 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_ILI9481 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_ILI9486 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_PCD8544 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_RA8875 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_S6D02A1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_S6D1121 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_SSD1289 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_SSD1306 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_SSD1331 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_SSD1351 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_ST7735R policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_TINYLCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_TLS8204 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_UC1611 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_UC1701 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_UPD161704 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_WATTEROTT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_FLEX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_FBTFT_DEVICE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> Unisys SPAR driver support +CONFIG_UNISYSSPAR policy<{'amd64': 'y'}> +CONFIG_UNISYS_VISORBUS policy<{'amd64': 'm'}> +CONFIG_UNISYS_VISORNIC policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> WILC1000 support (WiFi only) + +# Menu: Device Drivers >> Staging drivers >> WILC1000 support (WiFi only) >> Bus Type + +# Menu: Device Drivers >> Staging drivers >> WILC1000 support (WiFi only) >> Memory Allocation + +# Menu: Device Drivers >> TI VLYNQ + +# Menu: Device Drivers >> USB support +CONFIG_USB_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_USB_LED_TRIG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> USB support >> ChipIdea Highspeed Dual Role Controller +CONFIG_USB_CHIPIDEA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_CHIPIDEA_UDC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CHIPIDEA_HOST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CHIPIDEA_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB +#CONFIG_USB_MUSB_OMAP2PLUS y +CONFIG_USB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_ANNOUNCE_NEW_DEVICES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_DEFAULT_PERSIST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_DYNAMIC_MINORS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_OTG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_USB_OTG_WHITELIST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_USB_OTG_BLACKLIST_HUB policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_USB_OTG_FSM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_USB_ULPI_BUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_MON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_WUSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_WUSB_CBAF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_WUSB_CBAF_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_USB_C67X00_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_OXU210HP_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_ISP116X_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_ISP1362_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_FUSBH200_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_FOTG210_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_MAX3421_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_UHCI_HCD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_U132_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SL811_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SL811_HCD_ISO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_SL811_CS policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_USB_R8A66597_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_RENESAS_USBHS_HCD policy<{'armhf': 'm'}> +CONFIG_USB_WHCI_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_HWA_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_IMX21_HCD policy<{'armhf-generic': 'm'}> +CONFIG_USB_HCD_BCMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'n', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_HCD_SSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'n', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_HCD_TEST_MODE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_USB_RENESAS_USBHS policy<{'armhf': 'm'}> +CONFIG_USB_ACM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_PRINTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_WDM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_TMC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_MDC800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_MICROTEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_ISP1760 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_USS720 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_EMI62 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_EMI26 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_ADUTUX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SEVSEG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_RIO500 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_LEGOTOWER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_LCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_LED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_CYPRESS_CY7C63 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_CYTHERM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_IDMOUSE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_FTDI_ELAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_APPLEDISPLAY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SISUSBVGA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SISUSBVGA_CON policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_USB_LD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_TRANCEVIBRATOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_IOWARRIOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_TEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_EHSET_TEST_FIXTURE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_ISIGHTFW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_YUREX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_EZUSB_FX2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_HSIC_USB3503 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_LINK_LAYER_TEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_CHAOSKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +# +CONFIG_USB_OTG note +CONFIG_USB_OTG_WHITELIST note +CONFIG_USB_OTG_BLACKLIST_HUB note +CONFIG_USB_OTG_FSM note> +CONFIG_USB_UHCI_HCD mark note flag +CONFIG_USB_HCD_BCMA note +CONFIG_USB_HCD_SSB note + +# 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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_DWC2_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_DWC2_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_USB_DWC2_TRACK_MISSED_SOFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': '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', 'i386': 'y', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_DWC3_ULPI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': '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', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_DWC3_QCOM policy<{'arm64': 'm', 'armhf': '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', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_USB_DWC3_GADGET policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_USB_DWC3_DUAL_ROLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_EHCI_ROOT_HUB_TT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_EHCI_TT_NEWSCHED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_XPS_USB_HCD_XILINX policy<{'powerpc-powerpc-e500mc': 'y', 'powerpc-powerpc-smp': 'y'}> +CONFIG_USB_EHCI_FSL policy<{'powerpc-powerpc64-emb': 'y', 'powerpc-powerpc-e500mc': 'y'}> +CONFIG_USB_EHCI_MXC policy<{'armhf-generic': 'm'}> +CONFIG_USB_EHCI_HCD_OMAP policy<{'armhf': 'm'}> +CONFIG_USB_EHCI_HCD_ORION policy<{'armhf': 'y'}> +CONFIG_USB_EHCI_MSM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_USB_EHCI_TEGRA policy<{'armhf-generic': 'm'}> +CONFIG_USB_EHCI_HCD_PPC_OF policy<{'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_EHCI_EXYNOS policy<{'armhf': 'y'}> +CONFIG_USB_EHCI_HCD_PLATFORM policy<{'amd64': 'y', 'arm64': 'm', 'armhf': 'n', 'i386': 'y', 'powerpc': 'y', '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', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_USB_ISP1760_GADGET_ROLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_USB_ISP1760_DUAL_ROLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> Inventra Highspeed Dual Role Controller (TI, ADI, AW, ...) +CONFIG_USB_MUSB_HDRC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'i386': 'm', 'powerpc': 'm', 'ppc64el': '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_HDRC note flag + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> Inventra Highspeed Dual Role Controller (TI, ADI, AW, ...) >> Disable DMA (always use PIO) +CONFIG_USB_INVENTRA_DMA policy<{'armhf': 'n'}> +CONFIG_USB_TI_CPPI41_DMA policy<{'armhf': 'n'}> +CONFIG_MUSB_PIO_ONLY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> Inventra Highspeed Dual Role Controller (TI, ADI, AW, ...) >> MUSB Mode Selection +CONFIG_USB_MUSB_HOST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_USB_MUSB_GADGET policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_USB_MUSB_DUAL_ROLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_OHCI_HCD_OMAP3 policy<{'armhf-generic': 'm'}> +CONFIG_USB_OHCI_HCD_PPC_OF_BE policy<{'powerpc': 'y', 'ppc64el': 'n'}> +CONFIG_USB_OHCI_HCD_PPC_OF_LE policy<{'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_USB_OHCI_HCD_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_OHCI_EXYNOS policy<{'armhf': 'y'}> +CONFIG_USB_OHCI_HCD_PLATFORM policy<{'amd64': 'y', 'arm64': 'm', 'armhf': 'n', 'i386': 'y', 'powerpc': 'y', '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SPEEDTOUCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_CXACRU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_UEAGLEATM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_XUSBATM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_STORAGE_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_USB_STORAGE_REALTEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REALTEK_AUTOPM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_STORAGE_DATAFAB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_STORAGE_FREECOM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_STORAGE_ISD200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_STORAGE_USBAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_STORAGE_SDDR09 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_STORAGE_SDDR55 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_STORAGE_JUMPSHOT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_STORAGE_ALAUDA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_STORAGE_ONETOUCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_STORAGE_KARMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_STORAGE_CYPRESS_ATACB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_STORAGE_ENE_UB6250 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_UAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_GENERIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_SERIAL_SIMPLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_AIRCABLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_ARK3116 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_BELKIN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_CH341 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_WHITEHEAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_DIGI_ACCELEPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_CP210X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_CYPRESS_M8 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_EMPEG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_FTDI_SIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_VISOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_IPAQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_IR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_EDGEPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_EDGEPORT_TI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_F81232 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_GARMIN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_IPW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_IUU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_KEYSPAN_PDA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_KLSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_KOBIL_SCT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_MCT_U232 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_METRO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_MOS7720 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_MOS7715_PARPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_SERIAL_MOS7840 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_MXUPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_NAVMAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_PL2303 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_OTI6858 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_QCAUX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_QUALCOMM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_SPCP8X5 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_SAFE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_SAFE_PADDED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_USB_SERIAL_SIERRAWIRELESS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_SYMBOL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_TI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_CYBERJACK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_XIRCOM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_OPTION policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_OMNINET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_OPTICON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_XSENS_MT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_WISHBONE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_SSU100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_QT2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_DEBUG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +# +CONFIG_USB_SERIAL_DEBUG note + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> USB Serial Converter support >> USB Keyspan USA-xxx Serial Driver +CONFIG_USB_SERIAL_KEYSPAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_KEYSPAN_MPR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_SERIAL_KEYSPAN_USA28 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_SERIAL_KEYSPAN_USA28X policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_SERIAL_KEYSPAN_USA28XA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_SERIAL_KEYSPAN_USA28XB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_SERIAL_KEYSPAN_USA19 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_SERIAL_KEYSPAN_USA18X policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_SERIAL_KEYSPAN_USA19W policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_SERIAL_KEYSPAN_USA19QW policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_SERIAL_KEYSPAN_USA19QI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_SERIAL_KEYSPAN_USA49W policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_SERIAL_KEYSPAN_USA49WLC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> USB/IP support +CONFIG_USBIP_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USBIP_VHCI_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USBIP_HOST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USBIP_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_XHCI_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_XHCI_MVEBU policy<{'armhf': 'm'}> +CONFIG_USB_XHCI_RCAR policy<{'armhf': 'm'}> +# +CONFIG_USB_XHCI_HCD mark note flag + +# Menu: Device Drivers >> USB support >> USB Gadget Support +CONFIG_USB_GADGET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GADGET_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_USB_GADGET_DEBUG_FILES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_USB_GADGET_DEBUG_FS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_USB_GADGET_VBUS_DRAW policy<{'amd64': '2', 'arm64': '2', 'armhf': '2', 'i386': '2', 'powerpc': '2', 'ppc64el': '2'}> +CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS policy<{'amd64': '2', 'arm64': '2', 'armhf': '2', 'i386': '2', 'powerpc': '2', 'ppc64el': '2'}> + +# Menu: Device Drivers >> USB support >> USB Gadget Support >> USB Gadget Drivers +CONFIG_USB_ZERO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_AUDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GADGET_UAC1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_ETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_ETH_RNDIS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_ETH_EEM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_G_NCM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GADGETFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_MASS_STORAGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GADGET_TARGET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_G_SERIAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_MIDI_GADGET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_G_PRINTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_CDC_COMPOSITE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_G_NOKIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_G_ACM_MS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_G_MULTI policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'm', 'i386': 'n', 'powerpc': 'n', '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_G_DBGP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_G_WEBCAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> USB support >> USB Gadget Support >> USB Gadget Drivers >> EHCI Debug Device mode +CONFIG_USB_G_DBGP_PRINTK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_USB_G_DBGP_SERIAL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> USB support >> USB Gadget Support >> USB Gadget Drivers >> Function Filesystem +CONFIG_USB_FUNCTIONFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_FUNCTIONFS_ETH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_FUNCTIONFS_RNDIS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_FUNCTIONFS_GENERIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> USB support >> USB Gadget Support >> USB Gadget Drivers >> USB functions configurable through configfs +CONFIG_USB_CONFIGFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_CONFIGFS_SERIAL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_ACM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_OBEX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_NCM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_ECM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_ECM_SUBSET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_RNDIS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_EEM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_PHONET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_MASS_STORAGE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_F_LB_SS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_F_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_F_UAC1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_F_UAC2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_F_MIDI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_F_HID policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_F_UVC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_F_PRINTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> USB support >> USB Gadget Support >> USB Peripheral Controller +CONFIG_USB_FSL_USB2 policy<{'armhf-generic': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> +CONFIG_USB_FUSB300 policy<{'armhf-generic': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_USB_FOTG210_UDC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GR_UDC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_R8A66597 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_RENESAS_USBHS_UDC policy<{'armhf': 'm'}> +CONFIG_USB_PXA27X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_MV_UDC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_MV_U3D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_M66592 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_USB_BDC_UDC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_BDC_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_AMD5536UDC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_FSL_QE policy<{'powerpc-powerpc-e500mc': 'm'}> +CONFIG_USB_NET2272 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET2272_DMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_NET2280 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GOKU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_EG20T policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GADGET_XILINX policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_DUMMY_HCD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': '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': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_AM335X_PHY_USB policy<{'armhf': 'm'}> +CONFIG_TWL6030_USB policy<{'armhf': 'm'}> +CONFIG_USB_GPIO_VBUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TAHVO_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TAHVO_USB_HOST_BY_DEFAULT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_USB_ISP1301 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_MSM_OTG policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_USB_QCOM_8X16_PHY policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_USB_MXS_PHY policy<{'armhf-generic': 'y'}> +CONFIG_USB_RCAR_PHY policy<{'armhf': 'm'}> +CONFIG_USB_ULPI policy<{'arm64': 'y', 'armhf': 'y'}> +# +CONFIG_NOP_USB_XCEIV note + +# Menu: Device Drivers >> Ultra Wideband devices +CONFIG_UWB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_UWB_HWA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_UWB_WHCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_UWB_I1480U policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Userspace I/O drivers +CONFIG_UIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_UIO_CIF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_UIO_PDRV_GENIRQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_UIO_DMEM_GENIRQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_UIO_AEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_UIO_SERCOS3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_UIO_PCI_GENERIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_UIO_NETX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_UIO_FSL_ELBC_GPCM policy<{'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_UIO_FSL_ELBC_GPCM_NETX5152 policy<{'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_UIO_PRUSS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_UIO_MF624 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> VFIO Non-Privileged userspace driver framework +CONFIG_VFIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc-generic': 'm', 'ppc64el': 'y'}> +CONFIG_VFIO_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc-generic': 'm', 'ppc64el': 'y'}> +CONFIG_VFIO_PCI_VGA policy<{'amd64': 'y', 'i386': 'y'}> +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 marknote +CONFIG_VFIO_PCI marknote + +# Menu: Device Drivers >> VME bridge support +CONFIG_VME_BUS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_VME_CA91CX42 policy<{'amd64': 'm', 'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_VME_TSI148 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VMIVME_7805 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VME_USER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VME_PIO2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Virtio drivers +CONFIG_VIRTIO_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_VIRTIO_PCI_LEGACY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_VIRTIO_BALLOON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_VIRTIO_INPUT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIRTIO_MMIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_VIRTIO_MMIO note +CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_VIRTIO_PCI mark + +# Menu: Device Drivers >> Virtualization drivers +CONFIG_VIRT_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FSL_HV_MANAGER policy<{'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': 'm'}> + +# Menu: Device Drivers >> Voltage and Current Regulator Support +CONFIG_REGULATOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_REGULATOR_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_REGULATOR_FIXED_VOLTAGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_VIRTUAL_CONSUMER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_USERSPACE_CONSUMER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_88PM800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_88PM8607 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_ACT8865 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_AD5398 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_ANATOP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_AAT2870 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_AB3100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_ARIZONA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_AS3711 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_AS3722 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_AXP20X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_BCM590XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_DA903X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_DA9052 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_DA9055 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_DA9062 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_DA9063 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_DA9210 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_DA9211 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_FAN53555 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_HI6421 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_ISL9305 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_ISL6271A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_LP3971 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_LP3972 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_LP872X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_LP8755 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_LP8788 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_LTC3589 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX14577 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX1586 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX8649 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX8660 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX8907 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX8925 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX8952 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX8973 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX8997 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX8998 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX77686 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX77693 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX77802 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MC13783 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MC13892 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MT6311 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MT6397 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_PALMAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_PBIAS policy<{'armhf': 'm'}> +CONFIG_REGULATOR_PCAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_PCF50633 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_PFUZE100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_PWM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_QCOM_RPM 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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_RC5T583 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_RK808 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_RN5T618 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_RT5033 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_S2MPA01 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_S2MPS11 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_S5M8767 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_SKY81452 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TI_ABB policy<{'armhf': 'y'}> +CONFIG_REGULATOR_TPS51632 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TPS6105X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TPS62360 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TPS65023 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TPS6507X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TPS65090 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TPS65217 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TPS65218 policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TPS6524X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TPS6586X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TPS65910 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TPS65912 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TPS80031 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TWL4030 policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic': 'y', 'armhf-generic-lpae': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_VEXPRESS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_REGULATOR_WM831X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_WM8350 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_WM8400 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_WM8994 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_WATCHDOG_CORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_WATCHDOG_NOWAYOUT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SOFT_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DA9052_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DA9055_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DA9063_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DA9062_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_WATCHDOG policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MENF21BMC_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_WM831X_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_WM8350_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_XILINX_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_ARM_SP805_WATCHDOG policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CADENCE_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_S3C2410_WATCHDOG policy<{'armhf': 'm'}> +CONFIG_DW_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_OMAP_WATCHDOG policy<{'armhf': 'm'}> +CONFIG_ORION_WATCHDOG policy<{'armhf': 'm'}> +CONFIG_RN5T618_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TWL4030_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MAX63XX_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_IMX2_WDT policy<{'armhf-generic': 'm'}> +CONFIG_RETU_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TEGRA_WATCHDOG policy<{'armhf-generic': 'm'}> +CONFIG_QCOM_WDT policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MESON_WATCHDOG policy<{'armhf': 'm'}> +CONFIG_MEDIATEK_WATCHDOG policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ACQUIRE_WDT policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_ADVANTECH_WDT policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_ALIM1535_WDT policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_ALIM7101_WDT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_F71808E_WDT policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SP5100_TCO policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SBC_FITPC2_WATCHDOG policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_EUROTECH_WDT policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_IB700_WDT policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_IBMASR policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_WAFER_WDT policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_I6300ESB_WDT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_IE6XX_WDT policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_INTEL_SCU_WATCHDOG policy<{'i386': 'y'}> +CONFIG_INTEL_MID_WATCHDOG policy<{'i386': 'm'}> +CONFIG_ITCO_WDT policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_ITCO_VENDOR_SUPPORT policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_IT8712F_WDT policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_IT87_WDT policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_HP_WATCHDOG policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_KEMPLD_WDT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_HPWDT_NMI_DECODING policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_SC1200_WDT policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SCx200_WDT policy<{'i386': 'm'}> +CONFIG_PC87413_WDT policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_NV_TCO policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_60XX_WDT policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SBC8360_WDT policy<{'i386': 'm'}> +CONFIG_SBC7240_WDT policy<{'i386': 'm'}> +CONFIG_CPU5_WDT policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SMSC_SCH311X_WDT policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SMSC37B787_WDT policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_VIA_WDT policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_W83627HF_WDT policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_W83877F_WDT policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_W83977F_WDT policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_MACHZ_WDT policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SBC_EPX_C3_WATCHDOG policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_BOOKE_WDT policy<{'powerpc-powerpc64-emb': 'y', 'powerpc-powerpc-e500mc': 'y'}> +CONFIG_BOOKE_WDT_DEFAULT_TIMEOUT policy<{'powerpc-powerpc64-emb': '38', 'powerpc-powerpc-e500mc': '38'}> +CONFIG_MEN_A21_WDT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_WATCHDOG_RTAS policy<{'powerpc-generic': 'm', 'powerpc-powerpc-smp': 'm', 'ppc64el': 'm'}> +CONFIG_DIAG288_WATCHDOG policy<{'s390x': 'm'}> +CONFIG_XEN_WDT policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_PCWATCHDOG policy<{'i386': 'm'}> +CONFIG_MIXCOMWD policy<{'i386': 'm'}> +CONFIG_WDT policy<{'i386': 'm'}> +CONFIG_PCIPCWATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_WDTPCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_USBPCWATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> X86 Platform Specific Device Drivers +CONFIG_X86_PLATFORM_DEVICES policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_ACER_WMI policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_ACERHDF policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_ALIENWARE_WMI policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_ASUS_LAPTOP policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_DELL_LAPTOP policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_DELL_WMI policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_DELL_WMI_AIO policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_DELL_SMO8800 policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_DELL_RBTN policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_FUJITSU_LAPTOP policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_FUJITSU_LAPTOP_DEBUG policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_FUJITSU_TABLET policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_AMILO_RFKILL policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_TC1100_WMI policy<{'i386': 'm'}> +CONFIG_HP_ACCEL policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_HP_WIRELESS policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_HP_WMI policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_MSI_LAPTOP policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_PANASONIC_LAPTOP policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_COMPAL_LAPTOP policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SONY_LAPTOP policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SONYPI_COMPAT policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_IDEAPAD_LAPTOP policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SENSORS_HDAPS policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_INTEL_MENLOW policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_EEEPC_LAPTOP policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_ASUS_WMI policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_ASUS_NB_WMI policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_EEEPC_WMI policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_TOPSTAR_LAPTOP policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_TOSHIBA_BT_RFKILL policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_TOSHIBA_HAPS policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_ACPI_CMPC policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_INTEL_MFLD_THERMAL policy<{'i386': 'm'}> +CONFIG_INTEL_IPS policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_IBM_RTL policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SAMSUNG_LAPTOP policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_INTEL_OAKTRAIL policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SAMSUNG_Q10 policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_APPLE_GMUX policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_INTEL_RST policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_INTEL_SMARTCONNECT policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_PVPANIC policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_INTEL_PMC_IPC policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_SURFACE_PRO3_BUTTON policy<{'amd64': 'm', 'i386': 'm'}> + +# Menu: Device Drivers >> X86 Platform Specific Device Drivers >> Intel SCU IPC Support +CONFIG_INTEL_SCU_IPC policy<{'i386': 'y'}> +CONFIG_INTEL_SCU_IPC_UTIL policy<{'i386': 'm'}> +CONFIG_GPIO_INTEL_PMIC policy<{'i386': 'y'}> +CONFIG_INTEL_MID_POWER_BUTTON policy<{'i386': 'm'}> + +# Menu: Device Drivers >> X86 Platform Specific Device Drivers >> ThinkPad ACPI Laptop Extras +CONFIG_THINKPAD_ACPI policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_THINKPAD_ACPI_ALSA_SUPPORT policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_THINKPAD_ACPI_DEBUGFACILITIES policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_THINKPAD_ACPI_DEBUG policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_THINKPAD_ACPI_UNSAFE_LEDS policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_THINKPAD_ACPI_VIDEO policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_THINKPAD_ACPI_HOTKEY_POLL policy<{'amd64': 'y', 'i386': 'y'}> + +# Menu: Device Drivers >> X86 Platform Specific Device Drivers >> WMI +CONFIG_ACPI_WMI policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_MSI_WMI policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_ACPI_TOSHIBA policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_MXM_WMI policy<{'amd64': 'm', 'i386': 'm'}> + +# Menu: Device Drivers >> Xen driver support +CONFIG_XEN_DEV_EVTCHN policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_XEN_BACKEND policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +CONFIG_XENFS policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_XEN_COMPAT_XENFS policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +CONFIG_XEN_SYS_HYPERVISOR policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +CONFIG_XEN_GNTDEV policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_XEN_GRANT_DEV_ALLOC policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_XEN_PCIDEV_BACKEND policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_XEN_SCSI_BACKEND policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_XEN_ACPI_PROCESSOR policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_XEN_MCE_LOG policy<{'amd64': 'y'}> +CONFIG_XEN_SYMS policy<{'amd64': 'y', 'i386': 'y'}> +# +CONFIG_XEN_ACPI_PROCESSOR mark + +# Menu: Device Drivers >> Xen driver support >> Xen memory balloon driver +CONFIG_XEN_BALLOON policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +CONFIG_XEN_SELFBALLOONING policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_XEN_BALLOON_MEMORY_HOTPLUG policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_XEN_BALLOON_MEMORY_HOTPLUG_LIMIT policy<{'amd64': '512', 'i386': '4'}> +CONFIG_XEN_SCRUB_PAGES policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> + +# Menu: Dump support +# + +# Menu: Dump support >> Architecture: s390 + +# Menu: Enable loadable module support +CONFIG_MODULES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MODULE_FORCE_LOAD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_MODULE_UNLOAD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MODULE_FORCE_UNLOAD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_MODVERSIONS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MODULE_SRCVERSION_ALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MODULE_COMPRESS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Enable loadable module support >> Compression algorithm + +# Menu: Enable loadable module support >> Module signature verification +CONFIG_MODULE_SIG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MODULE_SIG_FORCE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_MODULE_SIG_ALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': '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', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_MODULE_SIG_SHA224 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_MODULE_SIG_SHA256 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_MODULE_SIG_SHA384 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_MODULE_SIG_SHA512 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Enable the block layer +CONFIG_BLOCK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_LBDAF policy<{'armhf': 'y', 'i386': 'y', 'powerpc-powerpc-e500mc': 'y', 'powerpc-powerpc-smp': 'y'}> +CONFIG_BLK_DEV_BSG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BLK_DEV_BSGLIB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BLK_DEV_INTEGRITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BLK_DEV_THROTTLING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BLK_CMDLINE_PARSER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_BLK_DEV_THROTTLING note + +# Menu: Enable the block layer >> IO Schedulers +CONFIG_IOSCHED_DEADLINE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IOSCHED_CFQ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CFQ_GROUP_IOSCHED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Enable the block layer >> IO Schedulers >> Default I/O scheduler +CONFIG_DEFAULT_DEADLINE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEFAULT_CFQ policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEFAULT_NOOP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_AIX_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_OSF_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_AMIGA_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_ATARI_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_IBM_PARTITION policy<{'s390x': 'y'}> +CONFIG_MAC_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_LDM_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_LDM_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_SGI_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_ULTRIX_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_SUN_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_KARMA_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_EFI_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SYSV68_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_CMDLINE_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': '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', 'i386': 'n', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BSD_DISKLABEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_MINIX_SUBPARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_SOLARIS_X86_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_UNIXWARE_DISKLABEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> + +# Menu: Endianness selection +CONFIG_CPU_BIG_ENDIAN policy<{'arm64': 'n', 'armhf': 'n', 'powerpc': 'y', 'ppc64el': 'n'}> + +# Menu: Endianness selection >> Architecture: powerpc +CONFIG_CPU_LITTLE_ENDIAN policy<{'powerpc-generic': 'n', 'ppc64el': 'y'}> + +# Menu: Executable file formats / Emulations +CONFIG_BINFMT_ELF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BINFMT_SCRIPT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BINFMT_AOUT policy<{'i386': 'm'}> +CONFIG_BINFMT_MISC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_COREDUMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECCOMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_BINFMT_SCRIPT mark note +CONFIG_SECCOMP mark + +# Menu: Executable file formats / Emulations >> Architecture: arm + +# Menu: Executable file formats / Emulations >> Architecture: s390 + +# Menu: Executable file formats / Emulations >> Architecture: x86 +CONFIG_IA32_EMULATION policy<{'amd64': 'y'}> +CONFIG_IA32_AOUT policy<{'amd64': 'n'}> +CONFIG_X86_X32 policy<{'amd64': 'y'}> +# +CONFIG_IA32_AOUT note mark + +# Menu: File systems +CONFIG_EXT2_FS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_EXT3_FS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_JBD2_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_GFS2_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_GFS2_FS_LOCKING_DLM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NILFS2_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_FS_DAX policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FILE_LOCKING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DNOTIFY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_INOTIFY_USER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FANOTIFY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FANOTIFY_ACCESS_PERMISSIONS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_QUOTA_NETLINK_INTERFACE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_AUTOFS4_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'y'}> +CONFIG_FUSE_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CUSE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_OVERLAY_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_OVERLAY_FS_V1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BTRFS_FS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BTRFS_FS_CHECK_INTEGRITY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_BTRFS_FS_RUN_SANITY_TESTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_BTRFS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_BTRFS_ASSERT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: File systems >> CD-ROM/DVD Filesystems +CONFIG_ISO9660_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_JOLIET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ZISOFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_UDF_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: File systems >> Caches +CONFIG_CACHEFILES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CACHEFILES_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CACHEFILES_HISTOGRAM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: File systems >> Caches >> General filesystem local caching manager +CONFIG_FSCACHE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_FSCACHE_STATS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FSCACHE_HISTOGRAM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_FSCACHE_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_FSCACHE_OBJECT_LIST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: File systems >> DOS/FAT/NT Filesystems +CONFIG_MSDOS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_VFAT_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FAT_DEFAULT_CODEPAGE policy<{'amd64': '437', 'arm64': '437', 'armhf': '437', 'i386': '437', 'powerpc': '437', 'ppc64el': '437', 's390x': '437'}> +CONFIG_FAT_DEFAULT_IOCHARSET policy<{'amd64': '"iso8859-1"', 'arm64': '"iso8859-1"', 'armhf': '"iso8859-1"', 'i386': '"iso8859-1"', 'powerpc': '"iso8859-1"', 'ppc64el': '"iso8859-1"', 's390x': '"iso8859-1"'}> +CONFIG_NTFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NTFS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_NTFS_RW policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'y'}> +# +CONFIG_VFAT_FS mark note + +# Menu: File systems >> Distributed Lock Manager (DLM) +CONFIG_DLM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DLM_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: File systems >> F2FS filesystem support +CONFIG_F2FS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_F2FS_STAT_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_F2FS_CHECK_FS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_F2FS_IO_TRACE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: File systems >> F2FS filesystem support >> F2FS extended attributes +CONFIG_F2FS_FS_XATTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_F2FS_FS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_F2FS_FS_SECURITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_F2FS_FS_ENCRYPTION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: File systems >> JFS filesystem support +CONFIG_JFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_JFS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_JFS_SECURITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_JFS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_JFS_STATISTICS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: File systems >> Miscellaneous filesystems +CONFIG_MISC_FILESYSTEMS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ADFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_ADFS_FS_RW policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_AFFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_ECRYPT_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ECRYPT_FS_MESSAGING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_HFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_HFSPLUS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_HFSPLUS_FS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BEFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_BEFS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_BFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_EFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_UBIFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_UBIFS_FS_ADVANCED_COMPR policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_UBIFS_FS_LZO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_UBIFS_FS_ZLIB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_LOGFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CRAMFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_VXFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MINIX_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_OMFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_HPFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_QNX4FS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_QNX6FS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_QNX6FS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_ROMFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SYSV_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_UFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_UFS_FS_WRITE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_UFS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_EXOFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_EXOFS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +# +CONFIG_ECRYPT_FS mark note +CONFIG_LOGFS note + +# Menu: File systems >> Miscellaneous filesystems >> Aufs (Advanced multi layered unification filesystem) support +CONFIG_AUFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_AUFS_HNOTIFY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_AUFS_EXPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_AUFS_XATTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_AUFS_FHSM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_AUFS_RDU policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_AUFS_SHWH policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_AUFS_BR_RAMFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_AUFS_BR_FUSE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_AUFS_BR_HFSPLUS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_AUFS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_AUFS_EXPORT note + +# Menu: File systems >> Miscellaneous filesystems >> Aufs (Advanced multi layered unification filesystem) support >> Maximum number of branches +CONFIG_AUFS_BRANCH_MAX_127 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_AUFS_BRANCH_MAX_511 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_AUFS_BRANCH_MAX_1023 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_AUFS_BRANCH_MAX_32767 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: File systems >> Miscellaneous filesystems >> Aufs (Advanced multi layered unification filesystem) support >> method + +# Menu: File systems >> Miscellaneous filesystems >> Journalling Flash File System v2 (JFFS2) support +CONFIG_JFFS2_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_JFFS2_FS_DEBUG policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'i386': '0', 'powerpc': '0', 'ppc64el': '0'}> +CONFIG_JFFS2_FS_WRITEBUFFER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_JFFS2_FS_WBUF_VERIFY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_JFFS2_SUMMARY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_JFFS2_FS_XATTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_JFFS2_FS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_JFFS2_FS_SECURITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_JFFS2_ZLIB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_JFFS2_LZO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_JFFS2_RTIME policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_JFFS2_RUBIN policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': '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', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_JFFS2_CMODE_PRIORITY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_JFFS2_CMODE_SIZE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_JFFS2_CMODE_FAVOURLZO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: File systems >> Miscellaneous filesystems >> Persistent store support +CONFIG_PSTORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_PSTORE_CONSOLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'y', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_PSTORE_PMSG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_PSTORE_FTRACE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_PSTORE_RAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: File systems >> Miscellaneous filesystems >> RomFS backing stores +CONFIG_ROMFS_BACKED_BY_BLOCK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ROMFS_BACKED_BY_MTD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_ROMFS_BACKED_BY_BOTH policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: File systems >> Miscellaneous filesystems >> SquashFS 4.0 - Squashed file system support +CONFIG_SQUASHFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SQUASHFS_XATTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SQUASHFS_ZLIB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SQUASHFS_LZ4 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SQUASHFS_LZO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SQUASHFS_XZ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SQUASHFS_4K_DEVBLK_SIZE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SQUASHFS_EMBEDDED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE policy<{'amd64': '3', 'arm64': '3', 'armhf': '3', 'i386': '3', 'powerpc': '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': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SQUASHFS_DECOMP_MULTI policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# 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', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SQUASHFS_FILE_DIRECT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: File systems >> Native language support +CONFIG_NLS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NLS_DEFAULT policy<{'amd64': '"utf8"', 'arm64': '"utf8"', 'armhf': '"utf8"', 'i386': '"utf8"', 'powerpc': '"utf8"', 'ppc64el': '"utf8"', 's390x': '"utf8"'}> +CONFIG_NLS_CODEPAGE_437 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NLS_CODEPAGE_737 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_775 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_850 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_852 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_855 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_857 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_860 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_861 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_862 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_863 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_864 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_865 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_866 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_869 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_936 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_950 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_932 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_949 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_874 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_8 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_1250 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_1251 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_ASCII policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_5 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_7 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_9 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_13 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_14 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_15 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_KOI8_R policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_KOI8_U policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_ROMAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_CELTIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_CENTEURO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_CROATIAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_CYRILLIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_GAELIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_GREEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_ICELAND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_INUIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_ROMANIAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_TURKISH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_UTF8 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +# +CONFIG_NLS note + +# Menu: File systems >> Network File Systems +CONFIG_NETWORK_FILESYSTEMS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NFSD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFSD_V3 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NFSD_V3_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_RPCSEC_GSS_KRB5 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SUNRPC_DEBUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SUNRPC_XPRT_RDMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CEPH_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CEPH_FSCACHE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CEPH_FS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CODA_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_AFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_AFS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_AFS_FSCACHE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: File systems >> Network File Systems >> CIFS support (advanced network filesystem, SMBFS successor) +CONFIG_CIFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CIFS_STATS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CIFS_STATS2 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CIFS_WEAK_PW_HASH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CIFS_UPCALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CIFS_XATTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CIFS_POSIX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CIFS_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CIFS_DEBUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CIFS_DEBUG2 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CIFS_DFS_UPCALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CIFS_SMB2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CIFS_SMB311 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CIFS_FSCACHE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: File systems >> Network File Systems >> NCP file system support (to mount NetWare volumes) +CONFIG_NCP_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_NCPFS_PACKET_SIGNING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_NCPFS_IOCTL_LOCKING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_NCPFS_STRONG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_NCPFS_NFS_NS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_NCPFS_OS2_NS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_NCPFS_SMALLDOS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_NCPFS_NLS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_NCPFS_EXTRAS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: File systems >> Network File Systems >> NFS client support +CONFIG_NFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFS_V2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFS_V3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFS_V3_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NFS_V4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFS_SWAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NFS_FSCACHE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NFS_USE_LEGACY_DNS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# 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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NFS_V4_2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN policy<{'amd64': '"kernel.org"', 'arm64': '"kernel.org"', 'armhf': '"kernel.org"', 'i386': '"kernel.org"', 'powerpc': '"kernel.org"', 'ppc64el': '"kernel.org"', 's390x': '"kernel.org"'}> +CONFIG_NFS_V4_1_MIGRATION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: File systems >> Network File Systems >> NFS server support for NFS version 4 +CONFIG_NFSD_V4 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NFSD_PNFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NFSD_V4_SECURITY_LABEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NFSD_FAULT_INJECTION policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: File systems >> Network File Systems >> Plan 9 Resource Sharing Support (9P2000) +CONFIG_9P_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_9P_FSCACHE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_9P_FS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_9P_FS_SECURITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: File systems >> OCFS2 file system support +CONFIG_OCFS2_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_OCFS2_FS_O2CB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_OCFS2_FS_USERSPACE_CLUSTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_OCFS2_FS_STATS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_OCFS2_DEBUG_MASKLOG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_OCFS2_DEBUG_FS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: File systems >> Pseudo filesystems +CONFIG_PROC_CHILDREN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SYSFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TMPFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TMPFS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TMPFS_XATTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_HUGETLBFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf-generic-lpae': 'y', 'i386': 'y', 'powerpc-powerpc64-emb': 'y', 'powerpc-generic': 'y', 'powerpc-powerpc-e500mc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CONFIGFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'y'}> +CONFIG_EFIVAR_FS policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +# +CONFIG_CONFIGFS_FS flag +CONFIG_EFIVAR_FS note +CONFIG_TMPFS_POSIX_ACL mark note + +# Menu: File systems >> Pseudo filesystems >> /proc file system support +CONFIG_PROC_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PROC_KCORE policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PROC_VMCORE policy<{'amd64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc-powerpc64-emb': 'y', 'powerpc-generic': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PROC_SYSCTL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PROC_PAGE_MONITOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: File systems >> Quota support +CONFIG_QUOTA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PRINT_QUOTA_WARNING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_QUOTA_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_QFMT_V1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_QFMT_V2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: File systems >> Reiserfs support +CONFIG_REISERFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_REISERFS_CHECK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_REISERFS_PROC_INFO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_REISERFS_FS_XATTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_REISERFS_FS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_REISERFS_FS_SECURITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: File systems >> The Extended 4 (ext4) filesystem +CONFIG_EXT4_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EXT4_USE_FOR_EXT2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EXT4_FS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EXT4_FS_SECURITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EXT4_ENCRYPTION policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_EXT4_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: File systems >> XFS filesystem support +CONFIG_XFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_XFS_QUOTA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_XFS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_XFS_RT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_XFS_WARN policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_XFS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Firmware Drivers +CONFIG_EDD policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_EDD_OFF policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_FIRMWARE_MEMMAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y'}> +CONFIG_DELL_RBU policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_DCDBAS policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_DMIID policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +CONFIG_DMI_SYSFS policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_ISCSI_IBFT_FIND policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_ISCSI_IBFT policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_GOOGLE_FIRMWARE policy<{'amd64': 'n', 'i386': 'n'}> + +# Menu: Firmware Drivers >> EFI (Extensible Firmware Interface) Support +CONFIG_EFI_VARS policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +CONFIG_EFI_VARS_PSTORE policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE policy<{'amd64': 'n', 'arm64': 'n', 'i386': 'n'}> +CONFIG_EFI_RUNTIME_MAP policy<{'amd64': 'y', 'i386': 'y'}> +# +CONFIG_EFI_VARS mark note + +# Menu: Firmware Drivers >> Google Firmware Drivers + +# 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 setup +CONFIG_CROSS_COMPILE policy<{'amd64': '""', 'arm64': '""', 'armhf': '""', 'i386': '""', 'powerpc': '""', 'ppc64el': '""', 's390x': '""'}> +CONFIG_COMPILE_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_LOCALVERSION policy<{'amd64': '""', 'arm64': '""', 'armhf': '""', 'i386': '""', 'powerpc': '""', 'ppc64el': '""', 's390x': '""'}> +CONFIG_LOCALVERSION_AUTO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEFAULT_HOSTNAME policy<{'amd64': '"(none)"', 'arm64': '"(none)"', 'armhf': '"(none)"', 'i386': '"(none)"', 'powerpc': '"(none)"', 'ppc64el': '"(none)"', 's390x': '"(none)"'}> +CONFIG_VERSION_SIGNATURE policy<{'amd64': '""', 'arm64': '""', 'armhf': '""', 'i386': '""', 'powerpc': '""', 'ppc64el': '""', 's390x': '""'}> +CONFIG_SWAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SYSVIPC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_POSIX_MQUEUE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CROSS_MEMORY_ATTACH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FHANDLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_USELIB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_AUDIT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_AUDITSYSCALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IKCONFIG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_LOG_BUF_SHIFT policy<{'amd64': '18', 'arm64': '14', 'armhf': '17', 'i386': '17', 'powerpc': '17', 'ppc64el': '17', 's390x': '17'}> +CONFIG_LOG_CPU_MAX_BUF_SHIFT policy<{'amd64': '12', 'arm64': '12', 'armhf': '12', 'i386': '12', 'powerpc': '12', 'ppc64el': '12', 's390x': '12'}> +CONFIG_NUMA_BALANCING policy<{'amd64': 'y', 'powerpc-generic': 'y', 'ppc64el': 'y'}> +CONFIG_NUMA_BALANCING_DEFAULT_ENABLED policy<{'amd64': 'y', 'powerpc-generic': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_CHECKPOINT_RESTORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SCHED_AUTOGROUP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SYSFS_DEPRECATED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_RELAY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CC_OPTIMIZE_FOR_SIZE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_BPF_SYSCALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_USERFAULTFD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EMBEDDED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_COMPAT_BRK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SLUB_CPU_PARTIAL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PROFILING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_OPROFILE policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_OPROFILE_EVENT_MULTIPLEX policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_KPROBES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_JUMP_LABEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'n', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_STATIC_KEYS_SELFTEST policy<{'amd64': 'n', 'arm64': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_FHANDLE mark note +CONFIG_SYSFS_DEPRECATED mark note +CONFIG_COMPAT_BRK mark note +CONFIG_LOCALVERSION_AUTO mark note +CONFIG_JUMP_LABEL flag +CONFIG_NUMA_BALANCING_DEFAULT_ENABLE note + +# Menu: General setup >> CPU/Task time and stats accounting +CONFIG_BSD_PROCESS_ACCT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BSD_PROCESS_ACCT_V3 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TASKSTATS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TASK_DELAY_ACCT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TASK_XACCT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TASK_IO_ACCOUNTING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: General setup >> CPU/Task time and stats accounting >> Cputime accounting +CONFIG_TICK_CPU_ACCOUNTING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_VIRT_CPU_ACCOUNTING_NATIVE policy<{'powerpc-powerpc64-emb': 'n', 'powerpc-generic': 'n', 'ppc64el': 'n', 's390x': 'y'}> +CONFIG_VIRT_CPU_ACCOUNTING_GEN policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'powerpc-generic': 'n', 'ppc64el': 'n'}> +CONFIG_IRQ_TIME_ACCOUNTING policy<{'amd64': 'n', 'armhf': 'n', 'i386': 'n'}> + +# Menu: General setup >> Choose SLAB allocator +CONFIG_SLAB policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SLUB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SLOB policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: General setup >> Configure standard kernel features (expert users) +CONFIG_EXPERT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_UID16 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y'}> +CONFIG_MULTIUSER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SGETMASK_SYSCALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SYSFS_SYSCALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SYSCTL_SYSCALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_KALLSYMS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_KALLSYMS_ALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PRINTK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ELF_CORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PCSPKR_PLATFORM policy<{'amd64': 'y', 'i386': 'y', 'powerpc-generic': 'y', 'powerpc-powerpc-smp': 'y', 'ppc64el': 'y'}> +CONFIG_BASE_FULL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FUTEX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EPOLL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SIGNALFD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TIMERFD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EVENTFD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SHMEM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_AIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ADVISE_SYSCALLS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PCI_QUIRKS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_MEMBARRIER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_VM_EVENT_COUNTERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SLUB_DEBUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: General setup >> Control Group support +CONFIG_CGROUPS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CGROUP_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CGROUP_FREEZER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CGROUP_PIDS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CGROUP_DEVICE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CPUSETS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PROC_PID_CPUSET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CGROUP_CPUACCT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MEMCG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MEMCG_SWAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MEMCG_SWAP_ENABLED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_MEMCG_KMEM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CGROUP_HUGETLB policy<{'amd64': 'y', 'arm64': 'y', 'armhf-generic-lpae': 'y', 'i386': 'y', 'powerpc-powerpc64-emb': 'y', 'powerpc-generic': 'y', 'powerpc-powerpc-e500mc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CGROUP_PERF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BLK_CGROUP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEBUG_BLK_CGROUP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_DEBUG_BLK_CGROUP mark + +# Menu: General setup >> Control Group support >> Group CPU scheduler +CONFIG_CGROUP_SCHED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FAIR_GROUP_SCHED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CFS_BANDWIDTH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_RT_GROUP_SCHED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_RT_GROUP_SCHED note + +# Menu: General setup >> GCOV-based kernel profiling +CONFIG_GCOV_KERNEL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: General setup >> GCOV-based kernel profiling >> Specify GCOV format + +# Menu: General setup >> IRQ subsystem +CONFIG_IRQ_DOMAIN_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_IRQ_FORCED_THREADING_DEFAULT policy<{'amd64-generic': 'n', 'amd64-lowlatency': 'y', 'arm64': 'n', 'armhf': 'n', 'i386-generic': 'n', 'i386-lowlatency': 'y', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_SPARSE_IRQ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: General setup >> Initial RAM filesystem and RAM disk (initramfs/initrd) support +CONFIG_BLK_DEV_INITRD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_INITRAMFS_SOURCE policy<{'amd64': '""', 'arm64': '""', 'armhf': '""', 'i386': '""', 'powerpc': '""', 'ppc64el': '""', 's390x': '""'}> +CONFIG_RD_GZIP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_RD_BZIP2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_RD_LZMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_RD_XZ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_RD_LZO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_RD_LZ4 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: General setup >> Kernel Performance Events And Counters +CONFIG_PERF_EVENTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEBUG_PERF_USE_VMALLOC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 's390x': 'n'}> + +# Menu: General setup >> Kernel compression mode +CONFIG_KERNEL_GZIP policy<{'amd64': 'y', 'armhf': 'y', 'i386': 'y', 's390x': 'n'}> +CONFIG_KERNEL_BZIP2 policy<{'amd64': 'n', 'i386': 'n', 's390x': 'n'}> +CONFIG_KERNEL_LZMA policy<{'amd64': 'n', 'armhf': 'n', 'i386': 'n', 's390x': 'n'}> +CONFIG_KERNEL_XZ policy<{'amd64': 'n', 'armhf': 'n', 'i386': 'n', 's390x': 'y'}> +CONFIG_KERNEL_LZO policy<{'amd64': 'n', 'armhf': 'n', 'i386': 'n', 's390x': 'n'}> +CONFIG_KERNEL_LZ4 policy<{'amd64': 'n', 'armhf': 'n', 'i386': 'n', 's390x': 'n'}> +# +CONFIG_KERNEL_GZIP flag note + +# Menu: General setup >> Namespaces support +CONFIG_NAMESPACES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_UTS_NS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IPC_NS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_USER_NS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PID_NS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NET_NS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: General setup >> RCU Subsystem +# XXX +# +CONFIG_CONTEXT_TRACKING_FORCE note + +# Menu: General setup >> RCU Subsystem >> Make expert-level adjustments to RCU configuration +CONFIG_RCU_NOCB_CPU policy<{'amd64': 'y', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc-powerpc64-emb': 'n', 'powerpc-generic': 'y', 'powerpc-powerpc-e500mc': 'n', 'powerpc-powerpc-smp': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_RCU_EXPERT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_RCU_EXPERT flag + +# Menu: General setup >> RCU Subsystem >> Make expert-level adjustments to RCU configuration >> Build-forced no-CBs CPUs +CONFIG_RCU_NOCB_CPU_NONE policy<{'amd64': 'n', 'powerpc-generic': 'n'}> +CONFIG_RCU_NOCB_CPU_ZERO policy<{'amd64': 'n', 'powerpc-generic': 'n'}> +CONFIG_RCU_NOCB_CPU_ALL policy<{'amd64': 'y', 'powerpc-generic': 'y'}> + +# Menu: General setup >> Stack Protector buffer overflow detection +CONFIG_CC_STACKPROTECTOR_NONE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n'}> +CONFIG_CC_STACKPROTECTOR_REGULAR policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n'}> +CONFIG_CC_STACKPROTECTOR_STRONG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y'}> +# +CONFIG_CC_STACKPROTECTOR_STRONG mark + +# Menu: General setup >> Stack Protector buffer overflow detection >> Architecture: arm + +# Menu: General setup >> Stack Protector buffer overflow detection >> Architecture: powerpc + +# Menu: General setup >> Stack Protector buffer overflow detection >> Architecture: s390 + +# Menu: General setup >> Stack Protector buffer overflow detection >> Architecture: x86 + +# Menu: General setup >> Timers subsystem +CONFIG_NO_HZ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_HIGH_RES_TIMERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: General setup >> Timers subsystem >> Timer tick handling +CONFIG_HZ_PERIODIC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_NO_HZ_IDLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NO_HZ_FULL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'powerpc-generic': 'n', 'ppc64el': 'n'}> +# +CONFIG_NO_HZ_IDLE note + +# Menu: Kernel hacking +CONFIG_MAGIC_SYSRQ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PANIC_ON_OOPS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_PANIC_TIMEOUT policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'i386': '0', 'powerpc': '0', 'ppc64el': '0', 's390x': '0'}> +CONFIG_DEBUG_TIMEKEEPING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_STACKTRACE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PROVIDE_OHCI1394_DMA_INIT policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_DMA_API_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_LKM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TEST_USER_COPY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TEST_BPF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TEST_FIRMWARE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TEST_UDELAY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MEMTEST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TEST_STATIC_KEYS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_STRICT_DEVMEM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EARLY_PRINTK policy<{'amd64': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_DEBUG_RODATA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 's390x': 'y'}> +CONFIG_DEBUG_SET_MODULE_RONX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 's390x': 'y'}> +# +CONFIG_PANIC_ON_OOPS note +CONFIG_STRICT_DEVMEM mark +CONFIG_DEBUG_RODATA mark +CONFIG_DEBUG_SET_MODULE_RONX mark + +# Menu: Kernel hacking >> Architecture: arm +CONFIG_ARM_PTDUMP policy<{'armhf': 'n'}> +CONFIG_ARM_UNWIND policy<{'armhf': 'y'}> +CONFIG_DEBUG_USER policy<{'armhf': 'n'}> +CONFIG_DEBUG_LL policy<{'armhf': 'n'}> +CONFIG_DEBUG_IMX_UART_PORT policy<{'armhf-generic': '1'}> +CONFIG_DEBUG_VF_UART_PORT policy<{'armhf-generic': '1'}> +CONFIG_ARM_KPROBES_TEST policy<{'armhf': 'm'}> +CONFIG_PID_IN_CONTEXTIDR policy<{'arm64': 'n', 'armhf': 'n'}> + +# Menu: Kernel hacking >> Architecture: powerpc +CONFIG_PPC_DISABLE_WERROR policy<{'powerpc': 'y', 'ppc64el': 'n'}> +CONFIG_STRICT_MM_TYPECHECKS policy<{'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_PRINT_STACK_DEPTH policy<{'powerpc': '64', 'ppc64el': '64'}> +CONFIG_HCALL_STATS policy<{'powerpc-generic': 'n', 'ppc64el': 'n'}> +CONFIG_PPC_EMULATED_STATS policy<{'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_CODE_PATCHING_SELFTEST policy<{'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_FTR_FIXUP_SELFTEST policy<{'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_MSI_BITMAP_SELFTEST policy<{'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_XMON policy<{'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_XMON_DEFAULT policy<{'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_XMON_DISASSEMBLY policy<{'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BDI_SWITCH policy<{'powerpc-powerpc-e500mc': 'n', 'powerpc-powerpc-smp': 'n'}> +CONFIG_BOOTX_TEXT policy<{'powerpc-generic': 'n', 'powerpc-powerpc-smp': 'n', 'ppc64el': 'n'}> +CONFIG_PPC_EARLY_DEBUG policy<{'powerpc': 'n', 'ppc64el': 'n'}> +# +CONFIG_PPC_DISABLE_WERROR flag + +# Menu: Kernel hacking >> Architecture: s390 +CONFIG_S390_PTDUMP policy<{'s390x': 'y'}> + +# Menu: Kernel hacking >> Architecture: x86 +CONFIG_X86_VERBOSE_BOOTUP policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_EARLY_PRINTK_DBGP policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_EARLY_PRINTK_EFI policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_X86_PTDUMP policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_DEBUG_RODATA_TEST policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_DEBUG_NX_TEST policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_DOUBLEFAULT policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_DEBUG_TLBFLUSH policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_IOMMU_DEBUG policy<{'amd64': 'n'}> +CONFIG_IOMMU_STRESS policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_X86_DECODER_SELFTEST policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_DEBUG_BOOT_PARAMS policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_CPA_DEBUG policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_OPTIMIZE_INLINING policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_DEBUG_ENTRY policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_DEBUG_NMI_SELFTEST policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_X86_DEBUG_STATIC_CPU_HAS policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_X86_DEBUG_FPU policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_PUNIT_ATOM_DEBUG policy<{'amd64': 'm', 'i386': 'm'}> +# +CONFIG_DEBUG_NX_TEST flag +CONFIG_X86_DECODER_SELFTEST flag +CONFIG_X86_DEBUG_FPU flag +CONFIG_PUNIT_ATOM_DEBUG flag + +# Menu: Kernel hacking >> Compile-time checks and compiler options +CONFIG_ENABLE_WARN_DEPRECATED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_ENABLE_MUST_CHECK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_FRAME_WARN policy<{'amd64': '1024', 'arm64': '1024', 'armhf': '1024', 'i386': '1024', 'powerpc': '1024', 'ppc64el': '2048', 's390x': '1024'}> +CONFIG_STRIP_ASM_SYMS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_READABLE_ASM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_UNUSED_SYMBOLS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PAGE_OWNER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_HEADERS_CHECK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_SECTION_MISMATCH policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_FRAME_POINTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y'}> +CONFIG_DEBUG_FORCE_WEAK_PER_CPU policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# + +# 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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEBUG_INFO_REDUCED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_INFO_SPLIT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_INFO_DWARF4 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_GDB_SCRIPTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_DEBUG_INFO mark note +CONFIG_DEBUG_INFO_SPLIT note + +# Menu: Kernel hacking >> CoreSight Tracing Support +CONFIG_CORESIGHT policy<{'arm64': 'n', 'armhf': 'n'}> + +# Menu: Kernel hacking >> CoreSight Tracing Support >> CoreSight Link and Sink drivers + +# Menu: Kernel hacking >> Debug Lockups and Hangs +CONFIG_LOCKUP_DETECTOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BOOTPARAM_HARDLOCKUP_PANIC policy<{'amd64': 'n', 'i386': 'n', 'powerpc-powerpc64-emb': 'n', 'powerpc-generic': 'n', 'ppc64el': 'n'}> +CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_DETECT_HUNG_TASK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT policy<{'amd64': '120', 'arm64': '120', 'armhf': '120', 'i386': '120', 'powerpc': '120', 'ppc64el': '120', 's390x': '120'}> +CONFIG_BOOTPARAM_HUNG_TASK_PANIC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Kernel hacking >> Early debugging console >> Architecture: powerpc + +# Menu: Kernel hacking >> IO delay type >> Architecture: x86 +CONFIG_IO_DELAY_0X80 policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_IO_DELAY_0XED policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_IO_DELAY_UDELAY policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_IO_DELAY_NONE policy<{'amd64': 'n', 'i386': 'n'}> + +# Menu: Kernel hacking >> Kernel debugging +CONFIG_DEBUG_KERNEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEBUG_SHIRQ policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SCHED_DEBUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SCHEDSTATS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SCHED_STACK_END_CHECK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TIMER_STATS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEBUG_PREEMPT policy<{'amd64-lowlatency': 'n', 'i386-lowlatency': 'n'}> +CONFIG_DEBUG_KOBJECT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_BUGVERBOSE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEBUG_LIST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_PI_LIST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_SG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_NOTIFIERS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_CREDENTIALS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_BLOCK_EXT_DEVT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_LATENCYTOP policy<{'amd64': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_STRICT_USER_COPY_CHECKS policy<{'amd64': 'n', 'i386': 'n', 's390x': 'n'}> +# +CONFIG_LATENCYTOP note + +# Menu: Kernel hacking >> Kernel debugging >> Fault-injection framework +CONFIG_FAULT_INJECTION policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Kernel hacking >> Kernel debugging >> KGDB: kernel debugger +CONFIG_KGDB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_KGDB_SERIAL_CONSOLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_KGDB_TESTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_KGDB_LOW_LEVEL_TRAP policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_KGDB_KDB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_KDB_KEYBOARD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_KDB_CONTINUE_CATASTROPHIC policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'i386': '0', 'powerpc': '0', 'ppc64el': '0'}> +# +CONFIG_KGDB flag +CONFIG_KGDB_SERIAL_CONSOLE note + +# Menu: Kernel hacking >> Kernel debugging >> Notifier error injection +CONFIG_NOTIFIER_ERROR_INJECTION policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CPU_NOTIFIER_ERROR_INJECT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc-generic': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_PM_NOTIFIER_ERROR_INJECT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_OF_RECONFIG_NOTIFIER_ERROR_INJECT policy<{'arm64': 'n', 'armhf': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: Kernel hacking >> Kernel low-level debugging port >> Architecture: arm + +# Menu: Kernel hacking >> Lock Debugging (spinlocks, mutexes, etc...) +CONFIG_DEBUG_RT_MUTEXES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_SPINLOCK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_MUTEXES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_WW_MUTEX_SLOWPATH policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_LOCK_ALLOC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_PROVE_LOCKING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_LOCK_STAT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_ATOMIC_SLEEP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_LOCKING_API_SELFTESTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_LOCK_TORTURE_TEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Kernel hacking >> Memory Debugging +CONFIG_PAGE_EXTENSION policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_PAGEALLOC policy<{'amd64': 'n', 'arm64': 'n', 'i386': 'n', 'powerpc-powerpc64-emb': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SLUB_DEBUG_ON policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SLUB_STATS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_STACK_USAGE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_VM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_VIRTUAL policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_DEBUG_MEMORY_INIT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_MEMORY_NOTIFIER_ERROR_INJECT policy<{'amd64': 'm', 'i386': 'm', 'powerpc-generic': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DEBUG_PER_CPU_MAPS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_HIGHMEM policy<{'armhf': 'n', 'i386': 'n', 'powerpc-powerpc-e500mc': 'n', 'powerpc-powerpc-smp': 'n'}> +CONFIG_DEBUG_STACKOVERFLOW policy<{'amd64': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_KASAN policy<{'amd64': 'n'}> + +# Menu: Kernel hacking >> Memory Debugging >> Debug object operations +CONFIG_DEBUG_OBJECTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Kernel hacking >> Memory Debugging >> Instrumentation type + +# Menu: Kernel hacking >> Memory Debugging >> Kernel memory leak detector +CONFIG_DEBUG_KMEMLEAK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Kernel hacking >> Memory Debugging >> kmemcheck: trap use of uninitialized memory + +# Menu: Kernel hacking >> Memory Debugging >> kmemcheck: trap use of uninitialized memory >> kmemcheck: default mode at boot + +# Menu: Kernel hacking >> RCU Debugging +CONFIG_SPARSE_RCU_POINTER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_RCU_CPU_STALL_TIMEOUT policy<{'amd64': '60', 'arm64': '60', 'armhf': '60', 'i386': '60', 'powerpc': '21', 'ppc64el': '21', 's390x': '21'}> +CONFIG_RCU_TRACE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_RCU_EQS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_RCU_CPU_STALL_TIMEOUT flag + +# Menu: Kernel hacking >> RCU Debugging >> torture tests for RCU +CONFIG_RCU_TORTURE_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Kernel hacking >> Runtime Testing +CONFIG_LKDTM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_LIST_SORT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_KPROBES_SANITY_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_BACKTRACE_SELF_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_RBTREE_TEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INTERVAL_TREE_TEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_PERCPU_TEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_ATOMIC64_SELFTEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_ASYNC_RAID6_TEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TEST_HEXDUMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TEST_STRING_HELPERS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TEST_KSTRTOX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TEST_RHASHTABLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_LKDTM flag flag +CONFIG_TEST_LIST_SORT flag +CONFIG_KPROBES_SANITY_TEST flag +CONFIG_BACKTRACE_SELF_TEST flag +CONFIG_ATOMIC64_SELFTEST flag +CONFIG_TEST_RHASHTABLE flag + +# Menu: Kernel hacking >> Sample kernel code +CONFIG_SAMPLES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Kernel hacking >> Tracers +CONFIG_FTRACE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IRQSOFF_TRACER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_PREEMPT_TRACER policy<{'amd64-lowlatency': 'n', 'i386-lowlatency': 'n'}> +CONFIG_SCHED_TRACER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FTRACE_SYSCALLS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TRACER_SNAPSHOT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_STACK_TRACER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BLK_DEV_IO_TRACE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_KPROBE_EVENT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_UPROBE_EVENT policy<{'amd64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FTRACE_STARTUP_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_MMIOTRACE policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_MMIOTRACE_TEST policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_TRACEPOINT_BENCHMARK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_RING_BUFFER_BENCHMARK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_RING_BUFFER_STARTUP_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TRACE_ENUM_MAP_FILE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': '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 + +# Menu: Kernel hacking >> Tracers >> Branch Profiling +CONFIG_BRANCH_PROFILE_NONE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PROFILE_ANNOTATED_BRANCHES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_PROFILE_ALL_BRANCHES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Kernel hacking >> Tracers >> Kernel Function Tracer +CONFIG_FUNCTION_TRACER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FUNCTION_GRAPH_TRACER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DYNAMIC_FTRACE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FUNCTION_PROFILER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Kernel hacking >> printk and dmesg options +CONFIG_PRINTK_TIME policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MESSAGE_LOGLEVEL_DEFAULT policy<{'amd64': '4', 'arm64': '4', 'armhf': '4', 'i386': '4', 'powerpc': '4', 'ppc64el': '4', 's390x': '4'}> +CONFIG_BOOT_PRINTK_DELAY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y'}> +CONFIG_DYNAMIC_DEBUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Library routines +CONFIG_CRC_CCITT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRC16 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRC_T10DIF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRC_ITU_T policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRC32 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRC32_SELFTEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CRC7 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_LIBCRC32C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRC8 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_RANDOM32_SELFTEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_GLOB_SELFTEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_CORDIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DDR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Library routines >> CRC32 implementation +CONFIG_CRC32_SLICEBY8 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRC32_SLICEBY4 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CRC32_SARWATE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CRC32_BIT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Library routines >> Select compiled-in fonts +CONFIG_FONTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'y', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_FONT_8x8 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_FONT_8x16 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_FONT_6x11 policy<{'armhf': 'n'}> +CONFIG_FONT_7x14 policy<{'armhf': 'n'}> +CONFIG_FONT_PEARL_8x8 policy<{'armhf': 'n'}> +CONFIG_FONT_ACORN_8x8 policy<{'armhf': 'y'}> +CONFIG_FONT_MINI_4x6 policy<{'armhf': 'n'}> +CONFIG_FONT_6x10 policy<{'armhf': 'y'}> +CONFIG_FONT_SUN8x16 policy<{'armhf': 'n'}> +CONFIG_FONT_SUN12x22 policy<{'armhf': 'n'}> +CONFIG_FONT_10x18 policy<{'armhf': 'n'}> + +# Menu: Library routines >> XZ decompression support +CONFIG_XZ_DEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_XZ_DEC_X86 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_XZ_DEC_POWERPC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_XZ_DEC_IA64 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_XZ_DEC_ARM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_XZ_DEC_ARMTHUMB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_XZ_DEC_SPARC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_XZ_DEC_TEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +# +CONFIG_XZ_DEC note flag + +# Menu: Networking support +CONFIG_NET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_AF_RXRPC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_AF_RXRPC_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_RXKAD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CEPH_LIB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CEPH_LIB_PRETTYDEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CEPH_LIB_USE_DNS_RESOLVER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_LWTUNNEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Networking support >> Amateur Radio support +CONFIG_HAMRADIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_AX25_DAMA_SLAVE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_NETROM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ROSE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_6PACK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BPQETHER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SCC policy<{'i386': 'm'}> +CONFIG_SCC_DELAY policy<{'i386': 'n'}> +CONFIG_SCC_TRXECHO policy<{'i386': 'n'}> +CONFIG_BAYCOM_SER_FDX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BAYCOM_SER_HDX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BAYCOM_PAR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BAYCOM_EPP policy<{'armhf': 'm', 'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_YAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Networking support >> Bluetooth subsystem support +CONFIG_BT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BT_LE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BT_6LOWPAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BT_SELFTEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_BT_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Networking support >> Bluetooth subsystem support >> Bluetooth Classic (BR/EDR) features +CONFIG_BT_BREDR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BT_RFCOMM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BT_RFCOMM_TTY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BT_BNEP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BT_BNEP_MC_FILTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BT_BNEP_PROTO_FILTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BT_CMTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BT_HIDP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BT_HS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Networking support >> Bluetooth subsystem support >> Bluetooth device drivers +CONFIG_BT_HCIBTSDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BT_HCIBCM203X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BT_HCIBPA10X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BT_HCIBFUSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BT_HCIDTL1 policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_BT_HCIBT3C policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_BT_HCIBLUECARD policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_BT_HCIBTUART policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_BT_HCIVHCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BT_MRVL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BT_MRVL_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BT_WILINK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BT_HCIUART_H4 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BT_HCIUART_BCSP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BT_HCIUART_ATH3K policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BT_HCIUART_LL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BT_HCIUART_3WIRE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BT_HCIUART_INTEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BT_HCIUART_BCM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BT_HCIUART_QCA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_BT_HCIBTUSB_BCM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BT_HCIBTUSB_RTL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BT_ATH3K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Networking support >> CAIF support +CONFIG_CAIF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_CAIF_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_CAIF_NETDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAIF_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Networking support >> CAN bus subsystem support +CONFIG_CAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_CAN_RAW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_BCM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_GW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Networking support >> CAN bus subsystem support >> CAN Device Drivers +CONFIG_CAN_VCAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_SLCAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_DEBUG_DEVICES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_CALC_BITTIMING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_CAN_LEDS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_CAN_TI_HECC policy<{'armhf': 'm'}> +CONFIG_CAN_JANZ_ICAN3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_FLEXCAN policy<{'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_PCH_CAN policy<{'i386': 'm'}> +CONFIG_CAN_GRCAN policy<{'arm64': 'm', 'armhf': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_RCAR policy<{'armhf': 'm'}> +CONFIG_CAN_XILINXCAN policy<{'arm64': 'm'}> +CONFIG_CAN_MSCAN policy<{'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_M_CAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_SOFTING policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_SOFTING_CS policy<{'amd64': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_CC770_ISA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_CC770_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_C_CAN_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_C_CAN_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Networking support >> CAN bus subsystem support >> CAN Device Drivers >> Platform CAN drivers with Netlink support >> CAN SPI interfaces +CONFIG_CAN_MCP251X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Networking support >> CAN bus subsystem support >> CAN Device Drivers >> Platform CAN drivers with Netlink support >> CAN USB interfaces +CONFIG_CAN_EMS_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_ESD_USB2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_GS_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_KVASER_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_PEAK_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_8DEV_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_SJA1000_ISA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_SJA1000_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_EMS_PCMCIA policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_CAN_EMS_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_PEAK_PCMCIA policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm'}> +CONFIG_CAN_PEAK_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_PEAK_PCIEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_CAN_KVASER_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_PLX_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_TSCAN1 policy<{'i386': 'm'}> + +# Menu: Networking support >> IrDA (infrared) subsystem support +CONFIG_IRDA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IRLAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IRNET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IRCOMM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IRDA_ULTRA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_IRDA_CACHE_LAST_LSAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_IRDA_FAST_RR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_IRDA_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: Networking support >> IrDA (infrared) subsystem support >> Infrared-port device drivers +CONFIG_IRTTY_SIR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KINGSUN_DONGLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KSDAZZLE_DONGLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_KS959_DONGLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_USB_IRDA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SIGMATEL_FIR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NSC_FIR policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_WINBOND_FIR policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOSHIBA_FIR policy<{'i386': 'm', 'powerpc-powerpc-e500mc': 'm', 'powerpc-powerpc-smp': 'm'}> +CONFIG_SMC_IRCC_FIR policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ALI_FIR policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VLSI_FIR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_VIA_FIR policy<{'amd64': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MCS_FIR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_SH_IRDA policy<{'armhf': 'm'}> + +# Menu: Networking support >> IrDA (infrared) subsystem support >> Infrared-port device drivers >> Blackfin SIR on UART + +# Menu: Networking support >> IrDA (infrared) subsystem support >> Infrared-port device drivers >> Blackfin SIR on UART >> SIR Mode + +# Menu: Networking support >> IrDA (infrared) subsystem support >> Infrared-port device drivers >> Serial dongle support +CONFIG_DONGLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_ESI_DONGLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ACTISYS_DONGLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TEKRAM_DONGLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_TOIM3232_DONGLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LITELINK_DONGLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MA600_DONGLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_GIRBIL_DONGLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MCP2120_DONGLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_OLD_BELKIN_DONGLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ACT200L_DONGLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Networking support >> NFC subsystem support +CONFIG_NFC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_NFC_DIGITAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_NCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_NCI_SPI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_NFC_NCI_UART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_HCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_SHDLC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Networking support >> NFC subsystem support >> Near Field Communication (NFC) devices +CONFIG_NFC_PN533 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_WILINK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_TRF7970A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_MEI_PHY policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_NFC_SIM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_PORT100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_PN544 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_PN544_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_PN544_MEI policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_NFC_MICROREAD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_MICROREAD_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_MICROREAD_MEI policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_NFC_MRVL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_MRVL_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_MRVL_UART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_ST21NFCA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_ST21NFCA_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_ST_NCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_ST_NCI_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_ST_NCI_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_NXP_NCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_NXP_NCI_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_S3FWRN5_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Networking support >> Networking options +CONFIG_PACKET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PACKET_DIAG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_UNIX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_UNIX_DIAG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_XFRM_USER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_XFRM_SUB_POLICY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_XFRM_MIGRATE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_XFRM_STATISTICS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NET_KEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_KEY_MIGRATE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_IUCV policy<{'s390x': 'y'}> +CONFIG_AFIUCV policy<{'s390x': 'm'}> +CONFIG_NETWORK_SECMARK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NETWORK_PHY_TIMESTAMPING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_BRIDGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_IGMP_SNOOPING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BRIDGE_VLAN_FILTERING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_VLAN_8021Q policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_VLAN_8021Q_GVRP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_VLAN_8021Q_MVRP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DECNET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_DECNET_ROUTER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_LLC2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_IPX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_IPX_INTERN policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_ATALK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_X25 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_LAPB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_PHONET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MAC802154 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_DCB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DNS_RESOLVER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_VSOCKETS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_VMWARE_VMCI_VSOCKETS policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_NETLINK_MMAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NETLINK_DIAG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_HSR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_CGROUP_NET_PRIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CGROUP_NET_CLASSID policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BPF_JIT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Networking support >> Networking options >> 6LoWPAN Support +CONFIG_6LOWPAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> + +# Menu: Networking support >> Networking options >> 6LoWPAN Support >> Next Header Compression Support +CONFIG_6LOWPAN_NHC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_6LOWPAN_NHC_DEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_6LOWPAN_NHC_FRAGMENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_6LOWPAN_NHC_HOP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_6LOWPAN_NHC_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_6LOWPAN_NHC_MOBILITY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_6LOWPAN_NHC_ROUTING policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_6LOWPAN_NHC_UDP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Networking support >> Networking options >> Appletalk interfaces support +CONFIG_DEV_APPLETALK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_LTPC policy<{'i386': 'm'}> +CONFIG_COPS policy<{'i386': 'm'}> +CONFIG_COPS_DAYNA policy<{'i386': 'y'}> +CONFIG_COPS_TANGENT policy<{'i386': 'y'}> +CONFIG_IPDDP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IPDDP_ENCAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# Menu: Networking support >> Networking options >> Asynchronous Transfer Mode (ATM) +CONFIG_ATM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_ATM_CLIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ATM_CLIP_NO_ICMP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_ATM_LANE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ATM_MPOA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ATM_BR2684 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_ATM_BR2684_IPFILTER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_BATMAN_ADV_BLA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BATMAN_ADV_DAT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BATMAN_ADV_NC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BATMAN_ADV_MCAST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_BATMAN_ADV_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_IEEE802154_SOCKET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_IEEE802154_6LOWPAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Networking support >> Networking options >> MultiProtocol Label Switching +CONFIG_MPLS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NET_MPLS_GSO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MPLS_ROUTING policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MPLS_IPTUNNEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) +CONFIG_NETFILTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NETFILTER_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_NETFILTER_ADVANCED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BRIDGE_NETFILTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NETFILTER_NETLINK_ACCT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_NETLINK_QUEUE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_NETLINK_LOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_CONNMARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_SET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_AUDIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_CHECKSUM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_CLASSIFY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_CONNMARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_CONNSECMARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_CT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_DSCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_HL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_HMARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_IDLETIMER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_LED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NETFILTER_XT_TARGET_LOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_MARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_NAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_NETMAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_NFLOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_NFQUEUE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_NOTRACK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_NETFILTER_XT_TARGET_RATEEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_REDIRECT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_TEE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_TPROXY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_TRACE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_SECMARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_TCPMSS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_ADDRTYPE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_BPF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_CGROUP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_CLUSTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_COMMENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_CONNBYTES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_CONNLABEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_CONNLIMIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_CONNMARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_CONNTRACK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_CPU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_DCCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_DEVGROUP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_DSCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_ECN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_ESP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_HASHLIMIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_HELPER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_HL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_IPCOMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_IPRANGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_IPVS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_L2TP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_LENGTH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_LIMIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_MAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_MARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_MULTIPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_NFACCT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_OSF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_OWNER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_POLICY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_PHYSDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_PKTTYPE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_QUOTA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_RATEEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_REALM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_RECENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_SCTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_SOCKET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_STATE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_STATISTIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_STRING policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_TCPMSS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_TIME policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_U32 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_MARK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NF_CONNTRACK_SECMARK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NF_CONNTRACK_ZONES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NF_CONNTRACK_PROCFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_NF_CONNTRACK_EVENTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NF_CONNTRACK_TIMEOUT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NF_CONNTRACK_TIMESTAMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NF_CT_PROTO_DCCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CT_PROTO_SCTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CT_PROTO_UDPLITE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_AMANDA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_FTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_H323 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_IRC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_NETBIOS_NS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_SNMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_PPTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_SANE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_SIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_TFTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CT_NETLINK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CT_NETLINK_TIMEOUT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CT_NETLINK_HELPER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_NETLINK_QUEUE_CT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NF_NAT_REDIRECT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_TABLES_INET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_TABLES_NETDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_EXTHDR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_META policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_CT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_RBTREE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_HASH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_COUNTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_LOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_LIMIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_MASQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_REDIR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_NAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_QUEUE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_REJECT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_COMPAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_BRIDGE_META policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_BRIDGE_REJECT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_LOG_BRIDGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_BROUTE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_T_FILTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_T_NAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_802_3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_AMONG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_ARP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_IP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_IP6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_LIMIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_MARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_PKTTYPE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_STP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_VLAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_ARPREPLY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_DNAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_MARK_T policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_REDIRECT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_SNAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_LOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_NFLOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_MAX policy<{'amd64': '256', 'arm64': '256', 'armhf': '256', 'i386': '256', 'powerpc': '256', 'ppc64el': '256', 's390x': '256'}> +CONFIG_IP_SET_BITMAP_IP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_BITMAP_IPMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_BITMAP_PORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_IP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_IPMARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_IPPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_IPPORTIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_IPPORTNET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_MAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_NETPORTNET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_NET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_NETNET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_NETPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_NETIFACE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_LIST_SET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_VS_IPV6 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IP_VS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_IP_VS_TAB_BITS policy<{'amd64': '12', 'arm64': '12', 'armhf': '12', 'i386': '12', 'powerpc': '12', 'ppc64el': '12', 's390x': '12'}> +CONFIG_IP_VS_PROTO_TCP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IP_VS_PROTO_UDP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IP_VS_PROTO_ESP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IP_VS_PROTO_AH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IP_VS_PROTO_SCTP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IP_VS_RR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_VS_WRR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_VS_LC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_VS_WLC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_VS_FO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_VS_OVF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_VS_LBLC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_VS_LBLCR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_VS_DH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_VS_SH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_VS_SED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_VS_NQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_VS_SH_TAB_BITS policy<{'amd64': '8', 'arm64': '8', 'armhf': '8', 'i386': '8', 'powerpc': '8', 'ppc64el': '8', 's390x': '8'}> +CONFIG_IP_VS_FTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_VS_NFCT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IP_VS_PE_SIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> IP: Netfilter Configuration +CONFIG_NF_CONNTRACK_IPV4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_TABLES_IPV4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_CHAIN_ROUTE_IPV4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_DUP_IPV4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_TABLES_ARP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_DUP_IPV4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_LOG_ARP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_LOG_IPV4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_REJECT_IPV4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_ARPTABLES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_ARPFILTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_ARP_MANGLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_MATCH_AH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_MATCH_ECN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_MATCH_RPFILTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_MATCH_TTL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_FILTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_TARGET_REJECT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_TARGET_SYNPROXY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_RAW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_SECURITY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_TARGET_CLUSTERIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_TARGET_ECN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_TARGET_TTL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_TARGET_MASQUERADE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_TARGET_NETMAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_TARGET_REDIRECT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> IP: Netfilter Configuration >> IPv4 NAT +CONFIG_NF_NAT_IPV4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_CHAIN_NAT_IPV4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_NAT_MASQUERADE_IPV4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_MASQ_IPV4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_REDIR_IPV4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_NAT_SNMP_BASIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> IPv6: Netfilter Configuration +CONFIG_NF_CONNTRACK_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_TABLES_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_CHAIN_ROUTE_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_DUP_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_DUP_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_REJECT_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_LOG_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MATCH_AH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MATCH_EUI64 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MATCH_FRAG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MATCH_OPTS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MATCH_HL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MATCH_IPV6HEADER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MATCH_MH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MATCH_RPFILTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MATCH_RT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_TARGET_HL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_FILTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_TARGET_REJECT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_TARGET_SYNPROXY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MANGLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_RAW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_SECURITY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_NAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_TARGET_MASQUERADE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_TARGET_NPT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> IPv6: Netfilter Configuration >> IPv6 NAT +CONFIG_NF_NAT_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_CHAIN_NAT_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_NAT_MASQUERADE_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_MASQ_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_REDIR_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network testing +CONFIG_NET_PKTGEN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_TCPPROBE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_DROP_MONITOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +# +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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NET_SCH_CBQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_HTB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_HFSC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_ATM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NET_SCH_PRIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_MULTIQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_RED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_SFB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_SFQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_TEQL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_TBF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_GRED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_DSMARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_NETEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_DRR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_MQPRIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_CHOKE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_QFQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_CODEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_FQ_CODEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_FQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_HHF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_PIE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_INGRESS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_PLUG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_BASIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_TCINDEX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_ROUTE4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_FW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_RSVP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_RSVP6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_FLOW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_CGROUP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_BPF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_FLOWER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NET_ACT_POLICE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_GACT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_GACT_PROB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NET_ACT_MIRRED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_IPT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_NAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_PEDIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_SIMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_SKBEDIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_CSUM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_VLAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_BPF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_CONNMARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> QoS and/or fair queueing >> Extended Matches +CONFIG_NET_EMATCH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NET_EMATCH_STACK policy<{'amd64': '32', 'arm64': '32', 'armhf': '32', 'i386': '32', 'powerpc': '32', 'ppc64el': '32', 's390x': '32'}> +CONFIG_NET_EMATCH_CMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_EMATCH_NBYTE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_EMATCH_U32 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_EMATCH_META policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_EMATCH_TEXT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_EMATCH_CANID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NET_EMATCH_IPSET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> QoS and/or fair queueing >> Universal 32bit comparisons w/ hashing (U32) +CONFIG_NET_CLS_U32 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CLS_U32_PERF policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CLS_U32_MARK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NET_CLS_IND policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_NET_CLS_IND flag + +# Menu: Networking support >> Networking options >> TCP/IP networking +CONFIG_INET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IP_MULTICAST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NET_IPIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_IPGRE_DEMUX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_IPGRE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_IPGRE_BROADCAST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SYN_COOKIES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NET_IPVTI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_FOU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_FOU_IP_TUNNELS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_INET_AH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INET_ESP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INET_IPCOMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INET_XFRM_MODE_TRANSPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INET_XFRM_MODE_TUNNEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INET_XFRM_MODE_BEET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INET_LRO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_INET_DIAG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INET_UDP_DIAG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCP_MD5SIG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NETLABEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NET_SWITCHDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_SYN_COOKIES mark +CONFIG_NET_SWITCHDEV mark note + +# Menu: Networking support >> Networking options >> TCP/IP networking >> IP: advanced router +CONFIG_IP_ADVANCED_ROUTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IP_FIB_TRIE_STATS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IP_MULTIPLE_TABLES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IP_ROUTE_MULTIPATH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IP_ROUTE_VERBOSE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': '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', 'i386': 'n', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IP_MROUTE_MULTIPLE_TABLES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_IP_PIMSM_V1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IP_PIMSM_V2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_L2TP_DEBUGFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_L2TP_V3 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_L2TP_IP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_L2TP_ETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking >> Open vSwitch +CONFIG_OPENVSWITCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_OPENVSWITCH_GRE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_OPENVSWITCH_VXLAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_OPENVSWITCH_GENEVE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TCP_CONG_BIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_CUBIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TCP_CONG_WESTWOOD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_HTCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_HSTCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_HYBLA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_VEGAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_SCALABLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_LP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_VENO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_YEAH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_ILLINOIS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_DCTCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_CDG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEFAULT_RENO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': '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', 'i386': 'm', 'powerpc': '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', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_IP_DCCP_CCID3 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': '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', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_NET_DCCPPROBE policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking >> The IPv6 protocol +CONFIG_IPV6 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IPV6_ROUTER_PREF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IPV6_ROUTE_INFO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IPV6_OPTIMISTIC_DAD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_INET6_AH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INET6_ESP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INET6_IPCOMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IPV6_MIP6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IPV6_ILA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INET6_XFRM_MODE_TRANSPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INET6_XFRM_MODE_TUNNEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INET6_XFRM_MODE_BEET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IPV6_VTI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IPV6_SIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IPV6_SIT_6RD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IPV6_TUNNEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IPV6_GRE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IPV6_MULTIPLE_TABLES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IPV6_SUBTREES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IPV6_MROUTE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IPV6_MROUTE_MULTIPLE_TABLES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IPV6_PIMSM_V2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_IPV6_OPTIMISTIC_DAD flag +CONFIG_IPV6 mark note + +# Menu: Networking support >> Networking options >> TCP/IP networking >> The RDS Protocol +CONFIG_RDS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_RDS_RDMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_RDS_TCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_RDS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCTPPROBE policy<{'amd64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCTP_DBG_OBJCNT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SCTP_COOKIE_HMAC_MD5 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SCTP_COOKIE_HMAC_SHA1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': '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', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': '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', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TIPC_MEDIA_IB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TIPC_MEDIA_UDP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Networking support >> Plan 9 Resource Sharing Support (9P2000) +CONFIG_NET_9P policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_9P_VIRTIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_9P_RDMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_9P_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_RFKILL_INPUT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_RFKILL_REGULATOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_RFKILL_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> + +# Menu: Networking support >> WiMAX Wireless Broadband support +CONFIG_WIMAX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_WIMAX_DEBUG_LEVEL policy<{'amd64': '8', 'arm64': '8', 'armhf': '8', 'i386': '8', 'powerpc': '8', 'ppc64el': '8'}> + +# Menu: Networking support >> Wireless +CONFIG_WIRELESS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_LIB80211_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> + +# Menu: Networking support >> Wireless >> Generic IEEE 802.11 Networking Stack (mac80211) +CONFIG_MAC80211 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_MAC80211_RC_MINSTREL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MAC80211_RC_MINSTREL_HT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MAC80211_RC_MINSTREL_VHT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MAC80211_MESH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MAC80211_LEDS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MAC80211_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_MAC80211_MESSAGE_TRACING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': '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', 'i386': 'y', 'powerpc': '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', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_MAC80211_STA_HASH_MAX_SIZE policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'i386': '0', 'powerpc': '0', 'ppc64el': '0'}> + +# Menu: Networking support >> Wireless >> cfg80211 - wireless configuration API +CONFIG_CFG80211 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'powerpc': 'm', 'ppc64el': 'm'}> +CONFIG_NL80211_TESTMODE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_CFG80211_DEVELOPER_WARNINGS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_CFG80211_REG_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_CFG80211_CERTIFICATION_ONUS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_CFG80211_DEFAULT_PS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_CFG80211_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_CFG80211_INTERNAL_REGDB policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_CFG80211_WEXT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +# +CONFIG_CFG80211_WEXT flag + +# Menu: Power management and ACPI options +CONFIG_SUSPEND policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc-generic': 'y', 'powerpc-powerpc-smp': 'y', 'ppc64el': 'y'}> +CONFIG_SUSPEND_FREEZER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc-generic': 'y', 'powerpc-powerpc-smp': 'y', 'ppc64el': 'y'}> +CONFIG_HIBERNATION policy<{'amd64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc-powerpc64-emb': 'n', 'powerpc-generic': 'y', 'powerpc-powerpc-e500mc': 'y', 'powerpc-powerpc-smp': 'y', 'ppc64el': 'n', 's390x': 'y'}> +CONFIG_PM_STD_PARTITION policy<{'amd64': '""', 'armhf': '""', 'i386': '""', 'powerpc-generic': '""', 'powerpc-powerpc-e500mc': '""', 'powerpc-powerpc-smp': '""', 's390x': '""'}> +CONFIG_PM_AUTOSLEEP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc-generic': 'n', 'powerpc-powerpc-e500mc': 'n', 'powerpc-powerpc-smp': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_PM_WAKELOCKS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc-generic': 'y', 'powerpc-powerpc-e500mc': 'y', 'powerpc-powerpc-smp': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_PM_WAKELOCKS_LIMIT policy<{'amd64': '100', 'arm64': '100', 'armhf': '100', 'i386': '100', 'powerpc-generic': '100', 'powerpc-powerpc-e500mc': '100', 'powerpc-powerpc-smp': '100', 'ppc64el': '100'}> +CONFIG_PM_WAKELOCKS_GC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc-generic': 'y', 'powerpc-powerpc-e500mc': 'y', 'powerpc-powerpc-smp': 'y', 'ppc64el': 'y'}> +CONFIG_PM_TRACE_RTC policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_KVM_GUEST policy<{'amd64': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_SFI policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_INTEL_IDLE policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_SUSPEND_SKIP_SYNC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc-generic': 'n', 'powerpc-powerpc-smp': 'n', 'ppc64el': 'n'}> +# +CONFIG_HIBERNATION flag + +# Menu: Power management and ACPI options >> 512x-based boards >> Architecture: powerpc +CONFIG_PPC_MPC512x policy<{'powerpc-powerpc-smp': 'n'}> + +# Menu: Power management and ACPI options >> 52xx-based boards >> Architecture: powerpc +CONFIG_PPC_MPC52xx policy<{'powerpc-powerpc-smp': 'n'}> + +# Menu: Power management and ACPI options >> 82xx-based boards (PQ II) >> Architecture: powerpc +CONFIG_PPC_82xx policy<{'powerpc-powerpc-smp': 'n'}> + +# Menu: Power management and ACPI options >> 83xx-based boards >> Architecture: powerpc +CONFIG_PPC_83xx policy<{'powerpc-powerpc-smp': 'n'}> + +# Menu: Power management and ACPI options >> 86xx-based boards >> Architecture: powerpc +CONFIG_PPC_86xx policy<{'powerpc-powerpc-smp': 'n'}> + +# Menu: Power management and ACPI options >> 8xx Machine Type >> Architecture: powerpc + +# Menu: Power management and ACPI options >> ACPI (Advanced Configuration and Power Interface) Support +CONFIG_ACPI policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +CONFIG_ACPI_PROCFS_POWER policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_ACPI_REV_OVERRIDE_POSSIBLE policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_ACPI_EC_DEBUGFS policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_ACPI_AC policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_ACPI_BATTERY policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_ACPI_BUTTON policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +CONFIG_ACPI_VIDEO policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_ACPI_FAN policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +CONFIG_ACPI_DOCK policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +CONFIG_ACPI_PROCESSOR policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_ACPI_IPMI policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm'}> +CONFIG_ACPI_PROCESSOR_AGGREGATOR policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_ACPI_THERMAL policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_ACPI_NUMA policy<{'amd64': 'y'}> +CONFIG_ACPI_CUSTOM_DSDT_FILE policy<{'amd64': '""', 'i386': '""'}> +CONFIG_ACPI_INITRD_TABLE_OVERRIDE policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_ACPI_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'i386': 'n'}> +CONFIG_ACPI_PCI_SLOT policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +CONFIG_X86_PM_TIMER policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_ACPI_CONTAINER policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +CONFIG_ACPI_HOTPLUG_MEMORY policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_ACPI_SBS policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_ACPI_HED policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +CONFIG_ACPI_CUSTOM_METHOD policy<{'amd64': 'n', 'arm64': 'n', 'i386': 'n'}> +CONFIG_ACPI_BGRT policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_ACPI_REDUCED_HARDWARE_ONLY policy<{'amd64': 'n', 'arm64': 'y', 'i386': 'n'}> +CONFIG_ACPI_NFIT policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_ACPI_NFIT_DEBUG policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_ACPI_EXTLOG policy<{'amd64': 'm', 'i386': 'm'}> +# +CONFIG_ACPI_PROCFS_POWER mark +CONFIG_ACPI_CUSTOM_METHOD mark note +CONFIG_ACPI_CUSTOM_DSDT_FILE note + +# Menu: Power management and ACPI options >> ACPI (Advanced Configuration and Power Interface) Support >> ACPI Platform Error Interface (APEI) +CONFIG_ACPI_APEI policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_ACPI_APEI_GHES policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_ACPI_APEI_PCIEAER policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_ACPI_APEI_MEMORY_FAILURE policy<{'amd64': 'y'}> +CONFIG_ACPI_APEI_EINJ policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_ACPI_APEI_ERST_DEBUG policy<{'amd64': 'n', 'i386': 'n'}> + +# Menu: Power management and ACPI options >> ACPI (Advanced Configuration and Power Interface) Support >> PMIC (Power Management Integrated Circuit) operation region support +CONFIG_PMIC_OPREGION policy<{'amd64': 'n', 'arm64': 'n', 'i386': 'n'}> + +# Menu: Power management and ACPI options >> APM (Advanced Power Management) BIOS support >> Architecture: x86 +CONFIG_APM policy<{'i386': 'm'}> +CONFIG_APM_IGNORE_USER_SUSPEND policy<{'i386': 'n'}> +CONFIG_APM_DO_ENABLE policy<{'i386': 'n'}> +CONFIG_APM_CPU_IDLE policy<{'i386': 'n'}> +CONFIG_APM_DISPLAY_BLANK policy<{'i386': 'n'}> +CONFIG_APM_ALLOW_INTS policy<{'i386': 'n'}> +# +CONFIG_APM flag + +# Menu: Power management and ACPI options >> Architecture: arm + +# Menu: Power management and ACPI options >> Architecture: powerpc +CONFIG_PPC_POWERNV policy<{'powerpc-generic': 'y', 'ppc64el': 'y'}> +CONFIG_OPAL_PRD policy<{'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_PPC_CHRP policy<{'powerpc-powerpc-smp': 'y'}> +CONFIG_PPC_PMAC policy<{'powerpc-generic': 'y', 'powerpc-powerpc-smp': 'y', 'ppc64el': 'n'}> +CONFIG_PPC_PMAC32_PSURGE policy<{'powerpc-powerpc-smp': 'y'}> +CONFIG_PPC_MAPLE policy<{'powerpc-generic': 'y', 'ppc64el': 'n'}> +CONFIG_PPC_PASEMI policy<{'powerpc-generic': 'y', 'ppc64el': 'n'}> +CONFIG_PPC_PS3 policy<{'powerpc-generic': 'y', 'ppc64el': 'n'}> +CONFIG_PPC_IBM_CELL_BLADE policy<{'powerpc-generic': 'n', 'ppc64el': 'n'}> +CONFIG_PPC_CELL_QPACE policy<{'powerpc-generic': 'n', 'ppc64el': 'n'}> +CONFIG_EPAPR_PARAVIRT policy<{'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_PPC_OF_BOOT_TRAMPOLINE policy<{'powerpc-powerpc64-emb': 'n', 'powerpc-generic': 'y', 'powerpc-powerpc-smp': 'y', 'ppc64el': 'y'}> +CONFIG_UDBG_RTAS_CONSOLE policy<{'powerpc-generic': 'y', 'powerpc-powerpc-smp': 'y', 'ppc64el': 'n'}> +CONFIG_MPIC_TIMER policy<{'powerpc-powerpc64-emb': 'n', 'powerpc-powerpc-e500mc': 'n'}> +CONFIG_MPIC_MSGR policy<{'powerpc': 'y', 'ppc64el': 'n'}> +CONFIG_RTAS_PROC policy<{'powerpc-generic': 'y', 'powerpc-powerpc-smp': 'y', 'ppc64el': 'y'}> +CONFIG_RTAS_FLASH policy<{'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_IBMEBUS policy<{'powerpc-generic': 'n', 'ppc64el': 'y'}> +CONFIG_PPC601_SYNC_FIX policy<{'powerpc-powerpc-smp': 'n'}> +CONFIG_TAU policy<{'powerpc-powerpc-smp': 'y'}> +CONFIG_TAU_INT policy<{'powerpc-powerpc-smp': 'n'}> +CONFIG_TAU_AVERAGE policy<{'powerpc-powerpc-smp': 'n'}> +CONFIG_QUICC_ENGINE policy<{'powerpc-powerpc-e500mc': 'n'}> +CONFIG_CPM2 policy<{'powerpc-powerpc-e500mc': 'y'}> +CONFIG_SIMPLE_GPIO policy<{'powerpc': 'y', 'ppc64el': 'n'}> + +# Menu: Power management and ACPI options >> Architecture: s390 + +# 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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_FREQ_STAT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_FREQ_STAT_DETAILS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_FREQ_GOV_PERFORMANCE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_FREQ_GOV_POWERSAVE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_FREQ_GOV_USERSPACE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_FREQ_GOV_ONDEMAND policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_FREQ_GOV_CONSERVATIVE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_X86_INTEL_PSTATE policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_X86_PCC_CPUFREQ policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_X86_SFI_CPUFREQ policy<{'i386': 'm'}> +CONFIG_X86_POWERNOW_K6 policy<{'i386': 'm'}> +CONFIG_X86_POWERNOW_K7 policy<{'i386': 'm'}> +CONFIG_X86_GX_SUSPMOD policy<{'i386': 'm'}> +CONFIG_X86_SPEEDSTEP_CENTRINO policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_X86_SPEEDSTEP_CENTRINO_TABLE policy<{'i386': 'y'}> +CONFIG_X86_SPEEDSTEP_ICH policy<{'i386': 'y'}> +CONFIG_X86_SPEEDSTEP_SMI policy<{'i386': 'y'}> +CONFIG_X86_P4_CLOCKMOD policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_X86_CPUFREQ_NFORCE2 policy<{'i386': 'y'}> +CONFIG_X86_LONGRUN policy<{'i386': 'm'}> +CONFIG_X86_LONGHAUL policy<{'i386': 'm'}> +CONFIG_X86_E_POWERSAVER policy<{'i386': 'n'}> +CONFIG_X86_SPEEDSTEP_RELAXED_CAP_CHECK policy<{'i386': 'y'}> +CONFIG_ARM_BIG_LITTLE_CPUFREQ policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_DT_BL_CPUFREQ policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_VEXPRESS_SPC_CPUFREQ policy<{'armhf': 'm'}> +CONFIG_ARM_EXYNOS5440_CPUFREQ policy<{'armhf': 'n'}> +CONFIG_ARM_IMX6Q_CPUFREQ policy<{'armhf-generic': 'm'}> +CONFIG_ARM_MT8173_CPUFREQ policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARM_OMAP2PLUS_CPUFREQ policy<{'armhf': 'y'}> +CONFIG_ARM_TEGRA20_CPUFREQ policy<{'armhf-generic': 'y'}> +CONFIG_CPU_FREQ_MAPLE policy<{'powerpc-generic': 'y'}> +CONFIG_CPU_FREQ_PMAC policy<{'powerpc-powerpc-smp': 'y'}> +CONFIG_CPU_FREQ_PMAC64 policy<{'powerpc-generic': 'y'}> +CONFIG_PPC_PASEMI_CPUFREQ policy<{'powerpc-generic': 'y'}> +CONFIG_POWERNV_CPUFREQ policy<{'powerpc-generic': 'y', 'ppc64el': 'y'}> +CONFIG_QORIQ_CPUFREQ policy<{'armhf': 'm', 'powerpc-powerpc64-emb': 'm', 'powerpc-powerpc-e500mc': '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', 'i386': 'y'}> +CONFIG_X86_ACPI_CPUFREQ_CPB policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_X86_POWERNOW_K8 policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_X86_AMD_FREQ_SENSITIVITY policy<{'amd64': 'm', 'i386': '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': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': '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', 'powerpc-powerpc64-emb': 'y', 'powerpc-powerpc-e500mc': 'y'}> +CONFIG_ARM_HIGHBANK_CPUFREQ policy<{'armhf': 'm'}> +CONFIG_ARM_HISI_ACPU_CPUFREQ policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_TEGRA124_CPUFREQ policy<{'armhf-generic': 'm'}> +# +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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_IDLE_GOV_LADDER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_IDLE_GOV_MENU policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> + +# 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_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_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<{'powerpc-generic': 'y', 'ppc64el': 'y'}> +CONFIG_POWERNV_CPUIDLE policy<{'powerpc-generic': 'y', '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 +CONFIG_SPU_FS policy<{'powerpc-generic': 'm'}> +CONFIG_CBE_CPUFREQ_SPU_GOVERNOR policy<{'powerpc-generic': 'm'}> + +# Menu: Power management and ACPI options >> Device power management core functionality +CONFIG_PM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_APM_EMULATION policy<{'armhf': 'n', 'powerpc-powerpc-smp': 'm'}> +CONFIG_WQ_POWER_EFFICIENT_DEFAULT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Power management and ACPI options >> Device power management core functionality >> Power Management Debug Support +CONFIG_PM_DEBUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_PM_ADVANCED_DEBUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_PM_TEST_SUSPEND policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc-generic': 'n', 'powerpc-powerpc-smp': 'n', 'ppc64el': 'n'}> +CONFIG_DPM_WATCHDOG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +# +CONFIG_PM_DEBUG flag + +# 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 +CONFIG_FSL_SOC_BOOKE policy<{'powerpc-powerpc64-emb': 'y', 'powerpc-powerpc-e500mc': 'y'}> +CONFIG_BSC9131_RDB policy<{'powerpc-powerpc-e500mc': 'n'}> +CONFIG_C293_PCIE policy<{'powerpc-powerpc-e500mc': 'y'}> +CONFIG_BSC9132_QDS policy<{'powerpc-powerpc-e500mc': 'y'}> +CONFIG_MPC8540_ADS policy<{'powerpc-powerpc-e500mc': 'n'}> +CONFIG_MPC8560_ADS policy<{'powerpc-powerpc-e500mc': 'n'}> +CONFIG_MPC85xx_CDS policy<{'powerpc-powerpc-e500mc': 'n'}> +CONFIG_MPC85xx_MDS policy<{'powerpc-powerpc-e500mc': 'n'}> +CONFIG_MPC8536_DS policy<{'powerpc-powerpc-e500mc': 'n'}> +CONFIG_MPC85xx_DS policy<{'powerpc-powerpc-e500mc': 'n'}> +CONFIG_MPC85xx_RDB policy<{'powerpc-powerpc-e500mc': 'n'}> +CONFIG_P1010_RDB policy<{'powerpc-powerpc-e500mc': 'n'}> +CONFIG_P1022_DS policy<{'powerpc-powerpc-e500mc': 'n'}> +CONFIG_P1022_RDK policy<{'powerpc-powerpc-e500mc': 'n'}> +CONFIG_P1023_RDB policy<{'powerpc-powerpc-e500mc': 'y'}> +CONFIG_TWR_P102x policy<{'powerpc-powerpc-e500mc': 'y'}> +CONFIG_SOCRATES policy<{'powerpc-powerpc-e500mc': 'n'}> +CONFIG_KSI8560 policy<{'powerpc-powerpc-e500mc': 'n'}> +CONFIG_XES_MPC85xx policy<{'powerpc-powerpc-e500mc': 'n'}> +CONFIG_STX_GP3 policy<{'powerpc-powerpc-e500mc': 'n'}> +CONFIG_TQM8540 policy<{'powerpc-powerpc-e500mc': 'n'}> +CONFIG_TQM8541 policy<{'powerpc-powerpc-e500mc': 'n'}> +CONFIG_TQM8548 policy<{'powerpc-powerpc-e500mc': 'n'}> +CONFIG_TQM8555 policy<{'powerpc-powerpc-e500mc': 'n'}> +CONFIG_TQM8560 policy<{'powerpc-powerpc-e500mc': 'n'}> +CONFIG_SBC8548 policy<{'powerpc-powerpc-e500mc': 'n'}> +CONFIG_PPA8548 policy<{'powerpc-powerpc-e500mc': 'y'}> +CONFIG_GE_IMP3A policy<{'powerpc-powerpc-e500mc': 'n'}> +CONFIG_SGY_CTS1000 policy<{'powerpc-powerpc-e500mc': 'm'}> +CONFIG_MVME2500 policy<{'powerpc-powerpc-e500mc': 'n'}> +CONFIG_PPC_QEMU_E500 policy<{'powerpc-powerpc64-emb': 'y', 'powerpc-powerpc-e500mc': 'y'}> +CONFIG_CORENET_GENERIC policy<{'powerpc-powerpc64-emb': 'y', 'powerpc-powerpc-e500mc': 'y'}> + +# 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<{'powerpc-generic': 'y', 'ppc64el': 'y'}> +CONFIG_PPC_SPLPAR policy<{'powerpc-generic': 'n', 'ppc64el': 'y'}> +CONFIG_DTL policy<{'ppc64el': 'y'}> +CONFIG_PSERIES_ENERGY policy<{'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_SCANLOG policy<{'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_IO_EVENT_IRQ policy<{'powerpc-generic': 'y', 'ppc64el': 'y'}> +CONFIG_LPARCFG policy<{'powerpc-generic': 'n', 'ppc64el': 'y'}> +CONFIG_PPC_SMLPAR policy<{'powerpc-generic': 'n', 'ppc64el': 'y'}> +CONFIG_HV_PERF_CTRS policy<{'powerpc-generic': 'y', 'ppc64el': 'y'}> + +# 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 >> Memory power savings +CONFIG_I7300_IDLE policy<{'amd64': 'm'}> + +# Menu: Power management and ACPI options >> PA Semi PWRficient options >> Architecture: powerpc +CONFIG_PPC_PASEMI_IOMMU policy<{'powerpc-generic': 'y'}> +CONFIG_PPC_PASEMI_IOMMU_DMA_FORCE policy<{'powerpc-generic': 'n'}> +CONFIG_PPC_PASEMI_MDIO policy<{'powerpc-generic': 'm'}> + +# Menu: Power management and ACPI options >> PS3 Platform Options >> Architecture: powerpc +CONFIG_PS3_DYNAMIC_DMA policy<{'powerpc-generic': 'n'}> +CONFIG_PS3_DISK policy<{'powerpc-generic': 'm'}> +CONFIG_PS3_ROM policy<{'powerpc-generic': 'm'}> +CONFIG_PS3_FLASH policy<{'powerpc-generic': 'm'}> +CONFIG_PS3_VRAM policy<{'powerpc-generic': 'm'}> +CONFIG_PS3_LPM policy<{'powerpc-generic': 'm'}> +CONFIG_PS3GELIC_UDBG policy<{'powerpc-generic': 'n'}> + +# Menu: Power management and ACPI options >> PS3 Platform Options >> PS3 Advanced configuration options >> Architecture: powerpc +CONFIG_PS3_ADVANCED policy<{'powerpc-generic': 'n'}> +CONFIG_PS3_HTAB_SIZE policy<{'powerpc-generic': '20'}> +CONFIG_PS3_PS3AV policy<{'powerpc-generic': 'y'}> +CONFIG_PS3_SYS_MANAGER policy<{'powerpc-generic': 'y'}> +CONFIG_PS3_REPOSITORY_WRITE policy<{'powerpc-generic': 'n'}> + +# Menu: Processor support +CONFIG_SMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NR_CPUS policy<{'amd64': '512', 'arm64': '128', 'armhf': '4', 'i386': '8', 'powerpc-powerpc64-emb': '8', 'powerpc-generic': '1024', 'powerpc-powerpc-e500mc': '8', 'powerpc-powerpc-smp': '4', 'ppc64el': '2048', 's390x': '256'}> + +# Menu: Processor support >> Architecture: powerpc +CONFIG_TUNE_CELL policy<{'powerpc-generic': 'n', 'ppc64el': 'n'}> +CONFIG_PPC_E500MC policy<{'powerpc-powerpc64-emb': 'y', 'powerpc-powerpc-e500mc': 'y'}> +CONFIG_FSL_EMB_PERFMON policy<{'powerpc-powerpc64-emb': 'y', 'powerpc-powerpc-e500mc': 'y'}> +CONFIG_PHYS_64BIT policy<{'powerpc-powerpc64-emb': 'y', 'powerpc-powerpc-e500mc': 'y'}> +CONFIG_ALTIVEC policy<{'powerpc-powerpc64-emb': 'y', 'powerpc-generic': 'y', 'powerpc-powerpc-smp': 'y', 'ppc64el': 'y'}> +CONFIG_VSX policy<{'powerpc-generic': 'y', 'ppc64el': 'y'}> +CONFIG_PPC_ICSWX policy<{'powerpc-generic': 'y', 'ppc64el': 'n'}> +CONFIG_PPC_ICSWX_PID policy<{'powerpc-generic': 'y'}> +CONFIG_PPC_ICSWX_USE_SIGILL policy<{'powerpc-generic': 'n'}> +# +CONFIG_PPC_ICSWX flag + +# Menu: Processor support >> CPU selection +CONFIG_GENERIC_CPU policy<{'amd64': 'y', 'powerpc-powerpc64-emb': 'y', 'powerpc-generic': 'y'}> + +# Menu: Processor support >> CPU selection >> Architecture: powerpc +CONFIG_CELL_CPU policy<{'powerpc-generic': 'n'}> +CONFIG_POWER4_CPU policy<{'powerpc-generic': 'n'}> +CONFIG_POWER5_CPU policy<{'powerpc-generic': 'n'}> +CONFIG_POWER6_CPU policy<{'powerpc-generic': 'n'}> +CONFIG_POWER7_CPU policy<{'powerpc-generic': 'n', 'ppc64el': 'y'}> +CONFIG_POWER8_CPU policy<{'powerpc-generic': 'n', 'ppc64el': 'n'}> +CONFIG_E5500_CPU policy<{'powerpc-powerpc64-emb': 'n'}> +CONFIG_E6500_CPU policy<{'powerpc-powerpc64-emb': 'n'}> + +# Menu: Processor support >> Processor Type >> Architecture: powerpc +CONFIG_PPC_BOOK3S_32 policy<{'powerpc-powerpc-e500mc': 'n', 'powerpc-powerpc-smp': 'y'}> +CONFIG_PPC_85xx policy<{'powerpc-powerpc-e500mc': 'y', 'powerpc-powerpc-smp': 'n'}> +CONFIG_PPC_8xx policy<{'powerpc-powerpc-e500mc': 'n', 'powerpc-powerpc-smp': 'n'}> +CONFIG_40x policy<{'powerpc-powerpc-e500mc': 'n', 'powerpc-powerpc-smp': 'n'}> +CONFIG_44x policy<{'powerpc-powerpc-e500mc': 'n', 'powerpc-powerpc-smp': 'n'}> +CONFIG_E200 policy<{'powerpc-powerpc-e500mc': 'n', 'powerpc-powerpc-smp': 'n'}> +CONFIG_PPC_BOOK3S_64 policy<{'powerpc-powerpc64-emb': 'n', 'powerpc-generic': 'y', 'ppc64el': 'y'}> +CONFIG_PPC_BOOK3E_64 policy<{'powerpc-powerpc64-emb': 'y', 'powerpc-generic': 'n', 'ppc64el': 'n'}> + +# Menu: Processor type and features +CONFIG_SPARSEMEM_VMEMMAP policy<{'amd64': 'y', 'arm64': 'y', 'powerpc-powerpc64-emb': 'y', 'powerpc-generic': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MOVABLE_NODE policy<{'amd64': 'y', 'arm64': 'n', 'powerpc-generic': 'n', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_MEMORY_HOTPLUG policy<{'amd64': 'y', 'i386': 'y', 'powerpc-generic': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MEMORY_HOTREMOVE policy<{'amd64': 'y', 'i386': 'y', 'powerpc-generic': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BALLOON_COMPACTION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_COMPACTION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MIGRATION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BOUNCE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_KSM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEFAULT_MMAP_MIN_ADDR policy<{'amd64': '65536', 'arm64': '32768', 'armhf': '32768', 'i386': '65536', 'powerpc': '65536', 'ppc64el': '65536', 's390x': '65536'}> +CONFIG_MEMORY_FAILURE policy<{'amd64': 'y', 'powerpc-generic': 'y', 'ppc64el': 'y'}> +CONFIG_HWPOISON_INJECT policy<{'amd64': 'm', 'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_TRANSPARENT_HUGEPAGE policy<{'amd64': 'y', 'arm64': 'y', 'armhf-generic-lpae': 'y', 'i386': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CLEANCACHE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FRONTSWAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MEM_SOFT_DIRTY policy<{'amd64': 'y'}> +CONFIG_ZSWAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ZPOOL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ZBUD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ZSMALLOC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PGTABLE_MAPPING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_ZSMALLOC_STAT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEFERRED_STRUCT_PAGE_INIT policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_IDLE_PAGE_TRACKING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_HIGHPTE policy<{'armhf': 'y', 'i386': 'y'}> +CONFIG_MATH_EMULATION policy<{'i386': 'n', 'powerpc-powerpc64-emb': 'y', 'powerpc-powerpc-e500mc': 'y'}> +CONFIG_CMDLINE_BOOL policy<{'amd64': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_HIGHMEM policy<{'armhf': 'y', 'i386': 'y', 'powerpc-powerpc-e500mc': 'y', 'powerpc-powerpc-smp': 'y'}> +CONFIG_HOTPLUG_CPU policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc-generic': 'y', 'powerpc-powerpc-e500mc': 'y', 'powerpc-powerpc-smp': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NUMA policy<{'amd64': 'y', 'powerpc-powerpc64-emb': 'n', 'powerpc-generic': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FORCE_MAX_ZONEORDER policy<{'arm64': '11', 'armhf-generic': '12', 'armhf-generic-lpae': '11', 'powerpc-powerpc64-emb': '13', 'powerpc-generic': '13', 'powerpc-powerpc-e500mc': '11', 'powerpc-powerpc-smp': '11', 'ppc64el': '9', 's390x': '9'}> +CONFIG_SCHED_SMT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'n', 'i386': 'y', 'powerpc-powerpc64-emb': 'n', 'powerpc-generic': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_XEN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'n', 'i386': 'y'}> +# +CONFIG_MOVABLE_NODE mark note +CONFIG_DEFAULT_MMAP_MIN_ADDR mark note +CONFIG_IDLE_PAGE_TRACKING flag note + +# 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_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': 'n'}> +CONFIG_UACCESS_WITH_MEMCPY policy<{'armhf': 'n'}> + +# Menu: Processor type and features >> Architecture: powerpc +CONFIG_PPC_TRANSACTIONAL_MEM policy<{'powerpc-generic': 'y', 'ppc64el': 'y'}> +CONFIG_SWIOTLB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y'}> +CONFIG_PPC64_SUPPORTS_MEMORY_FAILURE policy<{'powerpc-generic': 'y', 'ppc64el': 'y'}> +CONFIG_FA_DUMP policy<{'powerpc-generic': 'y', 'ppc64el': 'y'}> +CONFIG_IRQ_ALL_CPUS policy<{'powerpc': 'n', 'ppc64el': 'y'}> +CONFIG_PPC_SUBPAGE_PROT policy<{'ppc64el': 'y'}> +CONFIG_PPC_DENORMALISATION policy<{'powerpc-generic': 'n', 'ppc64el': 'y'}> +CONFIG_EXTRA_TARGETS policy<{'powerpc': '""', 'ppc64el': '""'}> +# +CONFIG_FA_DUMP note + +# Menu: Processor type and features >> Architecture: s390 +CONFIG_COMPAT policy<{'amd64': 'y', 'arm64': 'y', 'powerpc-powerpc64-emb': 'y', 'powerpc-generic': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PACK_STACK policy<{'s390x': 'y'}> +CONFIG_CHECK_STACK policy<{'s390x': 'y'}> +CONFIG_STACK_GUARD policy<{'s390x': '256'}> +CONFIG_WARN_DYNAMIC_STACK policy<{'s390x': 'n'}> + +# Menu: Processor type and features >> Architecture: x86 +CONFIG_ZONE_DMA policy<{'amd64-generic': 'n', 'amd64-lowlatency': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_X86_FEATURE_NAMES policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_X86_X2APIC policy<{'amd64': 'y'}> +CONFIG_X86_MPPARSE policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_X86_EXTENDED_PLATFORM policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_X86_INTEL_LPSS policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_X86_AMD_PLATFORM_DEVICE policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_IOSF_MBI policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_IOSF_MBI_DEBUG policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_X86_32_IRIS policy<{'i386': 'm'}> +CONFIG_SCHED_OMIT_FRAME_POINTER policy<{'amd64': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_X86_GENERIC policy<{'i386': 'y'}> +CONFIG_X86_PPRO_FENCE policy<{'i386': 'y'}> +CONFIG_HPET_TIMER policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_DMI policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +CONFIG_GART_IOMMU policy<{'amd64': 'y'}> +CONFIG_CALGARY_IOMMU policy<{'amd64': 'y'}> +CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT policy<{'amd64': 'y'}> +CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_X86_LEGACY_VM86 policy<{'i386': 'y'}> +CONFIG_X86_16BIT policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_X86_VSYSCALL_EMULATION policy<{'amd64': 'y'}> +CONFIG_TOSHIBA policy<{'i386': 'n'}> +CONFIG_I8K policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_X86_REBOOTFIXUPS policy<{'i386': 'y'}> +CONFIG_X86_MSR policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_X86_CPUID policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_X86_PAE policy<{'i386': 'y'}> +CONFIG_ARCH_MEMORY_PROBE policy<{'amd64': 'y', 'powerpc-generic': 'y', 'ppc64el': 'y'}> +CONFIG_X86_PMEM_LEGACY policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_X86_CHECK_BIOS_CORRUPTION policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_X86_RESERVE_LOW policy<{'amd64': '64', 'i386': '64'}> +CONFIG_MTRR policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_MTRR_SANITIZER policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT policy<{'amd64': '1', 'i386': '1'}> +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT policy<{'amd64': '1', 'i386': '1'}> +CONFIG_X86_PAT policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_ARCH_RANDOM policy<{'amd64': 'y', 'i386': 'y', 'powerpc-powerpc64-emb': 'n', 'powerpc-generic': 'y', 'powerpc-powerpc-e500mc': 'n', 'powerpc-powerpc-smp': 'n', 'ppc64el': 'y'}> +CONFIG_X86_SMAP policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_X86_INTEL_MPX policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_EFI policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +CONFIG_EFI_STUB policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> +CONFIG_EFI_MIXED policy<{'amd64': 'y'}> +CONFIG_KEXEC_FILE policy<{'amd64': 'y'}> +CONFIG_KEXEC_VERIFY_SIG policy<{'amd64': 'y'}> +CONFIG_KEXEC_BZIMAGE_VERIFY_SIG policy<{'amd64': 'y'}> +CONFIG_KEXEC_JUMP policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_RANDOMIZE_BASE policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_COMPAT_VDSO policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_MODIFY_LDT_SYSCALL policy<{'amd64': 'y', 'i386': 'y'}> +# +CONFIG_COMPAT_VDSO mark +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', 'i386': 'y'}> +CONFIG_MICROCODE_INTEL policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_MICROCODE_AMD policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_MICROCODE_EARLY policy<{'amd64': 'y', 'i386': 'y'}> + +# Menu: Processor type and features >> Contiguous Memory Allocator +CONFIG_CMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_CMA_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_CMA_DEBUGFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n'}> +CONFIG_CMA_AREAS policy<{'amd64': '7', 'arm64': '7', 'armhf': '7', 'i386': '7', 'powerpc': '7', 'ppc64el': '7'}> + +# Menu: Processor type and features >> Device power management core functionality + +# Menu: Processor type and features >> Device power management core functionality >> Power Management Debug Support +# + +# Menu: Processor type and features >> High Memory Support >> Architecture: x86 +CONFIG_NOHIGHMEM policy<{'i386': 'n'}> +CONFIG_HIGHMEM4G policy<{'i386': 'n'}> +CONFIG_HIGHMEM64G policy<{'i386': 'y'}> + +# Menu: Processor type and features >> Linux guest support >> Architecture: x86 +CONFIG_HYPERVISOR_GUEST policy<{'amd64': 'y', 'i386': '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 policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_PARAVIRT_DEBUG policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_PARAVIRT_SPINLOCKS policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_KVM_DEBUG_FS policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_LGUEST_GUEST policy<{'i386': 'n'}> +CONFIG_PARAVIRT_TIME_ACCOUNTING policy<{'amd64': 'n', 'i386': 'n'}> + +# 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_512GB policy<{'amd64': 'y'}> +CONFIG_XEN_DEBUG_FS policy<{'amd64': 'n', 'i386': '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', 'i386': 'y'}> +CONFIG_X86_MCE_INTEL policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_X86_MCE_AMD policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_X86_ANCIENT_MCE policy<{'i386': 'n'}> +CONFIG_X86_MCE_INJECT policy<{'amd64': 'm', 'i386': 'm'}> + +# Menu: Processor type and features >> Math emulation options >> Architecture: powerpc +CONFIG_MATH_EMULATION_FULL policy<{'powerpc-powerpc64-emb': 'n', 'powerpc-powerpc-e500mc': 'n'}> +CONFIG_MATH_EMULATION_HW_UNIMPLEMENTED policy<{'powerpc-powerpc64-emb': 'y', 'powerpc-powerpc-e500mc': 'y'}> + +# Menu: Processor type and features >> Memory model +CONFIG_FLATMEM_MANUAL policy<{'i386': 'n', 'powerpc-powerpc64-emb': 'n'}> +CONFIG_SPARSEMEM_MANUAL policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y', 'powerpc-powerpc64-emb': 'y', 'powerpc-generic': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Processor type and features >> Memory split +CONFIG_VMSPLIT_3G policy<{'armhf': 'y', 'i386': 'y'}> +CONFIG_VMSPLIT_2G policy<{'armhf': 'n', 'i386': 'n'}> +CONFIG_VMSPLIT_1G policy<{'armhf': 'n', 'i386': '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: powerpc +CONFIG_PPC_4K_PAGES policy<{'powerpc': 'y', 'ppc64el': 'n'}> +CONFIG_PPC_64K_PAGES policy<{'powerpc-generic': 'n', 'ppc64el': 'y'}> + +# Menu: Processor type and features >> Preemption Model +CONFIG_PREEMPT_NONE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'y'}> +CONFIG_PREEMPT_VOLUNTARY policy<{'amd64-generic': 'y', 'amd64-lowlatency': 'n', 'arm64': 'y', 'armhf': 'y', 'i386-generic': 'y', 'i386-lowlatency': 'n', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_PREEMPT policy<{'amd64-generic': 'n', 'amd64-lowlatency': 'y', 'arm64': 'n', 'armhf': 'n', 'i386-generic': 'n', 'i386-lowlatency': 'y', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Processor type and features >> Processor family + +# Menu: Processor type and features >> Processor family >> Architecture: x86 +CONFIG_M486 policy<{'i386': 'n'}> +CONFIG_M586 policy<{'i386': 'n'}> +CONFIG_M586TSC policy<{'i386': 'n'}> +CONFIG_M586MMX policy<{'i386': 'n'}> +CONFIG_M686 policy<{'i386': 'y'}> +CONFIG_MPENTIUMII policy<{'i386': 'n'}> +CONFIG_MPENTIUMIII policy<{'i386': 'n'}> +CONFIG_MPENTIUMM policy<{'i386': 'n'}> +CONFIG_MPENTIUM4 policy<{'i386': 'n'}> +CONFIG_MK6 policy<{'i386': 'n'}> +CONFIG_MK7 policy<{'i386': 'n'}> +CONFIG_MK8 policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_MCRUSOE policy<{'i386': 'n'}> +CONFIG_MEFFICEON policy<{'i386': 'n'}> +CONFIG_MWINCHIPC6 policy<{'i386': 'n'}> +CONFIG_MWINCHIP3D policy<{'i386': 'n'}> +CONFIG_MELAN policy<{'i386': 'n'}> +CONFIG_MGEODEGX1 policy<{'i386': 'n'}> +CONFIG_MGEODE_LX policy<{'i386': 'n'}> +CONFIG_MCYRIXIII policy<{'i386': 'n'}> +CONFIG_MVIAC3_2 policy<{'i386': 'n'}> +CONFIG_MVIAC7 policy<{'i386': 'n'}> +CONFIG_MPSC policy<{'amd64': 'n'}> +CONFIG_MCORE2 policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_MATOM policy<{'amd64': 'n', 'i386': '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': 'y'}> +CONFIG_MARCH_Z13 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': 'n'}> +CONFIG_X86_GOLDFISH policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_X86_INTEL_MID policy<{'i386': 'y'}> +CONFIG_X86_INTEL_QUARK policy<{'i386': 'n'}> +CONFIG_X86_RDC321X policy<{'i386': 'n'}> +CONFIG_X86_32_NON_STANDARD policy<{'i386': 'n'}> +CONFIG_APB_TIMER policy<{'i386': 'y'}> + +# Menu: Processor type and features >> Supported processor vendors >> Architecture: x86 +CONFIG_PROCESSOR_SELECT policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_CPU_SUP_INTEL policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_CPU_SUP_CYRIX_32 policy<{'i386': 'y'}> +CONFIG_CPU_SUP_AMD policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_CPU_SUP_CENTAUR policy<{'amd64': 'y', 'i386': 'y'}> +CONFIG_CPU_SUP_TRANSMETA_32 policy<{'i386': 'y'}> +CONFIG_CPU_SUP_UMC_32 policy<{'i386': 'y'}> + +# Menu: Processor type and features >> Symmetric Multi-Processing +CONFIG_SCHED_MC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 's390x': 'y'}> + +# 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'}> + +# Menu: Processor type and features >> Symmetric multi-processing support +CONFIG_NODES_SHIFT policy<{'amd64': '6', 'powerpc-generic': '8', 'ppc64el': '8', 's390x': '4'}> + +# Menu: Processor type and features >> Symmetric multi-processing support >> Architecture: s390 +CONFIG_SCHED_TOPOLOGY policy<{'s390x': 'y'}> + +# Menu: Processor type and features >> Symmetric multi-processing support >> Architecture: x86 +CONFIG_X86_BIGSMP policy<{'i386': 'n'}> +CONFIG_MAXSMP policy<{'amd64': 'n'}> +CONFIG_BOOTPARAM_HOTPLUG_CPU0 policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_DEBUG_HOTPLUG_CPU0 policy<{'amd64': 'n', 'i386': 'n'}> + +# Menu: Processor type and features >> Symmetric multi-processing support >> Numa Memory Allocation and Scheduler Support +CONFIG_NUMA_EMU policy<{'amd64': 'n', 's390x': 'y'}> +CONFIG_NUMA_EMU note + +# Menu: Processor type and features >> Symmetric multi-processing support >> Numa Memory Allocation and Scheduler Support >> Architecture: x86 +CONFIG_AMD_NUMA policy<{'amd64': 'y'}> +CONFIG_X86_64_ACPI_NUMA policy<{'amd64': 'y'}> + +# Menu: Processor type and features >> Symmetric multi-processing support >> Select NUMA modes + +# Menu: Processor type and features >> Symmetric multi-processing support >> Select NUMA modes >> Architecture: s390 + +# Menu: Processor type and features >> Timer frequency +CONFIG_HZ_100 policy<{'amd64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'y'}> +CONFIG_HZ_250 policy<{'amd64-generic': 'y', 'amd64-lowlatency': 'n', 'armhf': 'y', 'i386-generic': 'y', 'i386-lowlatency': 'n', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_HZ_300 policy<{'amd64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_HZ_1000 policy<{'amd64-generic': 'n', 'amd64-lowlatency': 'y', 'armhf': 'n', 'i386-generic': 'n', 'i386-lowlatency': 'y', 'powerpc': '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 >> Transparent Hugepage Support sysfs defaults +CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf-generic-lpae': 'y', 'i386': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE policy<{'amd64': 'n', 'arm64': 'n', 'armhf-generic-lpae': 'n', 'i386': 'n', 'ppc64el': 'n', 's390x': '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': 'y'}> +CONFIG_TUNE_Z13 policy<{'s390x': 'n'}> + +# Menu: Security options +CONFIG_SECURITY_DMESG_RESTRICT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SECURITYFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_INTEL_TXT policy<{'amd64': 'y', 'i386': 'y'}> + +# Menu: Security options >> Default security module +CONFIG_DEFAULT_SECURITY_SELINUX policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEFAULT_SECURITY_SMACK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEFAULT_SECURITY_TOMOYO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEFAULT_SECURITY_APPARMOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEFAULT_SECURITY_DAC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_DEFAULT_SECURITY_APPARMOR mark + +# Menu: Security options >> Enable access key retention support +CONFIG_KEYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PERSISTENT_KEYRINGS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BIG_KEYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TRUSTED_KEYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ENCRYPTED_KEYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Security options >> Enable different security models +CONFIG_SECURITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_NETWORK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_NETWORK_XFRM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_PATH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_LSM_MMAP_MIN_ADDR policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'i386': '0', 'powerpc': '0', 'ppc64el': '0', 's390x': '0'}> +CONFIG_SECURITY_SMACK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_SMACK_BRINGUP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SECURITY_SMACK_NETFILTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_YAMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_SECURITY mark +CONFIG_LSM_MMAP_MIN_ADDR mark flag +CONFIG_SECURITY_SMACK mark +CONFIG_SECURITY_YAMA mark + +# Menu: Security options >> Enable different security models >> AppArmor support +CONFIG_SECURITY_APPARMOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_APPARMOR_BOOTPARAM_VALUE policy<{'amd64': '1', 'arm64': '1', 'armhf': '1', 'i386': '1', 'powerpc': '1', 'ppc64el': '1', 's390x': '1'}> +CONFIG_SECURITY_APPARMOR_STATS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SECURITY_APPARMOR_UNCONFINED_INIT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_APPARMOR_HASH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_APPARMOR_HASH_DEFAULT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Security options >> Enable different security models >> Integrity subsystem +CONFIG_INTEGRITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_INTEGRITY_SIGNATURE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_INTEGRITY_ASYMMETRIC_KEYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_INTEGRITY_AUDIT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EVM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EVM_ATTR_FSUUID policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EVM_EXTRA_SMACK_XATTRS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Security options >> Enable different security models >> Integrity subsystem >> Integrity Measurement Architecture(IMA) +CONFIG_IMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc-powerpc64-emb': 'n', 'powerpc-generic': 'y', 'powerpc-powerpc-e500mc': 'y', 'powerpc-powerpc-smp': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IMA_APPRAISE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc-generic': 'y', 'powerpc-powerpc-e500mc': 'y', 'powerpc-powerpc-smp': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IMA_TRUSTED_KEYRING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc-generic': 'y', 'powerpc-powerpc-e500mc': 'y', 'powerpc-powerpc-smp': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IMA_LOAD_X509 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc-generic': 'n', 'powerpc-powerpc-e500mc': 'n', 'powerpc-powerpc-smp': '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', 'i386': 'y', 'powerpc-generic': 'y', 'powerpc-powerpc-e500mc': 'y', 'powerpc-powerpc-smp': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IMA_DEFAULT_HASH_SHA256 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc-generic': 'n', 'powerpc-powerpc-e500mc': 'n', 'powerpc-powerpc-smp': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_IMA_DEFAULT_HASH_SHA512 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc-generic': 'n', 'powerpc-powerpc-e500mc': 'n', 'powerpc-powerpc-smp': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_IMA_DEFAULT_HASH_WP512 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc-generic': 'n', 'powerpc-powerpc-e500mc': 'n', 'powerpc-powerpc-smp': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# 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', 'i386': 'n', 'powerpc-generic': 'n', 'powerpc-powerpc-e500mc': 'n', 'powerpc-powerpc-smp': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_IMA_NG_TEMPLATE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc-generic': 'y', 'powerpc-powerpc-e500mc': 'y', 'powerpc-powerpc-smp': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IMA_SIG_TEMPLATE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc-generic': 'n', 'powerpc-powerpc-e500mc': 'n', 'powerpc-powerpc-smp': '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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_SELINUX_BOOTPARAM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'i386': '0', 'powerpc': '0', 'ppc64el': '0'}> +CONFIG_SECURITY_SELINUX_DISABLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_SECURITY_SELINUX_DEVELOP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_SELINUX_AVC_STATS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE policy<{'amd64': '1', 'arm64': '1', 'armhf': '1', 'i386': '1', 'powerpc': '1', 'ppc64el': '1', 's390x': '1'}> +CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_SECURITY_SELINUX mark + +# Menu: Security options >> Enable different security models >> TOMOYO Linux Support +CONFIG_SECURITY_TOMOYO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY policy<{'amd64': '2048', 'arm64': '2048', 'armhf': '2048', 'i386': '2048', 'powerpc': '2048', 'ppc64el': '2048', 's390x': '2048'}> +CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG policy<{'amd64': '1024', 'arm64': '1024', 'armhf': '1024', 'i386': '1024', 'powerpc': '1024', 'ppc64el': '1024', 's390x': '1024'}> +CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'powerpc': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SECURITY_TOMOYO_POLICY_LOADER policy<{'amd64': '"/sbin/tomoyo-init"', 'arm64': '"/sbin/tomoyo-init"', 'armhf': '"/sbin/tomoyo-init"', 'i386': '"/sbin/tomoyo-init"', 'powerpc': '"/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"', 'i386': '"/sbin/init"', 'powerpc': '"/sbin/init"', 'ppc64el': '"/sbin/init"', 's390x': '"/sbin/init"'}> + +# Menu: System Type + +# Menu: System Type >> ARM Ltd. Versatile Express family >> Architecture: arm +CONFIG_ARCH_VEXPRESS policy<{'arm64': 'y', 'armhf': 'y'}> +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_REALVIEW policy<{'armhf': 'n'}> +CONFIG_ARCH_VERSATILE policy<{'armhf': 'n'}> +CONFIG_ARCH_CLPS711X policy<{'armhf': 'n'}> +CONFIG_ARCH_GEMINI policy<{'armhf': 'n'}> +CONFIG_ARCH_EBSA110 policy<{'armhf': 'n'}> +CONFIG_ARCH_EP93XX policy<{'armhf': 'n'}> +CONFIG_ARCH_FOOTBRIDGE policy<{'armhf': 'n'}> +CONFIG_ARCH_NETX policy<{'armhf': 'n'}> +CONFIG_ARCH_IOP13XX policy<{'armhf': 'n'}> +CONFIG_ARCH_IOP32X policy<{'armhf': 'n'}> +CONFIG_ARCH_IOP33X policy<{'armhf': 'n'}> +CONFIG_ARCH_IXP4XX policy<{'armhf': 'n'}> +CONFIG_ARCH_DOVE policy<{'armhf': 'n'}> +CONFIG_ARCH_MV78XX0 policy<{'armhf': 'n'}> +CONFIG_ARCH_ORION5X policy<{'armhf': 'n'}> +CONFIG_ARCH_MMP policy<{'armhf': 'n'}> +CONFIG_ARCH_KS8695 policy<{'armhf': 'n'}> +CONFIG_ARCH_W90X900 policy<{'armhf': 'n'}> +CONFIG_ARCH_LPC32XX policy<{'armhf': 'n'}> +CONFIG_ARCH_PXA policy<{'armhf': 'n'}> +CONFIG_ARCH_SHMOBILE_LEGACY policy<{'armhf': 'n'}> +CONFIG_ARCH_RPC policy<{'armhf': 'n'}> +CONFIG_ARCH_SA1100 policy<{'armhf': 'n'}> +CONFIG_ARCH_S3C24XX policy<{'armhf': 'n'}> +CONFIG_ARCH_S3C64XX policy<{'armhf': 'n'}> +CONFIG_ARCH_DAVINCI policy<{'armhf': 'n'}> +CONFIG_ARCH_OMAP1 policy<{'armhf': 'n'}> + +# Menu: System Type >> Allwinner SoCs >> Architecture: arm +CONFIG_ARCH_SUNXI policy<{'armhf': 'n'}> + +# Menu: System Type >> Altera SOCFPGA family >> Architecture: arm +CONFIG_ARCH_SOCFPGA policy<{'armhf': 'n'}> + +# Menu: System Type >> Amlogic Meson SoCs >> Architecture: arm +CONFIG_ARCH_MESON policy<{'armhf': 'y'}> +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_ALPINE 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_HISI policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARCH_KEYSTONE policy<{'armhf': 'n'}> +CONFIG_ARCH_ROCKCHIP policy<{'arm64': 'n', 'armhf': 'y'}> +CONFIG_ARCH_S5PV210 policy<{'armhf': 'n'}> +CONFIG_ARCH_R8A7778 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A7779 policy<{'armhf': 'y'}> +CONFIG_ARCH_UNIPHIER policy<{'armhf': 'y'}> +CONFIG_ARCH_WM8850 policy<{'armhf': 'n'}> +CONFIG_ARCH_ZX policy<{'armhf': 'y'}> +CONFIG_ARCH_ZYNQ policy<{'armhf': 'n'}> +CONFIG_ARM_THUMB 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_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_ARCH_ROCKCHIP note + +# Menu: System Type >> Atmel SoCs >> Architecture: arm +CONFIG_ARCH_AT91 policy<{'armhf': 'n'}> + +# Menu: System Type >> Broadcom SoC Support >> Architecture: arm +CONFIG_ARCH_BCM policy<{'armhf': 'n'}> + +# Menu: System Type >> CLPS711X/EP721X/EP731X Implementations >> Architecture: arm + +# Menu: System Type >> CSR SiRF >> Architecture: arm +CONFIG_ARCH_SIRF policy<{'armhf': 'n'}> + +# Menu: System Type >> Cavium Networks CNS3XXX family >> Architecture: arm + +# Menu: System Type >> Cirrus EP93xx Implementation Options >> Architecture: arm + +# Menu: System Type >> Cortina Systems Gemini Implementations >> Architecture: arm + +# Menu: System Type >> Enable the L2x0 outer cache controller >> Architecture: arm +CONFIG_CACHE_L2X0 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 >> Firmware options >> Architecture: arm +CONFIG_TRUSTED_FOUNDATIONS policy<{'armhf-generic': 'y'}> + +# Menu: System Type >> Footbridge Implementations >> Architecture: arm + +# Menu: System Type >> Freescale i.MX family >> Architecture: arm +CONFIG_ARCH_MXC policy<{'armhf-generic': 'y', 'armhf-generic-lpae': 'n'}> +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_IMX6SX policy<{'armhf-generic': 'y'}> +CONFIG_SOC_IMX6UL policy<{'armhf-generic': 'y'}> +CONFIG_SOC_IMX7D policy<{'armhf-generic': 'y'}> +CONFIG_SOC_LS1021A policy<{'armhf-generic': 'n'}> +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 >> IOP13XX Implementation Options >> Architecture: arm + +# Menu: System Type >> IOP32x Implementation Options >> Architecture: arm + +# Menu: System Type >> IOP33x Implementation Options >> Architecture: arm + +# Menu: System Type >> Integrator 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 >> Kendin/Micrel KS8695 Implementations >> 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', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ARM_LPAE policy<{'armhf-generic': 'n', 'armhf-generic-lpae': 'y'}> +CONFIG_CPU_ICACHE_DISABLE policy<{'armhf': 'n'}> +CONFIG_KUSER_HELPERS policy<{'armhf': 'y'}> +CONFIG_ARM_KERNMEM_PERMS policy<{'armhf': 'y'}> +# +CONFIG_ARM_KERNMEM_PERMS flag + +# Menu: System Type >> MMU-based Paged Memory Management Support >> Renesas ARM SoCs >> Architecture: arm +CONFIG_ARCH_SHMOBILE_MULTI policy<{'armhf': 'y'}> +CONFIG_ARCH_EMEV2 policy<{'armhf': 'y'}> +CONFIG_ARCH_R7S72100 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A73A4 policy<{'armhf': 'n'}> +CONFIG_ARCH_R8A7740 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A7790 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A7791 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A7793 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A7794 policy<{'armhf': 'y'}> +CONFIG_ARCH_SH73A0 policy<{'armhf': 'y'}> +# +CONFIG_ARCH_R8A73A4 flag + +# Menu: System Type >> MMU-based Paged Memory Management Support >> ST-Ericsson U300 Series >> 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 >> MOXA ART SoC >> Architecture: arm + +# Menu: System Type >> Marvell Berlin SoCs >> Architecture: arm +CONFIG_ARCH_BERLIN policy<{'arm64': 'y', 'armhf': 'y'}> +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 >> Architecture: arm +CONFIG_ARCH_MVEBU policy<{'armhf': 'y'}> +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 Implementations >> Architecture: arm + +# Menu: System Type >> Marvell PXA168/910/MMP2 Implmentations >> Architecture: arm + +# Menu: System Type >> Mediatek MT65xx & MT81xx SoC >> Architecture: arm +CONFIG_ARCH_MEDIATEK policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MACH_MT6589 policy<{'armhf': 'y'}> +CONFIG_MACH_MT6592 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 >> NUC950 Machines >> Architecture: arm + +# Menu: System Type >> NUC960 Machines >> Architecture: arm + +# Menu: System Type >> NVIDIA Tegra >> Architecture: arm +CONFIG_ARCH_TEGRA policy<{'arm64': 'n', 'armhf-generic': 'y', 'armhf-generic-lpae': 'n'}> +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'}> + +# Menu: System Type >> NetX Implementations >> Architecture: arm + +# Menu: System Type >> Orion Implementations >> Architecture: arm + +# Menu: System Type >> Qualcomm Support >> Architecture: arm +CONFIG_ARCH_QCOM policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARCH_MSM8X60 policy<{'armhf': 'y'}> +CONFIG_ARCH_MSM8960 policy<{'armhf': 'y'}> +CONFIG_ARCH_MSM8974 policy<{'armhf': 'y'}> + +# Menu: System Type >> RealView platform type >> Architecture: arm + +# Menu: System Type >> SA11x0 Implementations >> Architecture: arm + +# Menu: System Type >> SA11x0 Implementations >> Cerf Flash available >> Architecture: arm + +# 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 >> SMDK6410 >> Architecture: arm + +# Menu: System Type >> SMDK6410 >> SMDK6410 MMC/SD slot setup >> 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 >> Samsung Common options >> Architecture: arm +CONFIG_SAMSUNG_PM_CHECK policy<{'armhf': 'n'}> + +# Menu: System Type >> Samsung EXYNOS >> Architecture: arm +CONFIG_ARCH_EXYNOS policy<{'armhf': 'y'}> +CONFIG_ARCH_EXYNOS3 policy<{'armhf': 'n'}> + +# Menu: System Type >> Samsung EXYNOS >> SAMSUNG EXYNOS4 >> Architecture: arm +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_EXYNOS5440 policy<{'armhf': 'y'}> +CONFIG_SOC_EXYNOS5800 policy<{'armhf': 'y'}> +CONFIG_EXYNOS5420_MCPM policy<{'armhf': 'y'}> + +# Menu: System Type >> SuperH / SH-Mobile Driver Options + +# Menu: System Type >> Support ARM V7 processor >> Architecture: arm +CONFIG_CPU_V7 policy<{'armhf': 'y'}> +CONFIG_ARM_THUMBEE policy<{'armhf': 'y'}> +CONFIG_SWP_EMULATE policy<{'armhf': 'y'}> +CONFIG_CPU_BPREDICT_DISABLE policy<{'armhf': 'n'}> +CONFIG_VDSO policy<{'armhf': 'y'}> +CONFIG_ARM_DMA_MEM_BUFFERABLE policy<{'armhf': 'y'}> + +# Menu: System Type >> TI DaVinci Implementations >> Architecture: arm + +# Menu: System Type >> TI DaVinci Implementations >> DA850/OMAP-L138/AM18x based system >> Architecture: arm + +# Menu: System Type >> TI DaVinci Implementations >> DA850/OMAP-L138/AM18x based system >> Select peripherals connected to expander on UI board >> Architecture: arm + +# Menu: System Type >> TI DaVinci Implementations >> DaVinci 644x based system >> Architecture: arm + +# Menu: System Type >> TI DaVinci Implementations >> 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'}> +CONFIG_OMAP_DM_TIMER policy<{'armhf': 'y'}> + +# Menu: System Type >> TI OMAP Common Features >> OMAP PM layer selection >> Architecture: arm +CONFIG_OMAP_PM_NOOP policy<{'armhf': 'y'}> + +# Menu: System Type >> TI OMAP Common Features >> OMAP multiplexing support >> Architecture: arm +CONFIG_OMAP_MUX policy<{'armhf': 'y'}> +CONFIG_OMAP_MUX_DEBUG policy<{'armhf': 'n'}> +CONFIG_OMAP_MUX_WARNINGS policy<{'armhf': 'y'}> + +# 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'}> + +# 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_MACH_OMAP_LDP policy<{'armhf-generic': 'y'}> +CONFIG_MACH_OMAP3517EVM policy<{'armhf-generic': 'n'}> +CONFIG_MACH_OMAP3_PANDORA policy<{'armhf-generic': 'y'}> +CONFIG_MACH_NOKIA_RX51 policy<{'armhf-generic': 'n'}> +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: System Type >> Timer and clock configuration >> Architecture: arm +CONFIG_SHMOBILE_TIMER_HZ policy<{'armhf': '128'}> + +# Menu: System Type >> Versatile platform type >> Architecture: arm + +# Menu: System Type >> W90P910 Machines >> Architecture: arm + +# Menu: Ubuntu Supplied Third-Party Device Drivers +CONFIG_HIO policy<{'amd64': 'm', 'arm64': 'n', 'armhf': 'n', 'i386': 'm', 'powerpc': 'n', 'ppc64el': 'n'}> +# +CONFIG_HIO mark note + +# Menu: Virtualization +CONFIG_VIRTUALIZATION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'powerpc': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_KVM policy<{'amd64': 'm', 'arm64': 'y', 'armhf-generic-lpae': 'y', 'i386': 'm', 'powerpc-powerpc64-emb': 'y', 'powerpc-generic': 'y', 'powerpc-powerpc-e500mc': 'y', 'ppc64el': 'y', 's390x': 'm'}> +CONFIG_LGUEST policy<{'i386': 'n'}> +# + +# Menu: Virtualization >> Architecture: powerpc +CONFIG_KVM_BOOK3S_64 policy<{'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_KVM_BOOK3S_64_HV policy<{'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_KVM_BOOK3S_64_PR policy<{'powerpc-generic': 'm', 'ppc64el': 'm'}> +CONFIG_KVM_BOOK3S_HV_EXIT_TIMING policy<{'powerpc-generic': 'n', 'ppc64el': 'n'}> +CONFIG_KVM_EXIT_TIMING policy<{'powerpc-powerpc64-emb': 'n', 'powerpc-powerpc-e500mc': 'n'}> +CONFIG_KVM_E500MC policy<{'powerpc-powerpc64-emb': 'y', 'powerpc-powerpc-e500mc': 'y'}> +CONFIG_KVM_MPIC policy<{'powerpc-powerpc64-emb': 'y', 'powerpc-powerpc-e500mc': 'y'}> +CONFIG_KVM_XICS policy<{'powerpc-generic': 'y', 'ppc64el': 'y'}> + +# Menu: Virtualization >> Architecture: s390 +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 + +# 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: x86 +CONFIG_KVM_INTEL policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_KVM_AMD policy<{'amd64': 'm', 'i386': 'm'}> +CONFIG_KVM_MMU_AUDIT policy<{'amd64': 'n', 'i386': 'n'}> +CONFIG_KVM_DEVICE_ASSIGNMENT policy<{'amd64': 'y', 'i386': 'y'}> + +# 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'}> + +# Menu: FOOTER + +# temporarily disabled options -- build failures. +#CONFIG_TI_CPSW p policy<(arch armel armhf &/ value n) | value m> flag +#CONFIG_USB_MUSB_DSPS p policy<(arch armel armhf &/ value n) | value m> flag +#CONFIG_LIS3L02DQ p policy<(arch armhf &/ value n) | value m> flag +#CONFIG_EZX_PCAP p policy<(arch armhf &/ value n) | value y> flag +#CONFIG_TOUCHSCREEN_EGALAX p policy<(arch armel armhf &/ value n) | value m> flag note +#CONFIG_TOUCHSCREEN_EETI p policy<(arch armel armhf &/ value n) | value m> flag note +#CONFIG_SENSORS_AK8975 p policy<(arch armel armhf &/ value n) | value m> flag note +#CONFIG_PPC_EPAPR_HV_BYTECHAN n flag note --- linux-4.8.0.orig/debian.master/config/arm64/config.common.arm64 +++ linux-4.8.0/debian.master/config/arm64/config.common.arm64 @@ -0,0 +1,739 @@ +# +# Config options for config.common.arm64 automatically generated by splitconfig.pl +# +CONFIG_64BIT=y +# 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_ABX500_CORE=y +CONFIG_AC97_BUS=m +# CONFIG_ACPI_DOCK is not set +# CONFIG_ACPI_EC_DEBUGFS is not set +CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y +CONFIG_AD525X_DPOT=m +CONFIG_AIX_PARTITION=y +CONFIG_ALIM7101_WDT=m +CONFIG_ALTERA_STAPL=m +CONFIG_ALTERA_TSE=m +CONFIG_AMD_PHY=m +CONFIG_AMIGA_PARTITION=y +CONFIG_APDS9802ALS=m +CONFIG_APPLICOM=m +CONFIG_AQUANTIA_PHY=m +# CONFIG_ARCH_ALPINE is not set +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +# CONFIG_ARCH_EXYNOS is not set +# CONFIG_ARCH_MESON is not set +CONFIG_ARCH_MMAP_RND_BITS=18 +CONFIG_ARCH_MMAP_RND_BITS_MAX=33 +CONFIG_ARCH_MMAP_RND_BITS_MIN=18 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS=11 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=11 +# CONFIG_ARCH_MVEBU is not set +# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set +CONFIG_ARCH_PHYS_ADDR_T_64BIT=y +# CONFIG_ARCH_ROCKCHIP is not set +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +# CONFIG_ARCH_TEGRA is not set +# CONFIG_ARCH_UNIPHIER is not set +CONFIG_ARCNET=m +# CONFIG_ARM_PMU is not set +CONFIG_ARM_SMMU=y +CONFIG_ASYNC_RAID6_TEST=m +CONFIG_AT803X_PHY=m +CONFIG_ATALK=m +CONFIG_ATARI_PARTITION=y +CONFIG_ATA_GENERIC=m +# CONFIG_ATA_NONSTANDARD is not set +CONFIG_ATA_OVER_ETH=m +CONFIG_ATA_PIIX=m +# CONFIG_ATH10K_AHB is not set +CONFIG_ATM=m +CONFIG_AUDIT_ARCH_COMPAT_GENERIC=y +CONFIG_AUXDISPLAY=y +CONFIG_BACKLIGHT_LCD_SUPPORT=y +# CONFIG_BATMAN_ADV_BATMAN_V is not set +CONFIG_BCH=m +CONFIG_BCM7XXX_PHY=m +CONFIG_BCM87XX_PHY=m +CONFIG_BCMA=m +CONFIG_BCM_KONA_USB2_PHY=m +CONFIG_BE2ISCSI=m +CONFIG_BLK_CMDLINE_PARSER=y +CONFIG_BLK_CPQ_CISS_DA=m +CONFIG_BLK_DEV_3W_XXXX_RAID=m +CONFIG_BLK_DEV_CRYPTOLOOP=m +CONFIG_BLK_DEV_DAC960=m +CONFIG_BLK_DEV_NVME=m +CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m +CONFIG_BLK_DEV_RSXX=m +CONFIG_BLK_DEV_SKD=m +# CONFIG_BLK_DEV_SR_VENDOR is not set +CONFIG_BLK_DEV_SX8=m +CONFIG_BLK_DEV_UMEM=m +CONFIG_BMP085_I2C=m +CONFIG_BROADCOM_PHY=m +CONFIG_C2PORT=m +CONFIG_CADENCE_WATCHDOG=m +CONFIG_CAIF_HSI=m +CONFIG_CAIF_SPI_SLAVE=m +CONFIG_CAIF_TTY=m +CONFIG_CAIF_VIRTIO=m +# CONFIG_CAN_RCAR is not set +CONFIG_CB710_CORE=m +CONFIG_CC_STACKPROTECTOR=y +CONFIG_CDROM_PKTCDVD=m +CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y +CONFIG_CGROUP_HUGETLB=y +CONFIG_CICADA_PHY=m +CONFIG_CIFS_SMB311=y +# CONFIG_CIFS_STATS2 is not set +# CONFIG_CLK_QORIQ is not set +# CONFIG_CLS_U32_PERF is not set +CONFIG_CMA=y +CONFIG_CMDLINE="console=ttyAMA0" +CONFIG_CMDLINE_PARTITION=y +# CONFIG_CPU_BIG_ENDIAN is not set +# CONFIG_CPU_NO_EFFICIENT_FFS is not set +CONFIG_CRAMFS=m +CONFIG_CRC16=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_CTR=y +CONFIG_CRYPTO_CTS=y +# CONFIG_CRYPTO_DEV_FSL_CAAM is not set +CONFIG_CRYPTO_DRBG=y +CONFIG_CRYPTO_DRBG_MENU=y +CONFIG_CRYPTO_GF128MUL=y +CONFIG_CRYPTO_JITTERENTROPY=y +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_RNG_DEFAULT=y +CONFIG_CRYPTO_SEQIV=y +CONFIG_CRYPTO_XTS=y +# CONFIG_CXL_AFU_DRIVER_OPS is not set +# CONFIG_CXL_BASE is not set +CONFIG_DAVICOM_PHY=m +# CONFIG_DEBUG_ALIGN_RODATA is not set +CONFIG_DEBUG_INFO_DWARF4=y +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_DECNET=m +# CONFIG_DEFAULT_CFQ is not set +CONFIG_DEFAULT_DEADLINE=y +CONFIG_DEFAULT_IOSCHED="deadline" +CONFIG_DEFAULT_MMAP_MIN_ADDR=32768 +# CONFIG_DLM_DEBUG is not set +CONFIG_DMADEVICES=y +CONFIG_DMA_VIRTUAL_CHANNELS=y +# CONFIG_DM_DEBUG is not set +# CONFIG_DM_MQ_DEFAULT is not set +# CONFIG_DM_VERITY_FEC is not set +CONFIG_DNET=m +CONFIG_DNS_RESOLVER=y +CONFIG_DP83848_PHY=m +CONFIG_DP83867_PHY=m +CONFIG_DRM=m +# CONFIG_DRM_RCAR_DU is not set +CONFIG_DS1682=m +CONFIG_DUMMY_IRQ=m +CONFIG_DW_WATCHDOG=m +CONFIG_ECHO=m +CONFIG_EEPROM_93CX6=m +CONFIG_EEPROM_AT24=m +CONFIG_EEPROM_LEGACY=m +CONFIG_EEPROM_MAX6875=m +CONFIG_EFI=y +# CONFIG_EM_TIMER_STI is not set +# CONFIG_ENABLE_MUST_CHECK is not set +# CONFIG_ENABLE_WARN_DEPRECATED is not set +CONFIG_ENCLOSURE_SERVICES=m +CONFIG_ETHOC=m +CONFIG_EXT4_FS=y +CONFIG_EXTCON=y +CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y +# CONFIG_FAT_DEFAULT_UTF8 is not set +CONFIG_FB=y +CONFIG_FB_ATY128=m +# CONFIG_FB_BOOT_VESA_SUPPORT is not set +# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set +# CONFIG_FB_EFI is not set +# CONFIG_FB_IBM_GXT4500 is not set +# CONFIG_FB_MACMODES is not set +# CONFIG_FB_SH_MOBILE_LCDC is not set +# CONFIG_FB_SH_MOBILE_MERAM is not set +CONFIG_FB_SYS_COPYAREA=m +CONFIG_FB_SYS_FILLRECT=m +CONFIG_FB_SYS_FOPS=m +CONFIG_FB_SYS_IMAGEBLIT=m +CONFIG_FB_UDL=m +CONFIG_FB_VOODOO1=m +CONFIG_FDDI=y +CONFIG_FEALNX=m +CONFIG_FIREWIRE=m +CONFIG_FIREWIRE_NOSY=m +CONFIG_FIRMWARE_IN_KERNEL=y +CONFIG_FIXED_PHY=y +CONFIG_FMC=m +# CONFIG_FONTS is not set +CONFIG_FORCE_MAX_ZONEORDER=13 +CONFIG_FRAME_WARN=1024 +CONFIG_FS_ENCRYPTION=y +CONFIG_FS_MBCACHE=y +CONFIG_FUNCTION_PROFILER=y +CONFIG_FUSE_FS=y +CONFIG_FUSION=y +CONFIG_GAMEPORT=m +CONFIG_GDB_SCRIPTS=y +CONFIG_GENERIC_CSUM=y +CONFIG_GENERIC_PHY=y +CONFIG_GPIOLIB=y +CONFIG_GPIO_GENERIC=y +CONFIG_GPIO_GENERIC_PLATFORM=y +# CONFIG_GPIO_MPC8XXX is not set +# CONFIG_GPIO_RCAR is not set +CONFIG_GPIO_TWL4030=m +CONFIG_GPIO_TWL6040=m +# CONFIG_GPIO_XILINX is not set +# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set +# CONFIG_HAVE_AOUT is not set +CONFIG_HAVE_ARCH_BITREVERSE=y +# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set +CONFIG_HAVE_GENERIC_DMA_COHERENT=y +CONFIG_HFSPLUS_FS_POSIX_ACL=y +# CONFIG_HIBERNATION is not set +# CONFIG_HIO is not set +CONFIG_HMC6352=m +CONFIG_HOTPLUG_CPU=y +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_PCIE=y +CONFIG_HOTPLUG_PCI_SHPC=m +# CONFIG_HPET is not set +CONFIG_HPFS_FS=m +CONFIG_HP_ILO=m +CONFIG_HSI=m +CONFIG_HTC_PASIC3=m +CONFIG_HUGETLB_PAGE=y +CONFIG_HWMON=y +CONFIG_HW_RANDOM_TIMERIOMEM=m +CONFIG_HZ=250 +# CONFIG_HZ_1000 is not set +CONFIG_HZ_250=y +CONFIG_I2C=y +CONFIG_I2C_ALGOPCA=m +CONFIG_I2C_ALI1535=m +CONFIG_I2C_ALI1563=m +CONFIG_I2C_ALI15X3=m +CONFIG_I2C_AMD756=m +CONFIG_I2C_AMD8111=m +CONFIG_I2C_CHARDEV=y +CONFIG_I2C_COMPAT=y +CONFIG_I2C_DESIGNWARE_PCI=m +CONFIG_I2C_DESIGNWARE_PLATFORM=m +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_I801=m +# CONFIG_I2C_IMX is not set +CONFIG_I2C_ISCH=m +CONFIG_I2C_MUX=m +CONFIG_I2C_NFORCE2=m +CONFIG_I2C_OCORES=m +CONFIG_I2C_PARPORT_LIGHT=m +CONFIG_I2C_PCA_PLATFORM=m +CONFIG_I2C_PIIX4=m +# CONFIG_I2C_RCAR is not set +# CONFIG_I2C_RIIC is not set +# CONFIG_I2C_SH_MOBILE is not set +CONFIG_I2C_SIMTEC=m +CONFIG_I2C_SIS5595=m +CONFIG_I2C_SIS630=m +CONFIG_I2C_SIS96X=m +CONFIG_I2C_SLAVE=y +# CONFIG_I2C_SLAVE_EEPROM is not set +CONFIG_I2C_SMBUS=m +CONFIG_I2C_STUB=m +CONFIG_I2C_TAOS_EVM=m +CONFIG_I2C_VIA=m +CONFIG_I2C_VIAPRO=m +CONFIG_I2C_XILINX=m +CONFIG_I6300ESB_WDT=m +CONFIG_ICPLUS_PHY=m +CONFIG_ICS932S401=m +CONFIG_IDLE_PAGE_TRACKING=y +CONFIG_IEEE802154_DRIVERS=m +# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set +CONFIG_IIO=m +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +CONFIG_IMA=y +# CONFIG_IMX2_WDT is not set +CONFIG_INFINIBAND_NES=m +CONFIG_INFINIBAND_OCRDMA=m +CONFIG_INFINIBAND_QIB=m +CONFIG_INPUT=y +CONFIG_INTERVAL_TREE_TEST=m +CONFIG_IOMMU_IO_PGTABLE_LPAE=y +CONFIG_IPACK_BUS=m +CONFIG_IPMI_HANDLER=m +CONFIG_IPV6_ILA=m +CONFIG_IPV6_MIP6=m +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +# CONFIG_IPX_INTERN is not set +# CONFIG_IP_DCCP_CCID3 is not set +# CONFIG_IP_MROUTE_MULTIPLE_TABLES is not set +CONFIG_IRQ_BYPASS_MANAGER=m +# CONFIG_IRQ_FORCED_THREADING_DEFAULT is not set +# CONFIG_ISA_BUS_API is not set +CONFIG_ISL29003=m +CONFIG_ISL29020=m +# CONFIG_IWLWIFI_PCIE_RTPM is not set +CONFIG_JBD2=y +CONFIG_JFS_STATISTICS=y +CONFIG_JME=m +CONFIG_JUMP_LABEL=y +# CONFIG_KALLSYMS_ABSOLUTE_PERCPU is not set +CONFIG_KALLSYMS_ALL=y +CONFIG_KEXEC=y +# CONFIG_KEYBOARD_SH_KEYSC is not set +CONFIG_KVM=y +CONFIG_LDM_PARTITION=y +CONFIG_LIBNVDIMM=y +CONFIG_LLC2=m +CONFIG_LOCK_TORTURE_TEST=m +# CONFIG_LOGFS is not set +CONFIG_LOG_BUF_SHIFT=14 +CONFIG_LPC_ICH=m +CONFIG_LPC_SCH=m +CONFIG_LSI_ET1011C_PHY=m +CONFIG_LXT_PHY=m +CONFIG_MAC_PARTITION=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 +CONFIG_MAILBOX=y +CONFIG_MARVELL_PHY=m +CONFIG_MAX63XX_WATCHDOG=m +CONFIG_MCB=m +CONFIG_MDIO_BCM_UNIMAC=m +CONFIG_MDIO_BITBANG=m +CONFIG_MDIO_BUS_MUX=y +CONFIG_MDIO_OCTEON=m +CONFIG_MDIO_THUNDER=m +CONFIG_MD_MULTIPATH=m +# CONFIG_MEDIA_CONTROLLER_DVB is not set +CONFIG_MEDIA_SUPPORT=m +CONFIG_MEGARAID_LEGACY=m +CONFIG_MEGARAID_NEWGEN=y +CONFIG_MEGARAID_SAS=m +CONFIG_MEMORY=y +CONFIG_MEMSTICK=m +CONFIG_MEMTEST=y +CONFIG_MFD_88PM800=m +CONFIG_MFD_88PM805=m +CONFIG_MFD_ARIZONA_I2C=m +CONFIG_MFD_BCM590XX=m +CONFIG_MFD_CORE=y +# CONFIG_MFD_CROS_EC is not set +CONFIG_MFD_DA9062=m +CONFIG_MFD_DA9063=y +CONFIG_MFD_DA9150=m +CONFIG_MFD_JANZ_CMODIO=m +CONFIG_MFD_KEMPLD=m +CONFIG_MFD_LM3533=m +CONFIG_MFD_LP3943=m +CONFIG_MFD_MAX14577=y +CONFIG_MFD_MAX77693=y +CONFIG_MFD_MAX8907=m +CONFIG_MFD_MC13XXX_I2C=m +CONFIG_MFD_MENF21BMC=m +CONFIG_MFD_MT6397=m +CONFIG_MFD_PCF50633=m +CONFIG_MFD_RDC321X=m +CONFIG_MFD_RETU=m +CONFIG_MFD_RT5033=m +CONFIG_MFD_RTSX_PCI=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_TMIO is not set +CONFIG_MFD_TPS65217=m +CONFIG_MFD_TPS65218=m +CONFIG_MFD_TPS65912_I2C=y +CONFIG_MFD_VX855=m +CONFIG_MFD_WL1273_CORE=m +CONFIG_MFD_WM8994=m +CONFIG_MICREL_PHY=m +CONFIG_MICROCHIP_PHY=m +CONFIG_MII=y +CONFIG_MINIX_SUBPARTITION=y +CONFIG_MMC=y +CONFIG_MMC_BLOCK=y +CONFIG_MMC_SDHCI=m +# CONFIG_MMC_SDHCI_OF_ESDHC is not set +CONFIG_MMC_SDHCI_PLTFM=m +# CONFIG_MMC_SDHI is not set +# CONFIG_MMC_SH_MMCIF is not set +# CONFIG_MODULE_FORCE_LOAD is not set +# CONFIG_MODULE_FORCE_UNLOAD is not set +CONFIG_MODULE_SRCVERSION_ALL=y +# CONFIG_MOVABLE_NODE is not set +CONFIG_MTD=m +# CONFIG_MTD_AFS_PARTS is not set +CONFIG_MTD_BLKDEVS=m +CONFIG_MTD_BLOCK=m +CONFIG_MTD_CMDLINE_PARTS=m +CONFIG_MTD_NAND=m +CONFIG_MTD_NAND_BCH=m +# CONFIG_MTD_NAND_BRCMNAND is not set +CONFIG_MTD_NAND_ECC=m +# CONFIG_MTD_NAND_FSL_IFC is not set +CONFIG_MTD_NAND_IDS=m +# CONFIG_MTD_NAND_OMAP_BCH_BUILD is not set +CONFIG_MTD_OF_PARTS=m +CONFIG_NATIONAL_PHY=m +CONFIG_NEED_DMA_MAP_STATE=y +# CONFIG_NETDEV_NOTIFIER_ERROR_INJECT is not set +# CONFIG_NET_ACT_IFE is not set +CONFIG_NET_CADENCE=y +# CONFIG_NET_CLS_IND is not set +# CONFIG_NET_KEY_MIGRATE is not set +CONFIG_NET_MPLS_GSO=m +CONFIG_NET_PACKET_ENGINE=y +CONFIG_NET_SWITCHDEV=y +CONFIG_NET_TCPPROBE=m +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_EXAR=y +CONFIG_NET_VENDOR_EZCHIP=y +# CONFIG_NET_VENDOR_FREESCALE is not set +# CONFIG_NET_VENDOR_HISILICON is not set +CONFIG_NET_VENDOR_HP=y +CONFIG_NET_VENDOR_INTEL=y +CONFIG_NET_VENDOR_MARVELL=y +CONFIG_NET_VENDOR_MICREL=y +CONFIG_NET_VENDOR_MYRI=y +CONFIG_NET_VENDOR_NATSEMI=y +CONFIG_NET_VENDOR_NVIDIA=y +CONFIG_NET_VENDOR_OKI=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_SYNOPSYS=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_NFS_V4_1_MIGRATION=y +# CONFIG_NF_CONNTRACK_PROCFS is not set +CONFIG_NODES_SHIFT=6 +CONFIG_NOP_USB_XCEIV=m +CONFIG_NOZOMI=m +CONFIG_NO_HZ=y +CONFIG_NR_CPUS=128 +CONFIG_NTB=m +CONFIG_NUMA=y +CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y +CONFIG_NVMEM=m +CONFIG_N_GSM=m +CONFIG_OF=y +# CONFIG_ORANGEFS_FS is not set +CONFIG_OSF_PARTITION=y +# CONFIG_PAGE_EXTENSION is not set +CONFIG_PARAVIRT=y +CONFIG_PARPORT=m +CONFIG_PATA_SIS=m +CONFIG_PCIPCWATCHDOG=m +CONFIG_PCI_MSI_IRQ_DOMAIN=y +CONFIG_PCI_PASID=y +CONFIG_PCI_PRI=y +CONFIG_PCI_QUIRKS=y +CONFIG_PERCPU_TEST=m +CONFIG_PERSISTENT_KEYRINGS=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_PGTABLE_MAPPING=y +CONFIG_PHANTOM=m +CONFIG_PHYLIB=y +CONFIG_PHYS_ADDR_T_64BIT=y +# CONFIG_PHY_EXYNOS5250_USB2 is not set +CONFIG_PHY_PXA_28NM_HSIC=m +CONFIG_PHY_PXA_28NM_USB2=m +# CONFIG_PHY_RCAR_GEN2 is not set +# CONFIG_PINCTRL_BERLIN_BG2 is not set +# CONFIG_PINCTRL_BERLIN_BG2CD is not set +# CONFIG_PINCTRL_BERLIN_BG2Q is not set +# CONFIG_PINCTRL_MT2701 is not set +# CONFIG_PINCTRL_MT7623 is not set +# CONFIG_PINCTRL_MT8127 is not set +# CONFIG_PINCTRL_MT8135 is not set +CONFIG_PM_DEVFREQ=y +CONFIG_POWERCAP=y +CONFIG_POWER_AVS=y +CONFIG_POWER_RESET=y +CONFIG_POWER_SUPPLY=y +CONFIG_PPP=y +CONFIG_PPS=m +CONFIG_PPS_CLIENT_GPIO=m +CONFIG_PPS_CLIENT_LDISC=m +# CONFIG_PREEMPT is not set +CONFIG_PREEMPT_VOLUNTARY=y +# CONFIG_PRINT_QUOTA_WARNING is not set +CONFIG_PSTORE=y +# CONFIG_PSTORE_CONSOLE is not set +CONFIG_PSTORE_RAM=m +CONFIG_PTP_1588_CLOCK=m +CONFIG_PWM=y +CONFIG_PWM_PCA9685=m +# CONFIG_PWM_RENESAS_TPU is not set +CONFIG_QSEMI_PHY=m +CONFIG_R3964=m +# CONFIG_RAVB is not set +CONFIG_RAW_DRIVER=m +CONFIG_RBTREE_TEST=m +# CONFIG_RCAR_DMAC is not set +# CONFIG_RCAR_THERMAL is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=60 +CONFIG_REALTEK_PHY=m +CONFIG_REED_SOLOMON=m +CONFIG_REGMAP_I2C=y +CONFIG_REGULATOR=y +CONFIG_REGULATOR_FIXED_VOLTAGE=m +CONFIG_REGULATOR_TPS65217=m +CONFIG_REGULATOR_TWL4030=m +CONFIG_RELOCATABLE=y +# CONFIG_RENESAS_USB_DMAC is not set +CONFIG_RESET_CONTROLLER=y +CONFIG_RFKILL=y +CONFIG_RTC_DRV_DS3232=m +CONFIG_RTC_DRV_PCF8523=m +CONFIG_RTC_DRV_PL031=m +CONFIG_RTC_DRV_TWL4030=m +CONFIG_SATA_AHCI_PLATFORM=m +# CONFIG_SATA_RCAR is not set +CONFIG_SATA_SVW=m +CONFIG_SCHEDSTATS=y +CONFIG_SCHED_SMT=y +CONFIG_SCHED_TRACER=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_ESAS2R=m +CONFIG_SCSI_FUTURE_DOMAIN=m +CONFIG_SCSI_HPSA=m +CONFIG_SCSI_HPTIOP=m +CONFIG_SCSI_INIA100=m +CONFIG_SCSI_INITIO=m +CONFIG_SCSI_IPS=m +CONFIG_SCSI_LPFC=m +CONFIG_SCSI_MPT2SAS=m +CONFIG_SCSI_MPT3SAS=m +# CONFIG_SCSI_MQ_DEFAULT is not set +CONFIG_SCSI_MVSAS=m +CONFIG_SCSI_MVUMI=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_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set +CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y +CONFIG_SECURITY_SELINUX_BOOTPARAM=y +CONFIG_SECURITY_SELINUX_DISABLE=y +CONFIG_SENSORS_APDS990X=m +CONFIG_SENSORS_BH1770=m +CONFIG_SENSORS_SCH56XX_COMMON=m +CONFIG_SENSORS_TSL2550=m +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_DW=y +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_FSL=y +CONFIG_SERIAL_ALTERA_JTAGUART=m +CONFIG_SERIAL_ALTERA_UART=m +CONFIG_SERIAL_ARC=m +CONFIG_SERIAL_CORE=y +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_SERIAL_SH_SCI is not set +CONFIG_SERIO=y +CONFIG_SFC=m +CONFIG_SGETMASK_SYSCALL=y +CONFIG_SGI_IOC4=m +CONFIG_SGI_PARTITION=y +# CONFIG_SG_SPLIT is not set +# CONFIG_SH_DMAE_BASE is not set +# CONFIG_SH_ETH is not set +# CONFIG_SH_TIMER_CMT is not set +# CONFIG_SH_TIMER_MTU2 is not set +# CONFIG_SH_TIMER_TMU is not set +# CONFIG_SIMPLE_PM_BUS is not set +CONFIG_SLIP=m +CONFIG_SMC91X=y +CONFIG_SMSC_PHY=m +CONFIG_SND=m +CONFIG_SND_DMAENGINE_PCM=m +CONFIG_SND_EMU10K1_SEQ=m +# CONFIG_SND_OPL4_LIB_SEQ is not set +CONFIG_SND_PCM=m +# CONFIG_SND_SBAWE_SEQ is not set +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_RCAR is not set +# CONFIG_SND_SOC_RSRC_CARD is not set +# CONFIG_SND_SOC_RT5677_SPI is not set +CONFIG_SND_SOC_SGTL5000=m +# CONFIG_SND_SOC_SH4_FSI is not set +CONFIG_SND_TIMER=m +CONFIG_SOC_TI=y +CONFIG_SOLARIS_X86_PARTITION=y +CONFIG_SOUND=m +CONFIG_SPI=y +# CONFIG_SPI_FSL_DSPI is not set +# CONFIG_SPI_FSL_QUADSPI is not set +CONFIG_SPI_PXA2XX_PCI=m +CONFIG_SPI_ROCKCHIP=m +# CONFIG_SPI_RSPI is not set +# CONFIG_SPI_SH_HSPI is not set +# CONFIG_SPI_SH_MSIOF is not set +CONFIG_SPMI=m +# CONFIG_SQUASHFS_FILE_CACHE is not set +CONFIG_SQUASHFS_FILE_DIRECT=y +CONFIG_SQUASHFS_LZ4=y +CONFIG_SRAM=y +CONFIG_SSB=m +CONFIG_STAGING=y +CONFIG_STANDALONE=y +CONFIG_STE10XP=m +CONFIG_STE_MODEM_RPROC=m +# CONFIG_STRIP_ASM_SYMS is not set +CONFIG_SUN_PARTITION=y +CONFIG_SYSCTL_SYSCALL=y +CONFIG_SYSFS_SYSCALL=y +CONFIG_SYSV68_PARTITION=y +CONFIG_SYS_HYPERVISOR=y +CONFIG_TCG_TIS_CORE=m +CONFIG_TCG_TIS_I2C_ATMEL=m +CONFIG_TCG_TIS_I2C_INFINEON=m +CONFIG_TCG_TIS_I2C_NUVOTON=m +CONFIG_TCG_TIS_ST33ZP24_I2C=m +CONFIG_TERANETICS_PHY=m +# CONFIG_TEST_BITMAP is not set +CONFIG_TEST_HEXDUMP=m +CONFIG_TEST_KSTRTOX=m +CONFIG_TEST_LKM=m +# CONFIG_TEST_PRINTF is not set +CONFIG_TEST_STRING_HELPERS=m +CONFIG_TEST_UDELAY=m +CONFIG_THERMAL=y +CONFIG_THUNDERBOLT=m +CONFIG_TIFM_CORE=m +CONFIG_TI_CPSW_ALE=m +CONFIG_TPS6105X=m +CONFIG_TPS6507X=m +CONFIG_TRACE_SINK=m +CONFIG_TRANSPARENT_HUGEPAGE=y +CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y +# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set +CONFIG_TRUSTED_KEYS=y +CONFIG_TTY_PRINTK=y +# CONFIG_UBIFS_ATIME_SUPPORT is not set +CONFIG_UIO=m +CONFIG_ULTRIX_PARTITION=y +CONFIG_UNIXWARE_DISKLABEL=y +CONFIG_UNUSED_SYMBOLS=y +# CONFIG_UPROBES is not set +CONFIG_USB_DWC2_PCI=m +CONFIG_USB_EHCI_HCD_PLATFORM=m +# CONFIG_USB_EMXX is not set +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_RENESAS_USBHS is not set +CONFIG_USB_SUPPORT=y +CONFIG_USB_SWITCH_FSA9480=m +CONFIG_USELIB=y +CONFIG_UWB=m +CONFIG_VFIO=m +CONFIG_VFIO_IOMMU_TYPE1=m +# CONFIG_VFIO_NOIOMMU is not set +CONFIG_VFIO_PCI=m +CONFIG_VFIO_VIRQFD=m +CONFIG_VGASTATE=m +# CONFIG_VIDEO_RCAR_VIN is not set +# CONFIG_VIDEO_RENESAS_JPU is not set +# CONFIG_VIDEO_RENESAS_VSP1 is not set +# CONFIG_VIDEO_SH_MOBILE_CEU is not set +# CONFIG_VIDEO_SH_MOBILE_CSI2 is not set +# CONFIG_VIDEO_SH_VOU is not set +CONFIG_VIRTIO_MMIO=y +CONFIG_VITESSE_PHY=m +CONFIG_VME_BUS=y +CONFIG_VMXNET3=m +CONFIG_W1=m +CONFIG_WAN=y +CONFIG_WDTPCI=m +# CONFIG_WLAN_VENDOR_TI is not set +# CONFIG_WQ_WATCHDOG is not set +CONFIG_XEN=y +# CONFIG_XFRM_MIGRATE is not set +CONFIG_XFRM_STATISTICS=y +# CONFIG_XFRM_SUB_POLICY is not set +CONFIG_XILINX_WATCHDOG=m +CONFIG_XILLYBUS=m +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_TEST=m +CONFIG_ZLIB_DEFLATE=y +CONFIG_ZSMALLOC=y --- linux-4.8.0.orig/debian.master/config/arm64/config.flavour.generic +++ linux-4.8.0/debian.master/config/arm64/config.flavour.generic @@ -0,0 +1,3 @@ +# +# Config options for config.flavour.generic automatically generated by splitconfig.pl +# --- linux-4.8.0.orig/debian.master/config/armhf/config.common.armhf +++ linux-4.8.0/debian.master/config/armhf/config.common.armhf @@ -0,0 +1,711 @@ +# +# Config options for config.common.armhf automatically generated by splitconfig.pl +# +# 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_ABX500_CORE=y +CONFIG_AC97_BUS=y +CONFIG_AD525X_DPOT=m +CONFIG_AIX_PARTITION=y +CONFIG_ALIM7101_WDT=m +CONFIG_ALTERA_STAPL=m +CONFIG_ALTERA_TSE=m +CONFIG_AMD_PHY=m +CONFIG_AMIGA_PARTITION=y +CONFIG_APDS9802ALS=m +# CONFIG_APM_EMULATION is not set +CONFIG_APPLICOM=m +CONFIG_AQUANTIA_PHY=m +CONFIG_ARCH_ALPINE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_ARCH_EXYNOS=y +CONFIG_ARCH_MESON=y +CONFIG_ARCH_MMAP_RND_BITS=8 +CONFIG_ARCH_MMAP_RND_BITS_MAX=16 +CONFIG_ARCH_MMAP_RND_BITS_MIN=8 +CONFIG_ARCH_MVEBU=y +CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED=y +CONFIG_ARCH_ROCKCHIP=y +# CONFIG_ARCH_SELECT_MEMORY_MODEL is not set +# CONFIG_ARCH_SPARSEMEM_DEFAULT is not set +CONFIG_ARCH_UNIPHIER=y +CONFIG_ARCNET=m +CONFIG_ARM_PMU=y +# CONFIG_ARM_SMMU is not set +CONFIG_ASYNC_RAID6_TEST=m +CONFIG_AT803X_PHY=m +CONFIG_ATALK=m +CONFIG_ATARI_PARTITION=y +CONFIG_ATA_GENERIC=m +# CONFIG_ATA_NONSTANDARD is not set +CONFIG_ATA_OVER_ETH=m +CONFIG_ATA_PIIX=m +# CONFIG_ATH10K_AHB is not set +CONFIG_ATM=m +# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set +CONFIG_AUXDISPLAY=y +CONFIG_BACKLIGHT_LCD_SUPPORT=y +# CONFIG_BATMAN_ADV_BATMAN_V is not set +CONFIG_BCH=y +CONFIG_BCM7XXX_PHY=m +CONFIG_BCM87XX_PHY=m +CONFIG_BCMA=m +CONFIG_BCM_KONA_USB2_PHY=m +CONFIG_BE2ISCSI=m +CONFIG_BLK_CMDLINE_PARSER=y +CONFIG_BLK_CPQ_CISS_DA=m +CONFIG_BLK_DEV_3W_XXXX_RAID=m +CONFIG_BLK_DEV_CRYPTOLOOP=m +CONFIG_BLK_DEV_DAC960=m +CONFIG_BLK_DEV_NVME=m +CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m +CONFIG_BLK_DEV_RSXX=m +# CONFIG_BLK_DEV_SR_VENDOR is not set +CONFIG_BLK_DEV_SX8=m +CONFIG_BLK_DEV_UMEM=m +CONFIG_BMP085_I2C=m +CONFIG_BROADCOM_PHY=m +CONFIG_C2PORT=m +CONFIG_CADENCE_WATCHDOG=m +CONFIG_CAIF_HSI=m +CONFIG_CAIF_SPI_SLAVE=m +CONFIG_CAIF_TTY=m +CONFIG_CAIF_VIRTIO=m +CONFIG_CAN_RCAR=m +CONFIG_CB710_CORE=m +CONFIG_CC_STACKPROTECTOR=y +CONFIG_CDROM_PKTCDVD=m +CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y +CONFIG_CGROUP_HUGETLB=y +CONFIG_CICADA_PHY=m +CONFIG_CIFS_SMB311=y +# CONFIG_CIFS_STATS2 is not set +CONFIG_CLK_QORIQ=y +# CONFIG_CLS_U32_PERF is not set +CONFIG_CMA=y +CONFIG_CMDLINE="" +CONFIG_CMDLINE_PARTITION=y +# CONFIG_CPU_BIG_ENDIAN is not set +# CONFIG_CPU_NO_EFFICIENT_FFS is not set +CONFIG_CRAMFS=m +CONFIG_CRASH_DUMP=y +CONFIG_CRC16=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_CTR=y +CONFIG_CRYPTO_CTS=y +CONFIG_CRYPTO_DEV_FSL_CAAM=m +CONFIG_CRYPTO_DEV_FSL_CAAM_IMX=y +CONFIG_CRYPTO_DRBG=y +CONFIG_CRYPTO_DRBG_MENU=y +CONFIG_CRYPTO_GF128MUL=y +CONFIG_CRYPTO_JITTERENTROPY=y +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_RNG_DEFAULT=y +CONFIG_CRYPTO_SEQIV=y +CONFIG_CRYPTO_XTS=y +# CONFIG_CXL_AFU_DRIVER_OPS is not set +# CONFIG_CXL_BASE is not set +CONFIG_DAVICOM_PHY=m +CONFIG_DEBUG_ALIGN_RODATA=y +CONFIG_DEBUG_INFO_DWARF4=y +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_DECNET=m +# CONFIG_DEFAULT_CFQ is not set +CONFIG_DEFAULT_DEADLINE=y +CONFIG_DEFAULT_IOSCHED="deadline" +CONFIG_DEFAULT_MMAP_MIN_ADDR=32768 +# CONFIG_DLM_DEBUG is not set +CONFIG_DMADEVICES=y +CONFIG_DMA_VIRTUAL_CHANNELS=y +# CONFIG_DM_DEBUG is not set +# CONFIG_DM_MQ_DEFAULT is not set +# CONFIG_DM_VERITY_FEC is not set +CONFIG_DNET=m +CONFIG_DNS_RESOLVER=y +CONFIG_DP83848_PHY=m +CONFIG_DP83867_PHY=m +CONFIG_DRM=m +CONFIG_DRM_RCAR_DU=m +CONFIG_DS1682=m +CONFIG_DUMMY_IRQ=m +CONFIG_DW_WATCHDOG=m +CONFIG_ECHO=m +CONFIG_EEPROM_93CX6=m +CONFIG_EEPROM_AT24=m +CONFIG_EEPROM_LEGACY=m +CONFIG_EEPROM_MAX6875=m +# CONFIG_EFI is not set +CONFIG_EM_TIMER_STI=y +# CONFIG_ENABLE_MUST_CHECK is not set +# CONFIG_ENABLE_WARN_DEPRECATED is not set +CONFIG_ENCLOSURE_SERVICES=m +CONFIG_ETHOC=m +CONFIG_EXT4_FS=y +CONFIG_EXTCON=y +CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y +# CONFIG_FAT_DEFAULT_UTF8 is not set +CONFIG_FB=y +CONFIG_FB_ATY128=m +# CONFIG_FB_BOOT_VESA_SUPPORT is not set +# CONFIG_FB_IBM_GXT4500 is not set +# CONFIG_FB_MACMODES is not set +CONFIG_FB_SH_MOBILE_LCDC=m +CONFIG_FB_SH_MOBILE_MERAM=m +CONFIG_FB_SYS_COPYAREA=m +CONFIG_FB_SYS_FILLRECT=m +CONFIG_FB_SYS_FOPS=m +CONFIG_FB_SYS_IMAGEBLIT=m +CONFIG_FB_UDL=m +CONFIG_FB_VOODOO1=m +CONFIG_FDDI=y +CONFIG_FEALNX=m +CONFIG_FIREWIRE=m +CONFIG_FIREWIRE_NOSY=m +CONFIG_FIRMWARE_IN_KERNEL=y +CONFIG_FIXED_PHY=y +CONFIG_FMC=m +CONFIG_FONTS=y +CONFIG_FRAME_WARN=1024 +CONFIG_FS_ENCRYPTION=y +CONFIG_FS_MBCACHE=y +CONFIG_FUNCTION_PROFILER=y +CONFIG_FUSE_FS=y +CONFIG_FUSION=y +CONFIG_GAMEPORT=m +CONFIG_GDB_SCRIPTS=y +CONFIG_GENERIC_PHY=y +CONFIG_GPIOLIB=y +CONFIG_GPIO_GENERIC=y +CONFIG_GPIO_GENERIC_PLATFORM=y +# CONFIG_GPIO_MPC8XXX is not set +CONFIG_GPIO_RCAR=m +CONFIG_GPIO_TWL4030=y +CONFIG_GPIO_TWL6040=y +# CONFIG_GPIO_XILINX is not set +# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set +# CONFIG_HAVE_AOUT is not set +CONFIG_HAVE_ARCH_BITREVERSE=y +# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set +CONFIG_HAVE_GENERIC_DMA_COHERENT=y +CONFIG_HFSPLUS_FS_POSIX_ACL=y +CONFIG_HIBERNATION=y +# CONFIG_HIO is not set +CONFIG_HMC6352=m +CONFIG_HOTPLUG_CPU=y +# CONFIG_HOTPLUG_PCI is not set +CONFIG_HPFS_FS=m +CONFIG_HP_ILO=m +CONFIG_HSI=m +CONFIG_HTC_PASIC3=m +CONFIG_HWMON=y +CONFIG_HW_RANDOM_TIMERIOMEM=m +CONFIG_HZ=250 +# CONFIG_HZ_1000 is not set +CONFIG_HZ_250=y +CONFIG_I2C=y +CONFIG_I2C_ALGOPCA=m +CONFIG_I2C_ALI1535=m +CONFIG_I2C_ALI1563=m +CONFIG_I2C_ALI15X3=m +CONFIG_I2C_AMD756=m +CONFIG_I2C_AMD8111=m +CONFIG_I2C_CHARDEV=y +CONFIG_I2C_COMPAT=y +CONFIG_I2C_DESIGNWARE_PCI=m +CONFIG_I2C_DESIGNWARE_PLATFORM=m +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_I801=m +CONFIG_I2C_IMX=y +CONFIG_I2C_ISCH=m +CONFIG_I2C_MUX=m +CONFIG_I2C_NFORCE2=m +CONFIG_I2C_OCORES=m +CONFIG_I2C_PARPORT_LIGHT=m +CONFIG_I2C_PCA_PLATFORM=m +CONFIG_I2C_PIIX4=m +CONFIG_I2C_RCAR=m +CONFIG_I2C_RIIC=m +CONFIG_I2C_SH_MOBILE=m +CONFIG_I2C_SIMTEC=m +CONFIG_I2C_SIS5595=m +CONFIG_I2C_SIS630=m +CONFIG_I2C_SIS96X=m +CONFIG_I2C_SLAVE=y +CONFIG_I2C_SLAVE_EEPROM=m +CONFIG_I2C_SMBUS=m +CONFIG_I2C_STUB=m +CONFIG_I2C_TAOS_EVM=m +CONFIG_I2C_VIA=m +CONFIG_I2C_VIAPRO=m +CONFIG_I2C_XILINX=m +CONFIG_I6300ESB_WDT=m +CONFIG_ICPLUS_PHY=m +CONFIG_ICS932S401=m +CONFIG_IDLE_PAGE_TRACKING=y +CONFIG_IEEE802154_DRIVERS=m +# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set +CONFIG_IIO=m +CONFIG_IMA=y +CONFIG_IMX2_WDT=m +CONFIG_INFINIBAND_NES=m +CONFIG_INFINIBAND_OCRDMA=m +CONFIG_INPUT=y +CONFIG_INTERVAL_TREE_TEST=m +CONFIG_IPACK_BUS=m +CONFIG_IPMI_HANDLER=m +CONFIG_IPV6_ILA=m +CONFIG_IPV6_MIP6=m +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +# CONFIG_IPX_INTERN is not set +# CONFIG_IP_DCCP_CCID3 is not set +# CONFIG_IP_MROUTE_MULTIPLE_TABLES is not set +CONFIG_IRQ_BYPASS_MANAGER=m +# CONFIG_IRQ_FORCED_THREADING_DEFAULT is not set +# CONFIG_ISA_BUS_API is not set +CONFIG_ISL29003=m +CONFIG_ISL29020=m +# CONFIG_IWLWIFI_PCIE_RTPM is not set +CONFIG_JBD2=y +CONFIG_JFS_STATISTICS=y +CONFIG_JME=m +# CONFIG_JUMP_LABEL is not set +# CONFIG_KALLSYMS_ABSOLUTE_PERCPU is not set +CONFIG_KALLSYMS_ALL=y +CONFIG_KERNEL_GZIP=y +# CONFIG_KERNEL_XZ is not set +CONFIG_KEXEC=y +CONFIG_KEYBOARD_SH_KEYSC=m +CONFIG_KVM=y +CONFIG_LDM_PARTITION=y +CONFIG_LIBNVDIMM=y +CONFIG_LLC2=m +CONFIG_LOCK_TORTURE_TEST=m +# CONFIG_LOGFS is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_LPC_ICH=m +CONFIG_LPC_SCH=m +CONFIG_LSI_ET1011C_PHY=m +CONFIG_LXT_PHY=m +CONFIG_MAC_PARTITION=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 +CONFIG_MAILBOX=y +CONFIG_MARVELL_PHY=m +CONFIG_MAX63XX_WATCHDOG=m +CONFIG_MCB=m +CONFIG_MDIO_BCM_UNIMAC=m +CONFIG_MDIO_BITBANG=m +CONFIG_MDIO_BUS_MUX=m +CONFIG_MD_MULTIPATH=m +# CONFIG_MEDIA_CONTROLLER_DVB is not set +CONFIG_MEDIA_SUPPORT=m +CONFIG_MEGARAID_LEGACY=m +CONFIG_MEGARAID_NEWGEN=y +CONFIG_MEGARAID_SAS=m +CONFIG_MEMORY=y +CONFIG_MEMSTICK=m +CONFIG_MEMTEST=y +CONFIG_MFD_88PM800=m +CONFIG_MFD_88PM805=m +CONFIG_MFD_ARIZONA_I2C=m +CONFIG_MFD_BCM590XX=m +CONFIG_MFD_CORE=y +CONFIG_MFD_CROS_EC=m +CONFIG_MFD_DA9062=m +CONFIG_MFD_DA9063=y +CONFIG_MFD_DA9150=m +CONFIG_MFD_JANZ_CMODIO=m +CONFIG_MFD_KEMPLD=m +CONFIG_MFD_LM3533=m +CONFIG_MFD_LP3943=m +CONFIG_MFD_MAX14577=y +CONFIG_MFD_MAX77693=y +CONFIG_MFD_MAX8907=m +CONFIG_MFD_MC13XXX_I2C=m +CONFIG_MFD_MENF21BMC=m +CONFIG_MFD_MT6397=m +CONFIG_MFD_PCF50633=m +CONFIG_MFD_RDC321X=m +CONFIG_MFD_RETU=m +CONFIG_MFD_RT5033=m +CONFIG_MFD_RTSX_PCI=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_TMIO=y +CONFIG_MFD_TPS65217=y +CONFIG_MFD_TPS65218=m +CONFIG_MFD_TPS65912_I2C=y +CONFIG_MFD_VX855=m +CONFIG_MFD_WL1273_CORE=m +CONFIG_MFD_WM8994=m +CONFIG_MICREL_PHY=m +CONFIG_MICROCHIP_PHY=m +CONFIG_MII=m +CONFIG_MINIX_SUBPARTITION=y +CONFIG_MMC=y +CONFIG_MMC_BLOCK=y +CONFIG_MMC_SDHCI=y +# CONFIG_MMC_SDHCI_OF_ESDHC is not set +CONFIG_MMC_SDHCI_PLTFM=y +CONFIG_MMC_SDHI=m +CONFIG_MMC_SH_MMCIF=m +# CONFIG_MODULE_FORCE_LOAD is not set +# CONFIG_MODULE_FORCE_UNLOAD is not set +CONFIG_MODULE_SRCVERSION_ALL=y +CONFIG_MTD=y +CONFIG_MTD_AFS_PARTS=m +CONFIG_MTD_BLKDEVS=y +CONFIG_MTD_BLOCK=y +CONFIG_MTD_CMDLINE_PARTS=y +CONFIG_MTD_NAND=y +CONFIG_MTD_NAND_BCH=y +CONFIG_MTD_NAND_BRCMNAND=m +CONFIG_MTD_NAND_ECC=y +CONFIG_MTD_NAND_IDS=y +CONFIG_MTD_NAND_OMAP_BCH_BUILD=y +CONFIG_MTD_OF_PARTS=y +CONFIG_NATIONAL_PHY=m +CONFIG_NEED_DMA_MAP_STATE=y +# CONFIG_NETDEV_NOTIFIER_ERROR_INJECT is not set +# CONFIG_NET_ACT_IFE is not set +CONFIG_NET_CADENCE=y +# CONFIG_NET_CLS_IND is not set +# CONFIG_NET_KEY_MIGRATE is not set +CONFIG_NET_MPLS_GSO=m +CONFIG_NET_PACKET_ENGINE=y +# CONFIG_NET_SWITCHDEV is not set +CONFIG_NET_TCPPROBE=m +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_EXAR=y +CONFIG_NET_VENDOR_EZCHIP=y +CONFIG_NET_VENDOR_FREESCALE=y +CONFIG_NET_VENDOR_HISILICON=y +CONFIG_NET_VENDOR_HP=y +CONFIG_NET_VENDOR_INTEL=y +CONFIG_NET_VENDOR_MARVELL=y +CONFIG_NET_VENDOR_MICREL=y +CONFIG_NET_VENDOR_MYRI=y +CONFIG_NET_VENDOR_NATSEMI=y +CONFIG_NET_VENDOR_NVIDIA=y +CONFIG_NET_VENDOR_OKI=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_SYNOPSYS=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_NFS_V4_1_MIGRATION=y +# CONFIG_NF_CONNTRACK_PROCFS is not set +CONFIG_NOP_USB_XCEIV=y +CONFIG_NOZOMI=m +CONFIG_NO_HZ=y +CONFIG_NR_CPUS=4 +CONFIG_NTB=m +CONFIG_NVMEM=m +CONFIG_NVRAM=m +CONFIG_N_GSM=m +CONFIG_OF=y +# CONFIG_ORANGEFS_FS is not set +CONFIG_OSF_PARTITION=y +CONFIG_PAGE_EXTENSION=y +CONFIG_PAGE_OFFSET=0xC0000000 +# CONFIG_PARAVIRT is not set +CONFIG_PARPORT=m +CONFIG_PATA_SIS=m +# CONFIG_PCCARD is not set +CONFIG_PCIPCWATCHDOG=m +CONFIG_PCI_MSI_IRQ_DOMAIN=y +CONFIG_PCI_PASID=y +CONFIG_PCI_PRI=y +CONFIG_PCI_QUIRKS=y +CONFIG_PERCPU_TEST=m +CONFIG_PERSISTENT_KEYRINGS=y +CONFIG_PGTABLE_MAPPING=y +CONFIG_PHANTOM=m +CONFIG_PHYLIB=y +CONFIG_PHY_EXYNOS5250_USB2=y +CONFIG_PHY_PXA_28NM_HSIC=m +CONFIG_PHY_PXA_28NM_USB2=m +CONFIG_PHY_RCAR_GEN2=m +CONFIG_PINCTRL_BERLIN_BG2=y +CONFIG_PINCTRL_BERLIN_BG2CD=y +CONFIG_PINCTRL_BERLIN_BG2Q=y +CONFIG_PINCTRL_MT2701=y +CONFIG_PINCTRL_MT7623=y +CONFIG_PINCTRL_MT8127=y +CONFIG_PINCTRL_MT8135=y +CONFIG_PM_DEVFREQ=y +CONFIG_POWERCAP=y +CONFIG_POWER_AVS=y +CONFIG_POWER_RESET=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_VOLUNTARY=y +# CONFIG_PRINT_QUOTA_WARNING is not set +CONFIG_PSTORE=y +CONFIG_PSTORE_CONSOLE=y +CONFIG_PSTORE_RAM=y +CONFIG_PTP_1588_CLOCK=y +CONFIG_PWM=y +CONFIG_PWM_PCA9685=m +CONFIG_PWM_RENESAS_TPU=m +CONFIG_QSEMI_PHY=m +CONFIG_R3964=m +CONFIG_RAVB=m +CONFIG_RAW_DRIVER=m +CONFIG_RBTREE_TEST=m +CONFIG_RCAR_DMAC=m +CONFIG_RCAR_THERMAL=m +CONFIG_RCU_CPU_STALL_TIMEOUT=60 +CONFIG_REALTEK_PHY=m +CONFIG_REED_SOLOMON=y +CONFIG_REGMAP_I2C=y +CONFIG_REGULATOR=y +CONFIG_REGULATOR_FIXED_VOLTAGE=y +CONFIG_REGULATOR_TPS65217=y +CONFIG_RENESAS_USB_DMAC=m +CONFIG_RESET_CONTROLLER=y +CONFIG_RFKILL=y +CONFIG_RTC_DRV_CMOS=m +CONFIG_RTC_DRV_DS3232=m +CONFIG_RTC_DRV_PL031=y +CONFIG_RTC_DRV_TWL4030=y +CONFIG_SATA_AHCI_PLATFORM=y +CONFIG_SATA_RCAR=m +CONFIG_SATA_SVW=m +CONFIG_SCHEDSTATS=y +# CONFIG_SCHED_SMT is not set +CONFIG_SCHED_TRACER=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_ESAS2R=m +CONFIG_SCSI_FUTURE_DOMAIN=m +CONFIG_SCSI_HPSA=m +CONFIG_SCSI_HPTIOP=m +CONFIG_SCSI_INIA100=m +CONFIG_SCSI_INITIO=m +CONFIG_SCSI_IPS=m +CONFIG_SCSI_LPFC=m +CONFIG_SCSI_MPT2SAS=m +CONFIG_SCSI_MPT3SAS=m +# CONFIG_SCSI_MQ_DEFAULT is not set +CONFIG_SCSI_MVSAS=m +CONFIG_SCSI_MVUMI=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_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set +CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y +CONFIG_SECURITY_SELINUX_BOOTPARAM=y +CONFIG_SECURITY_SELINUX_DISABLE=y +CONFIG_SENSORS_APDS990X=m +CONFIG_SENSORS_BH1770=m +CONFIG_SENSORS_SCH56XX_COMMON=m +CONFIG_SENSORS_TSL2550=m +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_DW=m +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_FSL=y +CONFIG_SERIAL_ALTERA_JTAGUART=m +CONFIG_SERIAL_ALTERA_UART=m +CONFIG_SERIAL_ARC=m +CONFIG_SERIAL_CORE=y +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_SERIAL_SH_SCI=m +CONFIG_SERIO=y +CONFIG_SFC=m +CONFIG_SGETMASK_SYSCALL=y +CONFIG_SGI_IOC4=m +CONFIG_SGI_PARTITION=y +CONFIG_SG_SPLIT=y +CONFIG_SH_DMAE_BASE=y +CONFIG_SH_ETH=m +CONFIG_SH_TIMER_CMT=y +CONFIG_SH_TIMER_MTU2=y +CONFIG_SH_TIMER_TMU=y +CONFIG_SIMPLE_PM_BUS=y +CONFIG_SLIP=m +CONFIG_SMC91X=m +CONFIG_SMSC_PHY=m +CONFIG_SND=y +CONFIG_SND_DMAENGINE_PCM=y +# CONFIG_SND_OPL4_LIB_SEQ is not set +CONFIG_SND_PCM=y +# CONFIG_SND_SBAWE_SEQ is not set +CONFIG_SND_SOC=y +CONFIG_SND_SOC_I2C_AND_SPI=y +CONFIG_SND_SOC_RCAR=m +CONFIG_SND_SOC_RSRC_CARD=m +CONFIG_SND_SOC_SH4_FSI=m +CONFIG_SND_TIMER=y +CONFIG_SOC_TI=y +CONFIG_SOLARIS_X86_PARTITION=y +CONFIG_SOUND=y +CONFIG_SPI=y +CONFIG_SPI_FSL_DSPI=m +CONFIG_SPI_FSL_QUADSPI=m +CONFIG_SPI_PXA2XX_PCI=m +CONFIG_SPI_ROCKCHIP=m +CONFIG_SPI_RSPI=m +CONFIG_SPI_SH_HSPI=m +CONFIG_SPI_SH_MSIOF=m +CONFIG_SPMI=m +# CONFIG_SQUASHFS_FILE_CACHE is not set +CONFIG_SQUASHFS_FILE_DIRECT=y +CONFIG_SQUASHFS_LZ4=y +CONFIG_SRAM=y +CONFIG_SSB=m +CONFIG_STAGING=y +CONFIG_STANDALONE=y +CONFIG_STE10XP=m +CONFIG_STE_MODEM_RPROC=m +# CONFIG_STRIP_ASM_SYMS is not set +CONFIG_SUN_PARTITION=y +CONFIG_SYSCTL_SYSCALL=y +CONFIG_SYSFS_SYSCALL=y +CONFIG_SYSV68_PARTITION=y +# CONFIG_SYS_HYPERVISOR is not set +CONFIG_TCG_TIS_CORE=m +CONFIG_TCG_TIS_I2C_ATMEL=m +CONFIG_TCG_TIS_I2C_INFINEON=m +CONFIG_TCG_TIS_I2C_NUVOTON=m +CONFIG_TCG_TIS_ST33ZP24_I2C=m +CONFIG_TERANETICS_PHY=m +# CONFIG_TEST_BITMAP is not set +CONFIG_TEST_HEXDUMP=m +CONFIG_TEST_KSTRTOX=m +CONFIG_TEST_LKM=m +# CONFIG_TEST_PRINTF is not set +CONFIG_TEST_STRING_HELPERS=m +CONFIG_TEST_UDELAY=m +CONFIG_THERMAL=y +CONFIG_THUNDERBOLT=m +CONFIG_TIFM_CORE=m +CONFIG_TI_CPSW_ALE=y +CONFIG_TPS6105X=m +CONFIG_TPS6507X=m +CONFIG_TRACE_SINK=m +CONFIG_TRANSPARENT_HUGEPAGE=y +CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y +# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set +CONFIG_TRUSTED_KEYS=y +CONFIG_TTY_PRINTK=y +# CONFIG_UBIFS_ATIME_SUPPORT is not set +CONFIG_UIO=m +CONFIG_ULTRIX_PARTITION=y +CONFIG_UNIXWARE_DISKLABEL=y +CONFIG_UNUSED_SYMBOLS=y +CONFIG_UPROBES=y +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_OHCI_HCD_PLATFORM is not set +CONFIG_USB_RENESAS_USBHS=m +CONFIG_USB_SUPPORT=y +CONFIG_USB_SWITCH_FSA9480=m +CONFIG_USELIB=y +CONFIG_UWB=m +CONFIG_VFIO=m +# CONFIG_VFIO_IOMMU_TYPE1 is not set +# CONFIG_VFIO_NOIOMMU is not set +CONFIG_VFIO_PCI=m +CONFIG_VFIO_VIRQFD=m +CONFIG_VGASTATE=m +CONFIG_VIDEO_RCAR_VIN=m +CONFIG_VIDEO_RENESAS_JPU=m +CONFIG_VIDEO_RENESAS_VSP1=m +CONFIG_VIDEO_SH_MOBILE_CEU=m +CONFIG_VIDEO_SH_MOBILE_CSI2=m +CONFIG_VIDEO_SH_VOU=m +CONFIG_VIRTIO_MMIO=y +CONFIG_VITESSE_PHY=m +CONFIG_VME_BUS=y +CONFIG_VMXNET3=m +CONFIG_W1=m +CONFIG_WAN=y +CONFIG_WDTPCI=m +CONFIG_WLAN_VENDOR_TI=y +# CONFIG_WQ_WATCHDOG is not set +# CONFIG_XEN is not set +# CONFIG_XFRM_MIGRATE is not set +CONFIG_XFRM_STATISTICS=y +# CONFIG_XFRM_SUB_POLICY is not set +CONFIG_XILINX_WATCHDOG=m +CONFIG_XILLYBUS=m +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_TEST=m +CONFIG_ZLIB_DEFLATE=y +CONFIG_ZSMALLOC=y --- linux-4.8.0.orig/debian.master/config/armhf/config.flavour.generic +++ linux-4.8.0/debian.master/config/armhf/config.flavour.generic @@ -0,0 +1,29 @@ +# +# 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_PHYS_ADDR_T_64BIT is not set +CONFIG_ARCH_TEGRA=y +CONFIG_ARM_ATAG_DTB_COMPAT=y +# CONFIG_ARM_HIGHBANK_CPUIDLE is not set +# CONFIG_ARM_LPAE is not set +CONFIG_FB_CFB_REV_PIXELS_IN_BYTE=y +CONFIG_FORCE_MAX_ZONEORDER=12 +# CONFIG_HUGETLB_PAGE is not set +# CONFIG_IOMMU_IO_PGTABLE_LPAE is not set +CONFIG_PGTABLE_LEVELS=2 +# CONFIG_PHYS_ADDR_T_64BIT is not set +CONFIG_PWM_TIECAP=m +CONFIG_PWM_TIEHRPWM=m +CONFIG_REGULATOR_TWL4030=y +CONFIG_RTC_DRV_PCF8523=y +CONFIG_SERIAL_MCTRL_GPIO=y +CONFIG_SND_EDMA_SOC=m +# CONFIG_SND_EMU10K1_SEQ is not set +CONFIG_SND_SOC_FSL_SSI=y +CONFIG_SND_SOC_IMX_AUDMUX=y +CONFIG_SND_SOC_RT5677_SPI=m +CONFIG_SND_SOC_SGTL5000=y +CONFIG_SOC_AM33XX=y --- linux-4.8.0.orig/debian.master/config/armhf/config.flavour.generic-lpae +++ linux-4.8.0/debian.master/config/armhf/config.flavour.generic-lpae @@ -0,0 +1,29 @@ +# +# 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_PHYS_ADDR_T_64BIT=y +# CONFIG_ARCH_TEGRA is not set +# CONFIG_ARM_ATAG_DTB_COMPAT is not set +CONFIG_ARM_HIGHBANK_CPUIDLE=y +CONFIG_ARM_LPAE=y +# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set +CONFIG_FORCE_MAX_ZONEORDER=11 +CONFIG_HUGETLB_PAGE=y +CONFIG_IOMMU_IO_PGTABLE_LPAE=y +CONFIG_PGTABLE_LEVELS=3 +CONFIG_PHYS_ADDR_T_64BIT=y +# CONFIG_PWM_TIECAP is not set +# CONFIG_PWM_TIEHRPWM is not set +CONFIG_REGULATOR_TWL4030=m +CONFIG_RTC_DRV_PCF8523=m +CONFIG_SERIAL_MCTRL_GPIO=m +# CONFIG_SND_EDMA_SOC is not set +CONFIG_SND_EMU10K1_SEQ=m +CONFIG_SND_SOC_FSL_SSI=m +CONFIG_SND_SOC_IMX_AUDMUX=m +# CONFIG_SND_SOC_RT5677_SPI is not set +CONFIG_SND_SOC_SGTL5000=m +# CONFIG_SOC_AM33XX is not set --- linux-4.8.0.orig/debian.master/config/config.common.ports +++ linux-4.8.0/debian.master/config/config.common.ports @@ -0,0 +1,3 @@ +# +# Common config options automatically generated by splitconfig.pl +# --- linux-4.8.0.orig/debian.master/config/config.common.ubuntu +++ linux-4.8.0/debian.master/config/config.common.ubuntu @@ -0,0 +1,9397 @@ +# +# Common config options automatically generated by splitconfig.pl +# +CONFIG_32BIT=y +CONFIG_3C515=m +# CONFIG_40x is not set +# CONFIG_44x is not set +CONFIG_60XX_WDT=m +CONFIG_6LOWPAN=m +# CONFIG_6LOWPAN_DEBUGFS 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_6xx=y +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_8723AU_AP_MODE=y +CONFIG_8723AU_BT_COEXIST=y +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_AB3100_CORE=y +CONFIG_AB3100_OTP=m +# CONFIG_ACCESSIBILITY is not set +CONFIG_ACENIC=m +# CONFIG_ACENIC_OMIT_TIGON_I is not set +CONFIG_ACERHDF=m +CONFIG_ACER_WMI=m +# CONFIG_ACORN_PARTITION is not set +CONFIG_ACPI=y +CONFIG_ACPI_AC=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_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_LIB=y +CONFIG_ACPI_CPU_FREQ_PSS=y +# CONFIG_ACPI_CUSTOM_DSDT is not set +CONFIG_ACPI_CUSTOM_DSDT_FILE="" +# CONFIG_ACPI_CUSTOM_METHOD is not set +# CONFIG_ACPI_DEBUG is not set +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_EXTLOG=m +CONFIG_ACPI_FAN=y +CONFIG_ACPI_GENERIC_GSI=y +CONFIG_ACPI_HED=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_MCFG=y +CONFIG_ACPI_NFIT=m +# CONFIG_ACPI_NFIT_DEBUG is not set +CONFIG_ACPI_NUMA=y +CONFIG_ACPI_PCI_SLOT=y +CONFIG_ACPI_PROCESSOR=y +CONFIG_ACPI_PROCESSOR_AGGREGATOR=m +CONFIG_ACPI_PROCESSOR_CSTATE=y +CONFIG_ACPI_PROCESSOR_IDLE=y +# CONFIG_ACPI_PROCFS_POWER is not set +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_THERMAL=y +CONFIG_ACPI_THERMAL_REL=m +CONFIG_ACPI_TOSHIBA=m +CONFIG_ACPI_VIDEO=m +CONFIG_ACPI_WMI=m +CONFIG_ACQUIRE_WDT=m +CONFIG_ACT200L_DONGLE=m +CONFIG_ACTISYS_DONGLE=m +CONFIG_AD2S1200=m +CONFIG_AD2S1210=m +CONFIG_AD2S90=m +CONFIG_AD5064=m +CONFIG_AD525X_DPOT_I2C=m +CONFIG_AD525X_DPOT_SPI=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_AD5755=m +CONFIG_AD5761=m +CONFIG_AD5764=m +CONFIG_AD5791=m +CONFIG_AD5933=m +CONFIG_AD7150=m +CONFIG_AD7152=m +CONFIG_AD7192=m +CONFIG_AD7266=m +CONFIG_AD7280=m +CONFIG_AD7291=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_AD7780=m +CONFIG_AD7791=m +CONFIG_AD7793=m +CONFIG_AD7816=m +CONFIG_AD7887=m +CONFIG_AD7923=m +CONFIG_AD799X=m +CONFIG_AD8366=m +CONFIG_AD9523=m +CONFIG_AD9832=m +CONFIG_AD9834=m +CONFIG_ADAPTEC_STARFIRE=m +CONFIG_ADB=y +CONFIG_ADB_CUDA=y +CONFIG_ADB_MACIO=y +CONFIG_ADB_PMU=y +CONFIG_ADB_PMU_LED=y +CONFIG_ADE7753=m +CONFIG_ADE7754=m +CONFIG_ADE7758=m +CONFIG_ADE7759=m +CONFIG_ADE7854=m +CONFIG_ADE7854_I2C=m +CONFIG_ADE7854_SPI=m +CONFIG_ADF4350=m +CONFIG_ADFS_FS=m +# CONFIG_ADFS_FS_RW is not set +CONFIG_ADIS16060=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_ADIS16480=m +CONFIG_ADJD_S311=m +CONFIG_ADM8211=m +CONFIG_ADT7316=m +CONFIG_ADT7316_I2C=m +CONFIG_ADT7316_SPI=m +# CONFIG_ADVANCED_OPTIONS is not set +CONFIG_ADVANTECH_WDT=m +CONFIG_ADVISE_SYSCALLS=y +CONFIG_ADXRS450=m +CONFIG_AD_SIGMA_DELTA=m +CONFIG_AEABI=y +CONFIG_AFE4403=m +CONFIG_AFE4404=m +CONFIG_AFFS_FS=m +CONFIG_AFIUCV=m +# CONFIG_AFS_DEBUG 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_AGP=y +CONFIG_AGP_ALI=m +CONFIG_AGP_AMD=y +CONFIG_AGP_AMD64=y +CONFIG_AGP_ATI=m +CONFIG_AGP_EFFICEON=m +CONFIG_AGP_INTEL=y +CONFIG_AGP_NVIDIA=y +CONFIG_AGP_SIS=m +CONFIG_AGP_SWORKS=m +CONFIG_AGP_UNINORTH=m +CONFIG_AGP_VIA=y +CONFIG_AHCI_CEVA=m +CONFIG_AHCI_IMX=y +CONFIG_AHCI_MVEBU=m +CONFIG_AHCI_QORIQ=m +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_AIM_CDEV=m +CONFIG_AIM_NETWORK=m +CONFIG_AIM_SOUND=m +CONFIG_AIM_V4L2=m +CONFIG_AIO=y +CONFIG_AIRO=m +CONFIG_AIRO_CS=m +CONFIG_AK09911=m +CONFIG_AK8975=m +CONFIG_AL3320A=m +CONFIG_ALIENWARE_WMI=m +CONFIG_ALIGNMENT_TRAP=y +CONFIG_ALIM1535_WDT=m +CONFIG_ALIX=y +CONFIG_ALI_FIR=m +CONFIG_ALLOW_DEV_COREDUMP=y +CONFIG_ALPINE_MSI=y +CONFIG_ALTERA_MBOX=m +CONFIG_ALTIVEC=y +CONFIG_ALX=m +CONFIG_AM2315=m +CONFIG_AM335X_CONTROL_USB=m +CONFIG_AM335X_PHY_USB=m +CONFIG_AMBA_PL08X=y +CONFIG_AMD8111_ETH=m +CONFIG_AMD_IOMMU=y +CONFIG_AMD_IOMMU_V2=m +CONFIG_AMD_NB=y +CONFIG_AMD_NUMA=y +CONFIG_AMD_XGBE=m +CONFIG_AMD_XGBE_DCB=y +CONFIG_AMILO_RFKILL=m +# CONFIG_ANDROID is not set +CONFIG_ANON_INODES=y +CONFIG_ANSLCD=m +CONFIG_APB_TIMER=y +CONFIG_APDS9300=m +CONFIG_APDS9960=m +CONFIG_APM=m +# CONFIG_APM_ALLOW_INTS is not set +# CONFIG_APM_CPU_IDLE is not set +# CONFIG_APM_DISPLAY_BLANK is not set +# CONFIG_APM_DO_ENABLE is not set +# CONFIG_APM_IGNORE_USER_SUSPEND is not set +CONFIG_APM_POWER=m +CONFIG_APPLDATA_BASE=y +CONFIG_APPLDATA_MEM=m +CONFIG_APPLDATA_NET_SUM=m +CONFIG_APPLDATA_OS=m +CONFIG_APPLE_AIRPORT=m +CONFIG_APPLE_GMUX=m +CONFIG_APQ_GCC_8084=m +CONFIG_APQ_MMCC_8084=m +CONFIG_AR5523=m +CONFIG_ARCH_ARTPEC=y +# CONFIG_ARCH_AT91 is not set +CONFIG_ARCH_AXXIA=y +# CONFIG_ARCH_BCM is not set +CONFIG_ARCH_BCM2835=y +CONFIG_ARCH_BCM_IPROC=y +CONFIG_ARCH_BERLIN=y +CONFIG_ARCH_CLOCKSOURCE_DATA=y +CONFIG_ARCH_CPU_PROBE_RELEASE=y +# CONFIG_ARCH_DAVINCI is not set +# CONFIG_ARCH_DIGICOLOR is not set +CONFIG_ARCH_DISCARD_MEMBLOCK=y +# CONFIG_ARCH_DOVE is not set +# CONFIG_ARCH_EBSA110 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_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_GEMINI is not set +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y +CONFIG_ARCH_HAS_BANDGAP=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +CONFIG_ARCH_HAS_DMA_SET_COHERENT_MASK=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +CONFIG_ARCH_HAS_HOLES_MEMORYMODEL=y +CONFIG_ARCH_HAS_KCOV=y +CONFIG_ARCH_HAS_MMIO_FLUSH=y +CONFIG_ARCH_HAS_PKEYS=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_RESET_CONTROLLER=y +CONFIG_ARCH_HAS_SG_CHAIN=y +CONFIG_ARCH_HAS_TICK_BROADCAST=y +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +CONFIG_ARCH_HAS_WALK_MEMORY=y +CONFIG_ARCH_HAVE_CUSTOM_GPIO_H=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_IOP13XX is not set +# CONFIG_ARCH_IOP32X is not set +# CONFIG_ARCH_IOP33X is not set +# CONFIG_ARCH_IXP4XX is not set +# CONFIG_ARCH_KEYSTONE is not set +# CONFIG_ARCH_KS8695 is not set +CONFIG_ARCH_LAYERSCAPE=y +CONFIG_ARCH_LG1K=y +# CONFIG_ARCH_LPC32XX is not set +CONFIG_ARCH_MAY_HAVE_PC_FDC=y +CONFIG_ARCH_MDM9615=y +CONFIG_ARCH_MEDIATEK=y +CONFIG_ARCH_MEMORY_PROBE=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +# CONFIG_ARCH_MMP is not set +CONFIG_ARCH_MSM8960=y +CONFIG_ARCH_MSM8974=y +CONFIG_ARCH_MSM8X60=y +CONFIG_ARCH_MULTIPLATFORM=y +# CONFIG_ARCH_MULTI_CPU_AUTO is not set +# CONFIG_ARCH_MULTI_V6 is not set +CONFIG_ARCH_MULTI_V6_V7=y +CONFIG_ARCH_MULTI_V7=y +# CONFIG_ARCH_NETX is not set +CONFIG_ARCH_NR_GPIO=1024 +CONFIG_ARCH_OMAP=y +# CONFIG_ARCH_OMAP1 is not set +CONFIG_ARCH_OMAP2PLUS=y +CONFIG_ARCH_OMAP2PLUS_TYPICAL=y +CONFIG_ARCH_PROC_KCORE_TEXT=y +# CONFIG_ARCH_PXA is not set +CONFIG_ARCH_QCOM=y +CONFIG_ARCH_R7S72100=y +# CONFIG_ARCH_R8A73A4 is not set +CONFIG_ARCH_R8A7740=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_R8A7795=y +CONFIG_ARCH_R8A7796=y +CONFIG_ARCH_RCAR_GEN1=y +CONFIG_ARCH_RCAR_GEN2=y +# CONFIG_ARCH_REALVIEW is not set +CONFIG_ARCH_RENESAS=y +CONFIG_ARCH_REQUIRE_GPIOLIB=y +CONFIG_ARCH_RMOBILE=y +# CONFIG_ARCH_RPC is not set +# CONFIG_ARCH_S3C24XX is not set +# CONFIG_ARCH_S5PV210 is not set +# CONFIG_ARCH_SA1100 is not set +CONFIG_ARCH_SAVE_PAGE_KEYS=y +CONFIG_ARCH_SEATTLE=y +CONFIG_ARCH_SH73A0=y +CONFIG_ARCH_SHMOBILE=y +CONFIG_ARCH_SHMOBILE_MULTI=y +# CONFIG_ARCH_SIRF is not set +# CONFIG_ARCH_SOCFPGA is not set +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPRD=y +# CONFIG_ARCH_STI is not set +CONFIG_ARCH_STRATIX10=y +# CONFIG_ARCH_SUNXI is not set +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_ARCH_SUPPORTS_BIG_ENDIAN=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y +CONFIG_ARCH_SUPPORTS_FIRMWARE=y +CONFIG_ARCH_SUPPORTS_INT128=y +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y +CONFIG_ARCH_SUPPORTS_TRUSTED_FOUNDATIONS=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_TANGO=y +CONFIG_ARCH_TEGRA_114_SOC=y +CONFIG_ARCH_TEGRA_124_SOC=y +CONFIG_ARCH_TEGRA_2x_SOC=y +CONFIG_ARCH_TEGRA_3x_SOC=y +CONFIG_ARCH_THUNDER=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_QUEUED_RWLOCKS=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=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_VULCAN=y +# CONFIG_ARCH_W90X900 is not set +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_ARCH_WANTS_FREEZER_CONTROL=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=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_OLD_COMPAT_IPC=y +CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y +# CONFIG_ARCH_WM8850 is not set +CONFIG_ARCH_XGENE=y +# CONFIG_ARCH_ZX is not set +# 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_ISA=m +CONFIG_ARCNET_COM20020_PCI=m +CONFIG_ARCNET_COM90xx=m +CONFIG_ARCNET_COM90xxIO=m +CONFIG_ARCNET_RAW=m +CONFIG_ARCNET_RIM_I=m +CONFIG_ARC_EMAC=m +CONFIG_ARC_EMAC_CORE=m +CONFIG_ARM=y +CONFIG_ARM64=y +# CONFIG_ARM64_16K_PAGES is not set +CONFIG_ARM64_4K_PAGES=y +# CONFIG_ARM64_64K_PAGES is not set +CONFIG_ARM64_ACPI_PARKING_PROTOCOL=y +CONFIG_ARM64_CONT_SHIFT=4 +CONFIG_ARM64_CRYPTO=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_HW_AFDBM=y +# CONFIG_ARM64_LSE_ATOMICS is not set +CONFIG_ARM64_MODULE_CMODEL_LARGE=y +CONFIG_ARM64_MODULE_PLTS=y +CONFIG_ARM64_PAGE_SHIFT=12 +CONFIG_ARM64_PAN=y +# CONFIG_ARM64_PTDUMP is not set +# CONFIG_ARM64_RANDOMIZE_TEXT_OFFSET is not set +CONFIG_ARM64_UAO=y +CONFIG_ARM64_VA_BITS=48 +# CONFIG_ARM64_VA_BITS_39 is not set +CONFIG_ARM64_VA_BITS_48=y +CONFIG_ARM64_VHE=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_38X_CLK=y +CONFIG_ARMADA_39X_CLK=y +CONFIG_ARMADA_THERMAL=y +CONFIG_ARMADA_XP_CLK=y +# CONFIG_ARMV8_DEPRECATED is not set +CONFIG_ARM_AMBA=y +CONFIG_ARM_APPENDED_DTB=y +CONFIG_ARM_ARCH_TIMER=y +CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y +CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_EXTEND=y +# CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_FROM_BOOTLOADER is not set +CONFIG_ARM_BIG_LITTLE_CPUFREQ=m +CONFIG_ARM_BIG_LITTLE_CPUIDLE=y +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_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_DT_BL_CPUFREQ=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_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_EXYNOS5440_CPUFREQ is not set +CONFIG_ARM_EXYNOS_BUS_DEVFREQ=y +CONFIG_ARM_EXYNOS_CPUIDLE=y +CONFIG_ARM_GIC=y +CONFIG_ARM_GIC_MAX_NR=1 +CONFIG_ARM_GIC_V2M=y +CONFIG_ARM_GIC_V3=y +CONFIG_ARM_GIC_V3_ITS=y +CONFIG_ARM_GLOBAL_TIMER=y +CONFIG_ARM_HAS_SG_CHAIN=y +CONFIG_ARM_HEAVY_MB=y +CONFIG_ARM_HIGHBANK_CPUFREQ=m +CONFIG_ARM_IMX6Q_CPUFREQ=m +# CONFIG_ARM_KIRKWOOD_CPUFREQ is not set +CONFIG_ARM_KPROBES_TEST=m +CONFIG_ARM_L1_CACHE_SHIFT=6 +CONFIG_ARM_L1_CACHE_SHIFT_6=y +CONFIG_ARM_MHU=m +# CONFIG_ARM_MODULE_PLTS is not set +CONFIG_ARM_MT8173_CPUFREQ=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_PSCI=y +CONFIG_ARM_PSCI_FW=y +# CONFIG_ARM_PTDUMP is not set +CONFIG_ARM_SBSA_WATCHDOG=m +CONFIG_ARM_SCPI_CPUFREQ=m +CONFIG_ARM_SCPI_POWER_DOMAIN=m +CONFIG_ARM_SCPI_PROTOCOL=m +CONFIG_ARM_SMMU_V3=y +CONFIG_ARM_SP805_WATCHDOG=m +CONFIG_ARM_TEGRA124_CPUFREQ=m +CONFIG_ARM_TEGRA20_CPUFREQ=y +CONFIG_ARM_TEGRA_DEVFREQ=m +CONFIG_ARM_THUMB=y +CONFIG_ARM_THUMBEE=y +CONFIG_ARM_TIMER_SP804=y +CONFIG_ARM_UNWIND=y +CONFIG_ARM_VEXPRESS_SPC_CPUFREQ=m +CONFIG_ARM_VIRT_EXT=y +CONFIG_AS3935=m +CONFIG_ASN1=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_ASYNC_CORE=m +CONFIG_ASYNC_MEMCPY=m +CONFIG_ASYNC_PQ=m +CONFIG_ASYNC_RAID6_RECOV=m +CONFIG_ASYNC_TX_DMA=y +CONFIG_ASYNC_TX_ENABLE_CHANNEL_SWITCH=y +CONFIG_ASYNC_XOR=m +CONFIG_AT76C50X_USB=m +CONFIG_ATA=y +CONFIG_ATAGS=y +CONFIG_ATAGS_PROC=y +CONFIG_ATA_ACPI=y +CONFIG_ATA_BMDMA=y +CONFIG_ATA_SFF=y +CONFIG_ATA_VERBOSE_ERROR=y +CONFIG_ATH10K=m +# CONFIG_ATH10K_DEBUG is not set +CONFIG_ATH10K_DEBUGFS=y +CONFIG_ATH10K_PCI=m +CONFIG_ATH10K_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_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_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_PH_SENSOR=m +CONFIG_ATMEL=m +# CONFIG_ATMEL_PIT is not set +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_COMPAT_GENERIC=y +CONFIG_AUDIT_GENERIC=y +CONFIG_AUDIT_TREE=y +CONFIG_AUDIT_WATCH=y +CONFIG_AUFS_BDEV_LOOP=y +# CONFIG_AUFS_BRANCH_MAX_1023 is not set +CONFIG_AUFS_BRANCH_MAX_127=y +# CONFIG_AUFS_BRANCH_MAX_32767 is not set +# CONFIG_AUFS_BRANCH_MAX_511 is not set +# CONFIG_AUFS_BR_FUSE is not set +CONFIG_AUFS_BR_HFSPLUS=y +# CONFIG_AUFS_BR_RAMFS is not set +# CONFIG_AUFS_DEBUG is not set +CONFIG_AUFS_EXPORT=y +# CONFIG_AUFS_FHSM is not set +CONFIG_AUFS_FS=m +# CONFIG_AUFS_HNOTIFY is not set +CONFIG_AUFS_INO_T_64=y +# CONFIG_AUFS_RDU is not set +CONFIG_AUFS_SBILIST=y +# CONFIG_AUFS_SHWH is not set +CONFIG_AUFS_XATTR=y +CONFIG_AURORA_NB8800=m +CONFIG_AUTOFS4_FS=m +CONFIG_AUTO_ZRELADDR=y +CONFIG_AX25=m +CONFIG_AX25_DAMA_SLAVE=y +CONFIG_AX88796=m +# CONFIG_AX88796_93CX6 is not set +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_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_AS3711=m +CONFIG_BACKLIGHT_BD6107=m +CONFIG_BACKLIGHT_CARILLO_RANCH=m +CONFIG_BACKLIGHT_CLASS_DEVICE=y +CONFIG_BACKLIGHT_DA903X=m +CONFIG_BACKLIGHT_DA9052=m +CONFIG_BACKLIGHT_GENERIC=m +CONFIG_BACKLIGHT_GPIO=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_PM8941_WLED=m +CONFIG_BACKLIGHT_PWM=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=m +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_BATTERY_88PM860X=m +CONFIG_BATTERY_ACT8945A=m +CONFIG_BATTERY_BQ27XXX=m +CONFIG_BATTERY_BQ27XXX_I2C=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_INTEL_MID=m +CONFIG_BATTERY_MAX17040=m +CONFIG_BATTERY_MAX17042=m +CONFIG_BATTERY_PMU=m +CONFIG_BATTERY_RT5033=m +CONFIG_BATTERY_RX51=m +CONFIG_BATTERY_SBS=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_CLOSURES_DEBUG is not set +# CONFIG_BCACHE_DEBUG is not set +CONFIG_BCH_CONST_M=14 +CONFIG_BCH_CONST_PARAMS=y +CONFIG_BCH_CONST_T=4 +CONFIG_BCM2835_MBOX=y +CONFIG_BCM2835_WDT=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_IPROC_ADC=m +CONFIG_BCM_NET_PHYLIB=m +CONFIG_BCM_PDC_MBOX=m +# CONFIG_BDI_SWITCH is not set +CONFIG_BE2NET=m +CONFIG_BE2NET_HWMON=y +# CONFIG_BEFS_DEBUG is not set +CONFIG_BEFS_FS=m +CONFIG_BERLIN2_ADC=m +CONFIG_BFS_FS=m +CONFIG_BGMAC=y +CONFIG_BGMAC_PLATFORM=y +CONFIG_BH1750=m +CONFIG_BH1780=m +CONFIG_BIG_KEYS=y +CONFIG_BIG_LITTLE=y +CONFIG_BINARY_PRINTF=y +CONFIG_BINFMT_AOUT=m +CONFIG_BINFMT_ELF=y +CONFIG_BINFMT_MISC=m +CONFIG_BINFMT_SCRIPT=y +CONFIG_BITREVERSE=y +CONFIG_BLK_CGROUP=y +CONFIG_BLK_DEV=y +CONFIG_BLK_DEV_BSG=y +CONFIG_BLK_DEV_BSGLIB=y +# CONFIG_BLK_DEV_COW_COMMON is not set +CONFIG_BLK_DEV_DM=y +CONFIG_BLK_DEV_DM_BUILTIN=y +CONFIG_BLK_DEV_DRBD=m +CONFIG_BLK_DEV_FD=m +# CONFIG_BLK_DEV_HD is not set +CONFIG_BLK_DEV_INITRD=y +CONFIG_BLK_DEV_INTEGRITY=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_SCSI=y +CONFIG_BLK_DEV_OSD=m +CONFIG_BLK_DEV_PMEM=m +CONFIG_BLK_DEV_RAM=m +CONFIG_BLK_DEV_RAM_COUNT=16 +CONFIG_BLK_DEV_RAM_DAX=y +CONFIG_BLK_DEV_RAM_SIZE=65536 +CONFIG_BLK_DEV_RBD=m +CONFIG_BLK_DEV_SD=y +CONFIG_BLK_DEV_SR=y +CONFIG_BLK_DEV_THROTTLING=y +# CONFIG_BLK_DEV_XPRAM is not set +CONFIG_BLOCK=y +CONFIG_BLOCK_COMPAT=y +CONFIG_BL_SWITCHER=y +CONFIG_BL_SWITCHER_DUMMY_IF=m +CONFIG_BMA180=m +CONFIG_BMA220=m +CONFIG_BMAC=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_BMG160=m +CONFIG_BMG160_I2C=m +CONFIG_BMG160_SPI=m +CONFIG_BMI160=m +CONFIG_BMI160_I2C=m +CONFIG_BMI160_SPI=m +CONFIG_BMP085=m +CONFIG_BMP085_SPI=m +CONFIG_BNA=m +CONFIG_BNX2=m +CONFIG_BNX2X=m +CONFIG_BNX2X_SRIOV=y +CONFIG_BNXT=m +CONFIG_BNXT_SRIOV=y +CONFIG_BOARD_TPCI200=m +CONFIG_BONDING=m +CONFIG_BOOKE=y +CONFIG_BOOKE_WDT=y +CONFIG_BOOKE_WDT_DEFAULT_TIMEOUT=38 +# 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_BOOTX_TEXT is not set +CONFIG_BOOT_PRINTK_DELAY=y +CONFIG_BOUNCE=y +CONFIG_BPF=y +CONFIG_BPF_EVENTS=y +CONFIG_BPF_JIT=y +CONFIG_BPF_SYSCALL=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_GISB_ARB=y +CONFIG_BRCMUTIL=m +CONFIG_BRCM_TRACING=y +CONFIG_BRIDGE=m +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_NETFILTER=m +CONFIG_BRIDGE_NF_EBTABLES=m +CONFIG_BRIDGE_VLAN_FILTERING=y +# CONFIG_BSC9131_RDB is not set +CONFIG_BSC9132_QDS=y +CONFIG_BSD_DISKLABEL=y +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_RUN_SANITY_TESTS is not set +CONFIG_BTT=y +CONFIG_BT_6LOWPAN=m +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_HCIBTUART=m +CONFIG_BT_HCIBTUSB=m +CONFIG_BT_HCIBTUSB_BCM=y +CONFIG_BT_HCIBTUSB_RTL=y +CONFIG_BT_HCIDTL1=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_QCA=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_QCA=m +CONFIG_BT_RFCOMM=m +CONFIG_BT_RFCOMM_TTY=y +CONFIG_BT_RTL=m +# CONFIG_BT_SELFTEST is not set +CONFIG_BT_WILINK=m +CONFIG_BUG=y +CONFIG_BUILDTIME_EXTABLE_SORT=y +CONFIG_BUILD_BIN2C=y +CONFIG_C101=m +CONFIG_C293_PCIE=y +CONFIG_C2PORT_DURAMAR_2150=m +CONFIG_CACHEFILES=m +# CONFIG_CACHEFILES_DEBUG is not set +# CONFIG_CACHEFILES_HISTOGRAM is not set +CONFIG_CACHE_FEROCEON_L2=y +# CONFIG_CACHE_FEROCEON_L2_WRITETHROUGH is not set +CONFIG_CACHE_L2X0=y +CONFIG_CACHE_TAUROS2=y +CONFIG_CACHE_UNIPHIER=y +CONFIG_CAIF=m +# CONFIG_CAIF_DEBUG is not set +CONFIG_CAIF_NETDEV=m +# CONFIG_CAIF_SPI_SYNC is not set +CONFIG_CAIF_USB=m +CONFIG_CALGARY_IOMMU=y +CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT=y +CONFIG_CAN=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_FLEXCAN=m +CONFIG_CAN_GRCAN=m +CONFIG_CAN_GS_USB=m +CONFIG_CAN_GW=m +CONFIG_CAN_IFI_CANFD=m +CONFIG_CAN_JANZ_ICAN3=m +CONFIG_CAN_KVASER_PCI=m +CONFIG_CAN_KVASER_USB=m +CONFIG_CAN_LEDS=y +CONFIG_CAN_MCP251X=m +CONFIG_CAN_MSCAN=m +CONFIG_CAN_M_CAN=m +CONFIG_CAN_PEAK_PCI=m +CONFIG_CAN_PEAK_PCIEC=y +CONFIG_CAN_PEAK_PCMCIA=m +CONFIG_CAN_PEAK_USB=m +CONFIG_CAN_PLX_PCI=m +CONFIG_CAN_RAW=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_TSCAN1=m +CONFIG_CAN_VCAN=m +CONFIG_CAN_XILINXCAN=m +CONFIG_CAPI_AVM=y +CONFIG_CAPI_EICON=y +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_ERRATUM_22375=y +CONFIG_CAVIUM_ERRATUM_23144=y +CONFIG_CAVIUM_ERRATUM_23154=y +CONFIG_CAVIUM_ERRATUM_27456=y +# CONFIG_CB710_DEBUG is not set +CONFIG_CB710_DEBUG_ASSUMPTIONS=y +CONFIG_CBE_CPUFREQ_SPU_GOVERNOR=m +CONFIG_CC10001_ADC=m +CONFIG_CCW=y +CONFIG_CCWGROUP=m +CONFIG_CCW_CONSOLE=y +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +# CONFIG_CC_STACKPROTECTOR_NONE is not set +# CONFIG_CC_STACKPROTECTOR_REGULAR is not set +CONFIG_CC_STACKPROTECTOR_STRONG=y +CONFIG_CDROM_PKTCDVD_BUFFERS=8 +# CONFIG_CDROM_PKTCDVD_WCACHE is not set +# CONFIG_CELL_CPU is not set +CONFIG_CEPH_FS=m +CONFIG_CEPH_FSCACHE=y +CONFIG_CEPH_FS_POSIX_ACL=y +CONFIG_CEPH_LIB=m +# CONFIG_CEPH_LIB_PRETTYDEBUG is not set +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_INTERNAL_REGDB is not set +CONFIG_CFG80211_WEXT=y +CONFIG_CFG80211_WEXT_EXPORT=y +CONFIG_CFQ_GROUP_IOSCHED=y +CONFIG_CFS_BANDWIDTH=y +CONFIG_CGROUPS=y +CONFIG_CGROUP_CPUACCT=y +# CONFIG_CGROUP_DEBUG is not set +CONFIG_CGROUP_DEVICE=y +CONFIG_CGROUP_FREEZER=y +CONFIG_CGROUP_NET_CLASSID=y +CONFIG_CGROUP_NET_PRIO=y +CONFIG_CGROUP_PERF=y +CONFIG_CGROUP_PIDS=y +CONFIG_CGROUP_SCHED=y +CONFIG_CGROUP_WRITEBACK=y +CONFIG_CHARGER_88PM860X=m +CONFIG_CHARGER_BQ2415X=m +CONFIG_CHARGER_BQ24190=m +CONFIG_CHARGER_BQ24257=m +CONFIG_CHARGER_BQ24735=m +CONFIG_CHARGER_BQ25890=m +CONFIG_CHARGER_DA9150=m +CONFIG_CHARGER_GPIO=m +CONFIG_CHARGER_ISP1704=m +CONFIG_CHARGER_LP8727=m +CONFIG_CHARGER_LP8788=m +CONFIG_CHARGER_MANAGER=y +CONFIG_CHARGER_MAX14577=m +CONFIG_CHARGER_MAX77693=m +CONFIG_CHARGER_MAX8903=m +CONFIG_CHARGER_MAX8997=m +CONFIG_CHARGER_MAX8998=m +CONFIG_CHARGER_PCF50633=m +CONFIG_CHARGER_QCOM_SMBB=m +CONFIG_CHARGER_RT9455=m +CONFIG_CHARGER_SMB347=m +CONFIG_CHARGER_TPS65090=m +CONFIG_CHARGER_TPS65217=m +CONFIG_CHARGER_TWL4030=m +CONFIG_CHECKPOINT_RESTORE=y +CONFIG_CHECK_SIGNATURE=y +# CONFIG_CHECK_STACK is not set +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_CHROMEOS_LAPTOP=m +CONFIG_CHROMEOS_PSTORE=m +CONFIG_CHROME_PLATFORMS=y +CONFIG_CHR_DEV_OSST=m +CONFIG_CHR_DEV_SCH=m +CONFIG_CHR_DEV_SG=y +CONFIG_CHR_DEV_ST=m +CONFIG_CHSC_SCH=m +CONFIG_CIFS=m +CONFIG_CIFS_ACL=y +CONFIG_CIFS_DEBUG=y +# CONFIG_CIFS_DEBUG2 is not set +CONFIG_CIFS_DFS_UPCALL=y +CONFIG_CIFS_FSCACHE=y +CONFIG_CIFS_POSIX=y +CONFIG_CIFS_SMB2=y +CONFIG_CIFS_STATS=y +CONFIG_CIFS_UPCALL=y +CONFIG_CIFS_WEAK_PW_HASH=y +CONFIG_CIFS_XATTR=y +CONFIG_CISS_SCSI_TAPE=y +CONFIG_CLEANCACHE=y +CONFIG_CLKBLD_I8253=y +CONFIG_CLKDEV_LOOKUP=y +CONFIG_CLKEVT_I8253=y +CONFIG_CLKSRC_ACPI=y +CONFIG_CLKSRC_ARM_GLOBAL_TIMER_SCHED_CLOCK=y +CONFIG_CLKSRC_EXYNOS_MCT=y +CONFIG_CLKSRC_I8253=y +CONFIG_CLKSRC_IMX_GPT=y +CONFIG_CLKSRC_MMIO=y +CONFIG_CLKSRC_OF=y +CONFIG_CLKSRC_PROBE=y +CONFIG_CLKSRC_QCOM=y +CONFIG_CLKSRC_TANGO_XTAL=y +CONFIG_CLKSRC_TI_32K=y +CONFIG_CLKSRC_VERSATILE=y +CONFIG_CLK_RENESAS_CPG_MSSR=y +CONFIG_CLK_RENESAS_CPG_MSTP=y +CONFIG_CLK_SP810=y +CONFIG_CLK_TWL6040=m +CONFIG_CLK_VEXPRESS_OSC=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_CLOCKSOURCE_WATCHDOG=y +# CONFIG_CLOCK_THERMAL is not set +CONFIG_CLONE_BACKWARDS=y +CONFIG_CLONE_BACKWARDS2=y +CONFIG_CLS_U32_MARK=y +CONFIG_CLZ_TAB=y +CONFIG_CM32181=m +CONFIG_CM3232=m +CONFIG_CM3323=m +CONFIG_CM36651=m +CONFIG_CMA_AREAS=7 +# CONFIG_CMA_DEBUG is not set +# CONFIG_CMA_DEBUGFS is not set +# CONFIG_CMDLINE_BOOL is not set +# CONFIG_CMDLINE_FORCE is not set +CONFIG_CMM_IUCV=y +CONFIG_CMT_SPEECH=m +CONFIG_CNIC=m +CONFIG_CODA_FS=m +# CONFIG_CODE_PATCHING_SELFTEST is not set +CONFIG_COMEDI=m +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_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_SERIAL2002=m +CONFIG_COMEDI_SSV_DNP=m +CONFIG_COMEDI_TEST=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=y +CONFIG_COMMON_CLK_AMLOGIC=y +CONFIG_COMMON_CLK_CDCE706=m +CONFIG_COMMON_CLK_CDCE925=m +CONFIG_COMMON_CLK_CS2000_CP=m +CONFIG_COMMON_CLK_HI3519=m +CONFIG_COMMON_CLK_HI6220=y +CONFIG_COMMON_CLK_IPROC=y +CONFIG_COMMON_CLK_MAX77686=m +CONFIG_COMMON_CLK_MAX77802=m +CONFIG_COMMON_CLK_MAX_GEN=y +CONFIG_COMMON_CLK_MESON8B=y +# CONFIG_COMMON_CLK_NXP is not set +CONFIG_COMMON_CLK_PALMAS=m +# CONFIG_COMMON_CLK_PIC32 is not set +CONFIG_COMMON_CLK_PWM=m +# CONFIG_COMMON_CLK_PXA is not set +CONFIG_COMMON_CLK_QCOM=m +CONFIG_COMMON_CLK_RK808=m +CONFIG_COMMON_CLK_S2MPS11=m +CONFIG_COMMON_CLK_SAMSUNG=y +CONFIG_COMMON_CLK_SCPI=m +CONFIG_COMMON_CLK_SI514=m +CONFIG_COMMON_CLK_SI5351=m +CONFIG_COMMON_CLK_SI570=m +CONFIG_COMMON_CLK_TI_ADPLL=y +CONFIG_COMMON_CLK_VERSATILE=y +CONFIG_COMMON_CLK_WM831X=m +CONFIG_COMMON_CLK_XGENE=y +# CONFIG_COMMON_CLK_XLNX_CLKWZRD is not set +CONFIG_COMMON_RESET_HI6220=m +CONFIG_COMPACTION=y +CONFIG_COMPAL_LAPTOP=m +CONFIG_COMPAT=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=m +CONFIG_CONNECTOR=y +CONFIG_CONSOLE_POLL=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_CONTEXT_SWITCH_TRACER=y +CONFIG_COPS=m +CONFIG_COPS_DAYNA=y +CONFIG_COPS_TANGENT=y +CONFIG_CORDIC=m +CONFIG_COREDUMP=y +CONFIG_CORENET_GENERIC=y +# CONFIG_CORESIGHT is not set +CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y +CONFIG_COSA=m +# CONFIG_CPA_DEBUG is not set +CONFIG_CPM=y +CONFIG_CPM2=y +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 is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL 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=m +CONFIG_CPU_FREQ_GOV_USERSPACE=y +CONFIG_CPU_FREQ_MAPLE=y +CONFIG_CPU_FREQ_PMAC=y +CONFIG_CPU_FREQ_PMAC64=y +CONFIG_CPU_FREQ_STAT=y +CONFIG_CPU_FREQ_STAT_DETAILS=y +CONFIG_CPU_HAS_ASID=y +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_CPU_ICACHE_DISABLE is not set +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_LADDER=y +CONFIG_CPU_IDLE_GOV_MENU=y +CONFIG_CPU_IDLE_MULTIPLE_DRIVERS=y +CONFIG_CPU_NOTIFIER_ERROR_INJECT=m +CONFIG_CPU_PABRT_V7=y +CONFIG_CPU_PJ4=y +CONFIG_CPU_PJ4B=y +CONFIG_CPU_PM=y +CONFIG_CPU_RMAP=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_CENTAUR=y +CONFIG_CPU_SUP_CYRIX_32=y +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_TRANSMETA_32=y +CONFIG_CPU_SUP_UMC_32=y +CONFIG_CPU_SW_DOMAIN_PAN=y +CONFIG_CPU_THERMAL=y +CONFIG_CPU_TLB_V7=y +CONFIG_CPU_V7=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_CRC7=m +CONFIG_CRC8=m +CONFIG_CRC_CCITT=y +CONFIG_CRC_ITU_T=m +CONFIG_CRC_T10DIF=y +CONFIG_CROSS_COMPILE="" +CONFIG_CROSS_MEMORY_ATTACH=y +CONFIG_CROS_EC_CHARDEV=m +CONFIG_CROS_EC_LPC=m +CONFIG_CROS_EC_PROTO=y +CONFIG_CROS_KBD_LED_BACKLIGHT=m +CONFIG_CRYPTO=y +CONFIG_CRYPTO_842=m +CONFIG_CRYPTO_ABLK_HELPER=m +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_AES=y +CONFIG_CRYPTO_AES_586=m +CONFIG_CRYPTO_AES_ARM=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_X86_64=m +CONFIG_CRYPTO_AKCIPHER=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_ANSI_CPRNG=m +CONFIG_CRYPTO_ANUBIS=m +CONFIG_CRYPTO_ARC4=m +CONFIG_CRYPTO_AUTHENC=m +CONFIG_CRYPTO_BLKCIPHER=y +CONFIG_CRYPTO_BLKCIPHER2=y +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_CHACHA20=m +CONFIG_CRYPTO_CHACHA20POLY1305=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_CRC32_ARM64=y +CONFIG_CRYPTO_CRC32_PCLMUL=m +CONFIG_CRYPTO_CRC32_S390=m +CONFIG_CRYPTO_CRCT10DIF=y +CONFIG_CRYPTO_CRCT10DIF_PCLMUL=m +CONFIG_CRYPTO_CRYPTD=m +CONFIG_CRYPTO_DEFLATE=m +CONFIG_CRYPTO_DES=m +CONFIG_CRYPTO_DES3_EDE_X86_64=m +CONFIG_CRYPTO_DES_S390=m +CONFIG_CRYPTO_DEV_CCP=y +CONFIG_CRYPTO_DEV_CCP_CRYPTO=m +CONFIG_CRYPTO_DEV_CCP_DD=m +CONFIG_CRYPTO_DEV_FSL_CAAM_AHASH_API=m +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API=m +# 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=m +CONFIG_CRYPTO_DEV_FSL_CAAM_RINGSIZE=9 +CONFIG_CRYPTO_DEV_FSL_CAAM_RNG_API=m +CONFIG_CRYPTO_DEV_GEODE=m +CONFIG_CRYPTO_DEV_HIFN_795X=m +CONFIG_CRYPTO_DEV_HIFN_795X_RNG=y +CONFIG_CRYPTO_DEV_MARVELL_CESA=m +CONFIG_CRYPTO_DEV_MV_CESA=m +CONFIG_CRYPTO_DEV_MXC_SCC=m +# CONFIG_CRYPTO_DEV_MXS_DCP is not set +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_NX_ENCRYPT=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_C3XXX is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set +# CONFIG_CRYPTO_DEV_QAT_C62X is not set +# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set +CONFIG_CRYPTO_DEV_QAT_DH895xCC=m +CONFIG_CRYPTO_DEV_QAT_DH895xCCVF=m +CONFIG_CRYPTO_DEV_QCE=m +# CONFIG_CRYPTO_DEV_ROCKCHIP is not set +CONFIG_CRYPTO_DEV_S5P=m +CONFIG_CRYPTO_DEV_SAHARA=m +CONFIG_CRYPTO_DEV_TALITOS=m +CONFIG_CRYPTO_DEV_TALITOS2=y +CONFIG_CRYPTO_DEV_VMX=y +CONFIG_CRYPTO_DEV_VMX_ENCRYPT=m +CONFIG_CRYPTO_DH=m +CONFIG_CRYPTO_DRBG_CTR=y +CONFIG_CRYPTO_DRBG_HASH=y +CONFIG_CRYPTO_DRBG_HMAC=y +CONFIG_CRYPTO_ECB=y +CONFIG_CRYPTO_ECDH=m +CONFIG_CRYPTO_ECHAINIV=m +CONFIG_CRYPTO_ENGINE=m +CONFIG_CRYPTO_FCRYPT=m +CONFIG_CRYPTO_GCM=m +CONFIG_CRYPTO_GHASH=m +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_GLUE_HELPER_X86=m +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_HASH_INFO=y +CONFIG_CRYPTO_HMAC=y +CONFIG_CRYPTO_HW=y +CONFIG_CRYPTO_KEYWRAP=m +CONFIG_CRYPTO_KHAZAD=m +CONFIG_CRYPTO_KPP=m +CONFIG_CRYPTO_KPP2=y +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_MCRYPTD=m +CONFIG_CRYPTO_MD4=m +CONFIG_CRYPTO_MD5=y +CONFIG_CRYPTO_MD5_PPC=m +CONFIG_CRYPTO_MICHAEL_MIC=m +CONFIG_CRYPTO_NULL2=y +CONFIG_CRYPTO_PCBC=m +CONFIG_CRYPTO_PCRYPT=m +CONFIG_CRYPTO_POLY1305=m +CONFIG_CRYPTO_POLY1305_X86_64=m +CONFIG_CRYPTO_RMD128=m +CONFIG_CRYPTO_RMD160=m +CONFIG_CRYPTO_RMD256=m +CONFIG_CRYPTO_RMD320=m +CONFIG_CRYPTO_RNG=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_RSA=y +CONFIG_CRYPTO_SALSA20=m +CONFIG_CRYPTO_SALSA20_586=m +CONFIG_CRYPTO_SALSA20_X86_64=m +CONFIG_CRYPTO_SEED=m +CONFIG_CRYPTO_SERPENT=m +CONFIG_CRYPTO_SERPENT_AVX2_X86_64=m +CONFIG_CRYPTO_SERPENT_AVX_X86_64=m +CONFIG_CRYPTO_SERPENT_SSE2_586=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_MB=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_MB=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_SHA512=y +CONFIG_CRYPTO_SHA512_ARM=m +CONFIG_CRYPTO_SHA512_MB=m +CONFIG_CRYPTO_SHA512_S390=m +CONFIG_CRYPTO_SHA512_SSSE3=m +CONFIG_CRYPTO_SKEIN=y +CONFIG_CRYPTO_TEA=m +CONFIG_CRYPTO_TEST=m +CONFIG_CRYPTO_TGR192=m +CONFIG_CRYPTO_TWOFISH=m +CONFIG_CRYPTO_TWOFISH_586=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_HASH=m +CONFIG_CRYPTO_USER_API_RNG=m +CONFIG_CRYPTO_USER_API_SKCIPHER=m +CONFIG_CRYPTO_VMAC=m +CONFIG_CRYPTO_WORKQUEUE=y +CONFIG_CRYPTO_WP512=m +CONFIG_CRYPTO_XCBC=m +CONFIG_CRYPT_CRC32C_VPMSUM=m +# CONFIG_CS5535_MFGPT is not set +CONFIG_CS89x0=m +CONFIG_CS89x0_PLATFORM=y +CONFIG_CTCM=m +CONFIG_CUSE=m +CONFIG_CW1200=m +CONFIG_CW1200_WLAN_SDIO=m +CONFIG_CW1200_WLAN_SPI=m +CONFIG_CXL=m +CONFIG_CXLFLASH=m +CONFIG_CXL_BIMODAL=y +CONFIG_CX_ECAT=m +CONFIG_CYCLADES=m +CONFIG_CYPRESS_FIRMWARE=m +# CONFIG_CYZ_INTR is not set +CONFIG_DA9052_WATCHDOG=m +CONFIG_DA9055_WATCHDOG=m +CONFIG_DA9062_WATCHDOG=m +CONFIG_DA9063_WATCHDOG=m +CONFIG_DA9150_GPADC=m +CONFIG_DASD=m +CONFIG_DASD_DIAG=m +CONFIG_DASD_ECKD=m +CONFIG_DASD_EER=y +CONFIG_DASD_FBA=m +CONFIG_DASD_PROFILE=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_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_BLK_CGROUP is not set +# CONFIG_DEBUG_BLOCK_EXT_DEVT 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_ENTRY is not set +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +CONFIG_DEBUG_FS=y +# CONFIG_DEBUG_GPIO is not set +# CONFIG_DEBUG_HIGHMEM is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +CONFIG_DEBUG_IMX_UART_PORT=1 +CONFIG_DEBUG_INFO=y +# CONFIG_DEBUG_INFO_REDUCED is not set +# CONFIG_DEBUG_INFO_SPLIT is not set +CONFIG_DEBUG_KERNEL=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_KOBJECT 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_MUTEXES is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_DEBUG_NX_TEST 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_PINCTRL is not set +# CONFIG_DEBUG_PI_LIST is not set +# CONFIG_DEBUG_PREEMPT is not set +CONFIG_DEBUG_RODATA=y +# CONFIG_DEBUG_RODATA_TEST is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_DEBUG_SET_MODULE_RONX=y +# 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_TIMEKEEPING is not set +# CONFIG_DEBUG_TLBFLUSH is not set +# CONFIG_DEBUG_UART_8250 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_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_DEFAULT_CUBIC=y +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 +CONFIG_DEFAULT_IO_DELAY_TYPE=1 +# CONFIG_DEFAULT_NOOP is not set +# CONFIG_DEFAULT_RENO is not set +CONFIG_DEFAULT_SECURITY="apparmor" +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_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set +CONFIG_DEFXX=m +# CONFIG_DEFXX_MMIO is not set +CONFIG_DELL_LAPTOP=m +CONFIG_DELL_RBTN=m +CONFIG_DELL_RBU=m +CONFIG_DELL_SMBIOS=m +CONFIG_DELL_SMO8800=m +CONFIG_DELL_WMI=m +CONFIG_DELL_WMI_AIO=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_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_DEVKMEM is not set +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_PMEM=m +CONFIG_DE_AOC=y +CONFIG_DGNC=m +CONFIG_DHT11=m +CONFIG_DIAG288_WATCHDOG=m +# CONFIG_DISABLE_MPROFILE_KERNEL is not set +CONFIG_DL2K=m +CONFIG_DLCI=m +CONFIG_DLCI_MAX=8 +CONFIG_DLM=m +CONFIG_DM9000=m +# CONFIG_DM9000_FORCE_SIMPLE_PHY_POLL is not set +CONFIG_DM9102=m +# CONFIG_DMADEVICES_DEBUG is not set +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_CMA is not set +CONFIG_DMA_ENGINE=y +CONFIG_DMA_ENGINE_RAID=y +CONFIG_DMA_OF=y +CONFIG_DMA_OMAP=y +CONFIG_DMA_SHARED_BUFFER=y +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_CLEANER=m +CONFIG_DM_CACHE_SMQ=m +CONFIG_DM_CRYPT=m +# CONFIG_DM_DEBUG_BLOCK_STACK_TRACING is not set +CONFIG_DM_DELAY=m +CONFIG_DM_ERA=m +CONFIG_DM_FLAKEY=m +CONFIG_DM_LOG_USERSPACE=m +CONFIG_DM_LOG_WRITES=m +CONFIG_DM_MIRROR=m +CONFIG_DM_MULTIPATH=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_VERITY=m +CONFIG_DM_ZERO=m +CONFIG_DNOTIFY=y +CONFIG_DONGLE=y +CONFIG_DOUBLEFAULT=y +CONFIG_DOVE_CLK=y +CONFIG_DOVE_THERMAL=m +# CONFIG_DPM_WATCHDOG is not set +CONFIG_DPTF_POWER=m +CONFIG_DQL=y +CONFIG_DRA752_THERMAL=y +CONFIG_DRAGONRISE_FF=y +# CONFIG_DRBD_FAULT_INJECTION is not set +CONFIG_DRM_AMDGPU=m +# CONFIG_DRM_AMDGPU_CIK is not set +# CONFIG_DRM_AMDGPU_GART_DEBUGFS is not set +CONFIG_DRM_AMDGPU_USERPTR=y +CONFIG_DRM_AMD_ACP=y +CONFIG_DRM_AMD_POWERPLAY=y +CONFIG_DRM_ANALOGIX_ANX78XX=m +CONFIG_DRM_ANALOGIX_DP=m +CONFIG_DRM_ARCPGU=m +CONFIG_DRM_ARM=y +CONFIG_DRM_ARMADA=m +CONFIG_DRM_AST=m +CONFIG_DRM_ATMEL_HLCDC=m +# CONFIG_DRM_BOCHS is not set +CONFIG_DRM_BRIDGE=y +CONFIG_DRM_CIRRUS_QEMU=m +CONFIG_DRM_DP_AUX_CHARDEV=y +CONFIG_DRM_DW_HDMI=m +CONFIG_DRM_DW_HDMI_AHB_AUDIO=m +CONFIG_DRM_ETNAVIV=m +# CONFIG_DRM_ETNAVIV_REGISTER_LOGGING is not set +CONFIG_DRM_EXYNOS=m +CONFIG_DRM_EXYNOS5433_DECON=y +# CONFIG_DRM_EXYNOS7_DECON is not set +CONFIG_DRM_EXYNOS_DSI=y +# CONFIG_DRM_EXYNOS_FIMD is not set +CONFIG_DRM_EXYNOS_IOMMU=y +# CONFIG_DRM_EXYNOS_IPP is not set +CONFIG_DRM_EXYNOS_MIC=y +# CONFIG_DRM_EXYNOS_VIDI is not set +CONFIG_DRM_FBDEV_EMULATION=y +CONFIG_DRM_FSL_DCU=m +CONFIG_DRM_GEM_CMA_HELPER=y +CONFIG_DRM_GMA3600=y +CONFIG_DRM_GMA500=m +CONFIG_DRM_GMA600=y +CONFIG_DRM_HDLCD=m +# CONFIG_DRM_HDLCD_SHOW_UNDERRUN is not set +CONFIG_DRM_HISI_KIRIN=m +CONFIG_DRM_I2C_ADV7511=m +CONFIG_DRM_I2C_ADV7533=y +CONFIG_DRM_I2C_CH7006=m +CONFIG_DRM_I2C_NXP_TDA998X=m +CONFIG_DRM_I2C_SIL164=m +CONFIG_DRM_I810=m +CONFIG_DRM_I915=m +# CONFIG_DRM_I915_DEBUG is not set +CONFIG_DRM_I915_GVT=y +# CONFIG_DRM_I915_PRELIMINARY_HW_SUPPORT is not set +CONFIG_DRM_I915_USERPTR=y +# CONFIG_DRM_I915_WERROR is not set +CONFIG_DRM_IMX=m +CONFIG_DRM_IMX_HDMI=m +CONFIG_DRM_IMX_IPUV3=m +CONFIG_DRM_IMX_LDB=m +CONFIG_DRM_IMX_PARALLEL_DISPLAY=m +CONFIG_DRM_IMX_TVE=m +CONFIG_DRM_KMS_CMA_HELPER=y +CONFIG_DRM_KMS_FB_HELPER=y +CONFIG_DRM_KMS_HELPER=m +CONFIG_DRM_LOAD_EDID_FIRMWARE=y +CONFIG_DRM_MALI_DISPLAY=m +CONFIG_DRM_MEDFIELD=y +CONFIG_DRM_MEDIATEK=m +CONFIG_DRM_MEDIATEK_HDMI=m +CONFIG_DRM_MGA=m +# CONFIG_DRM_MGAG200 is not set +CONFIG_DRM_MIPI_DSI=y +CONFIG_DRM_MSM=m +CONFIG_DRM_MSM_DSI=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_PLL=y +CONFIG_DRM_MSM_HDMI_HDCP=y +CONFIG_DRM_MSM_REGISTER_LOGGING=y +CONFIG_DRM_NOUVEAU=m +CONFIG_DRM_NOUVEAU_BACKLIGHT=y +CONFIG_DRM_NXP_PTN3460=m +# CONFIG_DRM_OMAP is not set +CONFIG_DRM_PANEL=y +CONFIG_DRM_PANEL_LG_LG4573=m +CONFIG_DRM_PANEL_PANASONIC_VVX10F034N00=m +CONFIG_DRM_PANEL_SAMSUNG_LD9040=m +CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0=m +CONFIG_DRM_PANEL_SHARP_LQ101R1SX01=m +CONFIG_DRM_PANEL_SHARP_LS043T1LE01=m +CONFIG_DRM_PANEL_SIMPLE=m +CONFIG_DRM_PARADE_PS8622=m +CONFIG_DRM_QXL=m +CONFIG_DRM_R128=m +CONFIG_DRM_RADEON=m +# CONFIG_DRM_RADEON_USERPTR is not set +CONFIG_DRM_RCAR_HDMI=y +CONFIG_DRM_RCAR_LVDS=y +CONFIG_DRM_RCAR_VSP=y +CONFIG_DRM_ROCKCHIP=m +CONFIG_DRM_SAVAGE=m +CONFIG_DRM_SHMOBILE=m +CONFIG_DRM_SII902X=m +CONFIG_DRM_SIS=m +# CONFIG_DRM_STI is not set +CONFIG_DRM_TDFX=m +CONFIG_DRM_TEGRA=m +# CONFIG_DRM_TEGRA_DEBUG is not set +CONFIG_DRM_TEGRA_STAGING=y +CONFIG_DRM_TILCDC=m +CONFIG_DRM_TILCDC_SLAVE_COMPAT=y +CONFIG_DRM_TOSHIBA_TC358767=m +CONFIG_DRM_TTM=m +CONFIG_DRM_UDL=m +CONFIG_DRM_VC4=m +CONFIG_DRM_VGEM=m +CONFIG_DRM_VIA=m +CONFIG_DRM_VIRTIO_GPU=m +CONFIG_DRM_VMWGFX=m +CONFIG_DRM_VMWGFX_FBCON=y +CONFIG_DS1803=m +CONFIG_DSCC4=m +CONFIG_DSCC4_PCISYNC=y +CONFIG_DSCC4_PCI_RST=y +CONFIG_DST_CACHE=y +CONFIG_DTC=y +CONFIG_DTL=y +CONFIG_DTLK=m +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_DDBRIDGE=m +CONFIG_DVB_DIB3000MB=m +CONFIG_DVB_DIB3000MC=m +CONFIG_DVB_DIB7000M=m +CONFIG_DVB_DIB7000P=m +CONFIG_DVB_DIB8000=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 is not set +CONFIG_DVB_DYNAMIC_MINORS=y +CONFIG_DVB_EC100=m +CONFIG_DVB_FIREDTV=m +CONFIG_DVB_FIREDTV_INPUT=y +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_LGS8GXX=m +CONFIG_DVB_LNBH25=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_MN88472=m +CONFIG_DVB_MN88473=m +CONFIG_DVB_MT312=m +CONFIG_DVB_MT352=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_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_STV6110=m +CONFIG_DVB_STV6110x=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_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_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_DEBUG is not set +CONFIG_DVB_USB_DIB0700=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_FRIIO=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_VES1820=m +CONFIG_DVB_VES1X93=m +CONFIG_DVB_ZL10036=m +CONFIG_DVB_ZL10039=m +CONFIG_DVB_ZL10353=m +CONFIG_DWMAC_GENERIC=m +CONFIG_DWMAC_IPQ806X=m +CONFIG_DWMAC_MESON=m +CONFIG_DWMAC_ROCKCHIP=m +CONFIG_DW_APB_ICTL=y +CONFIG_DW_APB_TIMER=y +CONFIG_DW_APB_TIMER_OF=y +CONFIG_DW_DMAC=m +CONFIG_DW_DMAC_CORE=m +CONFIG_DW_DMAC_PCI=m +CONFIG_DYNAMIC_DEBUG=y +CONFIG_DYNAMIC_FTRACE=y +CONFIG_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_E100=m +CONFIG_E1000=m +CONFIG_E1000E=m +CONFIG_E1000E_HWTS=y +# CONFIG_E200 is not set +CONFIG_E500=y +# CONFIG_E5500_CPU is not set +# CONFIG_E6500_CPU is not set +CONFIG_EADM_SCH=m +CONFIG_EARLY_PRINTK=y +CONFIG_EARLY_PRINTK_DBGP=y +CONFIG_EARLY_PRINTK_EFI=y +CONFIG_EBC_C384_WDT=m +CONFIG_ECRYPT_FS=y +CONFIG_ECRYPT_FS_MESSAGING=y +CONFIG_EDAC=y +CONFIG_EDAC_AMD64=m +# CONFIG_EDAC_AMD64_ERROR_INJECTION is not set +CONFIG_EDAC_AMD76X=m +CONFIG_EDAC_AMD8111=m +CONFIG_EDAC_AMD8131=m +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_CPC925=m +# CONFIG_EDAC_DEBUG is not set +CONFIG_EDAC_DECODE_MCE=m +CONFIG_EDAC_E752X=m +CONFIG_EDAC_E7XXX=m +CONFIG_EDAC_HIGHBANK_L2=m +CONFIG_EDAC_HIGHBANK_MC=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_I82860=m +CONFIG_EDAC_I82875P=m +CONFIG_EDAC_I82975X=m +CONFIG_EDAC_IE31200=m +# CONFIG_EDAC_LEGACY_SYSFS is not set +CONFIG_EDAC_MM_EDAC=m +CONFIG_EDAC_MPC85XX=m +CONFIG_EDAC_PASEMI=m +CONFIG_EDAC_R82600=m +CONFIG_EDAC_SBRIDGE=m +CONFIG_EDAC_SKX=m +CONFIG_EDAC_SUPPORT=y +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_EFIVAR_FS=y +CONFIG_EFI_ARMSTUB=y +CONFIG_EFI_BOOTLOADER_CONTROL=m +CONFIG_EFI_CAPSULE_LOADER=m +CONFIG_EFI_ESRT=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_MIXED=y +CONFIG_EFI_PARAMS_FROM_FDT=y +CONFIG_EFI_PARTITION=y +# CONFIG_EFI_PGT_DUMP is not set +CONFIG_EFI_RUNTIME_MAP=y +CONFIG_EFI_RUNTIME_WRAPPERS=y +CONFIG_EFI_SECURE_BOOT_SIG_ENFORCE=y +CONFIG_EFI_SIGNATURE_LIST_PARSER=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_EFS_FS=m +CONFIG_EHEA=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_ELECTRA_CF=m +CONFIG_ELFCORE=y +CONFIG_ELF_CORE=y +CONFIG_EMAC_ROCKCHIP=m +# CONFIG_EMBEDDED is not set +CONFIG_EMU_SIZE=0x10000000 +CONFIG_ENA_ETHERNET=m +CONFIG_ENC28J60=m +# CONFIG_ENC28J60_WRITEVERIFY is not set +CONFIG_ENCRYPTED_KEYS=y +CONFIG_ENCX24J600=m +CONFIG_ENIC=m +CONFIG_EPAPR_PARAVIRT=y +CONFIG_EPIC100=m +CONFIG_EPOLL=y +CONFIG_EQUALIZER=m +CONFIG_ESI_DONGLE=m +CONFIG_ET131X=m +CONFIG_ETHERNET=y +CONFIG_EUROTECH_WDT=m +CONFIG_EVENTFD=y +CONFIG_EVENT_TRACING=y +CONFIG_EVM=y +CONFIG_EVM_ATTR_FSUUID=y +CONFIG_EVM_EXTRA_SMACK_XATTRS=y +# CONFIG_EVM_LOAD_X509 is not set +# CONFIG_EXOFS_DEBUG is not set +CONFIG_EXOFS_FS=m +CONFIG_EXPERT=y +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_ENCRYPTION=y +CONFIG_EXT4_FS_ENCRYPTION=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_ARIZONA=m +CONFIG_EXTCON_AXP288=m +CONFIG_EXTCON_GPIO=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_RT8973A=m +CONFIG_EXTCON_SM5502=m +CONFIG_EXTCON_USB_GPIO=m +CONFIG_EXTRA_FIRMWARE="" +CONFIG_EXTRA_TARGETS="" +CONFIG_EXYNOS5420_MCPM=y +CONFIG_EXYNOS_ADC=m +CONFIG_EXYNOS_AUDSS_CLK_CON=m +CONFIG_EXYNOS_CPU_SUSPEND=y +CONFIG_EXYNOS_IOMMU=y +# CONFIG_EXYNOS_IOMMU_DEBUG is not set +CONFIG_EXYNOS_MIPI_DSI=y +CONFIG_EXYNOS_PMU=y +CONFIG_EXYNOS_PM_DOMAINS=y +CONFIG_EXYNOS_SROM=y +CONFIG_EXYNOS_THERMAL=y +CONFIG_EXYNOS_VIDEO=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=m +CONFIG_F2FS_FS_ENCRYPTION=y +CONFIG_F2FS_FS_POSIX_ACL=y +CONFIG_F2FS_FS_SECURITY=y +CONFIG_F2FS_FS_XATTR=y +# CONFIG_F2FS_IO_TRACE is not set +CONFIG_F2FS_STAT_FS=y +CONFIG_F71808E_WDT=m +CONFIG_FAIR_GROUP_SCHED=y +CONFIG_FANOTIFY=y +CONFIG_FARSYNC=m +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" +CONFIG_FAT_FS=y +# CONFIG_FAULT_INJECTION is not set +CONFIG_FA_DUMP=y +CONFIG_FB_3DFX=m +# CONFIG_FB_3DFX_ACCEL is not set +# CONFIG_FB_3DFX_I2C is not set +CONFIG_FB_ARC=m +CONFIG_FB_ARK=m +CONFIG_FB_ARMCLCD=y +CONFIG_FB_ASILIANT=y +CONFIG_FB_ATY=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_AUO_K1900=m +CONFIG_FB_AUO_K1901=m +CONFIG_FB_AUO_K190X=m +CONFIG_FB_BACKLIGHT=y +CONFIG_FB_BROADSHEET=m +CONFIG_FB_CARILLO_RANCH=m +CONFIG_FB_CARMINE=m +CONFIG_FB_CARMINE_DRAM_EVAL=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_IMAGEBLIT=y +CONFIG_FB_CIRRUS=m +CONFIG_FB_CMDLINE=y +CONFIG_FB_CONTROL=y +CONFIG_FB_CT65550=y +CONFIG_FB_CYBER2000=m +CONFIG_FB_CYBER2000_DDC=y +CONFIG_FB_DA8XX=m +CONFIG_FB_DDC=m +CONFIG_FB_DEFERRED_IO=y +CONFIG_FB_FLEX=m +# CONFIG_FB_FOREIGN_ENDIAN is not set +CONFIG_FB_FSL_DIU=m +CONFIG_FB_GEODE=y +CONFIG_FB_GEODE_GX=m +CONFIG_FB_GEODE_GX1=m +CONFIG_FB_GEODE_LX=m +CONFIG_FB_HECUBA=m +CONFIG_FB_HGA=m +CONFIG_FB_HYPERV=m +CONFIG_FB_I740=m +CONFIG_FB_I810=m +# CONFIG_FB_I810_GTF is not set +CONFIG_FB_IMSTT=y +CONFIG_FB_IMX=m +CONFIG_FB_INTEL=m +# CONFIG_FB_INTEL_DEBUG is not set +CONFIG_FB_INTEL_I2C=y +CONFIG_FB_KYRO=m +CONFIG_FB_LE80578=m +CONFIG_FB_MATROX=m +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=m +CONFIG_FB_MB862XX_I2C=y +# CONFIG_FB_MB862XX_LIME is not set +CONFIG_FB_MB862XX_PCI_GDC=y +CONFIG_FB_METRONOME=m +CONFIG_FB_MODE_HELPERS=y +CONFIG_FB_MX3=y +CONFIG_FB_MXS=m +CONFIG_FB_N411=m +CONFIG_FB_NEOMAGIC=m +CONFIG_FB_NOTIFY=y +CONFIG_FB_NVIDIA=m +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_DSI_CM is not set +# CONFIG_FB_OMAP2_PANEL_LGPHILIPS_LB035Q02 is not set +# CONFIG_FB_OMAP2_PANEL_NEC_NL8048HL11 is not set +# CONFIG_FB_OMAP2_PANEL_SHARP_LS037V7DW01 is not set +# CONFIG_FB_OMAP2_PANEL_SONY_ACX565AKM is not set +# CONFIG_FB_OMAP2_PANEL_TPO_TD028TTEC1 is not set +# CONFIG_FB_OMAP2_PANEL_TPO_TD043MTEA1 is not set +CONFIG_FB_OMAP4_DSS_HDMI=y +# CONFIG_FB_OMAP5_DSS_HDMI is not set +CONFIG_FB_OPENCORES=m +CONFIG_FB_PLATINUM=y +CONFIG_FB_PM2=m +CONFIG_FB_PM2_FIFO_DISCONNECT=y +CONFIG_FB_PM3=m +CONFIG_FB_PS3=y +CONFIG_FB_PS3_DEFAULT_SIZE_M=9 +CONFIG_FB_RADEON=m +CONFIG_FB_RADEON_BACKLIGHT=y +# CONFIG_FB_RADEON_DEBUG is not set +CONFIG_FB_RADEON_I2C=y +CONFIG_FB_RIVA=m +CONFIG_FB_RIVA_BACKLIGHT=y +# CONFIG_FB_RIVA_DEBUG is not set +CONFIG_FB_RIVA_I2C=y +CONFIG_FB_S1D13XXX=m +CONFIG_FB_S3=m +CONFIG_FB_S3C=m +# CONFIG_FB_S3C_DEBUG_REGWRITE is not set +CONFIG_FB_S3_DDC=y +CONFIG_FB_SAVAGE=m +# CONFIG_FB_SAVAGE_ACCEL is not set +CONFIG_FB_SAVAGE_I2C=y +CONFIG_FB_SIMPLE=y +CONFIG_FB_SIS=m +CONFIG_FB_SIS_300=y +CONFIG_FB_SIS_315=y +CONFIG_FB_SM501=m +CONFIG_FB_SM712=m +CONFIG_FB_SM750=m +CONFIG_FB_SMSCUFX=m +CONFIG_FB_SSD1307=m +CONFIG_FB_SVGALIB=m +CONFIG_FB_TFT=m +CONFIG_FB_TFT_AGM1264K_FL=m +CONFIG_FB_TFT_BD663474=m +CONFIG_FB_TFT_FBTFT_DEVICE=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_SSD1289=m +CONFIG_FB_TFT_SSD1305=m +CONFIG_FB_TFT_SSD1306=m +CONFIG_FB_TFT_SSD1325=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_TILEBLITTING=y +CONFIG_FB_TMIO=m +CONFIG_FB_TMIO_ACCELL=y +CONFIG_FB_TRIDENT=m +CONFIG_FB_UVESA=m +CONFIG_FB_VALKYRIE=y +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_VT8623=m +CONFIG_FB_XGI=m +CONFIG_FCOE=m +CONFIG_FCOE_FNIC=m +CONFIG_FEC=y +# CONFIG_FENCE_TRACE is not set +CONFIG_FHANDLE=y +# CONFIG_FHCI_DEBUG is not set +CONFIG_FIB_RULES=y +CONFIG_FILE_LOCKING=y +CONFIG_FIQ=y +CONFIG_FIREWIRE_NET=m +CONFIG_FIREWIRE_OHCI=m +CONFIG_FIREWIRE_SBP2=m +CONFIG_FIREWIRE_SERIAL=m +CONFIG_FIRMWARE_EDID=y +CONFIG_FIRMWARE_MEMMAP=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_FLATMEM=y +# CONFIG_FLATMEM_MANUAL is not set +CONFIG_FLAT_NODE_MEM_MAP=y +CONFIG_FM10K=m +CONFIG_FMC_CHARDEV=m +CONFIG_FMC_FAKEDEV=m +CONFIG_FMC_TRIVIAL=m +CONFIG_FMC_WRITE_EEPROM=m +# CONFIG_FONT_10x18 is not set +CONFIG_FONT_6x10=y +# CONFIG_FONT_6x11 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_FORCEDETH=m +CONFIG_FPGA=m +CONFIG_FPGA_MGR_ZYNQ_FPGA=m +CONFIG_FRAMEBUFFER_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y +CONFIG_FRAME_POINTER=y +CONFIG_FRAME_VECTOR=y +CONFIG_FREEZER=y +CONFIG_FRONTSWAP=y +CONFIG_FSCACHE=m +# CONFIG_FSCACHE_DEBUG is not set +# CONFIG_FSCACHE_HISTOGRAM is not set +# CONFIG_FSCACHE_OBJECT_LIST is not set +CONFIG_FSCACHE_STATS=y +CONFIG_FSL_BOOKE=y +CONFIG_FSL_CORENET_CF=m +CONFIG_FSL_CORENET_RCPM=y +CONFIG_FSL_DMA=m +CONFIG_FSL_EDMA=m +CONFIG_FSL_EMB_PERFMON=y +CONFIG_FSL_EMB_PERF_EVENT=y +CONFIG_FSL_EMB_PERF_EVENT_E500=y +CONFIG_FSL_FMAN=m +CONFIG_FSL_GTM=y +CONFIG_FSL_HV_MANAGER=m +CONFIG_FSL_IFC=y +CONFIG_FSL_LBC=y +CONFIG_FSL_MC_BUS=y +# CONFIG_FSL_PAMU is not set +CONFIG_FSL_PCI=y +CONFIG_FSL_PQ_MDIO=m +CONFIG_FSL_RIO=y +CONFIG_FSL_SOC=y +CONFIG_FSL_SOC_BOOKE=y +# CONFIG_FSL_UCC_HDLC is not set +# CONFIG_FSL_ULI1575 is not set +CONFIG_FSL_XGMAC_MDIO=y +CONFIG_FSNOTIFY=y +CONFIG_FS_DAX=y +CONFIG_FS_ENET=m +CONFIG_FS_ENET_HAS_FCC=y +CONFIG_FS_ENET_HAS_SCC=y +CONFIG_FS_ENET_MDIO_FCC=m +CONFIG_FS_IOMAP=y +CONFIG_FS_POSIX_ACL=y +CONFIG_FTGMAC100=m +CONFIG_FTL=m +CONFIG_FTMAC100=m +CONFIG_FTRACE=y +CONFIG_FTRACE_MCOUNT_RECORD=y +# CONFIG_FTRACE_STARTUP_TEST is not set +CONFIG_FTRACE_SYSCALLS=y +# CONFIG_FTR_FIXUP_SELFTEST is not set +CONFIG_FUJITSU_ES=m +CONFIG_FUJITSU_LAPTOP=m +# CONFIG_FUJITSU_LAPTOP_DEBUG is not set +CONFIG_FUJITSU_TABLET=m +CONFIG_FUNCTION_GRAPH_TRACER=y +CONFIG_FUNCTION_TRACER=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_FWTTY_MAX_CARD_PORTS=32 +CONFIG_FWTTY_MAX_TOTAL_PORTS=64 +CONFIG_FW_CFG_SYSFS=m +# CONFIG_FW_CFG_SYSFS_CMDLINE is not set +CONFIG_FW_LOADER=y +CONFIG_FW_LOADER_USER_HELPER=y +# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set +CONFIG_GACT_PROB=y +CONFIG_GADGET_UAC1=y +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_PLUGINS is not set +# CONFIG_GCOV_KERNEL is not set +CONFIG_GELIC_NET=m +CONFIG_GELIC_WIRELESS=y +CONFIG_GENERIC_ADC_BATTERY=m +CONFIG_GENERIC_ADC_THERMAL=m +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_GENERIC_ATOMIC64=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_DEVICES is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_GENERIC_IDLE_POLL_SETUP=y +CONFIG_GENERIC_IO=y +CONFIG_GENERIC_IOMAP=y +CONFIG_GENERIC_IRQ_CHIP=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_SHOW_LEVEL=y +CONFIG_GENERIC_ISA_DMA=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_NVRAM=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GENERIC_PINCONF=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_TIME_VSYSCALL_OLD=y +CONFIG_GENERIC_TRACER=y +CONFIG_GENEVE=m +CONFIG_GENWQE=m +CONFIG_GENWQE_PLATFORM_ERROR_RECOVERY=0 +CONFIG_GEN_RTC=y +CONFIG_GEOS=y +# CONFIG_GE_FPGA is not set +# CONFIG_GE_IMP3A is not set +CONFIG_GFS2_FS=m +CONFIG_GFS2_FS_LOCKING_DLM=y +CONFIG_GIANFAR=m +CONFIG_GIGASET_BASE=m +# CONFIG_GIGASET_CAPI is not set +# CONFIG_GIGASET_DEBUG is not set +# CONFIG_GIGASET_DUMMYLL is not set +CONFIG_GIGASET_I4L=y +CONFIG_GIGASET_M101=m +CONFIG_GIGASET_M105=m +CONFIG_GIRBIL_DONGLE=m +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set +# CONFIG_GOLDFISH is not set +# CONFIG_GOOGLE_FIRMWARE is not set +CONFIG_GP2AP020A00F=m +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_ACPI=y +CONFIG_GPIO_ADNP=m +CONFIG_GPIO_ADP5520=m +CONFIG_GPIO_ADP5588=m +CONFIG_GPIO_ALTERA=m +CONFIG_GPIO_AMD8111=m +CONFIG_GPIO_AMDPT=m +CONFIG_GPIO_ARIZONA=m +CONFIG_GPIO_CRYSTAL_COVE=m +CONFIG_GPIO_CS5535=m +CONFIG_GPIO_DA9052=m +CONFIG_GPIO_DA9055=m +CONFIG_GPIO_DEVRES=y +CONFIG_GPIO_DLN2=m +CONFIG_GPIO_DWAPB=m +# CONFIG_GPIO_EM is not set +CONFIG_GPIO_F7188X=m +CONFIG_GPIO_GRGPIO=m +CONFIG_GPIO_ICH=m +CONFIG_GPIO_INTEL_MID=y +CONFIG_GPIO_INTEL_PMIC=y +CONFIG_GPIO_IT87=m +CONFIG_GPIO_JANZ_TTL=m +CONFIG_GPIO_KEMPLD=m +CONFIG_GPIO_LP3943=m +CONFIG_GPIO_LYNXPOINT=y +CONFIG_GPIO_MAX7300=m +CONFIG_GPIO_MAX7301=m +CONFIG_GPIO_MAX730X=m +CONFIG_GPIO_MAX732X=m +CONFIG_GPIO_MAX77620=m +CONFIG_GPIO_MC33880=m +CONFIG_GPIO_MCP23S08=m +CONFIG_GPIO_MENZ127=m +# CONFIG_GPIO_MERRIFIELD is not set +CONFIG_GPIO_ML_IOH=m +CONFIG_GPIO_MSIC=y +CONFIG_GPIO_MVEBU=y +CONFIG_GPIO_MXC=y +CONFIG_GPIO_OMAP=y +CONFIG_GPIO_PALMAS=y +CONFIG_GPIO_PCA953X=m +CONFIG_GPIO_PCF857X=m +CONFIG_GPIO_PCH=m +CONFIG_GPIO_PISOSR=m +CONFIG_GPIO_PL061=y +CONFIG_GPIO_RC5T583=y +CONFIG_GPIO_RDC321X=m +CONFIG_GPIO_SCH=m +CONFIG_GPIO_SCH311X=m +CONFIG_GPIO_STMPE=y +CONFIG_GPIO_SX150X=y +CONFIG_GPIO_SYSCON=m +CONFIG_GPIO_SYSFS=y +CONFIG_GPIO_TC3589X=y +CONFIG_GPIO_TEGRA=y +CONFIG_GPIO_TIMBERDALE=y +CONFIG_GPIO_TPIC2810=m +CONFIG_GPIO_TPS65086=m +CONFIG_GPIO_TPS65218=m +CONFIG_GPIO_TPS6586X=y +CONFIG_GPIO_TPS65910=y +CONFIG_GPIO_TPS65912=m +CONFIG_GPIO_TS4800=m +CONFIG_GPIO_UCB1400=m +CONFIG_GPIO_VF610=y +CONFIG_GPIO_VIPERBOARD=m +CONFIG_GPIO_VX855=m +CONFIG_GPIO_WATCHDOG=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_XLP=m +CONFIG_GPIO_ZEVIO=y +CONFIG_GPIO_ZX=y +CONFIG_GPIO_ZYNQ=m +CONFIG_GRACE_PERIOD=m +CONFIG_GREENASIA_FF=y +CONFIG_GS_FPGABOOT=m +CONFIG_GTP=m +CONFIG_HAMACHI=m +CONFIG_HAMRADIO=y +CONFIG_HANDLE_DOMAIN_IRQ=y +CONFIG_HANGCHECK_TIMER=m +CONFIG_HAPPYMEAL=m +CONFIG_HARDENED_USERCOPY=y +# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set +CONFIG_HARDIRQS_SW_RESEND=y +CONFIG_HARDLOCKUP_DETECTOR=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_HARDENED_USERCOPY=y +# CONFIG_HAVE_ARCH_HASH is not set +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_HAVE_ARCH_KGDB=y +CONFIG_HAVE_ARCH_KMEMCHECK=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y +CONFIG_HAVE_ARCH_PFN_VALID=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=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_TWD=y +CONFIG_HAVE_ATOMIC_IOMAP=y +CONFIG_HAVE_CBPF_JIT=y +CONFIG_HAVE_CC_STACKPROTECTOR=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_COPY_THREAD_TLS=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_HAVE_DEBUG_BUGVERBOSE=y +CONFIG_HAVE_DEBUG_KMEMLEAK=y +CONFIG_HAVE_DEBUG_STACKOVERFLOW=y +CONFIG_HAVE_DMA_API_DEBUG=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_EBPF_JIT=y +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST=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_RCU_GUP=y +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_IDE=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_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_XZ=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_LIVEPATCH=y +# CONFIG_HAVE_MARCH_Z10_FEATURES is not set +# CONFIG_HAVE_MARCH_Z13_FEATURES is not set +# CONFIG_HAVE_MARCH_Z196_FEATURES is not set +CONFIG_HAVE_MARCH_Z900_FEATURES=y +# CONFIG_HAVE_MARCH_Z990_FEATURES is not set +# CONFIG_HAVE_MARCH_Z9_109_FEATURES is not set +# CONFIG_HAVE_MARCH_ZEC12_FEATURES is not set +CONFIG_HAVE_MEMBLOCK=y +CONFIG_HAVE_MEMBLOCK_NODE_MAP=y +CONFIG_HAVE_MEMBLOCK_PHYS_MAP=y +CONFIG_HAVE_MEMORYLESS_NODES=y +CONFIG_HAVE_MEMORY_PRESENT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_HAVE_NET_DSA=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_OPROFILE=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_PATA_PLATFORM=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_PROC_CPU=y +CONFIG_HAVE_RCU_TABLE_FREE=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_S3C2410_I2C=y +CONFIG_HAVE_S3C2410_WATCHDOG=y +CONFIG_HAVE_S3C_RTC=y +CONFIG_HAVE_SMP=y +CONFIG_HAVE_STACK_VALIDATION=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_HCALL_STATS is not set +CONFIG_HDC100X=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_HDM_DIM2=m +CONFIG_HDM_I2C=m +CONFIG_HDM_USB=m +CONFIG_HDQ_MASTER_OMAP=m +# CONFIG_HEADERS_CHECK 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_HFI1_VERBS_31BIT_PSN=y +CONFIG_HFSPLUS_FS=m +CONFIG_HFS_FS=m +CONFIG_HI6220_MBOX=m +CONFIG_HI8435=m +CONFIG_HIBERNATE_CALLBACKS=y +CONFIG_HID=m +CONFIG_HIDRAW=y +CONFIG_HID_A4TECH=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_CHERRY=m +CONFIG_HID_CHICONY=m +CONFIG_HID_CMEDIA=m +CONFIG_HID_CORSAIR=m +CONFIG_HID_CP2112=m +CONFIG_HID_CYPRESS=m +CONFIG_HID_DRAGONRISE=m +CONFIG_HID_ELECOM=m +CONFIG_HID_ELO=m +CONFIG_HID_EMS_FF=m +CONFIG_HID_EZKEY=m +CONFIG_HID_GEMBIRD=m +CONFIG_HID_GENERIC=m +CONFIG_HID_GFRM=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_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_MAGICMOUSE=m +CONFIG_HID_MICROSOFT=m +CONFIG_HID_MONTEREY=m +CONFIG_HID_MULTITOUCH=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_PRIMAX=m +CONFIG_HID_PRODIKEYS=m +CONFIG_HID_RMI=m +CONFIG_HID_ROCCAT=m +CONFIG_HID_SAITEK=m +CONFIG_HID_SAMSUNG=m +CONFIG_HID_SENSOR_ACCEL_3D=m +CONFIG_HID_SENSOR_ALS=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_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_SMARTJOYPLUS=m +CONFIG_HID_SONY=m +CONFIG_HID_SPEEDLINK=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_UCLOGIC=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_HIGHMEM4G is not set +CONFIG_HIGHMEM64G=y +CONFIG_HIGHPTE=y +CONFIG_HIGH_RES_TIMERS=y +CONFIG_HIP04_ETH=m +# CONFIG_HIPPI is not set +CONFIG_HISAX_16_0=y +CONFIG_HISAX_16_3=y +CONFIG_HISAX_1TR6=y +CONFIG_HISAX_ASUSCOM=y +CONFIG_HISAX_AVM_A1=y +CONFIG_HISAX_AVM_A1_CS=m +CONFIG_HISAX_AVM_A1_PCMCIA=y +CONFIG_HISAX_BKM_A4T=y +# CONFIG_HISAX_DEBUG is not set +CONFIG_HISAX_DIEHLDIVA=y +CONFIG_HISAX_ELSA=y +CONFIG_HISAX_ELSA_CS=m +CONFIG_HISAX_ENTERNOW_PCI=y +CONFIG_HISAX_EURO=y +CONFIG_HISAX_FRITZPCI=y +CONFIG_HISAX_FRITZ_PCIPNP=m +CONFIG_HISAX_GAZEL=y +CONFIG_HISAX_HFC4S8S=m +CONFIG_HISAX_HFCS=y +CONFIG_HISAX_HFCUSB=m +CONFIG_HISAX_HFC_PCI=y +CONFIG_HISAX_HFC_SX=y +CONFIG_HISAX_HSTSAPHIR=y +CONFIG_HISAX_ISURF=y +CONFIG_HISAX_IX1MICROR2=y +CONFIG_HISAX_MAX_CARDS=8 +CONFIG_HISAX_MIC=y +CONFIG_HISAX_NETJET=y +CONFIG_HISAX_NETJET_U=y +CONFIG_HISAX_NI1=y +CONFIG_HISAX_NICCY=y +# CONFIG_HISAX_NO_KEYPAD is not set +# CONFIG_HISAX_NO_LLC is not set +# CONFIG_HISAX_NO_SENDCOMPLETE is not set +CONFIG_HISAX_S0BOX=y +CONFIG_HISAX_SCT_QUADRO=y +CONFIG_HISAX_SEDLBAUER=y +CONFIG_HISAX_SEDLBAUER_CS=m +CONFIG_HISAX_SPORTSTER=y +CONFIG_HISAX_ST5481=m +CONFIG_HISAX_TELEINT=y +CONFIG_HISAX_TELESPCI=y +CONFIG_HISAX_TELES_CS=m +CONFIG_HISAX_W6692=y +CONFIG_HISILICON_IRQ_MBIGEN=y +CONFIG_HISI_FEMAC=m +CONFIG_HISI_KIRIN_DW_DSI=m +CONFIG_HISI_THERMAL=m +CONFIG_HIST_TRIGGERS=y +CONFIG_HIX5HD2_GMAC=m +CONFIG_HMC_DRV=m +CONFIG_HNS=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_HOSTESS_SV11=m +CONFIG_HOTPLUG_PCI_ACPI=y +CONFIG_HOTPLUG_PCI_ACPI_IBM=m +CONFIG_HOTPLUG_PCI_COMPAQ=m +CONFIG_HOTPLUG_PCI_COMPAQ_NVRAM=y +CONFIG_HOTPLUG_PCI_CPCI=y +CONFIG_HOTPLUG_PCI_CPCI_GENERIC=m +CONFIG_HOTPLUG_PCI_CPCI_ZT5550=m +CONFIG_HOTPLUG_PCI_IBM=m +CONFIG_HOTPLUG_PCI_POWERNV=m +CONFIG_HOTPLUG_PCI_RPA=m +CONFIG_HOTPLUG_PCI_RPA_DLPAR=m +CONFIG_HOTPLUG_PCI_S390=y +CONFIG_HP03=m +CONFIG_HP100=m +CONFIG_HP206C=m +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_WIRELESS=m +CONFIG_HP_WMI=m +CONFIG_HSA_AMD=m +CONFIG_HSI_BOARDINFO=y +CONFIG_HSI_CHAR=m +CONFIG_HSR=m +CONFIG_HSU_DMA=m +CONFIG_HSU_DMA_PCI=m +CONFIG_HTC_EGPIO=y +CONFIG_HTC_I2CPLD=y +CONFIG_HTU21=m +CONFIG_HT_IRQ=y +CONFIG_HUGETLBFS=y +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=y +CONFIG_HVC_XEN=y +CONFIG_HVC_XEN_FRONTEND=y +CONFIG_HV_PERF_CTRS=y +# CONFIG_HWMON_DEBUG_CHIP is not set +CONFIG_HWMON_VID=m +CONFIG_HWPOISON_INJECT=m +CONFIG_HWSPINLOCK=m +CONFIG_HWSPINLOCK_OMAP=m +CONFIG_HWSPINLOCK_QCOM=m +CONFIG_HW_CONSOLE=y +CONFIG_HW_PERF_EVENTS=y +CONFIG_HW_RANDOM=y +CONFIG_HW_RANDOM_AMD=m +CONFIG_HW_RANDOM_BCM2835=m +CONFIG_HW_RANDOM_EXYNOS=m +CONFIG_HW_RANDOM_GEODE=m +CONFIG_HW_RANDOM_HISI=m +CONFIG_HW_RANDOM_INTEL=m +CONFIG_HW_RANDOM_IPROC_RNG200=m +CONFIG_HW_RANDOM_MESON=m +CONFIG_HW_RANDOM_MSM=m +CONFIG_HW_RANDOM_OMAP=m +CONFIG_HW_RANDOM_OMAP3_ROM=m +CONFIG_HW_RANDOM_PASEMI=m +CONFIG_HW_RANDOM_POWERNV=m +CONFIG_HW_RANDOM_PSERIES=m +CONFIG_HW_RANDOM_TPM=m +CONFIG_HW_RANDOM_VIA=m +CONFIG_HW_RANDOM_VIRTIO=m +CONFIG_HW_RANDOM_XGENE=m +CONFIG_HYPERV=m +CONFIG_HYPERVISOR_GUEST=y +CONFIG_HYPERV_BALLOON=m +CONFIG_HYPERV_KEYBOARD=m +CONFIG_HYPERV_NET=m +CONFIG_HYPERV_STORAGE=m +CONFIG_HYPERV_UTILS=m +CONFIG_HYSDN=m +CONFIG_HYSDN_CAPI=y +# CONFIG_HZ_100 is not set +# 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_ALGOPCF is not set +CONFIG_I2C_AMD756_S4882=m +CONFIG_I2C_ARB_GPIO_CHALLENGE=m +CONFIG_I2C_AXXIA=m +CONFIG_I2C_BCM2048=m +CONFIG_I2C_BCM2835=m +CONFIG_I2C_BCM_IPROC=m +CONFIG_I2C_BOARDINFO=y +# CONFIG_I2C_CADENCE is not set +CONFIG_I2C_CBUS_GPIO=m +CONFIG_I2C_CPM=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=m +CONFIG_I2C_DIOLAN_U2C=m +CONFIG_I2C_DLN2=m +CONFIG_I2C_EG20T=m +CONFIG_I2C_EMEV2=m +CONFIG_I2C_EXYNOS5=m +CONFIG_I2C_GPIO=m +CONFIG_I2C_HID=m +CONFIG_I2C_HIX5HD2=m +CONFIG_I2C_HYDRA=m +CONFIG_I2C_ISMT=m +CONFIG_I2C_KEMPLD=m +CONFIG_I2C_MESON=m +CONFIG_I2C_MPC=m +CONFIG_I2C_MT65XX=m +CONFIG_I2C_MUX_GPIO=m +CONFIG_I2C_MUX_PCA9541=m +CONFIG_I2C_MUX_PCA954x=m +CONFIG_I2C_MUX_PINCTRL=m +CONFIG_I2C_MUX_REG=m +CONFIG_I2C_MV64XXX=m +CONFIG_I2C_NFORCE2_S4985=m +CONFIG_I2C_NOMADIK=m +CONFIG_I2C_OMAP=y +CONFIG_I2C_OPAL=y +CONFIG_I2C_PARPORT=m +CONFIG_I2C_PASEMI=m +CONFIG_I2C_PCA_ISA=m +CONFIG_I2C_POWERMAC=y +# CONFIG_I2C_PXA_PCI is not set +CONFIG_I2C_QUP=m +CONFIG_I2C_RK3X=m +CONFIG_I2C_ROBOTFUZZ_OSIF=m +CONFIG_I2C_S3C2410=y +CONFIG_I2C_SCMI=m +CONFIG_I2C_SI470X=m +CONFIG_I2C_SI4713=m +CONFIG_I2C_TEGRA=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 is not set +# CONFIG_I2C_XLR is not set +CONFIG_I40E=m +CONFIG_I40EVF=m +CONFIG_I40E_DCB=y +CONFIG_I40E_FCOE=y +CONFIG_I7300_IDLE=m +CONFIG_I7300_IDLE_IOAT_CHANNEL=y +CONFIG_I82092=m +CONFIG_I82365=m +CONFIG_I8253_LOCK=y +CONFIG_I8K=m +# CONFIG_IA32_AOUT is not set +CONFIG_IA32_EMULATION=y +CONFIG_IAQCORE=m +CONFIG_IB700_WDT=m +CONFIG_IBMASR=m +CONFIG_IBMVIO=y +CONFIG_IBMVNIC=m +CONFIG_IBM_ASM=m +CONFIG_IBM_BSR=m +# CONFIG_IBM_EMAC_EMAC4 is not set +# CONFIG_IBM_EMAC_MAL_CLR_ICINTSTAT is not set +# CONFIG_IBM_EMAC_MAL_COMMON_ERR is not set +# CONFIG_IBM_EMAC_NO_FLOW_CTRL is not set +# CONFIG_IBM_EMAC_RGMII is not set +# CONFIG_IBM_EMAC_TAH is not set +# CONFIG_IBM_EMAC_ZMII is not set +CONFIG_IBM_PARTITION=y +CONFIG_IBM_RTL=m +CONFIG_ICST=y +# CONFIG_IDE is not set +CONFIG_IDEAPAD_LAPTOP=m +CONFIG_IE6XX_WDT=m +CONFIG_IEEE802154=m +CONFIG_IEEE802154_6LOWPAN=m +CONFIG_IEEE802154_ADF7242=m +CONFIG_IEEE802154_AT86RF230=m +CONFIG_IEEE802154_AT86RF230_DEBUGFS=y +CONFIG_IEEE802154_ATUSB=m +CONFIG_IEEE802154_CC2520=m +CONFIG_IEEE802154_FAKELB=m +CONFIG_IEEE802154_MRF24J40=m +CONFIG_IEEE802154_SOCKET=m +CONFIG_IFB=m +CONFIG_IGB=m +CONFIG_IGBVF=m +CONFIG_IGB_DCA=y +CONFIG_IGB_HWMON=y +CONFIG_IIO_ADIS_LIB=m +CONFIG_IIO_ADIS_LIB_BUFFER=y +CONFIG_IIO_BUFFER=y +CONFIG_IIO_BUFFER_CB=m +CONFIG_IIO_CONFIGFS=m +CONFIG_IIO_CONSUMERS_PER_TRIGGER=2 +CONFIG_IIO_HRTIMER_TRIGGER=m +CONFIG_IIO_INTERRUPT_TRIGGER=m +CONFIG_IIO_KFIFO_BUF=m +CONFIG_IIO_MS_SENSORS_I2C=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_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_IMA_APPRAISE=y +CONFIG_IMA_BLACKLIST_KEYRING=y +CONFIG_IMA_DEFAULT_HASH="sha1" +CONFIG_IMA_DEFAULT_HASH_SHA1=y +# CONFIG_IMA_DEFAULT_HASH_SHA256 is not set +# CONFIG_IMA_DEFAULT_HASH_SHA512 is not set +# CONFIG_IMA_DEFAULT_HASH_WP512 is not set +CONFIG_IMA_DEFAULT_TEMPLATE="ima-ng" +CONFIG_IMA_KEYRINGS_PERMIT_SIGNED_BY_BUILTIN_OR_SECONDARY=y +# CONFIG_IMA_LOAD_X509 is not set +CONFIG_IMA_LSM_RULES=y +CONFIG_IMA_MEASURE_PCR_IDX=10 +CONFIG_IMA_NG_TEMPLATE=y +CONFIG_IMA_READ_POLICY=y +# CONFIG_IMA_SIG_TEMPLATE is not set +# CONFIG_IMA_TEMPLATE is not set +CONFIG_IMA_TRUSTED_KEYRING=y +CONFIG_IMA_WRITE_POLICY=y +CONFIG_IMX7D_ADC=m +CONFIG_IMX_DMA=m +CONFIG_IMX_IPUV3_CORE=m +CONFIG_IMX_SDMA=m +CONFIG_IMX_THERMAL=m +CONFIG_IMX_WEIM=y +CONFIG_INA2XX_ADC=m +CONFIG_INET=y +CONFIG_INET6_AH=m +CONFIG_INET6_ESP=m +CONFIG_INET6_IPCOMP=m +CONFIG_INET6_TUNNEL=m +CONFIG_INET6_XFRM_MODE_BEET=m +CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m +CONFIG_INET6_XFRM_MODE_TRANSPORT=m +CONFIG_INET6_XFRM_MODE_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_IPCOMP=m +CONFIG_INET_SCTP_DIAG=m +CONFIG_INET_TCP_DIAG=m +CONFIG_INET_TUNNEL=m +CONFIG_INET_UDP_DIAG=m +CONFIG_INET_XFRM_MODE_BEET=m +CONFIG_INET_XFRM_MODE_TRANSPORT=m +CONFIG_INET_XFRM_MODE_TUNNEL=m +CONFIG_INET_XFRM_TUNNEL=m +CONFIG_INFINIBAND=m +CONFIG_INFINIBAND_ADDR_TRANS=y +CONFIG_INFINIBAND_ADDR_TRANS_CONFIGFS=y +CONFIG_INFINIBAND_CXGB3=m +# CONFIG_INFINIBAND_CXGB3_DEBUG is not set +CONFIG_INFINIBAND_CXGB4=m +CONFIG_INFINIBAND_HFI1=m +CONFIG_INFINIBAND_I40IW=m +CONFIG_INFINIBAND_IPOIB=m +CONFIG_INFINIBAND_IPOIB_CM=y +# CONFIG_INFINIBAND_IPOIB_DEBUG is not set +CONFIG_INFINIBAND_ISER=m +CONFIG_INFINIBAND_ISERT=m +CONFIG_INFINIBAND_MTHCA=m +# CONFIG_INFINIBAND_MTHCA_DEBUG is not set +# CONFIG_INFINIBAND_NES_DEBUG is not set +CONFIG_INFINIBAND_ON_DEMAND_PAGING=y +CONFIG_INFINIBAND_QIB_DCA=y +CONFIG_INFINIBAND_RDMAVT=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_INFTL=m +CONFIG_INITRAMFS_SOURCE="" +CONFIG_INIT_ENV_ARG_LIMIT=32 +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_88PM80X_ONKEY=m +CONFIG_INPUT_88PM860X_ONKEY=m +CONFIG_INPUT_AD714X=m +CONFIG_INPUT_AD714X_I2C=m +CONFIG_INPUT_AD714X_SPI=m +CONFIG_INPUT_ADBHID=y +CONFIG_INPUT_ADXL34X=m +CONFIG_INPUT_ADXL34X_I2C=m +CONFIG_INPUT_ADXL34X_SPI=m +CONFIG_INPUT_APANEL=m +CONFIG_INPUT_APMPOWER=m +CONFIG_INPUT_ARIZONA_HAPTICS=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_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_EVBUG=m +CONFIG_INPUT_EVDEV=y +CONFIG_INPUT_FF_MEMLESS=m +CONFIG_INPUT_GP2A=m +CONFIG_INPUT_GPIO_BEEPER=m +CONFIG_INPUT_GPIO_ROTARY_ENCODER=m +CONFIG_INPUT_GPIO_TILT_POLLED=m +CONFIG_INPUT_HISI_POWERKEY=m +CONFIG_INPUT_IDEAPAD_SLIDEBAR=m +CONFIG_INPUT_IMS_PCU=m +CONFIG_INPUT_JOYDEV=m +CONFIG_INPUT_JOYSTICK=y +CONFIG_INPUT_KEYBOARD=y +CONFIG_INPUT_KEYSPAN_REMOTE=m +CONFIG_INPUT_KXTJ9=m +# CONFIG_INPUT_KXTJ9_POLLED_MODE is not set +CONFIG_INPUT_LEDS=m +CONFIG_INPUT_MATRIXKMAP=m +CONFIG_INPUT_MAX77693_HAPTIC=m +CONFIG_INPUT_MAX8925_ONKEY=m +CONFIG_INPUT_MAX8997_HAPTIC=m +CONFIG_INPUT_MC13783_PWRBUTTON=m +CONFIG_INPUT_MISC=y +CONFIG_INPUT_MMA8450=m +CONFIG_INPUT_MOUSE=y +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_MOUSEDEV_PSAUX=y +CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 +CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 +CONFIG_INPUT_MPU3050=m +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_POLLDEV=m +CONFIG_INPUT_POWERMATE=m +CONFIG_INPUT_PWM_BEEPER=m +CONFIG_INPUT_REGULATOR_HAPTIC=m +CONFIG_INPUT_RETU_PWRBUTTON=m +CONFIG_INPUT_SOC_BUTTON_ARRAY=m +CONFIG_INPUT_SPARSEKMAP=m +CONFIG_INPUT_TABLET=y +CONFIG_INPUT_TOUCHSCREEN=y +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_WISTRON_BTNS=m +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_SIGNATURE=y +CONFIG_INTEGRITY_TRUSTED_KEYRING=y +CONFIG_INTEL_GTT=y +CONFIG_INTEL_HID_EVENT=m +CONFIG_INTEL_IDLE=y +CONFIG_INTEL_IDMA64=m +CONFIG_INTEL_IOATDMA=m +CONFIG_INTEL_IOMMU=y +# CONFIG_INTEL_IOMMU_DEFAULT_ON is not set +CONFIG_INTEL_IOMMU_FLOPPY_WA=y +CONFIG_INTEL_IOMMU_SVM=y +CONFIG_INTEL_IPS=m +CONFIG_INTEL_MEI=m +CONFIG_INTEL_MEI_ME=m +CONFIG_INTEL_MEI_TXE=m +CONFIG_INTEL_MEI_WDT=m +CONFIG_INTEL_MENLOW=m +CONFIG_INTEL_MFLD_THERMAL=m +CONFIG_INTEL_MIC_BUS=m +CONFIG_INTEL_MIC_CARD=m +CONFIG_INTEL_MIC_HOST=m +CONFIG_INTEL_MIC_X100_DMA=m +CONFIG_INTEL_MID_POWER_BUTTON=m +CONFIG_INTEL_MID_PTI=m +CONFIG_INTEL_MID_WATCHDOG=m +CONFIG_INTEL_OAKTRAIL=m +CONFIG_INTEL_PCH_THERMAL=m +CONFIG_INTEL_PMC_CORE=y +CONFIG_INTEL_PMC_IPC=m +CONFIG_INTEL_POWERCLAMP=m +CONFIG_INTEL_PUNIT_IPC=m +CONFIG_INTEL_RAPL=m +CONFIG_INTEL_RST=m +CONFIG_INTEL_SCU_IPC=y +CONFIG_INTEL_SCU_IPC_UTIL=m +CONFIG_INTEL_SCU_WATCHDOG=y +CONFIG_INTEL_SMARTCONNECT=m +CONFIG_INTEL_SOC_DTS_IOSF_CORE=m +CONFIG_INTEL_SOC_DTS_THERMAL=m +CONFIG_INTEL_SOC_PMIC=y +CONFIG_INTEL_TELEMETRY=m +CONFIG_INTEL_TH=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_TXT=y +CONFIG_INTEL_VBTN=m +CONFIG_INTEL_XWAY_PHY=m +CONFIG_INTERVAL_TREE=y +CONFIG_INV_MPU6050_I2C=m +CONFIG_INV_MPU6050_IIO=m +CONFIG_INV_MPU6050_SPI=m +CONFIG_IOMMU_API=y +# CONFIG_IOMMU_DEBUG is not set +CONFIG_IOMMU_DMA=y +CONFIG_IOMMU_HELPER=y +CONFIG_IOMMU_IOVA=y +CONFIG_IOMMU_IO_PGTABLE=y +# CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set +# CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST is not set +# CONFIG_IOMMU_STRESS is not set +CONFIG_IOMMU_SUPPORT=y +CONFIG_IOSCHED_CFQ=y +CONFIG_IOSCHED_DEADLINE=y +CONFIG_IOSCHED_NOOP=y +CONFIG_IOSF_MBI=y +CONFIG_IOSF_MBI_DEBUG=y +# CONFIG_IO_DELAY_0X80 is not set +CONFIG_IO_DELAY_0XED=y +# CONFIG_IO_DELAY_NONE is not set +CONFIG_IO_DELAY_TYPE_0X80=0 +CONFIG_IO_DELAY_TYPE_0XED=1 +CONFIG_IO_DELAY_TYPE_NONE=3 +CONFIG_IO_DELAY_TYPE_UDELAY=2 +# CONFIG_IO_DELAY_UDELAY is not set +CONFIG_IO_EVENT_IRQ=y +# CONFIG_IO_STRICT_DEVMEM is not set +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_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=m +CONFIG_IPDDP_ENCAP=y +# CONFIG_IPIC is not set +CONFIG_IPMI_DEVICE_INTERFACE=m +# CONFIG_IPMI_PANIC_EVENT is not set +CONFIG_IPMI_POWERNV=m +CONFIG_IPMI_POWEROFF=m +CONFIG_IPMI_SI=m +CONFIG_IPMI_SSIF=m +CONFIG_IPMI_WATCHDOG=m +CONFIG_IPMMU_VMSA=y +CONFIG_IPPP_FILTER=y +CONFIG_IPQ_GCC_4019=m +CONFIG_IPQ_GCC_806X=m +CONFIG_IPQ_LCC_806X=m +CONFIG_IPV6=y +CONFIG_IPV6_FOU=m +CONFIG_IPV6_FOU_TUNNEL=m +CONFIG_IPV6_GRE=m +CONFIG_IPV6_MROUTE=y +CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y +CONFIG_IPV6_MULTIPLE_TABLES=y +CONFIG_IPV6_NDISC_NODETYPE=y +CONFIG_IPV6_PIMSM_V2=y +CONFIG_IPV6_ROUTER_PREF=y +CONFIG_IPV6_ROUTE_INFO=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_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_IPX=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_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_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_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_IRCOMM=m +CONFIG_IRDA=m +CONFIG_IRDA_CACHE_LAST_LSAP=y +# CONFIG_IRDA_DEBUG is not set +CONFIG_IRDA_FAST_RR=y +CONFIG_IRDA_ULTRA=y +CONFIG_IRLAN=m +CONFIG_IRNET=m +CONFIG_IRQCHIP=y +# CONFIG_IRQSOFF_TRACER is not set +CONFIG_IRQ_CROSSBAR=y +CONFIG_IRQ_DOMAIN=y +# CONFIG_IRQ_DOMAIN_DEBUG is not set +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_IRQ_POLL=y +CONFIG_IRQ_REMAP=y +# CONFIG_IRQ_TIME_ACCOUNTING is not set +CONFIG_IRQ_WORK=y +CONFIG_IRTTY_SIR=m +CONFIG_IR_ENE=m +CONFIG_IR_FINTEK=m +CONFIG_IR_GPIO_CIR=m +CONFIG_IR_HIX5HD2=m +CONFIG_IR_IGORPLUGUSB=m +CONFIG_IR_IGUANA=m +CONFIG_IR_IMON=m +CONFIG_IR_ITE_CIR=m +CONFIG_IR_JVC_DECODER=m +CONFIG_IR_LIRC_CODEC=m +CONFIG_IR_MCEUSB=m +CONFIG_IR_MCE_KBD_DECODER=m +CONFIG_IR_MESON=m +CONFIG_IR_NEC_DECODER=m +CONFIG_IR_NUVOTON=m +CONFIG_IR_RC5_DECODER=m +CONFIG_IR_RC6_DECODER=m +CONFIG_IR_REDRAT3=m +CONFIG_IR_RX51=m +CONFIG_IR_SANYO_DECODER=m +CONFIG_IR_SHARP_DECODER=m +CONFIG_IR_SONY_DECODER=m +CONFIG_IR_STREAMZAP=m +CONFIG_IR_TTUSBIR=m +CONFIG_IR_WINBOND_CIR=m +CONFIG_IR_XMP_DECODER=m +CONFIG_ISAPNP=y +CONFIG_ISA_BUS=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_AUDIO=y +CONFIG_ISDN_CAPI=m +CONFIG_ISDN_CAPI_CAPI20=m +CONFIG_ISDN_CAPI_CAPIDRV=m +# CONFIG_ISDN_CAPI_CAPIDRV_VERBOSE is not set +CONFIG_ISDN_CAPI_MIDDLEWARE=y +CONFIG_ISDN_DIVAS=m +CONFIG_ISDN_DIVAS_BRIPCI=y +CONFIG_ISDN_DIVAS_DIVACAPI=m +CONFIG_ISDN_DIVAS_MAINT=m +CONFIG_ISDN_DIVAS_PRIPCI=y +CONFIG_ISDN_DIVAS_USERIDI=m +CONFIG_ISDN_DIVERSION=m +CONFIG_ISDN_DRV_ACT2000=m +CONFIG_ISDN_DRV_AVMB1_AVM_CS=m +CONFIG_ISDN_DRV_AVMB1_B1ISA=m +CONFIG_ISDN_DRV_AVMB1_B1PCI=m +CONFIG_ISDN_DRV_AVMB1_B1PCIV4=y +CONFIG_ISDN_DRV_AVMB1_B1PCMCIA=m +CONFIG_ISDN_DRV_AVMB1_C4=m +CONFIG_ISDN_DRV_AVMB1_T1ISA=m +CONFIG_ISDN_DRV_AVMB1_T1PCI=m +CONFIG_ISDN_DRV_GIGASET=m +CONFIG_ISDN_DRV_HISAX=m +CONFIG_ISDN_DRV_ICN=m +CONFIG_ISDN_DRV_PCBIT=m +CONFIG_ISDN_HDLC=m +CONFIG_ISDN_I4L=m +CONFIG_ISDN_MPP=y +CONFIG_ISDN_PPP=y +CONFIG_ISDN_PPP_BSDCOMP=m +CONFIG_ISDN_PPP_VJ=y +CONFIG_ISDN_TTY_FAX=y +CONFIG_ISDN_X25=y +CONFIG_ISI=m +CONFIG_ISL29125=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_IXGBE_DCA=y +CONFIG_IXGBE_DCB=y +CONFIG_IXGBE_HWMON=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_FS=m +CONFIG_JFS_POSIX_ACL=y +CONFIG_JFS_SECURITY=y +CONFIG_JOLIET=y +CONFIG_JOYSTICK_A3D=m +CONFIG_JOYSTICK_ADI=m +CONFIG_JOYSTICK_ANALOG=m +CONFIG_JOYSTICK_AS5011=m +CONFIG_JOYSTICK_COBRA=m +CONFIG_JOYSTICK_DB9=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=y +CONFIG_JOYSTICK_IFORCE_USB=y +CONFIG_JOYSTICK_INTERACT=m +CONFIG_JOYSTICK_JOYDUMP=m +CONFIG_JOYSTICK_MAGELLAN=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_KALLSYMS=y +CONFIG_KALLSYMS_BASE_RELATIVE=y +CONFIG_KARMA_PARTITION=y +# CONFIG_KASAN is not set +# CONFIG_KCOV is not set +CONFIG_KDB_CONTINUE_CATASTROPHIC=0 +CONFIG_KDB_DEFAULT_ENABLE=0x1 +CONFIG_KDB_KEYBOARD=y +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_KERNFS=y +CONFIG_KEXEC_BZIMAGE_VERIFY_SIG=y +CONFIG_KEXEC_CORE=y +CONFIG_KEXEC_FILE=y +CONFIG_KEXEC_JUMP=y +CONFIG_KEXEC_VERIFY_SIG=y +CONFIG_KEYBOARD_ADP5520=m +CONFIG_KEYBOARD_ADP5588=m +CONFIG_KEYBOARD_ADP5589=m +CONFIG_KEYBOARD_ATKBD=y +CONFIG_KEYBOARD_BCM=m +CONFIG_KEYBOARD_CAP11XX=m +CONFIG_KEYBOARD_CROS_EC=m +CONFIG_KEYBOARD_GPIO=m +CONFIG_KEYBOARD_GPIO_POLLED=m +CONFIG_KEYBOARD_IMX=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_NEWTON=m +CONFIG_KEYBOARD_NVEC=m +CONFIG_KEYBOARD_OMAP4=m +CONFIG_KEYBOARD_OPENCORES=m +CONFIG_KEYBOARD_PMIC8XXX=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_SUNKBD=m +CONFIG_KEYBOARD_TC3589X=m +CONFIG_KEYBOARD_TCA6416=m +CONFIG_KEYBOARD_TCA8418=m +CONFIG_KEYBOARD_TEGRA=m +CONFIG_KEYBOARD_TWL4030=m +CONFIG_KEYBOARD_XTKBD=m +CONFIG_KEYS=y +CONFIG_KEYS_COMPAT=y +CONFIG_KEY_DH_OPERATIONS=y +CONFIG_KGDB=y +CONFIG_KGDB_KDB=y +CONFIG_KGDB_LOW_LEVEL_TRAP=y +CONFIG_KGDB_SERIAL_CONSOLE=y +# CONFIG_KGDB_TESTS is not set +CONFIG_KINGSUN_DONGLE=m +CONFIG_KMX61=m +CONFIG_KPROBES=y +CONFIG_KPROBES_ON_FTRACE=y +# CONFIG_KPROBES_SANITY_TEST is not set +CONFIG_KPROBE_EVENT=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_KS959_DONGLE=m +CONFIG_KSDAZZLE_DONGLE=m +# CONFIG_KSI8560 is not set +CONFIG_KSM=y +CONFIG_KSZ884X_PCI=m +CONFIG_KUSER_HELPERS=y +CONFIG_KVM_AMD=m +CONFIG_KVM_ARM_HOST=y +CONFIG_KVM_ARM_VGIC_V3=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_BOOKE_HV=y +CONFIG_KVM_COMPAT=y +CONFIG_KVM_DEBUG_FS=y +CONFIG_KVM_DEVICE_ASSIGNMENT=y +CONFIG_KVM_E500MC=y +# CONFIG_KVM_EXIT_TIMING is not set +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_MPIC=y +# CONFIG_KVM_S390_UCONTROL is not set +CONFIG_KVM_VFIO=y +CONFIG_KVM_XICS=y +CONFIG_KXCJK1013=m +CONFIG_KXSD9=m +CONFIG_L2TP=m +CONFIG_L2TP_DEBUGFS=m +CONFIG_L2TP_ETH=m +CONFIG_L2TP_IP=m +CONFIG_L2TP_V3=y +CONFIG_LANCE=m +CONFIG_LANMEDIA=m +CONFIG_LAPB=m +CONFIG_LAPBETHER=m +# CONFIG_LATENCYTOP is not set +CONFIG_LATTICE_ECP3_CONFIG=m +CONFIG_LBDAF=y +CONFIG_LCD_AMS369FG06=m +CONFIG_LCD_CLASS_DEVICE=m +CONFIG_LCD_HX8357=m +CONFIG_LCD_ILI922X=m +CONFIG_LCD_ILI9320=m +CONFIG_LCD_L4F00242T03=m +CONFIG_LCD_LD9040=m +CONFIG_LCD_LMS283GF05=m +CONFIG_LCD_LMS501KF03=m +CONFIG_LCD_LTV350QV=m +CONFIG_LCD_PLATFORM=m +CONFIG_LCD_S6E63M0=m +CONFIG_LCD_TDO24M=m +CONFIG_LCD_VGG2432A4=m +CONFIG_LCS=m +# CONFIG_LDM_DEBUG is not set +CONFIG_LEDS_88PM860X=m +CONFIG_LEDS_AAT1290=m +CONFIG_LEDS_ADP5520=m +CONFIG_LEDS_ASIC3=y +CONFIG_LEDS_BCM6328=m +CONFIG_LEDS_BCM6358=m +CONFIG_LEDS_BD2802=m +CONFIG_LEDS_BLINKM=m +CONFIG_LEDS_CLASS=y +CONFIG_LEDS_CLASS_FLASH=m +CONFIG_LEDS_CLEVO_MAIL=m +CONFIG_LEDS_DA903X=m +CONFIG_LEDS_DA9052=m +CONFIG_LEDS_DAC124S085=m +CONFIG_LEDS_DELL_NETBOOKS=m +CONFIG_LEDS_GPIO=m +CONFIG_LEDS_INTEL_SS4200=m +CONFIG_LEDS_IS31FL32XX=m +CONFIG_LEDS_KTD2692=m +CONFIG_LEDS_LM3530=m +CONFIG_LEDS_LM3533=m +CONFIG_LEDS_LM355x=m +CONFIG_LEDS_LM3642=m +CONFIG_LEDS_LP3944=m +CONFIG_LEDS_LP3952=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_MAX77693=m +CONFIG_LEDS_MAX8997=m +CONFIG_LEDS_MC13783=m +CONFIG_LEDS_MENF21BMC=m +CONFIG_LEDS_NET48XX=m +CONFIG_LEDS_NS2=m +CONFIG_LEDS_OT200=m +CONFIG_LEDS_PCA9532=m +CONFIG_LEDS_PCA9532_GPIO=y +CONFIG_LEDS_PCA955X=m +CONFIG_LEDS_PCA963X=m +CONFIG_LEDS_POWERNV=m +CONFIG_LEDS_PWM=m +CONFIG_LEDS_REGULATOR=m +CONFIG_LEDS_SYSCON=y +CONFIG_LEDS_TCA6507=m +CONFIG_LEDS_TLC591XX=m +CONFIG_LEDS_TRIGGERS=y +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_ONESHOT=m +CONFIG_LEDS_TRIGGER_PANIC=y +CONFIG_LEDS_TRIGGER_TIMER=m +CONFIG_LEDS_TRIGGER_TRANSIENT=m +CONFIG_LEDS_WM831X_STATUS=m +CONFIG_LEDS_WM8350=m +CONFIG_LEDS_WRAP=m +CONFIG_LEGACY_PTYS=y +CONFIG_LEGACY_PTY_COUNT=0 +CONFIG_LEGACY_VSYSCALL_EMULATE=y +# CONFIG_LEGACY_VSYSCALL_NATIVE is not set +# CONFIG_LEGACY_VSYSCALL_NONE is not set +# CONFIG_LGUEST is not set +# CONFIG_LGUEST_GUEST is not set +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_LIQUIDIO=m +CONFIG_LIRC=m +CONFIG_LIRC_BT829=m +CONFIG_LIRC_IMON=m +CONFIG_LIRC_PARALLEL=m +CONFIG_LIRC_SASEM=m +CONFIG_LIRC_SERIAL=m +CONFIG_LIRC_SERIAL_TRANSMITTER=y +CONFIG_LIRC_SIR=m +CONFIG_LIRC_STAGING=y +CONFIG_LIRC_ZILOG=m +CONFIG_LITELINK_DONGLE=m +CONFIG_LIVEPATCH=y +# CONFIG_LKDTM is not set +CONFIG_LLC=m +CONFIG_LNET=m +CONFIG_LNET_MAX_PAYLOAD=1048576 +CONFIG_LNET_SELFTEST=m +CONFIG_LNET_XPRT_IB=m +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_SPIN_ON_OWNER=y +# CONFIG_LOCK_STAT 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_LOWMEM_CAM_NUM=3 +CONFIG_LOWMEM_SIZE=0x30000000 +CONFIG_LP8788_ADC=m +# CONFIG_LP_CONSOLE is not set +CONFIG_LRU_CACHE=m +CONFIG_LSM_MMAP_MIN_ADDR=0 +CONFIG_LS_SCFG_MSI=y +CONFIG_LTE_GDM724X=m +CONFIG_LTPC=m +CONFIG_LTR501=m +# CONFIG_LUSTRE_DEBUG_EXPENSIVE_CHECK is not set +CONFIG_LUSTRE_FS=m +CONFIG_LUSTRE_OBD_MAX_IOCTL_BUFFER=8192 +CONFIG_LUSTRE_TRANSLATE_ERRNOS=y +CONFIG_LWTUNNEL=y +CONFIG_LZ4HC_COMPRESS=m +CONFIG_LZ4_COMPRESS=m +CONFIG_LZ4_DECOMPRESS=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +# CONFIG_M486 is not set +# CONFIG_M586 is not set +# CONFIG_M586MMX is not set +# CONFIG_M586TSC is not set +CONFIG_M62332=m +CONFIG_M686=y +CONFIG_MA600_DONGLE=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_RC_MINSTREL_HT=y +CONFIG_MAC80211_RC_MINSTREL_VHT=y +CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 +CONFIG_MAC802154=m +CONFIG_MACB=m +CONFIG_MACE=m +# CONFIG_MACE_AAUI_PORT is not set +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_BERLIN_BG2=y +CONFIG_MACH_BERLIN_BG2CD=y +CONFIG_MACH_BERLIN_BG2Q=y +CONFIG_MACH_DOVE=y +CONFIG_MACH_MESON6=y +CONFIG_MACH_MESON8=y +CONFIG_MACH_MESON8B=y +CONFIG_MACH_MT2701=y +CONFIG_MACH_MT6589=y +CONFIG_MACH_MT6592=y +CONFIG_MACH_MT7623=y +CONFIG_MACH_MT8127=y +CONFIG_MACH_MT8135=y +CONFIG_MACH_MVEBU_ANY=y +CONFIG_MACH_MVEBU_V7=y +# CONFIG_MACH_NOKIA_RX51 is not set +# CONFIG_MACH_OMAP3517EVM is not set +CONFIG_MACH_OMAP3_PANDORA=y +CONFIG_MACH_OMAP_GENERIC=y +CONFIG_MACH_OMAP_LDP=y +CONFIG_MACINTOSH_DRIVERS=y +CONFIG_MACSEC=m +CONFIG_MACVLAN=m +CONFIG_MACVTAP=m +CONFIG_MAC_EMUMOUSEBTN=m +CONFIG_MAC_FLOPPY=m +CONFIG_MAG3110=m +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAILBOX_TEST=m +CONFIG_MANDATORY_FILE_LOCKING=y +CONFIG_MANTIS_CORE=m +# CONFIG_MARCH_Z10 is not set +# CONFIG_MARCH_Z10_TUNE is not set +# CONFIG_MARCH_Z13 is not set +# CONFIG_MARCH_Z13_TUNE is not set +# CONFIG_MARCH_Z196 is not set +# CONFIG_MARCH_Z196_TUNE is not set +CONFIG_MARCH_Z900=y +CONFIG_MARCH_Z900_TUNE=y +# CONFIG_MARCH_Z990 is not set +# CONFIG_MARCH_Z990_TUNE is not set +# CONFIG_MARCH_Z9_109 is not set +# CONFIG_MARCH_Z9_109_TUNE is not set +# CONFIG_MARCH_ZEC12 is not set +# CONFIG_MARCH_ZEC12_TUNE is not set +# CONFIG_MATH_EMULATION_FULL is not set +CONFIG_MATH_EMULATION_HW_UNIMPLEMENTED=y +# CONFIG_MATOM is not set +CONFIG_MAX1027=m +CONFIG_MAX1363=m +CONFIG_MAX30100=m +CONFIG_MAX44000=m +CONFIG_MAX517=m +CONFIG_MAX5487=m +CONFIG_MAX5821=m +CONFIG_MAX77620_WATCHDOG=m +CONFIG_MAX8925_POWER=m +# CONFIG_MAXSMP is not set +CONFIG_MAX_RAW_DEVS=256 +CONFIG_MAY_USE_DEVLINK=m +CONFIG_MCB_PCI=m +CONFIG_MCE_AMD_INJ=m +# CONFIG_MCORE2 is not set +CONFIG_MCP2120_DONGLE=m +CONFIG_MCP320X=m +CONFIG_MCP3422=m +CONFIG_MCP4131=m +CONFIG_MCP4531=m +CONFIG_MCP4725=m +CONFIG_MCP4922=m +CONFIG_MCPM=y +CONFIG_MCPM_QUAD_CLUSTER=y +# CONFIG_MCRUSOE is not set +CONFIG_MCS_FIR=m +# CONFIG_MCYRIXIII is not set +CONFIG_MD=y +CONFIG_MDA_CONSOLE=m +CONFIG_MDIO=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_MMIOREG=m +CONFIG_MDIO_CAVIUM=m +CONFIG_MDIO_GPIO=m +CONFIG_MDIO_HISI_FEMAC=m +CONFIG_MDIO_XGENE=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_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=y +# CONFIG_MEDIA_CEC_DEBUG is not set +CONFIG_MEDIA_CEC_EDID=y +CONFIG_MEDIA_COMMON_OPTIONS=y +CONFIG_MEDIA_CONTROLLER=y +CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y +CONFIG_MEDIA_PCI_SUPPORT=y +CONFIG_MEDIA_RADIO_SUPPORT=y +CONFIG_MEDIA_RC_SUPPORT=y +CONFIG_MEDIA_SDR_SUPPORT=y +CONFIG_MEDIA_SUBDRV_AUTOSELECT=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_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_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_MEFFICEON is not set +CONFIG_MEGARAID_MAILBOX=m +CONFIG_MEGARAID_MM=m +# CONFIG_MELAN is not set +CONFIG_MEMBARRIER=y +CONFIG_MEMCG=y +CONFIG_MEMCG_SWAP=y +# CONFIG_MEMCG_SWAP_ENABLED is not set +CONFIG_MEMORY_BALLOON=y +CONFIG_MEMORY_FAILURE=y +CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE=y +CONFIG_MEMORY_HOTPLUG_SPARSE=y +CONFIG_MEMORY_HOTREMOVE=y +CONFIG_MEMORY_ISOLATION=y +CONFIG_MEMORY_NOTIFIER_ERROR_INJECT=m +# 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_MENF21BMC_WATCHDOG=m +CONFIG_MEN_A21_WDT=m +CONFIG_MEN_Z188_ADC=m +CONFIG_MESON6_TIMER=y +CONFIG_MESON_GXBB_WATCHDOG=m +CONFIG_MESON_WATCHDOG=m +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +CONFIG_MFD_88PM860X=y +CONFIG_MFD_AAT2870_CORE=y +CONFIG_MFD_ACT8945A=m +CONFIG_MFD_ARIZONA=y +CONFIG_MFD_ARIZONA_SPI=m +CONFIG_MFD_AS3711=y +CONFIG_MFD_AS3722=y +CONFIG_MFD_ASIC3=y +CONFIG_MFD_ATMEL_FLEXCOM=m +CONFIG_MFD_ATMEL_HLCDC=m +CONFIG_MFD_AXP20X=m +CONFIG_MFD_AXP20X_I2C=m +CONFIG_MFD_CROS_EC_I2C=m +CONFIG_MFD_CROS_EC_SPI=m +CONFIG_MFD_CS47L24=y +CONFIG_MFD_CS5535=m +CONFIG_MFD_DA9052_I2C=y +CONFIG_MFD_DA9052_SPI=y +CONFIG_MFD_DA9055=y +CONFIG_MFD_DLN2=m +CONFIG_MFD_HI6421_PMIC=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_MSIC=y +CONFIG_MFD_INTEL_QUARK_I2C_GPIO=m +CONFIG_MFD_LP8788=y +CONFIG_MFD_MAX77620=y +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_NVEC=m +CONFIG_MFD_OMAP_USB_HOST=y +CONFIG_MFD_PALMAS=y +CONFIG_MFD_PM8921_CORE=m +CONFIG_MFD_PM8XXX=m +CONFIG_MFD_QCOM_RPM=m +CONFIG_MFD_RC5T583=y +CONFIG_MFD_RK808=m +CONFIG_MFD_RN5T618=m +CONFIG_MFD_RTSX_USB=m +CONFIG_MFD_SEC_CORE=y +CONFIG_MFD_SM501_GPIO=y +CONFIG_MFD_SMSC=y +CONFIG_MFD_SPMI_PMIC=m +CONFIG_MFD_STMPE=y +CONFIG_MFD_T7L66XB=y +CONFIG_MFD_TC3589X=y +CONFIG_MFD_TC6387XB=y +CONFIG_MFD_TC6393XB=y +CONFIG_MFD_TIMBERDALE=m +CONFIG_MFD_TPS65086=m +CONFIG_MFD_TPS65090=y +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_MGEODEGX1 is not set +# CONFIG_MGEODE_LX is not set +CONFIG_MG_DISK=m +CONFIG_MG_DISK_RES=0 +CONFIG_MICREL_KS8995MA=m +CONFIG_MICROCODE=y +CONFIG_MICROCODE_AMD=y +CONFIG_MICROCODE_INTEL=y +CONFIG_MICROCODE_OLD_INTERFACE=y +CONFIG_MIC_COSM=m +CONFIG_MIGHT_HAVE_CACHE_L2X0=y +CONFIG_MIGHT_HAVE_PCI=y +CONFIG_MIGRATION=y +CONFIG_MINIX_FS=m +CONFIG_MINIX_FS_NATIVE_ENDIAN=y +CONFIG_MISC_FILESYSTEMS=y +CONFIG_MISDN=m +CONFIG_MISDN_AVMFRITZ=m +CONFIG_MISDN_DSP=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_MIXCOMWD=m +# CONFIG_MK6 is not set +# CONFIG_MK7 is not set +# CONFIG_MK8 is not set +CONFIG_MKISS=m +CONFIG_MLX4_CORE=m +CONFIG_MLX4_DEBUG=y +CONFIG_MLX4_EN=m +CONFIG_MLX4_EN_DCB=y +CONFIG_MLX4_INFINIBAND=m +CONFIG_MLX5_CORE=m +CONFIG_MLX5_CORE_EN=y +CONFIG_MLX5_CORE_EN_DCB=y +CONFIG_MLX5_INFINIBAND=m +CONFIG_MLX90614=m +CONFIG_MLXSW_CORE=m +CONFIG_MLXSW_CORE_HWMON=y +CONFIG_MLXSW_PCI=m +CONFIG_MLXSW_SPECTRUM=m +CONFIG_MLXSW_SPECTRUM_DCB=y +CONFIG_MLXSW_SWITCHX2=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_MMC_ARMMMCI=y +CONFIG_MMC_BLOCK_BOUNCE=y +CONFIG_MMC_BLOCK_MINORS=8 +CONFIG_MMC_CB710=m +# CONFIG_MMC_DEBUG is not set +CONFIG_MMC_DW=m +CONFIG_MMC_DW_EXYNOS=m +CONFIG_MMC_DW_K3=m +CONFIG_MMC_DW_PCI=m +CONFIG_MMC_DW_PLTFM=m +CONFIG_MMC_DW_ROCKCHIP=m +CONFIG_MMC_MTK=m +CONFIG_MMC_MVSDIO=m +CONFIG_MMC_MXC=m +CONFIG_MMC_OMAP=m +CONFIG_MMC_OMAP_HS=y +CONFIG_MMC_QCOM_DML=m +CONFIG_MMC_REALTEK_PCI=m +CONFIG_MMC_REALTEK_USB=m +CONFIG_MMC_RICOH_MMC=y +CONFIG_MMC_SDHCI_ACPI=m +CONFIG_MMC_SDHCI_BIG_ENDIAN_32BIT_BYTE_SWAPPER=y +CONFIG_MMC_SDHCI_DOVE=m +CONFIG_MMC_SDHCI_ESDHC_IMX=y +CONFIG_MMC_SDHCI_F_SDH30=m +CONFIG_MMC_SDHCI_IO_ACCESSORS=y +CONFIG_MMC_SDHCI_IPROC=m +CONFIG_MMC_SDHCI_MSM=m +CONFIG_MMC_SDHCI_OF_ARASAN=m +CONFIG_MMC_SDHCI_OF_AT91=m +CONFIG_MMC_SDHCI_OF_HLWD=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_TEGRA=m +CONFIG_MMC_SDRICOH_CS=m +CONFIG_MMC_SPI=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_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_MMU=y +CONFIG_MMU_NOTIFIER=y +CONFIG_MODIFY_LDT_SYSCALL=y +CONFIG_MODULES=y +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_MODULES_USE_ELF_REL=y +CONFIG_MODULES_USE_ELF_RELA=y +# CONFIG_MODULE_COMPRESS is not set +CONFIG_MODULE_SIG=y +CONFIG_MODULE_SIG_ALL=y +# CONFIG_MODULE_SIG_FORCE is not set +CONFIG_MODULE_SIG_HASH="sha512" +CONFIG_MODULE_SIG_KEY="certs/signing_key.pem" +# 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_SIG_UEFI=y +CONFIG_MODULE_UNLOAD=y +CONFIG_MODVERSIONS=y +CONFIG_MONREADER=m +CONFIG_MONWRITER=m +CONFIG_MOST=m +CONFIG_MOSTCORE=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_INPORT is not set +CONFIG_MOUSE_LOGIBM=m +CONFIG_MOUSE_PC110PAD=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_FOCALTECH=y +CONFIG_MOUSE_PS2_LIFEBOOK=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SENTELIC=y +CONFIG_MOUSE_PS2_SYNAPTICS=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_MPC8536_DS is not set +# CONFIG_MPC8540_ADS is not set +# CONFIG_MPC8560_ADS is not set +# CONFIG_MPC85xx_CDS is not set +# CONFIG_MPC85xx_DS is not set +# CONFIG_MPC85xx_MDS is not set +# CONFIG_MPC85xx_RDB is not set +# CONFIG_MPENTIUM4 is not set +# CONFIG_MPENTIUMII is not set +# CONFIG_MPENTIUMIII is not set +# CONFIG_MPENTIUMM is not set +CONFIG_MPIC=y +CONFIG_MPIC_BROKEN_REGREAD=y +# CONFIG_MPIC_TIMER is not set +# CONFIG_MPIC_WEIRD 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_MRP=m +CONFIG_MS5611=m +CONFIG_MS5611_I2C=m +CONFIG_MS5611_SPI=m +CONFIG_MS5637=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_8960=m +CONFIG_MSM_GCC_8974=m +CONFIG_MSM_GCC_8996=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_8996=m +CONFIG_MSPRO_BLOCK=m +CONFIG_MS_BLOCK=m +CONFIG_MT7601U=m +CONFIG_MTDRAM_ERASE_SIZE=128 +CONFIG_MTDRAM_TOTAL_SIZE=4096 +CONFIG_MTD_ABSENT=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_I4 is not set +# CONFIG_MTD_CFI_I8 is not set +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=m +CONFIG_MTD_ESB2ROM=m +CONFIG_MTD_GEN_PROBE=m +CONFIG_MTD_GPIO_ADDR=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_LATCH_ADDR=m +CONFIG_MTD_LPDDR=m +CONFIG_MTD_LPDDR2_NVM=m +CONFIG_MTD_M25P80=m +CONFIG_MTD_MAP_BANK_WIDTH_1=y +# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set +CONFIG_MTD_MAP_BANK_WIDTH_2=y +# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set +CONFIG_MTD_MAP_BANK_WIDTH_4=y +# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set +CONFIG_MTD_MT81xx_NOR=m +CONFIG_MTD_MTDRAM=m +CONFIG_MTD_NAND_CAFE=m +CONFIG_MTD_NAND_CS553X=m +CONFIG_MTD_NAND_DENALI=m +CONFIG_MTD_NAND_DENALI_DT=m +CONFIG_MTD_NAND_DENALI_PCI=m +CONFIG_MTD_NAND_DENALI_SCRATCH_REG_ADDR=0xFF108018 +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_DOCG4=m +CONFIG_MTD_NAND_ECC_BCH=y +# CONFIG_MTD_NAND_ECC_SMC is not set +CONFIG_MTD_NAND_FSL_ELBC=m +CONFIG_MTD_NAND_FSL_UPM=m +CONFIG_MTD_NAND_GPIO=m +CONFIG_MTD_NAND_GPMI_NAND=m +CONFIG_MTD_NAND_HISI504=m +CONFIG_MTD_NAND_MTK=m +CONFIG_MTD_NAND_MXC=m +CONFIG_MTD_NAND_NANDSIM=m +CONFIG_MTD_NAND_OMAP2=y +CONFIG_MTD_NAND_OMAP_BCH=y +CONFIG_MTD_NAND_ORION=m +CONFIG_MTD_NAND_PASEMI=m +CONFIG_MTD_NAND_PLATFORM=m +CONFIG_MTD_NAND_PXA3xx=m +CONFIG_MTD_NAND_QCOM=m +CONFIG_MTD_NAND_RICOH=m +CONFIG_MTD_NAND_TMIO=m +# CONFIG_MTD_NAND_VF610_NFC is not set +CONFIG_MTD_NETtel=m +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_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_OF=m +CONFIG_MTD_PHYSMAP_OF_VERSATILE=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_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_SCx200_DOCFLASH=m +CONFIG_MTD_SLRAM=m +CONFIG_MTD_SM_COMMON=m +CONFIG_MTD_SPINAND_MT29F=m +CONFIG_MTD_SPINAND_ONDIEECC=y +CONFIG_MTD_SPI_NOR=m +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_EFUSE is not set +CONFIG_MTK_INFRACFG=y +# CONFIG_MTK_IOMMU is not set +# CONFIG_MTK_IOMMU_V1 is not set +CONFIG_MTK_PMIC_WRAP=m +CONFIG_MTK_SCPSYS=y +CONFIG_MTK_SMI=y +CONFIG_MTK_THERMAL=m +CONFIG_MTK_TIMER=y +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=1 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_MULTIUSER=y +CONFIG_MULTI_IRQ_HANDLER=y +CONFIG_MUSB_PIO_ONLY=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +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_MBUS=y +# CONFIG_MVIAC3_2 is not set +# CONFIG_MVIAC7 is not set +CONFIG_MVMDIO=m +# CONFIG_MVME2500 is not set +CONFIG_MVNETA=m +# CONFIG_MVNETA_BM is not set +# CONFIG_MVNETA_BM_ENABLE is not set +CONFIG_MVPP2=m +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_MWINCHIP3D is not set +# CONFIG_MWINCHIPC6 is not set +CONFIG_MWL8K=m +CONFIG_MX3_IPU=y +CONFIG_MX3_IPU_IRQS=4 +CONFIG_MXC4005=m +CONFIG_MXC6255=m +CONFIG_MXC_TZIC=y +CONFIG_MXM_WMI=m +CONFIG_MXS_DMA=y +CONFIG_MYRI10GE=m +CONFIG_MYRI10GE_DCA=y +CONFIG_N2=m +CONFIG_NAMESPACES=y +CONFIG_NATSEMI=m +CONFIG_NAU7802=m +CONFIG_NBPFAXI_DMA=m +CONFIG_NCPFS_EXTRAS=y +CONFIG_NCPFS_IOCTL_LOCKING=y +CONFIG_NCPFS_NFS_NS=y +CONFIG_NCPFS_NLS=y +CONFIG_NCPFS_OS2_NS=y +CONFIG_NCPFS_PACKET_SIGNING=y +# CONFIG_NCPFS_SMALLDOS is not set +CONFIG_NCPFS_STRONG=y +CONFIG_NCP_FS=m +CONFIG_ND_BLK=m +CONFIG_ND_BTT=m +CONFIG_ND_CLAIM=y +CONFIG_ND_PFN=m +CONFIG_NE2000=m +CONFIG_NE2K_PCI=m +CONFIG_NEED_MULTIPLE_NODES=y +CONFIG_NEED_NODE_MEMMAP_SIZE=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEON=y +CONFIG_NET=y +CONFIG_NET5501=y +CONFIG_NETCONSOLE=m +CONFIG_NETCONSOLE_DYNAMIC=y +CONFIG_NETDEVICES=y +CONFIG_NETFILTER=y +CONFIG_NETFILTER_ADVANCED=y +# CONFIG_NETFILTER_DEBUG is not set +CONFIG_NETFILTER_INGRESS=y +CONFIG_NETFILTER_NETLINK=m +CONFIG_NETFILTER_NETLINK_ACCT=m +CONFIG_NETFILTER_NETLINK_GLUE_CT=y +CONFIG_NETFILTER_NETLINK_LOG=m +CONFIG_NETFILTER_NETLINK_QUEUE=m +CONFIG_NETFILTER_SYNPROXY=m +CONFIG_NETFILTER_XTABLES=m +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_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_NETIUCV=m +CONFIG_NETLABEL=y +CONFIG_NETLINK_DIAG=m +CONFIG_NETPOLL=y +CONFIG_NETROM=m +CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +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_ACT_BPF=m +CONFIG_NET_ACT_CONNMARK=m +CONFIG_NET_ACT_CSUM=m +CONFIG_NET_ACT_GACT=m +CONFIG_NET_ACT_IPT=m +CONFIG_NET_ACT_MIRRED=m +CONFIG_NET_ACT_NAT=m +CONFIG_NET_ACT_PEDIT=m +CONFIG_NET_ACT_POLICE=m +CONFIG_NET_ACT_SIMP=m +CONFIG_NET_ACT_SKBEDIT=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_DCCPPROBE=m +CONFIG_NET_DEVLINK=m +CONFIG_NET_DROP_MONITOR=m +CONFIG_NET_DSA=m +CONFIG_NET_DSA_BCM_SF2=m +CONFIG_NET_DSA_HWMON=y +CONFIG_NET_DSA_MV88E6060=m +CONFIG_NET_DSA_MV88E6XXX=m +CONFIG_NET_DSA_TAG_BRCM=y +CONFIG_NET_DSA_TAG_EDSA=y +CONFIG_NET_DSA_TAG_TRAILER=y +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_META=m +CONFIG_NET_EMATCH_NBYTE=m +CONFIG_NET_EMATCH_STACK=32 +CONFIG_NET_EMATCH_TEXT=m +CONFIG_NET_EMATCH_U32=m +CONFIG_NET_FC=y +CONFIG_NET_FLOW_LIMIT=y +CONFIG_NET_FOU=m +CONFIG_NET_FOU_IP_TUNNELS=y +CONFIG_NET_IFE_SKBMARK=m +CONFIG_NET_IFE_SKBPRIO=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_L3_MASTER_DEV=y +CONFIG_NET_NCSI=y +CONFIG_NET_NS=y +CONFIG_NET_PKTGEN=m +CONFIG_NET_POLL_CONTROLLER=y +CONFIG_NET_PTP_CLASSIFY=y +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_NET_SB1000=m +CONFIG_NET_SCHED=y +CONFIG_NET_SCH_ATM=m +CONFIG_NET_SCH_CBQ=m +CONFIG_NET_SCH_CHOKE=m +CONFIG_NET_SCH_CODEL=m +CONFIG_NET_SCH_DRR=m +CONFIG_NET_SCH_DSMARK=m +CONFIG_NET_SCH_FIFO=y +CONFIG_NET_SCH_FQ=m +CONFIG_NET_SCH_FQ_CODEL=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_TBF=m +CONFIG_NET_SCH_TEQL=m +CONFIG_NET_SCTPPROBE=m +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_AMAZON=y +CONFIG_NET_VENDOR_APPLE=y +CONFIG_NET_VENDOR_AURORA=y +CONFIG_NET_VENDOR_CIRRUS=y +CONFIG_NET_VENDOR_FARADAY=y +CONFIG_NET_VENDOR_FUJITSU=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_MICROCHIP=y +CONFIG_NET_VENDOR_NETRONOME=y +CONFIG_NET_VENDOR_PASEMI=y +CONFIG_NET_VENDOR_TOSHIBA=y +CONFIG_NET_VENDOR_XILINX=y +CONFIG_NET_VENDOR_XIRCOM=y +CONFIG_NET_VRF=m +CONFIG_NET_XGENE=m +CONFIG_NFC=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_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_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_WILINK=m +CONFIG_NFP_NETVF=m +# CONFIG_NFP_NET_DEBUG is not set +CONFIG_NFSD=m +CONFIG_NFSD_BLOCKLAYOUT=y +# CONFIG_NFSD_FAULT_INJECTION is not set +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_SECURITY_LABEL=y +CONFIG_NFS_ACL_SUPPORT=m +CONFIG_NFS_COMMON=y +CONFIG_NFS_DEBUG=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_2=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_CHAIN_NAT_IPV4=m +CONFIG_NFT_CHAIN_NAT_IPV6=m +CONFIG_NFT_CHAIN_ROUTE_IPV4=m +CONFIG_NFT_CHAIN_ROUTE_IPV6=m +CONFIG_NFT_COMPAT=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_EXTHDR=m +CONFIG_NFT_FWD_NETDEV=m +CONFIG_NFT_HASH=m +CONFIG_NFT_LIMIT=m +CONFIG_NFT_LOG=m +CONFIG_NFT_MASQ=m +CONFIG_NFT_MASQ_IPV4=m +CONFIG_NFT_MASQ_IPV6=m +CONFIG_NFT_META=m +CONFIG_NFT_NAT=m +CONFIG_NFT_QUEUE=m +CONFIG_NFT_RBTREE=m +CONFIG_NFT_REDIR=m +CONFIG_NFT_REDIR_IPV4=m +CONFIG_NFT_REDIR_IPV6=m +CONFIG_NFT_REJECT=m +CONFIG_NFT_REJECT_INET=m +CONFIG_NFT_REJECT_IPV4=m +CONFIG_NFT_REJECT_IPV6=m +CONFIG_NF_CONNTRACK=m +CONFIG_NF_CONNTRACK_AMANDA=m +CONFIG_NF_CONNTRACK_BROADCAST=m +CONFIG_NF_CONNTRACK_EVENTS=y +CONFIG_NF_CONNTRACK_FTP=m +CONFIG_NF_CONNTRACK_H323=m +CONFIG_NF_CONNTRACK_IPV4=m +CONFIG_NF_CONNTRACK_IPV6=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_PROC_COMPAT=y +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=m +CONFIG_NF_CT_PROTO_GRE=m +CONFIG_NF_CT_PROTO_SCTP=m +CONFIG_NF_CT_PROTO_UDPLITE=m +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_LOG_ARP=m +CONFIG_NF_LOG_BRIDGE=m +CONFIG_NF_LOG_COMMON=m +CONFIG_NF_LOG_IPV4=m +CONFIG_NF_LOG_IPV6=m +CONFIG_NF_NAT=m +CONFIG_NF_NAT_AMANDA=m +CONFIG_NF_NAT_FTP=m +CONFIG_NF_NAT_H323=m +CONFIG_NF_NAT_IPV4=m +CONFIG_NF_NAT_IPV6=m +CONFIG_NF_NAT_IRC=m +CONFIG_NF_NAT_MASQUERADE_IPV4=m +CONFIG_NF_NAT_MASQUERADE_IPV6=m +CONFIG_NF_NAT_NEEDED=y +CONFIG_NF_NAT_PPTP=m +CONFIG_NF_NAT_PROTO_DCCP=m +CONFIG_NF_NAT_PROTO_GRE=m +CONFIG_NF_NAT_PROTO_SCTP=m +CONFIG_NF_NAT_PROTO_UDPLITE=m +CONFIG_NF_NAT_REDIRECT=m +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_TABLES=m +CONFIG_NF_TABLES_ARP=m +CONFIG_NF_TABLES_BRIDGE=m +CONFIG_NF_TABLES_INET=m +CONFIG_NF_TABLES_IPV4=m +CONFIG_NF_TABLES_IPV6=m +CONFIG_NF_TABLES_NETDEV=m +CONFIG_NI65=m +CONFIG_NI903X_WDT=m +CONFIG_NILFS2_FS=m +CONFIG_NIU=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=y +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_LOG_BUF_SHIFT=13 +CONFIG_NODES_SPAN_OTHER_NODES=y +# CONFIG_NOHIGHMEM is not set +CONFIG_NOKIA_MODEM=m +CONFIG_NOP_TRACER=y +CONFIG_NORTEL_HERMES=m +CONFIG_NOTIFIER_ERROR_INJECTION=m +CONFIG_NOUVEAU_DEBUG=5 +CONFIG_NOUVEAU_DEBUG_DEFAULT=3 +CONFIG_NOUVEAU_PLATFORM_DRIVER=y +CONFIG_NO_BOOTMEM=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_NO_HZ_FULL is not set +CONFIG_NO_HZ_IDLE=y +CONFIG_NO_IOPORT_MAP=y +CONFIG_NR_IRQS=512 +CONFIG_NS83820=m +CONFIG_NSC_FIR=m +CONFIG_NSC_GPIO=m +# CONFIG_NTB_AMD is not set +CONFIG_NTB_INTEL=m +CONFIG_NTB_NETDEV=m +CONFIG_NTB_PERF=m +CONFIG_NTB_PINGPONG=m +CONFIG_NTB_TOOL=m +CONFIG_NTB_TRANSPORT=m +# CONFIG_NTFS_DEBUG is not set +CONFIG_NTFS_FS=m +# CONFIG_NTFS_RW is not set +# CONFIG_NTP_PPS is not set +CONFIG_NUMA_BALANCING=y +CONFIG_NVDIMM_DAX=y +CONFIG_NVDIMM_PFN=y +CONFIG_NVEC_PAZ00=m +CONFIG_NVEC_POWER=m +CONFIG_NVM=y +CONFIG_NVMEM_IMX_OCOTP=m +# CONFIG_NVMEM_VF610_OCOTP is not set +CONFIG_NVME_CORE=m +CONFIG_NVME_FABRICS=m +CONFIG_NVME_RDMA=m +CONFIG_NVME_TARGET=m +CONFIG_NVME_TARGET_LOOP=m +CONFIG_NVME_TARGET_RDMA=m +CONFIG_NVME_VENDOR_EXT_GOOGLE=y +# CONFIG_NVM_DEBUG is not set +CONFIG_NVM_GENNVM=m +CONFIG_NVM_RRPC=m +CONFIG_NV_TCO=m +CONFIG_N_HDLC=m +# CONFIG_OABI_COMPAT is not set +# 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_OF_ADDRESS=y +CONFIG_OF_ADDRESS_PCI=y +CONFIG_OF_DYNAMIC=y +CONFIG_OF_EARLY_FLATTREE=y +CONFIG_OF_FLATTREE=y +CONFIG_OF_GPIO=y +CONFIG_OF_IOMMU=y +CONFIG_OF_IRQ=y +CONFIG_OF_MDIO=y +CONFIG_OF_MTD=y +CONFIG_OF_NET=y +CONFIG_OF_NUMA=y +CONFIG_OF_OVERLAY=y +CONFIG_OF_PCI=y +CONFIG_OF_PCI_IRQ=y +# 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_BELKIN_DONGLE=m +CONFIG_OLD_MCOUNT=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_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_MUX=y +# CONFIG_OMAP_MUX_DEBUG is not set +CONFIG_OMAP_MUX_WARNINGS=y +CONFIG_OMAP_OCP2SCP=m +CONFIG_OMAP_PACKAGE_CBB=y +CONFIG_OMAP_PM_NOOP=y +CONFIG_OMAP_REMOTEPROC=m +CONFIG_OMAP_RESET_CLOCKS=y +CONFIG_OMAP_SSI=m +CONFIG_OMAP_USB2=m +CONFIG_OMAP_WATCHDOG=m +CONFIG_OMFS_FS=m +CONFIG_OPAL_PRD=m +CONFIG_OPENVSWITCH=m +CONFIG_OPENVSWITCH_GENEVE=m +CONFIG_OPENVSWITCH_GRE=m +CONFIG_OPENVSWITCH_VXLAN=m +CONFIG_OPROFILE=m +# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set +CONFIG_OPROFILE_NMI_TIMER=y +CONFIG_OPT3001=m +CONFIG_OPTIMIZE_INLINING=y +CONFIG_OPTPROBES=y +CONFIG_ORE=m +CONFIG_ORINOCO_USB=m +CONFIG_ORION_IRQCHIP=y +CONFIG_ORION_TIMER=y +CONFIG_ORION_WATCHDOG=m +CONFIG_OUTER_CACHE=y +CONFIG_OUTER_CACHE_SYNC=y +CONFIG_OVERLAY_FS=m +# CONFIG_P1010_RDB is not set +# CONFIG_P1022_DS is not set +# CONFIG_P1022_RDK is not set +CONFIG_P1023_RDB=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_OWNER is not set +# CONFIG_PAGE_POISONING is not set +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_PANIC_TIMEOUT=0 +CONFIG_PANTHERLORD_FF=y +CONFIG_PARAVIRT_CLOCK=y +# CONFIG_PARAVIRT_DEBUG is not set +CONFIG_PARAVIRT_SPINLOCKS=y +# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set +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_PARPORT_1284=y +CONFIG_PARPORT_AX88796=m +# CONFIG_PARPORT_GSC is not set +CONFIG_PARPORT_NOT_PC=y +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_PASEMI_MAC is not set +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_CS5520=m +CONFIG_PATA_CS5530=m +CONFIG_PATA_CS5535=m +CONFIG_PATA_CS5536=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_ISAPNP=m +CONFIG_PATA_IT8213=m +CONFIG_PATA_IT821X=m +CONFIG_PATA_JMICRON=m +CONFIG_PATA_LEGACY=m +CONFIG_PATA_MACIO=y +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_QDI=m +CONFIG_PATA_RADISYS=m +CONFIG_PATA_RDC=m +CONFIG_PATA_RZ1000=m +CONFIG_PATA_SC1200=m +CONFIG_PATA_SCH=m +CONFIG_PATA_SERVERWORKS=m +CONFIG_PATA_SIL680=m +CONFIG_PATA_TOSHIBA=m +CONFIG_PATA_TRIFLEX=m +CONFIG_PATA_VIA=m +CONFIG_PATA_WINBOND=m +CONFIG_PATA_WINBOND_VLB=m +CONFIG_PC300TOO=m +CONFIG_PC8736x_GPIO=m +CONFIG_PC87413_WDT=m +CONFIG_PCC=y +CONFIG_PCCARD_NONSTATIC=y +CONFIG_PCF50633_ADC=m +CONFIG_PCF50633_GPIO=m +CONFIG_PCH_CAN=m +CONFIG_PCH_DMA=m +CONFIG_PCH_GBE=m +CONFIG_PCH_PHUB=m +CONFIG_PCI=y +CONFIG_PCI200SYN=m +CONFIG_PCIEAER=y +# CONFIG_PCIEAER_INJECT is not set +CONFIG_PCIEASPM=y +CONFIG_PCIEASPM_DEBUG=y +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_PERFORMANCE is not set +# CONFIG_PCIEASPM_POWERSAVE is not set +CONFIG_PCIEPORTBUS=y +# CONFIG_PCIE_ALTERA is not set +CONFIG_PCIE_ARMADA_8K=y +CONFIG_PCIE_DPC=y +CONFIG_PCIE_DW=y +CONFIG_PCIE_DW_PLAT=y +# CONFIG_PCIE_ECRC is not set +CONFIG_PCIE_IPROC=m +CONFIG_PCIE_IPROC_MSI=y +CONFIG_PCIE_IPROC_PLATFORM=m +CONFIG_PCIE_PME=y +CONFIG_PCIE_QCOM=y +CONFIG_PCIE_RCAR=y +CONFIG_PCIE_XILINX_NWL=y +CONFIG_PCI_ATMEL=m +CONFIG_PCI_ATS=y +CONFIG_PCI_BIOS=y +CONFIG_PCI_BUS_ADDR_T_64BIT=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_ECAM=y +CONFIG_PCI_EXYNOS=y +CONFIG_PCI_GOANY=y +# CONFIG_PCI_GOBIOS is not set +# CONFIG_PCI_GODIRECT is not set +# CONFIG_PCI_GOMMCONFIG is not set +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_IMX6=y +CONFIG_PCI_IOV=y +CONFIG_PCI_LABEL=y +# CONFIG_PCI_LAYERSCAPE is not set +CONFIG_PCI_MMCONFIG=y +CONFIG_PCI_MSI=y +CONFIG_PCI_MVEBU=y +CONFIG_PCI_NR_FUNCTIONS=64 +CONFIG_PCI_RCAR_GEN2=y +CONFIG_PCI_REALLOC_ENABLE_AUTO=y +CONFIG_PCI_STUB=m +CONFIG_PCI_SYSCALL=y +CONFIG_PCI_TEGRA=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_NINJA_SCSI=m +CONFIG_PCMCIA_NMCLAN=m +CONFIG_PCMCIA_PCNET=m +CONFIG_PCMCIA_PROBE=y +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_PCSPKR_PLATFORM=y +CONFIG_PCWATCHDOG=m +CONFIG_PD6729=m +CONFIG_PDA_POWER=m +CONFIG_PDC_ADMA=m +CONFIG_PERF_EVENTS=y +# CONFIG_PERF_EVENTS_AMD_POWER is not set +CONFIG_PERF_EVENTS_INTEL_CSTATE=m +CONFIG_PERF_EVENTS_INTEL_RAPL=m +CONFIG_PERF_EVENTS_INTEL_UNCORE=y +CONFIG_PERF_USE_VMALLOC=y +CONFIG_PFAULT=y +CONFIG_PGSTE=y +CONFIG_PHONET=m +CONFIG_PHYS_64BIT=y +CONFIG_PHY_BCM_NS_USB2=m +CONFIG_PHY_BERLIN_SATA=m +CONFIG_PHY_BERLIN_USB=m +CONFIG_PHY_BRCM_SATA=y +CONFIG_PHY_DM816X_USB=m +# CONFIG_PHY_EXYNOS4210_USB2 is not set +# CONFIG_PHY_EXYNOS4X12_USB2 is not set +CONFIG_PHY_EXYNOS5250_SATA=y +CONFIG_PHY_EXYNOS5_USBDRD=m +CONFIG_PHY_EXYNOS_DP_VIDEO=y +CONFIG_PHY_EXYNOS_MIPI_VIDEO=y +CONFIG_PHY_HI6220_USB=m +CONFIG_PHY_HIX5HD2_SATA=m +CONFIG_PHY_MT65XX_USB3=m +CONFIG_PHY_MVEBU_SATA=y +CONFIG_PHY_NS2_PCIE=y +CONFIG_PHY_QCOM_APQ8064_SATA=m +CONFIG_PHY_QCOM_IPQ806X_SATA=m +CONFIG_PHY_QCOM_UFS=m +CONFIG_PHY_RCAR_GEN3_USB2=m +CONFIG_PHY_ROCKCHIP_DP=m +CONFIG_PHY_ROCKCHIP_EMMC=m +CONFIG_PHY_ROCKCHIP_USB=m +CONFIG_PHY_SAMSUNG_USB2=m +CONFIG_PHY_TEGRA_XUSB=m +CONFIG_PHY_TUSB1210=m +CONFIG_PHY_XGENE=y +# CONFIG_PID_IN_CONTEXTIDR is not set +CONFIG_PID_NS=y +CONFIG_PINCONF=y +CONFIG_PINCTRL=y +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_38X=y +CONFIG_PINCTRL_ARMADA_39X=y +CONFIG_PINCTRL_ARMADA_XP=y +CONFIG_PINCTRL_AS3722=y +CONFIG_PINCTRL_BAYTRAIL=y +CONFIG_PINCTRL_BCM2835=y +CONFIG_PINCTRL_BERLIN=y +CONFIG_PINCTRL_BERLIN_BG4CT=y +CONFIG_PINCTRL_BROXTON=m +CONFIG_PINCTRL_CHERRYVIEW=y +CONFIG_PINCTRL_DOVE=y +CONFIG_PINCTRL_EXYNOS=y +CONFIG_PINCTRL_EXYNOS5440=y +CONFIG_PINCTRL_IMX=y +CONFIG_PINCTRL_IMX50=y +CONFIG_PINCTRL_IMX51=y +CONFIG_PINCTRL_IMX6Q=y +CONFIG_PINCTRL_IMX6SL=y +CONFIG_PINCTRL_IMX6SX=y +CONFIG_PINCTRL_IMX6UL=y +CONFIG_PINCTRL_IMX7D=y +CONFIG_PINCTRL_INTEL=m +CONFIG_PINCTRL_IPQ4019=m +CONFIG_PINCTRL_IPQ8064=m +CONFIG_PINCTRL_IPROC_GPIO=y +CONFIG_PINCTRL_MAX77620=m +CONFIG_PINCTRL_MDM9615=m +# CONFIG_PINCTRL_MERRIFIELD is not set +CONFIG_PINCTRL_MESON=y +CONFIG_PINCTRL_MSM=y +CONFIG_PINCTRL_MSM8660=m +CONFIG_PINCTRL_MSM8916=m +CONFIG_PINCTRL_MSM8960=m +CONFIG_PINCTRL_MSM8996=m +CONFIG_PINCTRL_MSM8X74=m +CONFIG_PINCTRL_MT6397=y +CONFIG_PINCTRL_MT8173=y +CONFIG_PINCTRL_MTK=y +CONFIG_PINCTRL_MVEBU=y +CONFIG_PINCTRL_NS2_MUX=y +CONFIG_PINCTRL_PALMAS=y +CONFIG_PINCTRL_PFC_EMEV2=y +CONFIG_PINCTRL_PFC_R8A7740=y +CONFIG_PINCTRL_PFC_R8A7778=y +CONFIG_PINCTRL_PFC_R8A7779=y +CONFIG_PINCTRL_PFC_R8A7790=y +CONFIG_PINCTRL_PFC_R8A7791=y +CONFIG_PINCTRL_PFC_R8A7793=y +CONFIG_PINCTRL_PFC_R8A7794=y +CONFIG_PINCTRL_PFC_R8A7795=y +CONFIG_PINCTRL_PFC_SH73A0=y +CONFIG_PINCTRL_QCOM_SPMI_PMIC=m +CONFIG_PINCTRL_QCOM_SSBI_PMIC=m +CONFIG_PINCTRL_QDF2XXX=m +CONFIG_PINCTRL_ROCKCHIP=y +CONFIG_PINCTRL_SAMSUNG=y +CONFIG_PINCTRL_SH_PFC=y +CONFIG_PINCTRL_SH_PFC_GPIO=y +CONFIG_PINCTRL_SINGLE=y +CONFIG_PINCTRL_SUNRISEPOINT=m +CONFIG_PINCTRL_TEGRA=y +CONFIG_PINCTRL_TEGRA114=y +CONFIG_PINCTRL_TEGRA124=y +CONFIG_PINCTRL_TEGRA20=y +CONFIG_PINCTRL_TEGRA30=y +CONFIG_PINCTRL_TEGRA_XUSB=y +CONFIG_PINCTRL_UNIPHIER=y +CONFIG_PINCTRL_UNIPHIER_LD11=m +CONFIG_PINCTRL_UNIPHIER_LD20=m +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_SLD8=y +CONFIG_PINCTRL_VF610=y +CONFIG_PINMUX=y +CONFIG_PJ4B_ERRATA_4742=y +CONFIG_PKCS7_MESSAGE_PARSER=y +CONFIG_PKCS7_TEST_KEY=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_PLATFORM_SI4713=m +CONFIG_PLAT_ORION=y +CONFIG_PLAT_SAMSUNG=y +# CONFIG_PLAT_SPEAR is not set +CONFIG_PLAT_VERSATILE=y +CONFIG_PLAT_VERSATILE_CLCD=y +CONFIG_PLIP=m +CONFIG_PLX_HERMES=m +CONFIG_PM=y +CONFIG_PMAC_APM_EMU=m +CONFIG_PMAC_BACKLIGHT=y +CONFIG_PMAC_BACKLIGHT_LEGACY=y +CONFIG_PMAC_MEDIABAY=y +CONFIG_PMAC_RACKMETER=m +CONFIG_PMAC_SMU=y +CONFIG_PMBUS=m +CONFIG_PMC_ATOM=y +CONFIG_PMIC_ADP5520=y +CONFIG_PMIC_DA903X=y +CONFIG_PMIC_DA9052=y +# CONFIG_PMIC_OPREGION 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_RMOBILE=y +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_DEBUG=y +CONFIG_PM_SLEEP_SMP=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_PNFS_OBJLAYOUT=m +CONFIG_PNP=y +CONFIG_PNPACPI=y +CONFIG_PNPBIOS=y +CONFIG_PNPBIOS_PROC_FS=y +# CONFIG_PNP_DEBUG_MESSAGES is not set +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +# CONFIG_POWER4_CPU is not set +# CONFIG_POWER5_CPU is not set +# CONFIG_POWER6_CPU is not set +# CONFIG_POWER8_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_AS3722=y +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_IMX is not set +CONFIG_POWER_RESET_LTC2952=y +CONFIG_POWER_RESET_MSM=y +# CONFIG_POWER_RESET_QNAP is not set +CONFIG_POWER_RESET_RESTART=y +CONFIG_POWER_RESET_RMOBILE=m +CONFIG_POWER_RESET_SYSCON=y +CONFIG_POWER_RESET_SYSCON_POWEROFF=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_PPA8548=y +CONFIG_PPC=y +CONFIG_PPC32=y +# CONFIG_PPC601_SYNC_FIX is not set +CONFIG_PPC64_BOOT_WRAPPER=y +CONFIG_PPC64_SUPPORTS_MEMORY_FAILURE=y +# CONFIG_PPC_82xx is not set +# CONFIG_PPC_83xx is not set +# CONFIG_PPC_86xx is not set +# CONFIG_PPC_8xx is not set +CONFIG_PPC_ADV_DEBUG_DACS=2 +CONFIG_PPC_ADV_DEBUG_DVCS=0 +CONFIG_PPC_ADV_DEBUG_IACS=2 +CONFIG_PPC_ADV_DEBUG_REGS=y +CONFIG_PPC_BOOK3E=y +CONFIG_PPC_BOOK3E_MMU=y +CONFIG_PPC_BOOK3S=y +# CONFIG_PPC_CELL_NATIVE is not set +CONFIG_PPC_CHRP=y +# CONFIG_PPC_DCR_MMIO is not set +# CONFIG_PPC_DCR_NATIVE is not set +CONFIG_PPC_E500MC=y +# CONFIG_PPC_EARLY_DEBUG is not set +# CONFIG_PPC_EMULATED_STATS is not set +CONFIG_PPC_EMULATE_SSTEP=y +# CONFIG_PPC_EPAPR_HV_BYTECHAN is not set +CONFIG_PPC_FPU=y +CONFIG_PPC_FSL_BOOK3E=y +CONFIG_PPC_HAVE_PMU_SUPPORT=y +# CONFIG_PPC_IBM_CELL_BLADE is not set +CONFIG_PPC_ICSWX_PID=y +# CONFIG_PPC_ICSWX_USE_SIGILL is not set +CONFIG_PPC_INDIRECT_PIO=y +CONFIG_PPC_LIB_RHEAP=y +CONFIG_PPC_MAPLE=y +CONFIG_PPC_MMU_NOHASH=y +# CONFIG_PPC_MPC512x is not set +# CONFIG_PPC_MPC52xx is not set +CONFIG_PPC_MSI_BITMAP=y +CONFIG_PPC_NATIVE=y +# CONFIG_PPC_OF_PLATFORM_PCI is not set +CONFIG_PPC_PASEMI=y +CONFIG_PPC_PASEMI_CPUFREQ=y +CONFIG_PPC_PASEMI_IOMMU=y +# CONFIG_PPC_PASEMI_IOMMU_DMA_FORCE is not set +CONFIG_PPC_PASEMI_MDIO=m +CONFIG_PPC_PCI_CHOICE=y +CONFIG_PPC_PERF_CTRS=y +CONFIG_PPC_PMAC=y +CONFIG_PPC_PMAC32_PSURGE=y +CONFIG_PPC_PMAC64=y +CONFIG_PPC_POWERNV=y +CONFIG_PPC_PS3=y +CONFIG_PPC_PSERIES=y +CONFIG_PPC_QEMU_E500=y +CONFIG_PPC_RADIX_MMU=y +CONFIG_PPC_RTAS_DAEMON=y +CONFIG_PPC_SCOM=y +CONFIG_PPC_SMP_MUXED_IPI=y +CONFIG_PPC_STD_MMU=y +CONFIG_PPC_STD_MMU_32=y +CONFIG_PPC_STD_MMU_64=y +CONFIG_PPC_SUBPAGE_PROT=y +CONFIG_PPC_TRANSACTIONAL_MEM=y +CONFIG_PPC_UDBG_16550=y +CONFIG_PPC_WERROR=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_PQ2ADS is not set +CONFIG_PREEMPT_COUNT=y +# CONFIG_PREEMPT_NONE is not set +CONFIG_PREEMPT_NOTIFIERS=y +CONFIG_PREEMPT_RCU=y +# CONFIG_PREEMPT_TRACER is not set +CONFIG_PREVENT_FIRMWARE_BUILD=y +CONFIG_PRINTER=m +CONFIG_PRINTK=y +CONFIG_PRINTK_NMI=y +CONFIG_PRINTK_TIME=y +CONFIG_PRINT_STACK_DEPTH=64 +CONFIG_PRISM2_USB=m +# CONFIG_PRISM54 is not set +CONFIG_PROBE_EVENTS=y +CONFIG_PROCESSOR_SELECT=y +CONFIG_PROC_CHILDREN=y +CONFIG_PROC_EVENTS=y +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_PROC_PID_CPUSET=y +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_VMCORE=y +# CONFIG_PROFILE_ALL_BRANCHES is not set +# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set +CONFIG_PROFILING=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_PROVE_RCU is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_PS3GELIC_UDBG is not set +# CONFIG_PS3_ADVANCED is not set +CONFIG_PS3_DISK=m +# CONFIG_PS3_DYNAMIC_DMA is not set +CONFIG_PS3_FLASH=m +CONFIG_PS3_HTAB_SIZE=20 +CONFIG_PS3_LPM=m +CONFIG_PS3_PS3AV=y +# CONFIG_PS3_REPOSITORY_WRITE is not set +CONFIG_PS3_ROM=m +CONFIG_PS3_STORAGE=m +CONFIG_PS3_SYS_MANAGER=y +CONFIG_PS3_VRAM=m +CONFIG_PS3_VUART=y +CONFIG_PSERIES_CPUIDLE=y +CONFIG_PSERIES_ENERGY=m +# CONFIG_PSTORE_FTRACE 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_ZLIB_COMPRESS=y +CONFIG_PTE_64BIT=y +CONFIG_PTP_1588_CLOCK_GIANFAR=m +CONFIG_PTP_1588_CLOCK_PCH=m +CONFIG_PUNIT_ATOM_DEBUG=m +CONFIG_PVPANIC=m +CONFIG_PWM_ATMEL_HLCDC_PWM=m +CONFIG_PWM_BCM2835=m +CONFIG_PWM_BCM_IPROC=m +CONFIG_PWM_BERLIN=m +CONFIG_PWM_CRC=y +CONFIG_PWM_CROS_EC=m +CONFIG_PWM_FSL_FTM=m +CONFIG_PWM_IMX=m +CONFIG_PWM_LP3943=m +CONFIG_PWM_LPSS=m +CONFIG_PWM_LPSS_PCI=m +CONFIG_PWM_LPSS_PLATFORM=m +CONFIG_PWM_MTK_DISP=m +CONFIG_PWM_OMAP_DMTIMER=m +CONFIG_PWM_RCAR=m +CONFIG_PWM_ROCKCHIP=m +CONFIG_PWM_SAMSUNG=m +CONFIG_PWM_STMPE=y +CONFIG_PWM_SYSFS=y +CONFIG_PWM_TEGRA=m +CONFIG_PWM_TIPWMSS=y +CONFIG_PWM_TWL=m +CONFIG_PWM_TWL_LED=m +CONFIG_PWRSEQ_EMMC=m +CONFIG_PWRSEQ_SIMPLE=m +CONFIG_PXA168_ETH=m +CONFIG_QCA7000=m +CONFIG_QCOM_BAM_DMA=m +CONFIG_QCOM_COINCELL=m +CONFIG_QCOM_GDSC=y +CONFIG_QCOM_GSBI=m +CONFIG_QCOM_HIDMA=m +CONFIG_QCOM_HIDMA_MGMT=m +CONFIG_QCOM_MDT_LOADER=m +CONFIG_QCOM_PM=y +CONFIG_QCOM_Q6V5_PIL=m +CONFIG_QCOM_QFPROM=m +CONFIG_QCOM_SCM=y +CONFIG_QCOM_SCM_32=y +CONFIG_QCOM_SCM_64=y +CONFIG_QCOM_SMD=m +CONFIG_QCOM_SMD_RPM=m +CONFIG_QCOM_SMEM=m +CONFIG_QCOM_SMEM_STATE=y +CONFIG_QCOM_SMP2P=m +CONFIG_QCOM_SMSM=m +CONFIG_QCOM_SPMI_IADC=m +CONFIG_QCOM_SPMI_TEMP_ALARM=m +CONFIG_QCOM_SPMI_VADC=m +CONFIG_QCOM_WCNSS_CTRL=m +CONFIG_QCOM_WDT=m +CONFIG_QDIO=m +CONFIG_QED=m +CONFIG_QEDE=m +CONFIG_QED_SRIOV=y +CONFIG_QETH=m +CONFIG_QETH_IPV6=y +CONFIG_QETH_L2=m +CONFIG_QETH_L3=m +CONFIG_QE_GPIO=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_QNX4FS_FS=m +# CONFIG_QNX6FS_DEBUG is not set +CONFIG_QNX6FS_FS=m +CONFIG_QORIQ_CPUFREQ=m +CONFIG_QRTR=m +CONFIG_QRTR_SMD=m +# CONFIG_QUEUED_LOCK_STAT is not set +CONFIG_QUEUED_RWLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_QUICC_ENGINE=y +CONFIG_QUOTA=y +CONFIG_QUOTACTL=y +CONFIG_QUOTACTL_COMPAT=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_R8723AU=m +CONFIG_RADIO_ADAPTERS=y +CONFIG_RADIO_AZTECH=m +CONFIG_RADIO_CADET=m +CONFIG_RADIO_GEMTEK=m +CONFIG_RADIO_ISA=m +CONFIG_RADIO_MAXIRADIO=m +CONFIG_RADIO_MIROPCM20=m +CONFIG_RADIO_RTRACK=m +CONFIG_RADIO_RTRACK2=m +CONFIG_RADIO_SAA7706H=m +CONFIG_RADIO_SF16FMI=m +CONFIG_RADIO_SF16FMR2=m +CONFIG_RADIO_SHARK=m +CONFIG_RADIO_SHARK2=m +CONFIG_RADIO_SI470X=y +CONFIG_RADIO_SI4713=m +CONFIG_RADIO_SI476X=m +CONFIG_RADIO_TEA575X=m +CONFIG_RADIO_TEA5764=m +CONFIG_RADIO_TEF6862=m +CONFIG_RADIO_TERRATEC=m +CONFIG_RADIO_TIMBERDALE=m +CONFIG_RADIO_TRUST=m +CONFIG_RADIO_TYPHOON=m +CONFIG_RADIO_WL1273=m +CONFIG_RADIO_WL128X=m +CONFIG_RADIO_ZOLTRIX=m +CONFIG_RADIX_TREE_MULTIORDER=y +CONFIG_RAID6_PQ=m +CONFIG_RAID_ATTRS=m +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_RANDOMIZE_BASE=y +CONFIG_RANDOMIZE_MEMORY=y +CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa +CONFIG_RANDOMIZE_MODULE_REGION_FULL=y +CONFIG_RAPIDIO=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_RATIONAL=y +# CONFIG_RCU_EQS_DEBUG is not set +# CONFIG_RCU_EXPEDITE_BOOT is not set +# CONFIG_RCU_EXPERT is not set +CONFIG_RCU_PERF_TEST=m +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_CORE=m +CONFIG_RC_DECODERS=y +CONFIG_RC_DEVICES=y +CONFIG_RC_LOOPBACK=m +CONFIG_RC_MAP=m +CONFIG_RDMA_RXE=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_READABLE_ASM is not set +CONFIG_REALTEK_AUTOPM=y +CONFIG_REBOOT_MODE=m +CONFIG_REED_SOLOMON_DEC16=y +CONFIG_REED_SOLOMON_DEC8=y +CONFIG_REED_SOLOMON_ENC8=y +CONFIG_REGMAP=y +CONFIG_REGMAP_IRQ=y +CONFIG_REGMAP_MMIO=y +CONFIG_REGMAP_SPI=y +CONFIG_REGMAP_SPMI=m +CONFIG_REGULATOR_88PM800=m +CONFIG_REGULATOR_88PM8607=m +CONFIG_REGULATOR_AAT2870=m +CONFIG_REGULATOR_AB3100=m +CONFIG_REGULATOR_ACT8865=m +CONFIG_REGULATOR_ACT8945A=m +CONFIG_REGULATOR_AD5398=m +CONFIG_REGULATOR_ANATOP=m +CONFIG_REGULATOR_ARIZONA=m +CONFIG_REGULATOR_AS3711=m +CONFIG_REGULATOR_AS3722=m +CONFIG_REGULATOR_AXP20X=m +CONFIG_REGULATOR_BCM590XX=m +CONFIG_REGULATOR_DA903X=m +CONFIG_REGULATOR_DA9052=m +CONFIG_REGULATOR_DA9055=m +CONFIG_REGULATOR_DA9062=m +CONFIG_REGULATOR_DA9063=m +CONFIG_REGULATOR_DA9210=m +CONFIG_REGULATOR_DA9211=m +# CONFIG_REGULATOR_DEBUG is not set +CONFIG_REGULATOR_FAN53555=m +CONFIG_REGULATOR_GPIO=m +CONFIG_REGULATOR_HI6421=m +CONFIG_REGULATOR_HI655X=m +CONFIG_REGULATOR_ISL6271A=m +CONFIG_REGULATOR_ISL9305=m +CONFIG_REGULATOR_LP3971=m +CONFIG_REGULATOR_LP3972=m +CONFIG_REGULATOR_LP872X=m +CONFIG_REGULATOR_LP8755=m +CONFIG_REGULATOR_LP8788=m +CONFIG_REGULATOR_LTC3589=m +CONFIG_REGULATOR_MAX14577=m +CONFIG_REGULATOR_MAX1586=m +CONFIG_REGULATOR_MAX77620=m +CONFIG_REGULATOR_MAX77686=m +CONFIG_REGULATOR_MAX77693=m +CONFIG_REGULATOR_MAX77802=m +CONFIG_REGULATOR_MAX8649=m +CONFIG_REGULATOR_MAX8660=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_MT6311=m +CONFIG_REGULATOR_MT6323=m +CONFIG_REGULATOR_MT6397=m +CONFIG_REGULATOR_PALMAS=m +CONFIG_REGULATOR_PBIAS=m +CONFIG_REGULATOR_PCAP=m +CONFIG_REGULATOR_PCF50633=m +CONFIG_REGULATOR_PFUZE100=m +CONFIG_REGULATOR_PV88060=m +CONFIG_REGULATOR_PV88080=m +CONFIG_REGULATOR_PV88090=m +CONFIG_REGULATOR_PWM=m +CONFIG_REGULATOR_QCOM_RPM=m +CONFIG_REGULATOR_QCOM_SMD_RPM=m +CONFIG_REGULATOR_QCOM_SPMI=m +CONFIG_REGULATOR_RC5T583=m +CONFIG_REGULATOR_RK808=m +CONFIG_REGULATOR_RN5T618=m +CONFIG_REGULATOR_RT5033=m +CONFIG_REGULATOR_S2MPA01=m +CONFIG_REGULATOR_S2MPS11=m +CONFIG_REGULATOR_S5M8767=m +CONFIG_REGULATOR_SKY81452=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_TPS65218=m +CONFIG_REGULATOR_TPS6524X=m +CONFIG_REGULATOR_TPS6586X=m +CONFIG_REGULATOR_TPS65910=m +CONFIG_REGULATOR_TPS65912=m +CONFIG_REGULATOR_TPS80031=m +CONFIG_REGULATOR_USERSPACE_CONSUMER=m +CONFIG_REGULATOR_VEXPRESS=m +CONFIG_REGULATOR_VIRTUAL_CONSUMER=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=m +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_REMOTEPROC=m +CONFIG_RENESAS_DMA=y +CONFIG_RENESAS_INTC_IRQPIN=y +CONFIG_RENESAS_IRQC=y +CONFIG_RENESAS_WDT=m +CONFIG_RESET_HISI=y +CONFIG_RETU_WATCHDOG=m +CONFIG_RFD_FTL=m +CONFIG_RFKILL_GPIO=m +CONFIG_RFKILL_INPUT=y +CONFIG_RFKILL_LEDS=y +CONFIG_RFKILL_REGULATOR=m +CONFIG_RFS_ACCEL=y +CONFIG_RING_BUFFER=y +CONFIG_RING_BUFFER_ALLOW_SWAP=y +# CONFIG_RING_BUFFER_BENCHMARK is not set +# CONFIG_RING_BUFFER_STARTUP_TEST is not set +CONFIG_RIONET=m +CONFIG_RIONET_RX_SIZE=128 +CONFIG_RIONET_TX_SIZE=128 +CONFIG_RMI4_2D_SENSOR=y +CONFIG_RMI4_CORE=m +CONFIG_RMI4_F11=y +CONFIG_RMI4_F12=y +CONFIG_RMI4_F30=y +CONFIG_RMI4_I2C=m +CONFIG_RMI4_SPI=m +CONFIG_RN5T618_WATCHDOG=m +CONFIG_ROCKCHIP_ANALOGIX_DP=m +CONFIG_ROCKCHIP_DW_HDMI=m +CONFIG_ROCKCHIP_DW_MIPI_DSI=m +CONFIG_ROCKCHIP_EFUSE=m +CONFIG_ROCKCHIP_INNO_HDMI=m +CONFIG_ROCKCHIP_IODOMAIN=m +CONFIG_ROCKCHIP_IOMMU=y +CONFIG_ROCKCHIP_MBOX=y +CONFIG_ROCKCHIP_PM_DOMAINS=y +CONFIG_ROCKCHIP_SARADC=m +CONFIG_ROCKCHIP_THERMAL=m +CONFIG_ROCKCHIP_TIMER=y +CONFIG_ROCKER=m +CONFIG_ROCKETPORT=m +CONFIG_ROMFS_BACKED_BY_BLOCK=y +# CONFIG_ROMFS_BACKED_BY_BOTH is not set +# CONFIG_ROMFS_BACKED_BY_MTD is not set +CONFIG_ROMFS_FS=m +CONFIG_ROMFS_ON_BLOCK=y +CONFIG_ROSE=m +CONFIG_RPCSEC_GSS_KRB5=m +CONFIG_RPMSG=m +CONFIG_RPR0521=m +CONFIG_RPS=y +CONFIG_RSI_91X=m +# CONFIG_RSI_DEBUGFS is not set +CONFIG_RSI_SDIO=m +CONFIG_RSI_USB=m +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_AB3100=m +CONFIG_RTC_DRV_ABB5ZES3=m +CONFIG_RTC_DRV_ABX80X=m +CONFIG_RTC_DRV_ARMADA38X=m +CONFIG_RTC_DRV_AS3722=m +CONFIG_RTC_DRV_BQ32K=m +CONFIG_RTC_DRV_BQ4802=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_HWMON=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_EFI=y +CONFIG_RTC_DRV_EM3027=m +CONFIG_RTC_DRV_FM3130=m +CONFIG_RTC_DRV_GENERIC=y +CONFIG_RTC_DRV_HID_SENSOR_TIME=m +CONFIG_RTC_DRV_HYM8563=m +CONFIG_RTC_DRV_IMXDI=m +CONFIG_RTC_DRV_ISL12022=m +CONFIG_RTC_DRV_ISL12057=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_MSM6242=m +CONFIG_RTC_DRV_MT6397=m +CONFIG_RTC_DRV_MV=y +CONFIG_RTC_DRV_MXC=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_PCF8563=m +CONFIG_RTC_DRV_PCF8583=m +CONFIG_RTC_DRV_PL030=m +CONFIG_RTC_DRV_PM8XXX=m +CONFIG_RTC_DRV_PS3=m +CONFIG_RTC_DRV_R9701=m +CONFIG_RTC_DRV_RC5T583=m +CONFIG_RTC_DRV_RK808=m +CONFIG_RTC_DRV_RP5C01=m +CONFIG_RTC_DRV_RS5C348=m +CONFIG_RTC_DRV_RS5C372=m +CONFIG_RTC_DRV_RV3029C2=m +CONFIG_RTC_DRV_RV3029_HWMON=y +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_SNVS=m +CONFIG_RTC_DRV_STK17TA8=m +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_VRTC=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_DS1685_PROC_REGS is not set +# CONFIG_RTC_DS1685_SYSFS_REGS is not set +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_SYSTOHC=y +CONFIG_RTC_SYSTOHC_DEVICE="rtc0" +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_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_RT_GROUP_SCHED is not set +CONFIG_RT_MUTEXES=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_RWSEM_XCHGADD_ALGORITHM=y +CONFIG_RXKAD=y +CONFIG_S2IO=m +CONFIG_S390=y +CONFIG_S390_GUEST=y +CONFIG_S390_GUEST_OLD_TRANSPORT=y +CONFIG_S390_HYPFS_FS=y +CONFIG_S390_IOMMU=y +CONFIG_S390_PRNG=m +# CONFIG_S390_PTDUMP is not set +CONFIG_S390_TAPE=m +CONFIG_S390_TAPE_34XX=m +CONFIG_S390_TAPE_3590=m +CONFIG_S390_VMUR=m +CONFIG_S3C2410_WATCHDOG=m +CONFIG_S5P_DEV_MFC=y +# CONFIG_SAMPLES is not set +# CONFIG_SAMSUNG_ATAGS is not set +CONFIG_SAMSUNG_LAPTOP=m +CONFIG_SAMSUNG_MC=y +# CONFIG_SAMSUNG_PM_CHECK is not set +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_FSL=m +CONFIG_SATA_HIGHBANK=m +CONFIG_SATA_INIC162X=m +CONFIG_SATA_MV=m +CONFIG_SATA_NV=m +CONFIG_SATA_PMP=y +CONFIG_SATA_PROMISE=m +CONFIG_SATA_QSTOR=m +CONFIG_SATA_SIL=m +CONFIG_SATA_SIL24=m +CONFIG_SATA_SIS=m +CONFIG_SATA_SX4=m +CONFIG_SATA_ULI=m +CONFIG_SATA_VIA=m +CONFIG_SATA_VITESSE=m +CONFIG_SATA_ZPODD=y +CONFIG_SBC7240_WDT=m +CONFIG_SBC8360_WDT=m +# CONFIG_SBC8548 is not set +CONFIG_SBC_EPX_C3_WATCHDOG=m +CONFIG_SBC_FITPC2_WATCHDOG=m +CONFIG_SBNI=m +# CONFIG_SBNI_MULTILINE is not set +CONFIG_SBP_TARGET=m +CONFIG_SC1200_WDT=m +CONFIG_SC92031=m +CONFIG_SCA3000=m +CONFIG_SCANLOG=m +CONFIG_SCC=m +# CONFIG_SCC_DELAY is not set +# CONFIG_SCC_TRXECHO is not set +CONFIG_SCHED_AUTOGROUP=y +CONFIG_SCHED_BOOK=y +CONFIG_SCHED_DEBUG=y +CONFIG_SCHED_DRAWER=y +CONFIG_SCHED_HRTICK=y +CONFIG_SCHED_INFO=y +CONFIG_SCHED_MC=y +CONFIG_SCHED_OMIT_FRAME_POINTER=y +CONFIG_SCHED_STACK_END_CHECK=y +CONFIG_SCHED_TOPOLOGY=y +CONFIG_SCIF=m +CONFIG_SCIF_BUS=m +CONFIG_SCLP_ASYNC=m +CONFIG_SCLP_ASYNC_ID="000000000" +CONFIG_SCLP_CONSOLE=y +# CONFIG_SCLP_OFB is not set +CONFIG_SCLP_TTY=y +CONFIG_SCLP_VT220_CONSOLE=y +CONFIG_SCLP_VT220_TTY=y +CONFIG_SCM_BLOCK=m +CONFIG_SCM_BLOCK_CLUSTER_WRITE=y +CONFIG_SCM_BUS=y +CONFIG_SCOM_DEBUGFS=y +CONFIG_SCSI=y +CONFIG_SCSI_7000FASST=m +CONFIG_SCSI_AHA152X=m +CONFIG_SCSI_AHA1542=m +CONFIG_SCSI_AHA1740=m +CONFIG_SCSI_BUSLOGIC=m +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_DTC3280=m +CONFIG_SCSI_EATA=m +CONFIG_SCSI_EATA_LINKED_COMMANDS=y +CONFIG_SCSI_EATA_MAX_TAGS=16 +CONFIG_SCSI_EATA_TAGGED_QUEUE=y +CONFIG_SCSI_ENCLOSURE=m +CONFIG_SCSI_FC_ATTRS=m +CONFIG_SCSI_FLASHPOINT=y +CONFIG_SCSI_GDTH=m +CONFIG_SCSI_GENERIC_NCR5380=m +CONFIG_SCSI_GENERIC_NCR5380_MMIO=m +# CONFIG_SCSI_HISI_SAS is not set +CONFIG_SCSI_IBMVFC=m +CONFIG_SCSI_IBMVFC_TRACE=y +CONFIG_SCSI_IBMVSCSI=m +CONFIG_SCSI_IBMVSCSIS=m +CONFIG_SCSI_IMM=m +CONFIG_SCSI_IN2000=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_DEBUG_FS is not set +CONFIG_SCSI_MAC53C94=m +CONFIG_SCSI_MESH=m +CONFIG_SCSI_MESH_RESET_DELAY_MS=4000 +CONFIG_SCSI_MESH_SYNC_RATE=5 +CONFIG_SCSI_MOD=y +CONFIG_SCSI_MPT2SAS_MAX_SGE=128 +CONFIG_SCSI_MPT3SAS_MAX_SGE=128 +# CONFIG_SCSI_MVSAS_DEBUG is not set +# CONFIG_SCSI_MVSAS_TASKLET is not set +CONFIG_SCSI_NCR53C406A=m +CONFIG_SCSI_NETLINK=y +CONFIG_SCSI_NSP32=m +# CONFIG_SCSI_OSD_DEBUG is not set +CONFIG_SCSI_OSD_DPRINT_SENSE=1 +CONFIG_SCSI_OSD_INITIATOR=m +CONFIG_SCSI_OSD_ULD=m +CONFIG_SCSI_PAS16=m +CONFIG_SCSI_PPA=m +CONFIG_SCSI_PROC_FS=y +CONFIG_SCSI_QLOGIC_FAS=m +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_SNIC_DEBUG_FS is not set +CONFIG_SCSI_SPI_ATTRS=m +CONFIG_SCSI_SYM53C416=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_T128=m +CONFIG_SCSI_U14_34F=m +CONFIG_SCSI_U14_34F_LINKED_COMMANDS=y +CONFIG_SCSI_U14_34F_MAX_TAGS=8 +CONFIG_SCSI_U14_34F_TAGGED_QUEUE=y +CONFIG_SCSI_UFSHCD_PCI=m +CONFIG_SCSI_UFSHCD_PLATFORM=m +CONFIG_SCSI_UFS_DWC_TC_PCI=m +CONFIG_SCSI_UFS_DWC_TC_PLATFORM=m +# CONFIG_SCSI_UFS_QCOM is not set +CONFIG_SCSI_ULTRASTOR=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_NONE is not set +CONFIG_SCx200=m +CONFIG_SCx200HR_TIMER=m +CONFIG_SCx200_ACB=m +CONFIG_SCx200_GPIO=m +CONFIG_SCx200_WDT=m +CONFIG_SDIO_UART=m +CONFIG_SDLA=m +# CONFIG_SDMA_VERBOSITY is not set +CONFIG_SEALEVEL_4021=m +CONFIG_SECCOMP=y +CONFIG_SECCOMP_FILTER=y +CONFIG_SECONDARY_TRUSTED_KEYRING=y +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +CONFIG_SECURITY=y +CONFIG_SECURITYFS=y +CONFIG_SECURITY_APPARMOR=y +CONFIG_SECURITY_APPARMOR_BOOTPARAM_VALUE=1 +CONFIG_SECURITY_APPARMOR_HASH=y +CONFIG_SECURITY_APPARMOR_HASH_DEFAULT=y +# CONFIG_SECURITY_APPARMOR_STATS is not set +CONFIG_SECURITY_APPARMOR_UNCONFINED_INIT=y +# CONFIG_SECURITY_DMESG_RESTRICT is not set +# CONFIG_SECURITY_LOADPIN is not set +CONFIG_SECURITY_NETWORK=y +CONFIG_SECURITY_NETWORK_XFRM=y +CONFIG_SECURITY_PATH=y +CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y +CONFIG_SECURITY_SELINUX=y +CONFIG_SECURITY_SELINUX_AVC_STATS=y +CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=0 +CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 +CONFIG_SECURITY_SELINUX_DEVELOP=y +# CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set +CONFIG_SECURITY_SMACK=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_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_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_ADM1275=m +CONFIG_SENSORS_ADM9240=m +CONFIG_SENSORS_ADS1015=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_AMC6821=m +CONFIG_SENSORS_AMS=m +# CONFIG_SENSORS_AMS_I2C is not set +# CONFIG_SENSORS_AMS_PMU is not set +CONFIG_SENSORS_APPLESMC=m +CONFIG_SENSORS_ARM_SCPI=m +CONFIG_SENSORS_ASB100=m +CONFIG_SENSORS_ASC7621=m +CONFIG_SENSORS_ATK0110=m +CONFIG_SENSORS_ATXP1=m +CONFIG_SENSORS_CORETEMP=m +CONFIG_SENSORS_DA9052_ADC=m +CONFIG_SENSORS_DA9055=m +CONFIG_SENSORS_DELL_SMM=m +CONFIG_SENSORS_DME1737=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_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_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_IIO_HWMON=m +CONFIG_SENSORS_INA209=m +CONFIG_SENSORS_INA2XX=m +CONFIG_SENSORS_INA3221=m +CONFIG_SENSORS_ISL29018=m +CONFIG_SENSORS_ISL29028=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_I2C=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_LTC2945=m +CONFIG_SENSORS_LTC2978=m +CONFIG_SENSORS_LTC2978_REGULATOR=y +CONFIG_SENSORS_LTC2990=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_MAX16064=m +CONFIG_SENSORS_MAX16065=m +CONFIG_SENSORS_MAX1619=m +CONFIG_SENSORS_MAX1668=m +CONFIG_SENSORS_MAX197=m +CONFIG_SENSORS_MAX20751=m +CONFIG_SENSORS_MAX31722=m +CONFIG_SENSORS_MAX31790=m +CONFIG_SENSORS_MAX34440=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_NCT6683=m +CONFIG_SENSORS_NCT6775=m +CONFIG_SENSORS_NCT7802=m +CONFIG_SENSORS_NCT7904=m +CONFIG_SENSORS_NTC_THERMISTOR=m +CONFIG_SENSORS_PC87360=m +CONFIG_SENSORS_PC87427=m +CONFIG_SENSORS_PCF8591=m +CONFIG_SENSORS_PMBUS=m +CONFIG_SENSORS_POWR1220=m +CONFIG_SENSORS_PWM_FAN=m +CONFIG_SENSORS_SCH5627=m +CONFIG_SENSORS_SCH5636=m +CONFIG_SENSORS_SHT15=m +CONFIG_SENSORS_SHT21=m +CONFIG_SENSORS_SHT3x=m +CONFIG_SENSORS_SHTC1=m +CONFIG_SENSORS_SIS5595=m +CONFIG_SENSORS_SMM665=m +CONFIG_SENSORS_SMSC47B397=m +CONFIG_SENSORS_SMSC47M1=m +CONFIG_SENSORS_SMSC47M192=m +CONFIG_SENSORS_TC74=m +CONFIG_SENSORS_THMC50=m +CONFIG_SENSORS_TMP102=m +CONFIG_SENSORS_TMP103=m +CONFIG_SENSORS_TMP401=m +CONFIG_SENSORS_TMP421=m +CONFIG_SENSORS_TPS40422=m +CONFIG_SENSORS_TSL2563=m +CONFIG_SENSORS_TWL4030_MADC=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_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_ZL6100=m +CONFIG_SERIAL_8250_ACCENT=m +# CONFIG_SERIAL_8250_BCM2835AUX is not set +CONFIG_SERIAL_8250_BOCA=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_EM is not set +CONFIG_SERIAL_8250_EXAR_ST16C554=m +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_FOURPORT=m +CONFIG_SERIAL_8250_HUB6=m +CONFIG_SERIAL_8250_MANY_PORTS=y +CONFIG_SERIAL_8250_MID=m +CONFIG_SERIAL_8250_MOXA=m +CONFIG_SERIAL_8250_MT6577=y +CONFIG_SERIAL_8250_NR_UARTS=48 +CONFIG_SERIAL_8250_OMAP=m +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_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_CPM=m +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST=y +CONFIG_SERIAL_ICOM=m +# CONFIG_SERIAL_IFX6X60 is not set +CONFIG_SERIAL_IMX=y +CONFIG_SERIAL_IMX_CONSOLE=y +CONFIG_SERIAL_IPOCTAL=m +CONFIG_SERIAL_KGDB_NMI=y +CONFIG_SERIAL_MAX3100=m +CONFIG_SERIAL_MAX310X=y +CONFIG_SERIAL_MEN_Z135=m +CONFIG_SERIAL_MESON=m +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_OMAP=y +CONFIG_SERIAL_OMAP_CONSOLE=y +CONFIG_SERIAL_PCH_UART=m +CONFIG_SERIAL_PMACZILOG=y +CONFIG_SERIAL_PMACZILOG_CONSOLE=y +# CONFIG_SERIAL_PMACZILOG_TTYS is not set +CONFIG_SERIAL_QE=m +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_DMA=y +CONFIG_SERIAL_SH_SCI_NR_UARTS=2 +CONFIG_SERIAL_SPRD=m +CONFIG_SERIAL_STM32=m +CONFIG_SERIAL_ST_ASC=m +CONFIG_SERIAL_TEGRA=m +CONFIG_SERIAL_TIMBERDALE=m +CONFIG_SERIAL_UARTLITE=m +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_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_XILINX_XPS_PS2=m +CONFIG_SFC_MCDI_LOGGING=y +CONFIG_SFC_MCDI_MON=y +CONFIG_SFC_MTD=y +CONFIG_SFC_SRIOV=y +CONFIG_SFI=y +CONFIG_SGY_CTS1000=m +CONFIG_SG_POOL=y +CONFIG_SHMEM=y +CONFIG_SH_DMAE=m +CONFIG_SI7005=m +CONFIG_SI7020=m +CONFIG_SIGMATEL_FIR=m +CONFIG_SIGNALFD=y +CONFIG_SIGNATURE=y +CONFIG_SIGNED_PE_FILE_VERIFICATION=y +CONFIG_SIS190=m +CONFIG_SIS900=m +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_SLAB is not set +CONFIG_SLABINFO=y +CONFIG_SLAB_FREELIST_RANDOM=y +CONFIG_SLHC=y +CONFIG_SLICOSS=m +CONFIG_SLIC_DS26522=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_SMC911X=m +CONFIG_SMC9194=m +CONFIG_SMC_IRCC_FIR=m +CONFIG_SMP=y +CONFIG_SMP_ON_UP=y +CONFIG_SMSC37B787_WDT=m +CONFIG_SMSC911X=m +# CONFIG_SMSC911X_ARCH_HOOKS is not set +CONFIG_SMSC9420=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_FTL=m +CONFIG_SND_AC97_CODEC=m +CONFIG_SND_AC97_POWER_SAVE=y +CONFIG_SND_AC97_POWER_SAVE_DEFAULT=0 +CONFIG_SND_AD1816A=m +CONFIG_SND_AD1848=m +CONFIG_SND_AD1889=m +CONFIG_SND_ADLIB=m +CONFIG_SND_ALI5451=m +CONFIG_SND_ALOOP=m +CONFIG_SND_ALS100=m +CONFIG_SND_ALS300=m +CONFIG_SND_ALS4000=m +CONFIG_SND_AM33XX_SOC_EVM=m +CONFIG_SND_AOA=m +CONFIG_SND_AOA_FABRIC_LAYOUT=m +CONFIG_SND_AOA_ONYX=m +CONFIG_SND_AOA_SOUNDBUS=m +CONFIG_SND_AOA_SOUNDBUS_I2S=m +CONFIG_SND_AOA_TAS=m +CONFIG_SND_AOA_TOONIE=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_AW2=m +CONFIG_SND_AZT1605=m +CONFIG_SND_AZT2316=m +CONFIG_SND_AZT2320=m +CONFIG_SND_AZT3328=m +CONFIG_SND_BCD2000=m +CONFIG_SND_BCM2835_SOC_I2S=m +CONFIG_SND_BEBOB=m +CONFIG_SND_BT87X=m +# CONFIG_SND_BT87X_OVERCLOCK is not set +CONFIG_SND_CA0106=m +CONFIG_SND_CMI8328=m +CONFIG_SND_CMI8330=m +CONFIG_SND_CMIPCI=m +CONFIG_SND_COMPRESS_OFFLOAD=m +CONFIG_SND_CS4231=m +CONFIG_SND_CS4236=m +CONFIG_SND_CS4281=m +CONFIG_SND_CS46XX=m +CONFIG_SND_CS46XX_NEW_DSP=y +CONFIG_SND_CS5530=m +CONFIG_SND_CS5535AUDIO=m +CONFIG_SND_CTXFI=m +CONFIG_SND_DARLA20=m +CONFIG_SND_DARLA24=m +CONFIG_SND_DAVINCI_SOC_GENERIC_EVM=m +# CONFIG_SND_DAVINCI_SOC_I2S is not set +CONFIG_SND_DAVINCI_SOC_MCASP=m +# CONFIG_SND_DEBUG is not set +CONFIG_SND_DESIGNWARE_I2S=m +CONFIG_SND_DESIGNWARE_PCM=m +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_ENS1370=m +CONFIG_SND_ENS1371=m +CONFIG_SND_ES1688=m +CONFIG_SND_ES18XX=m +CONFIG_SND_ES1938=m +CONFIG_SND_ES1968=m +CONFIG_SND_ES1968_INPUT=y +CONFIG_SND_ES1968_RADIO=y +CONFIG_SND_FIREWIRE=y +CONFIG_SND_FIREWIRE_DIGI00X=m +CONFIG_SND_FIREWIRE_LIB=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_GUSCLASSIC=m +CONFIG_SND_GUSEXTREME=m +CONFIG_SND_GUSMAX=m +CONFIG_SND_HDA=m +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_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_CORE=m +CONFIG_SND_HDA_DSP_LOADER=y +CONFIG_SND_HDA_EXT_CORE=m +CONFIG_SND_HDA_GENERIC=m +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_PATCH_LOADER=y +CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0 +CONFIG_SND_HDA_PREALLOC_SIZE=64 +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_ICE1712=m +CONFIG_SND_ICE1724=m +CONFIG_SND_IMX_SOC=y +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_INTERWAVE=m +CONFIG_SND_INTERWAVE_STB=m +CONFIG_SND_ISA=y +CONFIG_SND_ISIGHT=m +CONFIG_SND_JACK=y +CONFIG_SND_JACK_INPUT_DEV=y +CONFIG_SND_JAZZ16=m +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_MFLD_MACHINE=m +CONFIG_SND_MIA=m +CONFIG_SND_MIRO=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_MSND_CLASSIC=m +CONFIG_SND_MSND_PINNACLE=m +CONFIG_SND_MTPAV=m +CONFIG_SND_MTS64=m +CONFIG_SND_NM256=m +CONFIG_SND_OMAP_SOC=y +CONFIG_SND_OMAP_SOC_DMIC=m +CONFIG_SND_OMAP_SOC_HDMI_AUDIO=m +CONFIG_SND_OMAP_SOC_MCBSP=y +CONFIG_SND_OMAP_SOC_MCPDM=m +CONFIG_SND_OMAP_SOC_OMAP3_PANDORA=m +CONFIG_SND_OMAP_SOC_OMAP_ABE_TWL6040=m +CONFIG_SND_OMAP_SOC_OMAP_TWL4030=y +CONFIG_SND_OMAP_SOC_RX51=m +CONFIG_SND_OPL3SA2=m +CONFIG_SND_OPL3_LIB=m +CONFIG_SND_OPL3_LIB_SEQ=m +CONFIG_SND_OPL4_LIB=m +CONFIG_SND_OPTI92X_AD1848=m +CONFIG_SND_OPTI92X_CS4231=m +CONFIG_SND_OPTI93X=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_POWERMAC=m +CONFIG_SND_POWERMAC_AUTO_DRC=y +CONFIG_SND_POWERPC_SOC=m +CONFIG_SND_PPC=y +CONFIG_SND_PROC_FS=y +CONFIG_SND_PS3=m +CONFIG_SND_PS3_DEFAULT_START_DELAY=2000 +CONFIG_SND_RAWMIDI=m +CONFIG_SND_RAWMIDI_SEQ=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_SB16=m +CONFIG_SND_SB16_CSP=y +CONFIG_SND_SB16_DSP=m +CONFIG_SND_SB8=m +CONFIG_SND_SB8_DSP=m +CONFIG_SND_SBAWE=m +CONFIG_SND_SB_COMMON=m +CONFIG_SND_SC6000=m +CONFIG_SND_SEQUENCER=m +# CONFIG_SND_SEQUENCER_OSS is not set +CONFIG_SND_SEQ_DUMMY=m +CONFIG_SND_SEQ_HRTIMER_DEFAULT=y +CONFIG_SND_SERIAL_U16550=m +CONFIG_SND_SIMPLE_CARD=m +CONFIG_SND_SIMPLE_CARD_UTILS=m +CONFIG_SND_SIS7019=m +CONFIG_SND_SOC_AC97_BUS=y +CONFIG_SND_SOC_AC97_CODEC=m +CONFIG_SND_SOC_ADAU1701=m +CONFIG_SND_SOC_ADAU7002=m +CONFIG_SND_SOC_AK4104=m +CONFIG_SND_SOC_AK4554=m +CONFIG_SND_SOC_AK4613=m +CONFIG_SND_SOC_AK4642=m +CONFIG_SND_SOC_AK5386=m +CONFIG_SND_SOC_ALC5623=m +CONFIG_SND_SOC_ALC5632=m +CONFIG_SND_SOC_AMD_ACP=m +CONFIG_SND_SOC_APQ8016_SBC=m +CONFIG_SND_SOC_ARNDALE_RT5631_ALC5631=m +CONFIG_SND_SOC_BT_SCO=m +CONFIG_SND_SOC_COMPRESS=y +CONFIG_SND_SOC_CS35L32=m +CONFIG_SND_SOC_CS35L33=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_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_CS4349=m +CONFIG_SND_SOC_CS53L30=m +CONFIG_SND_SOC_DA7219=m +CONFIG_SND_SOC_DMIC=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_ESAI=m +CONFIG_SND_SOC_FSL_SAI=m +CONFIG_SND_SOC_FSL_SPDIF=m +CONFIG_SND_SOC_FSL_UTILS=m +CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM=y +CONFIG_SND_SOC_GTM601=m +CONFIG_SND_SOC_HDAC_HDMI=m +CONFIG_SND_SOC_HDMI_CODEC=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_ES8328=m +CONFIG_SND_SOC_IMX_MC13783=m +CONFIG_SND_SOC_IMX_PCM_DMA=y +CONFIG_SND_SOC_IMX_PCM_FIQ=y +CONFIG_SND_SOC_IMX_SGTL5000=y +CONFIG_SND_SOC_IMX_SPDIF=m +CONFIG_SND_SOC_IMX_SSI=m +CONFIG_SND_SOC_IMX_WM8962=m +CONFIG_SND_SOC_INNO_RK3036=m +CONFIG_SND_SOC_INTEL_BROADWELL_MACH=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_CHT_BSW_MAX98090_TI_MACH=m +CONFIG_SND_SOC_INTEL_CHT_BSW_RT5645_MACH=m +CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH=m +CONFIG_SND_SOC_INTEL_HASWELL=m +CONFIG_SND_SOC_INTEL_HASWELL_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=m +CONFIG_SND_SOC_INTEL_SST=m +CONFIG_SND_SOC_INTEL_SST_ACPI=m +CONFIG_SND_SOC_INTEL_SST_FIRMWARE=m +CONFIG_SND_SOC_INTEL_SST_MATCH=m +CONFIG_SND_SOC_LPASS_APQ8016=m +CONFIG_SND_SOC_LPASS_CPU=m +CONFIG_SND_SOC_LPASS_IPQ806X=m +CONFIG_SND_SOC_LPASS_PLATFORM=m +CONFIG_SND_SOC_MAX98090=m +CONFIG_SND_SOC_MAX98095=m +CONFIG_SND_SOC_MAX98357A=m +CONFIG_SND_SOC_MAX98504=m +CONFIG_SND_SOC_MAX9860=m +CONFIG_SND_SOC_MC13783=m +# CONFIG_SND_SOC_MT2701 is not set +# CONFIG_SND_SOC_MT8173 is not set +CONFIG_SND_SOC_NAU8825=m +CONFIG_SND_SOC_PCM1681=m +CONFIG_SND_SOC_PCM179X=m +CONFIG_SND_SOC_PCM179X_I2C=m +CONFIG_SND_SOC_PCM179X_SPI=m +CONFIG_SND_SOC_PCM3168A=m +CONFIG_SND_SOC_PCM3168A_I2C=m +CONFIG_SND_SOC_PCM3168A_SPI=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_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_RT5645=m +CONFIG_SND_SOC_ROCKCHIP_SPDIF=m +CONFIG_SND_SOC_RT286=m +CONFIG_SND_SOC_RT298=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_RT5670=m +CONFIG_SND_SOC_RT5677=m +CONFIG_SND_SOC_SAMSUNG=m +CONFIG_SND_SOC_SAMSUNG_SMDK_SPDIF=m +CONFIG_SND_SOC_SAMSUNG_SMDK_WM8994=m +CONFIG_SND_SOC_SI476X=m +CONFIG_SND_SOC_SIGMADSP=m +CONFIG_SND_SOC_SIGMADSP_I2C=m +CONFIG_SND_SOC_SIRF_AUDIO_CODEC=m +CONFIG_SND_SOC_SMDK_WM8994_PCM=m +CONFIG_SND_SOC_SN95031=m +CONFIG_SND_SOC_SNOW=m +CONFIG_SND_SOC_SPDIF=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_TAS5086=m +CONFIG_SND_SOC_TAS571X=m +CONFIG_SND_SOC_TAS5720=m +CONFIG_SND_SOC_TEGRA=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_TEGRA30_AHUB=m +CONFIG_SND_SOC_TEGRA30_I2S=m +CONFIG_SND_SOC_TEGRA_ALC5632=m +CONFIG_SND_SOC_TEGRA_MAX98090=m +CONFIG_SND_SOC_TEGRA_RT5640=m +CONFIG_SND_SOC_TEGRA_RT5677=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_TLV320AIC23=m +CONFIG_SND_SOC_TLV320AIC23_I2C=m +CONFIG_SND_SOC_TLV320AIC23_SPI=m +CONFIG_SND_SOC_TLV320AIC31XX=m +CONFIG_SND_SOC_TLV320AIC3X=m +CONFIG_SND_SOC_TOPOLOGY=y +CONFIG_SND_SOC_TPA6130A2=m +CONFIG_SND_SOC_TS3A227E=m +CONFIG_SND_SOC_TWL4030=y +CONFIG_SND_SOC_TWL6040=m +CONFIG_SND_SOC_WM8510=m +CONFIG_SND_SOC_WM8523=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_WM8804=m +CONFIG_SND_SOC_WM8804_I2C=m +CONFIG_SND_SOC_WM8804_SPI=m +CONFIG_SND_SOC_WM8903=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_HUBS=m +CONFIG_SND_SOC_XTFPGA_I2S=m +CONFIG_SND_SONICVIBES=m +CONFIG_SND_SPI=y +CONFIG_SND_SSCAPE=m +CONFIG_SND_SST_IPC=m +CONFIG_SND_SST_IPC_ACPI=m +CONFIG_SND_SST_IPC_PCI=m +CONFIG_SND_SST_MFLD_PLATFORM=m +CONFIG_SND_SUN4I_CODEC=m +CONFIG_SND_SUN4I_I2S=m +CONFIG_SND_SUN4I_SPDIF=m +CONFIG_SND_SUPPORT_OLD_API=y +CONFIG_SND_TRIDENT=m +CONFIG_SND_USB=y +CONFIG_SND_USB_6FIRE=m +CONFIG_SND_USB_AUDIO=m +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_VIRTUOSO=m +CONFIG_SND_VMASTER=y +CONFIG_SND_VX222=m +CONFIG_SND_VXPOCKET=m +CONFIG_SND_VX_LIB=m +CONFIG_SND_WAVEFRONT=m +CONFIG_SND_WSS_LIB=m +CONFIG_SND_YMFPCI=m +CONFIG_SOCK_CGROUP_DATA=y +# CONFIG_SOCRATES is not set +# CONFIG_SOC_AM43XX is not set +# CONFIG_SOC_BRCMSTB is not set +CONFIG_SOC_BUS=y +CONFIG_SOC_CAMERA=m +CONFIG_SOC_CAMERA_IMX074=m +CONFIG_SOC_CAMERA_MT9M001=m +CONFIG_SOC_CAMERA_MT9M111=m +CONFIG_SOC_CAMERA_MT9T031=m +CONFIG_SOC_CAMERA_MT9T112=m +CONFIG_SOC_CAMERA_MT9V022=m +CONFIG_SOC_CAMERA_OV2640=m +CONFIG_SOC_CAMERA_OV5642=m +CONFIG_SOC_CAMERA_OV6650=m +CONFIG_SOC_CAMERA_OV772X=m +CONFIG_SOC_CAMERA_OV9640=m +CONFIG_SOC_CAMERA_OV9740=m +CONFIG_SOC_CAMERA_PLATFORM=m +CONFIG_SOC_CAMERA_RJ54N1=m +CONFIG_SOC_CAMERA_SCALE_CROP=m +CONFIG_SOC_CAMERA_TW9910=m +CONFIG_SOC_DRA7XX=y +CONFIG_SOC_EXYNOS5250=y +CONFIG_SOC_EXYNOS5260=y +CONFIG_SOC_EXYNOS5410=y +CONFIG_SOC_EXYNOS5420=y +CONFIG_SOC_EXYNOS5440=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_IMX6SX=y +CONFIG_SOC_IMX6UL=y +CONFIG_SOC_IMX7D=y +# CONFIG_SOC_LS1021A is not set +CONFIG_SOC_OMAP3430=y +# CONFIG_SOC_OMAP5 is not set +CONFIG_SOC_SAMSUNG=y +CONFIG_SOC_TI81XX=y +CONFIG_SOC_VF610=y +CONFIG_SOFT_WATCHDOG=m +CONFIG_SONYPI=m +CONFIG_SONYPI_COMPAT=y +CONFIG_SONY_FF=y +CONFIG_SONY_LAPTOP=m +CONFIG_SOUND_OSS_CORE=y +# CONFIG_SOUND_OSS_CORE_PRECLAIM is not set +# CONFIG_SOUND_PRIME is not set +CONFIG_SP5100_TCO=m +CONFIG_SPAPR_TCE_IOMMU=y +CONFIG_SPARSEMEM=y +CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=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_SPARSE_RCU_POINTER is not set +CONFIG_SPEAKUP=m +CONFIG_SPEAKUP_SYNTH_ACNTPC=m +CONFIG_SPEAKUP_SYNTH_ACNTSA=m +CONFIG_SPEAKUP_SYNTH_APOLLO=m +CONFIG_SPEAKUP_SYNTH_AUDPTR=m +CONFIG_SPEAKUP_SYNTH_BNS=m +CONFIG_SPEAKUP_SYNTH_DECEXT=m +CONFIG_SPEAKUP_SYNTH_DECPC=m +CONFIG_SPEAKUP_SYNTH_DECTLK=m +CONFIG_SPEAKUP_SYNTH_DTLK=m +CONFIG_SPEAKUP_SYNTH_DUMMY=m +CONFIG_SPEAKUP_SYNTH_KEYPC=m +CONFIG_SPEAKUP_SYNTH_LTLK=m +CONFIG_SPEAKUP_SYNTH_SOFT=m +CONFIG_SPEAKUP_SYNTH_SPKOUT=m +CONFIG_SPEAKUP_SYNTH_TXPRT=m +CONFIG_SPI_ALTERA=m +CONFIG_SPI_AXI_SPI_ENGINE=m +CONFIG_SPI_BCM2835=m +CONFIG_SPI_BCM2835AUX=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_MID_DMA=y +CONFIG_SPI_DW_MMIO=m +CONFIG_SPI_DW_PCI=m +CONFIG_SPI_FSL_CPM=y +CONFIG_SPI_FSL_ESPI=y +CONFIG_SPI_FSL_LIB=y +CONFIG_SPI_FSL_SPI=y +CONFIG_SPI_GPIO=m +CONFIG_SPI_HISI_SFC=m +CONFIG_SPI_IMX=m +CONFIG_SPI_LM70_LLP=m +CONFIG_SPI_LOOPBACK_TEST=m +CONFIG_SPI_MASTER=y +CONFIG_SPI_MESON_SPIFC=m +CONFIG_SPI_MT65XX=m +CONFIG_SPI_OC_TINY=m +CONFIG_SPI_OMAP24XX=y +CONFIG_SPI_ORION=m +CONFIG_SPI_PL022=m +CONFIG_SPI_PXA2XX=m +CONFIG_SPI_QUP=m +CONFIG_SPI_S3C64XX=m +CONFIG_SPI_SC18IS602=m +CONFIG_SPI_SPIDEV=m +CONFIG_SPI_TEGRA114=m +CONFIG_SPI_TEGRA20_SFLASH=m +CONFIG_SPI_TEGRA20_SLINK=m +CONFIG_SPI_TI_QSPI=m +CONFIG_SPI_TLE62X0=m +CONFIG_SPI_TOPCLIFF_PCH=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_MSM_PMIC_ARB=m +CONFIG_SPU_BASE=y +CONFIG_SPU_FS=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_FRAGMENT_CACHE_SIZE=3 +CONFIG_SQUASHFS_LZO=y +CONFIG_SQUASHFS_XATTR=y +CONFIG_SQUASHFS_XZ=y +CONFIG_SQUASHFS_ZLIB=y +CONFIG_SRCU=y +CONFIG_SSB_B43_PCI_BRIDGE=y +CONFIG_SSB_BLOCKIO=y +# CONFIG_SSB_DEBUG is not set +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_SILENT is not set +CONFIG_SSB_SPROM=y +CONFIG_SSFDC=m +CONFIG_SSI_PROTOCOL=m +CONFIG_STACKTRACE=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_STACK_TRACER=y +# CONFIG_STACK_VALIDATION is not set +# CONFIG_STAGING_BOARD is not set +CONFIG_STAGING_MEDIA=y +# CONFIG_STATIC_KEYS_SELFTEST is not set +CONFIG_STK3310=m +CONFIG_STK8312=m +CONFIG_STK8BA50=m +CONFIG_STM=m +CONFIG_STMMAC_ETH=m +# CONFIG_STMMAC_PCI is not set +CONFIG_STMMAC_PLATFORM=m +CONFIG_STMPE_I2C=y +CONFIG_STMPE_SPI=y +CONFIG_STMP_DEVICE=y +CONFIG_STM_DUMMY=m +CONFIG_STM_SOURCE_CONSOLE=m +CONFIG_STM_SOURCE_HEARTBEAT=m +CONFIG_STP=m +CONFIG_STRICT_DEVMEM=y +CONFIG_STUB_CLK_HI6220=y +CONFIG_STX104=m +# CONFIG_STX_GP3 is not set +CONFIG_SUDMAC=m +CONFIG_SUN8I_H3_CCU=y +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_GSS=m +CONFIG_SUNRPC_SWAP=y +CONFIG_SUNRPC_XPRT_RDMA=m +CONFIG_SUNXI_CCU=y +CONFIG_SUNXI_CCU_DIV=y +CONFIG_SUNXI_CCU_FRAC=y +CONFIG_SUNXI_CCU_GATE=y +CONFIG_SUNXI_CCU_MP=y +CONFIG_SUNXI_CCU_MUX=y +CONFIG_SUNXI_CCU_NK=y +CONFIG_SUNXI_CCU_NKM=y +CONFIG_SUNXI_CCU_NKMP=y +CONFIG_SUNXI_CCU_NM=y +CONFIG_SUNXI_CCU_PHASE=y +# CONFIG_SUNXI_SRAM is not set +CONFIG_SURFACE_PRO3_BUTTON=m +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_SUSPEND_SKIP_SYNC is not set +CONFIG_SWAP=y +CONFIG_SWIOTLB=y +CONFIG_SWIOTLB_XEN=y +CONFIG_SWPHY=y +CONFIG_SWP_EMULATE=y +CONFIG_SX9500=m +CONFIG_SXGBE_ETH=m +CONFIG_SYNCLINK=m +CONFIG_SYNCLINKMP=m +CONFIG_SYNCLINK_CS=m +CONFIG_SYNCLINK_GT=m +CONFIG_SYNC_FILE=y +CONFIG_SYNOPSYS_DWC_ETH_QOS=m +CONFIG_SYN_COOKIES=y +CONFIG_SYSCON_REBOOT_MODE=m +CONFIG_SYSCTL=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_SYSFS=y +# CONFIG_SYSFS_DEPRECATED is not set +CONFIG_SYSTEMPORT=m +CONFIG_SYSTEM_BLACKLIST_KEYRING=y +CONFIG_SYSTEM_DATA_VERIFICATION=y +CONFIG_SYSTEM_EXTRA_CERTIFICATE=y +CONFIG_SYSTEM_EXTRA_CERTIFICATE_SIZE=4096 +CONFIG_SYSTEM_TRUSTED_KEYRING=y +CONFIG_SYSTEM_TRUSTED_KEYS="" +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_COMPAT=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_SYSV_FS=m +CONFIG_SYS_SUPPORTS_APM_EMULATION=y +CONFIG_SYS_SUPPORTS_EM_STI=y +CONFIG_SYS_SUPPORTS_HUGETLBFS=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_GTCO=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_TANGOX_WATCHDOG is not set +CONFIG_TANGO_IRQ=y +# CONFIG_TANGO_THERMAL is not set +CONFIG_TARGET_CORE=m +CONFIG_TASKSTATS=y +CONFIG_TASKS_RCU=y +CONFIG_TASK_DELAY_ACCT=y +CONFIG_TASK_IO_ACCOUNTING=y +CONFIG_TASK_SIZE=0xc0000000 +CONFIG_TASK_XACCT=y +CONFIG_TAU=y +# CONFIG_TAU_AVERAGE is not set +# CONFIG_TAU_INT is not set +CONFIG_TC1100_WMI=m +CONFIG_TCG_ATMEL=m +CONFIG_TCG_CRB=m +CONFIG_TCG_IBMVTPM=y +CONFIG_TCG_INFINEON=m +CONFIG_TCG_NSC=m +CONFIG_TCG_TIS=y +CONFIG_TCG_TIS_SPI=m +CONFIG_TCG_TIS_ST33ZP24=m +CONFIG_TCG_TIS_ST33ZP24_SPI=m +CONFIG_TCG_TPM=y +CONFIG_TCG_VTPM_PROXY=m +CONFIG_TCG_XEN=m +CONFIG_TCIC=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_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_TEGRA124_EMC=y +CONFIG_TEGRA20_APB_DMA=y +CONFIG_TEGRA20_MC=y +CONFIG_TEGRA_AHB=y +CONFIG_TEGRA_CLK_EMC=y +CONFIG_TEGRA_HOST1X=m +CONFIG_TEGRA_HOST1X_FIREWALL=y +CONFIG_TEGRA_IOMMU_GART=y +CONFIG_TEGRA_IOMMU_SMMU=y +CONFIG_TEGRA_MC=y +# CONFIG_TEGRA_SOCTHERM is not set +CONFIG_TEGRA_TIMER=y +CONFIG_TEGRA_WATCHDOG=m +CONFIG_TEHUTI=m +CONFIG_TEKRAM_DONGLE=m +CONFIG_TELCLOCK=m +CONFIG_TEST_BPF=m +CONFIG_TEST_FIRMWARE=m +CONFIG_TEST_HASH=m +# CONFIG_TEST_LIST_SORT is not set +CONFIG_TEST_POWER=m +# CONFIG_TEST_RHASHTABLE is not set +CONFIG_TEST_STATIC_KEYS=m +CONFIG_TEST_USER_COPY=m +CONFIG_TEST_UUID=m +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_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_OF=y +CONFIG_THERMAL_WRITABLE_TRIPS=y +CONFIG_THERM_ADT746X=y +CONFIG_THERM_WINDTUNNEL=m +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_THRUSTMASTER_FF=y +# CONFIG_THUMB2_KERNEL is not set +CONFIG_THUNDER_NIC_BGX=m +CONFIG_THUNDER_NIC_PF=m +CONFIG_THUNDER_NIC_VF=m +CONFIG_TICK_CPU_ACCOUNTING=y +CONFIG_TICK_ONESHOT=y +CONFIG_TIFM_7XX1=m +CONFIG_TIGON3=m +CONFIG_TIMB_DMA=m +CONFIG_TIMERFD=y +CONFIG_TIMER_STATS=y +CONFIG_TIPC=m +CONFIG_TIPC_MEDIA_IB=y +CONFIG_TIPC_MEDIA_UDP=y +CONFIG_TI_ADC081C=m +CONFIG_TI_ADC0832=m +CONFIG_TI_ADC128S052=m +CONFIG_TI_ADS1015=m +CONFIG_TI_ADS8688=m +CONFIG_TI_AM335X_ADC=m +CONFIG_TI_CPPI41=m +CONFIG_TI_CPSW=y +CONFIG_TI_CPSW_PHY_SEL=y +CONFIG_TI_CPTS=y +CONFIG_TI_DAC7512=m +CONFIG_TI_DAVINCI_CPDMA=y +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_PIPE3=m +CONFIG_TI_SOC_THERMAL=m +CONFIG_TI_ST=m +CONFIG_TI_SYSCON_RESET=m +CONFIG_TI_THERMAL=y +CONFIG_TLAN=m +CONFIG_TMD_HERMES=m +CONFIG_TMP006=m +CONFIG_TMPFS=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_TOIM3232_DONGLE=m +CONFIG_TOPSTAR_LAPTOP=m +CONFIG_TORTURE_TEST=m +# CONFIG_TOSHIBA is not set +CONFIG_TOSHIBA_BT_RFKILL=m +CONFIG_TOSHIBA_FIR=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_ADS7846=m +CONFIG_TOUCHSCREEN_AR1021_I2C=m +CONFIG_TOUCHSCREEN_ATMEL_MXT=m +CONFIG_TOUCHSCREEN_AUO_PIXCIR=m +CONFIG_TOUCHSCREEN_BU21013=m +CONFIG_TOUCHSCREEN_CHIPONE_ICN8318=m +CONFIG_TOUCHSCREEN_COLIBRI_VF50=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_DYNAPRO=m +CONFIG_TOUCHSCREEN_EDT_FT5X06=m +CONFIG_TOUCHSCREEN_EETI=m +CONFIG_TOUCHSCREEN_EGALAX=m +CONFIG_TOUCHSCREEN_EGALAX_SERIAL=m +CONFIG_TOUCHSCREEN_ELAN=y +CONFIG_TOUCHSCREEN_ELO=m +CONFIG_TOUCHSCREEN_FT6236=m +CONFIG_TOUCHSCREEN_FUJITSU=m +CONFIG_TOUCHSCREEN_GOODIX=m +CONFIG_TOUCHSCREEN_GUNZE=m +CONFIG_TOUCHSCREEN_HAMPSHIRE=m +CONFIG_TOUCHSCREEN_HTCPEN=m +CONFIG_TOUCHSCREEN_ILI210X=m +CONFIG_TOUCHSCREEN_IMX6UL_TSC=m +CONFIG_TOUCHSCREEN_INEXIO=m +CONFIG_TOUCHSCREEN_INTEL_MID=m +CONFIG_TOUCHSCREEN_IPROC=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_MTOUCH=m +CONFIG_TOUCHSCREEN_PCAP=m +CONFIG_TOUCHSCREEN_PENMOUNT=m +CONFIG_TOUCHSCREEN_PIXCIR=m +CONFIG_TOUCHSCREEN_PROPERTIES=y +CONFIG_TOUCHSCREEN_RM_TS=m +CONFIG_TOUCHSCREEN_ROHM_BU21023=m +CONFIG_TOUCHSCREEN_SILEAD=m +CONFIG_TOUCHSCREEN_SIS_I2C=m +CONFIG_TOUCHSCREEN_ST1232=m +CONFIG_TOUCHSCREEN_STMPE=m +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_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_ZFORCE=m +CONFIG_TPL0102=m +CONFIG_TPS65010=m +# CONFIG_TQM8540 is not set +# CONFIG_TQM8541 is not set +# CONFIG_TQM8548 is not set +# CONFIG_TQM8555 is not set +# CONFIG_TQM8560 is not set +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_ENUM_MAP_FILE is not set +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_TRACE_ROUTER=m +CONFIG_TRACING=y +CONFIG_TRACING_EVENTS_GPIO=y +CONFIG_TRACING_MAP=y +CONFIG_TRACING_SUPPORT=y +CONFIG_TRANSPARENT_HUGE_PAGECACHE=y +CONFIG_TREE_RCU=y +# CONFIG_TREE_RCU_TRACE is not set +# CONFIG_TRIM_UNUSED_KSYMS is not set +CONFIG_TRUSTED_FOUNDATIONS=y +CONFIG_TS4800_IRQ=m +CONFIG_TS4800_WATCHDOG=m +CONFIG_TSL2583=m +CONFIG_TSL2x7x=m +CONFIG_TSL4531=m +CONFIG_TSYS01=m +CONFIG_TSYS02D=m +CONFIG_TTPCI_EEPROM=m +CONFIG_TTY=y +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=y +# CONFIG_TUNE_Z10 is not set +# CONFIG_TUNE_Z13 is not set +# 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_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_TWR_P102x=y +CONFIG_TYPHOON=m +# CONFIG_UACCESS_WITH_MEMCPY is not set +CONFIG_UBIFS_FS=m +# CONFIG_UBIFS_FS_ADVANCED_COMPR is not set +CONFIG_UBIFS_FS_LZO=y +CONFIG_UBIFS_FS_ZLIB=y +# CONFIG_UBSAN is not set +CONFIG_UCB1400_CORE=m +CONFIG_UCC=y +CONFIG_UCC_FAST=y +CONFIG_UCC_GETH=m +CONFIG_UCC_SLOW=y +CONFIG_UCS2_STRING=y +CONFIG_UCSI=m +CONFIG_UDF_FS=m +CONFIG_UDF_NLS=y +CONFIG_UEFI_CPER=y +CONFIG_UEVENT_HELPER=y +CONFIG_UEVENT_HELPER_PATH="" +# CONFIG_UFS_DEBUG is not set +CONFIG_UFS_FS=m +# CONFIG_UFS_FS_WRITE is not set +CONFIG_UGETH_TX_ON_DEMAND=y +CONFIG_UHID=m +CONFIG_UID16=y +CONFIG_UIO_AEC=m +CONFIG_UIO_CIF=m +CONFIG_UIO_DMEM_GENIRQ=m +CONFIG_UIO_FSL_ELBC_GPCM=m +# CONFIG_UIO_FSL_ELBC_GPCM_NETX5152 is not set +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_ULI526X=m +CONFIG_ULTRA=m +CONFIG_UNCOMPRESS_INCLUDE="debug/uncompress.h" +CONFIG_UNINLINE_SPIN_UNLOCK=y +CONFIG_UNIPHIER_SYSTEM_BUS=y +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_UPROBE_EVENT=y +CONFIG_US5182D=m +CONFIG_USB=y +CONFIG_USBIP_CORE=m +# CONFIG_USBIP_DEBUG is not set +CONFIG_USBIP_HOST=m +CONFIG_USBIP_VHCI_HCD=m +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_ATM=m +CONFIG_USB_AUDIO=m +CONFIG_USB_BDC_PCI=m +CONFIG_USB_BDC_UDC=m +CONFIG_USB_BELKIN=y +CONFIG_USB_C67X00_HCD=m +CONFIG_USB_CATC=m +CONFIG_USB_CDC_COMPOSITE=m +CONFIG_USB_CDC_PHONET=m +CONFIG_USB_CHAOSKEY=m +CONFIG_USB_CHIPIDEA=m +CONFIG_USB_CHIPIDEA_HOST=y +CONFIG_USB_CHIPIDEA_OF=m +CONFIG_USB_CHIPIDEA_PCI=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_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_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_HOST is not set +CONFIG_USB_DWC3_OF_SIMPLE=m +CONFIG_USB_DWC3_OMAP=m +CONFIG_USB_DWC3_PCI=m +CONFIG_USB_DWC3_ULPI=y +CONFIG_USB_DYNAMIC_MINORS=y +CONFIG_USB_EG20T=m +CONFIG_USB_EHCI_BIG_ENDIAN_DESC=y +CONFIG_USB_EHCI_BIG_ENDIAN_MMIO=y +CONFIG_USB_EHCI_EXYNOS=y +CONFIG_USB_EHCI_FSL=y +CONFIG_USB_EHCI_HCD=y +CONFIG_USB_EHCI_HCD_OMAP=m +CONFIG_USB_EHCI_HCD_ORION=y +CONFIG_USB_EHCI_HCD_PPC_OF=y +CONFIG_USB_EHCI_MSM=m +CONFIG_USB_EHCI_MXC=m +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_FHCI_HCD=m +CONFIG_USB_FOTG210_HCD=m +CONFIG_USB_FOTG210_UDC=m +CONFIG_USB_FSL_QE=m +CONFIG_USB_FSL_USB2=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_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_HSO=m +CONFIG_USB_HWA_HCD=m +CONFIG_USB_IDMOUSE=m +CONFIG_USB_IMX21_HCD=m +CONFIG_USB_IOWARRIOR=m +CONFIG_USB_IPHETH=m +CONFIG_USB_IRDA=m +CONFIG_USB_ISIGHTFW=m +CONFIG_USB_ISP116X_HCD=m +CONFIG_USB_ISP1301=m +CONFIG_USB_ISP1362_HCD=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_LED_TRIG=y +CONFIG_USB_LEGOTOWER=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_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_MSM_OTG=m +CONFIG_USB_MUSB_AM335X_CHILD=m +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_OMAP2PLUS=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_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_BIG_ENDIAN_DESC=y +CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y +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_LE is not set +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +# CONFIG_USB_OTG is not set +# CONFIG_USB_OTG_BLACKLIST_HUB is not set +# CONFIG_USB_OTG_WHITELIST is not set +CONFIG_USB_OXU210HP_HCD=m +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_QCOM_8X16_PHY=m +CONFIG_USB_R8A66597=m +CONFIG_USB_R8A66597_HCD=m +CONFIG_USB_RAREMONO=m +# CONFIG_USB_RENESAS_USB3 is not set +CONFIG_USB_RENESAS_USBHS_HCD=m +CONFIG_USB_RENESAS_USBHS_UDC=m +CONFIG_USB_RIO500=m +CONFIG_USB_RTL8150=m +CONFIG_USB_RTL8152=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_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_MPR=y +CONFIG_USB_SERIAL_KEYSPAN_PDA=m +CONFIG_USB_SERIAL_KEYSPAN_USA18X=y +CONFIG_USB_SERIAL_KEYSPAN_USA19=y +CONFIG_USB_SERIAL_KEYSPAN_USA19QI=y +CONFIG_USB_SERIAL_KEYSPAN_USA19QW=y +CONFIG_USB_SERIAL_KEYSPAN_USA19W=y +CONFIG_USB_SERIAL_KEYSPAN_USA28=y +CONFIG_USB_SERIAL_KEYSPAN_USA28X=y +CONFIG_USB_SERIAL_KEYSPAN_USA28XA=y +CONFIG_USB_SERIAL_KEYSPAN_USA28XB=y +CONFIG_USB_SERIAL_KEYSPAN_USA49W=y +CONFIG_USB_SERIAL_KEYSPAN_USA49WLC=y +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_VISOR=m +CONFIG_USB_SERIAL_WHITEHEAT=m +CONFIG_USB_SERIAL_WISHBONE=m +CONFIG_USB_SERIAL_WWAN=m +CONFIG_USB_SERIAL_XIRCOM=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_SISUSBVGA_CON is not set +CONFIG_USB_SL811_CS=m +CONFIG_USB_SL811_HCD=m +CONFIG_USB_SL811_HCD_ISO=y +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_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_HCD=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_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_WHCI_HCD=m +CONFIG_USB_WUSB=m +CONFIG_USB_WUSB_CBAF=m +# CONFIG_USB_WUSB_CBAF_DEBUG is not set +CONFIG_USB_XHCI_HCD=y +CONFIG_USB_XHCI_MTK=m +CONFIG_USB_XHCI_MVEBU=m +CONFIG_USB_XHCI_PCI=y +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_USERFAULTFD=y +CONFIG_USERIO=m +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_UWB_HWA=m +CONFIG_UWB_I1480U=m +CONFIG_UWB_WHCI=m +CONFIG_U_SERIAL_CONSOLE=y +CONFIG_V4L2_FLASH_LED_CLASS=m +CONFIG_V4L2_MEM2MEM_DEV=m +CONFIG_V4L_MEM2MEM_DRIVERS=y +CONFIG_V4L_PLATFORM_DRIVERS=y +CONFIG_V4L_RADIO_ISA_DRIVERS=y +CONFIG_V4L_TEST_DRIVERS=y +CONFIG_VCNL4000=m +CONFIG_VDSO=y +CONFIG_VDSO32=y +CONFIG_VECTORS_BASE=0xffff0000 +CONFIG_VEML6070=m +CONFIG_VERSION_SIGNATURE="" +CONFIG_VETH=m +CONFIG_VEXPRESS_CONFIG=y +CONFIG_VEXPRESS_SYSCFG=y +CONFIG_VF610_ADC=m +CONFIG_VF610_DAC=m +CONFIG_VFAT_FS=y +CONFIG_VFIO_AMBA=m +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_CALXEDAXGMAC_RESET=m +CONFIG_VFP=y +CONFIG_VFPv3=y +CONFIG_VF_USE_ARM_GLOBAL_TIMER=y +# CONFIG_VF_USE_PIT_TIMER is not set +# CONFIG_VGACON_SOFT_SCROLLBACK is not set +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_NET=m +CONFIG_VHOST_RING=m +CONFIG_VHOST_SCSI=m +CONFIG_VHOST_VSOCK=m +CONFIG_VIA_FIR=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_VMALLOC=m +CONFIG_VIDEOBUF_DMA_CONTIG=m +CONFIG_VIDEOBUF_DMA_SG=m +CONFIG_VIDEOBUF_DVB=m +CONFIG_VIDEOBUF_GEN=m +CONFIG_VIDEOBUF_VMALLOC=m +CONFIG_VIDEOMODE_HELPERS=y +CONFIG_VIDEO_ADV7170=m +CONFIG_VIDEO_ADV7175=m +CONFIG_VIDEO_ADV7511=m +CONFIG_VIDEO_ADV7604=m +CONFIG_VIDEO_ADV7842=m +# CONFIG_VIDEO_ADV_DEBUG is not set +CONFIG_VIDEO_AU0828=m +CONFIG_VIDEO_AU0828_RC=y +CONFIG_VIDEO_AU0828_V4L2=y +CONFIG_VIDEO_BT819=m +CONFIG_VIDEO_BT848=m +CONFIG_VIDEO_BT856=m +CONFIG_VIDEO_BT866=m +CONFIG_VIDEO_CAFE_CCIC=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_EM28XX=m +CONFIG_VIDEO_EM28XX_ALSA=m +CONFIG_VIDEO_EM28XX_DVB=m +CONFIG_VIDEO_EM28XX_RC=m +CONFIG_VIDEO_EM28XX_V4L2=m +CONFIG_VIDEO_FB_IVTV=m +# 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_HDPVR=m +CONFIG_VIDEO_HEXIUM_GEMINI=m +CONFIG_VIDEO_HEXIUM_ORION=m +CONFIG_VIDEO_IR_I2C=m +CONFIG_VIDEO_IVTV=m +CONFIG_VIDEO_IVTV_ALSA=m +CONFIG_VIDEO_KS0127=m +CONFIG_VIDEO_M52790=m +CONFIG_VIDEO_MEDIATEK_VPU=m +CONFIG_VIDEO_MEM2MEM_DEINTERLACE=m +CONFIG_VIDEO_MEYE=m +CONFIG_VIDEO_MSP3400=m +CONFIG_VIDEO_MT9V011=m +CONFIG_VIDEO_MXB=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_OV7640=m +CONFIG_VIDEO_OV7670=m +CONFIG_VIDEO_PVRUSB2=m +# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set +CONFIG_VIDEO_PVRUSB2_DVB=y +CONFIG_VIDEO_PVRUSB2_SYSFS=y +# CONFIG_VIDEO_RCAR_VIN_OLD is not set +CONFIG_VIDEO_RENESAS_FCP=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_CEC=m +CONFIG_VIDEO_SAMSUNG_S5P_G2D=m +CONFIG_VIDEO_SAMSUNG_S5P_HDMI=m +CONFIG_VIDEO_SAMSUNG_S5P_HDMIPHY=m +# CONFIG_VIDEO_SAMSUNG_S5P_HDMI_DEBUG is not set +CONFIG_VIDEO_SAMSUNG_S5P_JPEG=m +CONFIG_VIDEO_SAMSUNG_S5P_MFC=m +CONFIG_VIDEO_SAMSUNG_S5P_MIXER=m +# CONFIG_VIDEO_SAMSUNG_S5P_MIXER_DEBUG is not set +CONFIG_VIDEO_SAMSUNG_S5P_SDO=m +CONFIG_VIDEO_SAMSUNG_S5P_SII9234=m +CONFIG_VIDEO_SAMSUNG_S5P_TV=y +CONFIG_VIDEO_SH_VEU=m +CONFIG_VIDEO_SOLO6X10=m +CONFIG_VIDEO_SONY_BTF_MPX=m +CONFIG_VIDEO_STK1160=m +CONFIG_VIDEO_STK1160_AC97=y +CONFIG_VIDEO_STK1160_COMMON=m +CONFIG_VIDEO_TDA7432=m +CONFIG_VIDEO_TDA9840=m +CONFIG_VIDEO_TEA6415C=m +CONFIG_VIDEO_TEA6420=m +CONFIG_VIDEO_TI_CAL=m +CONFIG_VIDEO_TI_VPE=m +# CONFIG_VIDEO_TI_VPE_DEBUG is not set +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_TVP5150=m +CONFIG_VIDEO_TW2804=m +CONFIG_VIDEO_TW68=m +CONFIG_VIDEO_TW686X=m +CONFIG_VIDEO_TW9903=m +CONFIG_VIDEO_TW9906=m +CONFIG_VIDEO_UDA1342=m +CONFIG_VIDEO_UPD64031A=m +CONFIG_VIDEO_UPD64083=m +CONFIG_VIDEO_USBTV=m +CONFIG_VIDEO_USBVISION=m +CONFIG_VIDEO_V4L2=m +CONFIG_VIDEO_V4L2_SUBDEV_API=y +CONFIG_VIDEO_V4L2_TPG=m +CONFIG_VIDEO_VIA_CAMERA=m +CONFIG_VIDEO_VIM2M=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_WM8739=m +CONFIG_VIDEO_WM8775=m +CONFIG_VIDEO_XILINX=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_INPUT=m +CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES=y +CONFIG_VIRTIO_NET=m +CONFIG_VIRTIO_PCI=y +CONFIG_VIRTIO_PCI_LEGACY=y +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_VLAN_8021Q=m +CONFIG_VLAN_8021Q_GVRP=y +CONFIG_VLAN_8021Q_MVRP=y +CONFIG_VLSI_FIR=m +CONFIG_VMCP=y +CONFIG_VMD=m +CONFIG_VME_CA91CX42=m +CONFIG_VME_PIO2=m +CONFIG_VME_TSI148=m +CONFIG_VME_USER=m +CONFIG_VMIVME_7805=m +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_VOP=m +CONFIG_VOP_BUS=m +CONFIG_VORTEX=m +CONFIG_VSOCKETS=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_VXFS_FS=m +CONFIG_VXGE=m +# 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_SLAVE_BQ27000=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_DS2431=m +CONFIG_W1_SLAVE_DS2433=m +# CONFIG_W1_SLAVE_DS2433_CRC is not set +CONFIG_W1_SLAVE_DS2760=m +CONFIG_W1_SLAVE_DS2780=m +CONFIG_W1_SLAVE_DS2781=m +CONFIG_W1_SLAVE_DS28E04=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_DEV_COREDUMP=y +CONFIG_WANXL=m +# CONFIG_WARN_DYNAMIC_STACK is not set +CONFIG_WATCHDOG=y +CONFIG_WATCHDOG_CORE=y +# CONFIG_WATCHDOG_NOWAYOUT is not set +CONFIG_WATCHDOG_RTAS=m +CONFIG_WATCHDOG_SYSFS=y +CONFIG_WCN36XX=m +# CONFIG_WCN36XX_DEBUGFS is not set +CONFIG_WD80x3=m +CONFIG_WDT=m +CONFIG_WEXT_CORE=y +CONFIG_WEXT_PRIV=y +CONFIG_WEXT_PROC=y +CONFIG_WEXT_SPY=y +CONFIG_WIL6210=m +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_WILINK_PLATFORM_DATA=y +CONFIG_WIMAX=m +CONFIG_WIMAX_DEBUG_LEVEL=8 +CONFIG_WIMAX_I2400M=m +CONFIG_WIMAX_I2400M_DEBUG_LEVEL=8 +CONFIG_WIMAX_I2400M_USB=m +CONFIG_WINBOND_840=m +CONFIG_WINBOND_FIR=m +CONFIG_WINDFARM=m +CONFIG_WINDFARM_PM112=m +CONFIG_WINDFARM_PM121=m +CONFIG_WINDFARM_PM72=m +CONFIG_WINDFARM_PM81=m +CONFIG_WINDFARM_PM91=m +CONFIG_WINDFARM_RM31=m +CONFIG_WIRELESS=y +CONFIG_WIRELESS_EXT=y +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_RALINK=y +CONFIG_WLAN_VENDOR_REALTEK=y +CONFIG_WLAN_VENDOR_RSI=y +CONFIG_WLAN_VENDOR_ST=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_WQ_POWER_EFFICIENT_DEFAULT=y +CONFIG_X25=m +CONFIG_X25_ASY=m +CONFIG_X509_CERTIFICATE_PARSER=y +CONFIG_X86=y +CONFIG_X86_16BIT=y +CONFIG_X86_32=y +CONFIG_X86_32_IRIS=m +# CONFIG_X86_32_NON_STANDARD is not set +CONFIG_X86_32_SMP=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_ANCIENT_MCE is not set +CONFIG_X86_APM_BOOT=y +# CONFIG_X86_BIGSMP is not set +CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y +CONFIG_X86_CHECK_BIOS_CORRUPTION=y +CONFIG_X86_CMOV=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CPUFREQ_NFORCE2=y +CONFIG_X86_CPUID=m +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_X86_DEBUG_FPU=y +# CONFIG_X86_DECODER_SELFTEST is not set +CONFIG_X86_DEV_DMA_OPS=y +CONFIG_X86_DIRECT_GBPAGES=y +CONFIG_X86_ESPFIX32=y +CONFIG_X86_ESPFIX64=y +CONFIG_X86_EXTENDED_PLATFORM=y +# CONFIG_X86_E_POWERSAVER is not set +CONFIG_X86_FAST_FEATURE_TESTS=y +CONFIG_X86_FEATURE_NAMES=y +CONFIG_X86_GENERIC=y +# CONFIG_X86_GOLDFISH is not set +CONFIG_X86_GX_SUSPMOD=m +CONFIG_X86_INTEL_LPSS=y +CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y +CONFIG_X86_INTEL_MPX=y +CONFIG_X86_INTEL_PSTATE=y +# CONFIG_X86_INTEL_QUARK is not set +CONFIG_X86_INTEL_USERCOPY=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_IO_APIC=y +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_LEGACY_VM86=y +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_LONGHAUL=m +CONFIG_X86_LONGRUN=m +CONFIG_X86_MCE=y +CONFIG_X86_MCE_AMD=y +CONFIG_X86_MCE_INJECT=m +CONFIG_X86_MCE_INTEL=y +CONFIG_X86_MCE_THRESHOLD=y +CONFIG_X86_MPPARSE=y +CONFIG_X86_MSR=m +CONFIG_X86_NEED_RELOCS=y +CONFIG_X86_NUMACHIP=y +CONFIG_X86_P4_CLOCKMOD=m +CONFIG_X86_PAE=y +CONFIG_X86_PAT=y +CONFIG_X86_PCC_CPUFREQ=y +CONFIG_X86_PKG_TEMP_THERMAL=m +CONFIG_X86_PLATFORM_DEVICES=y +CONFIG_X86_PMEM_LEGACY=y +CONFIG_X86_PMEM_LEGACY_DEVICE=y +CONFIG_X86_PM_TIMER=y +CONFIG_X86_POWERNOW_K6=m +CONFIG_X86_POWERNOW_K7=m +CONFIG_X86_POWERNOW_K7_ACPI=y +CONFIG_X86_POWERNOW_K8=y +CONFIG_X86_PPRO_FENCE=y +# CONFIG_X86_PTDUMP is not set +CONFIG_X86_PTDUMP_CORE=y +# CONFIG_X86_RDC321X is not set +CONFIG_X86_REBOOTFIXUPS=y +CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y +CONFIG_X86_RESERVE_LOW=64 +CONFIG_X86_SFI_CPUFREQ=m +CONFIG_X86_SMAP=y +CONFIG_X86_SPEEDSTEP_CENTRINO=y +CONFIG_X86_SPEEDSTEP_CENTRINO_TABLE=y +CONFIG_X86_SPEEDSTEP_ICH=y +CONFIG_X86_SPEEDSTEP_RELAXED_CAP_CHECK=y +CONFIG_X86_SPEEDSTEP_SMI=y +CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y +# CONFIG_X86_SYSFB is not set +CONFIG_X86_THERMAL_VECTOR=y +CONFIG_X86_TSC=y +CONFIG_X86_USE_PPRO_CHECKSUM=y +# CONFIG_X86_UV is not set +# CONFIG_X86_VERBOSE_BOOTUP is not set +# CONFIG_X86_VSMP is not set +CONFIG_X86_VSYSCALL_EMULATION=y +CONFIG_X86_X2APIC=y +CONFIG_X86_X32=y +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_GNTDEV=m +CONFIG_XEN_GRANT_DEV_ALLOC=m +CONFIG_XEN_HAVE_PVMMU=y +CONFIG_XEN_HAVE_VPMU=y +CONFIG_XEN_MCE_LOG=y +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_PVH=y +CONFIG_XEN_PVHVM=y +CONFIG_XEN_SAVE_RESTORE=y +CONFIG_XEN_SCRUB_PAGES=y +CONFIG_XEN_SCSI_BACKEND=m +CONFIG_XEN_SCSI_FRONTEND=m +CONFIG_XEN_SELFBALLOONING=y +CONFIG_XEN_SYMS=y +CONFIG_XEN_SYS_HYPERVISOR=y +CONFIG_XEN_TMEM=m +CONFIG_XEN_WDT=m +CONFIG_XEN_XENBUS_FRONTEND=y +# CONFIG_XES_MPC85xx is not set +CONFIG_XFRM=y +CONFIG_XFRM_ALGO=m +CONFIG_XFRM_IPCOMP=m +CONFIG_XFRM_USER=m +# CONFIG_XFS_DEBUG is not set +CONFIG_XFS_FS=m +CONFIG_XFS_POSIX_ACL=y +CONFIG_XFS_QUOTA=y +CONFIG_XFS_RT=y +# CONFIG_XFS_WARN is not set +CONFIG_XGENE_DMA=m +CONFIG_XGENE_SLIMPRO_MBOX=m +CONFIG_XILINX_DMA=m +CONFIG_XILINX_EMACLITE=m +CONFIG_XILINX_LL_TEMAC=m +CONFIG_XILINX_ZYNQMP_DMA=m +CONFIG_XILLYBUS_OF=m +CONFIG_XILLYBUS_PCIE=m +CONFIG_XMON=y +# CONFIG_XMON_DEFAULT is not set +CONFIG_XMON_DISASSEMBLY=y +CONFIG_XOR_BLOCKS=m +CONFIG_XPS=y +CONFIG_XPS_USB_HCD_XILINX=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_ARM=y +CONFIG_XZ_DEC_BCJ=y +CONFIG_XZ_DEC_IA64=y +CONFIG_XZ_DEC_POWERPC=y +CONFIG_XZ_DEC_SPARC=y +CONFIG_XZ_DEC_X86=y +CONFIG_YAM=m +CONFIG_YELLOWFIN=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_ZD1211RW=m +# CONFIG_ZD1211RW_DEBUG is not set +CONFIG_ZEROPLUS_FF=y +CONFIG_ZFCP=m +CONFIG_ZIIRAVE_WATCHDOG=m +CONFIG_ZISOFS=y +CONFIG_ZLIB_INFLATE=y +CONFIG_ZONE_DEVICE=y +CONFIG_ZONE_DMA=y +CONFIG_ZONE_DMA32=y +CONFIG_ZPOOL=y +CONFIG_ZRAM=m +# CONFIG_ZSMALLOC_STAT is not set +CONFIG_ZSWAP=y --- linux-4.8.0.orig/debian.master/config/i386/config.common.i386 +++ linux-4.8.0/debian.master/config/i386/config.common.i386 @@ -0,0 +1,670 @@ +# +# Config options for config.common.i386 automatically generated by splitconfig.pl +# +# CONFIG_64BIT 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_ABX500_CORE=y +CONFIG_AC97_BUS=m +CONFIG_ACPI_DOCK=y +CONFIG_ACPI_EC_DEBUGFS=m +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +CONFIG_AD525X_DPOT=m +CONFIG_AIX_PARTITION=y +CONFIG_ALIM7101_WDT=m +CONFIG_ALTERA_STAPL=m +CONFIG_ALTERA_TSE=m +CONFIG_AMD_PHY=m +CONFIG_AMIGA_PARTITION=y +CONFIG_APDS9802ALS=m +CONFIG_APPLICOM=m +CONFIG_AQUANTIA_PHY=m +CONFIG_ARCH_DEFCONFIG="arch/x86/configs/i386_defconfig" +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_ARCH_MMAP_RND_BITS=8 +CONFIG_ARCH_MMAP_RND_BITS_MAX=16 +CONFIG_ARCH_MMAP_RND_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set +CONFIG_ARCH_PHYS_ADDR_T_64BIT=y +CONFIG_ARCH_RANDOM=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCNET=m +CONFIG_ASYNC_RAID6_TEST=m +CONFIG_AT803X_PHY=m +CONFIG_ATALK=m +CONFIG_ATARI_PARTITION=y +CONFIG_ATA_GENERIC=y +# CONFIG_ATA_NONSTANDARD is not set +CONFIG_ATA_OVER_ETH=m +CONFIG_ATA_PIIX=y +CONFIG_ATM=m +# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set +CONFIG_AUXDISPLAY=y +CONFIG_BACKLIGHT_LCD_SUPPORT=y +# CONFIG_BATMAN_ADV_BATMAN_V is not set +CONFIG_BCH=m +CONFIG_BCM7XXX_PHY=m +CONFIG_BCM87XX_PHY=m +CONFIG_BCMA=m +CONFIG_BCM_KONA_USB2_PHY=m +CONFIG_BE2ISCSI=m +CONFIG_BLK_CMDLINE_PARSER=y +CONFIG_BLK_CPQ_CISS_DA=m +CONFIG_BLK_DEV_3W_XXXX_RAID=m +CONFIG_BLK_DEV_CRYPTOLOOP=m +CONFIG_BLK_DEV_DAC960=m +CONFIG_BLK_DEV_NVME=m +CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m +CONFIG_BLK_DEV_RSXX=m +# CONFIG_BLK_DEV_SR_VENDOR is not set +CONFIG_BLK_DEV_SX8=m +CONFIG_BLK_DEV_UMEM=m +CONFIG_BMP085_I2C=m +CONFIG_BROADCOM_PHY=m +CONFIG_C2PORT=m +CONFIG_CADENCE_WATCHDOG=m +CONFIG_CAIF_HSI=m +CONFIG_CAIF_SPI_SLAVE=m +CONFIG_CAIF_TTY=m +CONFIG_CAIF_VIRTIO=m +CONFIG_CB710_CORE=m +CONFIG_CC_STACKPROTECTOR=y +CONFIG_CDROM_PKTCDVD=m +CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y +CONFIG_CGROUP_HUGETLB=y +CONFIG_CICADA_PHY=m +CONFIG_CIFS_SMB311=y +# CONFIG_CIFS_STATS2 is not set +# CONFIG_CLS_U32_PERF is not set +CONFIG_CMA=y +CONFIG_CMDLINE_PARTITION=y +# CONFIG_CPU_NO_EFFICIENT_FFS is not set +CONFIG_CRAMFS=m +CONFIG_CRASH_DUMP=y +CONFIG_CRC16=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_CTR=y +CONFIG_CRYPTO_CTS=y +CONFIG_CRYPTO_DRBG=y +CONFIG_CRYPTO_DRBG_MENU=y +CONFIG_CRYPTO_GF128MUL=y +CONFIG_CRYPTO_JITTERENTROPY=y +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_RNG_DEFAULT=y +CONFIG_CRYPTO_SEQIV=y +CONFIG_CRYPTO_XTS=y +# CONFIG_CXL_AFU_DRIVER_OPS is not set +# CONFIG_CXL_BASE is not set +CONFIG_DAVICOM_PHY=m +CONFIG_DEBUG_INFO_DWARF4=y +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_DECNET=m +# CONFIG_DEFAULT_CFQ is not set +CONFIG_DEFAULT_DEADLINE=y +CONFIG_DEFAULT_IOSCHED="deadline" +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +# CONFIG_DLM_DEBUG is not set +CONFIG_DMADEVICES=y +CONFIG_DMA_VIRTUAL_CHANNELS=m +# CONFIG_DM_DEBUG is not set +# CONFIG_DM_MQ_DEFAULT is not set +# CONFIG_DM_VERITY_FEC is not set +CONFIG_DNET=m +CONFIG_DNS_RESOLVER=y +CONFIG_DP83848_PHY=m +CONFIG_DP83867_PHY=m +CONFIG_DRM=m +CONFIG_DS1682=m +CONFIG_DUMMY_IRQ=m +CONFIG_DW_WATCHDOG=m +CONFIG_ECHO=m +CONFIG_EEPROM_93CX6=m +CONFIG_EEPROM_AT24=m +CONFIG_EEPROM_LEGACY=m +CONFIG_EEPROM_MAX6875=m +CONFIG_EFI=y +# CONFIG_EM_TIMER_STI is not set +# CONFIG_ENABLE_MUST_CHECK is not set +# CONFIG_ENABLE_WARN_DEPRECATED is not set +CONFIG_ENCLOSURE_SERVICES=m +CONFIG_ETHOC=m +CONFIG_EXT4_FS=y +CONFIG_EXTCON=y +CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y +# CONFIG_FAT_DEFAULT_UTF8 is not set +CONFIG_FB=y +CONFIG_FB_ATY128=m +CONFIG_FB_BOOT_VESA_SUPPORT=y +# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set +CONFIG_FB_EFI=y +# CONFIG_FB_IBM_GXT4500 is not set +# CONFIG_FB_MACMODES is not set +CONFIG_FB_SYS_COPYAREA=m +CONFIG_FB_SYS_FILLRECT=m +CONFIG_FB_SYS_FOPS=m +CONFIG_FB_SYS_IMAGEBLIT=m +CONFIG_FB_UDL=m +CONFIG_FB_VOODOO1=m +CONFIG_FDDI=y +CONFIG_FEALNX=m +CONFIG_FIREWIRE=m +CONFIG_FIREWIRE_NOSY=m +CONFIG_FIRMWARE_IN_KERNEL=y +CONFIG_FIXED_PHY=y +CONFIG_FMC=m +# CONFIG_FONTS is not set +CONFIG_FRAME_WARN=1024 +CONFIG_FS_ENCRYPTION=y +CONFIG_FS_MBCACHE=y +CONFIG_FUNCTION_PROFILER=y +CONFIG_FUSE_FS=y +CONFIG_FUSION=y +CONFIG_GAMEPORT=m +CONFIG_GDB_SCRIPTS=y +CONFIG_GENERIC_PHY=y +CONFIG_GPIOLIB=y +CONFIG_GPIO_GENERIC=m +CONFIG_GPIO_GENERIC_PLATFORM=m +CONFIG_GPIO_TWL4030=m +CONFIG_GPIO_TWL6040=m +# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set +CONFIG_HAVE_AOUT=y +# CONFIG_HAVE_ARCH_BITREVERSE is not set +# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set +CONFIG_HAVE_GENERIC_DMA_COHERENT=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_HFSPLUS_FS_POSIX_ACL=y +CONFIG_HIBERNATION=y +CONFIG_HIO=m +CONFIG_HMC6352=m +CONFIG_HOTPLUG_CPU=y +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_PCIE=y +CONFIG_HOTPLUG_PCI_SHPC=m +CONFIG_HPET=y +CONFIG_HPFS_FS=m +CONFIG_HP_ILO=m +CONFIG_HSI=m +CONFIG_HTC_PASIC3=m +CONFIG_HUGETLB_PAGE=y +CONFIG_HWMON=y +CONFIG_HW_RANDOM_TIMERIOMEM=m +CONFIG_I2C=y +CONFIG_I2C_ALGOPCA=m +CONFIG_I2C_ALI1535=m +CONFIG_I2C_ALI1563=m +CONFIG_I2C_ALI15X3=m +CONFIG_I2C_AMD756=m +CONFIG_I2C_AMD8111=m +CONFIG_I2C_CHARDEV=y +CONFIG_I2C_COMPAT=y +CONFIG_I2C_DESIGNWARE_PCI=m +CONFIG_I2C_DESIGNWARE_PLATFORM=m +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_I801=m +CONFIG_I2C_ISCH=m +CONFIG_I2C_MUX=m +CONFIG_I2C_NFORCE2=m +CONFIG_I2C_OCORES=m +CONFIG_I2C_PARPORT_LIGHT=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_SLAVE_EEPROM is not set +CONFIG_I2C_SMBUS=m +CONFIG_I2C_STUB=m +CONFIG_I2C_TAOS_EVM=m +CONFIG_I2C_VIA=m +CONFIG_I2C_VIAPRO=m +CONFIG_I2C_XILINX=m +CONFIG_I6300ESB_WDT=m +CONFIG_ICPLUS_PHY=m +CONFIG_ICS932S401=m +CONFIG_IDLE_PAGE_TRACKING=y +CONFIG_IEEE802154_DRIVERS=m +# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set +CONFIG_IIO=m +CONFIG_ILLEGAL_POINTER_VALUE=0 +CONFIG_IMA=y +CONFIG_INFINIBAND_NES=m +CONFIG_INFINIBAND_OCRDMA=m +CONFIG_INPUT=y +CONFIG_INTERVAL_TREE_TEST=m +CONFIG_IPACK_BUS=m +CONFIG_IPMI_HANDLER=m +CONFIG_IPV6_ILA=m +CONFIG_IPV6_MIP6=m +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +# CONFIG_IPX_INTERN is not set +# CONFIG_IP_DCCP_CCID3 is not set +# CONFIG_IP_MROUTE_MULTIPLE_TABLES is not set +CONFIG_IRQ_BYPASS_MANAGER=m +CONFIG_ISA=y +CONFIG_ISA_BUS_API=y +CONFIG_ISL29003=m +CONFIG_ISL29020=m +# CONFIG_IWLWIFI_PCIE_RTPM is not set +CONFIG_JBD2=y +CONFIG_JFS_STATISTICS=y +CONFIG_JME=m +CONFIG_JUMP_LABEL=y +# CONFIG_KALLSYMS_ABSOLUTE_PERCPU is not set +CONFIG_KALLSYMS_ALL=y +CONFIG_KERNEL_GZIP=y +# CONFIG_KERNEL_XZ is not set +CONFIG_KEXEC=y +CONFIG_KVM=m +CONFIG_LDM_PARTITION=y +CONFIG_LIBNVDIMM=y +CONFIG_LLC2=m +CONFIG_LOCK_TORTURE_TEST=m +# CONFIG_LOGFS is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_LPC_ICH=m +CONFIG_LPC_SCH=m +CONFIG_LSI_ET1011C_PHY=m +CONFIG_LXT_PHY=m +CONFIG_MAC_PARTITION=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 +CONFIG_MAILBOX=y +CONFIG_MARVELL_PHY=m +# CONFIG_MATH_EMULATION is not set +CONFIG_MAX63XX_WATCHDOG=m +CONFIG_MCB=m +CONFIG_MDIO_BCM_UNIMAC=m +CONFIG_MDIO_BITBANG=m +CONFIG_MD_MULTIPATH=m +# CONFIG_MEDIA_CONTROLLER_DVB is not set +CONFIG_MEDIA_SUPPORT=m +CONFIG_MEGARAID_LEGACY=m +CONFIG_MEGARAID_NEWGEN=y +CONFIG_MEGARAID_SAS=m +CONFIG_MEMORY=y +CONFIG_MEMORY_HOTPLUG=y +CONFIG_MEMSTICK=m +CONFIG_MEMTEST=y +CONFIG_MFD_88PM800=m +CONFIG_MFD_88PM805=m +CONFIG_MFD_ARIZONA_I2C=m +CONFIG_MFD_BCM590XX=m +CONFIG_MFD_CORE=y +CONFIG_MFD_CROS_EC=m +CONFIG_MFD_DA9062=m +CONFIG_MFD_DA9063=y +CONFIG_MFD_DA9150=m +CONFIG_MFD_JANZ_CMODIO=m +CONFIG_MFD_KEMPLD=m +CONFIG_MFD_LM3533=m +CONFIG_MFD_LP3943=m +CONFIG_MFD_MAX14577=y +CONFIG_MFD_MAX77693=y +CONFIG_MFD_MAX8907=m +CONFIG_MFD_MC13XXX_I2C=m +CONFIG_MFD_MENF21BMC=m +CONFIG_MFD_MT6397=m +CONFIG_MFD_PCF50633=m +CONFIG_MFD_RDC321X=m +CONFIG_MFD_RETU=m +CONFIG_MFD_RT5033=m +CONFIG_MFD_RTSX_PCI=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_TMIO is not set +CONFIG_MFD_TPS65217=m +CONFIG_MFD_TPS65218=m +CONFIG_MFD_TPS65912_I2C=y +CONFIG_MFD_VX855=m +CONFIG_MFD_WL1273_CORE=m +CONFIG_MFD_WM8994=m +CONFIG_MICREL_PHY=m +CONFIG_MICROCHIP_PHY=m +CONFIG_MII=m +CONFIG_MINIX_SUBPARTITION=y +CONFIG_MMC=y +CONFIG_MMC_BLOCK=m +CONFIG_MMC_SDHCI=m +CONFIG_MMC_SDHCI_PLTFM=m +# CONFIG_MODULE_FORCE_LOAD is not set +# CONFIG_MODULE_FORCE_UNLOAD is not set +CONFIG_MODULE_SRCVERSION_ALL=y +CONFIG_MTD=m +CONFIG_MTD_BLKDEVS=m +CONFIG_MTD_BLOCK=m +CONFIG_MTD_CMDLINE_PARTS=m +CONFIG_MTD_NAND=m +CONFIG_MTD_NAND_BCH=m +CONFIG_MTD_NAND_ECC=m +CONFIG_MTD_NAND_IDS=m +# CONFIG_MTD_NAND_OMAP_BCH_BUILD is not set +CONFIG_NATIONAL_PHY=m +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +# CONFIG_NETDEV_NOTIFIER_ERROR_INJECT is not set +# CONFIG_NET_ACT_IFE is not set +CONFIG_NET_CADENCE=y +# CONFIG_NET_CLS_IND is not set +# CONFIG_NET_KEY_MIGRATE is not set +CONFIG_NET_MPLS_GSO=m +CONFIG_NET_PACKET_ENGINE=y +# CONFIG_NET_SWITCHDEV is not set +CONFIG_NET_TCPPROBE=m +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_EXAR=y +CONFIG_NET_VENDOR_EZCHIP=y +CONFIG_NET_VENDOR_HP=y +CONFIG_NET_VENDOR_INTEL=y +CONFIG_NET_VENDOR_MARVELL=y +CONFIG_NET_VENDOR_MICREL=y +CONFIG_NET_VENDOR_MYRI=y +CONFIG_NET_VENDOR_NATSEMI=y +CONFIG_NET_VENDOR_NVIDIA=y +CONFIG_NET_VENDOR_OKI=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_SYNOPSYS=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_NFS_V4_1_MIGRATION=y +# CONFIG_NF_CONNTRACK_PROCFS is not set +CONFIG_NOP_USB_XCEIV=m +CONFIG_NOZOMI=m +CONFIG_NO_HZ=y +CONFIG_NR_CPUS=8 +CONFIG_NTB=m +CONFIG_NVMEM=m +CONFIG_NVRAM=m +CONFIG_N_GSM=m +# CONFIG_OF is not set +# CONFIG_ORANGEFS_FS is not set +CONFIG_OSF_PARTITION=y +CONFIG_OUTPUT_FORMAT="elf32-i386" +CONFIG_PAGE_EXTENSION=y +CONFIG_PAGE_OFFSET=0xC0000000 +CONFIG_PARAVIRT=y +CONFIG_PARPORT=m +CONFIG_PATA_SIS=y +CONFIG_PCCARD=m +CONFIG_PCIPCWATCHDOG=m +CONFIG_PCI_MSI_IRQ_DOMAIN=y +CONFIG_PCI_PASID=y +CONFIG_PCI_PRI=y +CONFIG_PCI_QUIRKS=y +CONFIG_PCMCIA=m +CONFIG_PERCPU_TEST=m +CONFIG_PERSISTENT_KEYRINGS=y +CONFIG_PGTABLE_LEVELS=3 +CONFIG_PGTABLE_MAPPING=y +CONFIG_PHANTOM=m +CONFIG_PHYLIB=y +CONFIG_PHYSICAL_ALIGN=0x1000000 +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_PHYS_ADDR_T_64BIT=y +# CONFIG_PHY_EXYNOS5250_USB2 is not set +CONFIG_PHY_PXA_28NM_HSIC=m +CONFIG_PHY_PXA_28NM_USB2=m +CONFIG_PM_DEVFREQ=y +CONFIG_POWERCAP=y +CONFIG_POWER_AVS=y +CONFIG_POWER_RESET=y +CONFIG_POWER_SUPPLY=y +CONFIG_PPP=y +CONFIG_PPS=m +CONFIG_PPS_CLIENT_GPIO=m +CONFIG_PPS_CLIENT_LDISC=m +# CONFIG_PRINT_QUOTA_WARNING is not set +CONFIG_PSTORE=y +# CONFIG_PSTORE_CONSOLE is not set +CONFIG_PSTORE_RAM=m +CONFIG_PTP_1588_CLOCK=m +CONFIG_PWM=y +# CONFIG_PWM_PCA9685 is not set +CONFIG_QSEMI_PHY=m +CONFIG_R3964=m +CONFIG_RAW_DRIVER=m +CONFIG_RBTREE_TEST=m +CONFIG_RCU_CPU_STALL_TIMEOUT=60 +CONFIG_REALTEK_PHY=m +CONFIG_REED_SOLOMON=m +CONFIG_REGMAP_I2C=y +CONFIG_REGULATOR=y +CONFIG_REGULATOR_FIXED_VOLTAGE=m +CONFIG_REGULATOR_TPS65217=m +CONFIG_REGULATOR_TWL4030=m +CONFIG_RELOCATABLE=y +CONFIG_RESET_CONTROLLER=y +CONFIG_RFKILL=y +CONFIG_RTC_DRV_CMOS=y +CONFIG_RTC_DRV_DS3232=m +CONFIG_RTC_DRV_PCF8523=m +CONFIG_RTC_DRV_TWL4030=m +CONFIG_SATA_AHCI_PLATFORM=m +CONFIG_SATA_SVW=m +CONFIG_SCHEDSTATS=y +CONFIG_SCHED_SMT=y +CONFIG_SCHED_TRACER=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_DPT_I2O=m +CONFIG_SCSI_ESAS2R=m +CONFIG_SCSI_FUTURE_DOMAIN=m +CONFIG_SCSI_HPSA=m +CONFIG_SCSI_HPTIOP=m +CONFIG_SCSI_INIA100=m +CONFIG_SCSI_INITIO=m +CONFIG_SCSI_IPS=m +CONFIG_SCSI_LPFC=m +CONFIG_SCSI_MPT2SAS=m +CONFIG_SCSI_MPT3SAS=m +# CONFIG_SCSI_MQ_DEFAULT is not set +CONFIG_SCSI_MVSAS=m +CONFIG_SCSI_MVUMI=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_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set +CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y +CONFIG_SECURITY_SELINUX_BOOTPARAM=y +CONFIG_SECURITY_SELINUX_DISABLE=y +CONFIG_SENSORS_APDS990X=m +CONFIG_SENSORS_BH1770=m +CONFIG_SENSORS_SCH56XX_COMMON=m +CONFIG_SENSORS_TSL2550=m +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_DW=m +CONFIG_SERIAL_8250_FINTEK=y +# CONFIG_SERIAL_8250_FSL is not set +CONFIG_SERIAL_ALTERA_JTAGUART=m +CONFIG_SERIAL_ALTERA_UART=m +CONFIG_SERIAL_ARC=m +CONFIG_SERIAL_CORE=y +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_SGETMASK_SYSCALL=y +CONFIG_SGI_IOC4=m +CONFIG_SGI_PARTITION=y +# CONFIG_SG_SPLIT is not set +# CONFIG_SH_TIMER_CMT is not set +# CONFIG_SH_TIMER_MTU2 is not set +# CONFIG_SH_TIMER_TMU is not set +CONFIG_SLIP=m +CONFIG_SMSC_PHY=m +CONFIG_SND=m +CONFIG_SND_DMAENGINE_PCM=m +CONFIG_SND_EMU10K1_SEQ=m +CONFIG_SND_OPL4_LIB_SEQ=m +CONFIG_SND_PCM=m +CONFIG_SND_SBAWE_SEQ=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_RT5677_SPI is not set +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_PXA2XX_PCI=m +# CONFIG_SPI_ROCKCHIP is not set +CONFIG_SPMI=m +# CONFIG_SQUASHFS_FILE_CACHE is not set +CONFIG_SQUASHFS_FILE_DIRECT=y +CONFIG_SQUASHFS_LZ4=y +CONFIG_SRAM=y +CONFIG_SSB=m +CONFIG_STAGING=y +# CONFIG_STANDALONE is not set +CONFIG_STE10XP=m +CONFIG_STE_MODEM_RPROC=m +# CONFIG_STRIP_ASM_SYMS is not set +CONFIG_SUN_PARTITION=y +CONFIG_SYSCTL_SYSCALL=y +CONFIG_SYSFS_SYSCALL=y +CONFIG_SYSV68_PARTITION=y +CONFIG_SYS_HYPERVISOR=y +CONFIG_TCG_TIS_CORE=y +CONFIG_TCG_TIS_I2C_ATMEL=m +CONFIG_TCG_TIS_I2C_INFINEON=m +CONFIG_TCG_TIS_I2C_NUVOTON=m +CONFIG_TCG_TIS_ST33ZP24_I2C=m +CONFIG_TERANETICS_PHY=m +# CONFIG_TEST_BITMAP is not set +CONFIG_TEST_HEXDUMP=m +CONFIG_TEST_KSTRTOX=m +CONFIG_TEST_LKM=m +# CONFIG_TEST_PRINTF is not set +CONFIG_TEST_STRING_HELPERS=m +CONFIG_TEST_UDELAY=m +CONFIG_THERMAL=y +CONFIG_THUNDERBOLT=m +CONFIG_TIFM_CORE=m +CONFIG_TI_CPSW_ALE=m +CONFIG_TPS6105X=m +CONFIG_TPS6507X=m +CONFIG_TRACE_SINK=m +CONFIG_TRANSPARENT_HUGEPAGE=y +CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y +# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set +CONFIG_TRUSTED_KEYS=y +CONFIG_TTY_PRINTK=y +# CONFIG_UBIFS_ATIME_SUPPORT is not set +CONFIG_UIO=m +CONFIG_ULTRIX_PARTITION=y +CONFIG_UNIXWARE_DISKLABEL=y +CONFIG_UNUSED_SYMBOLS=y +CONFIG_UPROBES=y +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_USB_SWITCH_FSA9480=m +CONFIG_USELIB=y +CONFIG_UWB=m +CONFIG_VFIO=m +CONFIG_VFIO_IOMMU_TYPE1=m +# CONFIG_VFIO_NOIOMMU is not set +CONFIG_VFIO_PCI=m +CONFIG_VFIO_VIRQFD=m +CONFIG_VGASTATE=m +CONFIG_VIRTIO_MMIO=y +CONFIG_VITESSE_PHY=m +CONFIG_VM86=y +CONFIG_VME_BUS=y +CONFIG_VMXNET3=m +CONFIG_W1=m +CONFIG_WAN=y +CONFIG_WDTPCI=m +# CONFIG_WLAN_VENDOR_TI is not set +# CONFIG_WQ_WATCHDOG is not set +CONFIG_X86_INTEL_MID=y +CONFIG_X86_MINIMUM_CPU_FAMILY=5 +CONFIG_X86_SPEEDSTEP_LIB=y +CONFIG_XEN=y +CONFIG_XEN_BALLOON_MEMORY_HOTPLUG_LIMIT=4 +# CONFIG_XFRM_MIGRATE is not set +CONFIG_XFRM_STATISTICS=y +# CONFIG_XFRM_SUB_POLICY is not set +CONFIG_XILINX_WATCHDOG=m +CONFIG_XILLYBUS=m +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_TEST=m +CONFIG_ZLIB_DEFLATE=y +CONFIG_ZSMALLOC=y --- linux-4.8.0.orig/debian.master/config/i386/config.flavour.generic +++ linux-4.8.0/debian.master/config/i386/config.flavour.generic @@ -0,0 +1,9 @@ +# +# Config options for config.flavour.generic automatically generated by splitconfig.pl +# +CONFIG_HZ=250 +# CONFIG_HZ_1000 is not set +CONFIG_HZ_250=y +# CONFIG_IRQ_FORCED_THREADING_DEFAULT is not set +# CONFIG_PREEMPT is not set +CONFIG_PREEMPT_VOLUNTARY=y --- linux-4.8.0.orig/debian.master/config/i386/config.flavour.lowlatency +++ linux-4.8.0/debian.master/config/i386/config.flavour.lowlatency @@ -0,0 +1,9 @@ +# +# Config options for config.flavour.lowlatency automatically generated by splitconfig.pl +# +CONFIG_HZ=1000 +CONFIG_HZ_1000=y +# CONFIG_HZ_250 is not set +CONFIG_IRQ_FORCED_THREADING_DEFAULT=y +CONFIG_PREEMPT=y +# CONFIG_PREEMPT_VOLUNTARY is not set --- linux-4.8.0.orig/debian.master/config/powerpc/config.common.powerpc +++ linux-4.8.0/debian.master/config/powerpc/config.common.powerpc @@ -0,0 +1,643 @@ +# +# Config options for config.common.powerpc automatically generated by splitconfig.pl +# +CONFIG_64BIT=y +CONFIG_ABX500_CORE=y +CONFIG_AC97_BUS=m +CONFIG_AD525X_DPOT=m +CONFIG_AIX_PARTITION=y +CONFIG_ALIM7101_WDT=m +CONFIG_ALTERA_STAPL=m +CONFIG_ALTERA_TSE=m +CONFIG_AMD_PHY=m +CONFIG_AMIGA_PARTITION=y +CONFIG_APDS9802ALS=m +CONFIG_APM_EMULATION=m +CONFIG_APPLICOM=m +CONFIG_AQUANTIA_PHY=m +CONFIG_ARCH_HAS_ILOG2_U32=y +CONFIG_ARCH_HAS_ILOG2_U64=y +# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCNET=m +CONFIG_ASYNC_RAID6_TEST=m +CONFIG_AT803X_PHY=m +CONFIG_ATALK=m +CONFIG_ATARI_PARTITION=y +CONFIG_ATA_GENERIC=m +CONFIG_ATA_OVER_ETH=m +CONFIG_ATA_PIIX=m +CONFIG_ATH10K_AHB=y +CONFIG_ATM=m +# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set +CONFIG_AUXDISPLAY=y +CONFIG_BACKLIGHT_LCD_SUPPORT=y +CONFIG_BCH=m +CONFIG_BCM7XXX_PHY=m +CONFIG_BCM87XX_PHY=m +CONFIG_BCMA=m +CONFIG_BCM_KONA_USB2_PHY=m +CONFIG_BE2ISCSI=m +CONFIG_BLK_CMDLINE_PARSER=y +CONFIG_BLK_CPQ_CISS_DA=m +CONFIG_BLK_DEV_3W_XXXX_RAID=m +CONFIG_BLK_DEV_CRYPTOLOOP=m +CONFIG_BLK_DEV_DAC960=m +CONFIG_BLK_DEV_NVME=m +CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m +CONFIG_BLK_DEV_RSXX=m +CONFIG_BLK_DEV_SKD=m +# CONFIG_BLK_DEV_SR_VENDOR is not set +CONFIG_BLK_DEV_SX8=m +CONFIG_BLK_DEV_UMEM=m +CONFIG_BMP085_I2C=m +CONFIG_BROADCOM_PHY=m +CONFIG_C2PORT=m +CONFIG_CADENCE_WATCHDOG=m +CONFIG_CAIF_HSI=m +CONFIG_CAIF_SPI_SLAVE=m +CONFIG_CAIF_TTY=m +CONFIG_CAIF_VIRTIO=m +CONFIG_CB710_CORE=m +# CONFIG_CC_STACKPROTECTOR is not set +CONFIG_CDROM_PKTCDVD=m +CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y +CONFIG_CGROUP_HUGETLB=y +CONFIG_CICADA_PHY=m +CONFIG_CIFS_SMB311=y +# CONFIG_CIFS_STATS2 is not set +CONFIG_CLK_QORIQ=y +# CONFIG_CLS_U32_PERF is not set +CONFIG_CMA=y +CONFIG_CMDLINE_PARTITION=y +CONFIG_CPU_BIG_ENDIAN=y +# CONFIG_CPU_LITTLE_ENDIAN is not set +# CONFIG_CPU_NO_EFFICIENT_FFS is not set +CONFIG_CRAMFS=m +CONFIG_CRC16=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_CTR=y +CONFIG_CRYPTO_CTS=y +CONFIG_CRYPTO_DEV_FSL_CAAM=m +# CONFIG_CRYPTO_DEV_FSL_CAAM_IMX is not set +CONFIG_CRYPTO_DRBG=y +CONFIG_CRYPTO_DRBG_MENU=y +CONFIG_CRYPTO_GF128MUL=y +CONFIG_CRYPTO_JITTERENTROPY=y +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_RNG_DEFAULT=y +CONFIG_CRYPTO_SEQIV=y +CONFIG_CRYPTO_XTS=y +CONFIG_DAVICOM_PHY=m +CONFIG_DEBUG_INFO_DWARF4=y +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_DECNET=m +# CONFIG_DEFAULT_CFQ is not set +CONFIG_DEFAULT_DEADLINE=y +CONFIG_DEFAULT_IOSCHED="deadline" +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +# CONFIG_DLM_DEBUG is not set +CONFIG_DMADEVICES=y +CONFIG_DMA_VIRTUAL_CHANNELS=m +# CONFIG_DM_DEBUG is not set +# CONFIG_DM_MQ_DEFAULT is not set +CONFIG_DNET=m +CONFIG_DNS_RESOLVER=y +CONFIG_DP83848_PHY=m +CONFIG_DP83867_PHY=m +CONFIG_DRM=m +CONFIG_DS1682=m +CONFIG_DUMMY_IRQ=m +CONFIG_DW_WATCHDOG=m +CONFIG_ECHO=m +CONFIG_EEPROM_93CX6=m +CONFIG_EEPROM_AT24=m +CONFIG_EEPROM_LEGACY=m +CONFIG_EEPROM_MAX6875=m +# CONFIG_EM_TIMER_STI is not set +# CONFIG_ENABLE_MUST_CHECK is not set +# CONFIG_ENABLE_WARN_DEPRECATED is not set +CONFIG_ENCLOSURE_SERVICES=m +CONFIG_ETHOC=m +CONFIG_EXT4_FS=y +CONFIG_EXTCON=y +CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y +CONFIG_FB=y +CONFIG_FB_ATY128=y +# CONFIG_FB_BOOT_VESA_SUPPORT is not set +# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set +CONFIG_FB_IBM_GXT4500=m +CONFIG_FB_MACMODES=y +CONFIG_FB_VOODOO1=y +CONFIG_FDDI=y +CONFIG_FEALNX=m +CONFIG_FIREWIRE=m +CONFIG_FIREWIRE_NOSY=m +CONFIG_FIRMWARE_IN_KERNEL=y +CONFIG_FIXED_PHY=y +CONFIG_FMC=m +# CONFIG_FONTS is not set +CONFIG_FRAME_WARN=1024 +CONFIG_FS_ENCRYPTION=y +CONFIG_FS_MBCACHE=y +CONFIG_FUNCTION_PROFILER=y +CONFIG_FUSE_FS=y +CONFIG_FUSION=y +CONFIG_GAMEPORT=m +CONFIG_GDB_SCRIPTS=y +# CONFIG_GENERIC_CSUM is not set +CONFIG_GENERIC_PHY=y +CONFIG_GPIOLIB=y +CONFIG_GPIO_GENERIC_PLATFORM=m +CONFIG_GPIO_MPC8XXX=y +CONFIG_GPIO_TWL4030=m +CONFIG_GPIO_TWL6040=m +CONFIG_GPIO_XILINX=y +# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set +# CONFIG_HAVE_AOUT is not set +# CONFIG_HAVE_ARCH_BITREVERSE is not set +# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set +CONFIG_HFSPLUS_FS_POSIX_ACL=y +# CONFIG_HIO is not set +CONFIG_HMC6352=m +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_PCIE=y +CONFIG_HOTPLUG_PCI_SHPC=m +CONFIG_HPFS_FS=m +CONFIG_HP_ILO=m +CONFIG_HSI=m +CONFIG_HTC_PASIC3=m +CONFIG_HWMON=y +CONFIG_HW_RANDOM_TIMERIOMEM=m +CONFIG_HZ=250 +# CONFIG_HZ_1000 is not set +CONFIG_HZ_250=y +CONFIG_I2C=y +CONFIG_I2C_ALGOPCA=m +CONFIG_I2C_ALI1535=m +CONFIG_I2C_ALI1563=m +CONFIG_I2C_ALI15X3=m +CONFIG_I2C_AMD756=m +CONFIG_I2C_AMD8111=m +CONFIG_I2C_CHARDEV=y +CONFIG_I2C_COMPAT=y +CONFIG_I2C_DESIGNWARE_PCI=m +CONFIG_I2C_DESIGNWARE_PLATFORM=m +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_I801=m +CONFIG_I2C_ISCH=m +CONFIG_I2C_MUX=m +CONFIG_I2C_NFORCE2=m +CONFIG_I2C_OCORES=m +CONFIG_I2C_PARPORT_LIGHT=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_EEPROM is not set +CONFIG_I2C_SMBUS=m +CONFIG_I2C_STUB=m +CONFIG_I2C_TAOS_EVM=m +CONFIG_I2C_VIA=m +CONFIG_I2C_VIAPRO=m +CONFIG_I2C_XILINX=m +CONFIG_I6300ESB_WDT=m +# CONFIG_IBMEBUS is not set +CONFIG_IBMVETH=m +CONFIG_ICPLUS_PHY=m +CONFIG_ICS932S401=m +CONFIG_IDLE_PAGE_TRACKING=y +CONFIG_IEEE802154_DRIVERS=m +CONFIG_IIO=m +CONFIG_INFINIBAND_NES=m +CONFIG_INFINIBAND_OCRDMA=m +CONFIG_INFINIBAND_QIB=m +CONFIG_INPUT=y +CONFIG_INTERVAL_TREE_TEST=m +CONFIG_IPACK_BUS=m +CONFIG_IPMI_HANDLER=m +CONFIG_IPV6_ILA=m +CONFIG_IPV6_MIP6=m +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +# CONFIG_IPX_INTERN is not set +# CONFIG_IP_DCCP_CCID3 is not set +# CONFIG_IP_MROUTE_MULTIPLE_TABLES is not set +# CONFIG_IRQ_ALL_CPUS is not set +CONFIG_IRQ_BYPASS_MANAGER=y +# CONFIG_IRQ_FORCED_THREADING_DEFAULT is not set +# CONFIG_ISA is not set +# CONFIG_ISA_BUS_API is not set +CONFIG_ISL29003=m +CONFIG_ISL29020=m +CONFIG_JBD2=y +CONFIG_JFS_STATISTICS=y +CONFIG_JME=m +CONFIG_JUMP_LABEL=y +# CONFIG_KALLSYMS_ABSOLUTE_PERCPU is not set +CONFIG_KALLSYMS_ALL=y +CONFIG_KVM=y +CONFIG_LDM_PARTITION=y +CONFIG_LIBNVDIMM=y +CONFIG_LLC2=m +CONFIG_LOCK_TORTURE_TEST=m +# CONFIG_LOGFS is not set +CONFIG_LOG_BUF_SHIFT=17 +# CONFIG_LPARCFG is not set +CONFIG_LPC_ICH=m +CONFIG_LPC_SCH=m +CONFIG_LSI_ET1011C_PHY=m +CONFIG_LXT_PHY=m +CONFIG_MAC_PARTITION=y +CONFIG_MAILBOX=y +CONFIG_MARVELL_PHY=m +CONFIG_MATH_EMULATION=y +CONFIG_MAX63XX_WATCHDOG=m +CONFIG_MCB=m +CONFIG_MDIO_BCM_UNIMAC=m +CONFIG_MDIO_BITBANG=m +CONFIG_MDIO_BUS_MUX=m +CONFIG_MDIO_OCTEON=m +CONFIG_MDIO_THUNDER=m +CONFIG_MD_MULTIPATH=m +CONFIG_MEDIA_SUPPORT=m +CONFIG_MEGARAID_LEGACY=m +CONFIG_MEGARAID_NEWGEN=y +CONFIG_MEGARAID_SAS=m +CONFIG_MEMORY=y +CONFIG_MEMSTICK=m +CONFIG_MEMTEST=y +# CONFIG_MEM_SOFT_DIRTY is not set +CONFIG_MFD_88PM800=m +CONFIG_MFD_88PM805=m +CONFIG_MFD_ARIZONA_I2C=m +CONFIG_MFD_BCM590XX=m +CONFIG_MFD_CORE=y +CONFIG_MFD_DA9062=m +CONFIG_MFD_DA9063=y +CONFIG_MFD_DA9150=m +CONFIG_MFD_JANZ_CMODIO=m +CONFIG_MFD_KEMPLD=m +CONFIG_MFD_LM3533=m +CONFIG_MFD_LP3943=m +CONFIG_MFD_MAX14577=y +CONFIG_MFD_MAX77693=y +CONFIG_MFD_MAX8907=m +CONFIG_MFD_MC13XXX_I2C=m +CONFIG_MFD_MENF21BMC=m +CONFIG_MFD_MT6397=m +CONFIG_MFD_PCF50633=m +CONFIG_MFD_RDC321X=m +CONFIG_MFD_RETU=m +CONFIG_MFD_RT5033=m +CONFIG_MFD_RTSX_PCI=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_TMIO is not set +CONFIG_MFD_TPS65217=m +CONFIG_MFD_TPS65218=m +CONFIG_MFD_TPS65912_I2C=y +CONFIG_MFD_VX855=m +CONFIG_MFD_WL1273_CORE=m +CONFIG_MFD_WM8994=m +CONFIG_MICREL_PHY=m +CONFIG_MICROCHIP_PHY=m +CONFIG_MII=m +CONFIG_MINIX_SUBPARTITION=y +CONFIG_MMC=y +CONFIG_MMC_BLOCK=m +CONFIG_MMC_SDHCI=m +CONFIG_MMC_SDHCI_OF_ESDHC=m +CONFIG_MMC_SDHCI_PLTFM=m +# CONFIG_MODULE_FORCE_LOAD is not set +# CONFIG_MODULE_FORCE_UNLOAD is not set +CONFIG_MODULE_SRCVERSION_ALL=y +# CONFIG_MOVABLE_NODE is not set +CONFIG_MPIC_MSGR=y +CONFIG_MTD=m +CONFIG_MTD_BLKDEVS=m +CONFIG_MTD_BLOCK=m +CONFIG_MTD_CMDLINE_PARTS=m +CONFIG_MTD_NAND=m +CONFIG_MTD_NAND_BCH=m +CONFIG_MTD_NAND_ECC=m +CONFIG_MTD_NAND_FSL_IFC=m +CONFIG_MTD_NAND_IDS=m +# CONFIG_MTD_NAND_OMAP_BCH_BUILD is not set +CONFIG_MTD_OF_PARTS=m +CONFIG_NATIONAL_PHY=m +CONFIG_NET_CADENCE=y +# CONFIG_NET_CLS_IND is not set +# CONFIG_NET_KEY_MIGRATE is not set +CONFIG_NET_MPLS_GSO=m +CONFIG_NET_PACKET_ENGINE=y +# CONFIG_NET_SWITCHDEV is not set +CONFIG_NET_TCPPROBE=m +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_EXAR=y +CONFIG_NET_VENDOR_EZCHIP=y +CONFIG_NET_VENDOR_FREESCALE=y +CONFIG_NET_VENDOR_HP=y +CONFIG_NET_VENDOR_INTEL=y +CONFIG_NET_VENDOR_MARVELL=y +CONFIG_NET_VENDOR_MICREL=y +CONFIG_NET_VENDOR_MYRI=y +CONFIG_NET_VENDOR_NATSEMI=y +CONFIG_NET_VENDOR_NVIDIA=y +CONFIG_NET_VENDOR_OKI=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_SYNOPSYS=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_NFS_V4_1_MIGRATION=y +# CONFIG_NF_CONNTRACK_PROCFS is not set +CONFIG_NODES_SHIFT=8 +CONFIG_NOP_USB_XCEIV=m +CONFIG_NOZOMI=m +CONFIG_NO_HZ=y +CONFIG_NTB=m +CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y +CONFIG_NVMEM=m +CONFIG_NVRAM=y +CONFIG_N_GSM=m +CONFIG_OF=y +CONFIG_OSF_PARTITION=y +CONFIG_PARPORT=m +CONFIG_PATA_SIS=m +CONFIG_PCCARD=m +CONFIG_PCIPCWATCHDOG=m +# CONFIG_PCI_MSI_IRQ_DOMAIN is not set +CONFIG_PCI_PASID=y +CONFIG_PCI_PRI=y +CONFIG_PCI_QUIRKS=y +CONFIG_PCMCIA=m +CONFIG_PERCPU_TEST=m +CONFIG_PERSISTENT_KEYRINGS=y +CONFIG_PGTABLE_MAPPING=y +CONFIG_PHANTOM=m +CONFIG_PHYLIB=y +CONFIG_PHYSICAL_ALIGN=0x04000000 +CONFIG_PHYSICAL_START=0x00000000 +# CONFIG_PHY_EXYNOS5250_USB2 is not set +CONFIG_PHY_PXA_28NM_HSIC=m +CONFIG_PHY_PXA_28NM_USB2=m +CONFIG_PM_DEVFREQ=y +# CONFIG_POWER7_CPU is not set +CONFIG_POWERCAP=y +CONFIG_POWER_AVS=y +CONFIG_POWER_RESET=y +CONFIG_POWER_SUPPLY=y +CONFIG_PPC_4K_PAGES=y +# CONFIG_PPC_64K_PAGES is not set +# CONFIG_PPC_DENORMALISATION is not set +CONFIG_PPC_DISABLE_WERROR=y +CONFIG_PPC_ICSWX=y +# CONFIG_PPC_SMLPAR is not set +# CONFIG_PPC_SPLPAR is not set +CONFIG_PPP=y +CONFIG_PPS=m +CONFIG_PPS_CLIENT_GPIO=m +CONFIG_PPS_CLIENT_LDISC=m +# CONFIG_PREEMPT is not set +CONFIG_PREEMPT_VOLUNTARY=y +# CONFIG_PRINT_QUOTA_WARNING is not set +CONFIG_PSTORE=y +# CONFIG_PSTORE_CONSOLE is not set +CONFIG_PSTORE_RAM=m +CONFIG_PTP_1588_CLOCK=m +CONFIG_PWM=y +CONFIG_PWM_PCA9685=m +CONFIG_QSEMI_PHY=m +CONFIG_R3964=m +CONFIG_RAW_DRIVER=m +CONFIG_RBTREE_TEST=m +CONFIG_RCU_CPU_STALL_TIMEOUT=21 +CONFIG_REALTEK_PHY=m +CONFIG_REED_SOLOMON=m +CONFIG_REGMAP_I2C=y +CONFIG_REGULATOR=y +CONFIG_REGULATOR_FIXED_VOLTAGE=m +CONFIG_REGULATOR_TPS65217=m +CONFIG_REGULATOR_TWL4030=m +CONFIG_RESET_CONTROLLER=y +CONFIG_RFKILL=y +CONFIG_RTC_DRV_CMOS=m +CONFIG_RTC_DRV_PCF8523=m +CONFIG_RTC_DRV_TWL4030=m +CONFIG_SATA_AHCI_PLATFORM=m +CONFIG_SATA_SVW=y +CONFIG_SCHEDSTATS=y +CONFIG_SCHED_TRACER=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_DPT_I2O=m +CONFIG_SCSI_ESAS2R=m +CONFIG_SCSI_FUTURE_DOMAIN=m +CONFIG_SCSI_HPSA=m +CONFIG_SCSI_HPTIOP=m +CONFIG_SCSI_INIA100=m +CONFIG_SCSI_INITIO=m +CONFIG_SCSI_IPS=m +CONFIG_SCSI_LPFC=m +CONFIG_SCSI_MPT2SAS=m +CONFIG_SCSI_MPT3SAS=m +# CONFIG_SCSI_MQ_DEFAULT is not set +CONFIG_SCSI_MVSAS=m +CONFIG_SCSI_MVUMI=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_STEX=m +CONFIG_SCSI_SYM53C8XX_2=m +CONFIG_SCSI_UFSHCD=m +CONFIG_SCSI_WD719X=m +# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set +CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y +CONFIG_SECURITY_SELINUX_BOOTPARAM=y +CONFIG_SECURITY_SELINUX_DISABLE=y +CONFIG_SENSORS_APDS990X=m +CONFIG_SENSORS_BH1770=m +# CONFIG_SENSORS_SCH56XX_COMMON is not set +CONFIG_SENSORS_TSL2550=m +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_DW=m +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_FSL=y +CONFIG_SERIAL_ALTERA_JTAGUART=m +CONFIG_SERIAL_ALTERA_UART=m +CONFIG_SERIAL_ARC=m +CONFIG_SERIAL_CORE=y +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_SGETMASK_SYSCALL=y +CONFIG_SGI_IOC4=m +CONFIG_SGI_PARTITION=y +# CONFIG_SG_SPLIT is not set +# CONFIG_SH_TIMER_CMT is not set +# CONFIG_SH_TIMER_MTU2 is not set +# CONFIG_SH_TIMER_TMU is not set +CONFIG_SIMPLE_GPIO=y +CONFIG_SLIP=m +CONFIG_SMSC_PHY=m +CONFIG_SND=m +CONFIG_SND_DMAENGINE_PCM=m +CONFIG_SND_EMU10K1_SEQ=m +# CONFIG_SND_OPL4_LIB_SEQ is not set +CONFIG_SND_PCM=m +# CONFIG_SND_SBAWE_SEQ is not set +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_RT5677_SPI is not set +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_SQUASHFS_FILE_CACHE is not set +CONFIG_SQUASHFS_FILE_DIRECT=y +CONFIG_SQUASHFS_LZ4=y +CONFIG_SRAM=y +CONFIG_SSB=m +CONFIG_STAGING=y +CONFIG_STANDALONE=y +CONFIG_STE10XP=m +CONFIG_STE_MODEM_RPROC=m +# CONFIG_STRIP_ASM_SYMS is not set +CONFIG_SUN_PARTITION=y +CONFIG_SYSCTL_SYSCALL=y +CONFIG_SYSFS_SYSCALL=y +CONFIG_SYSV68_PARTITION=y +# CONFIG_SYS_HYPERVISOR is not set +CONFIG_TCG_TIS_CORE=m +CONFIG_TCG_TIS_I2C_ATMEL=m +CONFIG_TCG_TIS_I2C_INFINEON=m +CONFIG_TCG_TIS_I2C_NUVOTON=m +CONFIG_TCG_TIS_ST33ZP24_I2C=m +CONFIG_TERANETICS_PHY=m +CONFIG_TEST_HEXDUMP=m +CONFIG_TEST_KSTRTOX=m +CONFIG_TEST_LKM=m +CONFIG_TEST_STRING_HELPERS=m +CONFIG_TEST_UDELAY=m +CONFIG_THERMAL=y +CONFIG_THUNDERBOLT=m +CONFIG_TIFM_CORE=m +CONFIG_TI_CPSW_ALE=m +CONFIG_TPS6105X=m +CONFIG_TPS6507X=m +CONFIG_TRACE_SINK=m +# CONFIG_TRANSPARENT_HUGEPAGE is not set +CONFIG_TRUSTED_KEYS=y +CONFIG_TTY_PRINTK=y +CONFIG_UBIFS_ATIME_SUPPORT=y +CONFIG_UDBG_RTAS_CONSOLE=y +CONFIG_UIO=m +CONFIG_ULTRIX_PARTITION=y +CONFIG_UNIXWARE_DISKLABEL=y +CONFIG_UNUSED_SYMBOLS=y +CONFIG_UPROBES=y +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_OHCI_HCD_PPC_OF=y +CONFIG_USB_OHCI_HCD_PPC_OF_BE=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_SWITCH_FSA9480=m +CONFIG_USELIB=y +CONFIG_UWB=m +CONFIG_VFIO=m +CONFIG_VFIO_IOMMU_SPAPR_TCE=m +# CONFIG_VFIO_IOMMU_TYPE1 is not set +# CONFIG_VFIO_NOIOMMU is not set +CONFIG_VFIO_PCI=m +CONFIG_VFIO_SPAPR_EEH=m +CONFIG_VFIO_VIRQFD=m +CONFIG_VGASTATE=m +CONFIG_VIRTIO_MMIO=y +# CONFIG_VIRT_CPU_ACCOUNTING_NATIVE is not set +CONFIG_VITESSE_PHY=m +CONFIG_VME_BUS=y +CONFIG_VMXNET3=m +CONFIG_W1=m +CONFIG_WAN=y +CONFIG_WDTPCI=m +# CONFIG_XFRM_MIGRATE is not set +CONFIG_XFRM_STATISTICS=y +# CONFIG_XFRM_SUB_POLICY is not set +CONFIG_XILINX_WATCHDOG=m +CONFIG_XILLYBUS=m +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_TEST=m +CONFIG_ZLIB_DEFLATE=y +CONFIG_ZSMALLOC=y --- linux-4.8.0.orig/debian.master/config/powerpc/config.flavour.generic +++ linux-4.8.0/debian.master/config/powerpc/config.flavour.generic @@ -0,0 +1,87 @@ +# +# Config options for config.flavour.generic automatically generated by splitconfig.pl +# +# 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_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_ARCH_PHYS_ADDR_T_64BIT=y +CONFIG_ARCH_RANDOM=y +CONFIG_ATA_NONSTANDARD=y +# CONFIG_BATMAN_ADV_BATMAN_V is not set +CONFIG_CRASH_DUMP=y +CONFIG_CXL_AFU_DRIVER_OPS=y +CONFIG_CXL_BASE=y +# CONFIG_DEFAULT_UIMAGE is not set +# CONFIG_DM_VERITY_FEC is not set +CONFIG_EPAPR_BOOT=y +# CONFIG_FAT_DEFAULT_UTF8 is not set +CONFIG_FB_SYS_COPYAREA=y +CONFIG_FB_SYS_FILLRECT=y +CONFIG_FB_SYS_FOPS=y +CONFIG_FB_SYS_IMAGEBLIT=y +CONFIG_FB_UDL=m +CONFIG_FORCE_MAX_ZONEORDER=13 +CONFIG_GENERIC_TBSYNC=y +CONFIG_GPIO_GENERIC=m +# CONFIG_HAS_RAPIDIO is not set +CONFIG_HAVE_BOOTMEM_INFO_NODE=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_HIBERNATION=y +CONFIG_HOTPLUG_CPU=y +CONFIG_HUGETLB_PAGE=y +# CONFIG_I2C_SLAVE is not set +# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set +CONFIG_IMA=y +# CONFIG_IWLWIFI_PCIE_RTPM is not set +CONFIG_KERNEL_START=0xc000000000000000 +CONFIG_KEXEC=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 +# CONFIG_MEDIA_CONTROLLER_DVB is not set +CONFIG_MEMORY_HOTPLUG=y +CONFIG_MMIO_NVRAM=y +CONFIG_MPIC_U3_HT_IRQS=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +# CONFIG_NETDEV_NOTIFIER_ERROR_INJECT is not set +# CONFIG_NET_ACT_IFE is not set +CONFIG_NONSTATIC_KERNEL=y +CONFIG_NR_CPUS=1024 +CONFIG_NUMA=y +# CONFIG_ORANGEFS_FS is not set +# CONFIG_PAGE_EXTENSION is not set +CONFIG_PAGE_OFFSET=0xc000000000000000 +CONFIG_PGTABLE_LEVELS=4 +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_PPC64=y +CONFIG_PPC_970_NAP=y +# CONFIG_PPC_BOOK3E_64 is not set +CONFIG_PPC_BOOK3S_64=y +CONFIG_PPC_CELL=y +CONFIG_PPC_COPRO_BASE=y +CONFIG_PPC_DOORBELL=y +# CONFIG_PPC_EPAPR_HV_PIC is not set +CONFIG_PPC_I8259=y +CONFIG_PPC_ICP_HV=y +CONFIG_PPC_ICP_NATIVE=y +CONFIG_PPC_ICS_RTAS=y +# CONFIG_PPC_INDIRECT_PCI is not set +CONFIG_PPC_MM_SLICES=y +# CONFIG_PPC_MPC106 is not set +CONFIG_PPC_OF_BOOT_TRAMPOLINE=y +CONFIG_PPC_P7_NAP=y +CONFIG_PPC_RTAS=y +CONFIG_PPC_XICS=y +CONFIG_RELOCATABLE=y +CONFIG_RTC_DRV_DS3232=m +CONFIG_SCHED_SMT=y +CONFIG_SCSI_SRP_ATTRS=y +# CONFIG_SPI_PXA2XX_PCI is not set +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_PRINTF is not set +CONFIG_U3_DART=y +# CONFIG_WLAN_VENDOR_TI is not set +# CONFIG_WQ_WATCHDOG is not set --- linux-4.8.0.orig/debian.master/config/powerpc/config.flavour.powerpc-e500mc +++ linux-4.8.0/debian.master/config/powerpc/config.flavour.powerpc-e500mc @@ -0,0 +1,82 @@ +# +# Config options for config.flavour.powerpc-e500mc automatically generated by splitconfig.pl +# +CONFIG_6LOWPAN_GHC_EXT_HDR_DEST=m +CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG=m +CONFIG_6LOWPAN_GHC_EXT_HDR_HOP=m +CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE=m +CONFIG_6LOWPAN_GHC_ICMPV6=m +CONFIG_6LOWPAN_GHC_UDP=m +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_ARCH_PHYS_ADDR_T_64BIT=y +# CONFIG_ARCH_RANDOM is not set +# CONFIG_ATA_NONSTANDARD is not set +CONFIG_BATMAN_ADV_BATMAN_V=y +# CONFIG_CRASH_DUMP is not set +# CONFIG_CXL_AFU_DRIVER_OPS is not set +# CONFIG_CXL_BASE is not set +CONFIG_DEFAULT_UIMAGE=y +CONFIG_DM_VERITY_FEC=y +# CONFIG_EPAPR_BOOT is not set +CONFIG_FAT_DEFAULT_UTF8=y +CONFIG_FB_SYS_COPYAREA=y +CONFIG_FB_SYS_FILLRECT=y +CONFIG_FB_SYS_FOPS=y +CONFIG_FB_SYS_IMAGEBLIT=y +CONFIG_FB_UDL=y +CONFIG_FORCE_MAX_ZONEORDER=11 +CONFIG_GENERIC_TBSYNC=y +CONFIG_GPIO_GENERIC=y +CONFIG_HAS_RAPIDIO=y +# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set +CONFIG_HIBERNATION=y +CONFIG_HOTPLUG_CPU=y +CONFIG_HUGETLB_PAGE=y +CONFIG_I2C_SLAVE=y +CONFIG_IEEE802154_NL802154_EXPERIMENTAL=y +CONFIG_IMA=y +CONFIG_IWLWIFI_PCIE_RTPM=y +CONFIG_KERNEL_START=0xc0000000 +CONFIG_KEXEC=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 +CONFIG_MEDIA_CONTROLLER_DVB=y +# CONFIG_MMIO_NVRAM is not set +# CONFIG_MPIC_U3_HT_IRQS is not set +# CONFIG_NEED_DMA_MAP_STATE is not set +# CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK is not set +CONFIG_NETDEV_NOTIFIER_ERROR_INJECT=m +CONFIG_NET_ACT_IFE=m +# CONFIG_NONSTATIC_KERNEL is not set +CONFIG_NR_CPUS=8 +CONFIG_ORANGEFS_FS=m +CONFIG_PAGE_EXTENSION=y +CONFIG_PAGE_OFFSET=0xc0000000 +CONFIG_PGTABLE_LEVELS=2 +CONFIG_PHYS_ADDR_T_64BIT=y +# CONFIG_PPC64 is not set +CONFIG_PPC_85xx=y +# CONFIG_PPC_970_NAP is not set +# CONFIG_PPC_BOOK3S_32 is not set +# CONFIG_PPC_CELL is not set +# CONFIG_PPC_COPRO_BASE is not set +CONFIG_PPC_DOORBELL=y +CONFIG_PPC_EPAPR_HV_PIC=y +# CONFIG_PPC_I8259 is not set +# CONFIG_PPC_ICP_HV is not set +# CONFIG_PPC_ICP_NATIVE is not set +# CONFIG_PPC_ICS_RTAS is not set +CONFIG_PPC_INDIRECT_PCI=y +# CONFIG_PPC_MM_SLICES is not set +# CONFIG_PPC_MPC106 is not set +# CONFIG_PPC_P7_NAP is not set +# CONFIG_PPC_RTAS is not set +# CONFIG_PPC_XICS is not set +# CONFIG_RELOCATABLE is not set +CONFIG_RTC_DRV_DS3232=y +CONFIG_SCSI_SRP_ATTRS=m +CONFIG_SPI_PXA2XX_PCI=m +CONFIG_TEST_BITMAP=m +CONFIG_TEST_PRINTF=m +CONFIG_WLAN_VENDOR_TI=y +CONFIG_WQ_WATCHDOG=y --- linux-4.8.0.orig/debian.master/config/powerpc/config.flavour.powerpc-smp +++ linux-4.8.0/debian.master/config/powerpc/config.flavour.powerpc-smp @@ -0,0 +1,82 @@ +# +# Config options for config.flavour.powerpc-smp automatically generated by splitconfig.pl +# +# 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_ARCH_DMA_ADDR_T_64BIT is not set +# CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set +# CONFIG_ARCH_RANDOM is not set +# CONFIG_ATA_NONSTANDARD is not set +# CONFIG_BATMAN_ADV_BATMAN_V is not set +# CONFIG_CRASH_DUMP is not set +# CONFIG_CXL_AFU_DRIVER_OPS is not set +# CONFIG_CXL_BASE is not set +# CONFIG_DEFAULT_UIMAGE is not set +# CONFIG_DM_VERITY_FEC is not set +# CONFIG_EPAPR_BOOT is not set +# CONFIG_FAT_DEFAULT_UTF8 is not set +CONFIG_FB_SYS_COPYAREA=m +CONFIG_FB_SYS_FILLRECT=m +CONFIG_FB_SYS_FOPS=m +CONFIG_FB_SYS_IMAGEBLIT=m +CONFIG_FB_UDL=m +CONFIG_FORCE_MAX_ZONEORDER=11 +CONFIG_GENERIC_TBSYNC=y +CONFIG_GPIO_GENERIC=m +# CONFIG_HAS_RAPIDIO is not set +# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set +CONFIG_HIBERNATION=y +CONFIG_HOTPLUG_CPU=y +# CONFIG_HUGETLB_PAGE is not set +# CONFIG_I2C_SLAVE is not set +# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set +CONFIG_IMA=y +# CONFIG_IWLWIFI_PCIE_RTPM is not set +CONFIG_KERNEL_START=0xc0000000 +CONFIG_KEXEC=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 +# CONFIG_MEDIA_CONTROLLER_DVB is not set +# CONFIG_MMIO_NVRAM is not set +# CONFIG_MPIC_U3_HT_IRQS is not set +# CONFIG_NEED_DMA_MAP_STATE is not set +# CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK is not set +# CONFIG_NETDEV_NOTIFIER_ERROR_INJECT is not set +# CONFIG_NET_ACT_IFE is not set +# CONFIG_NONSTATIC_KERNEL is not set +CONFIG_NR_CPUS=4 +# CONFIG_ORANGEFS_FS is not set +CONFIG_PAGE_EXTENSION=y +CONFIG_PAGE_OFFSET=0xc0000000 +CONFIG_PGTABLE_LEVELS=2 +# CONFIG_PHYS_ADDR_T_64BIT is not set +# CONFIG_PPC64 is not set +# CONFIG_PPC_85xx is not set +# CONFIG_PPC_970_NAP is not set +CONFIG_PPC_BOOK3S_32=y +# CONFIG_PPC_CELL is not set +# CONFIG_PPC_COPRO_BASE is not set +# CONFIG_PPC_DOORBELL is not set +# CONFIG_PPC_EPAPR_HV_PIC is not set +CONFIG_PPC_I8259=y +# CONFIG_PPC_ICP_HV is not set +# CONFIG_PPC_ICP_NATIVE is not set +# CONFIG_PPC_ICS_RTAS is not set +CONFIG_PPC_INDIRECT_PCI=y +# CONFIG_PPC_MM_SLICES is not set +CONFIG_PPC_MPC106=y +CONFIG_PPC_OF_BOOT_TRAMPOLINE=y +# CONFIG_PPC_P7_NAP is not set +CONFIG_PPC_RTAS=y +# CONFIG_PPC_XICS is not set +CONFIG_RTC_DRV_DS3232=m +CONFIG_SCSI_SRP_ATTRS=m +# CONFIG_SPI_PXA2XX_PCI is not set +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_PRINTF is not set +# CONFIG_WLAN_VENDOR_TI is not set +# CONFIG_WQ_WATCHDOG is not set --- linux-4.8.0.orig/debian.master/config/powerpc/config.flavour.powerpc64-emb +++ linux-4.8.0/debian.master/config/powerpc/config.flavour.powerpc64-emb @@ -0,0 +1,87 @@ +# +# Config options for config.flavour.powerpc64-emb automatically generated by splitconfig.pl +# +CONFIG_6LOWPAN_GHC_EXT_HDR_DEST=m +CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG=m +CONFIG_6LOWPAN_GHC_EXT_HDR_HOP=m +CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE=m +CONFIG_6LOWPAN_GHC_ICMPV6=m +CONFIG_6LOWPAN_GHC_UDP=m +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_ARCH_PHYS_ADDR_T_64BIT=y +# CONFIG_ARCH_RANDOM is not set +# CONFIG_ATA_NONSTANDARD is not set +CONFIG_BATMAN_ADV_BATMAN_V=y +CONFIG_CRASH_DUMP=y +# CONFIG_CXL_AFU_DRIVER_OPS is not set +# CONFIG_CXL_BASE is not set +CONFIG_DEFAULT_UIMAGE=y +CONFIG_DM_VERITY_FEC=y +# CONFIG_EPAPR_BOOT is not set +CONFIG_FAT_DEFAULT_UTF8=y +CONFIG_FB_SYS_COPYAREA=y +CONFIG_FB_SYS_FILLRECT=y +CONFIG_FB_SYS_FOPS=y +CONFIG_FB_SYS_IMAGEBLIT=y +CONFIG_FB_UDL=y +CONFIG_FORCE_MAX_ZONEORDER=13 +# CONFIG_GENERIC_TBSYNC is not set +CONFIG_GPIO_GENERIC=y +CONFIG_HAS_RAPIDIO=y +# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +# CONFIG_HIBERNATION is not set +# CONFIG_HOTPLUG_CPU is not set +CONFIG_HUGETLB_PAGE=y +CONFIG_I2C_SLAVE=y +CONFIG_IEEE802154_NL802154_EXPERIMENTAL=y +# CONFIG_IMA is not set +CONFIG_IWLWIFI_PCIE_RTPM=y +CONFIG_KERNEL_START=0xc000000000000000 +# CONFIG_KEXEC is not set +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 +CONFIG_MEDIA_CONTROLLER_DVB=y +# CONFIG_MEMORY_HOTPLUG is not set +# CONFIG_MMIO_NVRAM is not set +# CONFIG_MPIC_U3_HT_IRQS is not set +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NETDEV_NOTIFIER_ERROR_INJECT=m +CONFIG_NET_ACT_IFE=m +CONFIG_NONSTATIC_KERNEL=y +CONFIG_NR_CPUS=8 +# CONFIG_NUMA is not set +CONFIG_ORANGEFS_FS=m +# CONFIG_PAGE_EXTENSION is not set +CONFIG_PAGE_OFFSET=0xc000000000000000 +CONFIG_PGTABLE_LEVELS=4 +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_PPC64=y +# CONFIG_PPC_970_NAP is not set +CONFIG_PPC_BOOK3E_64=y +# CONFIG_PPC_BOOK3S_64 is not set +# CONFIG_PPC_CELL is not set +# CONFIG_PPC_COPRO_BASE is not set +CONFIG_PPC_DOORBELL=y +CONFIG_PPC_EPAPR_HV_PIC=y +# CONFIG_PPC_I8259 is not set +# CONFIG_PPC_ICP_HV is not set +# CONFIG_PPC_ICP_NATIVE is not set +# CONFIG_PPC_ICS_RTAS is not set +CONFIG_PPC_INDIRECT_PCI=y +# CONFIG_PPC_MM_SLICES is not set +# CONFIG_PPC_MPC106 is not set +# CONFIG_PPC_OF_BOOT_TRAMPOLINE is not set +# CONFIG_PPC_P7_NAP is not set +# CONFIG_PPC_RTAS is not set +# CONFIG_PPC_XICS is not set +CONFIG_RELOCATABLE=y +CONFIG_RTC_DRV_DS3232=y +# CONFIG_SCHED_SMT is not set +CONFIG_SCSI_SRP_ATTRS=m +CONFIG_SPI_PXA2XX_PCI=m +CONFIG_TEST_BITMAP=m +CONFIG_TEST_PRINTF=m +# CONFIG_U3_DART is not set +CONFIG_WLAN_VENDOR_TI=y +CONFIG_WQ_WATCHDOG=y --- linux-4.8.0.orig/debian.master/config/ppc64el/config.common.ppc64el +++ linux-4.8.0/debian.master/config/ppc64el/config.common.ppc64el @@ -0,0 +1,716 @@ +# +# Config options for config.common.ppc64el automatically generated by splitconfig.pl +# +CONFIG_64BIT=y +# 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_ABX500_CORE=y +CONFIG_AC97_BUS=m +CONFIG_AD525X_DPOT=m +CONFIG_AIX_PARTITION=y +CONFIG_ALIM7101_WDT=m +CONFIG_ALTERA_STAPL=m +CONFIG_ALTERA_TSE=m +CONFIG_AMD_PHY=m +CONFIG_AMIGA_PARTITION=y +CONFIG_APDS9802ALS=m +CONFIG_APPLICOM=m +CONFIG_AQUANTIA_PHY=m +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_ARCH_HAS_ILOG2_U32=y +CONFIG_ARCH_HAS_ILOG2_U64=y +# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set +CONFIG_ARCH_PHYS_ADDR_T_64BIT=y +CONFIG_ARCH_RANDOM=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCNET=m +CONFIG_ASYNC_RAID6_TEST=m +CONFIG_AT803X_PHY=m +CONFIG_ATALK=m +CONFIG_ATARI_PARTITION=y +CONFIG_ATA_GENERIC=m +# CONFIG_ATA_NONSTANDARD is not set +CONFIG_ATA_OVER_ETH=m +CONFIG_ATA_PIIX=m +CONFIG_ATH10K_AHB=y +CONFIG_ATM=m +# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set +CONFIG_AUXDISPLAY=y +CONFIG_BACKLIGHT_LCD_SUPPORT=y +# CONFIG_BATMAN_ADV_BATMAN_V is not set +CONFIG_BCH=m +CONFIG_BCM7XXX_PHY=m +CONFIG_BCM87XX_PHY=m +CONFIG_BCMA=m +CONFIG_BCM_KONA_USB2_PHY=m +CONFIG_BE2ISCSI=m +CONFIG_BLK_CMDLINE_PARSER=y +CONFIG_BLK_CPQ_CISS_DA=m +CONFIG_BLK_DEV_3W_XXXX_RAID=m +CONFIG_BLK_DEV_CRYPTOLOOP=m +CONFIG_BLK_DEV_DAC960=m +CONFIG_BLK_DEV_NVME=m +CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m +CONFIG_BLK_DEV_RSXX=m +CONFIG_BLK_DEV_SKD=m +# CONFIG_BLK_DEV_SR_VENDOR is not set +CONFIG_BLK_DEV_SX8=m +CONFIG_BLK_DEV_UMEM=m +CONFIG_BMP085_I2C=m +CONFIG_BROADCOM_PHY=m +CONFIG_C2PORT=m +CONFIG_CADENCE_WATCHDOG=m +CONFIG_CAIF_HSI=m +CONFIG_CAIF_SPI_SLAVE=m +CONFIG_CAIF_TTY=m +CONFIG_CAIF_VIRTIO=m +CONFIG_CB710_CORE=m +# CONFIG_CC_STACKPROTECTOR is not set +CONFIG_CDROM_PKTCDVD=m +CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y +CONFIG_CGROUP_HUGETLB=y +CONFIG_CICADA_PHY=m +CONFIG_CIFS_SMB311=y +# CONFIG_CIFS_STATS2 is not set +# CONFIG_CLS_U32_PERF is not set +CONFIG_CMA=y +CONFIG_CMDLINE_PARTITION=y +CONFIG_CMM=m +# CONFIG_CPU_BIG_ENDIAN is not set +CONFIG_CPU_LITTLE_ENDIAN=y +# CONFIG_CPU_NO_EFFICIENT_FFS is not set +CONFIG_CRAMFS=m +CONFIG_CRASH_DUMP=y +CONFIG_CRC16=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_CTR=y +CONFIG_CRYPTO_CTS=y +CONFIG_CRYPTO_DRBG=y +CONFIG_CRYPTO_DRBG_MENU=y +CONFIG_CRYPTO_GF128MUL=y +CONFIG_CRYPTO_JITTERENTROPY=y +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_RNG_DEFAULT=y +CONFIG_CRYPTO_SEQIV=y +CONFIG_CRYPTO_XTS=y +CONFIG_CXL_AFU_DRIVER_OPS=y +CONFIG_CXL_BASE=y +CONFIG_DAVICOM_PHY=m +CONFIG_DEBUG_INFO_DWARF4=y +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_DECNET=m +# CONFIG_DEFAULT_CFQ is not set +CONFIG_DEFAULT_DEADLINE=y +CONFIG_DEFAULT_IOSCHED="deadline" +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +# CONFIG_DEFAULT_UIMAGE is not set +# CONFIG_DLM_DEBUG is not set +CONFIG_DMADEVICES=y +CONFIG_DMA_VIRTUAL_CHANNELS=m +# CONFIG_DM_DEBUG is not set +# CONFIG_DM_MQ_DEFAULT is not set +# CONFIG_DM_VERITY_FEC is not set +CONFIG_DNET=m +CONFIG_DNS_RESOLVER=y +CONFIG_DP83848_PHY=m +CONFIG_DP83867_PHY=m +CONFIG_DRM=m +CONFIG_DS1682=m +CONFIG_DUMMY_IRQ=m +CONFIG_DW_WATCHDOG=m +CONFIG_ECHO=m +CONFIG_EEPROM_93CX6=m +CONFIG_EEPROM_AT24=m +CONFIG_EEPROM_LEGACY=m +CONFIG_EEPROM_MAX6875=m +# CONFIG_EM_TIMER_STI is not set +# CONFIG_ENABLE_MUST_CHECK is not set +# CONFIG_ENABLE_WARN_DEPRECATED is not set +CONFIG_ENCLOSURE_SERVICES=m +CONFIG_EPAPR_BOOT=y +CONFIG_ETHOC=m +CONFIG_EXT4_FS=y +CONFIG_EXTCON=y +CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y +# CONFIG_FAT_DEFAULT_UTF8 is not set +CONFIG_FB=y +CONFIG_FB_ATY128=m +# CONFIG_FB_BOOT_VESA_SUPPORT is not set +# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set +CONFIG_FB_IBM_GXT4500=y +CONFIG_FB_MACMODES=y +CONFIG_FB_SYS_COPYAREA=m +CONFIG_FB_SYS_FILLRECT=m +CONFIG_FB_SYS_FOPS=m +CONFIG_FB_SYS_IMAGEBLIT=m +CONFIG_FB_UDL=m +CONFIG_FB_VOODOO1=m +CONFIG_FDDI=y +CONFIG_FEALNX=m +CONFIG_FIREWIRE=m +CONFIG_FIREWIRE_NOSY=m +CONFIG_FIRMWARE_IN_KERNEL=y +CONFIG_FIXED_PHY=y +CONFIG_FMC=m +# CONFIG_FONTS is not set +CONFIG_FORCE_MAX_ZONEORDER=9 +CONFIG_FRAME_WARN=2048 +CONFIG_FS_ENCRYPTION=y +CONFIG_FS_MBCACHE=y +CONFIG_FUNCTION_PROFILER=y +CONFIG_FUSE_FS=y +CONFIG_FUSION=y +CONFIG_GAMEPORT=m +CONFIG_GDB_SCRIPTS=y +# CONFIG_GENERIC_CSUM is not set +CONFIG_GENERIC_PHY=y +# CONFIG_GENERIC_TBSYNC is not set +CONFIG_GPIOLIB=y +CONFIG_GPIO_GENERIC=m +CONFIG_GPIO_GENERIC_PLATFORM=m +CONFIG_GPIO_TWL4030=m +CONFIG_GPIO_TWL6040=m +CONFIG_GPIO_XILINX=y +# CONFIG_HAS_RAPIDIO is not set +CONFIG_HAVE_64BIT_ALIGNED_ACCESS=y +# CONFIG_HAVE_AOUT is not set +# CONFIG_HAVE_ARCH_BITREVERSE is not set +CONFIG_HAVE_BOOTMEM_INFO_NODE=y +# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_HFSPLUS_FS_POSIX_ACL=y +# CONFIG_HIBERNATION is not set +# CONFIG_HIO is not set +CONFIG_HMC6352=m +CONFIG_HOTPLUG_CPU=y +CONFIG_HOTPLUG_PCI=y +# CONFIG_HOTPLUG_PCI_PCIE is not set +# CONFIG_HOTPLUG_PCI_SHPC is not set +CONFIG_HPFS_FS=m +CONFIG_HP_ILO=m +CONFIG_HSI=m +CONFIG_HTC_PASIC3=m +CONFIG_HUGETLB_PAGE=y +CONFIG_HWMON=y +CONFIG_HW_RANDOM_TIMERIOMEM=m +CONFIG_HZ=250 +# CONFIG_HZ_1000 is not set +CONFIG_HZ_250=y +CONFIG_I2C=y +CONFIG_I2C_ALGOPCA=m +CONFIG_I2C_ALI1535=m +CONFIG_I2C_ALI1563=m +CONFIG_I2C_ALI15X3=m +CONFIG_I2C_AMD756=m +CONFIG_I2C_AMD8111=m +CONFIG_I2C_CHARDEV=y +CONFIG_I2C_COMPAT=y +CONFIG_I2C_DESIGNWARE_PCI=m +CONFIG_I2C_DESIGNWARE_PLATFORM=m +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_I801=m +CONFIG_I2C_ISCH=m +CONFIG_I2C_MUX=m +CONFIG_I2C_NFORCE2=m +CONFIG_I2C_OCORES=m +CONFIG_I2C_PARPORT_LIGHT=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_SMBUS=m +CONFIG_I2C_STUB=m +CONFIG_I2C_TAOS_EVM=m +CONFIG_I2C_VIA=m +CONFIG_I2C_VIAPRO=m +CONFIG_I2C_XILINX=m +CONFIG_I6300ESB_WDT=m +CONFIG_IBMEBUS=y +CONFIG_IBMVETH=y +CONFIG_ICPLUS_PHY=m +CONFIG_ICS932S401=m +CONFIG_IDLE_PAGE_TRACKING=y +CONFIG_IEEE802154_DRIVERS=m +# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set +CONFIG_IIO=m +CONFIG_IMA=y +CONFIG_INFINIBAND_NES=m +CONFIG_INFINIBAND_OCRDMA=m +CONFIG_INFINIBAND_QIB=m +CONFIG_INPUT=y +CONFIG_INTERVAL_TREE_TEST=m +CONFIG_IPACK_BUS=m +CONFIG_IPMI_HANDLER=m +CONFIG_IPV6_ILA=m +CONFIG_IPV6_MIP6=m +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +# CONFIG_IPX_INTERN is not set +# CONFIG_IP_DCCP_CCID3 is not set +# CONFIG_IP_MROUTE_MULTIPLE_TABLES is not set +CONFIG_IRQ_ALL_CPUS=y +CONFIG_IRQ_BYPASS_MANAGER=y +# CONFIG_IRQ_FORCED_THREADING_DEFAULT is not set +# CONFIG_ISA_BUS_API is not set +CONFIG_ISL29003=m +CONFIG_ISL29020=m +# CONFIG_IWLWIFI_PCIE_RTPM is not set +CONFIG_JBD2=y +CONFIG_JFS_STATISTICS=y +CONFIG_JME=m +CONFIG_JUMP_LABEL=y +# CONFIG_KALLSYMS_ABSOLUTE_PERCPU is not set +CONFIG_KALLSYMS_ALL=y +CONFIG_KERNEL_START=0xc000000000000000 +CONFIG_KEXEC=y +CONFIG_KVM=y +CONFIG_LDM_PARTITION=y +CONFIG_LIBNVDIMM=y +CONFIG_LLC2=m +CONFIG_LOCK_TORTURE_TEST=m +# CONFIG_LOGFS is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_LPARCFG=y +CONFIG_LPC_ICH=m +CONFIG_LPC_SCH=m +CONFIG_LSI_ET1011C_PHY=m +CONFIG_LXT_PHY=m +CONFIG_MAC_PARTITION=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 +CONFIG_MAILBOX=y +CONFIG_MARVELL_PHY=m +CONFIG_MAX63XX_WATCHDOG=m +CONFIG_MCB=m +CONFIG_MDIO_BCM_UNIMAC=m +CONFIG_MDIO_BITBANG=m +CONFIG_MDIO_BUS_MUX=m +CONFIG_MDIO_OCTEON=m +CONFIG_MDIO_THUNDER=m +CONFIG_MD_MULTIPATH=m +# CONFIG_MEDIA_CONTROLLER_DVB is not set +CONFIG_MEDIA_SUPPORT=m +CONFIG_MEGARAID_LEGACY=m +CONFIG_MEGARAID_NEWGEN=y +CONFIG_MEGARAID_SAS=m +CONFIG_MEMORY=y +CONFIG_MEMORY_HOTPLUG=y +CONFIG_MEMSTICK=m +CONFIG_MEMTEST=y +# CONFIG_MEM_SOFT_DIRTY is not set +CONFIG_MFD_88PM800=m +CONFIG_MFD_88PM805=m +CONFIG_MFD_ARIZONA_I2C=m +CONFIG_MFD_BCM590XX=m +CONFIG_MFD_CORE=y +CONFIG_MFD_DA9062=m +CONFIG_MFD_DA9063=y +CONFIG_MFD_DA9150=m +CONFIG_MFD_JANZ_CMODIO=m +CONFIG_MFD_KEMPLD=m +CONFIG_MFD_LM3533=m +CONFIG_MFD_LP3943=m +CONFIG_MFD_MAX14577=y +CONFIG_MFD_MAX77693=y +CONFIG_MFD_MAX8907=m +CONFIG_MFD_MC13XXX_I2C=m +CONFIG_MFD_MENF21BMC=m +CONFIG_MFD_MT6397=m +CONFIG_MFD_PCF50633=m +CONFIG_MFD_RDC321X=m +CONFIG_MFD_RETU=m +CONFIG_MFD_RT5033=m +CONFIG_MFD_RTSX_PCI=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_TMIO is not set +CONFIG_MFD_TPS65217=m +CONFIG_MFD_TPS65218=m +CONFIG_MFD_TPS65912_I2C=y +CONFIG_MFD_VX855=m +CONFIG_MFD_WL1273_CORE=m +CONFIG_MFD_WM8994=m +CONFIG_MICREL_PHY=m +CONFIG_MICROCHIP_PHY=m +CONFIG_MII=m +CONFIG_MINIX_SUBPARTITION=y +CONFIG_MMC=y +CONFIG_MMC_BLOCK=m +CONFIG_MMC_SDHCI=m +CONFIG_MMC_SDHCI_OF_ESDHC=m +CONFIG_MMC_SDHCI_PLTFM=m +# CONFIG_MMIO_NVRAM is not set +# CONFIG_MODULE_FORCE_LOAD is not set +# CONFIG_MODULE_FORCE_UNLOAD is not set +CONFIG_MODULE_SRCVERSION_ALL=y +CONFIG_MOVABLE_NODE=y +# CONFIG_MPIC_MSGR is not set +# CONFIG_MPIC_U3_HT_IRQS is not set +CONFIG_MTD=m +CONFIG_MTD_BLKDEVS=m +CONFIG_MTD_BLOCK=m +CONFIG_MTD_CMDLINE_PARTS=m +CONFIG_MTD_NAND=m +CONFIG_MTD_NAND_BCH=m +CONFIG_MTD_NAND_ECC=m +CONFIG_MTD_NAND_IDS=m +# CONFIG_MTD_NAND_OMAP_BCH_BUILD is not set +CONFIG_MTD_OF_PARTS=m +CONFIG_NATIONAL_PHY=m +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +# CONFIG_NETDEV_NOTIFIER_ERROR_INJECT is not set +# CONFIG_NET_ACT_IFE is not set +CONFIG_NET_CADENCE=y +# CONFIG_NET_CLS_IND is not set +# CONFIG_NET_KEY_MIGRATE is not set +CONFIG_NET_MPLS_GSO=m +CONFIG_NET_PACKET_ENGINE=y +# CONFIG_NET_SWITCHDEV is not set +CONFIG_NET_TCPPROBE=m +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_EXAR=y +CONFIG_NET_VENDOR_EZCHIP=y +CONFIG_NET_VENDOR_HP=y +CONFIG_NET_VENDOR_INTEL=y +CONFIG_NET_VENDOR_MARVELL=y +CONFIG_NET_VENDOR_MICREL=y +CONFIG_NET_VENDOR_MYRI=y +CONFIG_NET_VENDOR_NATSEMI=y +CONFIG_NET_VENDOR_NVIDIA=y +CONFIG_NET_VENDOR_OKI=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_SYNOPSYS=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_NFS_V4_1_MIGRATION=y +# CONFIG_NF_CONNTRACK_PROCFS is not set +CONFIG_NODES_SHIFT=8 +CONFIG_NONSTATIC_KERNEL=y +CONFIG_NOP_USB_XCEIV=m +CONFIG_NOZOMI=m +CONFIG_NO_HZ=y +CONFIG_NR_CPUS=2048 +CONFIG_NTB=m +CONFIG_NUMA=y +CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y +CONFIG_NVMEM=m +CONFIG_N_GSM=m +CONFIG_OF=y +# CONFIG_ORANGEFS_FS is not set +CONFIG_OSF_PARTITION=y +# CONFIG_PAGE_EXTENSION is not set +CONFIG_PAGE_OFFSET=0xc000000000000000 +CONFIG_PARPORT=m +CONFIG_PATA_SIS=m +# CONFIG_PCCARD is not set +CONFIG_PCIPCWATCHDOG=m +# CONFIG_PCI_MSI_IRQ_DOMAIN is not set +CONFIG_PCI_PASID=y +CONFIG_PCI_PRI=y +CONFIG_PCI_QUIRKS=y +CONFIG_PERCPU_TEST=m +CONFIG_PERSISTENT_KEYRINGS=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_PGTABLE_MAPPING=y +CONFIG_PHANTOM=m +CONFIG_PHYLIB=y +CONFIG_PHYSICAL_START=0x00000000 +CONFIG_PHYS_ADDR_T_64BIT=y +# CONFIG_PHY_EXYNOS5250_USB2 is not set +CONFIG_PHY_PXA_28NM_HSIC=m +CONFIG_PHY_PXA_28NM_USB2=m +CONFIG_PM_DEVFREQ=y +CONFIG_POWER7_CPU=y +CONFIG_POWERCAP=y +CONFIG_POWER_AVS=y +CONFIG_POWER_RESET=y +CONFIG_POWER_SUPPLY=y +CONFIG_PPC64=y +# CONFIG_PPC_4K_PAGES is not set +CONFIG_PPC_64K_PAGES=y +# CONFIG_PPC_970_NAP is not set +# CONFIG_PPC_BOOK3E_64 is not set +CONFIG_PPC_BOOK3S_64=y +# CONFIG_PPC_CELL is not set +CONFIG_PPC_COPRO_BASE=y +CONFIG_PPC_DENORMALISATION=y +# CONFIG_PPC_DISABLE_WERROR is not set +CONFIG_PPC_DOORBELL=y +# CONFIG_PPC_EPAPR_HV_PIC is not set +CONFIG_PPC_I8259=y +CONFIG_PPC_ICP_HV=y +CONFIG_PPC_ICP_NATIVE=y +# CONFIG_PPC_ICSWX is not set +CONFIG_PPC_ICS_RTAS=y +# CONFIG_PPC_INDIRECT_PCI is not set +CONFIG_PPC_MM_SLICES=y +# CONFIG_PPC_MPC106 is not set +CONFIG_PPC_OF_BOOT_TRAMPOLINE=y +CONFIG_PPC_P7_NAP=y +CONFIG_PPC_RTAS=y +CONFIG_PPC_SMLPAR=y +CONFIG_PPC_SPLPAR=y +CONFIG_PPC_XICS=y +CONFIG_PPP=y +CONFIG_PPS=y +CONFIG_PPS_CLIENT_GPIO=m +CONFIG_PPS_CLIENT_LDISC=m +# CONFIG_PREEMPT is not set +CONFIG_PREEMPT_VOLUNTARY=y +# CONFIG_PRINT_QUOTA_WARNING is not set +CONFIG_PSTORE=y +# CONFIG_PSTORE_CONSOLE is not set +CONFIG_PSTORE_RAM=m +CONFIG_PTP_1588_CLOCK=y +CONFIG_PWM=y +CONFIG_PWM_PCA9685=m +CONFIG_QSEMI_PHY=m +CONFIG_R3964=m +CONFIG_RAW_DRIVER=m +CONFIG_RBTREE_TEST=m +CONFIG_RCU_CPU_STALL_TIMEOUT=21 +CONFIG_REALTEK_PHY=m +CONFIG_REED_SOLOMON=m +CONFIG_REGMAP_I2C=y +CONFIG_REGULATOR=y +CONFIG_REGULATOR_FIXED_VOLTAGE=m +CONFIG_REGULATOR_TPS65217=m +CONFIG_REGULATOR_TWL4030=m +CONFIG_RELOCATABLE=y +CONFIG_RESET_CONTROLLER=y +CONFIG_RFKILL=y +CONFIG_RTC_DRV_CMOS=m +CONFIG_RTC_DRV_DS3232=m +CONFIG_RTC_DRV_PCF8523=m +CONFIG_RTC_DRV_TWL4030=m +CONFIG_SATA_AHCI_PLATFORM=m +CONFIG_SATA_SVW=m +CONFIG_SCHEDSTATS=y +CONFIG_SCHED_SMT=y +CONFIG_SCHED_TRACER=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_ESAS2R=m +CONFIG_SCSI_FUTURE_DOMAIN=m +CONFIG_SCSI_HPSA=m +CONFIG_SCSI_HPTIOP=m +CONFIG_SCSI_INIA100=m +CONFIG_SCSI_INITIO=m +CONFIG_SCSI_IPS=m +CONFIG_SCSI_LPFC=m +CONFIG_SCSI_MPT2SAS=m +CONFIG_SCSI_MPT3SAS=m +# CONFIG_SCSI_MQ_DEFAULT is not set +CONFIG_SCSI_MVSAS=m +CONFIG_SCSI_MVUMI=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_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set +CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y +CONFIG_SECURITY_SELINUX_BOOTPARAM=y +CONFIG_SECURITY_SELINUX_DISABLE=y +CONFIG_SENSORS_APDS990X=m +CONFIG_SENSORS_BH1770=m +# CONFIG_SENSORS_SCH56XX_COMMON is not set +CONFIG_SENSORS_TSL2550=m +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_DW=m +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_FSL=y +CONFIG_SERIAL_ALTERA_JTAGUART=m +CONFIG_SERIAL_ALTERA_UART=m +CONFIG_SERIAL_ARC=m +CONFIG_SERIAL_CORE=y +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_SGETMASK_SYSCALL=y +CONFIG_SGI_IOC4=m +CONFIG_SGI_PARTITION=y +# CONFIG_SG_SPLIT is not set +# CONFIG_SH_TIMER_CMT is not set +# CONFIG_SH_TIMER_MTU2 is not set +# CONFIG_SH_TIMER_TMU is not set +# CONFIG_SIMPLE_GPIO is not set +CONFIG_SLIP=m +CONFIG_SMSC_PHY=m +CONFIG_SND=m +CONFIG_SND_DMAENGINE_PCM=m +CONFIG_SND_EMU10K1_SEQ=m +# CONFIG_SND_OPL4_LIB_SEQ is not set +CONFIG_SND_PCM=m +# CONFIG_SND_SBAWE_SEQ is not set +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_RT5677_SPI is not set +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_PXA2XX_PCI is not set +# CONFIG_SPI_ROCKCHIP is not set +CONFIG_SPMI=m +# CONFIG_SQUASHFS_FILE_CACHE is not set +CONFIG_SQUASHFS_FILE_DIRECT=y +CONFIG_SQUASHFS_LZ4=y +CONFIG_SRAM=y +CONFIG_SSB=m +CONFIG_STAGING=y +CONFIG_STANDALONE=y +CONFIG_STE10XP=m +CONFIG_STE_MODEM_RPROC=m +# CONFIG_STRIP_ASM_SYMS is not set +CONFIG_SUN_PARTITION=y +CONFIG_SYSCTL_SYSCALL=y +CONFIG_SYSFS_SYSCALL=y +CONFIG_SYSV68_PARTITION=y +# CONFIG_SYS_HYPERVISOR is not set +CONFIG_TCG_TIS_CORE=m +CONFIG_TCG_TIS_I2C_ATMEL=m +CONFIG_TCG_TIS_I2C_INFINEON=m +CONFIG_TCG_TIS_I2C_NUVOTON=m +CONFIG_TCG_TIS_ST33ZP24_I2C=m +CONFIG_TERANETICS_PHY=m +# CONFIG_TEST_BITMAP is not set +CONFIG_TEST_HEXDUMP=m +CONFIG_TEST_KSTRTOX=m +CONFIG_TEST_LKM=m +# CONFIG_TEST_PRINTF is not set +CONFIG_TEST_STRING_HELPERS=m +CONFIG_TEST_UDELAY=m +CONFIG_THERMAL=y +CONFIG_THUNDERBOLT=m +CONFIG_TIFM_CORE=m +CONFIG_TI_CPSW_ALE=m +CONFIG_TPS6105X=m +CONFIG_TPS6507X=m +CONFIG_TRACE_SINK=m +CONFIG_TRANSPARENT_HUGEPAGE=y +CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y +# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set +CONFIG_TRUSTED_KEYS=y +CONFIG_TTY_PRINTK=y +# CONFIG_U3_DART is not set +# CONFIG_UBIFS_ATIME_SUPPORT is not set +# CONFIG_UDBG_RTAS_CONSOLE is not set +CONFIG_UIO=m +CONFIG_ULTRIX_PARTITION=y +CONFIG_UNIXWARE_DISKLABEL=y +CONFIG_UNUSED_SYMBOLS=y +CONFIG_UPROBES=y +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_OHCI_HCD_PPC_OF is not set +# CONFIG_USB_OHCI_HCD_PPC_OF_BE is not set +CONFIG_USB_SUPPORT=y +CONFIG_USB_SWITCH_FSA9480=m +CONFIG_USELIB=y +CONFIG_UWB=m +CONFIG_VFIO=y +CONFIG_VFIO_IOMMU_SPAPR_TCE=y +# CONFIG_VFIO_IOMMU_TYPE1 is not set +CONFIG_VFIO_NOIOMMU=y +CONFIG_VFIO_PCI=y +CONFIG_VFIO_SPAPR_EEH=y +CONFIG_VFIO_VIRQFD=y +CONFIG_VGASTATE=m +CONFIG_VIRTIO_MMIO=y +# CONFIG_VIRT_CPU_ACCOUNTING_NATIVE is not set +CONFIG_VITESSE_PHY=m +CONFIG_VME_BUS=y +CONFIG_VMXNET3=m +CONFIG_W1=m +CONFIG_WAN=y +CONFIG_WDTPCI=m +# CONFIG_WLAN_VENDOR_TI is not set +# CONFIG_WQ_WATCHDOG is not set +# CONFIG_XFRM_MIGRATE is not set +CONFIG_XFRM_STATISTICS=y +# CONFIG_XFRM_SUB_POLICY is not set +CONFIG_XILINX_WATCHDOG=m +CONFIG_XILLYBUS=m +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_TEST=m +CONFIG_ZLIB_DEFLATE=y +CONFIG_ZSMALLOC=y --- linux-4.8.0.orig/debian.master/config/ppc64el/config.flavour.generic +++ linux-4.8.0/debian.master/config/ppc64el/config.flavour.generic @@ -0,0 +1,3 @@ +# +# Config options for config.flavour.generic automatically generated by splitconfig.pl +# --- linux-4.8.0.orig/debian.master/config/s390x/config.common.s390x +++ linux-4.8.0/debian.master/config/s390x/config.common.s390x @@ -0,0 +1,567 @@ +# +# Config options for config.common.s390x automatically generated by splitconfig.pl +# +CONFIG_64BIT=y +# 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_ABX500_CORE is not set +# CONFIG_AD525X_DPOT 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_AMD_PHY is not set +# CONFIG_AMIGA_PARTITION is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_APPLICOM is not set +# CONFIG_AQUANTIA_PHY is not set +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +# CONFIG_ARCH_HAS_ILOG2_U32 is not set +# CONFIG_ARCH_HAS_ILOG2_U64 is not set +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +# CONFIG_ARCNET is not set +# CONFIG_ASYNC_RAID6_TEST is not set +# CONFIG_AT803X_PHY 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_AUDIT_ARCH_COMPAT_GENERIC is not set +# CONFIG_AUXDISPLAY is not set +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set +# CONFIG_BCM7XXX_PHY is not set +# CONFIG_BCM87XX_PHY is not set +# CONFIG_BCMA is not set +# CONFIG_BCM_KONA_USB2_PHY is not set +# CONFIG_BE2ISCSI is not set +# CONFIG_BLK_CMDLINE_PARSER is not set +# CONFIG_BLK_CPQ_CISS_DA is not set +# CONFIG_BLK_DEV_3W_XXXX_RAID is not set +# CONFIG_BLK_DEV_CRYPTOLOOP is not set +# CONFIG_BLK_DEV_DAC960 is not set +# CONFIG_BLK_DEV_NVME is not set +# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set +# CONFIG_BLK_DEV_RSXX is not set +# CONFIG_BLK_DEV_SKD is not set +CONFIG_BLK_DEV_SR_VENDOR=y +# CONFIG_BLK_DEV_SX8 is not set +# CONFIG_BLK_DEV_UMEM is not set +# CONFIG_BMP085_I2C is not set +# CONFIG_BROADCOM_PHY is not set +# CONFIG_C2PORT is not set +# CONFIG_CADENCE_WATCHDOG is not set +# CONFIG_CAIF_HSI is not set +# CONFIG_CAIF_SPI_SLAVE is not set +# CONFIG_CAIF_TTY is not set +# CONFIG_CAIF_VIRTIO is not set +# CONFIG_CB710_CORE is not set +# CONFIG_CC_STACKPROTECTOR is not set +# CONFIG_CDROM_PKTCDVD is not set +# CONFIG_CEPH_LIB_USE_DNS_RESOLVER is not set +# CONFIG_CGROUP_HUGETLB is not set +# CONFIG_CICADA_PHY is not set +# CONFIG_CIFS_SMB311 is not set +CONFIG_CIFS_STATS2=y +CONFIG_CLS_U32_PERF=y +# CONFIG_CMA is not set +# CONFIG_CMDLINE_PARTITION is not set +CONFIG_CMM=y +CONFIG_CPU_BIG_ENDIAN=y +CONFIG_CPU_NO_EFFICIENT_FFS=y +# CONFIG_CRAMFS is not set +CONFIG_CRASH_DUMP=y +CONFIG_CRC16=m +CONFIG_CRYPTO_AEAD=m +CONFIG_CRYPTO_CTR=m +CONFIG_CRYPTO_CTS=m +CONFIG_CRYPTO_DRBG=m +CONFIG_CRYPTO_DRBG_MENU=m +CONFIG_CRYPTO_GF128MUL=m +CONFIG_CRYPTO_JITTERENTROPY=m +CONFIG_CRYPTO_NULL=m +CONFIG_CRYPTO_RNG_DEFAULT=m +CONFIG_CRYPTO_SEQIV=m +CONFIG_CRYPTO_XTS=m +# CONFIG_CXL_AFU_DRIVER_OPS is not set +# CONFIG_CXL_BASE is not set +# CONFIG_DAVICOM_PHY is not set +# CONFIG_DEBUG_INFO_DWARF4 is not set +CONFIG_DEBUG_LIST=y +CONFIG_DEBUG_MEMORY_INIT=y +CONFIG_DEBUG_PER_CPU_MAPS=y +# CONFIG_DECNET is not set +CONFIG_DEFAULT_CFQ=y +# CONFIG_DEFAULT_DEADLINE is not set +CONFIG_DEFAULT_IOSCHED="cfq" +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +CONFIG_DLM_DEBUG=y +# CONFIG_DMADEVICES is not set +CONFIG_DM_DEBUG=y +CONFIG_DM_MQ_DEFAULT=y +# CONFIG_DM_VERITY_FEC is not set +# CONFIG_DNET is not set +CONFIG_DNS_RESOLVER=m +# CONFIG_DP83848_PHY is not set +# CONFIG_DP83867_PHY is not set +# CONFIG_DRM is not set +# CONFIG_DS1682 is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_DW_WATCHDOG is not set +# CONFIG_ECHO is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_AT24 is not set +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EM_TIMER_STI is not set +CONFIG_ENABLE_MUST_CHECK=y +CONFIG_ENABLE_WARN_DEPRECATED=y +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_ETHOC is not set +CONFIG_EXT4_FS=m +# CONFIG_EXTCON is not set +# CONFIG_FANOTIFY_ACCESS_PERMISSIONS is not set +# CONFIG_FAT_DEFAULT_UTF8 is not set +# CONFIG_FB 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_IN_KERNEL is not set +# CONFIG_FIXED_PHY is not set +# CONFIG_FMC is not set +CONFIG_FORCE_MAX_ZONEORDER=9 +CONFIG_FRAME_WARN=2048 +CONFIG_FS_ENCRYPTION=m +CONFIG_FS_MBCACHE=m +# CONFIG_FUNCTION_PROFILER is not set +CONFIG_FUSE_FS=m +# CONFIG_FUSION is not set +# CONFIG_GAMEPORT is not set +# CONFIG_GDB_SCRIPTS is not set +# CONFIG_GENERIC_PHY is not set +# CONFIG_GPIOLIB is not set +CONFIG_HAVE_64BIT_ALIGNED_ACCESS=y +# CONFIG_HAVE_AOUT is not set +# CONFIG_HAVE_ARCH_BITREVERSE is not set +# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set +# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set +# CONFIG_HFSPLUS_FS_POSIX_ACL is not set +CONFIG_HIBERNATION=y +# CONFIG_HMC6352 is not set +CONFIG_HOTPLUG_CPU=y +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_PCIE=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_HTC_PASIC3 is not set +CONFIG_HUGETLB_PAGE=y +# CONFIG_HWMON is not set +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +CONFIG_HZ=250 +# CONFIG_HZ_1000 is not set +CONFIG_HZ_250=y +CONFIG_I2C=m +# CONFIG_I2C_ALGOPCA is not set +# 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_CHARDEV is not set +# CONFIG_I2C_COMPAT is not set +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_DESIGNWARE_PLATFORM is not set +# CONFIG_I2C_HELPER_AUTO is not set +# CONFIG_I2C_I801 is not set +# CONFIG_I2C_ISCH is not set +# CONFIG_I2C_MUX is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PARPORT_LIGHT 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_SMBUS is not set +# CONFIG_I2C_STUB is not set +# CONFIG_I2C_TAOS_EVM is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set +# CONFIG_I2C_XILINX is not set +# CONFIG_I6300ESB_WDT is not set +# CONFIG_ICPLUS_PHY is not set +# CONFIG_ICS932S401 is not set +# CONFIG_IDLE_PAGE_TRACKING is not set +# CONFIG_IEEE802154_DRIVERS is not set +# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set +# CONFIG_IIO is not set +CONFIG_IMA=y +# CONFIG_INFINIBAND_NES is not set +# CONFIG_INFINIBAND_OCRDMA is not set +# CONFIG_INFINIBAND_QIB is not set +# CONFIG_INPUT is not set +# CONFIG_INTERVAL_TREE_TEST is not set +# CONFIG_IPACK_BUS is not set +# CONFIG_IPMI_HANDLER is not set +# CONFIG_IPV6_ILA is not set +CONFIG_IPV6_MIP6=y +CONFIG_IPV6_OPTIMISTIC_DAD=y +CONFIG_IPX_INTERN=y +CONFIG_IP_DCCP_CCID3=y +CONFIG_IP_MROUTE_MULTIPLE_TABLES=y +# CONFIG_ISA_BUS_API is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +CONFIG_JBD2=m +# CONFIG_JFS_STATISTICS is not set +# CONFIG_JME is not set +CONFIG_JUMP_LABEL=y +# CONFIG_KALLSYMS_ABSOLUTE_PERCPU is not set +# CONFIG_KALLSYMS_ALL is not set +# CONFIG_KERNEL_GZIP is not set +CONFIG_KERNEL_XZ=y +CONFIG_KEXEC=y +CONFIG_KVM=m +# CONFIG_LDM_PARTITION is not set +# CONFIG_LIBNVDIMM is not set +# CONFIG_LLC2 is not set +# CONFIG_LOCK_TORTURE_TEST is not set +CONFIG_LOGFS=m +CONFIG_LOG_BUF_SHIFT=17 +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_LSI_ET1011C_PHY is not set +# CONFIG_LXT_PHY is not set +# CONFIG_MAC_PARTITION is not set +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 +# CONFIG_MAILBOX is not set +# CONFIG_MARVELL_PHY is not set +# CONFIG_MAX63XX_WATCHDOG is not set +# CONFIG_MCB is not set +# CONFIG_MDIO_BCM_UNIMAC is not set +# CONFIG_MDIO_BITBANG is not set +# CONFIG_MDIO_OCTEON is not set +# CONFIG_MDIO_THUNDER is not set +CONFIG_MD_MULTIPATH=y +# 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=y +# CONFIG_MEMSTICK is not set +# CONFIG_MEMTEST 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_BCM590XX is not set +CONFIG_MFD_CORE=m +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 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_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_MT6397 is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_RTSX_PCI 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_TMIO is not set +# CONFIG_MFD_TPS65217 is not set +# CONFIG_MFD_TPS65218 is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_WM8994 is not set +# CONFIG_MICREL_PHY is not set +# CONFIG_MICROCHIP_PHY is not set +# CONFIG_MINIX_SUBPARTITION is not set +# CONFIG_MMC is not set +CONFIG_MODULE_FORCE_LOAD=y +CONFIG_MODULE_FORCE_UNLOAD=y +# CONFIG_MODULE_SRCVERSION_ALL is not set +# CONFIG_MOVABLE_NODE is not set +# CONFIG_MTD is not set +# CONFIG_NATIONAL_PHY is not set +CONFIG_NEED_DMA_MAP_STATE=y +# CONFIG_NETDEV_NOTIFIER_ERROR_INJECT is not set +# CONFIG_NET_ACT_IFE is not set +# CONFIG_NET_CADENCE is not set +CONFIG_NET_CLS_IND=y +CONFIG_NET_KEY_MIGRATE=y +CONFIG_NET_MPLS_GSO=y +# CONFIG_NET_PACKET_ENGINE is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_TCPPROBE is not set +# 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_EXAR is not set +# CONFIG_NET_VENDOR_EZCHIP is not set +# CONFIG_NET_VENDOR_HP is not set +# CONFIG_NET_VENDOR_INTEL is not set +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MICREL is not set +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI 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_SYNOPSYS 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_NFS_V4_1_MIGRATION is not set +CONFIG_NF_CONNTRACK_PROCFS=y +CONFIG_NODES_SHIFT=4 +# CONFIG_NOZOMI is not set +# CONFIG_NO_HZ is not set +CONFIG_NR_CPUS=32 +# CONFIG_NTB is not set +CONFIG_NUMA=y +# CONFIG_NUMA_BALANCING_DEFAULT_ENABLED is not set +CONFIG_NUMA_EMU=y +# CONFIG_NVMEM is not set +# CONFIG_N_GSM is not set +# CONFIG_OF is not set +# CONFIG_ORANGEFS_FS is not set +# CONFIG_OSF_PARTITION is not set +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_PARPORT is not set +# CONFIG_PCIPCWATCHDOG is not set +# CONFIG_PCI_MSI_IRQ_DOMAIN is not set +# CONFIG_PCI_PASID is not set +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_QUIRKS is not set +# CONFIG_PCMCIA is not set +# CONFIG_PERCPU_TEST is not set +# CONFIG_PERSISTENT_KEYRINGS is not set +CONFIG_PGTABLE_LEVELS=4 +# CONFIG_PGTABLE_MAPPING is not set +# CONFIG_PHANTOM is not set +CONFIG_PHYLIB=m +CONFIG_PHYS_ADDR_T_64BIT=y +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_PM_DEVFREQ is not set +# CONFIG_POWERCAP is not set +# CONFIG_POWER_AVS is not set +# CONFIG_POWER_RESET 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_VOLUNTARY=y +CONFIG_PRINT_QUOTA_WARNING=y +# CONFIG_PSTORE is not set +CONFIG_PTP_1588_CLOCK=m +# CONFIG_PWM is not set +# CONFIG_QSEMI_PHY is not set +# CONFIG_R3964 is not set +# CONFIG_RAW_DRIVER is not set +# CONFIG_RBTREE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=21 +# CONFIG_REALTEK_PHY is not set +CONFIG_REGMAP_I2C=m +# CONFIG_REGULATOR is not set +# CONFIG_RESET_CONTROLLER is not set +CONFIG_RFKILL=m +# CONFIG_SCHEDSTATS is not set +CONFIG_SCHED_SMT=y +# CONFIG_SCHED_TRACER is not set +# 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_DPT_I2O is not set +# CONFIG_SCSI_ESAS2R is not set +# CONFIG_SCSI_FUTURE_DOMAIN 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_LPFC is not set +# CONFIG_SCSI_MPT2SAS is not set +# CONFIG_SCSI_MPT3SAS is not set +CONFIG_SCSI_MQ_DEFAULT=y +# CONFIG_SCSI_MVSAS is not set +# CONFIG_SCSI_MVUMI 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_SCTP_DEFAULT_COOKIE_HMAC_MD5=y +# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1 is not set +# CONFIG_SECURITY_SELINUX_BOOTPARAM is not set +# CONFIG_SECURITY_SELINUX_DISABLE is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SERIAL_8250 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_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_SGETMASK_SYSCALL is not set +# CONFIG_SGI_IOC4 is not set +# CONFIG_SGI_PARTITION is not set +# CONFIG_SG_SPLIT is not set +# CONFIG_SH_TIMER_CMT is not set +# CONFIG_SH_TIMER_MTU2 is not set +# CONFIG_SH_TIMER_TMU is not set +# CONFIG_SLIP is not set +# CONFIG_SMSC_PHY 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_SQUASHFS_FILE_CACHE=y +# CONFIG_SQUASHFS_FILE_DIRECT is not set +# CONFIG_SQUASHFS_LZ4 is not set +# CONFIG_SRAM is not set +# CONFIG_SSB is not set +# CONFIG_STAGING is not set +CONFIG_STANDALONE=y +# CONFIG_STE10XP is not set +# CONFIG_STE_MODEM_RPROC is not set +CONFIG_STRIP_ASM_SYMS=y +# CONFIG_SUN_PARTITION is not set +# CONFIG_SYSCTL_SYSCALL is not set +# CONFIG_SYSFS_SYSCALL is not set +# CONFIG_SYSV68_PARTITION is not set +CONFIG_SYS_HYPERVISOR=y +# CONFIG_TCG_TIS_I2C_ATMEL 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_TERANETICS_PHY is not set +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_LKM is not set +# CONFIG_TEST_PRINTF is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_UDELAY is not set +# CONFIG_THERMAL is not set +# CONFIG_THUNDERBOLT is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS6507X is not set +# CONFIG_TRACE_SINK is not set +CONFIG_TRANSPARENT_HUGEPAGE=y +# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y +CONFIG_TRUSTED_KEYS=m +# CONFIG_TTY_PRINTK is not set +# CONFIG_UIO is not set +# CONFIG_ULTRIX_PARTITION is not set +# CONFIG_UNIXWARE_DISKLABEL is not set +# CONFIG_UNUSED_SYMBOLS is not set +CONFIG_UPROBES=y +# CONFIG_USB_SUPPORT is not set +# CONFIG_USB_SWITCH_FSA9480 is not set +# CONFIG_USELIB is not set +# CONFIG_UWB is not set +# CONFIG_VFIO is not set +# CONFIG_VGASTATE is not set +# CONFIG_VIRTIO_MMIO is not set +CONFIG_VIRT_CPU_ACCOUNTING_NATIVE=y +# CONFIG_VITESSE_PHY is not set +# CONFIG_VME_BUS is not set +# CONFIG_VMXNET3 is not set +# CONFIG_W1 is not set +# CONFIG_WAN is not set +# CONFIG_WDTPCI is not set +# CONFIG_WQ_WATCHDOG is not set +CONFIG_XFRM_MIGRATE=y +# CONFIG_XFRM_STATISTICS is not set +CONFIG_XFRM_SUB_POLICY=y +# CONFIG_XILINX_WATCHDOG is not set +# CONFIG_XILLYBUS is not set +# CONFIG_XZ_DEC_ARMTHUMB is not set +CONFIG_XZ_DEC_TEST=y +CONFIG_ZLIB_DEFLATE=m +CONFIG_ZSMALLOC=m --- linux-4.8.0.orig/debian.master/config/s390x/config.flavour.generic +++ linux-4.8.0/debian.master/config/s390x/config.flavour.generic @@ -0,0 +1,3 @@ +# +# Config options for config.flavour.generic automatically generated by splitconfig.pl +# --- linux-4.8.0.orig/debian.master/config/x32/config.common.x32 +++ linux-4.8.0/debian.master/config/x32/config.common.x32 @@ -0,0 +1,74 @@ +# nothing here yet +CONFIG_USB_DWC2_DUAL_ROLE=y +CONFIG_USB_DWC2_PCI=m +CONFIG_USB_DWC3_PCI=m +CONFIG_USB_ETH_EEM=y +CONFIG_NOP_USB_XCEIV=m +CONFIG_USB_AMD5536UDC=m +CONFIG_USB_AUDIO=m +CONFIG_USB_BDC_UDC=m +CONFIG_USB_C67X00_HCD=m +CONFIG_USB_CDC_COMPOSITE=m +CONFIG_USB_CHIPIDEA=m +CONFIG_USB_CONFIGFS=m +CONFIG_USB_DWC2=m +CONFIG_USB_DWC3=m +CONFIG_USB_EHCI_HCD_PLATFORM=m +CONFIG_USB_ETH=m +CONFIG_USB_FOTG210_HCD=m +CONFIG_USB_FOTG210_UDC=m +CONFIG_USB_FUNCTIONFS=m +CONFIG_USB_GADGETFS=m +CONFIG_USB_GADGET_TARGET=m +CONFIG_USB_GADGET_XILINX=m +CONFIG_USB_GOKU=m +CONFIG_USB_GPIO_VBUS=m +CONFIG_USB_GR_UDC=m +CONFIG_USB_G_ACM_MS=m +CONFIG_USB_G_DBGP=m +CONFIG_USB_G_HID=m +CONFIG_USB_G_MULTI=m +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_HCD_BCMA=m +CONFIG_USB_HCD_SSB=m +CONFIG_USB_HSIC_USB3503=m +CONFIG_USB_ISP116X_HCD=m +CONFIG_USB_ISP1301=m +CONFIG_USB_ISP1362_HCD=m +CONFIG_USB_ISP1760=m +CONFIG_USB_LINK_LAYER_TEST=m +CONFIG_USB_M66592=m +CONFIG_USB_MASS_STORAGE=m +CONFIG_USB_MAX3421_HCD=m +CONFIG_USB_MIDI_GADGET=m +CONFIG_USB_MUSB_HDRC=m +CONFIG_USB_MV_U3D=m +CONFIG_USB_MV_UDC=m +CONFIG_USB_NET2272=m +CONFIG_USB_OHCI_HCD_PLATFORM=m +CONFIG_USB_OXU210HP_HCD=m +CONFIG_USB_PXA27X=m +CONFIG_USB_R8A66597=m +CONFIG_USB_R8A66597_HCD=m +CONFIG_USB_SERIAL_KEYSPAN_MPR=y +CONFIG_USB_SERIAL_KEYSPAN_USA18X=y +CONFIG_USB_SERIAL_KEYSPAN_USA19=y +CONFIG_USB_SERIAL_KEYSPAN_USA19QI=y +CONFIG_USB_SERIAL_KEYSPAN_USA19QW=y +CONFIG_USB_SERIAL_KEYSPAN_USA19W=y +CONFIG_USB_SERIAL_KEYSPAN_USA28=y +CONFIG_USB_SERIAL_KEYSPAN_USA28X=y +CONFIG_USB_SERIAL_KEYSPAN_USA28XA=y +CONFIG_USB_SERIAL_KEYSPAN_USA28XB=y +CONFIG_USB_SERIAL_KEYSPAN_USA49W=y +CONFIG_USB_SERIAL_KEYSPAN_USA49WLC=y +CONFIG_USB_SERIAL_SAFE_PADDED=y +CONFIG_USB_SL811_HCD_ISO=y +CONFIG_USB_ULPI_BUS=m +CONFIG_USB_XHCI_PLATFORM=m +CONFIG_USB_G_MULTI_CDC=y +CONFIG_USB_G_MULTI_RNDIS=y --- linux-4.8.0.orig/debian.master/config/x32/config.flavour.generic +++ linux-4.8.0/debian.master/config/x32/config.flavour.generic @@ -0,0 +1,74 @@ +# nothing here yet +CONFIG_USB_DWC2_DUAL_ROLE=y +CONFIG_USB_DWC2_PCI=m +CONFIG_USB_DWC3_PCI=m +CONFIG_USB_ETH_EEM=y +CONFIG_NOP_USB_XCEIV=m +CONFIG_USB_AMD5536UDC=m +CONFIG_USB_AUDIO=m +CONFIG_USB_BDC_UDC=m +CONFIG_USB_C67X00_HCD=m +CONFIG_USB_CDC_COMPOSITE=m +CONFIG_USB_CHIPIDEA=m +CONFIG_USB_CONFIGFS=m +CONFIG_USB_DWC2=m +CONFIG_USB_DWC3=m +CONFIG_USB_EHCI_HCD_PLATFORM=m +CONFIG_USB_ETH=m +CONFIG_USB_FOTG210_HCD=m +CONFIG_USB_FOTG210_UDC=m +CONFIG_USB_FUNCTIONFS=m +CONFIG_USB_GADGETFS=m +CONFIG_USB_GADGET_TARGET=m +CONFIG_USB_GADGET_XILINX=m +CONFIG_USB_GOKU=m +CONFIG_USB_GPIO_VBUS=m +CONFIG_USB_GR_UDC=m +CONFIG_USB_G_ACM_MS=m +CONFIG_USB_G_DBGP=m +CONFIG_USB_G_HID=m +CONFIG_USB_G_MULTI=m +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_HCD_BCMA=m +CONFIG_USB_HCD_SSB=m +CONFIG_USB_HSIC_USB3503=m +CONFIG_USB_ISP116X_HCD=m +CONFIG_USB_ISP1301=m +CONFIG_USB_ISP1362_HCD=m +CONFIG_USB_ISP1760=m +CONFIG_USB_LINK_LAYER_TEST=m +CONFIG_USB_M66592=m +CONFIG_USB_MASS_STORAGE=m +CONFIG_USB_MAX3421_HCD=m +CONFIG_USB_MIDI_GADGET=m +CONFIG_USB_MUSB_HDRC=m +CONFIG_USB_MV_U3D=m +CONFIG_USB_MV_UDC=m +CONFIG_USB_NET2272=m +CONFIG_USB_OHCI_HCD_PLATFORM=m +CONFIG_USB_OXU210HP_HCD=m +CONFIG_USB_PXA27X=m +CONFIG_USB_R8A66597=m +CONFIG_USB_R8A66597_HCD=m +CONFIG_USB_SERIAL_KEYSPAN_MPR=y +CONFIG_USB_SERIAL_KEYSPAN_USA18X=y +CONFIG_USB_SERIAL_KEYSPAN_USA19=y +CONFIG_USB_SERIAL_KEYSPAN_USA19QI=y +CONFIG_USB_SERIAL_KEYSPAN_USA19QW=y +CONFIG_USB_SERIAL_KEYSPAN_USA19W=y +CONFIG_USB_SERIAL_KEYSPAN_USA28=y +CONFIG_USB_SERIAL_KEYSPAN_USA28X=y +CONFIG_USB_SERIAL_KEYSPAN_USA28XA=y +CONFIG_USB_SERIAL_KEYSPAN_USA28XB=y +CONFIG_USB_SERIAL_KEYSPAN_USA49W=y +CONFIG_USB_SERIAL_KEYSPAN_USA49WLC=y +CONFIG_USB_SERIAL_SAFE_PADDED=y +CONFIG_USB_SL811_HCD_ISO=y +CONFIG_USB_ULPI_BUS=m +CONFIG_USB_XHCI_PLATFORM=m +CONFIG_USB_G_MULTI_CDC=y +CONFIG_USB_G_MULTI_RNDIS=y --- linux-4.8.0.orig/debian.master/control.d/flavour-control.stub +++ linux-4.8.0/debian.master/control.d/flavour-control.stub @@ -0,0 +1,135 @@ +# 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-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: kernel +Priority: optional +Provides: linux-image, fuse-module, =PROVIDES=${linux:rprovides} +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools | linux-initramfs-tool, kmod +Recommends: BOOTLOADER +Suggests: fdutils, SRCPKGNAME-doc-PKGVER | SRCPKGNAME-source-PKGVER, linux-tools, linux-headers-PKGVER-ABINUM-FLAVOUR +Conflicts: flash-kernel (<< 3.0~rc.4ubuntu64) [arm64] +Description: Linux kernel image for version PKGVER on DESC + This package contains the Linux kernel image 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-image-extra-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-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}, linux-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-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 a 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=. + +Package: linux-udebs-FLAVOUR +Build-Profiles: +XC-Package-Type: udeb +Section: debian-installer +Architecture: ARCH +Depends: ${udeb:Depends} +Description: Metapackage depending on kernel udebs + This package depends on the all udebs that the kernel build generated, + for easier version and migration tracking. + --- linux-4.8.0.orig/debian.master/control.d/generic.inclusion-list +++ linux-4.8.0/debian.master/control.d/generic.inclusion-list @@ -0,0 +1,250 @@ +arch/*/{crypto,kernel,oprofile} +arch/*/kvm/kvm.ko +arch/powerpc/kvm/kvm-hv.ko +arch/powerpc/kvm/kvm-pr.ko +arch/powerpc/platforms/powernv/opal-prd.ko +arch/powerpc/kvm/vfio.ko +arch/s390/* +arch/x86/kvm/kvm-intel.ko +arch/x86/kvm/kvm-amd.ko +crypto/* +drivers/acpi/* +drivers/char/ipmi/ipmi_msghandler.ko +drivers/ata/ahci_platform.ko +drivers/ata/ahci.ko +drivers/ata/acard-ahci.ko +drivers/ata/ata_generic.ko +drivers/ata/libahci.ko +drivers/ata/libahci_platform.ko +drivers/block/nbd.ko +drivers/block/floppy.ko +drivers/block/brd.ko +drivers/block/cryptoloop.ko +drivers/block/loop.ko +drivers/block/rbd.ko +drivers/block/virtio_blk.ko +drivers/block/xen-blkfront.ko +drivers/char/hangcheck-timer.ko +drivers/char/hw_random/virtio-rng.ko +drivers/char/lp.ko +drivers/char/nvram.ko +drivers/char/hw_random/powernv-rng.ko +drivers/char/ipmi/* +drivers/char/ppdev.ko +drivers/char/raw.ko +drivers/char/virtio_console.ko +drivers/crypto/nx/* +drivers/crypto/vmx/vmx-crypto.ko +drivers/firmware/iscsi_ibft.ko +drivers/firmware/efi/* +drivers/gpu/drm/ast/ast.ko +drivers/gpu/drm/drm.ko +drivers/gpu/drm/drm_kms_helper.ko +drivers/gpu/drm/ttm/ttm.ko +drivers/hid/hid.ko +drivers/hid/hid-generic.ko +drivers/hid/hid-hyperv.ko +drivers/hid/usbhid/usbhid.ko +drivers/hv/* +drivers/hwmon/ibmpowernv.ko +drivers/infiniband/core/ib_core.ko +drivers/infiniband/core/ib_addr.ko +drivers/infiniband/core/ib_cm.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/mouse/psmouse.ko +drivers/input/serio/hyperv-keyboard.ko +drivers/input/serio/serio_raw.ko +drivers/input/serio/serport.ko +drivers/input/joydev.ko +drivers/input/touchscreen/usbtouchscreen.ko +drivers/input/misc/xen-kbdfront.ko +drivers/leds/leds-powernv.ko +drivers/md/* +drivers/message/fusion* +drivers/mtd/cmdlinepart.ko +drivers/mtd/devices/powernv_flash.ko +drivers/mtd/ofpart.ko +drivers/nvme/host/nvme.ko +drivers/s390/* +drivers/scsi/scsi_transport_spi.ko +drivers/misc/cxl/* +drivers/misc/eeprom/at24.ko +drivers/misc/vmw_balloon.ko +drivers/misc/vmw_vmci/vmw_vmci.ko +drivers/net/caif/caif_virtio.ko +drivers/net/mii.ko +drivers/net/ethernet/broadcom/tg3.ko +drivers/net/ethernet/8390/8390.ko +drivers/net/ethernet/broadcom/bnx2x/* +drivers/net/ethernet/emulex/benet/* +drivers/net/ethernet/intel/i40e/* +drivers/net/ethernet/intel/igb/* +drivers/net/ethernet/intel/ixgbe/* +drivers/net/ethernet/realtek/8139too.ko +drivers/net/ethernet/realtek/8139cp.ko +drivers/net/appletalk/ipddp.ko +drivers/net/bonding/bonding.ko +drivers/net/ppp/bsd_comp.ko +drivers/net/dummy.ko +drivers/net/ethernet/intel/e1000/e1000.ko +drivers/net/ethernet/intel/e1000e/e1000e.ko +drivers/net/eql.ko +drivers/net/ethernet/ibm/* +drivers/net/ifb.ko +drivers/net/ethernet/intel/igbvf/igbvf.ko +drivers/net/ethernet/intel/ixgbevf/ixgbevf.ko +drivers/net/ethernet/amazon/ena/ena.ko +drivers/net/geneve.ko +drivers/net/macvlan.ko +drivers/net/macvtap.ko +drivers/net/ethernet/8390/ne2k-pci.ko +drivers/net/netconsole.ko +drivers/net/ethernet/amd/pcnet32.ko +drivers/net/fddi/* +drivers/net/hyperv/hv_netvsc.ko +drivers/net/ppp/* +drivers/net/slip/* +drivers/net/veth.ko +drivers/net/virtio_net.ko +drivers/net/vmxnet3/vmxnet3.ko +drivers/net/vxlan.ko +drivers/net/xen-netback/* +drivers/net/xen-netfront.ko +drivers/net/ipvlan/* +drivers/nvmem/nvmem_core.ko +drivers/platform/x86/pvpanic.ko +drivers/parport/parport.ko +drivers/parport/parport_pc.ko +drivers/pps/pps_core.ko +drivers/ptp/ptp.ko +drivers/net/ethernet/dec/tulip/* +drivers/net/ethernet/mellanox/* +drivers/scsi/aacraid/* +drivers/scsi/BusLogic.ko +drivers/scsi/cxlflash/* +drivers/scsi/device_handler/scsi_dh_emc.ko +drivers/scsi/device_handler/scsi_dh_alua.ko +drivers/scsi/device_handler/scsi_dh_rdac.ko +drivers/scsi/device_handler/scsi_dh_hp_sw.ko +drivers/scsi/iscsi_boot_sysfs.ko +drivers/scsi/iscsi_tcp.ko +drivers/scsi/ipr.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/osd.ko +drivers/scsi/osd/libosd.ko +drivers/scsi/qla2xxx/* +drivers/scsi/qla1280.ko +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/sd_mod.ko +drivers/scsi/sr_mod.ko +drivers/scsi/vmw_pvscsi.ko +drivers/scsi/hv_storvsc.ko +drivers/scsi/virtio_scsi.ko +drivers/scsi/ibmvscsi/* +drivers/s390/block/xpram.ko +drivers/target/target_core*.ko +drivers/tty/serial/jsm/* +drivers/uio/uio.ko +drivers/uio/uio_pdrv_genirq.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/virtio/* +drivers/watchdog/softdog.ko +drivers/xen/* +fs/9p/* +fs/aufs/aufs.ko +fs/binfmt_misc.ko +fs/btrfs/* +fs/cachefiles/cachefiles.ko +fs/ceph/* +fs/configfs/* +fs/dlm/dlm.ko +fs/ecryptfs/* +fs/efivarfs/* +fs/exofs/libore.ko +fs/ext4/* +fs/fat/* +fs/fuse/* +fs/nls/nls_cp437.ko +fs/nls/nls_iso8859-1.ko +fs/isofs/* +fs/cifs/* +fs/xfs/* +fs/ufs/* +fs/squashfs/* +fs/nfs/* +fs/nfsd/* +fs/nfs_common/* +fs/fscache/* +fs/lockd/* +fs/autofs4/autofs4.ko +fs/overlayfs/* +fs/udf/* +lib/* +net/6lowpan/* +net/802/* +net/8021q/* +net/9p/* +net/appletalk/* +net/atm/* +net/ax25/* +net/bridge/* +net/can/* +net/core/* +net/ceph/libceph.ko +net/dccp/* +net/decnet/* +net/ieee802154/* +net/ipv4/* +net/ipv6/* +net/ipx/* +net/irda/* +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/tipc/* +net/unix/unix_diag.ko +net/vmw_vsock/* +net/x25/* +net/xfrm/* +net/sunrpc/auth_gss/auth_rpcgss.ko +net/sunrpc/auth_gss/rpcsec_gss_krb5.ko +net/sunrpc/sunrpc.ko +sound/soundcore.ko +! find sound/core -name oss -prune -o -name *.ko -print +sound/pci/snd-ens1370.ko +sound/drivers/pcsp/snd-pcsp.ko +ubuntu/vbox/vboxguest/vboxguest.ko +ubuntu/vbox/vboxsf/vboxsf.ko +zfs/* --- linux-4.8.0.orig/debian.master/control.d/vars.generic +++ linux-4.8.0/debian.master/control.d/vars.generic @@ -0,0 +1,6 @@ +arch="i386 amd64 armhf arm64 powerpc ppc64el s390x" +supported="Generic" +target="Geared toward desktop and server systems." +desc="=HUMAN= SMP" +bootloader="grub-pc [i386 amd64 x32] | grub-efi-amd64 [amd64 x32] | grub-efi-ia32 [i386 amd64 x32] | grub [i386 amd64 x32] | lilo [i386 amd64 x32] | flash-kernel [armhf arm64] | grub-ieee1275 [ppc64el] | yaboot [powerpc]" +provides="kvm-api-4, redhat-cluster-modules, ivtv-modules, virtualbox-guest-modules [i386 amd64 x32]" --- linux-4.8.0.orig/debian.master/control.d/vars.generic-lpae +++ linux-4.8.0/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]" +provides="kvm-api-4, redhat-cluster-modules, ivtv-modules" --- linux-4.8.0.orig/debian.master/control.d/vars.lowlatency +++ linux-4.8.0/debian.master/control.d/vars.lowlatency @@ -0,0 +1,6 @@ +arch="i386 amd64" +supported="Lowlatency" +target="Geared toward desktop and server systems." +desc="=HUMAN= SMP" +bootloader="grub-pc [i386 amd64 x32] | grub-efi-amd64 [amd64 x32] | grub-efi-ia32 [i386 amd64 x32] | grub [i386 amd64 x32] | lilo [i386 amd64 x32] | flash-kernel [armhf arm64]" +provides="kvm-api-4, redhat-cluster-modules, ivtv-modules, virtualbox-guest-modules [i386 amd64 x32]" --- linux-4.8.0.orig/debian.master/control.d/vars.powerpc-e500mc +++ linux-4.8.0/debian.master/control.d/vars.powerpc-e500mc @@ -0,0 +1,6 @@ +supported="32-bit Freescale Power e500mc" +target="Geared toward server systems." +desc="32-bit Freescale Power e500mc" +bootloader="grub-ieee1275" +provides="redhat-cluster-modules, ivtv-modules" +arch="powerpc" --- linux-4.8.0.orig/debian.master/control.d/vars.powerpc-smp +++ linux-4.8.0/debian.master/control.d/vars.powerpc-smp @@ -0,0 +1,6 @@ +supported="32-bit PowerPC SMP" +target="Geared toward desktop or server systems." +desc="32-bit PowerPC SMP" +bootloader="yaboot" +provides="redhat-cluster-modules, ivtv-modules" +arch="powerpc" --- linux-4.8.0.orig/debian.master/control.d/vars.powerpc64-emb +++ linux-4.8.0/debian.master/control.d/vars.powerpc64-emb @@ -0,0 +1,6 @@ +supported="64-bit PowerPC SMP Book3E" +target="Geared toward desktop or server systems." +desc="64-bit PowerPC SMP Book3E" +bootloader="grub-ieee1275" +provides="redhat-cluster-modules, ivtv-modules" +arch="powerpc" --- linux-4.8.0.orig/debian.master/control.stub.in +++ linux-4.8.0/debian.master/control.stub.in @@ -0,0 +1,159 @@ +Source: linux +Section: devel +Priority: optional +Maintainer: Ubuntu Kernel Team +Standards-Version: 3.9.4.0 +Build-Depends: + debhelper (>= 5), + dh-systemd, + cpio, + kernel-wedge, + kmod , + makedumpfile [amd64 i386] , + libelf-dev , + libnewt-dev , + libiberty-dev , + rsync , + libdw-dev , + libpci-dev , + pkg-config , + flex , + bison , + libunwind8-dev [amd64 arm64 armhf i386 powerpc ppc64el] , + liblzma-dev , + openssl , + libssl-dev , + libaudit-dev , + bc , + python-dev , + gawk , + device-tree-compiler [powerpc] , + u-boot-tools [powerpc] , + libc6-dev-ppc64 [powerpc] , + libudev-dev , + autoconf , + automake , + libtool , + uuid-dev , +Build-Depends-Indep: + xmlto , + docbook-utils , + ghostscript , + transfig , + bzip2 , + sharutils , + asciidoc , +Vcs-Git: git://git.launchpad.net/~ubuntu-kernel/ubuntu/+source/linux/+git/yakkety +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, linux-source-3 +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-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. + +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-libc-dev +Architecture: i386 amd64 armhf arm64 x32 powerpc ppc64el s390x +Depends: ${misc:Depends} +Conflicts: SRCPKGNAME-kernel-headers +Replaces: SRCPKGNAME-kernel-headers +Provides: SRCPKGNAME-kernel-headers +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. + +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 PGKVER. + +Package: SRCPKGNAME-tools-PKGVER-ABINUM +Build-Profiles: +Architecture: i386 amd64 armhf arm64 powerpc 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 PGKVER. + +Package: SRCPKGNAME-cloud-tools-PKGVER-ABINUM +Build-Profiles: +Architecture: i386 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-. + --- linux-4.8.0.orig/debian.master/copyright +++ linux-4.8.0/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'. --- linux-4.8.0.orig/debian.master/d-i/firmware/README.txt +++ linux-4.8.0/debian.master/d-i/firmware/README.txt @@ -0,0 +1,4 @@ +# +# Place the names of udeb modules into this directory that require +# runtime firmware. +# --- linux-4.8.0.orig/debian.master/d-i/firmware/amd64/README.txt +++ linux-4.8.0/debian.master/d-i/firmware/amd64/README.txt @@ -0,0 +1,4 @@ +# +# Place the names of udeb modules into this directory that require +# runtime firmware. +# --- linux-4.8.0.orig/debian.master/d-i/firmware/amd64/nic-modules +++ linux-4.8.0/debian.master/d-i/firmware/amd64/nic-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/firmware/amd64/scsi-modules +++ linux-4.8.0/debian.master/d-i/firmware/amd64/scsi-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/firmware/arm64/README.txt +++ linux-4.8.0/debian.master/d-i/firmware/arm64/README.txt @@ -0,0 +1,4 @@ +# +# Place the names of udeb modules into this directory that require +# runtime firmware. +# --- linux-4.8.0.orig/debian.master/d-i/firmware/arm64/nic-modules +++ linux-4.8.0/debian.master/d-i/firmware/arm64/nic-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/firmware/arm64/scsi-modules +++ linux-4.8.0/debian.master/d-i/firmware/arm64/scsi-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/firmware/armhf/README.txt +++ linux-4.8.0/debian.master/d-i/firmware/armhf/README.txt @@ -0,0 +1,4 @@ +# +# Place the names of udeb modules into this directory that require +# runtime firmware. +# --- linux-4.8.0.orig/debian.master/d-i/firmware/i386/README.txt +++ linux-4.8.0/debian.master/d-i/firmware/i386/README.txt @@ -0,0 +1,4 @@ +# +# Place the names of udeb modules into this directory that require +# runtime firmware. +# --- linux-4.8.0.orig/debian.master/d-i/firmware/i386/nic-modules +++ linux-4.8.0/debian.master/d-i/firmware/i386/nic-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/firmware/i386/scsi-modules +++ linux-4.8.0/debian.master/d-i/firmware/i386/scsi-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/firmware/nic-modules +++ linux-4.8.0/debian.master/d-i/firmware/nic-modules @@ -0,0 +1,14 @@ +e100/d101m_ucode.bin ? +e100/d101s_ucode.bin ? +e100/d102e_ucode.bin ? +bnx2/bnx2-mips-09-6.2.1b.fw ? +bnx2/bnx2-rv2p-06-6.0.15.fw ? +bnx2/bnx2-mips-06-6.2.3.fw ? +bnx2/bnx2-rv2p-09-6.0.17.fw ? +bnx2/bnx2-rv2p-09ax-6.0.17.fw ? +bnx2x/bnx2x-e1h-7.12.30.0.fw ? +bnx2x/bnx2x-e1-7.12.30.0.fw ? +bnx2x/bnx2x-e2-7.12.30.0.fw ? +tigon/tg3_tso5.bin ? +tigon/tg3_tso.bin ? +tigon/tg3.bin ? --- linux-4.8.0.orig/debian.master/d-i/firmware/powerpc/README.txt +++ linux-4.8.0/debian.master/d-i/firmware/powerpc/README.txt @@ -0,0 +1,4 @@ +# +# Place the names of udeb modules into this directory that require +# runtime firmware. +# --- linux-4.8.0.orig/debian.master/d-i/firmware/powerpc/nic-modules +++ linux-4.8.0/debian.master/d-i/firmware/powerpc/nic-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/firmware/powerpc/scsi-modules +++ linux-4.8.0/debian.master/d-i/firmware/powerpc/scsi-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/firmware/ppc64el/README.txt +++ linux-4.8.0/debian.master/d-i/firmware/ppc64el/README.txt @@ -0,0 +1,4 @@ +# +# Place the names of udeb modules into this directory that require +# runtime firmware. +# --- linux-4.8.0.orig/debian.master/d-i/firmware/ppc64el/nic-modules +++ linux-4.8.0/debian.master/d-i/firmware/ppc64el/nic-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/firmware/ppc64el/scsi-modules +++ linux-4.8.0/debian.master/d-i/firmware/ppc64el/scsi-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/firmware/s390x/README.txt +++ linux-4.8.0/debian.master/d-i/firmware/s390x/README.txt @@ -0,0 +1,4 @@ +# +# Place the names of udeb modules into this directory that require +# runtime firmware. +# --- linux-4.8.0.orig/debian.master/d-i/firmware/s390x/nic-modules +++ linux-4.8.0/debian.master/d-i/firmware/s390x/nic-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/firmware/s390x/scsi-modules +++ linux-4.8.0/debian.master/d-i/firmware/s390x/scsi-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/firmware/scsi-modules +++ linux-4.8.0/debian.master/d-i/firmware/scsi-modules @@ -0,0 +1,3 @@ +qlogic/1040.bin ? +qlogic/12160.bin ? +qlogic/1280.bin ? --- linux-4.8.0.orig/debian.master/d-i/kernel-versions +++ linux-4.8.0/debian.master/d-i/kernel-versions @@ -0,0 +1,19 @@ +# arch version flavour installedname suffix bdep +amd64 - generic - - - + +i386 - generic - - - + +armhf - generic - - - +armhf - generic-lpae - - - + +arm64 - generic - - - + +ppc64el - generic - - - + +s390x - generic - - - + +# Ports +# arch version flavour installedname suffix bdep +powerpc - powerpc-smp - - - +powerpc - generic - - - +powerpc - powerpc-e500mc - - - --- linux-4.8.0.orig/debian.master/d-i/modules/amd64-virtual/block-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64-virtual/block-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64-virtual/crypto-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64-virtual/crypto-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64-virtual/fat-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64-virtual/fat-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64-virtual/fb-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64-virtual/fb-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64-virtual/floppy-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64-virtual/floppy-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64-virtual/fs-core-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64-virtual/fs-core-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64-virtual/fs-secondary-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64-virtual/fs-secondary-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64-virtual/irda-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64-virtual/irda-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64-virtual/kernel-image +++ linux-4.8.0/debian.master/d-i/modules/amd64-virtual/kernel-image @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64-virtual/md-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64-virtual/md-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64-virtual/message-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64-virtual/message-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64-virtual/mouse-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64-virtual/mouse-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64-virtual/multipath-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64-virtual/multipath-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64-virtual/nic-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64-virtual/nic-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64-virtual/nic-shared-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64-virtual/nic-shared-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64-virtual/parport-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64-virtual/parport-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64-virtual/scsi-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64-virtual/scsi-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64-virtual/serial-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64-virtual/serial-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64-virtual/squashfs-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64-virtual/squashfs-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64-virtual/storage-core-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64-virtual/storage-core-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64-virtual/virtio-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64-virtual/virtio-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64-virtual/vlan-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64-virtual/vlan-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/block-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/block-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/crypto-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/crypto-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/fat-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/fat-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/fb-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/fb-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/firewire-core-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/firewire-core-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/floppy-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/floppy-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/fs-core-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/fs-core-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/fs-secondary-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/fs-secondary-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/input-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/input-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/ipmi-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/ipmi-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/irda-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/irda-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/kernel-image +++ linux-4.8.0/debian.master/d-i/modules/amd64/kernel-image @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/md-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/md-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/message-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/message-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/mouse-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/mouse-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/multipath-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/multipath-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/nfs-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/nfs-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/nic-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/nic-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/nic-pcmcia-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/nic-pcmcia-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/nic-shared-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/nic-shared-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/nic-usb-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/nic-usb-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/parport-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/parport-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/pata-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/pata-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/pcmcia-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/pcmcia-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/pcmcia-storage-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/pcmcia-storage-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/plip-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/plip-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/ppp-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/ppp-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/sata-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/sata-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/scsi-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/scsi-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/serial-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/serial-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/speakup-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/speakup-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/squashfs-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/squashfs-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/storage-core-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/storage-core-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/usb-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/usb-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/virtio-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/virtio-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/amd64/vlan-modules +++ linux-4.8.0/debian.master/d-i/modules/amd64/vlan-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/arm64/block-modules +++ linux-4.8.0/debian.master/d-i/modules/arm64/block-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/arm64/crypto-modules +++ linux-4.8.0/debian.master/d-i/modules/arm64/crypto-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/arm64/fat-modules +++ linux-4.8.0/debian.master/d-i/modules/arm64/fat-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/arm64/fs-core-modules +++ linux-4.8.0/debian.master/d-i/modules/arm64/fs-core-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/arm64/fs-secondary-modules +++ linux-4.8.0/debian.master/d-i/modules/arm64/fs-secondary-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/arm64/input-modules +++ linux-4.8.0/debian.master/d-i/modules/arm64/input-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/arm64/ipmi-modules +++ linux-4.8.0/debian.master/d-i/modules/arm64/ipmi-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/arm64/irda-modules +++ linux-4.8.0/debian.master/d-i/modules/arm64/irda-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/arm64/kernel-image +++ linux-4.8.0/debian.master/d-i/modules/arm64/kernel-image @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/arm64/md-modules +++ linux-4.8.0/debian.master/d-i/modules/arm64/md-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/arm64/mouse-modules +++ linux-4.8.0/debian.master/d-i/modules/arm64/mouse-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/arm64/multipath-modules +++ linux-4.8.0/debian.master/d-i/modules/arm64/multipath-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/arm64/nfs-modules +++ linux-4.8.0/debian.master/d-i/modules/arm64/nfs-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/arm64/nic-modules +++ linux-4.8.0/debian.master/d-i/modules/arm64/nic-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/arm64/nic-shared-modules +++ linux-4.8.0/debian.master/d-i/modules/arm64/nic-shared-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/arm64/nic-usb-modules +++ linux-4.8.0/debian.master/d-i/modules/arm64/nic-usb-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/arm64/parport-modules +++ linux-4.8.0/debian.master/d-i/modules/arm64/parport-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/arm64/plip-modules +++ linux-4.8.0/debian.master/d-i/modules/arm64/plip-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/arm64/ppp-modules +++ linux-4.8.0/debian.master/d-i/modules/arm64/ppp-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/arm64/sata-modules +++ linux-4.8.0/debian.master/d-i/modules/arm64/sata-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/arm64/scsi-modules +++ linux-4.8.0/debian.master/d-i/modules/arm64/scsi-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/arm64/speakup-modules +++ linux-4.8.0/debian.master/d-i/modules/arm64/speakup-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/arm64/squashfs-modules +++ linux-4.8.0/debian.master/d-i/modules/arm64/squashfs-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/arm64/storage-core-modules +++ linux-4.8.0/debian.master/d-i/modules/arm64/storage-core-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/arm64/usb-modules +++ linux-4.8.0/debian.master/d-i/modules/arm64/usb-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/arm64/virtio-modules +++ linux-4.8.0/debian.master/d-i/modules/arm64/virtio-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/arm64/vlan-modules +++ linux-4.8.0/debian.master/d-i/modules/arm64/vlan-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/armhf/block-modules +++ linux-4.8.0/debian.master/d-i/modules/armhf/block-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/armhf/crypto-modules +++ linux-4.8.0/debian.master/d-i/modules/armhf/crypto-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/armhf/fat-modules +++ linux-4.8.0/debian.master/d-i/modules/armhf/fat-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/armhf/fs-core-modules +++ linux-4.8.0/debian.master/d-i/modules/armhf/fs-core-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/armhf/fs-secondary-modules +++ linux-4.8.0/debian.master/d-i/modules/armhf/fs-secondary-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/armhf/input-modules +++ linux-4.8.0/debian.master/d-i/modules/armhf/input-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/armhf/ipmi-modules +++ linux-4.8.0/debian.master/d-i/modules/armhf/ipmi-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/armhf/irda-modules +++ linux-4.8.0/debian.master/d-i/modules/armhf/irda-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/armhf/kernel-image +++ linux-4.8.0/debian.master/d-i/modules/armhf/kernel-image @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/armhf/md-modules +++ linux-4.8.0/debian.master/d-i/modules/armhf/md-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/armhf/mouse-modules +++ linux-4.8.0/debian.master/d-i/modules/armhf/mouse-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/armhf/multipath-modules +++ linux-4.8.0/debian.master/d-i/modules/armhf/multipath-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/armhf/nfs-modules +++ linux-4.8.0/debian.master/d-i/modules/armhf/nfs-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/armhf/nic-modules +++ linux-4.8.0/debian.master/d-i/modules/armhf/nic-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/armhf/nic-shared-modules +++ linux-4.8.0/debian.master/d-i/modules/armhf/nic-shared-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/armhf/nic-usb-modules +++ linux-4.8.0/debian.master/d-i/modules/armhf/nic-usb-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/armhf/parport-modules +++ linux-4.8.0/debian.master/d-i/modules/armhf/parport-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/armhf/plip-modules +++ linux-4.8.0/debian.master/d-i/modules/armhf/plip-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/armhf/ppp-modules +++ linux-4.8.0/debian.master/d-i/modules/armhf/ppp-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/armhf/sata-modules +++ linux-4.8.0/debian.master/d-i/modules/armhf/sata-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/armhf/scsi-modules +++ linux-4.8.0/debian.master/d-i/modules/armhf/scsi-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/armhf/speakup-modules +++ linux-4.8.0/debian.master/d-i/modules/armhf/speakup-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/armhf/squashfs-modules +++ linux-4.8.0/debian.master/d-i/modules/armhf/squashfs-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/armhf/storage-core-modules +++ linux-4.8.0/debian.master/d-i/modules/armhf/storage-core-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/armhf/usb-modules +++ linux-4.8.0/debian.master/d-i/modules/armhf/usb-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/armhf/vlan-modules +++ linux-4.8.0/debian.master/d-i/modules/armhf/vlan-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/block-modules +++ linux-4.8.0/debian.master/d-i/modules/block-modules @@ -0,0 +1,42 @@ +aoe ? +aten ? +bpck ? +bpck6 ? +cciss ? +comm ? +cpqarray ? +DAC960 ? +dstr ? +epat ? +epia ? +fit2 ? +fit3 ? +friq ? +frpw ? +hpsa ? +hio ? +kbic ? +ktti ? +nbd ? +nvme ? +on20 ? +on26 ? +paride ? +pcd ? +pd ? +pf ? +pg ? +pt ? +sdhci-tegra ? +sx8 ? +umem ? +virtio_blk ? +xen-blkfront ? +mtip32xx ? +mmc_block ? +sdhci ? +sdhci-pci ? +sdhci-acpi ? +tifm_sd ? +dw_mmc ? +dw_mmc_pltfm ? --- linux-4.8.0.orig/debian.master/d-i/modules/block-modules.powerpc +++ linux-4.8.0/debian.master/d-i/modules/block-modules.powerpc @@ -0,0 +1,31 @@ +aoe ? +aten ? +bpck ? +bpck6 ? +cciss ? +comm ? +cpqarray ? +DAC960 ? +dstr ? +epat ? +epia ? +fit2 ? +fit3 ? +friq ? +frpw ? +kbic ? +ktti ? +nbd ? +on20 ? +on26 ? +paride ? +pcd ? +pd ? +pf ? +pg ? +ps3disk ? +ps3vram ? +pt ? +sx8 ? +umem ? +virtio_blk ? --- linux-4.8.0.orig/debian.master/d-i/modules/crypto-modules +++ linux-4.8.0/debian.master/d-i/modules/crypto-modules @@ -0,0 +1,73 @@ +aesni-intel ? +aes-x86_64 ? +af_alg ? +algif_hash ? +algif_skcipher ? +ansi_cprng ? +anubis ? +arc4 ? +async_memcpy ? +async_pq ? +async_raid6_recov ? +async_tx ? +async_xor ? +authenc ? +authencesn ? +blowfish_common ? +blowfish_generic ? +blowfish-x86_64 ? +camellia ? +cast5 ? +cast6 ? +ccm ? +crc32_generic ? +crc32c_generic ? +crc32-vx_s390 ? +cryptd ? +cryptoloop ? +crypto_null ? +crypto_user ? +ctr ? +cts ? +deflate ? +des_generic ? +fcrypt ? +gcm ? +gf128mul ? +ghash-clmulni-intel ? +ghash-generic ? +khazad ? +lrw ? +lzo ? +md4 ? +michael_mic ? +padlock-aes ? +padlock-sha ? +pcbc ? +pcrypt ? +raid6test ? +rmd128 ? +rmd160 ? +rmd256 ? +rmd320 ? +salsa20_generic ? +salsa20-x86_64 ? +seed ? +seqiv ? +serpent_generic ? +serpent-sse2-x86_64 ? +sha1-ssse3 ? +sha512_generic ? +tcrypt ? +tea ? +tgr192 ? +twofish_common ? +twofish_generic ? +twofish-x86_64 ? +twofish-x86_64-3way ? +vmac ? +wp512 ? +xcbc ? +xor ? +xts ? +zlib ? --- linux-4.8.0.orig/debian.master/d-i/modules/dasd-extra-modules.s390x +++ linux-4.8.0/debian.master/d-i/modules/dasd-extra-modules.s390x @@ -0,0 +1 @@ +dasd_diag_mod ? --- linux-4.8.0.orig/debian.master/d-i/modules/dasd-modules.s390x +++ linux-4.8.0/debian.master/d-i/modules/dasd-modules.s390x @@ -0,0 +1,3 @@ +dasd_mod ? +dasd_fba_mod ? +dasd_eckd_mod ? --- linux-4.8.0.orig/debian.master/d-i/modules/fat-modules +++ linux-4.8.0/debian.master/d-i/modules/fat-modules @@ -0,0 +1,7 @@ +fat ? +vfat ? + +# Supporting modules ? +nls_cp437 ? +nls_iso8859-1 ? +nls_utf8 ? --- linux-4.8.0.orig/debian.master/d-i/modules/fb-modules +++ linux-4.8.0/debian.master/d-i/modules/fb-modules @@ -0,0 +1,3 @@ +fbcon ? +vesafb ? +vga16fb ? --- linux-4.8.0.orig/debian.master/d-i/modules/firewire-core-modules +++ linux-4.8.0/debian.master/d-i/modules/firewire-core-modules @@ -0,0 +1,4 @@ +firewire-core ? +firewire-ohci ? +firewire-sbp2 ? +firewire-net ? --- linux-4.8.0.orig/debian.master/d-i/modules/floppy-modules +++ linux-4.8.0/debian.master/d-i/modules/floppy-modules @@ -0,0 +1 @@ +floppy ? --- linux-4.8.0.orig/debian.master/d-i/modules/fs-core-modules +++ linux-4.8.0/debian.master/d-i/modules/fs-core-modules @@ -0,0 +1,6 @@ +ext2 ? +ext4 ? +jfs ? +reiserfs ? +xfs ? +zfs ? --- linux-4.8.0.orig/debian.master/d-i/modules/fs-secondary-modules +++ linux-4.8.0/debian.master/d-i/modules/fs-secondary-modules @@ -0,0 +1,5 @@ +btrfs ? +fuse ? +ntfs ? +hfs ? +hfsplus ? --- linux-4.8.0.orig/debian.master/d-i/modules/i386-virtual/block-modules +++ linux-4.8.0/debian.master/d-i/modules/i386-virtual/block-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386-virtual/crypto-modules +++ linux-4.8.0/debian.master/d-i/modules/i386-virtual/crypto-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386-virtual/fat-modules +++ linux-4.8.0/debian.master/d-i/modules/i386-virtual/fat-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386-virtual/fb-modules +++ linux-4.8.0/debian.master/d-i/modules/i386-virtual/fb-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386-virtual/floppy-modules +++ linux-4.8.0/debian.master/d-i/modules/i386-virtual/floppy-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386-virtual/fs-core-modules +++ linux-4.8.0/debian.master/d-i/modules/i386-virtual/fs-core-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386-virtual/fs-secondary-modules +++ linux-4.8.0/debian.master/d-i/modules/i386-virtual/fs-secondary-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386-virtual/irda-modules +++ linux-4.8.0/debian.master/d-i/modules/i386-virtual/irda-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386-virtual/kernel-image +++ linux-4.8.0/debian.master/d-i/modules/i386-virtual/kernel-image @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386-virtual/md-modules +++ linux-4.8.0/debian.master/d-i/modules/i386-virtual/md-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386-virtual/message-modules +++ linux-4.8.0/debian.master/d-i/modules/i386-virtual/message-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386-virtual/mouse-modules +++ linux-4.8.0/debian.master/d-i/modules/i386-virtual/mouse-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386-virtual/multipath-modules +++ linux-4.8.0/debian.master/d-i/modules/i386-virtual/multipath-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386-virtual/nic-modules +++ linux-4.8.0/debian.master/d-i/modules/i386-virtual/nic-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386-virtual/nic-shared-modules +++ linux-4.8.0/debian.master/d-i/modules/i386-virtual/nic-shared-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386-virtual/parport-modules +++ linux-4.8.0/debian.master/d-i/modules/i386-virtual/parport-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386-virtual/scsi-modules +++ linux-4.8.0/debian.master/d-i/modules/i386-virtual/scsi-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386-virtual/serial-modules +++ linux-4.8.0/debian.master/d-i/modules/i386-virtual/serial-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386-virtual/squashfs-modules +++ linux-4.8.0/debian.master/d-i/modules/i386-virtual/squashfs-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386-virtual/storage-core-modules +++ linux-4.8.0/debian.master/d-i/modules/i386-virtual/storage-core-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386-virtual/virtio-modules +++ linux-4.8.0/debian.master/d-i/modules/i386-virtual/virtio-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386-virtual/vlan-modules +++ linux-4.8.0/debian.master/d-i/modules/i386-virtual/vlan-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/block-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/block-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/crypto-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/crypto-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/fat-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/fat-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/fb-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/fb-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/firewire-core-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/firewire-core-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/floppy-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/floppy-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/fs-core-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/fs-core-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/fs-secondary-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/fs-secondary-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/input-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/input-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/ipmi-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/ipmi-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/irda-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/irda-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/kernel-image +++ linux-4.8.0/debian.master/d-i/modules/i386/kernel-image @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/md-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/md-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/message-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/message-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/mouse-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/mouse-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/multipath-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/multipath-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/nfs-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/nfs-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/nic-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/nic-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/nic-pcmcia-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/nic-pcmcia-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/nic-shared-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/nic-shared-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/nic-usb-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/nic-usb-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/parport-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/parport-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/pata-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/pata-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/pcmcia-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/pcmcia-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/pcmcia-storage-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/pcmcia-storage-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/plip-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/plip-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/ppp-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/ppp-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/sata-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/sata-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/scsi-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/scsi-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/serial-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/serial-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/speakup-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/speakup-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/squashfs-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/squashfs-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/storage-core-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/storage-core-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/usb-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/usb-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/virtio-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/virtio-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/i386/vlan-modules +++ linux-4.8.0/debian.master/d-i/modules/i386/vlan-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/input-modules +++ linux-4.8.0/debian.master/d-i/modules/input-modules @@ -0,0 +1,71 @@ +hid ? +hid-a4tech ? +hid-apple ? +hid-appleir ? +hid-aureal ? +hid-belkin ? +hid-bright ? +hid-cherry ? +hid-chicony ? +hid-corsair ? +hid-cp2112 ? +hid-cypress ? +hid-dell ? +hid-elecom ? +hid-elo ? +hid-ezkey ? +hid-generic ? +hid-gfrm ? +hid-gt683r ? +hid-gyration ? +hid-holtek-kbd ? +hid-holtek-mouse ? +hid-hyperv ? +hid-kensington ? +hid-keytouch ? +hid-kye ? +hid-lcpower ? +hid-lenovo ? +hid-logitech ? +hid-logitech-dj ? +hid-logitech-hidpp ? +hid-magicmouse ? +hid-microsoft ? +hid-monterey ? +hid-multitouch ? +hid-ntrig ? +hid-ortek ? +hid-penmount ? +hid-petalynx ? +hid-picolcd ? +hid-pl ? +hid-plantronics ? +hid-primax ? +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-samsung ? +hid-sony ? +hid-speedlink ? +hid-sunplus ? +hid-thingm ? +hid-tivo ? +hid-topseed ? +hid-twinhan ? +hid-uclogic ? +hid-waltop ? +hid-wiimote ? +hid-xinmo ? +hid-zydacron ? +uhid ? +usbhid ? --- linux-4.8.0.orig/debian.master/d-i/modules/ipmi-modules +++ linux-4.8.0/debian.master/d-i/modules/ipmi-modules @@ -0,0 +1,5 @@ +ipmi_devintf ? +ipmi_msghandler ? +ipmi_poweroff ? +ipmi_si ? +ipmi_watchdog ? --- linux-4.8.0.orig/debian.master/d-i/modules/irda-modules +++ linux-4.8.0/debian.master/d-i/modules/irda-modules @@ -0,0 +1,30 @@ +act200l-sir ? +actisys-sir ? +ali-ircc ? +donauboe ? +esi-sir ? +girbil-sir ? +ircomm ? +ircomm-tty ? +irda ? +irda-usb ? +irlan ? +irnet ? +irport ? +irtty-sir ? +kingsun-sir ? +ks959-sir ? +ksdazzle-sir ? +litelink-sir ? +ma600-sir ? +mcp2120-sir ? +mcs7780 ? +nsc-ircc ? +old_belkin-sir ? +sir-dev ? +smsc-ircc2 ? +stir4200 ? +tekram-sir ? +via-ircc ? +vlsi_ir ? +w83977af_ir ? --- linux-4.8.0.orig/debian.master/d-i/modules/kernel-image +++ linux-4.8.0/debian.master/d-i/modules/kernel-image @@ -0,0 +1,30 @@ +ast ? +gpio-pca953x ? +gpio-regulator ? +i2c-mux ? +i2c-mux-pinctrl ? +i2c-tegra ? +max8907 ? +max8907-regulator ? +nvec ? +nvec_kbd ? +nvec_paz00 ? +nvec_power ? +nvec_ps2 ? +palmas-regulator ? +rtc-em3027 ? +rtc-max8907 ? +rtc-palmas ? +rtc-tps6586x ? +rtc-tps65910 ? +tps51632-regulator ? +tps62360-regulator ? +tps65090-charger ? +tps65090-regulator ? +tps6586x-regulator ? +tps65910-regulator ? +host1x ? +tegra-drm ? +pwm_bl ? +pwm-tegra ? +panel-simple ? --- linux-4.8.0.orig/debian.master/d-i/modules/md-modules +++ linux-4.8.0/debian.master/d-i/modules/md-modules @@ -0,0 +1,16 @@ +dm-crypt ? +dm-mirror ? +dm-raid ? +dm-snapshot ? +dm-zero ? +faulty ? +linear ? +multipath ? +raid0 ? +raid1 ? +raid10 ? +raid456 ? + +# Extras +dm-raid45 ? +dm-loop ? --- linux-4.8.0.orig/debian.master/d-i/modules/message-modules +++ linux-4.8.0/debian.master/d-i/modules/message-modules @@ -0,0 +1,9 @@ +mptbase ? +mptctl ? +mptfc ? +mptlan ? +mptsas ? +mpt2sas ? +mpt3sas ? +mptscsih ? +mptspi ? --- linux-4.8.0.orig/debian.master/d-i/modules/message-modules.powerpc +++ linux-4.8.0/debian.master/d-i/modules/message-modules.powerpc @@ -0,0 +1,7 @@ +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi --- linux-4.8.0.orig/debian.master/d-i/modules/mouse-modules +++ linux-4.8.0/debian.master/d-i/modules/mouse-modules @@ -0,0 +1,2 @@ +psmouse ? +usbmouse ? --- linux-4.8.0.orig/debian.master/d-i/modules/multipath-modules +++ linux-4.8.0/debian.master/d-i/modules/multipath-modules @@ -0,0 +1,4 @@ +dm-multipath ? +dm-round-robin ? +dm-service-time ? +dm-queue-length ? --- linux-4.8.0.orig/debian.master/d-i/modules/nfs-modules +++ linux-4.8.0/debian.master/d-i/modules/nfs-modules @@ -0,0 +1,6 @@ +nfs ? +nfs_acl ? +nfsv3 ? +lockd ? +sunrpc ? +cifs ? --- linux-4.8.0.orig/debian.master/d-i/modules/nic-modules +++ linux-4.8.0/debian.master/d-i/modules/nic-modules @@ -0,0 +1,195 @@ +3c359 ? +3c501 ? +3c503 ? +3c505 ? +3c507 ? +3c509 ? +3c515 ? +3c523 ? +3c527 ? +3c59x ? +8139cp ? +8139too ? +82596 ? +abyss ? +ac3200 ? +adm8211 ? +airo ? +airport ? +alx ? +amd8111e ? +amd-xgbe ? +aquantia ? +arcnet ? +arc-rawmode ? +arc-rimi ? +arlan ? +at1700 ? +ath5k ? +ath9k ? +ath9k_htc ? +atl1 ? +atl1c ? +atl1e ? +atl2 ? +atmel ? +atmel_pci ? +b44 ? +bcm87xx ? +be2net ? +bmac ? +bnx2 ? +bnx2x ? +bonding ? +brcmfmac ? +brcmsmac ? +broadcom ? +xgmac ? +cassini ? +ccwgroup ? +com20020 ? +com20020-pci ? +com90io ? +com90xx ? +cs89x0 ? +ctcm ? +de2104x ? +de4x5 ? +de600 ? +de620 ? +defxx ? +depca ? +dl2k ? +dmfe ? +dummy ? +e100 ? +e1000 ? +e1000e ? +e2100 ? +eepro ? +eepro100 ? +eexpress ? +enic ? +epic100 ? +eql ? +es3210 ? +eth16i ? +ewrk3 ? +fealnx ? +forcedeth ? +fsm ? +ibmveth ? +igb ? +ps3_gelic ? +hamachi ? +hermes ? +hp ? +hp100 ? +hp-plus ? +i40e ? +i40evf ? +ibmtr ? +ipddp ? +ipw2100 ? +ipw2200 ? +iwl3945 ? +iwl4965 ? +iwl-legacy ? +iwldvm ? +iwlwifi ? +ixgb ? +ixgbe ? +lance ? +lanstreamer ? +lcs ? +lasi_82596 ? +lne390 ? +lp486e ? +mace ? +marvell ? +mdio-thunder ? +mlx4_core ? +mlx4_en ? +mlx5_core ? +mv643xx_eth ? +myri_sbus ? +natsemi ? +ne ? +ne2 ? +ne2k-pci ? +ne3210 ? +netconsole ? +netiucv ? +netxen_nic ? +ni5010 ? +ni52 ? +ni65 ? +nicpf ? +nicvf ? +niu ? +ns83820 ? +olympic ? +orinoco ? +orinoco_pci ? +orinoco_plx ? +orinoco_tmd ? +pcnet32 ? +qeth ? +qeth_l2 ? +qeth_l3 ? +qlcnic ? +r815x ? +r8169 ? +rate_control ? +realtek ? +rfc1051 ? +rfc1201 ? +rrunner ? +rt2400 ? +rt2400pci ? +rt2500 ? +rt2500pci ? +rt2800pci ? +rt61pci ? +s2io ? +sfc ? +shaper ? +sis190 ? +sis900 ? +spidernet ? +skfp ? +skge ? +sk98lin ? +sky2 ? +smc9194 ? +smc-ultra ? +smc-ultra32 ? +starfire ? +strip ? +sunbmac ? +sundance ? +sungem ? +sungem_phy ? +sunhme ? +sunlance ? +sunqe ? +sunvnet ? +tg3 ? +tlan ? +tms380tr ? +tmspci ? +tulip ? +tun ? +typhoon ? +uli526x ? +via-rhine ? +via-velocity ? +virtio_net ? +wavelan ? +wd ? +winbond-840 ? +yellowfin ? +znet ? +vmxnet3 ? +xen-netfront ? +xgene-enet ? --- linux-4.8.0.orig/debian.master/d-i/modules/nic-modules.powerpc +++ linux-4.8.0/debian.master/d-i/modules/nic-modules.powerpc @@ -0,0 +1,152 @@ +3c359 ? +3c501 ? +3c503 ? +3c505 ? +3c507 ? +3c509 ? +3c515 ? +3c523 ? +3c527 ? +3c59x ? +8139cp ? +8139too ? +82596 ? +abyss ? +ac3200 ? +adm8211 ? +airo ? +airport ? +amd8111e ? +arc4 ? +arcnet ? +arc-rawmode ? +arc-rimi ? +arlan ? +at1700 ? +atl1 ? +atl1e ? +atl2 ? +atmel ? +atmel_pci ? +b44 ? +bcm43xx ? +bcm43xx-mac80211 ? +bmac ? +bnx2 ? +bnx2x ? +bonding ? +cassini ? +com20020 ? +com20020-pci ? +com90io ? +com90xx ? +cs89x0 ? +de2104x ? +de4x5 ? +de600 ? +de620 ? +defxx ? +depca ? +dl2k ? +dmfe ? +dummy ? +e100 ? +e1000 ? +e1000e ? +e2100 ? +eepro ? +eepro100 ? +eexpress ? +epic100 ? +eql ? +es3210 ? +eth16i ? +ewrk3 ? +fealnx ? +forcedeth ? +igb ? +hamachi ? +hermes ? +hp ? +hp100 ? +hp-plus ? +ibmtr ? +ibmveth ? +ipddp ? +ipw2100 ? +ipw2200 ? +ipw3945 ? +ixgb ? +lance ? +lanstreamer ? +lasi_82596 ? +lne390 ? +lp486e ? +mace ? +mv643xx_eth ? +myri_sbus ? +natsemi ? +ne ? +ne2 ? +ne2k-pci ? +ne3210 ? +netconsole ? +netxen_nic ? +ni5010 ? +ni52 ? +ni65 ? +niu ? +ns83820 ? +olympic ? +orinoco ? +orinoco_pci ? +orinoco_plx ? +orinoco_tmd ? +pcnet32 ? +ps3_gelic ? +r8169 ? +rate_control ? +rfc1051 ? +rfc1201 ? +rrunner ? +rt2400 ? +rt2500 ? +rt61pci ? +s2io ? +shaper ? +sis190 ? +sis900 ? +spidernet ? +skfp ? +skge ? +sk98lin ? +sky2 ? +smc9194 ? +smc-ultra ? +smc-ultra32 ? +starfire ? +strip ? +sunbmac ? +sundance ? +sungem ? +sungem_phy ? +sunhme ? +sunlance ? +sunqe ? +sunvnet ? +tg3 ? +tlan ? +tms380tr ? +tmspci ? +tulip ? +tun ? +typhoon ? +uli526x ? +via-rhine ? +via-velocity ? +virtio_net ? +wavelan ? +wd ? +winbond-840 ? +yellowfin ? +znet ? --- linux-4.8.0.orig/debian.master/d-i/modules/nic-pcmcia-modules +++ linux-4.8.0/debian.master/d-i/modules/nic-pcmcia-modules @@ -0,0 +1,19 @@ +3c574_cs ? +3c589_cs ? +airo_cs ? +atmel_cs ? +axnet_cs ? +com20020_cs ? +fmvj18x_cs ? +ibmtr_cs ? +netwave_cs ? +nmclan_cs ? +orinoco_cs ? +pcnet_cs ? +ray_cs ? +smc91c92_cs ? +wavelan_cs ? +wl3501_cs ? +xirc2ps_cs ? +xircom_cb ? +xircom_tulip_cb ? --- linux-4.8.0.orig/debian.master/d-i/modules/nic-shared-modules +++ linux-4.8.0/debian.master/d-i/modules/nic-shared-modules @@ -0,0 +1,26 @@ +# PHY +8390 ? +mii ? + +# CRC modules +crc-ccitt ? +crc-itu-t ? +libcrc32c ? + +# mac80211 stuff +mac80211 ? +cfg80211 ? + +# rt2x00 lib (since rt2x00 is split across usb/pci/cb +rt2x00lib ? +rt2800lib ? + +# Atheros library (since drivers are split across nic-modules/nic-usb-modules) +ath ? + +# Wireless 802.11 modules +lib80211 ? +cfg80211 ? +lib80211_crypt_ccmp ? +lib80211_crypt_tkip ? +lib80211_crypt_wep ? --- linux-4.8.0.orig/debian.master/d-i/modules/nic-usb-modules +++ linux-4.8.0/debian.master/d-i/modules/nic-usb-modules @@ -0,0 +1,32 @@ +catc ? +kaweth ? +pegasus ? +prism2_usb ? +rtl8150 ? +usbnet ? +zd1211rw ? +zd1201 ? +rt2500usb ? +rt73usb ? +rt2570 ? +rt2800usb ? +rt2x00usb ? +cdc_ether ? +asix ? +cdc_eem ? +cdc_ether ? +cdc-phonet ? +cdc_subset ? +dm9601 ? +gl620a ? +hso ? +int51x1 ? +mcs7830 ? +net1080 ? +plusb ? +rndis_host ? +smsc95xx ? +zaurus ? +carl9170 ? +smsc75xx ? +smsc95xx ? --- linux-4.8.0.orig/debian.master/d-i/modules/parport-modules +++ linux-4.8.0/debian.master/d-i/modules/parport-modules @@ -0,0 +1,2 @@ +parport ? +parport_pc ? --- linux-4.8.0.orig/debian.master/d-i/modules/pata-modules +++ linux-4.8.0/debian.master/d-i/modules/pata-modules @@ -0,0 +1,47 @@ +pata_ali.ko ? +pata_amd.ko ? +pata_artop.ko ? +pata_atiixp.ko ? +pata_atp867x.ko ? +pata_cmd640.ko ? +pata_cmd64x.ko ? +pata_cs5520.ko ? +pata_cs5530.ko ? +pata_cs5535.ko ? +pata_cs5536.ko ? +pata_cypress.ko ? +pata_efar.ko ? +pata_hpt366.ko ? +pata_hpt37x.ko ? +pata_hpt3x2n.ko ? +pata_hpt3x3.ko ? +pata_isapnp.ko ? +pata_it8213.ko ? +pata_it821x.ko ? +pata_jmicron.ko ? +pata_legacy.ko ? +pata_macio.ko ? +pata_marvell.ko ? +pata_mpiix.ko ? +pata_netcell.ko ? +pata_ninja32.ko ? +pata_ns87410.ko ? +pata_ns87415.ko ? +pata_oldpiix.ko ? +pata_optidma.ko ? +pata_opti.ko ? +pata_pcmcia.ko ? +pata_pdc2027x.ko ? +pata_pdc202xx_old.ko ? +pata_qdi.ko ? +pata_radisys.ko ? +pata_rdc.ko ? +pata_rz1000.ko ? +pata_sc1200.ko ? +pata_sch.ko ? +pata_serverworks.ko ? +pata_sil680.ko ? +pata_sl82c105.ko ? +pata_triflex.ko ? +pata_via.ko ? +pata_winbond.ko ? --- linux-4.8.0.orig/debian.master/d-i/modules/pcmcia-modules +++ linux-4.8.0/debian.master/d-i/modules/pcmcia-modules @@ -0,0 +1,8 @@ +i82092 ? +i82365 ? +pcmcia ? +pcmcia_core ? +pd6729 ? +rsrc_nonstatic ? +tcic ? +yenta_socket ? --- linux-4.8.0.orig/debian.master/d-i/modules/pcmcia-storage-modules +++ linux-4.8.0/debian.master/d-i/modules/pcmcia-storage-modules @@ -0,0 +1,6 @@ +pata_pcmcia ? +qlogic_cs ? +fdomain_cs ? +aha152x_cs ? +nsp_cs ? +sym53c500_cs ? --- linux-4.8.0.orig/debian.master/d-i/modules/plip-modules +++ linux-4.8.0/debian.master/d-i/modules/plip-modules @@ -0,0 +1 @@ +plip ? --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/block-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/block-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/crypto-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/crypto-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/fat-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/fat-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/firewire-core-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/firewire-core-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/floppy-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/floppy-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/fs-core-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/fs-core-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/fs-secondary-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/fs-secondary-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/input-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/input-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/ipmi-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/ipmi-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/irda-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/irda-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/kernel-image +++ linux-4.8.0/debian.master/d-i/modules/powerpc/kernel-image @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/md-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/md-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/message-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/message-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/mouse-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/mouse-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/multipath-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/multipath-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/nfs-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/nfs-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/nic-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/nic-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/nic-shared-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/nic-shared-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/nic-usb-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/nic-usb-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/parport-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/parport-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/pata-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/pata-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/plip-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/plip-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/ppp-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/ppp-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/sata-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/sata-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/scsi-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/scsi-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/speakup-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/speakup-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/squashfs-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/squashfs-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/storage-core-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/storage-core-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/usb-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/usb-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/virtio-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/virtio-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/powerpc/vlan-modules +++ linux-4.8.0/debian.master/d-i/modules/powerpc/vlan-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/ppc64el/block-modules +++ linux-4.8.0/debian.master/d-i/modules/ppc64el/block-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/ppc64el/crypto-modules +++ linux-4.8.0/debian.master/d-i/modules/ppc64el/crypto-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/ppc64el/floppy-modules +++ linux-4.8.0/debian.master/d-i/modules/ppc64el/floppy-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/ppc64el/fs-core-modules +++ linux-4.8.0/debian.master/d-i/modules/ppc64el/fs-core-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/ppc64el/fs-secondary-modules +++ linux-4.8.0/debian.master/d-i/modules/ppc64el/fs-secondary-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/ppc64el/input-modules +++ linux-4.8.0/debian.master/d-i/modules/ppc64el/input-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/ppc64el/ipmi-modules +++ linux-4.8.0/debian.master/d-i/modules/ppc64el/ipmi-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/ppc64el/kernel-image +++ linux-4.8.0/debian.master/d-i/modules/ppc64el/kernel-image @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/ppc64el/md-modules +++ linux-4.8.0/debian.master/d-i/modules/ppc64el/md-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/ppc64el/message-modules +++ linux-4.8.0/debian.master/d-i/modules/ppc64el/message-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/ppc64el/multipath-modules +++ linux-4.8.0/debian.master/d-i/modules/ppc64el/multipath-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/ppc64el/nfs-modules +++ linux-4.8.0/debian.master/d-i/modules/ppc64el/nfs-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/ppc64el/nic-modules +++ linux-4.8.0/debian.master/d-i/modules/ppc64el/nic-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/ppc64el/nic-shared-modules +++ linux-4.8.0/debian.master/d-i/modules/ppc64el/nic-shared-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/ppc64el/nic-usb-modules +++ linux-4.8.0/debian.master/d-i/modules/ppc64el/nic-usb-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/ppc64el/parport-modules +++ linux-4.8.0/debian.master/d-i/modules/ppc64el/parport-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/ppc64el/plip-modules +++ linux-4.8.0/debian.master/d-i/modules/ppc64el/plip-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/ppc64el/ppp-modules +++ linux-4.8.0/debian.master/d-i/modules/ppc64el/ppp-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/ppc64el/sata-modules +++ linux-4.8.0/debian.master/d-i/modules/ppc64el/sata-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/ppc64el/scsi-modules +++ linux-4.8.0/debian.master/d-i/modules/ppc64el/scsi-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/ppc64el/squashfs-modules +++ linux-4.8.0/debian.master/d-i/modules/ppc64el/squashfs-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/ppc64el/storage-core-modules +++ linux-4.8.0/debian.master/d-i/modules/ppc64el/storage-core-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/ppc64el/virtio-modules +++ linux-4.8.0/debian.master/d-i/modules/ppc64el/virtio-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/ppc64el/vlan-modules +++ linux-4.8.0/debian.master/d-i/modules/ppc64el/vlan-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/ppp-modules +++ linux-4.8.0/debian.master/d-i/modules/ppp-modules @@ -0,0 +1,6 @@ +ppp_async ? +ppp_deflate ? +ppp_mppe ? +pppoe ? +pppox ? +ppp_synctty ? --- linux-4.8.0.orig/debian.master/d-i/modules/s390x/block-modules +++ linux-4.8.0/debian.master/d-i/modules/s390x/block-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/s390x/crypto-modules +++ linux-4.8.0/debian.master/d-i/modules/s390x/crypto-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/s390x/dasd-extra-modules +++ linux-4.8.0/debian.master/d-i/modules/s390x/dasd-extra-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/s390x/dasd-modules +++ linux-4.8.0/debian.master/d-i/modules/s390x/dasd-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/s390x/fat-modules +++ linux-4.8.0/debian.master/d-i/modules/s390x/fat-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/s390x/fs-core-modules +++ linux-4.8.0/debian.master/d-i/modules/s390x/fs-core-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/s390x/fs-secondary-modules +++ linux-4.8.0/debian.master/d-i/modules/s390x/fs-secondary-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/s390x/kernel-image +++ linux-4.8.0/debian.master/d-i/modules/s390x/kernel-image @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/s390x/md-modules +++ linux-4.8.0/debian.master/d-i/modules/s390x/md-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/s390x/multipath-modules +++ linux-4.8.0/debian.master/d-i/modules/s390x/multipath-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/s390x/nfs-modules +++ linux-4.8.0/debian.master/d-i/modules/s390x/nfs-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/s390x/nic-modules +++ linux-4.8.0/debian.master/d-i/modules/s390x/nic-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/s390x/nic-shared-modules +++ linux-4.8.0/debian.master/d-i/modules/s390x/nic-shared-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/s390x/scsi-modules +++ linux-4.8.0/debian.master/d-i/modules/s390x/scsi-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/s390x/squashfs-modules +++ linux-4.8.0/debian.master/d-i/modules/s390x/squashfs-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/s390x/storage-core-modules +++ linux-4.8.0/debian.master/d-i/modules/s390x/storage-core-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/s390x/virtio-modules +++ linux-4.8.0/debian.master/d-i/modules/s390x/virtio-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/s390x/vlan-modules +++ linux-4.8.0/debian.master/d-i/modules/s390x/vlan-modules @@ -0,0 +1 @@ +#include --- linux-4.8.0.orig/debian.master/d-i/modules/sata-modules +++ linux-4.8.0/debian.master/d-i/modules/sata-modules @@ -0,0 +1,18 @@ +sata_inic162x.ko ? +sata_mv.ko ? +sata_nv.ko ? +sata_promise.ko ? +sata_qstor.ko ? +sata_sil24.ko ? +sata_sil.ko ? +sata_sis.ko ? +sata_svw.ko ? +sata_sx4.ko ? +sata_uli.ko ? +sata_via.ko ? +sata_vsc.ko ? +ahci_platform ? +ahci ? +acard-ahci ? +libahci ? +ahci_xgene ? --- linux-4.8.0.orig/debian.master/d-i/modules/scsi-modules +++ linux-4.8.0/debian.master/d-i/modules/scsi-modules @@ -0,0 +1,133 @@ +# SCSI +raid_class ? +scsi_transport_spi ? +scsi_transport_fc ? +scsi_transport_iscsi ? +scsi_transport_sas ? +sr_mod ? +iscsi_tcp ? +libiscsi ? +amiga7xx ? +a3000 ? +a2091 ? +gvp11 ? +mvme147 ? +sgiwd93 ? +cyberstorm ? +cyberstormII ? +blz2060 ? +blz1230 ? +fastlane ? +oktagon_esp_mod ? +atari_scsi ? +mac_scsi ? +mac_esp ? +sun3_scsi ? +mvme16x ? +bvme6000 ? +sim710 ? +advansys ? +pm80xx ? +psi240i ? +BusLogic ? +dpt_i2o ? +u14-34f ? +ultrastor ? +aha152x ? +aha1542 ? +aha1740 ? +aic7xxx_old ? +ips ? +fd_mcs ? +fdomain ? +fnic ? +in2000 ? +g_NCR5380 ? +g_NCR5380_mmio ? +NCR53c406a ? +NCR_D700 ? +NCR_Q720_mod ? +sym53c416 ? +qlogicfas408 ? +qla1280 ? +pas16 ? +seagate ? +seagate ? +t128 ? +dmx3191d ? +dtc ? +zalon7xx ? +eata_pio ? +wd7000 ? +mca_53c9x ? +ibmmca ? +eata ? +dc395x ? +tmscsim ? +megaraid ? +atp870u ? +esp ? +gdth ? +initio ? +a100u2w ? +qlogicpti ? +ide-scsi ? +mesh ? +mac53c94 ? +pluto ? +dec_esp ? +3w-xxxx ? +3w-9xxx ? +ppa ? +imm ? +jazz_esp ? +sun3x_esp ? +fcal ? +lasi700 ? +nsp32 ? +ipr ? +hptiop ? +stex ? +osst ? +sg ? +ch ? +scsi_debug ? +aacraid ? +aic7xxx ? +aic79xx ? +aic94xx ? +arcmsr ? +acornscsi_mod ? +arxescsi ? +cumana_1 ? +cumana_2 ? +ecoscsi ? +oak ? +powertec ? +eesox ? +ibmvscsi ? +ibmvfc ? +libsas ? +lpfc ? +megaraid_mm ? +megaraid_mbox ? +megaraid_sas ? +qla2xxx ? +sym53c8xx ? +qla4xxx ? +mvsas ? +vmw_pvscsi ? +ums-cypress ? +be2iscsi ? +3w-sas ? +isci ? +mlx4_ib ? +mlx5_ib ? +zfcp ? +sd_mod ? + +# device handlers +scsi_dh_alua ? +scsi_dh_emc ? +scsi_dh_rdac ? +scsi_dh_hp_sw ? --- linux-4.8.0.orig/debian.master/d-i/modules/scsi-modules.powerpc +++ linux-4.8.0/debian.master/d-i/modules/scsi-modules.powerpc @@ -0,0 +1,118 @@ +# SCSI +raid_class ? +scsi_transport_spi ? +scsi_transport_fc ? +scsi_transport_iscsi ? +scsi_transport_sas ? +iscsi_tcp ? +libiscsi ? +amiga7xx ? +a3000 ? +a2091 ? +gvp11 ? +mvme147 ? +sgiwd93 ? +cyberstorm ? +cyberstormII ? +blz2060 ? +blz1230 ? +fastlane ? +oktagon_esp_mod ? +atari_scsi ? +mac_scsi ? +mac_esp ? +sun3_scsi ? +mvme16x ? +bvme6000 ? +sim710 ? +advansys ? +psi240i ? +BusLogic ? +dpt_i2o ? +u14-34f ? +ultrastor ? +aha152x ? +aha1542 ? +aha1740 ? +aic7xxx_old ? +ips ? +fd_mcs ? +fdomain ? +in2000 ? +g_NCR5380 ? +g_NCR5380_mmio ? +NCR53c406a ? +NCR_D700 ? +NCR_Q720_mod ? +sym53c416 ? +qlogicfas408 ? +qla1280 ? +pas16 ? +seagate ? +seagate ? +t128 ? +dmx3191d ? +dtc ? +zalon7xx ? +eata_pio ? +wd7000 ? +mca_53c9x ? +ibmmca ? +ibmvfc ? +ibmvscsi ? +eata ? +dc395x ? +tmscsim ? +megaraid ? +atp870u ? +esp ? +gdth ? +initio ? +a100u2w ? +qlogicpti ? +ide-scsi ? +mesh ? +mac53c94 ? +pluto ? +dec_esp ? +3w-xxxx ? +3w-9xxx ? +ppa ? +imm ? +jazz_esp ? +sun3x_esp ? +fcal ? +lasi700 ? +nsp32 ? +ipr ? +hptiop ? +stex ? +osst ? +sg ? +ch ? +scsi_debug ? +aacraid ? +aic7xxx ? +aic79xx ? +aic94xx ? +arcmsr ? +acornscsi_mod ? +arxescsi ? +cumana_1 ? +cumana_2 ? +ecoscsi ? +oak ? +powertec ? +eesox ? +ibmvscsic ? +libsas ? +lpfc ? +megaraid_mm ? +megaraid_mbox ? +megaraid_sas ? +qla2xxx ? +sym53c8xx ? +qla4xxx ? +mvsas ? +sr_mod ? +sd_mod ? --- linux-4.8.0.orig/debian.master/d-i/modules/serial-modules +++ linux-4.8.0/debian.master/d-i/modules/serial-modules @@ -0,0 +1,4 @@ +generic_serial ? +serial_cs ? +synclink_cs ? +hyperv-keyboard ? --- linux-4.8.0.orig/debian.master/d-i/modules/speakup-modules +++ linux-4.8.0/debian.master/d-i/modules/speakup-modules @@ -0,0 +1,16 @@ +speakup ? +speakup_acntpc ? +speakup_acntsa ? +speakup_apollo ? +speakup_audptr ? +speakup_bns ? +speakup_decext ? +speakup_dectlk ? +speakup_dtlk ? +speakup_dummy ? +speakup_keypc ? +speakup_ltlk ? +speakup_soft ? +speakup_spkout ? +speakup_txprt ? +speakup_decpc ? --- linux-4.8.0.orig/debian.master/d-i/modules/storage-core-modules +++ linux-4.8.0/debian.master/d-i/modules/storage-core-modules @@ -0,0 +1,12 @@ +# Core stacks +usb-storage ? + +# Block level +ata_piix ? +ata_generic ? + +# Loop modules +cryptoloop ? + +# Needs to be here for better cdrom initrd layout +isofs ? --- linux-4.8.0.orig/debian.master/d-i/modules/storage-core-modules.powerpc +++ linux-4.8.0/debian.master/d-i/modules/storage-core-modules.powerpc @@ -0,0 +1,13 @@ +# Core stacks +usb-storage ? + +# Block level + +# Loop modules +cryptoloop + +# Needs to be here for better cdrom initrd layout +isofs + +ps3stor_lib ? +ps3rom ? --- linux-4.8.0.orig/debian.master/d-i/modules/usb-modules +++ linux-4.8.0/debian.master/d-i/modules/usb-modules @@ -0,0 +1,14 @@ +ehci-hcd ? +isp116x-hcd ? +isp1760 ? +ohci-hcd ? +r8a66597-hcd ? +sl811_cs ? +sl811-hcd ? +u132-hcd ? +uhci-hcd ? +xhci-hcd ? +xhci-plat-hcd ? +ehci-tegra ? +ehci-msm ? +uas ? \ No newline at end of file --- linux-4.8.0.orig/debian.master/d-i/modules/virtio-modules +++ linux-4.8.0/debian.master/d-i/modules/virtio-modules @@ -0,0 +1,11 @@ +virtio_balloon ? +virtio_pci ? +virtio_ring ? +virtio-rng ? +virtio_scsi ? +hv_vmbus ? +hv_utils ? +hv_netvsc ? +hv_mouse ? +hv_storvsc ? +hv_balloon ? --- linux-4.8.0.orig/debian.master/d-i/modules/vlan-modules +++ linux-4.8.0/debian.master/d-i/modules/vlan-modules @@ -0,0 +1,3 @@ +slp ? +garp ? +8021q ? --- linux-4.8.0.orig/debian.master/d-i/package-list +++ linux-4.8.0/debian.master/d-i/package-list @@ -0,0 +1,208 @@ +Package: kernel-image +Provides: ext3-modules, ext4-modules +Provides_amd64: efi-modules, ext3-modules, ext4-modules +Provides_i386: efi-modules, ext3-modules, ext4-modules +Provides_ppc64el: ext3-modules, ext4-modules, fat-modules +Provides_s390x: ext3-modules, ext4-modules, ppp-modules +Description: kernel image and system map + +Package: dasd-modules +Depends: kernel-image, storage-core-modules +Priority: standard +Description: DASD storage support + +Package: dasd-extra-modules +Depends: dasd-modules +Priority: extra +Description: DASD storage support -- extras + +Package: fat-modules +Depends: kernel-image +Priority: standard +Description: FAT filesystem support + This includes Windows FAT and VFAT support. + +Package: fb-modules +Depends: kernel-image +Priority: standard +Description: Framebuffer modules + +Package: firewire-core-modules +Depends: kernel-image, storage-core-modules +Priority: standard +Description: Firewire (IEEE-1394) Support + +Package: floppy-modules +Depends: kernel-image +Priority: standard +Description: Floppy driver support + +Package: fs-core-modules +Depends: kernel-image +Priority: standard +Provides: ext2-modules, jfs-modules, reiserfs-modules, xfs-modules +Description: Base filesystem modules + This includes jfs, reiserfs and xfs. + +Package: fs-secondary-modules +Depends: kernel-image, fat-modules +Priority: standard +Provides: btrfs-modules, ntfs-modules, hfs-modules +Description: Extra filesystem modules + This includes support for Windows NTFS and MacOS HFS/HFSPlus + +Package: input-modules +Depends: kernel-image, usb-modules +Priority: standard +Description: Support for various input methods + +Package: irda-modules +Depends: kernel-image, nic-shared-modules +Priority: standard +Description: Support for Infrared protocols + +Package: md-modules +Depends: kernel-image +Priority: standard +Provides: crypto-dm-modules +Description: Multi-device support (raid, device-mapper, lvm) + +Package: nic-modules +Depends: kernel-image, nic-shared-modules, virtio-modules +Priority: standard +Description: Network interface support + +Package: nic-pcmcia-modules +Depends: kernel-image, nic-shared-modules, nic-modules +Priority: standard +Description: PCMCIA network interface support + +Package: nic-usb-modules +Depends: kernel-image, nic-shared-modules, usb-modules +Priority: standard +Description: USB network interface support + +Package: nic-shared-modules +Depends: kernel-image, crypto-modules +Priority: standard +Description: nic shared modules + This package contains modules which support nic modules + +Package: parport-modules +Depends: kernel-image +Priority: standard +Description: Parallel port support + +Package: pata-modules +Depends: kernel-image, storage-core-modules +Priority: standard +Description: PATA support modules + +Package: pcmcia-modules +Depends: kernel-image +Priority: standard +Description: PCMCIA Modules + +Package: pcmcia-storage-modules +Depends: kernel-image, scsi-modules +Priority: standard +Description: PCMCIA storage support + +Package: plip-modules +Depends: kernel-image, nic-shared-modules, parport-modules +Priority: standard +Description: PLIP (parallel port) networking support + +Package: ppp-modules +Depends: kernel-image, nic-shared-modules, serial-modules +Priority: standard +Description: PPP (serial port) networking support + +Package: sata-modules +Depends: kernel-image, storage-core-modules +Priority: standard +Description: SATA storage support + +Package: scsi-modules +Depends: kernel-image, storage-core-modules +Priority: standard +Description: SCSI storage support + +Package: serial-modules +Depends: kernel-image +Priority: standard +Description: Serial port support + +Package: storage-core-modules +Depends: kernel-image +Priority: standard +Provides: loop-modules +Description: Core storage support + Includes core SCSI, LibATA, USB-Storage. Also includes related block + devices for CD, Disk and Tape medium (and IDE Floppy). + +Package: usb-modules +Depends: kernel-image, storage-core-modules +Priority: standard +Description: Core USB support + +Package: nfs-modules +Priority: standard +Depends: kernel-image +Description: NFS filesystem drivers + Includes the NFS client driver, and supporting modules. + +Package: block-modules +Priority: standard +Provides: nbd-modules +Depends: kernel-image, storage-core-modules, parport-modules, virtio-modules +Description: Block storage devices + This package contains the block storage devices, including DAC960 and + paraide. + +Package: message-modules +Priority: standard +Depends: kernel-image, storage-core-modules, scsi-modules +Description: Fusion and i2o storage modules + This package containes the fusion and i2o storage modules. + +Package: crypto-modules +Priority: extra +Depends: kernel-image +Description: crypto modules + This package contains crypto modules. + +Package: virtio-modules +Priority: standard +Depends: kernel-image +Description: VirtIO Modules + Includes modules for VirtIO (virtual machine, generally kvm guests) + +Package: socket-modules +Depends: kernel-image +Priority: standard +Description: Unix socket support + +Package: mouse-modules +Depends: kernel-image, input-modules, usb-modules +Priority: extra +Description: Mouse support + This package contains mouse drivers for the Linux kernel. + +Package: vlan-modules +Depends: kernel-image +Priority: extra +Description: vlan modules + This package contains vlan (8021.Q) modules. + +Package: ipmi-modules +Depends: kernel-image +Priority: standard +Description: ipmi modules + +Package: multipath-modules +Depends: kernel-image +Priority: extra +Description: DM-Multipath support + This package contains modules for device-mapper multipath support. + --- linux-4.8.0.orig/debian.master/etc/getabis +++ linux-4.8.0/debian.master/etc/getabis @@ -0,0 +1,20 @@ +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" +) + +package_prefixes linux-image linux-image-extra + +getall armhf generic +getall armhf generic-lpae +getall amd64 generic lowlatency +getall i386 generic lowlatency +getall arm64 generic +getall ppc64el generic +getall s390x generic + +# Ports arches and flavours. +getall powerpc powerpc-smp generic powerpc-e500mc powerpc64-emb --- linux-4.8.0.orig/debian.master/etc/kernelconfig +++ linux-4.8.0/debian.master/etc/kernelconfig @@ -0,0 +1,7 @@ +if [ "$variant" = "ports" ]; then + archs="" + family='ports' +else + archs="amd64 i386 armhf arm64 ppc64el powerpc s390x" + family='ubuntu' +fi --- linux-4.8.0.orig/debian.master/info/OVERRIDES +++ linux-4.8.0/debian.master/info/OVERRIDES @@ -0,0 +1,153 @@ +CONFIG_RCU_KTHREAD_PRIO=0 +CONFIG_X86_AMD_PLATFORM_DEVICE=y +CONFIG_ZSMALLOC_STAT=N +CONFIG_LIVEPATCH=y +CONFIG_IEEE802154_SOCKET=m +CONFIG_NET_ACT_BPF=m +CONFIG_NET_ACT_CONNMARK=m +# CONFIG_BT_SELFTEST is not set +CONFIG_MTD_NAND_HISI504=m +CONFIG_IXGBE_VXLAN=y +CONFIG_TI_CPSW_ALE=m +CONFIG_MOUSE_PS2_FOCALTECH=y +CONFIG_INPUT_E3X0_BUTTON=m +CONFIG_INPUT_REGULATOR_HAPTIC=m +CONFIG_INPUT_TPS65218_PWRBUTTON=m +CONFIG_INPUT_AXP20X_PEK=m +# CONFIG_DEVMEM is not set +CONFIG_TCG_TIS_I2C_ST33=m +CONFIG_TCG_CRB=m +CONFIG_SPI_DLN2=m +CONFIG_CHARGER_MAX77693=m +CONFIG_BATTERY_GAUGE_LTC2941=m +CONFIG_MFD_DA9150=m +CONFIG_MFD_RT5033=m +CONFIG_REGULATOR_RT5033=m +CONFIG_USB_GSPCA_TOUPTEK=m +CONFIG_DUMMY_CONSOLE_COLUMNS=80 +CONFIG_DUMMY_CONSOLE_ROWS=25 +CONFIG_SND_USB_POD=m +CONFIG_SND_USB_PODHD=m +CONFIG_SND_USB_TONEPORT=m +CONFIG_SND_USB_VARIAX=m +CONFIG_SND_SOC_INTEL_CHT_BSW_RT5645_MACH=m +CONFIG_SND_SOC_XTFPGA_I2S=m +CONFIG_SND_SOC_STA32X=m +CONFIG_HID_BETOP_FF=m +CONFIG_USB_ISP1760=m +CONFIG_USB_CONFIGFS_F_UVC=y +CONFIG_LEDS_CLASS_FLASH=m +CONFIG_RTC_DRV_ABB5ZES3=m +CONFIG_RTC_DRV_DS1685_FAMILY=m +# CONFIG_RTC_DS1685_PROC_REGS is not set +# CONFIG_RTC_DS1685_SYSFS_REGS is not set +CONFIG_VIRTIO_PCI_LEGACY=y +CONFIG_FB_SM7XX=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_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_SSD1289=m +CONFIG_FB_TFT_SSD1306=m +CONFIG_FB_TFT_SSD1331=m +CONFIG_FB_TFT_SSD1351=m +CONFIG_FB_TFT_ST7735R=m +CONFIG_FB_TFT_TINYLCD=m +CONFIG_FB_TFT_TLS8204=m +CONFIG_FB_TFT_UC1701=m +CONFIG_FB_TFT_UPD161704=m +CONFIG_FB_TFT_WATTEROTT=m +CONFIG_FB_FLEX=m +CONFIG_FB_TFT_FBTFT_DEVICE=m +CONFIG_COMMON_CLK_CDCE706=m +CONFIG_ALTERA_MBOX=m +CONFIG_PM_DEVFREQ_EVENT=y +CONFIG_MMA9551=m +CONFIG_MMA9553=m +CONFIG_CC10001_ADC=m +CONFIG_QCOM_SPMI_VADC=m +CONFIG_IIO_SSP_SENSORHUB=m +CONFIG_KMX61=m +CONFIG_CM3232=m +CONFIG_JSA1212=m +CONFIG_SX9500=m +CONFIG_FS_DAX=y +# CONFIG_PSTORE_PMSG is not set +# CONFIG_F2FS_IO_TRACE is not set +CONFIG_NFSD_PNFS=y +CONFIG_GDB_SCRIPTS=y +# CONFIG_KASAN is not set +CONFIG_TEST_HEXDUMP=m +CONFIG_SECURITY_SMACK_NETFILTER=y +CONFIG_CRYPTO_USER_API_RNG=m +CONFIG_BLK_DEV_RAM_DAX=y +CONFIG_BATTERY_RT5033=m +CONFIG_IIO_SSP_SENSORS_COMMONS=m +# CONFIG_ZSMALLOC_STAT is not set +# CONFIG_X86_INTEL_QUARK is not set +# CONFIG_ZSMALLOC_STAT is not set +CONFIG_X86_SFI_CPUFREQ=m +# CONFIG_X86_INTEL_QUARK is not set +# CONFIG_ZSMALLOC_STAT is not set +CONFIG_X86_SFI_CPUFREQ=m +# CONFIG_ARCH_DIGICOLOR is not set +CONFIG_ARCH_HIP01=y +CONFIG_MACH_MT6589=y +CONFIG_MACH_MT6592=y +CONFIG_MACH_MT8127=y +CONFIG_MACH_MT8135=y +# CONFIG_ARCH_R8A73A4 is not set +# CONFIG_ZSMALLOC_STAT is not set +CONFIG_ARM_EXYNOS_CPUFREQ=m +# CONFIG_ARM_EXYNOS_CPU_FREQ_BOOST_SW is not set +CONFIG_OF_OVERLAY=y +CONFIG_HIP04_ETH=m +CONFIG_SERIAL_CONEXANT_DIGICOLOR=m +CONFIG_PINCTRL_MSM8916=m +CONFIG_POWER_RESET_RMOBILE=m +CONFIG_MEDIATEK_WATCHDOG=m +CONFIG_MFD_QCOM_RPM=m +CONFIG_REGULATOR_QCOM_RPM=m +CONFIG_NOUVEAU_PLATFORM_DRIVER=y +# CONFIG_DRM_EXYNOS7_DECON is not set +CONFIG_DRM_ATMEL_HLCDC=m +CONFIG_DISPLAY_ENCODER_OPA362=m +CONFIG_SND_SOC_TEGRA_RT5677=m +CONFIG_MMC_SDHCI_F_SDH30=m +CONFIG_RTC_DRV_ARMADA38X=m +CONFIG_RCAR_DMAC=m +CONFIG_CLK_QORIQ=m +CONFIG_IPQ_LCC_806X=m +CONFIG_MSM_LCC_8960=m +# CONFIG_IOMMU_IO_PGTABLE_LPAE is not set +CONFIG_ARM_TEGRA_DEVFREQ=m +# CONFIG_DEVFREQ_EVENT_EXYNOS_PPMU is not set +# CONFIG_ARCH_DIGICOLOR is not set +# CONFIG_ARCH_HIP01 is not set +CONFIG_MACH_MT6589=y +CONFIG_MACH_MT6592=y +CONFIG_MACH_MT8127=y +CONFIG_MACH_MT8135=y +# CONFIG_ARCH_R8A73A4 is not set +# CONFIG_CLK_QORIQ is not set +# CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST is not set +# CONFIG_ARCH_EXYNOS7 is not set +# CONFIG_ARCH_FSL_LS2085A is not set +# CONFIG_ARCH_TEGRA is not set +CONFIG_CAN_XILINXCAN=m +CONFIG_GPIO_XGENE_SB=m +# CONFIG_DEBUG_ALIGN_RODATA is not set +CONFIG_UIO_FSL_ELBC_GPCM=m +# CONFIG_UIO_FSL_ELBC_GPCM_NETX5152 is not set --- linux-4.8.0.orig/debian.master/info/REBASE +++ linux-4.8.0/debian.master/info/REBASE @@ -0,0 +1,47 @@ +Could not apply b551f2a4439d2179b3732c2a28277d9245dbb150... NEEDED UBUNTU: SAUCE: xgmac_mdio: Silence read errors + commit 1fcf77c87ad659a92e1dcfb883388cb43baeaab6 + +Could not apply 7cc84cf61b760725973c93b9c7e39d6f521bfe62... NEEDED Revert "net/mlx4_en: Fix bad use of dev_id" + commit ca9f9f703950e5cb300526549b4f1b0a6605a5c5 + +error: could not apply ff7e372... overlay: add backwards compatible overlayfs format support +Could not apply 3fd5011f880877a583b1ccefd06ad481452cdef7... NEEDED overlay: add backwards compatible overlayfs format support (fixes) + XXX: needed + +Could not apply 98c64db6cffd59a894d4a4492aea761fa6e6c51a... NEEDED UBUNTU: SAUCE: (no-up) apparmor: Sync to apparmor3 - RC1 snapshot +Could not apply 892b8b7cfb14b9bdfbc9ac2fee8e751a67707542... NEEDED UBUNTU: SAUCE: Revert: fix: only allow a single threaded process to ... +Could not apply e1b6a4b88bdb9cf858e068d0e3a6b7449d648513... NEEDED UBUNTU: SAUCE: (no-up) fix: bad unix_addr_fs macro +Could not apply 9defa41f9126d026cd6a1ead03e6443e98e97108... NEEDED UBUNTU: apparmor -- follow change to this_cpu_ptr +Could not apply 36ca906c4d4cf34bb5a750d1dbd3e4abe36a4684... NEEDED UBUNTU: SAUCE: (no-up): apparmor: fix mediation of fs unix sockets + XXX: needed (apparmor) + PORTED AND REAPPLIED + +Could not apply 4594c0a5b120fc92fb141c1cf9eef3e8d665e4e6... NEEDED UBUNTU: SAUCE: storvsc: force SPC-3 compliance on win8 and win8 r2 hosts + commit b0a93d96b2814c725161f91a4e35d0c29ec0f95b + +Could not apply d8db9694361b258427eab1846b211be332c4a1f9... NEEDED UBUNTU: SAUCE: efi: Expose underlying UEFI firmware platform size to userland + commit 2859dff97e54db4795b8b7d9606cb8efcec722ff + +Could not apply fe8ce4f67a26106dab3193b3515fe865e136ab4a... NEEDED UBUNTU: SAUCE: arm64 -- psci tell the compiler which registers we are needing values in + commit f5e0a12ca2d939e47995f73428d9bf1ad372b289 + +Could not apply e9f926b44c895d39152d3f816ce9ff37780f77cb... NEEDED xen: correct bug in p2m list initialization + commit b8f05c8803fce899d79ca66f8d7f348cf15fb40e + +Could not apply 7ec323466d993094545e140cc44559cb1cccbd14... NEEDED tpm/ibmvtpm: Additional LE support for tpm_ibmvtpm_send + commit 62dfd912ab3b5405b6fe72d0135c37e9648071f1 + +Could not apply 6b610659f8b313644c0012a511c6381e9fe7d881... NEEDED net/mlx4_core: Maintain a persistent memory for mlx4 device + commit 872bf2fb69d90e3619befee842fc26db39d8e475 + +Could not apply 7e9a6608ca11948dd0996b6db99e498ca043a0cd... NEEDED tools/power turbostat: support additional Broadwell model + commit 48a0631c891ab581cc010b44655ad49ff6eb3325 + +Could not apply 9a9ab8a2348c722405964a0c785c4b2a613d8782... NEEDED KVM: Add generic support for dirty page logging + commit ba0513b5b8ffbcb0cc89e2f172c0bcb70497ba2e + +Could not apply 9a9ab8a2348c722405964a0c785c4b2a613d8782... NEEDED KVM: Add generic support for dirty page logging + commit 3b0f1d01e501792d8d89ab4371bc9e8cd2a10032 + +Could not apply 0335b4283d02dcd6e7d6b54e175801099873852e... NEEDED KVM: VMX: Add PML support in VMX + commit 843e4330573cc5261ae260ce0b83dc570d8cdc05 --- linux-4.8.0.orig/debian.master/info/RECONCILE +++ linux-4.8.0/debian.master/info/RECONCILE @@ -0,0 +1,506 @@ +=== total: 505 ignored: 55 (upstreamed: 49 reverted: 6) needed: 450 (debian: 298 ubuntu: 14 sauce: 138) === +3377e17d83c8ce29dc0128c9785043b630e283f3 IGNORE:IN:7486341a98f26857f383aec88ffa10950087c3a1 x86/platform, acpi: Bypass legacy PIC and PIT in ACPI hardware reduced mode +e826d2f5ee447384828473c249ef38c08b72ffc1 IGNORE:IN:d474a4d365aaa5c7aabcf11a74ea43aa23f6f2e9 powercap / RAPL: handle domains with different energy units +27ba48b7bec5dc0c9b665b334bbea30fdb44160a NEEDED:debian UBUNTU: [Config] add nvme to linux-virtual as this is now used in GCE to expose disks +0788d51a2a8d794eb1c8394154028cb593be7ee7 NEEDED:debian UBUNTU: Ubuntu-3.19.0-10.10 +eb97881b6320d127b354b8cb03937504683a7f18 NEEDED HID: multitouch: Add support for button type usage +554fc470460c6c4d94f202a8a73f24491bc9f0f7 NEEDED HID: multitouch: add support of clickpads +e098a93f8c11db119261d5c4791d4f9c62c666e8 NEEDED:debian UBUNTU: fix up changelog for rebase +c0b0bccbe70c7d602c114871d1e1ce42c478f6dc NEEDED:debian UBUNTU: rebase to v3.19.2 +9e086fc3fb3d7f09d4dacfccab0784812ef78764 NEEDED:debian UBUNTU: [Config] CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y +0335b4283d02dcd6e7d6b54e175801099873852e NEEDED KVM: VMX: Add PML support in VMX +9fa8950638aac15e1273204c9c76447524236345 IGNORE:IN:88178fd4f7187bbe290c5d373fd44aabec891934 KVM: x86: Add new dirty logging kvm_x86_ops for PML +540b4deed1133b94ba9665ca1c5bdf692fc32c5b IGNORE:IN:1c91cad42366ce0799ca17e7ad6995418741d012 KVM: x86: Change parameter of kvm_mmu_slot_remove_write_access +9cd0789cd13fe6ceb057b6ee0a9a8089e3d085d0 IGNORE:IN:9b51a63024bd759f97a12f50907b8af23b065b36 KVM: MMU: Explicitly set D-bit for writable spte. +d06b40dc692080da03fd5fa3f19aa6c3d201cb38 IGNORE:IN:f4b4b1808690c37c7c703d43789c1988c5e7fdeb KVM: MMU: Add mmu help functions to support PML +ec2347761088c13ec640886cb492e4d4f8aee759 NEEDED KVM: Rename kvm_arch_mmu_write_protect_pt_masked to be more generic for log dirty +7b476333c9fd20d2be03eba64339df96a6d326d6 IGNORE:IN:e108ff2f8033a417ee3e517d9f8730f665646076 KVM: x86: switch to kvm_get_dirty_log_protect +9a9ab8a2348c722405964a0c785c4b2a613d8782 NEEDED KVM: Add generic support for dirty page logging +baddf7f579e3094b7b32c119fae9bb1b4ac557c5 IGNORE:IN:d91ffee9ec633c6523ef1ea39c36ace578760258 Optimize TLB flush in kvm_mmu_slot_remove_write_access. +e824a2cfa15c76aefc09dcd0157ee31a565b2cb3 IGNORE:IN:7e71a59b250330fd52ee7293eb9d31952f16682e KVM: x86: flush TLB when D bit is manually changed. +7e9a6608ca11948dd0996b6db99e498ca043a0cd NEEDED tools/power turbostat: support additional Broadwell model +827aac896a47cdfbc19679d4e14dc269fd0ac846 IGNORE:IN:bea57077e44ec9c1e6d3a3c142c8a3c0289e290d intel_idle: support additional Broadwell model +3057d6279a10157e6bd1ab7148ef4fc2ccb14d6d IGNORE:IN:3df76a9dcc74d5f012b94ea01ed6e7aaf8362c5a powerpc/pseries: Fix endian problems with LE migration +dba28dfc35d65493b65d7d4bf382e09297ef9bb4 IGNORE:IN:4ad04e5987115ece5fa8a0cf1dc72fcd4707e33e powerpc/iommu: Remove IOMMU device references via bus notifier +f9f283435213397957099d1a66a3a0d5bede3528 IGNORE:IN:5c65670c9bfa3be1234d29f36b742897c0360ef3 powerpc/perf/hv-24x7: Document sysfs event description entries +179039e2ee295381d24a1832349100569ca96acb IGNORE:IN:97bf2640184f4fb2b2bf2c58ae3112768a6174fa powerpc/perf/hv-gpci: add the remaining gpci requests +eb14eac49af21beac96d0933103b0e329ed4b2be IGNORE:IN:9e9f60108423f18a99c9cc93ef7f23490ecc709b powerpc/perf/{hv-gpci, hv-common}: generate requests with counters annotated +23b8dd8e12de9f1268a1ecb18a1ec9d157444cfa IGNORE:IN:5c5cd7b502595f6b90509b8aa4bba6f81b69315c powerpc/perf/hv-24x7: parse catalog and populate sysfs with events +0a72cae7a37a649fb997835c99a93711254210c9 IGNORE:IN:e08e52824e41fb42e46593450d378ad1b33caedb perf: define EVENT_DEFINE_RANGE_FORMAT_LITE helper +06aa2a9afd745edcb3c3b80eec10c0cf6795cfc0 IGNORE:IN:f0405b816149665393cc62b9e5082fc2d79714df perf: add PMU_EVENT_ATTR_STRING() helper +e38b3e25ccd090c3be55addc72746ffea85e26fd IGNORE:IN:fd979c0132074856975a6e79bc2226b99435ec5b perf: provide sysfs_show for struct perf_pmu_events_attr +0512d012693ab7696fc390aa58e38623f774e8f0 IGNORE:IN:f9ab9c196d015f3bd8f6bd1c30785c5a49542323 perf tools: Document parameterized and symbolic events +914c3ae025813d3868fddac5e7f63eef89a1f77c IGNORE:IN:98a43e0e9917059da32db89829b0eb95453a11ee perf Documentation: Add event parameters +59c3fddc383e9d02e6ae04cbd9247d626f6acc90 IGNORE:IN:aaea36174991ff39c7a18044660db86527100c55 perf tools: Extend format_alias() to include event parameters +7ee609fce3a1aa657c3613b985dc62f1a45acaf0 IGNORE:IN:688d4dfcdd624192cbf03c08402e444d1d11f294 perf tools: Support parsing parameterized events +1d74db86f07ee680a466ae02b460e164aa58a38a NEEDED:debian UBUNTU: [Packaging] generate live watchdog blacklists +6b5949d8cf32e576a5892472a7826545d94292a4 NEEDED:debian UBUNTU: Start new release +a705b4e4855e7b484ed11831941fb7093a12d660 IGNORE:IN:285994a62c80f1d72c6924282bcb59608098d5ec arm64: Invalidate the TLB corresponding to intermediate page table levels +fef4b02b6f20e9cbb50522916a4fd079ed821c07 IGNORE:IN:1b0eb5bc241354aa854671fdf02132d2d1452bdf thinkpad_acpi: support new BIOS version string pattern +572a605fa5352dcb8a8cc982bbdb998f752aea07 NEEDED:debian UBUNTU: [Config] allow dracult to support initramfs as well +727f017959487a34dd3c14659306b869545348a5 NEEDED:debian UBUNTU: [Packaging] control -- make element ordering deterministic +6a501ec1a8e49e7b9869fed950bd1642dd1b68af NEEDED:debian UBUNTU: Ubuntu-3.19.0-9.9 +57165ece4262217e644bc0577bf9ccd5e452f2da NEEDED UBUNTU: SAUCE: IB/core: Prevent integer overflow in ib_umem_get address arithmetic +4815357c48175b96d4bc67dfbd6c4fb30bb4d714 NEEDED:debian UBUNTU: Start new release +03247c64299523710c3935227d1a7e28aeb34a97 NEEDED:debian UBUNTU: Ubuntu-3.19.0-8.8 +36ca906c4d4cf34bb5a750d1dbd3e4abe36a4684 NEEDED UBUNTU: SAUCE: (no-up): apparmor: fix mediation of fs unix sockets +c34820ce1a87b536c2da84daf892e884de7f3067 IGNORE:IN:d0af71a3573f1217b140c60b66f1a9b335fb058b tg3: Hold tp->lock before calling tg3_halt() from tg3_init_one() +420ed2b6622aa62d962e770422f887e38ede78ac IGNORE:IN:0cd9302734111abc0b5912b695336f2ee63cb22b net/mlx4_core: Reset flow activation upon SRIOV fatal command cases +441e06e149e10acf3fa4497ae041f79f75a97c23 IGNORE:IN:55ad359225b2232b9b8f04a0dfa169bd3a7d86d2 net/mlx4_core: Enable device recovery flow with SRIOV +6aa4bcac4501cbf723abbc1b49f22b113c7323f9 IGNORE:IN:2ba5fbd62b2534335f4e3b844ecc7860115525a3 net/mlx4_core: Handle AER flow properly +a1b81382798563ef9092cad425cccc1e2fc2626e IGNORE:IN:c69453e294c9f16da977b68e658a8028b854c209 net/mlx4_core: Manage interface state for Reset flow cases +da98e7467248aae377055c75b6380aa5f3f075ec IGNORE:IN:f5aef5aa35063f2b45c3605871cd525d0cb7fb7a net/mlx4_core: Activate reset flow upon fatal command cases +9a583f4441d28f7b034a2eaaa3aeacdddc0ec65a IGNORE:IN:f6bc11e42646e661e699a5593cbd1e9dba7191d0 net/mlx4_core: Enhance the catas flow to support device reset +5e52f6741b9fe61696f882effa83021eb013bb2e IGNORE:IN:ad9a0bf08ffbf32b8f292c3bb78ca0f24bb8f6b2 net/mlx4_core: Refactor the catas flow to work per device +efee37c90fa0d7f1704ea59bcc47b8590b5cf7ca IGNORE:IN:dd0eefe3abbf47442db296bf68f27eb2860c1cdf net/mlx4_core: Set device configuration data to be persistent across reset +6b610659f8b313644c0012a511c6381e9fe7d881 NEEDED net/mlx4_core: Maintain a persistent memory for mlx4 device +7ec323466d993094545e140cc44559cb1cccbd14 NEEDED tpm/ibmvtpm: Additional LE support for tpm_ibmvtpm_send +dd82e0b3366c0583f66daa1e6fd229e24468d615 IGNORE:IN:de61390cb3e03186f85997fe08a11dcb9f7a01a3 net/mlx5_core: Fix configuration of log_uar_page_sz +aa391baed594091165eefe21e759f0604dd66c0a NEEDED:debian UBUNTU: rebase to stable v3.19.1 +7eaea45f7109a1e769d5379352e40b13e1b5d6d6 NEEDED:debian UBUNTU: Start new release +a1ab7786a77235d3fe40ef93e239d26ad095f8c6 NEEDED:ubuntu-driver UBUNTU: ubuntu: vbox -- elide the new symlinks and reconstruct on clean: +e9f926b44c895d39152d3f816ce9ff37780f77cb NEEDED xen: correct bug in p2m list initialization +e253864af74e9fd0dbb79c6a1b9ab117d335a006 NEEDED:debian UBUNTU: Ubuntu-3.19.0-7.7 +da9ed9fbcffe22ad779cd0f9e63cae8125870f4c NEEDED:debian UBUNTU: Start new release +a3efc506086bfc1770015e3a1545d708464dccbc IGNORE:IN:1b28f170d99170a1fdd22818a9610a73196b391d powerpc/eeh: Allow to set maximal frozen times +d2616b0dfec986efcea32f5a7907bb67334fee40 IGNORE:IN:432227e9077eec13b3caf3aec6087f94a2f4327f powerpc/eeh: Introduce flag EEH_PE_REMOVED +0d7adce37648ab16e146c07998c86f929933ced2 IGNORE:IN:3d5be0392f52489b7572903d83f1f267f26e6b69 cxl: Fail AFU initialisation if an invalid configuration record is found +4406598cf9db984056879f543a1dbd0580589fc5 IGNORE:IN:b087e6190ddcd9ae4e8ff2c788d2b32f193e946b cxl: Export optional AFU configuration record in sysfs +9810a8574ecb496bdb6805df46ef040889279489 IGNORE:IN:62fa19d4b4fd781ad37c9155c6332f28a9e97a2c cxl: Add ability to reset the card +e0479a12aa4aceb678db96257318102e165127dc IGNORE:IN:1212aa1c8c9ca34642f7737e1edaa96c9ce3d7dd cxl: Enable CAPP recovery +047163114be9cf5d4fd9ad368b6c0f8f18c177d8 IGNORE:IN:95bc11bcd1428afdb48400ec84dc6d5a83926138 cxl: Add image control to sysfs +211238b75962ee2b4ddcb1648b94fd2d11464b64 IGNORE:IN:49fd644c3b0014fb80c2b1db7d8c86a75c4c6b1f cxl: Update CXL ABI documentation +ef2cf73ffe825cb6e5350972edb6ef989f7c019b IGNORE:IN:9bcf28cdb28e6a793c4e59f0a42c66fe241993a8 cxl: Add tracepoints +bb463fd6632c70d258c46e08a49dbd8ed90b6662 IGNORE:IN:d3383aaae9800b9e13e25b71f70dff3814d10373 cxl: remove redundant increment of hwirq +50419f397e513bb53fd3a43953ddf97e344b1f9e IGNORE:IN:db7933f392ac4d9719d41d3f203a5f6a1c40f300 cxl: Disable SPAP register when freeing SPA +1a4659245b032feb290aa890a831fe6db8cce677 IGNORE:IN:d6a6af2c181400aade59417e698c7cd9bec8804e cxl: Disable AFU debug flag +9e024f9abf9a7bb11c8812ad8f4baac2542b41a4 IGNORE:IN:13da704682471669685ccc3fe111fd6c0127b2eb cxl: Early return from cxl_handle_fault for a shut down context +b745d4388fd7f150d8c27239a107acc4769c3a55 IGNORE:IN:456295e284beb7b61a55ead9500d30f94ab06d52 cxl: Fix leaking interrupts if attach process fails +aa79645da2c295c7a54a38d727ba5424c56e8c78 NEEDED:debian UBUNTU: Ubuntu-3.19.0-6.6 +2506464009b6efd8886841fd42aa35dd276e1ae2 NEEDED:ubuntu-driver UBUNTU: ubuntu: vbox -- update to 4.3.22-dfsg-1 +0af35a1df1616ee3af688b8f6811ea980b4ba105 NEEDED:debian UBUNTU: [Config] move vbox modules into linux-image +591572a04b2929501bfd944f0e1b5dc918d905c2 NEEDED:debian UBUNTU: Disable module check for I2C_CHARDEV=y config change +ded3e335312faf2066f1a293bc34612f20c7075a NEEDED:debian UBUNTU: [Config] I2C_CHARDEV=y +6d41878ad435f83f107290bd47da1cae88a5960e NEEDED:debian UBUNTU: Start new release +af9f67abe58ef01a0e38809dbf9dc9b579d6f729 NEEDED:debian UBUNTU: systemd -- fix hyper-v units to be non-forking +e06b795ba62bfe38b378a77df6aa1f4e4b4be003 NEEDED:debian UBUNTU: SAUCE: DEP8 test to run our regression tests +a651bfbc176a850449052a44a8f99cb298cb49f0 NEEDED:debian UBUNTU: Ubuntu-3.19.0-5.5 +65c15025855e39b160ced2bfd9cee0233e9eb5bd NEEDED:debian UBUNTU: rebase to v3.19 final +00b14848d0ba3d47a244bbe142f4aec6abc6ad8a NEEDED:debian UBUNTU: Start new release +e3963bddd383dbb567b6e9a3b6d1229b335be7c9 NEEDED:ubuntu-driver UBUNTU: ubuntu: vbox -- update to 4.3.20-dfsg-1ubuntu1 +5dde1b4a9a0dcbff893ba69c97bc8e9af5aeced4 NEEDED:ubuntu-driver UBUNTU: ubuntu: (no-squash) vbox -- infrastructure and updater +4ac4ed6aaaabccd3113d12d2aae4227eeed2a94d NEEDED UBUNTU: SAUCE: ext4: disable ext4_punch_hole for indirect filesystems +20f73500aa3c6973b662d434ea994a067d2732ce NEEDED:debian UBUNTU: [Config] Add ibmvfc to d-i +27016d13d7def2d932edabe10cda08551eb76af4 NEEDED:debian UBUNTU: [Config] CONFIG_FA_DUMP=y +043037877a7de2b8e6b2dff0420efe45ecff2ff5 NEEDED:debian UBUNTU: Ubuntu-3.19.0-4.4 +5dacd4f7dba5435e1b960bdc491293c82ee3ec2f NEEDED:debian UBUNTU: updateconfigs following rebase to v3.19-rc7 +9eade02480702c9670f2bac1bd55d38545a312cf NEEDED:debian UBUNTU: rebase to v3.19-rc7 +28f33eab58fbe7473e6ef7273c82f6b46108bd19 NEEDED:debian UBUNTU: Start new release +113ccff71d64d15da62001f597421ead251c70a8 NEEDED:debian UBUNTU: hyper-v -- fix comment handing in /etc/network/interfaces +2df9364c2056a3043e10cd5a62ce9706b2f7d1d1 NEEDED UBUNTU: SAUCE: rtsx_usb_ms: Use msleep_interruptible() in polling loop +88065e99f0f6bcf3dc4631a2ceec2f2708af8cef NEEDED:debian UBUNTU: [Config] apply Kernel hacking >> Tracers config defaults +0d569c89d78dfe8145fbeebe5249f794a9d0f552 NEEDED:debian UBUNTU: Ubuntu-3.19.0-3.3 +c0a8e98a3847348d78a54c944d202137d068b94d NEEDED:debian UBUNTU: annotations -- pull in updated annotations +25a4fc67cec440d3bb4bc7705449df08e6c51858 NEEDED:debian UBUNTU: [Config] updateconfigs following rebase to v3.19-rc6 +7c37badc321d561bbd2f178669119c919ff20522 NEEDED:debian UBUNTU: rebase to v3.19-rc6 +4b617281c437581c70f6cf2334398bb1ab1c0340 NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Mailbox Hardware Support config defaults +32d6900d5dc2578bdb1627edfeed21e631a31e60 NEEDED:debian UBUNTU: [Config] apply General setup >> CPU/Task time and stats accounting >> Cputime accounting config defaults +cd6b5ebc39722a4e376e47f1d48a0e46286ff308 NEEDED:debian UBUNTU: [Config] apply Device Drivers >> SCSI device support >> SCSI device support >> SCSI low-level drivers config defaults +c8a2a8aae37f1474453bea69acbf95c396227e31 NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Real Time Clock config defaults +a74fa91f9105e69fd2b101d914ab503ef67dd227 NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Network device support >> Wireless LAN >> Intel Wireless WiFi Next Gen AGN - Wireless-N/Advanced-N/Ultimate-N (iwlwifi) config defaults +fe8ce4f67a26106dab3193b3515fe865e136ab4a NEEDED UBUNTU: SAUCE: arm64 -- psci tell the compiler which registers we are needing values in +2f02ebe61ad44b1175700cc78a3ccd94bb07ff06 NEEDED:debian UBUNTU: [Packaging] force "dpkg-source -I -i" behavior +5a6bf13232cd325e73e6ebae516cac9b0da4421c NEEDED:debian UBUNTU: [Config] apply General setup >> Timers subsystem >> Timer tick handling config defaults +d3d0add00f0801e6823242d1c7bd41c990eb05bb NEEDED:debian UBUNTU: [Config] apply Kernel hacking >> Kernel debugging config defaults +3b255c82446a97f59e59adb3bd320df4550c1381 NEEDED:debian UBUNTU: [Config] apply Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> IPv6: Netfilter Configuration >> IPv6 NAT config defaults +3549c0af6717159aa8a3b77864dde9b341476b1b NEEDED:debian UBUNTU: [Config] apply Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> IP: Netfilter Configuration >> IPv4 NAT config defaults +76fb94fa938323cea755f08923c1699f857849a4 NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Pulse-Width Modulation (PWM) Support config defaults +91aa3e3c5f375fcda9802e0bf30743388db97809 NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Input device support >> Generic input layer (needed for keyboard, mouse, ...) >> Mice config defaults +7e28f1d5b0f539c2f315248d638d322cc1bed204 NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Input device support >> Generic input layer (needed for keyboard, mouse, ...) >> Keyboards config defaults +83d976c317bc7939457ba2b194ca9b20942b08e8 NEEDED:debian UBUNTU: [Config] apply Networking support >> Wireless >> Generic IEEE 802.11 Networking Stack (mac80211) config defaults +a6ff3e7b7835019303b4df16c7d34e83f7bc432f NEEDED:debian UBUNTU: [Config] apply Networking support >> Networking options >> TCP/IP networking config defaults +fff6ce5d257e3a55676ab2f32f7174648b48bd4d NEEDED:debian UBUNTU: [Config] apply Networking support >> Networking options >> QoS and/or fair queueing >> Actions config defaults +3db2706fa00266f41b26ac6156b92cc92013c4b6 NEEDED:debian UBUNTU: [Config] apply Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> Core Netfilter Configuration >> Netfilter nf_tables support config defaults +d379025cb43c73ba0ba6b1e9ae7030ef3706acbb NEEDED:debian UBUNTU: [Config] apply Networking support >> NFC subsystem support >> Near Field Communication (NFC) devices config defaults +d682b0866fdab7676efc02d7aca31ffba5af5ba9 NEEDED:debian UBUNTU: [Config] apply Device Drivers >> USB support >> USB Gadget Support >> USB Peripheral Controller config defaults +cc6d21036b39e6747f35992743390b46f490ef71 NEEDED:debian UBUNTU: [Config] apply Device Drivers >> USB support >> USB Gadget Support >> USB Gadget Drivers >> USB functions configurable through configfs config defaults +f38ce7164ddb54b46a19ed6e3640d5e21f968aff NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Staging drivers >> Media staging drivers config defaults +f2e32d3fe36a5af721325ad09244872f55783932 NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Staging drivers >> Lustre file system client support config defaults +3fa3a6e3f9bc72ccf4050d5278d82c4f18fa614c NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> HD-Audio config defaults +7483bb4ddb3800421bf67db6f57e9a2ad68aede9 NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> FireWire sound devices config defaults +bb035568140e5726260cbffc40900186503e066e NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support config defaults +5857964914cdeedb945ef65490afa1353f0e7d06 NEEDED:debian UBUNTU: [Config] apply Device Drivers >> SPI support config defaults +67356ed062d29becaaf27108aa8737fee13cab69 NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Pin controllers config defaults +fdab45aa9ebd2c87af7ad88b62c557a9ddaf06eb NEEDED:debian UBUNTU: [Config] apply Device Drivers >> PHY Subsystem config defaults +be26a7664fe53b25132a1570e7cb572cdfaf8f03 NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Network device support >> Wireless LAN >> Intel PRO/Wireless 2200BG and 2915ABG Network Connection config defaults +664ad4582ac5f69f585defe21f75a44efdc5def9 NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Network device support >> Wireless LAN >> Hermes chipset 802.11b support (Orinoco/Prism2/Symbol) config defaults +7abff1caa5b128105a095b294a4084d58eb4208a NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Network device support >> Network core driver support config defaults +b85516a587125164e4fb6f40a937687859484278 NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Network device support >> Distributed Switch Architecture drivers config defaults +6eeec6ead3c181f9d305a5139a2af09ab02d25e2 NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Multimedia support >> Remote Controller devices config defaults +9bf5422ec87618ea0a9c158e2ee3ea763769635e NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Multimedia support >> Media PCI Adapters config defaults +0062486c5f49ca81ce44c08483793cd28bd55d4e NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Multimedia support >> Cameras/video grabbers support >> Media test drivers config defaults +a3cab812b888b76a1c6188d51837461f82579107 NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Multifunction device drivers config defaults +efce9b94895b00d4246281051a6f57abd556b593 NEEDED:debian UBUNTU: [Config] apply Device Drivers >> MMC/SD/SDIO card support config defaults +ba5f91a1915102862b13b8c73223662536b6ff51 NEEDED:debian UBUNTU: [Config] apply Device Drivers >> LED Support >> LED Class Support config defaults +5a655a22455c44e92b820d86de5f1eff080d44a1 NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Input device support >> Generic input layer (needed for keyboard, mouse, ...) >> Touchscreens config defaults +2dc2403265124b82af4a57da628cb21bafbab54a NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Input device support >> Generic input layer (needed for keyboard, mouse, ...) >> Mice config defaults +9fe17395d411adbcfb323c915f84ea85f4c48ce8 NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Industrial I/O support >> Pressure sensors config defaults +5e7b068f32db503c6eb371a23ae2c2a16749578f NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Industrial I/O support >> Humidity sensors config defaults +20e5409f0457d28d2abca5ef7c1630dc22d84813 NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Industrial I/O support >> Analog to digital converters config defaults +7ae44769248078c8d1ba362fcf3de16b8ab681ab NEEDED:debian UBUNTU: [Config] apply Device Drivers >> I2C support >> I2C support >> I2C Hardware Bus support config defaults +581c6acbf122138da27108c2a13098d6815349df NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Hardware Monitoring support config defaults +2e33cbcfe6451f61ae18aeec37fe1753d0a52cc2 NEEDED:debian UBUNTU: [Config] apply Device Drivers >> HID support >> HID bus support >> Special HID drivers config defaults +02139708b965f07a499593f9036750c30fbe6454 NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices config defaults +a86fe195e825e37e694a5960f7af6ddfbf9f3673 NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Graphics support >> Direct Rendering Manager >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) config defaults +0d10ef98e5bb7c1fb144139e54e13d0051d6f5e4 NEEDED:debian UBUNTU: [Config] apply Device Drivers >> GPIO Support config defaults +0c423ad9c578e7596de1409cbfd2db4d5b988cd2 NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Character devices >> Serial drivers config defaults +58007d9583eaf94442bcaf472d4e69c8dc24cf61 NEEDED:debian UBUNTU: [Config] apply Device Drivers >> Character devices >> IPMI top-level message handler config defaults +429394f5a6c855973e6027edbf8811d94f2e54d7 NEEDED:debian UBUNTU: [Config] Disable CONFIG_USB_OTG +7676b5cebdfe24bebfe402c85ce7d232f76fe756 NEEDED:debian UBUNTU: [Config] CONFIG_DEBUG_INFO_SPLIT=n +66857d56aa24e2eff079df005f0d189060d68645 NEEDED:debian UBUNTU: [Config] annotations: clean up CONFIG_FW_LOADER_USER_HELPER_FALLBACK and associates +17fde7fa97d8da20c499e37ff9615895623adb8e NEEDED:debian UBUNTU: annotations: add new v3.19-rc5 options (and some returning options) +3fd5011f880877a583b1ccefd06ad481452cdef7 NEEDED overlay: add backwards compatible overlayfs format support (fixes) +7c3d7c6d8df09db4b2f6be809434232021d9305f NEEDED:debian UBUNTU: [Packaging] hyper-v -- daemons now require -n for non-forking startup +e3defbff069c0d1afa9c30ecdb2cfbd3776c16eb NEEDED:debian UBUNTU: [Config] enforce CONFIG_FHANDLE=y +b4d80bddacd59441e76e4f4b750154f1a95736a6 NEEDED:debian UBUNTU: annotations -- reorder pass +ed8c877b843aeaa7fe38947d0bdbf15ef9405f27 NEEDED:debian UBUNTU: [Config] updateconfigs following rebase to v3.19-rc5 +9dd6f68702869ea7ee4219aeeba148bd11e9e211 NEEDED:debian UBUNTU: [Config] add modules removed due to tighter dependencies +c3d1971989ed55f56aaa0bd882611d8c228cbc05 NEEDED:debian UBUNTU: rebase to v3.19-rc5 +07d995fd618003c3e4663f2e58b73318fa442c32 NEEDED:debian UBUNTU: Start new release +610b443e33e236074875db94a42ed8d8190951f6 NEEDED:debian UBUNTU: [Packaging] enforce -- drop empty enforce file +1dd97225d642eaa32460873d90a53c58aa11e243 NEEDED:debian UBUNTU: [Packaging] config-check -- drop support for enforce file +129becf2ef8faffe61100ef5f6435d3bd396265c NEEDED:debian UBUNTU: [Config] annotations -- switch to ENFORCED annotations +561c8f3a1941d2895a150b5780def64b5b8fa5b4 NEEDED:debian UBUNTU: [Packaging] config-check -- add support for enforced annotations +33ea0bf33a842aa5d8f826f3be477a7b1fd7b8fa NEEDED:debian UBUNTU: annotations -- full v3.17/v3.18/v3.19 review pass +eee1ca9895f0a19241010cea3ef7b5c87bbc3cc9 NEEDED:debian UBUNTU: annotations -- reorder to vivid menu layout +57ccd817353c91a6b5ed620db15e86315251e1a9 NEEDED:debian UBUNTU: annotations -- utopic base +5a62a2f9705b70bdf6a1a0870d15903016411c5c NEEDED UBUNTU: [Debian] arm64 -- build ubuntu drivers +a58e808c17a895c7c3698bee63172114790a6d88 NEEDED:debian UBUNTU: Ubuntu-3.19.0-2.2 +d8db9694361b258427eab1846b211be332c4a1f9 NEEDED UBUNTU: SAUCE: efi: Expose underlying UEFI firmware platform size to userland +c0b5915ac61b6c49e27fecf6ba8f62cc2d17297b NEEDED:debian UBUNTU: add missing buglink in unreleased versions +80ac0a8626c33921522e59e258a0bcee0fac6620 NEEDED:debian UBUNTU: [Config] switch on "all" dtbs +f5c5c728204613d98677cecfa499451a43c316d9 NEEDED:debian UBUNTU: [Packaging] install all dtb files +4594c0a5b120fc92fb141c1cf9eef3e8d665e4e6 NEEDED UBUNTU: SAUCE: storvsc: force SPC-3 compliance on win8 and win8 r2 hosts +2db975f991de109cb558a88b821aee4ab32294b9 NEEDED:debian UBUNTU: [Config] updateconfigs following rebase to v3.19-rc4 +efda5ea3e72181c54313960c4eb623cb9bf70184 NEEDED:debian UBUNTU: rebase to v3.19-rc4 +3ceca000c3f419e4ea82d5cc89b17788311e066a NEEDED:debian UBUNTU: [Config] Enable CONFIG_N_GSM as module. +6d976353cda7b65cd3bccc025fd676a2b60be71e NEEDED UBUNTU: SAUCE: drivers/rtc/interface.c: ignore exprired times when enqueing new timers +c2b14cbdd9db02c941b1a201ea7de7cbefd042a5 NEEDED:debian UBUNTU: Start new release +7e4ee90affaec9dfd96c8c527e410e37e60e7cdd NEEDED:debian UBUNTU: Ubuntu-3.19.0-1.1 +07d5adb10aa7995e36b1c3fb063b1db97e0744bb NEEDED:debian UBUNTU: [Config] follow move of arm64 dts' into vendor directories +c73a0ec29f0772426f60c0e5e4c660a5f49c2963 NEEDED:debian UBUNTU: [Packaging] handle dts directories +c8f77b2dd48cc6a6bcce49411b546aefa08c799c NEEDED:debian UBUNTU: [Packaging] uploadnum should be the remainder of the version +50a8041a37110aa8867a493b624aa6bf409acb93 NEEDED:debian UBUNTU: [Configs] updateconfigs following rebase to v3.19-rc3 +afa910e643c7b399c3cdd8312d84b65d1c64d197 NEEDED:debian UBUNTU: rebase to v3.19-rc3 +732f3e48b565abe6e7fd7f489edb3bc88e68581c NEEDED:debian UBUNTU: v3.19 series start +ea0064b7d9878d01ec4653e528c9b998b4ae10b5 NEEDED:debian UBUNTU: [Configs] updateconfigs following aufs update +13055ff9195392d6f1d8cc9065079147efd15b2e NEEDED:ubuntu-driver UBUNTU: ubuntu: AUFS -- update to 92ad9cc8bd289bf8e59b6bd8d83137d8e1a58c1c +3df26820282895c299dffb25972f584721ea75c1 NEEDED:ubuntu-driver UBUNTU: ubuntu: AUFS -- substrate: aufs3-standalone.patch +b9579ed6992d02cd55e4d94a13be89c32ce84ff5 NEEDED:ubuntu-driver UBUNTU: ubuntu: AUFS -- substrate: aufs3-mmap.patch +b39b7e7301c7723004985b773bcfb74fbfb4eabb NEEDED:ubuntu-driver UBUNTU: ubuntu: AUFS -- substrate: aufs3-base.patch +e08ec9211daa19f663ab406848b5df2271eac1d4 IGNORE:revert Revert "UBUNTU: SAUCE: AUFS -- aufs3-base.patch" +4a9009a9ae4027ec12dd6313fd18a8bb56bf4918 IGNORE:revert Revert "UBUNTU: SAUCE: AUFS -- aufs3-mmap.patch" +6ae8ad7291b70e01d11bf753e5e79d5b5aeee7fb IGNORE:revert Revert "UBUNTU: SAUCE: AUFS -- aufs3-standalone.patch" +241d2270754f4ab7d90d52324a7c8a85be88aca7 NEEDED:debian UBUNTU: disable module checks for rebase +9defa41f9126d026cd6a1ead03e6443e98e97108 NEEDED UBUNTU: apparmor -- follow change to this_cpu_ptr +caae90a5781f1d312b91fe44839c56009f2e0eb3 NEEDED:ubuntu-driver UBUNTU: ubuntu: aufs3 -- follow rename for d_alias +401119f392cb5bd61918659f9a20ab2ae54934e7 NEEDED:ubuntu-driver UBUNTU: ubuntu: aufs3 -- follow switch to get_unused_fd_flags() +78df37e096365062f950d01f27dacf143ba57276 NEEDED:ubuntu-driver UBUNTU: ubuntu: aufs3 -- follow switch to d_splice_alias +ca8d1a7503192dd5b9c1197eae4ea6be8f36ae81 NEEDED:ubuntu-driver UBUNTU: ubuntu: aufs3 -- follow rename of d_child +388a35e8069f8657310c7f00d9062989da94b49d NEEDED:debian UBUNTU: [Config] defaultconfigs following rebase to v3.19-rc2 +e08b74c9afcc53d50a3c8ebe43e3b8cb60f2aa61 NEEDED:debian UBUNTU: rebase to v3.19-rc2 +a8d99914420de484583f3ef7327d603cce40fd3a NEEDED:debian UBUNTU: rebase to v3.19-rc1 +0373477d240b8de65a1b6f8596f1b55e61eb7871 NEEDED:ubuntu-driver UBUNTU: ubuntu: AUFS3 -- follow switch to vfs_fallocate +817e01310fbcc1932419860833d9bba41e8d21a9 NEEDED:debian UBUNTU: Start new release +685154a8fd43a024cc3f671d85c36158717c0f0c NEEDED arm64: optimized copy_to_user and copy_from_user assembly code +980f00986e35f630c7bb18065836e3b2f518f7a2 NEEDED:debian UBUNTU: Ubuntu-3.18.0-7.8 +eef49554443cc3c5bf71b7f5aa500dce3ab3e0d0 NEEDED:debian UBUNTU: [config] set apparmor config options +8a91a5705046dca1c9972ce2a76714edc837e367 NEEDED UBUNTU: SAUCE: (no-up) apparmor: add parameter to control whether policy hashing is used +e1b6a4b88bdb9cf858e068d0e3a6b7449d648513 NEEDED UBUNTU: SAUCE: (no-up) fix: bad unix_addr_fs macro +892b8b7cfb14b9bdfbc9ac2fee8e751a67707542 NEEDED UBUNTU: SAUCE: Revert: fix: only allow a single threaded process to ... +98c64db6cffd59a894d4a4492aea761fa6e6c51a NEEDED UBUNTU: SAUCE: (no-up) apparmor: Sync to apparmor3 - RC1 snapshot +178a99413c26c359c7ea63c23b70c14238c72c9e NEEDED:debian UBUNTU: [Config] CONFIG_FW_LOADER_USER_HELPER_FALLBACK=n +0e7cd75372d106d02b3f03f9a2e6496782e39102 NEEDED:debian UBUNTU: Start new release +354c399098d730724d47572411db3966640b886d NEEDED:debian UBUNTU: Ubuntu-3.18.0-6.7 +70f41850210ae054ddddd3cdb3c8c6b80d26fef9 NEEDED:debian UBUNTU: [Config] CONFIG_PCIEASPM_DEBUG=y +69d6e475d4b184e691fde6bb6173b0b2a78f95ee NEEDED:debian UBUNTU: [Config] armhf: VIRTIO_[BALLOON|MMIO]=y +e7248dea9798e37ed9136c0234e60c5d3724a09a NEEDED:debian UBUNTU: rebase to v3.18 +c08cb8bf95c2175a3c0d3916a3a95bb865516303 NEEDED:debian UBUNTU: Start new release +5de9e13b14877580032ab92fb008417493ad5ab6 NEEDED:debian UBUNTU: Ubuntu-3.18.0-5.6 +f0c21c519145ef0374be78d7f3562691dae45800 NEEDED:debian UBUNTU: rebase to v3.18-rc7 +e74900777be8a73fd3d07669414bd103c385d2ce NEEDED:debian UBUNTU: [Config] CONFIG_SCSI_MQ_DEFAULT=n +58dfe08f9155f1821f7a0659bcb9c869d4e5ac73 NEEDED:debian UBUNTU: Start new release +10dd9a851640f6ab60c78594bbff79d76dbb2488 NEEDED:debian UBUNTU: [Config] CONFIG_SCOM_DEBUGFS=y for powerpc/powerpc64-smp ppc64el/generic +9b1c8ecc6c86e71fab6d15bd84bd1628aae6cd2e NEEDED:debian UBUNTU: Ubuntu-3.18.0-4.5 +ea3282297f6f3af23009d7a400b35b73c3c10ac8 NEEDED:debian UBUNTU: [Config] enable overlayfs v1 support +ff7e37255afb5b57b5e378e7aef2b4935cc3eb0f NEEDED overlay: add backwards compatible overlayfs format support +47897ce32d62ea9af685c2a4b06734e76fbfcb1d NEEDED:debian UBUNTU: [Config] update configs following rebase to v3.18-rc6 +b9de0aaa58a863d277ac6141018e82d619d0a89c NEEDED:debian UBUNTU: rebase to v3.18-rc6 +f8bae137b946111d88cfd59cdb3501abc6072f7d NEEDED:debian UBUNTU: rebase to v3.18-rc5 +4550c44494ed6064b56dc746c1ca59cc42571292 NEEDED:debian UBUNTU: Start new release +cb37df61a5a331fe0bf87d467f6938149b7be5f5 NEEDED:debian UBUNTU: Ubuntu-3.18.0-3.4 +394645d92e939afd7bad1e13d07367d8c077fe12 NEEDED UBUNTU: SAUCE: AUFS (no-squash): basic framework and update machinary -- part 2 +3a53bed921a6d5c0fb30fc8e02a06105fad9dcf7 NEEDED:debian UBUNTU: Ubuntu-3.18.0-3.3 +156d0481e2abded21be8e0a516f952d13cfd0ff5 NEEDED:debian UBUNTU: [Config] updateconfigs following aufs3 update +4f0421c01639daf81bf6ccb3d5f4b8ff75e4552f NEEDED:ubuntu-driver UBUNTU: ubuntu: AUFS -- update to 9d5c349d5c452170b8e813d86956f896a0aef170 +6051ec34d1dbdcb54e4d8c5a9f2161793f85c99d IGNORE:reverted UBUNTU: SAUCE: AUFS -- aufs3-standalone.patch +d85f1f5fbc58b6f338ed6172f1b281cf7d6cd638 IGNORE:reverted UBUNTU: SAUCE: AUFS -- aufs3-mmap.patch +29946e18ae75d3ded766003caec2a3677a07a83f IGNORE:reverted UBUNTU: SAUCE: AUFS -- aufs3-base.patch +57f696f01845322cb8c68804524bdd41a2ad1146 NEEDED:debian UBUNTU: rebase to v3.18-rc4 +11048583c75d357f740d6d2ba6b2285f2657d93f NEEDED:debian UBUNTU: [Config] Disable CONFIG_RCU_USER_QS on arm64 +a20ed54dbbda43450ec3bf5d3db536e2a9ef9000 NEEDED:debian UBUNTU: [Config] disable CONFIG_ARM64_RANDOMIZE_TEXT_OFFSET +d2dfee2ba64140dc875aa2de2db76326021cd349 NEEDED:debian UBUNTU: [Debian] basic hook support +696ca2c9a87c9da383d1d0475cc4699e81cf67ba NEEDED:debian UBUNTU: [Config] amd64 is now the indep architecture +f500e7dcda3dfecfa2175847ba31bf8dd5470ce0 NEEDED:debian UBUNTU: [Config] Disable CONFIG_IPMI_SI_PROBE_DEFAULTS on armhf and arm64 +baf3a88eca0a927579ba1f6cf805c2b49f7b8165 NEEDED:debian UBUNTU: Start new release +c72e2fb77e36121ff538fe2b6a21354128cd8194 NEEDED:debian UBUNTU: Ubuntu-3.18.0-2.2 +714d582bfcfdb5091e472a15d2b1c4ab74383756 NEEDED:debian UBUNTU: rebase to v3.18-rc3 +68ed89d5098ecb26c3cf2ce31a197b60147accd9 NEEDED:debian UBUNTU: Start new release +9ba3dda425ca839667062942e93529e75382531a NEEDED:debian UBUNTU: Ubuntu-3.18.0-1.1 +76d6207803e1b92f419126d507d5e790738bb580 NEEDED:debian UBUNTU: [Debian] install usbipd +2a878f46cd018c9cb2e3f6a9bf436238522e4799 NEEDED:debian UBUNTU: [Config] armhf: disable JUMP_LABEL +994e6de3dd2affbd3ec963597d7d8af8990627e7 NEEDED:debian UBUNTU: [Config] CONFIG_DRM_BOCHS=n +0f87fe85382c852b2d5faf7d8b94fa994ae00461 NEEDED:debian UBUNTU: [Config] enable cloud tools on i386 +3aab9a4865e735ffc6aa1979e4d32929da66e317 NEEDED:debian UBUNTU: [Config] CONFIG_PATA_MACIO=y +f54e18bd24b7362841b1902c1a0804bc1dd12e2d NEEDED:debian UBUNTU: [Config] linux-image-extra postrm is not needed on purge +be3df8ea980f12fac4ed6e27c5948dc13c25c9d2 NEEDED:debian UBUNTU: [Config] linux-image-extra is additive to linux-image +809a654eb28d8127dc89dd89d679d44aad7e4cd6 NEEDED:debian UBUNTU: [Config] Added drivers/uio to generic inclusion list +bc189702109182682081057777e98beaff1200cc NEEDED:debian UBUNTU: [Config] dropped scsi_tgt from generic inclusion list +2ac80c0acfef71084a8072d792534e3b2617bee9 NEEDED:debian UBUNTU: CONFIG_MODULE_COMPRESS=n +f7103d518249e744a5c0aa004aca24a1f7d57706 NEEDED:debian UBUNTU: [Debian] Fix linux-doc dangling symlinks +ba30c7ba905e7f8cc776669e07c2e0a770b1aabf NEEDED:debian UBUNTU: rebase to v3.18-rc2 +0f81052c41fb44d865aa1fdcaf349bd35b097a6f NEEDED:debian UBUNTU: [Config] CONFIG_SOUND_OSS_CORE_PRECLAIM=n +99f88d003b04a94cdffb06292a131e4c9eaacb10 NEEDED:debian UBUNTU: Enable vivid +816874fb757dc85e42d20af922290d6d55cf9fac NEEDED:split-debian UBUNTU: rebase to v3.18-rc1 +5774f4dab5e36642e243e03837f63e68c93dfacf NEEDED:debian UBUNTU: rebase to v3.17 +dbabd921800e97ff2a708b068f772ca1182157bc NEEDED:debian UBUNTU: [Config] CONFIG_HOTPLUG_PCI_PCIE=n for ppc64el +59c659ef34502c3c6b5a0e8490bac9c7ffa9e042 NEEDED:debian UBUNTU: rebase to v3.17-rc7 +431e93cbc6a563ae15b4877810beb1b9f4edd976 NEEDED:debian UBUNTU: [Debian] Don't fail if a symlink already exists +0794c4f5d47196aaa1c774fcaa2ef81bd7214141 NEEDED:debian UBUNTU: [Config] CONFIG_HOTPLUG_PCI_SHPC=n for ppc64el +4790317b5007565da1299b35578135011bd9c6e9 NEEDED:debian UBUNTU: [Config] CONFIG_SND_HDA_INTEL=n for ppc64el +e7971f95deafcac1b3f524645a68fe915344845d NEEDED:debian UBUNTU: [Config] Correct annotation regarding CONFIG_DMA_CMA +f2d29260d449d918c5885aa6abc182dade506257 NEEDED:debian UBUNTU: [Config] CONFIG_CRASH_DUMP=n for powerpc-smp +56a2eb988714b6a0bb0f6c0da9a313a8f439291e NEEDED:debian UBUNTU: [Config] Enable usbip tools +dc7084c88863a69e70e90265485b6b51c01ccbad NEEDED:debian UBUNTU: [Debian] usbip tools packaging +40504c7e778f0ad9f19180a39ddd9018910c705a NEEDED UBUNTU: SAUCE: usbip: Update include path +122f035765feacfa15b09515c78af28f7092877c NEEDED:debian UBUNTU: rebase to v3.17-rc6 +d7be42a7599c483c2294e1122d9c4d5f0d347321 NEEDED:debian UBUNTU: [Config] CONFIG_USB_OHCI_HCD_PCI=y +dd1e6e6bf5f6ffcd1436ad3fbe32c93da7a5ff30 NEEDED:debian UBUNTU: [Config] follow rename of DEB_BUILD_PROFILES +dee5d182c3b180973d3a6fab11ac30af4513559b NEEDED:debian UBUNTU: [Config] tools -- only build common tools when enabled +782d85880d33461406f5a288942e6dcc11770e47 NEEDED:debian UBUNTU: [Debian] set do_*_tools after stage1 or bootstrap is determined +5b118bbb3a38dc3e5be0d5c921603f672fe1ab4c NEEDED:debian UBUNTU: [Config] Add mpt3sas to d-i +6afad884eeffc67a53e5d11ffe61c9e40b64d26a NEEDED:debian UBUNTU: [Config] CONFIG_DMA_CMA=n +aa4e526d8be91b593cd6d0a0e4ab949d26541fa0 NEEDED:debian UBUNTU: [Config] CONFIG_KVM_BOOK3S_64_HV=m +519ac1677b339775493fc2a4cff55d9e54c28ce7 NEEDED:debian UBUNTU: [Config] CONFIG_KVM_BOOK3S_64=m for ppc64el +dc9bcbd1592cfede67a2c5ccb5c59f26f0589260 NEEDED:debian UBUNTU: [Config] CONFIG_XMON=y +e9173466e3323cb9c78cdc807c72e6838f5d7119 NEEDED:debian UBUNTU: [Config] armhf: USB_[E|O]HCI_EXYNOS=y +4377933f12fbcb31006f23d0117d8a0d164adb80 NEEDED:debian UBUNTU: rebase to v3.17-rc5 +2d172824498ca976ec7e37ec373a248d49a0d5cc NEEDED:debian UBUNTU: rebase to v3.17-rc4 +6980242f0ab61eca03c77142ad4000fadfa022f7 NEEDED:debian UBUNTU: rebase to v3.17-rc3 +72e421db34ebf1bbe15649de2ab2132970f21872 NEEDED:debian UBUNTU: [Config] arm/tegra/d-i: framebuffer and usb support for Tegra SoCs +3cf410f0b6b36de437c55e319bde033fe75cdb28 NEEDED:debian UBUNTU: [Config] Add arm64 to enforcer CONFIG_CC_STACKPROTECTOR +e332b2967797d421575080f7b872c7b675e47629 NEEDED:debian UBUNTU: [Config] armhf: REGULATOR_TWL4030=y +c37acf9c89fae66506d9875bdf758a5fee0233ed NEEDED:debian UBUNTU: [Config] Added net/6lowpan/* to generic inclusion list +4dd073455ec2c021accdd97ee82b8091b17ea7b7 NEEDED:debian UBUNTU: [Config] CONFIG_NFC_ST21NFCB=n +abc7908d4c71425c16718d40bbbea1515bc39204 NEEDED:debian UBUNTU: updateconfigs +e09aab2c0d195125f71b50cdff0a858983953609 NEEDED:debian UBUNTU: rebase to v3.17-rc2 +9d32d8b674a700e342c5559d8e09e9590785d40a NEEDED:debian UBUNTU: Start new release +18ffc6ce8fa107ac99b52f69a8107511c9d560c5 NEEDED:debian UBUNTU: Ubuntu-3.16.0-11.16 +06f6d00b1c7ae75b5988b2ef922cdd8308edacd1 NEEDED:debian UBUNTU: [Config] CONFIG_ZPOOL=y +7cc84cf61b760725973c93b9c7e39d6f521bfe62 NEEDED Revert "net/mlx4_en: Fix bad use of dev_id" +6ffe8179fc951ea6d1886f28b0742eb2744f033c NEEDED:debian UBUNTU: Bump ABI +cc21629a6a5f6a3efdaf91b320508479af69e1fa NEEDED:debian UBUNTU: Start new release +d1a2628d426406b61d1d46747da2815e7995d3c9 NEEDED:debian UBUNTU: Ubuntu-3.16.0-10.15 +90b44b74910b3c5e86cb05cfde5f67fee0ef2b75 NEEDED UBUNTU: SAUCE: bcache: prevent crash on changing writeback_running +e3102a21978dd9c109856a48cd84837e708b7b29 NEEDED:debian UBUNTU: [Config] CONFIG_SENSORS_IBMPOWERNV=m +2819061858516119133b736fdfa0c11d23cceccc NEEDED:debian UBUNTU: [Config] CONFIG_SECURITY_NETWORK_XFRM=y +a30185ef8f2fa9dd925cf8b99399a72bc308a397 NEEDED:debian UBUNTU: [Config] CONFIG_XFRM_STATISTICS=y +9d4a441eb46227e80b77e99ef15a4248ba2ddfcd NEEDED UBUNTU: SAUCE: (no-up) arm64: dts: Add PMU node for APM X-Gene Storm SOC +e7e22f86dfc3e11d8f6eab08074ebb610a20c5ab NEEDED UBUNTU: SAUCE: (no-up) dt-bindings: Add Potenza PMU binding +5ed1bfbfcc717aead960bf74940328285d3bf957 NEEDED:debian UBUNTU: [debian] Fix regression with ABI subversions and backport +62f12ae8d9c08cc6496b60b330350a4dfcbca77f NEEDED:debian UBUNTU: Start new release +ab212af17f1b9eaa43bffde42440598079044839 NEEDED:debian UBUNTU: Ubuntu-3.16.0-9.14 +c8a4d4970d0835d19ff2acd700d0ae94b877b3e7 NEEDED UBUNTU: SAUCE: Overlayfs: allow unprivileged mounts +38d659d55bb8fab6f71934dd969a1ba8badeed79 NEEDED:debian UBUNTU: rebase to v3.16.1 +aefca49c0717ac60ba231a3b2e0cb62f0937113c NEEDED:debian UBUNTU: Start new release +a9dc14c5056a82cfd44e3b098b252e52fe0b6925 NEEDED:debian UBUNTU: Ubuntu-3.16.0-8.13 +ab4880f5e96efda31c6b52136704c9eb0ccab87b NEEDED:debian UBUNTU: [debian] Allow for package revisions condusive for branching +981bed5cd793ef69ac7377e9cbb6375ce70351f6 NEEDED:debian UBUNTU: Start new release +74a7d62985f35ddef973776c3e31ff256f4a5859 NEEDED:debian UBUNTU: Ubuntu-3.16.0-7.12 +aeaada62d9efea9463bbcfc2a6549d18f023cdd5 NEEDED:debian UBUNTU: [Config] Add hv_balloon to d-i virtio-modules +035036c87c216bfbb44109c963375f5f20dc05a1 NEEDED:debian UBUNTU: [Config] d-i -- add virtio_scsi to virtio-modules +62317e97c6bbb5d8043e1fc3e26df6b905325c4c NEEDED:debian UBUNTU: rebase to v3.16 final +250eb531089a04b95b698be6524ce4edbe15ddc5 NEEDED:debian UBUNTU: [Packaging] Fix 'printchanges' to work with versions containing '+' +53647a9928a35d01e9f1b59c5d7b96ad3353048a NEEDED:debian UBUNTU: [Config] CONFIG_CONTEXT_TRACKING_FORCE=n +e1b2b4a99edece7053725bc318f7f58e53767692 NEEDED:debian UBUNTU: [Config] CONFIG_MICROCODE=y +a1f57fea081dbab4be712029e9b64c60d61935a0 NEEDED:debian UBUNTU: Start new release +b342b70677fb9741dd3dc137f45e5ce3181223e9 NEEDED:debian UBUNTU: Ubuntu-3.16.0-6.11 +f0c937317763b38820a72a6b02b1fdb0ad9d285d NEEDED:debian UBUNTU: rebase to v3.16-rc7 +d4d6d5fc58a66d37821bbbf8561ac2a814c977d9 NEEDED:debian UBUNTU: [Config] CONFIG_SCSI_IPR_TRACE=y, CONFIG_SCSI_IPR_DUMP=y +c9990e0b0998d728503f56ab9c7821d56a721a58 NEEDED:debian UBUNTU: [Config] armhf: RTC_DRV_PCF8523=y +82fd2a6b5fff23ba504adfe2d18dc1d44f109445 NEEDED:debian UBUNTU: [Config] armhf: build cubox & imx6 DTBs +7fdb1513964145758aefdf7a43b06a1d0b6b5811 NEEDED:debian UBUNTU: [Config] armhf: KEYBOARD_IMX=m +7534c02766b9c2305e03cd5b5a117c3997863ff4 NEEDED:debian UBUNTU: [Config] armhf: MXS_DMA=y && MTD_NAND_GPMI_NAND=m +43470d1ec8f5355be9c153b05088af5505ebd499 NEEDED:debian UBUNTU: [Config] CONFIG_KEYS_DEBUG_PROC_KEYS=y +6f1d20b13ce5c137c86d1144eb82ab38f99e76cf NEEDED:debian UBUNTU: Start new release +9d6defca20c389c1ff93e5802c71973b092e7a14 NEEDED:split-debian UBUNTU: Ubuntu-3.16.0-5.10 +1d693f78502686a992d2038c9896c3e6c2652ce2 NEEDED UBUNTU: SAUCE: aufs3 -- update update scripting +53acc12981cc9883d9038fcac7ac86b9ad274f24 NEEDED UBUNTU: SAUCE: AUFS (no-squash): basic framework and update machinary +87428d40577506cfdf31336368aa613ae0c54639 NEEDED UBUNTU: SAUCE: 85xx: Only use generic tbsync routines on PPC32 +ad006bb4d530a83f425ee836b7d8de7d5c93e3cf NEEDED UBUNTU: SAUCE: (no-up) Select reboot driver for X-Gene platform. +5d2fc3d65465aac854036c9ca737eab59b608042 NEEDED UBUNTU: SAUCE: nouveau: missing outputs should be warnings +b2648e043821b5866f8c863c4b928732228d3402 NEEDED UBUNTU: SAUCE: kvm: BIOS disabled kvm support should be a warning +8c10fb1a7bf59170ed6fd059cb35e5017abcd05f NEEDED UBUNTU: SAUCE: kthread: Do not leave kthread_create() immediately upon SIGKILL. +6d0ed555d8ae64794d2902f9c1b7e0da5c39d939 NEEDED UBUNTU: SAUCE: intel_pstate: inform user that thermald is worth considering +594f6dbf60084fd5fc21bdcc0a99b154be76e76d NEEDED UBUNTU: SAUCE: (no-up) mei_me: Add module parameter to disable MSI +e62b73418e9503b09d61a6dc8721f457bec967d0 NEEDED UBUNTU: SAUCE: Revert "drm/crtc-helpers: fix dpms on logic" +6e2be9569f946dc74fec9f5f24a9d80689275343 NEEDED UBUNTU: SAUCE: book3e cleanups for CONFIG_RELOCATABLE +69923caf98a546b30325ec486536633fddb7ff90 NEEDED UBUNTU: SAUCE: book3e/kexec/kdump: recover "r4 = 0" to create the initial TLB +2df7602013328910b0c6fce7f411a5d1b25be301 NEEDED UBUNTU: SAUCE: book3e/kexec/kdump: redefine VIRT_PHYS_OFFSET +3d13bd1d0394d80f6dccae2daafdd1ce887e8672 NEEDED UBUNTU: SAUCE: book3e/kexec/kdump: implement ppc64 kexec specfic +219cc9dd30079c35ad74590b3808ff7e12f3dd39 NEEDED UBUNTU: SAUCE: book3e/kexec/kdump: introduce a kexec kernel flag +9e138c3c7acc6975d0ac364254ae021592e2d096 NEEDED UBUNTU: SAUCE: book3e/kexec/kdump: create a 1:1 TLB mapping +2d3b205cde4d3b8069b8d9bb97203de57726ea92 NEEDED UBUNTU: SAUCE: book3e/kexec/kdump: enable kexec for kernel +32b8a9f39e22e0b54dbe78a1c179de7ca0dfd9cb NEEDED UBUNTU: SAUCE: powerpc/book3e: support CONFIG_RELOCATABLE +aa396fc0fa2317a5b447e88bc46b352f0411307e NEEDED UBUNTU: SAUCE: vt -- maintain bootloader screen mode and content until vt switch +0e50fbdb8e04609ddd667428f54d81fd17ffc232 NEEDED UBUNTU: SAUCE: export some symbols for powerpc +272b7c0f6c6c380981101491d9ef26bd45ade5fe NEEDED UBUNTU: SAUCE: allow IRQs to be irq-threaded by default via config +d5c3c89b86cfe6ce6dc5c67c462e563326940d44 NEEDED UBUNTU: SAUCE: Provide booke stub for kvmppc_is_bigendian() +b551f2a4439d2179b3732c2a28277d9245dbb150 NEEDED UBUNTU: SAUCE: xgmac_mdio: Silence read errors +285f1bd95dd079825af0d06e33af71a7583aeee9 NEEDED UBUNTU: SAUCE: Fixup freescale usb phy driver to work on ppc64 +c2361b23e7b757ffa4241a6ab427694f3be844cd NEEDED UBUNTU: SAUCE: Revert "phy: vitesse make vsc824x_add_skew static" +f40baa6f375e1730970cebce0a14a7456d539ab2 NEEDED UBUNTU: SAUCE: PPC: PCI: Fix pcibios_io_space_offset() so it works for 32-bit ptr/64-bit rsrcs +dc7dff6e417c8642ead4659e42e9b1b601db199c NEEDED UBUNTU: SAUCE: phylib: Minimum hack to get the generic 10G PHY driver to work with 10G "fixed-link"s +0bd9175323dad194fcff7b450aa14d39ce710b3d NEEDED UBUNTU: SAUCE: OMAP: AM33xx: hwmod: Correct AES module SYSC type +3a1228b27e425e24b6257c8af1e3ccebc1f9f809 NEEDED UBUNTU: SAUCE: ARM: OMAP4: hwmod: Add hwmod data for AES IP +eff618d811a4b62462674a8bb05556a548f2c112 NEEDED UBUNTU: SAUCE: ARM: OMAP: hwmod: Add SYSC offsets for AES IP +8418ceb9869d41a7ba4e6217c631bdb28e07c33b NEEDED UBUNTU: SAUCE: suspicious unlocked ->status reading and writing in ipc/sem.c +fd4bcb1162b482eafc3fc3fe480698cc8d1cdfdb NEEDED UBUNTU: SAUCE: tg3: Add support for new 57786 device id. +00b5fd7aaa231697512b50a7c80ed2a3c8c7e3b0 NEEDED UBUNTU: SAUCE: Work around broken ACPI backlight on Dell Inspiron 5537 +bf3a2dfe2f7f34c174a0a938c350912e319fe032 NEEDED UBUNTU: SAUCE: disable stack-protector for ARM compressed bootloader +29fb264813de8f4bbd8c8577901630e6a547d503 NEEDED UBUNTU: SAUCE: uvcvideo: quirk PROBE_DEF for Alienware X51 OmniVision webcam +cdf48be1c63b4a07cecf2a62617f7fb7b847fabb NEEDED UBUNTU: SAUCE: isapnp_init: make isa PNP scans occur async +eedee9b0f515aa2793fccbbfd7d58db95b2490d1 NEEDED UBUNTU: SAUCE: dm-crypt: never use write same +6eccf1ef86175928b723ca681c2ab851d112e7ac NEEDED UBUNTU: SAUCE: (no-up) ACPI: Disable Windows 8 compatibility for some Lenovo ThinkPads +07419bbe0eb79097693cae2b7ed1b3f467fca642 NEEDED UBUNTU: SAUCE: (no-up) intel_ips: blacklist ASUSTek G60JX laptops +5b2c0e070ec1b4d29178b320220c5388ec9f9c82 NEEDED UBUNTU: SAUCE: (no-up) Update bnx2x firmware to 7.8.17.0 +fdbf1af4b48970478c1ee25e1c620ecb8cd4035e NEEDED UBUNTU: SAUCE: (no-up) trace: add trace events for open(), exec() and uselib() (for v3.7+) +1d4ec94ffcaca71994e520abe769ee6dcf4579ee NEEDED UBUNTU: SAUCE: (no-up) x86: reboot: Make Dell Optiplex 390 use reboot=pci +f760d3c92097784cfda92f3f4c094ccf9fc2497c NEEDED UBUNTU: SAUCE: (no-up) PCI: fix system hang issue of Marvell SATA host controller +f43492d5b2cf399039ca6914348d25aaee474e4f NEEDED UBUNTU: SAUCE: (no-up) Convert bnx2x firmware files to ihex format +8b732f482e348d75ee9b433c574bcf88d0a8991b NEEDED UBUNTU: SAUCE: (no-up) Input: Cypress PS/2 Trackpad simulated multitouch +7466874e8128bab355ddf3512171ae836348b7f7 NEEDED UBUNTU: SAUCE: (no-up) hv: Supply vendor ID and package ABI +6a5fff41e536a612ddc1352d93a5b6db8ba68f39 NEEDED UBUNTU: SAUCE: (no-up) Revert "VFS: don't do protected {sym,hard}links by default" +ae359c3e312669ebde46bc3817d6cea99a7f9bef NEEDED UBUNTU: SAUCE: (no-up) Remove vicam files duplicated in linux-firmware +794523f01c1303be9d736acca7f016af31b7b416 NEEDED UBUNTU: SAUCE: (no-up) Remove dsp56k files used only by m68k +db779e5d146cf4d34aee88cf9d2f71d00a9c926c NEEDED UBUNTU: SAUCE: (no-up) Update bnx2x firmware to 7.8.2.0 +588fe8f57dc07478c434afb332793b91ea896bc9 NEEDED UBUNTU: SAUCE: (no-up) Remove radeon files duplicated in linux-firmware +c4e09c38991997926099d1fdac4bef85cbdc4d72 NEEDED UBUNTU: SAUCE: (no-up) Remove sun files duplicated in linux-firmware +14b6b1d6c7c6b42d778c4aacc0a9d68a451e5ba8 NEEDED UBUNTU: SAUCE: (no-up) Remove keyspan files duplicated in linux-firmware +8989c6225b5d8ef4bd42337382c3fe58c4448887 NEEDED UBUNTU: SAUCE: (no-up) Remove acenic files duplicated in linux-firmware +e9347676137c6b05dd8d1db1de39230e677ada95 NEEDED UBUNTU: SAUCE: (no-up) Remove r128 files duplicated in linux-firmware +8a8c10cf8ebc650ed0ae9bb94de9787321fcef5b NEEDED UBUNTU: SAUCE: (no-up) Remove cxgb3 files duplicated in linux-firmware +da35e9ad8c83e4ecc8a73b68b8cc556e8723cdb3 NEEDED UBUNTU: SAUCE: (no-up) Remove matrox files duplicated in linux-firmware +31f0ae2767b81565b1333630f9572a09df295a04 NEEDED UBUNTU: SAUCE: (no-up) Remove tehuti files duplicated in linux-firmware +ea4588800ea937d2044723f497632e608e5a713e NEEDED UBUNTU: SAUCE: (no-up) Remove yam files duplicated in linux-firmware +5fa5e5d023fa3ad67d4947710062440e0b92b6f3 NEEDED UBUNTU: SAUCE: (no-up) fix highbank include path +bcd707780091a34cd1815b8ab6cf795e13433e65 NEEDED UBUNTU: SAUCE: (no-up) vxge: Declare MODULE_FIRMWARE usage +dbc6280f6dc2988546dd6d35055741be0a5fcbe7 NEEDED UBUNTU: SAUCE: (no-up) rds_ib_send() -- prevent local pings triggering BUG_ON() +a381ec9f409f2e71151194c647685826aadc97f3 NEEDED UBUNTU: SAUCE: (no-up) firmware: Upgrade bnx2 to current versions +b08d030d87047591794e27a4d8cfc05c779f9fda NEEDED UBUNTU: SAUCE: (no-up) firmware: Remove obsolete Myricom firmware +c62121eeb1e43d1c1bee1161f0fce00506810966 NEEDED UBUNTU: SAUCE: (no-up) firmware: Remove cpia2 files duplicated in linux-firmware +6ca0baacfe0faa7d6265a283a378c7530f2b3286 NEEDED UBUNTU: SAUCE: (no-up) firmware: Remove av7110 files duplicated in linux-firmware +492d662a9f259fb958ad3025ff4989ebb1ae1801 NEEDED UBUNTU: SAUCE: (no-up) firmware: Remove ambassador files duplicated in linux-firmware +9d9677898ade658ad4c68a47c2dda3aea3a9caa6 NEEDED UBUNTU: SAUCE: (no-up) firmware: Remove advansys files duplicated in linux-firmware +0906f131cf4b10f377dc66818a01eaab485a61f4 NEEDED UBUNTU: SAUCE: (no-up) firmware: Remove adaptec files duplicated in linux-firmware +fc950a48545f49a2ab8e8a465c682a4a3d504f57 NEEDED UBUNTU: SAUCE: (no-up) firmware: Remove ti_usb_3410_5052 duplicated in linux-firmware +6d277f4ffe2a7e2754feac527955f4e948d276cf NEEDED UBUNTU: SAUCE: (no-up) firmware: Remove edgeport files duplicated in linux-firmware +6cd197c9e6ecc8a3d864d9547837ce9e2ad6a6c1 NEEDED UBUNTU: SAUCE: (no-up) firmware: Remove kaweth files duplicated in linux-firmware +6d4aea69136e4baaa70726361e5912a24b92ed1e NEEDED UBUNTU: SAUCE: (no-up) firmware: Remove ess files duplicated in linux-firmware +264af3894a66b66b07162df0fb367836e76c9705 NEEDED UBUNTU: SAUCE: (no-up) Remove redundant keyspan_pda firmware +dc000f4ec05b4b34c2c1dd9a67d0a87fe1faee22 NEEDED UBUNTU: SAUCE: (no-up) Remove redundant yamaha/ds1 firmware +6f4b585535c0c28732c46bc12ba8dda042596f15 NEEDED UBUNTU: SAUCE: (no-up) Remove redundant ositech/Xilinx7OD firmware +a879d556097343beda5c932144f61b5320916ae2 NEEDED UBUNTU: SAUCE: (no-up) Remove redundant ttusb-budget firmware +ec8ca911878b3aae198cfcffaae02368f555f488 NEEDED UBUNTU: SAUCE: (no-up) Remove redundant cis firmware +482038c4e6362498269ddf66b5fe21021f7e7fcd NEEDED UBUNTU: SAUCE: (no-up) firmware: Update bnx2x to current firmware version 7.2.51 +1c5fd21e2fe45eea97a41163273add224545ddae NEEDED UBUNTU: SAUCE: (no-up) kconfig: in debug mode some 0 length message prints occur +0685b9c73aa31e52831400e053d37f2e438cfb1b NEEDED UBUNTU: SAUCE: (no-up) Allow filtering of cpufreq drivers +bd58f8e98fd0c05bfe34b7d8b538f35a0864c8d4 NEEDED UBUNTU: SAUCE: (no-up) tools/hv: add basic manual pages +08347031e66a781b7876584175c0bea0d0726788 NEEDED UBUNTU: SAUCE: (no-up) elide some ioctl warnings which are known benign +9e07077485c5e5805517bc2f6272a251eb61211d NEEDED UBUNTU: SAUCE: (no-up) Input: synapticss - Set buttonpad property for all clickpads +43644523536605f8c650aa46e420d59192fa230b NEEDED UBUNTU: SAUCE: (no-up) Input: synaptics - add second variant of two-button clickpad +1224fcf60e5dbe150b446c0f36f55601e50b867b NEEDED UBUNTU: SAUCE: (no-up) x86: reboot: Make Dell Latitude E6220 use reboot=pci +e08e98d5f3eaece0a55eca47eb31d2544561f1e0 NEEDED UBUNTU: SAUCE: (no-up) x86: reboot: Make Dell Optiplex 990 use reboot=pci +710ae591a352831d514adfecde8cbb921ab72132 NEEDED UBUNTU: SAUCE: (no-up) x86: reboot: Make Dell Optiplex 790 use reboot=pci +075dc4fd57b7523b7d1e64df09e8fbab2298a45c NEEDED UBUNTU: SAUCE: (no-up) x86: reboot: Make Dell Latitude E6520 use reboot=pci +11f96bb408f15ceeef5f1c089f99d974f5cd93c5 NEEDED UBUNTU: SAUCE: (no-up) add support for installed header files to ubuntu directory +83442377bb16b0007a304e1b5f81f35139abb29c NEEDED UBUNTU: SAUCE: (no-up) Added quirk to recognize GE0301 3G modem as an interface. +84b3a7169b338740a70d22eb408e89619acfd9db NEEDED UBUNTU: SAUCE: (no-up) fix build error with CONFIG_BLK_DEV_INITRD=n +6a2a16f3c9e9496523125c58f788055dede4495f NEEDED UBUNTU: SAUCE: (no-up) dma-mapping: Remove WARN_ON in dma_free_coherent +35814b8981777d9781bcf9d1a3d068b502ce90f2 NEEDED UBUNTU: SAUCE: (no-up) cdrom -- default to not locking the tray when in use +de67e5bc6fbe1fed74ec545291efc763ec91c2b3 NEEDED UBUNTU: SAUCE: (no-up) nbd: Change default partitions per device to 15 +a5263a89adad25c3cbec28d9ed6e35c83e8de677 NEEDED UBUNTU: SAUCE: (no-up) hostap: Change initial operation mode to managed (infra) +aa48271e2f11700129d616010dca588d7a973a03 NEEDED UBUNTU: SAUCE: (no-up) version: Implement version_signature proc file. +3dcb633bcdca132c4f3df40338a3b387f63f9271 NEEDED UBUNTU: SAUCE: (no-up) dm-raid45: Fix incompatible ptr assignments +7d687b18ba73d86852971a9060380a3e5657d086 NEEDED UBUNTU: SAUCE: (no-up) ubuntu: dm-raid45 +4437f9d1f3c4c6f7820bd7162ad54002e740eda8 NEEDED:debian UBUNTU: [Debian] Cloud tools +58244d3007f8256b8fd23b941a87c97b60e54f91 NEEDED:debian UBUNTU: [Debian] add debian/gbp.conf +04e8205c37a0d4756b675ea2229bac647ca200af NEEDED:debian UBUNTU: [Debian] remove the kernel-image firmware list on clean +a52ad698ad07262a8735801415c139789ae88cdb NEEDED:debian UBUNTU: [debian] Dynamically generate the kernel-image udebs firmware list +fbaf6c736d49fd8cd3d6121ea26009fbf7acd301 NEEDED:debian UBUNTU: [debian] Fix indep_hdrs_pkg_name +0588234eed4f92f77c24090f368bd9fc419e50e0 NEEDED:debian UBUNTU: [Debian] Improve tools version message +442d458f2ab0669d904de435bc943ffdb20b42e1 NEEDED:debian UBUNTU: [Debian] Re-sign modules after debug objcopy +a6e1d4fd0d9dc987991216b799e6dee2b7956ad7 NEEDED:debian UBUNTU: [Debian] sort out linux-tools naming +5fee25691328f9d46874a824d8e75c3a25be05d2 NEEDED:debian UBUNTU: [Debian] linux-tools: switch to common generic version helper +2d0634eb9debcc3197792e52f717e7f88352b835 NEEDED:debian UBUNTU: [Debian] postinst -- fix unchanged link detection +66e7bf3df38ce1302a32baf8142dce56c0c81586 NEEDED:debian UBUNTU: [Debian] postinst -- improve relative symlink detection with missing files +c5e7fa9208fbe047c329c124f4d4e1320321d34f NEEDED:debian UBUNTU: [Debian] getabis: Commit new ABI directory, remove the old +f01e594cf5b3a0f05f19ac55e78589d93b06b8fa NEEDED:debian UBUNTU: [Debian] Add hv_vss_daemon to tools package +687fa338e27867b855c77dd79860035dde626761 NEEDED:debian UBUNTU: [debian] tools: ship 'cpupower' in linux-tools +23e6572a962df847252e07898a40174669e8f2a5 NEEDED:debian UBUNTU: [Debian] tools: enable x86 and hyper-v +8bd69d23b91eee555b60a59e42a04201a7d0f1e7 NEEDED:debian UBUNTU: [Debian] autopkgtest: switch Depends: to build-essential +2a6e95d999ee4efac165d88c8106a888fc9b5a8a NEEDED:debian UBUNTU: [Debian] supply perf with appropriate prefix to ensure use of local config +81c56fe3b06596c30b9eae372008fe37ae20f3b7 NEEDED:debian UBUNTU: [Debian] Explicitly reference gawk in build rules awk in all and arch +82429d09555509df1d684469d97dedc756ff11b8 NEEDED:debian UBUNTU: [Debian] fix SRCPKGNAME-udebs-FLAVOUR handling for complex flavours +754e4d69262a59fff8c893b32f199d1fbec6905b NEEDED:debian UBUNTU: [Debian] Supply PKG_ABI in kmake +d25ef28f3ab3ead424ce856ecc849d4bd8eff932 NEEDED:debian UBUNTU: [Debian] reduce udeb rules spew +61ce255d6b166b9c48c8a4ff2176ea15089e381d NEEDED:debian UBUNTU: [Debian] Prepare to build using arch specific compiler +9a9792eeae3e7ec48aed14e38a8cbb3e716d5e34 NEEDED:debian UBUNTU: [Debian] do_tools=false when cross compiling +0ea3ee0721c59ddf26e95da242e5e9ead1e21278 NEEDED:debian UBUNTU: [Debian] generate a SRCPKGNAME-udebs-FLAVOUR-di depending on all built udebs +553cbe477ce2085e1a249d629f268d62af484682 NEEDED:debian UBUNTU: [debian] Use dh_strip +a418dffd68c2c8b88dc3e2fbaf09ead34cfc2fed NEEDED:debian UBUNTU: (debian) get-firmware: Be more selective about copies +4c40a10a81f5cd9310b7b5766ff731db91224f3f NEEDED:debian UBUNTU: (debian) fix internal linkage for separated header packages +b69a501e52aff469bc0e0b3ea7fcde5bfef63af1 NEEDED:debian UBUNTU: (debian) Abort build on unresolved symbols +15bc58fd511b00f7703d2b5d8909af935b31c1d5 NEEDED UBUNTU: [debian] ensure debian/ is not excluded from git by default +83f903be8906fc46d258124e64803590fa5a60ac NEEDED:debian UBUNTU: [debian] Specify python2.7 for perf tools build +817c1f4144c1318dc2e5d62e8817979a7f721ff9 NEEDED:debian UBUNTU: [debian] do not use ../.$(series)-env file +c00e4866e6e549618a43ae3928073f552cca12a5 NEEDED:debian UBUNTU: [debian] perf: NO_LIBPERL=1 +44e01631bcd442f4f61c264af78e193518daa683 NEEDED:debian UBUNTU: [debian] perf: NO_LIBPYTHON=1 +4ec3e6d91413db7e4ba6df1f8b069aee2e7ed216 NEEDED:debian UBUNTU: [debian] Build extras package only for specific arches +6ea3c5606dfdac9dc0348d0eeafb17207cf1efbb NEEDED:debian UBUNTU: [debian] Remove dangling symlink from headers package +9b0d5791d9345eb165fb26e8f80837209ed677f4 NEEDED:debian UBUNTU: [debian] DTB: add support for multiple DTBs +fc9f46c418f454b138af5d810003db5e3d7eb582 NEEDED:debian UBUNTU: [debian] Add macro to selectively disable building perf +c054564f4aeffa8baf045df5de9707140d3fd381 NEEDED:debian UBUNTU: [debian] insertchanges -- fix to work across major version changes +2161b4265ed31268232cb4743f6201b1be7ce1a8 NEEDED:split-debian UBUNTU: [debian] Moved scripts/fw-to-ihex.sh to debian/scripts/misc +187fb48b5107cf8714beb306cb24610e97101cee NEEDED:debian UBUNTU: [debian] find-obsolete-firmware: Use correct path +6b259db6215d8e1d4a31c1ba46ed39d2dafe82f1 NEEDED:debian UBUNTU: [debian] get-firmware: Filter new files through fwinfo +ba7c4f74efc87ea48be44992774a563151926bf7 NEEDED:debian UBUNTU: [debian] hmake -j1 +ff734a2a5e6dccf8e218115f0897c0296195408f NEEDED:debian UBUNTU: [debian] add an autopkgtest rebuild test +8b92747ff62b53c7481de518a1d9e0dcc3efadc5 NEEDED:debian UBUNTU: [debian] move build tests out of the way +65dc3834bd439e381e4a1319f47ba198ff59bfad NEEDED:debian UBUNTU: [debian] add rebuild-test support for autopkgtest +85df5d081a0a1cf926bc1596fce86058a980957d NEEDED:debian UBUNTU: [debian] script to detect obsolete firmware +0486170e5ff342ec83e3ad383d490ad9c4009012 NEEDED:debian UBUNTU: [debian] Use SRCPKGNAME as prefix for indep linux headers package +4fecdbff008d99d5084ad220223d95f2a8b33430 NEEDED:debian UBUNTU: [debian] Document binary-indep dependency chain +e31db9848498b37cec7974a7f55f3a0125ac98f7 NEEDED:debian UBUNTU: [debian] Use dh_prep instead of 'dh_clean -k' +f97b9b22ffed7de7d3b2f0b79ffcbd74ae75af29 NEEDED:debian UBUNTU: [debian] enforcer -- fix debugging output +97625cbcd6c760b92fcbd46b33127817abd3f5ec NEEDED:debian UBUNTU: [debian] Add custom_override rule to allow for alternate kernel file/install +8dadbaaed08c1aba3f59d1f8cac96284420b422f NEEDED:debian UBUNTU: [debian] Update armhf comments. +efd7c209638bec8871bdc80b05ac2678d98342f9 NEEDED:debian UBUNTU: [debian] drop manual headers copy +a25e7161804d73bdc21933f8ce22dffc30737c4d NEEDED:debian UBUNTU: [debian] bootstrap: switch to the new DEB_BUILD_PROFILE +5dedd7999df59975ea0faa207f5f8ed9c8d59e96 NEEDED:debian UBUNTU: [debian] do not fail secure copy on older kernels +a6a3b1451ca57ca799e98ba62fb0d95cfec38c5d NEEDED:debian UBUNTU: [debian] allow us to select which builds have uefi signed versions +a34c8331e9565c7af1a04c64bb6d1c57fc2c605e NEEDED:debian UBUNTU: [debian] we already have a valid src_pkg_name +e606ba427f5f2abe7a4ec1ab18a4d5838345821c NEEDED:debian UBUNTU: [debian] add custom upload for the kernel binary package +0ffed1cb10d43ba7d525fcc0af93e4eb9d88e8eb NEEDED:debian UBUNTU: [debian] note directory name changes +a6d721352cbc862a3e31652e904311739b016727 NEEDED:split-debian UBUNTU: [debian] Initial debian and ubuntu directories +b44d72ce530f51e7a882d23c66029a63b737231b NEEDED UBUNTU: [Debian] Prep for Ubuntu build infrastructure --- linux-4.8.0.orig/debian.master/modprobe.d/common.conf +++ linux-4.8.0/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 --- linux-4.8.0.orig/debian.master/reconstruct +++ linux-4.8.0/debian.master/reconstruct @@ -0,0 +1,125 @@ +# Recreate any symlinks created since the orig. +[ ! -L 'ubuntu/vbox/vboxguest/include' ] && ln -sf '../include' 'ubuntu/vbox/vboxguest/include' +[ ! -L 'ubuntu/vbox/vboxguest/r0drv' ] && ln -sf '../r0drv' 'ubuntu/vbox/vboxguest/r0drv' +[ ! -L 'ubuntu/vbox/vboxsf/include' ] && ln -sf '../include' 'ubuntu/vbox/vboxsf/include' +[ ! -L 'ubuntu/vbox/vboxsf/r0drv' ] && ln -sf '../r0drv' 'ubuntu/vbox/vboxsf/r0drv' +[ ! -L 'ubuntu/vbox/vboxvideo/include' ] && ln -sf '../include' 'ubuntu/vbox/vboxvideo/include' +[ ! -L 'ubuntu/vbox/vboxvideo/r0drv' ] && ln -sf '../r0drv' 'ubuntu/vbox/vboxvideo/r0drv' +# Remove any files deleted from the orig. +rm -f 'arch/powerpc/include/asm/book3s/64/hugetlb-radix.h' +rm -f 'arch/sparc/lib/user_fixup.c' +rm -f 'drivers/i2c/busses/i2c-octeon.c' +rm -f 'firmware/acenic/tg1.bin.ihex' +rm -f 'firmware/acenic/tg2.bin.ihex' +rm -f 'firmware/adaptec/starfire_rx.bin.ihex' +rm -f 'firmware/adaptec/starfire_tx.bin.ihex' +rm -f 'firmware/advansys/3550.bin.ihex' +rm -f 'firmware/advansys/38C0800.bin.ihex' +rm -f 'firmware/advansys/38C1600.bin.ihex' +rm -f 'firmware/advansys/mcode.bin.ihex' +rm -f 'firmware/atmsar11.HEX' +rm -f 'firmware/av7110/Boot.S' +rm -f 'firmware/av7110/bootcode.bin.ihex' +rm -f 'firmware/bnx2/bnx2-mips-06-6.2.1.fw.ihex' +rm -f 'firmware/bnx2/bnx2-mips-09-6.2.1a.fw.ihex' +rm -f 'firmware/bnx2x/bnx2x-e1-6.2.9.0.fw.ihex' +rm -f 'firmware/bnx2x/bnx2x-e1h-6.2.9.0.fw.ihex' +rm -f 'firmware/bnx2x/bnx2x-e2-6.2.9.0.fw.ihex' +rm -f 'firmware/cis/3CCFEM556.cis.ihex' +rm -f 'firmware/cis/3CXEM556.cis.ihex' +rm -f 'firmware/cis/COMpad2.cis.ihex' +rm -f 'firmware/cis/COMpad4.cis.ihex' +rm -f 'firmware/cis/DP83903.cis.ihex' +rm -f 'firmware/cis/LA-PCM.cis.ihex' +rm -f 'firmware/cis/MT5634ZLX.cis.ihex' +rm -f 'firmware/cis/NE2K.cis.ihex' +rm -f 'firmware/cis/PCMLM28.cis.ihex' +rm -f 'firmware/cis/PE-200.cis.ihex' +rm -f 'firmware/cis/PE520.cis.ihex' +rm -f 'firmware/cis/RS-COM-2P.cis.ihex' +rm -f 'firmware/cis/SW_555_SER.cis.ihex' +rm -f 'firmware/cis/SW_7xx_SER.cis.ihex' +rm -f 'firmware/cis/SW_8xx_SER.cis.ihex' +rm -f 'firmware/cis/tamarack.cis.ihex' +rm -f 'firmware/cpia2/stv0672_vp4.bin.ihex' +rm -f 'firmware/cxgb3/ael2005_opt_edc.bin.ihex' +rm -f 'firmware/cxgb3/ael2005_twx_edc.bin.ihex' +rm -f 'firmware/cxgb3/ael2020_twx_edc.bin.ihex' +rm -f 'firmware/cxgb3/t3b_psram-1.1.0.bin.ihex' +rm -f 'firmware/cxgb3/t3c_psram-1.1.0.bin.ihex' +rm -f 'firmware/dsp56k/bootstrap.asm' +rm -f 'firmware/dsp56k/bootstrap.bin.ihex' +rm -f 'firmware/edgeport/boot.H16' +rm -f 'firmware/edgeport/boot2.H16' +rm -f 'firmware/edgeport/down.H16' +rm -f 'firmware/edgeport/down2.H16' +rm -f 'firmware/edgeport/down3.bin.ihex' +rm -f 'firmware/ess/maestro3_assp_kernel.fw.ihex' +rm -f 'firmware/ess/maestro3_assp_minisrc.fw.ihex' +rm -f 'firmware/kaweth/new_code.bin.ihex' +rm -f 'firmware/kaweth/new_code_fix.bin.ihex' +rm -f 'firmware/kaweth/trigger_code.bin.ihex' +rm -f 'firmware/kaweth/trigger_code_fix.bin.ihex' +rm -f 'firmware/keyspan/mpr.HEX' +rm -f 'firmware/keyspan/usa18x.HEX' +rm -f 'firmware/keyspan/usa19.HEX' +rm -f 'firmware/keyspan/usa19qi.HEX' +rm -f 'firmware/keyspan/usa19qw.HEX' +rm -f 'firmware/keyspan/usa19w.HEX' +rm -f 'firmware/keyspan/usa28.HEX' +rm -f 'firmware/keyspan/usa28x.HEX' +rm -f 'firmware/keyspan/usa28xa.HEX' +rm -f 'firmware/keyspan/usa28xb.HEX' +rm -f 'firmware/keyspan/usa49w.HEX' +rm -f 'firmware/keyspan/usa49wlc.HEX' +rm -f 'firmware/keyspan_pda/keyspan_pda.HEX' +rm -f 'firmware/keyspan_pda/keyspan_pda.S' +rm -f 'firmware/keyspan_pda/xircom_pgs.HEX' +rm -f 'firmware/keyspan_pda/xircom_pgs.S' +rm -f 'firmware/matrox/g200_warp.H16' +rm -f 'firmware/matrox/g400_warp.H16' +rm -f 'firmware/mts_cdma.fw.ihex' +rm -f 'firmware/mts_edge.fw.ihex' +rm -f 'firmware/mts_gsm.fw.ihex' +rm -f 'firmware/myricom/lanai.bin.ihex' +rm -f 'firmware/ositech/Xilinx7OD.bin.ihex' +rm -f 'firmware/r128/r128_cce.bin.ihex' +rm -f 'firmware/radeon/R100_cp.bin.ihex' +rm -f 'firmware/radeon/R200_cp.bin.ihex' +rm -f 'firmware/radeon/R300_cp.bin.ihex' +rm -f 'firmware/radeon/R420_cp.bin.ihex' +rm -f 'firmware/radeon/R520_cp.bin.ihex' +rm -f 'firmware/radeon/R600_me.bin.ihex' +rm -f 'firmware/radeon/R600_pfp.bin.ihex' +rm -f 'firmware/radeon/RS600_cp.bin.ihex' +rm -f 'firmware/radeon/RS690_cp.bin.ihex' +rm -f 'firmware/radeon/RS780_me.bin.ihex' +rm -f 'firmware/radeon/RS780_pfp.bin.ihex' +rm -f 'firmware/radeon/RV610_me.bin.ihex' +rm -f 'firmware/radeon/RV610_pfp.bin.ihex' +rm -f 'firmware/radeon/RV620_me.bin.ihex' +rm -f 'firmware/radeon/RV620_pfp.bin.ihex' +rm -f 'firmware/radeon/RV630_me.bin.ihex' +rm -f 'firmware/radeon/RV630_pfp.bin.ihex' +rm -f 'firmware/radeon/RV635_me.bin.ihex' +rm -f 'firmware/radeon/RV635_pfp.bin.ihex' +rm -f 'firmware/radeon/RV670_me.bin.ihex' +rm -f 'firmware/radeon/RV670_pfp.bin.ihex' +rm -f 'firmware/radeon/RV710_me.bin.ihex' +rm -f 'firmware/radeon/RV710_pfp.bin.ihex' +rm -f 'firmware/radeon/RV730_me.bin.ihex' +rm -f 'firmware/radeon/RV730_pfp.bin.ihex' +rm -f 'firmware/radeon/RV770_me.bin.ihex' +rm -f 'firmware/radeon/RV770_pfp.bin.ihex' +rm -f 'firmware/sun/cassini.bin.ihex' +rm -f 'firmware/tehuti/bdx.bin.ihex' +rm -f 'firmware/ti_3410.fw.ihex' +rm -f 'firmware/ti_5052.fw.ihex' +rm -f 'firmware/ttusb-budget/dspbootcode.bin.ihex' +rm -f 'firmware/vicam/firmware.H16' +rm -f 'firmware/yam/1200.bin.ihex' +rm -f 'firmware/yam/9600.bin.ihex' +rm -f 'firmware/yamaha/ds1_ctrl.fw.ihex' +rm -f 'firmware/yamaha/ds1_dsp.fw.ihex' +rm -f 'firmware/yamaha/ds1e_ctrl.fw.ihex' +exit 0 --- linux-4.8.0.orig/debian.master/rules.d/amd64.mk +++ linux-4.8.0/debian.master/rules.d/amd64.mk @@ -0,0 +1,20 @@ +human_arch = 64 bit x86 +build_arch = x86_64 +header_arch = $(build_arch) +defconfig = defconfig +flavours = generic lowlatency +build_image = bzImage +kernel_file = arch/$(build_arch)/boot/bzImage +install_file = vmlinuz +loader = grub +vdso = vdso_install +no_dumpfile = true +uefi_signed = true +do_tools_usbip = true +do_tools_cpupower = true +do_tools_perf = true +do_tools_x86 = true +do_tools_hyperv = true +do_extras_package = true +do_tools_common = true +do_zfs = true --- linux-4.8.0.orig/debian.master/rules.d/arm64.mk +++ linux-4.8.0/debian.master/rules.d/arm64.mk @@ -0,0 +1,20 @@ +human_arch = ARMv8 +build_arch = arm64 +header_arch = arm64 +defconfig = defconfig +flavours = generic +build_image = Image.gz +kernel_file = arch/$(build_arch)/boot/Image.gz +install_file = vmlinuz +no_dumpfile = true + +loader = grub +vdso = vdso_install + +do_extras_package = true +do_tools_usbip = true +do_tools_cpupower = true +do_tools_perf = true + +do_dtbs = true +do_zfs = true --- linux-4.8.0.orig/debian.master/rules.d/armhf.mk +++ linux-4.8.0/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 + +loader = grub + +do_tools_usbip = true +do_tools_cpupower = true +do_tools_perf = true + +do_dtbs = true --- linux-4.8.0.orig/debian.master/rules.d/i386.mk +++ linux-4.8.0/debian.master/rules.d/i386.mk @@ -0,0 +1,17 @@ +human_arch = 32 bit x86 +build_arch = i386 +header_arch = x86_64 +defconfig = defconfig +flavours = generic lowlatency +build_image = bzImage +kernel_file = arch/$(build_arch)/boot/bzImage +install_file = vmlinuz +loader = grub +vdso = vdso_install +no_dumpfile = true +do_tools_usbip = true +do_tools_cpupower = true +do_tools_perf = true +do_tools_x86 = true +do_tools_hyperv = true +do_extras_package = true --- linux-4.8.0.orig/debian.master/rules.d/powerpc.mk +++ linux-4.8.0/debian.master/rules.d/powerpc.mk @@ -0,0 +1,40 @@ +human_arch = PowerPC (32 bit userspace) +build_arch = powerpc +header_arch = $(build_arch) +defconfig = pmac32_defconfig +flavours = powerpc-smp generic powerpc-e500mc powerpc64-emb +build_image = zImage +kernel_file = $(shell if [ ! -f $(builddir)/build-$*/vmlinux.strip ] && \ + [ -f $(builddir)/build-$*/vmlinux.strip.gz ]; then \ + gunzip -c $(builddir)/build-$*/vmlinux.strip.gz \ + > $(builddir)/build-$*/vmlinux.strip; \ + fi && echo vmlinux.strip) +install_file = vmlinux + +# These flavours differ +build_image_powerpc-e500mc = uImage +kernel_file_powerpc-e500mc = arch/powerpc/boot/uImage + +build_image_powerpc64-emb = uImage +kernel_file_powerpc64-emb = arch/powerpc/boot/uImage + +loader = yaboot +vdso = vdso_install + +custom_flavours = + +no_dumpfile = true +do_tools_usbip = true +do_tools_cpupower = true +do_tools_perf = true + +# Default to true and disable to ensure that the crossbuild +# override still has priority. +do_zfs = true +do_zfs_powerpc-smp = false +# do_zfs_generic = true +do_zfs_powerpc-e500mc = false +do_zfs_powerpc64-emb = false +do_extras_package = true + +family = ubuntu --- linux-4.8.0.orig/debian.master/rules.d/ppc64el.mk +++ linux-4.8.0/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 +vdso = vdso_install +loader = grub +do_extras_package = true + +do_tools_usbip = true +do_tools_cpupower = true +do_tools_perf = true + +#do_flavour_image_package = false +do_zfs = true --- linux-4.8.0.orig/debian.master/rules.d/s390x.mk +++ linux-4.8.0/debian.master/rules.d/s390x.mk @@ -0,0 +1,19 @@ +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 + +do_tools_usbip = true +do_tools_cpupower = true +do_tools_perf = true + +do_zfs = true --- linux-4.8.0.orig/debian.master/rules.d/x32.mk +++ linux-4.8.0/debian.master/rules.d/x32.mk @@ -0,0 +1,14 @@ +human_arch = 64 bit x86 (32 bit userspace) +build_arch = x86_64 +header_arch = $(build_arch) +defconfig = defconfig +flavours = +build_image = bzImage +kernel_file = arch/$(build_arch)/boot/bzImage +install_file = vmlinuz +loader = grub +vdso = vdso_install +no_dumpfile = true +uefi_signed = true + +do_flavour_image_package = false --- linux-4.8.0.orig/debian/changelog +++ linux-4.8.0/debian/changelog @@ -0,0 +1,20098 @@ +linux (4.8.0-58.63) yakkety; urgency=low + + * linux: 4.8.0-58.63 -proposed tracker (LP: #1700533) + + * CVE-2017-1000364 + - Revert "UBUNTU: SAUCE: mm: Only expand stack if guard area is hit" + - Revert "mm: do not collapse stack gap into THP" + - Revert "mm: enlarge stack guard gap" + - mm: vma_adjust: remove superfluous confusing update in remove_next == 1 case + - mm: larger stack guard gap, between vmas + - mm: fix new crash in unmapped_area_topdown() + - Allow stack to grow up to address space limit + + -- Stefan Bader Mon, 26 Jun 2017 17:31:13 +0200 + +linux (4.8.0-57.62) yakkety; urgency=low + + * linux: 4.8.0-57.62 -proposed tracker (LP: #1699035) + + * CVE-2017-1000364 + - SAUCE: mm: Only expand stack if guard area is hit + + * CVE-2017-7374 + - fscrypt: remove broken support for detecting keyring key revocation + + * CVE-2017-100363 + - char: lp: fix possible integer overflow in lp_setup() + + * CVE-2017-9242 + - ipv6: fix out of bound writes in __ip6_append_data() + + * CVE-2017-9075 + - sctp: do not inherit ipv6_{mc|ac|fl}_list from parent + + * CVE-2017-9074 + - ipv6: Prevent overrun when parsing v6 header options + + * CVE-2017-9076 + - ipv6/dccp: do not inherit ipv6_mc_list from parent + + * CVE-2017-9077 + - ipv6/dccp: do not inherit ipv6_mc_list from parent + + * CVE-2017-8890 + - dccp/tcp: do not inherit mc_list from parent + + * extend-diff-ignore should use exact matches (LP: #1693504) + - [Packaging] exact extend-diff-ignore matches + + * APST quirk needed for Intel NVMe (LP: #1686592) + - nvme: Quirk APST on Intel 600P/P3100 devices + + * regression: the 4.8 hwe kernel does not create the + /sys/block/*/device/enclosure_device:* symlinks (LP: #1691899) + - scsi: ses: Fix SAS device detection in enclosure + + * datapath: Add missing case OVS_TUNNEL_KEY_ATTR_PAD (LP: #1676679) + - openvswitch: Add missing case OVS_TUNNEL_KEY_ATTR_PAD + + * connection flood to port 445 on mounting cifs volume under kernel + (LP: #1686099) + - cifs: Do not send echoes before Negotiate is complete + + * Support IPMI system interface on Cavium ThunderX (LP: #1688132) + - i2c: octeon: Rename driver to prepare for split + - i2c: octeon: Split the driver into two parts + - [Config] CONFIG_I2C_THUNDERX=m + - i2c: thunderx: Add i2c driver for ThunderX SOC + - i2c: thunderx: Add SMBUS alert support + - i2c: octeon,thunderx: Move register offsets to struct + - i2c: octeon: Sort include files alphabetically + - i2c: octeon: Use booleon values for booleon variables + - i2c: octeon: thunderx: Add MAINTAINERS entry + - i2c: octeon: Fix set SCL recovery function + - i2c: octeon: Avoid sending STOP during recovery + - i2c: octeon: Fix high-level controller status check + - i2c: octeon: thunderx: TWSI software reset in recovery + - i2c: octeon: thunderx: Remove double-check after interrupt + - i2c: octeon: thunderx: Limit register access retries + - i2c: thunderx: Enable HWMON class probing + + * CVE-2017-5577 + - drm/vc4: Return -EINVAL on the overflow checks failing. + + * Merlin SGMII fail on Ubuntu Xenial HWE kernel (LP: #1686305) + - net: phy: marvell: fix Marvell 88E1512 used in SGMII mode + - drivers: net: phy: xgene: Fix mdio write + + * Keyboard backlight control does not work on some dell laptops. + (LP: #1693126) + - platform/x86: dell-laptop: Add Latitude 7480 and others to the DMI whitelist + - platform/x86: dell-laptop: Add keyboard backlight timeout AC settings + + * 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 + + * CVE-2017-7294 + - drm/vmwgfx: fix integer overflow in vmw_surface_define_ioctl() + + -- Juerg Haefliger Tue, 20 Jun 2017 17:04:41 +0200 + +linux (4.8.0-56.61) yakkety; urgency=low + + * CVE-2017-1000364 + - mm: enlarge stack guard gap + - mm: do not collapse stack gap into THP + + -- Stefan Bader Thu, 08 Jun 2017 12:11:39 +0200 + +linux (4.8.0-54.57) yakkety; urgency=low + + * linux: 4.8.0-54.57 -proposed tracker (LP: #1692589) + + * CVE-2017-0605 + - tracing: Use strlcpy() instead of strcpy() in __trace_find_cmdline() + + * Populating Hyper-V MSR for Ubuntu 13.10 (LP: #1193172) + - SAUCE: (no-up) hv: Supply vendor ID and package ABI + + * [Hyper-V] Implement Hyper-V PTP Source (LP: #1676635) + - hv: allocate synic pages for all present CPUs + - hv: init percpu_list in hv_synic_alloc() + - Drivers: hv: vmbus: Prevent sending data on a rescinded channel + - hv: switch to cpuhp state machine for synic init/cleanup + - hv: make CPU offlining prevention fine-grained + - Drivers: hv: vmbus: Fix a rescind handling bug + - Drivers: hv: util: kvp: Fix a rescind processing issue + - Drivers: hv: util: Fcopy: Fix a rescind processing issue + - Drivers: hv: util: Backup: Fix a rescind processing issue + - Drivers: hv: vmbus: Move the definition of hv_x64_msr_hypercall_contents + - Drivers: hv: vmbus: Move the definition of generate_guest_id() + - Revert "UBUNTU: SAUCE: (no-up) hv: Supply vendor ID and package ABI" + - Drivers: hv vmbus: Move Hypercall page setup out of common code + - Drivers: hv: vmbus: Move Hypercall invocation code out of common code + - Drivers: hv: vmbus: Consolidate all Hyper-V specific clocksource code + - Drivers: hv: vmbus: Move the extracting of Hypervisor version information + - Drivers: hv: vmbus: Move the crash notification function + - Drivers: hv: vmbus: Move the check for hypercall page setup + - Drivers: hv: vmbus: Move the code to signal end of message + - Drivers: hv: vmbus: Restructure the clockevents code + - Drivers: hv: util: Use hv_get_current_tick() to get current tick + - Drivers: hv: vmbus: Get rid of an unsused variable + - Drivers: hv: vmbus: Define APIs to manipulate the message page + - Drivers: hv: vmbus: Define APIs to manipulate the event page + - Drivers: hv: vmbus: Define APIs to manipulate the synthetic interrupt + controller + - Drivers: hv: vmbus: Define an API to retrieve virtual processor index + - Drivers: hv: vmbus: Define an APIs to manage interrupt state + - Drivers: hv: vmbus: Cleanup hyperv_vmbus.h + - hv_util: switch to using timespec64 + - Drivers: hv: restore hypervcall page cleanup before kexec + - Drivers: hv: restore TSC page cleanup before kexec + - Drivers: hv: balloon: add a fall through comment to hv_memory_notifier() + - Drivers: hv: vmbus: Use all supported IC versions to negotiate + - Drivers: hv: Log the negotiated IC versions. + - Drivers: hv: Fix the bug in generating the guest ID + - hv: export current Hyper-V clocksource + - hv_utils: implement Hyper-V PTP source + - SAUCE: (no-up) hv: Supply vendor ID and package ABI + + * CIFS: Enable encryption for SMB3 (LP: #1670508) + - SMB3: Add mount parameter to allow user to override max credits + - SMB2: Separate Kerberos authentication from SMB2_sess_setup + - SMB2: Separate RawNTLMSSP authentication from SMB2_sess_setup + - SMB3: parsing for new snapshot timestamp mount parm + - cifs: Simplify SMB2 and SMB311 dependencies + - cifs: Only select the required crypto modules + - cifs: Add soft dependencies + - CIFS: Separate SMB2 header structure + - CIFS: Make SendReceive2() takes resp iov + - CIFS: Make send_cancel take rqst as argument + - CIFS: Send RFC1001 length in a separate iov + - CIFS: Separate SMB2 sync header processing + - CIFS: Separate RFC1001 length processing for SMB2 read + - CIFS: Add capability to transform requests before sending + - CIFS: Enable encryption during session setup phase + - CIFS: Encrypt SMB3 requests before sending + - CIFS: Add transform header handling callbacks + - CIFS: Add mid handle callback + - CIFS: Add copy into pages callback for a read operation + - CIFS: Decrypt and process small encrypted packets + - CIFS: Add capability to decrypt big read responses + - CIFS: Allow to switch on encryption with seal mount option + - CIFS: Fix possible use after free in demultiplex thread + + * APST quirk needed for Samsung 512GB NVMe drive (LP: #1678184) + - nvme: Adjust the Samsung APST quirk + - nvme: Quirk APST off on "THNSF5256GPUK TOSHIBA" + + -- Kleber Sacilotto de Souza Mon, 22 May 2017 18:56:12 +0200 + +linux (4.8.0-53.56) yakkety; urgency=low + + * linux: 4.8.0-53.56 -proposed tracker (LP: #1690956) + + * bond0: Invalid MTU 9000 requested, hw max 1500 with kernel 4.8 / 4.10 in + XENIAL LTS (LP: #1679823) + - Revert "ethernet: use net core MTU range checking in more drivers" + - Revert "Drivers: hv: ring_buffer: count on wrap around mappings in + get_next_pkt_raw() (v2)" + - Revert "hyperv: Fix spelling of HV_UNKOWN" + - Revert "uio-hv-generic: new userspace i/o driver for VMBus" + - Revert "UBUNTU: [Config] CONFIG_UIO_HV_GENERIC=m" + - Revert "Drivers: hv: balloon: Add logging for dynamic memory operations" + - Revert "Drivers: hv: balloon: Fix info request to show max page count" + - Revert "Drivers: hv: balloon: Disable hot add when CONFIG_MEMORY_HOTPLUG is + not set" + - Revert "hv: change clockevents unbind tactics" + - Revert "Drivers: hv: vss: Improve log messages." + - Revert "Drivers: hv: utils: Fix the mapping between host version and + protocol to use" + - Revert "Drivers: hv: utils: reduce HV_UTIL_NEGO_TIMEOUT timeout" + - Revert "vmbus: add support for dynamic device id's" + - Revert "tools: hv: remove unnecessary header files and netlink related code" + - Revert "tools: hv: fix a compile warning in snprintf" + - Revert "net: use core MTU range checking in virt drivers" + - Revert "hv_netvsc: fix a race between netvsc_send() and netvsc_init_buf()" + - Revert "net: use core MTU range checking in virt drivers" + - Revert "net: deprecate eth_change_mtu, remove usage" + - Revert "net: centralize net_device min/max MTU checking" + - Revert "hv_netvsc: remove excessive logging on MTU change" + - Revert "scsi: storvsc: Payload buffer incorrectly sized for 32 bit kernels." + - Revert "PCI: hv: Use the correct buffer size in new_pcichild_device()" + - Revert "PCI: hv: Fix wslot_to_devfn() to fix warnings on device removal" + - Revert "PCI: hv: Use device serial number as PCI domain" + - [Config] Add uio_hv_generic to modules.ignore for 4.8.0-52.55 abi + + -- Thadeu Lima de Souza Cascardo Mon, 15 May 2017 21:06:52 -0300 + +linux (4.8.0-52.55) yakkety; urgency=low + + * linux: 4.8.0-52.55 -proposed tracker (LP: #1686976) + + * CVE-2017-7477: macsec: avoid heap overflow in skb_to_sgvec (LP: #1685892) + - macsec: avoid heap overflow in skb_to_sgvec + - macsec: dynamically allocate space for sglist + + * net/ipv4: original ingress device index set as the loopback interface. + (LP: #1683982) + - net: fix incorrect original ingress device index in PKTINFO + + * Touchpad not working correctly after kernel upgrade (LP: #1662589) + - Input: ALPS - fix V8+ protocol handling (73 03 28) + + * ifup service of network device stay active after driver stop (LP: #1672144) + - net: use net->count to check whether a netns is alive or not + + * [Hyper-V] mkfs regression in kernel 4.4+ (LP: #1682215) + - block: relax check on sg gap + + * Potential memory corruption with capi adapters (LP: #1681469) + - powerpc/mm: Add missing global TLB invalidate if cxl is active + + * [Hyper-V/Azure] Please include Mellanox OFED drivers in Azure kernel and + image (LP: #1650058) + - net/mlx4_en: Fix bad WQE issue + - net/mlx4_core: Fix racy CQ (Completion Queue) free + - net/mlx4_core: Fix when to save some qp context flags for dynamic VST to VGT + transitions + - net/mlx4_core: Avoid command timeouts during VF driver device shutdown + + -- Stefan Bader Fri, 28 Apr 2017 12:17:12 +0200 + +linux (4.8.0-51.54) yakkety; urgency=low + + * linux: 4.8.0-51.54 -proposed tracker (LP: #1686070) + + * [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 + + -- Kleber Sacilotto de Souza Tue, 25 Apr 2017 13:08:56 +0200 + +linux (4.8.0-50.53) yakkety; urgency=low + + * linux: 4.8.0-50.53 -proposed tracker (LP: #1685847) + + * ubuntu 4.8 kernel, virtio_net error causes NAT packets to be lost + (LP: #1683947) + - virtio_net: Simplify call sites for virtio_net_hdr_{from, to}_skb(). + - virtio: don't set VIRTIO_NET_HDR_F_DATA_VALID on xmit + - virtio-net: restore VIRTIO_HDR_F_DATA_VALID on receiving + + -- Thadeu Lima de Souza Cascardo Mon, 24 Apr 2017 13:47:28 -0300 + +linux (4.8.0-49.52) yakkety; urgency=low + + * linux: 4.8.0-49.52 -proposed tracker (LP: #1684427) + + * [Hyper-V] hv: util: move waiting for release to hv_utils_transport itself + (LP: #1682561) + - Drivers: hv: util: move waiting for release to hv_utils_transport itself + + -- Stefan Bader Thu, 20 Apr 2017 09:38:36 +0200 + +linux (4.8.0-48.51) yakkety; urgency=low + + * linux: 4.8.0-48.51 -proposed tracker (LP: #1682034) + + * [Hyper-V] hv: vmbus: Raise retry/wait limits in vmbus_post_msg() + (LP: #1681893) + - Drivers: hv: vmbus: Raise retry/wait limits in vmbus_post_msg() + + -- Kleber Sacilotto de Souza Wed, 12 Apr 2017 11:06:01 +0200 + +linux (4.8.0-47.50) yakkety; urgency=low + + * linux: 4.8.0-47.50 -proposed tracker (LP: #1679678) + + * CVE-2017-6353 + - sctp: deny peeloff operation on asocs with threads sleeping on it + + * CVE-2017-5986 + - sctp: avoid BUG_ON on sctp_wait_for_sndbuf + + * vfat: missing iso8859-1 charset (LP: #1677230) + - [Config] NLS_ISO8859_1=y + + * [Hyper-V] pci-hyperv: Use device serial number as PCI domain (LP: #1667527) + - net/mlx4_core: Use cq quota in SRIOV when creating completion EQs + + * Regression: KVM modules should be on main kernel package (LP: #1678099) + - [Config] powerpc: Add kvm-hv and kvm-pr to the generic inclusion list + + * linux-lts-xenial 4.4.0-63.84~14.04.2 ADT test failure with linux-lts-xenial + 4.4.0-63.84~14.04.2 (LP: #1664912) + - SAUCE: apparmor: fix link auditing failure due to, uninitialized var + + * regession tests failing after stackprofile test is run (LP: #1661030) + - SAUCE: fix regression with domain change in complain mode + + * Permission denied and inconsistent behavior in complain mode with 'ip netns + list' command (LP: #1648903) + - SAUCE: fix regression with domain change in complain mode + + * unexpected errno=13 and disconnected path when trying to open /proc/1/ns/mnt + from a unshared mount namespace (LP: #1656121) + - SAUCE: apparmor: null profiles should inherit parent control flags + + * apparmor refcount leak of profile namespace when removing profiles + (LP: #1660849) + - SAUCE: apparmor: fix ns ref count link when removing profiles from policy + + * tor in lxd: apparmor="DENIED" operation="change_onexec" + namespace="root//CONTAINERNAME_" profile="unconfined" + name="system_tor" (LP: #1648143) + - SAUCE: apparmor: Fix no_new_privs blocking change_onexec when using stacked + namespaces + + * apparmor oops in bind_mnt when dev_path lookup fails (LP: #1660840) + - SAUCE: apparmor: fix oops in bind_mnt when dev_path lookup fails + + * apparmor auditing denied access of special apparmor .null fi\ le + (LP: #1660836) + - SAUCE: apparmor: Don't audit denied access of special apparmor .null file + + * apparmor label leak when new label is unused (LP: #1660834) + - SAUCE: apparmor: fix label leak when new label is unused + + * apparmor reference count bug in label_merge_insert() (LP: #1660833) + - SAUCE: apparmor: fix reference count bug in label_merge_insert() + + * apparmor's raw_data file in securityfs is sometimes truncated (LP: #1638996) + - SAUCE: apparmor: fix replacement race in reading rawdata + + * unix domain socket cross permission check failing with nested namespaces + (LP: #1660832) + - SAUCE: apparmor: fix cross ns perm of unix domain sockets + + * [Hyper-V][Mellanox] net/mlx4_core: Avoid delays during VF driver device + shutdown (LP: #1672785) + - Revert "net/mlx4_en: Avoid unregister_netdev at shutdown flow" + - net/mlx4_core: Avoid delays during VF driver device shutdown + + * Update ENA driver to 1.1.2 from net-next (LP: #1664312) + - net: ena: Remove unnecessary pci_set_drvdata() + - net: ena: Fix error return code in ena_device_init() + - net: ena: change the return type of ena_set_push_mode() to be void. + - net: ena: use setup_timer() and mod_timer() + - net/ena: remove ntuple filter support from device feature list + - net/ena: fix queues number calculation + - net/ena: fix ethtool RSS flow configuration + - net/ena: fix RSS default hash configuration + - net/ena: fix NULL dereference when removing the driver after device reset + failed + - net/ena: refactor ena_get_stats64 to be atomic context safe + - net/ena: fix potential access to freed memory during device reset + - net/ena: use READ_ONCE to access completion descriptors + - net/ena: reduce the severity of ena printouts + - net/ena: change driver's default timeouts + - net/ena: change condition for host attribute configuration + - net/ena: update driver version to 1.1.2 + + * ISST-LTE:pVM:roselp4:ubuntu16.04.2: number of numa_miss and numa_foreign + wrong in numastat (LP: #1672953) + - mm: fix remote numa hits statistics + - mm: get rid of __GFP_OTHER_NODE + + * Using an NVMe drive causes huge power drain (LP: #1664602) + - nvme/scsi: Remove power management support + - nvme: Pass pointers, not dma addresses, to nvme_get/set_features() + - nvme: introduce struct nvme_request + - nvme: Add a quirk mechanism that uses identify_ctrl + - nvme: Enable autonomous power state transitions + + * POWER9: Additional patches for TTY and CPU_IDLE (LP: #1674325) + - tty: Fix ldisc crash on reopened tty + - SAUCE: powerpc/powernv/cpuidle: Pass correct drv->cpumask for registration + + * Ubuntu 16.10: Network checksum fixes needed for IPoIB for Mellanox CX4/CX5 + card (LP: #1670247) + - Revert "powerpc: port 64 bits pgtable_cache to 32 bits" + - powerpc/Makefile: Drop CONFIG_WORD_SIZE for BITS + - powerpc: port 64 bits pgtable_cache to 32 bits + - [Config] CONFIG_WORD_SIZE disappeared + - powerpc/64: Fix checksum folding in csum_tcpudp_nofold and + ip_fast_csum_nofold + - powerpc/64: Use optimized checksum routines on little-endian + - CONFIG_GENERIC_CSUM=n for ppc64el + - powerpc/64: Fix checksum folding in csum_add() + + * [Hyper-V] Rebase Hyper-V to the upstream 4.10 kernel (LP: #1670544) + - PCI: hv: Use device serial number as PCI domain + - PCI: hv: Fix wslot_to_devfn() to fix warnings on device removal + - PCI: hv: Use the correct buffer size in new_pcichild_device() + - scsi: storvsc: Payload buffer incorrectly sized for 32 bit kernels. + - hv_netvsc: remove excessive logging on MTU change + - net: centralize net_device min/max MTU checking + - net: deprecate eth_change_mtu, remove usage + - net: use core MTU range checking in virt drivers + - hv_netvsc: fix a race between netvsc_send() and netvsc_init_buf() + - net: use core MTU range checking in virt drivers + - tools: hv: fix a compile warning in snprintf + - tools: hv: remove unnecessary header files and netlink related code + - vmbus: add support for dynamic device id's + - Drivers: hv: utils: reduce HV_UTIL_NEGO_TIMEOUT timeout + - Drivers: hv: utils: Fix the mapping between host version and protocol to use + - Drivers: hv: vss: Improve log messages. + - hv: change clockevents unbind tactics + - Drivers: hv: balloon: Disable hot add when CONFIG_MEMORY_HOTPLUG is not set + - Drivers: hv: balloon: Fix info request to show max page count + - Drivers: hv: balloon: Add logging for dynamic memory operations + - [Config] CONFIG_UIO_HV_GENERIC=m + - uio-hv-generic: new userspace i/o driver for VMBus + - hyperv: Fix spelling of HV_UNKOWN + - Drivers: hv: ring_buffer: count on wrap around mappings in + get_next_pkt_raw() (v2) + - ethernet: use net core MTU range checking in more drivers + + * Kernel linux-image-4.4.0-67-generic prevent the boot on Microsoft Hyper-v + 2012r2 Gen2 VM (LP: #1674635) + - scsi: storvsc: Workaround for virtual DVD SCSI version + + * Enable lspcon on i915 (LP: #1676747) + - drm: Helper for lspcon in drm_dp_dual_mode + - drm/i915: Add lspcon support for I915 driver + - drm/i915: Parse VBT data for lspcon + - drm/i915: Enable lspcon initialization + - drm/i915: Add lspcon resume function + + * stress_smoke_test passing and exiting rc=9 (linux 4.9.0-12.13 ADT test + failure with linux 4.9.0-12.13) (LP: #1658633) + - ext4: lock the xattr block before checksuming it + + * ip_rcv_finish() NULL pointer kernel panic (LP: #1672470) + - (upstream) bridge: drop netfilter fake rtable unconditionally + + * dm-queue-length module is not included in installer/initramfs (LP: #1673350) + - d-i: Also add dm-queue-length to multipath modules + + * Broadcom bluetooth modules sometimes fail to initialize (LP: #1483101) + - Bluetooth: btbcm: Add a delay for module reset + + * Need support of Broadcom bluetooth device [413c:8143] (LP: #1166113) + - Bluetooth: btusb: Add support for 413c:8143 + + * Unable to Connect Third HDD via USB Hub (LP: #1663991) + - mm/slub.c: fix random_seq offset destruction + + * POWER9 : Enable Stop 0-2 with ESL=EC=0 (LP: #1666197) + - powernv:idle: Add IDLE_STATE_ENTER_SEQ_NORET macro + - powernv:stop: Rename pnv_arch300_idle_init to pnv_power9_idle_init + - cpuidle:powernv: Add helper function to populate powernv idle states. + - powernv: Pass PSSCR value and mask to power9_idle_stop + - Documentation:powerpc: Add device-tree bindings for power-mgt + - powerpc/powernv: Fix bug due to labeling ambiguity in power_enter_stop + + * Nvlink2: Additional patches (LP: #1667081) + - mm: enable CONFIG_MOVABLE_NODE on non-x86 arches + - of/fdt: mark hotpluggable memory + - dt: add documentation of "hotpluggable" memory property + - powerpc/mm: Fix memory hotplug BUG() on radix + - powerpc/powernv: Initialise nest mmu + - powerpc/powernv: Use OPAL call for TCE kill on NVLink2 + - powerpc/mm: refactor radix physical page mapping + - powerpc/mm: add radix__create_section_mapping() + - powerpc/mm: add radix__remove_section_mapping() + - powerpc/mm: unstub radix__vmemmap_remove_mapping() + - [Config] Update CONFIG_MOVABLE_NODE values and annotations + - [Config] CONFIG_MOVABLE_NODE=n for s390x + + * FC Adapter (LPe32000-based) prints "iotag out of range", goes offline, and + delays boot a lot (Ubuntu17.04/Emulex/lpfc)) (LP: #1670490) + - scsi: lpfc: Correct WQ creation for pagesize + - scsi: lpfc: Add missing memory barrier + + * CIFS: Call echo service immediately after socket reconnect (LP: #1669941) + - Call echo service immediately after socket reconnect + + * Kernel: Fix Transactional memory config typo (LP: #1669023) + - powerpc/process: Fix CONFIG_ALIVEC typo in restore_tm_state() + + * h-prod does not function across cores (LP: #1670726) + - KVM: PPC: Book3S HV: Fix H_PROD to actually wake the target vcpu + + * [Hyper-V] Missing PCI patches breaking SR-IOV hot remove (LP: #1670518) + - PCI: hv: Fix hv_pci_remove() for hot-remove + - PCI: hv: Delete the device earlier from hbus->children for hot-remove + - PCI: hv: Make unnecessarily global IRQ masking functions static + - PCI: hv: Allocate physically contiguous hypercall params buffer + + * move aufs.ko from -extra to linux-image package (LP: #1673498) + - [config] aufs.ko moved to linux-image package + + * POWER9: Improve CAS negotiation (LP: #1671169) + - powerpc: Parse the command line before calling CAS + - powerpc: Add missing error check to prom_find_boot_cpu() + - powerpc/pseries: Advertise HPT resizing support via CAS + - powerpc/64: Disable use of radix under a hypervisor + - powerpc/pseries: Advertise Hot Plug Event support to firmware + - powerpc: Update to new option-vector-5 format for CAS + + * Power9 kernel: add virtualization patches (LP: #1670800) + - powerpc/fadump: Set core e_flags using kernel's ELF ABI version + - powerpc/sparse: Add more assembler prototypes + - powerpc/pasemi: Fix Nemo SB600 i8259 interrupts. + - powerpc/pasemi: Fix device_type of Nemo SB600 node. + - powerpc/pseries: Use H_CLEAR_HPT to clear MMU hash table during kexec + - powerpc/pseries: Move CMO code from plapr_wrappers.h to platforms/pseries + - powerpc: Fix old style declaration GCC warnings + - powerpc/pseries: add definitions for new H_SIGNAL_SYS_RESET hcall + - powerpc/prom: Define structs for client architecture vectors + - powerpc/prom: Switch to using structs for ibm_architecture_vec + - tracing: Have the reg function allow to fail + - powerpc: port 64 bits pgtable_cache to 32 bits + - powerpc/64: Don't try to use radix MMU under a hypervisor + - powerpc/pseries: Fixes for the "ibm,architecture-vec-5" options + - powerpc/64: Enable use of radix MMU under hypervisor on POWER9 + + * lsattr 32bit does not work on 64bit kernel (Inappropriate ioctl error) + (LP: #1619918) + - btrfs: fix btrfs_compat_ioctl failures on non-compat ioctls + + * linux-tools-common should Depends: lsb-release (LP: #1667571) + - [Config] linux-tools-common depends on lsb-release + + * CAPI:Ubuntu: Kernel panic while rebooting (LP: #1667599) + - pci/hotplug/pnv-php: Remove WARN_ON() in pnv_php_put_slot() + + * Add Use-After-Free Patch for Ubuntu16.10 - EEH on BELL3 adapter fails to + recover (serial/tty) (LP: #1669153) + - 8250_pci: Fix potential use-after-free in error path + + * Request to backport cxlflash patches to Xenial SRU stream (LP: #1623750) + - scsi: cxlflash: Scan host only after the port is ready for I/O + - scsi: cxlflash: Fix to avoid EEH and host reset collisions + - scsi: cxlflash: Improve EEH recovery time + + * FlashGT Integration and Setup: fsbmc30: After 17th reboot of soft bootme, + HTX & Linux errors seen with 256 virtual LUNs (LP: #1667239) + - cxl: Fix coredump generation when cxl_get_fd() is used + + * POWER9: Additional patches for 17.04 and 16.04.2 (LP: #1667116) + - powerpc/mm: Update PROTFAULT handling in the page fault path + - powerpc/mm/radix: Update pte update sequence for pte clear case + - powerpc/mm/radix: Use ptep_get_and_clear_full when clearing pte for full mm + - powerpc/mm/radix: Skip ptesync in pte update helpers + - SAUCE: powerpc/mm/hash: Always clear UPRT and Host Radix bits when setting + up CPU + + * [Hyper-V] Ubuntu 14.04.2 LTS Generation 2 SCSI Errors on VSS Based Backups + (LP: #1470250) + - Drivers: hv: vss: Operation timeouts should match host expectation + - SAUCE: Tools: hv: vss: Thaw the filesystem and continue after freeze fails + + * PowerNV: No rate limit for kernel error "KVM can't copy data from" + (LP: #1667416) + - SAUCE: KVM: PPC: Book3S: Ratelimit copy data failure error messages + + * kernel 4.4.0-63 with USB WLAN RTL8192CU freezes desktop (LP: #1666421) + - rtlwifi: rtl_usb: Fix missing entry in USB driver's private data + + * Export symbol "dev_pm_qos_update_user_latency_tolerance" (LP: #1666401) + - PM / QoS: Export dev_pm_qos_update_user_latency_tolerance + + * Linux ZFS port doesn't respect RLIMIT_FSIZE (LP: #1656259) + - SAUCE: (noup) Update zfs to 0.6.5.8-0ubuntu4.2 + + -- Thadeu Lima de Souza Cascardo Tue, 04 Apr 2017 16:56:40 +0100 + +linux (4.8.0-46.49) yakkety; urgency=low + + * linux: 4.8.0-46.49 -proposed tracker (LP: #1678046) + + * Fix CVE-2017-7308 (LP: #1678009) + - net/packet: fix overflow in check for priv area size + - net/packet: fix overflow in check for tp_frame_nr + - net/packet: fix overflow in check for tp_reserve + + -- Stefan Bader Fri, 31 Mar 2017 09:13:32 +0200 + +linux (4.8.0-45.48) yakkety; urgency=low + + * CVE-2017-7184 + - xfrm_user: validate XFRM_MSG_NEWAE XFRMA_REPLAY_ESN_VAL replay_window + - xfrm_user: validate XFRM_MSG_NEWAE incoming ESN size harder + + -- Stefan Bader Fri, 24 Mar 2017 12:03:39 +0100 + +linux (4.8.0-44.47) yakkety; urgency=low + + * linux: 4.8.0-44.47 -proposed tracker (LP: #1674986) + + * snaps with classic + jailmode confinement started to fail on zesty + (LP: #1666897) + - Revert "UBUNTU: SAUCE: apparmor: fix link auditing failure due to, + uninitialized var" + - Revert "UBUNTU: SAUCE: fix regression with domain change in complain mode" + - Revert "UBUNTU: SAUCE: apparmor: flock mediation is not being enforced on + cache check" + - Revert "UBUNTU: SAUCE: apparmor: null profiles should inherit parent control + flags" + - Revert "UBUNTU: SAUCE: apparmor: fix ns ref count link when removing + profiles from policy" + - Revert "UBUNTU: SAUCE: apparmor: Fix no_new_privs blocking change_onexec + when using stacked namespaces" + - Revert "UBUNTU: SAUCE: apparmor: fix oops in bind_mnt when dev_path lookup + fails" + - Revert "UBUNTU: SAUCE: apparmor: Don't audit denied access of special + apparmor .null file" + - Revert "UBUNTU: SAUCE: apparmor: fix label leak when new label is unused" + - Revert "UBUNTU: SAUCE: apparmor: fix reference count bug in + label_merge_insert()" + - Revert "UBUNTU: SAUCE: apparmor: fix replacement race in reading rawdata" + - Revert "UBUNTU: SAUCE: apparmor: fix cross ns perm of unix domain sockets" + + -- Thadeu Lima de Souza Cascardo Wed, 22 Mar 2017 10:22:27 -0300 + +linux (4.8.0-42.45) yakkety; urgency=low + + * linux: 4.8.0-42.45 -proposed tracker (LP: #1671176) + + * Regression in 4.4.0-65-generic causes very frequent system crashes + (LP: #1669611) + - Revert "UBUNTU: SAUCE: apparmor: fix lock ordering for mkdir" + - Revert "UBUNTU: SAUCE: apparmor: fix leak on securityfs pin count" + - Revert "UBUNTU: SAUCE: apparmor: fix reference count leak when + securityfs_setup_d_inode() fails" + - Revert "UBUNTU: SAUCE: apparmor: fix not handling error case when + securityfs_pin_fs() fails" + + * NFS client : permission denied when trying to access subshare, since kernel + 4.4.0-31 (LP: #1649292) + - fs: Better permission checking for submounts + + * shaking screen (LP: #1651981) + - drm/radeon: drop verde dpm quirks + + * [0bda:0328] Card reader failed after S3 (LP: #1664809) + - usb: hub: Wait for connection to be reestablished after port reset + + * linux-lts-xenial 4.4.0-63.84~14.04.2 ADT test failure with linux-lts-xenial + 4.4.0-63.84~14.04.2 (LP: #1664912) + - SAUCE: apparmor: fix link auditing failure due to, uninitialized var + + * In Ubuntu 17.04 : after reboot getting message in console like Unable to + open file: /etc/keys/x509_ima.der (-2) (LP: #1656908) + - SAUCE: ima: Downgrade error to warning + + * 16.04.2: Extra patches for POWER9 (LP: #1664564) + - powerpc/mm: Fix no execute fault handling on pre-POWER5 + - powerpc/mm: Fix spurrious segfaults on radix with autonuma + + * ibmvscsis: Add SGL LIMIT (LP: #1662551) + - ibmvscsis: Add SGL limit + + * [Hyper-V] Bug fixes for storvsc (tagged queuing, error conditions) + (LP: #1663687) + - scsi: storvsc: Enable tracking of queue depth + - scsi: storvsc: Remove the restriction on max segment size + - scsi: storvsc: Enable multi-queue support + - scsi: storvsc: use tagged SRB requests if supported by the device + - scsi: storvsc: properly handle SRB_ERROR when sense message is present + - scsi: storvsc: properly set residual data length on errors + + * Ubuntu16.10-KVM:Big configuration with multiple guests running SRIOV VFs + caused KVM host hung and all KVM guests down. (LP: #1651248) + - KVM: PPC: Book 3S: XICS cleanup: remove XICS_RM_REJECT + - KVM: PPC: Book 3S: XICS: correct the real mode ICP rejecting counter + - KVM: PPC: Book 3S: XICS: Fix potential issue with duplicate IRQ resends + - KVM: PPC: Book 3S: XICS: Implement ICS P/Q states + - KVM: PPC: Book 3S: XICS: Don't lock twice when checking for resend + + * ISST-LTE:pNV: ppc64_cpu command is hung w HDs, SSDs and NVMe (LP: #1662666) + - blk-mq: Avoid memory reclaim when remapping queues + - blk-mq: Fix failed allocation path when mapping queues + - blk-mq: Always schedule hctx->next_cpu + + * systemd-udevd hung in blk_mq_freeze_queue_wait testing unpartitioned NVMe + drive (LP: #1662673) + - percpu-refcount: fix reference leak during percpu-atomic transition + + * [Yakkety SRU] Enable KEXEC support in ARM64 kernel (LP: #1662554) + - [Config] Enable KEXEC support in ARM64. + + * [Hyper-V] Fix ring buffer handling to avoid host throttling (LP: #1661430) + - Drivers: hv: vmbus: On write cleanup the logic to interrupt the host + - Drivers: hv: vmbus: On the read path cleanup the logic to interrupt the host + - Drivers: hv: vmbus: finally fix hv_need_to_signal_on_read() + + * brd module compiled as built-in (LP: #1593293) + - CONFIG_BLK_DEV_RAM=m + + * regession tests failing after stackprofile test is run (LP: #1661030) + - SAUCE: fix regression with domain change in complain mode + + * Permission denied and inconsistent behavior in complain mode with 'ip netns + list' command (LP: #1648903) + - SAUCE: fix regression with domain change in complain mode + + * flock not mediated by 'k' (LP: #1658219) + - SAUCE: apparmor: flock mediation is not being enforced on cache check + + * unexpected errno=13 and disconnected path when trying to open /proc/1/ns/mnt + from a unshared mount namespace (LP: #1656121) + - SAUCE: apparmor: null profiles should inherit parent control flags + + * apparmor refcount leak of profile namespace when removing profiles + (LP: #1660849) + - SAUCE: apparmor: fix ns ref count link when removing profiles from policy + + * tor in lxd: apparmor="DENIED" operation="change_onexec" + namespace="root//CONTAINERNAME_" profile="unconfined" + name="system_tor" (LP: #1648143) + - SAUCE: apparmor: Fix no_new_privs blocking change_onexec when using stacked + namespaces + + * 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 + + * apparmor oops in bind_mnt when dev_path lookup fails (LP: #1660840) + - SAUCE: apparmor: fix oops in bind_mnt when dev_path lookup fails + + * apparmor auditing denied access of special apparmor .null fi\ le + (LP: #1660836) + - SAUCE: apparmor: Don't audit denied access of special apparmor .null file + + * apparmor label leak when new label is unused (LP: #1660834) + - SAUCE: apparmor: fix label leak when new label is unused + + * apparmor reference count bug in label_merge_insert() (LP: #1660833) + - SAUCE: apparmor: fix reference count bug in label_merge_insert() + + * apparmor's raw_data file in securityfs is sometimes truncated (LP: #1638996) + - SAUCE: apparmor: fix replacement race in reading rawdata + + * unix domain socket cross permission check failing with nested namespaces + (LP: #1660832) + - SAUCE: apparmor: fix cross ns perm of unix domain sockets + + * Enable CONFIG_NET_DROP_MONITOR=m in Ubuntu Kernel (LP: #1660634) + - [Config] CONFIG_NET_DROP_MONITOR=m + + * Linux kernel 4.8 hangs at boot up (LP: #1659340) + - SAUCE: x86/efi: Always map first physical page into EFI pagetables + + * s390/kconfig: CONFIG_NUMA without CONFIG_NUMA_EMU does not make any sense on + s390x (LP: #1557690) + - [Config] CONFIG_NUMA_BALANCING=y + - [Config] CONFIG_NUMA=y, CONFIG_NUMA_EMU=y for s390x + + -- Thadeu Lima de Souza Cascardo Wed, 08 Mar 2017 14:37:04 -0300 + +linux (4.8.0-41.44) yakkety; urgency=low + + * CVE-2017-2636 + - tty: n_hdlc: get rid of racy n_hdlc.tbuf + + -- Stefan Bader Fri, 03 Mar 2017 12:23:03 +0100 + +linux (4.8.0-39.42) yakkety; urgency=low + + * CVE-2017-6074 (LP: #1665935) + - dccp: fix freeing skb too early for IPV6_RECVPKTINFO + + -- Stefan Bader Mon, 20 Feb 2017 09:30:56 +0100 + +linux (4.8.0-38.41) yakkety; urgency=low + + [ Thadeu Lima de Souza Cascardo ] + + * Release Tracking Bug + - LP: #1661232 + + * Backport Dirty COW patch to prevent wineserver freeze (LP: #1658270) + - SAUCE: mm: Respect FOLL_FORCE/FOLL_COW for thp + + * Kdump through NMI SMP and single core not working on Ubuntu16.10 + (LP: #1630924) + - x86/hyperv: Handle unknown NMIs on one CPU when unknown_nmi_panic + - SAUCE: hv: don't reset hv_context.tsc_page on crash + + * Call trace when testing fstat stressor on ppc64el with virtual keyboard and + mouse present (LP: #1652132) + - HID: usbhid: Quirk a AMI virtual mouse and keyboard with ALWAYS_POLL + + * regression in linux-libc-dev in yakkety: C++ style comments are not allowed + in ISO C90 (LP: #1659654) + - generic syscalls: kill cruft from removed pkey syscalls + + * [16.04.2] POWER9 patches on top of 4.8 (LP: #1650263) + - powerpc/book3s: Add a cpu table entry for different POWER9 revs + - powerpc/mm/radix: Use different RTS encoding for different POWER9 revs + - powerpc/mm/radix: Use different pte update sequence for different POWER9 + revs + - powerpc/mm: Update the HID bit when switching from radix to hash + - powerpc/64/kexec: NULL check "clear_all" in kexec_sequence + - powerpc/64/kexec: Fix MMU cleanup on radix + - powerpc/mm: Add radix flush all with IS=3 + - powerpc/64/kexec: Copy image with MMU off when possible + - powerpc/64: Simplify adaptation to new ISA v3.00 HPTE format + - powerpc/mm/radix: Invalidate ERAT on tlbiel for POWER9 DD1 + - powerpc/mm: Fix missing update of HID register on secondary CPUs + - powerpc/64: Add some more SPRs and SPR bits for POWER9 + - powerpc/64: Provide functions for accessing POWER9 partition table + - powerpc/powernv: Define real-mode versions of OPAL XICS accessors + - powerpc/64: Define new ISA v3.00 logical PVR value and PCR register value + - mm: update mmu_gather range correctly + - mm/hugetlb: add tlb_remove_hugetlb_entry for handling hugetlb pages + - mm: add tlb_remove_check_page_size_change to track page size change + - powerpc: Revert Load Monitor Register Support + - powerpc/mm: Correct process and partition table max size + - powernv: Clear SPRN_PSSCR when a POWER9 CPU comes online + - powerpc/mm/radix: Setup AMOR in HV mode to allow key 0 + - powerpc/mm: Detect instruction fetch denied and report + - powerpc/mm/radix: Prevent kernel execution of user space + - powerpc/mm: Rename hugetlb-radix.h to hugetlb.h + - powerpc/mm/hugetlb: Handle hugepage size supported by hash config + - powerpc/mm: Introduce _PAGE_LARGE software pte bits + - powerpc/mm: Add radix__tlb_flush_pte_p9_dd1() + - powerpc/mm: update radix__ptep_set_access_flag to not do full mm tlb flush + - powerpc/mm: update radix__pte_update to not do full mm tlb flush + - powerpc/mm: Batch tlb flush when invalidating pte entries + - powerpc/sparse: Make a bunch of things static + - powerpc/perf: factor out the event format field + - powerpc/perf: update attribute_group data structure + - powerpc/perf: power9 raw event format encoding + - powerpc/perf: macros for power9 format encoding + - KVM: PPC: Book3S: Don't crash if irqfd used with no in-kernel XICS emulation + - KVM: PPC: Implement kvm_arch_intc_initialized() for PPC + - KVM: PPC: Book3S HV: Move struct kvmppc_vcore from kvm_host.h to + kvm_book3s.h + - KVM: PPC: Book3S HV: Change vcore element runnable_threads from linked-list + to array + - KVM: Export kvm module parameter variables + - KVM: PPC: Book3S HV: Implement halt polling + - KVM: Add provisioning for ulong vm stats and u64 vcpu stats + - KVM: PPC: Implement existing and add new halt polling vcpu stats + - powerpc/mm: Speed up computation of base and actual page size for a HPTE + - powerpc: Add simple cache inhibited MMIO accessors + - KVM: PPC: Book3S HV: Convert kvmppc_read_intr to a C function + - KVM: PPC: select IRQ_BYPASS_MANAGER + - KVM: PPC: Book3S HV: Introduce kvmppc_passthru_irqmap + - powerpc/powernv: Provide facilities for EOI, usable from real mode + - KVM: PPC: Book3S HV: Enable IRQ bypass + - KVM: PPC: Book3S HV: Handle passthrough interrupts in guest + - KVM: PPC: Book3S HV: Complete passthrough interrupt in host + - KVM: PPC: Book3S HV: Dump irqmap in debugfs + - KVM: PPC: Book3S HV: Tunable to disable KVM IRQ bypass + - KVM: PPC: Book3S HV: Update irq stats for IRQs handled in real mode + - KVM: PPC: Book3S HV: Set server for passed-through interrupts + - KVM: PPC: Book3S HV: Counters for passthrough IRQ stats + - KVM: PPC: e500: Use kmalloc_array() in kvm_vcpu_ioctl_config_tlb() + - KVM: PPC: e500: Less function calls in kvm_vcpu_ioctl_config_tlb() after + error detection + - KVM: PPC: e500: Delete an unnecessary initialisation in + kvm_vcpu_ioctl_config_tlb() + - KVM: PPC: e500: Replace kzalloc() calls by kcalloc() in two functions + - KVM: PPC: e500: Use kmalloc_array() in kvmppc_e500_tlb_init() + - KVM: PPC: e500: Rename jump labels in kvmppc_e500_tlb_init() + - kvm: add stubs for arch specific debugfs support + - KVM: PPC: Book3S: Treat VTB as a per-subcore register, not per-thread + - KVM: PPC: Book3S HV: Take out virtual core piggybacking code + - KVM: PPC: Book3S: Remove duplicate setting of the B field in tlbie + - KVM: PPC: Book3S PR: Support 64kB page size on POWER8E and POWER8NVL + - KVM: PPC: Book3S HV: Fix build error when SMP=n + - KVM: PPC: Book3S HV: Fix sparse static warning + - KVM: PPC: Book3S HV: sparse: prototypes for functions called from assembler + - KVM: PPC: Book3S HV: Use list_move_tail instead of list_del/list_add_tail + - KVM: PPC: Book3S HV: Clear the key field of HPTE when the page is paged out + - KVM: PPC: Book3S HV: Add a per vcpu cache for recently page faulted MMIO + entries + - KVM: PPC: Book3S HV: Drop duplicate header asm/iommu.h + - KVM: PPC: Book3S HV: Adapt to new HPTE format on POWER9 + - KVM: PPC: Book3S HV: Set partition table rather than SDR1 on POWER9 + - KVM: PPC: Book3S HV: Adjust host/guest context switch for POWER9 + - KVM: PPC: Book3S HV: Add new POWER9 guest-accessible SPRs + - KVM: PPC: Book3S HV: Adapt TLB invalidations to work on POWER9 + - KVM: PPC: Book3S HV: Use msgsnd for IPIs to other cores on POWER9 + - KVM: PPC: Book3S HV: Use OPAL XICS emulation on POWER9 + - KVM: PPC: Book3S HV: Use stop instruction rather than nap on POWER9 + - KVM: PPC: Book3S HV: Enable hypervisor virtualization interrupts while in + guest + - KVM: PPC: Book3S HV: Treat POWER9 CPU threads as independent subcores + - KVM: PPC: Book3S HV: Update kvmppc_set_arch_compat() for ISA v3.00 + - KVM: PPC: Book3S HV: Fix compilation with unusual configurations + - KVM: PPC: Correctly report KVM_CAP_PPC_ALLOC_HTAB + - KVM: PPC: Book3S HV: Use generic kvm module parameters + - KVM: PPC: Book3S HV: Add check for module parameter halt_poll_ns + - KVM: PPC: Decrease the powerpc default halt poll max value + - KVM: PPC: Book3S HV: Comment style and print format fixups + - KVM: PPC: Book3S: Move prototypes for KVM functions into kvm_ppc.h + - KVM/PPC/Book3S HV: Convert to hotplug state machine + - [Config] IRQ_BYPASS_MANAGER=y + + * [regression 4.8.0-14 -> 4.8.0-17] keyboard and touchscreen lost on Acer + Chromebook R11 (LP: #1630238) + - [Config] CONFIG_PINCTRL_CHERRYVIEW=y + + * Bug fixes for IBM VNIC Driver (LP: #1655379) + - ibmvnic: Fix GFP_KERNEL allocation in interrupt context + - ibmvnic: Update MTU after device initialization + - ibmvnic: Fix releasing of sub-CRQ IRQs in interrupt context + - ibmvnic: Fix missing brackets in init_sub_crq_irqs + - ibmvnic: Start completion queue negotiation at server-provided optimum + values + - ibmvnic: Unmap ibmvnic_statistics structure + - ibmvnic: Fix size of debugfs name buffer + + * Backport 3 patches to fix bugs with AIX clients using IBMVSCSI Target Driver + (LP: #1657194) + - SAUCE: ibmvscsis: Fix max transfer length + - SAUCE: ibmvscsis: fix sleeping in interrupt context + - SAUCE: ibmvscsis: Fix srp_transfer_data fail return code + + * NVMe: adapter is missing after abnormal shutdown followed by quick reboot, + quirk needed (LP: #1656913) + - nvme: apply DELAY_BEFORE_CHK_RDY quirk at probe time too + + * Ubuntu 16.10 KVM SRIOV: if enable sriov while ping flood is running ping + will stop working (LP: #1625318) + - PCI: Do any VF BAR updates before enabling the BARs + - PCI: Ignore BAR updates on virtual functions + - PCI: Update BARs using property bits appropriate for type + - PCI: Separate VF BAR updates from standard BAR updates + - PCI: Don't update VF BARs while VF memory space is enabled + - PCI: Remove pci_resource_bar() and pci_iov_resource_bar() + - PCI: Decouple IORESOURCE_ROM_ENABLE and PCI_ROM_ADDRESS_ENABLE + - PCI: Add comments about ROM BAR updating + + * Ubuntu - ibmveth: abnormally large TCP MSS value caused a TCP session to + hang with a zero window (LP: #1655420) + - ibmveth: set correct gso_size and gso_type + - ibmveth: calculate gso_segs for large packets + + * netfilter regression introducing a performance slowdown in binary + arp/ip/ip6tables (LP: #1640786) + - netfilter: x_tables: pass xt_counters struct instead of packet counter + - netfilter: x_tables: pass xt_counters struct to counter allocator + - netfilter: x_tables: pack percpu counter allocations + + * Move some kernel modules to the main kernel package (part 2) (LP: #1655002) + - [Config] Add IBM power drivers to the inclusion list + + * [Hyper-V] netvsc: add rcu_read locked to netvsc callback (LP: #1657540) + - netvsc: add rcu_read locking to netvsc callback + + * [Hyper-V] Rebase Hyper-V in 16.04 and 16.10 to the the upstream 4.9 kernel + (LP: #1650059) + - hv_netvsc: Add query for initial physical link speed + - hv_netvsc: Add handler for physical link speed change + - hv_netvsc: Implement batching of receive completions + - PCI: hv: Use list_move_tail() instead of list_del() + list_add_tail() + - hv_netvsc: fix rtnl locking in callback + - hv_netvsc: make RSS hash key static + - hv_netvsc: use kcalloc + - hv_netvsc: style cleanups + - hv_netvsc: make inline functions static + - hv_netvsc: use ARRAY_SIZE() for NDIS versions + - hv_netvsc: make device_remove void + - hv_netvsc: init completion during alloc + - hv_netvsc: rearrange start_xmit + - hv_netvsc: refactor completion function + - hv_netvsc: make netvsc_destroy_buf void + - hv_netvsc: make variable local + - hv_netvsc: report vmbus name in ethtool + - hv_netvsc: add ethtool statistics for tx packet issues + - Drivers: hv: get rid of redundant messagecount in create_gpadl_header() + - Drivers: hv: don't leak memory in vmbus_establish_gpadl() + - Drivers: hv: get rid of timeout in vmbus_open() + - Drivers: hv: utils: fix a race on userspace daemons registration + - Drivers: hv: vmbus: fix the race when querying & updating the percpu list + - Drivers: hv: vmbus: Enable explicit signaling policy for NIC channels + - Drivers: hv: vmbus: Reduce the delay between retries in vmbus_post_msg() + - Drivers: hv: vmbus: Implement a mechanism to tag the channel for low latency + - Tools: hv: kvp: ensure kvp device fd is closed on exec + - Drivers: hv: balloon: keep track of where ha_region starts + - Drivers: hv: balloon: account for gaps in hot add regions + - Drivers: hv: balloon: don't wait for ol_waitevent when memhp_auto_online is + enabled + - Drivers: hv: balloon: replace ha_region_mutex with spinlock + - Drivers: hv: balloon: Use available memory value in pressure report + - Drivers: hv: cleanup vmbus_open() for wrap around mappings + - Drivers: hv: ring_buffer: wrap around mappings for ring buffers + - Drivers: hv: ring_buffer: use wrap around mappings in hv_copy{from, + to}_ringbuffer() + - Drivers: hv: ring_buffer: count on wrap around mappings in + get_next_pkt_raw() + - Drivers: hv: Introduce a policy for controlling channel affinity + - Drivers: hv: utils: Continue to poll VSS channel after handling requests. + - Drivers: hv: utils: Check VSS daemon is listening before a hot backup + - PCI: hv: Use zero-length array in struct pci_packet + - PCI: hv: Use pci_function_description[0] in struct definitions + - PCI: hv: Remove the unused 'wrk' in struct hv_pcibus_device + - PCI: hv: Handle vmbus_sendpacket() failure in hv_compose_msi_msg() + - PCI: hv: Handle hv_pci_generic_compl() error case + - Revert "Drivers: hv: ring_buffer: count on wrap around mappings in + get_next_pkt_raw()" + - Driver: hv: vmbus: Make mmio resource local + - Drivers: hv: vmbus: suppress some "hv_vmbus: Unknown GUID" warnings + - Drivers: hv: utils: Rename version definitions to reflect protocol version. + - Drivers: hv: utils: Use TimeSync samples to adjust the clock after boot. + - Drivers: hv: utils: Support TimeSync version 4.0 protocol samples. + - Drivers: hv: hv_util: Avoid dynamic allocation in time synch + - Revert "hv_netvsc: make inline functions static" + - hv_netvsc: use consume_skb + - hv_netvsc: dev hold/put reference to VF + - hv_netvsc: simplify callback event code + - hv_netvsc: improve VF device matching + - hv_netvsc: use RCU to protect vf_netdev + - hv_netvsc: remove VF in flight counters + - hv_netvsc: count multicast packets received + - hv_netvsc: fix comments + - Drivers: hv: make VMBus bus ids persistent + - Drivers: hv: get rid of id in struct vmbus_channel + - netvsc: fix checksum on UDP IPV6 + - netvsc: Remove mistaken udp.h inclusion. + - net/hyperv: avoid uninitialized variable + - Revert "hv_netvsc: report vmbus name in ethtool" + - vmbus: make sysfs names consistent with PCI + - netvsc: reduce maximum GSO size + - Drivers: hv: vmbus: Base host signaling strictly on the ring state + + * Yakkety update to v4.8.17 stable release (LP: #1655057) + - ssb: Fix error routine when fallback SPROM fails + - rtlwifi: Fix enter/exit power_save + - perf/x86: Fix exclusion of BTS and LBR for Goldmont + - perf/x86/intel/cstate: Prevent hotplug callback leak + - rtl8xxxu: Work around issue with 8192eu and 8723bu devices not reconnecting + - cfg80211/mac80211: fix BSS leaks when abandoning assoc attempts + - ath9k: fix ath9k_hw_gpio_get() to return 0 or 1 on success + - ath9k: Really fix LED polarity for some Mini PCI AR9220 MB92 cards. + - mmc: sdhci: Fix recovery from tuning timeout + - regulator: stw481x-vmmc: fix ages old enable error + - timekeeping_Force_unsigned_clocksource_to_nanoseconds_conversion + - gpio: chardev: Return error for seek operations + - arm64: tegra: Add VDD_GPU regulator to Jetson TX1 + - clk: bcm2835: Avoid overwriting the div info when disabling a pll_div clk + - thermal: hwmon: Properly report critical temperature in sysfs + - docs: sphinx-extensions: make rstFlatTable work with docutils 0.13 + - hv: acquire vmbus_connection.channel_mutex in vmbus_free_channels() + - staging: comedi: ni_mio_common: fix M Series ni_ai_insn_read() data mask + - staging: comedi: ni_mio_common: fix E series ni_ai_insn_read() data + - ACPI / video: Add force_native quirk for Dell XPS 17 L702X + - ACPI / video: Add force_native quirk for HP Pavilion dv6 + - drm/amd/amdgpu: enable GUI idle INT after enabling CGCG + - drm/nouveau/gr: fallback to legacy paths during firmware lookup + - drm/nouveau/kms: lvds panel strap moved again on maxwell + - drm/nouveau/bios: require checksum to match for fast acpi shadow method + - drm/nouveau/ltc: protect clearing of comptags with mutex + - drm/nouveau/ttm: wait for bo fence to signal before unmapping vmas + - drm/nouveau/i2c/gk110b,gm10x: use the correct implementation + - drm/nouveau/fifo/gf100-: protect channel preempt with subdev mutex + - drm/radeon: Also call cursor_move_locked when the cursor size changes + - drm/radeon: Hide the HW cursor while it's out of bounds + - drm/radeon: add additional pci revision to dpm workaround + - drm/radeon/si: load the proper firmware on 0x87 oland boards + - drm/gma500: Add compat ioctl + - drm/amdgpu: fix init save/restore list in gfx_v8.0 + - drivers/gpu/drm/ast: Fix infinite loop if read fails + - mei: request async autosuspend at the end of enumeration + - mei: me: add lewisburg device ids + - block: protect iterate_bdevs() against concurrent close + - vt: fix Scroll Lock LED trigger name + - stm class: Fix device leak in open error path + - scsi: megaraid_sas: For SRIOV enabled firmware, ensure VF driver waits for + 30secs before reset + - scsi: megaraid_sas: Do not set MPI2_TYPE_CUDA for JBOD FP path for FW which + does not support JBOD sequence map + - iscsi-target: Return error if unable to add network portal + - scsi: zfcp: fix use-after-"free" in FC ingress path after TMF + - scsi: zfcp: do not trace pure benign residual HBA responses at default level + - scsi: zfcp: fix rport unblock race with LUN recovery + - scsi: avoid a permanent stop of the scsi device's request queue + - ARC: mm: arc700: Don't assume 2 colours for aliasing VIPT dcache + - firmware: fix usermode helper fallback loading + - s390/vmlogrdr: fix IUCV buffer allocation + - s390/kexec: use node 0 when re-adding crash kernel memory + - arm64: KVM: pmu: Reset PMSELR_EL0.SEL to a sane value before entering the + guest + - sc16is7xx: Drop bogus use of IRQF_ONESHOT + - md/raid5: limit request size according to implementation limits + - scsi: aacraid: remove wildcard for series 9 controllers + - KVM: PPC: Book3S HV: Save/restore XER in checkpointed register state + - KVM: PPC: Book3S HV: Don't lose hardware R/C bit updates in H_PROTECT + - kvm: nVMX: Allow L1 to intercept software exceptions (#BP and #OF) + - fsnotify: Fix possible use-after-free in inode iteration on umount + - vsock/virtio: fix src/dst cid format + - platform/x86: asus-nb-wmi.c: Add X45U quirk + - fgraph: Handle a case where a tracer ignores set_graph_notrace + - IB/mad: Fix an array index check + - IPoIB: Avoid reading an uninitialized member variable + - IB/multicast: Check ib_find_pkey() return value + - IB/rxe: Fix a memory leak in rxe_qp_cleanup() + - IB/cma: Fix a race condition in iboe_addr_get_sgid() + - mn88472: fix chip id check on probe + - mn88473: fix chip id check on probe + - s5p-mfc: fix failure path of s5p_mfc_alloc_memdev() + - media: solo6x10: fix lockup by avoiding delayed register write + - v4l: tvp5150: Add missing break in set control handler + - Input: drv260x - fix input device's parent assignment + - i40iw: Use correct src address in memcpy to rdma stats counters + - PCI: Check for PME in targeted sleep state + - libceph: verify authorize reply on connect + - nfs_write_end(): fix handling of short copies + - pNFS: On error, do not send LAYOUTGET until the LAYOUTRETURN has completed + - pNFS: Don't clear the layout stateid if a layout return is outstanding + - pNFS: Clear NFS_LAYOUT_RETURN_REQUESTED when invalidating the layout stateid + - pNFS: Fix a deadlock between read resends and layoutreturn + - SUNRPC: fix refcounting problems with auth_gss messages. + - powerpc/64e: Convert cmpi to cmpwi in head_64.S + - powerpc/ps3: Fix system hang with GCC 5 builds + - libnvdimm, pfn: fix align attribute + - kconfig/nconf: Fix hang when editing symbol with a long prompt + - sg_write()/bsg_write() is not fit to be called under KERNEL_DS + - net: mvpp2: fix dma unmapping of TX buffers for fragments + - drm/i915/dsi: Fix chv_exec_gpio disabling the GPIOs it is setting + - drm/i915/dsi: Do not clear DPOUNIT_CLOCK_GATE_DISABLE from + vlv_init_display_clock_gating + - drm/i915: Fix cdclk vs. dev_cdclk mess when not recomputing things + - drm/i915: Initialize dev_priv->atomic_cdclk_freq at init time + - drm/i915: skip the first 4k of stolen memory on everything >= gen8 + - Linux 4.8.17 + + * Ubuntu 16.10 KVM: Running out of memory if trying to bringup guest with more + than 64VFs. (LP: #1654067) + - powerpc/iommu: Pass mm_struct to init/cleanup helpers + - powerpc/iommu: Stop using @current in mm_iommu_xxx + - vfio/spapr: Postpone allocation of userspace version of TCE table + - vfio/spapr: Add a helper to create default DMA window + - vfio/spapr: Postpone default window creation + - vfio/spapr: Reference mm in tce_container + - powerpc/mm/iommu, vfio/spapr: Put pages on VFIO container shutdown + + * Miscellaneous Ubuntu changes + - [Config] Drop elants_i2c and pinctrl-cherryview from ABI + + -- Benjamin M Romer Tue, 07 Feb 2017 13:59:06 -0500 + +linux (4.8.0-37.39) yakkety; urgency=low + + [ Thadeu Lima de Souza Cascardo ] + + * Release Tracking Bug + - LP: #1659381 + + * Mouse cursor invisible or does not move (LP: #1646574) + - drm/nouveau/disp/nv50-: split chid into chid.ctrl and chid.user + - drm/nouveau/disp/nv50-: specify ctrl/user separately when constructing + classes + - drm/nouveau/disp/gp102: fix cursor/overlay immediate channel indices + + -- Benjamin M Romer Wed, 25 Jan 2017 16:12:02 -0200 + +linux (4.8.0-36.38) yakkety; urgency=low + + [ John Donnelly ] + + * Release Tracking Bug + - LP: #1657112 + + * Xen MSI setup code incorrectly re-uses cached pirq (LP: #1656381) + - SAUCE: xen: do not re-use pirq number cached in pci device msi msg data + + * nvme drive probe failure (LP: #1626894) + - nvme: revert NVMe: only setup MSIX once + + * i386 ftrace tests hang on ADT testing (LP: #1655040) + - ftrace/x86_32: Set ftrace_stub to weak to prevent gcc from using short jumps + to it + + * SRIOV VNIC Server/Backing Device Failover support (LP: #1654343) + - ibmvnic: Handle backing device failover and reinitialization + + * NVMe drives in Amazon AWS instance fail to initialize (LP: #1648449) + - SAUCE: (no-up) NVMe: only setup MSIX once + + * NVMe driver regression for non-smp/1-cpu systems (LP: #1651602) + - SAUCE: (no-up) NVMe: only setup MSIX once + + * Yakkety update to v4.8.16 stable release (LP: #1654584) + - aoe: fix crash in page count manipulation + - btrfs: limit async_work allocation and worker func duration + - Btrfs: fix BUG_ON in btrfs_mark_buffer_dirty + - Btrfs: fix deadlock caused by fsync when logging directory entries + - Btrfs: fix tree search logic when replaying directory entry deletes + - Btrfs: fix relocation incorrectly dropping data references + - btrfs: store and load values of stripes_min/stripes_max in balance status + item + - Btrfs: fix emptiness check for dirtied extent buffers at check_leaf() + - Btrfs: fix qgroup rescan worker initialization + - USB: serial: option: add support for Telit LE922A PIDs 0x1040, 0x1041 + - USB: serial: option: add dlink dwm-158 + - USB: serial: kl5kusb105: fix open error path + - USB: cdc-acm: add device id for GW Instek AFG-125 + - usb: dwc3: gadget: set PCM1 field of isochronous-first TRBs + - usb: hub: Fix auto-remount of safely removed or ejected USB-3 devices + - usb: gadget: f_uac2: fix error handling at afunc_bind + - usb: gadget: composite: correctly initialize ep->maxpacket + - USB: UHCI: report non-PME wakeup signalling for Intel hardware + - usbip: vudc: fix: Clear already_seen flag also for ep0 + - ALSA: usb-audio: Add QuickCam Communicate Deluxe/S7500 to + volume_control_quirks + - ALSA: hiface: Fix M2Tech hiFace driver sampling rate change + - ALSA: hda/ca0132 - Add quirk for Alienware 15 R2 2016 + - ALSA: hda - ignore the assoc and seq when comparing pin configurations + - ALSA: hda - fix headset-mic problem on a Dell laptop + - ALSA: hda - Gate the mic jack on HP Z1 Gen3 AiO + - ALSA: hda: when comparing pin configurations, ignore assoc in addition to + seq + - clk: ti: omap36xx: Work around sprz319 advisory 2.1 + - Btrfs: fix memory leak in reading btree blocks + - Btrfs: bail out if block group has different mixed flag + - Btrfs: return gracefully from balance if fs tree is corrupted + - Btrfs: don't leak reloc root nodes on error + - btrfs: clean the old superblocks before freeing the device + - Btrfs: fix memory leak in do_walk_down + - btrfs: fix a possible umount deadlock + - Btrfs: don't BUG() during drop snapshot + - Btrfs: fix incremental send failure caused by balance + - btrfs: make file clone aware of fatal signals + - exec: Ensure mm->user_ns contains the execed files + - fs: exec: apply CLOEXEC before changing dumpable task flags + - block_dev: don't test bdev->bd_contains when it is not stable + - vfs,mm: fix return value of read() at s_maxbytes + - ptrace: Capture the ptracer's creds not PT_PTRACE_CAP + - crypto: caam - fix AEAD givenc descriptors + - ext4: fix mballoc breakage with 64k block size + - ext4: fix stack memory corruption with 64k block size + - ext4: use more strict checks for inodes_per_block on mount + - ext4: fix in-superblock mount options processing + - ext4: add sanity checking to count_overhead() + - ext4: reject inodes with negative size + - ext4: return -ENOMEM instead of success + - ext4: do not perform data journaling when data is encrypted + - Revert "f2fs: use percpu_counter for # of dirty pages in inode" + - f2fs: set ->owner for debugfs status file's file_operations + - f2fs: fix overflow due to condition check order + - loop: return proper error from loop_queue_rq() + - nvmet: Fix possible infinite loop triggered on hot namespace removal + - mm/vmscan.c: set correct defer count for shrinker + - mm, page_alloc: keep pcp count and list contents in sync if struct page is + corrupted + - usb: gadget: composite: always set ep->mult to a sensible value + - PM / OPP: Pass opp_table to dev_pm_opp_put_regulator() + - blk-mq: Do not invoke .queue_rq() for a stopped queue + - dm table: fix 'all_blk_mq' inconsistency when an empty table is loaded + - dm table: an 'all_blk_mq' table must be loaded for a blk-mq DM device + - dm flakey: return -EINVAL on interval bounds error in flakey_ctr() + - dm crypt: mark key as invalid until properly loaded + - dm rq: fix a race condition in rq_completed() + - dm raid: fix discard support regression + - dm space map metadata: fix 'struct sm_metadata' leak on failed create + - ASoC: intel: Fix crash at suspend/resume without card registration + - CIFS: Fix a possible memory corruption during reconnect + - CIFS: Fix missing nls unload in smb2_reconnect() + - CIFS: Fix a possible memory corruption in push locks + - kernel/watchdog: use nmi registers snapshot in hardlockup handler + - watchdog: mei_wdt: request stop on reboot to prevent false positive event + - watchdog: qcom: fix kernel panic due to external abort on non-linefetch + - kernel/debug/debug_core.c: more properly delay for secondary CPUs + - tpm xen: Remove bogus tpm_chip_unregister + - xen/gntdev: Use VM_MIXEDMAP instead of VM_IO to avoid NUMA balancing + - arm/xen: Use alloc_percpu rather than __alloc_percpu + - xfs: set AGI buffer type in xlog_recover_clear_agi_bucket + - arm64: mark reserved memblock regions explicitly in iomem + - Revert "netfilter: nat: convert nat bysrc hash to rhashtable" + - Revert "netfilter: move nat hlist_head to nf_conn" + - driver core: fix race between creating/querying glue dir and its cleanup + - Linux 4.8.16 + + * igb i210 probe of pci device failed with error -2 (LP: #1639810) + - SAUCE: igb: Workaround for igb i210 firmware issue. + - SAUCE: igb: add i211 to i210 PHY workaround + + * PowerNV: PCI Slot is invalid after fencedPHB Error injection (LP: #1652018) + - powerpc/powernv: Call opal_pci_poll() if needed + + * Ubuntu16.04.2KVM: Installing any package on Ubuntu16.04.2 guest having NPIV + disk shows traces: blk_update_request: I/O error, dev sda, sector 5006840 + (LP: #1651242) + - block: allow WRITE_SAME commands with the SG_IO ioctl + + * i915 module requests unreleased GUC firmware files (LP: #1626740) + - SAUCE: (no-up) i915: Remove MODULE_FIRMWARE statements for unreleased + firmware + + * mfd: intel-lpss: Add default I2C device properties for Apollo Lake + (LP: #1635177) + - mfd: intel-lpss: Add default I2C device properties for Apollo Lake + + * Yakkety update to v4.8.15 stable release (LP: #1650586) + - powerpc/eeh: Fix deadlock when PE frozen state can't be cleared + - powerpc/mm: Fix lazy icache flush on pre-POWER5 + - powerpc/boot: Fix build failure in 32-bit boot wrapper + - fuse: fix clearing suid, sgid for chown() + - parisc: Purge TLB before setting PTE + - parisc: Remove unnecessary TLB purges from flush_dcache_page_asm and + flush_icache_page_asm + - parisc: Fix TLB related boot crash on SMP machines + - zram: restrict add/remove attributes to root only + - locking/rtmutex: Prevent dequeue vs. unlock race + - locking/rtmutex: Use READ_ONCE() in rt_mutex_owner() + - device-dax: fix private mapping restriction, permit read-only + - sched/autogroup: Fix 64-bit kernel nice level adjustment + - vhost-vsock: fix orphan connection reset + - perf/x86: Fix full width counter, counter overflow + - acpi, nfit: fix extended status translations for ACPI DSMs + - acpi, nfit, libnvdimm: fix / harden ars_status output length handling + - acpi, nfit: validate ars_status output buffer size + - acpi, nfit: fix bus vs dimm confusion in xlat_status + - crypto: marvell - Don't copy hash operation twice into the SRAM + - crypto: caam - fix pointer size for AArch64 boot loader, AArch32 kernel + - crypto: mcryptd - Check mcryptd algorithm compatibility + - crypto: marvell - Don't corrupt state of an STD req for re-stepped ahash + - can: raw: raw_setsockopt: limit number of can_filter that can be set + - can: peak: fix bad memory access and free sequence + - Revert "ACPI: Execute _PTS before system reboot" + - ARM: dts: orion5x: fix number of sata port for linkstation ls-gl + - ARM: dts: imx7d: fix LCDIF clock assignment + - ceph: don't set req->r_locked_dir in ceph_d_revalidate + - m68k: Fix ndelay() macro + - batman-adv: Check for alloc errors when preparing TT local data + - hotplug: Make register and unregister notifier API symmetric + - crypto: rsa - Add Makefile dependencies to fix parallel builds + - Linux 4.8.15 + + * Yakkety update to v4.8.14 stable release (LP: #1650585) + - gro_cells: mark napi struct as not busy poll candidates + - virtio-net: add a missing synchronize_net() + - net: dsa: b53: Fix VLAN usage and how we treat CPU port + - net: check dead netns for peernet2id_alloc() + - ip6_tunnel: disable caching when the traffic class is inherited + - net: sky2: Fix shutdown crash + - af_unix: conditionally use freezable blocking calls in read + - rtnetlink: fix FDB size computation + - l2tp: fix racy SOCK_ZAPPED flag check in l2tp_ip{,6}_bind() + - rtnl: fix the loop index update error in rtnl_dump_ifinfo() + - ipv6: bump genid when the IFA_F_TENTATIVE flag is clear + - udplite: call proper backlog handlers + - net: dsa: bcm_sf2: Ensure we re-negotiate EEE during after link change + - net, sched: respect rcu grace period on cls destruction + - net: dsa: fix unbalanced dsa_switch_tree reference counting + - net/sched: pedit: make sure that offset is valid + - netlink: Call cb->done from a worker thread + - netlink: Do not schedule work from sk_destruct + - net: macb: fix the RX queue reset in macb_rx() + - net/dccp: fix use-after-free in dccp_invalid_packet + - GSO: Reload iph after pskb_may_pull + - ip6_offload: check segs for NULL in ipv6_gso_segment. + - net: bcmgenet: Utilize correct struct device for all DMA operations + - sh_eth: remove unchecked interrupts for RZ/A1 + - tipc: check minimum bearer MTU + - geneve: avoid use-after-free of skb->data + - net: ping: check minimum size on ICMP header length + - ipv4: Restore fib_trie_flush_external function and fix call ordering + - ipv4: Fix memory leak in exception case for splitting tries + - ipv4: Drop leaf from suffix pull/push functions + - ipv4: Drop suffix update from resize code + - sparc64: Fix find_node warning if numa node cannot be found + - sparc64: fix compile warning section mismatch in find_node() + - sparc32: Fix inverted invalid_frame_pointer checks on sigreturns + - constify iov_iter_count() and iter_is_iovec() + - Don't feed anything but regular iovec's to blk_rq_map_user_iov + - ipv6: Set skb->protocol properly for local output + - ipv4: Set skb->protocol properly for local output + - Revert: "ip6_tunnel: Update skb->protocol to ETH_P_IPV6 in ip6_tnl_xmit()" + - flowcache: Increase threshold for refusing new allocations + - esp4: Fix integrity verification when ESN are used + - esp6: Fix integrity verification when ESN are used + - Linux 4.8.14 + + * Yakkety update to v4.8.13 stable release (LP: #1650581) + - libata-scsi: Fixup ata_gen_passthru_sense() + - scsi: hpsa: use bus '3' for legacy HBA devices + - scsi: libfc: fix seconds_since_last_reset miscalculation + - ARC: mm: PAE40: Fix crash at munmap + - ARC: Don't use "+l" inline asm constraint + - mm, thp: propagation of conditional compilation in khugepaged.c + - thp: fix corner case of munlock() of PTE-mapped THPs + - zram: fix unbalanced idr management at hot removal + - kasan: update kasan_global for gcc 7 + - mm: fix false-positive WARN_ON() in truncate/invalidate for hugetlb + - Input: change KEY_DATA from 0x275 to 0x277 + - Input: psmouse - disable automatic probing of BYD touchpads + - rcu: Fix soft lockup for rcu_nocb_kthread + - mm: workingset: fix NULL ptr in count_shadow_nodes + - PCI: Export pcie_find_root_port + - PCI: Set Read Completion Boundary to 128 iff Root Port supports it (_HPX) + - mwifiex: printk() overflow with 32-byte SSIDs + - KVM: arm/arm64: vgic: Don't notify EOI for non-SPIs + - drm/i915: Don't touch NULL sg on i915_gem_object_get_pages_gtt() error + - drm/i915: drop the struct_mutex when wedged or trying to reset + - drm/amdgpu: fix power state when port pm is unavailable + - drm/radeon: fix power state when port pm is unavailable (v2) + - drm/amdgpu: fix check for port PM availability + - drm/radeon: fix check for port PM availability + - arm64: dts: juno: fix cluster sleep state entry latency on all SoC versions + - KVM: use after free in kvm_ioctl_create_device() + - pwm: Fix device reference leak + - drm/mediatek: fix null pointer dereference + - perf/x86: Restore TASK_SIZE check on frame pointer + - clk: sunxi: Fix M factor computation for APB1 + - batman-adv: Detect missing primaryif during tp_send as error + - arm64: cpufeature: Schedule enable() calls instead of calling them via IPI + - arm64: mm: Set PSTATE.PAN from the cpu_enable_pan() call + - arm64: suspend: Reconfigure PSTATE after resume from idle + - Linux 4.8.13 + + * Yakkety update to v4.8.12 stable release (LP: #1647465) + - iommu/vt-d: Fix PASID table allocation + - iommu/vt-d: Fix IOMMU lookup for SR-IOV Virtual Functions + - KVM: x86: fix out-of-bounds access in lapic + - KVM: x86: fix out-of-bounds accesses of rtc_eoi map + - KVM: x86: check for pic and ioapic presence before use + - usb: chipidea: move the lock initialization to core file + - USB: serial: cp210x: add ID for the Zone DPMX + - USB: serial: ftdi_sio: add support for TI CC3200 LaunchPad + - Fix USB CB/CBI storage devices with CONFIG_VMAP_STACK=y + - scsi: mpt3sas: Fix secure erase premature termination + - tile: avoid using clocksource_cyc2ns with absolute cycle count + - cfg80211: limit scan results cache size + - NFSv4.x: hide array-bounds warning + - x86/fpu: Fix invalid FPU ptrace state after execve() + - x86/traps: Ignore high word of regs->cs in early_fixup_exception() + - perf/core: Fix address filter parser + - perf/x86/intel: Cure bogus unwind from PEBS entries + - thermal/powerclamp: add back module device table + - parisc: Fix races in parisc_setup_cache_timing() + - parisc: Switch to generic sched_clock implementation + - parisc: Fix race in pci-dma.c + - parisc: Also flush data TLB in flush_icache_page_asm + - mmc: sdhci-of-esdhc: fixup PRESENT_STATE read + - mpi: Fix NULL ptr dereference in mpi_powm() [ver #3] + - X.509: Fix double free in x509_cert_parse() [ver #3] + - xc2028: Fix use-after-free bug properly + - device-dax: check devm_nsio_enable() return value + - device-dax: fail all private mapping attempts + - powerpc: Set missing wakeup bit in LPCR on POWER9 + - powerpc/mm: Fixup kernel read only mapping + - powerpc/boot: Fix the early OPAL console wrappers + - can: bcm: fix support for CAN FD frames + - mm, oom: stop pre-mature high-order OOM killer invocations + - scsi: mpt3sas: Unblock device after controller reset + - Linux 4.8.12 + + * Miscellaneous Ubuntu changes + - [Debian] consider renames in gen-auto-reconstruct + + -- John Donnelly Tue, 17 Jan 2017 06:45:10 +0000 + +linux (4.8.0-34.36) yakkety; urgency=low + + [ Luis Henriques ] + + * Release Tracking Bug + - LP: #1651800 + + * Miscellaneous Ubuntu changes + - SAUCE: Do not build the xr-usb-serial driver for s390 + + -- Luis Henriques Wed, 21 Dec 2016 16:20:08 +0000 + +linux (4.8.0-33.35) yakkety; urgency=low + + [ Thadeu Lima de Souza Cascardo ] + + * Release Tracking Bug + - LP: #1651721 + + [ Luis Henriques ] + + * crypto : tolerate new crypto hardware for z Systems (LP: #1644557) + - s390/zcrypt: Introduce CEX6 toleration + + * Several new Asus laptops are missing touchpad support (LP: #1650895) + - HID: asus: Add i2c touchpad support + + * Acer, Inc ID 5986:055a is useless after 14.04.2 installed. (LP: #1433906) + - uvcvideo: uvc_scan_fallback() for webcams with broken chain + + * cdc_ether fills kernel log (LP: #1626371) + - cdc_ether: Fix handling connection notification + + * Kernel Fixes to get TCMU File Backed Optical to work (LP: #1646204) + - SAUCE: target/user: Fix use-after-free of tcmu_cmds if they are expired + + * CVE-2016-9756 + - KVM: x86: drop error recovery in em_jmp_far and em_ret_far + + * On boot excessive number of kworker threads are running (LP: #1649905) + - slub: move synchronize_sched out of slab_mutex on shrink + + * Ethernet not work after upgrade from kernel 3.19 to 4.4 [10ec:8168] + (LP: #1648279) + - ACPI / blacklist: Make Dell Latitude 3350 ethernet work + + * Ubuntu 16.10 netboot install fails with "Oops: Exception in kernel mode, + sig: 5 [#1] " (lpfc) (LP: #1648873) + - scsi: lpfc: fix oops/BUG in lpfc_sli_ringtxcmpl_put() + + * CVE-2016-9793 + - net: avoid signed overflows for SO_{SND|RCV}BUFFORCE + + * [Hyper-V] Kernel panic not functional on 32bit Ubuntu 14.10, 15.04, and + 15.10 (LP: #1400319) + - Drivers: hv: avoid vfree() on crash + + * d-i is missing usb support for platforms that use the xhci-platform driver + (LP: #1625222) + - d-i initrd needs additional usb modules to support the merlin platform + + * overlayfs no longer supports nested overlayfs mounts, but there is a fix + upstream (LP: #1647007) + - ovl: fix d_real() for stacked fs + + * Yakkety: arm64: CONFIG_ARM64_ERRATUM_845719 isn't enabled (LP: #1647793) + - [Config] CONFIG_ARM64_ERRATUM_845719=y + + * Ubuntu16.10 - EEH on BELL3 adapter fails to recover (serial/tty) + (LP: #1646857) + - serial: 8250_pci: Detach low-level driver during PCI error recovery + + * Driver for Exar USB UART (LP: #1645591) + - SAUCE: xr-usb-serial: Driver for Exar USB serial ports + - SAUCE: xr-usb-serial: interface for switching modes + - SAUCE: cdc-acm: Exclude Exar USB serial ports + + * [Bug] (Purley) x86/hpet: Reduce HPET counter read contention (LP: #1645928) + - x86/hpet: Reduce HPET counter read contention + + * Need Alps upstream their new touchpad driver (LP: #1571530) + - Input: ALPS - add touchstick support for SS5 hardware + - Input: ALPS - handle 0-pressure 1F events + - Input: ALPS - allow touchsticks to report pressure + - Input: ALPS - set DualPoint flag for 74 03 28 devices + + * CONFIG_NR_CPUS=256 is too low (LP: #1579205) + - [Config] Increase the NR_CPUS to 512 for amd64 to support systems with a + large number of cores. + + -- Thadeu Lima de Souza Cascardo Wed, 21 Dec 2016 10:43:58 -0200 + +linux (4.8.0-32.34) yakkety; urgency=low + + [ Thadeu Lima de Souza Cascardo ] + + * Release Tracking Bug + - LP: #1649358 + + * Vulnerability picked up from 4.8.10 stable kernel (LP: #1648662) + - net: handle no dst on skb in icmp6_send + + -- Thadeu Lima de Souza Cascardo Mon, 12 Dec 2016 15:33:04 -0200 + +linux (4.8.0-31.33) yakkety; urgency=low + + [ Luis Henriques ] + + * Release Tracking Bug + - LP: #1648034 + + * Update hio driver to 2.1.0.28 (LP: #1646643) + - SAUCE: hio: update to Huawei ES3000_V2 (2.1.0.28) + + * Yakkety update to v4.8.11 stable release (LP: #1645421) + - x86/cpu/AMD: Fix cpu_llc_id for AMD Fam17h systems + - KVM: x86: fix missed SRCU usage in kvm_lapic_set_vapic_addr + - KVM: Disable irq while unregistering user notifier + - arm64: KVM: pmu: Fix AArch32 cycle counter access + - KVM: arm64: Fix the issues when guest PMCCFILTR is configured + - ftrace: Ignore FTRACE_FL_DISABLED while walking dyn_ftrace records + - ftrace: Add more checks for FTRACE_FL_DISABLED in processing ip records + - genirq: Use irq type from irqdata instead of irqdesc + - fuse: fix fuse_write_end() if zero bytes were copied + - IB/rdmavt: rdmavt can handle non aligned page maps + - IB/hfi1: Fix rnr_timer addition + - mfd: intel-lpss: Do not put device in reset state on suspend + - mfd: stmpe: Fix RESET regression on STMPE2401 + - can: bcm: fix warning in bcm_connect/proc_register + - gpio: do not double-check direction on sleeping chips + - ALSA: usb-audio: Fix use-after-free of usb_device at disconnect + - ALSA: hda - add a new condition to check if it is thinkpad + - ALSA: hda - Fix mic regression by ASRock mobo fixup + - i2c: mux: fix up dependencies + - i2c: i2c-mux-pca954x: fix deselect enabling for device-tree + - Disable the __builtin_return_address() warning globally after all + - kbuild: add -fno-PIE + - scripts/has-stack-protector: add -fno-PIE + - x86/kexec: add -fno-PIE + - kbuild: Steal gcc's pie from the very beginning + - ext4: sanity check the block and cluster size at mount time + - ARM: dts: imx53-qsb: Fix regulator constraints + - crypto: caam - do not register AES-XTS mode on LP units + - powerpc/64: Fix setting of AIL in hypervisor mode + - drm/amdgpu: Attach exclusive fence to prime exported bo's. (v5) + - drm/i915: Refresh that status of MST capable connectors in ->detect() + - drm/i915: Assume non-DP++ port if dvo_port is HDMI and there's no AUX ch + specified in the VBT + - virtio-net: drop legacy features in virtio 1 mode + - clk: mmp: pxa910: fix return value check in pxa910_clk_init() + - clk: mmp: pxa168: fix return value check in pxa168_clk_init() + - clk: mmp: mmp2: fix return value check in mmp2_clk_init() + - clk: imx: fix integer overflow in AV PLL round rate + - rtc: omap: Fix selecting external osc + - iwlwifi: pcie: fix SPLC structure parsing + - iwlwifi: pcie: mark command queue lock with separate lockdep class + - iwlwifi: mvm: fix netdetect starting/stopping for unified images + - iwlwifi: mvm: fix d3_test with unified D0/D3 images + - iwlwifi: mvm: wake the wait queue when the RX sync counter is zero + - mfd: core: Fix device reference leak in mfd_clone_cell + - sunrpc: svc_age_temp_xprts_now should not call setsockopt non-tcp transports + - uwb: fix device reference leaks + - PM / sleep: fix device reference leak in test_suspend + - PM / sleep: don't suspend parent when async child suspend_{noirq, late} + fails + - perf hists: Fix column length on --hierarchy + - IB/rxe: Update qp state for user query + - IB/rxe: Fix kernel panic in UDP tunnel with GRO and RX checksum + - IB/rxe: Fix handling of erroneous WR + - IB/rxe: Clear queue buffer when modifying QP to reset + - IB/mlx4: Check gid_index return value + - IB/mlx4: Fix create CQ error flow + - IB/mlx5: Validate requested RQT size + - IB/mlx5: Use cache line size to select CQE stride + - IB/mlx5: Fix memory leak in query device + - IB/mlx5: Fix fatal error dispatching + - IB/mlx5: Fix NULL pointer dereference on debug print + - IB/core: Avoid unsigned int overflow in sg_alloc_table + - IB/hfi1: Remove incorrect IS_ERR check + - IB/uverbs: Fix leak of XRC target QPs + - IB/cm: Mark stale CM id's whenever the mad agent was unregistered + - netfilter: nft_dynset: fix element timeout for HZ != 1000 + - gpio: pca953x: Move memcpy into mutex lock for set multiple + - gpio: pca953x: Fix corruption of other gpios in set_multiple. + - Linux 4.8.11 + + * Upstream stable 4.4.34 and 4.8.10 regression (LP: #1645278) + - flow_dissect: call init_default_flow_dissectors() earlier + + * Fix Kernel Crashing under IBM Virtual Scsi Driver (LP: #1642299) + - SAUCE: ibmvscsis: Rearrange functions for future patches + - SAUCE: ibmvscsis: Synchronize cmds at tpg_enable_store time + - SAUCE: ibmvscsis: Synchronize cmds at remove time + - SAUCE: ibmvscsis: Clean up properly if target_submit_cmd/tmr fails + - SAUCE: ibmvscsis: Return correct partition name/# to client + - SAUCE: ibmvscsis: Issues from Dan Carpenter/Smatch + + * Add a driver for Amazon Elastic Network Adapters (ENA) (LP: #1635721) + - net: ena: Add a driver for Amazon Elastic Network Adapters (ENA) + - [config] enable CONFIG_ENA_ETHERNET=m (Amazon ENA driver) + + * Move some kernel modules to the main kernel package (LP: #1642228) + - [Config] Move some powerpc kernel modules to the main kernel package + + * Yakkety update to 4.8.10 stable release (LP: #1643639) + - dctcp: avoid bogus doubling of cwnd after loss + - net: clear sk_err_soft in sk_clone_lock() + - net: mangle zero checksum in skb_checksum_help() + - bgmac: stop clearing DMA receive control register right after it is set + - ip6_tunnel: Clear IP6CB in ip6tunnel_xmit() + - tcp: fix potential memory corruption + - ipv4: allow local fragmentation in ip_finish_output_gso() + - tcp: fix return value for partial writes + - dccp: do not release listeners too soon + - dccp: do not send reset to already closed sockets + - dccp: fix out of bound access in dccp_v4_err() + - ipv6: dccp: fix out of bound access in dccp_v6_err() + - ipv6: dccp: add missing bind_conflict to dccp_ipv6_mapped + - sctp: assign assoc_id earlier in __sctp_connect + - bpf: fix htab map destruction when extra reserve is in use + - net: icmp6_send should use dst dev to determine L3 domain + - fib_trie: Correct /proc/net/route off by one error + - sock: fix sendmmsg for partial sendmsg + - net: icmp_route_lookup should use rt dev to determine L3 domain + - net: __skb_flow_dissect() must cap its return value + - ipv4: use new_gw for redirect neigh lookup + - tcp: take care of truncations done by sk_filter() + - Revert "include/uapi/linux/atm_zatm.h: include linux/time.h" + - mlxsw: spectrum: Fix refcount bug on span entries + - mlxsw: spectrum_router: Correctly dump neighbour activity + - Revert "bnx2: Reset device during driver initialization" + - bnx2: Wait for in-flight DMA to complete at probe stage + - sctp: change sk state only when it has assocs in sctp_shutdown + - net: stmmac: Fix lack of link transition for fixed PHYs + - spi: spidev_test: fix build with musl libc + - sparc: Handle negative offsets in arch_jump_label_transform + - sparc64: Handle extremely large kernel TSB range flushes sanely. + - sparc64: Fix illegal relative branches in hypervisor patched TLB code. + - sparc64: Fix instruction count in comment for + __hypervisor_flush_tlb_pending. + - sparc64: Fix illegal relative branches in hypervisor patched TLB cross-call + code. + - sparc64: Handle extremely large kernel TLB range flushes more gracefully. + - sparc64: Delete __ret_efault. + - sparc64: Prepare to move to more saner user copy exception handling. + - sparc64: Convert copy_in_user to accurate exception reporting. + - sparc64: Convert GENcopy_{from,to}_user to accurate exception reporting. + - sparc64: Convert U1copy_{from,to}_user to accurate exception reporting. + - sparc64: Convert NG4copy_{from,to}_user to accurate exception reporting. + - sparc64: Convert NGcopy_{from,to}_user to accurate exception reporting. + - sparc64: Convert NG2copy_{from,to}_user to accurate exception reporting. + - sparc64: Convert U3copy_{from,to}_user to accurate exception reporting. + - sparc64: Delete now unused user copy assembler helpers. + - sparc64: Delete now unused user copy fixup functions. + - usb: gadget: f_fs: edit epfile->ep under lock + - usb: gadget: f_fs: stop sleeping in ffs_func_eps_disable + - Linux 4.8.10 + + * Yakkety update to v4.8.9 stable release (LP: #1642972) + - ALSA: info: Return error for invalid read/write + - ALSA: info: Limit the proc text input size + - ASoC: cs4270: fix DAPM stream name mismatch + - dib0700: fix nec repeat handling + - mm, frontswap: make sure allocated frontswap map is assigned + - shmem: fix pageflags after swapping DMA32 object + - swapfile: fix memory corruption via malformed swapfile + - mm: hwpoison: fix thp split handling in memory_failure() + - mm/hugetlb: fix huge page reservation leak in private mapping error paths + - coredump: fix unfreezable coredumping task + - s390/hypfs: Use get_free_page() instead of kmalloc to ensure page alignment + - ARC: timer: rtc: implement read loop in "C" vs. inline asm + - PCI: Don't attempt to claim shadow copies of ROM + - arc: Implement arch-specific dma_map_ops.mmap + - pinctrl: cherryview: Serialize register access in suspend/resume + - pinctrl: cherryview: Prevent possible interrupt storm on resume + - cpupower: Correct return type of cpu_power_is_cpu_online() in cpufreq-set + - mmc: sdhci: Fix CMD line reset interfering with ongoing data transfer + - mmc: sdhci: Fix unexpected data interrupt handling + - mmc: mmc: Use 500ms as the default generic CMD6 timeout + - staging: iio: ad5933: avoid uninitialized variable in error case + - staging: sm750fb: Fix bugs introduced by early commits + - staging: comedi: ni_tio: fix buggy ni_tio_clock_period_ps() return value + - drivers: staging: nvec: remove bogus reset command for PS/2 interface + - Revert "staging: nvec: ps2: change serio type to passthrough" + - staging: nvec: remove managed resource from PS2 driver + - usb: dwc3: Fix error handling for core init + - USB: cdc-acm: fix TIOCMIWAIT + - usb: gadget: u_ether: remove interrupt throttling + - drbd: Fix kernel_sendmsg() usage - potential NULL deref + - toshiba-wmi: Fix loading the driver on non Toshiba laptops + - clk: qoriq: Don't allow CPU clocks higher than starting value + - cdc-acm: fix uninitialized variable + - iio: hid-sensors: Increase the precision of scale to fix wrong reading + interpretation. + - iio: orientation: hid-sensor-rotation: Add PM function (fix non working + driver) + - iio: st_sensors: fix scale configuration for h3lis331dl + - scsi: qla2xxx: Fix scsi scan hang triggered if adapter fails during init + - scsi: mpt3sas: Fix for block device of raid exists even after deleting raid + disk + - scsi: scsi_dh_alua: fix missing kref_put() in alua_rtpg_work() + - scsi: scsi_dh_alua: Fix a reference counting bug + - KVM: arm/arm64: vgic: Prevent access to invalid SPIs + - drm/radeon: disable runtime pm in certain cases + - drm/i915: Respect alternate_ddc_pin for all DDI ports + - drm/i915/dp: BDW cdclk fix for DP audio + - drm/i915/dp: Extend BDW DP audio workaround to GEN9 platforms + - drm/amdgpu: disable runtime pm in certain cases + - drm/amdgpu: fix crash in acp_hw_fini + - tty/serial: at91: fix hardware handshake on Atmel platforms + - drm/amdgpu: fix sched fence slab teardown + - drm/amd: fix scheduler fence teardown order v2 + - xprtrdma: use complete() instead complete_all() + - xprtrdma: Fix DMAR failure in frwr_op_map() after reconnect + - iommu/io-pgtable-arm: Check for v7s-incapable systems + - iommu/amd: Free domain id when free a domain of struct dma_ops_domain + - iommu/vt-d: Fix dead-locks in disable_dmar_iommu() path + - agp/intel: Flush chipset writes after updating a single PTE + - watchdog: core: Fix devres_alloc() allocation size + - Input: synaptics-rmi4 - fix error handling in SPI transport driver + - Input: synaptics-rmi4 - fix error handling in I2C transport driver + - perf top: Fix refreshing hierarchy entries on TUI + - mei: bus: fix received data size check in NFC fixup + - svcrdma: Skip put_page() when send_reply() fails + - svcrdma: Tail iovec leaves an orphaned DMA mapping + - nvme: Delete created IO queues on reset + - Revert "clocksource/drivers/timer_sun5i: Replace code by + clocksource_mmio_init" + - x86/build: Fix build with older GCC versions + - clk: samsung: clk-exynos-audss: Fix module autoload + - rtc: pcf2123: Add missing error code assignment before test + - s390/dumpstack: restore reliable indicator for call traces + - lib/genalloc.c: start search from start of chunk + - hwrng: core - Don't use a stack buffer in add_early_randomness() + - i40e: fix call of ndo_dflt_bridge_getlink() + - mmc: sdhci-msm: Fix error return code in sdhci_msm_probe() + - ACPI / APEI: Fix incorrect return value of ghes_proc() + - ACPI/PCI/IRQ: assign ISA IRQ directly during early boot stages + - ACPI/PCI: pci_link: penalize SCI correctly + - ACPI/PCI: pci_link: Include PIRQ_PENALTY_PCI_USING for ISA IRQs + - batman-adv: Modify neigh_list only with rcu-list functions + - gpio/mvebu: Use irq_domain_add_linear + - gpio: of: fix GPIO drivers with multiple gpio_chip for a single node + - ASoC: Intel: Skylake: Always acquire runtime pm ref on unload + - ASoC: sun4i-codec: return error code instead of NULL when create_card fails + - pinctrl: iproc: Fix iProc and NSP GPIO support + - mmc: mxs: Initialize the spinlock prior to using it + - memcg: prevent memcg caches to be both OFF_SLAB & OBJFREELIST_SLAB + - libceph: fix legacy layout decode with pool 0 + - NFSv4.1: work around -Wmaybe-uninitialized warning + - drm/amdgpu: fix fence slab teardown + - drm/amdgpu: fix a vm_flush fence leak + - drm/i915: Fix mismatched INIT power domain disabling during suspend + - netfilter: fix namespace handling in nf_log_proc_dostring + - Linux 4.8.9 + + * Yakkety update to 4.8.8 stable release (LP: #1642607) + - net: fec: set mac address unconditionally + - net: pktgen: fix pkt_size + - net/sched: act_vlan: Push skb->data to mac_header prior calling skb_vlan_*() + functions + - net: Add netdev all_adj_list refcnt propagation to fix panic + - packet: call fanout_release, while UNREGISTERING a netdev + - netlink: do not enter direct reclaim from netlink_dump() + - drivers/ptp: Fix kernel memory disclosure + - net_sched: reorder pernet ops and act ops registrations + - ipv6: tcp: restore IP6CB for pktoptions skbs + - net: phy: Trigger state machine on state change and not polling. + - ip6_tunnel: fix ip6_tnl_lookup + - IB/ipoib: move back IB LL address into the hard header + - net/mlx4_en: fixup xdp tx irq to match rx + - net: pktgen: remove rcu locking in pktgen_change_name() + - bridge: multicast: restore perm router ports on multicast enable + - switchdev: Execute bridge ndos only for bridge ports + - rtnetlink: Add rtnexthop offload flag to compare mask + - net: core: Correctly iterate over lower adjacency list + - net: add recursion limit to GRO + - ipv4: disable BH in set_ping_group_range() + - ipv4: use the right lock for ping_group_range + - net: fec: Call swap_buffer() prior to IP header alignment + - net: sctp, forbid negative length + - sctp: fix the panic caused by route update + - udp: fix IP_CHECKSUM handling + - netvsc: fix incorrect receive checksum offloading + - macsec: Fix header length if SCI is added if explicitly disabled + - net: ipv6: Do not consider link state for nexthop validation + - net sched filters: fix notification of filter delete with proper handle + - sctp: validate chunk len before actually using it + - ip6_tunnel: Update skb->protocol to ETH_P_IPV6 in ip6_tnl_xmit() + - packet: on direct_xmit, limit tso and csum to supported devices + - arch/powerpc: Update parameters for csum_tcpudp_magic & csum_tcpudp_nofold + - usb: dwc3: gadget: properly account queued requests + - scsi: megaraid_sas: Fix data integrity failure for JBOD (passthrough) + devices + - scsi: megaraid_sas: fix macro MEGASAS_IS_LOGICAL to avoid regression + - Linux 4.8.8 + + * Yakkety update to 4.8.7 stable release (LP: #1642606) + - i2c: rk3x: Give the tuning value 0 during rk3x_i2c_v0_calc_timings + - i2c: xgene: Avoid dma_buffer overrun + - i2c: core: fix NULL pointer dereference under race condition + - drm/dp/mst: Clear port->pdt when tearing down the i2c adapter + - spi: fsl-espi: avoid processing uninitalized data on error + - spi: mark device nodes only in case of successful instantiation + - h8300: fix syscall restarting + - gpio / ACPI: fix returned error from acpi_dev_gpio_irq_get() + - gpio: GPIO_GET_CHIPINFO_IOCTL: Fix line offset validation + - gpio: GPIO_GET_CHIPINFO_IOCTL: Fix information leak + - gpio: GPIO_GET_LINEHANDLE_IOCTL: Validate line offset + - gpio: GPIOHANDLE_GET_LINE_VALUES_IOCTL: Fix information leak + - gpio: GPIO_GET_LINEEVENT_IOCTL: Validate line offset + - gpio: GPIO_GET_LINEHANDLE_IOCTL: Reject invalid line flags + - gpio: GPIO_GET_LINEEVENT_IOCTL: Reject invalid line and event flags + - gpio: GPIOHANDLE_GET_LINE_VALUES_IOCTL: Fix another information leak + - gpio: GPIO_GET_LINE{HANDLE,EVENT}_IOCTL: Fix file descriptor leak + - libxfs: clean up _calc_dquots_per_chunk + - mm/list_lru.c: avoid error-path NULL pointer deref + - mm/slab: fix kmemcg cache creation delayed issue + - mm: memcontrol: do not recurse in direct reclaim + - KEYS: Sort out big_key initialisation + - security/keys: make BIG_KEYS dependent on stdrng. + - device-dax: fix percpu_ref_exit ordering + - ALSA: usb-audio: Add quirk for Syntek STK1160 + - ALSA: seq: Fix time account regression + - ALSA: hda - allow 40 bit DMA mask for NVidia devices + - ALSA: hda - Adding a new group of pin cfg into ALC295 pin quirk table + - ALSA: hda - Fix surround output pins for ASRock B150M mobo + - ALSA: hda - Fix headset mic detection problem for two Dell laptops + - ANDROID: binder: Add strong ref checks + - ANDROID: binder: Clear binder and cookie when setting handle in flat binder + struct + - cxl: Fix leaking pid refs in some error paths + - btrfs: fix races on root_log_ctx lists + - powerpc: Convert cmp to cmpd in idle enter sequence + - powerpc/mm/radix: Use tlbiel only if we ever ran on the current cpu + - x86/microcode/AMD: Fix more fallout from CONFIG_RANDOMIZE_MEMORY=y + - timers: Prevent base clock rewind when forwarding clock + - timers: Prevent base clock corruption when forwarding + - timers: Plug locking race vs. timer migration + - timers: Lock base for same bucket optimization + - ubifs: Abort readdir upon error + - ubifs: Fix regression in ubifs_readdir() + - mei: txe: don't clean an unprocessed interrupt cause. + - usb: gadget: udc: atmel: fix endpoint name + - usb: gadget: function: u_ether: don't starve tx request queue + - USB: serial: fix potential NULL-dereference at probe + - USB: serial: cp210x: fix tiocmget error handling + - USB: serial: ftdi_sio: add support for Infineon TriBoard TC2X7 + - xhci: use default USB_RESUME_TIMEOUT when resuming ports. + - usb: renesas_usbhs: add wait after initialization for R-Car Gen3 + - usb: increase ohci watchdog delay to 275 msec + - x86/smpboot: Init apic mapping before usage + - vt: clear selection before resizing + - xhci: add restart quirk for Intel Wildcatpoint PCH + - xhci: workaround for hosts missing CAS bit + - tty: limit terminal size to 4M chars + - arm64: dts: marvell: fix clocksource for CP110 master SPI0 + - iio:chemical:atlas-ph-sensor: Fix use of 32 bit int to hold 16 bit big + endian value + - Staging: wilc1000: Fix kernel Oops on opening the device + - dm: free io_barrier after blk_cleanup_queue call + - KVM: x86: fix wbinvd_dirty_mask use-after-free + - KVM: s390: Fix STHYI buffer alignment for diag224 + - KVM: MIPS: Make ERET handle ERL before EXL + - KVM: MIPS: Precalculate MMIO load resume PC + - ARM: mvebu: Select corediv clk for all mvebu v7 SoC + - ARM: dts: fix the SD card on the Snowball + - nfsd: Fix general protection fault in release_lock_stateid() + - MIPS: KASLR: Fix handling of NULL FDT + - ovl: fix get_acl() on tmpfs + - ovl: update S_ISGID when setting posix ACLs + - ovl: fsync after copy-up + - parisc: Ensure consistent state when switching to kernel stack at syscall + entry + - virtio_ring: Make interrupt suppression spec compliant + - virtio_pci: Limit DMA mask to 44 bits for legacy virtio devices + - virtio: console: Unlock vqs while freeing buffers + - dm mirror: fix read error on recovery after default leg failure + - dm table: fix missing dm_put_target_type() in dm_table_add_target() + - dm rq: clear kworker_task if kthread_run() returned an error + - dm raid: fix activation of existing raid4/10 devices + - rtl8xxxu: Fix memory leak in handling rxdesc16 packets + - rtl8xxxu: Fix big-endian problem reporting mactime + - rtl8xxxu: Fix rtl8723bu driver reload issue + - Input: i8042 - add XMG C504 to keyboard reset table + - firewire: net: guard against rx buffer overflows + - firewire: net: fix fragmented datagram_size off-by-one + - mac80211: discard multicast and 4-addr A-MSDUs + - Revert "ath9k_hw: implement temperature compensation support for AR9003+" + - ath10k: cache calibration data when the core is stopped + - scsi: scsi_debug: Fix memory leak if LBP enabled and module is unloaded + - scsi: arcmsr: Send SYNCHRONIZE_CACHE command to firmware + - mmc: dw_mmc-pltfm: fix the potential NULL pointer dereference + - RAID1: ignore discard error + - RAID10: ignore discard error + - md: be careful not lot leak internal curr_resync value into metadata. -- + (all) + - Revert "drm/radeon: fix DP link training issue with second 4K monitor" + - drm/imx: ipuv3-plane: Switch EBA buffer only when we don't need modeset + - drm/imx: ipuv3-plane: Access old u/vbo properly in ->atomic_check for + YU12/YV12 + - drm/radeon/si_dpm: Limit clocks on HD86xx part + - drm/radeon/si_dpm: workaround for SI kickers + - drm/radeon: drop register readback in cayman_cp_int_cntl_setup + - drm/nouveau/acpi: fix check for power resources support + - drm/fb-helper: Don't call dirty callback for untouched clips + - drm/fb-helper: Fix connector ref leak on error + - drm/fb-helper: Keep references for the current set of used connectors + - drm/i915/gen9: fix DDB partitioning for multi-screen cases + - drm/i915/gen9: fix watermarks when using the pipe scaler + - drm/dp/mst: Check peer device type before attempting EDID read + - drm: Release reference from blob lookup after replacing property + - drm/i915: Respect alternate_aux_channel for all DDI ports + - drm/i915: Clean up DDI DDC/AUX CH sanitation + - drm/i915/fbc: fix CFB size calculation for gen8+ + - drm: i915: Wait for fences on new fb, not old + - i2c: mark device nodes only in case of successful instantiation + - netfilter: xt_NFLOG: fix unexpected truncated packet + - UBI: fastmap: scrub PEB when bitflips are detected in a free PEB EC header + - uapi: add missing install of sync_file.h + - video: fbdev: pxafb: potential NULL dereference on error + - omapfb: fix return value check in dsi_bind() + - pwm: Unexport children before chip removal + - usb: dwc3: Fix size used in dma_free_coherent() + - usb: chipidea: host: fix NULL ptr dereference during shutdown + - usb: musb: Fix hardirq-safe hardirq-unsafe lock order error + - v4l: vsp1: Prevent pipelines from running when not streaming + - tty: vt, fix bogus division in csi_J + - ARM: fix oops when using older ARMv4T CPUs + - kvm: x86: Check memopp before dereference (CVE-2016-8630) + - btrfs: qgroup: Prevent qgroup->reserved from going subzero + - ubi: fastmap: Fix add_vol() return value test in ubi_attach_fastmap() + - cpufreq: intel_pstate: Set P-state upfront in performance mode + - HID: usbhid: add ATEN CS962 to list of quirky devices + - Linux 4.8.7 + - [Config] updateconfigs after 4.8.7 stable update + + * CVE-2016-6213 + - mnt: Add a per mount namespace limit on the number of mounts + + * Cursor doesn't move after multitouch on alps touchpad (LP: #1641874) + - HID: alps: fix multitouch cursor issue + + * [SRU] Add 0cf3:e009 to btusb (LP: #1641562) + - Bluetooth: btusb: Add support for 0cf3:e009 + + * [Hyper-V] do not lose pending heartbeat vmbus packets (LP: #1632786) + - hv: do not lose pending heartbeat vmbus packets + + * ipv6: connected routes are missing after a down/up cycle on the loopback + (LP: #1634545) + - ipv6: correctly add local routes when lo goes up + + * [Feature] Add Knights Mill to Intel processors family list (LP: #1637528) + - x86/cpu/intel: Add Knights Mill to Intel family + - perf/x86/intel: Add Knights Mill CPUID + - perf/x86/intel/rapl: Add Knights Mill CPUID + - perf/x86/intel/uncore: Add Knights Mill CPUID + + * hv_set_ifconfig script parsing fails for certain configuration + (LP: #1640109) + - hv_set_ifconfig -- handle DHCP interfaces correctly + - hv_set_ifconfig -- ensure we include the last stanza + + * nvme: improve performance for virtual Google NVMe devices (LP: #1637565) + - [Config] CONFIG_NVME_VENDOR_EXT_GOOGLE=y + - SAUCE: nvme: improve performance for virtual NVMe devices + + * CVE-2016-7039 and CVE-2016-8666 (LP: #1631287) + - Revert "UBUNTU: SAUCE: net: add recursion limit to GRO" + + -- Luis Henriques Wed, 07 Dec 2016 10:23:48 +0000 + +linux (4.8.0-30.32) yakkety; urgency=low + + * CVE-2016-8655 (LP: #1646318) + - packet: fix race condition in packet_set_ring + + -- Brad Figg Thu, 01 Dec 2016 08:02:53 -0800 + +linux (4.8.0-28.30) yakkety; urgency=low + + [ Luis Henriques ] + + * Release Tracking Bug + - LP: #1641083 + + * lxc-attach to malicious container allows access to host (LP: #1639345) + - Revert "UBUNTU: SAUCE: (noup) ptrace: being capable wrt a process requires + mapped uids/gids" + - (upstream) mm: Add a user_ns owner to mm_struct and fix ptrace permission + checks + + * [Feature] AVX-512 new instruction sets (avx512_4vnniw, avx512_4fmaps) + (LP: #1637526) + - x86/cpufeature: Add AVX512_4VNNIW and AVX512_4FMAPS features + + * zfs: importing zpool with vdev on zvol hangs kernel (LP: #1636517) + - SAUCE: (noup) Update zfs to 0.6.5.8-0ubuntu4.1 + + * Move some device drivers build from kernel built-in to modules + (LP: #1637303) + - [Config] CONFIG_TIGON3=m for all arches + - [Config] CONFIG_VIRTIO_BLK=m, CONFIG_VIRTIO_NET=m + + * I2C touchpad does not work on AMD platform (LP: #1612006) + - pinctrl/amd: Configure GPIO register using BIOS settings + + * guest experiencing Transmit Timeouts on CX4 (LP: #1636330) + - powerpc/64: Re-fix race condition between going idle and entering guest + - powerpc/64: Fix race condition in setting lock bit in idle/wakeup code + + * QEMU throws failure msg while booting guest with SRIOV VF (LP: #1630554) + - KVM: PPC: Always select KVM_VFIO, plus Makefile cleanup + + * [Feature] KBL - New device ID for Kabypoint(KbP) (LP: #1591618) + - SAUCE: mfd: lpss: Fix Intel Kaby Lake PCH-H properties + + * hio: SSD data corruption under stress test (LP: #1638700) + - SAUCE: hio: set bi_error field to signal an I/O error on a BIO + - SAUCE: hio: splitting bio in the entry of .make_request_fn + + * cleanup primary tree for linux-hwe layering issues (LP: #1637473) + - [Config] switch Vcs-Git: to yakkety repository + - [Packaging] handle both linux-lts* and linux-hwe* as backports + - [Config] linux-tools-common and linux-cloud-tools-common are one per series + - [Config] linux-source-* is in the primary linux namespace + - [Config] linux-tools -- always suggest the base package + + * SRU: sync zfsutils-linux and spl-linux changes to linux (LP: #1635656) + - SAUCE: (noup) Update spl to 0.6.5.8-2, zfs to 0.6.5.8-0ubuntu4 (LP: + #1635656) + + * [Feature] SKX: perf uncore PMU support (LP: #1591810) + - perf/x86/intel/uncore: Add Skylake server uncore support + - perf/x86/intel/uncore: Remove hard-coded implementation for Node ID mapping + location + - perf/x86/intel/uncore: Handle non-standard counter offset + + * [Feature] Purley: Memory Protection Keys (LP: #1591804) + - x86/pkeys: Add fault handling for PF_PK page fault bit + - mm: Implement new pkey_mprotect() system call + - x86/pkeys: Make mprotect_key() mask off additional vm_flags + - x86/pkeys: Allocation/free syscalls + - x86: Wire up protection keys system calls + - generic syscalls: Wire up memory protection keys syscalls + - pkeys: Add details of system call use to Documentation/ + - x86/pkeys: Default to a restrictive init PKRU + - x86/pkeys: Allow configuration of init_pkru + - x86/pkeys: Add self-tests + + * kernel invalid opcode in intel_powerclamp (LP: #1630774) + - SAUCE: (no-up) thermal/powerclamp: correct cpu support check + + * please include mlx5_core modules in linux-image-generic package + (LP: #1635223) + - [Config] Include mlx5 in main package + + * [LTCTest] vfio_pci not loaded on Ubuntu 16.10 by default (LP: #1636733) + - [Config] CONFIG_VFIO_PCI=y for ppc64el + + * Yakkety update to v4.8.6 stable release (LP: #1638748) + - drm/vc4: Fix races when the CS reads from render targets. + - drm/prime: Pass the right module owner through to dma_buf_export() + - drm/i915/backlight: setup and cache pwm alternate increment value + - drm/i915/backlight: setup backlight pwm alternate increment on backlight + enable + - drm/amdgpu: fix IB alignment for UVD + - drm/amdgpu/dce10: disable hpd on local panels + - drm/amdgpu/dce8: disable hpd on local panels + - drm/amdgpu/dce11: disable hpd on local panels + - drm/amdgpu/dce11: add missing drm_mode_config_cleanup call + - drm/amdgpu: initialize the context reset_counter in amdgpu_ctx_init + - drm/amdgpu: change vblank_time's calculation method to reduce computational + error. + - drm/radeon: narrow asic_init for virtualization + - drm/radeon/si/dpm: fix phase shedding setup + - drm/radeon: change vblank_time's calculation method to reduce computational + error. + - drm/vmwgfx: Limit the user-space command buffer size + - drm/fsl-dcu: fix endian issue when using clk_register_divider + - drm/amd/powerplay: fix mclk not switching back after multi-head was disabled + - HID: add quirk for Akai MIDImix. + - drm/i915/skl: Update plane watermarks atomically during plane updates + - drm/i915: Move CRTC updating in atomic_commit into it's own hook + - drm/i915/skl: Update DDB values atomically with wms/plane attrs + - drm/i915/skl: Don't try to update plane watermarks if they haven't changed + - drm/i915/gen9: only add the planes actually affected by ddb changes + - drm/i915/gen9: fix the WaWmMemoryReadLatency implementation + - drm/i915/gen9: minimum scanlines for Y tile is not always 4 + - drm/i915/gen9: fix plane_blocks_per_line on watermarks calculations + - drm/i915/gen9: fix the watermark res_blocks value + - drm/i915: SAGV is not SKL-only, so rename a few things + - drm/i915: introduce intel_has_sagv() + - drm/i915/kbl: KBL also needs to run the SAGV code + - Revert "drm/i915: Check live status before reading edid" + - drm/i915: Account for TSEG size when determining 865G stolen base + - drm/i915/skl: Ensure pipes with changed wms get added to the state + - drm/i915: Allow PCH DPLL sharing regardless of DPLL_SDVO_HIGH_SPEED + - drm/i915: Move long hpd handling into the hotplug work + - drm/i915: Allow DP to work w/o EDID + - drm/i915: Just clear the mmiodebug before a register access + - drm/i915: Unalias obj->phys_handle and obj->userptr + - posix_acl: Clear SGID bit when setting file permissions + - rt2x00usb: Fix error return code + - scsi: cxlflash: Remove the device cleanly in the system shutdown path + - genirq/generic_chip: Add irq_unmap callback + - coresight: Remove erroneous dma_free_coherent in tmc_probe + - uio: fix dmem_region_start computation + - ARM: clk-imx35: fix name for ckil clk + - spi: spi-fsl-dspi: Drop extra spi_master_put in device remove function + - i40e: remove a stray unlock + - i40e: fix broken i40e_config_rss_aq function + - mwifiex: correct aid value during tdls setup + - mwifiex: fix failed to reconnect after interface disabled/enabled + - ath10k: Add WMI_SERVICE_PERIODIC_CHAN_STAT_SUPPORT wmi service + - ath10k: fix sending frame in management path in push txq logic + - ath10k: fix reporting channel survey data + - ath10k: fix throughput regression in multi client mode + - crypto: marvell - Don't overwrite default creq->state during initialization + - crypto: gcm - Fix IV buffer size in crypto_gcm_setkey + - crypto: marvell - Update transformation context for each dequeued req + - crypto: arm/ghash-ce - add missing async import/export + - crypto: ccp - Fix return value check in ccp_dmaengine_register() + - hwrng: omap - Only fail if pm_runtime_get_sync returns < 0 + - ASoC: topology: Fix error return code in soc_tplg_dapm_widget_create() + - ASoC: dapm: Fix possible uninitialized variable in snd_soc_dapm_get_volsw() + - ASoC: dapm: Fix value setting for _ENUM_DOUBLE MUX's second channel + - ASoC: dapm: Fix kcontrol creation for output driver widget + - ASoC: sst-bxt-rt298: fix obsoleted initializers for array + - ASoC: sst-bxt-da7219_max98357a: fix obsoleted initializers for array + - iio: ad5755: fix off-by-one on devnr limit check + - iio: light: us5182d: Add missing error code assignment before test + - staging: android ion/hisi: fix dependencies + - staging: sm750fb: Correctly set CLOCK_PHASE bit of display controller. + - staging: r8188eu: Fix scheduling while atomic splat + - staging: ks7010: fix wait_for_completion_interruptible_timeout return + handling + - staging: ks7010: declare private functions static + - IB/hfi1: Move iowait_init() to priv allocate + - IB/rdmavt: Correct sparse annotation + - IB/qib: Remove qpt_mask global + - IB/mlx5: Fix steering resource leak + - power: bq24257: Fix use of uninitialized pointer bq->charger + - dmaengine: ipu: remove bogus NO_IRQ reference + - mm/hugetlb: check for reserved hugepages during memory offline + - mm/hugetlb: improve locking in dissolve_free_huge_pages() + - drm/vmwgfx: Avoid validating views on view destruction + - s390/cio: fix accidental interrupt enabling during resume + - s390/con3270: fix use of uninitialised data + - s390/con3270: fix insufficient space padding + - clk: bcm2835: Skip PLLC clocks when deciding on a new clock parent + - clk: gcc-msm8996: Fix pcie 2 pipe register offset + - clk: qcom: select GDSC for msm8996 gcc and mmcc + - clk: qoriq: fix a register offset error + - clk: Return errors from clk providers in __of_clk_get_from_provider() + - clk: core: Force setting the phase delay when no change + - clk: divider: Fix clk_divider_round_rate() to use clk_readl() + - perf data: Fix building in 32 bit platform with libbabeltrace + - perf hists browser: Fix event group display + - perf powerpc: Fix build-test failure + - perf ui/tui: Reset output width for hierarchy + - perf ui/stdio: Always reset output width for hierarchy + - perf symbols: Check symbol_conf.allow_aliases for kallsyms loading too + - perf symbols: Fixup symbol sizes before picking best ones + - iwlwifi: check for valid ethernet address provided by OEM + - iwlwifi: mvm: fix pending frames tracking on tx resp + - iwlwifi: mvm: call a different txq_enable function + - iwlwifi: mvm: free reserved queue on STA removal + - iwlwifi: mvm: support BAR in reorder buffer + - iwlwifi: mvm: disable P2P queue on mac context release + - iwlwifi: mvm: bail out if CTDP start operation fails + - ARM: dts: sun9i: Add missing #interrupt-cells to R_PIO pinctrl device node + - pinctrl: qcom: fix masking of pinmux functions + - mpt3sas: Don't spam logs if logging level is 0 + - powerpc: Always restore FPU/VEC/VSX if hardware transactional memory in use + - powerpc: Add check_if_tm_restore_required() to giveup_all() + - powerpc/nvram: Fix an incorrect partition merge + - powerpc: Fix usage of _PAGE_RO in hugepage + - ARM: pxa: pxa_cplds: fix interrupt handling + - ARM: pxa: fix GPIO double shifts + - ARM: dts: NSP: Correct RAM amount for BCM958625HR board + - ARM: dts: fix RealView EB SMSC ethernet version + - ARM: dts: omap3: overo: add missing unit name for lcd35 display + - PCI: rcar: Fix pci_remap_iospace() failure path + - PCI: aardvark: Fix pci_remap_iospace() failure path + - PCI: generic: Fix pci_remap_iospace() failure path + - PCI: versatile: Fix pci_remap_iospace() failure path + - PCI: designware: Fix pci_remap_iospace() failure path + - PCI: tegra: Fix pci_remap_iospace() failure path + - libnvdimm: clear the internal poison_list when clearing badblocks + - Linux 4.8.6 + + * Yakkety update to v4.8.5 stable release (LP: #1637520) + - gpio: mpc8xxx: Correct irq handler function + - mei: fix return value on disconnection + - mei: me: add kaby point device ids + - regulator: tps65910: Work around silicon erratum SWCZ010 + - clk: imx6: initialize GPU clocks + - clk: imx6: fix i.MX6DL clock tree to reflect reality + - spi: spidev_test: Fix buffer overflow in unescape() + - PM / devfreq: event: remove duplicate devfreq_event_get_drvdata() + - ath10k: fix copy engine 5 destination ring stuck + - rtlwifi: Fix missing country code for Great Britain + - mmc: block: don't use CMD23 with very old MMC cards + - mmc: sdhci: cast unsigned int to unsigned long long to avoid unexpeted error + - PCI: Mark Atheros AR9580 to avoid bus reset + - PCI: tegra: Fix argument order in tegra_pcie_phy_disable() + - platform: don't return 0 from platform_get_irq[_byname]() on error + - cpufreq: ti: Use generic platdev driver + - cpufreq: conservative: Fix next frequency selection + - cpufreq: skip invalid entries when searching the frequency + - cpufreq: intel_pstate: Fix unsafe HWP MSR access + - cpufreq: fix overflow in cpufreq_table_find_index_dl() + - parisc: Increase KERNEL_INITIAL_SIZE for 32-bit SMP kernels + - parisc: Fix self-detected CPU stall warnings on Mako machines + - parisc: Fix kernel memory layout regarding position of __gp + - parisc: Increase initial kernel mapping size + - pstore/ramoops: fixup driver removal + - pstore/core: drop cmpxchg based updates + - pstore/ram: Use memcpy_toio instead of memcpy + - pstore/ram: Use memcpy_fromio() to save old buffer + - perf intel-pt: Fix snapshot overlap detection decoder errors + - perf intel-pt: Fix estimated timestamps for cycle-accurate mode + - perf intel-pt: Fix MTC timestamp calculation for large MTC periods + - dm: mark request_queue dead before destroying the DM device + - dm: return correct error code in dm_resume()'s retry loop + - dm rq: take request_queue lock while clearing QUEUE_FLAG_STOPPED + - dm mpath: check if path's request_queue is dying in activate_path() + - dm crypt: fix crash on exit + - powerpc/xmon: Don't use ld on 32-bit + - powerpc/vdso64: Use double word compare on pointers + - powerpc/powernv: Pass CPU-endian PE number to opal_pci_eeh_freeze_clear() + - powerpc/eeh: Null check uses of eeh_pe_bus_get + - powerpc/powernv: Use CPU-endian hub diag-data type in + pnv_eeh_get_and_dump_hub_diag() + - powerpc/powernv: Use CPU-endian PEST in pnv_pci_dump_p7ioc_diag_data() + - powerpc/mm: Update FORCE_MAX_ZONEORDER range to allow hugetlb w/4K + - powerpc/mm/hash64: Fix might_have_hea() check + - IB/srp: Fix infinite loop when FMR sg[0].offset != 0 + - IB/core: correctly handle rdma_rw_init_mrs() failure + - ubi: Deal with interrupted erasures in WL + - zfcp: fix fc_host port_type with NPIV + - zfcp: fix ELS/GS request&response length for hardware data router + - zfcp: close window with unblocked rport during rport gone + - zfcp: retain trace level for SCSI and HBA FSF response records + - zfcp: restore: Dont use 0 to indicate invalid LUN in rec trace + - zfcp: trace on request for open and close of WKA port + - zfcp: restore tracing of handle for port and LUN with HBA records + - zfcp: fix D_ID field with actual value on tracing SAN responses + - zfcp: fix payload trace length for SAN request&response + - zfcp: trace full payload of all SAN records (req,resp,iels) + - scsi: zfcp: spin_lock_irqsave() is not nestable + - fbdev/efifb: Fix 16 color palette entry calculation + - ovl: Fix info leak in ovl_lookup_temp() + - ovl: copy_up_xattr(): use strnlen + - mb86a20s: fix the locking logic + - mb86a20s: fix demod settings + - cx231xx: don't return error on success + - cx231xx: fix GPIOs for Pixelview SBTVD hybrid + - cx231xx: can't proceed if I2C bus register fails + - ALSA: hda - Fix a failure of micmute led when having multi adcs + - MIPS: Fix -mabi=64 build of vdso.lds + - MIPS: ptrace: Fix regs_return_value for kernel context + - Input: i8042 - skip selftest on ASUS laptops + - Input: elantech - force needed quirks on Fujitsu H760 + - Input: elantech - add Fujitsu Lifebook E556 to force crc_enabled + - sunrpc: fix write space race causing stalls + - NFSD: fix corruption in notifier registration + - NFS: Fix inode corruption in nfs_prime_dcache() + - NFSv4: Don't report revoked delegations as valid in nfs_have_delegation() + - NFSv4: nfs4_copy_delegation_stateid() must fail if the delegation is invalid + - NFSv4: Open state recovery must account for file permission changes + - NFSv4.2: Fix a reference leak in nfs42_proc_layoutstats_generic + - pnfs/blocklayout: fix last_write_offset incorrectly set to page boundary + - scsi: Fix use-after-free + - watchdog: rt2880_wdt: Remove assignment of dev pointer + - watchdog: mt7621_wdt: Remove assignment of dev pointer + - metag: Only define atomic_dec_if_positive conditionally + - soc/fsl/qe: fix gpio save_regs functions + - soc/fsl/qe: fix Oops on CPM1 (and likely CPM2) + - arm64: KVM: VHE: reset PSTATE.PAN on entry to EL2 + - arc: don't leak bits of kernel stack into coredump + - fs/super.c: fix race between freeze_super() and thaw_super() + - cifs: Limit the overall credit acquired + - fs/cifs: keep guid when assigning fid to fileinfo + - Clarify locking of cifs file and tcon structures and make more granular + - Display number of credits available + - Set previous session id correctly on SMB3 reconnect + - SMB3: GUIDs should be constructed as random but valid uuids + - Do not send SMB3 SET_INFO request if nothing is changing + - Cleanup missing frees on some ioctls + - blkcg: Unlock blkcg_pol_mutex only once when cpd == NULL + - x86/e820: Don't merge consecutive E820_PRAM ranges + - kvm: x86: memset whole irq_eoi + - x86/platform/UV: Fix support for EFI_OLD_MEMMAP after BIOS callback updates + - x86/boot/smp: Don't try to poke disabled/non-existent APIC + - pinctrl: intel: Only restore pins that are used by the driver + - pinctrl: baytrail: Fix lockdep + - sched/fair: Fix incorrect task group ->load_avg + - sched/fair: Fix min_vruntime tracking + - irqchip/gicv3: Handle loop timeout proper + - irqchip/eznps: Acknowledge NPS_IPI before calling the handler + - irqchip/gic-v3-its: Fix entry size mask for GITS_BASER + - cxl: Prevent adapter reset if an active context exists + - isofs: Do not return EACCES for unknown filesystems + - memstick: rtsx_usb_ms: Runtime resume the device when polling for cards + - memstick: rtsx_usb_ms: Manage runtime PM when accessing the device + - arm64: swp emulation: bound LL/SC retries before rescheduling + - arm64: kaslr: fix breakage with CONFIG_MODVERSIONS=y + - arm64: percpu: rewrite ll/sc loops in assembly + - arm64: kernel: Init MDCR_EL2 even in the absence of a PMU + - arm64: Cortex-A53 errata workaround: check for kernel addresses + - arm64: KVM: Take S1 walks into account when determining S2 write faults + - ceph: fix error handling in ceph_read_iter + - powerpc/mm: Prevent unlikely crash in copro_calculate_slb() + - mmc: core: Annotate cmd_hdr as __le32 + - mmc: core: switch to 1V8 or 1V2 for hs400es mode + - mmc: rtsx_usb_sdmmc: Avoid keeping the device runtime resumed when unused + - mmc: rtsx_usb_sdmmc: Handle runtime PM while changing the led + - KVM: s390: reject invalid modes for runtime instrumentation + - fscrypto: make XTS tweak initialization endian-independent + - fscrypto: lock inode while setting encryption policy + - ext4: do not advertise encryption support when disabled + - jbd2: fix incorrect unlock on j_list_lock + - ubifs: Fix xattr_names length in exit paths + - target/tcm_fc: use CPU affinity for responses + - target: Re-add missing SCF_ACK_KREF assignment in v4.1.y + - target: Make EXTENDED_COPY 0xe4 failure return COPY TARGET DEVICE NOT + REACHABLE + - target: Don't override EXTENDED_COPY xcopy_pt_cmd SCSI status code + - Revert "target: Fix residual overflow handling in + target_complete_cmd_with_length" + - Linux 4.8.5 + + * Yakkety update to v4.8.4 stable release (LP: #1637517) + - serial: imx: Fix DCD reading + - BUG: atmel_serial: Interrupts not disabled on close + - serial: 8250_dw: Check the data->pclk when get apb_pclk + - serial: 8250_port: fix runtime PM use in __do_stop_tx_rs485() + - ARCv2: intc: Use kflag if STATUS32.IE must be reset + - ARCv2: fix local_save_flags + - debugfs: introduce a public file_operations accessor + - b43: fix debugfs crash + - b43legacy: fix debugfs crash + - carl9170: fix debugfs crashes + - Btrfs: fix free space tree bitmaps on big-endian systems + - Btrfs: fix mount -o clear_cache,space_cache=v2 + - Btrfs: catch invalid free space trees + - btrfs: assign error values to the correct bio structs + - mei: amthif: fix deadlock in initialization during a reset + - drivers: base: dma-mapping: page align the size when unmap_kernel_range + - IB/hfi1: Fix defered ack race with qp destroy + - clk: mvebu: fix setting unwanted flags in CP110 gate clock + - clk: mvebu: dynamically allocate resources in Armada CP110 system controller + - fuse: listxattr: verify xattr list + - fuse: invalidate dir dentry after chmod + - fuse: fix killing s[ug]id in setattr + - mm: filemap: fix mapping->nrpages double accounting in fuse + - i40e: avoid NULL pointer dereference and recursive errors on early PCI error + - xfs: change mailing list address + - mm: filemap: don't plant shadow entries without radix tree node + - brcmfmac: fix pmksa->bssid usage + - brcmfmac: fix memory leak in brcmf_fill_bss_param + - brcmfmac: use correct skb freeing helper when deleting flowring + - ASoC: nau8825: fix bug in FLL parameter + - ASoC: Intel: Atom: add a missing star in a memcpy call + - reiserfs: Unlock superblock before calling reiserfs_quota_on_mount() + - async_pq_val: fix DMA memory leak + - scsi: arcmsr: Simplify user_len checking + - ipc/sem.c: fix complex_count vs. simple op race + - mm/hugetlb: fix memory offline with hugepage size > memory block size + - vfs,mm: fix a dead loop in truncate_inode_pages_range() + - jbd2: fix lockdep annotation in add_transaction_credits() + - ext4: enforce online defrag restriction for encrypted files + - ext4: reinforce check of i_dtime when clearing high fields of uid and gid + - ext4: bugfix for mmaped pages in mpage_release_unused_pages() + - ext4: fix memory leak in ext4_insert_range() + - ext4: fix memory leak when symlink decryption fails + - ext4: allow DAX writeback for hole punch + - ext4: release bh in make_indexed_dir + - ext4: unmap metadata when zeroing blocks + - dlm: free workqueues after the connections + - vfs: move permission checking into notify_change() for utimes(NULL) + - cachefiles: Fix attempt to read i_blocks after deleting file [ver #2] + - drm: virtio: reinstate drm_virtio_set_busid() + - acpi, nfit: check for the correct event code in notifications + - cfq: fix starvation of asynchronous writes + - Linux 4.8.4 + + * Yakkety update to v4.8.3 stable release (LP: #1637512) + - v4l: rcar-fcp: Don't force users to check for disabled FCP support + - scsi: configure runtime pm before calling device_add in + scsi_add_host_with_dma + - Make __xfs_xattr_put_listen preperly report errors. + - Linux 4.8.3 + + * KVM: PPC: Book3S HV: Migrate pinned pages out of CMA (LP: #1632045) + - KVM: PPC: Book3S HV: Migrate pinned pages out of CMA + + * unexpectedly large memory usage of mounted snaps (LP: #1636847) + - [Config] switch squashfs to single threaded decode + + * Fix bugs under virtual scsi server driver for Power (LP: #1621088) + - target/user: Use sense_reason_t in tcmu_queue_cmd_ring + - target/user: Return an error if cmd data size is too large + - target/user: Fix comments to not refer to data ring + + * ISST-LTE:pVM nvme 0000:a0:00.0: iommu_alloc failed on NVMe card + (LP: #1633128) + - dma-mapping: introduce the DMA_ATTR_NO_WARN attribute + - powerpc: implement the DMA_ATTR_NO_WARN attribute + - nvme: use the DMA_ATTR_NO_WARN attribute + + * arm64: kprobes disabled (LP: #1634271) + - [Config] Enable KPROBES on arm64 + + * Bad page state in process genwqe_gunzip pfn:3c275 in the genwqe device + driver (LP: #1559194) + - SAUCE: (noup) Bad page state in process genwqe_gunzip pfn:3c275 in the + genwqe device driver + + * CVE-2016-7425 + - scsi: arcmsr: Buffer overflow in arcmsr_iop_message_xfer() + + * Add ipvlan module to 16.04 kernel (LP: #1634705) + - [Config] Add ipvlan to the generic inclusion list + + * hio Ubuntu sauce driver needs porting to 4.8 (LP: #1635594) + - SAUCE: import Huawei ES3000_V2 (2.1.0.23) + - SAUCE: hio: bio_endio() no longer takes errors arg + - SAUCE: hio: blk_queue make_request_fn now returns a blk_qc_t + - SAUCE: hio: use alloc_cpumask_var to avoid -Wframe-larger-than + - SAUCE: hio: fix mask maybe-uninitialized warning + - SAUCE: hio: port to v4.8 base + - [config] enable CONFIG_HIO (Huawei ES3000_V2 PCIe SSD driver) + - SAUCE: hio: Makefile and Kconfig + - [Config] Enforce CONFIG_HIO + + * Yakkety update to v4.8.2 stable release (LP: #1633973) + - usb: storage: fix runtime pm issue in usb_stor_probe2 + - timekeeping: Fix __ktime_get_fast_ns() regression + - usb: dwc3: fix Clear Stall EP command failure + - phy: sun4i-usb: Use spinlock to guard phyctl register access + - ALSA: ali5451: Fix out-of-bound position reporting + - ALSA: usb-audio: Extend DragonFly dB scale quirk to cover other variants + - ALSA: usb-line6: use the same declaration as definition in header for MIDI + manufacturer ID + - mfd: rtsx_usb: Avoid setting ucr->current_sg.status + - mfd: atmel-hlcdc: Do not sleep in atomic context + - mfd: 88pm80x: Double shifting bug in suspend/resume + - mfd: wm8350-i2c: Make sure the i2c regmap functions are compiled + - xen/x86: Update topology map for PV VCPUs + - KVM: PPC: Book3s PR: Allow access to unprivileged MMCR2 register + - KVM: MIPS: Drop other CPU ASIDs on guest MMU changes + - KVM: arm64: Require in-kernel irqchip for PMU support + - KVM: arm/arm64: vgic: Don't flush/sync without a working vgic + - KVM: PPC: BookE: Fix a sanity check + - arm64: fix dump_backtrace/unwind_frame with NULL tsk + - x86/boot: Fix kdump, cleanup aborted E820_PRAM max_pfn manipulation + - x86/irq: Prevent force migration of irqs which are not in the vector domain + - x86/pkeys: Make protection keys an "eager" feature + - x86/cpu: Rename Merrifield2 to Moorefield + - x86/platform/intel-mid: Add Intel Penwell to ID table + - x86/platform/intel-mid: Keep SRAM powered on at boot + - x86/apic: Get rid of apic_version[] array + - arch/x86: Handle non enumerated CPU after physical hotplug + - x86/mm/pkeys: Do not skip PKRU register if debug registers are not used + - x86/dumpstack: Fix x86_32 kernel_stack_pointer() previous stack access + - ARM: fix delays + - ARM: dts: mvebu: armada-390: add missing compatibility string and bracket + - ARM: dts: MSM8064 remove flags from SPMI/MPP IRQs + - ARM: dts: MSM8660 remove flags from SPMI/MPP IRQs + - ARM: cpuidle: Fix error return code + - Bluetooth: Add a new 04ca:3011 QCA_ROME device + - ima: use file_dentry() + - tpm: fix a race condition in tpm2_unseal_trusted() + - tpm_crb: fix crb_req_canceled behavior + - Linux 4.8.2 + + * Bluetooth 04ca:3011 [Asus Aspire V3-371] doesn't work (LP: #1535802) + - Bluetooth: Add a new 04ca:3011 QCA_ROME device + + -- Luis Henriques Fri, 11 Nov 2016 10:30:54 +0000 + +linux (4.8.0-27.29) yakkety; urgency=low + + [ Seth Forshee ] + + * Release Tracking Bug + - LP: #1635377 + + * proc_keys_show crash when reading /proc/keys (LP: #1634496) + - SAUCE: KEYS: ensure xbuf is large enough to fix buffer overflow in + proc_keys_show (LP: #1634496) + + * Revert "If zone is so small that watermarks are the same, stop zone balance" + in yakkety (LP: #1632894) + - Revert "UBUNTU: SAUCE: (no-up) If zone is so small that watermarks are the + same, stop zone balance." + + * lts-yakkety 4.8 cannot mount lvm raid1 (LP: #1631298) + - SAUCE: (no-up) dm raid: fix compat_features validation + + * kswapd0 100% CPU usage (LP: #1518457) + - SAUCE: (no-up) If zone is so small that watermarks are the same, stop zone + balance. + + * [Trusty->Yakkety] powerpc/64: Fix incorrect return value from + __copy_tofrom_user (LP: #1632462) + - SAUCE: (no-up) powerpc/64: Fix incorrect return value from + __copy_tofrom_user + + * Ubuntu 16.10: Oops panic in move_page_tables/page_remove_rmap after running + memory_stress_ng. (LP: #1628976) + - SAUCE: (no-up) powerpc/pseries: Fix stack corruption in htpe code + + * Paths not failed properly when unmapping virtual FC ports in VIOS (using + ibmvfc) (LP: #1632116) + - scsi: ibmvfc: Fix I/O hang when port is not mapped + + * [Ubuntu16.10]KV4.8: kernel livepatch config options are not set + (LP: #1626983) + - [Config] Enable live patching on powerpc/ppc64el + + * CONFIG_AUFS_XATTR is not set (LP: #1557776) + - [Config] CONFIG_AUFS_XATTR=y + + * Yakkety update to 4.8.1 stable release (LP: #1632445) + - arm64: debug: avoid resetting stepping state machine when TIF_SINGLESTEP + - Using BUG_ON() as an assert() is _never_ acceptable + - usb: misc: legousbtower: Fix NULL pointer deference + - Staging: fbtft: Fix bug in fbtft-core + - usb: usbip: vudc: fix left shift overflow + - USB: serial: cp210x: Add ID for a Juniper console + - Revert "usbtmc: convert to devm_kzalloc" + - ALSA: hda - Adding one more ALC255 pin definition for headset problem + - ALSA: hda - Fix headset mic detection problem for several Dell laptops + - ALSA: hda - Add the top speaker pin config for HP Spectre x360 + - Linux 4.8.1 + + * PSL data cache should be flushed before resetting CAPI adapter + (LP: #1632049) + - cxl: Flush PSL cache before resetting the adapter + + * thunder nic: avoid link delays due to RX_PACKET_DIS (LP: #1630038) + - net: thunderx: Don't set RX_PACKET_DIS while initializing + + * crypto/vmx/p8_ghash memory corruption (LP: #1630970) + - crypto: ghash-generic - move common definitions to a new header file + - crypto: vmx - Fix memory corruption caused by p8_ghash + - crypto: vmx - Ensure ghash-generic is enabled + + * arm64: SPCR console not autodetected (LP: #1630311) + - of/serial: move earlycon early_param handling to serial + - [Config] CONFIG_ACPI_SPCR_TABLE=y + - ACPI: parse SPCR and enable matching console + - ARM64: ACPI: enable ACPI_SPCR_TABLE + - serial: pl011: add console matching function + + * 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 + + * sha1-powerpc returning wrong results (LP: #1629977) + - crypto: sha1-powerpc - little-endian support + + -- Seth Forshee Thu, 20 Oct 2016 14:09:37 -0500 + +linux (4.8.0-26.28) yakkety; urgency=low + + * CVE-2016-5195 + - SAUCE: mm: remove gup_flags FOLL_WRITE games from __get_user_pages() + + -- Stefan Bader Mon, 17 Oct 2016 13:04:09 +0200 + +linux (4.8.0-22.24) yakkety; urgency=low + + * CVE-2016-7039 (LP: #1631287) + - SAUCE: net: add recursion limit to GRO + + -- Andy Whitcroft Fri, 07 Oct 2016 22:46:28 +0100 + +linux (4.8.0-21.23) yakkety; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1630279 + + * powerpc 4.8.0-17 fails to boot on PowerMac G5 (LP: #1628968) + - Revert "Revert "powerpc: Simplify module TOC handling"" + + * Regression tests can not detect binfmt_elf mmpa semantic change + (LP: #1630069) + - SAUCE: apparmor: add flag to detect semantic change, to binfmt_elf mmap + + * Autofs parameter substitution broken in kernel 4.4.0-38 and 4.4.0-40 + (LP: #1629204) + - SAUCE: (namespace) autofs4: Use real_cred for requestor's ids + + -- Tim Gardner Tue, 04 Oct 2016 08:01:21 -0600 + +linux (4.8.0-20.22) yakkety; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1629730 + + [ Upstream Kernel Changes ] + + * rebase to v4.8 + + -- Tim Gardner Sun, 02 Oct 2016 19:10:40 -0600 + +linux (4.8.0-19.21) yakkety; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1629057 + + * 4.8.0 kernels do not complete boot process on VM (LP: #1627198) + - [Config] CONFIG_HARDENED_USERCOPY_PAGESPAN=n + + * mount-image-callback cannot mount partitioned disk image (LP: #1628336) + - SAUCE: nbd: Only delay uevent until connected + + * Support snaps inside of lxd containers (LP: #1611078) + - apparmor: add interface to be able to grab loaded policy + - securityfs: update interface to allow inode_ops, and setup from vfs fns + - apparmor: refactor aa_prepare_ns into prepare_ns and create_ns routines + - apparmor: add __aa_find_ns fn + - apparmor: add mkdir/rmdir interface to manage policy namespaces + - apparmor: fix oops in pivot_root mediation + - apparmor: fix warning that fn build_pivotroot discards const + - apparmor: add interface to advertise status of current task stacking + - apparmor: update policy permissions to consider ns being viewed/managed + - apparmor: add per ns policy management interface + - apparmor: bump domain stacking version to 1.2 + + * linux-image-extra-4.8.0-17-generic does not provide many sound card modules + (LP: #1628523) + - [Config] CONFIG_ZONE_DMA=y for generic + + * Yakkety - disable ARCH_ZX (LP: #1628503) + - [Config] armhf: disable ARCH_ZX + + * Enable switchdev config parameter for Yakkety (LP: #1628241) + - [Config] CONFIG_NET_SWITCHDEV=y for amd64/arm64 + + * Ubuntu 16.10 kernel v4.8: Installation failing on Habanero with Shiner card + (LP: #1628009) + - firmware: Update bnx2x to 7.13.1.0 + + * vNIC driver missing in 4.8 kernel package (LP: #1628187) + - [Config] Enable CONFIG_IBMVNIC=m + + * Yakkety - armhf: MFD_TPS65217 and REGULATOR_TPS65217 are boot essential + (LP: #1628112) + - [Config] armhf: MFD_TPS65217=y && REGULATOR_TPS65217=y + + * Miscellaneous Ubuntu changes + - Rebase to v4.8-rc8 + - [Config] skip Ubuntu-4.8.0-18.20 + - [Config] missing modules in armhf/s390x + + * Miscellaneous Ubuntu changes + - rebase to v4.8-rc8 + + -- Leann Ogasawara Sun, 25 Sep 2016 12:13:35 -0700 + +linux (4.8.0-17.19) yakkety; urgency=low + + * Release Tracking Bug + - LP: #1627387 + + * build squashfs into xenial kernels by default (LP: #1593134) + - Remove squashfs udeb + + * [Yakkety] Fix up ATA_GENERIC to match annotations file. (LP: #1627322) + - Add d-i support for ata_generic + + * [Yakkety] Fix up CONFIG_BLK_DEV_SD to match annotations (LP: #1627330) + - [Config] Enforce CONFIG_BLK_DEV_SD=y,CONFIG_BLK_DEV_SR=y + + * [Yakkety] Fix up ATA_PIIX to match annotations file (LP: #1627324) + - [Config] Enforce CONFIG_ATA_PIIX=y for amd64/i386 + + * Yakkety - USB drivers must be built in (LP: #1627323) + - Update annotation enforcement for CONFIG_USB_[E|O|U|X]HCI_HCD + + * 4.8.0-16.17: genirq: Flags mismatch serial vs goldfish_pdev_bus + (LP: #1627052) + - [Config] CONFIG_GOLDFISH=n + + * yakkety 4.8, remove module noise kernel-4.8 (LP: #1626104) + - Revert "UBUNTU: SAUCE: Clear Linux: bootstats: add printk's to measure boot + time in more detail" + + * Permission denied in CIFS with kernel 4.4.0-38 (LP: #1626112) + - SAUCE: Fix regression which breaks DFS mounting + + * Miscellaneous Ubuntu changes + - [Config] apply xenial configuration annotations + - s390x -- DEBUG_RODATA is now valid + - [Config] s390x -- CONFIG_SQUASHFS=y + - [Config] s390x -- CONFIG_ECRYPT_FS=y + - [Config] Enable CONFIG_ACPI_PCI_SLOT=y for arm64 + - [Config] Enable CONFIG_ACPI_HED=y for arm64 + - [Config] Enable CONFIG_QUICC_ENGINE=y + + * Miscellaneous upstream changes + - annotations: pull back to xenial + + -- Leann Ogasawara Sat, 24 Sep 2016 21:31:31 -0700 + +linux (4.8.0-16.17) yakkety; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1626768 + + * Support ARM GIC ITS in ACPI mode (LP: #1626631) + - [Config] CONFIG_ACPI_IORT=y + - SAUCE: ACPI: I/O Remapping Table (IORT) initial support + - SAUCE: ACPI: Add new IORT functions to support MSI domain handling + - SAUCE: irqchip/gicv3-its: Cleanup for ITS domain initialization + - SAUCE: irqchip/gicv3-its: Refactor ITS DT init code to prepare for ACPI + - SAUCE: irqchip/gicv3-its: Probe ITS in the ACPI way + - SAUCE: irqchip/gicv3-its: Factor out PCI-MSI part that might be reused for ACPI + - SAUCE: irqchip/gicv3-its: Use MADT ITS subtable to do PCI/MSI domain initialization + - SAUCE: PCI/MSI: Setup MSI domain on a per-device basis using IORT ACPI table + + * 4.8 dropped CONFIG_ATA=y (breaks systemd's TEST-08-ISSUE-2730 upstream test) + (LP: #1626394) + - [Config] CONFIG_ATA=y + + * Yakkety: Enable drivers with respect to Xenial (LP: #1626543) + - [Config] CONFIG_VMD=m + - [Config] CONFIG_MAC80211_RC_MINSTREL_VHT=y for all arches + - [Config] CONFIG_OF=y for all arches + - [Config] CONFIG_BLK_DEV_NVME_SCSI=y + - [Config] Xenial device settings sync with amd64 + - [Config] Xenial device settings sync with i386 + - [Config] CONFIG_MTD_UBI_GLUEBI=m + - [Config] Xenial device settings sync with armhf + - [Config] Xenial device settings sync with arm64 + + * yakkety 4.8, missing config CONFIG_USERFAULTFD=y (LP: #1626149) + - [Config] CONFIG_USERFAULTFD=y + + * 4.8 regression: SLAB is being used instead of SLUB (LP: #1626564) + - [Config] CONFIG_SLUB=y + + * image won't boot after upgrading to yakkety's 4.8 kernel because efi + (LP: #1626158) + - add nls_cp437 to the generic.inclusion-list + + -- Tim Gardner Thu, 22 Sep 2016 06:51:45 -0600 + +linux (4.8.0-15.16) yakkety; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1626239 + + * image won't boot after upgrading to yakkety's 4.8 kernel because efi + (LP: #1626158) + - [Config] CONFIG_FAT_DEFAULT_IOCHARSET=iso8859-1 + - [Config] CONFIG_NLS_CODEPAGE_437=y + - [Config] CONFIG_VFAT_FS=y + + * Miscellaneous Ubuntu changes + - SAUCE: seccomp: log actions even when audit is disabled + + -- Tim Gardner Wed, 21 Sep 2016 06:41:03 -0600 + +linux (4.8.0-14.15) yakkety; urgency=low + + * CVE-2016-1575 (LP: #1534961) + - SAUCE: overlayfs: Skip permission checking for trusted.overlayfs.* xattrs + - SAUCE: overlayfs: Be more careful about copying up sxid files + - SAUCE: overlayfs: Propogate nosuid from lower and upper mounts + + * CVE-2016-1576 (LP: #1535150) + - SAUCE: overlayfs: Skip permission checking for trusted.overlayfs.* xattrs + - SAUCE: overlayfs: Be more careful about copying up sxid files + - SAUCE: overlayfs: Propogate nosuid from lower and upper mounts + + * overlay: mkdir fails if directory exists in lowerdir in a user namespace + (LP: #1531747) + - SAUCE: overlayfs: Skip permission checking for trusted.overlayfs.* xattrs + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_PM_WAKELOCKS=y + - [Config] CONFIG_CLEANCACHE=y + - [Config] CONFIG_WQ_POWER_EFFICIENT_DEFAULT=y + - [Config] CONFIG_PROCESSOR_SELECT=y + - [Config] Enabled some networking options + - SAUCE: overlayfs: Enable user namespace mounts + + -- Leann Ogasawara Tue, 20 Sep 2016 13:56:58 -0700 + +linux (4.8.0-13.14) yakkety; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1625733 + + * fails to mount ext4 crypto-crc32 is missing (LP: #1625728) + - [Config] Add some CRC crypto modules to d-i + + * Linux netfilter IPT_SO_SET_REPLACE memory corruption (LP: #1555338) + - SAUCE: [nf,v2] netfilter: x_tables: don't rely on well-behaving userspace + + * Brightness control on Lenovo ThinkPad T430 does not work. (LP: #1183856) + - SAUCE: (no-up) ACPI: Disable Windows 8 compatibility for some Lenovo + ThinkPads + + * Option GE0301 3G modem doesn't work (LP: #348861) + - SAUCE: (no-up) Added quirk to recognize GE0301 3G modem as an interface. + + * [regression 4.4 -> 4.8] Please re-enable CONFIG_TOUCHSCREEN_ELAN + (LP: #1625259) + - [Config] CONFIG_TOUCHSCREEN_ELAN=m for all arches + + * Miscellaneous Ubuntu changes + - SAUCE: (namespace) block_dev: Forbid unprivileged mounting when device is + opened for writing + - SAUCE: fan: add VXLAN implementation + - [Config] CONFIG_VFIO=m for ppc64el + + -- Tim Gardner Mon, 19 Sep 2016 10:50:29 -0600 + +linux (4.8.0-12.13) yakkety; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1625233 + + * Miscellaneous Ubuntu changes + - rebase to v4.8-rc7 + - [Config] CONFIG_SCSI_DEBUG=m for all arches + + -- Tim Gardner Mon, 19 Sep 2016 06:35:21 -0600 + +linux (4.8.0-11.12) yakkety; urgency=low + + * change_hat is logging failures during expected hat probing (LP: #1615893) + - SAUCE: apparmor: Fix auditing behavior for change_hat probing + + * deleted files outside of the namespace are not being treated as + disconnected + (LP: #1615892) + - SAUCE: apparmor: deleted dentries can be disconnected + + * stacking to unconfined in a child namespace confuses mediation + (LP: #1615890) + - SAUCE: apparmor: special case unconfined when determining the mode + + * apparmor module parameters can be changed after the policy is locked + (LP: #1615895) + - SAUCE: apparmor: fix: parameters can be changed after policy is locked + + * AppArmor profile reloading causes an intermittent kernel BUG (LP: + #1579135) + - SAUCE: apparmor: fix vec_unique for vectors larger than 8 + + * label vec reductions can result in reference labels instead of direct + access + to labels (LP: #1615889) + - SAUCE: apparmor: reduction of vec to single entry is just that entry + + * profiles from different namespaces can block other namespaces from being + able to load a profile (LP: #1615887) + - SAUCE: apparmor: profiles in one ns can affect mediation in another ns + + * The label build for onexec when stacking is wrong (LP: #1615881) + - SAUCE: apparmor: Fix label build for onexec stacking. + + * The inherit check for new to old label comparison for domain transitions + is + wrong (LP: #1615880) + - SAUCE: apparmor: Fix new to old label comparison for domain transitions + + * warning stack trace while playing with apparmor namespaces (LP: #1593874) + - SAUCE: apparmor: fix stack trace when removing namespace with profiles + + * __label_update proxy comparison test is wrong (LP: #1615878) + - SAUCE: apparmor: Fix __label_update proxy comparison test + + * reading /sys/kernel/security/apparmor/profiles requires CAP_MAC_ADMIN + (LP: #1560583) + - SAUCE: apparmor: Allow ns_root processes to open profiles file + - SAUCE: apparmor: Consult sysctl when reading profiles in a user ns + + * policy namespace stacking (LP: #1379535) + - SAUCE: (no-up) apparmor: rebase of apparmor3.5-beta1 snapshot for 4.8 + - SAUCE: add a sysctl to enable unprivileged user ns AppArmor policy loading + + * Miscellaneous Ubuntu changes + - [Debian] Dynamically determine linux udebs package name + - [Debian] d-i -- fix dtb handling in new kernel-wedge form + - SAUCE: apparmor: Fix FTBFS due to bad include path + - SAUCE: apparmor: add data query support + - [Config] Set CONFIG_SECURITY_APPARMOR_UNCONFINED_INIT=y + + * Miscellaneous upstream changes + - fixup backout policy view capable for forward port + - apparmor: fix: Rework the iter loop for label_update + - apparmor: add more assertions for updates/merges to help catch errors + - apparmor: Make pivot root transitions work with stacking + - apparmor: convert delegating deleted files to mediate deleted files + - apparmor: add missing parens. not a bug fix but highly recommended + - apparmor: add a stack_version file to allow detection of bug fixes + - apparmor: push path lookup into mediation loop + - apparmor: default to allowing unprivileged userns policy + - apparmor: fix: permissions test to view and manage policy + - apparmor: Add Basic ns cross check condition for ipc + + -- Leann Ogasawara Sat, 17 Sep 2016 10:03:16 -0700 + +linux (4.8.0-10.11) yakkety; urgency=low + + * Miscellaneous Ubuntu changes + - ubuntu: vbox -- update to 5.1.6-dfsg-1 + - SAUCE: Enable vbox build + + -- Tim Gardner Thu, 15 Sep 2016 07:10:51 -0600 + +linux (4.8.0-9.10) yakkety; urgency=low + + * Miscellaneous Ubuntu changes + - [Config] arm64: CONFIG_ARCH_THUNDER=y + - [Config] arm64: CONFIG_PCI_HOST_THUNDER_*=y + - [Config] arm64: CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y + - [Config] arm64: CONFIG_DRM_AST=m + - [Config] arm64: CONFIG_FRAMEBUFFER_CONSOLE=y + - d-i: initrd needs ext4 and scsi modules + - SAUCE: AUFS aufs4.x-rcN 20160912 + - [Config] Enable CONFIG_GPIO_XGENE* + - [Config] Disable CONFIG_POWER_RESET_XGENE + - [Config] CONFIG_EDAC_XGENE=m + - [Config] CONFIG_ARM64_ACPI_PARKING_PROTOCOL=y + - [Config] CONFIG_XGENE_DMA=m + + -- Tim Gardner Mon, 12 Sep 2016 10:26:12 -0600 + +linux (4.8.0-8.9) yakkety; urgency=low + + * New device ID for Kabypoint (LP: #1622469) + - mfd: lpss: Add Intel Kaby Lake PCH-H PCI IDs + - SAUCE: i2c: i801: Add support for Kaby Lake PCH-H + + * Miscellaneous Ubuntu changes + - rebase to v4.8-rc6 + - SAUCE: (noup) Update spl to 0.6.5.8-0ubuntu1, zfs to 0.6.5.8-0ubuntu1 + + [ Upstream Kernel Changes ] + + * rebase to v4.8-rc6 + - LP: #1617900 + + -- Tim Gardner Fri, 09 Sep 2016 10:53:40 -0600 + +linux (4.8.0-7.8) yakkety; urgency=low + + * Miscellaneous Ubuntu changes + - [Debian] Use src_pkg_name when constructing udeb control files + + -- Tim Gardner Fri, 09 Sep 2016 07:26:25 -0600 + +linux (4.8.0-6.7) yakkety; urgency=low + + * Enable virtual scsi server driver for Power (LP: #1615665) + - SAUCE: Ibmvscsis: Properly deregister target sessions + - SAUCE: Return TCMU-generated sense data to fabric module + - SAUCE: Ibmvscsis: Code cleanup of print statements + - SAUCE: Ibmvscsis: Fixed a bug reported by Dan Carpenter + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_XEN_FBDEV_FRONTEND=m + - rebase to v4.8-rc5 + + [ Upstream Kernel Changes ] + + * rebase to v4.8-rc5 + + -- Tim Gardner Thu, 01 Sep 2016 12:09:26 -0600 + +linux (4.8.0-5.6) yakkety; urgency=low + + * support compressed kernels on arm64 (LP: #1384955) + - [Config] Switch to compressed Image on arm64 + + * Miscellaneous Ubuntu changes + - SAUCE: (namespace) security/integrity: Harden against malformed xattrs + - 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) posix_acl: Export posix_acl_fix_xattr_userns() to modules + - SAUCE: (namespace) fuse: Add support for pid namespaces + - SAUCE: (namespace) fuse: Support fuse filesystems outside of init_user_ns + - SAUCE: (namespace) fuse: Translate ids in posix acl xattrs + - 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) ext4: Add module parameter to enable user namespace + mounts + - rebase to v4.8-rc4 + + [ Upstream Kernel Changes ] + + * rebase to v4.8-rc4 + + -- Tim Gardner Thu, 25 Aug 2016 07:13:03 -0600 + +linux (4.8.0-4.5) yakkety; urgency=low + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_AUFS_FS=m + - SAUCE: AUFS 27ef55c6d5f4726b33f60b33a9888963d26fa7fb + + -- Tim Gardner Tue, 23 Aug 2016 12:25:59 -0600 + +linux (4.8.0-3.4) yakkety; urgency=low + + * MacBookPro11,4 fails to poweroff or suspend (LP: #1587714) + - SAUCE: PCI: Workaround to enable poweroff on Mac Pro 11 + + * Miscellaneous Ubuntu changes + - rebase to v4.8-rc3 + + -- Tim Gardner Thu, 18 Aug 2016 10:33:07 -0600 + +linux (4.8.0-2.3) yakkety; urgency=low + + * Miscellaneous Ubuntu changes + - [Config] Add fuse to inclusion list + - SAUCE: update spl/zfs to support v4.8 + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Debian] do_zfs=false" + + -- Tim Gardner Wed, 17 Aug 2016 08:06:33 -0600 + +linux (4.8.0-1.2) yakkety; urgency=low + + * Miscellaneous Ubuntu changes + - [Config] Enabled enforcement for CONFIG_HOTPLUG_PCI_PCIE + - [Config] Enabled enforcement for CONFIG_NVRAM + - [Config] Enabled enforcement for CONFIG_FRAMEBUFFER_CONSOLE + - [Config] Enabled enforcement for CONFIG_DRM_MGAG200 + - [Config] Enabled enforcement for CONFIG_INPUT_UINPUT + - [Config] Enabled enforcement for CONFIG_THERM_ADT746X + - [Config] Enabled enforcement for CONFIG_REGULATOR_TWL4030 + - [Config] Enabled enforcement for CONFIG_SECCOMP + - [Config] Enabled enforcement for + - rebase to v4.8-rc2 + - [Config] Dropped CONFIG_OVERLAY_FS_V1 from annotations + - [Config] CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y + - SAUCE: security,perf: Allow further restriction of perf_event_open + + [ Upstream Kernel Changes ] + + * rebase to v4.8-rc2 + + -- Tim Gardner Thu, 11 Aug 2016 11:08:14 -0600 + +linux (4.8.0-0.1) yakkety; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to v4.8-rc1 + - LP: #1607647 + - LP: #1498667 + - LP: #1592547 + - LP: #1319984 + - LP: #1268727 + - LP: #1600623 + - LP: #1465724 + - LP: #1333569 + + -- Tim Gardner Tue, 02 Aug 2016 14:23:12 -0600 + +linux (4.8.0-0.0) yakkety; urgency=low + + * empty stanza + + -- Tim Gardner Tue, 02 Aug 2016 10:53:17 -0600 + +linux (4.7.0-0.2) yakkety; urgency=low + + * Miscellaneous Ubuntu changes fixing various FTBS issues + - [Config] CONFIG_BLK_DEV_CRYPTOLOOP=m + - [Config] make powerpc udeb block modules optional + - [Config] CONFIG_PLIP=m + - [Config] CONFIG_IRDA=m armhf/arm64 + - [Config] CONFIG_IPMI_HANDLER=m armhf/arm64 + - [Config] CONFIG_MOUSE_PS2=m + - [Config] remove ppc64el fb-modules + + -- Tim Gardner Mon, 01 Aug 2016 10:00:57 -0600 + +linux (4.7.0-0.1) yakkety; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to v4.7 + - LP: #972604 + + -- Tim Gardner Mon, 06 Jun 2016 12:00:45 -0600 + +linux (4.7.0-0.0) yakkety; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1588856 + + * linux: 4.6 kernel fails to boot on ppc64el multi-path system (LP: #1588421) + - scsi_dh_alua: do not fail for unknown VPD identification + + * [Hyper-V] Put tools/hv/lsvmbus in /usr/sbin (LP: #1585311) + - [Config] Install lsvmbus in cloud tools + - SAUCE: tools/hv/lsvmbus -- convert to python3 + - SAUCE: tools/hv/lsvmbus -- add manual page + + * boot stalls on USB detection errors (LP: #1437492) + - usb: core: hub: hub_port_init lock controller instead of bus + + * [Bug]KNL:Spread MWAIT cache lines over all nodes (LP: #1585850) + - kernek/fork.c: allocate idle task for a CPU always on its local node + + * VirtIO (and probably other modules as well) is built-in, make it modular... + (LP: #1475078) + - [Config] CONFIG_VIRTIO_*=m for all but s390x + - [Config] CONFIG_USB=m + - [Config] CONFIG_BLK_DEV_*=m + - [Config] CONFIG_ATA=m + - [Config] CONFIG_SCSI=m + - [Config] CONFIG_DEVFREQ_GOV_*=m + - [Config] CONFIG_XEN_NETDEV_*=m + - [Config] CONFIG_AGP=m + - [Config] CONFIG_ECRYPT_FS=m + - [Config] CONFIG_ACPI_*=m + - [Config] CONFIG_CPU_FREQ_GOV_*=m for all but powerpc/ppc64el + - [Config] Modularize some CRYPTO + - [Config] CONFIG_FDDI=m + - [Config] CONFIG_FIXED_PHY=m + - [Config] CONFIG_VFAT_FS=m for all but armhf + - [Config] CONFIG_TUN=m + - [Config] CONFIG_UNIX=m + - [Config] CONFIG_TRUSTED_KEYS=m + - [Config] CONFIG_LEDS_CLASS=m for amd64,i386,ppc64el + + * debian.master/.../getabis bogus warnings "inconsistant compiler versions" + and "not a git repository" (LP: #1584890) + - [debian] getabis: Only git add $abidir if running in local repo + - [debian] getabis: Fix inconsistent compiler versions check + + * conflicting modules in udebs - arc4.ko (LP: #1582991) + - [Config] Remove arc4 from nic-modules + + * arm64: statically link rtc-efi (LP: #1583738) + - [Config] Link rtc-efi statically on arm64 + + * Miscellaneous Ubuntu changes + - [Debian] zfs: transform symlink into referent file/dir + - [Debian] Added tristate.sh + - [Config] CONFIG_FUSE_FS=m + - [Config] CONFIG_ACPI_APEI_ERST_DEBUG=m + - [Config] CONFIG_PSTORE_CONSOLE=y + - Added Snapcraft files + - [Config] Mark CONFIG_UNIX enforced + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Config] CONFIG_UNIX=m" + + -- Tim Gardner Tue, 17 May 2016 11:20:20 -0600 + +linux (4.6.0-6.7) yakkety; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1582753 + + * Unsharing user and ipc namespaces simultaneously makes mqueue unmountable + (LP: #1582378) + - SAUCE: (namespace) mqueue: Super blocks must be owned by the user ns which + owns the ipc ns + + * Miscellaneous Ubuntu changes + - [Config] Add Description to kernel-image udeb + - SAUCE: (noup) mm: Use phys_addr_t for reserve_bootmem_region arguments + - SAUCE: (noup) Update spl to 0.6.5.7-0ubuntu1, zfs to 0.6.5.7-0ubuntu1 + + * Miscellaneous upstream changes + - Drivers: hv: vmbus: Introduce functions for estimating room in the ring buffer + - Drivers: hv: vmbus: Use READ_ONCE() to read variables that are volatile + - Drivers: hv: vmbus: Use the new virt_xx barrier code + - Drivers: hv: vmbus: Export the vmbus_set_event() API + - Drivers: hv: vmbus: Move some ring buffer functions to hyperv.h + - Drivers: hv: vmbus: Implement APIs to support "in place" consumption of vmbus packets + - drivers:hv: Lock access to hyperv_mmio resource tree + - drivers:hv: Make a function to free mmio regions through vmbus + - drivers:hv: Reverse order of resources in hyperv_mmio + - drivers:hv: Track allocations of children of hv_vmbus in private resource tree + - drivers:hv: Record MMIO range in use by frame buffer + - drivers:hv: Separate out frame buffer logic when picking MMIO range + - Drivers: hv: kvp: fix IP Failover + - Drivers: hv: vmbus: handle various crash scenarios + - Drivers: hv: balloon: don't crash when memory is added in non-sorted order + - Drivers: hv: balloon: reset host_specified_ha_region + + [ Tim Gardner ] + + * Dropped hv SAUCE patches in favor of linux-next. + + -- Tim Gardner Mon, 16 May 2016 13:50:30 -0600 + +linux (4.6.0-5.6) yakkety; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1582351 + + * aufs CONFIG_AUFS_EXPORT build option should be enabled (LP: #1121699) + - [Config] enable CONFIG_AUFS_EXPORT + + * promote *_diag modules from linux-image-extra to linux-image (LP: #1580355) + - [Config] Update inclusion list for CRIU + + * zfs: disable module checks for zfs when cross-compiling (LP: #1581127) + - [Debian] disable zfs module checks when cross-compiling + + * insecure overlayfs xattrs handling in copy_up (LP: #1534961) + - SAUCE: overlayfs: Propogate nosuid from lower and upper mounts + + * overlayfs over fuse should refuse copy_up of files if uid/gid not mapped + (LP: #1535150) + - SAUCE: overlayfs: Propogate nosuid from lower and upper mounts + + * Ubuntu-4.6.0-5.6 configuration has CONFIG_GOLDFISH and CONFIG_GOLDFISH_BUS + enabled, breaking serial support on normal systems (LP: #1580960) + - [Config] disable CONFIG_GOLDFISH + + * Miscellaneous Ubuntu changes + - [Config] d-i -- update local configuration to new form + - [Config] kernel-wedge -- switch to explicit versions + - [Config] powerpc64-smp --> generic + - [Config] CONFIG_AUFS_FS=m + - SAUCE: AUFS + - SAUCE: (namespace) fs: Add user namesapace member to struct super_block + - SAUCE: (namespace) fs: Limit file caps to the user namespace of the super block + - SAUCE: (namespace) Smack: Add support for unprivileged mounts from user namespaces + - SAUCE: (namespace) fs: fix a posible leak of allocated superblock + - SAUCE: (namespace) fs: Allow sysfs and cgroupfs to share super blocks between user namespaces + - 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) fs: Treat foreign mounts as nosuid + - SAUCE: (namespace) selinux: Add support for unprivileged mounts from user namespaces + - SAUCE: (namespace) userns: Replace in_userns with current_in_userns + - SAUCE: (namespace) Smack: Handle labels consistently in untrusted mounts + - SAUCE: (namespace) fs: Check for invalid i_uid in may_follow_link() + - SAUCE: (namespace) cred: Reject inodes with invalid ids in set_create_file_as() + - SAUCE: (namespace) fs: Refuse uid/gid changes which don't map into s_user_ns + - SAUCE: (namespace) fs: Update posix_acl support to handle user namespace mounts + - SAUCE: (namespace) fs: Allow superblock owner to change ownership of inodes with unmappable ids + - SAUCE: (namespace) fs: Don't remove suid for CAP_FSETID in s_user_ns + - 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) 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) mtd: Check permissions towards mtd block device inode when mounting + - SAUCE: (namespace) block_dev: Forbid unprivileged mounting when device is opened for writing + - SAUCE: (namespace) fs: Update i_[ug]id_(read|write) to translate relative to s_user_ns + - SAUCE: (namespace) quota: Add support for user namespace mounts + - SAUCE: (namespace) evm: Translate user/group ids relative to s_user_ns when computing HMAC + - SAUCE: (namespace) fs: Allow CAP_SYS_ADMIN in s_user_ns to freeze and thaw filesystems + - SAUCE: (namespace) ext4: Add support for unprivileged mounts from user namespaces + - SAUCE: (namespace) fuse: Add module parameter to enable user namespace mounts + - SAUCE: (namespace) ext4: Add module parameter to enable user namespace mounts + - rebase to v4.6 + - SAUCE: Powernv: Remove the usage of PACAR1 from opal wrappers + - SAUCE: powerpc/book3s: Fix TB corruption in guest exit path on HMI interrupt. + + * Miscellaneous upstream changes + - Revert "powerpc/eeh: Fix crash in eeh_add_device_early() on Cell" + - powerpc/iommu: Remove the dependency on EEH struct in DDW mechanism + + [ Upstream Kernel Changes ] + + * rebase to v4.6 + + -- Tim Gardner Mon, 09 May 2016 12:08:54 -0600 + +linux (4.6.0-4.5) yakkety; urgency=low + + * Kernel Panic on EC2 After Upgrading from 14.04 to 16.04 via do-release- + upgrade -d (LP: #1573231) + - SAUCE: (no-up) x86/topology: Handle CPUID bogosity gracefully + + * Really cleaned out the last of the i915_bpo SAUCE patches. ricotz on + IRC pointed out some leftover SAUCE patches that were causing issues. + + * Dropped the attempt to convert powerpc64-smb to generic. kernel-wedge + has some issues. + + -- Tim Gardner Mon, 09 May 2016 10:56:54 -0600 + +linux (4.6.0-3.4) xenial; urgency=low + + * Release Tracking Bug + - LP: #1579594 + + * linux-generic: enable linux-extra split on all architectures (LP: #1568832) + - [Config] Generate an -extras package for arm64 and powerpc + + * Missing libunwind support in perf (LP: #1248289) + - [Config] Add liblzma-dev to enable libunwind support in perf + + * ZFS is confused by user namespaces (uid/gid mapping) when used with + acltype=posixac (LP: #1567558) + - zfs: Fix user namespaces uid/gid mapping + + * Miscellaneous Ubuntu changes + - rebase to v4.6-rc7 + + [ Upstream Kernel Changes ] + + * rebase to v4.6-rc7 + + -- Tim Gardner Thu, 05 May 2016 14:03:17 -0600 + +linux (4.6.0-2.3) yakkety; urgency=low + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_AUFS_FS=m + - SAUCE: AUFS + - zfs: gcc build error: -Wbool-compare in metaslab.c + - zfs: Linux 4.6 compat: PAGE_CACHE_SIZE removal + - zfs: Fix ZPL miswrite of default POSIX ACL + - zfs: Linux 4.5 compat: Use xattr_handler->name for acl + - SAUCE: Dropped ubuntu/i915 + - SAUCE: Dropped ubuntu/dm-raid4-5 + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Debian] Disable ZFS until an update catches it up with the + kernel" + + -- Tim Gardner Thu, 05 May 2016 10:41:17 -0600 + +linux (4.6.0-1.2) yakkety; urgency=low + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_NR_CPUS=8192 for amd64 + + -- Tim Gardner Thu, 05 May 2016 07:25:31 -0600 + +linux (4.6.0-0.1) yakkety; urgency=low + + + [ Upstream Kernel Changes ] + + * rebase to v4.6-rc6 + - LP: #1564712 + - LP: #1555912 + - LP: #1552925 + - LP: #1546694 + - LP: #1549660 + - LP: #1549620 + - LP: #1542944 + - LP: #1542564 + - LP: #1533009 + - LP: #1533461 + - LP: #1529624 + - LP: #1522949 + + -- Tim Gardner Mon, 25 Apr 2016 14:24:45 -0600 + +linux (4.6.0-0.0) yakkety; urgency=low + + [ Kamal Mostafa ] + + * Release Tracking Bug + - LP: #1573817 + + * autoreconstruct: need to also generate extend-diff-ignore options for links + (LP: #1574362) + - [Packaging] autoreconstruct -- generate extend-diff-ignore for links + + * tipc: missing linearization of sk_buff (LP: #1567064) + - tipc: move linearization of buffers to generic code + + * [Hyper-V] In-flight PCI Passthrough Patches (LP: #1570124) + - SAUCE:(noup) drivers:hv: Lock access to hyperv_mmio resource tree + - SAUCE:(noup) drivers:hv: Call vmbus_mmio_free() to reverse + vmbus_mmio_allocate() + - SAUCE:(noup) drivers:hv: Reverse order of resources in hyperv_mmio + - SAUCE:(noup) drivers:hv: Track allocations of children of hv_vmbus in + private resource tree + - SAUCE:(noup) drivers:hv: Record MMIO range in use by frame buffer + - SAUCE:(noup) drivers:hv: Separate out frame buffer logic when picking MMIO + range + + * vbox: resync with 5.0.18-dfsg-2build1 (LP: #1571156) + - ubuntu: vbox -- update to 5.0.18-dfsg-2build1 + + * CONFIG_AUFS_XATTR is not set (LP: #1557776) + - [Config] CONFIG_AUFS_XATTR=y + + * CVE-2016-3672 (LP: #1568523) + - x86/mm/32: Enable full randomization on i386 and X86_32 + + * CVE-2016-3955 (LP: #1572666) + - USB: usbip: fix potential out-of-bounds write + + * Xenial update to v4.4.8 stable release (LP: #1573034) + - hwmon: (max1111) Return -ENODEV from max1111_read_channel if not + instantiated + - PKCS#7: pkcs7_validate_trust(): initialize the _trusted output argument + - parisc: Avoid function pointers for kernel exception routines + - parisc: Fix kernel crash with reversed copy_from_user() + - parisc: Unbreak handling exceptions from kernel modules + - ALSA: timer: Use mod_timer() for rearming the system timer + - ALSA: hda - Asus N750JV external subwoofer fixup + - ALSA: hda - Fix white noise on Asus N750JV headphone + - ALSA: hda - Apply fix for white noise on Asus N550JV, too + - mm: fix invalid node in alloc_migrate_target() + - powerpc/mm: Fixup preempt underflow with huge pages + - libnvdimm: fix smart data retrieval + - libnvdimm, pfn: fix uuid validation + - compiler-gcc: disable -ftracer for __noclone functions + - arm64: opcodes.h: Add arm big-endian config options before including arm + header + - drm/dp: move hw_mutex up the call stack + - drm/udl: Use unlocked gem unreferencing + - drm/radeon: add a dpm quirk for sapphire Dual-X R7 370 2G D5 + - drm/radeon: add another R7 370 quirk + - drm/radeon: add a dpm quirk for all R7 370 parts + - drm/amdgpu/gmc: move vram type fetching into sw_init + - drm/amdgpu/gmc: use proper register for vram type on Fiji + - xen/events: Mask a moving irq + - tcp: convert cached rtt from usec to jiffies when feeding initial rto + - tunnel: Clear IPCB(skb)->opt before dst_link_failure called + - net: jme: fix suspend/resume on JMC260 + - net: vrf: Remove direct access to skb->data + - net: qca_spi: Don't clear IFF_BROADCAST + - net: qca_spi: clear IFF_TX_SKB_SHARING + - net: fix bridge multicast packet checksum validation + - sctp: lack the check for ports in sctp_v6_cmp_addr + - mld, igmp: Fix reserved tailroom calculation + - tipc: Revert "tipc: use existing sk_write_queue for outgoing packet chain" + - qmi_wwan: add Sierra Wireless EM74xx device ID + - ipv6: re-enable fragment header matching in ipv6_find_hdr + - vxlan: fix missing options_len update on RX with collect metadata + - cdc_ncm: toggle altsetting to force reset before setup + - udp6: fix UDP/IPv6 encap resubmit path + - tcp: fix tcpi_segs_in after connection establishment + - ppp: release rtnl mutex when interface creation fails + - net: validate variable length ll headers + - ax25: add link layer header validation function + - packet: validate variable length ll headers + - bpf: avoid copying junk bytes in bpf_get_current_comm() + - sh_eth: fix NULL pointer dereference in sh_eth_ring_format() + - sh_eth: advance 'rxdesc' later in sh_eth_ring_format() + - qlcnic: Remove unnecessary usage of atomic_t + - qlcnic: Fix mailbox completion handling during spurious interrupt + - macvtap: always pass ethernet header in linear + - mlxsw: spectrum: Check requested ageing time is valid + - rocker: set FDB cleanup timer according to lowest ageing time + - bridge: allow zero ageing time + - ipv4: Don't do expensive useless work during inetdev destroy. + - net: Fix use after free in the recvmmsg exit path + - mlx4: add missing braces in verify_qp_parameters + - farsync: fix off-by-one bug in fst_add_one + - ath9k: fix buffer overrun for ar9287 + - ppp: ensure file->private_data can't be overridden + - tcp/dccp: remove obsolete WARN_ON() in icmp handlers + - qlge: Fix receive packets drop. + - net: bcmgenet: fix dma api length mismatch + - bonding: fix bond_get_stats() + - ipv4: fix broadcast packets reception + - ipv4: initialize flowi4_flags before calling fib_lookup() + - ppp: take reference on channels netns + - xfrm: Fix crash observed during device unregistration and decryption + - qmi_wwan: add "D-Link DWM-221 B1" device id + - ipv6: udp: fix UDP_MIB_IGNOREDMULTI updates + - bridge: Allow set bridge ageing time when switchdev disabled + - rtnl: fix msg size calculation in if_nlmsg_size() + - tun, bpf: fix suspicious RCU usage in tun_{attach, detach}_filter + - tuntap: restore default qdisc + - ipv4: l2tp: fix a potential issue in l2tp_ip_recv + - ipv6: l2tp: fix a potential issue in l2tp_ip6_recv + - ip6_tunnel: set rtnl_link_ops before calling register_netdevice + - ipv6: Count in extension headers in skb->network_header + - mpls: find_outdev: check for err ptr in addition to NULL check + - USB: uas: Limit qdepth at the scsi-host level + - USB: uas: Add a new NO_REPORT_LUNS quirk + - cdc-acm: fix NULL pointer reference + - KVM: x86: Inject pending interrupt even if pending nmi exist + - KVM: x86: reduce default value of halt_poll_ns parameter + - MIPS: Fix MSA ld unaligned failure cases + - pinctrl: pistachio: fix mfio84-89 function description and pinmux. + - pinctrl: sh-pfc: only use dummy states for non-DT platforms + - pinctrl: sunxi: Fix A33 external interrupts not working + - pinctrl: nomadik: fix pull debug print inversion + - pinctrl: freescale: imx: fix bogus check of of_iomap() return value + - au0828: fix au0828_v4l2_close() dev_state race condition + - au0828: Fix dev_state handling + - coda: fix error path in case of missing pdata on non-DT platform + - v4l: vsp1: Set the SRU CTRL0 register when starting the stream + - pcmcia: db1xxx_ss: fix last irq_to_gpio user + - rbd: use GFP_NOIO consistently for request allocations + - virtio: virtio 1.0 cs04 spec compliance for reset + - mac80211: properly deal with station hashtable insert errors + - mac80211: avoid excessive stack usage in sta_info + - mac80211: fix ibss scan parameters + - mac80211: fix unnecessary frame drops in mesh fwding + - mac80211: fix txq queue related crashes + - usb: renesas_usbhs: avoid NULL pointer derefernce in usbhsf_pkt_handler() + - usb: renesas_usbhs: disable TX IRQ before starting TX DMAC transfer + - usb: renesas_usbhs: fix to avoid using a disabled ep in usbhsg_queue_done() + - iio: st_magn: always define ST_MAGN_TRIGGER_SET_STATE + - iio: accel: bmc150: fix endianness when reading axes + - iio: gyro: bmg160: fix buffer read values + - iio: gyro: bmg160: fix endianness when reading axes + - sd: Fix excessive capacity printing on devices with blocks bigger than 512 + bytes + - fs: add file_dentry() + - nfs: use file_dentry() + - btrfs: fix crash/invalid memory access on fsync when using overlayfs + - ext4: add lockdep annotations for i_data_sem + - ext4: ignore quota mount options if the quota feature is enabled + - iommu: Don't overwrite domain pointer when there is no default_domain + - Btrfs: fix file/data loss caused by fsync after rename and new inode + - arm64: replace read_lock to rcu lock in call_step_hook + - perf: Do not double free + - perf: Cure event->pending_disable race + - mmc: sdhci-pci: Add support and PCI IDs for more Broxton host controllers + - ALSA: hda - Fixup speaker pass-through control for nid 0x14 on ALC225 + - ALSA: hda - Fix headset support and noise on HP EliteBook 755 G2 + - ALSA: hda/realtek - Enable the ALC292 dock fixup on the Thinkpad T460s + - ALSA: usb-audio: Add a sample rate quirk for Phoenix Audio TMX320 + - ALSA: usb-audio: Add a quirk for Plantronics BT300 + - ALSA: usb-audio: Skip volume controls triggers hangup on Dell USB Dock + - HID: wacom: fix Bamboo ONE oops + - HID: usbhid: fix inconsistent reset/resume/reset-resume behavior + - Revert "x86/PCI: Don't alloc pcibios-irq when MSI is enabled" + - Revert "PCI: Add helpers to manage pci_dev->irq and pci_dev->irq_managed" + - Revert "PCI, x86: Implement pcibios_alloc_irq() and pcibios_free_irq()" + - staging: android: ion: Set the length of the DMA sg entries in buffer + - usbvision: fix crash on detecting device with invalid configuration + - Revert "usb: hub: do not clear BOS field during reset device" + - Linux 4.4.8 + + * Fix speaker volume on a Dell machine (LP: #1549660) + - ALSA: hda - Fixup speaker pass-through control for nid 0x14 on ALC225 + + * Xenial update to v4.4.7 stable release (LP: #1572722) + - regulator: core: avoid unused variable warning + - regulator: core: Fix nested locking of supplies + - ASoC: samsung: pass DMA channels as pointers + - mmc: sh_mmcif: rework dma channel handling + - mmc: sh_mmcif: Correct TX DMA channel allocation + - x86/microcode/intel: Make early loader look for builtin microcode too + - x86/microcode: Untangle from BLK_DEV_INITRD + - x86/entry/compat: Keep TS_COMPAT set during signal delivery + - perf/x86/intel: Add definition for PT PMI bit + - x86/PCI: Mark Broadwell-EP Home Agent & PCU as having non-compliant BARs + - KVM: i8254: change PIT discard tick policy + - KVM: fix spin_lock_init order on x86 + - KVM: VMX: avoid guest hang on invalid invept instruction + - KVM: VMX: avoid guest hang on invalid invvpid instruction + - KVM: VMX: fix nested vpid for old KVM guests + - perf/core: Fix perf_sched_count derailment + - perf tools: Dont stop PMU parsing on alias parse error + - perf tools: Fix checking asprintf return value + - perf tools: Fix python extension build + - sched/cputime: Fix steal_account_process_tick() to always return jiffies + - sched/preempt, sh: kmap_coherent relies on disabled preemption + - EDAC, amd64_edac: Shift wrapping issue in f1x_get_norm_dct_addr() + - s390: fix floating pointer register corruption (again) + - s390/cpumf: add missing lpp magic initialization + - pinctrl-bcm2835: Fix cut-and-paste error in "pull" parsing + - PCI: Disable IO/MEM decoding for devices with non-compliant BARs + - PCI: ACPI: IA64: fix IO port generic range check + - x86/irq: Cure live lock in fixup_irqs() + - x86/apic: Fix suspicious RCU usage in smp_trace_call_function_interrupt() + - x86/iopl/64: Properly context-switch IOPL on Xen PV + - x86/iopl: Fix iopl capability check on Xen PV + - x86/mm: TLB_REMOTE_SEND_IPI should count pages + - sg: fix dxferp in from_to case + - aacraid: Fix RRQ overload + - aacraid: Fix memory leak in aac_fib_map_free + - aacraid: Set correct msix count for EEH recovery + - sd: Fix discard granularity when LBPRZ=1 + - scsi: storvsc: fix SRB_STATUS_ABORTED handling + - be2iscsi: set the boot_kset pointer to NULL in case of failure + - aic7xxx: Fix queue depth handling + - libnvdimm: Fix security issue with DSM IOCTL. + - dm snapshot: disallow the COW and origin devices from being identical + - dm: fix excessive dm-mq context switching + - dm thin metadata: don't issue prefetches if a transaction abort has failed + - dm cache: make sure every metadata function checks fail_io + - dm: fix rq_end_stats() NULL pointer in dm_requeue_original_request() + - usb: retry reset if a device times out + - usb: hub: fix a typo in hub_port_init() leading to wrong logic + - USB: uas: Reduce can_queue to MAX_CMNDS + - USB: cdc-acm: more sanity checking + - USB: iowarrior: fix oops with malicious USB descriptors + - USB: usb_driver_claim_interface: add sanity checking + - USB: mct_u232: add sanity checking in probe + - USB: digi_acceleport: do sanity checking for the number of ports + - USB: cypress_m8: add endpoint sanity check + - USB: serial: cp210x: Adding GE Healthcare Device ID + - USB: serial: ftdi_sio: Add support for ICP DAS I-756xU devices + - USB: option: add "D-Link DWM-221 B1" device id + - pwc: Add USB id for Philips Spc880nc webcam + - Input: powermate - fix oops with malicious USB descriptors + - ALSA: usb-audio: Fix NULL dereference in create_fixed_stream_quirk() + - ALSA: usb-audio: Add sanity checks for endpoint accesses + - ALSA: usb-audio: add Microsoft HD-5001 to quirks + - ALSA: usb-audio: Minor code cleanup in create_fixed_stream_quirk() + - ALSA: usb-audio: Fix double-free in error paths after + snd_usb_add_audio_stream() call + - Bluetooth: btusb: Add new AR3012 ID 13d3:3395 + - Bluetooth: btusb: Add a new AR3012 ID 04ca:3014 + - Bluetooth: btusb: Add a new AR3012 ID 13d3:3472 + - crypto: ccp - Add hash state import and export support + - crypto: ccp - Limit the amount of information exported + - crypto: ccp - Don't assume export/import areas are aligned + - crypto: ccp - memset request context to zero during import + - crypto: keywrap - memzero the correct memory + - crypto: atmel - fix checks of error code returned by devm_ioremap_resource() + - crypto: ux500 - fix checks of error code returned by devm_ioremap_resource() + - crypto: marvell/cesa - forward devm_ioremap_resource() error code + - X.509: Fix leap year handling again + - mei: bus: check if the device is enabled before data transfer + - HID: logitech: fix Dual Action gamepad support + - HID: i2c-hid: fix OOB write in i2c_hid_set_or_send_report() + - HID: multitouch: force retrieving of Win8 signature blob + - HID: fix hid_ignore_special_drivers module parameter + - staging: comedi: ni_tiocmd: change mistaken use of start_src for start_arg + - staging: android: ion_test: fix check of platform_device_register_simple() + error code + - staging: comedi: ni_mio_common: fix the ni_write[blw]() functions + - tty: Fix GPF in flush_to_ldisc(), part 2 + - net: irda: Fix use-after-free in irtty_open() + - 8250: use callbacks to access UART_DLL/UART_DLM + - saa7134: Fix bytesperline not being set correctly for planar formats + - adv7511: TX_EDID_PRESENT is still 1 after a disconnect + - bttv: Width must be a multiple of 16 when capturing planar formats + - coda: fix first encoded frame payload + - media: v4l2-compat-ioctl32: fix missing length copy in put_v4l2_buffer32 + - mtip32xx: Avoid issuing standby immediate cmd during FTL rebuild + - mtip32xx: Fix broken service thread handling + - mtip32xx: Remove unwanted code from taskfile error handler + - mtip32xx: Print exact time when an internal command is interrupted + - mtip32xx: Fix for rmmod crash when drive is in FTL rebuild + - mtip32xx: Handle safe removal during IO + - mtip32xx: Handle FTL rebuild failure state during device initialization + - mtip32xx: Implement timeout handler + - mtip32xx: Cleanup queued requests after surprise removal + - ALSA: pcm: Avoid "BUG:" string for warnings again + - ALSA: intel8x0: Add clock quirk entry for AD1981B on IBM ThinkPad X41. + - ALSA: hda - Don't handle ELD notify from invalid port + - ALSA: hda - fix the mic mute button and led problem for a Lenovo AIO + - ALSA: hda - Fix unconditional GPIO toggle via automute + - tools/hv: Use include/uapi with __EXPORTED_HEADERS__ + - jbd2: fix FS corruption possibility in jbd2_journal_destroy() on umount path + - brd: Fix discard request processing + - IB/srpt: Simplify srpt_handle_tsk_mgmt() + - bcache: cleaned up error handling around register_cache() + - bcache: fix race of writeback thread starting before complete initialization + - bcache: fix cache_set_flush() NULL pointer dereference on OOM + - mm: memcontrol: reclaim when shrinking memory.high below usage + - mm: memcontrol: reclaim and OOM kill when shrinking memory.max below usage + - ia64: define ioremap_uc() + - watchdog: don't run proc_watchdog_update if new value is same as old + - watchdog: rc32434_wdt: fix ioctl error handling + - Bluetooth: Add new AR3012 ID 0489:e095 + - Bluetooth: Fix potential buffer overflow with Add Advertising + - cgroup: ignore css_sets associated with dead cgroups during migration + - net: mvneta: enable change MAC address when interface is up + - of: alloc anywhere from memblock if range not specified + - vfs: show_vfsstat: do not ignore errors from show_devname method + - splice: handle zero nr_pages in splice_to_pipe() + - xtensa: ISS: don't hang if stdin EOF is reached + - xtensa: fix preemption in {clear,copy}_user_highpage + - xtensa: clear all DBREAKC registers on start + - ARC: [BE] readl()/writel() to work in Big Endian CPU configuration + - ARC: bitops: Remove non relevant comments + - quota: Fix possible GPF due to uninitialised pointers + - xfs: fix two memory leaks in xfs_attr_list.c error paths + - raid1: include bio_end_io_list in nr_queued to prevent freeze_array hang + - md/raid5: Compare apples to apples (or sectors to sectors) + - RAID5: check_reshape() shouldn't call mddev_suspend + - RAID5: revert e9e4c377e2f563 to fix a livelock + - raid10: include bio_end_io_list in nr_queued to prevent freeze_array hang + - md/raid5: preserve STRIPE_PREREAD_ACTIVE in break_stripe_batch_list + - md: multipath: don't hardcopy bio in .make_request path + - Revert "UBUNTU: SAUCE: (noup) fuse: Add reference counting for fuse_io_priv" + - Revert "UBUNTU: SAUCE: (noup) fuse: do not use iocb after it may have been + freed" + - fuse: do not use iocb after it may have been freed + - fuse: Add reference counting for fuse_io_priv + - fs/coredump: prevent fsuid=0 dumps into user-controlled directories + - rapidio/rionet: fix deadlock on SMP + - ipr: Fix out-of-bounds null overwrite + - ipr: Fix regression when loading firmware + - iwlwifi: mvm: Fix paging memory leak + - drm/radeon: disable runtime pm on PX laptops without dGPU power control + - drm/radeon: Don't drop DP 2.7 Ghz link setup on some cards. + - drm/amdgpu: disable runtime pm on PX laptops without dGPU power control + - drm/amdgpu: include the right version of gmc header files for iceland + - IB/ipoib: fix for rare multicast join race condition + - tracing: Have preempt(irqs)off trace preempt disabled functions + - tracing: Fix crash from reading trace_pipe with sendfile + - tracing: Fix trace_printk() to print when not using bprintk() + - bitops: Do not default to __clear_bit() for __clear_bit_unlock() + - scripts/coccinelle: modernize & + - scripts/kconfig: allow building with make 3.80 again + - kbuild/mkspec: fix grub2 installkernel issue + - MAINTAINERS: Update mailing list and web page for hwmon subsystem + - ideapad-laptop: Add ideapad Y700 (15) to the no_hw_rfkill DMI list + - mmc: block: fix ABI regression of mmc_blk_ioctl + - mmc: mmc_spi: Add Card Detect comments and fix CD GPIO case + - mmc: sdhci: fix data timeout (part 1) + - mmc: sdhci: fix data timeout (part 2) + - mmc: sdhci: Fix override of timeout clk wrt max_busy_timeout + - clk: rockchip: rk3368: fix cpuclk mux bit of big cpu-cluster + - clk: rockchip: rk3368: fix cpuclk core dividers + - clk: rockchip: rk3368: fix parents of video encoder/decoder + - clk: rockchip: rk3368: fix hdmi_cec gate-register + - clk: rockchip: add hclk_cpubus to the list of rk3188 critical clocks + - clk: bcm2835: Fix setting of PLL divider clock rates + - target: Fix target_release_cmd_kref shutdown comp leak + - iser-target: Fix identification of login rx descriptor type + - iser-target: Add new state ISER_CONN_BOUND to isert_conn + - iser-target: Separate flows for np listeners and connections cma events + - iser-target: Rework connection termination + - nfsd4: fix bad bounds checking + - nfsd: fix deadlock secinfo+readdir compound + - ARM: dts: at91: sama5d3 Xplained: don't disable hsmci regulator + - ARM: dts: at91: sama5d4 Xplained: don't disable hsmci regulator + - ACPI / PM: Runtime resume devices when waking from hibernate + - writeback, cgroup: fix premature wb_put() in + locked_inode_to_wb_and_lock_list() + - writeback, cgroup: fix use of the wrong bdi_writeback which mismatches the + inode + - Revert "UBUNTU: SAUCE: (noup) Input: synaptics - handle spurious release of + trackstick buttons, again" + - Input: synaptics - handle spurious release of trackstick buttons, again + - Input: ims-pcu - sanity check against missing interfaces + - Input: ati_remote2 - fix crashes on detecting device with invalid descriptor + - ocfs2/dlm: fix race between convert and recovery + - ocfs2/dlm: fix BUG in dlm_move_lockres_to_recovery_list + - mm/page_alloc: prevent merging between isolated and other pageblocks + - mtd: onenand: fix deadlock in onenand_block_markbad + - PM / sleep: Clear pm_suspend_global_flags upon hibernate + - scsi_common: do not clobber fixed sense information + - sched/cputime: Fix steal time accounting vs. CPU hotplug + - perf/x86/pebs: Add workaround for broken OVFL status on HSW+ + - perf/x86/intel: Fix PEBS warning by only restoring active PMU in pmi + - perf/x86/intel: Fix PEBS data source interpretation on Nehalem/Westmere + - Linux 4.4.7 + + * QCA9565 / AR9565 bluetooth not work (LP: #1542944) + - Bluetooth: Add new AR3012 ID 0489:e095 + + * The mic mute key and led can't work on a Lenovo AIO machine (LP: #1555912) + - ALSA: hda - fix the mic mute button and led problem for a Lenovo AIO + + * 13d3:3472 bluetooth not working, 4.2 low latency kernel 14.04.1 on asus ROG + gl552jx (LP: #1552925) + - Bluetooth: btusb: Add a new AR3012 ID 13d3:3472 + + * Bluetooth cannot detect other devices (Lite-on 3014 + Atheros AR9565) + (LP: #1546694) + - Bluetooth: btusb: Add a new AR3012 ID 04ca:3014 + + * Atheros AR9462 Bluetooth cannot detect other devices (LP: #1542564) + - Bluetooth: btusb: Add new AR3012 ID 13d3:3395 + + * s390/pci: add extra padding to function measurement block (LP: #1572291) + - s390/pci: add extra padding to function measurement block + + * CVE-2016-3951 (LP: #1567191) + - cdc_ncm: do not call usbnet_link_change from cdc_ncm_bind + - usbnet: cleanup after bind() in probe() + + * linux: Add UEFI keyring for externally signed modules (LP: #1569924) + - efi: Remove redundant efi_set_variable_nonblocking() prototype + - efi/runtime-wrappers: Add a nonblocking version of QueryVariableInfo() + - efi: Add nonblocking option to efi_query_variable_store() + - efi: Add NV memory attribute + - efi: Reformat GUID tables to follow the format in UEFI spec + - efi: stub: implement efi_get_random_bytes() based on EFI_RNG_PROTOCOL + - SAUCE: (noup) Add EFI signature data types + - crypto: KEYS: convert public key and digsig asym to the akcipher api + - [Config] CONFIG_EFI_SIGNATURE_LIST_PARSER=y + - SAUCE: (noup) Add an EFI signature blob parser and key loader. + - [Config] CONFIG_IMA_MOK_KEYRING=y + - IMA: create machine owner and blacklist keyrings + - KEYS: Add an alloc flag to convey the builtinness of a key + - [Config] CONFIG_MODULE_SIG_UEFI=y, CONFIG_SYSTEM_BLACKLIST_KEYRING=y + - SAUCE: (noup) KEYS: Add a system blacklist keyring + - SAUCE: (noup) MODSIGN: Support not importing certs from db + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_PUBLIC_KEY_ALGO_RSA=y + + -- Kamal Mostafa Sun, 24 Apr 2016 12:12:13 -0700 + +linux (4.4.0-21.37) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1571791 + + * linux: MokSBState is ignored (LP: #1571691) + - SAUCE: (noup) MODSIGN: Import certificates from UEFI Secure Boot + - SAUCE: (noup) efi: Disable secure boot if shim is in insecure mode + - SAUCE: (noup) Display MOKSBState when disabled + + -- Tim Gardner Mon, 18 Apr 2016 07:00:22 -0600 + +linux (4.4.0-20.36) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1571069 + + * sysfs mount failure during stateful lxd snapshots (LP: #1570906) + - SAUCE: kernfs: Do not match superblock in another user namespace when + mounting + + * Kernel Panic in Ubuntu 16.04 netboot installer (LP: #1570441) + - x86/topology: Fix logical package mapping + - x86/topology: Fix Intel HT disable + - x86/topology: Use total_cpus not nr_cpu_ids for logical packages + - xen/apic: Provide Xen-specific version of cpu_present_to_apicid APIC op + - x86/topology: Fix AMD core count + + * [regression]: Failed to call clock_adjtime(): Invalid argument + (LP: #1566465) + - ntp: Fix ADJ_SETOFFSET being used w/ ADJ_NANO + + -- Tim Gardner Thu, 14 Apr 2016 06:31:56 -0600 + +linux (4.4.0-19.35) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1570348 + + * CVE-2016-2847 (LP: #1554260) + - pipe: limit the per-user amount of pages allocated in pipes + + * xenial kernel crash on HP BL460c G7 (qla24xx problem?) (LP: #1554003) + - SAUCE: (noup) qla2xxx: Add irq affinity notification V2 + + * arm64: guest hangs when ntpd is running (LP: #1549494) + - SAUCE: (noup) KVM: arm/arm64: Handle forward time correction gracefully + + * linux: Enforce signed module loading when UEFI secure boot (LP: #1566221) + - [Config] CONFIG_EFI_SECURE_BOOT_SIG_ENFORCE=y + + * s390/cpumf: Fix lpp detection (LP: #1555344) + - s390/facilities: use stfl mnemonic instead of insn magic + - s390/facilities: always use lowcore's stfle field for storing facility bits + - s390/cpumf: Fix lpp detection + + * s390x kernel image needs weightwatchers (LP: #1536245) + - [Config] s390x: Use compressed kernel bzImage + + * Surelock GA2 SP1: surelock02p05: Not seeing sgX devices for LUNs after + upgrading to Ubuntu 16.04 (LP: #1567581) + - Revert "UBUNTU: SAUCE: (noup) powerpc/pci: Assign fixed PHB number based on + device-tree properties" + + * Backport upstream bugfixes to ubuntu-16.04 (LP: #1555765) + - cpufreq: powernv: Define per_cpu chip pointer to optimize hot-path + - Revert "cpufreq: postfix policy directory with the first CPU in related_cpus" + - cpufreq: powernv: Add sysfs attributes to show throttle stats + + * systemd-modules-load.service: Failing due to missing module 'ib_iser' (LP: #1566468) + - [Config] Add ib_iser to generic inclusion list + + * thunderx nic performance improvements (LP: #1567093) + - net: thunderx: Set recevie buffer page usage count in bulk + - net: thunderx: Adjust nicvf structure to reduce cache misses + + * fixes for thunderx nic in multiqueue mode (LP: #1567091) + - net: thunderx: Fix for multiqset not configured upon interface toggle + - net: thunderx: Fix for HW TSO not enabled for secondary qsets + - net: thunderx: Fix receive packet stats + + * Miscellaneous Ubuntu changes + - [Config] updateconfigs after CONFIG_DRM_I915_BPO_PRELIMINARY_HW_SUPPORT=n + + * Miscellaneous upstream changes (LP: #1564901) + - Input: xpad - correctly handle concurrent LED and FF requests + + -- Tim Gardner Thu, 07 Apr 2016 07:32:16 +0100 + +linux (4.4.0-18.34) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1566868 + + * [i915_bpo] Fix RC6 on SKL GT3 & GT4 (LP: #1564759) + - SAUCE: i915_bpo: drm/i915/skl: Fix rc6 based gpu/system hang + - SAUCE: i915_bpo: drm/i915/skl: Fix spurious gpu hang with gt3/gt4 revs + + * CONFIG_ARCH_ROCKCHIP not enabled in armhf generic kernel (LP: #1566283) + - [Config] CONFIG_ARCH_ROCKCHIP=y + + * [Feature] Memory Bandwidth Monitoring (LP: #1397880) + - perf/x86/cqm: Fix CQM handling of grouping events into a cache_group + - perf/x86/cqm: Fix CQM memory leak and notifier leak + - x86/cpufeature: Carve out X86_FEATURE_* + - Merge branch 'timers-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip + - x86/topology: Create logical package id + - perf/x86/mbm: Add Intel Memory B/W Monitoring enumeration and init + - perf/x86/mbm: Add memory bandwidth monitoring event management + - perf/x86/mbm: Implement RMID recycling + - perf/x86/mbm: Add support for MBM counter overflow handling + + * User namespace mount updates (LP: #1566505) + - SAUCE: quota: Require that qids passed to dqget() be valid and map into s_user_ns + - SAUCE: fs: Allow superblock owner to change ownership of inodes with unmappable ids + - SAUCE: fuse: Don't initialize user_id or group_id in mount options + - SAUCE: cgroup: Use a new super block when mounting in a cgroup namespace + - SAUCE: fs: fix a posible leak of allocated superblock + + * [arm64] kernel BUG at /build/linux-StrpB2/linux-4.4.0/fs/ext4/inode.c:2394! + (LP: #1566518) + - arm64: Honour !PTE_WRITE in set_pte_at() for kernel mappings + - arm64: Update PTE_RDONLY in set_pte_at() for PROT_NONE permission + + * [Feature]USB core and xHCI tasks for USB 3.1 SuperSpeedPlus (SSP) support + for Alpine Ridge on SKL (LP: #1519623) + - usb: define USB_SPEED_SUPER_PLUS speed for SuperSpeedPlus USB3.1 devices + - usb: set USB 3.1 roothub device speed to USB_SPEED_SUPER_PLUS + - usb: show speed "10000" in sysfs for USB 3.1 SuperSpeedPlus devices + - usb: add device descriptor for usb 3.1 root hub + - usb: Support USB 3.1 extended port status request + - xhci: Make sure xhci handles USB_SPEED_SUPER_PLUS devices. + - xhci: set roothub speed to USB_SPEED_SUPER_PLUS for USB3.1 capable controllers + - xhci: USB 3.1 add default Speed Attributes to SuperSpeedPlus device capability + - xhci: set slot context speed field to SuperSpeedPlus for USB 3.1 SSP devices + - usb: Add USB3.1 SuperSpeedPlus Isoc Endpoint Companion descriptor + - usb: Parse the new USB 3.1 SuperSpeedPlus Isoc endpoint companion descriptor + - usb: Add USB 3.1 Precision time measurement capability descriptor support + - xhci: refactor and cleanup endpoint initialization. + - xhci: Add SuperSpeedPlus high bandwidth isoc support to xhci endpoints + - xhci: cleanup isoc tranfers queuing code + - xhci: Support extended burst isoc TRB structure used by xhci 1.1 for USB 3.1 + - SAUCE: (noup) usb: fix regression in SuperSpeed endpoint descriptor parsing + + * wrong/missing permissions for device file /dev/prandom (prng.ko) + (LP: #1558275) + - s390/crypto: provide correct file mode at device register. + + * The Front MIC jack can't work on a HP desktop machine (LP: #1564712) + - ALSA: hda - fix front mic problem for a HP desktop + + * HP Notebook Probook 440 G3 HDA Intel PCH horrible sounds while booting + (LP: #1556228) + - ALSA: hda - Apply reboot D3 fix for CX20724 codec, too + + * please provide mmc-modules udeb (LP: #1565765) + - [Config] Add mmc block drivers to d-i + + * linux: Enforce signed module loading when UEFI secure boot (LP: #1566221) + - Add secure_modules() call + - PCI: Lock down BAR access when module security is enabled + - x86: Lock down IO port access when module security is enabled + - ACPI: Limit access to custom_method + - asus-wmi: Restrict debugfs interface when module loading is restricted + - Restrict /dev/mem and /dev/kmem when module loading is restricted + - acpi: Ignore acpi_rsdp kernel parameter when module loading is restricted + - kexec: Disable at runtime if the kernel enforces module loading restrictions + - x86: Restrict MSR access when module loading is restricted + - [Config] CONFIG_EFI_SECURE_BOOT_SIG_ENFORCE=n + - Add option to automatically enforce module signatures when in Secure Boot mode + - efi: Make EFI_SECURE_BOOT_SIG_ENFORCE depend on EFI + - efi: Add EFI_SECURE_BOOT bit + - hibernate: Disable in a signed modules environment + + * [Hyper-V] Additional PCI passthrough commits (LP: #1565967) + - PCI: Add fwnode_handle to x86 pci_sysdata + - PCI: Look up IRQ domain by fwnode_handle + - [Config] CONFIG_PCI_HYPERV=m + - PCI: hv: Add paravirtual PCI front-end for Microsoft Hyper-V VMs + + * [Bug]Lenovo Yoga 260 and Carbon X1 4th gen freeze on HWP enable + (LP: #1559923) + - ACPI / processor: Request native thermal interrupt handling via _OSC + + * Sync kernel zfs 0.6.5.6 - align with zfsutils-linux and spl packages + (LP: #1564591) + - SAUCE: (noup) Update spl to 0.6.5.6-0ubuntu1, zfs to 0.6.5.6-0ubuntu3 + + * [Ubuntu 16.04.1] RELEASE and ACQUIRE atomics on Power (LP: #1556096) + - atomics: Allow architectures to define their own __atomic_op_* helpers + - powerpc: atomic: Implement atomic{, 64}_*_return_* variants + - powerpc: atomic: Implement acquire/release/relaxed variants for xchg + - powerpc: atomic: Implement acquire/release/relaxed variants for cmpxchg + + * fix for do_tools_cpupower when cross-compiling (LP: #1564206) + - [Debian] cpupower uses non-standard CROSS + + * ISST:LTE: Regression: roselp2 Oops in kernel during setup io (LP: #1546439) + - SAUCE: block: partition: initialize percpuref before sending out KOBJ_ADD + + * Unable to migrate container (LP: #1563921) + - SAUCE: cgroup mount: ignore nsroot= + + * [Hyper-V] patch inclusion in 16.04 for NIC hot add/remove (LP: #1563688) + - hv_netvsc: Move subchannel waiting to rndis_filter_device_remove() + + * /proc/$pid/maps performance regression (LP: #1547231) + - proc: revert /proc//maps [stack:TID] annotation + + * TPM2.0 trusted keys fixes (LP: #1398274) + - tpm: remove unneeded include of actbl2.h + - tpm: fix checks for policy digest existence in tpm2_seal_trusted() + - tpm_crb: Use the common ACPI definition of struct acpi_tpm2 + - tpm_tis: Disable interrupt auto probing on a per-device basis + - tpm_tis: Do not fall back to a hardcoded address for TPM2 + - tpm_tis: Use devm_ioremap_resource + - tpm_tis: Clean up the force=1 module parameter + - tpm_crb: Drop le32_to_cpu(ioread32(..)) + - tpm_crb: Use devm_ioremap_resource + - tpm: fix the rollback in tpm_chip_register() + - tpm: fix the cleanup of struct tpm_chip + - tpm: fix: set continueSession attribute for the unseal operation + - tpm: fix: return rc when devm_add_action() fails + - tpm_eventlog.c: fix binary_bios_measurements + - tpm_crb/tis: fix: use dev_name() for /proc/iomem + - tpm_crb: tpm2_shutdown() must be called before tpm_chip_unregister() + - tpm_tis: fix build warning with tpm_tis_resume + + * [Feature]intel_idle driver support for Knights Landing (LP: #1461365) + - intel_idle: Support for Intel Xeon Phi Processor x200 Product Family + + * cxlflash: Backport upstream cxlflash commits and submitting a noup patch to + Xenial (LP: #1563485) + - cxlflash: Fix to avoid unnecessary scan with internal LUNs + - cxlflash: Increase cmd_per_lun for better throughput + - SAUCE: (noup) cxlflash: Move to exponential back-off when cmd_room is not available + + * Miscellaneous Ubuntu changes + - [Config] do_zfs_powerpc64-smp = true + - [Debian] fix linux_tools when cross-compiling + - [Config] do_zfs_powerpc64-smp use default value + - SAUCE: apparmor: Fix FTBFS due to bad include path + - SAUCE: i915_bpo: Disable preliminary hw support + + -- Tim Gardner Tue, 29 Mar 2016 15:31:33 -0600 + +linux (4.4.0-17.33) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1563441 + + * ISST-LTE: pVM:high cpus number need a high crashkernel value in kdump + (LP: #1560552) + - SAUCE: (noup) ppc64 boot: Wait for boot cpu to show up if nr_cpus limit is + about to hit. + + * Predictable naming mechanism is leading to issues in DLPAR operations of + NICs (LP: #1560514) + - SAUCE: (noup) powerpc/pci: Assign fixed PHB number based on device-tree + properties + + * ThunderX: support alternative phy implementations (LP: #1562968) + - net: thunderx: Cleanup PHY probing code. + - [Config] CONFIG_MDIO_CAVIUM=m + - phy: mdio-octeon: Refactor into two files/modules + - [Config] CONFIG_MDIO_THUNDER=m + - phy: mdio-thunder: Add driver for Cavium Thunder SoC MDIO buses. + - phy: mdio-cavium: Add missing MODULE_* annotations. + - net: cavium: For Kconfig THUNDER_NIC_BGX, select MDIO_THUNDER. + - phy: mdio-thunder: Fix some Kconfig typos + - [d-i] Add phy drivers for Cavium ThunderX to nic-modules udeb + + * linux: exclude ZONE_DEVICE from GFP_ZONE_TABLE (LP: #1563293) + - Revert "mm: CONFIG_NR_ZONES_EXTENDED" + - mm: exclude ZONE_DEVICE from GFP_ZONE_TABLE + + * lots of printk to serial console can hang system for long time + (LP: #1534216) + - printk: set may_schedule for some of console_trylock() callers + + * [i915_bpo] Update i915 backport driver (LP: #1560395) + - SAUCE: i915_bpo: Update to drm-intel-next-fixes-2016-03-16 + - PM / runtime: Add new helper for conditional usage count incrementation + - drm/core: Add drm_for_each_encoder_mask, v2. + - drm/atomic-helper: Implement subsystem-level suspend/resume + + * [Hyper-V] VM Sockets (LP: #1541585) + - Drivers: hv: vmbus: Cleanup vmbus_set_event() + - Drivers: hv: vmbus: Add vendor and device atttributes + - Drivers: hv: vmbus: avoid infinite loop in init_vp_index() + - Drivers: hv: vmbus: avoid scheduling in interrupt context in vmbus_initiate_unload() + - Drivers: hv: vmbus: don't manipulate with clocksources on crash + - Drivers: hv: vmbus: add a helper function to set a channel's pending send size + - Drivers: hv: vmbus: define the new offer type for Hyper-V socket (hvsock) + - Drivers: hv: vmbus: vmbus_sendpacket_ctl: hvsock: avoid unnecessary signaling + - Drivers: hv: vmbus: define a new VMBus message type for hvsock + - Drivers: hv: vmbus: add a hvsock flag in struct hv_driver + - Drivers: hv: vmbus: add a per-channel rescind callback + - Drivers: hv: vmbus: add an API vmbus_hvsock_device_unregister() + - Drivers: hv: vmbus: Eliminate the spin lock on the read path + - Drivers: hv: vmbus: Give control over how the ring access is serialized + - drivers/hv: Move VMBus hypercall codes into Hyper-V UAPI header + - Drivers: hv: vmbus: don't loose HVMSG_TIMER_EXPIRED messages + - Drivers: hv: vmbus: avoid wait_for_completion() on crash + - Drivers: hv: vmbus: remove code duplication in message handling + - Drivers: hv: vmbus: avoid unneeded compiler optimizations in vmbus_wait_for_unload() + - Drivers: hv: util: Pass the channel information during the init call + - Drivers: hv: utils: Remove util transport handler from list if registration fails + - Revert "Drivers: hv: vmbus: Support handling messages on multiple CPUs" + - Drivers: hv: vmbus: Support handling messages on multiple CPUs + + * [Bug]SKL-H boot hang when c8+c9+c10 enabled by intel_idle driver + (LP: #1559918) + - intel_idle: prevent SKL-H boot failure when C8+C9+C10 enabled + + * ixgbe: Update to Fortville SW5 release (LP: #1562326) + - net: add tc offload feature flag + - net: tc: helper functions to query action types + - sctp: Rename NETIF_F_SCTP_CSUM to NETIF_F_SCTP_CRC + - net: rework ndo tc op to consume additional qdisc handle parameter + - net: rework setup_tc ndo op to consume general tc operand + - net: sched: add cls_u32 offload hooks for netdevs + - net: ixgbe: add support for tc_u32 offload + - net: ixgbe: abort with cls u32 divisor groups greater than 1 + + * Bring fm10k up to Fortville SW5 (LP: #1562310) + - net: add netif_is_team_master helper + - net: add netif_is_team_port helper + - net: add netif_is_lag_master helper + - net: add netif_is_lag_port helper + - ethtool: correctly ensure {GS}CHANNELS doesn't conflict with GS{RXFH} + - fm10k: don't reinitialize RSS flow table when RXFH configured + + * [Feature]Always Running Timer (ART) to System Time translation + (LP: #1519625) + - time: Verify time values in adjtimex ADJ_SETOFFSET to avoid overflow + - timekeeping: Provide internal function __ktime_get_real_seconds + - timekeeping: Cap adjustments so they don't exceed the maxadj value + - clocksource: Make clocksource validation work for all clocksources + - time: Add cycles to nanoseconds translation + - time: Add timekeeping snapshot code capturing system time and counter + - time: Remove duplicated code in ktime_get_raw_and_real() + - time: Add driver cross timestamp interface for higher precision time synchronization + - time: Add history to cross timestamp interface supporting slower devices + - time/timekeeping: Work around false positive GCC warning + - x86/tsc: Always Running Timer (ART) correlated clocksource + - ptp: Add PTP_SYS_OFFSET_PRECISE for driver crosstimestamping + - [Config] CONFIG_E1000E_HWTS=y + - e1000e: Adds hardware supported cross timestamp on e1000e nic + + * x-gene2: add SoC v2 support to clock (LP: #1561604) + - clk: xgene: Add SoC and PMD PLL clocks with v2 hardware + + * [Bug]Disable multi-record PEBS on Merom (LP: #1559914) + - perf/x86: Move perf_event.c ............... => x86/events/core.c + - perf/x86: Move perf_event_amd.c ........... => x86/events/amd/core.c + - perf/x86: Move perf_event_amd_ibs.c ....... => x86/events/amd/ibs.c + - perf/x86: Move perf_event_amd_iommu.[ch] .. => x86/events/amd/iommu.[ch] + - perf/x86: Move perf_event_amd_uncore.c .... => x86/events/amd/uncore.c + - perf/x86: Move perf_event_intel_bts.c ........ => x86/events/intel/bts.c + - perf/x86: Move perf_event_intel.c ............ => x86/events/intel/core.c + - perf/x86: Move perf_event_intel_cqm.c ........ => x86/events/intel/cqm.c + - perf/x86: Move perf_event_intel_cstate.c ..... => x86/events/intel/cstate.c + - perf/x86: Move perf_event_intel_ds.c ......... => x86/events/intel/ds.c + - perf/x86: Move perf_event_intel_lbr.c ........ => x86/events/intel/lbr.c + - perf/x86: Move perf_event_intel_pt.[ch] ...... => x86/events/intel/pt.[ch] + - perf/x86: Move perf_event_intel_rapl.c ....... => x86/events/intel/rapl.c + - perf/x86: Move perf_event_intel_uncore.[ch] .. => + x86/events/intel/uncore.[ch] + - perf/x86: Move perf_event_intel_uncore_nhmex.c => + x86/events/intel/uncore_nmhex.c + - perf/x86: Move perf_event_intel_uncore_snb.c => + x86/events/intel/uncore_snb.c + - perf/x86: Move perf_event_intel_uncore_snbep.c => + x86/events/intel/uncore_snbep.c + - perf/x86: Move perf_event_knc.c .............. => x86/events/intel/knc.c + - perf/x86: Move perf_event_p4.c ............... => x86/events/intel/p4.c + - perf/x86: Move perf_event_p6.c ............... => x86/events/intel/p6.c + - perf/x86: Move perf_event_msr.c .............. => x86/events/msr.c + - perf/x86: Move perf_event.h to its new home + - perf/x86/intel: Use PAGE_SIZE for PEBS buffer size on Core2 + + * [Feature] Enable I2C on Broxton-P (LP: #1520139) + - mfd: intel-lpss: Pass I2C configuration via properties on BXT + + -- Tim Gardner Thu, 24 Mar 2016 20:40:27 -0600 + +linux (4.4.0-16.32) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1561727 + + * fix thermal throttling due to commit "Thermal: initialize thermal zone + device correctly" (LP: #1561676) + - Thermal: Ignore invalid trip points + + * Thinkpad T460: Trackpoint mouse buttons instantly generate "release" event + on press (LP: #1553811) + - SAUCE: (noup) Input: synaptics - handle spurious release of trackstick + buttons, again + + * reading /sys/kernel/security/apparmor/profiles requires CAP_MAC_ADMIN + (LP: #1560583) + - SAUCE: apparmor: Allow ns_root processes to open profiles file + - SAUCE: apparmor: Consult sysctl when reading profiles in a user ns + + * linux: sync virtualbox drivers to 5.0.16-dfsg-2 (LP: #1561492) + - ubuntu: vbox -- update to 5.0.16-dfsg-2 + + * s390/kconfig: CONFIG_NUMA without CONFIG_NUMA_EMU does not make any sense on + s390x (LP: #1557690) + - [Config] CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=n for s390x + + * spl/zfs fails to build on s390x (LP: #1519814) + - [Config] s390x -- re-enable zfs + - [Config] zfs -- disable powerpc until the test failures can be resolved + + * linux: sync to ZFS 0.6.5.6 stable release (LP: #1561483) + - SAUCE: (noup) Update spl to 0.6.5.6-0ubuntu1, zfs to 0.6.5.6-0ubuntu1 + + * zfs: enable zfs for 64bit powerpc kernels (LP: #1558871) + - [Packaging] zfs -- handle rprovides via dpkg-gencontrol + - [Config] powerpc -- convert zfs configuration to custom_override + + * Memory arena corruption with FUSE (was Memory allocation failure crashes + kernel hard, presumably related to FUSE) (LP: #1505948) + - SAUCE: (noup) fuse: do not use iocb after it may have been freed + - SAUCE: (noup) fuse: Add reference counting for fuse_io_priv + + * cgroup namespaces: add a 'nsroot=' mountinfo field (LP: #1560489) + - SAUCE: (noup) cgroup namespaces: add a 'nsroot=' mountinfo field + + * linux packaging: clear remaining redundant delta (LP: #1560445) + - [Debian] Remove generated intermediate files on clean + + * arm64: guest hangs when ntpd is running (LP: #1549494) + - Revert "hrtimer: Add support for CLOCK_MONOTONIC_RAW" + - Revert "hrtimer: Catch illegal clockids" + - Revert "KVM: arm/arm64: timer: Switch to CLOCK_MONOTONIC_RAW" + + * Need enough contiguous memory to support GICv3 ITS table (LP: #1558828) + - [Config] CONFIG_FORCE_MAX_ZONEORDER=13 on arm64 + - SAUCE: (no-up) arm64: gicv3: its: Increase FORCE_MAX_ZONEORDER for Cavium + ThunderX + + * update arcmsr to version v1.30.00.22-20151126 to fix card timeouts + (LP: #1559609) + - arcmsr: fixed getting wrong configuration data + - arcmsr: fixes not release allocated resource + - arcmsr: make code more readable + - arcmsr: adds code to support new Areca adapter ARC1203 + - arcmsr: changes driver version number + - arcmsr: more readability improvements + - arcmsr: Split dma resource allocation to a new function + - arcmsr: change driver version to v1.30.00.22-20151126 + + * server image has no keyboard, desktop image works (LP: #1559692) + - [Config] Rework input-modules (d-i) list + + * PMU support for Cavium ThunderX (LP: #1559349) + - arm64: perf: Rename Cortex A57 events + - arm64/perf: Add Cavium ThunderX PMU support + - arm64: perf: Enable PMCR long cycle counter bit + - arm64: perf: Extend event mask for ARMv8.1 + - arm64: dts: Add Cavium ThunderX specific PMU + + * Show ARM PMU events in perf stat (LP: #1559350) + - drivers/perf: kill armpmu_register + - arm: perf: Convert event enums to #defines + - arm: perf: Add event descriptions + - arm64: perf: Convert event enums to #defines + - arm64: perf: Add event descriptions + - ARM: perf: add format entry to describe event -> config mapping + - arm64: perf: add format entry to describe event -> config mapping + + * [Bug]HSW/BDW EDAC driver reports wrong DIMM (LP: #1559904) + - EDAC/sb_edac: Fix computation of channel address + + * 5-10 second delay in kernel boot with kernel command line ip= (LP: #1259861) + - [Config] disable CONFIG_IP_PNP + + * Miscellaneous Ubuntu changes + - [Debian] Silence the reconstruct script + + -- Tim Gardner Mon, 21 Mar 2016 10:15:31 -0600 + +linux (4.4.0-15.31) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1559252 + + * Xilinx KU3 Capi card does not show up in Ubuntu 16.04 (LP: #1557001) + - SAUCE: (noup) cxl: Allow initialization on timebase sync failures + + * policy namespace stacking (LP: #1379535) + - Revert "UBUNTU: SAUCE: Move replacedby allocation into label_alloc" + - Revert "UBUNTU: SAUCE: Fixup: __label_update() still doesn't handle some cases correctly." + - Revert "UBUNTU: SAUCE: fix: audit "no_new_privs" case for exec failure" + - Revert "UBUNTU: SAUCE: fixup: warning about aa_label_vec_find_or_create not being static" + - Revert "UBUNTU: SAUCE: apparmor: fix refcount race when finding a child profile" + - Revert "UBUNTU: SAUCE: fixup: cast poison values to remove warnings" + - Revert "UBUNTU: SAUCE: fixup: get rid of unused var build warning" + - Revert "UBUNTU: SAUCE: fixup: 20/23 locking issue around in __label_update" + - Revert "UBUNTU: SAUCE: fixup: make __share_replacedby private to get rid of build warning" + - Revert "UBUNTU: SAUCE: fix: replacedby forwarding is not being properly update when ns is destroyed" + - Revert "UBUNTU: SAUCE: apparmor: fix log of apparmor audit message when kern_path() fails" + - Revert "UBUNTU: SAUCE: fixup: cleanup return handling of labels" + - Revert "UBUNTU: SAUCE: apparmor: fix: ref count leak when profile sha1 hash is read" + - Revert "UBUNTU: SAUCE: apparmor: Fix: query label file permission" + - Revert "UBUNTU: SAUCE: apparmor: Don't remove label on rcu callback if the label has already been removed" + - Revert "UBUNTU: SAUCE: apparmor: Fix: break circular refcount for label that is directly freed." + - Revert "UBUNTU: SAUCE: apparmor: Fix: refcount bug when inserting label update that transitions ns" + - Revert "UBUNTU: SAUCE: apparmor: Fix: now that insert can force replacement use it instead of remove_and_insert" + - Revert "UBUNTU: SAUCE: apparmor Fix: refcount bug in pivotroot mediation" + - Revert "UBUNTU: SAUCE: apparmor: ensure that repacedby sharing is done correctly" + - Revert "UBUNTU: SAUCE: apparmor: Fix: update replacedby allocation to take a gfp parameter" + - Revert "UBUNTU: SAUCE: apparmor: Fix: convert replacedby update to be protected by the labelset lock" + - Revert "UBUNTU: SAUCE: apparmor: Fix: add required locking of __aa_update_replacedby on merge path" + - Revert "UBUNTU: SAUCE: apparmor: Fix: deadlock in aa_put_label() call chain" + - Revert "UBUNTU: SAUCE: apparmor: Fix: label_vec_merge insertion" + - Revert "UBUNTU: SAUCE: apparmor: Fix: ensure new labels resulting from merge have a replacedby" + - Revert "UBUNTU: SAUCE: apparmor: Fix: refcount leak in aa_label_merge" + - Revert "UBUNTU: SAUCE: apparmor: Fix: refcount race between locating in labelset and get" + - Revert "UBUNTU: SAUCE: apparmor: Fix: label merge handling of marking unconfined and stale" + - Revert "UBUNTU: SAUCE: apparmor: add underscores to indicate aa_label_next_not_in_set() use needs locking" + - Revert "UBUNTU: SAUCE: apparmor: debug: POISON label and replaceby pointer on free" + - Revert "UBUNTU: SAUCE: apparmor: Fix: ensure aa_get_newest will trip debugging if the replacedby is not setup" + - Revert "UBUNTU: SAUCE: apparmor: Fix: insert race between label_update and label_merge" + - Revert "UBUNTU: SAUCE: apparmor: rework retrieval of the current label in the profile update case" + - Revert "UBUNTU: SAUCE: apparmor: Disallow update of cred when then subjective != the objective cred" + - Revert "UBUNTU: SAUCE: apparmor: Fix: oops do to invalid null ptr deref in label print fns" + - Revert "UBUNTU: SAUCE: fix-up: kern_mount fail path should not be doing put_buffers()" + - Revert "UBUNTU: SAUCE: apparmor: fix sleep from invalid context" + - Revert "UBUNTU: SAUCE: (no-up): apparmor: fix for failed mediation of socket that is being shutdown" + - Revert "UBUNTU: SAUCE: (no-up) apparmor: Fix incompatible pointer type warnings" + - Revert "UBUNTU: SAUCE: (no-up) apparmor: fix mount not handling disconnected paths" + - Revert "UBUNTU: SAUCE: (no-up): apparmor: fix mediation of fs unix sockets" + - Revert "UBUNTU: apparmor -- follow change to this_cpu_ptr" + - Revert "UBUNTU: SAUCE: (no-up) fix: bad unix_addr_fs macro" + - Revert "UBUNTU: SAUCE: Revert: fix: only allow a single threaded process to ..." + - Revert "UBUNTU: SAUCE: (no-up) apparmor: Sync to apparmor3 - RC1 snapshot" + - Revert "UBUNTU: SAUCE: (no-up) apparmor: add parameter to control whether policy hashing is used" + - SAUCE: (no-up) apparmor: sync of apparmor3.5-beta1 snapshot + - SAUCE: add a sysctl to enable unprivileged user ns AppArmor policy loading + + * Add arm64 NUMA support (LP: #1558765) + - SAUCE: (noup) efi: ARM/arm64: ignore DT memory nodes instead of removing them + - SAUCE: (noup) Documentation, dt, numa: dt bindings for NUMA. + - [Config] CONFIG_OF_NUMA=y + - SAUCE: (noup) of, numa: Add NUMA of binding implementation. + - SAUCE: (noup) arm64: Move unflatten_device_tree() call earlier. + - [Config] CONFIG_NUMA=y and CONFIG_NODES_SHIFT=2 on arm64 + - SAUCE: (noup) arm64, numa: Add NUMA support for arm64 platforms. + - SAUCE: (noup) arm64, mm, numa: Add NUMA balancing support for arm64. + + * vivid/linux: total ADT test failures (LP: #1558447) + - Revert "Revert "af_unix: Revert 'lock_interruptible' in stream receive code"" + + * [Hyper-V] patches to allow kdump crash through NMI (LP: #1558720) + - Drivers: hv: vmbus: Support handling messages on multiple CPUs + - Drivers: hv: vmbus: Support kexec on ws2012 r2 and above + + * s390/pci: enforce fmb page boundary rule (LP: #1558625) + - s390/pci: enforce fmb page boundary rule + + * s390/pci: backport upstream commits since v4.4 (LP: #1558624) + - s390/pci_dma: fix DMA table corruption with > 4 TB main memory + - page_to_phys() always returns a multiple of PAGE_SIZE + - s390/pci: provide ZPCI_ADDR macro + - s390/pci: improve ZPCI_* macros + - s390/pci: resize iomap + - s390/pci: fix bar check + - s390/pci: set error state for unusable functions + - s390/pci: remove iomap sanity checks + - s390/pci: remove pdev pointer from arch data + - s390/pci: add ioctl interface for CLP + + * IMA-appraisal is unusable in Ubuntu 16.04 (LP: #1558553) + - [Config] CONFIG_SYSTEM_EXTRA_CERTIFICATE=y, CONFIG_SYSTEM_EXTRA_CERTIFICATE_SIZE=4096 + - KEYS: Use the symbol value for list size, updated by scripts/insert-sys-cert + - KEYS: Reserve an extra certificate symbol for inserting without recompiling + - SAUCE: (noup) KEYS: Support for inserting a certificate into x86 bzImage + + * skb_warn_bad_offload Crash (LP: #1558025) + - ipv4: only create late gso-skb if skb is already set up with CHECKSUM_PARTIAL + + * Add PCIe root complex to Cavium arm64 (LP: #1558342) + - [Config] CONFIG_PCI_HOST_COMMON=y + - [Config] CONFIG_PCI_HOST_THUNDER_PEM=y + - [Config] CONFIG_PCI_HOST_THUNDER_ECAM=y + - PCI: generic: Move structure definitions to separate header file + - PCI: generic: Add pci_host_common_probe(), based on gen_pci_probe() + - PCI: generic: Expose pci_host_common_probe() for use by other drivers + - PCI: thunder: Add PCIe host driver for ThunderX processors + - PCI: thunder: Add driver for ThunderX-pass{1,2} on-chip devices + + * [Hyper-V] vmbus: Fix a bug in hv_need_to_signal_on_read() (LP: #1556264) + - SAUCE: (noup) Drivers: hv: vmbus: Fix a bug in hv_need_to_signal_on_read() + + * Xenial update to v4.4.6 stable release (LP: #1558330) + - arm64: account for sparsemem section alignment when choosing vmemmap offset + - ARM: mvebu: fix overlap of Crypto SRAM with PCIe memory window + - ARM: dts: dra7: do not gate cpsw clock due to errata i877 + - ARM: OMAP2+: hwmod: Introduce ti,no-idle dt property + - PCI: Allow a NULL "parent" pointer in pci_bus_assign_domain_nr() + - kvm: cap halt polling at exactly halt_poll_ns + - KVM: VMX: disable PEBS before a guest entry + - KVM: s390: correct fprs on SIGP (STOP AND) STORE STATUS + - KVM: PPC: Book3S HV: Sanitize special-purpose register values on guest exit + - KVM: MMU: fix ept=0/pte.u=1/pte.w=0/CR0.WP=0/CR4.SMEP=1/EFER.NX=0 combo + - KVM: MMU: fix reserved bit check for ept=0/CR0.WP=0/CR4.SMEP=1/EFER.NX=0 + - s390/dasd: fix diag 0x250 inline assembly + - tracing: Fix check for cpu online when event is disabled + - dmaengine: at_xdmac: fix residue computation + - jffs2: reduce the breakage on recovery from halfway failed rename() + - ncpfs: fix a braino in OOM handling in ncp_fill_cache() + - ASoC: dapm: Fix ctl value accesses in a wrong type + - ASoC: samsung: Use IRQ safe spin lock calls + - ASoC: wm8994: Fix enum ctl accesses in a wrong type + - ASoC: wm8958: Fix enum ctl accesses in a wrong type + - ovl: ignore lower entries when checking purity of non-directory entries + - ovl: fix working on distributed fs as lower layer + - wext: fix message delay/ordering + - cfg80211/wext: fix message ordering + - can: gs_usb: fixed disconnect bug by removing erroneous use of kfree() + - iwlwifi: mvm: inc pending frames counter also when txing non-sta + - mac80211: minstrel: Change expected throughput unit back to Kbps + - mac80211: fix use of uninitialised values in RX aggregation + - mac80211: minstrel_ht: set default tx aggregation timeout to 0 + - mac80211: minstrel_ht: fix a logic error in RTS/CTS handling + - mac80211: check PN correctly for GCMP-encrypted fragmented MPDUs + - mac80211: Fix Public Action frame RX in AP mode + - gpu: ipu-v3: Do not bail out on missing optional port nodes + - drm/amdgpu: Fix error handling in amdgpu_flip_work_func. + - drm/radeon: Fix error handling in radeon_flip_work_func. + - Revert "drm/radeon/pm: adjust display configuration after powerstate" + - userfaultfd: don't block on the last VM updates at exit time + - ovl: fix getcwd() failure after unsuccessful rmdir + - MIPS: Fix build error when SMP is used without GIC + - MIPS: smp.c: Fix uninitialised temp_foreign_map + - block: don't optimize for non-cloned bio in bio_get_last_bvec() + - target: Drop incorrect ABORT_TASK put for completed commands + - ld-version: Fix awk regex compile failure + - Linux 4.4.6 + + * linux fails to load x.509 built-in certificate (LP: #1557250) + - lib/mpi: Endianness fix + + * s390/kconfig: setting for CONFIG...9P.... (LP: #1557994) + - [Config] CONFIG_NET_9P=m for s390x + + * mlx5_core kernel trace after "ethtool -C eth1 adaptive-rx on" flow + (LP: #1557950) + - net/mlx5e: Don't try to modify CQ moderation if it is not supported + - net/mlx5e: Don't modify CQ before it was created + + * [Feature]SD/SDIO/eMMC support for Broxton-P (LP: #1520454) + - mmc: sdhci: Do not BUG on invalid vdd + - mmc: enable MMC/SD/SDIO device to suspend/resume asynchronously + - mmc: It is not an error for the card to be removed while suspended + + * s390/kconfig: disable CONFIG_VIRTIO_MMIO (LP: #1557689) + - [Config] CONFIG_VIRTIO_MMIO=n for s390x + + * s390/kconfig: CONFIG_NUMA without CONFIG_NUMA_EMU does not make any sense on s390x (LP: #1557690) + - [Config] CONFIG_NUMA_EMU=y for s390x + + * Miscellaneous Ubuntu changes + - [Debian] git-ubuntu-log -- prevent bug references being split + - [Debian] git-ubuntu-log -- git log output is UTF-8 + + -- Tim Gardner Tue, 15 Mar 2016 13:18:58 -0600 + +linux (4.4.0-14.30) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1557508 + + * Current 4.4 kernel won't boot on powerpc (LP: #1557130) + - powerpc: Fix dedotify for binutils >= 2.26 + + * ZFS: send fails to transmit some holes [corruption] (LP: #1557151) + - Illumos 6370 - ZFS send fails to transmit some holes + + * Request to cherry-pick uvcvideo patch for Xenial kernel support of RealSense + camera (LP: #1557138) + - UVC: Add support for ds4 depth camera + + * use after free of task_struct->numa_faults in task_numa_find_cpu (LP: #1527643) + - sched/numa: Fix use-after-free bug in the task_numa_compare + + * overlay fs regression: chmod fails with "Operation not permitted" on chowned + files (LP: #1555997) + - ovl: copy new uid/gid into overlayfs runtime inode + + * Miscellaneous Ubuntu changes + - SAUCE: Dump stack when X.509 certificates cannot be loaded + + -- Tim Gardner Mon, 14 Mar 2016 07:16:19 -0600 + +linux (4.4.0-13.29) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1556247 + + * s390/mm: four page table levels vs. fork (LP: #1556141) + - s390/mm: four page table levels vs. fork + + * [Hyper-V] network performance patches for Xenial 16.04 (LP: #1556037) + - hv_netvsc: use skb_get_hash() instead of a homegrown implementation + - hv_netvsc: cleanup netdev feature flags for netvsc + + * fails to boot on megaraid (LP: #1552903) + - SAUCE: (noup) megaraid_sas: Don't issue kill adapter for MFI controllers in + case of PD list DCMD failure + + * ALSA: hda - add codec support for Kabylake display audio codec (LP: #1556002) + - ALSA: hda - add codec support for Kabylake display audio codec + + * Backport upstream bugfixes to ubuntu-16.04 (LP: #1555765) + - cpufreq: powernv: Free 'chips' on module exit + - cpufreq: powernv: Hot-plug safe the kworker thread + - cpufreq: powernv: Remove cpu_to_chip_id() from hot-path + - cpufreq: powernv/tracing: Add powernv_throttle tracepoint + - cpufreq: powernv: Replace pr_info with trace print for throttle event + - SAUCE: (noup) cpufreq: powernv: Fix bugs in powernv_cpufreq_{init/exit} + + * Linux netfilter IPT_SO_SET_REPLACE memory corruption (LP: #1555338) + - SAUCE: [nf,v2] netfilter: x_tables: don't rely on well-behaving userspace + + * integer overflow in xt_alloc_table_info (LP: #1555353) + - SAUCE: (noup) netfilter: x_tables: check for size overflow + + * linux: auto-generate the reconstruct information from the git tag (LP: #1555543) + - [Packaging] reconstruct -- automatically reconstruct against base tag + - [Config] reconstruct -- update to autoreconstruct output + - [Packaging] reconstruct -- update when inserting final changes + + * Xenial update to v4.4.5 stable release (LP: #1555640) + - use ->d_seq to get coherency between ->d_inode and ->d_flags + - drivers: sh: Restore legacy clock domain on SuperH platforms + - Btrfs: fix deadlock running delayed iputs at transaction commit time + - btrfs: Fix no_space in write and rm loop + - btrfs: async-thread: Fix a use-after-free error for trace + - block: Initialize max_dev_sectors to 0 + - PCI: keystone: Fix MSI code that retrieves struct pcie_port pointer + - parisc: Fix ptrace syscall number and return value modification + - mips/kvm: fix ioctl error handling + - kvm: x86: Update tsc multiplier on change. + - fbcon: set a default value to blink interval + - cifs: fix out-of-bounds access in lease parsing + - CIFS: Fix SMB2+ interim response processing for read requests + - Fix cifs_uniqueid_to_ino_t() function for s390x + - vfio: fix ioctl error handling + - KVM: x86: fix root cause for missed hardware breakpoints + - arm/arm64: KVM: Fix ioctl error handling + - iommu/amd: Apply workaround for ATS write permission check + - iommu/amd: Fix boot warning when device 00:00.0 is not iommu covered + - iommu/vt-d: Use BUS_NOTIFY_REMOVED_DEVICE in hotplug path + - target: Fix WRITE_SAME/DISCARD conversion to linux 512b sectors + - drm/ast: Fix incorrect register check for DRAM width + - drm/radeon/pm: update current crtc info after setting the powerstate + - drm/amdgpu/pm: update current crtc info after setting the powerstate + - drm/amdgpu: apply gfx_v8 fixes to gfx_v7 as well + - drm/amdgpu/gfx8: specify which engine to wait before vm flush + - drm/amdgpu: return from atombios_dp_get_dpcd only when error + - libata: fix HDIO_GET_32BIT ioctl + - libata: Align ata_device's id on a cacheline + - block: bio: introduce helpers to get the 1st and last bvec + - writeback: flush inode cgroup wb switches instead of pinning super_block + - Adding Intel Lewisburg device IDs for SATA + - arm64: vmemmap: use virtual projection of linear region + - PM / sleep / x86: Fix crash on graph trace through x86 suspend + - ata: ahci: don't mark HotPlugCapable Ports as external/removable + - tracing: Do not have 'comm' filter override event 'comm' field + - pata-rb532-cf: get rid of the irq_to_gpio() call + - Btrfs: fix loading of orphan roots leading to BUG_ON + - Revert "jffs2: Fix lock acquisition order bug in jffs2_write_begin" + - jffs2: Fix page lock / f->sem deadlock + - Fix directory hardlinks from deleted directories + - dmaengine: pxa_dma: fix cyclic transfers + - adv7604: fix tx 5v detect regression + - ALSA: usb-audio: Add a quirk for Plantronics DA45 + - ALSA: ctl: Fix ioctls for X32 ABI + - ALSA: hda - Fix mic issues on Acer Aspire E1-472 + - ALSA: rawmidi: Fix ioctls X32 ABI + - ALSA: timer: Fix ioctls for X32 ABI + - ALSA: pcm: Fix ioctls for X32 ABI + - ALSA: seq: oss: Don't drain at closing a client + - ALSA: hdspm: Fix wrong boolean ctl value accesses + - ALSA: hdsp: Fix wrong boolean ctl value accesses + - ALSA: hdspm: Fix zero-division + - ALSA: timer: Fix broken compat timer user status ioctl + - usb: chipidea: otg: change workqueue ci_otg as freezable + - USB: cp210x: Add ID for Parrot NMEA GPS Flight Recorder + - USB: qcserial: add Dell Wireless 5809e Gobi 4G HSPA+ (rev3) + - USB: qcserial: add Sierra Wireless EM74xx device ID + - USB: serial: option: add support for Telit LE922 PID 0x1045 + - USB: serial: option: add support for Quectel UC20 + - MIPS: scache: Fix scache init with invalid line size. + - MIPS: traps: Fix SIGFPE information leak from `do_ov' and `do_trap_or_bp' + - ubi: Fix out of bounds write in volume update code + - i2c: brcmstb: allocate correct amount of memory for regmap + - thermal: cpu_cooling: fix out of bounds access in time_in_idle + - block: check virt boundary in bio_will_gap() + - block: get the 1st and last bvec via helpers + - drm/i915: more virtual south bridge detection + - drm/i915: refine qemu south bridge detection + - modules: fix longstanding /proc/kallsyms vs module insertion race. + - drm/amdgpu: fix topaz/tonga gmc assignment in 4.4 stable + - Linux 4.4.5 + + * QEMU: causes vCPU steal time overflow on live migration (LP: #1494350) + - x86/mm: Fix slow_virt_to_phys() for X86_PAE again + + * TPM2.0 trusted keys fixes (LP: #1398274) + - tpm_tis: further simplify calculation of ordinal duration + - tpm_tis: Use devm_free_irq not free_irq + - tpm_tis: Ensure interrupts are disabled when the driver starts + - tpm: rework tpm_get_timeouts() + - tpm_tis: Get rid of the duplicate IRQ probing code + - tpm_tis: Refactor the interrupt setup + - tpm_tis: Tighten IRQ auto-probing + - tpm_ibmvtpm: properly handle interrupted packet receptions + + * linux: review all versioned depends/conflicts/replaces/breaks for validility (LP: #1555033) + - [Config] control.stub.in -- review versioned Build-Depends: + - [Config] control.stub.in -- review versioned + Depends/Breaks/Conflicts/Replaces + - [Config] flavour-control.stub -- review versioned Breaks/Conflicts/Replaces + - [Config] x86 vars.* -- review versioned Breaks/Conflicts/Replaces + + -- Tim Gardner Wed, 09 Mar 2016 05:11:51 -0700 + +linux (4.4.0-12.28) xenial; urgency=low + + * Miscellaneous Ubuntu changes + - reconstruct: Work around orig tarball packaging limitiations + Fixes FTBS + + -- Tim Gardner Tue, 08 Mar 2016 13:26:08 -0700 + +linux (4.4.0-12.27) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1554704 + + * Fails to detect (second) display (LP: #1543683) + - drm/i915: Fix hpd live status bits for g4x + + * s390x -- various configuration changes (LP: #1543165) + - [Config] s390x -- enable CONFIG_NUMA + - [Config] s390x -- disable CONFIG_NET_VENDOR_EMULEX + - [Config] s390x -- disable CONFIG_NET_VENDOR_SYNOPSYS + - [Config] s390x -- disable CONFIG_NVMEM + - [Config] s390x -- switch preempt mode to none + + * Radeon hybrid graphics problem on resume (LP: #1554608) + - Revert "drm/radeon: call hpd_irq_event on resume" + + * Pull in upstream AMD code (amdgpu) in Xenial (LP: #1546572) + - [Config] CONFIG_DRM_AMD_POWERPLAY=y + - drm/amdgpu: use $(src) in Makefile (v2) + - drm/radeon: constify radeon_asic_ring structures + - drm/amdgpu: add a callback for reading the bios from the rom directly + - drm/amdgpu: add read_bios_from_rom callback for CI parts + - drm/amdgpu: add read_bios_from_rom callback for VI parts + - drm/amdgpu: Use new read bios from rom callback + - drm/amdgpu: Use unlocked gem unreferencing + - drm/radeon: Use unlocked gem unreferencing + - drm/amd: add new gfx8 register definitions for EDC + - drm/amdgpu: add EDC support for CZ (v3) + - drm/amd: abstract kernel rq and normal rq to priority of run queue + - drm/amdgpu/gfx8: Enable interrupt on ME1_PIPE3 + - drm/amdgpu/gfx8: update PA_SC_RASTER_CONFIG:PKR_MAP only + - drm/amdgpu: update rev id register for VI + - drm/amdgpu: add more debugging output for driver failures + - drm/amdgpu: add entity only when first job come + - drm/amdgpu: handle error case for ctx + - drm/amdgpu: unify AMDGPU_CTX_MAX_CS_PENDING and amdgpu_sched_jobs + - drm/amdgpu: change default sched jobs to 32 + - drm/amdgpu: limit visible vram if it's smaller than the BAR + - drm/amdgpu: restrict the sched jobs number to power of two + - drm/amdgpu: put VM page tables directly into duplicates list + - drm/amdgpu: split VM PD and PT handling during CS + - drm/amdgpu: keep the PTs validation list in the VM v2 + - drm/radeon: Update radeon_get_vblank_counter_kms() + - drm/radeon: only increment sync_seq when a fence is really emitted + - drm/fb-helper: Use proper plane mask for fb cleanup + - drm/amdgpu: fix dp link rate selection (v2) + - drm/radeon: fix dp link rate selection (v2) + - drm/amdgpu: share struct amdgpu_pm_state_type with powerplay module + - drm/amdgpu: mv some definition from amdgpu_acpi.c to amdgpu_acpi.h + - drm/amdgpu: mv amdgpu_acpi.h to amd/include/amd_acpi.h + - drm/amdgpu: implement new cgs interface for acpi function + - drm/amdgpu: implement cgs interface to query system info + - drm/amdgpu: add new cgs interface to get display info (v2) + - drm/amd/powerplay: add basic powerplay framework + - drm/amdgpu: disable legacy path of firmware check if powerplay is enabled + - drm/amdgpu: export amd_powerplay_func to amdgpu and other ip block + - drm/amd/powerplay: add SMU manager sub-component + - drm/amd/powerplay: add hardware manager sub-component + - SAUCE: amd: Include errno.h + - drm/amd/powerplay: add Carrizo smu support + - drm/amd/powerplay: add Carrizo dpm support + - drm/amd/powerplay: add CG and PG support for carrizo + - drm/amd/powerplay: add event manager sub-component + - drm/amd/powerplay: implement functions of amd_powerplay_func + - drm/amd/powerplay: Add ixSWRST_COMMAND_1 in bif_5_0_d.h + - drm/amd/powerplay: Move smu7*.h from amdgpu to powerplay. + - drm/amd/powerplay: add header file for tonga smu and dpm + - drm/amd/powerplay: Add Tonga SMU support + - drm/amd/powerplay: add Tonga dpm support (v3) + - drm/amd/powerplay: add/update headers for Fiji SMU and DPM + - drm/amd/powerplay: update atomctrl for fiji + - drm/amd/powerplay: add Fiji SMU support. + - drm/amd/powerplay: add Fiji DPM support. + - drm/amdgpu: add amdgpu.powerplay module option + - drm/amd/amdgpu: enable powerplay and smc firmware loading for Fiji. + - drm/amdgpu/powerplay: add function point in hwmgr_funcs for program display gap + - drm/amdgpu/poweprlay: export program display gap function to eventmgr + - drm/amdgpu/powerplay: implement pem_task for display_configuration_change + - drm/amdgpu/powerplay: program display gap for tonga. + - drm/amdgpu: enable powerplay module by default for tonga. + - drm/amdgpu: enable powerplay module by default for fiji. + - drm/amdgpu/powerplay: add some definition for other ip block to update cg pg. + - drm/amd/powerplay: add new function point in hwmgr_func for CG/PG. + - drm/amd/powerplay: Add CG and PG support for tonga + - drm/amdgpu/powerplay: add new function point in hwmgr_funcs for thermal control + - drm/amdgpu/powerplay: mv ppinterrupt.h to inc folder to share with other submodule. + - drm/amdgpu/powerplay: add thermal control interface in hwmgr. + - drm/amdgpu/powerplay: enable thermal interrupt task in eventmgr. + - drm/amdgpu/powerplay: implement thermal control for tonga. + - drm/amdgpu/powerplay: implement fan control interface in amd_powerplay_funcs + - drm/amdgpu: export fan control functions to amdgpu + - drm/amdgpu: enable sysfs interface for powerplay + - drm/amdgpu: support per device powerplay enablement (v2) + - drm/amd/powerplay: add and export hwmgr interface to eventmgr to check hw states. + - drm/amd/powerplay: implement new funcs to check current states for tonga. + - drm/amd/powerplay: refine the logic of whether need to update power state. + - drm/amd/powerplay/tonga: enable pcie and mclk forcing for low + - drm/amd/powerplay/fiji: enable pcie and mclk forcing for low + - drm/amdgpu: extract pcie helpers to common header + - drm: add drm_pcie_get_max_link_width helper (v2) + - drm/amdgpu: store pcie gen mask and link width + - drm/amdgpu/cgs: add sys info query for pcie gen and link width + - drm/amdgpu/powerplay/tonga: query supported pcie info from cgs (v2) + - drm/amdgpu/powerplay/fiji: query supported pcie info from cgs (v2) + - drm/amd/powerplay: fix boolreturn.cocci warnings + - drm/amd/powerplay/tonga: Add UVD DPM init + - drm/amd/amdgpu: add gfx clock gating support for Fiji. + - drm/amd/amdgpu: add gmc clock gating support for Fiji. + - drm/amdgpu: add sdma clock gating support for Fiji. + - drm/amd/powerplay: add parts of system clock gating support for Fiji. (v2) + - drm/amd/powerplay: enable clock gating for Fiji. + - drm/amd/powerplay: add atomctrl function to calculate CZ sclk dividers + - drm/amd/powerplay: implement smc state upload for CZ + - drm/amd/powerplay: fix warning of cast to pointer from integer of different size. + - drm/amd/powerplay: fix warning of cast to pointer from integer of different size. + - drm/amd/powerplay: add new function point in hwmgr. + - drm/amd/powerplay: add smc msg for NB P-State switch + - drm/amd/powerplay: export interface to DAL to init/change display configuration. + - drm/amd/powerplay: enable set_cpu_power_state task. (v2) + - drm/amd/powerplay: enable/disable NB pstate feature for Carrizo. + - drm/amd/powerplay: Add PPLib debug print macro. + - drm/amdgpu: rename tonga_smumgr.h to tonga_smum.h + - drm/amdgpu: rename fiji_smumgr.h to fiji_smum.h + - drm/amd/powerplay: add multimedia power gating support for Fiji. + - drm/amd/amdgpu: add uvd6.0 clock gating support. (v2) + - drm/amd/amdgpu: add vce3.0 clock gating support. (v2) + - drm/amd/amdgpu: enable uvd&vce clock gating for Fiji. + - drm/amdgpu: Prepare DKMS build for powerplay module. + - drm/amd/powerplay: add display configeration changed function in hwmgr for Fiji. + - drm/amd/powerplay: Add thermal protection support for Fiji. + - drm/amd/powerplay: Fix a bug in fan control setting default mode for Tonga and Fiji. + - drm/amd/powerplay: add functions set/get_fan_control_mode in hwmgr for Tonga. + - drm/amd/powerplay: add functions set/get_fan_control_mode in hwmgr for Fiji. + - drm/amd/powerplay: fix boolreturn.cocci warnings + - drm/amd/powerplay: fix bug that dpm funcs in debugfs/sysfs missing. + - drm/amd/powerplay: check whether enable dpm in powerplay. + - drm/amd/powerplay: move shared function of vi to hwmgr. (v2) + - drm/amdgpu/powerplay: enable sysfs and debugfs interfaces late + - drm/amd/powerplay: display gpu load when print performance for tonga. + - drm/powerplay: add debugging output to tonga_processpptables.c + - drm/powerplay: add debugging output to processpptables.c + - drm/powerplay/hwmgr: log errors in tonga_hwmgr_backend_init + - drm/amd/powerplay: Don't return an error if fan table is missing + - amd\powerplay Implement get dal power level + - amd/powerplay: Fix get dal power level + - amd/powerplay: Add structures required to report configuration change + - drm/amdgpu/powerplay: Program a calculated value as Deep Sleep clock. + - drm/amd/powerplay: add point check to avoid NULL point hang. + - drm/amd/powerplay: check whether need to enable thermal control. (v2) + - drm/amd/powerplay: show gpu load when print gpu performance for Cz. (v2) + - drm: powerplay: use div64_s64 instead of do_div + - drm/amd/powerplay: fix a reversed condition + - drm/amdgpu/cgs: cleanup some indenting + - drm/amd/powerplay: precedence bug in init_non_clock_fields() + - drm/amdgpu: fix NULL in vm_grab_id while S3 back + - drm/amd/powerplay: fix bug that NULL checks are reversed. + - drm/amd/powerplay: fix Smatch static checker warnings with indenting (v2) + - drm/amd/powerplay: fix Smatch static checker warnings + - drm/amd/powerplay: add powerplay valid check to avoid null point. (v2) + - drm/amd/powerplay: Reload and initialize the smc firmware on powerplay resume. + - drm/amdgpu: Show gpu load when display gpu performance for Ci. + - drm/amdgpu: Show gpu load when display gpu performance for Fiji of VI. + - drm/amdgpu: fix hex/decimal bug when show gpu load. + - drm/amd/powerplay: add thermal control task when resume. + - drm/amd/powerplay: enable set boot state task + - drm/amd/powerplay: enable power down asic task. (v2) + - drm/amd/powerplay: implement power down asic task for CZ + - drm/amdgpu: add warning to amdgpu_bo_gpu_offset() v2 + - drm/amdgpu/cgs: add an interface to access PCI resources + - drm/amdgpu: add irq domain support + - drm/amdgpu/powerplay: include asm/div64.h for do_div() + - drm/sysfs: use kobj_to_dev() + - drm/amd/powerplay: fix static checker warning for return meaningless value. + - drm/amdgpu/cz: add code to enable forcing UVD clocks + - drm/amdgpu/cz: add code to enable forcing VCE clocks + - drm/amdgpu/cz: force uvd clocks when sclks are forced + - drm/amdgpu/cz: force vce clocks when sclks are forced + - drm/amdgpu: use kobj_to_dev() + - drm/radeon: use kobj_to_dev() + - drm/ttm: fix adding foreign BOs to the LRU during init v2 + - drm/ttm: fix adding foreign BOs to the swap LRU + - drm/ttm: add ttm_bo_move_to_lru_tail function v2 + - drm/amdgpu: move VM page tables to the LRU end on CS v2 + - drm/amdgpu: validate duplicates first + - drm/amdgpu: add missing irq.h include + - drm/fb_cma_helper: Remove implicit call to disable_unused_functions + - drm/amdgpu: Add some tweaks to gfx 8 soft reset + - amdkfd: don't open-code memdup_user() + - amdkfd: Copy from the proper user command pointer + - drm/amdgpu: Use drm_calloc_large for VM page_tables array + - amd/powerplay: disable powerplay by default initially + - drm/amdgpu: Allow the driver to load if amdgpu.powerplay=1 on asics without powerplay support + - drm/atomic-helper: Export framebuffer_changed() + - drm/amd/amdgpu: Improve amdgpu_dpm* macros to avoid unexpected result (v2) + - drm/amdgpu: add a message to indicate when powerplay is enabled (v2) + - drm/amdgpu: fix next_rptr handling for debugfs + - drm/radeon: Ensure radeon bo is unreserved in radeon_gem_va_ioctl + - drm/radeon: only init fbdev if we have connectors + - drm/amdgpu: don't init fbdev if we don't have any connectors + - drm/amd/powerplay: Update SMU firmware loading for Stoney + - drm/amdgpu: fix non-ANSI declaration of amdgpu_amdkfd_gfx_*_get_functions() + - drm/amdkfd: Remove unnecessary cast in kfree + - drm/amdgpu: only move pt bos in LRU list on success + - drm/amdgpu: mask out WC from BO on unsupported arches + - drm/amdgpu/gfx8: enable cp inst/reg error interrupts + - drm/amdgpu/gfx7: enable cp inst/reg error interrupts + - drm/amdgpu: load MEC ucode manually on iceland + - drm/amdgpu: disable uvd and vce clockgating on Fiji + - drm/amdgpu: add pcie cap module parameters (v2) + - drm/amdgpu/cik: don't mess with aspm if gpu is root bus + - drm/amdgpu/dpm/ci: switch over to the common pcie caps interface + - drm/amdgpu: handle uvd pg flags properly + - drm/amdgpu: handle vce pg flags properly + - drm/amdgpu: clean up vce pg flags for cz/st + - drm/amdgpu: be consistent with uvd cg flags + - drm/amd/powerplay/cz: disable uvd pg + - drm/amd/powerplay/cz: disable vce pg + - drm/amd/powerplay/tonga: disable uvd pg + - drm/amd/powerplay/tonga: disable vce pg + - drm/amdgpu: add a cgs interface to fetch cg and pg flags + - drm/amdgpu: remove unused cg defines + - drma/dmgpu: move cg and pg flags into shared headers + - drm/amdgpu/tonga: plumb pg flags through to powerplay + - drm/amdgpu/cz: plumb pg flags through to powerplay + - SAUCE: drm/amdgpu/cz: enable/disable vce dpm even if vce pg is disabled + + * mlx4_core Set UAR page size to 4KB regardless of system page size (LP: + #1552632) + - net/mlx4_core: Set UAR page size to 4KB regardless of system page size + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_CAVIUM_ERRATUM_27456=y + + * Miscellaneous upstream changes + - net: thunderx: Fix for Qset error due to CQ full + - ahci: Workaround for ThunderX Errata#22536 + - arm64: Add workaround for Cavium erratum 27456 + - tipc: fix nullptr crash during subscription cancel + + -- Tim Gardner Mon, 07 Mar 2016 05:04:22 -0700 + +linux (4.4.0-11.26) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1553391 + + * Xenial update to v4.4.4 stable release (LP: #1553179) + - af_iucv: Validate socket address length in iucv_sock_bind() + - gro: Make GRO aware of lightweight tunnels. + - net: dp83640: Fix tx timestamp overflow handling. + - tunnels: Allow IPv6 UDP checksums to be correctly controlled. + - lwt: fix rx checksum setting for lwt devices tunneling over ipv6 + - tcp: fix NULL deref in tcp_v4_send_ack() + - af_unix: fix struct pid memory leak + - pptp: fix illegal memory access caused by multiple bind()s + - sctp: allow setting SCTP_SACK_IMMEDIATELY by the application + - net: dsa: fix mv88e6xxx switches + - tipc: fix connection abort during subscription cancel + - inet: frag: Always orphan skbs inside ip_defrag() + - switchdev: Require RTNL mutex to be held when sending FDB notifications + - tcp: beware of alignments in tcp_get_info() + - ipv6: enforce flowi6_oif usage in ip6_dst_lookup_tail() + - ipv6/udp: use sticky pktinfo egress ifindex on connect() + - ipv6: addrconf: Fix recursive spin lock call + - ipv6: fix a lockdep splat + - unix: correctly track in-flight fds in sending process user_struct + - tcp: do not drop syn_recv on all icmp reports + - net:Add sysctl_max_skb_frags + - tg3: Fix for tg3 transmit queue 0 timed out when too many gso_segs + - enic: increment devcmd2 result ring in case of timeout + - sctp: translate network order to host order when users get a hmacid + - net: Copy inner L3 and L4 headers as unaligned on GRE TEB + - flow_dissector: Fix unaligned access in __skb_flow_dissector when used by + eth_get_headlen + - bpf: fix branch offset adjustment on backjumps after patching ctx expansion + - bonding: Fix ARP monitor validation + - ipv4: fix memory leaks in ip_cmsg_send() callers + - af_unix: Don't set err in unix_stream_read_generic unless there was an error + - af_unix: Guard against other == sk in unix_dgram_sendmsg + - tipc: fix premature addition of node to lookup table + - tcp: md5: release request socket instead of listener + - qmi_wwan: add "4G LTE usb-modem U901" + - net/mlx4_en: Count HW buffer overrun only once + - net/mlx4_en: Avoid changing dev->features directly in run-time + - l2tp: Fix error creating L2TP tunnels + - pppoe: fix reference counting in PPPoE proxy + - net_sched fix: reclassification needs to consider ether protocol changes + - route: check and remove route cache when we get route + - tcp/dccp: fix another race at listener dismantle + - IFF_NO_QUEUE: Fix for drivers not calling ether_setup() + - rtnl: RTM_GETNETCONF: fix wrong return value + - tipc: unlock in error path + - unix_diag: fix incorrect sign extension in unix_lookup_by_ino + - sctp: Fix port hash table size computation + - ext4: fix bh->b_state corruption + - ARM: debug-ll: fix BCM63xx entry for multiplatform + - arm64: errata: Add -mpc-relative-literal-loads to build flags + - KVM: s390: fix guest fprs memory leak + - devm_memremap: Fix error value when memremap failed + - drm/gma500: Use correct unref in the gem bo create function + - ARM: 8457/1: psci-smp is built only for SMP + - lib/ucs2_string: Add ucs2 -> utf8 helper functions + - efi: Use ucs2_as_utf8 in efivarfs instead of open coding a bad version + - efi: Do variable name validation tests in utf8 + - efi: Make our variable validation list include the guid + - efi: Make efivarfs entries immutable by default + - efi: Add pstore variables to the deletion whitelist + - lib/ucs2_string: Correct ucs2 -> utf8 conversion + - bcache: fix a livelock when we cause a huge number of cache misses + - bcache: Add a cond_resched() call to gc + - bcache: clear BCACHE_DEV_UNLINK_DONE flag when attaching a backing device + - bcache: fix a leak in bch_cached_dev_run() + - bcache: unregister reboot notifier if bcache fails to unregister device + - bcache: allows use of register in udev to avoid "device_busy" error. + - bcache: Change refill_dirty() to always scan entire disk if necessary + - dm thin: fix race condition when destroying thin pool workqueue + - can: ems_usb: Fix possible tx overflow + - usb: dwc3: Fix assignment of EP transfer resources + - USB: cp210x: add IDs for GE B650V3 and B850V3 boards + - USB: option: add support for SIM7100E + - USB: option: add "4G LTE usb-modem U901" + - drivers: android: correct the size of struct binder_uintptr_t for + BC_DEAD_BINDER_DONE + - spi: omap2-mcspi: Prevent duplicate gpio_request + - iw_cxgb3: Fix incorrectly returning error on success + - drm/i915: shut up gen8+ SDE irq dmesg noise + - ocfs2: unlock inode if deleting inode from orphan fails + - mm: thp: fix SMP race condition between THP page fault and MADV_DONTNEED + - mm: numa: quickly fail allocations for NUMA balancing on full nodes + - genirq: Validate action before dereferencing it in handle_irq_event_percpu() + - clocksource/drivers/vt8500: Increase the minimum delta + - s390/kvm: remove dependency on struct save_area definition + - KVM: s390: fix memory overwrites when vx is disabled + - Btrfs: add missing brelse when superblock checksum fails + - Btrfs: igrab inode in writepage + - btrfs: statfs: report zero available if metadata are exhausted + - Btrfs: send, don't BUG_ON() when an empty symlink is found + - Btrfs: fix number of transaction units required to create symlink + - Btrfs: fix transaction handle leak on failure to create hard link + - Btrfs: Initialize btrfs_root->highest_objectid when loading tree root and + subvolume roots + - btrfs: initialize the seq counter in struct btrfs_device + - s390: fix normalization bug in exception table sorting + - s390/dasd: prevent incorrect length error under z/VM after PAV changes + - s390/dasd: fix refcount for PAV reassignment + - s390/dasd: fix performance drop + - uml: flush stdout before forking + - uml: fix hostfs mknod() + - um: link with -lpthread + - locks: fix unlock when fcntl_setlk races with a close + - rtlwifi: rtl_pci: Fix kernel panic + - rtlwifi: rtl8192cu: Add missing parameter setup + - rtlwifi: rtl8192ce: Fix handling of module parameters + - rtlwifi: rtl8192de: Fix incorrect module parameter descriptions + - rtlwifi: rtl8723ae: Fix initialization of module parameters + - rtlwifi: rtl8192se: Fix module parameter initialization + - rtlwifi: rtl8188ee: Fix module parameter initialization + - rtlwifi: rtl8723be: Fix module parameter initialization + - mei: fix fasync return value on error + - mei: validate request value in client notify request ioctl + - namei: ->d_inode of a pinned dentry is stable only for positives + - rc: sunxi-cir: Initialize the spinlock properly + - media: dvb-core: Don't force CAN_INVERSION_AUTO in oneshot mode + - si2157: return -EINVAL if firmware blob is too big + - gspca: ov534/topro: prevent a division by 0 + - vb2: fix a regression in poll() behavior for output,streams + - tda1004x: only update the frontend properties if locked + - dm space map metadata: remove unused variable in brb_pop() + - dm snapshot: fix hung bios when copy error occurs + - dm: fix dm_rq_target_io leak on faults with .request_fn DM w/ blk-mq paths + - coresight: checking for NULL string in coresight_name_match() + - irqchip/omap-intc: Add support for spurious irq handling + - irqchip/mxs: Add missing set_handle_irq() + - irqchip/atmel-aic: Fix wrong bit operation for IRQ priority + - irqchip/gic-v3-its: Fix double ICC_EOIR write for LPI in EOImode==1 + - posix-clock: Fix return code on the poll method's error path + - clockevents/tcb_clksrc: Prevent disabling an already disabled clock + - mmc: usdhi6rol0: handle NULL data in timeout + - mmc: sdhci-pci: Do not default to 33 Ohm driver strength for Intel SPT + - mmc: sdio: Fix invalid vdd in voltage switch power cycle + - mmc: mmc: Fix incorrect use of driver strength switching HS200 and HS400 + - mmc: sdhci: Fix sdhci_runtime_pm_bus_on/off() + - mmc: core: Enable tuning according to the actual timing + - mmc: mmci: fix an ages old detection error + - mmc: sdhci-acpi: Fix card detect race for Intel BXT/APL + - mmc: pxamci: fix again read-only gpio detection polarity + - mmc: sdhci-pci: Fix card detect race for Intel BXT/APL + - mmc: sdhci: Allow override of mmc host operations + - mmc: sdhci: Allow override of get_cd() called from sdhci_request() + - Bluetooth: Use continuous scanning when creating LE connections + - Bluetooth: Add support of Toshiba Broadcom based devices + - Bluetooth: Fix incorrect removing of IRKs + - Bluetooth: 6lowpan: Fix kernel NULL pointer dereferences + - Bluetooth: 6lowpan: Fix handling of uncompressed IPv6 packets + - time: Avoid signed overflow in timekeeping_get_ns() + - cputime: Prevent 32bit overflow in time[val|spec]_to_cputime() + - Revert "MIPS: Fix PAGE_MASK definition" + - MIPS: Loongson-3: Fix SMP_ASK_C0COUNT IPI handler + - MIPS: hpet: Choose a safe value for the ETIME check + - MIPS: Fix some missing CONFIG_CPU_MIPSR6 #ifdefs + - MIPS: Fix buffer overflow in syscall_get_arguments() + - EDAC: Robustify workqueues destruction + - EDAC, mc_sysfs: Fix freeing bus' name + - sparc64: fix incorrect sign extension in sys_sparc64_personality + - clk: exynos: use irqsave version of spin_lock to avoid deadlock with irqs + - regulator: axp20x: Fix GPIO LDO enable value for AXP22x + - regulator: mt6311: MT6311_REGULATOR needs to select REGMAP_I2C + - virtio_balloon: fix race by fill and leak + - virtio_balloon: fix race between migration and ballooning + - virtio_pci: fix use after free on release + - drm/vmwgfx: Fix an incorrect lock check + - drm/vmwgfx: Fix a width / pitch mismatch on framebuffer updates + - drm/vmwgfx: respect 'nomodeset' + - drm/amdgpu: Fix off-by-one errors in amdgpu_vm_bo_map + - drm/amdgpu: call hpd_irq_event on resume + - drm/amdgpu: fix lost sync_to if scheduler is enabled. + - drm/amdgpu: fix tonga smu resume + - drm/amdgpu: fix amdgpu_bo_pin_restricted VRAM placing v2 + - drm/amdgpu: no need to load MC firmware on fiji + - drm/amdgpu: move gmc7 support out of CIK dependency + - drm/amdgpu: iceland use CI based MC IP + - drm/amdgpu: The VI specific EXE bit should only apply to GMC v8.0 above + - drm/amdgpu: pull topaz gmc bits into gmc_v7 + - drm/amdgpu: drop topaz support from gmc8 module + - drm/amdgpu: don't load MEC2 on topaz + - drm/amdgpu: remove exp hardware support from iceland + - drm/amdgpu: fix s4 resume + - drm/amdgpu: remove unnecessary forward declaration + - drm/amdgpu: hold reference to fences in amdgpu_sa_bo_new (v2) + - drm/amdgpu: fix issue with overlapping userptrs + - drm/amdgpu: use post-decrement in error handling + - drm/amdgpu: Don't hang in amdgpu_flip_work_func on disabled crtc. + - drm/amdgpu/pm: adjust display configuration after powerstate + - drm/nouveau/kms: take mode_config mutex in connector hotplug path + - drm/nouveau/display: Enable vblank irqs after display engine is on again. + - drm/nouveau/disp/dp: ensure sink is powered up before attempting link + training + - drm/nouveau: platform: Fix deferred probe + - drm/dp/mst: process broadcast messages correctly + - drm/dp/mst: always send reply for UP request + - drm/dp/mst: fix in MSTB RAD initialization + - drm/dp/mst: fix in RAD element access + - drm: Add drm_fixp_from_fraction and drm_fixp2int_ceil + - drm/dp/mst: Calculate MST PBN with 31.32 fixed point + - drm/dp/mst: move GUID storage from mgr, port to only mst branch + - drm/dp/mst: Reverse order of MST enable and clearing VC payload table. + - drm/dp/mst: deallocate payload on port destruction + - drm/radeon: Fix off-by-one errors in radeon_vm_bo_set_addr + - drm/radeon: call hpd_irq_event on resume + - drm/radeon: Fix "slow" audio over DP on DCE8+ + - drm/radeon: clean up fujitsu quirks + - drm/radeon: properly byte swap vce firmware setup + - drm/radeon: cleaned up VCO output settings for DP audio + - drm/radeon: Add a common function for DFS handling + - drm/radeon: fix DP audio support for APU with DCE4.1 display engine + - drm: add helper to check for wc memory support + - drm/radeon: mask out WC from BO on unsupported arches + - drm/radeon: hold reference to fences in radeon_sa_bo_new + - drm: fix missing reference counting decrease + - drm/i915: Restore inhibiting the load of the default context + - drm/i915: intel_hpd_init(): Fix suspend/resume reprobing + - drm/i915: Init power domains early in driver load + - drm/i915: Make sure DC writes are coherent on flush. + - drm/i915/dp: fall back to 18 bpp when sink capability is unknown + - drm/i915: Don't reject primary plane windowing with color keying enabled on + SKL+ + - drm/i915/skl: Don't skip mst encoders in skl_ddi_pll_select() + - drm/i915/dsi: defend gpio table against out of bounds access + - drm/i915/dsi: don't pass arbitrary data to sideband + - drm/i915: fix error path in intel_setup_gmbus() + - drm/qxl: use kmalloc_array to alloc reloc_info in qxl_process_single_command + - drm/radeon: use post-decrement in error handling + - drm: No-Op redundant calls to drm_vblank_off() (v2) + - drm: Prevent vblank counter bumps > 1 with active vblank clients. (v2) + - drm: Fix drm_vblank_pre/post_modeset regression from Linux 4.4 + - drm: Fix treatment of drm_vblank_offdelay in drm_vblank_on() (v2) + - drm/radeon: Don't hang in radeon_flip_work_func on disabled crtc. (v2) + - drm/radeon/pm: adjust display configuration after powerstate + - make sure that freeing shmem fast symlinks is RCU-delayed + - toshiba_acpi: Fix blank screen at boot if transflective backlight is + supported + - ideapad-laptop: Add Lenovo ideapad Y700-17ISK to no_hw_rfkill dmi list + - ideapad-laptop: Add Lenovo Yoga 700 to no_hw_rfkill dmi list + - uapi: update install list after nvme.h rename + - lib: sw842: select crc32 + - ACPI / video: Add disable_backlight_sysfs_if quirk for the Toshiba Portege + R700 + - ACPI / video: Add disable_backlight_sysfs_if quirk for the Toshiba Satellite + R830 + - ACPI: Revert "ACPI / video: Add Dell Inspiron 5737 to the blacklist" + - ACPI / PCI / hotplug: unlock in error path in acpiphp_enable_slot() + - nfit: fix multi-interface dimm handling, acpi6.1 compatibility + - dmaengine: dw: fix cyclic transfer setup + - dmaengine: dw: fix cyclic transfer callbacks + - dmaengine: at_xdmac: fix resume for cyclic transfers + - dmaengine: dw: disable BLOCK IRQs for non-cyclic xfer + - IB/cm: Fix a recently introduced deadlock + - IB/qib: fix mcast detach when qp not attached + - IB/qib: Support creating qps with GFP_NOIO flag + - IB/mlx5: Expose correct maximum number of CQE capacity + - Thermal: initialize thermal zone device correctly + - Thermal: handle thermal zone device properly during system sleep + - Thermal: do thermal zone update after a cooling device registered + - hwmon: (dell-smm) Blacklist Dell Studio XPS 8000 + - hwmon: (gpio-fan) Remove un-necessary speed_index lookup for thermal hook + - hwmon: (ads1015) Handle negative conversion values correctly + - cpufreq: pxa2xx: fix pxa_cpufreq_change_voltage prototype + - cpufreq: Fix NULL reference crash while accessing policy->governor_data + - seccomp: always propagate NO_NEW_PRIVS on tsync + - libceph: fix ceph_msg_revoke() + - libceph: don't bail early from try_read() when skipping a message + - libceph: use the right footer size when skipping a message + - libceph: don't spam dmesg with stray reply warnings + - sd: Optimal I/O size is in bytes, not sectors + - Staging: speakup: Fix getting port information + - Revert "Staging: panel: usleep_range is preferred over udelay" + - cdc-acm:exclude Samsung phone 04e8:685d + - perf stat: Do not clean event's private stats + - tick/nohz: Set the correct expiry when switching to nohz/lowres mode + - rfkill: fix rfkill_fop_read wait_event usage + - mac80211: Requeue work after scan complete for all VIF types. + - workqueue: handle NUMA_NO_NODE for unbound pool_workqueue lookup + - Revert "workqueue: make sure delayed work run in local cpu" + - ALSA: hda - Apply clock gate workaround to Skylake, too + - ALSA: hda - Fixing background noise on Dell Inspiron 3162 + - target: Fix LUN_RESET active I/O handling for ACK_KREF + - target: Fix LUN_RESET active TMR descriptor handling + - target: Fix TAS handling for multi-session se_node_acls + - target: Fix remote-port TMR ABORT + se_cmd fabric stop + - target: Fix race with SCF_SEND_DELAYED_TAS handling + - spi: atmel: fix gpio chip-select in case of non-DT platform + - libata: fix sff host state machine locking while polling + - ARCv2: STAR 9000950267: Handle return from intr to Delay Slot #2 + - ARCv2: SMP: Emulate IPI to self using software triggered interrupt + - PCI/AER: Flush workqueue on device remove to avoid use-after-free + - cpuset: make mm migration asynchronous + - cgroup: make sure a parent css isn't offlined before its children + - writeback: keep superblock pinned during cgroup writeback association + switches + - phy: core: fix wrong err handle for phy_power_on + - i2c: i801: Adding Intel Lewisburg support for iTCO + - bio: return EINTR if copying to user space got interrupted + - block: fix use-after-free in dio_bio_complete + - nfs: fix nfs_size_to_loff_t + - NFSv4: Fix a dentry leak on alias use + - of/irq: Fix msi-map calculation for nonzero rid-base + - KVM: async_pf: do not warn on page allocation failures + - KVM: arm/arm64: vgic: Ensure bitmaps are long enough + - KVM: x86: fix missed hardware breakpoints + - KVM: x86: MMU: fix ubsan index-out-of-range warning + - powerpc/eeh: Fix partial hotplug criterion + - tracing: Fix showing function event in available_events + - sunrpc/cache: fix off-by-one in qword_get() + - kernel/resource.c: fix muxed resource handling in __request_region() + - do_last(): don't let a bogus return value from ->open() et.al. to confuse us + - ARM: OMAP2+: Fix onenand initialization to avoid filesystem corruption + - ARM: at91/dt: fix typo in sama5d2 pinmux descriptions + - xen/arm: correctly handle DMA mapping of compound pages + - xen/scsiback: correct frontend counting + - xen/pciback: Check PF instead of VF for PCI_COMMAND_MEMORY + - xen/pciback: Save the number of MSI-X entries to be copied later. + - xen/pcifront: Fix mysterious crashes when NUMA locality information was + extracted. + - should_follow_link(): validate ->d_seq after having decided to follow + - do_last(): ELOOP failure exit should be done after leaving RCU mode + - hpfs: don't truncate the file when delete fails + - x86/irq: Call chip->irq_set_affinity in proper context + - x86/irq: Fix a race in x86_vector_free_irqs() + - x86/irq: Validate that irq descriptor is still active + - x86/irq: Do not use apic_chip_data.old_domain as temporary buffer + - x86/irq: Reorganize the return path in assign_irq_vector + - x86/irq: Reorganize the search in assign_irq_vector + - x86/irq: Check vector allocation early + - x86/irq: Copy vectormask instead of an AND operation + - x86/irq: Get rid of code duplication + - x86/irq: Remove offline cpus from vector cleanup + - x86/irq: Clear move_in_progress before sending cleanup IPI + - x86/irq: Remove the cpumask allocation from send_cleanup_vector() + - x86/irq: Remove outgoing CPU from vector cleanup mask + - x86/irq: Call irq_force_move_complete with irq descriptor + - x86/irq: Plug vector cleanup race + - IB/cma: Fix RDMA port validation for iWarp + - iwlwifi: dvm: fix WoWLAN + - iwlwifi: pcie: properly configure the debug buffer size for 8000 + - iwlwifi: update and fix 7265 series PCI IDs + - iwlwifi: mvm: don't allow sched scans without matches to be started + - Revert "UBUNTU: SAUCE: bcache: prevent crash on changing writeback_running" + - bcache: prevent crash on changing writeback_running + - Linux 4.4.4 + + * mlx4_en didn't choose time-stamping shift value according to HW frequency + (LP: #1552627) + - net/mlx4_en: Choose time-stamping shift value according to HW frequency + + * [Ubuntu 16.04] Help to flush kernel panics to console (LP: #1552332) + - target/transport: add flag to indicate CPU Affinity is observed + - powerpc/powernv: Add a kmsg_dumper that flushes console output on panic + - powerpc/powernv: Fix OPAL_CONSOLE_FLUSH prototype and usages + + * [Ubuntu 16.04] Update qla2xxx driver for POWER (QLogic) (LP: #1541456) + - qla2xxx: Fix warning reported by static checker + - qla2xxx: Fix TMR ABORT interaction issue between qla2xxx and TCM + - qla2xxx: Fix stale pointer access. + - qla2xxx: Use ATIO type to send correct tmr response + - qla2xxx: use TARGET_SCF_USE_CPUID flag to indiate CPU Affinity + + * [s390x] zfcp.ko missing from scsi-modules udeb (LP: #1552314) + - [Config] Add s390x zfcp to scsi-modules udeb + + -- Tim Gardner Wed, 02 Mar 2016 08:08:16 -0700 + +linux (4.4.0-10.25) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1552247 + + * linux: 4.4.0-9.X fails yama ptrace restrictions tests (LP: #1551894) + - security: let security modules use PTRACE_MODE_* with bitmasks + + * [wily][regression] systemtap script compilation broken by new kernels (LP: #1545330) + - SAUCE: (noup) locking/qspinlock: Move __ARCH_SPIN_LOCK_UNLOCKED to qspinlock_types.h + + * [Feature]SD/SDIO/eMMC support for Broxton-P (LP: #1520454) + - mmc: sdhci: 64-bit DMA actually has 4-byte alignment + - mmc: sdhci: Fix DMA descriptor with zero data length + + * Miscellaneous Ubuntu changes + - SAUCE: (noup) cgroup: fix and restructure error handling in copy_cgroup_ns() + + -- Tim Gardner Mon, 29 Feb 2016 13:04:14 -0700 + +linux (4.4.0-9.24) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1551319 + + * AppArmor logs denial for when the device path is ENOENT (LP: #1482943) + - SAUCE: apparmor: fix log of apparmor audit message when kern_path() fails + + * BUG: unable to handle kernel NULL pointer dereference (aa_label_merge) (LP: + #1448912) + - SAUCE: apparmor: Fix: insert race between label_update and label_merge + - SAUCE: apparmor: Fix: ensure aa_get_newest will trip debugging if the + replacedby is not setup + - SAUCE: apparmor: Fix: label merge handling of marking unconfined and stale + - SAUCE: apparmor: Fix: refcount race between locating in labelset and get + - SAUCE: apparmor: Fix: ensure new labels resulting from merge have a + replacedby + - SAUCE: apparmor: Fix: label_vec_merge insertion + - SAUCE: apparmor: Fix: deadlock in aa_put_label() call chain + - SAUCE: apparmor: Fix: add required locking of __aa_update_replacedby on + merge path + - SAUCE: apparmor: Fix: convert replacedby update to be protected by the + labelset lock + - SAUCE: apparmor: Fix: update replacedby allocation to take a gfp parameter + + * apparmor kernel BUG kills firefox (LP: #1430546) + - SAUCE: apparmor: Disallow update of cred when then subjective != the + objective cred + - SAUCE: apparmor: rework retrieval of the current label in the profile update + case + + * sleep from invalid context in aa_move_mount (LP: #1539349) + - SAUCE: apparmor: fix sleep from invalid context + + * s390x: correct restore of high gprs on signal return (LP: #1550468) + - s390/compat: correct restore of high gprs on signal return + + * missing SMAP support (LP: #1550517) + - x86/entry/compat: Add missing CLAC to entry_INT80_32 + + * Floating-point exception handler receives empty Data-Exception Code in + Floating Point Control register (LP: #1548414) + - s390/fpu: signals vs. floating point control register + + * kvm fails to boot GNU Hurd kernels with 4.4 Xenial kernel (LP: #1550596) + - KVM: x86: fix conversion of addresses to linear in 32-bit protected mode + + * Surelock GA2 SP1: capiredp01: cxl_init_adapter fails for CAPI devices + 0000:01:00.0 and 0005:01:00.0 after upgrading to 840.10 Platform firmware + build fips840/b1208b_1604.840 (LP: #1532914) + - cxl: Fix PSL timebase synchronization detection + + * [Feature]EDAC support for Knights Landing (LP: #1519631) + - EDAC, sb_edac: Set fixed DIMM width on Xeon Knights Landing + + * Various failures of kernel_security suite on Xenial kernel on s390x arch + (LP: #1531327) + - [config] s390x -- CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 + + * Unable to install VirtualBox Guest Service in 15.04 (LP: #1434579) + - [Config] Provides: virtualbox-guest-modules when appropriate + + * linux is missing provides for virtualbox-guest-modules [i386 amd64 x32] (LP: + #1507588) + - [Config] Provides: virtualbox-guest-modules when appropriate + + * Backport more recent driver for SKL, KBL and BXT graphics (LP: #1540390) + - SAUCE: i915_bpo: Provide a backport driver for SKL, KBL & BXT graphics + - SAUCE: i915_bpo: Update intel_ips.h file location + - SAUCE: i915_bpo: Rename the backport driver to i915_bpo + - SAUCE: i915_bpo: Add i915_bpo_*() calls for ubuntu/i915 + - drm/i915: remove an extra level of indirection in PCI ID list + - drm/i915/kbl: Add Kabylake PCI ID + - drm/i915/kbl: Add Kabylake GT4 PCI ID + - mm: Export nr_swap_pages + - async: export current_is_async() + - drm: fix potential dangling else problems in for_each_ macros + - dp/mst: add SDP stream support + - drm: Implement drm_modeset_lock_all_ctx() + - drm: Add "prefix" parameter to drm_rect_debug_print() + - drm/i915: Set connector_state->connector using the helper. + - drm/atomic: add connector mask to drm_crtc_state. + - drm/i915: Report context GTT size + - drm/i915: Add get_eld audio component + - SAUCE: Backport I915_PARAM_HAS_EXEC_SOFTPIN and EXEC_OBJECT_PINNED + - SAUCE: i915_bpo: Revert passing plane/encoder name + - SAUCE: sound/hda: Load i915_bpo from the hda driver on SKL/KBL/BXT + - SAUCE: i915_bpo: Support only SKL, KBL and BXT with the backport driver + - drm/i915/bxt: update list of PCIIDs + - drm/i915/skl: Add missing SKL ids + - SAUCE: i915_bpo: Revert "drm/i915: Defer probe if gmux is present but its + driver isn't" + - SAUCE: uapi/drm/i915: Backport I915_EXEC_BSD_MASK + - drm/atomic: Do not unset crtc when an encoder is stolen + - drm/i915: Update connector_mask during readout, v2. + - drm/atomic: Add encoder_mask to crtc_state, v3. + - SAUCE: drm/core: Add drm_encoder_index. + - SAUCE: i915_bpo: Revert "drm/i915: Switch DDC when reading the EDID" + - i915_bpo: [Config] Enable CONFIG_DRM_I915_BPO=m + + * arm64: guest hangs when ntpd is running (LP: #1549494) + - hrtimer: Add support for CLOCK_MONOTONIC_RAW + - hrtimer: Catch illegal clockids + - KVM: arm/arm64: timer: Switch to CLOCK_MONOTONIC_RAW + + * Miscellaneous Ubuntu changes + - [Debian] git-ubuntu-log -- wrap long bug and commit titles + - [Config] CONFIG_ARM_SMMU=y on arm64 + - rebase to v4.4.3 + - [Debian] git-ubuntu-log -- ensure we get the last commit + - [Config] fix up spelling of probably again + - [Debian] perf -- build in the context of the full generated local headers + - SAUCE: tools: lib/bpf -- add generated headers to search path + - SAUCE: proc: Always set super block owner to init_user_ns + - SAUCE: fix-up: kern_mount fail path should not be doing put_buffers() + - SAUCE: apparmor: Fix: oops do to invalid null ptr deref in label print fns + - SAUCE: apparmor: debug: POISON label and replaceby pointer on free + - SAUCE: apparmor: add underscores to indicate aa_label_next_not_in_set() use + needs locking + - SAUCE: apparmor: Fix: refcount leak in aa_label_merge + - SAUCE: apparmor: ensure that repacedby sharing is done correctly + - SAUCE: apparmor Fix: refcount bug in pivotroot mediation + - SAUCE: apparmor: Fix: now that insert can force replacement use it instead + of remove_and_insert + - SAUCE: apparmor: Fix: refcount bug when inserting label update that + transitions ns + - SAUCE: apparmor: Fix: break circular refcount for label that is directly + freed. + - SAUCE: apparmor: Don't remove label on rcu callback if the label has already + been removed + - SAUCE: apparmor: Fix: query label file permission + - SAUCE: apparmor: fix: ref count leak when profile sha1 hash is read + - SAUCE: fixup: cleanup return handling of labels + - SAUCE: fix: replacedby forwarding is not being properly update when ns is + destroyed + - SAUCE: fixup: make __share_replacedby private to get rid of build warning + - SAUCE: fixup: 20/23 locking issue around in __label_update + - SAUCE: fixup: get rid of unused var build warning + - SAUCE: fixup: cast poison values to remove warnings + - SAUCE: apparmor: fix refcount race when finding a child profile + - SAUCE: fixup: warning about aa_label_vec_find_or_create not being static + - SAUCE: fix: audit "no_new_privs" case for exec failure + - SAUCE: Fixup: __label_update() still doesn't handle some cases correctly. + - SAUCE: Move replacedby allocation into label_alloc + - [Debian] supply zfs dkms Provides: based on do_zfs + - [Config] supply zfs dkms Provides: based on do_zfs + - [Config] drop linux-image-3.0 provides + + * Miscellaneous upstream changes + - x86/mpx: Fix off-by-one comparison with nr_registers + + [ Upstream Kernel Changes ] + + * rebase to v4.4.3 + + -- Tim Gardner Thu, 25 Feb 2016 19:47:55 -0700 + +linux (4.4.0-8.23) xenial; urgency=low + + * cgroup namespace mounts broken in containers (LP: #1549398) + - SAUCE: kernfs: Always set super block owner to init_user_ns + + * 4.4.0-7.22 no longer boots on arm64 (LP: #1547718) + - arm64: mm: avoid calling apply_to_page_range on empty range + - UBUNTU SAUCE: arm: mm: avoid calling apply_to_page_range on empty range + + * kernel install failed /bin/cp: cannot stat ‘/boot/initrd.img-4.3.0-7-generic’: No such file or directory (LP: #1536810) + - [Config] postinst -- handle recreating symlinks when a real file is present + + * insecure overlayfs xattrs handling in copy_up (LP: #1534961) + - SAUCE: cred: Add clone_cred() interface + - SAUCE: overlayfs: Use mounter's credentials instead of selectively raising caps + - SAUCE: overlayfs: Skip permission checking for trusted.overlayfs.* xattrs + - SAUCE: overlayfs: Be more careful about copying up sxid files + - SAUCE: overlayfs: Propogate nosuid from lower and upper mounts + + * overlayfs over fuse should refuse copy_up of files if uid/gid not mapped (LP: #1535150) + - SAUCE: cred: Add clone_cred() interface + - SAUCE: overlayfs: Use mounter's credentials instead of selectively raising caps + - SAUCE: overlayfs: Skip permission checking for trusted.overlayfs.* xattrs + - SAUCE: overlayfs: Be more careful about copying up sxid files + - SAUCE: overlayfs: Propogate nosuid from lower and upper mounts + + * overlay: mkdir fails if directory exists in lowerdir in a user namespace (LP: #1531747) + - SAUCE: cred: Add clone_cred() interface + - SAUCE: overlayfs: Use mounter's credentials instead of selectively raising caps + - SAUCE: overlayfs: Skip permission checking for trusted.overlayfs.* xattrs + + * Update Intel ethernet drivers to Fortville SW5 (LP: #1547674) + - net: bulk free infrastructure for NAPI context, use napi_consume_skb + - net: Add eth_platform_get_mac_address() helper. + - i40e: Add mac_filter_element at the end of the list instead of HEAD + - i40e/i40evf: Fix RSS rx-flow-hash configuration through ethtool + - i40e: Replace X722 mac check in ethtool get_settings + - i40evf: allow channel bonding of VFs + - i40e: define function capabilities in only one place + - i40evf: null out ring pointers on free + - i40e: Cleanup the code with respect to restarting autoneg + - i40e: update features with right offload + - i40e: bump version to 1.4.10 + - i40e: add new device IDs for X722 + - i40e: Extend ethtool RSS hooks for X722 + - i40e/i40evf: Fix for UDP/TCP RSS for X722 + - i40evf: add new write-back mode + - i40e/i40evf: Use private workqueue + - i40e: add new proxy-wol bit for X722 + - i40e: Limit DCB FW version checks to X710/XL710 devices + - i40e: AQ Add Run PHY Activity struct + - i40e: AQ Geneve cloud tunnel type + - i40e: AQ Add external power class to get link status + - i40e: add 100Mb ethtool reporting + - ixgbe: bulk free SKBs during TX completion cleanup cycle + - igb: Remove unnecessary flag setting in igb_set_flag_queue_pairs() + - igb: Unpair the queues when changing the number of queues + - igb/igbvf: don't give up + - igb: clean up code for setting MAC address + - igb: Refactor VFTA configuration + - igb: Allow asymmetric configuration of MTU versus Rx frame size + - igb: Do not factor VLANs into RLPML calculation + - igb: Always enable VLAN 0 even if 8021q is not loaded + - igb: Merge VLVF configuration into igb_vfta_set + - igb: Clean-up configuration of VF port VLANs + - igb: Add support for VLAN promiscuous with SR-IOV and NTUPLE + - igb: Drop unnecessary checks in transmit path + - igb: Enable use of "bridge fdb add" to set unicast table entries + - igb: Add workaround for VLAN tag stripping on 82576 + - i40e: AQ Shared resource flags + - i40e: AQ Add set_switch_config + - i40e: AQ Add VXLAN-GPE tunnel type + - i40e: AQ thermal sensor control struct + - i40e: Bump AQ minor version to 1.5 for new FW features + - i40e: Store lan_vsi_idx and lan_vsi_id in the right size + - i40e: fix write-back-on-itr to work with legacy itr + - i40e: add counter for arq overflows + - i40e: add 20G speed for Tx bandwidth calculations + - i40e: refactor DCB function + - i40e: add a little more to an NVM update debug message + - i40evf: enable bus master after reset + - i40e: add netdev info to VSI dump + - i40e: remove VF device IDs from PF + - i40e: trivial: remove unnecessary local var + - i40e/i40evf: Bump i40e to 1.4.11 and i40evf to 1.4.7 + - net: ixgbe: add minimal parser details for ixgbe + - i40e: trivial: drop duplicate definition + - i40e: trivial: fix missing space + - i40e: fix bug in dma sync + - i40e: do TSO only if CHECKSUM_PARTIAL is set + - i40e: allocate memory safer + - i40e: fix: do not sleep in netdev_ops + - i40e: APIs to Add/remove port mirroring rules + - i40e: negate PHY int mask bits + - i40e: drop unused function + - i40e: count allocation errors + - i40e: avoid large memcpy by assigning struct + - i40e/i40evf: bump version to 1.4.12/1.4.8 + - i40e: Enable Geneve offload for FW API ver > 1.4 for XL710/X710 devices + - i40e: add priv flag for automatic rule eviction + - i40e: use eth_platform_get_mac_address() + - i40e: move sync_vsi_filters up in service_task + - i40e: Make the DCB firmware checks for X710/XL710 only + - i40e: set shared bit for multicast filters + - i40e: add VEB stat control and remove L2 cloud filter + - i40e: use new add_veb calling with VEB stats control + - i40e: Refactor force_wb and WB_ON_ITR functionality code + - i40evf: Change vf driver string to reflect all products i40evf supports + - i40e/i40evf: don't lose interrupts + - i40e/i40evf: try again after failure + - i40e: dump descriptor indexes in hex + - i40e/i40evf: use __GFP_NOWARN + - i40e/i40evf: use pages correctly in Rx + - i40e/i40evf: use logical operators, not bitwise + - i40e: properly show packet split status in debugfs + - i40e/i40evf: Bump version + - ixgbe: use u32 instead of __u32 in model header + - ixgbe: fix dates on header of ixgbe_model.h + - i40e: get rid of magic number + - i40e: drop unused debugfs file "dump" + - i40evf: support packet split receive + - i40e: trivial: cleanup use of pf->hw + - i40e: Add a SW workaround for lost interrupts + - i40e: Fix PROMISC mode for Multi-function per port (MFP) devices + - i40e: Removal of code which relies on BASE VEB SEID + - i40e/i40evf: avoid atomics + - i40e: Do not disable queues in the Legacy/MSI Interrupt handler + - i40e: expand comment + - i40e: better error reporting for nvmupdate + - i40evf: set adapter state on reset failure + - i40e: clean event descriptor before use + - i40e: When in promisc mode apply promisc mode to Tx Traffic as well + - i40e/i40evf: Bump i40e to 1.4.15 and i40evf to 1.4.11. + - i40e/i40evf: Drop outer checksum offload that was not requested + - i40e/i40evf: Use u64 values instead of casting them in TSO function + - i40e/i40evf: Factor out L4 header and checksum from L3 bits in TSO path + - i40e/i40evf: Consolidate all header changes into TSO function + - i40e/i40evf: Replace header pointers with unions of pointers in Tx checksum path + - i40e/i40evf: Add support for IPv4 encapsulated in IPv6 + - i40e/i40evf: Handle IPv6 extension headers in checksum offload + - i40e/i40evf: Do not write to descriptor unless we complete + - i40e/i40evf: Add exception handling for Tx checksum + - i40e/i40evf: Clean-up Rx packet checksum handling + - i40e/i40evf: Enable support for SKB_GSO_UDP_TUNNEL_CSUM + - i40e: Fix ATR in relation to tunnels + - i40e: Do not drop support for IPv6 VXLAN or GENEVE tunnels + - i40e: Update feature flags to reflect newly enabled features + - i40evf: Update feature flags to reflect newly enabled features + - i40e: Add support for ATR w/ IPv6 extension headers + - i40e/i40evf: Break up xmit_descriptor_count from maybe_stop_tx + - i40e/i40evf: Rewrite logic for 8 descriptor per packet check + - i40e/i40evf: Move Tx checksum closer to TSO + - i40e: Add functions to blink led on 10GBaseT PHY + - i40e: Fix led blink capability for 10GBaseT PHY + - i40e: Increase timeout when checking GLGEN_RSTAT_DEVSTATE bit + - i40e: Do not wait for Rx queue disable in DCB reconfig + - i40e: Fix for unexpected messaging + - i40e: Expose some registers to program parser, FD and RSS logic + - i40e: add check for null VSI + - i40e: add adminq commands for Rx CTL registers + - i40e: implement and use Rx CTL helper functions + - i40e: Use the new rx ctl register helpers. Don't use AQ calls from clear_hw. + - i40e: suspend scheduling during driver unload + - i40e: let go of the past + - i40e/i40evf: Bump i40e to 1.4.25 and i40evf to 1.4.15 + + * MPT3SAS Driver update for next kernel release (LP: #1512221) + - mpt3sas: A correction in unmap_resources + - mpt3sas: Added support for high port count HBA variants. + - mpt3sas: Used IEEE SGL instead of MPI SGL while framing a SMP Passthrough request message. + - mpt3sas: Fix static analyzer(coverity) tool identified defects + - mpt3sas: Never block the Enclosure device + - mpt3sas: Make use of additional HighPriority credit message frames for sending SCSI IO's + - mpt3sas: Added smp_affinity_enable module parameter. + - mpt3sas: Add support for configurable Chain Frame Size + - mpt3sas: Updated MPI Header to 2.00.42 + - mpt3sas: Fix for Asynchronous completion of timedout IO and task abort of timedout IO. + - mpt3sas: Updating mpt3sas driver version to 12.100.00.00 + - mpt3sas: Remove cpumask_clear for zalloc_cpumask_var and don't free free_cpu_mask_var before reply_q + + * /sys/class/scsi_host/hostN/partition_number and .../mad_version showing up BE on LE Ubuntu. (ibmvscsi) (LP: #1547153) + - ibmvscsi: Add endian conversions to sysfs attribute show functions + + * Miscellaneous Ubuntu changes + - [Packaging] git-ubuntu-log -- output should be utf-8 + - [Packaging] git-ubuntu-log -- handle invalid or private bugs + + -- Andy Whitcroft Wed, 24 Feb 2016 20:34:49 +0000 + +linux (4.4.0-7.22) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1547205 + + * need arm64 acpi parking protocol support in xenial (LP: #1547047) + - [Config] Enabled ARM64_ACPI_PARKING_PROTOCOL + - arm64: kernel: implement ACPI parking protocol + + * Please pull cgroup namespaces (LP: #1546775) + - SAUCE: (noup) kernfs: Add API to generate relative kernfs path + - SAUCE: (noup) sched: new clone flag CLONE_NEWCGROUP for cgroup namespace + - SAUCE: (noup) cgroup: introduce cgroup namespaces + - SAUCE: (noup) cgroup: cgroup namespace setns support + - SAUCE: (noup) kernfs: define kernfs_node_dentry + - SAUCE: (noup) cgroup: mount cgroupns-root when inside non-init cgroupns + - SAUCE: (noup) Add FS_USERNS_FLAG to cgroup fs + - SAUCE: (noup) cgroup: Add documentation for cgroup namespaces + + * [Feature]Pulse-Width Modulation enabling on Broxton-P (LP: #1520436) + - [Config] CONFIG_PWM_OMAP_DMTIMER=m + - pwm: lpss: Remove ->free() callback + - pwm: bcm2835: Calculate scaler in ->config() + - pwm: bcm2835: Prevent division by zero + - pwm: bcm2835: Fix email address specification + - pwm: lpss: Update PWM setting for Broxton + - pwm: lpss: Select core part automatically + - pwm: lpss: Rework the sequence of programming PWM_SW_UPDATE + - pwm: fsl-ftm: Fix clock enable/disable when using PM + - pwm: lpc32xx: correct number of PWM channels from 2 to 1 + - pwm: lpc32xx: make device usable with common clock framework + - pwm: lpc32xx: fix and simplify duty cycle and period calculations + - pwm: lpc32xx: return ERANGE, if requested period is not supported + - pwm: rcar: Improve accuracy of frequency division setting + - pwm: Add PWM driver for OMAP using dual-mode timers + - pwm: add HAS_IOMEM dependency to PWM_FSL_FTM + - pwm: omap-dmtimer: Potential NULL dereference on error + - pwm: Mark all devices as "might sleep" + + * [Hyper-V] Netmask value is not parsed by hv_set_ifconfig - IP injection (LP: #1540586) + - [Debian] hv: hv_set_ifconfig -- switch to approved indentation + - [Debian] hv: hv_set_ifconfig -- fix numerous parameter handling issues + + * Update megaraid driver to MR6.10 (LP: #1544679) + - megaraid_sas: Do not allow PCI access during OCR + - megaraid_sas: MFI IO timeout handling + - megaraid_sas: Syncing request flags macro names with firmware + - megaraid_sas: Task management support + - megaraid_sas: Update device queue depth based on interface type + - megaraid_sas: Fastpath region lock bypass + - megaraid_sas: Reply Descriptor Post Queue (RDPQ) support + - megaraid_sas: Code optimization build_and_issue_cmd return-type + - megaraid_sas: Dual queue depth support + - megaraid_sas: IO throttling support + - megaraid_sas: Make adprecovery variable atomic + - megaraid_sas: MFI adapter OCR changes + - megaraid_sas: Introduce module parameter for SCSI command timeout + - megaraid_sas: SPERC OCR changes + - megaraid_sas: driver version upgrade + - megaraid: fix null pointer check in megasas_detach_one(). + - megaraid_sas: Fix for IO failing post OCR in SRIOV environment + - megaraid_sas: Fix SMAP issue + - megaraid_sas: Add an i/o barrier + + * Surelock-GA2:kernel panic @ cxl_configure_adapter+0x418/0x8b0 (LP: #1546145) + - powerpc/powernv: Fix stale PE primary bus + + * In A Single Power VM LPAR : Network Configuration Fails in Ubuntu16.04 while installation (LP: #1544321) + - [Config] Update bnx2x d-i firmware to 7.12.30 + + * Miscellaneous Ubuntu changes + - rebase to v4.4.2 + + * Miscellaneous upstream changes + - openvswitch: allow management from inside user namespaces + - net: thunderx: nicvf_queues: nivc_*_intr: remove duplication + - net, thunderx: Remove unnecessary rcv buffer start address management + - net: thunderx: HW TSO support for pass-2 hardware + - net: thunderx: Enable CQE count threshold interrupt + - net: cavium: liquidio: use helpers ns_to_timespec64() + - irqchip/gic-v3: Make sure read from ICC_IAR1_EL1 is visible on redestributor + - arm64: KVM: Configure TCR_EL2.PS at runtime + - arm64: prefetch: don't provide spin_lock_prefetch with LSE + - arm64: prefetch: add alternative pattern for CPUs without a prefetcher + - arm64: lib: improve copy_page to deal with 128 bytes at a time + - arm64: lib: patch in prfm for copy_page if requested + - arm64: prefetch: add missing #include for spin_lock_prefetch + - net, thunderx: Add TX timeout and RX buffer alloc failure stats. + - net: thunderx: Use napi_schedule_irqoff() + - net: thunderx: Assign affinity hints to vf's interrupts + - net: thunderx: bgx: Use standard firmware node infrastructure. + - net: thunderx: bgx: Add log message when setting mac address + - net: thunderx: Alloc higher order pages when pagesize is small + - net: cavium: liquidio: Return correct error code + - net: cavium: liquidio: fix check for in progress flag + - livepatch: add old_sympos as disambiguator field to klp_func + - livepatch: add sympos as disambiguator field to klp_reloc + - livepatch: function,sympos scheme in livepatch sysfs directory + - module: Use the same logic for setting and unsetting RO/NX + - gcov: use within_module() helper. + - module: use a structure to encapsulate layout. + - module: clean up RO/NX handling. + - module: keep percpu symbols in module's symtab + - livepatch: Cleanup module page permission changes + + [ Upstream Kernel Changes ] + + * rebase to v4.4.2 + + -- Tim Gardner Tue, 16 Feb 2016 14:24:45 -0700 + +linux (4.4.0-6.21) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1546283 + + * Naples/Zen, NTB Driver (LP: #1542071) + - [Config] CONFIG_NTB_AMD=m + - NTB: Add support for AMD PCI-Express Non-Transparent Bridge + + * [Hyper-V] kernel panic occurs when installing Ubuntu Server x32 (LP: #1495983) + - SAUCE: storvsc: use small sg_tablesize on x86 + + * Enable arm64 emulation of removed ARMv7 instructions (LP: #1545542) + - [Config] CONFIG_ARMV8_DEPRECATED=y + + * Surelock-GA2:kernel panic/ exception @ pcibios_set_pcie_reset_state+0x118/0x280 + cxl_reset+0x5c/0xc0 (LP: #1545037) + - powerpc/eeh: Fix stale cached primary bus + + * Miscellaneous Ubuntu changes + - SAUCE: fs: Add user namesapace member to struct super_block + - SAUCE: fs: Limit file caps to the user namespace of the super block + - SAUCE: Smack: Add support for unprivileged mounts from user namespaces + - SAUCE: block_dev: Support checking inode permissions in lookup_bdev() + - SAUCE: block_dev: Check permissions towards block device inode when mounting + - SAUCE: fs: Treat foreign mounts as nosuid + - SAUCE: selinux: Add support for unprivileged mounts from user namespaces + - SAUCE: userns: Replace in_userns with current_in_userns + - SAUCE: Smack: Handle labels consistently in untrusted mounts + - SAUCE: fs: Check for invalid i_uid in may_follow_link() + - SAUCE: cred: Reject inodes with invalid ids in set_create_file_as() + - SAUCE: fs: Refuse uid/gid changes which don't map into s_user_ns + - SAUCE: fs: Update posix_acl support to handle user namespace mounts + - SAUCE: fs: Ensure the mounter of a filesystem is privileged towards its inodes + - SAUCE: fs: Don't remove suid for CAP_FSETID in s_user_ns + - SAUCE: fs: Allow superblock owner to access do_remount_sb() + - SAUCE: capabilities: Allow privileged user in s_user_ns to set security.* xattrs + - SAUCE: fuse: Add support for pid namespaces + - SAUCE: fuse: Support fuse filesystems outside of init_user_ns + - SAUCE: fuse: Restrict allow_other to the superblock's namespace or a descendant + - SAUCE: fuse: Allow user namespace mounts + - SAUCE: mtd: Check permissions towards mtd block device inode when mounting + - SAUCE: fs: Update i_[ug]id_(read|write) to translate relative to s_user_ns + - SAUCE: quota: Convert ids relative to s_user_ns + - SAUCE: evm: Translate user/group ids relative to s_user_ns when computing HMAC + - SAUCE: fs: Allow CAP_SYS_ADMIN in s_user_ns to freeze and thaw filesystems + - SAUCE: quota: Treat superblock owner as privilged + - SAUCE: ima/evm: Allow root in s_user_ns to set xattrs + - SAUCE: block_dev: Forbid unprivileged mounting when device is opened for writing + - SAUCE: ext4: Add support for unprivileged mounts from user namespaces + - SAUCE: ext4: Add module parameter to enable user namespace mounts + - SAUCE: fuse: Add module parameter to enable user namespace mounts + + * Miscellaneous upstream changes + - megaraid: Fix possible NULL pointer deference in mraid_mm_ioctl + - libahci: Implement the capability to override the generic ahci interrupt handler. + - ata: Remove the AHCI_HFLAG_EDGE_IRQ support from libahci. + - ahci_xgene: Implement the workaround to fix the missing of the edge interrupt for the HOST_IRQ_STAT. + + -- Tim Gardner Fri, 12 Feb 2016 09:49:05 -0700 + +linux (4.4.0-5.20) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1544637 + + * s390/cio: update measurement characteristics (LP: #1541534) + - s390/cio: fix measurement characteristics memleak + - s390/cio: ensure consistent measurement state + - s390/cio: update measurement characteristics + + * qeth: layer2 reports unknown state to network tools. (LP: #1541907) + - qeth: initialize net_device with carrier off + + * Collateral damage due to kernel configuration change enabling CONFIG_ZONE_DEVICE (Kernel 4.4 amd64) (LP: #1534647) + - [Config] CONFIG_ZONE_DMA=y + - mm: CONFIG_NR_ZONES_EXTENDED + + * perf enahancements for ppc64 (LP: #1521678) + - perf kvm/{x86,s390}: Remove dependency on uapi/kvm_perf.h + - perf kvm/{x86,s390}: Remove const from kvm_events_tp + - perf kvm/powerpc: Port perf kvm stat to powerpc + - perf kvm/powerpc: Add support for HCALL reasons + + * Soft lockup with "block nbdX: Attempted send on closed socket" spam (LP: #1505564) + - SAUCE: nbd: ratelimit error msgs after socket close + + * sleep from invalid context in aa_move_mount (LP: #1539349) + - SAUCE: apparmor: fix sleep from invalid context + + * Introducing ConnectX-4 Ethernet SRIOV (LP: #1540435) + - net/mlx5_core: Modify enable/disable hca functions + - net/mlx5_core: Add base sriov support + - net/mlx5: Add HW capabilities and structs for SR-IOV E-Switch + - net/mlx5: Update access functions to Query/Modify vport MAC address + - net/mlx5: Introduce access functions to modify/query vport mac lists + - net/mlx5: Introduce access functions to modify/query vport state + - net/mlx5: Introduce access functions to modify/query vport promisc mode + - net/mlx5: Introduce access functions to modify/query vport vlans + - net/mlx5e: Write UC/MC list and promisc mode into vport context + - net/mlx5e: Write vlan list into vport context + - net/mlx5: Introducing E-Switch and l2 table + - net/mlx5: E-Switch, Introduce FDB hardware capabilities + - net/mlx5: E-Switch, Add SR-IOV (FDB) support + - net/mlx5: E-Switch, Introduce Vport administration functions + - net/mlx5: E-Switch, Introduce HCA cap and E-Switch vport context + - net/mlx5: E-Switch, Introduce set vport vlan (VST mode) + - net/mlx5: E-Switch, Introduce get vf statistics + - net/mlx5e: Add support for SR-IOV ndos + - net/mlx5: Fix query E-Switch capabilities + - net/mlx5e: Assign random MAC address if needed + + * make wacom_w8001 work well in xenial (LP: #1542771) + - Input: wacom_w8001 - use __set_bit for evbits + - Input: wacom_w8001 - set BTN_TOOL_DOUBLETAP if we have 2fg support + - Input: wacom_w8001 - handle touch error case correctly + - Input: wacom_w8001 - split pen and touch initialization up + - Input: wacom_w8001 - split the touch and pen devices into two devices + - Input: wacom_w8001 - drop use of ABS_MT_TOOL_TYPE + + * virtualbox: update to 5.0.14-dfsg-2 (LP: #1542728) + - ubuntu: vbox -- update to 5.0.14-dfsg-2 + + * Miscellaneous Ubuntu changes + - [Packaging] git-ubuntu-log -- fix empty section formatting + - SAUCE: (noup) Update spl to 0.6.5.4-0ubuntu2, zfs to 0.6.5.4-0ubuntu2 + + -- Andy Whitcroft Sat, 06 Feb 2016 22:32:10 +0000 + +linux (4.4.0-4.19) xenial; urgency=low + + * update ZFS and SPL to 0.6.5.4 (LP: #1542296) + - [Config] update spl/zfs version + - SAUCE: (noup) Update spl to 0.6.5.4-0ubuntu2, zfs to 0.6.5.4-0ubuntu1 + - [Config] reconstruct -- drop links for zfs userspace components + - [Config] reconstruct -- drop links for zfs userspace components -- restore spec links + + * recvmsg() fails SCM_CREDENTIALS request with EOPNOTSUPP. (LP: #1540731) + - Revert "af_unix: Revert 'lock_interruptible' in stream receive code" + + * lxc: ADT exercise test failing with linux-4.4.0-3.17 (LP: #1542049) + - Revert "UBUNTU: SAUCE: apparmor: fix sleep from invalid context" + + * WARNING: at /build/linux-lts-wily-W0lTWH/linux-lts-wily-4.2.0/net/core/skbuff.c:4174 (Travis IB) (LP: #1541326) + - SAUCE: IB/IPoIB: Do not set skb truesize since using one linearskb + + * backport Microsoft Precision Touchpad palm rejection patch (LP: #1541671) + - HID: multitouch: enable palm rejection if device implements confidence usage + + * [Ubuntu 16.04] Update qla2xxx driver for POWER (QLogic) (LP: #1541456) + - qla2xxx: Remove unavailable firmware files + - qla2xxx: Enable Extended Logins support + - qla2xxx: Enable Exchange offload support. + - qla2xxx: Enable Target counters in DebugFS. + - qla2xxx: Add FW resource count in DebugFS. + - qla2xxx: Added interface to send explicit LOGO. + - qla2xxx: Delete session if initiator is gone from FW + - qla2xxx: Wait for all conflicts before ack'ing PLOGI + - qla2xxx: Replace QLA_TGT_STATE_ABORTED with a bit. + - qla2xxx: Remove dependency on hardware_lock to reduce lock contention. + - qla2xxx: Add irq affinity notification + - qla2xxx: Add selective command queuing + - qla2xxx: Move atioq to a different lock to reduce lock contention + - qla2xxx: Disable ZIO at start time. + - qla2xxx: Set all queues to 4k + - qla2xxx: Check for online flag instead of active reset when transmitting responses + - scsi: qla2xxxx: avoid type mismatch in comparison + + * [Hyper-V] PCI Passthrough (LP: #1541120) + - x86/irq: Export functions to allow MSI domains in modules + - genirq/msi: Export functions to allow MSI domains in modules + + * Update lpfc driver to 11.0.0.10 (LP: #1541592) + - lpfc: Fix FCF Infinite loop in lpfc_sli4_fcf_rr_next_index_get. + - lpfc: Fix the FLOGI discovery logic to comply with T11 standards + - lpfc: Fix RegLogin failed error seen on Lancer FC during port bounce + - lpfc: Fix driver crash when module parameter lpfc_fcp_io_channel set to 16 + - lpfc: Fix crash in fcp command completion path. + - lpfc: Modularize and cleanup FDMI code in driver + - lpfc: Fix RDP Speed reporting. + - lpfc: Fix RDP ACC being too long. + - lpfc: Make write check error processing more resilient + - lpfc: Use new FDMI speed definitions for 10G, 25G and 40G FCoE. + - lpfc: Fix mbox reuse in PLOGI completion + - lpfc: Fix external loopback failure. + - lpfc: Add logging for misconfigured optics. + - lpfc: Delete unnecessary checks before the function call "mempool_destroy" + - lpfc: Use kzalloc instead of kmalloc + - lpfc: Update version to 11.0.0.10 for upstream patch set + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_ARM64_VA_BITS=48 + - [Config] Fixed Vcs-Git + + * Miscellaneous upstream changes + - cxl: Fix possible idr warning when contexts are released + - cxl: use correct operator when writing pcie config space values + - cxlflash: drop unlikely before IS_ERR_OR_NULL + - cxl: Fix DSI misses when the context owning task exits + - cxlflash: Removed driver date print + - cxlflash: Fix to resolve cmd leak after host reset + - cxlflash: Resolve oops in wait_port_offline + - cxlflash: Enable device id for future IBM CXL adapter + - cxl: fix build for GCC 4.6.x + - cxl: use -Werror only with CONFIG_PPC_WERROR + - cxl: Enable PCI device ID for future IBM CXL adapter + + -- Andy Whitcroft Fri, 05 Feb 2016 14:58:51 +0000 + +linux (4.4.0-3.17) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1541058 + * [Config] CONFIG_BLK_DEV_NVME_SCSI=y + - LP: #1531539 + * SAUCE: nvme merge cleanup + - LP: #1531539 + * rebase to v4.4.1 + + [ Andy Whitcroft ] + + * Revert "SAUCE: dm: introduce a target_ioctl op to allow target specific + ioctls" + - LP: #1538618 + * postinst -- detect symlinks correctly + - LP: #1536810 + + [ John Johansen ] + + * SAUCE: apparmor: fix sleep from invalid context + - LP: #1539349 + + [ Upstream Kernel Changes ] + + * powerpc/eeh: Fix PE location code + - LP: #1538909 + * powerpc/pseries: Limit EPOW reset event warnings + - LP: #1539102 + * lightnvm: fix bio submission issue + - LP: #1531539 + * lightnvm: fix incorrect nr_free_blocks stat + - LP: #1531539 + * lightnvm: add check after mempool allocation + - LP: #1531539 + * lightnvm: unlock rq and free ppa_list on submission fail + - LP: #1531539 + * lightnvm: move ppa erase logic to core + - LP: #1531539 + * lightnvm: refactor rqd ppa list into set/free + - LP: #1531539 + * lightnvm: refactor end_io functions for sync + - LP: #1531539 + * lightnvm: return the get_bb_tbl return value + - LP: #1531539 + * lightnvm: check bi_error in gc + - LP: #1531539 + * lightnvm: put block back to gc list on its reclaim fail + - LP: #1531539 + * lightnvm: fix locking and mempool in rrpc_lun_gc + - LP: #1531539 + * lightnvm: sectors first in ppa list + - LP: #1531539 + * lightnvm: move the pages per block check out of the loop + - LP: #1531539 + * lightnvm: support multiple ppas in nvm_erase_ppa + - LP: #1531539 + * lightnvm: move rq->error to nvm_rq->error + - LP: #1531539 + * lightnvm: introduce nvm_submit_ppa + - LP: #1531539 + * lightnvm: reference rrpc lun in rrpc block + - LP: #1531539 + * lightnvm: fix missing grown bad block type + - LP: #1531539 + * lightnvm: manage open and closed blocks separately + - LP: #1531539 + * lightnvm: add mccap support + - LP: #1531539 + * lightnvm: introduce mlc lower page table mappings + - LP: #1531539 + * lightnvm: core on-disk initialization + - LP: #1531539 + * lightnvm: introduce ioctl to initialize device + - LP: #1531539 + * lightnvm: use system block for mm initialization + - LP: #1531539 + * lightnvm: introduce factory reset + - LP: #1531539 + * lightnvm: ensure that nvm_dev_ops can be used without CONFIG_NVM + - LP: #1531539 + * blk-mq: add a flags parameter to blk_mq_alloc_request + - LP: #1531539 + * nvme: move struct nvme_iod to pci.c + - LP: #1531539 + * nvme: split command submission helpers out of pci.c + - LP: #1531539 + * nvme: use offset instead of a struct for registers + - LP: #1531539 + * nvme: split nvme_trans_device_id_page + - LP: #1531539 + * nvme: use vendor it from identify + - LP: #1531539 + * nvme: split a new struct nvme_ctrl out of struct nvme_dev + - LP: #1531539 + * nvme: simplify nvme_setup_prps calling convention + - LP: #1531539 + * nvme: refactor nvme_queue_rq + - LP: #1531539 + * nvme: factor out a nvme_unmap_data helper + - LP: #1531539 + * nvme: move nvme_error_status to common code + - LP: #1531539 + * nvme: move nvme_setup_flush and nvme_setup_rw to common code + - LP: #1531539 + * nvme: split __nvme_submit_sync_cmd + - LP: #1531539 + * nvme: use the block layer for userspace passthrough metadata + - LP: #1531539 + * nvme: move block_device_operations and ns/ctrl freeing to common code + - LP: #1531539 + * nvme: add explicit quirk handling + - LP: #1531539 + * nvme: move remaining CC setup into nvme_enable_ctrl + - LP: #1531539 + * nvme: move nvme_{enable,disable,shutdown}_ctrl to common code + - LP: #1531539 + * nvme: add a common helper to read Identify Controller data + - LP: #1531539 + * nvme: move the call to nvme_init_identify earlier + - LP: #1531539 + * nvme: move namespace scanning to common code + - LP: #1531539 + * nvme: move chardev and sysfs interface to common code + - LP: #1531539 + * nvme: refactor set_queue_count + - LP: #1531539 + * blk-integrity: empty implementation when disabled + - LP: #1531539 + * NVMe: fix build with CONFIG_NVM enabled + - LP: #1531539 + * nvme: fix another 32-bit build warning + - LP: #1531539 + * nvme: precedence bug in nvme_pr_clear() + - LP: #1531539 + * nvme: only ignore hardware errors in nvme_create_io_queues + - LP: #1531539 + * nvme: only add a controller to dev_list after it's been fully + initialized + - LP: #1531539 + * nvme: protect against simultaneous shutdown invocations + - LP: #1531539 + * nvme: don't take the I/O queue q_lock in nvme_timeout + - LP: #1531539 + * nvme: merge nvme_abort_req and nvme_timeout + - LP: #1531539 + * nvme: add NVME_SC_CANCELLED + - LP: #1531539 + * nvme: simplify resets + - LP: #1531539 + * nvme: do not restart the request timeout if we're resetting the + controller + - LP: #1531539 + * nvme: merge probe_work and reset_work + - LP: #1531539 + * nvme: remove dead controllers from a work item + - LP: #1531539 + * nvme: switch abort_limit to an atomic_t + - LP: #1531539 + * NVMe: Implement namespace list scanning + - LP: #1531539 + * NVMe: Use unbounded work queue for all work + - LP: #1531539 + * NVMe: Remove device management handles on remove + - LP: #1531539 + * NVMe: Simplify metadata setup + - LP: #1531539 + * nvme: fix admin queue depth + - LP: #1531539 + * nvme: factor out a few helpers from req_completion + - LP: #1531539 + * nvme: switch delete SQ/CQ to blk_execute_rq_nowait + - LP: #1531539 + * nvme: switch abort to blk_execute_rq_nowait + - LP: #1531539 + * nvme: special case AEN requests + - LP: #1531539 + * nvme: simplify completion handling + - LP: #1531539 + * nvme: properly free resources for cancelled command + - LP: #1531539 + * nvme: meta_sg doesn't have to be an array + - LP: #1531539 + * nvme: merge iod and cmd_info + - LP: #1531539 + * NVMe: Add pci error handlers + - LP: #1531539 + * NVMe: Export namespace attributes to sysfs + - LP: #1531539 + * nvme: Move nvme_freeze/unfreeze_queues to nvme core + - LP: #1531539 + * nvme: synchronize access to ctrl->namespaces + - LP: #1531539 + * nvme: fixes for NVME_IOCTL_IO_CMD on the char device + - LP: #1531539 + * nvme: make SG_IO support optional + - LP: #1531539 + * NVMe: Fix admin queue ring wrap + - LP: #1531539 + * NVMe: Use a retryable error code on reset + - LP: #1531539 + * NVMe: Remove queue freezing on resets + - LP: #1531539 + * NVMe: IO queue deletion re-write + - LP: #1531539 + * NVMe: Shutdown controller only for power-off + - LP: #1531539 + * NVMe: Export NVMe attributes to sysfs group + - LP: #1531539 + * i40e: fix build warnings + * net: i40e: shut up uninitialized variable warnings + * Drivers: hv: vmbus: fix build warning + * Drivers: hv: util: Increase the timeout for util services + * Drivers: hv: utils: run polling callback always in interrupt context + * tools: hv: report ENOSPC errors in hv_fcopy_daemon + * tools: hv: remove repeated HV_FCOPY string + * Drivers: hv: util: catch allocation errors + * Drivers: hv: utils: use memdup_user in hvt_op_write + * drivers/hv: cleanup synic msrs if vmbus connect failed + * drivers:hv: Export a function that maps Linux CPU num onto Hyper-V proc + num + * drivers:hv: Export the API to invoke a hypercall on Hyper-V + * drivers:hv: Define the channel type for Hyper-V PCI Express + pass-through + * Drivers: hv: vss: run only on supported host versions + * Drivers: hv: vmbus: Use uuid_le type consistently + * Drivers: hv: vmbus: Use uuid_le_cmp() for comparing GUIDs + * Drivers: hv: vmbus: Get rid of the unused macro + * Drivers: hv: vmbus: Get rid of the unused irq variable + * Drivers: hv: vmbus: serialize process_chn_event() and + vmbus_close_internal() + * Drivers: hv: vmbus: do sanity check of channel state in + vmbus_close_internal() + * Drivers: hv: vmbus: fix rescind-offer handling for device without a + driver + * Drivers: hv: vmbus: release relid on error in vmbus_process_offer() + * Drivers: hv: vmbus: channge vmbus_connection.channel_lock to mutex + * drivers:hv: Allow for MMIO claims that span ACPI _CRS records + * Drivers: hv: vmbus: Fix a Host signaling bug + * drivers/hv: correct tsc page sequence invalid value + * Drivers: hv: vmbus: Force all channel messages to be delivered on CPU 0 + * Drivers: hv: utils: Invoke the poll function after handshake + * tools: hv: vss: fix the write()'s argument: error -> vss_msg + * Drivers: hv: utils: fix memory leak on on_msg() failure + * Drivers: hv: utils: rename outmsg_lock + * Drivers: hv: utils: introduce HVUTIL_TRANSPORT_DESTROY mode + * Drivers: hv: utils: fix crash when device is removed from host side + * Drivers: hv: ring_buffer.c: fix comment style + * Drivers: hv: ring_buffer: remove stray smp_read_barrier_depends() + * Drivers: hv: ring_buffer: remove code duplication from + hv_ringbuffer_peek/read() + * Drivers: hv: remove code duplication between + vmbus_recvpacket()/vmbus_recvpacket_raw() + * Drivers: hv: ring_buffer: eliminate hv_ringbuffer_peek() + * drivers/hv: replace enum hv_message_type by u32 + * drivers/hv: Move HV_SYNIC_STIMER_COUNT into Hyper-V UAPI x86 header + * drivers/hv: Move struct hv_message into UAPI Hyper-V x86 header + * drivers/hv: Move struct hv_timer_message_payload into UAPI Hyper-V x86 + header + * Drivers: hv: vmbus: fix the building warning with hyperv-keyboard + * Drivers: hv: utils: fix hvt_op_poll() return value on transport destroy + * Drivers: hv: vmbus: Treat Fibre Channel devices as performance critical + + [ Upstream Kernel Changes ] + + * rebase to v4.4.1 + - LP: #1533461 + - LP: #1529624 + + -- Tim Gardner Fri, 29 Jan 2016 08:06:37 -0700 + +linux (4.4.0-2.16) xenial; urgency=low + + [ Andy Whitcroft ] + + * Release Tracking Bug + - LP: #1539090 + * SAUCE: hv: hv_set_ifconfig -- convert to python3 + - LP: #1506521 + * SAUCE: dm: introduce a target_ioctl op to allow target specific ioctls + - LP: #1538618 + + [ Colin Ian King ] + + * SAUCE: ACPI / tables: Add acpi_force_32bit_fadt_addr option to force 32 + bit FADT addresses (LP: #1529381) + - LP: #1529381 + + [ John Johansen ] + + * SAUCE: (no-up): apparmor: fix for failed mediation of socket that is + being shutdown + - LP: #1446906 + + [ Mahesh Salgaonkar ] + + * SAUCE: Powernv: Remove the usage of PACAR1 from opal wrappers + - LP: #1537881 + * SAUCE: powerpc/book3s: Fix TB corruption in guest exit path on HMI + interrupt. + - LP: #1537881 + * SAUCE: KVM: PPC: Book3S HV: Fix soft lockups in KVM on HMI for time + base errors + - LP: #1537881 + + [ Paolo Pisati ] + + * SAUCE: arm64: errata: Add -mpc-relative-literal-loads to erratum + #843419 build flags + - LP: #1533009 + * [Config] MFD_TPS65217=y && REGULATOR_TPS65217=y + * [Config] disable ARCH_ZX (ZTE ZX Soc) + + [ Tim Gardner ] + + * Revert "SAUCE: (noup) cxlflash: a couple off by one bugs" + * SAUCE: (no-up) Update bnx2x firmware to 7.12.30.0 + - LP: #1536719 + * SAUCE: drop obsolete bnx2x firmware + * SAUCE: i40e: Silence 'may be used uninitialized' warnings + - LP: #1536474 + * [Config] CONFIG_ZONE_DMA=y for amd64 lowlatency + - LP: #1534647 + * [Config] Add pvpanic to virtual flavour + - LP: #1537923 + * [Config] CONFIG_INTEL_PUNIT_IPC=m, CONFIG_INTEL_TELEMETRY=m + - LP: #1520457 + + [ Upstream Kernel Changes ] + + * i40evf: fix compiler warning of unused variable + - LP: #1536474 + * intel: i40e: fix confused code + - LP: #1536474 + * i40e/i40evf: remove unused tunnel parameter + - LP: #1536474 + * i40e: Change BUG_ON to WARN_ON in service event complete + - LP: #1536474 + * i40e: remove BUG_ON from feature string building + - LP: #1536474 + * i40e: remove BUG_ON from FCoE setup + - LP: #1536474 + * i40e: Workaround fix for mss < 256 issue + - LP: #1536474 + * i40e/i40evf: Add a stat to track how many times we have to do a force + WB + - LP: #1536474 + * i40e: Move the saving of old link info from handle_link_event to + link_event + - LP: #1536474 + * i40e/i40evf: Add comment to #endif + - LP: #1536474 + * i40e/i40evf: clean up error messages + - LP: #1536474 + * i40evf: handle many MAC filters correctly + - LP: #1536474 + * i40e: return the number of enabled queues for ETHTOOL_GRXRINGS + - LP: #1536474 + * i40e: rework the functions to configure RSS with similar parameters + - LP: #1536474 + * i40e: create a generic configure rss function + - LP: #1536474 + * i40e: Bump version to 1.4.2 + - LP: #1536474 + * i40e: add new fields to store user configuration + - LP: #1536474 + * i40e: rename rss_size to alloc_rss_size in i40e_pf + - LP: #1536474 + * i40e/i40evf: Fix RS bit update in Tx path and disable force WB + workaround + - LP: #1536474 + * i40e/i40evf: prefetch skb data on transmit + - LP: #1536474 + * i40evf: rename VF adapter specific RSS function + - LP: #1536474 + * i40evf: create a generic config RSS function + - LP: #1536474 + * i40evf: create a generic get RSS function + - LP: #1536474 + * i40evf: add new fields to store user configuration of RSS + - LP: #1536474 + * i40e: Update error messaging + - LP: #1536474 + * i40e: fix confusing message + - LP: #1536474 + * i40e: make error message more useful + - LP: #1536474 + * i40evf: quoth the VF driver, Nevermore + - LP: #1536474 + * i40evf: allocate queue vectors dynamically + - LP: #1536474 + * i40evf: allocate ring structs dynamically + - LP: #1536474 + * i40e/i40evf: Bump i40e version to 1.4.4 and i40evf to 1.4.1 + - LP: #1536474 + * i40e: fix: do not sleep in netdev_ops + - LP: #1536474 + * i40e: remove unused argument + - LP: #1536474 + * i40evf: increase max number of queues + - LP: #1536474 + * i40evf: set real num queues + - LP: #1536474 + * i40evf: remove duplicate string + - LP: #1536474 + * i40e: Detection and recovery of TX queue hung logic moved to + service_task from tx_timeout + - LP: #1536474 + * i40e: Fix memory leaks, sideband filter programming + - LP: #1536474 + * i40evf: don't use atomic allocation + - LP: #1536474 + * i40e: propagate properly + - LP: #1536474 + * i40evf: use correct types + - LP: #1536474 + * i40e: use priv flags to control packet split + - LP: #1536474 + * i40e: Remove separate functions gathering XOFF Rx stats + - LP: #1536474 + * i40e: fix whitespace + - LP: #1536474 + * i40e/i40evf: use logical operator + - LP: #1536474 + * i40e/i40evf: Bump version to 1.4.7 for i40e and 1.4.3 for i40evf + - LP: #1536474 + * i40e: trivial fixes + - LP: #1536474 + * i40e: Fix i40e_print_features() VEB mode output + - LP: #1536474 + * i40e: chomp the BIT(_ULL) + - LP: #1536474 + * i40e: properly delete VF MAC filters + - LP: #1536474 + * i40e: don't add zero MAC filter + - LP: #1536474 + * i40evf: check rings before freeing resources + - LP: #1536474 + * i40e: use explicit cast from u16 to u8 + - LP: #1536474 + * i40e: Opcode and structures required by OEM Post Update AQ command and + add new NVM arq message + - LP: #1536474 + * i40e: hush little warnings + - LP: #1536474 + * i40e/i40evf: Add a new offload for RSS PCTYPE V2 for X722 + - LP: #1536474 + * i40e: clean whole mac filter list + - LP: #1536474 + * i40evf: change version string generation + - LP: #1536474 + * i40e/i40evf: Bump i40e to 1.4.8 and i40evf to 1.4.4 + - LP: #1536474 + * geneve: UDP checksum configuration via netlink + - LP: #1536474 + * geneve: Add geneve udp port offload for ethernet devices + - LP: #1536474 + * i40e: geneve tunnel offload support + - LP: #1536474 + * geneve: Add geneve_get_rx_port support + - LP: #1536474 + * i40e: Call geneve_get_rx_port to get the existing Geneve ports + - LP: #1536474 + * i40e: change log messages and error returns + - LP: #1536474 + * i40e: allow zero MAC address for VFs + - LP: #1536474 + * i40e: Look up MAC address in Open Firmware or IDPROM + - LP: #1536474 + * i40e: Fix Rx hash reported to the stack by our driver + - LP: #1536474 + * i40e: remove forever unused ID + - LP: #1536474 + * igb: add 88E1543 initialization code + * igb: don't unmap NULL hw_addr + * igb: use the correct i210 register for EEMNGCTL + * igb: fix NULL derefs due to skipped SR-IOV enabling + * igb: improve handling of disconnected adapters + * igb: Remove GS40G specific defines/functions + * igb: Don't add PHY address to PCDL address + * igb: Improve cable length function for I210, etc. + * igb: Explicitly label self-test result indices + * ixgbe: drop null test before destroy functions + - LP: #1536473 + * ixgbe: Delete redundant include file + - LP: #1536473 + * ixgbe: fix multiple kernel-doc errors + - LP: #1536473 + * ixgbe: Fix handling of NAPI budget when multiple queues are enabled per + vector + - LP: #1536473 + * ixgbe: Add KR mode support for CS4227 chip + - LP: #1536473 + * ixgbevf: Limit lowest interrupt rate for adaptive interrupt moderation + to 12K + - LP: #1536473 + * ixgbe/ixgbevf: use napi_schedule_irqoff() + - LP: #1536473 + * ixgbe: Remove CS4227 diagnostic code + - LP: #1536473 + * ixgbevf: use ether_addr_copy instead of memcpy + - LP: #1536473 + * ixgbevf: fix spoofed packets with random MAC + - LP: #1536473 + * ixgbe: Prevent KR PHY reset in ixgbe_init_phy_ops_x550em + - LP: #1536473 + * ixgbe: Add support for newer thermal alarm + - LP: #1536473 + * ixgbe: Use private workqueue to avoid certain possible hangs + - LP: #1536473 + * ixgbevf: Use a private workqueue to avoid certain possible hangs + - LP: #1536473 + * ixgbevf: Minor cleanups + - LP: #1536473 + * ixgbe: Refactor MAC address configuration code + - LP: #1536473 + * ixgbe: Use __dev_uc_sync and __dev_uc_unsync for unicast addresses + - LP: #1536473 + * ixgbe: Allow FDB entries access to more RAR filters + - LP: #1536473 + * ixgbe: Update PTP to support X550EM_x devices + - LP: #1536473 + * ixgbe: Correct spec violations by waiting after reset + - LP: #1536473 + * ixgbe: Wait for master disable to be set + - LP: #1536473 + * ixgbe: Save VF info and take references + - LP: #1536473 + * ixgbe: Handle extended IPv6 headers in Tx path + - LP: #1536473 + * ixgbe: Always turn PHY power on when requested + - LP: #1536473 + * ixgbevf: Handle extended IPv6 headers in Tx path + - LP: #1536473 + * ixgbe: Return error on failure to allocate mac_table + - LP: #1536473 + * ixgbe: Fix SR-IOV VLAN pool configuration + - LP: #1536473 + * ixgbe: Simplify definitions for regidx and bit in set_vfta + - LP: #1536473 + * ixgbe: Reduce VT code indent in set_vfta by introducing jump label + - LP: #1536473 + * ixgbe: Simplify configuration of setting VLVF and VLVFB + - LP: #1536473 + * ixgbe: Add support for adding/removing VLAN on PF bypassing the VLVF + - LP: #1536473 + * ixgbe: Reorder search to work from the top down instead of bottom up + - LP: #1536473 + * ixgbe: Add support for VLAN promiscuous with SR-IOV + - LP: #1536473 + * ixgbe: Fix VLAN promisc in relation to SR-IOV + - LP: #1536473 + * ixgbe: Clear stale pool mappings + - LP: #1536473 + * ixgbe: Clean stale VLANs when changing port VLAN or resetting + - LP: #1536473 + * ixgbe: do not report 2.5 Gbps as supported + - LP: #1536473 + * ixgbevf: Fix handling of NAPI budget when multiple queues are enabled + per vector + - LP: #1536473 + * ixgbevf: minor cleanups for ixgbevf_set_itr() + - LP: #1536473 + * ixgbe: add support for QSFP PHY types in ixgbe_get_settings() + - LP: #1536473 + * ixgbe: report correct media type for KR, KX and KX4 interfaces + - LP: #1536473 + * ixgbe: Clean up redundancy in hw_enc_features + - LP: #1536473 + * ixgbe: fix RSS limit for X550 + - LP: #1536473 + * ixgbe: Correct X550EM_x revision check + - LP: #1536473 + * ixgbe: Fix bugs in ixgbe_clear_vf_vlans() + - LP: #1536473 + * ixgbe: Fill at least min credits to a TC credit refills + - LP: #1536473 + * ixgbe: use correct FCoE DDP max check + - LP: #1536473 + * ixgbe: fix broken PFC with X550 + - LP: #1536473 + * ixgbe: do not call check_link for ethtool in ixgbe_get_settings() + - LP: #1536473 + * ixgbe: Correct handling of any outer UDP checksum setting + - LP: #1536473 + * ixgbe: Fix to get FDMI HBA attributes information with X550 + - LP: #1536473 + * ixgbe: Fix MDD events generated when FCoE+SRIOV are enabled + - LP: #1536473 + * ixgbe: Make ATR recognize IPv6 extended headers + - LP: #1536473 + * e1000: make eeprom read/write scheduler friendly + * e1000: fix data race between tx_ring->next_to_clean + * e1000: Remove checkpatch coding style errors + * e1000: clean up the checking logic + * e1000: fix a typo in the comment + * e1000e: clean up the local variable + * e1000: fix kernel-doc argument being missing + * e1000: get rid of duplicate exit path + * e1000: Elementary checkpatch warnings and checks removed + * e1000e: fix division by zero on jumbo MTUs + * e1000e: Increase timeout of polling bit RSPCIPHY + * e1000e: initial support for i219-LM (3) + * e1000e: Switch e1000e_up to void, drop code checking for error result + * e1000e: Remove unreachable code + * e1000e: Do not read ICR in Other interrupt + * e1000e: Do not write lsc to ics in msi-x mode + * e1000e: Fix msi-x interrupt automask + * acpi: pci: Setup MSI domain for ACPI based pci devices + * irqdomain: Introduce is_fwnode_irqchip helper + * irqchip/gic-v2m: Refactor to prepare for ACPI support + * irqchip/gic-v2m: acpi: Introducing GICv2m ACPI support + * clk: xgene: Fix divider with non-zero shift value + * i2c: designware: Do not require clock when SSCN and FFCN are provided + * fm10k: do not assume VF always has 1 queue + - LP: #1536475 + * fm10k: Correct MTU for jumbo frames + - LP: #1536475 + * fm10k: Fix handling of NAPI budget when multiple queues are enabled per + vector + - LP: #1536475 + * fm10k: use napi_schedule_irqoff() + - LP: #1536475 + * fm10k: set netdev features in one location + - LP: #1536475 + * fm10k: reset max_queues on init_hw_vf failure + - LP: #1536475 + * fm10k: always check init_hw for errors + - LP: #1536475 + * fm10k: reinitialize queuing scheme after calling init_hw + - LP: #1536475 + * fm10k: Correct typecast in fm10k_update_xc_addr_pf + - LP: #1536475 + * fm10k: explicitly typecast vlan values to u16 + - LP: #1536475 + * fm10k: add statistics for actual DWORD count of mbmem mailbox + - LP: #1536475 + * fm10k: rename mbx_tx_oversized statistic to mbx_tx_dropped + - LP: #1536475 + * fm10k: Add support for ITR scaling based on PCIe link speed + - LP: #1536475 + * fm10k: introduce ITR_IS_ADAPTIVE macro + - LP: #1536475 + * fm10k: Update adaptive ITR algorithm + - LP: #1536475 + * fm10k: use macro for default Tx and Rx ITR values + - LP: #1536475 + * fm10k: change default Tx ITR to 25usec + - LP: #1536475 + * fm10k: TRIVIAL fix typo of hardware + - LP: #1536475 + * fm10k: TRIVIAL cleanup order at top of fm10k_xmit_frame + - LP: #1536475 + * fm10k: use ether_addr_copy to copy MAC address + - LP: #1536475 + * fm10k: do not use CamelCase + - LP: #1536475 + * fm10k: remove unnecessary else block from if statements with return + - LP: #1536475 + * fm10k: remove namespace pollution of fm10k_iov_msg_data_pf + - LP: #1536475 + * fm10k: consistently refer to VLANs and VLAN IDs + - LP: #1536475 + * fm10k: bump driver version + - LP: #1536475 + * fm10k: conditionally compile DCB and DebugFS support + - LP: #1536475 + * fm10k: Cleanup MSI-X interrupts in case of failure + - LP: #1536475 + * fm10k: Cleanup exception handling for mailbox interrupt + - LP: #1536475 + * fm10k: do not inline fm10k_iov_select_vid() + - LP: #1536475 + * fm10k: whitespace cleanups + - LP: #1536475 + * fm10k: use BIT() macro instead of open-coded bit-shifting + - LP: #1536475 + * fm10k: cleanup namespace pollution + - LP: #1536475 + * fm10k: cleanup overly long lines + - LP: #1536475 + * fm10k: initialize xps at driver load + - LP: #1536475 + * fm10k: don't initialize fm10k_workqueue at global level + - LP: #1536475 + * fm10k: correctly pack TLV structures and explain reasoning + - LP: #1536475 + * fm10k: Cleanup exception handling for changing queues + - LP: #1536475 + * fm10k: use ether_addr_equal instead of memcmp + - LP: #1536475 + * fm10k: address operator not needed when declaring function pointers + - LP: #1536475 + * fm10k: constify fm10k_mac_ops, fm10k_iov_ops and fm10k_info structures + - LP: #1536475 + * fm10k: remove unused struct element + - LP: #1536475 + * fm10k: use true/false for boolean get_host_state + - LP: #1536475 + * fm10k: cleanup mailbox code comments etc + - LP: #1536475 + * fm10k: IS_ENABLED() is not appropriate for boolean kconfig option + - LP: #1536475 + * device property: always check for fwnode type + - LP: #1533035 + * device property: rename helper functions + - LP: #1533035 + * device property: refactor built-in properties support + - LP: #1533035 + * device property: keep single value inplace + - LP: #1533035 + * device property: helper macros for property entry creation + - LP: #1533035 + * device property: improve readability of macros + - LP: #1533035 + * device property: return -EINVAL when property isn't found in ACPI + - LP: #1533035 + * device property: Fallback to secondary fwnode if primary misses the + property + - LP: #1533035 + * device property: Take a copy of the property set + - LP: #1533035 + * driver core: platform: Add support for built-in device properties + - LP: #1533035 + * driver core: Do not overwrite secondary fwnode with NULL if it is set + - LP: #1533035 + * mfd: core: propagate device properties to sub devices drivers + - LP: #1533035 + * mfd: intel-lpss: Add support for passing device properties + - LP: #1533035 + * mfd: intel-lpss: Pass SDA hold time to I2C host controller driver + - LP: #1533035 + * mfd: intel-lpss: Pass HSUART configuration via properties + - LP: #1533035 + * i2c: designware: Convert to use unified device property API + - LP: #1533035 + * keys, trusted: fix: *do not* allow duplicate key options + - LP: #1398274 + * keys, trusted: select hash algorithm for TPM2 chips + - LP: #1398274 + * keys, trusted: seal with a TPM2 authorization policy + - LP: #1398274 + * perf/x86/intel: Add perf core PMU support for Intel Knights Landing + - LP: #1461360 + * perf/x86/intel/uncore: Add Knights Landing uncore PMU support + - LP: #1461360 + * perf/x86/intel/uncore: Remove hard coding of PMON box control MSR + offset + - LP: #1461360 + * drm/i915: WaRsDisableCoarsePowerGating + - LP: #1527462 + * drm/i915/skl: Add SKL GT4 PCI IDs + - LP: #1527462 + * drm/i915/skl: Disable coarse power gating up until F0 + - LP: #1527462 + * platform:x86: add Intel P-Unit mailbox IPC driver + - LP: #1520457 + * intel_punit_ipc: add NULL check for input parameters + - LP: #1520457 + * platform/x86: Add Intel Telemetry Core Driver + - LP: #1520457 + * intel_pmc_ipc: update acpi resource structure for Punit + - LP: #1520457 + * platform:x86: Add Intel telemetry platform device + - LP: #1520457 + * platform:x86: Add Intel telemetry platform driver + - LP: #1520457 + * platform:x86: Add Intel Telemetry Debugfs interfaces + - LP: #1520457 + * cxlflash: a couple off by one bugs + + -- Andy Whitcroft Thu, 28 Jan 2016 13:56:00 +0000 + +linux (4.4.0-1.15) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1536803 + + [ Upstream Kernel Changes ] + + * Revert "[SCSI] libiscsi: Reduce locking contention in fast path" + - LP: #1517142 + + -- Tim Gardner Wed, 20 Jan 2016 07:41:40 -0700 + +linux (4.4.0-0.14) xenial; urgency=low + + [ Upstream Kernel Changes ] + + * Revert "powerpc/pci: Remove unused struct pci_dn.pcidev field" + - LP: #1522415 + * powerpc: Add __raw_rm_writeq() function + - LP: #1522415 + + -- Tim Gardner Tue, 19 Jan 2016 11:24:26 -0700 + +linux (4.4.0-0.13) xenial; urgency=low + + [ Andy Whitcroft ] + + * [Config] s390x -- the kernel provides ppp-modules such as there are + * SAUCE: (no-up) add compat_uts_machine= kernel command line override + + [ Tim Gardner ] + + * [Config] Update annotations for VIRTIO_{NET,BLK} + - LP: #1533382 + + [ Upstream Kernel Changes ] + + * powerpc/powernv: Add support for Nvlink NPUs + - LP: #1522415 + * powerpc/powernv: Fix update of NVLink DMA mask + - LP: #1522415 + * powerpc/powernv: Change NPU PE# assignment + - LP: #1522415 + * powerpc/powernv: Reserve PE#0 on NPU + - LP: #1522415 + * KEYS: Fix keyring ref leak in join_session_keyring() + - LP: #1534887 + - CVE-2016-0728 + + -- Tim Gardner Tue, 19 Jan 2016 05:49:09 -0700 + +linux (4.4.0-0.12) xenial; urgency=low + + [ Eric Dumazet ] + + * SAUCE: (no-up) udp: properly support MSG_PEEK with truncated buffers + - LP: #1527902 + + [ Guilherme G. Piccoli ] + + * SAUCE: powerpc/eeh: Validate arch in eeh_add_device_early() + - LP: #1486180 + + [ Tim Gardner ] + + * SAUCE: AUFS - update to aufs4.x-rcN 20160111 + * [Config] CONFIG_VIRTIO_BLK=y, CONFIG_VIRTIO_NET=y for s390 + - LP: #1532886 + * [Config] nvme.ko moved to drivers/nvme/host + * [Config] scsi_dh morphed into 4 modules + * [Config] CONFIG_IBMVNIC=m + * [Config] Add DRM ast driver to udeb installer image + - LP: #1514711 + * [Config] CONFIG_KVM=y for s390x + - LP: #1532886 + * [Config] Install spl/zfs under the kernel modules directory + Fixes some errors in generic.inclusion-list.log + + [ Upstream Kernel Changes ] + + * perf/x86/intel/uncore: Add Broadwell-EP uncore support + - LP: #1524574 + * EDAC: Add DDR4 flag + - LP: #1519631 + * EDAC, sb_edac: Virtualize several hard-coded functions + - LP: #1519631 + * EDAC, sb_edac: Add support for duplicate device IDs + - LP: #1519631 + * EDAC, sb_edac: Add Knights Landing (Xeon Phi gen 2) support + - LP: #1519631 + * Driver for IBM System i/p VNIC protocol + - LP: #1532303 + + -- Tim Gardner Mon, 11 Jan 2016 09:57:16 -0700 + +linux (4.4.0-0.11) xenial; urgency=low + + [ Tim Gardner ] + + * [Config] Fix bogus reconstruct script + + -- Tim Gardner Mon, 11 Jan 2016 07:29:17 -0700 + +linux (4.4.0-0.10) xenial; urgency=low + + [ Haren Myneni ] + + * SAUCE: crypto: nx-842 - Mask XERS0 bit in return value + - LP: #1529666 + + [ Serge Hallyn ] + + * SAUCE: add a sysctl to disable unprivileged user namespace unsharing + + [ Tim Gardner ] + + * [Config] CONFIG_ZONE_DEVICE=y for amd64 + * [Config] CONFIG_BLK_DEV_LOOP=y for s390x + - LP: #1526869 + * SAUCE: (no-up) apparmor: Fix incompatible pointer type warnings + * SAUCE: radeon: r100: Silence 'may be used uninitialized' warnings + * SAUCE: dmaengine: ioatdma: Squelch framesize warnings + * rebase to v4.4 + + [ Upstream Kernel Changes ] + + * rebase to v4.4 + + -- Tim Gardner Mon, 04 Jan 2016 17:43:51 -0700 + +linux (4.4.0-0.9) xenial; urgency=low + + [ Tim Gardner ] + + * rebase to v4.4-rc8 + + [ Upstream Kernel Changes ] + + * rebase to v4.4-rc8 + + -- Tim Gardner Sun, 03 Jan 2016 18:50:33 -0700 + +linux (4.4.0-0.8) xenial; urgency=low + + [ Tim Gardner ] + + * rebase to v4.4-rc7 + + [ Upstream Kernel Changes ] + + * rebase to v4.4-rc7 + + -- Tim Gardner Mon, 28 Dec 2015 16:13:11 -0700 + +linux (4.4.0-0.7) xenial; urgency=low + + [ Hui Wang ] + + * [Config] CONFIG_I2C_DESIGNWARE_BAYTRAIL=y, CONFIG_IOSF_MBI=y + - LP: #1527096 + + [ Jann Horn ] + + * SAUCE: (noup) ptrace: being capable wrt a process requires mapped + uids/gids + - LP: #1527374 + + [ Tim Gardner ] + + * rebase to v4.4-rc6 + + [ Upstream Kernel Changes ] + + * rebase to v4.4-rc6 + - LP: #1526330 + + -- Tim Gardner Thu, 17 Dec 2015 05:28:27 -0700 + +linux (4.4.0-0.6) xenial; urgency=low + + [ Andy Whitcroft ] + + * [Config] disable CONFIG_ARM64_LSE_ATOMICS to avoid issues with ARMv8.1 + support in latest compilers + * [Config] disable CONFIG_CRYPTO_AES_ARM64_CE* to avoid issues with + ARMv8.1 support in latest compilers + + [ Tim Gardner ] + + * [Config] s390 -> s390x + * SAUCE: include/linux/mmdebug.h: #include + + -- Tim Gardner Tue, 15 Dec 2015 06:46:26 -0700 + +linux (4.4.0-0.5) xenial; urgency=low + + [ Andy Whitcroft ] + + * [Config] s390x -- enable tools + - LP: #1524319 + * [Config] s390x -- add architecture to getabis + * [Config] s390x -- add s390x ABI information + * [Config] s390x -- enable ABI checks + + [ Tim Gardner ] + + * [Debian] config-check and prepare using ${DEBIAN}/config/annotations + * [Config] Add s390 modules to nic-modules udeb + - LP: #1525297 + * rebase to v4.4-rc5 + + [ Upstream Kernel Changes ] + + * rebase to v4.4-rc5 + - LP: #1523517 + - LP: #1523232 + + -- Tim Gardner Mon, 14 Dec 2015 05:28:05 -0700 + +linux (4.4.0-0.4) xenial; urgency=low + + [ Upstream Kernel Changes ] + + * cgroup: make css_set pin its css's to avoid use-afer-free + * cgroup_freezer: simplify propagation of CGROUP_FROZEN clearing in + freezer_attach() + * cgroup: fix handling of multi-destination migration from + subtree_control enabling + + -- Tim Gardner Tue, 08 Dec 2015 11:20:41 -0700 + +linux (4.4.0-0.3) xenial; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to v4.4-rc4 + + -- Tim Gardner Sun, 06 Dec 2015 16:50:15 -0700 + +linux (4.4.0-0.2) xenial; urgency=low + + [ Tim Gardner ] + + * [Config] Add spl/zfs provides to generic and powerpc64-smp + * [Config] Add zfs to d-i fs-core-modules + * [Config] Include all s390 specific drivers in linux-image + - LP: #1522210 + + -- Tim Gardner Thu, 03 Dec 2015 07:05:56 -0700 + +linux (4.4.0-0.1) xenial; urgency=low + + [ Andy Whitcroft ] + + * [Tests] gcc-multilib does not exist on ppc64el redux + - LP: #1515541 + * [Config] libunwind8-dev is not available on s390x + * [Debian] Disable SPL/ZFS for cross compiling -- redux + * [Config] s390x -- add dasd udebs + - LP: #1519833 + * [Config] s390x -- include dasd modules in linux-image + - LP: #1519833 + * [Config] s390x -- disable ZFS temporarily + - LP: #1519820 + * [Config] s390s -- disable ABI/module checks + * [Config] make IBMVETH consistent on powerpc/ppc64el + - LP: #1521712 + * [Config] follow ibmvscsi name change + - LP: #1521712 + * [Config] move ibm disk and ethernet drivers to linux-image + - LP: #1521712 + * [Config] include ibmveth in nic-modules for ppc64el + - LP: #1521712 + * [Config] s390x -- disable abi/module checks for s390x + + [ Joseph Salisbury ] + + * SAUCE: scsi_sysfs: protect against double execution of + __scsi_remove_device() + - LP: #1509029 + + [ Seth Forshee ] + + * [Config] CONFIG_DRM_AMDGPU_CIK=n + - LP: #1510405 + + [ Tim Gardner ] + + * [Debian] Disable SPL/ZFS for cross compiling + * [Config] CONFIG_SCSI_IBMVSCSI=m + - LP: #1515872 + * rebase to v4.4-rc2 + * [Config] updateconfigs + * [Config] CONFIG_WILC1000_DRIVER=n for FTBS + * SAUCE: do_zfs=false temporarily + * [Config] CONFIG_LUSTRE_FS=n + * [Debian] Disable udebs when cross compiling + * rebase to v4.4-rc3 + * [Config] CONFIG_AUFS_FS=m + * SAUCE: AUFS + + [ Upstream Kernel Changes ] + + * ZFS: Update with 4.4 support + * SPL: Update with 4.4 support + + [ Upstream Kernel Changes ] + + * rebase to v4.4-rc3 + - LP: #1519168 + * rebase to v4.4-rc2 + - LP: #1506615 + - LP: #1502781 + + -- Tim Gardner Mon, 23 Nov 2015 13:22:37 -0700 + +linux (4.3.0-0.8) xenial; urgency=low + + [ Andy Whitcroft ] + + * [Config] re-enable OSS support and blacklist + - LP: #1434842 + * [Config] enable CONFIG_CC_STACKPROTECTOR_STRONG=y + * [Packaging] config-check -- improve syntax diagnostics + * [Packaging] module-inclusion -- add dependency inclusion for a list + * [Packaging] config-check -- accumulate multi-line annotations correctly + * [Packaging] config-check -- handle V2 annotations format + * [Packaging] s390x -- add architecture to kernelconfig + - LP: #1488653 + * [Config] s390x -- initial configuration + * [Config] s390x -- add initial binary image + * [Config] s390x -- initial configuration update + * [Config] s390x -- produce linux-image + * [Config] s390x -- d-i module exclusions + * [Config] apply Device Drivers >> LED Support >> LED Class Support + * [Config] apply File systems >> Miscellaneous filesystems >> SquashFS 4.0 - Squashed file system support + * [Config] apply Device Drivers >> Generic Driver Options >> Userspace firmware loading support + * SAUCE: leds: lp55xx -- do not force use of the fallback loader + * [Config] -- s390x -- configuration review updates + * [Config] annotations -- add review marks + * [Config] annotations -- config review 4.3 updates + * [Config] annotations -- expose reviews + * [Config] updateconfigs following incoporation of s390x configs + * [Tests] gcc-multilib does not exist on ppc64el + - LP: #1515541 + + [ Dan Carpenter ] + + * SAUCE: (noup) cxlflash: a couple off by one bugs + - LP: #1499849 + + [ Haren Myneni ] + + * Revert "SAUCE: (noup) crypto: 842 - Add CRC and validation support" + + [ Jay Vosburgh ] + + * SAUCE: fan: add VXLAN implementation + + [ Manoj Kumar ] + + * SAUCE: (noup) cxlflash: Fix to escalate LINK_RESET also on port 1 + - LP: #1513583 + + [ Matthew R. Ochs ] + + * SAUCE: (noup) cxlflash: Fix to avoid virtual LUN failover failure + - LP: #1513583 + + [ Tim Gardner ] + + * [Config] CONFIG_AUFS_EXPORT=y + - LP: #1121699 + + [ Upstream Kernel Changes ] + + * misc/genwqe: get rid of atomic allocations + * crypto: 842 - Add CRC and validation support + - LP: #1497878 + * cxlflash: Fix to avoid invalid port_sel value + * cxlflash: Replace magic numbers with literals + * cxlflash: Fix read capacity timeout + * cxlflash: Fix potential oops following LUN removal + * cxlflash: Fix data corruption when vLUN used over multiple cards + * cxlflash: Fix to avoid sizeof(bool) + * cxlflash: Fix context encode mask width + * cxlflash: Fix to avoid CXL services during EEH + * cxlflash: Correct naming of limbo state and waitq + * cxlflash: Make functions static + * cxlflash: Refine host/device attributes + * cxlflash: Fix to avoid spamming the kernel log + * cxlflash: Fix to avoid stall while waiting on TMF + * cxlflash: Fix location of setting resid + * cxlflash: Fix host link up event handling + * cxlflash: Fix async interrupt bypass logic + * cxlflash: Remove dual port online dependency + * cxlflash: Fix AFU version access/storage and add check + * cxlflash: Correct usage of scsi_host_put() + * cxlflash: Fix to prevent workq from accessing freed memory + * cxlflash: Correct behavior in device reset handler following EEH + * cxlflash: Remove unnecessary scsi_block_requests + * cxlflash: Fix function prolog parameters and return codes + * cxlflash: Fix MMIO and endianness errors + * cxlflash: Fix to prevent EEH recovery failure + * cxlflash: Correct spelling, grammar, and alignment mistakes + * cxlflash: Fix to prevent stale AFU RRQ + * cxlflash: Fix to double the delay each time + * cxlflash: Fix to avoid corrupting adapter fops + * cxlflash: Correct trace string + * cxlflash: Fix to avoid potential deadlock on EEH + * cxlflash: Fix to avoid leaving dangling interrupt resources + * cxlflash: Fix to escalate to LINK_RESET on login timeout + * cxlflash: Fix to avoid corrupting port selection mask + * cxlflash: Fix to avoid lock instrumentation rejection + * cxlflash: Fix to avoid bypassing context cleanup + + -- Tim Gardner Fri, 06 Nov 2015 10:15:07 -0600 + +linux (4.3.0-0.7) xenial; urgency=low + + [ Tim Gardner ] + + * Revert "Bypass spl/zfs config" + Causes unresolved symbols on load. + * [Config] Enable ZFS for powerpc64-smp + + -- Tim Gardner Thu, 05 Nov 2015 11:42:37 -0600 + +linux (4.3.0-0.6) xenial; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1512704 + * UBUNTU: SAUCE: AUFS aufs4.x-rcN 20151102 + + [ Andy Whitcroft ] + + * [Packaging] add feature interlock with mainline builds + * apparmor -- follow change to this_cpu_ptr + + [ John Johansen ] + + * SAUCE: (no-up) apparmor: add parameter to control whether policy hashing is used + - LP: #1383886 + * SAUCE: (no-up) apparmor: Sync to apparmor3 - RC1 snapshot + - LP: #1362199 + * SAUCE: Revert: fix: only allow a single threaded process to ... + - LP: #1371310 + * SAUCE: (no-up) fix: bad unix_addr_fs macro + - LP: #1390223 + * SAUCE: (no-up): apparmor: fix mediation of fs unix sockets + - LP: #1408833 + * SAUCE: (no-up) apparmor: fix mount not handling disconnected paths + - LP: #1496430 + + [ Tim Gardner ] + + * [Config] Add iscsi_ibft and iscsi_boot_sysfs to generic inclusion list + - LP: #1511006 + * rebase to v4.3 + * Bypass spl/zfs config + * SPL/ZFS: Add Makefiles in order to avoid the lengthy config + * [Config] Default AppArmor settings + + [ Upstream Kernel Changes ] + + * rebase to v4.3 + + -- Tim Gardner Thu, 29 Oct 2015 09:16:26 -0600 + +linux (4.3.0-0.5) xenial; urgency=low + + * Update spl to 0.6.5.3-0ubuntu1, zfs to 0.6.5.3-0ubuntu1 + + [ Upstream Kernel Changes ] + + * rebase to v4.3-rc7 + - LP: #1504778 + + -- Tim Gardner Fri, 23 Oct 2015 13:59:52 -0600 + +linux (4.3.0-0.4) xenial; urgency=low + + [ Tim Gardner ] + + * [Debian] Update to new signing key type and location + + -- Tim Gardner Wed, 21 Oct 2015 13:07:30 -0600 + +linux (4.3.0-0.3) wily; urgency=low + + [ Tim Gardner ] + + * [Debian] sign-file is now compiled + + -- Tim Gardner Wed, 21 Oct 2015 09:26:34 -0600 + +linux (4.3.0-0.2) wily; urgency=low + + [ Tim Gardner ] + + * [Config] Added libssl-dev to Build-Depends + + -- Tim Gardner Tue, 20 Oct 2015 14:01:55 -0600 + +linux (4.3.0-0.1) wily; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to v4.3-rc6 + * rebase to v4.3-rc5 + * rebase to v4.3-rc4 + * rebase to v4.3-rc3 + * rebase to v4.3-rc2 + * rebase to v4.3-rc1 + - LP: #1492132 + - LP: #1481575 + + -- Tim Gardner Mon, 14 Sep 2015 07:30:36 -0600 + +linux (4.2.0-10.11) wily; urgency=low + + [ Andy Whitcroft ] + + * Release Tracking Bug + - LP: #1495208 + * No change rebuild to avoid issues with leading zero bytes on + internal module signing key. (see launchpad bug 1494943) + + [ Ming Lei ] + + * [Config] SERIAL_8250_DW=y for arm64 + + [ Upstream Kernel Changes ] + + * drm/i915: Move WaBarrierPerformanceFixDisable:skl to skl code from chv + code + - LP: #1484486 + * drm/i915/gen8: Add infrastructure to initialize WA batch buffers + - LP: #1484486 + * drm/i915/gen8: Re-order init pipe_control in lrc mode + - LP: #1484486 + * drm/i915/gen8: Add WaDisableCtxRestoreArbitration workaround + - LP: #1484486 + * drm/i915/gen8: Add WaFlushCoherentL3CacheLinesAtContextSwitch + workaround + - LP: #1484486 + * drm/i915: Bail out early if WA batch is not available for given Gen + - LP: #1484486 + * drm/i915/gen8: Add WaClearSlmSpaceAtContextSwitch workaround + - LP: #1484486 + * drm/i915: Update WaFlushCoherentL3CacheLinesAtContextSwitch + - LP: #1484486 + * drm/i915/gen9: Implement WaDisableKillLogic for gen 9 + - LP: #1484486 + * drm/i915: Enable WA batch buffers for Gen9 + - LP: #1484486 + * drm/i915/gen9: Add WaDisableCtxRestoreArbitration workaround + - LP: #1484486 + * drm/i915: Update wa_ctx_emit() macro as per kernel coding guidelines + - LP: #1484486 + * drm/i915/gen9: Add WaFlushCoherentL3CacheLinesAtContextSwitch + workaround + - LP: #1484486 + * drm/i915/gen9: Add + WaSetDisablePixMaskCammingAndRhwoInCommonSliceChicken + - LP: #1484486 + * drm/i915:skl: Add WaEnableGapsTsvCreditFix + - LP: #1484486 + * drm/i915/skl: revert duplicated WaBarrierPerformanceFixDisable:skl + - LP: #1484486 + * drm/i915/skl: Don't expose the top most plane on gen9 display + - LP: #1484486 + * drm/i915/skl WaDisableSbeCacheDispatchPortSharing + - LP: #1484486 + * drm/i915/skl: WaIgnoreDDIAStrap is forever, always init DDI A + - LP: #1484486 + * drm/i915: reduce indent in i9xx_hpd_irq_handler + - LP: #1484531 + * drm/i915: reduce duplicate conditions in i9xx_hpd_irq_handler + - LP: #1484531 + * drm/i915: reduce indent in intel_hpd_irq_handler + - LP: #1484531 + * drm/i915: group all hotplug related fields into a new struct in + dev_priv + - LP: #1484531 + * drm/i915: add for_each_hpd_pin to iterate over hotplug pins + - LP: #1484531 + * drm/i915: simplify conditions for skipping the 2nd hpd loop iterations + - LP: #1484531 + * drm/i915: put back the indent in intel_hpd_irq_handler + - LP: #1484531 + * drm/i915: merge the two hpd loops in intel_hpd_irq_handler to one + - LP: #1484531 + * drm/i915: simplify condition for digital port + - LP: #1484531 + * drm/i915: abstract away platform specific parts from hpd handling + - LP: #1484531 + * drm/i915: Handle HPD when it has actually occurred + - LP: #1484531 + * drm/i915: Set power domain for DDI-E + - LP: #1484531 + * drm/i915: Set alternate aux for DDI-E + - LP: #1484531 + * drm/i915/skl: enable DDI-E hotplug + - LP: #1484531 + * drm/i915/bxt: fix DDI PHY vswing scale value setting + - LP: #1494163 + * drm/i915/skl: Buffer translation improvements + - LP: #1494163 + * drm/i915: Per-DDI I_boost override + - LP: #1494163 + * drm/i915: fix VBT parsing for SDVO child device mapping + - LP: #1494163 + * drm/i915/bxt: edp1.4 Intermediate Freq support + - LP: #1494163 + * drm/i915: fix link rates reported for SKL + - LP: #1494163 + * drm/i915: Allow parsing of variable size child device entries from VBT + - LP: #1494163 + * drm/i915/skl: Update DDI buffer translation programming. + - LP: #1494163 + * drm/i915: Enable HDMI on DDI-E + - LP: #1484531 + * drm/i915/skl: Enable DDI-E + - LP: #1484531 + * drm/i915: eDP can be present on DDI-E + - LP: #1484531 + * drm/i915/skl: Adding DDI_E power well domain + - LP: #1484531 + * drm/i915: set CDCLK if DPLL0 enabled during resuming from S3 + - LP: #1490035 + * drm/i915: Split atomic wm update to pre and post variants + - LP: #1493746 + * drm/i915/skl: Drop the preliminary_hw_support flag + - LP: #1486868 + * drm/i915: set FDI translations to NULL on SKL + - LP: #1494163 + + -- Andy Whitcroft Sun, 13 Sep 2015 11:32:02 +0100 + +linux (4.2.0-9.9) wily; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1493970 + * [Config] CONFIG_MFD_INTEL_LPSS=m + - LP: #1397876 + + [ dann frazier ] + + * [Config] Disable CONFIG_IPMI_SI_PROBE_DEFAULTS on armhf and arm64 + - LP: #1388952 + + [ Michael Ellerman ] + + * SAUCE: crypto: vmx - VMX crypto should depend on CONFIG_VSX + Fixes FTBS on 32 bit powerpc, patch sent upstream. + + [ Upstream Kernel Changes ] + + * thermal/powerclamp: add cpu id for skylake h/s + - LP: #1398269 + * perf/x86/intel/uncore: Add Broadwell-DE uncore support + - LP: #1397852 + * mfd: watchdog: iTCO_wdt: Expose watchdog properties using platform data + - LP: #1460905 + * i2c: i801: Create iTCO device on newer Intel PCHs + - LP: #1460905 + * watchdog: iTCO_wdt: Add support for TCO on Intel Sunrisepoint + - LP: #1460905 + * perf/x86: Add a native_perf_sched_clock_from_tsc() + - LP: #1397867 + * perf/x86/intel: Add support for PEBSv3 profiling + - LP: #1397867 + * perf/x86/intel/lbr: Allow time stamp for free running PEBSv3 + - LP: #1397867 + * x86: Add new MSRs and MSR bits used for Intel Skylake PMU support + - LP: #1397867 + * perf: Add cycles to branch_info + - LP: #1397867 + * perf/x86/intel/lbr: Add support for LBRv5 + - LP: #1397867 + * perf/x86/intel: Handle new arch perfmon v4 status bits + - LP: #1397867 + * perf/x86/intel: Move PMU ACK to after LBR read + - LP: #1397867 + * perf/x86/intel/lbr: Optimize v4 LBR unfreezing + - LP: #1397867 + * perf/x86/intel: Add Intel Skylake PMU support + - LP: #1397867 + * perf/x86/intel/lbr: Use correct index to save/restore LBR_INFO with + call stack + - LP: #1397867 + * perf/x86/intel/lbr: Limit LBR accesses to TOS in callstack mode + - LP: #1397867 + * perf/x86: Make merge_attr() global to use from perf_event_intel + - LP: #1397867 + * perf/x86/intel: Use 0x11 as extra reg test value + - LP: #1397867 + * perf tools: Add support for cycles, weight branch_info field + - LP: #1397867 + * perf report: Add flag for non ANY branch mode + - LP: #1397867 + * perf report: Add infrastructure for a cycles histogram + - LP: #1397867 + * perf report: Add processing for cycle histograms + - LP: #1397867 + * perf annotate: Compute IPC and basic block cycles + - LP: #1397867 + * perf annotate: Finally display IPC and cycle accounting + - LP: #1397867 + * perf top: Add branch annotation code to top + - LP: #1397867 + * perf report: Display cycles in branch sort mode + - LP: #1397867 + * perf annotate: Fix 32-bit compilation error in util/annotate.c + - LP: #1397867 + * PM / QoS: Make it possible to expose device latency tolerance to + userspace + - LP: #1460908 + * ACPI / PM: Attach ACPI power domain only once + - LP: #1460908 + * Driver core: wakeup the parent device before trying probe + - LP: #1460908 + * klist: implement klist_prev() + - LP: #1460908 + * driver core: implement device_for_each_child_reverse() + - LP: #1460908 + * mfd: make mfd_remove_devices() iterate in reverse order + - LP: #1460908 + * dmaengine: add a driver for Intel integrated DMA 64-bit + - LP: #1460908 + * mfd: Add support for Intel Sunrisepoint LPSS devices + - LP: #1460908 + * spi: pxa2xx: Add support for Intel Sunrisepoint + - LP: #1397876 + * spi: spi-pxa2xx: Remove unused legacy PXA DMA API channel numbers + - LP: #1397876 + * spi: pxa2xx: Add terminating entry for pxa2xx_spi_pci_compound_match + - LP: #1397876 + * spi: spi-pxa2xx: Remove unused legacy null dma buffer and allocation + for it + - LP: #1397876 + * intel_idle: Skylake Client Support + - LP: #1397877 + * powerpc/kernel: Switch to using MAX_ERRNO + - LP: #1458876 + * powerpc/kernel: Change the do_syscall_trace_enter() API + - LP: #1458876 + * powerpc: Drop unused syscall_get_error() + - LP: #1458876 + * powerpc: Don't negate error in syscall_set_return_value() + - LP: #1458876 + * powerpc: Rework syscall_get_arguments() so there is only one loop + - LP: #1458876 + * powerpc: Use orig_gpr3 in syscall_get_arguments() + - LP: #1458876 + * powerpc: Change syscall_get_nr() to return int + - LP: #1458876 + * powerpc/kernel: Add SIG_SYS support for compat tasks + - LP: #1458876 + * powerpc/kernel: Enable seccomp filter + - LP: #1458876 + * selftests/seccomp: Make seccomp tests work on big endian + - LP: #1458876 + * selftests/seccomp: Add powerpc support + - LP: #1458876 + * eCryptfs: Invalidate dcache entries when lower i_nlink is zero + + -- Tim Gardner Tue, 08 Sep 2015 19:17:57 -0600 + +linux (4.2.0-8.8) wily; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1493357 + * [Config] CONFIG_CRYPTO_DEV_NX_COMPRESS_CRYPTO obsolete + - LP: #1488495 + * [Config] CONFIG_CXLFLASH=m + * [Config] CONFIG_CXL_EEH=y for ppc64el, powerpc64-smp + + + [ Andy Whitcroft ] + + * [Packaging] standardise on stage1 for the bootstrap stage in line with debian + * [Packaging] mark up control for stage1 + * [Config] kernel-versions -- clean up deps field + * [Config] s390x -- build linux-libc-dev + - LP: #1488653 + * [Packaging] control -- prepare for new kernel-wedge semantics + + [ Upstream Kernel Changes ] + + * crypto: vmx - Fixing AES-CTR counter bug + - LP: #1484519 + * crypto: vmx - Fixing GHASH Key issue on little endian + - LP: #1484519 + * powerpc: Uncomment and make enable_kernel_vsx() routine available + - LP: #1484519 + * crypto: vmx - Adding enable_kernel_vsx() to access VSX instructions + - LP: #1484519 + * crypto: nx - nx842_OF_upd_status should return ENODEV if device is not + 'okay' + - LP: #1488495 + * crypto: nx - rename nx842_{init, exit} to nx842_pseries_{init, exit} + - LP: #1488495 + * crypto: nx - do not emit extra output if status is disabled + - LP: #1488495 + * crypto: nx - reduce chattiness of platform drivers + - LP: #1488495 + * crypto: nx/842 - Fix context corruption + - LP: #1488495 + * crypto: nx - remove __init/__exit from VIO functions + - LP: #1488495 + * crypto: nx - remove pSeries NX 'status' field + - LP: #1488495 + * crypto: nx - move kzalloc() out of spinlock + - LP: #1488495 + * crypto: nx - don't register pSeries driver if ENODEV + - LP: #1488495 + * crypto: nx - use common code for both NX decompress success cases + - LP: #1488495 + * crypto: nx - merge nx-compress and nx-compress-crypto + - LP: #1488495 + * crypto: nx - rename nx-842-crypto.c to nx-842.c + - LP: #1488495 + * crypto: nx - make platform drivers directly register with crypto + - LP: #1488495 + * cxlflash: Base support for IBM CXL Flash Adapter + - LP: #1449121 + * cxlflash: Base error recovery support + - LP: #1449121 + * cxlflash: Superpipe support + - LP: #1449121 + * cxlflash: Virtual LUN support + - LP: #1449121 + * cxlflash: off by one bug in cxlflash_show_port_status() + - LP: #1449121 + * cxlflash: shift wrapping bug in afu_link_reset() + - LP: #1449121 + * cxlflash: Remove unused variable from queuecommand + - LP: #1449121 + * powerpc/powernv: move dma_get_required_mask from pnv_phb to + pci_controller_ops + * powerpc/eeh: Probe after unbalanced kref check + * misc: cxl: clean up afu_read_config() + * cxl: Add explicit precision specifiers + * cxl: use more common format specifier + * cxl: Destroy cxl_adapter_idr on module_exit + * cxl: Destroy afu->contexts_idr on release of an afu + * cxl: Don't ignore add_process_element() result when attaching context + * cxl: Compile with -Werror + * cxl: sparse: Make declarations static + * cxl: sparse: Silence iomem warning in debugfs file creation + * cxl: Convert MMIO read/write macros to inline functions + * cxl: Drop commands if the PCI channel is not in normal state + * cxl: Allocate and release the SPA with the AFU + * cxl: Make IRQ release idempotent + * cxl: Clean up adapter MMIO unmap path. + * cxl: Refactor adaptor init/teardown + * cxl: Refactor AFU init/teardown + * cxl: Don't remove AFUs/vPHBs in cxl_reset + * cxl: Allow the kernel to trust that an image won't change on PERST. + * cxl: EEH support + * cxl: Add CONFIG_CXL_EEH symbol + * cxl: Plug irq_bitmap getting leaked in cxl_context + * cxl: Add alternate MMIO error handling + * cxl: Allow release of contexts which have been OPENED but not STARTED + * cxl: Remove use of macro DEFINE_PCI_DEVICE_TABLE + * cxl: Release irqs if memory allocation fails + * cxl: Remove racy attempt to force EEH invocation in reset + * cxl: Fix + cleanup error paths in cxl_dev_context_init + * cxl: Fix force unmapping mmaps of contexts allocated through the kernel api + * cxl: Set up and enable PSL Timebase + + -- Tim Gardner Tue, 01 Sep 2015 07:38:43 -0600 + +linux (4.2.0-7.7) wily; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1490564 + * rebase to v4.2 + + [ Wen Xiong ] + + * SAUCE: ipr: Byte swapping for device_id attribute in sysfs + - LP: #1453892 + + [ Upstream Kernel Changes ] + + * rebase to v4.2 + - LP: #1487345 + + -- Tim Gardner Wed, 26 Aug 2015 07:06:10 -0600 + +linux (4.2.0-6.6) wily; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1488138 + + [ Andy Whitcroft ] + + * rebase to v4.2-rc8 + + [ Shilpasri G Bhat ] + + * SAUCE: cpufreq: powernv: Handle throttling due to Pmax capping at chip + level + - LP: #1480894 + * SAUCE: powerpc/powernv: Add definition of OPAL_MSG_OCC message type + - LP: #1480894 + * SAUCE: cpufreq: powernv: Register for OCC related opal_message + notification + - LP: #1480894 + * SAUCE: cpufreq: powernv: Call throttle_check() on receiving + OCC_THROTTLE + - LP: #1480894 + * SAUCE: cpufreq: powernv: Report Psafe only if PMSR.psafe_mode_active + bit is set + - LP: #1480894 + * SAUCE: cpufreq: powernv: Restore cpu frequency to policy->cur on + unthrottling + - LP: #1480894 + + [ Upstream Kernel Changes ] + + * rebase to v4.2-rc8 + - LP: #1483440 + - LP: #1484334 + + -- Tim Gardner Fri, 21 Aug 2015 07:12:11 -0600 + +linux (4.2.0-5.5) wily; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1487173 + + [ Andy Whitcroft ] + + * [Packaging] correct spelling of probabaly on the tools packages + - LP: #1256822 + * rebase to v4.2-rc7 + + [ dann frazier ] + + * d-i: Add nicpf and nicvf to nic-modules + * d-i: Enable usb modules on arm64 + + [ Mahesh Salgaonkar ] + + * SAUCE: powerpc/powernv: display reason for Malfunction Alert HMI. + - LP: #1482343 + * SAUCE: powerpc/powernv: Pull all HMI events before panic. + - LP: #1482343 + * SAUCE: powerpc/powernv: Invoke opal_cec_reboot2() on unrecoverable + machine check errors. + - LP: #1482343 + * SAUCE: powerpc/powernv: Invoke opal_cec_reboot2() on unrecoverable HMI. + - LP: #1482343 + + [ Vipin K Parashar ] + + * SAUCE: powerpc/powernv: Add poweroff (EPOW, DPO) events support for + PowerNV platform + - LP: #1469771 + + [ Upstream Kernel Changes ] + + * rebase to v4.2-rc7 + + -- Tim Gardner Tue, 11 Aug 2015 09:48:40 -0600 + +linux (4.2.0-4.4) wily; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1483677 + + [ Achiad Shochat ] + + * SAUCE: net/mlx5e: Support TX packet copy into WQE + * SAUCE: net/mlx5e: TX latency optimization to save DMA reads + * SAUCE: net/mlx5e: Cosmetics: use BIT() instead of "1 <<", and others + * SAUCE: net/mlx5e: Input IPSEC.SPI into the RX RSS hash function + + [ Adam Lee ] + + * SAUCE: serial: 8250_pci: Add support for Pericom PI7C9X795[1248] + - LP: #1480142 + + [ dann frazier ] + + * [Config] CONFIG_NR_CPUS=128 on arm64 + + [ Leann Ogasawara ] + + * [Config] d-i -- Add sfc to nic-modules udeb + - LP: #1481490 + + [ Saeed Mahameed ] + + * SAUCE: net/mlx5e: Support ETH_RSS_HASH_XOR + * SAUCE: net/mlx5e: Allocate DMA coherent memory on reader NUMA node + + [ Tim Gardner ] + + * [Config] CONFIG_X86_INTEL_MPX=y + - LP: #1460902 + * [Debian] change dependency on module-init-tools to kmod + - LP: #1481986 + * rebase to v4.2-rc6 + + [ Upstream Kernel Changes ] + + * rebase to v4.2-rc6 + + -- Tim Gardner Tue, 04 Aug 2015 16:59:45 -0600 + +linux (4.2.0-3.3) wily; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1481462 + * SAUCE: workqueue: Make flush_workqueue() available again to non GPL modules + Fixes an FTBS for at least one DKMS package. + + -- Tim Gardner Tue, 04 Aug 2015 11:26:53 -0600 + +linux (4.2.0-2.2) wily; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1481067 + * rebase to v4.2-rc5 + + [ Andy Whitcroft ] + + * [Packaging] module-inclusion -- commonise copy code and simplify + * [Packaging] module-inclusion -- add manual command entries + * [Packaging] module blacklists -- add support for manual blacklists + * [Packaging] do_common_tools should always be on + * [Packaging] initscripts need installing when making the package + * [Packaging] initscripts work around bug in debhelper systemd support + * [Config] exclude oss modules from linux-image + - LP: #1434842 + * hyper-v -- add hid and fb drivers to linux-virtual + - LP: #1444179 + * ubuntu: (no-squash) vbox -- infrastructure and updater + * ubuntu: vbox -- elide the new symlinks and reconstruct on clean: + - LP: #1426113 + * ubuntu: vbox -- update to 5.0.0-dfsg-1 + - LP: #1480879 + * SAUCE: vbox: follow v4.2 updates to follow_link()/put_link() API + * [Config] move vbox modules into linux-image + + [ Upstream Kernel Changes ] + + * rebase to v4.2-rc5 + - LP: #1478497 + - LP: #1477900 + + -- Andy Whitcroft Mon, 03 Aug 2015 12:20:10 +0100 + +linux (4.2.0-1.1~rc1) wily; urgency=low + + [ Andy Whitcroft ] + + * Release Tracking Bug + - LP: #1479903 + * Initial upload of v4.2 based kernel (currently v4.-rc4) + + [ Upstream Kernel Changes ] + + * rebase to v4.2-rc4 + - LP: #1476987 + - LP: #1476888 + * rebase to v4.2-rc3 + * rebase to v4.2-rc2 + * rebase to v4.2-rc1 + - LP: #1394368 + - LP: #1427680 + - LP: #1462614 + - LP: #1397021 + + -- Andy Whitcroft Thu, 30 Jul 2015 18:42:46 +0100 + +linux (4.1.0-3.3) wily; urgency=low + + [ Andy Whitcroft ] + + * Release Tracking Bug + - LP: #1478897 + + [ Colin Ian King ] + + * SAUCE: KEYS: ensure we free the assoc array edit if edit is valid + - CVE-2015-1333 + + [ Seth Forshee ] + + * SAUCE: overlayfs: Enable user namespace mounts for the "overlay" fstype + - LP: #1478578 + + [ Upstream Kernel Changes ] + + * sched/stop_machine: Fix deadlock between multiple stop_two_cpus() + - LP: #1461620 + * x86/nmi: Enable nested do_nmi() handling for 64-bit kernels + * x86/nmi/64: Remove asm code that saves cr2 + * x86/nmi/64: Switch stacks on userspace NMI entry + * x86/nmi/64: Reorder nested NMI checks + * x86/nmi/64: Use DF to avoid userspace RSP confusing nested NMI + detection + + -- Andy Whitcroft Tue, 28 Jul 2015 11:59:03 +0100 + +linux (4.1.0-2.4) wily; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: overlayfs: when copying up and reading directories ensure + mounter had permissions V2 + - CVE-2015-1328 + + [ Leann Ogasawara ] + + * Release Tracking Bug + - LP: #1465419 + + -- Leann Ogasawara Mon, 15 Jun 2015 14:09:22 -0700 + +linux (4.1.0-2.2) wily; urgency=low + + [ Tim Gardner ] + + * rebase to v4.1.3 + * [Config] Add i40e[vf] to d-i + - LP: #1476393 + + [ Upstream Kernel Changes ] + + * rebase to v4.1.3 + - LP: #1427680 + - LP: #1462614 + - LP: #1394368 + + -- Tim Gardner Wed, 22 Jul 2015 09:13:02 -0600 + +linux (4.1.0-1.1) wily; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: overlay: add backwards compatible overlayfs format support V3 + - LP: #1395877, #1410480 + * SAUCE: overlayfs: when copying up and reading directories ensure + mounter had permissions V2 + - CVE-2015-1328 + * [Packaging] fix up Vcs-Git: to point to launchpad + * [Config] correct linux-initramfs-tool virtual linkage + - LP: #1474810 + + [ Chris J Arges ] + + * [Config] Add dm-service-time to multipath-modules + - LP: #1469240 + * [Config] Add MTD_POWERNV_FLASH and OPAL_PRD + - LP: #1464560 + + [ Jay Vosburgh ] + + * SAUCE: fan: Proof of concept implementation (v2) + - LP: #1439706 + * SAUCE: fan: tunnel multiple mapping mode (v3) + - LP: #1470091 + + [ Leann Ogasawara ] + + * Revert "SAUCE: ext4: disable ext4_punch_hole for indirect filesystems" + * Revert "SAUCE: intel_pstate: inform user that thermald is worth + considering" + * Revert "SAUCE: Work around broken ACPI backlight on Dell Inspiron 5537" + * Revert "SAUCE: dm-crypt: never use write same" + * Release Tracking Bug + - LP: #1476333 + + [ Tim Gardner ] + + * Rebase to v4.1 + - LP: #1443371 + * [Config] Enable Apparmor + * [Config] CONFIG_OVERLAY_FS_V1=y + * [Config] DEFAULT_IOSCHED="deadline" for ppc64el + - LP: #1469829 + * [Config] CONFIG_VM86=n + - LP: #1473447 + * [Config] ACORN_PARTITION=n + - LP: #1453117 + + [ Timo Aaltonen ] + + * [Config] Disable CONFIG_DRM_I915_PRELIMINARY_HW_SUPPORT + - LP: #1473319 + + [ Upstream Kernel Changes ] + + * efi: efivar_create_sysfs_entry() should return negative error codes + * efi: Add esrt support + * x86, doc: Remove cmdline_size from list of fields to be filled in for + EFI handover + * efi/esrt: Fix some compiler warnings + * efi: dmi: List SMBIOS3 table before SMBIOS table + * efi: Add 'systab' information to Documentation/ABI + * ALSA: hda - restore the MIC FIXUP for some Dell machines + - LP: #1473560 + * mtd: powernv: Add powernv flash MTD abstraction driver + - LP: #1464560 + * powerpc/powernv: Expose OPAL APIs required by PRD interface + - LP: #1464560 + * powerpc/powernv: Add opal-prd channel + - LP: #1464560 + * powerpc/powernv: fix construction of opal PRD messages + - LP: #1464560 + * powerpc/include: Add opal-prd to installed uapi headers + - LP: #1464560 + * powerpc/powernv: Fix vma page prot flags in opal-prd driver + - LP: #1464560 + + -- Leann Ogasawara Mon, 20 Jul 2015 10:16:06 -0700 + +linux (4.0.0-2.4) wily; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: overlayfs: when copying up and reading directories ensure + mounter had permissions V2 + - CVE-2015-1328 + + [ Leann Ogasawara ] + + * Release Tracking Bug + - LP: #1465419 + + -- Leann Ogasawara Mon, 15 Jun 2015 14:09:22 -0700 + +linux (4.0.0-1.2) wily; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: overlay: add backwards compatible overlayfs format support V3 + - LP: #1395877, #1410480 + * [Config] enable CONFIG_OVERLAY_FS_V1 + + [ Tai Nguyen ] + + * SAUCE: power: reset: Add syscon reboot device node for APM X-Gene platform + - LP: #1463211 + + [ Tim Gardner ] + + * [Config] CONFIG_HIBERNATION=n for ppc64el + - LP: #1463836 + + -- Tim Gardner Fri, 12 Jun 2015 06:11:53 -0600 + +linux (4.0.0-1.1) wily; urgency=low + + [ Leann Ogasawara ] + + * Revert "md/raid0: fix bug with chunksize not a power of 2." + - LP: #1457510 + * powerpc/powernv: Check image loaded or not before calling flash + - LP: #1461553 + + [ Tim Gardner ] + + * [Config] armhf: CPUFREQ_DT=y + - LP: #1457781 + + [ Upstream Kernel Changes ] + + * rebase to v4.0.5 + - LP: #1429756 + - LP: #1452175 + - LP: #1454656 + - LP: #1447909 + - LP: #1446517 + - LP: #1428947 + - LP: #1410704 + - LP: #1412800 + - LP: #1400215 + - LP: #1411193 + - LP: #1412800 + - LP: #1408295 + - LP: #1436745 + + -- Leann Ogasawara Tue, 09 Jun 2015 05:58:46 -0700 + +linux (3.19.0-10.10) vivid; urgency=low + + [ Andy Whitcroft ] + + * [Packaging] control -- make element ordering deterministic + * [Config] allow dracult to support initramfs as well + - LP: #1109029 + * [Packaging] generate live watchdog blacklists + - LP: #1432837 + + [ Leann Ogasawara ] + + * [Config] CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y + - LP: #1397860 + * rebase to v3.19.2 + + [ Upstream Kernel Changes ] + + * thinkpad_acpi: support new BIOS version string pattern + - LP: #1417915 + * arm64: Invalidate the TLB corresponding to intermediate page table + levels + - LP: #1432546 + * perf tools: Support parsing parameterized events + - LP: #1430341 + * perf tools: Extend format_alias() to include event parameters + - LP: #1430341 + * perf Documentation: Add event parameters + - LP: #1430341 + * perf tools: Document parameterized and symbolic events + - LP: #1430341 + * perf: provide sysfs_show for struct perf_pmu_events_attr + - LP: #1430341 + * perf: add PMU_EVENT_ATTR_STRING() helper + - LP: #1430341 + * perf: define EVENT_DEFINE_RANGE_FORMAT_LITE helper + - LP: #1430341 + * powerpc/perf/hv-24x7: parse catalog and populate sysfs with events + - LP: #1430341 + * powerpc/perf/{hv-gpci, hv-common}: generate requests with counters + annotated + - LP: #1430341 + * powerpc/perf/hv-gpci: add the remaining gpci requests + - LP: #1430341 + * powerpc/perf/hv-24x7: Document sysfs event description entries + - LP: #1430341 + * powerpc/iommu: Remove IOMMU device references via bus notifier + - LP: #1425202 + * powerpc/pseries: Fix endian problems with LE migration + - LP: #1428351 + * intel_idle: support additional Broadwell model + - LP: #1400970 + * tools/power turbostat: support additional Broadwell model + - LP: #1400970 + * KVM: x86: flush TLB when D bit is manually changed. + - LP: #1397860 + * Optimize TLB flush in kvm_mmu_slot_remove_write_access. + - LP: #1397860 + * KVM: Add generic support for dirty page logging + - LP: #1397860 + * KVM: x86: switch to kvm_get_dirty_log_protect + - LP: #1397860 + * KVM: Rename kvm_arch_mmu_write_protect_pt_masked to be more generic for + log dirty + - LP: #1397860 + * KVM: MMU: Add mmu help functions to support PML + - LP: #1397860 + * KVM: MMU: Explicitly set D-bit for writable spte. + - LP: #1397860 + * KVM: x86: Change parameter of kvm_mmu_slot_remove_write_access + - LP: #1397860 + * KVM: x86: Add new dirty logging kvm_x86_ops for PML + - LP: #1397860 + * KVM: VMX: Add PML support in VMX + - LP: #1397860 + * HID: multitouch: add support of clickpads + * HID: multitouch: Add support for button type usage + + [ Upstream Kernel Changes ] + + * rebase to v3.19.2 + - LP: #1428947 + + -- Andy Whitcroft Mon, 23 Mar 2015 15:28:16 +0000 + +linux (3.19.0-9.9) vivid; urgency=low + + [ Leann Ogasawara ] + + * Release Tracking Bug + - LP: #1430930 + + [ Shachar Raindel ] + + * SAUCE: IB/core: Prevent integer overflow in ib_umem_get address + arithmetic + - LP: #1413741 + - CVE-2014-8159 + + -- Leann Ogasawara Wed, 11 Mar 2015 10:29:17 -0700 + +linux (3.19.0-8.8) vivid; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: vbox -- elide the new symlinks and reconstruct on clean: + - LP: #1426113 + * rebase to stable v3.19.1 + + [ John Johansen ] + + * SAUCE: (no-up): apparmor: fix mediation of fs unix sockets + - LP: #1408833 + + [ Leann Ogasawara ] + + * Release Tracking Bug + - LP: #1429940 + + [ Upstream Kernel Changes ] + + * xen: correct bug in p2m list initialization + * net/mlx5_core: Fix configuration of log_uar_page_sz + - LP: #1419938 + * tpm/ibmvtpm: Additional LE support for tpm_ibmvtpm_send + - LP: #1420575 + * net/mlx4_core: Maintain a persistent memory for mlx4 device + - LP: #1422481 + * net/mlx4_core: Set device configuration data to be persistent across + reset + - LP: #1422481 + * net/mlx4_core: Refactor the catas flow to work per device + - LP: #1422481 + * net/mlx4_core: Enhance the catas flow to support device reset + - LP: #1422481 + * net/mlx4_core: Activate reset flow upon fatal command cases + - LP: #1422481 + * net/mlx4_core: Manage interface state for Reset flow cases + - LP: #1422481 + * net/mlx4_core: Handle AER flow properly + - LP: #1422481 + * net/mlx4_core: Enable device recovery flow with SRIOV + - LP: #1422481 + * net/mlx4_core: Reset flow activation upon SRIOV fatal command cases + - LP: #1422481 + * tg3: Hold tp->lock before calling tg3_halt() from tg3_init_one() + - LP: #1428111 + * rebase to v3.19.1 + - LP: #1410704 + - LP: #1411193 + - LP: #1400215 + + -- Leann Ogasawara Mon, 09 Mar 2015 10:08:29 -0700 + +linux (3.19.0-7.7) vivid; urgency=low + + [ Andy Whitcroft ] + + * Release Tracking Bug + - LP: #1426013 + + [ Upstream Kernel Changes ] + + * x86/irq: Fix regression caused by commit b568b8601f05 + * cxl: Fix leaking interrupts if attach process fails + - LP: #1415102 + * cxl: Early return from cxl_handle_fault for a shut down context + - LP: #1415102 + * cxl: Disable AFU debug flag + - LP: #1415102 + * cxl: Disable SPAP register when freeing SPA + - LP: #1415102 + * cxl: remove redundant increment of hwirq + - LP: #1415102 + * cxl: Add tracepoints + - LP: #1415102 + * cxl: Update CXL ABI documentation + - LP: #1415102 + * cxl: Use image state defaults for reloading FPGA + - LP: #1415102 + * cxl: Add image control to sysfs + - LP: #1415102 + * cxl: Enable CAPP recovery + - LP: #1415102 + * cxl: Add ability to reset the card + - LP: #1415102 + * cxl: Fix device_node reference counting + - LP: #1415102 + * cxl: Export optional AFU configuration record in sysfs + - LP: #1415102 + * cxl: Fail AFU initialisation if an invalid configuration record is + found + - LP: #1415102 + * cxl: Add missing return statement after handling AFU errror + - LP: #1415102 + * powerpc/eeh: Introduce flag EEH_PE_REMOVED + - LP: #1415102 + * powerpc/eeh: Allow to set maximal frozen times + - LP: #1415102 + * HID: i2c-hid: Limit reads to wMaxInputLength bytes for input events + + -- Andy Whitcroft Thu, 26 Feb 2015 16:00:18 +0000 + +linux (3.19.0-6.6) vivid; urgency=low + + [ Andy Whitcroft ] + + * systemd -- fix hyper-v units to be non-forking + - LP: #1401525 + * [Config] move vbox modules into linux-image + * ubuntu: vbox -- update to 4.3.22-dfsg-1 + + [ Brad Figg ] + + * SAUCE: DEP8 test to run our regression tests + + [ Paolo Pisati ] + + * [Config] I2C_CHARDEV=y + - LP: #1417032 + + [ Upstream Kernel Changes ] + + * PCI: Fix infinite loop with ROM image of size 0 + * tpm: Fix NULL return in tpm_ibmvtpm_get_desired_dma + * Bluetooth: ath3k: workaround the compatibility issue with xHCI + controller + - LP: #1400215 + + -- Andy Whitcroft Thu, 19 Feb 2015 12:44:43 +0000 + +linux (3.19.0-5.5) vivid; urgency=low + + [ Andy Whitcroft ] + + * [Config] CONFIG_FA_DUMP=y + - LP: #1415562 + * ubuntu: (no-squash) vbox -- infrastructure and updater + * ubuntu: vbox -- update to 4.3.20-dfsg-1ubuntu1 + * rebase to v3.19 final + + [ Chris J Arges ] + + * [Config] Add ibmvfc to d-i + - LP: #1416001 + * SAUCE: ext4: disable ext4_punch_hole for indirect filesystems + - LP: #1292234 + + [ Upstream Kernel Changes ] + + * rebase to v3.19 + + -- Andy Whitcroft Mon, 09 Feb 2015 10:41:11 +0000 + +linux (3.19.0-4.4) vivid; urgency=low + + [ Andy Whitcroft ] + + * [Config] apply Kernel hacking >> Tracers config defaults + * hyper-v -- fix comment handing in /etc/network/interfaces + - LP: #1413020 + * rebase to v3.19-rc7 + * updateconfigs following rebase to v3.19-rc7 + + [ Ben Hutchings ] + + * SAUCE: rtsx_usb_ms: Use msleep_interruptible() in polling loop + - LP: #1413149 + + [ Upstream Kernel Changes ] + + * rebase to v3.19-rc7 + + -- Andy Whitcroft Mon, 02 Feb 2015 17:03:07 +0200 + +linux (3.19.0-3.3) vivid; urgency=low + + [ Andy Whitcroft ] + + * [Debian] arm64 -- build ubuntu drivers + - LP: #1411284 + * [Packaging] config-check -- add support for enforced annotations + * [Config] annotations -- switch to ENFORCED annotations + * [Packaging] config-check -- drop support for enforce file + * [Packaging] enforce -- drop empty enforce file + * rebase to v3.19-rc5 + * [Config] add modules removed due to tighter dependencies + * [Config] updateconfigs following rebase to v3.19-rc5 + * [Config] enforce CONFIG_FHANDLE=y + - LP: #1412543 + * [Packaging] hyper-v -- daemons now require -n for non-forking startup + - LP: #1408355 + * [Config] CONFIG_DEBUG_INFO_SPLIT=n + - LP: #1413646 + * [Config] apply Device Drivers >> Character devices >> IPMI top-level + message handler config defaults + * [Config] apply Device Drivers >> Character devices >> Serial drivers + config defaults + * [Config] apply Device Drivers >> GPIO Support config defaults + * [Config] apply Device Drivers >> Graphics support >> Direct Rendering + Manager >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI + support) config defaults + * [Config] apply Device Drivers >> Graphics support >> Frame buffer + Devices >> Support for frame buffer devices config defaults + * [Config] apply Device Drivers >> HID support >> HID bus support >> + Special HID drivers config defaults + * [Config] apply Device Drivers >> Hardware Monitoring support config + defaults + * [Config] apply Device Drivers >> I2C support >> I2C support >> I2C + Hardware Bus support config defaults + * [Config] apply Device Drivers >> Industrial I/O support >> Analog to + digital converters config defaults + * [Config] apply Device Drivers >> Industrial I/O support >> Humidity + sensors config defaults + * [Config] apply Device Drivers >> Industrial I/O support >> Pressure + sensors config defaults + * [Config] apply Device Drivers >> Input device support >> Generic input + layer (needed for keyboard, mouse, ...) >> Mice config defaults + * [Config] apply Device Drivers >> Input device support >> Generic input + layer (needed for keyboard, mouse, ...) >> Touchscreens config defaults + * [Config] apply Device Drivers >> LED Support >> LED Class Support + config defaults + * [Config] apply Device Drivers >> MMC/SD/SDIO card support config + defaults + * [Config] apply Device Drivers >> Multifunction device drivers config + defaults + * [Config] apply Device Drivers >> Multimedia support >> Cameras/video + grabbers support >> Media test drivers config defaults + * [Config] apply Device Drivers >> Multimedia support >> Media PCI + Adapters config defaults + * [Config] apply Device Drivers >> Multimedia support >> Remote + Controller devices config defaults + * [Config] apply Device Drivers >> Network device support >> Distributed + Switch Architecture drivers config defaults + * [Config] apply Device Drivers >> Network device support >> Network core + driver support config defaults + * [Config] apply Device Drivers >> Network device support >> Wireless LAN + >> Hermes chipset 802.11b support (Orinoco/Prism2/Symbol) config + defaults + * [Config] apply Device Drivers >> Network device support >> Wireless LAN + >> Intel PRO/Wireless 2200BG and 2915ABG Network Connection config + defaults + * [Config] apply Device Drivers >> PHY Subsystem config defaults + * [Config] apply Device Drivers >> Pin controllers config defaults + * [Config] apply Device Drivers >> SPI support config defaults + * [Config] apply Device Drivers >> Sound card support >> Advanced Linux + Sound Architecture >> ALSA for SoC audio support config defaults + * [Config] apply Device Drivers >> Sound card support >> Advanced Linux + Sound Architecture >> FireWire sound devices config defaults + * [Config] apply Device Drivers >> Sound card support >> Advanced Linux + Sound Architecture >> HD-Audio config defaults + * [Config] apply Device Drivers >> Staging drivers >> Lustre file system + client support config defaults + * [Config] apply Device Drivers >> Staging drivers >> Media staging + drivers config defaults + * [Config] apply Device Drivers >> USB support >> USB Gadget Support >> + USB Gadget Drivers >> USB functions configurable through configfs + config defaults + * [Config] apply Device Drivers >> USB support >> USB Gadget Support >> + USB Peripheral Controller config defaults + * [Config] apply Networking support >> NFC subsystem support >> Near + Field Communication (NFC) devices config defaults + * [Config] apply Networking support >> Networking options >> Network + packet filtering framework (Netfilter) >> Core Netfilter Configuration + >> Netfilter nf_tables support config defaults + * [Config] apply Networking support >> Networking options >> QoS and/or + fair queueing >> Actions config defaults + * [Config] apply Networking support >> Networking options >> TCP/IP + networking config defaults + * [Config] apply Networking support >> Wireless >> Generic IEEE 802.11 + Networking Stack (mac80211) config defaults + * [Config] apply Device Drivers >> Input device support >> Generic input + layer (needed for keyboard, mouse, ...) >> Keyboards config defaults + * [Config] apply Device Drivers >> Input device support >> Generic input + layer (needed for keyboard, mouse, ...) >> Mice config defaults + * [Config] apply Device Drivers >> Pulse-Width Modulation (PWM) Support + config defaults + * [Config] apply Networking support >> Networking options >> Network + packet filtering framework (Netfilter) >> IP: Netfilter Configuration + >> IPv4 NAT config defaults + * [Config] apply Networking support >> Networking options >> Network + packet filtering framework (Netfilter) >> IPv6: Netfilter Configuration + >> IPv6 NAT config defaults + * [Config] apply Kernel hacking >> Kernel debugging config defaults + * [Config] apply General setup >> Timers subsystem >> Timer tick handling + config defaults + * SAUCE: arm64 -- psci tell the compiler which registers we are needing + values in + - LP: #1414002 + * [Config] apply Device Drivers >> Network device support >> Wireless LAN + >> Intel Wireless WiFi Next Gen AGN - Wireless-N/Advanced-N/Ultimate-N + (iwlwifi) config defaults + * [Config] apply Device Drivers >> Real Time Clock config defaults + * [Config] apply Device Drivers >> SCSI device support >> SCSI device + support >> SCSI low-level drivers config defaults + * [Config] apply General setup >> CPU/Task time and stats accounting >> + Cputime accounting config defaults + * [Config] apply Device Drivers >> Mailbox Hardware Support config + defaults + * rebase to v3.19-rc6 + * [Config] updateconfigs following rebase to v3.19-rc6 + + [ Kamal Mostafa ] + + * [Packaging] force "dpkg-source -I -i" behavior + + [ Leann Ogasawara ] + + * [Config] Disable CONFIG_USB_OTG + - LP: #1411295 + + [ Upstream Kernel Changes ] + + * overlay: add backwards compatible overlayfs format support (fixes) + - LP: #1410480 + + [ Upstream Kernel Changes ] + + * rebase to v3.19-rc5 + * rebase to v3.19-rc6 + + -- Andy Whitcroft Mon, 26 Jan 2015 11:37:39 +0000 + +linux (3.19.0-2.2) vivid; urgency=low + + [ Andy Whitcroft ] + + * rebase to v3.19-rc4 + * [Config] updateconfigs following rebase to v3.19-rc4 + * [Packaging] install all dtb files + - LP: #1408002 + * [Config] switch on "all" dtbs + - LP: #1408002 + + [ Colin Ian King ] + + * SAUCE: drivers/rtc/interface.c: ignore exprired times when enqueing new + timers + - LP: #1333569 + + [ Joseph Salisbury ] + + * [Config] Enable CONFIG_N_GSM as module. + - LP: #1404670 + + [ K. Y. Srinivasan ] + + * SAUCE: storvsc: force SPC-3 compliance on win8 and win8 r2 hosts + - LP: #1406867 + + [ Steve McIntyre ] + + * SAUCE: efi: Expose underlying UEFI firmware platform size to userland + - LP: #1409750 + + [ Upstream Kernel Changes ] + + * rebase to v3.19-rc4 + + -- Andy Whitcroft Tue, 13 Jan 2015 12:35:58 +0000 + +linux (3.19.0-1.1) vivid; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: AUFS -- aufs3-standalone.patch" + * Revert "SAUCE: AUFS -- aufs3-mmap.patch" + * Revert "SAUCE: AUFS -- aufs3-base.patch" + * ubuntu: AUFS3 -- follow switch to vfs_fallocate + * rebase to v3.19-rc1 + * rebase to v3.19-rc2 + * [Config] defaultconfigs following rebase to v3.19-rc2 + * ubuntu: aufs3 -- follow rename of d_child + * ubuntu: aufs3 -- follow switch to d_splice_alias + * ubuntu: aufs3 -- follow switch to get_unused_fd_flags() + * ubuntu: aufs3 -- follow rename for d_alias + * apparmor -- follow change to this_cpu_ptr + * disable module checks for rebase + * ubuntu: AUFS -- substrate: aufs3-base.patch + * ubuntu: AUFS -- substrate: aufs3-mmap.patch + * ubuntu: AUFS -- substrate: aufs3-standalone.patch + * ubuntu: AUFS -- update to 92ad9cc8bd289bf8e59b6bd8d83137d8e1a58c1c + * [Configs] updateconfigs following aufs update + * v3.19 series start + * rebase to v3.19-rc3 + * [Configs] updateconfigs following rebase to v3.19-rc3 + * [Packaging] uploadnum should be the remainder of the version + - LP: #1407755 + * [Packaging] handle dts directories + - LP: #1408004 + * [Config] follow move of arm64 dts' into vendor directories + + [ Upstream Kernel Changes ] + + * arm64: optimized copy_to_user and copy_from_user assembly code + - LP: #1400349 + * iommu/ipmmu-vmsa: follow flag switch to IOMMU_NOEXEC + + [ Upstream Kernel Changes ] + + * rebase to v3.19-rc1 + - LP: #1173681 + * rebase to v3.19-rc2 + * rebase to v3.19-rc3 + + -- Andy Whitcroft Tue, 06 Jan 2015 14:30:02 +0000 + +linux (3.18.0-7.8) vivid; urgency=low + + [ Leann Ogasawara ] + + * Release Tracking Bug + - LP: #1401590 + + [ John Johansen ] + + * SAUCE: (no-up) apparmor: Sync to apparmor3 - RC1 snapshot + - LP: #1362199 + * SAUCE: Revert: fix: only allow a single threaded process to ... + - LP: #1371310 + * SAUCE: (no-up) fix: bad unix_addr_fs macro + - LP: #1390223 + * SAUCE: (no-up) apparmor: add parameter to control whether policy + hashing is used + - LP: #1383886 + * [config] set apparmor config options + + [ Seth Forshee ] + + * [Config] CONFIG_FW_LOADER_USER_HELPER_FALLBACK=n + - LP: #1398458 + + [ Upstream Kernel Changes ] + + * mfd: rtsx: Fix PM suspend for 5227 & 5249 + - LP: #1359052 + * mmc: sdhci-pci-o2micro: Fix Dell E5440 issue + - LP: #1346067 + + -- Leann Ogasawara Thu, 11 Dec 2014 08:36:36 -0800 + +linux (3.18.0-6.7) vivid; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: (no-up) arm64: optimized copy_to_user and copy_from_user + assembly code" + - LP: #1398596 + * rebase to v3.18 + + [ Chris J Arges ] + + * [Config] CONFIG_PCIEASPM_DEBUG=y + - LP: #1398544 + + [ Paolo Pisati ] + + * [Config] armhf: VIRTIO_[BALLOON|MMIO]=y + - LP: #1396470 + + [ Upstream Kernel Changes ] + + * drivers:scsi:storvsc: Fix a bug in handling ring buffer failures that + may result in I/O freeze + - LP: #1400289 + + [ Upstream Kernel Changes ] + + * rebase to v3.18 + + -- Leann Ogasawara Mon, 08 Dec 2014 09:15:17 -0800 + +linux (3.18.0-5.6) vivid; urgency=low + + [ Leann Ogasawara ] + + * Release Tracking Bug + - LP: #1398109 + + [ Andy Whitcroft ] + + * [Config] CONFIG_SCSI_MQ_DEFAULT=n + - LP: #1397061 + * rebase to v3.18-rc7 + + [ Chris J Arges ] + + * [Config] CONFIG_SCOM_DEBUGFS=y for powerpc/powerpc64-smp + ppc64el/generic + - LP: #1395855 + + [ Upstream Kernel Changes ] + + * rebase to v3.18-rc7 + - LP: #1389497 + + -- Leann Ogasawara Mon, 01 Dec 2014 10:09:09 -0800 + +linux (3.18.0-4.5) vivid; urgency=low + + [ Leann Ogasawara ] + + * Release Tracking Bug + - LP: #1395891 + + [ Andy Whitcroft ] + + * rebase to v3.18-rc6 + * [Config] update configs following rebase to v3.18-rc6 + * [Config] enable overlayfs v1 support + + [ Tim Gardner ] + + * rebase to v3.18-rc5 + + [ Upstream Kernel Changes ] + + * overlay: add backwards compatible overlayfs format support + - LP: #1395877 + + [ Upstream Kernel Changes ] + + * rebase to v3.18-rc5 + * rebase to v3.18-rc6 + + -- Leann Ogasawara Mon, 24 Nov 2014 13:12:48 -0800 + +linux (3.18.0-3.4) vivid; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Config] CONFIG_AUFS_FS=n for FTBS" + * Revert "SAUCE: AUFS -- update to + dcf336a754c86d5ee1c3d50699fd75c586d037cb" + * Revert "SAUCE: aufs3 -- (no-up) aufs3-standalone.patch" + * Revert "SAUCE: aufs3 -- (no-up) aufs3-base.patch" + * [Config] amd64 is now the indep architecture + * [Debian] basic hook support + * SAUCE: AUFS -- aufs3-base.patch + * SAUCE: AUFS -- aufs3-mmap.patch + * SAUCE: AUFS -- aufs3-standalone.patch + * ubuntu: AUFS -- update to 9d5c349d5c452170b8e813d86956f896a0aef170 + * [Config] updateconfigs following aufs3 update + * SAUCE: AUFS (no-squash): basic framework and update machinary -- part 2 + + [ dann frazier ] + + * [Config] Disable CONFIG_IPMI_SI_PROBE_DEFAULTS on armhf and arm64 + - LP: #1388952 + * [Config] disable CONFIG_ARM64_RANDOMIZE_TEXT_OFFSET + * [Config] Disable CONFIG_RCU_USER_QS on arm64 + + [ Tim Gardner ] + + * rebase to v3.18-rc4 + + [ Upstream Kernel Changes ] + + * rebase to v3.18-rc4 + - LP: #1389497 + - LP: #1387128 + + -- Andy Whitcroft Tue, 11 Nov 2014 17:16:13 +0000 + +linux (3.18.0-2.2) vivid; urgency=low + + [ Tim Gardner ] + + * SAUCE: nft_reject_bridge.c: Include net/ip6_checksum.h + + [ Upstream Kernel Changes ] + + * rebase to v3.18-rc3 + + -- Tim Gardner Mon, 03 Nov 2014 06:09:06 -0700 + +linux (3.18.0-1.1) vivid; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Config] Switch kernel to vmlinuz (from vmlinux) on ppc64el" + * [Config] tools -- only build common tools when enabled + * [Config] follow rename of DEB_BUILD_PROFILES + * [Config] linux-image-extra is additive to linux-image + - LP: #1375310 + * [Config] linux-image-extra postrm is not needed on purge + * [Config] enable cloud tools on i386 + - LP: #1367399 + + [ Marc Dietrich ] + + * [Config] arm/tegra/d-i: framebuffer and usb support for Tegra SoCs + + [ Paolo Pisati ] + + * [Config] armhf: REGULATOR_TWL4030=y + * [Config] armhf: disable JUMP_LABEL + - LP: #1378856 + + [ Tim Gardner ] + + * rebase to v3.17-rc2 + * updateconfigs + * [Config] CONFIG_NFC_ST21NFCB=n + * [Config] Added net/6lowpan/* to generic inclusion list + * [Config] Add arm64 to enforcer CONFIG_CC_STACKPROTECTOR + * rebase to v3.17-rc3 + * rebase to v3.17-rc4 + * rebase to v3.17-rc5 + * [Config] armhf: USB_[E|O]HCI_EXYNOS=y + * [Config] CONFIG_XMON=y + - LP: #1365655 + * [Config] CONFIG_KVM_BOOK3S_64=m for ppc64el + - LP: #1362514 + * [Config] CONFIG_KVM_BOOK3S_64_HV=m + - LP: #1362514 + * [Config] CONFIG_DMA_CMA=n + - LP: #1362261 + * [Config] Add mpt3sas to d-i + - LP: #1368907 + * [Debian] set do_*_tools after stage1 or bootstrap is determined + - LP: #1370211 + * [Config] CONFIG_USB_OHCI_HCD_PCI=y + - LP: #1244176 + * rebase to v3.17-rc6 + * SAUCE: usbip: Update include path + * [Debian] usbip tools packaging + - LP: #898003 + * [Config] Enable usbip tools + - LP: #898003 + * [Config] CONFIG_CRASH_DUMP=n for powerpc-smp + - LP: #1363180 + * [Config] Correct annotation regarding CONFIG_DMA_CMA + - LP: #1362261 + * [Config] CONFIG_SND_HDA_INTEL=n for ppc64el + - LP: #1374438 + * [Config] CONFIG_HOTPLUG_PCI_SHPC=n for ppc64el + - LP: #1374440 + * [Debian] Don't fail if a symlink already exists + * rebase to v3.17-rc7 + * [Config] CONFIG_HOTPLUG_PCI_PCIE=n for ppc64el + - LP: #1374440 + * rebase to v3.17 + * rebase to v3.18-rc1 + * [Config] CONFIG_AUFS_FS=n for FTBS + * Enable vivid + * [Config] CONFIG_SOUND_OSS_CORE_PRECLAIM=n + - LP: #1385510 + * rebase to v3.18-rc2 + * [Debian] Fix linux-doc dangling symlinks + - LP: #661306 + * CONFIG_MODULE_COMPRESS=n + * [Config] dropped scsi_tgt from generic inclusion list + * [Config] Added drivers/uio to generic inclusion list + * [Config] CONFIG_PATA_MACIO=y + - LP: #1378894 + * [Config] CONFIG_DRM_BOCHS=n + * [Debian] install usbipd + - LP: #898003 + + [ Upstream Kernel Changes ] + + * rebase to v3.18-rc2 + + [ Upstream Kernel Changes ] + + * rebase to v3.18-rc1 + - LP: #1316518 + - LP: #1371591 + - LP: #1357928 + + [ Upstream Kernel Changes ] + + * rebase to v3.17 + + [ Upstream Kernel Changes ] + + * rebase to v3.17-rc7 + + [ Upstream Kernel Changes ] + + * rebase to v3.17-rc6 + + [ Upstream Kernel Changes ] + + * rebase to v3.17-rc5 + + [ Upstream Kernel Changes ] + + * rebase to v3.17-rc4 + + [ Upstream Kernel Changes ] + + * rebase to v3.17-rc3 + + [ Upstream Kernel Changes ] + + * rebase to v3.17-rc2 + - LP: #1358116 + - LP: #1350148 + - LP: #1334950 + - LP: #1329580 + - LP: #1329580 + - LP: #1329580 + + [ Upstream Kernel Changes ] + + * rebase to v3.17-rc2 + + -- Tim Gardner Tue, 26 Aug 2014 10:36:19 -0600 + +linux (3.17.0-0.0) utopic; urgency=medium + + * Empty entry + + -- Tim Gardner Tue, 26 Aug 2014 10:34:44 -0600 + +linux (3.16.0-11.16) utopic; urgency=low + + [ Mauricio Faria de Oliveira ] + + * [Config] Switch kernel to vmlinuz (from vmlinux) on ppc64el + - LP: #1358920 + + [ Peter Zijlstra ] + + * SAUCE: (no-up) mmu_notifier: add call_srcu and sync function for listener to delay call and sync + - LP: #1361300 + + [ Tim Gardner ] + + * [Config] CONFIG_ZPOOL=y + - LP: #1360428 + * Release Tracking Bug + - LP: #1361308 + + [ Upstream Kernel Changes ] + + * Revert "net/mlx4_en: Fix bad use of dev_id" + - LP: #1347012 + * net/mlx4_en: Reduce memory consumption on kdump kernel + - LP: #1347012 + * net/mlx4_en: Fix mac_hash database inconsistency + - LP: #1347012 + * net/mlx4_en: Disable blueflame using ethtool private flags + - LP: #1347012 + * net/mlx4_en: current_mac isn't updated in port up + - LP: #1347012 + * net/mlx4_core: Use low memory profile on kdump kernel + - LP: #1347012 + * Drivers: scsi: storvsc: Change the limits to reflect the values on the host + - LP: #1347169 + * Drivers: scsi: storvsc: Set cmd_per_lun to reflect value supported by the Host + - LP: #1347169 + * Drivers: scsi: storvsc: Filter commands based on the storage protocol version + - LP: #1347169 + * Drivers: scsi: storvsc: Fix a bug in handling VMBUS protocol version + - LP: #1347169 + * Drivers: scsi: storvsc: Implement a eh_timed_out handler + - LP: #1347169 + * drivers: scsi: storvsc: Set srb_flags in all cases + - LP: #1347169 + * drivers: scsi: storvsc: Correctly handle TEST_UNIT_READY failure + - LP: #1347169 + * namespaces: Use task_lock and not rcu to protect nsproxy + - LP: #1328088 + * net: xgene: Check negative return value of xgene_enet_get_ring_size() + * mm/zbud: change zbud_alloc size type to size_t + - LP: #1360428 + * mm/zpool: implement common zpool api to zbud/zsmalloc + - LP: #1360428 + * mm/zpool: zbud/zsmalloc implement zpool + - LP: #1360428 + * mm/zpool: update zswap to use zpool + - LP: #1360428 + * ideapad-laptop: Change Lenovo Yoga 2 series rfkill handling + - LP: #1341296 + * iommu/amd: Fix for pasid initialization + - LP: #1361300 + * iommu/amd: Moving PPR fault flags macros definitions + - LP: #1361300 + * iommu/amd: Drop oprofile dependency + - LP: #1361300 + * iommu/amd: Fix typo in amd_iommu_v2 driver + - LP: #1361300 + * iommu/amd: Don't call mmu_notifer_unregister in __unbind_pasid + - LP: #1361300 + * iommu/amd: Don't free pasid_state in mn_release path + - LP: #1361300 + * iommu/amd: Get rid of __unbind_pasid + - LP: #1361300 + * iommu/amd: Drop pasid_state reference in ppr_notifer error path + - LP: #1361300 + * iommu/amd: Add pasid_state->invalid flag + - LP: #1361300 + * iommu/amd: Don't hold a reference to mm_struct + - LP: #1361300 + * iommu/amd: Don't hold a reference to task_struct + - LP: #1361300 + * iommu/amd: Don't call the inv_ctx_cb when pasid is not set up + - LP: #1361300 + * iommu/amd: Don't set pasid_state->mm to NULL in unbind_pasid + - LP: #1361300 + * iommu/amd: Remove change_pte mmu_notifier call-back + - LP: #1361300 + * iommu/amd: Fix device_state reference counting + - LP: #1361300 + * iommu/amd: Fix 2 typos in comments + - LP: #1361300 + + -- Tim Gardner Fri, 22 Aug 2014 08:45:54 -0400 + +linux (3.16.0-10.15) utopic; urgency=low + + [ dann frazier ] + + * [debian] Fix regression with ABI subversions and backport + + [ Feng Kan ] + + * SAUCE: (no-up) irqchip:gic: change access of gicc_ctrl register to read + modify write. + - LP: #1357527 + * SAUCE: (no-up) arm64: optimized copy_to_user and copy_from_user + assembly code + - LP: #1358949 + + [ Stefan Bader ] + + * SAUCE: bcache: prevent crash on changing writeback_running + - LP: #1357295 + + [ Tim Gardner ] + + * [Config] CONFIG_XFRM_STATISTICS=y + * [Config] CONFIG_SECURITY_NETWORK_XFRM=y + * [Config] CONFIG_SENSORS_IBMPOWERNV=m + - LP: #1353005 + * Release Tracking Bug + - LP: #1359783 + + [ Upstream Kernel Changes ] + + * intel_idle: Broadwell support + - LP: #1256170 + * powerpc/book3s: Add basic infrastructure to handle HMI in Linux. + - LP: #1357108 + * powerpc/powernv: Invoke opal call to handle hmi. + - LP: #1357108 + * powerpc/book3s: handle HMIs for cpus in nap mode. + - LP: #1357108 + * powerpc/book3s: Fix endianess issue for HMI handling on napping cpus. + - LP: #1357108 + * powerpc: Add smp_mb() to arch_spin_is_locked() + - LP: #1358569 + * powerpc: Add smp_mb()s to arch_spin_unlock_wait() + - LP: #1358569 + * hwmon: (powerpc/powernv) hwmon driver for power, fan rpm, voltage and + temperature + - LP: #1353005 + * tools/testing/selftests/ptrace/peeksiginfo.c: add PAGE_SIZE definition + - LP: #1358855 + * printk: Add function to return log buffer address and size + - LP: #1359423 + * powerpc/powernv: Interface to register/unregister opal dump region + - LP: #1359423 + * bcache: fix crash on shutdown in passthrough mode + - LP: #1357295 + * bcache: fix uninterruptible sleep in writeback thread + - LP: #1357295 + + [ Vinayak Kale ] + + * SAUCE: (no-up) dt-bindings: Add Potenza PMU binding + - LP: #1357527 + * SAUCE: (no-up) arm64: dts: Add PMU node for APM X-Gene Storm SOC + - LP: #1357527 + + -- Tim Gardner Fri, 15 Aug 2014 12:34:33 -0600 + +linux (3.16.0-9.14) utopic; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1357370 + + [ Serge Hallyn ] + + * SAUCE: Overlayfs: allow unprivileged mounts + - LP: #1357025 + + [ Upstream Kernel Changes ] + + * MAINTAINERS: Add entry for APM X-Gene SoC ethernet driver + * Documentation: dts: Add bindings for APM X-Gene SoC ethernet driver + * dts: Add bindings for APM X-Gene SoC ethernet driver + * drivers: net: Add APM X-Gene SoC ethernet driver support. + * powerpc/thp: Add write barrier after updating the valid bit + - LP: #1357014 + * powerpc/thp: Don't recompute vsid and ssize in loop on invalidate + - LP: #1357014 + * powerpc/thp: Invalidate old 64K based hash page mapping before insert + of 4k pte + - LP: #1357014 + * powerpc/thp: Handle combo pages in invalidate + - LP: #1357014 + * powerpc/thp: Invalidate with vpn in loop + - LP: #1357014 + * powerpc/thp: Use ACCESS_ONCE when loading pmdp + - LP: #1357014 + * powerpc/mm: Use read barrier when creating real_pte + - LP: #1357014 + * powerpc/thp: Add tracepoints to track hugepage invalidate + - LP: #1357014 + * rebase to v3.16.1 + + -- Tim Gardner Thu, 14 Aug 2014 08:18:02 -0400 + +linux (3.16.0-8.13) utopic; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1356403 + + [ dann frazier ] + + * [debian] Allow for package revisions condusive for branching + + [ Upstream Kernel Changes ] + + * ahci_xgene: Fix the watermark threshold for the APM X-Gene SATA host controller driver. + - LP: #1350087 + * ahci_xgene: Use correct OOB tunning parameters for APM X-Gene SoC AHCI SATA Host controller driver. + - LP: #1350087 + * powerpc/powernv: Enable M64 aperatus for PHB3 + - LP: #1355469 + * powerpc: Fail remap_4k_pfn() if PFN doesn't fit inside PTE + - LP: #1352994 + * powerpc: Add machine_early_initcall() + - LP: #1352640 + * powerpc/powernv: Switch powernv drivers to use machine_xxx_initcall() + - LP: #1352640 + * powerpc/eeh: Avoid event on passed PE + - LP: #1352640 + * powerpc/eeh: EEH support for VFIO PCI device + - LP: #1352640 + * powerpc/eeh: sysfs entries lost + - LP: #1352640 + * powerpc/powernv: Fix IOMMU table for VFIO dev + - LP: #1352640 + * powerpc/eeh: Fetch IOMMU table in reliable way + - LP: #1352640 + * powerpc/eeh: Refactor EEH flag accessors + - LP: #1352640 + * powerpc/eeh: Selectively enable IO for error log + - LP: #1352640 + * powerpc/eeh: Reduce lines of log dump + - LP: #1352640 + * powerpc/eeh: Replace pr_warning() with pr_warn() + - LP: #1352640 + * powerpc/eeh: Make diag-data not endian dependent + - LP: #1352640 + * powerpc/eeh: Aux PE data for error log + - LP: #1352640 + * PCI: Support BAR sizes up to 128GB + - LP: #1352640 + * powerpc/powernv: Allow to freeze PE + - LP: #1352640 + * powerpc/powernv: Split ioda_eeh_get_state() + - LP: #1352640 + * powerpc/powernv: Handle compound PE + - LP: #1352640 + * powerpc/powernv: Handle compound PE for EEH + - LP: #1352640 + * powerpc/powernv: Handle compound PE in config accessors + - LP: #1352640 + * mnt: Only change user settable mount flags in remount + - LP: #1356318 + - CVE-2014-5206 + * mnt: Move the test for MNT_LOCK_READONLY from change_mount_flags into do_remount + - LP: #1356318 + - CVE-2014-5206 + * mnt: Correct permission checks in do_remount + - LP: #1356323 + - CVE-2014-5207 + * mnt: Change the default remount atime from relatime to the existing value + - LP: #1356323 + - CVE-2014-5207 + + -- Tim Gardner Sun, 10 Aug 2014 09:10:51 -0600 + +linux (3.16.0-7.12) utopic; urgency=low + + [ Andy Whitcroft ] + + * rebase to v3.16 final + * [Config] d-i -- add virtio_scsi to virtio-modules + - LP: #1342000 + + [ dann frazier ] + + * [Packaging] Fix 'printchanges' to work with versions containing '+' + + [ Tim Gardner ] + + * [Config] CONFIG_MICROCODE=y + - LP: #1084373 + * [Config] CONFIG_CONTEXT_TRACKING_FORCE=n + - LP: #1349028 + * [Config] Add hv_balloon to d-i virtio-modules + - LP: #1292216 + * Release Tracking Bug + - LP: #1354530 + + [ Upstream Kernel Changes ] + + * rebase to v3.16 + + -- Tim Gardner Tue, 29 Jul 2014 09:55:15 -0400 + +linux (3.16.0-6.11) utopic; urgency=low + + [ Paolo Pisati ] + + * [Config] armhf: MXS_DMA=y && MTD_NAND_GPMI_NAND=m + * [Config] armhf: KEYBOARD_IMX=m + * [Config] armhf: build cubox & imx6 DTBs + * [Config] armhf: RTC_DRV_PCF8523=y + + [ Tim Gardner ] + + * [Config] CONFIG_KEYS_DEBUG_PROC_KEYS=y + - LP: #1344405 + * [Config] CONFIG_SCSI_IPR_TRACE=y, CONFIG_SCSI_IPR_DUMP=y + - LP: #1343109 + * Release Tracking Bug + - LP: #1349196 + + [ Upstream Kernel Changes ] + + * rebase to v3.16-rc7 + + -- Tim Gardner Thu, 24 Jul 2014 09:08:55 -0400 + +linux (3.16.0-5.10) utopic; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1346298 + * [Config] CONFIG_GPIO_SYSFS=y + - LP: #1342153 + * rebase to v3.16-rc6 + + [ Paolo Pisati ] + + * [Config] enable ARCH_MVEBU* + * [Config] AHCI_MVEBU=m + * [Config] ARMADA_THERMAL=y + * [Config] ARM_ARMADA_370_XP_CPUIDLE=y + * [Config] CRYPTO_DEV_MV_CESA=m + * [Config] I2C_MV64XXX=m + * [Config] MMC_MVSDIO=m + * [Config] MMC_SDHCI_DOVE=m + * [Config] MTD_NAND_ORION=m + * [Config] MTD_NAND_PXA3xx=m + * [Config] MVNETA=m + * [Config] MV_XOR=y + * [Config] ORION_WATCHDOG=m + * [Config] PCI_MVEBU=y + * [Config] RTC_DRV_MV=y + * [Config] SND_KIRKWOOD_SOC*=m + * [Config] SPI_ORION=m + * [Config] USB_XHCI_MVEBU=m + * [Config] armhf: build all Armada and Dove DTBs + * [Config] armhf: SERIAL_8250_DW=y + + [ Upstream Kernel Changes ] + + * rebase to v3.16-rc6 + + -- Tim Gardner Tue, 15 Jul 2014 07:49:42 -0400 + +linux (3.16.0-4.9) utopic; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1341543 + + [ Upstream Kernel Changes ] + + * rebase to v3.16-rc5 + + -- Tim Gardner Sun, 13 Jul 2014 21:30:27 -0400 + +linux (3.16.0-3.8) utopic; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1340091 + + -- Tim Gardner Thu, 10 Jul 2014 10:06:47 +0100 + +linux (3.16.0-2.7) utopic; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: aufs3 -- avoid aufs3-mmap.patch include hell for arm64 + ubuntu: aufs3 -- (no-up) aufs3-mmap.patch + + -- Tim Gardner Wed, 09 Jul 2014 16:16:28 +0100 + +linux (3.16.0-2.6) utopic; urgency=low + + [ Andy Whitcroft ] + + * Revert "ubuntu: aufs3 -- (no-up) aufs3-mmap.patch" + Fixes FTBS. + + -- Tim Gardner Tue, 08 Jul 2014 17:29:26 +0100 + +linux (3.16.0-2.5) utopic; urgency=low + + [ Andy Whitcroft ] + + * ubuntu -- fix basic format for ubuntu/Makefile + * ubuntu: AUFS (no-squash): basic framework and update machinary + * ubuntu: aufs3 -- update update scripting + * ubuntu: aufs3 -- (no-up) aufs3-base.patch + * ubuntu: aufs3 -- (no-up) aufs3-mmap.patch + * ubuntu: aufs3 -- (no-up) aufs3-standalone.patch + * ubuntu: AUFS -- update to dcf336a754c86d5ee1c3d50699fd75c586d037cb + * [Configs] AUFS configs + * ubuntu: aufs3 -- reenable + + [ Tim Gardner ] + + * CONFIG_LATENCYTOP=n + + -- Tim Gardner Tue, 08 Jul 2014 15:27:35 +0100 + +linux (3.16.0-2.4) utopic; urgency=low + + [ Andy Whitcroft ] + + * [Config] flip VIRTIO*=y + * [Config] commonise CONFIG_SWIOTLB=y + * [Config] apply Bus options (PCI etc.) >> PCI support config defaults + * [Config] apply Device Drivers >> ATA/ATAPI/MFM/RLL support (DEPRECATED) + config defaults + * [Config] apply Device Drivers >> Block devices config defaults + * [Config] apply Device Drivers >> Character devices config defaults + * [Config] apply Device Drivers >> DMA Engine support config defaults + * [Config] apply Device Drivers >> EDAC (Error Detection And Correction) + reporting config defaults + * [Config] apply Device Drivers >> Graphics support >> Direct Rendering + Manager >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI + support) config defaults + * [Config] apply Device Drivers >> GPIO Support config defaults + * [Config] apply Device Drivers >> Graphics support >> Console display + driver support config defaults + * [Config] apply Device Drivers >> IIO staging drivers >> Accelerometers + config defaults + * [Config] apply Device Drivers >> IOMMU Hardware Support config defaults + * [Config] apply Device Drivers >> Input device support >> Generic input + layer (needed for keyboard, mouse, ...) >> Miscellaneous devices config + defaults + * [Config] apply Device Drivers >> Input device support >> Hardware I/O + ports config defaults + * [Config] apply Device Drivers >> LED Support >> LED Class Support + config defaults + * [Config] apply Device Drivers >> Hardware Spinlock drivers config + defaults + * [Config] apply Device Drivers >> Multimedia support >> Cameras/video + grabbers support config defaults + * [Config] apply Security options config defaults + * [Config] apply Networking options >> Network packet filtering framework + (Netfilter) >> Core Netfilter Configuration config defaults + * [Config] apply Device Drivers >> MMC/SD/SDIO card support config + defaults + * [Config] apply Device Drivers >> Graphics support >> Frame buffer + Devices >> Support for frame buffer devices config defaults + * [Config] apply Power management and ACPI options >> CPU Frequency + scaling config defaults + * [Config] apply Processor type and features config defaults + * [Config] apply Partition Types config defaults + * [Config] apply Power management and ACPI options config defaults + * [Config] apply Device Drivers >> InfiniBand support config defaults + * [Config] apply Device Drivers >> Misc devices config defaults + * [Config] apply Device Drivers >> Multifunction device drivers config + defaults + * [Config] apply Device Drivers >> SCSI device support >> SCSI device + support >> SCSI low-level drivers config defaults + * [Config] apply Device Drivers >> Network device support >> Ethernet + driver support config defaults + * [Config] apply Device Drivers >> Network device support >> Network core + driver support config defaults + * [Config] apply Device Drivers >> Network device support >> PHY Device + support and infrastructure config defaults + * [Config] apply File systems >> Network File Systems config defaults + * [Config] apply Device Drivers >> Input device support >> Generic input + layer (needed for keyboard, mouse, ...) >> Touchscreens config defaults + * [Config] apply Device Drivers >> Memory Technology Device (MTD) support + >> NAND Device Support config defaults + * [Config] apply Device Drivers >> Network device support >> Wireless LAN + >> Ralink driver support config defaults + * [Config] apply Device Drivers >> Staging drivers config defaults + * [Config] apply Cryptographic API >> Hardware crypto devices config + defaults + * [Config] apply Device Drivers >> Macintosh device drivers config + defaults + * [Config] apply Device Drivers >> Network device support >> Wireless LAN + config defaults + * [Config] apply Device Drivers >> PPS support config defaults + * [Config] apply Device Drivers >> Sound card support config defaults + * [Config] apply Networking support >> RF switch subsystem support config + defaults + * [Config] apply Library routines config defaults + * [Config] apply Device Drivers >> CODEC drivers config defaults + * [Config] apply Device Drivers >> PHY Subsystem config defaults + * [Config] apply Device Drivers >> Pulse-Width Modulation (PWM) Support + config defaults + * [Config] apply Kernel hacking >> Tracers config defaults + * [Config] apply Kernel hacking >> Runtime Testing config defaults + * [Config] apply Kernel hacking >> Architecture: powerpc config defaults + * [Config] apply Device Drivers >> USB support config defaults + * [Config] apply Device Drivers >> Power supply class support config + defaults + * [Config] apply Device Drivers >> USB Network Adapters config defaults + * [Config] apply General setup >> IRQ subsystem config defaults + * [Config] apply General setup config defaults + * [Config] apply File systems >> Miscellaneous filesystems config + defaults + * [Config] apply File systems config defaults + * [Config] apply Device Drivers >> Userspace I/O drivers config defaults + * [Config] apply Device Drivers >> Virtio drivers config defaults + * [Config] apply Device Drivers >> USB Peripheral Controller config + defaults + * [Config] apply Device Drivers >> SCSI device support >> SCSI device + support >> SCSI Transports config defaults + * [Config] apply Device Drivers >> Real Time Clock config defaults + * [Config] apply Device Drivers >> Serial ATA and Parallel ATA drivers + (libata) config defaults + * [Config] apply Device Drivers >> SoC Audio for Freescale CPUs config + defaults + * [Config] apply Device Drivers >> Voltage and Current Regulator Support + config defaults + * [Config] apply Device Drivers >> USB Physical Layer drivers config + defaults + * [Config] apply Device Drivers >> Watchdog Timer Support config defaults + * [Config] powerpc-powerpc-e500mc FTBFS -- CONFIG_CRASH_DUMP=n + * [Config] powerpc-powerpc64-emb FTBFS -- CONFIG_IMA=n + * [Config] powerpc-powerpc64-emb FTBFS -- CONFIG_HIBERNATION=n + CONFIG_HOTPLUG_CPU=n + * [Config] ppc64el-generic FTBFS -- CONFIG_LUSTRE_FS=n + * [Config] drivers/message/fusion needs scsi_transport_spi in virtual + * [Config] drivers/acpi/acpi_ipmi.ko needs + drivers/char/ipmi/ipmi_msghandler.ko in virtual + * [Config] armhf-* FTBFS -- CONFIG_STACK_TRACER=n + CONFIG_FUNCTION_TRACER=n + * [Config] ignore modules changing following major config changes + + [ Tim Gardner ] + + * rebase to v3.16-rc4 + + [ Upstream Kernel Changes ] + + * rebase to v3.16-rc4 + - LP: #1297581 + + -- Andy Whitcroft Thu, 03 Jul 2014 11:00:43 +0100 + +linux (3.16.0-1.3) utopic; urgency=low + + [ Andy Whitcroft ] + + * Revert "Disable do_tools_perf for FTBS" + * SAUCE: fix perf_regs definitions for arm64 + + [ Paolo Pisati ] + + * [Config] armhf: ARCH_EXYNOS5* support + * [Config] armhf: CPU_IDLE=y and ARM_EXYNOS_CPUIDLE=y + * [Config] armhf: EXYNOS_THERMAL=y + * [Config] armhf: EXYNOS_IOMMU=y + * [Config] armhf: EXYNOS_ADC=m + * [Config] armhf: EXYNOS_I2C_EXYNOS5=m + * [Config] armhf: MMC_SDHCI_S3C=m + * [Config] armhf: PCI_EXYNOS=y + * [Config] armhf: PHY_EXYNOS5250_SATA=y + * [Config] armhf: USB_[E|O]HCI_EXYNOS=y && SAMSUNG_USBPHY=y + * [Config] armhf: PWM_SAMSUNG=m + * [Config] armhf: RTC_DRV_S3C=y + * [Config] armhf: S3C2410_WATCHDOG=m + * [Config] armhf: MMC_DW_EXYNOS=m + * [Config] armhf: SERIAL_SAMSUNG=y + * [Config] armhf: SND_SOC_SAMSUNG=m + * [Config] armhf: SPI_S3C64XX=m + * [Config] armhf: EXYNOS_VIDEO=y and VIDEO_SAMSUNG*=m + * [Config] armhf: FB_S3C=m + * [Config] armhf: build all Exynos 5 DTBs + * [Config] armhf: disable CPUFREQ_EXYNOS + + [ Tim Gardner ] + + * rebase to v3.16-rc3 + + [ Upstream Kernel Changes ] + + * rebase to v3.16-rc3 + - LP: #1331915 + + -- Tim Gardner Tue, 24 Jun 2014 08:58:09 -0600 + +linux (3.16.0-0.2) utopic; urgency=low + + [ Tim Gardner ] + + * Revert "SAUCE: intel_pstate -- toggle default to disable" + - LP: #1333322 + * CONFIG_BOOKE_WDT=y + * Disable do_tools_perf for FTBS (just until I can figure it out) + + -- Tim Gardner Mon, 23 Jun 2014 13:37:53 -0600 + +linux (3.16.0-0.1) utopic; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1333265 + + [ Andy Whitcroft ] + + * [Config] cloud-tools -- add systemd units + - LP: #1329027 + + [ dann frazier ] + + * [Config] CONFIG_RTC_DRV_XGENE=y for arm64 + * [Config] CONFIG_NET_XGENE=m for arm64 + * [Config] Restrict CONFIG_POWER_RESET_SYSCON to arm64 only + + [ Feng Kan ] + + * SAUCE: (no-up) arm64: dts: Add X-Gene reboot driver dts node + * SAUCE: (no-up) Add documentation for generic SYSCON reboot driver. + * SAUCE: (no-up) Select reboot driver for X-Gene platform. + + [ Iyappan Subramanian ] + + * SAUCE: (no-up) MAINTAINERS: Add entry for APM X-Gene SoC ethernet driver + * SAUCE: (no-up) Documentation: dts: Add bindings for APM X-Gene SoC ethernet driver + * SAUCE: (no-up) dts: Add bindings for APM X-Gene SoC ethernet driver + * SAUCE: (no-up) drivers: net: Add APM X-Gene SoC ethernet driver support. + + [ Tim Gardner ] + + * updateconfigs + * Fix arm64 crypto Makefile + * [Config] CONFIG_BOOKE_WDT=n for FTBS + * [Debian] Add UTS_UBUNTU_RELEASE_ABI to utsrelease.h + - LP: #1327619 + * Disabled powerpc64-emb for FTBS + * [Config] CONFIG_DRM_TEGRA=m + * [Config] CONFIG_CMA_SIZE_MBYTES=64 + * rebase to v3.16-rc2 + * Clean up generic.inclusion-list warnings + + [ Upstream Kernel Changes ] + + * rebase to v3.16-rc2 + - LP: #1328587 + - LP: #1319291 + - LP: #1310512 + - LP: #1310512 + - LP: #1305480 + + -- Tim Gardner Thu, 12 Jun 2014 12:26:09 +0000 + +linux (3.15.0-6.11) utopic; urgency=low + + [ Adam Conrad ] + + * Enable building the sata-modules udeb on ppc64el. + - LP: #1323980 + * [Packaging] Set bootloader and loader on ppc64el to grub + + [ Adam Lee ] + + * SAUCE: (no-up) rtlwifi: rtl8723be: disable MSI interrupts mode + - LP: #1310512, #1320070 + + [ Alex Hung ] + + * SAUCE: (no-up) dell-led: add mic mute led interface + - LP: #1308297 + + [ Andy Whitcroft ] + + * [Config] d-i -- add hyperv_keyboard to serial-modules udeb + - LP: #1285434 + * [Config] tools -- enable cpupower on ppc64el + * [Config] ppc64el -- enable perf tools + * [Config] powerpc -- enable perf tools + * [Config] ppc64el -- reduce MAX_ORDER with 64k pages + * [Config] arm64 -- enable tools + - LP: #1326050 + * [Config] switch hyper-keyboard to virtual + - LP: #1325306 + * [Config] fix up Breaks/Replaces on linux-cloud-tools-common to fix + upgrades + * SAUCE: kvm: BIOS disabled kvm support should be a warning + - LP: #1300247 + * SAUCE: nouveau: missing outputs should be warnings + - LP: #1300244 + * [Config] d-i -- add nvme devices to block-modules udeb + - LP: #1303710 + + [ Anton Blanchard ] + + * SAUCE: (no-up) powerpc: 64bit sendfile is capped at 2GB + - LP: #1328230 + + [ Colin Ian King ] + + * SAUCE: intel_pstate: inform user that thermald is worth considering + + [ Dave Chiluk ] + + * [Config] Enable CONFIG_IP_VS_IPV6=y + - LP: #1300739 + + [ Paolo Pisati ] + + * [Config] build vexpress a9 dtb + - LP: #1303657 + + [ Tetsuo Handa ] + + * SAUCE: kthread: Do not leave kthread_create() immediately upon SIGKILL. + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1329045 + * [Debian] Treat vdso install as an environment variable + - LP: #1325713 + * [Config] Treat vdso install as an environment variable + - LP: #1325713 + * [config] Set IPMI suppoort default to "y" + * [Config] powerpc -- CONFIG_SCSI_IBMVSCSI=y + * [Config] CONFIG_RT_GROUP_SCHED=n + - LP: #1284731 + * [Config] ppc64el -- switch to 64K system pages + * [Config] CONFIG_MICROCODE_EARLY=y + * [Config] SND_DAVINCI_SOC && SND_AM33XX_SOC_EVM =m + * [Config] armhf: DRM_TILCDC=m + * SAUCE: (no-up) mei_me: Add module parameter to disable MSI + * [Config] arm64: KVM=y + * [Config] armhf: LEDS_TRIGGER_HEARTBEAT=y + * [Config] armhf: generic: disable CPU_IDLE + * [Config] armhf: CPU_FREQ=y + * [Config] Add new mlx modules to d-i + * [Config] Added Muti-Arch support for linux-headers-PKGVER-ABINUM, linux-tools-common, and linux-cloud-tools-common + - LP: #1295112 + * [Config] CONFIG_EXYNOS_ADC=n, CONFIG_HW_RANDOM_EXYNOS=n, CONFIG_MMC_DW_EXYNOS=n, CONFIG_USB_DWC3_EXYNOS=n + - LP: #1294353 + * [Config] CONFIG_ABX500_CORE=y for ppc64el + * [Config] CONFIG_ALX=m for powerpc + * [Config] CONFIG_ACENIC_OMIT_TIGON_I=n for ppc64el + * [Config] CONFIG_ACORN_PARTITION_*=n for ppc64el + * [Config] CONFIG_ANDROID=n for powerpc + * [Config] CONFIG_ASYNC_RAID6_TEST=m for ppc64el + * [Config] CONFIG_BIG_KEYS=y for ppc64el + * [Config] CONFIG_BSD_PROCESS_ACCT=y for ppc64el + * rebase to v3.15 + * [Config] CONFIG_PHY_XGENE=y + * [Config] CONFIG_MLX4_DEBUG=y + - LP: #1328256 + * [Config] CONFIG_POWERNV_CPUFREQ=y for powerpc, ppc64el + - LP: #1324571 + * [Config] CONFIG_BLK_DEV_SR_VENDOR=n for ppc64el + * [Config] CONFIG_CFG80211=m for ppc64el + * [Config] CONFIG_CHARGER_BQ24190=m for powerpc + * [Config] CONFIG_CHARGER_BQ24735=m for powerpc + * [Config] CONFIG_EXPERT=y for ppc64el + * [Config] CONFIG_ATA_SFF=y on ppc64el + * [Config] CONFIG_ATA_GENERIC=y for ppc64el, powerpc + * [Config] CONFIG_CHR_DEV_ST=m for ppc64el + * [Config] CONFIG_CHECKPOINT_RESTORE=y for ppc64el + * [Config] CONFIG_CHELSIO_T1_1G=y for ppc64el + * [Config] CONFIG_CHR_DEV_OSST=m for ppc64el + * [Config] CONFIG_CHR_DEV_SCH=m for ppc64el + * [Config] CONFIG_CPU_FREQ_STAT=y for powerpc + * [Config] CONFIG_DDR=y for ppc64el + * [Config] CONFIG_DEBUG_BUGVERBOSE=y for powerpc + * [Config] CONFIG_E100=m, CONFIG_E1000=m, CONFIG_E1000E=m for ppc64el + * [Config] CONFIG_EZX_PCAP=n for all arches + * [Config] CONFIG_DYNAMIC_DEBUG=y for powerpc + * [Config] CONFIG_ENABLE_MUST_CHECK=n for ppc64el + * [Config] CONFIG_ENABLE_WARN_DEPRECATED=n for ppc64el + * [Config] CONFIG_FB_3DFX=m for all arches + * [Config] CONFIG_FB_MATROX=m for ppc64el + * [Config] CONFIG_FB_RADEON=m for ppc64el + * [Config] CONFIG_FB_SAVAGE_I2C=y for all arches + * [Config] CONFIG_FIREWIRE=m for ppc64el + * [Config] CONFIG_FTR_FIXUP_SELFTEST=n for ppc64el + * [Config] CONFIG_HAMRADIO=y for ppc64el + * [Config] CONFIG_I2C_CHARDEV=m for ppc64el + * [Config] CONFIG_I2C_MUX=m for ppc64el + * [Config] CONFIG_I2C_STUB=m for ppc64el + * [Config] CONFIG_I2O=m for ppc64el + * [Config] CONFIG_INET_XFRM_MODE_BEET=m, CONFIG_INET_XFRM_MODE_TRANSPORT=m, CONFIG_INET_XFRM_MODE_TUNNEL=m for ppc64el + * [Config] CONFIG_INFINIBAND_IPOIB_DEBUG=n, CONFIG_INFINIBAND_MTHCA_DEBUG=n for ppc64el + * [Config] CONFIG_INFINIBAND_NES=m, CONFIG_INFINIBAND_OCRDMA=m, CONFIG_INFINIBAND_QIB=m for ppc64el + * [Config] CONFIG_INPUT_FF_MEMLESS=m for ppc64el + * [Config] CONFIG_INTERVAL_TREE_TEST=m for ppc64el + * [Config] CONFIG_IPACK_BUS=m for ppc64el + * [Config] CONFIG_ISDN=y for ppc64el + * [Config] CONFIG_ISO9660_FS=m for ppc64el + * [Config] CONFIG_KGDB=y for ppc64el + * [Config] CONFIG_KVM_GUEST=y for ppc64el + * [Config] CONFIG_L2TP_V3=y for powerpc + * [Config] CONFIG_MAILBOX=y for ppc64el + * [Config] CONFIG_MD_LINEAR=m, CONFIG_MD_RAID0=m, CONFIG_MD_RAID1=m for ppc64el + * [Config] CONFIG_MEDIA_SUPPORT=m for ppc64el + * [Config] CONFIG_MEMORY=y for ppc64el + * [Config] CONFIG_MEMSTICK=m for ppc64el + * [Config] CONFIG_MFD_SM501_GPIO=n for ppc64el + * [Config] CONFIG_MMC_BLOCK=m for ppc64el + * [Config] CONFIG_MOUSE_PS2=m for ppc64el + * [Config] CONFIG_NET_9P=m for ppc64el + * [Config] CONFIG_MSDOS_FS=m for ppc64el + * [Config] CONFIG_MSI_BITMAP_SELFTEST=n for ppc64el + * [Config] CONFIG_MTD=m for arm64 + * [Config] CONFIG_NETCONSOLE=m for ppc64el + * [Config] CONFIG_NETFILTER_XT_TARGET_NOTRACK=m for ppc64el + * [Config] CONFIG_NET_IPIP=m for ppc64el + * [Config] CONFIG_NET_TEAM=m for all arches + * [Config] CONFIG_NFC=m for ppc64el + * [Config] CONFIG_NL80211_TESTMODE=n for all arches + * [Config] CONFIG_NLS_CODEPAGE_437=y for powerpc + * [Config] CONFIG_NLS_ASCII=m, CONFIG_NLS_ISO8859_1=m, CONFIG_NLS_UTF8=m for ppc64el + * [Config] CONFIG_NOP_USB_XCEIV=m for ppc64el + * [Config] CONFIG_NOTIFIER_ERROR_INJECTION=m for ppc64el + * [Config] CONFIG_OPROFILE=m for ppc64el + * [Config] CONFIG_PARPORT_1284=y for ppc64el + * [Config] CONFIG_PARPORT_AX88796=m, CONFIG_PARPORT_PC_FIFO=y, CONFIG_PARPORT_SERIAL=m for ppc64el + * [Config] CONFIG_8723AU_P2P=n + * [Config] CONFIG_PCI_IOV=y, CONFIG_PCI_PASID=y, CONFIG_PCI_PRI=y, CONFIG_PCI_REALLOC_ENABLE_AUTO=y, CONFIG_PCI_STUB=m for ppc64el + * [Config] CONFIG_PCNET32=m for ppc64el + * [Config] CONFIG_SCSI_DH_EMC=m for ppc64el + * [Config] CONFIG_SCSI_DH_HP_SW=m for ppc64el + * [Config] CONFIG_SCSI_FC_ATTRS=m for ppc64el + * [Config] CONFIG_SCSI_IPR=m for ppc64el + * [Config] CONFIG_SCSI_LOGGING=y for ppc64el + * [Config] CONFIG_SCSI_OSD_INITIATOR=m for ppc64el + * [Config] CONFIG_SCSI_SCAN_ASYNC=y for ppc64el + * [Config] CONFIG_SCSI_SYM53C8XX_2=m for ppc64el + * [Config] CONFIG_XILINX_LL_TEMAC=m for powerpc + * [Config] CONFIG_WQ_POWER_EFFICIENT_DEFAULT=y for ppc64el + * [Config] CONFIG_WLAN=y for arm64 + * [Config] CONFIG_VORTEX=m for ppc64el + * [Config] CONFIG_WIMAX=m for ppc64el + * [Config] CONFIG_WATCHDOG=y for ppc64el + * [Config] CONFIG_VIRT_DRIVERS=y for ppc64el + * [Config] CONFIG_VERSION_SIGNATURE="" for powerpc64-emb + * [Config] CONFIG_UWB=m for ppc64el + * [Config] CONFIG_USB_STORAGE=y + * [Config] CONFIG_SATA_AHCI_PLATFORM=y for armhf + * [Config] CONFIG_HID_RMI=m + * [Config] CONFIG_HVC_DCC=n + - LP: #1303657 + + [ Upstream Kernel Changes ] + + * mm/numa: Remove BUG_ON() in __handle_mm_fault() + - LP: #1323165 + * powerpc/powernv: Add calls to support little endian host + - LP: #1327400 + * HID: rmi: introduce RMI driver for Synaptics touchpads + * HID: rmi: do not stop the device at the end of probe + * HID: rmi: check for the existence of some optional queries before reading query 12 + * HID: rmi: do not fetch more than 16 bytes in a query + * HID: rmi: fix wrong struct field name + * HID: rmi: fix masks for x and w_x data + * HID: rmi: do not handle touchscreens through hid-rmi + * ALSA: pcm: 'BUG:' message unnecessarily triggers kerneloops + - LP: #1305480 + * rebase to v3.15 + + -- Tim Gardner Tue, 03 Jun 2014 17:02:49 +0000 + +linux (3.15.0-5.10) utopic; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1325596 + * [Config] CONFIG_POWERNV_CPUFREQ=y for ppc64el + * rebase to v3.15-rc8 + + [ Upstream Kernel Changes ] + + * rebase to v3.15-rc8 + + -- Tim Gardner Mon, 02 Jun 2014 12:59:34 +0000 + +linux (3.15.0-4.9) utopic; urgency=low + + * no change rebuild to fix embeded debhelper. + + -- Andy Whitcroft Thu, 29 May 2014 12:41:58 +0100 + +linux (3.15.0-4.8) utopic; urgency=low + + [ Andy Whitcroft ] + + * Release Tracking Bug + - LP: #1324107 + * [Config] enable SECURITY_APPARMOR_UNCONFINED_INIT + + [ Javier Martinez Canillas ] + + * SAUCE: (no-up) apparmor: fix bug that constantly spam the console + - LP: #1323526 + + [ John Johansen ] + + * SAUCE: (no-up) apparmor: Sync to apparmor3 - alpha6 snapshot + - LP: #1323528 + * SAUCE: (no-up) apparmor: fix apparmor spams log with warning message + - LP: #1308761 + * SAUCE: (no-up) apparmor: fix refcount bug in apparmor pivotroot + - LP: #1308765 + * SAUCE: (no-up): apparmor: fix apparmor refcount bug in apparmor_kill + - LP: #1308764 + * SAUCE: (no-up): apparmor: use custom write_is_locked macro + - LP: #1323530 + + [ Kamal Mostafa ] + + * [Config] add debian/gbp.conf + + [ Tim Gardner ] + + * [Config] CONFIG_SATA_AHCI=m for ppc64el + - LP: #1323980 + + -- Andy Whitcroft Wed, 28 May 2014 12:47:17 +0100 + +linux (3.15.0-3.7) utopic; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1323189 + + [ Andy Whitcroft ] + + * [Config] autopkgtest -- need fakeroot for tests + + [ Upstream Kernel Changes ] + + * rebase to v3.15-rc7 + + -- Tim Gardner Mon, 26 May 2014 08:12:50 +0200 + +linux (3.15.0-2.6) utopic; urgency=low + + [ Andy Whitcroft ] + + * [Config] remove the kernel-image firmware list on clean + + [ Martin Pitt ] + + * [Config] autopkgtest -- switch to significantly faster rebuild + + [ Stefan Bader ] + + * [Config]: Add missing modules to inclusion list + + [ Tim Gardner ] + + * [debian] Dynamically generate the kernel-image udebs firmware list + * [d-i] firmware/kernel-image is generated + * rebase to v3.15-rc6 + * Release Tracking Bug + - LP: #1322251 + + [ Upstream Kernel Changes ] + + * rebase to v3.15-rc6 + - LP: #1297581 + + -- Tim Gardner Wed, 21 May 2014 10:51:29 -0700 + +linux (3.15.0-1.5) utopic; urgency=low + + [ Tim Gardner ] + + * [Config] Add apm-mustang.dtb to kernel-image udeb + + -- Tim Gardner Mon, 19 May 2014 14:47:42 -0700 + +linux (3.15.0-1.4) utopic; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: (no-up) hv -- bodge hv_vss_daemon so it can use the + local linux/hyperv.h" + * Revert "SAUCE: (no-up) hv -- bodge hv_kvp_daemon so it can use the + local linux/hyperv.h" + * [Packaging] tools -- hv tools build correctly against the built headers + * [Packaging] cloud-tools -- add the hv_fcopy_daemon to the package + * cloud-tools -- pull in init scripts for Hyper-V daemons + * cloud-tools -- detect Hyper-V VM to avoid starting + * cloud-tools -- update IF_NAME to DEVICE in hv_* scripts + - LP: #1295401 + * [Config] cloud-tools: reenable cloud-tools + + -- Andy Whitcroft Sun, 18 May 2014 19:21:04 +0100 + +linux (3.15.0-1.3) utopic; urgency=low + + [ Andy Whitcroft ] + + * [Packaging] ppc64el is a powerpc kernel arch and needs its quirks + - LP: #1318848 + + [ Ben Collins ] + + * [Config] Switch to grub-ieee1275 as recommended on book3e systems + - LP: #1318629 + + [ Tim Gardner ] + + * [Config] CONFIG_FSL_PAMU=n + - LP: #1311738 + * Release Tracking Bug + - LP: #1320239 + + -- Tim Gardner Fri, 16 May 2014 07:37:07 -0600 + +linux (3.15.0-1.2) utopic; urgency=low + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1318171 + * Add rpcsec_gss_krb5 to generic inclusion list + - LP: #769527 + * rebase to v3.15-rc5 + + [ Upstream Kernel Changes ] + + * rebase to v3.15-rc5 + - LP: #1297581 + + -- Tim Gardner Tue, 06 May 2014 15:20:10 -0500 + +linux (3.15.0-0.1) utopic; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to v3.15-rc4 + - LP: #1297581 + - LP: #1297581 + - LP: #1305133 + - LP: #1297581 + - LP: #1297581 + - LP: #871808 + - LP: #1260303 + - LP: #1268468 + - LP: #1248116 + - LP: #1211920 + - LP: #1259790 + - LP: #1259437 + - LP: #1259435 + - LP: #1268468 + + -- Tim Gardner Fri, 07 Feb 2014 09:35:13 -0700 + +linux (3.15.0-0.0) utopic; urgency=low + + * Initial version for 3.15. + + -- Andy Whitcroft Fri, 02 May 2014 15:06:39 +0100 + +linux (3.13.0-8.27) trusty; urgency=low + + [ John Johansen ] + + * SAUCE: Add config option to disable new apparmor 3 semantics + -LP: #1270215 + + [ Tim Gardner ] + + * [debian] Fix indep_hdrs_pkg_name + - LP: #1134441 + * Update lttng to 00808267d3ba7cdcddfed7bec7e62a40463c1307 Version 2.4.0-rc3 + * Enabled lttng build + * Don't build lttng for armhf + lttng hates gcc-4.8 for armhf + * Release Tracking Bug + - LP: #1277309 + + [ Upstream Kernel Changes ] + + * rebase to v3.13.2 + - LP: #1260303 + - LP: #1260303 + - LP: #1268468 + + -- Tim Gardner Thu, 06 Feb 2014 09:25:51 -0700 + +linux (3.13.0-7.26) trusty; urgency=low + + [ John Johansen ] + + * SAUCE: apparmor: fix uninitialized lsm_audit membe + - LP: #1268727 + * Add config option to optionally enable new apparmor 3 semantics + + [ Tim Gardner ] + + * [Config] Add lowlatency to getabis + * [Config] CONFIG_SECURITY_APPARMOR_AA3_SEMANTICS=y + - LP: #1270215 + * Release Tracking Bug + - LP: #1276810 + + [ Upstream Kernel Changes ] + + * x86, x32: Correct invalid use of user timespec in the kernel + - LP: #1274349 + - CVE-2014-0038 + + -- Tim Gardner Wed, 05 Feb 2014 15:49:44 -0500 + +linux (3.13.0-7.25) trusty; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: fix fmd headers" + * SAUCE: fix fmd headers + + -- Andy Whitcroft Tue, 04 Feb 2014 09:36:09 +0000 + +linux (3.13.0-7.24) trusty; urgency=low + + [ Stefan Bader ] + + * [Config] Make vmwgfx driver enable the framebuffer device + + [ Tim Gardner ] + + * rebase to v3.13.1 + * [Config] CONFIG_NFS_FS=m for ppc64el + * [Config] CONFIG_X86_SYSFB=n + https://lists.ubuntu.com/archives/kernel-team/2014-February/038166.html + * Release Tracking Bug + - LP: #1275898 + + [ Upstream Kernel Changes ] + + * i2c: piix4: Add support for AMD ML and CZ SMBus changes + - LP: #1272525 + * i2c: piix4: Use different message for AMD Auxiliary SMBus Controller + - LP: #1272525 + * mm: ignore VM_SOFTDIRTY on VMA merging + - LP: #1274917 + * drm/radeon: disable dpm on BTC + - LP: #1266984 + + [ Upstream Kernel Changes ] + + * rebase to v3.13.1 + + -- Tim Gardner Thu, 30 Jan 2014 15:24:48 +0000 + +linux (3.13.0-6.23) trusty; urgency=low + + [ Andy Whitcroft ] + + * [Config] fix up architecture for linux-tools + + -- Andy Whitcroft Thu, 30 Jan 2014 09:00:41 +0000 + +linux (3.13.0-6.22) trusty; urgency=low + + [ Andy Whitcroft ] + + * [Packaging] limit linux-udebs- to matching arch + * [Config] powerpc -- disable perf to fix FTBFS + * [Config] ppc64el -- fix up missing udebs + + -- Andy Whitcroft Wed, 29 Jan 2014 16:00:28 +0000 + +linux (3.13.0-6.21) trusty; urgency=low + + [ Andy Fleming ] + + * SAUCE: net: Add support for handling queueing in hardware + * SAUCE: of_mdio: Add of_phy_attach function + * SAUCE: phylib: Add generic 10G driver + * SAUCE: phylib: Support attaching to gen10g_driver + * SAUCE: phylib: Add Clause 45 read/write functions + + [ Andy Whitcroft ] + + * SAUCE: fix fmd headers + * [Packaging] lowlatency -- merge out of tree flavours + * SAUCE: allow IRQs to be irq-threaded by default via config + * [Config]: enable CONFIG_IRQ_FORCED_THREADING_DEFAULT for lowlatency + * [Config] powerpc -- fix up Build-depends: + * Release Tracking Bug + - LP: #1273747 + + [ Ben Collins ] + + * SAUCE: PPC: PCI: Fix pcibios_io_space_offset() so it works for 32-bit + ptr/64-bit rsrcs + * SAUCE: Revert "phy: vitesse make vsc824x_add_skew static" + * SAUCE: Fixup freescale usb phy driver to work on ppc64 + * SAUCE: xgmac_mdio: Silence read errors + * SAUCE: Provide booke stub for kvmppc_is_bigendian() + * SAUCE: Fix stack overflow on ppc32 + * SAUCE: Use resource_size_t instead of long for PCI resource address + * SAUCE: net/phy: Export function for use by dpaa_eth + * [Packaging] powerpc -- merge out of tree powerpc arch + + [ Bjorn Helgaas ] + + * SAUCE: Revert "EISA: Log device resources in dmesg" + - LP: #1251816 + * SAUCE: Revert "EISA: Initialize device before its resources" + - LP: #1251816 + + [ Emil Medve ] + + * SAUCE: phylib: Minimum hack to get the generic 10G PHY driver to work + with 10G "fixed-link"s + + [ Kumar Gala ] + + * SAUCE: fsl_qbman: Add drivers for Freescale DPAA Qman & Bman + * SAUCE: fsl_pme2: Add support for DPAA PME + * SAUCE: fmd: FMD14 integration + * SAUCE: dpaa_eth: Ethernet driver for Freescale QorIQ DPA Architecture + * SAUCE: powerpc/85xx: Add DPAA/networking support for CoreNet + + [ Madalin Bucur ] + + * SAUCE: net/flow: remove sleeping and deferral mechanism from + flow_cache_flush + * SAUCE: net/phy: abort genphy_read_status when link changes during speed + and duplex reading + + [ Stefan Bader ] + + * [Config] move some VMWare related modules into main package + - LP: #1271669 + + [ Tim Gardner ] + + * [Config] Add r815x to nic-modules + - LP: #1273735 + * [Config] CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y + - LP: #239479 + + [ Upstream Kernel Changes ] + + * mmc: sdhci-pci: break out definitions to header file + - LP: #1239938 + * mmc: sdhci-pci: add support of O2Micro/BayHubTech SD hosts + - LP: #1239938 + * powerpc/book3e: rename interrupt_end_book3e with __end_interrupts + * powerpc/book3e: support CONFIG_RELOCATABLE + * book3e/kexec/kdump: enable kexec for kernel + * book3e/kexec/kdump: create a 1:1 TLB mapping + * book3e/kexec/kdump: introduce a kexec kernel flag + * book3e/kexec/kdump: implement ppc64 kexec specfic + * book3e/kexec/kdump: redefine VIRT_PHYS_OFFSET + * book3e/kexec/kdump: recover "r4 = 0" to create the initial TLB + + -- Andy Whitcroft Tue, 28 Jan 2014 22:59:46 +0000 + +linux (3.13.0-5.20) trusty; urgency=low + + [ Andy Whitcroft ] + + * [Packaging] tools -- do not make symlinks when not making packages + * [Packaging] tools -- tidy up control.stub.in ordering + * [Packaging] tools -- tools-common is shared and not conditional + * rebase to v3.13 + + [ Dirk Brandewie ] + + * SAUCE: intel_pstate: Add setting voltage value for baytrail P states. + + [ KY Srinivasan ] + + * SAUCE: Drivers: hv: vmbus: Specify the target CPU that should receive + notification + + [ Upstream Kernel Changes ] + + * rebase to v3.13 + - LP: #1270603 + + -- Andy Whitcroft Fri, 17 Jan 2014 15:45:31 +0000 + +linux (3.13.0-4.19) trusty; urgency=low + + [ Andy Whitcroft ] + + * [Config] libunwind8-dev is now available for ppc64el + * [Packaging] tools -- make cpupower optional + * [Packaging] tools -- enable correctly for x86 + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1269872 + + [ Upstream Kernel Changes ] + + * SAUCE: ARM: OMAP: hwmod: Add SYSC offsets for AES IP + * SAUCE: ARM: OMAP4: hwmod: Add hwmod data for AES IP + * SAUCE: OMAP: AM33xx: hwmod: Correct AES module SYSC type + * SAUCE: crypto: omap-aes: add error check for pm_runtime_get_sync + + [ Upstream Kernel Changes ] + + * rebase to 85ce70fdf48aa290b4845311c2dd815d7f8d1fa5 + + -- Tim Gardner Wed, 15 Jan 2014 13:23:05 +0000 + +linux (3.13.0-3.18) trusty; urgency=low + + [ Andy Whitcroft ] + + * rebase to v3.13-rc8 + * [Packaging] efi -- allow EFI signatures on any arch + + [ Tim Gardner ] + + * [Config] Fix vcs-git path + * Release Tracking Bug + - LP: #1268683 + + [ Upstream Kernel Changes ] + + * rebase to v3.13-rc8 + + -- Andy Whitcroft Sun, 12 Jan 2014 11:58:01 +0000 + +linux (3.13.0-2.17) trusty; urgency=low + + [ Andy Whitcroft ] + + * Release Tracking Bug + - LP: #1267809 + * [Config] apply Platform support>>CPUIdle driver>>CPU Idle config + defaults + * [Config] apply Platform support>>CPU Frequency scaling config defaults + * [Config] CONFIG_PARIDE_EPATC8=y + * [Config] apply Device Drivers >> Broadcom specific AMBA config defaults + * [Config] apply Bus options >> PCI support >> RapidIO support >> RapidIO + Switch drivers config defaults + * [Config] apply Cryptographic API config defaults + * [Config] apply Device Drivers >> Common Clock Framework config defaults + * [Config] apply Device Drivers >> Distributed Switch Architecture + drivers config defaults + * [Config] apply Device Drivers >> Graphics support >> Backlight & LCD + device support config defaults + * [Config] apply Device Drivers >> Graphics support >> Support for frame + buffer devices >> Bootup logo config defaults + * annotations -- update in tree annotations + * [Config] apply Bus options >> PCI support >> RapidIO support config + defaults + * [Config] CONFIG_POWER_AVS=y CONFIG_RESET_CONTROLLER=y + * [Config] apply Device Drivers >> 1-wire Bus Masters config defaults + * [Config] apply CAN Device Drivers >> Platform CAN drivers with Netlink + support config defaults + * [Config] apply Device Drivers >> Character devices >> Serial drivers + config defaults + * [Config] apply Device Drivers >> Generic Thermal sysfs driver config + defaults + * [Config] apply Device Drivers >> Character devices >> TPM Hardware + Support config defaults + * [Config] apply Device Drivers >> Character devices config defaults + * [Config] apply Device Drivers >> HID support >> USB HID support >> USB + HID transport layer config defaults + * [Config] apply Device Drivers >> HID support >> HID bus support config + defaults + * [Config] apply Device Drivers >> HID support >> USB HID support config + defaults + * annotations -- update in tree annotations + * [Config] apply Device Drivers >> GPIO Support config defaults + * [Config] update configs for apparmour update + + [ John Johansen ] + + * SAUCE: (no-up) apparmor: Sync to apparmor 3 - alpha 4 snapshot + * SAUCE: apparmor: fix unix domain sockets to be mediated on connection + - LP: #1208988 + * SAUCE: apparmor: allocate path lookup buffers during init + - LP: #1208988 + * SAUCE: (no-up) apparmor: Fix tasks not subject to, reloaded policy + - LP: #1236455 + + [ Tim Gardner ] + + * Revert "[Debian] getabis: Preface module with package name" + * [Config] Added ppc64el to getabis + * [packaging] Bump ABI for every new release + + -- Andy Whitcroft Fri, 10 Jan 2014 11:48:39 +0000 + +linux (3.13.0-1.16) trusty; urgency=low + + * First 3.13 upload. + * Release tracker + - LP: #1266852 + + -- Tim Gardner Tue, 07 Jan 2014 09:21:26 -0700 + +linux (3.13.0-0.15) trusty; urgency=low + + [ Tim Gardner ] + + * rebase to v3.13-rc7 + + [ Upstream Kernel Changes ] + + * rebase to v3.13-rc7 + + -- Tim Gardner Sun, 05 Jan 2014 06:13:33 -0700 + +linux (3.13.0-0.14) trusty; urgency=low + + [ Andy Whitcroft ] + + * rebase to 7a262d2ed9fa42fad8c4f243f8025580b58cf2f6 + + [ Tim Gardner ] + + * Remove ubuntu/dm-raid4-5 in favor of CONFIG_MD_RAID456 + * Update lttng to Version 2.4.0-rc2 + * lttng: Disabled trace_kvm_async_pf_completed + * [Config] CONFIG_IMA=y + - LP: #1244627 + + [ Upstream Kernel Changes ] + + * rebase to 7a262d2ed9fa42fad8c4f243f8025580b58cf2f6 + + -- Tim Gardner Thu, 02 Jan 2014 12:57:13 -0700 + +linux (3.13.0-0.13) trusty; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: aufs3 -- (no-up) aufs3-base.patch + * ubuntu: aufs3 -- (no-up) aufs3-mmap.patch + * ubuntu: aufs3 -- (no-up) aufs3-standalone.patch + * ubuntu: AUFS (no-squash): basic framework and update machinary + * ubuntu: AUFS -- update to 7b136a27b021da9010d8b6c101939dd298e46be7 + * ubuntu: aufs3 -- enable + * ubuntu: aufs3 -- update configs + + -- Andy Whitcroft Thu, 02 Jan 2014 09:41:02 +0000 + +linux (3.13.0-0.12) trusty; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to v3.13-rc6 + + -- Tim Gardner Tue, 31 Dec 2013 06:16:03 -0700 + +linux (3.13.0-0.11) trusty; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: suspicious unlocked ->status reading and writing in ipc/sem.c + * [Config] ppc64el -- initial defconfig based -generic flavour + * [Config] initial defconfig for ppc64el + * [Config] ubuntuise ppc64el config + * [Config] ubuntuise ppc64el config part 2 + * [Config] d-i -- update empty udebs list + * [Config] ppc64el -- split extras package + + [ Anton Blanchard ] + + * SAUCE: KVM: PPC: Book3S HV: Add little-endian guest support + + [ Benjamin Herrenschmidt ] + + * SAUCE: powerpc/powernv: Add calls to support little endian + + [ Cédric Le Goater ] + + * SAUCE: KVM: PPC: Book3S: add helper routine to load guest instructions + * SAUCE: KVM: PPC: Book3S: add helper routines to detect endian order + * SAUCE: KVM: PPC: Book3S: MMIO emulation support for little endian + guests + + [ Paul E. McKenney ] + + * SAUCE: powerpc: Make 64-bit non-VMX copy_tofrom_user() bi-endian + + -- Andy Whitcroft Fri, 27 Dec 2013 16:48:55 +0000 + +linux (3.13.0-0.10) trusty; urgency=low + + [ Andy Whitcroft ] + + * rebase to v3.13-rc5 + * [Config] updateconfigs following rebase to v3.13-rc5 + + [ Upstream Kernel Changes ] + + * rebase to v3.13-rc5 + - LP: #1260303 + - LP: #1260303 + - LP: #1260225 + + -- Andy Whitcroft Mon, 23 Dec 2013 12:48:28 +0000 + +linux (3.13.0-0.9) trusty; urgency=low + + [ Andy Whitcroft ] + + * [Config] d-i -- allow missing firmware + + -- Andy Whitcroft Fri, 20 Dec 2013 17:57:06 +0000 + +linux (3.13.0-0.8) trusty; urgency=low + + [ Andy Whitcroft ] + + * [Config] annotations -- first pass over entire config + * [Config] drop libunwind8-dev from Build-Depends for ppc64el + + [ Tim Gardner ] + + * [Config] Add arm64 device tree files + - LP: #1262901 + + -- Andy Whitcroft Thu, 19 Dec 2013 18:36:43 +0000 + +linux (3.13.0-0.7) trusty; urgency=low + + [ Rajesh B Prathipati ] + + * SAUCE: powerpc: Make unaligned accesses endian-safe for powerpc + + [ Tim Gardner ] + + * [Config] CONFIG_REGULATOR_S2MPS11=n for FTBS + + [ Upstream Kernel Changes ] + + * rebase to v3.13-rc4 + - LP: #1259790 + - LP: #1259437 + - LP: #1259435 + + -- Tim Gardner Fri, 13 Dec 2013 07:56:34 -0700 + +linux (3.13.0-0.6) trusty; urgency=low + + [ Paolo Pisati ] + + * [Config] armhf: arm64: VIRTIO_[BLK|MMIO|NET|CONSOLE|BALLOON]=y + * [Config] i386: amd64: VIRTIO_CONSOLE=y + + [ Tim Gardner ] + + * [Config] CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y + + -- Tim Gardner Sun, 08 Dec 2013 09:22:01 -0700 + +linux (3.13.0-0.5) trusty; urgency=low + + [ Andy Whitcroft ] + + * correct bug listing for v3.13-rc2 rebase + * [Config] ppc64el -- create linux-libc-dev + * [Debian] Improve tools version message + - LP: #1257715 + + [ Serge Hallyn ] + + * SAUCE: fork: Allow CLONE_PARENT after setns(CLONE_NEWPID)] + - LP: #1248590 + * SAUCE: vfs: Fix a regression in mounting proc + + [ Tim Gardner ] + + * [Config] Build-in ohci-pci + - LP: #1244176 + * Rebase to v3.13-rc3 + + [ Upstream Kernel Changes ] + + * Revert "Revert "fork: unify and tighten up CLONE_NEWUSER/CLONE_NEWPID + checks"" + - LP: #1248590 + + [ Upstream Kernel Changes ] + + * rebase to v3.13-rc3 + - LP: #1256840 + - LP: #1256212 + + -- Tim Gardner Sat, 07 Dec 2013 07:55:39 -0700 + +linux (3.13.0-0.4) trusty; urgency=low + + [ Tim Gardner ] + + * Rebase to v3.13-rc2 + + [ Upstream Kernel Changes ] + + * rebase to v3.13-rc2 + + -- Tim Gardner Fri, 29 Nov 2013 23:54:05 -0500 + +linux (3.13.0-0.3) trusty; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: Fix DocBook FTBS" + + [ Tim Gardner ] + + * [Debian] Re-sign modules after debug objcopy + - LP: #1253155 + * [Config] CONFIG_EXT4_USE_FOR_EXT23=y + + [ Upstream Kernel Changes ] + + * doc: fix generation of device-drivers + * rebase to b975dc3689fc6a3718ad288ce080924f9cb7e176 + + -- Tim Gardner Tue, 26 Nov 2013 12:24:42 -0700 + +linux (3.13.0-0.2) trusty; urgency=low + + [ Tim Gardner ] + + * SAUCE: Fix DocBook FTBS + + -- Tim Gardner Mon, 25 Nov 2013 13:24:15 -0700 + +linux (3.13.0-0.1) trusty; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to 7e3528c3660a2e8602abc7858b0994d611f74bc3 + + -- Tim Gardner Tue, 12 Nov 2013 07:28:53 -0700 + +linux (3.13.0-0.0) trusty; urgency=low + + * Major release bump. + + -- Andy Whitcroft Tue, 12 Nov 2013 21:37:52 +0000 + +linux (3.12.0-2.7) trusty; urgency=low + + * Fixed armhf ABI build failure. + * Release tracker + - LP: #1249477 + + -- Tim Gardner Fri, 08 Nov 2013 16:22:45 -0700 + +linux (3.12.0-2.6) trusty; urgency=low + + [ Joseph Salisbury ] + + * SAUCE: tg3: Add support for new 57786 device id. + - LP: #1242610 + + [ Tim Gardner ] + + * [Config] CONFIG_OABI_COMPAT=n + * [Config] add the wandboard to shipped dtb + - LP: #1249421 + * Release tracker + - LP: #1249477 + + -- Tim Gardner Fri, 08 Nov 2013 12:23:18 -0700 + +linux (3.12.0-2.5) trusty; urgency=low + + [ Andy Whitcroft ] + + * rebase to mainline v3.12 + * [Config] updateconfigs following rebase to v3.12 + * postinst -- improve relative symlink detection with missing files + - LP: #1248053 + * postinst -- fix unchanged link detection + * [Config] update configs following addition of apparmor fixes + + [ Anthony Wong ] + + * SAUCE: Work around broken ACPI backlight on Dell Inspiron 5537 + - LP: #1231305 + + [ John Johansen ] + + * SAUCE: (no-up) apparmor: Sync to apparmor 3 - alpha 4 snapshot + * SAUCE: apparmor: fix unix domain sockets to be mediated on connection + - LP: #1208988 + * SAUCE: apparmor: allocate path lookup buffers during init + - LP: #1208988 + + [ Tim Gardner ] + + * [Config] Remove superfluous ubuntu/lttng-modules + + [ Upstream Kernel Changes ] + + * Revert "fork: unify and tighten up CLONE_NEWUSER/CLONE_NEWPID checks" + - LP: #1248590 + + [ Upstream Kernel Changes ] + + * rebase to v3.12 + - LP: #1222850 + + [ Adam Conrad ] + * etc/getabis: Fetch arm64/generic abis as well + + -- Andy Whitcroft Wed, 06 Nov 2013 21:00:21 +0000 + +linux (3.12.0-1.3) trusty; urgency=low + + [ Andy Whitcroft ] + + * [Config] arm64 -- add arch to the configuration handlers + * [Config] arm64 -- add generic flavour + * [Config] arm64 -- default config + * [Config] arm64 -- fix up various FTBFS config options + * SAUCE: arm64: export __copy_in_user to modules + * [Config] arm64 -- disable ABI/module checks + * [Config] arm64 -- enforcer -- add arm64 to the enforcer + * [Config] arm64 -- enable udebs for arm64 + + [ Colin Watson ] + + * [Config] Clean up various udeb Provides + + [ Paolo Pisati ] + + * [Config] AHCI_IMX=y + * [Config] build imx*-wandboard dtbs + + [ Serge Hallyn ] + + * SAUCE: device_cgroup: remove can_attach + + [ Tim Gardner ] + + * rebase to v3.12-rc7 + * SAUCE: KVM: Fix modprobe failure for kvm_intel/kvm_amd + * Release tracker + - LP: #1245932 + + [ Upstream Kernel Changes ] + + * rebase to v3.12-rc7 + - LP: #1180881 + - LP: #1180881 + - LP: #1217957 + + -- Tim Gardner Sun, 27 Oct 2013 22:08:55 -0600 + +linux (3.12.0-0.2) trusty; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: (no-up) scsi: hyper-v storage -- mark as preferring READ + CAPACITY (16) at SPC-2" + * Revert "SAUCE: (no-up) scsi: hyper-v storage -- mark as VPD capable at + SPC-2" + * Revert "SAUCE: (no-up) scsi: add scsi device flag to request READ + CAPACITY (16) be preferred" + * Revert "SAUCE: (no-up) scsi: add scsi device flag to request VPD pages + be used at SPC-2" + * Revert "overlayfs: Update to v19" + * Revert "ubuntu: overlayfs v18 -- -- overlayfs: implement show_options" + * Revert "ubuntu: overlayfs v18 -- -- overlayfs: add statfs support" + * Revert "ubuntu: overlayfs v18 -- -- overlay filesystem" + * Revert "ubuntu: overlayfs v18 -- -- vfs: introduce + clone_private_mount()" + * Revert "ubuntu: overlayfs v18 -- -- vfs: export do_splice_direct() to + modules" + * Revert "ubuntu: overlayfs v18 -- -- overlay: overlay filesystem + documentation" + * ubuntu: overlayfs v20 -- overlayfs: add statfs support + * [Config] fix linux-libc-dev generation for arm64 + * [Config] fix linux-libc-dev generation for x32 + * [Config] add linux-libc-dev generation for ppc64el + + [ Erez Zadok ] + + * ubuntu: overlayfs v20 -- overlayfs: implement show_options + + [ Miklos Szeredi ] + + * ubuntu: overlayfs v20 -- vfs: add i_op->dentry_open() + * ubuntu: overlayfs v20 -- vfs: export do_splice_direct() to modules + * ubuntu: overlayfs v20 -- vfs: export __inode_permission() to modules + * ubuntu: overlayfs v20 -- vfs: introduce clone_private_mount() + * ubuntu: overlayfs v20 -- overlay filesystem + * ubuntu: overlayfs v20 -- fs: limit filesystem stacking depth + + [ Neil Brown ] + + * ubuntu: overlayfs v20 -- overlay: overlay filesystem documentation + + [ Paolo Pisati ] + + * [Config] arm: VIRTIO_[BLK|NET|MMIO]=y + + [ Seth Forshee ] + + * SAUCE: (no-up) ACPI: Disable Windows 8 compatibility for some Lenovo + ThinkPads + - LP: #1183856 + + [ Tim Gardner ] + + * [Config] CONFIG_CRYPTO_CRCT10DIF=y, CONFIG_CRYPTO_CRCT10DIF_PCLMUL=m + * rebase to v3.12-rc2 + * updateconfigs + * [Config] disable CONFIG_FB_VESA enforcer check + * [Config] Disable lttng for FTBS + * rebase to v3.12-rc3 + * rebase to v3.12-rc4 + * [Config] CONFIG_ANDROID=n + - LP: #1235161 + * [Config] CONFIG_L2TP_V3=y + - LP: #1235914 + * [Config] CONFIG_USB_OTG=n for all arches + * Release tracker + - LP: #1242811 + + [ Upstream Kernel Changes ] + + * scsi: hyper-v storsvc switch up to SPC-3 + + * rebase to v3.12-rc6 + - LP: #1235977 + - LP: #1235523 + - LP: #1239392 + - LP: #1227491 + + * rebase to v3.12-rc3 + - LP: #1231931 + + * rebase to v3.12-rc2 + - LP: #1213820 + - LP: #1213055 + - LP: #1198030 + + -- Tim Gardner Mon, 23 Sep 2013 07:41:07 -0600 + +linux (3.11.0-8.15) saucy; urgency=low + + [ Tim Gardner ] + + * Release tracker + - LP: #1227969 + + * Update lttng + Updated to git://git.lttng.org/lttng-modules.git 9998f5216f4641a79e158135 + Version 2.3.0+ + + [ Upstream Kernel Changes ] + + * igb: Add additional get_phy_id call for i354 devices + - LP: #1219619 + * igb: Read flow control for i350 from correct EEPROM section + - LP: #1219619 + * timekeeping: Fix HRTICK related deadlock from ntp lock changes + Required for lttng update. + + -- Tim Gardner Thu, 19 Sep 2013 07:41:49 -0600 + +linux (3.11.0-7.14) saucy; urgency=low + + [ Andy Whitcroft ] + + * [Packaging] sort out linux-tools naming + - LP: #1205284 + * [Packaging] linux-tools: switch to common generic version helper + + [ Paolo Pisati ] + + * [Config] highbank: ecx1000: CPU_IDLE causes instabilities, disable it + + [ Tim Gardner ] + + * Release tracker + - LP: #1226160 + + [ Tony Lindgren ] + + * SAUCE: ARM: dts: Fix muxing and regulator for wl12xx on the SDIO bus + for pandaboard + + [ Upstream Kernel Changes ] + + * USB: handle LPM errors during device suspend correctly + - LP: #1011415 + * usb: don't check pm qos NO_POWER_OFF flag in usb_port_suspend() + - LP: #1011415 + * usb: Don't fail port power resume on device disconnect. + - LP: #1011415 + + [ Upstream Kernel Changes ] + + * rebase to v3.11.1 + + -- Tim Gardner Wed, 11 Sep 2013 07:30:17 -0600 + +linux (3.11.0-7.13) saucy; urgency=low + + * Release tracker + - LP: #1223545 + + [ Andy Whitcroft ] + + * SAUCE: (no-up) scsi: add scsi device flag to request VPD pages be used at SPC-2 + - LP: #1223499 + * SAUCE: (no-up) scsi: add scsi device flag to request READ CAPACITY (16) be preferred + - LP: #1223499 + * SAUCE: (no-up) scsi: hyper-v storage -- mark as VPD capable at SPC-2 + - LP: #1223499 + * SAUCE: (no-up) scsi: hyper-v storage -- mark as preferring READ CAPACITY (16) at SPC-2 + - LP: #1223499 + + [ Maximiliano Curia ] + + * SAUCE: (no-up) Only let characters through when there are active readers. + - LP: #1208740 + + [ Tim Gardner ] + + * [Debian] getabis: Commit new ABI directory, remove the old + * [Config] CONFIG_EFIVAR_FS=y + - LP: #1223195 + * [Config] CONFIG_EFI_VARS_PSTORE=m, + CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE=n + * SAUCE: (no-up) USB: input: cm109.c: Convert high volume dev_err() to dev_err_ratelimited() + - LP: #1222850 + + [ Upstream Kernel Changes ] + + * Intel xhci: refactor EHCI/xHCI port switching + - LP: #1210858 + + -- Tim Gardner Tue, 10 Sep 2013 09:00:19 -0600 + +linux (3.11.0-6.12) saucy; urgency=low + + * Release tracker + - LP: #1222893 + + [ Andy Whitcroft ] + + * Revert "ubuntu: (no-squash) AUFS3 -- aufs3-standalone.patch" + * Revert "ubuntu: (no-squash) AUFS3 -- aufs3-base.patch" + * ubuntu: (no-squash) AUFS3 -- aufs3-base.patch + * ubuntu: (no-squash) AUFS3 -- aufs3-standalone.patch + - LP: #1222407 + + [ Paolo Pisati ] + + * [Config] restore mmc boot on panda + + [ Tyler Hicks ] + + * SAUCE: apparmor: Use shash crypto API interface for profile hashes + - LP: #1216294 + + [ Upstream Kernel Changes ] + + * net: calxedaxgmac: remove NETIF_F_FRAGLIST setting + * net: calxedaxgmac: read correct field in xgmac_desc_get_buf_len + * net: calxedaxgmac: fix race between xgmac_tx_complete and xgmac_tx_err + * net: calxedaxgmac: fix possible skb free before tx complete + * net: calxedaxgmac: update ring buffer tx_head after barriers + * net: calxedaxgmac: fix race with tx queue stop/wake + * net: calxedaxgmac: enable interrupts after napi_enable + * net: calxedaxgmac: fix various errors in xgmac_set_rx_mode + * net: calxedaxgmac: remove some unused statistic counters + * net: calxedaxgmac: fix rx DMA mapping API size mismatches + * net: calxedaxgmac: fix xgmac_xmit DMA mapping error handling + * mfd: rtsx: Read vendor setting from config space + - LP: #1201698 + + -- Tim Gardner Mon, 09 Sep 2013 07:21:06 -0600 + +linux (3.11.0-5.11) saucy; urgency=low + + * Release tracker + - LP: #1221886 + + [ Adam Lee ] + + * SAUCE: Bluetooth: Add support for 04ca:2007 + - LP: #1153448 + * SAUCE: Bluetooth: Add support for 105b:e065 + - LP: #1161261 + + [ Gavin Guo ] + + * SAUCE: Bluetooth: Add support for Broadcom 413c:8143 + - LP: #1166113 + + [ Upstream Kernel Changes ] + + * igb: Reset the link when EEE setting changed + - LP: #1219619 + * igb: Read register for latch_on without return value + - LP: #1219619 + * igb: Added rcu_lock to avoid race + - LP: #1219619 + * igb: don't allow SR-IOV without MSI-X + - LP: #1219619 + * igb: Update MTU so that it is always at least a standard frame size + - LP: #1219619 + * igb: Refactor of init_nvm_params + - LP: #1219619 + * igb: Refactor NVM read functions to accommodate devices with no flash + - LP: #1219619 + * igb: Add device support for flashless SKU of i210 device + - LP: #1219619 + * igb: Fix get_fw_version function for all parts + - LP: #1219619 + * igb: Add macro for size of RETA indirection table + - LP: #1219619 + * igb: Expose RSS indirection table for ethtool + - LP: #1219619 + * igb: Don't look for a PBA in the iNVM when flashless + - LP: #1219619 + * igb: Implementation of 1-sec delay for i210 devices + - LP: #1219619 + * igb: New PHY_ID for i354 device + - LP: #1219619 + * igb: M88E1543 PHY downshift implementation + - LP: #1219619 + * igb: No PHPM support in i354 devices + - LP: #1219619 + * igb: Support to get 2_5G link status for appropriate media type + - LP: #1219619 + * igb: Get speed and duplex for 1G non_copper devices + - LP: #1219619 + * igb: Implementation to report advertised/supported link on i354 devices + - LP: #1219619 + * igb: Update version number + - LP: #1219619 + * Bluetooth: Take proper tty_struct references + - LP: #1189998 + * Bluetooth: Remove the device from the list in the destructor + - LP: #1189998 + * Bluetooth: Move the tty initialization and cleanup out of open/close + - LP: #1189998 + * Bluetooth: Implement .activate, .shutdown and .carrier_raised methods + - LP: #1189998 + * Bluetooth: Fix the reference counting of tty_port + - LP: #1189998 + * Bluetooth: Purge the dlc->tx_queue to avoid circular dependency + - LP: #1189998 + + [ Wen-chien Jesse Sung ] + + * SAUCE: Bluetooth: Support for loading broadcom patchram firmware + - LP: #1065400 + * SAUCE: Bluetooth: Add support for 13d3:3388 and 13d3:3389 + - LP: #1065400 + + -- Tim Gardner Thu, 05 Sep 2013 08:06:17 -0600 + +linux (3.11.0-5.10) saucy; urgency=low + + [ Andy Whitcroft ] + + * Release tracker + - LP: #1220222 + * Revert "[Config] Fix ubuntu directoy Kbuilds" + * Revert "aufs update dropped some Kbuild files" + * Revert "ubuntu: AUFS -- follow rename of loop.h into drivers/block" + * Revert "ubuntu: AUFS -- update to + 8e503d4142c189ed6c47a2177ad2cd058e8d340e" + * Revert "ubuntu: (no-squash) AUFS3 -- aufs3-standalone.patch" + * Revert "ubuntu: (no-squash) AUFS3 -- aufs3-base.patch" + * rebase to v3.11 final + * [Config] clean up ubuntu/Kconfig and ubuntu/Makefile + * ubuntu: AUFS (no-squash): basic framework and update machinary + * ubuntu: (no-squash) AUFS3 -- aufs3-base.patch + * ubuntu: (no-squash) AUFS3 -- aufs3-standalone.patch + * ubuntu: AUFS -- update to 5ac5fe26a90a818218310e208d17688fddb07622 + * ubuntu: (no-squash) AUFS -- enable aufs + * ubuntu: AUFS -- fix remaining d_count references to use accessor + * ubuntu: lttng -- follow rename of pid_ns + * SAUCE: disable stack-protector for ARM compressed bootloader + + [ Paolo Pisati ] + + * [Config] ARM_ATAG_DTB_COMPAT=y + + [ Rob Herring ] + + * [Config] Enable KVM and virtio for armhf generic-lpae + + [ Tim Gardner ] + + * [Config] CONFIG_ARPD=y + * [Config] CONFIG_ZSWAP=y + - LP: #1215379 + + [ Upstream Kernel Changes ] + + * uvcvideo: quirk PROBE_DEF for Dell SP2008WFP monitor. + - LP: #1217957 + * ARM: use phys_addr_t for DMA zone sizes + * ARM: highbank: enable DMA zone for LPAE + * ARM: highbank: select ARCH_HAS_HOLES_MEMORYMODEL + * ARM: highbank: select required errata work-arounds + * DMA: fix AMBA PL08x compilation issue with 64bit DMA address type + * DMA: fix printk warning in AMBA PL08x DMA driver + * ARM: highbank: select ARCH_DMA_ADDR_T_64BIT for LPAE + * ARM: move outer_cache declaration out of ifdef + * ARM: highbank: avoid L2 cache smc calls when PL310 is not present + * ARM: highbank: clean-up some unused includes + * ARM: xen: only set pm function ptrs for Xen guests + + [ Upstream Kernel Changes ] + + * rebase to v3.11 + + -- Andy Whitcroft Tue, 03 Sep 2013 17:08:06 +0100 + +linux (3.11.0-4.9) saucy; urgency=low + + [ Tim Gardner ] + + * rebase to v3.11-rc7 + * Release tracker + - LP: #1216962 + + [ Upstream Kernel Changes ] + + * mwifiex: do not create AP and P2P interfaces upon driver loading + - LP: #1212720 + + -- Tim Gardner Mon, 26 Aug 2013 06:25:35 -0600 + +linux (3.11.0-3.8) saucy; urgency=low + + [ Johannes Berg ] + + * SAUCE: mac80211: ignore (E)CSA in probe response frames + - LP: #1201470 + + -- Tim Gardner Fri, 23 Aug 2013 09:47:36 -0600 + +linux (3.11.0-3.7) saucy; urgency=low + + [ Tim Gardner ] + + * SAUCE: (no-up) hv_vss_daemon -- prevent self-daemonising to allow + upstart to track + * SAUCE: (no-up) hv -- bodge hv_vss_daemon so it can use the local + linux/hyperv.h + * SAUCE: hv: Add vss daemon to Makefile + * [Debian] Add hv_vss_daemon to tools package + - LP: #1213282 + * [Config] Fix ubuntu directoy Kbuilds + - LP: #1181755 + + -- Tim Gardner Tue, 20 Aug 2013 08:34:05 -0600 + +linux (3.11.0-3.6) saucy; urgency=low + + [ Andy Whitcroft ] + + * [Packaging] tools: conditionalise x86 and hyper-v tools sensibly + * [Config] tools: enable x86 and hyper-v + + [ John Johansen ] + + * Revert "SAUCE: (no-up) apparmor: Sync to apparmor 3 dev stable + snapshot" + * Revert "SAUCE: (no-up) apparmor: fix apparmor module status for none + root users" + * SAUCE: (no-up) apparmor: Sync to apparmor 3 - alpha 4 snapshot + + [ Joseph Salisbury ] + + * SAUCE: (no-up) intel_ips: blacklist ASUSTek G60JX laptops + - LP: #1210848 + + [ Kamal Mostafa ] + + * [debian] tools: ship 'cpupower' in linux-tools + - LP: #1158668 + * [Config] Build-dep on libpci-dev for cpu tools + - LP: #1158668 + + [ Tim Gardner ] + + * rebase to v3.11-rc6 + * Release tracker + - LP: #1213941 + + -- Tim Gardner Fri, 16 Aug 2013 07:02:07 -0600 + +linux (3.11.0-2.5) saucy; urgency=low + + [ Tim Gardner ] + + * [Config] CONFIG_PM_DEBUG=y + - LP: #1210539 + * rebase to v3.11-rc5 + * Release tracker + - LP: #1211378 + + -- Tim Gardner Mon, 12 Aug 2013 06:10:39 -0600 + +linux (3.11.0-1.4) saucy; urgency=low + + [ Tim Gardner ] + + * Bump ABI when making changes to the inclusion list lest + you cause conflicts with existing installed kernel + packages. + - LP: #1210331 + + -- Tim Gardner Fri, 09 Aug 2013 03:03:51 +0100 + +linux (3.11.0-0.3) saucy; urgency=low + + [ Tim Gardner ] + + * [Config] Include rbd and kvm in the virtual inclusion list + - LP: #1206961 + * [Config] Removed obsolete inclusion list entries + + -- Tim Gardner Tue, 06 Aug 2013 08:52:14 +0100 + +linux (3.11.0-0.2) saucy; urgency=low + + [ Bruce Allan ] + + * SAUCE: (no-up) e1000e: fix I217/I218 PHY initialization flow + - LP: #1206757 + * SAUCE: (no-up) e1000e: enable support for new device IDs + - LP: #1206757 + + [ John Johansen ] + + * SAUCE: (no-up) apparmor: Sync to apparmor 3 dev stable snapshot + + [ Paolo Pisati ] + + * build vexpress a15 dtb + * [Config] disable Broadcom bcm support (ARCH_BCM) + * [Config] disable Allwinner a1x support (ARCH_SUNXI) + * [Config] disable WonderMedia WM8850 support (ARCH_WM8850) + * [Config] disable Rockchip support (ARCH_ROCKCHIP) + * [Config] disable STMicroelectronics STiH41x SOCs (ARCH_STI) + * [Config] disable TI Keystone, AM43xx and OMAP5 support + * [Config] ARM_APPENDED_DTB=y + + [ Tim Gardner ] + + * rebase to v3.11-rc4 + * overlayfs: Update to v19 + * [Config] Enable overlayfs + * SAUCE: Fix lttng compile errors + + [ Upstream Kernel Changes ] + + * rebase to v3.11-rc4 + - LP: #1163720 + - LP: #1162026 + - LP: #1195636 + - LP: #1195597 + - LP: #1180409 + - LP: #1168430 + + -- Tim Gardner Sun, 04 Aug 2013 03:45:31 -0600 + +linux (3.11.0-0.1) saucy; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to 64ccccf8525fee499625b517c0faadf784c79e93 + - LP: #1163720 + - LP: #1162026 + - LP: #1195636 + - LP: #1195597 + - LP: #1180409 + - LP: #1168430 + + -- Tim Gardner Mon, 08 Jul 2013 08:50:46 -0600 + +linux (3.10.0-2.10) saucy; urgency=low + + [ Andy Whitcroft ] + + * [Config] CONFIG_INTEL_MEI*=m + - LP: #1196155 + * [Config] CONFIG_DEBUG_INFO=y + + [ Stephen Warren ] + + * [Config] fix Calxeda xgmac module filename + + [ Upstream Kernel Changes ] + + * Revert "serial: 8250_pci: add support for another kind of NetMos + Technology PCI 9835 Multi-I/O Controller" + - LP: #1190967 + * mfd: lpc_ich: Add support for Intel Avoton SoC + - LP: #1196658 + + -- Andy Whitcroft Fri, 05 Jul 2013 18:08:02 +0100 + +linux (3.10.0-2.9) saucy; urgency=low + + [ Andy Whitcroft ] + + * rebase to v3.10 + + [ John Johansen ] + + * Revert "SAUCE: (no-up) apparmor: Fix quieting of audit messages for + network mediation" + * Revert "SAUCE: (no-up) apparmor: Fix compile warnings" + * Revert "SAUCE: (no-up) AppArmor: basic networking rules" + * Revert "SAUCE: (no-up) apparmor: Add the ability to mediate mount" + * Revert "SAUCE: (no-up) AppArmor: Add profile introspection file to + interface" + * Revert "SAUCE: (no-up) AppArmor: Disable Add PR_{GET,SET}_NO_NEW_PRIVS + to prevent execve from granting privs" + * SAUCE: (no-up) apparmor: Sync to apparmor 3 dev stable snapshot + + [ Upstream Kernel Changes ] + + * rebase to v3.10 + + -- Andy Whitcroft Mon, 01 Jul 2013 17:42:29 +0100 + +linux (3.10.0-1.8) saucy; urgency=low + + [ Andy Whitcroft ] + + * Release Tracking Bug + - LP: #1195717 + + [ Andy Whitcroft ] + + * Revert "ubuntu: overlayfs -- follow change to do_splice_direct + interface" + * Revert "ubuntu: overlayfs -- expose do_splice_direct prototype" + * Revert "SAUCE: ubuntu: overlayfs -- ovl_path_open should not take path + reference" + * Revert "ubuntu: overlayfs -- add FS_ALIAS" + * Revert "ubuntu: overlayfs -- + overlayfs-copy-up-i_uid-i_gid-from-the-underlying-inode" + * Revert "ubuntu: overlayfs -- ovl-switch-to-inode_permission" + * Revert "ubuntu: overlayfs -- vfs-export-inode_permission-to-modules" + * Revert "ubuntu: overlayfs -- overlayfs-create-new-inode-in-ovl_link" + * Revert "ubuntu: overlayfs -- + overlayfs-fix-possible-leak-in-ovl_new_inode" + * Revert "ubuntu: overlayfs -- fs-limit-filesystem-stacking-depth" + * Revert "ubuntu: overlayfs -- overlay-overlay-filesystem-documentation" + * Revert "ubuntu: overlayfs -- overlayfs-implement-show_options" + * Revert "ubuntu: overlayfs -- overlayfs-add-statfs-support" + * Revert "ubuntu: overlayfs -- overlay filesystem" + * Revert "ubuntu: overlayfs -- vfs-introduce-clone_private_mount" + * Revert "ubuntu: overlayfs -- vfs-export-do_splice_direct-to-modules" + * Revert "ubuntu: overlayfs -- vfs-add-i_op-dentry_open" + * ubuntu: overlayfs v18 -- -- overlayfs: add statfs support + + [ Erez Zadok ] + + * ubuntu: overlayfs v18 -- -- overlayfs: implement show_options + + [ Miklos Szeredi ] + + * ubuntu: overlayfs v18 -- -- vfs: add i_op->dentry_open() + * ubuntu: overlayfs v18 -- -- vfs: export do_splice_direct() to modules + * ubuntu: overlayfs v18 -- -- vfs: export __inode_permission() to modules + * ubuntu: overlayfs v18 -- -- vfs: introduce clone_private_mount() + * ubuntu: overlayfs v18 -- -- overlay filesystem + * ubuntu: overlayfs v18 -- -- fs: limit filesystem stacking depth + + [ Neil Brown ] + + * ubuntu: overlayfs v18 -- -- overlay: overlay filesystem documentation + + [ Tim Gardner ] + + * [Config] CONFIG_SUNRPC_DEBUG=y + - LP: #1127319 + + -- Andy Whitcroft Fri, 28 Jun 2013 10:26:52 +0100 + +linux (3.10.0-0.7) saucy; urgency=low + + [ Andy Whitcroft ] + + * autopkgtest: switch Depends: to build-essential + + -- Andy Whitcroft Tue, 25 Jun 2013 08:40:55 +0100 + +linux (3.10.0-0.6) saucy; urgency=low + + [ Andy Whitcroft ] + + * [Config] enable CONFIG_ARCH_TEGRA to fix FTBFS on armhf + * SAUCE: ubuntu: overlayfs -- ovl_path_open should not take path reference + - LP: #1098378 + * ubuntu: AUFS -- update to 4f14cef47eb7c23eda7198931fbab1040866b6ee + * ubuntu: overlayfs -- expose do_splice_direct prototype + * ubuntu: overlayfs -- follow change to do_splice_direct interface + * [Config] flip CONFIG_NO_HZ_FULL_ALL off as it is overheating machines + - LP: #1192691 + + [ Stefan Bader ] + + * (d-i) Add dm-snapshot to md-modules + - LP: #1191726 + + [ Tim Gardner ] + + * Release tracker + - LP: #1194149 + * [Config] CONFIG_WIL6210=n for armhf + * [Config] d-i: Add calxedaxgmac to nic-modules + - LP: #1192358 + * [debian] Use dh_strip + - LP: #1192759 + * [Config] Enable perf for armhf + * do_tools=false when cross compiling + * [Config] CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y + - LP: #1108082 + + [ Upstream Kernel Changes ] + + * nsp32: switch reset delay to msleep() as it is tooo long + * alx: add a simple AR816x/AR817x device driver + Plucked from linux-next. replaces ubuntu/alx in favor of + 'to be merged' version in 3.11. + * rebase to v3.10-rc7 + - LP: #1189363 + + -- Tim Gardner Sat, 22 Jun 2013 18:10:31 -0600 + +linux (3.10.0-0.5) saucy; urgency=low + + [ Andy Whitcroft ] + + * rebase to v3.10-rc6 + * [Config] updateconfigs following rebase to v3.10-rc6 + + [ Upstream Kernel Changes ] + + * rebase to v3.10-rc6 + + -- Andy Whitcroft Mon, 17 Jun 2013 11:12:39 +0100 + +linux (3.10.0-0.4) saucy; urgency=low + + [ Andy Whitcroft ] + + * [Config] updateconfigs following rebase to v3.10-rc4 + + -- Andy Whitcroft Mon, 10 Jun 2013 11:42:28 +0100 + +linux (3.10.0-0.3) saucy; urgency=low + + [ Andy Whitcroft ] + + * rebase to v3.10-rc5 + + [ Upstream Kernel Changes ] + + * rebase to v3.10-rc5 + - LP: #1186170 + + -- Andy Whitcroft Mon, 10 Jun 2013 09:23:31 +0100 + +linux (3.10.0-0.2) saucy; urgency=low + + [ Andy Whitcroft ] + + * rebase to v3.10-rc4 + * [Config] CONFIG_BINFMT_SCRIPT=y to fix booting initramfs scripts + * [Config] enable SND_PCM_DEBUG SND_PCM_XRUN_DEBUG + - LP: #1187744 + * [Config] enforce CONFIG_BINFMT_SCRIPT=y + + [ Dave Chiluk ] + + * SAUCE: ncpfs: fix rmdir returns Device or resource busy + - LP: #1035226 + + [ Tim Gardner ] + + * rebase to v3.10-rc3 + * [Config] sparc be gone + * [Config] ia64 be gone + * d-i: block-modules provides nbd-modules + + [ Upstream Kernel Changes ] + + * rebase to v3.10-rc4 + * rebase to v3.10-rc3 + + -- Tim Gardner Tue, 28 May 2013 06:16:46 -0600 + +linux (3.10.0-0.1) saucy; urgency=low + + [ Tim Gardner ] + + * UBUNTU: Disabled lttng + * UBUNTU: Disable aufs for FTBS + * UBUNTU: Disabled alx + * UBUNTU: alx: rename NETIF_F_HW_VLAN_* feature flags to NETIF_F_HW_VLAN_CTAG_* + * UBUNTU: rebase to v3.10-rc2 + * UBUNTU: SAUCE: uvcvideo: quirk PROBE_DEF for Alienware X51 OmniVision webcam + + [ Andy Whitcroft ] + + * UBUNTU: [Config] update standards version to 3.9.4.0 + * UBUNTU: [Config] squash duplicate package description (long and short) + * UBUNTU: [Config] fix up Vcs-git: to point to saucy + * UBUNTU: [Config] drop depenancy on util-linux as is Essential + * UBUNTU: [Config] drop redundant Build-Conficts: + + [ Upstream Kernel Changes ] + + * rebase to v3.10-rc2 + - LP: #1180351 + + [ Upstream Kernel Changes ] + + * rebase to v3.10-rc1 + - LP: #1172151 + - LP: #1089795 + - LP: #1167270 + - LP: #1128840 + + -- Tim Gardner Tue, 14 May 2013 13:41:07 -0600 + +linux (3.10.0-0.0) saucy; urgency=low + + * Dummy + + -- Tim Gardner Thu, 09 May 2013 20:30:40 +0100 + +linux (3.9.0-2.6) saucy; urgency=low + + [ Tim Gardner ] + + * rebase to v3.9.2 + + -- Tim Gardner Thu, 09 May 2013 20:30:40 +0100 + +linux (3.9.0-1.5) saucy; urgency=low + + [ Tim Gardner ] + + * rebase to v3.9.1 + + -- Tim Gardner Wed, 08 May 2013 12:49:45 -0400 + +linux (3.9.0-0.4) saucy; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: overlayfs -- add FS_ALIAS + + [ Tim Gardner ] + + * Added lttng + - LP: #1175784 + + -- Tim Gardner Thu, 02 May 2013 17:17:13 -0400 + +linux (3.9.0-0.3) saucy; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to v3.9 + + -- Tim Gardner Mon, 29 Apr 2013 18:20:00 -0400 + +linux (3.9.0-0.2) saucy; urgency=low + + [ Tim Gardner ] + + * Enable extras packaging for amd64/i386. + Fixes build depenencies with brittany and linux-meta. + + -- Tim Gardner Mon, 29 Apr 2013 05:37:01 -0600 + +linux (3.9.0-0.1) saucy; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to v3.9-rc8 + + [ Upstream Kernel Changes ] + + * rebase to v3.9-rc7 + - LP: #1128840 + + [ Upstream Kernel Changes ] + + * rebase to v3.9-rc6 + + [ Upstream Kernel Changes ] + + * rebase to v3.9-rc5 + + [ Upstream Kernel Changes ] + + * rebase to v3.8-rc4 + - LP: #1095315 + - LP: #886975 + - LP: #1086921 + + [ Upstream Kernel Changes ] + + * rebase to v3.9-rc3 + - LP: #1155016 + - LP: #1103594 + + [ Upstream Kernel Changes ] + + * rebase to v3.9-rc2 + + [ Upstream Kernel Changes ] + + * rebase to v3.9-rc1 + - LP: #901105 + - LP: #961286 + - LP: #1011792 + - LP: #1128934 + - LP: #886975 + - LP: #978807 + + -- Tim Gardner Wed, 20 Feb 2013 09:12:39 -0700 + +linux (3.8.0-7.14) raring; urgency=low + + [ Andy Whitcroft ] + + * [Config] CONFIG_RCU_USER_QS=n + * [Config] CONFIG_MTD_ONENAND_SIM=n + * annotations: add annotations for CONFIG_CC_STACKPROTECTOR + + [ Upstream Kernel Changes ] + + * rebase to v3.8 + + [Tim Gardner] + + * Release Tracking Bug + - LP: #1130111 + * UBUNTU: SAUCE: rt2x00: rt2x00pci_regbusy_read() - only print register access failure once + - LP: #1128840 + + -- Tim Gardner Mon, 18 Feb 2013 09:25:56 -0700 + +linux (3.8.0-6.13) raring; urgency=low + + [Tim Gardner] + + * Release Tracking Bug + - LP: #1125364 + * Add ahci modules to d-i + - LP: #1124415 + + + [ Chris Wilson ] + + * SAUCE: drm/i915: Wait for pending flips to complete before tearing down + the encoders + - LP: #1097315 + + -- Tim Gardner Wed, 13 Feb 2013 12:16:48 -0700 + +linux (3.8.0-6.12) raring; urgency=low + + [Tim Gardner] + + * perf: NO_LIBPERL=1 + * Fix linux-headers dependency + * Release Tracking Bug + - LP: #1124362 + + [ Andy Whitcroft ] + + * [Config] enable CONFIG_AUFS_EXPORT to allow nfs exports + - LP: #1121699 + + [ Daniel Vetter ] + + * SAUCE: drm/i915: write backlight harder + - LP: #954661 + + -- Tim Gardner Wed, 13 Feb 2013 10:25:11 -0700 + +linux (3.8.0-6.11) raring; urgency=low + + [Tim Gardner] + + * Release Tracking Bug + - LP: #1122071 + * rebase to v3.8-rc7 + * Add libaudit-dev as a build dependency + * Build perf with NO_LIBPYTHON=1 to avoid a python build dependency. + + [ Leann Ogasawara ] + + * [Config] Remove CONFIG_SATA_AHCI annotation + + -- Tim Gardner Fri, 08 Feb 2013 07:41:13 -0500 + +linux (3.8.0-5.10) raring; urgency=low + + [Tim Gardner] + + * Release Tracking Bug + - LP: #1118568 + + * Bump ABI to fix install issue with 3.8.0-4.8. + Moving drivers/ata/*ahci* to linux-image caused an + install conflict with linux-image-extras without an + ABI bump. + + [ Jan Beulich ] + + * SAUCE: xen-pciback: rate limit error messages from + xen_pcibk_enable_msi{, x}() + - LP: #1117336 + - CVE-2013-0231 + + -- Tim Gardner Thu, 07 Feb 2013 05:38:12 -0700 + +linux (3.8.0-4.9) raring; urgency=low + + [ Herton Ronaldo Krzesinski ] + + * d-i: Add mellanox ethernet drivers to nic-modules + - LP: #1015339 + + [ Joseph Salisbury ] + + * SAUCE: ACPI: Add DMI entry for Sony VGN-FW41E_H + - LP: #1113547 + + [ Kamal Mostafa ] + + * SAUCE: alx driver import script + + [ Qualcomm Atheros, Inc ] + + * SAUCE: alx: Update to heads/master + + [ Tim Gardner ] + + * Release Tracking Bug + - LP: #1117673 + + * [debian] Remove dangling symlink from headers package + - LP: #1112442 + * [config] CONFIG_ALX=m + * [Config] Add alx to d-i nic-modules + * [Config] CONFIG_SATA_AHCI=m + - LP: #1056563 + + -- Leann Ogasawara Tue, 05 Feb 2013 05:54:32 -0800 + +linux (3.8.0-4.8) raring; urgency=low + + [ Allen Ibara ] + + * SAUCE: imx6: dts: Add IMX6Q AHCI support + + [ Andy Whitcroft ] + + * rebase to v3.8-rc6 + * updateconfigs following rebase to v3.8-rc6 + + [Leann Ogasawara] + + * Release Tracking Bug + - LP: #1112573 + + [ Paolo Pisati ] + + * SAUCE: imx6: enable sata clk if SATA_AHCI_PLATFORM + * [Config] SERIAL_AMBA_PL011=y (vexpress serial console) + * [Config] MMC_ARMMMCI=y (vexpress mmc) + * [Config] FB_ARMCLCD=y (vexpress framebuffer) + + [ Seth Forshee ] + + * [Config] CONFIG_MAC80211_MESSAGE_TRACING=y + + [ Upstream Kernel Changes ] + + * rebase to v3.8-rc6 + - LP: #1107477 + + -- Leann Ogasawara Fri, 01 Feb 2013 07:20:59 -0800 + +linux (3.8.0-3.7) raring; urgency=low + + [ Andy Green ] + + * SAUCE: ARM: OMAP2+: add cpu id register to MAC address helper + * SAUCE: ARM: omap2 add mac address allocation register api + * SAUCE: ARM: omap2 panda register ethernet and wlan for automatic mac + allocation + + [ Leann Ogasawara ] + + * rebase to v3.8-rc5 + * Release Tracking Bug + - LP: #1111486 + + [ Paolo Pisati ] + + * SAUCE: davinci: vpss: compilation fix + * [Config] enable TI OMAP4 support (Pandaboard/ES) + * [Config] OMAP_USB2=y (since TWL6030_USB depends on it) + * [Config] enable Freescale IMX6 support (SabreLite) + * [Config] SERIAL_IMX_CONSOLE=y + * [Config] MMC_*_IMX=y + * [Config] disable USB_SUSPEND + * [Config] USB_MXS_PHY=y + * [Config] USB_CHIPIDEA=y + * SAUCE: DTB: add support for multiple DTBs + * SAUCE: DTB: build imx6q-sabrelite + * SAUCE: DTB: build beaglexm + * SAUCE: DTB: build panda/panda es + * [Config] disable CPU_FREQ + * [Config] PANEL_TFP410=y (video DVI output) + * [Config] SND_OMAP_SOC*=y + * [Config] SND_IMX_SOC*=y + * [Config] I2C_IMX=y + * [Config] SPI_IMX=m + + [ Stefan Bader ] + + * [Config] Move 9p modules into generic package + - LP: #1107658 + + [ Tony Lindgren ] + + * SAUCE: ARM: OMAP2+: Limit omap initcalls to omap only on multiplatform + kernels + * SAUCE: ARM: OMAP2+: Use omap initcalls + * SAUCE: ARM: OMAP: Fix i2c cmdline initcall for multiplatform + * SAUCE: ARM: OMAP: Fix dmaengine init for multiplatform + * SAUCE: ARM: OMAP2+: Add multiplatform debug_ll support + * SAUCE: ARM: OMAP2+: Disable code that currently does not work with + multiplaform + * SAUCE: ARM: OMAP2+: Enable ARCH_MULTIPLATFORM support + * SAUCE: ARM: OMAP2+: Add minimal support for booting vexpress + * SAUCE: ARM: OMAP2+: Remove now obsolete uncompress.h and debug-macro.S + + [ Upstream Kernel Changes ] + + * rebase to v3.8-rc5 + - LP: #1096789 + + -- Leann Ogasawara Thu, 31 Jan 2013 06:44:52 -0800 + +linux (3.8.0-2.6) raring; urgency=low + + [ Adam Conrad ] + + * Fix up linux-tools -> SRCPKGNAME-tools rename + + [ Andy Whitcroft ] + + * [Config] re-disable CONFIG_SOUND_OSS + - LP: #1105230 + + [ Arend van Spriel ] + + * SAUCE: brcmsmac: fix tx status processing + + [Leann Ogasawara] + + * Release Tracking Bug + - LP: #1105104 + + -- Leann Ogasawara Fri, 25 Jan 2013 11:56:30 -0800 + +linux (3.8.0-1.5) raring; urgency=low + + [Tim Gardner] + + * Release Tracking Bug + - LP: #1101235 + + [ Dudley Du ] + + * SAUCE: Input: add support for Cypress PS/2 Trackpads + - LP: #978807 + + [ Kamal Mostafa ] + + * SAUCE: Input: increase struct ps2dev cmdbuf[] to 8 bytes + * SAUCE: Input: Cypress PS/2 Trackpad simulated multitouch + * [Config] Add CONFIG_PS2_CYPRESS + + [ Tim Gardner ] + + * rebase to v3.8-rc4 + + [ Upstream Kernel Changes ] + + * rebase to v3.8-rc4 + - LP: #1095315 + - LP: #886975 + - LP: #1086921 + + -- Leann Ogasawara Thu, 17 Jan 2013 10:50:22 -0800 + +linux (3.8.0-0.4) raring; urgency=low + + [ Leann Ogasawara ] + + * [Config] Update CONFIG_TOUCHSCREEN_EGALAX build annotation + * [Config] Update CONFIG_IIO build annotation + * [Config] Update CONFIG_TOUCHSCREEN_EETI annotation + * [Config] Remove CONFIG_SPI_DW_MMIO annotation + * [Config] Remove CONFIG_SPI_PL022 annotation + * [Config] Update CONFIG_EZX_PCAP annotation + * [Config] Update CONFIG_SENSORS_AK8975 annotation + * [Config] Disable CONFIG_DRM_MGAG200 + - LP: #1042903 + + -- Leann Ogasawara Mon, 14 Jan 2013 10:01:50 -0800 + +linux (3.8.0-0.3) raring; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: (no-up) trace: add trace events for open(), exec() and + uselib()" + + [ Scott James Remnant ] + + * SAUCE: (no-up) trace: add trace events for open(), exec() and uselib() + (for v3.7+) + - LP: #1085766, #462111 + + -- Andy Whitcroft Fri, 11 Jan 2013 16:57:27 +0000 + +linux (3.8.0-0.2) raring; urgency=low + + [ Tim Gardner ] + + * [packaging] Add macro to selectively disable building perf + * [packaging] Cannot depend on universe package libaudit-dev + + -- Tim Gardner Thu, 10 Jan 2013 12:43:24 -0700 + +linux (3.8.0-0.1) raring; urgency=low + + + [ Upstream Kernel Changes ] + + * rebase to v3.8-rc3 + - LP: #1096789 + + [ Upstream Kernel Changes ] + + * rebase to v3.8-rc2 + - LP: #1082357 + - LP: #1075882 + + -- Andy Whitcroft Mon, 17 Dec 2012 10:35:09 +0000 + +linux (3.7.0-7.15) raring; urgency=low + + [ Chris J Arges ] + + * SAUCE: add eeprom_bad_csum_allow module parameter + - LP: #1070182 + + [ Leann Ogasawara ] + + * Add ceph to linux-image for virtual instances + - LP: #1063784 + + [ Serge Hallyn ] + + * SAUCE: net: dev_change_net_namespace: send a KOBJ_REMOVED/KOBJ_ADD + + [ Tim Gardner ] + + * [Config] CONFIG_SLUB_DEBUG=y + - LP: #1090308 + + [ Upstream Kernel Changes ] + + * Revert "[SCSI] sd: Implement support for WRITE SAME" + - LP: #1089818 + + -- Leann Ogasawara Wed, 12 Dec 2012 06:50:20 -0800 + +linux (3.7.0-6.14) raring; urgency=low + + [ Andy Whitcroft ] + + * [Config] annotations: all new annotations scheme including defaults + * [Configs] apply annotation updates to main configs (top section) + + [ Leann Ogasawara ] + + * Revert "SAUCE: include and for mmc_core arm + build" + * Revert "SAUCE: [arm] fixup __aeabi_uldivmod undefined build error" + * Temporarily disable module check for build + + [ Stefan Bader ] + + * ubuntu: dm-raid45: Adapt to upstream interface changes + * Re-enable build of dm-raid45 + + [ Tim Gardner ] + + * SAUCE: Moved scripts/fw-to-ihex.sh to debian/scripts/misc + * SAUCE: ACPICA: Fix ACPI mutex object allocation memory leak on error + * SAUCE: drm: Fix possible EDID memory allocation oops + * SAUCE: ttm: Fix possible _manager memory allocation oops + * SAUCE: iwlwifi: iwlagn_request_scan: Fix check for priv->scan_request + * SAUCE: i915: intel_set_mode: Reduce stack allocation from 500 bytes to + 2 pointers + + [ Tomas Hozza ] + + * SAUCE: tools: hv: Netlink source address validation allows DoS + - LP: #1084777 + - CVE-2012-5532 + + [ Upstream Kernel Changes ] + + * rebase to v3.7 + + -- Leann Ogasawara Wed, 05 Dec 2012 14:11:12 -0800 + +linux (3.7.0-5.13) raring; urgency=low + + [ Lino Sanfilippo ] + + * SAUCE: inotify, fanotify: replace fsnotify_put_group() with + fsnotify_destroy_group() + - LP: #922906 + * SAUCE: fsnotify: introduce fsnotify_get_group() + - LP: #922906 + * SAUCE: fsnotify: use reference counting for groups + - LP: #922906 + * SAUCE: fsnotify: take groups mark_lock before mark lock + - LP: #922906 + * SAUCE: fanotify: add an extra flag to mark_remove_from_mask that + indicates wheather a mark should be destroyed + - LP: #922906 + * SAUCE: fsnotify: use a mutex instead of a spinlock to protect a groups + mark list + - LP: #922906 + * SAUCE: fsnotify: pass group to fsnotify_destroy_mark() + - LP: #922906 + * SAUCE: fsnotify: introduce locked versions of fsnotify_add_mark() and + fsnotify_remove_mark() + - LP: #922906 + * SAUCE: fsnotify: dont put marks on temporary list when clearing marks + by group + - LP: #922906 + * SAUCE: fsnotify: change locking order + - LP: #922906 + + [ Tim Gardner ] + + * [Config] CONFIG_NFC_LLCP=y + * [Config] get-firmware: Filter new files through fwinfo + * [Config] CONFIG_MTD_NAND_DOCG4=m for all arches + * [Config] CONFIG_DRM_EXYNOS_HDMI=y + * [Config] CONFIG_XEN=y for all arches + * [Config] CONFIG_SND_OMAP_SOC_ZOOM2=m + * [Config] CONFIG_MMC_DW_EXYNOS=m + * [Config] CONFIG_GPIO_ADNP=m + * [Config] find-obsolete-firmware: Use correct path + * rebase to v3.7-rc8 + - LP: #1084640 + + [ Upstream Kernel Changes ] + + * Revert "VFS: don't do protected {sym,hard}links by default" + - LP: #1084192 + + -- Tim Gardner Wed, 28 Nov 2012 16:07:08 +0000 + +linux (3.7.0-4.12) raring; urgency=low + + [ Tim Gardner ] + + * Revert "[Config] Use -j1 for headers_install" + * Revert "[Config] install-arch-headers needs a valid config" + Strayed into the weeds in search of the root cause of the periodic + build failure. + Fixes powerpc FTBS introduced in -4.11. + * [Config] hmake -j1 + The kernel makefile appears to have parallel dependency + problems for the install_headers target. This appears to be root + cause for a periodic build failure on N-way machines. + + -- Leann Ogasawara Tue, 27 Nov 2012 12:33:06 -0800 + +linux (3.7.0-4.11) raring; urgency=low + + [ Tim Gardner ] + + * [Config] Use -j1 for headers_install + Also fixes a powerpc FTBS introduced by + "[Config] install-arch-headers needs a valid config". + + -- Tim Gardner Tue, 27 Nov 2012 10:19:30 -0700 + +linux (3.7.0-4.10) raring; urgency=low + + [ Andy Whitcroft ] + + * [Config] add rebuild-test support for autopkgtest + - LP: #1081500 + * [tests] move build tests out of the way + - LP: #1081500 + * [tests] add an autopkgtest rebuild test + - LP: #1081500 + + [ Tim Gardner ] + + * rebase to v3.7-rc7 + * SAUCE: Remove emi62 files duplicated in linux-firmware + * SAUCE: Remove sb16 files duplicated in linux-firmware + * SAUCE: Remove whiteheat files duplicated in linux-firmware + * SAUCE: Remove yamaha files duplicated in linux-firmware + * SAUCE: Remove dsp56k files used only by m68k + * SAUCE: firmware: Remove last vestiges of dabusb + * SAUCE: Remove vicam files duplicated in linux-firmware + * [Config] install-arch-headers needs a valid config + + [ Upstream Kernel Changes ] + + * rebase to v3.7-rc7 + - LP: #1076840 + - LP: #1081466 + + -- Leann Ogasawara Wed, 21 Nov 2012 06:07:23 -0800 + +linux (3.7.0-3.9) raring; urgency=low + + [ Leann Ogasawara ] + + * [Config] Enable CONFIG_X86_CPUFREQ_NFORCE2=y + - LP: #1079900 + * Add nfsv3 to nfs-modules udeb + + [ Paolo Pisati ] + + * [Config] SND_OMAP_SOC*=y + - LP: #1019321 + + [ Stefan Bader ] + + * SAUCE: (no-up) xen/netfront: handle compound page fragments on transmit + - LP: #1078926 + + [ Tim Gardner ] + + * Revert "SAUCE: SECCOMP: audit: always report seccomp violations" + - LP: #1079469 + * Revert "SAUCE: omap3 clocks .dev_id = NULL" + * rebase to v3.7-rc6 + * SAUCE: script to detect obsolete firmware + * SAUCE: Remove yam files duplicated in linux-firmware + * SAUCE: Remove tehuti files duplicated in linux-firmware + * SAUCE: Remove matrox files duplicated in linux-firmware + * SAUCE: Remove cxgb3 files duplicated in linux-firmware + * SAUCE: Remove r128 files duplicated in linux-firmware + * SAUCE: Remove acenic files duplicated in linux-firmware + * SAUCE: Remove keyspan files duplicated in linux-firmware + * SAUCE: Remove sun files duplicated in linux-firmware + * SAUCE: Remove radeon files duplicated in linux-firmware + * SAUCE: Update bnx2x firmware to 7.8.2.0 + * [Config] generic.inclusion-list: econet has disappeared + + [ Upstream Kernel Changes ] + + * seccomp: forcing auditing of kill condition + - LP: #1079469 + * rebase to v3.7-rc6 + + -- Leann Ogasawara Tue, 20 Nov 2012 12:28:55 -0800 + +linux (3.7.0-2.8) raring; urgency=low + + [ Andy Whitcroft ] + + * Revert "overlayfs: disable until FTBS is fixed" + * Revert "ubuntu: overlayfs" + * Revert "ubuntu: AUFS" + * ubuntu: overlayfs -- overlayfs: add statfs support + * ubuntu: overlayfs -- ovl: switch to __inode_permission() + * ubuntu: overlayfs -- overlayfs: copy up i_uid/i_gid from the underlying + inode + - LP: #944386 + * ubuntu: AUFS (no-squash): basic framework and update machinary + * ubuntu: AUFS (no-squash) -- aufs3-base.patch + * ubuntu: AUFS (no-squash) -- aufs3-standalone.patch + * ubuntu: AUFS: aufs-update -- follow the uapi header changes + * ubuntu: AUFS -- update to f2873474324d0a31af4340554b9715f51331bc7f + * ubuntu: AUFS (no-squash) -- reenable + - LP: #1079193 + + [ Erez Zadok ] + + * ubuntu: overlayfs -- overlayfs: implement show_options + + [ Miklos Szeredi ] + + * ubuntu: overlayfs -- vfs: add i_op->dentry_open() + * ubuntu: overlayfs -- vfs: export do_splice_direct() to modules + * ubuntu: overlayfs -- vfs: introduce clone_private_mount() + * ubuntu: overlayfs -- overlay filesystem + * ubuntu: overlayfs -- fs: limit filesystem stacking depth + * ubuntu: overlayfs -- vfs: export __inode_permission() to modules + + [ Neil Brown ] + + * ubuntu: overlayfs -- overlay: overlay filesystem documentation + + [ Robin Dong ] + + * ubuntu: overlayfs -- overlayfs: fix possible leak in ovl_new_inode + * ubuntu: overlayfs -- overlayfs: create new inode in ovl_link + + -- Andy Whitcroft Thu, 15 Nov 2012 13:35:12 +0000 + +linux (3.7.0-1.7) raring; urgency=low + + [ Tim Gardner ] + + * [Config] Drop dependency on libaudit-dev + Its a universe package which causes an FTBS on the builders. + libaudit-dev is not strictly required for the perf tools build. + + -- Tim Gardner Wed, 14 Nov 2012 10:08:13 -0700 + +linux (3.7.0-1.6) raring; urgency=low + + [ Andy Whitcroft ] + + * [Config] enforce -- switch CONFIG_NVRAM to more readable form + * [Config] better encode the CONFIG_NVRAM constaint + * enforcer -- fix debugging output + + [ Ben Collins ] + + * [Config] Add custom_override rule to allow for alternate kernel + file/install + * [Config] Use SRCPKGNAME as prefix for indep linux headers package + + [ Tim Gardner ] + + * [Config] Dropped armel + * Drop highbank from ABI fetch list + * [Config] Use dh_prep instead of 'dh_clean -k' + * [Config] Build depend on libaudit-dev, libunwind8-dev for tools + * [Config] Document binary-indep dependency chain + * rebase to v3.7-rc5 + + [ Upstream Kernel Changes ] + + * rebase to v3.7-rc5 + + -- Tim Gardner Tue, 13 Nov 2012 07:13:37 -0500 + +linux (3.7.0-0.5) raring; urgency=low + + [ Tim Gardner ] + + * [Config] CONFIG_AMD_IOMMU_V2=m + - LP: #1071520 + * [Config] CONFIG_MTD_ONENAND_SIM=n for armel + Fixes FTBS + + -- Tim Gardner Thu, 08 Nov 2012 15:45:39 -0500 + +linux (3.7.0-0.4) raring; urgency=low + + [ Ben Collins ] + + * [Config] Update enforce rule for CONFIG_NVRAM to better suit flavours + + [ Tim Gardner ] + + * [Config] do_tools=false for arm + + -- Tim Gardner Thu, 08 Nov 2012 05:39:51 -0700 + +linux (3.7.0-0.3) raring; urgency=low + + [ Tim Gardner ] + + * [Config] CONFIG_DRM_EXYNOS_HDMI=n for armhf + * [Config] CONFIG_MTD_NAND_DOCG4=n for armel/armhf + * [Config] Drop highbank harder + + -- Tim Gardner Wed, 07 Nov 2012 18:11:45 +0000 + +linux (3.7.0-0.2) raring; urgency=low + + [ Andy Whitcroft ] + + * [Config] add fs/udf to linux-image to support DVD/CD formats in virtual + instances + - LP: #1066921 + * [Config] drop highbank builds + + [ Jeremy Kerr ] + + * SAUCE: efivarfs: Implement exclusive access for {get, set}_variable + - LP: #1063061 + + [ Leann Ogasawara ] + + * Reinstate dropped.txt from Ubuntu-3.7.0-0.1-rc1 + + [ Tim Gardner ] + + * [Config] Dropped powerpc/ppc64 in favour of the community kernel + * [Config] CONFIG_MODULE_SIG=y for amd64,i386, and highbank + * rebase to v3.7-rc4 + * SAUCE: MODSIGN: Emit error for incorrectly signed module + + [ Upstream Kernel Changes ] + + * rebase to v3.7-rc4 + + -- Tim Gardner Mon, 05 Nov 2012 05:35:41 -0700 + +linux (3.7.0-0.1) raring; urgency=low + + + [ Upstream Kernel Changes ] + + * rebase to v3.7-rc3 + - LP: #1056078 + + [ Upstream Kernel Changes ] + + * rebase to v3.7-rc2 + - LP: #1060729 + - LP: #1059523 + - LP: #1006690 + - LP: #1049623 + - LP: #1046512 + - LP: #1052499 + - LP: #1037642 + - LP: #559939 + - LP: #1052460 + - LP: #939161 + - LP: #1046734 + + -- Tim Gardner Tue, 02 Oct 2012 08:13:07 -0600 + +linux (3.6.0-0.1) UNRELEASED; urgency=low + + + [ Upstream Kernel Changes ] + + * rebase to v3.6 + + [ Upstream Kernel Changes ] + + * rebase to v3.6-rc7 + + [ Upstream Kernel Changes ] + + * rebase to v3.6-rc6 + - LP: #1000424 + + [ Upstream Kernel Changes ] + + * rebase to v3.6-rc5 + - LP: #1040077 + + [ Upstream Kernel Changes ] + + * rebase to v3.6-rc4 + + [ Upstream Kernel Changes ] + + * rebase to v3.6-rc3 + - LP: #1038651 + - LP: #1034779 + + -- Leann Ogasawara Tue, 24 Jul 2012 06:37:09 -0700 + +linux (3.5.0-6.6) quantal-proposed; urgency=low + + [ Andy Whitcroft ] + + * [Config] CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION enable IPv6 + experimental features + * SAUCE: highbank -- export clock functions for modules + * [Config] highbank -- reenable CONFIG_TOUCHSCREEN_W90X900 + * [Config] highbank -- renenable CONFIG_SERIO_AMBAKMI + * [Config] highbank -- reenable CONFIG_RFKILL_GPIO + * [Config] highbank -- reenable CONFIG_MMC_SDHCI_PXAV3 + * [Config] highbank -- reenable CONFIG_MMC_SDHCI_PXAV3 + * [Config] highbank -- reenable CONFIG_KEYBOARD_SAMSUNG + * [Config] highbank -- reenable CONFIG_FB_ARMCLCD + * [Config] highbank -- reenable CONFIG_DW_DMAC + * [Config] highbank -- reenable CONFIG_USB_R8A66597_HCD + * [Config] highbank -- reenable CONFIG_USB_MV_UDC + * [Config] highbank -- reenable CONFIG_USB_DWC3 + * [Config] highbank -- reenable CONFIG_SATA_MV + * [Config] highbank -- reenable CONFIG_PATA_ARASAN_CF + * [Config] highbank -- CONFIG_CAN_C_CAN_PLATFORM + * [Config] highbank -- reenable CONFIG_MMC_ARMMMCI + * [Config] highbank -- reenable CONFIG_SERIAL_AMBA_PL010 + * [Config] highbank -- reenable CONFIG_ATMEL_PWM + * [Config] highbank -- enable CONFIG_CHECKPOINT_RESTORE + * [Config] highbank -- enable CONFIG_EXPERT + * [Config] highbank -- enable CONFIG_CHECKPOINT_RESTORE + * [Config] enable CONFIG_USB_DYNAMIC_MINORS + * [Config] enable CONFIG_USB_EHCI_TT_NEWSCHED + * [Config] enable CONFIG_USB_ETH_EEM + * [Config] enable CONFIG_USB_HCD_BCMA/CONFIG_USB_HCD_SSB + * [Config] disable CONFIG_USB_M66592 + * [Config] enable CONFIG_USB_NET2272 + * [Config] enable CONFIG_USB_R8A66597 + * [Config] annotate: CONFIG_USB_OMAP not required for our h/w + * [Config] set CONFIG_USB_MUSB_HDRC=m for omap + * [Config] annotate: CONFIG_USB_G_MULTI fix rule + * [Config] CONFIG_USB_GPIO_VBUS=m for OMAP + * [Config] Enable CONFIG_DRM_AST/_CIRRUS_QEMU/_MGAG200 + * [Config] sync configuration armhf omap -> armel omap + * [Config] annotate: CONFIG_IIO triggers build failures on OMAP4 + * [Config] disable CONFIG_OMAP_IOVMM is deprecated + + [ Bryan Wu ] + + * [Config] change default IO scheduler from CFQ to Deadline + + [ Leann Ogasawara ] + + * Revert "[Config] Temporarily disable CONFIG_MV643XX_ETH on powerpc" + * [Config] Disable CONFIG_MOUSE_INPORT + + [ Tim Gardner ] + + * SAUCE: firmware: Update bnx2x to current firmware version 7.2.51 + * [Config] Add bnx2x firmware to nic-modules udeb + * SAUCE: Add script to convert firmware to ihex format + * SAUCE: firmware: Upgrade bnx2 to current versions + * [Config] Add tigon firmware to nic-modules udeb + * [Config] CONFIG_EARLY_PRINTK_DBGP=y + - LP: #1026761 + * SAUCE: Remove redundant cis firmware + * SAUCE: Remove redundant emi26 firmware + * SAUCE: Remove redundant ttusb-budget firmware + * SAUCE: Remove redundant sun/cassini firmware + * SAUCE: Remove redundant ositech/Xilinx7OD firmware + * SAUCE: Remove redundant 3com/typhoon.bin firmware + * SAUCE: Remove redundant yamaha/ds1 firmware + * SAUCE: Remove redundant keyspan_pda firmware + * rebase to v3.5 + + [ Upstream Kernel Changes ] + + * rebase to v3.5 + - LP: #1027828 + + -- Leann Ogasawara Mon, 23 Jul 2012 05:57:04 -0700 + +linux (3.5.0-5.5) quantal-proposed; urgency=low + + [ Andy Whitcroft ] + + * [Config] annotations: initial import of configuration annotations + + [ Bryan Wu ] + + * [Config] enforcer -- add CONFIG_I2C_DESIGNWARE_PLATFORM enforce checker + + [ Leann Ogasawara ] + + * Rebase to v3.5-rc7 + + [ Manoj Iyer ] + + * SAUCE: Bluetooth: btusb: Add vendor specific ID (0a5c:21f4) BCM20702A0 + - LP: #1010281 + + [ Tim Gardner ] + + * [Config] enable CONFIG_I2C_HELPER_AUTO for all flavours as policy + expects + * [Config] CONFIG_I2O_CONFIG_OLD_IOCTL=n + * [Config] CONFIG_BRIDGE_EBT_ULOG=n + * [Config] CONFIG_IP_NF_QUEUE=n + * [Config] CONFIG_MTD_DOC2000=n + * [Config] CONFIG_PRINT_QUOTA_WARNING=n + * [Config] CONFIG_PRISM54=n + * [Config] CONFIG_SCx200_I2C=n + * [Config] CONFIG_USB_ANNOUNCE_NEW_DEVICES=y + + [ Upstream Kernel Changes ] + + * rebase to v3.5-rc7 + + -- Leann Ogasawara Mon, 16 Jul 2012 15:38:41 -0700 + +linux (3.5.0-4.4) quantal-proposed; urgency=low + + [ Andy Whitcroft ] + + * [Packaging] getabis should be extracting all packages + - LP: #1021174 + * [Config] getabis -- series uses linux-image-extra + - LP: #1021174 + * rebase to v3.5-rc6 + + [ Bryan Wu ] + + * [Config] built-in CONFIG_MICREL_PHY as other PHY drivers for all + flavours + * [Config] sync CONFIG_MOUSE_PS2_ config for all flavours + + [ Leann Ogasawara ] + + * [Config] Enable CONFIG_RT2800USB_RT35XX and CONFIG_RT2800USB_RT53XX + - LP: #1019561 + + [ Paolo Pisati ] + + * [Config] SND_OMAP_SOC, SND_OMAP_SOC_MCBSP and SND_OMAP_SOC_OMAP3_BEAGLE =y + - LP: #1019321 + + [ Stefan Bader ] + + * SAUCE: (pre-up) net: dont use __netdev_alloc_skb for bounce buffer + - LP: #1018456 + * (config) Disable ACPI_PROCFS_POWER + + [ Tim Gardner ] + + * [Config] CONFIG_ACPI_BGRT=y + * Extract firmware module info during getabi + - LP: #1021174 + + [ Upstream Kernel Changes ] + + * rebase to v3.5-rc6 + + -- Leann Ogasawara Mon, 09 Jul 2012 08:50:20 -0700 + +linux (3.5.0-3.3) quantal-proposed; urgency=low + + [ Andy Whitcroft ] + + * [Config] enable CONFIG_MEMTEST=y + - LP: #1004535 + * [Config] config-check: add support for a cut operation + * [Config] enforcer -- switch to cut where appropriate + + [ Leann Ogasawara ] + + * Rebase to v3.5-rc5 + * [Config] Updateconfigs after rebase to v3.5-rc5 + + [ Luis Henriques ] + + * SAUCE: ocfs2: Fix NULL pointer dereferrence in + __ocfs2_change_file_space + - LP: #1006012 + + [ Seth Forshee ] + + * SAUCE: (drop after 3.5) drm/i915: ignore pipe select bit when checking + for LVDS register initialization + - LP: #1012800 + + [ Upstream Kernel Changes ] + + * rebase to v3.5-rc5 + - LP: #1013183 + - LP: #1017017 + - LP: #884652 + + -- Leann Ogasawara Mon, 02 Jul 2012 06:41:58 -0700 + +linux (3.5.0-2.2) quantal-proposed; urgency=low + + [ Andy Whitcroft ] + + * rebase to v3.5-rc4 + + [ Arend van Spriel ] + + * SAUCE: (drop after 3.5) brcmsmac: fix NULL pointer crash in + brcms_c_regd_init() + - LP: #950320 + + [ Bryan Wu ] + + * [Config] Sync CONFIG_CGROUP_MEM_RES_CTLR_SWAP for ARM + + [ Chris J Arges ] + + * PACKAGING: add .gnu_debuglink sections to .ko files + - LP: #669641 + + [ Leann Ogasawara ] + + * d-i: Add hid-generic to input-modules + - LP: #1017879 + + [ Ming Lei ] + + * SAUCE: Revert "mmc: omap_hsmmc: Enable Auto CMD12" + - LP: #1017717, #225 + + [ Paolo Pisati ] + + * SAUCE: Revert "Fix OMAP EHCI suspend/resume failure (i693)" + - LP: #1017718 + * [Config] Disable generic USB_EHCI_HCD_PLATFORM on omap3 + + [ Seth Forshee ] + + * SAUCE: (drop after 3.5) brcm80211: smac: don't set up tx power limits + during initialization + - LP: #950320 + * SAUCE: (drop after 3.5) brcm80211: smac: always set channel specified + by mac80211 + - LP: #950320 + * SAUCE: (drop after 3.5) brcm80211: smac: remove unused code for 40MHz + channels + - LP: #950320 + * SAUCE: (drop after 3.5) brcm80211: smac: clean up channel.c + - LP: #950320 + * SAUCE: (drop after 3.5) brcm80211: smac: inform mac80211 of the X2 + regulatory domain + - LP: #950320 + * SAUCE: (drop after 3.5) brcm80211: smac: enable/disable radio on + regulatory updates + - LP: #950320 + * SAUCE: (drop after 3.5) brcm80211: smac: use mac80211 channel data for + tx power limits + - LP: #950320 + * SAUCE: (drop after 3.5) brcm80211: smac: don't validate channels + against internal regulatory data + - LP: #950320 + * SAUCE: (drop after 3.5) brcm80211: smac: use current regulatory domain + when checking whether OFDM is allowed + - LP: #950320 + + [ Tim Gardner ] + + * [Config] Enable CONFIG_CGROUPS for highbank + - LP: #1014692 + * [Config] FB_OMAP*=y and PANEL_TFP410=y + + [ Upstream Kernel Changes ] + + * rebase to v3.5-rc4 + + -- Leann Ogasawara Tue, 26 Jun 2012 06:21:05 -0700 + +linux (3.5.0-1.1) quantal-proposed; urgency=low + + [ Andy Whitcroft ] + + * [Config] highbank -- enable CONFIG_RFKILL=y and CONFIG_CAN=m + + [ Leann Ogasawara ] + + * Rebase to v3.5-rc1 + * [Config] Remove USB_DEVICEFS from the config enforcer + * [Config] Updateconfigs after rebase to v3.5-rc1 + * [Config] Temporarily disable CONFIG_MACH_NOKIA_RX51 on arm + * [Config] Temporarily disable CONFIG_TOUCHSCREEN_EETI on arm + * [Config] Temporarily disable CONFIG_TOUCHSCREEN_EGALAX on arm + * [Config] Temporarily disable CONFIG_EZX_PCAP on arm + * [Config] Temporarily disable CONFIG_LIS3L02DQ on arm + * [Config] Temporarily disable CONFIG_TI_CPSW on arm + * [Config] Temporarily disable CONFIG_GPIO_EM on arm + * [Config] Temporarily disable CONFIG_SERIAL_8250_EM on armhf + * [Config] Temporarily disable CONFIG_STMMAC_ETH on armhf + * [Config] Temporarily disable CONFIG_HW_RANDOM_ATMEL on armhf + * Rebase to v3.5-rc2 + * [Config] Updateconfigs after rebase to v3.5-rc2 + * [Config] Temporarily disable CONFIG_MV643XX_ETH on powerpc + * Rebase to v3.5-rc3 + * [Config] Updateconfigs after rebase to v3.5-rc3 + + [ Paul Mundt ] + + * SAUCE: fix bug.h's inclusion of kernel.h + + [ Stefan Bader ] + + * SAUCE: Fix compile failures of dm-raid45 + * [Config] Enable dm-raid45 + * Move dependency on crda to extra package + - LP: #657901 + * SAUCE: Mask CR4 writes on older Xen hypervisors + + [ Upstream Kernel Changes ] + + * rebase to v3.5-rc3 + - LP: #993162 + - LP: #925577 + * rebase to v3.5-rc2 + * rebase to v3.5-rc1 + - LP: #955892 + - LP: #978038 + - LP: #987371 + - LP: #929545 + - LP: #942316 + - LP: #903853 + + -- Leann Ogasawara Fri, 08 Jun 2012 14:28:46 -0700 + +linux (3.4.0-5.11) quantal-proposed; urgency=low + + [ Leann Ogasawara ] + + * [Config] Disable CONFIG_ARM_LPAE + - LP: #1009061 + + [ Oleksij Rempel ] + + * SAUCE: b43: do not call ieee80211_unregister_hw if we are not registred + - LP: #1008905 + + [ Paolo Pisati ] + + * [Config] omap3: MFD_OMAP_USB_HOST is usb host in omap2+. + - LP: #1009061 + + -- Leann Ogasawara Tue, 05 Jun 2012 08:06:28 -0700 + +linux (3.4.0-4.10) quantal; urgency=low + + [ Leann Ogasawara ] + + * Temporarily disable ABI and module check + + -- Leann Ogasawara Mon, 04 Jun 2012 20:27:31 -0700 + +linux (3.4.0-4.9) quantal; urgency=low + + [ Andy Whitcroft ] + + * [Config] fix config split to avoid the shared config + * [Config] updateconfigs following split config fix + * [Config] linux-image-extras needs full postinst + * [Config] CONFIG_BLK_DEV_NVME commonise across architectures + * [Config] CONFIG_HP_WATCHDOG enable as module + * [Config] CONFIG_PDC_ADMA is not boot essential + * [Config] CONFIG_XEN_ACPI_PROCESSOR should be enabled on x86 + * [Config] CONFIG_VT6655/CONFIG_VT6656=m + * [Config] CONFIG_TRANZPORT=m commonise + * [Config] CONFIG_R3964=m commonise + * [Config] CONFIG_SCSI_DH=m commonise + * [Config] CONFIG_SCSI_IBMVSCSIS=m commonise + * [Config] CONFIG_AMD_PHY=y phys are not autoloadable + * [Config] CONFIG_SCSI_QLA_ISCSI=m commonise + * [Config] CONFIG_SCSI_SPI_ATTR=m commonise + * [Config] CONFIG_USB_SN9C102 is deprecated disable + * [Config] CONFIG_USB_SI470X=m commonise + * [Config] CONFIG_USB_ET61X251=m commonise + * [Config] CONFIG_RTS_PSTOR=m commonise + * [Config] CONFIG_SCANLOG=m commonise + * [Config] CONFIG_SCSI_SYM53C8XX_2=m commonise + * [Config] CONFIG_SM_FTL=m commonise + * [Config] CONFIG_SOLO6X10=m commonise + * [Config] CONFIG_SND_PCM_OSS=n using pulseaudio emulation instead + * [Config] CONFIG_SPI_DESIGNWARE=m commonise + * [Config] CONFIG_SPI_SPIDEV=m commonise + * [Config] CONFIG_TABLET_USB_WACOM=m commonise + * [Config] CONFIG_TPS65010=m commonise + * [Config] CONFIG_STE10XP=y commonise + * [Config] CONFIG_X25_ASY=m commonise + * [Config] CONFIG_USB_MON=m commonise + * [Config] CONFIG_VME_BUS=m commonise + * [Config] CONFIG_W35UND=m commonise + * [Config] -CONFIG_TCG_TPM=y commonise + * [Config] highbank -- commonise filesystems + * [Config] highbank -- commonise subsystems + * [Config] highbank -- commonise network protocols + * [Config] highbank -- commonise input drivers + * [Config] highbank -- commonise CRYPTO options + * [Config] highbank -- commonise HID options + * [Config] highbank -- commonise sensors options + * [Config] highbank -- commonise EXPORTFS/FHANDLE + * [Config] highbank -- commonise CONFIG_CRYPTO_LZO + * [Config] highbank -- commonise ENCRYPTED_KEYS + * [Config] highbank -- commonise CONFIG_ATALK + * [Config] highbank -- commonise INET/INET6 + * [Config] highbank -- commonise NLS + * [Config] highbank -- commonise BLK/CHR + * [Config] highbank -- CONFIG_EXT2_FS=y boot essential on highbank + * [Config] highbank -- commonise INET/INET6 part 2 + * [Config] highbank -- commonise PHY settings + * [Config] highbank -- commonise CRC settings + * [Config] highbank -- commonise BINFMT settings + * [Config] highbank -- commonise DM settings + * [Config] highbank -- commonise RTC_DRV settings + * [Config] highbank -- commonise KEYBOARD/MOUSE settings + * [Config] highbank -- commonise USB settings + * [Config] highbank -- commonise GPIO settings + * [Config] highbank -- commonise I2C settings + * [Config] highbank -- commonise numerous subsystem selectors + * [Config] highbank -- commonise A-C modules missmatches + * [Config] highbank -- commonise D-F modules missmatches + * [Config] CONFIG_AUDIT_LOGINUID_IMMUTABLE incompatible with upstart + * [Config] highbank -- commonise G-I modules missmatches + * [Config] highbank -- commonise J-L modules missmatches + * [Config] highbank -- commonise M modules missmatches + * [Config] highbank -- commonise N-P modules missmatches + * [Config] highbank -- commonise Q-R modules missmatches + * [Config] highbank -- commonise S modules missmatches -- part 1 + * [Config] highbank -- commonise S modules missmatches -- part 2 + * [Config] highbank -- commonise T modules missmatches + * [Config] highbank -- commonise U-Z modules missmatches + + [ Ike Panhc ] + + * [Config] add highbank flavour + - LP: #1000831 + + [ Mark Langsdorf ] + + * SAUCE: arm highbank: add support for pl320-ipc driver + - LP: #1000831 + + [ Rob Herring ] + + * SAUCE: input: add a key driver for highbank + - LP: #1000831 + * SAUCE: ARM: highbank: Add smc calls to enable/disable the L2 + - LP: #1000831 + * SAUCE: force DMA buffers to non-bufferable on highbank + - LP: #1000831 + * SAUCE: net: calxedaxgmac: fix net timeout recovery + - LP: #1000831 + + [ Tim Gardner ] + + * [Config] CONFIG_IWLWIFI_EXPERIMENTAL_MFP=n + * [Config] CONFIG_PCI_REALLOC_ENABLE_AUTO=y + * [Config] CONFIG_CIFS_EXPERIMENTAL has disappeared + * [Config] Homogenize CIFS configs across all arches + * [Config] armhf should not be skipabi or skipmodules + - LP: #1006913 + + -- Leann Ogasawara Mon, 04 Jun 2012 05:52:49 -0700 + +linux (3.4.0-3.8) quantal; urgency=low + + [ Andy Whitcroft ] + + * [Config] include include/generated/compile.h + - LP: #942569 + * [Config] fix up postinst to ensure we know which error is which + - LP: #1002388 + + [ Herton Ronaldo Krzesinski ] + + * SAUCE: async_populate_rootfs: fix build warnings + - LP: #1003417 + + [ John Johansen ] + + * Revert "SAUCE: AppArmor: Add the ability to mediate mount" + * SAUCE: apparmor: Add the ability to mediate mount + * SAUCE: AppArmor: basic networking rules + * SAUCE: apparmor: fix profile lookup for unconfined + - LP: #978038, #987371 + * SAUCE: apparmor: fix long path failure due to disconnected path + - LP: #955892 + + [ Mario Limonciello ] + + * SAUCE: dell-laptop: rfkill blacklist Dell XPS 13z, 15 + - LP: #901410 + + [ Stefan Bader ] + + * (config) Built-in xen-acpi-processor + + [ Tim Gardner ] + + * [Config] CONFIG_NET_DSA=m + - LP: #1004148 + * [Config] Ensure CONFIG_XEN_ACPI_PROCESSOR=y for amd64 + + -- Leann Ogasawara Fri, 25 May 2012 11:38:33 -0700 + +linux (3.4.0-3.7) quantal; urgency=low + + [ Andy Whitcroft ] + + * [Config] drop the virtual flavour in favour of a split generic et al + * [Config] enforcer -- drop IDLE enforcement + * [Config] enable CONFIG_SCSI_VIRTIO=m for amd64 + * [Config] updateconfigs following removal of -virtual + + [ Leann Ogasawara ] + + * Rebase to v3.4 + + [ Seth Forshee ] + + * [Config] disable CONFIG_B43_BCMA_EXTRA + + [ Tim Gardner ] + + * [Config] Check for extras when building udebs + * [Config] Collapsed generic-pae into generic [i386] + + [ Upstream Kernel Changes ] + + * rebase to v3.4 + + -- Leann Ogasawara Mon, 21 May 2012 07:23:47 -0700 + +linux (3.4.0-2.6) quantal; urgency=low + + [ Andy Whitcroft ] + + * Revert "ubuntu: overlayfs -- overlayfs: update touch_atime() usage" + * Revert "ubuntu: overlayfs -- overlayfs: switch from d_alloc_root() to + d_make_root()" + * Revert "ubuntu: overlayfs -- overlayfs: follow header cleanup" + * Revert "ubuntu: overlayfs -- overlayfs: apply device cgroup and + security permissions to overlay files" + * Revert "ubuntu: overlayfs -- fs: limit filesystem stacking depth" + * Revert "ubuntu: overlayfs -- overlay: overlay filesystem documentation" + * Revert "ubuntu: overlayfs -- overlayfs: implement show_options" + * Revert "ubuntu: overlayfs -- overlayfs: add statfs support" + * Revert "ubuntu: overlayfs -- overlay filesystem" + * Revert "ubuntu: overlayfs -- vfs: introduce clone_private_mount()" + * Revert "ubuntu: overlayfs -- vfs: export do_splice_direct() to modules" + * Revert "ubuntu: overlayfs -- vfs: add i_op->open()" + * Revert "ubuntu: overlayfs -- vfs: pass struct path to __dentry_open()" + * ubuntu: overlayfs -- overlayfs: add statfs support + * ubuntu: overlayfs -- inode_only_permission: export inode level + permissions checks + * ubuntu: overlayfs -- overlayfs: switch to use inode_only_permissions + + [ Erez Zadok ] + + * ubuntu: overlayfs -- overlayfs: implement show_options + + [ Miklos Szeredi ] + + * ubuntu: overlayfs -- vfs: pass struct path to __dentry_open() + * ubuntu: overlayfs -- vfs: add i_op->open() + * ubuntu: overlayfs -- vfs: export do_splice_direct() to modules + * ubuntu: overlayfs -- vfs: introduce clone_private_mount() + * ubuntu: overlayfs -- overlay filesystem + * ubuntu: overlayfs -- fs: limit filesystem stacking depth + + [ Neil Brown ] + + * ubuntu: overlayfs -- overlay: overlay filesystem documentation + + [ Robin Dong ] + + * ubuntu: overlayfs -- overlayfs: fix possible leak in ovl_new_inode + * ubuntu: overlayfs -- overlayfs: create new inode in ovl_link + + [ Tim Gardner ] + + * [Config] perarch and indep tools builds need separate build directories + * Prevent upgrading a non-PAE CPU + * perf is not parallel build safe + + -- Leann Ogasawara Wed, 16 May 2012 08:43:18 -0700 + +linux (3.4.0-2.5) quantal; urgency=low + + [ Andy Whitcroft ] + + * [Config] perarch and indep tools builds need separate build directories + + [ Tim Gardner ] + + * Prevent upgrading a non-PAE CPU + * [Config] build debug + * [Config] perf tools are not parallel build safe + + -- Leann Ogasawara Tue, 15 May 2012 11:37:53 -0700 + +linux (3.4.0-2.4) quantal; urgency=low + + [ Leann Ogasawara ] + + * Revert "SAUCE: fsam7400: use UMH_WAIT_PROC consistently" + * Revert "ubuntu: fsam7400 select CHECK_SIGNATURE and depend on X86" + * Revert "ubuntu: fsam7400: Depend on CHECK_SIGNATURE" + * Revert "ubuntu: fsam7400 -- Cleanup Makefile" + * Revert "ubuntu: fsam7400 -- kill switch for Fujitsu Siemens Amilo M + 7400" + * Revert "ubuntu: omnibook: fix source file newline" + * Revert "ubuntu: omnibook -- update BOM" + * Revert "SAUCE: Make CONFIG_{OMNIBOOK, AVERATEC_5100P, PACKARDBELL_E5} + depend on X86" + * Revert "ubuntu: omnibook -- Added missing BOM file" + * Revert "ubuntu: omnibook -- support Toshiba (HP) netbooks" + * Revert "ubuntu: nx-emu - i386: mmap randomization for executable + mappings" + * Revert "SAUCE: disable_nx should not be in __cpuinitdata section for + X86_32" + * Revert "ubuntu: nx-emu - i386: NX emulation" + * Revert "ubuntu: rfkill drivers -- version 1.3" + * Temporarily disable module check + * [Config] Remove CONFIG_FSAM7400 + * [Config] Remove CONFIG_OMNIBOOK + * [Config] Update configs + * Rebase to v3.4-rc7 + * SAUCE: genirq: export handle_edge_irq() and irq_to_desc() + + [ Tim Gardner ] + + * Updated generic-pae description + * Rebase to v3.4-rc6 + * install-tools depends on build targets + + [ Upstream Kernel Changes ] + + * kconfig: in debug mode some 0 length message prints occur + * rebase to v3.4-rc7 + * rebase to v3.3-rc6 + + -- Leann Ogasawara Mon, 14 May 2012 08:22:56 -0700 + +linux (3.4.0-1.3) quantal; urgency=low + + [ Andy Whitcroft ] + + * [Config] control.stub is an intermediate product not a dependancy + - LP: #992414 + + [ Leann Ogasawara ] + + * remove i386 generic from getabis + + [ Upstream Kernel Changes ] + + * (pre-stable) b43: only reload config after successful initialization + - LP: #950295 + + -- Leann Ogasawara Wed, 02 May 2012 09:48:14 -0700 + +linux (3.4.0-1.2) quantal; urgency=low + + [ Andy Whitcroft ] + + * [Config] add build depends for flex, bison and pkg-config + + -- Andy Whitcroft Tue, 01 May 2012 13:15:41 +0100 + +linux (3.4.0-1.1) quantal; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: overlayfs -- overlayfs: apply device cgroup and security + permissions to overlay files + - LP: #915941, #918212 + - CVE-2012-0055 + + [ Leann Ogasawara ] + + * Open Q + * Rebase to v3.4-rc5 + * [Config] Temporarily disable CONFIG_TOUCHSCREEN_EETI on arm + * [Config] Temporarily disable CONFIG_TOUCHSCREEN_EGALAX on arm + * [Config] Temporarily disable CONFIG_EZX_PCAP on arm + * [Config] Temporarily disable CONFIG_MFD_OMAP_USB_HOST on arm + * [Config] Temporarily disable CONFIG_LIS3L02DQ on arm + * [Config] Temporarily disable CONFIG_USB_EHCI_HCD_PLATFORM on arm + * [Config] Temporarily disable CONFIG_TI_CPSW on arm + * [Config] Temporarily disable CONFIG_AX88796 on arm + + [ Upstream Kernel Changes ] + + * vfs: pass struct path to __dentry_open() + * vfs: add i_op->open() + * vfs: export do_splice_direct() to modules + * vfs: introduce clone_private_mount() + * overlay filesystem + * overlayfs: add statfs support + * overlayfs: implement show_options + * overlay: overlay filesystem documentation + * fs: limit filesystem stacking depth + * overlayfs: follow header cleanup + * overlayfs: switch from d_alloc_root() to d_make_root() + * overlayfs: update touch_atime() usage + * rebase to v3.4-rc5 + - LP: #950490 + * rebase to v3.4-rc4 + * rebase to v3.4-rc3 + * rebase to v3.4-rc2 + * rebase to v3.4-rc1 + * rebase to v3.3 + * rebase to v3.3-rc7 + * rebase to v3.3-rc6 + * rebase to v3.3-rc5 + * rebase to v3.3-rc4 + - LP: #900802 + - LP: #930842 + * rebase to v3.3-rc3 + - LP: #924320 + - LP: #923316 + - LP: #923409 + - LP: #918254 + * rebase to v3.3-rc2 + * rebase to v3.3-rc1 + - LP: #795823 + - LP: #909419 + - LP: #910792 + - LP: #878701 + - LP: #724831 + + -- Leann Ogasawara Wed, 25 Jan 2012 06:50:04 -0800 + +linux (3.2.0-10.18) precise; urgency=low + + [ Tim Gardner ] + + * SAUCE: ecryptfs: Print inode on metadata error + + [ Upstream Kernel Changes ] + + * Revert "proc: enable writing to /proc/pid/mem" + - LP: #919115 + - CVE-2012-0056 + * (pre-stable) ALSA: HDA: Use LPIB position fix for Macbook Pro 7, 1 + - LP: #909419 + + -- Andy Whitcroft Tue, 24 Jan 2012 10:15:12 +0000 + +linux (3.2.0-10.17) precise; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: overlayfs -- fs: limit filesystem stacking depth" + * Revert "SAUCE: overlayfs -- overlay: overlay filesystem documentation" + * Revert "SAUCE: overlayfs -- overlayfs: implement show_options" + * Revert "SAUCE: overlayfs -- overlayfs: add statfs support" + * Revert "SAUCE: overlayfs -- overlay filesystem" + * Revert "SAUCE: overlayfs -- vfs: introduce clone_private_mount()" + * Revert "SAUCE: overlayfs -- vfs: export do_splice_direct() to modules" + * Revert "SAUCE: overlayfs -- vfs: add i_op->open()" + * ensure debian/ is not excluded from git by default + * add new scripting to handle buglinks in rebases + * ubuntu: overlayfs -- overlayfs: add statfs support + * ubuntu: overlayfs -- overlayfs: apply device cgroup and security + permissions to overlay files + - LP: #915941, #918212 + - CVE-2012-0055 + + [ Erez Zadok ] + + * ubuntu: overlayfs -- overlayfs: implement show_options + + [ Leann Ogasawara ] + + * Revert "SAUCE: dmar: disable if ricoh multifunction detected" + * [Config] Disable CONFIG_INTEL_IOMMU_DEFAULT_ON + - LP: #907377, #911236 + * [Config] Enable CONFIG_IRQ_REMAP + + [ Miklos Szeredi ] + + * ubuntu: overlayfs -- vfs: pass struct path to __dentry_open() + * ubuntu: overlayfs -- vfs: add i_op->open() + * ubuntu: overlayfs -- vfs: export do_splice_direct() to modules + * ubuntu: overlayfs -- vfs: introduce clone_private_mount() + * ubuntu: overlayfs -- overlay filesystem + * ubuntu: overlayfs -- fs: limit filesystem stacking depth + + [ Neil Brown ] + + * ubuntu: overlayfs -- overlay: overlay filesystem documentation + + [ Upstream Kernel Changes ] + + * (pre-stable) x86/PCI: amd: factor out MMCONFIG discovery + - LP: #647043 + * (pre-stable) PNP: work around Dell 1536/1546 BIOS MMCONFIG bug that + breaks USB + - LP: #647043 + + -- Leann Ogasawara Mon, 16 Jan 2012 07:10:08 -0800 + +linux (3.2.0-9.16) precise; urgency=low + + [ Andy Whitcroft ] + + * [Config] Enable numerous CONFIG_VIDEO_* cards on ARM + * [Config] pull ARM sound modules =m + * [Config] CONFIG_RTC_DRV_TEST is for testing only + * [Config] CONFIG_USB_DUMMY_HCD is testing only + * [Config] CONFIG_USB_FILE_STORAGE is deprecated + + [ Leann Ogasawara ] + + * Revert "[Config] Temporarily disable CONFIG_CAN_TI_HECC on armel" + * [Config] Enable CONFIG_HW_RANDOM_PASEMI=m + * [Config] Enable CONFIG_MMC_TMIO=m + * [Config] Enable CONFIG_MTD_NAND_FSL_ELBC=m + * [Config] Enable CONFIG_ISI=m + * [Config] Enable CONFIG_MMC=y + * [Config] Enable CONFIG_LIRC_PARALLEL=m + * [Config] Enable CONFIG_MAC_EMUMOUSEBTN=m + * [Config] Enable CONFIG_CHR_DEV_SG=y + * [Config] Enable CONFIG_GPIO_PCA953X=m + * [Config] Enable CONFIG_GPIO_TWL4030=m + * [Config] Enable CONFIG_INET_DIAG=m + * [Config] Enable CONFIG_NLS_ISO8859_1=m + * [Config] Enable CONFIG_NVRAM=m + * [Config] Enable CONFIG_SLIP=m + * [Config] Enable CONFIG_PC300TOO=m + * [Config] Enable CONFIG_TUN=y + * [Config] Enable CONFIG_NET_CLS_CGROUP=m + * [Config] Enable CONFIG_THERMAL=y + * [Config] Enable CONFIG_PPP=y + * [Config] Enable CONFIG_PCI_STUB=m + * Rebase to v3.2.1 + * [Config] Enable CONFIG_RTL8192E=m + * [Config] Enable CONFIG_RTS5139=m + + [ Stefan Bader ] + + * [Config] Make CONFIG_VIRTIO_(NET|BLK)=y + + [ Upstream Kernel Changes ] + + * ARM: restart: add restart hook to machine_desc record + * ARM: restart: allow platforms more flexibility specifying restart mode + * ARM: restart: move reboot failure handing into machine_restart() + * ARM: restart: remove argument to setup_mm_for_reboot() + * ARM: 7159/1: OMAP: Introduce local common.h files + * ARM: restart: only perform setup for restart when soft-restarting + * ARM: 7189/1: OMAP3: Fix build break in cpuidle34xx.c because of irq + function + * ARM: idmap: populate identity map pgd at init time using .init.text + * ARM: suspend: use idmap_pgd instead of suspend_pgd + * ARM: proc-*.S: place cpu_reset functions into .idmap.text section + * ARM: idmap: use idmap_pgd when setting up mm for reboot + * ARM: head.S: only include __turn_mmu_on in the initial identity mapping + * ARM: SMP: use idmap_pgd for mapping MMU enable during secondary booting + * ARM: 7194/1: OMAP: Fix build after a merge between v3.2-rc4 and ARM + restart changes + * ARM: lib: add call_with_stack function for safely changing stack + * ARM: reset: implement soft_restart for jumping to a physical address + * ARM: stop: execute platform callback from cpu_stop code + * ARM: kexec: use soft_restart for branching to the reboot buffer + * ARM: restart: omap: use new restart hook + * topdown mmap support + - LP: #861296 + + [ Upstream Kernel Changes ] + + * Rebase to v3.2.1 + + -- Leann Ogasawara Fri, 13 Jan 2012 20:32:08 +0100 + +linux (3.2.0-8.15) precise; urgency=low + + [ Leann Ogasawara ] + + * [Config] Disable CONFIG_ACPI_PROCFS + * Remove server from getabis + * Temporarily disable module check + * [Config] Disable CONFIG_MTD_TESTS + * [Config] Disable CONFIG_X86_E_POWERSAVER + * [Config] Set CONFIG_ARCNET=m + * [Config] Enable CONFIG_ATM_DUMMY=m + * [Config] Enable CONFIG_BLK_DEV_MD=y + * ubuntu: fsam7400 select CHECK_SIGNATURE and depend on X86 + * [Config] Enable CONFIG_BLK_DEV_SD=y + * [Config] Enable CONFIG_BLK_DEV_SR=y + * [Config] Enable CONFIG_BLK_DEV_UB=m + * [Config] Enable CONFIG_COPS=m + * [Config] Enable CONFIG_DVB_USB_EC168=m + * [Config] Enable CONFIG_ENC28J60=m + * [Config] Enable CONFIG_FB_UVESA=m + * [Config] Enable CONFIG_FB_ATY=m + * [Config] Enable CONFIG_BROADCOM_PHY=y + * [Config] Enable CONFIG_CICADA_PHY=y + * [Config] Enable CONFIG_DAVICOM_PHY=y + * [Config] Enable CONFIG_ICPLUS_PHY=y + * [Config] Enable CONFIG_LSI_ET1011C_PHY=y + * [Config] Enable CONFIG_LXT_PHY=y + * [Config] Enable CONFIG_MARVELL_PHY=y + * [Config] Enable CONFIG_NATIONAL_PHY=y + * [Config] Enable CONFIG_QSEMI_PHY=y + * [Config] Enable CONFIG_SMSC_PHY=y + * [Config] Enable CONFIG_VITESSE_PHY=y + * Add 3w-sas to scsi-modules + - LP: #776542 + + [ Mathieu Trudel-Lapierre ] + + * SAUCE: ipv6: make the net.ipv6.conf.all.use_tempaddr sysctl propagate + to interface settings + + [ Paolo Pisati ] + + * Revert "SAUCE: omap3: beagle: if rev unknown, assume xM revision C" + - LP: #912199 + * Revert "SAUCE: omap3: beagle: detect new xM revision B" + - LP: #912199 + * Revert "SAUCE: omap3: beaglexm: fix DVI initialization" + - LP: #912199 + + [ Upstream Kernel Changes ] + + * Bluetooth: Add support for BCM20702A0 [0a5c:21e3] + - LP: #906832 + + -- Leann Ogasawara Fri, 06 Jan 2012 10:02:03 -0800 + +linux (3.2.0-8.14) precise; urgency=low + + [ Andy Whitcroft ] + + * [Config] enable CONFIG_SND_USB_6FIRE + - LP: #912197 + * rebase to mainline v3.2 final release + * updateconfigs following rebase to v3.2 final + * ubuntu: AUFS -- add BOM and automated update script + * ubuntu: AUFS -- include the aufs_types.h file in linux-libc-headers + - LP: #684666 + * ubuntu: AUFS -- update aufs-update to track new locations of headers + * ubuntu: AUFS -- clean up the aufs updater and BOM + * ubuntu: AUFS -- documentation on updating aufs2 + * ubuntu: AUFS -- aufs3-base.patch + * ubuntu: AUFS -- aufs3-standalone.patch + * ubuntu: AUFS -- fix undefined __devcgroup_inode_permission + * ubuntu: AUFS -- fix undefined security_path_link + * ubuntu: AUFS -- update to 4cf5db36bcd9748e8e7270022f295f84d1fc2245 + * ubuntu: AUFS -- updateconfigs following update + * ubuntu: AUFS -- suppress benign plink warning messages + - LP: #621195 + * ubuntu: AUFS -- enable in config and makefile + * ubuntu: AUFS -- disable in favor of overlayfs + * [Config] linux-virtual -- should include the extX modules + - LP: #912308 + + [ Tyler Hicks ] + + * SAUCE: eCryptfs: Improve statfs reporting + - LP: #885744 + + [ Upstream Kernel Changes ] + + * rebase to upstream v3.2 + + -- Leann Ogasawara Mon, 26 Dec 2011 20:24:30 -0800 + +linux (3.2.0-7.13) precise; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to upstream 3.2-rc7 + + -- Leann Ogasawara Mon, 19 Dec 2011 09:14:34 -0800 + +linux (3.2.0-6.12) precise; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to upstream v3.2-rc6 + + -- Leann Ogasawara Fri, 16 Dec 2011 10:19:02 -0800 + +linux (3.2.0-5.11) precise; urgency=low + + [ Andy Whitcroft ] + + * enforcer -- allow arch and flavour predicates to take lists + * enforcer -- simplify armel/armhf specific options + * enforcer -- fix incorrectly specified flavour matches + + [ Leann Ogasawara ] + + * [Config] Disable IRQ_REMAP + * [Config] Enable CONFIG_SENSORS_LM95245=m + * [Config] Enable CONFIG_SENSORS_MAX1668=m + * [Config] Enable CONFIG_SENSORS_NTC_THERMISTOR=m + * [Config] Enable CONFIG_SENSORS_MAX6639=m + * [Config] Enable CONFIG_SENSORS_MAX6642=m + * [Config] Enable CONFIG_SENSORS_LINEAGE=m + * [Config] Enable CONFIG_CRYPTO_SALSA20=m + * [Config] Enable CONFIG_PATA_TOSHIBA=m + * [Config] Enable CONFIG_POHMELFS=m + * [Config] Enable CONFIG_NET_PACKET_ENGINE=y + * [Config] Enable CONFIG_PATA_OPTI=m + * add overlayfs to virtual inclusion list + - LP: #903897 + * add veth to virtual inclusion list + - LP: #903897 + * SAUCE: resolve WARNING: at drivers/block/floppy.c:2929 do_fd_request + + [ Paolo Pisati ] + + * [Config] DEFAULT_MMAP_MIN_ADDR=32k on arm + - LP: #903346 + + [ Tim Gardner ] + + * [Config] CONFIG_LOCKUP_DETECTOR=y + - LP: #903615 + + [ Upstream Kernel Changes ] + + * rebase to upstream 55b02d2f + + -- Leann Ogasawara Mon, 12 Dec 2011 07:08:10 -0800 + +linux (3.2.0-4.10) precise; urgency=low + + [ Kyle McMartin ] + + * SAUCE: dmar: disable if ricoh multifunction detected + - LP: #894070 + + [ Seth Forshee ] + + * SAUCE: dell-wmi: Demote unknown WMI event message to pr_debug + - LP: #581312 + + [ Tim Gardner ] + + * Start new release, Bump ABI, rebase to 3.2-rc5 + + [ Leann Ogasawara ] + + * [Config] Enable CONFIG_SENSORS_AK8975=m + + -- Tim Gardner Sat, 10 Dec 2011 08:57:04 -0700 + +linux (3.2.0-3.9) precise; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: ext4: correct partial write discard size calculation + - LP: #894768 + + [ Leann Ogasawara ] + + * Revert "SAUCE: x86, microcode, AMD: Restrict microcode reporting" + - LP: #892615 + + [ Matthew Garrett ] + + * SAUCE: pci: Rework ASPM disable code + + [ Upstream Kernel Changes ] + + * x86: Fix boot failures on older AMD CPU's + - LP: #892615 + * EHCI : Fix a regression in the ISO scheduler + - LP: #899165 + + -- Leann Ogasawara Mon, 05 Dec 2011 10:37:36 -0800 + +linux (3.2.0-3.8) precise; urgency=low + + [ Andy Whitcroft ] + + * armhf -- add d-i configuration + * armhf -- disable ABI checks for armhf + * armhf -- add arch to getabis config + + -- Andy Whitcroft Sat, 03 Dec 2011 14:22:52 +0000 + +linux (3.2.0-3.7) precise; urgency=low + + [ Stefan Bader ] + + * SAUCE: x86/paravirt: PTE updates in k(un)map_atomic need to be + synchronous, regardless of lazy_mmu mode + - LP: #854050 + + [ Tim Gardner ] + + * rebase to v3.2-rc4 + + -- Leann Ogasawara Fri, 02 Dec 2011 11:53:56 -0800 + +linux (3.2.0-2.6) precise; urgency=low + + [ Andy Whitcroft ] + + * armhf -- fix omap flavour to build on armhf + * [Config] CONFIG_PATA_MACIO=y to fix MAC qemu boot + + [ Borislav Petkov ] + + * SAUCE: x86, microcode, AMD: Restrict microcode reporting + - LP: #892615 + + [ Colin Watson ] + + * Add pata_macio to pata-modules + + [ Tim Gardner ] + + * [Config] Prefer crda over wireless-crda + * [Config] Fix virtual inclusion list. + - LP: #897795 + + -- Leann Ogasawara Wed, 30 Nov 2011 06:09:35 -0800 + +linux (3.2.0-2.5) precise; urgency=low + + [ Paolo Pisati ] + + * [Config] PANEL_DVI=y + + -- Leann Ogasawara Mon, 28 Nov 2011 09:13:24 -0800 + +linux (3.2.0-2.4) precise; urgency=low + + [ Andy Whitcroft ] + + * rebase to v3.2-rc3 + + [ Leann Ogasawara ] + + * Revert "SAUCE: xen: Do not use pv spinlocks on HVM" + * Revert "fix ERROR: __devcgroup_inode_permission undefined" + * Revert "olpc_dcon_xo_1_5 needs delay.h" + * Revert "olpc_dcon_xo_1 needs delay.h" + * rebase to 6fe4c6d4 + * [Config] updateconfigs after rebase to 6fe4c6d4 + + [ Tim Gardner ] + + * [Config] Replace wireless-crda with crda,wireless-regdb + - LP: #856421 + * [Config] Relax the dependencies on crda + + [ Upstream Kernel Changes ] + + * (pre-stable) HID: bump maximum global item tag report size to 96 bytes + - LP: #724831 + * Ubuntu: remove coreutils|fileutils package dependency + - LP: #892814 + * iio: iio_event_getfd -- fix ev_int build failure + + [ Upstream Kernel Changes ] + + * Rebase to v3.2-rc3 + + -- Andy Whitcroft Thu, 24 Nov 2011 16:20:45 +0000 + +linux (3.2.0-1.3) precise; urgency=low + + [ Upstream Kernel Changes ] + + * Ubuntu: Add ext2 to fs-core-modules + - LP: #893395 + + -- Leann Ogasawara Mon, 21 Nov 2011 20:42:33 -0800 + +linux (3.2.0-1.2) precise; urgency=low + + [ Andy Whitcroft ] + + * [Config] enable CONFIG_NFC and associated devices + * SAUCE: allow brcmsmac and b43 to both build + + [ Soren Hansen ] + + * Add ixgbe driver to d-i + - LP: #891969 + + -- Leann Ogasawara Mon, 21 Nov 2011 08:33:46 -0800 + +linux (3.2.0-1.1) precise; urgency=low + [ Andy Whitcroft ] + + * armhf -- enable armhf and create the first flavours + * SAUCE: ensure root is ready before running usermodehelpers in it + * [Config] enforcer -- ensure CONFIG_FAT_FS is built-in on arm + + [ Leann Ogasawara ] + + * Temporarily ignore module check + * [Config] Enable PCI_IOV on powerpc + * [Config] Temporarily disable CONFIG_PASEMI_MAC on powerpc + * rebase to v3.2-rc2 + * SAUCE: include for cpuidle34xx arm build + * SAUCE: include for linux/mtd/map.h arm build + * SAUCE: include and for mmc_core arm build + * SAUCE: select ARM_AMBA if OMAP3_EMU + * [Config] updateconfigs after select ARM_AMBA + * [Config] Temporarily disable CONFIG_KVM_BOOK3S_32 on powerpc + * [Config] Enable CONFIG_EXT2_FS=m + * [Config] Build in CONFIG_SATA_AHCI=y + * Resolve linux-image-extra's install dependency + + [ Seth Forshee ] + + * [Config] Enable EVENT_POWER_TRACING_DEPRECATED=y for powertop + * SAUCE: (drop after 3.2) Input: ALPS - move protocol information to + Documentation + * SAUCE: (drop after 3.2) Input: ALPS - add protocol version field in + alps_model_info + * SAUCE: (drop after 3.2) Input: ALPS - remove assumptions about packet + size + * SAUCE: (drop after 3.2) Input: ALPS - add support for protocol versions + 3 and 4 + * SAUCE: (drop after 3.2) Input: ALPS - add semi-MT support for v3 + protocol + * SAUCE: (drop after 3.2) Input: ALPS - add documentation for protocol + versions 3 and 4 + + [ Stefan Bader ] + + * [Config] Built-in xen-netfront and xen-blkfront + * Fix build of dm-raid45 and re-enable it + + [ Tim Gardner ] + + * [Config] CONFIG_USB_XHCI_HCD=y + - LP: #886167 + * [Config] CONFIG_R6040=m + - LP: #650899 + * SAUCE: Add a new entry (413c:8197) to Bluetooth USB device ID table + - LP: #854399 + * [Config] Consolidated amd64 server flavour into generic + * [Config] updateconfigs after rebase to 3.2-rc1 + * [Config] Disabled dm-raid4-5 + * [Config] Disabled ndiswrapper + * [Config] Disable vt6656 + * [Config] exclude ppp-modules for virtual flavour + * [Config] CONFIG_MEMSTICK_R592=m + - LP: #238208 + + [ Upstream Kernel Changes ] + + * CHROMIUM: seccomp_filter: new mode with configurable syscall filters + - LP: #887780 + * CHROMIUM: seccomp_filter: add process state reporting + - LP: #887780 + * CHROMIUM: seccomp_filter: Document what seccomp_filter is and how it + works. + - LP: #887780 + * CHROMIUM: x86: add HAVE_SECCOMP_FILTER and seccomp_execve + - LP: #887780 + * CHROMIUM: arm: select HAVE_SECCOMP_FILTER + - LP: #887780 + * CHROMIUM: seccomp_filters: move to btrees + * CHROMIUM: enable CONFIG_BTREE + * CHROMIUM: seccomp_filter: kill NR_syscall references + * CHROMIUM: seccomp_filters: guard all ftrace wrapper code + * CHROMIUM: seccomp_filters: clean up warnings; kref mistake + * CHROMIUM: seccomp_filter: remove "skip" from copy and add drop helper + * CHROMIUM: seccomp_filter: allow CAP_SYS_ADMIN management of execve + * CHROMIUM: seccomp_filter: inheritance documentation + * CHROMIUM: seccomp_filter: make inherited filters composable + * CHROMIUM: Fix seccomp_t compile error + - LP: #887780 + * CHROMIUM: Fix kref usage + - LP: #887780 + * CHROMIUM: enable CONFIG_SECCOMP_FILTER and CONFIG_HAVE_SECCOMP_FILTER + * rebase to v3.2-rc2 + + -- Leann Ogasawara Mon, 31 Oct 2011 09:24:39 -0400 + +linux (3.1.0-2.3) precise; urgency=low + + [ Tim Gardner ] + + * Add postinit and postrm scripts to the extras package + - LP: #882120 + + -- Leann Ogasawara Fri, 28 Oct 2011 12:48:33 -0700 + +linux (3.1.0-2.2) precise; urgency=low + + [ Andy Whitcroft ] + + * debian: add locking to protect debian/files from parallel update + + [ Leann Ogasawara ] + + * rebase to v3.1 + + [ Upstream Kernel Changes ] + + * rebase to v3.1 + + -- Leann Ogasawara Wed, 19 Oct 2011 07:12:38 -0700 + +linux (3.1.0-1.1) precise; urgency=low + + [ Andiry Xu ] + + * SAUCE: (drop during 3.2 merge) xHCI: AMD isoc link TRB chain bit quirk + - LP: #872811 + + [ Andy Whitcroft ] + + * Revert "ubuntu: compcache -- follow changes to bd_claim/bd_release" + - LP: #832694 + * Revert "ubuntu: compcache -- version 0.5.3" + - LP: #832694 + * [Config] standardise CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m + * [Config] Enable CONFIG_MACVTAP=m + - LP: #822601 + * record the compiler in the ABI and check for inconsistant builds + * [Config] move ECRYPT_FS back to =y for all architectures + - LP: #827197 + * [Config] enable CONFIG_DRM_VMWGFX=m + - LP: #698009 + * [Config] re-fix ECRYPT_FS=y + - LP: #827197 + * enforcer -- ensure we have CONFIG_ECRYPT_FS=y + - LP: #827197 + * [Config] dropping compcache configuration options + * [Config] standardise on HZ=250 + * SAUCE: headers_install: fix #include "..." usage for userspace + - LP: #824377 + * make module-inclusion selection retain the left overs + * add a new linux-image-extras package for virtual + + [ Colin Watson ] + + * Deliver more Atheros, Ralink, and iwlagn NIC drivers to d-i + + [ edwin_rong ] + + * SAUCE: Staging: add driver for Realtek RTS5139 cardreader + - LP: #824273 + + [ Greg Kroah-Hartman ] + + * SAUCE: staging: rts5139: add vmalloc.h to some files to fix the build. + - LP: #824273 + + [ Jesse Sung ] + + * SAUCE: Unregister input device only if it is registered + - LP: #839238 + + [ Jiri Kosina ] + + * SAUCE: HID: add MacBookAir4, 2 to hid_have_special_driver[] + + [ Joshua V. Dillon ] + + * SAUCE: HID: add support for MacBookAir4,2 keyboard. + + [ Kees Cook ] + + * [Config] enable and enforce SECCOMP_FILTER on x86 + + [ Keng-Yu Lin ] + + * [Config] Enable CONFIG_RTS5139=m on i386/amd64 + - LP: #824273 + + [ Leann Ogasawara ] + + * Revert "ubuntu: overlayfs -- ovl: make lower mount read-only" + * Revert "ubuntu: overlayfs -- fs: limit filesystem stacking depth" + * Revert "ubuntu: overlayfs -- ovl: improve stack use of lookup and + readdir" + * Revert "ubuntu: overlayfs -- ovl: fix overlayfs over overlayfs" + * Revert "ubuntu: overlayfs -- overlayfs: implement show_options" + * Revert "ubuntu: overlayfs -- overlayfs: add statfs support" + * Revert "ubuntu: overlayfs -- overlay filesystem" + * Revert "ubuntu: overlayfs -- overlay: overlay filesystem documentation" + * Revert "SAUCE: ARM: OMAP: Add macros for comparing silicon revision" + * Revert "SAUCE: OMAP: DSS2: check for both cpu type and revision, rather + than just revision" + * Revert "SAUCE: OMAP: DSS2: enable hsclk in dsi_pll_init for OMAP36XX" + * Revert "ubuntu: fsam7400 disable driver" + - LP: #876030 + * rebase to v3.1-rc1 + * [Config] updateconfigs after rebase to v3.1-rc1 + * rebase to v3.1-rc2 + * [Config] Updateconfigs after rebase to v3.1-rc2 + * ubuntu: Yama - update calls to generic_permission() and + inode->i_op->permission() + * ubuntu: ndiswrapper -- remove netdev_priv macro + * ubuntu: aufs -- Temporarily disable due to build failure + * [Config] Diable INTEL_MID_PTI on armel + * [Config] Temporarily disable CONFIG_FTMAC100 on armel + * [Config] Temporarily disable CONFIG_FTGMAC100 on armel + * [Config] Temporarily disable CONFIG_CAN_TI_HECC on armel + * [Config] Temporarily disable CONFIG_VIDEO_OMAP2_VOUT on armel + * [Config] Set CONFIG_DM_MIRROR=m on amd64, i386, and arm + * [Config] Set CONFIG_DM_MULTIPATH=m on amd64, i386, and arm + * [Config] Set CONFIG_DM_SNAPSHOT=m on amd64, i386, and arm + * [Config] Enable CONFIG_EDAC_AMD8111=m on powerpc + * [Config] Enable CONFIG_EDAC_AMD8131=m on powerpc + * [Config] Enable CONFIG_EDAC_CPC925=m on powerpc + * [Config] Enable CONFIG_EDAC_PASEMI=m on powerpc + * [Config] Enable CONFIG_ECHO=m on powerpc + * [Config] Enable CONFIG_ET131X=m on powerpc + * [Config] Set CONFIG_FB_MATROX=m + * [Config] Enable CONFIG_FB_UDL=m on powerpc + * [Config] Set CONFIG_FB_VIRTUAL=n + * [Config] Enable CONFIG_FB_VGA16=m on powerpc + * [Config] Enable CONFIG_GPIO_MAX732X=m on arm + * [Config] Enable CONFIG_GPIO_PCF857X=m on arm + * [Config] Set CONFIG_HOTPLUG_PCI_FAKE=m + * [Config] Enable CONFIG_HOTPLUG_PCI=y on powerpc + * [Config] Enable CONFIG_HOTPLUG_PCI_CPCI=y on powerpc + * [Config] Enable CONFIG_HP_ILO=m on powerpc-smp + * [Config] Enable CONFIG_I2C_PASEMI=m on powerpc + * [Config] Enable CONFIG_IBM_BSR=m on powerpc + * [Config] Enable CONFIG_IBMVETH=m on powerpc + * [Config] Enable CONFIG_IDE_PHISON=m on powerpc + * [Config] Enable CONFIG_IGB=m on powerpc + * [Config] Enable CONFIG_IIO=m on powerpc + * [Config] Enable CONFIG_INFINIBAND_NES=m + * [Config] Enable CONFIG_IPMI_HANDLER=m on arm + * [Config] Enable CONFIG_IWL3945=m on powerpc + * [Config] Disable CONFIG_KVM_BOOK3S_64 + * [Config] Enable CONFIG_LAPBETHER=m on arm + * [Config] Enable CONFIG_LEDS_GPIO=m on powerpc + * [Config] Enable CONFIG_LEDS_CLEVO_MAIL=m all arch's + * [Config] Enable CONFIG_LEDS_PCA9532=m on powerpc + * [Config] Enable CONFIG_LEDS_PCA955X=m on powerpc + * [Config] Enable CONFIG_LEDS_TRIGGER_DEFAULT_ON=m on powerpc + * [Config] Set CONFIG_LEDS_TRIGGER_HEARTBEAT=m on arm and powerpc + * [Config] Set CONFIG_LEDS_TRIGGER_TIMER=m on powerpc + * [Config] Enable CONFIG_LINE6_USB=m on arm and powerpc + * [Config] Enable CONFIG_MEMSTICK=m on arm + * [Config] Enable CONFIG_MTD_AFS_PARTS=m on arm + * [Config] Enable CONFIG_MTD_ALAUDA=m on arm + * [Config] Enable CONFIG_MTD_AR7_PARTS=m on arm + * [Config] Enable CONFIG_MTD_ARM_INTEGRATOR=m on arm + * [Config] Enable CONFIG_MOXA_SMARTIO=m on powerpc + * [Config] Enable CONFIG_MTD_DATAFLASH=m on arm + * [Config] Enable CONFIG_MTD_GPIO_ADDR=m on arm + * [Config] Enable CONFIG_MTD_IMPA7=m on arm + * [Config] Enable CONFIG_MTD_NAND_GPIO=m on arm + * [Config] Enable CONFIG_MTD_NAND_NANDSIM=m on arm + * [Config] Enable CONFIG_MTD_NAND_PASEMI=m on powerpc + * [Config] Enable CONFIG_MTD_NAND_PLATFORM=m on arm + * [Config] Enable CONFIG_MTD_NAND_TMIO=m on arm + * [Config] Enable CONFIG_MTD_SST25L=m on arm + * [Config] Enable CONFIG_NET_CLS_CGROUP=y on arm + * [Config] Enable CONFIG_NET_CLS_FLOW=m on arm + * [Config] Enable CONFIG_NET_CLS_U32=m on arm + * [Config] Enable CONFIG_NET_DCCPPROBE=m on arm + * [Config] Enable CONFIG_NET_SCH_INGRESS=m on arm + * [Config] Enable CONFIG_NET_TCPPROBE=m on arm + * [Config] Enable CONFIG_PASEMI_MAC=m on powerpc + * [Config] Enable CONFIG_PATA_NS87410=m on powerpc + * [Config] Enable CONFIG_I2C_GPIO=m on powerpc64-smp + * [Config] Enable CONFIG_PANEL=m on powerpc + * [Config] Enable CONFIG_PATA_CMD640_PCI=m on powerpc + * SAUCE: x86: reboot: Make Dell Latitude E6520 use reboot=pci + - LP: #833705 + * [Config] Add CONFIG_EFI_VARS=y to the enforcer + - LP: #837332 + * [Config] Update CONFIG_EFI_VARS enforcer check + * [Config] Add aufs to virtual flavor inclusion list + - LP: #844159 + * SAUCE: x86: reboot: Make Dell Optiplex 790 use reboot=pci + - LP: #818933 + * SAUCE: x86: reboot: Make Dell Optiplex 990 use reboot=pci + - LP: #768039 + * SAUCE: x86: reboot: Make Dell Latitude E6220 use reboot=pci + - LP: #838402 + * [Config] Add igbvf to the virtual flavor inclusion list + - LP: #794570 + * [Config] Add ixgbevf to the virtual inclusion list + - LP: #872411 + * [Config] Transition -generic and -server to be identical + * rebase to v3.1-rc10 + + [ Luke Yelavich ] + + * [Config] Disable legacy IDE drivers on powerpc + + [ Ming Lei ] + + * SAUCE: fireware: add NO_MSI quirks for o2micro controller + - LP: #801719 + * SAUCE: ata_piix: make DVD Drive recognisable on systems with Intel + Sandybridge chipsets(v2) + - LP: #737388, #782389, #794642 + + [ Paolo Pisati ] + + * [Config] Compile-in vfat support for armel + - LP: #853783 + + [ Randy Dunlap ] + + * SAUCE: staging: fix rts5139 depends & build + - LP: #824273 + + [ Rene Bolldorf ] + + * SAUCE: (drop after 3.0) ideapad: Check if acpi already handle backlight + power in 'ideapad_backlight_notify_power' to avoid a page fault + + [ Seth Forshee ] + + * SAUCE: (no-up) Input: elantech - Add v3 hardware support + - LP: #681904 + * SAUCE: (drop after 3.1) usb_storage: Don't freeze in usb-stor-scan + - LP: #810020 + + [ Stefan Bader ] + + * (config) Package macvlan and macvtap for virtual + * [Config] Force perf to use libiberty for demangling + - LP: #783660 + * SAUCE: xen: Do not use pv spinlocks on HVM + - LP: #838026 + + [ Tim Gardner ] + + * [Config] Clean up tools rules + * [Config] Package x86_energy_perf_policy and turbostat + - LP: #797556 + * rebase to v3.1-rc3 + * [Config] Simplify binary-udebs dependencies + * [Config] kernel preparation cannot be parallelized + * [Config] Linearize module/abi checks + * [Config] Linearize and simplify tree preparation rules + * [Config] Build kernel image in parallel with modules + * [Config] Set concurrency for kmake invocations + * [Config] Improve install-arch-headers speed + * [Config] Fix binary-perarch dependencies + * [Config] Removed stamp-flavours target + * [Config] Serialize binary indep targets + * [Config] Use build stamp directly + * [Config] Restore prepare-% target + * rebase to v3.1-rc4 + * rebase to v3.1-rc5 + * [Config] Disable makedumpfile for i386/amd64 + * rebase to v3.1-rc6 + * [Config] Fix binary-% build target + * rebase to v3.1-rc7 + * rebase to v3.1-rc8 + * SAUCE: Add a new entry (413c:8197) to Bluetooth USB device ID table + - LP: #854399 + * [Config] Enable ftrace support in the mac80211 layer + - LP: #865171 + * rebase to v3.1-rc9 + * SAUCE: usb/core/devio.c: Check for printer class specific request + - LP: #872711 + + [ Upstream Kernel Changes ] + + * overlay filesystem + * overlayfs: add statfs support + * overlayfs: implement show_options + * overlay: overlay filesystem documentation + * fs: limit filesystem stacking depth + + [ Will Drewry ] + + * SAUCE: seccomp_filter: new mode with configurable syscall filters + * SAUCE: seccomp_filter: add process state reporting + * SAUCE: seccomp_filter: Document what seccomp_filter is and how it + works. + * SAUCE: seccomp_filter: add HAVE_SECCOMP_FILTER and seccomp_execve + + [ Upstream Kernel Changes ] + + * rebase to v3.1-rc1 + * rebase to v3.1-rc2 + * rebase to v3.1-rc3 + +CONFIG_BLK_DEV_BSGLIB=y + +CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 + -CONFIG_VIDEO_OMAP2_VOUT_VRFB=y + * rebase to v3.1-rc4 + * rebase to v3.1-rc5 + * rebase to v3.1-rc6 + * rebase to v3.1-rc7 + * rebase to v3.1-rc8 + * rebase to v3.1-rc9 + * rebase to v3.1-rc10 + + -- Leann Ogasawara Wed, 10 Aug 2011 15:43:38 -0700 + +linux (3.1.0-1.0) oneiric; urgency=low + + [ Leann Ogasawara ] + + * Open P-series + + -- Leann Ogasawara Wed, 10 Aug 2011 13:42:40 -0700 + +linux (3.0.0-8.10) oneiric; urgency=low + + [ Adam Jackson ] + + * SAUCE: drm/i915/pch: Fix integer math bugs in panel fitting + - LP: #753994 + + [ John Johansen ] + + * [Config] Enable missing IPv6 options + + [ Leann Ogasawara ] + + * [Config] Disable config IWLWIFI_DEVICE_SVTOOL + - LP: #819925 + * Rebase to 3.0.1 + + [ Upstream Kernel Changes ] + + * x86, intel, power: Correct the MSR_IA32_ENERGY_PERF_BIAS message + * ALSA: hda - Turn on extra EAPDs on Conexant codecs + - LP: #783582 + * KVM: Remove SMEP bit from CR4_RESERVED_BITS + - LP: #796476 + * KVM: Add SMEP support when setting CR4 + - LP: #796476 + * KVM: Mask function7 ebx against host capability word9 + - LP: #796476 + * KVM: Add instruction fetch checking when walking guest page table + - LP: #796476 + + [ Upstream Kernel Changes ] + + * rebase to v3.0.1 + + -- Leann Ogasawara Fri, 05 Aug 2011 11:32:25 -0700 + +linux (3.0.0-7.9) oneiric; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Upstream] add local prefix to oss local change_bits" + * Revert "SAUCE: add tracing for user initiated readahead requests" + * Revert "SAUCE: vfs: Add a trace point in the mark_inode_dirty function" + * Revert "SAUCE: Input: ALPS - Enable Intellimouse mode for Lenovo + Zhaoyang E47" + * Revert "SAUCE: fix documentation strings for struct input_keymap_entry" + * Revert "SAUCE: vt -- fix handoff numbering to 1..n and add range checks + (grub)" + * Revert "SAUCE: vt -- fix handoff numbering to 1..n and add range + checks" + * Revert "SAUCE: vt -- allow grub to request automatic vt_handoff" + * Revert "SAUCE: vt -- maintain bootloader screen mode and content until + vt switch" + * [Config] enable CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=1 + - LP: #816035 + * ubuntu: Yama: if an underlying filesystem provides a permissions op use + it + * SAUCE: (no-up) add tracing for user initiated readahead requests + * SAUCE: vt -- maintain bootloader screen mode and content until vt + switch + * SAUCE: vt -- allow grub to request automatic vt_handoff + + [ Arjan van de Ven ] + + * SAUCE: (no-up) vfs: Add a trace point in the mark_inode_dirty function + + [ Kees Cook ] + + * Revert "SAUCE: (no-up) Disable building the ACPI debugfs source" + * [Config] enforce ACPI_CUSTOM_METHOD disabled + + [ Keng-Yu Lin ] + + * SAUCE: (no-up) Input: ALPS - Enable Intellimouse mode for Lenovo + Zhaoyang E47 + - LP: #632884, #803005 + + [ Leann Ogasawara ] + + * [Config] Enable CONFIG_BLK_DEV_CMD64X=m on powerpc + - LP: #513131 + * [Config] Enable CONFIG_RT2800PCI_RT53XX=y + - LP: #815064 + + [ Rezwanul Kabir ] + + * SAUCE: (no-up) Add support for Intellimouse Mode in ALPS touchpad on + Dell E2 series Laptops + - LP: #632884 + + [ Upstream Kernel Changes ] + + * Revert "yama: if an underlying filesystem provides a permissions op use + it" + * Revert "Add support for Intellimouse Mode in ALPS touchpad on Dell E2 + series Laptops" + * Revert "tty: include linux/slab.h for kfree" + * Revert "gpio/ml_ioh_gpio: include linux/slab.h for kfree" + * Revert "pch_dma: add include/slab.h for kfree" + * mmc: Added quirks for Ricoh 1180:e823 lower base clock frequency + - LP: #773524 + * oss: rename local change_bits to avoid powerpc bitsops.h definition + + -- Leann Ogasawara Mon, 25 Jul 2011 09:08:01 -0700 + +linux (3.0.0-7.8) oneiric; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: overlayfs -- overlayfs: add statfs support + * [Config] enable CONFIG_OVERLAYFS + + [ Erez Zadok ] + + * ubuntu: overlayfs -- overlayfs: implement show_options + + [ Leann Ogasawara ] + + * [Config] Enable CONFIG_ALIM7101_WDT=m on powerpc + * [Config] Enable CONFIG_ASUS_OLED=m on powerpc + * [Config] Disable CONFIG_ATM_DUMMY on arm + * [Config] Enable CONFIG_BLK_DEV_DRBD=m on powerpc + * Temporarily disable module check on arm + * Rebase to 3.0 final + * [Config] Enable CONFIG_CAN_TI_HECC=m on arm + * [Config] Set CONFIG_CDROM_PKTCDVD=m on amd64 and i386 + * [Config] Enable CONFIG_CRYPTO_CCM=m on powerpc + * [Config] Enable CONFIG_CRYPTO_DEV_HIFN_795X=m on powerpc + * [Config] Enable CONFIG_CRYPTO_GCM=m on powerpc + * [Config] Set CRYPTO_LZO=m on powerpc64-smp + * [Config] Enable CONFIG_DM9000=m on arm + * [Config] Set CONFIG_DISPLAY_SUPPORT=m on arm + * [Config] Enable CONFIG_DL2K=m on amd64 and i386 + + [ Miklos Szeredi ] + + * ubuntu: overlayfs -- vfs: add i_op->open() + * ubuntu: overlayfs -- vfs: export do_splice_direct() to modules + * ubuntu: overlayfs -- vfs: introduce clone_private_mount() + * ubuntu: overlayfs -- overlay filesystem + * ubuntu: overlayfs -- ovl: fix overlayfs over overlayfs + * ubuntu: overlayfs -- ovl: improve stack use of lookup and readdir + * ubuntu: overlayfs -- fs: limit filesystem stacking depth + * ubuntu: overlayfs -- ovl: make lower mount read-only + + [ Neil Brown ] + + * ubuntu: overlayfs -- overlay: overlay filesystem documentation + + [ Tim Gardner ] + + * [Config] Add enic/fnic to udebs + - LP: #801610 + + [ Upstream Kernel Changes ] + + * yama: if an underlying filesystem provides a permissions op use it + + [ Major Kernel Changes ] + + * Rebase to 3.0 final + + -- Leann Ogasawara Thu, 21 Jul 2011 07:01:32 -0700 + +linux (3.0.0-6.7) oneiric; urgency=low + + [ Eagon Yager ] + + * [Config] Fix misspelled 'skipmodule' in arm makefile. + + [ Keng-Yu Lin ] + + * SAUCE: Input: ALPS - Enable Intellimouse mode for Lenovo Zhaoyang E47 + - LP: #632884, #803005 + + [ Leann Ogasawara ] + + * Revert "[Config] Temporarily disable CONFIG_SMC91X on armel-omap" + * Revert "[Config] Temporarily Disable CONFIG_BRCMSMAC on arm" + * Revert "[Config] Temporarily Disable CONFIG_RTL8192SE on powerpc" + * Revert "[Config] Temporarily Disable CONFIG_RTL8192SE on arm" + * Revert "[Config] Temporarily disable CONFIG_BRCMSMAC on powerpc" + * [Config] Set CONFIG_ACPI_PCI_SLOT=m + * [Config] Set CONFIG_ACPI_SBS=m + * [Config] Set CONFIG_ACPI_WMI=m + * [Config] Set CONFIG_AD7150=m on arm + * [Config] Set CONFIG_AD7152=m on arm + * [Config] Drop CONFIG_GPIO_S5PV210 + * [Config] Drop CONFIG_GPIO_S5PC100 + * [Config] Drop CONFIG_GPIO_PLAT_SAMSUNG + * [Config] Drop CONFIG_GPIO_EXYNOS4 + + [ Stefan Bader ] + + * SAUCE: Re-enable RODATA for i386 virtual + - LP: #809838 + + [ Upstream Kernel Changes ] + + * Revert "Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15" + * (drop after 3.0.0) acer-wmi: Add support for Aspire 1830 wlan hotkey + - LP: #771758 + + -- Leann Ogasawara Wed, 20 Jul 2011 06:36:02 -0700 + +linux (3.0.0-5.6) oneiric; urgency=low + + [ Tim Gardner ] + + * [Config] CONFIG_RTL8192CU=m + * Rebase to -rc7 + + -- Tim Gardner Mon, 11 Jul 2011 22:13:50 +0100 + +linux (3.0.0-4.5) oneiric; urgency=low + + [ Ming Lei ] + + * SAUCE: fix yama_ptracer_del lockdep warning + - LP: #791019 + + [ Seth Forshee ] + + * SAUCE: (drop after 3.0) asus-wmi: Add callback for hotkey filtering + * SAUCE: (drop after 3.0) eeepc-wmi: Add support for T101MT Home/Express Gate key + * SAUCE: (drop after 3.0) asus-wmi: Enable autorepeat for hotkey input device + * [Config] CONFIG_{ASUS,ASUS_NB,EEEPC}_WMI=m + - LP: #805218 + + [ Tim Gardner ] + + * [Config] updateconfigs after rebase to -rc6+ + Rebased against 4dd1b49c6d215dc41ce50c80b4868388b93f31a3 + * Adopt a 3 digit verion, e.g., 3.0.0-x.x + * Revert "UBUNTU: add dependancies for module-init-tools" + This dependency is no longer required for a 3 digit version. + + -- Tim Gardner Tue, 05 Jul 2011 14:03:04 +0100 + +linux (3.0-3.4) oneiric; urgency=low + + [ Keng-Yu Lin ] + + * SAUCE: Revert: "dell-laptop: Toggle the unsupported hardware + killswitch" + - LP: #775281 + + [ Leann Ogasawara ] + + * rebase to v3.0-rc5 + * [Config] updateconfigs after rebase to 3.0-rc5 + + [ Tim Gardner ] + + * [Config] Remove ubuntu/rtl8192se + * [Config] Added armel ABI files + * [Config] Removed armel versatile flavour + * [Config] CONFIG_INTEL_MEI=m + - LP: #716867 + + [ Upstream Kernel Changes ] + + * ALSA: hda - Enable auto-parser as default for Conexant codecs + + [ Upstream Kernel Changes ] + + * rebase to v3.0-rc5 + + -- Leann Ogasawara Thu, 30 Jun 2011 14:27:10 +0100 + +linux (3.0-2.3) oneiric; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: AUFS -- update to 0e2bafab74f0d1463383faeb93f9fc5eb8c2c54e + + [ Leann Ogasawara ] + + * rebase to v3.0-rc4 + * [Config] updateconfigs after rebase to 3.0-rc4 + * fix ERROR: __devcgroup_inode_permission undefined + + [ Stefan Bader ] + + * SAUCE: iscsitarget: Remove driver from the kernel + + [ Tim Gardner ] + + * SAUCE: rtl8192se: Force a build for a 2.6/3.0 kernel + * [Config] Add grub-efi as a recommended bootloader for server and + generic + - LP: #800910 + + [ Upstream Kernel Changes ] + + * Fix node_start/end_pfn() definition for mm/page_cgroup.c + + [ Leann Ogasawara ] + + * rebase to v3.0-rc4 + + -- Leann Ogasawara Fri, 24 Jun 2011 11:51:12 -0700 + +linux (3.0-1.2) oneiric; urgency=low + + [ Andy Whitcroft ] + + * [Config] enable CONFIG_CAN_CALC_BITTIMING + + [ Leann Ogasawara ] + + * rebase to v3.0-rc3 + * [Config] updateconfigs after rebase to 3.0-rc3 + + [ Upstream Kernel Changes ] + + * perf: clear out make flags when calling kernel make kernelver + + [ Leann Ogasawara ] + + * rebase to v3.0-rc3 + + -- Leann Ogasawara Tue, 14 Jun 2011 07:25:35 -0700 + +linux (3.0-0.1) oneiric; urgency=low + + [ Andy Whitcroft ] + + * use the packaging version in the kernel + * use the kernels idea of its version for version_signature + * add dependancies for module-init-tools + * update control files to version 3 + * printchanges/insertchanges allow override of prev_release + * correct Vcs-Git: to point to oneiric + + [ Leann Ogasawara ] + + * rebase to v3.0-rc1 + * [Config] updateconfigs after rebase to 3.0-rc1 + * ubuntu: dm-raid4-5 fix up build failure + * [Config] Temporarily Disable CONFIG_GPIO_EXYNOS4 on arm + * [Config] Temporarily Disable CONFIG_GPIO_PLAT_SAMSUNG on arm + * [Config] Temporarily Disable CONFIG_GPIO_S5PC100 on arm + * [Config] Temporarily Disable CONFIG_GPIO_S5PV210 on arm + * [Config] Temporarily disable CONFIG_BRCMSMAC on powerpc + * [Config] Temporarily Disable CONFIG_BRCMSMAC on arm + * [Config] Temporarily Disable CONFIG_RTL8192SE on arm + * [Config] Temporarily Disable CONFIG_RTL8192SE on powerpc + * [Config] Temporarily disable CONFIG_SMC91X on armel-omap + * rebase to v3.0-rc2 + + [ Manoj Iyer ] + + * SAUCE: mmc: Enable MMC card reader for RICOH [1180:e823] + - LP: #790754 + + [ Upstream Kernel Changes ] + + * Revert "x86 idle: EXPORT_SYMBOL(default_idle, pm_idle) only when APM + demands it" + * drm/i915: fix regression after clock gating init split + + [ Major Kernel Changes ] + + * rebase from v2.6.39 to v3.0-rc1 + * rebase from v3.0-rc1 to v3.0-rc2 + + -- Andy Whitcroft Thu, 09 Jun 2011 15:18:33 +0100 + +linux (2.6.39-3.10) oneiric; urgency=low + + [ Colin Ian King ] + + * SAUCE: S3 early resume debug via keyboard LEDs + + [ Ingo Molnar ] + + * ubuntu: nx-emu - i386: NX emulation + * ubuntu: nx-emu - i386: mmap randomization for executable mappings + + [ Leann Ogasawara ] + + * Revert "[Config] Disable CONFIG_FT1000 on powerpc64-smp" + * Revert "[Config] Disable CONFIG_DM_RAID45" + * [Config] enable CONFIG_BRCMFMAC=y + * [Config] enable CONFIG_MDIO_BITBANG=m across all arch's and flavors + * [Config] enable CONFIG_VIDEO_OUTPUT_CONTROL=m on armel-omap + + [ Robert Nelson ] + + * SAUCE: omap3: beagle: detect new xM revision B + - LP: #770679 + * SAUCE: omap3: beagle: detect new xM revision C + - LP: #770679 + * SAUCE: omap3: beagle: if rev unknown, assume xM revision C + - LP: #770679 + + [ Stefan Bader ] + + * SAUCE: Convert dm-raid45 to new block plugging + + -- Leann Ogasawara Mon, 23 May 2011 11:46:43 -0700 + +linux (2.6.39-3.9) oneiric; urgency=low + + [ Leann Ogasawara ] + + * [Config] Disable CONFIG_SCSI_LPFC_DEBUG_FS + * rebase to v2.6.39 + * [Config] enable CONFIG_LLC2=m across all arch's and flavours + * [Config] enable CONFIG_INPUT_APANEL=m + + [ Thomas Schlichter ] + + * SAUCE: vesafb: mtrr module parameter is uint, not bool + - LP: #778043 + * SAUCE: vesafb: enable mtrr WC by default + - LP: #778043 + + [ Major Kernel Changes ] + + * rebase from v2.6.39-rc7 to v2.6.39 + + -- Andy Whitcroft Fri, 20 May 2011 09:52:32 +0100 + +linux (2.6.39-2.8) oneiric; urgency=low + + [ Andy Whitcroft ] + + * Revert "ubuntu: AUFS -- aufs2-standalone.patch aufs2.1-37" + * Revert "ubuntu: AUFS -- aufs2-base.patch aufs2.1-37" + * Revert "[Config] Disable CONFIG_AUFS_FS" + * ubuntu: AUFS -- aufs2-base.patch aufs2.1-39 + * ubuntu: AUFS -- aufs2-standalone.patch aufs2.1-39 + * ubuntu: AUFS -- update to c6b76974311efc5bf3eddf921cd015b6aae46935 + * ubuntu: AUFS -- clean up the aufs updater and BOM + * ubuntu: AUFS -- documentation on updating aufs2 + + [ Kees Cook ] + + * ubuntu: Yama - LSM hooks + * ubuntu: Yama - create task_free security callback + * ubuntu: Yama - add ptrace relationship tracking interface + * ubuntu: Yama - unconditionally chain to Yama LSM + + [ Leann Ogasawara ] + + * Revert "SAUCE: Fix drivers/staging/easycap FTBS" + * Revert "[Config] Disable CONFIG_EASYCAP" + * ubuntu: fsam7400 disable driver + * ubuntu: omnibook disable driver + * ubuntu: rfkill disable driver + + [ Tim Gardner ] + + * SAUCE: Fix extra reference in fb_open() + + -- Leann Ogasawara Mon, 16 May 2011 09:23:56 -0700 + +linux (2.6.39-2.7) oneiric; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.39-rc7 + + [ Major Kernel Changes ] + + * rebase from v2.6.39-rc6 to v2.6.39-rc7 + + -- Leann Ogasawara Tue, 10 May 2011 10:18:28 +0200 + +linux (2.6.39-1.6) oneiric; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.39-rc6 + * SAUCE: [arm] fixup __aeabi_uldivmod undefined build error + + [ Tim Gardner ] + + * [Config] updateconfigs after rebase to 2.6.39-rc6 + + [ Major Kernel Changes ] + + * rebase from v2.6.39-rc5 to v2.6.39-rc6 + - LP: #740126 + + -- Leann Ogasawara Thu, 05 May 2011 09:46:12 -0700 + +linux (2.6.39-0.5) oneiric; urgency=low + + [ Herton Ronaldo Krzesinski ] + + * SAUCE: Revert "x86, hibernate: Initialize mmu_cr4_features during boot" + - LP: #764758 + + [ Leann Ogasawara ] + + * rebase to v2.6.39-rc5 + * [Config] updateconfigs following rebase to v2.6.39-rc5 + + [ Paolo Pisati ] + + * [Config] s/USB_MUSB_TUSB6010/USB_MUSB_OMAP2PLUS/ on omap3 to get musb + - LP: #759913 + + [ Stefan Bader ] + + * Include nls_iso8859-1 for virtual images + - LP: #732046 + + [ Major Kernel Changes ] + + * rebase from v2.6.39-rc4 to v2.6.39-rc5 + + -- Leann Ogasawara Wed, 27 Apr 2011 06:39:42 -0700 + +linux (2.6.39-0.4) oneiric; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.39-rc4 + * [Config] updateconfigs following rebase to v2.6.39-rc4 + * fixup powerpc implicit declaration of function + 'crash_kexec_wait_realmode' + * [Config] Disable CONFIG_FT1000 on powerpc64-smp + + [ Tim Gardner ] + + * [Config] CONFIG_TRANSPARENT_HUGEPAGE=y + - LP: #769503 + * [Config] Add cachefiles.ko to virtual flavour + - LP: #770430 + + [ Major Kernel Changes ] + + * rebase from v2.6.39-rc3 to v2.6.39-rc4 + + -- Leann Ogasawara Tue, 19 Apr 2011 06:25:20 -0700 + +linux (2.6.39-0.3) oneiric; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.39-rc3 + * crash_kexec_wait_realmode() undefined when !SMP + + [ Tim Gardner ] + + * [Config] CONFIG_PM_ADVANCED_DEBUG=y for i386/amd64 + - LP: #632327 + + [ Major Kernel Changes ] + + * rebase from v2.6.39-rc2 to v2.6.39-rc3 + + -- Leann Ogasawara Tue, 12 Apr 2011 06:52:24 -0700 + +linux (2.6.39-0.2) oneiric; urgency=low + + [ Gustavo F. Padovan ] + + * SAUCE: Revert "Bluetooth: Add new PID for Atheros 3011" + - LP: #720949 + + [ John Johansen ] + + * AppArmor: Fix masking of capabilities in complain mode + - LP: #748656 + + [ Leann Ogasawara ] + + * rebase to v2.6.39-rc2 + * [Config] updateconfigs following rebase to v2.6.39-rc2 + * hv_mouse needs delay.h + * olpc_dcon_xo_1 needs delay.h + * olpc_dcon_xo_1_5 needs delay.h + * Update dropped.txt for Oneiric + + [ Steve Langasek ] + + * [Config] Make linux-libc-dev coinstallable under multiarch + - LP: #750585 + + [ Upstream Kernel Changes ] + + * x86, hibernate: Initialize mmu_cr4_features during boot + - LP: #752870 + + [ Major Kernel Changes ] + + * rebase from v2.6.39-rc1 to v2.6.39-rc2 + + -- Leann Ogasawara Wed, 06 Apr 2011 11:04:15 -0700 + +linux (2.6.39-0.1) oneiric; urgency=low + + [ Brad Figg ] + + * [Config] Set CONFIG_NR_CPUS=256 for amd64 generic + - LP: #737124 + + [ Henrik Rydberg ] + + * SAUCE: HID: hid-ntrig: add support for 1b96:0006 model + * SAUCE: HID: ntrig: fix suspend/resume on recent models + + [ Herton Ronaldo Krzesinski ] + + * SAUCE: (drop after 2.6.39) v4l: make sure drivers supply a zeroed + struct v4l2_subdev + - LP: #745213 + + [ Kees Cook ] + + * [Config] packaging: adjust perms on vmlinuz as well + * SAUCE: nx-emu: further clarify dmesg reporting + - LP: #745181 + + [ Leann Ogasawara ] + + * rebase to v2.6.39-rc1 + * [Config] updateconfigs following rebase to v2.6.39-rc1 + * [Config] Disable CONFIG_DM_RAID45 + * [Config] Disable CONFIG_SCSI_ISCSITARGET + * [Config] Disable CONFIG_EASYCAP + * [Config] Disable CONFIG_AUFS_FS + * update bnx2 firmware files in d-i/firmware/nic-modules + * xhci-pci.c resolve implicit declaration of kzalloc + * [Config] Enable CONFIG_DRM_PSB for only x86 + * [Config] Enable CONFIG_RTS_PSTOR for only x86 + * mfd/asic3: Fix typo, s/irq_data/data/ + + [ Luke Yelavich ] + + * [Config] Disable CONFIG_CRASH_DUMP on 32-bit powerpc kernels + - LP: #745358 + * [Config] Disable CONFIG_DRM_RADEON_KMS on powerpc kernels + * [Config] Build some framebuffer drivers as modules for powerpc kernels. + + [ Manoj Iyer ] + + * SAUCE: thinkpad-acpi: module autoloading for newer Lenovo ThinkPads. + - LP: #745217 + + [ Tim Gardner ] + + * SAUCE: INR_OPEN=4096 + - LP: #663090 + * SAUCE: Increase the default hard limit for open FDs to 4096 + - LP: #663090 + + [ Upstream Kernel Changes ] + + * (drop after 2.6.39-rc1) arm: versatile : Fix typo introduced in irq + namespace cleanup + * (drop after 2.6.39-rc1) [media] staging: altera-jtag needs delay.h + * ALSA: pcm: fix infinite loop in snd_pcm_update_hw_ptr0() + + [ Major Kernel Changes ] + + * rebase from v2.6.38 to v2.6.39-rc1 + + -- Leann Ogasawara Thu, 31 Mar 2011 12:50:10 -0700 + +linux (2.6.39-0.0) oneiric; urgency=low + + [ Leann Ogasawara ] + + * Open Oneiric + + -- Leann Ogasawara Thu, 31 Mar 2011 12:29:23 -0700 + +linux (2.6.38-7.39) natty; urgency=low + + [ Leann Ogasawara ] + + * No change upload. This is just to rebuild with gcc-4.5.2-7ubuntu1. + + -- Leann Ogasawara Thu, 24 Mar 2011 09:27:45 -0700 + +linux (2.6.38-7.38) natty; urgency=low + + [ Leann Ogasawara ] + + * No change upload take 2. 2.6.38-7.37 was accidentally uploaded before + gcc-4.5.2-6ubuntu5 finished building on all arches. + + -- Leann Ogasawara Tue, 22 Mar 2011 06:12:47 -0700 + +linux (2.6.38-7.37) natty; urgency=low + + [ Leann Ogasawara ] + + * No change upload. This is just to rebuild with gcc-4.5.2-6ubuntu5. + + -- Leann Ogasawara Sun, 20 Mar 2011 16:02:48 -0700 + +linux (2.6.38-7.36) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: KLUDGE: work around failed 'shrink-wrap' compiler + optimisation" + * purge last vestiges of maverick + * [Config] switch CONFIG_FB_VESA back to module + + [ Chris Wilson ] + + * SAUCE: drm/i915: Fix pipelined fencing + - LP: #717114 + + [ Loïc Minier ] + + * Include nls_cp437 module in virtual for fat + - LP: #732046 + * Support arch= cross-compilation for any arch + * Fix couple of typos in 0-common-vars.mk + * Enforce DEFAULT_MMAP_MIN_ADDR on armhf + * Add armhf to Debian -> Linux arch map + * Add initial armhf.mk + * Enable common packages for armhf + + [ Upstream Kernel Changes ] + + * Yama: fix default relationship to check thread group + - LP: #737676 + + -- Andy Whitcroft Fri, 18 Mar 2011 18:18:02 +0000 + +linux (2.6.38-7.35) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to 2fbfac4e053861925fa3fffcdc327649b09af54c + * rebase fixes bug #715330 + * [Config] disable CONFIG_SCSI_QLA_ISCSI for powerpc 32bit to fix FTBS + * rebase to v2.6.38 final + + [ Herton Ronaldo Krzesinski ] + + * SAUCE: Apply OPTION_BLACKLIST_SENDSETUP also for ZTE MF626 + - LP: #636091 + + [ Tim Gardner ] + + * [Confg] CONFIG_BOOT_PRINTK_DELAY=y + + [ Upstream Kernel Changes ] + + * Yama: use thread group leader when creating match + - LP: #729839 + * (drop after 2.6.38) ahci: AHCI mode SATA patch for Intel Patsburg SATA + RAID controller + - LP: #735240 + * (drop after v2.6.38) x86, quirk: Fix SB600 revision check + + [ Major Kernel Changes ] + + * rebase from v2.6.38-rc8 to v2.6.38 final + - LP: #715330 + + -- Andy Whitcroft Tue, 15 Mar 2011 19:04:19 +0000 + +linux (2.6.38-6.34) natty; urgency=low + + [ Andy Whitcroft ] + + * [Config] normalise CONFIG_INTEL_TXT + * SAUCE: KLUDGE: work around failed 'shrink-wrap' compiler optimisation + - LP: #730860 + * rebase to mainline v2.6.38-rc8 + + [ Major Kernel Changes ] + + * rebase from v2.6.38-rc7 + fb62c00a6d8942775abc23d1621db1252e2d93d1 + to v2.6.38-rc8 + + -- Andy Whitcroft Tue, 08 Mar 2011 11:54:48 +0000 + +linux (2.6.38-6.33) natty; urgency=low + + [ Andy Whitcroft ] + + * d-i -- enable speakup-modules udeb + - LP: #672699 + * rebase to 493f3358cb289ccf716c5a14fa5bb52ab75943e5 + * [Config] debian PPC64 configuration + * [Config] cleanup powerpc config fixing unexpected inconsistancies + * [Config] resync ppc64 configuration + * SAUCE: match up ENTRY/END naming for 32/64 bit + * rebase to fb62c00a6d8942775abc23d1621db1252e2d93d1 + * [Config] update configs after rebase to + fb62c00a6d8942775abc23d1621db1252e2d93d1 + * [Config] pps_gen_parport no longer built + + [ Corentin Chary ] + + * SAUCE: (drop after 2.6.38) eeepc-wmi: reorder keymap + - LP: #689393 + * SAUCE: (drop after 2.6.38) eeepc-wmi: add wlan key found on 1015P + - LP: #689393 + + [ John Johansen ] + + * SAUCE: Fix aufs calling of security_path_mknod + - LP: #724456 + + [ Kees Cook ] + + * SAUCE: proc: hide kernel addresses via %pK in /proc//stack + + [ Tim Gardner ] + + * rebase to 2.6.38-rc7 + + [ Upstream Kernel Changes ] + + * Revert "drm/i915: fix corruptions on i8xx due to relaxed fencing" + + [ Major Kernel Changes ] + + * rebase from v2.6.38-rc6 to v2.6.38-rc7 + + fb62c00a6d8942775abc23d1621db1252e2d93d1 + - LP: #721389 + - LP: #722925 + - LP: #723672 + - LP: #723676 + - LP: #715318 + + -- Andy Whitcroft Mon, 07 Mar 2011 15:33:17 +0000 + +linux (2.6.38-5.32) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to mainline 6f576d57f1fa0d6026b495d8746d56d949989161 + * [Config] updateconfigs following rebase to v2.6.38-rc6 + * [Config] enable CONFIG_DMAR + - LP: #552311 + + [ Upstream Kernel Changes ] + + * drm/i915: skip FDI & PCH enabling for DP_A + - LP: #561802, #600453, #681877 + + [ Major Kernel Changes ] + + * rebase from v2.6.38-rc5 to v2.6.38-rc6 + - LP: #718402 + - LP: #719524 + - LP: #721126 + - LP: #719691 + - LP: #722689 + - LP: #722310 + + -- Andy Whitcroft Tue, 22 Feb 2011 13:28:39 +0000 + +linux (2.6.38-4.31) natty; urgency=low + + [ Andy Whitcroft ] + + * add in bugs closed by upstream patches pulled in by rebases + * rebase to 795abaf1e4e188c4171e3cd3dbb11a9fcacaf505 + * [Config] enable CONFIG_VSX to allow use of vector instuctions + * resync with maverick 98defa1c5773a3d7e4c524967eb01d5bae035816 + * rebase to mainline v2.6.38-rc5 + * SAUCE: ecryptfs: read on a directory should return EISDIR if not + supported + - LP: #719691 + + [ Colin Ian King ] + + * SAUCE: Dell All-In-One: Remove need for Dell module alias + + [ Manoj Iyer ] + + * SAUCE: (drop after 2.6.38) add ricoh 0xe823 pci id. + - LP: #717435 + + [ Tim Gardner ] + + * [Config] CONFIG_CRYPTO_CRC32C_INTEL=y + + [ Upstream Kernel Changes ] + + * Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15 + - LP: #702434 + * vfs: fix BUG_ON() in fs/namei.c:1461 + + [ Vladislav P ] + + * SAUCE: Release BTM while sleeping to avoid deadlock. + - LP: #713837 + + [ Major Kernel Changes ] + + * rebase from v2.6.38-rc4 to v2.6.38-rc5 + - LP: #579276 + - LP: #715877 + - LP: #713769 + - LP: #716811 + * resync with Maverick Ubuntu-2.6.35-27.47 + + -- Andy Whitcroft Fri, 11 Feb 2011 17:24:09 +0000 + +linux (2.6.38-3.30) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.38-rc4 + * ppc64 -- add basic architecture + * ubuntu: AUFS -- update to 65835da20b77c98fb538c9114fc31f5de1328230 + + [ Colin Ian King ] + + * SAUCE: Add WMI hotkeys support for Dell All-In-One series + - LP: #676997 + * SAUCE: Add WMI hotkeys support for another Dell All-In-One series + - LP: #701530 + * SAUCE: Dell WMI: Use sparse keymaps and tidy up code. + - LP: #701530 + + [ Dan Rosenberg ] + + * SAUCE: (drop after 2.6.38) Convert net %p usage %pK + + [ Kees Cook ] + + * Revert "SAUCE: kernel: make /proc/kallsyms mode 400 to reduce ease of + attacking" + * SAUCE: (drop after 2.6.38) use %pK for /proc/kallsyms and /proc/modules + + [ Tim Gardner ] + + * [Config] CONFIG_BLK_CGROUP=y + - LP: #706394 + * [Config] CONFIG_DELL_WMI_AIO=m + + [ Upstream Kernel Changes ] + + * drm/i915/lvds: Restore dithering on native modes for gen2/3 + - LP: #711568 + + [ Upstream Kernel Changes ] + + * rebase from v2.6.38-rc3 to v2.6.38-rc4. + - LP: #701271 + - LP: #708521 + - LP: #710371 + + -- Andy Whitcroft Tue, 08 Feb 2011 02:07:18 +0000 + +linux (2.6.38-2.29) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to 1f0324caefd39985e9fe052fac97da31694db31e + * [Config] updateconfigs following rebase to + 1f0324caefd39985e9fe052fac97da31694db31e + * rebase to 70d1f365568e0cdbc9f4ab92428e1830fdb09ab0 + * [Config] reenable HIBERNATE + - LP: #710877 + * rebase to v2.6.38-rc3 + * [Config] reenable CONFIG_CRASH_DUMP + + [ Kamal Mostafa ] + + * SAUCE: rtl8192se: fix source file perms + * SAUCE: rtl8192se: fix source file newline + * SAUCE: omnibook: fix source file newline + + [ Kees Cook ] + + * [Config] packaging: really make System.map mode 0600 + + [ Ricardo Salveti de Araujo ] + + * SAUCE: OMAP3630: PM: don't warn the user with a trace in case of + PM34XX_ERRATUM + + [ Soren Hansen ] + + * SAUCE: nbd: Remove module-level ioctl mutex + + [ Tim Gardner ] + + * SAUCE: Disable building the ACPI debugfs source + + [ Upstream Kernel Changes ] + + * Set physical start and alignment 1M for virtual i386 + - LP: #710754 + + [ Upstream Kernel Changes ] + + * rebase from v2.6.38-rc2 + c723fdab8aa728dc2bf0da6a0de8bb9c3f588d84 + to v2.6.38-rc3 + - LP: #707902 + + -- Andy Whitcroft Fri, 28 Jan 2011 16:30:32 +0000 + +linux (2.6.38-1.28) natty; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: AUFS -- update to b1cee06249dfa0ab30951e7f06490a75c155b620 + + [ Ricardo Salveti de Araujo ] + + * SAUCE: omap3: beaglexm: fix DVI initialization + * [Config] omap: move CONFIG_PANEL_GENERIC_DPI to build in to make + display work at Beagle + + -- Andy Whitcroft Fri, 28 Jan 2011 10:51:57 +0000 + +linux (2.6.38-1.27) natty; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: AUFS -- update aufs-update to track new locations of headers + * ubuntu: AUFS -- update to c5021514085a5d96364e096dbd34cadb2251abfd + * SAUCE: ensure root is ready before running usermodehelpers in it + * correct the Vcs linkage to point to natty + * rebase to linux tip e78bf5e6cbe837daa6ab628a5f679548742994d3 + * [Config] update configs following rebase + e78bf5e6cbe837daa6ab628a5f679548742994d3 + * SAUCE: Yama: follow changes to generic_permission + * ubuntu: compcache -- follow changes to bd_claim/bd_release + * ubuntu: iscsitarget -- follow changes to open_bdev_exclusive + * ubuntu: ndiswrapper -- fix interaction between __packed and packed + * ubuntu: AUFS -- update to 806051bcbeec27748aae2b7957726a4e63ff308e + * update package version to match payload version + * rebase to e6f597a1425b5af64917be3448b29e2d5a585ac8 + * rebase to v2.6.38-rc1 + * [Config] updateconfigs following rebase to v2.6.38-rc1 + * SAUCE: x86 fix up jiffies/jiffies_64 handling + * rebase to linus tip 2b1caf6ed7b888c95a1909d343799672731651a5 + * [Config] updateconfigs following rebase to + 2b1caf6ed7b888c95a1909d343799672731651a5 + * [Config] disable CONFIG_TRANSPARENT_HUGEPAGE to fix i386 boot crashes + * ubuntu: AUFS -- suppress benign plink warning messages + - LP: #621195 + * [Config] CONFIG_NR_CPUS=256 for amd64 -server flavour + * rebase to v2.6.38-rc2 + * rebase to mainline d315777b32a4696feb86f2a0c9e9f39c94683649 + * rebase to c723fdab8aa728dc2bf0da6a0de8bb9c3f588d84 + * [Config] update configs following rebase to + c723fdab8aa728dc2bf0da6a0de8bb9c3f588d84 + * [Config] disable CONFIG_AD7152 to fix FTBS on armel versatile + * [Config] disable CONFIG_AD7150 to fix FTBS on armel versatile + * [Config] disable CONFIG_RTL8192CE to fix FTBS on armel omap + * [Config] disable CONFIG_MANTIS_CORE to fix FTBS on armel versatile + + [ Kees Cook ] + + * SAUCE: kernel: make /proc/kallsyms mode 400 to reduce ease of attacking + + [ Stefan Bader ] + + * Temporarily disable RODATA for virtual i386 + - LP: #699828 + + [ Tim Gardner ] + + * [Config] CONFIG_NLS_DEFAULT=utf8 + - LP: #683690 + * [Config] CONFIG_HIBERNATION=n + * update bnx2 firmware files in d-i/firmware/nic-modules + + [ Upstream Kernel Changes ] + + * Revert "drm/radeon/bo: add some fallback placements for VRAM only + objects." + * packaging: make System.map mode 0600 + * thinkpad_acpi: Always report scancodes for hotkeys + - LP: #702407 + * sched: tg->se->load should be initialised to tg->shares + * Input: sysrq -- ensure sysrq_enabled and __sysrq_enabled are consistent + * brcm80211: include linux/slab.h for kfree + * pch_dma: add include/slab.h for kfree + * i2c-eg20t: include linux/slab.h for kfree + * gpio/ml_ioh_gpio: include linux/slab.h for kfree + * tty: include linux/slab.h for kfree + * winbond: include linux/delay.h for mdelay et al + + [ Upstream Kernel Changes ] + + * mark the start of v2.6.38 versioning + * rebase v2.6.37 to v2.6.38-rc2 + c723fdab8aa728dc2bf0da6a0de8bb9c3f588d84 + - LP: #689886 + - LP: #702125 + - LP: #608775 + - LP: #215802 + - LP: #686333 + - LP: #677830 + - LP: #677652 + - LP: #696493 + - LP: #697240 + - LP: #689036 + - LP: #705323 + - LP: #686692 + + -- Andy Whitcroft Sun, 09 Jan 2011 13:44:52 +0000 + +linux (2.6.37-12.26) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.37-rc8 + * [Config] armel -- reenable omap flavour + * [Config] disable CONFIG_MACH_OMAP3517EVM to fix FTBS on armel omap + * [Config] disable CONFIG_GPIO_VX855 to fix FTBS on omap armel + * [Config] disable CONFIG_WESTBRIDGE_ASTORIA to fix FTBS on omap armel + * [Config] disable CONFIG_TI_DAVINCI_EMAC to fix FTBS on omap armel + * rebase to mainline 989d873fc5b6a96695b97738dea8d9f02a60f8ab + * [Config] track missing modules + * rebase to v2.6.37 final + + [ Chase Douglas ] + + * SAUCE: (drop after 2.6.37) HID: magicmouse: Don't report REL_{X, Y} for + Magic Trackpad + + [ Stefan Bader ] + + * Revert "SAUCE: blkfront: default to sd devices" + - LP: #684875 + + [ Tim Gardner ] + + * Revert "SAUCE: (no-up) libata: Ignore HPA by default." + - LP: #380138 + * [Config] Added autofs4.ko to -virtual flavour + - LP: #692917 + + [ Upstream Kernel Changes ] + + * Add support for Intellimouse Mode in ALPS touchpad on Dell E2 series + Laptops + - LP: #632884 + + [ Upstream Kernel Changes ] + + * rebase to v2.6.37-rc8 + * rebase to mainline 989d873fc5b6a96695b97738dea8d9f02a60f8ab + * rebase to v2.6.37 final + + -- Andy Whitcroft Thu, 23 Dec 2010 18:34:13 +0000 + +linux (2.6.37-11.25) natty; urgency=low + + [ Andy Whitcroft ] + + * [Config] d-i -- add hpsa to the list of block devices + - LP: #684304 + * [Config] add vmw-balloon driver to -virtual flavour + - LP: #592039 + * rebase to v2.6.37-rc7 + + [ Upstream Kernel Changes ] + + * rebase to v2.6.37-rc7 + + -- Andy Whitcroft Tue, 21 Dec 2010 13:35:28 +0000 + +linux (2.6.37-10.24) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.37-rc6 + * updateconfigs following rebase to v2.6.37-rc6 + + [ Upstream Kernel Changes ] + + * rebase to v2.6.37-rc6 + + -- Andy Whitcroft Thu, 16 Dec 2010 12:34:19 +0000 + +linux (2.6.37-9.23) natty; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: vt -- fix handoff numbering to 1..n and add range checks + - LP: #689606 + * SAUCE: vt -- fix handoff numbering to 1..n and add range checks (grub) + - LP: #689606 + + [ Kees Cook ] + + * SAUCE: RO/NX protection for loadable kernel, fix ftrace + - LP: #690190 + + -- Andy Whitcroft Wed, 15 Dec 2010 19:29:57 +0000 + +linux (2.6.37-9.22) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.35-rc5 + * [Config] updateconfigs following rebase to v2.6.37-rc5 + * (no-up) add support for installed header files to ubuntu directory + - LP: #684666 + * ubuntu: AUFS -- include the aufs_types.h file in linux-libc-headers + - LP: #684666 + * ubuntu: dm-raid4-5 -- follow changes to bio flags + * ubuntu: dm-raid4-5 -- re-enable + * ubuntu: omnibook -- update BOM + * ubuntu: ndiswrapper -- update BOM to match actual version + * ubuntu: ndiswrapper -- follow removal of the BKL and locked ioctl + * ubuntu: ndiswrapper -- re-enable + * ubuntu: iscsitarget -- re-instate copy_io_context + * ubuntu: iscsitarget -- follow changes to semaphore initialisation + * ubuntu: iscsitarget -- convert NIPQUAD to %pI4 + * ubuntu: iscsitarget -- re-enable + + [ Kees Cook ] + + * [Config] update config for CONFIG_DEBUG_SET_MODULE_RONX + + [ Manoj Iyer ] + + * SAUCE: Enable jack sense for Thinkpad Edge 13 + - LP: #685015 + + [ Tim Gardner ] + + * [Config] CONFIG_9P_FSCACHE=y,CONFIG_9P_FS_POSIX_ACL=y + * [Config] CONFIG_CRYPTO_CRC32C=y + - LP: #681819 + * [Config] CONFIG_9P_FSCACHE=n + * [Config] Add nfsd modules to -virtual flavour + - LP: #688070 + + [ Upstream Kernel Changes ] + + * Revert "Staging: zram: work around oops due to startup ordering snafu" + * NFS: Fix panic after nfs_umount() + - LP: #683938 + * x86: Add NX protection for kernel data + * x86: Add RO/NX protection for loadable kernel modules + * x86: Resume trampoline must be executable + * x86: RO/NX protection for loadable kernel, jump_table fix + + [ Upstream Kernel Changes ] + + * rebase to v2.6.37-rc5 + + -- Andy Whitcroft Thu, 09 Dec 2010 18:15:35 +0000 + +linux (2.6.37-8.21) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "ubuntu: AUFS -- include the aufs_types.h file in + linux-libc-headers" + * Revert "(no-up) add support for installed header files to ubuntu + directory" + + -- Andy Whitcroft Sun, 05 Dec 2010 17:33:28 +0000 + +linux (2.6.37-8.20) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Upstream] drivers/serial/mfd.c: Fix ARM compile error" + * Revert "SAUCE: Nouveau: Disable acceleration on MacBook Pros" + * Revert "SAUCE: Nouveau: Add quirk framework to disable acceleration" + * Revert "SAUCE: i915 -- disable powersave by default" + * SAUCE: enable Marvell 9128 PCIe SATA controller + - LP: #658521 + * [Config] evtchn has been renamed + * (no-up) add support for installed header files to ubuntu directory + - LP: #684666 + * ubuntu: AUFS -- include the aufs_types.h file in linux-libc-headers + - LP: #684666 + + [ Tim Gardner ] + + * [Config] MISS: evtchn, NEW : xen-evtchn + * rebase to v2.6.37-rc4 + + [ Upstream Kernel Changes ] + + * drm/i915: Clean conflicting modesetting registers upon init + - LP: #683775 + * rebase to v2.6.37-rc4 + + -- Andy Whitcroft Fri, 03 Dec 2010 18:42:07 +0000 + +linux (2.6.37-7.19) natty; urgency=low + + [ Tim Gardner ] + + * [Config] Add bnx2 firmware to nic-modules udeb + - LP: #676245 + + -- Andy Whitcroft Fri, 26 Nov 2010 17:53:45 +0000 + +linux (2.6.37-7.18) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Upstream] USB: option: Remove duplicate AMOI_VENDOR_ID" + * Revert "SAUCE: Add extra headers to linux-libc-dev" + * Revert "SAUCE: Enable speedstep for sonoma processors." + * [Config] enable CONFIG_BT_HCIUART_ATH3K + * [Config] enable CONFIG_IWLWIFI_DEBUGFS + * [Config] standardise CONFIG_MII + * [Config] standardise CONFIG_PRISM2_USB + * [Config] standardise CONFIG_SCSI_QLA_ISCSI + * [Config] build in CONFIG_AGP + * [Config] build in CONFIG_AGP_INTEL + * [Config] build in CONFIG_AGP_AMD + * [Config] build in CONFIG_AGP_AMD64 + * [Config] build in CONFIG_AGP_NVIDIA + * [Config] build in CONFIG_AGP_VIA + * [Config] disable CONFIG_SCSI_QLA_ISCSI for FTBS (arm) + * (no-up): document the new ## scheme + * [Config] harmonise CONFIG_SERIAL_8250_NR_UARTS + * [Config] update CONFIG_SERIAL_8250_RUNTIME_UARTS=32 + - LP: #675453 + + [ Mathieu J. Poirier ] + + * SAUCE: ARM: Adding vdd_sdi regulator supply to OMAP3EVM + + [ Upstream Kernel Changes ] + + * nx-emu: fix inverted report of disable_nx + + -- Andy Whitcroft Tue, 23 Nov 2010 21:00:39 +0000 + +linux (2.6.37-6.17) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "ubuntu: AUFS -- aufs2-standalone.patch + aufs2.1-36-UNRELEASED-20101103" + * Revert "ubuntu: AUFS -- aufs2-base.patch + aufs2.1-36-UNRELEASED-20101103" + * [Config] standardise CONFIG_BT + * [Config] standardise CONFIG_IRDA + * [Config] standardise CONFIG_LAPB + * [Config] standardise CONFIG_RDS + * [Config] standardise CONFIG_RFKILL + * [Config] standardise CONFIG_TIPC + * [Config] standardise CONFIG_X25 + * [Config] standardise CONFIG_INPUT_EVDEV + * [Config] standardise CONFIG_INPUT_JOYDEV + * [Config] standardise CONFIG_INPUT_JOYSTICK + * [Config] standardise CONFIG_INPUT_TOUCHSCREEN + * [Config] CONFIG_INPUT_TOUCHSCREEN=n for FTBS (arm) + * [Config] CONFIG_IRDA=n for FTBS (arm) + * ubuntu: AUFS -- aufs2-base.patch aufs2.1-37 + * ubuntu: AUFS -- aufs2-standalone.patch aufs2.1-37 + * ubuntu: AUFS -- update to 097bf62d6f49619359d34bf17f242df38562489a + + [ Tim Gardner ] + + * SAUCE: Fix drivers/staging/easycap FTBS + * [Config] CONFIG_EASYCAP=m after fixing FTBS + + [ Upstream Kernel Changes ] + + * Revert "x86: Add NX protection for kernel data" + + -- Andy Whitcroft Mon, 22 Nov 2010 18:09:10 +0000 + +linux (2.6.37-6.16) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Config] update config for CONFIG_DEBUG_SET_MODULE_RONX" + * rebase to v2.6.37-rc3 + + [ Tim Gardner ] + + * [Config] CONFIG_SCHED_AUTOGROUP=y + + [ Upstream Kernel Changes ] + + * Revert "x86: Add RO/NX protection for loadable kernel modules" + * sched: automated per session task groups + * rebase to v2.6.37-rc3 + + -- Andy Whitcroft Mon, 22 Nov 2010 10:11:13 +0000 + +linux (2.6.37-6.15) natty; urgency=low + + [ Andy Whitcroft ] + + * [Config] standardise CONFIG_CEPH_FS + * [Config] standardise CONFIG_SCSI_LPFC_DEBUG_FS + * [Config] standardise CONFIG_SCSI_PROC_FS + * [Config] standardise CONFIG_UBIFS_FS + * [Config] standardise CONFIG_USB_GADGET_DEBUG_FS + + [ Kees Cook ] + + * [Config] update config for CONFIG_DEBUG_SET_MODULE_RONX + + [ Manoj Iyer ] + + * SAUCE: Enable jack sense for Thinkpad Edge 11 + - LP: #677210 + * SAUCE: enable rfkill for rtl8192se driver + - LP: #640992 + + [ Tim Gardner ] + + * [Config] CONFIG_EASYCAP=n for FTBS + * Rebase to v2.6.32-rc2+git + + [ Upstream Kernel Changes ] + + * x86: Fix improper large page preservation + * x86: Add NX protection for kernel data + * x86: Add RO/NX protection for loadable kernel modules + + [ Upstream Kernel Changes ] + + * Rebase to Linus 2.6.37-rc2+git + + -- Andy Whitcroft Sat, 20 Nov 2010 11:40:00 +0000 + +linux (2.6.37-5.14) natty; urgency=low + + [ Upstream Kernel Changes ] + + * PCI: fix offset check for sysfs mmapped files + - LP: #676963 + + -- Andy Whitcroft Thu, 18 Nov 2010 18:12:27 +0000 + +linux (2.6.37-5.13) natty; urgency=low + + [ Andy Whitcroft ] + + * rebased to v2.6.37-rc2 + * updateconfigs following rebase to v2.6.37-rc2 + + [ Tim Gardner ] + + * [Config] Added NFS and related modules to virtual flavour + - LP: #659084 + + [ Upstream Kernel Changes ] + + * x86, cpu: Rename verify_cpu_64.S to verify_cpu.S + * x86, cpu: Clear XD_DISABLED flag on Intel to regain NX + * x86, cpu: Call verify_cpu during 32bit CPU startup + * x86, cpu: Only CPU features determine NX capabilities + + [ Upstream Changes ] + + * rebased to v2.67.37-rc2 + + -- Andy Whitcroft Tue, 16 Nov 2010 13:13:29 +0000 + +linux (2.6.37-4.12) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Upstream] HID: magicmouse: add param for scroll speed" + * Revert "[Upstream] HID: magicmouse: properly account for scroll + movement in state" + * Revert "[Upstream] HID: magicmouse: disable and add module param for + scroll acceleration" + * Revert "[Upstream] HID: magicmouse: scroll on entire surface, not just + middle of mouse" + + [ Henrik Rydberg ] + + * SAUCE: hid: ntrig: remove sysfs nodes + * SAUCE: hid: ntrig: Setup input filtering manually + * SAUCE: hid: ntrig: New ghost-filtering event logic + + [ Manoj Iyer ] + + * SAUCE: Added quirk to recognize GE0301 3G modem as an interface. + - LP: #348861 + + [ Upstream Kernel Changes ] + + * Revert "mmc: fix all hangs related to mmc/sd card insert/removal during + suspend/resume" + * Revert "[ARM] implement arch_randomize_brk()" + * Revert "ARM: stack protector: change the canary value per task" + * Revert "ARM: initial stack protector (-fstack-protector) support" + * Revert "ALSA: hda - Handle pin NID 0x1a on ALC259/269" + * Revert "ALSA: hda - Handle missing NID 0x1b on ALC259 codec" + * Revert "perf probe: Add kernel source path option" + * hid: ntrig: Support single-touch devices + * hid: ntrig: Mask pen switch events + * net: rtnetlink.h -- only include linux/netdevice.h when used by the + kernel + - LP: #673073 + * Fix userspace build of linux/fs.h + + -- Andy Whitcroft Mon, 15 Nov 2010 19:31:44 +0000 + +linux (2.6.37-3.11) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "ubuntu: AUFS -- update to + b37c575759dc4535ccc03241c584ad5fe69e3b25" + * Revert "ubuntu: AUFS -- track changes to the arguements to fop fsync()" + * Revert "ubuntu: AUFS -- update to standalone 2.6.35-rcN as at 20100601" + * Revert "ubuntu: AUFS -- update to standalone 2.6.34 as at 20100601" + * Revert "ubuntu: AUFS -- aufs2 base patch for linux-2.6.34" + * [Config] Disable intel_idle for -virtual kernels + - LP: #651370 + * [Config] enforcer -- ensure we never enable CONFIG_IMA + * debian -- pass the correct flavour name when checking configs + * [Config] enforcer -- ensure CONFIG_INTEL_IDLE is off for -virtual + * [Config] ensure CONFIG_IPV6=y for powerpc + * [Config] enforcer -- ensure CONFIG_IPV6=y + * ubuntu: AUFS -- aufs2-base.patch aufs2.1-36-UNRELEASED-20101103 + * ubuntu: AUFS -- aufs2-standalone.patch aufs2.1-36-UNRELEASED-20101103 + * ubuntu: AUFS -- update to aufs2.1-36-UNRELEASED-20101103 + * ubuntu: AUFS -- re-enable + * ubuntu: AUFS -- track changes to work queue initialisation + * ubuntu: AUFS -- track changes to llseek in v2.6.37-rc1 + * SAUCE: fbcon -- fix race between open and removal of framebuffers + * SAUCE: fbcon -- fix OOPs triggered by race prevention fixes + - LP: #614008 + * SAUCE: drm -- stop early access to drm devices + + [ Jeremy Kerr ] + + * [Config] Build-in powermac ZILOG serial driver + - LP: #673346 + + [ Kees Cook ] + + * SAUCE: nx-emu: use upstream ASLR when possible + + [ Tim Gardner ] + + * [Config] Use correct be2iscsi module name in d-i/modules/scsi-modules + - LP: #628776 + + [ Upstream Kernel Changes ] + + * i386: NX emulation + * nx-emu: drop exec-shield sysctl, merge with disable_nx + * nx-emu: standardize boottime message prefix + * mmap randomization for executable mappings on 32-bit + * exec-randomization: brk away from exec rand area + + -- Andy Whitcroft Thu, 11 Nov 2010 23:46:37 +0000 + +linux (2.6.37-2.10) natty; urgency=low + + [ Andy Whitcroft ] + + * reinstate armel config changes: + * [Config] CONFIG_GPIO_PCH=n for armel FTBS + * [Config] CONFIG_GPIO_VX855=n for armel FTBS + + -- Andy Whitcroft Wed, 03 Nov 2010 22:20:35 +0000 + +linux (2.6.37-2.9) natty; urgency=low + + [ Andy Whitcroft ] + + * config -- fix genportsconfig + * [Config] move powerpc over from ports to distro + * bump master version number to match contained kernel + * SAUCE: fix documentation strings for struct input_keymap_entry + * usb: gadget: goku_udc: add registered flag bit + + -- Andy Whitcroft Tue, 02 Nov 2010 15:14:11 +0000 + +linux (2.6.36-2.8) natty; urgency=low + + [ Tim Gardner ] + + * [Config]: fix changed CONFIG_SYSFS_DEPRECATED_V2 enforcement rules + * [Config]: TWL4030_CORE=n for FTBS + * [Config]: CONFIG_ATH6K_LEGACY=n for FTBS + * [Config]: CONFIG_SOLO6X10=n for FTBS + * [Config]: CONFIG_GPIO_PCH=n for armel FTBS + * [Config]: CONFIG_GPIO_VX855=n for armel FTBS + * [Config]: CONFIG_DRM_NOUVEAU=n for armel FTBS + * [Config]: CONFIG_LINE6_USB=n for armel FTBS + * [Config]: CONFIG_SENSORS_AK8975=n for armel FTBS + * [Config]: CONFIG_I2C_I801=n for armel FTBS + * UBUNTU: SAUCE: AppArmor: Fix unpack of network tables. + * AppArmor: compatibility patch for v5 interface + * AppArmor: compatibility patch for v5 network controll + * Dropped (pre-stable): input: Support Clickpad devices in ClickZone mode + * Dropped: UBUNTU: SAUCE: libata: Add ALPM power state accounting to the AHCI driver + * Dropped: UBUNTU: SAUCE: Added quirk to recognize GE0301 3G modem as an interface. + * Dropped: hid: 3m: Convert to MT slots + * Dropped: HID: magicmouse: don't allow hidinput to initialize the device + * Dropped: HID: magicmouse: simplify touch data bit manipulation + * Dropped: HID: magicmouse: simplify touch down logic + * Dropped: HID: magicmouse: enable Magic Trackpad support + * Dropped: UBUNTU: SAUCE: hid: ntrig: remove sysfs nodes + * Dropped: UBUNTU: SAUCE: hid: ntrig: Setup input filtering manually + * Dropped: UBUNTU: SAUCE: hid: ntrig: New ghost-filtering event logic + * Dropped: UBUNTU: SAUCE: hid: ntrig: identify firmware version (wiggled) + * Dropped: UBUNTU: (pre-stable): input: Support Clickpad devices in ClickZone mode + * Dropped: UBUNTU: SAUCE: KMS: cache the EDID information of the LVDS + * Dropped: UBUNTU: SAUCE: fbcon -- fix race between open and removal of framebuffers + * Dropped: UBUNTU: SAUCE: fbcon -- fix OOPs triggered by race prevention fixes + * Dropped: UBUNTU: SAUCE: x86: implement cs-limit nx-emulation for ia32 + * Dropped: UBUNTU: SAUCE: x86: more tightly confine cs-limit nx-emulation to ia32 only + * Dropped: UBUNTU: SAUCE: [um] Don't use nx_enabled under UML + * Dropped: UBUNTU: SAUCE: x86: brk away from exec rand area + + [ Upstream Kernel Changes ] + + * rebased against 2.6.27-rc1 + + -- Tim Gardner Fri, 22 Oct 2010 19:35:05 -0600 + +linux (2.6.36-1.7) natty; urgency=low + + [ Andy Whitcroft ] + + * rebased to v2.6.36 final + * [Config] update configs following rebase to v2.6.36 final + * [Config] update ports configs following rebase to v2.6.36 final + + [ Upstream Kernel Changes ] + + * rebased to v2.6.36 final + + -- Andy Whitcroft Thu, 21 Oct 2010 14:28:57 +0100 + +linux (2.6.36-1.6) natty; urgency=low + + [ Upstream Kernel Changes ] + + * drop broadcom staging driver preview: + * Revert "Staging: Add initial release of brcm80211 - Broadcom 802.11n + wireless LAN driver." + + -- Andy Whitcroft Wed, 20 Oct 2010 10:41:25 +0100 + +linux (2.6.36-1.5) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.36-rc8 + * updateconfigs following rebase to v2.6.36-rc8 + * updateportsconfigs following rebase to v2.6.36-rc8 + * config -- simplify the kernelconfig interface + * config -- add new config mode 'dumpconfigs' + + [ Tim Gardner ] + + * Simplify the use of CROSS_COMPILER + + [ Upstream Kernel Changes ] + + * drop broadcom staging driver preview: + * Revert "staging: brcm80211: Make compiling of brcm80211.ko and + brcmfmac.ko mutually exclusive." + * Revert "staging: brcm80211: Fix compile issue when BRCM80211_PCI is not + set." + * Revert "Staging: brcm80211: remove driver specific -W options" + * Revert "Staging: brcm80211: clean up makefile cflag lines" + * Revert "staging: brcm80211: add fullmac driver" + * Revert "staging: brcm80211: use string native library" + * Revert "staging: brcm80211: use native ctype library" + * Revert "staging: brcm80211: fix remaining checkpatch errors." + * Revert "staging: brcm80211: fix "ERROR: trailing whitespace."" + * Revert "staging: brcm80211: fix "ERROR: spaces required around that + ..."" + * Revert "staging: brcm80211: fix "ERROR: spaces prohibited around that + ':' ..."" + * Revert "staging: brcm80211: fix "ERROR: space required before that + ..."" + * Revert "staging: brcm80211: fix "ERROR: space required after that ..."" + * Revert "staging: brcm80211: fix "ERROR: space required after that close + brace"" + * Revert "staging: brcm80211: fix "ERROR: space prohibited before + ...close square bracket"" + * Revert "staging: brcm80211: fix "ERROR: space prohibited after that + ..."" + * Revert "staging: brcm80211: fix "ERROR: need consistent spacing around + '*'"" + * Revert "staging: brcm80211: fix 'ERROR: "(foo*)" should be "(foo *)"'" + * Revert "staging: brcm80211: fix "ERROR: Macros w/ mult. statements ... + do - while loop"" + * Revert "staging: brcm80211: fix "ERROR: Macros w/ complex values ... + parenthesis"" + * Revert "staging: brcm80211: fix "ERROR: do not initialise statics to 0 + or NULL"" + * Revert "staging: brcm80211: fix "ERROR: do not initialise globals to 0 + or NULL"" + * Revert "staging: brcm80211: fix "ERROR: while should follow close brace + '}'"" + * Revert "staging: brcm80211: fix "ERROR: that open brace { ... prev + line"" + * Revert "staging: brcm80211: fix "ERROR: trailing statements should be + on next line"" + * Revert "staging: brcm80211: fix "ERROR: do not use assignment in if + condition"" + * Revert "staging: brcm80211: fix "ERROR: return is not a function, + paren..."" + * Revert "staging: brcm80211: fix "ERROR: open brace '{' following + function dec..."" + * Revert "staging: brcm80211: fix 'ERROR: "foo * bar" should be "foo + *bar"'" + * Revert "staging: brcm80211: Fix URLs for firmware files." + * Revert "staging: brcm80211: use '%pM' format to print MAC address" + * Revert "staging: brcm80211: Add contact info to TODO list." + * Revert "staging: brcm80211: Fix some initialisation failure paths" + * Export dump_{write,seek} to binary loader modules + * rebase to v2.6.36-rc8. + + -- Andy Whitcroft Tue, 19 Oct 2010 18:58:11 +0100 + +linux (2.6.36-0.4) natty; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: perf: increase stack footprint to avoid stack-protector warning + (fixes FTBS on powerpc) + + -- Andy Whitcroft Thu, 14 Oct 2010 13:16:16 +0100 + +linux (2.6.36-0.3) natty; urgency=low + + [ Andy Whitcroft ] + + * [Config] disable CONFIG_SCSI_QLA_ISCSI to fix FTBS on powerpc + + -- Andy Whitcroft Thu, 14 Oct 2010 03:01:30 +0100 + +linux (2.6.36-0.2) natty; urgency=low + + [ Andy Whitcroft ] + + * [Config] updateportsconfigs following rebase to 2.6.36-rc7 + (fix FTBS on powerpc) + + -- Andy Whitcroft Wed, 13 Oct 2010 23:25:12 +0100 + +linux (2.6.36-0.1) natty; urgency=low + + [ Andy Whitcroft ] + + * reduce disk usage during buildd builds + - LP: #645653 + * [Config] enforcer -- ensure CONFIG_INIT_PASS_ALL_PARAMS is y + * [Config] armel -- drop omap flavour + + [ Tim Gardner ] + + * Added dropped patch list + * more dropped patches + * [Config] Disable aufs, dmraid-4.5, ndis-wrapper + * [Config] Add support for cross compiling armel + * [Config] CONFIG_SCSI_QLA_ISCSI=n for armel + * [Upstream] drivers/serial/mfd.c: Fix ARM compile error + * [Config]: updateconfigs after adding brcm80211 + * staging: brcm80211: Fix Makefile syntax error + * rebased to v2.6.36-rc7 + + [ Upstream Kernel Changes ] + + * (upstream) IPS driver: don't toggle CPU turbo on unsupported CPUs + * (upstream) IPS driver: verify BIOS provided limits + * intel_ips: Print MCP limit exceeded values. + * Staging: Add initial release of brcm80211 - Broadcom 802.11n wireless + LAN driver. + * staging: brcm80211: Fix some initialisation failure paths + * staging: brcm80211: Add contact info to TODO list. + * staging: brcm80211: use '%pM' format to print MAC address + * staging: brcm80211: Fix URLs for firmware files. + * staging: brcm80211: fix 'ERROR: "foo * bar" should be "foo *bar"' + * staging: brcm80211: fix "ERROR: open brace '{' following function + dec..." + * staging: brcm80211: fix "ERROR: return is not a function, paren..." + * staging: brcm80211: fix "ERROR: do not use assignment in if condition" + * staging: brcm80211: fix "ERROR: trailing statements should be on next + line" + * staging: brcm80211: fix "ERROR: that open brace { ... prev line" + * staging: brcm80211: fix "ERROR: while should follow close brace '}'" + * staging: brcm80211: fix "ERROR: do not initialise globals to 0 or NULL" + * staging: brcm80211: fix "ERROR: do not initialise statics to 0 or NULL" + * staging: brcm80211: fix "ERROR: Macros w/ complex values ... + parenthesis" + * staging: brcm80211: fix "ERROR: Macros w/ mult. statements ... do - + while loop" + * staging: brcm80211: fix 'ERROR: "(foo*)" should be "(foo *)"' + * staging: brcm80211: fix "ERROR: need consistent spacing around '*'" + * staging: brcm80211: fix "ERROR: space prohibited after that ..." + * staging: brcm80211: fix "ERROR: space prohibited before ...close square + bracket" + * staging: brcm80211: fix "ERROR: space required after that close brace" + * staging: brcm80211: fix "ERROR: space required after that ..." + * staging: brcm80211: fix "ERROR: space required before that ..." + * staging: brcm80211: fix "ERROR: spaces prohibited around that ':' ..." + * staging: brcm80211: fix "ERROR: spaces required around that ..." + * staging: brcm80211: fix "ERROR: trailing whitespace." + * staging: brcm80211: fix remaining checkpatch errors. + * staging: brcm80211: use native ctype library + * staging: brcm80211: use string native library + * staging: brcm80211: add fullmac driver + * Staging: brcm80211: clean up makefile cflag lines + * Staging: brcm80211: remove driver specific -W options + * staging: brcm80211: Fix compile issue when BRCM80211_PCI is not set. + * staging: brcm80211: Make compiling of brcm80211.ko and brcmfmac.ko + mutually exclusive. + + -- Andy Whitcroft Tue, 12 Oct 2010 16:00:27 +0100 + +linux (2.6.35-22.33) maverick; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: Add support for Intellimouse Mode in ALPS touchpad on + Dell E2 series Laptops" + - LP: #641320 + + [ Brian Rogers ] + + * SAUCE: ir-core: Fix null dereferences in the protocols sysfs interface + - LP: #624701 + + [ Christopher James Halse Rogers ] + + * SAUCE: Nouveau: Add quirk framework to disable acceleration + - LP: #544088, #546393 + * SAUCE: Nouveau: Disable acceleration on MacBook Pros + - LP: #546393 + + [ John Johansen ] + + * Revert "SAUCE: AppArmor: allow newer tools to load policy on older + kernels" + * SAUCE: AppArmor: allow newer tools to load policy on older kernels + - LP: #639758 + + [ Mathieu J. Poirier ] + + * SAUCE: Adding vdd_sdi regulator supply to OMAP3EVM + + [ Upstream Kernel Changes ] + + * ALSA: HDA: Enable internal speaker on Dell M101z + - LP: #640254 + + -- Leann Ogasawara Fri, 17 Sep 2010 13:21:28 -0700 + +linux (2.6.35-22.32) maverick; urgency=low + + [ Arjan van de Ven ] + + * SAUCE: libata: Add ALPM power state accounting to the AHCI driver + + [ David Henningsson ] + + * SAUCE: ALSA: HDA: Enable internal mic on Dell E6410 and Dell E6510 + - LP: #605047, #628961 + + [ John Johansen ] + + * [Upstream] AppArmor: Fix splitting an fqname into separate namespace + and profile names + - LP: #615947 + * [Upstream] AppArmor: Fix locking from removal of profile namespace + - LP: #615947 + * SAUCE: AppArmor: allow newer tools to load policy on older kernels + - LP: #639758 + * SAUCE: Improve Amazon EBS performance for EC2 + - LP: #634316 + + [ Leann Ogasawara ] + + * Revert "SAUCE: i915 KMS -- blacklist i855" + * Revert "SAUCE: i915 KMS -- blacklist i845g" + * Revert "SAUCE: i915 KMS -- blacklist i830" + * Revert "SAUCE: i915 KMS -- support disabling KMS for known broken + devices" + * execute module-inclusion within a subshell + - LP: #621175 + + [ Upstream Kernel Changes ] + + * (pre-stable) bounce: call flush_dcache_page() after bounce_copy_vec() + - LP: #633227 + * (pre-stable) drm/i915: don't enable self-refresh on Ironlake + - LP: #629711 + * (pre-stable) mm: Move vma_stack_continue into mm.h + * x86, hwmon: Fix unsafe smp_processor_id() in thermal_throttle_add_dev + - LP: #601073 + * PM / Runtime: Make runtime_status attribute not debug-only (v. 2) + * PM / Runtime: Add runtime PM statistics (v3) + * compat: Make compat_alloc_user_space() incorporate the access_ok() + - CVE-2010-3081 + * x86-64, compat: Test %rax for the syscall number, not %eax + - CVE-2010-3301 + * x86-64, compat: Retruncate rax after ia32 syscall entry tracing + - CVE-2010-3301 + + -- Leann Ogasawara Tue, 14 Sep 2010 08:46:49 -0700 + +linux (2.6.35-21.31) maverick; urgency=low + + [ Andy Whitcroft ] + + * bodge linux-libc-dev package version due to ti-omap4 error + * linux-libc-dev -- ensure we can only build this on debian.master + + -- Leann Ogasawara Mon, 13 Sep 2010 09:54:31 -0700 + +linux (2.6.35-21.30) maverick; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: fbcon -- fix OOPs triggered by race prevention fixes + - LP: #614008 + + [ Daniel Lezcano ] + + * SAUCE: fix compilation warning when CONFIG_SECURITY is not set + + [ Henrik Rydberg ] + + * SAUCE: Input: wacom - add fuzz parameters to features + * SAUCE: Input: wacom - collect device quirks into single function + * SAUCE: Input: wacom - add support for the Bamboo Touch trackpad + * SAUCE: Input: wacom - add a quirk for low resolution Bamboo devices + * SAUCE: hid: ntrig: Remove unused device ids + * SAUCE: hid: ntrig: remove sysfs nodes + * SAUCE: hid: ntrig: Correct logic for quirks + * SAUCE: hid: ntrig: zero-initialize ntrig struct + * SAUCE: hid: ntrig: Setup input filtering manually + * SAUCE: hid: ntrig: New ghost-filtering event logic + + [ Leann Ogasawara ] + + * SAUCE: ndiswrapper: Initialize buffer index and check its value + - LP: #613796 + + [ Manoj Iyer ] + + * SAUCE: Add support for Intellimouse Mode in ALPS touchpad on Dell E2 + series Laptops + - LP: #632884 + + [ Ping Cheng ] + + * SAUCE: Input: wacom - parse the Bamboo device family + + [ Rafi Rubin ] + + * SAUCE: hid: ntrig: identify firmware version (wiggled) + + [ Tim Gardner ] + + * [Config] CONFIG_NL80211_TESTMODE=n + + [ Upstream Kernel Changes ] + + * Revert "input: mt: Add support for the Bamboo Touch trackpad" + * e1000e: initial support for 82579 LOMs + * e1000e: correct MAC-PHY interconnect register offset for 82579 + * (pre-stable) ALSA: hda - Add a new hp-laptop model for Conexant 5066, + tested on HP G60 + - LP: #587388 + * DSS2: Don't power off a panel twice + - LP: #588243 + * mmc: build fix: mmc_pm_notify is only available with CONFIG_PM=y + * Input: i8042 - reset keyboard controller wehen resuming from S2R + - LP: #86820 + * ALSA: hda - Fix beep frequency on IDT 92HD73xx and 92HD71Bxx codecs + - LP: #414795 + * agp/intel: Support the extended physical addressing bits on + Sandybridge. + - LP: #632488 + * drm/i915,intel_agp: Add support for Sandybridge D0 + - LP: #632488 + * (pre-stable) intel_agp,i915: Add more sandybridge graphics device ids + - LP: #632488 + * mmc: omap: fix for bus width which improves SD card's peformance. + + -- Leann Ogasawara Tue, 07 Sep 2010 09:58:52 -0700 + +linux (2.6.35-20.29) maverick; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: i915 KMS -- support disabling KMS for known broken devices + - LP: #563277 + * SAUCE: i915 KMS -- blacklist i830 + - LP: #542208, #563277 + * SAUCE: i915 KMS -- blacklist i845g + - LP: #541492, #563277 + * SAUCE: i915 KMS -- blacklist i855 + - LP: #511001, #541511, #563277 + + [ Leann Ogasawara ] + + * [Config] Enable CONFIG_SENSORS_PKGTEMP=m + - LP: #601073 + * ARM: Temporarily disable module check for armel + * rebase to v2.6.35.4 + * [Config] update configs following rebase to v2.6.35.4 + + [ Ricardo Salveti de Araujo ] + + * [Config] Change CONFIG_LEDS_TRIGGER_HEARTBEAT from module to built-in + in Omap + + [ Tim Gardner ] + + * [Config] Added be2net, be2scsi to udebs + - LP: #628776 + + [ Upstream Kernel Changes ] + + * x86, cpu: Package Level Thermal Control, Power Limit Notification + definitions + - LP: #601073 + * x86, hwmon: Package Level Thermal/Power: pkgtemp hwmon driver + - LP: #601073 + * x86, hwmon: Package Level Thermal/Power: thermal throttling handler + - LP: #601073 + * x86, hwmon: Package Level Thermal/Power: power limit + - LP: #601073 + * x86, hwmon: Package Level Thermal/Power: pkgtemp documentation + - LP: #601073 + * hid: 3m: Adjust to sequential MT HID protocol + * hid: 3m: Convert to MT slots + * hid: 3m: Correct touchscreen emulation + * hid: 3m: Adjust major / minor axes to scale + * input: bcm5974: Adjust major / minor to scale + * HID: magicmouse: don't allow hidinput to initialize the device + * HID: magicmouse: simplify multitouch feature request + * HID: magicmouse: simplify touch data bit manipulation + * HID: magicmouse: simplify touch down logic + * HID: magicmouse: remove timestamp logic + * HID: magicmouse: enable Magic Trackpad support + * HID: magicmouse: Adjust major / minor axes to scale + * mmc: fix all hangs related to mmc/sd card insert/removal during + suspend/resume + - LP: #477106 + * drm/i915: fix VGA plane disable for Ironlake+ + - LP: #602281 + + -- Leann Ogasawara Mon, 30 Aug 2010 08:38:01 -0700 + +linux (2.6.35-19.28) maverick; urgency=low + + [ Leann Ogasawara ] + + * No changes from 2.6.35-19.27. Some armel udebs were accidentally deleted + from the archive and a no-change rebuild was attempted. However, the ABI + did not get bumped and resulted in build failures for 2.6.35-19.27. Fix + up the ABI and re-upload. + + -- Leann Ogasawara Sat, 28 Aug 2010 16:42:27 -0700 + +linux (2.6.35-19.27) maverick; urgency=low + + [ Leann Ogasawara ] + + * No changes from 2.6.35-19.26. Some armel udebs were accidentally deleted + from the archive. + + -- Leann Ogasawara Fri, 27 Aug 2010 08:58:35 -0700 + +linux (2.6.35-19.26) maverick; urgency=low + + [ Upstream Kernel Changes ] + + * ARM: OMAP: Beagle: revision detection + * ARM: OMAP: Beagle: only Cx boards use pin 23 for write protect + * ARM: OMAP: Beagle: no gpio_wp pin connection on xM + + -- Leann Ogasawara Thu, 26 Aug 2010 09:15:09 -0700 + +linux (2.6.35-19.25) maverick; urgency=low + + [ Jarod Wilson ] + + * SAUCE: Bring in staging/lirc from 2.6.36 + - LP: #609234 + * SAUCE: Update ir-core to linuxtv/other which should be merged for + 2.6.36. + - LP: #609234 + * SAUCE: Fix memleaks in imon and mceusb drivers + - LP: #609234 + * SAUCE: Bring in streamzap support from linuxtv/other + - LP: #609234 + + [ Mario Limonciello ] + + * Remove ubuntu/lirc in favor of staging/lirc from 2.6.36 + - LP: #609234 + + [ Mathieu J. Poirier ] + + * SAUCE: ARM: adding i2c eeprom driver to read EDID + - LP: #608279 + + [ Upstream Kernel Changes ] + + * intel_idle: disable module support + - LP: #615265 + * (pre-stable) ALSA: hda - Ensure codec patch files are checked for the + correct codec ID + * (pre-stable) ALSA: hda - Rename iMic to Int Mic on Lenovo NB0763 + - LP: #605101 + * (pre-stable) ALSA: HDA: Use model=auto for LG R510 + - LP: #495134 + * (pre-stable) ALSA: HDA: Add Sony VAIO quirk for ALC269 + - LP: #519066 + * (pre-stable) ALSA: HDA: Fix front mic on Dell Precision M6500 + - LP: #519066 + * input: mt: Initialize slots to unused (rev2) + * input: mt: Add support for the Bamboo Touch trackpad + * hid: Add a hid quirk for input sync override + + -- Leann Ogasawara Mon, 23 Aug 2010 12:42:52 -0700 + +linux (2.6.35-18.24) maverick; urgency=low + + [ Colin Watson ] + + * Pass DEB_MAINT_PARAMS to hook scripts + + [ Leann Ogasawara ] + + * [Config] Add CONFIG_INPUT_UINPUT=y to config enforcer + - LP: #584812 + * rebase to v2.6.35.3 + + [ Upstream Kernel Changes ] + + * (pre-stable) dell-wmi: Add support for eject key on Dell Studio 1555 + - LP: #609234 + * can: add limit for nframes and clean up signed/unsigned variables + - CVE-2010-2959 + * drm: Initialize ioctl struct when no user data is present + - CVE-2010-2803 + * ARM: initial stack protector (-fstack-protector) support + * ARM: stack protector: change the canary value per task + * [ARM] implement arch_randomize_brk() + * [ARM] add address randomization to mmap() + * ARM: fix ASLR of PIE executables + + -- Leann Ogasawara Sun, 22 Aug 2010 19:22:04 -0700 + +linux (2.6.35-17.23) maverick; urgency=low + + [ Jeremy Kerr ] + + * [Config] build-in uinput module + - LP: #584812 + + [ Leann Ogasawara ] + + * Revert "[Config] [FTBS] ia64: Temporarily disable CONFIG_CEPH_FS" + * Revert "[Config] [FTBS] ia64: Temporarily disable gpiolib" + * Revert "[Config] [FTBS] sparc: Temporarily disable + CONFIG_MTD_NAND_DENALI" + * Revert "[Config] [FTBS] sparc: Temporarily disable + CONFIG_MFD_JANZ_CMODIO" + * Revert "[Config] [FTBS] sparc: Temporarily disable + CONFIG_INFINIBAND_QIB" + * [Config] Enable INTEL_IPS + - LP: #601057 + * Remove ia64 support + * [Config] Update portsconfigs after removing ia64 support + * Remove sparc support + * [Config] Update portsconfigs after removing sparc support + + [ Linus Torvalds ] + + * (pre-stable) mm: fix page table unmap for stack guard page properly + + [ Mathieu J. Poirier ] + + * SAUCE: (no-up) ARM: Resetting power_mode to its original value. + - LP: #591941 + + [ Upstream Kernel Changes ] + + * timer: add on-stack deferrable timer interfaces + - LP: #601057 + * x86 platform driver: intelligent power sharing driver + - LP: #601057 + * IPS driver: add GPU busy and turbo checking + - LP: #601057 + * X86: intel_ips, check for kzalloc properly + - LP: #601057 + * ips driver: make it less chatty + - LP: #601057 + + -- Leann Ogasawara Tue, 17 Aug 2010 09:38:08 -0700 + +linux (2.6.35-16.22) maverick; urgency=low + + [ Andy Whitcroft ] + + * debian -- more agressivly clean up after depmod on purge + - LP: #618591 + + [ Henrik Rydberg ] + + * SAUCE: hid: 3m: Simplify touchsreen emulation logic + + [ Leann Ogasawara ] + + * ubuntu: iscsitarget -- version 1.4.20.2 + * ubuntu: rtl8192se -- update to version 0017.0507.2010 + * rebase to v2.6.35.2 + * [Config] update configs following rebase to v2.6.35.2 + * [Config] update ports configs following rebase to v2.6.35.2 + + [ Luke Yelavich ] + + * [Config] Enable new firewire stack on powerpc + + [ Mathieu J. Poirier ] + + * SAUCE: (drop after 2.6.35) ARM: Using gpmc function to init nand flash. + - LP: #608266 + + -- Leann Ogasawara Thu, 12 Aug 2010 09:58:01 -0700 + +linux (2.6.35-15.21) maverick; urgency=low + + [ Luke Yelavich ] + + * [Config] CONFIG_SND_USB_UA101=m for all architectures + + [ Upstream Kernel Changes ] + + * Input: introduce MT event slots + * Input: document the MT event slot protocol + * (pre-stable) sched: Revert nohz_ratelimit() for now + * (pre-stable) drm/radeon/kms: add missing copy from user + - LP: #606081 + + [ Leann Ogasawara ] + + * rebase to v2.6.35.1 + + -- Leann Ogasawara Mon, 09 Aug 2010 09:24:04 -0700 + +linux (2.6.35-14.20) maverick; urgency=low + + [ Andy Whitcroft ] + + * update Vcs-Git to point to maverick repo + * debian -- include the debian packaging in the -source package + - LP: #608674 + * select debian source format 1.0 + * add support for building selected stages of kernel + - LP: #603087 + * cleanup conditional dependancy handling + - LP: #603087 + + [ Upstream Kernel Changes ] + + * ALSA: hda - Handle missing NID 0x1b on ALC259 codec + - LP: #582199, #586418, #588031 + * ALSA: hda - Handle pin NID 0x1a on ALC259/269 + - LP: #582199, #586418, #588031 + * sched: Revert nohz_ratelimit() for now + + -- Leann Ogasawara Tue, 03 Aug 2010 08:46:47 -0700 + +linux (2.6.35-14.19) maverick; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.35 + + -- Leann Ogasawara Sun, 01 Aug 2010 10:35:56 -0700 + +linux (2.6.35-13.18) maverick; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: (no-up) Modularize vesafb -- fix initialisation + * SAUCE: add tracing for user initiated readahead requests + * SAUCE: vt -- maintain bootloader screen mode and content until vt + switch + * SAUCE: vt -- allow grub to request automatic vt_handoff + * SAUCE: fbcon -- fix race between open and removal of framebuffers + * SAUCE: drm -- stop early access to drm devices + + [ Bryan Wu ] + + * CONFIG: compile in OTG driver and Transceiver driver + - LP: #566645 + * remove OTG modules from modules list file + + [ John Johansen ] + + * SAUCE: AppArmor: -- sync to AppArmor mainline 2010-07-27 + - LP: #581525, #599450 + * SAUCE: AppArmor: -- sync to AppArmor mainline 2010-07-29 + * SAUCE: AppArmor 2.4 compatibility patch + * SAUCE: AppArmor: Allow dfa backward compatibility with broken userspace + * SAUCE: fix pv-ops for legacy Xen + * SAUCE: blkfront: default to sd devices + * [Config] Build in drivers required for Xen pv-ops + + [ Leann Ogasawara ] + + * Revert "[Upstream] i915: Use the correct mask to detect i830 aperture + size." + + [ Lee Jones ] + + * SAUCE: ARM: OMAP: Add macros for comparing silicon revision + - LP: #608095 + * SAUCE: OMAP: DSS2: check for both cpu type and revision, rather than + just revision + - LP: #608095 + * SAUCE: OMAP: DSS2: enable hsclk in dsi_pll_init for OMAP36XX + - LP: #608095 + * SAUCE: ARM: OMAP: Beagle: support twl gpio differences on xM + - LP: #608095 + + [ Upstream Kernel Changes ] + + * agp/intel: Use the correct mask to detect i830 aperture size. + - LP: #597075 + + -- Leann Ogasawara Fri, 30 Jul 2010 15:46:59 -0700 + +linux (2.6.35-12.17) maverick; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.35-rc6 + * [Config] update configs following rebase to v2.6.35-rc6 + * [Config] update ports configs following rebase to v2.6.35-rc6 + * SAUCE: [FTBS] armel: define KEY_F10 and KEYF11 + + [ Leann Ogasawara ] + + * rebase to v2.6.35-rc6 + + -- Leann Ogasawara Fri, 23 Jul 2010 16:16:38 +0200 + +linux (2.6.35-11.16) maverick; urgency=low + + [ Leann Ogasawara ] + + * Bump ABI for new compiler update + + -- Leann Ogasawara Fri, 23 Jul 2010 10:24:58 +0200 + +linux (2.6.35-10.15) maverick; urgency=low + + [ Leann Ogasawara ] + + * Revert "SAUCE: ensure vga16fb loads if no other driver claims the VGA + device" + * [Config] Enable CONFIG_M686=y + - LP: #592495 + + [ Upstream Kernel Changes ] + + * tracing: Add alignment to syscall metadata declarations + + -- Leann Ogasawara Tue, 20 Jul 2010 18:18:49 +0200 + +linux (2.6.35-9.14) maverick; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: AUFS -- add BOM and automated update script + * ubuntu: AUFS -- update to b37c575759dc4535ccc03241c584ad5fe69e3b25 + + [ John Johansen ] + + * [Config] Enable DRBD as a module + + [ Kees Cook ] + + * SAUCE: Yama: verify inode is symlink to avoid bind mounts + - LP: #604407 + + [ Leann Ogasawara ] + + * [Config] Disable CONFIG_DRM_VMWGFX (staging driver) + - LP: #606139 + * [Config] ports: Disable CONFIG_DRM_VMWGFX (staging driver) + - LP: #606139 + * [Config] Enable CONFIG_DEBUG_STRICT_USER_COPY_CHECKS=y + * [Config] ports: Enable CONFIG_DEBUG_STRICT_USER_COPY_CHECKS=y + + [ Lee Jones ] + + * Stop ARM boards crashing when CUPS is loaded + - LP: #601226 + + [ Upstream Kernel Changes ] + + * perf probe: Support tracing an entry of array + * perf probe: Support static and global variables + + -- Leann Ogasawara Fri, 16 Jul 2010 14:38:17 -0700 + +linux (2.6.35-8.13) maverick; urgency=low + + [ Kees Cook ] + + * SAUCE: Yama: check PTRACE using thread group leader + * SAUCE: Yama: search for PTRACE exceptions via thread group leader + - LP: #603716 + + [ Leann Ogasawara ] + + * rebase to v2.6.35-rc5 + * [Config] update configs following rebase to v2.6.35-rc5 + + [ Nicolas Pitre ] + + * SAUCE: make ndiswrapper available on X86 only + + [ Tim Gardner ] + + * [Config] Added ums-cypress to udeb + - LP: #576066 + * SAUCE: fix build error with CONFIG_BLK_DEV_INITRD=n + * [Config] CONFIG_NDISWRAPPER=m across all configs + + [ Upstream Kernel Changes ] + + * HID: magicmouse: report last touch up + * rebase to 2.6.35-rc5 + + -- Leann Ogasawara Tue, 13 Jul 2010 18:57:59 -0700 + +linux (2.6.35-7.12) maverick; urgency=low + + [ Tim Gardner ] + + * [Upstream] i915: Use the correct mask to detect i830 aperture size. + - LP: #597075 + + [ Upstream Kernel Changes ] + + * (drop after 2.6.35) drm/radeon/kms: add ioport register access + (squashed) + + -- Tim Gardner Thu, 08 Jul 2010 09:53:13 -0600 + +linux (2.6.35-7.11) maverick; urgency=low + + [ Tim Gardner ] + + * [Config] CONFIG_X86_MRST=n + + [ Upstream Kernel Changes ] + + * (drop after 2.6.35-rc5) writeback: remove writeback_inodes_wbc + * (drop after 2.6.35-rc5) writeback: split writeback_inodes_wb + * (drop after 2.6.35-rc5) writeback: simplify the write back thread queue + + -- Tim Gardner Tue, 06 Jul 2010 18:39:08 -0600 + +linux (2.6.35-7.10) maverick; urgency=low + + [ Kees Cook ] + + * SAUCE: security: create task_free security callback + * SAUCE: Yama: add PTRACE exception tracking and interface + * SAUCE: security: unconditionally chain to Yama LSM + * Revert "SAUCE: ptrace: restrict ptrace scope to children" + * Revert "SAUCE: fs: block hardlinks to non-accessible sources" + * Revert "SAUCE: fs: block cross-uid sticky symlinks" + * [Upstream] security: Yama LSM + * [Config] Enable CONFIG_SECURITY_YAMA=y + + [ Tim Gardner ] + + * [Config] updateconfigs/updateportsconfigs after rebase to 2.6.35-rc4 + + [ Upstream Kernel Changes ] + + * rebase to 2.6.35-rc4 + + -- Leann Ogasawara Thu, 01 Jul 2010 08:55:57 -0700 + +linux (2.6.35-6.9) maverick; urgency=low + + [ Tim Gardner ] + + * [Upstream] direct_splice_actor() should not use pos in sd + - LP: #588861 + + -- Leann Ogasawara Mon, 28 Jun 2010 12:35:49 -0700 + +linux (2.6.35-6.8) maverick; urgency=low + + [ Mathieu J. Poirier ] + + * ARM: Adding regulator supply for vdds_sdi. + - LP: #597904 + + -- Leann Ogasawara Sun, 27 Jun 2010 16:34:43 -0700 + +linux (2.6.35-6.7) maverick; urgency=low + + [ Alberto Milone ] + + * [Upstream] Add support for the ATIF ACPI method to the radeon driver + + [ Chase Douglas ] + + * [Upstream] HID: magicmouse: scroll on entire surface, not just middle + of mouse + * [Upstream] HID: magicmouse: disable and add module param for scroll + acceleration + * [Upstream] HID: magicmouse: properly account for scroll movement in + state + * [Upstream] HID: magicmouse: add param for scroll speed + * [Upstream] HID: magicmouse: enable horizontal scrolling + + [ Henrik Rydberg ] + + * [Upstream] Input: evdev - convert to dynamic event buffer + * [Upstream] Input: evdev - use driver hint to compute size of event + buffer + * [Upstream] Input: bcm5974 - set the average number of events per MT + event packet + * [Upstream] Input: hid-input - use a larger event buffer for MT devices + * [Upstream] Input: evdev - never leave the client buffer empty after + write + + [ John Johansen ] + + * SAUCE: AppArmor: -- mainline 2010-06-23 + * SAUCE: AppArmor 2.4 compatibility patch + * SAUCE: fs: block hardlinks to non-accessible sources AppArmor portion + + [ Leann Ogasawara ] + + * [Config] Enable CONFIG_INTR_REMAP=y + - LP: #597091 + * [Config] Enable CONFIG_X86_X2APIC + - LP: #597091 + + [ Mathieu J. Poirier ] + + * [Config] ARM: Turning off CONFIG_CPU_IDLE on omap + - LP: #594382 + + -- Leann Ogasawara Thu, 24 Jun 2010 12:19:48 -0700 + +linux (2.6.35-5.6) maverick; urgency=low + + [ Amit Kucheria ] + + * [Config] update omap flavour description + + [ Andy Whitcroft ] + + * update to ubuntu-debian:508b7aa34b578c0d1e51bfb571f2bfb824dc65ac + - LP: #570500, #576274 + * SAUCE: add option to hand off all kernel parameters to init + - LP: #586386 + * [Config] enable passing all kernel command line to init + - LP: #586386 + * [Config] disable CONFIG_VMI + - LP: #537601 + * [Config] enable CONFIG_IPV6_SIT_6RD + - LP: #591869 + * [Config] enable CONFIG_VMWARE_BALOON as module + - LP: #592039 + + [ Leann Ogasawara ] + + * Revert "SAUCE: pm: Config option to disable handling of console during + suspend/resume" + - LP: #594885 + * [Config] Remove CONFIG_PM_DISABLE_CONSOLE + * [Config] ports: enable passing all kernel command line to init + - LP: #586386 + * [Config] Enable CONFIG_FB_VESA=y for x86 + * [Config] Add CONFIG_FRAMEBUFFER_CONSOLE=y to config enforcer + * [Config] Add CONFIG_FB_VESA=y for x86 to config enforcer + * [Config] Enable CONFIG_TASK_DELAY_ACCT=y + - LP: #493156 + + [ Mathieu Poirier ] + + * ARM: Adding MosChip MCS7830 to nic-usb + - LP: #584920 + + [ Upstream Kernel Changes ] + + * Revert "[Upstream] docbook: need xmldoclinks for all doc types" + * docbook: need xmldoclinks for all doc types + * perf probe: Add kernel source path option + + -- Leann Ogasawara Thu, 17 Jun 2010 08:05:29 -0700 + +linux (2.6.35-4.5) maverick; urgency=low + + [ Leann Ogasawara ] + + * Revert "[Upstream] (evdev) Use driver hint to compute the evdev buffer + size (rev2)" + * Revert "[Upstream] (evdev) Convert to dynamic event buffer (rev4)" + * Revert "[Upstream] (evdev) Use multi-reader buffer to save space + (rev4)" + * Revert "SAUCE: drivers: Remove some duplicate device entries in various + modules" + * [Upstream] USB: option: Remove duplicate AMOI_VENDOR_ID + * [Upstream] Revert "USB: Adding support for HTC Smartphones to ipaq" + * [Upstream] p54usb: Comment out duplicate Medion MD40900 device id + + [ Tim Gardner ] + + * [Config] CONFIG_NFS_FSCACHE=y + - LP: #440522 + * [Config] CONFIG_FSCACHE_STATS=y, CONFIG_FSCACHE_HISTOGRAM=y + - LP: #440522 + + -- Leann Ogasawara Wed, 16 Jun 2010 08:43:07 -0700 + +linux (2.6.35-3.4) maverick; urgency=low + + [ Andy Whitcroft ] + + * debian -- ensure the version number is clean + + [ Henrik Rydberg ] + + * [Upstream] Introduce MT event slots (rev 5) + * [Upstream] Document the MT event slot protocol (rev5) + * [Upstream] (evdev) Use multi-reader buffer to save space (rev4) + * [Upstream] (evdev) Convert to dynamic event buffer (rev4) + * [Upstream] (evdev) Use driver hint to compute the evdev buffer size + (rev2) + + [ Leann Ogasawara ] + + * Revert "SAUCE: Add MODULE_ALIAS for Dell WMI module" + * Revert "SAUCE: hostap: send events on data interface as well as master + interface" + * Revert "Fix webcam having USB ID 0ac8:303b" + * Revert "SAUCE: toshiba_acpi -- pull in current -dev version of driver" + * rebase to v2.6.35-rc3 + + [ Maxim Levitsky ] + + * [Config] Enable new Smartmedia/xD translation layer + - LP: #202490 + + [ Upstream Kernel Changes ] + + * net: fix deliver_no_wcard regression on loopback device + + [ Upstream changes ] + + * rebased to v2.6.35-rc3 + + -- Leann Ogasawara Thu, 10 Jun 2010 16:15:22 -0700 + +linux (2.6.35-2.3) maverick; urgency=low + + [ Bryan Wu ] + + * CONFIG: enforce -- make sure we disable CONFIG_LOCALVERSION_AUTO + + [ Leann Ogasawara ] + + * [Config] armel: Enable CONFIG_BNX2=m + * [Config] ports: Enable CONFIG_BNX2X=m + * SAUCE: armel: define get_dma_ops to fix FTBS + + [ Tim Gardner ] + + * [Upstream] net: Print num_rx_queues imbalance warning only when there + are allocated queues + - LP: #591416 + + -- Leann Ogasawara Wed, 09 Jun 2010 08:27:41 -0700 + +linux (2.6.35-2.2) maverick; urgency=low + + [ Andy Whitcroft ] + + * [Config] d-i: make armel configuration versatile flavour specific + - LP: #588805 + * [Config] d-i: enable .udebs for omap flavour + - LP: #588805 + + [ Kees Cook ] + + * ptrace: limit scope to attach only (allow read) + - LP: #589656 + + [ Leann Ogasawara ] + + * rebase to v2.6.35-rc2 + * [Config] update configs following rebase to v2.6.35-rc2 + * [Config] update port configs following rebase to v2.6.35-rc2 + + [ Lee Jones ] + + * Enable perf to be more helpful when perf_ does not exist. + - LP: #570500 + * 'fdr editconfig' modification. Easily skip over unwanted menuconfigs. + + [ Tim Gardner ] + + * [Config] Update bnx2 udeb firmware files + - LP: #589304 + + [ Upstream changes ] + + * rebased to v2.6.35-rc2 + + -- Leann Ogasawara Mon, 07 Jun 2010 09:45:04 -0700 + +linux (2.6.35-1.1) maverick; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: AUFS -- update to standalone 2.6.35-rcN as at 20100601 + - LP: #587888 + * ubuntu: AUFS -- track changes to the arguements to fop fsync() + + [ Leann Ogasawara ] + + * rebase to v2.6.35-rc1 + * [Config] update configs following rebase to v2.6.35-rc1 + * [Config] update port configs following rebase to v2.6.35-rc1 + * SAUCE: lirc: rename usb_buffer_alloc() and usb_buffer_free() + * SAUCE: ndiswrapper: rename usb_buffer_alloc() and usb_buffer_free() + * SAUCE: ndiswrapper: convert multicast list to list_head + * [Config] [FTBS] armel: Temporarily disable CONFIG_GPIO_JANZ_TTL + * [Config] [FTBS] ia64: Temporarily disable gpiolib + * [Config] [FTBS] ia64: Temporarily disable CONFIG_CEPH_FS + * [Config] [FTBS] sparc: Temporarily disable CONFIG_INFINIBAND_QIB + * [Config] [FTBS] sparc: Temporarily disable CONFIG_MFD_JANZ_CMODIO + * [Config] [FTBS] armel: Temporarily disable CONFIG_MFD_JANZ_CMODIO + * [Config] [FTBS] armel: Temporarily disable CONFIG_DT3155 + * [Config] [FTBS] sparc: Temporarily disable CONFIG_MTD_NAND_DENALI + * [Config] [FTBS] armel: Temporarily disable bnx2 + * [Config] [FTBS] armel: Temporarily disable CONFIG_SERIAL_UARTLITE + * SAUCE: [FTBS] armel: Don't include asm/agp.h for ttm + * SAUCE: [FTBS] armel: include linux/dma-mapping.h + * SAUCE: [FTBS] armel: replace omap_set_gpio_debounce with + gpio_set_debounce + + [ Upstream Kernel Changes ] + + * of/usb: fix build error due to of_node pointer move + * n2_crypto: Fix build after of_device/of_platform_driver changes. + * powerpc/fsl-booke: fix the case where we are not in the first page + * powerpc/fsl-booke: Move the entry setup code into a seperate file + * powerpc/kexec: Add support for FSL-BookE + * greth: Fix build after OF device conversions. + + [ Upstream changes ] + + * rebased to v2.6.35-rc1 + + -- Leann Ogasawara Fri, 04 Jun 2010 23:01:52 -0700 + +linux (2.6.35-1.0) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * Null entry. + + -- Leann Ogasawara Wed, 02 Jun 2010 15:17:41 -0700 + +linux (2.6.34-5.14) maverick; urgency=low + + [ Tim Gardner ] + + * [Config] Added module inclusion support + * [Config] Added virtual flavour module inclusion list and d-i package + definitions + + -- Leann Ogasawara Wed, 02 Jun 2010 12:58:14 -0700 + +linux (2.6.34-5.13) maverick; urgency=low + + [ Andy Whitcroft ] + + * Revert "ubuntu: AUFS -- aufs2 20091209" + * Revert "ubuntu: AUFS -- export various core functions + (aufs2-standalone.patch)" + * Revert "ubuntu: AUFS -- export various core functions + (aufs2-base.patch)" + * ubuntu: AUFS -- aufs2 base patch for linux-2.6.34 + - LP: #587888 + * ubuntu: AUFS -- aufs2 standalone patch for linux-2.6.34 + - LP: #587888 + * ubuntu: AUFS -- update to standalone 2.6.34 as at 20100601 + - LP: #587888 + * [Config] AUFS -- enable aufs options + - LP: #587888 + + -- Leann Ogasawara Tue, 01 Jun 2010 08:56:43 -0700 + +linux (2.6.34-5.12) maverick; urgency=low + + [ Andy Whitcroft ] + + * enforce -- ensure SYSFS compatibility is disabled + + [ Chase Douglas ] + + * build with libdw-dev for perf probe symbol support + * maverick ftrace configuration changes + + [ Kees Cook ] + + * Revert "SAUCE: x86: brk away from exec rand area" + * Revert "SAUCE: [um] Don't use nx_enabled under UML" + * Revert "SAUCE: [x86] implement cs-limit nx-emulation for ia32" + * SAUCE: x86: implement cs-limit nx-emulation for ia32 + - LP: #369978 + * SAUCE: x86: more tightly confine cs-limit nx-emulation to ia32 only + * SAUCE: x86: brk away from exec rand area + - LP: #452175 + * SAUCE: ptrace: restrict ptrace scope to children + + [ Leann Ogasawara ] + + * Add new omap flavour to getabis + * [Config] Enable CONFIG_FRAMEBUFFER_CONSOLE=y for all archs + - LP: #585490 + * build/modules: Temorarily add ignore.modules + * ubuntu: iscsitarget -- version 1.4.20.1 + + [ Loïc Minier ] + + * SAUCE: [um] Don't use nx_enabled under UML + - LP: #524849 + + -- Leann Ogasawara Fri, 28 May 2010 08:27:17 -0700 + +linux (2.6.34-4.11) maverick; urgency=low + + [ Amit Kucheria ] + + * SAUCE: omap: remove calls to usb_nop_xceiv_register from board files + * [Config] Add support for OMAP-mainline flavour + + [ Andy Whitcroft ] + + * SAUCE: powerpc: fix compile error when ptrace.h is included from + userspace + - LP: #583733 + + [ Chase Douglas ] + + * Revert "SAUCE: Don't register vga16fb framebuffer if other framebuffers + are present" + * Revert "SAUCE: Disable function tracing after hitting __schedule_bug" + * Revert "SAUCE: drm/i915: don't change DRM configuration when releasing + load detect pipe" + + [ Kees Cook ] + + * SAUCE: fs: block cross-uid sticky symlinks + * SAUCE: fs: block hardlinks to non-accessible sources + + [ Koen Kooi ] + + * SAUCE: board-omap3-beagle: add DSS2 support + + [ Leann Ogasawara ] + + * Revert "staging/go7007 -- disable" + * Revert "[Config] staging/winbond -- disable" + * Revert "Disable 4MB page tables for Atom, work around errata AAE44" + * Revert "SAUCE: sync before umount to reduce time taken by ext4 umount" + * Revert "SAUCE: Enable an e1000e Intel Corporation 82567 Gigabit + controller" + * Revert "SAUCE: Fix MODULE_IMPORT/MODULE_EXPORT" + * Revert "SAUCE: Created MODULE_EXPORT/MODULE_IMPORT macros" + * Revert "SAUCE: input/mouse/alps: Do not call psmouse_reset() for alps" + * Revert "SAUCE: r8169: disable TSO by default for RTL8111/8168B + chipsets." + * Revert "[Upstream] b43: Declare all possible firmware files." + * Revert "add Breaks: against hardy lvm2" + * Revert "SAUCE: Guest OS does not recognize a lun with non zero target + id on Vmware ESX Server" + * Revert "SAUCE: Catch nonsense keycodes and silently ignore" + * [Config] Enable CONFIG_ECRYPT_FS=y for ports + * [Config] Enable CONFIG_USB=y for armel and sparc + * [Config] Enable CONFIG_SCSI=y for ia64 and sparc + * [Config] Enable CONFIG_RFKILL=y for ports + * [Config] Enable CONFIG_ATH9K_DEBUGFS=y + * [Config] Enable CONFIG_IWMC3200TOP_DEBUGFS=y + * [Config] Enable CONFIG_RCU_FAST_NO_HZ=y + * [Config] Enable CONFIG_IWLWIFI_DEVICE_TRACING=y + * [Config] Enable CONFIG_LIBERTAS_MESH=y + * [Config] Enable CONFIG_MMC_RICOH_MMC=y + * [Config] CONFIG_RT2800USB_UNKNOWN=y + * [Config] Enable CONFIG_VGA_SWITCHEROO=y + * [Config] Enable CONFIG_CEPH_FS=m + * [Config] Enable CONFIG_CRYPTO_PCRYPT=m + * [Config] Enable CONFIG_EEEPC_WMI=m + * [Config] Enable CONFIG_RT2800PCI=m + * [Config] Enable CONFIG_SCSI_HPSA=m + * [Config] Enable CONFIG_VHOST_NET=m + * [Config] Disable CONFIG_SND_HDA_INPUT_BEEP_MODE by default + - LP: #582350 + * [Config] Disable CONFIG_SOUND_OSS* and CONFIG_SND_*OSS + - LP: #579300 + * [Config] Enable CONFIG_PCIEASPM=y + - LP: #333990 + * [Config] updateconfigs for OMAP flavour + + [ Loïc Minier ] + + * Enable perf tools on armel + + [ Tim Gardner ] + + * SAUCE: Updated ndiswrapper to 1.56 + - LP: #582555 + * [Config] Added virtual flavour + * [Config] Remove support for sub-flavours + * [Config] Removed amd64 preempt flavour + * [Config] updateconfigs, updateportsconfigs after flavour munging + + -- Leann Ogasawara Tue, 25 May 2010 09:34:55 -0700 + +linux (2.6.34-3.10) maverick; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.34 + + [ Upstream changes ] + + * rebased to v2.6.34 + + -- Leann Ogasawara Tue, 18 May 2010 17:35:35 -0700 + +linux (2.6.34-2.9) maverick; urgency=low + + [ Leann Ogasawara ] + + * [Config] [FTBS] Disable comedi for armel + + -- Leann Ogasawara Thu, 13 May 2010 23:20:55 +0200 + +linux (2.6.34-2.8) maverick; urgency=low + + [ Leann Ogasawara ] + + * Drop lpia + * [Config] [FTBS] disable KVM + * [Config] [FTBS] disable ipr for armel + + -- Leann Ogasawara Thu, 13 May 2010 16:07:52 +0200 + +linux (2.6.34-2.7) maverick; urgency=low + + [ Leann Ogasawara ] + + * [Config] disable CONFIG_SCSI_IPR on powerpc + * [Config] Remove 386 flavour per UDS discussion + + -- Leann Ogasawara Wed, 12 May 2010 18:26:43 +0200 + +linux (2.6.34-1.6) maverick; urgency=low + + [ Chase Douglas ] + + * enforce CONFIG_TMPFS_POSIX_ACL=y + - LP: #575940 + * don't force module dependency checking + - LP: #577029 + + [ Kees Cook ] + + * SAUCE: mmap_min_addr check CAP_SYS_RAWIO only for write + - LP: #568844 + + [ Leann Ogasawara ] + + * Revert "SAUCE: ata: blacklist FUJITSU MHW2160BH PL" + * rebase to v2.6.34-rc7 + * [Config] update configs following rebase to v2.6.34-rc7 + * [Config] update port configs following rebase to v2.6.34-rc7 + * Add btrfs to the udebs + + [ Tim Gardner ] + + * [Config] Add atl1c to nic-modules udeb + - LP: #557130 + + [ Upstream changes ] + + * rebased to v2.6.34-rc7 + + -- Leann Ogasawara Tue, 11 May 2010 11:29:08 +0200 + +linux (2.6.34-1.5) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.34-rc6 + * [Config] update configs following rebase to v2.6.34-rc6 + * [Config] update port configs following rebase to v2.6.34-rc6 + + [ Upstream changes ] + + * rebased to v2.6.34-rc6 + + -- Leann Ogasawara Fri, 30 Apr 2010 15:54:05 +0100 + +linux (2.6.34-1.4) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.34-rc5 + * [Config] update ports configs following rebase to v2.6.34-rc5 + + [ Upstream changes ] + + * rebased to v2.6.34-rc5 + + -- Leann Ogasawara Thu, 22 Apr 2010 15:36:12 -0700 + +linux (2.6.34-1.3) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.34-rc4 + * [Config] update configs following rebase to v2.6.34-rc4 + * [Config] update port configs following rebase to v2.6.34-rc4 + * ubuntu: dm-raid4-5 -- update to compile with 2.6.34-rc4 + + [ Upstream changes ] + + * rebased to v2.6.34-rc4 + + -- Leann Ogasawara Tue, 13 Apr 2010 18:33:44 -0700 + +linux (2.6.34-1.2) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * Temorarily disable building linux-doc + * rebase to v2.6.34-rc3 + * [Config] update configs following rebase to v2.6.34-rc3 + * [Config] update port configs following rebase to v2.6.34-rc3 + + [ Upstream changes ] + + * rebased to v2.6.34-rc3 + + -- Leann Ogasawara Tue, 30 Mar 2010 16:55:44 -0700 + +linux (2.6.34-1.1) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.34-rc2 + * ubuntu: dm-raid4-5 -- update to compile with 2.6.34-rc2 + * [Config] update port configs following rebase to v2.6.34-rc2 + * [Config] update configs following rebase to v2.6.34-rc2 + + [ Upstream changes ] + + * rebased to v2.6.34-rc2 + + -- Leann Ogasawara Wed, 24 Mar 2010 23:00:39 -0700 + +linux (2.6.33-1.1) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * ubuntu: dm-raid4-5 -- update to compile with 2.6.33 + * ubuntu: lirc -- drop explicit include of linux/autoconf.h + * ubuntu: lirc -- pass kfifo to kfifo_alloc and move spinlock + * ubuntu: lirc -- rename kfifo_put and kfifo_get + * ubuntu: iscsitarget -- rename daddr inet_sock field + * rebased to v2.6.33 + * [Config] update configs following rebase to v2.6.33 + * [Config] update ports configs following rebase to v2.6.33 + + [ Upstream changes ] + + * rebased to v2.6.33 + + -- Leann Ogasawara Tue, 23 Mar 2010 03:55:46 -0700 + +linux (2.6.33-0.0) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * Null entry. + + -- Leann Ogasawara Wed, 17 Mar 2010 07:48:56 -0700 + +linux (2.6.32-16.25) lucid; urgency=low + + [ Andy Whitcroft ] + + * linux-tools -- move to Suggests: with explicit seeding + - LP: #534635 + + [ Tim Gardner ] + + * [Config] CONFIG_HID=m + + [ Upstream Kernel Changes ] + + * (pre-stable) sched: Fix SMT scheduler regression in + find_busiest_queue() + * KVM: introduce kvm_vcpu_on_spin + * KVM: VMX: Add support for Pause-Loop Exiting + + -- Andy Whitcroft Tue, 09 Mar 2010 14:13:51 +0000 + +linux (2.6.32-16.24) lucid; urgency=low + + [ Andy Whitcroft ] + + * armel -- perf userspace does not support arm + * ia64 -- libelf-dev/binutils-dev to not provide necessary libraries + + -- Andy Whitcroft Sat, 06 Mar 2010 11:42:12 +0000 + +linux (2.6.32-16.23) lucid; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: PM report driver and device suspend/resume times -- move config + * update to standards version 3.8.4.0 + * printenv -- expose all of the package selectors + * source package -- cleanup source content control + * doc package -- ensure we do build package content on buildd + * lintian -- correct the address in the debian/copyright + * lintian -- update debhelper package version dependancy + * lintian -- fix ghostscript dependancy + * lintian -- add required misc:Depends + * lintian -- move our debhelper compat level to debian/compat + * perf -- build the kernel carried tools + * perf -- add linux-tools carrying the version switches and manuals + * SAUCE: fix up Kconfig for staging drivers + * [Config] enable NOUVEAU etc following drm backport + * update DRM to mainline v2.6.33 + * [Config] Remove AppArmor config options that no longer exist (ports) + * [Config] updateportsconfigs following drm update + + [ John Johansen ] + + * ubuntu: AppArmor -- update to mainline 2010-03-04 + * SAUCE: AppArmor: Reintroduce AppArmor 2.4 compatibility + * SAUCE: AppArmor: replace strim with strstrip for 2.6.32 kernels + * [Config] Remove AppArmor config options that no longer exist + + [ Manoj Iyer ] + + * ubuntu: rtl8192se -- version 2010-0115,0014 + - LP: #530275 + * [Config] added CONFIG_RTL8192SE module. + - LP: #530275 + + [ Tim Gardner ] + + * [Config] Added vmw_pvscsi to d-i/scsi-modules + - LP: #531017 + * [Upstream] netfilter: xt_recent: Add an entry reaper + + [ Upstream Kernel Changes ] + + * Revert "KVM: x86 emulator: Check CPL level during privilege instruction + emulation" + * Revert "KVM: x86 emulator: Fix popf emulation" + * Revert "KVM: x86 emulator: Check IOPL level during io instruction + emulation" + * Revert "KVM: x86 emulator: Add Virtual-8086 mode of emulation" + * Revert "KVM: fix memory access during x86 emulation." + * Add vlan (8021.Q) module package for d-i. + * (pre-stable) drm/i915: blacklist lid status: Sony VGN-BX196VP, Dell + Inspiron 700m + - LP: #515246 + * [Upstream] docbook: need xmldoclinks for all doc types + * x86: set_personality_ia32() misses force_personality32 + * lib: Introduce generic list_sort function + * drm/nv50: Implement ctxprog/state generation. + * drm/nv50: Remove redundant/incorrect ctxvals initialisation. + * (pre-stable) drm/i915: blacklist lid status: Sony VGN-BX196VP, Dell + Inspiron 700m + - LP: #515246 + + -- Andy Whitcroft Fri, 05 Mar 2010 15:40:38 +0000 + +linux (2.6.32-15.22) lucid; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Config] added new config option CONFIG_SR_REPORT_TIME_LIMIT" + * Revert "SAUCE: PM report driver and device suspend/resume times." + * [Config] set CONFIG_SR_REPORT_TIME_LIMIT + + [ Manoj Iyer ] + + * SAUCE: PM report driver and device suspend/resume times. + + -- Andy Whitcroft Tue, 02 Mar 2010 01:35:37 +0000 + +linux (2.6.32-15.21) lucid; urgency=low + + [ Andy Whitcroft ] + + * Revert "(pre-stable) drm/i915: Increase fb alignment to 64k" + * Revert "[Config] lenovo-sl-laptop -- enable" + * Revert "ubuntu: lenovo-sl-laptop -- git tip (b19a08f81f)" + * armel -- cramfs module will no longer be built + * d-i -- make all modules optional + * rename the debug packages to match archive standard + - LP: #527837 + * lenovo-sl-laptop is no longer built + + [ Colin Ian King ] + + * Disable 4MB page tables for Atom, work around errata AAE44 + - LP: #523112 + + [ Colin Watson ] + + * ubuntu: dm-raid4-5: Depend on XOR_BLOCKS + * ubuntu: fsam7400: Depend on CHECK_SIGNATURE + + [ Jesse Barnes ] + + * SAUCE: drm/i915: don't change DRM configuration when releasing load + detect pipe + - LP: #488328 + + [ Loïc Minier ] + + * [Config] armel Update versatile initrd configs + - LP: #524893 + * SAUCE: [um] Don't use nx_enabled under UML + - LP: #524849 + + [ Manoj Iyer ] + + * [Config] added new config option CONFIG_SR_REPORT_TIME_LIMIT + + [ Mario Limonciello ] + + * SAUCE: v3 - Add Dell Business Class Netbook LED driver + + [ Rafael J. Wysocki ] + + * SAUCE: PM report driver and device suspend/resume times. + + [ Surbhi Palande ] + + * Revert "[Upstream] e1000e: enhance frame fragment detection" + - CVE-2009-4538 + * Revert "[Upstream] e1000: enhance frame fragment detection" + - CVE-2009-4536 + + [ Tim Gardner ] + + * [Config] Enabled CONFIG_LEDS_DELL_NETBOOKS=m + * SAUCE: (pre-stable) netfilter: xt_recent: fix buffer overflow + * SAUCE: (pre-stable) netfilter: xt_recent: fix false match + + [ Upstream Kernel Changes ] + + * Revert "(pre-stable) eCryptfs: Add getattr function" + * Fix potential crash with sys_move_pages + * futex_lock_pi() key refcnt fix + * futex: Handle user space corruption gracefully + * futex: Handle futex value corruption gracefully + * Fix race in tty_fasync() properly + * hwmon: (w83781d) Request I/O ports individually for probing + * hwmon: (lm78) Request I/O ports individually for probing + * hwmon: (adt7462) Wrong ADT7462_VOLT_COUNT + * ALSA: ctxfi - fix PTP address initialization + * drm/i915: disable hotplug detect before Ironlake CRT detect + * drm/i915: enable self-refresh on 965 + * drm/i915: Disable SR when more than one pipe is enabled + * drm/i915: Fix DDC on some systems by clearing BIOS GMBUS setup. + * drm/i915: Add HP nx9020/SamsungSX20S to ACPI LID quirk list + * drm/i915: Fix the incorrect DMI string for Samsung SX20S laptop + * drm/i915: Add MALATA PC-81005 to ACPI LID quirk list + * usb: r8a66597-hcd: Flush the D-cache for the pipe-in transfer buffers. + * i2c-tiny-usb: Fix on big-endian systems + * drm/i915: handle FBC and self-refresh better + * drm/i915: Increase fb alignment to 64k + * drm/i915: Update write_domains on active list after flush. + * regulator: Fix display of null constraints for regulators + * ALSA: hda-intel: Avoid divide by zero crash + * CPUFREQ: Fix use after free of struct powernow_k8_data + * freeze_bdev: don't deactivate successfully frozen MS_RDONLY sb + * cciss: Make cciss_seq_show handle holes in the h->drv[] array + * ioat: fix infinite timeout checking in ioat2_quiesce + * resource: add helpers for fetching rlimits + * fs/exec.c: restrict initial stack space expansion to rlimit + * cifs: fix length calculation for converted unicode readdir names + * NFS: Fix a reference leak in nfs_wb_cancel_page() + * NFS: Try to commit unstable writes in nfs_release_page() + * NFSv4: Don't allow posix locking against servers that don't support it + * NFSv4: Ensure that the NFSv4 locking can recover from stateid errors + * NFS: Fix an Oops when truncating a file + * NFS: Fix a umount race + * NFS: Fix a bug in nfs_fscache_release_page() + * NFS: Fix the mapping of the NFSERR_SERVERFAULT error + * md: fix 'degraded' calculation when starting a reshape. + * V4L/DVB: dvb-core: fix initialization of feeds list in demux filter + * Export the symbol of getboottime and mmonotonic_to_bootbased + * kvmclock: count total_sleep_time when updating guest clock + * KVM: PIT: control word is write-only + * tpm_infineon: fix suspend/resume handler for pnp_driver + * amd64_edac: Do not falsely trigger kerneloops + * netfilter: nf_conntrack: fix memory corruption with multiple namespaces + * netfilter: nf_conntrack: per netns nf_conntrack_cachep + * netfilter: nf_conntrack: restrict runtime expect hashsize modifications + * netfilter: xtables: compat out of scope fix + * netfilter: nf_conntrack: fix hash resizing with namespaces + * drm/i915: remove full registers dump debug + * drm/i915: add i915_lp_ring_sync helper + * drm/i915: Don't wait interruptible for possible plane buffer flush + * dasd: remove strings from s390dbf + * crypto: padlock-sha - Add import/export support + * wmi: Free the allocated acpi objects through wmi_get_event_data + * dell-wmi, hp-wmi, msi-wmi: check wmi_get_event_data() return value + * /dev/mem: introduce size_inside_page() + * devmem: check vmalloc address on kmem read/write + * devmem: fix kmem write bug on memory holes + * SCSI: mptfusion : mptscsih_abort return value should be SUCCESS instead + of value 0. + * sh: Couple kernel and user write page perm bits for CONFIG_X2TLB + * ALSA: hda - use WARN_ON_ONCE() for zero-division detection + * dst: call cond_resched() in dst_gc_task() + * ALSA: hda - Improved MacBook (Pro) 5,1 / 5,2 support + * befs: fix leak + * rtc-fm3130: add missing braces + * Call flush_dcache_page after PIO data transfers in libata-sff.c + * ahci: add Acer G725 to broken suspend list + * pktgen: Fix freezing problem + * x86/amd-iommu: Fix IOMMU-API initialization for iommu=pt + * x86/amd-iommu: Fix deassignment of a device from the pt_domain + * x86: Re-get cfg_new in case reuse/move irq_desc + * Staging: fix rtl8187se compilation errors with mac80211 + * ALSA: usb-audio - Avoid Oops after disconnect + * serial: 8250: add serial transmitter fully empty test + * sysfs: sysfs_sd_setattr set iattrs unconditionally + * class: Free the class private data in class_release + * USB: usbfs: only copy the actual data received + * USB: usbfs: properly clean up the as structure on error paths + * rtl8187: Add new device ID + * ACPI: Add NULL pointer check in acpi_bus_start + * ACPI: fix High cpu temperature with 2.6.32 + * drm/radeon/kms: use udelay for short delays + * NFS: Too many GETATTR and ACCESS calls after direct I/O + * eCryptfs: Add getattr function + * b43: Fix throughput regression + * ath9k: Fix sequence numbers for PAE frames + * mac80211: Fix probe request filtering in IBSS mode + * iwlwifi: Fix to set correct ht configuration + * dm stripe: avoid divide by zero with invalid stripe count + * dm log: userspace fix overhead_size calcuations + * Linux 2.6.32.9 + * sfc: Fix SFE4002 initialisation + * sfc: Fix sign of efx_mcdi_poll_reboot() error in efx_mcdi_poll() + * sfc: SFE4002/SFN4112F: Widen temperature and voltage tolerances + * (pre-stable) HID: handle joysticks with large number of buttons + - LP: #492056 + * (pre-stable) HID: extend mask for BUTTON usage page + - LP: #492056 + * PM: Measure device suspend and resume times + * e1000: enhance frame fragment detection + - CVE-2009-4536 + * e1000e: enhance frame fragment detection + - CVE-2009-4538 + * KVM: fix memory access during x86 emulation. + - CVE-2010-0306 + * KVM: x86 emulator: Add Virtual-8086 mode of emulation + - CVE-2010-0306 + * KVM: x86 emulator: Check IOPL level during io instruction emulation + - CVE-2010-0306 + * KVM: x86 emulator: Fix popf emulation + - CVE-2010-0306 + * KVM: x86 emulator: Check CPL level during privilege instruction + emulation + - CVE-2010-0306 + * Input: wacom - ensure the device is initialized properly upon resume + * Input: wacom - add defines for packet lengths of various devices + * Input: wacom - add support for new LCD tablets + - LP: #516777 + + -- Andy Whitcroft Mon, 01 Mar 2010 22:56:28 +0000 + +linux (2.6.32-14.20) lucid; urgency=low + + [ Andy Whitcroft ] + + * rebuild following the GCC update to match compiler for out of tree modules + * Revert "[Config] drbd -- enable" + * Revert "ubuntu: drbd -- version 8.3.1" + * SAUCE: khubd -- switch USB product/manufacturer/serial handling to RCU + - LP: #510937 + + -- Andy Whitcroft Fri, 19 Feb 2010 18:47:18 +0000 + +linux (2.6.32-14.19) lucid; urgency=low + + [ Andy Whitcroft ] + + * ensure we build the source package contents when enabled + - LP: #522308 + * [Config] enable CONFIG_X86_MCE_XEON75XX + * SAUCE: AppArmor -- add linux/kref.h for struct kref + * [Config] enable CONFIG_HID_ORTEK + * enable udeb generation for arm versatile flavour + - LP: #522515 + + [ John Johansen ] + + * ubuntu: AppArmor -- update to mainline 2010-02-18 + - LP: #439560, #496110, #507069 + + [ Johnathon Harris ] + + * SAUCE: HID: add support for Ortek WKB-2000 + - LP: #405390 + + [ Upstream Kernel Changes ] + + * tpm_tis: TPM_STS_DATA_EXPECT workaround + - LP: #490487 + * x86, mce: Xeon75xx specific interface to get corrected memory error + information + * x86, mce: Rename cpu_specific_poll to mce_cpu_specific_poll + * x86, mce: Make xeon75xx memory driver dependent on PCI + * drm/edid: Unify detailed block parsing between base and extension + blocks + - LP: #500999 + * (pre-stable) eCryptfs: Add getattr function + - LP: #390833 + + -- Andy Whitcroft Thu, 18 Feb 2010 19:22:02 +0000 + +linux (2.6.32-13.18) lucid; urgency=low + + [ Andy Whitcroft ] + + * Revert "enforcer -- make the enforcement configuration common" + * Revert "(pre-stable) Input: ALPS - add interleaved protocol support + (Dell E6x00 series)" + * Revert "(pre-stable) driver-core: fix devtmpfs crash on s390" + * Revert "(pre-stable) Driver-Core: devtmpfs - set root directory mode to + 0755" + * Revert "SAUCE: Adds support for COMPAL JHL90 webcam" + * Revert "SAUCE: fix kernel oops in VirtualBox during paravirt patching" + * Revert "SAUCE: make fc transport removal of target configurable" + * enforcer -- make the enforcement configuration common + * getabis -- add preempt flavour to the list + * [Config] enforce DEVTMPFS options + * [Config] armel -- cleanup to-be builtin modules + * [Config] cleanup ports configs + * [Config] enable CRYPTO_GHASH_CLMUL_NI_INTEL + - LP: #485536 + * add printdebian target to find branch target + * distclean -- do not remove debian.env + * [Config] generic-pae switch to M586TSC + - LP: #519448 + * git-ubuntu-log -- commonise duplicated log handling + * git-ubuntu-log -- tighten up Bug: NNNN matching + * git-ubuntu-log -- sort the bug numbers + + [ Chris Wilson ] + + * (pre-stable) drm/i915: Increase fb alignment to 64k + - LP: #404064 + + [ Eric Miao ] + + * arm -- enable ubuntu/ directory + + [ Huang Ying ] + + * SAUCE: crypto: ghash - Add PCLMULQDQ accelerated implementation + * SAUCE: crypto: ghash-intel - Fix building failure on x86_32 + + [ Loïc Minier ] + + * [Config] cleanup preempt configuration + * [Config] versatile: Fix video output + - LP: #517594 + * [Config] armel DEFAULT_MMAP_MIN_ADDR=32768 + * [Config] Large update to armel/versatile + * [Config] versatile: Add RTC support + * [Config] armel: Enable NEON + * [Config] versatile: Builtin MMC support + * [Config] versatile Builtin SCSI controller + * [Config] armel Disable dma_cache_sync callers + * [Config] armel Disable asm/time.h users + * [Config] armel Disable out of range udelay() + * [Config] armel Disable flush_cache_range() users + * [Config] armel -- Enable ubuntu/ drivers + + [ Steve Conklin ] + + * SAUCE: drm/i915: Add display hotplug event on Ironlake + * SAUCE: drm/i915: Add ACPI OpRegion support for Ironlake + + [ Upstream Kernel Changes ] + + * Revert "[Upstream]: oprofile/x86: add Xeon 7500 series support" + * Revert "Revert "[Bluetooth] Eliminate checks for impossible conditions + in IRQ handler"" + * clockevent: Don't remove broadcast device when cpu is dead + * clockevents: Add missing include to pacify sparse + * ACPI: don't cond_resched if irq is disabled + * be2net: Add support for next generation of BladeEngine device. + * be2net: Add the new PCI IDs to PCI_DEVICE_TABLE. + * mpt2sas: New device SAS2208 support is added + * ar9170: Add support for D-Link DWA 160 A2 + * powerpc/fsl: Add PCI device ids for new QoirQ chips + * davinci: dm646x: Add support for 3.x silicon revision + * Input: ALPS - add interleaved protocol support (Dell E6x00 series) + * Driver-Core: devtmpfs - set root directory mode to 0755 + * driver-core: fix devtmpfs crash on s390 + * vfs: get_sb_single() - do not pass options twice + * ALSA: hda - Add PCI IDs for Nvidia G2xx-series + * V4L/DVB (13569): smsusb: add autodetection support for five additional + Hauppauge USB IDs + * USB: mos7840: add device IDs for B&B electronics devices + * USB: ftdi_sio: add USB device ID's for B&B Electronics line + * V4L/DVB (13168): Add support for Asus Europa Hybrid DVB-T card (SAA7134 + SubVendor ID: 0x1043 Device ID: 0x4847) + * iTCO_wdt: Add support for Intel Ibex Peak + * atl1c:use common_task instead of reset_task and link_chg_task + * atl1e:disable NETIF_F_TSO6 for hardware limit + * V4L/DVB (13680a): DocBook/media: copy images after building HTML + * V4L/DVB (13680b): DocBook/media: create links for included sources + * netfilter: xtables: fix conntrack match v1 ipt-save output + * partitions: read whole sector with EFI GPT header + * partitions: use sector size for EFI GPT + * ALSA: ice1724 - Patch for suspend/resume for ESI Juli@ + * sched: Fix isolcpus boot option + * sched: Fix missing sched tunable recalculation on cpu add/remove + * nohz: Prevent clocksource wrapping during idle + * nfsd: Fix sort_pacl in fs/nfsd/nf4acl.c to actually sort groups + * timers, init: Limit the number of per cpu calibration bootup messages + * PCI: Always set prefetchable base/limit upper32 registers + * iscsi class: modify handling of replacement timeout + * NFS: Revert default r/wsize behavior + * HID: fixup quirk for NCR devices + * scsi_devinfo: update Hitachi entries (v2) + * scsi_dh: create sysfs file, dh_state for all SCSI disk devices + * scsi_transport_fc: remove invalid BUG_ON + * lpfc: fix hang on SGI ia64 platform + * libfc: fix typo in retry check on received PRLI + * libfc: fix ddp in fc_fcp for 0 xid + * fcoe: remove redundant checking of netdev->netdev_ops + * libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + * libfc: lport: fix minor documentation errors + * libfc: don't WARN_ON in lport_timeout for RESET state + * fcoe: initialize return value in fcoe_destroy + * libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in fc_fcp_send_data + * libfc: fix memory corruption caused by double frees and bad error + handling + * libfc: fix free of fc_rport_priv with timer pending + * libfc: remote port gets stuck in restart state without really + restarting + * fcoe, libfc: fix an libfc issue with queue ramp down in libfc + * fcoe: Fix checking san mac address + * fcoe: Fix getting san mac for VLAN interface + * qlge: Remove explicit setting of PCI Dev CTL reg. + * qlge: Set PCIE max read request size. + * qlge: Don't fail open when port is not initialized. + * qlge: Add handler for DCBX firmware event. + * qlge: Bonding fix for mode 6. + * PCI: AER: fix aer inject result in kernel oops + * DMI: allow omitting ident strings in DMI tables + * Input: i8042 - remove identification strings from DMI tables + * Input: i8042 - add Gigabyte M1022M to the noloop list + * Input: i8042 - add Dritek quirk for Acer Aspire 5610. + * ALSA: hda - select IbexPeak handler for Calpella + * ALSA: hda - Fix quirk for Maxdata obook4-1 + * ALSA: hda - Add missing Line-Out and PCM switches as slave + * iTCO_wdt.c - cleanup chipset documentation + * iTCO_wdt: add PCI ID for the Intel EP80579 (Tolapai) SoC + * iTCO_wdt: Add Intel Cougar Point and PCH DeviceIDs + * ahci: disable SNotification capability for ich8 + * ata_piix: fix MWDMA handling on PIIX3 + * md: fix small irregularity with start_ro module parameter + * V4L/DVB (13826): uvcvideo: Fix controls blacklisting + * cio: fix double free in case of probe failure + * cio: dont panic in non-fatal conditions + * netiucv: displayed TX bytes value much too high + * ipc ns: fix memory leak (idr) + * ALSA: hda - Fix HP T5735 automute + * hwmon: (fschmd) Fix a memleak on multiple opens of /dev/watchdog + * UBI: fix memory leak in update path + * UBI: initialise update marker + * ASoC: fix a memory-leak in wm8903 + * mac80211: check that ieee80211_set_power_mgmt only handles STA + interfaces. + * cfg80211: fix channel setting for wext + * KVM: S390: fix potential array overrun in intercept handling + * KVM: only allow one gsi per fd + * KVM: Fix race between APIC TMR and IRR + * KVM: MMU: bail out pagewalk on kvm_read_guest error + * KVM: x86: Fix host_mapping_level() + * KVM: x86: Fix probable memory leak of vcpu->arch.mce_banks + * KVM: x86: Fix leak of free lapic date in kvm_arch_vcpu_init() + * KVM: fix lock imbalance in kvm_*_irq_source_id() + * KVM: only clear irq_source_id if irqchip is present + * IPoIB: Clear ipoib_neigh.dgid in ipoib_neigh_alloc() + * x86: Reenable TSC sync check at boot, even with NONSTOP_TSC + * ACPI: enable C2 and Turbo-mode on Nehalem notebooks on A/C + - LP: #516325 + * iwlwifi: Fix throughput stall issue in HT mode for 5000 + * fnctl: f_modown should call write_lock_irqsave/restore + * x86, msr/cpuid: Pass the number of minors when unregistering MSR and + CPUID drivers. + * Linux 2.6.32.7 + * scsi_lib: Fix bug in completion of bidi commands + * mptsas: Fix issue with chain pools allocation on katmai + * mm: add new 'read_cache_page_gfp()' helper function + * drm/i915: Selectively enable self-reclaim + * firewire: ohci: fix crashes with TSB43AB23 on 64bit systems + * S390: fix single stepped svcs with TRACE_IRQFLAGS=y + * x86: Set hotpluggable nodes in nodes_possible_map + * x86: Remove "x86 CPU features in debugfs" (CONFIG_X86_CPU_DEBUG) + * libata: retry FS IOs even if it has failed with AC_ERR_INVALID + * zcrypt: Do not remove coprocessor for error 8/72 + * dasd: fix possible NULL pointer errors + * ACPI: Add a generic API for _OSC -v2 + * ACPI: Add platform-wide _OSC support. + * ACPI: fix OSC regression that caused aer and pciehp not to load + * ACPI: Advertise to BIOS in _OSC: _OST on _PPC changes + * UBI: fix volume creation input checking + * e1000/e1000e: don't use small hardware rx buffers + * drm/i915: Reload hangcheck timer too for Ironlake + * Fix a leak in affs_fill_super() + * Fix failure exits in bfs_fill_super() + * fix oops in fs/9p late mount failure + * fix leak in romfs_fill_super() + * Fix remount races with symlink handling in affs + * fix affs parse_options() + * Fix failure exit in ipathfs + * mm: fix migratetype bug which slowed swapping + * FDPIC: Respect PT_GNU_STACK exec protection markings when creating + NOMMU stack + * Split 'flush_old_exec' into two functions + * sparc: TIF_ABI_PENDING bit removal + * x86: get rid of the insane TIF_ABI_PENDING bit + * Input: winbond-cir - remove dmesg spam + * x86: Disable HPET MSI on ATI SB700/SB800 + * iwlwifi: set default aggregation frame count limit to 31 + * drm/i915: only enable hotplug for detected outputs + * firewire: core: add_descriptor size check + * SECURITY: selinux, fix update_rlimit_cpu parameter + * regulator: Specify REGULATOR_CHANGE_STATUS for WM835x LED constraints + * x86: Add Dell OptiPlex 760 reboot quirk + - LP: #488319 + * x86: Add quirk for Intel DG45FC board to avoid low memory corruption + * x86/amd-iommu: Fix possible integer overflow + * clocksource: fix compilation if no GENERIC_TIME + * tcp: update the netstamp_needed counter when cloning sockets + * sky2: Fix oops in sky2_xmit_frame() after TX timeout + * net: restore ip source validation + * af_packet: Don't use skb after dev_queue_xmit() + * ax25: netrom: rose: Fix timer oopses + * KVM: allow userspace to adjust kvmclock offset + * oprofile/x86: add Xeon 7500 series support + * oprofile/x86: fix crash when profiling more than 28 events + * libata: retry link resume if necessary + * mm: percpu-vmap fix RCU list walking + * mm: purge fragmented percpu vmap blocks + * block: fix bio_add_page for non trivial merge_bvec_fn case + * Fix 'flush_old_exec()/setup_new_exec()' split + * random: drop weird m_time/a_time manipulation + * random: Remove unused inode variable + * block: fix bugs in bio-integrity mempool usage + * usb: r8a66597-hdc disable interrupts fix + * connector: Delete buggy notification code. + * be2net: Bug fix to support newer generation of BE ASIC + * be2net: Fix memset() arg ordering. + * mm: flush dcache before writing into page to avoid alias + * mac80211: fix NULL pointer dereference when ftrace is enabled + * imxfb: correct location of callbacks in suspend and resume + * mx3fb: some debug and initialisation fixes + * starfire: clean up properly if firmware loading fails + * kernel/cred.c: use kmem_cache_free + * uartlite: fix crash when using as console + * pktcdvd: removing device does not remove its sysfs dir + * ath9k: fix eeprom INI values override for 2GHz-only cards + * ath9k: fix beacon slot/buffer leak + * powerpc: TIF_ABI_PENDING bit removal + * NET: fix oops at bootime in sysctl code + * Linux 2.6.32.8 + + -- Andy Whitcroft Wed, 10 Feb 2010 18:56:52 +0000 + +linux (2.6.32-12.17) lucid; urgency=low + + [ Andy Whitcroft ] + + * restore linux-image prefix -- master + * enforce -- we require SELINUX enabled -- master + * enforce -- ensure APPARMOR is our default LSM -- master + * make doc package completely optional -- master + * make source package completely optional -- master + * make linux-libc-dev completly optional -- master + * convert package disable to a deps list -- master + * allow common headers to switch from indep to arch -- master + * convert binary package disable to a deps list -- master + * add configuration option for a full source build tree -- master + * add support for uImage kernels in package control scripts + * getabis -- cleanup and parameterise repository list -- master + * getabis -- move configuration to etc/getabi -- master + * kernelconfig -- move configuration to etc -- master + * rules -- make debian/debian.env master for branch name + * set the current branch name -- master + * pull back common debian.master files into debian -- master + * enforcer -- make the enforcement configuration common + * insert-changes -- correctly link to debian/rules in DROOT + + [ Colin Watson ] + + * future-proof ddeb handling against buildd changes + + [ Eric Miao ] + + * SAUCE: Make CONFIG_{OMNIBOOK, AVERATEC_5100P, PACKARDBELL_E5} depend on + X86 + + [ Loïc Minier ] + + * Add modules.builtin.bin to prerm rm list + - LP: #516584 + + [ Tim Gardner ] + + * [Config] Implement the amd64 preempt flavour + + [ Upstream Kernel Changes ] + + * syslog: distinguish between /proc/kmsg and syscalls + - LP: #515623 + * sfc: Fix polling for slow MCDI operations + * sfc: Fix conditions for MDIO self-test + * sfc: QT202x: Remove unreliable MMD check at initialisation + * sfc: Add workspace for GMAC bug workaround to MCDI MAC_STATS buffer + * sfc: Use fixed-size buffers for MCDI NVRAM requests + + -- Andy Whitcroft Fri, 05 Feb 2010 07:09:31 +0000 + +linux (2.6.32-12.16) lucid; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: acpi battery -- delay first lookup of the battery until + first use" + * SAUCE: acpi battery -- move first lookup asynchronous + - LP: #507211 + * [Config] update configs to cleanup generic configs + * [Config] disable CONFIG_X86_CPU_DEBUG for amd64 + * [Config] enable USER_NS + - LP: #480739, #509808 + + [ Heiko Carstens ] + + * (pre-stable) driver-core: fix devtmpfs crash on s390 + - LP: #512370 + + [ John Johansen ] + + * [Config] for server and virtual flavours make CONFIG_SCSI_SYM53C8XX_2=y + - LP: #494565 + * [Config] VIRTIO=y for server/virtual flavours + - LP: #494565 + + [ Kay Sievers ] + + * (pre-stable) Driver-Core: devtmpfs - set root directory mode to 0755 + - LP: #512370 + + [ Kees Cook ] + + * SAUCE: x86: brk away from exec rand area + - LP: #452175 + + [ Leann Ogasawara ] + + * [Upstream] e1000: enhance frame fragment detection + - CVE-2009-4536 + * [Upstream] e1000e: enhance frame fragment detection + - CVE-2009-4538 + + [ Sebastian Kapfer ] + + * (pre-stable) Input: ALPS - add interleaved protocol support (Dell E6x00 + series) + - LP: #296610 + + [ Upstream Kernel Changes ] + + * inotify: do not reuse watch descriptors + - LP: #485556 + * inotify: only warn once for inotify problems + * revert "drivers/video/s3c-fb.c: fix clock setting for Samsung SoC + Framebuffer" + * memcg: ensure list is empty at rmdir + * drm/i915: remove loop in Ironlake interrupt handler + * block: Fix incorrect reporting of partition alignment + * x86, mce: Thermal monitoring depends on APIC being enabled + * futexes: Remove rw parameter from get_futex_key() + * page allocator: update NR_FREE_PAGES only when necessary + * x86, apic: use physical mode for IBM summit platforms + * edac: i5000_edac critical fix panic out of bounds + * x86: SGI UV: Fix mapping of MMIO registers + * mfd: WM835x GPIO direction register is not locked + * mfd: Correct WM835x ISINK ramp time defines + * ALSA: hda - Fix missing capture mixer for ALC861/660 codecs + * V4L/DVB (13868): gspca - sn9c20x: Fix test of unsigned. + * reiserfs: truncate blocks not used by a write + * HID: add device IDs for new model of Apple Wireless Keyboard + * PCI/cardbus: Add a fixup hook and fix powerpc + * Input: pmouse - move Sentelic probe down the list + * asus-laptop: add Lenovo SL hotkey support + * sched: Fix cpu_clock() in NMIs, on !CONFIG_HAVE_UNSTABLE_SCHED_CLOCK + * sparc64: Fix NMI programming when perf events are active. + * sparc64: Fix Niagara2 perf event handling. + * i2c: Do not use device name after device_unregister + * i2c/pca: Don't use *_interruptible + * serial/8250_pnp: add a new Fujitsu Wacom Tablet PC device + * sched: Fix task priority bug + * vfs: Fix vmtruncate() regression + * Linux 2.6.32.5 + * x86, msr/cpuid: Register enough minors for the MSR and CPUID drivers + * V4L/DVB (13900): gspca - sunplus: Fix bridge exchanges. + * Staging: asus_oled: fix oops in 2.6.32.2 + * Staging: hv: fix smp problems in the hyperv core code + * tty: fix race in tty_fasync + * ecryptfs: use after free + * ecryptfs: initialize private persistent file before dereferencing + pointer + * nozomi: quick fix for the close/close bug + * serial: 8250_pnp: use wildcard for serial Wacom tablets + * usb: serial: fix memory leak in generic driver + * USB: fix bitmask merge error + * USB: Don't use GFP_KERNEL while we cannot reset a storage device + * USB: EHCI: fix handling of unusual interrupt intervals + * USB: EHCI & UHCI: fix race between root-hub suspend and port resume + * USB: add missing delay during remote wakeup + * USB: add speed values for USB 3.0 and wireless controllers + * ACPI: EC: Accelerate query execution + * ACPI: EC: Add wait for irq storm + * SCSI: enclosure: fix oops while iterating enclosure_status array + * drm/i915: Read the response after issuing DDC bus switch command + * drm/i915: try another possible DDC bus for the SDVO device with + multiple outputs + * block: bdev_stack_limits wrapper + * DM: Fix device mapper topology stacking + * x86/PCI/PAT: return EINVAL for pci mmap WC request for !pat_enabled + * USB: fix usbstorage for 2770:915d delivers no FAT + * vmalloc: remove BUG_ON due to racy counting of VM_LAZY_FREE + * perf timechart: Use tid not pid for COMM change + * perf events: Dont report side-band events on each cpu for + per-task-per-cpu events + * perf: Honour event state for aux stream data + * Linux 2.6.32.6 + + -- Andy Whitcroft Wed, 27 Jan 2010 16:40:23 +0000 + +linux (2.6.32-11.15) lucid; urgency=low + + [ Andy Whitcroft ] + + * Revert "(pre-stable) drm/radeon/kms: fix crtc vblank update for r600" + * Revert "(pre-stable) sched: Fix balance vs hotplug race" + * Revert "[Upstream] acerhdf: Limit modalias matching to supported + boards" + * Revert "[Upstream] mmc: prevent dangling block device from accessing + stale queues" + * Revert "SAUCE: Fix nx_enable reporting" + * Revert "SAUCE: [x86] fix report of cs-limit nx-emulation" + * Revert "SAUCE: [x86] implement cs-limit nx-emulation for ia32" + * SAUCE: i915 -- disable powersave by default + - LP: #492392 + + [ Kees Cook ] + + * SAUCE: [x86] implement cs-limit nx-emulation for ia32 + - LP: #369978 + * SAUCE: [x86] fix report of cs-limit nx-emulation + - LP: #454285 + * SAUCE: Fix nx_enable reporting + - LP: #454285 + + [ Tim Gardner ] + + * [Upstream] b43: Declare all possible firmware files. + - LP: #488636 + * [Config] updateconfigs after adding pvscsi + - LP: #497156 + * [Config] CONFIG_BT=m + + [ Upstream Kernel Changes ] + + * Revert "x86: Side-step lguest problem by only building cmpxchg8b_emu + for pre-Pentium" + * SCSI: ipr: fix EEH recovery + * SCSI: qla2xxx: dpc thread can execute before scsi host has been added + * SCSI: st: fix mdata->page_order handling + * SCSI: fc class: fix fc_transport_init error handling + * sched: Fix task_hot() test order + * x86, cpuid: Add "volatile" to asm in native_cpuid() + * sched: Select_task_rq_fair() must honour SD_LOAD_BALANCE + * clockevents: Prevent clockevent_devices list corruption on cpu hotplug + * pata_hpt3x2n: fix clock turnaround + * pata_cmd64x: fix overclocking of UDMA0-2 modes + * ASoC: wm8974: fix a wrong bit definition + * sound: sgio2audio/pdaudiocf/usb-audio: initialize PCM buffer + * ALSA: hda - Fix missing capsrc_nids for ALC88x + * acerhdf: limit modalias matching to supported + - LP: #435958 + * ACPI: EC: Fix MSI DMI detection + * ACPI: Use the return result of ACPI lid notifier chain correctly + * powerpc: Handle VSX alignment faults correctly in little-endian mode + * ASoC: Do not write to invalid registers on the wm9712. + * drm/radeon: fix build on 64-bit with some compilers. + * USB: emi62: fix crash when trying to load EMI 6|2 firmware + * USB: option: support hi speed for modem Haier CE100 + * USB: Fix a bug on appledisplay.c regarding signedness + * USB: musb: gadget_ep0: avoid SetupEnd interrupt + * Bluetooth: Prevent ill-timed autosuspend in USB driver + * USB: rename usb_configure_device + * USB: fix bugs in usb_(de)authorize_device + * drivers/net/usb: Correct code taking the size of a pointer + * x86: SGI UV: Fix writes to led registers on remote uv hubs + * md: Fix unfortunate interaction with evms + * dma: at_hdmac: correct incompatible type for argument 1 of + 'spin_lock_bh' + * dma-debug: Do not add notifier when dma debugging is disabled. + * dma-debug: Fix bug causing build warning + * cifs: NULL out tcon, pSesInfo, and srvTcp pointers when chasing DFS + referrals + * x86/amd-iommu: Fix initialization failure panic + * ioat3: fix p-disabled q-continuation + * ioat2,3: put channel hardware in known state at init + * KVM: MMU: remove prefault from invlpg handler + * KVM: LAPIC: make sure IRR bitmap is scanned after vm load + * Libertas: fix buffer overflow in lbs_get_essid() + * iwmc3200wifi: fix array out-of-boundary access + * mac80211: fix propagation of failed hardware reconfigurations + * mac80211: fix WMM AP settings application + * mac80211: Fix IBSS merge + * cfg80211: fix race between deauth and assoc response + * ath5k: fix SWI calibration interrupt storm + * ath9k: wake hardware for interface IBSS/AP/Mesh removal + * ath9k: Fix TX queue draining + * ath9k: fix missed error codes in the tx status check + * ath9k: wake hardware during AMPDU TX actions + * ath9k: fix suspend by waking device prior to stop + * ath9k_hw: Fix possible OOB array indexing in gen_timer_index[] on + 64-bit + * ath9k_hw: Fix AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_BB and its shift value + in 0x4054 + * iwl3945: disable power save + * iwl3945: fix panic in iwl3945 driver + * iwlwifi: fix EEPROM/OTP reading endian annotations and a bug + * iwlwifi: fix more eeprom endian bugs + * iwlwifi: fix 40MHz operation setting on cards that do not allow it + * mac80211: fix race with suspend and dynamic_ps_disable_work + * NOMMU: Optimise away the {dac_,}mmap_min_addr tests + * 'sysctl_max_map_count' should be non-negative + * kernel/sysctl.c: fix the incomplete part of + sysctl_max_map_count-should-be-non-negative.patch + * V4L/DVB (13596): ov511.c typo: lock => unlock + * x86/ptrace: make genregs[32]_get/set more robust + * memcg: avoid oom-killing innocent task in case of use_hierarchy + * e100: Fix broken cbs accounting due to missing memset. + * ipv6: reassembly: use seperate reassembly queues for conntrack and + local delivery + * netfilter: fix crashes in bridge netfilter caused by fragment jumps + * hwmon: (sht15) Off-by-one error in array index + incorrect constants + * b43: avoid PPC fault during resume + * Keys: KEYCTL_SESSION_TO_PARENT needs TIF_NOTIFY_RESUME architecture + support + * sched: Fix balance vs hotplug race + * drm/radeon/kms: fix crtc vblank update for r600 + * drm: disable all the possible outputs/crtcs before entering KMS mode + * S390: dasd: support DIAG access for read-only devices + * xen: fix is_disconnected_device/exists_disconnected_device + * xen: improvement to wait_for_devices() + * xen: wait up to 5 minutes for device connetion + * orinoco: fix GFP_KERNEL in orinoco_set_key with interrupts disabled + * udf: Try harder when looking for VAT inode + * Add unlocked version of inode_add_bytes() function + * quota: decouple fs reserved space from quota reservation + * ext4: Convert to generic reserved quota's space management. + * ext4: fix sleep inside spinlock issue with quota and dealloc (#14739) + * x86, msr: Unify rdmsr_on_cpus/wrmsr_on_cpus + * cpumask: use modern cpumask style in drivers/edac/amd64_edac.c + * amd64_edac: unify MCGCTL ECC switching + * x86, msr: Add support for non-contiguous cpumasks + * x86, msr: msrs_alloc/free for CONFIG_SMP=n + * amd64_edac: fix driver instance freeing + * amd64_edac: make driver loading more robust + * amd64_edac: fix forcing module load/unload + * sched: Sched_rt_periodic_timer vs cpu hotplug + * ext4: Update documentation to correct the inode_readahead_blks option + name + * lguest: fix bug in setting guest GDT entry + * vmscan: do not evict inactive pages when skipping an active list scan + * ksm: fix mlockfreed to munlocked + * rt2x00: Disable powersaving for rt61pci and rt2800pci. + * generic_permission: MAY_OPEN is not write access + * Linux 2.6.32.3 + * untangle the do_mremap() mess + * fasync: split 'fasync_helper()' into separate add/remove functions + * ASoC: fix params_rate() macro use in several codecs + * modules: Skip empty sections when exporting section notes + * exofs: simple_write_end does not mark_inode_dirty + * nfsd: make sure data is on disk before calling ->fsync + * sunrpc: fix peername failed on closed listener + * SUNRPC: Fix up an error return value in + gss_import_sec_context_kerberos() + * SUNRPC: Fix the return value in gss_import_sec_context() + * sunrpc: on successful gss error pipe write, don't return error + * drm/i915: Update LVDS connector status when receiving ACPI LID event + * drm/i915: fix order of fence release wrt flushing + * drm/i915: Permit pinning whilst the device is 'suspended' + * drm: remove address mask param for drm_pci_alloc() + * drm/i915: Enable/disable the dithering for LVDS based on VBT setting + * drm/i915: Make the BPC in FDI rx/transcoder be consistent with that in + pipeconf on Ironlake + * drm/i915: Select the correct BPC for LVDS on Ironlake + * drm/i915: fix unused var + * rtc_cmos: convert shutdown to new pnp_driver->shutdown + * drivers/cpuidle/governors/menu.c: fix undefined reference to + `__udivdi3' + * cgroups: fix 2.6.32 regression causing BUG_ON() in cgroup_diput() + * lib/rational.c needs module.h + * dma-debug: allow DMA_BIDIRECTIONAL mappings to be synced with + DMA_FROM_DEVICE and + * kernel/signal.c: fix kernel information leak with print-fatal-signals=1 + * mmc_block: add dev_t initialization check + * mmc_block: fix probe error cleanup bug + * mmc_block: fix queue cleanup + * ALSA: hda - Fix ALC861-VD capture source mixer + * ALSA: ac97: Add Dell Dimension 2400 to Headphone/Line Jack Sense + blacklist + * ALSA: atiixp: Specify codec for Foxconn RC4107MA-RS2 + - LP: #498863 + * ASoC: Fix WM8350 DSP mode B configuration + * netfilter: ebtables: enforce CAP_NET_ADMIN + * netfilter: nf_ct_ftp: fix out of bounds read in update_nl_seq() + * hwmon: (coretemp) Fix TjMax for Atom N450/D410/D510 CPUs + * hwmon: (adt7462) Fix pin 28 monitoring + * quota: Fix dquot_transfer for filesystems different from ext4 + * xen: fix hang on suspend. + * iwlwifi: fix iwl_queue_used bug when read_ptr == write_ptr + * ath5k: Fix eeprom checksum check for custom sized eeproms + * cfg80211: fix syntax error on user regulatory hints + * iwl: off by one bug + * mac80211: add missing sanity checks for action frames + * drm/i915: remove render reclock support + * libertas: Remove carrier signaling from the scan code + * kernel/sysctl.c: fix stable merge error in NOMMU mmap_min_addr + * mac80211: fix skb buffering issue (and fixes to that) + * fix braindamage in audit_tree.c untag_chunk() + * fix more leaks in audit_tree.c tag_chunk() + * module: handle ppc64 relocating kcrctabs when CONFIG_RELOCATABLE=y + * ipv6: skb_dst() can be NULL in ipv6_hop_jumbo(). + * agp/intel-agp: Clear entire GTT on startup + * Linux 2.6.32.4 + * ethtool: Add reset operation + * gro: Name the GRO result enumeration type + * gro: Change all receive functions to return GRO result codes + * sfc: 10Xpress: Initialise pause advertising flags + * sfc: 10Xpress: Report support for pause frames + * sfc: Remove redundant header gmii.h + * sfc: Remove redundant hardware initialisation + * sfc: Rename Falcon-specific board code and types + * sfc: Remove boards.h, moving last remaining declaration to falcon.h + * sfc: Remove versioned bitfield macros + * sfc: Move RX data FIFO thresholds out of struct efx_nic_type + * sfc: Update hardware definitions for Siena + * sfc: Rename register I/O header and functions used by both Falcon and + Siena + * sfc: Eliminate indirect lookups of queue size constants + * sfc: Define DMA address mask explicitly in terms of descriptor field + width + * sfc: Move all TX DMA length limiting into tx.c + * sfc: Change order of device removal to reverse of probe order + * sfc: Remove declarations of nonexistent functions + * sfc: Move efx_xmit_done() declaration into correct stanza + * sfc: Move shared members of struct falcon_nic_data into struct efx_nic + * sfc: Maintain interrupt moderation values in ticks, not microseconds + * sfc: Removed kernel-doc for nonexistent member of efx_phy_operations + * sfc: Remove pointless abstraction of memory BAR number + * sfc: Remove incorrect assertion from efx_pci_remove_main() + * sfc: Remove unnecessary tests of efx->membase + * sfc: Move MTD probe after netdev registration and name allocation + * sfc: Remove unused code for non-autoneg speed/duplex switching + * sfc: Rename 'xfp' file and functions to reflect reality + * sfc: Really allow RX checksum offload to be disabled + * sfc: Feed GRO result into RX allocation policy and interrupt moderation + * sfc: Enable heuristic selection between page and skb RX buffers + * sfc: Remove pointless abstraction of memory BAR number (2) + * sfc: Remove redundant gotos from __efx_rx_packet() + * sfc: Remove ridiculously paranoid assertions + * sfc: Move assertions and buffer cleanup earlier in efx_rx_packet_lro() + * sfc: Record RX queue number on GRO path + * sfc: SFT9001: Reset LED configuration correctly after blinking + * sfc: Use a single blink implementation + * sfc: Rename efx_board::init_leds to init_phy and use for SFN4111T + * sfc: Make board information explicitly Falcon-specific + * sfc: Move definition of struct falcon_nic_data into falcon.h + * sfc: Move struct falcon_board into struct falcon_nic_data + * sfc: Move all I2C stuff into struct falcon_board + * sfc: Gather link state fields in struct efx_nic into new struct + efx_link_state + * sfc: Remove unnecessary casts to struct sk_buff * + * sfc: Remove redundant efx_xmit() function + * sfc: Combine high-level header files + * sfc: Log interrupt and reset type names, not numbers + * sfc: Fix descriptor cache sizes + * sfc: Treat all MAC registers as 128-bit + * sfc: Strengthen EFX_ASSERT_RESET_SERIALISED + * sfc: Comment corrections + * sfc: Remove unused constant + * sfc: Clean up struct falcon_board and struct falcon_board_data + * sfc: Fix bugs in RX queue flushing + * sfc: Remove unused function efx_flush_queues() + * sfc: Only switch Falcon MAC clocks as necessary + * sfc: Hold MAC lock for longer in efx_init_port() + * sfc: Split MAC stats DMA initiation and completion + * sfc: Move Falcon board/PHY/MAC monitoring code to falcon.c + * sfc: Simplify XMAC link polling + * sfc: Change MAC promiscuity and multicast hash at the same time + * sfc: Move inline comment into kernel-doc + * sfc: Do not set net_device::trans_start in self-test + * sfc: Simplify PHY polling + * sfc: QT202x: Reset before reading PHY id + * sfc: Replace MDIO spinlock with mutex + * sfc: Always start Falcon using the XMAC + * sfc: Limit some hardware workarounds to Falcon + * sfc: Remove EFX_WORKAROUND_9141 macro + * sfc: Remove another unused workaround macro + * sfc: Remove some redundant whitespace + * sfc: Decouple NIC revision number from Falcon PCI revision number + * sfc: Move descriptor cache base addresses to struct efx_nic_type + * sfc: Clean up RX event handling + * sfc: Remove redundant writes to INT_ADR_KER + * sfc: Remove duplicate hardware structure definitions + * sfc: Turn pause frame generation on and off at the MAC, not the RX FIFO + * sfc: Move Falcon NIC operations to efx_nic_type + * sfc: Refactor link configuration + * sfc: Generalise link state monitoring + * sfc: Add power-management and wake-on-LAN support + * sfc: Implement ethtool reset operation + * sfc: Add efx_nic_type operation for register self-test + * sfc: Add efx_nic_type operation for NVRAM self-test + * sfc: Add efx_nic_type operation for identity LED control + * sfc: Separate shared NIC code from Falcon-specific and rename + accordingly + * sfc: Fold falcon_probe_nic_variant() into falcon_probe_nic() + * sfc: Extend loopback mode enumeration + * sfc: Remove static PHY data and enumerations + * sfc: Extend MTD driver for use with new NICs + * sfc: Allow for additional checksum offload features + * sfc: Rename falcon.h to nic.h + * sfc: Move shared NIC code from falcon.c to new source file nic.c + * sfc: Add firmware protocol definitions (MCDI) + * sfc: Add support for SFC9000 family (1) + * sfc: Add support for SFC9000 family (2) + * sfc: Implement TSO for TCP/IPv6 + * sfc: Update version, copyright dates, authors + * drivers/net/sfc: Correct code taking the size of a pointer + * sfc: Move PHY software state initialisation from init() into probe() + * sfc: Include XGXS in XMAC link status check except in XGMII loopback + * sfc: Fix DMA mapping cleanup in case of an error in TSO + * sfc: QT2025C: Work around PHY bug + * sfc: QT2025C: Switch into self-configure mode when not in loopback + * sfc: QT2025C: Work around PHY firmware initialisation bug + * sfc: QT2025C: Add error message for suspected bad SFP+ cables + * sfc: Disable TX descriptor prefetch watchdog + * [SCSI] vmw_pvscsi: SCSI driver for VMware's virtual HBA. + - LP: #497156 + + -- Andy Whitcroft Tue, 19 Jan 2010 16:12:47 +0000 + +linux (2.6.32-10.14) lucid; urgency=low + + [ Alex Deucher ] + + * SAUCE: drm/radeon/kms: fix LVDS setup on r4xx + - LP: #493795 + + [ Andy Whitcroft ] + + * Revert "(pre-stable) acpi: Use the ARB_DISABLE for the CPU which model + id is less than 0x0f." + * config-check -- ensure the checks get run at build time + * config-check -- check the processed config during updateconfigs + * config-check -- CONFIG_SECCOMP may not be present + * TUN is now built in ignore + * SAUCE: acpi battery -- delay first lookup of the battery until first + use + * SAUCE: async_populate_rootfs: move rootfs init earlier + * ubuntu: AppArmor -- update to mainline 2010-01-06 + * SAUCE: move RLIMIT_CORE pipe dumper marker to 1 + - LP: #498525 + + [ Dave Airlie ] + + * (pre-stable) drm/radeon/kms: fix crtc vblank update for r600 + + [ Leann Ogasawara ] + + * Add asix to nic-usb-modules file + - LP: #499785 + + [ Peter Zijlstra ] + + * (pre-stable) sched: Fix balance vs hotplug race + + [ Tim Gardner ] + + * [Config] Enable CONFIG_FUNCTION_TRACER + - LP: #497989 + * [Config] Drop lpia from getabis + * [Config] Build in TUN/TAP driver + - LP: #499491 + * [Config] DH_COMPAT=5 + + [ Upstream Kernel Changes ] + + * Revert "(pre-stable) drm/i915: Avoid NULL dereference with + component_only tv_modes" + * Revert "(pre-stable) drm/i915: Fix sync to vblank when VGA output is + turned off" + * USB: usb-storage: fix bug in fill_inquiry + * USB: option: add pid for ZTE + * firewire: ohci: handle receive packets with a data length of zero + * rcu: Prepare for synchronization fixes: clean up for non-NO_HZ handling + of ->completed counter + * rcu: Fix synchronization for rcu_process_gp_end() uses of ->completed + counter + * rcu: Fix note_new_gpnum() uses of ->gpnum + * rcu: Remove inline from forward-referenced functions + * perf_event: Fix invalid type in ioctl definition + * perf_event: Initialize data.period in perf_swevent_hrtimer() + * perf: Don't free perf_mmap_data until work has been done + * PM / Runtime: Fix lockdep warning in __pm_runtime_set_status() + * sched: Check for an idle shared cache in select_task_rq_fair() + * sched: Fix affinity logic in select_task_rq_fair() + * sched: Rate-limit newidle + * sched: Fix and clean up rate-limit newidle code + * x86/amd-iommu: attach devices to pre-allocated domains early + * x86/amd-iommu: un__init iommu_setup_msi + * x86, Calgary IOMMU quirk: Find nearest matching Calgary while walking + up the PCI tree + * x86: Fix iommu=nodac parameter handling + * x86: GART: pci-gart_64.c: Use correct length in strncmp + * x86: ASUS P4S800 reboot=bios quirk + - LP: #366682 + * x86, apic: Enable lapic nmi watchdog on AMD Family 11h + * ssb: Fix range check in sprom write + * ath5k: allow setting txpower to 0 + * ath5k: enable EEPROM checksum check + * hrtimer: Fix /proc/timer_list regression + * ALSA: hrtimer - Fix lock-up + * ALSA: hda - Terradici HDA controllers does not support 64-bit mode + * KVM: x86 emulator: limit instructions to 15 bytes + * KVM: s390: Fix prefix register checking in arch/s390/kvm/sigp.c + * KVM: s390: Make psw available on all exits, not just a subset + * KVM: fix irq_source_id size verification + * KVM: x86: include pvclock MSRs in msrs_to_save + * x86: Prevent GCC 4.4.x (pentium-mmx et al) function prologue wreckage + * x86: Use -maccumulate-outgoing-args for sane mcount prologues + * x86, mce: don't restart timer if disabled + * x86/mce: Set up timer unconditionally + * x86: SGI UV: Fix BAU initialization + * x86: Fix duplicated UV BAU interrupt vector + * x86: Add new Intel CPU cache size descriptors + * x86: Fix typo in Intel CPU cache size descriptor + * pata_hpt{37x|3x2n}: fix timing register masks (take 2) + * s390: clear high-order bits of registers after sam64 + * V4L/DVB: Fix test in copy_reg_bits() + * bsdacct: fix uid/gid misreporting + * UBI: flush wl before clearing update marker + * jbd2: don't wipe the journal on a failed journal checksum + * USB: xhci: Add correct email and files to MAINTAINERS entry. + * USB: musb_gadget_ep0: fix unhandled endpoint 0 IRQs, again + * USB: option.c: add support for D-Link DWM-162-U5 + * USB: usbtmc: repeat usb_bulk_msg until whole message is transfered + * USB: usb-storage: add BAD_SENSE flag + * USB: Close usb_find_interface race v3 + * pxa/em-x270: fix usb hub power up/reset sequence + * hfs: fix a potential buffer overflow + * SUNRPC: IS_ERR/PTR_ERR confusion + * NFS: Fix nfs_migrate_page() + * md/bitmap: protect against bitmap removal while being updated. + * futex: Take mmap_sem for get_user_pages in fault_in_user_writeable + * devpts_get_tty() should validate inode + * debugfs: fix create mutex racy fops and private data + * Driver core: fix race in dev_driver_string + * Serial: Do not read IIR in serial8250_start_tx when UART_BUG_TXEN + * mac80211: Fix bug in computing crc over dynamic IEs in beacon + * mac80211: Fixed bug in mesh portal paths + * mac80211: Revert 'Use correct sign for mesh active path refresh' + * mac80211: fix scan abort sanity checks + * wireless: correctly report signal value for IEEE80211_HW_SIGNAL_UNSPEC + * rtl8187: Fix wrong rfkill switch mask for some models + * x86: Fix bogus warning in apic_noop.apic_write() + * mm: hugetlb: fix hugepage memory leak in mincore() + * mm: hugetlb: fix hugepage memory leak in walk_page_range() + * powerpc/windfarm: Add detection for second cpu pump + * powerpc/therm_adt746x: Record pwm invert bit at module load time] + * powerpc: Fix usage of 64-bit instruction in 32-bit altivec code + * drm/radeon/kms: Add quirk for HIS X1300 board + * drm/radeon/kms: handle vblanks properly with dpms on + * drm/radeon/kms: fix legacy crtc2 dpms + * drm/radeon/kms: fix vram setup on rs600 + * drm/radeon/kms: rs6xx/rs740: clamp vram to aperture size + * drm/ttm: Fix build failure due to missing struct page + * drm/i915: Set the error code after failing to insert new offset into mm + ht. + * drm/i915: Add the missing clonemask for display port on Ironlake + * xen/xenbus: make DEVICE_ATTR()s static + * xen: re-register runstate area earlier on resume. + * xen: restore runstate_info even if !have_vcpu_info_placement + * xen: correctly restore pfn_to_mfn_list_list after resume + * xen: register timer interrupt with IRQF_TIMER + * xen: register runstate on secondary CPUs + * xen: don't call dpm_resume_noirq() with interrupts disabled. + * xen: register runstate info for boot CPU early + * xen: call clock resume notifier on all CPUs + * xen: improve error handling in do_suspend. + * xen: don't leak IRQs over suspend/resume. + * xen: use iret for return from 64b kernel to 32b usermode + * xen: explicitly create/destroy stop_machine workqueues outside + suspend/resume region. + * Xen balloon: fix totalram_pages counting. + * xen: try harder to balloon up under memory pressure. + * dm exception store: free tmp_store on persistent flag error + * dm snapshot: only take lock for statustype info not table + * dm crypt: move private iv fields to structs + * dm crypt: restructure essiv error path + * dm: avoid _hash_lock deadlock + * dm snapshot: cope with chunk size larger than origin + * dm crypt: separate essiv allocation from initialisation + * dm crypt: make wipe message also wipe essiv key + * slc90e66: fix UDMA handling + * tcp: Stalling connections: Fix timeout calculation routine + * ip_fragment: also adjust skb->truesize for packets not owned by a + socket + * b44 WOL setup: one-bit-off stack corruption kernel panic fix + * sparc64: Don't specify IRQF_SHARED for LDC interrupts. + * sparc64: Fix overly strict range type matching for PCI devices. + * sparc64: Fix stack debugging IRQ stack regression. + * sparc: Set UTS_MACHINE correctly. + * b43legacy: avoid PPC fault during resume + * tracing: Fix event format export + * ath9k: Fix TX hang poll routine + * ath9k: fix processing of TX PS null data frames + * ath9k: Fix maximum tx fifo settings for single stream devices + * ath9k: fix tx status reporting + * mac80211: Fix dynamic power save for scanning. + * drm/i915: Fix sync to vblank when VGA output is turned off + * memcg: fix memory.memsw.usage_in_bytes for root cgroup + * thinkpad-acpi: fix default brightness_mode for R50e/R51 + * thinkpad-acpi: preserve rfkill state across suspend/resume + * ipw2100: fix rebooting hang with driver loaded + * matroxfb: fix problems with display stability + * acerhdf: add new BIOS versions + * asus-laptop: change light sens default values. + * vmalloc: conditionalize build of pcpu_get_vm_areas() + * ACPI: Use the ARB_DISABLE for the CPU which model id is less than 0x0f. + * net: Fix userspace RTM_NEWLINK notifications. + * ext3: Fix data / filesystem corruption when write fails to copy data + * V4L/DVB (13116): gspca - ov519: Webcam 041e:4067 added. + * bcm63xx_enet: fix compilation failure after get_stats_count removal + * x86: Under BIOS control, restore AP's APIC_LVTTHMR to the BSP value + * drm/i915: Avoid NULL dereference with component_only tv_modes + * drm/i915: PineView only has LVDS and CRT ports + * drm/i915: Fix LVDS stability issue on Ironlake + * mm: sigbus instead of abusing oom + * ipvs: zero usvc and udest + * jffs2: Fix long-standing bug with symlink garbage collection. + * intel-iommu: Detect DMAR in hyperspace at probe time. + * intel-iommu: Apply BIOS sanity checks for interrupt remapping too. + * intel-iommu: Check for an RMRR which ends before it starts. + * intel-iommu: Fix oops with intel_iommu=igfx_off + * intel-iommu: ignore page table validation in pass through mode + * netfilter: xtables: document minimal required version + * perf_event: Fix incorrect range check on cpu number + * implement early_io{re,un}map for ia64 + * Linux 2.6.32.2 + + -- Andy Whitcroft Thu, 07 Jan 2010 15:28:43 +0000 + +linux (2.6.32-9.13) lucid; urgency=low + + [ Andy Whitcroft ] + + * [Config] enable CONFIG_B43_PHY_LP + - LP: #493059 + * include modules.builtin in the binary debs + * config-check -- add a configuration enforcer + * config-check -- add a unit-test suite to the checker + * [Config] Enable CONFIG_SYN_COOKIES for versatile + * [Config] Enable CONFIG_SECURITY_SMACK for ports + * [Config] Enable CONFIG_SECURITY_FILE_CAPABILITIES for ports + * [Config] Disable CONFIG_COMPAT_BRK for ports + * getabis -- add armel versatile to the list + + [ Brad Figg ] + + * SAUCE: Increase the default prealloc buffer for HDA audio devices + (non-modem) + + [ Manoj Iyer ] + + * ubuntu: onmibook -- Added missing BOM file + + [ Tim Gardner ] + + * ubuntu: fsam7400 -- Cleanup Makefile + + [ Upstream Kernel Changes ] + + * Revert "ext4: Fix insufficient checks in EXT4_IOC_MOVE_EXT" + * signal: Fix alternate signal stack check + * SCSI: scsi_lib_dma: fix bug with dma maps on nested scsi objects + * SCSI: osd_protocol.h: Add missing #include + * SCSI: megaraid_sas: fix 64 bit sense pointer truncation + * ext4: fix potential buffer head leak when add_dirent_to_buf() returns + ENOSPC + * ext4: avoid divide by zero when trying to mount a corrupted file system + * ext4: fix the returned block count if EXT4_IOC_MOVE_EXT fails + * ext4: fix lock order problem in ext4_move_extents() + * ext4: fix possible recursive locking warning in EXT4_IOC_MOVE_EXT + * ext4: plug a buffer_head leak in an error path of ext4_iget() + * ext4: make sure directory and symlink blocks are revoked + * ext4: fix i_flags access in ext4_da_writepages_trans_blocks() + * ext4: journal all modifications in ext4_xattr_set_handle + * ext4: don't update the superblock in ext4_statfs() + * ext4: fix uninit block bitmap initialization when s_meta_first_bg is + non-zero + * ext4: fix block validity checks so they work correctly with meta_bg + * ext4: avoid issuing unnecessary barriers + * ext4: fix error handling in ext4_ind_get_blocks() + * ext4: make trim/discard optional (and off by default) + * ext4: make "norecovery" an alias for "noload" + * ext4: Fix double-free of blocks with EXT4_IOC_MOVE_EXT + * ext4: initialize moved_len before calling ext4_move_extents() + * ext4: move_extent_per_page() cleanup + * jbd2: Add ENOMEM checking in and for + jbd2_journal_write_metadata_buffer() + * ext4: Return the PTR_ERR of the correct pointer in + setup_new_group_blocks() + * ext4: Avoid data / filesystem corruption when write fails to copy data + * ext4: wait for log to commit when umounting + * ext4: remove blocks from inode prealloc list on failure + * ext4: ext4_get_reserved_space() must return bytes instead of blocks + * ext4: quota macros cleanup + * ext4: fix incorrect block reservation on quota transfer. + * ext4: Wait for proper transaction commit on fsync + * ext4: Fix insufficient checks in EXT4_IOC_MOVE_EXT + * ext4: Fix potential fiemap deadlock (mmap_sem vs. i_data_sem) + * Linux 2.6.32.1 + * kbuild: generate modules.builtin + * (pre-stable) drm/i915: Fix sync to vblank when VGA output is turned off + - LP: #494461 + * (pre-stable) drm/i915: Avoid NULL dereference with component_only + tv_modes + - LP: #494045 + + [ Zhao Yakui ] + + * (pre-stable) acpi: Use the ARB_DISABLE for the CPU which model id is + less than 0x0f. + - LP: #481765 + + -- Andy Whitcroft Thu, 17 Dec 2009 15:41:21 +0000 + +linux (2.6.32-8.12) lucid; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: AppArmor -- add linux/err.h for ERR_PTR + + -- Andy Whitcroft Sat, 12 Dec 2009 10:56:16 +0000 + +linux (2.6.32-8.11) lucid; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: default ATI Radeon KMS to off until userspace catches + up" + * Revert "SAUCE: AppArmor: Fix oops there is no tracer and doing unsafe + transition." + * Revert "SAUCE: AppArmor: Fix refcounting bug causing leak of creds" + * Revert "SAUCE: AppArmor: Fix cap audit_caching preemption disabling" + * Revert "SAUCE: AppArmor: Fix Oops when in apparmor_bprm_set_creds" + * Revert "SAUCE: AppArmor: Fix oops after profile removal" + * Revert "SAUCE: AppArmor: AppArmor disallows truncate of deleted files." + * Revert "SAUCE: AppArmor: AppArmor fails to audit change_hat correctly" + * Revert "SAUCE: AppArmor: Policy load and replacement can fail to alloc + mem" + * Revert "SAUCE: AppArmor: AppArmor wrongly reports allow perms as + denied" + * Revert "SAUCE: AppArmor: Fix mediation of "deleted" paths" + * Revert "SAUCE: AppArmor: Fix off by 2 error in getprocattr mem + allocation" + * Revert "SAUCE: AppArmor: Set error code after structure + initialization." + * Revert "AppArmor -- fix pstrace_may_access rename" + * Revert "ubuntu: AppArmor security module" + * Revert "SAUCE: Add config option to set a default LSM" + * Revert "ubuntu: fsam7400 -- sw kill switch driver" + * Revert "[Config] fsam7400 -- enable" + * Revert "[Config] AUFS -- enable" + * Revert "ubuntu: AUFS -- aufs2-30 20090727" + * Revert "ubuntu: AUFS -- export various core functions -- fixes" + * Revert "ubuntu: AUFS -- export various core functions" + * Revert "[Config] ubuntu/iscsitarget -- disable" + * Revert "[Config] iscsitarget -- enable" + * Revert "ubuntu: iscsitarget -- SVN revision r214" + * update Vcs-Git to point to the correct repository + - LP: #493589 + * update build environment overrides to lucid + - LP: #493589 + * [Config] enable CONFIG_DEVTMPFS + * [Config] update all configs following AppArmor 2009-12-08 update + * SAUCE: isapnp_init: make isa PNP scans occur async + * [Config] fsam7400 -- enable + * [Config] omnibook -- enable + * [Config] cleanup CONFIG_AUDIT + * ubuntu: AUFS -- export various core functions (aufs2-base.patch) + * ubuntu: AUFS -- export various core functions (aufs2-standalone.patch) + * ubuntu: AUFS -- aufs2 20091209 + * [Config] AUFS -- enable + * [Config] iscsitarget -- enable + + [ Arjan van de Ven ] + + * SAUCE: KMS: cache the EDID information of the LVDS + + [ Colin Watson ] + + * bnx2: update d-i firmware filenames + - LP: #494052 + * add cdc_ether to nic-usb-modules udeb + - LP: #495060 + + [ John Johansen ] + + * ubuntu: AppArmor -- mainline 2009-10-08 + + [ Manoj Iyer ] + + * ubuntu: fsam7400 -- kill switch for Fujitsu Siemens Amilo M 7400 + * ubuntu: omnibook -- support Toshiba (HP) netbooks + * ubuntu: iscsitarget --- version 1.4.19 + - LP: #494693 + + [ Surbhi Palande ] + + * SAUCE: Make populate_rootfs asynchronous + + [ Tim Gardner ] + + * Parallelize flavour builds and packaging + * [Config] Enable CONFIG_KSM + + [ Upstream Kernel Changes ] + + * Config option to set a default LSM + * LSM: Add security_path_chroot(). + * LSM: Add security_path_chroot(). + * LSM: Move security_path_chmod()/security_path_chown() to after + mutex_lock(). + * ext4: Fix insufficient checks in EXT4_IOC_MOVE_EXT + + -- Andy Whitcroft Fri, 11 Dec 2009 17:45:19 +0000 + +linux (2.6.32-7.10) lucid; urgency=low + + [ Andy Whitcroft ] + + * [Config] disable CONFIG_THUMB2_KERNEL to fix arm FTBFS + + -- Andy Whitcroft Sun, 06 Dec 2009 12:56:48 +0000 + +linux (2.6.32-7.9) lucid; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: set /proc/acpi/video/*/DOS to 4 by default + - LP: #458982 + * SAUCE: ensure vga16fb loads if no other driver claims the VGA device + * [Config] update configs following versatile switch to V7 + * rebased to v2.6.32 + * [Config] update configs following rebase to v2.6.32 + * [Config] update ports configs following rebase to v2.6.32 + * SAUCE: default ATI Radeon KMS to off until userspace catches up + + [ Arjan van de Ven ] + + * SAUCE: vfs: Add a trace point in the mark_inode_dirty function + + [ Leann Ogasawara ] + + * [SCSI] megaraid_sas: remove sysfs poll_mode_io world writeable + permissions + - CVE-2009-3939 + + [ Loic Minier ] + + * SAUCE: select a v7 CPU for versatile + + [ Takashi Iwai ] + + * SAUCE: ALSA: hda - Add power on/off counter + + [ Upstream changes ] + + * rebased to v2.6.32 + + -- Andy Whitcroft Fri, 04 Dec 2009 10:44:50 +0000 + +linux (2.6.32-6.8) lucid; urgency=low + + [ Andy Whitcroft ] + + * [Config] disable SSB devices for armel + + -- Andy Whitcroft Sat, 28 Nov 2009 12:16:40 +0000 + +linux (2.6.32-6.7) lucid; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: default ATI Radeon KMS to off until userspace catches up" + * Revert "SAUCE: Dell XPS710 reboot quirk" + * Revert "SAUCE: Link acpi-cpufreq.o first" + * Revert "SAUCE: LPIA Logical reset of USB port on resume" + * Revert "SAUCE: LPIA Reboot fix for Intel Crownbeach development boards" + * Revert "SAUCE: Enable HDMI audio codec on Studio XPS 1340" + * Revert "SAUCE: Dell laptop digital mic does not work, PCI 1028:0271" + * Revert "Add Dell Dimension 9200 reboot quirk" + * Revert "SAUCE: Correctly blacklist Thinkpad r40e in ACPI" + * Revert "SAUCE: tulip: Define ULI PCI ID's" + * Revert "SAUCE: Lower warning level of some PCI messages" + * Revert "mac80211: fix two issues in debugfs" + Drop a number of known redundant commits as identified in the Ubuntu + delta review blueprint. + + * reenable armel versatile flavour + * [Config] disable CONFIG_USB_DEVICEFS + + [ Tim Gardner ] + + * [Config] udeb: Add squashfs to fs-core-modules + - LP: #352615 + * [Config] Create a real squashfs udeb + - LP: #352615 + + + -- Andy Whitcroft Fri, 27 Nov 2009 17:31:16 +0000 + +linux (2.6.32-5.6) lucid; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.32-rc8 + * update configs following rebase to v2.6.32-rc8 + * update ports configs since rebase to v2.6.32-rc8 + * [Config] enable cgroup options + - LP: #480739 + + [ Upstream Kernel Changes ] + + * rebase to v2.6.32-rc8 + + -- Andy Whitcroft Mon, 23 Nov 2009 11:16:14 +0000 + +linux (2.6.32-4.5) lucid; urgency=low + + [ Andy Whitcroft ] + + * [Config] SERIO_LIBPS2 and SERIO_I8042 must match + * rebase to v2.6.32-rc7 + * resync with Karmic proposed + + [ John Johansen ] + + * SAUCE: AppArmor: Fix oops after profile removal + - LP: #475619 + * SAUCE: AppArmor: Fix Oops when in apparmor_bprm_set_creds + - LP: #437258 + * SAUCE: AppArmor: Fix cap audit_caching preemption disabling + - LP: #479102 + * SAUCE: AppArmor: Fix refcounting bug causing leak of creds + - LP: #479115 + * SAUCE: AppArmor: Fix oops there is no tracer and doing unsafe + transition. + - LP: #480112 + + [ Ubuntu Changes ] + + * resync with Karmic proposed (ddbc670a86a3dee18541a3734149f250ff307adf) + + [ Upstream Kernel Changes ] + + * rebase to v2.6.32-rc7 + + -- Andy Whitcroft Fri, 13 Nov 2009 11:35:13 +0000 + +linux (2.6.32-3.4) lucid; urgency=low + + [ Andy Whitcroft ] + + * [Config] SERIO_LIBPS2 and SERIO_I8042 must match + * [Upstream] add local prefix to oss local change_bits + + [ Upstream Kernel Changes ] + + * mtd/maps: gpio-addr-flash: pull in linux/ headers rather than asm/ + * mtd/maps: gpio-addr-flash: depend on GPIO arch support + + -- Andy Whitcroft Wed, 11 Nov 2009 14:47:04 +0000 + +linux (2.6.32-3.3) lucid; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.32-rc6 + * [Config] update configs following rebase to v2.6.32-rc6 + * [Config] update ports configs following rebase to v2.6.32-rc6 + * resync with Karmic Ubuntu-2.6.31-15.49 + * [Config] add module ignores for broken drivers + + [ John Johansen ] + + * SAUCE: AppArmor: AppArmor wrongly reports allow perms as denied + - LP: #453335 + * SAUCE: AppArmor: Policy load and replacement can fail to alloc mem + - LP: #458299 + * SAUCE: AppArmor: AppArmor fails to audit change_hat correctly + - LP: #462824 + * SAUCE: AppArmor: AppArmor disallows truncate of deleted files. + - LP: #451375 + + [ Kees Cook ] + + * SAUCE: Fix nx_enable reporting + - LP: #454285 + + [ Scott James Remnant ] + + * Revert "SAUCE: trace: add trace_event for the open() syscall" + * SAUCE: trace: add trace events for open(), exec() and uselib() + - LP: #462111 + + [ Stefan Bader ] + + * SAUCE: Fix sub-flavour script to not stop on missing directories + - LP: #453073 + + [ Ubuntu Changes ] + + * resync with Karmic Ubuntu-2.6.31-15.49 + + [ Upstream Kernel Changes ] + + * rebase to v2.6.32-rc6 + - LP: #464552 + + -- Andy Whitcroft Tue, 10 Nov 2009 15:00:57 +0000 + +linux (2.6.32-2.2) lucid; urgency=low + + [ Andy Whitcroft ] + + * install the full changelog with the binary package + * changelog -- explicitly note rebases and clean history + * reinstate armel.mk with no flavours + - LP: #449637 + * [Upstream] block: silently error unsupported empty barriers too + - LP: #420423 + * [Config] udate configs following karmic resync + * [Config] update ports configs following karmic resync + * [Upstream] lirc -- follow removal of .id element + + [ Colin Watson ] + + * Use section 'admin' rather than 'base' + * Add more e100 firmware to nic-modules + - LP: #451872 + * Add qla1280 firmware to scsi-modules + - LP: #381037 + + [ John Johansen ] + + * SAUCE: AppArmor: Set error code after structure initialization. + - LP: #427948 + * SAUCE: AppArmor: Fix off by 2 error in getprocattr mem allocation + - LP: #446595 + * SAUCE: AppArmor: Fix mediation of "deleted" paths + + [ Kees Cook ] + + * SAUCE: [x86] fix report of cs-limit nx-emulation + - LP: #454285 + + [ Leann Ogasawara ] + + * SAUCE: (drop after 2.6.31) input: Add support for filtering input + events + - LP: #430809 + * SAUCE: (drop after 2.6.31) dell-laptop: Trigger rfkill updates on wifi + toggle switch press + - LP: #430809 + + [ Luke Yelavich ] + + * SAUCE: Add sr_mod to the scsi-modules udeb for powerpc + * [Config] Add sd_mod to scsi-modules udeb for powerpc + + [ Mario Limonciello ] + + * SAUCE: Update to LIRC 0.8.6 + - LP: #432678 + * SAUCE: dell-laptop: Store the HW switch status internally rather than + requerying every time + - LP: #430809 + * SAUCE: dell-laptop: Blacklist machines not supporting dell-laptop + - LP: #430809 + + [ Stefan Bader ] + + * [Upstream] acerhdf: Limit modalias matching to supported boards + - LP: #435958 + + [ Tim Gardner ] + + * [Upstream] i915: Fix i2c init message + - LP: #409361 + * [Config] Add sym53c8xx.ko to virtual sub-flavour + - LP: #439415 + * [Config] Add d101m_ucode.bin to d-i/firmware/nic-modules + - LP: #439456 + * [Config] Set default I/O scheduler back to CFQ for desktop flavours + - LP: #381300 + * SAUCE: Created MODULE_EXPORT/MODULE_IMPORT macros + - LP: #430694 + * SAUCE: Use MODULE_IMPORT macro to tie intel_agp to i915 + - LP: #430694 + * [Config] CONFIG_GFS2_FS_LOCKING_DLM=y + - LP: #416325 + * SAUCE: Fix MODULE_IMPORT/MODULE_EXPORT + - LP: #430694 + * SAUCE: Raise the default console 'quiet' level to 2 + * [Config] CONFIG_X86_PAT=y + * [Config] Add armel arch to linux-libc-dev arches. + - LP: #449637 + * [Config] CONFIG_X86_MCE + * [Upstream] (drop after 2.6.31) Input: synaptics - add another Protege + M300 to rate blacklist + - LP: #433801 + + [ Upstream Kernel Changes ] + + * sgi-gru: Fix kernel stack buffer overrun, CVE-2009-2584 + * drm/i915: Fix FDI M/N setting according with correct color depth + - LP: #416792 + + -- Andy Whitcroft Thu, 22 Oct 2009 16:53:33 +0100 + +linux (2.6.32-1.1) lucid; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.32-rc3 + * [Config] update configs following rebase to 2.6.32-rc3 + * [Config] update ports configs following rebase to 2.6.32-rc3 + * AppArmor -- fix pstrace_may_access rename + * staging/android -- disable + * ubuntu: dm-raid-45 -- update to compile with 2.6.32 + * ubuntu: drbd -- disable + * staging/comdi -- disable + * staging/go7007 -- disable + * [Config] staging/winbond -- disable + * [Config] ubuntu/iscsitarget -- disable + * [d-i] cbc and ecb are builtin make them optional in udebs + * rebase to v2.6.32-rc5 + * [Config] update configs following rebase to v2.6.32-rc5 + * [Config] update ports configs following rebase to v2.6.31-rc5 + + [ Tim Gardner ] + + * [Config] Add cpio as a build dependency. + + [ Upstream Kernel Changes ] + + * rebase to v2.6.32-rc3 + * rebase to v2.6.32-rc5 + + -- Andy Whitcroft Mon, 05 Oct 2009 15:48:58 +0100 + +linux (2.6.31-11.37) karmic; urgency=low + + [ Tim Gardner ] + + * [Config] Increase kernel log buffer to 256K for amd64 flavours + - LP: #424810 + * [Config] Set HZ=100 for amd64 flavours + - LP: #438234 + * [Upstream] e1000e: Emit notice instead of an error when + pci_enable_pcie_error_reporting() fails + - LP: #436370 + + [ Upstream Kernel Changes ] + + * n_tty: honor opost flag for echoes + * n_tty: move echoctl check and clean up logic + - LP: #438310 + + * Revert "[Upstream] drm/i915: Check that the relocation points to within + the target" - Use upstream cherry-pick. + * drm/i915: Check that the relocation points to within the target + - LP: #429241 + + * drm/i915: fix tiling on IGDNG + * drm/i915: add B43 chipset support + * agp/intel: Add B43 chipset support + Intel request from kernel team mailing list. + + * HID: completely remove apple mightymouse from blacklist + - LP: #428111 + + -- Tim Gardner Mon, 28 Sep 2009 11:47:29 -0600 + +linux (2.6.31-11.36) karmic; urgency=low + + [ Brian Rogers ] + + * SAUCE: (drop after 2.6.31) em28xx: ir-kbd-i2c init data needs a + persistent object + * SAUCE: (drop after 2.6.31) saa7134: ir-kbd-i2c init data needs a + persistent object + + [ Takashi Iwai ] + + * [Upstream] ALSA: hda - Add another entry for Nvidia HDMI device + - LP: #416482 + + [ Tyler Hicks ] + + * SAUCE: (drop after 2.6.31) eCryptfs: Prevent lower dentry from going + negative during unlink + + [ Upstream Kernel Changes ] + + * sg: fix oops in the error path in sg_build_indirect() + * mpt2sas : Rescan topology from Interrupt context instead of work thread + * mpt2sas: Prevent sending command to FW while Host Reset + * mpt2sas: setting SDEV into RUNNING state from Interrupt context + * mpt2sas: Raid 10 Volume is showing as Raid 1E in dmesg + * SCSI: fix oops during scsi scanning + * SCSI: libsrp: fix memory leak in srp_ring_free() + * cfg80211: fix looping soft lockup in find_ie() + * ath5k: write PCU registers on initial reset + * binfmt_elf: fix PT_INTERP bss handling + * TPM: Fixup boot probe timeout for tpm_tis driver + * md: Fix "strchr" [drivers/md/dm-log-userspace.ko] undefined! + * x86/amd-iommu: fix broken check in amd_iommu_flush_all_devices + * fix undefined reference to user_shm_unlock + * perf_counter: Fix buffer overflow in perf_copy_attr() + * perf_counter: Start counting time enabled when group leader gets + enabled + * powerpc/perf_counters: Reduce stack usage of power_check_constraints + * powerpc: Fix bug where perf_counters breaks oprofile + * powerpc/ps3: Workaround for flash memory I/O error + * block: don't assume device has a request list backing in nr_requests + store + * agp/intel: remove restore in resume + * ALSA: cs46xx - Fix minimum period size + * ASoC: Fix WM835x Out4 capture enumeration + * sound: oxygen: work around MCE when changing volume + * mlx4_core: Allocate and map sufficient ICM memory for EQ context + * perf stat: Change noise calculation to use stddev + * x86: Fix x86_model test in es7000_apic_is_cluster() + * x86/i386: Make sure stack-protector segment base is cache aligned + * PCI: apply nv_msi_ht_cap_quirk on resume too + * x86, pat: Fix cacheflush address in change_page_attr_set_clr() + * ARM: 5691/1: fix cache aliasing issues between kmap() and kmap_atomic() + with highmem + * KVM guest: do not batch pte updates from interrupt context + * KVM: Fix coalesced interrupt reporting in IOAPIC + * KVM: VMX: Check cpl before emulating debug register access + * KVM guest: fix bogus wallclock physical address calculation + * KVM: x86: Disallow hypercalls for guest callers in rings > 0 + * KVM: VMX: Fix cr8 exiting control clobbering by EPT + * KVM: x86 emulator: Implement zero-extended immediate decoding + * KVM: MMU: make __kvm_mmu_free_some_pages handle empty list + * KVM: x86 emulator: fix jmp far decoding (opcode 0xea) + * KVM: limit lapic periodic timer frequency + * libata: fix off-by-one error in ata_tf_read_block() + * PCI quirk: update 82576 device ids in SR-IOV quirks list + * PCI: Unhide the SMBus on the Compaq Evo D510 USDT + * powerpc/pseries: Fix to handle slb resize across migration + * Linux 2.6.31.1 + + -- Tim Gardner Thu, 24 Sep 2009 13:04:28 -0600 + +linux (2.6.31-10.35) karmic; urgency=low + + [ Amit Kucheria ] + + * Disable CONFIG_UEVENT_HELPER_PATH + + [ Andy Whitcroft ] + + * [Config] Enable CONFIG_USB_GADGET_DUMMY_HCD + * remove the tlsup driver + * remove lmpcm logitech driver support + + [ Bryan Wu ] + + * Add 3 missing files to prerm remove file list + - LP: #345623, #415832 + + [ Chris Wilson ] + + * [Upstream] drm/i915: Check that the relocation points to within the + target + - LP: #429241 + + [ Luke Yelavich ] + + * [Config] Set CONFIG_EXT4_FS=y on ports architectures + + [ Manoj Iyer ] + + * SAUCE: Added quirk to recognize GE0301 3G modem as an interface. + - LP: #348861 + + [ Tim Gardner ] + + * Revert "[Upstream] ACPI: Add Thinkpad W500, W700, & W700ds to OSI(Linux) white-list" + * Revert "[Upstream] ACPI: Add Thinkpad R400 & Thinkpad R500 to OSI(Linux) white-list" + * Revert "[Upstream] ACPI: Add Thinkpad X300 & Thinkpad X301 to OSI(Linux) white-list" + * Revert "[Upstream] ACPI: Add Thinkpad X200, X200s, X200t to OSI(Linux) white-list" + * Revert "[Upstream] ACPI: Add Thinkpad T400 & Thinkpad T500 to OSI(Linux) white-list" + Upstream suggests that this is not the right approach. + + * [Config] Set default I/O scheduler to DEADLINE + CFQ seems to have some load related problems which are often exacerbated by sreadahead. + - LP: #381300 + + [ ubuntu@tjworld.net ] + + * SAUCE: ipw2200: Enable LED by default + - LP: #21367 + + [ Upstream Kernel Changes ] + + * ALSA: hda - Add support for new AMD HD audio devices + - LP: #430564 + + -- Andy Whitcroft Wed, 16 Sep 2009 15:37:49 +0100 + +linux (2.6.31-10.34) karmic; urgency=low + + [ Ted Tso ] + + * [Upstream] ext3: Don't update superblock write time when filesystem is + read-only + - LP: #427822 + + -- Tim Gardner Tue, 15 Sep 2009 16:00:45 -0600 + +linux (2.6.31-10.33) karmic; urgency=low + + [ Leann Ogasawara ] + + * [Upstream] dvb-usb: fix tuning with Cinergy T2 + - LP: #421258 + + [ Tim Gardner ] + + * [Config] Unconditionally copy files from sub-flavours lists. + (really, really fix it this time) + - LP: #423426 + * [Config] Set CONFIG_CACHEFILES=m for all flavours + + [ Upstream Kernel Changes ] + + * ext4: Don't update superblock write time when filesystem is read-only + - LP: #427822 + + -- Tim Gardner Tue, 15 Sep 2009 07:50:21 -0600 + +linux (2.6.31-10.32) karmic; urgency=low + + [ Eric Miao ] + + * [Config] enable module support for memory stick + - LP: #159951 + + [ Tim Gardner ] + + * [Config] Unconditionally copy files from sub-flavours lists. + - LP: #423426 + + -- Tim Gardner Thu, 10 Sep 2009 15:57:55 -0600 + +linux (2.6.31-10.31) karmic; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.31 final + + [ Colin Watson ] + + * [Config] Recommend grub-pc in linux-image + - LP: #385741 + + [ Ike Panhc ] + + * [Upstream] Pull latest update of lenovo-sl-laptop + + [ Peter Feuerer ] + + * [Upstream] (drop after 2.6.31) acerhdf: fix fan control for AOA150 + model + - LP: #426691 + + [ Tim Gardner ] + + * [Config] De-macro some package names. + + [ Upstream Changes ] + + * rebase to 2.6.31 final. + + -- Andy Whitcroft Thu, 10 Sep 2009 09:38:10 +0100 + +linux (2.6.31-10.30) karmic; urgency=low + + [ Amit Kucheria ] + + * [Config] Enable CONFIG_USB_DEVICEFS + - LP: #417748 + * [Config] Populate the config-update template a bit more + + [ Andy Whitcroft ] + + * rebase to v2.6.31-rc9 + * [Config] update configs following rebase to v2.6.31-rc9 + * [Config] update ports configs following rebase to v2.6.31-rc9 + + [ Colin Ian King ] + + * SAUCE: wireless: hostap, fix oops due to early probing interrupt + - LP: #254837 + + [ Jerone Young ] + + * [Upstream] ACPI: Add Thinkpad T400 & Thinkpad T500 to OSI(Linux) + white-list + - LP: #281732 + * [Upstream] ACPI: Add Thinkpad X200, X200s, X200t to OSI(Linux) + white-list + - LP: #281732 + * [Upstream] ACPI: Add Thinkpad X300 & Thinkpad X301 to OSI(Linux) + white-list + - LP: #281732 + * [Upstream] ACPI: Add Thinkpad R400 & Thinkpad R500 to OSI(Linux) + white-list + - LP: #281732 + * [Upstream] ACPI: Add Thinkpad W500, W700, & W700ds to OSI(Linux) + white-list + - LP: #281732 + + [ John Johansen ] + + * SAUCE: AppArmor: Fix profile attachment for regexp based profile names + - LP: #419308 + * SAUCE: AppArmor: Return the correct error codes on profile + addition/removal + - LP: #408473 + * SAUCE: AppArmor: Fix OOPS in profile listing, and display full list + - LP: #408454 + * SAUCE: AppArmor: Fix mapping of pux to new internal permission format + - LP: #419222 + * SAUCE: AppArmor: Fix change_profile failure + - LP: #401931 + * SAUCE: AppArmor: Tell git to ignore generated include files + - LP: #419505 + + [ Stefan Bader ] + + * [Upstream] acpi: video: Loosen strictness of video bus detection code + - LP: #333386 + * SAUCE: Remove ov511 driver from ubuntu subdirectory + + [ Tim Gardner ] + + * [Config] Exclude char-modules from non-x86 udeb creation + * SAUCE: Notify the ACPI call chain of AC events + * [Config] CONFIG_SATA_VIA=m + - LP: #403385 + * [Config] Build in all phylib support modules. + * [Config] Don't fail when sub-flavour files are missing + - LP: #423426 + * [Config] Set CONFIG_LSM_MMAP_MIN_ADDR=0 + - LP: #423513 + + [ Upstream ] + + * Rebased against v2.6.31-rc9 + + -- Andy Whitcroft Mon, 07 Sep 2009 11:33:45 +0100 + +linux (2.6.31-9.29) karmic; urgency=low + + [ Leann Ogasawara ] + + * [Upstream] agp/intel: support for new chip variant of IGDNG mobile + - LP: #419993 + * [Config] d-i/modules: Add new char-modules file, initialize with + intel-agp + - LP: #420605 + + [ Upstream ] + + * Rebased against 2.6.31-rc8 plus some inotify regression patches: + up through git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git + adda766193ea1cf3137484a9521972d080d0b7af. + + -- Tim Gardner Fri, 28 Aug 2009 06:31:30 -0600 + +linux (2.6.31-8.28) karmic; urgency=low + + [ Ike Panhc ] + + * [Config] Let nic-shared-modules depends on crypto-modules + - LP: #360966 + + [ Leann Ogasawara ] + + * [Upstream] (drop after 2.6.31) drm/i915: increase default latency + constant + - LP: #412492 + + [ Mario Limonciello ] + + * [Upstream]: (drop after 2.6.31) dell-laptop: don't change softblock + status if HW switch is disabled + - LP: #418721 + * [Upstream]: (drop after 2.6.31) compal-laptop: Add support for known + Compal made Dell laptops + * [Upstream]: (drop after 2.6.31) compal-laptop: Replace sysfs support + with rfkill support + + [ Tim Gardner ] + + * [Config] Add acpiphp to virtual sub-flavour + - LP: #364916 + * Drop KSM patch set for now because of instabilities with encrypted swap. + - LP: #418781 + + -- Tim Gardner Wed, 26 Aug 2009 08:14:26 -0600 + +linux (2.6.31-7.27) karmic; urgency=low + + [ Tim Gardner ] + + * [Config] updateconfigs updateportsconfigs after 2.6.31-rc7 rebase + * SAUCE: (drop after 2.6.31) Added KSM from mmotm-2009-08-20-19-18 + Replaces previous ksm patches from 2.6.31-6.25 + * [Config] KSM=y + + [ Upstream ] + + * Rebased against v2.6.31-rc7 + + -- Tim Gardner Sat, 22 Aug 2009 20:32:11 -0600 + +linux (2.6.31-6.26) karmic; urgency=low + + [ Andy Whitcroft ] + + * [Config] enable CONFIG_AUFS_BR_RAMFS + - LP: #414738 + * split out debian directory ready for abstraction + * add printdebian target to find branch target + * abstracted debian -- debian/files is not abstracted + * abstracted debian -- packages must be built in debian/ + * abstracted debian -- kernel-wedge needs to work in debian/ + * abstracted debian -- ensure we install the copyright file + * abstracted-debian -- drop the debian directories from headers + * abstracted-debian -- drop the debian directories from headers part 2 + * SAUCE: ubuntu-insert-changes -- follow abstracted debian + * [Upstream] aoe: ensure we initialise the request_queue correctly V2 + - LP: #410198 + + [ Luke Yelavich ] + + * [Config] Ports: Disable CONFIG_CPU_FREQ_DEBUG on powerpc-smp + * [Config] Ports: Re-enable windfarm modules on powerpc64-smp + - LP: #413150 + * [Config] Ports: Build all cpu frequency scaling governors into ports + kernels + * [Config] Ports: Build ext2 and ext3 modules into ports kernels + * [Config] Ports: CONFIG_PACKET=y for all ports kernels + * [Config] Ports: Enable PS3 network driver + + [ Stefan Bader ] + + * abstracted debian -- call $(DEBIAN)/rules using make + + [ Tim Gardner ] + + * [Config] Abstract the debian directory + * SAUCE: Improve error reporting in postinst + - LP: #358564 + + -- Tim Gardner Sun, 16 Aug 2009 20:33:28 -0600 + +linux (2.6.31-6.25) karmic; urgency=low + + [ Andy Whitcroft ] + + * script to generate Ubuntu changes from changelog + * [Config] standardise ANDROID options + * [Config] standardise CONFIG_ATM as module + * [Config] standardise CONFIG_LIB80211 as module + * [Config] disable CONFIG_PRINT_QUOTA_WARNING + * [Config] set CONFIG_CRAMFS as module + * [Config] enable CONFIG_DAB and modules + * [Config] set CONFIG_MAC80211_HWSIM as module + * [Config] set CONFIG_NET_CLS_FLOW as module + * [Config] set CONFIG_NF_CONNTRACK_SANE as module + * [Config] set CONFIG_NF_CT_PROTO_DCCP as module + * [Config] set CONFIG_RTC_DRV_DS1511 as module + * [Config] set CONFIG_RTC_DRV_R9701 as module + * [Config] set CONFIG_RTC_DRV_S35390A as module + * [Config] set CONFIG_TOIM3232_DONGLE as module + * [Config] standardise CONFIG_USB_MIDI_GADGET as module + * [Config] standardise CONFIG_USB_G_PRINTER as module + * [Config] standardise CONFIG_USB_SERIAL_IR as module + * [Config] set CONFIG_USB_SERIAL_IUU as module + * [Config] standardise CONFIG_USB_STORAGE_CYPRESS_ATACB as module + * [Config] standardise CONFIG_USB_STORAGE_ONETOUCH as module + * cleanup remains of dm-loop + * drop thinkpad ec and smapi support + * drop appleir + * [Config] update configs following rebase to v2.6.31-rc6 + * rebase to v2.6.31-rc6 + + [ Hugh Dickins ] + + * SAUCE: ksm patch 1, drop after 2.6.31 + * SAUCE: ksm patch 2, drop after 2.6.31 + * SAUCE: ksm patch 3, drop after 2.6.31 + * SAUCE: ksm patch 4, drop after 2.6.31 + * SAUCE: ksm patch 5, drop after 2.6.31 + * SAUCE: ksm patch 7, drop after 2.6.31 + + [ Izik Eidus ] + + * SAUCE: ksm patch 0, drop after 2.6.31 + * SAUCE: ksm patch 6, drop after 2.6.31 + * SAUCE: ksm patch 8, drop after 2.6.31 + * SAUCE: ksm patch 9, drop after 2.6.31 + + [ Luke Yelavich ] + + * [Config] Ports: Re-add PS3 modules to udebs + + [ Michael Casadevall ] + + * [Config] Update SPARC config and d-i files to reflect what can be built + + [ Tim Gardner ] + + * [Config] Removed armel package support + * [Config] Enabled CONFIG_KSM=y + + [ Upstream Kernel Changes ] + + * Rebased against v2.6.31-rc6 + * ARM: Cleanup: Revert "ARM: Add more cache memory types macros" + * ARM: Cleanup: Revert "Do not use OOB with MLC NAND" + * ARM: Cleanup: Revert "ARM: Make ARM arch aware of ubuntu/ drivers" + * ARM: Cleanup: Revert "ARM: IMX51: Make video capture drivers compile" + * ARM: Cleanup: Revert "ARM: IMX51: Fix isl29003 HWMON driver for i2c + changes" + * ARM: Cleanup: Revert "ARM: IMX51: IPU irq handler deadlock fix" + * ARM: Cleanup: Revert "ARM: IMX51: Babbage 2.5 needs a different system + revision" + * ARM: Cleanup: Revert "ARM: IMX51: Compile-in the IMX51 cpufreq driver + by default" + * ARM: Cleanup: Revert "ARM: IMX51: Enable ZONE_DMA for ARCH_MXC" + * ARM: Cleanup: Revert "ARM: IMX51: Make ARCH_MXC auto-enable + ARCH_MXC_CANONICAL" + * ARM: Cleanup: Revert "ARM: IMX51: Unconditionally disable + CONFIG_GPIOLIB" + * ARM: Cleanup: Revert "ARM: IMX51: Minimal changes for USB to work on + 2.6.31" + * ARM: Cleanup: Revert "ARM: IMX51: Fix plat-mxc/timer.c to handle imx51" + * ARM: Cleanup: Revert "ARM: IMX51: Make it compile." + * ARM: Cleanup: Revert "ARM: IMX51: Clean-up the craziness of including + mxc_uart.h _everywhere_" + * ARM: Cleanup: Revert "ARM: IMX51: Move board-mx51* header files to the + correct location" + * ARM: Cleanup: Revert "ARM: IMX51: Changed from snd_card_new to + snd_card_create" + * ARM: Cleanup: Revert "ARM: IMX51: Fix up merge error in Kconfig" + * ARM: Cleanup: Revert "ARM: IMX51: mxc_timer_init prototype" + * ARM: Cleanup: Revert "ARM: IMX51: Removed the mxc_gpio_port structure." + * ARM: Cleanup: Revert "ARM: IMX51: Added external declaration for + mxc_map_io." + * ARM: Cleanup: Revert "ARM: IMX51: Get to bus_id by calling dev_name." + * ARM: Cleanup: Revert "ARM: IMX51: Get to bus_id by calling dev_name." + * ARM: Cleanup: Revert "ARM: IMX51: snd_soc_machine structure replaced + with snd_soc_card." + * ARM: Cleanup: Revert "ARM: IMX51: codec structure was moved to the card + structure" + * ARM: Cleanup: Revert "ARM: IMX51: Hack to add defines for + DMA_MODE_READ/WRITE/MASK" + * ARM: Cleanup: Revert "ARM: IMX51: Add SoC and board support for + Freescale mx51 platform" + * Driver core: add new device to bus's list before probing + * [Upstream] (drop after 2.6.31) ALSA: hda - Reduce click noise at + power-saving + - LP: #381693, #399750, #380892 + + -- Andy Whitcroft Fri, 14 Aug 2009 11:32:23 +0100 + +linux (2.6.31-5.24) karmic; urgency=low + + [ Amit Kucheria ] + + * ARM: IMX51: Make video capture drivers compile + * [Config] IMX51: Config updates + + [ Andy Whitcroft ] + + * remove leftovers of dm-bbr + + [ Leann Ogasawara ] + + * Add pata_cs5535 to pata-modules + - LP: #318805 + + [ Luke Yelavich ] + + * [Config] CONFIG_PPC64=y for powerpc64-smp + * [Config] Set the maximum number of CPUs to 1024 for powerpc64-smp + * [Config] CONFIG_PPC_PS3=y for powerpc64-smp + * [Config] CONFIG_PPC_MAPLE=y on powerpc64-smp + * [Config] CONFIG_PPC_PASEMI=y on powerpc64-smp + * [Config] CONFIG_CPU_FREQ_PMAC64=y on powerpc64-smp + * [Config] Enable all PS3 drivers in powerpc64-smp + + [ Mario Limonciello ] + + * LIRC -- fix lirc-i2c 2.6.31 compilation + + [ Matthew Garrett ] + + * [Upstream] dell-laptop: Fix rfkill state queries + + [ Tim Gardner ] + + * [Config] Ignore armel ABI and module changes + * [Config] Update configs after rebase against 2.6.31-rc5 + + [ Upstream ] + + * Rebased to 2.6.31-rc5 + + -- Andy Whitcroft Tue, 28 Jul 2009 10:10:09 +0100 + +linux (2.6.31-4.23) karmic; urgency=low + + [ Andy Whitcroft ] + + * AUFS -- update to aufs2-30 20090727 + * [Config] enable AUFS FUSE support + + [ Luke Yelavich ] + + * [Config] CONFIG_JFS_FS=m on sparc + + [ Tim Gardner ] + + * [Upstream] dell-laptop: Fix rfkill state setting. + + -- Andy Whitcroft Mon, 27 Jul 2009 11:11:47 +0100 + +linux (2.6.31-4.22) karmic; urgency=low + + [ Amit Kucheria ] + + * ARM: IMX51: Add SoC and board support for Freescale mx51 platform + * ARM: IMX51: Move board-mx51* header files to the correct location + * ARM: IMX51: Clean-up the craziness of including mxc_uart.h _everywhere_ + * ARM: IMX51: Make it compile. + * ARM: IMX51: Unconditionally disable CONFIG_GPIOLIB + * ARM: IMX51: Make ARCH_MXC auto-enable ARCH_MXC_CANONICAL + * ARM: IMX51: Enable ZONE_DMA for ARCH_MXC + * ARM: IMX51: Compile-in the IMX51 cpufreq driver by default + * ARM: IMX51: Fix isl29003 HWMON driver for i2c changes + * ARM: USB: musb: Refer to musb_otg_timer_func under correct #ifdef + * ARM: staging: udlfb: Add vmalloc.h include + * UBUNTU [Config]: Bring imx51 config upto date with other flavours + + [ Brad Figg ] + + * ARM: IMX51: Hack to add defines for DMA_MODE_READ/WRITE/MASK + * ARM: IMX51: codec structure was moved to the card structure + * ARM: IMX51: snd_soc_machine structure replaced with snd_soc_card. + * ARM: IMX51: Get to bus_id by calling dev_name. + * ARM: IMX51: Get to bus_id by calling dev_name. + * ARM: IMX51: Added external declaration for mxc_map_io. + * ARM: IMX51: Removed the mxc_gpio_port structure. + * ARM: IMX51: mxc_timer_init prototype + * ARM: IMX51: Fix up merge error in Kconfig + * ARM: IMX51: Changed from snd_card_new to snd_card_create + + [ Dinh Nguyen ] + + * ARM: IMX51: Fix plat-mxc/timer.c to handle imx51 + * ARM: IMX51: Minimal changes for USB to work on 2.6.31 + * ARM: IMX51: Babbage 2.5 needs a different system revision + * ARM: IMX51: IPU irq handler deadlock fix + + [ Tim Gardner ] + + * [Config] Enabled CONFIG_CAN=m + - LP: #327243 + * [Config] Enabled CONFIG_SERIAL=m + - LP: #397189 + + -- Tim Gardner Fri, 24 Jul 2009 06:19:10 -0600 + +linux (2.6.31-4.21) karmic; urgency=low + + [ Amit Kucheria ] + + * dm-raid-4-5: Add missing brackets around test_bit() + + [ John Johansen ] + + * AppArmor: Fix change_profile failing lpn401931 + * AppArmor: Fix determination of forced AUDIT messages. + * AppArmor: Fix oops in auditing of the policy interface offset + + -- Andy Whitcroft Thu, 23 Jul 2009 19:18:30 +0100 + +linux (2.6.31-4.20) karmic; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: iscsitarget -- update to SVN revision r214 + * SAUCE: iscsitarget -- renable driver + * [Config] consolidate lpia/lpia and i386/generic configs + * [Config] enable CRYPTO modules for all architectures + * [Config] enable cryptoloop + * [Config] enable various filesystems for armel + * [Config] sync i386 generic and generic-pae + * [Config] add the 386 (486 processors and above) flavour + * [Config] re-set DEFAULT_MMAP_MIN_ADDR + - LP: #399914 + * add genconfigs/genportsconfigs to extract the built configs + * updateconfigs -- alter concatenation order allow easier updates + * intelfb -- INTELFB now conflicts with DRM_I915 + * printchanges -- rebase tree does not have stable tags use changelog + * AppArmor: fix argument size missmatch on 64 bit builds + + [ Ike Panhc ] + + * Ship bnx2x firmware in nic-modules udeb + - LP: #360966 + + [ Jeff Mahoney ] + + * AppArmor: fix build failure on ia64 + + [ John Johansen ] + + * AppArmour: ensure apparmor enabled parmater is off if AppArmor fails to + initialize. + * AppArmour: fix auditing of domain transitions to include target profile + information + * AppArmor: fix C99 violation + * AppArmor: revert reporting of create to write permission. + * SAUCE: Add config option to set a default LSM + * [Config] enable AppArmor by default + * AppArmor: Fix NULL pointer dereference oops in profile attachment. + + [ Keith Packard ] + + * SAUCE: drm/i915: Allow frame buffers up to 4096x4096 on 915/945 class + hardware + - LP: #351756 + + [ Luke Yelavich ] + + * [Config] add .o files found in arch/powerpc/lib to all powerpc kernel + header packages + - LP: #355344 + + [ Michael Casadevall ] + + * [Config] update SPARC config files to allow success build + + [ Scott James Remnant ] + + * SAUCE: trace: add trace_event for the open() syscall + + [ Stefan Bader ] + + * SAUCE: jfs: Fix early release of acl in jfs_get_acl + - LP: #396780 + + [ Tim Gardner ] + + * [Upstream] Fix Soltech TA12 volume hotkeys not sending key release + - LP: #397499 + * [Upstream] USB Option driver - Add USB ID for Novatel MC727/U727/USB727 + refresh + - LP: #365291 + * [Config] SSB/B44 are common across all arches/flavours. + + [ Upstream ] + + * Rebased to 2.6.31-rc4 + + -- Andy Whitcroft Thu, 23 Jul 2009 08:41:39 +0100 + +linux (2.6.31-3.19) karmic; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Config] Disabled NDISWRAPPER" + * ndiswrapper -- fix i386 compilation failures on cmpxchg8b + * AUFS -- export various core functions + * AUFS -- export various core functions -- fixes + * AUFS -- core filesystem + * AUFS -- track changes in v2.6.31 + * [Config] Enable AUFS + * droppped 'iwl3945: do not send scan command if channel count zero' as it + is already upstream but failed to auto-drop on rebase. + + [ Eric Paris ] + + * SAUCE: fsnotify: use def_bool in kconfig instead of letting the user + choose + * SAUCE: inotify: check filename before dropping repeat events + * SAUCE: fsnotify: fix inotify tail drop check with path entries + + -- Andy Whitcroft Tue, 14 Jul 2009 12:52:55 +0100 + +linux (2.6.31-3.18) karmic; urgency=low + + [ Andy Whitcroft ] + + * Revert "Add splice-2.6.23.patch from AUFS to export a symbol needed by + AUFS" + * Revert "Add put_filp.patch from AUFS to export a symbol needed by AUFS" + * Revert "Add sec_perm-2.6.24.patch from AUFS - export + security_inode_permission" + * clear out left over AUFS files and modifications + + [ Luke Yelavich ] + + * [Config] Enable CONFIG_USB_ISP116X_HCD on sparc + * SAUCE: Explicitly include header files to allow apparmor to build on + powerpc + * [Config] Enable CONFIG_BLK_DEV_IDECD on powerpc + + [ Tim Gardner ] + + * [Config] Dropped ubuntu/misc/wireless/acx + * [Config] Disabled NDISWRAPPER until the compile issues are fixed. + + [ Upstream ] + + * Rebased to 2.6.31-rc3 + + -- Andy Whitcroft Fri, 10 Jul 2009 18:59:33 +0100 + +linux (2.6.31-2.17) karmic; urgency=low + + [ Andy Whitcroft ] + + * [Config] CONFIG_BLK_DEV_CRYPTOLOOP=m for sparc + * compcache -- remove redundant Kconfig entries part 2 + * compcache -- clean up CCFLAGS declarations + * [Config] enable AppArmor + * AppArmor: fix operator precidence issue in as_path_link + + [ John Johansen ] + + * AppArmor security module + * AppArmor: Correct mapping of file permissions. + * AppArmor: Turn auditing of ptrace on + + [ Luke Yelavich ] + + * [Config] disable CONFIG_DM_RAID45 on powerpc + + -- Andy Whitcroft Fri, 10 Jul 2009 15:02:05 +0100 + +linux (2.6.31-2.16) karmic; urgency=low + + [ Andy Whitcroft ] + + * compcache -- remove redundant Kconfig entries + added ignore and ignore.modules for all arches since the compcache update + changes the modules names as well as some compcache ABI values. + + [ Manoj Iyer ] + + * SAUCE: updated dm-raid45 module version to 2009.04.24 (2.6.30-rc3) + * SAUCE: update compcache version to 0.5.3 + + [ Tim Gardner ] + + * [Config]: Fix sparc FTBS by adding ignore.modules + + -- Tim Gardner Mon, 06 Jul 2009 13:35:29 -0600 + +linux (2.6.31-2.15) karmic; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: default ATI Radeon KMS to off until userspace catches up + * [Config] Update configs following rebase to 2.6.31-rc2 + * [Config] update ports configs following update to 2.6.31-rc2 + + [ Luke Yelavich ] + + * [Config] powerpc - Disable CONFIG_RDS + + [ Matt Zimmerman ] + + * Rename linux-doc-PKGVER to linux-doc and clean up its description + - LP: #382115 + + [ Upstream Kernel Changes ] + + * rebased to mainline 2.6.31-rc2 + + -- Andy Whitcroft Sat, 04 Jul 2009 17:39:13 +0100 + +linux (2.6.31-1.14) karmic; urgency=low + + [ Andy Whitcroft ] + + * update ndiswrapper to 1.55 + * remove leftovers of gfs + * [Config] powerpc: enable CONFIG_PPC_DISABLE_WERROR + + [ Luke Yelavich ] + + * [Config] re-enable and build the ide-pmac driver into powerpc kernels + * [Config] Build the ServerWorks Frodo / Apple K2 SATA driver into the + kernel + + [ Manoj Iyer ] + + * Remove snd-bt-sco ubuntu driver + + [ Michael Casadevall ] + + * [Config] updates ia64 config and d-i folders to allow succesful build + * [Config] Update powerpc and sparc for 2.6.31 + + [ Upstream Kernel Changes ] + + * intel-iommu: fix Identity Mapping to be arch independent + - LP: #384695 + * ACPI: video: prevent NULL deref in acpi_get_pci_dev() + + -- Andy Whitcroft Tue, 30 Jun 2009 17:47:32 +0100 + +linux (2.6.31-1.13) karmic; urgency=low + + [ Andy Whitcroft ] + + * REBASE: rebased to mainline 2.6.31-rc1 + - "UBUNTU: SAUCE: UHCI USB quirk for resume" + no longer applies, using deprecated interfaces, LPIA only, dropped + - "UBUNTU: SAUCE: Mask off garbage in Dell WMI scan code data" + changes now upstream, dropped + * [Config] Update configs following rebase to 2.6.31-rc1 + * [Config] update ports configs following update to 2.6.31-rc1 + + * [Config] disable broken staging driver CONFIG_STLC45XX + * SAUCE: fix compcache to use updates accessors + * [Config] disable staging driver CONFIG_VT6655 + * SAUCE: fix DRDB to use updates accessors + * [Disable] ndiswrapper needs update + * [Disable] LIRC I2C needs update + * [Disable] CONFIG_LENOVO_SL_LAPTOP needs update + * [Config] disable I2C_DESIGNWARE does not compile + * [Config] disable CONFIG_TLSUP for lpia + * [Config] disable CONFIG_FB_UDL for arm + * SAUCE: disable adding scsi headers to linux-libc-dev + + [ Mario Limonciello ] + + * SAUCE: Add LIRC drivers + + -- Andy Whitcroft Thu, 25 Jun 2009 12:06:22 +0100 + +linux (2.6.30-10.12) karmic; urgency=low + + [ Andy Whitcroft ] + + * [Config] split out the ports configs into their own family + * [Config] update configs following introduction of ports family + + [ Upstream Kernel Changes ] + + * Revert "Rename linux-doc-PKGVER to linux-doc and clean up its + description". Fixes linux-doc package name conflicts for now. + - LP: #382115 + + -- Tim Gardner Mon, 22 Jun 2009 09:17:14 -0600 + +linux (2.6.30-10.11) karmic; urgency=low + + [ Amit Kucheria ] + + * [Config] Comment splitconfig.pl and misc cleanup + * [Config] Rename all configs to the new naming scheme + * [Config] Splitconfig rework + * [Config] Rename scripts/misc/oldconfig to kernelconfig + * [Config] Fix build system for new config split + * [Config] Run updateconfigs after the splitconfig rework + + [ Andy Whitcroft ] + + * Revert "SAUCE: Default to i915.modeset=0 if CONFIG_DRM_I915_KMS=y" + * [Config] standardise CONFIG_STAGING=y + * [Config] standardise CONFIG_RD_LZMA=y + * [Config] CONFIG_PCI_IOV=y + * [Config] CONFIG_PCI_STUB=m + * [Config] merge kernel configs more agressively + + [ Colin Watson ] + + * [Config] Run kernel-wedge in $(builddir) rather than at the top level + * [Config] Add support for including firmware in udebs + * [Config] Ship bnx2 firmware in nic-modules udeb + - LP: #384861 + + [ Luke Yelavich ] + + * [Config] ports - Import of ports architectures into kernel packaging + infrastructure + * [Config] ports - Do not update ports kernel configurations by default + * [Config] ports - Disable ABI checking for ports architectures + * [Config] ports - Build drivers in ubuntu sub-directory on powerpc + * [Config] ports - Add control.d/vars.* files for ports architectures + * [Config] ports - Add ports architectures for linux-libc-dev + * [Config] ports - Create powerpc specific message-modules and + block-modules udebs + * [Config] ports - Add configuration files for ports architectures + + [ Manoj Iyer ] + + * [Config] Enable CONFIG_BLK_DEV_AEC62XX=m for amd64 and i386 + - LP: #329864 + + [ Michael Casadevall ] + + * [Config] ports - Fix compression of kernels + + [ Stefan Bader ] + + * [Upstream] mmc: prevent dangling block device from accessing stale + queues + - LP: #383668 + + [ Tim Gardner ] + + * [Config] Recommend grub-pc in linux-image + - LP: #385741 + * [Config] Implement i386 generic and generic-pae flavours + * [Config] ports - Add control info after integrating ports arches + * [Config] Removed auto-generated files from git + * [Config] Added netxen_nic to nic-modules + - LP: #389603 + + [ Matt Zimmerman ] + + * Rename linux-doc-PKGVER to linux-doc and clean up its description + - LP: #382115 + + -- Tim Gardner Mon, 15 Jun 2009 14:38:26 -0600 + +linux (2.6.30-9.10) karmic; urgency=low + + [ Andy Whitcroft ] + + * [Config] CONFIG_SECURITY_TOMOYO=y (amd64, i386, lpia) + * [Config] CONFIG_KEXEC_JUMP=y (amd64, lpia) + * [Config] CONFIG_LENOVO_SL_LAPTOP=m (amd64, lpia) + * [Config] CONFIG_POHMELFS_CRYPTO=y (i386, amd64) + * [Config] CONFIG_SERIAL_MAX3100=m (i386, amd64, lpia) + * [Config] CONFIG_VIDEO_GO7007=m (amd64, i386) + + [ Upstream Kernel Changes ] + + * rebased to 2.6.30 final + + -- Andy Whitcroft Fri, 05 Jun 2009 11:42:53 +0100 + +linux (2.6.30-8.9) karmic; urgency=low + + [ Andy Whitcroft ] + + * Config update removed the following options: + CONFIG_EDAC_AMD8111=m + CONFIG_EDAC_AMD8131=m + + [ Upstream Kernel Changes ] + + * rebased to 2.6.30-rc8 + + -- Andy Whitcroft Wed, 03 Jun 2009 09:21:13 +0100 + +linux (2.6.30-7.8) karmic; urgency=low + + [ Andy Whitcroft ] + + * Enabled NEW configration options: + Paravirtualization layer for spinlocks (PARAVIRT_SPINLOCKS) [N/y/?] Y + Cisco FNIC Driver (FCOE_FNIC) [N/m/y/?] M + + [ Upstream Kernel Changes ] + + * rebased to 2.6.30-rc7 + + -- Andy Whitcroft Sat, 23 May 2009 23:47:24 +0100 + +linux (2.6.30-6.7) karmic; urgency=low + + [ Andy Whitcroft ] + + * Dropped: UBUNTU: SAUCE: input: Blacklist digitizers from joydev.c (now + upstream) + + [ Upstream Kernel Changes ] + + * rebased to 2.6.30-rc6 + + -- Andy Whitcroft Mon, 18 May 2009 18:05:54 +0100 + +linux (2.6.30-5.6) karmic; urgency=low + + [ Tim Gardner ] + + * [Config] Enable Keyspan USB serial device firmware in kernel module + - LP: #334285 + + [ Upstream Kernel Changes ] + + * rebased to 2.6.30-rc5 + + -- Tim Gardner Mon, 11 May 2009 12:02:16 -0600 + +linux (2.6.30-4.5) karmic; urgency=low + + [ Colin Watson ] + + * Build-Conflict with findutils (= 4.4.1-1ubuntu1), to avoid + /usr/include/asm/* going missing + - LP: #373214 + + -- Stefan Bader Fri, 08 May 2009 11:09:08 +0200 + +linux (2.6.30-3.4) karmic; urgency=low + + [ Kees Cook ] + + * SAUCE: [x86] implement cs-limit nx-emulation for ia32 + - LP: #369978 + + [ Stefan Bader ] + + * SAUCE: input: Blacklist digitizers from joydev.c + - LP: #300143 + + -- Tim Gardner Fri, 01 May 2009 14:00:42 -0600 + +linux (2.6.30-2.3) karmic; urgency=low + + [ Tim Gardner ] + + * [Config] Enabled CC_STACKPROTECTOR=y for all x86en + - LP: #369152 + * SAUCE: Default to i915_modeset=0 if CONFIG_DRM_I915_KMS=y + * [Config] CONFIG_DRM_I915_KMS=y + * [Config] Set CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR to appropriate ARCH + minimums + + [ Upstream Kernel Changes ] + + * rebased to 2.6.30-rc4 + + -- Tim Gardner Thu, 30 Apr 2009 09:17:05 -0600 + +linux (2.6.30-1.2) karmic; urgency=low + + [ Tim Gardner ] + + * [Config] armel: disable staging drivers, fixes FTBS + * [Config] armel imx51: Disable CONFIG_MTD_NAND_MXC, fixes FTBS + + [ Upstream Kernel Changes ] + + * mpt2sas: Change reset_type enum to avoid namespace collision. + Submitted upstream. + + -- Tim Gardner Tue, 28 Apr 2009 16:54:41 -0600 + +linux (2.6.30-1.1) karmic; urgency=low + + * Initial release after rebasing against v2.6.30-rc3 + + -- Tim Gardner Thu, 12 Mar 2009 19:16:07 -0600 + --- linux-4.8.0.orig/debian/cloud-tools/hv_get_dhcp_info +++ linux-4.8.0/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 + --- linux-4.8.0.orig/debian/cloud-tools/hv_get_dns_info +++ linux-4.8.0/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 }' --- linux-4.8.0.orig/debian/cloud-tools/hv_set_ifconfig +++ linux-4.8.0/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) --- linux-4.8.0.orig/debian/commit-templates/bumpabi +++ linux-4.8.0/debian/commit-templates/bumpabi @@ -0,0 +1,3 @@ +UBUNTU: Bump ABI + +Ignore: yes --- linux-4.8.0.orig/debian/commit-templates/config-updates +++ linux-4.8.0/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. --- linux-4.8.0.orig/debian/commit-templates/external-driver +++ linux-4.8.0/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: --- linux-4.8.0.orig/debian/commit-templates/missing-modules +++ linux-4.8.0/debian/commit-templates/missing-modules @@ -0,0 +1,3 @@ +UBUNTU: build/modules: Add modules that have intentionally gone missing + +Ignore: yes --- linux-4.8.0.orig/debian/commit-templates/newrelease +++ linux-4.8.0/debian/commit-templates/newrelease @@ -0,0 +1,3 @@ +UBUNTU: Start new release + +Ignore: yes --- linux-4.8.0.orig/debian/commit-templates/sauce-patch +++ linux-4.8.0/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. --- linux-4.8.0.orig/debian/commit-templates/upstream-patch +++ linux-4.8.0/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. --- linux-4.8.0.orig/debian/compat +++ linux-4.8.0/debian/compat @@ -0,0 +1 @@ +5 --- linux-4.8.0.orig/debian/control +++ linux-4.8.0/debian/control @@ -0,0 +1,837 @@ +Source: linux +Section: devel +Priority: optional +Maintainer: Ubuntu Kernel Team +Standards-Version: 3.9.4.0 +Build-Depends: + debhelper (>= 5), + dh-systemd, + cpio, + kernel-wedge, + kmod , + makedumpfile [amd64 i386] , + libelf-dev , + libnewt-dev , + libiberty-dev , + rsync , + libdw-dev , + libpci-dev , + pkg-config , + flex , + bison , + libunwind8-dev [amd64 arm64 armhf i386 powerpc ppc64el] , + liblzma-dev , + openssl , + libssl-dev , + libaudit-dev , + bc , + python-dev , + gawk , + device-tree-compiler [powerpc] , + u-boot-tools [powerpc] , + libc6-dev-ppc64 [powerpc] , + libudev-dev , + autoconf , + automake , + libtool , + uuid-dev , +Build-Depends-Indep: + xmlto , + docbook-utils , + ghostscript , + transfig , + bzip2 , + sharutils , + asciidoc , +Vcs-Git: git://git.launchpad.net/~ubuntu-kernel/ubuntu/+source/linux/+git/yakkety +XS-Testsuite: autopkgtest +#XS-Testsuite-Depends: gcc-4.7 binutils + +Package: linux-source-4.8.0 +Build-Profiles: +Architecture: all +Section: devel +Priority: optional +Provides: linux-source, linux-source-3 +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 4.8.0 with Ubuntu patches + This package provides the source code for the Linux kernel version + 4.8.0. + . + 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-doc +Build-Profiles: +Architecture: all +Section: doc +Priority: optional +Depends: ${misc:Depends} +Description: Linux kernel specific documentation for version 4.8.0 + This package provides the various documents in the 4.8.0 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-headers-4.8.0-58 +Build-Profiles: +Architecture: all +Multi-Arch: foreign +Section: devel +Priority: optional +Depends: ${misc:Depends}, coreutils +Description: Header files related to Linux kernel version 4.8.0 + This package provides kernel header files for version 4.8.0, for sites + that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-4.8.0-58/debian.README.gz for details + +Package: linux-libc-dev +Architecture: i386 amd64 armhf arm64 x32 powerpc ppc64el s390x +Depends: ${misc:Depends} +Conflicts: linux-kernel-headers +Replaces: linux-kernel-headers +Provides: linux-kernel-headers +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-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 4.8.0 + This package provides the architecture independent parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version PGKVER. + +Package: linux-tools-4.8.0-58 +Build-Profiles: +Architecture: i386 amd64 armhf arm64 powerpc ppc64el s390x +Section: devel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-tools-common +Description: Linux kernel version specific tools for version 4.8.0-58 + This package provides the architecture dependant parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version 4.8.0-58 on + 64 bit x86. + You probably want to install linux-tools-4.8.0-58-. + +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 4.8.0 + This package provides the architecture independent parts for kernel + version locked tools for cloud tools for version PGKVER. + +Package: linux-cloud-tools-4.8.0-58 +Build-Profiles: +Architecture: i386 amd64 armhf +Section: devel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-cloud-tools-common +Description: Linux kernel version specific cloud tools for version 4.8.0-58 + This package provides the architecture dependant parts for kernel + version locked tools for cloud tools for version 4.8.0-58 on + 64 bit x86. + You probably want to install linux-cloud-tools-4.8.0-58-. + + +Package: linux-image-4.8.0-58-generic +Build-Profiles: +Architecture: i386 amd64 armhf arm64 powerpc ppc64el s390x +Section: kernel +Priority: optional +Provides: linux-image, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules, virtualbox-guest-modules [i386 amd64 x32]${linux:rprovides} +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools | linux-initramfs-tool, kmod +Recommends: grub-pc [i386 amd64 x32] | grub-efi-amd64 [amd64 x32] | grub-efi-ia32 [i386 amd64 x32] | grub [i386 amd64 x32] | lilo [i386 amd64 x32] | flash-kernel [armhf arm64] | grub-ieee1275 [ppc64el] | yaboot [powerpc] +Suggests: fdutils, linux-doc-4.8.0 | linux-source-4.8.0, linux-tools, linux-headers-4.8.0-58-generic +Conflicts: flash-kernel (<< 3.0~rc.4ubuntu64) [arm64] +Description: Linux kernel image for version 4.8.0 on 64 bit x86 SMP + This package contains the Linux kernel image for version 4.8.0 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-image-extra-4.8.0-58-generic +Build-Profiles: +Architecture: i386 amd64 armhf arm64 powerpc ppc64el s390x +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.8.0-58-generic, crda | wireless-crda +Description: Linux kernel extra modules for version 4.8.0 on 64 bit x86 SMP + This package contains the Linux kernel extra modules for version 4.8.0 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-4.8.0-58-generic +Build-Profiles: +Architecture: i386 amd64 armhf arm64 powerpc ppc64el s390x +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-4.8.0-58, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 4.8.0 on 64 bit x86 SMP + This package provides kernel header files for version 4.8.0 on + 64 bit x86 SMP. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-4.8.0-58/debian.README.gz for details. + +Package: linux-image-4.8.0-58-generic-dbgsym +Build-Profiles: +Architecture: i386 amd64 armhf arm64 powerpc ppc64el s390x +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 4.8.0 on 64 bit x86 SMP + This package provides a kernel debug image for version 4.8.0 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-4.8.0-58-generic +Build-Profiles: +Architecture: i386 amd64 armhf arm64 powerpc ppc64el s390x +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-tools-4.8.0-58 +Description: Linux kernel version specific tools for version 4.8.0-58 + This package provides the architecture dependant parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version 4.8.0-58 on + 64 bit x86. + +Package: linux-cloud-tools-4.8.0-58-generic +Build-Profiles: +Architecture: i386 amd64 armhf arm64 powerpc ppc64el s390x +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-cloud-tools-4.8.0-58 +Description: Linux kernel version specific cloud tools for version 4.8.0-58 + This package provides the architecture dependant parts for kernel + version locked tools for cloud for version 4.8.0-58 on + 64 bit x86. + +Package: linux-udebs-generic +Build-Profiles: +XC-Package-Type: udeb +Section: debian-installer +Architecture: i386 amd64 armhf arm64 powerpc ppc64el s390x +Depends: ${udeb:Depends} +Description: Metapackage depending on kernel udebs + This package depends on the all udebs that the kernel build generated, + for easier version and migration tracking. + + +Package: linux-image-4.8.0-58-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}, initramfs-tools | linux-initramfs-tool, kmod +Recommends: flash-kernel [armhf] +Suggests: fdutils, linux-doc-4.8.0 | linux-source-4.8.0, linux-tools, linux-headers-4.8.0-58-generic-lpae +Conflicts: flash-kernel (<< 3.0~rc.4ubuntu64) [arm64] +Description: Linux kernel image for version 4.8.0 on 64 bit x86 SMP + This package contains the Linux kernel image for version 4.8.0 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-image-extra-4.8.0-58-generic-lpae +Build-Profiles: +Architecture: armhf +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.8.0-58-generic-lpae, crda | wireless-crda +Description: Linux kernel extra modules for version 4.8.0 on 64 bit x86 SMP + This package contains the Linux kernel extra modules for version 4.8.0 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-4.8.0-58-generic-lpae +Build-Profiles: +Architecture: armhf +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-4.8.0-58, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 4.8.0 on 64 bit x86 SMP + This package provides kernel header files for version 4.8.0 on + 64 bit x86 SMP. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-4.8.0-58/debian.README.gz for details. + +Package: linux-image-4.8.0-58-generic-lpae-dbgsym +Build-Profiles: +Architecture: armhf +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 4.8.0 on 64 bit x86 SMP + This package provides a kernel debug image for version 4.8.0 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-4.8.0-58-generic-lpae +Build-Profiles: +Architecture: armhf +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-tools-4.8.0-58 +Description: Linux kernel version specific tools for version 4.8.0-58 + This package provides the architecture dependant parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version 4.8.0-58 on + 64 bit x86. + +Package: linux-cloud-tools-4.8.0-58-generic-lpae +Build-Profiles: +Architecture: armhf +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-cloud-tools-4.8.0-58 +Description: Linux kernel version specific cloud tools for version 4.8.0-58 + This package provides the architecture dependant parts for kernel + version locked tools for cloud for version 4.8.0-58 on + 64 bit x86. + +Package: linux-udebs-generic-lpae +Build-Profiles: +XC-Package-Type: udeb +Section: debian-installer +Architecture: armhf +Depends: ${udeb:Depends} +Description: Metapackage depending on kernel udebs + This package depends on the all udebs that the kernel build generated, + for easier version and migration tracking. + + +Package: linux-image-4.8.0-58-lowlatency +Build-Profiles: +Architecture: i386 amd64 +Section: kernel +Priority: optional +Provides: linux-image, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules, virtualbox-guest-modules [i386 amd64 x32]${linux:rprovides} +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools | linux-initramfs-tool, kmod +Recommends: grub-pc [i386 amd64 x32] | grub-efi-amd64 [amd64 x32] | grub-efi-ia32 [i386 amd64 x32] | grub [i386 amd64 x32] | lilo [i386 amd64 x32] | flash-kernel [armhf arm64] +Suggests: fdutils, linux-doc-4.8.0 | linux-source-4.8.0, linux-tools, linux-headers-4.8.0-58-lowlatency +Conflicts: flash-kernel (<< 3.0~rc.4ubuntu64) [arm64] +Description: Linux kernel image for version 4.8.0 on 64 bit x86 SMP + This package contains the Linux kernel image for version 4.8.0 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 Lowlatency processors. + . + Geared toward desktop and server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-lowlatency meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-4.8.0-58-lowlatency +Build-Profiles: +Architecture: i386 amd64 +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.8.0-58-lowlatency, crda | wireless-crda +Description: Linux kernel extra modules for version 4.8.0 on 64 bit x86 SMP + This package contains the Linux kernel extra modules for version 4.8.0 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 Lowlatency processors. + . + Geared toward desktop and server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-lowlatency meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-4.8.0-58-lowlatency +Build-Profiles: +Architecture: i386 amd64 +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-4.8.0-58, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 4.8.0 on 64 bit x86 SMP + This package provides kernel header files for version 4.8.0 on + 64 bit x86 SMP. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-4.8.0-58/debian.README.gz for details. + +Package: linux-image-4.8.0-58-lowlatency-dbgsym +Build-Profiles: +Architecture: i386 amd64 +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 4.8.0 on 64 bit x86 SMP + This package provides a kernel debug image for version 4.8.0 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-4.8.0-58-lowlatency +Build-Profiles: +Architecture: i386 amd64 +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-tools-4.8.0-58 +Description: Linux kernel version specific tools for version 4.8.0-58 + This package provides the architecture dependant parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version 4.8.0-58 on + 64 bit x86. + +Package: linux-cloud-tools-4.8.0-58-lowlatency +Build-Profiles: +Architecture: i386 amd64 +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-cloud-tools-4.8.0-58 +Description: Linux kernel version specific cloud tools for version 4.8.0-58 + This package provides the architecture dependant parts for kernel + version locked tools for cloud for version 4.8.0-58 on + 64 bit x86. + +Package: linux-udebs-lowlatency +Build-Profiles: +XC-Package-Type: udeb +Section: debian-installer +Architecture: i386 amd64 +Depends: ${udeb:Depends} +Description: Metapackage depending on kernel udebs + This package depends on the all udebs that the kernel build generated, + for easier version and migration tracking. + + +Package: linux-image-4.8.0-58-powerpc-e500mc +Build-Profiles: +Architecture: powerpc +Section: kernel +Priority: optional +Provides: linux-image, fuse-module, redhat-cluster-modules, ivtv-modules${linux:rprovides} +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools | linux-initramfs-tool, kmod +Recommends: grub-ieee1275 +Suggests: fdutils, linux-doc-4.8.0 | linux-source-4.8.0, linux-tools, linux-headers-4.8.0-58-powerpc-e500mc +Conflicts: flash-kernel (<< 3.0~rc.4ubuntu64) [arm64] +Description: Linux kernel image for version 4.8.0 on 32-bit Freescale Power e500mc + This package contains the Linux kernel image for version 4.8.0 on + 32-bit Freescale Power e500mc. + . + 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 32-bit Freescale Power e500mc processors. + . + Geared toward server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-powerpc-e500mc meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-4.8.0-58-powerpc-e500mc +Build-Profiles: +Architecture: powerpc +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.8.0-58-powerpc-e500mc, crda | wireless-crda +Description: Linux kernel extra modules for version 4.8.0 on 32-bit Freescale Power e500mc + This package contains the Linux kernel extra modules for version 4.8.0 on + 32-bit Freescale Power e500mc. + . + 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 32-bit Freescale Power e500mc processors. + . + Geared toward server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-powerpc-e500mc meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-4.8.0-58-powerpc-e500mc +Build-Profiles: +Architecture: powerpc +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-4.8.0-58, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 4.8.0 on 32-bit Freescale Power e500mc + This package provides kernel header files for version 4.8.0 on + 32-bit Freescale Power e500mc. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-4.8.0-58/debian.README.gz for details. + +Package: linux-image-4.8.0-58-powerpc-e500mc-dbgsym +Build-Profiles: +Architecture: powerpc +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 4.8.0 on 32-bit Freescale Power e500mc + This package provides a kernel debug image for version 4.8.0 on + 32-bit Freescale Power e500mc. + . + 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-4.8.0-58-powerpc-e500mc +Build-Profiles: +Architecture: powerpc +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-tools-4.8.0-58 +Description: Linux kernel version specific tools for version 4.8.0-58 + This package provides the architecture dependant parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version 4.8.0-58 on + 64 bit x86. + +Package: linux-cloud-tools-4.8.0-58-powerpc-e500mc +Build-Profiles: +Architecture: powerpc +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-cloud-tools-4.8.0-58 +Description: Linux kernel version specific cloud tools for version 4.8.0-58 + This package provides the architecture dependant parts for kernel + version locked tools for cloud for version 4.8.0-58 on + 64 bit x86. + +Package: linux-udebs-powerpc-e500mc +Build-Profiles: +XC-Package-Type: udeb +Section: debian-installer +Architecture: powerpc +Depends: ${udeb:Depends} +Description: Metapackage depending on kernel udebs + This package depends on the all udebs that the kernel build generated, + for easier version and migration tracking. + + +Package: linux-image-4.8.0-58-powerpc-smp +Build-Profiles: +Architecture: powerpc +Section: kernel +Priority: optional +Provides: linux-image, fuse-module, redhat-cluster-modules, ivtv-modules${linux:rprovides} +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools | linux-initramfs-tool, kmod +Recommends: yaboot +Suggests: fdutils, linux-doc-4.8.0 | linux-source-4.8.0, linux-tools, linux-headers-4.8.0-58-powerpc-smp +Conflicts: flash-kernel (<< 3.0~rc.4ubuntu64) [arm64] +Description: Linux kernel image for version 4.8.0 on 32-bit PowerPC SMP + This package contains the Linux kernel image for version 4.8.0 on + 32-bit PowerPC 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 32-bit PowerPC SMP processors. + . + Geared toward desktop or server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-powerpc-smp meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-4.8.0-58-powerpc-smp +Build-Profiles: +Architecture: powerpc +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.8.0-58-powerpc-smp, crda | wireless-crda +Description: Linux kernel extra modules for version 4.8.0 on 32-bit PowerPC SMP + This package contains the Linux kernel extra modules for version 4.8.0 on + 32-bit PowerPC 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 32-bit PowerPC SMP processors. + . + Geared toward desktop or server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-powerpc-smp meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-4.8.0-58-powerpc-smp +Build-Profiles: +Architecture: powerpc +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-4.8.0-58, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 4.8.0 on 32-bit PowerPC SMP + This package provides kernel header files for version 4.8.0 on + 32-bit PowerPC SMP. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-4.8.0-58/debian.README.gz for details. + +Package: linux-image-4.8.0-58-powerpc-smp-dbgsym +Build-Profiles: +Architecture: powerpc +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 4.8.0 on 32-bit PowerPC SMP + This package provides a kernel debug image for version 4.8.0 on + 32-bit PowerPC 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-4.8.0-58-powerpc-smp +Build-Profiles: +Architecture: powerpc +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-tools-4.8.0-58 +Description: Linux kernel version specific tools for version 4.8.0-58 + This package provides the architecture dependant parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version 4.8.0-58 on + 64 bit x86. + +Package: linux-cloud-tools-4.8.0-58-powerpc-smp +Build-Profiles: +Architecture: powerpc +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-cloud-tools-4.8.0-58 +Description: Linux kernel version specific cloud tools for version 4.8.0-58 + This package provides the architecture dependant parts for kernel + version locked tools for cloud for version 4.8.0-58 on + 64 bit x86. + +Package: linux-udebs-powerpc-smp +Build-Profiles: +XC-Package-Type: udeb +Section: debian-installer +Architecture: powerpc +Depends: ${udeb:Depends} +Description: Metapackage depending on kernel udebs + This package depends on the all udebs that the kernel build generated, + for easier version and migration tracking. + + +Package: linux-image-4.8.0-58-powerpc64-emb +Build-Profiles: +Architecture: powerpc +Section: kernel +Priority: optional +Provides: linux-image, fuse-module, redhat-cluster-modules, ivtv-modules${linux:rprovides} +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools | linux-initramfs-tool, kmod +Recommends: grub-ieee1275 +Suggests: fdutils, linux-doc-4.8.0 | linux-source-4.8.0, linux-tools, linux-headers-4.8.0-58-powerpc64-emb +Conflicts: flash-kernel (<< 3.0~rc.4ubuntu64) [arm64] +Description: Linux kernel image for version 4.8.0 on 64-bit PowerPC SMP Book3E + This package contains the Linux kernel image for version 4.8.0 on + 64-bit PowerPC SMP Book3E. + . + 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 64-bit PowerPC SMP Book3E processors. + . + Geared toward desktop or server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-powerpc64-emb meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-4.8.0-58-powerpc64-emb +Build-Profiles: +Architecture: powerpc +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.8.0-58-powerpc64-emb, crda | wireless-crda +Description: Linux kernel extra modules for version 4.8.0 on 64-bit PowerPC SMP Book3E + This package contains the Linux kernel extra modules for version 4.8.0 on + 64-bit PowerPC SMP Book3E. + . + 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 64-bit PowerPC SMP Book3E processors. + . + Geared toward desktop or server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-powerpc64-emb meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-4.8.0-58-powerpc64-emb +Build-Profiles: +Architecture: powerpc +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-4.8.0-58, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 4.8.0 on 64-bit PowerPC SMP Book3E + This package provides kernel header files for version 4.8.0 on + 64-bit PowerPC SMP Book3E. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-4.8.0-58/debian.README.gz for details. + +Package: linux-image-4.8.0-58-powerpc64-emb-dbgsym +Build-Profiles: +Architecture: powerpc +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 4.8.0 on 64-bit PowerPC SMP Book3E + This package provides a kernel debug image for version 4.8.0 on + 64-bit PowerPC SMP Book3E. + . + 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-4.8.0-58-powerpc64-emb +Build-Profiles: +Architecture: powerpc +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-tools-4.8.0-58 +Description: Linux kernel version specific tools for version 4.8.0-58 + This package provides the architecture dependant parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version 4.8.0-58 on + 64 bit x86. + +Package: linux-cloud-tools-4.8.0-58-powerpc64-emb +Build-Profiles: +Architecture: powerpc +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-cloud-tools-4.8.0-58 +Description: Linux kernel version specific cloud tools for version 4.8.0-58 + This package provides the architecture dependant parts for kernel + version locked tools for cloud for version 4.8.0-58 on + 64 bit x86. + +Package: linux-udebs-powerpc64-emb +Build-Profiles: +XC-Package-Type: udeb +Section: debian-installer +Architecture: powerpc +Depends: ${udeb:Depends} +Description: Metapackage depending on kernel udebs + This package depends on the all udebs that the kernel build generated, + for easier version and migration tracking. + --- linux-4.8.0.orig/debian/control-scripts/extra-post +++ linux-4.8.0/debian/control-scripts/extra-post @@ -0,0 +1,14 @@ +#!/bin/sh +set -e + +case "$0::$1" in +*.postinst::configure|*.postrm::remove) + depmod -a -F /boot/System.map-=V =V || true + for dir in "/etc/kernel/postinst.d" "/etc/kernel/postinst.d/=V" + do + if [ -d "$dir" ]; then + run-parts --verbose --exit-on-error --arg="=V" --arg="/boot/=K-=V" "$dir" + fi + done + ;; +esac --- linux-4.8.0.orig/debian/control-scripts/headers-postinst +++ linux-4.8.0/debian/control-scripts/headers-postinst @@ -0,0 +1,126 @@ +#!/usr/bin/perl +# -*- Mode: Cperl -*- +# debian.postinst --- +# Author : Manoj Srivastava ( srivasta@pilgrim.umass.edu ) +# Created On : Sat Apr 27 05:42:43 1996 +# Created On Node : melkor.pilgrim.umass.edu +# Last Modified By : Manoj Srivastava +# Last Modified On : Sat Aug 5 13:20:22 2006 +# Last Machine Used: glaurung.internal.golden-gryphon.com +# Update Count : 45 +# Status : Unknown, Use with caution! +# HISTORY : +# Description : +# +# +# +# arch-tag: 1c716174-2f0a-476d-a626-a1322e62503a +# + + +$|=1; + +# Predefined values: +my $version = "=V"; +my $kimage = "=K"; +my $package_name = "linux-image-$version"; + + +# Ignore all invocations uxcept when called on to configure. +exit 0 unless ($ARGV[0] && $ARGV[0] =~ /configure/); + +#known variables +my $image_dest = "/"; +my $realimageloc = "/boot/"; +my $silent_modules = ''; +my $modules_base = '/lib/modules'; +my $CONF_LOC = '/etc/kernel-img.conf'; +# remove multiple leading slashes; make sure there is at least one. +$realimageloc =~ s|^/*|/|o; +$realimageloc =~ s|/+|/|o; + +chdir '/usr/src' or die "Could not chdir to /usr/src:$!"; + +if (-r "$CONF_LOC" && -f "$CONF_LOC" ) { + if (open(CONF, "$CONF_LOC")) { + while () { + chomp; + s/\#.*$//g; + next if /^\s*$/; + + $header_postinst_hook = "$1" if /^\s*header_postinst_hook\s*=\s*(\S+)/ig; + } + close CONF; + } +} + +sub exec_script { + my $type = shift; + my $script = shift; + print STDERR "Running $type hook script $script.\n"; + system ("$script $version $realimageloc$kimage-$version") && + print STDERR "User $type hook script [$script] "; + if ($?) { + if ($? == -1) { + print STDERR "failed to execute: $!\n"; + } + elsif ($? & 127) { + printf STDERR "died with signal %d, %s coredump\n", + ($? & 127), ($? & 128) ? 'with' : 'without'; + } + else { + printf STDERR "exited with value %d\n", $? >> 8; + } + exit $? >> 8; + } +} +sub run_hook { + my $type = shift; + my $script = shift; + if ($script =~ m,^/,) { + # Full path provided for the hook script + if (-x "$script") { + &exec_script($type,$script); + } + else { + die "The provided $type hook script [$script] could not be run.\n"; + } + } + else { + # Look for it in a safe path + for my $path ('/bin', '/sbin', '/usr/bin', '/usr/sbin') { + if (-x "$path/$script") { + &exec_script($type, "$path/$script"); + return 0; + } + } + # No luck + print STDERR "Could not find $type hook script [$script].\n"; + die "Looked in: '/bin', '/sbin', '/usr/bin', '/usr/sbin'\n"; + } +} + +## Run user hook script here, if any +if (-x "$header_postinst_hook") { + &run_hook("postinst", $header_postinst_hook); +} + +if (-d "/etc/kernel/header_postinst.d") { + print STDERR "Examining /etc/kernel/header_postinst.d.\n"; + system ("run-parts --verbose --exit-on-error --arg=$version " . + "--arg=$realimageloc$kimage-$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +if (-d "/etc/kernel/header_postinst.d/$version") { + print STDERR "Examining /etc/kernel/header_postinst.d/$version.\n"; + system ("run-parts --verbose --exit-on-error --arg=$version " . + "--arg=$realimageloc$kimage-$version " . + "/etc/kernel/header_postinst.d/$version") && + die "Failed to process /etc/kernel/header_postinst.d/$version"; +} + +exit 0; + +__END__ --- linux-4.8.0.orig/debian/control-scripts/postinst +++ linux-4.8.0/debian/control-scripts/postinst @@ -0,0 +1,1137 @@ +#! /usr/bin/perl +# OriginalAuthor : Manoj Srivastava ( srivasta@pilgrim.umass.edu ) +# +# Customized for Ubuntu by: Ben Collins + +#use strict; #for debugging +use Cwd 'abs_path'; + +$|=1; + +# Predefined values: +my $version = "=V"; +my $link_in_boot = ""; # Should be empty, mostly +my $no_symlink = ""; # Should be empty, mostly +my $reverse_symlink = ""; # Should be empty, mostly +my $do_symlink = "Yes"; # target machine defined +my $do_boot_enable = "Yes"; # target machine defined +my $do_bootfloppy = "Yes"; # target machine defined +my $do_bootloader = "Yes"; # target machine defined +my $move_image = ''; # target machine defined +my $kimage = "=K"; # Should be empty, mostly +my $loader = "=L"; # lilo, silo, quik, palo, vmelilo, nettrom, arcboot or delo +my $image_dir = "/boot"; # where the image is located +my $clobber_modules = ''; # target machine defined +my $relative_links = ""; # target machine defined +my $initrd = "YES"; # initrd kernel +my $do_initrd = ''; # Normally we do not +my $use_hard_links = ''; # hardlinks do not work across fs boundaries +my $postinst_hook = ''; #Normally we do not +my $postrm_hook = ''; #Normally we do not +my $preinst_hook = ''; #Normally we do not +my $prerm_hook = ''; #Normally we do not +my $minimal_swap = ''; # Do not swap symlinks +my $ignore_depmod_err = ''; # normally we do not +my $kernel_arch = "=B"; +my $ramdisk = "/usr/sbin/update-initramfs"; # List of tools to create initial ram fs. +my $notifier = "/usr/share/update-notifier/notify-reboot-required"; +my $package_name = "linux-image-$version"; +my $explicit_do_loader = 'Yes'; + +my $Loader = "NoLOADER"; # +$Loader = "LILO" if $loader =~ /^lilo/io; +$Loader = "SILO" if $loader =~ /^silo/io; +$Loader = "QUIK" if $loader =~ /^quik/io; +$Loader = "yaboot" if $loader =~ /^yaboot/io; +$Loader = "PALO" if $loader =~ /^palo/io; +$Loader = "NETTROM" if $loader =~ /^nettrom/io; +$Loader = "VMELILO" if $loader =~ /^vmelilo/io; +$Loader = "ZIPL" if $loader =~ /^zipl/io; +$Loader = "ELILO" if $loader =~ /^elilo/io; +$Loader = "ARCBOOT" if $loader =~ /^arcboot/io; +$Loader = "DELO" if $loader =~ /^delo/io; + +# This should not point to /tmp, because of security risks. +my $temp_file_name = "/var/log/$loader" . "_log.$$"; + +#known variables +my $image_dest = "/"; +my $realimageloc = "/$image_dir/"; +my $have_conffile = ""; +my $silent_modules = ''; +my $silent_loader = ''; +my $warn_reboot = 'Yes'; # Warn that we are installing a version of + # the kernel we are running + +my $modules_base = '/lib/modules'; +my $CONF_LOC = '/etc/kernel-img.conf'; + +# Ignore all invocations except when called on to configure. +exit 0 unless $ARGV[0] =~ /configure/; + +my $DEBUG = 0; + +# Do some preliminary sanity checks here to ensure we actually have an +# valid image dir +chdir('/') or die "could not chdir to /:$!\n"; +die "Internal Error: ($image_dir) is not a directory!\n" + unless -d $image_dir; + +# remove multiple leading slashes; make sure there is at least one. +$realimageloc =~ s|^/*|/|o; +$realimageloc =~ s|/+|/|o; +die "Internal Error: ($realimageloc) is not a directory!\n" + unless -d $realimageloc; + +if (-r "$CONF_LOC" && -f "$CONF_LOC" ) { + if (open(CONF, "$CONF_LOC")) { + while () { + chomp; + s/\#.*$//g; + next if /^\s*$/; + + $do_symlink = "" if /^\s*do_symlinks\s*=\s*(no|false|0)\s*$/ig; + $no_symlink = "" if /^\s*no_symlinks\s*=\s*(no|false|0)\s*$/ig; + $reverse_symlink = "" if /^\s*reverse_symlink\s*=\s*(no|false|0)\s*$/ig; + $link_in_boot = "" if /^\s*image_in_boot\s*=\s*(no|false|0)\s*$/ig; + $link_in_boot = "" if /^\s*link_in_boot\s*=\s*(no|false|0)\s*$/ig; + $move_image = "" if /^\s*move_image\s*=\s*(no|false|0)\s*$/ig; + $clobber_modules = '' if /^\s*clobber_modules\s*=\s*(no|false|0)\s*$/ig; + $do_boot_enable = '' if /^\s*do_boot_enable\s*=\s*(no|false|0)\s*$/ig; + $do_bootfloppy = '' if /^\s*do_bootfloppy\s*=\s*(no|false|0)\s*$/ig; + $relative_links = '' if /^\s*relative_links \s*=\s*(no|false|0)\s*$/ig; + $do_bootloader = '' if /^\s*do_bootloader\s*=\s*(no|false|0)\s*$/ig; + $explicit_do_loader = '' if /^\s*do_bootloader\s*=\s*(no|false|0)\s*$/ig; + $do_initrd = '' if /^\s*do_initrd\s*=\s*(no|false|0)\s*$/ig; + $use_hard_links = '' if /^\s*use_hard_links\s*=\s*(no|false|0)\s*$/ig; + $silent_modules = '' if /^\s*silent_modules\s*=\s*(no|false|0)\s*$/ig; + $silent_loader = '' if /^\s*silent_loader\s*=\s*(no|false|0)\s*$/ig; + $warn_reboot = '' if /^\s*warn_reboot\s*=\s*(no|false|0)\s*$/ig; + $minimal_swap = '' if /^\s*minimal_swap\s*=\s*(no|false|0)\s*$/ig; + $ignore_depmod_err = '' if /^\s*ignore_depmod_err\s*=\s*(no|false|0)\s*$/ig; + + $do_symlink = "Yes" if /^\s*do_symlinks\s*=\s*(yes|true|1)\s*$/ig; + $no_symlink = "Yes" if /^\s*no_symlinks\s*=\s*(yes|true|1)\s*$/ig; + $reverse_symlink = "Yes" if /^\s*reverse_symlinks\s*=\s*(yes|true|1)\s*$/ig; + $link_in_boot = "Yes" if /^\s*image_in_boot\s*=\s*(yes|true|1)\s*$/ig; + $link_in_boot = "Yes" if /^\s*link_in_boot\s*=\s*(yes|true|1)\s*$/ig; + $move_image = "Yes" if /^\s*move_image\s*=\s*(yes|true|1)\s*$/ig; + $clobber_modules = "Yes" if /^\s*clobber_modules\s*=\s*(yes|true|1)\s*$/ig; + $do_boot_enable = "Yes" if /^\s*do_boot_enable\s*=\s*(yes|true|1)\s*$/ig; + $do_bootfloppy = "Yes" if /^\s*do_bootfloppy\s*=\s*(yes|true|1)\s*$/ig; + $do_bootloader = "Yes" if /^\s*do_bootloader\s*=\s*(yes|true|1)\s*$/ig; + $explicit_do_loader = "YES" if /^\s*do_bootloader\s*=\s*(yes|true|1)\s*$/ig; + $relative_links = "Yes" if /^\s*relative_links\s*=\s*(yes|true|1)\s*$/ig; + $do_initrd = "Yes" if /^\s*do_initrd\s*=\s*(yes|true|1)\s*$/ig; + $use_hard_links = "Yes" if /^\s*use_hard_links\s*=\s*(yes|true|1)\s*$/ig; + $silent_modules = 'Yes' if /^\s*silent_modules\s*=\s*(yes|true|1)\s*$/ig; + $silent_loader = 'Yes' if /^\s*silent_loader\s*=\s*(yes|true|1)\s*$/ig; + $warn_reboot = 'Yes' if /^\s*warn_reboot\s*=\s*(yes|true|1)\s*$/ig; + $minimal_swap = 'Yes' if /^\s*minimal_swap\s*=\s*(yes|true|1)\s*$/ig; + $ignore_depmod_err = 'Yes' if /^\s*ignore_depmod_err\s*=\s*(yes|true|1)\s*$/ig; + + $image_dest = "$1" if /^\s*image_dest\s*=\s*(\S+)/ig; + $postinst_hook = "$1" if /^\s*postinst_hook\s*=\s*(\S+)/ig; + $postrm_hook = "$1" if /^\s*postrm_hook\s*=\s*(\S+)/ig; + $preinst_hook = "$1" if /^\s*preinst_hook\s*=\s*(\S+)/ig; + $prerm_hook = "$1" if /^\s*prerm_hook\s*=\s*(\S+)/ig; + $ramdisk = "$1" if /^\s*ramdisk\s*=\s*(.+)$/ig; + } + close CONF; + $have_conffile = "Yes"; + } +} + + + +# For some versions of kernel-package, we had this warning in the +# postinst, but the rules did not really interpolate the value in. +# Here is a sanity check. +my $pattern = "=" . "I"; +$initrd=~ s/^$pattern$//; + +if ($link_in_boot) { + $image_dest = "/$image_dir/"; # same as realimageloc +} + +# Tack on at least one trainling / +$image_dest = "$image_dest/"; +$image_dest =~ s|^/*|/|o; +$image_dest =~ s|/+$|/|o; + +if (! -d "$image_dest") { + die "Expected Image Destination dir ($image_dest) to be a valid directory!\n"; +} + +# sanity +if (!($do_bootfloppy || $do_bootloader)) { + $do_boot_enable = ''; +} +if ($do_symlink && $no_symlink) { + warn "Both do_symlinks and no_symlinks options enabled; disabling no_symlinks\n"; + $no_symlink = 0; +} + +# most of our work is done in $image_dest (nominally /) +chdir("$image_dest") or die "could not chdir to $image_dest:$!\n"; + +# Paranoid check to make sure that the correct value is put in there +if (! $kimage) { $kimage = "vmlinuz"; } # Hmm. empty +elsif ($kimage =~ m/^b?uImage$/o) { $kimage = "vmlinuz"; } # these produce vmlinuz +elsif ($kimage =~ m/^b?zImage$/o) { $kimage = "vmlinuz"; } # these produce vmlinuz +elsif ($kimage =~ m/^[iI]mage$/o) { my $nop = $kimage; } +elsif ($kimage =~ m/^vmlinux$/o) { my $nop = $kimage; } +else { $kimage = "vmlinuz"; } # Default + +$ENV{KERNEL_ARCH}=$kernel_arch if $kernel_arch; + + +die "Internal Error: Could not find image (" . $realimageloc + . "$kimage-$version)\n" unless -e $realimageloc + . "$kimage-$version"; + +# search for the boot loader in the path +my $loader_exec; +($loader_exec = $loader) =~ s|.*/||; +my ($loaderloc) = grep -x, map "$_/$loader_exec", + map { length($_) ? $_ : "." } split /:/, $ENV{PATH}; + + +###################################################################### +###################################################################### +########### Test whether a relative symlinkwould be OK ####### +###################################################################### +###################################################################### +sub test_relative { + my %params = @_; + my $cwd; + + die "Internal Error: Missing Required paramater 'Old Dir' " + unless $params{'Old Dir'}; + die "Internal Error: Missing Required paramater New Dir' " + unless $params{'New Dir'}; + + + die "Internal Error: No such dir $params{'Old Dir'} " + unless -d $params{'Old Dir'}; + die "Internal Error: No such dir $params{'New Dir'} " + unless -d $params{'New Dir'}; + + # If the caller specified a test file, and it does not exist try and find + # another file to use in its stead. As we are installing kernels we can + # use any versioned file from this kernel which should be in the same place. + if (defined $params{'Test File'} and + ! -f $params{'Old Dir'} . '/' . $params{'Test File'}) { + + my @possible = glob($params{'Old Dir'} . "/*$version*"); + if ($#possible >= 0) { + $params{'Test File'} = `basename "$possible[0]"`; + chomp($params{'Test File'}); + warn "Test relative: selected $params{'Test File'}" + if $DEBUG; + } + } + + warn "Test relative: testing $params{'Old Dir'} -> $params{'New Dir'}" + if $DEBUG; + chomp($cwd = `pwd`); + chdir ($params{'New Dir'}) or die "Could not chdir to $params{'New Dir'}:$!"; + my $ok = 0; + $params{'Old Dir'} =~ s|^/*||o; + if (-d $params{'Old Dir'} ) { + if (defined $params{'Test File'}) { + if (-e $params{'Old Dir'} . $params{'Test File'}) { + $ok = 1; + } + } else { + $ok = 1; # well, backward compatibility + } + } + chdir ($cwd) or die "Could not chdir to $params{'New Dir'}:$!"; + return $ok; +} + +###################################################################### +###################################################################### +############ +###################################################################### +###################################################################### +# sub CanonicalizePath { +# my $path = join '/', @_; +# my @work = split '/', $path; +# my @out; +# my $is_absolute; + +# if (@work && $work[0] eq "") { +# $is_absolute = 1; shift @work; +# } + +# while (@work) { +# my $seg = shift @work; +# if ($seg eq "." || $seg eq "") { +# } +# elsif ($seg eq "..") { +# if (@out && $out[-1] ne "..") { +# pop @out; +# } +# else { +# # Leading "..", or "../..", etc. +# push @out, $seg; +# } +# } +# else { +# push @out, $seg; +# } +# } + +# unshift @out, "" if $is_absolute; +# return join('/', @out); +# } +###################################################################### +###################################################################### +############ +###################################################################### +###################################################################### + +sub spath { + my %params = @_; + + die "Missing Required paramater 'Old'" unless $params{'Old'}; + die "Missing Required paramater 'New'" unless $params{'New'}; + + my @olddir = split '/', `readlink -q -m $params{'Old'}`; + my @newdir = split '/', `readlink -q -m $params{'New'}`; + my @outdir = @olddir; + + my $out = ''; + my $i; + for ($i = 0; $i <= $#olddir && $i <= $#newdir; $i++) { + $out++ if ($olddir[$i] ne $newdir[$i]); + shift @outdir unless $out; + unshift @outdir, ".." if $out; + } + if ($#newdir > $#olddir) { + for ($i=0; $i < $#newdir; $i++) { + unshift @outdir, ".."; + } + } + return join ('/', @outdir); +} +###################################################################### +###################################################################### +############ +###################################################################### +###################################################################### + + +# This routine actually moves the kernel image +# From: $realimageloc/$kimage-$version (/boot/vmlinuz-2.6.12) +# To: $image_dest/$kimage-$version (/vmlinuz-2.6.12) +# Note that the image is moved to a versioned destination, but ordinary +# symlinks we create otherwise are not normally versioned +sub really_move_image { + my $src_dir = $_[0]; + my $target = $_[1]; + my $dest_dir = $_[2]; + + warn "Really move image: src_dir=$src_dir, target=$target,\n destdir=$dest_dir" + if $DEBUG; + if (-e "$target") { + # we should be in dir $dest_dir == $image_dest /, normally + rename("$target", "$target.$$") || + die "failed to move " . $dest_dir . "$target:$!"; + warn "mv $target $target.$$" if $DEBUG; + } + warn "mv -f $src_dir$target $target" if $DEBUG; + my $ret = system("mv -f " . $src_dir . "$target " . + " $target"); + if ($ret) { + die("Failed to move " . $src_dir . "$target to " + . $dest_dir . "$target"); + } + # Ok, now we may clobber the previous .old files + if (-e "$target.$$") { + rename("$target.$$", "$target.old") || + die "failed to move " . $dest_dir . "$target:$!"; + warn "mv $target.$$ $target " if $DEBUG; + } +} + +# Normally called after really_move_image; and only called if we asked for +# reversed link this routine reverses the symbolic link that is notmally +# created. Since the real kernel image has been moved over to +# $image_dest/$kimage-$version. So, this routine links +# From: $image_dest/$kimage-$version (/vmlinuz-2.6.12) +# To: $realimageloc/$kimage-$version (/boot/vmlinuz-2.6.12) +sub really_reverse_link { + my $src_dir = $_[0]; + my $link_name = $_[1]; + my $dest_dir = $_[2]; + warn "Really reverse link: src_dir=$src_dir, link name=$link_name\n" . + "\tdestdir=$dest_dir" if $DEBUG; + + my $Old = $dest_dir; + if (test_relative ('Old Dir' => $Old, 'New Dir' => $src_dir, + 'Test File' => "$link_name")) { + $Old =~ s|^/*||o; + } + # Special case is they are in the same dir + my $rel_path = spath('Old' => "$Old", 'New' => "$src_dir" ); + $Old ="" if $rel_path =~ m/^\s*$/o; + + if ($use_hard_links =~ m/YES/i) { + link($Old . "$link_name", $src_dir . "$link_name") || + die("Failed to link " . $dest_dir . "$link_name to " . $src_dir . + "$link_name:$!"); + warn "ln " . $Old . "$link_name " . $src_dir . "$link_name" if $DEBUG; + } + else { + symlink($Old . "$link_name", $src_dir . "$link_name") || + die("Failed to symbolic-link " . $dest_dir . "$link_name to " . $src_dir + . "$link_name:$!"); + warn "ln -s " . $Old . "$link_name " . $src_dir . "$link_name" if $DEBUG; + } +} + +# This routine is invoked if there is a symbolic link in place +# in $image_dest/$kimage -- so a symlink exists in the destination. +# What we are trying to determine is if we need to move the symbolic link over +# to the the .old location +sub move_p { + my $kimage = $_[0]; # Name of the symbolic link + my $image_dest = $_[1]; # The directory the links goes into + my $image_name = $_[2]; + my $src_dir = $_[3]; + my $force_move = 0; + warn "Move?: kimage=$kimage, image_dest=$image_dest, \n" . + "\timage_name=$image_name, src_dir=$src_dir" if $DEBUG; + + if ($no_symlink || $reverse_symlink) { + # we do not want links, yet we have a symbolic link here! + warn "found a symbolic link in " . $image_dest . "$kimage \n" . + "even though no_symlink is defined\n" if $no_symlink; + warn "found a symbolic link in " . $image_dest . "$kimage \n" . + "even though reverse_symlink is defined\n" if $reverse_symlink; + # make sure we change this state of affairs + $force_move = 1; + return $force_move; + } + + warn "DEBUG: OK. We found symlink, and we should have a symlink here.\n" + if $DEBUG; + my $vmlinuz_target = readlink "$kimage"; + my $real_target = ''; + my $target = `readlink -q -m "${realimageloc}${kimage}-${version}"`; + $real_target = abs_path($vmlinuz_target) if defined($vmlinuz_target); + + if (!defined($vmlinuz_target) || ! -f "$real_target") { + # what, a dangling symlink? + warn "The link " . $image_dest . "$kimage is a dangling link" . + "to $real_target\n"; + $force_move = 1; + return $force_move; + } + + + warn "DEBUG: The link $kimage points to ($vmlinuz_target)\n" if $DEBUG; + warn "DEBUG: ($vmlinuz_target) is really ($real_target)\n" if $DEBUG; + my $cwd; + chomp ($cwd=`pwd`); + if ($vmlinuz_target !~ m|^/|o) { + $vmlinuz_target = $cwd . "/" . $vmlinuz_target; + $vmlinuz_target =~ s|/+|/|o; + } + $vmlinuz_target = `readlink -q -m $vmlinuz_target`; + + if ("$vmlinuz_target" ne "$target") { + warn "DEBUG: We need to handle this.\n" if $DEBUG; + if ($minimal_swap) { + warn "DEBUG: Minimal swap.\n" if $DEBUG; + if (-l "$kimage.old") { + warn "DEBUG: There is an old link at $kimage.old\n" if $DEBUG; + my $old_target = readlink "$kimage.old"; + my $real_old_target = ''; + $real_old_target=abs_path($old_target) if defined ($old_target); + + if ($real_old_target && -f "$real_old_target") { + if ($old_target !~ m|^/|o) { + $old_target = $cwd . "/" . $old_target; + $old_target =~ s|/+|/|o; + } + $old_target = `readlink -q -m $old_target`; + if ("$old_target" ne "$target") { + $force_move = 1; + warn "DEBUG: Old link ($old_target) does not point to us ($target)\n" + if $DEBUG; + } + else { # The .old points to the current + warn "$kimage.old --> $target -- doing nothing"; + $force_move = 0; + } + } + else { + warn "DEBUG: Well, the old link does not exist -- so we move\n" + if $DEBUG; + $force_move = 1; + } + } + else { + warn "DEBUG: No .old link -- OK to move\n" + if $DEBUG; + $force_move = 1; + } + } + else { + warn "DEBUG: ok, minimal swap is no-- so we move.\n" + if $DEBUG; + $force_move = 1; + } + } + else { # already have proper link + warn "$kimage($vmlinuz_target) points to $target ($real_target) -- doing nothing"; + $force_move = 0; + } + return $force_move; +} + + +# This routine moves the symbolic link around (/vmlinuz -> /vmlinuz.old) +# It pays attention to whether we should the fact whether we should be using +# hard links or not. +sub really_move_link { + my $kimage = $_[0]; # Name of the symbolic link + my $image_dest = $_[1]; # The directory the links goes into + my $image_name = $_[2]; + my $src_dir = $_[3]; + warn "really_move_link: kimage=$kimage, image_dest=$image_dest\n" . + "\t image_name=$image_name, src_dir=$src_dir" if $DEBUG; + + # don't clobber $kimage.old quite yet + rename("$kimage", "$kimage.$$") || + die "failed to move " . $image_dest . "$kimage:$!"; + warn "mv $kimage $kimage.$$" if $DEBUG; + my $Old = $src_dir; + my $cwd; + + chomp($cwd=`pwd`); + if (test_relative ('Old Dir' => $Old, 'New Dir' => $cwd, + 'Test File' => "$image_name")) { + $Old =~ s|^/*||o; + } + # Special case is they are in the same dir + my $rel_path = spath('Old' => "$Old", 'New' => "$cwd" ); + $Old ="" if $rel_path =~ m/^\s*$/o; + + if ($use_hard_links =~ m/YES/i) { + warn "ln ${Old}${image_name} $kimage" if $DEBUG; + if (! link("${Old}${image_name}", "$kimage")) { + rename("$kimage.$$", "$kimage"); + die("Failed to link ${Old}${image_name} to " . + "${image_dest}${kimage}:$!"); + } + } + else { + warn "ln -s ${Old}${image_name} $kimage" if $DEBUG; + if (! symlink("${Old}${image_name}", "$kimage")) { + rename("$kimage.$$", "$kimage"); + die("Failed to symbolic-link ${Old}${image_name} to " . + "${image_dest}${kimage}:$!"); + } + } + + # Ok, now we may clobber the previous .old file + if (-l "$kimage.old" || ! -e "$kimage.old" ) { + rename("$kimage.$$", "$kimage.old"); + warn "mv $kimage.$$ $kimage.old" if $DEBUG; + } + else { + warn "$kimage.old is not a symlink, not clobbering\n"; + warn "rm $kimage.$$"; + unlink "$kimage.$$" if $DEBUG; + } +} + +# This routine handles a request to do symlinks, but there is no +# symlink file already there. Either we are supposed to use copy, or we are +# installing on a pristine system, or the user does not want symbolic links at +# all. We use a configuration file to tell the last two cases apart, creating +# a config file if needed. +sub handle_missing_link { + my $kimage = $_[0]; # Name of the symbolic link + my $image_dest = $_[1]; # The directory the links goes into + my $image_name = $_[2]; + my $src_dir = $_[3]; + warn "handle_missing_link: kimage=$kimage, image_dest=$image_dest\n" . + "\t image_name=$image_name, src_dir=$src_dir" if $DEBUG; + + if ($no_symlink) { + warn "cp -a --backup=t $realimageloc$image_name $kimage" if $DEBUG; + my $ret = system("cp -a --backup=t " . $realimageloc . + "$image_name " . " $kimage"); + if ($ret) { + die("Failed to copy " . $realimageloc . "$image_name to " + . $image_dest . "$kimage"); + } + } + elsif ($reverse_symlink) { + warn "mv -f $realimageloc$image_name $kimage" if $DEBUG; + my $ret = system("mv -f " . $realimageloc . "$image_name " + . "$kimage"); + if ($ret) { + die("Failed to move " . $realimageloc . "$image_name to " + . $image_dest . "$kimage"); + } + } + else { + if (! $have_conffile) { + my $ret; + my $answer=''; + $do_symlink = "Yes"; + + if (open(CONF, ">$CONF_LOC")) { + print CONF "# Kernel Image management overrides\n"; + print CONF "# See kernel-img.conf(5) for details\n"; + if ($loader =~ /palo/i) { + print CONF "link_in_boot = Yes\n"; + print CONF "do_symlinks = Yes\n"; + print CONF "relative_links = Yes\n"; + print CONF "do_bootloader = No\n"; + } else { + print CONF "do_symlinks = $do_symlink\n"; + } + close CONF; + } + $have_conffile = "Yes"; + } + } + + if (! $no_symlink && $do_symlink =~ /Yes/i) { + my $Old = $realimageloc; + my $New = $image_dest; + my $Name = "$image_name"; + my $Link_Dest = "$kimage"; + + if ($reverse_symlink) { + $Old = $image_dest; + $New = $realimageloc; + $Name = "$kimage"; + $Link_Dest = $realimageloc . "$image_name"; + } + if (test_relative ('Old Dir' => $Old, + 'New Dir' => $New, + 'Test File' => $Name)) { + $Old =~ s|^/*||o; + } + # Special case is they are in the same dir + my $rel_path = spath('Old' => "$Old", 'New' => "$New" ); + $Old ="" if $rel_path =~ m/^\s*$/o; + + symlink($Old . "$Name", "$Link_Dest") || + die("Failed to symbolic-link ${Old}$Name to $Link_Dest:$!"); + warn "ln -s ${Old}$Name $Link_Dest" if $DEBUG; + + } +} + +# This routine handles the rest of the cases, where the user has requested +# non-traditional handling, like using cp, or reverse symlinks, or hard links. +sub handle_non_symlinks { + my $kimage = $_[0]; # Name of the symbolic link + my $image_dest = $_[1]; # The directory the links goes into + my $image_name = $_[2]; + my $src_dir = $_[3]; + warn "handle_non_link: kimage=$kimage, image_dest=$image_dest\n" . + "\t image_name=$image_name, src_dir=$src_dir" if $DEBUG; + + # Save the current image. We do this in all four cases + rename("$kimage", "$kimage.$$") || + die "failed to move " . $image_dest . "$kimage:$!"; + warn "mv $kimage $kimage.$$" if $DEBUG; + + ##,#### + # case One + #`#### + if ($no_symlink) { + # Maybe /$image_dest is on a dos system? + warn "cp -a --backup=t $realimageloc$image_name $kimage" if $DEBUG; + my $ret = system("cp -a --backup=t " . $realimageloc + . "$image_name " . "$kimage"); + if ($ret) { + if (-e "$kimage.$$") { + rename("$kimage.$$", "$kimage"); + warn "mv $kimage.$$ $kimage" if $DEBUG; + } + die("Failed to copy " . $realimageloc . "$image_name to " + . $image_dest . "$kimage"); + } + } + ##,#### + # case Two + #`#### + elsif ($reverse_symlink) { # Maybe /$image_dest is on a dos system? + warn "mv -f $realimageloc$image_name $kimage" if $DEBUG; + my $ret = system("mv -f " . $realimageloc . "$image_name " + . $image_dest . "$kimage"); + if ($ret) { + if (-e "$kimage.$$") { + rename("$kimage.$$", "$kimage"); + warn "mv $kimage.$$ $kimage" if $DEBUG; + } + die("Failed to move " . $realimageloc . "$image_name to " + . $image_dest . "$kimage"); + } + my $Old = $image_dest; + if (test_relative ('Old Dir' => $Old, 'New Dir' => $realimageloc, + 'Test File' => "$kimage")) { + $Old =~ s|^/*||o; + } + # Special case is they are in the same dir + my $rel_path = spath('Old' => "$Old", 'New' => "$realimageloc" ); + $Old ="" if $rel_path =~ m/^\s*$/o; + + if ($use_hard_links =~ m/YES/i) { + warn "ln " . $Old . "$kimage " . $realimageloc . "$image_name" if $DEBUG; + if (! link($Old . "$kimage", $realimageloc . "$image_name")) { + warn "Could not link " . $image_dest . + "$kimage to $image_name :$!"; + } + } + else { + warn "ln -s " . $Old . "$kimage " . $realimageloc . "$image_name" if $DEBUG; + if (! symlink($Old . "$kimage", $realimageloc . "$image_name")) { + warn "Could not symlink " . $image_dest . + "$kimage to $image_name :$!"; + } + } + } + ##,#### + # case Three + #`#### + elsif ($use_hard_links =~ m/YES/i ) { + # Ok then. this ought to be a hard link, and hence fair game + # don't clobber $kimage.old quite yet + my $Old = $realimageloc; + my $cwd; + chomp($cwd=`pwd`); + if (test_relative ('Old Dir' => $Old, 'New Dir' => $cwd, + 'Test File' => "$image_name")) { + $Old =~ s|^/*||o; + } + # Special case is they are in the same dir + my $rel_path = spath('Old' => "$Old", 'New' => "$cwd" ); + $Old ="" if $rel_path =~ m/^\s*$/o; + + warn "ln " . $Old . "$image_name " . "$kimage" if $DEBUG; + if (! link($Old . "$image_name", "$kimage")) { + warn "mv $kimage.$$ $kimage" if $DEBUG; + rename("$kimage.$$", "$kimage"); + die("Failed to link " . $realimageloc . "$image_name to " + . $image_dest . "$kimage"); + } + } + ##,#### + # case Five!?! + #`#### + elsif ($do_symlink) { + # Ok then. this ought to be a symlink, and hence fair game + # don't clobber $kimage.old quite yet + my $Old = $realimageloc; + my $cwd; + chomp($cwd=`pwd`); + if (test_relative ('Old Dir' => $Old, 'New Dir' => $cwd, + 'Test File' => "$image_name")) { + $Old =~ s|^/*||o; + } + # Special case is they are in the same dir + my $rel_path = spath('Old' => "$Old", 'New' => "$cwd" ); + $Old ="" if $rel_path =~ m/^\s*$/o; + + warn "symlink " . $Old . "$image_name " . "$kimage" if $DEBUG; + if (! symlink($Old . "$image_name", "$kimage")) { + warn "mv $kimage.$$ $kimage" if $DEBUG; + rename("$kimage.$$", "$kimage"); + die("Failed to link " . $realimageloc . "$image_name to " + . $image_dest . "$kimage"); + } + } + ##,#### + # case Four + #`#### + else { + # We just use cp + warn "cp -a --backup=t $realimageloc$image_name $kimage" if $DEBUG; + my $ret = system("cp -a --backup=t " . $realimageloc + . "$image_name " . "$kimage"); + if ($ret) { + if (-e "$kimage.$$") { + warn "mv $kimage.$$ $kimage" if $DEBUG; + rename("$kimage.$$", "$kimage"); + } + die("Failed to copy " . $realimageloc . "$image_name to " + . $image_dest . "$kimage"); + } + } + # Ok, now we may clobber the previous .old file + warn "mv $kimage.$$ $kimage.old if -e $kimage.$$" if $DEBUG; + rename("$kimage.$$", "$kimage.old") if -e "$kimage.$$"; +} + +# This routine is responsible for setting up the symbolic links +# So, the actual kernel image lives in +# $realimageloc/$image_name (/boot/vmlinuz-2.6.12). +# This routine creates symbolic links in $image_dest/$kimage (/vmlinuz) +sub image_magic { + my $kimage = $_[0]; # Name of the symbolic link + my $image_dest = $_[1]; # The directory the links goes into + my $image_name = "$kimage-$version"; + my $src_dir = $realimageloc; + warn "image_magic: kimage=$kimage, image_dest=$image_dest\n" . + "\t image_name=$image_name, src_dir=$src_dir" if $DEBUG; + + # Well, in any case, if the destination (the symlink we are trying + # to create) is a directory, we should do nothing, except throw a + # diagnostic. + if (-d "$kimage" ) { + die ("Hmm. $kimage is a directory, which I did not expect. I am\n" . + "trying to create a symbolic link with that name linked to \n" . + "$image_dest . Since a directory exists here, my assumptions \n" . + "are way off, and I am aborting.\n" ); + exit (3); + } + + if ($move_image) { # Maybe $image_dest is in on dos, or something? + # source dir, link name, dest dir + really_move_image( $realimageloc, $image_name, $image_dest); + really_reverse_link($realimageloc, $image_name, $image_dest) + if $reverse_symlink; + return; + } + + if (-l "$kimage") { # There is a symbolic link + warn "DEBUG: There is a symlink for $kimage\n" if $DEBUG; + my $force_move = move_p($kimage, $image_dest, $image_name, $src_dir); + + if ($force_move) { + really_move_link($kimage, $image_dest, $image_name, $src_dir); + } + } + elsif (! -e "$kimage") { + # Hmm. Pristine system? How can that be? Installing from scratch? + # Or maybe the user does not want a symbolic link here. + # Possibly they do not want a link here. (we should be in / + # here[$image_dest, really] + handle_missing_link($kimage, $image_dest, $image_name, $src_dir); + } + elsif (-e "$kimage" ) { + # OK, $kimage exists -- but is not a link + handle_non_symlinks($kimage, $image_dest, $image_name, $src_dir); + } +} + +###################################################################### +###################################################################### +###################################################################### +###################################################################### + +# We may not have any modules installed +if ( -d "$modules_base/$version" ) { + print STDERR "Running depmod.\n"; + my $ret = system("depmod -a $version"); + if ($ret) { + print STDERR "Failed to run depmod\n"; + exit(1); + } +} + + + +sub find_initrd_tool { + my $hostversion = shift; + my $version = shift; + print STDERR "Finding valid ramdisk creators.\n"; + my @ramdisks = + grep { + my $args = + "$_ " . + "--supported-host-version=$hostversion " . + "--supported-target-version=$version " . + "1>/dev/null 2>&1" + ; + system($args) == 0; + } + split (/[:,\s]+/, $ramdisk); +} + +# The initrd symlink should probably be in the same dir that the +# symlinks are in +if ($initrd) { + my $success = 0; + + # Update-initramfs is called slightly different than mkinitrd and + # mkinitramfs. XXX It should really be made compatible with this stuff + # some how. + my $upgrading = 1; + if (! defined $ARGV[1] || ! $ARGV[1] || $ARGV[1] =~ m//og) { + $upgrading = 0; + } + my $ret = system("$ramdisk " . ($upgrading ? "-u" : "-c") . " -k " . $version . " >&2"); + $success = 1 unless $ret; + die "Failed to create initrd image.\n" unless $success; + if (! defined $ARGV[1] || ! $ARGV[1] || $ARGV[1] =~ m//og) { + image_magic("initrd.img", $image_dest); + } + else { + lstat("initrd.img"); + if (! -e _) { + handle_missing_link("initrd.img", $image_dest, "initrd.img-$version", + $realimageloc); + } + else { + print STDERR + "Not updating initrd symbolic links since we are being updated/reinstalled \n"; + print STDERR + "($ARGV[1] was configured last, according to dpkg)\n"; + } + } + + if ($initrd && -l "initrd" ) { + unlink "initrd"; + } + + if ($initrd && -l "$image_dir/initrd" && ! $link_in_boot) { + unlink "$image_dir/initrd"; + } +} +else { # Not making an initrd emage + if (-l "initrd.img") { + # Ooh, last image was an initrd image? in any case, we should move it. + my $target = readlink "initrd.img"; + my $real_target = ''; + $real_target = abs_path($target) if defined ($target); + + if (!defined($target) || ! -f "$real_target") { + # Eh. dangling link. can safely be removed. + unlink("initrd.img"); + } else { + if (-l "initrd.img.old" || ! -e "initrd.img.old" ) { + rename("initrd.img", "initrd.img.old"); + } else { + warn "initrd.img.old is not a symlink, not clobbering\n"; + unlink("initrd.img"); + } + } + } +} + +# Warn of a reboot +if (-x $notifier) { + system($notifier); +} + +# Let programs know not to hibernate if the kernel that would be used for +# resume-from-hibernate is likely to differ from the currently running kernel. +system("mountpoint -q /var/run"); +if ($? eq 0) { + system("touch /var/run/do-not-hibernate"); +} + +# Only change the symlinks if we are not being upgraded +if (! defined $ARGV[1] || ! $ARGV[1] || $ARGV[1] =~ m//og) { + image_magic($kimage, $image_dest); +} +else { + lstat("$kimage"); + if (! -e _) { + handle_missing_link($kimage, $image_dest, "$kimage-$version", + $realimageloc); + } + else { + print STDERR + "Not updating image symbolic links since we are being updated/reinstalled \n"; + print STDERR + "($ARGV[1] was configured last, according to dpkg)\n"; + } +} + +# We used to have System.* files in / +if (-e "/System.map" || -e "/System.old") { + unlink '/System.map' if -e '/System.map'; + unlink '/System.old' if -e '/System.old'; +} + +# creating some info about kernel and initrd +if ($DEBUG) { + my $ksize=sprintf("%.0f",(stat($realimageloc . + "$kimage-$version"))[7]/1024)."kB"; + my $initrdsize=''; + if ($initrd) { + $initrdsize=sprintf("%.0f",(stat($realimageloc . + "initrd.img-$version"))[7]/1024)."kB"; + } + + print STDERR <<"EOMSG"; +A new kernel image has been installed at $realimageloc$kimage-$version + (Size: $ksize) + +Symbolic links, unless otherwise specified, can be found in $image_dest + +EOMSG + ; + + if ($initrd) { + print STDERR <<"EOMSGA"; + + Initial rootdisk image: ${realimageloc}initrd.img-$version (Size: $initrdsize) +EOMSGA + ; + } +} + +# set the env var stem +$ENV{'STEM'} = "linux"; +sub exec_script { + my $type = shift; + my $script = shift; + print STDERR "Running $type hook script $script.\n"; + system ("$script $version $realimageloc$kimage-$version") && + print STDERR "User $type hook script [$script] "; + if ($?) { + if ($? == -1) { + print STDERR "failed to execute: $!\n"; + } + elsif ($? & 127) { + printf STDERR "died with signal %d, %s coredump\n", + ($? & 127), ($? & 128) ? 'with' : 'without'; + } + else { + printf STDERR "exited with value %d\n", $? >> 8; + } + exit $? >> 8; + } +} +sub run_hook { + my $type = shift; + my $script = shift; + if ($script =~ m,^/,) { + # Full path provided for the hook script + if (-x "$script") { + &exec_script($type,$script); + } + else { + die "The provided $type hook script [$script] could not be run.\n"; + } + } + else { + # Look for it in a safe path + for my $path ('/bin', '/sbin', '/usr/bin', '/usr/sbin') { + if (-x "$path/$script") { + &exec_script($type, "$path/$script"); + return 0; + } + } + # No luck + print STDERR "Could not find $type hook script [$script].\n"; + die "Looked in: '/bin', '/sbin', '/usr/bin', '/usr/sbin'\n"; + } +} + +my $options; +for (@ARGV) { + s,','\\'',g; + $options .= " '$_'"; +} +$ENV{'DEB_MAINT_PARAMS'}="$options"; + +## Run user hook script here, if any +if ($postinst_hook) { + &run_hook("postinst", $postinst_hook); +} + +if (-d "/etc/kernel/postinst.d") { + print STDERR "Examining /etc/kernel/postinst.d.\n"; + system ("run-parts --verbose --exit-on-error --arg=$version " . + "--arg=$realimageloc$kimage-$version " . + "/etc/kernel/postinst.d") && + die "Failed to process /etc/kernel/postinst.d"; +} + +if (-d "/etc/kernel/postinst.d/$version") { + print STDERR "Examining /etc/kernel/postinst.d/$version.\n"; + system ("run-parts --verbose --exit-on-error --arg=$version " . + "--arg=$realimageloc$kimage-$version " . + "/etc/kernel/postinst.d/$version") && + die "Failed to process /etc/kernel/postinst.d/$version"; +} + +LOADER: { + last unless $do_boot_enable; # Exit if explicitly asked to + + last if $loader =~ /silo/i; # SILO does not have to be executed. + last if $loader =~ /yaboot/i; # yaboot does not have to be executed. + last if $loader =~ /milo/i; # MILO does not have to be executed. + last if $loader =~ /nettrom/i; # NETTROM does not have to be executed. + last if $loader =~ /arcboot/i; # ARCBOOT does not have to be executed. + last if $loader =~ /delo/i; # DELO does not have to be executed. + last if $loader =~ /quik/i; # maintainer asked quik invocation to be ignored + + last unless $loaderloc; + last unless -x $loaderloc; + last unless $do_bootloader; + + if (-T "/etc/$loader.conf") { + # Trust and use the existing lilo.conf. + print STDERR "You already have a $Loader configuration in /etc/$loader.conf\n"; + my $ret = &run_lilo(); + exit $ret if $ret; + } +} + + +sub run_lilo (){ + my $ret; + # Try and figure out if the user really wants lilo to be run -- + # since the default is to run the boot laoder, which is ! grub -- but + # the user may be using grub now, and not changed the default. + + # So, if the user has explicitly asked for the loader to be run, or + # if there is no postinst hook, or if there is no grub installed -- + # we are OK. Or else, we ask. + if ($explicit_do_loader || (! ($postinst_hook && -x '/usr/sbin/grub'))) { + print STDERR "Running boot loader as requested\n"; + } else { + print STDERR "Ok, not running $loader\n"; + } + if ($loader =~ /^lilo/io or $loader =~ /vmelilo/io) { + print STDERR "Testing $loader.conf ... \n"; + unlink $temp_file_name; # security + $ret = system("$loaderloc -t >$temp_file_name 2>&1"); + if ($ret) { + print STDERR "Boot loader test failed\n"; + return $ret; + } + unlink "$temp_file_name"; + print STDERR "Testing successful.\n"; + print STDERR "Installing the "; + print STDERR "partition " if $loader =~ /^lilo/io; + print STDERR "boot sector... \n"; + } + + print STDERR "Running $loaderloc ... \n"; + if ($loader =~ /^elilo/io) { + $ret = system("$loaderloc 2>&1 | tee $temp_file_name"); + } else { + $ret = system("$loaderloc >$temp_file_name 2>&1"); + } + if ($ret) { + print STDERR "Boot loader failed to run\n"; + return $ret; + } + unlink $temp_file_name; + print STDERR "Installation successful.\n"; + return 0; +} + +exit 0; + +__END__ + --- linux-4.8.0.orig/debian/control-scripts/postrm +++ linux-4.8.0/debian/control-scripts/postrm @@ -0,0 +1,361 @@ +#! /usr/bin/perl +# -*- Mode: Cperl -*- +# image.postrm --- +# Author : Manoj Srivastava ( srivasta@glaurung.green-gryphon.com ) +# Created On : Sat May 15 11:05:13 1999 +# Created On Node : glaurung.green-gryphon.com +# Last Modified By : Manoj Srivastava +# Last Modified On : Wed Sep 13 11:26:19 2006 +# Last Machine Used: glaurung.internal.golden-gryphon.com +# Update Count : 57 +# Status : Unknown, Use with caution! +# HISTORY : +# Description : +# +# $Id: image.postrm,v 1.31 2003/10/07 16:24:20 srivasta Exp $ +# + + +# +#use strict; #for debugging +use Cwd 'abs_path'; + +$|=1; + +# Predefined values: +my $version = "=V"; +my $link_in_boot = ""; # Should be empty, mostly +my $no_symlink = ""; # Should be empty, mostly +my $reverse_symlink = ""; # Should be empty, mostly +my $do_symlink = "Yes"; # target machine defined +my $do_boot_enable = "Yes"; # target machine defined +my $do_bootfloppy = "Yes"; # target machine defined +my $do_bootloader = "Yes"; # target machine defined +my $move_image = ''; # target machine defined +my $kimage = "=K"; # Should be empty, mostly +my $loader = "=L"; # lilo, silo, quik, palo, vmelilo, or nettrom +my $image_dir = "/boot"; # where the image is located +my $clobber_modules = ''; # target machine defined +my $initrd = "YES"; # initrd kernel +my $do_initrd = ''; # Normally, we don't +my $warn_initrd = 'YES'; # Normally we do +my $use_hard_links = ''; # hardlinks do not work across fs boundaries +my $postinst_hook = ''; #Normally we do not +my $postrm_hook = ''; #Normally we do not +my $preinst_hook = ''; #Normally we do not +my $prerm_hook = ''; #Normally we do not +my $minimal_swap = ''; # Do not swap symlinks +my $ignore_depmod_err = ''; # normally we do not +my $relink_build_link = 'YES'; # There is no harm in checking the link +my $force_build_link = ''; # we shall not create a dangling link +my $kernel_arch = "=B"; +my $ramdisk = "/usr/sbin/update-initramfs"; +my $package_name = "linux-image-$version"; + +my $Loader = "NoLOADER"; # +$Loader = "LILO" if $loader =~ /^lilo/io; +$Loader = "SILO" if $loader =~ /^silo/io; +$Loader = "QUIK" if $loader =~ /^quik/io; +$Loader = "yaboot" if $loader =~ /^yaboot/io; +$Loader = "PALO" if $loader =~ /^palo/io; +$Loader = "NETTROM" if $loader =~ /^nettrom/io; +$Loader = "VMELILO" if $loader =~ /^vmelilo/io; +$Loader = "ZIPL" if $loader =~ /^zipl/io; +$Loader = "ELILO" if $loader =~ /^elilo/io; + + +# This should not point to /tmp, because of security risks. +my $temp_file_name = "/var/log/$loader" . "_log.$$"; + +#known variables +my @boilerplate = (); +my @silotemplate = (); +my @quiktemplate = (); +my @palotemplate = (); +my @vmelilotemplate = (); +my $bootdevice = ''; +my $rootdevice = ''; +my $rootdisk = ''; +my $rootpartition = ''; +my $image_dest = "/"; +my $realimageloc = "/$image_dir/"; +my $have_conffile = ""; +my $CONF_LOC = '/etc/kernel-img.conf'; +my $relative_links = ''; +my $silent_modules = ''; +my $silent_loader = ''; +my $warn_reboot = 'Yes'; # Warn that we are installing a version of + # the kernel we are running + +chdir('/') or die "could not chdir to /:$!\n"; +# remove multiple leading slashes; make sure there is at least one. +$realimageloc =~ s|^/*|/|o; +$realimageloc =~ s|/+|/|o; + + +if (-r "$CONF_LOC" && -f "$CONF_LOC" ) { + if (open(CONF, "$CONF_LOC")) { + while () { + chomp; + s/\#.*$//g; + next if /^\s*$/; + + $do_symlink = "" if /^\s*do_symlinks\s*=\s*(no|false|0)\s*$/ig; + $no_symlink = "" if /^\s*no_symlinks\s*=\s*(no|false|0)\s*$/ig; + $reverse_symlink = "" if /^\s*reverse_symlinks\s*=\s*(no|false|0)\s*$/ig; + $link_in_boot = "" if /^\s*image_in_boot\s*=\s*(no|false|0)\s*$/ig; + $link_in_boot = "" if /^\s*link_in_boot\s*=\s*(no|false|0)\s*$/ig; + $move_image = "" if /^\s*move_image\s*=\s*(no|false|0)\s*$/ig; + $clobber_modules = '' if /^\s*clobber_modules\s*=\s*(no|false|0)\s*$/ig; + $do_boot_enable = '' if /^\s*do_boot_enable\s*=\s*(no|false|0)\s*$/ig; + $do_bootfloppy = '' if /^\s*do_bootfloppy\s*=\s*(no|false|0)\s*$/ig; + $relative_links = '' if /^\s*relative_links \s*=\s*(no|false|0)\s*$/ig; + $do_bootloader = '' if /^\s*do_bootloader\s*=\s*(no|false|0)\s*$/ig; + $do_initrd = '' if /^\s*do_initrd\s*=\s*(no|false|0)\s*$/ig; + $warn_initrd = '' if /^\s*warn_initrd\s*=\s*(no|false|0)\s*$/ig; + $use_hard_links = '' if /^\s*use_hard_links\s*=\s*(no|false|0)\s*$/ig; + $silent_modules = '' if /^\s*silent_modules\s*=\s*(no|false|0)\s*$/ig; + $silent_loader = '' if /^\s*silent_loader\s*=\s*(no|false|0)\s*$/ig; + $warn_reboot = '' if /^\s*warn_reboot\s*=\s*(no|false|0)\s*$/ig; + $minimal_swap = '' if /^\s*minimal_swap\s*=\s*(no|false|0)\s*$/ig; + $ignore_depmod_err = '' if /^\s*ignore_depmod_err\s*=\s*(no|false|0)\s*$/ig; + $relink_build_link = '' if /^\s*relink_build_link\s*=\s*(no|false|0)\s*$/ig; + $force_build_link = '' if /^\s*force_build_link\s*=\s*(no|false|0)\s*$/ig; + + $do_symlink = "Yes" if /^\s*do_symlinks\s*=\s*(yes|true|1)\s*$/ig; + $no_symlink = "Yes" if /^\s*no_symlinks\s*=\s*(yes|true|1)\s*$/ig; + $reverse_symlink = "Yes" if /^\s*reverse_symlinks\s*=\s*(yes|true|1)\s*$/ig; + $link_in_boot = "Yes" if /^\s*image_in_boot\s*=\s*(yes|true|1)\s*$/ig; + $link_in_boot = "Yes" if /^\s*link_in_boot\s*=\s*(yes|true|1)\s*$/ig; + $move_image = "Yes" if /^\s*move_image\s*=\s*(yes|true|1)\s*$/ig; + $clobber_modules = "Yes" if /^\s*clobber_modules\s*=\s*(yes|true|1)\s*$/ig; + $do_boot_enable = "Yes" if /^\s*do_boot_enable\s*=\s*(yes|true|1)\s*$/ig; + $do_bootfloppy = "Yes" if /^\s*do_bootfloppy\s*=\s*(yes|true|1)\s*$/ig; + $do_bootloader = "Yes" if /^\s*do_bootloader\s*=\s*(yes|true|1)\s*$/ig; + $relative_links = "Yes" if /^\s*relative_links\s*=\s*(yes|true|1)\s*$/ig; + $do_initrd = "Yes" if /^\s*do_initrd\s*=\s*(yes|true|1)\s*$/ig; + $warn_initrd = "Yes" if /^\s*warn_initrd\s*=\s*(yes|true|1)\s*$/ig; + $use_hard_links = "Yes" if /^\s*use_hard_links\s*=\s*(yes|true|1)\s*$/ig; + $silent_modules = 'Yes' if /^\s*silent_modules\s*=\s*(yes|true|1)\s*$/ig; + $silent_loader = 'Yes' if /^\s*silent_loader\s*=\s*(yes|true|1)\s*$/ig; + $warn_reboot = 'Yes' if /^\s*warn_reboot\s*=\s*(yes|true|1)\s*$/ig; + $minimal_swap = 'Yes' if /^\s*minimal_swap\s*=\s*(yes|true|1)\s*$/ig; + $ignore_depmod_err = 'Yes' if /^\s*ignore_depmod_err\s*=\s*(yes|true|1)\s*$/ig; + $relink_build_link = 'Yes' if /^\s*relink_build_link\s*=\s*(yes|true|1)\s*$/ig; + $force_build_link = 'Yes' if /^\s*force_build_link\s*=\s*(yes|true|1)\s*$/ig; + + $image_dest = "$1" if /^\s*image_dest\s*=\s*(\S+)/ig; + $postinst_hook = "$1" if /^\s*postinst_hook\s*=\s*(\S+)/ig; + $postrm_hook = "$1" if /^\s*postrm_hook\s*=\s*(\S+)/ig; + $preinst_hook = "$1" if /^\s*preinst_hook\s*=\s*(\S+)/ig; + $prerm_hook = "$1" if /^\s*prerm_hook\s*=\s*(\S+)/ig; + $ramdisk = "$1" if /^\s*ramdisk\s*=\s*(.+)$/ig; + } + close CONF; + $have_conffile = "Yes"; + } +} + +if ($link_in_boot) { + $image_dest = "/$image_dir/"; + $image_dest =~ s|^/*|/|o; +} + +$image_dest = "$image_dest/"; +$image_dest =~ s|/+$|/|o; + +# The destdir may be gone by now. +if (-d "$image_dest") { + chdir("$image_dest") or die "could not chdir to $image_dest:$!\n"; +} + +# Paranoid check to make sure that the correct value is put in there +if (! $kimage) {$kimage = "vmlinuz"} # Hmm. empty +elsif ($kimage =~ m/^b?uImage$/o) {$kimage = "vmlinuz"} # these produce vmlinuz +elsif ($kimage =~ m/^b?zImage$/o) {$kimage = "vmlinuz"} # these produce vmlinuz +elsif ($kimage =~ m/^[iI]mage$/o) { my $nop = $kimage;} +elsif ($kimage =~ m/^vmlinux$/o) { my $nop = $kimage;} +else {$kimage = "vmlinuz"} # default + +$ENV{KERNEL_ARCH}=$kernel_arch if $kernel_arch; + + +###################################################################### +###################################################################### +############ +###################################################################### +###################################################################### +sub remove_sym_link { + my $bad_image = $_[0]; + + warn "Removing symbolic link $bad_image \n"; + if ($loader =~ /lilo/i) + { + warn "Unless you used the optional flag in lilo, \n"; + } + warn " you may need to re-run your boot loader" . ($loader ? "[$loader]":"") + . "\n"; + # Remove the dangling link + unlink "$bad_image"; +} + +###################################################################### +###################################################################### +############ +###################################################################### +###################################################################### +sub CanonicalizePath { + my $path = join '/', @_; + my @work = split '/', $path; + my @out; + my $is_absolute; + + if (@work && $work[0] eq "") { $is_absolute = 1; shift @work; } + + while (@work) { + my $seg = shift @work; + if ($seg eq "." || $seg eq "") { + } elsif ($seg eq "..") { + if (@out && $out[-1] ne "..") { + pop @out; + } else { + # Leading "..", or "../..", etc. + push @out, $seg; + } + } else { + push @out, $seg; + } + } + + unshift @out, "" if $is_absolute; + return join('/', @out); +} + +###################################################################### +###################################################################### +############ +###################################################################### +###################################################################### +# This removes dangling symlinks. What do we do about hard links? Surely a +# something with the nane $image_dest . "$kimage" ought not to be left behind? +sub image_magic { + my $kimage = $_[0]; + my $image_dest = $_[1]; + + if (-l "$kimage") { + # There is a symbolic link + my $force_move = 0; + my $vmlinuz_target = readlink "$kimage"; + my $real_target = ''; + $real_target = abs_path($vmlinuz_target) if defined ($vmlinuz_target); + if (!defined($vmlinuz_target) || ! -f "$real_target") { + # what, a dangling symlink? + warn "The link " . $image_dest . "$kimage is a damaged link\n"; + # Remove the dangling link + &remove_sym_link("$kimage"); + } + else { + my $canonical_target = CanonicalizePath("$vmlinuz_target"); + if (! -e $canonical_target) { + warn "The link " . $image_dest . "$kimage is a dangling link\n"; + &remove_sym_link("$kimage"); + } + } + } +} + +# set the env var stem +$ENV{'STEM'} = "linux"; + +sub exec_script { + my $type = shift; + my $script = shift; + print STDERR "Running $type hook script $script.\n"; + system ("$script $version $realimageloc$kimage-$version") && + print STDERR "User $type hook script [$script] "; + if ($?) { + if ($? == -1) { + print STDERR "failed to execute: $!\n"; + } + elsif ($? & 127) { + printf STDERR "died with signal %d, %s coredump\n", + ($? & 127), ($? & 128) ? 'with' : 'without'; + } + else { + printf STDERR "exited with value %d\n", $? >> 8; + } + } +} +sub run_hook { + my $type = shift; + my $script = shift; + if ($script =~ m,^/,) { + # Full path provided for the hook script + if (-x "$script") { + &exec_script($type,$script); + } + else { + warn "The provided $type hook script [$script] could not be run.\n"; + } + } + else { + # Look for it in a safe path + for my $path ('/bin', '/sbin', '/usr/bin', '/usr/sbin') { + if (-x "$path/$script") { + &exec_script($type, "$path/$script"); + return 0; + } + } + # No luck + print STDERR "Could not find $type hook script [$script].\n"; + warn "Looked in: '/bin', '/sbin', '/usr/bin', '/usr/sbin'\n"; + } +} + +my $options; +for (@ARGV) { + s,','\\'',g; + $options .= " '$_'"; +} +$ENV{'DEB_MAINT_PARAMS'}="$options"; + +## Run user hook script here, if any +if ($postrm_hook) { + &run_hook("postrm", $postrm_hook); +} +if (-d "/etc/kernel/postrm.d") { + warn "Examining /etc/kernel/postrm.d .\n"; + system ("run-parts --verbose --exit-on-error --arg=$version " . + "--arg=$realimageloc$kimage-$version " . + "/etc/kernel/postrm.d") && + die "Failed to process /etc/kernel/postrm.d"; +} +if (-d "/etc/kernel/postrm.d/$version") { + warn "Examining /etc/kernel/postrm.d/$version .\n"; + system ("run-parts --verbose --exit-on-error --arg=$version " . + "--arg=$realimageloc$kimage-$version " . + "/etc/kernel/postrm.d/$version") && + die "Failed to process /etc/kernel/postrm.d/$version"; +} + +# check and remove damaged and dangling symlinks +if ($ARGV[0] !~ /upgrade/) { + system("$ramdisk -d -k " . $version . " > /dev/null 2>&1"); + if (-f $realimageloc . "initrd.img-$version.bak") { + unlink $realimageloc . "initrd.img-$version.bak"; + } + image_magic($kimage, $image_dest); + image_magic($kimage . ".old", $image_dest); + image_magic("initrd.img", $image_dest) if $initrd; + image_magic("initrd.img.old", $image_dest) if $initrd; +} + +exit 0; + +__END__ + + + + + + --- linux-4.8.0.orig/debian/control-scripts/preinst +++ linux-4.8.0/debian/control-scripts/preinst @@ -0,0 +1,315 @@ +#! /usr/bin/perl +# -*- Mode: Cperl -*- +# image.preinst --- +# Author : Manoj Srivastava ( srivasta@tiamat.datasync.com ) +# Created On : Sun Jun 14 03:38:02 1998 +# Created On Node : tiamat.datasync.com +# Last Modified By : Manoj Srivastava +# Last Modified On : Sun Sep 24 14:04:42 2006 +# Last Machine Used: glaurung.internal.golden-gryphon.com +# Update Count : 99 +# Status : Unknown, Use with caution! +# HISTORY : +# Description : +# +# + +# +#use strict; #for debugging + +use Debconf::Client::ConfModule qw(:all); +version('2.0'); +my $capb=capb("backup"); + +$|=1; + +# Predefined values: +my $version = "=V"; +my $link_in_boot = ""; # Should be empty, mostly +my $no_symlink = ""; # Should be empty, mostly +my $reverse_symlink = ""; # Should be empty, mostly +my $do_symlink = "Yes"; # target machine defined +my $do_boot_enable = "Yes"; # target machine defined +my $do_bootfloppy = "Yes"; # target machine defined +my $do_bootloader = "Yes"; # target machine defined +my $move_image = ''; # target machine defined +my $kimage = "=K"; # Should be empty, mostly +my $loader = "=L"; # lilo, silo, quik, palo, vmelilo, nettrom + # or elilo +my $image_dir = "/boot"; # where the image is located +my $initrd = "YES"; # initrd kernel +my $use_hard_links = ''; # hardlinks do not wirk across fs boundaries +my $postinst_hook = ''; #Normally we do not +my $postrm_hook = ''; #Normally we do not +my $preinst_hook = ''; #Normally we do not +my $prerm_hook = ''; #Normally we do not +my $minimal_swap = ''; # Do not swap symlinks +my $ignore_depmod_err = ''; # normally we do not +my $relink_src_link = 'YES'; # There is no harm in checking the link +my $relink_build_link = 'YES'; # There is no harm in checking the link +my $force_build_link = ''; # There is no harm in checking the link +my $kernel_arch = "=B"; +my $ramdisk = "/usr/sbin/update-initramfs"; # List of tools to create initial ram fs. +my $package_name = "linux-image-$version"; + +my $Loader = "NoLOADER"; # +$Loader = "LILO" if $loader =~ /^lilo/io; +$Loader = "SILO" if $loader =~ /^silo/io; +$Loader = "QUIK" if $loader =~ /^quik/io; +$Loader = "yaboot" if $loader =~ /^yaboot/io; +$Loader = "PALO" if $loader =~ /^palo/io; +$Loader = "NETTROM" if $loader =~ /^nettrom/io; +$Loader = "VMELILO" if $loader =~ /^vmelilo/io; +$Loader = "ZIPL" if $loader =~ /^zipl/io; +$Loader = "ELILO" if $loader =~ /^elilo/io; + + +#known variables +my @boilerplate = (); +my @silotemplate = (); +my @quiktemplate = (); +my @palotemplate = (); +my @vmelilotemplate = (); +my $bootdevice = ''; +my $rootdevice = ''; +my $rootdisk = ''; +my $rootpartition = ''; +my $image_dest = "/"; +my $realimageloc = "/$image_dir/"; +my $have_conffile = ""; +my $CONF_LOC = '/etc/kernel-img.conf'; +my $relative_links = ''; +my $silent_loader = ''; +my $warn_reboot = ''; # Warn that we are installing a version of + # the kernel we are running + +my $modules_base = '/lib/modules'; + +die "Pre inst Internal error. Aborting." unless $version; + +exit 0 if $ARGV[0] =~ /abort-upgrade/; +exit 1 unless $ARGV[0] =~ /(install|upgrade)/; + +$arch = `uname -i`; +if ($arch =~ m/86/) { + system ("grep -q ' pae ' /proc/cpuinfo"); + if ($?) { + print STDERR "This kernel does not support a non-PAE CPU.\n"; + exit 1; + } +} + +# remove multiple leading slashes; make sure there is at least one. +$realimageloc =~ s|^/*|/|o; +$realimageloc =~ s|/+|/|o; + +if (-r "$CONF_LOC" && -f "$CONF_LOC" ) { + if (open(CONF, "$CONF_LOC")) { + while () { + chomp; + s/\#.*$//g; + next if /^\s*$/; + + $do_symlink = "" if /^\s*do_symlinks\s*=\s*(no|false|0)\s*$/ig; + $no_symlink = "" if /^\s*no_symlinks\s*=\s*(no|false|0)\s*$/ig; + $reverse_symlink = "" if /^\s*reverse_symlinks\s*=\s*(no|false|0)\s*$/ig; + $link_in_boot = "" if /^\s*image_in_boot\s*=\s*(no|false|0)\s*$/ig; + $link_in_boot = "" if /^\s*link_in_boot\s*=\s*(no|false|0)\s*$/ig; + $move_image = "" if /^\s*move_image\s*=\s*(no|false|0)\s*$/ig; + $do_boot_enable = '' if /^\s*do_boot_enable\s*=\s*(no|false|0)\s*$/ig; + $do_bootfloppy = '' if /^\s*do_bootfloppy\s*=\s*(no|false|0)\s*$/ig; + $do_bootloader = '' if /^\s*do_bootloader\s*=\s*(no|false|0)\s*$/ig; + $relative_links = '' if /^\s*relative_links \s*=\s*(no|false|0)\s*$/ig; + $use_hard_links = '' if /^\s*use_hard_links\s*=\s*(no|false|0)\s*$/ig; + $silent_loader = '' if /^\s*silent_loader\s*=\s*(no|false|0)\s*$/ig; + $warn_reboot = '' if /^\s*warn_reboot\s*=\s*(no|false|0)\s*$/ig; + $minimal_swap = '' if /^\s*minimal_swap\s*=\s*(no|false|0)\s*$/ig; + $ignore_depmod_err = '' if /^\s*ignore_depmod_err\s*=\s*(no|false|0)\s*$/ig; + $relink_src_link = '' if /^\s*relink_src_link\s*=\s*(no|false|0)\s*$/ig; + $relink_build_link = '' if /^\s*relink_build_link\s*=\s*(no|false|0)\s*$/ig; + $force_build_link = '' if /^\s*force_build_link\s*=\s*(no|false|0)\s*$/ig; + + $do_symlink = "Yes" if /^\s*do_symlinks\s*=\s*(yes|true|1)\s*$/ig; + $no_symlink = "Yes" if /^\s*no_symlinks\s*=\s*(yes|true|1)\s*$/ig; + $reverse_symlink = "Yes" if /^\s*reverse_symlinks\s*=\s*(yes|true|1)\s*$/ig; + $link_in_boot = "Yes" if /^\s*image_in_boot\s*=\s*(yes|true|1)\s*$/ig; + $link_in_boot = "Yes" if /^\s*link_in_boot\s*=\s*(yes|true|1)\s*$/ig; + $move_image = "Yes" if /^\s*move_image\s*=\s*(yes|true|1)\s*$/ig; + $do_boot_enable = "Yes" if /^\s*do_boot_enable\s*=\s*(yes|true|1)\s*$/ig; + $do_bootfloppy = "Yes" if /^\s*do_bootfloppy\s*=\s*(yes|true|1)\s*$/ig; + $do_bootloader = "Yes" if /^\s*do_bootloader\s*=\s*(yes|true|1)\s*$/ig; + $relative_links = "Yes" if /^\s*relative_links\s*=\s*(yes|true|1)\s*$/ig; + $use_hard_links = "Yes" if /^\s*use_hard_links\s*=\s*(yes|true|1)\s*$/ig; + $silent_loader = 'Yes' if /^\s*silent_loader\s*=\s*(yes|true|1)\s*$/ig; + $warn_reboot = 'Yes' if /^\s*warn_reboot\s*=\s*(yes|true|1)\s*$/ig; + $minimal_swap = 'Yes' if /^\s*minimal_swap\s*=\s*(yes|true|1)\s*$/ig; + $ignore_depmod_err = 'Yes' if /^\s*ignore_depmod_err\s*=\s*(yes|true|1)\s*$/ig; + $relink_src_link = 'Yes' if /^\s*relink_src_link\s*=\s*(yes|true|1)\s*$/ig; + $relink_build_link = 'Yes' if /^\s*relink_build_link\s*=\s*(yes|true|1)\s*$/ig; + $force_build_link = 'Yes' if /^\s*force_build_link\s*=\s*(yes|true|1)\s*$/ig; + + $image_dest = "$1" if /^\s*image_dest\s*=\s*(\S+)/ig; + $postinst_hook = "$1" if /^\s*postinst_hook\s*=\s*(\S+)/ig; + $postrm_hook = "$1" if /^\s*postrm_hook\s*=\s*(\S+)/ig; + $preinst_hook = "$1" if /^\s*preinst_hook\s*=\s*(\S+)/ig; + $prerm_hook = "$1" if /^\s*prerm_hook\s*=\s*(\S+)/ig; + $ramdisk = "$1" if /^\s*ramdisk\s*=\s*(.+)$/ig; + } + close CONF; + $have_conffile = "Yes"; + $have_conffile = "Yes"; # stop perl complaining + } +} + +$ENV{KERNEL_ARCH}=$kernel_arch if $kernel_arch; + +# About to upgrade this package from version $2 TO THIS VERSION. +# "prerm upgrade" has already been called for the old version of +# this package. + +sub find_initrd_tool { + my $hostversion = shift; + my $version = shift; + my @ramdisks = + grep { + my $args = + "$_ " . + "--supported-host-version=$hostversion " . + "--supported-target-version=$version " . + "1>/dev/null 2>&1" + ; + system($args) == 0; + } + split (/[:,\s]+/, $ramdisk); +} + +sub check { + my $version = shift; + my $lib_modules="$modules_base/$version"; + my $message = ''; + + if (-d "$lib_modules") { + opendir(DIR, $lib_modules) || die "can’t opendir $lib_modules: $!"; + my @children = readdir(DIR); + if ($#children > 1) { + my @dirs = grep { -d "$lib_modules/$_" } @children; + if ($#dirs > 1) { # we have subdirs + my $dir_message=''; + for my $dir (@dirs) { + if ($dir =~/kernel$/) { + $dir_message="An older install was detected.\n"; + } + else { + $dir_message="Module sub-directories were detected.\n" + unless $dir_message; + } + } + $message += $dir_message if $dir_message; + } + + my @links = grep { -l "$lib_modules/$_" } @children; + if ($#links > -1) { + my $links_message = ''; + for my $link (@links) { + next if ($link =~ /^build$/); + next if ($link =~ /^source$/); + $links_message = "Symbolic links were detected in $modules_base/$version.\n"; + } + $message += $links_message if $links_message; + } + my @files = grep { -f "$lib_modules/$_" } @children; + $message += "Additional files also exist in $modules_base/$version.\n" + if ($#files > -1); + } + } + else { $message .= "$lib_modules does not exist. ";} + return $message; +} + +if (-d "$modules_base/$version") { + my $errors=check($version); + warn "Info:\n$errors\n" if $errors; +} + +# set the env var stem +$ENV{'STEM'} = "linux"; + +sub exec_script { + my $type = shift; + my $script = shift; + print STDERR "Running $type hook script $script.\n"; + system ("$script $version $realimageloc$kimage-$version") && + print STDERR "User $type hook script [$script] "; + if ($?) { + if ($? == -1) { + print STDERR "failed to execute: $!\n"; + } + elsif ($? & 127) { + printf STDERR "died with signal %d, %s coredump\n", + ($? & 127), ($? & 128) ? 'with' : 'without'; + } + else { + printf STDERR "exited with value %d\n", $? >> 8; + } + exit $? >> 8; + } +} +sub run_hook { + my $type = shift; + my $script = shift; + if ($script =~ m,^/,) { + # Full path provided for the hook script + if (-x "$script") { + &exec_script($type,$script); + } + else { + die "The provided $type hook script [$script] could not be run.\n"; + } + } + else { + # Look for it in a safe path + for my $path ('/bin', '/sbin', '/usr/bin', '/usr/sbin') { + if (-x "$path/$script") { + &exec_script($type, "$path/$script"); + return 0; + } + } + # No luck + print STDERR "Could not find $type hook script [$script].\n"; + die "Looked in: '/bin', '/sbin', '/usr/bin', '/usr/sbin'\n"; + } +} + + +my $options; +for (@ARGV) { + s,','\\'',g; + $options .= " '$_'"; +} +$ENV{'DEB_MAINT_PARAMS'}="$options"; + +## Run user hook script here, if any +if (-x "$preinst_hook") { + &run_hook("preinst", $preinst_hook); +} +if (-d "/etc/kernel/preinst.d") { + print STDERR "Examining /etc/kernel/preinst.d/\n"; + system ("run-parts --verbose --exit-on-error --arg=$version" . + " --arg=$realimageloc$kimage-$version" . + " /etc/kernel/preinst.d") && + die "Failed to process /etc/kernel/preinst.d"; +} +if (-d "/etc/kernel/preinst.d/$version") { + print STDERR "Examining /etc/kernel/preinst.d/$version.\n"; + system ("run-parts --verbose --exit-on-error --arg=$version" . + " --arg=$realimageloc$kimage-$version" . + " /etc/kernel/preinst.d/$version") && + die "Failed to process /etc/kernel/preinst.d/$version"; +} +print STDERR "Done.\n"; + +exit 0; + +__END__ + + --- linux-4.8.0.orig/debian/control-scripts/prerm +++ linux-4.8.0/debian/control-scripts/prerm @@ -0,0 +1,312 @@ +#! /usr/bin/perl +# -*- Mode: Perl -*- +# image.prerm --- +# Author : root ( root@melkor.pilgrim.umass.edu ) +# Created On : Fri May 17 03:28:59 1996 +# Created On Node : melkor.pilgrim.umass.edu +# Last Modified By : Manoj Srivastava +# Last Modified On : Sat Aug 5 13:14:17 2006 +# Last Machine Used: glaurung.internal.golden-gryphon.com +# Update Count : 85 +# Status : Unknown, Use with caution! +# HISTORY : +# Description : +# +# +# $Id: image.prerm,v 1.22 2003/10/07 16:24:20 srivasta Exp $ +# +# +#use strict; + +$|=1; +# Predefined values: +my $version = "=V"; +my $link_in_boot = ""; # Should be empty, mostly +my $no_symlink = ""; # Should be empty, mostly +my $reverse_symlink = ""; # Should be empty, mostly +my $do_symlinks = "Yes"; # target machine defined +my $do_boot_enable = "Yes"; # target machine defined +my $do_bootfloppy = "Yes"; # target machine defined +my $do_bootloader = "Yes"; # target machine defined +my $move_image = ''; # target machine defined +my $kimage = "=K"; # Should be empty, mostly +my $loader = "=L"; # lilo, silo, quik, palo, vmelilo, or nettrom +my $image_dir = "/boot"; # where the image is located +my $clobber_modules = ''; # target machine defined +my $initrd = "YES"; # initrd kernel +my $use_hard_links = ''; # hardlinks do not wirk across fs boundaries +my $postinst_hook = ''; #Normally we do not +my $postrm_hook = ''; #Normally we do not +my $preinst_hook = ''; #Normally we do not +my $prerm_hook = ''; #Normally we do not +my $minimal_swap = ''; # Do not swap symlinks +my $ignore_depmod_err = ''; # normally we do not +my $relink_build_link = 'YES'; # There is no harm in checking the link +my $force_build_link = ''; # There is no harm in checking the link +my $kernel_arch = "=B"; +my $ramdisk = "/usr/sbin/update-initramfs"; +my $package_name = "linux-image-$version"; + +my $Loader = "NoLOADER"; # +$Loader = "LILO" if $loader =~ /^lilo/io; +$Loader = "SILO" if $loader =~ /^silo/io; +$Loader = "QUIK" if $loader =~ /^quik/io; +$Loader = "yaboot" if $loader =~ /^yaboot/io; +$Loader = "PALO" if $loader =~ /^palo/io; +$Loader = "NETTROM" if $loader =~ /^nettrom/io; +$Loader = "VMELILO" if $loader =~ /^vmelilo/io; +$Loader = "ZIPL" if $loader =~ /^zipl/io; +$Loader = "ELILO" if $loader =~ /^elilo/io; + + +# This should not point to /tmp, because of security risks. +my $temp_file_name = "/var/log/$loader" . "_log.$$"; + +#known variables +my $image_dest = "/"; +my $realimageloc = "/$image_dir/"; +my $have_conffile = ""; +my $CONF_LOC = '/etc/kernel-img.conf'; +my $relative_links = ''; +my $silent_loader = ''; +my $warn_reboot = 'Yes'; # Warn that we are installing a version of + # the kernel we are running + +# remove multiple leading slashes; make sure there is at least one. +$realimageloc =~ s|^/*|/|o; +$realimageloc =~ s|/+|/|o; + +my $DEBUG = 0; + +# Variables used +my $image=''; +my $ret=0; +my $seen=''; +my $answer=''; +my $running = ''; +my $WouldInvalidate = 0; + +if ($ARGV[0] && ($ARGV[0] =~ /remove/ || $ARGV[0] =~ /upgrade/)) { + if (-l "/usr/doc/linux-image-$version") { + unlink "/usr/doc/linux-image-$version"; + } +} + +# Ignore all invocations uxcept when called on to remove +exit 0 unless ($ARGV[0] && $ARGV[0] =~ /remove/) ; + +# Paranoid check to make sure that the correct value is put in there +if (! $kimage) { $kimage = "vmlinuz";} # Hmm. empty +elsif ($kimage =~ m/^b?uImage$/o) { $kimage = "vmlinuz";} # these produce vmlinuz +elsif ($kimage =~ m/^b?zImage$/o) { $kimage = "vmlinuz";} # these produce vmlinuz +elsif ($kimage =~ m/^[iI]mage$/o) { my $nop = $kimage; } +elsif ($kimage =~ m/^vmlinux$/o) { my $nop = $kimage; } +else { $kimage = "vmlinuz";} # Default + +if (-r "$CONF_LOC" && -f "$CONF_LOC" ) { + if (open(CONF, "$CONF_LOC")) { + while () { + chomp; + s/\#.*$//g; + next if /^\s*$/; + + $do_symlink = "" if /^\s*do_symlinks\s*=\s*(no|false|0)\s*$/ig; + $no_symlink = "" if /^\s*no_symlinks\s*=\s*(no|false|0)\s*$/ig; + $reverse_symlink = "" if /^\s*reverse_symlinks\s*=\s*(no|false|0)\s*$/ig; + $link_in_boot = "" if /^\s*image_in_boot\s*=\s*(no|false|0)\s*$/ig; + $link_in_boot = "" if /^\s*link_in_boot\s*=\s*(no|false|0)\s*$/ig; + $move_image = "" if /^\s*move_image\s*=\s*(no|false|0)\s*$/ig; + $clobber_modules = '' if /^\s*clobber_modules\s*=\s*(no|false|0)\s*$/ig; + $do_boot_enable = '' if /^\s*do_boot_enable\s*=\s*(no|false|0)\s*$/ig; + $do_bootfloppy = '' if /^\s*do_bootfloppy\s*=\s*(no|false|0)\s*$/ig; + $relative_links = '' if /^\s*relative_links \s*=\s*(no|false|0)\s*$/ig; + $do_bootloader = '' if /^\s*do_bootloader\s*=\s*(no|false|0)\s*$/ig; + $do_initrd = '' if /^\s*do_initrd\s*=\s*(no|false|0)\s*$/ig; + $use_hard_links = '' if /^\s*use_hard_links\s*=\s*(no|false|0)\s*$/ig; + $silent_loader = '' if /^\s*silent_loader\s*=\s*(no|false|0)\s*$/ig; + $warn_reboot = '' if /^\s*warn_reboot\s*=\s*(no|false|0)\s*$/ig; + $minimal_swap = '' if /^\s*minimal_swap\s*=\s*(no|false|0)\s*$/ig; + $ignore_depmod_err = '' if /^\s*ignore_depmod_err\s*=\s*(no|false|0)\s*$/ig; + $relink_build_link = '' if /^\s*relink_build_link\s*=\s*(no|false|0)\s*$/ig; + $force_build_link = '' if /^\s*force_build_link\s*=\s*(no|false|0)\s*$/ig; + + + $do_symlink = "Yes" if /^\s*do_symlinks\s*=\s*(yes|true|1)\s*$/ig; + $no_symlink = "Yes" if /^\s*no_symlinks\s*=\s*(yes|true|1)\s*$/ig; + $reverse_symlink = "Yes" if /^\s*reverse_symlinks\s*=\s*(yes|true|1)\s*$/ig; + $link_in_boot = "Yes" if /^\s*image_in_boot\s*=\s*(yes|true|1)\s*$/ig; + $link_in_boot = "Yes" if /^\s*link_in_boot\s*=\s*(yes|true|1)\s*$/ig; + $move_image = "Yes" if /^\s*move_image\s*=\s*(yes|true|1)\s*$/ig; + $clobber_modules = "Yes" if /^\s*clobber_modules\s*=\s*(yes|true|1)\s*$/ig; + $do_boot_enable = "Yes" if /^\s*do_boot_enable\s*=\s*(yes|true|1)\s*$/ig; + $do_bootfloppy = "Yes" if /^\s*do_bootfloppy\s*=\s*(yes|true|1)\s*$/ig; + $do_bootloader = "Yes" if /^\s*do_bootloader\s*=\s*(yes|true|1)\s*$/ig; + $relative_links = "Yes" if /^\s*relative_links\s*=\s*(yes|true|1)\s*$/ig; + $do_initrd = "Yes" if /^\s*do_initrd\s*=\s*(yes|true|1)\s*$/ig; + $use_hard_links = "Yes" if /^\s*use_hard_links\s*=\s*(yes|true|1)\s*$/ig; + $silent_loader = 'Yes' if /^\s*silent_loader\s*=\s*(yes|true|1)\s*$/ig; + $warn_reboot = 'Yes' if /^\s*warn_reboot\s*=\s*(yes|true|1)\s*$/ig; + $minimal_swap = 'Yes' if /^\s*minimal_swap\s*=\s*(yes|true|1)\s*$/ig; + $ignore_depmod_err = 'Yes' if /^\s*ignore_depmod_err\s*=\s*(yes|true|1)\s*$/ig; + $relink_build_link = 'Yes' if /^\s*relink_build_link\s*=\s*(yes|true|1)\s*$/ig; + $force_build_link = 'Yes' if /^\s*force_build_link\s*=\s*(yes|true|1)\s*$/ig; + + $image_dest = "$1" if /^\s*image_dest\s*=\s*(\S+)/ig; + $postinst_hook = "$1" if /^\s*postinst_hook\s*=\s*(\S+)/ig; + $postrm_hook = "$1" if /^\s*postrm_hook\s*=\s*(\S+)/ig; + $preinst_hook = "$1" if /^\s*preinst_hook\s*=\s*(\S+)/ig; + $prerm_hook = "$1" if /^\s*prerm_hook\s*=\s*(\S+)/ig; + $ramdisk = "$1" if /^\s*ramdisk\s*=\s*(.+)$/ig; + } + close CONF; + $have_conffile = "Yes"; + } +} + + +$ENV{KERNEL_ARCH}=$kernel_arch if $kernel_arch; + +#check to see if we are trying to remove a running kernel +# if so we abort right now. +chop($running=`uname -r`); +if ($running eq $version) { + print STDERR "WARN: Proceeding with removing running kernel image.\n"; +} + +#Now, they have an alternate kernel which they are currently running + +# This is just us being nice to lilo users. + +chdir("/") or die "could not chdir to /:$!\n"; + +if (-f "/etc/$loader.conf") { #I know, could be a link, but .. + open (LILO, "/etc/$loader.conf") || &success(); # this is not critical + while () { + chop; + s/\#.*//; # nix the comments + next unless /^\s*image\s*=\s(\S+)/o; + $image = $1; + if ($image && -e $image) { + while (defined($image) && -l $image) { + $image = readlink ($image); + } + if (defined($image) && -e $image) { + $WouldInvalidate |= $image =~ /$kimage-$version/; + } + else { + &success(); # invalid $loader.conf file + } + } + else { + &success(); # invalid $loader.conf file + } + } + close (LILO); + if ($WouldInvalidate) { + print STFERR "WARN: Proceeding with removing running kernel image.\n"; + &success(); + } +} + + +# set the env var stem +$ENV{'STEM'} = "linux"; + +sub exec_script { + my $type = shift; + my $script = shift; + print STDERR "Running $type hook script $script.\n"; + system ("$script $version $realimageloc$kimage-$version") && + print STDERR "User $type hook script [$script] "; + if ($?) { + if ($? == -1) { + print STDERR "failed to execute: $!\n"; + } + elsif ($? & 127) { + printf STDERR "died with signal %d, %s coredump\n", + ($? & 127), ($? & 128) ? 'with' : 'without'; + } + else { + printf STDERR "exited with value %d\n", $? >> 8; + } + exit $? >> 8; + } +} +sub run_hook { + my $type = shift; + my $script = shift; + if ($script =~ m,^/,) { + # Full path provided for the hook script + if (-x "$script") { + &exec_script($type,$script); + } + else { + die "The provided $type hook script [$script] could not be run.\n"; + } + } + else { + # Look for it in a safe path + for my $path ('/bin', '/sbin', '/usr/bin', '/usr/sbin') { + if (-x "$path/$script") { + &exec_script($type, "$path/$script"); + return 0; + } + } + # No luck + print STDERR "Could not find $type hook script [$script].\n"; + die "Looked in: '/bin', '/sbin', '/usr/bin', '/usr/sbin'\n"; + } +} + + +my $options; +for (@ARGV) { + s,','\\'',g; + $options .= " '$_'"; +} +$ENV{'DEB_MAINT_PARAMS'}="$options"; + +## Run user hook script here, if any +if (-x "$prerm_hook") { + &run_hook("prerm", $prerm_hook); +} +if (-d "/etc/kernel/prerm.d") { + print STDERR "Examining /etc/kernel/prerm.d.\n"; + system ("run-parts --verbose --exit-on-error --arg=$version " . + "--arg=$realimageloc$kimage-$version /etc/kernel/prerm.d") && + die "Failed to process /etc/kernel/prerm.d"; +} +if (-d "/etc/kernel/prerm.d/$version") { + print STDERR "Examining /etc/kernel/prerm.d/$version.\n"; + system ("run-parts --verbose --exit-on-error --arg=$version" . + " --arg=$realimageloc$kimage-$version " . + "/etc/kernel/prerm.d/$version") && + die "Failed to process /etc/kernel/prerm.d/$version"; +} + +sub success () { + # NOTE: need to keep this list in sync with rules.d/2-binary-arch.mk + my %files_to_keep = ( + 'modules.builtin' => 1, + 'modules.order' => 1, + ); + my $short; + for my $file () { + $short = $file; $short =~ s,.*/,,; + if (!defined $files_to_keep{$short}) { + unlink "$file"; + } + } + exit 0; +} + + + +&success(); +exit 0; +__END__ + + + + + --- linux-4.8.0.orig/debian/copyright +++ linux-4.8.0/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'. --- linux-4.8.0.orig/debian/debian.env +++ linux-4.8.0/debian/debian.env @@ -0,0 +1 @@ +DEBIAN=debian.master --- linux-4.8.0.orig/debian/docs/README.inclusion-list +++ linux-4.8.0/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 --- linux-4.8.0.orig/debian/gbp.conf +++ linux-4.8.0/debian/gbp.conf @@ -0,0 +1,2 @@ +[buildpackage] +debian-tag = Ubuntu-%(version)s --- linux-4.8.0.orig/debian/linux-cloud-tools-common.hv-fcopy-daemon.service +++ linux-4.8.0/debian/linux-cloud-tools-common.hv-fcopy-daemon.service @@ -0,0 +1,12 @@ +# On Azure/Hyper-V systems start the hv_fcopy_daemon +# +# author "Andy Whitcroft " +[Unit] +Description=Hyper-V File Copy Protocol Daemon +ConditionVirtualization=microsoft + +[Service] +ExecStart=/usr/sbin/hv_fcopy_daemon -n + +[Install] +WantedBy=multi-user.target --- linux-4.8.0.orig/debian/linux-cloud-tools-common.hv-fcopy-daemon.upstart +++ linux-4.8.0/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 + +[Service] +ExecStart=/usr/sbin/hv_kvp_daemon -n + +[Install] +WantedBy=multi-user.target --- linux-4.8.0.orig/debian/linux-cloud-tools-common.hv-kvp-daemon.upstart +++ linux-4.8.0/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 + +[Service] +ExecStart=/usr/sbin/hv_vss_daemon -n + +[Install] +WantedBy=multi-user.target --- linux-4.8.0.orig/debian/linux-cloud-tools-common.hv-vss-daemon.upstart +++ linux-4.8.0/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 }' >$(prev_abidir)/../modules.ignore) +endif + +# Stages -- support both DEB_STAGE=stage1 and DEB_BUILD_PROFILE=bootstrap +ifeq ($(DEB_STAGE),stage1) + DEB_BUILD_PROFILES=stage1 +endif +ifneq ($(DEB_BUILD_PROFILE),) + DEB_BUILD_PROFILES=$(DEB_BUILD_PROFILE) +endif +ifneq ($(filter stage1,$(DEB_BUILD_PROFILES)),) + do_tools=false + do_doc_package=false + do_source_package=false + do_flavour_image_package=false + do_flavour_header_package=false +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 +endif + +# Disable tools build and packaging if do_tools != true +ifneq ($(do_tools),true) + do_linux_tools= + do_cloud_tools= + do_tools_common= +endif + +# Either tools package needs the common source preparation +do_any_tools=$(sort $(filter-out false,$(do_linux_tools) $(do_cloud_tools))) + +# autopkgtest -- rebuild support +# only build the first flavour on the assumption it is representative +ifeq ($(DEB_BUILD_PROFILE),autopkgtest) +flavours := $(firstword $(flavours)) +endif + +# Debian Build System targets +binary: binary-indep binary-arch + +build: build-arch build-indep + +clean: debian/control + dh_testdir + dh_testroot + dh_clean + + # d-i stuff + rm -rf $(DEBIAN)/d-i-$(arch) + # Generated on the fly. + rm -f $(DEBIAN)/d-i/firmware/$(arch)/kernel-image + + # normal build junk + rm -rf $(DEBIAN)/abi/$(release)-$(revision) + rm -rf $(builddir) + rm -f $(stampdir)/stamp-* + rm -rf $(DEBIAN)/linux-* + + # This gets rid of the d-i packages in control + cp -f $(DEBIAN)/control.stub $(DROOT)/control + cp $(DEBIAN)/changelog debian/changelog + + # Install the copyright information. + cp $(DEBIAN)/copyright debian/copyright + + # If we have a reconstruct script use it. + [ -f $(DEBIAN)/reconstruct ] && bash $(DEBIAN)/reconstruct + + # Remove generated intermediate files + rm -f $(DROOT)/control.stub $(DEBIAN)/control.stub + +distclean: clean + rm -rf $(DROOT)/control debian/changelog \ + debian/control debian/control.stub debian/copyright + +# Builds the image, arch headers and debug packages +include $(DROOT)/rules.d/2-binary-arch.mk + +# Rules for building the udebs ($(DEBIAN)-installer) +include $(DROOT)/rules.d/5-udebs.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 + +# Misc stuff +.PHONY: $(DEBIAN)/control.stub +$(DEBIAN)/control.stub: \ + $(DROOT)/scripts/control-create \ + $(DEBIAN)/control.stub.in \ + $(DEBIAN)/changelog \ + $(wildcard $(DEBIAN)/control.d/* $(DEBIAN)/sub-flavours/*.vars) + for i in $(DEBIAN)/control.stub.in; do \ + new=`echo $$i | sed 's/\.in$$//'`; \ + cat $$i | sed -e 's/PKGVER/$(release)/g' \ + -e 's/ABINUM/$(abinum)/g' \ + -e 's/SRCPKGNAME/$(src_pkg_name)/g' \ + -e 's/=HUMAN=/$(human_arch)/g' \ + > $$new; \ + done + flavours="$(sort $(wildcard $(DEBIAN)/control.d/vars.* $(DEBIAN)/sub-flavours/*.vars))";\ + for i in $$flavours; do \ + $(SHELL) $(DROOT)/scripts/control-create $$i | \ + sed -e 's/PKGVER/$(release)/g' \ + -e 's/ABINUM/$(abinum)/g' \ + -e 's/SRCPKGNAME/$(src_pkg_name)/g' \ + -e 's/=HUMAN=/$(human_arch)/g' \ + >> $(DEBIAN)/control.stub; \ + done + +.PHONY: debian/control +debian/control: $(DEBIAN)/control.stub + echo "# placebo control.stub for kernel-wedge flow change" >debian/control.stub + cp $(DEBIAN)/control.stub debian/control + export KW_DEFCONFIG_DIR=$(DEBIAN)/d-i && \ + export KW_CONFIG_DIR=$(DEBIAN)/d-i && \ + LANG=C kernel-wedge gen-control $(release)-$(abinum) | \ + perl -f $(DROOT)/scripts/misc/kernel-wedge-arch.pl $(arch) \ + >>$(CURDIR)/debian/control --- linux-4.8.0.orig/debian/rules.d/0-common-vars.mk +++ linux-4.8.0/debian/rules.d/0-common-vars.mk @@ -0,0 +1,244 @@ +# 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 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)) +prev_revision := $(word $(words $(prev_revisions)),$(prev_revisions)) + +prev_fullver ?= $(shell dpkg-parsechangelog -l$(DEBIAN)/changelog -o1 -c1 | sed -ne 's/^Version: *//p') + +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 +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/$(release)-$(revision)/$(arch) +prev_abidir := $(CURDIR)/$(DEBIAN)/abi/$(release)-$(prev_revision)/$(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=linux-image-$(abi_release) +extra_pkg_name=linux-image-extra-$(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. +do_doc_package=true +do_doc_package_content=true +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. +do_libc_dev_package=true + +# 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 + +# 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) + +# 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 + +# 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) + +# 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)" +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) --- linux-4.8.0.orig/debian/rules.d/1-maintainer.mk +++ linux-4.8.0/debian/rules.d/1-maintainer.mk @@ -0,0 +1,130 @@ +# 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 updateportsconfigs editportsconfigs autoreconstruct + +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 " updateportsconfigs : Update ports arch configs" + @echo + @echo " editportsconfigs : Update ports arch configs interactivly" + @echo " genportconfigs : Generate ports 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 " 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 $@ + rm -rf build + +updateportsconfigs defaultportsconfigs editportsconfigs genportsconfigs askconfigs: + dh_testdir; + $(SHELL) $(DROOT)/scripts/misc/kernelconfig $@ ports + rm -rf build + +printenv: + dh_testdir + @echo "src package name = $(src_pkg_name)" + @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 "gitver = $(gitver)" + @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 "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_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_x86 = $(do_tools_x86)" + @echo "do_cloud_tools = $(do_cloud_tools)" + @echo " do_tools_hyperv = $(do_tools_hyperv)" + @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 }'); \ + git log "$$baseCommit"..HEAD | \ + $(DROOT)/scripts/misc/git-ubuntu-log $(ubuntu_log_opts) + +insertchanges: autoreconstruct + @perl -w -f $(DROOT)/scripts/misc/insert-changes.pl $(DROOT) $(DEBIAN) + +autoreconstruct: + $(DROOT)/scripts/misc/gen-auto-reconstruct $(release) $(DEBIAN)/reconstruct $(DROOT)/source/options + +diffupstream: + @git diff-tree -p refs/remotes/linux-2.6/master..HEAD $(shell ls | grep -vE '^(ubuntu|$(DEBIAN)|\.git.*)') + +startnewrelease: + dh_testdir + @nextminor=$(shell expr `echo $(revision) | gawk -F. '{print $$2}'` + 1); \ + nextmajor=$(shell expr `echo $(revision) | awk -F. '{print $$1}'` + 1); \ + now="$(shell date -R)"; \ + echo "Creating new changelog set for $(release)-$$nextmajor.$$nextminor..."; \ + echo -e "$(src_pkg_name) ($(release)-$$nextmajor.$$nextminor) UNRELEASED; urgency=low\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 + --- linux-4.8.0.orig/debian/rules.d/2-binary-arch.mk +++ linux-4.8.0/debian/rules.d/2-binary-arch.mk @@ -0,0 +1,734 @@ +# 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) + +$(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.% + @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 $^ | sed -e 's/.*CONFIG_VERSION_SIGNATURE.*/CONFIG_VERSION_SIGNATURE="Ubuntu $(release)-$(revision)-$* $(raw_kernelversion)"/' > $(builddir)/build-$*/.config + find $(builddir)/build-$* -name "*.ko" | xargs rm -f + $(build_cd) $(kmake) $(build_O) -j1 silentoldconfig 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-build-% + @echo Debug: $@ + +define build_zfs = + # + # SPL/ZFS wants a fully built kernel before you can configure and build. + # It seems to be impossible to tease out the application configuration + # from the modules, but at least one can build just the modules. + # + install -d $(builddir)/build-$*/spl + rsync -a --exclude=dkms.conf --delete spl/ $(builddir)/build-$*/spl/ + cd $(builddir)/build-$*/spl; sh autogen.sh; sh configure $(splopts) + $(kmake) -C $(builddir)/build-$*/spl/module $(conc_level) + + install -d $(builddir)/build-$*/zfs + rsync -a --exclude=dkms.conf --delete zfs/ $(builddir)/build-$*/zfs/ + cd $(builddir)/build-$*/zfs; sh autogen.sh; sh configure $(zfsopts) + $(kmake) -C $(builddir)/build-$*/zfs/module $(conc_level) +endef + +# Do the actual build, including image and modules +$(stampdir)/stamp-build-%: target_flavour = $* +$(stampdir)/stamp-build-%: splopts = --with-linux=$(CURDIR) +$(stampdir)/stamp-build-%: splopts += --with-linux-obj=$(builddir)/build-$* +$(stampdir)/stamp-build-%: zfsopts = $(splopts) +$(stampdir)/stamp-build-%: zfsopts += --with-spl=$(builddir)/build-$*/spl +$(stampdir)/stamp-build-%: zfsopts += --with-spl-obj=$(builddir)/build-$*/spl +$(stampdir)/stamp-build-%: zfsopts += --prefix=/usr --with-config=kernel +$(stampdir)/stamp-build-%: bldimg = $(call custom_override,build_image,$*) +$(stampdir)/stamp-build-%: enable_zfs = $(call custom_override,do_zfs,$*) +$(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) + + $(if $(filter true,$(enable_zfs)),$(call build_zfs)) + + @touch $@ + +define install_zfs = + cd $(builddir)/build-$*/spl/module; \ + $(kmake) -C $(builddir)/build-$* SUBDIRS=`pwd` modules_install $(splopts) + cd $(builddir)/build-$*/zfs/module; \ + $(kmake) -C $(builddir)/build-$* SUBDIRS=`pwd` modules_install $(zfsopts) +endef + +# Install the finished build +install-%: pkgdir = $(CURDIR)/debian/$(bin_pkg_name)-$* +install-%: pkgdir_ex = $(CURDIR)/debian/$(extra_pkg_name)-$* +install-%: bindoc = $(pkgdir)/usr/share/doc/$(bin_pkg_name)-$* +install-%: dbgpkgdir = $(CURDIR)/debian/$(bin_pkg_name)-$*-dbgsym +install-%: signed = $(CURDIR)/debian/$(bin_pkg_name)-signed +install-%: toolspkgdir = $(CURDIR)/debian/$(tools_flavour_pkg_name)-$* +install-%: cloudpkgdir = $(CURDIR)/debian/$(cloud_flavour_pkg_name)-$* +install-%: basepkg = $(hdrs_pkg_name) +install-%: indeppkg = $(indep_hdrs_pkg_name) +install-%: kernfile = $(call custom_override,kernel_file,$*) +install-%: instfile = $(call custom_override,install_file,$*) +install-%: hdrdir = $(CURDIR)/debian/$(basepkg)-$*/usr/src/$(basepkg)-$* +install-%: target_flavour = $* +install-%: MODHASHALGO=sha512 +install-%: MODSECKEY=$(builddir)/build-$*/certs/signing_key.pem +install-%: MODPUBKEY=$(builddir)/build-$*/certs/signing_key.x509 +install-%: build_dir=$(builddir)/build-$* +install-%: enable_zfs = $(call custom_override,do_zfs,$*) +install-%: splopts = INSTALL_MOD_STRIP=1 +install-%: splopts += INSTALL_MOD_PATH=$(pkgdir)/ +install-%: splopts += INSTALL_MOD_DIR=kernel/zfs +install-%: splopts += $(conc_level) +install-%: zfsopts = $(splopts) +install-%: checks-% + @echo Debug: $@ kernel_file $(kernel_file) kernfile $(kernfile) install_file $(install_file) instfile $(instfile) + dh_testdir + dh_testroot + dh_clean -k -p$(bin_pkg_name)-$* + dh_clean -k -p$(hdrs_pkg_name)-$* +ifneq ($(skipdbg),true) + dh_clean -k -p$(dbg_pkg_name)-$* +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)/boot/$(instfile)-$(abi_release)-$* +else + install -d $(pkgdir)/boot + gzip -c9v $(builddir)/build-$*/$(kernfile) > \ + $(pkgdir)/boot/$(instfile)-$(abi_release)-$* + chmod 600 $(pkgdir)/boot/$(instfile)-$(abi_release)-$* +endif + +ifeq ($(uefi_signed),true) + install -d $(signed)/$(release)-$(revision) + # Check to see if this supports handoff, if not do not sign it. + # Check the identification area magic and version >= 0x020b + handoff=`dd if="$(pkgdir)/boot/$(instfile)-$(abi_release)-$*" bs=1 skip=514 count=6 2>/dev/null | od -s | gawk '($$1 == 0 && $$2 == 25672 && $$3 == 21362 && $$4 >= 523) { print "GOOD" }'`; \ + if [ "$$handoff" = "GOOD" ]; then \ + cp -p $(pkgdir)/boot/$(instfile)-$(abi_release)-$* \ + $(signed)/$(release)-$(revision)/$(instfile)-$(abi_release)-$*.efi; \ + fi +endif + + install -m644 $(builddir)/build-$*/.config \ + $(pkgdir)/boot/config-$(abi_release)-$* + install -m644 $(abidir)/$* \ + $(pkgdir)/boot/abi-$(abi_release)-$* + install -m600 $(builddir)/build-$*/System.map \ + $(pkgdir)/boot/System.map-$(abi_release)-$* + if [ "$(filter true,$(do_dtbs))" ]; then \ + $(build_cd) $(kmake) $(build_O) $(conc_level) dtbs_install \ + INSTALL_DTBS_PATH=$(pkgdir)/lib/firmware/$(abi_release)-$*/device-tree; \ + ( cd $(pkgdir)/lib/firmware/$(abi_release)-$*/ && find device-tree -print ) | \ + while read dtb_file; do \ + echo "$$dtb_file ?" >> $(DEBIAN)/d-i/firmware/$(arch)/kernel-image; \ + done; \ + fi +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)-$* + + $(if $(filter true,$(enable_zfs)),$(call install_zfs)) + + # + # 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/ | \ + 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 + + # Now the image scripts + install -d $(pkgdir)/DEBIAN + for script in postinst postrm preinst prerm; do \ + sed -e 's/=V/$(abi_release)-$*/g' -e 's/=K/$(instfile)/g' \ + -e 's/=L/$(loader)/g' -e 's@=B@$(build_arch)@g' \ + $(DROOT)/control-scripts/$$script > $(pkgdir)/DEBIAN/$$script; \ + chmod 755 $(pkgdir)/DEBIAN/$$script; \ + done +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)/DEBIAN; \ + for script in postinst postrm ; do \ + sed -e 's/=V/$(abi_release)-$*/g' -e 's/=K/$(instfile)/g' \ + -e 's/=L/$(loader)/g' -e 's@=B@$(build_arch)@g' \ + debian/control-scripts/extra-post > $(pkgdir_ex)/DEBIAN/$$script; \ + chmod 755 $(pkgdir_ex)/DEBIAN/$$script; \ + done; \ + 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)-$*; \ + install -d debian/$(bin_pkg_name)-$$sub/DEBIAN; \ + for script in postinst postrm preinst prerm; do \ + sed -e 's/=V/$(abi_release)-$*/g' \ + -e 's/=K/$(instfile)/g' \ + -e 's/=L/$(loader)/g' \ + -e 's@=B@$(build_arch)@g' \ + $(DROOT)/control-scripts/$$script > \ + debian/$(bin_pkg_name)-$$sub/DEBIAN/$$script;\ + chmod 755 debian/$(bin_pkg_name)-$$sub/DEBIAN/$$script;\ + done; \ + done +endif + +ifneq ($(skipdbg),true) + # Debug image is simple + install -m644 -D $(builddir)/build-$*/vmlinux \ + $(dbgpkgdir)/usr/lib/debug/boot/vmlinux-$(abi_release)-$* + $(build_cd) $(kmake) $(build_O) modules_install $(vdso) \ + INSTALL_MOD_PATH=$(dbgpkgdir)/usr/lib/debug + # Add .gnu_debuglink sections to each stripped .ko + # pointing to unstripped verson + find $(pkgdir) -name '*.ko' | sed 's|$(pkgdir)||'| while read module ; do \ + if [[ -f "$(dbgpkgdir)/usr/lib/debug/$$module" ]] ; then \ + $(CROSS_COMPILE)objcopy \ + --add-gnu-debuglink=$(dbgpkgdir)/usr/lib/debug/$$module \ + $(pkgdir)/$$module; \ + $(builddir)/build-$*/scripts/sign-file $(MODHASHALGO) \ + $(MODSECKEY) \ + $(MODPUBKEY) \ + $(pkgdir)/$$module; \ + fi; \ + done + 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) + cat $(builddir)/build-$*/.config | \ + sed -e 's/.*CONFIG_DEBUG_INFO=.*/# CONFIG_DEBUG_INFO is not set/g' > \ + $(hdrdir)/.config + chmod 644 $(hdrdir)/.config + $(kmake) O=$(hdrdir) -j1 silentoldconfig prepare scripts + # We'll symlink this stuff + rm -f $(hdrdir)/Makefile + rm -rf $(hdrdir)/include2 $(hdrdir)/source + # 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 + # 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 + install -d $(CURDIR)/debian/$(basepkg)-$*/DEBIAN + for script in postinst; do \ + sed -e 's/=V/$(abi_release)-$*/g' -e 's/=K/$(instfile)/g' \ + $(DROOT)/control-scripts/headers-$$script > \ + $(CURDIR)/debian/$(basepkg)-$*/DEBIAN/$$script; \ + chmod 755 $(CURDIR)/debian/$(basepkg)-$*/DEBIAN/$$script; \ + done + + # 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 + 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_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)-$* +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 + +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 + dh_clean -k -plinux-libc-dev + + 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) silentoldconfig + $(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) + +binary-arch-headers: install-arch-headers + @echo Debug: $@ + dh_testdir + dh_testroot +ifeq ($(do_libc_dev_package),true) +ifneq ($(DEBIAN),debian.master) + echo "non-master branch building linux-libc-dev, aborting" + exit 1 +endif + dh_installchangelogs -plinux-libc-dev + dh_installdocs -plinux-libc-dev + dh_compress -plinux-libc-dev + dh_fixperms -plinux-libc-dev + dh_installdeb -plinux-libc-dev + $(lockme) dh_gencontrol -plinux-libc-dev -- $(libc_dev_version) + dh_md5sums -plinux-libc-dev + dh_builddeb -plinux-libc-dev +endif + +binary-%: pkgimg = $(bin_pkg_name)-$* +binary-%: pkgimg_ex = $(extra_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,$*)),$(comma) spl-dkms$(comma) zfs-dkms) +binary-%: target_flavour = $* +binary-%: install-% + @echo Debug: $@ + dh_testdir + dh_testroot + + dh_installchangelogs -p$(pkgimg) + dh_installdocs -p$(pkgimg) + dh_compress -p$(pkgimg) + dh_fixperms -p$(pkgimg) -X/boot/ + dh_installdeb -p$(pkgimg) + dh_shlibdeps -p$(pkgimg) $(shlibdeps_opts) + $(lockme) dh_gencontrol -p$(pkgimg) -- -Vlinux:rprovides='$(rprovides)' + dh_md5sums -p$(pkgimg) + dh_builddeb -p$(pkgimg) -- -Zbzip2 -z9 + +ifeq ($(do_extras_package),true) + if [ -f $(DEBIAN)/control.d/$(target_flavour).inclusion-list ] ; then \ + dh_installchangelogs -p$(pkgimg_ex); \ + dh_installdocs -p$(pkgimg_ex); \ + dh_compress -p$(pkgimg_ex); \ + dh_fixperms -p$(pkgimg_ex) -X/boot/; \ + dh_installdeb -p$(pkgimg_ex); \ + dh_shlibdeps -p$(pkgimg_ex) $(shlibdeps_opts); \ + $(lockme) dh_gencontrol -p$(pkgimg_ex); \ + dh_md5sums -p$(pkgimg_ex); \ + dh_builddeb -p$(pkgimg_ex) -- -Zbzip2 -z9; \ + fi +endif + + dh_installchangelogs -p$(pkghdr) + dh_installdocs -p$(pkghdr) + dh_compress -p$(pkghdr) + dh_fixperms -p$(pkghdr) + dh_shlibdeps -p$(pkghdr) $(shlibdeps_opts) + dh_installdeb -p$(pkghdr) + $(lockme) dh_gencontrol -p$(pkghdr) + dh_md5sums -p$(pkghdr) + dh_builddeb -p$(pkghdr) + +ifneq ($(skipsub),true) + @set -e; for sub in $($(*)_sub); do \ + pkg=$(bin_pkg_name)-$$sub; \ + dh_installchangelogs -p$$pkg; \ + dh_installdocs -p$$pkg; \ + dh_compress -p$$pkg; \ + dh_fixperms -p$$pkg -X/boot/; \ + dh_shlibdeps -p$$pkg $(shlibdeps_opts); \ + dh_installdeb -p$$pkg; \ + $(lockme) dh_gencontrol -p$$pkg; \ + dh_md5sums -p$$pkg; \ + dh_builddeb -p$$pkg; \ + done +endif + +ifneq ($(skipdbg),true) + dh_installchangelogs -p$(dbgpkg) + dh_installdocs -p$(dbgpkg) + dh_compress -p$(dbgpkg) + dh_fixperms -p$(dbgpkg) + dh_installdeb -p$(dbgpkg) + $(lockme) dh_gencontrol -p$(dbgpkg) + dh_md5sums -p$(dbgpkg) + dh_builddeb -p$(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) + dh_installchangelogs -p$(pkgtools) + dh_installdocs -p$(pkgtools) + dh_compress -p$(pkgtools) + dh_fixperms -p$(pkgtools) + dh_shlibdeps -p$(pkgtools) $(shlibdeps_opts) + dh_installdeb -p$(pkgtools) + $(lockme) dh_gencontrol -p$(pkgtools) + dh_md5sums -p$(pkgtools) + dh_builddeb -p$(pkgtools) +endif +ifeq ($(do_cloud_tools),true) + dh_installchangelogs -p$(pkgcloud) + dh_installdocs -p$(pkgcloud) + dh_compress -p$(pkgcloud) + dh_fixperms -p$(pkgcloud) + dh_shlibdeps -p$(pkgcloud) $(shlibdeps_opts) + dh_installdeb -p$(pkgcloud) + $(lockme) dh_gencontrol -p$(pkgcloud) + dh_md5sums -p$(pkgcloud) + dh_builddeb -p$(pkgcloud) +endif + +ifneq ($(full_build),false) + # Clean out this flavours build directory. + rm -rf $(builddir)/build-$* + # 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_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) silentoldconfig + cd $(builddirpa) && $(kmake) prepare + cd $(builddirpa)/tools/perf && \ + $(kmake) prefix=/usr HAVE_CPLUS_DEMANGLE=1 CROSS_COMPILE=$(CROSS_COMPILE) NO_LIBPYTHON=1 NO_LIBPERL=1 PYTHON=python2.7 +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_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) +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) + dh_strip -p$(toolspkg) + dh_installchangelogs -p$(toolspkg) + dh_installdocs -p$(toolspkg) + dh_compress -p$(toolspkg) + dh_fixperms -p$(toolspkg) + dh_shlibdeps -p$(toolspkg) $(shlibdeps_opts) + dh_installdeb -p$(toolspkg) + $(lockme) dh_gencontrol -p$(toolspkg) + dh_md5sums -p$(toolspkg) + dh_builddeb -p$(toolspkg) +endif +ifeq ($(do_cloud_tools),true) + dh_strip -p$(cloudpkg) + dh_installchangelogs -p$(cloudpkg) + dh_installdocs -p$(cloudpkg) + dh_compress -p$(cloudpkg) + dh_fixperms -p$(cloudpkg) + dh_shlibdeps -p$(cloudpkg) $(shlibdeps_opts) + dh_installdeb -p$(cloudpkg) + $(lockme) dh_gencontrol -p$(cloudpkg) + dh_md5sums -p$(cloudpkg) + dh_builddeb -p$(cloudpkg) +endif + +binary-debs: signed = $(CURDIR)/debian/$(bin_pkg_name)-signed +binary-debs: signedv = $(CURDIR)/debian/$(bin_pkg_name)-signed/$(release)-$(revision) +binary-debs: signed_tar = $(src_pkg_name)_$(release)-$(revision)_$(arch).tar.gz +binary-debs: binary-perarch $(addprefix binary-,$(flavours)) + @echo Debug: $@ +ifeq ($(uefi_signed),true) + echo $(release)-$(revision) > $(signedv)/version + cd $(signedv) && ls *.efi >flavours + cd $(signed) && tar czvf ../../../$(signed_tar) . + dpkg-distaddfile $(signed_tar) raw-uefi - +endif + +build-arch-deps-$(do_flavour_image_package) += $(addprefix $(stampdir)/stamp-build-,$(flavours)) +build-arch: $(build-arch-deps-true) + @echo Debug: $@ + +ifeq ($(AUTOBUILD),) +binary-arch-deps-$(do_flavour_image_package) += binary-udebs +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: $@ + --- linux-4.8.0.orig/debian/rules.d/3-binary-indep.mk +++ linux-4.8.0/debian/rules.d/3-binary-indep.mk @@ -0,0 +1,177 @@ +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) +install-headers: + @echo Debug: $@ + dh_testdir + dh_testroot + dh_prep + +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 + +docpkg = $(doc_pkg_name) +docdir = $(CURDIR)/debian/$(docpkg)/usr/share/doc/$(docpkg) +install-doc: install-headers + @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/DocBook/ \ + $(docdir)/html/; \ + rm -rf $(docdir)/$(doc_pkg_name)-tmp; \ + fi +endif + # Copy the rest + cp -a Documentation/* $(docdir) + rm -rf $(docdir)/DocBook + 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: install-doc + @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 \ + -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: 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: install-source $(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 $(toolsman)/man1 + + 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 $(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 -d $(toolsman)/man8 + install -m644 $(CURDIR)/tools/power/x86/x86_energy_perf_policy/*.8 $(toolsman)/man8 + install -m644 $(CURDIR)/tools/power/x86/turbostat/*.8 $(toolsman)/man8 + + 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 + +install-indep: install-tools + @echo Debug: $@ + +# This is just to make it easy to call manually. Normally done in +# binary-indep target during builds. +binary-headers: 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: install-indep + @echo Debug: $@ + + dh_installchangelogs -i + dh_installdocs -i + dh_compress -i + dh_fixperms -i +ifeq ($(do_tools_common),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_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 + dh_installdeb -i + $(lockme) dh_gencontrol -i + dh_md5sums -i + dh_builddeb -i --- linux-4.8.0.orig/debian/rules.d/4-checks.mk +++ linux-4.8.0/debian/rules.d/4-checks.mk @@ -0,0 +1,27 @@ +# Check ABI for package against last release (if not same abinum) +abi-check-%: $(stampdir)/stamp-build-% + @echo Debug: $@ + install -d $(abidir) + sed -e 's/^\(.\+\)[[:space:]]\+\(.\+\)[[:space:]]\(.\+\)$$/\3 \2 \1/' \ + $(builddir)/build-$*/Module.symvers | sort > $(abidir)/$* + @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-build-% + @echo Debug: $@ + install -d $(abidir) + find $(builddir)/build-$*/ -name \*.ko | \ + sed -e 's/.*\/\([^\/]*\)\.ko/\1/' | sort > $(abidir)/$*.modules + @perl -f $(DROOT)/scripts/module-check "$*" \ + "$(prev_abidir)" "$(abidir)" $(skipmodule) + +checks-%: module-check-% abi-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)" + --- linux-4.8.0.orig/debian/rules.d/5-udebs.mk +++ linux-4.8.0/debian/rules.d/5-udebs.mk @@ -0,0 +1,77 @@ +# Do udebs if not disabled in the arch-specific makefile +binary-udebs: binary-debs + @echo Debug: $@ +ifeq ($(disable_d_i),) + @$(MAKE) --no-print-directory -f $(DROOT)/rules DEBIAN=$(DEBIAN) \ + do-binary-udebs +endif + +do-binary-udebs: linux_udeb_name=$(shell if echo $(src_pkg_name)|egrep -q '(linux-lts|linux-hwe)'; then echo $(src_pkg_name); else echo linux; fi) +do-binary-udebs: debian/control + @echo Debug: $@ + dh_testdir + dh_testroot + + # unpack the kernels into a temporary directory + mkdir -p debian/d-i-${arch} + + imagelist=$$(cat $(CURDIR)/$(DEBIAN)/d-i/kernel-versions | grep ^${arch} | gawk '{print $$3}') && \ + for f in $$imagelist; do \ + i=$(release)-$(abinum)-$$f; \ + dpkg -x $$(ls ../linux-image-$$i\_$(release)-$(revision)_${arch}.deb) \ + debian/d-i-${arch}; \ + if [ -f ../linux-image-extra-$$i\_$(release)-$(revision)_${arch}.deb ] ; then \ + dpkg -x ../linux-image-extra-$$i\_$(release)-$(revision)_${arch}.deb \ + debian/d-i-${arch}; \ + fi; \ + /sbin/depmod -b debian/d-i-${arch} $$i; \ + done + + # kernel-wedge will error if no modules unless this is touched + touch $(DEBIAN)/d-i/no-modules + + touch $(CURDIR)/$(DEBIAN)/d-i/ignore-dups + export KW_DEFCONFIG_DIR=$(CURDIR)/$(DEBIAN)/d-i && \ + export KW_CONFIG_DIR=$(CURDIR)/$(DEBIAN)/d-i && \ + export SOURCEDIR=$(CURDIR)/debian/d-i-${arch} && \ + kernel-wedge install-files $(release)-$(abinum) && \ + kernel-wedge check + + # Build just the udebs + dilist=$$(dh_listpackages -s | grep "\-di$$") && \ + [ -z "$dilist" ] || \ + for i in $$dilist; do \ + dh_fixperms -p$$i; \ + $(lockme) dh_gencontrol -p$$i; \ + dh_builddeb -p$$i; \ + done + + # Generate the meta-udeb dependancy lists. + @gawk ' \ + /^Package:/ { \ + package=$$2; flavour=""; parch="" } \ + (/Package-Type: udeb/ && package !~ /^$(linux_udeb_name)-udebs-/) { \ + match(package, "'$(release)'-'$(abinum)'-(.*)-di", bits); \ + flavour = bits[1]; \ + } \ + (/^Architecture:/ && $$0 " " ~ / '$(arch)'/) { \ + parch=$$0; \ + } \ + (flavour != "" && parch != "") { \ + udebs[flavour] = udebs[flavour] package ", "; \ + flavour=""; parch=""; \ + } \ + END { \ + for (flavour in udebs) { \ + package="$(linux_udeb_name)-udebs-" flavour; \ + file="debian/" package ".substvars"; \ + print("udeb:Depends=" udebs[flavour]) > file; \ + metas="'$(builddir)'/udeb-meta-packages"; \ + print(package) >metas \ + } \ + } \ + ' <$(CURDIR)/debian/control + @while read i; do \ + $(lockme) dh_gencontrol -p$$i; \ + dh_builddeb -p$$i; \ + done <$(builddir)/udeb-meta-packages --- linux-4.8.0.orig/debian/scripts/abi-check +++ linux-4.8.0/debian/scripts/abi-check @@ -0,0 +1,210 @@ +#!/usr/bin/perl -w + +my $flavour = shift; +my $prev_abinum = shift; +my $abinum = shift; +my $prev_abidir = shift; +my $abidir = shift; +my $skipabi = shift; + +my $fail_exit = 1; +my $EE = "EE:"; +my $errors = 0; +my $abiskip = 0; + +my $count; + +print "II: Checking ABI for $flavour...\n"; + +if (-f "$prev_abidir/ignore" + or -f "$prev_abidir/$flavour.ignore" or "$skipabi" eq "true") { + print "WW: Explicitly asked to ignore ABI, running in no-fail mode\n"; + $fail_exit = 0; + $abiskip = 1; + $EE = "WW:"; +} + +if ($prev_abinum != $abinum) { + print "II: Different ABI's, running in no-fail mode\n"; + $fail_exit = 0; + $EE = "WW:"; +} + +if (not -f "$abidir/$flavour" or not -f "$prev_abidir/$flavour") { + print "EE: Previous or current ABI file missing!\n"; + print " $abidir/$flavour\n" if not -f "$abidir/$flavour"; + print " $prev_abidir/$flavour\n" if not -f "$prev_abidir/$flavour"; + + # Exit if the ABI files are missing, but return status based on whether + # skip ABI was indicated. + if ("$abiskip" eq "1") { + exit(0); + } else { + exit(1); + } +} + +my %symbols; +my %symbols_ignore; +my %modules_ignore; +my %module_syms; + +# See if we have any ignores +my $ignore = 0; +print " Reading symbols/modules to ignore..."; + +for $file ("$prev_abidir/../blacklist", "$prev_abidir/../../perm-blacklist") { + if (-f $file) { + open(IGNORE, "< $file") or + die "Could not open $file"; + while () { + chomp; + if ($_ =~ m/M: (.*)/) { + $modules_ignore{$1} = 1; + } else { + $symbols_ignore{$_} = 1; + } + $ignore++; + } + close(IGNORE); + } +} +print "read $ignore symbols/modules.\n"; + +sub is_ignored($$) { + my ($mod, $sym) = @_; + + die "Missing module name in is_ignored()" if not defined($mod); + die "Missing symbol name in is_ignored()" if not defined($sym); + + if (defined($symbols_ignore{$sym}) or defined($modules_ignore{$mod})) { + return 1; + } + return 0; +} + +# Read new syms first +print " Reading new symbols ($abinum)..."; +$count = 0; +open(NEW, "< $abidir/$flavour") or + die "Could not open $abidir/$flavour"; +while () { + chomp; + m/^(\S+)\s(.+)\s(0x[0-9a-f]+)\s(.+)$/; + $symbols{$4}{'type'} = $1; + $symbols{$4}{'loc'} = $2; + $symbols{$4}{'hash'} = $3; + $module_syms{$2} = 0; + $count++; +} +close(NEW); +print "read $count symbols.\n"; + +# Now the old symbols, checking for missing ones +print " Reading old symbols ($prev_abinum)..."; +$count = 0; +open(OLD, "< $prev_abidir/$flavour") or + die "Could not open $prev_abidir/$flavour"; +while () { + chomp; + m/^(\S+)\s(.+)\s(0x[0-9a-f]+)\s(.+)$/; + $symbols{$4}{'old_type'} = $1; + $symbols{$4}{'old_loc'} = $2; + $symbols{$4}{'old_hash'} = $3; + $count++; +} +close(OLD); + +print "read $count symbols.\n"; + +print "II: Checking for missing symbols in new ABI..."; +$count = 0; +foreach $sym (keys(%symbols)) { + if (!defined($symbols{$sym}{'type'})) { + print "\n" if not $count; + printf(" MISS : %s%s\n", $sym, + is_ignored($symbols{$sym}{'old_loc'}, $sym) ? " (ignored)" : ""); + $count++ if !is_ignored($symbols{$sym}{'old_loc'}, $sym); + } +} +print " " if $count; +print "found $count missing symbols\n"; +if ($count) { + print "$EE Symbols gone missing (what did you do!?!)\n"; + $errors++; +} + + +print "II: Checking for new symbols in new ABI..."; +$count = 0; +foreach $sym (keys(%symbols)) { + if (!defined($symbols{$sym}{'old_type'})) { + print "\n" if not $count; + print " NEW : $sym\n"; + $count++; + } +} +print " " if $count; +print "found $count new symbols\n"; +if ($count and $prev_abinum == $abinum) { + print "WW: Found new symbols within same ABI. Not recommended\n"; +} + +print "II: Checking for changes to ABI...\n"; +$count = 0; +my $moved = 0; +my $changed_type = 0; +my $changed_hash = 0; +foreach $sym (keys(%symbols)) { + if (!defined($symbols{$sym}{'old_type'}) or + !defined($symbols{$sym}{'type'})) { + next; + } + + # Changes in location don't hurt us, but log it anyway + if ($symbols{$sym}{'loc'} ne $symbols{$sym}{'old_loc'}) { + printf(" MOVE : %-40s : %s => %s\n", $sym, $symbols{$sym}{'old_loc'}, + $symbols{$sym}{'loc'}); + $moved++; + } + + # Changes to export type are only bad if new type isn't + # EXPORT_SYMBOL. Changing things to GPL are bad. + if ($symbols{$sym}{'type'} ne $symbols{$sym}{'old_type'}) { + printf(" TYPE : %-40s : %s => %s%s\n", $sym, $symbols{$sym}{'old_type'}. + $symbols{$sym}{'type'}, is_ignored($symbols{$sym}{'loc'}, $sym) + ? " (ignored)" : ""); + $changed_type++ if $symbols{$sym}{'type'} ne "EXPORT_SYMBOL" + and !is_ignored($symbols{$sym}{'loc'}, $sym); + } + + # Changes to the hash are always bad + if ($symbols{$sym}{'hash'} ne $symbols{$sym}{'old_hash'}) { + printf(" HASH : %-40s : %s => %s%s\n", $sym, $symbols{$sym}{'old_hash'}, + $symbols{$sym}{'hash'}, is_ignored($symbols{$sym}{'loc'}, $sym) + ? " (ignored)" : ""); + $changed_hash++ if !is_ignored($symbols{$sym}{'loc'}, $sym); + $module_syms{$symbols{$sym}{'loc'}}++; + } +} + +print "WW: $moved symbols changed location\n" if $moved; +print "$EE $changed_type symbols changed export type and weren't ignored\n" if $changed_type; +print "$EE $changed_hash symbols changed hash and weren't ignored\n" if $changed_hash; + +$errors++ if $changed_hash or $changed_type; +if ($changed_hash) { + print "II: Module hash change summary...\n"; + foreach $mod (sort { $module_syms{$b} <=> $module_syms{$a} } keys %module_syms) { + next if ! $module_syms{$mod}; + printf(" %-40s: %d\n", $mod, $module_syms{$mod}); + } +} + +print "II: Done\n"; + +if ($errors) { + exit($fail_exit); +} else { + exit(0); +} --- linux-4.8.0.orig/debian/scripts/config-check +++ linux-4.8.0/debian/scripts/config-check @@ -0,0 +1,121 @@ +#!/usr/bin/perl +# +# check-config -- check the current config for issues +# +use strict; + +my $P = 'check-config'; + +my $test = -1; +if ($ARGV[0] eq '--test') { + $test = $ARGV[1] + 0; +} elsif ($#ARGV != 4) { + die "Usage: $P \n"; +} + +my ($config, $arch, $flavour, $commonconfig, $warn_only) = @ARGV; + +my %values = (); + +# If we are in overridden then still perform the checks and emit the messages +# but do not return failure. Those items marked FATAL will alway trigger +# failure. +my $fail_exit = 1; +$fail_exit = 0 if ($warn_only eq 'true' || $warn_only eq '1'); +my $exit_val = 0; + +# Load up the current configuration values -- FATAL if this fails +print "$P: $config: loading config\n"; +open(CONFIG, "<$config") || die "$P: $config: open failed -- $! -- aborting\n"; +while () { + # Pull out values. + /^#*\s*(CONFIG_\w+)[\s=](.*)$/ or next; + if ($2 eq 'is not set') { + $values{$1} = 'n'; + } else { + $values{$1} = $2; + } +} +close(CONFIG); + +# ANNOTATIONS: check any annotations marked for enforcement +my $pass = 0; +my $total = 0; +my $annotations = "$commonconfig/annotations"; +my ($config, $value, $options, $option, $value, $check, $policy); +print "$P: $annotations loading annotations\n"; +my %annot; +my $form = 1; +open(ANNOTATIONS, "<$annotations") || die "$P: $annotations: open failed -- $! -- aborting\n"; +while () { + if (/^# FORMAT: (\S+)/) { + die "$P: $1: unknown annotations format\n" if ($1 != 2); + $form = $1; + } + + /^#/ && next; + chomp; + /^$/ && next; + + /^CONFIG_/ || next; + + if ($form == 1) { + ($config, $value, $options) = split(' ', $_, 3); + } elsif ($form == 2) { + ($config, $options) = split(' ', $_, 2); + } + + $annot{$config} = $annot{$config} . ' ' . $options; +} +close(ANNOTATIONS); + +my $config; +for $config (keys %annot) { + $check = 0; + $options = $annot{$config}; + + $policy = undef; + while ($options =~ /\s*(\S+)<(.*?)?>/g) { + ($option, $value) = ($1, $2); + + if ($option eq 'mark' && $value eq 'ENFORCED') { + $check = 1; + + } elsif ($option eq 'policy') { + if ($value =~ /^{/) { + $value =~ s/:/=>/g; + $policy = eval($value); + warn "$@" if ($@); + } else { + $policy = undef; + } + } + } + if ($check == 1 && !defined($policy)) { + print "$P: INVALID POLICY (use policy<{...}>) $config$options\n"; + $total++; + $check = 0; + } + if ($check) { + my $is = '-'; + $is = $values{$config} if (defined $values{$config}); + + my $value = '-'; + for my $which ("$arch-$flavour", "$arch-*", "*-$flavour", "$arch", "*") { + if (defined $policy->{$which}) { + $value = $policy->{$which}; + last; + } + } + if ($is eq $value) { + $pass++; + } else { + print "$P: FAIL ($is != $value): $config$options\n"; + $exit_val = $fail_exit; + } + $total++; + } +} + +print "$P: $pass/$total checks passed -- exit $exit_val\n"; +exit $exit_val; --- linux-4.8.0.orig/debian/scripts/control-create +++ linux-4.8.0/debian/scripts/control-create @@ -0,0 +1,25 @@ +#!/bin/bash + +. debian/debian.env + +vars=$1 + +. $vars + +if [ "$is_sub" = "" ]; then + flavour=$(basename $vars | sed 's/.*\.//') + stub=${DEBIAN}/control.d/flavour-control.stub +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" --- linux-4.8.0.orig/debian/scripts/link-headers +++ linux-4.8.0/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 --- linux-4.8.0.orig/debian/scripts/misc/find-obsolete-firmware +++ linux-4.8.0/debian/scripts/misc/find-obsolete-firmware @@ -0,0 +1,91 @@ +#!/bin/bash +# +# Find all duplicate or obsolete firmware that is being carried +# in the kernel firmware directory. Compare these files against +# the linux-firmware package for the approriate release. For example, +# assuming this is raring, then compare the kernel firmware files +# against the raring branch of linux-firmware. +# +# Example: $0 ~/ubuntu/linux-firmware-raring + +USEAGE="$0 LINUX-FIRMWARE" + +. debian/debian.env + +NFWINFO="`find $DEBIAN -name fwinfo|wc -l`" +if [ ! "$NFWINFO" = "1" ] +then + echo Your repo is hosed. There can only be one fwinfo file. + find $DEBIAN -name fwinfo + exit 1 +fi + +FWINFO="`pwd`/`find $DEBIAN -name fwinfo`" + +if [ "$1" = "" ] +then + echo $USEAGE + exit 1 +fi +FW="$1" + +if [ ! -f $FW/WHENCE ] +then + echo Bogus linux-firmware directory + exit 1 +fi +if ! egrep -q "^firmware:" $FWINFO +then + echo Bogus firmware info file + exit 1 +fi + +# +# Prepare the tree and make firmware. +# +TEE="tee -a" +LO=`pwd`/firmware.txt +LF=`pwd`/lib/firmware +rm -rf debian/build $LF $LO +fakeroot debian/rules clean prepare-generic +cp debian/build/build-generic/.config . +mkdir -p $LF +make firmware_install INSTALL_MOD_PATH=`pwd` + +(cd $LF +find . -type f | while read f +do + BN="`basename $f`" + + if ! grep -q $BN $FWINFO + then + echo "Unused firmware: $f" | $TEE $LO + else + if [ -f $FW/$f ] + then + if ! cmp $FW/$f $f + then + echo "$f differs" | $TEE $LO + else + echo "$f is duplicated" | $TEE $LO + fi + else + echo "$f does not exist in $FW" | $TEE $LO + fi + fi +done) + +# +# Check for firmware files referenced by the kernel +# that do not exist in either location. +# +cat $FWINFO | while read fwi f +do + if [ -s lib/firmware/$f ] || [ -s $FW/$f ] + then + continue + else + echo "Missing firmware $f" | $TEE $LO + fi +done + --- linux-4.8.0.orig/debian/scripts/misc/fw-to-ihex.sh +++ linux-4.8.0/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 + --- linux-4.8.0.orig/debian/scripts/misc/gen-auto-reconstruct +++ linux-4.8.0/debian/scripts/misc/gen-auto-reconstruct @@ -0,0 +1,72 @@ +#!/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 + + # 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" --- linux-4.8.0.orig/debian/scripts/misc/get-firmware +++ linux-4.8.0/debian/scripts/misc/get-firmware @@ -0,0 +1,62 @@ +#!/bin/bash +# +# Find all files in linux-firmware that are new or different since the previous release +# and copy them into the kernel firmware directory. You should only do this on the +# backport branch since it would be redundant on the released kernel. It assumed you've +# unpacked linux-firmware from each release into separate directories. +# +# Example: $0 ~/ubuntu/linux-firmware-precise ~/ubuntu/linux-firmware-quantal + +if [ "$1" = "" ] || [ "$2" = "" ] || [ ! -f $1/WHENCE ] || [ ! -f $2/WHENCE ] +then + echo You must supply 2 firmware directories. + exit 1 +fi + +if [ ! -f debian/debian.env ] +then + echo You must run this script from the root of the repo + exit 1 +fi +. debian/debian.env + +NFWINFO="`find $DEBIAN -name fwinfo|wc -l`" +if [ ! "$NFWINFO" = "1" ] +then + echo Your repo is hosed. There can only be one fwinfo file. + find $DEBIAN -name fwinfo + exit 1 +fi + +FWINFO="`pwd`/`find $DEBIAN -name fwinfo`" + +CDIR=`pwd` +OFW=$1 +NFW=$2 + +cd $NFW +# +# Find all files in $NFW that are new or different from $1 +# +(find . -type f | egrep -v "debian|git|LICEN|WHEN|READ|Make|configure" | sed 's;\./;;' | \ +while read f +do + if grep -q $f $FWINFO + then + if [ ! -f $OFW/$f ] + then + echo $f + elif ! cmp $f $OFW/$f > /dev/null + then + echo $f + fi + fi +done) |\ +while read f +do + mkdir -p $CDIR/firmware/`dirname $f` + if [ ! -f $CDIR/firmware/`dirname $f`/`basename $f`.ihex ] + then + cp -v $f $CDIR/firmware/`dirname $f` + fi +done --- linux-4.8.0.orig/debian/scripts/misc/getabis +++ linux-4.8.0/debian/scripts/misc/getabis @@ -0,0 +1,135 @@ +#!/bin/bash + +if [ "$#" != "2" ]; then + 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" + +abidir="`pwd`/$DEBIAN/abi/$verfull" +tmpdir="`pwd`/abi-tmp-$verfull" +origdir="`pwd`" +fwinfo=$abidir/fwinfo + +test -d $tmpdir || mkdir $tmpdir + +package_prefixes() { + __package_prefixes="$@" +} + +getall() { + arch=$1 + shift + + mkdir -p $abidir/$arch + + for sub in $@; do + if [ -f $abidir/$arch/$sub ]; then + echo "Exists: $sub" + continue + fi + echo -n "Fetching $sub($arch)..." + prefixes="" + filenames="" + cd $tmpdir + for prefix in $__package_prefixes + do + filename=${prefix}-${verabi}-${sub}_${verfull}_${arch}.deb + for r in "${repo_list[@]}" + do + if ! [ -f $filename ]; then + $WGET $r/$filename + fi + if [ -f $filename ]; then + prefixes="$prefixes $prefix" + filenames="$filenames $filename" + break + fi + done + done + if [ "$filenames" != "" ]; then + echo -n "extracting$prefixes..." + for filename in $filenames + do + dpkg-deb --extract $filename tmp + done + 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 -n "NO ABI 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 -n "$version..." + ) + rm -rf tmp $filenames + echo "done." + else + echo "FAILED." + fi + cd $origdir + done +} + +# MAIN + +# Setup abi directory +mkdir -p $abidir +echo $abi > $abidir/abiname + +# NOTE: The flavours are hardcoded, because they may have changed from the +# current build. + +__package_prefixes="linux-image" + +. $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 + find $DEBIAN/abi/* -maxdepth 0 -type d | grep -v $verfull | while read f; do git rm -r $f;done +fi --- linux-4.8.0.orig/debian/scripts/misc/git-ubuntu-log +++ linux-4.8.0/debian/scripts/misc/git-ubuntu-log @@ -0,0 +1,125 @@ +#!/usr/bin/python3 + +import os +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: + if 'bugs' not in entry and 'cves' in entry: + for cve in entry['cves']: + if cve not in bugs: + bugs.append(cve) + entries.append(entry) + +# Suck up the git log output and extract the information we need. +bugs = [] +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: ') and 'launchpad.net' in line: + bits = line.strip().split(maxsplit=1) + bits = bits[1].split('/') + entry.setdefault('bugs', []).append(bits[-1]) + + # Accumulate bug numbers. + if bits[-1] not in bugs: + bugs.append(bits[-1]) + + elif line.startswith(' CVE-'): + entry.setdefault('cves', []).append(line.strip()) + + elif line.startswith(' Ignore:'): + 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. +bugs.append('__packaging__') +bugs.append('__mainline__') + +emit_nl = False +for bug in bugs: + if bug == '__packaging__': + title = 'Miscellaneous Ubuntu changes' + elif bug == '__mainline__': + title = 'Miscellaneous upstream changes' + elif bug.startswith('CVE-'): + title = bug + else: + 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 + ')' + + emit_title = True + for entry in entries: + if (bug == '__packaging__' and 'bugs' not in entry and 'cves' not in entry and 'author' in entry) or \ + (bug == '__mainline__' and 'bugs' not in entry and 'cves' not in entry and 'author' not in entry) or \ + ('bugs' in entry and bug in entry['bugs']) or \ + ('cves' in entry and bug in entry['cves']): + if emit_title: + if emit_nl: + print('') + emit_nl = True + + title_lines = textwrap.wrap(title, 76) + print(' * ' + title_lines[0].replace('LP###', 'LP: #')) + for line in title_lines[1:]: + line = line.replace('LP###', 'LP: #') + print(' ' + line) + + emit_title = False + title_lines = textwrap.wrap(entry['subject'], 76) + print(' - ' + title_lines[0]) + for line in title_lines[1:]: + line = line.replace('LP###', 'LP: #') + print(' ' + line) + --- linux-4.8.0.orig/debian/scripts/misc/insert-changes.pl +++ linux-4.8.0/debian/scripts/misc/insert-changes.pl @@ -0,0 +1,36 @@ +#!/usr/bin/perl -w + +my $debian; +$droot = $ARGV[0] if (defined $ARGV[0]); +$droot = 'debian' if (!defined $droot); +$debian = $ARGV[1] if (defined $ARGV[1]); +$debian = 'debian.master' if (!defined $debian); + +system("make -s -f $droot/rules printchanges > $debian/changes"); + +open(CHANGELOG, "< $debian/changelog") or die "Cannot open changelog"; +open(CHANGES, "< $debian/changes") or die "Cannot open new changes"; +open(NEW, "> $debian/changelog.new") or die "Cannot open new changelog"; + +$printed = 0; + +while () { + if (/^ CHANGELOG: /) { + next if $printed; + + while () { + print NEW; + } + + $printed = 1; + } else { + print NEW; + } +} + +close(NEW); +close(CHANGES); +close(CHANGELOG); + +rename("$debian/changelog.new", "$debian/changelog"); +unlink("$debian/changes"); --- linux-4.8.0.orig/debian/scripts/misc/insert-mainline-changes +++ linux-4.8.0/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"); --- linux-4.8.0.orig/debian/scripts/misc/insert-ubuntu-changes +++ linux-4.8.0/debian/scripts/misc/insert-ubuntu-changes @@ -0,0 +1,58 @@ +#!/usr/bin/perl + +if ($#ARGV != 2) { + die "Usage: $0 \n"; +} +my ($changelog, $end, $start) = @ARGV; + +$end =~ s/.*\.//; +$start =~ s/.*\.//; + +my @changes = (); +my $output = 0; +open(CHG, ") { + if (/^\S+\s+\((.*\.(\d+))\)/) { + if ($2 <= $end) { + last; + } + if ($2 == $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"); --- linux-4.8.0.orig/debian/scripts/misc/kernel-wedge-arch.pl +++ linux-4.8.0/debian/scripts/misc/kernel-wedge-arch.pl @@ -0,0 +1,26 @@ +#!/usr/bin/perl +# +# kernel-wedge-arch.pl -- select only specifiers for the supplied arch. +# +use strict; + +require Dpkg::Control; +require Dpkg::Deps; + +my $fh = \*STDIN; + +my @entries; + +my $wanted = $ARGV[0]; + +my $entry; +while (!eof($fh)) { + $entry = Dpkg::Control->new(); + $entry->parse($fh, '???'); + + if ($entry->{'Architecture'} eq $wanted) { + print("\n" . $entry); + } +} + +close($fh); --- linux-4.8.0.orig/debian/scripts/misc/kernelconfig +++ linux-4.8.0/debian/scripts/misc/kernelconfig @@ -0,0 +1,172 @@ +#!/bin/bash + +. debian/debian.env + +# Script to merge all configs and run 'make silentoldconfig' 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]"} +yes=0 +case "$mode" in + update*configs) mode='silentoldconfig' ;; + 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 + +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" ;; + *) kernarch="$arch" ;; + esac + + 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 + 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 ARCH=$kernarch menuconfig + break ;; + n* | N* ) + 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 ARCH=$kernarch "$mode" + else + make O=`pwd`/build ARCH=$kernarch "$mode" + fi ;; + esac + cat build/.config > $archconfdir/$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" + "$bindir/../config-check" "$fullconf" "$arch" "$flavour" "$confdir" "0" || let "fail=$fail+1" + fi + done +done + +if [ "$fail" != 0 ]; then + echo "" + echo "*** ERROR: $fail config-check failures detected" + echo "" +fi + +rm -rf build + --- linux-4.8.0.orig/debian/scripts/misc/retag +++ linux-4.8.0/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); --- linux-4.8.0.orig/debian/scripts/misc/splitconfig.pl +++ linux-4.8.0/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"; +} --- linux-4.8.0.orig/debian/scripts/misc/tristate.sh +++ linux-4.8.0/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 --- linux-4.8.0.orig/debian/scripts/misc/update-aufs.sh +++ linux-4.8.0/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/aufs4-standalone.git ${AUFS} + (cd ${AUFS}; git checkout -b aufs4.x-rcN remotes/origin/aufs4.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} aufs4-kbuild.patch" +PATCHES="${PATCHES} aufs4-base.patch" +PATCHES="${PATCHES} aufs4-mmap.patch" +PATCHES="${PATCHES} aufs4-standalone.patch" +PATCHES="${PATCHES} aufs4-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" --- linux-4.8.0.orig/debian/scripts/misc/update-zfs.sh +++ linux-4.8.0/debian/scripts/misc/update-zfs.sh @@ -0,0 +1,33 @@ +#!/bin/bash +# +# Update spl/zfs from the Ubuntu archive. You will have to manually check +# to see if the version has been updated. +# +SPL_MAJOR_VER=${_SPL_MAJOR_VER:-0.6.5.4} +SPL_MINOR_VER=${_SPL_MINOR_VER:-0ubuntu1} +SPL_DKMS=${_SPL_DKMS:-http://archive.ubuntu.com/ubuntu/pool/universe/s/spl-linux/spl-dkms_${SPL_MAJOR_VER}-${SPL_MINOR_VER}_amd64.deb} + +ZFS_MAJOR_VER=${_ZFS_MAJOR_VER:-0.6.5.4} +ZFS_MINOR_VER=${_ZFS_MINOR_VER:-0ubuntu1} +ZFS_DKMS=${_ZFS_DKMS:-http://archive.ubuntu.com/ubuntu/pool/universe/z/zfs-linux/zfs-dkms_${ZFS_MAJOR_VER}-${ZFS_MINOR_VER}_amd64.deb} + +function update_from_archive { + + URL=$1 + DEST_DIR=$2 + VER=$3 + + rm -rf ${DEST_DIR}.tmp + wget -O ${DEST_DIR}.deb ${URL} + dpkg -x ${DEST_DIR}.deb ${DEST_DIR}.tmp + mkdir -p ${DEST_DIR} + rsync -aL --delete ${DEST_DIR}.tmp/usr/src/${DEST_DIR}-${VER}*/ ${DEST_DIR}/ + rm -rf ${DEST_DIR}.deb ${DEST_DIR}.tmp + find ${DEST_DIR} -type f | while read f;do git add -f $f;done +} + +update_from_archive ${SPL_DKMS} spl ${SPL_MAJOR_VER} +update_from_archive ${ZFS_DKMS} zfs ${ZFS_MAJOR_VER} + +git add -u +git commit -s -m"UBUNTU: SAUCE: (noup) Update spl to ${SPL_MAJOR_VER}-${SPL_MINOR_VER}, zfs to ${ZFS_MAJOR_VER}-${ZFS_MINOR_VER}" --- linux-4.8.0.orig/debian/scripts/module-check +++ linux-4.8.0/debian/scripts/module-check @@ -0,0 +1,120 @@ +#!/usr/bin/perl -w + +$flavour = shift; +$prev_abidir = shift; +$abidir = shift; +$skipmodule = shift; + +print "II: Checking modules for $flavour..."; + +if (-f "$prev_abidir/ignore.modules" + or -f "$prev_abidir/$flavour.ignore.modules") { + print "explicitly ignoring modules\n"; + exit(0); +} + +if (not -f "$abidir/$flavour.modules" or not -f + "$prev_abidir/$flavour.modules") { + print "previous or current modules file missing!\n"; + print " $abidir/$flavour.modules\n"; + print " $prev_abidir/$flavour.modules\n"; + if (defined($skipmodule)) { + exit(0); + } else { + exit(1); + } +} + +print "\n"; + +my %modules; +my %modules_ignore; +my $missing = 0; +my $new = 0; +my $errors = 0; + +# See if we have any ignores +if (-f "$prev_abidir/../modules.ignore") { + my $ignore = 0; + open(IGNORE, "< $prev_abidir/../modules.ignore") or + die "Could not open $prev_abidir/../modules.ignore"; + print " reading modules to ignore..."; + while () { + chomp; + next if /\s*#/; + $modules_ignore{$_} = 1; + $ignore++; + } + close(IGNORE); + print "read $ignore modules.\n"; +} + +# Read new modules first +print " reading new modules..."; +$new_count = 0; +open(NEW, "< $abidir/$flavour.modules") or + die "Could not open $abidir/$flavour.modules"; +while () { + chomp; + $modules{$_} = 1; + $new_count++; +} +close(NEW); +print "read $new_count modules.\n"; + +# Now the old modules, checking for missing ones +print " reading old modules..."; +$old_count = 0; +open(OLD, "< $prev_abidir/$flavour.modules") or + die "Could not open $prev_abidir/$flavour.modules"; +while () { + chomp; + if (not defined($modules{$_})) { + print "\n" if not $missing; + $missing++; + if (not defined($modules_ignore{$_})) { + print " MISS: $_\n"; + $errors++; + } else { + print " MISS: $_ (ignored)\n"; + } + } else { + $modules{$_}++; + } + $old_count++; +} +close(OLD); +# Check for new modules +foreach $mod (keys(%modules)) { + if ($modules{$mod} < 2) { + print "\n" if not $missing and not $new; + print " NEW : $mod\n"; + $new++; + } +} +if ($new or $missing) { + print " read $old_count modules : new($new) missing($missing)\n"; +} else { + print "read $old_count modules.\n"; +} + + +# Let's see where we stand... +if ($errors) { + if (defined($skipmodule)) { + print "WW: Explicitly asked to ignore failures (probably not good)\n"; + } else { + print "EE: Missing modules (start begging for mercy)\n"; + exit 1 + } +} + +if ($new) { + print "II: New modules (you've been busy, wipe the poop off your nose)\n"; +} else { + print "II: No new modules (hope you're happy, slacker)\n"; +} + +print "II: Done\n"; + +exit(0); --- linux-4.8.0.orig/debian/scripts/module-inclusion +++ linux-4.8.0/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 --- linux-4.8.0.orig/debian/scripts/sub-flavour +++ linux-4.8.0/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 --- linux-4.8.0.orig/debian/snapcraft.mk +++ linux-4.8.0/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 --- linux-4.8.0.orig/debian/source/format +++ linux-4.8.0/debian/source/format @@ -0,0 +1 @@ +1.0 --- linux-4.8.0.orig/debian/source/options +++ linux-4.8.0/debian/source/options @@ -0,0 +1,14 @@ +# 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. +extend-diff-ignore=^ubuntu/vbox/vboxguest/include$ +extend-diff-ignore=^ubuntu/vbox/vboxguest/r0drv$ +extend-diff-ignore=^ubuntu/vbox/vboxsf/include$ +extend-diff-ignore=^ubuntu/vbox/vboxsf/r0drv$ +extend-diff-ignore=^ubuntu/vbox/vboxvideo/include$ +extend-diff-ignore=^ubuntu/vbox/vboxvideo/r0drv$ +## autoreconstruct -- end + +# force "dpkg-source -I -i" behavior +diff-ignore +tar-ignore --- linux-4.8.0.orig/debian/stamps/keep-dir +++ linux-4.8.0/debian/stamps/keep-dir @@ -0,0 +1 @@ +Place holder --- linux-4.8.0.orig/debian/tests-build/README +++ linux-4.8.0/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. --- linux-4.8.0.orig/debian/tests-build/check-aliases +++ linux-4.8.0/debian/tests-build/check-aliases @@ -0,0 +1,24 @@ +#!/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"; + +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); --- linux-4.8.0.orig/debian/tests/control +++ linux-4.8.0/debian/tests/control @@ -0,0 +1,7 @@ +Tests: rebuild +Depends: @builddeps@, fakeroot +Restrictions: allow-stderr + +Tests: ubuntu-regression-suite +Depends: build-essential, gcc-multilib [amd64 arm64 armhf i386 powerpc], gdb, git, bzr +Restrictions: allow-stderr, isolation-machine, breaks-testbed --- linux-4.8.0.orig/debian/tests/rebuild +++ linux-4.8.0/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*/*) ;; + *) build_needed=1 ;; + esac +done +if [ "$build_needed" -eq 0 ]; then + echo "rebuild: short circuiting build for '${ADT_TEST_TRIGGERS}'" + exit 0 +fi + +set -e +dpkg-buildpackage -rfakeroot -us -uc -b --- linux-4.8.0.orig/debian/tests/ubuntu-regression-suite +++ linux-4.8.0/debian/tests/ubuntu-regression-suite @@ -0,0 +1,19 @@ +#!/bin/sh +set -e + +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 --- linux-4.8.0.orig/debian/tools/generic +++ linux-4.8.0/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 --- linux-4.8.0.orig/debian/zfs-modules.ignore +++ linux-4.8.0/debian/zfs-modules.ignore @@ -0,0 +1,8 @@ +spl +splat +zavl +zcommon +zfs +znvpair +zpios +zunicode --- linux-4.8.0.orig/drivers/Makefile +++ linux-4.8.0/drivers/Makefile @@ -53,14 +53,9 @@ # iommu/ comes before gpu as gpu are using iommu controllers obj-$(CONFIG_IOMMU_SUPPORT) += iommu/ -# gpu/ comes after char for AGP vs DRM startup and after iommu -obj-y += gpu/ obj-$(CONFIG_CONNECTOR) += connector/ -# i810fb and intelfb depend on char/agp/ -obj-$(CONFIG_FB_I810) += video/fbdev/i810/ -obj-$(CONFIG_FB_INTEL) += video/fbdev/intelfb/ obj-$(CONFIG_PARPORT) += parport/ obj-$(CONFIG_NVM) += lightnvm/ @@ -74,6 +69,12 @@ obj-$(CONFIG_SCSI) += scsi/ obj-y += nvme/ obj-$(CONFIG_ATA) += ata/ + +# gpu/ comes after char for AGP vs DRM startup and after iommu +obj-y += gpu/ +# i810fb and intelfb depend on char/agp/ +obj-$(CONFIG_FB_I810) += video/fbdev/i810/ +obj-$(CONFIG_FB_INTEL) += video/fbdev/intelfb/ obj-$(CONFIG_TARGET_CORE) += target/ obj-$(CONFIG_MTD) += mtd/ obj-$(CONFIG_SPI) += spi/ --- linux-4.8.0.orig/drivers/acpi/Kconfig +++ linux-4.8.0/drivers/acpi/Kconfig @@ -77,6 +77,9 @@ endif +config ACPI_SPCR_TABLE + bool + config ACPI_SLEEP bool depends on SUSPEND || HIBERNATION @@ -521,4 +524,8 @@ userspace. The configurable ACPI groups will be visible under /config/acpi, assuming configfs is mounted under /config. +if ARM64 +source "drivers/acpi/arm64/Kconfig" +endif + endif # ACPI --- linux-4.8.0.orig/drivers/acpi/Makefile +++ linux-4.8.0/drivers/acpi/Makefile @@ -81,6 +81,7 @@ obj-$(CONFIG_ACPI_CUSTOM_METHOD)+= custom_method.o obj-$(CONFIG_ACPI_BGRT) += bgrt.o obj-$(CONFIG_ACPI_CPPC_LIB) += cppc_acpi.o +obj-$(CONFIG_ACPI_SPCR_TABLE) += spcr.o obj-$(CONFIG_ACPI_DEBUGGER_USER) += acpi_dbg.o # processor has its own "processor." module_param namespace @@ -105,3 +106,5 @@ video-objs += acpi_video.o video_detect.o obj-y += dptf/ + +obj-$(CONFIG_ARM64) += arm64/ --- linux-4.8.0.orig/drivers/acpi/apei/ghes.c +++ linux-4.8.0/drivers/acpi/apei/ghes.c @@ -662,7 +662,7 @@ ghes_do_proc(ghes, ghes->estatus); out: ghes_clear_estatus(ghes); - return 0; + return rc; } static void ghes_add_timer(struct ghes *ghes) --- linux-4.8.0.orig/drivers/acpi/arm64/Kconfig +++ linux-4.8.0/drivers/acpi/arm64/Kconfig @@ -0,0 +1,6 @@ +# +# ACPI Configuration for ARM64 +# + +config ACPI_IORT + bool --- linux-4.8.0.orig/drivers/acpi/arm64/Makefile +++ linux-4.8.0/drivers/acpi/arm64/Makefile @@ -0,0 +1 @@ +obj-$(CONFIG_ACPI_IORT) += iort.o --- linux-4.8.0.orig/drivers/acpi/arm64/iort.c +++ linux-4.8.0/drivers/acpi/arm64/iort.c @@ -0,0 +1,368 @@ +/* + * Copyright (C) 2016, Semihalf + * Author: Tomasz Nowicki + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU General Public License, + * version 2, as published by the Free Software Foundation. + * + * This program is distributed in the hope 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. + * + * This file implements early detection/parsing of I/O mapping + * reported to OS through firmware via I/O Remapping Table (IORT) + * IORT document number: ARM DEN 0049A + */ + +#define pr_fmt(fmt) "ACPI: IORT: " fmt + +#include +#include +#include + +struct iort_its_msi_chip { + struct list_head list; + struct fwnode_handle *fw_node; + u32 translation_id; +}; + +typedef acpi_status (*iort_find_node_callback) + (struct acpi_iort_node *node, void *context); + +/* Root pointer to the mapped IORT table */ +static struct acpi_table_header *iort_table; + +static LIST_HEAD(iort_msi_chip_list); +static DEFINE_SPINLOCK(iort_msi_chip_lock); + +/** + * iort_register_domain_token() - register domain token and related ITS ID + * to the list from where we can get it back later on. + * @trans_id: ITS ID. + * @fw_node: Domain token. + * + * Returns: 0 on success, -ENOMEM if no memory when allocating list element + */ +int iort_register_domain_token(int trans_id, struct fwnode_handle *fw_node) +{ + struct iort_its_msi_chip *its_msi_chip; + + its_msi_chip = kzalloc(sizeof(*its_msi_chip), GFP_KERNEL); + if (!its_msi_chip) + return -ENOMEM; + + its_msi_chip->fw_node = fw_node; + its_msi_chip->translation_id = trans_id; + + spin_lock(&iort_msi_chip_lock); + list_add(&its_msi_chip->list, &iort_msi_chip_list); + spin_unlock(&iort_msi_chip_lock); + + return 0; +} + +/** + * iort_deregister_domain_token() - Deregister domain token based on ITS ID + * @trans_id: ITS ID. + * + * Returns: none. + */ +void iort_deregister_domain_token(int trans_id) +{ + struct iort_its_msi_chip *its_msi_chip, *t; + + spin_lock(&iort_msi_chip_lock); + list_for_each_entry_safe(its_msi_chip, t, &iort_msi_chip_list, list) { + if (its_msi_chip->translation_id == trans_id) { + list_del(&its_msi_chip->list); + kfree(its_msi_chip); + break; + } + } + spin_unlock(&iort_msi_chip_lock); +} + +/** + * iort_find_domain_token() - Find domain token based on given ITS ID + * @trans_id: ITS ID. + * + * Returns: domain token when find on the list, NULL otherwise + */ +struct fwnode_handle *iort_find_domain_token(int trans_id) +{ + struct fwnode_handle *fw_node = NULL; + struct iort_its_msi_chip *its_msi_chip; + + spin_lock(&iort_msi_chip_lock); + list_for_each_entry(its_msi_chip, &iort_msi_chip_list, list) { + if (its_msi_chip->translation_id == trans_id) { + fw_node = its_msi_chip->fw_node; + break; + } + } + spin_unlock(&iort_msi_chip_lock); + + return fw_node; +} + +static struct acpi_iort_node *iort_scan_node(enum acpi_iort_node_type type, + iort_find_node_callback callback, + void *context) +{ + struct acpi_iort_node *iort_node, *iort_end; + struct acpi_table_iort *iort; + int i; + + if (!iort_table) + return NULL; + + /* Get the first IORT node */ + iort = (struct acpi_table_iort *)iort_table; + iort_node = ACPI_ADD_PTR(struct acpi_iort_node, iort, + iort->node_offset); + iort_end = ACPI_ADD_PTR(struct acpi_iort_node, iort_table, + iort_table->length); + + for (i = 0; i < iort->node_count; i++) { + if (WARN_TAINT(iort_node >= iort_end, TAINT_FIRMWARE_WORKAROUND, + "IORT node pointer overflows, bad table!\n")) + return NULL; + + if (iort_node->type == type && + ACPI_SUCCESS(callback(iort_node, context))) + return iort_node; + + iort_node = ACPI_ADD_PTR(struct acpi_iort_node, iort_node, + iort_node->length); + } + + return NULL; +} + +static acpi_status iort_match_node_callback(struct acpi_iort_node *node, + void *context) +{ + struct device *dev = context; + acpi_status status; + + if (node->type == ACPI_IORT_NODE_NAMED_COMPONENT) { + struct acpi_buffer buf = { ACPI_ALLOCATE_BUFFER, NULL }; + struct acpi_device *adev = to_acpi_device_node(dev->fwnode); + struct acpi_iort_named_component *ncomp; + + if (!adev) { + status = AE_NOT_FOUND; + goto out; + } + + status = acpi_get_name(adev->handle, ACPI_FULL_PATHNAME, &buf); + if (ACPI_FAILURE(status)) { + dev_warn(dev, "Can't get device full path name\n"); + goto out; + } + + ncomp = (struct acpi_iort_named_component *)node->node_data; + status = !strcmp(ncomp->device_name, buf.pointer) ? + AE_OK : AE_NOT_FOUND; + acpi_os_free(buf.pointer); + } else if (node->type == ACPI_IORT_NODE_PCI_ROOT_COMPLEX) { + struct acpi_iort_root_complex *pci_rc; + struct pci_bus *bus; + + bus = to_pci_bus(dev); + pci_rc = (struct acpi_iort_root_complex *)node->node_data; + + /* + * It is assumed that PCI segment numbers maps one-to-one + * with root complexes. Each segment number can represent only + * one root complex. + */ + status = pci_rc->pci_segment_number == pci_domain_nr(bus) ? + AE_OK : AE_NOT_FOUND; + } else { + status = AE_NOT_FOUND; + } +out: + return status; +} + +static int iort_id_map(struct acpi_iort_id_mapping *map, u8 type, u32 rid_in, + u32 *rid_out) +{ + /* Single mapping does not care for input id */ + if (map->flags & ACPI_IORT_ID_SINGLE_MAPPING) { + if (type == ACPI_IORT_NODE_NAMED_COMPONENT || + type == ACPI_IORT_NODE_PCI_ROOT_COMPLEX) { + *rid_out = map->output_base; + return 0; + } + + pr_warn(FW_BUG "[map %p] SINGLE MAPPING flag not allowed for node type %d, skipping ID map\n", + map, type); + return -ENXIO; + } + + if (rid_in < map->input_base || + (rid_in >= map->input_base + map->id_count)) + return -ENXIO; + + *rid_out = map->output_base + (rid_in - map->input_base); + return 0; +} + +static struct acpi_iort_node *iort_node_map_rid(struct acpi_iort_node *node, + u32 rid_in, u32 *rid_out, + u8 type) +{ + u32 rid = rid_in; + + /* Parse the ID mapping tree to find specified node type */ + while (node) { + struct acpi_iort_id_mapping *map; + int i; + + if (node->type == type) { + if (rid_out) + *rid_out = rid; + return node; + } + + if (!node->mapping_offset || !node->mapping_count) + goto fail_map; + + map = ACPI_ADD_PTR(struct acpi_iort_id_mapping, node, + node->mapping_offset); + + /* Firmware bug! */ + if (!map->output_reference) { + pr_err(FW_BUG "[node %p type %d] ID map has NULL parent reference\n", + node, node->type); + goto fail_map; + } + + /* Do the RID translation */ + for (i = 0; i < node->mapping_count; i++, map++) { + if (!iort_id_map(map, node->type, rid, &rid)) + break; + } + + if (i == node->mapping_count) + goto fail_map; + + node = ACPI_ADD_PTR(struct acpi_iort_node, iort_table, + map->output_reference); + } + +fail_map: + /* Map input RID to output RID unchanged on mapping failure*/ + if (rid_out) + *rid_out = rid_in; + + return NULL; +} + +static struct acpi_iort_node *iort_find_dev_node(struct device *dev) +{ + struct pci_bus *pbus; + + if (!dev_is_pci(dev)) + return iort_scan_node(ACPI_IORT_NODE_NAMED_COMPONENT, + iort_match_node_callback, dev); + + /* Find a PCI root bus */ + pbus = to_pci_dev(dev)->bus; + while (!pci_is_root_bus(pbus)) + pbus = pbus->parent; + + return iort_scan_node(ACPI_IORT_NODE_PCI_ROOT_COMPLEX, + iort_match_node_callback, &pbus->dev); +} + +/** + * iort_msi_map_rid() - Map a MSI requester ID for a device + * @dev: The device for which the mapping is to be done. + * @req_id: The device requester ID. + * + * Returns: mapped MSI RID on success, input requester ID otherwise + */ +u32 iort_msi_map_rid(struct device *dev, u32 req_id) +{ + struct acpi_iort_node *node; + u32 dev_id; + + node = iort_find_dev_node(dev); + if (!node) + return req_id; + + iort_node_map_rid(node, req_id, &dev_id, ACPI_IORT_NODE_ITS_GROUP); + return dev_id; +} + +/** + * iort_dev_find_its_id() - Find the ITS identifier for a device + * @dev: The device. + * @idx: Index of the ITS identifier list. + * @its_id: ITS identifier. + * + * Returns: 0 on success, appropriate error value otherwise + */ +static int iort_dev_find_its_id(struct device *dev, u32 req_id, + unsigned int idx, int *its_id) +{ + struct acpi_iort_its_group *its; + struct acpi_iort_node *node; + + node = iort_find_dev_node(dev); + if (!node) + return -ENXIO; + + node = iort_node_map_rid(node, req_id, NULL, ACPI_IORT_NODE_ITS_GROUP); + if (!node) + return -ENXIO; + + /* Move to ITS specific data */ + its = (struct acpi_iort_its_group *)node->node_data; + if (idx > its->its_count) { + dev_err(dev, "requested ITS ID index [%d] is greater than available [%d]\n", + idx, its->its_count); + return -ENXIO; + } + + *its_id = its->identifiers[idx]; + return 0; +} + +/** + * iort_get_device_domain() - Find MSI domain related to a device + * @dev: The device. + * @req_id: Requester ID for the device. + * + * Returns: the MSI domain for this device, NULL otherwise + */ +struct irq_domain *iort_get_device_domain(struct device *dev, u32 req_id) +{ + struct fwnode_handle *handle; + int its_id; + + if (iort_dev_find_its_id(dev, req_id, 0, &its_id)) + return NULL; + + handle = iort_find_domain_token(its_id); + if (!handle) + return NULL; + + return irq_find_matching_fwnode(handle, DOMAIN_BUS_PCI_MSI); +} + +void __init acpi_iort_init(void) +{ + acpi_status status; + + status = acpi_get_table(ACPI_SIG_IORT, 0, &iort_table); + if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) { + const char *msg = acpi_format_exception(status); + pr_err("Failed to get table, %s\n", msg); + } +} --- linux-4.8.0.orig/drivers/acpi/blacklist.c +++ linux-4.8.0/drivers/acpi/blacklist.c @@ -160,6 +160,18 @@ DMI_MATCH(DMI_PRODUCT_NAME, "XPS 13 9343"), }, }, + /* + * Resolves a quirk with the Dell Latitude 3350 that + * causes the ethernet adapter to not function. + */ + { + .callback = dmi_enable_rev_override, + .ident = "DELL Latitude 3350", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "Latitude 3350"), + }, + }, #endif {} }; --- linux-4.8.0.orig/drivers/acpi/bus.c +++ linux-4.8.0/drivers/acpi/bus.c @@ -36,6 +36,7 @@ #ifdef CONFIG_X86 #include #endif +#include #include #include #include @@ -1186,6 +1187,7 @@ } pci_mmcfg_late_init(); + acpi_iort_init(); acpi_scan_init(); acpi_ec_init(); acpi_debugfs_init(); --- linux-4.8.0.orig/drivers/acpi/custom_method.c +++ linux-4.8.0/drivers/acpi/custom_method.c @@ -29,6 +29,9 @@ struct acpi_table_header table; acpi_status status; + if (secure_modules()) + return -EPERM; + if (!(*ppos)) { /* parse the table header to get the table length */ if (count <= sizeof(struct acpi_table_header)) --- linux-4.8.0.orig/drivers/acpi/nfit/core.c +++ linux-4.8.0/drivers/acpi/nfit/core.c @@ -94,7 +94,7 @@ return to_acpi_device(acpi_desc->dev); } -static int xlat_status(void *buf, unsigned int cmd, u32 status) +static int xlat_bus_status(void *buf, unsigned int cmd, u32 status) { struct nd_cmd_clear_error *clear_err; struct nd_cmd_ars_status *ars_status; @@ -113,7 +113,7 @@ flags = ND_ARS_PERSISTENT | ND_ARS_VOLATILE; if ((status >> 16 & flags) == 0) return -ENOTTY; - break; + return 0; case ND_CMD_ARS_START: /* ARS is in progress */ if ((status & 0xffff) == NFIT_ARS_START_BUSY) @@ -122,7 +122,7 @@ /* Command failed */ if (status & 0xffff) return -EIO; - break; + return 0; case ND_CMD_ARS_STATUS: ars_status = buf; /* Command failed */ @@ -146,7 +146,8 @@ * then just continue with the returned results. */ if (status == NFIT_ARS_STATUS_INTR) { - if (ars_status->flags & NFIT_ARS_F_OVERFLOW) + if (ars_status->out_length >= 40 && (ars_status->flags + & NFIT_ARS_F_OVERFLOW)) return -ENOSPC; return 0; } @@ -154,7 +155,7 @@ /* Unknown status */ if (status >> 16) return -EIO; - break; + return 0; case ND_CMD_CLEAR_ERROR: clear_err = buf; if (status & 0xffff) @@ -163,7 +164,7 @@ return -EIO; if (clear_err->length > clear_err->cleared) return clear_err->cleared; - break; + return 0; default: break; } @@ -174,6 +175,16 @@ return 0; } +static int xlat_status(struct nvdimm *nvdimm, void *buf, unsigned int cmd, + u32 status) +{ + if (!nvdimm) + return xlat_bus_status(buf, cmd, status); + if (status) + return -EIO; + return 0; +} + static int acpi_nfit_ctl(struct nvdimm_bus_descriptor *nd_desc, struct nvdimm *nvdimm, unsigned int cmd, void *buf, unsigned int buf_len, int *cmd_rc) @@ -298,7 +309,8 @@ for (i = 0, offset = 0; i < desc->out_num; i++) { u32 out_size = nd_cmd_out_size(nvdimm, cmd, desc, i, buf, - (u32 *) out_obj->buffer.pointer); + (u32 *) out_obj->buffer.pointer, + out_obj->buffer.length - offset); if (offset + out_size > out_obj->buffer.length) { dev_dbg(dev, "%s:%s output object underflow cmd: %s field: %d\n", @@ -333,7 +345,8 @@ */ rc = buf_len - offset - in_buf.buffer.length; if (cmd_rc) - *cmd_rc = xlat_status(buf, cmd, fw_status); + *cmd_rc = xlat_status(nvdimm, buf, cmd, + fw_status); } else { dev_err(dev, "%s:%s underrun cmd: %s buf_len: %d out_len: %d\n", __func__, dimm_name, cmd_name, buf_len, @@ -343,7 +356,7 @@ } else { rc = 0; if (cmd_rc) - *cmd_rc = xlat_status(buf, cmd, fw_status); + *cmd_rc = xlat_status(nvdimm, buf, cmd, fw_status); } out: @@ -1857,19 +1870,32 @@ return cmd_rc; } -static int ars_status_process_records(struct nvdimm_bus *nvdimm_bus, +static int ars_status_process_records(struct acpi_nfit_desc *acpi_desc, struct nd_cmd_ars_status *ars_status) { + struct nvdimm_bus *nvdimm_bus = acpi_desc->nvdimm_bus; int rc; u32 i; + /* + * First record starts at 44 byte offset from the start of the + * payload. + */ + if (ars_status->out_length < 44) + return 0; for (i = 0; i < ars_status->num_records; i++) { + /* only process full records */ + if (ars_status->out_length + < 44 + sizeof(struct nd_ars_record) * (i + 1)) + break; rc = nvdimm_bus_add_poison(nvdimm_bus, ars_status->records[i].err_address, ars_status->records[i].length); if (rc) return rc; } + if (i < ars_status->num_records) + dev_warn(acpi_desc->dev, "detected truncated ars results\n"); return 0; } @@ -2122,8 +2148,7 @@ if (rc < 0 && rc != -ENOSPC) return rc; - if (ars_status_process_records(acpi_desc->nvdimm_bus, - acpi_desc->ars_status)) + if (ars_status_process_records(acpi_desc, acpi_desc->ars_status)) return -ENOMEM; return 0; @@ -2689,6 +2714,9 @@ dev_dbg(dev, "%s: event: %d\n", __func__, event); + if (event != NFIT_NOTIFY_UPDATE) + return; + device_lock(dev); if (!dev->driver) { /* dev->driver may be null if we're being removed */ --- linux-4.8.0.orig/drivers/acpi/nfit/nfit.h +++ linux-4.8.0/drivers/acpi/nfit/nfit.h @@ -78,6 +78,10 @@ NFIT_ARS_TIMEOUT = 90, }; +enum nfit_root_notifiers { + NFIT_NOTIFY_UPDATE = 0x80, +}; + struct nfit_spa { struct list_head list; struct nd_region *nd_region; --- linux-4.8.0.orig/drivers/acpi/osi.c +++ linux-4.8.0/drivers/acpi/osi.c @@ -463,6 +463,77 @@ }, /* + * The following Lenovo models have a broken workaround in the + * acpi_video backlight implementation to meet the Windows 8 + * requirement of 101 backlight levels. Reverting to pre-Win8 + * behavior fixes the problem. + */ + { + .callback = dmi_disable_osi_win8, + .ident = "Lenovo ThinkPad L430", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad L430"), + }, + }, + { + .callback = dmi_disable_osi_win8, + .ident = "Lenovo ThinkPad T430", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad T430"), + }, + }, + { + .callback = dmi_disable_osi_win8, + .ident = "Lenovo ThinkPad T430s", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad T430s"), + }, + }, + { + .callback = dmi_disable_osi_win8, + .ident = "Lenovo ThinkPad T530", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad T530"), + }, + }, + { + .callback = dmi_disable_osi_win8, + .ident = "Lenovo ThinkPad W530", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad W530"), + }, + }, + { + .callback = dmi_disable_osi_win8, + .ident = "Lenovo ThinkPad X1 Carbon", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad X1 Carbon"), + }, + }, + { + .callback = dmi_disable_osi_win8, + .ident = "Lenovo ThinkPad X230", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad X230"), + }, + }, + { + .callback = dmi_disable_osi_win8, + .ident = "Lenovo ThinkPad Edge E330", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad Edge E330"), + }, + }, + + /* * BIOS invocation of _OSI(Linux) is almost always a BIOS bug. * Linux ignores it, except for the machines enumerated below. */ --- linux-4.8.0.orig/drivers/acpi/osl.c +++ linux-4.8.0/drivers/acpi/osl.c @@ -40,6 +40,7 @@ #include #include #include +#include #include #include @@ -184,7 +185,7 @@ acpi_physical_address __init acpi_os_get_root_pointer(void) { #ifdef CONFIG_KEXEC - if (acpi_rsdp) + if (acpi_rsdp && !secure_modules()) return acpi_rsdp; #endif --- linux-4.8.0.orig/drivers/acpi/pci_link.c +++ linux-4.8.0/drivers/acpi/pci_link.c @@ -87,6 +87,7 @@ static LIST_HEAD(acpi_link_list); static DEFINE_MUTEX(acpi_link_lock); +static int sci_irq = -1, sci_penalty; /* -------------------------------------------------------------------------- PCI Link Device Management @@ -496,25 +497,13 @@ { int penalty = 0; - /* - * Penalize IRQ used by ACPI SCI. If ACPI SCI pin attributes conflict - * with PCI IRQ attributes, mark ACPI SCI as ISA_ALWAYS so it won't be - * use for PCI IRQs. - */ - if (irq == acpi_gbl_FADT.sci_interrupt) { - u32 type = irq_get_trigger_type(irq) & IRQ_TYPE_SENSE_MASK; - - if (type != IRQ_TYPE_LEVEL_LOW) - penalty += PIRQ_PENALTY_ISA_ALWAYS; - else - penalty += PIRQ_PENALTY_PCI_USING; - } + if (irq == sci_irq) + penalty += sci_penalty; if (irq < ACPI_MAX_ISA_IRQS) return penalty + acpi_isa_irq_penalty[irq]; - penalty += acpi_irq_pci_sharing_penalty(irq); - return penalty; + return penalty + acpi_irq_pci_sharing_penalty(irq); } int __init acpi_irq_penalty_init(void) @@ -619,6 +608,10 @@ acpi_device_bid(link->device)); return -ENODEV; } else { + if (link->irq.active < ACPI_MAX_ISA_IRQS) + acpi_isa_irq_penalty[link->irq.active] += + PIRQ_PENALTY_PCI_USING; + printk(KERN_WARNING PREFIX "%s [%s] enabled at IRQ %d\n", acpi_device_name(link->device), acpi_device_bid(link->device), link->irq.active); @@ -849,7 +842,7 @@ continue; if (used) - new_penalty = acpi_irq_get_penalty(irq) + + new_penalty = acpi_isa_irq_penalty[irq] + PIRQ_PENALTY_ISA_USED; else new_penalty = 0; @@ -871,7 +864,7 @@ void acpi_penalize_isa_irq(int irq, int active) { if ((irq >= 0) && (irq < ARRAY_SIZE(acpi_isa_irq_penalty))) - acpi_isa_irq_penalty[irq] = acpi_irq_get_penalty(irq) + + acpi_isa_irq_penalty[irq] += (active ? PIRQ_PENALTY_ISA_USED : PIRQ_PENALTY_PCI_USING); } @@ -881,6 +874,17 @@ acpi_irq_get_penalty(irq) < PIRQ_PENALTY_ISA_ALWAYS); } +void acpi_penalize_sci_irq(int irq, int trigger, int polarity) +{ + sci_irq = irq; + + if (trigger == ACPI_MADT_TRIGGER_LEVEL && + polarity == ACPI_MADT_POLARITY_ACTIVE_LOW) + sci_penalty = PIRQ_PENALTY_PCI_USING; + else + sci_penalty = PIRQ_PENALTY_ISA_ALWAYS; +} + /* * Over-ride default table to reserve additional IRQs for use by ISA * e.g. acpi_irq_isa=5 --- linux-4.8.0.orig/drivers/acpi/sleep.c +++ linux-4.8.0/drivers/acpi/sleep.c @@ -47,32 +47,15 @@ } } -static void acpi_sleep_pts_switch(u32 acpi_state) -{ - acpi_status status; - - status = acpi_execute_simple_method(NULL, "\\_PTS", acpi_state); - if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) { - /* - * OS can't evaluate the _PTS object correctly. Some warning - * message will be printed. But it won't break anything. - */ - printk(KERN_NOTICE "Failure in evaluating _PTS object\n"); - } -} - -static int sleep_notify_reboot(struct notifier_block *this, +static int tts_notify_reboot(struct notifier_block *this, unsigned long code, void *x) { acpi_sleep_tts_switch(ACPI_STATE_S5); - - acpi_sleep_pts_switch(ACPI_STATE_S5); - return NOTIFY_DONE; } -static struct notifier_block sleep_notifier = { - .notifier_call = sleep_notify_reboot, +static struct notifier_block tts_notifier = { + .notifier_call = tts_notify_reboot, .next = NULL, .priority = 0, }; @@ -916,9 +899,9 @@ pr_info(PREFIX "(supports%s)\n", supported); /* - * Register the sleep_notifier to reboot notifier list so that the _TTS - * and _PTS object can also be evaluated when the system enters S5. + * Register the tts_notifier to reboot notifier list so that the _TTS + * object can also be evaluated when the system enters S5. */ - register_reboot_notifier(&sleep_notifier); + register_reboot_notifier(&tts_notifier); return 0; } --- linux-4.8.0.orig/drivers/acpi/spcr.c +++ linux-4.8.0/drivers/acpi/spcr.c @@ -0,0 +1,111 @@ +/* + * Copyright (c) 2012, Intel Corporation + * Copyright (c) 2015, Red Hat, Inc. + * Copyright (c) 2015, 2016 Linaro Ltd. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + */ + +#define pr_fmt(fmt) "ACPI: SPCR: " fmt + +#include +#include +#include +#include + +/** + * parse_spcr() - parse ACPI SPCR table and add preferred console + * + * @earlycon: set up earlycon for the console specified by the table + * + * For the architectures with support for ACPI, CONFIG_ACPI_SPCR_TABLE may be + * defined to parse ACPI SPCR table. As a result of the parsing preferred + * console is registered and if @earlycon is true, earlycon is set up. + * + * When CONFIG_ACPI_SPCR_TABLE is defined, this function should be called + * from arch inintialization code as soon as the DT/ACPI decision is made. + * + */ +int __init parse_spcr(bool earlycon) +{ + static char opts[64]; + struct acpi_table_spcr *table; + acpi_size table_size; + acpi_status status; + char *uart; + char *iotype; + int baud_rate; + int err; + + if (acpi_disabled) + return -ENODEV; + + status = acpi_get_table_with_size(ACPI_SIG_SPCR, 0, + (struct acpi_table_header **)&table, + &table_size); + + if (ACPI_FAILURE(status)) + return -ENOENT; + + if (table->header.revision < 2) { + err = -ENOENT; + pr_err("wrong table version\n"); + goto done; + } + + iotype = table->serial_port.space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY ? + "mmio" : "io"; + + switch (table->interface_type) { + case ACPI_DBG2_ARM_SBSA_32BIT: + iotype = "mmio32"; + /* fall through */ + case ACPI_DBG2_ARM_PL011: + case ACPI_DBG2_ARM_SBSA_GENERIC: + case ACPI_DBG2_BCM2835: + uart = "pl011"; + break; + case ACPI_DBG2_16550_COMPATIBLE: + case ACPI_DBG2_16550_SUBSET: + uart = "uart"; + break; + default: + err = -ENOENT; + goto done; + } + + switch (table->baud_rate) { + case 3: + baud_rate = 9600; + break; + case 4: + baud_rate = 19200; + break; + case 6: + baud_rate = 57600; + break; + case 7: + baud_rate = 115200; + break; + default: + err = -ENOENT; + goto done; + } + + snprintf(opts, sizeof(opts), "%s,%s,0x%llx,%d", uart, iotype, + table->serial_port.address, baud_rate); + + pr_info("console: %s\n", opts); + + if (earlycon) + setup_earlycon(opts); + + err = add_preferred_console(uart, 0, opts + strlen(uart) + 1); + +done: + early_acpi_os_unmap_memory((void __iomem *)table, table_size); + return err; +} --- linux-4.8.0.orig/drivers/acpi/video_detect.c +++ linux-4.8.0/drivers/acpi/video_detect.c @@ -296,6 +296,26 @@ DMI_MATCH(DMI_PRODUCT_NAME, "Vostro V131"), }, }, + { + /* https://bugzilla.redhat.com/show_bug.cgi?id=1123661 */ + .callback = video_detect_force_native, + .ident = "Dell XPS 17 L702X", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "Dell System XPS L702X"), + }, + }, + { + /* https://bugzilla.redhat.com/show_bug.cgi?id=1204476 */ + /* https://bugs.launchpad.net/ubuntu/+source/linux-lts-trusty/+bug/1416940 */ + .callback = video_detect_force_native, + .ident = "HP Pavilion dv6", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), + DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion dv6 Notebook PC"), + }, + }, + { }, }; --- linux-4.8.0.orig/drivers/android/binder.c +++ linux-4.8.0/drivers/android/binder.c @@ -1003,7 +1003,7 @@ static struct binder_ref *binder_get_ref(struct binder_proc *proc, - uint32_t desc) + u32 desc, bool need_strong_ref) { struct rb_node *n = proc->refs_by_desc.rb_node; struct binder_ref *ref; @@ -1011,12 +1011,16 @@ while (n) { ref = rb_entry(n, struct binder_ref, rb_node_desc); - if (desc < ref->desc) + if (desc < ref->desc) { n = n->rb_left; - else if (desc > ref->desc) + } else if (desc > ref->desc) { n = n->rb_right; - else + } else if (need_strong_ref && !ref->strong) { + binder_user_error("tried to use weak ref as strong ref\n"); + return NULL; + } else { return ref; + } } return NULL; } @@ -1286,7 +1290,10 @@ } break; case BINDER_TYPE_HANDLE: case BINDER_TYPE_WEAK_HANDLE: { - struct binder_ref *ref = binder_get_ref(proc, fp->handle); + struct binder_ref *ref; + + ref = binder_get_ref(proc, fp->handle, + fp->type == BINDER_TYPE_HANDLE); if (ref == NULL) { pr_err("transaction release %d bad handle %d\n", @@ -1381,7 +1388,7 @@ if (tr->target.handle) { struct binder_ref *ref; - ref = binder_get_ref(proc, tr->target.handle); + ref = binder_get_ref(proc, tr->target.handle, true); if (ref == NULL) { binder_user_error("%d:%d got transaction to invalid handle\n", proc->pid, thread->pid); @@ -1578,7 +1585,9 @@ fp->type = BINDER_TYPE_HANDLE; else fp->type = BINDER_TYPE_WEAK_HANDLE; + fp->binder = 0; fp->handle = ref->desc; + fp->cookie = 0; binder_inc_ref(ref, fp->type == BINDER_TYPE_HANDLE, &thread->todo); @@ -1590,7 +1599,10 @@ } break; case BINDER_TYPE_HANDLE: case BINDER_TYPE_WEAK_HANDLE: { - struct binder_ref *ref = binder_get_ref(proc, fp->handle); + struct binder_ref *ref; + + ref = binder_get_ref(proc, fp->handle, + fp->type == BINDER_TYPE_HANDLE); if (ref == NULL) { binder_user_error("%d:%d got transaction with invalid handle, %d\n", @@ -1625,7 +1637,9 @@ return_error = BR_FAILED_REPLY; goto err_binder_get_ref_for_node_failed; } + fp->binder = 0; fp->handle = new_ref->desc; + fp->cookie = 0; binder_inc_ref(new_ref, fp->type == BINDER_TYPE_HANDLE, NULL); trace_binder_transaction_ref_to_ref(t, ref, new_ref); @@ -1679,6 +1693,7 @@ binder_debug(BINDER_DEBUG_TRANSACTION, " fd %d -> %d\n", fp->handle, target_fd); /* TODO: fput? */ + fp->binder = 0; fp->handle = target_fd; } break; @@ -1801,7 +1816,9 @@ ref->desc); } } else - ref = binder_get_ref(proc, target); + ref = binder_get_ref(proc, target, + cmd == BC_ACQUIRE || + cmd == BC_RELEASE); if (ref == NULL) { binder_user_error("%d:%d refcount change on invalid ref %d\n", proc->pid, thread->pid, target); @@ -1997,7 +2014,7 @@ if (get_user(cookie, (binder_uintptr_t __user *)ptr)) return -EFAULT; ptr += sizeof(binder_uintptr_t); - ref = binder_get_ref(proc, target); + ref = binder_get_ref(proc, target, false); if (ref == NULL) { binder_user_error("%d:%d %s invalid ref %d\n", proc->pid, thread->pid, --- linux-4.8.0.orig/drivers/ata/libata-scsi.c +++ linux-4.8.0/drivers/ata/libata-scsi.c @@ -1088,7 +1088,7 @@ desc[1] = tf->command; /* status */ desc[2] = tf->device; desc[3] = tf->nsect; - desc[0] = 0; + desc[7] = 0; if (tf->flags & ATA_TFLAG_LBA48) { desc[8] |= 0x80; if (tf->hob_nsect) --- linux-4.8.0.orig/drivers/base/core.c +++ linux-4.8.0/drivers/base/core.c @@ -836,11 +836,29 @@ return NULL; } +static inline bool live_in_glue_dir(struct kobject *kobj, + struct device *dev) +{ + if (!kobj || !dev->class || + kobj->kset != &dev->class->p->glue_dirs) + return false; + return true; +} + +static inline struct kobject *get_glue_dir(struct device *dev) +{ + return dev->kobj.parent; +} + +/* + * make sure cleaning up dir as the last step, we need to make + * sure .release handler of kobject is run with holding the + * global lock + */ static void cleanup_glue_dir(struct device *dev, struct kobject *glue_dir) { /* see if we live in a "glue" directory */ - if (!glue_dir || !dev->class || - glue_dir->kset != &dev->class->p->glue_dirs) + if (!live_in_glue_dir(glue_dir, dev)) return; mutex_lock(&gdp_mutex); @@ -848,11 +866,6 @@ mutex_unlock(&gdp_mutex); } -static void cleanup_device_parent(struct device *dev) -{ - cleanup_glue_dir(dev, dev->kobj.parent); -} - static int device_add_class_symlinks(struct device *dev) { struct device_node *of_node = dev_of_node(dev); @@ -1028,6 +1041,7 @@ struct kobject *kobj; struct class_interface *class_intf; int error = -EINVAL; + struct kobject *glue_dir = NULL; dev = get_device(dev); if (!dev) @@ -1072,8 +1086,10 @@ /* first, register with generic layer. */ /* we require the name to be set before, and pass NULL */ error = kobject_add(&dev->kobj, dev->kobj.parent, NULL); - if (error) + if (error) { + glue_dir = get_glue_dir(dev); goto Error; + } /* notify platform of device entry */ if (platform_notify) @@ -1154,9 +1170,10 @@ device_remove_file(dev, &dev_attr_uevent); attrError: kobject_uevent(&dev->kobj, KOBJ_REMOVE); + glue_dir = get_glue_dir(dev); kobject_del(&dev->kobj); Error: - cleanup_device_parent(dev); + cleanup_glue_dir(dev, glue_dir); put_device(parent); name_error: kfree(dev->p); @@ -1232,6 +1249,7 @@ void device_del(struct device *dev) { struct device *parent = dev->parent; + struct kobject *glue_dir = NULL; struct class_interface *class_intf; /* Notify clients of device removal. This call must come @@ -1276,8 +1294,9 @@ blocking_notifier_call_chain(&dev->bus->p->bus_notifier, BUS_NOTIFY_REMOVED_DEVICE, dev); kobject_uevent(&dev->kobj, KOBJ_REMOVE); - cleanup_device_parent(dev); + glue_dir = get_glue_dir(dev); kobject_del(&dev->kobj); + cleanup_glue_dir(dev, glue_dir); put_device(parent); } EXPORT_SYMBOL_GPL(device_del); --- linux-4.8.0.orig/drivers/base/dma-mapping.c +++ linux-4.8.0/drivers/base/dma-mapping.c @@ -334,7 +334,7 @@ return; } - unmap_kernel_range((unsigned long)cpu_addr, size); + unmap_kernel_range((unsigned long)cpu_addr, PAGE_ALIGN(size)); vunmap(cpu_addr); } #endif --- linux-4.8.0.orig/drivers/base/firmware_class.c +++ linux-4.8.0/drivers/base/firmware_class.c @@ -955,13 +955,14 @@ timeout = MAX_JIFFY_OFFSET; } - retval = wait_for_completion_interruptible_timeout(&buf->completion, + timeout = wait_for_completion_interruptible_timeout(&buf->completion, timeout); - if (retval == -ERESTARTSYS || !retval) { + if (timeout == -ERESTARTSYS || !timeout) { + retval = timeout; mutex_lock(&fw_lock); fw_load_abort(fw_priv); mutex_unlock(&fw_lock); - } else if (retval > 0) { + } else if (timeout > 0) { retval = 0; } --- linux-4.8.0.orig/drivers/base/platform.c +++ linux-4.8.0/drivers/base/platform.c @@ -97,7 +97,7 @@ int ret; ret = of_irq_get(dev->dev.of_node, num); - if (ret >= 0 || ret == -EPROBE_DEFER) + if (ret > 0 || ret == -EPROBE_DEFER) return ret; } @@ -175,7 +175,7 @@ int ret; ret = of_irq_get_byname(dev->dev.of_node, name); - if (ret >= 0 || ret == -EPROBE_DEFER) + if (ret > 0 || ret == -EPROBE_DEFER) return ret; } --- linux-4.8.0.orig/drivers/base/power/main.c +++ linux-4.8.0/drivers/base/power/main.c @@ -1027,6 +1027,8 @@ TRACE_DEVICE(dev); TRACE_SUSPEND(0); + dpm_wait_for_children(dev, async); + if (async_error) goto Complete; @@ -1038,8 +1040,6 @@ if (dev->power.syscore || dev->power.direct_complete) goto Complete; - dpm_wait_for_children(dev, async); - if (dev->pm_domain) { info = "noirq power domain "; callback = pm_noirq_op(&dev->pm_domain->ops, state); @@ -1174,6 +1174,8 @@ __pm_runtime_disable(dev, false); + dpm_wait_for_children(dev, async); + if (async_error) goto Complete; @@ -1185,8 +1187,6 @@ if (dev->power.syscore || dev->power.direct_complete) goto Complete; - dpm_wait_for_children(dev, async); - if (dev->pm_domain) { info = "late power domain "; callback = pm_late_early_op(&dev->pm_domain->ops, state); --- linux-4.8.0.orig/drivers/base/power/opp/core.c +++ linux-4.8.0/drivers/base/power/opp/core.c @@ -1320,7 +1320,7 @@ * that this function is *NOT* called under RCU protection or in contexts where * mutex cannot be locked. */ -int dev_pm_opp_set_regulator(struct device *dev, const char *name) +struct opp_table *dev_pm_opp_set_regulator(struct device *dev, const char *name) { struct opp_table *opp_table; struct regulator *reg; @@ -1358,20 +1358,20 @@ opp_table->regulator = reg; mutex_unlock(&opp_table_lock); - return 0; + return opp_table; err: _remove_opp_table(opp_table); unlock: mutex_unlock(&opp_table_lock); - return ret; + return ERR_PTR(ret); } EXPORT_SYMBOL_GPL(dev_pm_opp_set_regulator); /** * dev_pm_opp_put_regulator() - Releases resources blocked for regulator - * @dev: Device for which regulator was set. + * @opp_table: OPP table returned from dev_pm_opp_set_regulator(). * * Locking: The internal opp_table and opp structures are RCU protected. * Hence this function internally uses RCU updater strategy with mutex locks @@ -1379,22 +1379,12 @@ * that this function is *NOT* called under RCU protection or in contexts where * mutex cannot be locked. */ -void dev_pm_opp_put_regulator(struct device *dev) +void dev_pm_opp_put_regulator(struct opp_table *opp_table) { - struct opp_table *opp_table; - mutex_lock(&opp_table_lock); - /* Check for existing table for 'dev' first */ - opp_table = _find_opp_table(dev); - if (IS_ERR(opp_table)) { - dev_err(dev, "Failed to find opp_table: %ld\n", - PTR_ERR(opp_table)); - goto unlock; - } - if (IS_ERR(opp_table->regulator)) { - dev_err(dev, "%s: Doesn't have regulator set\n", __func__); + pr_err("%s: Doesn't have regulator set\n", __func__); goto unlock; } --- linux-4.8.0.orig/drivers/base/power/qos.c +++ linux-4.8.0/drivers/base/power/qos.c @@ -883,6 +883,7 @@ mutex_unlock(&dev_pm_qos_mtx); return ret; } +EXPORT_SYMBOL_GPL(dev_pm_qos_update_user_latency_tolerance); /** * dev_pm_qos_expose_latency_tolerance - Expose latency tolerance to userspace --- linux-4.8.0.orig/drivers/block/aoe/aoecmd.c +++ linux-4.8.0/drivers/block/aoe/aoecmd.c @@ -853,45 +853,6 @@ return n; } -/* This can be removed if we are certain that no users of the block - * layer will ever use zero-count pages in bios. Otherwise we have to - * protect against the put_page sometimes done by the network layer. - * - * See http://oss.sgi.com/archives/xfs/2007-01/msg00594.html for - * discussion. - * - * We cannot use get_page in the workaround, because it insists on a - * positive page count as a precondition. So we use _refcount directly. - */ -static void -bio_pageinc(struct bio *bio) -{ - struct bio_vec bv; - struct page *page; - struct bvec_iter iter; - - bio_for_each_segment(bv, bio, iter) { - /* Non-zero page count for non-head members of - * compound pages is no longer allowed by the kernel. - */ - page = compound_head(bv.bv_page); - page_ref_inc(page); - } -} - -static void -bio_pagedec(struct bio *bio) -{ - struct page *page; - struct bio_vec bv; - struct bvec_iter iter; - - bio_for_each_segment(bv, bio, iter) { - page = compound_head(bv.bv_page); - page_ref_dec(page); - } -} - static void bufinit(struct buf *buf, struct request *rq, struct bio *bio) { @@ -899,7 +860,6 @@ buf->rq = rq; buf->bio = bio; buf->iter = bio->bi_iter; - bio_pageinc(bio); } static struct buf * @@ -1127,7 +1087,6 @@ if (buf == d->ip.buf) d->ip.buf = NULL; rq = buf->rq; - bio_pagedec(buf->bio); mempool_free(buf, d->bufpool); n = (unsigned long) rq->special; rq->special = (void *) --n; --- linux-4.8.0.orig/drivers/block/drbd/drbd_main.c +++ linux-4.8.0/drivers/block/drbd/drbd_main.c @@ -1871,7 +1871,7 @@ drbd_update_congested(connection); } do { - rv = kernel_sendmsg(sock, &msg, &iov, 1, size); + rv = kernel_sendmsg(sock, &msg, &iov, 1, iov.iov_len); if (rv == -EAGAIN) { if (we_should_drop_the_connection(connection, sock)) break; --- linux-4.8.0.orig/drivers/block/loop.c +++ linux-4.8.0/drivers/block/loop.c @@ -551,7 +551,7 @@ } struct switch_request { - struct file *file; + struct file *file, *virt_file; struct completion wait; }; @@ -577,6 +577,7 @@ mapping = file->f_mapping; mapping_set_gfp_mask(old_file->f_mapping, lo->old_gfp_mask); lo->lo_backing_file = file; + lo->lo_backing_virt_file = p->virt_file; lo->lo_blocksize = S_ISBLK(mapping->host->i_mode) ? mapping->host->i_bdev->bd_block_size : PAGE_SIZE; lo->old_gfp_mask = mapping_gfp_mask(mapping); @@ -589,11 +590,13 @@ * First it needs to flush existing IO, it does this by sending a magic * BIO down the pipe. The completion of this BIO does the actual switch. */ -static int loop_switch(struct loop_device *lo, struct file *file) +static int loop_switch(struct loop_device *lo, struct file *file, + struct file *virt_file) { struct switch_request w; w.file = file; + w.virt_file = virt_file; /* freeze queue and wait for completion of scheduled requests */ blk_mq_freeze_queue(lo->lo_queue); @@ -612,7 +615,16 @@ */ static int loop_flush(struct loop_device *lo) { - return loop_switch(lo, NULL); + return loop_switch(lo, NULL, NULL); +} + +static struct file *loop_real_file(struct file *file) +{ + struct file *f = NULL; + + if (file->f_path.dentry->d_sb->s_op->real_loop) + f = file->f_path.dentry->d_sb->s_op->real_loop(file); + return f; } static void loop_reread_partitions(struct loop_device *lo, @@ -649,6 +661,7 @@ unsigned int arg) { struct file *file, *old_file; + struct file *f, *virt_file = NULL, *old_virt_file; struct inode *inode; int error; @@ -665,9 +678,16 @@ file = fget(arg); if (!file) goto out; + f = loop_real_file(file); + if (f) { + virt_file = file; + file = f; + get_file(file); + } inode = file->f_mapping->host; old_file = lo->lo_backing_file; + old_virt_file = lo->lo_backing_virt_file; error = -EINVAL; @@ -679,17 +699,21 @@ goto out_putf; /* and ... switch */ - error = loop_switch(lo, file); + error = loop_switch(lo, file, virt_file); if (error) goto out_putf; fput(old_file); + if (old_virt_file) + fput(old_virt_file); if (lo->lo_flags & LO_FLAGS_PARTSCAN) loop_reread_partitions(lo, bdev); return 0; out_putf: fput(file); + if (virt_file) + fput(virt_file); out: return error; } @@ -701,6 +725,24 @@ return i && S_ISBLK(i->i_mode) && MAJOR(i->i_rdev) == LOOP_MAJOR; } +/* + * for AUFS + * no get/put for file. + */ +struct file *loop_backing_file(struct super_block *sb) +{ + struct file *ret; + struct loop_device *l; + + ret = NULL; + if (MAJOR(sb->s_dev) == LOOP_MAJOR) { + l = sb->s_bdev->bd_disk->private_data; + ret = l->lo_backing_file; + } + return ret; +} +EXPORT_SYMBOL_GPL(loop_backing_file); + /* loop sysfs attributes */ static ssize_t loop_attr_show(struct device *dev, char *page, @@ -858,7 +900,7 @@ static int loop_set_fd(struct loop_device *lo, fmode_t mode, struct block_device *bdev, unsigned int arg) { - struct file *file, *f; + struct file *file, *f, *virt_file = NULL; struct inode *inode; struct address_space *mapping; unsigned lo_blocksize; @@ -873,6 +915,12 @@ file = fget(arg); if (!file) goto out; + f = loop_real_file(file); + if (f) { + virt_file = file; + file = f; + get_file(file); + } error = -EBUSY; if (lo->lo_state != Lo_unbound) @@ -925,6 +973,7 @@ lo->lo_device = bdev; lo->lo_flags = lo_flags; lo->lo_backing_file = file; + lo->lo_backing_virt_file = virt_file; lo->transfer = NULL; lo->ioctl = NULL; lo->lo_sizelimit = 0; @@ -957,6 +1006,8 @@ out_putf: fput(file); + if (virt_file) + fput(virt_file); out: /* This is safe: open() is still holding a reference. */ module_put(THIS_MODULE); @@ -1003,6 +1054,7 @@ static int loop_clr_fd(struct loop_device *lo) { struct file *filp = lo->lo_backing_file; + struct file *virt_filp = lo->lo_backing_virt_file; gfp_t gfp = lo->old_gfp_mask; struct block_device *bdev = lo->lo_device; @@ -1034,6 +1086,7 @@ spin_lock_irq(&lo->lo_lock); lo->lo_state = Lo_rundown; lo->lo_backing_file = NULL; + lo->lo_backing_virt_file = NULL; spin_unlock_irq(&lo->lo_lock); loop_release_xfer(lo); @@ -1078,6 +1131,8 @@ * bd_mutex which is usually taken before lo_ctl_mutex. */ fput(filp); + if (virt_filp) + fput(virt_filp); return 0; } @@ -1646,7 +1701,7 @@ blk_mq_start_request(bd->rq); if (lo->lo_state != Lo_bound) - return -EIO; + return BLK_MQ_RQ_QUEUE_ERROR; switch (req_op(cmd->rq)) { case REQ_OP_FLUSH: --- linux-4.8.0.orig/drivers/block/loop.h +++ linux-4.8.0/drivers/block/loop.h @@ -46,7 +46,7 @@ int (*ioctl)(struct loop_device *, int cmd, unsigned long arg); - struct file * lo_backing_file; + struct file * lo_backing_file, *lo_backing_virt_file; struct block_device *lo_device; unsigned lo_blocksize; void *key_data; --- linux-4.8.0.orig/drivers/block/nbd.c +++ linux-4.8.0/drivers/block/nbd.c @@ -81,7 +81,7 @@ static unsigned int nbds_max = 16; static struct nbd_device *nbd_dev; -static int max_part; +static int max_part = 15; /* * Use just one lock (or at most 1 per NIC). Two arguments for this: @@ -131,8 +131,6 @@ if (!nbd_is_connected(nbd)) return; - bdev->bd_inode->i_size = nbd->bytesize; - set_capacity(nbd->disk, nbd->bytesize >> 9); kobject_uevent(&nbd_to_dev(nbd)->kobj, KOBJ_CHANGE); } @@ -148,6 +146,8 @@ nbd->blksize = blocksize; nbd->bytesize = (loff_t)blocksize * (loff_t)nr_blocks; + bdev->bd_inode->i_size = nbd->bytesize; + set_capacity(nbd->disk, nbd->bytesize >> 9); nbd_size_update(nbd, bdev); return 0; --- linux-4.8.0.orig/drivers/block/zram/zram_drv.c +++ linux-4.8.0/drivers/block/zram/zram_drv.c @@ -1403,7 +1403,8 @@ zram = idr_find(&zram_index_idr, dev_id); if (zram) { ret = zram_remove(zram); - idr_remove(&zram_index_idr, dev_id); + if (!ret) + idr_remove(&zram_index_idr, dev_id); } else { ret = -ENODEV; } @@ -1412,8 +1413,14 @@ return ret ? ret : count; } +/* + * NOTE: hot_add attribute is not the usual read-only sysfs attribute. In a + * sense that reading from this file does alter the state of your system -- it + * creates a new un-initialized zram device and returns back this device's + * device_id (or an error code if it fails to create a new device). + */ static struct class_attribute zram_control_class_attrs[] = { - __ATTR_RO(hot_add), + __ATTR(hot_add, 0400, hot_add_show, NULL), __ATTR_WO(hot_remove), __ATTR_NULL, }; --- linux-4.8.0.orig/drivers/bluetooth/btbcm.c +++ linux-4.8.0/drivers/bluetooth/btbcm.c @@ -178,6 +178,9 @@ } kfree_skb(skb); + /* 100 msec delay for module to complete reset process */ + msleep(100); + return 0; } --- linux-4.8.0.orig/drivers/bluetooth/btusb.c +++ linux-4.8.0/drivers/bluetooth/btusb.c @@ -153,6 +153,10 @@ { USB_VENDOR_AND_INTERFACE_INFO(0x13d3, 0xff, 0x01, 0x01), .driver_info = BTUSB_BCM_PATCHRAM }, + /* Dell Computer - Broadcom based */ + { USB_VENDOR_AND_INTERFACE_INFO(0x413c, 0xff, 0x01, 0x01), + .driver_info = BTUSB_BCM_PATCHRAM }, + /* Toshiba Corp - Broadcom based */ { USB_VENDOR_AND_INTERFACE_INFO(0x0930, 0xff, 0x01, 0x01), .driver_info = BTUSB_BCM_PATCHRAM }, @@ -248,9 +252,11 @@ /* QCA ROME chipset */ { USB_DEVICE(0x0cf3, 0xe007), .driver_info = BTUSB_QCA_ROME }, + { USB_DEVICE(0x0cf3, 0xe009), .driver_info = BTUSB_QCA_ROME }, { USB_DEVICE(0x0cf3, 0xe300), .driver_info = BTUSB_QCA_ROME }, { USB_DEVICE(0x0cf3, 0xe360), .driver_info = BTUSB_QCA_ROME }, { USB_DEVICE(0x0489, 0xe092), .driver_info = BTUSB_QCA_ROME }, + { USB_DEVICE(0x04ca, 0x3011), .driver_info = BTUSB_QCA_ROME }, /* Broadcom BCM2035 */ { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 }, --- linux-4.8.0.orig/drivers/cdrom/cdrom.c +++ linux-4.8.0/drivers/cdrom/cdrom.c @@ -289,7 +289,7 @@ /* default compatibility mode */ static bool autoclose=1; static bool autoeject; -static bool lockdoor = 1; +static bool lockdoor = 0; /* will we ever get to use this... sigh. */ static bool check_media_type; /* automatically restart mrw format */ --- linux-4.8.0.orig/drivers/char/agp/intel-gtt.c +++ linux-4.8.0/drivers/char/agp/intel-gtt.c @@ -845,6 +845,8 @@ unsigned int flags) { intel_private.driver->write_entry(addr, pg, flags); + if (intel_private.driver->chipset_flush) + intel_private.driver->chipset_flush(); } EXPORT_SYMBOL(intel_gtt_insert_page); --- linux-4.8.0.orig/drivers/char/hw_random/core.c +++ linux-4.8.0/drivers/char/hw_random/core.c @@ -84,14 +84,14 @@ static void add_early_randomness(struct hwrng *rng) { - unsigned char bytes[16]; int bytes_read; + size_t size = min_t(size_t, 16, rng_buffer_size()); mutex_lock(&reading_mutex); - bytes_read = rng_get_data(rng, bytes, sizeof(bytes), 1); + bytes_read = rng_get_data(rng, rng_buffer, size, 1); mutex_unlock(&reading_mutex); if (bytes_read > 0) - add_device_randomness(bytes, bytes_read); + add_device_randomness(rng_buffer, bytes_read); } static inline void cleanup_rng(struct kref *kref) --- linux-4.8.0.orig/drivers/char/hw_random/omap-rng.c +++ linux-4.8.0/drivers/char/hw_random/omap-rng.c @@ -385,7 +385,7 @@ pm_runtime_enable(&pdev->dev); ret = pm_runtime_get_sync(&pdev->dev); - if (ret) { + if (ret < 0) { dev_err(&pdev->dev, "Failed to runtime_get device: %d\n", ret); pm_runtime_put_noidle(&pdev->dev); goto err_ioremap; @@ -443,7 +443,7 @@ int ret; ret = pm_runtime_get_sync(dev); - if (ret) { + if (ret < 0) { dev_err(dev, "Failed to runtime_get device: %d\n", ret); pm_runtime_put_noidle(dev); return ret; --- linux-4.8.0.orig/drivers/char/lp.c +++ linux-4.8.0/drivers/char/lp.c @@ -859,7 +859,11 @@ } else if (!strcmp(str, "auto")) { parport_nr[0] = LP_PARPORT_AUTO; } else if (!strcmp(str, "none")) { - parport_nr[parport_ptr++] = LP_PARPORT_NONE; + if (parport_ptr < LP_NO) + parport_nr[parport_ptr++] = LP_PARPORT_NONE; + else + printk(KERN_INFO "lp: too many ports, %s ignored.\n", + str); } else if (!strcmp(str, "reset")) { reset = 1; } --- linux-4.8.0.orig/drivers/char/mem.c +++ linux-4.8.0/drivers/char/mem.c @@ -28,6 +28,7 @@ #include #include #include +#include #include @@ -163,6 +164,9 @@ if (p != *ppos) return -EFBIG; + if (secure_modules()) + return -EPERM; + if (!valid_phys_addr_range(p, count)) return -EFAULT; @@ -509,6 +513,9 @@ char *kbuf; /* k-addr because vwrite() takes vmlist_lock rwlock */ int err = 0; + if (secure_modules()) + return -EPERM; + if (p < (unsigned long) high_memory) { unsigned long to_write = min_t(unsigned long, count, (unsigned long)high_memory - p); @@ -574,6 +581,9 @@ unsigned long i = *ppos; const char __user *tmp = buf; + if (secure_modules()) + return -EPERM; + if (!access_ok(VERIFY_READ, buf, count)) return -EFAULT; while (count-- > 0 && i < 65536) { --- linux-4.8.0.orig/drivers/char/tpm/tpm-dev.c +++ linux-4.8.0/drivers/char/tpm/tpm-dev.c @@ -145,7 +145,7 @@ return -EPIPE; } out_size = tpm_transmit(priv->chip, priv->data_buffer, - sizeof(priv->data_buffer)); + sizeof(priv->data_buffer), 0); tpm_put_ops(priv->chip); if (out_size < 0) { --- linux-4.8.0.orig/drivers/char/tpm/tpm-interface.c +++ linux-4.8.0/drivers/char/tpm/tpm-interface.c @@ -330,8 +330,8 @@ /* * Internal kernel interface to transmit TPM commands */ -ssize_t tpm_transmit(struct tpm_chip *chip, const char *buf, - size_t bufsiz) +ssize_t tpm_transmit(struct tpm_chip *chip, const u8 *buf, size_t bufsiz, + unsigned int flags) { ssize_t rc; u32 count, ordinal; @@ -350,7 +350,8 @@ return -E2BIG; } - mutex_lock(&chip->tpm_mutex); + if (!(flags & TPM_TRANSMIT_UNLOCKED)) + mutex_lock(&chip->tpm_mutex); rc = chip->ops->send(chip, (u8 *) buf, count); if (rc < 0) { @@ -393,20 +394,21 @@ dev_err(&chip->dev, "tpm_transmit: tpm_recv: error %zd\n", rc); out: - mutex_unlock(&chip->tpm_mutex); + if (!(flags & TPM_TRANSMIT_UNLOCKED)) + mutex_unlock(&chip->tpm_mutex); return rc; } #define TPM_DIGEST_SIZE 20 #define TPM_RET_CODE_IDX 6 -ssize_t tpm_transmit_cmd(struct tpm_chip *chip, void *cmd, - int len, const char *desc) +ssize_t tpm_transmit_cmd(struct tpm_chip *chip, const void *cmd, + int len, unsigned int flags, const char *desc) { - struct tpm_output_header *header; + const struct tpm_output_header *header; int err; - len = tpm_transmit(chip, (u8 *) cmd, len); + len = tpm_transmit(chip, (const u8 *)cmd, len, flags); if (len < 0) return len; else if (len < TPM_HEADER_SIZE) @@ -453,7 +455,8 @@ tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(4); tpm_cmd.params.getcap_in.subcap = subcap_id; } - rc = tpm_transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE, desc); + rc = tpm_transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE, 0, + desc); if (!rc) *cap = tpm_cmd.params.getcap_out.cap; return rc; @@ -469,7 +472,7 @@ tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(4); tpm_cmd.params.getcap_in.subcap = TPM_CAP_PROP_TIS_TIMEOUT; - rc = tpm_transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE, + rc = tpm_transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE, 0, "attempting to determine the timeouts"); } EXPORT_SYMBOL_GPL(tpm_gen_interrupt); @@ -490,7 +493,7 @@ start_cmd.header.in = tpm_startup_header; start_cmd.params.startup_in.startup_type = startup_type; - return tpm_transmit_cmd(chip, &start_cmd, TPM_INTERNAL_RESULT_SIZE, + return tpm_transmit_cmd(chip, &start_cmd, TPM_INTERNAL_RESULT_SIZE, 0, "attempting to start the TPM"); } @@ -521,7 +524,8 @@ tpm_cmd.params.getcap_in.cap = TPM_CAP_PROP; tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(4); tpm_cmd.params.getcap_in.subcap = TPM_CAP_PROP_TIS_TIMEOUT; - rc = tpm_transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE, NULL); + rc = tpm_transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE, 0, + NULL); if (rc == TPM_ERR_INVALID_POSTINIT) { /* The TPM is not started, we are the first to talk to it. @@ -535,7 +539,7 @@ tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(4); tpm_cmd.params.getcap_in.subcap = TPM_CAP_PROP_TIS_TIMEOUT; rc = tpm_transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE, - NULL); + 0, NULL); } if (rc) { dev_err(&chip->dev, @@ -596,7 +600,7 @@ tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(4); tpm_cmd.params.getcap_in.subcap = TPM_CAP_PROP_TIS_DURATION; - rc = tpm_transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE, + rc = tpm_transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE, 0, "attempting to determine the durations"); if (rc) return rc; @@ -652,7 +656,7 @@ struct tpm_cmd_t cmd; cmd.header.in = continue_selftest_header; - rc = tpm_transmit_cmd(chip, &cmd, CONTINUE_SELFTEST_RESULT_SIZE, + rc = tpm_transmit_cmd(chip, &cmd, CONTINUE_SELFTEST_RESULT_SIZE, 0, "continue selftest"); return rc; } @@ -672,7 +676,7 @@ cmd.header.in = pcrread_header; cmd.params.pcrread_in.pcr_idx = cpu_to_be32(pcr_idx); - rc = tpm_transmit_cmd(chip, &cmd, READ_PCR_RESULT_SIZE, + rc = tpm_transmit_cmd(chip, &cmd, READ_PCR_RESULT_SIZE, 0, "attempting to read a pcr value"); if (rc == 0) @@ -770,7 +774,7 @@ cmd.header.in = pcrextend_header; cmd.params.pcrextend_in.pcr_idx = cpu_to_be32(pcr_idx); memcpy(cmd.params.pcrextend_in.hash, hash, TPM_DIGEST_SIZE); - rc = tpm_transmit_cmd(chip, &cmd, EXTEND_PCR_RESULT_SIZE, + rc = tpm_transmit_cmd(chip, &cmd, EXTEND_PCR_RESULT_SIZE, 0, "attempting extend a PCR value"); tpm_put_ops(chip); @@ -809,7 +813,7 @@ /* Attempt to read a PCR value */ cmd.header.in = pcrread_header; cmd.params.pcrread_in.pcr_idx = cpu_to_be32(0); - rc = tpm_transmit(chip, (u8 *) &cmd, READ_PCR_RESULT_SIZE); + rc = tpm_transmit(chip, (u8 *) &cmd, READ_PCR_RESULT_SIZE, 0); /* Some buggy TPMs will not respond to tpm_tis_ready() for * around 300ms while the self test is ongoing, keep trying * until the self test duration expires. */ @@ -879,7 +883,7 @@ if (chip == NULL) return -ENODEV; - rc = tpm_transmit_cmd(chip, cmd, buflen, "attempting tpm_cmd"); + rc = tpm_transmit_cmd(chip, cmd, buflen, 0, "attempting tpm_cmd"); tpm_put_ops(chip); return rc; @@ -981,14 +985,15 @@ cmd.params.pcrextend_in.pcr_idx = cpu_to_be32(tpm_suspend_pcr); memcpy(cmd.params.pcrextend_in.hash, dummy_hash, TPM_DIGEST_SIZE); - rc = tpm_transmit_cmd(chip, &cmd, EXTEND_PCR_RESULT_SIZE, + rc = tpm_transmit_cmd(chip, &cmd, EXTEND_PCR_RESULT_SIZE, 0, "extending dummy pcr before suspend"); } /* now do the actual savestate */ for (try = 0; try < TPM_RETRY; try++) { cmd.header.in = savestate_header; - rc = tpm_transmit_cmd(chip, &cmd, SAVESTATE_RESULT_SIZE, NULL); + rc = tpm_transmit_cmd(chip, &cmd, SAVESTATE_RESULT_SIZE, 0, + NULL); /* * If the TPM indicates that it is too busy to respond to @@ -1072,8 +1077,8 @@ tpm_cmd.params.getrandom_in.num_bytes = cpu_to_be32(num_bytes); err = tpm_transmit_cmd(chip, &tpm_cmd, - TPM_GETRANDOM_RESULT_SIZE + num_bytes, - "attempting get random"); + TPM_GETRANDOM_RESULT_SIZE + num_bytes, + 0, "attempting get random"); if (err) break; --- linux-4.8.0.orig/drivers/char/tpm/tpm-sysfs.c +++ linux-4.8.0/drivers/char/tpm/tpm-sysfs.c @@ -39,7 +39,7 @@ struct tpm_chip *chip = to_tpm_chip(dev); tpm_cmd.header.in = tpm_readpubek_header; - err = tpm_transmit_cmd(chip, &tpm_cmd, READ_PUBEK_RESULT_SIZE, + err = tpm_transmit_cmd(chip, &tpm_cmd, READ_PUBEK_RESULT_SIZE, 0, "attempting to read the PUBEK"); if (err) goto out; --- linux-4.8.0.orig/drivers/char/tpm/tpm.h +++ linux-4.8.0/drivers/char/tpm/tpm.h @@ -476,12 +476,16 @@ extern const struct file_operations tpm_fops; extern struct idr dev_nums_idr; +enum tpm_transmit_flags { + TPM_TRANSMIT_UNLOCKED = BIT(0), +}; + +ssize_t tpm_transmit(struct tpm_chip *chip, const u8 *buf, size_t bufsiz, + unsigned int flags); +ssize_t tpm_transmit_cmd(struct tpm_chip *chip, const void *cmd, int len, + unsigned int flags, const char *desc); ssize_t tpm_getcap(struct tpm_chip *chip, __be32 subcap_id, cap_t *cap, const char *desc); -ssize_t tpm_transmit(struct tpm_chip *chip, const char *buf, - size_t bufsiz); -ssize_t tpm_transmit_cmd(struct tpm_chip *chip, void *cmd, int len, - const char *desc); extern int tpm_get_timeouts(struct tpm_chip *); extern void tpm_gen_interrupt(struct tpm_chip *); int tpm1_auto_startup(struct tpm_chip *chip); --- linux-4.8.0.orig/drivers/char/tpm/tpm2-cmd.c +++ linux-4.8.0/drivers/char/tpm/tpm2-cmd.c @@ -282,7 +282,7 @@ sizeof(cmd.params.pcrread_in.pcr_select)); cmd.params.pcrread_in.pcr_select[pcr_idx >> 3] = 1 << (pcr_idx & 0x7); - rc = tpm_transmit_cmd(chip, &cmd, sizeof(cmd), + rc = tpm_transmit_cmd(chip, &cmd, sizeof(cmd), 0, "attempting to read a pcr value"); if (rc == 0) { buf = cmd.params.pcrread_out.digest; @@ -330,7 +330,7 @@ cmd.params.pcrextend_in.hash_alg = cpu_to_be16(TPM2_ALG_SHA1); memcpy(cmd.params.pcrextend_in.digest, hash, TPM_DIGEST_SIZE); - rc = tpm_transmit_cmd(chip, &cmd, sizeof(cmd), + rc = tpm_transmit_cmd(chip, &cmd, sizeof(cmd), 0, "attempting extend a PCR value"); return rc; @@ -376,7 +376,7 @@ cmd.header.in = tpm2_getrandom_header; cmd.params.getrandom_in.size = cpu_to_be16(num_bytes); - err = tpm_transmit_cmd(chip, &cmd, sizeof(cmd), + err = tpm_transmit_cmd(chip, &cmd, sizeof(cmd), 0, "attempting get random"); if (err) break; @@ -434,12 +434,12 @@ } /** - * tpm2_seal_trusted() - seal a trusted key - * @chip_num: A specific chip number for the request or TPM_ANY_NUM - * @options: authentication values and other options + * tpm2_seal_trusted() - seal the payload of a trusted key + * @chip_num: TPM chip to use * @payload: the key data in clear and encrypted form + * @options: authentication values and other options * - * Returns < 0 on error and 0 on success. + * Return: < 0 on error and 0 on success. */ int tpm2_seal_trusted(struct tpm_chip *chip, struct trusted_key_payload *payload, @@ -512,7 +512,7 @@ goto out; } - rc = tpm_transmit_cmd(chip, buf.data, PAGE_SIZE, "sealing data"); + rc = tpm_transmit_cmd(chip, buf.data, PAGE_SIZE, 0, "sealing data"); if (rc) goto out; @@ -538,10 +538,18 @@ return rc; } -static int tpm2_load(struct tpm_chip *chip, - struct trusted_key_payload *payload, - struct trusted_key_options *options, - u32 *blob_handle) +/** + * tpm2_load_cmd() - execute a TPM2_Load command + * @chip_num: TPM chip to use + * @payload: the key data in clear and encrypted form + * @options: authentication values and other options + * + * Return: same as with tpm_transmit_cmd + */ +static int tpm2_load_cmd(struct tpm_chip *chip, + struct trusted_key_payload *payload, + struct trusted_key_options *options, + u32 *blob_handle, unsigned int flags) { struct tpm_buf buf; unsigned int private_len; @@ -576,7 +584,7 @@ goto out; } - rc = tpm_transmit_cmd(chip, buf.data, PAGE_SIZE, "loading blob"); + rc = tpm_transmit_cmd(chip, buf.data, PAGE_SIZE, flags, "loading blob"); if (!rc) *blob_handle = be32_to_cpup( (__be32 *) &buf.data[TPM_HEADER_SIZE]); @@ -590,7 +598,16 @@ return rc; } -static void tpm2_flush_context(struct tpm_chip *chip, u32 handle) +/** + * tpm2_flush_context_cmd() - execute a TPM2_FlushContext command + * @chip_num: TPM chip to use + * @payload: the key data in clear and encrypted form + * @options: authentication values and other options + * + * Return: same as with tpm_transmit_cmd + */ +static void tpm2_flush_context_cmd(struct tpm_chip *chip, u32 handle, + unsigned int flags) { struct tpm_buf buf; int rc; @@ -604,7 +621,8 @@ tpm_buf_append_u32(&buf, handle); - rc = tpm_transmit_cmd(chip, buf.data, PAGE_SIZE, "flushing context"); + rc = tpm_transmit_cmd(chip, buf.data, PAGE_SIZE, flags, + "flushing context"); if (rc) dev_warn(&chip->dev, "0x%08x was not flushed, rc=%d\n", handle, rc); @@ -612,10 +630,18 @@ tpm_buf_destroy(&buf); } -static int tpm2_unseal(struct tpm_chip *chip, - struct trusted_key_payload *payload, - struct trusted_key_options *options, - u32 blob_handle) +/** + * tpm2_unseal_cmd() - execute a TPM2_Unload command + * @chip_num: TPM chip to use + * @payload: the key data in clear and encrypted form + * @options: authentication values and other options + * + * Return: same as with tpm_transmit_cmd + */ +static int tpm2_unseal_cmd(struct tpm_chip *chip, + struct trusted_key_payload *payload, + struct trusted_key_options *options, + u32 blob_handle, unsigned int flags) { struct tpm_buf buf; u16 data_len; @@ -635,7 +661,7 @@ options->blobauth /* hmac */, TPM_DIGEST_SIZE); - rc = tpm_transmit_cmd(chip, buf.data, PAGE_SIZE, "unsealing"); + rc = tpm_transmit_cmd(chip, buf.data, PAGE_SIZE, flags, "unsealing"); if (rc > 0) rc = -EPERM; @@ -654,12 +680,12 @@ } /** - * tpm_unseal_trusted() - unseal a trusted key - * @chip_num: A specific chip number for the request or TPM_ANY_NUM - * @options: authentication values and other options + * tpm_unseal_trusted() - unseal the payload of a trusted key + * @chip_num: TPM chip to use * @payload: the key data in clear and encrypted form + * @options: authentication values and other options * - * Returns < 0 on error and 0 on success. + * Return: < 0 on error and 0 on success. */ int tpm2_unseal_trusted(struct tpm_chip *chip, struct trusted_key_payload *payload, @@ -668,14 +694,17 @@ u32 blob_handle; int rc; - rc = tpm2_load(chip, payload, options, &blob_handle); + mutex_lock(&chip->tpm_mutex); + rc = tpm2_load_cmd(chip, payload, options, &blob_handle, + TPM_TRANSMIT_UNLOCKED); if (rc) - return rc; - - rc = tpm2_unseal(chip, payload, options, blob_handle); - - tpm2_flush_context(chip, blob_handle); + goto out; + rc = tpm2_unseal_cmd(chip, payload, options, blob_handle, + TPM_TRANSMIT_UNLOCKED); + tpm2_flush_context_cmd(chip, blob_handle, TPM_TRANSMIT_UNLOCKED); +out: + mutex_unlock(&chip->tpm_mutex); return rc; } @@ -701,7 +730,7 @@ cmd.params.get_tpm_pt_in.property_id = cpu_to_be32(property_id); cmd.params.get_tpm_pt_in.property_cnt = cpu_to_be32(1); - rc = tpm_transmit_cmd(chip, &cmd, sizeof(cmd), desc); + rc = tpm_transmit_cmd(chip, &cmd, sizeof(cmd), 0, desc); if (!rc) *value = be32_to_cpu(cmd.params.get_tpm_pt_out.value); @@ -735,7 +764,7 @@ cmd.header.in = tpm2_startup_header; cmd.params.startup_in.startup_type = cpu_to_be16(startup_type); - return tpm_transmit_cmd(chip, &cmd, sizeof(cmd), + return tpm_transmit_cmd(chip, &cmd, sizeof(cmd), 0, "attempting to start the TPM"); } @@ -763,7 +792,7 @@ cmd.header.in = tpm2_shutdown_header; cmd.params.startup_in.startup_type = cpu_to_be16(shutdown_type); - rc = tpm_transmit_cmd(chip, &cmd, sizeof(cmd), "stopping the TPM"); + rc = tpm_transmit_cmd(chip, &cmd, sizeof(cmd), 0, "stopping the TPM"); /* In places where shutdown command is sent there's no much we can do * except print the error code on a system failure. @@ -828,7 +857,7 @@ cmd.header.in = tpm2_selftest_header; cmd.params.selftest_in.full_test = full; - rc = tpm_transmit_cmd(chip, &cmd, TPM2_SELF_TEST_IN_SIZE, + rc = tpm_transmit_cmd(chip, &cmd, TPM2_SELF_TEST_IN_SIZE, 0, "continue selftest"); /* At least some prototype chips seem to give RC_TESTING error @@ -880,7 +909,7 @@ cmd.params.pcrread_in.pcr_select[1] = 0x00; cmd.params.pcrread_in.pcr_select[2] = 0x00; - rc = tpm_transmit_cmd(chip, (u8 *) &cmd, sizeof(cmd), NULL); + rc = tpm_transmit_cmd(chip, &cmd, sizeof(cmd), 0, NULL); if (rc < 0) break; @@ -928,7 +957,7 @@ cmd.params.get_tpm_pt_in.property_id = cpu_to_be32(0x100); cmd.params.get_tpm_pt_in.property_cnt = cpu_to_be32(1); - rc = tpm_transmit(chip, (const char *) &cmd, sizeof(cmd)); + rc = tpm_transmit(chip, (const u8 *)&cmd, sizeof(cmd), 0); if (rc < 0) return rc; else if (rc < TPM_HEADER_SIZE) --- linux-4.8.0.orig/drivers/char/tpm/tpm_crb.c +++ linux-4.8.0/drivers/char/tpm/tpm_crb.c @@ -142,6 +142,11 @@ struct crb_priv *priv = dev_get_drvdata(&chip->dev); int rc = 0; + /* Zero the cancel register so that the next command will not get + * canceled. + */ + iowrite32(0, &priv->cca->cancel); + if (len > ioread32(&priv->cca->cmd_size)) { dev_err(&chip->dev, "invalid command count value %x %zx\n", @@ -175,8 +180,6 @@ if ((priv->flags & CRB_FL_ACPI_START) && crb_do_acpi_start(chip)) dev_err(&chip->dev, "ACPI Start failed\n"); - - iowrite32(0, &priv->cca->cancel); } static bool crb_req_canceled(struct tpm_chip *chip, u8 status) --- linux-4.8.0.orig/drivers/char/tpm/xen-tpmfront.c +++ linux-4.8.0/drivers/char/tpm/xen-tpmfront.c @@ -307,7 +307,6 @@ rv = setup_ring(dev, priv); if (rv) { chip = dev_get_drvdata(&dev->dev); - tpm_chip_unregister(chip); ring_free(priv); return rv; } --- linux-4.8.0.orig/drivers/char/virtio_console.c +++ linux-4.8.0/drivers/char/virtio_console.c @@ -1540,19 +1540,29 @@ spin_lock_irq(&port->inbuf_lock); /* Remove unused data this port might have received. */ discard_port_data(port); + spin_unlock_irq(&port->inbuf_lock); /* Remove buffers we queued up for the Host to send us data in. */ - while ((buf = virtqueue_detach_unused_buf(port->in_vq))) - free_buf(buf, true); - spin_unlock_irq(&port->inbuf_lock); + do { + spin_lock_irq(&port->inbuf_lock); + buf = virtqueue_detach_unused_buf(port->in_vq); + spin_unlock_irq(&port->inbuf_lock); + if (buf) + free_buf(buf, true); + } while (buf); spin_lock_irq(&port->outvq_lock); reclaim_consumed_buffers(port); + spin_unlock_irq(&port->outvq_lock); /* Free pending buffers from the out-queue. */ - while ((buf = virtqueue_detach_unused_buf(port->out_vq))) - free_buf(buf, true); - spin_unlock_irq(&port->outvq_lock); + do { + spin_lock_irq(&port->outvq_lock); + buf = virtqueue_detach_unused_buf(port->out_vq); + spin_unlock_irq(&port->outvq_lock); + if (buf) + free_buf(buf, true); + } while (buf); } /* --- linux-4.8.0.orig/drivers/clk/bcm/clk-bcm2835.c +++ linux-4.8.0/drivers/clk/bcm/clk-bcm2835.c @@ -751,7 +751,9 @@ cprman_write(cprman, data->cm_reg, (cprman_read(cprman, data->cm_reg) & ~data->load_mask) | data->hold_mask); - cprman_write(cprman, data->a2w_reg, A2W_PLL_CHANNEL_DISABLE); + cprman_write(cprman, data->a2w_reg, + cprman_read(cprman, data->a2w_reg) | + A2W_PLL_CHANNEL_DISABLE); spin_unlock(&cprman->regs_lock); } @@ -1006,16 +1008,28 @@ return 0; } +static bool +bcm2835_clk_is_pllc(struct clk_hw *hw) +{ + if (!hw) + return false; + + return strncmp(clk_hw_get_name(hw), "pllc", 4) == 0; +} + static int bcm2835_clock_determine_rate(struct clk_hw *hw, struct clk_rate_request *req) { struct bcm2835_clock *clock = bcm2835_clock_from_hw(hw); struct clk_hw *parent, *best_parent = NULL; + bool current_parent_is_pllc; unsigned long rate, best_rate = 0; unsigned long prate, best_prate = 0; size_t i; u32 div; + current_parent_is_pllc = bcm2835_clk_is_pllc(clk_hw_get_parent(hw)); + /* * Select parent clock that results in the closest but lower rate */ @@ -1023,6 +1037,17 @@ parent = clk_hw_get_parent_by_index(hw, i); if (!parent) continue; + + /* + * Don't choose a PLLC-derived clock as our parent + * unless it had been manually set that way. PLLC's + * frequency gets adjusted by the firmware due to + * over-temp or under-voltage conditions, without + * prior notification to our clock consumer. + */ + if (bcm2835_clk_is_pllc(parent) && !current_parent_is_pllc) + continue; + prate = clk_hw_get_rate(parent); div = bcm2835_clock_choose_div(hw, req->rate, prate, true); rate = bcm2835_clock_rate_from_divisor(clock, prate, div); --- linux-4.8.0.orig/drivers/clk/clk-divider.c +++ linux-4.8.0/drivers/clk/clk-divider.c @@ -352,7 +352,7 @@ /* if read only, just return current value */ if (divider->flags & CLK_DIVIDER_READ_ONLY) { - bestdiv = readl(divider->reg) >> divider->shift; + bestdiv = clk_readl(divider->reg) >> divider->shift; bestdiv &= div_mask(divider->width); bestdiv = _get_div(divider->table, bestdiv, divider->flags, divider->width); --- linux-4.8.0.orig/drivers/clk/clk-qoriq.c +++ linux-4.8.0/drivers/clk/clk-qoriq.c @@ -700,6 +700,7 @@ struct mux_hwclock *hwc, const struct clk_ops *ops, unsigned long min_rate, + unsigned long max_rate, unsigned long pct80_rate, const char *fmt, int idx) { @@ -728,6 +729,8 @@ continue; if (rate < min_rate) continue; + if (rate > max_rate) + continue; parent_names[j] = div->name; hwc->parent_to_clksel[j] = i; @@ -759,14 +762,18 @@ struct mux_hwclock *hwc; const struct clockgen_pll_div *div; unsigned long plat_rate, min_rate; - u64 pct80_rate; + u64 max_rate, pct80_rate; u32 clksel; hwc = kzalloc(sizeof(*hwc), GFP_KERNEL); if (!hwc) return NULL; - hwc->reg = cg->regs + 0x20 * idx; + if (cg->info.flags & CG_VER3) + hwc->reg = cg->regs + 0x70000 + 0x20 * idx; + else + hwc->reg = cg->regs + 0x20 * idx; + hwc->info = cg->info.cmux_groups[cg->info.cmux_to_group[idx]]; /* @@ -783,8 +790,8 @@ return NULL; } - pct80_rate = clk_get_rate(div->clk); - pct80_rate *= 8; + max_rate = clk_get_rate(div->clk); + pct80_rate = max_rate * 8; do_div(pct80_rate, 10); plat_rate = clk_get_rate(cg->pll[PLATFORM_PLL].div[PLL_DIV1].clk); @@ -794,7 +801,7 @@ else min_rate = plat_rate / 2; - return create_mux_common(cg, hwc, &cmux_ops, min_rate, + return create_mux_common(cg, hwc, &cmux_ops, min_rate, max_rate, pct80_rate, "cg-cmux%d", idx); } @@ -809,7 +816,7 @@ hwc->reg = cg->regs + 0x20 * idx + 0x10; hwc->info = cg->info.hwaccel[idx]; - return create_mux_common(cg, hwc, &hwaccel_ops, 0, 0, + return create_mux_common(cg, hwc, &hwaccel_ops, 0, ULONG_MAX, 0, "cg-hwaccel%d", idx); } --- linux-4.8.0.orig/drivers/clk/clk.c +++ linux-4.8.0/drivers/clk/clk.c @@ -1908,10 +1908,6 @@ clk_prepare_lock(); - /* bail early if nothing to do */ - if (degrees == clk->core->phase) - goto out; - trace_clk_set_phase(clk->core, degrees); if (clk->core->ops->set_phase) @@ -1922,7 +1918,6 @@ if (!ret) clk->core->phase = degrees; -out: clk_prepare_unlock(); return ret; @@ -3186,7 +3181,7 @@ { struct of_clk_provider *provider; struct clk *clk = ERR_PTR(-EPROBE_DEFER); - struct clk_hw *hw = ERR_PTR(-EPROBE_DEFER); + struct clk_hw *hw; if (!clkspec) return ERR_PTR(-EINVAL); @@ -3194,12 +3189,13 @@ /* Check if we have such a provider in our array */ mutex_lock(&of_clk_mutex); list_for_each_entry(provider, &of_clk_providers, link) { - if (provider->node == clkspec->np) + if (provider->node == clkspec->np) { hw = __of_clk_get_hw_from_provider(provider, clkspec); - if (!IS_ERR(hw)) { clk = __clk_create_clk(hw, dev_id, con_id); + } - if (!IS_ERR(clk) && !__clk_get(clk)) { + if (!IS_ERR(clk)) { + if (!__clk_get(clk)) { __clk_free_clk(clk); clk = ERR_PTR(-ENOENT); } --- linux-4.8.0.orig/drivers/clk/imx/clk-imx35.c +++ linux-4.8.0/drivers/clk/imx/clk-imx35.c @@ -115,7 +115,7 @@ } clk[ckih] = imx_clk_fixed("ckih", 24000000); - clk[ckil] = imx_clk_fixed("ckih", 32768); + clk[ckil] = imx_clk_fixed("ckil", 32768); clk[mpll] = imx_clk_pllv1(IMX_PLLV1_IMX35, "mpll", "ckih", base + MX35_CCM_MPCTL); clk[ppll] = imx_clk_pllv1(IMX_PLLV1_IMX35, "ppll", "ckih", base + MX35_CCM_PPCTL); --- linux-4.8.0.orig/drivers/clk/imx/clk-imx6q.c +++ linux-4.8.0/drivers/clk/imx/clk-imx6q.c @@ -318,11 +318,16 @@ clk[IMX6QDL_CLK_IPG_PER_SEL] = imx_clk_mux("ipg_per_sel", base + 0x1c, 6, 1, ipg_per_sels, ARRAY_SIZE(ipg_per_sels)); clk[IMX6QDL_CLK_UART_SEL] = imx_clk_mux("uart_sel", base + 0x24, 6, 1, uart_sels, ARRAY_SIZE(uart_sels)); clk[IMX6QDL_CLK_GPU2D_CORE_SEL] = imx_clk_mux("gpu2d_core_sel", base + 0x18, 16, 2, gpu2d_core_sels_2, ARRAY_SIZE(gpu2d_core_sels_2)); + } else if (clk_on_imx6dl()) { + clk[IMX6QDL_CLK_MLB_SEL] = imx_clk_mux("mlb_sel", base + 0x18, 16, 2, gpu2d_core_sels, ARRAY_SIZE(gpu2d_core_sels)); } else { clk[IMX6QDL_CLK_GPU2D_CORE_SEL] = imx_clk_mux("gpu2d_core_sel", base + 0x18, 16, 2, gpu2d_core_sels, ARRAY_SIZE(gpu2d_core_sels)); } clk[IMX6QDL_CLK_GPU3D_CORE_SEL] = imx_clk_mux("gpu3d_core_sel", base + 0x18, 4, 2, gpu3d_core_sels, ARRAY_SIZE(gpu3d_core_sels)); - clk[IMX6QDL_CLK_GPU3D_SHADER_SEL] = imx_clk_mux("gpu3d_shader_sel", base + 0x18, 8, 2, gpu3d_shader_sels, ARRAY_SIZE(gpu3d_shader_sels)); + if (clk_on_imx6dl()) + clk[IMX6QDL_CLK_GPU2D_CORE_SEL] = imx_clk_mux("gpu2d_core_sel", base + 0x18, 8, 2, gpu3d_shader_sels, ARRAY_SIZE(gpu3d_shader_sels)); + else + clk[IMX6QDL_CLK_GPU3D_SHADER_SEL] = imx_clk_mux("gpu3d_shader_sel", base + 0x18, 8, 2, gpu3d_shader_sels, ARRAY_SIZE(gpu3d_shader_sels)); clk[IMX6QDL_CLK_IPU1_SEL] = imx_clk_mux("ipu1_sel", base + 0x3c, 9, 2, ipu_sels, ARRAY_SIZE(ipu_sels)); clk[IMX6QDL_CLK_IPU2_SEL] = imx_clk_mux("ipu2_sel", base + 0x3c, 14, 2, ipu_sels, ARRAY_SIZE(ipu_sels)); clk[IMX6QDL_CLK_LDB_DI0_SEL] = imx_clk_mux_flags("ldb_di0_sel", base + 0x2c, 9, 3, ldb_di_sels, ARRAY_SIZE(ldb_di_sels), CLK_SET_RATE_PARENT); @@ -400,9 +405,15 @@ clk[IMX6QDL_CLK_LDB_DI0_DIV_3_5] = imx_clk_fixed_factor("ldb_di0_div_3_5", "ldb_di0_sel", 2, 7); clk[IMX6QDL_CLK_LDB_DI1_DIV_3_5] = imx_clk_fixed_factor("ldb_di1_div_3_5", "ldb_di1_sel", 2, 7); } - clk[IMX6QDL_CLK_GPU2D_CORE_PODF] = imx_clk_divider("gpu2d_core_podf", "gpu2d_core_sel", base + 0x18, 23, 3); + if (clk_on_imx6dl()) + clk[IMX6QDL_CLK_MLB_PODF] = imx_clk_divider("mlb_podf", "mlb_sel", base + 0x18, 23, 3); + else + clk[IMX6QDL_CLK_GPU2D_CORE_PODF] = imx_clk_divider("gpu2d_core_podf", "gpu2d_core_sel", base + 0x18, 23, 3); clk[IMX6QDL_CLK_GPU3D_CORE_PODF] = imx_clk_divider("gpu3d_core_podf", "gpu3d_core_sel", base + 0x18, 26, 3); - clk[IMX6QDL_CLK_GPU3D_SHADER] = imx_clk_divider("gpu3d_shader", "gpu3d_shader_sel", base + 0x18, 29, 3); + if (clk_on_imx6dl()) + clk[IMX6QDL_CLK_GPU2D_CORE_PODF] = imx_clk_divider("gpu2d_core_podf", "gpu2d_core_sel", base + 0x18, 29, 3); + else + clk[IMX6QDL_CLK_GPU3D_SHADER] = imx_clk_divider("gpu3d_shader", "gpu3d_shader_sel", base + 0x18, 29, 3); clk[IMX6QDL_CLK_IPU1_PODF] = imx_clk_divider("ipu1_podf", "ipu1_sel", base + 0x3c, 11, 3); clk[IMX6QDL_CLK_IPU2_PODF] = imx_clk_divider("ipu2_podf", "ipu2_sel", base + 0x3c, 16, 3); clk[IMX6QDL_CLK_LDB_DI0_PODF] = imx_clk_divider_flags("ldb_di0_podf", "ldb_di0_div_3_5", base + 0x20, 10, 1, 0); @@ -473,14 +484,7 @@ clk[IMX6QDL_CLK_ESAI_MEM] = imx_clk_gate2_shared("esai_mem", "ahb", base + 0x6c, 16, &share_count_esai); clk[IMX6QDL_CLK_GPT_IPG] = imx_clk_gate2("gpt_ipg", "ipg", base + 0x6c, 20); clk[IMX6QDL_CLK_GPT_IPG_PER] = imx_clk_gate2("gpt_ipg_per", "ipg_per", base + 0x6c, 22); - if (clk_on_imx6dl()) - /* - * The multiplexer and divider of imx6q clock gpu3d_shader get - * redefined/reused as gpu2d_core_sel and gpu2d_core_podf on imx6dl. - */ - clk[IMX6QDL_CLK_GPU2D_CORE] = imx_clk_gate2("gpu2d_core", "gpu3d_shader", base + 0x6c, 24); - else - clk[IMX6QDL_CLK_GPU2D_CORE] = imx_clk_gate2("gpu2d_core", "gpu2d_core_podf", base + 0x6c, 24); + clk[IMX6QDL_CLK_GPU2D_CORE] = imx_clk_gate2("gpu2d_core", "gpu2d_core_podf", base + 0x6c, 24); clk[IMX6QDL_CLK_GPU3D_CORE] = imx_clk_gate2("gpu3d_core", "gpu3d_core_podf", base + 0x6c, 26); clk[IMX6QDL_CLK_HDMI_IAHB] = imx_clk_gate2("hdmi_iahb", "ahb", base + 0x70, 0); clk[IMX6QDL_CLK_HDMI_ISFR] = imx_clk_gate2("hdmi_isfr", "video_27m", base + 0x70, 4); @@ -511,7 +515,7 @@ * The multiplexer and divider of the imx6q clock gpu2d get * redefined/reused as mlb_sys_sel and mlb_sys_clk_podf on imx6dl. */ - clk[IMX6QDL_CLK_MLB] = imx_clk_gate2("mlb", "gpu2d_core_podf", base + 0x74, 18); + clk[IMX6QDL_CLK_MLB] = imx_clk_gate2("mlb", "mlb_podf", base + 0x74, 18); else clk[IMX6QDL_CLK_MLB] = imx_clk_gate2("mlb", "axi", base + 0x74, 18); clk[IMX6QDL_CLK_MMDC_CH0_AXI] = imx_clk_gate2("mmdc_ch0_axi", "mmdc_ch0_axi_podf", base + 0x74, 20); @@ -629,6 +633,24 @@ if (IS_ENABLED(CONFIG_PCI_IMX6)) clk_set_parent(clk[IMX6QDL_CLK_LVDS1_SEL], clk[IMX6QDL_CLK_SATA_REF_100M]); + /* + * Initialize the GPU clock muxes, so that the maximum specified clock + * rates for the respective SoC are not exceeded. + */ + if (clk_on_imx6dl()) { + clk_set_parent(clk[IMX6QDL_CLK_GPU3D_CORE_SEL], + clk[IMX6QDL_CLK_PLL2_PFD1_594M]); + clk_set_parent(clk[IMX6QDL_CLK_GPU2D_CORE_SEL], + clk[IMX6QDL_CLK_PLL2_PFD1_594M]); + } else if (clk_on_imx6q()) { + clk_set_parent(clk[IMX6QDL_CLK_GPU3D_CORE_SEL], + clk[IMX6QDL_CLK_MMDC_CH0_AXI]); + clk_set_parent(clk[IMX6QDL_CLK_GPU3D_SHADER_SEL], + clk[IMX6QDL_CLK_PLL2_PFD1_594M]); + clk_set_parent(clk[IMX6QDL_CLK_GPU2D_CORE_SEL], + clk[IMX6QDL_CLK_PLL3_USB_OTG]); + } + imx_register_uart_clocks(uart_clks); } CLK_OF_DECLARE(imx6q, "fsl,imx6q-ccm", imx6q_clocks_init); --- linux-4.8.0.orig/drivers/clk/imx/clk-pllv3.c +++ linux-4.8.0/drivers/clk/imx/clk-pllv3.c @@ -223,7 +223,7 @@ temp64 *= mfn; do_div(temp64, mfd); - return (parent_rate * div) + (u32)temp64; + return parent_rate * div + (unsigned long)temp64; } static long clk_pllv3_av_round_rate(struct clk_hw *hw, unsigned long rate, @@ -247,7 +247,11 @@ do_div(temp64, parent_rate); mfn = temp64; - return parent_rate * div + parent_rate * mfn / mfd; + temp64 = (u64)parent_rate; + temp64 *= mfn; + do_div(temp64, mfd); + + return parent_rate * div + (unsigned long)temp64; } static int clk_pllv3_av_set_rate(struct clk_hw *hw, unsigned long rate, --- linux-4.8.0.orig/drivers/clk/mmp/clk-of-mmp2.c +++ linux-4.8.0/drivers/clk/mmp/clk-of-mmp2.c @@ -313,7 +313,7 @@ } pxa_unit->apmu_base = of_iomap(np, 1); - if (!pxa_unit->mpmu_base) { + if (!pxa_unit->apmu_base) { pr_err("failed to map apmu registers\n"); return; } --- linux-4.8.0.orig/drivers/clk/mmp/clk-of-pxa168.c +++ linux-4.8.0/drivers/clk/mmp/clk-of-pxa168.c @@ -262,7 +262,7 @@ } pxa_unit->apmu_base = of_iomap(np, 1); - if (!pxa_unit->mpmu_base) { + if (!pxa_unit->apmu_base) { pr_err("failed to map apmu registers\n"); return; } --- linux-4.8.0.orig/drivers/clk/mmp/clk-of-pxa910.c +++ linux-4.8.0/drivers/clk/mmp/clk-of-pxa910.c @@ -282,7 +282,7 @@ } pxa_unit->apmu_base = of_iomap(np, 1); - if (!pxa_unit->mpmu_base) { + if (!pxa_unit->apmu_base) { pr_err("failed to map apmu registers\n"); return; } @@ -294,7 +294,7 @@ } pxa_unit->apbcp_base = of_iomap(np, 3); - if (!pxa_unit->mpmu_base) { + if (!pxa_unit->apbcp_base) { pr_err("failed to map apbcp registers\n"); return; } --- linux-4.8.0.orig/drivers/clk/mvebu/cp110-system-controller.c +++ linux-4.8.0/drivers/clk/mvebu/cp110-system-controller.c @@ -81,13 +81,6 @@ #define CP110_GATE_EIP150 25 #define CP110_GATE_EIP197 26 -static struct clk *cp110_clks[CP110_CLK_NUM]; - -static struct clk_onecell_data cp110_clk_data = { - .clks = cp110_clks, - .clk_num = CP110_CLK_NUM, -}; - struct cp110_gate_clk { struct clk_hw hw; struct regmap *regmap; @@ -142,6 +135,8 @@ if (!gate) return ERR_PTR(-ENOMEM); + memset(&init, 0, sizeof(init)); + init.name = name; init.ops = &cp110_gate_ops; init.parent_names = &parent_name; @@ -194,7 +189,8 @@ struct regmap *regmap; struct device_node *np = pdev->dev.of_node; const char *ppv2_name, *apll_name, *core_name, *eip_name, *nand_name; - struct clk *clk; + struct clk_onecell_data *cp110_clk_data; + struct clk *clk, **cp110_clks; u32 nand_clk_ctrl; int i, ret; @@ -207,6 +203,20 @@ if (ret) return ret; + cp110_clks = devm_kcalloc(&pdev->dev, sizeof(struct clk *), + CP110_CLK_NUM, GFP_KERNEL); + if (!cp110_clks) + return -ENOMEM; + + cp110_clk_data = devm_kzalloc(&pdev->dev, + sizeof(*cp110_clk_data), + GFP_KERNEL); + if (!cp110_clk_data) + return -ENOMEM; + + cp110_clk_data->clks = cp110_clks; + cp110_clk_data->clk_num = CP110_CLK_NUM; + /* Register the APLL which is the root of the clk tree */ of_property_read_string_index(np, "core-clock-output-names", CP110_CORE_APLL, &apll_name); @@ -334,10 +344,12 @@ cp110_clks[CP110_MAX_CORE_CLOCKS + i] = clk; } - ret = of_clk_add_provider(np, cp110_of_clk_get, &cp110_clk_data); + ret = of_clk_add_provider(np, cp110_of_clk_get, cp110_clk_data); if (ret) goto fail_clk_add; + platform_set_drvdata(pdev, cp110_clks); + return 0; fail_clk_add: @@ -364,6 +376,7 @@ static int cp110_syscon_clk_remove(struct platform_device *pdev) { + struct clk **cp110_clks = platform_get_drvdata(pdev); int i; of_clk_del_provider(pdev->dev.of_node); --- linux-4.8.0.orig/drivers/clk/qcom/Kconfig +++ linux-4.8.0/drivers/clk/qcom/Kconfig @@ -117,6 +117,7 @@ config MSM_GCC_8996 tristate "MSM8996 Global Clock Controller" + select QCOM_GDSC depends on COMMON_CLK_QCOM help Support for the global clock controller on msm8996 devices. @@ -126,6 +127,7 @@ config MSM_MMCC_8996 tristate "MSM8996 Multimedia Clock Controller" select MSM_GCC_8996 + select QCOM_GDSC depends on COMMON_CLK_QCOM help Support for the multimedia clock controller on msm8996 devices. --- linux-4.8.0.orig/drivers/clk/qcom/gcc-msm8996.c +++ linux-4.8.0/drivers/clk/qcom/gcc-msm8996.c @@ -2592,9 +2592,9 @@ }; static struct clk_branch gcc_pcie_2_pipe_clk = { - .halt_reg = 0x6e108, + .halt_reg = 0x6e018, .clkr = { - .enable_reg = 0x6e108, + .enable_reg = 0x6e018, .enable_mask = BIT(0), .hw.init = &(struct clk_init_data){ .name = "gcc_pcie_2_pipe_clk", --- linux-4.8.0.orig/drivers/clk/samsung/clk-exynos-audss.c +++ linux-4.8.0/drivers/clk/samsung/clk-exynos-audss.c @@ -82,6 +82,7 @@ .data = (void *)TYPE_EXYNOS5420, }, {}, }; +MODULE_DEVICE_TABLE(of, exynos_audss_clk_of_match); static void exynos_audss_clk_teardown(void) { --- linux-4.8.0.orig/drivers/clk/sunxi/clk-sunxi.c +++ linux-4.8.0/drivers/clk/sunxi/clk-sunxi.c @@ -373,7 +373,7 @@ else calcp = 3; - calcm = (req->parent_rate >> calcp) - 1; + calcm = (div >> calcp) - 1; req->rate = (req->parent_rate >> calcp) / (calcm + 1); req->m = calcm; --- linux-4.8.0.orig/drivers/clk/ti/clk-3xxx.c +++ linux-4.8.0/drivers/clk/ti/clk-3xxx.c @@ -22,13 +22,6 @@ #include "clock.h" -/* - * DPLL5_FREQ_FOR_USBHOST: USBHOST and USBTLL are the only clocks - * that are sourced by DPLL5, and both of these require this clock - * to be at 120 MHz for proper operation. - */ -#define DPLL5_FREQ_FOR_USBHOST 120000000 - #define OMAP3430ES2_ST_DSS_IDLE_SHIFT 1 #define OMAP3430ES2_ST_HSOTGUSB_IDLE_SHIFT 5 #define OMAP3430ES2_ST_SSI_IDLE_SHIFT 8 @@ -546,14 +539,21 @@ struct clk *dpll5_clk; struct clk *dpll5_m2_clk; + /* + * Errata sprz319f advisory 2.1 documents a USB host clock drift issue + * that can be worked around using specially crafted dpll5 settings + * with a dpll5_m2 divider set to 8. Set the dpll5 rate to 8x the USB + * host clock rate, its .set_rate handler() will detect that frequency + * and use the errata settings. + */ dpll5_clk = clk_get(NULL, "dpll5_ck"); - clk_set_rate(dpll5_clk, DPLL5_FREQ_FOR_USBHOST); + clk_set_rate(dpll5_clk, OMAP3_DPLL5_FREQ_FOR_USBHOST * 8); clk_prepare_enable(dpll5_clk); - /* Program dpll5_m2_clk divider for no division */ + /* Program dpll5_m2_clk divider */ dpll5_m2_clk = clk_get(NULL, "dpll5_m2_ck"); clk_prepare_enable(dpll5_m2_clk); - clk_set_rate(dpll5_m2_clk, DPLL5_FREQ_FOR_USBHOST); + clk_set_rate(dpll5_m2_clk, OMAP3_DPLL5_FREQ_FOR_USBHOST); clk_disable_unprepare(dpll5_m2_clk); clk_disable_unprepare(dpll5_clk); --- linux-4.8.0.orig/drivers/clk/ti/clock.h +++ linux-4.8.0/drivers/clk/ti/clock.h @@ -257,11 +257,20 @@ unsigned long omap3_clkoutx2_recalc(struct clk_hw *hw, unsigned long parent_rate); +/* + * OMAP3_DPLL5_FREQ_FOR_USBHOST: USBHOST and USBTLL are the only clocks + * that are sourced by DPLL5, and both of these require this clock + * to be at 120 MHz for proper operation. + */ +#define OMAP3_DPLL5_FREQ_FOR_USBHOST 120000000 + unsigned long omap3_dpll_recalc(struct clk_hw *hw, unsigned long parent_rate); int omap3_dpll4_set_rate(struct clk_hw *clk, unsigned long rate, unsigned long parent_rate); int omap3_dpll4_set_rate_and_parent(struct clk_hw *hw, unsigned long rate, unsigned long parent_rate, u8 index); +int omap3_dpll5_set_rate(struct clk_hw *hw, unsigned long rate, + unsigned long parent_rate); void omap3_clk_lock_dpll5(void); unsigned long omap4_dpll_regm4xen_recalc(struct clk_hw *hw, --- linux-4.8.0.orig/drivers/clk/ti/dpll.c +++ linux-4.8.0/drivers/clk/ti/dpll.c @@ -114,6 +114,18 @@ .round_rate = &omap2_dpll_round_rate, }; +static const struct clk_ops omap3_dpll5_ck_ops = { + .enable = &omap3_noncore_dpll_enable, + .disable = &omap3_noncore_dpll_disable, + .get_parent = &omap2_init_dpll_parent, + .recalc_rate = &omap3_dpll_recalc, + .set_rate = &omap3_dpll5_set_rate, + .set_parent = &omap3_noncore_dpll_set_parent, + .set_rate_and_parent = &omap3_noncore_dpll_set_rate_and_parent, + .determine_rate = &omap3_noncore_dpll_determine_rate, + .round_rate = &omap2_dpll_round_rate, +}; + static const struct clk_ops omap3_dpll_per_ck_ops = { .enable = &omap3_noncore_dpll_enable, .disable = &omap3_noncore_dpll_disable, @@ -474,7 +486,12 @@ .modes = (1 << DPLL_LOW_POWER_BYPASS) | (1 << DPLL_LOCKED), }; - of_ti_dpll_setup(node, &omap3_dpll_ck_ops, &dd); + if ((of_machine_is_compatible("ti,omap3630") || + of_machine_is_compatible("ti,omap36xx")) && + !strcmp(node->name, "dpll5_ck")) + of_ti_dpll_setup(node, &omap3_dpll5_ck_ops, &dd); + else + of_ti_dpll_setup(node, &omap3_dpll_ck_ops, &dd); } CLK_OF_DECLARE(ti_omap3_dpll_clock, "ti,omap3-dpll-clock", of_ti_omap3_dpll_setup); --- linux-4.8.0.orig/drivers/clk/ti/dpll3xxx.c +++ linux-4.8.0/drivers/clk/ti/dpll3xxx.c @@ -838,3 +838,70 @@ return omap3_noncore_dpll_set_rate_and_parent(hw, rate, parent_rate, index); } + +/* Apply DM3730 errata sprz319 advisory 2.1. */ +static bool omap3_dpll5_apply_errata(struct clk_hw *hw, + unsigned long parent_rate) +{ + struct omap3_dpll5_settings { + unsigned int rate, m, n; + }; + + static const struct omap3_dpll5_settings precomputed[] = { + /* + * From DM3730 errata advisory 2.1, table 35 and 36. + * The N value is increased by 1 compared to the tables as the + * errata lists register values while last_rounded_field is the + * real divider value. + */ + { 12000000, 80, 0 + 1 }, + { 13000000, 443, 5 + 1 }, + { 19200000, 50, 0 + 1 }, + { 26000000, 443, 11 + 1 }, + { 38400000, 25, 0 + 1 } + }; + + const struct omap3_dpll5_settings *d; + struct clk_hw_omap *clk = to_clk_hw_omap(hw); + struct dpll_data *dd; + unsigned int i; + + for (i = 0; i < ARRAY_SIZE(precomputed); ++i) { + if (parent_rate == precomputed[i].rate) + break; + } + + if (i == ARRAY_SIZE(precomputed)) + return false; + + d = &precomputed[i]; + + /* Update the M, N and rounded rate values and program the DPLL. */ + dd = clk->dpll_data; + dd->last_rounded_m = d->m; + dd->last_rounded_n = d->n; + dd->last_rounded_rate = div_u64((u64)parent_rate * d->m, d->n); + omap3_noncore_dpll_program(clk, 0); + + return true; +} + +/** + * omap3_dpll5_set_rate - set rate for omap3 dpll5 + * @hw: clock to change + * @rate: target rate for clock + * @parent_rate: rate of the parent clock + * + * Set rate for the DPLL5 clock. Apply the sprz319 advisory 2.1 on OMAP36xx if + * the DPLL is used for USB host (detected through the requested rate). + */ +int omap3_dpll5_set_rate(struct clk_hw *hw, unsigned long rate, + unsigned long parent_rate) +{ + if (rate == OMAP3_DPLL5_FREQ_FOR_USBHOST * 8) { + if (omap3_dpll5_apply_errata(hw, parent_rate)) + return 0; + } + + return omap3_noncore_dpll_set_rate(hw, rate, parent_rate); +} --- linux-4.8.0.orig/drivers/clocksource/timer-sun5i.c +++ linux-4.8.0/drivers/clocksource/timer-sun5i.c @@ -152,6 +152,13 @@ return IRQ_HANDLED; } +static cycle_t sun5i_clksrc_read(struct clocksource *clksrc) +{ + struct sun5i_timer_clksrc *cs = to_sun5i_timer_clksrc(clksrc); + + return ~readl(cs->timer.base + TIMER_CNTVAL_LO_REG(1)); +} + static int sun5i_rate_cb_clksrc(struct notifier_block *nb, unsigned long event, void *data) { @@ -210,8 +217,13 @@ writel(TIMER_CTL_ENABLE | TIMER_CTL_RELOAD, base + TIMER_CTL_REG(1)); - ret = clocksource_mmio_init(base + TIMER_CNTVAL_LO_REG(1), node->name, - rate, 340, 32, clocksource_mmio_readl_down); + cs->clksrc.name = node->name; + cs->clksrc.rating = 340; + cs->clksrc.read = sun5i_clksrc_read; + cs->clksrc.mask = CLOCKSOURCE_MASK(32); + cs->clksrc.flags = CLOCK_SOURCE_IS_CONTINUOUS; + + ret = clocksource_register_hz(&cs->clksrc, rate); if (ret) { pr_err("Couldn't register clock source.\n"); goto err_remove_notifier; --- linux-4.8.0.orig/drivers/cpufreq/cpufreq-dt-platdev.c +++ linux-4.8.0/drivers/cpufreq/cpufreq-dt-platdev.c @@ -68,6 +68,8 @@ { .compatible = "sigma,tango4" }, + { .compatible = "ti,am33xx", }, + { .compatible = "ti,dra7", }, { .compatible = "ti,omap2", }, { .compatible = "ti,omap3", }, { .compatible = "ti,omap4", }, --- linux-4.8.0.orig/drivers/cpufreq/cpufreq-dt.c +++ linux-4.8.0/drivers/cpufreq/cpufreq-dt.c @@ -26,6 +26,7 @@ #include struct private_data { + struct opp_table *opp_table; struct device *cpu_dev; struct thermal_cooling_device *cdev; const char *reg_name; @@ -141,6 +142,7 @@ static int cpufreq_init(struct cpufreq_policy *policy) { struct cpufreq_frequency_table *freq_table; + struct opp_table *opp_table = NULL; struct private_data *priv; struct device *cpu_dev; struct clk *cpu_clk; @@ -184,8 +186,9 @@ */ name = find_supply_name(cpu_dev); if (name) { - ret = dev_pm_opp_set_regulator(cpu_dev, name); - if (ret) { + opp_table = dev_pm_opp_set_regulator(cpu_dev, name); + if (IS_ERR(opp_table)) { + ret = PTR_ERR(opp_table); dev_err(cpu_dev, "Failed to set regulator for cpu%d: %d\n", policy->cpu, ret); goto out_put_clk; @@ -235,6 +238,7 @@ } priv->reg_name = name; + priv->opp_table = opp_table; ret = dev_pm_opp_init_cpufreq_table(cpu_dev, &freq_table); if (ret) { @@ -283,7 +287,7 @@ out_free_opp: dev_pm_opp_of_cpumask_remove_table(policy->cpus); if (name) - dev_pm_opp_put_regulator(cpu_dev); + dev_pm_opp_put_regulator(opp_table); out_put_clk: clk_put(cpu_clk); @@ -298,7 +302,7 @@ dev_pm_opp_free_cpufreq_table(priv->cpu_dev, &policy->freq_table); dev_pm_opp_of_cpumask_remove_table(policy->related_cpus); if (priv->reg_name) - dev_pm_opp_put_regulator(priv->cpu_dev); + dev_pm_opp_put_regulator(priv->opp_table); clk_put(policy->clk); kfree(priv); --- linux-4.8.0.orig/drivers/cpufreq/cpufreq.c +++ linux-4.8.0/drivers/cpufreq/cpufreq.c @@ -2456,6 +2456,20 @@ * REGISTER / UNREGISTER CPUFREQ DRIVER * *********************************************************************/ +static char cpufreq_driver_name[CPUFREQ_NAME_LEN]; + +static int __init cpufreq_driver_setup(char *str) +{ + strlcpy(cpufreq_driver_name, str, CPUFREQ_NAME_LEN); + return 1; +} + +/* + * Set this name to only allow one specific cpu freq driver, e.g., + * cpufreq_driver=powernow-k8 + */ +__setup("cpufreq_driver=", cpufreq_driver_setup); + /** * cpufreq_register_driver - register a CPU Frequency driver * @driver_data: A struct cpufreq_driver containing the values# @@ -2482,7 +2496,13 @@ (!!driver_data->get_intermediate != !!driver_data->target_intermediate)) return -EINVAL; - pr_debug("trying to register driver %s\n", driver_data->name); + pr_debug("trying to register driver %s, cpufreq_driver=%s\n", + driver_data->name, cpufreq_driver_name); + + if (cpufreq_driver_name[0]) + if (!driver_data->name || + strcmp(cpufreq_driver_name, driver_data->name)) + return -EINVAL; /* Protect against concurrent CPU online/offline. */ get_online_cpus(); --- linux-4.8.0.orig/drivers/cpufreq/cpufreq_conservative.c +++ linux-4.8.0/drivers/cpufreq/cpufreq_conservative.c @@ -17,6 +17,7 @@ struct cs_policy_dbs_info { struct policy_dbs_info policy_dbs; unsigned int down_skip; + unsigned int requested_freq; }; static inline struct cs_policy_dbs_info *to_dbs_info(struct policy_dbs_info *policy_dbs) @@ -61,6 +62,7 @@ { struct policy_dbs_info *policy_dbs = policy->governor_data; struct cs_policy_dbs_info *dbs_info = to_dbs_info(policy_dbs); + unsigned int requested_freq = dbs_info->requested_freq; struct dbs_data *dbs_data = policy_dbs->dbs_data; struct cs_dbs_tuners *cs_tuners = dbs_data->tuners; unsigned int load = dbs_update(policy); @@ -72,10 +74,16 @@ if (cs_tuners->freq_step == 0) goto out; + /* + * If requested_freq is out of range, it is likely that the limits + * changed in the meantime, so fall back to current frequency in that + * case. + */ + if (requested_freq > policy->max || requested_freq < policy->min) + requested_freq = policy->cur; + /* Check for frequency increase */ if (load > dbs_data->up_threshold) { - unsigned int requested_freq = policy->cur; - dbs_info->down_skip = 0; /* if we are already at full speed then break out early */ @@ -83,8 +91,11 @@ goto out; requested_freq += get_freq_target(cs_tuners, policy); + if (requested_freq > policy->max) + requested_freq = policy->max; __cpufreq_driver_target(policy, requested_freq, CPUFREQ_RELATION_H); + dbs_info->requested_freq = requested_freq; goto out; } @@ -95,7 +106,7 @@ /* Check for frequency decrease */ if (load < cs_tuners->down_threshold) { - unsigned int freq_target, requested_freq = policy->cur; + unsigned int freq_target; /* * if we cannot reduce the frequency anymore, break out early */ @@ -109,6 +120,7 @@ requested_freq = policy->min; __cpufreq_driver_target(policy, requested_freq, CPUFREQ_RELATION_L); + dbs_info->requested_freq = requested_freq; } out: @@ -287,6 +299,7 @@ struct cs_policy_dbs_info *dbs_info = to_dbs_info(policy->governor_data); dbs_info->down_skip = 0; + dbs_info->requested_freq = policy->cur; } static struct dbs_governor cs_governor = { --- linux-4.8.0.orig/drivers/cpufreq/intel_pstate.c +++ linux-4.8.0/drivers/cpufreq/intel_pstate.c @@ -556,12 +556,12 @@ int min, hw_min, max, hw_max, cpu, range, adj_range; u64 value, cap; - rdmsrl(MSR_HWP_CAPABILITIES, cap); - hw_min = HWP_LOWEST_PERF(cap); - hw_max = HWP_HIGHEST_PERF(cap); - range = hw_max - hw_min; - for_each_cpu(cpu, cpumask) { + rdmsrl_on_cpu(cpu, MSR_HWP_CAPABILITIES, &cap); + hw_min = HWP_LOWEST_PERF(cap); + hw_max = HWP_HIGHEST_PERF(cap); + range = hw_max - hw_min; + rdmsrl_on_cpu(cpu, MSR_HWP_REQUEST, &value); adj_range = limits->min_perf_pct * range / 100; min = hw_min + adj_range; @@ -1133,10 +1133,8 @@ *min = clamp_t(int, min_perf, cpu->pstate.min_pstate, max_perf); } -static void intel_pstate_set_min_pstate(struct cpudata *cpu) +static void intel_pstate_set_pstate(struct cpudata *cpu, int pstate) { - int pstate = cpu->pstate.min_pstate; - trace_cpu_frequency(pstate * cpu->pstate.scaling, cpu->cpu); cpu->pstate.current_pstate = pstate; /* @@ -1148,6 +1146,20 @@ pstate_funcs.get_val(cpu, pstate)); } +static void intel_pstate_set_min_pstate(struct cpudata *cpu) +{ + intel_pstate_set_pstate(cpu, cpu->pstate.min_pstate); +} + +static void intel_pstate_max_within_limits(struct cpudata *cpu) +{ + int min_pstate, max_pstate; + + update_turbo_state(); + intel_pstate_get_min_max(cpu, &min_pstate, &max_pstate); + intel_pstate_set_pstate(cpu, max_pstate); +} + static void intel_pstate_get_cpu_pstates(struct cpudata *cpu) { cpu->pstate.min_pstate = pstate_funcs.get_min(); @@ -1465,7 +1477,7 @@ pr_debug("set_policy cpuinfo.max %u policy->max %u\n", policy->cpuinfo.max_freq, policy->max); - cpu = all_cpu_data[0]; + cpu = all_cpu_data[policy->cpu]; if (cpu->pstate.max_pstate_physical > cpu->pstate.max_pstate && policy->max < policy->cpuinfo.max_freq && policy->max > cpu->pstate.max_pstate * cpu->pstate.scaling) { @@ -1509,6 +1521,15 @@ limits->max_perf = round_up(limits->max_perf, FRAC_BITS); out: + if (policy->policy == CPUFREQ_POLICY_PERFORMANCE) { + /* + * NOHZ_FULL CPUs need this as the governor callback may not + * be invoked on them. + */ + intel_pstate_clear_update_util_hook(policy->cpu); + intel_pstate_max_within_limits(cpu); + } + intel_pstate_set_update_util_hook(policy->cpu); intel_pstate_hwp_set_policy(policy); --- linux-4.8.0.orig/drivers/cpuidle/cpuidle-arm.c +++ linux-4.8.0/drivers/cpuidle/cpuidle-arm.c @@ -121,6 +121,7 @@ dev = kzalloc(sizeof(*dev), GFP_KERNEL); if (!dev) { pr_err("Failed to allocate cpuidle device\n"); + ret = -ENOMEM; goto out_fail; } dev->cpu = cpu; --- linux-4.8.0.orig/drivers/cpuidle/cpuidle-powernv.c +++ linux-4.8.0/drivers/cpuidle/cpuidle-powernv.c @@ -19,7 +19,12 @@ #include #include #include +#include +/* + * Expose only those Hardware idle states via the cpuidle framework + * that have latency value below POWERNV_THRESHOLD_LATENCY_NS. + */ #define POWERNV_THRESHOLD_LATENCY_NS 200000 struct cpuidle_driver powernv_idle_driver = { @@ -30,7 +35,12 @@ static int max_idle_state; static struct cpuidle_state *cpuidle_state_table; -static u64 stop_psscr_table[CPUIDLE_STATE_MAX]; +struct stop_psscr_table { + u64 val; + u64 mask; +}; + +static struct stop_psscr_table stop_psscr_table[CPUIDLE_STATE_MAX]; static u64 snooze_timeout; static bool snooze_timeout_en; @@ -102,7 +112,8 @@ int index) { ppc64_runlatch_off(); - power9_idle_stop(stop_psscr_table[index]); + power9_idle_stop(stop_psscr_table[index].val, + stop_psscr_table[index].mask); ppc64_runlatch_on(); return index; } @@ -174,9 +185,50 @@ drv->state_count += 1; } + /* + * On PowerNV platform cpu_present may be less that cpu_possible + * in cases where firmware detects the cpu, but it is not available + * for OS. Such CPUs are not hotplugable at runtime on PowerNV + * platform and hence sysfs files are not created for those. + * Generic topology_init() would skip creating sysfs directories + * for cpus that are not present and not hotplugable later at + * runtime. + * + * drv->cpumask defaults to cpu_possible_mask in __cpuidle_driver_init(). + * This breaks cpuidle on powernv where sysfs files are not created for + * cpus in cpu_possible_mask that cannot be hot-added. + * + * Hence at runtime sysfs nodes are present for cpus only in + * cpu_present_mask. Trying cpuidle_register_device() on cpu without + * sysfs node is incorrect. + * + * Hence pass correct cpu mask to generic cpuidle driver. + */ + + drv->cpumask = (struct cpumask *)cpu_present_mask; + return 0; } +static inline void add_powernv_state(int index, const char *name, + unsigned int flags, + int (*idle_fn)(struct cpuidle_device *, + struct cpuidle_driver *, + int), + unsigned int target_residency, + unsigned int exit_latency, + u64 psscr_val, u64 psscr_mask) +{ + strlcpy(powernv_states[index].name, name, CPUIDLE_NAME_LEN); + strlcpy(powernv_states[index].desc, name, CPUIDLE_NAME_LEN); + powernv_states[index].flags = flags; + powernv_states[index].target_residency = target_residency; + powernv_states[index].exit_latency = exit_latency; + powernv_states[index].enter = idle_fn; + stop_psscr_table[index].val = psscr_val; + stop_psscr_table[index].mask = psscr_mask; +} + static int powernv_add_idle_states(void) { struct device_node *power_mgt; @@ -186,7 +238,9 @@ u32 residency_ns[CPUIDLE_STATE_MAX]; u32 flags[CPUIDLE_STATE_MAX]; u64 psscr_val[CPUIDLE_STATE_MAX]; + u64 psscr_mask[CPUIDLE_STATE_MAX]; const char *names[CPUIDLE_STATE_MAX]; + u32 has_stop_states = 0; int i, rc; /* Currently we have snooze statically defined */ @@ -233,19 +287,30 @@ /* * If the idle states use stop instruction, probe for psscr values - * which are necessary to specify required stop level. + * and psscr mask which are necessary to specify required stop level. */ - if (flags[0] & (OPAL_PM_STOP_INST_FAST | OPAL_PM_STOP_INST_DEEP)) + has_stop_states = (flags[0] & + (OPAL_PM_STOP_INST_FAST | OPAL_PM_STOP_INST_DEEP)); + if (has_stop_states) { if (of_property_read_u64_array(power_mgt, "ibm,cpu-idle-state-psscr", psscr_val, dt_idle_states)) { - pr_warn("cpuidle-powernv: missing ibm,cpu-idle-states-psscr in DT\n"); + pr_warn("cpuidle-powernv: missing ibm,cpu-idle-state-psscr in DT\n"); goto out; } + if (of_property_read_u64_array(power_mgt, + "ibm,cpu-idle-state-psscr-mask", + psscr_mask, dt_idle_states)) { + pr_warn("cpuidle-powernv:Missing ibm,cpu-idle-state-psscr-mask in DT\n"); + goto out; + } + } + rc = of_property_read_u32_array(power_mgt, "ibm,cpu-idle-state-residency-ns", residency_ns, dt_idle_states); for (i = 0; i < dt_idle_states; i++) { + unsigned int exit_latency, target_residency; /* * If an idle state has exit latency beyond * POWERNV_THRESHOLD_LATENCY_NS then don't use it @@ -253,28 +318,43 @@ */ if (latency_ns[i] > POWERNV_THRESHOLD_LATENCY_NS) continue; + /* + * Firmware passes residency and latency values in ns. + * cpuidle expects it in us. + */ + exit_latency = latency_ns[i] / 1000; + if (!rc) + target_residency = residency_ns[i] / 1000; + else + target_residency = 0; + + if (has_stop_states) { + int err = validate_psscr_val_mask(&psscr_val[i], + &psscr_mask[i], + flags[i]); + if (err) { + report_invalid_psscr_val(psscr_val[i], err); + continue; + } + } /* - * Cpuidle accepts exit_latency and target_residency in us. - * Use default target_residency values if f/w does not expose it. + * For nap and fastsleep, use default target_residency + * values if f/w does not expose it. */ if (flags[i] & OPAL_PM_NAP_ENABLED) { + if (!rc) + target_residency = 100; /* Add NAP state */ - strcpy(powernv_states[nr_idle_states].name, "Nap"); - strcpy(powernv_states[nr_idle_states].desc, "Nap"); - powernv_states[nr_idle_states].flags = 0; - powernv_states[nr_idle_states].target_residency = 100; - powernv_states[nr_idle_states].enter = nap_loop; + add_powernv_state(nr_idle_states, "Nap", + CPUIDLE_FLAG_NONE, nap_loop, + target_residency, exit_latency, 0, 0); } else if ((flags[i] & OPAL_PM_STOP_INST_FAST) && !(flags[i] & OPAL_PM_TIMEBASE_STOP)) { - strncpy(powernv_states[nr_idle_states].name, - names[i], CPUIDLE_NAME_LEN); - strncpy(powernv_states[nr_idle_states].desc, - names[i], CPUIDLE_NAME_LEN); - powernv_states[nr_idle_states].flags = 0; - - powernv_states[nr_idle_states].enter = stop_loop; - stop_psscr_table[nr_idle_states] = psscr_val[i]; + add_powernv_state(nr_idle_states, names[i], + CPUIDLE_FLAG_NONE, stop_loop, + target_residency, exit_latency, + psscr_val[i], psscr_mask[i]); } /* @@ -284,32 +364,21 @@ #ifdef CONFIG_TICK_ONESHOT if (flags[i] & OPAL_PM_SLEEP_ENABLED || flags[i] & OPAL_PM_SLEEP_ENABLED_ER1) { + if (!rc) + target_residency = 300000; /* Add FASTSLEEP state */ - strcpy(powernv_states[nr_idle_states].name, "FastSleep"); - strcpy(powernv_states[nr_idle_states].desc, "FastSleep"); - powernv_states[nr_idle_states].flags = CPUIDLE_FLAG_TIMER_STOP; - powernv_states[nr_idle_states].target_residency = 300000; - powernv_states[nr_idle_states].enter = fastsleep_loop; + add_powernv_state(nr_idle_states, "FastSleep", + CPUIDLE_FLAG_TIMER_STOP, + fastsleep_loop, + target_residency, exit_latency, 0, 0); } else if ((flags[i] & OPAL_PM_STOP_INST_DEEP) && (flags[i] & OPAL_PM_TIMEBASE_STOP)) { - strncpy(powernv_states[nr_idle_states].name, - names[i], CPUIDLE_NAME_LEN); - strncpy(powernv_states[nr_idle_states].desc, - names[i], CPUIDLE_NAME_LEN); - - powernv_states[nr_idle_states].flags = CPUIDLE_FLAG_TIMER_STOP; - powernv_states[nr_idle_states].enter = stop_loop; - stop_psscr_table[nr_idle_states] = psscr_val[i]; + add_powernv_state(nr_idle_states, names[i], + CPUIDLE_FLAG_TIMER_STOP, stop_loop, + target_residency, exit_latency, + psscr_val[i], psscr_mask[i]); } #endif - powernv_states[nr_idle_states].exit_latency = - ((unsigned int)latency_ns[i]) / 1000; - - if (!rc) { - powernv_states[nr_idle_states].target_residency = - ((unsigned int)residency_ns[i]) / 1000; - } - nr_idle_states++; } out: --- linux-4.8.0.orig/drivers/crypto/caam/caamalg.c +++ linux-4.8.0/drivers/crypto/caam/caamalg.c @@ -702,7 +702,9 @@ /* Will read cryptlen */ append_math_add(desc, VARSEQINLEN, SEQINLEN, REG0, CAAM_CMD_SZ); - aead_append_src_dst(desc, FIFOLD_TYPE_MSG1OUT2); + append_seq_fifo_load(desc, 0, FIFOLD_CLASS_BOTH | KEY_VLF | + FIFOLD_TYPE_MSG1OUT2 | FIFOLD_TYPE_LASTBOTH); + append_seq_fifo_store(desc, 0, FIFOST_TYPE_MESSAGE_DATA | KEY_VLF); /* Write ICV */ append_seq_store(desc, ctx->authsize, LDST_CLASS_2_CCB | @@ -4542,6 +4544,15 @@ if (!aes_inst && (alg_sel == OP_ALG_ALGSEL_AES)) continue; + /* + * Check support for AES modes not available + * on LP devices. + */ + if ((cha_vid & CHA_ID_LS_AES_MASK) == CHA_ID_LS_AES_LP) + if ((alg->class1_alg_type & OP_ALG_AAI_MASK) == + OP_ALG_AAI_XTS) + continue; + t_alg = caam_alg_alloc(alg); if (IS_ERR(t_alg)) { err = PTR_ERR(t_alg); --- linux-4.8.0.orig/drivers/crypto/caam/ctrl.c +++ linux-4.8.0/drivers/crypto/caam/ctrl.c @@ -557,8 +557,9 @@ * Enable DECO watchdogs and, if this is a PHYS_ADDR_T_64BIT kernel, * long pointers in master configuration register */ - clrsetbits_32(&ctrl->mcr, MCFGR_AWCACHE_MASK, MCFGR_AWCACHE_CACH | - MCFGR_AWCACHE_BUFF | MCFGR_WDENABLE | MCFGR_LARGE_BURST | + clrsetbits_32(&ctrl->mcr, MCFGR_AWCACHE_MASK | MCFGR_LONG_PTR, + MCFGR_AWCACHE_CACH | MCFGR_AWCACHE_BUFF | + MCFGR_WDENABLE | MCFGR_LARGE_BURST | (sizeof(dma_addr_t) == sizeof(u64) ? MCFGR_LONG_PTR : 0)); /* --- linux-4.8.0.orig/drivers/crypto/ccp/ccp-dmaengine.c +++ linux-4.8.0/drivers/crypto/ccp/ccp-dmaengine.c @@ -650,7 +650,7 @@ dma_desc_cache_name = devm_kasprintf(ccp->dev, GFP_KERNEL, "%s-dmaengine-desc-cache", ccp->name); - if (!dma_cmd_cache_name) + if (!dma_desc_cache_name) return -ENOMEM; ccp->dma_desc_cache = kmem_cache_create(dma_desc_cache_name, sizeof(struct ccp_dma_desc), --- linux-4.8.0.orig/drivers/crypto/marvell/cesa.c +++ linux-4.8.0/drivers/crypto/marvell/cesa.c @@ -166,6 +166,7 @@ if (!req) break; + ctx = crypto_tfm_ctx(req->tfm); mv_cesa_complete_req(ctx, req, 0); } } --- linux-4.8.0.orig/drivers/crypto/marvell/hash.c +++ linux-4.8.0/drivers/crypto/marvell/hash.c @@ -168,12 +168,11 @@ mv_cesa_adjust_op(engine, &creq->op_tmpl); memcpy_toio(engine->sram, &creq->op_tmpl, sizeof(creq->op_tmpl)); - digsize = crypto_ahash_digestsize(crypto_ahash_reqtfm(req)); - for (i = 0; i < digsize / 4; i++) - writel_relaxed(creq->state[i], engine->regs + CESA_IVDIG(i)); - - mv_cesa_adjust_op(engine, &creq->op_tmpl); - memcpy_toio(engine->sram, &creq->op_tmpl, sizeof(creq->op_tmpl)); + if (!sreq->offset) { + digsize = crypto_ahash_digestsize(crypto_ahash_reqtfm(req)); + for (i = 0; i < digsize / 4; i++) + writel_relaxed(creq->state[i], engine->regs + CESA_IVDIG(i)); + } if (creq->cache_ptr) memcpy_toio(engine->sram + CESA_SA_DATA_SRAM_OFFSET, @@ -805,13 +804,14 @@ struct mv_cesa_op_ctx tmpl = { }; mv_cesa_set_op_cfg(&tmpl, CESA_SA_DESC_CFG_MACM_MD5); + + mv_cesa_ahash_init(req, &tmpl, true); + creq->state[0] = MD5_H0; creq->state[1] = MD5_H1; creq->state[2] = MD5_H2; creq->state[3] = MD5_H3; - mv_cesa_ahash_init(req, &tmpl, true); - return 0; } @@ -873,14 +873,15 @@ struct mv_cesa_op_ctx tmpl = { }; mv_cesa_set_op_cfg(&tmpl, CESA_SA_DESC_CFG_MACM_SHA1); + + mv_cesa_ahash_init(req, &tmpl, false); + creq->state[0] = SHA1_H0; creq->state[1] = SHA1_H1; creq->state[2] = SHA1_H2; creq->state[3] = SHA1_H3; creq->state[4] = SHA1_H4; - mv_cesa_ahash_init(req, &tmpl, false); - return 0; } @@ -942,6 +943,9 @@ struct mv_cesa_op_ctx tmpl = { }; mv_cesa_set_op_cfg(&tmpl, CESA_SA_DESC_CFG_MACM_SHA256); + + mv_cesa_ahash_init(req, &tmpl, false); + creq->state[0] = SHA256_H0; creq->state[1] = SHA256_H1; creq->state[2] = SHA256_H2; @@ -951,8 +955,6 @@ creq->state[6] = SHA256_H6; creq->state[7] = SHA256_H7; - mv_cesa_ahash_init(req, &tmpl, false); - return 0; } --- linux-4.8.0.orig/drivers/crypto/vmx/Kconfig +++ linux-4.8.0/drivers/crypto/vmx/Kconfig @@ -1,6 +1,7 @@ config CRYPTO_DEV_VMX_ENCRYPT tristate "Encryption acceleration support on P8 CPU" depends on CRYPTO_DEV_VMX + select CRYPTO_GHASH default m help Support for VMX cryptographic acceleration instructions on Power8 CPU. --- linux-4.8.0.orig/drivers/crypto/vmx/ghash.c +++ linux-4.8.0/drivers/crypto/vmx/ghash.c @@ -26,16 +26,13 @@ #include #include #include +#include #include #include #include #define IN_INTERRUPT in_interrupt() -#define GHASH_BLOCK_SIZE (16) -#define GHASH_DIGEST_SIZE (16) -#define GHASH_KEY_LEN (16) - void gcm_init_p8(u128 htable[16], const u64 Xi[2]); void gcm_gmult_p8(u64 Xi[2], const u128 htable[16]); void gcm_ghash_p8(u64 Xi[2], const u128 htable[16], @@ -55,16 +52,11 @@ static int p8_ghash_init_tfm(struct crypto_tfm *tfm) { - const char *alg; + const char *alg = "ghash-generic"; struct crypto_shash *fallback; struct crypto_shash *shash_tfm = __crypto_shash_cast(tfm); struct p8_ghash_ctx *ctx = crypto_tfm_ctx(tfm); - if (!(alg = crypto_tfm_alg_name(tfm))) { - printk(KERN_ERR "Failed to get algorithm name.\n"); - return -ENOENT; - } - fallback = crypto_alloc_shash(alg, 0, CRYPTO_ALG_NEED_FALLBACK); if (IS_ERR(fallback)) { printk(KERN_ERR @@ -78,10 +70,18 @@ crypto_shash_set_flags(fallback, crypto_shash_get_flags((struct crypto_shash *) tfm)); - ctx->fallback = fallback; - shash_tfm->descsize = sizeof(struct p8_ghash_desc_ctx) - + crypto_shash_descsize(fallback); + /* Check if the descsize defined in the algorithm is still enough. */ + if (shash_tfm->descsize < sizeof(struct p8_ghash_desc_ctx) + + crypto_shash_descsize(fallback)) { + printk(KERN_ERR + "Desc size of the fallback implementation (%s) does not match the expected value: %lu vs %u\n", + alg, + shash_tfm->descsize - sizeof(struct p8_ghash_desc_ctx), + crypto_shash_descsize(fallback)); + return -EINVAL; + } + ctx->fallback = fallback; return 0; } @@ -113,7 +113,7 @@ { struct p8_ghash_ctx *ctx = crypto_tfm_ctx(crypto_shash_tfm(tfm)); - if (keylen != GHASH_KEY_LEN) + if (keylen != GHASH_BLOCK_SIZE) return -EINVAL; preempt_disable(); @@ -211,7 +211,8 @@ .update = p8_ghash_update, .final = p8_ghash_final, .setkey = p8_ghash_setkey, - .descsize = sizeof(struct p8_ghash_desc_ctx), + .descsize = sizeof(struct p8_ghash_desc_ctx) + + sizeof(struct ghash_desc_ctx), .base = { .cra_name = "ghash", .cra_driver_name = "p8_ghash", --- linux-4.8.0.orig/drivers/dax/dax.c +++ linux-4.8.0/drivers/dax/dax.c @@ -323,8 +323,8 @@ if (!dax_dev->alive) return -ENXIO; - /* prevent private / writable mappings from being established */ - if ((vma->vm_flags & (VM_NORESERVE|VM_SHARED|VM_WRITE)) == VM_WRITE) { + /* prevent private mappings from being established */ + if ((vma->vm_flags & VM_MAYSHARE) != VM_MAYSHARE) { dev_info(dev, "%s: %s: fail, attempted private mapping\n", current->comm, func); return -EINVAL; --- linux-4.8.0.orig/drivers/dax/pmem.c +++ linux-4.8.0/drivers/dax/pmem.c @@ -44,7 +44,6 @@ dev_dbg(dax_pmem->dev, "%s\n", __func__); percpu_ref_exit(ref); - wait_for_completion(&dax_pmem->cmp); } static void dax_pmem_percpu_kill(void *data) @@ -54,6 +53,7 @@ dev_dbg(dax_pmem->dev, "%s\n", __func__); percpu_ref_kill(ref); + wait_for_completion(&dax_pmem->cmp); } static int dax_pmem_probe(struct device *dev) @@ -77,7 +77,9 @@ nsio = to_nd_namespace_io(&ndns->dev); /* parse the 'pfn' info block via ->rw_bytes */ - devm_nsio_enable(dev, nsio); + rc = devm_nsio_enable(dev, nsio); + if (rc) + return rc; altmap = nvdimm_setup_pfn(nd_pfn, &res, &__altmap); if (IS_ERR(altmap)) return PTR_ERR(altmap); --- linux-4.8.0.orig/drivers/dma/ipu/ipu_irq.c +++ linux-4.8.0/drivers/dma/ipu/ipu_irq.c @@ -286,22 +286,21 @@ raw_spin_unlock(&bank_lock); while ((line = ffs(status))) { struct ipu_irq_map *map; - unsigned int irq = NO_IRQ; + unsigned int irq; line--; status &= ~(1UL << line); raw_spin_lock(&bank_lock); map = src2map(32 * i + line); - if (map) - irq = map->irq; - raw_spin_unlock(&bank_lock); - if (!map) { + raw_spin_unlock(&bank_lock); pr_err("IPU: Interrupt on unmapped source %u bank %d\n", line, i); continue; } + irq = map->irq; + raw_spin_unlock(&bank_lock); generic_handle_irq(irq); } } --- linux-4.8.0.orig/drivers/firewire/net.c +++ linux-4.8.0/drivers/firewire/net.c @@ -73,13 +73,13 @@ #define fwnet_get_hdr_lf(h) (((h)->w0 & 0xc0000000) >> 30) #define fwnet_get_hdr_ether_type(h) (((h)->w0 & 0x0000ffff)) -#define fwnet_get_hdr_dg_size(h) (((h)->w0 & 0x0fff0000) >> 16) +#define fwnet_get_hdr_dg_size(h) ((((h)->w0 & 0x0fff0000) >> 16) + 1) #define fwnet_get_hdr_fg_off(h) (((h)->w0 & 0x00000fff)) #define fwnet_get_hdr_dgl(h) (((h)->w1 & 0xffff0000) >> 16) -#define fwnet_set_hdr_lf(lf) ((lf) << 30) +#define fwnet_set_hdr_lf(lf) ((lf) << 30) #define fwnet_set_hdr_ether_type(et) (et) -#define fwnet_set_hdr_dg_size(dgs) ((dgs) << 16) +#define fwnet_set_hdr_dg_size(dgs) (((dgs) - 1) << 16) #define fwnet_set_hdr_fg_off(fgo) (fgo) #define fwnet_set_hdr_dgl(dgl) ((dgl) << 16) @@ -578,6 +578,9 @@ int retval; u16 ether_type; + if (len <= RFC2374_UNFRAG_HDR_SIZE) + return 0; + hdr.w0 = be32_to_cpu(buf[0]); lf = fwnet_get_hdr_lf(&hdr); if (lf == RFC2374_HDR_UNFRAG) { @@ -602,7 +605,12 @@ return fwnet_finish_incoming_packet(net, skb, source_node_id, is_broadcast, ether_type); } + /* A datagram fragment has been received, now the fun begins. */ + + if (len <= RFC2374_FRAG_HDR_SIZE) + return 0; + hdr.w1 = ntohl(buf[1]); buf += 2; len -= RFC2374_FRAG_HDR_SIZE; @@ -614,7 +622,10 @@ fg_off = fwnet_get_hdr_fg_off(&hdr); } datagram_label = fwnet_get_hdr_dgl(&hdr); - dg_size = fwnet_get_hdr_dg_size(&hdr); /* ??? + 1 */ + dg_size = fwnet_get_hdr_dg_size(&hdr); + + if (fg_off + len > dg_size) + return 0; spin_lock_irqsave(&dev->lock, flags); @@ -722,6 +733,22 @@ fw_send_response(card, r, rcode); } +static int gasp_source_id(__be32 *p) +{ + return be32_to_cpu(p[0]) >> 16; +} + +static u32 gasp_specifier_id(__be32 *p) +{ + return (be32_to_cpu(p[0]) & 0xffff) << 8 | + (be32_to_cpu(p[1]) & 0xff000000) >> 24; +} + +static u32 gasp_version(__be32 *p) +{ + return be32_to_cpu(p[1]) & 0xffffff; +} + static void fwnet_receive_broadcast(struct fw_iso_context *context, u32 cycle, size_t header_length, void *header, void *data) { @@ -731,9 +758,6 @@ __be32 *buf_ptr; int retval; u32 length; - u16 source_node_id; - u32 specifier_id; - u32 ver; unsigned long offset; unsigned long flags; @@ -750,22 +774,17 @@ spin_unlock_irqrestore(&dev->lock, flags); - specifier_id = (be32_to_cpu(buf_ptr[0]) & 0xffff) << 8 - | (be32_to_cpu(buf_ptr[1]) & 0xff000000) >> 24; - ver = be32_to_cpu(buf_ptr[1]) & 0xffffff; - source_node_id = be32_to_cpu(buf_ptr[0]) >> 16; - - if (specifier_id == IANA_SPECIFIER_ID && - (ver == RFC2734_SW_VERSION + if (length > IEEE1394_GASP_HDR_SIZE && + gasp_specifier_id(buf_ptr) == IANA_SPECIFIER_ID && + (gasp_version(buf_ptr) == RFC2734_SW_VERSION #if IS_ENABLED(CONFIG_IPV6) - || ver == RFC3146_SW_VERSION + || gasp_version(buf_ptr) == RFC3146_SW_VERSION #endif - )) { - buf_ptr += 2; - length -= IEEE1394_GASP_HDR_SIZE; - fwnet_incoming_packet(dev, buf_ptr, length, source_node_id, + )) + fwnet_incoming_packet(dev, buf_ptr + 2, + length - IEEE1394_GASP_HDR_SIZE, + gasp_source_id(buf_ptr), context->card->generation, true); - } packet.payload_length = dev->rcv_buffer_size; packet.interrupt = 1; --- linux-4.8.0.orig/drivers/firmware/efi/Kconfig +++ linux-4.8.0/drivers/firmware/efi/Kconfig @@ -112,6 +112,23 @@ Most users should say N. +config EFI_TEST + tristate "EFI Runtime Service Tests Support" + depends on EFI + default n + help + This driver uses the efi. function pointers directly instead + of going through the efivar API, because it is not trying to test the + kernel subsystem, just for testing the UEFI runtime service + interfaces which are provided by the firmware. This driver is used + by the Firmware Test Suite (FWTS) for testing the UEFI runtime + interfaces readiness of the firmware. + Details for FWTS are available from: + + + Say Y here to enable the runtime services support via /dev/efi_test. + If unsure, say N. + endmenu config UEFI_CPER --- linux-4.8.0.orig/drivers/firmware/efi/Makefile +++ linux-4.8.0/drivers/firmware/efi/Makefile @@ -20,6 +20,7 @@ obj-$(CONFIG_EFI_STUB) += libstub/ obj-$(CONFIG_EFI_FAKE_MEMMAP) += fake_mem.o obj-$(CONFIG_EFI_BOOTLOADER_CONTROL) += efibc.o +obj-$(CONFIG_EFI_TEST) += test/ arm-obj-$(CONFIG_EFI) := arm-init.o arm-runtime.o obj-$(CONFIG_ARM) += $(arm-obj-y) --- linux-4.8.0.orig/drivers/firmware/efi/test/Makefile +++ linux-4.8.0/drivers/firmware/efi/test/Makefile @@ -0,0 +1 @@ +obj-$(CONFIG_EFI_TEST) += efi_test.o --- linux-4.8.0.orig/drivers/firmware/efi/test/efi_test.c +++ linux-4.8.0/drivers/firmware/efi/test/efi_test.c @@ -0,0 +1,749 @@ +/* + * EFI Test Driver for Runtime Services + * + * Copyright(C) 2012-2016 Canonical Ltd. + * + * This driver exports EFI runtime services interfaces into userspace, which + * allow to use and test UEFI runtime services provided by firmware. + * + */ + +#include +#include +#include +#include +#include +#include +#include +#include + +#include "efi_test.h" + +MODULE_AUTHOR("Ivan Hu "); +MODULE_DESCRIPTION("EFI Test Driver"); +MODULE_LICENSE("GPL"); + +/* + * Count the bytes in 'str', including the terminating NULL. + * + * Note this function returns the number of *bytes*, not the number of + * ucs2 characters. + */ +static inline size_t user_ucs2_strsize(efi_char16_t __user *str) +{ + efi_char16_t *s = str, c; + size_t len; + + if (!str) + return 0; + + /* Include terminating NULL */ + len = sizeof(efi_char16_t); + + if (get_user(c, s++)) { + /* Can't read userspace memory for size */ + return 0; + } + + while (c != 0) { + if (get_user(c, s++)) { + /* Can't read userspace memory for size */ + return 0; + } + len += sizeof(efi_char16_t); + } + return len; +} + +/* + * Allocate a buffer and copy a ucs2 string from user space into it. + */ +static inline int +copy_ucs2_from_user_len(efi_char16_t **dst, efi_char16_t __user *src, + size_t len) +{ + efi_char16_t *buf; + + if (!src) { + *dst = NULL; + return 0; + } + + if (!access_ok(VERIFY_READ, src, 1)) + return -EFAULT; + + buf = kmalloc(len, GFP_KERNEL); + if (!buf) { + *dst = NULL; + return -ENOMEM; + } + *dst = buf; + + if (copy_from_user(*dst, src, len)) { + kfree(buf); + return -EFAULT; + } + + return 0; +} + +/* + * Count the bytes in 'str', including the terminating NULL. + * + * Just a wrap for user_ucs2_strsize + */ +static inline int +get_ucs2_strsize_from_user(efi_char16_t __user *src, size_t *len) +{ + if (!access_ok(VERIFY_READ, src, 1)) + return -EFAULT; + + *len = user_ucs2_strsize(src); + if (*len == 0) + return -EFAULT; + + return 0; +} + +/* + * Calculate the required buffer allocation size and copy a ucs2 string + * from user space into it. + * + * This function differs from copy_ucs2_from_user_len() because it + * calculates the size of the buffer to allocate by taking the length of + * the string 'src'. + * + * If a non-zero value is returned, the caller MUST NOT access 'dst'. + * + * It is the caller's responsibility to free 'dst'. + */ +static inline int +copy_ucs2_from_user(efi_char16_t **dst, efi_char16_t __user *src) +{ + size_t len; + + if (!access_ok(VERIFY_READ, src, 1)) + return -EFAULT; + + len = user_ucs2_strsize(src); + if (len == 0) + return -EFAULT; + return copy_ucs2_from_user_len(dst, src, len); +} + +/* + * Copy a ucs2 string to a user buffer. + * + * This function is a simple wrapper around copy_to_user() that does + * nothing if 'src' is NULL, which is useful for reducing the amount of + * NULL checking the caller has to do. + * + * 'len' specifies the number of bytes to copy. + */ +static inline int +copy_ucs2_to_user_len(efi_char16_t __user *dst, efi_char16_t *src, size_t len) +{ + if (!src) + return 0; + + if (!access_ok(VERIFY_WRITE, dst, 1)) + return -EFAULT; + + return copy_to_user(dst, src, len); +} + +static long efi_runtime_get_variable(unsigned long arg) +{ + struct efi_getvariable __user *getvariable_user; + struct efi_getvariable getvariable; + unsigned long datasize, prev_datasize, *dz; + efi_guid_t vendor_guid, *vd = NULL; + efi_status_t status; + efi_char16_t *name = NULL; + u32 attr, *at; + void *data = NULL; + int rv = 0; + + getvariable_user = (struct efi_getvariable __user *)arg; + + if (copy_from_user(&getvariable, getvariable_user, + sizeof(getvariable))) + return -EFAULT; + if (getvariable.data_size && + get_user(datasize, getvariable.data_size)) + return -EFAULT; + if (getvariable.vendor_guid) { + if (copy_from_user(&vendor_guid, getvariable.vendor_guid, + sizeof(vendor_guid))) + return -EFAULT; + vd = &vendor_guid; + } + + if (getvariable.variable_name) { + rv = copy_ucs2_from_user(&name, getvariable.variable_name); + if (rv) + return rv; + } + + at = getvariable.attributes ? &attr : NULL; + dz = getvariable.data_size ? &datasize : NULL; + + if (getvariable.data_size && getvariable.data) { + data = kmalloc(datasize, GFP_KERNEL); + if (!data) { + kfree(name); + return -ENOMEM; + } + } + + prev_datasize = datasize; + status = efi.get_variable(name, vd, at, dz, data); + kfree(name); + + if (put_user(status, getvariable.status)) { + rv = -EFAULT; + goto out; + } + + if (status != EFI_SUCCESS) { + if (status == EFI_BUFFER_TOO_SMALL) { + if (dz && put_user(datasize, getvariable.data_size)) { + rv = -EFAULT; + goto out; + } + } + rv = -EINVAL; + goto out; + } + + if (prev_datasize < datasize) { + rv = -EINVAL; + goto out; + } + + if (data) { + if (copy_to_user(getvariable.data, data, datasize)) { + rv = -EFAULT; + goto out; + } + } + + if (at && put_user(attr, getvariable.attributes)) { + rv = -EFAULT; + goto out; + } + + if (dz && put_user(datasize, getvariable.data_size)) + rv = -EFAULT; + +out: + kfree(data); + return rv; + +} + +static long efi_runtime_set_variable(unsigned long arg) +{ + struct efi_setvariable __user *setvariable_user; + struct efi_setvariable setvariable; + efi_guid_t vendor_guid; + efi_status_t status; + efi_char16_t *name = NULL; + void *data; + int rv = 0; + + setvariable_user = (struct efi_setvariable __user *)arg; + + if (copy_from_user(&setvariable, setvariable_user, sizeof(setvariable))) + return -EFAULT; + if (copy_from_user(&vendor_guid, setvariable.vendor_guid, + sizeof(vendor_guid))) + return -EFAULT; + + if (setvariable.variable_name) { + rv = copy_ucs2_from_user(&name, setvariable.variable_name); + if (rv) + return rv; + } + + data = kmalloc(setvariable.data_size, GFP_KERNEL); + if (!data) { + kfree(name); + return -ENOMEM; + } + if (copy_from_user(data, setvariable.data, setvariable.data_size)) { + rv = -EFAULT; + goto out; + } + + status = efi.set_variable(name, &vendor_guid, + setvariable.attributes, + setvariable.data_size, data); + + if (put_user(status, setvariable.status)) { + rv = -EFAULT; + goto out; + } + + rv = status == EFI_SUCCESS ? 0 : -EINVAL; + +out: + kfree(data); + kfree(name); + + return rv; +} + +static long efi_runtime_get_time(unsigned long arg) +{ + struct efi_gettime __user *gettime_user; + struct efi_gettime gettime; + efi_status_t status; + efi_time_cap_t cap; + efi_time_t efi_time; + + gettime_user = (struct efi_gettime __user *)arg; + if (copy_from_user(&gettime, gettime_user, sizeof(gettime))) + return -EFAULT; + + status = efi.get_time(gettime.time ? &efi_time : NULL, + gettime.capabilities ? &cap : NULL); + + if (put_user(status, gettime.status)) + return -EFAULT; + + if (status != EFI_SUCCESS) + return -EINVAL; + + if (gettime.capabilities) { + efi_time_cap_t __user *cap_local; + + cap_local = (efi_time_cap_t *)gettime.capabilities; + if (put_user(cap.resolution, &(cap_local->resolution)) || + put_user(cap.accuracy, &(cap_local->accuracy)) || + put_user(cap.sets_to_zero, &(cap_local->sets_to_zero))) + return -EFAULT; + } + if (gettime.time) { + if (copy_to_user(gettime.time, &efi_time, sizeof(efi_time_t))) + return -EFAULT; + } + + return 0; +} + +static long efi_runtime_set_time(unsigned long arg) +{ + struct efi_settime __user *settime_user; + struct efi_settime settime; + efi_status_t status; + efi_time_t efi_time; + + settime_user = (struct efi_settime __user *)arg; + if (copy_from_user(&settime, settime_user, sizeof(settime))) + return -EFAULT; + if (copy_from_user(&efi_time, settime.time, + sizeof(efi_time_t))) + return -EFAULT; + status = efi.set_time(&efi_time); + + if (put_user(status, settime.status)) + return -EFAULT; + + return status == EFI_SUCCESS ? 0 : -EINVAL; +} + +static long efi_runtime_get_waketime(unsigned long arg) +{ + struct efi_getwakeuptime __user *getwakeuptime_user; + struct efi_getwakeuptime getwakeuptime; + efi_bool_t enabled, pending; + efi_status_t status; + efi_time_t efi_time; + + getwakeuptime_user = (struct efi_getwakeuptime __user *)arg; + if (copy_from_user(&getwakeuptime, getwakeuptime_user, + sizeof(getwakeuptime))) + return -EFAULT; + + status = efi.get_wakeup_time( + getwakeuptime.enabled ? (efi_bool_t *)&enabled : NULL, + getwakeuptime.pending ? (efi_bool_t *)&pending : NULL, + getwakeuptime.time ? &efi_time : NULL); + + if (put_user(status, getwakeuptime.status)) + return -EFAULT; + + if (status != EFI_SUCCESS) + return -EINVAL; + + if (getwakeuptime.enabled && put_user(enabled, + getwakeuptime.enabled)) + return -EFAULT; + + if (getwakeuptime.time) { + if (copy_to_user(getwakeuptime.time, &efi_time, + sizeof(efi_time_t))) + return -EFAULT; + } + + return 0; +} + +static long efi_runtime_set_waketime(unsigned long arg) +{ + struct efi_setwakeuptime __user *setwakeuptime_user; + struct efi_setwakeuptime setwakeuptime; + efi_bool_t enabled; + efi_status_t status; + efi_time_t efi_time; + + setwakeuptime_user = (struct efi_setwakeuptime __user *)arg; + + if (copy_from_user(&setwakeuptime, setwakeuptime_user, + sizeof(setwakeuptime))) + return -EFAULT; + + enabled = setwakeuptime.enabled; + if (setwakeuptime.time) { + if (copy_from_user(&efi_time, setwakeuptime.time, + sizeof(efi_time_t))) + return -EFAULT; + + status = efi.set_wakeup_time(enabled, &efi_time); + } else + status = efi.set_wakeup_time(enabled, NULL); + + if (put_user(status, setwakeuptime.status)) + return -EFAULT; + + return status == EFI_SUCCESS ? 0 : -EINVAL; +} + +static long efi_runtime_get_nextvariablename(unsigned long arg) +{ + struct efi_getnextvariablename __user *getnextvariablename_user; + struct efi_getnextvariablename getnextvariablename; + unsigned long name_size, prev_name_size = 0, *ns = NULL; + efi_status_t status; + efi_guid_t *vd = NULL; + efi_guid_t vendor_guid; + efi_char16_t *name = NULL; + int rv; + + getnextvariablename_user = (struct efi_getnextvariablename __user *)arg; + + if (copy_from_user(&getnextvariablename, getnextvariablename_user, + sizeof(getnextvariablename))) + return -EFAULT; + + if (getnextvariablename.variable_name_size) { + if (get_user(name_size, getnextvariablename.variable_name_size)) + return -EFAULT; + ns = &name_size; + prev_name_size = name_size; + } + + if (getnextvariablename.vendor_guid) { + if (copy_from_user(&vendor_guid, + getnextvariablename.vendor_guid, + sizeof(vendor_guid))) + return -EFAULT; + vd = &vendor_guid; + } + + if (getnextvariablename.variable_name) { + size_t name_string_size = 0; + + rv = get_ucs2_strsize_from_user( + getnextvariablename.variable_name, + &name_string_size); + if (rv) + return rv; + /* + * The name_size may be smaller than the real buffer size where + * variable name located in some use cases. The most typical + * case is passing a 0 to get the required buffer size for the + * 1st time call. So we need to copy the content from user + * space for at least the string size of variable name, or else + * the name passed to UEFI may not be terminated as we expected. + */ + rv = copy_ucs2_from_user_len(&name, + getnextvariablename.variable_name, + prev_name_size > name_string_size ? + prev_name_size : name_string_size); + if (rv) + return rv; + } + + status = efi.get_next_variable(ns, name, vd); + + if (put_user(status, getnextvariablename.status)) { + rv = -EFAULT; + goto out; + } + + if (status != EFI_SUCCESS) { + if (status == EFI_BUFFER_TOO_SMALL) { + if (ns && put_user(*ns, + getnextvariablename.variable_name_size)) { + rv = -EFAULT; + goto out; + } + } + rv = -EINVAL; + goto out; + } + + if (name) { + if (copy_ucs2_to_user_len(getnextvariablename.variable_name, + name, prev_name_size)) { + rv = -EFAULT; + goto out; + } + } + + if (ns) { + if (put_user(*ns, getnextvariablename.variable_name_size)) { + rv = -EFAULT; + goto out; + } + } + + if (vd) { + if (copy_to_user(getnextvariablename.vendor_guid, vd, + sizeof(efi_guid_t))) + rv = -EFAULT; + } + +out: + kfree(name); + return rv; +} + +static long efi_runtime_get_nexthighmonocount(unsigned long arg) +{ + struct efi_getnexthighmonotoniccount __user *getnexthighmonocount_user; + struct efi_getnexthighmonotoniccount getnexthighmonocount; + efi_status_t status; + u32 count; + + getnexthighmonocount_user = (struct + efi_getnexthighmonotoniccount __user *)arg; + + if (copy_from_user(&getnexthighmonocount, + getnexthighmonocount_user, + sizeof(getnexthighmonocount))) + return -EFAULT; + + status = efi.get_next_high_mono_count( + getnexthighmonocount.high_count ? &count : NULL); + + if (put_user(status, getnexthighmonocount.status)) + return -EFAULT; + + if (status != EFI_SUCCESS) + return -EINVAL; + + if (getnexthighmonocount.high_count && + put_user(count, getnexthighmonocount.high_count)) + return -EFAULT; + + return 0; +} + +static long efi_runtime_query_variableinfo(unsigned long arg) +{ + struct efi_queryvariableinfo __user *queryvariableinfo_user; + struct efi_queryvariableinfo queryvariableinfo; + efi_status_t status; + u64 max_storage, remaining, max_size; + + queryvariableinfo_user = (struct efi_queryvariableinfo __user *)arg; + + if (copy_from_user(&queryvariableinfo, queryvariableinfo_user, + sizeof(queryvariableinfo))) + return -EFAULT; + + status = efi.query_variable_info(queryvariableinfo.attributes, + &max_storage, &remaining, &max_size); + + if (put_user(status, queryvariableinfo.status)) + return -EFAULT; + + if (status != EFI_SUCCESS) + return -EINVAL; + + if (put_user(max_storage, + queryvariableinfo.maximum_variable_storage_size)) + return -EFAULT; + + if (put_user(remaining, + queryvariableinfo.remaining_variable_storage_size)) + return -EFAULT; + + if (put_user(max_size, queryvariableinfo.maximum_variable_size)) + return -EFAULT; + + return 0; +} + +static long efi_runtime_query_capsulecaps(unsigned long arg) +{ + struct efi_querycapsulecapabilities __user *qcaps_user; + struct efi_querycapsulecapabilities qcaps; + efi_capsule_header_t *capsules; + efi_status_t status; + u64 max_size; + int i, reset_type; + int rv = 0; + + qcaps_user = (struct efi_querycapsulecapabilities __user *)arg; + + if (copy_from_user(&qcaps, qcaps_user, sizeof(qcaps))) + return -EFAULT; + + capsules = kcalloc(qcaps.capsule_count + 1, + sizeof(efi_capsule_header_t), GFP_KERNEL); + if (!capsules) + return -ENOMEM; + + for (i = 0; i < qcaps.capsule_count; i++) { + efi_capsule_header_t *c; + /* + * We cannot dereference qcaps.capsule_header_array directly to + * obtain the address of the capsule as it resides in the + * user space + */ + if (get_user(c, qcaps.capsule_header_array + i)) { + rv = -EFAULT; + goto out; + } + if (copy_from_user(&capsules[i], c, + sizeof(efi_capsule_header_t))) { + rv = -EFAULT; + goto out; + } + } + + qcaps.capsule_header_array = &capsules; + + status = efi.query_capsule_caps((efi_capsule_header_t **) + qcaps.capsule_header_array, + qcaps.capsule_count, + &max_size, &reset_type); + + if (put_user(status, qcaps.status)) { + rv = -EFAULT; + goto out; + } + + if (status != EFI_SUCCESS) { + rv = -EINVAL; + goto out; + } + + if (put_user(max_size, qcaps.maximum_capsule_size)) { + rv = -EFAULT; + goto out; + } + + if (put_user(reset_type, qcaps.reset_type)) + rv = -EFAULT; + +out: + kfree(capsules); + return rv; +} + +static long efi_test_ioctl(struct file *file, unsigned int cmd, + unsigned long arg) +{ + switch (cmd) { + case EFI_RUNTIME_GET_VARIABLE: + return efi_runtime_get_variable(arg); + + case EFI_RUNTIME_SET_VARIABLE: + return efi_runtime_set_variable(arg); + + case EFI_RUNTIME_GET_TIME: + return efi_runtime_get_time(arg); + + case EFI_RUNTIME_SET_TIME: + return efi_runtime_set_time(arg); + + case EFI_RUNTIME_GET_WAKETIME: + return efi_runtime_get_waketime(arg); + + case EFI_RUNTIME_SET_WAKETIME: + return efi_runtime_set_waketime(arg); + + case EFI_RUNTIME_GET_NEXTVARIABLENAME: + return efi_runtime_get_nextvariablename(arg); + + case EFI_RUNTIME_GET_NEXTHIGHMONOTONICCOUNT: + return efi_runtime_get_nexthighmonocount(arg); + + case EFI_RUNTIME_QUERY_VARIABLEINFO: + return efi_runtime_query_variableinfo(arg); + + case EFI_RUNTIME_QUERY_CAPSULECAPABILITIES: + return efi_runtime_query_capsulecaps(arg); + } + + return -ENOTTY; +} + +static int efi_test_open(struct inode *inode, struct file *file) +{ + /* + * nothing special to do here + * We do accept multiple open files at the same time as we + * synchronize on the per call operation. + */ + return 0; +} + +static int efi_test_close(struct inode *inode, struct file *file) +{ + return 0; +} + +/* + * The various file operations we support. + */ +static const struct file_operations efi_test_fops = { + .owner = THIS_MODULE, + .unlocked_ioctl = efi_test_ioctl, + .open = efi_test_open, + .release = efi_test_close, + .llseek = no_llseek, +}; + +static struct miscdevice efi_test_dev = { + MISC_DYNAMIC_MINOR, + "efi_test", + &efi_test_fops +}; + +static int __init efi_test_init(void) +{ + int ret; + + ret = misc_register(&efi_test_dev); + if (ret) { + pr_err("efi_test: can't misc_register on minor=%d\n", + MISC_DYNAMIC_MINOR); + return ret; + } + + return 0; +} + +static void __exit efi_test_exit(void) +{ + misc_deregister(&efi_test_dev); +} + +module_init(efi_test_init); +module_exit(efi_test_exit); --- linux-4.8.0.orig/drivers/firmware/efi/test/efi_test.h +++ linux-4.8.0/drivers/firmware/efi/test/efi_test.h @@ -0,0 +1,110 @@ +/* + * EFI Test driver Header + * + * Copyright(C) 2012-2016 Canonical Ltd. + * + */ + +#ifndef _DRIVERS_FIRMWARE_EFI_TEST_H_ +#define _DRIVERS_FIRMWARE_EFI_TEST_H_ + +#include + +struct efi_getvariable { + efi_char16_t *variable_name; + efi_guid_t *vendor_guid; + u32 *attributes; + unsigned long *data_size; + void *data; + efi_status_t *status; +} __packed; + +struct efi_setvariable { + efi_char16_t *variable_name; + efi_guid_t *vendor_guid; + u32 attributes; + unsigned long data_size; + void *data; + efi_status_t *status; +} __packed; + +struct efi_getnextvariablename { + unsigned long *variable_name_size; + efi_char16_t *variable_name; + efi_guid_t *vendor_guid; + efi_status_t *status; +} __packed; + +struct efi_queryvariableinfo { + u32 attributes; + u64 *maximum_variable_storage_size; + u64 *remaining_variable_storage_size; + u64 *maximum_variable_size; + efi_status_t *status; +} __packed; + +struct efi_gettime { + efi_time_t *time; + efi_time_cap_t *capabilities; + efi_status_t *status; +} __packed; + +struct efi_settime { + efi_time_t *time; + efi_status_t *status; +} __packed; + +struct efi_getwakeuptime { + efi_bool_t *enabled; + efi_bool_t *pending; + efi_time_t *time; + efi_status_t *status; +} __packed; + +struct efi_setwakeuptime { + efi_bool_t enabled; + efi_time_t *time; + efi_status_t *status; +} __packed; + +struct efi_getnexthighmonotoniccount { + u32 *high_count; + efi_status_t *status; +} __packed; + +struct efi_querycapsulecapabilities { + efi_capsule_header_t **capsule_header_array; + unsigned long capsule_count; + u64 *maximum_capsule_size; + int *reset_type; + efi_status_t *status; +} __packed; + +#define EFI_RUNTIME_GET_VARIABLE \ + _IOWR('p', 0x01, struct efi_getvariable) +#define EFI_RUNTIME_SET_VARIABLE \ + _IOW('p', 0x02, struct efi_setvariable) + +#define EFI_RUNTIME_GET_TIME \ + _IOR('p', 0x03, struct efi_gettime) +#define EFI_RUNTIME_SET_TIME \ + _IOW('p', 0x04, struct efi_settime) + +#define EFI_RUNTIME_GET_WAKETIME \ + _IOR('p', 0x05, struct efi_getwakeuptime) +#define EFI_RUNTIME_SET_WAKETIME \ + _IOW('p', 0x06, struct efi_setwakeuptime) + +#define EFI_RUNTIME_GET_NEXTVARIABLENAME \ + _IOWR('p', 0x07, struct efi_getnextvariablename) + +#define EFI_RUNTIME_QUERY_VARIABLEINFO \ + _IOR('p', 0x08, struct efi_queryvariableinfo) + +#define EFI_RUNTIME_GET_NEXTHIGHMONOTONICCOUNT \ + _IOR('p', 0x09, struct efi_getnexthighmonotoniccount) + +#define EFI_RUNTIME_QUERY_CAPSULECAPABILITIES \ + _IOR('p', 0x0A, struct efi_querycapsulecapabilities) + +#endif /* _DRIVERS_FIRMWARE_EFI_TEST_H_ */ --- linux-4.8.0.orig/drivers/gpio/gpio-mpc8xxx.c +++ linux-4.8.0/drivers/gpio/gpio-mpc8xxx.c @@ -239,7 +239,7 @@ irq_hw_number_t hwirq) { irq_set_chip_data(irq, h->host_data); - irq_set_chip_and_handler(irq, &mpc8xxx_irq_chip, handle_level_irq); + irq_set_chip_and_handler(irq, &mpc8xxx_irq_chip, handle_edge_irq); return 0; } --- linux-4.8.0.orig/drivers/gpio/gpio-mvebu.c +++ linux-4.8.0/drivers/gpio/gpio-mvebu.c @@ -293,10 +293,10 @@ { struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d); struct mvebu_gpio_chip *mvchip = gc->private; - u32 mask = ~(1 << (d->irq - gc->irq_base)); + u32 mask = d->mask; irq_gc_lock(gc); - writel_relaxed(mask, mvebu_gpioreg_edge_cause(mvchip)); + writel_relaxed(~mask, mvebu_gpioreg_edge_cause(mvchip)); irq_gc_unlock(gc); } @@ -305,7 +305,7 @@ struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d); struct mvebu_gpio_chip *mvchip = gc->private; struct irq_chip_type *ct = irq_data_get_chip_type(d); - u32 mask = 1 << (d->irq - gc->irq_base); + u32 mask = d->mask; irq_gc_lock(gc); ct->mask_cache_priv &= ~mask; @@ -319,8 +319,7 @@ struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d); struct mvebu_gpio_chip *mvchip = gc->private; struct irq_chip_type *ct = irq_data_get_chip_type(d); - - u32 mask = 1 << (d->irq - gc->irq_base); + u32 mask = d->mask; irq_gc_lock(gc); ct->mask_cache_priv |= mask; @@ -333,8 +332,7 @@ struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d); struct mvebu_gpio_chip *mvchip = gc->private; struct irq_chip_type *ct = irq_data_get_chip_type(d); - - u32 mask = 1 << (d->irq - gc->irq_base); + u32 mask = d->mask; irq_gc_lock(gc); ct->mask_cache_priv &= ~mask; @@ -347,8 +345,7 @@ struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d); struct mvebu_gpio_chip *mvchip = gc->private; struct irq_chip_type *ct = irq_data_get_chip_type(d); - - u32 mask = 1 << (d->irq - gc->irq_base); + u32 mask = d->mask; irq_gc_lock(gc); ct->mask_cache_priv |= mask; @@ -462,7 +459,7 @@ for (i = 0; i < mvchip->chip.ngpio; i++) { int irq; - irq = mvchip->irqbase + i; + irq = irq_find_mapping(mvchip->domain, i); if (!(cause & (1 << i))) continue; @@ -655,6 +652,7 @@ struct irq_chip_type *ct; struct clk *clk; unsigned int ngpios; + bool have_irqs; int soc_variant; int i, cpu, id; int err; @@ -665,6 +663,9 @@ else soc_variant = MVEBU_GPIO_SOC_VARIANT_ORION; + /* Some gpio controllers do not provide irq support */ + have_irqs = of_irq_count(np) != 0; + mvchip = devm_kzalloc(&pdev->dev, sizeof(struct mvebu_gpio_chip), GFP_KERNEL); if (!mvchip) @@ -697,7 +698,8 @@ mvchip->chip.get = mvebu_gpio_get; mvchip->chip.direction_output = mvebu_gpio_direction_output; mvchip->chip.set = mvebu_gpio_set; - mvchip->chip.to_irq = mvebu_gpio_to_irq; + if (have_irqs) + mvchip->chip.to_irq = mvebu_gpio_to_irq; mvchip->chip.base = id * MVEBU_MAX_GPIO_PER_BANK; mvchip->chip.ngpio = ngpios; mvchip->chip.can_sleep = false; @@ -758,34 +760,30 @@ devm_gpiochip_add_data(&pdev->dev, &mvchip->chip, mvchip); /* Some gpio controllers do not provide irq support */ - if (!of_irq_count(np)) + if (!have_irqs) return 0; - /* Setup the interrupt handlers. Each chip can have up to 4 - * interrupt handlers, with each handler dealing with 8 GPIO - * pins. */ - for (i = 0; i < 4; i++) { - int irq = platform_get_irq(pdev, i); - - if (irq < 0) - continue; - irq_set_chained_handler_and_data(irq, mvebu_gpio_irq_handler, - mvchip); - } - - mvchip->irqbase = irq_alloc_descs(-1, 0, ngpios, -1); - if (mvchip->irqbase < 0) { - dev_err(&pdev->dev, "no irqs\n"); - return mvchip->irqbase; + mvchip->domain = + irq_domain_add_linear(np, ngpios, &irq_generic_chip_ops, NULL); + if (!mvchip->domain) { + dev_err(&pdev->dev, "couldn't allocate irq domain %s (DT).\n", + mvchip->chip.label); + return -ENODEV; } - gc = irq_alloc_generic_chip("mvebu_gpio_irq", 2, mvchip->irqbase, - mvchip->membase, handle_level_irq); - if (!gc) { - dev_err(&pdev->dev, "Cannot allocate generic irq_chip\n"); - return -ENOMEM; + err = irq_alloc_domain_generic_chips( + mvchip->domain, ngpios, 2, np->name, handle_level_irq, + IRQ_NOREQUEST | IRQ_NOPROBE | IRQ_LEVEL, 0, 0); + if (err) { + dev_err(&pdev->dev, "couldn't allocate irq chips %s (DT).\n", + mvchip->chip.label); + goto err_domain; } + /* NOTE: The common accessors cannot be used because of the percpu + * access to the mask registers + */ + gc = irq_get_domain_generic_chip(mvchip->domain, 0); gc->private = mvchip; ct = &gc->chip_types[0]; ct->type = IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW; @@ -803,27 +801,23 @@ ct->handler = handle_edge_irq; ct->chip.name = mvchip->chip.label; - irq_setup_generic_chip(gc, IRQ_MSK(ngpios), 0, - IRQ_NOREQUEST, IRQ_LEVEL | IRQ_NOPROBE); + /* Setup the interrupt handlers. Each chip can have up to 4 + * interrupt handlers, with each handler dealing with 8 GPIO + * pins. + */ + for (i = 0; i < 4; i++) { + int irq = platform_get_irq(pdev, i); - /* Setup irq domain on top of the generic chip. */ - mvchip->domain = irq_domain_add_simple(np, mvchip->chip.ngpio, - mvchip->irqbase, - &irq_domain_simple_ops, - mvchip); - if (!mvchip->domain) { - dev_err(&pdev->dev, "couldn't allocate irq domain %s (DT).\n", - mvchip->chip.label); - err = -ENODEV; - goto err_generic_chip; + if (irq < 0) + continue; + irq_set_chained_handler_and_data(irq, mvebu_gpio_irq_handler, + mvchip); } return 0; -err_generic_chip: - irq_remove_generic_chip(gc, IRQ_MSK(ngpios), IRQ_NOREQUEST, - IRQ_LEVEL | IRQ_NOPROBE); - kfree(gc); +err_domain: + irq_domain_remove(mvchip->domain); return err; } --- linux-4.8.0.orig/drivers/gpio/gpio-pca953x.c +++ linux-4.8.0/drivers/gpio/gpio-pca953x.c @@ -372,14 +372,15 @@ break; } - memcpy(reg_val, chip->reg_output, NBANK(chip)); mutex_lock(&chip->i2c_lock); + memcpy(reg_val, chip->reg_output, NBANK(chip)); for(bank=0; bank> ((bank % sizeof(*mask)) * 8); if(bankmask) { unsigned bankval = bits[bank / sizeof(*bits)] >> ((bank % sizeof(*bits)) * 8); + bankval &= bankmask; reg_val[bank] = (reg_val[bank] & ~bankmask) | bankval; } } --- linux-4.8.0.orig/drivers/gpio/gpiolib-acpi.c +++ linux-4.8.0/drivers/gpio/gpiolib-acpi.c @@ -602,14 +602,17 @@ { int idx, i; unsigned int irq_flags; + int ret = -ENOENT; for (i = 0, idx = 0; idx <= index; i++) { struct acpi_gpio_info info; struct gpio_desc *desc; desc = acpi_get_gpiod_by_index(adev, NULL, i, &info); - if (IS_ERR(desc)) + if (IS_ERR(desc)) { + ret = PTR_ERR(desc); break; + } if (info.gpioint && idx++ == index) { int irq = gpiod_to_irq(desc); @@ -628,7 +631,7 @@ } } - return -ENOENT; + return ret; } EXPORT_SYMBOL_GPL(acpi_dev_gpio_irq_get); --- linux-4.8.0.orig/drivers/gpio/gpiolib-of.c +++ linux-4.8.0/drivers/gpio/gpiolib-of.c @@ -26,14 +26,18 @@ #include "gpiolib.h" -static int of_gpiochip_match_node(struct gpio_chip *chip, void *data) +static int of_gpiochip_match_node_and_xlate(struct gpio_chip *chip, void *data) { - return chip->gpiodev->dev.of_node == data; + struct of_phandle_args *gpiospec = data; + + return chip->gpiodev->dev.of_node == gpiospec->np && + chip->of_xlate(chip, gpiospec, NULL) >= 0; } -static struct gpio_chip *of_find_gpiochip_by_node(struct device_node *np) +static struct gpio_chip *of_find_gpiochip_by_xlate( + struct of_phandle_args *gpiospec) { - return gpiochip_find(np, of_gpiochip_match_node); + return gpiochip_find(gpiospec, of_gpiochip_match_node_and_xlate); } static struct gpio_desc *of_xlate_and_get_gpiod_flags(struct gpio_chip *chip, @@ -79,7 +83,7 @@ return ERR_PTR(ret); } - chip = of_find_gpiochip_by_node(gpiospec.np); + chip = of_find_gpiochip_by_xlate(&gpiospec); if (!chip) { desc = ERR_PTR(-EPROBE_DEFER); goto out; --- linux-4.8.0.orig/drivers/gpio/gpiolib.c +++ linux-4.8.0/drivers/gpio/gpiolib.c @@ -21,6 +21,7 @@ #include #include #include +#include #include #include #include @@ -331,6 +332,13 @@ u32 numdescs; }; +#define GPIOHANDLE_REQUEST_VALID_FLAGS \ + (GPIOHANDLE_REQUEST_INPUT | \ + GPIOHANDLE_REQUEST_OUTPUT | \ + GPIOHANDLE_REQUEST_ACTIVE_LOW | \ + GPIOHANDLE_REQUEST_OPEN_DRAIN | \ + GPIOHANDLE_REQUEST_OPEN_SOURCE) + static long linehandle_ioctl(struct file *filep, unsigned int cmd, unsigned long arg) { @@ -342,6 +350,8 @@ if (cmd == GPIOHANDLE_GET_LINE_VALUES_IOCTL) { int val; + memset(&ghd, 0, sizeof(ghd)); + /* TODO: check if descriptors are really input */ for (i = 0; i < lh->numdescs; i++) { val = gpiod_get_value_cansleep(lh->descs[i]); @@ -412,6 +422,7 @@ { struct gpiohandle_request handlereq; struct linehandle_state *lh; + struct file *file; int fd, i, ret; if (copy_from_user(&handlereq, ip, sizeof(handlereq))) @@ -442,6 +453,17 @@ u32 lflags = handlereq.flags; struct gpio_desc *desc; + if (offset >= gdev->ngpio) { + ret = -EINVAL; + goto out_free_descs; + } + + /* Return an error if a unknown flag is set */ + if (lflags & ~GPIOHANDLE_REQUEST_VALID_FLAGS) { + ret = -EINVAL; + goto out_free_descs; + } + desc = &gdev->descs[offset]; ret = gpiod_request(desc, lh->label); if (ret) @@ -477,26 +499,41 @@ i--; lh->numdescs = handlereq.lines; - fd = anon_inode_getfd("gpio-linehandle", - &linehandle_fileops, - lh, - O_RDONLY | O_CLOEXEC); + fd = get_unused_fd_flags(O_RDONLY | O_CLOEXEC); if (fd < 0) { ret = fd; goto out_free_descs; } + file = anon_inode_getfile("gpio-linehandle", + &linehandle_fileops, + lh, + O_RDONLY | O_CLOEXEC); + if (IS_ERR(file)) { + ret = PTR_ERR(file); + goto out_put_unused_fd; + } + handlereq.fd = fd; if (copy_to_user(ip, &handlereq, sizeof(handlereq))) { - ret = -EFAULT; - goto out_free_descs; + /* + * fput() will trigger the release() callback, so do not go onto + * the regular error cleanup path here. + */ + fput(file); + put_unused_fd(fd); + return -EFAULT; } + fd_install(fd, file); + dev_dbg(&gdev->dev, "registered chardev handle for %d lines\n", lh->numdescs); return 0; +out_put_unused_fd: + put_unused_fd(fd); out_free_descs: for (; i >= 0; i--) gpiod_free(lh->descs[i]); @@ -534,6 +571,10 @@ struct mutex read_lock; }; +#define GPIOEVENT_REQUEST_VALID_FLAGS \ + (GPIOEVENT_REQUEST_RISING_EDGE | \ + GPIOEVENT_REQUEST_FALLING_EDGE) + static unsigned int lineevent_poll(struct file *filep, struct poll_table_struct *wait) { @@ -621,6 +662,8 @@ if (cmd == GPIOHANDLE_GET_LINE_VALUES_IOCTL) { int val; + memset(&ghd, 0, sizeof(ghd)); + val = gpiod_get_value_cansleep(le->desc); if (val < 0) return val; @@ -693,6 +736,7 @@ struct gpioevent_request eventreq; struct lineevent_state *le; struct gpio_desc *desc; + struct file *file; u32 offset; u32 lflags; u32 eflags; @@ -724,6 +768,18 @@ lflags = eventreq.handleflags; eflags = eventreq.eventflags; + if (offset >= gdev->ngpio) { + ret = -EINVAL; + goto out_free_label; + } + + /* Return an error if a unknown flag is set */ + if ((lflags & ~GPIOHANDLE_REQUEST_VALID_FLAGS) || + (eflags & ~GPIOEVENT_REQUEST_VALID_FLAGS)) { + ret = -EINVAL; + goto out_free_label; + } + /* This is just wrong: we don't look for events on output lines */ if (lflags & GPIOHANDLE_REQUEST_OUTPUT) { ret = -EINVAL; @@ -775,23 +831,38 @@ if (ret) goto out_free_desc; - fd = anon_inode_getfd("gpio-event", - &lineevent_fileops, - le, - O_RDONLY | O_CLOEXEC); + fd = get_unused_fd_flags(O_RDONLY | O_CLOEXEC); if (fd < 0) { ret = fd; goto out_free_irq; } + file = anon_inode_getfile("gpio-event", + &lineevent_fileops, + le, + O_RDONLY | O_CLOEXEC); + if (IS_ERR(file)) { + ret = PTR_ERR(file); + goto out_put_unused_fd; + } + eventreq.fd = fd; if (copy_to_user(ip, &eventreq, sizeof(eventreq))) { - ret = -EFAULT; - goto out_free_irq; + /* + * fput() will trigger the release() callback, so do not go onto + * the regular error cleanup path here. + */ + fput(file); + put_unused_fd(fd); + return -EFAULT; } + fd_install(fd, file); + return 0; +out_put_unused_fd: + put_unused_fd(fd); out_free_irq: free_irq(le->irq, le); out_free_desc: @@ -821,6 +892,8 @@ if (cmd == GPIO_GET_CHIPINFO_IOCTL) { struct gpiochip_info chipinfo; + memset(&chipinfo, 0, sizeof(chipinfo)); + strncpy(chipinfo.name, dev_name(&gdev->dev), sizeof(chipinfo.name)); chipinfo.name[sizeof(chipinfo.name)-1] = '\0'; @@ -837,7 +910,7 @@ if (copy_from_user(&lineinfo, ip, sizeof(lineinfo))) return -EFAULT; - if (lineinfo.line_offset > gdev->ngpio) + if (lineinfo.line_offset >= gdev->ngpio) return -EINVAL; desc = &gdev->descs[lineinfo.line_offset]; @@ -911,7 +984,8 @@ return -ENODEV; get_device(&gdev->dev); filp->private_data = gdev; - return 0; + + return nonseekable_open(inode, filp); } /** @@ -936,7 +1010,7 @@ .release = gpio_chrdev_release, .open = gpio_chrdev_open, .owner = THIS_MODULE, - .llseek = noop_llseek, + .llseek = no_llseek, .unlocked_ioctl = gpio_ioctl, #ifdef CONFIG_COMPAT .compat_ioctl = gpio_ioctl_compat, @@ -2594,8 +2668,11 @@ if (IS_ERR(desc)) return PTR_ERR(desc); - /* Flush direction if something changed behind our back */ - if (chip->get_direction) { + /* + * If it's fast: flush the direction setting if something changed + * behind our back + */ + if (!chip->can_sleep && chip->get_direction) { int dir = chip->get_direction(chip, offset); if (dir) --- linux-4.8.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu.h +++ linux-4.8.0/drivers/gpu/drm/amd/amdgpu/amdgpu.h @@ -492,6 +492,7 @@ u64 metadata_flags; void *metadata; u32 metadata_size; + unsigned prime_shared_count; /* list of all virtual address to which this bo * is associated to */ --- linux-4.8.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c +++ linux-4.8.0/drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c @@ -395,9 +395,12 @@ { int i, ret; struct device *dev; - struct amdgpu_device *adev = (struct amdgpu_device *)handle; + /* return early if no ACP */ + if (!adev->acp.acp_genpd) + return 0; + for (i = 0; i < ACP_DEVS ; i++) { dev = get_mfd_cell_dev(adev->acp.acp_cell[i].name, i); ret = pm_genpd_remove_device(&adev->acp.acp_genpd->gpd, dev); --- linux-4.8.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_atpx_handler.c +++ linux-4.8.0/drivers/gpu/drm/amd/amdgpu/amdgpu_atpx_handler.c @@ -33,6 +33,7 @@ static struct amdgpu_atpx_priv { bool atpx_detected; + bool bridge_pm_usable; /* handle for device - and atpx */ acpi_handle dhandle; acpi_handle other_handle; @@ -200,7 +201,11 @@ atpx->is_hybrid = false; if (valid_bits & ATPX_MS_HYBRID_GFX_SUPPORTED) { printk("ATPX Hybrid Graphics\n"); - atpx->functions.power_cntl = false; + /* + * Disable legacy PM methods only when pcie port PM is usable, + * otherwise the device might fail to power off or power on. + */ + atpx->functions.power_cntl = !amdgpu_atpx_priv.bridge_pm_usable; atpx->is_hybrid = true; } @@ -546,17 +551,25 @@ struct pci_dev *pdev = NULL; bool has_atpx = false; int vga_count = 0; + bool d3_supported = false; + struct pci_dev *parent_pdev; while ((pdev = pci_get_class(PCI_CLASS_DISPLAY_VGA << 8, pdev)) != NULL) { vga_count++; has_atpx |= (amdgpu_atpx_pci_probe_handle(pdev) == true); + + parent_pdev = pci_upstream_bridge(pdev); + d3_supported |= parent_pdev && parent_pdev->bridge_d3; } while ((pdev = pci_get_class(PCI_CLASS_DISPLAY_OTHER << 8, pdev)) != NULL) { vga_count++; has_atpx |= (amdgpu_atpx_pci_probe_handle(pdev) == true); + + parent_pdev = pci_upstream_bridge(pdev); + d3_supported |= parent_pdev && parent_pdev->bridge_d3; } if (has_atpx && vga_count == 2) { @@ -564,6 +577,7 @@ printk(KERN_INFO "vga_switcheroo: detected switching method %s handle\n", acpi_method_name); amdgpu_atpx_priv.atpx_detected = true; + amdgpu_atpx_priv.bridge_pm_usable = d3_supported; amdgpu_atpx_init(); return true; } --- linux-4.8.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_bo_list.c +++ linux-4.8.0/drivers/gpu/drm/amd/amdgpu/amdgpu_bo_list.c @@ -132,7 +132,7 @@ entry->priority = min(info[i].bo_priority, AMDGPU_BO_LIST_MAX_PRIORITY); entry->tv.bo = &entry->robj->tbo; - entry->tv.shared = true; + entry->tv.shared = !entry->robj->prime_shared_count; if (entry->robj->prefered_domains == AMDGPU_GEM_DOMAIN_GDS) gds_obj = entry->robj; --- linux-4.8.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c +++ linux-4.8.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c @@ -43,6 +43,9 @@ ctx->rings[i].sequence = 1; ctx->rings[i].fences = &ctx->fences[amdgpu_sched_jobs * i]; } + + ctx->reset_counter = atomic_read(&adev->gpu_reset_counter); + /* create context entity for each ring */ for (i = 0; i < adev->num_rings; i++) { struct amdgpu_ring *ring = adev->rings[i]; --- linux-4.8.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_dpm.c +++ linux-4.8.0/drivers/gpu/drm/amd/amdgpu/amdgpu_dpm.c @@ -113,24 +113,26 @@ printk("\n"); } + u32 amdgpu_dpm_get_vblank_time(struct amdgpu_device *adev) { struct drm_device *dev = adev->ddev; struct drm_crtc *crtc; struct amdgpu_crtc *amdgpu_crtc; - u32 line_time_us, vblank_lines; + u32 vblank_in_pixels; u32 vblank_time_us = 0xffffffff; /* if the displays are off, vblank time is max */ if (adev->mode_info.num_crtc && adev->mode_info.mode_config_initialized) { list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { amdgpu_crtc = to_amdgpu_crtc(crtc); if (crtc->enabled && amdgpu_crtc->enabled && amdgpu_crtc->hw_mode.clock) { - line_time_us = (amdgpu_crtc->hw_mode.crtc_htotal * 1000) / - amdgpu_crtc->hw_mode.clock; - vblank_lines = amdgpu_crtc->hw_mode.crtc_vblank_end - + vblank_in_pixels = + amdgpu_crtc->hw_mode.crtc_htotal * + (amdgpu_crtc->hw_mode.crtc_vblank_end - amdgpu_crtc->hw_mode.crtc_vdisplay + - (amdgpu_crtc->v_border * 2); - vblank_time_us = vblank_lines * line_time_us; + (amdgpu_crtc->v_border * 2)); + + vblank_time_us = vblank_in_pixels * 1000 / amdgpu_crtc->hw_mode.clock; break; } } --- linux-4.8.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c +++ linux-4.8.0/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c @@ -605,6 +605,7 @@ { amdgpu_sync_init(); amdgpu_fence_slab_init(); + amd_sched_fence_slab_init(); if (vgacon_text_force()) { DRM_ERROR("VGACON disables amdgpu kernel modesetting.\n"); return -EINVAL; @@ -624,6 +625,7 @@ drm_pci_exit(driver, pdriver); amdgpu_unregister_atpx_handler(); amdgpu_sync_fini(); + amd_sched_fence_slab_fini(); amdgpu_fence_slab_fini(); } --- linux-4.8.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c +++ linux-4.8.0/drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c @@ -68,6 +68,7 @@ void amdgpu_fence_slab_fini(void) { + rcu_barrier(); kmem_cache_destroy(amdgpu_fence_slab); } /* --- linux-4.8.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c +++ linux-4.8.0/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c @@ -99,6 +99,8 @@ if ((amdgpu_runtime_pm != 0) && amdgpu_has_atpx() && + (amdgpu_is_atpx_hybrid() || + amdgpu_has_atpx_dgpu_power_cntl()) && ((flags & AMD_IS_APU) == 0)) flags |= AMD_IS_PX; @@ -292,7 +294,7 @@ type = AMD_IP_BLOCK_TYPE_UVD; ring_mask = adev->uvd.ring.ready ? 1 : 0; ib_start_alignment = AMDGPU_GPU_PAGE_SIZE; - ib_size_alignment = 8; + ib_size_alignment = 16; break; case AMDGPU_HW_IP_VCE: type = AMD_IP_BLOCK_TYPE_VCE; --- linux-4.8.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_prime.c +++ linux-4.8.0/drivers/gpu/drm/amd/amdgpu/amdgpu_prime.c @@ -74,20 +74,36 @@ if (ret) return ERR_PTR(ret); + bo->prime_shared_count = 1; return &bo->gem_base; } int amdgpu_gem_prime_pin(struct drm_gem_object *obj) { struct amdgpu_bo *bo = gem_to_amdgpu_bo(obj); - int ret = 0; + long ret = 0; ret = amdgpu_bo_reserve(bo, false); if (unlikely(ret != 0)) return ret; + /* + * Wait for all shared fences to complete before we switch to future + * use of exclusive fence on this prime shared bo. + */ + ret = reservation_object_wait_timeout_rcu(bo->tbo.resv, true, false, + MAX_SCHEDULE_TIMEOUT); + if (unlikely(ret < 0)) { + DRM_DEBUG_PRIME("Fence wait failed: %li\n", ret); + amdgpu_bo_unreserve(bo); + return ret; + } + /* pin buffer into GTT */ ret = amdgpu_bo_pin(bo, AMDGPU_GEM_DOMAIN_GTT, NULL); + if (likely(ret == 0)) + bo->prime_shared_count++; + amdgpu_bo_unreserve(bo); return ret; } @@ -102,6 +118,8 @@ return; amdgpu_bo_unpin(bo); + if (bo->prime_shared_count) + bo->prime_shared_count--; amdgpu_bo_unreserve(bo); } --- linux-4.8.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c +++ linux-4.8.0/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c @@ -1654,5 +1654,6 @@ fence_put(adev->vm_manager.ids[i].first); amdgpu_sync_free(&adev->vm_manager.ids[i].active); fence_put(id->flushed_updates); + fence_put(id->last_flush); } } --- linux-4.8.0.orig/drivers/gpu/drm/amd/amdgpu/dce_v10_0.c +++ linux-4.8.0/drivers/gpu/drm/amd/amdgpu/dce_v10_0.c @@ -425,16 +425,6 @@ list_for_each_entry(connector, &dev->mode_config.connector_list, head) { struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector); - if (connector->connector_type == DRM_MODE_CONNECTOR_eDP || - connector->connector_type == DRM_MODE_CONNECTOR_LVDS) { - /* don't try to enable hpd on eDP or LVDS avoid breaking the - * aux dp channel on imac and help (but not completely fix) - * https://bugzilla.redhat.com/show_bug.cgi?id=726143 - * also avoid interrupt storms during dpms. - */ - continue; - } - switch (amdgpu_connector->hpd.hpd) { case AMDGPU_HPD_1: idx = 0; @@ -458,6 +448,19 @@ continue; } + if (connector->connector_type == DRM_MODE_CONNECTOR_eDP || + connector->connector_type == DRM_MODE_CONNECTOR_LVDS) { + /* don't try to enable hpd on eDP or LVDS avoid breaking the + * aux dp channel on imac and help (but not completely fix) + * https://bugzilla.redhat.com/show_bug.cgi?id=726143 + * also avoid interrupt storms during dpms. + */ + tmp = RREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[idx]); + tmp = REG_SET_FIELD(tmp, DC_HPD_INT_CONTROL, DC_HPD_INT_EN, 0); + WREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[idx], tmp); + continue; + } + tmp = RREG32(mmDC_HPD_CONTROL + hpd_offsets[idx]); tmp = REG_SET_FIELD(tmp, DC_HPD_CONTROL, DC_HPD_EN, 1); WREG32(mmDC_HPD_CONTROL + hpd_offsets[idx], tmp); --- linux-4.8.0.orig/drivers/gpu/drm/amd/amdgpu/dce_v11_0.c +++ linux-4.8.0/drivers/gpu/drm/amd/amdgpu/dce_v11_0.c @@ -443,16 +443,6 @@ list_for_each_entry(connector, &dev->mode_config.connector_list, head) { struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector); - if (connector->connector_type == DRM_MODE_CONNECTOR_eDP || - connector->connector_type == DRM_MODE_CONNECTOR_LVDS) { - /* don't try to enable hpd on eDP or LVDS avoid breaking the - * aux dp channel on imac and help (but not completely fix) - * https://bugzilla.redhat.com/show_bug.cgi?id=726143 - * also avoid interrupt storms during dpms. - */ - continue; - } - switch (amdgpu_connector->hpd.hpd) { case AMDGPU_HPD_1: idx = 0; @@ -476,6 +466,19 @@ continue; } + if (connector->connector_type == DRM_MODE_CONNECTOR_eDP || + connector->connector_type == DRM_MODE_CONNECTOR_LVDS) { + /* don't try to enable hpd on eDP or LVDS avoid breaking the + * aux dp channel on imac and help (but not completely fix) + * https://bugzilla.redhat.com/show_bug.cgi?id=726143 + * also avoid interrupt storms during dpms. + */ + tmp = RREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[idx]); + tmp = REG_SET_FIELD(tmp, DC_HPD_INT_CONTROL, DC_HPD_INT_EN, 0); + WREG32(mmDC_HPD_INT_CONTROL + hpd_offsets[idx], tmp); + continue; + } + tmp = RREG32(mmDC_HPD_CONTROL + hpd_offsets[idx]); tmp = REG_SET_FIELD(tmp, DC_HPD_CONTROL, DC_HPD_EN, 1); WREG32(mmDC_HPD_CONTROL + hpd_offsets[idx], tmp); @@ -3109,6 +3112,7 @@ dce_v11_0_afmt_fini(adev); + drm_mode_config_cleanup(adev->ddev); adev->mode_info.mode_config_initialized = false; return 0; --- linux-4.8.0.orig/drivers/gpu/drm/amd/amdgpu/dce_v8_0.c +++ linux-4.8.0/drivers/gpu/drm/amd/amdgpu/dce_v8_0.c @@ -395,15 +395,6 @@ list_for_each_entry(connector, &dev->mode_config.connector_list, head) { struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector); - if (connector->connector_type == DRM_MODE_CONNECTOR_eDP || - connector->connector_type == DRM_MODE_CONNECTOR_LVDS) { - /* don't try to enable hpd on eDP or LVDS avoid breaking the - * aux dp channel on imac and help (but not completely fix) - * https://bugzilla.redhat.com/show_bug.cgi?id=726143 - * also avoid interrupt storms during dpms. - */ - continue; - } switch (amdgpu_connector->hpd.hpd) { case AMDGPU_HPD_1: WREG32(mmDC_HPD1_CONTROL, tmp); @@ -426,6 +417,45 @@ default: break; } + + if (connector->connector_type == DRM_MODE_CONNECTOR_eDP || + connector->connector_type == DRM_MODE_CONNECTOR_LVDS) { + /* don't try to enable hpd on eDP or LVDS avoid breaking the + * aux dp channel on imac and help (but not completely fix) + * https://bugzilla.redhat.com/show_bug.cgi?id=726143 + * also avoid interrupt storms during dpms. + */ + u32 dc_hpd_int_cntl_reg, dc_hpd_int_cntl; + + switch (amdgpu_connector->hpd.hpd) { + case AMDGPU_HPD_1: + dc_hpd_int_cntl_reg = mmDC_HPD1_INT_CONTROL; + break; + case AMDGPU_HPD_2: + dc_hpd_int_cntl_reg = mmDC_HPD2_INT_CONTROL; + break; + case AMDGPU_HPD_3: + dc_hpd_int_cntl_reg = mmDC_HPD3_INT_CONTROL; + break; + case AMDGPU_HPD_4: + dc_hpd_int_cntl_reg = mmDC_HPD4_INT_CONTROL; + break; + case AMDGPU_HPD_5: + dc_hpd_int_cntl_reg = mmDC_HPD5_INT_CONTROL; + break; + case AMDGPU_HPD_6: + dc_hpd_int_cntl_reg = mmDC_HPD6_INT_CONTROL; + break; + default: + continue; + } + + dc_hpd_int_cntl = RREG32(dc_hpd_int_cntl_reg); + dc_hpd_int_cntl &= ~DC_HPD1_INT_CONTROL__DC_HPD1_INT_EN_MASK; + WREG32(dc_hpd_int_cntl_reg, dc_hpd_int_cntl); + continue; + } + dce_v8_0_hpd_set_polarity(adev, amdgpu_connector->hpd.hpd); amdgpu_irq_get(adev, &adev->hpd_irq, amdgpu_connector->hpd.hpd); } --- linux-4.8.0.orig/drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c +++ linux-4.8.0/drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c @@ -3798,8 +3798,12 @@ temp = mmRLC_SRM_INDEX_CNTL_ADDR_0; data = mmRLC_SRM_INDEX_CNTL_DATA_0; for (i = 0; i < sizeof(unique_indices) / sizeof(int); i++) { - amdgpu_mm_wreg(adev, temp + i, unique_indices[i] & 0x3FFFF, false); - amdgpu_mm_wreg(adev, data + i, unique_indices[i] >> 20, false); + if (unique_indices[i] != 0) { + amdgpu_mm_wreg(adev, temp + i, + unique_indices[i] & 0x3FFFF, false); + amdgpu_mm_wreg(adev, data + i, + unique_indices[i] >> 20, false); + } } kfree(register_list_format); @@ -5735,29 +5739,24 @@ adev->gfx.rlc.funcs->enter_safe_mode(adev); if (enable && (adev->cg_flags & AMD_CG_SUPPORT_GFX_CGCG)) { - /* 1 enable cntx_empty_int_enable/cntx_busy_int_enable/ - * Cmp_busy/GFX_Idle interrupts - */ - gfx_v8_0_enable_gui_idle_interrupt(adev, true); - temp1 = data1 = RREG32(mmRLC_CGTT_MGCG_OVERRIDE); data1 &= ~RLC_CGTT_MGCG_OVERRIDE__CGCG_MASK; if (temp1 != data1) WREG32(mmRLC_CGTT_MGCG_OVERRIDE, data1); - /* 2 wait for RLC_SERDES_CU_MASTER & RLC_SERDES_NONCU_MASTER idle */ + /* : wait for RLC_SERDES_CU_MASTER & RLC_SERDES_NONCU_MASTER idle */ gfx_v8_0_wait_for_rlc_serdes(adev); - /* 3 - clear cgcg override */ + /* 2 - clear cgcg override */ gfx_v8_0_send_serdes_cmd(adev, BPM_REG_CGCG_OVERRIDE, CLE_BPM_SERDES_CMD); /* wait for RLC_SERDES_CU_MASTER & RLC_SERDES_NONCU_MASTER idle */ gfx_v8_0_wait_for_rlc_serdes(adev); - /* 4 - write cmd to set CGLS */ + /* 3 - write cmd to set CGLS */ gfx_v8_0_send_serdes_cmd(adev, BPM_REG_CGLS_EN, SET_BPM_SERDES_CMD); - /* 5 - enable cgcg */ + /* 4 - enable cgcg */ data |= RLC_CGCG_CGLS_CTRL__CGCG_EN_MASK; if (adev->cg_flags & AMD_CG_SUPPORT_GFX_CGLS) { @@ -5775,6 +5774,11 @@ if (temp != data) WREG32(mmRLC_CGCG_CGLS_CTRL, data); + + /* 5 enable cntx_empty_int_enable/cntx_busy_int_enable/ + * Cmp_busy/GFX_Idle interrupts + */ + gfx_v8_0_enable_gui_idle_interrupt(adev, true); } else { /* disable cntx_empty_int_enable & GFX Idle interrupt */ gfx_v8_0_enable_gui_idle_interrupt(adev, false); --- linux-4.8.0.orig/drivers/gpu/drm/amd/powerplay/eventmgr/eventactionchains.c +++ linux-4.8.0/drivers/gpu/drm/amd/powerplay/eventmgr/eventactionchains.c @@ -262,6 +262,8 @@ unblock_adjust_power_state_tasks, set_cpu_power_state, notify_hw_power_source_tasks, + get_2d_performance_state_tasks, + set_performance_state_tasks, /* updateDALConfigurationTasks, variBrightDisplayConfigurationChangeTasks, */ adjust_power_state_tasks, --- linux-4.8.0.orig/drivers/gpu/drm/amd/powerplay/eventmgr/psm.c +++ linux-4.8.0/drivers/gpu/drm/amd/powerplay/eventmgr/psm.c @@ -100,11 +100,12 @@ if (requested == NULL) return 0; + phm_apply_state_adjust_rules(hwmgr, requested, pcurrent); + if (pcurrent == NULL || (0 != phm_check_states_equal(hwmgr, &pcurrent->hardware, &requested->hardware, &equal))) equal = false; if (!equal || phm_check_smc_update_required_for_display_configuration(hwmgr)) { - phm_apply_state_adjust_rules(hwmgr, requested, pcurrent); phm_set_power_state(hwmgr, &pcurrent->hardware, &requested->hardware); hwmgr->current_ps = requested; } --- linux-4.8.0.orig/drivers/gpu/drm/amd/scheduler/gpu_scheduler.c +++ linux-4.8.0/drivers/gpu/drm/amd/scheduler/gpu_scheduler.c @@ -34,9 +34,6 @@ static void amd_sched_wakeup(struct amd_gpu_scheduler *sched); static void amd_sched_process_job(struct fence *f, struct fence_cb *cb); -struct kmem_cache *sched_fence_slab; -atomic_t sched_fence_slab_ref = ATOMIC_INIT(0); - /* Initialize a given run queue struct */ static void amd_sched_rq_init(struct amd_sched_rq *rq) { @@ -618,13 +615,6 @@ INIT_LIST_HEAD(&sched->ring_mirror_list); spin_lock_init(&sched->job_list_lock); atomic_set(&sched->hw_rq_count, 0); - if (atomic_inc_return(&sched_fence_slab_ref) == 1) { - sched_fence_slab = kmem_cache_create( - "amd_sched_fence", sizeof(struct amd_sched_fence), 0, - SLAB_HWCACHE_ALIGN, NULL); - if (!sched_fence_slab) - return -ENOMEM; - } /* Each scheduler will run on a seperate kernel thread */ sched->thread = kthread_run(amd_sched_main, sched, sched->name); @@ -645,6 +635,4 @@ { if (sched->thread) kthread_stop(sched->thread); - if (atomic_dec_and_test(&sched_fence_slab_ref)) - kmem_cache_destroy(sched_fence_slab); } --- linux-4.8.0.orig/drivers/gpu/drm/amd/scheduler/gpu_scheduler.h +++ linux-4.8.0/drivers/gpu/drm/amd/scheduler/gpu_scheduler.h @@ -30,9 +30,6 @@ struct amd_gpu_scheduler; struct amd_sched_rq; -extern struct kmem_cache *sched_fence_slab; -extern atomic_t sched_fence_slab_ref; - /** * A scheduler entity is a wrapper around a job queue or a group * of other entities. Entities take turns emitting jobs from their @@ -145,6 +142,9 @@ struct amd_sched_entity *entity); void amd_sched_entity_push_job(struct amd_sched_job *sched_job); +int amd_sched_fence_slab_init(void); +void amd_sched_fence_slab_fini(void); + struct amd_sched_fence *amd_sched_fence_create( struct amd_sched_entity *s_entity, void *owner); void amd_sched_fence_scheduled(struct amd_sched_fence *fence); --- linux-4.8.0.orig/drivers/gpu/drm/amd/scheduler/sched_fence.c +++ linux-4.8.0/drivers/gpu/drm/amd/scheduler/sched_fence.c @@ -27,6 +27,25 @@ #include #include "gpu_scheduler.h" +static struct kmem_cache *sched_fence_slab; + +int amd_sched_fence_slab_init(void) +{ + sched_fence_slab = kmem_cache_create( + "amd_sched_fence", sizeof(struct amd_sched_fence), 0, + SLAB_HWCACHE_ALIGN, NULL); + if (!sched_fence_slab) + return -ENOMEM; + + return 0; +} + +void amd_sched_fence_slab_fini(void) +{ + rcu_barrier(); + kmem_cache_destroy(sched_fence_slab); +} + struct amd_sched_fence *amd_sched_fence_create(struct amd_sched_entity *entity, void *owner) { --- linux-4.8.0.orig/drivers/gpu/drm/ast/ast_main.c +++ linux-4.8.0/drivers/gpu/drm/ast/ast_main.c @@ -223,7 +223,8 @@ ast_write32(ast, 0x10000, 0xfc600309); do { - ; + if (pci_channel_offline(dev->pdev)) + return -EIO; } while (ast_read32(ast, 0x10000) != 0x01); data = ast_read32(ast, 0x10004); @@ -428,7 +429,9 @@ ast_detect_chip(dev, &need_post); if (ast->chip != AST1180) { - ast_get_dram_info(dev); + ret = ast_get_dram_info(dev); + if (ret) + goto out_free; ast->vram_size = ast_get_vram_info(dev); DRM_INFO("dram %d %d %d %08x\n", ast->mclk, ast->dram_type, ast->dram_bus_width, ast->vram_size); } --- linux-4.8.0.orig/drivers/gpu/drm/drm_atomic.c +++ linux-4.8.0/drivers/gpu/drm/drm_atomic.c @@ -420,18 +420,21 @@ ssize_t expected_size, bool *replaced) { - struct drm_device *dev = crtc->dev; struct drm_property_blob *new_blob = NULL; if (blob_id != 0) { - new_blob = drm_property_lookup_blob(dev, blob_id); + new_blob = drm_property_lookup_blob(crtc->dev, blob_id); if (new_blob == NULL) return -EINVAL; - if (expected_size > 0 && expected_size != new_blob->length) + + if (expected_size > 0 && expected_size != new_blob->length) { + drm_property_unreference_blob(new_blob); return -EINVAL; + } } drm_atomic_replace_property_blob(blob, new_blob, replaced); + drm_property_unreference_blob(new_blob); return 0; } --- linux-4.8.0.orig/drivers/gpu/drm/drm_dp_dual_mode_helper.c +++ linux-4.8.0/drivers/gpu/drm/drm_dp_dual_mode_helper.c @@ -148,6 +148,14 @@ DP_DUAL_MODE_REV_TYPE2); } +bool is_lspcon_adaptor(const char hdmi_id[DP_DUAL_MODE_HDMI_ID_LEN], + const uint8_t adaptor_id) +{ + return is_hdmi_adaptor(hdmi_id) && + (adaptor_id == (DP_DUAL_MODE_TYPE_TYPE2 | + DP_DUAL_MODE_TYPE_HAS_DPCD)); +} + /** * drm_dp_dual_mode_detect - Identify the DP dual mode adaptor * @adapter: I2C adapter for the DDC bus @@ -203,6 +211,8 @@ ret = drm_dp_dual_mode_read(adapter, DP_DUAL_MODE_ADAPTOR_ID, &adaptor_id, sizeof(adaptor_id)); if (ret == 0) { + if (is_lspcon_adaptor(hdmi_id, adaptor_id)) + return DRM_DP_DUAL_MODE_LSPCON; if (is_type2_adaptor(adaptor_id)) { if (is_hdmi_adaptor(hdmi_id)) return DRM_DP_DUAL_MODE_TYPE2_HDMI; @@ -364,3 +374,96 @@ } } EXPORT_SYMBOL(drm_dp_get_dual_mode_type_name); + +/** + * drm_lspcon_get_mode: Get LSPCON's current mode of operation by + * by reading offset (0x80, 0x41) + * @i2c_adapter: I2C-over-aux adapter + * @current_mode: out vaiable, current lspcon mode of operation + * + * Returns: + * 0 on success, sets the current_mode value to appropriate mode + * -error on failure + */ +int drm_lspcon_get_mode(struct i2c_adapter *adapter, + enum drm_lspcon_mode *mode) +{ + u8 data; + int ret = 0; + + if (!mode) { + DRM_ERROR("NULL input\n"); + return -EINVAL; + } + + /* Read Status: i2c over aux */ + ret = drm_dp_dual_mode_read(adapter, DP_DUAL_MODE_LSPCON_CURRENT_MODE, + &data, sizeof(data)); + if (ret < 0) { + DRM_ERROR("LSPCON read(0x80, 0x41) failed\n"); + return -EFAULT; + } + + if (data & DP_DUAL_MODE_LSPCON_MODE_PCON) + *mode = DRM_LSPCON_MODE_PCON; + else + *mode = DRM_LSPCON_MODE_LS; + return 0; +} +EXPORT_SYMBOL(drm_lspcon_get_mode); + +/** + * drm_lspcon_change_mode: Change LSPCON's mode of operation by + * by writing offset (0x80, 0x40) + * @i2c_adapter: I2C-over-aux adapter + * @reqd_mode: required mode of operation + * + * Returns: + * 0 on success, -error on failure/timeout + */ +int drm_lspcon_set_mode(struct i2c_adapter *adapter, + enum drm_lspcon_mode mode) +{ + u8 data = 0; + int ret; + int time_out = 200; + enum drm_lspcon_mode current_mode; + + if (mode == DRM_LSPCON_MODE_PCON) + data = DP_DUAL_MODE_LSPCON_MODE_PCON; + + /* Change mode */ + ret = drm_dp_dual_mode_write(adapter, DP_DUAL_MODE_LSPCON_MODE_CHANGE, + &data, sizeof(data)); + if (ret < 0) { + DRM_ERROR("LSPCON mode change failed\n"); + return ret; + } + + /* + * Confirm mode change by reading the status bit. + * Sometimes, it takes a while to change the mode, + * so wait and retry until time out or done. + */ + do { + ret = drm_lspcon_get_mode(adapter, ¤t_mode); + if (ret) { + DRM_ERROR("can't confirm LSPCON mode change\n"); + return ret; + } else { + if (current_mode != mode) { + msleep(10); + time_out -= 10; + } else { + DRM_DEBUG_KMS("LSPCON mode changed to %s\n", + mode == DRM_LSPCON_MODE_LS ? + "LS" : "PCON"); + return 0; + } + } + } while (time_out); + + DRM_ERROR("LSPCON mode change timed out\n"); + return -ETIMEDOUT; +} +EXPORT_SYMBOL(drm_lspcon_set_mode); --- linux-4.8.0.orig/drivers/gpu/drm/drm_dp_mst_topology.c +++ linux-4.8.0/drivers/gpu/drm/drm_dp_mst_topology.c @@ -914,6 +914,7 @@ /* no need to clean up vcpi * as if we have no connector we never setup a vcpi */ drm_dp_port_teardown_pdt(port, port->pdt); + port->pdt = DP_PEER_DEVICE_NONE; } kfree(port); } @@ -1159,7 +1160,9 @@ drm_dp_put_port(port); goto out; } - if (port->port_num >= DP_MST_LOGICAL_PORT_0) { + if ((port->pdt == DP_PEER_DEVICE_DP_LEGACY_CONV || + port->pdt == DP_PEER_DEVICE_SST_SINK) && + port->port_num >= DP_MST_LOGICAL_PORT_0) { port->cached_edid = drm_get_edid(port->connector, &port->aux.ddc); drm_mode_connector_set_tile_property(port->connector); } @@ -2919,6 +2922,7 @@ mgr->cbs->destroy_connector(mgr, port->connector); drm_dp_port_teardown_pdt(port, port->pdt); + port->pdt = DP_PEER_DEVICE_NONE; if (!port->input && port->vcpi.vcpi > 0) { drm_dp_mst_reset_vcpi_slots(mgr, port); --- linux-4.8.0.orig/drivers/gpu/drm/drm_fb_helper.c +++ linux-4.8.0/drivers/gpu/drm/drm_fb_helper.c @@ -129,7 +129,12 @@ return 0; fail: for (i = 0; i < fb_helper->connector_count; i++) { - kfree(fb_helper->connector_info[i]); + struct drm_fb_helper_connector *fb_helper_connector = + fb_helper->connector_info[i]; + + drm_connector_unreference(fb_helper_connector->connector); + + kfree(fb_helper_connector); fb_helper->connector_info[i] = NULL; } fb_helper->connector_count = 0; @@ -601,6 +606,24 @@ } EXPORT_SYMBOL(drm_fb_helper_blank); +static void drm_fb_helper_modeset_release(struct drm_fb_helper *helper, + struct drm_mode_set *modeset) +{ + int i; + + for (i = 0; i < modeset->num_connectors; i++) { + drm_connector_unreference(modeset->connectors[i]); + modeset->connectors[i] = NULL; + } + modeset->num_connectors = 0; + + drm_mode_destroy(helper->dev, modeset->mode); + modeset->mode = NULL; + + /* FIXME should hold a ref? */ + modeset->fb = NULL; +} + static void drm_fb_helper_crtc_free(struct drm_fb_helper *helper) { int i; @@ -610,10 +633,12 @@ kfree(helper->connector_info[i]); } kfree(helper->connector_info); + for (i = 0; i < helper->crtc_count; i++) { - kfree(helper->crtc_info[i].mode_set.connectors); - if (helper->crtc_info[i].mode_set.mode) - drm_mode_destroy(helper->dev, helper->crtc_info[i].mode_set.mode); + struct drm_mode_set *modeset = &helper->crtc_info[i].mode_set; + + drm_fb_helper_modeset_release(helper, modeset); + kfree(modeset->connectors); } kfree(helper->crtc_info); } @@ -632,7 +657,9 @@ clip->x2 = clip->y2 = 0; spin_unlock_irqrestore(&helper->dirty_lock, flags); - helper->fb->funcs->dirty(helper->fb, NULL, 0, 0, &clip_copy, 1); + /* call dirty callback only when it has been really touched */ + if (clip_copy.x1 < clip_copy.x2 && clip_copy.y1 < clip_copy.y2) + helper->fb->funcs->dirty(helper->fb, NULL, 0, 0, &clip_copy, 1); } /** @@ -2027,7 +2054,6 @@ struct drm_fb_helper_crtc **crtcs; struct drm_display_mode **modes; struct drm_fb_offset *offsets; - struct drm_mode_set *modeset; bool *enabled; int width, height; int i; @@ -2075,45 +2101,35 @@ /* need to set the modesets up here for use later */ /* fill out the connector<->crtc mappings into the modesets */ - for (i = 0; i < fb_helper->crtc_count; i++) { - modeset = &fb_helper->crtc_info[i].mode_set; - modeset->num_connectors = 0; - modeset->fb = NULL; - } + for (i = 0; i < fb_helper->crtc_count; i++) + drm_fb_helper_modeset_release(fb_helper, + &fb_helper->crtc_info[i].mode_set); for (i = 0; i < fb_helper->connector_count; i++) { struct drm_display_mode *mode = modes[i]; struct drm_fb_helper_crtc *fb_crtc = crtcs[i]; struct drm_fb_offset *offset = &offsets[i]; - modeset = &fb_crtc->mode_set; + struct drm_mode_set *modeset = &fb_crtc->mode_set; if (mode && fb_crtc) { + struct drm_connector *connector = + fb_helper->connector_info[i]->connector; + DRM_DEBUG_KMS("desired mode %s set on crtc %d (%d,%d)\n", mode->name, fb_crtc->mode_set.crtc->base.id, offset->x, offset->y); + fb_crtc->desired_mode = mode; fb_crtc->x = offset->x; fb_crtc->y = offset->y; - if (modeset->mode) - drm_mode_destroy(dev, modeset->mode); modeset->mode = drm_mode_duplicate(dev, fb_crtc->desired_mode); - modeset->connectors[modeset->num_connectors++] = fb_helper->connector_info[i]->connector; + drm_connector_reference(connector); + modeset->connectors[modeset->num_connectors++] = connector; modeset->fb = fb_helper->fb; modeset->x = offset->x; modeset->y = offset->y; } } - - /* Clear out any old modes if there are no more connected outputs. */ - for (i = 0; i < fb_helper->crtc_count; i++) { - modeset = &fb_helper->crtc_info[i].mode_set; - if (modeset->num_connectors == 0) { - BUG_ON(modeset->fb); - if (modeset->mode) - drm_mode_destroy(dev, modeset->mode); - modeset->mode = NULL; - } - } out: kfree(crtcs); kfree(modes); --- linux-4.8.0.orig/drivers/gpu/drm/drm_prime.c +++ linux-4.8.0/drivers/gpu/drm/drm_prime.c @@ -335,14 +335,17 @@ * using the PRIME helpers. */ struct dma_buf *drm_gem_prime_export(struct drm_device *dev, - struct drm_gem_object *obj, int flags) + struct drm_gem_object *obj, + int flags) { - DEFINE_DMA_BUF_EXPORT_INFO(exp_info); - - exp_info.ops = &drm_gem_prime_dmabuf_ops; - exp_info.size = obj->size; - exp_info.flags = flags; - exp_info.priv = obj; + struct dma_buf_export_info exp_info = { + .exp_name = KBUILD_MODNAME, /* white lie for debug */ + .owner = dev->driver->fops->owner, + .ops = &drm_gem_prime_dmabuf_ops, + .size = obj->size, + .flags = flags, + .priv = obj, + }; if (dev->driver->gem_prime_res_obj) exp_info.resv = dev->driver->gem_prime_res_obj(obj); --- linux-4.8.0.orig/drivers/gpu/drm/fsl-dcu/fsl_dcu_drm_drv.c +++ linux-4.8.0/drivers/gpu/drm/fsl-dcu/fsl_dcu_drm_drv.c @@ -330,6 +330,7 @@ const char *pix_clk_in_name; const struct of_device_id *id; int ret; + u8 div_ratio_shift = 0; fsl_dev = devm_kzalloc(dev, sizeof(*fsl_dev), GFP_KERNEL); if (!fsl_dev) @@ -382,11 +383,14 @@ pix_clk_in = fsl_dev->clk; } + if (of_property_read_bool(dev->of_node, "big-endian")) + div_ratio_shift = 24; + pix_clk_in_name = __clk_get_name(pix_clk_in); snprintf(pix_clk_name, sizeof(pix_clk_name), "%s_pix", pix_clk_in_name); fsl_dev->pix_clk = clk_register_divider(dev, pix_clk_name, pix_clk_in_name, 0, base + DCU_DIV_RATIO, - 0, 8, CLK_DIVIDER_ROUND_CLOSEST, NULL); + div_ratio_shift, 8, CLK_DIVIDER_ROUND_CLOSEST, NULL); if (IS_ERR(fsl_dev->pix_clk)) { dev_err(dev, "failed to register pix clk\n"); ret = PTR_ERR(fsl_dev->pix_clk); --- linux-4.8.0.orig/drivers/gpu/drm/gma500/psb_drv.c +++ linux-4.8.0/drivers/gpu/drm/gma500/psb_drv.c @@ -473,6 +473,9 @@ .open = drm_open, .release = drm_release, .unlocked_ioctl = psb_unlocked_ioctl, +#ifdef CONFIG_COMPAT + .compat_ioctl = drm_compat_ioctl, +#endif .mmap = drm_gem_mmap, .poll = drm_poll, .read = drm_read, --- linux-4.8.0.orig/drivers/gpu/drm/i915/Makefile +++ linux-4.8.0/drivers/gpu/drm/i915/Makefile @@ -96,6 +96,7 @@ intel_dvo.o \ intel_hdmi.o \ intel_i2c.o \ + intel_lspcon.o \ intel_lvds.o \ intel_panel.o \ intel_sdvo.o \ --- linux-4.8.0.orig/drivers/gpu/drm/i915/i915_drv.c +++ linux-4.8.0/drivers/gpu/drm/i915/i915_drv.c @@ -1490,8 +1490,6 @@ dev_priv->suspend_count++; - intel_display_set_init_power(dev_priv, false); - intel_csr_ucode_suspend(dev_priv); out: @@ -1508,6 +1506,8 @@ disable_rpm_wakeref_asserts(dev_priv); + intel_display_set_init_power(dev_priv, false); + fw_csr = !IS_BROXTON(dev_priv) && suspend_to_idle(dev_priv) && dev_priv->csr.dmc_payload; /* --- linux-4.8.0.orig/drivers/gpu/drm/i915/i915_drv.h +++ linux-4.8.0/drivers/gpu/drm/i915/i915_drv.h @@ -631,6 +631,8 @@ struct intel_crtc_state *crtc_state); void (*crtc_enable)(struct drm_crtc *crtc); void (*crtc_disable)(struct drm_crtc *crtc); + void (*update_crtcs)(struct drm_atomic_state *state, + unsigned int *crtc_vblank_mask); void (*audio_codec_enable)(struct drm_connector *connector, struct intel_encoder *encoder, const struct drm_display_mode *adjusted_mode); @@ -1965,11 +1967,11 @@ struct vlv_s0ix_state vlv_s0ix_state; enum { - I915_SKL_SAGV_UNKNOWN = 0, - I915_SKL_SAGV_DISABLED, - I915_SKL_SAGV_ENABLED, - I915_SKL_SAGV_NOT_CONTROLLED - } skl_sagv_status; + I915_SAGV_UNKNOWN = 0, + I915_SAGV_DISABLED, + I915_SAGV_ENABLED, + I915_SAGV_NOT_CONTROLLED + } sagv_status; struct { /* @@ -2280,21 +2282,19 @@ /** Record of address bit 17 of each page at last unbind. */ unsigned long *bit_17; - union { - /** for phy allocated objects */ - struct drm_dma_handle *phys_handle; - - struct i915_gem_userptr { - uintptr_t ptr; - unsigned read_only :1; - unsigned workers :4; + struct i915_gem_userptr { + uintptr_t ptr; + unsigned read_only :1; + unsigned workers :4; #define I915_GEM_USERPTR_MAX_WORKERS 15 - struct i915_mm_struct *mm; - struct i915_mmu_object *mmu_object; - struct work_struct *work; - } userptr; - }; + struct i915_mm_struct *mm; + struct i915_mmu_object *mmu_object; + struct work_struct *work; + } userptr; + + /** for phys allocated objects */ + struct drm_dma_handle *phys_handle; }; #define to_intel_bo(x) container_of(x, struct drm_i915_gem_object, base) @@ -2917,6 +2917,8 @@ #define HAS_GMCH_DISPLAY(dev) (INTEL_INFO(dev)->gen < 5 || \ IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) +#define HAS_LSPCON(dev_priv) (IS_GEN9(dev_priv)) + /* DPF == dynamic parity feature */ #define HAS_L3_DPF(dev) (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) #define NUM_L3_SLICES(dev) (IS_HSW_GT3(dev) ? 2 : HAS_L3_DPF(dev)) @@ -3739,6 +3741,9 @@ bool intel_bios_is_dsi_present(struct drm_i915_private *dev_priv, enum port *port); bool intel_bios_is_port_hpd_inverted(struct drm_i915_private *dev_priv, enum port port); +bool intel_bios_is_lspcon_present(struct drm_i915_private *dev_priv, + enum port port); + /* intel_opregion.c */ #ifdef CONFIG_ACPI --- linux-4.8.0.orig/drivers/gpu/drm/i915/i915_gem.c +++ linux-4.8.0/drivers/gpu/drm/i915/i915_gem.c @@ -2540,7 +2540,7 @@ page = shmem_read_mapping_page(mapping, i); if (IS_ERR(page)) { ret = PTR_ERR(page); - goto err_pages; + goto err_sg; } } #ifdef CONFIG_SWIOTLB @@ -2583,8 +2583,9 @@ return 0; -err_pages: +err_sg: sg_mark_end(sg); +err_pages: for_each_sgt_page(page, sgt_iter, st) put_page(page); sg_free_table(st); --- linux-4.8.0.orig/drivers/gpu/drm/i915/i915_gem_stolen.c +++ linux-4.8.0/drivers/gpu/drm/i915/i915_gem_stolen.c @@ -55,10 +55,9 @@ return -ENODEV; /* See the comment at the drm_mm_init() call for more about this check. - * WaSkipStolenMemoryFirstPage:bdw,chv,kbl (incomplete) + * WaSkipStolenMemoryFirstPage:bdw+ (incomplete) */ - if (start < 4096 && (IS_GEN8(dev_priv) || - IS_KBL_REVID(dev_priv, 0, KBL_REVID_A0))) + if (start < 4096 && INTEL_GEN(dev_priv) >= 8) start = 4096; mutex_lock(&dev_priv->mm.stolen_lock); @@ -115,17 +114,28 @@ base = bsm & INTEL_BSM_MASK; } else if (IS_I865G(dev)) { + u32 tseg_size = 0; u16 toud = 0; + u8 tmp; + + pci_bus_read_config_byte(dev->pdev->bus, PCI_DEVFN(0, 0), + I845_ESMRAMC, &tmp); + + if (tmp & TSEG_ENABLE) { + switch (tmp & I845_TSEG_SIZE_MASK) { + case I845_TSEG_SIZE_512K: + tseg_size = KB(512); + break; + case I845_TSEG_SIZE_1M: + tseg_size = MB(1); + break; + } + } - /* - * FIXME is the graphics stolen memory region - * always at TOUD? Ie. is it always the last - * one to be allocated by the BIOS? - */ pci_bus_read_config_word(dev->pdev->bus, PCI_DEVFN(0, 0), I865_TOUD, &toud); - base = toud << 16; + base = (toud << 16) + tseg_size; } else if (IS_I85X(dev)) { u32 tseg_size = 0; u32 tom; --- linux-4.8.0.orig/drivers/gpu/drm/i915/intel_bios.c +++ linux-4.8.0/drivers/gpu/drm/i915/intel_bios.c @@ -1031,6 +1031,77 @@ return mapping[val]; } +static void sanitize_ddc_pin(struct drm_i915_private *dev_priv, + enum port port) +{ + const struct ddi_vbt_port_info *info = + &dev_priv->vbt.ddi_port_info[port]; + enum port p; + + if (!info->alternate_ddc_pin) + return; + + for_each_port_masked(p, (1 << port) - 1) { + struct ddi_vbt_port_info *i = &dev_priv->vbt.ddi_port_info[p]; + + if (info->alternate_ddc_pin != i->alternate_ddc_pin) + continue; + + DRM_DEBUG_KMS("port %c trying to use the same DDC pin (0x%x) as port %c, " + "disabling port %c DVI/HDMI support\n", + port_name(p), i->alternate_ddc_pin, + port_name(port), port_name(p)); + + /* + * If we have multiple ports supposedly sharing the + * pin, then dvi/hdmi couldn't exist on the shared + * port. Otherwise they share the same ddc bin and + * system couldn't communicate with them separately. + * + * Due to parsing the ports in alphabetical order, + * a higher port will always clobber a lower one. + */ + i->supports_dvi = false; + i->supports_hdmi = false; + i->alternate_ddc_pin = 0; + } +} + +static void sanitize_aux_ch(struct drm_i915_private *dev_priv, + enum port port) +{ + const struct ddi_vbt_port_info *info = + &dev_priv->vbt.ddi_port_info[port]; + enum port p; + + if (!info->alternate_aux_channel) + return; + + for_each_port_masked(p, (1 << port) - 1) { + struct ddi_vbt_port_info *i = &dev_priv->vbt.ddi_port_info[p]; + + if (info->alternate_aux_channel != i->alternate_aux_channel) + continue; + + DRM_DEBUG_KMS("port %c trying to use the same AUX CH (0x%x) as port %c, " + "disabling port %c DP support\n", + port_name(p), i->alternate_aux_channel, + port_name(port), port_name(p)); + + /* + * If we have multiple ports supposedlt sharing the + * aux channel, then DP couldn't exist on the shared + * port. Otherwise they share the same aux channel + * and system couldn't communicate with them separately. + * + * Due to parsing the ports in alphabetical order, + * a higher port will always clobber a lower one. + */ + i->supports_dp = false; + i->alternate_aux_channel = 0; + } +} + static void parse_ddi_port(struct drm_i915_private *dev_priv, enum port port, const struct bdb_header *bdb) { @@ -1072,7 +1143,7 @@ if (!child) return; - aux_channel = child->raw[25]; + aux_channel = child->common.aux_channel; ddc_pin = child->common.ddc_pin; is_dvi = child->common.device_type & DEVICE_TYPE_TMDS_DVI_SIGNALING; @@ -1105,54 +1176,15 @@ DRM_DEBUG_KMS("Port %c is internal DP\n", port_name(port)); if (is_dvi) { - if (port == PORT_E) { - info->alternate_ddc_pin = ddc_pin; - /* if DDIE share ddc pin with other port, then - * dvi/hdmi couldn't exist on the shared port. - * Otherwise they share the same ddc bin and system - * couldn't communicate with them seperately. */ - if (ddc_pin == DDC_PIN_B) { - dev_priv->vbt.ddi_port_info[PORT_B].supports_dvi = 0; - dev_priv->vbt.ddi_port_info[PORT_B].supports_hdmi = 0; - } else if (ddc_pin == DDC_PIN_C) { - dev_priv->vbt.ddi_port_info[PORT_C].supports_dvi = 0; - dev_priv->vbt.ddi_port_info[PORT_C].supports_hdmi = 0; - } else if (ddc_pin == DDC_PIN_D) { - dev_priv->vbt.ddi_port_info[PORT_D].supports_dvi = 0; - dev_priv->vbt.ddi_port_info[PORT_D].supports_hdmi = 0; - } - } else if (ddc_pin == DDC_PIN_B && port != PORT_B) - DRM_DEBUG_KMS("Unexpected DDC pin for port B\n"); - else if (ddc_pin == DDC_PIN_C && port != PORT_C) - DRM_DEBUG_KMS("Unexpected DDC pin for port C\n"); - else if (ddc_pin == DDC_PIN_D && port != PORT_D) - DRM_DEBUG_KMS("Unexpected DDC pin for port D\n"); + info->alternate_ddc_pin = ddc_pin; + + sanitize_ddc_pin(dev_priv, port); } if (is_dp) { - if (port == PORT_E) { - info->alternate_aux_channel = aux_channel; - /* if DDIE share aux channel with other port, then - * DP couldn't exist on the shared port. Otherwise - * they share the same aux channel and system - * couldn't communicate with them seperately. */ - if (aux_channel == DP_AUX_A) - dev_priv->vbt.ddi_port_info[PORT_A].supports_dp = 0; - else if (aux_channel == DP_AUX_B) - dev_priv->vbt.ddi_port_info[PORT_B].supports_dp = 0; - else if (aux_channel == DP_AUX_C) - dev_priv->vbt.ddi_port_info[PORT_C].supports_dp = 0; - else if (aux_channel == DP_AUX_D) - dev_priv->vbt.ddi_port_info[PORT_D].supports_dp = 0; - } - else if (aux_channel == DP_AUX_A && port != PORT_A) - DRM_DEBUG_KMS("Unexpected AUX channel for port A\n"); - else if (aux_channel == DP_AUX_B && port != PORT_B) - DRM_DEBUG_KMS("Unexpected AUX channel for port B\n"); - else if (aux_channel == DP_AUX_C && port != PORT_C) - DRM_DEBUG_KMS("Unexpected AUX channel for port C\n"); - else if (aux_channel == DP_AUX_D && port != PORT_D) - DRM_DEBUG_KMS("Unexpected AUX channel for port D\n"); + info->alternate_aux_channel = aux_channel; + + sanitize_aux_ch(dev_priv, port); } if (bdb->version >= 158) { @@ -1641,7 +1673,8 @@ return false; } -bool intel_bios_is_port_dp_dual_mode(struct drm_i915_private *dev_priv, enum port port) +static bool child_dev_is_dp_dual_mode(const union child_device_config *p_child, + enum port port) { static const struct { u16 dp, hdmi; @@ -1655,22 +1688,35 @@ [PORT_D] = { DVO_PORT_DPD, DVO_PORT_HDMID, }, [PORT_E] = { DVO_PORT_DPE, DVO_PORT_HDMIE, }, }; - int i; if (port == PORT_A || port >= ARRAY_SIZE(port_mapping)) return false; - if (!dev_priv->vbt.child_dev_num) + if ((p_child->common.device_type & DEVICE_TYPE_DP_DUAL_MODE_BITS) != + (DEVICE_TYPE_DP_DUAL_MODE & DEVICE_TYPE_DP_DUAL_MODE_BITS)) return false; + if (p_child->common.dvo_port == port_mapping[port].dp) + return true; + + /* Only accept a HDMI dvo_port as DP++ if it has an AUX channel */ + if (p_child->common.dvo_port == port_mapping[port].hdmi && + p_child->common.aux_channel != 0) + return true; + + return false; +} + +bool intel_bios_is_port_dp_dual_mode(struct drm_i915_private *dev_priv, + enum port port) +{ + int i; + for (i = 0; i < dev_priv->vbt.child_dev_num; i++) { const union child_device_config *p_child = &dev_priv->vbt.child_dev[i]; - if ((p_child->common.dvo_port == port_mapping[port].dp || - p_child->common.dvo_port == port_mapping[port].hdmi) && - (p_child->common.device_type & DEVICE_TYPE_DP_DUAL_MODE_BITS) == - (DEVICE_TYPE_DP_DUAL_MODE & DEVICE_TYPE_DP_DUAL_MODE_BITS)) + if (child_dev_is_dp_dual_mode(p_child, port)) return true; } @@ -1753,6 +1799,55 @@ return true; break; default: + break; + } + } + + return false; +} + +/** + * intel_bios_is_lspcon_present - if LSPCON is attached on %port + * @dev_priv: i915 device instance + * @port: port to check + * + * Return true if LSPCON is present on this port + */ +bool +intel_bios_is_lspcon_present(struct drm_i915_private *dev_priv, + enum port port) +{ + int i; + + if (!HAS_LSPCON(dev_priv)) + return false; + + for (i = 0; i < dev_priv->vbt.child_dev_num; i++) { + if (!dev_priv->vbt.child_dev[i].common.lspcon) + continue; + + switch (dev_priv->vbt.child_dev[i].common.dvo_port) { + case DVO_PORT_DPA: + case DVO_PORT_HDMIA: + if (port == PORT_A) + return true; + break; + case DVO_PORT_DPB: + case DVO_PORT_HDMIB: + if (port == PORT_B) + return true; + break; + case DVO_PORT_DPC: + case DVO_PORT_HDMIC: + if (port == PORT_C) + return true; + break; + case DVO_PORT_DPD: + case DVO_PORT_HDMID: + if (port == PORT_D) + return true; + break; + default: break; } } --- linux-4.8.0.orig/drivers/gpu/drm/i915/intel_ddi.c +++ linux-4.8.0/drivers/gpu/drm/i915/intel_ddi.c @@ -2364,7 +2364,7 @@ struct intel_digital_port *intel_dig_port; struct intel_encoder *intel_encoder; struct drm_encoder *encoder; - bool init_hdmi, init_dp; + bool init_hdmi, init_dp, init_lspcon = false; int max_lanes; if (I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_A_4_LANES) { @@ -2396,6 +2396,19 @@ init_hdmi = (dev_priv->vbt.ddi_port_info[port].supports_dvi || dev_priv->vbt.ddi_port_info[port].supports_hdmi); init_dp = dev_priv->vbt.ddi_port_info[port].supports_dp; + + if (intel_bios_is_lspcon_present(dev_priv, port)) { + /* + * Lspcon device needs to be driven with DP connector + * with special detection sequence. So make sure DP + * is initialized before lspcon. + */ + init_dp = true; + init_lspcon = true; + init_hdmi = false; + DRM_DEBUG_KMS("VBT says port %c has lspcon\n", port_name(port)); + } + if (!init_dp && !init_hdmi) { DRM_DEBUG_KMS("VBT says port %c is not DVI/HDMI/DP compatible, respect it\n", port_name(port)); @@ -2471,6 +2484,20 @@ goto err; } + if (init_lspcon) { + if (lspcon_init(intel_dig_port)) + /* TODO: handle hdmi info frame part */ + DRM_DEBUG_KMS("LSPCON init success on port %c\n", + port_name(port)); + else + /* + * LSPCON init faied, but DP init was success, so + * lets try to drive as DP++ port. + */ + DRM_ERROR("LSPCON init failed on port %c\n", + port_name(port)); + } + return; err: --- linux-4.8.0.orig/drivers/gpu/drm/i915/intel_display.c +++ linux-4.8.0/drivers/gpu/drm/i915/intel_display.c @@ -2980,6 +2980,7 @@ struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc); struct drm_framebuffer *fb = plane_state->base.fb; struct drm_i915_gem_object *obj = intel_fb_obj(fb); + const struct skl_wm_values *wm = &dev_priv->wm.skl_results; int pipe = intel_crtc->pipe; u32 plane_ctl, stride_div, stride; u32 tile_height, plane_offset, plane_size; @@ -3031,6 +3032,9 @@ intel_crtc->adjusted_x = x_offset; intel_crtc->adjusted_y = y_offset; + if (wm->dirty_pipes & drm_crtc_mask(&intel_crtc->base)) + skl_write_plane_wm(intel_crtc, wm, 0); + I915_WRITE(PLANE_CTL(pipe, 0), plane_ctl); I915_WRITE(PLANE_OFFSET(pipe, 0), plane_offset); I915_WRITE(PLANE_SIZE(pipe, 0), plane_size); @@ -3061,7 +3065,15 @@ { struct drm_device *dev = crtc->dev; struct drm_i915_private *dev_priv = to_i915(dev); - int pipe = to_intel_crtc(crtc)->pipe; + struct intel_crtc *intel_crtc = to_intel_crtc(crtc); + int pipe = intel_crtc->pipe; + + /* + * We only populate skl_results on watermark updates, and if the + * plane's visiblity isn't actually changing neither is its watermarks. + */ + if (!to_intel_plane_state(crtc->primary->state)->visible) + skl_write_plane_wm(intel_crtc, &dev_priv->wm.skl_results, 0); I915_WRITE(PLANE_CTL(pipe, 0), 0); I915_WRITE(PLANE_SURF(pipe, 0), 0); @@ -8995,6 +9007,24 @@ if (intel_crtc_has_dp_encoder(crtc_state)) dpll |= DPLL_SDVO_HIGH_SPEED; + /* + * The high speed IO clock is only really required for + * SDVO/HDMI/DP, but we also enable it for CRT to make it + * possible to share the DPLL between CRT and HDMI. Enabling + * the clock needlessly does no real harm, except use up a + * bit of power potentially. + * + * We'll limit this to IVB with 3 pipes, since it has only two + * DPLLs and so DPLL sharing is the only way to get three pipes + * driving PCH ports at the same time. On SNB we could do this, + * and potentially avoid enabling the second DPLL, but it's not + * clear if it''s a win or loss power wise. No point in doing + * this on ILK at all since it has a fixed DPLL<->pipe mapping. + */ + if (INTEL_INFO(dev_priv)->num_pipes == 3 && + intel_crtc_has_type(crtc_state, INTEL_OUTPUT_ANALOG)) + dpll |= DPLL_SDVO_HIGH_SPEED; + /* compute bitmask from p1 value */ dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT; /* also FPA1 */ @@ -9707,6 +9737,29 @@ bxt_set_cdclk(to_i915(dev), req_cdclk); } +static int bdw_adjust_min_pipe_pixel_rate(struct intel_crtc_state *crtc_state, + int pixel_rate) +{ + struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev); + + /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */ + if (IS_BROADWELL(dev_priv) && crtc_state->ips_enabled) + pixel_rate = DIV_ROUND_UP(pixel_rate * 100, 95); + + /* BSpec says "Do not use DisplayPort with CDCLK less than + * 432 MHz, audio enabled, port width x4, and link rate + * HBR2 (5.4 GHz), or else there may be audio corruption or + * screen corruption." + */ + if (intel_crtc_has_dp_encoder(crtc_state) && + crtc_state->has_audio && + crtc_state->port_clock >= 540000 && + crtc_state->lane_count == 4) + pixel_rate = max(432000, pixel_rate); + + return pixel_rate; +} + /* compute the max rate for new configuration */ static int ilk_max_pixel_rate(struct drm_atomic_state *state) { @@ -9732,9 +9785,9 @@ pixel_rate = ilk_pipe_pixel_rate(crtc_state); - /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */ - if (IS_BROADWELL(dev_priv) && crtc_state->ips_enabled) - pixel_rate = DIV_ROUND_UP(pixel_rate * 100, 95); + if (IS_BROADWELL(dev_priv) || IS_GEN9(dev_priv)) + pixel_rate = bdw_adjust_min_pipe_pixel_rate(crtc_state, + pixel_rate); intel_state->min_pixclk[i] = pixel_rate; } @@ -10306,9 +10359,13 @@ struct drm_device *dev = crtc->dev; struct drm_i915_private *dev_priv = to_i915(dev); struct intel_crtc *intel_crtc = to_intel_crtc(crtc); + const struct skl_wm_values *wm = &dev_priv->wm.skl_results; int pipe = intel_crtc->pipe; uint32_t cntl = 0; + if (INTEL_GEN(dev_priv) >= 9 && wm->dirty_pipes & drm_crtc_mask(crtc)) + skl_write_cursor_wm(intel_crtc, wm); + if (plane_state && plane_state->visible) { cntl = MCURSOR_GAMMA_ENABLE; switch (plane_state->base.crtc_w) { @@ -11734,7 +11791,7 @@ intel_crtc->reset_counter = i915_reset_counter(&dev_priv->gpu_error); if (__i915_reset_in_progress_or_wedged(intel_crtc->reset_counter)) { ret = -EIO; - goto cleanup; + goto unlock; } atomic_inc(&intel_crtc->unpin_work_count); @@ -11820,6 +11877,7 @@ if (!IS_ERR_OR_NULL(request)) i915_add_request_no_flush(request); atomic_dec(&intel_crtc->unpin_work_count); +unlock: mutex_unlock(&dev->struct_mutex); cleanup: crtc->primary->fb = old_fb; @@ -12956,16 +13014,23 @@ hw_entry->start, hw_entry->end); } - /* cursor */ - hw_entry = &hw_ddb.plane[pipe][PLANE_CURSOR]; - sw_entry = &sw_ddb->plane[pipe][PLANE_CURSOR]; - - if (!skl_ddb_entry_equal(hw_entry, sw_entry)) { - DRM_ERROR("mismatch in DDB state pipe %c cursor " - "(expected (%u,%u), found (%u,%u))\n", - pipe_name(pipe), - sw_entry->start, sw_entry->end, - hw_entry->start, hw_entry->end); + /* + * cursor + * If the cursor plane isn't active, we may not have updated it's ddb + * allocation. In that case since the ddb allocation will be updated + * once the plane becomes visible, we can skip this check + */ + if (intel_crtc->cursor_addr) { + hw_entry = &hw_ddb.plane[pipe][PLANE_CURSOR]; + sw_entry = &sw_ddb->plane[pipe][PLANE_CURSOR]; + + if (!skl_ddb_entry_equal(hw_entry, sw_entry)) { + DRM_ERROR("mismatch in DDB state pipe %c cursor " + "(expected (%u,%u), found (%u,%u))\n", + pipe_name(pipe), + sw_entry->start, sw_entry->end, + hw_entry->start, hw_entry->end); + } } } @@ -13429,8 +13494,9 @@ DRM_DEBUG_KMS("New cdclk calculated to be atomic %u, actual %u\n", intel_state->cdclk, intel_state->dev_cdclk); - } else + } else { to_intel_atomic_state(state)->cdclk = dev_priv->atomic_cdclk_freq; + } intel_modeset_clear_plls(state); @@ -13531,8 +13597,9 @@ if (ret) return ret; - } else - intel_state->cdclk = dev_priv->cdclk_freq; + } else { + intel_state->cdclk = dev_priv->atomic_cdclk_freq; + } ret = drm_atomic_helper_check_planes(dev, state); if (ret) @@ -13671,6 +13738,111 @@ return false; } +static void intel_update_crtc(struct drm_crtc *crtc, + struct drm_atomic_state *state, + struct drm_crtc_state *old_crtc_state, + unsigned int *crtc_vblank_mask) +{ + struct drm_device *dev = crtc->dev; + struct drm_i915_private *dev_priv = to_i915(dev); + struct intel_crtc *intel_crtc = to_intel_crtc(crtc); + struct intel_crtc_state *pipe_config = to_intel_crtc_state(crtc->state); + bool modeset = needs_modeset(crtc->state); + + if (modeset) { + update_scanline_offset(intel_crtc); + dev_priv->display.crtc_enable(crtc); + } else { + intel_pre_plane_update(to_intel_crtc_state(old_crtc_state)); + } + + if (drm_atomic_get_existing_plane_state(state, crtc->primary)) { + intel_fbc_enable( + intel_crtc, pipe_config, + to_intel_plane_state(crtc->primary->state)); + } + + drm_atomic_helper_commit_planes_on_crtc(old_crtc_state); + + if (needs_vblank_wait(pipe_config)) + *crtc_vblank_mask |= drm_crtc_mask(crtc); +} + +static void intel_update_crtcs(struct drm_atomic_state *state, + unsigned int *crtc_vblank_mask) +{ + struct drm_crtc *crtc; + struct drm_crtc_state *old_crtc_state; + int i; + + for_each_crtc_in_state(state, crtc, old_crtc_state, i) { + if (!crtc->state->active) + continue; + + intel_update_crtc(crtc, state, old_crtc_state, + crtc_vblank_mask); + } +} + +static void skl_update_crtcs(struct drm_atomic_state *state, + unsigned int *crtc_vblank_mask) +{ + struct drm_device *dev = state->dev; + struct drm_i915_private *dev_priv = to_i915(dev); + struct intel_atomic_state *intel_state = to_intel_atomic_state(state); + struct drm_crtc *crtc; + struct drm_crtc_state *old_crtc_state; + struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb; + struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb; + unsigned int updated = 0; + bool progress; + enum pipe pipe; + + /* + * Whenever the number of active pipes changes, we need to make sure we + * update the pipes in the right order so that their ddb allocations + * never overlap with eachother inbetween CRTC updates. Otherwise we'll + * cause pipe underruns and other bad stuff. + */ + do { + int i; + progress = false; + + for_each_crtc_in_state(state, crtc, old_crtc_state, i) { + bool vbl_wait = false; + unsigned int cmask = drm_crtc_mask(crtc); + pipe = to_intel_crtc(crtc)->pipe; + + if (updated & cmask || !crtc->state->active) + continue; + if (skl_ddb_allocation_overlaps(state, cur_ddb, new_ddb, + pipe)) + continue; + + updated |= cmask; + + /* + * If this is an already active pipe, it's DDB changed, + * and this isn't the last pipe that needs updating + * then we need to wait for a vblank to pass for the + * new ddb allocation to take effect. + */ + if (!skl_ddb_allocation_equals(cur_ddb, new_ddb, pipe) && + !crtc->state->active_changed && + intel_state->wm_results.dirty_pipes != updated) + vbl_wait = true; + + intel_update_crtc(crtc, state, old_crtc_state, + crtc_vblank_mask); + + if (vbl_wait) + intel_wait_for_vblank(dev, pipe); + + progress = true; + } + } while (progress); +} + static void intel_atomic_commit_tail(struct drm_atomic_state *state) { struct drm_device *dev = state->dev; @@ -13688,7 +13860,7 @@ for_each_plane_in_state(state, plane, plane_state, i) { struct intel_plane_state *intel_plane_state = - to_intel_plane_state(plane_state); + to_intel_plane_state(plane->state); if (!intel_plane_state->wait_req) continue; @@ -13763,23 +13935,15 @@ * SKL workaround: bspec recommends we disable the SAGV when we * have more then one pipe enabled */ - if (IS_SKYLAKE(dev_priv) && !skl_can_enable_sagv(state)) - skl_disable_sagv(dev_priv); + if (!intel_can_enable_sagv(state)) + intel_disable_sagv(dev_priv); intel_modeset_verify_disabled(dev); } - /* Now enable the clocks, plane, pipe, and connectors that we set up. */ + /* Complete the events for pipes that have now been disabled */ for_each_crtc_in_state(state, crtc, old_crtc_state, i) { - struct intel_crtc *intel_crtc = to_intel_crtc(crtc); bool modeset = needs_modeset(crtc->state); - struct intel_crtc_state *pipe_config = - to_intel_crtc_state(crtc->state); - - if (modeset && crtc->state->active) { - update_scanline_offset(to_intel_crtc(crtc)); - dev_priv->display.crtc_enable(crtc); - } /* Complete events for now disable pipes here. */ if (modeset && !crtc->state->active && crtc->state->event) { @@ -13789,21 +13953,11 @@ crtc->state->event = NULL; } - - if (!modeset) - intel_pre_plane_update(to_intel_crtc_state(old_crtc_state)); - - if (crtc->state->active && - drm_atomic_get_existing_plane_state(state, crtc->primary)) - intel_fbc_enable(intel_crtc, pipe_config, to_intel_plane_state(crtc->primary->state)); - - if (crtc->state->active) - drm_atomic_helper_commit_planes_on_crtc(old_crtc_state); - - if (pipe_config->base.active && needs_vblank_wait(pipe_config)) - crtc_vblank_mask |= 1 << i; } + /* Now enable the clocks, plane, pipe, and connectors that we set up. */ + dev_priv->display.update_crtcs(state, &crtc_vblank_mask); + /* FIXME: We should call drm_atomic_helper_commit_hw_done() here * already, but still need the state for the delayed optimization. To * fix this: @@ -13839,9 +13993,8 @@ intel_modeset_verify_crtc(crtc, old_crtc_state, crtc->state); } - if (IS_SKYLAKE(dev_priv) && intel_state->modeset && - skl_can_enable_sagv(state)) - skl_enable_sagv(dev_priv); + if (intel_state->modeset && intel_can_enable_sagv(state)) + intel_enable_sagv(dev_priv); drm_atomic_helper_commit_hw_done(state); @@ -14221,10 +14374,12 @@ struct drm_crtc_state *old_crtc_state) { struct drm_device *dev = crtc->dev; + struct drm_i915_private *dev_priv = to_i915(dev); struct intel_crtc *intel_crtc = to_intel_crtc(crtc); struct intel_crtc_state *old_intel_state = to_intel_crtc_state(old_crtc_state); bool modeset = needs_modeset(crtc->state); + enum pipe pipe = intel_crtc->pipe; /* Perform vblank evasion around commit operation */ intel_pipe_update_start(intel_crtc); @@ -14239,8 +14394,12 @@ if (to_intel_crtc_state(crtc->state)->update_pipe) intel_update_pipe_config(intel_crtc, old_intel_state); - else if (INTEL_INFO(dev)->gen >= 9) + else if (INTEL_GEN(dev_priv) >= 9) { skl_detach_scalers(intel_crtc); + + I915_WRITE(PIPE_WM_LINETIME(pipe), + dev_priv->wm.skl_hw.wm_linetime[pipe]); + } } static void intel_finish_crtc_commit(struct drm_crtc *crtc, @@ -15347,6 +15506,11 @@ skl_modeset_calc_cdclk; } + if (dev_priv->info.gen >= 9) + dev_priv->display.update_crtcs = skl_update_crtcs; + else + dev_priv->display.update_crtcs = intel_update_crtcs; + switch (INTEL_INFO(dev_priv)->gen) { case 2: dev_priv->display.queue_flip = intel_gen2_queue_flip; @@ -15740,6 +15904,7 @@ intel_update_czclk(dev_priv); intel_update_cdclk(dev); + dev_priv->atomic_cdclk_freq = dev_priv->cdclk_freq; intel_shared_dpll_init(dev); --- linux-4.8.0.orig/drivers/gpu/drm/i915/intel_dp.c +++ linux-4.8.0/drivers/gpu/drm/i915/intel_dp.c @@ -1090,6 +1090,44 @@ return ret; } +static enum port intel_aux_port(struct drm_i915_private *dev_priv, + enum port port) +{ + const struct ddi_vbt_port_info *info = + &dev_priv->vbt.ddi_port_info[port]; + enum port aux_port; + + if (!info->alternate_aux_channel) { + DRM_DEBUG_KMS("using AUX %c for port %c (platform default)\n", + port_name(port), port_name(port)); + return port; + } + + switch (info->alternate_aux_channel) { + case DP_AUX_A: + aux_port = PORT_A; + break; + case DP_AUX_B: + aux_port = PORT_B; + break; + case DP_AUX_C: + aux_port = PORT_C; + break; + case DP_AUX_D: + aux_port = PORT_D; + break; + default: + MISSING_CASE(info->alternate_aux_channel); + aux_port = PORT_A; + break; + } + + DRM_DEBUG_KMS("using AUX %c for port %c (VBT)\n", + port_name(aux_port), port_name(port)); + + return aux_port; +} + static i915_reg_t g4x_aux_ctl_reg(struct drm_i915_private *dev_priv, enum port port) { @@ -1150,36 +1188,9 @@ } } -/* - * On SKL we don't have Aux for port E so we rely - * on VBT to set a proper alternate aux channel. - */ -static enum port skl_porte_aux_port(struct drm_i915_private *dev_priv) -{ - const struct ddi_vbt_port_info *info = - &dev_priv->vbt.ddi_port_info[PORT_E]; - - switch (info->alternate_aux_channel) { - case DP_AUX_A: - return PORT_A; - case DP_AUX_B: - return PORT_B; - case DP_AUX_C: - return PORT_C; - case DP_AUX_D: - return PORT_D; - default: - MISSING_CASE(info->alternate_aux_channel); - return PORT_A; - } -} - static i915_reg_t skl_aux_ctl_reg(struct drm_i915_private *dev_priv, enum port port) { - if (port == PORT_E) - port = skl_porte_aux_port(dev_priv); - switch (port) { case PORT_A: case PORT_B: @@ -1195,9 +1206,6 @@ static i915_reg_t skl_aux_data_reg(struct drm_i915_private *dev_priv, enum port port, int index) { - if (port == PORT_E) - port = skl_porte_aux_port(dev_priv); - switch (port) { case PORT_A: case PORT_B: @@ -1235,7 +1243,8 @@ static void intel_aux_reg_init(struct intel_dp *intel_dp) { struct drm_i915_private *dev_priv = to_i915(intel_dp_to_dev(intel_dp)); - enum port port = dp_to_dig_port(intel_dp)->port; + enum port port = intel_aux_port(dev_priv, + dp_to_dig_port(intel_dp)->port); int i; intel_dp->aux_ch_ctl_reg = intel_aux_ctl_reg(dev_priv, port); @@ -4148,7 +4157,7 @@ * * Return %true if @port is connected, %false otherwise. */ -bool intel_digital_port_connected(struct drm_i915_private *dev_priv, +static bool intel_digital_port_connected(struct drm_i915_private *dev_priv, struct intel_digital_port *port) { if (HAS_PCH_IBX(dev_priv)) @@ -4207,7 +4216,7 @@ intel_dp->has_audio = false; } -static void +static enum drm_connector_status intel_dp_long_pulse(struct intel_connector *intel_connector) { struct drm_connector *connector = &intel_connector->base; @@ -4232,7 +4241,7 @@ else status = connector_status_disconnected; - if (status != connector_status_connected) { + if (status == connector_status_disconnected) { intel_dp->compliance_test_active = 0; intel_dp->compliance_test_type = 0; intel_dp->compliance_test_data = 0; @@ -4284,8 +4293,8 @@ intel_dp->aux.i2c_defer_count = 0; intel_dp_set_edid(intel_dp); - - status = connector_status_connected; + if (is_edp(intel_dp) || intel_connector->detect_edid) + status = connector_status_connected; intel_dp->detect_done = true; /* Try to read the source of the interrupt */ @@ -4303,43 +4312,29 @@ } out: - if ((status != connector_status_connected) && - (intel_dp->is_mst == false)) + if (status != connector_status_connected && !intel_dp->is_mst) intel_dp_unset_edid(intel_dp); intel_display_power_put(to_i915(dev), power_domain); - return; + return status; } static enum drm_connector_status intel_dp_detect(struct drm_connector *connector, bool force) { struct intel_dp *intel_dp = intel_attached_dp(connector); - struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp); - struct intel_encoder *intel_encoder = &intel_dig_port->base; - struct intel_connector *intel_connector = to_intel_connector(connector); + enum drm_connector_status status = connector->status; DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n", connector->base.id, connector->name); - if (intel_dp->is_mst) { - /* MST devices are disconnected from a monitor POV */ - intel_dp_unset_edid(intel_dp); - if (intel_encoder->type != INTEL_OUTPUT_EDP) - intel_encoder->type = INTEL_OUTPUT_DP; - return connector_status_disconnected; - } - /* If full detect is not performed yet, do a full detect */ if (!intel_dp->detect_done) - intel_dp_long_pulse(intel_dp->attached_connector); + status = intel_dp_long_pulse(intel_dp->attached_connector); intel_dp->detect_done = false; - if (is_edp(intel_dp) || intel_connector->detect_edid) - return connector_status_connected; - else - return connector_status_disconnected; + return status; } static void @@ -4620,11 +4615,16 @@ void intel_dp_encoder_reset(struct drm_encoder *encoder) { struct drm_i915_private *dev_priv = to_i915(encoder->dev); - struct intel_dp *intel_dp = enc_to_intel_dp(encoder); + struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder); + struct intel_lspcon *lspcon = &intel_dig_port->lspcon; + struct intel_dp *intel_dp = &intel_dig_port->dp; if (!HAS_DDI(dev_priv)) intel_dp->DP = I915_READ(intel_dp->output_reg); + if (IS_GEN9(dev_priv) && lspcon->active) + lspcon_resume(lspcon); + if (to_intel_encoder(encoder)->type != INTEL_OUTPUT_EDP) return; @@ -4696,36 +4696,34 @@ port_name(intel_dig_port->port), long_hpd ? "long" : "short"); + if (long_hpd) { + intel_dp->detect_done = false; + return IRQ_NONE; + } + power_domain = intel_display_port_aux_power_domain(intel_encoder); intel_display_power_get(dev_priv, power_domain); - if (long_hpd) { - intel_dp_long_pulse(intel_dp->attached_connector); - if (intel_dp->is_mst) - ret = IRQ_HANDLED; - goto put_power; - - } else { - if (intel_dp->is_mst) { - if (intel_dp_check_mst_status(intel_dp) == -EINVAL) { - /* - * If we were in MST mode, and device is not - * there, get out of MST mode - */ - DRM_DEBUG_KMS("MST device may have disappeared %d vs %d\n", - intel_dp->is_mst, intel_dp->mst_mgr.mst_state); - intel_dp->is_mst = false; - drm_dp_mst_topology_mgr_set_mst(&intel_dp->mst_mgr, - intel_dp->is_mst); - goto put_power; - } + if (intel_dp->is_mst) { + if (intel_dp_check_mst_status(intel_dp) == -EINVAL) { + /* + * If we were in MST mode, and device is not + * there, get out of MST mode + */ + DRM_DEBUG_KMS("MST device may have disappeared %d vs %d\n", + intel_dp->is_mst, intel_dp->mst_mgr.mst_state); + intel_dp->is_mst = false; + drm_dp_mst_topology_mgr_set_mst(&intel_dp->mst_mgr, + intel_dp->is_mst); + intel_dp->detect_done = false; + goto put_power; } + } - if (!intel_dp->is_mst) { - if (!intel_dp_short_pulse(intel_dp)) { - intel_dp_long_pulse(intel_dp->attached_connector); - goto put_power; - } + if (!intel_dp->is_mst) { + if (!intel_dp_short_pulse(intel_dp)) { + intel_dp->detect_done = false; + goto put_power; } } --- linux-4.8.0.orig/drivers/gpu/drm/i915/intel_drv.h +++ linux-4.8.0/drivers/gpu/drm/i915/intel_drv.h @@ -236,6 +236,7 @@ bool enabled; bool combination_mode; /* gen 2/4 only */ bool active_low_pwm; + bool alternate_pwm_increment; /* lpt+ */ /* PWM chip */ bool util_pin_active_low; /* bxt+ */ @@ -920,12 +921,19 @@ bool compliance_test_active; }; +struct intel_lspcon { + bool active; + enum drm_lspcon_mode mode; + struct drm_dp_aux *aux; +}; + struct intel_digital_port { struct intel_encoder base; enum port port; u32 saved_port_bits; struct intel_dp dp; struct intel_hdmi hdmi; + struct intel_lspcon lspcon; enum irqreturn (*hpd_pulse)(struct intel_digital_port *, bool); bool release_cl2_override; uint8_t max_lanes; @@ -1387,8 +1395,6 @@ void intel_edp_drrs_invalidate(struct drm_device *dev, unsigned frontbuffer_bits); void intel_edp_drrs_flush(struct drm_device *dev, unsigned frontbuffer_bits); -bool intel_digital_port_connected(struct drm_i915_private *dev_priv, - struct intel_digital_port *port); void intel_dp_program_link_training_pattern(struct intel_dp *intel_dp, @@ -1716,9 +1722,21 @@ void skl_wm_get_hw_state(struct drm_device *dev); void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv, struct skl_ddb_allocation *ddb /* out */); -bool skl_can_enable_sagv(struct drm_atomic_state *state); -int skl_enable_sagv(struct drm_i915_private *dev_priv); -int skl_disable_sagv(struct drm_i915_private *dev_priv); +bool intel_can_enable_sagv(struct drm_atomic_state *state); +int intel_enable_sagv(struct drm_i915_private *dev_priv); +int intel_disable_sagv(struct drm_i915_private *dev_priv); +bool skl_ddb_allocation_equals(const struct skl_ddb_allocation *old, + const struct skl_ddb_allocation *new, + enum pipe pipe); +bool skl_ddb_allocation_overlaps(struct drm_atomic_state *state, + const struct skl_ddb_allocation *old, + const struct skl_ddb_allocation *new, + enum pipe pipe); +void skl_write_cursor_wm(struct intel_crtc *intel_crtc, + const struct skl_wm_values *wm); +void skl_write_plane_wm(struct intel_crtc *intel_crtc, + const struct skl_wm_values *wm, + int plane); uint32_t ilk_pipe_pixel_rate(const struct intel_crtc_state *pipe_config); bool ilk_disable_lp_wm(struct drm_device *dev); int sanitize_rc6_option(struct drm_i915_private *dev_priv, int enable_rc6); @@ -1797,4 +1815,7 @@ void intel_color_set_csc(struct drm_crtc_state *crtc_state); void intel_color_load_luts(struct drm_crtc_state *crtc_state); +/* intel_lspcon.c */ +bool lspcon_init(struct intel_digital_port *intel_dig_port); +void lspcon_resume(struct intel_lspcon *lspcon); #endif /* __INTEL_DRV_H__ */ --- linux-4.8.0.orig/drivers/gpu/drm/i915/intel_dsi_panel_vbt.c +++ linux-4.8.0/drivers/gpu/drm/i915/intel_dsi_panel_vbt.c @@ -296,7 +296,8 @@ mutex_lock(&dev_priv->sb_lock); vlv_iosf_sb_write(dev_priv, port, cfg1, 0); vlv_iosf_sb_write(dev_priv, port, cfg0, - CHV_GPIO_GPIOCFG_GPO | CHV_GPIO_GPIOTXSTATE(value)); + CHV_GPIO_GPIOEN | CHV_GPIO_GPIOCFG_GPO | + CHV_GPIO_GPIOTXSTATE(value)); mutex_unlock(&dev_priv->sb_lock); } --- linux-4.8.0.orig/drivers/gpu/drm/i915/intel_fbc.c +++ linux-4.8.0/drivers/gpu/drm/i915/intel_fbc.c @@ -104,8 +104,10 @@ int lines; intel_fbc_get_plane_source_size(cache, NULL, &lines); - if (INTEL_INFO(dev_priv)->gen >= 7) + if (INTEL_GEN(dev_priv) == 7) lines = min(lines, 2048); + else if (INTEL_GEN(dev_priv) >= 8) + lines = min(lines, 2560); /* Hardware needs the full buffer stride, not just the active area. */ return lines * cache->fb.stride; --- linux-4.8.0.orig/drivers/gpu/drm/i915/intel_guc_loader.c +++ linux-4.8.0/drivers/gpu/drm/i915/intel_guc_loader.c @@ -63,10 +63,8 @@ MODULE_FIRMWARE(I915_SKL_GUC_UCODE); #define I915_BXT_GUC_UCODE "i915/bxt_guc_ver8_7.bin" -MODULE_FIRMWARE(I915_BXT_GUC_UCODE); #define I915_KBL_GUC_UCODE "i915/kbl_guc_ver9_14.bin" -MODULE_FIRMWARE(I915_KBL_GUC_UCODE); /* User-friendly representation of an enum */ const char *intel_guc_fw_status_repr(enum intel_guc_fw_status status) --- linux-4.8.0.orig/drivers/gpu/drm/i915/intel_hdmi.c +++ linux-4.8.0/drivers/gpu/drm/i915/intel_hdmi.c @@ -1422,24 +1422,22 @@ } static bool -intel_hdmi_set_edid(struct drm_connector *connector, bool force) +intel_hdmi_set_edid(struct drm_connector *connector) { struct drm_i915_private *dev_priv = to_i915(connector->dev); struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector); - struct edid *edid = NULL; + struct edid *edid; bool connected = false; - if (force) { - intel_display_power_get(dev_priv, POWER_DOMAIN_GMBUS); + intel_display_power_get(dev_priv, POWER_DOMAIN_GMBUS); - edid = drm_get_edid(connector, - intel_gmbus_get_adapter(dev_priv, - intel_hdmi->ddc_bus)); + edid = drm_get_edid(connector, + intel_gmbus_get_adapter(dev_priv, + intel_hdmi->ddc_bus)); - intel_hdmi_dp_dual_mode_detect(connector, edid != NULL); + intel_hdmi_dp_dual_mode_detect(connector, edid != NULL); - intel_display_power_put(dev_priv, POWER_DOMAIN_GMBUS); - } + intel_display_power_put(dev_priv, POWER_DOMAIN_GMBUS); to_intel_connector(connector)->detect_edid = edid; if (edid && edid->input & DRM_EDID_INPUT_DIGITAL) { @@ -1465,37 +1463,16 @@ intel_hdmi_detect(struct drm_connector *connector, bool force) { enum drm_connector_status status; - struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector); struct drm_i915_private *dev_priv = to_i915(connector->dev); - bool live_status = false; - unsigned int try; DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n", connector->base.id, connector->name); intel_display_power_get(dev_priv, POWER_DOMAIN_GMBUS); - for (try = 0; !live_status && try < 9; try++) { - if (try) - msleep(10); - live_status = intel_digital_port_connected(dev_priv, - hdmi_to_dig_port(intel_hdmi)); - } - - if (!live_status) { - DRM_DEBUG_KMS("HDMI live status down\n"); - /* - * Live status register is not reliable on all intel platforms. - * So consider live_status only for certain platforms, for - * others, read EDID to determine presence of sink. - */ - if (INTEL_INFO(dev_priv)->gen < 7 || IS_IVYBRIDGE(dev_priv)) - live_status = true; - } - intel_hdmi_unset_edid(connector); - if (intel_hdmi_set_edid(connector, live_status)) { + if (intel_hdmi_set_edid(connector)) { struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector); hdmi_to_dig_port(intel_hdmi)->base.type = INTEL_OUTPUT_HDMI; @@ -1521,7 +1498,7 @@ if (connector->status != connector_status_connected) return; - intel_hdmi_set_edid(connector, true); + intel_hdmi_set_edid(connector); hdmi_to_dig_port(intel_hdmi)->base.type = INTEL_OUTPUT_HDMI; } @@ -1782,6 +1759,50 @@ intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_NONE; } +static u8 intel_hdmi_ddc_pin(struct drm_i915_private *dev_priv, + enum port port) +{ + const struct ddi_vbt_port_info *info = + &dev_priv->vbt.ddi_port_info[port]; + u8 ddc_pin; + + if (info->alternate_ddc_pin) { + DRM_DEBUG_KMS("Using DDC pin 0x%x for port %c (VBT)\n", + info->alternate_ddc_pin, port_name(port)); + return info->alternate_ddc_pin; + } + + switch (port) { + case PORT_B: + if (IS_BROXTON(dev_priv)) + ddc_pin = GMBUS_PIN_1_BXT; + else + ddc_pin = GMBUS_PIN_DPB; + break; + case PORT_C: + if (IS_BROXTON(dev_priv)) + ddc_pin = GMBUS_PIN_2_BXT; + else + ddc_pin = GMBUS_PIN_DPC; + break; + case PORT_D: + if (IS_CHERRYVIEW(dev_priv)) + ddc_pin = GMBUS_PIN_DPD_CHV; + else + ddc_pin = GMBUS_PIN_DPD; + break; + default: + MISSING_CASE(port); + ddc_pin = GMBUS_PIN_DPB; + break; + } + + DRM_DEBUG_KMS("Using DDC pin 0x%x for port %c (platform default)\n", + ddc_pin, port_name(port)); + + return ddc_pin; +} + void intel_hdmi_init_connector(struct intel_digital_port *intel_dig_port, struct intel_connector *intel_connector) { @@ -1791,7 +1812,6 @@ struct drm_device *dev = intel_encoder->base.dev; struct drm_i915_private *dev_priv = to_i915(dev); enum port port = intel_dig_port->port; - uint8_t alternate_ddc_pin; DRM_DEBUG_KMS("Adding HDMI connector on port %c\n", port_name(port)); @@ -1809,12 +1829,10 @@ connector->doublescan_allowed = 0; connector->stereo_allowed = 1; + intel_hdmi->ddc_bus = intel_hdmi_ddc_pin(dev_priv, port); + switch (port) { case PORT_B: - if (IS_BROXTON(dev_priv)) - intel_hdmi->ddc_bus = GMBUS_PIN_1_BXT; - else - intel_hdmi->ddc_bus = GMBUS_PIN_DPB; /* * On BXT A0/A1, sw needs to activate DDIA HPD logic and * interrupts to check the external panel connection. @@ -1825,46 +1843,17 @@ intel_encoder->hpd_pin = HPD_PORT_B; break; case PORT_C: - if (IS_BROXTON(dev_priv)) - intel_hdmi->ddc_bus = GMBUS_PIN_2_BXT; - else - intel_hdmi->ddc_bus = GMBUS_PIN_DPC; intel_encoder->hpd_pin = HPD_PORT_C; break; case PORT_D: - if (WARN_ON(IS_BROXTON(dev_priv))) - intel_hdmi->ddc_bus = GMBUS_PIN_DISABLED; - else if (IS_CHERRYVIEW(dev_priv)) - intel_hdmi->ddc_bus = GMBUS_PIN_DPD_CHV; - else - intel_hdmi->ddc_bus = GMBUS_PIN_DPD; intel_encoder->hpd_pin = HPD_PORT_D; break; case PORT_E: - /* On SKL PORT E doesn't have seperate GMBUS pin - * We rely on VBT to set a proper alternate GMBUS pin. */ - alternate_ddc_pin = - dev_priv->vbt.ddi_port_info[PORT_E].alternate_ddc_pin; - switch (alternate_ddc_pin) { - case DDC_PIN_B: - intel_hdmi->ddc_bus = GMBUS_PIN_DPB; - break; - case DDC_PIN_C: - intel_hdmi->ddc_bus = GMBUS_PIN_DPC; - break; - case DDC_PIN_D: - intel_hdmi->ddc_bus = GMBUS_PIN_DPD; - break; - default: - MISSING_CASE(alternate_ddc_pin); - } intel_encoder->hpd_pin = HPD_PORT_E; break; - case PORT_A: - intel_encoder->hpd_pin = HPD_PORT_A; - /* Internal port only for eDP. */ default: - BUG(); + MISSING_CASE(port); + return; } if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) { --- linux-4.8.0.orig/drivers/gpu/drm/i915/intel_lspcon.c +++ linux-4.8.0/drivers/gpu/drm/i915/intel_lspcon.c @@ -0,0 +1,136 @@ +/* + * Copyright © 2016 Intel Corporation + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice (including the next + * paragraph) shall be included in all copies or substantial portions of the + * Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + * + * + */ +#include +#include +#include +#include "intel_drv.h" + +enum drm_lspcon_mode lspcon_get_current_mode(struct intel_lspcon *lspcon) +{ + enum drm_lspcon_mode current_mode = DRM_LSPCON_MODE_INVALID; + struct i2c_adapter *adapter = &lspcon->aux->ddc; + + if (drm_lspcon_get_mode(adapter, ¤t_mode)) + DRM_ERROR("Error reading LSPCON mode\n"); + else + DRM_DEBUG_KMS("Current LSPCON mode %s\n", + current_mode == DRM_LSPCON_MODE_PCON ? "PCON" : "LS"); + return current_mode; +} + +static int lspcon_change_mode(struct intel_lspcon *lspcon, + enum drm_lspcon_mode mode, bool force) +{ + int err; + enum drm_lspcon_mode current_mode; + struct i2c_adapter *adapter = &lspcon->aux->ddc; + + err = drm_lspcon_get_mode(adapter, ¤t_mode); + if (err) { + DRM_ERROR("Error reading LSPCON mode\n"); + return err; + } + + if (current_mode == mode) { + DRM_DEBUG_KMS("Current mode = desired LSPCON mode\n"); + return 0; + } + + err = drm_lspcon_set_mode(adapter, mode); + if (err < 0) { + DRM_ERROR("LSPCON mode change failed\n"); + return err; + } + + lspcon->mode = mode; + DRM_DEBUG_KMS("LSPCON mode changed done\n"); + return 0; +} + +static bool lspcon_probe(struct intel_lspcon *lspcon) +{ + enum drm_dp_dual_mode_type adaptor_type; + struct i2c_adapter *adapter = &lspcon->aux->ddc; + + /* Lets probe the adaptor and check its type */ + adaptor_type = drm_dp_dual_mode_detect(adapter); + if (adaptor_type != DRM_DP_DUAL_MODE_LSPCON) { + DRM_DEBUG_KMS("No LSPCON detected, found %s\n", + drm_dp_get_dual_mode_type_name(adaptor_type)); + return false; + } + + /* Yay ... got a LSPCON device */ + DRM_DEBUG_KMS("LSPCON detected\n"); + lspcon->mode = lspcon_get_current_mode(lspcon); + lspcon->active = true; + return true; +} + +void lspcon_resume(struct intel_lspcon *lspcon) +{ + if (lspcon_change_mode(lspcon, DRM_LSPCON_MODE_PCON, true)) + DRM_ERROR("LSPCON resume failed\n"); + else + DRM_DEBUG_KMS("LSPCON resume success\n"); +} + +bool lspcon_init(struct intel_digital_port *intel_dig_port) +{ + struct intel_dp *dp = &intel_dig_port->dp; + struct intel_lspcon *lspcon = &intel_dig_port->lspcon; + struct drm_device *dev = intel_dig_port->base.base.dev; + struct drm_i915_private *dev_priv = to_i915(dev); + + if (!IS_GEN9(dev_priv)) { + DRM_ERROR("LSPCON is supported on GEN9 only\n"); + return false; + } + + lspcon->active = false; + lspcon->mode = DRM_LSPCON_MODE_INVALID; + lspcon->aux = &dp->aux; + + if (!lspcon_probe(lspcon)) { + DRM_ERROR("Failed to probe lspcon\n"); + return false; + } + + /* + * In the SW state machine, lets Put LSPCON in PCON mode only. + * In this way, it will work with both HDMI 1.4 sinks as well as HDMI + * 2.0 sinks. + */ + if (lspcon->active && lspcon->mode != DRM_LSPCON_MODE_PCON) { + if (lspcon_change_mode(lspcon, DRM_LSPCON_MODE_PCON, + true) < 0) { + DRM_ERROR("LSPCON mode change to PCON failed\n"); + return false; + } + } + + DRM_DEBUG_KMS("Success: LSPCON init\n"); + return true; +} --- linux-4.8.0.orig/drivers/gpu/drm/i915/intel_panel.c +++ linux-4.8.0/drivers/gpu/drm/i915/intel_panel.c @@ -841,7 +841,7 @@ { struct drm_i915_private *dev_priv = to_i915(connector->base.dev); struct intel_panel *panel = &connector->panel; - u32 pch_ctl1, pch_ctl2; + u32 pch_ctl1, pch_ctl2, schicken; pch_ctl1 = I915_READ(BLC_PWM_PCH_CTL1); if (pch_ctl1 & BLM_PCH_PWM_ENABLE) { @@ -850,6 +850,22 @@ I915_WRITE(BLC_PWM_PCH_CTL1, pch_ctl1); } + if (HAS_PCH_LPT(dev_priv)) { + schicken = I915_READ(SOUTH_CHICKEN2); + if (panel->backlight.alternate_pwm_increment) + schicken |= LPT_PWM_GRANULARITY; + else + schicken &= ~LPT_PWM_GRANULARITY; + I915_WRITE(SOUTH_CHICKEN2, schicken); + } else { + schicken = I915_READ(SOUTH_CHICKEN1); + if (panel->backlight.alternate_pwm_increment) + schicken |= SPT_PWM_GRANULARITY; + else + schicken &= ~SPT_PWM_GRANULARITY; + I915_WRITE(SOUTH_CHICKEN1, schicken); + } + pch_ctl2 = panel->backlight.max << 16; I915_WRITE(BLC_PWM_PCH_CTL2, pch_ctl2); @@ -1242,10 +1258,10 @@ */ static u32 spt_hz_to_pwm(struct intel_connector *connector, u32 pwm_freq_hz) { - struct drm_i915_private *dev_priv = to_i915(connector->base.dev); + struct intel_panel *panel = &connector->panel; u32 mul; - if (I915_READ(SOUTH_CHICKEN1) & SPT_PWM_GRANULARITY) + if (panel->backlight.alternate_pwm_increment) mul = 128; else mul = 16; @@ -1261,9 +1277,10 @@ static u32 lpt_hz_to_pwm(struct intel_connector *connector, u32 pwm_freq_hz) { struct drm_i915_private *dev_priv = to_i915(connector->base.dev); + struct intel_panel *panel = &connector->panel; u32 mul, clock; - if (I915_READ(SOUTH_CHICKEN2) & LPT_PWM_GRANULARITY) + if (panel->backlight.alternate_pwm_increment) mul = 16; else mul = 128; @@ -1414,6 +1431,13 @@ struct drm_i915_private *dev_priv = to_i915(connector->base.dev); struct intel_panel *panel = &connector->panel; u32 pch_ctl1, pch_ctl2, val; + bool alt; + + if (HAS_PCH_LPT(dev_priv)) + alt = I915_READ(SOUTH_CHICKEN2) & LPT_PWM_GRANULARITY; + else + alt = I915_READ(SOUTH_CHICKEN1) & SPT_PWM_GRANULARITY; + panel->backlight.alternate_pwm_increment = alt; pch_ctl1 = I915_READ(BLC_PWM_PCH_CTL1); panel->backlight.active_low_pwm = pch_ctl1 & BLM_PCH_POLARITY; --- linux-4.8.0.orig/drivers/gpu/drm/i915/intel_pm.c +++ linux-4.8.0/drivers/gpu/drm/i915/intel_pm.c @@ -2119,32 +2119,34 @@ GEN9_MEM_LATENCY_LEVEL_MASK; /* + * If a level n (n > 1) has a 0us latency, all levels m (m >= n) + * need to be disabled. We make sure to sanitize the values out + * of the punit to satisfy this requirement. + */ + for (level = 1; level <= max_level; level++) { + if (wm[level] == 0) { + for (i = level + 1; i <= max_level; i++) + wm[i] = 0; + break; + } + } + + /* * WaWmMemoryReadLatency:skl * * punit doesn't take into account the read latency so we need - * to add 2us to the various latency levels we retrieve from - * the punit. - * - W0 is a bit special in that it's the only level that - * can't be disabled if we want to have display working, so - * we always add 2us there. - * - For levels >=1, punit returns 0us latency when they are - * disabled, so we respect that and don't add 2us then - * - * Additionally, if a level n (n > 1) has a 0us latency, all - * levels m (m >= n) need to be disabled. We make sure to - * sanitize the values out of the punit to satisfy this - * requirement. + * to add 2us to the various latency levels we retrieve from the + * punit when level 0 response data us 0us. */ - wm[0] += 2; - for (level = 1; level <= max_level; level++) - if (wm[level] != 0) + if (wm[0] == 0) { + wm[0] += 2; + for (level = 1; level <= max_level; level++) { + if (wm[level] == 0) + break; wm[level] += 2; - else { - for (i = level + 1; i <= max_level; i++) - wm[i] = 0; - - break; } + } + } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) { uint64_t sskpd = I915_READ64(MCH_SSKPD); @@ -2876,6 +2878,19 @@ } } +static bool +intel_has_sagv(struct drm_i915_private *dev_priv) +{ + if (IS_KABYLAKE(dev_priv)) + return true; + + if (IS_SKYLAKE(dev_priv) && + dev_priv->sagv_status != I915_SAGV_NOT_CONTROLLED) + return true; + + return false; +} + /* * SAGV dynamically adjusts the system agent voltage and clock frequencies * depending on power and performance requirements. The display engine access @@ -2888,12 +2903,14 @@ * - We're not using an interlaced display configuration */ int -skl_enable_sagv(struct drm_i915_private *dev_priv) +intel_enable_sagv(struct drm_i915_private *dev_priv) { int ret; - if (dev_priv->skl_sagv_status == I915_SKL_SAGV_NOT_CONTROLLED || - dev_priv->skl_sagv_status == I915_SKL_SAGV_ENABLED) + if (!intel_has_sagv(dev_priv)) + return 0; + + if (dev_priv->sagv_status == I915_SAGV_ENABLED) return 0; DRM_DEBUG_KMS("Enabling the SAGV\n"); @@ -2909,21 +2926,21 @@ * Some skl systems, pre-release machines in particular, * don't actually have an SAGV. */ - if (ret == -ENXIO) { + if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) { DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n"); - dev_priv->skl_sagv_status = I915_SKL_SAGV_NOT_CONTROLLED; + dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED; return 0; } else if (ret < 0) { DRM_ERROR("Failed to enable the SAGV\n"); return ret; } - dev_priv->skl_sagv_status = I915_SKL_SAGV_ENABLED; + dev_priv->sagv_status = I915_SAGV_ENABLED; return 0; } static int -skl_do_sagv_disable(struct drm_i915_private *dev_priv) +intel_do_sagv_disable(struct drm_i915_private *dev_priv) { int ret; uint32_t temp = GEN9_SAGV_DISABLE; @@ -2937,19 +2954,21 @@ } int -skl_disable_sagv(struct drm_i915_private *dev_priv) +intel_disable_sagv(struct drm_i915_private *dev_priv) { int ret, result; - if (dev_priv->skl_sagv_status == I915_SKL_SAGV_NOT_CONTROLLED || - dev_priv->skl_sagv_status == I915_SKL_SAGV_DISABLED) + if (!intel_has_sagv(dev_priv)) + return 0; + + if (dev_priv->sagv_status == I915_SAGV_DISABLED) return 0; DRM_DEBUG_KMS("Disabling the SAGV\n"); mutex_lock(&dev_priv->rps.hw_lock); /* bspec says to keep retrying for at least 1 ms */ - ret = wait_for(result = skl_do_sagv_disable(dev_priv), 1); + ret = wait_for(result = intel_do_sagv_disable(dev_priv), 1); mutex_unlock(&dev_priv->rps.hw_lock); if (ret == -ETIMEDOUT) { @@ -2961,20 +2980,20 @@ * Some skl systems, pre-release machines in particular, * don't actually have an SAGV. */ - if (result == -ENXIO) { + if (IS_SKYLAKE(dev_priv) && result == -ENXIO) { DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n"); - dev_priv->skl_sagv_status = I915_SKL_SAGV_NOT_CONTROLLED; + dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED; return 0; } else if (result < 0) { DRM_ERROR("Failed to disable the SAGV\n"); return result; } - dev_priv->skl_sagv_status = I915_SKL_SAGV_DISABLED; + dev_priv->sagv_status = I915_SAGV_DISABLED; return 0; } -bool skl_can_enable_sagv(struct drm_atomic_state *state) +bool intel_can_enable_sagv(struct drm_atomic_state *state) { struct drm_device *dev = state->dev; struct drm_i915_private *dev_priv = to_i915(dev); @@ -2983,6 +3002,9 @@ enum pipe pipe; int level, plane; + if (!intel_has_sagv(dev_priv)) + return false; + /* * SKL workaround: bspec recommends we disable the SAGV when we have * more then one pipe enabled @@ -3341,13 +3363,15 @@ int num_active; int id, i; + /* Clear the partitioning for disabled planes. */ + memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe])); + memset(ddb->y_plane[pipe], 0, sizeof(ddb->y_plane[pipe])); + if (WARN_ON(!state)) return 0; if (!cstate->base.active) { ddb->pipe[pipe].start = ddb->pipe[pipe].end = 0; - memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe])); - memset(ddb->y_plane[pipe], 0, sizeof(ddb->y_plane[pipe])); return 0; } @@ -3447,12 +3471,6 @@ return 0; } -static uint32_t skl_pipe_pixel_rate(const struct intel_crtc_state *config) -{ - /* TODO: Take into account the scalers once we support them */ - return config->base.adjusted_mode.crtc_clock; -} - /* * The max latency should be 257 (max the punit can code is 255 and we add 2us * for the read latency) and cpp should always be <= 8, so that @@ -3473,29 +3491,14 @@ } static uint32_t skl_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal, - uint32_t horiz_pixels, uint8_t cpp, - uint64_t tiling, uint32_t latency) + uint32_t latency, uint32_t plane_blocks_per_line) { uint32_t ret; - uint32_t plane_bytes_per_line, plane_blocks_per_line; uint32_t wm_intermediate_val; if (latency == 0) return UINT_MAX; - plane_bytes_per_line = horiz_pixels * cpp; - - if (tiling == I915_FORMAT_MOD_Y_TILED || - tiling == I915_FORMAT_MOD_Yf_TILED) { - plane_bytes_per_line *= 4; - plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512); - plane_blocks_per_line /= 4; - } else if (tiling == DRM_FORMAT_MOD_NONE) { - plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512) + 1; - } else { - plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512); - } - wm_intermediate_val = latency * pixel_rate; ret = DIV_ROUND_UP(wm_intermediate_val, pipe_htotal * 1000) * plane_blocks_per_line; @@ -3518,7 +3521,7 @@ * Adjusted plane pixel rate is just the pipe's adjusted pixel rate * with additional adjustments for plane-specific scaling. */ - adjusted_pixel_rate = skl_pipe_pixel_rate(cstate); + adjusted_pixel_rate = ilk_pipe_pixel_rate(cstate); downscale_amount = skl_plane_downscale_amount(pstate); pixel_rate = adjusted_pixel_rate * downscale_amount >> 16; @@ -3546,6 +3549,7 @@ uint8_t cpp; uint32_t width = 0, height = 0; uint32_t plane_pixel_rate; + uint32_t y_tile_minimum, y_min_scanlines; if (latency == 0 || !cstate->base.active || !intel_pstate->visible) { *enabled = false; @@ -3561,38 +3565,51 @@ cpp = drm_format_plane_cpp(fb->pixel_format, 0); plane_pixel_rate = skl_adjusted_plane_pixel_rate(cstate, intel_pstate); + if (intel_rotation_90_or_270(pstate->rotation)) { + int cpp = (fb->pixel_format == DRM_FORMAT_NV12) ? + drm_format_plane_cpp(fb->pixel_format, 1) : + drm_format_plane_cpp(fb->pixel_format, 0); + + switch (cpp) { + case 1: + y_min_scanlines = 16; + break; + case 2: + y_min_scanlines = 8; + break; + default: + WARN(1, "Unsupported pixel depth for rotation"); + case 4: + y_min_scanlines = 4; + break; + } + } else { + y_min_scanlines = 4; + } + + plane_bytes_per_line = width * cpp; + if (fb->modifier[0] == I915_FORMAT_MOD_Y_TILED || + fb->modifier[0] == I915_FORMAT_MOD_Yf_TILED) { + plane_blocks_per_line = + DIV_ROUND_UP(plane_bytes_per_line * y_min_scanlines, 512); + plane_blocks_per_line /= y_min_scanlines; + } else if (fb->modifier[0] == DRM_FORMAT_MOD_NONE) { + plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512) + + 1; + } else { + plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512); + } + method1 = skl_wm_method1(plane_pixel_rate, cpp, latency); method2 = skl_wm_method2(plane_pixel_rate, cstate->base.adjusted_mode.crtc_htotal, - width, - cpp, - fb->modifier[0], - latency); + latency, + plane_blocks_per_line); - plane_bytes_per_line = width * cpp; - plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512); + y_tile_minimum = plane_blocks_per_line * y_min_scanlines; if (fb->modifier[0] == I915_FORMAT_MOD_Y_TILED || fb->modifier[0] == I915_FORMAT_MOD_Yf_TILED) { - uint32_t min_scanlines = 4; - uint32_t y_tile_minimum; - if (intel_rotation_90_or_270(pstate->rotation)) { - int cpp = (fb->pixel_format == DRM_FORMAT_NV12) ? - drm_format_plane_cpp(fb->pixel_format, 1) : - drm_format_plane_cpp(fb->pixel_format, 0); - - switch (cpp) { - case 1: - min_scanlines = 16; - break; - case 2: - min_scanlines = 8; - break; - case 8: - WARN(1, "Unsupported pixel depth for rotation"); - } - } - y_tile_minimum = plane_blocks_per_line * min_scanlines; selected_result = max(method2, y_tile_minimum); } else { if ((ddb_allocation / plane_blocks_per_line) >= 1) @@ -3606,10 +3623,12 @@ if (level >= 1 && level <= 7) { if (fb->modifier[0] == I915_FORMAT_MOD_Y_TILED || - fb->modifier[0] == I915_FORMAT_MOD_Yf_TILED) - res_lines += 4; - else + fb->modifier[0] == I915_FORMAT_MOD_Yf_TILED) { + res_blocks += y_tile_minimum; + res_lines += y_min_scanlines; + } else { res_blocks++; + } } if (res_blocks >= ddb_allocation || res_lines > 31) { @@ -3714,11 +3733,11 @@ if (!cstate->base.active) return 0; - if (WARN_ON(skl_pipe_pixel_rate(cstate) == 0)) + if (WARN_ON(ilk_pipe_pixel_rate(cstate) == 0)) return 0; return DIV_ROUND_UP(8 * cstate->base.adjusted_mode.crtc_htotal * 1000, - skl_pipe_pixel_rate(cstate)); + ilk_pipe_pixel_rate(cstate)); } static void skl_compute_transition_wm(struct intel_crtc_state *cstate, @@ -3828,183 +3847,82 @@ I915_WRITE(reg, 0); } -static void skl_write_wm_values(struct drm_i915_private *dev_priv, - const struct skl_wm_values *new) +void skl_write_plane_wm(struct intel_crtc *intel_crtc, + const struct skl_wm_values *wm, + int plane) { - struct drm_device *dev = &dev_priv->drm; - struct intel_crtc *crtc; - - for_each_intel_crtc(dev, crtc) { - int i, level, max_level = ilk_wm_max_level(dev); - enum pipe pipe = crtc->pipe; - - if ((new->dirty_pipes & drm_crtc_mask(&crtc->base)) == 0) - continue; - if (!crtc->active) - continue; - - I915_WRITE(PIPE_WM_LINETIME(pipe), new->wm_linetime[pipe]); - - for (level = 0; level <= max_level; level++) { - for (i = 0; i < intel_num_planes(crtc); i++) - I915_WRITE(PLANE_WM(pipe, i, level), - new->plane[pipe][i][level]); - I915_WRITE(CUR_WM(pipe, level), - new->plane[pipe][PLANE_CURSOR][level]); - } - for (i = 0; i < intel_num_planes(crtc); i++) - I915_WRITE(PLANE_WM_TRANS(pipe, i), - new->plane_trans[pipe][i]); - I915_WRITE(CUR_WM_TRANS(pipe), - new->plane_trans[pipe][PLANE_CURSOR]); - - for (i = 0; i < intel_num_planes(crtc); i++) { - skl_ddb_entry_write(dev_priv, - PLANE_BUF_CFG(pipe, i), - &new->ddb.plane[pipe][i]); - skl_ddb_entry_write(dev_priv, - PLANE_NV12_BUF_CFG(pipe, i), - &new->ddb.y_plane[pipe][i]); - } + struct drm_crtc *crtc = &intel_crtc->base; + struct drm_device *dev = crtc->dev; + struct drm_i915_private *dev_priv = to_i915(dev); + int level, max_level = ilk_wm_max_level(dev); + enum pipe pipe = intel_crtc->pipe; - skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe), - &new->ddb.plane[pipe][PLANE_CURSOR]); + for (level = 0; level <= max_level; level++) { + I915_WRITE(PLANE_WM(pipe, plane, level), + wm->plane[pipe][plane][level]); } -} + I915_WRITE(PLANE_WM_TRANS(pipe, plane), wm->plane_trans[pipe][plane]); -/* - * When setting up a new DDB allocation arrangement, we need to correctly - * sequence the times at which the new allocations for the pipes are taken into - * account or we'll have pipes fetching from space previously allocated to - * another pipe. - * - * Roughly the sequence looks like: - * 1. re-allocate the pipe(s) with the allocation being reduced and not - * overlapping with a previous light-up pipe (another way to put it is: - * pipes with their new allocation strickly included into their old ones). - * 2. re-allocate the other pipes that get their allocation reduced - * 3. allocate the pipes having their allocation increased - * - * Steps 1. and 2. are here to take care of the following case: - * - Initially DDB looks like this: - * | B | C | - * - enable pipe A. - * - pipe B has a reduced DDB allocation that overlaps with the old pipe C - * allocation - * | A | B | C | - * - * We need to sequence the re-allocation: C, B, A (and not B, C, A). - */ + skl_ddb_entry_write(dev_priv, PLANE_BUF_CFG(pipe, plane), + &wm->ddb.plane[pipe][plane]); + skl_ddb_entry_write(dev_priv, PLANE_NV12_BUF_CFG(pipe, plane), + &wm->ddb.y_plane[pipe][plane]); +} -static void -skl_wm_flush_pipe(struct drm_i915_private *dev_priv, enum pipe pipe, int pass) +void skl_write_cursor_wm(struct intel_crtc *intel_crtc, + const struct skl_wm_values *wm) { - int plane; - - DRM_DEBUG_KMS("flush pipe %c (pass %d)\n", pipe_name(pipe), pass); + struct drm_crtc *crtc = &intel_crtc->base; + struct drm_device *dev = crtc->dev; + struct drm_i915_private *dev_priv = to_i915(dev); + int level, max_level = ilk_wm_max_level(dev); + enum pipe pipe = intel_crtc->pipe; - for_each_plane(dev_priv, pipe, plane) { - I915_WRITE(PLANE_SURF(pipe, plane), - I915_READ(PLANE_SURF(pipe, plane))); + for (level = 0; level <= max_level; level++) { + I915_WRITE(CUR_WM(pipe, level), + wm->plane[pipe][PLANE_CURSOR][level]); } - I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe))); + I915_WRITE(CUR_WM_TRANS(pipe), wm->plane_trans[pipe][PLANE_CURSOR]); + + skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe), + &wm->ddb.plane[pipe][PLANE_CURSOR]); } -static bool -skl_ddb_allocation_included(const struct skl_ddb_allocation *old, - const struct skl_ddb_allocation *new, - enum pipe pipe) +bool skl_ddb_allocation_equals(const struct skl_ddb_allocation *old, + const struct skl_ddb_allocation *new, + enum pipe pipe) { - uint16_t old_size, new_size; - - old_size = skl_ddb_entry_size(&old->pipe[pipe]); - new_size = skl_ddb_entry_size(&new->pipe[pipe]); - - return old_size != new_size && - new->pipe[pipe].start >= old->pipe[pipe].start && - new->pipe[pipe].end <= old->pipe[pipe].end; + return new->pipe[pipe].start == old->pipe[pipe].start && + new->pipe[pipe].end == old->pipe[pipe].end; } -static void skl_flush_wm_values(struct drm_i915_private *dev_priv, - struct skl_wm_values *new_values) +static inline bool skl_ddb_entries_overlap(const struct skl_ddb_entry *a, + const struct skl_ddb_entry *b) { - struct drm_device *dev = &dev_priv->drm; - struct skl_ddb_allocation *cur_ddb, *new_ddb; - bool reallocated[I915_MAX_PIPES] = {}; - struct intel_crtc *crtc; - enum pipe pipe; - - new_ddb = &new_values->ddb; - cur_ddb = &dev_priv->wm.skl_hw.ddb; - - /* - * First pass: flush the pipes with the new allocation contained into - * the old space. - * - * We'll wait for the vblank on those pipes to ensure we can safely - * re-allocate the freed space without this pipe fetching from it. - */ - for_each_intel_crtc(dev, crtc) { - if (!crtc->active) - continue; - - pipe = crtc->pipe; - - if (!skl_ddb_allocation_included(cur_ddb, new_ddb, pipe)) - continue; - - skl_wm_flush_pipe(dev_priv, pipe, 1); - intel_wait_for_vblank(dev, pipe); - - reallocated[pipe] = true; - } - + return a->start < b->end && b->start < a->end; +} - /* - * Second pass: flush the pipes that are having their allocation - * reduced, but overlapping with a previous allocation. - * - * Here as well we need to wait for the vblank to make sure the freed - * space is not used anymore. - */ - for_each_intel_crtc(dev, crtc) { - if (!crtc->active) - continue; +bool skl_ddb_allocation_overlaps(struct drm_atomic_state *state, + const struct skl_ddb_allocation *old, + const struct skl_ddb_allocation *new, + enum pipe pipe) +{ + struct drm_device *dev = state->dev; + struct intel_crtc *intel_crtc; + enum pipe otherp; - pipe = crtc->pipe; + for_each_intel_crtc(dev, intel_crtc) { + otherp = intel_crtc->pipe; - if (reallocated[pipe]) + if (otherp == pipe) continue; - if (skl_ddb_entry_size(&new_ddb->pipe[pipe]) < - skl_ddb_entry_size(&cur_ddb->pipe[pipe])) { - skl_wm_flush_pipe(dev_priv, pipe, 2); - intel_wait_for_vblank(dev, pipe); - reallocated[pipe] = true; - } + if (skl_ddb_entries_overlap(&new->pipe[pipe], + &old->pipe[otherp])) + return true; } - /* - * Third pass: flush the pipes that got more space allocated. - * - * We don't need to actively wait for the update here, next vblank - * will just get more DDB space with the correct WM values. - */ - for_each_intel_crtc(dev, crtc) { - if (!crtc->active) - continue; - - pipe = crtc->pipe; - - /* - * At this point, only the pipes more space than before are - * left to re-allocate. - */ - if (reallocated[pipe]) - continue; - - skl_wm_flush_pipe(dev_priv, pipe, 3); - } + return false; } static int skl_update_pipe_wm(struct drm_crtc_state *cstate, @@ -4041,6 +3959,41 @@ return ret; } +int +skl_ddb_add_affected_planes(struct intel_crtc_state *cstate) +{ + struct drm_atomic_state *state = cstate->base.state; + struct drm_device *dev = state->dev; + struct drm_crtc *crtc = cstate->base.crtc; + struct intel_crtc *intel_crtc = to_intel_crtc(crtc); + struct drm_i915_private *dev_priv = to_i915(dev); + struct intel_atomic_state *intel_state = to_intel_atomic_state(state); + struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb; + struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb; + struct drm_plane_state *plane_state; + struct drm_plane *plane; + enum pipe pipe = intel_crtc->pipe; + int id; + + WARN_ON(!drm_atomic_get_existing_crtc_state(state, crtc)); + + drm_for_each_plane_mask(plane, dev, crtc->state->plane_mask) { + id = skl_wm_plane_id(to_intel_plane(plane)); + + if (skl_ddb_entry_equal(&cur_ddb->plane[pipe][id], + &new_ddb->plane[pipe][id]) && + skl_ddb_entry_equal(&cur_ddb->y_plane[pipe][id], + &new_ddb->y_plane[pipe][id])) + continue; + + plane_state = drm_atomic_get_plane_state(state, plane); + if (IS_ERR(plane_state)) + return PTR_ERR(plane_state); + } + + return 0; +} + static int skl_compute_ddb(struct drm_atomic_state *state) { @@ -4094,6 +4047,12 @@ intel_state->wm_results.dirty_pipes = ~0; } + /* + * We're not recomputing for the pipes not included in the commit, so + * make sure we start with the current state. + */ + memcpy(ddb, &dev_priv->wm.skl_hw.ddb, sizeof(*ddb)); + for_each_intel_crtc_mask(dev, intel_crtc, realloc_pipes) { struct intel_crtc_state *cstate; @@ -4105,6 +4064,10 @@ if (ret) return ret; + ret = skl_ddb_add_affected_planes(cstate); + if (ret) + return ret; + ret = drm_atomic_add_affected_planes(state, &intel_crtc->base); if (ret) return ret; @@ -4206,7 +4169,7 @@ struct skl_wm_values *hw_vals = &dev_priv->wm.skl_hw; struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state); struct skl_pipe_wm *pipe_wm = &cstate->wm.skl.optimal; - int pipe; + enum pipe pipe = intel_crtc->pipe; if ((results->dirty_pipes & drm_crtc_mask(crtc)) == 0) return; @@ -4215,15 +4178,22 @@ mutex_lock(&dev_priv->wm.wm_mutex); - skl_write_wm_values(dev_priv, results); - skl_flush_wm_values(dev_priv, results); - /* - * Store the new configuration (but only for the pipes that have - * changed; the other values weren't recomputed). + * If this pipe isn't active already, we're going to be enabling it + * very soon. Since it's safe to update a pipe's ddb allocation while + * the pipe's shut off, just do so here. Already active pipes will have + * their watermarks updated once we update their planes. */ - for_each_pipe_masked(dev_priv, pipe, results->dirty_pipes) - skl_copy_wm_for_pipe(hw_vals, results, pipe); + if (crtc->state->active_changed) { + int plane; + + for (plane = 0; plane < intel_num_planes(intel_crtc); plane++) + skl_write_plane_wm(intel_crtc, results, plane); + + skl_write_cursor_wm(intel_crtc, results); + } + + skl_copy_wm_for_pipe(hw_vals, results, pipe); mutex_unlock(&dev_priv->wm.wm_mutex); } --- linux-4.8.0.orig/drivers/gpu/drm/i915/intel_runtime_pm.c +++ linux-4.8.0/drivers/gpu/drm/i915/intel_runtime_pm.c @@ -1062,7 +1062,18 @@ static void vlv_init_display_clock_gating(struct drm_i915_private *dev_priv) { - I915_WRITE(DSPCLK_GATE_D, VRHUNIT_CLOCK_GATE_DISABLE); + u32 val; + + /* + * On driver load, a pipe may be active and driving a DSI display. + * Preserve DPOUNIT_CLOCK_GATE_DISABLE to avoid the pipe getting stuck + * (and never recovering) in this case. intel_dsi_post_disable() will + * clear it when we turn off the display. + */ + val = I915_READ(DSPCLK_GATE_D); + val &= DPOUNIT_CLOCK_GATE_DISABLE; + val |= VRHUNIT_CLOCK_GATE_DISABLE; + I915_WRITE(DSPCLK_GATE_D, val); /* * Disable trickle feed and enable pnd deadline calculation --- linux-4.8.0.orig/drivers/gpu/drm/i915/intel_sprite.c +++ linux-4.8.0/drivers/gpu/drm/i915/intel_sprite.c @@ -203,6 +203,9 @@ struct intel_plane *intel_plane = to_intel_plane(drm_plane); struct drm_framebuffer *fb = plane_state->base.fb; struct drm_i915_gem_object *obj = intel_fb_obj(fb); + const struct skl_wm_values *wm = &dev_priv->wm.skl_results; + struct drm_crtc *crtc = crtc_state->base.crtc; + struct intel_crtc *intel_crtc = to_intel_crtc(crtc); const int pipe = intel_plane->pipe; const int plane = intel_plane->plane + 1; u32 plane_ctl, stride_div, stride; @@ -238,6 +241,9 @@ crtc_w--; crtc_h--; + if (wm->dirty_pipes & drm_crtc_mask(crtc)) + skl_write_plane_wm(intel_crtc, wm, plane); + if (key->flags) { I915_WRITE(PLANE_KEYVAL(pipe, plane), key->min_value); I915_WRITE(PLANE_KEYMAX(pipe, plane), key->max_value); @@ -308,6 +314,14 @@ const int pipe = intel_plane->pipe; const int plane = intel_plane->plane + 1; + /* + * We only populate skl_results on watermark updates, and if the + * plane's visiblity isn't actually changing neither is its watermarks. + */ + if (!to_intel_plane_state(dplane->state)->visible) + skl_write_plane_wm(to_intel_crtc(crtc), + &dev_priv->wm.skl_results, plane); + I915_WRITE(PLANE_CTL(pipe, plane), 0); I915_WRITE(PLANE_SURF(pipe, plane), 0); --- linux-4.8.0.orig/drivers/gpu/drm/i915/intel_uncore.c +++ linux-4.8.0/drivers/gpu/drm/i915/intel_uncore.c @@ -796,10 +796,9 @@ const bool read, const bool before) { - if (WARN(check_for_unclaimed_mmio(dev_priv), - "Unclaimed register detected %s %s register 0x%x\n", - before ? "before" : "after", - read ? "reading" : "writing to", + if (WARN(check_for_unclaimed_mmio(dev_priv) && !before, + "Unclaimed %s register 0x%x\n", + read ? "read from" : "write to", i915_mmio_reg_offset(reg))) i915.mmio_debug--; /* Only report the first N failures */ } --- linux-4.8.0.orig/drivers/gpu/drm/i915/intel_vbt_defs.h +++ linux-4.8.0/drivers/gpu/drm/i915/intel_vbt_defs.h @@ -280,7 +280,8 @@ u8 dp_support:1; u8 tmds_support:1; u8 support_reserved:5; - u8 not_common3[12]; + u8 aux_channel; + u8 not_common3[11]; u8 iboost_level; } __packed; --- linux-4.8.0.orig/drivers/gpu/drm/imx/ipuv3-plane.c +++ linux-4.8.0/drivers/gpu/drm/imx/ipuv3-plane.c @@ -108,6 +108,7 @@ { struct drm_plane *plane = &ipu_plane->base; struct drm_plane_state *state = plane->state; + struct drm_crtc_state *crtc_state = state->crtc->state; struct drm_framebuffer *fb = state->fb; unsigned long eba, ubo, vbo; int active; @@ -149,7 +150,7 @@ break; } - if (old_state->fb) { + if (!drm_atomic_crtc_needs_modeset(crtc_state)) { active = ipu_idmac_get_current_buffer(ipu_plane->ipu_ch); ipu_cpmem_set_buffer(ipu_plane->ipu_ch, !active, eba); ipu_idmac_select_buffer(ipu_plane->ipu_ch, !active); @@ -359,7 +360,9 @@ if ((ubo > 0xfffff8) || (vbo > 0xfffff8)) return -EINVAL; - if (old_fb) { + if (old_fb && + (old_fb->pixel_format == DRM_FORMAT_YUV420 || + old_fb->pixel_format == DRM_FORMAT_YVU420)) { old_ubo = drm_plane_state_to_ubo(old_state); old_vbo = drm_plane_state_to_vbo(old_state); if (ubo != old_ubo || vbo != old_vbo) --- linux-4.8.0.orig/drivers/gpu/drm/mediatek/mtk_disp_ovl.c +++ linux-4.8.0/drivers/gpu/drm/mediatek/mtk_disp_ovl.c @@ -249,13 +249,6 @@ if (irq < 0) return irq; - ret = devm_request_irq(dev, irq, mtk_disp_ovl_irq_handler, - IRQF_TRIGGER_NONE, dev_name(dev), priv); - if (ret < 0) { - dev_err(dev, "Failed to request irq %d: %d\n", irq, ret); - return ret; - } - comp_id = mtk_ddp_comp_get_id(dev->of_node, MTK_DISP_OVL); if (comp_id < 0) { dev_err(dev, "Failed to identify by alias: %d\n", comp_id); @@ -271,6 +264,13 @@ platform_set_drvdata(pdev, priv); + ret = devm_request_irq(dev, irq, mtk_disp_ovl_irq_handler, + IRQF_TRIGGER_NONE, dev_name(dev), priv); + if (ret < 0) { + dev_err(dev, "Failed to request irq %d: %d\n", irq, ret); + return ret; + } + ret = component_add(dev, &mtk_disp_ovl_component_ops); if (ret) dev_err(dev, "Failed to add component: %d\n", ret); --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nouveau_acpi.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nouveau_acpi.c @@ -240,7 +240,8 @@ if (!parent_adev) return false; - return acpi_has_method(parent_adev->handle, "_PR3"); + return parent_adev->power.flags.power_resources && + acpi_has_method(parent_adev->handle, "_PR3"); } static void nouveau_dsm_pci_probe(struct pci_dev *pdev, acpi_handle *dhandle_out, --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nouveau_bios.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nouveau_bios.c @@ -333,6 +333,9 @@ if (bios->major_version < 5 && bios->data[0x48] & 0x4) return NVReadVgaCrtc5758(dev, 0, 0xf) & 0xf; + if (drm->device.info.family >= NV_DEVICE_INFO_V0_MAXWELL) + return nvif_rd32(device, 0x001800) & 0x0000000f; + else if (drm->device.info.family >= NV_DEVICE_INFO_V0_TESLA) return (nvif_rd32(device, NV_PEXTDEV_BOOT_0) >> 24) & 0xf; else @@ -351,7 +354,7 @@ /* Apple cards don't have the fp table; the laptops use DDC */ /* The table is also missing on some x86 IGPs */ #ifndef __powerpc__ - NV_ERROR(drm, "Pointer to flat panel table invalid\n"); + NV_WARN(drm, "Pointer to flat panel table invalid\n"); #endif bios->digital_min_front_porch = 0x4b; return 0; @@ -935,7 +938,7 @@ tmdstableptr = ROM16(bios->data[bitentry->offset]); if (!tmdstableptr) { - NV_ERROR(drm, "Pointer to TMDS table invalid\n"); + NV_WARN(drm, "Pointer to TMDS table invalid\n"); return -EINVAL; } --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nouveau_bo.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nouveau_bo.c @@ -1209,6 +1209,7 @@ nvbo->page_shift != vma->vm->mmu->lpg_shift)) { nvkm_vm_map(vma, new_mem->mm_node); } else { + WARN_ON(ttm_bo_wait(bo, false, false)); nvkm_vm_unmap(vma); } } --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/device/base.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/engine/device/base.c @@ -1851,7 +1851,7 @@ .fb = gk104_fb_new, .fuse = gf100_fuse_new, .gpio = gk104_gpio_new, - .i2c = gf119_i2c_new, + .i2c = gk104_i2c_new, .ibus = gk104_ibus_new, .iccsense = gf100_iccsense_new, .imem = nv50_instmem_new, @@ -1965,7 +1965,7 @@ .fb = gm107_fb_new, .fuse = gm107_fuse_new, .gpio = gk104_gpio_new, - .i2c = gf119_i2c_new, + .i2c = gk104_i2c_new, .ibus = gk104_ibus_new, .iccsense = gf100_iccsense_new, .imem = nv50_instmem_new, @@ -1999,7 +1999,7 @@ .fb = gm107_fb_new, .fuse = gm107_fuse_new, .gpio = gk104_gpio_new, - .i2c = gf119_i2c_new, + .i2c = gk104_i2c_new, .ibus = gk104_ibus_new, .iccsense = gf100_iccsense_new, .imem = nv50_instmem_new, --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/disp/Kbuild +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/engine/disp/Kbuild @@ -95,9 +95,11 @@ nvkm-y += nvkm/engine/disp/cursgt215.o nvkm-y += nvkm/engine/disp/cursgf119.o nvkm-y += nvkm/engine/disp/cursgk104.o +nvkm-y += nvkm/engine/disp/cursgp102.o nvkm-y += nvkm/engine/disp/oimmnv50.o nvkm-y += nvkm/engine/disp/oimmg84.o nvkm-y += nvkm/engine/disp/oimmgt215.o nvkm-y += nvkm/engine/disp/oimmgf119.o nvkm-y += nvkm/engine/disp/oimmgk104.o +nvkm-y += nvkm/engine/disp/oimmgp102.o --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/disp/channv50.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/engine/disp/channv50.c @@ -82,7 +82,7 @@ if (mthd->addr) { snprintf(cname_, sizeof(cname_), "%s %d", - mthd->name, chan->chid); + mthd->name, chan->chid.user); cname = cname_; } @@ -139,7 +139,7 @@ if (!(ret = nvif_unvers(ret, &data, &size, args->none))) { notify->size = sizeof(struct nvif_notify_uevent_rep); notify->types = 1; - notify->index = chan->chid; + notify->index = chan->chid.user; return 0; } @@ -159,7 +159,7 @@ struct nv50_disp_chan *chan = nv50_disp_chan(object); struct nv50_disp *disp = chan->root->disp; struct nvkm_device *device = disp->base.engine.subdev.device; - *data = nvkm_rd32(device, 0x640000 + (chan->chid * 0x1000) + addr); + *data = nvkm_rd32(device, 0x640000 + (chan->chid.user * 0x1000) + addr); return 0; } @@ -169,7 +169,7 @@ struct nv50_disp_chan *chan = nv50_disp_chan(object); struct nv50_disp *disp = chan->root->disp; struct nvkm_device *device = disp->base.engine.subdev.device; - nvkm_wr32(device, 0x640000 + (chan->chid * 0x1000) + addr, data); + nvkm_wr32(device, 0x640000 + (chan->chid.user * 0x1000) + addr, data); return 0; } @@ -196,7 +196,7 @@ struct nv50_disp *disp = chan->root->disp; struct nvkm_device *device = disp->base.engine.subdev.device; *addr = device->func->resource_addr(device, 0) + - 0x640000 + (chan->chid * 0x1000); + 0x640000 + (chan->chid.user * 0x1000); *size = 0x001000; return 0; } @@ -243,8 +243,8 @@ { struct nv50_disp_chan *chan = nv50_disp_chan(object); struct nv50_disp *disp = chan->root->disp; - if (chan->chid >= 0) - disp->chan[chan->chid] = NULL; + if (chan->chid.user >= 0) + disp->chan[chan->chid.user] = NULL; return chan->func->dtor ? chan->func->dtor(chan) : chan; } @@ -263,7 +263,7 @@ int nv50_disp_chan_ctor(const struct nv50_disp_chan_func *func, const struct nv50_disp_chan_mthd *mthd, - struct nv50_disp_root *root, int chid, int head, + struct nv50_disp_root *root, int ctrl, int user, int head, const struct nvkm_oclass *oclass, struct nv50_disp_chan *chan) { @@ -273,21 +273,22 @@ chan->func = func; chan->mthd = mthd; chan->root = root; - chan->chid = chid; + chan->chid.ctrl = ctrl; + chan->chid.user = user; chan->head = head; - if (disp->chan[chan->chid]) { - chan->chid = -1; + if (disp->chan[chan->chid.user]) { + chan->chid.user = -1; return -EBUSY; } - disp->chan[chan->chid] = chan; + disp->chan[chan->chid.user] = chan; return 0; } int nv50_disp_chan_new_(const struct nv50_disp_chan_func *func, const struct nv50_disp_chan_mthd *mthd, - struct nv50_disp_root *root, int chid, int head, + struct nv50_disp_root *root, int ctrl, int user, int head, const struct nvkm_oclass *oclass, struct nvkm_object **pobject) { @@ -297,5 +298,6 @@ return -ENOMEM; *pobject = &chan->object; - return nv50_disp_chan_ctor(func, mthd, root, chid, head, oclass, chan); + return nv50_disp_chan_ctor(func, mthd, root, ctrl, user, + head, oclass, chan); } --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/disp/channv50.h +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/engine/disp/channv50.h @@ -7,7 +7,11 @@ const struct nv50_disp_chan_func *func; const struct nv50_disp_chan_mthd *mthd; struct nv50_disp_root *root; - int chid; + + struct { + int ctrl; + int user; + } chid; int head; struct nvkm_object object; @@ -25,11 +29,11 @@ int nv50_disp_chan_ctor(const struct nv50_disp_chan_func *, const struct nv50_disp_chan_mthd *, - struct nv50_disp_root *, int chid, int head, + struct nv50_disp_root *, int ctrl, int user, int head, const struct nvkm_oclass *, struct nv50_disp_chan *); int nv50_disp_chan_new_(const struct nv50_disp_chan_func *, const struct nv50_disp_chan_mthd *, - struct nv50_disp_root *, int chid, int head, + struct nv50_disp_root *, int ctrl, int user, int head, const struct nvkm_oclass *, struct nvkm_object **); extern const struct nv50_disp_chan_func nv50_disp_pioc_func; @@ -90,13 +94,16 @@ struct nv50_disp_pioc_oclass { int (*ctor)(const struct nv50_disp_chan_func *, const struct nv50_disp_chan_mthd *, - struct nv50_disp_root *, int chid, + struct nv50_disp_root *, int ctrl, int user, const struct nvkm_oclass *, void *data, u32 size, struct nvkm_object **); struct nvkm_sclass base; const struct nv50_disp_chan_func *func; const struct nv50_disp_chan_mthd *mthd; - int chid; + struct { + int ctrl; + int user; + } chid; }; extern const struct nv50_disp_pioc_oclass nv50_disp_oimm_oclass; @@ -114,15 +121,17 @@ extern const struct nv50_disp_pioc_oclass gk104_disp_oimm_oclass; extern const struct nv50_disp_pioc_oclass gk104_disp_curs_oclass; +extern const struct nv50_disp_pioc_oclass gp102_disp_oimm_oclass; +extern const struct nv50_disp_pioc_oclass gp102_disp_curs_oclass; int nv50_disp_curs_new(const struct nv50_disp_chan_func *, const struct nv50_disp_chan_mthd *, - struct nv50_disp_root *, int chid, + struct nv50_disp_root *, int ctrl, int user, const struct nvkm_oclass *, void *data, u32 size, struct nvkm_object **); int nv50_disp_oimm_new(const struct nv50_disp_chan_func *, const struct nv50_disp_chan_mthd *, - struct nv50_disp_root *, int chid, + struct nv50_disp_root *, int ctrl, int user, const struct nvkm_oclass *, void *data, u32 size, struct nvkm_object **); #endif --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/disp/cursg84.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/engine/disp/cursg84.c @@ -33,5 +33,5 @@ .base.maxver = 0, .ctor = nv50_disp_curs_new, .func = &nv50_disp_pioc_func, - .chid = 7, + .chid = { 7, 7 }, }; --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/disp/cursgf119.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/engine/disp/cursgf119.c @@ -33,5 +33,5 @@ .base.maxver = 0, .ctor = nv50_disp_curs_new, .func = &gf119_disp_pioc_func, - .chid = 13, + .chid = { 13, 13 }, }; --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/disp/cursgk104.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/engine/disp/cursgk104.c @@ -33,5 +33,5 @@ .base.maxver = 0, .ctor = nv50_disp_curs_new, .func = &gf119_disp_pioc_func, - .chid = 13, + .chid = { 13, 13 }, }; --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/disp/cursgp102.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/engine/disp/cursgp102.c @@ -0,0 +1,37 @@ +/* + * Copyright 2016 Red Hat Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR + * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, + * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + * OTHER DEALINGS IN THE SOFTWARE. + * + * Authors: Ben Skeggs + */ +#include "channv50.h" +#include "rootnv50.h" + +#include + +const struct nv50_disp_pioc_oclass +gp102_disp_curs_oclass = { + .base.oclass = GK104_DISP_CURSOR, + .base.minver = 0, + .base.maxver = 0, + .ctor = nv50_disp_curs_new, + .func = &gf119_disp_pioc_func, + .chid = { 13, 17 }, +}; --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/disp/cursgt215.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/engine/disp/cursgt215.c @@ -33,5 +33,5 @@ .base.maxver = 0, .ctor = nv50_disp_curs_new, .func = &nv50_disp_pioc_func, - .chid = 7, + .chid = { 7, 7 }, }; --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/disp/cursnv50.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/engine/disp/cursnv50.c @@ -33,7 +33,7 @@ int nv50_disp_curs_new(const struct nv50_disp_chan_func *func, const struct nv50_disp_chan_mthd *mthd, - struct nv50_disp_root *root, int chid, + struct nv50_disp_root *root, int ctrl, int user, const struct nvkm_oclass *oclass, void *data, u32 size, struct nvkm_object **pobject) { @@ -54,7 +54,7 @@ } else return ret; - return nv50_disp_chan_new_(func, mthd, root, chid + head, + return nv50_disp_chan_new_(func, mthd, root, ctrl + head, user + head, head, oclass, pobject); } @@ -65,5 +65,5 @@ .base.maxver = 0, .ctor = nv50_disp_curs_new, .func = &nv50_disp_pioc_func, - .chid = 7, + .chid = { 7, 7 }, }; --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/disp/dmacgf119.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/engine/disp/dmacgf119.c @@ -32,8 +32,8 @@ struct nvkm_object *object, u32 handle) { return nvkm_ramht_insert(chan->base.root->ramht, object, - chan->base.chid, -9, handle, - chan->base.chid << 27 | 0x00000001); + chan->base.chid.user, -9, handle, + chan->base.chid.user << 27 | 0x00000001); } void @@ -42,22 +42,23 @@ struct nv50_disp *disp = chan->base.root->disp; struct nvkm_subdev *subdev = &disp->base.engine.subdev; struct nvkm_device *device = subdev->device; - int chid = chan->base.chid; + int ctrl = chan->base.chid.ctrl; + int user = chan->base.chid.user; /* deactivate channel */ - nvkm_mask(device, 0x610490 + (chid * 0x0010), 0x00001010, 0x00001000); - nvkm_mask(device, 0x610490 + (chid * 0x0010), 0x00000003, 0x00000000); + nvkm_mask(device, 0x610490 + (ctrl * 0x0010), 0x00001010, 0x00001000); + nvkm_mask(device, 0x610490 + (ctrl * 0x0010), 0x00000003, 0x00000000); if (nvkm_msec(device, 2000, - if (!(nvkm_rd32(device, 0x610490 + (chid * 0x10)) & 0x001e0000)) + if (!(nvkm_rd32(device, 0x610490 + (ctrl * 0x10)) & 0x001e0000)) break; ) < 0) { - nvkm_error(subdev, "ch %d fini: %08x\n", chid, - nvkm_rd32(device, 0x610490 + (chid * 0x10))); + nvkm_error(subdev, "ch %d fini: %08x\n", user, + nvkm_rd32(device, 0x610490 + (ctrl * 0x10))); } /* disable error reporting and completion notification */ - nvkm_mask(device, 0x610090, 0x00000001 << chid, 0x00000000); - nvkm_mask(device, 0x6100a0, 0x00000001 << chid, 0x00000000); + nvkm_mask(device, 0x610090, 0x00000001 << user, 0x00000000); + nvkm_mask(device, 0x6100a0, 0x00000001 << user, 0x00000000); } static int @@ -66,26 +67,27 @@ struct nv50_disp *disp = chan->base.root->disp; struct nvkm_subdev *subdev = &disp->base.engine.subdev; struct nvkm_device *device = subdev->device; - int chid = chan->base.chid; + int ctrl = chan->base.chid.ctrl; + int user = chan->base.chid.user; /* enable error reporting */ - nvkm_mask(device, 0x6100a0, 0x00000001 << chid, 0x00000001 << chid); + nvkm_mask(device, 0x6100a0, 0x00000001 << user, 0x00000001 << user); /* initialise channel for dma command submission */ - nvkm_wr32(device, 0x610494 + (chid * 0x0010), chan->push); - nvkm_wr32(device, 0x610498 + (chid * 0x0010), 0x00010000); - nvkm_wr32(device, 0x61049c + (chid * 0x0010), 0x00000001); - nvkm_mask(device, 0x610490 + (chid * 0x0010), 0x00000010, 0x00000010); - nvkm_wr32(device, 0x640000 + (chid * 0x1000), 0x00000000); - nvkm_wr32(device, 0x610490 + (chid * 0x0010), 0x00000013); + nvkm_wr32(device, 0x610494 + (ctrl * 0x0010), chan->push); + nvkm_wr32(device, 0x610498 + (ctrl * 0x0010), 0x00010000); + nvkm_wr32(device, 0x61049c + (ctrl * 0x0010), 0x00000001); + nvkm_mask(device, 0x610490 + (ctrl * 0x0010), 0x00000010, 0x00000010); + nvkm_wr32(device, 0x640000 + (ctrl * 0x1000), 0x00000000); + nvkm_wr32(device, 0x610490 + (ctrl * 0x0010), 0x00000013); /* wait for it to go inactive */ if (nvkm_msec(device, 2000, - if (!(nvkm_rd32(device, 0x610490 + (chid * 0x10)) & 0x80000000)) + if (!(nvkm_rd32(device, 0x610490 + (ctrl * 0x10)) & 0x80000000)) break; ) < 0) { - nvkm_error(subdev, "ch %d init: %08x\n", chid, - nvkm_rd32(device, 0x610490 + (chid * 0x10))); + nvkm_error(subdev, "ch %d init: %08x\n", user, + nvkm_rd32(device, 0x610490 + (ctrl * 0x10))); return -EBUSY; } --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/disp/dmacgp104.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/engine/disp/dmacgp104.c @@ -32,26 +32,27 @@ struct nv50_disp *disp = chan->base.root->disp; struct nvkm_subdev *subdev = &disp->base.engine.subdev; struct nvkm_device *device = subdev->device; - int chid = chan->base.chid; + int ctrl = chan->base.chid.ctrl; + int user = chan->base.chid.user; /* enable error reporting */ - nvkm_mask(device, 0x6100a0, 0x00000001 << chid, 0x00000001 << chid); + nvkm_mask(device, 0x6100a0, 0x00000001 << user, 0x00000001 << user); /* initialise channel for dma command submission */ - nvkm_wr32(device, 0x611494 + (chid * 0x0010), chan->push); - nvkm_wr32(device, 0x611498 + (chid * 0x0010), 0x00010000); - nvkm_wr32(device, 0x61149c + (chid * 0x0010), 0x00000001); - nvkm_mask(device, 0x610490 + (chid * 0x0010), 0x00000010, 0x00000010); - nvkm_wr32(device, 0x640000 + (chid * 0x1000), 0x00000000); - nvkm_wr32(device, 0x610490 + (chid * 0x0010), 0x00000013); + nvkm_wr32(device, 0x611494 + (ctrl * 0x0010), chan->push); + nvkm_wr32(device, 0x611498 + (ctrl * 0x0010), 0x00010000); + nvkm_wr32(device, 0x61149c + (ctrl * 0x0010), 0x00000001); + nvkm_mask(device, 0x610490 + (ctrl * 0x0010), 0x00000010, 0x00000010); + nvkm_wr32(device, 0x640000 + (ctrl * 0x1000), 0x00000000); + nvkm_wr32(device, 0x610490 + (ctrl * 0x0010), 0x00000013); /* wait for it to go inactive */ if (nvkm_msec(device, 2000, - if (!(nvkm_rd32(device, 0x610490 + (chid * 0x10)) & 0x80000000)) + if (!(nvkm_rd32(device, 0x610490 + (ctrl * 0x10)) & 0x80000000)) break; ) < 0) { - nvkm_error(subdev, "ch %d init: %08x\n", chid, - nvkm_rd32(device, 0x610490 + (chid * 0x10))); + nvkm_error(subdev, "ch %d init: %08x\n", user, + nvkm_rd32(device, 0x610490 + (ctrl * 0x10))); return -EBUSY; } --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/disp/dmacnv50.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/engine/disp/dmacnv50.c @@ -149,7 +149,7 @@ chan->func = func; ret = nv50_disp_chan_ctor(&nv50_disp_dmac_func_, mthd, root, - chid, head, oclass, &chan->base); + chid, chid, head, oclass, &chan->base); if (ret) return ret; @@ -179,9 +179,9 @@ struct nvkm_object *object, u32 handle) { return nvkm_ramht_insert(chan->base.root->ramht, object, - chan->base.chid, -10, handle, - chan->base.chid << 28 | - chan->base.chid); + chan->base.chid.user, -10, handle, + chan->base.chid.user << 28 | + chan->base.chid.user); } static void @@ -190,21 +190,22 @@ struct nv50_disp *disp = chan->base.root->disp; struct nvkm_subdev *subdev = &disp->base.engine.subdev; struct nvkm_device *device = subdev->device; - int chid = chan->base.chid; + int ctrl = chan->base.chid.ctrl; + int user = chan->base.chid.user; /* deactivate channel */ - nvkm_mask(device, 0x610200 + (chid * 0x0010), 0x00001010, 0x00001000); - nvkm_mask(device, 0x610200 + (chid * 0x0010), 0x00000003, 0x00000000); + nvkm_mask(device, 0x610200 + (ctrl * 0x0010), 0x00001010, 0x00001000); + nvkm_mask(device, 0x610200 + (ctrl * 0x0010), 0x00000003, 0x00000000); if (nvkm_msec(device, 2000, - if (!(nvkm_rd32(device, 0x610200 + (chid * 0x10)) & 0x001e0000)) + if (!(nvkm_rd32(device, 0x610200 + (ctrl * 0x10)) & 0x001e0000)) break; ) < 0) { - nvkm_error(subdev, "ch %d fini timeout, %08x\n", chid, - nvkm_rd32(device, 0x610200 + (chid * 0x10))); + nvkm_error(subdev, "ch %d fini timeout, %08x\n", user, + nvkm_rd32(device, 0x610200 + (ctrl * 0x10))); } /* disable error reporting and completion notifications */ - nvkm_mask(device, 0x610028, 0x00010001 << chid, 0x00000000 << chid); + nvkm_mask(device, 0x610028, 0x00010001 << user, 0x00000000 << user); } static int @@ -213,26 +214,27 @@ struct nv50_disp *disp = chan->base.root->disp; struct nvkm_subdev *subdev = &disp->base.engine.subdev; struct nvkm_device *device = subdev->device; - int chid = chan->base.chid; + int ctrl = chan->base.chid.ctrl; + int user = chan->base.chid.user; /* enable error reporting */ - nvkm_mask(device, 0x610028, 0x00010000 << chid, 0x00010000 << chid); + nvkm_mask(device, 0x610028, 0x00010000 << user, 0x00010000 << user); /* initialise channel for dma command submission */ - nvkm_wr32(device, 0x610204 + (chid * 0x0010), chan->push); - nvkm_wr32(device, 0x610208 + (chid * 0x0010), 0x00010000); - nvkm_wr32(device, 0x61020c + (chid * 0x0010), chid); - nvkm_mask(device, 0x610200 + (chid * 0x0010), 0x00000010, 0x00000010); - nvkm_wr32(device, 0x640000 + (chid * 0x1000), 0x00000000); - nvkm_wr32(device, 0x610200 + (chid * 0x0010), 0x00000013); + nvkm_wr32(device, 0x610204 + (ctrl * 0x0010), chan->push); + nvkm_wr32(device, 0x610208 + (ctrl * 0x0010), 0x00010000); + nvkm_wr32(device, 0x61020c + (ctrl * 0x0010), ctrl); + nvkm_mask(device, 0x610200 + (ctrl * 0x0010), 0x00000010, 0x00000010); + nvkm_wr32(device, 0x640000 + (ctrl * 0x1000), 0x00000000); + nvkm_wr32(device, 0x610200 + (ctrl * 0x0010), 0x00000013); /* wait for it to go inactive */ if (nvkm_msec(device, 2000, - if (!(nvkm_rd32(device, 0x610200 + (chid * 0x10)) & 0x80000000)) + if (!(nvkm_rd32(device, 0x610200 + (ctrl * 0x10)) & 0x80000000)) break; ) < 0) { - nvkm_error(subdev, "ch %d init timeout, %08x\n", chid, - nvkm_rd32(device, 0x610200 + (chid * 0x10))); + nvkm_error(subdev, "ch %d init timeout, %08x\n", user, + nvkm_rd32(device, 0x610200 + (ctrl * 0x10))); return -EBUSY; } --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/disp/oimmg84.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/engine/disp/oimmg84.c @@ -33,5 +33,5 @@ .base.maxver = 0, .ctor = nv50_disp_oimm_new, .func = &nv50_disp_pioc_func, - .chid = 5, + .chid = { 5, 5 }, }; --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/disp/oimmgf119.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/engine/disp/oimmgf119.c @@ -33,5 +33,5 @@ .base.maxver = 0, .ctor = nv50_disp_oimm_new, .func = &gf119_disp_pioc_func, - .chid = 9, + .chid = { 9, 9 }, }; --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/disp/oimmgk104.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/engine/disp/oimmgk104.c @@ -33,5 +33,5 @@ .base.maxver = 0, .ctor = nv50_disp_oimm_new, .func = &gf119_disp_pioc_func, - .chid = 9, + .chid = { 9, 9 }, }; --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/disp/oimmgp102.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/engine/disp/oimmgp102.c @@ -0,0 +1,37 @@ +/* + * Copyright 2016 Red Hat Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR + * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, + * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + * OTHER DEALINGS IN THE SOFTWARE. + * + * Authors: Ben Skeggs + */ +#include "channv50.h" +#include "rootnv50.h" + +#include + +const struct nv50_disp_pioc_oclass +gp102_disp_oimm_oclass = { + .base.oclass = GK104_DISP_OVERLAY, + .base.minver = 0, + .base.maxver = 0, + .ctor = nv50_disp_oimm_new, + .func = &gf119_disp_pioc_func, + .chid = { 9, 13 }, +}; --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/disp/oimmgt215.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/engine/disp/oimmgt215.c @@ -33,5 +33,5 @@ .base.maxver = 0, .ctor = nv50_disp_oimm_new, .func = &nv50_disp_pioc_func, - .chid = 5, + .chid = { 5, 5 }, }; --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/disp/oimmnv50.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/engine/disp/oimmnv50.c @@ -33,7 +33,7 @@ int nv50_disp_oimm_new(const struct nv50_disp_chan_func *func, const struct nv50_disp_chan_mthd *mthd, - struct nv50_disp_root *root, int chid, + struct nv50_disp_root *root, int ctrl, int user, const struct nvkm_oclass *oclass, void *data, u32 size, struct nvkm_object **pobject) { @@ -54,7 +54,7 @@ } else return ret; - return nv50_disp_chan_new_(func, mthd, root, chid + head, + return nv50_disp_chan_new_(func, mthd, root, ctrl + head, user + head, head, oclass, pobject); } @@ -65,5 +65,5 @@ .base.maxver = 0, .ctor = nv50_disp_oimm_new, .func = &nv50_disp_pioc_func, - .chid = 5, + .chid = { 5, 5 }, }; --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/disp/piocgf119.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/engine/disp/piocgf119.c @@ -32,20 +32,21 @@ struct nv50_disp *disp = chan->root->disp; struct nvkm_subdev *subdev = &disp->base.engine.subdev; struct nvkm_device *device = subdev->device; - int chid = chan->chid; + int ctrl = chan->chid.ctrl; + int user = chan->chid.user; - nvkm_mask(device, 0x610490 + (chid * 0x10), 0x00000001, 0x00000000); + nvkm_mask(device, 0x610490 + (ctrl * 0x10), 0x00000001, 0x00000000); if (nvkm_msec(device, 2000, - if (!(nvkm_rd32(device, 0x610490 + (chid * 0x10)) & 0x00030000)) + if (!(nvkm_rd32(device, 0x610490 + (ctrl * 0x10)) & 0x00030000)) break; ) < 0) { - nvkm_error(subdev, "ch %d fini: %08x\n", chid, - nvkm_rd32(device, 0x610490 + (chid * 0x10))); + nvkm_error(subdev, "ch %d fini: %08x\n", user, + nvkm_rd32(device, 0x610490 + (ctrl * 0x10))); } /* disable error reporting and completion notification */ - nvkm_mask(device, 0x610090, 0x00000001 << chid, 0x00000000); - nvkm_mask(device, 0x6100a0, 0x00000001 << chid, 0x00000000); + nvkm_mask(device, 0x610090, 0x00000001 << user, 0x00000000); + nvkm_mask(device, 0x6100a0, 0x00000001 << user, 0x00000000); } static int @@ -54,20 +55,21 @@ struct nv50_disp *disp = chan->root->disp; struct nvkm_subdev *subdev = &disp->base.engine.subdev; struct nvkm_device *device = subdev->device; - int chid = chan->chid; + int ctrl = chan->chid.ctrl; + int user = chan->chid.user; /* enable error reporting */ - nvkm_mask(device, 0x6100a0, 0x00000001 << chid, 0x00000001 << chid); + nvkm_mask(device, 0x6100a0, 0x00000001 << user, 0x00000001 << user); /* activate channel */ - nvkm_wr32(device, 0x610490 + (chid * 0x10), 0x00000001); + nvkm_wr32(device, 0x610490 + (ctrl * 0x10), 0x00000001); if (nvkm_msec(device, 2000, - u32 tmp = nvkm_rd32(device, 0x610490 + (chid * 0x10)); + u32 tmp = nvkm_rd32(device, 0x610490 + (ctrl * 0x10)); if ((tmp & 0x00030000) == 0x00010000) break; ) < 0) { - nvkm_error(subdev, "ch %d init: %08x\n", chid, - nvkm_rd32(device, 0x610490 + (chid * 0x10))); + nvkm_error(subdev, "ch %d init: %08x\n", user, + nvkm_rd32(device, 0x610490 + (ctrl * 0x10))); return -EBUSY; } --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/disp/piocnv50.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/engine/disp/piocnv50.c @@ -32,15 +32,16 @@ struct nv50_disp *disp = chan->root->disp; struct nvkm_subdev *subdev = &disp->base.engine.subdev; struct nvkm_device *device = subdev->device; - int chid = chan->chid; + int ctrl = chan->chid.ctrl; + int user = chan->chid.user; - nvkm_mask(device, 0x610200 + (chid * 0x10), 0x00000001, 0x00000000); + nvkm_mask(device, 0x610200 + (ctrl * 0x10), 0x00000001, 0x00000000); if (nvkm_msec(device, 2000, - if (!(nvkm_rd32(device, 0x610200 + (chid * 0x10)) & 0x00030000)) + if (!(nvkm_rd32(device, 0x610200 + (ctrl * 0x10)) & 0x00030000)) break; ) < 0) { - nvkm_error(subdev, "ch %d timeout: %08x\n", chid, - nvkm_rd32(device, 0x610200 + (chid * 0x10))); + nvkm_error(subdev, "ch %d timeout: %08x\n", user, + nvkm_rd32(device, 0x610200 + (ctrl * 0x10))); } } @@ -50,26 +51,27 @@ struct nv50_disp *disp = chan->root->disp; struct nvkm_subdev *subdev = &disp->base.engine.subdev; struct nvkm_device *device = subdev->device; - int chid = chan->chid; + int ctrl = chan->chid.ctrl; + int user = chan->chid.user; - nvkm_wr32(device, 0x610200 + (chid * 0x10), 0x00002000); + nvkm_wr32(device, 0x610200 + (ctrl * 0x10), 0x00002000); if (nvkm_msec(device, 2000, - if (!(nvkm_rd32(device, 0x610200 + (chid * 0x10)) & 0x00030000)) + if (!(nvkm_rd32(device, 0x610200 + (ctrl * 0x10)) & 0x00030000)) break; ) < 0) { - nvkm_error(subdev, "ch %d timeout0: %08x\n", chid, - nvkm_rd32(device, 0x610200 + (chid * 0x10))); + nvkm_error(subdev, "ch %d timeout0: %08x\n", user, + nvkm_rd32(device, 0x610200 + (ctrl * 0x10))); return -EBUSY; } - nvkm_wr32(device, 0x610200 + (chid * 0x10), 0x00000001); + nvkm_wr32(device, 0x610200 + (ctrl * 0x10), 0x00000001); if (nvkm_msec(device, 2000, - u32 tmp = nvkm_rd32(device, 0x610200 + (chid * 0x10)); + u32 tmp = nvkm_rd32(device, 0x610200 + (ctrl * 0x10)); if ((tmp & 0x00030000) == 0x00010000) break; ) < 0) { - nvkm_error(subdev, "ch %d timeout1: %08x\n", chid, - nvkm_rd32(device, 0x610200 + (chid * 0x10))); + nvkm_error(subdev, "ch %d timeout1: %08x\n", user, + nvkm_rd32(device, 0x610200 + (ctrl * 0x10))); return -EBUSY; } --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/disp/rootgp104.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/engine/disp/rootgp104.c @@ -36,8 +36,8 @@ &gp104_disp_ovly_oclass, }, .pioc = { - &gk104_disp_oimm_oclass, - &gk104_disp_curs_oclass, + &gp102_disp_oimm_oclass, + &gp102_disp_curs_oclass, }, }; --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/disp/rootnv50.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/engine/disp/rootnv50.c @@ -207,8 +207,8 @@ { const struct nv50_disp_pioc_oclass *sclass = oclass->priv; struct nv50_disp_root *root = nv50_disp_root(oclass->parent); - return sclass->ctor(sclass->func, sclass->mthd, root, sclass->chid, - oclass, data, size, pobject); + return sclass->ctor(sclass->func, sclass->mthd, root, sclass->chid.ctrl, + sclass->chid.user, oclass, data, size, pobject); } static int --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/fifo/gpfifogf100.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/engine/fifo/gpfifogf100.c @@ -60,6 +60,7 @@ struct nvkm_gpuobj *inst = chan->base.inst; int ret = 0; + mutex_lock(&subdev->mutex); nvkm_wr32(device, 0x002634, chan->base.chid); if (nvkm_msec(device, 2000, if (nvkm_rd32(device, 0x002634) == chan->base.chid) @@ -67,10 +68,12 @@ ) < 0) { nvkm_error(subdev, "channel %d [%s] kick timeout\n", chan->base.chid, chan->base.object.client->name); - ret = -EBUSY; - if (suspend) - return ret; + ret = -ETIMEDOUT; } + mutex_unlock(&subdev->mutex); + + if (ret && suspend) + return ret; if (offset) { nvkm_kmap(inst); --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/fifo/gpfifogk104.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/engine/fifo/gpfifogk104.c @@ -40,7 +40,9 @@ struct nvkm_subdev *subdev = &fifo->base.engine.subdev; struct nvkm_device *device = subdev->device; struct nvkm_client *client = chan->base.object.client; + int ret = 0; + mutex_lock(&subdev->mutex); nvkm_wr32(device, 0x002634, chan->base.chid); if (nvkm_msec(device, 2000, if (!(nvkm_rd32(device, 0x002634) & 0x00100000)) @@ -48,10 +50,10 @@ ) < 0) { nvkm_error(subdev, "channel %d [%s] kick timeout\n", chan->base.chid, client->name); - return -EBUSY; + ret = -ETIMEDOUT; } - - return 0; + mutex_unlock(&subdev->mutex); + return ret; } static u32 --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/gr/gf100.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/engine/gr/gf100.c @@ -1756,6 +1756,50 @@ }; int +gf100_gr_ctor_fw_legacy(struct gf100_gr *gr, const char *fwname, + struct gf100_gr_fuc *fuc, int ret) +{ + struct nvkm_subdev *subdev = &gr->base.engine.subdev; + struct nvkm_device *device = subdev->device; + const struct firmware *fw; + char f[32]; + + /* see if this firmware has a legacy path */ + if (!strcmp(fwname, "fecs_inst")) + fwname = "fuc409c"; + else if (!strcmp(fwname, "fecs_data")) + fwname = "fuc409d"; + else if (!strcmp(fwname, "gpccs_inst")) + fwname = "fuc41ac"; + else if (!strcmp(fwname, "gpccs_data")) + fwname = "fuc41ad"; + else { + /* nope, let's just return the error we got */ + nvkm_error(subdev, "failed to load %s\n", fwname); + return ret; + } + + /* yes, try to load from the legacy path */ + nvkm_debug(subdev, "%s: falling back to legacy path\n", fwname); + + snprintf(f, sizeof(f), "nouveau/nv%02x_%s", device->chipset, fwname); + ret = request_firmware(&fw, f, device->dev); + if (ret) { + snprintf(f, sizeof(f), "nouveau/%s", fwname); + ret = request_firmware(&fw, f, device->dev); + if (ret) { + nvkm_error(subdev, "failed to load %s\n", fwname); + return ret; + } + } + + fuc->size = fw->size; + fuc->data = kmemdup(fw->data, fuc->size, GFP_KERNEL); + release_firmware(fw); + return (fuc->data != NULL) ? 0 : -ENOMEM; +} + +int gf100_gr_ctor_fw(struct gf100_gr *gr, const char *fwname, struct gf100_gr_fuc *fuc) { @@ -1765,10 +1809,8 @@ int ret; ret = nvkm_firmware_get(device, fwname, &fw); - if (ret) { - nvkm_error(subdev, "failed to load %s\n", fwname); - return ret; - } + if (ret) + return gf100_gr_ctor_fw_legacy(gr, fwname, fuc, ret); fuc->size = fw->size; fuc->data = kmemdup(fw->data, fuc->size, GFP_KERNEL); --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/subdev/bios/priv.h +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/subdev/bios/priv.h @@ -12,6 +12,7 @@ bool rw; bool ignore_checksum; bool no_pcir; + bool require_checksum; }; int nvbios_extend(struct nvkm_bios *, u32 length); --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadow.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadow.c @@ -86,9 +86,12 @@ nvbios_checksum(&bios->data[image.base], image.size)) { nvkm_debug(subdev, "%08x: checksum failed\n", image.base); - if (mthd->func->rw) + if (!mthd->func->require_checksum) { + if (mthd->func->rw) + score += 1; score += 1; - score += 1; + } else + return 0; } else { score += 3; } --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowacpi.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowacpi.c @@ -99,6 +99,7 @@ .init = acpi_init, .read = acpi_read_fast, .rw = false, + .require_checksum = true, }; const struct nvbios_source --- linux-4.8.0.orig/drivers/gpu/drm/nouveau/nvkm/subdev/ltc/base.c +++ linux-4.8.0/drivers/gpu/drm/nouveau/nvkm/subdev/ltc/base.c @@ -47,8 +47,10 @@ BUG_ON((first > limit) || (limit >= ltc->num_tags)); + mutex_lock(<c->subdev.mutex); ltc->func->cbc_clear(ltc, first, limit); ltc->func->cbc_wait(ltc); + mutex_unlock(<c->subdev.mutex); } int --- linux-4.8.0.orig/drivers/gpu/drm/radeon/ni.c +++ linux-4.8.0/drivers/gpu/drm/radeon/ni.c @@ -1396,9 +1396,7 @@ void cayman_cp_int_cntl_setup(struct radeon_device *rdev, int ring, u32 cp_int_cntl) { - u32 srbm_gfx_cntl = RREG32(SRBM_GFX_CNTL) & ~3; - - WREG32(SRBM_GFX_CNTL, srbm_gfx_cntl | (ring & 3)); + WREG32(SRBM_GFX_CNTL, RINGID(ring)); WREG32(CP_INT_CNTL, cp_int_cntl); } --- linux-4.8.0.orig/drivers/gpu/drm/radeon/r600_dpm.c +++ linux-4.8.0/drivers/gpu/drm/radeon/r600_dpm.c @@ -156,19 +156,20 @@ struct drm_device *dev = rdev->ddev; struct drm_crtc *crtc; struct radeon_crtc *radeon_crtc; - u32 line_time_us, vblank_lines; + u32 vblank_in_pixels; u32 vblank_time_us = 0xffffffff; /* if the displays are off, vblank time is max */ if (rdev->num_crtc && rdev->mode_info.mode_config_initialized) { list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { radeon_crtc = to_radeon_crtc(crtc); if (crtc->enabled && radeon_crtc->enabled && radeon_crtc->hw_mode.clock) { - line_time_us = (radeon_crtc->hw_mode.crtc_htotal * 1000) / - radeon_crtc->hw_mode.clock; - vblank_lines = radeon_crtc->hw_mode.crtc_vblank_end - - radeon_crtc->hw_mode.crtc_vdisplay + - (radeon_crtc->v_border * 2); - vblank_time_us = vblank_lines * line_time_us; + vblank_in_pixels = + radeon_crtc->hw_mode.crtc_htotal * + (radeon_crtc->hw_mode.crtc_vblank_end - + radeon_crtc->hw_mode.crtc_vdisplay + + (radeon_crtc->v_border * 2)); + + vblank_time_us = vblank_in_pixels * 1000 / radeon_crtc->hw_mode.clock; break; } } --- linux-4.8.0.orig/drivers/gpu/drm/radeon/radeon_atpx_handler.c +++ linux-4.8.0/drivers/gpu/drm/radeon/radeon_atpx_handler.c @@ -33,6 +33,7 @@ static struct radeon_atpx_priv { bool atpx_detected; + bool bridge_pm_usable; /* handle for device - and atpx */ acpi_handle dhandle; struct radeon_atpx atpx; @@ -198,7 +199,11 @@ atpx->is_hybrid = false; if (valid_bits & ATPX_MS_HYBRID_GFX_SUPPORTED) { printk("ATPX Hybrid Graphics\n"); - atpx->functions.power_cntl = false; + /* + * Disable legacy PM methods only when pcie port PM is usable, + * otherwise the device might fail to power off or power on. + */ + atpx->functions.power_cntl = !radeon_atpx_priv.bridge_pm_usable; atpx->is_hybrid = true; } @@ -543,11 +548,16 @@ struct pci_dev *pdev = NULL; bool has_atpx = false; int vga_count = 0; + bool d3_supported = false; + struct pci_dev *parent_pdev; while ((pdev = pci_get_class(PCI_CLASS_DISPLAY_VGA << 8, pdev)) != NULL) { vga_count++; has_atpx |= (radeon_atpx_pci_probe_handle(pdev) == true); + + parent_pdev = pci_upstream_bridge(pdev); + d3_supported |= parent_pdev && parent_pdev->bridge_d3; } /* some newer PX laptops mark the dGPU as a non-VGA display device */ @@ -555,6 +565,9 @@ vga_count++; has_atpx |= (radeon_atpx_pci_probe_handle(pdev) == true); + + parent_pdev = pci_upstream_bridge(pdev); + d3_supported |= parent_pdev && parent_pdev->bridge_d3; } if (has_atpx && vga_count == 2) { @@ -562,6 +575,7 @@ printk(KERN_INFO "vga_switcheroo: detected switching method %s handle\n", acpi_method_name); radeon_atpx_priv.atpx_detected = true; + radeon_atpx_priv.bridge_pm_usable = d3_supported; radeon_atpx_init(); return true; } --- linux-4.8.0.orig/drivers/gpu/drm/radeon/radeon_cursor.c +++ linux-4.8.0/drivers/gpu/drm/radeon/radeon_cursor.c @@ -90,6 +90,9 @@ struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); struct radeon_device *rdev = crtc->dev->dev_private; + if (radeon_crtc->cursor_out_of_bounds) + return; + if (ASIC_IS_DCE4(rdev)) { WREG32(EVERGREEN_CUR_SURFACE_ADDRESS_HIGH + radeon_crtc->crtc_offset, upper_32_bits(radeon_crtc->cursor_addr)); @@ -148,16 +151,17 @@ x += crtc->x; y += crtc->y; } - DRM_DEBUG("x %d y %d c->x %d c->y %d\n", x, y, crtc->x, crtc->y); - if (x < 0) { + if (x < 0) xorigin = min(-x, radeon_crtc->max_cursor_width - 1); - x = 0; - } - if (y < 0) { + if (y < 0) yorigin = min(-y, radeon_crtc->max_cursor_height - 1); - y = 0; + + if (!ASIC_IS_AVIVO(rdev)) { + x += crtc->x; + y += crtc->y; } + DRM_DEBUG("x %d y %d c->x %d c->y %d\n", x, y, crtc->x, crtc->y); /* fixed on DCE6 and newer */ if (ASIC_IS_AVIVO(rdev) && !ASIC_IS_DCE6(rdev)) { @@ -180,27 +184,31 @@ if (i > 1) { int cursor_end, frame_end; - cursor_end = x - xorigin + w; + cursor_end = x + w; frame_end = crtc->x + crtc->mode.crtc_hdisplay; if (cursor_end >= frame_end) { w = w - (cursor_end - frame_end); if (!(frame_end & 0x7f)) w--; - } else { - if (!(cursor_end & 0x7f)) - w--; + } else if (cursor_end <= 0) { + goto out_of_bounds; + } else if (!(cursor_end & 0x7f)) { + w--; } if (w <= 0) { - w = 1; - cursor_end = x - xorigin + w; - if (!(cursor_end & 0x7f)) { - x--; - WARN_ON_ONCE(x < 0); - } + goto out_of_bounds; } } } + if (x <= (crtc->x - w) || y <= (crtc->y - radeon_crtc->cursor_height) || + x >= (crtc->x + crtc->mode.crtc_hdisplay) || + y >= (crtc->y + crtc->mode.crtc_vdisplay)) + goto out_of_bounds; + + x += xorigin; + y += yorigin; + if (ASIC_IS_DCE4(rdev)) { WREG32(EVERGREEN_CUR_POSITION + radeon_crtc->crtc_offset, (x << 16) | y); WREG32(EVERGREEN_CUR_HOT_SPOT + radeon_crtc->crtc_offset, (xorigin << 16) | yorigin); @@ -212,6 +220,9 @@ WREG32(AVIVO_D1CUR_SIZE + radeon_crtc->crtc_offset, ((w - 1) << 16) | (radeon_crtc->cursor_height - 1)); } else { + x -= crtc->x; + y -= crtc->y; + if (crtc->mode.flags & DRM_MODE_FLAG_DBLSCAN) y *= 2; @@ -232,6 +243,19 @@ radeon_crtc->cursor_x = x; radeon_crtc->cursor_y = y; + if (radeon_crtc->cursor_out_of_bounds) { + radeon_crtc->cursor_out_of_bounds = false; + if (radeon_crtc->cursor_bo) + radeon_show_cursor(crtc); + } + + return 0; + + out_of_bounds: + if (!radeon_crtc->cursor_out_of_bounds) { + radeon_hide_cursor(crtc); + radeon_crtc->cursor_out_of_bounds = true; + } return 0; } @@ -297,22 +321,23 @@ return ret; } - radeon_crtc->cursor_width = width; - radeon_crtc->cursor_height = height; - radeon_lock_cursor(crtc, true); - if (hot_x != radeon_crtc->cursor_hot_x || + if (width != radeon_crtc->cursor_width || + height != radeon_crtc->cursor_height || + hot_x != radeon_crtc->cursor_hot_x || hot_y != radeon_crtc->cursor_hot_y) { int x, y; x = radeon_crtc->cursor_x + radeon_crtc->cursor_hot_x - hot_x; y = radeon_crtc->cursor_y + radeon_crtc->cursor_hot_y - hot_y; - radeon_cursor_move_locked(crtc, x, y); - + radeon_crtc->cursor_width = width; + radeon_crtc->cursor_height = height; radeon_crtc->cursor_hot_x = hot_x; radeon_crtc->cursor_hot_y = hot_y; + + radeon_cursor_move_locked(crtc, x, y); } radeon_show_cursor(crtc); --- linux-4.8.0.orig/drivers/gpu/drm/radeon/radeon_device.c +++ linux-4.8.0/drivers/gpu/drm/radeon/radeon_device.c @@ -104,6 +104,14 @@ "LAST", }; +#if defined(CONFIG_VGA_SWITCHEROO) +bool radeon_has_atpx_dgpu_power_cntl(void); +bool radeon_is_atpx_hybrid(void); +#else +static inline bool radeon_has_atpx_dgpu_power_cntl(void) { return false; } +static inline bool radeon_is_atpx_hybrid(void) { return false; } +#endif + #define RADEON_PX_QUIRK_DISABLE_PX (1 << 0) #define RADEON_PX_QUIRK_LONG_WAKEUP (1 << 1) @@ -160,6 +168,11 @@ if (rdev->px_quirk_flags & RADEON_PX_QUIRK_DISABLE_PX) rdev->flags &= ~RADEON_IS_PX; + + /* disable PX is the system doesn't support dGPU power control or hybrid gfx */ + if (!radeon_is_atpx_hybrid() && + !radeon_has_atpx_dgpu_power_cntl()) + rdev->flags &= ~RADEON_IS_PX; } /** @@ -661,8 +674,9 @@ { uint32_t reg; - /* for pass through, always force asic_init */ - if (radeon_device_is_virtual()) + /* for pass through, always force asic_init for CI */ + if (rdev->family >= CHIP_BONAIRE && + radeon_device_is_virtual()) return false; /* required for EFI mode on macbook2,1 which uses an r5xx asic */ --- linux-4.8.0.orig/drivers/gpu/drm/radeon/radeon_dp_auxch.c +++ linux-4.8.0/drivers/gpu/drm/radeon/radeon_dp_auxch.c @@ -105,7 +105,7 @@ tmp &= AUX_HPD_SEL(0x7); tmp |= AUX_HPD_SEL(chan->rec.hpd); - tmp |= AUX_EN | AUX_LS_READ_EN | AUX_HPD_DISCON(0x1); + tmp |= AUX_EN | AUX_LS_READ_EN; WREG32(AUX_CONTROL + aux_offset[instance], tmp); --- linux-4.8.0.orig/drivers/gpu/drm/radeon/radeon_mode.h +++ linux-4.8.0/drivers/gpu/drm/radeon/radeon_mode.h @@ -330,6 +330,7 @@ u16 lut_r[256], lut_g[256], lut_b[256]; bool enabled; bool can_tile; + bool cursor_out_of_bounds; uint32_t crtc_offset; struct drm_gem_object *cursor_bo; uint64_t cursor_addr; --- linux-4.8.0.orig/drivers/gpu/drm/radeon/si.c +++ linux-4.8.0/drivers/gpu/drm/radeon/si.c @@ -1722,6 +1722,7 @@ (rdev->pdev->revision == 0x80) || (rdev->pdev->revision == 0x81) || (rdev->pdev->revision == 0x83) || + (rdev->pdev->revision == 0x87) || (rdev->pdev->device == 0x6604) || (rdev->pdev->device == 0x6605)) new_smc = true; --- linux-4.8.0.orig/drivers/gpu/drm/radeon/si_dpm.c +++ linux-4.8.0/drivers/gpu/drm/radeon/si_dpm.c @@ -2999,6 +2999,37 @@ int i; struct si_dpm_quirk *p = si_dpm_quirk_list; + /* limit all SI kickers */ + if (rdev->family == CHIP_PITCAIRN) { + if ((rdev->pdev->revision == 0x81) || + (rdev->pdev->device == 0x6810) || + (rdev->pdev->device == 0x6811) || + (rdev->pdev->device == 0x6816) || + (rdev->pdev->device == 0x6817) || + (rdev->pdev->device == 0x6806)) + max_mclk = 120000; + } else if (rdev->family == CHIP_OLAND) { + if ((rdev->pdev->revision == 0xC7) || + (rdev->pdev->revision == 0x80) || + (rdev->pdev->revision == 0x81) || + (rdev->pdev->revision == 0x83) || + (rdev->pdev->revision == 0x87) || + (rdev->pdev->device == 0x6604) || + (rdev->pdev->device == 0x6605)) { + max_sclk = 75000; + max_mclk = 80000; + } + } else if (rdev->family == CHIP_HAINAN) { + if ((rdev->pdev->revision == 0x81) || + (rdev->pdev->revision == 0x83) || + (rdev->pdev->revision == 0xC3) || + (rdev->pdev->device == 0x6664) || + (rdev->pdev->device == 0x6665) || + (rdev->pdev->device == 0x6667)) { + max_sclk = 75000; + max_mclk = 80000; + } + } /* Apply dpm quirks */ while (p && p->chip_device != 0) { if (rdev->pdev->vendor == p->chip_vendor && @@ -3011,16 +3042,6 @@ } ++p; } - /* limit mclk on all R7 370 parts for stability */ - if (rdev->pdev->device == 0x6811 && - rdev->pdev->revision == 0x81) - max_mclk = 120000; - /* limit sclk/mclk on Jet parts for stability */ - if (rdev->pdev->device == 0x6665 && - rdev->pdev->revision == 0xc3) { - max_sclk = 75000; - max_mclk = 80000; - } if (rps->vce_active) { rps->evclk = rdev->pm.dpm.vce_states[rdev->pm.dpm.vce_level].evclk; @@ -4112,7 +4133,7 @@ &rdev->pm.dpm.dyn_state.phase_shedding_limits_table)) { si_populate_smc_voltage_table(rdev, &si_pi->vddc_phase_shed_table, table); - table->phaseMaskTable.lowMask[SISLANDS_SMC_VOLTAGEMASK_VDDC] = + table->phaseMaskTable.lowMask[SISLANDS_SMC_VOLTAGEMASK_VDDC_PHASE_SHEDDING] = cpu_to_be32(si_pi->vddc_phase_shed_table.mask_low); si_write_smc_soft_register(rdev, SI_SMC_SOFT_REGISTER_phase_shedding_delay, --- linux-4.8.0.orig/drivers/gpu/drm/radeon/sislands_smc.h +++ linux-4.8.0/drivers/gpu/drm/radeon/sislands_smc.h @@ -194,6 +194,7 @@ #define SISLANDS_SMC_VOLTAGEMASK_VDDC 0 #define SISLANDS_SMC_VOLTAGEMASK_MVDD 1 #define SISLANDS_SMC_VOLTAGEMASK_VDDCI 2 +#define SISLANDS_SMC_VOLTAGEMASK_VDDC_PHASE_SHEDDING 3 #define SISLANDS_SMC_VOLTAGEMASK_MAX 4 struct SISLANDS_SMC_VOLTAGEMASKTABLE --- linux-4.8.0.orig/drivers/gpu/drm/vc4/vc4_drv.h +++ linux-4.8.0/drivers/gpu/drm/vc4/vc4_drv.h @@ -122,9 +122,16 @@ struct vc4_bo { struct drm_gem_cma_object base; - /* seqno of the last job to render to this BO. */ + /* seqno of the last job to render using this BO. */ uint64_t seqno; + /* seqno of the last job to use the RCL to write to this BO. + * + * Note that this doesn't include binner overflow memory + * writes. + */ + uint64_t write_seqno; + /* List entry for the BO's position in either * vc4_exec_info->unref_list or vc4_dev->bo_cache.time_list */ @@ -216,6 +223,9 @@ /* Sequence number for this bin/render job. */ uint64_t seqno; + /* Latest write_seqno of any BO that binning depends on. */ + uint64_t bin_dep_seqno; + /* Last current addresses the hardware was processing when the * hangcheck timer checked on us. */ @@ -230,6 +240,13 @@ struct drm_gem_cma_object **bo; uint32_t bo_count; + /* List of BOs that are being written by the RCL. Other than + * the binner temporary storage, this is all the BOs written + * by the job. + */ + struct drm_gem_cma_object *rcl_write_bo[4]; + uint32_t rcl_write_bo_count; + /* Pointers for our position in vc4->job_list */ struct list_head head; --- linux-4.8.0.orig/drivers/gpu/drm/vc4/vc4_gem.c +++ linux-4.8.0/drivers/gpu/drm/vc4/vc4_gem.c @@ -471,6 +471,11 @@ list_for_each_entry(bo, &exec->unref_list, unref_head) { bo->seqno = seqno; } + + for (i = 0; i < exec->rcl_write_bo_count; i++) { + bo = to_vc4_bo(&exec->rcl_write_bo[i]->base); + bo->write_seqno = seqno; + } } /* Queues a struct vc4_exec_info for execution. If no job is @@ -598,6 +603,7 @@ sizeof(struct vc4_shader_state)) || temp_size < exec_size) { DRM_ERROR("overflow in exec arguments\n"); + ret = -EINVAL; goto fail; } @@ -673,6 +679,14 @@ goto fail; ret = vc4_validate_shader_recs(dev, exec); + if (ret) + goto fail; + + /* Block waiting on any previous rendering into the CS's VBO, + * IB, or textures, so that pixels are actually written by the + * time we try to read them. + */ + ret = vc4_wait_for_seqno(dev, exec->bin_dep_seqno, ~0ull, true); fail: drm_free_large(temp); --- linux-4.8.0.orig/drivers/gpu/drm/vc4/vc4_render_cl.c +++ linux-4.8.0/drivers/gpu/drm/vc4/vc4_render_cl.c @@ -45,6 +45,8 @@ struct drm_gem_cma_object *rcl; u32 next_offset; + + u32 next_write_bo_index; }; static inline void rcl_u8(struct vc4_rcl_setup *setup, u8 val) @@ -407,6 +409,8 @@ if (!*obj) return -EINVAL; + exec->rcl_write_bo[exec->rcl_write_bo_count++] = *obj; + if (surf->offset & 0xf) { DRM_ERROR("MSAA write must be 16b aligned.\n"); return -EINVAL; @@ -417,7 +421,8 @@ static int vc4_rcl_surface_setup(struct vc4_exec_info *exec, struct drm_gem_cma_object **obj, - struct drm_vc4_submit_rcl_surface *surf) + struct drm_vc4_submit_rcl_surface *surf, + bool is_write) { uint8_t tiling = VC4_GET_FIELD(surf->bits, VC4_LOADSTORE_TILE_BUFFER_TILING); @@ -440,6 +445,9 @@ if (!*obj) return -EINVAL; + if (is_write) + exec->rcl_write_bo[exec->rcl_write_bo_count++] = *obj; + if (surf->flags & VC4_SUBMIT_RCL_SURFACE_READ_IS_FULL_RES) { if (surf == &exec->args->zs_write) { DRM_ERROR("general zs write may not be a full-res.\n"); @@ -542,6 +550,8 @@ if (!*obj) return -EINVAL; + exec->rcl_write_bo[exec->rcl_write_bo_count++] = *obj; + if (tiling > VC4_TILING_FORMAT_LT) { DRM_ERROR("Bad tiling format\n"); return -EINVAL; @@ -599,15 +609,18 @@ if (ret) return ret; - ret = vc4_rcl_surface_setup(exec, &setup.color_read, &args->color_read); + ret = vc4_rcl_surface_setup(exec, &setup.color_read, &args->color_read, + false); if (ret) return ret; - ret = vc4_rcl_surface_setup(exec, &setup.zs_read, &args->zs_read); + ret = vc4_rcl_surface_setup(exec, &setup.zs_read, &args->zs_read, + false); if (ret) return ret; - ret = vc4_rcl_surface_setup(exec, &setup.zs_write, &args->zs_write); + ret = vc4_rcl_surface_setup(exec, &setup.zs_write, &args->zs_write, + true); if (ret) return ret; --- linux-4.8.0.orig/drivers/gpu/drm/vc4/vc4_validate.c +++ linux-4.8.0/drivers/gpu/drm/vc4/vc4_validate.c @@ -267,6 +267,9 @@ if (!ib) return -EINVAL; + exec->bin_dep_seqno = max(exec->bin_dep_seqno, + to_vc4_bo(&ib->base)->write_seqno); + if (offset > ib->base.size || (ib->base.size - offset) / index_size < length) { DRM_ERROR("IB access overflow (%d + %d*%d > %zd)\n", @@ -555,8 +558,7 @@ reloc_tex(struct vc4_exec_info *exec, void *uniform_data_u, struct vc4_texture_sample_info *sample, - uint32_t texture_handle_index) - + uint32_t texture_handle_index, bool is_cs) { struct drm_gem_cma_object *tex; uint32_t p0 = *(uint32_t *)(uniform_data_u + sample->p_offset[0]); @@ -714,6 +716,11 @@ *validated_p0 = tex->paddr + p0; + if (is_cs) { + exec->bin_dep_seqno = max(exec->bin_dep_seqno, + to_vc4_bo(&tex->base)->write_seqno); + } + return true; fail: DRM_INFO("Texture p0 at %d: 0x%08x\n", sample->p_offset[0], p0); @@ -835,7 +842,8 @@ if (!reloc_tex(exec, uniform_data_u, &validated_shader->texture_samples[tex], - texture_handles_u[tex])) { + texture_handles_u[tex], + i == 2)) { return -EINVAL; } } @@ -867,6 +875,9 @@ uint32_t stride = *(uint8_t *)(pkt_u + o + 5); uint32_t max_index; + exec->bin_dep_seqno = max(exec->bin_dep_seqno, + to_vc4_bo(&vbo->base)->write_seqno); + if (state->addr & 0x8) stride |= (*(uint32_t *)(pkt_u + 100 + i * 4)) & ~0xff; --- linux-4.8.0.orig/drivers/gpu/drm/virtio/virtgpu_drm_bus.c +++ linux-4.8.0/drivers/gpu/drm/virtio/virtgpu_drm_bus.c @@ -27,6 +27,16 @@ #include "virtgpu_drv.h" +int drm_virtio_set_busid(struct drm_device *dev, struct drm_master *master) +{ + struct pci_dev *pdev = dev->pdev; + + if (pdev) { + return drm_pci_set_busid(dev, master); + } + return 0; +} + static void virtio_pci_kick_out_firmware_fb(struct pci_dev *pci_dev) { struct apertures_struct *ap; --- linux-4.8.0.orig/drivers/gpu/drm/virtio/virtgpu_drv.c +++ linux-4.8.0/drivers/gpu/drm/virtio/virtgpu_drv.c @@ -117,6 +117,7 @@ static struct drm_driver driver = { .driver_features = DRIVER_MODESET | DRIVER_GEM | DRIVER_PRIME | DRIVER_RENDER | DRIVER_ATOMIC, + .set_busid = drm_virtio_set_busid, .load = virtio_gpu_driver_load, .unload = virtio_gpu_driver_unload, .open = virtio_gpu_driver_open, --- linux-4.8.0.orig/drivers/gpu/drm/virtio/virtgpu_drv.h +++ linux-4.8.0/drivers/gpu/drm/virtio/virtgpu_drv.h @@ -49,6 +49,7 @@ #define DRIVER_PATCHLEVEL 1 /* virtgpu_drm_bus.c */ +int drm_virtio_set_busid(struct drm_device *dev, struct drm_master *master); int drm_virtio_init(struct drm_driver *driver, struct virtio_device *vdev); struct virtio_gpu_object { --- linux-4.8.0.orig/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c +++ linux-4.8.0/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c @@ -34,6 +34,24 @@ #define VMW_RES_HT_ORDER 12 + /** + * enum vmw_resource_relocation_type - Relocation type for resources + * + * @vmw_res_rel_normal: Traditional relocation. The resource id in the + * command stream is replaced with the actual id after validation. + * @vmw_res_rel_nop: NOP relocation. The command is unconditionally replaced + * with a NOP. + * @vmw_res_rel_cond_nop: Conditional NOP relocation. If the resource id + * after validation is -1, the command is replaced with a NOP. Otherwise no + * action. + */ +enum vmw_resource_relocation_type { + vmw_res_rel_normal, + vmw_res_rel_nop, + vmw_res_rel_cond_nop, + vmw_res_rel_max +}; + /** * struct vmw_resource_relocation - Relocation info for resources * @@ -41,11 +59,13 @@ * @res: Non-ref-counted pointer to the resource. * @offset: Offset of 4 byte entries into the command buffer where the * id that needs fixup is located. + * @rel_type: Type of relocation. */ struct vmw_resource_relocation { struct list_head head; const struct vmw_resource *res; - unsigned long offset; + u32 offset:29; + enum vmw_resource_relocation_type rel_type:3; }; /** @@ -410,10 +430,13 @@ * @res: The resource. * @offset: Offset into the command buffer currently being parsed where the * id that needs fixup is located. Granularity is 4 bytes. + * @rel_type: Relocation type. */ static int vmw_resource_relocation_add(struct list_head *list, const struct vmw_resource *res, - unsigned long offset) + unsigned long offset, + enum vmw_resource_relocation_type + rel_type) { struct vmw_resource_relocation *rel; @@ -425,6 +448,7 @@ rel->res = res; rel->offset = offset; + rel->rel_type = rel_type; list_add_tail(&rel->head, list); return 0; @@ -459,11 +483,23 @@ { struct vmw_resource_relocation *rel; + /* Validate the struct vmw_resource_relocation member size */ + BUILD_BUG_ON(SVGA_CB_MAX_SIZE >= (1 << 29)); + BUILD_BUG_ON(vmw_res_rel_max >= (1 << 3)); + list_for_each_entry(rel, list, head) { - if (likely(rel->res != NULL)) + switch (rel->rel_type) { + case vmw_res_rel_normal: cb[rel->offset] = rel->res->id; - else + break; + case vmw_res_rel_nop: cb[rel->offset] = SVGA_3D_CMD_NOP; + break; + default: + if (rel->res->id == -1) + cb[rel->offset] = SVGA_3D_CMD_NOP; + break; + } } } @@ -655,7 +691,8 @@ *p_val = NULL; ret = vmw_resource_relocation_add(&sw_context->res_relocations, res, - id_loc - sw_context->buf_start); + id_loc - sw_context->buf_start, + vmw_res_rel_normal); if (unlikely(ret != 0)) return ret; @@ -721,7 +758,8 @@ return vmw_resource_relocation_add (&sw_context->res_relocations, res, - id_loc - sw_context->buf_start); + id_loc - sw_context->buf_start, + vmw_res_rel_normal); } ret = vmw_user_resource_lookup_handle(dev_priv, @@ -2144,7 +2182,8 @@ return vmw_resource_relocation_add(&sw_context->res_relocations, NULL, &cmd->header.id - - sw_context->buf_start); + sw_context->buf_start, + vmw_res_rel_nop); return 0; } @@ -2189,7 +2228,8 @@ return vmw_resource_relocation_add(&sw_context->res_relocations, NULL, &cmd->header.id - - sw_context->buf_start); + sw_context->buf_start, + vmw_res_rel_nop); return 0; } @@ -2848,8 +2888,7 @@ * @header: Pointer to the command header in the command stream. * * Check that the view exists, and if it was not created using this - * command batch, make sure it's validated (present in the device) so that - * the remove command will not confuse the device. + * command batch, conditionally make this command a NOP. */ static int vmw_cmd_dx_view_remove(struct vmw_private *dev_priv, struct vmw_sw_context *sw_context, @@ -2877,10 +2916,15 @@ return ret; /* - * Add view to the validate list iff it was not created using this - * command batch. + * If the view wasn't created during this command batch, it might + * have been removed due to a context swapout, so add a + * relocation to conditionally make this command a NOP to avoid + * device errors. */ - return vmw_view_res_val_add(sw_context, view); + return vmw_resource_relocation_add(&sw_context->res_relocations, + view, + &cmd->header.id - sw_context->buf_start, + vmw_res_rel_cond_nop); } /** @@ -3848,14 +3892,14 @@ int ret; *header = NULL; - if (!dev_priv->cman || kernel_commands) - return kernel_commands; - if (command_size > SVGA_CB_MAX_SIZE) { DRM_ERROR("Command buffer is too large.\n"); return ERR_PTR(-EINVAL); } + if (!dev_priv->cman || kernel_commands) + return kernel_commands; + /* If possible, add a little space for fencing. */ cmdbuf_size = command_size + 512; cmdbuf_size = min_t(size_t, cmdbuf_size, SVGA_CB_MAX_SIZE); --- linux-4.8.0.orig/drivers/gpu/drm/vmwgfx/vmwgfx_surface.c +++ linux-4.8.0/drivers/gpu/drm/vmwgfx/vmwgfx_surface.c @@ -715,8 +715,11 @@ 128; num_sizes = 0; - for (i = 0; i < DRM_VMW_MAX_SURFACE_FACES; ++i) + for (i = 0; i < DRM_VMW_MAX_SURFACE_FACES; ++i) { + if (req->mip_levels[i] > DRM_VMW_MAX_MIP_LEVELS) + return -EINVAL; num_sizes += req->mip_levels[i]; + } if (num_sizes > DRM_VMW_MAX_SURFACE_FACES * DRM_VMW_MAX_MIP_LEVELS) --- linux-4.8.0.orig/drivers/hid/Kconfig +++ linux-4.8.0/drivers/hid/Kconfig @@ -138,7 +138,7 @@ tristate "Asus" depends on I2C_HID ---help--- - Support for Asus notebook built-in keyboard via i2c. + Support for Asus notebook built-in keyboard and touchpad via i2c. Supported devices: - EeeBook X205TA --- linux-4.8.0.orig/drivers/hid/hid-alps.c +++ linux-4.8.0/drivers/hid/hid-alps.c @@ -190,16 +190,16 @@ if (z != 0) { input_mt_report_slot_state(hdata->input, MT_TOOL_FINGER, 1); + input_report_abs(hdata->input, + ABS_MT_POSITION_X, x); + input_report_abs(hdata->input, + ABS_MT_POSITION_Y, y); + input_report_abs(hdata->input, + ABS_MT_PRESSURE, z); } else { input_mt_report_slot_state(hdata->input, MT_TOOL_FINGER, 0); - break; } - - input_report_abs(hdata->input, ABS_MT_POSITION_X, x); - input_report_abs(hdata->input, ABS_MT_POSITION_Y, y); - input_report_abs(hdata->input, ABS_MT_PRESSURE, z); - } input_mt_sync_frame(hdata->input); --- linux-4.8.0.orig/drivers/hid/hid-asus.c +++ linux-4.8.0/drivers/hid/hid-asus.c @@ -11,6 +11,12 @@ * This module based on hid-ortek by * Copyright (c) 2010 Johnathon Harris * Copyright (c) 2011 Jiri Kosina + * + * This module has been updated to add support for Asus i2c touchpad. + * + * Copyright (c) 2016 Brendan McGrath + * Copyright (c) 2016 Victor Vlasenko + * Copyright (c) 2016 Frederik Wenigwieser */ /* @@ -20,16 +26,287 @@ * any later version. */ -#include #include #include +#include #include "hid-ids.h" +MODULE_AUTHOR("Yusuke Fujimaki "); +MODULE_AUTHOR("Brendan McGrath "); +MODULE_AUTHOR("Victor Vlasenko "); +MODULE_AUTHOR("Frederik Wenigwieser "); +MODULE_DESCRIPTION("Asus HID Keyboard and TouchPad"); + +#define FEATURE_REPORT_ID 0x0d +#define INPUT_REPORT_ID 0x5d + +#define INPUT_REPORT_SIZE 28 + +#define MAX_CONTACTS 5 + +#define MAX_X 2794 +#define MAX_Y 1758 +#define MAX_TOUCH_MAJOR 8 +#define MAX_PRESSURE 128 + +#define CONTACT_DATA_SIZE 5 + +#define BTN_LEFT_MASK 0x01 +#define CONTACT_TOOL_TYPE_MASK 0x80 +#define CONTACT_X_MSB_MASK 0xf0 +#define CONTACT_Y_MSB_MASK 0x0f +#define CONTACT_TOUCH_MAJOR_MASK 0x07 +#define CONTACT_PRESSURE_MASK 0x7f + +#define QUIRK_FIX_NOTEBOOK_REPORT BIT(0) +#define QUIRK_NO_INIT_REPORTS BIT(1) +#define QUIRK_SKIP_INPUT_MAPPING BIT(2) +#define QUIRK_IS_MULTITOUCH BIT(3) + +#define NOTEBOOK_QUIRKS QUIRK_FIX_NOTEBOOK_REPORT +#define TOUCHPAD_QUIRKS (QUIRK_NO_INIT_REPORTS | \ + QUIRK_SKIP_INPUT_MAPPING | \ + QUIRK_IS_MULTITOUCH) + +#define TRKID_SGN ((TRKID_MAX + 1) >> 1) + +struct asus_drvdata { + unsigned long quirks; + struct input_dev *input; +}; + +static void asus_report_contact_down(struct input_dev *input, + int toolType, u8 *data) +{ + int touch_major, pressure; + int x = (data[0] & CONTACT_X_MSB_MASK) << 4 | data[1]; + int y = MAX_Y - ((data[0] & CONTACT_Y_MSB_MASK) << 8 | data[2]); + + if (toolType == MT_TOOL_PALM) { + touch_major = MAX_TOUCH_MAJOR; + pressure = MAX_PRESSURE; + } else { + touch_major = (data[3] >> 4) & CONTACT_TOUCH_MAJOR_MASK; + pressure = data[4] & CONTACT_PRESSURE_MASK; + } + + input_report_abs(input, ABS_MT_POSITION_X, x); + input_report_abs(input, ABS_MT_POSITION_Y, y); + input_report_abs(input, ABS_MT_TOUCH_MAJOR, touch_major); + input_report_abs(input, ABS_MT_PRESSURE, pressure); +} + +/* Required for Synaptics Palm Detection */ +static void asus_report_tool_width(struct input_dev *input) +{ + struct input_mt *mt = input->mt; + struct input_mt_slot *oldest; + int oldid, count, i; + + oldest = NULL; + oldid = mt->trkid; + count = 0; + + for (i = 0; i < mt->num_slots; ++i) { + struct input_mt_slot *ps = &mt->slots[i]; + int id = input_mt_get_value(ps, ABS_MT_TRACKING_ID); + + if (id < 0) + continue; + if ((id - oldid) & TRKID_SGN) { + oldest = ps; + oldid = id; + } + count++; + } + + if (oldest) { + input_report_abs(input, ABS_TOOL_WIDTH, + input_mt_get_value(oldest, ABS_MT_TOUCH_MAJOR)); + } +} + +static void asus_report_input(struct input_dev *input, u8 *data) +{ + int i; + u8 *contactData = data + 2; + + for (i = 0; i < MAX_CONTACTS; i++) { + bool down = !!(data[1] & BIT(i+3)); + int toolType = contactData[3] & CONTACT_TOOL_TYPE_MASK ? + MT_TOOL_PALM : MT_TOOL_FINGER; + + input_mt_slot(input, i); + input_mt_report_slot_state(input, toolType, down); + + if (down) { + asus_report_contact_down(input, toolType, contactData); + contactData += CONTACT_DATA_SIZE; + } + } + + input_report_key(input, BTN_LEFT, data[1] & BTN_LEFT_MASK); + asus_report_tool_width(input); + + input_mt_sync_frame(input); + input_sync(input); +} + +static int asus_raw_event(struct hid_device *hdev, + struct hid_report *report, u8 *data, int size) +{ + struct asus_drvdata *drvdata = hid_get_drvdata(hdev); + + if (drvdata->quirks & QUIRK_IS_MULTITOUCH && + data[0] == INPUT_REPORT_ID && + size == INPUT_REPORT_SIZE) { + asus_report_input(drvdata->input, data); + return 1; + } + + return 0; +} + +static int asus_input_configured(struct hid_device *hdev, struct hid_input *hi) +{ + struct asus_drvdata *drvdata = hid_get_drvdata(hdev); + + if (drvdata->quirks & QUIRK_IS_MULTITOUCH) { + int ret; + struct input_dev *input = hi->input; + + input_set_abs_params(input, ABS_MT_POSITION_X, 0, MAX_X, 0, 0); + input_set_abs_params(input, ABS_MT_POSITION_Y, 0, MAX_Y, 0, 0); + input_set_abs_params(input, ABS_TOOL_WIDTH, 0, MAX_TOUCH_MAJOR, 0, 0); + input_set_abs_params(input, ABS_MT_TOUCH_MAJOR, 0, MAX_TOUCH_MAJOR, 0, 0); + input_set_abs_params(input, ABS_MT_PRESSURE, 0, MAX_PRESSURE, 0, 0); + + __set_bit(BTN_LEFT, input->keybit); + __set_bit(INPUT_PROP_BUTTONPAD, input->propbit); + + ret = input_mt_init_slots(input, MAX_CONTACTS, INPUT_MT_POINTER); + + if (ret) { + hid_err(hdev, "Asus input mt init slots failed: %d\n", ret); + return ret; + } + + drvdata->input = input; + } + + return 0; +} + +static int asus_input_mapping(struct hid_device *hdev, + struct hid_input *hi, struct hid_field *field, + struct hid_usage *usage, unsigned long **bit, + int *max) +{ + struct asus_drvdata *drvdata = hid_get_drvdata(hdev); + + if (drvdata->quirks & QUIRK_SKIP_INPUT_MAPPING) { + /* Don't map anything from the HID report. + * We do it all manually in asus_input_configured + */ + return -1; + } + + return 0; +} + +static int asus_start_multitouch(struct hid_device *hdev) +{ + int ret; + const unsigned char buf[] = { FEATURE_REPORT_ID, 0x00, 0x03, 0x01, 0x00 }; + unsigned char *dmabuf = kmemdup(buf, sizeof(buf), GFP_KERNEL); + + if (!dmabuf) { + ret = -ENOMEM; + hid_err(hdev, "Asus failed to alloc dma buf: %d\n", ret); + return ret; + } + + ret = hid_hw_raw_request(hdev, dmabuf[0], dmabuf, sizeof(buf), + HID_FEATURE_REPORT, HID_REQ_SET_REPORT); + + kfree(dmabuf); + + if (ret != sizeof(buf)) { + hid_err(hdev, "Asus failed to start multitouch: %d\n", ret); + return ret; + } + + return 0; +} + +static int __maybe_unused asus_reset_resume(struct hid_device *hdev) +{ + struct asus_drvdata *drvdata = hid_get_drvdata(hdev); + + if (drvdata->quirks & QUIRK_IS_MULTITOUCH) + return asus_start_multitouch(hdev); + + return 0; +} + +static int asus_probe(struct hid_device *hdev, const struct hid_device_id *id) +{ + int ret; + struct asus_drvdata *drvdata; + + drvdata = devm_kzalloc(&hdev->dev, sizeof(*drvdata), GFP_KERNEL); + if (drvdata == NULL) { + hid_err(hdev, "Can't alloc Asus descriptor\n"); + return -ENOMEM; + } + + hid_set_drvdata(hdev, drvdata); + + drvdata->quirks = id->driver_data; + + if (drvdata->quirks & QUIRK_NO_INIT_REPORTS) + hdev->quirks |= HID_QUIRK_NO_INIT_REPORTS; + + ret = hid_parse(hdev); + if (ret) { + hid_err(hdev, "Asus hid parse failed: %d\n", ret); + return ret; + } + + ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT); + if (ret) { + hid_err(hdev, "Asus hw start failed: %d\n", ret); + return ret; + } + + if (!drvdata->input) { + hid_err(hdev, "Asus input not registered\n"); + ret = -ENOMEM; + goto err_stop_hw; + } + + drvdata->input->name = "Asus TouchPad"; + + if (drvdata->quirks & QUIRK_IS_MULTITOUCH) { + ret = asus_start_multitouch(hdev); + if (ret) + goto err_stop_hw; + } + + return 0; +err_stop_hw: + hid_hw_stop(hdev); + return ret; +} + static __u8 *asus_report_fixup(struct hid_device *hdev, __u8 *rdesc, unsigned int *rsize) { - if (*rsize >= 56 && rdesc[54] == 0x25 && rdesc[55] == 0x65) { + struct asus_drvdata *drvdata = hid_get_drvdata(hdev); + + if (drvdata->quirks & QUIRK_FIX_NOTEBOOK_REPORT && + *rsize >= 56 && rdesc[54] == 0x25 && rdesc[55] == 0x65) { hid_info(hdev, "Fixing up Asus notebook report descriptor\n"); rdesc[55] = 0xdd; } @@ -37,15 +314,25 @@ } static const struct hid_device_id asus_devices[] = { - { HID_I2C_DEVICE(USB_VENDOR_ID_ASUSTEK, USB_DEVICE_ID_ASUSTEK_NOTEBOOK_KEYBOARD) }, + { HID_I2C_DEVICE(USB_VENDOR_ID_ASUSTEK, + USB_DEVICE_ID_ASUSTEK_NOTEBOOK_KEYBOARD), NOTEBOOK_QUIRKS}, + { HID_I2C_DEVICE(USB_VENDOR_ID_ASUSTEK, + USB_DEVICE_ID_ASUSTEK_TOUCHPAD), TOUCHPAD_QUIRKS }, { } }; MODULE_DEVICE_TABLE(hid, asus_devices); static struct hid_driver asus_driver = { - .name = "asus", - .id_table = asus_devices, - .report_fixup = asus_report_fixup + .name = "asus", + .id_table = asus_devices, + .report_fixup = asus_report_fixup, + .probe = asus_probe, + .input_mapping = asus_input_mapping, + .input_configured = asus_input_configured, +#ifdef CONFIG_PM + .reset_resume = asus_reset_resume, +#endif + .raw_event = asus_raw_event }; module_hid_driver(asus_driver); --- linux-4.8.0.orig/drivers/hid/hid-core.c +++ linux-4.8.0/drivers/hid/hid-core.c @@ -1856,6 +1856,7 @@ { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY) }, { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY) }, { HID_I2C_DEVICE(USB_VENDOR_ID_ASUSTEK, USB_DEVICE_ID_ASUSTEK_NOTEBOOK_KEYBOARD) }, + { HID_I2C_DEVICE(USB_VENDOR_ID_ASUSTEK, USB_DEVICE_ID_ASUSTEK_TOUCHPAD) }, { HID_USB_DEVICE(USB_VENDOR_ID_AUREAL, USB_DEVICE_ID_AUREAL_W01RN) }, { HID_USB_DEVICE(USB_VENDOR_ID_BELKIN, USB_DEVICE_ID_FLIP_KVM) }, { HID_USB_DEVICE(USB_VENDOR_ID_BETOP_2185BFM, 0x2208) }, --- linux-4.8.0.orig/drivers/hid/hid-ids.h +++ linux-4.8.0/drivers/hid/hid-ids.h @@ -64,6 +64,9 @@ #define USB_VENDOR_ID_AKAI 0x2011 #define USB_DEVICE_ID_AKAI_MPKMINI2 0x0715 +#define USB_VENDOR_ID_AKAI_09E8 0x09E8 +#define USB_DEVICE_ID_AKAI_09E8_MIDIMIX 0x0031 + #define USB_VENDOR_ID_ALCOR 0x058f #define USB_DEVICE_ID_ALCOR_USBRS232 0x9720 @@ -73,6 +76,9 @@ #define USB_VENDOR_ID_ALPS_JP 0x044E #define HID_DEVICE_ID_ALPS_U1_DUAL 0x120B +#define USB_VENDOR_ID_AMI 0x046b +#define USB_DEVICE_ID_AMI_VIRT_KEYBOARD_AND_MOUSE 0xff10 + #define USB_VENDOR_ID_ANTON 0x1130 #define USB_DEVICE_ID_ANTON_TOUCH_PAD 0x3101 @@ -168,6 +174,7 @@ #define USB_DEVICE_ID_ASUSTEK_LCM 0x1726 #define USB_DEVICE_ID_ASUSTEK_LCM2 0x175b #define USB_DEVICE_ID_ASUSTEK_NOTEBOOK_KEYBOARD 0x8585 +#define USB_DEVICE_ID_ASUSTEK_TOUCHPAD 0x0101 #define USB_VENDOR_ID_ATEN 0x0557 #define USB_DEVICE_ID_ATEN_UC100KM 0x2004 @@ -176,6 +183,7 @@ #define USB_DEVICE_ID_ATEN_4PORTKVM 0x2205 #define USB_DEVICE_ID_ATEN_4PORTKVMC 0x2208 #define USB_DEVICE_ID_ATEN_CS682 0x2213 +#define USB_DEVICE_ID_ATEN_CS692 0x8021 #define USB_VENDOR_ID_ATMEL 0x03eb #define USB_DEVICE_ID_ATMEL_MULTITOUCH 0x211c --- linux-4.8.0.orig/drivers/hid/usbhid/hid-quirks.c +++ linux-4.8.0/drivers/hid/usbhid/hid-quirks.c @@ -56,12 +56,15 @@ { USB_VENDOR_ID_AIREN, USB_DEVICE_ID_AIREN_SLIMPLUS, HID_QUIRK_NOGET }, { USB_VENDOR_ID_AKAI, USB_DEVICE_ID_AKAI_MPKMINI2, HID_QUIRK_NO_INIT_REPORTS }, + { USB_VENDOR_ID_AKAI_09E8, USB_DEVICE_ID_AKAI_09E8_MIDIMIX, HID_QUIRK_NO_INIT_REPORTS }, + { USB_VENDOR_ID_AMI, USB_DEVICE_ID_AMI_VIRT_KEYBOARD_AND_MOUSE, HID_QUIRK_ALWAYS_POLL }, { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_UC100KM, HID_QUIRK_NOGET }, { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_CS124U, HID_QUIRK_NOGET }, { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_2PORTKVM, HID_QUIRK_NOGET }, { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_4PORTKVM, HID_QUIRK_NOGET }, { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_4PORTKVMC, HID_QUIRK_NOGET }, { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_CS682, HID_QUIRK_NOGET }, + { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_CS692, HID_QUIRK_NOGET }, { USB_VENDOR_ID_CH, USB_DEVICE_ID_CH_FIGHTERSTICK, HID_QUIRK_NOGET }, { USB_VENDOR_ID_CH, USB_DEVICE_ID_CH_COMBATSTICK, HID_QUIRK_NOGET }, { USB_VENDOR_ID_CH, USB_DEVICE_ID_CH_FLIGHT_SIM_ECLIPSE_YOKE, HID_QUIRK_NOGET }, --- linux-4.8.0.orig/drivers/hv/channel.c +++ linux-4.8.0/drivers/hv/channel.c @@ -39,11 +39,16 @@ * vmbus_setevent- Trigger an event notification on the specified * channel. */ -static void vmbus_setevent(struct vmbus_channel *channel) +void vmbus_setevent(struct vmbus_channel *channel) { struct hv_monitor_page *monitorpage; - if (channel->offermsg.monitor_allocated) { + /* + * For channels marked as in "low latency" mode + * bypass the monitor page mechanism. + */ + if ((channel->offermsg.monitor_allocated) && + (!channel->low_latency)) { /* Each u32 represents 32 channels */ sync_set_bit(channel->offermsg.child_relid & 31, (unsigned long *) vmbus_connection.send_int_page + @@ -60,6 +65,7 @@ vmbus_set_event(channel); } } +EXPORT_SYMBOL_GPL(vmbus_setevent); /* * vmbus_open - Open the specified channel. @@ -70,12 +76,14 @@ { struct vmbus_channel_open_channel *open_msg; struct vmbus_channel_msginfo *open_info = NULL; - void *in, *out; unsigned long flags; int ret, err = 0; - unsigned long t; struct page *page; + if (send_ringbuffer_size % PAGE_SIZE || + recv_ringbuffer_size % PAGE_SIZE) + return -EINVAL; + spin_lock_irqsave(&newchannel->lock, flags); if (newchannel->state == CHANNEL_OPEN_STATE) { newchannel->state = CHANNEL_OPENING_STATE; @@ -95,36 +103,33 @@ recv_ringbuffer_size)); if (!page) - out = (void *)__get_free_pages(GFP_KERNEL|__GFP_ZERO, - get_order(send_ringbuffer_size + - recv_ringbuffer_size)); - else - out = (void *)page_address(page); + page = alloc_pages(GFP_KERNEL|__GFP_ZERO, + get_order(send_ringbuffer_size + + recv_ringbuffer_size)); - if (!out) { + if (!page) { err = -ENOMEM; - goto error0; + goto error_set_chnstate; } - in = (void *)((unsigned long)out + send_ringbuffer_size); - - newchannel->ringbuffer_pages = out; + newchannel->ringbuffer_pages = page_address(page); newchannel->ringbuffer_pagecount = (send_ringbuffer_size + recv_ringbuffer_size) >> PAGE_SHIFT; - ret = hv_ringbuffer_init( - &newchannel->outbound, out, send_ringbuffer_size); + ret = hv_ringbuffer_init(&newchannel->outbound, page, + send_ringbuffer_size >> PAGE_SHIFT); if (ret != 0) { err = ret; - goto error0; + goto error_free_pages; } - ret = hv_ringbuffer_init( - &newchannel->inbound, in, recv_ringbuffer_size); + ret = hv_ringbuffer_init(&newchannel->inbound, + &page[send_ringbuffer_size >> PAGE_SHIFT], + recv_ringbuffer_size >> PAGE_SHIFT); if (ret != 0) { err = ret; - goto error0; + goto error_free_pages; } @@ -132,14 +137,14 @@ newchannel->ringbuffer_gpadlhandle = 0; ret = vmbus_establish_gpadl(newchannel, - newchannel->outbound.ring_buffer, - send_ringbuffer_size + - recv_ringbuffer_size, - &newchannel->ringbuffer_gpadlhandle); + page_address(page), + send_ringbuffer_size + + recv_ringbuffer_size, + &newchannel->ringbuffer_gpadlhandle); if (ret != 0) { err = ret; - goto error0; + goto error_free_pages; } /* Create and init the channel open message */ @@ -148,10 +153,11 @@ GFP_KERNEL); if (!open_info) { err = -ENOMEM; - goto error_gpadl; + goto error_free_gpadl; } init_completion(&open_info->waitevent); + open_info->waiting_channel = newchannel; open_msg = (struct vmbus_channel_open_channel *)open_info->msg; open_msg->header.msgtype = CHANNELMSG_OPENCHANNEL; @@ -164,7 +170,7 @@ if (userdatalen > MAX_USER_DEFINED_BYTES) { err = -EINVAL; - goto error_gpadl; + goto error_free_gpadl; } if (userdatalen) @@ -176,44 +182,47 @@ spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); ret = vmbus_post_msg(open_msg, - sizeof(struct vmbus_channel_open_channel)); + sizeof(struct vmbus_channel_open_channel), true); if (ret != 0) { err = ret; - goto error1; + goto error_clean_msglist; } - t = wait_for_completion_timeout(&open_info->waitevent, 5*HZ); - if (t == 0) { - err = -ETIMEDOUT; - goto error1; - } + wait_for_completion(&open_info->waitevent); spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); list_del(&open_info->msglistentry); spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); + if (newchannel->rescind) { + err = -ENODEV; + goto error_free_gpadl; + } + if (open_info->response.open_result.status) { err = -EAGAIN; - goto error_gpadl; + goto error_free_gpadl; } newchannel->state = CHANNEL_OPENED_STATE; kfree(open_info); return 0; -error1: +error_clean_msglist: spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); list_del(&open_info->msglistentry); spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); -error_gpadl: +error_free_gpadl: vmbus_teardown_gpadl(newchannel, newchannel->ringbuffer_gpadlhandle); - -error0: - free_pages((unsigned long)out, - get_order(send_ringbuffer_size + recv_ringbuffer_size)); kfree(open_info); +error_free_pages: + hv_ringbuffer_cleanup(&newchannel->outbound); + hv_ringbuffer_cleanup(&newchannel->inbound); + __free_pages(page, + get_order(send_ringbuffer_size + recv_ringbuffer_size)); +error_set_chnstate: newchannel->state = CHANNEL_OPEN_STATE; return err; } @@ -230,7 +239,7 @@ conn_msg.guest_endpoint_id = *shv_guest_servie_id; conn_msg.host_service_id = *shv_host_servie_id; - return vmbus_post_msg(&conn_msg, sizeof(conn_msg)); + return vmbus_post_msg(&conn_msg, sizeof(conn_msg), true); } EXPORT_SYMBOL_GPL(vmbus_send_tl_connect_request); @@ -238,8 +247,7 @@ * create_gpadl_header - Creates a gpadl for the specified buffer */ static int create_gpadl_header(void *kbuffer, u32 size, - struct vmbus_channel_msginfo **msginfo, - u32 *messagecount) + struct vmbus_channel_msginfo **msginfo) { int i; int pagecount; @@ -283,7 +291,6 @@ gpadl_header->range[0].pfn_array[i] = slow_virt_to_phys( kbuffer + PAGE_SIZE * i) >> PAGE_SHIFT; *msginfo = msgheader; - *messagecount = 1; pfnsum = pfncount; pfnleft = pagecount - pfncount; @@ -323,7 +330,6 @@ } msgbody->msgsize = msgsize; - (*messagecount)++; gpadl_body = (struct vmbus_channel_gpadl_body *)msgbody->msg; @@ -352,6 +358,8 @@ msgheader = kzalloc(msgsize, GFP_KERNEL); if (msgheader == NULL) goto nomem; + + INIT_LIST_HEAD(&msgheader->submsglist); msgheader->msgsize = msgsize; gpadl_header = (struct vmbus_channel_gpadl_header *) @@ -366,7 +374,6 @@ kbuffer + PAGE_SIZE * i) >> PAGE_SHIFT; *msginfo = msgheader; - *messagecount = 1; } return 0; @@ -390,8 +397,7 @@ struct vmbus_channel_gpadl_header *gpadlmsg; struct vmbus_channel_gpadl_body *gpadl_body; struct vmbus_channel_msginfo *msginfo = NULL; - struct vmbus_channel_msginfo *submsginfo; - u32 msgcount; + struct vmbus_channel_msginfo *submsginfo, *tmp; struct list_head *curr; u32 next_gpadl_handle; unsigned long flags; @@ -400,11 +406,12 @@ next_gpadl_handle = (atomic_inc_return(&vmbus_connection.next_gpadl_handle) - 1); - ret = create_gpadl_header(kbuffer, size, &msginfo, &msgcount); + ret = create_gpadl_header(kbuffer, size, &msginfo); if (ret) return ret; init_completion(&msginfo->waitevent); + msginfo->waiting_channel = channel; gpadlmsg = (struct vmbus_channel_gpadl_header *)msginfo->msg; gpadlmsg->header.msgtype = CHANNELMSG_GPADL_HEADER; @@ -419,31 +426,33 @@ spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); ret = vmbus_post_msg(gpadlmsg, msginfo->msgsize - - sizeof(*msginfo)); + sizeof(*msginfo), true); if (ret != 0) goto cleanup; - if (msgcount > 1) { - list_for_each(curr, &msginfo->submsglist) { - - submsginfo = (struct vmbus_channel_msginfo *)curr; - gpadl_body = - (struct vmbus_channel_gpadl_body *)submsginfo->msg; - - gpadl_body->header.msgtype = - CHANNELMSG_GPADL_BODY; - gpadl_body->gpadl = next_gpadl_handle; - - ret = vmbus_post_msg(gpadl_body, - submsginfo->msgsize - - sizeof(*submsginfo)); - if (ret != 0) - goto cleanup; + list_for_each(curr, &msginfo->submsglist) { + submsginfo = (struct vmbus_channel_msginfo *)curr; + gpadl_body = + (struct vmbus_channel_gpadl_body *)submsginfo->msg; + + gpadl_body->header.msgtype = + CHANNELMSG_GPADL_BODY; + gpadl_body->gpadl = next_gpadl_handle; + + ret = vmbus_post_msg(gpadl_body, + submsginfo->msgsize - sizeof(*submsginfo), + true); + if (ret != 0) + goto cleanup; - } } wait_for_completion(&msginfo->waitevent); + if (channel->rescind) { + ret = -ENODEV; + goto cleanup; + } + /* At this point, we received the gpadl created msg */ *gpadl_handle = gpadlmsg->gpadl; @@ -451,6 +460,10 @@ spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); list_del(&msginfo->msglistentry); spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); + list_for_each_entry_safe(submsginfo, tmp, &msginfo->submsglist, + msglistentry) { + kfree(submsginfo); + } kfree(msginfo); return ret; @@ -473,6 +486,7 @@ return -ENOMEM; init_completion(&info->waitevent); + info->waiting_channel = channel; msg = (struct vmbus_channel_gpadl_teardown *)info->msg; @@ -484,14 +498,19 @@ list_add_tail(&info->msglistentry, &vmbus_connection.chn_msg_list); spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); - ret = vmbus_post_msg(msg, - sizeof(struct vmbus_channel_gpadl_teardown)); + ret = vmbus_post_msg(msg, sizeof(struct vmbus_channel_gpadl_teardown), + true); if (ret) goto post_msg_err; wait_for_completion(&info->waitevent); + if (channel->rescind) { + ret = -ENODEV; + goto post_msg_err; + } + post_msg_err: spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); list_del(&info->msglistentry); @@ -512,7 +531,6 @@ static int vmbus_close_internal(struct vmbus_channel *channel) { struct vmbus_channel_close_channel *msg; - struct tasklet_struct *tasklet; int ret; /* @@ -524,8 +542,7 @@ * To resolve the race, we can serialize them by disabling the * tasklet when the latter is running here. */ - tasklet = hv_context.event_dpc[channel->target_cpu]; - tasklet_disable(tasklet); + hv_event_tasklet_disable(channel); /* * In case a device driver's probe() fails (e.g., @@ -558,7 +575,8 @@ msg->header.msgtype = CHANNELMSG_CLOSECHANNEL; msg->child_relid = channel->offermsg.child_relid; - ret = vmbus_post_msg(msg, sizeof(struct vmbus_channel_close_channel)); + ret = vmbus_post_msg(msg, sizeof(struct vmbus_channel_close_channel), + true); if (ret) { pr_err("Close failed: close post msg return is %d\n", ret); @@ -591,7 +609,7 @@ get_order(channel->ringbuffer_pagecount * PAGE_SIZE)); out: - tasklet_enable(tasklet); + hv_event_tasklet_enable(channel); return ret; } @@ -637,8 +655,6 @@ u32 packetlen_aligned = ALIGN(packetlen, sizeof(u64)); struct kvec bufferlist[3]; u64 aligned_data = 0; - int ret; - bool signal = false; bool lock = channel->acquire_ring_lock; int num_vecs = ((bufferlen != 0) ? 3 : 1); @@ -658,38 +674,9 @@ bufferlist[2].iov_base = &aligned_data; bufferlist[2].iov_len = (packetlen_aligned - packetlen); - ret = hv_ringbuffer_write(&channel->outbound, bufferlist, num_vecs, - &signal, lock); - - /* - * Signalling the host is conditional on many factors: - * 1. The ring state changed from being empty to non-empty. - * This is tracked by the variable "signal". - * 2. The variable kick_q tracks if more data will be placed - * on the ring. We will not signal if more data is - * to be placed. - * - * Based on the channel signal state, we will decide - * which signaling policy will be applied. - * - * If we cannot write to the ring-buffer; signal the host - * even if we may not have written anything. This is a rare - * enough condition that it should not matter. - * NOTE: in this case, the hvsock channel is an exception, because - * it looks the host side's hvsock implementation has a throttling - * mechanism which can hurt the performance otherwise. - */ - - if (channel->signal_policy) - signal = true; - else - kick_q = true; - - if (((ret == 0) && kick_q && signal) || - (ret && !is_hvsock_channel(channel))) - vmbus_setevent(channel); + return hv_ringbuffer_write(channel, bufferlist, num_vecs, + lock, kick_q); - return ret; } EXPORT_SYMBOL(vmbus_sendpacket_ctl); @@ -730,7 +717,6 @@ u32 flags, bool kick_q) { - int ret; int i; struct vmbus_channel_packet_page_buffer desc; u32 descsize; @@ -738,7 +724,6 @@ u32 packetlen_aligned; struct kvec bufferlist[3]; u64 aligned_data = 0; - bool signal = false; bool lock = channel->acquire_ring_lock; if (pagecount > MAX_PAGE_BUFFER_COUNT) @@ -776,34 +761,8 @@ bufferlist[2].iov_base = &aligned_data; bufferlist[2].iov_len = (packetlen_aligned - packetlen); - ret = hv_ringbuffer_write(&channel->outbound, bufferlist, 3, - &signal, lock); - - /* - * Signalling the host is conditional on many factors: - * 1. The ring state changed from being empty to non-empty. - * This is tracked by the variable "signal". - * 2. The variable kick_q tracks if more data will be placed - * on the ring. We will not signal if more data is - * to be placed. - * - * Based on the channel signal state, we will decide - * which signaling policy will be applied. - * - * If we cannot write to the ring-buffer; signal the host - * even if we may not have written anything. This is a rare - * enough condition that it should not matter. - */ - - if (channel->signal_policy) - signal = true; - else - kick_q = true; - - if (((ret == 0) && kick_q && signal) || (ret)) - vmbus_setevent(channel); - - return ret; + return hv_ringbuffer_write(channel, bufferlist, 3, + lock, kick_q); } EXPORT_SYMBOL_GPL(vmbus_sendpacket_pagebuffer_ctl); @@ -834,12 +793,10 @@ u32 desc_size, void *buffer, u32 bufferlen, u64 requestid) { - int ret; u32 packetlen; u32 packetlen_aligned; struct kvec bufferlist[3]; u64 aligned_data = 0; - bool signal = false; bool lock = channel->acquire_ring_lock; packetlen = desc_size + bufferlen; @@ -860,13 +817,8 @@ bufferlist[2].iov_base = &aligned_data; bufferlist[2].iov_len = (packetlen_aligned - packetlen); - ret = hv_ringbuffer_write(&channel->outbound, bufferlist, 3, - &signal, lock); - - if (ret == 0 && signal) - vmbus_setevent(channel); - - return ret; + return hv_ringbuffer_write(channel, bufferlist, 3, + lock, true); } EXPORT_SYMBOL_GPL(vmbus_sendpacket_mpb_desc); @@ -878,14 +830,12 @@ struct hv_multipage_buffer *multi_pagebuffer, void *buffer, u32 bufferlen, u64 requestid) { - int ret; struct vmbus_channel_packet_multipage_buffer desc; u32 descsize; u32 packetlen; u32 packetlen_aligned; struct kvec bufferlist[3]; u64 aligned_data = 0; - bool signal = false; bool lock = channel->acquire_ring_lock; u32 pfncount = NUM_PAGES_SPANNED(multi_pagebuffer->offset, multi_pagebuffer->len); @@ -925,13 +875,8 @@ bufferlist[2].iov_base = &aligned_data; bufferlist[2].iov_len = (packetlen_aligned - packetlen); - ret = hv_ringbuffer_write(&channel->outbound, bufferlist, 3, - &signal, lock); - - if (ret == 0 && signal) - vmbus_setevent(channel); - - return ret; + return hv_ringbuffer_write(channel, bufferlist, 3, + lock, true); } EXPORT_SYMBOL_GPL(vmbus_sendpacket_multipagebuffer); @@ -953,16 +898,9 @@ u32 bufferlen, u32 *buffer_actual_len, u64 *requestid, bool raw) { - int ret; - bool signal = false; + return hv_ringbuffer_read(channel, buffer, bufferlen, + buffer_actual_len, requestid, raw); - ret = hv_ringbuffer_read(&channel->inbound, buffer, bufferlen, - buffer_actual_len, requestid, &signal, raw); - - if (signal) - vmbus_setevent(channel); - - return ret; } int vmbus_recvpacket(struct vmbus_channel *channel, void *buffer, --- linux-4.8.0.orig/drivers/hv/channel_mgmt.c +++ linux-4.8.0/drivers/hv/channel_mgmt.c @@ -21,6 +21,7 @@ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include +#include #include #include #include @@ -30,6 +31,7 @@ #include #include #include +#include #include "hyperv_vmbus.h" @@ -138,10 +140,55 @@ }, }; -static u16 hv_get_dev_type(const uuid_le *guid) +static const struct { + uuid_le guid; +} vmbus_unsupported_devs[] = { + { HV_AVMA1_GUID }, + { HV_AVMA2_GUID }, + { HV_RDV_GUID }, +}; + +/* + * The rescinded channel may be blocked waiting for a response from the host; + * take care of that. + */ +static void vmbus_rescind_cleanup(struct vmbus_channel *channel) +{ + struct vmbus_channel_msginfo *msginfo; + unsigned long flags; + + + spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); + + list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list, + msglistentry) { + + if (msginfo->waiting_channel == channel) { + complete(&msginfo->waitevent); + break; + } + } + spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); +} + +static bool is_unsupported_vmbus_devs(const uuid_le *guid) +{ + int i; + + for (i = 0; i < ARRAY_SIZE(vmbus_unsupported_devs); i++) + if (!uuid_le_cmp(*guid, vmbus_unsupported_devs[i].guid)) + return true; + return false; +} + +static u16 hv_get_dev_type(const struct vmbus_channel *channel) { + const uuid_le *guid = &channel->offermsg.offer.if_type; u16 i; + if (is_hvsock_channel(channel) || is_unsupported_vmbus_devs(guid)) + return HV_UNKOWN; + for (i = HV_IDE; i < HV_UNKOWN; i++) { if (!uuid_le_cmp(*guid, vmbus_devs[i].guid)) return i; @@ -157,33 +204,34 @@ * @buf: Raw buffer channel data * * @icmsghdrp is of type &struct icmsg_hdr. - * @negop is of type &struct icmsg_negotiate. * Set up and fill in default negotiate response message. * - * The fw_version specifies the framework version that - * we can support and srv_version specifies the service - * version we can support. + * The fw_version and fw_vercnt specifies the framework version that + * we can support. + * + * The srv_version and srv_vercnt specifies the service + * versions we can support. + * + * Versions are given in decreasing order. + * + * nego_fw_version and nego_srv_version store the selected protocol versions. * * Mainly used by Hyper-V drivers. */ bool vmbus_prep_negotiate_resp(struct icmsg_hdr *icmsghdrp, - struct icmsg_negotiate *negop, u8 *buf, - int fw_version, int srv_version) + u8 *buf, const int *fw_version, int fw_vercnt, + const int *srv_version, int srv_vercnt, + int *nego_fw_version, int *nego_srv_version) { int icframe_major, icframe_minor; int icmsg_major, icmsg_minor; int fw_major, fw_minor; int srv_major, srv_minor; - int i; + int i, j; bool found_match = false; + struct icmsg_negotiate *negop; icmsghdrp->icmsgsize = 0x10; - fw_major = (fw_version >> 16); - fw_minor = (fw_version & 0xFFFF); - - srv_major = (srv_version >> 16); - srv_minor = (srv_version & 0xFFFF); - negop = (struct icmsg_negotiate *)&buf[ sizeof(struct vmbuspipe_hdr) + sizeof(struct icmsg_hdr)]; @@ -199,13 +247,22 @@ * support. */ - for (i = 0; i < negop->icframe_vercnt; i++) { - if ((negop->icversion_data[i].major == fw_major) && - (negop->icversion_data[i].minor == fw_minor)) { - icframe_major = negop->icversion_data[i].major; - icframe_minor = negop->icversion_data[i].minor; - found_match = true; + for (i = 0; i < fw_vercnt; i++) { + fw_major = (fw_version[i] >> 16); + fw_minor = (fw_version[i] & 0xFFFF); + + for (j = 0; j < negop->icframe_vercnt; j++) { + if ((negop->icversion_data[j].major == fw_major) && + (negop->icversion_data[j].minor == fw_minor)) { + icframe_major = negop->icversion_data[j].major; + icframe_minor = negop->icversion_data[j].minor; + found_match = true; + break; + } } + + if (found_match) + break; } if (!found_match) @@ -213,14 +270,26 @@ found_match = false; - for (i = negop->icframe_vercnt; - (i < negop->icframe_vercnt + negop->icmsg_vercnt); i++) { - if ((negop->icversion_data[i].major == srv_major) && - (negop->icversion_data[i].minor == srv_minor)) { - icmsg_major = negop->icversion_data[i].major; - icmsg_minor = negop->icversion_data[i].minor; - found_match = true; + for (i = 0; i < srv_vercnt; i++) { + srv_major = (srv_version[i] >> 16); + srv_minor = (srv_version[i] & 0xFFFF); + + for (j = negop->icframe_vercnt; + (j < negop->icframe_vercnt + negop->icmsg_vercnt); + j++) { + + if ((negop->icversion_data[j].major == srv_major) && + (negop->icversion_data[j].minor == srv_minor)) { + + icmsg_major = negop->icversion_data[j].major; + icmsg_minor = negop->icversion_data[j].minor; + found_match = true; + break; + } } + + if (found_match) + break; } /* @@ -237,6 +306,12 @@ negop->icmsg_vercnt = 1; } + if (nego_fw_version) + *nego_fw_version = (icframe_major << 16) | icframe_minor; + + if (nego_srv_version) + *nego_srv_version = (icmsg_major << 16) | icmsg_minor; + negop->icversion_data[0].major = icframe_major; negop->icversion_data[0].minor = icframe_minor; negop->icversion_data[1].major = icmsg_major; @@ -251,14 +326,12 @@ */ static struct vmbus_channel *alloc_channel(void) { - static atomic_t chan_num = ATOMIC_INIT(0); struct vmbus_channel *channel; channel = kzalloc(sizeof(*channel), GFP_ATOMIC); if (!channel) return NULL; - channel->id = atomic_inc_return(&chan_num); channel->acquire_ring_lock = true; spin_lock_init(&channel->inbound_lock); spin_lock_init(&channel->lock); @@ -300,7 +373,25 @@ memset(&msg, 0, sizeof(struct vmbus_channel_relid_released)); msg.child_relid = relid; msg.header.msgtype = CHANNELMSG_RELID_RELEASED; - vmbus_post_msg(&msg, sizeof(struct vmbus_channel_relid_released)); + vmbus_post_msg(&msg, sizeof(struct vmbus_channel_relid_released), + true); +} + +void hv_event_tasklet_disable(struct vmbus_channel *channel) +{ + struct tasklet_struct *tasklet; + tasklet = hv_context.event_dpc[channel->target_cpu]; + tasklet_disable(tasklet); +} + +void hv_event_tasklet_enable(struct vmbus_channel *channel) +{ + struct tasklet_struct *tasklet; + tasklet = hv_context.event_dpc[channel->target_cpu]; + tasklet_enable(tasklet); + + /* In case there is any pending event */ + tasklet_schedule(tasklet); } void hv_process_channel_removal(struct vmbus_channel *channel, u32 relid) @@ -308,11 +399,10 @@ unsigned long flags; struct vmbus_channel *primary_channel; - vmbus_release_relid(relid); - BUG_ON(!channel->rescind); BUG_ON(!mutex_is_locked(&vmbus_connection.channel_mutex)); + hv_event_tasklet_disable(channel); if (channel->target_cpu != get_cpu()) { put_cpu(); smp_call_function_single(channel->target_cpu, @@ -321,6 +411,7 @@ percpu_channel_deq(channel); put_cpu(); } + hv_event_tasklet_enable(channel); if (channel->primary_channel == NULL) { list_del(&channel->listentry); @@ -338,8 +429,11 @@ * We need to free the bit for init_vp_index() to work in the case * of sub-channel, when we reload drivers like hv_netvsc. */ - cpumask_clear_cpu(channel->target_cpu, - &primary_channel->alloced_cpus_in_node); + if (channel->affinity_policy == HV_LOCALIZED) + cpumask_clear_cpu(channel->target_cpu, + &primary_channel->alloced_cpus_in_node); + + vmbus_release_relid(relid); free_channel(channel); } @@ -348,6 +442,7 @@ { struct vmbus_channel *channel, *tmp; + mutex_lock(&vmbus_connection.channel_mutex); list_for_each_entry_safe(channel, tmp, &vmbus_connection.chn_list, listentry) { /* hv_process_channel_removal() needs this */ @@ -355,6 +450,7 @@ vmbus_device_unregister(channel->device_obj); } + mutex_unlock(&vmbus_connection.channel_mutex); } /* @@ -405,10 +501,11 @@ goto err_free_chan; } - dev_type = hv_get_dev_type(&newchannel->offermsg.offer.if_type); + dev_type = hv_get_dev_type(newchannel); init_vp_index(newchannel, dev_type); + hv_event_tasklet_disable(newchannel); if (newchannel->target_cpu != get_cpu()) { put_cpu(); smp_call_function_single(newchannel->target_cpu, @@ -418,6 +515,7 @@ percpu_channel_enq(newchannel); put_cpu(); } + hv_event_tasklet_enable(newchannel); /* * This state is used to indicate a successful open @@ -463,12 +561,11 @@ return; err_deq_chan: - vmbus_release_relid(newchannel->offermsg.child_relid); - mutex_lock(&vmbus_connection.channel_mutex); list_del(&newchannel->listentry); mutex_unlock(&vmbus_connection.channel_mutex); + hv_event_tasklet_disable(newchannel); if (newchannel->target_cpu != get_cpu()) { put_cpu(); smp_call_function_single(newchannel->target_cpu, @@ -477,6 +574,9 @@ percpu_channel_deq(newchannel); put_cpu(); } + hv_event_tasklet_enable(newchannel); + + vmbus_release_relid(newchannel->offermsg.child_relid); err_free_chan: free_channel(newchannel); @@ -522,17 +622,17 @@ } /* - * We distribute primary channels evenly across all the available - * NUMA nodes and within the assigned NUMA node we will assign the - * first available CPU to the primary channel. - * The sub-channels will be assigned to the CPUs available in the - * NUMA node evenly. + * Based on the channel affinity policy, we will assign the NUMA + * nodes. */ - if (!primary) { + + if ((channel->affinity_policy == HV_BALANCED) || (!primary)) { while (true) { next_node = next_numa_node_id++; - if (next_node == nr_node_ids) + if (next_node == nr_node_ids) { next_node = next_numa_node_id = 0; + continue; + } if (cpumask_empty(cpumask_of_node(next_node))) continue; break; @@ -556,15 +656,17 @@ cur_cpu = -1; - /* - * Normally Hyper-V host doesn't create more subchannels than there - * are VCPUs on the node but it is possible when not all present VCPUs - * on the node are initialized by guest. Clear the alloced_cpus_in_node - * to start over. - */ - if (cpumask_equal(&primary->alloced_cpus_in_node, - cpumask_of_node(primary->numa_node))) - cpumask_clear(&primary->alloced_cpus_in_node); + if (primary->affinity_policy == HV_LOCALIZED) { + /* + * Normally Hyper-V host doesn't create more subchannels + * than there are VCPUs on the node but it is possible when not + * all present VCPUs on the node are initialized by guest. + * Clear the alloced_cpus_in_node to start over. + */ + if (cpumask_equal(&primary->alloced_cpus_in_node, + cpumask_of_node(primary->numa_node))) + cpumask_clear(&primary->alloced_cpus_in_node); + } while (true) { cur_cpu = cpumask_next(cur_cpu, &available_mask); @@ -575,17 +677,24 @@ continue; } - /* - * NOTE: in the case of sub-channel, we clear the sub-channel - * related bit(s) in primary->alloced_cpus_in_node in - * hv_process_channel_removal(), so when we reload drivers - * like hv_netvsc in SMP guest, here we're able to re-allocate - * bit from primary->alloced_cpus_in_node. - */ - if (!cpumask_test_cpu(cur_cpu, - &primary->alloced_cpus_in_node)) { - cpumask_set_cpu(cur_cpu, - &primary->alloced_cpus_in_node); + if (primary->affinity_policy == HV_LOCALIZED) { + /* + * NOTE: in the case of sub-channel, we clear the + * sub-channel related bit(s) in + * primary->alloced_cpus_in_node in + * hv_process_channel_removal(), so when we + * reload drivers like hv_netvsc in SMP guest, here + * we're able to re-allocate + * bit from primary->alloced_cpus_in_node. + */ + if (!cpumask_test_cpu(cur_cpu, + &primary->alloced_cpus_in_node)) { + cpumask_set_cpu(cur_cpu, + &primary->alloced_cpus_in_node); + cpumask_set_cpu(cur_cpu, alloced_mask); + break; + } + } else { cpumask_set_cpu(cur_cpu, alloced_mask); break; } @@ -672,7 +781,8 @@ init_completion(&vmbus_connection.unload_event); memset(&hdr, 0, sizeof(struct vmbus_channel_message_header)); hdr.msgtype = CHANNELMSG_UNLOAD; - vmbus_post_msg(&hdr, sizeof(struct vmbus_channel_message_header)); + vmbus_post_msg(&hdr, sizeof(struct vmbus_channel_message_header), + !crash); /* * vmbus_initiate_unload() is also called on crash and the crash can be @@ -767,6 +877,8 @@ channel->rescind = true; spin_unlock_irqrestore(&channel->lock, flags); + vmbus_rescind_cleanup(channel); + if (channel->device_obj) { if (channel->chn_rescind_callback) { channel->chn_rescind_callback(channel); @@ -1060,8 +1172,8 @@ msg->msgtype = CHANNELMSG_REQUESTOFFERS; - ret = vmbus_post_msg(msg, - sizeof(struct vmbus_channel_message_header)); + ret = vmbus_post_msg(msg, sizeof(struct vmbus_channel_message_header), + true); if (ret != 0) { pr_err("Unable to request offers - %d\n", ret); --- linux-4.8.0.orig/drivers/hv/connection.c +++ linux-4.8.0/drivers/hv/connection.c @@ -110,7 +110,8 @@ spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); ret = vmbus_post_msg(msg, - sizeof(struct vmbus_channel_initiate_contact)); + sizeof(struct vmbus_channel_initiate_contact), + true); if (ret != 0) { spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); list_del(&msginfo->msglistentry); @@ -219,11 +220,8 @@ goto cleanup; vmbus_proto_version = version; - pr_info("Hyper-V Host Build:%d-%d.%d-%d-%d.%d; Vmbus version:%d.%d\n", - host_info_eax, host_info_ebx >> 16, - host_info_ebx & 0xFFFF, host_info_ecx, - host_info_edx >> 24, host_info_edx & 0xFFFFFF, - version >> 16, version & 0xFFFF); + pr_info("Vmbus version:%d.%d\n", + version >> 16, version & 0xFFFF); kfree(msginfo); return 0; @@ -434,12 +432,12 @@ /* * vmbus_post_msg - Send a msg on the vmbus's message connection */ -int vmbus_post_msg(void *buffer, size_t buflen) +int vmbus_post_msg(void *buffer, size_t buflen, bool can_sleep) { union hv_connection_id conn_id; int ret = 0; int retries = 0; - u32 msec = 1; + u32 usec = 1; conn_id.asu32 = 0; conn_id.u.id = VMBUS_MESSAGE_CONNECTION_ID; @@ -449,7 +447,7 @@ * insufficient resources. Retry the operation a couple of * times before giving up. */ - while (retries < 20) { + while (retries < 100) { ret = hv_post_message(conn_id, 1, buffer, buflen); switch (ret) { @@ -472,9 +470,15 @@ } retries++; - msleep(msec); - if (msec < 2048) - msec *= 2; + if (can_sleep && usec > 1000) + msleep(usec / 1000); + else if (usec < MAX_UDELAY_MS * 1000) + udelay(usec); + else + mdelay(usec / 1000); + + if (usec < 256000) + usec *= 2; } return ret; } --- linux-4.8.0.orig/drivers/hv/hv.c +++ linux-4.8.0/drivers/hv/hv.c @@ -36,7 +36,6 @@ /* The one and only */ struct hv_context hv_context = { .synic_initialized = false, - .hypercall_page = NULL, }; #define HV_TIMER_FREQUENCY (10 * 1000 * 1000) /* 100ns period */ @@ -44,156 +43,12 @@ #define HV_MIN_DELTA_TICKS 1 /* - * query_hypervisor_info - Get version info of the windows hypervisor - */ -unsigned int host_info_eax; -unsigned int host_info_ebx; -unsigned int host_info_ecx; -unsigned int host_info_edx; - -static int query_hypervisor_info(void) -{ - unsigned int eax; - unsigned int ebx; - unsigned int ecx; - unsigned int edx; - unsigned int max_leaf; - unsigned int op; - - /* - * Its assumed that this is called after confirming that Viridian - * is present. Query id and revision. - */ - eax = 0; - ebx = 0; - ecx = 0; - edx = 0; - op = HVCPUID_VENDOR_MAXFUNCTION; - cpuid(op, &eax, &ebx, &ecx, &edx); - - max_leaf = eax; - - if (max_leaf >= HVCPUID_VERSION) { - eax = 0; - ebx = 0; - ecx = 0; - edx = 0; - op = HVCPUID_VERSION; - cpuid(op, &eax, &ebx, &ecx, &edx); - host_info_eax = eax; - host_info_ebx = ebx; - host_info_ecx = ecx; - host_info_edx = edx; - } - return max_leaf; -} - -/* - * hv_do_hypercall- Invoke the specified hypercall - */ -u64 hv_do_hypercall(u64 control, void *input, void *output) -{ - u64 input_address = (input) ? virt_to_phys(input) : 0; - u64 output_address = (output) ? virt_to_phys(output) : 0; - void *hypercall_page = hv_context.hypercall_page; -#ifdef CONFIG_X86_64 - u64 hv_status = 0; - - if (!hypercall_page) - return (u64)ULLONG_MAX; - - __asm__ __volatile__("mov %0, %%r8" : : "r" (output_address) : "r8"); - __asm__ __volatile__("call *%3" : "=a" (hv_status) : - "c" (control), "d" (input_address), - "m" (hypercall_page)); - - return hv_status; - -#else - - u32 control_hi = control >> 32; - u32 control_lo = control & 0xFFFFFFFF; - u32 hv_status_hi = 1; - u32 hv_status_lo = 1; - u32 input_address_hi = input_address >> 32; - u32 input_address_lo = input_address & 0xFFFFFFFF; - u32 output_address_hi = output_address >> 32; - u32 output_address_lo = output_address & 0xFFFFFFFF; - - if (!hypercall_page) - return (u64)ULLONG_MAX; - - __asm__ __volatile__ ("call *%8" : "=d"(hv_status_hi), - "=a"(hv_status_lo) : "d" (control_hi), - "a" (control_lo), "b" (input_address_hi), - "c" (input_address_lo), "D"(output_address_hi), - "S"(output_address_lo), "m" (hypercall_page)); - - return hv_status_lo | ((u64)hv_status_hi << 32); -#endif /* !x86_64 */ -} -EXPORT_SYMBOL_GPL(hv_do_hypercall); - -#ifdef CONFIG_X86_64 -static cycle_t read_hv_clock_tsc(struct clocksource *arg) -{ - cycle_t current_tick; - struct ms_hyperv_tsc_page *tsc_pg = hv_context.tsc_page; - - if (tsc_pg->tsc_sequence != 0) { - /* - * Use the tsc page to compute the value. - */ - - while (1) { - cycle_t tmp; - u32 sequence = tsc_pg->tsc_sequence; - u64 cur_tsc; - u64 scale = tsc_pg->tsc_scale; - s64 offset = tsc_pg->tsc_offset; - - rdtscll(cur_tsc); - /* current_tick = ((cur_tsc *scale) >> 64) + offset */ - asm("mulq %3" - : "=d" (current_tick), "=a" (tmp) - : "a" (cur_tsc), "r" (scale)); - - current_tick += offset; - if (tsc_pg->tsc_sequence == sequence) - return current_tick; - - if (tsc_pg->tsc_sequence != 0) - continue; - /* - * Fallback using MSR method. - */ - break; - } - } - rdmsrl(HV_X64_MSR_TIME_REF_COUNT, current_tick); - return current_tick; -} - -static struct clocksource hyperv_cs_tsc = { - .name = "hyperv_clocksource_tsc_page", - .rating = 425, - .read = read_hv_clock_tsc, - .mask = CLOCKSOURCE_MASK(64), - .flags = CLOCK_SOURCE_IS_CONTINUOUS, -}; -#endif - - -/* * hv_init - Main initialization routine. * * This routine must be called before any other routines in here are called */ int hv_init(void) { - int max_leaf; - union hv_x64_msr_hypercall_contents hypercall_msr; - void *virtaddr = NULL; memset(hv_context.synic_event_page, 0, sizeof(void *) * NR_CPUS); memset(hv_context.synic_message_page, 0, @@ -209,109 +64,10 @@ memset(hv_context.clk_evt, 0, sizeof(void *) * NR_CPUS); - max_leaf = query_hypervisor_info(); - - /* - * Write our OS ID. - */ - hv_context.guestid = generate_guest_id(0, LINUX_VERSION_CODE, 0); - wrmsrl(HV_X64_MSR_GUEST_OS_ID, hv_context.guestid); - - /* See if the hypercall page is already set */ - rdmsrl(HV_X64_MSR_HYPERCALL, hypercall_msr.as_uint64); - - virtaddr = __vmalloc(PAGE_SIZE, GFP_KERNEL, PAGE_KERNEL_EXEC); - - if (!virtaddr) - goto cleanup; + if (!hv_is_hypercall_page_setup()) + return -ENOTSUPP; - hypercall_msr.enable = 1; - - hypercall_msr.guest_physical_address = vmalloc_to_pfn(virtaddr); - wrmsrl(HV_X64_MSR_HYPERCALL, hypercall_msr.as_uint64); - - /* Confirm that hypercall page did get setup. */ - hypercall_msr.as_uint64 = 0; - rdmsrl(HV_X64_MSR_HYPERCALL, hypercall_msr.as_uint64); - - if (!hypercall_msr.enable) - goto cleanup; - - hv_context.hypercall_page = virtaddr; - -#ifdef CONFIG_X86_64 - if (ms_hyperv.features & HV_X64_MSR_REFERENCE_TSC_AVAILABLE) { - union hv_x64_msr_hypercall_contents tsc_msr; - void *va_tsc; - - va_tsc = __vmalloc(PAGE_SIZE, GFP_KERNEL, PAGE_KERNEL); - if (!va_tsc) - goto cleanup; - hv_context.tsc_page = va_tsc; - - rdmsrl(HV_X64_MSR_REFERENCE_TSC, tsc_msr.as_uint64); - - tsc_msr.enable = 1; - tsc_msr.guest_physical_address = vmalloc_to_pfn(va_tsc); - - wrmsrl(HV_X64_MSR_REFERENCE_TSC, tsc_msr.as_uint64); - clocksource_register_hz(&hyperv_cs_tsc, NSEC_PER_SEC/100); - } -#endif return 0; - -cleanup: - if (virtaddr) { - if (hypercall_msr.enable) { - hypercall_msr.as_uint64 = 0; - wrmsrl(HV_X64_MSR_HYPERCALL, hypercall_msr.as_uint64); - } - - vfree(virtaddr); - } - - return -ENOTSUPP; -} - -/* - * hv_cleanup - Cleanup routine. - * - * This routine is called normally during driver unloading or exiting. - */ -void hv_cleanup(void) -{ - union hv_x64_msr_hypercall_contents hypercall_msr; - - /* Reset our OS id */ - wrmsrl(HV_X64_MSR_GUEST_OS_ID, 0); - - if (hv_context.hypercall_page) { - hypercall_msr.as_uint64 = 0; - wrmsrl(HV_X64_MSR_HYPERCALL, hypercall_msr.as_uint64); - vfree(hv_context.hypercall_page); - hv_context.hypercall_page = NULL; - } - -#ifdef CONFIG_X86_64 - /* - * Cleanup the TSC page based CS. - */ - if (ms_hyperv.features & HV_X64_MSR_REFERENCE_TSC_AVAILABLE) { - /* - * Crash can happen in an interrupt context and unregistering - * a clocksource is impossible and redundant in this case. - */ - if (!oops_in_progress) { - clocksource_change_rating(&hyperv_cs_tsc, 10); - clocksource_unregister(&hyperv_cs_tsc); - } - - hypercall_msr.as_uint64 = 0; - wrmsrl(HV_X64_MSR_REFERENCE_TSC, hypercall_msr.as_uint64); - vfree(hv_context.tsc_page); - hv_context.tsc_page = NULL; - } -#endif } /* @@ -352,16 +108,16 @@ WARN_ON(!clockevent_state_oneshot(evt)); - rdmsrl(HV_X64_MSR_TIME_REF_COUNT, current_tick); + hv_get_current_tick(current_tick); current_tick += delta; - wrmsrl(HV_X64_MSR_STIMER0_COUNT, current_tick); + hv_init_timer(HV_X64_MSR_STIMER0_COUNT, current_tick); return 0; } static int hv_ce_shutdown(struct clock_event_device *evt) { - wrmsrl(HV_X64_MSR_STIMER0_COUNT, 0); - wrmsrl(HV_X64_MSR_STIMER0_CONFIG, 0); + hv_init_timer(HV_X64_MSR_STIMER0_COUNT, 0); + hv_init_timer_config(HV_X64_MSR_STIMER0_CONFIG, 0); return 0; } @@ -373,7 +129,7 @@ timer_cfg.enable = 1; timer_cfg.auto_enable = 1; timer_cfg.sintx = VMBUS_MESSAGE_SINT; - wrmsrl(HV_X64_MSR_STIMER0_CONFIG, timer_cfg.as_uint64); + hv_init_timer_config(HV_X64_MSR_STIMER0_CONFIG, timer_cfg.as_uint64); return 0; } @@ -409,7 +165,7 @@ goto err; } - for_each_online_cpu(cpu) { + for_each_present_cpu(cpu) { hv_context.event_dpc[cpu] = kmalloc(size, GFP_ATOMIC); if (hv_context.event_dpc[cpu] == NULL) { pr_err("Unable to allocate event dpc\n"); @@ -455,6 +211,8 @@ pr_err("Unable to allocate post msg page\n"); goto err; } + + INIT_LIST_HEAD(&hv_context.percpu_list[cpu]); } return 0; @@ -480,7 +238,7 @@ int cpu; kfree(hv_context.hv_numa_map); - for_each_online_cpu(cpu) + for_each_present_cpu(cpu) hv_synic_free_cpu(cpu); } @@ -491,54 +249,47 @@ * retrieve the initialized message and event pages. Otherwise, we create and * initialize the message and event pages. */ -void hv_synic_init(void *arg) +int hv_synic_init(unsigned int cpu) { - u64 version; union hv_synic_simp simp; union hv_synic_siefp siefp; union hv_synic_sint shared_sint; union hv_synic_scontrol sctrl; u64 vp_index; - int cpu = smp_processor_id(); - - if (!hv_context.hypercall_page) - return; - - /* Check the version */ - rdmsrl(HV_X64_MSR_SVERSION, version); - /* Setup the Synic's message page */ - rdmsrl(HV_X64_MSR_SIMP, simp.as_uint64); + hv_get_simp(simp.as_uint64); simp.simp_enabled = 1; simp.base_simp_gpa = virt_to_phys(hv_context.synic_message_page[cpu]) >> PAGE_SHIFT; - wrmsrl(HV_X64_MSR_SIMP, simp.as_uint64); + hv_set_simp(simp.as_uint64); /* Setup the Synic's event page */ - rdmsrl(HV_X64_MSR_SIEFP, siefp.as_uint64); + hv_get_siefp(siefp.as_uint64); siefp.siefp_enabled = 1; siefp.base_siefp_gpa = virt_to_phys(hv_context.synic_event_page[cpu]) >> PAGE_SHIFT; - wrmsrl(HV_X64_MSR_SIEFP, siefp.as_uint64); + hv_set_siefp(siefp.as_uint64); /* Setup the shared SINT. */ - rdmsrl(HV_X64_MSR_SINT0 + VMBUS_MESSAGE_SINT, shared_sint.as_uint64); + hv_get_synint_state(HV_X64_MSR_SINT0 + VMBUS_MESSAGE_SINT, + shared_sint.as_uint64); shared_sint.as_uint64 = 0; shared_sint.vector = HYPERVISOR_CALLBACK_VECTOR; shared_sint.masked = false; shared_sint.auto_eoi = true; - wrmsrl(HV_X64_MSR_SINT0 + VMBUS_MESSAGE_SINT, shared_sint.as_uint64); + hv_set_synint_state(HV_X64_MSR_SINT0 + VMBUS_MESSAGE_SINT, + shared_sint.as_uint64); /* Enable the global synic bit */ - rdmsrl(HV_X64_MSR_SCONTROL, sctrl.as_uint64); + hv_get_synic_state(sctrl.as_uint64); sctrl.enable = 1; - wrmsrl(HV_X64_MSR_SCONTROL, sctrl.as_uint64); + hv_set_synic_state(sctrl.as_uint64); hv_context.synic_initialized = true; @@ -547,11 +298,9 @@ * of cpuid and Linux' notion of cpuid. * This array will be indexed using Linux cpuid. */ - rdmsrl(HV_X64_MSR_VP_INDEX, vp_index); + hv_get_vp_index(vp_index); hv_context.vp_index[cpu] = (u32)vp_index; - INIT_LIST_HEAD(&hv_context.percpu_list[cpu]); - /* * Register the per-cpu clockevent source. */ @@ -560,7 +309,7 @@ HV_TIMER_FREQUENCY, HV_MIN_DELTA_TICKS, HV_MAX_MAX_DELTA_TICKS); - return; + return 0; } /* @@ -580,43 +329,77 @@ /* * hv_synic_cleanup - Cleanup routine for hv_synic_init(). */ -void hv_synic_cleanup(void *arg) +int hv_synic_cleanup(unsigned int cpu) { union hv_synic_sint shared_sint; union hv_synic_simp simp; union hv_synic_siefp siefp; union hv_synic_scontrol sctrl; - int cpu = smp_processor_id(); + struct vmbus_channel *channel, *sc; + bool channel_found = false; + unsigned long flags; if (!hv_context.synic_initialized) - return; + return -EFAULT; + + /* + * Search for channels which are bound to the CPU we're about to + * cleanup. In case we find one and vmbus is still connected we need to + * fail, this will effectively prevent CPU offlining. There is no way + * we can re-bind channels to different CPUs for now. + */ + mutex_lock(&vmbus_connection.channel_mutex); + list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) { + if (channel->target_cpu == cpu) { + channel_found = true; + break; + } + spin_lock_irqsave(&channel->lock, flags); + list_for_each_entry(sc, &channel->sc_list, sc_list) { + if (sc->target_cpu == cpu) { + channel_found = true; + break; + } + } + spin_unlock_irqrestore(&channel->lock, flags); + if (channel_found) + break; + } + mutex_unlock(&vmbus_connection.channel_mutex); + + if (channel_found && vmbus_connection.conn_state == CONNECTED) + return -EBUSY; /* Turn off clockevent device */ if (ms_hyperv.features & HV_X64_MSR_SYNTIMER_AVAILABLE) hv_ce_shutdown(hv_context.clk_evt[cpu]); - rdmsrl(HV_X64_MSR_SINT0 + VMBUS_MESSAGE_SINT, shared_sint.as_uint64); + hv_get_synint_state(HV_X64_MSR_SINT0 + VMBUS_MESSAGE_SINT, + shared_sint.as_uint64); shared_sint.masked = 1; /* Need to correctly cleanup in the case of SMP!!! */ /* Disable the interrupt */ - wrmsrl(HV_X64_MSR_SINT0 + VMBUS_MESSAGE_SINT, shared_sint.as_uint64); + hv_set_synint_state(HV_X64_MSR_SINT0 + VMBUS_MESSAGE_SINT, + shared_sint.as_uint64); - rdmsrl(HV_X64_MSR_SIMP, simp.as_uint64); + hv_get_simp(simp.as_uint64); simp.simp_enabled = 0; simp.base_simp_gpa = 0; - wrmsrl(HV_X64_MSR_SIMP, simp.as_uint64); + hv_set_simp(simp.as_uint64); - rdmsrl(HV_X64_MSR_SIEFP, siefp.as_uint64); + hv_get_siefp(siefp.as_uint64); siefp.siefp_enabled = 0; siefp.base_siefp_gpa = 0; - wrmsrl(HV_X64_MSR_SIEFP, siefp.as_uint64); + hv_set_siefp(siefp.as_uint64); /* Disable the global synic bit */ - rdmsrl(HV_X64_MSR_SCONTROL, sctrl.as_uint64); + hv_get_synic_state(sctrl.as_uint64); sctrl.enable = 0; - wrmsrl(HV_X64_MSR_SCONTROL, sctrl.as_uint64); + hv_set_synic_state(sctrl.as_uint64); + + return 0; } --- linux-4.8.0.orig/drivers/hv/hv_balloon.c +++ linux-4.8.0/drivers/hv/hv_balloon.c @@ -430,16 +430,27 @@ * currently hot added. We hot add in multiples of 128M * chunks; it is possible that we may not be able to bring * online all the pages in the region. The range - * covered_end_pfn defines the pages that can + * covered_start_pfn:covered_end_pfn defines the pages that can * be brough online. */ struct hv_hotadd_state { struct list_head list; unsigned long start_pfn; + unsigned long covered_start_pfn; unsigned long covered_end_pfn; unsigned long ha_end_pfn; unsigned long end_pfn; + /* + * A list of gaps. + */ + struct list_head gap_list; +}; + +struct hv_hotadd_gap { + struct list_head list; + unsigned long start_pfn; + unsigned long end_pfn; }; struct balloon_state { @@ -536,7 +547,11 @@ */ struct task_struct *thread; - struct mutex ha_region_mutex; + /* + * Protects ha_region_list, num_pages_onlined counter and individual + * regions from ha_region_list. + */ + spinlock_t ha_lock; /* * A list of hot-add regions. @@ -560,18 +575,15 @@ void *v) { struct memory_notify *mem = (struct memory_notify *)v; + unsigned long flags; switch (val) { - case MEM_GOING_ONLINE: - mutex_lock(&dm_device.ha_region_mutex); - break; - case MEM_ONLINE: + spin_lock_irqsave(&dm_device.ha_lock, flags); dm_device.num_pages_onlined += mem->nr_pages; + spin_unlock_irqrestore(&dm_device.ha_lock, flags); + /* Fall through */ case MEM_CANCEL_ONLINE: - if (val == MEM_ONLINE || - mutex_is_locked(&dm_device.ha_region_mutex)) - mutex_unlock(&dm_device.ha_region_mutex); if (dm_device.ha_waiting) { dm_device.ha_waiting = false; complete(&dm_device.ol_waitevent); @@ -579,10 +591,11 @@ break; case MEM_OFFLINE: - mutex_lock(&dm_device.ha_region_mutex); + spin_lock_irqsave(&dm_device.ha_lock, flags); dm_device.num_pages_onlined -= mem->nr_pages; - mutex_unlock(&dm_device.ha_region_mutex); + spin_unlock_irqrestore(&dm_device.ha_lock, flags); break; + case MEM_GOING_ONLINE: case MEM_GOING_OFFLINE: case MEM_CANCEL_OFFLINE: break; @@ -595,18 +608,46 @@ .priority = 0 }; +/* Check if the particular page is backed and can be onlined and online it. */ +static void hv_page_online_one(struct hv_hotadd_state *has, struct page *pg) +{ + unsigned long cur_start_pgp; + unsigned long cur_end_pgp; + struct hv_hotadd_gap *gap; + + cur_start_pgp = (unsigned long)pfn_to_page(has->covered_start_pfn); + cur_end_pgp = (unsigned long)pfn_to_page(has->covered_end_pfn); + + /* The page is not backed. */ + if (((unsigned long)pg < cur_start_pgp) || + ((unsigned long)pg >= cur_end_pgp)) + return; -static void hv_bring_pgs_online(unsigned long start_pfn, unsigned long size) + /* Check for gaps. */ + list_for_each_entry(gap, &has->gap_list, list) { + cur_start_pgp = (unsigned long) + pfn_to_page(gap->start_pfn); + cur_end_pgp = (unsigned long) + pfn_to_page(gap->end_pfn); + if (((unsigned long)pg >= cur_start_pgp) && + ((unsigned long)pg < cur_end_pgp)) { + return; + } + } + + /* This frame is currently backed; online the page. */ + __online_page_set_limits(pg); + __online_page_increment_counters(pg); + __online_page_free(pg); +} + +static void hv_bring_pgs_online(struct hv_hotadd_state *has, + unsigned long start_pfn, unsigned long size) { int i; - for (i = 0; i < size; i++) { - struct page *pg; - pg = pfn_to_page(start_pfn + i); - __online_page_set_limits(pg); - __online_page_increment_counters(pg); - __online_page_free(pg); - } + for (i = 0; i < size; i++) + hv_page_online_one(has, pfn_to_page(start_pfn + i)); } static void hv_mem_hot_add(unsigned long start, unsigned long size, @@ -618,9 +659,12 @@ unsigned long start_pfn; unsigned long processed_pfn; unsigned long total_pfn = pfn_count; + unsigned long flags; for (i = 0; i < (size/HA_CHUNK); i++) { start_pfn = start + (i * HA_CHUNK); + + spin_lock_irqsave(&dm_device.ha_lock, flags); has->ha_end_pfn += HA_CHUNK; if (total_pfn > HA_CHUNK) { @@ -632,11 +676,11 @@ } has->covered_end_pfn += processed_pfn; + spin_unlock_irqrestore(&dm_device.ha_lock, flags); init_completion(&dm_device.ol_waitevent); - dm_device.ha_waiting = true; + dm_device.ha_waiting = !memhp_auto_online; - mutex_unlock(&dm_device.ha_region_mutex); nid = memory_add_physaddr_to_nid(PFN_PHYS(start_pfn)); ret = add_memory(nid, PFN_PHYS((start_pfn)), (HA_CHUNK << PAGE_SHIFT)); @@ -653,20 +697,23 @@ */ do_hot_add = false; } + spin_lock_irqsave(&dm_device.ha_lock, flags); has->ha_end_pfn -= HA_CHUNK; has->covered_end_pfn -= processed_pfn; - mutex_lock(&dm_device.ha_region_mutex); + spin_unlock_irqrestore(&dm_device.ha_lock, flags); break; } /* - * Wait for the memory block to be onlined. - * Since the hot add has succeeded, it is ok to - * proceed even if the pages in the hot added region - * have not been "onlined" within the allowed time. + * Wait for the memory block to be onlined when memory onlining + * is done outside of kernel (memhp_auto_online). Since the hot + * add has succeeded, it is ok to proceed even if the pages in + * the hot added region have not been "onlined" within the + * allowed time. */ - wait_for_completion_timeout(&dm_device.ol_waitevent, 5*HZ); - mutex_lock(&dm_device.ha_region_mutex); + if (dm_device.ha_waiting) + wait_for_completion_timeout(&dm_device.ol_waitevent, + 5*HZ); post_status(&dm_device); } @@ -675,47 +722,64 @@ static void hv_online_page(struct page *pg) { - struct list_head *cur; struct hv_hotadd_state *has; unsigned long cur_start_pgp; unsigned long cur_end_pgp; + unsigned long flags; - list_for_each(cur, &dm_device.ha_region_list) { - has = list_entry(cur, struct hv_hotadd_state, list); - cur_start_pgp = (unsigned long)pfn_to_page(has->start_pfn); - cur_end_pgp = (unsigned long)pfn_to_page(has->covered_end_pfn); + spin_lock_irqsave(&dm_device.ha_lock, flags); + list_for_each_entry(has, &dm_device.ha_region_list, list) { + cur_start_pgp = (unsigned long) + pfn_to_page(has->start_pfn); + cur_end_pgp = (unsigned long)pfn_to_page(has->end_pfn); + + /* The page belongs to a different HAS. */ + if (((unsigned long)pg < cur_start_pgp) || + ((unsigned long)pg >= cur_end_pgp)) + continue; - if (((unsigned long)pg >= cur_start_pgp) && - ((unsigned long)pg < cur_end_pgp)) { - /* - * This frame is currently backed; online the - * page. - */ - __online_page_set_limits(pg); - __online_page_increment_counters(pg); - __online_page_free(pg); - } + hv_page_online_one(has, pg); + break; } + spin_unlock_irqrestore(&dm_device.ha_lock, flags); } -static bool pfn_covered(unsigned long start_pfn, unsigned long pfn_cnt) +static int pfn_covered(unsigned long start_pfn, unsigned long pfn_cnt) { - struct list_head *cur; struct hv_hotadd_state *has; + struct hv_hotadd_gap *gap; unsigned long residual, new_inc; + int ret = 0; + unsigned long flags; - if (list_empty(&dm_device.ha_region_list)) - return false; - - list_for_each(cur, &dm_device.ha_region_list) { - has = list_entry(cur, struct hv_hotadd_state, list); - + spin_lock_irqsave(&dm_device.ha_lock, flags); + list_for_each_entry(has, &dm_device.ha_region_list, list) { /* * If the pfn range we are dealing with is not in the current * "hot add block", move on. */ if (start_pfn < has->start_pfn || start_pfn >= has->end_pfn) continue; + + /* + * If the current start pfn is not where the covered_end + * is, create a gap and update covered_end_pfn. + */ + if (has->covered_end_pfn != start_pfn) { + gap = kzalloc(sizeof(struct hv_hotadd_gap), GFP_ATOMIC); + if (!gap) { + ret = -ENOMEM; + break; + } + + INIT_LIST_HEAD(&gap->list); + gap->start_pfn = has->covered_end_pfn; + gap->end_pfn = start_pfn; + list_add_tail(&gap->list, &has->gap_list); + + has->covered_end_pfn = start_pfn; + } + /* * If the current hot add-request extends beyond * our current limit; extend it. @@ -732,19 +796,12 @@ has->end_pfn += new_inc; } - /* - * If the current start pfn is not where the covered_end - * is, update it. - */ - - if (has->covered_end_pfn != start_pfn) - has->covered_end_pfn = start_pfn; - - return true; - + ret = 1; + break; } + spin_unlock_irqrestore(&dm_device.ha_lock, flags); - return false; + return ret; } static unsigned long handle_pg_range(unsigned long pg_start, @@ -753,17 +810,13 @@ unsigned long start_pfn = pg_start; unsigned long pfn_cnt = pg_count; unsigned long size; - struct list_head *cur; struct hv_hotadd_state *has; unsigned long pgs_ol = 0; unsigned long old_covered_state; + unsigned long res = 0, flags; - if (list_empty(&dm_device.ha_region_list)) - return 0; - - list_for_each(cur, &dm_device.ha_region_list) { - has = list_entry(cur, struct hv_hotadd_state, list); - + spin_lock_irqsave(&dm_device.ha_lock, flags); + list_for_each_entry(has, &dm_device.ha_region_list, list) { /* * If the pfn range we are dealing with is not in the current * "hot add block", move on. @@ -783,6 +836,8 @@ if (pgs_ol > pfn_cnt) pgs_ol = pfn_cnt; + has->covered_end_pfn += pgs_ol; + pfn_cnt -= pgs_ol; /* * Check if the corresponding memory block is already * online by checking its last previously backed page. @@ -791,10 +846,8 @@ */ if (start_pfn > has->start_pfn && !PageReserved(pfn_to_page(start_pfn - 1))) - hv_bring_pgs_online(start_pfn, pgs_ol); + hv_bring_pgs_online(has, start_pfn, pgs_ol); - has->covered_end_pfn += pgs_ol; - pfn_cnt -= pgs_ol; } if ((has->ha_end_pfn < has->end_pfn) && (pfn_cnt > 0)) { @@ -813,17 +866,20 @@ } else { pfn_cnt = size; } + spin_unlock_irqrestore(&dm_device.ha_lock, flags); hv_mem_hot_add(has->ha_end_pfn, size, pfn_cnt, has); + spin_lock_irqsave(&dm_device.ha_lock, flags); } /* * If we managed to online any pages that were given to us, * we declare success. */ - return has->covered_end_pfn - old_covered_state; - + res = has->covered_end_pfn - old_covered_state; + break; } + spin_unlock_irqrestore(&dm_device.ha_lock, flags); - return 0; + return res; } static unsigned long process_hot_add(unsigned long pg_start, @@ -832,13 +888,20 @@ unsigned long rg_size) { struct hv_hotadd_state *ha_region = NULL; + int covered; + unsigned long flags; if (pfn_cnt == 0) return 0; - if (!dm_device.host_specified_ha_region) - if (pfn_covered(pg_start, pfn_cnt)) + if (!dm_device.host_specified_ha_region) { + covered = pfn_covered(pg_start, pfn_cnt); + if (covered < 0) + return 0; + + if (covered) goto do_pg_range; + } /* * If the host has specified a hot-add range; deal with it first. @@ -850,12 +913,17 @@ return 0; INIT_LIST_HEAD(&ha_region->list); + INIT_LIST_HEAD(&ha_region->gap_list); - list_add_tail(&ha_region->list, &dm_device.ha_region_list); ha_region->start_pfn = rg_start; ha_region->ha_end_pfn = rg_start; + ha_region->covered_start_pfn = pg_start; ha_region->covered_end_pfn = pg_start; ha_region->end_pfn = rg_start + rg_size; + + spin_lock_irqsave(&dm_device.ha_lock, flags); + list_add_tail(&ha_region->list, &dm_device.ha_region_list); + spin_unlock_irqrestore(&dm_device.ha_lock, flags); } do_pg_range: @@ -882,7 +950,6 @@ resp.hdr.size = sizeof(struct dm_hot_add_response); #ifdef CONFIG_MEMORY_HOTPLUG - mutex_lock(&dm_device.ha_region_mutex); pg_start = dm->ha_wrk.ha_page_range.finfo.start_page; pfn_cnt = dm->ha_wrk.ha_page_range.finfo.page_cnt; @@ -916,7 +983,6 @@ rg_start, rg_sz); dm->num_pages_added += resp.page_count; - mutex_unlock(&dm_device.ha_region_mutex); #endif /* * The result field of the response structure has the @@ -1010,7 +1076,6 @@ static void post_status(struct hv_dynmem_device *dm) { struct dm_status status; - struct sysinfo val; unsigned long now = jiffies; unsigned long last_post = last_post_time; @@ -1022,7 +1087,6 @@ if (!time_after(now, (last_post_time + HZ))) return; - si_meminfo(&val); memset(&status, 0, sizeof(struct dm_status)); status.hdr.type = DM_STATUS_REPORT; status.hdr.size = sizeof(struct dm_status); @@ -1038,7 +1102,7 @@ * num_pages_onlined) as committed to the host, otherwise it can try * asking us to balloon them out. */ - status.num_avail = val.freeram; + status.num_avail = si_mem_available(); status.num_committed = vm_memory_committed() + dm->num_pages_ballooned + (dm->num_pages_added > dm->num_pages_onlined ? @@ -1144,7 +1208,7 @@ int ret; bool done = false; int i; - struct sysinfo val; + long avail_pages; unsigned long floor; /* The host balloons pages in 2M granularity. */ @@ -1156,12 +1220,12 @@ */ alloc_unit = 512; - si_meminfo(&val); + avail_pages = si_mem_available(); floor = compute_balloon_floor(); /* Refuse to balloon below the floor, keep the 2M granularity. */ - if (val.freeram < num_pages || val.freeram - num_pages < floor) { - num_pages = val.freeram > floor ? (val.freeram - floor) : 0; + if (avail_pages < num_pages || avail_pages - num_pages < floor) { + num_pages = avail_pages > floor ? (avail_pages - floor) : 0; num_pages -= num_pages % PAGES_IN_2M; } @@ -1172,7 +1236,6 @@ bl_resp->hdr.size = sizeof(struct dm_balloon_response); bl_resp->more_pages = 1; - num_pages -= num_ballooned; num_ballooned = alloc_balloon_pages(&dm_device, num_pages, bl_resp, alloc_unit); @@ -1461,7 +1524,7 @@ init_completion(&dm_device.host_event); init_completion(&dm_device.config_event); INIT_LIST_HEAD(&dm_device.ha_region_list); - mutex_init(&dm_device.ha_region_mutex); + spin_lock_init(&dm_device.ha_lock); INIT_WORK(&dm_device.balloon_wrk.wrk, balloon_up); INIT_WORK(&dm_device.ha_wrk.wrk, hot_add_req); dm_device.host_specified_ha_region = false; @@ -1580,8 +1643,9 @@ static int balloon_remove(struct hv_device *dev) { struct hv_dynmem_device *dm = hv_get_drvdata(dev); - struct list_head *cur, *tmp; - struct hv_hotadd_state *has; + struct hv_hotadd_state *has, *tmp; + struct hv_hotadd_gap *gap, *tmp_gap; + unsigned long flags; if (dm->num_pages_ballooned != 0) pr_warn("Ballooned pages: %d\n", dm->num_pages_ballooned); @@ -1596,11 +1660,16 @@ restore_online_page_callback(&hv_online_page); unregister_memory_notifier(&hv_memory_nb); #endif - list_for_each_safe(cur, tmp, &dm->ha_region_list) { - has = list_entry(cur, struct hv_hotadd_state, list); + spin_lock_irqsave(&dm_device.ha_lock, flags); + list_for_each_entry_safe(has, tmp, &dm->ha_region_list, list) { + list_for_each_entry_safe(gap, tmp_gap, &has->gap_list, list) { + list_del(&gap->list); + kfree(gap); + } list_del(&has->list); kfree(has); } + spin_unlock_irqrestore(&dm_device.ha_lock, flags); return 0; } --- linux-4.8.0.orig/drivers/hv/hv_fcopy.c +++ linux-4.8.0/drivers/hv/hv_fcopy.c @@ -31,6 +31,16 @@ #define WIN8_SRV_MINOR 1 #define WIN8_SRV_VERSION (WIN8_SRV_MAJOR << 16 | WIN8_SRV_MINOR) +#define FCOPY_VER_COUNT 1 +static const int fcopy_versions[] = { + WIN8_SRV_VERSION +}; + +#define FW_VER_COUNT 1 +static const int fw_versions[] = { + UTIL_FW_VERSION +}; + /* * Global state maintained for transaction that is being processed. * For a class of integration services, including the "file copy service", @@ -61,6 +71,7 @@ static const char fcopy_devname[] = "vmbus/hv_fcopy"; static u8 *recv_buffer; static struct hvutil_transport *hvt; +static struct completion release_event; /* * This state maintains the version number registered by the daemon. */ @@ -83,6 +94,12 @@ hv_poll_channel(fcopy_transaction.recv_channel, fcopy_poll_wrapper); } +static void fcopy_register_done(void) +{ + pr_debug("FCP: userspace daemon registered\n"); + hv_poll_channel(fcopy_transaction.recv_channel, fcopy_poll_wrapper); +} + static int fcopy_handle_handshake(u32 version) { u32 our_ver = FCOPY_CURRENT_VERSION; @@ -94,7 +111,8 @@ break; case FCOPY_VERSION_1: /* Daemon expects us to reply with our own version */ - if (hvutil_transport_send(hvt, &our_ver, sizeof(our_ver))) + if (hvutil_transport_send(hvt, &our_ver, sizeof(our_ver), + fcopy_register_done)) return -EFAULT; dm_reg_value = version; break; @@ -107,8 +125,7 @@ */ return -EINVAL; } - pr_debug("FCP: userspace daemon ver. %d registered\n", version); - hv_poll_channel(fcopy_transaction.recv_channel, fcopy_poll_wrapper); + pr_debug("FCP: userspace daemon ver. %d connected\n", version); return 0; } @@ -161,7 +178,7 @@ } fcopy_transaction.state = HVUTIL_USERSPACE_REQ; - rc = hvutil_transport_send(hvt, out_src, out_len); + rc = hvutil_transport_send(hvt, out_src, out_len, NULL); if (rc) { pr_debug("FCP: failed to communicate to the daemon: %d\n", rc); if (cancel_delayed_work_sync(&fcopy_timeout_work)) { @@ -221,8 +238,6 @@ u64 requestid; struct hv_fcopy_hdr *fcopy_msg; struct icmsg_hdr *icmsghdr; - struct icmsg_negotiate *negop = NULL; - int util_fw_version; int fcopy_srv_version; if (fcopy_transaction.state > HVUTIL_READY) @@ -236,10 +251,15 @@ icmsghdr = (struct icmsg_hdr *)&recv_buffer[ sizeof(struct vmbuspipe_hdr)]; if (icmsghdr->icmsgtype == ICMSGTYPE_NEGOTIATE) { - util_fw_version = UTIL_FW_VERSION; - fcopy_srv_version = WIN8_SRV_VERSION; - vmbus_prep_negotiate_resp(icmsghdr, negop, recv_buffer, - util_fw_version, fcopy_srv_version); + if (vmbus_prep_negotiate_resp(icmsghdr, recv_buffer, + fw_versions, FW_VER_COUNT, + fcopy_versions, FCOPY_VER_COUNT, + NULL, &fcopy_srv_version)) { + + pr_info("FCopy IC version %d.%d\n", + fcopy_srv_version >> 16, + fcopy_srv_version & 0xFFFF); + } } else { fcopy_msg = (struct hv_fcopy_hdr *)&recv_buffer[ sizeof(struct vmbuspipe_hdr) + @@ -311,6 +331,7 @@ if (cancel_delayed_work_sync(&fcopy_timeout_work)) fcopy_respond_to_host(HV_E_FAIL); + complete(&release_event); } int hv_fcopy_init(struct hv_util_service *srv) @@ -318,6 +339,7 @@ recv_buffer = srv->recv_buffer; fcopy_transaction.recv_channel = srv->channel; + init_completion(&release_event); /* * When this driver loads, the user level daemon that * processes the host requests may not yet be running. @@ -339,4 +361,5 @@ fcopy_transaction.state = HVUTIL_DEVICE_DYING; cancel_delayed_work_sync(&fcopy_timeout_work); hvutil_transport_destroy(hvt); + wait_for_completion(&release_event); } --- linux-4.8.0.orig/drivers/hv/hv_kvp.c +++ linux-4.8.0/drivers/hv/hv_kvp.c @@ -46,6 +46,19 @@ #define WIN8_SRV_MINOR 0 #define WIN8_SRV_VERSION (WIN8_SRV_MAJOR << 16 | WIN8_SRV_MINOR) +#define KVP_VER_COUNT 3 +static const int kvp_versions[] = { + WIN8_SRV_VERSION, + WIN7_SRV_VERSION, + WS2008_SRV_VERSION +}; + +#define FW_VER_COUNT 2 +static const int fw_versions[] = { + UTIL_FW_VERSION, + UTIL_WS2K8_FW_VERSION +}; + /* * Global state maintained for transaction that is being processed. For a class * of integration services, including the "KVP service", the specified protocol @@ -88,6 +101,7 @@ static const char kvp_devname[] = "vmbus/hv_kvp"; static u8 *recv_buffer; static struct hvutil_transport *hvt; +static struct completion release_event; /* * Register the kernel component with the user-level daemon. * As part of this registration, pass the LIC version number. @@ -102,6 +116,17 @@ hv_kvp_onchannelcallback(channel); } +static void kvp_register_done(void) +{ + /* + * If we're still negotiating with the host cancel the timeout + * work to not poll the channel twice. + */ + pr_debug("KVP: userspace daemon registered\n"); + cancel_delayed_work_sync(&kvp_host_handshake_work); + hv_poll_channel(kvp_transaction.recv_channel, kvp_poll_wrapper); +} + static void kvp_register(int reg_value) { @@ -116,7 +141,8 @@ kvp_msg->kvp_hdr.operation = reg_value; strcpy(version, HV_DRV_VERSION); - hvutil_transport_send(hvt, kvp_msg, sizeof(*kvp_msg)); + hvutil_transport_send(hvt, kvp_msg, sizeof(*kvp_msg), + kvp_register_done); kfree(kvp_msg); } } @@ -158,17 +184,10 @@ /* * We have a compatible daemon; complete the handshake. */ - pr_debug("KVP: userspace daemon ver. %d registered\n", - KVP_OP_REGISTER); + pr_debug("KVP: userspace daemon ver. %d connected\n", + msg->kvp_hdr.operation); kvp_register(dm_reg_value); - /* - * If we're still negotiating with the host cancel the timeout - * work to not poll the channel twice. - */ - cancel_delayed_work_sync(&kvp_host_handshake_work); - hv_poll_channel(kvp_transaction.recv_channel, kvp_poll_wrapper); - return 0; } @@ -455,7 +474,7 @@ } kvp_transaction.state = HVUTIL_USERSPACE_REQ; - rc = hvutil_transport_send(hvt, message, sizeof(*message)); + rc = hvutil_transport_send(hvt, message, sizeof(*message), NULL); if (rc) { pr_debug("KVP: failed to communicate to the daemon: %d\n", rc); if (cancel_delayed_work_sync(&kvp_timeout_work)) { @@ -604,8 +623,6 @@ struct hv_kvp_msg *kvp_msg; struct icmsg_hdr *icmsghdrp; - struct icmsg_negotiate *negop = NULL; - int util_fw_version; int kvp_srv_version; static enum {NEGO_NOT_STARTED, NEGO_IN_PROGRESS, @@ -634,28 +651,14 @@ sizeof(struct vmbuspipe_hdr)]; if (icmsghdrp->icmsgtype == ICMSGTYPE_NEGOTIATE) { - /* - * Based on the host, select appropriate - * framework and service versions we will - * negotiate. - */ - switch (vmbus_proto_version) { - case (VERSION_WS2008): - util_fw_version = UTIL_WS2K8_FW_VERSION; - kvp_srv_version = WS2008_SRV_VERSION; - break; - case (VERSION_WIN7): - util_fw_version = UTIL_FW_VERSION; - kvp_srv_version = WIN7_SRV_VERSION; - break; - default: - util_fw_version = UTIL_FW_VERSION; - kvp_srv_version = WIN8_SRV_VERSION; + if (vmbus_prep_negotiate_resp(icmsghdrp, + recv_buffer, fw_versions, FW_VER_COUNT, + kvp_versions, KVP_VER_COUNT, + NULL, &kvp_srv_version)) { + pr_info("KVP IC version %d.%d\n", + kvp_srv_version >> 16, + kvp_srv_version & 0xFFFF); } - vmbus_prep_negotiate_resp(icmsghdrp, negop, - recv_buffer, util_fw_version, - kvp_srv_version); - } else { kvp_msg = (struct hv_kvp_msg *)&recv_buffer[ sizeof(struct vmbuspipe_hdr) + @@ -711,6 +714,7 @@ if (cancel_delayed_work_sync(&kvp_timeout_work)) kvp_respond_to_host(NULL, HV_E_FAIL); kvp_transaction.state = HVUTIL_DEVICE_INIT; + complete(&release_event); } int @@ -719,6 +723,7 @@ recv_buffer = srv->recv_buffer; kvp_transaction.recv_channel = srv->channel; + init_completion(&release_event); /* * When this driver loads, the user level daemon that * processes the host requests may not yet be running. @@ -742,4 +747,5 @@ cancel_delayed_work_sync(&kvp_timeout_work); cancel_work_sync(&kvp_sendkey_work); hvutil_transport_destroy(hvt); + wait_for_completion(&release_event); } --- linux-4.8.0.orig/drivers/hv/hv_snapshot.c +++ linux-4.8.0/drivers/hv/hv_snapshot.c @@ -31,7 +31,20 @@ #define VSS_MINOR 0 #define VSS_VERSION (VSS_MAJOR << 16 | VSS_MINOR) -#define VSS_USERSPACE_TIMEOUT (msecs_to_jiffies(10 * 1000)) +#define VSS_VER_COUNT 1 +static const int vss_versions[] = { + VSS_VERSION +}; + +#define FW_VER_COUNT 1 +static const int fw_versions[] = { + UTIL_FW_VERSION +}; + +/* + * Timeout values are based on expecations from host + */ +#define VSS_FREEZE_TIMEOUT (15 * 60) /* * Global state maintained for transaction that is being processed. For a class @@ -66,12 +79,13 @@ static const char vss_devname[] = "vmbus/hv_vss"; static __u8 *recv_buffer; static struct hvutil_transport *hvt; +static struct completion release_event; -static void vss_send_op(struct work_struct *dummy); static void vss_timeout_func(struct work_struct *dummy); +static void vss_handle_request(struct work_struct *dummy); static DECLARE_DELAYED_WORK(vss_timeout_work, vss_timeout_func); -static DECLARE_WORK(vss_send_op_work, vss_send_op); +static DECLARE_WORK(vss_handle_request_work, vss_handle_request); static void vss_poll_wrapper(void *channel) { @@ -95,6 +109,12 @@ hv_poll_channel(vss_transaction.recv_channel, vss_poll_wrapper); } +static void vss_register_done(void) +{ + hv_poll_channel(vss_transaction.recv_channel, vss_poll_wrapper); + pr_debug("VSS: userspace daemon registered\n"); +} + static int vss_handle_handshake(struct hv_vss_msg *vss_msg) { u32 our_ver = VSS_OP_REGISTER1; @@ -105,16 +125,16 @@ dm_reg_value = VSS_OP_REGISTER; break; case VSS_OP_REGISTER1: - /* Daemon expects us to reply with our own version*/ - if (hvutil_transport_send(hvt, &our_ver, sizeof(our_ver))) + /* Daemon expects us to reply with our own version */ + if (hvutil_transport_send(hvt, &our_ver, sizeof(our_ver), + vss_register_done)) return -EFAULT; dm_reg_value = VSS_OP_REGISTER1; break; default: return -EINVAL; } - hv_poll_channel(vss_transaction.recv_channel, vss_poll_wrapper); - pr_debug("VSS: userspace daemon ver. %d registered\n", dm_reg_value); + pr_debug("VSS: userspace daemon ver. %d connected\n", dm_reg_value); return 0; } @@ -136,6 +156,11 @@ return vss_handle_handshake(vss_msg); } else if (vss_transaction.state == HVUTIL_USERSPACE_REQ) { vss_transaction.state = HVUTIL_USERSPACE_RECV; + + if (vss_msg->vss_hdr.operation == VSS_OP_HOT_BACKUP) + vss_transaction.msg->vss_cf.flags = + VSS_HBU_NO_AUTO_RECOVERY; + if (cancel_delayed_work_sync(&vss_timeout_work)) { vss_respond_to_host(vss_msg->error); /* Transaction is finished, reset the state. */ @@ -150,8 +175,7 @@ return 0; } - -static void vss_send_op(struct work_struct *dummy) +static void vss_send_op(void) { int op = vss_transaction.msg->vss_hdr.operation; int rc; @@ -168,7 +192,11 @@ vss_msg->vss_hdr.operation = op; vss_transaction.state = HVUTIL_USERSPACE_REQ; - rc = hvutil_transport_send(hvt, vss_msg, sizeof(*vss_msg)); + + schedule_delayed_work(&vss_timeout_work, op == VSS_OP_FREEZE ? + VSS_FREEZE_TIMEOUT * HZ : HV_UTIL_TIMEOUT * HZ); + + rc = hvutil_transport_send(hvt, vss_msg, sizeof(*vss_msg), NULL); if (rc) { pr_warn("VSS: failed to communicate to the daemon: %d\n", rc); if (cancel_delayed_work_sync(&vss_timeout_work)) { @@ -182,6 +210,38 @@ return; } +static void vss_handle_request(struct work_struct *dummy) +{ + switch (vss_transaction.msg->vss_hdr.operation) { + /* + * Initiate a "freeze/thaw" operation in the guest. + * We respond to the host once the operation is complete. + * + * We send the message to the user space daemon and the operation is + * performed in the daemon. + */ + case VSS_OP_THAW: + case VSS_OP_FREEZE: + case VSS_OP_HOT_BACKUP: + if (vss_transaction.state < HVUTIL_READY) { + /* Userspace is not registered yet */ + vss_respond_to_host(HV_E_FAIL); + return; + } + vss_transaction.state = HVUTIL_HOSTMSG_RECEIVED; + vss_send_op(); + return; + case VSS_OP_GET_DM_INFO: + vss_transaction.msg->dm_info.flags = 0; + break; + default: + break; + } + + vss_respond_to_host(0); + hv_poll_channel(vss_transaction.recv_channel, vss_poll_wrapper); +} + /* * Send a response back to the host. */ @@ -233,10 +293,9 @@ u32 recvlen; u64 requestid; struct hv_vss_msg *vss_msg; - + int vss_srv_version; struct icmsg_hdr *icmsghdrp; - struct icmsg_negotiate *negop = NULL; if (vss_transaction.state > HVUTIL_READY) return; @@ -249,9 +308,15 @@ sizeof(struct vmbuspipe_hdr)]; if (icmsghdrp->icmsgtype == ICMSGTYPE_NEGOTIATE) { - vmbus_prep_negotiate_resp(icmsghdrp, negop, - recv_buffer, UTIL_FW_VERSION, - VSS_VERSION); + if (vmbus_prep_negotiate_resp(icmsghdrp, + recv_buffer, fw_versions, FW_VER_COUNT, + vss_versions, VSS_VER_COUNT, + NULL, &vss_srv_version)) { + + pr_info("VSS IC version %d.%d\n", + vss_srv_version >> 16, + vss_srv_version & 0xFFFF); + } } else { vss_msg = (struct hv_vss_msg *)&recv_buffer[ sizeof(struct vmbuspipe_hdr) + @@ -266,48 +331,8 @@ vss_transaction.recv_req_id = requestid; vss_transaction.msg = (struct hv_vss_msg *)vss_msg; - switch (vss_msg->vss_hdr.operation) { - /* - * Initiate a "freeze/thaw" - * operation in the guest. - * We respond to the host once - * the operation is complete. - * - * We send the message to the - * user space daemon and the - * operation is performed in - * the daemon. - */ - case VSS_OP_FREEZE: - case VSS_OP_THAW: - if (vss_transaction.state < HVUTIL_READY) { - /* Userspace is not registered yet */ - vss_respond_to_host(HV_E_FAIL); - return; - } - vss_transaction.state = HVUTIL_HOSTMSG_RECEIVED; - schedule_work(&vss_send_op_work); - schedule_delayed_work(&vss_timeout_work, - VSS_USERSPACE_TIMEOUT); - return; - - case VSS_OP_HOT_BACKUP: - vss_msg->vss_cf.flags = - VSS_HBU_NO_AUTO_RECOVERY; - vss_respond_to_host(0); - return; - - case VSS_OP_GET_DM_INFO: - vss_msg->dm_info.flags = 0; - vss_respond_to_host(0); - return; - - default: - vss_respond_to_host(0); - return; - - } - + schedule_work(&vss_handle_request_work); + return; } icmsghdrp->icflags = ICMSGHDRFLAG_TRANSACTION @@ -325,11 +350,13 @@ if (cancel_delayed_work_sync(&vss_timeout_work)) vss_respond_to_host(HV_E_FAIL); vss_transaction.state = HVUTIL_DEVICE_INIT; + complete(&release_event); } int hv_vss_init(struct hv_util_service *srv) { + init_completion(&release_event); if (vmbus_proto_version < VERSION_WIN8_1) { pr_warn("Integration service 'Backup (volume snapshot)'" " not supported on this host version.\n"); @@ -358,6 +385,7 @@ { vss_transaction.state = HVUTIL_DEVICE_DYING; cancel_delayed_work_sync(&vss_timeout_work); - cancel_work_sync(&vss_send_op_work); + cancel_work_sync(&vss_handle_request_work); hvutil_transport_destroy(hvt); + wait_for_completion(&release_event); } --- linux-4.8.0.orig/drivers/hv/hv_util.c +++ linux-4.8.0/drivers/hv/hv_util.c @@ -27,6 +27,9 @@ #include #include #include +#include +#include +#include #include "hyperv_vmbus.h" @@ -34,36 +37,68 @@ #define SD_MINOR 0 #define SD_VERSION (SD_MAJOR << 16 | SD_MINOR) -#define SD_WS2008_MAJOR 1 -#define SD_WS2008_VERSION (SD_WS2008_MAJOR << 16 | SD_MINOR) +#define SD_MAJOR_1 1 +#define SD_VERSION_1 (SD_MAJOR_1 << 16 | SD_MINOR) -#define TS_MAJOR 3 +#define TS_MAJOR 4 #define TS_MINOR 0 #define TS_VERSION (TS_MAJOR << 16 | TS_MINOR) -#define TS_WS2008_MAJOR 1 -#define TS_WS2008_VERSION (TS_WS2008_MAJOR << 16 | TS_MINOR) +#define TS_MAJOR_1 1 +#define TS_VERSION_1 (TS_MAJOR_1 << 16 | TS_MINOR) + +#define TS_MAJOR_3 3 +#define TS_VERSION_3 (TS_MAJOR_3 << 16 | TS_MINOR) #define HB_MAJOR 3 -#define HB_MINOR 0 +#define HB_MINOR 0 #define HB_VERSION (HB_MAJOR << 16 | HB_MINOR) -#define HB_WS2008_MAJOR 1 -#define HB_WS2008_VERSION (HB_WS2008_MAJOR << 16 | HB_MINOR) +#define HB_MAJOR_1 1 +#define HB_VERSION_1 (HB_MAJOR_1 << 16 | HB_MINOR) static int sd_srv_version; static int ts_srv_version; static int hb_srv_version; -static int util_fw_version; + +#define SD_VER_COUNT 2 +static const int sd_versions[] = { + SD_VERSION, + SD_VERSION_1 +}; + +#define TS_VER_COUNT 3 +static const int ts_versions[] = { + TS_VERSION, + TS_VERSION_3, + TS_VERSION_1 +}; + +#define HB_VER_COUNT 2 +static const int hb_versions[] = { + HB_VERSION, + HB_VERSION_1 +}; + +#define FW_VER_COUNT 2 +static const int fw_versions[] = { + UTIL_FW_VERSION, + UTIL_WS2K8_FW_VERSION +}; static void shutdown_onchannelcallback(void *context); static struct hv_util_service util_shutdown = { .util_cb = shutdown_onchannelcallback, }; +static int hv_timesync_init(struct hv_util_service *srv); +static void hv_timesync_deinit(void); + static void timesync_onchannelcallback(void *context); static struct hv_util_service util_timesynch = { .util_cb = timesync_onchannelcallback, + .util_init = hv_timesync_init, + .util_deinit = hv_timesync_deinit, }; static void heartbeat_onchannelcallback(void *context); @@ -110,7 +145,6 @@ struct shutdown_msg_data *shutdown_msg; struct icmsg_hdr *icmsghdrp; - struct icmsg_negotiate *negop = NULL; vmbus_recvpacket(channel, shut_txf_buf, PAGE_SIZE, &recvlen, &requestid); @@ -120,9 +154,14 @@ sizeof(struct vmbuspipe_hdr)]; if (icmsghdrp->icmsgtype == ICMSGTYPE_NEGOTIATE) { - vmbus_prep_negotiate_resp(icmsghdrp, negop, - shut_txf_buf, util_fw_version, - sd_srv_version); + if (vmbus_prep_negotiate_resp(icmsghdrp, shut_txf_buf, + fw_versions, FW_VER_COUNT, + sd_versions, SD_VER_COUNT, + NULL, &sd_srv_version)) { + pr_info("Shutdown IC version %d.%d\n", + sd_srv_version >> 16, + sd_srv_version & 0xFFFF); + } } else { shutdown_msg = (struct shutdown_msg_data *)&shut_txf_buf[ @@ -161,35 +200,29 @@ } /* - * Set guest time to host UTC time. - */ -static inline void do_adj_guesttime(u64 hosttime) -{ - s64 host_tns; - struct timespec host_ts; - - host_tns = (hosttime - WLTIMEDELTA) * 100; - host_ts = ns_to_timespec(host_tns); - - do_settimeofday(&host_ts); -} - -/* * Set the host time in a process context. */ struct adj_time_work { struct work_struct work; u64 host_time; + u64 ref_time; + u8 flags; }; static void hv_set_host_time(struct work_struct *work) { - struct adj_time_work *wrk; + struct adj_time_work *wrk; + struct timespec64 host_ts; + u64 reftime, newtime; wrk = container_of(work, struct adj_time_work, work); - do_adj_guesttime(wrk->host_time); - kfree(wrk); + + reftime = hyperv_cs->read(hyperv_cs); + newtime = wrk->host_time + (reftime - wrk->ref_time); + host_ts = ns_to_timespec64((newtime - WLTIMEDELTA) * 100); + + do_settimeofday64(&host_ts); } /* @@ -198,33 +231,69 @@ * ICTIMESYNCFLAG_SYNC flag bit indicates reboot, restore events of the VM. * After reboot the flag ICTIMESYNCFLAG_SYNC is included in the first time * message after the timesync channel is opened. Since the hv_utils module is - * loaded after hv_vmbus, the first message is usually missed. The other - * thing is, systime is automatically set to emulated hardware clock which may - * not be UTC time or in the same time zone. So, to override these effects, we - * use the first 50 time samples for initial system time setting. + * loaded after hv_vmbus, the first message is usually missed. This bit is + * considered a hard request to discipline the clock. + * + * ICTIMESYNCFLAG_SAMPLE bit indicates a time sample from host. This is + * typically used as a hint to the guest. The guest is under no obligation + * to discipline the clock. + */ +static struct adj_time_work wrk; + +/* + * The last time sample, received from the host. PTP device responds to + * requests by using this data and the current partition-wide time reference + * count. */ -static inline void adj_guesttime(u64 hosttime, u8 flags) +static struct { + u64 host_time; + u64 ref_time; + struct system_time_snapshot snap; + spinlock_t lock; +} host_ts; + +static inline void adj_guesttime(u64 hosttime, u64 reftime, u8 adj_flags) { - struct adj_time_work *wrk; - static s32 scnt = 50; + unsigned long flags; + u64 cur_reftime; - wrk = kmalloc(sizeof(struct adj_time_work), GFP_ATOMIC); - if (wrk == NULL) - return; - - wrk->host_time = hosttime; - if ((flags & ICTIMESYNCFLAG_SYNC) != 0) { - INIT_WORK(&wrk->work, hv_set_host_time); - schedule_work(&wrk->work); - return; - } + /* + * This check is safe since we are executing in the + * interrupt context and time synch messages arre always + * delivered on the same CPU. + */ + if (adj_flags & ICTIMESYNCFLAG_SYNC) { + /* Queue a job to do do_settimeofday64() */ + if (work_pending(&wrk.work)) + return; + + wrk.host_time = hosttime; + wrk.ref_time = reftime; + wrk.flags = adj_flags; + schedule_work(&wrk.work); + } else { + /* + * Save the adjusted time sample from the host and the snapshot + * of the current system time for PTP device. + */ + spin_lock_irqsave(&host_ts.lock, flags); + + cur_reftime = hyperv_cs->read(hyperv_cs); + host_ts.host_time = hosttime; + host_ts.ref_time = cur_reftime; + ktime_get_snapshot(&host_ts.snap); + + /* + * TimeSync v4 messages contain reference time (guest's Hyper-V + * clocksource read when the time sample was generated), we can + * improve the precision by adding the delta between now and the + * time of generation. + */ + if (ts_srv_version > TS_VERSION_3) + host_ts.host_time += (cur_reftime - reftime); - if ((flags & ICTIMESYNCFLAG_SAMPLE) != 0 && scnt > 0) { - scnt--; - INIT_WORK(&wrk->work, hv_set_host_time); - schedule_work(&wrk->work); - } else - kfree(wrk); + spin_unlock_irqrestore(&host_ts.lock, flags); + } } /* @@ -237,8 +306,8 @@ u64 requestid; struct icmsg_hdr *icmsghdrp; struct ictimesync_data *timedatap; + struct ictimesync_ref_data *refdata; u8 *time_txf_buf = util_timesynch.recv_buffer; - struct icmsg_negotiate *negop = NULL; vmbus_recvpacket(channel, time_txf_buf, PAGE_SIZE, &recvlen, &requestid); @@ -248,15 +317,33 @@ sizeof(struct vmbuspipe_hdr)]; if (icmsghdrp->icmsgtype == ICMSGTYPE_NEGOTIATE) { - vmbus_prep_negotiate_resp(icmsghdrp, negop, - time_txf_buf, - util_fw_version, - ts_srv_version); + if (vmbus_prep_negotiate_resp(icmsghdrp, time_txf_buf, + fw_versions, FW_VER_COUNT, + ts_versions, TS_VER_COUNT, + NULL, &ts_srv_version)) { + pr_info("TimeSync IC version %d.%d\n", + ts_srv_version >> 16, + ts_srv_version & 0xFFFF); + } } else { - timedatap = (struct ictimesync_data *)&time_txf_buf[ - sizeof(struct vmbuspipe_hdr) + - sizeof(struct icmsg_hdr)]; - adj_guesttime(timedatap->parenttime, timedatap->flags); + if (ts_srv_version > TS_VERSION_3) { + refdata = (struct ictimesync_ref_data *) + &time_txf_buf[ + sizeof(struct vmbuspipe_hdr) + + sizeof(struct icmsg_hdr)]; + + adj_guesttime(refdata->parenttime, + refdata->vmreferencetime, + refdata->flags); + } else { + timedatap = (struct ictimesync_data *) + &time_txf_buf[ + sizeof(struct vmbuspipe_hdr) + + sizeof(struct icmsg_hdr)]; + adj_guesttime(timedatap->parenttime, + 0, + timedatap->flags); + } } icmsghdrp->icflags = ICMSGHDRFLAG_TRANSACTION @@ -281,19 +368,29 @@ struct icmsg_hdr *icmsghdrp; struct heartbeat_msg_data *heartbeat_msg; u8 *hbeat_txf_buf = util_heartbeat.recv_buffer; - struct icmsg_negotiate *negop = NULL; - vmbus_recvpacket(channel, hbeat_txf_buf, - PAGE_SIZE, &recvlen, &requestid); + while (1) { + + vmbus_recvpacket(channel, hbeat_txf_buf, + PAGE_SIZE, &recvlen, &requestid); + + if (!recvlen) + break; - if (recvlen > 0) { icmsghdrp = (struct icmsg_hdr *)&hbeat_txf_buf[ sizeof(struct vmbuspipe_hdr)]; if (icmsghdrp->icmsgtype == ICMSGTYPE_NEGOTIATE) { - vmbus_prep_negotiate_resp(icmsghdrp, negop, - hbeat_txf_buf, util_fw_version, - hb_srv_version); + if (vmbus_prep_negotiate_resp(icmsghdrp, + hbeat_txf_buf, + fw_versions, FW_VER_COUNT, + hb_versions, HB_VER_COUNT, + NULL, &hb_srv_version)) { + + pr_info("Heartbeat IC version %d.%d\n", + hb_srv_version >> 16, + hb_srv_version & 0xFFFF); + } } else { heartbeat_msg = (struct heartbeat_msg_data *)&hbeat_txf_buf[ @@ -343,25 +440,6 @@ hv_set_drvdata(dev, srv); - /* - * Based on the host; initialize the framework and - * service version numbers we will negotiate. - */ - switch (vmbus_proto_version) { - case (VERSION_WS2008): - util_fw_version = UTIL_WS2K8_FW_VERSION; - sd_srv_version = SD_WS2008_VERSION; - ts_srv_version = TS_WS2008_VERSION; - hb_srv_version = HB_WS2008_VERSION; - break; - - default: - util_fw_version = UTIL_FW_VERSION; - sd_srv_version = SD_VERSION; - ts_srv_version = TS_VERSION; - hb_srv_version = HB_VERSION; - } - ret = vmbus_open(dev->channel, 4 * PAGE_SIZE, 4 * PAGE_SIZE, NULL, 0, srv->util_cb, dev->channel); if (ret) @@ -427,6 +505,116 @@ .remove = util_remove, }; +static int hv_ptp_enable(struct ptp_clock_info *info, + struct ptp_clock_request *request, int on) +{ + return -EOPNOTSUPP; +} + +static int hv_ptp_settime(struct ptp_clock_info *p, const struct timespec64 *ts) +{ + return -EOPNOTSUPP; +} + +static int hv_ptp_adjfreq(struct ptp_clock_info *ptp, s32 delta) +{ + return -EOPNOTSUPP; +} +static int hv_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta) +{ + return -EOPNOTSUPP; +} + +static int hv_ptp_gettime(struct ptp_clock_info *info, struct timespec64 *ts) +{ + unsigned long flags; + u64 newtime, reftime; + + spin_lock_irqsave(&host_ts.lock, flags); + reftime = hyperv_cs->read(hyperv_cs); + newtime = host_ts.host_time + (reftime - host_ts.ref_time); + *ts = ns_to_timespec64((newtime - WLTIMEDELTA) * 100); + spin_unlock_irqrestore(&host_ts.lock, flags); + + return 0; +} + +static int hv_ptp_get_syncdevicetime(ktime_t *device, + struct system_counterval_t *system, + void *ctx) +{ + system->cs = hyperv_cs; + system->cycles = host_ts.ref_time; + *device = ns_to_ktime((host_ts.host_time - WLTIMEDELTA) * 100); + + return 0; +} + +static int hv_ptp_getcrosststamp(struct ptp_clock_info *ptp, + struct system_device_crosststamp *xtstamp) +{ + unsigned long flags; + int ret; + + spin_lock_irqsave(&host_ts.lock, flags); + + /* + * host_ts contains the last time sample from the host and the snapshot + * of system time. We don't need to calculate the time delta between + * the reception and now as get_device_system_crosststamp() does the + * required interpolation. + */ + ret = get_device_system_crosststamp(hv_ptp_get_syncdevicetime, + NULL, &host_ts.snap, xtstamp); + + spin_unlock_irqrestore(&host_ts.lock, flags); + + return ret; +} + +static struct ptp_clock_info ptp_hyperv_info = { + .name = "hyperv", + .enable = hv_ptp_enable, + .adjtime = hv_ptp_adjtime, + .adjfreq = hv_ptp_adjfreq, + .gettime64 = hv_ptp_gettime, + .getcrosststamp = hv_ptp_getcrosststamp, + .settime64 = hv_ptp_settime, + .owner = THIS_MODULE, +}; + +static struct ptp_clock *hv_ptp_clock; + +static int hv_timesync_init(struct hv_util_service *srv) +{ + /* TimeSync requires Hyper-V clocksource. */ + if (!hyperv_cs) + return -ENODEV; + + INIT_WORK(&wrk.work, hv_set_host_time); + + /* + * ptp_clock_register() returns NULL when CONFIG_PTP_1588_CLOCK is + * disabled but the driver is still useful without the PTP device + * as it still handles the ICTIMESYNCFLAG_SYNC case. + */ + hv_ptp_clock = ptp_clock_register(&ptp_hyperv_info, NULL); + if (IS_ERR_OR_NULL(hv_ptp_clock)) { + pr_err("cannot register PTP clock: %ld\n", + PTR_ERR(hv_ptp_clock)); + hv_ptp_clock = NULL; + } + + return 0; +} + +static void hv_timesync_deinit(void) +{ + if (hv_ptp_clock) + ptp_clock_unregister(hv_ptp_clock); + cancel_work_sync(&wrk.work); +} + static int __init init_hyperv_utils(void) { pr_info("Registering HyperV Utility Driver\n"); --- linux-4.8.0.orig/drivers/hv/hv_utils_transport.c +++ linux-4.8.0/drivers/hv/hv_utils_transport.c @@ -72,6 +72,10 @@ hvt->outmsg = NULL; hvt->outmsg_len = 0; + if (hvt->on_read) + hvt->on_read(); + hvt->on_read = NULL; + out_unlock: mutex_unlock(&hvt->lock); return ret; @@ -178,10 +182,11 @@ * connects back. */ hvt_reset(hvt); - mutex_unlock(&hvt->lock); if (mode_old == HVUTIL_TRANSPORT_DESTROY) - hvt_transport_free(hvt); + complete(&hvt->release); + + mutex_unlock(&hvt->lock); return 0; } @@ -219,7 +224,8 @@ mutex_unlock(&hvt->lock); } -int hvutil_transport_send(struct hvutil_transport *hvt, void *msg, int len) +int hvutil_transport_send(struct hvutil_transport *hvt, void *msg, int len, + void (*on_read_cb)(void)) { struct cn_msg *cn_msg; int ret = 0; @@ -237,6 +243,13 @@ memcpy(cn_msg->data, msg, len); ret = cn_netlink_send(cn_msg, 0, 0, GFP_ATOMIC); kfree(cn_msg); + /* + * We don't know when netlink messages are delivered but unlike + * in CHARDEV mode we're not blocked and we can send next + * messages right away. + */ + if (on_read_cb) + on_read_cb(); return ret; } /* HVUTIL_TRANSPORT_CHARDEV */ @@ -255,6 +268,7 @@ if (hvt->outmsg) { memcpy(hvt->outmsg, msg, len); hvt->outmsg_len = len; + hvt->on_read = on_read_cb; wake_up_interruptible(&hvt->outmsg_q); } else ret = -ENOMEM; @@ -291,6 +305,7 @@ init_waitqueue_head(&hvt->outmsg_q); mutex_init(&hvt->lock); + init_completion(&hvt->release); spin_lock(&hvt_list_lock); list_add(&hvt->list, &hvt_list); @@ -338,6 +353,8 @@ if (hvt->cn_id.idx > 0 && hvt->cn_id.val > 0) cn_del_callback(&hvt->cn_id); - if (mode_old != HVUTIL_TRANSPORT_CHARDEV) - hvt_transport_free(hvt); + if (mode_old == HVUTIL_TRANSPORT_CHARDEV) + wait_for_completion(&hvt->release); + + hvt_transport_free(hvt); } --- linux-4.8.0.orig/drivers/hv/hv_utils_transport.h +++ linux-4.8.0/drivers/hv/hv_utils_transport.h @@ -36,17 +36,20 @@ struct list_head list; /* hvt_list */ int (*on_msg)(void *, int); /* callback on new user message */ void (*on_reset)(void); /* callback when userspace drops */ + void (*on_read)(void); /* callback on message read */ u8 *outmsg; /* message to the userspace */ int outmsg_len; /* its length */ wait_queue_head_t outmsg_q; /* poll/read wait queue */ struct mutex lock; /* protects struct members */ + struct completion release; /* synchronize with fd release */ }; struct hvutil_transport *hvutil_transport_init(const char *name, u32 cn_idx, u32 cn_val, int (*on_msg)(void *, int), void (*on_reset)(void)); -int hvutil_transport_send(struct hvutil_transport *hvt, void *msg, int len); +int hvutil_transport_send(struct hvutil_transport *hvt, void *msg, int len, + void (*on_read_cb)(void)); void hvutil_transport_destroy(struct hvutil_transport *hvt); #endif /* _HV_UTILS_TRANSPORT_H */ --- linux-4.8.0.orig/drivers/hv/hyperv_vmbus.h +++ linux-4.8.0/drivers/hv/hyperv_vmbus.h @@ -40,96 +40,12 @@ */ #define HV_UTIL_NEGO_TIMEOUT 60 -/* - * The below CPUID leaves are present if VersionAndFeatures.HypervisorPresent - * is set by CPUID(HVCPUID_VERSION_FEATURES). - */ -enum hv_cpuid_function { - HVCPUID_VERSION_FEATURES = 0x00000001, - HVCPUID_VENDOR_MAXFUNCTION = 0x40000000, - HVCPUID_INTERFACE = 0x40000001, - - /* - * The remaining functions depend on the value of - * HVCPUID_INTERFACE - */ - HVCPUID_VERSION = 0x40000002, - HVCPUID_FEATURES = 0x40000003, - HVCPUID_ENLIGHTENMENT_INFO = 0x40000004, - HVCPUID_IMPLEMENTATION_LIMITS = 0x40000005, -}; -#define HV_FEATURE_GUEST_CRASH_MSR_AVAILABLE 0x400 -#define HV_X64_MSR_CRASH_P0 0x40000100 -#define HV_X64_MSR_CRASH_P1 0x40000101 -#define HV_X64_MSR_CRASH_P2 0x40000102 -#define HV_X64_MSR_CRASH_P3 0x40000103 -#define HV_X64_MSR_CRASH_P4 0x40000104 -#define HV_X64_MSR_CRASH_CTL 0x40000105 -#define HV_CRASH_CTL_CRASH_NOTIFY (1ULL << 63) - -/* Define version of the synthetic interrupt controller. */ -#define HV_SYNIC_VERSION (1) - -#define HV_ANY_VP (0xFFFFFFFF) - -/* Define synthetic interrupt controller flag constants. */ -#define HV_EVENT_FLAGS_COUNT (256 * 8) #define HV_EVENT_FLAGS_BYTE_COUNT (256) #define HV_EVENT_FLAGS_DWORD_COUNT (256 / sizeof(u32)) -/* Define invalid partition identifier. */ -#define HV_PARTITION_ID_INVALID ((u64)0x0) - -/* Define port type. */ -enum hv_port_type { - HVPORT_MSG = 1, - HVPORT_EVENT = 2, - HVPORT_MONITOR = 3 -}; - -/* Define port information structure. */ -struct hv_port_info { - enum hv_port_type port_type; - u32 padding; - union { - struct { - u32 target_sint; - u32 target_vp; - u64 rsvdz; - } message_port_info; - struct { - u32 target_sint; - u32 target_vp; - u16 base_flag_number; - u16 flag_count; - u32 rsvdz; - } event_port_info; - struct { - u64 monitor_address; - u64 rsvdz; - } monitor_port_info; - }; -}; - -struct hv_connection_info { - enum hv_port_type port_type; - u32 padding; - union { - struct { - u64 rsvdz; - } message_connection_info; - struct { - u64 rsvdz; - } event_connection_info; - struct { - u64 monitor_address; - } monitor_connection_info; - }; -}; - /* * Timer configuration register. */ @@ -146,8 +62,6 @@ }; }; -/* Define the number of message buffers associated with each port. */ -#define HV_PORT_MESSAGE_BUFFER_COUNT (16) /* Define the synthetic interrupt controller event flags format. */ union hv_synic_event_flags { @@ -155,11 +69,6 @@ u32 flags32[HV_EVENT_FLAGS_DWORD_COUNT]; }; -/* Define the synthetic interrupt flags page layout. */ -struct hv_synic_event_flags_page { - union hv_synic_event_flags sintevent_flags[HV_SYNIC_SINT_COUNT]; -}; - /* Define SynIC control register. */ union hv_synic_scontrol { u64 as_uint64; @@ -261,6 +170,8 @@ u8 rsvdz4[1984]; }; +#define HV_HYPERCALL_PARAM_ALIGN sizeof(u64) + /* Definition of the hv_post_message hypercall input structure. */ struct hv_input_post_message { union hv_connection_id connectionid; @@ -270,56 +181,6 @@ u64 payload[HV_MESSAGE_PAYLOAD_QWORD_COUNT]; }; -/* - * Versioning definitions used for guests reporting themselves to the - * hypervisor, and visa versa. - */ - -/* Version info reported by guest OS's */ -enum hv_guest_os_vendor { - HVGUESTOS_VENDOR_MICROSOFT = 0x0001 -}; - -enum hv_guest_os_microsoft_ids { - HVGUESTOS_MICROSOFT_UNDEFINED = 0x00, - HVGUESTOS_MICROSOFT_MSDOS = 0x01, - HVGUESTOS_MICROSOFT_WINDOWS3X = 0x02, - HVGUESTOS_MICROSOFT_WINDOWS9X = 0x03, - HVGUESTOS_MICROSOFT_WINDOWSNT = 0x04, - HVGUESTOS_MICROSOFT_WINDOWSCE = 0x05 -}; - -/* - * Declare the MSR used to identify the guest OS. - */ -#define HV_X64_MSR_GUEST_OS_ID 0x40000000 - -union hv_x64_msr_guest_os_id_contents { - u64 as_uint64; - struct { - u64 build_number:16; - u64 service_version:8; /* Service Pack, etc. */ - u64 minor_version:8; - u64 major_version:8; - u64 os_id:8; /* enum hv_guest_os_microsoft_ids (if Vendor=MS) */ - u64 vendor_id:16; /* enum hv_guest_os_vendor */ - }; -}; - -/* - * Declare the MSR used to setup pages used to communicate with the hypervisor. - */ -#define HV_X64_MSR_HYPERCALL 0x40000001 - -union hv_x64_msr_hypercall_contents { - u64 as_uint64; - struct { - u64 enable:1; - u64 reserved:11; - u64 guest_physical_address:52; - }; -}; - enum { VMBUS_MESSAGE_CONNECTION_ID = 1, @@ -331,105 +192,12 @@ VMBUS_MESSAGE_SINT = 2, }; -/* #defines */ - -#define HV_PRESENT_BIT 0x80000000 - -/* - * The guest OS needs to register the guest ID with the hypervisor. - * The guest ID is a 64 bit entity and the structure of this ID is - * specified in the Hyper-V specification: - * - * http://msdn.microsoft.com/en-us/library/windows/hardware/ff542653%28v=vs.85%29.aspx - * - * While the current guideline does not specify how Linux guest ID(s) - * need to be generated, our plan is to publish the guidelines for - * Linux and other guest operating systems that currently are hosted - * on Hyper-V. The implementation here conforms to this yet - * unpublished guidelines. - * - * - * Bit(s) - * 63 - Indicates if the OS is Open Source or not; 1 is Open Source - * 62:56 - Os Type; Linux is 0x100 - * 55:48 - Distro specific identification - * 47:16 - Linux kernel version number - * 15:0 - Distro specific identification - * - * - */ - -#define HV_LINUX_VENDOR_ID 0x8100 - -/* - * Generate the guest ID based on the guideline described above. - */ - -static inline __u64 generate_guest_id(__u8 d_info1, __u32 kernel_version, - __u16 d_info2) -{ - __u64 guest_id = 0; - - guest_id = (((__u64)HV_LINUX_VENDOR_ID) << 48); - guest_id |= (((__u64)(d_info1)) << 48); - guest_id |= (((__u64)(kernel_version)) << 16); - guest_id |= ((__u64)(d_info2)); - - return guest_id; -} - - -#define HV_CPU_POWER_MANAGEMENT (1 << 0) -#define HV_RECOMMENDATIONS_MAX 4 - -#define HV_X64_MAX 5 -#define HV_CAPS_MAX 8 - - -#define HV_HYPERCALL_PARAM_ALIGN sizeof(u64) - - -/* Service definitions */ - -#define HV_SERVICE_PARENT_PORT (0) -#define HV_SERVICE_PARENT_CONNECTION (0) - -#define HV_SERVICE_CONNECT_RESPONSE_SUCCESS (0) -#define HV_SERVICE_CONNECT_RESPONSE_INVALID_PARAMETER (1) -#define HV_SERVICE_CONNECT_RESPONSE_UNKNOWN_SERVICE (2) -#define HV_SERVICE_CONNECT_RESPONSE_CONNECTION_REJECTED (3) - -#define HV_SERVICE_CONNECT_REQUEST_MESSAGE_ID (1) -#define HV_SERVICE_CONNECT_RESPONSE_MESSAGE_ID (2) -#define HV_SERVICE_DISCONNECT_REQUEST_MESSAGE_ID (3) -#define HV_SERVICE_DISCONNECT_RESPONSE_MESSAGE_ID (4) -#define HV_SERVICE_MAX_MESSAGE_ID (4) - -#define HV_SERVICE_PROTOCOL_VERSION (0x0010) -#define HV_CONNECT_PAYLOAD_BYTE_COUNT 64 - -/* #define VMBUS_REVISION_NUMBER 6 */ - -/* Our local vmbus's port and connection id. Anything >0 is fine */ -/* #define VMBUS_PORT_ID 11 */ - -/* 628180B8-308D-4c5e-B7DB-1BEB62E62EF4 */ -static const uuid_le VMBUS_SERVICE_ID = { - .b = { - 0xb8, 0x80, 0x81, 0x62, 0x8d, 0x30, 0x5e, 0x4c, - 0xb7, 0xdb, 0x1b, 0xeb, 0x62, 0xe6, 0x2e, 0xf4 - }, -}; - - - struct hv_context { /* We only support running on top of Hyper-V * So at this point this really can only contain the Hyper-V ID */ u64 guestid; - void *hypercall_page; void *tsc_page; bool synic_initialized; @@ -475,14 +243,6 @@ extern struct hv_context hv_context; -struct ms_hyperv_tsc_page { - volatile u32 tsc_sequence; - u32 reserved1; - volatile u64 tsc_scale; - volatile s64 tsc_offset; - u64 reserved2[509]; -}; - struct hv_ring_buffer_debug_info { u32 current_interrupt_mask; u32 current_read_index; @@ -495,8 +255,6 @@ extern int hv_init(void); -extern void hv_cleanup(void); - extern int hv_post_message(union hv_connection_id connection_id, enum hv_message_type message_type, void *payload, size_t payload_size); @@ -505,35 +263,28 @@ extern void hv_synic_free(void); -extern void hv_synic_init(void *irqarg); +extern int hv_synic_init(unsigned int cpu); -extern void hv_synic_cleanup(void *arg); +extern int hv_synic_cleanup(unsigned int cpu); extern void hv_synic_clockevents_cleanup(void); -/* - * Host version information. - */ -extern unsigned int host_info_eax; -extern unsigned int host_info_ebx; -extern unsigned int host_info_ecx; -extern unsigned int host_info_edx; - /* Interface */ -int hv_ringbuffer_init(struct hv_ring_buffer_info *ring_info, void *buffer, - u32 buflen); +int hv_ringbuffer_init(struct hv_ring_buffer_info *ring_info, + struct page *pages, u32 pagecnt); void hv_ringbuffer_cleanup(struct hv_ring_buffer_info *ring_info); -int hv_ringbuffer_write(struct hv_ring_buffer_info *ring_info, +int hv_ringbuffer_write(struct vmbus_channel *channel, struct kvec *kv_list, - u32 kv_count, bool *signal, bool lock); + u32 kv_count, bool lock, + bool kick_q); -int hv_ringbuffer_read(struct hv_ring_buffer_info *inring_info, +int hv_ringbuffer_read(struct vmbus_channel *channel, void *buffer, u32 buflen, u32 *buffer_actual_len, - u64 *requestid, bool *signal, bool raw); + u64 *requestid, bool raw); void hv_ringbuffer_get_debuginfo(struct hv_ring_buffer_info *ring_info, struct hv_ring_buffer_debug_info *debug_info); @@ -624,41 +375,6 @@ extern struct vmbus_channel_message_table_entry channel_message_table[CHANNELMSG_COUNT]; -/* Free the message slot and signal end-of-message if required */ -static inline void vmbus_signal_eom(struct hv_message *msg, u32 old_msg_type) -{ - /* - * On crash we're reading some other CPU's message page and we need - * to be careful: this other CPU may already had cleared the header - * and the host may already had delivered some other message there. - * In case we blindly write msg->header.message_type we're going - * to lose it. We can still lose a message of the same type but - * we count on the fact that there can only be one - * CHANNELMSG_UNLOAD_RESPONSE and we don't care about other messages - * on crash. - */ - if (cmpxchg(&msg->header.message_type, old_msg_type, - HVMSG_NONE) != old_msg_type) - return; - - /* - * Make sure the write to MessageType (ie set to - * HVMSG_NONE) happens before we read the - * MessagePending and EOMing. Otherwise, the EOMing - * will not deliver any more messages since there is - * no empty slot - */ - mb(); - - if (msg->header.message_flags.msg_pending) { - /* - * This will cause message queue rescan to - * possibly deliver another msg from the - * hypervisor - */ - wrmsrl(HV_X64_MSR_EOM, 0); - } -} /* General vmbus interface */ @@ -669,10 +385,6 @@ int vmbus_device_register(struct hv_device *child_device_obj); void vmbus_device_unregister(struct hv_device *device_obj); -/* static void */ -/* VmbusChildDeviceDestroy( */ -/* struct hv_device *); */ - struct vmbus_channel *relid2channel(u32 relid); void vmbus_free_channels(void); @@ -682,7 +394,7 @@ int vmbus_connect(void); void vmbus_disconnect(void); -int vmbus_post_msg(void *buffer, size_t buflen); +int vmbus_post_msg(void *buffer, size_t buflen, bool can_sleep); void vmbus_on_event(unsigned long data); void vmbus_on_msg_dpc(unsigned long data); --- linux-4.8.0.orig/drivers/hv/ring_buffer.c +++ linux-4.8.0/drivers/hv/ring_buffer.c @@ -27,6 +27,8 @@ #include #include #include +#include +#include #include "hyperv_vmbus.h" @@ -64,13 +66,25 @@ * once the ring buffer is empty, it will clear the * interrupt_mask and re-check to see if new data has * arrived. + * + * KYS: Oct. 30, 2016: + * It looks like Windows hosts have logic to deal with DOS attacks that + * can be triggered if it receives interrupts when it is not expecting + * the interrupt. The host expects interrupts only when the ring + * transitions from empty to non-empty (or full to non full on the guest + * to host ring). + * So, base the signaling decision solely on the ring state until the + * host logic is fixed. */ -static bool hv_need_to_signal(u32 old_write, struct hv_ring_buffer_info *rbi) +static void hv_signal_on_write(u32 old_write, struct vmbus_channel *channel, + bool kick_q) { + struct hv_ring_buffer_info *rbi = &channel->outbound; + virt_mb(); if (READ_ONCE(rbi->ring_buffer->interrupt_mask)) - return false; + return; /* check interrupt_mask before read_index */ virt_rmb(); @@ -79,9 +93,9 @@ * ring transitions from being empty to non-empty. */ if (old_write == READ_ONCE(rbi->ring_buffer->read_index)) - return true; + vmbus_setevent(channel); - return false; + return; } /* Get the next write location for the specified ring buffer. */ @@ -162,18 +176,7 @@ void *ring_buffer = hv_get_ring_buffer(ring_info); u32 ring_buffer_size = hv_get_ring_buffersize(ring_info); - u32 frag_len; - - /* wrap-around detected at the src */ - if (destlen > ring_buffer_size - start_read_offset) { - frag_len = ring_buffer_size - start_read_offset; - - memcpy(dest, ring_buffer + start_read_offset, frag_len); - memcpy(dest + frag_len, ring_buffer, destlen - frag_len); - } else - - memcpy(dest, ring_buffer + start_read_offset, destlen); - + memcpy(dest, ring_buffer + start_read_offset, destlen); start_read_offset += destlen; start_read_offset %= ring_buffer_size; @@ -194,15 +197,8 @@ { void *ring_buffer = hv_get_ring_buffer(ring_info); u32 ring_buffer_size = hv_get_ring_buffersize(ring_info); - u32 frag_len; - /* wrap-around detected! */ - if (srclen > ring_buffer_size - start_write_offset) { - frag_len = ring_buffer_size - start_write_offset; - memcpy(ring_buffer + start_write_offset, src, frag_len); - memcpy(ring_buffer, src + frag_len, srclen - frag_len); - } else - memcpy(ring_buffer + start_write_offset, src, srclen); + memcpy(ring_buffer + start_write_offset, src, srclen); start_write_offset += srclen; start_write_offset %= ring_buffer_size; @@ -235,22 +231,46 @@ /* Initialize the ring buffer. */ int hv_ringbuffer_init(struct hv_ring_buffer_info *ring_info, - void *buffer, u32 buflen) + struct page *pages, u32 page_cnt) { - if (sizeof(struct hv_ring_buffer) != PAGE_SIZE) - return -EINVAL; + int i; + struct page **pages_wraparound; + + BUILD_BUG_ON((sizeof(struct hv_ring_buffer) != PAGE_SIZE)); memset(ring_info, 0, sizeof(struct hv_ring_buffer_info)); - ring_info->ring_buffer = (struct hv_ring_buffer *)buffer; + /* + * First page holds struct hv_ring_buffer, do wraparound mapping for + * the rest. + */ + pages_wraparound = kzalloc(sizeof(struct page *) * (page_cnt * 2 - 1), + GFP_KERNEL); + if (!pages_wraparound) + return -ENOMEM; + + pages_wraparound[0] = pages; + for (i = 0; i < 2 * (page_cnt - 1); i++) + pages_wraparound[i + 1] = &pages[i % (page_cnt - 1) + 1]; + + ring_info->ring_buffer = (struct hv_ring_buffer *) + vmap(pages_wraparound, page_cnt * 2 - 1, VM_MAP, PAGE_KERNEL); + + kfree(pages_wraparound); + + + if (!ring_info->ring_buffer) + return -ENOMEM; + ring_info->ring_buffer->read_index = ring_info->ring_buffer->write_index = 0; /* Set the feature bit for enabling flow control. */ ring_info->ring_buffer->feature_bits.value = 1; - ring_info->ring_size = buflen; - ring_info->ring_datasize = buflen - sizeof(struct hv_ring_buffer); + ring_info->ring_size = page_cnt << PAGE_SHIFT; + ring_info->ring_datasize = ring_info->ring_size - + sizeof(struct hv_ring_buffer); spin_lock_init(&ring_info->ring_lock); @@ -260,11 +280,13 @@ /* Cleanup the ring buffer. */ void hv_ringbuffer_cleanup(struct hv_ring_buffer_info *ring_info) { + vunmap(ring_info->ring_buffer); } /* Write to the ring buffer. */ -int hv_ringbuffer_write(struct hv_ring_buffer_info *outring_info, - struct kvec *kv_list, u32 kv_count, bool *signal, bool lock) +int hv_ringbuffer_write(struct vmbus_channel *channel, + struct kvec *kv_list, u32 kv_count, bool lock, + bool kick_q) { int i = 0; u32 bytes_avail_towrite; @@ -274,6 +296,10 @@ u32 old_write; u64 prev_indices = 0; unsigned long flags = 0; + struct hv_ring_buffer_info *outring_info = &channel->outbound; + + if (channel->rescind) + return -ENODEV; for (i = 0; i < kv_count; i++) totalbytes_towrite += kv_list[i].iov_len; @@ -326,13 +352,17 @@ if (lock) spin_unlock_irqrestore(&outring_info->ring_lock, flags); - *signal = hv_need_to_signal(old_write, outring_info); + hv_signal_on_write(old_write, channel, kick_q); + + if (channel->rescind) + return -ENODEV; + return 0; } -int hv_ringbuffer_read(struct hv_ring_buffer_info *inring_info, +int hv_ringbuffer_read(struct vmbus_channel *channel, void *buffer, u32 buflen, u32 *buffer_actual_len, - u64 *requestid, bool *signal, bool raw) + u64 *requestid, bool raw) { u32 bytes_avail_toread; u32 next_read_location = 0; @@ -341,6 +371,7 @@ u32 offset; u32 packetlen; int ret = 0; + struct hv_ring_buffer_info *inring_info = &channel->inbound; if (buflen <= 0) return -EINVAL; @@ -359,6 +390,7 @@ return ret; } + init_cached_read_index(channel); next_read_location = hv_get_next_read_location(inring_info); next_read_location = hv_copyfrom_ringbuffer(inring_info, &desc, sizeof(desc), @@ -398,7 +430,7 @@ /* Update the read index */ hv_set_next_read_location(inring_info, next_read_location); - *signal = hv_need_to_signal_on_read(inring_info); + hv_signal_on_read(channel); return ret; } --- linux-4.8.0.orig/drivers/hv/vmbus_drv.c +++ linux-4.8.0/drivers/hv/vmbus_drv.c @@ -49,31 +49,7 @@ static struct completion probe_event; - -static void hyperv_report_panic(struct pt_regs *regs) -{ - static bool panic_reported; - - /* - * We prefer to report panic on 'die' chain as we have proper - * registers to report, but if we miss it (e.g. on BUG()) we need - * to report it on 'panic'. - */ - if (panic_reported) - return; - panic_reported = true; - - wrmsrl(HV_X64_MSR_CRASH_P0, regs->ip); - wrmsrl(HV_X64_MSR_CRASH_P1, regs->ax); - wrmsrl(HV_X64_MSR_CRASH_P2, regs->bx); - wrmsrl(HV_X64_MSR_CRASH_P3, regs->cx); - wrmsrl(HV_X64_MSR_CRASH_P4, regs->dx); - - /* - * Let Hyper-V know there is crash data available - */ - wrmsrl(HV_X64_MSR_CRASH_CTL, HV_CRASH_CTL_CRASH_NOTIFY); -} +static int hyperv_cpuhp_online; static int hyperv_panic_event(struct notifier_block *nb, unsigned long val, void *args) @@ -105,8 +81,8 @@ static const char *fb_mmio_name = "fb_range"; static struct resource *fb_mmio; -struct resource *hyperv_mmio; -DEFINE_SEMAPHORE(hyperv_mmio_lock); +static struct resource *hyperv_mmio; +static DEFINE_SEMAPHORE(hyperv_mmio_lock); static int vmbus_exists(void) { @@ -833,7 +809,7 @@ ret = bus_register(&hv_bus); if (ret) - goto err_cleanup; + return ret; hv_setup_vmbus_irq(vmbus_isr); @@ -844,14 +820,16 @@ * Initialize the per-cpu interrupt state and * connect to the host. */ - on_each_cpu(hv_synic_init, NULL, 1); + ret = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "x86/hyperv:online", + hv_synic_init, hv_synic_cleanup); + if (ret < 0) + goto err_alloc; + hyperv_cpuhp_online = ret; + ret = vmbus_connect(); if (ret) goto err_connect; - if (vmbus_proto_version > VERSION_WIN7) - cpu_hotplug_disable(); - /* * Only register if the crash MSRs are available */ @@ -866,16 +844,13 @@ return 0; err_connect: - on_each_cpu(hv_synic_cleanup, NULL, 1); + cpuhp_remove_state(hyperv_cpuhp_online); err_alloc: hv_synic_free(); hv_remove_vmbus_irq(); bus_unregister(&hv_bus); -err_cleanup: - hv_cleanup(); - return ret; } @@ -961,8 +936,8 @@ { int ret = 0; - dev_set_name(&child_device_obj->device, "vmbus_%d", - child_device_obj->channel->id); + dev_set_name(&child_device_obj->device, "%pUl", + child_device_obj->channel->offermsg.offer.if_instance.b); child_device_obj->device.bus = &hv_bus; child_device_obj->device.parent = &hv_acpi_dev->dev; @@ -1320,13 +1295,13 @@ static void hv_kexec_handler(void) { - int cpu; - hv_synic_clockevents_cleanup(); vmbus_initiate_unload(false); - for_each_online_cpu(cpu) - smp_call_function_single(cpu, hv_synic_cleanup, NULL, 1); - hv_cleanup(); + vmbus_connection.conn_state = DISCONNECTED; + /* Make sure conn_state is set as hv_synic_cleanup checks for it */ + mb(); + cpuhp_remove_state(hyperv_cpuhp_online); + hyperv_cleanup(); }; static void hv_crash_handler(struct pt_regs *regs) @@ -1337,8 +1312,9 @@ * doing the cleanup for current CPU only. This should be sufficient * for kdump. */ - hv_synic_cleanup(NULL); - hv_cleanup(); + vmbus_connection.conn_state = DISCONNECTED; + hv_synic_cleanup(smp_processor_id()); + hyperv_cleanup(); }; static int __init hv_acpi_init(void) @@ -1398,15 +1374,12 @@ &hyperv_panic_block); } bus_unregister(&hv_bus); - hv_cleanup(); for_each_online_cpu(cpu) { tasklet_kill(hv_context.event_dpc[cpu]); - smp_call_function_single(cpu, hv_synic_cleanup, NULL, 1); } + cpuhp_remove_state(hyperv_cpuhp_online); hv_synic_free(); acpi_bus_unregister_driver(&vmbus_acpi_driver); - if (vmbus_proto_version > VERSION_WIN7) - cpu_hotplug_enable(); } --- linux-4.8.0.orig/drivers/hwtracing/coresight/coresight-tmc.c +++ linux-4.8.0/drivers/hwtracing/coresight/coresight-tmc.c @@ -388,9 +388,6 @@ err_misc_register: coresight_unregister(drvdata->csdev); err_devm_kzalloc: - if (drvdata->config_type == TMC_CONFIG_TYPE_ETR) - dma_free_coherent(dev, drvdata->size, - drvdata->vaddr, drvdata->paddr); return ret; } --- linux-4.8.0.orig/drivers/hwtracing/stm/core.c +++ linux-4.8.0/drivers/hwtracing/stm/core.c @@ -361,7 +361,7 @@ struct stm_file *stmf; struct device *dev; unsigned int major = imajor(inode); - int err = -ENODEV; + int err = -ENOMEM; dev = class_find_device(&stm_class, NULL, &major, major_match); if (!dev) @@ -369,8 +369,9 @@ stmf = kzalloc(sizeof(*stmf), GFP_KERNEL); if (!stmf) - return -ENOMEM; + goto err_put_device; + err = -ENODEV; stm_output_init(&stmf->output); stmf->stm = to_stm_device(dev); @@ -382,9 +383,10 @@ return nonseekable_open(inode, file); err_free: + kfree(stmf); +err_put_device: /* matches class_find_device() above */ put_device(dev); - kfree(stmf); return err; } --- linux-4.8.0.orig/drivers/i2c/Kconfig +++ linux-4.8.0/drivers/i2c/Kconfig @@ -59,7 +59,6 @@ config I2C_MUX tristate "I2C bus multiplexing support" - depends on HAS_IOMEM help Say Y here if you want the I2C core to support the ability to handle multiplexed I2C bus topologies, by presenting each --- linux-4.8.0.orig/drivers/i2c/busses/Kconfig +++ linux-4.8.0/drivers/i2c/busses/Kconfig @@ -956,6 +956,17 @@ This driver can also be built as a module. If so, the module will be called i2c-octeon. +config I2C_THUNDERX + tristate "Cavium ThunderX I2C bus support" + depends on 64BIT && PCI && (ARM64 || COMPILE_TEST) + select I2C_SMBUS + help + Say yes if you want to support the I2C serial bus on Cavium + ThunderX SOC. + + This driver can also be built as a module. If so, the module + will be called i2c-thunderx. + config I2C_XILINX tristate "Xilinx I2C Controller" depends on HAS_IOMEM --- linux-4.8.0.orig/drivers/i2c/busses/Makefile +++ linux-4.8.0/drivers/i2c/busses/Makefile @@ -91,7 +91,10 @@ obj-$(CONFIG_I2C_UNIPHIER_F) += i2c-uniphier-f.o obj-$(CONFIG_I2C_VERSATILE) += i2c-versatile.o obj-$(CONFIG_I2C_WMT) += i2c-wmt.o +i2c-octeon-objs := i2c-octeon-core.o i2c-octeon-platdrv.o obj-$(CONFIG_I2C_OCTEON) += i2c-octeon.o +i2c-thunderx-objs := i2c-octeon-core.o i2c-thunderx-pcidrv.o +obj-$(CONFIG_I2C_THUNDERX) += i2c-thunderx.o obj-$(CONFIG_I2C_XILINX) += i2c-xiic.o obj-$(CONFIG_I2C_XLR) += i2c-xlr.o obj-$(CONFIG_I2C_XLP9XX) += i2c-xlp9xx.o --- linux-4.8.0.orig/drivers/i2c/busses/i2c-i801.c +++ linux-4.8.0/drivers/i2c/busses/i2c-i801.c @@ -226,6 +226,7 @@ #define PCI_DEVICE_ID_INTEL_SUNRISEPOINT_H_SMBUS 0xa123 #define PCI_DEVICE_ID_INTEL_LEWISBURG_SMBUS 0xa1a3 #define PCI_DEVICE_ID_INTEL_LEWISBURG_SSKU_SMBUS 0xa223 +#define PCI_DEVICE_ID_INTEL_KABYPOINT_H_SMBUS 0xa2a3 struct i801_mux_config { char *gpio_chip; @@ -1006,6 +1007,7 @@ { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BROXTON_SMBUS) }, { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LEWISBURG_SMBUS) }, { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LEWISBURG_SSKU_SMBUS) }, + { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_KABYPOINT_H_SMBUS) }, { 0, } }; @@ -1482,6 +1484,7 @@ case PCI_DEVICE_ID_INTEL_LEWISBURG_SMBUS: case PCI_DEVICE_ID_INTEL_LEWISBURG_SSKU_SMBUS: case PCI_DEVICE_ID_INTEL_DNV_SMBUS: + case PCI_DEVICE_ID_INTEL_KABYPOINT_H_SMBUS: priv->features |= FEATURE_I2C_BLOCK_READ; priv->features |= FEATURE_IRQ; priv->features |= FEATURE_SMBUS_PEC; --- linux-4.8.0.orig/drivers/i2c/busses/i2c-octeon-core.c +++ linux-4.8.0/drivers/i2c/busses/i2c-octeon-core.c @@ -0,0 +1,791 @@ +/* + * (C) Copyright 2009-2010 + * Nokia Siemens Networks, michael.lawnick.ext@nsn.com + * + * Portions Copyright (C) 2010 - 2016 Cavium, Inc. + * + * This file contains the shared part of the driver for the i2c adapter in + * Cavium Networks' OCTEON processors and ThunderX SOCs. + * + * This file is licensed under the terms of the GNU General Public + * License version 2. This program is licensed "as is" without any + * warranty of any kind, whether express or implied. + */ + +#include +#include +#include +#include +#include + +#include "i2c-octeon-core.h" + +/* interrupt service routine */ +irqreturn_t octeon_i2c_isr(int irq, void *dev_id) +{ + struct octeon_i2c *i2c = dev_id; + + i2c->int_disable(i2c); + wake_up(&i2c->queue); + + return IRQ_HANDLED; +} + +static bool octeon_i2c_test_iflg(struct octeon_i2c *i2c) +{ + return (octeon_i2c_ctl_read(i2c) & TWSI_CTL_IFLG); +} + +/** + * octeon_i2c_wait - wait for the IFLG to be set + * @i2c: The struct octeon_i2c + * + * Returns 0 on success, otherwise a negative errno. + */ +static int octeon_i2c_wait(struct octeon_i2c *i2c) +{ + long time_left; + + /* + * Some chip revisions don't assert the irq in the interrupt + * controller. So we must poll for the IFLG change. + */ + if (i2c->broken_irq_mode) { + u64 end = get_jiffies_64() + i2c->adap.timeout; + + while (!octeon_i2c_test_iflg(i2c) && + time_before64(get_jiffies_64(), end)) + usleep_range(I2C_OCTEON_EVENT_WAIT / 2, I2C_OCTEON_EVENT_WAIT); + + return octeon_i2c_test_iflg(i2c) ? 0 : -ETIMEDOUT; + } + + i2c->int_enable(i2c); + time_left = wait_event_timeout(i2c->queue, octeon_i2c_test_iflg(i2c), + i2c->adap.timeout); + i2c->int_disable(i2c); + + if (i2c->broken_irq_check && !time_left && + octeon_i2c_test_iflg(i2c)) { + dev_err(i2c->dev, "broken irq connection detected, switching to polling mode.\n"); + i2c->broken_irq_mode = true; + return 0; + } + + if (!time_left) + return -ETIMEDOUT; + + return 0; +} + +static bool octeon_i2c_hlc_test_valid(struct octeon_i2c *i2c) +{ + return (__raw_readq(i2c->twsi_base + SW_TWSI(i2c)) & SW_TWSI_V) == 0; +} + +static void octeon_i2c_hlc_int_clear(struct octeon_i2c *i2c) +{ + /* clear ST/TS events, listen for neither */ + octeon_i2c_write_int(i2c, TWSI_INT_ST_INT | TWSI_INT_TS_INT); +} + +/* + * Cleanup low-level state & enable high-level controller. + */ +static void octeon_i2c_hlc_enable(struct octeon_i2c *i2c) +{ + int try = 0; + u64 val; + + if (i2c->hlc_enabled) + return; + i2c->hlc_enabled = true; + + while (1) { + val = octeon_i2c_ctl_read(i2c); + if (!(val & (TWSI_CTL_STA | TWSI_CTL_STP))) + break; + + /* clear IFLG event */ + if (val & TWSI_CTL_IFLG) + octeon_i2c_ctl_write(i2c, TWSI_CTL_ENAB); + + if (try++ > 100) { + pr_err("%s: giving up\n", __func__); + break; + } + + /* spin until any start/stop has finished */ + udelay(10); + } + octeon_i2c_ctl_write(i2c, TWSI_CTL_CE | TWSI_CTL_AAK | TWSI_CTL_ENAB); +} + +static void octeon_i2c_hlc_disable(struct octeon_i2c *i2c) +{ + if (!i2c->hlc_enabled) + return; + + i2c->hlc_enabled = false; + octeon_i2c_ctl_write(i2c, TWSI_CTL_ENAB); +} + +/** + * octeon_i2c_hlc_wait - wait for an HLC operation to complete + * @i2c: The struct octeon_i2c + * + * Returns 0 on success, otherwise -ETIMEDOUT. + */ +static int octeon_i2c_hlc_wait(struct octeon_i2c *i2c) +{ + int time_left; + + /* + * Some cn38xx boards don't assert the irq in the interrupt + * controller. So we must poll for the valid bit change. + */ + if (i2c->broken_irq_mode) { + u64 end = get_jiffies_64() + i2c->adap.timeout; + + while (!octeon_i2c_hlc_test_valid(i2c) && + time_before64(get_jiffies_64(), end)) + usleep_range(I2C_OCTEON_EVENT_WAIT / 2, I2C_OCTEON_EVENT_WAIT); + + return octeon_i2c_hlc_test_valid(i2c) ? 0 : -ETIMEDOUT; + } + + i2c->hlc_int_enable(i2c); + time_left = wait_event_timeout(i2c->queue, + octeon_i2c_hlc_test_valid(i2c), + i2c->adap.timeout); + i2c->hlc_int_disable(i2c); + if (!time_left) + octeon_i2c_hlc_int_clear(i2c); + + if (i2c->broken_irq_check && !time_left && + octeon_i2c_hlc_test_valid(i2c)) { + dev_err(i2c->dev, "broken irq connection detected, switching to polling mode.\n"); + i2c->broken_irq_mode = true; + return 0; + } + + if (!time_left) + return -ETIMEDOUT; + return 0; +} + +static int octeon_i2c_check_status(struct octeon_i2c *i2c, int final_read) +{ + u8 stat; + + /* + * This is ugly... in HLC mode the status is not in the status register + * but in the lower 8 bits of SW_TWSI. + */ + if (i2c->hlc_enabled) + stat = __raw_readq(i2c->twsi_base + SW_TWSI(i2c)); + else + stat = octeon_i2c_stat_read(i2c); + + switch (stat) { + /* Everything is fine */ + case STAT_IDLE: + case STAT_AD2W_ACK: + case STAT_RXADDR_ACK: + case STAT_TXADDR_ACK: + case STAT_TXDATA_ACK: + return 0; + + /* ACK allowed on pre-terminal bytes only */ + case STAT_RXDATA_ACK: + if (!final_read) + return 0; + return -EIO; + + /* NAK allowed on terminal byte only */ + case STAT_RXDATA_NAK: + if (final_read) + return 0; + return -EIO; + + /* Arbitration lost */ + case STAT_LOST_ARB_38: + case STAT_LOST_ARB_68: + case STAT_LOST_ARB_78: + case STAT_LOST_ARB_B0: + return -EAGAIN; + + /* Being addressed as slave, should back off & listen */ + case STAT_SLAVE_60: + case STAT_SLAVE_70: + case STAT_GENDATA_ACK: + case STAT_GENDATA_NAK: + return -EOPNOTSUPP; + + /* Core busy as slave */ + case STAT_SLAVE_80: + case STAT_SLAVE_88: + case STAT_SLAVE_A0: + case STAT_SLAVE_A8: + case STAT_SLAVE_LOST: + case STAT_SLAVE_NAK: + case STAT_SLAVE_ACK: + return -EOPNOTSUPP; + + case STAT_TXDATA_NAK: + return -EIO; + case STAT_TXADDR_NAK: + case STAT_RXADDR_NAK: + case STAT_AD2W_NAK: + return -ENXIO; + default: + dev_err(i2c->dev, "unhandled state: %d\n", stat); + return -EIO; + } +} + +static int octeon_i2c_recovery(struct octeon_i2c *i2c) +{ + int ret; + + ret = i2c_recover_bus(&i2c->adap); + if (ret) + /* recover failed, try hardware re-init */ + ret = octeon_i2c_init_lowlevel(i2c); + return ret; +} + +/** + * octeon_i2c_start - send START to the bus + * @i2c: The struct octeon_i2c + * + * Returns 0 on success, otherwise a negative errno. + */ +static int octeon_i2c_start(struct octeon_i2c *i2c) +{ + int ret; + u8 stat; + + octeon_i2c_hlc_disable(i2c); + + octeon_i2c_ctl_write(i2c, TWSI_CTL_ENAB | TWSI_CTL_STA); + ret = octeon_i2c_wait(i2c); + if (ret) + goto error; + + stat = octeon_i2c_stat_read(i2c); + if (stat == STAT_START || stat == STAT_REP_START) + /* START successful, bail out */ + return 0; + +error: + /* START failed, try to recover */ + ret = octeon_i2c_recovery(i2c); + return (ret) ? ret : -EAGAIN; +} + +/* send STOP to the bus */ +static void octeon_i2c_stop(struct octeon_i2c *i2c) +{ + octeon_i2c_ctl_write(i2c, TWSI_CTL_ENAB | TWSI_CTL_STP); +} + +/** + * octeon_i2c_read - receive data from the bus via low-level controller + * @i2c: The struct octeon_i2c + * @target: Target address + * @data: Pointer to the location to store the data + * @rlength: Length of the data + * @recv_len: flag for length byte + * + * The address is sent over the bus, then the data is read. + * + * Returns 0 on success, otherwise a negative errno. + */ +static int octeon_i2c_read(struct octeon_i2c *i2c, int target, + u8 *data, u16 *rlength, bool recv_len) +{ + int i, result, length = *rlength; + bool final_read = false; + + octeon_i2c_data_write(i2c, (target << 1) | 1); + octeon_i2c_ctl_write(i2c, TWSI_CTL_ENAB); + + result = octeon_i2c_wait(i2c); + if (result) + return result; + + /* address OK ? */ + result = octeon_i2c_check_status(i2c, false); + if (result) + return result; + + for (i = 0; i < length; i++) { + /* + * For the last byte to receive TWSI_CTL_AAK must not be set. + * + * A special case is I2C_M_RECV_LEN where we don't know the + * additional length yet. If recv_len is set we assume we're + * not reading the final byte and therefore need to set + * TWSI_CTL_AAK. + */ + if ((i + 1 == length) && !(recv_len && i == 0)) + final_read = true; + + /* clear iflg to allow next event */ + if (final_read) + octeon_i2c_ctl_write(i2c, TWSI_CTL_ENAB); + else + octeon_i2c_ctl_write(i2c, TWSI_CTL_ENAB | TWSI_CTL_AAK); + + result = octeon_i2c_wait(i2c); + if (result) + return result; + + data[i] = octeon_i2c_data_read(i2c, &result); + if (result) + return result; + if (recv_len && i == 0) { + if (data[i] > I2C_SMBUS_BLOCK_MAX + 1) + return -EPROTO; + length += data[i]; + } + + result = octeon_i2c_check_status(i2c, final_read); + if (result) + return result; + } + *rlength = length; + return 0; +} + +/** + * octeon_i2c_write - send data to the bus via low-level controller + * @i2c: The struct octeon_i2c + * @target: Target address + * @data: Pointer to the data to be sent + * @length: Length of the data + * + * The address is sent over the bus, then the data. + * + * Returns 0 on success, otherwise a negative errno. + */ +static int octeon_i2c_write(struct octeon_i2c *i2c, int target, + const u8 *data, int length) +{ + int i, result; + + octeon_i2c_data_write(i2c, target << 1); + octeon_i2c_ctl_write(i2c, TWSI_CTL_ENAB); + + result = octeon_i2c_wait(i2c); + if (result) + return result; + + for (i = 0; i < length; i++) { + result = octeon_i2c_check_status(i2c, false); + if (result) + return result; + + octeon_i2c_data_write(i2c, data[i]); + octeon_i2c_ctl_write(i2c, TWSI_CTL_ENAB); + + result = octeon_i2c_wait(i2c); + if (result) + return result; + } + + return 0; +} + +/* high-level-controller pure read of up to 8 bytes */ +static int octeon_i2c_hlc_read(struct octeon_i2c *i2c, struct i2c_msg *msgs) +{ + int i, j, ret = 0; + u64 cmd; + + octeon_i2c_hlc_enable(i2c); + octeon_i2c_hlc_int_clear(i2c); + + cmd = SW_TWSI_V | SW_TWSI_R | SW_TWSI_SOVR; + /* SIZE */ + cmd |= (u64)(msgs[0].len - 1) << SW_TWSI_SIZE_SHIFT; + /* A */ + cmd |= (u64)(msgs[0].addr & 0x7full) << SW_TWSI_ADDR_SHIFT; + + if (msgs[0].flags & I2C_M_TEN) + cmd |= SW_TWSI_OP_10; + else + cmd |= SW_TWSI_OP_7; + + octeon_i2c_writeq_flush(cmd, i2c->twsi_base + SW_TWSI(i2c)); + ret = octeon_i2c_hlc_wait(i2c); + if (ret) + goto err; + + cmd = __raw_readq(i2c->twsi_base + SW_TWSI(i2c)); + if ((cmd & SW_TWSI_R) == 0) + return octeon_i2c_check_status(i2c, false); + + for (i = 0, j = msgs[0].len - 1; i < msgs[0].len && i < 4; i++, j--) + msgs[0].buf[j] = (cmd >> (8 * i)) & 0xff; + + if (msgs[0].len > 4) { + cmd = __raw_readq(i2c->twsi_base + SW_TWSI_EXT(i2c)); + for (i = 0; i < msgs[0].len - 4 && i < 4; i++, j--) + msgs[0].buf[j] = (cmd >> (8 * i)) & 0xff; + } + +err: + return ret; +} + +/* high-level-controller pure write of up to 8 bytes */ +static int octeon_i2c_hlc_write(struct octeon_i2c *i2c, struct i2c_msg *msgs) +{ + int i, j, ret = 0; + u64 cmd; + + octeon_i2c_hlc_enable(i2c); + octeon_i2c_hlc_int_clear(i2c); + + cmd = SW_TWSI_V | SW_TWSI_SOVR; + /* SIZE */ + cmd |= (u64)(msgs[0].len - 1) << SW_TWSI_SIZE_SHIFT; + /* A */ + cmd |= (u64)(msgs[0].addr & 0x7full) << SW_TWSI_ADDR_SHIFT; + + if (msgs[0].flags & I2C_M_TEN) + cmd |= SW_TWSI_OP_10; + else + cmd |= SW_TWSI_OP_7; + + for (i = 0, j = msgs[0].len - 1; i < msgs[0].len && i < 4; i++, j--) + cmd |= (u64)msgs[0].buf[j] << (8 * i); + + if (msgs[0].len > 4) { + u64 ext = 0; + + for (i = 0; i < msgs[0].len - 4 && i < 4; i++, j--) + ext |= (u64)msgs[0].buf[j] << (8 * i); + octeon_i2c_writeq_flush(ext, i2c->twsi_base + SW_TWSI_EXT(i2c)); + } + + octeon_i2c_writeq_flush(cmd, i2c->twsi_base + SW_TWSI(i2c)); + ret = octeon_i2c_hlc_wait(i2c); + if (ret) + goto err; + + cmd = __raw_readq(i2c->twsi_base + SW_TWSI(i2c)); + if ((cmd & SW_TWSI_R) == 0) + return octeon_i2c_check_status(i2c, false); + +err: + return ret; +} + +/* high-level-controller composite write+read, msg0=addr, msg1=data */ +static int octeon_i2c_hlc_comp_read(struct octeon_i2c *i2c, struct i2c_msg *msgs) +{ + int i, j, ret = 0; + u64 cmd; + + octeon_i2c_hlc_enable(i2c); + + cmd = SW_TWSI_V | SW_TWSI_R | SW_TWSI_SOVR; + /* SIZE */ + cmd |= (u64)(msgs[1].len - 1) << SW_TWSI_SIZE_SHIFT; + /* A */ + cmd |= (u64)(msgs[0].addr & 0x7full) << SW_TWSI_ADDR_SHIFT; + + if (msgs[0].flags & I2C_M_TEN) + cmd |= SW_TWSI_OP_10_IA; + else + cmd |= SW_TWSI_OP_7_IA; + + if (msgs[0].len == 2) { + u64 ext = 0; + + cmd |= SW_TWSI_EIA; + ext = (u64)msgs[0].buf[0] << SW_TWSI_IA_SHIFT; + cmd |= (u64)msgs[0].buf[1] << SW_TWSI_IA_SHIFT; + octeon_i2c_writeq_flush(ext, i2c->twsi_base + SW_TWSI_EXT(i2c)); + } else { + cmd |= (u64)msgs[0].buf[0] << SW_TWSI_IA_SHIFT; + } + + octeon_i2c_hlc_int_clear(i2c); + octeon_i2c_writeq_flush(cmd, i2c->twsi_base + SW_TWSI(i2c)); + + ret = octeon_i2c_hlc_wait(i2c); + if (ret) + goto err; + + cmd = __raw_readq(i2c->twsi_base + SW_TWSI(i2c)); + if ((cmd & SW_TWSI_R) == 0) + return octeon_i2c_check_status(i2c, false); + + for (i = 0, j = msgs[1].len - 1; i < msgs[1].len && i < 4; i++, j--) + msgs[1].buf[j] = (cmd >> (8 * i)) & 0xff; + + if (msgs[1].len > 4) { + cmd = __raw_readq(i2c->twsi_base + SW_TWSI_EXT(i2c)); + for (i = 0; i < msgs[1].len - 4 && i < 4; i++, j--) + msgs[1].buf[j] = (cmd >> (8 * i)) & 0xff; + } + +err: + return ret; +} + +/* high-level-controller composite write+write, m[0]len<=2, m[1]len<=8 */ +static int octeon_i2c_hlc_comp_write(struct octeon_i2c *i2c, struct i2c_msg *msgs) +{ + bool set_ext = false; + int i, j, ret = 0; + u64 cmd, ext = 0; + + octeon_i2c_hlc_enable(i2c); + + cmd = SW_TWSI_V | SW_TWSI_SOVR; + /* SIZE */ + cmd |= (u64)(msgs[1].len - 1) << SW_TWSI_SIZE_SHIFT; + /* A */ + cmd |= (u64)(msgs[0].addr & 0x7full) << SW_TWSI_ADDR_SHIFT; + + if (msgs[0].flags & I2C_M_TEN) + cmd |= SW_TWSI_OP_10_IA; + else + cmd |= SW_TWSI_OP_7_IA; + + if (msgs[0].len == 2) { + cmd |= SW_TWSI_EIA; + ext |= (u64)msgs[0].buf[0] << SW_TWSI_IA_SHIFT; + set_ext = true; + cmd |= (u64)msgs[0].buf[1] << SW_TWSI_IA_SHIFT; + } else { + cmd |= (u64)msgs[0].buf[0] << SW_TWSI_IA_SHIFT; + } + + for (i = 0, j = msgs[1].len - 1; i < msgs[1].len && i < 4; i++, j--) + cmd |= (u64)msgs[1].buf[j] << (8 * i); + + if (msgs[1].len > 4) { + for (i = 0; i < msgs[1].len - 4 && i < 4; i++, j--) + ext |= (u64)msgs[1].buf[j] << (8 * i); + set_ext = true; + } + if (set_ext) + octeon_i2c_writeq_flush(ext, i2c->twsi_base + SW_TWSI_EXT(i2c)); + + octeon_i2c_hlc_int_clear(i2c); + octeon_i2c_writeq_flush(cmd, i2c->twsi_base + SW_TWSI(i2c)); + + ret = octeon_i2c_hlc_wait(i2c); + if (ret) + goto err; + + cmd = __raw_readq(i2c->twsi_base + SW_TWSI(i2c)); + if ((cmd & SW_TWSI_R) == 0) + return octeon_i2c_check_status(i2c, false); + +err: + return ret; +} + +/** + * octeon_i2c_xfer - The driver's master_xfer function + * @adap: Pointer to the i2c_adapter structure + * @msgs: Pointer to the messages to be processed + * @num: Length of the MSGS array + * + * Returns the number of messages processed, or a negative errno on failure. + */ +int octeon_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num) +{ + struct octeon_i2c *i2c = i2c_get_adapdata(adap); + int i, ret = 0; + + if (num == 1) { + if (msgs[0].len > 0 && msgs[0].len <= 8) { + if (msgs[0].flags & I2C_M_RD) + ret = octeon_i2c_hlc_read(i2c, msgs); + else + ret = octeon_i2c_hlc_write(i2c, msgs); + goto out; + } + } else if (num == 2) { + if ((msgs[0].flags & I2C_M_RD) == 0 && + (msgs[1].flags & I2C_M_RECV_LEN) == 0 && + msgs[0].len > 0 && msgs[0].len <= 2 && + msgs[1].len > 0 && msgs[1].len <= 8 && + msgs[0].addr == msgs[1].addr) { + if (msgs[1].flags & I2C_M_RD) + ret = octeon_i2c_hlc_comp_read(i2c, msgs); + else + ret = octeon_i2c_hlc_comp_write(i2c, msgs); + goto out; + } + } + + for (i = 0; ret == 0 && i < num; i++) { + struct i2c_msg *pmsg = &msgs[i]; + + /* zero-length messages are not supported */ + if (!pmsg->len) { + ret = -EOPNOTSUPP; + break; + } + + ret = octeon_i2c_start(i2c); + if (ret) + return ret; + + if (pmsg->flags & I2C_M_RD) + ret = octeon_i2c_read(i2c, pmsg->addr, pmsg->buf, + &pmsg->len, pmsg->flags & I2C_M_RECV_LEN); + else + ret = octeon_i2c_write(i2c, pmsg->addr, pmsg->buf, + pmsg->len); + } + octeon_i2c_stop(i2c); +out: + return (ret != 0) ? ret : num; +} + +/* calculate and set clock divisors */ +void octeon_i2c_set_clock(struct octeon_i2c *i2c) +{ + int tclk, thp_base, inc, thp_idx, mdiv_idx, ndiv_idx, foscl, diff; + int thp = 0x18, mdiv = 2, ndiv = 0, delta_hz = 1000000; + + for (ndiv_idx = 0; ndiv_idx < 8 && delta_hz != 0; ndiv_idx++) { + /* + * An mdiv value of less than 2 seems to not work well + * with ds1337 RTCs, so we constrain it to larger values. + */ + for (mdiv_idx = 15; mdiv_idx >= 2 && delta_hz != 0; mdiv_idx--) { + /* + * For given ndiv and mdiv values check the + * two closest thp values. + */ + tclk = i2c->twsi_freq * (mdiv_idx + 1) * 10; + tclk *= (1 << ndiv_idx); + thp_base = (i2c->sys_freq / (tclk * 2)) - 1; + + for (inc = 0; inc <= 1; inc++) { + thp_idx = thp_base + inc; + if (thp_idx < 5 || thp_idx > 0xff) + continue; + + foscl = i2c->sys_freq / (2 * (thp_idx + 1)); + foscl = foscl / (1 << ndiv_idx); + foscl = foscl / (mdiv_idx + 1) / 10; + diff = abs(foscl - i2c->twsi_freq); + if (diff < delta_hz) { + delta_hz = diff; + thp = thp_idx; + mdiv = mdiv_idx; + ndiv = ndiv_idx; + } + } + } + } + octeon_i2c_reg_write(i2c, SW_TWSI_OP_TWSI_CLK, thp); + octeon_i2c_reg_write(i2c, SW_TWSI_EOP_TWSI_CLKCTL, (mdiv << 3) | ndiv); +} + +int octeon_i2c_init_lowlevel(struct octeon_i2c *i2c) +{ + u8 status = 0; + int tries; + + /* reset controller */ + octeon_i2c_reg_write(i2c, SW_TWSI_EOP_TWSI_RST, 0); + + for (tries = 10; tries && status != STAT_IDLE; tries--) { + udelay(1); + status = octeon_i2c_stat_read(i2c); + if (status == STAT_IDLE) + break; + } + + if (status != STAT_IDLE) { + dev_err(i2c->dev, "%s: TWSI_RST failed! (0x%x)\n", + __func__, status); + return -EIO; + } + + /* toggle twice to force both teardowns */ + octeon_i2c_hlc_enable(i2c); + octeon_i2c_hlc_disable(i2c); + return 0; +} + +static int octeon_i2c_get_scl(struct i2c_adapter *adap) +{ + struct octeon_i2c *i2c = i2c_get_adapdata(adap); + u64 state; + + state = octeon_i2c_read_int(i2c); + return state & TWSI_INT_SCL; +} + +static void octeon_i2c_set_scl(struct i2c_adapter *adap, int val) +{ + struct octeon_i2c *i2c = i2c_get_adapdata(adap); + + octeon_i2c_write_int(i2c, val ? 0 : TWSI_INT_SCL_OVR); +} + +static int octeon_i2c_get_sda(struct i2c_adapter *adap) +{ + struct octeon_i2c *i2c = i2c_get_adapdata(adap); + u64 state; + + state = octeon_i2c_read_int(i2c); + return state & TWSI_INT_SDA; +} + +static void octeon_i2c_prepare_recovery(struct i2c_adapter *adap) +{ + struct octeon_i2c *i2c = i2c_get_adapdata(adap); + + octeon_i2c_hlc_disable(i2c); + octeon_i2c_reg_write(i2c, SW_TWSI_EOP_TWSI_RST, 0); + /* wait for software reset to settle */ + udelay(5); + + /* + * Bring control register to a good state regardless + * of HLC state. + */ + octeon_i2c_ctl_write(i2c, TWSI_CTL_ENAB); + + octeon_i2c_write_int(i2c, 0); +} + +static void octeon_i2c_unprepare_recovery(struct i2c_adapter *adap) +{ + struct octeon_i2c *i2c = i2c_get_adapdata(adap); + + /* + * Generate STOP to finish the unfinished transaction. + * Can't generate STOP via the TWSI CTL register + * since it could bring the TWSI controller into an inoperable state. + */ + octeon_i2c_write_int(i2c, TWSI_INT_SDA_OVR | TWSI_INT_SCL_OVR); + udelay(5); + octeon_i2c_write_int(i2c, TWSI_INT_SDA_OVR); + udelay(5); + octeon_i2c_write_int(i2c, 0); +} + +struct i2c_bus_recovery_info octeon_i2c_recovery_info = { + .recover_bus = i2c_generic_scl_recovery, + .get_scl = octeon_i2c_get_scl, + .set_scl = octeon_i2c_set_scl, + .get_sda = octeon_i2c_get_sda, + .prepare_recovery = octeon_i2c_prepare_recovery, + .unprepare_recovery = octeon_i2c_unprepare_recovery, +}; --- linux-4.8.0.orig/drivers/i2c/busses/i2c-octeon-core.h +++ linux-4.8.0/drivers/i2c/busses/i2c-octeon-core.h @@ -0,0 +1,222 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include + +/* Controller command patterns */ +#define SW_TWSI_V BIT_ULL(63) /* Valid bit */ +#define SW_TWSI_EIA BIT_ULL(61) /* Extended internal address */ +#define SW_TWSI_R BIT_ULL(56) /* Result or read bit */ +#define SW_TWSI_SOVR BIT_ULL(55) /* Size override */ +#define SW_TWSI_SIZE_SHIFT 52 +#define SW_TWSI_ADDR_SHIFT 40 +#define SW_TWSI_IA_SHIFT 32 /* Internal address */ + +/* Controller opcode word (bits 60:57) */ +#define SW_TWSI_OP_SHIFT 57 +#define SW_TWSI_OP_7 (0ULL << SW_TWSI_OP_SHIFT) +#define SW_TWSI_OP_7_IA (1ULL << SW_TWSI_OP_SHIFT) +#define SW_TWSI_OP_10 (2ULL << SW_TWSI_OP_SHIFT) +#define SW_TWSI_OP_10_IA (3ULL << SW_TWSI_OP_SHIFT) +#define SW_TWSI_OP_TWSI_CLK (4ULL << SW_TWSI_OP_SHIFT) +#define SW_TWSI_OP_EOP (6ULL << SW_TWSI_OP_SHIFT) /* Extended opcode */ + +/* Controller extended opcode word (bits 34:32) */ +#define SW_TWSI_EOP_SHIFT 32 +#define SW_TWSI_EOP_TWSI_DATA (SW_TWSI_OP_EOP | 1ULL << SW_TWSI_EOP_SHIFT) +#define SW_TWSI_EOP_TWSI_CTL (SW_TWSI_OP_EOP | 2ULL << SW_TWSI_EOP_SHIFT) +#define SW_TWSI_EOP_TWSI_CLKCTL (SW_TWSI_OP_EOP | 3ULL << SW_TWSI_EOP_SHIFT) +#define SW_TWSI_EOP_TWSI_STAT (SW_TWSI_OP_EOP | 3ULL << SW_TWSI_EOP_SHIFT) +#define SW_TWSI_EOP_TWSI_RST (SW_TWSI_OP_EOP | 7ULL << SW_TWSI_EOP_SHIFT) + +/* Controller command and status bits */ +#define TWSI_CTL_CE 0x80 /* High level controller enable */ +#define TWSI_CTL_ENAB 0x40 /* Bus enable */ +#define TWSI_CTL_STA 0x20 /* Master-mode start, HW clears when done */ +#define TWSI_CTL_STP 0x10 /* Master-mode stop, HW clears when done */ +#define TWSI_CTL_IFLG 0x08 /* HW event, SW writes 0 to ACK */ +#define TWSI_CTL_AAK 0x04 /* Assert ACK */ + +/* Status values */ +#define STAT_ERROR 0x00 +#define STAT_START 0x08 +#define STAT_REP_START 0x10 +#define STAT_TXADDR_ACK 0x18 +#define STAT_TXADDR_NAK 0x20 +#define STAT_TXDATA_ACK 0x28 +#define STAT_TXDATA_NAK 0x30 +#define STAT_LOST_ARB_38 0x38 +#define STAT_RXADDR_ACK 0x40 +#define STAT_RXADDR_NAK 0x48 +#define STAT_RXDATA_ACK 0x50 +#define STAT_RXDATA_NAK 0x58 +#define STAT_SLAVE_60 0x60 +#define STAT_LOST_ARB_68 0x68 +#define STAT_SLAVE_70 0x70 +#define STAT_LOST_ARB_78 0x78 +#define STAT_SLAVE_80 0x80 +#define STAT_SLAVE_88 0x88 +#define STAT_GENDATA_ACK 0x90 +#define STAT_GENDATA_NAK 0x98 +#define STAT_SLAVE_A0 0xA0 +#define STAT_SLAVE_A8 0xA8 +#define STAT_LOST_ARB_B0 0xB0 +#define STAT_SLAVE_LOST 0xB8 +#define STAT_SLAVE_NAK 0xC0 +#define STAT_SLAVE_ACK 0xC8 +#define STAT_AD2W_ACK 0xD0 +#define STAT_AD2W_NAK 0xD8 +#define STAT_IDLE 0xF8 + +/* TWSI_INT values */ +#define TWSI_INT_ST_INT BIT_ULL(0) +#define TWSI_INT_TS_INT BIT_ULL(1) +#define TWSI_INT_CORE_INT BIT_ULL(2) +#define TWSI_INT_ST_EN BIT_ULL(4) +#define TWSI_INT_TS_EN BIT_ULL(5) +#define TWSI_INT_CORE_EN BIT_ULL(6) +#define TWSI_INT_SDA_OVR BIT_ULL(8) +#define TWSI_INT_SCL_OVR BIT_ULL(9) +#define TWSI_INT_SDA BIT_ULL(10) +#define TWSI_INT_SCL BIT_ULL(11) + +#define I2C_OCTEON_EVENT_WAIT 80 /* microseconds */ + +/* Register offsets */ +struct octeon_i2c_reg_offset { + unsigned int sw_twsi; + unsigned int twsi_int; + unsigned int sw_twsi_ext; +}; + +#define SW_TWSI(x) (x->roff.sw_twsi) +#define TWSI_INT(x) (x->roff.twsi_int) +#define SW_TWSI_EXT(x) (x->roff.sw_twsi_ext) + +struct octeon_i2c { + wait_queue_head_t queue; + struct i2c_adapter adap; + struct octeon_i2c_reg_offset roff; + struct clk *clk; + int irq; + int hlc_irq; /* For cn7890 only */ + u32 twsi_freq; + int sys_freq; + void __iomem *twsi_base; + struct device *dev; + bool hlc_enabled; + bool broken_irq_mode; + bool broken_irq_check; + void (*int_enable)(struct octeon_i2c *); + void (*int_disable)(struct octeon_i2c *); + void (*hlc_int_enable)(struct octeon_i2c *); + void (*hlc_int_disable)(struct octeon_i2c *); + atomic_t int_enable_cnt; + atomic_t hlc_int_enable_cnt; +#if IS_ENABLED(CONFIG_I2C_THUNDERX) + struct msix_entry i2c_msix; +#endif + struct i2c_smbus_alert_setup alert_data; + struct i2c_client *ara; +}; + +static inline void octeon_i2c_writeq_flush(u64 val, void __iomem *addr) +{ + __raw_writeq(val, addr); + __raw_readq(addr); /* wait for write to land */ +} + +/** + * octeon_i2c_reg_write - write an I2C core register + * @i2c: The struct octeon_i2c + * @eop_reg: Register selector + * @data: Value to be written + * + * The I2C core registers are accessed indirectly via the SW_TWSI CSR. + */ +static inline void octeon_i2c_reg_write(struct octeon_i2c *i2c, u64 eop_reg, u8 data) +{ + int tries = 1000; + u64 tmp; + + __raw_writeq(SW_TWSI_V | eop_reg | data, i2c->twsi_base + SW_TWSI(i2c)); + do { + tmp = __raw_readq(i2c->twsi_base + SW_TWSI(i2c)); + if (--tries < 0) + return; + } while ((tmp & SW_TWSI_V) != 0); +} + +#define octeon_i2c_ctl_write(i2c, val) \ + octeon_i2c_reg_write(i2c, SW_TWSI_EOP_TWSI_CTL, val) +#define octeon_i2c_data_write(i2c, val) \ + octeon_i2c_reg_write(i2c, SW_TWSI_EOP_TWSI_DATA, val) + +/** + * octeon_i2c_reg_read - read lower bits of an I2C core register + * @i2c: The struct octeon_i2c + * @eop_reg: Register selector + * + * Returns the data. + * + * The I2C core registers are accessed indirectly via the SW_TWSI CSR. + */ +static inline int octeon_i2c_reg_read(struct octeon_i2c *i2c, u64 eop_reg, + int *error) +{ + int tries = 1000; + u64 tmp; + + __raw_writeq(SW_TWSI_V | eop_reg | SW_TWSI_R, i2c->twsi_base + SW_TWSI(i2c)); + do { + tmp = __raw_readq(i2c->twsi_base + SW_TWSI(i2c)); + if (--tries < 0) { + /* signal that the returned data is invalid */ + if (error) + *error = -EIO; + return 0; + } + } while ((tmp & SW_TWSI_V) != 0); + + return tmp & 0xFF; +} + +#define octeon_i2c_ctl_read(i2c) \ + octeon_i2c_reg_read(i2c, SW_TWSI_EOP_TWSI_CTL, NULL) +#define octeon_i2c_data_read(i2c, error) \ + octeon_i2c_reg_read(i2c, SW_TWSI_EOP_TWSI_DATA, error) +#define octeon_i2c_stat_read(i2c) \ + octeon_i2c_reg_read(i2c, SW_TWSI_EOP_TWSI_STAT, NULL) + +/** + * octeon_i2c_read_int - read the TWSI_INT register + * @i2c: The struct octeon_i2c + * + * Returns the value of the register. + */ +static inline u64 octeon_i2c_read_int(struct octeon_i2c *i2c) +{ + return __raw_readq(i2c->twsi_base + TWSI_INT(i2c)); +} + +/** + * octeon_i2c_write_int - write the TWSI_INT register + * @i2c: The struct octeon_i2c + * @data: Value to be written + */ +static inline void octeon_i2c_write_int(struct octeon_i2c *i2c, u64 data) +{ + octeon_i2c_writeq_flush(data, i2c->twsi_base + TWSI_INT(i2c)); +} + +/* Prototypes */ +irqreturn_t octeon_i2c_isr(int irq, void *dev_id); +int octeon_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num); +int octeon_i2c_init_lowlevel(struct octeon_i2c *i2c); +void octeon_i2c_set_clock(struct octeon_i2c *i2c); +extern struct i2c_bus_recovery_info octeon_i2c_recovery_info; --- linux-4.8.0.orig/drivers/i2c/busses/i2c-octeon-platdrv.c +++ linux-4.8.0/drivers/i2c/busses/i2c-octeon-platdrv.c @@ -0,0 +1,288 @@ +/* + * (C) Copyright 2009-2010 + * Nokia Siemens Networks, michael.lawnick.ext@nsn.com + * + * Portions Copyright (C) 2010 - 2016 Cavium, Inc. + * + * This is a driver for the i2c adapter in Cavium Networks' OCTEON processors. + * + * This file is licensed under the terms of the GNU General Public + * License version 2. This program is licensed "as is" without any + * warranty of any kind, whether express or implied. + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include "i2c-octeon-core.h" + +#define DRV_NAME "i2c-octeon" + +/** + * octeon_i2c_int_enable - enable the CORE interrupt + * @i2c: The struct octeon_i2c + * + * The interrupt will be asserted when there is non-STAT_IDLE state in + * the SW_TWSI_EOP_TWSI_STAT register. + */ +static void octeon_i2c_int_enable(struct octeon_i2c *i2c) +{ + octeon_i2c_write_int(i2c, TWSI_INT_CORE_EN); +} + +/* disable the CORE interrupt */ +static void octeon_i2c_int_disable(struct octeon_i2c *i2c) +{ + /* clear TS/ST/IFLG events */ + octeon_i2c_write_int(i2c, 0); +} + +/** + * octeon_i2c_int_enable78 - enable the CORE interrupt + * @i2c: The struct octeon_i2c + * + * The interrupt will be asserted when there is non-STAT_IDLE state in the + * SW_TWSI_EOP_TWSI_STAT register. + */ +static void octeon_i2c_int_enable78(struct octeon_i2c *i2c) +{ + atomic_inc_return(&i2c->int_enable_cnt); + enable_irq(i2c->irq); +} + +static void __octeon_i2c_irq_disable(atomic_t *cnt, int irq) +{ + int count; + + /* + * The interrupt can be disabled in two places, but we only + * want to make the disable_irq_nosync() call once, so keep + * track with the atomic variable. + */ + count = atomic_dec_if_positive(cnt); + if (count >= 0) + disable_irq_nosync(irq); +} + +/* disable the CORE interrupt */ +static void octeon_i2c_int_disable78(struct octeon_i2c *i2c) +{ + __octeon_i2c_irq_disable(&i2c->int_enable_cnt, i2c->irq); +} + +/** + * octeon_i2c_hlc_int_enable78 - enable the ST interrupt + * @i2c: The struct octeon_i2c + * + * The interrupt will be asserted when there is non-STAT_IDLE state in + * the SW_TWSI_EOP_TWSI_STAT register. + */ +static void octeon_i2c_hlc_int_enable78(struct octeon_i2c *i2c) +{ + atomic_inc_return(&i2c->hlc_int_enable_cnt); + enable_irq(i2c->hlc_irq); +} + +/* disable the ST interrupt */ +static void octeon_i2c_hlc_int_disable78(struct octeon_i2c *i2c) +{ + __octeon_i2c_irq_disable(&i2c->hlc_int_enable_cnt, i2c->hlc_irq); +} + +/* HLC interrupt service routine */ +static irqreturn_t octeon_i2c_hlc_isr78(int irq, void *dev_id) +{ + struct octeon_i2c *i2c = dev_id; + + i2c->hlc_int_disable(i2c); + wake_up(&i2c->queue); + + return IRQ_HANDLED; +} + +static void octeon_i2c_hlc_int_enable(struct octeon_i2c *i2c) +{ + octeon_i2c_write_int(i2c, TWSI_INT_ST_EN); +} + +static u32 octeon_i2c_functionality(struct i2c_adapter *adap) +{ + return I2C_FUNC_I2C | (I2C_FUNC_SMBUS_EMUL & ~I2C_FUNC_SMBUS_QUICK) | + I2C_FUNC_SMBUS_READ_BLOCK_DATA | I2C_SMBUS_BLOCK_PROC_CALL; +} + +static const struct i2c_algorithm octeon_i2c_algo = { + .master_xfer = octeon_i2c_xfer, + .functionality = octeon_i2c_functionality, +}; + +static struct i2c_adapter octeon_i2c_ops = { + .owner = THIS_MODULE, + .name = "OCTEON adapter", + .algo = &octeon_i2c_algo, +}; + +static int octeon_i2c_probe(struct platform_device *pdev) +{ + struct device_node *node = pdev->dev.of_node; + int irq, result = 0, hlc_irq = 0; + struct resource *res_mem; + struct octeon_i2c *i2c; + bool cn78xx_style; + + cn78xx_style = of_device_is_compatible(node, "cavium,octeon-7890-twsi"); + if (cn78xx_style) { + hlc_irq = platform_get_irq(pdev, 0); + if (hlc_irq < 0) + return hlc_irq; + + irq = platform_get_irq(pdev, 2); + if (irq < 0) + return irq; + } else { + /* All adaptors have an irq. */ + irq = platform_get_irq(pdev, 0); + if (irq < 0) + return irq; + } + + i2c = devm_kzalloc(&pdev->dev, sizeof(*i2c), GFP_KERNEL); + if (!i2c) { + result = -ENOMEM; + goto out; + } + i2c->dev = &pdev->dev; + + i2c->roff.sw_twsi = 0x00; + i2c->roff.twsi_int = 0x10; + i2c->roff.sw_twsi_ext = 0x18; + + res_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); + i2c->twsi_base = devm_ioremap_resource(&pdev->dev, res_mem); + if (IS_ERR(i2c->twsi_base)) { + result = PTR_ERR(i2c->twsi_base); + goto out; + } + + /* + * "clock-rate" is a legacy binding, the official binding is + * "clock-frequency". Try the official one first and then + * fall back if it doesn't exist. + */ + if (of_property_read_u32(node, "clock-frequency", &i2c->twsi_freq) && + of_property_read_u32(node, "clock-rate", &i2c->twsi_freq)) { + dev_err(i2c->dev, + "no I2C 'clock-rate' or 'clock-frequency' property\n"); + result = -ENXIO; + goto out; + } + + i2c->sys_freq = octeon_get_io_clock_rate(); + + init_waitqueue_head(&i2c->queue); + + i2c->irq = irq; + + if (cn78xx_style) { + i2c->hlc_irq = hlc_irq; + + i2c->int_enable = octeon_i2c_int_enable78; + i2c->int_disable = octeon_i2c_int_disable78; + i2c->hlc_int_enable = octeon_i2c_hlc_int_enable78; + i2c->hlc_int_disable = octeon_i2c_hlc_int_disable78; + + irq_set_status_flags(i2c->irq, IRQ_NOAUTOEN); + irq_set_status_flags(i2c->hlc_irq, IRQ_NOAUTOEN); + + result = devm_request_irq(&pdev->dev, i2c->hlc_irq, + octeon_i2c_hlc_isr78, 0, + DRV_NAME, i2c); + if (result < 0) { + dev_err(i2c->dev, "failed to attach interrupt\n"); + goto out; + } + } else { + i2c->int_enable = octeon_i2c_int_enable; + i2c->int_disable = octeon_i2c_int_disable; + i2c->hlc_int_enable = octeon_i2c_hlc_int_enable; + i2c->hlc_int_disable = octeon_i2c_int_disable; + } + + result = devm_request_irq(&pdev->dev, i2c->irq, + octeon_i2c_isr, 0, DRV_NAME, i2c); + if (result < 0) { + dev_err(i2c->dev, "failed to attach interrupt\n"); + goto out; + } + + if (OCTEON_IS_MODEL(OCTEON_CN38XX)) + i2c->broken_irq_check = true; + + result = octeon_i2c_init_lowlevel(i2c); + if (result) { + dev_err(i2c->dev, "init low level failed\n"); + goto out; + } + + octeon_i2c_set_clock(i2c); + + i2c->adap = octeon_i2c_ops; + i2c->adap.timeout = msecs_to_jiffies(2); + i2c->adap.retries = 5; + i2c->adap.bus_recovery_info = &octeon_i2c_recovery_info; + i2c->adap.dev.parent = &pdev->dev; + i2c->adap.dev.of_node = node; + i2c_set_adapdata(&i2c->adap, i2c); + platform_set_drvdata(pdev, i2c); + + result = i2c_add_adapter(&i2c->adap); + if (result < 0) { + dev_err(i2c->dev, "failed to add adapter\n"); + goto out; + } + dev_info(i2c->dev, "probed\n"); + return 0; + +out: + return result; +}; + +static int octeon_i2c_remove(struct platform_device *pdev) +{ + struct octeon_i2c *i2c = platform_get_drvdata(pdev); + + i2c_del_adapter(&i2c->adap); + return 0; +}; + +static const struct of_device_id octeon_i2c_match[] = { + { .compatible = "cavium,octeon-3860-twsi", }, + { .compatible = "cavium,octeon-7890-twsi", }, + {}, +}; +MODULE_DEVICE_TABLE(of, octeon_i2c_match); + +static struct platform_driver octeon_i2c_driver = { + .probe = octeon_i2c_probe, + .remove = octeon_i2c_remove, + .driver = { + .name = DRV_NAME, + .of_match_table = octeon_i2c_match, + }, +}; + +module_platform_driver(octeon_i2c_driver); + +MODULE_AUTHOR("Michael Lawnick "); +MODULE_DESCRIPTION("I2C-Bus adapter for Cavium OCTEON processors"); +MODULE_LICENSE("GPL"); --- linux-4.8.0.orig/drivers/i2c/busses/i2c-rk3x.c +++ linux-4.8.0/drivers/i2c/busses/i2c-rk3x.c @@ -694,6 +694,8 @@ t_calc->div_low--; t_calc->div_high--; + /* Give the tuning value 0, that would not update con register */ + t_calc->tuning = 0; /* Maximum divider supported by hw is 0xffff */ if (t_calc->div_low > 0xffff) { t_calc->div_low = 0xffff; --- linux-4.8.0.orig/drivers/i2c/busses/i2c-thunderx-pcidrv.c +++ linux-4.8.0/drivers/i2c/busses/i2c-thunderx-pcidrv.c @@ -0,0 +1,260 @@ +/* + * Cavium ThunderX i2c driver. + * + * Copyright (C) 2015,2016 Cavium Inc. + * Authors: Fred Martin + * Jan Glauber + * + * This file is licensed under the terms of the GNU General Public + * License version 2. This program is licensed "as is" without any + * warranty of any kind, whether express or implied. + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "i2c-octeon-core.h" + +#define DRV_NAME "i2c-thunderx" + +#define PCI_DEVICE_ID_THUNDER_TWSI 0xa012 + +#define SYS_FREQ_DEFAULT 700000000 + +#define TWSI_INT_ENA_W1C 0x1028 +#define TWSI_INT_ENA_W1S 0x1030 + +/* + * Enable the CORE interrupt. + * The interrupt will be asserted when there is non-STAT_IDLE state in the + * SW_TWSI_EOP_TWSI_STAT register. + */ +static void thunder_i2c_int_enable(struct octeon_i2c *i2c) +{ + octeon_i2c_writeq_flush(TWSI_INT_CORE_INT, + i2c->twsi_base + TWSI_INT_ENA_W1S); +} + +/* + * Disable the CORE interrupt. + */ +static void thunder_i2c_int_disable(struct octeon_i2c *i2c) +{ + octeon_i2c_writeq_flush(TWSI_INT_CORE_INT, + i2c->twsi_base + TWSI_INT_ENA_W1C); +} + +static void thunder_i2c_hlc_int_enable(struct octeon_i2c *i2c) +{ + octeon_i2c_writeq_flush(TWSI_INT_ST_INT | TWSI_INT_TS_INT, + i2c->twsi_base + TWSI_INT_ENA_W1S); +} + +static void thunder_i2c_hlc_int_disable(struct octeon_i2c *i2c) +{ + octeon_i2c_writeq_flush(TWSI_INT_ST_INT | TWSI_INT_TS_INT, + i2c->twsi_base + TWSI_INT_ENA_W1C); +} + +static u32 thunderx_i2c_functionality(struct i2c_adapter *adap) +{ + return I2C_FUNC_I2C | (I2C_FUNC_SMBUS_EMUL & ~I2C_FUNC_SMBUS_QUICK) | + I2C_FUNC_SMBUS_READ_BLOCK_DATA | I2C_SMBUS_BLOCK_PROC_CALL; +} + +static const struct i2c_algorithm thunderx_i2c_algo = { + .master_xfer = octeon_i2c_xfer, + .functionality = thunderx_i2c_functionality, +}; + +static struct i2c_adapter thunderx_i2c_ops = { + .owner = THIS_MODULE, + .name = "ThunderX adapter", + .algo = &thunderx_i2c_algo, +}; + +static void thunder_i2c_clock_enable(struct device *dev, struct octeon_i2c *i2c) +{ + int ret; + + i2c->clk = clk_get(dev, NULL); + if (IS_ERR(i2c->clk)) { + i2c->clk = NULL; + goto skip; + } + + ret = clk_prepare_enable(i2c->clk); + if (ret) + goto skip; + i2c->sys_freq = clk_get_rate(i2c->clk); + +skip: + if (!i2c->sys_freq) + i2c->sys_freq = SYS_FREQ_DEFAULT; +} + +static void thunder_i2c_clock_disable(struct device *dev, struct clk *clk) +{ + if (!clk) + return; + clk_disable_unprepare(clk); + clk_put(clk); +} + +static int thunder_i2c_smbus_setup_of(struct octeon_i2c *i2c, + struct device_node *node) +{ + u32 type; + + if (!node) + return -EINVAL; + + i2c->alert_data.irq = irq_of_parse_and_map(node, 0); + if (!i2c->alert_data.irq) + return -EINVAL; + + type = irqd_get_trigger_type(irq_get_irq_data(i2c->alert_data.irq)); + i2c->alert_data.alert_edge_triggered = + (type & IRQ_TYPE_LEVEL_MASK) ? 1 : 0; + + i2c->ara = i2c_setup_smbus_alert(&i2c->adap, &i2c->alert_data); + if (!i2c->ara) + return -ENODEV; + return 0; +} + +static int thunder_i2c_smbus_setup(struct octeon_i2c *i2c, + struct device_node *node) +{ + /* TODO: ACPI support */ + if (!acpi_disabled) + return -EOPNOTSUPP; + + return thunder_i2c_smbus_setup_of(i2c, node); +} + +static void thunder_i2c_smbus_remove(struct octeon_i2c *i2c) +{ + if (i2c->ara) + i2c_unregister_device(i2c->ara); +} + +static int thunder_i2c_probe_pci(struct pci_dev *pdev, + const struct pci_device_id *ent) +{ + struct device *dev = &pdev->dev; + struct octeon_i2c *i2c; + int ret; + + i2c = devm_kzalloc(dev, sizeof(*i2c), GFP_KERNEL); + if (!i2c) + return -ENOMEM; + + i2c->roff.sw_twsi = 0x1000; + i2c->roff.twsi_int = 0x1010; + i2c->roff.sw_twsi_ext = 0x1018; + + i2c->dev = dev; + pci_set_drvdata(pdev, i2c); + ret = pcim_enable_device(pdev); + if (ret) + return ret; + + ret = pci_request_regions(pdev, DRV_NAME); + if (ret) + return ret; + + i2c->twsi_base = pcim_iomap(pdev, 0, pci_resource_len(pdev, 0)); + if (!i2c->twsi_base) + return -EINVAL; + + thunder_i2c_clock_enable(dev, i2c); + ret = device_property_read_u32(dev, "clock-frequency", &i2c->twsi_freq); + if (ret) + i2c->twsi_freq = 100000; + + init_waitqueue_head(&i2c->queue); + + i2c->int_enable = thunder_i2c_int_enable; + i2c->int_disable = thunder_i2c_int_disable; + i2c->hlc_int_enable = thunder_i2c_hlc_int_enable; + i2c->hlc_int_disable = thunder_i2c_hlc_int_disable; + + ret = pci_enable_msix(pdev, &i2c->i2c_msix, 1); + if (ret) + goto error; + + ret = devm_request_irq(dev, i2c->i2c_msix.vector, octeon_i2c_isr, 0, + DRV_NAME, i2c); + if (ret) + goto error; + + ret = octeon_i2c_init_lowlevel(i2c); + if (ret) + goto error; + + octeon_i2c_set_clock(i2c); + + i2c->adap = thunderx_i2c_ops; + i2c->adap.retries = 5; + i2c->adap.class = I2C_CLASS_HWMON; + i2c->adap.bus_recovery_info = &octeon_i2c_recovery_info; + i2c->adap.dev.parent = dev; + i2c->adap.dev.of_node = pdev->dev.of_node; + snprintf(i2c->adap.name, sizeof(i2c->adap.name), + "Cavium ThunderX i2c adapter at %s", dev_name(dev)); + i2c_set_adapdata(&i2c->adap, i2c); + + ret = i2c_add_adapter(&i2c->adap); + if (ret) + goto error; + + dev_info(i2c->dev, "Probed. Set system clock to %u\n", i2c->sys_freq); + + ret = thunder_i2c_smbus_setup(i2c, pdev->dev.of_node); + if (ret) + dev_info(dev, "SMBUS alert not active on this bus\n"); + + return 0; + +error: + thunder_i2c_clock_disable(dev, i2c->clk); + return ret; +} + +static void thunder_i2c_remove_pci(struct pci_dev *pdev) +{ + struct octeon_i2c *i2c = pci_get_drvdata(pdev); + + thunder_i2c_smbus_remove(i2c); + thunder_i2c_clock_disable(&pdev->dev, i2c->clk); + i2c_del_adapter(&i2c->adap); +} + +static const struct pci_device_id thunder_i2c_pci_id_table[] = { + { PCI_DEVICE(PCI_VENDOR_ID_CAVIUM, PCI_DEVICE_ID_THUNDER_TWSI) }, + { 0, } +}; + +MODULE_DEVICE_TABLE(pci, thunder_i2c_pci_id_table); + +static struct pci_driver thunder_i2c_pci_driver = { + .name = DRV_NAME, + .id_table = thunder_i2c_pci_id_table, + .probe = thunder_i2c_probe_pci, + .remove = thunder_i2c_remove_pci, +}; + +module_pci_driver(thunder_i2c_pci_driver); + +MODULE_LICENSE("GPL"); +MODULE_AUTHOR("Fred Martin "); +MODULE_DESCRIPTION("I2C-Bus adapter for Cavium ThunderX SOC"); --- linux-4.8.0.orig/drivers/i2c/busses/i2c-xgene-slimpro.c +++ linux-4.8.0/drivers/i2c/busses/i2c-xgene-slimpro.c @@ -105,7 +105,7 @@ struct mbox_chan *mbox_chan; struct mbox_client mbox_client; struct completion rd_complete; - u8 dma_buffer[I2C_SMBUS_BLOCK_MAX]; + u8 dma_buffer[I2C_SMBUS_BLOCK_MAX + 1]; /* dma_buffer[0] is used for length */ u32 *resp_msg; }; --- linux-4.8.0.orig/drivers/i2c/i2c-core.c +++ linux-4.8.0/drivers/i2c/i2c-core.c @@ -77,9 +77,10 @@ static struct static_key i2c_trace_msg = STATIC_KEY_INIT_FALSE; static bool is_registered; -void i2c_transfer_trace_reg(void) +int i2c_transfer_trace_reg(void) { static_key_slow_inc(&i2c_trace_msg); + return 0; } void i2c_transfer_trace_unreg(void) @@ -1592,6 +1593,7 @@ static void of_i2c_register_devices(struct i2c_adapter *adap) { struct device_node *node; + struct i2c_client *client; /* Only register child devices if the adapter has a node pointer set */ if (!adap->dev.of_node) @@ -1602,7 +1604,14 @@ for_each_available_child_of_node(adap->dev.of_node, node) { if (of_node_test_and_set_flag(node, OF_POPULATED)) continue; - of_i2c_register_device(adap, node); + + client = of_i2c_register_device(adap, node); + if (IS_ERR(client)) { + dev_warn(&adap->dev, + "Failed to create I2C device for %s\n", + node->full_name); + of_node_clear_flag(node, OF_POPULATED); + } } } @@ -2073,6 +2082,7 @@ /* add the driver to the list of i2c drivers in the driver core */ driver->driver.owner = owner; driver->driver.bus = &i2c_bus_type; + INIT_LIST_HEAD(&driver->clients); /* When registration returns, the driver core * will have called probe() for all matching-but-unbound devices. @@ -2083,7 +2093,6 @@ pr_debug("driver [%s] registered\n", driver->driver.name); - INIT_LIST_HEAD(&driver->clients); /* Walk the adapters that are already present */ i2c_for_each_dev(driver, __process_new_driver); @@ -2201,6 +2210,7 @@ if (IS_ERR(client)) { dev_err(&adap->dev, "failed to create client for '%s'\n", rd->dn->full_name); + of_node_clear_flag(rd->dn, OF_POPULATED); return notifier_from_errno(PTR_ERR(client)); } break; --- linux-4.8.0.orig/drivers/i2c/muxes/Kconfig +++ linux-4.8.0/drivers/i2c/muxes/Kconfig @@ -63,6 +63,7 @@ config I2C_MUX_REG tristate "Register-based I2C multiplexer" + depends on HAS_IOMEM help If you say yes to this option, support will be included for a register based I2C multiplexer. This driver provides access to --- linux-4.8.0.orig/drivers/i2c/muxes/i2c-mux-pca954x.c +++ linux-4.8.0/drivers/i2c/muxes/i2c-mux-pca954x.c @@ -247,9 +247,9 @@ /* discard unconfigured channels */ break; idle_disconnect_pd = pdata->modes[num].deselect_on_exit; - data->deselect |= (idle_disconnect_pd - || idle_disconnect_dt) << num; } + data->deselect |= (idle_disconnect_pd || + idle_disconnect_dt) << num; ret = i2c_mux_add_adapter(muxc, force, num, class); --- linux-4.8.0.orig/drivers/iio/accel/st_accel_core.c +++ linux-4.8.0/drivers/iio/accel/st_accel_core.c @@ -743,8 +743,8 @@ return IIO_VAL_INT; case IIO_CHAN_INFO_SCALE: - *val = 0; - *val2 = adata->current_fullscale->gain; + *val = adata->current_fullscale->gain / 1000000; + *val2 = adata->current_fullscale->gain % 1000000; return IIO_VAL_INT_PLUS_MICRO; case IIO_CHAN_INFO_SAMP_FREQ: *val = adata->odr; @@ -763,9 +763,13 @@ int err; switch (mask) { - case IIO_CHAN_INFO_SCALE: - err = st_sensors_set_fullscale_by_gain(indio_dev, val2); + case IIO_CHAN_INFO_SCALE: { + int gain; + + gain = val * 1000000 + val2; + err = st_sensors_set_fullscale_by_gain(indio_dev, gain); break; + } case IIO_CHAN_INFO_SAMP_FREQ: if (val2) return -EINVAL; --- linux-4.8.0.orig/drivers/iio/chemical/atlas-ph-sensor.c +++ linux-4.8.0/drivers/iio/chemical/atlas-ph-sensor.c @@ -207,13 +207,14 @@ struct device *dev = &data->client->dev; int ret; unsigned int val; + __be16 rval; - ret = regmap_bulk_read(data->regmap, ATLAS_REG_EC_PROBE, &val, 2); + ret = regmap_bulk_read(data->regmap, ATLAS_REG_EC_PROBE, &rval, 2); if (ret) return ret; - dev_info(dev, "probe set to K = %d.%.2d", be16_to_cpu(val) / 100, - be16_to_cpu(val) % 100); + val = be16_to_cpu(rval); + dev_info(dev, "probe set to K = %d.%.2d", val / 100, val % 100); ret = regmap_read(data->regmap, ATLAS_REG_EC_CALIB_STATUS, &val); if (ret) --- linux-4.8.0.orig/drivers/iio/common/hid-sensors/hid-sensor-attributes.c +++ linux-4.8.0/drivers/iio/common/hid-sensors/hid-sensor-attributes.c @@ -30,26 +30,26 @@ u32 usage_id; int unit; /* 0 for default others from HID sensor spec */ int scale_val0; /* scale, whole number */ - int scale_val1; /* scale, fraction in micros */ + int scale_val1; /* scale, fraction in nanos */ } unit_conversion[] = { - {HID_USAGE_SENSOR_ACCEL_3D, 0, 9, 806650}, + {HID_USAGE_SENSOR_ACCEL_3D, 0, 9, 806650000}, {HID_USAGE_SENSOR_ACCEL_3D, HID_USAGE_SENSOR_UNITS_METERS_PER_SEC_SQRD, 1, 0}, {HID_USAGE_SENSOR_ACCEL_3D, - HID_USAGE_SENSOR_UNITS_G, 9, 806650}, + HID_USAGE_SENSOR_UNITS_G, 9, 806650000}, - {HID_USAGE_SENSOR_GYRO_3D, 0, 0, 17453}, + {HID_USAGE_SENSOR_GYRO_3D, 0, 0, 17453293}, {HID_USAGE_SENSOR_GYRO_3D, HID_USAGE_SENSOR_UNITS_RADIANS_PER_SECOND, 1, 0}, {HID_USAGE_SENSOR_GYRO_3D, - HID_USAGE_SENSOR_UNITS_DEGREES_PER_SECOND, 0, 17453}, + HID_USAGE_SENSOR_UNITS_DEGREES_PER_SECOND, 0, 17453293}, - {HID_USAGE_SENSOR_COMPASS_3D, 0, 0, 1000}, + {HID_USAGE_SENSOR_COMPASS_3D, 0, 0, 1000000}, {HID_USAGE_SENSOR_COMPASS_3D, HID_USAGE_SENSOR_UNITS_GAUSS, 1, 0}, - {HID_USAGE_SENSOR_INCLINOMETER_3D, 0, 0, 17453}, + {HID_USAGE_SENSOR_INCLINOMETER_3D, 0, 0, 17453293}, {HID_USAGE_SENSOR_INCLINOMETER_3D, - HID_USAGE_SENSOR_UNITS_DEGREES, 0, 17453}, + HID_USAGE_SENSOR_UNITS_DEGREES, 0, 17453293}, {HID_USAGE_SENSOR_INCLINOMETER_3D, HID_USAGE_SENSOR_UNITS_RADIANS, 1, 0}, @@ -57,7 +57,7 @@ {HID_USAGE_SENSOR_ALS, HID_USAGE_SENSOR_UNITS_LUX, 1, 0}, {HID_USAGE_SENSOR_PRESSURE, 0, 100, 0}, - {HID_USAGE_SENSOR_PRESSURE, HID_USAGE_SENSOR_UNITS_PASCAL, 0, 1000}, + {HID_USAGE_SENSOR_PRESSURE, HID_USAGE_SENSOR_UNITS_PASCAL, 0, 1000000}, }; static int pow_10(unsigned power) @@ -266,15 +266,15 @@ /* * This fuction applies the unit exponent to the scale. * For example: - * 9.806650 ->exp:2-> val0[980]val1[665000] - * 9.000806 ->exp:2-> val0[900]val1[80600] - * 0.174535 ->exp:2-> val0[17]val1[453500] - * 1.001745 ->exp:0-> val0[1]val1[1745] - * 1.001745 ->exp:2-> val0[100]val1[174500] - * 1.001745 ->exp:4-> val0[10017]val1[450000] - * 9.806650 ->exp:-2-> val0[0]val1[98066] + * 9.806650000 ->exp:2-> val0[980]val1[665000000] + * 9.000806000 ->exp:2-> val0[900]val1[80600000] + * 0.174535293 ->exp:2-> val0[17]val1[453529300] + * 1.001745329 ->exp:0-> val0[1]val1[1745329] + * 1.001745329 ->exp:2-> val0[100]val1[174532900] + * 1.001745329 ->exp:4-> val0[10017]val1[453290000] + * 9.806650000 ->exp:-2-> val0[0]val1[98066500] */ -static void adjust_exponent_micro(int *val0, int *val1, int scale0, +static void adjust_exponent_nano(int *val0, int *val1, int scale0, int scale1, int exp) { int i; @@ -285,32 +285,32 @@ if (exp > 0) { *val0 = scale0 * pow_10(exp); res = 0; - if (exp > 6) { + if (exp > 9) { *val1 = 0; return; } for (i = 0; i < exp; ++i) { - x = scale1 / pow_10(5 - i); + x = scale1 / pow_10(8 - i); res += (pow_10(exp - 1 - i) * x); - scale1 = scale1 % pow_10(5 - i); + scale1 = scale1 % pow_10(8 - i); } *val0 += res; *val1 = scale1 * pow_10(exp); } else if (exp < 0) { exp = abs(exp); - if (exp > 6) { + if (exp > 9) { *val0 = *val1 = 0; return; } *val0 = scale0 / pow_10(exp); rem = scale0 % pow_10(exp); res = 0; - for (i = 0; i < (6 - exp); ++i) { - x = scale1 / pow_10(5 - i); - res += (pow_10(5 - exp - i) * x); - scale1 = scale1 % pow_10(5 - i); + for (i = 0; i < (9 - exp); ++i) { + x = scale1 / pow_10(8 - i); + res += (pow_10(8 - exp - i) * x); + scale1 = scale1 % pow_10(8 - i); } - *val1 = rem * pow_10(6 - exp) + res; + *val1 = rem * pow_10(9 - exp) + res; } else { *val0 = scale0; *val1 = scale1; @@ -332,14 +332,14 @@ unit_conversion[i].unit == attr_info->units) { exp = hid_sensor_convert_exponent( attr_info->unit_expo); - adjust_exponent_micro(val0, val1, + adjust_exponent_nano(val0, val1, unit_conversion[i].scale_val0, unit_conversion[i].scale_val1, exp); break; } } - return IIO_VAL_INT_PLUS_MICRO; + return IIO_VAL_INT_PLUS_NANO; } EXPORT_SYMBOL(hid_sensor_format_scale); --- linux-4.8.0.orig/drivers/iio/common/st_sensors/st_sensors_core.c +++ linux-4.8.0/drivers/iio/common/st_sensors/st_sensors_core.c @@ -619,7 +619,7 @@ ssize_t st_sensors_sysfs_scale_avail(struct device *dev, struct device_attribute *attr, char *buf) { - int i, len = 0; + int i, len = 0, q, r; struct iio_dev *indio_dev = dev_get_drvdata(dev); struct st_sensor_data *sdata = iio_priv(indio_dev); @@ -628,8 +628,10 @@ if (sdata->sensor_settings->fs.fs_avl[i].num == 0) break; - len += scnprintf(buf + len, PAGE_SIZE - len, "0.%06u ", - sdata->sensor_settings->fs.fs_avl[i].gain); + q = sdata->sensor_settings->fs.fs_avl[i].gain / 1000000; + r = sdata->sensor_settings->fs.fs_avl[i].gain % 1000000; + + len += scnprintf(buf + len, PAGE_SIZE - len, "%u.%06u ", q, r); } mutex_unlock(&indio_dev->mlock); buf[len - 1] = '\n'; --- linux-4.8.0.orig/drivers/iio/dac/ad5755.c +++ linux-4.8.0/drivers/iio/dac/ad5755.c @@ -655,7 +655,7 @@ devnr = 0; for_each_child_of_node(np, pp) { - if (devnr > AD5755_NUM_CHANNELS) { + if (devnr >= AD5755_NUM_CHANNELS) { dev_err(dev, "There is to many channels defined in DT\n"); goto error_out; --- linux-4.8.0.orig/drivers/iio/light/us5182d.c +++ linux-4.8.0/drivers/iio/light/us5182d.c @@ -894,7 +894,7 @@ goto out_err; if (data->default_continuous) { - pm_runtime_set_active(&client->dev); + ret = pm_runtime_set_active(&client->dev); if (ret < 0) goto out_err; } --- linux-4.8.0.orig/drivers/iio/orientation/hid-sensor-rotation.c +++ linux-4.8.0/drivers/iio/orientation/hid-sensor-rotation.c @@ -335,6 +335,7 @@ .id_table = hid_dev_rot_ids, .driver = { .name = KBUILD_MODNAME, + .pm = &hid_sensor_pm_ops, }, .probe = hid_dev_rot_probe, .remove = hid_dev_rot_remove, --- linux-4.8.0.orig/drivers/infiniband/core/cm.c +++ linux-4.8.0/drivers/infiniband/core/cm.c @@ -80,6 +80,8 @@ __be32 random_id_operand; struct list_head timewait_list; struct workqueue_struct *wq; + /* Sync on cm change port state */ + spinlock_t state_lock; } cm; /* Counter indexes ordered by attribute ID */ @@ -161,6 +163,8 @@ struct ib_mad_agent *mad_agent; struct kobject port_obj; u8 port_num; + struct list_head cm_priv_prim_list; + struct list_head cm_priv_altr_list; struct cm_counter_group counter_group[CM_COUNTER_GROUPS]; }; @@ -241,6 +245,12 @@ u8 service_timeout; u8 target_ack_delay; + struct list_head prim_list; + struct list_head altr_list; + /* Indicates that the send port mad is registered and av is set */ + int prim_send_port_not_ready; + int altr_send_port_not_ready; + struct list_head work_list; atomic_t work_count; }; @@ -259,20 +269,47 @@ struct ib_mad_agent *mad_agent; struct ib_mad_send_buf *m; struct ib_ah *ah; + struct cm_av *av; + unsigned long flags, flags2; + int ret = 0; + /* don't let the port to be released till the agent is down */ + spin_lock_irqsave(&cm.state_lock, flags2); + spin_lock_irqsave(&cm.lock, flags); + if (!cm_id_priv->prim_send_port_not_ready) + av = &cm_id_priv->av; + else if (!cm_id_priv->altr_send_port_not_ready && + (cm_id_priv->alt_av.port)) + av = &cm_id_priv->alt_av; + else { + pr_info("%s: not valid CM id\n", __func__); + ret = -ENODEV; + spin_unlock_irqrestore(&cm.lock, flags); + goto out; + } + spin_unlock_irqrestore(&cm.lock, flags); + /* Make sure the port haven't released the mad yet */ mad_agent = cm_id_priv->av.port->mad_agent; - ah = ib_create_ah(mad_agent->qp->pd, &cm_id_priv->av.ah_attr); - if (IS_ERR(ah)) - return PTR_ERR(ah); + if (!mad_agent) { + pr_info("%s: not a valid MAD agent\n", __func__); + ret = -ENODEV; + goto out; + } + ah = ib_create_ah(mad_agent->qp->pd, &av->ah_attr); + if (IS_ERR(ah)) { + ret = PTR_ERR(ah); + goto out; + } m = ib_create_send_mad(mad_agent, cm_id_priv->id.remote_cm_qpn, - cm_id_priv->av.pkey_index, + av->pkey_index, 0, IB_MGMT_MAD_HDR, IB_MGMT_MAD_DATA, GFP_ATOMIC, IB_MGMT_BASE_VERSION); if (IS_ERR(m)) { ib_destroy_ah(ah); - return PTR_ERR(m); + ret = PTR_ERR(m); + goto out; } /* Timeout set by caller if response is expected. */ @@ -282,7 +319,10 @@ atomic_inc(&cm_id_priv->refcount); m->context[0] = cm_id_priv; *msg = m; - return 0; + +out: + spin_unlock_irqrestore(&cm.state_lock, flags2); + return ret; } static int cm_alloc_response_msg(struct cm_port *port, @@ -352,7 +392,8 @@ grh, &av->ah_attr); } -static int cm_init_av_by_path(struct ib_sa_path_rec *path, struct cm_av *av) +static int cm_init_av_by_path(struct ib_sa_path_rec *path, struct cm_av *av, + struct cm_id_private *cm_id_priv) { struct cm_device *cm_dev; struct cm_port *port = NULL; @@ -387,7 +428,17 @@ &av->ah_attr); av->timeout = path->packet_life_time + 1; - return 0; + spin_lock_irqsave(&cm.lock, flags); + if (&cm_id_priv->av == av) + list_add_tail(&cm_id_priv->prim_list, &port->cm_priv_prim_list); + else if (&cm_id_priv->alt_av == av) + list_add_tail(&cm_id_priv->altr_list, &port->cm_priv_altr_list); + else + ret = -EINVAL; + + spin_unlock_irqrestore(&cm.lock, flags); + + return ret; } static int cm_alloc_id(struct cm_id_private *cm_id_priv) @@ -677,6 +728,8 @@ spin_lock_init(&cm_id_priv->lock); init_completion(&cm_id_priv->comp); INIT_LIST_HEAD(&cm_id_priv->work_list); + INIT_LIST_HEAD(&cm_id_priv->prim_list); + INIT_LIST_HEAD(&cm_id_priv->altr_list); atomic_set(&cm_id_priv->work_count, -1); atomic_set(&cm_id_priv->refcount, 1); return &cm_id_priv->id; @@ -892,6 +945,15 @@ break; } + spin_lock_irq(&cm.lock); + if (!list_empty(&cm_id_priv->altr_list) && + (!cm_id_priv->altr_send_port_not_ready)) + list_del(&cm_id_priv->altr_list); + if (!list_empty(&cm_id_priv->prim_list) && + (!cm_id_priv->prim_send_port_not_ready)) + list_del(&cm_id_priv->prim_list); + spin_unlock_irq(&cm.lock); + cm_free_id(cm_id->local_id); cm_deref_id(cm_id_priv); wait_for_completion(&cm_id_priv->comp); @@ -1192,12 +1254,13 @@ goto out; } - ret = cm_init_av_by_path(param->primary_path, &cm_id_priv->av); + ret = cm_init_av_by_path(param->primary_path, &cm_id_priv->av, + cm_id_priv); if (ret) goto error1; if (param->alternate_path) { ret = cm_init_av_by_path(param->alternate_path, - &cm_id_priv->alt_av); + &cm_id_priv->alt_av, cm_id_priv); if (ret) goto error1; } @@ -1653,7 +1716,8 @@ dev_put(gid_attr.ndev); } work->path[0].gid_type = gid_attr.gid_type; - ret = cm_init_av_by_path(&work->path[0], &cm_id_priv->av); + ret = cm_init_av_by_path(&work->path[0], &cm_id_priv->av, + cm_id_priv); } if (ret) { int err = ib_get_cached_gid(work->port->cm_dev->ib_device, @@ -1672,7 +1736,8 @@ goto rejected; } if (req_msg->alt_local_lid) { - ret = cm_init_av_by_path(&work->path[1], &cm_id_priv->alt_av); + ret = cm_init_av_by_path(&work->path[1], &cm_id_priv->alt_av, + cm_id_priv); if (ret) { ib_send_cm_rej(cm_id, IB_CM_REJ_INVALID_ALT_GID, &work->path[0].sgid, @@ -2727,7 +2792,8 @@ goto out; } - ret = cm_init_av_by_path(alternate_path, &cm_id_priv->alt_av); + ret = cm_init_av_by_path(alternate_path, &cm_id_priv->alt_av, + cm_id_priv); if (ret) goto out; cm_id_priv->alt_av.timeout = @@ -2839,7 +2905,8 @@ cm_init_av_for_response(work->port, work->mad_recv_wc->wc, work->mad_recv_wc->recv_buf.grh, &cm_id_priv->av); - cm_init_av_by_path(param->alternate_path, &cm_id_priv->alt_av); + cm_init_av_by_path(param->alternate_path, &cm_id_priv->alt_av, + cm_id_priv); ret = atomic_inc_and_test(&cm_id_priv->work_count); if (!ret) list_add_tail(&work->list, &cm_id_priv->work_list); @@ -3031,7 +3098,7 @@ return -EINVAL; cm_id_priv = container_of(cm_id, struct cm_id_private, id); - ret = cm_init_av_by_path(param->path, &cm_id_priv->av); + ret = cm_init_av_by_path(param->path, &cm_id_priv->av, cm_id_priv); if (ret) goto out; @@ -3468,7 +3535,9 @@ static int cm_migrate(struct ib_cm_id *cm_id) { struct cm_id_private *cm_id_priv; + struct cm_av tmp_av; unsigned long flags; + int tmp_send_port_not_ready; int ret = 0; cm_id_priv = container_of(cm_id, struct cm_id_private, id); @@ -3477,7 +3546,14 @@ (cm_id->lap_state == IB_CM_LAP_UNINIT || cm_id->lap_state == IB_CM_LAP_IDLE)) { cm_id->lap_state = IB_CM_LAP_IDLE; + /* Swap address vector */ + tmp_av = cm_id_priv->av; cm_id_priv->av = cm_id_priv->alt_av; + cm_id_priv->alt_av = tmp_av; + /* Swap port send ready state */ + tmp_send_port_not_ready = cm_id_priv->prim_send_port_not_ready; + cm_id_priv->prim_send_port_not_ready = cm_id_priv->altr_send_port_not_ready; + cm_id_priv->altr_send_port_not_ready = tmp_send_port_not_ready; } else ret = -EINVAL; spin_unlock_irqrestore(&cm_id_priv->lock, flags); @@ -3888,6 +3964,9 @@ port->cm_dev = cm_dev; port->port_num = i; + INIT_LIST_HEAD(&port->cm_priv_prim_list); + INIT_LIST_HEAD(&port->cm_priv_altr_list); + ret = cm_create_port_fs(port); if (ret) goto error1; @@ -3945,6 +4024,8 @@ { struct cm_device *cm_dev = client_data; struct cm_port *port; + struct cm_id_private *cm_id_priv; + struct ib_mad_agent *cur_mad_agent; struct ib_port_modify port_modify = { .clr_port_cap_mask = IB_PORT_CM_SUP }; @@ -3968,15 +4049,27 @@ port = cm_dev->port[i-1]; ib_modify_port(ib_device, port->port_num, 0, &port_modify); + /* Mark all the cm_id's as not valid */ + spin_lock_irq(&cm.lock); + list_for_each_entry(cm_id_priv, &port->cm_priv_altr_list, altr_list) + cm_id_priv->altr_send_port_not_ready = 1; + list_for_each_entry(cm_id_priv, &port->cm_priv_prim_list, prim_list) + cm_id_priv->prim_send_port_not_ready = 1; + spin_unlock_irq(&cm.lock); /* * We flush the queue here after the going_down set, this * verify that no new works will be queued in the recv handler, * after that we can call the unregister_mad_agent */ flush_workqueue(cm.wq); - ib_unregister_mad_agent(port->mad_agent); + spin_lock_irq(&cm.state_lock); + cur_mad_agent = port->mad_agent; + port->mad_agent = NULL; + spin_unlock_irq(&cm.state_lock); + ib_unregister_mad_agent(cur_mad_agent); cm_remove_port_fs(port); } + device_unregister(cm_dev->device); kfree(cm_dev); } @@ -3989,6 +4082,7 @@ INIT_LIST_HEAD(&cm.device_list); rwlock_init(&cm.device_lock); spin_lock_init(&cm.lock); + spin_lock_init(&cm.state_lock); cm.listen_service_table = RB_ROOT; cm.listen_service_id = be64_to_cpu(IB_CM_ASSIGN_SERVICE_ID); cm.remote_id_table = RB_ROOT; --- linux-4.8.0.orig/drivers/infiniband/core/mad.c +++ linux-4.8.0/drivers/infiniband/core/mad.c @@ -1746,7 +1746,7 @@ if (!class) goto out; if (convert_mgmt_class(mad_hdr->mgmt_class) >= - IB_MGMT_MAX_METHODS) + ARRAY_SIZE(class->method_table)) goto out; method = class->method_table[convert_mgmt_class( mad_hdr->mgmt_class)]; --- linux-4.8.0.orig/drivers/infiniband/core/multicast.c +++ linux-4.8.0/drivers/infiniband/core/multicast.c @@ -518,8 +518,11 @@ process_join_error(group, status); else { int mgids_changed, is_mgid0; - ib_find_pkey(group->port->dev->device, group->port->port_num, - be16_to_cpu(rec->pkey), &pkey_index); + + if (ib_find_pkey(group->port->dev->device, + group->port->port_num, be16_to_cpu(rec->pkey), + &pkey_index)) + pkey_index = MCAST_INVALID_PKEY_INDEX; spin_lock_irq(&group->port->lock); if (group->state == MCAST_BUSY && --- linux-4.8.0.orig/drivers/infiniband/core/umem.c +++ linux-4.8.0/drivers/infiniband/core/umem.c @@ -174,7 +174,7 @@ cur_base = addr & PAGE_MASK; - if (npages == 0) { + if (npages == 0 || npages > UINT_MAX) { ret = -EINVAL; goto out; } --- linux-4.8.0.orig/drivers/infiniband/core/uverbs_main.c +++ linux-4.8.0/drivers/infiniband/core/uverbs_main.c @@ -262,12 +262,9 @@ container_of(uobj, struct ib_uqp_object, uevent.uobject); idr_remove_uobj(&ib_uverbs_qp_idr, uobj); - if (qp != qp->real_qp) { - ib_close_qp(qp); - } else { + if (qp == qp->real_qp) ib_uverbs_detach_umcast(qp, uqp); - ib_destroy_qp(qp); - } + ib_destroy_qp(qp); ib_uverbs_release_uevent(file, &uqp->uevent); kfree(uqp); } --- linux-4.8.0.orig/drivers/infiniband/core/verbs.c +++ linux-4.8.0/drivers/infiniband/core/verbs.c @@ -821,7 +821,7 @@ if (ret) { pr_err("failed to init MR pool ret= %d\n", ret); ib_destroy_qp(qp); - qp = ERR_PTR(ret); + return ERR_PTR(ret); } } --- linux-4.8.0.orig/drivers/infiniband/hw/hfi1/qp.c +++ linux-4.8.0/drivers/infiniband/hw/hfi1/qp.c @@ -808,6 +808,13 @@ kfree(priv); return ERR_PTR(-ENOMEM); } + iowait_init( + &priv->s_iowait, + 1, + _hfi1_do_send, + iowait_sleep, + iowait_wakeup, + iowait_sdma_drained); setup_timer(&priv->s_rnr_timer, hfi1_rc_rnr_retry, (unsigned long)qp); qp->s_timer.function = hfi1_rc_timeout; return priv; @@ -873,13 +880,6 @@ { struct hfi1_qp_priv *priv = qp->priv; - iowait_init( - &priv->s_iowait, - 1, - _hfi1_do_send, - iowait_sleep, - iowait_wakeup, - iowait_sdma_drained); priv->r_adefered = 0; clear_ahg(qp); } --- linux-4.8.0.orig/drivers/infiniband/hw/hfi1/rc.c +++ linux-4.8.0/drivers/infiniband/hw/hfi1/rc.c @@ -87,7 +87,7 @@ struct hfi1_qp_priv *priv = qp->priv; qp->s_flags |= RVT_S_WAIT_RNR; - qp->s_timer.expires = jiffies + usecs_to_jiffies(to); + priv->s_rnr_timer.expires = jiffies + usecs_to_jiffies(to); add_timer(&priv->s_rnr_timer); } @@ -932,8 +932,10 @@ return; queue_ack: - this_cpu_inc(*ibp->rvp.rc_qacks); spin_lock_irqsave(&qp->s_lock, flags); + if (!(ib_rvt_state_ops[qp->state] & RVT_PROCESS_RECV_OK)) + goto unlock; + this_cpu_inc(*ibp->rvp.rc_qacks); qp->s_flags |= RVT_S_ACK_PENDING | RVT_S_RESP_PENDING; qp->s_nak_state = qp->r_nak_state; qp->s_ack_psn = qp->r_ack_psn; @@ -942,6 +944,7 @@ /* Schedule the send tasklet. */ hfi1_schedule_send(qp); +unlock: spin_unlock_irqrestore(&qp->s_lock, flags); } --- linux-4.8.0.orig/drivers/infiniband/hw/hfi1/user_sdma.c +++ linux-4.8.0/drivers/infiniband/hw/hfi1/user_sdma.c @@ -1152,7 +1152,7 @@ rb_node = hfi1_mmu_rb_extract(pq->handler, (unsigned long)iovec->iov.iov_base, iovec->iov.iov_len); - if (rb_node && !IS_ERR(rb_node)) + if (rb_node) node = container_of(rb_node, struct sdma_mmu_node, rb); else rb_node = NULL; --- linux-4.8.0.orig/drivers/infiniband/hw/i40iw/i40iw_verbs.c +++ linux-4.8.0/drivers/infiniband/hw/i40iw/i40iw_verbs.c @@ -2501,7 +2501,7 @@ return -ENOSYS; } - memcpy(&stats->value[0], &hw_stats, sizeof(*hw_stats)); + memcpy(&stats->value[0], hw_stats, sizeof(*hw_stats)); return stats->num_counters; } --- linux-4.8.0.orig/drivers/infiniband/hw/mlx4/ah.c +++ linux-4.8.0/drivers/infiniband/hw/mlx4/ah.c @@ -102,7 +102,10 @@ if (vlan_tag < 0x1000) vlan_tag |= (ah_attr->sl & 7) << 13; ah->av.eth.port_pd = cpu_to_be32(to_mpd(pd)->pdn | (ah_attr->port_num << 24)); - ah->av.eth.gid_index = mlx4_ib_gid_index_to_real_index(ibdev, ah_attr->port_num, ah_attr->grh.sgid_index); + ret = mlx4_ib_gid_index_to_real_index(ibdev, ah_attr->port_num, ah_attr->grh.sgid_index); + if (ret < 0) + return ERR_PTR(ret); + ah->av.eth.gid_index = ret; ah->av.eth.vlan = cpu_to_be16(vlan_tag); ah->av.eth.hop_limit = ah_attr->grh.hop_limit; if (ah_attr->static_rate) { --- linux-4.8.0.orig/drivers/infiniband/hw/mlx4/cq.c +++ linux-4.8.0/drivers/infiniband/hw/mlx4/cq.c @@ -253,11 +253,14 @@ if (context) if (ib_copy_to_udata(udata, &cq->mcq.cqn, sizeof (__u32))) { err = -EFAULT; - goto err_dbmap; + goto err_cq_free; } return &cq->ibcq; +err_cq_free: + mlx4_cq_free(dev->dev, &cq->mcq); + err_dbmap: if (context) mlx4_ib_db_unmap_user(to_mucontext(context), &cq->db); --- linux-4.8.0.orig/drivers/infiniband/hw/mlx5/cq.c +++ linux-4.8.0/drivers/infiniband/hw/mlx5/cq.c @@ -917,8 +917,7 @@ if (err) goto err_create; } else { - /* for now choose 64 bytes till we have a proper interface */ - cqe_size = 64; + cqe_size = cache_line_size() == 128 ? 128 : 64; err = create_cq_kernel(dev, cq, entries, cqe_size, &cqb, &index, &inlen); if (err) --- linux-4.8.0.orig/drivers/infiniband/hw/mlx5/main.c +++ linux-4.8.0/drivers/infiniband/hw/mlx5/main.c @@ -1843,6 +1843,7 @@ &leftovers_specs[LEFTOVERS_UC].flow_attr, dst); if (IS_ERR(handler_ucast)) { + mlx5_del_flow_rule(handler->rule); kfree(handler); handler = handler_ucast; } else { @@ -2099,14 +2100,14 @@ { struct mlx5_ib_dev *ibdev = (struct mlx5_ib_dev *)context; struct ib_event ibev; - + bool fatal = false; u8 port = 0; switch (event) { case MLX5_DEV_EVENT_SYS_ERROR: - ibdev->ib_active = false; ibev.event = IB_EVENT_DEVICE_FATAL; mlx5_ib_handle_internal_error(ibdev); + fatal = true; break; case MLX5_DEV_EVENT_PORT_UP: @@ -2153,6 +2154,9 @@ if (ibdev->ib_active) ib_dispatch_event(&ibev); + + if (fatal) + ibdev->ib_active = false; } static void get_ext_port_caps(struct mlx5_ib_dev *dev) @@ -2834,7 +2838,7 @@ } err = init_node_data(dev); if (err) - goto err_dealloc; + goto err_free_port; mutex_init(&dev->flow_db.lock); mutex_init(&dev->cap_mask_mutex); @@ -2844,7 +2848,7 @@ if (ll == IB_LINK_LAYER_ETHERNET) { err = mlx5_enable_roce(dev); if (err) - goto err_dealloc; + goto err_free_port; } err = create_dev_resources(&dev->devr); --- linux-4.8.0.orig/drivers/infiniband/hw/mlx5/qp.c +++ linux-4.8.0/drivers/infiniband/hw/mlx5/qp.c @@ -2037,8 +2037,8 @@ mlx5_ib_dbg(dev, "ib qpnum 0x%x, mlx qpn 0x%x, rcqn 0x%x, scqn 0x%x\n", qp->ibqp.qp_num, qp->trans_qp.base.mqp.qpn, - to_mcq(init_attr->recv_cq)->mcq.cqn, - to_mcq(init_attr->send_cq)->mcq.cqn); + init_attr->recv_cq ? to_mcq(init_attr->recv_cq)->mcq.cqn : -1, + init_attr->send_cq ? to_mcq(init_attr->send_cq)->mcq.cqn : -1); qp->trans_qp.xrcdn = xrcdn; @@ -4702,6 +4702,14 @@ udata->inlen)) return ERR_PTR(-EOPNOTSUPP); + if (init_attr->log_ind_tbl_size > + MLX5_CAP_GEN(dev->mdev, log_max_rqt_size)) { + mlx5_ib_dbg(dev, "log_ind_tbl_size = %d is bigger than supported = %d\n", + init_attr->log_ind_tbl_size, + MLX5_CAP_GEN(dev->mdev, log_max_rqt_size)); + return ERR_PTR(-EINVAL); + } + min_resp_len = offsetof(typeof(resp), reserved) + sizeof(resp.reserved); if (udata->outlen && udata->outlen < min_resp_len) return ERR_PTR(-EINVAL); --- linux-4.8.0.orig/drivers/infiniband/hw/qib/qib.h +++ linux-4.8.0/drivers/infiniband/hw/qib/qib.h @@ -1131,7 +1131,6 @@ extern struct qib_devdata *qib_lookup(int unit); extern u32 qib_cpulist_count; extern unsigned long *qib_cpulist; -extern u16 qpt_mask; extern unsigned qib_cc_table_size; int qib_init(struct qib_devdata *, int); --- linux-4.8.0.orig/drivers/infiniband/hw/qib/qib_qp.c +++ linux-4.8.0/drivers/infiniband/hw/qib/qib_qp.c @@ -41,14 +41,6 @@ #include "qib.h" -/* - * mask field which was present in now deleted qib_qpn_table - * is not present in rvt_qpn_table. Defining the same field - * as qpt_mask here instead of adding the mask field to - * rvt_qpn_table. - */ -u16 qpt_mask; - static inline unsigned mk_qpn(struct rvt_qpn_table *qpt, struct rvt_qpn_map *map, unsigned off) { @@ -57,7 +49,7 @@ static inline unsigned find_next_offset(struct rvt_qpn_table *qpt, struct rvt_qpn_map *map, unsigned off, - unsigned n) + unsigned n, u16 qpt_mask) { if (qpt_mask) { off++; @@ -179,6 +171,7 @@ struct qib_ibdev *verbs_dev = container_of(rdi, struct qib_ibdev, rdi); struct qib_devdata *dd = container_of(verbs_dev, struct qib_devdata, verbs_dev); + u16 qpt_mask = dd->qpn_mask; if (type == IB_QPT_SMI || type == IB_QPT_GSI) { unsigned n; @@ -215,7 +208,7 @@ goto bail; } offset = find_next_offset(qpt, map, offset, - dd->n_krcv_queues); + dd->n_krcv_queues, qpt_mask); qpn = mk_qpn(qpt, map, offset); /* * This test differs from alloc_pidmap(). --- linux-4.8.0.orig/drivers/infiniband/hw/qib/qib_verbs.c +++ linux-4.8.0/drivers/infiniband/hw/qib/qib_verbs.c @@ -1606,8 +1606,6 @@ /* Only need to initialize non-zero fields. */ setup_timer(&dev->mem_timer, mem_timer, (unsigned long)dev); - qpt_mask = dd->qpn_mask; - INIT_LIST_HEAD(&dev->piowait); INIT_LIST_HEAD(&dev->dmawait); INIT_LIST_HEAD(&dev->txwait); --- linux-4.8.0.orig/drivers/infiniband/sw/rdmavt/dma.c +++ linux-4.8.0/drivers/infiniband/sw/rdmavt/dma.c @@ -90,9 +90,6 @@ if (WARN_ON(!valid_dma_direction(direction))) return BAD_DMA_ADDRESS; - if (offset + size > PAGE_SIZE) - return BAD_DMA_ADDRESS; - addr = (u64)page_address(page); if (addr) addr += offset; --- linux-4.8.0.orig/drivers/infiniband/sw/rdmavt/qp.c +++ linux-4.8.0/drivers/infiniband/sw/rdmavt/qp.c @@ -501,12 +501,9 @@ */ static void rvt_reset_qp(struct rvt_dev_info *rdi, struct rvt_qp *qp, enum ib_qp_type type) - __releases(&qp->s_lock) - __releases(&qp->s_hlock) - __releases(&qp->r_lock) - __acquires(&qp->r_lock) - __acquires(&qp->s_hlock) - __acquires(&qp->s_lock) + __must_hold(&qp->r_lock) + __must_hold(&qp->s_hlock) + __must_hold(&qp->s_lock) { if (qp->state != IB_QPS_RESET) { qp->state = IB_QPS_RESET; --- linux-4.8.0.orig/drivers/infiniband/sw/rxe/rxe_net.c +++ linux-4.8.0/drivers/infiniband/sw/rxe/rxe_net.c @@ -243,10 +243,8 @@ { int err; struct socket *sock; - struct udp_port_cfg udp_cfg; - struct udp_tunnel_sock_cfg tnl_cfg; - - memset(&udp_cfg, 0, sizeof(udp_cfg)); + struct udp_port_cfg udp_cfg = {0}; + struct udp_tunnel_sock_cfg tnl_cfg = {0}; if (ipv6) { udp_cfg.family = AF_INET6; @@ -264,10 +262,8 @@ return ERR_PTR(err); } - tnl_cfg.sk_user_data = NULL; tnl_cfg.encap_type = 1; tnl_cfg.encap_rcv = rxe_udp_encap_recv; - tnl_cfg.encap_destroy = NULL; /* Setup UDP tunnel */ setup_udp_tunnel_sock(net, sock, &tnl_cfg); --- linux-4.8.0.orig/drivers/infiniband/sw/rxe/rxe_qp.c +++ linux-4.8.0/drivers/infiniband/sw/rxe/rxe_qp.c @@ -522,6 +522,7 @@ if (qp->sq.queue) { __rxe_do_task(&qp->comp.task); __rxe_do_task(&qp->req.task); + rxe_queue_reset(qp->sq.queue); } /* cleanup attributes */ @@ -573,6 +574,7 @@ { qp->req.state = QP_STATE_ERROR; qp->resp.state = QP_STATE_ERROR; + qp->attr.qp_state = IB_QPS_ERR; /* drain work and packet queues */ rxe_run_task(&qp->resp.task, 1); @@ -848,4 +850,5 @@ free_rd_atomic_resources(qp); kernel_sock_shutdown(qp->sk, SHUT_RDWR); + sock_release(qp->sk); } --- linux-4.8.0.orig/drivers/infiniband/sw/rxe/rxe_queue.c +++ linux-4.8.0/drivers/infiniband/sw/rxe/rxe_queue.c @@ -84,6 +84,15 @@ return -EINVAL; } +inline void rxe_queue_reset(struct rxe_queue *q) +{ + /* queue is comprised from header and the memory + * of the actual queue. See "struct rxe_queue_buf" in rxe_queue.h + * reset only the queue itself and not the management header + */ + memset(q->buf->data, 0, q->buf_size - sizeof(struct rxe_queue_buf)); +} + struct rxe_queue *rxe_queue_init(struct rxe_dev *rxe, int *num_elem, unsigned int elem_size) --- linux-4.8.0.orig/drivers/infiniband/sw/rxe/rxe_queue.h +++ linux-4.8.0/drivers/infiniband/sw/rxe/rxe_queue.h @@ -84,6 +84,8 @@ size_t buf_size, struct rxe_mmap_info **ip_p); +void rxe_queue_reset(struct rxe_queue *q); + struct rxe_queue *rxe_queue_init(struct rxe_dev *rxe, int *num_elem, unsigned int elem_size); --- linux-4.8.0.orig/drivers/infiniband/sw/rxe/rxe_req.c +++ linux-4.8.0/drivers/infiniband/sw/rxe/rxe_req.c @@ -695,7 +695,8 @@ qp->req.wqe_index); wqe->state = wqe_state_done; wqe->status = IB_WC_SUCCESS; - goto complete; + __rxe_do_task(&qp->comp.task); + return 0; } payload = mtu; } @@ -744,13 +745,17 @@ wqe->status = IB_WC_LOC_PROT_ERR; wqe->state = wqe_state_error; -complete: - if (qp_type(qp) != IB_QPT_RC) { - while (rxe_completer(qp) == 0) - ; - } - - return 0; + /* + * IBA Spec. Section 10.7.3.1 SIGNALED COMPLETIONS + * ---------8<---------8<------------- + * ...Note that if a completion error occurs, a Work Completion + * will always be generated, even if the signaling + * indicator requests an Unsignaled Completion. + * ---------8<---------8<------------- + */ + wqe->wr.send_flags |= IB_SEND_SIGNALED; + __rxe_do_task(&qp->comp.task); + return -EAGAIN; exit: return -EAGAIN; --- linux-4.8.0.orig/drivers/infiniband/ulp/ipoib/ipoib.h +++ linux-4.8.0/drivers/infiniband/ulp/ipoib/ipoib.h @@ -63,6 +63,8 @@ enum { IPOIB_ENCAP_LEN = 4, + IPOIB_PSEUDO_LEN = 20, + IPOIB_HARD_LEN = IPOIB_ENCAP_LEN + IPOIB_PSEUDO_LEN, IPOIB_UD_HEAD_SIZE = IB_GRH_BYTES + IPOIB_ENCAP_LEN, IPOIB_UD_RX_SG = 2, /* max buffer needed for 4K mtu */ @@ -134,15 +136,21 @@ u16 reserved; }; -struct ipoib_cb { - struct qdisc_skb_cb qdisc_cb; - u8 hwaddr[INFINIBAND_ALEN]; +struct ipoib_pseudo_header { + u8 hwaddr[INFINIBAND_ALEN]; }; -static inline struct ipoib_cb *ipoib_skb_cb(const struct sk_buff *skb) +static inline void skb_add_pseudo_hdr(struct sk_buff *skb) { - BUILD_BUG_ON(sizeof(skb->cb) < sizeof(struct ipoib_cb)); - return (struct ipoib_cb *)skb->cb; + char *data = skb_push(skb, IPOIB_PSEUDO_LEN); + + /* + * only the ipoib header is present now, make room for a dummy + * pseudo header and set skb field accordingly + */ + memset(data, 0, IPOIB_PSEUDO_LEN); + skb_reset_mac_header(skb); + skb_pull(skb, IPOIB_HARD_LEN); } /* Used for all multicast joins (broadcast, IPv4 mcast and IPv6 mcast) */ --- linux-4.8.0.orig/drivers/infiniband/ulp/ipoib/ipoib_cm.c +++ linux-4.8.0/drivers/infiniband/ulp/ipoib/ipoib_cm.c @@ -63,6 +63,8 @@ #define IPOIB_CM_RX_DELAY (3 * 256 * HZ) #define IPOIB_CM_RX_UPDATE_MASK (0x3) +#define IPOIB_CM_RX_RESERVE (ALIGN(IPOIB_HARD_LEN, 16) - IPOIB_ENCAP_LEN) + static struct ib_qp_attr ipoib_cm_err_attr = { .qp_state = IB_QPS_ERR }; @@ -146,15 +148,15 @@ struct sk_buff *skb; int i; - skb = dev_alloc_skb(IPOIB_CM_HEAD_SIZE + 12); + skb = dev_alloc_skb(ALIGN(IPOIB_CM_HEAD_SIZE + IPOIB_PSEUDO_LEN, 16)); if (unlikely(!skb)) return NULL; /* - * IPoIB adds a 4 byte header. So we need 12 more bytes to align the + * IPoIB adds a IPOIB_ENCAP_LEN byte header, this will align the * IP header to a multiple of 16. */ - skb_reserve(skb, 12); + skb_reserve(skb, IPOIB_CM_RX_RESERVE); mapping[0] = ib_dma_map_single(priv->ca, skb->data, IPOIB_CM_HEAD_SIZE, DMA_FROM_DEVICE); @@ -624,9 +626,9 @@ if (wc->byte_len < IPOIB_CM_COPYBREAK) { int dlen = wc->byte_len; - small_skb = dev_alloc_skb(dlen + 12); + small_skb = dev_alloc_skb(dlen + IPOIB_CM_RX_RESERVE); if (small_skb) { - skb_reserve(small_skb, 12); + skb_reserve(small_skb, IPOIB_CM_RX_RESERVE); ib_dma_sync_single_for_cpu(priv->ca, rx_ring[wr_id].mapping[0], dlen, DMA_FROM_DEVICE); skb_copy_from_linear_data(skb, small_skb->data, dlen); @@ -663,8 +665,7 @@ copied: skb->protocol = ((struct ipoib_header *) skb->data)->proto; - skb_reset_mac_header(skb); - skb_pull(skb, IPOIB_ENCAP_LEN); + skb_add_pseudo_hdr(skb); ++dev->stats.rx_packets; dev->stats.rx_bytes += skb->len; --- linux-4.8.0.orig/drivers/infiniband/ulp/ipoib/ipoib_ib.c +++ linux-4.8.0/drivers/infiniband/ulp/ipoib/ipoib_ib.c @@ -128,16 +128,15 @@ buf_size = IPOIB_UD_BUF_SIZE(priv->max_ib_mtu); - skb = dev_alloc_skb(buf_size + IPOIB_ENCAP_LEN); + skb = dev_alloc_skb(buf_size + IPOIB_HARD_LEN); if (unlikely(!skb)) return NULL; /* - * IB will leave a 40 byte gap for a GRH and IPoIB adds a 4 byte - * header. So we need 4 more bytes to get to 48 and align the - * IP header to a multiple of 16. + * the IP header will be at IPOIP_HARD_LEN + IB_GRH_BYTES, that is + * 64 bytes aligned */ - skb_reserve(skb, 4); + skb_reserve(skb, sizeof(struct ipoib_pseudo_header)); mapping = priv->rx_ring[id].mapping; mapping[0] = ib_dma_map_single(priv->ca, skb->data, buf_size, @@ -253,8 +252,7 @@ skb_pull(skb, IB_GRH_BYTES); skb->protocol = ((struct ipoib_header *) skb->data)->proto; - skb_reset_mac_header(skb); - skb_pull(skb, IPOIB_ENCAP_LEN); + skb_add_pseudo_hdr(skb); ++dev->stats.rx_packets; dev->stats.rx_bytes += skb->len; --- linux-4.8.0.orig/drivers/infiniband/ulp/ipoib/ipoib_main.c +++ linux-4.8.0/drivers/infiniband/ulp/ipoib/ipoib_main.c @@ -925,9 +925,12 @@ ipoib_neigh_free(neigh); goto err_drop; } - if (skb_queue_len(&neigh->queue) < IPOIB_MAX_PATH_REC_QUEUE) + if (skb_queue_len(&neigh->queue) < + IPOIB_MAX_PATH_REC_QUEUE) { + /* put pseudoheader back on for next time */ + skb_push(skb, IPOIB_PSEUDO_LEN); __skb_queue_tail(&neigh->queue, skb); - else { + } else { ipoib_warn(priv, "queue length limit %d. Packet drop.\n", skb_queue_len(&neigh->queue)); goto err_drop; @@ -964,7 +967,7 @@ } static void unicast_arp_send(struct sk_buff *skb, struct net_device *dev, - struct ipoib_cb *cb) + struct ipoib_pseudo_header *phdr) { struct ipoib_dev_priv *priv = netdev_priv(dev); struct ipoib_path *path; @@ -972,16 +975,18 @@ spin_lock_irqsave(&priv->lock, flags); - path = __path_find(dev, cb->hwaddr + 4); + path = __path_find(dev, phdr->hwaddr + 4); if (!path || !path->valid) { int new_path = 0; if (!path) { - path = path_rec_create(dev, cb->hwaddr + 4); + path = path_rec_create(dev, phdr->hwaddr + 4); new_path = 1; } if (path) { if (skb_queue_len(&path->queue) < IPOIB_MAX_PATH_REC_QUEUE) { + /* put pseudoheader back on for next time */ + skb_push(skb, IPOIB_PSEUDO_LEN); __skb_queue_tail(&path->queue, skb); } else { ++dev->stats.tx_dropped; @@ -1009,10 +1014,12 @@ be16_to_cpu(path->pathrec.dlid)); spin_unlock_irqrestore(&priv->lock, flags); - ipoib_send(dev, skb, path->ah, IPOIB_QPN(cb->hwaddr)); + ipoib_send(dev, skb, path->ah, IPOIB_QPN(phdr->hwaddr)); return; } else if ((path->query || !path_rec_start(dev, path)) && skb_queue_len(&path->queue) < IPOIB_MAX_PATH_REC_QUEUE) { + /* put pseudoheader back on for next time */ + skb_push(skb, IPOIB_PSEUDO_LEN); __skb_queue_tail(&path->queue, skb); } else { ++dev->stats.tx_dropped; @@ -1026,13 +1033,15 @@ { struct ipoib_dev_priv *priv = netdev_priv(dev); struct ipoib_neigh *neigh; - struct ipoib_cb *cb = ipoib_skb_cb(skb); + struct ipoib_pseudo_header *phdr; struct ipoib_header *header; unsigned long flags; + phdr = (struct ipoib_pseudo_header *) skb->data; + skb_pull(skb, sizeof(*phdr)); header = (struct ipoib_header *) skb->data; - if (unlikely(cb->hwaddr[4] == 0xff)) { + if (unlikely(phdr->hwaddr[4] == 0xff)) { /* multicast, arrange "if" according to probability */ if ((header->proto != htons(ETH_P_IP)) && (header->proto != htons(ETH_P_IPV6)) && @@ -1045,13 +1054,13 @@ return NETDEV_TX_OK; } /* Add in the P_Key for multicast*/ - cb->hwaddr[8] = (priv->pkey >> 8) & 0xff; - cb->hwaddr[9] = priv->pkey & 0xff; + phdr->hwaddr[8] = (priv->pkey >> 8) & 0xff; + phdr->hwaddr[9] = priv->pkey & 0xff; - neigh = ipoib_neigh_get(dev, cb->hwaddr); + neigh = ipoib_neigh_get(dev, phdr->hwaddr); if (likely(neigh)) goto send_using_neigh; - ipoib_mcast_send(dev, cb->hwaddr, skb); + ipoib_mcast_send(dev, phdr->hwaddr, skb); return NETDEV_TX_OK; } @@ -1060,16 +1069,16 @@ case htons(ETH_P_IP): case htons(ETH_P_IPV6): case htons(ETH_P_TIPC): - neigh = ipoib_neigh_get(dev, cb->hwaddr); + neigh = ipoib_neigh_get(dev, phdr->hwaddr); if (unlikely(!neigh)) { - neigh_add_path(skb, cb->hwaddr, dev); + neigh_add_path(skb, phdr->hwaddr, dev); return NETDEV_TX_OK; } break; case htons(ETH_P_ARP): case htons(ETH_P_RARP): /* for unicast ARP and RARP should always perform path find */ - unicast_arp_send(skb, dev, cb); + unicast_arp_send(skb, dev, phdr); return NETDEV_TX_OK; default: /* ethertype not supported by IPoIB */ @@ -1086,11 +1095,13 @@ goto unref; } } else if (neigh->ah) { - ipoib_send(dev, skb, neigh->ah, IPOIB_QPN(cb->hwaddr)); + ipoib_send(dev, skb, neigh->ah, IPOIB_QPN(phdr->hwaddr)); goto unref; } if (skb_queue_len(&neigh->queue) < IPOIB_MAX_PATH_REC_QUEUE) { + /* put pseudoheader back on for next time */ + skb_push(skb, sizeof(*phdr)); spin_lock_irqsave(&priv->lock, flags); __skb_queue_tail(&neigh->queue, skb); spin_unlock_irqrestore(&priv->lock, flags); @@ -1122,8 +1133,8 @@ unsigned short type, const void *daddr, const void *saddr, unsigned len) { + struct ipoib_pseudo_header *phdr; struct ipoib_header *header; - struct ipoib_cb *cb = ipoib_skb_cb(skb); header = (struct ipoib_header *) skb_push(skb, sizeof *header); @@ -1132,12 +1143,13 @@ /* * we don't rely on dst_entry structure, always stuff the - * destination address into skb->cb so we can figure out where + * destination address into skb hard header so we can figure out where * to send the packet later. */ - memcpy(cb->hwaddr, daddr, INFINIBAND_ALEN); + phdr = (struct ipoib_pseudo_header *) skb_push(skb, sizeof(*phdr)); + memcpy(phdr->hwaddr, daddr, INFINIBAND_ALEN); - return sizeof *header; + return IPOIB_HARD_LEN; } static void ipoib_set_mcast_list(struct net_device *dev) @@ -1759,7 +1771,7 @@ dev->flags |= IFF_BROADCAST | IFF_MULTICAST; - dev->hard_header_len = IPOIB_ENCAP_LEN; + dev->hard_header_len = IPOIB_HARD_LEN; dev->addr_len = INFINIBAND_ALEN; dev->type = ARPHRD_INFINIBAND; dev->tx_queue_len = ipoib_sendq_size * 2; --- linux-4.8.0.orig/drivers/infiniband/ulp/ipoib/ipoib_multicast.c +++ linux-4.8.0/drivers/infiniband/ulp/ipoib/ipoib_multicast.c @@ -575,8 +575,11 @@ if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags)) return; - if (ib_query_port(priv->ca, priv->port, &port_attr) || - port_attr.state != IB_PORT_ACTIVE) { + if (ib_query_port(priv->ca, priv->port, &port_attr)) { + ipoib_dbg(priv, "ib_query_port() failed\n"); + return; + } + if (port_attr.state != IB_PORT_ACTIVE) { ipoib_dbg(priv, "port state is not ACTIVE (state = %d) suspending join task\n", port_attr.state); return; @@ -796,9 +799,11 @@ __ipoib_mcast_add(dev, mcast); list_add_tail(&mcast->list, &priv->multicast_list); } - if (skb_queue_len(&mcast->pkt_queue) < IPOIB_MAX_MCAST_QUEUE) + if (skb_queue_len(&mcast->pkt_queue) < IPOIB_MAX_MCAST_QUEUE) { + /* put pseudoheader back on for next time */ + skb_push(skb, sizeof(struct ipoib_pseudo_header)); skb_queue_tail(&mcast->pkt_queue, skb); - else { + } else { ++dev->stats.tx_dropped; dev_kfree_skb_any(skb); } --- linux-4.8.0.orig/drivers/infiniband/ulp/srp/ib_srp.c +++ linux-4.8.0/drivers/infiniband/ulp/srp/ib_srp.c @@ -1400,7 +1400,9 @@ while (dma_len) { unsigned offset = dma_addr & ~dev->mr_page_mask; - if (state->npages == dev->max_pages_per_mr || offset != 0) { + + if (state->npages == dev->max_pages_per_mr || + (state->npages > 0 && offset != 0)) { ret = srp_map_finish_fmr(state, ch); if (ret) return ret; @@ -1417,12 +1419,12 @@ } /* - * If the last entry of the MR wasn't a full page, then we need to + * If the end of the MR is not on a page boundary then we need to * close it out and start a new one -- we can only merge at page * boundaries. */ ret = 0; - if (len != dev->mr_page_size) + if ((dma_addr & ~dev->mr_page_mask) != 0) ret = srp_map_finish_fmr(state, ch); return ret; } --- linux-4.8.0.orig/drivers/input/misc/drv260x.c +++ linux-4.8.0/drivers/input/misc/drv260x.c @@ -592,7 +592,6 @@ } haptics->input_dev->name = "drv260x:haptics"; - haptics->input_dev->dev.parent = client->dev.parent; haptics->input_dev->close = drv260x_close; input_set_drvdata(haptics->input_dev, haptics); input_set_capability(haptics->input_dev, EV_FF, FF_RUMBLE); --- linux-4.8.0.orig/drivers/input/mouse/alps.c +++ linux-4.8.0/drivers/input/mouse/alps.c @@ -103,6 +103,7 @@ 6-byte ALPS packet */ #define ALPS_STICK_BITS 0x100 /* separate stick button bits */ #define ALPS_BUTTONPAD 0x200 /* device is a clickpad */ +#define ALPS_DUALPOINT_WITH_PRESSURE 0x400 /* device can report trackpoint pressure */ static const struct alps_model_info alps_model_data[] = { { { 0x32, 0x02, 0x14 }, 0x00, { ALPS_PROTO_V2, 0xf8, 0xf8, ALPS_PASS | ALPS_DUALPOINT } }, /* Toshiba Salellite Pro M10 */ @@ -1156,15 +1157,28 @@ { unsigned char pkt_id = SS4_PACKET_ID_IDLE; - if (byte[0] == 0x18 && byte[1] == 0x10 && byte[2] == 0x00 && - (byte[3] & 0x88) == 0x08 && byte[4] == 0x10 && byte[5] == 0x00) { - pkt_id = SS4_PACKET_ID_IDLE; - } else if (!(byte[3] & 0x10)) { - pkt_id = SS4_PACKET_ID_ONE; - } else if (!(byte[3] & 0x20)) { + switch (byte[3] & 0x30) { + case 0x00: + if (byte[0] == 0x18 && byte[1] == 0x10 && byte[2] == 0x00 && + (byte[3] & 0x88) == 0x08 && byte[4] == 0x10 && + byte[5] == 0x00) { + pkt_id = SS4_PACKET_ID_IDLE; + } else { + pkt_id = SS4_PACKET_ID_ONE; + } + break; + case 0x10: + /* two-finger finger positions */ pkt_id = SS4_PACKET_ID_TWO; - } else { + break; + case 0x20: + /* stick pointer */ + pkt_id = SS4_PACKET_ID_STICK; + break; + case 0x30: + /* third and fourth finger positions */ pkt_id = SS4_PACKET_ID_MULTI; + break; } return pkt_id; @@ -1185,7 +1199,13 @@ f->mt[0].x = SS4_1F_X_V2(p); f->mt[0].y = SS4_1F_Y_V2(p); f->pressure = ((SS4_1F_Z_V2(p)) * 2) & 0x7f; - f->fingers = 1; + /* + * When a button is held the device will give us events + * with x, y, and pressure of 0. This causes annoying jumps + * if a touch is released while the button is held. + * Handle this by claiming zero contacts. + */ + f->fingers = f->pressure > 0 ? 1 : 0; f->first_mp = 0; f->is_mp = 0; break; @@ -1246,16 +1266,40 @@ } break; + case SS4_PACKET_ID_STICK: + if (!(priv->flags & ALPS_DUALPOINT)) { + psmouse_warn(psmouse, + "Rejected trackstick packet from non DualPoint device"); + } else { + int x = (s8)(((p[0] & 1) << 7) | (p[1] & 0x7f)); + int y = (s8)(((p[3] & 1) << 7) | (p[2] & 0x7f)); + int pressure = (s8)(p[4] & 0x7f); + + input_report_rel(priv->dev2, REL_X, x); + input_report_rel(priv->dev2, REL_Y, -y); + input_report_abs(priv->dev2, ABS_PRESSURE, pressure); + } + break; + case SS4_PACKET_ID_IDLE: default: memset(f, 0, sizeof(struct alps_fields)); break; } - f->left = !!(SS4_BTN_V2(p) & 0x01); - if (!(priv->flags & ALPS_BUTTONPAD)) { - f->right = !!(SS4_BTN_V2(p) & 0x02); - f->middle = !!(SS4_BTN_V2(p) & 0x04); + /* handle buttons */ + if (pkt_id == SS4_PACKET_ID_STICK) { + f->ts_left = !!(SS4_BTN_V2(p) & 0x01); + if (!(priv->flags & ALPS_BUTTONPAD)) { + f->ts_right = !!(SS4_BTN_V2(p) & 0x02); + f->ts_middle = !!(SS4_BTN_V2(p) & 0x04); + } + } else { + f->left = !!(SS4_BTN_V2(p) & 0x01); + if (!(priv->flags & ALPS_BUTTONPAD)) { + f->right = !!(SS4_BTN_V2(p) & 0x02); + f->middle = !!(SS4_BTN_V2(p) & 0x04); + } } return 0; @@ -1266,6 +1310,7 @@ struct alps_data *priv = psmouse->private; unsigned char *packet = psmouse->packet; struct input_dev *dev = psmouse->dev; + struct input_dev *dev2 = priv->dev2; struct alps_fields *f = &priv->f; memset(f, 0, sizeof(struct alps_fields)); @@ -1311,6 +1356,13 @@ input_report_abs(dev, ABS_PRESSURE, f->pressure); input_sync(dev); + + if (priv->flags & ALPS_DUALPOINT) { + input_report_key(dev2, BTN_LEFT, f->ts_left); + input_report_key(dev2, BTN_RIGHT, f->ts_right); + input_report_key(dev2, BTN_MIDDLE, f->ts_middle); + input_sync(dev2); + } } static bool alps_is_valid_package_ss4_v2(struct psmouse *psmouse) @@ -2404,14 +2456,34 @@ int num_y_electrode; int x_pitch, y_pitch, x_phys, y_phys; - num_x_electrode = SS4_NUMSENSOR_XOFFSET + (otp[1][0] & 0x0F); - num_y_electrode = SS4_NUMSENSOR_YOFFSET + ((otp[1][0] >> 4) & 0x0F); + if (IS_SS4PLUS_DEV(priv->dev_id)) { + num_x_electrode = + SS4PLUS_NUMSENSOR_XOFFSET + (otp[0][2] & 0x0F); + num_y_electrode = + SS4PLUS_NUMSENSOR_YOFFSET + ((otp[0][2] >> 4) & 0x0F); + + priv->x_max = + (num_x_electrode - 1) * SS4PLUS_COUNT_PER_ELECTRODE; + priv->y_max = + (num_y_electrode - 1) * SS4PLUS_COUNT_PER_ELECTRODE; - priv->x_max = (num_x_electrode - 1) * SS4_COUNT_PER_ELECTRODE; - priv->y_max = (num_y_electrode - 1) * SS4_COUNT_PER_ELECTRODE; + x_pitch = (otp[0][1] & 0x0F) + SS4PLUS_MIN_PITCH_MM; + y_pitch = ((otp[0][1] >> 4) & 0x0F) + SS4PLUS_MIN_PITCH_MM; - x_pitch = ((otp[1][2] >> 2) & 0x07) + SS4_MIN_PITCH_MM; - y_pitch = ((otp[1][2] >> 5) & 0x07) + SS4_MIN_PITCH_MM; + } else { + num_x_electrode = + SS4_NUMSENSOR_XOFFSET + (otp[1][0] & 0x0F); + num_y_electrode = + SS4_NUMSENSOR_YOFFSET + ((otp[1][0] >> 4) & 0x0F); + + priv->x_max = + (num_x_electrode - 1) * SS4_COUNT_PER_ELECTRODE; + priv->y_max = + (num_y_electrode - 1) * SS4_COUNT_PER_ELECTRODE; + + x_pitch = ((otp[1][2] >> 2) & 0x07) + SS4_MIN_PITCH_MM; + y_pitch = ((otp[1][2] >> 5) & 0x07) + SS4_MIN_PITCH_MM; + } x_phys = x_pitch * (num_x_electrode - 1); /* In 0.1 mm units */ y_phys = y_pitch * (num_y_electrode - 1); /* In 0.1 mm units */ @@ -2427,7 +2499,10 @@ { unsigned char is_btnless; - is_btnless = (otp[1][1] >> 3) & 0x01; + if (IS_SS4PLUS_DEV(priv->dev_id)) + is_btnless = (otp[1][0] >> 1) & 0x01; + else + is_btnless = (otp[1][1] >> 3) & 0x01; if (is_btnless) priv->flags |= ALPS_BUTTONPAD; @@ -2435,6 +2510,21 @@ return 0; } +static int alps_update_dual_info_ss4_v2(unsigned char otp[][4], + struct alps_data *priv) +{ + bool is_dual = false; + + if (IS_SS4PLUS_DEV(priv->dev_id)) + is_dual = (otp[0][0] >> 4) & 0x01; + + if (is_dual) + priv->flags |= ALPS_DUALPOINT | + ALPS_DUALPOINT_WITH_PRESSURE; + + return 0; +} + static int alps_set_defaults_ss4_v2(struct psmouse *psmouse, struct alps_data *priv) { @@ -2450,6 +2540,8 @@ alps_update_btn_info_ss4_v2(otp, priv); + alps_update_dual_info_ss4_v2(otp, priv); + return 0; } @@ -2765,7 +2857,7 @@ ec[2] >= 0x90 && ec[2] <= 0x9d) { protocol = &alps_v3_protocol_data; } else if (e7[0] == 0x73 && e7[1] == 0x03 && - e7[2] == 0x14 && ec[1] == 0x02) { + (e7[2] == 0x14 || e7[2] == 0x28)) { protocol = &alps_v8_protocol_data; } else { psmouse_dbg(psmouse, @@ -2775,7 +2867,8 @@ } if (priv) { - /* Save the Firmware version */ + /* Save Device ID and Firmware version */ + memcpy(priv->dev_id, e7, 3); memcpy(priv->fw_ver, ec, 3); error = alps_set_protocol(psmouse, priv, protocol); if (error) @@ -2949,6 +3042,10 @@ input_set_capability(dev2, EV_REL, REL_X); input_set_capability(dev2, EV_REL, REL_Y); + if (priv->flags & ALPS_DUALPOINT_WITH_PRESSURE) { + input_set_capability(dev2, EV_ABS, ABS_PRESSURE); + input_set_abs_params(dev2, ABS_PRESSURE, 0, 127, 0, 0); + } input_set_capability(dev2, EV_KEY, BTN_LEFT); input_set_capability(dev2, EV_KEY, BTN_RIGHT); input_set_capability(dev2, EV_KEY, BTN_MIDDLE); --- linux-4.8.0.orig/drivers/input/mouse/alps.h +++ linux-4.8.0/drivers/input/mouse/alps.h @@ -37,12 +37,14 @@ * or there's button activities. * SS4_PACKET_ID_TWO: There's two or more fingers on touchpad * SS4_PACKET_ID_MULTI: There's three or more fingers on touchpad + * SS4_PACKET_ID_STICK: A stick pointer packet */ enum SS4_PACKET_ID { SS4_PACKET_ID_IDLE = 0, SS4_PACKET_ID_ONE, SS4_PACKET_ID_TWO, SS4_PACKET_ID_MULTI, + SS4_PACKET_ID_STICK, }; #define SS4_COUNT_PER_ELECTRODE 256 @@ -52,7 +54,25 @@ #define SS4_MASK_NORMAL_BUTTONS 0x07 -#define SS4_1F_X_V2(_b) ((_b[0] & 0x0007) | \ +#define SS4PLUS_COUNT_PER_ELECTRODE 128 +#define SS4PLUS_NUMSENSOR_XOFFSET 16 +#define SS4PLUS_NUMSENSOR_YOFFSET 5 +#define SS4PLUS_MIN_PITCH_MM 37 + +#define IS_SS4PLUS_DEV(_b) (((_b[0]) == 0x73) && \ + ((_b[1]) == 0x03) && \ + ((_b[2]) == 0x28) \ + ) + +#define SS4_IS_IDLE_V2(_b) (((_b[0]) == 0x18) && \ + ((_b[1]) == 0x10) && \ + ((_b[2]) == 0x00) && \ + ((_b[3] & 0x88) == 0x08) && \ + ((_b[4]) == 0x10) && \ + ((_b[5]) == 0x00) \ + ) + +#define SS4_1F_X_V2(_b) (((_b[0]) & 0x0007) | \ ((_b[1] << 3) & 0x0078) | \ ((_b[1] << 2) & 0x0380) | \ ((_b[2] << 5) & 0x1C00) \ @@ -261,6 +281,7 @@ int addr_command; u16 proto_version; u8 byte0, mask0; + u8 dev_id[3]; u8 fw_ver[3]; int flags; int x_max; --- linux-4.8.0.orig/drivers/input/mouse/cypress_ps2.c +++ linux-4.8.0/drivers/input/mouse/cypress_ps2.c @@ -390,7 +390,9 @@ if (ret < 0) return ret; +#if ( CYPRESS_SIMULATED_MT != 1 ) __set_bit(INPUT_PROP_SEMI_MT, input->propbit); +#endif input_abs_set_res(input, ABS_X, cytp->tp_res_x); input_abs_set_res(input, ABS_Y, cytp->tp_res_y); @@ -478,6 +480,22 @@ ((packet[5] & 0x0f) << 8) | packet[7]; if (cytp->mode & CYTP_BIT_ABS_PRESSURE) report_data->contacts[1].z = report_data->contacts[0].z; +#if ( CYPRESS_SIMULATED_MT == 1 ) + /* simulate contact positions for >2 fingers */ + if ( report_data->contact_cnt >= 3 ) { + int i; + for ( i=1; icontact_cnt; i++ ) { + report_data->contacts[i].x = + report_data->contacts[0].x + + 100*(i)*((i%2)?-1:1); + report_data->contacts[i].y = + report_data->contacts[0].y; + if (cytp->mode & CYTP_BIT_ABS_PRESSURE) + report_data->contacts[i].z = + report_data->contacts[0].z; + } + } +#endif } report_data->left = (header_byte & BTN_LEFT_BIT) ? 1 : 0; --- linux-4.8.0.orig/drivers/input/mouse/cypress_ps2.h +++ linux-4.8.0/drivers/input/mouse/cypress_ps2.h @@ -130,7 +130,18 @@ #define RESP_REMOTE_BIT 0x40 #define RESP_SMBUS_BIT 0x80 -#define CYTP_MAX_MT_SLOTS 2 +/* + * CYPRESS_SIMULATED_MT + * set to 1 for simulated multitouch (up to 5 contact points) + * set to 0 for SEMI_MT (only 2 corner points, and count of fingers) + */ +#define CYPRESS_SIMULATED_MT 1 + +#if ( CYPRESS_SIMULATED_MT == 1 ) +# define CYTP_MAX_MT_SLOTS 5 +#else +# define CYTP_MAX_MT_SLOTS 2 +#endif struct cytp_contact { int x; --- linux-4.8.0.orig/drivers/input/mouse/elantech.c +++ linux-4.8.0/drivers/input/mouse/elantech.c @@ -1159,6 +1159,13 @@ DMI_MATCH(DMI_PRODUCT_NAME, "CELSIUS H730"), }, }, + { + /* Fujitsu H760 also has a middle button */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"), + DMI_MATCH(DMI_PRODUCT_NAME, "CELSIUS H760"), + }, + }, #endif { } }; @@ -1503,10 +1510,10 @@ }, }, { - /* Fujitsu LIFEBOOK E554 does not work with crc_enabled == 0 */ + /* Fujitsu H760 does not work with crc_enabled == 0 */ .matches = { DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"), - DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK E554"), + DMI_MATCH(DMI_PRODUCT_NAME, "CELSIUS H760"), }, }, { @@ -1517,6 +1524,20 @@ }, }, { + /* Fujitsu LIFEBOOK E554 does not work with crc_enabled == 0 */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"), + DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK E554"), + }, + }, + { + /* Fujitsu LIFEBOOK E556 does not work with crc_enabled == 0 */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"), + DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK E556"), + }, + }, + { /* Fujitsu LIFEBOOK U745 does not work with crc_enabled == 0 */ .matches = { DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"), --- linux-4.8.0.orig/drivers/input/mouse/psmouse-base.c +++ linux-4.8.0/drivers/input/mouse/psmouse-base.c @@ -1115,10 +1115,6 @@ if (psmouse_try_protocol(psmouse, PSMOUSE_TOUCHKIT_PS2, &max_proto, set_properties, true)) return PSMOUSE_TOUCHKIT_PS2; - - if (psmouse_try_protocol(psmouse, PSMOUSE_BYD, - &max_proto, set_properties, true)) - return PSMOUSE_BYD; } /* --- linux-4.8.0.orig/drivers/input/mouse/synaptics.h +++ linux-4.8.0/drivers/input/mouse/synaptics.h @@ -85,6 +85,7 @@ */ #define SYN_CAP_CLICKPAD(ex0c) ((ex0c) & 0x100000) /* 1-button ClickPad */ #define SYN_CAP_CLICKPAD2BTN(ex0c) ((ex0c) & 0x000100) /* 2-button ClickPad */ +#define SYN_CAP_CLICKPAD2BTN2(ex0c) ((ex0c) & 0x200000) /* 2-button ClickPad */ #define SYN_CAP_MAX_DIMENSIONS(ex0c) ((ex0c) & 0x020000) #define SYN_CAP_MIN_DIMENSIONS(ex0c) ((ex0c) & 0x002000) #define SYN_CAP_ADV_GESTURE(ex0c) ((ex0c) & 0x080000) --- linux-4.8.0.orig/drivers/input/rmi4/rmi_i2c.c +++ linux-4.8.0/drivers/input/rmi4/rmi_i2c.c @@ -221,6 +221,21 @@ MODULE_DEVICE_TABLE(of, rmi_i2c_of_match); #endif +static void rmi_i2c_regulator_bulk_disable(void *data) +{ + struct rmi_i2c_xport *rmi_i2c = data; + + regulator_bulk_disable(ARRAY_SIZE(rmi_i2c->supplies), + rmi_i2c->supplies); +} + +static void rmi_i2c_unregister_transport(void *data) +{ + struct rmi_i2c_xport *rmi_i2c = data; + + rmi_unregister_transport_device(&rmi_i2c->xport); +} + static int rmi_i2c_probe(struct i2c_client *client, const struct i2c_device_id *id) { @@ -264,6 +279,12 @@ if (retval < 0) return retval; + retval = devm_add_action_or_reset(&client->dev, + rmi_i2c_regulator_bulk_disable, + rmi_i2c); + if (retval) + return retval; + of_property_read_u32(client->dev.of_node, "syna,startup-delay-ms", &rmi_i2c->startup_delay); @@ -294,6 +315,11 @@ client->addr); return retval; } + retval = devm_add_action_or_reset(&client->dev, + rmi_i2c_unregister_transport, + rmi_i2c); + if (retval) + return retval; retval = rmi_i2c_init_irq(client); if (retval < 0) @@ -304,17 +330,6 @@ return 0; } -static int rmi_i2c_remove(struct i2c_client *client) -{ - struct rmi_i2c_xport *rmi_i2c = i2c_get_clientdata(client); - - rmi_unregister_transport_device(&rmi_i2c->xport); - regulator_bulk_disable(ARRAY_SIZE(rmi_i2c->supplies), - rmi_i2c->supplies); - - return 0; -} - #ifdef CONFIG_PM_SLEEP static int rmi_i2c_suspend(struct device *dev) { @@ -431,7 +446,6 @@ }, .id_table = rmi_id, .probe = rmi_i2c_probe, - .remove = rmi_i2c_remove, }; module_i2c_driver(rmi_i2c_driver); --- linux-4.8.0.orig/drivers/input/rmi4/rmi_spi.c +++ linux-4.8.0/drivers/input/rmi4/rmi_spi.c @@ -396,6 +396,13 @@ } #endif +static void rmi_spi_unregister_transport(void *data) +{ + struct rmi_spi_xport *rmi_spi = data; + + rmi_unregister_transport_device(&rmi_spi->xport); +} + static int rmi_spi_probe(struct spi_device *spi) { struct rmi_spi_xport *rmi_spi; @@ -464,6 +471,11 @@ dev_err(&spi->dev, "failed to register transport.\n"); return retval; } + retval = devm_add_action_or_reset(&spi->dev, + rmi_spi_unregister_transport, + rmi_spi); + if (retval) + return retval; retval = rmi_spi_init_irq(spi); if (retval < 0) @@ -473,15 +485,6 @@ return 0; } -static int rmi_spi_remove(struct spi_device *spi) -{ - struct rmi_spi_xport *rmi_spi = spi_get_drvdata(spi); - - rmi_unregister_transport_device(&rmi_spi->xport); - - return 0; -} - #ifdef CONFIG_PM_SLEEP static int rmi_spi_suspend(struct device *dev) { @@ -577,7 +580,6 @@ }, .id_table = rmi_id, .probe = rmi_spi_probe, - .remove = rmi_spi_remove, }; module_spi_driver(rmi_spi_driver); --- linux-4.8.0.orig/drivers/input/serio/i8042-io.h +++ linux-4.8.0/drivers/input/serio/i8042-io.h @@ -81,7 +81,7 @@ return -EBUSY; #endif - i8042_reset = 1; + i8042_reset = I8042_RESET_ALWAYS; return 0; } --- linux-4.8.0.orig/drivers/input/serio/i8042-ip22io.h +++ linux-4.8.0/drivers/input/serio/i8042-ip22io.h @@ -61,7 +61,7 @@ return -EBUSY; #endif - i8042_reset = 1; + i8042_reset = I8042_RESET_ALWAYS; return 0; } --- linux-4.8.0.orig/drivers/input/serio/i8042-ppcio.h +++ linux-4.8.0/drivers/input/serio/i8042-ppcio.h @@ -44,7 +44,7 @@ static inline int i8042_platform_init(void) { - i8042_reset = 1; + i8042_reset = I8042_RESET_ALWAYS; return 0; } --- linux-4.8.0.orig/drivers/input/serio/i8042-sparcio.h +++ linux-4.8.0/drivers/input/serio/i8042-sparcio.h @@ -130,7 +130,7 @@ } } - i8042_reset = 1; + i8042_reset = I8042_RESET_ALWAYS; return 0; } --- linux-4.8.0.orig/drivers/input/serio/i8042-unicore32io.h +++ linux-4.8.0/drivers/input/serio/i8042-unicore32io.h @@ -61,7 +61,7 @@ if (!request_mem_region(I8042_REGION_START, I8042_REGION_SIZE, "i8042")) return -EBUSY; - i8042_reset = 1; + i8042_reset = I8042_RESET_ALWAYS; return 0; } --- linux-4.8.0.orig/drivers/input/serio/i8042-x86ia64io.h +++ linux-4.8.0/drivers/input/serio/i8042-x86ia64io.h @@ -510,6 +510,90 @@ { } }; +/* + * On some Asus laptops, just running self tests cause problems. + */ +static const struct dmi_system_id i8042_dmi_noselftest_table[] = { + { + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "A455LD"), + }, + }, + { + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "K401LB"), + }, + }, + { + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "K501LB"), + }, + }, + { + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "K501LX"), + }, + }, + { + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "R409L"), + }, + }, + { + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "V502LX"), + }, + }, + { + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "X302LA"), + }, + }, + { + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "X450LCP"), + }, + }, + { + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "X450LD"), + }, + }, + { + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "X455LAB"), + }, + }, + { + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "X455LDB"), + }, + }, + { + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "X455LF"), + }, + }, + { + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "Z450LA"), + }, + }, + { } +}; static const struct dmi_system_id __initconst i8042_dmi_reset_table[] = { { /* MSI Wind U-100 */ @@ -793,6 +877,13 @@ DMI_MATCH(DMI_PRODUCT_NAME, "P34"), }, }, + { + /* Schenker XMG C504 - Elantech touchpad */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "XMG"), + DMI_MATCH(DMI_PRODUCT_NAME, "C504"), + }, + }, { } }; @@ -1072,12 +1163,18 @@ return retval; #if defined(__ia64__) - i8042_reset = true; + i8042_reset = I8042_RESET_ALWAYS; #endif #ifdef CONFIG_X86 - if (dmi_check_system(i8042_dmi_reset_table)) - i8042_reset = true; + /* Honor module parameter when value is not default */ + if (i8042_reset == I8042_RESET_DEFAULT) { + if (dmi_check_system(i8042_dmi_reset_table)) + i8042_reset = I8042_RESET_ALWAYS; + + if (dmi_check_system(i8042_dmi_noselftest_table)) + i8042_reset = I8042_RESET_NEVER; + } if (dmi_check_system(i8042_dmi_noloop_table)) i8042_noloop = true; --- linux-4.8.0.orig/drivers/input/serio/i8042.c +++ linux-4.8.0/drivers/input/serio/i8042.c @@ -48,9 +48,39 @@ module_param_named(unlock, i8042_unlock, bool, 0); MODULE_PARM_DESC(unlock, "Ignore keyboard lock."); -static bool i8042_reset; -module_param_named(reset, i8042_reset, bool, 0); -MODULE_PARM_DESC(reset, "Reset controller during init and cleanup."); +enum i8042_controller_reset_mode { + I8042_RESET_NEVER, + I8042_RESET_ALWAYS, + I8042_RESET_ON_S2RAM, +#define I8042_RESET_DEFAULT I8042_RESET_ON_S2RAM +}; +static enum i8042_controller_reset_mode i8042_reset = I8042_RESET_DEFAULT; +static int i8042_set_reset(const char *val, const struct kernel_param *kp) +{ + enum i8042_controller_reset_mode *arg = kp->arg; + int error; + bool reset; + + if (val) { + error = kstrtobool(val, &reset); + if (error) + return error; + } else { + reset = true; + } + + *arg = reset ? I8042_RESET_ALWAYS : I8042_RESET_NEVER; + return 0; +} + +static const struct kernel_param_ops param_ops_reset_param = { + .flags = KERNEL_PARAM_OPS_FL_NOARG, + .set = i8042_set_reset, +}; +#define param_check_reset_param(name, p) \ + __param_check(name, p, enum i8042_controller_reset_mode) +module_param_named(reset, i8042_reset, reset_param, 0); +MODULE_PARM_DESC(reset, "Reset controller on resume, cleanup or both"); static bool i8042_direct; module_param_named(direct, i8042_direct, bool, 0); @@ -563,7 +593,7 @@ if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) { i8042_ctr &= ~I8042_CTR_KBDINT; i8042_ctr |= I8042_CTR_KBDDIS; - pr_err("Failed to enable KBD port\n"); + pr_info("Failed to enable KBD port\n"); return -EIO; } @@ -582,7 +612,7 @@ if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) { i8042_ctr &= ~I8042_CTR_AUXINT; i8042_ctr |= I8042_CTR_AUXDIS; - pr_err("Failed to enable AUX port\n"); + pr_info("Failed to enable AUX port\n"); return -EIO; } @@ -674,7 +704,7 @@ i8042_ctr &= ~I8042_CTR_AUXINT; if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) { - pr_err("Failed to disable AUX port, can't use MUX\n"); + pr_info("Failed to disable AUX port, can't use MUX\n"); return -EIO; } @@ -897,7 +927,7 @@ do { if (i8042_command(¶m, I8042_CMD_CTL_TEST)) { - pr_err("i8042 controller selftest timeout\n"); + pr_info("i8042 controller selftest timeout\n"); return -ENODEV; } @@ -919,7 +949,7 @@ pr_info("giving up on controller selftest, continuing anyway...\n"); return 0; #else - pr_err("i8042 controller selftest failed\n"); + pr_info("i8042 controller selftest failed\n"); return -EIO; #endif } @@ -1019,7 +1049,7 @@ * Reset the controller and reset CRT to the original value set by BIOS. */ -static void i8042_controller_reset(bool force_reset) +static void i8042_controller_reset(bool s2r_wants_reset) { i8042_flush(); @@ -1044,8 +1074,10 @@ * Reset the controller if requested. */ - if (i8042_reset || force_reset) + if (i8042_reset == I8042_RESET_ALWAYS || + (i8042_reset == I8042_RESET_ON_S2RAM && s2r_wants_reset)) { i8042_controller_selftest(); + } /* * Restore the original control register setting. @@ -1110,7 +1142,7 @@ * before suspending. */ -static int i8042_controller_resume(bool force_reset) +static int i8042_controller_resume(bool s2r_wants_reset) { int error; @@ -1118,7 +1150,8 @@ if (error) return error; - if (i8042_reset || force_reset) { + if (i8042_reset == I8042_RESET_ALWAYS || + (i8042_reset == I8042_RESET_ON_S2RAM && s2r_wants_reset)) { error = i8042_controller_selftest(); if (error) return error; @@ -1195,7 +1228,7 @@ static int i8042_pm_resume(struct device *dev) { - bool force_reset; + bool want_reset; int i; for (i = 0; i < I8042_NUM_PORTS; i++) { @@ -1218,9 +1251,9 @@ * off control to the platform firmware, otherwise we can simply restore * the mode. */ - force_reset = pm_resume_via_firmware(); + want_reset = pm_resume_via_firmware(); - return i8042_controller_resume(force_reset); + return i8042_controller_resume(want_reset); } static int i8042_pm_thaw(struct device *dev) @@ -1482,7 +1515,7 @@ i8042_platform_device = dev; - if (i8042_reset) { + if (i8042_reset == I8042_RESET_ALWAYS) { error = i8042_controller_selftest(); if (error) return error; --- linux-4.8.0.orig/drivers/iommu/amd_iommu.c +++ linux-4.8.0/drivers/iommu/amd_iommu.c @@ -1654,6 +1654,9 @@ free_pagetable(&dom->domain); + if (dom->domain.id) + domain_id_free(dom->domain.id); + kfree(dom); } --- linux-4.8.0.orig/drivers/iommu/dmar.c +++ linux-4.8.0/drivers/iommu/dmar.c @@ -338,7 +338,9 @@ struct pci_dev *pdev = to_pci_dev(data); struct dmar_pci_notify_info *info; - /* Only care about add/remove events for physical functions */ + /* Only care about add/remove events for physical functions. + * For VFs we actually do the lookup based on the corresponding + * PF in device_to_iommu() anyway. */ if (pdev->is_virtfn) return NOTIFY_DONE; if (action != BUS_NOTIFY_ADD_DEVICE && --- linux-4.8.0.orig/drivers/iommu/intel-iommu.c +++ linux-4.8.0/drivers/iommu/intel-iommu.c @@ -892,7 +892,13 @@ return NULL; if (dev_is_pci(dev)) { + struct pci_dev *pf_pdev; + pdev = to_pci_dev(dev); + /* VFs aren't listed in scope tables; we need to look up + * the PF instead to find the IOMMU. */ + pf_pdev = pci_physfn(pdev); + dev = &pf_pdev->dev; segment = pci_domain_nr(pdev->bus); } else if (has_acpi_companion(dev)) dev = &ACPI_COMPANION(dev)->dev; @@ -905,6 +911,13 @@ for_each_active_dev_scope(drhd->devices, drhd->devices_cnt, i, tmp) { if (tmp == dev) { + /* For a VF use its original BDF# not that of the PF + * which we used for the IOMMU lookup. Strictly speaking + * we could do this for all PCI devices; we only need to + * get the BDF# from the scope table for ACPI matches. */ + if (pdev->is_virtfn) + goto got_pdev; + *bus = drhd->devices[i].bus; *devfn = drhd->devices[i].devfn; goto out; @@ -1711,6 +1724,7 @@ if (!iommu->domains || !iommu->domain_ids) return; +again: spin_lock_irqsave(&device_domain_lock, flags); list_for_each_entry_safe(info, tmp, &device_domain_list, global) { struct dmar_domain *domain; @@ -1723,10 +1737,19 @@ domain = info->domain; - dmar_remove_one_dev_info(domain, info->dev); + __dmar_remove_one_dev_info(info); - if (!domain_type_is_vm_or_si(domain)) + if (!domain_type_is_vm_or_si(domain)) { + /* + * The domain_exit() function can't be called under + * device_domain_lock, as it takes this lock itself. + * So release the lock here and re-run the loop + * afterwards. + */ + spin_unlock_irqrestore(&device_domain_lock, flags); domain_exit(domain); + goto again; + } } spin_unlock_irqrestore(&device_domain_lock, flags); --- linux-4.8.0.orig/drivers/iommu/intel-svm.c +++ linux-4.8.0/drivers/iommu/intel-svm.c @@ -39,10 +39,18 @@ struct page *pages; int order; - order = ecap_pss(iommu->ecap) + 7 - PAGE_SHIFT; - if (order < 0) - order = 0; + /* Start at 2 because it's defined as 2^(1+PSS) */ + iommu->pasid_max = 2 << ecap_pss(iommu->ecap); + /* Eventually I'm promised we will get a multi-level PASID table + * and it won't have to be physically contiguous. Until then, + * limit the size because 8MiB contiguous allocations can be hard + * to come by. The limit of 0x20000, which is 1MiB for each of + * the PASID and PASID-state tables, is somewhat arbitrary. */ + if (iommu->pasid_max > 0x20000) + iommu->pasid_max = 0x20000; + + order = get_order(sizeof(struct pasid_entry) * iommu->pasid_max); pages = alloc_pages(GFP_KERNEL | __GFP_ZERO, order); if (!pages) { pr_warn("IOMMU: %s: Failed to allocate PASID table\n", @@ -53,6 +61,8 @@ pr_info("%s: Allocated order %d PASID table.\n", iommu->name, order); if (ecap_dis(iommu->ecap)) { + /* Just making it explicit... */ + BUILD_BUG_ON(sizeof(struct pasid_entry) != sizeof(struct pasid_state_entry)); pages = alloc_pages(GFP_KERNEL | __GFP_ZERO, order); if (pages) iommu->pasid_state_table = page_address(pages); @@ -68,11 +78,7 @@ int intel_svm_free_pasid_tables(struct intel_iommu *iommu) { - int order; - - order = ecap_pss(iommu->ecap) + 7 - PAGE_SHIFT; - if (order < 0) - order = 0; + int order = get_order(sizeof(struct pasid_entry) * iommu->pasid_max); if (iommu->pasid_table) { free_pages((unsigned long)iommu->pasid_table, order); @@ -371,8 +377,8 @@ } svm->iommu = iommu; - if (pasid_max > 2 << ecap_pss(iommu->ecap)) - pasid_max = 2 << ecap_pss(iommu->ecap); + if (pasid_max > iommu->pasid_max) + pasid_max = iommu->pasid_max; /* Do not use PASID 0 in caching mode (virtualised IOMMU) */ ret = idr_alloc(&iommu->pasid_idr, svm, --- linux-4.8.0.orig/drivers/iommu/io-pgtable-arm-v7s.c +++ linux-4.8.0/drivers/iommu/io-pgtable-arm-v7s.c @@ -633,6 +633,10 @@ { struct arm_v7s_io_pgtable *data; +#ifdef PHYS_OFFSET + if (upper_32_bits(PHYS_OFFSET)) + return NULL; +#endif if (cfg->ias > ARM_V7S_ADDR_BITS || cfg->oas > ARM_V7S_ADDR_BITS) return NULL; --- linux-4.8.0.orig/drivers/irqchip/Kconfig +++ linux-4.8.0/drivers/irqchip/Kconfig @@ -39,6 +39,7 @@ bool depends on PCI depends on PCI_MSI + select ACPI_IORT if ACPI config ARM_NVIC bool --- linux-4.8.0.orig/drivers/irqchip/irq-eznps.c +++ linux-4.8.0/drivers/irqchip/irq-eznps.c @@ -85,7 +85,7 @@ nps_ack_gic(); } -static void nps400_irq_eoi(struct irq_data *irqd) +static void nps400_irq_ack(struct irq_data *irqd) { unsigned int __maybe_unused irq = irqd_to_hwirq(irqd); @@ -103,7 +103,7 @@ .name = "NPS400 IC", .irq_mask = nps400_irq_mask, .irq_unmask = nps400_irq_unmask, - .irq_eoi = nps400_irq_eoi, + .irq_ack = nps400_irq_ack, }; static int nps400_irq_map(struct irq_domain *d, unsigned int virq, --- linux-4.8.0.orig/drivers/irqchip/irq-gic-v3-its-pci-msi.c +++ linux-4.8.0/drivers/irqchip/irq-gic-v3-its-pci-msi.c @@ -15,6 +15,7 @@ * along with this program. If not, see . */ +#include #include #include #include @@ -106,34 +107,91 @@ {}, }; -static int __init its_pci_msi_init(void) +static int __init its_pci_msi_init_one(struct fwnode_handle *handle, + const char *name) { - struct device_node *np; struct irq_domain *parent; + parent = irq_find_matching_fwnode(handle, DOMAIN_BUS_NEXUS); + if (!parent || !msi_get_domain_info(parent)) { + pr_err("%s: Unable to locate ITS domain\n", name); + return -ENXIO; + } + + if (!pci_msi_create_irq_domain(handle, &its_pci_msi_domain_info, + parent)) { + pr_err("%s: Unable to create PCI domain\n", name); + return -ENOMEM; + } + + return 0; +} + +static int __init its_pci_of_msi_init(void) +{ + struct device_node *np; + for (np = of_find_matching_node(NULL, its_device_id); np; np = of_find_matching_node(np, its_device_id)) { if (!of_property_read_bool(np, "msi-controller")) continue; - parent = irq_find_matching_host(np, DOMAIN_BUS_NEXUS); - if (!parent || !msi_get_domain_info(parent)) { - pr_err("%s: unable to locate ITS domain\n", - np->full_name); - continue; - } - - if (!pci_msi_create_irq_domain(of_node_to_fwnode(np), - &its_pci_msi_domain_info, - parent)) { - pr_err("%s: unable to create PCI domain\n", - np->full_name); + if (its_pci_msi_init_one(of_node_to_fwnode(np), np->full_name)) continue; - } pr_info("PCI/MSI: %s domain created\n", np->full_name); } return 0; } + +#ifdef CONFIG_ACPI + +static int __init +its_pci_msi_parse_madt(struct acpi_subtable_header *header, + const unsigned long end) +{ + struct acpi_madt_generic_translator *its_entry; + struct fwnode_handle *dom_handle; + const char *node_name; + int err = -ENXIO; + + its_entry = (struct acpi_madt_generic_translator *)header; + node_name = kasprintf(GFP_KERNEL, "ITS@0x%lx", + (long)its_entry->base_address); + dom_handle = iort_find_domain_token(its_entry->translation_id); + if (!dom_handle) { + pr_err("%s: Unable to locate ITS domain handle\n", node_name); + goto out; + } + + err = its_pci_msi_init_one(dom_handle, node_name); + if (!err) + pr_info("PCI/MSI: %s domain created\n", node_name); + +out: + kfree(node_name); + return err; +} + +static int __init its_pci_acpi_msi_init(void) +{ + acpi_table_parse_madt(ACPI_MADT_TYPE_GENERIC_TRANSLATOR, + its_pci_msi_parse_madt, 0); + return 0; +} +#else +static int __init its_pci_acpi_msi_init(void) +{ + return 0; +} +#endif + +static int __init its_pci_msi_init(void) +{ + its_pci_of_msi_init(); + its_pci_acpi_msi_init(); + + return 0; +} early_initcall(its_pci_msi_init); --- linux-4.8.0.orig/drivers/irqchip/irq-gic-v3-its.c +++ linux-4.8.0/drivers/irqchip/irq-gic-v3-its.c @@ -15,10 +15,13 @@ * along with this program. If not, see . */ +#include #include #include #include #include +#include +#include #include #include #include @@ -75,7 +78,7 @@ raw_spinlock_t lock; struct list_head entry; void __iomem *base; - unsigned long phys_base; + phys_addr_t phys_base; struct its_cmd_block *cmd_base; struct its_cmd_block *cmd_write; struct its_baser tables[GITS_BASER_NR_REGS]; @@ -115,6 +118,7 @@ static LIST_HEAD(its_nodes); static DEFINE_SPINLOCK(its_lock); static struct rdists *gic_rdists; +static struct irq_domain *its_parent; #define gic_data_rdist() (raw_cpu_ptr(gic_rdists->rdist)) #define gic_data_rdist_rd_base() (gic_data_rdist()->rd_base) @@ -1437,6 +1441,11 @@ fwspec.param[0] = GIC_IRQ_TYPE_LPI; fwspec.param[1] = hwirq; fwspec.param[2] = IRQ_TYPE_EDGE_RISING; + } else if (is_fwnode_irqchip(domain->parent->fwnode)) { + fwspec.fwnode = domain->parent->fwnode; + fwspec.param_count = 2; + fwspec.param[0] = hwirq; + fwspec.param[1] = IRQ_TYPE_EDGE_RISING; } else { return -EINVAL; } @@ -1614,44 +1623,59 @@ gic_enable_quirks(iidr, its_quirks, its); } -static int __init its_probe(struct device_node *node, - struct irq_domain *parent) +static int its_init_domain(struct fwnode_handle *handle, struct its_node *its) +{ + struct irq_domain *inner_domain; + struct msi_domain_info *info; + + info = kzalloc(sizeof(*info), GFP_KERNEL); + if (!info) + return -ENOMEM; + + inner_domain = irq_domain_create_tree(handle, &its_domain_ops, its); + if (!inner_domain) { + kfree(info); + return -ENOMEM; + } + + inner_domain->parent = its_parent; + inner_domain->bus_token = DOMAIN_BUS_NEXUS; + info->ops = &its_msi_domain_ops; + info->data = its; + inner_domain->host_data = info; + + return 0; +} + +static int __init its_probe_one(struct resource *res, + struct fwnode_handle *handle, int numa_node) { - struct resource res; struct its_node *its; void __iomem *its_base; - struct irq_domain *inner_domain; u32 val; u64 baser, tmp; int err; - err = of_address_to_resource(node, 0, &res); - if (err) { - pr_warn("%s: no regs?\n", node->full_name); - return -ENXIO; - } - - its_base = ioremap(res.start, resource_size(&res)); + its_base = ioremap(res->start, resource_size(res)); if (!its_base) { - pr_warn("%s: unable to map registers\n", node->full_name); + pr_warn("ITS@%pa: Unable to map ITS registers\n", &res->start); return -ENOMEM; } val = readl_relaxed(its_base + GITS_PIDR2) & GIC_PIDR2_ARCH_MASK; if (val != 0x30 && val != 0x40) { - pr_warn("%s: no ITS detected, giving up\n", node->full_name); + pr_warn("ITS@%pa: No ITS detected, giving up\n", &res->start); err = -ENODEV; goto out_unmap; } err = its_force_quiescent(its_base); if (err) { - pr_warn("%s: failed to quiesce, giving up\n", - node->full_name); + pr_warn("ITS@%pa: Failed to quiesce, giving up\n", &res->start); goto out_unmap; } - pr_info("ITS: %s\n", node->full_name); + pr_info("ITS %pR\n", res); its = kzalloc(sizeof(*its), GFP_KERNEL); if (!its) { @@ -1663,9 +1687,9 @@ INIT_LIST_HEAD(&its->entry); INIT_LIST_HEAD(&its->its_device_list); its->base = its_base; - its->phys_base = res.start; + its->phys_base = res->start; its->ite_size = ((readl_relaxed(its_base + GITS_TYPER) >> 4) & 0xf) + 1; - its->numa_node = of_node_to_nid(node); + its->numa_node = numa_node; its->cmd_base = kzalloc(ITS_CMD_QUEUE_SZ, GFP_KERNEL); if (!its->cmd_base) { @@ -1712,28 +1736,9 @@ writeq_relaxed(0, its->base + GITS_CWRITER); writel_relaxed(GITS_CTLR_ENABLE, its->base + GITS_CTLR); - if (of_property_read_bool(node, "msi-controller")) { - struct msi_domain_info *info; - - info = kzalloc(sizeof(*info), GFP_KERNEL); - if (!info) { - err = -ENOMEM; - goto out_free_tables; - } - - inner_domain = irq_domain_add_tree(node, &its_domain_ops, its); - if (!inner_domain) { - err = -ENOMEM; - kfree(info); - goto out_free_tables; - } - - inner_domain->parent = parent; - inner_domain->bus_token = DOMAIN_BUS_NEXUS; - info->ops = &its_msi_domain_ops; - info->data = its; - inner_domain->host_data = info; - } + err = its_init_domain(handle, its); + if (err) + goto out_free_tables; spin_lock(&its_lock); list_add(&its->entry, &its_nodes); @@ -1749,7 +1754,7 @@ kfree(its); out_unmap: iounmap(its_base); - pr_err("ITS: failed probing %s (%d)\n", node->full_name, err); + pr_err("ITS@%pa: failed probing (%d)\n", &res->start, err); return err; } @@ -1777,16 +1782,92 @@ {}, }; -int __init its_init(struct device_node *node, struct rdists *rdists, - struct irq_domain *parent_domain) +static int __init its_of_probe(struct device_node *node) { struct device_node *np; + struct resource res; for (np = of_find_matching_node(node, its_device_id); np; np = of_find_matching_node(np, its_device_id)) { - its_probe(np, parent_domain); + if (!of_property_read_bool(np, "msi-controller")) { + pr_warn("%s: no msi-controller property, ITS ignored\n", + np->full_name); + continue; + } + + if (of_address_to_resource(np, 0, &res)) { + pr_warn("%s: no regs?\n", np->full_name); + continue; + } + + its_probe_one(&res, &np->fwnode, of_node_to_nid(np)); + } + return 0; +} + +#ifdef CONFIG_ACPI + +#define ACPI_GICV3_ITS_MEM_SIZE (SZ_128K) + +static int __init gic_acpi_parse_madt_its(struct acpi_subtable_header *header, + const unsigned long end) +{ + struct acpi_madt_generic_translator *its_entry; + struct fwnode_handle *dom_handle; + struct resource res; + int err; + + its_entry = (struct acpi_madt_generic_translator *)header; + memset(&res, 0, sizeof(res)); + res.start = its_entry->base_address; + res.end = its_entry->base_address + ACPI_GICV3_ITS_MEM_SIZE - 1; + res.flags = IORESOURCE_MEM; + + dom_handle = irq_domain_alloc_fwnode((void *)its_entry->base_address); + if (!dom_handle) { + pr_err("ITS@%pa: Unable to allocate GICv3 ITS domain token\n", + &res.start); + return -ENOMEM; + } + + err = iort_register_domain_token(its_entry->translation_id, dom_handle); + if (err) { + pr_err("ITS@%pa: Unable to register GICv3 ITS domain token (ITS ID %d) to IORT\n", + &res.start, its_entry->translation_id); + goto dom_err; } + err = its_probe_one(&res, dom_handle, NUMA_NO_NODE); + if (!err) + return 0; + + iort_deregister_domain_token(its_entry->translation_id); +dom_err: + irq_domain_free_fwnode(dom_handle); + return err; +} + +static void __init its_acpi_probe(void) +{ + acpi_table_parse_madt(ACPI_MADT_TYPE_GENERIC_TRANSLATOR, + gic_acpi_parse_madt_its, 0); +} +#else +static void __init its_acpi_probe(void) { } +#endif + +int __init its_init(struct fwnode_handle *handle, struct rdists *rdists, + struct irq_domain *parent_domain) +{ + struct device_node *of_node; + + its_parent = parent_domain; + of_node = to_of_node(handle); + if (of_node) + its_of_probe(of_node); + else + its_acpi_probe(); + if (list_empty(&its_nodes)) { pr_warn("ITS: No ITS available, not enabling LPIs\n"); return -ENXIO; --- linux-4.8.0.orig/drivers/irqchip/irq-gic-v3.c +++ linux-4.8.0/drivers/irqchip/irq-gic-v3.c @@ -153,7 +153,7 @@ return; /* No PM support in this redistributor */ } - while (count--) { + while (--count) { val = readl_relaxed(rbase + GICR_WAKER); if (enable ^ (bool)(val & GICR_WAKER_ChildrenAsleep)) break; @@ -911,7 +911,6 @@ u64 redist_stride, struct fwnode_handle *handle) { - struct device_node *node; u32 typer; int gic_irqs; int err; @@ -952,10 +951,8 @@ set_handle_irq(gic_handle_irq); - node = to_of_node(handle); - if (IS_ENABLED(CONFIG_ARM_GIC_V3_ITS) && gic_dist_supports_lpis() && - node) /* Temp hack to prevent ITS init for ACPI */ - its_init(node, &gic_data.rdists, gic_data.domain); + if (IS_ENABLED(CONFIG_ARM_GIC_V3_ITS) && gic_dist_supports_lpis()) + its_init(handle, &gic_data.rdists, gic_data.domain); gic_smp_init(); gic_dist_init(); --- linux-4.8.0.orig/drivers/leds/Kconfig +++ linux-4.8.0/drivers/leds/Kconfig @@ -246,7 +246,6 @@ tristate "Common Driver for TI/National LP5521/5523/55231/5562/8501" depends on LEDS_LP5521 || LEDS_LP5523 || LEDS_LP5562 || LEDS_LP8501 select FW_LOADER - select FW_LOADER_USER_HELPER help This option supports common operations for LP5521/5523/55231/5562/8501 devices. --- linux-4.8.0.orig/drivers/md/bcache/super.c +++ linux-4.8.0/drivers/md/bcache/super.c @@ -1958,7 +1958,7 @@ sb); if (IS_ERR(bdev)) { if (bdev == ERR_PTR(-EBUSY)) { - bdev = lookup_bdev(strim(path)); + bdev = lookup_bdev(strim(path), 0); mutex_lock(&bch_register_lock); if (!IS_ERR(bdev) && bch_is_open(bdev)) err = "device already registered"; --- linux-4.8.0.orig/drivers/md/dm-crypt.c +++ linux-4.8.0/drivers/md/dm-crypt.c @@ -113,8 +113,7 @@ * and encrypts / decrypts at the same time. */ enum flags { DM_CRYPT_SUSPENDED, DM_CRYPT_KEY_VALID, - DM_CRYPT_SAME_CPU, DM_CRYPT_NO_OFFLOAD, - DM_CRYPT_EXIT_THREAD}; + DM_CRYPT_SAME_CPU, DM_CRYPT_NO_OFFLOAD }; /* * The fields in here must be read only after initialization. @@ -1207,18 +1206,20 @@ if (!RB_EMPTY_ROOT(&cc->write_tree)) goto pop_from_list; - if (unlikely(test_bit(DM_CRYPT_EXIT_THREAD, &cc->flags))) { - spin_unlock_irq(&cc->write_thread_wait.lock); - break; - } - - __set_current_state(TASK_INTERRUPTIBLE); + set_current_state(TASK_INTERRUPTIBLE); __add_wait_queue(&cc->write_thread_wait, &wait); spin_unlock_irq(&cc->write_thread_wait.lock); + if (unlikely(kthread_should_stop())) { + set_task_state(current, TASK_RUNNING); + remove_wait_queue(&cc->write_thread_wait, &wait); + break; + } + schedule(); + set_task_state(current, TASK_RUNNING); spin_lock_irq(&cc->write_thread_wait.lock); __remove_wait_queue(&cc->write_thread_wait, &wait); goto continue_locked; @@ -1502,12 +1503,15 @@ if (!cc->key_size && strcmp(key, "-")) goto out; + /* clear the flag since following operations may invalidate previously valid key */ + clear_bit(DM_CRYPT_KEY_VALID, &cc->flags); + if (cc->key_size && crypt_decode_key(cc->key, key, cc->key_size) < 0) goto out; - set_bit(DM_CRYPT_KEY_VALID, &cc->flags); - r = crypt_setkey_allcpus(cc); + if (!r) + set_bit(DM_CRYPT_KEY_VALID, &cc->flags); out: /* Hex key string not needed after here, so wipe it. */ @@ -1533,13 +1537,8 @@ if (!cc) return; - if (cc->write_thread) { - spin_lock_irq(&cc->write_thread_wait.lock); - set_bit(DM_CRYPT_EXIT_THREAD, &cc->flags); - wake_up_locked(&cc->write_thread_wait); - spin_unlock_irq(&cc->write_thread_wait.lock); + if (cc->write_thread) kthread_stop(cc->write_thread); - } if (cc->io_queue) destroy_workqueue(cc->io_queue); --- linux-4.8.0.orig/drivers/md/dm-flakey.c +++ linux-4.8.0/drivers/md/dm-flakey.c @@ -200,11 +200,13 @@ if (!(fc->up_interval + fc->down_interval)) { ti->error = "Total (up + down) interval is zero"; + r = -EINVAL; goto bad; } if (fc->up_interval + fc->down_interval < fc->up_interval) { ti->error = "Interval overflow"; + r = -EINVAL; goto bad; } --- linux-4.8.0.orig/drivers/md/dm-mpath.c +++ linux-4.8.0/drivers/md/dm-mpath.c @@ -1521,10 +1521,10 @@ { struct pgpath *pgpath = container_of(work, struct pgpath, activate_path.work); + struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev); - if (pgpath->is_active) - scsi_dh_activate(bdev_get_queue(pgpath->path.dev->bdev), - pg_init_done, pgpath); + if (pgpath->is_active && !blk_queue_dying(q)) + scsi_dh_activate(q, pg_init_done, pgpath); else pg_init_done(pgpath, SCSI_DH_DEV_OFFLINED); } --- linux-4.8.0.orig/drivers/md/dm-raid.c +++ linux-4.8.0/drivers/md/dm-raid.c @@ -266,7 +266,7 @@ {"raid10_offset", "raid10 offset (striped mirrors)", 0, 2, 10, ALGORITHM_RAID10_OFFSET}, {"raid10_near", "raid10 near (striped mirrors)", 0, 2, 10, ALGORITHM_RAID10_NEAR}, {"raid10", "raid10 (striped mirrors)", 0, 2, 10, ALGORITHM_RAID10_DEFAULT}, - {"raid4", "raid4 (dedicated last parity disk)", 1, 2, 4, ALGORITHM_PARITY_N}, /* raid4 layout = raid5_n */ + {"raid4", "raid4 (dedicated first parity disk)", 1, 2, 5, ALGORITHM_PARITY_0}, /* raid4 layout = raid5_0 */ {"raid5_n", "raid5 (dedicated last parity disk)", 1, 2, 5, ALGORITHM_PARITY_N}, {"raid5_ls", "raid5 (left symmetric)", 1, 2, 5, ALGORITHM_LEFT_SYMMETRIC}, {"raid5_rs", "raid5 (right symmetric)", 1, 2, 5, ALGORITHM_RIGHT_SYMMETRIC}, @@ -2087,11 +2087,11 @@ /* * No takeover/reshaping, because we don't have the extended v1.9.0 metadata */ - if (le32_to_cpu(sb->level) != mddev->level) { + if (le32_to_cpu(sb->level) != mddev->new_level) { DMERR("Reshaping/takeover raid sets not yet supported. (raid level/stripes/size change)"); return -EINVAL; } - if (le32_to_cpu(sb->layout) != mddev->layout) { + if (le32_to_cpu(sb->layout) != mddev->new_layout) { DMERR("Reshaping raid sets not yet supported. (raid layout change)"); DMERR(" 0x%X vs 0x%X", le32_to_cpu(sb->layout), mddev->layout); DMERR(" Old layout: %s w/ %d copies", @@ -2102,7 +2102,7 @@ raid10_md_layout_to_copies(mddev->layout)); return -EINVAL; } - if (le32_to_cpu(sb->stripe_sectors) != mddev->chunk_sectors) { + if (le32_to_cpu(sb->stripe_sectors) != mddev->new_chunk_sectors) { DMERR("Reshaping raid sets not yet supported. (stripe sectors change)"); return -EINVAL; } @@ -2115,6 +2115,8 @@ return -EINVAL; } + DMINFO("Discovered old metadata format; upgrading to extended metadata format"); + /* Table line is checked vs. authoritative superblock */ rs_set_new(rs); } @@ -2258,7 +2260,8 @@ if (!mddev->events && super_init_validation(rs, rdev)) return -EINVAL; - if (le32_to_cpu(sb->compat_features) != FEATURE_FLAG_SUPPORTS_V190) { + if (le32_to_cpu(sb->compat_features) && + le32_to_cpu(sb->compat_features) != FEATURE_FLAG_SUPPORTS_V190) { rs->ti->error = "Unable to assemble array: Unknown flag(s) in compatible feature flags"; return -EINVAL; } @@ -2991,6 +2994,9 @@ } } + /* Disable/enable discard support on raid set. */ + configure_discard_support(rs); + mddev_unlock(&rs->md); return 0; @@ -3577,12 +3583,6 @@ if (test_bit(RT_FLAG_UPDATE_SBS, &rs->runtime_flags)) rs_update_sbs(rs); - /* - * Disable/enable discard support on raid set after any - * conversion, because devices can have been added - */ - configure_discard_support(rs); - /* Load the bitmap from disk unless raid0 */ r = __load_dirty_region_bitmap(rs); if (r) @@ -3646,7 +3646,7 @@ static struct target_type raid_target = { .name = "raid", - .version = {1, 9, 0}, + .version = {1, 9, 1}, .module = THIS_MODULE, .ctr = raid_ctr, .dtr = raid_dtr, --- linux-4.8.0.orig/drivers/md/dm-raid1.c +++ linux-4.8.0/drivers/md/dm-raid1.c @@ -1292,6 +1292,7 @@ dm_bio_restore(bd, bio); bio_record->details.bi_bdev = NULL; + bio->bi_error = 0; queue_bio(ms, bio, rw); return DM_ENDIO_INCOMPLETE; --- linux-4.8.0.orig/drivers/md/dm-rq.c +++ linux-4.8.0/drivers/md/dm-rq.c @@ -73,15 +73,24 @@ spin_unlock_irqrestore(q->queue_lock, flags); } +static void dm_mq_start_queue(struct request_queue *q) +{ + unsigned long flags; + + spin_lock_irqsave(q->queue_lock, flags); + queue_flag_clear(QUEUE_FLAG_STOPPED, q); + spin_unlock_irqrestore(q->queue_lock, flags); + + blk_mq_start_stopped_hw_queues(q, true); + blk_mq_kick_requeue_list(q); +} + void dm_start_queue(struct request_queue *q) { if (!q->mq_ops) dm_old_start_queue(q); - else { - queue_flag_clear_unlocked(QUEUE_FLAG_STOPPED, q); - blk_mq_start_stopped_hw_queues(q, true); - blk_mq_kick_requeue_list(q); - } + else + dm_mq_start_queue(q); } static void dm_old_stop_queue(struct request_queue *q) @@ -209,6 +218,9 @@ */ static void rq_completed(struct mapped_device *md, int rw, bool run_queue) { + struct request_queue *q = md->queue; + unsigned long flags; + atomic_dec(&md->pending[rw]); /* nudge anyone waiting on suspend queue */ @@ -221,8 +233,11 @@ * back into ->request_fn() could deadlock attempting to grab the * queue lock again. */ - if (!md->queue->mq_ops && run_queue) - blk_run_queue_async(md->queue); + if (!q->mq_ops && run_queue) { + spin_lock_irqsave(q->queue_lock, flags); + blk_run_queue_async(q); + spin_unlock_irqrestore(q->queue_lock, flags); + } /* * dm_put() must be at the end of this function. See the comment above @@ -826,8 +841,11 @@ init_kthread_worker(&md->kworker); md->kworker_task = kthread_run(kthread_worker_fn, &md->kworker, "kdmwork-%s", dm_device_name(md)); - if (IS_ERR(md->kworker_task)) - return PTR_ERR(md->kworker_task); + if (IS_ERR(md->kworker_task)) { + int error = PTR_ERR(md->kworker_task); + md->kworker_task = NULL; + return error; + } elv_register_queue(md->queue); --- linux-4.8.0.orig/drivers/md/dm-table.c +++ linux-4.8.0/drivers/md/dm-table.c @@ -375,7 +375,7 @@ dev_t uninitialized_var(dev); struct block_device *bdev; - bdev = lookup_bdev(path); + bdev = lookup_bdev(path, 0); if (IS_ERR(bdev)) dev = name_to_dev_t(path); else { @@ -695,37 +695,32 @@ tgt->type = dm_get_target_type(type); if (!tgt->type) { - DMERR("%s: %s: unknown target type", dm_device_name(t->md), - type); + DMERR("%s: %s: unknown target type", dm_device_name(t->md), type); return -EINVAL; } if (dm_target_needs_singleton(tgt->type)) { if (t->num_targets) { - DMERR("%s: target type %s must appear alone in table", - dm_device_name(t->md), type); - return -EINVAL; + tgt->error = "singleton target type must appear alone in table"; + goto bad; } t->singleton = true; } if (dm_target_always_writeable(tgt->type) && !(t->mode & FMODE_WRITE)) { - DMERR("%s: target type %s may not be included in read-only tables", - dm_device_name(t->md), type); - return -EINVAL; + tgt->error = "target type may not be included in a read-only table"; + goto bad; } if (t->immutable_target_type) { if (t->immutable_target_type != tgt->type) { - DMERR("%s: immutable target type %s cannot be mixed with other target types", - dm_device_name(t->md), t->immutable_target_type->name); - return -EINVAL; + tgt->error = "immutable target type cannot be mixed with other target types"; + goto bad; } } else if (dm_target_is_immutable(tgt->type)) { if (t->num_targets) { - DMERR("%s: immutable target type %s cannot be mixed with other target types", - dm_device_name(t->md), tgt->type->name); - return -EINVAL; + tgt->error = "immutable target type cannot be mixed with other target types"; + goto bad; } t->immutable_target_type = tgt->type; } @@ -740,7 +735,6 @@ */ if (!adjoin(t, tgt)) { tgt->error = "Gap in table"; - r = -EINVAL; goto bad; } @@ -930,12 +924,6 @@ BUG_ON(!request_based); /* No targets in this table */ - if (list_empty(devices) && __table_type_request_based(live_md_type)) { - /* inherit live MD type */ - t->type = live_md_type; - return 0; - } - /* * The only way to establish DM_TYPE_MQ_REQUEST_BASED is by * having a compatible target use dm_table_set_type. @@ -954,6 +942,19 @@ return -EINVAL; } + if (list_empty(devices)) { + int srcu_idx; + struct dm_table *live_table = dm_get_live_table(t->md, &srcu_idx); + + /* inherit live table's type and all_blk_mq */ + if (live_table) { + t->type = live_table->type; + t->all_blk_mq = live_table->all_blk_mq; + } + dm_put_live_table(t->md, srcu_idx); + return 0; + } + /* Non-request-stackable devices can't be used for request-based dm */ list_for_each_entry(dd, devices, list) { struct request_queue *q = bdev_get_queue(dd->dm_dev->bdev); @@ -980,6 +981,11 @@ t->all_blk_mq = true; } + if (t->type == DM_TYPE_MQ_REQUEST_BASED && !t->all_blk_mq) { + DMERR("table load rejected: all devices are not blk-mq request-stackable"); + return -EINVAL; + } + return 0; } --- linux-4.8.0.orig/drivers/md/dm.c +++ linux-4.8.0/drivers/md/dm.c @@ -1423,8 +1423,6 @@ if (md->bs) bioset_free(md->bs); - cleanup_srcu_struct(&md->io_barrier); - if (md->disk) { spin_lock(&_minor_lock); md->disk->private_data = NULL; @@ -1436,6 +1434,8 @@ if (md->queue) blk_cleanup_queue(md->queue); + cleanup_srcu_struct(&md->io_barrier); + if (md->bdev) { bdput(md->bdev); md->bdev = NULL; @@ -1873,6 +1873,7 @@ static void __dm_destroy(struct mapped_device *md, bool wait) { + struct request_queue *q = dm_get_md_queue(md); struct dm_table *map; int srcu_idx; @@ -1883,6 +1884,10 @@ set_bit(DMF_FREEING, &md->flags); spin_unlock(&_minor_lock); + spin_lock_irq(q->queue_lock); + queue_flag_set(QUEUE_FLAG_DYING, q); + spin_unlock_irq(q->queue_lock); + if (dm_request_based(md) && md->kworker_task) flush_kthread_worker(&md->kworker); @@ -2249,10 +2254,11 @@ int dm_resume(struct mapped_device *md) { - int r = -EINVAL; + int r; struct dm_table *map = NULL; retry: + r = -EINVAL; mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING); if (!dm_suspended_md(md)) @@ -2276,8 +2282,6 @@ goto out; clear_bit(DMF_SUSPENDED, &md->flags); - - r = 0; out: mutex_unlock(&md->suspend_lock); --- linux-4.8.0.orig/drivers/md/md.c +++ linux-4.8.0/drivers/md/md.c @@ -8120,14 +8120,14 @@ if (!test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery) && !test_bit(MD_RECOVERY_INTR, &mddev->recovery) && - mddev->curr_resync > 2) { + mddev->curr_resync > 3) { mddev->curr_resync_completed = mddev->curr_resync; sysfs_notify(&mddev->kobj, NULL, "sync_completed"); } mddev->pers->sync_request(mddev, max_sectors, &skipped); if (!test_bit(MD_RECOVERY_CHECK, &mddev->recovery) && - mddev->curr_resync > 2) { + mddev->curr_resync > 3) { if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) { if (test_bit(MD_RECOVERY_INTR, &mddev->recovery)) { if (mddev->curr_resync >= mddev->recovery_cp) { --- linux-4.8.0.orig/drivers/md/persistent-data/dm-space-map-metadata.c +++ linux-4.8.0/drivers/md/persistent-data/dm-space-map-metadata.c @@ -775,17 +775,15 @@ memcpy(&smm->sm, &bootstrap_ops, sizeof(smm->sm)); r = sm_ll_new_metadata(&smm->ll, tm); + if (!r) { + if (nr_blocks > DM_SM_METADATA_MAX_BLOCKS) + nr_blocks = DM_SM_METADATA_MAX_BLOCKS; + r = sm_ll_extend(&smm->ll, nr_blocks); + } + memcpy(&smm->sm, &ops, sizeof(smm->sm)); if (r) return r; - if (nr_blocks > DM_SM_METADATA_MAX_BLOCKS) - nr_blocks = DM_SM_METADATA_MAX_BLOCKS; - r = sm_ll_extend(&smm->ll, nr_blocks); - if (r) - return r; - - memcpy(&smm->sm, &ops, sizeof(smm->sm)); - /* * Now we need to update the newly created data structures with the * allocated blocks that they were built from. --- linux-4.8.0.orig/drivers/md/raid1.c +++ linux-4.8.0/drivers/md/raid1.c @@ -407,11 +407,14 @@ struct bio *to_put = NULL; int mirror = find_bio_disk(r1_bio, bio); struct md_rdev *rdev = conf->mirrors[mirror].rdev; + bool discard_error; + + discard_error = bio->bi_error && bio_op(bio) == REQ_OP_DISCARD; /* * 'one mirror IO has finished' event handler: */ - if (bio->bi_error) { + if (bio->bi_error && !discard_error) { set_bit(WriteErrorSeen, &rdev->flags); if (!test_and_set_bit(WantReplacement, &rdev->flags)) set_bit(MD_RECOVERY_NEEDED, & @@ -448,7 +451,7 @@ /* Maybe we can clear some bad blocks. */ if (is_badblock(rdev, r1_bio->sector, r1_bio->sectors, - &first_bad, &bad_sectors)) { + &first_bad, &bad_sectors) && !discard_error) { r1_bio->bios[mirror] = IO_MADE_GOOD; set_bit(R1BIO_MadeGood, &r1_bio->state); } --- linux-4.8.0.orig/drivers/md/raid10.c +++ linux-4.8.0/drivers/md/raid10.c @@ -447,6 +447,9 @@ struct r10conf *conf = r10_bio->mddev->private; int slot, repl; struct md_rdev *rdev = NULL; + bool discard_error; + + discard_error = bio->bi_error && bio_op(bio) == REQ_OP_DISCARD; dev = find_bio_disk(conf, r10_bio, bio, &slot, &repl); @@ -460,7 +463,7 @@ /* * this branch is our 'one mirror IO has finished' event handler: */ - if (bio->bi_error) { + if (bio->bi_error && !discard_error) { if (repl) /* Never record new bad blocks to replacement, * just fail it. @@ -503,7 +506,7 @@ if (is_badblock(rdev, r10_bio->devs[slot].addr, r10_bio->sectors, - &first_bad, &bad_sectors)) { + &first_bad, &bad_sectors) && !discard_error) { bio_put(bio); if (repl) r10_bio->devs[slot].repl_bio = IO_MADE_GOOD; --- linux-4.8.0.orig/drivers/md/raid5.c +++ linux-4.8.0/drivers/md/raid5.c @@ -7017,6 +7017,15 @@ stripe = (stripe | (stripe-1)) + 1; mddev->queue->limits.discard_alignment = stripe; mddev->queue->limits.discard_granularity = stripe; + + /* + * We use 16-bit counter of active stripes in bi_phys_segments + * (minus one for over-loaded initialization) + */ + blk_queue_max_hw_sectors(mddev->queue, 0xfffe * STRIPE_SECTORS); + blk_queue_max_discard_sectors(mddev->queue, + 0xfffe * STRIPE_SECTORS); + /* * unaligned part of discard request will be ignored, so can't * guarantee discard_zeroes_data --- linux-4.8.0.orig/drivers/media/dvb-frontends/mb86a20s.c +++ linux-4.8.0/drivers/media/dvb-frontends/mb86a20s.c @@ -71,25 +71,27 @@ }; static struct regdata mb86a20s_init2[] = { - { 0x28, 0x22 }, { 0x29, 0x00 }, { 0x2a, 0x1f }, { 0x2b, 0xf0 }, + { 0x50, 0xd1 }, { 0x51, 0x22 }, + { 0x39, 0x01 }, + { 0x71, 0x00 }, { 0x3b, 0x21 }, - { 0x3c, 0x38 }, + { 0x3c, 0x3a }, { 0x01, 0x0d }, - { 0x04, 0x08 }, { 0x05, 0x03 }, + { 0x04, 0x08 }, { 0x05, 0x05 }, { 0x04, 0x0e }, { 0x05, 0x00 }, - { 0x04, 0x0f }, { 0x05, 0x37 }, - { 0x04, 0x0b }, { 0x05, 0x78 }, + { 0x04, 0x0f }, { 0x05, 0x14 }, + { 0x04, 0x0b }, { 0x05, 0x8c }, { 0x04, 0x00 }, { 0x05, 0x00 }, - { 0x04, 0x01 }, { 0x05, 0x1e }, - { 0x04, 0x02 }, { 0x05, 0x07 }, - { 0x04, 0x03 }, { 0x05, 0xd0 }, + { 0x04, 0x01 }, { 0x05, 0x07 }, + { 0x04, 0x02 }, { 0x05, 0x0f }, + { 0x04, 0x03 }, { 0x05, 0xa0 }, { 0x04, 0x09 }, { 0x05, 0x00 }, { 0x04, 0x0a }, { 0x05, 0xff }, - { 0x04, 0x27 }, { 0x05, 0x00 }, + { 0x04, 0x27 }, { 0x05, 0x64 }, { 0x04, 0x28 }, { 0x05, 0x00 }, - { 0x04, 0x1e }, { 0x05, 0x00 }, - { 0x04, 0x29 }, { 0x05, 0x64 }, - { 0x04, 0x32 }, { 0x05, 0x02 }, + { 0x04, 0x1e }, { 0x05, 0xff }, + { 0x04, 0x29 }, { 0x05, 0x0a }, + { 0x04, 0x32 }, { 0x05, 0x0a }, { 0x04, 0x14 }, { 0x05, 0x02 }, { 0x04, 0x04 }, { 0x05, 0x00 }, { 0x04, 0x05 }, { 0x05, 0x22 }, @@ -97,8 +99,6 @@ { 0x04, 0x07 }, { 0x05, 0xd8 }, { 0x04, 0x12 }, { 0x05, 0x00 }, { 0x04, 0x13 }, { 0x05, 0xff }, - { 0x04, 0x15 }, { 0x05, 0x4e }, - { 0x04, 0x16 }, { 0x05, 0x20 }, /* * On this demod, when the bit count reaches the count below, @@ -152,42 +152,36 @@ { 0x50, 0x51 }, { 0x51, 0x04 }, /* MER symbol 4 */ { 0x45, 0x04 }, /* CN symbol 4 */ { 0x48, 0x04 }, /* CN manual mode */ - + { 0x50, 0xd5 }, { 0x51, 0x01 }, { 0x50, 0xd6 }, { 0x51, 0x1f }, { 0x50, 0xd2 }, { 0x51, 0x03 }, - { 0x50, 0xd7 }, { 0x51, 0xbf }, - { 0x28, 0x74 }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0xff }, - { 0x28, 0x46 }, { 0x29, 0x00 }, { 0x2a, 0x1a }, { 0x2b, 0x0c }, - - { 0x04, 0x40 }, { 0x05, 0x00 }, - { 0x28, 0x00 }, { 0x2b, 0x08 }, - { 0x28, 0x05 }, { 0x2b, 0x00 }, + { 0x50, 0xd7 }, { 0x51, 0x3f }, { 0x1c, 0x01 }, - { 0x28, 0x06 }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x1f }, - { 0x28, 0x07 }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x18 }, - { 0x28, 0x08 }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x12 }, - { 0x28, 0x09 }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x30 }, - { 0x28, 0x0a }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x37 }, - { 0x28, 0x0b }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x02 }, - { 0x28, 0x0c }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x09 }, - { 0x28, 0x0d }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x06 }, - { 0x28, 0x0e }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x7b }, - { 0x28, 0x0f }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x76 }, - { 0x28, 0x10 }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x7d }, - { 0x28, 0x11 }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x08 }, - { 0x28, 0x12 }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x0b }, - { 0x28, 0x13 }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x00 }, - { 0x28, 0x14 }, { 0x29, 0x00 }, { 0x2a, 0x01 }, { 0x2b, 0xf2 }, - { 0x28, 0x15 }, { 0x29, 0x00 }, { 0x2a, 0x01 }, { 0x2b, 0xf3 }, - { 0x28, 0x16 }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x05 }, - { 0x28, 0x17 }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x16 }, - { 0x28, 0x18 }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x0f }, - { 0x28, 0x19 }, { 0x29, 0x00 }, { 0x2a, 0x07 }, { 0x2b, 0xef }, - { 0x28, 0x1a }, { 0x29, 0x00 }, { 0x2a, 0x07 }, { 0x2b, 0xd8 }, - { 0x28, 0x1b }, { 0x29, 0x00 }, { 0x2a, 0x07 }, { 0x2b, 0xf1 }, - { 0x28, 0x1c }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x3d }, - { 0x28, 0x1d }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x94 }, - { 0x28, 0x1e }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0xba }, + { 0x28, 0x06 }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x03 }, + { 0x28, 0x07 }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x0d }, + { 0x28, 0x08 }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x02 }, + { 0x28, 0x09 }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x01 }, + { 0x28, 0x0a }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x21 }, + { 0x28, 0x0b }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x29 }, + { 0x28, 0x0c }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x16 }, + { 0x28, 0x0d }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x31 }, + { 0x28, 0x0e }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x0e }, + { 0x28, 0x0f }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x4e }, + { 0x28, 0x10 }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x46 }, + { 0x28, 0x11 }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x0f }, + { 0x28, 0x12 }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x56 }, + { 0x28, 0x13 }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x35 }, + { 0x28, 0x14 }, { 0x29, 0x00 }, { 0x2a, 0x01 }, { 0x2b, 0xbe }, + { 0x28, 0x15 }, { 0x29, 0x00 }, { 0x2a, 0x01 }, { 0x2b, 0x84 }, + { 0x28, 0x16 }, { 0x29, 0x00 }, { 0x2a, 0x03 }, { 0x2b, 0xee }, + { 0x28, 0x17 }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x98 }, + { 0x28, 0x18 }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x9f }, + { 0x28, 0x19 }, { 0x29, 0x00 }, { 0x2a, 0x07 }, { 0x2b, 0xb2 }, + { 0x28, 0x1a }, { 0x29, 0x00 }, { 0x2a, 0x06 }, { 0x2b, 0xc2 }, + { 0x28, 0x1b }, { 0x29, 0x00 }, { 0x2a, 0x07 }, { 0x2b, 0x4a }, + { 0x28, 0x1c }, { 0x29, 0x00 }, { 0x2a, 0x01 }, { 0x2b, 0xbc }, + { 0x28, 0x1d }, { 0x29, 0x00 }, { 0x2a, 0x04 }, { 0x2b, 0xba }, + { 0x28, 0x1e }, { 0x29, 0x00 }, { 0x2a, 0x06 }, { 0x2b, 0x14 }, { 0x50, 0x1e }, { 0x51, 0x5d }, { 0x50, 0x22 }, { 0x51, 0x00 }, { 0x50, 0x23 }, { 0x51, 0xc8 }, @@ -196,9 +190,7 @@ { 0x50, 0x26 }, { 0x51, 0x00 }, { 0x50, 0x27 }, { 0x51, 0xc3 }, { 0x50, 0x39 }, { 0x51, 0x02 }, - { 0xec, 0x0f }, - { 0xeb, 0x1f }, - { 0x28, 0x6a }, { 0x29, 0x00 }, { 0x2a, 0x00 }, { 0x2b, 0x00 }, + { 0x50, 0xd5 }, { 0x51, 0x01 }, { 0xd0, 0x00 }, }; @@ -318,7 +310,11 @@ if (val >= 7) *status |= FE_HAS_SYNC; - if (val >= 8) /* Maybe 9? */ + /* + * Actually, on state S8, it starts receiving TS, but the TS + * output is only on normal state after the transition to S9. + */ + if (val >= 9) *status |= FE_HAS_LOCK; dev_dbg(&state->i2c->dev, "%s: Status = 0x%02x (state = %d)\n", @@ -2058,6 +2054,11 @@ kfree(state); } +static int mb86a20s_get_frontend_algo(struct dvb_frontend *fe) +{ + return DVBFE_ALGO_HW; +} + static struct dvb_frontend_ops mb86a20s_ops; struct dvb_frontend *mb86a20s_attach(const struct mb86a20s_config *config, @@ -2130,6 +2131,7 @@ .read_status = mb86a20s_read_status_and_stats, .read_signal_strength = mb86a20s_read_signal_strength_from_cache, .tune = mb86a20s_tune, + .get_frontend_algo = mb86a20s_get_frontend_algo, }; MODULE_DESCRIPTION("DVB Frontend module for Fujitsu mb86A20s hardware"); --- linux-4.8.0.orig/drivers/media/dvb-frontends/mn88472.c +++ linux-4.8.0/drivers/media/dvb-frontends/mn88472.c @@ -488,18 +488,6 @@ goto err_kfree; } - /* Check demod answers with correct chip id */ - ret = regmap_read(dev->regmap[0], 0xff, &utmp); - if (ret) - goto err_regmap_0_regmap_exit; - - dev_dbg(&client->dev, "chip id=%02x\n", utmp); - - if (utmp != 0x02) { - ret = -ENODEV; - goto err_regmap_0_regmap_exit; - } - /* * Chip has three I2C addresses for different register banks. Used * addresses are 0x18, 0x1a and 0x1c. We register two dummy clients, @@ -536,6 +524,18 @@ } i2c_set_clientdata(dev->client[2], dev); + /* Check demod answers with correct chip id */ + ret = regmap_read(dev->regmap[2], 0xff, &utmp); + if (ret) + goto err_regmap_2_regmap_exit; + + dev_dbg(&client->dev, "chip id=%02x\n", utmp); + + if (utmp != 0x02) { + ret = -ENODEV; + goto err_regmap_2_regmap_exit; + } + /* Sleep because chip is active by default */ ret = regmap_write(dev->regmap[2], 0x05, 0x3e); if (ret) --- linux-4.8.0.orig/drivers/media/dvb-frontends/mn88473.c +++ linux-4.8.0/drivers/media/dvb-frontends/mn88473.c @@ -485,18 +485,6 @@ goto err_kfree; } - /* Check demod answers with correct chip id */ - ret = regmap_read(dev->regmap[0], 0xff, &uitmp); - if (ret) - goto err_regmap_0_regmap_exit; - - dev_dbg(&client->dev, "chip id=%02x\n", uitmp); - - if (uitmp != 0x03) { - ret = -ENODEV; - goto err_regmap_0_regmap_exit; - } - /* * Chip has three I2C addresses for different register banks. Used * addresses are 0x18, 0x1a and 0x1c. We register two dummy clients, @@ -533,6 +521,18 @@ } i2c_set_clientdata(dev->client[2], dev); + /* Check demod answers with correct chip id */ + ret = regmap_read(dev->regmap[2], 0xff, &uitmp); + if (ret) + goto err_regmap_2_regmap_exit; + + dev_dbg(&client->dev, "chip id=%02x\n", uitmp); + + if (uitmp != 0x03) { + ret = -ENODEV; + goto err_regmap_2_regmap_exit; + } + /* Sleep because chip is active by default */ ret = regmap_write(dev->regmap[2], 0x05, 0x3e); if (ret) --- linux-4.8.0.orig/drivers/media/i2c/tvp5150.c +++ linux-4.8.0/drivers/media/i2c/tvp5150.c @@ -815,6 +815,7 @@ return 0; case V4L2_CID_HUE: tvp5150_write(sd, TVP5150_HUE_CTL, ctrl->val); + break; case V4L2_CID_TEST_PATTERN: decoder->enable = ctrl->val ? false : true; tvp5150_selmux(sd); --- linux-4.8.0.orig/drivers/media/pci/solo6x10/solo6x10.h +++ linux-4.8.0/drivers/media/pci/solo6x10/solo6x10.h @@ -284,7 +284,10 @@ static inline void solo_reg_write(struct solo_dev *solo_dev, int reg, u32 data) { + u16 val; + writel(data, solo_dev->reg_base + reg); + pci_read_config_word(solo_dev->pdev, PCI_STATUS, &val); } static inline void solo_irq_on(struct solo_dev *dev, u32 mask) --- linux-4.8.0.orig/drivers/media/platform/s5p-mfc/s5p_mfc.c +++ linux-4.8.0/drivers/media/platform/s5p-mfc/s5p_mfc.c @@ -1073,6 +1073,7 @@ idx); if (ret == 0) return child; + device_del(child); } put_device(child); --- linux-4.8.0.orig/drivers/media/platform/vsp1/vsp1_video.c +++ linux-4.8.0/drivers/media/platform/vsp1/vsp1_video.c @@ -675,6 +675,13 @@ unsigned long flags; int ret; + /* Clear the buffers ready flag to make sure the device won't be started + * by a QBUF on the video node on the other side of the pipeline. + */ + spin_lock_irqsave(&video->irqlock, flags); + pipe->buffers_ready &= ~(1 << video->pipe_index); + spin_unlock_irqrestore(&video->irqlock, flags); + mutex_lock(&pipe->lock); if (--pipe->stream_count == pipe->num_inputs) { /* Stop the pipeline. */ --- linux-4.8.0.orig/drivers/media/tuners/tuner-xc2028.c +++ linux-4.8.0/drivers/media/tuners/tuner-xc2028.c @@ -281,6 +281,14 @@ int i; tuner_dbg("%s called\n", __func__); + /* free allocated f/w string */ + if (priv->fname != firmware_name) + kfree(priv->fname); + priv->fname = NULL; + + priv->state = XC2028_NO_FIRMWARE; + memset(&priv->cur_fw, 0, sizeof(priv->cur_fw)); + if (!priv->firm) return; @@ -291,9 +299,6 @@ priv->firm = NULL; priv->firm_size = 0; - priv->state = XC2028_NO_FIRMWARE; - - memset(&priv->cur_fw, 0, sizeof(priv->cur_fw)); } static int load_all_firmwares(struct dvb_frontend *fe, @@ -884,9 +889,8 @@ return 0; fail: - priv->state = XC2028_NO_FIRMWARE; + free_firmware(priv); - memset(&priv->cur_fw, 0, sizeof(priv->cur_fw)); if (retry_count < 8) { msleep(50); retry_count++; @@ -1332,11 +1336,8 @@ mutex_lock(&xc2028_list_mutex); /* only perform final cleanup if this is the last instance */ - if (hybrid_tuner_report_instance_count(priv) == 1) { + if (hybrid_tuner_report_instance_count(priv) == 1) free_firmware(priv); - kfree(priv->ctrl.fname); - priv->ctrl.fname = NULL; - } if (priv) hybrid_tuner_release_state(priv); @@ -1399,19 +1400,8 @@ /* * Copy the config data. - * For the firmware name, keep a local copy of the string, - * in order to avoid troubles during device release. */ - kfree(priv->ctrl.fname); - priv->ctrl.fname = NULL; memcpy(&priv->ctrl, p, sizeof(priv->ctrl)); - if (p->fname) { - priv->ctrl.fname = kstrdup(p->fname, GFP_KERNEL); - if (priv->ctrl.fname == NULL) { - rc = -ENOMEM; - goto unlock; - } - } /* * If firmware name changed, frees firmware. As free_firmware will @@ -1426,10 +1416,15 @@ if (priv->state == XC2028_NO_FIRMWARE) { if (!firmware_name[0]) - priv->fname = priv->ctrl.fname; + priv->fname = kstrdup(p->fname, GFP_KERNEL); else priv->fname = firmware_name; + if (!priv->fname) { + rc = -ENOMEM; + goto unlock; + } + rc = request_firmware_nowait(THIS_MODULE, 1, priv->fname, priv->i2c_props.adap->dev.parent, --- linux-4.8.0.orig/drivers/media/usb/cx231xx/cx231xx-avcore.c +++ linux-4.8.0/drivers/media/usb/cx231xx/cx231xx-avcore.c @@ -1264,7 +1264,10 @@ dev->board.agc_analog_digital_select_gpio, analog_or_digital); - return status; + if (status < 0) + return status; + + return 0; } int cx231xx_enable_i2c_port_3(struct cx231xx *dev, bool is_port_3) --- linux-4.8.0.orig/drivers/media/usb/cx231xx/cx231xx-cards.c +++ linux-4.8.0/drivers/media/usb/cx231xx/cx231xx-cards.c @@ -486,7 +486,7 @@ .output_mode = OUT_MODE_VIP11, .demod_xfer_mode = 0, .ctl_pin_status_mask = 0xFFFFFFC4, - .agc_analog_digital_select_gpio = 0x00, /* According with PV cxPolaris.inf file */ + .agc_analog_digital_select_gpio = 0x1c, .tuner_sif_gpio = -1, .tuner_scl_gpio = -1, .tuner_sda_gpio = -1, --- linux-4.8.0.orig/drivers/media/usb/cx231xx/cx231xx-core.c +++ linux-4.8.0/drivers/media/usb/cx231xx/cx231xx-core.c @@ -712,6 +712,7 @@ break; case CX231XX_BOARD_CNXT_RDE_253S: case CX231XX_BOARD_CNXT_RDU_253S: + case CX231XX_BOARD_PV_PLAYTV_USB_HYBRID: errCode = cx231xx_set_agc_analog_digital_mux_select(dev, 1); break; case CX231XX_BOARD_HAUPPAUGE_EXETER: @@ -738,7 +739,7 @@ case CX231XX_BOARD_PV_PLAYTV_USB_HYBRID: case CX231XX_BOARD_HAUPPAUGE_USB2_FM_PAL: case CX231XX_BOARD_HAUPPAUGE_USB2_FM_NTSC: - errCode = cx231xx_set_agc_analog_digital_mux_select(dev, 0); + errCode = cx231xx_set_agc_analog_digital_mux_select(dev, 0); break; default: break; @@ -1301,15 +1302,29 @@ dev->i2c_bus[2].i2c_reserve = 0; /* register I2C buses */ - cx231xx_i2c_register(&dev->i2c_bus[0]); - cx231xx_i2c_register(&dev->i2c_bus[1]); - cx231xx_i2c_register(&dev->i2c_bus[2]); + errCode = cx231xx_i2c_register(&dev->i2c_bus[0]); + if (errCode < 0) + return errCode; + errCode = cx231xx_i2c_register(&dev->i2c_bus[1]); + if (errCode < 0) + return errCode; + errCode = cx231xx_i2c_register(&dev->i2c_bus[2]); + if (errCode < 0) + return errCode; errCode = cx231xx_i2c_mux_create(dev); + if (errCode < 0) { + dev_err(dev->dev, + "%s: Failed to create I2C mux\n", __func__); + return errCode; + } + errCode = cx231xx_i2c_mux_register(dev, 0); + if (errCode < 0) + return errCode; + + errCode = cx231xx_i2c_mux_register(dev, 1); if (errCode < 0) return errCode; - cx231xx_i2c_mux_register(dev, 0); - cx231xx_i2c_mux_register(dev, 1); /* scan the real bus segments in the order of physical port numbers */ cx231xx_do_i2c_scan(dev, I2C_0); --- linux-4.8.0.orig/drivers/media/usb/dvb-usb/dib0700_core.c +++ linux-4.8.0/drivers/media/usb/dvb-usb/dib0700_core.c @@ -677,7 +677,7 @@ struct dvb_usb_device *d = purb->context; struct dib0700_rc_response *poll_reply; enum rc_type protocol; - u32 uninitialized_var(keycode); + u32 keycode; u8 toggle; deb_info("%s()\n", __func__); @@ -719,7 +719,8 @@ poll_reply->nec.data == 0x00 && poll_reply->nec.not_data == 0xff) { poll_reply->data_state = 2; - break; + rc_repeat(d->rc_dev); + goto resubmit; } if ((poll_reply->nec.data ^ poll_reply->nec.not_data) != 0xff) { --- linux-4.8.0.orig/drivers/media/usb/uvc/uvc_driver.c +++ linux-4.8.0/drivers/media/usb/uvc/uvc_driver.c @@ -1595,6 +1595,114 @@ return buffer; } +static struct uvc_video_chain *uvc_alloc_chain(struct uvc_device *dev) +{ + struct uvc_video_chain *chain; + + chain = kzalloc(sizeof(*chain), GFP_KERNEL); + if (chain == NULL) + return NULL; + + INIT_LIST_HEAD(&chain->entities); + mutex_init(&chain->ctrl_mutex); + chain->dev = dev; + v4l2_prio_init(&chain->prio); + + return chain; +} + +/* + * Fallback heuristic for devices that don't connect units and terminals in a + * valid chain. + * + * Some devices have invalid baSourceID references, causing uvc_scan_chain() + * to fail, but if we just take the entities we can find and put them together + * in the most sensible chain we can think of, turns out they do work anyway. + * Note: This heuristic assumes there is a single chain. + * + * At the time of writing, devices known to have such a broken chain are + * - Acer Integrated Camera (5986:055a) + * - Realtek rtl157a7 (0bda:57a7) + */ +static int uvc_scan_fallback(struct uvc_device *dev) +{ + struct uvc_video_chain *chain; + struct uvc_entity *iterm = NULL; + struct uvc_entity *oterm = NULL; + struct uvc_entity *entity; + struct uvc_entity *prev; + + /* + * Start by locating the input and output terminals. We only support + * devices with exactly one of each for now. + */ + list_for_each_entry(entity, &dev->entities, list) { + if (UVC_ENTITY_IS_ITERM(entity)) { + if (iterm) + return -EINVAL; + iterm = entity; + } + + if (UVC_ENTITY_IS_OTERM(entity)) { + if (oterm) + return -EINVAL; + oterm = entity; + } + } + + if (iterm == NULL || oterm == NULL) + return -EINVAL; + + /* Allocate the chain and fill it. */ + chain = uvc_alloc_chain(dev); + if (chain == NULL) + return -ENOMEM; + + if (uvc_scan_chain_entity(chain, oterm) < 0) + goto error; + + prev = oterm; + + /* + * Add all Processing and Extension Units with two pads. The order + * doesn't matter much, use reverse list traversal to connect units in + * UVC descriptor order as we build the chain from output to input. This + * leads to units appearing in the order meant by the manufacturer for + * the cameras known to require this heuristic. + */ + list_for_each_entry_reverse(entity, &dev->entities, list) { + if (entity->type != UVC_VC_PROCESSING_UNIT && + entity->type != UVC_VC_EXTENSION_UNIT) + continue; + + if (entity->num_pads != 2) + continue; + + if (uvc_scan_chain_entity(chain, entity) < 0) + goto error; + + prev->baSourceID[0] = entity->id; + prev = entity; + } + + if (uvc_scan_chain_entity(chain, iterm) < 0) + goto error; + + prev->baSourceID[0] = iterm->id; + + list_add_tail(&chain->list, &dev->chains); + + uvc_trace(UVC_TRACE_PROBE, + "Found a video chain by fallback heuristic (%s).\n", + uvc_print_chain(chain)); + + return 0; + +error: + kfree(chain); + return -EINVAL; +} + /* * Scan the device for video chains and register video devices. * @@ -1617,15 +1725,10 @@ if (term->chain.next || term->chain.prev) continue; - chain = kzalloc(sizeof(*chain), GFP_KERNEL); + chain = uvc_alloc_chain(dev); if (chain == NULL) return -ENOMEM; - INIT_LIST_HEAD(&chain->entities); - mutex_init(&chain->ctrl_mutex); - chain->dev = dev; - v4l2_prio_init(&chain->prio); - term->flags |= UVC_ENTITY_FLAG_DEFAULT; if (uvc_scan_chain(chain, term) < 0) { @@ -1639,6 +1742,9 @@ list_add_tail(&chain->list, &dev->chains); } + if (list_empty(&dev->chains)) + uvc_scan_fallback(dev); + if (list_empty(&dev->chains)) { uvc_printk(KERN_INFO, "No valid video chain found.\n"); return -1; --- linux-4.8.0.orig/drivers/memstick/host/rtsx_usb_ms.c +++ linux-4.8.0/drivers/memstick/host/rtsx_usb_ms.c @@ -524,6 +524,7 @@ int rc; if (!host->req) { + pm_runtime_get_sync(ms_dev(host)); do { rc = memstick_next_req(msh, &host->req); dev_dbg(ms_dev(host), "next req %d\n", rc); @@ -544,6 +545,7 @@ host->req->error); } } while (!rc); + pm_runtime_put(ms_dev(host)); } } @@ -570,6 +572,7 @@ dev_dbg(ms_dev(host), "%s: param = %d, value = %d\n", __func__, param, value); + pm_runtime_get_sync(ms_dev(host)); mutex_lock(&ucr->dev_mutex); err = rtsx_usb_card_exclusive_check(ucr, RTSX_USB_MS_CARD); @@ -635,6 +638,7 @@ } out: mutex_unlock(&ucr->dev_mutex); + pm_runtime_put(ms_dev(host)); /* power-on delay */ if (param == MEMSTICK_POWER && value == MEMSTICK_POWER_ON) @@ -681,6 +685,7 @@ int err; for (;;) { + pm_runtime_get_sync(ms_dev(host)); mutex_lock(&ucr->dev_mutex); /* Check pending MS card changes */ @@ -703,6 +708,7 @@ } poll_again: + pm_runtime_put(ms_dev(host)); if (host->eject) break; --- linux-4.8.0.orig/drivers/mfd/Kconfig +++ linux-4.8.0/drivers/mfd/Kconfig @@ -1549,6 +1549,7 @@ config MFD_WM8350_I2C bool "Wolfson Microelectronics WM8350 with I2C" select MFD_WM8350 + select REGMAP_I2C depends on I2C=y help The WM8350 is an integrated audio and power management --- linux-4.8.0.orig/drivers/mfd/atmel-hlcdc.c +++ linux-4.8.0/drivers/mfd/atmel-hlcdc.c @@ -50,8 +50,9 @@ if (reg <= ATMEL_HLCDC_DIS) { u32 status; - readl_poll_timeout(hregmap->regs + ATMEL_HLCDC_SR, status, - !(status & ATMEL_HLCDC_SIP), 1, 100); + readl_poll_timeout_atomic(hregmap->regs + ATMEL_HLCDC_SR, + status, !(status & ATMEL_HLCDC_SIP), + 1, 100); } writel(val, hregmap->regs + reg); --- linux-4.8.0.orig/drivers/mfd/intel-lpss-acpi.c +++ linux-4.8.0/drivers/mfd/intel-lpss-acpi.c @@ -52,6 +52,18 @@ .properties = bxt_i2c_properties, }; +static struct property_entry apl_i2c_properties[] = { + PROPERTY_ENTRY_U32("i2c-sda-hold-time-ns", 207), + PROPERTY_ENTRY_U32("i2c-sda-falling-time-ns", 171), + PROPERTY_ENTRY_U32("i2c-scl-falling-time-ns", 208), + { }, +}; + +static const struct intel_lpss_platform_info apl_i2c_info = { + .clk_rate = 133000000, + .properties = apl_i2c_properties, +}; + static const struct acpi_device_id intel_lpss_acpi_ids[] = { /* SPT */ { "INT3446", (kernel_ulong_t)&spt_i2c_info }, @@ -61,7 +73,7 @@ { "80860ABC", (kernel_ulong_t)&bxt_info }, { "80860AC2", (kernel_ulong_t)&bxt_info }, /* APL */ - { "80865AAC", (kernel_ulong_t)&bxt_i2c_info }, + { "80865AAC", (kernel_ulong_t)&apl_i2c_info }, { "80865ABC", (kernel_ulong_t)&bxt_info }, { "80865AC2", (kernel_ulong_t)&bxt_info }, { } --- linux-4.8.0.orig/drivers/mfd/intel-lpss-pci.c +++ linux-4.8.0/drivers/mfd/intel-lpss-pci.c @@ -111,6 +111,18 @@ .properties = bxt_i2c_properties, }; +static struct property_entry apl_i2c_properties[] = { + PROPERTY_ENTRY_U32("i2c-sda-hold-time-ns", 207), + PROPERTY_ENTRY_U32("i2c-sda-falling-time-ns", 171), + PROPERTY_ENTRY_U32("i2c-scl-falling-time-ns", 208), + { }, +}; + +static const struct intel_lpss_platform_info apl_i2c_info = { + .clk_rate = 133000000, + .properties = apl_i2c_properties, +}; + static const struct pci_device_id intel_lpss_pci_ids[] = { /* BXT A-Step */ { PCI_VDEVICE(INTEL, 0x0aac), (kernel_ulong_t)&bxt_i2c_info }, @@ -146,14 +158,14 @@ { PCI_VDEVICE(INTEL, 0x1aee), (kernel_ulong_t)&bxt_uart_info }, /* APL */ - { PCI_VDEVICE(INTEL, 0x5aac), (kernel_ulong_t)&bxt_i2c_info }, - { PCI_VDEVICE(INTEL, 0x5aae), (kernel_ulong_t)&bxt_i2c_info }, - { PCI_VDEVICE(INTEL, 0x5ab0), (kernel_ulong_t)&bxt_i2c_info }, - { PCI_VDEVICE(INTEL, 0x5ab2), (kernel_ulong_t)&bxt_i2c_info }, - { PCI_VDEVICE(INTEL, 0x5ab4), (kernel_ulong_t)&bxt_i2c_info }, - { PCI_VDEVICE(INTEL, 0x5ab6), (kernel_ulong_t)&bxt_i2c_info }, - { PCI_VDEVICE(INTEL, 0x5ab8), (kernel_ulong_t)&bxt_i2c_info }, - { PCI_VDEVICE(INTEL, 0x5aba), (kernel_ulong_t)&bxt_i2c_info }, + { PCI_VDEVICE(INTEL, 0x5aac), (kernel_ulong_t)&apl_i2c_info }, + { PCI_VDEVICE(INTEL, 0x5aae), (kernel_ulong_t)&apl_i2c_info }, + { PCI_VDEVICE(INTEL, 0x5ab0), (kernel_ulong_t)&apl_i2c_info }, + { PCI_VDEVICE(INTEL, 0x5ab2), (kernel_ulong_t)&apl_i2c_info }, + { PCI_VDEVICE(INTEL, 0x5ab4), (kernel_ulong_t)&apl_i2c_info }, + { PCI_VDEVICE(INTEL, 0x5ab6), (kernel_ulong_t)&apl_i2c_info }, + { PCI_VDEVICE(INTEL, 0x5ab8), (kernel_ulong_t)&apl_i2c_info }, + { PCI_VDEVICE(INTEL, 0x5aba), (kernel_ulong_t)&apl_i2c_info }, { PCI_VDEVICE(INTEL, 0x5abc), (kernel_ulong_t)&bxt_uart_info }, { PCI_VDEVICE(INTEL, 0x5abe), (kernel_ulong_t)&bxt_uart_info }, { PCI_VDEVICE(INTEL, 0x5ac0), (kernel_ulong_t)&bxt_uart_info }, @@ -181,6 +193,16 @@ { PCI_VDEVICE(INTEL, 0xa160), (kernel_ulong_t)&spt_i2c_info }, { PCI_VDEVICE(INTEL, 0xa161), (kernel_ulong_t)&spt_i2c_info }, { PCI_VDEVICE(INTEL, 0xa166), (kernel_ulong_t)&spt_uart_info }, + /* KBL-H */ + { PCI_VDEVICE(INTEL, 0xa2a7), (kernel_ulong_t)&spt_uart_info }, + { PCI_VDEVICE(INTEL, 0xa2a8), (kernel_ulong_t)&spt_uart_info }, + { PCI_VDEVICE(INTEL, 0xa2a9), (kernel_ulong_t)&spt_info }, + { PCI_VDEVICE(INTEL, 0xa2aa), (kernel_ulong_t)&spt_info }, + { PCI_VDEVICE(INTEL, 0xa2e0), (kernel_ulong_t)&spt_i2c_info }, + { PCI_VDEVICE(INTEL, 0xa2e1), (kernel_ulong_t)&spt_i2c_info }, + { PCI_VDEVICE(INTEL, 0xa2e2), (kernel_ulong_t)&spt_i2c_info }, + { PCI_VDEVICE(INTEL, 0xa2e3), (kernel_ulong_t)&spt_i2c_info }, + { PCI_VDEVICE(INTEL, 0xa2e6), (kernel_ulong_t)&spt_uart_info }, { } }; MODULE_DEVICE_TABLE(pci, intel_lpss_pci_ids); --- linux-4.8.0.orig/drivers/mfd/intel-lpss.c +++ linux-4.8.0/drivers/mfd/intel-lpss.c @@ -502,9 +502,6 @@ for (i = 0; i < LPSS_PRIV_REG_COUNT; i++) lpss->priv_ctx[i] = readl(lpss->priv + i * 4); - /* Put the device into reset state */ - writel(0, lpss->priv + LPSS_PRIV_RESETS); - return 0; } EXPORT_SYMBOL_GPL(intel_lpss_suspend); --- linux-4.8.0.orig/drivers/mfd/mfd-core.c +++ linux-4.8.0/drivers/mfd/mfd-core.c @@ -399,6 +399,8 @@ clones[i]); } + put_device(dev); + return 0; } EXPORT_SYMBOL(mfd_clone_cell); --- linux-4.8.0.orig/drivers/mfd/rtsx_usb.c +++ linux-4.8.0/drivers/mfd/rtsx_usb.c @@ -46,9 +46,6 @@ dev_dbg(&ucr->pusb_intf->dev, "%s: sg transfer timed out", __func__); usb_sg_cancel(&ucr->current_sg); - - /* we know the cancellation is caused by time-out */ - ucr->current_sg.status = -ETIMEDOUT; } static int rtsx_usb_bulk_transfer_sglist(struct rtsx_ucr *ucr, @@ -67,12 +64,15 @@ ucr->sg_timer.expires = jiffies + msecs_to_jiffies(timeout); add_timer(&ucr->sg_timer); usb_sg_wait(&ucr->current_sg); - del_timer_sync(&ucr->sg_timer); + if (!del_timer_sync(&ucr->sg_timer)) + ret = -ETIMEDOUT; + else + ret = ucr->current_sg.status; if (act_len) *act_len = ucr->current_sg.bytes; - return ucr->current_sg.status; + return ret; } int rtsx_usb_transfer_data(struct rtsx_ucr *ucr, unsigned int pipe, --- linux-4.8.0.orig/drivers/mfd/stmpe.c +++ linux-4.8.0/drivers/mfd/stmpe.c @@ -761,6 +761,8 @@ if (ret < 0) return ret; + msleep(10); + timeout = jiffies + msecs_to_jiffies(100); while (time_before(jiffies, timeout)) { ret = __stmpe_reg_read(stmpe, STMPE1801_REG_SYS_CTRL); --- linux-4.8.0.orig/drivers/misc/cxl/api.c +++ linux-4.8.0/drivers/misc/cxl/api.c @@ -9,18 +9,119 @@ #include #include -#include #include #include -#include #include #include +#include +#include #include "cxl.h" +/* + * Since we want to track memory mappings to be able to force-unmap + * when the AFU is no longer reachable, we need an inode. For devices + * opened through the cxl user API, this is not a problem, but a + * userland process can also get a cxl fd through the cxl_get_fd() + * API, which is used by the cxlflash driver. + * + * Therefore we implement our own simple pseudo-filesystem and inode + * allocator. We don't use the anonymous inode, as we need the + * meta-data associated with it (address_space) and it is shared by + * other drivers/processes, so it could lead to cxl unmapping VMAs + * from random processes. + */ + +#define CXL_PSEUDO_FS_MAGIC 0x1697697f + +static int cxl_fs_cnt; +static struct vfsmount *cxl_vfs_mount; + +static const struct dentry_operations cxl_fs_dops = { + .d_dname = simple_dname, +}; + +static struct dentry *cxl_fs_mount(struct file_system_type *fs_type, int flags, + const char *dev_name, void *data) +{ + return mount_pseudo(fs_type, "cxl:", NULL, &cxl_fs_dops, + CXL_PSEUDO_FS_MAGIC); +} + +static struct file_system_type cxl_fs_type = { + .name = "cxl", + .owner = THIS_MODULE, + .mount = cxl_fs_mount, + .kill_sb = kill_anon_super, +}; + + +void cxl_release_mapping(struct cxl_context *ctx) +{ + if (ctx->kernelapi && ctx->mapping) + simple_release_fs(&cxl_vfs_mount, &cxl_fs_cnt); +} + +static struct file *cxl_getfile(const char *name, + const struct file_operations *fops, + void *priv, int flags) +{ + struct qstr this; + struct path path; + struct file *file; + struct inode *inode = NULL; + int rc; + + /* strongly inspired by anon_inode_getfile() */ + + if (fops->owner && !try_module_get(fops->owner)) + return ERR_PTR(-ENOENT); + + rc = simple_pin_fs(&cxl_fs_type, &cxl_vfs_mount, &cxl_fs_cnt); + if (rc < 0) { + pr_err("Cannot mount cxl pseudo filesystem: %d\n", rc); + file = ERR_PTR(rc); + goto err_module; + } + + inode = alloc_anon_inode(cxl_vfs_mount->mnt_sb); + if (IS_ERR(inode)) { + file = ERR_CAST(inode); + goto err_fs; + } + + file = ERR_PTR(-ENOMEM); + this.name = name; + this.len = strlen(name); + this.hash = 0; + path.dentry = d_alloc_pseudo(cxl_vfs_mount->mnt_sb, &this); + if (!path.dentry) + goto err_inode; + + path.mnt = mntget(cxl_vfs_mount); + d_instantiate(path.dentry, inode); + + file = alloc_file(&path, OPEN_FMODE(flags), fops); + if (IS_ERR(file)) + goto err_dput; + file->f_flags = flags & (O_ACCMODE | O_NONBLOCK); + file->private_data = priv; + + return file; + +err_dput: + path_put(&path); +err_inode: + iput(inode); +err_fs: + simple_release_fs(&cxl_vfs_mount, &cxl_fs_cnt); +err_module: + module_put(fops->owner); + return file; +} + struct cxl_context *cxl_dev_context_init(struct pci_dev *dev) { - struct address_space *mapping; struct cxl_afu *afu; struct cxl_context *ctx; int rc; @@ -37,28 +138,13 @@ ctx->kernelapi = true; - /* - * Make our own address space since we won't have one from the - * filesystem like the user api has, and even if we do associate a file - * with this context we don't want to use the global anonymous inode's - * address space as that can invalidate unrelated users: - */ - mapping = kmalloc(sizeof(struct address_space), GFP_KERNEL); - if (!mapping) { - rc = -ENOMEM; - goto err_ctx; - } - address_space_init_once(mapping); - /* Make it a slave context. We can promote it later? */ - rc = cxl_context_init(ctx, afu, false, mapping); + rc = cxl_context_init(ctx, afu, false); if (rc) - goto err_mapping; + goto err_ctx; return ctx; -err_mapping: - kfree(mapping); err_ctx: kfree(ctx); err_dev: @@ -229,6 +315,14 @@ if (ctx->status == STARTED) goto out; /* already started */ + /* + * Increment the mapped context count for adapter. This also checks + * if adapter_context_lock is taken. + */ + rc = cxl_adapter_context_get(ctx->afu->adapter); + if (rc) + goto out; + if (task) { ctx->pid = get_task_pid(task, PIDTYPE_PID); ctx->glpid = get_task_pid(task->group_leader, PIDTYPE_PID); @@ -239,7 +333,10 @@ cxl_ctx_get(); if ((rc = cxl_ops->attach_process(ctx, kernel, wed, 0))) { + put_pid(ctx->glpid); put_pid(ctx->pid); + ctx->glpid = ctx->pid = NULL; + cxl_adapter_context_put(ctx->afu->adapter); cxl_ctx_put(); goto out; } @@ -329,6 +426,11 @@ { struct file *file; int rc, flags, fdtmp; + char *name = NULL; + + /* only allow one per context */ + if (ctx->mapping) + return ERR_PTR(-EEXIST); flags = O_RDWR | O_CLOEXEC; @@ -352,12 +454,13 @@ } else /* use default ops */ fops = (struct file_operations *)&afu_fops; - file = anon_inode_getfile("cxl", fops, ctx, flags); + name = kasprintf(GFP_KERNEL, "cxl:%d", ctx->pe); + file = cxl_getfile(name, fops, ctx, flags); + kfree(name); if (IS_ERR(file)) goto err_fd; - file->f_mapping = ctx->mapping; - + cxl_context_set_mapping(ctx, file->f_mapping); *fd = fdtmp; return file; --- linux-4.8.0.orig/drivers/misc/cxl/context.c +++ linux-4.8.0/drivers/misc/cxl/context.c @@ -34,8 +34,7 @@ /* * Initialises a CXL context. */ -int cxl_context_init(struct cxl_context *ctx, struct cxl_afu *afu, bool master, - struct address_space *mapping) +int cxl_context_init(struct cxl_context *ctx, struct cxl_afu *afu, bool master) { int i; @@ -44,7 +43,7 @@ ctx->master = master; ctx->pid = ctx->glpid = NULL; /* Set in start work ioctl */ mutex_init(&ctx->mapping_lock); - ctx->mapping = mapping; + ctx->mapping = NULL; /* * Allocate the segment table before we put it in the IDR so that we @@ -114,6 +113,14 @@ return 0; } +void cxl_context_set_mapping(struct cxl_context *ctx, + struct address_space *mapping) +{ + mutex_lock(&ctx->mapping_lock); + ctx->mapping = mapping; + mutex_unlock(&ctx->mapping_lock); +} + static int cxl_mmap_fault(struct vm_area_struct *vma, struct vm_fault *vmf) { struct cxl_context *ctx = vma->vm_file->private_data; @@ -238,6 +245,9 @@ put_pid(ctx->glpid); cxl_ctx_put(); + + /* Decrease the attached context count on the adapter */ + cxl_adapter_context_put(ctx->afu->adapter); return 0; } @@ -297,8 +307,6 @@ if (ctx->ff_page) __free_page(ctx->ff_page); ctx->sstp = NULL; - if (ctx->kernelapi) - kfree(ctx->mapping); kfree(ctx->irq_bitmap); @@ -310,6 +318,8 @@ void cxl_context_free(struct cxl_context *ctx) { + if (ctx->kernelapi && ctx->mapping) + cxl_release_mapping(ctx); mutex_lock(&ctx->afu->contexts_lock); idr_remove(&ctx->afu->contexts_idr, ctx->pe); mutex_unlock(&ctx->afu->contexts_lock); --- linux-4.8.0.orig/drivers/misc/cxl/cxl.h +++ linux-4.8.0/drivers/misc/cxl/cxl.h @@ -162,7 +162,10 @@ #define CXL_PSL_SPAP_V 0x0000000000000001ULL /****** CXL_PSL_Control ****************************************************/ -#define CXL_PSL_Control_tb 0x0000000000000001ULL +#define CXL_PSL_Control_tb (0x1ull << (63-63)) +#define CXL_PSL_Control_Fr (0x1ull << (63-31)) +#define CXL_PSL_Control_Fs_MASK (0x3ull << (63-29)) +#define CXL_PSL_Control_Fs_Complete (0x3ull << (63-29)) /****** CXL_PSL_DLCNTL *****************************************************/ #define CXL_PSL_DLCNTL_D (0x1ull << (63-28)) @@ -615,6 +618,14 @@ bool perst_select_user; bool perst_same_image; bool psl_timebase_synced; + + /* + * number of contexts mapped on to this card. Possible values are: + * >0: Number of contexts mapped and new one can be mapped. + * 0: No active contexts and new ones can be mapped. + * -1: No contexts mapped and new ones cannot be mapped. + */ + atomic_t contexts_num; }; int cxl_pci_alloc_one_irq(struct cxl *adapter); @@ -806,8 +817,9 @@ void init_cxl_native(void); struct cxl_context *cxl_context_alloc(void); -int cxl_context_init(struct cxl_context *ctx, struct cxl_afu *afu, bool master, - struct address_space *mapping); +int cxl_context_init(struct cxl_context *ctx, struct cxl_afu *afu, bool master); +void cxl_context_set_mapping(struct cxl_context *ctx, + struct address_space *mapping); void cxl_context_free(struct cxl_context *ctx); int cxl_context_iomap(struct cxl_context *ctx, struct vm_area_struct *vma); unsigned int cxl_map_irq(struct cxl *adapter, irq_hw_number_t hwirq, @@ -854,6 +866,7 @@ int cxl_check_error(struct cxl_afu *afu); int cxl_afu_slbia(struct cxl_afu *afu); int cxl_tlb_slb_invalidate(struct cxl *adapter); +int cxl_data_cache_flush(struct cxl *adapter); int cxl_afu_disable(struct cxl_afu *afu); int cxl_psl_purge(struct cxl_afu *afu); @@ -865,6 +878,7 @@ void cxl_stop_trace(struct cxl *cxl); int cxl_pci_vphb_add(struct cxl_afu *afu); void cxl_pci_vphb_remove(struct cxl_afu *afu); +void cxl_release_mapping(struct cxl_context *ctx); extern struct pci_driver cxl_pci_driver; extern struct platform_driver cxl_of_driver; @@ -940,4 +954,20 @@ /* decode AFU error bits in the PSL register PSL_SERR_An */ void cxl_afu_decode_psl_serr(struct cxl_afu *afu, u64 serr); + +/* + * Increments the number of attached contexts on an adapter. + * In case an adapter_context_lock is taken the return -EBUSY. + */ +int cxl_adapter_context_get(struct cxl *adapter); + +/* Decrements the number of attached contexts on an adapter */ +void cxl_adapter_context_put(struct cxl *adapter); + +/* If no active contexts then prevents contexts from being attached */ +int cxl_adapter_context_lock(struct cxl *adapter); + +/* Unlock the contexts-lock if taken. Warn and force unlock otherwise */ +void cxl_adapter_context_unlock(struct cxl *adapter); + #endif --- linux-4.8.0.orig/drivers/misc/cxl/file.c +++ linux-4.8.0/drivers/misc/cxl/file.c @@ -86,9 +86,12 @@ goto err_put_afu; } - if ((rc = cxl_context_init(ctx, afu, master, inode->i_mapping))) + rc = cxl_context_init(ctx, afu, master); + if (rc) goto err_put_afu; + cxl_context_set_mapping(ctx, inode->i_mapping); + pr_devel("afu_open pe: %i\n", ctx->pe); file->private_data = ctx; cxl_ctx_get(); @@ -194,6 +197,16 @@ ctx->mmio_err_ff = !!(work.flags & CXL_START_WORK_ERR_FF); /* + * Increment the mapped context count for adapter. This also checks + * if adapter_context_lock is taken. + */ + rc = cxl_adapter_context_get(ctx->afu->adapter); + if (rc) { + afu_release_irqs(ctx, ctx); + goto out; + } + + /* * We grab the PID here and not in the file open to allow for the case * where a process (master, some daemon, etc) has opened the chardev on * behalf of another process, so the AFU's mm gets bound to the process @@ -205,11 +218,16 @@ ctx->pid = get_task_pid(current, PIDTYPE_PID); ctx->glpid = get_task_pid(current->group_leader, PIDTYPE_PID); + trace_cxl_attach(ctx, work.work_element_descriptor, work.num_interrupts, amr); if ((rc = cxl_ops->attach_process(ctx, false, work.work_element_descriptor, amr))) { afu_release_irqs(ctx, ctx); + cxl_adapter_context_put(ctx->afu->adapter); + put_pid(ctx->glpid); + put_pid(ctx->pid); + ctx->glpid = ctx->pid = NULL; goto out; } --- linux-4.8.0.orig/drivers/misc/cxl/guest.c +++ linux-4.8.0/drivers/misc/cxl/guest.c @@ -1152,6 +1152,9 @@ if ((rc = cxl_sysfs_adapter_add(adapter))) goto err_put1; + /* release the context lock as the adapter is configured */ + cxl_adapter_context_unlock(adapter); + return adapter; err_put1: --- linux-4.8.0.orig/drivers/misc/cxl/main.c +++ linux-4.8.0/drivers/misc/cxl/main.c @@ -243,8 +243,10 @@ if (dev_set_name(&adapter->dev, "card%i", adapter->adapter_num)) goto err2; - return adapter; + /* start with context lock taken */ + atomic_set(&adapter->contexts_num, -1); + return adapter; err2: cxl_remove_adapter_nr(adapter); err1: @@ -286,6 +288,44 @@ return 0; } +int cxl_adapter_context_get(struct cxl *adapter) +{ + int rc; + + rc = atomic_inc_unless_negative(&adapter->contexts_num); + return rc >= 0 ? 0 : -EBUSY; +} + +void cxl_adapter_context_put(struct cxl *adapter) +{ + atomic_dec_if_positive(&adapter->contexts_num); +} + +int cxl_adapter_context_lock(struct cxl *adapter) +{ + int rc; + /* no active contexts -> contexts_num == 0 */ + rc = atomic_cmpxchg(&adapter->contexts_num, 0, -1); + return rc ? -EBUSY : 0; +} + +void cxl_adapter_context_unlock(struct cxl *adapter) +{ + int val = atomic_cmpxchg(&adapter->contexts_num, -1, 0); + + /* + * contexts lock taken -> contexts_num == -1 + * If not true then show a warning and force reset the lock. + * This will happen when context_unlock was requested without + * doing a context_lock. + */ + if (val != -1) { + atomic_set(&adapter->contexts_num, 0); + WARN(1, "Adapter context unlocked with %d active contexts", + val); + } +} + static int __init init_cxl(void) { int rc = 0; --- linux-4.8.0.orig/drivers/misc/cxl/native.c +++ linux-4.8.0/drivers/misc/cxl/native.c @@ -290,6 +290,37 @@ return 0; } +int cxl_data_cache_flush(struct cxl *adapter) +{ + u64 reg; + unsigned long timeout = jiffies + (HZ * CXL_TIMEOUT); + + pr_devel("Flushing data cache\n"); + + reg = cxl_p1_read(adapter, CXL_PSL_Control); + reg |= CXL_PSL_Control_Fr; + cxl_p1_write(adapter, CXL_PSL_Control, reg); + + reg = cxl_p1_read(adapter, CXL_PSL_Control); + while ((reg & CXL_PSL_Control_Fs_MASK) != CXL_PSL_Control_Fs_Complete) { + if (time_after_eq(jiffies, timeout)) { + dev_warn(&adapter->dev, "WARNING: cache flush timed out!\n"); + return -EBUSY; + } + + if (!cxl_ops->link_ok(adapter, NULL)) { + dev_warn(&adapter->dev, "WARNING: link down when flushing cache\n"); + return -EIO; + } + cpu_relax(); + reg = cxl_p1_read(adapter, CXL_PSL_Control); + } + + reg &= ~CXL_PSL_Control_Fr; + cxl_p1_write(adapter, CXL_PSL_Control, reg); + return 0; +} + static int cxl_write_sstp(struct cxl_afu *afu, u64 sstp0, u64 sstp1) { int rc; --- linux-4.8.0.orig/drivers/misc/cxl/pci.c +++ linux-4.8.0/drivers/misc/cxl/pci.c @@ -1239,6 +1239,9 @@ dev_info(&dev->dev, "CXL reset\n"); + /* the adapter is about to be reset, so ignore errors */ + cxl_data_cache_flush(adapter); + /* pcie_warm_reset requests a fundamental pci reset which includes a * PERST assert/deassert. PERST triggers a loading of the image * if "user" or "factory" is selected in sysfs */ @@ -1484,6 +1487,8 @@ if ((rc = cxl_native_register_psl_err_irq(adapter))) goto err; + /* Release the context lock as adapter is configured */ + cxl_adapter_context_unlock(adapter); return 0; err: --- linux-4.8.0.orig/drivers/misc/cxl/sysfs.c +++ linux-4.8.0/drivers/misc/cxl/sysfs.c @@ -75,12 +75,31 @@ int val; rc = sscanf(buf, "%i", &val); - if ((rc != 1) || (val != 1)) + if ((rc != 1) || (val != 1 && val != -1)) return -EINVAL; - if ((rc = cxl_ops->adapter_reset(adapter))) - return rc; - return count; + /* + * See if we can lock the context mapping that's only allowed + * when there are no contexts attached to the adapter. Once + * taken this will also prevent any context from getting activated. + */ + if (val == 1) { + rc = cxl_adapter_context_lock(adapter); + if (rc) + goto out; + + rc = cxl_ops->adapter_reset(adapter); + /* In case reset failed release context lock */ + if (rc) + cxl_adapter_context_unlock(adapter); + + } else if (val == -1) { + /* Perform a forced adapter reset */ + rc = cxl_ops->adapter_reset(adapter); + } + +out: + return rc ? rc : count; } static ssize_t load_image_on_perst_show(struct device *device, --- linux-4.8.0.orig/drivers/misc/genwqe/card_utils.c +++ linux-4.8.0/drivers/misc/genwqe/card_utils.c @@ -352,17 +352,27 @@ if (copy_from_user(sgl->lpage, user_addr + user_size - sgl->lpage_size, sgl->lpage_size)) { rc = -EFAULT; - goto err_out1; + goto err_out2; } } return 0; + err_out2: + __genwqe_free_consistent(cd, PAGE_SIZE, sgl->lpage, + sgl->lpage_dma_addr); + sgl->lpage = NULL; + sgl->lpage_dma_addr = 0; err_out1: __genwqe_free_consistent(cd, PAGE_SIZE, sgl->fpage, sgl->fpage_dma_addr); + sgl->fpage = NULL; + sgl->fpage_dma_addr = 0; err_out: __genwqe_free_consistent(cd, sgl->sgl_size, sgl->sgl, sgl->sgl_dma_addr); + sgl->sgl = NULL; + sgl->sgl_dma_addr = 0; + sgl->sgl_size = 0; return -ENOMEM; } --- linux-4.8.0.orig/drivers/misc/mei/amthif.c +++ linux-4.8.0/drivers/misc/mei/amthif.c @@ -67,8 +67,12 @@ struct mei_cl *cl = &dev->iamthif_cl; int ret; - if (mei_cl_is_connected(cl)) - return 0; + mutex_lock(&dev->device_lock); + + if (mei_cl_is_connected(cl)) { + ret = 0; + goto out; + } dev->iamthif_state = MEI_IAMTHIF_IDLE; @@ -77,11 +81,13 @@ ret = mei_cl_link(cl); if (ret < 0) { dev_err(dev->dev, "amthif: failed cl_link %d\n", ret); - return ret; + goto out; } ret = mei_cl_connect(cl, me_cl, NULL); +out: + mutex_unlock(&dev->device_lock); return ret; } @@ -133,7 +139,7 @@ return -ERESTARTSYS; if (!mei_cl_is_connected(cl)) { - rets = -EBUSY; + rets = -ENODEV; goto out; } --- linux-4.8.0.orig/drivers/misc/mei/bus-fixup.c +++ linux-4.8.0/drivers/misc/mei/bus-fixup.c @@ -178,7 +178,7 @@ ret = 0; bytes_recv = __mei_cl_recv(cl, (u8 *)reply, if_version_length); - if (bytes_recv < 0 || bytes_recv < sizeof(struct mei_nfc_reply)) { + if (bytes_recv < if_version_length) { dev_err(bus->dev, "Could not read IF version\n"); ret = -EIO; goto err; --- linux-4.8.0.orig/drivers/misc/mei/bus.c +++ linux-4.8.0/drivers/misc/mei/bus.c @@ -142,7 +142,7 @@ mutex_lock(&bus->device_lock); if (!mei_cl_is_connected(cl)) { - rets = -EBUSY; + rets = -ENODEV; goto out; } } @@ -983,12 +983,10 @@ container_of(work, struct mei_device, bus_rescan_work); struct mei_me_client *me_cl; - mutex_lock(&bus->device_lock); me_cl = mei_me_cl_by_uuid(bus, &mei_amthif_guid); if (me_cl) mei_amthif_host_init(bus, me_cl); mei_me_cl_put(me_cl); - mutex_unlock(&bus->device_lock); mei_cl_bus_rescan(bus); } --- linux-4.8.0.orig/drivers/misc/mei/client.c +++ linux-4.8.0/drivers/misc/mei/client.c @@ -675,7 +675,7 @@ pm_runtime_mark_last_busy(dev->dev); dev_dbg(dev->dev, "rpm: autosuspend\n"); - pm_runtime_autosuspend(dev->dev); + pm_request_autosuspend(dev->dev); } /** --- linux-4.8.0.orig/drivers/misc/mei/hw-me-regs.h +++ linux-4.8.0/drivers/misc/mei/hw-me-regs.h @@ -122,9 +122,14 @@ #define MEI_DEV_ID_SPT_H 0xA13A /* Sunrise Point H */ #define MEI_DEV_ID_SPT_H_2 0xA13B /* Sunrise Point H 2 */ +#define MEI_DEV_ID_LBG 0xA1BA /* Lewisburg (SPT) */ + #define MEI_DEV_ID_BXT_M 0x1A9A /* Broxton M */ #define MEI_DEV_ID_APL_I 0x5A9A /* Apollo Lake I */ +#define MEI_DEV_ID_KBP 0xA2BA /* Kaby Point */ +#define MEI_DEV_ID_KBP_2 0xA2BB /* Kaby Point 2 */ + /* * MEI HW Section */ --- linux-4.8.0.orig/drivers/misc/mei/hw-txe.c +++ linux-4.8.0/drivers/misc/mei/hw-txe.c @@ -978,11 +978,13 @@ hisr = mei_txe_br_reg_read(hw, HISR_REG); aliveness = mei_txe_aliveness_get(dev); - if (hhisr & IPC_HHIER_SEC && aliveness) + if (hhisr & IPC_HHIER_SEC && aliveness) { ipc_isr = mei_txe_sec_reg_read_silent(hw, SEC_IPC_HOST_INT_STATUS_REG); - else + } else { ipc_isr = 0; + hhisr &= ~IPC_HHIER_SEC; + } generated = generated || (hisr & HISR_INT_STS_MSK) || --- linux-4.8.0.orig/drivers/misc/mei/main.c +++ linux-4.8.0/drivers/misc/mei/main.c @@ -202,7 +202,7 @@ mutex_lock(&dev->device_lock); if (!mei_cl_is_connected(cl)) { - rets = -EBUSY; + rets = -ENODEV; goto out; } } --- linux-4.8.0.orig/drivers/misc/mei/pci-me.c +++ linux-4.8.0/drivers/misc/mei/pci-me.c @@ -41,6 +41,9 @@ #include "hw-me-regs.h" #include "hw-me.h" +static bool disable_msi; +module_param(disable_msi, bool, 0); + /* mei_pci_tbl - PCI Device ID Table */ static const struct pci_device_id mei_me_pci_tbl[] = { {MEI_PCI_DEVICE(MEI_DEV_ID_82946GZ, mei_me_legacy_cfg)}, @@ -87,10 +90,14 @@ {MEI_PCI_DEVICE(MEI_DEV_ID_SPT_2, mei_me_pch8_cfg)}, {MEI_PCI_DEVICE(MEI_DEV_ID_SPT_H, mei_me_pch8_sps_cfg)}, {MEI_PCI_DEVICE(MEI_DEV_ID_SPT_H_2, mei_me_pch8_sps_cfg)}, + {MEI_PCI_DEVICE(MEI_DEV_ID_LBG, mei_me_pch8_cfg)}, {MEI_PCI_DEVICE(MEI_DEV_ID_BXT_M, mei_me_pch8_cfg)}, {MEI_PCI_DEVICE(MEI_DEV_ID_APL_I, mei_me_pch8_cfg)}, + {MEI_PCI_DEVICE(MEI_DEV_ID_KBP, mei_me_pch8_cfg)}, + {MEI_PCI_DEVICE(MEI_DEV_ID_KBP_2, mei_me_pch8_cfg)}, + /* required last entry */ {0, } }; @@ -187,7 +194,8 @@ err = -ENOMEM; goto free_device; } - pci_enable_msi(pdev); + if (!disable_msi) + pci_enable_msi(pdev); /* request and enable interrupt */ irqflags = pci_dev_msi_enabled(pdev) ? IRQF_ONESHOT : IRQF_SHARED; --- linux-4.8.0.orig/drivers/mmc/card/block.c +++ linux-4.8.0/drivers/mmc/card/block.c @@ -1778,7 +1778,7 @@ struct mmc_blk_data *md = mq->data; struct mmc_packed *packed = mqrq->packed; bool do_rel_wr, do_data_tag; - u32 *packed_cmd_hdr; + __le32 *packed_cmd_hdr; u8 hdr_blocks; u8 i = 1; @@ -2303,7 +2303,8 @@ set_capacity(md->disk, size); if (mmc_host_cmd23(card->host)) { - if (mmc_card_mmc(card) || + if ((mmc_card_mmc(card) && + card->csd.mmca_vsn >= CSD_SPEC_VER_3) || (mmc_card_sd(card) && card->scr.cmds & SD_SCR_CMD23_SUPPORT)) md->flags |= MMC_BLK_CMD23; --- linux-4.8.0.orig/drivers/mmc/card/queue.h +++ linux-4.8.0/drivers/mmc/card/queue.h @@ -31,7 +31,7 @@ struct mmc_packed { struct list_head list; - u32 cmd_hdr[1024]; + __le32 cmd_hdr[1024]; unsigned int blocks; u8 nr_entries; u8 retries; --- linux-4.8.0.orig/drivers/mmc/core/mmc.c +++ linux-4.8.0/drivers/mmc/core/mmc.c @@ -26,6 +26,8 @@ #include "mmc_ops.h" #include "sd_ops.h" +#define DEFAULT_CMD6_TIMEOUT_MS 500 + static const unsigned int tran_exp[] = { 10000, 100000, 1000000, 10000000, 0, 0, 0, 0 @@ -571,6 +573,7 @@ card->erased_byte = 0x0; /* eMMC v4.5 or later */ + card->ext_csd.generic_cmd6_time = DEFAULT_CMD6_TIMEOUT_MS; if (card->ext_csd.rev >= 6) { card->ext_csd.feature_support |= MMC_DISCARD_FEATURE; @@ -1259,6 +1262,16 @@ goto out_err; } + if (card->mmc_avail_type & EXT_CSD_CARD_TYPE_HS400_1_2V) + err = __mmc_set_signal_voltage(host, MMC_SIGNAL_VOLTAGE_120); + + if (err && card->mmc_avail_type & EXT_CSD_CARD_TYPE_HS400_1_8V) + err = __mmc_set_signal_voltage(host, MMC_SIGNAL_VOLTAGE_180); + + /* If fails try again during next card power cycle */ + if (err) + goto out_err; + err = mmc_select_bus_width(card); if (err < 0) goto out_err; --- linux-4.8.0.orig/drivers/mmc/host/dw_mmc-pltfm.c +++ linux-4.8.0/drivers/mmc/host/dw_mmc-pltfm.c @@ -46,12 +46,13 @@ host->pdata = pdev->dev.platform_data; regs = platform_get_resource(pdev, IORESOURCE_MEM, 0); - /* Get registers' physical base address */ - host->phy_regs = regs->start; host->regs = devm_ioremap_resource(&pdev->dev, regs); if (IS_ERR(host->regs)) return PTR_ERR(host->regs); + /* Get registers' physical base address */ + host->phy_regs = regs->start; + platform_set_drvdata(pdev, host); return dw_mci_probe(host); } --- linux-4.8.0.orig/drivers/mmc/host/mxs-mmc.c +++ linux-4.8.0/drivers/mmc/host/mxs-mmc.c @@ -661,13 +661,13 @@ platform_set_drvdata(pdev, mmc); + spin_lock_init(&host->lock); + ret = devm_request_irq(&pdev->dev, irq_err, mxs_mmc_irq_handler, 0, dev_name(&pdev->dev), host); if (ret) goto out_free_dma; - spin_lock_init(&host->lock); - ret = mmc_add_host(mmc); if (ret) goto out_free_dma; --- linux-4.8.0.orig/drivers/mmc/host/rtsx_usb_sdmmc.c +++ linux-4.8.0/drivers/mmc/host/rtsx_usb_sdmmc.c @@ -1138,11 +1138,6 @@ dev_dbg(sdmmc_dev(host), "%s\n", __func__); mutex_lock(&ucr->dev_mutex); - if (rtsx_usb_card_exclusive_check(ucr, RTSX_USB_SD_CARD)) { - mutex_unlock(&ucr->dev_mutex); - return; - } - sd_set_power_mode(host, ios->power_mode); sd_set_bus_width(host, ios->bus_width); sd_set_timing(host, ios->timing, &host->ddr_mode); @@ -1314,6 +1309,7 @@ container_of(work, struct rtsx_usb_sdmmc, led_work); struct rtsx_ucr *ucr = host->ucr; + pm_runtime_get_sync(sdmmc_dev(host)); mutex_lock(&ucr->dev_mutex); if (host->led.brightness == LED_OFF) @@ -1322,6 +1318,7 @@ rtsx_usb_turn_on_led(ucr); mutex_unlock(&ucr->dev_mutex); + pm_runtime_put(sdmmc_dev(host)); } #endif --- linux-4.8.0.orig/drivers/mmc/host/sdhci-msm.c +++ linux-4.8.0/drivers/mmc/host/sdhci-msm.c @@ -647,6 +647,7 @@ if (msm_host->pwr_irq < 0) { dev_err(&pdev->dev, "Get pwr_irq failed (%d)\n", msm_host->pwr_irq); + ret = msm_host->pwr_irq; goto clk_disable; } --- linux-4.8.0.orig/drivers/mmc/host/sdhci-of-esdhc.c +++ linux-4.8.0/drivers/mmc/host/sdhci-of-esdhc.c @@ -66,6 +66,20 @@ return ret; } } + /* + * The DAT[3:0] line signal levels and the CMD line signal level are + * not compatible with standard SDHC register. The line signal levels + * DAT[7:0] are at bits 31:24 and the command line signal level is at + * bit 23. All other bits are the same as in the standard SDHC + * register. + */ + if (spec_reg == SDHCI_PRESENT_STATE) { + ret = value & 0x000fffff; + ret |= (value >> 4) & SDHCI_DATA_LVL_MASK; + ret |= (value << 1) & SDHCI_CMD_LVL; + return ret; + } + ret = value; return ret; } --- linux-4.8.0.orig/drivers/mmc/host/sdhci.c +++ linux-4.8.0/drivers/mmc/host/sdhci.c @@ -687,7 +687,7 @@ * host->clock is in Hz. target_timeout is in us. * Hence, us = 1000000 * cycles / Hz. Round up. */ - val = 1000000 * data->timeout_clks; + val = 1000000ULL * data->timeout_clks; if (do_div(val, host->clock)) target_timeout++; target_timeout += val; @@ -2074,7 +2074,27 @@ ctrl &= ~SDHCI_CTRL_EXEC_TUNING; sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2); + sdhci_do_reset(host, SDHCI_RESET_CMD); + sdhci_do_reset(host, SDHCI_RESET_DATA); + err = -EIO; + + if (cmd.opcode != MMC_SEND_TUNING_BLOCK_HS200) + goto out; + + sdhci_writel(host, host->ier, SDHCI_INT_ENABLE); + sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE); + + spin_unlock_irqrestore(&host->lock, flags); + + memset(&cmd, 0, sizeof(cmd)); + cmd.opcode = MMC_STOP_TRANSMISSION; + cmd.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC; + cmd.busy_timeout = 50; + mmc_wait_for_cmd(mmc, &cmd, 0); + + spin_lock_irqsave(&host->lock, flags); + goto out; } @@ -2269,10 +2289,8 @@ for (i = 0; i < SDHCI_MAX_MRQS; i++) { mrq = host->mrqs_done[i]; - if (mrq) { - host->mrqs_done[i] = NULL; + if (mrq) break; - } } if (!mrq) { @@ -2303,6 +2321,17 @@ * upon error conditions. */ if (sdhci_needs_reset(host, mrq)) { + /* + * Do not finish until command and data lines are available for + * reset. Note there can only be one other mrq, so it cannot + * also be in mrqs_done, otherwise host->cmd and host->data_cmd + * would both be null. + */ + if (host->cmd || host->data_cmd) { + spin_unlock_irqrestore(&host->lock, flags); + return true; + } + /* Some controllers need this kick or reset won't work here */ if (host->quirks & SDHCI_QUIRK_CLOCK_BEFORE_RESET) /* This is to force an update */ @@ -2310,10 +2339,8 @@ /* Spec says we should do both at the same time, but Ricoh controllers do not like that. */ - if (!host->cmd) - sdhci_do_reset(host, SDHCI_RESET_CMD); - if (!host->data_cmd) - sdhci_do_reset(host, SDHCI_RESET_DATA); + sdhci_do_reset(host, SDHCI_RESET_CMD); + sdhci_do_reset(host, SDHCI_RESET_DATA); host->pending_reset = false; } @@ -2321,6 +2348,8 @@ if (!sdhci_has_requests(host)) sdhci_led_deactivate(host); + host->mrqs_done[i] = NULL; + mmiowb(); spin_unlock_irqrestore(&host->lock, flags); @@ -2500,9 +2529,6 @@ if (!host->data) { struct mmc_command *data_cmd = host->data_cmd; - if (data_cmd) - host->data_cmd = NULL; - /* * The "data complete" interrupt is also used to * indicate that a busy state has ended. See comment @@ -2510,11 +2536,13 @@ */ if (data_cmd && (data_cmd->flags & MMC_RSP_BUSY)) { if (intmask & SDHCI_INT_DATA_TIMEOUT) { + host->data_cmd = NULL; data_cmd->error = -ETIMEDOUT; sdhci_finish_mrq(host, data_cmd->mrq); return; } if (intmask & SDHCI_INT_DATA_END) { + host->data_cmd = NULL; /* * Some cards handle busy-end interrupt * before the command completed, so make --- linux-4.8.0.orig/drivers/mmc/host/sdhci.h +++ linux-4.8.0/drivers/mmc/host/sdhci.h @@ -73,6 +73,7 @@ #define SDHCI_DATA_LVL_MASK 0x00F00000 #define SDHCI_DATA_LVL_SHIFT 20 #define SDHCI_DATA_0_LVL_MASK 0x00100000 +#define SDHCI_CMD_LVL 0x01000000 #define SDHCI_HOST_CONTROL 0x28 #define SDHCI_CTRL_LED 0x01 --- linux-4.8.0.orig/drivers/mtd/mtdsuper.c +++ linux-4.8.0/drivers/mtd/mtdsuper.c @@ -125,6 +125,7 @@ #ifdef CONFIG_BLOCK struct block_device *bdev; int ret, major; + int perm; #endif int mtdnr; @@ -176,7 +177,10 @@ /* try the old way - the hack where we allowed users to mount * /dev/mtdblock$(n) but didn't actually _use_ the blockdev */ - bdev = lookup_bdev(dev_name); + perm = MAY_READ; + if (!(flags & MS_RDONLY)) + perm |= MAY_WRITE; + bdev = lookup_bdev(dev_name, perm); if (IS_ERR(bdev)) { ret = PTR_ERR(bdev); pr_debug("MTDSB: lookup_bdev() returned %d\n", ret); --- linux-4.8.0.orig/drivers/mtd/ubi/fastmap.c +++ linux-4.8.0/drivers/mtd/ubi/fastmap.c @@ -515,10 +515,11 @@ unsigned long long ec = be64_to_cpu(ech->ec); unmap_peb(ai, pnum); dbg_bld("Adding PEB to free: %i", pnum); + if (err == UBI_IO_FF_BITFLIPS) - add_aeb(ai, free, pnum, ec, 1); - else - add_aeb(ai, free, pnum, ec, 0); + scrub = 1; + + add_aeb(ai, free, pnum, ec, scrub); continue; } else if (err == 0 || err == UBI_IO_BITFLIPS) { dbg_bld("Found non empty PEB:%i in pool", pnum); @@ -750,11 +751,11 @@ fmvhdr->vol_type, be32_to_cpu(fmvhdr->last_eb_bytes)); - if (!av) - goto fail_bad; - if (PTR_ERR(av) == -EINVAL) { - ubi_err(ubi, "volume (ID %i) already exists", - fmvhdr->vol_id); + if (IS_ERR(av)) { + if (PTR_ERR(av) == -EEXIST) + ubi_err(ubi, "volume (ID %i) already exists", + fmvhdr->vol_id); + goto fail_bad; } --- linux-4.8.0.orig/drivers/mtd/ubi/wl.c +++ linux-4.8.0/drivers/mtd/ubi/wl.c @@ -644,7 +644,7 @@ int shutdown) { int err, scrubbing = 0, torture = 0, protect = 0, erroneous = 0; - int vol_id = -1, lnum = -1; + int erase = 0, keep = 0, vol_id = -1, lnum = -1; #ifdef CONFIG_MTD_UBI_FASTMAP int anchor = wrk->anchor; #endif @@ -780,6 +780,16 @@ e1->pnum); scrubbing = 1; goto out_not_moved; + } else if (ubi->fast_attach && err == UBI_IO_BAD_HDR_EBADMSG) { + /* + * While a full scan would detect interrupted erasures + * at attach time we can face them here when attached from + * Fastmap. + */ + dbg_wl("PEB %d has ECC errors, maybe from an interrupted erasure", + e1->pnum); + erase = 1; + goto out_not_moved; } ubi_err(ubi, "error %d while reading VID header from PEB %d", @@ -815,6 +825,7 @@ * Target PEB had bit-flips or write error - torture it. */ torture = 1; + keep = 1; goto out_not_moved; } @@ -901,7 +912,7 @@ ubi->erroneous_peb_count += 1; } else if (scrubbing) wl_tree_add(e1, &ubi->scrub); - else + else if (keep) wl_tree_add(e1, &ubi->used); if (dst_leb_clean) { wl_tree_add(e2, &ubi->free); @@ -921,6 +932,12 @@ if (err) goto out_ro; } + + if (erase) { + err = do_sync_erase(ubi, e1, vol_id, lnum, 1); + if (err) + goto out_ro; + } mutex_unlock(&ubi->move_mutex); return 0; --- linux-4.8.0.orig/drivers/net/can/usb/peak_usb/pcan_usb_core.c +++ linux-4.8.0/drivers/net/can/usb/peak_usb/pcan_usb_core.c @@ -872,23 +872,25 @@ static void peak_usb_disconnect(struct usb_interface *intf) { struct peak_usb_device *dev; + struct peak_usb_device *dev_prev_siblings; /* unregister as many netdev devices as siblings */ - for (dev = usb_get_intfdata(intf); dev; dev = dev->prev_siblings) { + for (dev = usb_get_intfdata(intf); dev; dev = dev_prev_siblings) { struct net_device *netdev = dev->netdev; char name[IFNAMSIZ]; + dev_prev_siblings = dev->prev_siblings; dev->state &= ~PCAN_USB_STATE_CONNECTED; strncpy(name, netdev->name, IFNAMSIZ); unregister_netdev(netdev); - free_candev(netdev); kfree(dev->cmd_buf); dev->next_siblings = NULL; if (dev->adapter->dev_free) dev->adapter->dev_free(dev); + free_candev(netdev); dev_info(&intf->dev, "%s removed\n", name); } --- linux-4.8.0.orig/drivers/net/dsa/b53/b53_common.c +++ linux-4.8.0/drivers/net/dsa/b53/b53_common.c @@ -904,9 +904,10 @@ vl->members |= BIT(port) | BIT(cpu_port); if (untagged) - vl->untag |= BIT(port) | BIT(cpu_port); + vl->untag |= BIT(port); else - vl->untag &= ~(BIT(port) | BIT(cpu_port)); + vl->untag &= ~BIT(port); + vl->untag &= ~BIT(cpu_port); b53_set_vlan_entry(dev, vid, vl); b53_fast_age_vlan(dev, vid); @@ -915,8 +916,6 @@ if (pvid) { b53_write16(dev, B53_VLAN_PAGE, B53_VLAN_PORT_DEF_TAG(port), vlan->vid_end); - b53_write16(dev, B53_VLAN_PAGE, B53_VLAN_PORT_DEF_TAG(cpu_port), - vlan->vid_end); b53_fast_age_vlan(dev, vid); } } @@ -926,7 +925,6 @@ { struct b53_device *dev = ds_to_priv(ds); bool untagged = vlan->flags & BRIDGE_VLAN_INFO_UNTAGGED; - unsigned int cpu_port = dev->cpu_port; struct b53_vlan *vl; u16 vid; u16 pvid; @@ -939,8 +937,6 @@ b53_get_vlan_entry(dev, vid, vl); vl->members &= ~BIT(port); - if ((vl->members & BIT(cpu_port)) == BIT(cpu_port)) - vl->members = 0; if (pvid == vid) { if (is5325(dev) || is5365(dev)) @@ -949,18 +945,14 @@ pvid = 0; } - if (untagged) { + if (untagged) vl->untag &= ~(BIT(port)); - if ((vl->untag & BIT(cpu_port)) == BIT(cpu_port)) - vl->untag = 0; - } b53_set_vlan_entry(dev, vid, vl); b53_fast_age_vlan(dev, vid); } b53_write16(dev, B53_VLAN_PAGE, B53_VLAN_PORT_DEF_TAG(port), pvid); - b53_write16(dev, B53_VLAN_PAGE, B53_VLAN_PORT_DEF_TAG(cpu_port), pvid); b53_fast_age_vlan(dev, pvid); return 0; --- linux-4.8.0.orig/drivers/net/dsa/bcm_sf2.c +++ linux-4.8.0/drivers/net/dsa/bcm_sf2.c @@ -1167,6 +1167,7 @@ struct phy_device *phydev) { struct bcm_sf2_priv *priv = ds_to_priv(ds); + struct ethtool_eee *p = &priv->port_sts[port].eee; u32 id_mode_dis = 0, port_mode; const char *str = NULL; u32 reg; @@ -1241,6 +1242,9 @@ reg |= DUPLX_MODE; core_writel(priv, reg, CORE_STS_OVERRIDE_GMIIP_PORT(port)); + + if (!phydev->is_pseudo_fixed_link) + p->eee_enabled = bcm_sf2_eee_init(ds, port, phydev); } static void bcm_sf2_sw_fixed_link_update(struct dsa_switch *ds, int port, --- linux-4.8.0.orig/drivers/net/ethernet/Kconfig +++ linux-4.8.0/drivers/net/ethernet/Kconfig @@ -24,6 +24,7 @@ source "drivers/net/ethernet/allwinner/Kconfig" source "drivers/net/ethernet/alteon/Kconfig" source "drivers/net/ethernet/altera/Kconfig" +source "drivers/net/ethernet/amazon/Kconfig" source "drivers/net/ethernet/amd/Kconfig" source "drivers/net/ethernet/apm/Kconfig" source "drivers/net/ethernet/apple/Kconfig" --- linux-4.8.0.orig/drivers/net/ethernet/Makefile +++ linux-4.8.0/drivers/net/ethernet/Makefile @@ -10,6 +10,7 @@ obj-$(CONFIG_NET_VENDOR_ALLWINNER) += allwinner/ obj-$(CONFIG_NET_VENDOR_ALTEON) += alteon/ obj-$(CONFIG_ALTERA_TSE) += altera/ +obj-$(CONFIG_NET_VENDOR_AMAZON) += amazon/ obj-$(CONFIG_NET_VENDOR_AMD) += amd/ obj-$(CONFIG_NET_XGENE) += apm/ obj-$(CONFIG_NET_VENDOR_APPLE) += apple/ --- linux-4.8.0.orig/drivers/net/ethernet/amazon/Kconfig +++ linux-4.8.0/drivers/net/ethernet/amazon/Kconfig @@ -0,0 +1,27 @@ +# +# Amazon network device configuration +# + +config NET_VENDOR_AMAZON + bool "Amazon Devices" + default y + ---help--- + If you have a network (Ethernet) device belonging to this class, say Y. + + Note that the answer to this question doesn't directly affect the + kernel: saying N will just cause the configurator to skip all + the questions about Amazon devices. If you say Y, you will be asked + for your specific device in the following questions. + +if NET_VENDOR_AMAZON + +config ENA_ETHERNET + tristate "Elastic Network Adapter (ENA) support" + depends on (PCI_MSI && X86) + ---help--- + This driver supports Elastic Network Adapter (ENA)" + + To compile this driver as a module, choose M here. + The module will be called ena. + +endif #NET_VENDOR_AMAZON --- linux-4.8.0.orig/drivers/net/ethernet/amazon/Makefile +++ linux-4.8.0/drivers/net/ethernet/amazon/Makefile @@ -0,0 +1,5 @@ +# +# Makefile for the Amazon network device drivers. +# + +obj-$(CONFIG_ENA_ETHERNET) += ena/ --- linux-4.8.0.orig/drivers/net/ethernet/amazon/ena/Makefile +++ linux-4.8.0/drivers/net/ethernet/amazon/ena/Makefile @@ -0,0 +1,7 @@ +# +# Makefile for the Elastic Network Adapter (ENA) device drivers. +# + +obj-$(CONFIG_ENA_ETHERNET) += ena.o + +ena-y := ena_netdev.o ena_com.o ena_eth_com.o ena_ethtool.o --- linux-4.8.0.orig/drivers/net/ethernet/amazon/ena/ena_admin_defs.h +++ linux-4.8.0/drivers/net/ethernet/amazon/ena/ena_admin_defs.h @@ -0,0 +1,981 @@ +/* + * Copyright 2015 - 2016 Amazon.com, Inc. or its affiliates. + * + * This software is available to you under a choice of one of two + * licenses. You may choose to be licensed under the terms of the GNU + * General Public License (GPL) Version 2, available from the file + * COPYING in the main directory of this source tree, or the + * BSD license below: + * + * Redistribution and use in source and binary forms, with or + * without modification, are permitted provided that the following + * conditions are met: + * + * - Redistributions of source code must retain the above + * copyright notice, this list of conditions and the following + * disclaimer. + * + * - Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ +#ifndef _ENA_ADMIN_H_ +#define _ENA_ADMIN_H_ + +enum ena_admin_aq_opcode { + ENA_ADMIN_CREATE_SQ = 1, + + ENA_ADMIN_DESTROY_SQ = 2, + + ENA_ADMIN_CREATE_CQ = 3, + + ENA_ADMIN_DESTROY_CQ = 4, + + ENA_ADMIN_GET_FEATURE = 8, + + ENA_ADMIN_SET_FEATURE = 9, + + ENA_ADMIN_GET_STATS = 11, +}; + +enum ena_admin_aq_completion_status { + ENA_ADMIN_SUCCESS = 0, + + ENA_ADMIN_RESOURCE_ALLOCATION_FAILURE = 1, + + ENA_ADMIN_BAD_OPCODE = 2, + + ENA_ADMIN_UNSUPPORTED_OPCODE = 3, + + ENA_ADMIN_MALFORMED_REQUEST = 4, + + /* Additional status is provided in ACQ entry extended_status */ + ENA_ADMIN_ILLEGAL_PARAMETER = 5, + + ENA_ADMIN_UNKNOWN_ERROR = 6, +}; + +enum ena_admin_aq_feature_id { + ENA_ADMIN_DEVICE_ATTRIBUTES = 1, + + ENA_ADMIN_MAX_QUEUES_NUM = 2, + + ENA_ADMIN_RSS_HASH_FUNCTION = 10, + + ENA_ADMIN_STATELESS_OFFLOAD_CONFIG = 11, + + ENA_ADMIN_RSS_REDIRECTION_TABLE_CONFIG = 12, + + ENA_ADMIN_MTU = 14, + + ENA_ADMIN_RSS_HASH_INPUT = 18, + + ENA_ADMIN_INTERRUPT_MODERATION = 20, + + ENA_ADMIN_AENQ_CONFIG = 26, + + ENA_ADMIN_LINK_CONFIG = 27, + + ENA_ADMIN_HOST_ATTR_CONFIG = 28, + + ENA_ADMIN_FEATURES_OPCODE_NUM = 32, +}; + +enum ena_admin_placement_policy_type { + /* descriptors and headers are in host memory */ + ENA_ADMIN_PLACEMENT_POLICY_HOST = 1, + + /* descriptors and headers are in device memory (a.k.a Low Latency + * Queue) + */ + ENA_ADMIN_PLACEMENT_POLICY_DEV = 3, +}; + +enum ena_admin_link_types { + ENA_ADMIN_LINK_SPEED_1G = 0x1, + + ENA_ADMIN_LINK_SPEED_2_HALF_G = 0x2, + + ENA_ADMIN_LINK_SPEED_5G = 0x4, + + ENA_ADMIN_LINK_SPEED_10G = 0x8, + + ENA_ADMIN_LINK_SPEED_25G = 0x10, + + ENA_ADMIN_LINK_SPEED_40G = 0x20, + + ENA_ADMIN_LINK_SPEED_50G = 0x40, + + ENA_ADMIN_LINK_SPEED_100G = 0x80, + + ENA_ADMIN_LINK_SPEED_200G = 0x100, + + ENA_ADMIN_LINK_SPEED_400G = 0x200, +}; + +enum ena_admin_completion_policy_type { + /* completion queue entry for each sq descriptor */ + ENA_ADMIN_COMPLETION_POLICY_DESC = 0, + + /* completion queue entry upon request in sq descriptor */ + ENA_ADMIN_COMPLETION_POLICY_DESC_ON_DEMAND = 1, + + /* current queue head pointer is updated in OS memory upon sq + * descriptor request + */ + ENA_ADMIN_COMPLETION_POLICY_HEAD_ON_DEMAND = 2, + + /* current queue head pointer is updated in OS memory for each sq + * descriptor + */ + ENA_ADMIN_COMPLETION_POLICY_HEAD = 3, +}; + +/* basic stats return ena_admin_basic_stats while extanded stats return a + * buffer (string format) with additional statistics per queue and per + * device id + */ +enum ena_admin_get_stats_type { + ENA_ADMIN_GET_STATS_TYPE_BASIC = 0, + + ENA_ADMIN_GET_STATS_TYPE_EXTENDED = 1, +}; + +enum ena_admin_get_stats_scope { + ENA_ADMIN_SPECIFIC_QUEUE = 0, + + ENA_ADMIN_ETH_TRAFFIC = 1, +}; + +struct ena_admin_aq_common_desc { + /* 11:0 : command_id + * 15:12 : reserved12 + */ + u16 command_id; + + /* as appears in ena_admin_aq_opcode */ + u8 opcode; + + /* 0 : phase + * 1 : ctrl_data - control buffer address valid + * 2 : ctrl_data_indirect - control buffer address + * points to list of pages with addresses of control + * buffers + * 7:3 : reserved3 + */ + u8 flags; +}; + +/* used in ena_admin_aq_entry. Can point directly to control data, or to a + * page list chunk. Used also at the end of indirect mode page list chunks, + * for chaining. + */ +struct ena_admin_ctrl_buff_info { + u32 length; + + struct ena_common_mem_addr address; +}; + +struct ena_admin_sq { + u16 sq_idx; + + /* 4:0 : reserved + * 7:5 : sq_direction - 0x1 - Tx; 0x2 - Rx + */ + u8 sq_identity; + + u8 reserved1; +}; + +struct ena_admin_aq_entry { + struct ena_admin_aq_common_desc aq_common_descriptor; + + union { + u32 inline_data_w1[3]; + + struct ena_admin_ctrl_buff_info control_buffer; + } u; + + u32 inline_data_w4[12]; +}; + +struct ena_admin_acq_common_desc { + /* command identifier to associate it with the aq descriptor + * 11:0 : command_id + * 15:12 : reserved12 + */ + u16 command; + + u8 status; + + /* 0 : phase + * 7:1 : reserved1 + */ + u8 flags; + + u16 extended_status; + + /* serves as a hint what AQ entries can be revoked */ + u16 sq_head_indx; +}; + +struct ena_admin_acq_entry { + struct ena_admin_acq_common_desc acq_common_descriptor; + + u32 response_specific_data[14]; +}; + +struct ena_admin_aq_create_sq_cmd { + struct ena_admin_aq_common_desc aq_common_descriptor; + + /* 4:0 : reserved0_w1 + * 7:5 : sq_direction - 0x1 - Tx, 0x2 - Rx + */ + u8 sq_identity; + + u8 reserved8_w1; + + /* 3:0 : placement_policy - Describing where the SQ + * descriptor ring and the SQ packet headers reside: + * 0x1 - descriptors and headers are in OS memory, + * 0x3 - descriptors and headers in device memory + * (a.k.a Low Latency Queue) + * 6:4 : completion_policy - Describing what policy + * to use for generation completion entry (cqe) in + * the CQ associated with this SQ: 0x0 - cqe for each + * sq descriptor, 0x1 - cqe upon request in sq + * descriptor, 0x2 - current queue head pointer is + * updated in OS memory upon sq descriptor request + * 0x3 - current queue head pointer is updated in OS + * memory for each sq descriptor + * 7 : reserved15_w1 + */ + u8 sq_caps_2; + + /* 0 : is_physically_contiguous - Described if the + * queue ring memory is allocated in physical + * contiguous pages or split. + * 7:1 : reserved17_w1 + */ + u8 sq_caps_3; + + /* associated completion queue id. This CQ must be created prior to + * SQ creation + */ + u16 cq_idx; + + /* submission queue depth in entries */ + u16 sq_depth; + + /* SQ physical base address in OS memory. This field should not be + * used for Low Latency queues. Has to be page aligned. + */ + struct ena_common_mem_addr sq_ba; + + /* specifies queue head writeback location in OS memory. Valid if + * completion_policy is set to completion_policy_head_on_demand or + * completion_policy_head. Has to be cache aligned + */ + struct ena_common_mem_addr sq_head_writeback; + + u32 reserved0_w7; + + u32 reserved0_w8; +}; + +enum ena_admin_sq_direction { + ENA_ADMIN_SQ_DIRECTION_TX = 1, + + ENA_ADMIN_SQ_DIRECTION_RX = 2, +}; + +struct ena_admin_acq_create_sq_resp_desc { + struct ena_admin_acq_common_desc acq_common_desc; + + u16 sq_idx; + + u16 reserved; + + /* queue doorbell address as an offset to PCIe MMIO REG BAR */ + u32 sq_doorbell_offset; + + /* low latency queue ring base address as an offset to PCIe MMIO + * LLQ_MEM BAR + */ + u32 llq_descriptors_offset; + + /* low latency queue headers' memory as an offset to PCIe MMIO + * LLQ_MEM BAR + */ + u32 llq_headers_offset; +}; + +struct ena_admin_aq_destroy_sq_cmd { + struct ena_admin_aq_common_desc aq_common_descriptor; + + struct ena_admin_sq sq; +}; + +struct ena_admin_acq_destroy_sq_resp_desc { + struct ena_admin_acq_common_desc acq_common_desc; +}; + +struct ena_admin_aq_create_cq_cmd { + struct ena_admin_aq_common_desc aq_common_descriptor; + + /* 4:0 : reserved5 + * 5 : interrupt_mode_enabled - if set, cq operates + * in interrupt mode, otherwise - polling + * 7:6 : reserved6 + */ + u8 cq_caps_1; + + /* 4:0 : cq_entry_size_words - size of CQ entry in + * 32-bit words, valid values: 4, 8. + * 7:5 : reserved7 + */ + u8 cq_caps_2; + + /* completion queue depth in # of entries. must be power of 2 */ + u16 cq_depth; + + /* msix vector assigned to this cq */ + u32 msix_vector; + + /* cq physical base address in OS memory. CQ must be physically + * contiguous + */ + struct ena_common_mem_addr cq_ba; +}; + +struct ena_admin_acq_create_cq_resp_desc { + struct ena_admin_acq_common_desc acq_common_desc; + + u16 cq_idx; + + /* actual cq depth in number of entries */ + u16 cq_actual_depth; + + u32 numa_node_register_offset; + + u32 cq_head_db_register_offset; + + u32 cq_interrupt_unmask_register_offset; +}; + +struct ena_admin_aq_destroy_cq_cmd { + struct ena_admin_aq_common_desc aq_common_descriptor; + + u16 cq_idx; + + u16 reserved1; +}; + +struct ena_admin_acq_destroy_cq_resp_desc { + struct ena_admin_acq_common_desc acq_common_desc; +}; + +/* ENA AQ Get Statistics command. Extended statistics are placed in control + * buffer pointed by AQ entry + */ +struct ena_admin_aq_get_stats_cmd { + struct ena_admin_aq_common_desc aq_common_descriptor; + + union { + /* command specific inline data */ + u32 inline_data_w1[3]; + + struct ena_admin_ctrl_buff_info control_buffer; + } u; + + /* stats type as defined in enum ena_admin_get_stats_type */ + u8 type; + + /* stats scope defined in enum ena_admin_get_stats_scope */ + u8 scope; + + u16 reserved3; + + /* queue id. used when scope is specific_queue */ + u16 queue_idx; + + /* device id, value 0xFFFF means mine. only privileged device can get + * stats of other device + */ + u16 device_id; +}; + +/* Basic Statistics Command. */ +struct ena_admin_basic_stats { + u32 tx_bytes_low; + + u32 tx_bytes_high; + + u32 tx_pkts_low; + + u32 tx_pkts_high; + + u32 rx_bytes_low; + + u32 rx_bytes_high; + + u32 rx_pkts_low; + + u32 rx_pkts_high; + + u32 rx_drops_low; + + u32 rx_drops_high; +}; + +struct ena_admin_acq_get_stats_resp { + struct ena_admin_acq_common_desc acq_common_desc; + + struct ena_admin_basic_stats basic_stats; +}; + +struct ena_admin_get_set_feature_common_desc { + /* 1:0 : select - 0x1 - current value; 0x3 - default + * value + * 7:3 : reserved3 + */ + u8 flags; + + /* as appears in ena_admin_aq_feature_id */ + u8 feature_id; + + u16 reserved16; +}; + +struct ena_admin_device_attr_feature_desc { + u32 impl_id; + + u32 device_version; + + /* bitmap of ena_admin_aq_feature_id */ + u32 supported_features; + + u32 reserved3; + + /* Indicates how many bits are used physical address access. */ + u32 phys_addr_width; + + /* Indicates how many bits are used virtual address access. */ + u32 virt_addr_width; + + /* unicast MAC address (in Network byte order) */ + u8 mac_addr[6]; + + u8 reserved7[2]; + + u32 max_mtu; +}; + +struct ena_admin_queue_feature_desc { + /* including LLQs */ + u32 max_sq_num; + + u32 max_sq_depth; + + u32 max_cq_num; + + u32 max_cq_depth; + + u32 max_llq_num; + + u32 max_llq_depth; + + u32 max_header_size; + + /* Maximum Descriptors number, including meta descriptor, allowed for + * a single Tx packet + */ + u16 max_packet_tx_descs; + + /* Maximum Descriptors number allowed for a single Rx packet */ + u16 max_packet_rx_descs; +}; + +struct ena_admin_set_feature_mtu_desc { + /* exclude L2 */ + u32 mtu; +}; + +struct ena_admin_set_feature_host_attr_desc { + /* host OS info base address in OS memory. host info is 4KB of + * physically contiguous + */ + struct ena_common_mem_addr os_info_ba; + + /* host debug area base address in OS memory. debug area must be + * physically contiguous + */ + struct ena_common_mem_addr debug_ba; + + /* debug area size */ + u32 debug_area_size; +}; + +struct ena_admin_feature_intr_moder_desc { + /* interrupt delay granularity in usec */ + u16 intr_delay_resolution; + + u16 reserved; +}; + +struct ena_admin_get_feature_link_desc { + /* Link speed in Mb */ + u32 speed; + + /* bit field of enum ena_admin_link types */ + u32 supported; + + /* 0 : autoneg + * 1 : duplex - Full Duplex + * 31:2 : reserved2 + */ + u32 flags; +}; + +struct ena_admin_feature_aenq_desc { + /* bitmask for AENQ groups the device can report */ + u32 supported_groups; + + /* bitmask for AENQ groups to report */ + u32 enabled_groups; +}; + +struct ena_admin_feature_offload_desc { + /* 0 : TX_L3_csum_ipv4 + * 1 : TX_L4_ipv4_csum_part - The checksum field + * should be initialized with pseudo header checksum + * 2 : TX_L4_ipv4_csum_full + * 3 : TX_L4_ipv6_csum_part - The checksum field + * should be initialized with pseudo header checksum + * 4 : TX_L4_ipv6_csum_full + * 5 : tso_ipv4 + * 6 : tso_ipv6 + * 7 : tso_ecn + */ + u32 tx; + + /* Receive side supported stateless offload + * 0 : RX_L3_csum_ipv4 - IPv4 checksum + * 1 : RX_L4_ipv4_csum - TCP/UDP/IPv4 checksum + * 2 : RX_L4_ipv6_csum - TCP/UDP/IPv6 checksum + * 3 : RX_hash - Hash calculation + */ + u32 rx_supported; + + u32 rx_enabled; +}; + +enum ena_admin_hash_functions { + ENA_ADMIN_TOEPLITZ = 1, + + ENA_ADMIN_CRC32 = 2, +}; + +struct ena_admin_feature_rss_flow_hash_control { + u32 keys_num; + + u32 reserved; + + u32 key[10]; +}; + +struct ena_admin_feature_rss_flow_hash_function { + /* 7:0 : funcs - bitmask of ena_admin_hash_functions */ + u32 supported_func; + + /* 7:0 : selected_func - bitmask of + * ena_admin_hash_functions + */ + u32 selected_func; + + /* initial value */ + u32 init_val; +}; + +/* RSS flow hash protocols */ +enum ena_admin_flow_hash_proto { + ENA_ADMIN_RSS_TCP4 = 0, + + ENA_ADMIN_RSS_UDP4 = 1, + + ENA_ADMIN_RSS_TCP6 = 2, + + ENA_ADMIN_RSS_UDP6 = 3, + + ENA_ADMIN_RSS_IP4 = 4, + + ENA_ADMIN_RSS_IP6 = 5, + + ENA_ADMIN_RSS_IP4_FRAG = 6, + + ENA_ADMIN_RSS_NOT_IP = 7, + + ENA_ADMIN_RSS_PROTO_NUM = 16, +}; + +/* RSS flow hash fields */ +enum ena_admin_flow_hash_fields { + /* Ethernet Dest Addr */ + ENA_ADMIN_RSS_L2_DA = BIT(0), + + /* Ethernet Src Addr */ + ENA_ADMIN_RSS_L2_SA = BIT(1), + + /* ipv4/6 Dest Addr */ + ENA_ADMIN_RSS_L3_DA = BIT(2), + + /* ipv4/6 Src Addr */ + ENA_ADMIN_RSS_L3_SA = BIT(3), + + /* tcp/udp Dest Port */ + ENA_ADMIN_RSS_L4_DP = BIT(4), + + /* tcp/udp Src Port */ + ENA_ADMIN_RSS_L4_SP = BIT(5), +}; + +struct ena_admin_proto_input { + /* flow hash fields (bitwise according to ena_admin_flow_hash_fields) */ + u16 fields; + + u16 reserved2; +}; + +struct ena_admin_feature_rss_hash_control { + struct ena_admin_proto_input supported_fields[ENA_ADMIN_RSS_PROTO_NUM]; + + struct ena_admin_proto_input selected_fields[ENA_ADMIN_RSS_PROTO_NUM]; + + struct ena_admin_proto_input reserved2[ENA_ADMIN_RSS_PROTO_NUM]; + + struct ena_admin_proto_input reserved3[ENA_ADMIN_RSS_PROTO_NUM]; +}; + +struct ena_admin_feature_rss_flow_hash_input { + /* supported hash input sorting + * 1 : L3_sort - support swap L3 addresses if DA is + * smaller than SA + * 2 : L4_sort - support swap L4 ports if DP smaller + * SP + */ + u16 supported_input_sort; + + /* enabled hash input sorting + * 1 : enable_L3_sort - enable swap L3 addresses if + * DA smaller than SA + * 2 : enable_L4_sort - enable swap L4 ports if DP + * smaller than SP + */ + u16 enabled_input_sort; +}; + +enum ena_admin_os_type { + ENA_ADMIN_OS_LINUX = 1, + + ENA_ADMIN_OS_WIN = 2, + + ENA_ADMIN_OS_DPDK = 3, + + ENA_ADMIN_OS_FREEBSD = 4, + + ENA_ADMIN_OS_IPXE = 5, +}; + +struct ena_admin_host_info { + /* defined in enum ena_admin_os_type */ + u32 os_type; + + /* os distribution string format */ + u8 os_dist_str[128]; + + /* OS distribution numeric format */ + u32 os_dist; + + /* kernel version string format */ + u8 kernel_ver_str[32]; + + /* Kernel version numeric format */ + u32 kernel_ver; + + /* 7:0 : major + * 15:8 : minor + * 23:16 : sub_minor + */ + u32 driver_version; + + /* features bitmap */ + u32 supported_network_features[4]; +}; + +struct ena_admin_rss_ind_table_entry { + u16 cq_idx; + + u16 reserved; +}; + +struct ena_admin_feature_rss_ind_table { + /* min supported table size (2^min_size) */ + u16 min_size; + + /* max supported table size (2^max_size) */ + u16 max_size; + + /* table size (2^size) */ + u16 size; + + u16 reserved; + + /* index of the inline entry. 0xFFFFFFFF means invalid */ + u32 inline_index; + + /* used for updating single entry, ignored when setting the entire + * table through the control buffer. + */ + struct ena_admin_rss_ind_table_entry inline_entry; +}; + +struct ena_admin_get_feat_cmd { + struct ena_admin_aq_common_desc aq_common_descriptor; + + struct ena_admin_ctrl_buff_info control_buffer; + + struct ena_admin_get_set_feature_common_desc feat_common; + + u32 raw[11]; +}; + +struct ena_admin_get_feat_resp { + struct ena_admin_acq_common_desc acq_common_desc; + + union { + u32 raw[14]; + + struct ena_admin_device_attr_feature_desc dev_attr; + + struct ena_admin_queue_feature_desc max_queue; + + struct ena_admin_feature_aenq_desc aenq; + + struct ena_admin_get_feature_link_desc link; + + struct ena_admin_feature_offload_desc offload; + + struct ena_admin_feature_rss_flow_hash_function flow_hash_func; + + struct ena_admin_feature_rss_flow_hash_input flow_hash_input; + + struct ena_admin_feature_rss_ind_table ind_table; + + struct ena_admin_feature_intr_moder_desc intr_moderation; + } u; +}; + +struct ena_admin_set_feat_cmd { + struct ena_admin_aq_common_desc aq_common_descriptor; + + struct ena_admin_ctrl_buff_info control_buffer; + + struct ena_admin_get_set_feature_common_desc feat_common; + + union { + u32 raw[11]; + + /* mtu size */ + struct ena_admin_set_feature_mtu_desc mtu; + + /* host attributes */ + struct ena_admin_set_feature_host_attr_desc host_attr; + + /* AENQ configuration */ + struct ena_admin_feature_aenq_desc aenq; + + /* rss flow hash function */ + struct ena_admin_feature_rss_flow_hash_function flow_hash_func; + + /* rss flow hash input */ + struct ena_admin_feature_rss_flow_hash_input flow_hash_input; + + /* rss indirection table */ + struct ena_admin_feature_rss_ind_table ind_table; + } u; +}; + +struct ena_admin_set_feat_resp { + struct ena_admin_acq_common_desc acq_common_desc; + + union { + u32 raw[14]; + } u; +}; + +struct ena_admin_aenq_common_desc { + u16 group; + + u16 syndrom; + + /* 0 : phase */ + u8 flags; + + u8 reserved1[3]; + + u32 timestamp_low; + + u32 timestamp_high; +}; + +/* asynchronous event notification groups */ +enum ena_admin_aenq_group { + ENA_ADMIN_LINK_CHANGE = 0, + + ENA_ADMIN_FATAL_ERROR = 1, + + ENA_ADMIN_WARNING = 2, + + ENA_ADMIN_NOTIFICATION = 3, + + ENA_ADMIN_KEEP_ALIVE = 4, + + ENA_ADMIN_AENQ_GROUPS_NUM = 5, +}; + +enum ena_admin_aenq_notification_syndrom { + ENA_ADMIN_SUSPEND = 0, + + ENA_ADMIN_RESUME = 1, +}; + +struct ena_admin_aenq_entry { + struct ena_admin_aenq_common_desc aenq_common_desc; + + /* command specific inline data */ + u32 inline_data_w4[12]; +}; + +struct ena_admin_aenq_link_change_desc { + struct ena_admin_aenq_common_desc aenq_common_desc; + + /* 0 : link_status */ + u32 flags; +}; + +struct ena_admin_aenq_keep_alive_desc { + struct ena_admin_aenq_common_desc aenq_common_desc; + + u32 rx_drops_low; + + u32 rx_drops_high; +}; + +struct ena_admin_ena_mmio_req_read_less_resp { + u16 req_id; + + u16 reg_off; + + /* value is valid when poll is cleared */ + u32 reg_val; +}; + +/* aq_common_desc */ +#define ENA_ADMIN_AQ_COMMON_DESC_COMMAND_ID_MASK GENMASK(11, 0) +#define ENA_ADMIN_AQ_COMMON_DESC_PHASE_MASK BIT(0) +#define ENA_ADMIN_AQ_COMMON_DESC_CTRL_DATA_SHIFT 1 +#define ENA_ADMIN_AQ_COMMON_DESC_CTRL_DATA_MASK BIT(1) +#define ENA_ADMIN_AQ_COMMON_DESC_CTRL_DATA_INDIRECT_SHIFT 2 +#define ENA_ADMIN_AQ_COMMON_DESC_CTRL_DATA_INDIRECT_MASK BIT(2) + +/* sq */ +#define ENA_ADMIN_SQ_SQ_DIRECTION_SHIFT 5 +#define ENA_ADMIN_SQ_SQ_DIRECTION_MASK GENMASK(7, 5) + +/* acq_common_desc */ +#define ENA_ADMIN_ACQ_COMMON_DESC_COMMAND_ID_MASK GENMASK(11, 0) +#define ENA_ADMIN_ACQ_COMMON_DESC_PHASE_MASK BIT(0) + +/* aq_create_sq_cmd */ +#define ENA_ADMIN_AQ_CREATE_SQ_CMD_SQ_DIRECTION_SHIFT 5 +#define ENA_ADMIN_AQ_CREATE_SQ_CMD_SQ_DIRECTION_MASK GENMASK(7, 5) +#define ENA_ADMIN_AQ_CREATE_SQ_CMD_PLACEMENT_POLICY_MASK GENMASK(3, 0) +#define ENA_ADMIN_AQ_CREATE_SQ_CMD_COMPLETION_POLICY_SHIFT 4 +#define ENA_ADMIN_AQ_CREATE_SQ_CMD_COMPLETION_POLICY_MASK GENMASK(6, 4) +#define ENA_ADMIN_AQ_CREATE_SQ_CMD_IS_PHYSICALLY_CONTIGUOUS_MASK BIT(0) + +/* aq_create_cq_cmd */ +#define ENA_ADMIN_AQ_CREATE_CQ_CMD_INTERRUPT_MODE_ENABLED_SHIFT 5 +#define ENA_ADMIN_AQ_CREATE_CQ_CMD_INTERRUPT_MODE_ENABLED_MASK BIT(5) +#define ENA_ADMIN_AQ_CREATE_CQ_CMD_CQ_ENTRY_SIZE_WORDS_MASK GENMASK(4, 0) + +/* get_set_feature_common_desc */ +#define ENA_ADMIN_GET_SET_FEATURE_COMMON_DESC_SELECT_MASK GENMASK(1, 0) + +/* get_feature_link_desc */ +#define ENA_ADMIN_GET_FEATURE_LINK_DESC_AUTONEG_MASK BIT(0) +#define ENA_ADMIN_GET_FEATURE_LINK_DESC_DUPLEX_SHIFT 1 +#define ENA_ADMIN_GET_FEATURE_LINK_DESC_DUPLEX_MASK BIT(1) + +/* feature_offload_desc */ +#define ENA_ADMIN_FEATURE_OFFLOAD_DESC_TX_L3_CSUM_IPV4_MASK BIT(0) +#define ENA_ADMIN_FEATURE_OFFLOAD_DESC_TX_L4_IPV4_CSUM_PART_SHIFT 1 +#define ENA_ADMIN_FEATURE_OFFLOAD_DESC_TX_L4_IPV4_CSUM_PART_MASK BIT(1) +#define ENA_ADMIN_FEATURE_OFFLOAD_DESC_TX_L4_IPV4_CSUM_FULL_SHIFT 2 +#define ENA_ADMIN_FEATURE_OFFLOAD_DESC_TX_L4_IPV4_CSUM_FULL_MASK BIT(2) +#define ENA_ADMIN_FEATURE_OFFLOAD_DESC_TX_L4_IPV6_CSUM_PART_SHIFT 3 +#define ENA_ADMIN_FEATURE_OFFLOAD_DESC_TX_L4_IPV6_CSUM_PART_MASK BIT(3) +#define ENA_ADMIN_FEATURE_OFFLOAD_DESC_TX_L4_IPV6_CSUM_FULL_SHIFT 4 +#define ENA_ADMIN_FEATURE_OFFLOAD_DESC_TX_L4_IPV6_CSUM_FULL_MASK BIT(4) +#define ENA_ADMIN_FEATURE_OFFLOAD_DESC_TSO_IPV4_SHIFT 5 +#define ENA_ADMIN_FEATURE_OFFLOAD_DESC_TSO_IPV4_MASK BIT(5) +#define ENA_ADMIN_FEATURE_OFFLOAD_DESC_TSO_IPV6_SHIFT 6 +#define ENA_ADMIN_FEATURE_OFFLOAD_DESC_TSO_IPV6_MASK BIT(6) +#define ENA_ADMIN_FEATURE_OFFLOAD_DESC_TSO_ECN_SHIFT 7 +#define ENA_ADMIN_FEATURE_OFFLOAD_DESC_TSO_ECN_MASK BIT(7) +#define ENA_ADMIN_FEATURE_OFFLOAD_DESC_RX_L3_CSUM_IPV4_MASK BIT(0) +#define ENA_ADMIN_FEATURE_OFFLOAD_DESC_RX_L4_IPV4_CSUM_SHIFT 1 +#define ENA_ADMIN_FEATURE_OFFLOAD_DESC_RX_L4_IPV4_CSUM_MASK BIT(1) +#define ENA_ADMIN_FEATURE_OFFLOAD_DESC_RX_L4_IPV6_CSUM_SHIFT 2 +#define ENA_ADMIN_FEATURE_OFFLOAD_DESC_RX_L4_IPV6_CSUM_MASK BIT(2) +#define ENA_ADMIN_FEATURE_OFFLOAD_DESC_RX_HASH_SHIFT 3 +#define ENA_ADMIN_FEATURE_OFFLOAD_DESC_RX_HASH_MASK BIT(3) + +/* feature_rss_flow_hash_function */ +#define ENA_ADMIN_FEATURE_RSS_FLOW_HASH_FUNCTION_FUNCS_MASK GENMASK(7, 0) +#define ENA_ADMIN_FEATURE_RSS_FLOW_HASH_FUNCTION_SELECTED_FUNC_MASK GENMASK(7, 0) + +/* feature_rss_flow_hash_input */ +#define ENA_ADMIN_FEATURE_RSS_FLOW_HASH_INPUT_L3_SORT_SHIFT 1 +#define ENA_ADMIN_FEATURE_RSS_FLOW_HASH_INPUT_L3_SORT_MASK BIT(1) +#define ENA_ADMIN_FEATURE_RSS_FLOW_HASH_INPUT_L4_SORT_SHIFT 2 +#define ENA_ADMIN_FEATURE_RSS_FLOW_HASH_INPUT_L4_SORT_MASK BIT(2) +#define ENA_ADMIN_FEATURE_RSS_FLOW_HASH_INPUT_ENABLE_L3_SORT_SHIFT 1 +#define ENA_ADMIN_FEATURE_RSS_FLOW_HASH_INPUT_ENABLE_L3_SORT_MASK BIT(1) +#define ENA_ADMIN_FEATURE_RSS_FLOW_HASH_INPUT_ENABLE_L4_SORT_SHIFT 2 +#define ENA_ADMIN_FEATURE_RSS_FLOW_HASH_INPUT_ENABLE_L4_SORT_MASK BIT(2) + +/* host_info */ +#define ENA_ADMIN_HOST_INFO_MAJOR_MASK GENMASK(7, 0) +#define ENA_ADMIN_HOST_INFO_MINOR_SHIFT 8 +#define ENA_ADMIN_HOST_INFO_MINOR_MASK GENMASK(15, 8) +#define ENA_ADMIN_HOST_INFO_SUB_MINOR_SHIFT 16 +#define ENA_ADMIN_HOST_INFO_SUB_MINOR_MASK GENMASK(23, 16) + +/* aenq_common_desc */ +#define ENA_ADMIN_AENQ_COMMON_DESC_PHASE_MASK BIT(0) + +/* aenq_link_change_desc */ +#define ENA_ADMIN_AENQ_LINK_CHANGE_DESC_LINK_STATUS_MASK BIT(0) + +#endif /*_ENA_ADMIN_H_ */ --- linux-4.8.0.orig/drivers/net/ethernet/amazon/ena/ena_com.c +++ linux-4.8.0/drivers/net/ethernet/amazon/ena/ena_com.c @@ -0,0 +1,2671 @@ +/* + * Copyright 2015 Amazon.com, Inc. or its affiliates. + * + * This software is available to you under a choice of one of two + * licenses. You may choose to be licensed under the terms of the GNU + * General Public License (GPL) Version 2, available from the file + * COPYING in the main directory of this source tree, or the + * BSD license below: + * + * Redistribution and use in source and binary forms, with or + * without modification, are permitted provided that the following + * conditions are met: + * + * - Redistributions of source code must retain the above + * copyright notice, this list of conditions and the following + * disclaimer. + * + * - Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + +#include "ena_com.h" + +/*****************************************************************************/ +/*****************************************************************************/ + +/* Timeout in micro-sec */ +#define ADMIN_CMD_TIMEOUT_US (3000000) + +#define ENA_ASYNC_QUEUE_DEPTH 16 +#define ENA_ADMIN_QUEUE_DEPTH 32 + +#define MIN_ENA_VER (((ENA_COMMON_SPEC_VERSION_MAJOR) << \ + ENA_REGS_VERSION_MAJOR_VERSION_SHIFT) \ + | (ENA_COMMON_SPEC_VERSION_MINOR)) + +#define ENA_CTRL_MAJOR 0 +#define ENA_CTRL_MINOR 0 +#define ENA_CTRL_SUB_MINOR 1 + +#define MIN_ENA_CTRL_VER \ + (((ENA_CTRL_MAJOR) << \ + (ENA_REGS_CONTROLLER_VERSION_MAJOR_VERSION_SHIFT)) | \ + ((ENA_CTRL_MINOR) << \ + (ENA_REGS_CONTROLLER_VERSION_MINOR_VERSION_SHIFT)) | \ + (ENA_CTRL_SUB_MINOR)) + +#define ENA_DMA_ADDR_TO_UINT32_LOW(x) ((u32)((u64)(x))) +#define ENA_DMA_ADDR_TO_UINT32_HIGH(x) ((u32)(((u64)(x)) >> 32)) + +#define ENA_MMIO_READ_TIMEOUT 0xFFFFFFFF + +/*****************************************************************************/ +/*****************************************************************************/ +/*****************************************************************************/ + +enum ena_cmd_status { + ENA_CMD_SUBMITTED, + ENA_CMD_COMPLETED, + /* Abort - canceled by the driver */ + ENA_CMD_ABORTED, +}; + +struct ena_comp_ctx { + struct completion wait_event; + struct ena_admin_acq_entry *user_cqe; + u32 comp_size; + enum ena_cmd_status status; + /* status from the device */ + u8 comp_status; + u8 cmd_opcode; + bool occupied; +}; + +struct ena_com_stats_ctx { + struct ena_admin_aq_get_stats_cmd get_cmd; + struct ena_admin_acq_get_stats_resp get_resp; +}; + +static inline int ena_com_mem_addr_set(struct ena_com_dev *ena_dev, + struct ena_common_mem_addr *ena_addr, + dma_addr_t addr) +{ + if ((addr & GENMASK_ULL(ena_dev->dma_addr_bits - 1, 0)) != addr) { + pr_err("dma address has more bits that the device supports\n"); + return -EINVAL; + } + + ena_addr->mem_addr_low = (u32)addr; + ena_addr->mem_addr_high = (u64)addr >> 32; + + return 0; +} + +static int ena_com_admin_init_sq(struct ena_com_admin_queue *queue) +{ + struct ena_com_admin_sq *sq = &queue->sq; + u16 size = ADMIN_SQ_SIZE(queue->q_depth); + + sq->entries = dma_zalloc_coherent(queue->q_dmadev, size, &sq->dma_addr, + GFP_KERNEL); + + if (!sq->entries) { + pr_err("memory allocation failed"); + return -ENOMEM; + } + + sq->head = 0; + sq->tail = 0; + sq->phase = 1; + + sq->db_addr = NULL; + + return 0; +} + +static int ena_com_admin_init_cq(struct ena_com_admin_queue *queue) +{ + struct ena_com_admin_cq *cq = &queue->cq; + u16 size = ADMIN_CQ_SIZE(queue->q_depth); + + cq->entries = dma_zalloc_coherent(queue->q_dmadev, size, &cq->dma_addr, + GFP_KERNEL); + + if (!cq->entries) { + pr_err("memory allocation failed"); + return -ENOMEM; + } + + cq->head = 0; + cq->phase = 1; + + return 0; +} + +static int ena_com_admin_init_aenq(struct ena_com_dev *dev, + struct ena_aenq_handlers *aenq_handlers) +{ + struct ena_com_aenq *aenq = &dev->aenq; + u32 addr_low, addr_high, aenq_caps; + u16 size; + + dev->aenq.q_depth = ENA_ASYNC_QUEUE_DEPTH; + size = ADMIN_AENQ_SIZE(ENA_ASYNC_QUEUE_DEPTH); + aenq->entries = dma_zalloc_coherent(dev->dmadev, size, &aenq->dma_addr, + GFP_KERNEL); + + if (!aenq->entries) { + pr_err("memory allocation failed"); + return -ENOMEM; + } + + aenq->head = aenq->q_depth; + aenq->phase = 1; + + addr_low = ENA_DMA_ADDR_TO_UINT32_LOW(aenq->dma_addr); + addr_high = ENA_DMA_ADDR_TO_UINT32_HIGH(aenq->dma_addr); + + writel(addr_low, dev->reg_bar + ENA_REGS_AENQ_BASE_LO_OFF); + writel(addr_high, dev->reg_bar + ENA_REGS_AENQ_BASE_HI_OFF); + + aenq_caps = 0; + aenq_caps |= dev->aenq.q_depth & ENA_REGS_AENQ_CAPS_AENQ_DEPTH_MASK; + aenq_caps |= (sizeof(struct ena_admin_aenq_entry) + << ENA_REGS_AENQ_CAPS_AENQ_ENTRY_SIZE_SHIFT) & + ENA_REGS_AENQ_CAPS_AENQ_ENTRY_SIZE_MASK; + writel(aenq_caps, dev->reg_bar + ENA_REGS_AENQ_CAPS_OFF); + + if (unlikely(!aenq_handlers)) { + pr_err("aenq handlers pointer is NULL\n"); + return -EINVAL; + } + + aenq->aenq_handlers = aenq_handlers; + + return 0; +} + +static inline void comp_ctxt_release(struct ena_com_admin_queue *queue, + struct ena_comp_ctx *comp_ctx) +{ + comp_ctx->occupied = false; + atomic_dec(&queue->outstanding_cmds); +} + +static struct ena_comp_ctx *get_comp_ctxt(struct ena_com_admin_queue *queue, + u16 command_id, bool capture) +{ + if (unlikely(command_id >= queue->q_depth)) { + pr_err("command id is larger than the queue size. cmd_id: %u queue size %d\n", + command_id, queue->q_depth); + return NULL; + } + + if (unlikely(queue->comp_ctx[command_id].occupied && capture)) { + pr_err("Completion context is occupied\n"); + return NULL; + } + + if (capture) { + atomic_inc(&queue->outstanding_cmds); + queue->comp_ctx[command_id].occupied = true; + } + + return &queue->comp_ctx[command_id]; +} + +static struct ena_comp_ctx *__ena_com_submit_admin_cmd(struct ena_com_admin_queue *admin_queue, + struct ena_admin_aq_entry *cmd, + size_t cmd_size_in_bytes, + struct ena_admin_acq_entry *comp, + size_t comp_size_in_bytes) +{ + struct ena_comp_ctx *comp_ctx; + u16 tail_masked, cmd_id; + u16 queue_size_mask; + u16 cnt; + + queue_size_mask = admin_queue->q_depth - 1; + + tail_masked = admin_queue->sq.tail & queue_size_mask; + + /* In case of queue FULL */ + cnt = admin_queue->sq.tail - admin_queue->sq.head; + if (cnt >= admin_queue->q_depth) { + pr_debug("admin queue is FULL (tail %d head %d depth: %d)\n", + admin_queue->sq.tail, admin_queue->sq.head, + admin_queue->q_depth); + admin_queue->stats.out_of_space++; + return ERR_PTR(-ENOSPC); + } + + cmd_id = admin_queue->curr_cmd_id; + + cmd->aq_common_descriptor.flags |= admin_queue->sq.phase & + ENA_ADMIN_AQ_COMMON_DESC_PHASE_MASK; + + cmd->aq_common_descriptor.command_id |= cmd_id & + ENA_ADMIN_AQ_COMMON_DESC_COMMAND_ID_MASK; + + comp_ctx = get_comp_ctxt(admin_queue, cmd_id, true); + if (unlikely(!comp_ctx)) + return ERR_PTR(-EINVAL); + + comp_ctx->status = ENA_CMD_SUBMITTED; + comp_ctx->comp_size = (u32)comp_size_in_bytes; + comp_ctx->user_cqe = comp; + comp_ctx->cmd_opcode = cmd->aq_common_descriptor.opcode; + + reinit_completion(&comp_ctx->wait_event); + + memcpy(&admin_queue->sq.entries[tail_masked], cmd, cmd_size_in_bytes); + + admin_queue->curr_cmd_id = (admin_queue->curr_cmd_id + 1) & + queue_size_mask; + + admin_queue->sq.tail++; + admin_queue->stats.submitted_cmd++; + + if (unlikely((admin_queue->sq.tail & queue_size_mask) == 0)) + admin_queue->sq.phase = !admin_queue->sq.phase; + + writel(admin_queue->sq.tail, admin_queue->sq.db_addr); + + return comp_ctx; +} + +static inline int ena_com_init_comp_ctxt(struct ena_com_admin_queue *queue) +{ + size_t size = queue->q_depth * sizeof(struct ena_comp_ctx); + struct ena_comp_ctx *comp_ctx; + u16 i; + + queue->comp_ctx = devm_kzalloc(queue->q_dmadev, size, GFP_KERNEL); + if (unlikely(!queue->comp_ctx)) { + pr_err("memory allocation failed"); + return -ENOMEM; + } + + for (i = 0; i < queue->q_depth; i++) { + comp_ctx = get_comp_ctxt(queue, i, false); + if (comp_ctx) + init_completion(&comp_ctx->wait_event); + } + + return 0; +} + +static struct ena_comp_ctx *ena_com_submit_admin_cmd(struct ena_com_admin_queue *admin_queue, + struct ena_admin_aq_entry *cmd, + size_t cmd_size_in_bytes, + struct ena_admin_acq_entry *comp, + size_t comp_size_in_bytes) +{ + unsigned long flags; + struct ena_comp_ctx *comp_ctx; + + spin_lock_irqsave(&admin_queue->q_lock, flags); + if (unlikely(!admin_queue->running_state)) { + spin_unlock_irqrestore(&admin_queue->q_lock, flags); + return ERR_PTR(-ENODEV); + } + comp_ctx = __ena_com_submit_admin_cmd(admin_queue, cmd, + cmd_size_in_bytes, + comp, + comp_size_in_bytes); + if (unlikely(IS_ERR(comp_ctx))) + admin_queue->running_state = false; + spin_unlock_irqrestore(&admin_queue->q_lock, flags); + + return comp_ctx; +} + +static int ena_com_init_io_sq(struct ena_com_dev *ena_dev, + struct ena_com_create_io_ctx *ctx, + struct ena_com_io_sq *io_sq) +{ + size_t size; + int dev_node = 0; + + memset(&io_sq->desc_addr, 0x0, sizeof(struct ena_com_io_desc_addr)); + + io_sq->desc_entry_size = + (io_sq->direction == ENA_COM_IO_QUEUE_DIRECTION_TX) ? + sizeof(struct ena_eth_io_tx_desc) : + sizeof(struct ena_eth_io_rx_desc); + + size = io_sq->desc_entry_size * io_sq->q_depth; + + if (io_sq->mem_queue_type == ENA_ADMIN_PLACEMENT_POLICY_HOST) { + dev_node = dev_to_node(ena_dev->dmadev); + set_dev_node(ena_dev->dmadev, ctx->numa_node); + io_sq->desc_addr.virt_addr = + dma_zalloc_coherent(ena_dev->dmadev, size, + &io_sq->desc_addr.phys_addr, + GFP_KERNEL); + set_dev_node(ena_dev->dmadev, dev_node); + if (!io_sq->desc_addr.virt_addr) { + io_sq->desc_addr.virt_addr = + dma_zalloc_coherent(ena_dev->dmadev, size, + &io_sq->desc_addr.phys_addr, + GFP_KERNEL); + } + } else { + dev_node = dev_to_node(ena_dev->dmadev); + set_dev_node(ena_dev->dmadev, ctx->numa_node); + io_sq->desc_addr.virt_addr = + devm_kzalloc(ena_dev->dmadev, size, GFP_KERNEL); + set_dev_node(ena_dev->dmadev, dev_node); + if (!io_sq->desc_addr.virt_addr) { + io_sq->desc_addr.virt_addr = + devm_kzalloc(ena_dev->dmadev, size, GFP_KERNEL); + } + } + + if (!io_sq->desc_addr.virt_addr) { + pr_err("memory allocation failed"); + return -ENOMEM; + } + + io_sq->tail = 0; + io_sq->next_to_comp = 0; + io_sq->phase = 1; + + return 0; +} + +static int ena_com_init_io_cq(struct ena_com_dev *ena_dev, + struct ena_com_create_io_ctx *ctx, + struct ena_com_io_cq *io_cq) +{ + size_t size; + int prev_node = 0; + + memset(&io_cq->cdesc_addr, 0x0, sizeof(struct ena_com_io_desc_addr)); + + /* Use the basic completion descriptor for Rx */ + io_cq->cdesc_entry_size_in_bytes = + (io_cq->direction == ENA_COM_IO_QUEUE_DIRECTION_TX) ? + sizeof(struct ena_eth_io_tx_cdesc) : + sizeof(struct ena_eth_io_rx_cdesc_base); + + size = io_cq->cdesc_entry_size_in_bytes * io_cq->q_depth; + + prev_node = dev_to_node(ena_dev->dmadev); + set_dev_node(ena_dev->dmadev, ctx->numa_node); + io_cq->cdesc_addr.virt_addr = + dma_zalloc_coherent(ena_dev->dmadev, size, + &io_cq->cdesc_addr.phys_addr, GFP_KERNEL); + set_dev_node(ena_dev->dmadev, prev_node); + if (!io_cq->cdesc_addr.virt_addr) { + io_cq->cdesc_addr.virt_addr = + dma_zalloc_coherent(ena_dev->dmadev, size, + &io_cq->cdesc_addr.phys_addr, + GFP_KERNEL); + } + + if (!io_cq->cdesc_addr.virt_addr) { + pr_err("memory allocation failed"); + return -ENOMEM; + } + + io_cq->phase = 1; + io_cq->head = 0; + + return 0; +} + +static void ena_com_handle_single_admin_completion(struct ena_com_admin_queue *admin_queue, + struct ena_admin_acq_entry *cqe) +{ + struct ena_comp_ctx *comp_ctx; + u16 cmd_id; + + cmd_id = cqe->acq_common_descriptor.command & + ENA_ADMIN_ACQ_COMMON_DESC_COMMAND_ID_MASK; + + comp_ctx = get_comp_ctxt(admin_queue, cmd_id, false); + if (unlikely(!comp_ctx)) { + pr_err("comp_ctx is NULL. Changing the admin queue running state\n"); + admin_queue->running_state = false; + return; + } + + comp_ctx->status = ENA_CMD_COMPLETED; + comp_ctx->comp_status = cqe->acq_common_descriptor.status; + + if (comp_ctx->user_cqe) + memcpy(comp_ctx->user_cqe, (void *)cqe, comp_ctx->comp_size); + + if (!admin_queue->polling) + complete(&comp_ctx->wait_event); +} + +static void ena_com_handle_admin_completion(struct ena_com_admin_queue *admin_queue) +{ + struct ena_admin_acq_entry *cqe = NULL; + u16 comp_num = 0; + u16 head_masked; + u8 phase; + + head_masked = admin_queue->cq.head & (admin_queue->q_depth - 1); + phase = admin_queue->cq.phase; + + cqe = &admin_queue->cq.entries[head_masked]; + + /* Go over all the completions */ + while ((cqe->acq_common_descriptor.flags & + ENA_ADMIN_ACQ_COMMON_DESC_PHASE_MASK) == phase) { + /* Do not read the rest of the completion entry before the + * phase bit was validated + */ + rmb(); + ena_com_handle_single_admin_completion(admin_queue, cqe); + + head_masked++; + comp_num++; + if (unlikely(head_masked == admin_queue->q_depth)) { + head_masked = 0; + phase = !phase; + } + + cqe = &admin_queue->cq.entries[head_masked]; + } + + admin_queue->cq.head += comp_num; + admin_queue->cq.phase = phase; + admin_queue->sq.head += comp_num; + admin_queue->stats.completed_cmd += comp_num; +} + +static int ena_com_comp_status_to_errno(u8 comp_status) +{ + if (unlikely(comp_status != 0)) + pr_err("admin command failed[%u]\n", comp_status); + + if (unlikely(comp_status > ENA_ADMIN_UNKNOWN_ERROR)) + return -EINVAL; + + switch (comp_status) { + case ENA_ADMIN_SUCCESS: + return 0; + case ENA_ADMIN_RESOURCE_ALLOCATION_FAILURE: + return -ENOMEM; + case ENA_ADMIN_UNSUPPORTED_OPCODE: + return -EPERM; + case ENA_ADMIN_BAD_OPCODE: + case ENA_ADMIN_MALFORMED_REQUEST: + case ENA_ADMIN_ILLEGAL_PARAMETER: + case ENA_ADMIN_UNKNOWN_ERROR: + return -EINVAL; + } + + return 0; +} + +static int ena_com_wait_and_process_admin_cq_polling(struct ena_comp_ctx *comp_ctx, + struct ena_com_admin_queue *admin_queue) +{ + unsigned long flags; + u32 start_time; + int ret; + + start_time = ((u32)jiffies_to_usecs(jiffies)); + + while (comp_ctx->status == ENA_CMD_SUBMITTED) { + if ((((u32)jiffies_to_usecs(jiffies)) - start_time) > + ADMIN_CMD_TIMEOUT_US) { + pr_err("Wait for completion (polling) timeout\n"); + /* ENA didn't have any completion */ + spin_lock_irqsave(&admin_queue->q_lock, flags); + admin_queue->stats.no_completion++; + admin_queue->running_state = false; + spin_unlock_irqrestore(&admin_queue->q_lock, flags); + + ret = -ETIME; + goto err; + } + + spin_lock_irqsave(&admin_queue->q_lock, flags); + ena_com_handle_admin_completion(admin_queue); + spin_unlock_irqrestore(&admin_queue->q_lock, flags); + + msleep(100); + } + + if (unlikely(comp_ctx->status == ENA_CMD_ABORTED)) { + pr_err("Command was aborted\n"); + spin_lock_irqsave(&admin_queue->q_lock, flags); + admin_queue->stats.aborted_cmd++; + spin_unlock_irqrestore(&admin_queue->q_lock, flags); + ret = -ENODEV; + goto err; + } + + WARN(comp_ctx->status != ENA_CMD_COMPLETED, "Invalid comp status %d\n", + comp_ctx->status); + + ret = ena_com_comp_status_to_errno(comp_ctx->comp_status); +err: + comp_ctxt_release(admin_queue, comp_ctx); + return ret; +} + +static int ena_com_wait_and_process_admin_cq_interrupts(struct ena_comp_ctx *comp_ctx, + struct ena_com_admin_queue *admin_queue) +{ + unsigned long flags; + int ret; + + wait_for_completion_timeout(&comp_ctx->wait_event, + usecs_to_jiffies(ADMIN_CMD_TIMEOUT_US)); + + /* In case the command wasn't completed find out the root cause. + * There might be 2 kinds of errors + * 1) No completion (timeout reached) + * 2) There is completion but the device didn't get any msi-x interrupt. + */ + if (unlikely(comp_ctx->status == ENA_CMD_SUBMITTED)) { + spin_lock_irqsave(&admin_queue->q_lock, flags); + ena_com_handle_admin_completion(admin_queue); + admin_queue->stats.no_completion++; + spin_unlock_irqrestore(&admin_queue->q_lock, flags); + + if (comp_ctx->status == ENA_CMD_COMPLETED) + pr_err("The ena device have completion but the driver didn't receive any MSI-X interrupt (cmd %d)\n", + comp_ctx->cmd_opcode); + else + pr_err("The ena device doesn't send any completion for the admin cmd %d status %d\n", + comp_ctx->cmd_opcode, comp_ctx->status); + + admin_queue->running_state = false; + ret = -ETIME; + goto err; + } + + ret = ena_com_comp_status_to_errno(comp_ctx->comp_status); +err: + comp_ctxt_release(admin_queue, comp_ctx); + return ret; +} + +/* This method read the hardware device register through posting writes + * and waiting for response + * On timeout the function will return ENA_MMIO_READ_TIMEOUT + */ +static u32 ena_com_reg_bar_read32(struct ena_com_dev *ena_dev, u16 offset) +{ + struct ena_com_mmio_read *mmio_read = &ena_dev->mmio_read; + volatile struct ena_admin_ena_mmio_req_read_less_resp *read_resp = + mmio_read->read_resp; + u32 mmio_read_reg, ret; + unsigned long flags; + int i; + + might_sleep(); + + /* If readless is disabled, perform regular read */ + if (!mmio_read->readless_supported) + return readl(ena_dev->reg_bar + offset); + + spin_lock_irqsave(&mmio_read->lock, flags); + mmio_read->seq_num++; + + read_resp->req_id = mmio_read->seq_num + 0xDEAD; + mmio_read_reg = (offset << ENA_REGS_MMIO_REG_READ_REG_OFF_SHIFT) & + ENA_REGS_MMIO_REG_READ_REG_OFF_MASK; + mmio_read_reg |= mmio_read->seq_num & + ENA_REGS_MMIO_REG_READ_REQ_ID_MASK; + + /* make sure read_resp->req_id get updated before the hw can write + * there + */ + wmb(); + + writel(mmio_read_reg, ena_dev->reg_bar + ENA_REGS_MMIO_REG_READ_OFF); + + for (i = 0; i < ENA_REG_READ_TIMEOUT; i++) { + if (read_resp->req_id == mmio_read->seq_num) + break; + + udelay(1); + } + + if (unlikely(i == ENA_REG_READ_TIMEOUT)) { + pr_err("reading reg failed for timeout. expected: req id[%hu] offset[%hu] actual: req id[%hu] offset[%hu]\n", + mmio_read->seq_num, offset, read_resp->req_id, + read_resp->reg_off); + ret = ENA_MMIO_READ_TIMEOUT; + goto err; + } + + if (read_resp->reg_off != offset) { + pr_err("Read failure: wrong offset provided"); + ret = ENA_MMIO_READ_TIMEOUT; + } else { + ret = read_resp->reg_val; + } +err: + spin_unlock_irqrestore(&mmio_read->lock, flags); + + return ret; +} + +/* There are two types to wait for completion. + * Polling mode - wait until the completion is available. + * Async mode - wait on wait queue until the completion is ready + * (or the timeout expired). + * It is expected that the IRQ called ena_com_handle_admin_completion + * to mark the completions. + */ +static int ena_com_wait_and_process_admin_cq(struct ena_comp_ctx *comp_ctx, + struct ena_com_admin_queue *admin_queue) +{ + if (admin_queue->polling) + return ena_com_wait_and_process_admin_cq_polling(comp_ctx, + admin_queue); + + return ena_com_wait_and_process_admin_cq_interrupts(comp_ctx, + admin_queue); +} + +static int ena_com_destroy_io_sq(struct ena_com_dev *ena_dev, + struct ena_com_io_sq *io_sq) +{ + struct ena_com_admin_queue *admin_queue = &ena_dev->admin_queue; + struct ena_admin_aq_destroy_sq_cmd destroy_cmd; + struct ena_admin_acq_destroy_sq_resp_desc destroy_resp; + u8 direction; + int ret; + + memset(&destroy_cmd, 0x0, sizeof(struct ena_admin_aq_destroy_sq_cmd)); + + if (io_sq->direction == ENA_COM_IO_QUEUE_DIRECTION_TX) + direction = ENA_ADMIN_SQ_DIRECTION_TX; + else + direction = ENA_ADMIN_SQ_DIRECTION_RX; + + destroy_cmd.sq.sq_identity |= (direction << + ENA_ADMIN_SQ_SQ_DIRECTION_SHIFT) & + ENA_ADMIN_SQ_SQ_DIRECTION_MASK; + + destroy_cmd.sq.sq_idx = io_sq->idx; + destroy_cmd.aq_common_descriptor.opcode = ENA_ADMIN_DESTROY_SQ; + + ret = ena_com_execute_admin_command(admin_queue, + (struct ena_admin_aq_entry *)&destroy_cmd, + sizeof(destroy_cmd), + (struct ena_admin_acq_entry *)&destroy_resp, + sizeof(destroy_resp)); + + if (unlikely(ret && (ret != -ENODEV))) + pr_err("failed to destroy io sq error: %d\n", ret); + + return ret; +} + +static void ena_com_io_queue_free(struct ena_com_dev *ena_dev, + struct ena_com_io_sq *io_sq, + struct ena_com_io_cq *io_cq) +{ + size_t size; + + if (io_cq->cdesc_addr.virt_addr) { + size = io_cq->cdesc_entry_size_in_bytes * io_cq->q_depth; + + dma_free_coherent(ena_dev->dmadev, size, + io_cq->cdesc_addr.virt_addr, + io_cq->cdesc_addr.phys_addr); + + io_cq->cdesc_addr.virt_addr = NULL; + } + + if (io_sq->desc_addr.virt_addr) { + size = io_sq->desc_entry_size * io_sq->q_depth; + + if (io_sq->mem_queue_type == ENA_ADMIN_PLACEMENT_POLICY_HOST) + dma_free_coherent(ena_dev->dmadev, size, + io_sq->desc_addr.virt_addr, + io_sq->desc_addr.phys_addr); + else + devm_kfree(ena_dev->dmadev, io_sq->desc_addr.virt_addr); + + io_sq->desc_addr.virt_addr = NULL; + } +} + +static int wait_for_reset_state(struct ena_com_dev *ena_dev, u32 timeout, + u16 exp_state) +{ + u32 val, i; + + for (i = 0; i < timeout; i++) { + val = ena_com_reg_bar_read32(ena_dev, ENA_REGS_DEV_STS_OFF); + + if (unlikely(val == ENA_MMIO_READ_TIMEOUT)) { + pr_err("Reg read timeout occurred\n"); + return -ETIME; + } + + if ((val & ENA_REGS_DEV_STS_RESET_IN_PROGRESS_MASK) == + exp_state) + return 0; + + /* The resolution of the timeout is 100ms */ + msleep(100); + } + + return -ETIME; +} + +static bool ena_com_check_supported_feature_id(struct ena_com_dev *ena_dev, + enum ena_admin_aq_feature_id feature_id) +{ + u32 feature_mask = 1 << feature_id; + + /* Device attributes is always supported */ + if ((feature_id != ENA_ADMIN_DEVICE_ATTRIBUTES) && + !(ena_dev->supported_features & feature_mask)) + return false; + + return true; +} + +static int ena_com_get_feature_ex(struct ena_com_dev *ena_dev, + struct ena_admin_get_feat_resp *get_resp, + enum ena_admin_aq_feature_id feature_id, + dma_addr_t control_buf_dma_addr, + u32 control_buff_size) +{ + struct ena_com_admin_queue *admin_queue; + struct ena_admin_get_feat_cmd get_cmd; + int ret; + + if (!ena_com_check_supported_feature_id(ena_dev, feature_id)) { + pr_debug("Feature %d isn't supported\n", feature_id); + return -EPERM; + } + + memset(&get_cmd, 0x0, sizeof(get_cmd)); + admin_queue = &ena_dev->admin_queue; + + get_cmd.aq_common_descriptor.opcode = ENA_ADMIN_GET_FEATURE; + + if (control_buff_size) + get_cmd.aq_common_descriptor.flags = + ENA_ADMIN_AQ_COMMON_DESC_CTRL_DATA_INDIRECT_MASK; + else + get_cmd.aq_common_descriptor.flags = 0; + + ret = ena_com_mem_addr_set(ena_dev, + &get_cmd.control_buffer.address, + control_buf_dma_addr); + if (unlikely(ret)) { + pr_err("memory address set failed\n"); + return ret; + } + + get_cmd.control_buffer.length = control_buff_size; + + get_cmd.feat_common.feature_id = feature_id; + + ret = ena_com_execute_admin_command(admin_queue, + (struct ena_admin_aq_entry *) + &get_cmd, + sizeof(get_cmd), + (struct ena_admin_acq_entry *) + get_resp, + sizeof(*get_resp)); + + if (unlikely(ret)) + pr_err("Failed to submit get_feature command %d error: %d\n", + feature_id, ret); + + return ret; +} + +static int ena_com_get_feature(struct ena_com_dev *ena_dev, + struct ena_admin_get_feat_resp *get_resp, + enum ena_admin_aq_feature_id feature_id) +{ + return ena_com_get_feature_ex(ena_dev, + get_resp, + feature_id, + 0, + 0); +} + +static int ena_com_hash_key_allocate(struct ena_com_dev *ena_dev) +{ + struct ena_rss *rss = &ena_dev->rss; + + rss->hash_key = + dma_zalloc_coherent(ena_dev->dmadev, sizeof(*rss->hash_key), + &rss->hash_key_dma_addr, GFP_KERNEL); + + if (unlikely(!rss->hash_key)) + return -ENOMEM; + + return 0; +} + +static void ena_com_hash_key_destroy(struct ena_com_dev *ena_dev) +{ + struct ena_rss *rss = &ena_dev->rss; + + if (rss->hash_key) + dma_free_coherent(ena_dev->dmadev, sizeof(*rss->hash_key), + rss->hash_key, rss->hash_key_dma_addr); + rss->hash_key = NULL; +} + +static int ena_com_hash_ctrl_init(struct ena_com_dev *ena_dev) +{ + struct ena_rss *rss = &ena_dev->rss; + + rss->hash_ctrl = + dma_zalloc_coherent(ena_dev->dmadev, sizeof(*rss->hash_ctrl), + &rss->hash_ctrl_dma_addr, GFP_KERNEL); + + if (unlikely(!rss->hash_ctrl)) + return -ENOMEM; + + return 0; +} + +static void ena_com_hash_ctrl_destroy(struct ena_com_dev *ena_dev) +{ + struct ena_rss *rss = &ena_dev->rss; + + if (rss->hash_ctrl) + dma_free_coherent(ena_dev->dmadev, sizeof(*rss->hash_ctrl), + rss->hash_ctrl, rss->hash_ctrl_dma_addr); + rss->hash_ctrl = NULL; +} + +static int ena_com_indirect_table_allocate(struct ena_com_dev *ena_dev, + u16 log_size) +{ + struct ena_rss *rss = &ena_dev->rss; + struct ena_admin_get_feat_resp get_resp; + size_t tbl_size; + int ret; + + ret = ena_com_get_feature(ena_dev, &get_resp, + ENA_ADMIN_RSS_REDIRECTION_TABLE_CONFIG); + if (unlikely(ret)) + return ret; + + if ((get_resp.u.ind_table.min_size > log_size) || + (get_resp.u.ind_table.max_size < log_size)) { + pr_err("indirect table size doesn't fit. requested size: %d while min is:%d and max %d\n", + 1 << log_size, 1 << get_resp.u.ind_table.min_size, + 1 << get_resp.u.ind_table.max_size); + return -EINVAL; + } + + tbl_size = (1ULL << log_size) * + sizeof(struct ena_admin_rss_ind_table_entry); + + rss->rss_ind_tbl = + dma_zalloc_coherent(ena_dev->dmadev, tbl_size, + &rss->rss_ind_tbl_dma_addr, GFP_KERNEL); + if (unlikely(!rss->rss_ind_tbl)) + goto mem_err1; + + tbl_size = (1ULL << log_size) * sizeof(u16); + rss->host_rss_ind_tbl = + devm_kzalloc(ena_dev->dmadev, tbl_size, GFP_KERNEL); + if (unlikely(!rss->host_rss_ind_tbl)) + goto mem_err2; + + rss->tbl_log_size = log_size; + + return 0; + +mem_err2: + tbl_size = (1ULL << log_size) * + sizeof(struct ena_admin_rss_ind_table_entry); + + dma_free_coherent(ena_dev->dmadev, tbl_size, rss->rss_ind_tbl, + rss->rss_ind_tbl_dma_addr); + rss->rss_ind_tbl = NULL; +mem_err1: + rss->tbl_log_size = 0; + return -ENOMEM; +} + +static void ena_com_indirect_table_destroy(struct ena_com_dev *ena_dev) +{ + struct ena_rss *rss = &ena_dev->rss; + size_t tbl_size = (1ULL << rss->tbl_log_size) * + sizeof(struct ena_admin_rss_ind_table_entry); + + if (rss->rss_ind_tbl) + dma_free_coherent(ena_dev->dmadev, tbl_size, rss->rss_ind_tbl, + rss->rss_ind_tbl_dma_addr); + rss->rss_ind_tbl = NULL; + + if (rss->host_rss_ind_tbl) + devm_kfree(ena_dev->dmadev, rss->host_rss_ind_tbl); + rss->host_rss_ind_tbl = NULL; +} + +static int ena_com_create_io_sq(struct ena_com_dev *ena_dev, + struct ena_com_io_sq *io_sq, u16 cq_idx) +{ + struct ena_com_admin_queue *admin_queue = &ena_dev->admin_queue; + struct ena_admin_aq_create_sq_cmd create_cmd; + struct ena_admin_acq_create_sq_resp_desc cmd_completion; + u8 direction; + int ret; + + memset(&create_cmd, 0x0, sizeof(struct ena_admin_aq_create_sq_cmd)); + + create_cmd.aq_common_descriptor.opcode = ENA_ADMIN_CREATE_SQ; + + if (io_sq->direction == ENA_COM_IO_QUEUE_DIRECTION_TX) + direction = ENA_ADMIN_SQ_DIRECTION_TX; + else + direction = ENA_ADMIN_SQ_DIRECTION_RX; + + create_cmd.sq_identity |= (direction << + ENA_ADMIN_AQ_CREATE_SQ_CMD_SQ_DIRECTION_SHIFT) & + ENA_ADMIN_AQ_CREATE_SQ_CMD_SQ_DIRECTION_MASK; + + create_cmd.sq_caps_2 |= io_sq->mem_queue_type & + ENA_ADMIN_AQ_CREATE_SQ_CMD_PLACEMENT_POLICY_MASK; + + create_cmd.sq_caps_2 |= (ENA_ADMIN_COMPLETION_POLICY_DESC << + ENA_ADMIN_AQ_CREATE_SQ_CMD_COMPLETION_POLICY_SHIFT) & + ENA_ADMIN_AQ_CREATE_SQ_CMD_COMPLETION_POLICY_MASK; + + create_cmd.sq_caps_3 |= + ENA_ADMIN_AQ_CREATE_SQ_CMD_IS_PHYSICALLY_CONTIGUOUS_MASK; + + create_cmd.cq_idx = cq_idx; + create_cmd.sq_depth = io_sq->q_depth; + + if (io_sq->mem_queue_type == ENA_ADMIN_PLACEMENT_POLICY_HOST) { + ret = ena_com_mem_addr_set(ena_dev, + &create_cmd.sq_ba, + io_sq->desc_addr.phys_addr); + if (unlikely(ret)) { + pr_err("memory address set failed\n"); + return ret; + } + } + + ret = ena_com_execute_admin_command(admin_queue, + (struct ena_admin_aq_entry *)&create_cmd, + sizeof(create_cmd), + (struct ena_admin_acq_entry *)&cmd_completion, + sizeof(cmd_completion)); + if (unlikely(ret)) { + pr_err("Failed to create IO SQ. error: %d\n", ret); + return ret; + } + + io_sq->idx = cmd_completion.sq_idx; + + io_sq->db_addr = (u32 __iomem *)((uintptr_t)ena_dev->reg_bar + + (uintptr_t)cmd_completion.sq_doorbell_offset); + + if (io_sq->mem_queue_type == ENA_ADMIN_PLACEMENT_POLICY_DEV) { + io_sq->header_addr = (u8 __iomem *)((uintptr_t)ena_dev->mem_bar + + cmd_completion.llq_headers_offset); + + io_sq->desc_addr.pbuf_dev_addr = + (u8 __iomem *)((uintptr_t)ena_dev->mem_bar + + cmd_completion.llq_descriptors_offset); + } + + pr_debug("created sq[%u], depth[%u]\n", io_sq->idx, io_sq->q_depth); + + return ret; +} + +static int ena_com_ind_tbl_convert_to_device(struct ena_com_dev *ena_dev) +{ + struct ena_rss *rss = &ena_dev->rss; + struct ena_com_io_sq *io_sq; + u16 qid; + int i; + + for (i = 0; i < 1 << rss->tbl_log_size; i++) { + qid = rss->host_rss_ind_tbl[i]; + if (qid >= ENA_TOTAL_NUM_QUEUES) + return -EINVAL; + + io_sq = &ena_dev->io_sq_queues[qid]; + + if (io_sq->direction != ENA_COM_IO_QUEUE_DIRECTION_RX) + return -EINVAL; + + rss->rss_ind_tbl[i].cq_idx = io_sq->idx; + } + + return 0; +} + +static int ena_com_ind_tbl_convert_from_device(struct ena_com_dev *ena_dev) +{ + u16 dev_idx_to_host_tbl[ENA_TOTAL_NUM_QUEUES] = { (u16)-1 }; + struct ena_rss *rss = &ena_dev->rss; + u8 idx; + u16 i; + + for (i = 0; i < ENA_TOTAL_NUM_QUEUES; i++) + dev_idx_to_host_tbl[ena_dev->io_sq_queues[i].idx] = i; + + for (i = 0; i < 1 << rss->tbl_log_size; i++) { + if (rss->rss_ind_tbl[i].cq_idx > ENA_TOTAL_NUM_QUEUES) + return -EINVAL; + idx = (u8)rss->rss_ind_tbl[i].cq_idx; + + if (dev_idx_to_host_tbl[idx] > ENA_TOTAL_NUM_QUEUES) + return -EINVAL; + + rss->host_rss_ind_tbl[i] = dev_idx_to_host_tbl[idx]; + } + + return 0; +} + +static int ena_com_init_interrupt_moderation_table(struct ena_com_dev *ena_dev) +{ + size_t size; + + size = sizeof(struct ena_intr_moder_entry) * ENA_INTR_MAX_NUM_OF_LEVELS; + + ena_dev->intr_moder_tbl = + devm_kzalloc(ena_dev->dmadev, size, GFP_KERNEL); + if (!ena_dev->intr_moder_tbl) + return -ENOMEM; + + ena_com_config_default_interrupt_moderation_table(ena_dev); + + return 0; +} + +static void ena_com_update_intr_delay_resolution(struct ena_com_dev *ena_dev, + u16 intr_delay_resolution) +{ + struct ena_intr_moder_entry *intr_moder_tbl = ena_dev->intr_moder_tbl; + unsigned int i; + + if (!intr_delay_resolution) { + pr_err("Illegal intr_delay_resolution provided. Going to use default 1 usec resolution\n"); + intr_delay_resolution = 1; + } + ena_dev->intr_delay_resolution = intr_delay_resolution; + + /* update Rx */ + for (i = 0; i < ENA_INTR_MAX_NUM_OF_LEVELS; i++) + intr_moder_tbl[i].intr_moder_interval /= intr_delay_resolution; + + /* update Tx */ + ena_dev->intr_moder_tx_interval /= intr_delay_resolution; +} + +/*****************************************************************************/ +/******************************* API ******************************/ +/*****************************************************************************/ + +int ena_com_execute_admin_command(struct ena_com_admin_queue *admin_queue, + struct ena_admin_aq_entry *cmd, + size_t cmd_size, + struct ena_admin_acq_entry *comp, + size_t comp_size) +{ + struct ena_comp_ctx *comp_ctx; + int ret; + + comp_ctx = ena_com_submit_admin_cmd(admin_queue, cmd, cmd_size, + comp, comp_size); + if (unlikely(IS_ERR(comp_ctx))) { + if (comp_ctx == ERR_PTR(-ENODEV)) + pr_debug("Failed to submit command [%ld]\n", + PTR_ERR(comp_ctx)); + else + pr_err("Failed to submit command [%ld]\n", + PTR_ERR(comp_ctx)); + + return PTR_ERR(comp_ctx); + } + + ret = ena_com_wait_and_process_admin_cq(comp_ctx, admin_queue); + if (unlikely(ret)) { + if (admin_queue->running_state) + pr_err("Failed to process command. ret = %d\n", ret); + else + pr_debug("Failed to process command. ret = %d\n", ret); + } + return ret; +} + +int ena_com_create_io_cq(struct ena_com_dev *ena_dev, + struct ena_com_io_cq *io_cq) +{ + struct ena_com_admin_queue *admin_queue = &ena_dev->admin_queue; + struct ena_admin_aq_create_cq_cmd create_cmd; + struct ena_admin_acq_create_cq_resp_desc cmd_completion; + int ret; + + memset(&create_cmd, 0x0, sizeof(struct ena_admin_aq_create_cq_cmd)); + + create_cmd.aq_common_descriptor.opcode = ENA_ADMIN_CREATE_CQ; + + create_cmd.cq_caps_2 |= (io_cq->cdesc_entry_size_in_bytes / 4) & + ENA_ADMIN_AQ_CREATE_CQ_CMD_CQ_ENTRY_SIZE_WORDS_MASK; + create_cmd.cq_caps_1 |= + ENA_ADMIN_AQ_CREATE_CQ_CMD_INTERRUPT_MODE_ENABLED_MASK; + + create_cmd.msix_vector = io_cq->msix_vector; + create_cmd.cq_depth = io_cq->q_depth; + + ret = ena_com_mem_addr_set(ena_dev, + &create_cmd.cq_ba, + io_cq->cdesc_addr.phys_addr); + if (unlikely(ret)) { + pr_err("memory address set failed\n"); + return ret; + } + + ret = ena_com_execute_admin_command(admin_queue, + (struct ena_admin_aq_entry *)&create_cmd, + sizeof(create_cmd), + (struct ena_admin_acq_entry *)&cmd_completion, + sizeof(cmd_completion)); + if (unlikely(ret)) { + pr_err("Failed to create IO CQ. error: %d\n", ret); + return ret; + } + + io_cq->idx = cmd_completion.cq_idx; + + io_cq->unmask_reg = (u32 __iomem *)((uintptr_t)ena_dev->reg_bar + + cmd_completion.cq_interrupt_unmask_register_offset); + + if (cmd_completion.cq_head_db_register_offset) + io_cq->cq_head_db_reg = + (u32 __iomem *)((uintptr_t)ena_dev->reg_bar + + cmd_completion.cq_head_db_register_offset); + + if (cmd_completion.numa_node_register_offset) + io_cq->numa_node_cfg_reg = + (u32 __iomem *)((uintptr_t)ena_dev->reg_bar + + cmd_completion.numa_node_register_offset); + + pr_debug("created cq[%u], depth[%u]\n", io_cq->idx, io_cq->q_depth); + + return ret; +} + +int ena_com_get_io_handlers(struct ena_com_dev *ena_dev, u16 qid, + struct ena_com_io_sq **io_sq, + struct ena_com_io_cq **io_cq) +{ + if (qid >= ENA_TOTAL_NUM_QUEUES) { + pr_err("Invalid queue number %d but the max is %d\n", qid, + ENA_TOTAL_NUM_QUEUES); + return -EINVAL; + } + + *io_sq = &ena_dev->io_sq_queues[qid]; + *io_cq = &ena_dev->io_cq_queues[qid]; + + return 0; +} + +void ena_com_abort_admin_commands(struct ena_com_dev *ena_dev) +{ + struct ena_com_admin_queue *admin_queue = &ena_dev->admin_queue; + struct ena_comp_ctx *comp_ctx; + u16 i; + + if (!admin_queue->comp_ctx) + return; + + for (i = 0; i < admin_queue->q_depth; i++) { + comp_ctx = get_comp_ctxt(admin_queue, i, false); + if (unlikely(!comp_ctx)) + break; + + comp_ctx->status = ENA_CMD_ABORTED; + + complete(&comp_ctx->wait_event); + } +} + +void ena_com_wait_for_abort_completion(struct ena_com_dev *ena_dev) +{ + struct ena_com_admin_queue *admin_queue = &ena_dev->admin_queue; + unsigned long flags; + + spin_lock_irqsave(&admin_queue->q_lock, flags); + while (atomic_read(&admin_queue->outstanding_cmds) != 0) { + spin_unlock_irqrestore(&admin_queue->q_lock, flags); + msleep(20); + spin_lock_irqsave(&admin_queue->q_lock, flags); + } + spin_unlock_irqrestore(&admin_queue->q_lock, flags); +} + +int ena_com_destroy_io_cq(struct ena_com_dev *ena_dev, + struct ena_com_io_cq *io_cq) +{ + struct ena_com_admin_queue *admin_queue = &ena_dev->admin_queue; + struct ena_admin_aq_destroy_cq_cmd destroy_cmd; + struct ena_admin_acq_destroy_cq_resp_desc destroy_resp; + int ret; + + memset(&destroy_cmd, 0x0, sizeof(struct ena_admin_aq_destroy_sq_cmd)); + + destroy_cmd.cq_idx = io_cq->idx; + destroy_cmd.aq_common_descriptor.opcode = ENA_ADMIN_DESTROY_CQ; + + ret = ena_com_execute_admin_command(admin_queue, + (struct ena_admin_aq_entry *)&destroy_cmd, + sizeof(destroy_cmd), + (struct ena_admin_acq_entry *)&destroy_resp, + sizeof(destroy_resp)); + + if (unlikely(ret && (ret != -ENODEV))) + pr_err("Failed to destroy IO CQ. error: %d\n", ret); + + return ret; +} + +bool ena_com_get_admin_running_state(struct ena_com_dev *ena_dev) +{ + return ena_dev->admin_queue.running_state; +} + +void ena_com_set_admin_running_state(struct ena_com_dev *ena_dev, bool state) +{ + struct ena_com_admin_queue *admin_queue = &ena_dev->admin_queue; + unsigned long flags; + + spin_lock_irqsave(&admin_queue->q_lock, flags); + ena_dev->admin_queue.running_state = state; + spin_unlock_irqrestore(&admin_queue->q_lock, flags); +} + +void ena_com_admin_aenq_enable(struct ena_com_dev *ena_dev) +{ + u16 depth = ena_dev->aenq.q_depth; + + WARN(ena_dev->aenq.head != depth, "Invalid AENQ state\n"); + + /* Init head_db to mark that all entries in the queue + * are initially available + */ + writel(depth, ena_dev->reg_bar + ENA_REGS_AENQ_HEAD_DB_OFF); +} + +int ena_com_set_aenq_config(struct ena_com_dev *ena_dev, u32 groups_flag) +{ + struct ena_com_admin_queue *admin_queue; + struct ena_admin_set_feat_cmd cmd; + struct ena_admin_set_feat_resp resp; + struct ena_admin_get_feat_resp get_resp; + int ret; + + ret = ena_com_get_feature(ena_dev, &get_resp, ENA_ADMIN_AENQ_CONFIG); + if (ret) { + pr_info("Can't get aenq configuration\n"); + return ret; + } + + if ((get_resp.u.aenq.supported_groups & groups_flag) != groups_flag) { + pr_warn("Trying to set unsupported aenq events. supported flag: %x asked flag: %x\n", + get_resp.u.aenq.supported_groups, groups_flag); + return -EPERM; + } + + memset(&cmd, 0x0, sizeof(cmd)); + admin_queue = &ena_dev->admin_queue; + + cmd.aq_common_descriptor.opcode = ENA_ADMIN_SET_FEATURE; + cmd.aq_common_descriptor.flags = 0; + cmd.feat_common.feature_id = ENA_ADMIN_AENQ_CONFIG; + cmd.u.aenq.enabled_groups = groups_flag; + + ret = ena_com_execute_admin_command(admin_queue, + (struct ena_admin_aq_entry *)&cmd, + sizeof(cmd), + (struct ena_admin_acq_entry *)&resp, + sizeof(resp)); + + if (unlikely(ret)) + pr_err("Failed to config AENQ ret: %d\n", ret); + + return ret; +} + +int ena_com_get_dma_width(struct ena_com_dev *ena_dev) +{ + u32 caps = ena_com_reg_bar_read32(ena_dev, ENA_REGS_CAPS_OFF); + int width; + + if (unlikely(caps == ENA_MMIO_READ_TIMEOUT)) { + pr_err("Reg read timeout occurred\n"); + return -ETIME; + } + + width = (caps & ENA_REGS_CAPS_DMA_ADDR_WIDTH_MASK) >> + ENA_REGS_CAPS_DMA_ADDR_WIDTH_SHIFT; + + pr_debug("ENA dma width: %d\n", width); + + if ((width < 32) || width > ENA_MAX_PHYS_ADDR_SIZE_BITS) { + pr_err("DMA width illegal value: %d\n", width); + return -EINVAL; + } + + ena_dev->dma_addr_bits = width; + + return width; +} + +int ena_com_validate_version(struct ena_com_dev *ena_dev) +{ + u32 ver; + u32 ctrl_ver; + u32 ctrl_ver_masked; + + /* Make sure the ENA version and the controller version are at least + * as the driver expects + */ + ver = ena_com_reg_bar_read32(ena_dev, ENA_REGS_VERSION_OFF); + ctrl_ver = ena_com_reg_bar_read32(ena_dev, + ENA_REGS_CONTROLLER_VERSION_OFF); + + if (unlikely((ver == ENA_MMIO_READ_TIMEOUT) || + (ctrl_ver == ENA_MMIO_READ_TIMEOUT))) { + pr_err("Reg read timeout occurred\n"); + return -ETIME; + } + + pr_info("ena device version: %d.%d\n", + (ver & ENA_REGS_VERSION_MAJOR_VERSION_MASK) >> + ENA_REGS_VERSION_MAJOR_VERSION_SHIFT, + ver & ENA_REGS_VERSION_MINOR_VERSION_MASK); + + if (ver < MIN_ENA_VER) { + pr_err("ENA version is lower than the minimal version the driver supports\n"); + return -1; + } + + pr_info("ena controller version: %d.%d.%d implementation version %d\n", + (ctrl_ver & ENA_REGS_CONTROLLER_VERSION_MAJOR_VERSION_MASK) >> + ENA_REGS_CONTROLLER_VERSION_MAJOR_VERSION_SHIFT, + (ctrl_ver & ENA_REGS_CONTROLLER_VERSION_MINOR_VERSION_MASK) >> + ENA_REGS_CONTROLLER_VERSION_MINOR_VERSION_SHIFT, + (ctrl_ver & ENA_REGS_CONTROLLER_VERSION_SUBMINOR_VERSION_MASK), + (ctrl_ver & ENA_REGS_CONTROLLER_VERSION_IMPL_ID_MASK) >> + ENA_REGS_CONTROLLER_VERSION_IMPL_ID_SHIFT); + + ctrl_ver_masked = + (ctrl_ver & ENA_REGS_CONTROLLER_VERSION_MAJOR_VERSION_MASK) | + (ctrl_ver & ENA_REGS_CONTROLLER_VERSION_MINOR_VERSION_MASK) | + (ctrl_ver & ENA_REGS_CONTROLLER_VERSION_SUBMINOR_VERSION_MASK); + + /* Validate the ctrl version without the implementation ID */ + if (ctrl_ver_masked < MIN_ENA_CTRL_VER) { + pr_err("ENA ctrl version is lower than the minimal ctrl version the driver supports\n"); + return -1; + } + + return 0; +} + +void ena_com_admin_destroy(struct ena_com_dev *ena_dev) +{ + struct ena_com_admin_queue *admin_queue = &ena_dev->admin_queue; + struct ena_com_admin_cq *cq = &admin_queue->cq; + struct ena_com_admin_sq *sq = &admin_queue->sq; + struct ena_com_aenq *aenq = &ena_dev->aenq; + u16 size; + + if (admin_queue->comp_ctx) + devm_kfree(ena_dev->dmadev, admin_queue->comp_ctx); + admin_queue->comp_ctx = NULL; + size = ADMIN_SQ_SIZE(admin_queue->q_depth); + if (sq->entries) + dma_free_coherent(ena_dev->dmadev, size, sq->entries, + sq->dma_addr); + sq->entries = NULL; + + size = ADMIN_CQ_SIZE(admin_queue->q_depth); + if (cq->entries) + dma_free_coherent(ena_dev->dmadev, size, cq->entries, + cq->dma_addr); + cq->entries = NULL; + + size = ADMIN_AENQ_SIZE(aenq->q_depth); + if (ena_dev->aenq.entries) + dma_free_coherent(ena_dev->dmadev, size, aenq->entries, + aenq->dma_addr); + aenq->entries = NULL; +} + +void ena_com_set_admin_polling_mode(struct ena_com_dev *ena_dev, bool polling) +{ + ena_dev->admin_queue.polling = polling; +} + +int ena_com_mmio_reg_read_request_init(struct ena_com_dev *ena_dev) +{ + struct ena_com_mmio_read *mmio_read = &ena_dev->mmio_read; + + spin_lock_init(&mmio_read->lock); + mmio_read->read_resp = + dma_zalloc_coherent(ena_dev->dmadev, + sizeof(*mmio_read->read_resp), + &mmio_read->read_resp_dma_addr, GFP_KERNEL); + if (unlikely(!mmio_read->read_resp)) + return -ENOMEM; + + ena_com_mmio_reg_read_request_write_dev_addr(ena_dev); + + mmio_read->read_resp->req_id = 0x0; + mmio_read->seq_num = 0x0; + mmio_read->readless_supported = true; + + return 0; +} + +void ena_com_set_mmio_read_mode(struct ena_com_dev *ena_dev, bool readless_supported) +{ + struct ena_com_mmio_read *mmio_read = &ena_dev->mmio_read; + + mmio_read->readless_supported = readless_supported; +} + +void ena_com_mmio_reg_read_request_destroy(struct ena_com_dev *ena_dev) +{ + struct ena_com_mmio_read *mmio_read = &ena_dev->mmio_read; + + writel(0x0, ena_dev->reg_bar + ENA_REGS_MMIO_RESP_LO_OFF); + writel(0x0, ena_dev->reg_bar + ENA_REGS_MMIO_RESP_HI_OFF); + + dma_free_coherent(ena_dev->dmadev, sizeof(*mmio_read->read_resp), + mmio_read->read_resp, mmio_read->read_resp_dma_addr); + + mmio_read->read_resp = NULL; +} + +void ena_com_mmio_reg_read_request_write_dev_addr(struct ena_com_dev *ena_dev) +{ + struct ena_com_mmio_read *mmio_read = &ena_dev->mmio_read; + u32 addr_low, addr_high; + + addr_low = ENA_DMA_ADDR_TO_UINT32_LOW(mmio_read->read_resp_dma_addr); + addr_high = ENA_DMA_ADDR_TO_UINT32_HIGH(mmio_read->read_resp_dma_addr); + + writel(addr_low, ena_dev->reg_bar + ENA_REGS_MMIO_RESP_LO_OFF); + writel(addr_high, ena_dev->reg_bar + ENA_REGS_MMIO_RESP_HI_OFF); +} + +int ena_com_admin_init(struct ena_com_dev *ena_dev, + struct ena_aenq_handlers *aenq_handlers, + bool init_spinlock) +{ + struct ena_com_admin_queue *admin_queue = &ena_dev->admin_queue; + u32 aq_caps, acq_caps, dev_sts, addr_low, addr_high; + int ret; + + dev_sts = ena_com_reg_bar_read32(ena_dev, ENA_REGS_DEV_STS_OFF); + + if (unlikely(dev_sts == ENA_MMIO_READ_TIMEOUT)) { + pr_err("Reg read timeout occurred\n"); + return -ETIME; + } + + if (!(dev_sts & ENA_REGS_DEV_STS_READY_MASK)) { + pr_err("Device isn't ready, abort com init\n"); + return -ENODEV; + } + + admin_queue->q_depth = ENA_ADMIN_QUEUE_DEPTH; + + admin_queue->q_dmadev = ena_dev->dmadev; + admin_queue->polling = false; + admin_queue->curr_cmd_id = 0; + + atomic_set(&admin_queue->outstanding_cmds, 0); + + if (init_spinlock) + spin_lock_init(&admin_queue->q_lock); + + ret = ena_com_init_comp_ctxt(admin_queue); + if (ret) + goto error; + + ret = ena_com_admin_init_sq(admin_queue); + if (ret) + goto error; + + ret = ena_com_admin_init_cq(admin_queue); + if (ret) + goto error; + + admin_queue->sq.db_addr = (u32 __iomem *)((uintptr_t)ena_dev->reg_bar + + ENA_REGS_AQ_DB_OFF); + + addr_low = ENA_DMA_ADDR_TO_UINT32_LOW(admin_queue->sq.dma_addr); + addr_high = ENA_DMA_ADDR_TO_UINT32_HIGH(admin_queue->sq.dma_addr); + + writel(addr_low, ena_dev->reg_bar + ENA_REGS_AQ_BASE_LO_OFF); + writel(addr_high, ena_dev->reg_bar + ENA_REGS_AQ_BASE_HI_OFF); + + addr_low = ENA_DMA_ADDR_TO_UINT32_LOW(admin_queue->cq.dma_addr); + addr_high = ENA_DMA_ADDR_TO_UINT32_HIGH(admin_queue->cq.dma_addr); + + writel(addr_low, ena_dev->reg_bar + ENA_REGS_ACQ_BASE_LO_OFF); + writel(addr_high, ena_dev->reg_bar + ENA_REGS_ACQ_BASE_HI_OFF); + + aq_caps = 0; + aq_caps |= admin_queue->q_depth & ENA_REGS_AQ_CAPS_AQ_DEPTH_MASK; + aq_caps |= (sizeof(struct ena_admin_aq_entry) << + ENA_REGS_AQ_CAPS_AQ_ENTRY_SIZE_SHIFT) & + ENA_REGS_AQ_CAPS_AQ_ENTRY_SIZE_MASK; + + acq_caps = 0; + acq_caps |= admin_queue->q_depth & ENA_REGS_ACQ_CAPS_ACQ_DEPTH_MASK; + acq_caps |= (sizeof(struct ena_admin_acq_entry) << + ENA_REGS_ACQ_CAPS_ACQ_ENTRY_SIZE_SHIFT) & + ENA_REGS_ACQ_CAPS_ACQ_ENTRY_SIZE_MASK; + + writel(aq_caps, ena_dev->reg_bar + ENA_REGS_AQ_CAPS_OFF); + writel(acq_caps, ena_dev->reg_bar + ENA_REGS_ACQ_CAPS_OFF); + ret = ena_com_admin_init_aenq(ena_dev, aenq_handlers); + if (ret) + goto error; + + admin_queue->running_state = true; + + return 0; +error: + ena_com_admin_destroy(ena_dev); + + return ret; +} + +int ena_com_create_io_queue(struct ena_com_dev *ena_dev, + struct ena_com_create_io_ctx *ctx) +{ + struct ena_com_io_sq *io_sq; + struct ena_com_io_cq *io_cq; + int ret; + + if (ctx->qid >= ENA_TOTAL_NUM_QUEUES) { + pr_err("Qid (%d) is bigger than max num of queues (%d)\n", + ctx->qid, ENA_TOTAL_NUM_QUEUES); + return -EINVAL; + } + + io_sq = &ena_dev->io_sq_queues[ctx->qid]; + io_cq = &ena_dev->io_cq_queues[ctx->qid]; + + memset(io_sq, 0x0, sizeof(struct ena_com_io_sq)); + memset(io_cq, 0x0, sizeof(struct ena_com_io_cq)); + + /* Init CQ */ + io_cq->q_depth = ctx->queue_size; + io_cq->direction = ctx->direction; + io_cq->qid = ctx->qid; + + io_cq->msix_vector = ctx->msix_vector; + + io_sq->q_depth = ctx->queue_size; + io_sq->direction = ctx->direction; + io_sq->qid = ctx->qid; + + io_sq->mem_queue_type = ctx->mem_queue_type; + + if (ctx->direction == ENA_COM_IO_QUEUE_DIRECTION_TX) + /* header length is limited to 8 bits */ + io_sq->tx_max_header_size = + min_t(u32, ena_dev->tx_max_header_size, SZ_256); + + ret = ena_com_init_io_sq(ena_dev, ctx, io_sq); + if (ret) + goto error; + ret = ena_com_init_io_cq(ena_dev, ctx, io_cq); + if (ret) + goto error; + + ret = ena_com_create_io_cq(ena_dev, io_cq); + if (ret) + goto error; + + ret = ena_com_create_io_sq(ena_dev, io_sq, io_cq->idx); + if (ret) + goto destroy_io_cq; + + return 0; + +destroy_io_cq: + ena_com_destroy_io_cq(ena_dev, io_cq); +error: + ena_com_io_queue_free(ena_dev, io_sq, io_cq); + return ret; +} + +void ena_com_destroy_io_queue(struct ena_com_dev *ena_dev, u16 qid) +{ + struct ena_com_io_sq *io_sq; + struct ena_com_io_cq *io_cq; + + if (qid >= ENA_TOTAL_NUM_QUEUES) { + pr_err("Qid (%d) is bigger than max num of queues (%d)\n", qid, + ENA_TOTAL_NUM_QUEUES); + return; + } + + io_sq = &ena_dev->io_sq_queues[qid]; + io_cq = &ena_dev->io_cq_queues[qid]; + + ena_com_destroy_io_sq(ena_dev, io_sq); + ena_com_destroy_io_cq(ena_dev, io_cq); + + ena_com_io_queue_free(ena_dev, io_sq, io_cq); +} + +int ena_com_get_link_params(struct ena_com_dev *ena_dev, + struct ena_admin_get_feat_resp *resp) +{ + return ena_com_get_feature(ena_dev, resp, ENA_ADMIN_LINK_CONFIG); +} + +int ena_com_get_dev_attr_feat(struct ena_com_dev *ena_dev, + struct ena_com_dev_get_features_ctx *get_feat_ctx) +{ + struct ena_admin_get_feat_resp get_resp; + int rc; + + rc = ena_com_get_feature(ena_dev, &get_resp, + ENA_ADMIN_DEVICE_ATTRIBUTES); + if (rc) + return rc; + + memcpy(&get_feat_ctx->dev_attr, &get_resp.u.dev_attr, + sizeof(get_resp.u.dev_attr)); + ena_dev->supported_features = get_resp.u.dev_attr.supported_features; + + rc = ena_com_get_feature(ena_dev, &get_resp, + ENA_ADMIN_MAX_QUEUES_NUM); + if (rc) + return rc; + + memcpy(&get_feat_ctx->max_queues, &get_resp.u.max_queue, + sizeof(get_resp.u.max_queue)); + ena_dev->tx_max_header_size = get_resp.u.max_queue.max_header_size; + + rc = ena_com_get_feature(ena_dev, &get_resp, + ENA_ADMIN_AENQ_CONFIG); + if (rc) + return rc; + + memcpy(&get_feat_ctx->aenq, &get_resp.u.aenq, + sizeof(get_resp.u.aenq)); + + rc = ena_com_get_feature(ena_dev, &get_resp, + ENA_ADMIN_STATELESS_OFFLOAD_CONFIG); + if (rc) + return rc; + + memcpy(&get_feat_ctx->offload, &get_resp.u.offload, + sizeof(get_resp.u.offload)); + + return 0; +} + +void ena_com_admin_q_comp_intr_handler(struct ena_com_dev *ena_dev) +{ + ena_com_handle_admin_completion(&ena_dev->admin_queue); +} + +/* ena_handle_specific_aenq_event: + * return the handler that is relevant to the specific event group + */ +static ena_aenq_handler ena_com_get_specific_aenq_cb(struct ena_com_dev *dev, + u16 group) +{ + struct ena_aenq_handlers *aenq_handlers = dev->aenq.aenq_handlers; + + if ((group < ENA_MAX_HANDLERS) && aenq_handlers->handlers[group]) + return aenq_handlers->handlers[group]; + + return aenq_handlers->unimplemented_handler; +} + +/* ena_aenq_intr_handler: + * handles the aenq incoming events. + * pop events from the queue and apply the specific handler + */ +void ena_com_aenq_intr_handler(struct ena_com_dev *dev, void *data) +{ + struct ena_admin_aenq_entry *aenq_e; + struct ena_admin_aenq_common_desc *aenq_common; + struct ena_com_aenq *aenq = &dev->aenq; + ena_aenq_handler handler_cb; + u16 masked_head, processed = 0; + u8 phase; + + masked_head = aenq->head & (aenq->q_depth - 1); + phase = aenq->phase; + aenq_e = &aenq->entries[masked_head]; /* Get first entry */ + aenq_common = &aenq_e->aenq_common_desc; + + /* Go over all the events */ + while ((aenq_common->flags & ENA_ADMIN_AENQ_COMMON_DESC_PHASE_MASK) == + phase) { + pr_debug("AENQ! Group[%x] Syndrom[%x] timestamp: [%llus]\n", + aenq_common->group, aenq_common->syndrom, + (u64)aenq_common->timestamp_low + + ((u64)aenq_common->timestamp_high << 32)); + + /* Handle specific event*/ + handler_cb = ena_com_get_specific_aenq_cb(dev, + aenq_common->group); + handler_cb(data, aenq_e); /* call the actual event handler*/ + + /* Get next event entry */ + masked_head++; + processed++; + + if (unlikely(masked_head == aenq->q_depth)) { + masked_head = 0; + phase = !phase; + } + aenq_e = &aenq->entries[masked_head]; + aenq_common = &aenq_e->aenq_common_desc; + } + + aenq->head += processed; + aenq->phase = phase; + + /* Don't update aenq doorbell if there weren't any processed events */ + if (!processed) + return; + + /* write the aenq doorbell after all AENQ descriptors were read */ + mb(); + writel((u32)aenq->head, dev->reg_bar + ENA_REGS_AENQ_HEAD_DB_OFF); +} + +int ena_com_dev_reset(struct ena_com_dev *ena_dev) +{ + u32 stat, timeout, cap, reset_val; + int rc; + + stat = ena_com_reg_bar_read32(ena_dev, ENA_REGS_DEV_STS_OFF); + cap = ena_com_reg_bar_read32(ena_dev, ENA_REGS_CAPS_OFF); + + if (unlikely((stat == ENA_MMIO_READ_TIMEOUT) || + (cap == ENA_MMIO_READ_TIMEOUT))) { + pr_err("Reg read32 timeout occurred\n"); + return -ETIME; + } + + if ((stat & ENA_REGS_DEV_STS_READY_MASK) == 0) { + pr_err("Device isn't ready, can't reset device\n"); + return -EINVAL; + } + + timeout = (cap & ENA_REGS_CAPS_RESET_TIMEOUT_MASK) >> + ENA_REGS_CAPS_RESET_TIMEOUT_SHIFT; + if (timeout == 0) { + pr_err("Invalid timeout value\n"); + return -EINVAL; + } + + /* start reset */ + reset_val = ENA_REGS_DEV_CTL_DEV_RESET_MASK; + writel(reset_val, ena_dev->reg_bar + ENA_REGS_DEV_CTL_OFF); + + /* Write again the MMIO read request address */ + ena_com_mmio_reg_read_request_write_dev_addr(ena_dev); + + rc = wait_for_reset_state(ena_dev, timeout, + ENA_REGS_DEV_STS_RESET_IN_PROGRESS_MASK); + if (rc != 0) { + pr_err("Reset indication didn't turn on\n"); + return rc; + } + + /* reset done */ + writel(0, ena_dev->reg_bar + ENA_REGS_DEV_CTL_OFF); + rc = wait_for_reset_state(ena_dev, timeout, 0); + if (rc != 0) { + pr_err("Reset indication didn't turn off\n"); + return rc; + } + + return 0; +} + +static int ena_get_dev_stats(struct ena_com_dev *ena_dev, + struct ena_com_stats_ctx *ctx, + enum ena_admin_get_stats_type type) +{ + struct ena_admin_aq_get_stats_cmd *get_cmd = &ctx->get_cmd; + struct ena_admin_acq_get_stats_resp *get_resp = &ctx->get_resp; + struct ena_com_admin_queue *admin_queue; + int ret; + + admin_queue = &ena_dev->admin_queue; + + get_cmd->aq_common_descriptor.opcode = ENA_ADMIN_GET_STATS; + get_cmd->aq_common_descriptor.flags = 0; + get_cmd->type = type; + + ret = ena_com_execute_admin_command(admin_queue, + (struct ena_admin_aq_entry *)get_cmd, + sizeof(*get_cmd), + (struct ena_admin_acq_entry *)get_resp, + sizeof(*get_resp)); + + if (unlikely(ret)) + pr_err("Failed to get stats. error: %d\n", ret); + + return ret; +} + +int ena_com_get_dev_basic_stats(struct ena_com_dev *ena_dev, + struct ena_admin_basic_stats *stats) +{ + struct ena_com_stats_ctx ctx; + int ret; + + memset(&ctx, 0x0, sizeof(ctx)); + ret = ena_get_dev_stats(ena_dev, &ctx, ENA_ADMIN_GET_STATS_TYPE_BASIC); + if (likely(ret == 0)) + memcpy(stats, &ctx.get_resp.basic_stats, + sizeof(ctx.get_resp.basic_stats)); + + return ret; +} + +int ena_com_set_dev_mtu(struct ena_com_dev *ena_dev, int mtu) +{ + struct ena_com_admin_queue *admin_queue; + struct ena_admin_set_feat_cmd cmd; + struct ena_admin_set_feat_resp resp; + int ret; + + if (!ena_com_check_supported_feature_id(ena_dev, ENA_ADMIN_MTU)) { + pr_debug("Feature %d isn't supported\n", ENA_ADMIN_MTU); + return -EPERM; + } + + memset(&cmd, 0x0, sizeof(cmd)); + admin_queue = &ena_dev->admin_queue; + + cmd.aq_common_descriptor.opcode = ENA_ADMIN_SET_FEATURE; + cmd.aq_common_descriptor.flags = 0; + cmd.feat_common.feature_id = ENA_ADMIN_MTU; + cmd.u.mtu.mtu = mtu; + + ret = ena_com_execute_admin_command(admin_queue, + (struct ena_admin_aq_entry *)&cmd, + sizeof(cmd), + (struct ena_admin_acq_entry *)&resp, + sizeof(resp)); + + if (unlikely(ret)) + pr_err("Failed to set mtu %d. error: %d\n", mtu, ret); + + return ret; +} + +int ena_com_get_offload_settings(struct ena_com_dev *ena_dev, + struct ena_admin_feature_offload_desc *offload) +{ + int ret; + struct ena_admin_get_feat_resp resp; + + ret = ena_com_get_feature(ena_dev, &resp, + ENA_ADMIN_STATELESS_OFFLOAD_CONFIG); + if (unlikely(ret)) { + pr_err("Failed to get offload capabilities %d\n", ret); + return ret; + } + + memcpy(offload, &resp.u.offload, sizeof(resp.u.offload)); + + return 0; +} + +int ena_com_set_hash_function(struct ena_com_dev *ena_dev) +{ + struct ena_com_admin_queue *admin_queue = &ena_dev->admin_queue; + struct ena_rss *rss = &ena_dev->rss; + struct ena_admin_set_feat_cmd cmd; + struct ena_admin_set_feat_resp resp; + struct ena_admin_get_feat_resp get_resp; + int ret; + + if (!ena_com_check_supported_feature_id(ena_dev, + ENA_ADMIN_RSS_HASH_FUNCTION)) { + pr_debug("Feature %d isn't supported\n", + ENA_ADMIN_RSS_HASH_FUNCTION); + return -EPERM; + } + + /* Validate hash function is supported */ + ret = ena_com_get_feature(ena_dev, &get_resp, + ENA_ADMIN_RSS_HASH_FUNCTION); + if (unlikely(ret)) + return ret; + + if (get_resp.u.flow_hash_func.supported_func & (1 << rss->hash_func)) { + pr_err("Func hash %d isn't supported by device, abort\n", + rss->hash_func); + return -EPERM; + } + + memset(&cmd, 0x0, sizeof(cmd)); + + cmd.aq_common_descriptor.opcode = ENA_ADMIN_SET_FEATURE; + cmd.aq_common_descriptor.flags = + ENA_ADMIN_AQ_COMMON_DESC_CTRL_DATA_INDIRECT_MASK; + cmd.feat_common.feature_id = ENA_ADMIN_RSS_HASH_FUNCTION; + cmd.u.flow_hash_func.init_val = rss->hash_init_val; + cmd.u.flow_hash_func.selected_func = 1 << rss->hash_func; + + ret = ena_com_mem_addr_set(ena_dev, + &cmd.control_buffer.address, + rss->hash_key_dma_addr); + if (unlikely(ret)) { + pr_err("memory address set failed\n"); + return ret; + } + + cmd.control_buffer.length = sizeof(*rss->hash_key); + + ret = ena_com_execute_admin_command(admin_queue, + (struct ena_admin_aq_entry *)&cmd, + sizeof(cmd), + (struct ena_admin_acq_entry *)&resp, + sizeof(resp)); + if (unlikely(ret)) { + pr_err("Failed to set hash function %d. error: %d\n", + rss->hash_func, ret); + return -EINVAL; + } + + return 0; +} + +int ena_com_fill_hash_function(struct ena_com_dev *ena_dev, + enum ena_admin_hash_functions func, + const u8 *key, u16 key_len, u32 init_val) +{ + struct ena_rss *rss = &ena_dev->rss; + struct ena_admin_get_feat_resp get_resp; + struct ena_admin_feature_rss_flow_hash_control *hash_key = + rss->hash_key; + int rc; + + /* Make sure size is a mult of DWs */ + if (unlikely(key_len & 0x3)) + return -EINVAL; + + rc = ena_com_get_feature_ex(ena_dev, &get_resp, + ENA_ADMIN_RSS_HASH_FUNCTION, + rss->hash_key_dma_addr, + sizeof(*rss->hash_key)); + if (unlikely(rc)) + return rc; + + if (!((1 << func) & get_resp.u.flow_hash_func.supported_func)) { + pr_err("Flow hash function %d isn't supported\n", func); + return -EPERM; + } + + switch (func) { + case ENA_ADMIN_TOEPLITZ: + if (key_len > sizeof(hash_key->key)) { + pr_err("key len (%hu) is bigger than the max supported (%zu)\n", + key_len, sizeof(hash_key->key)); + return -EINVAL; + } + + memcpy(hash_key->key, key, key_len); + rss->hash_init_val = init_val; + hash_key->keys_num = key_len >> 2; + break; + case ENA_ADMIN_CRC32: + rss->hash_init_val = init_val; + break; + default: + pr_err("Invalid hash function (%d)\n", func); + return -EINVAL; + } + + rc = ena_com_set_hash_function(ena_dev); + + /* Restore the old function */ + if (unlikely(rc)) + ena_com_get_hash_function(ena_dev, NULL, NULL); + + return rc; +} + +int ena_com_get_hash_function(struct ena_com_dev *ena_dev, + enum ena_admin_hash_functions *func, + u8 *key) +{ + struct ena_rss *rss = &ena_dev->rss; + struct ena_admin_get_feat_resp get_resp; + struct ena_admin_feature_rss_flow_hash_control *hash_key = + rss->hash_key; + int rc; + + rc = ena_com_get_feature_ex(ena_dev, &get_resp, + ENA_ADMIN_RSS_HASH_FUNCTION, + rss->hash_key_dma_addr, + sizeof(*rss->hash_key)); + if (unlikely(rc)) + return rc; + + rss->hash_func = get_resp.u.flow_hash_func.selected_func; + if (func) + *func = rss->hash_func; + + if (key) + memcpy(key, hash_key->key, (size_t)(hash_key->keys_num) << 2); + + return 0; +} + +int ena_com_get_hash_ctrl(struct ena_com_dev *ena_dev, + enum ena_admin_flow_hash_proto proto, + u16 *fields) +{ + struct ena_rss *rss = &ena_dev->rss; + struct ena_admin_get_feat_resp get_resp; + int rc; + + rc = ena_com_get_feature_ex(ena_dev, &get_resp, + ENA_ADMIN_RSS_HASH_INPUT, + rss->hash_ctrl_dma_addr, + sizeof(*rss->hash_ctrl)); + if (unlikely(rc)) + return rc; + + if (fields) + *fields = rss->hash_ctrl->selected_fields[proto].fields; + + return 0; +} + +int ena_com_set_hash_ctrl(struct ena_com_dev *ena_dev) +{ + struct ena_com_admin_queue *admin_queue = &ena_dev->admin_queue; + struct ena_rss *rss = &ena_dev->rss; + struct ena_admin_feature_rss_hash_control *hash_ctrl = rss->hash_ctrl; + struct ena_admin_set_feat_cmd cmd; + struct ena_admin_set_feat_resp resp; + int ret; + + if (!ena_com_check_supported_feature_id(ena_dev, + ENA_ADMIN_RSS_HASH_INPUT)) { + pr_debug("Feature %d isn't supported\n", + ENA_ADMIN_RSS_HASH_INPUT); + return -EPERM; + } + + memset(&cmd, 0x0, sizeof(cmd)); + + cmd.aq_common_descriptor.opcode = ENA_ADMIN_SET_FEATURE; + cmd.aq_common_descriptor.flags = + ENA_ADMIN_AQ_COMMON_DESC_CTRL_DATA_INDIRECT_MASK; + cmd.feat_common.feature_id = ENA_ADMIN_RSS_HASH_INPUT; + cmd.u.flow_hash_input.enabled_input_sort = + ENA_ADMIN_FEATURE_RSS_FLOW_HASH_INPUT_L3_SORT_MASK | + ENA_ADMIN_FEATURE_RSS_FLOW_HASH_INPUT_L4_SORT_MASK; + + ret = ena_com_mem_addr_set(ena_dev, + &cmd.control_buffer.address, + rss->hash_ctrl_dma_addr); + if (unlikely(ret)) { + pr_err("memory address set failed\n"); + return ret; + } + cmd.control_buffer.length = sizeof(*hash_ctrl); + + ret = ena_com_execute_admin_command(admin_queue, + (struct ena_admin_aq_entry *)&cmd, + sizeof(cmd), + (struct ena_admin_acq_entry *)&resp, + sizeof(resp)); + if (unlikely(ret)) + pr_err("Failed to set hash input. error: %d\n", ret); + + return ret; +} + +int ena_com_set_default_hash_ctrl(struct ena_com_dev *ena_dev) +{ + struct ena_rss *rss = &ena_dev->rss; + struct ena_admin_feature_rss_hash_control *hash_ctrl = + rss->hash_ctrl; + u16 available_fields = 0; + int rc, i; + + /* Get the supported hash input */ + rc = ena_com_get_hash_ctrl(ena_dev, 0, NULL); + if (unlikely(rc)) + return rc; + + hash_ctrl->selected_fields[ENA_ADMIN_RSS_TCP4].fields = + ENA_ADMIN_RSS_L3_SA | ENA_ADMIN_RSS_L3_DA | + ENA_ADMIN_RSS_L4_DP | ENA_ADMIN_RSS_L4_SP; + + hash_ctrl->selected_fields[ENA_ADMIN_RSS_UDP4].fields = + ENA_ADMIN_RSS_L3_SA | ENA_ADMIN_RSS_L3_DA | + ENA_ADMIN_RSS_L4_DP | ENA_ADMIN_RSS_L4_SP; + + hash_ctrl->selected_fields[ENA_ADMIN_RSS_TCP6].fields = + ENA_ADMIN_RSS_L3_SA | ENA_ADMIN_RSS_L3_DA | + ENA_ADMIN_RSS_L4_DP | ENA_ADMIN_RSS_L4_SP; + + hash_ctrl->selected_fields[ENA_ADMIN_RSS_UDP6].fields = + ENA_ADMIN_RSS_L3_SA | ENA_ADMIN_RSS_L3_DA | + ENA_ADMIN_RSS_L4_DP | ENA_ADMIN_RSS_L4_SP; + + hash_ctrl->selected_fields[ENA_ADMIN_RSS_IP4].fields = + ENA_ADMIN_RSS_L3_SA | ENA_ADMIN_RSS_L3_DA; + + hash_ctrl->selected_fields[ENA_ADMIN_RSS_IP6].fields = + ENA_ADMIN_RSS_L3_SA | ENA_ADMIN_RSS_L3_DA; + + hash_ctrl->selected_fields[ENA_ADMIN_RSS_IP4_FRAG].fields = + ENA_ADMIN_RSS_L3_SA | ENA_ADMIN_RSS_L3_DA; + + hash_ctrl->selected_fields[ENA_ADMIN_RSS_NOT_IP].fields = + ENA_ADMIN_RSS_L2_DA | ENA_ADMIN_RSS_L2_SA; + + for (i = 0; i < ENA_ADMIN_RSS_PROTO_NUM; i++) { + available_fields = hash_ctrl->selected_fields[i].fields & + hash_ctrl->supported_fields[i].fields; + if (available_fields != hash_ctrl->selected_fields[i].fields) { + pr_err("hash control doesn't support all the desire configuration. proto %x supported %x selected %x\n", + i, hash_ctrl->supported_fields[i].fields, + hash_ctrl->selected_fields[i].fields); + return -EPERM; + } + } + + rc = ena_com_set_hash_ctrl(ena_dev); + + /* In case of failure, restore the old hash ctrl */ + if (unlikely(rc)) + ena_com_get_hash_ctrl(ena_dev, 0, NULL); + + return rc; +} + +int ena_com_fill_hash_ctrl(struct ena_com_dev *ena_dev, + enum ena_admin_flow_hash_proto proto, + u16 hash_fields) +{ + struct ena_rss *rss = &ena_dev->rss; + struct ena_admin_feature_rss_hash_control *hash_ctrl = rss->hash_ctrl; + u16 supported_fields; + int rc; + + if (proto >= ENA_ADMIN_RSS_PROTO_NUM) { + pr_err("Invalid proto num (%u)\n", proto); + return -EINVAL; + } + + /* Get the ctrl table */ + rc = ena_com_get_hash_ctrl(ena_dev, proto, NULL); + if (unlikely(rc)) + return rc; + + /* Make sure all the fields are supported */ + supported_fields = hash_ctrl->supported_fields[proto].fields; + if ((hash_fields & supported_fields) != hash_fields) { + pr_err("proto %d doesn't support the required fields %x. supports only: %x\n", + proto, hash_fields, supported_fields); + } + + hash_ctrl->selected_fields[proto].fields = hash_fields; + + rc = ena_com_set_hash_ctrl(ena_dev); + + /* In case of failure, restore the old hash ctrl */ + if (unlikely(rc)) + ena_com_get_hash_ctrl(ena_dev, 0, NULL); + + return 0; +} + +int ena_com_indirect_table_fill_entry(struct ena_com_dev *ena_dev, + u16 entry_idx, u16 entry_value) +{ + struct ena_rss *rss = &ena_dev->rss; + + if (unlikely(entry_idx >= (1 << rss->tbl_log_size))) + return -EINVAL; + + if (unlikely((entry_value > ENA_TOTAL_NUM_QUEUES))) + return -EINVAL; + + rss->host_rss_ind_tbl[entry_idx] = entry_value; + + return 0; +} + +int ena_com_indirect_table_set(struct ena_com_dev *ena_dev) +{ + struct ena_com_admin_queue *admin_queue = &ena_dev->admin_queue; + struct ena_rss *rss = &ena_dev->rss; + struct ena_admin_set_feat_cmd cmd; + struct ena_admin_set_feat_resp resp; + int ret; + + if (!ena_com_check_supported_feature_id( + ena_dev, ENA_ADMIN_RSS_REDIRECTION_TABLE_CONFIG)) { + pr_debug("Feature %d isn't supported\n", + ENA_ADMIN_RSS_REDIRECTION_TABLE_CONFIG); + return -EPERM; + } + + ret = ena_com_ind_tbl_convert_to_device(ena_dev); + if (ret) { + pr_err("Failed to convert host indirection table to device table\n"); + return ret; + } + + memset(&cmd, 0x0, sizeof(cmd)); + + cmd.aq_common_descriptor.opcode = ENA_ADMIN_SET_FEATURE; + cmd.aq_common_descriptor.flags = + ENA_ADMIN_AQ_COMMON_DESC_CTRL_DATA_INDIRECT_MASK; + cmd.feat_common.feature_id = ENA_ADMIN_RSS_REDIRECTION_TABLE_CONFIG; + cmd.u.ind_table.size = rss->tbl_log_size; + cmd.u.ind_table.inline_index = 0xFFFFFFFF; + + ret = ena_com_mem_addr_set(ena_dev, + &cmd.control_buffer.address, + rss->rss_ind_tbl_dma_addr); + if (unlikely(ret)) { + pr_err("memory address set failed\n"); + return ret; + } + + cmd.control_buffer.length = (1ULL << rss->tbl_log_size) * + sizeof(struct ena_admin_rss_ind_table_entry); + + ret = ena_com_execute_admin_command(admin_queue, + (struct ena_admin_aq_entry *)&cmd, + sizeof(cmd), + (struct ena_admin_acq_entry *)&resp, + sizeof(resp)); + + if (unlikely(ret)) + pr_err("Failed to set indirect table. error: %d\n", ret); + + return ret; +} + +int ena_com_indirect_table_get(struct ena_com_dev *ena_dev, u32 *ind_tbl) +{ + struct ena_rss *rss = &ena_dev->rss; + struct ena_admin_get_feat_resp get_resp; + u32 tbl_size; + int i, rc; + + tbl_size = (1ULL << rss->tbl_log_size) * + sizeof(struct ena_admin_rss_ind_table_entry); + + rc = ena_com_get_feature_ex(ena_dev, &get_resp, + ENA_ADMIN_RSS_REDIRECTION_TABLE_CONFIG, + rss->rss_ind_tbl_dma_addr, + tbl_size); + if (unlikely(rc)) + return rc; + + if (!ind_tbl) + return 0; + + rc = ena_com_ind_tbl_convert_from_device(ena_dev); + if (unlikely(rc)) + return rc; + + for (i = 0; i < (1 << rss->tbl_log_size); i++) + ind_tbl[i] = rss->host_rss_ind_tbl[i]; + + return 0; +} + +int ena_com_rss_init(struct ena_com_dev *ena_dev, u16 indr_tbl_log_size) +{ + int rc; + + memset(&ena_dev->rss, 0x0, sizeof(ena_dev->rss)); + + rc = ena_com_indirect_table_allocate(ena_dev, indr_tbl_log_size); + if (unlikely(rc)) + goto err_indr_tbl; + + rc = ena_com_hash_key_allocate(ena_dev); + if (unlikely(rc)) + goto err_hash_key; + + rc = ena_com_hash_ctrl_init(ena_dev); + if (unlikely(rc)) + goto err_hash_ctrl; + + return 0; + +err_hash_ctrl: + ena_com_hash_key_destroy(ena_dev); +err_hash_key: + ena_com_indirect_table_destroy(ena_dev); +err_indr_tbl: + + return rc; +} + +void ena_com_rss_destroy(struct ena_com_dev *ena_dev) +{ + ena_com_indirect_table_destroy(ena_dev); + ena_com_hash_key_destroy(ena_dev); + ena_com_hash_ctrl_destroy(ena_dev); + + memset(&ena_dev->rss, 0x0, sizeof(ena_dev->rss)); +} + +int ena_com_allocate_host_info(struct ena_com_dev *ena_dev) +{ + struct ena_host_attribute *host_attr = &ena_dev->host_attr; + + host_attr->host_info = + dma_zalloc_coherent(ena_dev->dmadev, SZ_4K, + &host_attr->host_info_dma_addr, GFP_KERNEL); + if (unlikely(!host_attr->host_info)) + return -ENOMEM; + + return 0; +} + +int ena_com_allocate_debug_area(struct ena_com_dev *ena_dev, + u32 debug_area_size) +{ + struct ena_host_attribute *host_attr = &ena_dev->host_attr; + + host_attr->debug_area_virt_addr = + dma_zalloc_coherent(ena_dev->dmadev, debug_area_size, + &host_attr->debug_area_dma_addr, GFP_KERNEL); + if (unlikely(!host_attr->debug_area_virt_addr)) { + host_attr->debug_area_size = 0; + return -ENOMEM; + } + + host_attr->debug_area_size = debug_area_size; + + return 0; +} + +void ena_com_delete_host_info(struct ena_com_dev *ena_dev) +{ + struct ena_host_attribute *host_attr = &ena_dev->host_attr; + + if (host_attr->host_info) { + dma_free_coherent(ena_dev->dmadev, SZ_4K, host_attr->host_info, + host_attr->host_info_dma_addr); + host_attr->host_info = NULL; + } +} + +void ena_com_delete_debug_area(struct ena_com_dev *ena_dev) +{ + struct ena_host_attribute *host_attr = &ena_dev->host_attr; + + if (host_attr->debug_area_virt_addr) { + dma_free_coherent(ena_dev->dmadev, host_attr->debug_area_size, + host_attr->debug_area_virt_addr, + host_attr->debug_area_dma_addr); + host_attr->debug_area_virt_addr = NULL; + } +} + +int ena_com_set_host_attributes(struct ena_com_dev *ena_dev) +{ + struct ena_host_attribute *host_attr = &ena_dev->host_attr; + struct ena_com_admin_queue *admin_queue; + struct ena_admin_set_feat_cmd cmd; + struct ena_admin_set_feat_resp resp; + + int ret; + + /* Host attribute config is called before ena_com_get_dev_attr_feat + * so ena_com can't check if the feature is supported. + */ + + memset(&cmd, 0x0, sizeof(cmd)); + admin_queue = &ena_dev->admin_queue; + + cmd.aq_common_descriptor.opcode = ENA_ADMIN_SET_FEATURE; + cmd.feat_common.feature_id = ENA_ADMIN_HOST_ATTR_CONFIG; + + ret = ena_com_mem_addr_set(ena_dev, + &cmd.u.host_attr.debug_ba, + host_attr->debug_area_dma_addr); + if (unlikely(ret)) { + pr_err("memory address set failed\n"); + return ret; + } + + ret = ena_com_mem_addr_set(ena_dev, + &cmd.u.host_attr.os_info_ba, + host_attr->host_info_dma_addr); + if (unlikely(ret)) { + pr_err("memory address set failed\n"); + return ret; + } + + cmd.u.host_attr.debug_area_size = host_attr->debug_area_size; + + ret = ena_com_execute_admin_command(admin_queue, + (struct ena_admin_aq_entry *)&cmd, + sizeof(cmd), + (struct ena_admin_acq_entry *)&resp, + sizeof(resp)); + + if (unlikely(ret)) + pr_err("Failed to set host attributes: %d\n", ret); + + return ret; +} + +/* Interrupt moderation */ +bool ena_com_interrupt_moderation_supported(struct ena_com_dev *ena_dev) +{ + return ena_com_check_supported_feature_id(ena_dev, + ENA_ADMIN_INTERRUPT_MODERATION); +} + +int ena_com_update_nonadaptive_moderation_interval_tx(struct ena_com_dev *ena_dev, + u32 tx_coalesce_usecs) +{ + if (!ena_dev->intr_delay_resolution) { + pr_err("Illegal interrupt delay granularity value\n"); + return -EFAULT; + } + + ena_dev->intr_moder_tx_interval = tx_coalesce_usecs / + ena_dev->intr_delay_resolution; + + return 0; +} + +int ena_com_update_nonadaptive_moderation_interval_rx(struct ena_com_dev *ena_dev, + u32 rx_coalesce_usecs) +{ + if (!ena_dev->intr_delay_resolution) { + pr_err("Illegal interrupt delay granularity value\n"); + return -EFAULT; + } + + /* We use LOWEST entry of moderation table for storing + * nonadaptive interrupt coalescing values + */ + ena_dev->intr_moder_tbl[ENA_INTR_MODER_LOWEST].intr_moder_interval = + rx_coalesce_usecs / ena_dev->intr_delay_resolution; + + return 0; +} + +void ena_com_destroy_interrupt_moderation(struct ena_com_dev *ena_dev) +{ + if (ena_dev->intr_moder_tbl) + devm_kfree(ena_dev->dmadev, ena_dev->intr_moder_tbl); + ena_dev->intr_moder_tbl = NULL; +} + +int ena_com_init_interrupt_moderation(struct ena_com_dev *ena_dev) +{ + struct ena_admin_get_feat_resp get_resp; + u16 delay_resolution; + int rc; + + rc = ena_com_get_feature(ena_dev, &get_resp, + ENA_ADMIN_INTERRUPT_MODERATION); + + if (rc) { + if (rc == -EPERM) { + pr_debug("Feature %d isn't supported\n", + ENA_ADMIN_INTERRUPT_MODERATION); + rc = 0; + } else { + pr_err("Failed to get interrupt moderation admin cmd. rc: %d\n", + rc); + } + + /* no moderation supported, disable adaptive support */ + ena_com_disable_adaptive_moderation(ena_dev); + return rc; + } + + rc = ena_com_init_interrupt_moderation_table(ena_dev); + if (rc) + goto err; + + /* if moderation is supported by device we set adaptive moderation */ + delay_resolution = get_resp.u.intr_moderation.intr_delay_resolution; + ena_com_update_intr_delay_resolution(ena_dev, delay_resolution); + ena_com_enable_adaptive_moderation(ena_dev); + + return 0; +err: + ena_com_destroy_interrupt_moderation(ena_dev); + return rc; +} + +void ena_com_config_default_interrupt_moderation_table(struct ena_com_dev *ena_dev) +{ + struct ena_intr_moder_entry *intr_moder_tbl = ena_dev->intr_moder_tbl; + + if (!intr_moder_tbl) + return; + + intr_moder_tbl[ENA_INTR_MODER_LOWEST].intr_moder_interval = + ENA_INTR_LOWEST_USECS; + intr_moder_tbl[ENA_INTR_MODER_LOWEST].pkts_per_interval = + ENA_INTR_LOWEST_PKTS; + intr_moder_tbl[ENA_INTR_MODER_LOWEST].bytes_per_interval = + ENA_INTR_LOWEST_BYTES; + + intr_moder_tbl[ENA_INTR_MODER_LOW].intr_moder_interval = + ENA_INTR_LOW_USECS; + intr_moder_tbl[ENA_INTR_MODER_LOW].pkts_per_interval = + ENA_INTR_LOW_PKTS; + intr_moder_tbl[ENA_INTR_MODER_LOW].bytes_per_interval = + ENA_INTR_LOW_BYTES; + + intr_moder_tbl[ENA_INTR_MODER_MID].intr_moder_interval = + ENA_INTR_MID_USECS; + intr_moder_tbl[ENA_INTR_MODER_MID].pkts_per_interval = + ENA_INTR_MID_PKTS; + intr_moder_tbl[ENA_INTR_MODER_MID].bytes_per_interval = + ENA_INTR_MID_BYTES; + + intr_moder_tbl[ENA_INTR_MODER_HIGH].intr_moder_interval = + ENA_INTR_HIGH_USECS; + intr_moder_tbl[ENA_INTR_MODER_HIGH].pkts_per_interval = + ENA_INTR_HIGH_PKTS; + intr_moder_tbl[ENA_INTR_MODER_HIGH].bytes_per_interval = + ENA_INTR_HIGH_BYTES; + + intr_moder_tbl[ENA_INTR_MODER_HIGHEST].intr_moder_interval = + ENA_INTR_HIGHEST_USECS; + intr_moder_tbl[ENA_INTR_MODER_HIGHEST].pkts_per_interval = + ENA_INTR_HIGHEST_PKTS; + intr_moder_tbl[ENA_INTR_MODER_HIGHEST].bytes_per_interval = + ENA_INTR_HIGHEST_BYTES; +} + +unsigned int ena_com_get_nonadaptive_moderation_interval_tx(struct ena_com_dev *ena_dev) +{ + return ena_dev->intr_moder_tx_interval; +} + +unsigned int ena_com_get_nonadaptive_moderation_interval_rx(struct ena_com_dev *ena_dev) +{ + struct ena_intr_moder_entry *intr_moder_tbl = ena_dev->intr_moder_tbl; + + if (intr_moder_tbl) + return intr_moder_tbl[ENA_INTR_MODER_LOWEST].intr_moder_interval; + + return 0; +} + +void ena_com_init_intr_moderation_entry(struct ena_com_dev *ena_dev, + enum ena_intr_moder_level level, + struct ena_intr_moder_entry *entry) +{ + struct ena_intr_moder_entry *intr_moder_tbl = ena_dev->intr_moder_tbl; + + if (level >= ENA_INTR_MAX_NUM_OF_LEVELS) + return; + + intr_moder_tbl[level].intr_moder_interval = entry->intr_moder_interval; + if (ena_dev->intr_delay_resolution) + intr_moder_tbl[level].intr_moder_interval /= + ena_dev->intr_delay_resolution; + intr_moder_tbl[level].pkts_per_interval = entry->pkts_per_interval; + + /* use hardcoded value until ethtool supports bytecount parameter */ + if (entry->bytes_per_interval != ENA_INTR_BYTE_COUNT_NOT_SUPPORTED) + intr_moder_tbl[level].bytes_per_interval = entry->bytes_per_interval; +} + +void ena_com_get_intr_moderation_entry(struct ena_com_dev *ena_dev, + enum ena_intr_moder_level level, + struct ena_intr_moder_entry *entry) +{ + struct ena_intr_moder_entry *intr_moder_tbl = ena_dev->intr_moder_tbl; + + if (level >= ENA_INTR_MAX_NUM_OF_LEVELS) + return; + + entry->intr_moder_interval = intr_moder_tbl[level].intr_moder_interval; + if (ena_dev->intr_delay_resolution) + entry->intr_moder_interval *= ena_dev->intr_delay_resolution; + entry->pkts_per_interval = + intr_moder_tbl[level].pkts_per_interval; + entry->bytes_per_interval = intr_moder_tbl[level].bytes_per_interval; +} --- linux-4.8.0.orig/drivers/net/ethernet/amazon/ena/ena_com.h +++ linux-4.8.0/drivers/net/ethernet/amazon/ena/ena_com.h @@ -0,0 +1,1039 @@ +/* + * Copyright 2015 Amazon.com, Inc. or its affiliates. + * + * This software is available to you under a choice of one of two + * licenses. You may choose to be licensed under the terms of the GNU + * General Public License (GPL) Version 2, available from the file + * COPYING in the main directory of this source tree, or the + * BSD license below: + * + * Redistribution and use in source and binary forms, with or + * without modification, are permitted provided that the following + * conditions are met: + * + * - Redistributions of source code must retain the above + * copyright notice, this list of conditions and the following + * disclaimer. + * + * - Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + +#ifndef ENA_COM +#define ENA_COM + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "ena_common_defs.h" +#include "ena_admin_defs.h" +#include "ena_eth_io_defs.h" +#include "ena_regs_defs.h" + +#undef pr_fmt +#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt + +#define ENA_MAX_NUM_IO_QUEUES 128U +/* We need to queues for each IO (on for Tx and one for Rx) */ +#define ENA_TOTAL_NUM_QUEUES (2 * (ENA_MAX_NUM_IO_QUEUES)) + +#define ENA_MAX_HANDLERS 256 + +#define ENA_MAX_PHYS_ADDR_SIZE_BITS 48 + +/* Unit in usec */ +#define ENA_REG_READ_TIMEOUT 200000 + +#define ADMIN_SQ_SIZE(depth) ((depth) * sizeof(struct ena_admin_aq_entry)) +#define ADMIN_CQ_SIZE(depth) ((depth) * sizeof(struct ena_admin_acq_entry)) +#define ADMIN_AENQ_SIZE(depth) ((depth) * sizeof(struct ena_admin_aenq_entry)) + +/*****************************************************************************/ +/*****************************************************************************/ +/* ENA adaptive interrupt moderation settings */ + +#define ENA_INTR_LOWEST_USECS (0) +#define ENA_INTR_LOWEST_PKTS (3) +#define ENA_INTR_LOWEST_BYTES (2 * 1524) + +#define ENA_INTR_LOW_USECS (32) +#define ENA_INTR_LOW_PKTS (12) +#define ENA_INTR_LOW_BYTES (16 * 1024) + +#define ENA_INTR_MID_USECS (80) +#define ENA_INTR_MID_PKTS (48) +#define ENA_INTR_MID_BYTES (64 * 1024) + +#define ENA_INTR_HIGH_USECS (128) +#define ENA_INTR_HIGH_PKTS (96) +#define ENA_INTR_HIGH_BYTES (128 * 1024) + +#define ENA_INTR_HIGHEST_USECS (192) +#define ENA_INTR_HIGHEST_PKTS (128) +#define ENA_INTR_HIGHEST_BYTES (192 * 1024) + +#define ENA_INTR_INITIAL_TX_INTERVAL_USECS 196 +#define ENA_INTR_INITIAL_RX_INTERVAL_USECS 4 +#define ENA_INTR_DELAY_OLD_VALUE_WEIGHT 6 +#define ENA_INTR_DELAY_NEW_VALUE_WEIGHT 4 +#define ENA_INTR_MODER_LEVEL_STRIDE 2 +#define ENA_INTR_BYTE_COUNT_NOT_SUPPORTED 0xFFFFFF + +enum ena_intr_moder_level { + ENA_INTR_MODER_LOWEST = 0, + ENA_INTR_MODER_LOW, + ENA_INTR_MODER_MID, + ENA_INTR_MODER_HIGH, + ENA_INTR_MODER_HIGHEST, + ENA_INTR_MAX_NUM_OF_LEVELS, +}; + +struct ena_intr_moder_entry { + unsigned int intr_moder_interval; + unsigned int pkts_per_interval; + unsigned int bytes_per_interval; +}; + +enum queue_direction { + ENA_COM_IO_QUEUE_DIRECTION_TX, + ENA_COM_IO_QUEUE_DIRECTION_RX +}; + +struct ena_com_buf { + dma_addr_t paddr; /**< Buffer physical address */ + u16 len; /**< Buffer length in bytes */ +}; + +struct ena_com_rx_buf_info { + u16 len; + u16 req_id; +}; + +struct ena_com_io_desc_addr { + u8 __iomem *pbuf_dev_addr; /* LLQ address */ + u8 *virt_addr; + dma_addr_t phys_addr; +}; + +struct ena_com_tx_meta { + u16 mss; + u16 l3_hdr_len; + u16 l3_hdr_offset; + u16 l4_hdr_len; /* In words */ +}; + +struct ena_com_io_cq { + struct ena_com_io_desc_addr cdesc_addr; + + /* Interrupt unmask register */ + u32 __iomem *unmask_reg; + + /* The completion queue head doorbell register */ + u32 __iomem *cq_head_db_reg; + + /* numa configuration register (for TPH) */ + u32 __iomem *numa_node_cfg_reg; + + /* The value to write to the above register to unmask + * the interrupt of this queue + */ + u32 msix_vector; + + enum queue_direction direction; + + /* holds the number of cdesc of the current packet */ + u16 cur_rx_pkt_cdesc_count; + /* save the firt cdesc idx of the current packet */ + u16 cur_rx_pkt_cdesc_start_idx; + + u16 q_depth; + /* Caller qid */ + u16 qid; + + /* Device queue index */ + u16 idx; + u16 head; + u16 last_head_update; + u8 phase; + u8 cdesc_entry_size_in_bytes; + +} ____cacheline_aligned; + +struct ena_com_io_sq { + struct ena_com_io_desc_addr desc_addr; + + u32 __iomem *db_addr; + u8 __iomem *header_addr; + + enum queue_direction direction; + enum ena_admin_placement_policy_type mem_queue_type; + + u32 msix_vector; + struct ena_com_tx_meta cached_tx_meta; + + u16 q_depth; + u16 qid; + + u16 idx; + u16 tail; + u16 next_to_comp; + u32 tx_max_header_size; + u8 phase; + u8 desc_entry_size; + u8 dma_addr_bits; +} ____cacheline_aligned; + +struct ena_com_admin_cq { + struct ena_admin_acq_entry *entries; + dma_addr_t dma_addr; + + u16 head; + u8 phase; +}; + +struct ena_com_admin_sq { + struct ena_admin_aq_entry *entries; + dma_addr_t dma_addr; + + u32 __iomem *db_addr; + + u16 head; + u16 tail; + u8 phase; + +}; + +struct ena_com_stats_admin { + u32 aborted_cmd; + u32 submitted_cmd; + u32 completed_cmd; + u32 out_of_space; + u32 no_completion; +}; + +struct ena_com_admin_queue { + void *q_dmadev; + spinlock_t q_lock; /* spinlock for the admin queue */ + struct ena_comp_ctx *comp_ctx; + u16 q_depth; + struct ena_com_admin_cq cq; + struct ena_com_admin_sq sq; + + /* Indicate if the admin queue should poll for completion */ + bool polling; + + u16 curr_cmd_id; + + /* Indicate that the ena was initialized and can + * process new admin commands + */ + bool running_state; + + /* Count the number of outstanding admin commands */ + atomic_t outstanding_cmds; + + struct ena_com_stats_admin stats; +}; + +struct ena_aenq_handlers; + +struct ena_com_aenq { + u16 head; + u8 phase; + struct ena_admin_aenq_entry *entries; + dma_addr_t dma_addr; + u16 q_depth; + struct ena_aenq_handlers *aenq_handlers; +}; + +struct ena_com_mmio_read { + struct ena_admin_ena_mmio_req_read_less_resp *read_resp; + dma_addr_t read_resp_dma_addr; + u16 seq_num; + bool readless_supported; + /* spin lock to ensure a single outstanding read */ + spinlock_t lock; +}; + +struct ena_rss { + /* Indirect table */ + u16 *host_rss_ind_tbl; + struct ena_admin_rss_ind_table_entry *rss_ind_tbl; + dma_addr_t rss_ind_tbl_dma_addr; + u16 tbl_log_size; + + /* Hash key */ + enum ena_admin_hash_functions hash_func; + struct ena_admin_feature_rss_flow_hash_control *hash_key; + dma_addr_t hash_key_dma_addr; + u32 hash_init_val; + + /* Flow Control */ + struct ena_admin_feature_rss_hash_control *hash_ctrl; + dma_addr_t hash_ctrl_dma_addr; + +}; + +struct ena_host_attribute { + /* Debug area */ + u8 *debug_area_virt_addr; + dma_addr_t debug_area_dma_addr; + u32 debug_area_size; + + /* Host information */ + struct ena_admin_host_info *host_info; + dma_addr_t host_info_dma_addr; +}; + +/* Each ena_dev is a PCI function. */ +struct ena_com_dev { + struct ena_com_admin_queue admin_queue; + struct ena_com_aenq aenq; + struct ena_com_io_cq io_cq_queues[ENA_TOTAL_NUM_QUEUES]; + struct ena_com_io_sq io_sq_queues[ENA_TOTAL_NUM_QUEUES]; + u8 __iomem *reg_bar; + void __iomem *mem_bar; + void *dmadev; + + enum ena_admin_placement_policy_type tx_mem_queue_type; + u32 tx_max_header_size; + u16 stats_func; /* Selected function for extended statistic dump */ + u16 stats_queue; /* Selected queue for extended statistic dump */ + + struct ena_com_mmio_read mmio_read; + + struct ena_rss rss; + u32 supported_features; + u32 dma_addr_bits; + + struct ena_host_attribute host_attr; + bool adaptive_coalescing; + u16 intr_delay_resolution; + u32 intr_moder_tx_interval; + struct ena_intr_moder_entry *intr_moder_tbl; +}; + +struct ena_com_dev_get_features_ctx { + struct ena_admin_queue_feature_desc max_queues; + struct ena_admin_device_attr_feature_desc dev_attr; + struct ena_admin_feature_aenq_desc aenq; + struct ena_admin_feature_offload_desc offload; +}; + +struct ena_com_create_io_ctx { + enum ena_admin_placement_policy_type mem_queue_type; + enum queue_direction direction; + int numa_node; + u32 msix_vector; + u16 queue_size; + u16 qid; +}; + +typedef void (*ena_aenq_handler)(void *data, + struct ena_admin_aenq_entry *aenq_e); + +/* Holds aenq handlers. Indexed by AENQ event group */ +struct ena_aenq_handlers { + ena_aenq_handler handlers[ENA_MAX_HANDLERS]; + ena_aenq_handler unimplemented_handler; +}; + +/*****************************************************************************/ +/*****************************************************************************/ + +/* ena_com_mmio_reg_read_request_init - Init the mmio reg read mechanism + * @ena_dev: ENA communication layer struct + * + * Initialize the register read mechanism. + * + * @note: This method must be the first stage in the initialization sequence. + * + * @return - 0 on success, negative value on failure. + */ +int ena_com_mmio_reg_read_request_init(struct ena_com_dev *ena_dev); + +/* ena_com_set_mmio_read_mode - Enable/disable the mmio reg read mechanism + * @ena_dev: ENA communication layer struct + * @readless_supported: readless mode (enable/disable) + */ +void ena_com_set_mmio_read_mode(struct ena_com_dev *ena_dev, + bool readless_supported); + +/* ena_com_mmio_reg_read_request_write_dev_addr - Write the mmio reg read return + * value physical address. + * @ena_dev: ENA communication layer struct + */ +void ena_com_mmio_reg_read_request_write_dev_addr(struct ena_com_dev *ena_dev); + +/* ena_com_mmio_reg_read_request_destroy - Destroy the mmio reg read mechanism + * @ena_dev: ENA communication layer struct + */ +void ena_com_mmio_reg_read_request_destroy(struct ena_com_dev *ena_dev); + +/* ena_com_admin_init - Init the admin and the async queues + * @ena_dev: ENA communication layer struct + * @aenq_handlers: Those handlers to be called upon event. + * @init_spinlock: Indicate if this method should init the admin spinlock or + * the spinlock was init before (for example, in a case of FLR). + * + * Initialize the admin submission and completion queues. + * Initialize the asynchronous events notification queues. + * + * @return - 0 on success, negative value on failure. + */ +int ena_com_admin_init(struct ena_com_dev *ena_dev, + struct ena_aenq_handlers *aenq_handlers, + bool init_spinlock); + +/* ena_com_admin_destroy - Destroy the admin and the async events queues. + * @ena_dev: ENA communication layer struct + * + * @note: Before calling this method, the caller must validate that the device + * won't send any additional admin completions/aenq. + * To achieve that, a FLR is recommended. + */ +void ena_com_admin_destroy(struct ena_com_dev *ena_dev); + +/* ena_com_dev_reset - Perform device FLR to the device. + * @ena_dev: ENA communication layer struct + * + * @return - 0 on success, negative value on failure. + */ +int ena_com_dev_reset(struct ena_com_dev *ena_dev); + +/* ena_com_create_io_queue - Create io queue. + * @ena_dev: ENA communication layer struct + * @ctx - create context structure + * + * Create the submission and the completion queues. + * + * @return - 0 on success, negative value on failure. + */ +int ena_com_create_io_queue(struct ena_com_dev *ena_dev, + struct ena_com_create_io_ctx *ctx); + +/* ena_com_destroy_io_queue - Destroy IO queue with the queue id - qid. + * @ena_dev: ENA communication layer struct + * @qid - the caller virtual queue id. + */ +void ena_com_destroy_io_queue(struct ena_com_dev *ena_dev, u16 qid); + +/* ena_com_get_io_handlers - Return the io queue handlers + * @ena_dev: ENA communication layer struct + * @qid - the caller virtual queue id. + * @io_sq - IO submission queue handler + * @io_cq - IO completion queue handler. + * + * @return - 0 on success, negative value on failure. + */ +int ena_com_get_io_handlers(struct ena_com_dev *ena_dev, u16 qid, + struct ena_com_io_sq **io_sq, + struct ena_com_io_cq **io_cq); + +/* ena_com_admin_aenq_enable - ENAble asynchronous event notifications + * @ena_dev: ENA communication layer struct + * + * After this method, aenq event can be received via AENQ. + */ +void ena_com_admin_aenq_enable(struct ena_com_dev *ena_dev); + +/* ena_com_set_admin_running_state - Set the state of the admin queue + * @ena_dev: ENA communication layer struct + * + * Change the state of the admin queue (enable/disable) + */ +void ena_com_set_admin_running_state(struct ena_com_dev *ena_dev, bool state); + +/* ena_com_get_admin_running_state - Get the admin queue state + * @ena_dev: ENA communication layer struct + * + * Retrieve the state of the admin queue (enable/disable) + * + * @return - current polling mode (enable/disable) + */ +bool ena_com_get_admin_running_state(struct ena_com_dev *ena_dev); + +/* ena_com_set_admin_polling_mode - Set the admin completion queue polling mode + * @ena_dev: ENA communication layer struct + * @polling: ENAble/Disable polling mode + * + * Set the admin completion mode. + */ +void ena_com_set_admin_polling_mode(struct ena_com_dev *ena_dev, bool polling); + +/* ena_com_set_admin_polling_mode - Get the admin completion queue polling mode + * @ena_dev: ENA communication layer struct + * + * Get the admin completion mode. + * If polling mode is on, ena_com_execute_admin_command will perform a + * polling on the admin completion queue for the commands completion, + * otherwise it will wait on wait event. + * + * @return state + */ +bool ena_com_get_ena_admin_polling_mode(struct ena_com_dev *ena_dev); + +/* ena_com_admin_q_comp_intr_handler - admin queue interrupt handler + * @ena_dev: ENA communication layer struct + * + * This method go over the admin completion queue and wake up all the pending + * threads that wait on the commands wait event. + * + * @note: Should be called after MSI-X interrupt. + */ +void ena_com_admin_q_comp_intr_handler(struct ena_com_dev *ena_dev); + +/* ena_com_aenq_intr_handler - AENQ interrupt handler + * @ena_dev: ENA communication layer struct + * + * This method go over the async event notification queue and call the proper + * aenq handler. + */ +void ena_com_aenq_intr_handler(struct ena_com_dev *dev, void *data); + +/* ena_com_abort_admin_commands - Abort all the outstanding admin commands. + * @ena_dev: ENA communication layer struct + * + * This method aborts all the outstanding admin commands. + * The caller should then call ena_com_wait_for_abort_completion to make sure + * all the commands were completed. + */ +void ena_com_abort_admin_commands(struct ena_com_dev *ena_dev); + +/* ena_com_wait_for_abort_completion - Wait for admin commands abort. + * @ena_dev: ENA communication layer struct + * + * This method wait until all the outstanding admin commands will be completed. + */ +void ena_com_wait_for_abort_completion(struct ena_com_dev *ena_dev); + +/* ena_com_validate_version - Validate the device parameters + * @ena_dev: ENA communication layer struct + * + * This method validate the device parameters are the same as the saved + * parameters in ena_dev. + * This method is useful after device reset, to validate the device mac address + * and the device offloads are the same as before the reset. + * + * @return - 0 on success negative value otherwise. + */ +int ena_com_validate_version(struct ena_com_dev *ena_dev); + +/* ena_com_get_link_params - Retrieve physical link parameters. + * @ena_dev: ENA communication layer struct + * @resp: Link parameters + * + * Retrieve the physical link parameters, + * like speed, auto-negotiation and full duplex support. + * + * @return - 0 on Success negative value otherwise. + */ +int ena_com_get_link_params(struct ena_com_dev *ena_dev, + struct ena_admin_get_feat_resp *resp); + +/* ena_com_get_dma_width - Retrieve physical dma address width the device + * supports. + * @ena_dev: ENA communication layer struct + * + * Retrieve the maximum physical address bits the device can handle. + * + * @return: > 0 on Success and negative value otherwise. + */ +int ena_com_get_dma_width(struct ena_com_dev *ena_dev); + +/* ena_com_set_aenq_config - Set aenq groups configurations + * @ena_dev: ENA communication layer struct + * @groups flag: bit fields flags of enum ena_admin_aenq_group. + * + * Configure which aenq event group the driver would like to receive. + * + * @return: 0 on Success and negative value otherwise. + */ +int ena_com_set_aenq_config(struct ena_com_dev *ena_dev, u32 groups_flag); + +/* ena_com_get_dev_attr_feat - Get device features + * @ena_dev: ENA communication layer struct + * @get_feat_ctx: returned context that contain the get features. + * + * @return: 0 on Success and negative value otherwise. + */ +int ena_com_get_dev_attr_feat(struct ena_com_dev *ena_dev, + struct ena_com_dev_get_features_ctx *get_feat_ctx); + +/* ena_com_get_dev_basic_stats - Get device basic statistics + * @ena_dev: ENA communication layer struct + * @stats: stats return value + * + * @return: 0 on Success and negative value otherwise. + */ +int ena_com_get_dev_basic_stats(struct ena_com_dev *ena_dev, + struct ena_admin_basic_stats *stats); + +/* ena_com_set_dev_mtu - Configure the device mtu. + * @ena_dev: ENA communication layer struct + * @mtu: mtu value + * + * @return: 0 on Success and negative value otherwise. + */ +int ena_com_set_dev_mtu(struct ena_com_dev *ena_dev, int mtu); + +/* ena_com_get_offload_settings - Retrieve the device offloads capabilities + * @ena_dev: ENA communication layer struct + * @offlad: offload return value + * + * @return: 0 on Success and negative value otherwise. + */ +int ena_com_get_offload_settings(struct ena_com_dev *ena_dev, + struct ena_admin_feature_offload_desc *offload); + +/* ena_com_rss_init - Init RSS + * @ena_dev: ENA communication layer struct + * @log_size: indirection log size + * + * Allocate RSS/RFS resources. + * The caller then can configure rss using ena_com_set_hash_function, + * ena_com_set_hash_ctrl and ena_com_indirect_table_set. + * + * @return: 0 on Success and negative value otherwise. + */ +int ena_com_rss_init(struct ena_com_dev *ena_dev, u16 log_size); + +/* ena_com_rss_destroy - Destroy rss + * @ena_dev: ENA communication layer struct + * + * Free all the RSS/RFS resources. + */ +void ena_com_rss_destroy(struct ena_com_dev *ena_dev); + +/* ena_com_fill_hash_function - Fill RSS hash function + * @ena_dev: ENA communication layer struct + * @func: The hash function (Toeplitz or crc) + * @key: Hash key (for toeplitz hash) + * @key_len: key length (max length 10 DW) + * @init_val: initial value for the hash function + * + * Fill the ena_dev resources with the desire hash function, hash key, key_len + * and key initial value (if needed by the hash function). + * To flush the key into the device the caller should call + * ena_com_set_hash_function. + * + * @return: 0 on Success and negative value otherwise. + */ +int ena_com_fill_hash_function(struct ena_com_dev *ena_dev, + enum ena_admin_hash_functions func, + const u8 *key, u16 key_len, u32 init_val); + +/* ena_com_set_hash_function - Flush the hash function and it dependencies to + * the device. + * @ena_dev: ENA communication layer struct + * + * Flush the hash function and it dependencies (key, key length and + * initial value) if needed. + * + * @note: Prior to this method the caller should call ena_com_fill_hash_function + * + * @return: 0 on Success and negative value otherwise. + */ +int ena_com_set_hash_function(struct ena_com_dev *ena_dev); + +/* ena_com_get_hash_function - Retrieve the hash function and the hash key + * from the device. + * @ena_dev: ENA communication layer struct + * @func: hash function + * @key: hash key + * + * Retrieve the hash function and the hash key from the device. + * + * @note: If the caller called ena_com_fill_hash_function but didn't flash + * it to the device, the new configuration will be lost. + * + * @return: 0 on Success and negative value otherwise. + */ +int ena_com_get_hash_function(struct ena_com_dev *ena_dev, + enum ena_admin_hash_functions *func, + u8 *key); + +/* ena_com_fill_hash_ctrl - Fill RSS hash control + * @ena_dev: ENA communication layer struct. + * @proto: The protocol to configure. + * @hash_fields: bit mask of ena_admin_flow_hash_fields + * + * Fill the ena_dev resources with the desire hash control (the ethernet + * fields that take part of the hash) for a specific protocol. + * To flush the hash control to the device, the caller should call + * ena_com_set_hash_ctrl. + * + * @return: 0 on Success and negative value otherwise. + */ +int ena_com_fill_hash_ctrl(struct ena_com_dev *ena_dev, + enum ena_admin_flow_hash_proto proto, + u16 hash_fields); + +/* ena_com_set_hash_ctrl - Flush the hash control resources to the device. + * @ena_dev: ENA communication layer struct + * + * Flush the hash control (the ethernet fields that take part of the hash) + * + * @note: Prior to this method the caller should call ena_com_fill_hash_ctrl. + * + * @return: 0 on Success and negative value otherwise. + */ +int ena_com_set_hash_ctrl(struct ena_com_dev *ena_dev); + +/* ena_com_get_hash_ctrl - Retrieve the hash control from the device. + * @ena_dev: ENA communication layer struct + * @proto: The protocol to retrieve. + * @fields: bit mask of ena_admin_flow_hash_fields. + * + * Retrieve the hash control from the device. + * + * @note, If the caller called ena_com_fill_hash_ctrl but didn't flash + * it to the device, the new configuration will be lost. + * + * @return: 0 on Success and negative value otherwise. + */ +int ena_com_get_hash_ctrl(struct ena_com_dev *ena_dev, + enum ena_admin_flow_hash_proto proto, + u16 *fields); + +/* ena_com_set_default_hash_ctrl - Set the hash control to a default + * configuration. + * @ena_dev: ENA communication layer struct + * + * Fill the ena_dev resources with the default hash control configuration. + * To flush the hash control to the device, the caller should call + * ena_com_set_hash_ctrl. + * + * @return: 0 on Success and negative value otherwise. + */ +int ena_com_set_default_hash_ctrl(struct ena_com_dev *ena_dev); + +/* ena_com_indirect_table_fill_entry - Fill a single entry in the RSS + * indirection table + * @ena_dev: ENA communication layer struct. + * @entry_idx - indirection table entry. + * @entry_value - redirection value + * + * Fill a single entry of the RSS indirection table in the ena_dev resources. + * To flush the indirection table to the device, the called should call + * ena_com_indirect_table_set. + * + * @return: 0 on Success and negative value otherwise. + */ +int ena_com_indirect_table_fill_entry(struct ena_com_dev *ena_dev, + u16 entry_idx, u16 entry_value); + +/* ena_com_indirect_table_set - Flush the indirection table to the device. + * @ena_dev: ENA communication layer struct + * + * Flush the indirection hash control to the device. + * Prior to this method the caller should call ena_com_indirect_table_fill_entry + * + * @return: 0 on Success and negative value otherwise. + */ +int ena_com_indirect_table_set(struct ena_com_dev *ena_dev); + +/* ena_com_indirect_table_get - Retrieve the indirection table from the device. + * @ena_dev: ENA communication layer struct + * @ind_tbl: indirection table + * + * Retrieve the RSS indirection table from the device. + * + * @note: If the caller called ena_com_indirect_table_fill_entry but didn't flash + * it to the device, the new configuration will be lost. + * + * @return: 0 on Success and negative value otherwise. + */ +int ena_com_indirect_table_get(struct ena_com_dev *ena_dev, u32 *ind_tbl); + +/* ena_com_allocate_host_info - Allocate host info resources. + * @ena_dev: ENA communication layer struct + * + * @return: 0 on Success and negative value otherwise. + */ +int ena_com_allocate_host_info(struct ena_com_dev *ena_dev); + +/* ena_com_allocate_debug_area - Allocate debug area. + * @ena_dev: ENA communication layer struct + * @debug_area_size - debug area size. + * + * @return: 0 on Success and negative value otherwise. + */ +int ena_com_allocate_debug_area(struct ena_com_dev *ena_dev, + u32 debug_area_size); + +/* ena_com_delete_debug_area - Free the debug area resources. + * @ena_dev: ENA communication layer struct + * + * Free the allocate debug area. + */ +void ena_com_delete_debug_area(struct ena_com_dev *ena_dev); + +/* ena_com_delete_host_info - Free the host info resources. + * @ena_dev: ENA communication layer struct + * + * Free the allocate host info. + */ +void ena_com_delete_host_info(struct ena_com_dev *ena_dev); + +/* ena_com_set_host_attributes - Update the device with the host + * attributes (debug area and host info) base address. + * @ena_dev: ENA communication layer struct + * + * @return: 0 on Success and negative value otherwise. + */ +int ena_com_set_host_attributes(struct ena_com_dev *ena_dev); + +/* ena_com_create_io_cq - Create io completion queue. + * @ena_dev: ENA communication layer struct + * @io_cq - io completion queue handler + + * Create IO completion queue. + * + * @return - 0 on success, negative value on failure. + */ +int ena_com_create_io_cq(struct ena_com_dev *ena_dev, + struct ena_com_io_cq *io_cq); + +/* ena_com_destroy_io_cq - Destroy io completion queue. + * @ena_dev: ENA communication layer struct + * @io_cq - io completion queue handler + + * Destroy IO completion queue. + * + * @return - 0 on success, negative value on failure. + */ +int ena_com_destroy_io_cq(struct ena_com_dev *ena_dev, + struct ena_com_io_cq *io_cq); + +/* ena_com_execute_admin_command - Execute admin command + * @admin_queue: admin queue. + * @cmd: the admin command to execute. + * @cmd_size: the command size. + * @cmd_completion: command completion return value. + * @cmd_comp_size: command completion size. + + * Submit an admin command and then wait until the device will return a + * completion. + * The completion will be copyed into cmd_comp. + * + * @return - 0 on success, negative value on failure. + */ +int ena_com_execute_admin_command(struct ena_com_admin_queue *admin_queue, + struct ena_admin_aq_entry *cmd, + size_t cmd_size, + struct ena_admin_acq_entry *cmd_comp, + size_t cmd_comp_size); + +/* ena_com_init_interrupt_moderation - Init interrupt moderation + * @ena_dev: ENA communication layer struct + * + * @return - 0 on success, negative value on failure. + */ +int ena_com_init_interrupt_moderation(struct ena_com_dev *ena_dev); + +/* ena_com_destroy_interrupt_moderation - Destroy interrupt moderation resources + * @ena_dev: ENA communication layer struct + */ +void ena_com_destroy_interrupt_moderation(struct ena_com_dev *ena_dev); + +/* ena_com_interrupt_moderation_supported - Return if interrupt moderation + * capability is supported by the device. + * + * @return - supported or not. + */ +bool ena_com_interrupt_moderation_supported(struct ena_com_dev *ena_dev); + +/* ena_com_config_default_interrupt_moderation_table - Restore the interrupt + * moderation table back to the default parameters. + * @ena_dev: ENA communication layer struct + */ +void ena_com_config_default_interrupt_moderation_table(struct ena_com_dev *ena_dev); + +/* ena_com_update_nonadaptive_moderation_interval_tx - Update the + * non-adaptive interval in Tx direction. + * @ena_dev: ENA communication layer struct + * @tx_coalesce_usecs: Interval in usec. + * + * @return - 0 on success, negative value on failure. + */ +int ena_com_update_nonadaptive_moderation_interval_tx(struct ena_com_dev *ena_dev, + u32 tx_coalesce_usecs); + +/* ena_com_update_nonadaptive_moderation_interval_rx - Update the + * non-adaptive interval in Rx direction. + * @ena_dev: ENA communication layer struct + * @rx_coalesce_usecs: Interval in usec. + * + * @return - 0 on success, negative value on failure. + */ +int ena_com_update_nonadaptive_moderation_interval_rx(struct ena_com_dev *ena_dev, + u32 rx_coalesce_usecs); + +/* ena_com_get_nonadaptive_moderation_interval_tx - Retrieve the + * non-adaptive interval in Tx direction. + * @ena_dev: ENA communication layer struct + * + * @return - interval in usec + */ +unsigned int ena_com_get_nonadaptive_moderation_interval_tx(struct ena_com_dev *ena_dev); + +/* ena_com_get_nonadaptive_moderation_interval_rx - Retrieve the + * non-adaptive interval in Rx direction. + * @ena_dev: ENA communication layer struct + * + * @return - interval in usec + */ +unsigned int ena_com_get_nonadaptive_moderation_interval_rx(struct ena_com_dev *ena_dev); + +/* ena_com_init_intr_moderation_entry - Update a single entry in the interrupt + * moderation table. + * @ena_dev: ENA communication layer struct + * @level: Interrupt moderation table level + * @entry: Entry value + * + * Update a single entry in the interrupt moderation table. + */ +void ena_com_init_intr_moderation_entry(struct ena_com_dev *ena_dev, + enum ena_intr_moder_level level, + struct ena_intr_moder_entry *entry); + +/* ena_com_get_intr_moderation_entry - Init ena_intr_moder_entry. + * @ena_dev: ENA communication layer struct + * @level: Interrupt moderation table level + * @entry: Entry to fill. + * + * Initialize the entry according to the adaptive interrupt moderation table. + */ +void ena_com_get_intr_moderation_entry(struct ena_com_dev *ena_dev, + enum ena_intr_moder_level level, + struct ena_intr_moder_entry *entry); + +static inline bool ena_com_get_adaptive_moderation_enabled(struct ena_com_dev *ena_dev) +{ + return ena_dev->adaptive_coalescing; +} + +static inline void ena_com_enable_adaptive_moderation(struct ena_com_dev *ena_dev) +{ + ena_dev->adaptive_coalescing = true; +} + +static inline void ena_com_disable_adaptive_moderation(struct ena_com_dev *ena_dev) +{ + ena_dev->adaptive_coalescing = false; +} + +/* ena_com_calculate_interrupt_delay - Calculate new interrupt delay + * @ena_dev: ENA communication layer struct + * @pkts: Number of packets since the last update + * @bytes: Number of bytes received since the last update. + * @smoothed_interval: Returned interval + * @moder_tbl_idx: Current table level as input update new level as return + * value. + */ +static inline void ena_com_calculate_interrupt_delay(struct ena_com_dev *ena_dev, + unsigned int pkts, + unsigned int bytes, + unsigned int *smoothed_interval, + unsigned int *moder_tbl_idx) +{ + enum ena_intr_moder_level curr_moder_idx, new_moder_idx; + struct ena_intr_moder_entry *curr_moder_entry; + struct ena_intr_moder_entry *pred_moder_entry; + struct ena_intr_moder_entry *new_moder_entry; + struct ena_intr_moder_entry *intr_moder_tbl = ena_dev->intr_moder_tbl; + unsigned int interval; + + /* We apply adaptive moderation on Rx path only. + * Tx uses static interrupt moderation. + */ + if (!pkts || !bytes) + /* Tx interrupt, or spurious interrupt, + * in both cases we just use same delay values + */ + return; + + curr_moder_idx = (enum ena_intr_moder_level)(*moder_tbl_idx); + if (unlikely(curr_moder_idx >= ENA_INTR_MAX_NUM_OF_LEVELS)) { + pr_err("Wrong moderation index %u\n", curr_moder_idx); + return; + } + + curr_moder_entry = &intr_moder_tbl[curr_moder_idx]; + new_moder_idx = curr_moder_idx; + + if (curr_moder_idx == ENA_INTR_MODER_LOWEST) { + if ((pkts > curr_moder_entry->pkts_per_interval) || + (bytes > curr_moder_entry->bytes_per_interval)) + new_moder_idx = + (enum ena_intr_moder_level)(curr_moder_idx + ENA_INTR_MODER_LEVEL_STRIDE); + } else { + pred_moder_entry = &intr_moder_tbl[curr_moder_idx - ENA_INTR_MODER_LEVEL_STRIDE]; + + if ((pkts <= pred_moder_entry->pkts_per_interval) || + (bytes <= pred_moder_entry->bytes_per_interval)) + new_moder_idx = + (enum ena_intr_moder_level)(curr_moder_idx - ENA_INTR_MODER_LEVEL_STRIDE); + else if ((pkts > curr_moder_entry->pkts_per_interval) || + (bytes > curr_moder_entry->bytes_per_interval)) { + if (curr_moder_idx != ENA_INTR_MODER_HIGHEST) + new_moder_idx = + (enum ena_intr_moder_level)(curr_moder_idx + ENA_INTR_MODER_LEVEL_STRIDE); + } + } + new_moder_entry = &intr_moder_tbl[new_moder_idx]; + + interval = new_moder_entry->intr_moder_interval; + *smoothed_interval = ( + (interval * ENA_INTR_DELAY_NEW_VALUE_WEIGHT + + ENA_INTR_DELAY_OLD_VALUE_WEIGHT * (*smoothed_interval)) + 5) / + 10; + + *moder_tbl_idx = new_moder_idx; +} + +/* ena_com_update_intr_reg - Prepare interrupt register + * @intr_reg: interrupt register to update. + * @rx_delay_interval: Rx interval in usecs + * @tx_delay_interval: Tx interval in usecs + * @unmask: unask enable/disable + * + * Prepare interrupt update register with the supplied parameters. + */ +static inline void ena_com_update_intr_reg(struct ena_eth_io_intr_reg *intr_reg, + u32 rx_delay_interval, + u32 tx_delay_interval, + bool unmask) +{ + intr_reg->intr_control = 0; + intr_reg->intr_control |= rx_delay_interval & + ENA_ETH_IO_INTR_REG_RX_INTR_DELAY_MASK; + + intr_reg->intr_control |= + (tx_delay_interval << ENA_ETH_IO_INTR_REG_TX_INTR_DELAY_SHIFT) + & ENA_ETH_IO_INTR_REG_TX_INTR_DELAY_MASK; + + if (unmask) + intr_reg->intr_control |= ENA_ETH_IO_INTR_REG_INTR_UNMASK_MASK; +} + +#endif /* !(ENA_COM) */ --- linux-4.8.0.orig/drivers/net/ethernet/amazon/ena/ena_common_defs.h +++ linux-4.8.0/drivers/net/ethernet/amazon/ena/ena_common_defs.h @@ -0,0 +1,48 @@ +/* + * Copyright 2015 - 2016 Amazon.com, Inc. or its affiliates. + * + * This software is available to you under a choice of one of two + * licenses. You may choose to be licensed under the terms of the GNU + * General Public License (GPL) Version 2, available from the file + * COPYING in the main directory of this source tree, or the + * BSD license below: + * + * Redistribution and use in source and binary forms, with or + * without modification, are permitted provided that the following + * conditions are met: + * + * - Redistributions of source code must retain the above + * copyright notice, this list of conditions and the following + * disclaimer. + * + * - Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ +#ifndef _ENA_COMMON_H_ +#define _ENA_COMMON_H_ + +#define ENA_COMMON_SPEC_VERSION_MAJOR 0 /* */ +#define ENA_COMMON_SPEC_VERSION_MINOR 10 /* */ + +/* ENA operates with 48-bit memory addresses. ena_mem_addr_t */ +struct ena_common_mem_addr { + u32 mem_addr_low; + + u16 mem_addr_high; + + /* MBZ */ + u16 reserved16; +}; + +#endif /*_ENA_COMMON_H_ */ --- linux-4.8.0.orig/drivers/net/ethernet/amazon/ena/ena_eth_com.c +++ linux-4.8.0/drivers/net/ethernet/amazon/ena/ena_eth_com.c @@ -0,0 +1,501 @@ +/* + * Copyright 2015 Amazon.com, Inc. or its affiliates. + * + * This software is available to you under a choice of one of two + * licenses. You may choose to be licensed under the terms of the GNU + * General Public License (GPL) Version 2, available from the file + * COPYING in the main directory of this source tree, or the + * BSD license below: + * + * Redistribution and use in source and binary forms, with or + * without modification, are permitted provided that the following + * conditions are met: + * + * - Redistributions of source code must retain the above + * copyright notice, this list of conditions and the following + * disclaimer. + * + * - Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + +#include "ena_eth_com.h" + +static inline struct ena_eth_io_rx_cdesc_base *ena_com_get_next_rx_cdesc( + struct ena_com_io_cq *io_cq) +{ + struct ena_eth_io_rx_cdesc_base *cdesc; + u16 expected_phase, head_masked; + u16 desc_phase; + + head_masked = io_cq->head & (io_cq->q_depth - 1); + expected_phase = io_cq->phase; + + cdesc = (struct ena_eth_io_rx_cdesc_base *)(io_cq->cdesc_addr.virt_addr + + (head_masked * io_cq->cdesc_entry_size_in_bytes)); + + desc_phase = (READ_ONCE(cdesc->status) & ENA_ETH_IO_RX_CDESC_BASE_PHASE_MASK) >> + ENA_ETH_IO_RX_CDESC_BASE_PHASE_SHIFT; + + if (desc_phase != expected_phase) + return NULL; + + return cdesc; +} + +static inline void ena_com_cq_inc_head(struct ena_com_io_cq *io_cq) +{ + io_cq->head++; + + /* Switch phase bit in case of wrap around */ + if (unlikely((io_cq->head & (io_cq->q_depth - 1)) == 0)) + io_cq->phase ^= 1; +} + +static inline void *get_sq_desc(struct ena_com_io_sq *io_sq) +{ + u16 tail_masked; + u32 offset; + + tail_masked = io_sq->tail & (io_sq->q_depth - 1); + + offset = tail_masked * io_sq->desc_entry_size; + + return (void *)((uintptr_t)io_sq->desc_addr.virt_addr + offset); +} + +static inline void ena_com_copy_curr_sq_desc_to_dev(struct ena_com_io_sq *io_sq) +{ + u16 tail_masked = io_sq->tail & (io_sq->q_depth - 1); + u32 offset = tail_masked * io_sq->desc_entry_size; + + /* In case this queue isn't a LLQ */ + if (io_sq->mem_queue_type == ENA_ADMIN_PLACEMENT_POLICY_HOST) + return; + + memcpy_toio(io_sq->desc_addr.pbuf_dev_addr + offset, + io_sq->desc_addr.virt_addr + offset, + io_sq->desc_entry_size); +} + +static inline void ena_com_sq_update_tail(struct ena_com_io_sq *io_sq) +{ + io_sq->tail++; + + /* Switch phase bit in case of wrap around */ + if (unlikely((io_sq->tail & (io_sq->q_depth - 1)) == 0)) + io_sq->phase ^= 1; +} + +static inline int ena_com_write_header(struct ena_com_io_sq *io_sq, + u8 *head_src, u16 header_len) +{ + u16 tail_masked = io_sq->tail & (io_sq->q_depth - 1); + u8 __iomem *dev_head_addr = + io_sq->header_addr + (tail_masked * io_sq->tx_max_header_size); + + if (io_sq->mem_queue_type == ENA_ADMIN_PLACEMENT_POLICY_HOST) + return 0; + + if (unlikely(!io_sq->header_addr)) { + pr_err("Push buffer header ptr is NULL\n"); + return -EINVAL; + } + + memcpy_toio(dev_head_addr, head_src, header_len); + + return 0; +} + +static inline struct ena_eth_io_rx_cdesc_base * + ena_com_rx_cdesc_idx_to_ptr(struct ena_com_io_cq *io_cq, u16 idx) +{ + idx &= (io_cq->q_depth - 1); + return (struct ena_eth_io_rx_cdesc_base *) + ((uintptr_t)io_cq->cdesc_addr.virt_addr + + idx * io_cq->cdesc_entry_size_in_bytes); +} + +static inline u16 ena_com_cdesc_rx_pkt_get(struct ena_com_io_cq *io_cq, + u16 *first_cdesc_idx) +{ + struct ena_eth_io_rx_cdesc_base *cdesc; + u16 count = 0, head_masked; + u32 last = 0; + + do { + cdesc = ena_com_get_next_rx_cdesc(io_cq); + if (!cdesc) + break; + + ena_com_cq_inc_head(io_cq); + count++; + last = (READ_ONCE(cdesc->status) & ENA_ETH_IO_RX_CDESC_BASE_LAST_MASK) >> + ENA_ETH_IO_RX_CDESC_BASE_LAST_SHIFT; + } while (!last); + + if (last) { + *first_cdesc_idx = io_cq->cur_rx_pkt_cdesc_start_idx; + count += io_cq->cur_rx_pkt_cdesc_count; + + head_masked = io_cq->head & (io_cq->q_depth - 1); + + io_cq->cur_rx_pkt_cdesc_count = 0; + io_cq->cur_rx_pkt_cdesc_start_idx = head_masked; + + pr_debug("ena q_id: %d packets were completed. first desc idx %u descs# %d\n", + io_cq->qid, *first_cdesc_idx, count); + } else { + io_cq->cur_rx_pkt_cdesc_count += count; + count = 0; + } + + return count; +} + +static inline bool ena_com_meta_desc_changed(struct ena_com_io_sq *io_sq, + struct ena_com_tx_ctx *ena_tx_ctx) +{ + int rc; + + if (ena_tx_ctx->meta_valid) { + rc = memcmp(&io_sq->cached_tx_meta, + &ena_tx_ctx->ena_meta, + sizeof(struct ena_com_tx_meta)); + + if (unlikely(rc != 0)) + return true; + } + + return false; +} + +static inline void ena_com_create_and_store_tx_meta_desc(struct ena_com_io_sq *io_sq, + struct ena_com_tx_ctx *ena_tx_ctx) +{ + struct ena_eth_io_tx_meta_desc *meta_desc = NULL; + struct ena_com_tx_meta *ena_meta = &ena_tx_ctx->ena_meta; + + meta_desc = get_sq_desc(io_sq); + memset(meta_desc, 0x0, sizeof(struct ena_eth_io_tx_meta_desc)); + + meta_desc->len_ctrl |= ENA_ETH_IO_TX_META_DESC_META_DESC_MASK; + + meta_desc->len_ctrl |= ENA_ETH_IO_TX_META_DESC_EXT_VALID_MASK; + + /* bits 0-9 of the mss */ + meta_desc->word2 |= (ena_meta->mss << + ENA_ETH_IO_TX_META_DESC_MSS_LO_SHIFT) & + ENA_ETH_IO_TX_META_DESC_MSS_LO_MASK; + /* bits 10-13 of the mss */ + meta_desc->len_ctrl |= ((ena_meta->mss >> 10) << + ENA_ETH_IO_TX_META_DESC_MSS_HI_SHIFT) & + ENA_ETH_IO_TX_META_DESC_MSS_HI_MASK; + + /* Extended meta desc */ + meta_desc->len_ctrl |= ENA_ETH_IO_TX_META_DESC_ETH_META_TYPE_MASK; + meta_desc->len_ctrl |= ENA_ETH_IO_TX_META_DESC_META_STORE_MASK; + meta_desc->len_ctrl |= (io_sq->phase << + ENA_ETH_IO_TX_META_DESC_PHASE_SHIFT) & + ENA_ETH_IO_TX_META_DESC_PHASE_MASK; + + meta_desc->len_ctrl |= ENA_ETH_IO_TX_META_DESC_FIRST_MASK; + meta_desc->word2 |= ena_meta->l3_hdr_len & + ENA_ETH_IO_TX_META_DESC_L3_HDR_LEN_MASK; + meta_desc->word2 |= (ena_meta->l3_hdr_offset << + ENA_ETH_IO_TX_META_DESC_L3_HDR_OFF_SHIFT) & + ENA_ETH_IO_TX_META_DESC_L3_HDR_OFF_MASK; + + meta_desc->word2 |= (ena_meta->l4_hdr_len << + ENA_ETH_IO_TX_META_DESC_L4_HDR_LEN_IN_WORDS_SHIFT) & + ENA_ETH_IO_TX_META_DESC_L4_HDR_LEN_IN_WORDS_MASK; + + meta_desc->len_ctrl |= ENA_ETH_IO_TX_META_DESC_META_STORE_MASK; + + /* Cached the meta desc */ + memcpy(&io_sq->cached_tx_meta, ena_meta, + sizeof(struct ena_com_tx_meta)); + + ena_com_copy_curr_sq_desc_to_dev(io_sq); + ena_com_sq_update_tail(io_sq); +} + +static inline void ena_com_rx_set_flags(struct ena_com_rx_ctx *ena_rx_ctx, + struct ena_eth_io_rx_cdesc_base *cdesc) +{ + ena_rx_ctx->l3_proto = cdesc->status & + ENA_ETH_IO_RX_CDESC_BASE_L3_PROTO_IDX_MASK; + ena_rx_ctx->l4_proto = + (cdesc->status & ENA_ETH_IO_RX_CDESC_BASE_L4_PROTO_IDX_MASK) >> + ENA_ETH_IO_RX_CDESC_BASE_L4_PROTO_IDX_SHIFT; + ena_rx_ctx->l3_csum_err = + (cdesc->status & ENA_ETH_IO_RX_CDESC_BASE_L3_CSUM_ERR_MASK) >> + ENA_ETH_IO_RX_CDESC_BASE_L3_CSUM_ERR_SHIFT; + ena_rx_ctx->l4_csum_err = + (cdesc->status & ENA_ETH_IO_RX_CDESC_BASE_L4_CSUM_ERR_MASK) >> + ENA_ETH_IO_RX_CDESC_BASE_L4_CSUM_ERR_SHIFT; + ena_rx_ctx->hash = cdesc->hash; + ena_rx_ctx->frag = + (cdesc->status & ENA_ETH_IO_RX_CDESC_BASE_IPV4_FRAG_MASK) >> + ENA_ETH_IO_RX_CDESC_BASE_IPV4_FRAG_SHIFT; + + pr_debug("ena_rx_ctx->l3_proto %d ena_rx_ctx->l4_proto %d\nena_rx_ctx->l3_csum_err %d ena_rx_ctx->l4_csum_err %d\nhash frag %d frag: %d cdesc_status: %x\n", + ena_rx_ctx->l3_proto, ena_rx_ctx->l4_proto, + ena_rx_ctx->l3_csum_err, ena_rx_ctx->l4_csum_err, + ena_rx_ctx->hash, ena_rx_ctx->frag, cdesc->status); +} + +/*****************************************************************************/ +/***************************** API **********************************/ +/*****************************************************************************/ + +int ena_com_prepare_tx(struct ena_com_io_sq *io_sq, + struct ena_com_tx_ctx *ena_tx_ctx, + int *nb_hw_desc) +{ + struct ena_eth_io_tx_desc *desc = NULL; + struct ena_com_buf *ena_bufs = ena_tx_ctx->ena_bufs; + void *push_header = ena_tx_ctx->push_header; + u16 header_len = ena_tx_ctx->header_len; + u16 num_bufs = ena_tx_ctx->num_bufs; + int total_desc, i, rc; + bool have_meta; + u64 addr_hi; + + WARN(io_sq->direction != ENA_COM_IO_QUEUE_DIRECTION_TX, "wrong Q type"); + + /* num_bufs +1 for potential meta desc */ + if (ena_com_sq_empty_space(io_sq) < (num_bufs + 1)) { + pr_err("Not enough space in the tx queue\n"); + return -ENOMEM; + } + + if (unlikely(header_len > io_sq->tx_max_header_size)) { + pr_err("header size is too large %d max header: %d\n", + header_len, io_sq->tx_max_header_size); + return -EINVAL; + } + + /* start with pushing the header (if needed) */ + rc = ena_com_write_header(io_sq, push_header, header_len); + if (unlikely(rc)) + return rc; + + have_meta = ena_tx_ctx->meta_valid && ena_com_meta_desc_changed(io_sq, + ena_tx_ctx); + if (have_meta) + ena_com_create_and_store_tx_meta_desc(io_sq, ena_tx_ctx); + + /* If the caller doesn't want send packets */ + if (unlikely(!num_bufs && !header_len)) { + *nb_hw_desc = have_meta ? 0 : 1; + return 0; + } + + desc = get_sq_desc(io_sq); + memset(desc, 0x0, sizeof(struct ena_eth_io_tx_desc)); + + /* Set first desc when we don't have meta descriptor */ + if (!have_meta) + desc->len_ctrl |= ENA_ETH_IO_TX_DESC_FIRST_MASK; + + desc->buff_addr_hi_hdr_sz |= (header_len << + ENA_ETH_IO_TX_DESC_HEADER_LENGTH_SHIFT) & + ENA_ETH_IO_TX_DESC_HEADER_LENGTH_MASK; + desc->len_ctrl |= (io_sq->phase << ENA_ETH_IO_TX_DESC_PHASE_SHIFT) & + ENA_ETH_IO_TX_DESC_PHASE_MASK; + + desc->len_ctrl |= ENA_ETH_IO_TX_DESC_COMP_REQ_MASK; + + /* Bits 0-9 */ + desc->meta_ctrl |= (ena_tx_ctx->req_id << + ENA_ETH_IO_TX_DESC_REQ_ID_LO_SHIFT) & + ENA_ETH_IO_TX_DESC_REQ_ID_LO_MASK; + + desc->meta_ctrl |= (ena_tx_ctx->df << + ENA_ETH_IO_TX_DESC_DF_SHIFT) & + ENA_ETH_IO_TX_DESC_DF_MASK; + + /* Bits 10-15 */ + desc->len_ctrl |= ((ena_tx_ctx->req_id >> 10) << + ENA_ETH_IO_TX_DESC_REQ_ID_HI_SHIFT) & + ENA_ETH_IO_TX_DESC_REQ_ID_HI_MASK; + + if (ena_tx_ctx->meta_valid) { + desc->meta_ctrl |= (ena_tx_ctx->tso_enable << + ENA_ETH_IO_TX_DESC_TSO_EN_SHIFT) & + ENA_ETH_IO_TX_DESC_TSO_EN_MASK; + desc->meta_ctrl |= ena_tx_ctx->l3_proto & + ENA_ETH_IO_TX_DESC_L3_PROTO_IDX_MASK; + desc->meta_ctrl |= (ena_tx_ctx->l4_proto << + ENA_ETH_IO_TX_DESC_L4_PROTO_IDX_SHIFT) & + ENA_ETH_IO_TX_DESC_L4_PROTO_IDX_MASK; + desc->meta_ctrl |= (ena_tx_ctx->l3_csum_enable << + ENA_ETH_IO_TX_DESC_L3_CSUM_EN_SHIFT) & + ENA_ETH_IO_TX_DESC_L3_CSUM_EN_MASK; + desc->meta_ctrl |= (ena_tx_ctx->l4_csum_enable << + ENA_ETH_IO_TX_DESC_L4_CSUM_EN_SHIFT) & + ENA_ETH_IO_TX_DESC_L4_CSUM_EN_MASK; + desc->meta_ctrl |= (ena_tx_ctx->l4_csum_partial << + ENA_ETH_IO_TX_DESC_L4_CSUM_PARTIAL_SHIFT) & + ENA_ETH_IO_TX_DESC_L4_CSUM_PARTIAL_MASK; + } + + for (i = 0; i < num_bufs; i++) { + /* The first desc share the same desc as the header */ + if (likely(i != 0)) { + ena_com_copy_curr_sq_desc_to_dev(io_sq); + ena_com_sq_update_tail(io_sq); + + desc = get_sq_desc(io_sq); + memset(desc, 0x0, sizeof(struct ena_eth_io_tx_desc)); + + desc->len_ctrl |= (io_sq->phase << + ENA_ETH_IO_TX_DESC_PHASE_SHIFT) & + ENA_ETH_IO_TX_DESC_PHASE_MASK; + } + + desc->len_ctrl |= ena_bufs->len & + ENA_ETH_IO_TX_DESC_LENGTH_MASK; + + addr_hi = ((ena_bufs->paddr & + GENMASK_ULL(io_sq->dma_addr_bits - 1, 32)) >> 32); + + desc->buff_addr_lo = (u32)ena_bufs->paddr; + desc->buff_addr_hi_hdr_sz |= addr_hi & + ENA_ETH_IO_TX_DESC_ADDR_HI_MASK; + ena_bufs++; + } + + /* set the last desc indicator */ + desc->len_ctrl |= ENA_ETH_IO_TX_DESC_LAST_MASK; + + ena_com_copy_curr_sq_desc_to_dev(io_sq); + + ena_com_sq_update_tail(io_sq); + + total_desc = max_t(u16, num_bufs, 1); + total_desc += have_meta ? 1 : 0; + + *nb_hw_desc = total_desc; + return 0; +} + +int ena_com_rx_pkt(struct ena_com_io_cq *io_cq, + struct ena_com_io_sq *io_sq, + struct ena_com_rx_ctx *ena_rx_ctx) +{ + struct ena_com_rx_buf_info *ena_buf = &ena_rx_ctx->ena_bufs[0]; + struct ena_eth_io_rx_cdesc_base *cdesc = NULL; + u16 cdesc_idx = 0; + u16 nb_hw_desc; + u16 i; + + WARN(io_cq->direction != ENA_COM_IO_QUEUE_DIRECTION_RX, "wrong Q type"); + + nb_hw_desc = ena_com_cdesc_rx_pkt_get(io_cq, &cdesc_idx); + if (nb_hw_desc == 0) { + ena_rx_ctx->descs = nb_hw_desc; + return 0; + } + + pr_debug("fetch rx packet: queue %d completed desc: %d\n", io_cq->qid, + nb_hw_desc); + + if (unlikely(nb_hw_desc > ena_rx_ctx->max_bufs)) { + pr_err("Too many RX cdescs (%d) > MAX(%d)\n", nb_hw_desc, + ena_rx_ctx->max_bufs); + return -ENOSPC; + } + + for (i = 0; i < nb_hw_desc; i++) { + cdesc = ena_com_rx_cdesc_idx_to_ptr(io_cq, cdesc_idx + i); + + ena_buf->len = cdesc->length; + ena_buf->req_id = cdesc->req_id; + ena_buf++; + } + + /* Update SQ head ptr */ + io_sq->next_to_comp += nb_hw_desc; + + pr_debug("[%s][QID#%d] Updating SQ head to: %d\n", __func__, io_sq->qid, + io_sq->next_to_comp); + + /* Get rx flags from the last pkt */ + ena_com_rx_set_flags(ena_rx_ctx, cdesc); + + ena_rx_ctx->descs = nb_hw_desc; + return 0; +} + +int ena_com_add_single_rx_desc(struct ena_com_io_sq *io_sq, + struct ena_com_buf *ena_buf, + u16 req_id) +{ + struct ena_eth_io_rx_desc *desc; + + WARN(io_sq->direction != ENA_COM_IO_QUEUE_DIRECTION_RX, "wrong Q type"); + + if (unlikely(ena_com_sq_empty_space(io_sq) == 0)) + return -ENOSPC; + + desc = get_sq_desc(io_sq); + memset(desc, 0x0, sizeof(struct ena_eth_io_rx_desc)); + + desc->length = ena_buf->len; + + desc->ctrl |= ENA_ETH_IO_RX_DESC_FIRST_MASK; + desc->ctrl |= ENA_ETH_IO_RX_DESC_LAST_MASK; + desc->ctrl |= io_sq->phase & ENA_ETH_IO_RX_DESC_PHASE_MASK; + desc->ctrl |= ENA_ETH_IO_RX_DESC_COMP_REQ_MASK; + + desc->req_id = req_id; + + desc->buff_addr_lo = (u32)ena_buf->paddr; + desc->buff_addr_hi = + ((ena_buf->paddr & GENMASK_ULL(io_sq->dma_addr_bits - 1, 32)) >> 32); + + ena_com_sq_update_tail(io_sq); + + return 0; +} + +int ena_com_tx_comp_req_id_get(struct ena_com_io_cq *io_cq, u16 *req_id) +{ + u8 expected_phase, cdesc_phase; + struct ena_eth_io_tx_cdesc *cdesc; + u16 masked_head; + + masked_head = io_cq->head & (io_cq->q_depth - 1); + expected_phase = io_cq->phase; + + cdesc = (struct ena_eth_io_tx_cdesc *) + ((uintptr_t)io_cq->cdesc_addr.virt_addr + + (masked_head * io_cq->cdesc_entry_size_in_bytes)); + + /* When the current completion descriptor phase isn't the same as the + * expected, it mean that the device still didn't update + * this completion. + */ + cdesc_phase = READ_ONCE(cdesc->flags) & ENA_ETH_IO_TX_CDESC_PHASE_MASK; + if (cdesc_phase != expected_phase) + return -EAGAIN; + + ena_com_cq_inc_head(io_cq); + + *req_id = READ_ONCE(cdesc->req_id); + + return 0; +} --- linux-4.8.0.orig/drivers/net/ethernet/amazon/ena/ena_eth_com.h +++ linux-4.8.0/drivers/net/ethernet/amazon/ena/ena_eth_com.h @@ -0,0 +1,160 @@ +/* + * Copyright 2015 Amazon.com, Inc. or its affiliates. + * + * This software is available to you under a choice of one of two + * licenses. You may choose to be licensed under the terms of the GNU + * General Public License (GPL) Version 2, available from the file + * COPYING in the main directory of this source tree, or the + * BSD license below: + * + * Redistribution and use in source and binary forms, with or + * without modification, are permitted provided that the following + * conditions are met: + * + * - Redistributions of source code must retain the above + * copyright notice, this list of conditions and the following + * disclaimer. + * + * - Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + +#ifndef ENA_ETH_COM_H_ +#define ENA_ETH_COM_H_ + +#include "ena_com.h" + +/* head update threshold in units of (queue size / ENA_COMP_HEAD_THRESH) */ +#define ENA_COMP_HEAD_THRESH 4 + +struct ena_com_tx_ctx { + struct ena_com_tx_meta ena_meta; + struct ena_com_buf *ena_bufs; + /* For LLQ, header buffer - pushed to the device mem space */ + void *push_header; + + enum ena_eth_io_l3_proto_index l3_proto; + enum ena_eth_io_l4_proto_index l4_proto; + u16 num_bufs; + u16 req_id; + /* For regular queue, indicate the size of the header + * For LLQ, indicate the size of the pushed buffer + */ + u16 header_len; + + u8 meta_valid; + u8 tso_enable; + u8 l3_csum_enable; + u8 l4_csum_enable; + u8 l4_csum_partial; + u8 df; /* Don't fragment */ +}; + +struct ena_com_rx_ctx { + struct ena_com_rx_buf_info *ena_bufs; + enum ena_eth_io_l3_proto_index l3_proto; + enum ena_eth_io_l4_proto_index l4_proto; + bool l3_csum_err; + bool l4_csum_err; + /* fragmented packet */ + bool frag; + u32 hash; + u16 descs; + int max_bufs; +}; + +int ena_com_prepare_tx(struct ena_com_io_sq *io_sq, + struct ena_com_tx_ctx *ena_tx_ctx, + int *nb_hw_desc); + +int ena_com_rx_pkt(struct ena_com_io_cq *io_cq, + struct ena_com_io_sq *io_sq, + struct ena_com_rx_ctx *ena_rx_ctx); + +int ena_com_add_single_rx_desc(struct ena_com_io_sq *io_sq, + struct ena_com_buf *ena_buf, + u16 req_id); + +int ena_com_tx_comp_req_id_get(struct ena_com_io_cq *io_cq, u16 *req_id); + +static inline void ena_com_unmask_intr(struct ena_com_io_cq *io_cq, + struct ena_eth_io_intr_reg *intr_reg) +{ + writel(intr_reg->intr_control, io_cq->unmask_reg); +} + +static inline int ena_com_sq_empty_space(struct ena_com_io_sq *io_sq) +{ + u16 tail, next_to_comp, cnt; + + next_to_comp = io_sq->next_to_comp; + tail = io_sq->tail; + cnt = tail - next_to_comp; + + return io_sq->q_depth - 1 - cnt; +} + +static inline int ena_com_write_sq_doorbell(struct ena_com_io_sq *io_sq) +{ + u16 tail; + + tail = io_sq->tail; + + pr_debug("write submission queue doorbell for queue: %d tail: %d\n", + io_sq->qid, tail); + + writel(tail, io_sq->db_addr); + + return 0; +} + +static inline int ena_com_update_dev_comp_head(struct ena_com_io_cq *io_cq) +{ + u16 unreported_comp, head; + bool need_update; + + head = io_cq->head; + unreported_comp = head - io_cq->last_head_update; + need_update = unreported_comp > (io_cq->q_depth / ENA_COMP_HEAD_THRESH); + + if (io_cq->cq_head_db_reg && need_update) { + pr_debug("Write completion queue doorbell for queue %d: head: %d\n", + io_cq->qid, head); + writel(head, io_cq->cq_head_db_reg); + io_cq->last_head_update = head; + } + + return 0; +} + +static inline void ena_com_update_numa_node(struct ena_com_io_cq *io_cq, + u8 numa_node) +{ + struct ena_eth_io_numa_node_cfg_reg numa_cfg; + + if (!io_cq->numa_node_cfg_reg) + return; + + numa_cfg.numa_cfg = (numa_node & ENA_ETH_IO_NUMA_NODE_CFG_REG_NUMA_MASK) + | ENA_ETH_IO_NUMA_NODE_CFG_REG_ENABLED_MASK; + + writel(numa_cfg.numa_cfg, io_cq->numa_node_cfg_reg); +} + +static inline void ena_com_comp_ack(struct ena_com_io_sq *io_sq, u16 elem) +{ + io_sq->next_to_comp += elem; +} + +#endif /* ENA_ETH_COM_H_ */ --- linux-4.8.0.orig/drivers/net/ethernet/amazon/ena/ena_eth_io_defs.h +++ linux-4.8.0/drivers/net/ethernet/amazon/ena/ena_eth_io_defs.h @@ -0,0 +1,416 @@ +/* + * Copyright 2015 - 2016 Amazon.com, Inc. or its affiliates. + * + * This software is available to you under a choice of one of two + * licenses. You may choose to be licensed under the terms of the GNU + * General Public License (GPL) Version 2, available from the file + * COPYING in the main directory of this source tree, or the + * BSD license below: + * + * Redistribution and use in source and binary forms, with or + * without modification, are permitted provided that the following + * conditions are met: + * + * - Redistributions of source code must retain the above + * copyright notice, this list of conditions and the following + * disclaimer. + * + * - Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ +#ifndef _ENA_ETH_IO_H_ +#define _ENA_ETH_IO_H_ + +enum ena_eth_io_l3_proto_index { + ENA_ETH_IO_L3_PROTO_UNKNOWN = 0, + + ENA_ETH_IO_L3_PROTO_IPV4 = 8, + + ENA_ETH_IO_L3_PROTO_IPV6 = 11, + + ENA_ETH_IO_L3_PROTO_FCOE = 21, + + ENA_ETH_IO_L3_PROTO_ROCE = 22, +}; + +enum ena_eth_io_l4_proto_index { + ENA_ETH_IO_L4_PROTO_UNKNOWN = 0, + + ENA_ETH_IO_L4_PROTO_TCP = 12, + + ENA_ETH_IO_L4_PROTO_UDP = 13, + + ENA_ETH_IO_L4_PROTO_ROUTEABLE_ROCE = 23, +}; + +struct ena_eth_io_tx_desc { + /* 15:0 : length - Buffer length in bytes, must + * include any packet trailers that the ENA supposed + * to update like End-to-End CRC, Authentication GMAC + * etc. This length must not include the + * 'Push_Buffer' length. This length must not include + * the 4-byte added in the end for 802.3 Ethernet FCS + * 21:16 : req_id_hi - Request ID[15:10] + * 22 : reserved22 - MBZ + * 23 : meta_desc - MBZ + * 24 : phase + * 25 : reserved1 - MBZ + * 26 : first - Indicates first descriptor in + * transaction + * 27 : last - Indicates last descriptor in + * transaction + * 28 : comp_req - Indicates whether completion + * should be posted, after packet is transmitted. + * Valid only for first descriptor + * 30:29 : reserved29 - MBZ + * 31 : reserved31 - MBZ + */ + u32 len_ctrl; + + /* 3:0 : l3_proto_idx - L3 protocol. This field + * required when l3_csum_en,l3_csum or tso_en are set. + * 4 : DF - IPv4 DF, must be 0 if packet is IPv4 and + * DF flags of the IPv4 header is 0. Otherwise must + * be set to 1 + * 6:5 : reserved5 + * 7 : tso_en - Enable TSO, For TCP only. + * 12:8 : l4_proto_idx - L4 protocol. This field need + * to be set when l4_csum_en or tso_en are set. + * 13 : l3_csum_en - enable IPv4 header checksum. + * 14 : l4_csum_en - enable TCP/UDP checksum. + * 15 : ethernet_fcs_dis - when set, the controller + * will not append the 802.3 Ethernet Frame Check + * Sequence to the packet + * 16 : reserved16 + * 17 : l4_csum_partial - L4 partial checksum. when + * set to 0, the ENA calculates the L4 checksum, + * where the Destination Address required for the + * TCP/UDP pseudo-header is taken from the actual + * packet L3 header. when set to 1, the ENA doesn't + * calculate the sum of the pseudo-header, instead, + * the checksum field of the L4 is used instead. When + * TSO enabled, the checksum of the pseudo-header + * must not include the tcp length field. L4 partial + * checksum should be used for IPv6 packet that + * contains Routing Headers. + * 20:18 : reserved18 - MBZ + * 21 : reserved21 - MBZ + * 31:22 : req_id_lo - Request ID[9:0] + */ + u32 meta_ctrl; + + u32 buff_addr_lo; + + /* address high and header size + * 15:0 : addr_hi - Buffer Pointer[47:32] + * 23:16 : reserved16_w2 + * 31:24 : header_length - Header length. For Low + * Latency Queues, this fields indicates the number + * of bytes written to the headers' memory. For + * normal queues, if packet is TCP or UDP, and longer + * than max_header_size, then this field should be + * set to the sum of L4 header offset and L4 header + * size(without options), otherwise, this field + * should be set to 0. For both modes, this field + * must not exceed the max_header_size. + * max_header_size value is reported by the Max + * Queues Feature descriptor + */ + u32 buff_addr_hi_hdr_sz; +}; + +struct ena_eth_io_tx_meta_desc { + /* 9:0 : req_id_lo - Request ID[9:0] + * 11:10 : reserved10 - MBZ + * 12 : reserved12 - MBZ + * 13 : reserved13 - MBZ + * 14 : ext_valid - if set, offset fields in Word2 + * are valid Also MSS High in Word 0 and bits [31:24] + * in Word 3 + * 15 : reserved15 + * 19:16 : mss_hi + * 20 : eth_meta_type - 0: Tx Metadata Descriptor, 1: + * Extended Metadata Descriptor + * 21 : meta_store - Store extended metadata in queue + * cache + * 22 : reserved22 - MBZ + * 23 : meta_desc - MBO + * 24 : phase + * 25 : reserved25 - MBZ + * 26 : first - Indicates first descriptor in + * transaction + * 27 : last - Indicates last descriptor in + * transaction + * 28 : comp_req - Indicates whether completion + * should be posted, after packet is transmitted. + * Valid only for first descriptor + * 30:29 : reserved29 - MBZ + * 31 : reserved31 - MBZ + */ + u32 len_ctrl; + + /* 5:0 : req_id_hi + * 31:6 : reserved6 - MBZ + */ + u32 word1; + + /* 7:0 : l3_hdr_len + * 15:8 : l3_hdr_off + * 21:16 : l4_hdr_len_in_words - counts the L4 header + * length in words. there is an explicit assumption + * that L4 header appears right after L3 header and + * L4 offset is based on l3_hdr_off+l3_hdr_len + * 31:22 : mss_lo + */ + u32 word2; + + u32 reserved; +}; + +struct ena_eth_io_tx_cdesc { + /* Request ID[15:0] */ + u16 req_id; + + u8 status; + + /* flags + * 0 : phase + * 7:1 : reserved1 + */ + u8 flags; + + u16 sub_qid; + + u16 sq_head_idx; +}; + +struct ena_eth_io_rx_desc { + /* In bytes. 0 means 64KB */ + u16 length; + + /* MBZ */ + u8 reserved2; + + /* 0 : phase + * 1 : reserved1 - MBZ + * 2 : first - Indicates first descriptor in + * transaction + * 3 : last - Indicates last descriptor in transaction + * 4 : comp_req + * 5 : reserved5 - MBO + * 7:6 : reserved6 - MBZ + */ + u8 ctrl; + + u16 req_id; + + /* MBZ */ + u16 reserved6; + + u32 buff_addr_lo; + + u16 buff_addr_hi; + + /* MBZ */ + u16 reserved16_w3; +}; + +/* 4-word format Note: all ethernet parsing information are valid only when + * last=1 + */ +struct ena_eth_io_rx_cdesc_base { + /* 4:0 : l3_proto_idx + * 6:5 : src_vlan_cnt + * 7 : reserved7 - MBZ + * 12:8 : l4_proto_idx + * 13 : l3_csum_err - when set, either the L3 + * checksum error detected, or, the controller didn't + * validate the checksum. This bit is valid only when + * l3_proto_idx indicates IPv4 packet + * 14 : l4_csum_err - when set, either the L4 + * checksum error detected, or, the controller didn't + * validate the checksum. This bit is valid only when + * l4_proto_idx indicates TCP/UDP packet, and, + * ipv4_frag is not set + * 15 : ipv4_frag - Indicates IPv4 fragmented packet + * 23:16 : reserved16 + * 24 : phase + * 25 : l3_csum2 - second checksum engine result + * 26 : first - Indicates first descriptor in + * transaction + * 27 : last - Indicates last descriptor in + * transaction + * 29:28 : reserved28 + * 30 : buffer - 0: Metadata descriptor. 1: Buffer + * Descriptor was used + * 31 : reserved31 + */ + u32 status; + + u16 length; + + u16 req_id; + + /* 32-bit hash result */ + u32 hash; + + u16 sub_qid; + + u16 reserved; +}; + +/* 8-word format */ +struct ena_eth_io_rx_cdesc_ext { + struct ena_eth_io_rx_cdesc_base base; + + u32 buff_addr_lo; + + u16 buff_addr_hi; + + u16 reserved16; + + u32 reserved_w6; + + u32 reserved_w7; +}; + +struct ena_eth_io_intr_reg { + /* 14:0 : rx_intr_delay + * 29:15 : tx_intr_delay + * 30 : intr_unmask + * 31 : reserved + */ + u32 intr_control; +}; + +struct ena_eth_io_numa_node_cfg_reg { + /* 7:0 : numa + * 30:8 : reserved + * 31 : enabled + */ + u32 numa_cfg; +}; + +/* tx_desc */ +#define ENA_ETH_IO_TX_DESC_LENGTH_MASK GENMASK(15, 0) +#define ENA_ETH_IO_TX_DESC_REQ_ID_HI_SHIFT 16 +#define ENA_ETH_IO_TX_DESC_REQ_ID_HI_MASK GENMASK(21, 16) +#define ENA_ETH_IO_TX_DESC_META_DESC_SHIFT 23 +#define ENA_ETH_IO_TX_DESC_META_DESC_MASK BIT(23) +#define ENA_ETH_IO_TX_DESC_PHASE_SHIFT 24 +#define ENA_ETH_IO_TX_DESC_PHASE_MASK BIT(24) +#define ENA_ETH_IO_TX_DESC_FIRST_SHIFT 26 +#define ENA_ETH_IO_TX_DESC_FIRST_MASK BIT(26) +#define ENA_ETH_IO_TX_DESC_LAST_SHIFT 27 +#define ENA_ETH_IO_TX_DESC_LAST_MASK BIT(27) +#define ENA_ETH_IO_TX_DESC_COMP_REQ_SHIFT 28 +#define ENA_ETH_IO_TX_DESC_COMP_REQ_MASK BIT(28) +#define ENA_ETH_IO_TX_DESC_L3_PROTO_IDX_MASK GENMASK(3, 0) +#define ENA_ETH_IO_TX_DESC_DF_SHIFT 4 +#define ENA_ETH_IO_TX_DESC_DF_MASK BIT(4) +#define ENA_ETH_IO_TX_DESC_TSO_EN_SHIFT 7 +#define ENA_ETH_IO_TX_DESC_TSO_EN_MASK BIT(7) +#define ENA_ETH_IO_TX_DESC_L4_PROTO_IDX_SHIFT 8 +#define ENA_ETH_IO_TX_DESC_L4_PROTO_IDX_MASK GENMASK(12, 8) +#define ENA_ETH_IO_TX_DESC_L3_CSUM_EN_SHIFT 13 +#define ENA_ETH_IO_TX_DESC_L3_CSUM_EN_MASK BIT(13) +#define ENA_ETH_IO_TX_DESC_L4_CSUM_EN_SHIFT 14 +#define ENA_ETH_IO_TX_DESC_L4_CSUM_EN_MASK BIT(14) +#define ENA_ETH_IO_TX_DESC_ETHERNET_FCS_DIS_SHIFT 15 +#define ENA_ETH_IO_TX_DESC_ETHERNET_FCS_DIS_MASK BIT(15) +#define ENA_ETH_IO_TX_DESC_L4_CSUM_PARTIAL_SHIFT 17 +#define ENA_ETH_IO_TX_DESC_L4_CSUM_PARTIAL_MASK BIT(17) +#define ENA_ETH_IO_TX_DESC_REQ_ID_LO_SHIFT 22 +#define ENA_ETH_IO_TX_DESC_REQ_ID_LO_MASK GENMASK(31, 22) +#define ENA_ETH_IO_TX_DESC_ADDR_HI_MASK GENMASK(15, 0) +#define ENA_ETH_IO_TX_DESC_HEADER_LENGTH_SHIFT 24 +#define ENA_ETH_IO_TX_DESC_HEADER_LENGTH_MASK GENMASK(31, 24) + +/* tx_meta_desc */ +#define ENA_ETH_IO_TX_META_DESC_REQ_ID_LO_MASK GENMASK(9, 0) +#define ENA_ETH_IO_TX_META_DESC_EXT_VALID_SHIFT 14 +#define ENA_ETH_IO_TX_META_DESC_EXT_VALID_MASK BIT(14) +#define ENA_ETH_IO_TX_META_DESC_MSS_HI_SHIFT 16 +#define ENA_ETH_IO_TX_META_DESC_MSS_HI_MASK GENMASK(19, 16) +#define ENA_ETH_IO_TX_META_DESC_ETH_META_TYPE_SHIFT 20 +#define ENA_ETH_IO_TX_META_DESC_ETH_META_TYPE_MASK BIT(20) +#define ENA_ETH_IO_TX_META_DESC_META_STORE_SHIFT 21 +#define ENA_ETH_IO_TX_META_DESC_META_STORE_MASK BIT(21) +#define ENA_ETH_IO_TX_META_DESC_META_DESC_SHIFT 23 +#define ENA_ETH_IO_TX_META_DESC_META_DESC_MASK BIT(23) +#define ENA_ETH_IO_TX_META_DESC_PHASE_SHIFT 24 +#define ENA_ETH_IO_TX_META_DESC_PHASE_MASK BIT(24) +#define ENA_ETH_IO_TX_META_DESC_FIRST_SHIFT 26 +#define ENA_ETH_IO_TX_META_DESC_FIRST_MASK BIT(26) +#define ENA_ETH_IO_TX_META_DESC_LAST_SHIFT 27 +#define ENA_ETH_IO_TX_META_DESC_LAST_MASK BIT(27) +#define ENA_ETH_IO_TX_META_DESC_COMP_REQ_SHIFT 28 +#define ENA_ETH_IO_TX_META_DESC_COMP_REQ_MASK BIT(28) +#define ENA_ETH_IO_TX_META_DESC_REQ_ID_HI_MASK GENMASK(5, 0) +#define ENA_ETH_IO_TX_META_DESC_L3_HDR_LEN_MASK GENMASK(7, 0) +#define ENA_ETH_IO_TX_META_DESC_L3_HDR_OFF_SHIFT 8 +#define ENA_ETH_IO_TX_META_DESC_L3_HDR_OFF_MASK GENMASK(15, 8) +#define ENA_ETH_IO_TX_META_DESC_L4_HDR_LEN_IN_WORDS_SHIFT 16 +#define ENA_ETH_IO_TX_META_DESC_L4_HDR_LEN_IN_WORDS_MASK GENMASK(21, 16) +#define ENA_ETH_IO_TX_META_DESC_MSS_LO_SHIFT 22 +#define ENA_ETH_IO_TX_META_DESC_MSS_LO_MASK GENMASK(31, 22) + +/* tx_cdesc */ +#define ENA_ETH_IO_TX_CDESC_PHASE_MASK BIT(0) + +/* rx_desc */ +#define ENA_ETH_IO_RX_DESC_PHASE_MASK BIT(0) +#define ENA_ETH_IO_RX_DESC_FIRST_SHIFT 2 +#define ENA_ETH_IO_RX_DESC_FIRST_MASK BIT(2) +#define ENA_ETH_IO_RX_DESC_LAST_SHIFT 3 +#define ENA_ETH_IO_RX_DESC_LAST_MASK BIT(3) +#define ENA_ETH_IO_RX_DESC_COMP_REQ_SHIFT 4 +#define ENA_ETH_IO_RX_DESC_COMP_REQ_MASK BIT(4) + +/* rx_cdesc_base */ +#define ENA_ETH_IO_RX_CDESC_BASE_L3_PROTO_IDX_MASK GENMASK(4, 0) +#define ENA_ETH_IO_RX_CDESC_BASE_SRC_VLAN_CNT_SHIFT 5 +#define ENA_ETH_IO_RX_CDESC_BASE_SRC_VLAN_CNT_MASK GENMASK(6, 5) +#define ENA_ETH_IO_RX_CDESC_BASE_L4_PROTO_IDX_SHIFT 8 +#define ENA_ETH_IO_RX_CDESC_BASE_L4_PROTO_IDX_MASK GENMASK(12, 8) +#define ENA_ETH_IO_RX_CDESC_BASE_L3_CSUM_ERR_SHIFT 13 +#define ENA_ETH_IO_RX_CDESC_BASE_L3_CSUM_ERR_MASK BIT(13) +#define ENA_ETH_IO_RX_CDESC_BASE_L4_CSUM_ERR_SHIFT 14 +#define ENA_ETH_IO_RX_CDESC_BASE_L4_CSUM_ERR_MASK BIT(14) +#define ENA_ETH_IO_RX_CDESC_BASE_IPV4_FRAG_SHIFT 15 +#define ENA_ETH_IO_RX_CDESC_BASE_IPV4_FRAG_MASK BIT(15) +#define ENA_ETH_IO_RX_CDESC_BASE_PHASE_SHIFT 24 +#define ENA_ETH_IO_RX_CDESC_BASE_PHASE_MASK BIT(24) +#define ENA_ETH_IO_RX_CDESC_BASE_L3_CSUM2_SHIFT 25 +#define ENA_ETH_IO_RX_CDESC_BASE_L3_CSUM2_MASK BIT(25) +#define ENA_ETH_IO_RX_CDESC_BASE_FIRST_SHIFT 26 +#define ENA_ETH_IO_RX_CDESC_BASE_FIRST_MASK BIT(26) +#define ENA_ETH_IO_RX_CDESC_BASE_LAST_SHIFT 27 +#define ENA_ETH_IO_RX_CDESC_BASE_LAST_MASK BIT(27) +#define ENA_ETH_IO_RX_CDESC_BASE_BUFFER_SHIFT 30 +#define ENA_ETH_IO_RX_CDESC_BASE_BUFFER_MASK BIT(30) + +/* intr_reg */ +#define ENA_ETH_IO_INTR_REG_RX_INTR_DELAY_MASK GENMASK(14, 0) +#define ENA_ETH_IO_INTR_REG_TX_INTR_DELAY_SHIFT 15 +#define ENA_ETH_IO_INTR_REG_TX_INTR_DELAY_MASK GENMASK(29, 15) +#define ENA_ETH_IO_INTR_REG_INTR_UNMASK_SHIFT 30 +#define ENA_ETH_IO_INTR_REG_INTR_UNMASK_MASK BIT(30) + +/* numa_node_cfg_reg */ +#define ENA_ETH_IO_NUMA_NODE_CFG_REG_NUMA_MASK GENMASK(7, 0) +#define ENA_ETH_IO_NUMA_NODE_CFG_REG_ENABLED_SHIFT 31 +#define ENA_ETH_IO_NUMA_NODE_CFG_REG_ENABLED_MASK BIT(31) + +#endif /*_ENA_ETH_IO_H_ */ --- linux-4.8.0.orig/drivers/net/ethernet/amazon/ena/ena_ethtool.c +++ linux-4.8.0/drivers/net/ethernet/amazon/ena/ena_ethtool.c @@ -0,0 +1,895 @@ +/* + * Copyright 2015 Amazon.com, Inc. or its affiliates. + * + * This software is available to you under a choice of one of two + * licenses. You may choose to be licensed under the terms of the GNU + * General Public License (GPL) Version 2, available from the file + * COPYING in the main directory of this source tree, or the + * BSD license below: + * + * Redistribution and use in source and binary forms, with or + * without modification, are permitted provided that the following + * conditions are met: + * + * - Redistributions of source code must retain the above + * copyright notice, this list of conditions and the following + * disclaimer. + * + * - Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + +#include + +#include "ena_netdev.h" + +struct ena_stats { + char name[ETH_GSTRING_LEN]; + int stat_offset; +}; + +#define ENA_STAT_ENA_COM_ENTRY(stat) { \ + .name = #stat, \ + .stat_offset = offsetof(struct ena_com_stats_admin, stat) \ +} + +#define ENA_STAT_ENTRY(stat, stat_type) { \ + .name = #stat, \ + .stat_offset = offsetof(struct ena_stats_##stat_type, stat) \ +} + +#define ENA_STAT_RX_ENTRY(stat) \ + ENA_STAT_ENTRY(stat, rx) + +#define ENA_STAT_TX_ENTRY(stat) \ + ENA_STAT_ENTRY(stat, tx) + +#define ENA_STAT_GLOBAL_ENTRY(stat) \ + ENA_STAT_ENTRY(stat, dev) + +static const struct ena_stats ena_stats_global_strings[] = { + ENA_STAT_GLOBAL_ENTRY(tx_timeout), + ENA_STAT_GLOBAL_ENTRY(io_suspend), + ENA_STAT_GLOBAL_ENTRY(io_resume), + ENA_STAT_GLOBAL_ENTRY(wd_expired), + ENA_STAT_GLOBAL_ENTRY(interface_up), + ENA_STAT_GLOBAL_ENTRY(interface_down), + ENA_STAT_GLOBAL_ENTRY(admin_q_pause), +}; + +static const struct ena_stats ena_stats_tx_strings[] = { + ENA_STAT_TX_ENTRY(cnt), + ENA_STAT_TX_ENTRY(bytes), + ENA_STAT_TX_ENTRY(queue_stop), + ENA_STAT_TX_ENTRY(queue_wakeup), + ENA_STAT_TX_ENTRY(dma_mapping_err), + ENA_STAT_TX_ENTRY(linearize), + ENA_STAT_TX_ENTRY(linearize_failed), + ENA_STAT_TX_ENTRY(napi_comp), + ENA_STAT_TX_ENTRY(tx_poll), + ENA_STAT_TX_ENTRY(doorbells), + ENA_STAT_TX_ENTRY(prepare_ctx_err), + ENA_STAT_TX_ENTRY(missing_tx_comp), + ENA_STAT_TX_ENTRY(bad_req_id), +}; + +static const struct ena_stats ena_stats_rx_strings[] = { + ENA_STAT_RX_ENTRY(cnt), + ENA_STAT_RX_ENTRY(bytes), + ENA_STAT_RX_ENTRY(refil_partial), + ENA_STAT_RX_ENTRY(bad_csum), + ENA_STAT_RX_ENTRY(page_alloc_fail), + ENA_STAT_RX_ENTRY(skb_alloc_fail), + ENA_STAT_RX_ENTRY(dma_mapping_err), + ENA_STAT_RX_ENTRY(bad_desc_num), + ENA_STAT_RX_ENTRY(rx_copybreak_pkt), +}; + +static const struct ena_stats ena_stats_ena_com_strings[] = { + ENA_STAT_ENA_COM_ENTRY(aborted_cmd), + ENA_STAT_ENA_COM_ENTRY(submitted_cmd), + ENA_STAT_ENA_COM_ENTRY(completed_cmd), + ENA_STAT_ENA_COM_ENTRY(out_of_space), + ENA_STAT_ENA_COM_ENTRY(no_completion), +}; + +#define ENA_STATS_ARRAY_GLOBAL ARRAY_SIZE(ena_stats_global_strings) +#define ENA_STATS_ARRAY_TX ARRAY_SIZE(ena_stats_tx_strings) +#define ENA_STATS_ARRAY_RX ARRAY_SIZE(ena_stats_rx_strings) +#define ENA_STATS_ARRAY_ENA_COM ARRAY_SIZE(ena_stats_ena_com_strings) + +static void ena_safe_update_stat(u64 *src, u64 *dst, + struct u64_stats_sync *syncp) +{ + unsigned int start; + + do { + start = u64_stats_fetch_begin_irq(syncp); + *(dst) = *src; + } while (u64_stats_fetch_retry_irq(syncp, start)); +} + +static void ena_queue_stats(struct ena_adapter *adapter, u64 **data) +{ + const struct ena_stats *ena_stats; + struct ena_ring *ring; + + u64 *ptr; + int i, j; + + for (i = 0; i < adapter->num_queues; i++) { + /* Tx stats */ + ring = &adapter->tx_ring[i]; + + for (j = 0; j < ENA_STATS_ARRAY_TX; j++) { + ena_stats = &ena_stats_tx_strings[j]; + + ptr = (u64 *)((uintptr_t)&ring->tx_stats + + (uintptr_t)ena_stats->stat_offset); + + ena_safe_update_stat(ptr, (*data)++, &ring->syncp); + } + + /* Rx stats */ + ring = &adapter->rx_ring[i]; + + for (j = 0; j < ENA_STATS_ARRAY_RX; j++) { + ena_stats = &ena_stats_rx_strings[j]; + + ptr = (u64 *)((uintptr_t)&ring->rx_stats + + (uintptr_t)ena_stats->stat_offset); + + ena_safe_update_stat(ptr, (*data)++, &ring->syncp); + } + } +} + +static void ena_dev_admin_queue_stats(struct ena_adapter *adapter, u64 **data) +{ + const struct ena_stats *ena_stats; + u32 *ptr; + int i; + + for (i = 0; i < ENA_STATS_ARRAY_ENA_COM; i++) { + ena_stats = &ena_stats_ena_com_strings[i]; + + ptr = (u32 *)((uintptr_t)&adapter->ena_dev->admin_queue.stats + + (uintptr_t)ena_stats->stat_offset); + + *(*data)++ = *ptr; + } +} + +static void ena_get_ethtool_stats(struct net_device *netdev, + struct ethtool_stats *stats, + u64 *data) +{ + struct ena_adapter *adapter = netdev_priv(netdev); + const struct ena_stats *ena_stats; + u64 *ptr; + int i; + + for (i = 0; i < ENA_STATS_ARRAY_GLOBAL; i++) { + ena_stats = &ena_stats_global_strings[i]; + + ptr = (u64 *)((uintptr_t)&adapter->dev_stats + + (uintptr_t)ena_stats->stat_offset); + + ena_safe_update_stat(ptr, data++, &adapter->syncp); + } + + ena_queue_stats(adapter, &data); + ena_dev_admin_queue_stats(adapter, &data); +} + +int ena_get_sset_count(struct net_device *netdev, int sset) +{ + struct ena_adapter *adapter = netdev_priv(netdev); + + if (sset != ETH_SS_STATS) + return -EOPNOTSUPP; + + return adapter->num_queues * (ENA_STATS_ARRAY_TX + ENA_STATS_ARRAY_RX) + + ENA_STATS_ARRAY_GLOBAL + ENA_STATS_ARRAY_ENA_COM; +} + +static void ena_queue_strings(struct ena_adapter *adapter, u8 **data) +{ + const struct ena_stats *ena_stats; + int i, j; + + for (i = 0; i < adapter->num_queues; i++) { + /* Tx stats */ + for (j = 0; j < ENA_STATS_ARRAY_TX; j++) { + ena_stats = &ena_stats_tx_strings[j]; + + snprintf(*data, ETH_GSTRING_LEN, + "queue_%u_tx_%s", i, ena_stats->name); + (*data) += ETH_GSTRING_LEN; + } + /* Rx stats */ + for (j = 0; j < ENA_STATS_ARRAY_RX; j++) { + ena_stats = &ena_stats_rx_strings[j]; + + snprintf(*data, ETH_GSTRING_LEN, + "queue_%u_rx_%s", i, ena_stats->name); + (*data) += ETH_GSTRING_LEN; + } + } +} + +static void ena_com_dev_strings(u8 **data) +{ + const struct ena_stats *ena_stats; + int i; + + for (i = 0; i < ENA_STATS_ARRAY_ENA_COM; i++) { + ena_stats = &ena_stats_ena_com_strings[i]; + + snprintf(*data, ETH_GSTRING_LEN, + "ena_admin_q_%s", ena_stats->name); + (*data) += ETH_GSTRING_LEN; + } +} + +static void ena_get_strings(struct net_device *netdev, u32 sset, u8 *data) +{ + struct ena_adapter *adapter = netdev_priv(netdev); + const struct ena_stats *ena_stats; + int i; + + if (sset != ETH_SS_STATS) + return; + + for (i = 0; i < ENA_STATS_ARRAY_GLOBAL; i++) { + ena_stats = &ena_stats_global_strings[i]; + + memcpy(data, ena_stats->name, ETH_GSTRING_LEN); + data += ETH_GSTRING_LEN; + } + + ena_queue_strings(adapter, &data); + ena_com_dev_strings(&data); +} + +static int ena_get_link_ksettings(struct net_device *netdev, + struct ethtool_link_ksettings *link_ksettings) +{ + struct ena_adapter *adapter = netdev_priv(netdev); + struct ena_com_dev *ena_dev = adapter->ena_dev; + struct ena_admin_get_feature_link_desc *link; + struct ena_admin_get_feat_resp feat_resp; + int rc; + + rc = ena_com_get_link_params(ena_dev, &feat_resp); + if (rc) + return rc; + + link = &feat_resp.u.link; + link_ksettings->base.speed = link->speed; + + if (link->flags & ENA_ADMIN_GET_FEATURE_LINK_DESC_AUTONEG_MASK) { + ethtool_link_ksettings_add_link_mode(link_ksettings, + supported, Autoneg); + ethtool_link_ksettings_add_link_mode(link_ksettings, + supported, Autoneg); + } + + link_ksettings->base.autoneg = + (link->flags & ENA_ADMIN_GET_FEATURE_LINK_DESC_AUTONEG_MASK) ? + AUTONEG_ENABLE : AUTONEG_DISABLE; + + link_ksettings->base.duplex = DUPLEX_FULL; + + return 0; +} + +static int ena_get_coalesce(struct net_device *net_dev, + struct ethtool_coalesce *coalesce) +{ + struct ena_adapter *adapter = netdev_priv(net_dev); + struct ena_com_dev *ena_dev = adapter->ena_dev; + struct ena_intr_moder_entry intr_moder_entry; + + if (!ena_com_interrupt_moderation_supported(ena_dev)) { + /* the devie doesn't support interrupt moderation */ + return -EOPNOTSUPP; + } + coalesce->tx_coalesce_usecs = + ena_com_get_nonadaptive_moderation_interval_tx(ena_dev) / + ena_dev->intr_delay_resolution; + if (!ena_com_get_adaptive_moderation_enabled(ena_dev)) { + coalesce->rx_coalesce_usecs = + ena_com_get_nonadaptive_moderation_interval_rx(ena_dev) + / ena_dev->intr_delay_resolution; + } else { + ena_com_get_intr_moderation_entry(adapter->ena_dev, ENA_INTR_MODER_LOWEST, &intr_moder_entry); + coalesce->rx_coalesce_usecs_low = intr_moder_entry.intr_moder_interval; + coalesce->rx_max_coalesced_frames_low = intr_moder_entry.pkts_per_interval; + + ena_com_get_intr_moderation_entry(adapter->ena_dev, ENA_INTR_MODER_MID, &intr_moder_entry); + coalesce->rx_coalesce_usecs = intr_moder_entry.intr_moder_interval; + coalesce->rx_max_coalesced_frames = intr_moder_entry.pkts_per_interval; + + ena_com_get_intr_moderation_entry(adapter->ena_dev, ENA_INTR_MODER_HIGHEST, &intr_moder_entry); + coalesce->rx_coalesce_usecs_high = intr_moder_entry.intr_moder_interval; + coalesce->rx_max_coalesced_frames_high = intr_moder_entry.pkts_per_interval; + } + coalesce->use_adaptive_rx_coalesce = + ena_com_get_adaptive_moderation_enabled(ena_dev); + + return 0; +} + +static void ena_update_tx_rings_intr_moderation(struct ena_adapter *adapter) +{ + unsigned int val; + int i; + + val = ena_com_get_nonadaptive_moderation_interval_tx(adapter->ena_dev); + + for (i = 0; i < adapter->num_queues; i++) + adapter->tx_ring[i].smoothed_interval = val; +} + +static int ena_set_coalesce(struct net_device *net_dev, + struct ethtool_coalesce *coalesce) +{ + struct ena_adapter *adapter = netdev_priv(net_dev); + struct ena_com_dev *ena_dev = adapter->ena_dev; + struct ena_intr_moder_entry intr_moder_entry; + int rc; + + if (!ena_com_interrupt_moderation_supported(ena_dev)) { + /* the devie doesn't support interrupt moderation */ + return -EOPNOTSUPP; + } + + if (coalesce->rx_coalesce_usecs_irq || + coalesce->rx_max_coalesced_frames_irq || + coalesce->tx_coalesce_usecs_irq || + coalesce->tx_max_coalesced_frames || + coalesce->tx_max_coalesced_frames_irq || + coalesce->stats_block_coalesce_usecs || + coalesce->use_adaptive_tx_coalesce || + coalesce->pkt_rate_low || + coalesce->tx_coalesce_usecs_low || + coalesce->tx_max_coalesced_frames_low || + coalesce->pkt_rate_high || + coalesce->tx_coalesce_usecs_high || + coalesce->tx_max_coalesced_frames_high || + coalesce->rate_sample_interval) + return -EINVAL; + + rc = ena_com_update_nonadaptive_moderation_interval_tx(ena_dev, + coalesce->tx_coalesce_usecs); + if (rc) + return rc; + + ena_update_tx_rings_intr_moderation(adapter); + + if (ena_com_get_adaptive_moderation_enabled(ena_dev)) { + if (!coalesce->use_adaptive_rx_coalesce) { + ena_com_disable_adaptive_moderation(ena_dev); + rc = ena_com_update_nonadaptive_moderation_interval_rx(ena_dev, + coalesce->rx_coalesce_usecs); + return rc; + } + } else { /* was in non-adaptive mode */ + if (coalesce->use_adaptive_rx_coalesce) { + ena_com_enable_adaptive_moderation(ena_dev); + } else { + rc = ena_com_update_nonadaptive_moderation_interval_rx(ena_dev, + coalesce->rx_coalesce_usecs); + return rc; + } + } + + intr_moder_entry.intr_moder_interval = coalesce->rx_coalesce_usecs_low; + intr_moder_entry.pkts_per_interval = coalesce->rx_max_coalesced_frames_low; + intr_moder_entry.bytes_per_interval = ENA_INTR_BYTE_COUNT_NOT_SUPPORTED; + ena_com_init_intr_moderation_entry(adapter->ena_dev, ENA_INTR_MODER_LOWEST, &intr_moder_entry); + + intr_moder_entry.intr_moder_interval = coalesce->rx_coalesce_usecs; + intr_moder_entry.pkts_per_interval = coalesce->rx_max_coalesced_frames; + intr_moder_entry.bytes_per_interval = ENA_INTR_BYTE_COUNT_NOT_SUPPORTED; + ena_com_init_intr_moderation_entry(adapter->ena_dev, ENA_INTR_MODER_MID, &intr_moder_entry); + + intr_moder_entry.intr_moder_interval = coalesce->rx_coalesce_usecs_high; + intr_moder_entry.pkts_per_interval = coalesce->rx_max_coalesced_frames_high; + intr_moder_entry.bytes_per_interval = ENA_INTR_BYTE_COUNT_NOT_SUPPORTED; + ena_com_init_intr_moderation_entry(adapter->ena_dev, ENA_INTR_MODER_HIGHEST, &intr_moder_entry); + + return 0; +} + +static u32 ena_get_msglevel(struct net_device *netdev) +{ + struct ena_adapter *adapter = netdev_priv(netdev); + + return adapter->msg_enable; +} + +static void ena_set_msglevel(struct net_device *netdev, u32 value) +{ + struct ena_adapter *adapter = netdev_priv(netdev); + + adapter->msg_enable = value; +} + +static void ena_get_drvinfo(struct net_device *dev, + struct ethtool_drvinfo *info) +{ + struct ena_adapter *adapter = netdev_priv(dev); + + strlcpy(info->driver, DRV_MODULE_NAME, sizeof(info->driver)); + strlcpy(info->version, DRV_MODULE_VERSION, sizeof(info->version)); + strlcpy(info->bus_info, pci_name(adapter->pdev), + sizeof(info->bus_info)); +} + +static void ena_get_ringparam(struct net_device *netdev, + struct ethtool_ringparam *ring) +{ + struct ena_adapter *adapter = netdev_priv(netdev); + struct ena_ring *tx_ring = &adapter->tx_ring[0]; + struct ena_ring *rx_ring = &adapter->rx_ring[0]; + + ring->rx_max_pending = rx_ring->ring_size; + ring->tx_max_pending = tx_ring->ring_size; + ring->rx_pending = rx_ring->ring_size; + ring->tx_pending = tx_ring->ring_size; +} + +static u32 ena_flow_hash_to_flow_type(u16 hash_fields) +{ + u32 data = 0; + + if (hash_fields & ENA_ADMIN_RSS_L2_DA) + data |= RXH_L2DA; + + if (hash_fields & ENA_ADMIN_RSS_L3_DA) + data |= RXH_IP_DST; + + if (hash_fields & ENA_ADMIN_RSS_L3_SA) + data |= RXH_IP_SRC; + + if (hash_fields & ENA_ADMIN_RSS_L4_DP) + data |= RXH_L4_B_2_3; + + if (hash_fields & ENA_ADMIN_RSS_L4_SP) + data |= RXH_L4_B_0_1; + + return data; +} + +static u16 ena_flow_data_to_flow_hash(u32 hash_fields) +{ + u16 data = 0; + + if (hash_fields & RXH_L2DA) + data |= ENA_ADMIN_RSS_L2_DA; + + if (hash_fields & RXH_IP_DST) + data |= ENA_ADMIN_RSS_L3_DA; + + if (hash_fields & RXH_IP_SRC) + data |= ENA_ADMIN_RSS_L3_SA; + + if (hash_fields & RXH_L4_B_2_3) + data |= ENA_ADMIN_RSS_L4_DP; + + if (hash_fields & RXH_L4_B_0_1) + data |= ENA_ADMIN_RSS_L4_SP; + + return data; +} + +static int ena_get_rss_hash(struct ena_com_dev *ena_dev, + struct ethtool_rxnfc *cmd) +{ + enum ena_admin_flow_hash_proto proto; + u16 hash_fields; + int rc; + + cmd->data = 0; + + switch (cmd->flow_type) { + case TCP_V4_FLOW: + proto = ENA_ADMIN_RSS_TCP4; + break; + case UDP_V4_FLOW: + proto = ENA_ADMIN_RSS_UDP4; + break; + case TCP_V6_FLOW: + proto = ENA_ADMIN_RSS_TCP6; + break; + case UDP_V6_FLOW: + proto = ENA_ADMIN_RSS_UDP6; + break; + case IPV4_FLOW: + proto = ENA_ADMIN_RSS_IP4; + break; + case IPV6_FLOW: + proto = ENA_ADMIN_RSS_IP6; + break; + case ETHER_FLOW: + proto = ENA_ADMIN_RSS_NOT_IP; + break; + case AH_V4_FLOW: + case ESP_V4_FLOW: + case AH_V6_FLOW: + case ESP_V6_FLOW: + case SCTP_V4_FLOW: + case AH_ESP_V4_FLOW: + return -EOPNOTSUPP; + default: + return -EINVAL; + } + + rc = ena_com_get_hash_ctrl(ena_dev, proto, &hash_fields); + if (rc) { + /* If device don't have permission, return unsupported */ + if (rc == -EPERM) + rc = -EOPNOTSUPP; + return rc; + } + + cmd->data = ena_flow_hash_to_flow_type(hash_fields); + + return 0; +} + +static int ena_set_rss_hash(struct ena_com_dev *ena_dev, + struct ethtool_rxnfc *cmd) +{ + enum ena_admin_flow_hash_proto proto; + u16 hash_fields; + + switch (cmd->flow_type) { + case TCP_V4_FLOW: + proto = ENA_ADMIN_RSS_TCP4; + break; + case UDP_V4_FLOW: + proto = ENA_ADMIN_RSS_UDP4; + break; + case TCP_V6_FLOW: + proto = ENA_ADMIN_RSS_TCP6; + break; + case UDP_V6_FLOW: + proto = ENA_ADMIN_RSS_UDP6; + break; + case IPV4_FLOW: + proto = ENA_ADMIN_RSS_IP4; + break; + case IPV6_FLOW: + proto = ENA_ADMIN_RSS_IP6; + break; + case ETHER_FLOW: + proto = ENA_ADMIN_RSS_NOT_IP; + break; + case AH_V4_FLOW: + case ESP_V4_FLOW: + case AH_V6_FLOW: + case ESP_V6_FLOW: + case SCTP_V4_FLOW: + case AH_ESP_V4_FLOW: + return -EOPNOTSUPP; + default: + return -EINVAL; + } + + hash_fields = ena_flow_data_to_flow_hash(cmd->data); + + return ena_com_fill_hash_ctrl(ena_dev, proto, hash_fields); +} + +static int ena_set_rxnfc(struct net_device *netdev, struct ethtool_rxnfc *info) +{ + struct ena_adapter *adapter = netdev_priv(netdev); + int rc = 0; + + switch (info->cmd) { + case ETHTOOL_SRXFH: + rc = ena_set_rss_hash(adapter->ena_dev, info); + break; + case ETHTOOL_SRXCLSRLDEL: + case ETHTOOL_SRXCLSRLINS: + default: + netif_err(adapter, drv, netdev, + "Command parameter %d is not supported\n", info->cmd); + rc = -EOPNOTSUPP; + } + + return (rc == -EPERM) ? -EOPNOTSUPP : rc; +} + +static int ena_get_rxnfc(struct net_device *netdev, struct ethtool_rxnfc *info, + u32 *rules) +{ + struct ena_adapter *adapter = netdev_priv(netdev); + int rc = 0; + + switch (info->cmd) { + case ETHTOOL_GRXRINGS: + info->data = adapter->num_queues; + rc = 0; + break; + case ETHTOOL_GRXFH: + rc = ena_get_rss_hash(adapter->ena_dev, info); + break; + case ETHTOOL_GRXCLSRLCNT: + case ETHTOOL_GRXCLSRULE: + case ETHTOOL_GRXCLSRLALL: + default: + netif_err(adapter, drv, netdev, + "Command parameter %d is not supported\n", info->cmd); + rc = -EOPNOTSUPP; + } + + return (rc == -EPERM) ? -EOPNOTSUPP : rc; +} + +static u32 ena_get_rxfh_indir_size(struct net_device *netdev) +{ + return ENA_RX_RSS_TABLE_SIZE; +} + +static u32 ena_get_rxfh_key_size(struct net_device *netdev) +{ + return ENA_HASH_KEY_SIZE; +} + +static int ena_get_rxfh(struct net_device *netdev, u32 *indir, u8 *key, + u8 *hfunc) +{ + struct ena_adapter *adapter = netdev_priv(netdev); + enum ena_admin_hash_functions ena_func; + u8 func; + int rc; + + rc = ena_com_indirect_table_get(adapter->ena_dev, indir); + if (rc) + return rc; + + rc = ena_com_get_hash_function(adapter->ena_dev, &ena_func, key); + if (rc) + return rc; + + switch (ena_func) { + case ENA_ADMIN_TOEPLITZ: + func = ETH_RSS_HASH_TOP; + break; + case ENA_ADMIN_CRC32: + func = ETH_RSS_HASH_XOR; + break; + default: + netif_err(adapter, drv, netdev, + "Command parameter is not supported\n"); + return -EOPNOTSUPP; + } + + if (hfunc) + *hfunc = func; + + return rc; +} + +static int ena_set_rxfh(struct net_device *netdev, const u32 *indir, + const u8 *key, const u8 hfunc) +{ + struct ena_adapter *adapter = netdev_priv(netdev); + struct ena_com_dev *ena_dev = adapter->ena_dev; + enum ena_admin_hash_functions func; + int rc, i; + + if (indir) { + for (i = 0; i < ENA_RX_RSS_TABLE_SIZE; i++) { + rc = ena_com_indirect_table_fill_entry(ena_dev, + ENA_IO_RXQ_IDX(indir[i]), + i); + if (unlikely(rc)) { + netif_err(adapter, drv, netdev, + "Cannot fill indirect table (index is too large)\n"); + return rc; + } + } + + rc = ena_com_indirect_table_set(ena_dev); + if (rc) { + netif_err(adapter, drv, netdev, + "Cannot set indirect table\n"); + return rc == -EPERM ? -EOPNOTSUPP : rc; + } + } + + switch (hfunc) { + case ETH_RSS_HASH_TOP: + func = ENA_ADMIN_TOEPLITZ; + break; + case ETH_RSS_HASH_XOR: + func = ENA_ADMIN_CRC32; + break; + default: + netif_err(adapter, drv, netdev, "Unsupported hfunc %d\n", + hfunc); + return -EOPNOTSUPP; + } + + if (key) { + rc = ena_com_fill_hash_function(ena_dev, func, key, + ENA_HASH_KEY_SIZE, + 0xFFFFFFFF); + if (unlikely(rc)) { + netif_err(adapter, drv, netdev, "Cannot fill key\n"); + return rc == -EPERM ? -EOPNOTSUPP : rc; + } + } + + return 0; +} + +static void ena_get_channels(struct net_device *netdev, + struct ethtool_channels *channels) +{ + struct ena_adapter *adapter = netdev_priv(netdev); + + channels->max_rx = ENA_MAX_NUM_IO_QUEUES; + channels->max_tx = ENA_MAX_NUM_IO_QUEUES; + channels->max_other = 0; + channels->max_combined = 0; + channels->rx_count = adapter->num_queues; + channels->tx_count = adapter->num_queues; + channels->other_count = 0; + channels->combined_count = 0; +} + +static int ena_get_tunable(struct net_device *netdev, + const struct ethtool_tunable *tuna, void *data) +{ + struct ena_adapter *adapter = netdev_priv(netdev); + int ret = 0; + + switch (tuna->id) { + case ETHTOOL_RX_COPYBREAK: + *(u32 *)data = adapter->rx_copybreak; + break; + default: + ret = -EINVAL; + break; + } + + return ret; +} + +static int ena_set_tunable(struct net_device *netdev, + const struct ethtool_tunable *tuna, + const void *data) +{ + struct ena_adapter *adapter = netdev_priv(netdev); + int ret = 0; + u32 len; + + switch (tuna->id) { + case ETHTOOL_RX_COPYBREAK: + len = *(u32 *)data; + if (len > adapter->netdev->mtu) { + ret = -EINVAL; + break; + } + adapter->rx_copybreak = len; + break; + default: + ret = -EINVAL; + break; + } + + return ret; +} + +static const struct ethtool_ops ena_ethtool_ops = { + .get_link_ksettings = ena_get_link_ksettings, + .get_drvinfo = ena_get_drvinfo, + .get_msglevel = ena_get_msglevel, + .set_msglevel = ena_set_msglevel, + .get_link = ethtool_op_get_link, + .get_coalesce = ena_get_coalesce, + .set_coalesce = ena_set_coalesce, + .get_ringparam = ena_get_ringparam, + .get_sset_count = ena_get_sset_count, + .get_strings = ena_get_strings, + .get_ethtool_stats = ena_get_ethtool_stats, + .get_rxnfc = ena_get_rxnfc, + .set_rxnfc = ena_set_rxnfc, + .get_rxfh_indir_size = ena_get_rxfh_indir_size, + .get_rxfh_key_size = ena_get_rxfh_key_size, + .get_rxfh = ena_get_rxfh, + .set_rxfh = ena_set_rxfh, + .get_channels = ena_get_channels, + .get_tunable = ena_get_tunable, + .set_tunable = ena_set_tunable, +}; + +void ena_set_ethtool_ops(struct net_device *netdev) +{ + netdev->ethtool_ops = &ena_ethtool_ops; +} + +static void ena_dump_stats_ex(struct ena_adapter *adapter, u8 *buf) +{ + struct net_device *netdev = adapter->netdev; + u8 *strings_buf; + u64 *data_buf; + int strings_num; + int i, rc; + + strings_num = ena_get_sset_count(netdev, ETH_SS_STATS); + if (strings_num <= 0) { + netif_err(adapter, drv, netdev, "Can't get stats num\n"); + return; + } + + strings_buf = devm_kzalloc(&adapter->pdev->dev, + strings_num * ETH_GSTRING_LEN, + GFP_ATOMIC); + if (!strings_buf) { + netif_err(adapter, drv, netdev, + "failed to alloc strings_buf\n"); + return; + } + + data_buf = devm_kzalloc(&adapter->pdev->dev, + strings_num * sizeof(u64), + GFP_ATOMIC); + if (!data_buf) { + netif_err(adapter, drv, netdev, + "failed to allocate data buf\n"); + devm_kfree(&adapter->pdev->dev, strings_buf); + return; + } + + ena_get_strings(netdev, ETH_SS_STATS, strings_buf); + ena_get_ethtool_stats(netdev, NULL, data_buf); + + /* If there is a buffer, dump stats, otherwise print them to dmesg */ + if (buf) + for (i = 0; i < strings_num; i++) { + rc = snprintf(buf, ETH_GSTRING_LEN + sizeof(u64), + "%s %llu\n", + strings_buf + i * ETH_GSTRING_LEN, + data_buf[i]); + buf += rc; + } + else + for (i = 0; i < strings_num; i++) + netif_err(adapter, drv, netdev, "%s: %llu\n", + strings_buf + i * ETH_GSTRING_LEN, + data_buf[i]); + + devm_kfree(&adapter->pdev->dev, strings_buf); + devm_kfree(&adapter->pdev->dev, data_buf); +} + +void ena_dump_stats_to_buf(struct ena_adapter *adapter, u8 *buf) +{ + if (!buf) + return; + + ena_dump_stats_ex(adapter, buf); +} + +void ena_dump_stats_to_dmesg(struct ena_adapter *adapter) +{ + ena_dump_stats_ex(adapter, NULL); +} --- linux-4.8.0.orig/drivers/net/ethernet/amazon/ena/ena_netdev.c +++ linux-4.8.0/drivers/net/ethernet/amazon/ena/ena_netdev.c @@ -0,0 +1,3329 @@ +/* + * Copyright 2015 Amazon.com, Inc. or its affiliates. + * + * This software is available to you under a choice of one of two + * licenses. You may choose to be licensed under the terms of the GNU + * General Public License (GPL) Version 2, available from the file + * COPYING in the main directory of this source tree, or the + * BSD license below: + * + * Redistribution and use in source and binary forms, with or + * without modification, are permitted provided that the following + * conditions are met: + * + * - Redistributions of source code must retain the above + * copyright notice, this list of conditions and the following + * disclaimer. + * + * - Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + +#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt + +#ifdef CONFIG_RFS_ACCEL +#include +#endif /* CONFIG_RFS_ACCEL */ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "ena_netdev.h" +#include "ena_pci_id_tbl.h" + +static char version[] = DEVICE_NAME " v" DRV_MODULE_VERSION "\n"; + +MODULE_AUTHOR("Amazon.com, Inc. or its affiliates"); +MODULE_DESCRIPTION(DEVICE_NAME); +MODULE_LICENSE("GPL"); +MODULE_VERSION(DRV_MODULE_VERSION); + +/* Time in jiffies before concluding the transmitter is hung. */ +#define TX_TIMEOUT (5 * HZ) + +#define ENA_NAPI_BUDGET 64 + +#define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_IFUP | \ + NETIF_MSG_TX_DONE | NETIF_MSG_TX_ERR | NETIF_MSG_RX_ERR) +static int debug = -1; +module_param(debug, int, 0); +MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)"); + +static struct ena_aenq_handlers aenq_handlers; + +static struct workqueue_struct *ena_wq; + +MODULE_DEVICE_TABLE(pci, ena_pci_tbl); + +static int ena_rss_init_default(struct ena_adapter *adapter); + +static void ena_tx_timeout(struct net_device *dev) +{ + struct ena_adapter *adapter = netdev_priv(dev); + + /* Change the state of the device to trigger reset + * Check that we are not in the middle or a trigger already + */ + + if (test_and_set_bit(ENA_FLAG_TRIGGER_RESET, &adapter->flags)) + return; + + u64_stats_update_begin(&adapter->syncp); + adapter->dev_stats.tx_timeout++; + u64_stats_update_end(&adapter->syncp); + + netif_err(adapter, tx_err, dev, "Transmit time out\n"); +} + +static void update_rx_ring_mtu(struct ena_adapter *adapter, int mtu) +{ + int i; + + for (i = 0; i < adapter->num_queues; i++) + adapter->rx_ring[i].mtu = mtu; +} + +static int ena_change_mtu(struct net_device *dev, int new_mtu) +{ + struct ena_adapter *adapter = netdev_priv(dev); + int ret; + + if ((new_mtu > adapter->max_mtu) || (new_mtu < ENA_MIN_MTU)) { + netif_err(adapter, drv, dev, + "Invalid MTU setting. new_mtu: %d\n", new_mtu); + + return -EINVAL; + } + + ret = ena_com_set_dev_mtu(adapter->ena_dev, new_mtu); + if (!ret) { + netif_dbg(adapter, drv, dev, "set MTU to %d\n", new_mtu); + update_rx_ring_mtu(adapter, new_mtu); + dev->mtu = new_mtu; + } else { + netif_err(adapter, drv, dev, "Failed to set MTU to %d\n", + new_mtu); + } + + return ret; +} + +static int ena_init_rx_cpu_rmap(struct ena_adapter *adapter) +{ +#ifdef CONFIG_RFS_ACCEL + u32 i; + int rc; + + adapter->netdev->rx_cpu_rmap = alloc_irq_cpu_rmap(adapter->num_queues); + if (!adapter->netdev->rx_cpu_rmap) + return -ENOMEM; + for (i = 0; i < adapter->num_queues; i++) { + int irq_idx = ENA_IO_IRQ_IDX(i); + + rc = irq_cpu_rmap_add(adapter->netdev->rx_cpu_rmap, + adapter->msix_entries[irq_idx].vector); + if (rc) { + free_irq_cpu_rmap(adapter->netdev->rx_cpu_rmap); + adapter->netdev->rx_cpu_rmap = NULL; + return rc; + } + } +#endif /* CONFIG_RFS_ACCEL */ + return 0; +} + +static void ena_init_io_rings_common(struct ena_adapter *adapter, + struct ena_ring *ring, u16 qid) +{ + ring->qid = qid; + ring->pdev = adapter->pdev; + ring->dev = &adapter->pdev->dev; + ring->netdev = adapter->netdev; + ring->napi = &adapter->ena_napi[qid].napi; + ring->adapter = adapter; + ring->ena_dev = adapter->ena_dev; + ring->per_napi_packets = 0; + ring->per_napi_bytes = 0; + ring->cpu = 0; + u64_stats_init(&ring->syncp); +} + +static void ena_init_io_rings(struct ena_adapter *adapter) +{ + struct ena_com_dev *ena_dev; + struct ena_ring *txr, *rxr; + int i; + + ena_dev = adapter->ena_dev; + + for (i = 0; i < adapter->num_queues; i++) { + txr = &adapter->tx_ring[i]; + rxr = &adapter->rx_ring[i]; + + /* TX/RX common ring state */ + ena_init_io_rings_common(adapter, txr, i); + ena_init_io_rings_common(adapter, rxr, i); + + /* TX specific ring state */ + txr->ring_size = adapter->tx_ring_size; + txr->tx_max_header_size = ena_dev->tx_max_header_size; + txr->tx_mem_queue_type = ena_dev->tx_mem_queue_type; + txr->sgl_size = adapter->max_tx_sgl_size; + txr->smoothed_interval = + ena_com_get_nonadaptive_moderation_interval_tx(ena_dev); + + /* RX specific ring state */ + rxr->ring_size = adapter->rx_ring_size; + rxr->rx_copybreak = adapter->rx_copybreak; + rxr->sgl_size = adapter->max_rx_sgl_size; + rxr->smoothed_interval = + ena_com_get_nonadaptive_moderation_interval_rx(ena_dev); + } +} + +/* ena_setup_tx_resources - allocate I/O Tx resources (Descriptors) + * @adapter: network interface device structure + * @qid: queue index + * + * Return 0 on success, negative on failure + */ +static int ena_setup_tx_resources(struct ena_adapter *adapter, int qid) +{ + struct ena_ring *tx_ring = &adapter->tx_ring[qid]; + struct ena_irq *ena_irq = &adapter->irq_tbl[ENA_IO_IRQ_IDX(qid)]; + int size, i, node; + + if (tx_ring->tx_buffer_info) { + netif_err(adapter, ifup, + adapter->netdev, "tx_buffer_info info is not NULL"); + return -EEXIST; + } + + size = sizeof(struct ena_tx_buffer) * tx_ring->ring_size; + node = cpu_to_node(ena_irq->cpu); + + tx_ring->tx_buffer_info = vzalloc_node(size, node); + if (!tx_ring->tx_buffer_info) { + tx_ring->tx_buffer_info = vzalloc(size); + if (!tx_ring->tx_buffer_info) + return -ENOMEM; + } + + size = sizeof(u16) * tx_ring->ring_size; + tx_ring->free_tx_ids = vzalloc_node(size, node); + if (!tx_ring->free_tx_ids) { + tx_ring->free_tx_ids = vzalloc(size); + if (!tx_ring->free_tx_ids) { + vfree(tx_ring->tx_buffer_info); + return -ENOMEM; + } + } + + /* Req id ring for TX out of order completions */ + for (i = 0; i < tx_ring->ring_size; i++) + tx_ring->free_tx_ids[i] = i; + + /* Reset tx statistics */ + memset(&tx_ring->tx_stats, 0x0, sizeof(tx_ring->tx_stats)); + + tx_ring->next_to_use = 0; + tx_ring->next_to_clean = 0; + tx_ring->cpu = ena_irq->cpu; + return 0; +} + +/* ena_free_tx_resources - Free I/O Tx Resources per Queue + * @adapter: network interface device structure + * @qid: queue index + * + * Free all transmit software resources + */ +static void ena_free_tx_resources(struct ena_adapter *adapter, int qid) +{ + struct ena_ring *tx_ring = &adapter->tx_ring[qid]; + + vfree(tx_ring->tx_buffer_info); + tx_ring->tx_buffer_info = NULL; + + vfree(tx_ring->free_tx_ids); + tx_ring->free_tx_ids = NULL; +} + +/* ena_setup_all_tx_resources - allocate I/O Tx queues resources for All queues + * @adapter: private structure + * + * Return 0 on success, negative on failure + */ +static int ena_setup_all_tx_resources(struct ena_adapter *adapter) +{ + int i, rc = 0; + + for (i = 0; i < adapter->num_queues; i++) { + rc = ena_setup_tx_resources(adapter, i); + if (rc) + goto err_setup_tx; + } + + return 0; + +err_setup_tx: + + netif_err(adapter, ifup, adapter->netdev, + "Tx queue %d: allocation failed\n", i); + + /* rewind the index freeing the rings as we go */ + while (i--) + ena_free_tx_resources(adapter, i); + return rc; +} + +/* ena_free_all_io_tx_resources - Free I/O Tx Resources for All Queues + * @adapter: board private structure + * + * Free all transmit software resources + */ +static void ena_free_all_io_tx_resources(struct ena_adapter *adapter) +{ + int i; + + for (i = 0; i < adapter->num_queues; i++) + ena_free_tx_resources(adapter, i); +} + +/* ena_setup_rx_resources - allocate I/O Rx resources (Descriptors) + * @adapter: network interface device structure + * @qid: queue index + * + * Returns 0 on success, negative on failure + */ +static int ena_setup_rx_resources(struct ena_adapter *adapter, + u32 qid) +{ + struct ena_ring *rx_ring = &adapter->rx_ring[qid]; + struct ena_irq *ena_irq = &adapter->irq_tbl[ENA_IO_IRQ_IDX(qid)]; + int size, node; + + if (rx_ring->rx_buffer_info) { + netif_err(adapter, ifup, adapter->netdev, + "rx_buffer_info is not NULL"); + return -EEXIST; + } + + /* alloc extra element so in rx path + * we can always prefetch rx_info + 1 + */ + size = sizeof(struct ena_rx_buffer) * (rx_ring->ring_size + 1); + node = cpu_to_node(ena_irq->cpu); + + rx_ring->rx_buffer_info = vzalloc_node(size, node); + if (!rx_ring->rx_buffer_info) { + rx_ring->rx_buffer_info = vzalloc(size); + if (!rx_ring->rx_buffer_info) + return -ENOMEM; + } + + /* Reset rx statistics */ + memset(&rx_ring->rx_stats, 0x0, sizeof(rx_ring->rx_stats)); + + rx_ring->next_to_clean = 0; + rx_ring->next_to_use = 0; + rx_ring->cpu = ena_irq->cpu; + + return 0; +} + +/* ena_free_rx_resources - Free I/O Rx Resources + * @adapter: network interface device structure + * @qid: queue index + * + * Free all receive software resources + */ +static void ena_free_rx_resources(struct ena_adapter *adapter, + u32 qid) +{ + struct ena_ring *rx_ring = &adapter->rx_ring[qid]; + + vfree(rx_ring->rx_buffer_info); + rx_ring->rx_buffer_info = NULL; +} + +/* ena_setup_all_rx_resources - allocate I/O Rx queues resources for all queues + * @adapter: board private structure + * + * Return 0 on success, negative on failure + */ +static int ena_setup_all_rx_resources(struct ena_adapter *adapter) +{ + int i, rc = 0; + + for (i = 0; i < adapter->num_queues; i++) { + rc = ena_setup_rx_resources(adapter, i); + if (rc) + goto err_setup_rx; + } + + return 0; + +err_setup_rx: + + netif_err(adapter, ifup, adapter->netdev, + "Rx queue %d: allocation failed\n", i); + + /* rewind the index freeing the rings as we go */ + while (i--) + ena_free_rx_resources(adapter, i); + return rc; +} + +/* ena_free_all_io_rx_resources - Free I/O Rx Resources for All Queues + * @adapter: board private structure + * + * Free all receive software resources + */ +static void ena_free_all_io_rx_resources(struct ena_adapter *adapter) +{ + int i; + + for (i = 0; i < adapter->num_queues; i++) + ena_free_rx_resources(adapter, i); +} + +static inline int ena_alloc_rx_page(struct ena_ring *rx_ring, + struct ena_rx_buffer *rx_info, gfp_t gfp) +{ + struct ena_com_buf *ena_buf; + struct page *page; + dma_addr_t dma; + + /* if previous allocated page is not used */ + if (unlikely(rx_info->page)) + return 0; + + page = alloc_page(gfp); + if (unlikely(!page)) { + u64_stats_update_begin(&rx_ring->syncp); + rx_ring->rx_stats.page_alloc_fail++; + u64_stats_update_end(&rx_ring->syncp); + return -ENOMEM; + } + + dma = dma_map_page(rx_ring->dev, page, 0, PAGE_SIZE, + DMA_FROM_DEVICE); + if (unlikely(dma_mapping_error(rx_ring->dev, dma))) { + u64_stats_update_begin(&rx_ring->syncp); + rx_ring->rx_stats.dma_mapping_err++; + u64_stats_update_end(&rx_ring->syncp); + + __free_page(page); + return -EIO; + } + netif_dbg(rx_ring->adapter, rx_status, rx_ring->netdev, + "alloc page %p, rx_info %p\n", page, rx_info); + + rx_info->page = page; + rx_info->page_offset = 0; + ena_buf = &rx_info->ena_buf; + ena_buf->paddr = dma; + ena_buf->len = PAGE_SIZE; + + return 0; +} + +static void ena_free_rx_page(struct ena_ring *rx_ring, + struct ena_rx_buffer *rx_info) +{ + struct page *page = rx_info->page; + struct ena_com_buf *ena_buf = &rx_info->ena_buf; + + if (unlikely(!page)) { + netif_warn(rx_ring->adapter, rx_err, rx_ring->netdev, + "Trying to free unallocated buffer\n"); + return; + } + + dma_unmap_page(rx_ring->dev, ena_buf->paddr, PAGE_SIZE, + DMA_FROM_DEVICE); + + __free_page(page); + rx_info->page = NULL; +} + +static int ena_refill_rx_bufs(struct ena_ring *rx_ring, u32 num) +{ + u16 next_to_use; + u32 i; + int rc; + + next_to_use = rx_ring->next_to_use; + + for (i = 0; i < num; i++) { + struct ena_rx_buffer *rx_info = + &rx_ring->rx_buffer_info[next_to_use]; + + rc = ena_alloc_rx_page(rx_ring, rx_info, + __GFP_COLD | GFP_ATOMIC | __GFP_COMP); + if (unlikely(rc < 0)) { + netif_warn(rx_ring->adapter, rx_err, rx_ring->netdev, + "failed to alloc buffer for rx queue %d\n", + rx_ring->qid); + break; + } + rc = ena_com_add_single_rx_desc(rx_ring->ena_com_io_sq, + &rx_info->ena_buf, + next_to_use); + if (unlikely(rc)) { + netif_warn(rx_ring->adapter, rx_status, rx_ring->netdev, + "failed to add buffer for rx queue %d\n", + rx_ring->qid); + break; + } + next_to_use = ENA_RX_RING_IDX_NEXT(next_to_use, + rx_ring->ring_size); + } + + if (unlikely(i < num)) { + u64_stats_update_begin(&rx_ring->syncp); + rx_ring->rx_stats.refil_partial++; + u64_stats_update_end(&rx_ring->syncp); + netdev_warn(rx_ring->netdev, + "refilled rx qid %d with only %d buffers (from %d)\n", + rx_ring->qid, i, num); + } + + if (likely(i)) { + /* Add memory barrier to make sure the desc were written before + * issue a doorbell + */ + wmb(); + ena_com_write_sq_doorbell(rx_ring->ena_com_io_sq); + } + + rx_ring->next_to_use = next_to_use; + + return i; +} + +static void ena_free_rx_bufs(struct ena_adapter *adapter, + u32 qid) +{ + struct ena_ring *rx_ring = &adapter->rx_ring[qid]; + u32 i; + + for (i = 0; i < rx_ring->ring_size; i++) { + struct ena_rx_buffer *rx_info = &rx_ring->rx_buffer_info[i]; + + if (rx_info->page) + ena_free_rx_page(rx_ring, rx_info); + } +} + +/* ena_refill_all_rx_bufs - allocate all queues Rx buffers + * @adapter: board private structure + * + */ +static void ena_refill_all_rx_bufs(struct ena_adapter *adapter) +{ + struct ena_ring *rx_ring; + int i, rc, bufs_num; + + for (i = 0; i < adapter->num_queues; i++) { + rx_ring = &adapter->rx_ring[i]; + bufs_num = rx_ring->ring_size - 1; + rc = ena_refill_rx_bufs(rx_ring, bufs_num); + + if (unlikely(rc != bufs_num)) + netif_warn(rx_ring->adapter, rx_status, rx_ring->netdev, + "refilling Queue %d failed. allocated %d buffers from: %d\n", + i, rc, bufs_num); + } +} + +static void ena_free_all_rx_bufs(struct ena_adapter *adapter) +{ + int i; + + for (i = 0; i < adapter->num_queues; i++) + ena_free_rx_bufs(adapter, i); +} + +/* ena_free_tx_bufs - Free Tx Buffers per Queue + * @tx_ring: TX ring for which buffers be freed + */ +static void ena_free_tx_bufs(struct ena_ring *tx_ring) +{ + bool print_once = true; + u32 i; + + for (i = 0; i < tx_ring->ring_size; i++) { + struct ena_tx_buffer *tx_info = &tx_ring->tx_buffer_info[i]; + struct ena_com_buf *ena_buf; + int nr_frags; + int j; + + if (!tx_info->skb) + continue; + + if (print_once) { + netdev_notice(tx_ring->netdev, + "free uncompleted tx skb qid %d idx 0x%x\n", + tx_ring->qid, i); + print_once = false; + } else { + netdev_dbg(tx_ring->netdev, + "free uncompleted tx skb qid %d idx 0x%x\n", + tx_ring->qid, i); + } + + ena_buf = tx_info->bufs; + dma_unmap_single(tx_ring->dev, + ena_buf->paddr, + ena_buf->len, + DMA_TO_DEVICE); + + /* unmap remaining mapped pages */ + nr_frags = tx_info->num_of_bufs - 1; + for (j = 0; j < nr_frags; j++) { + ena_buf++; + dma_unmap_page(tx_ring->dev, + ena_buf->paddr, + ena_buf->len, + DMA_TO_DEVICE); + } + + dev_kfree_skb_any(tx_info->skb); + } + netdev_tx_reset_queue(netdev_get_tx_queue(tx_ring->netdev, + tx_ring->qid)); +} + +static void ena_free_all_tx_bufs(struct ena_adapter *adapter) +{ + struct ena_ring *tx_ring; + int i; + + for (i = 0; i < adapter->num_queues; i++) { + tx_ring = &adapter->tx_ring[i]; + ena_free_tx_bufs(tx_ring); + } +} + +static void ena_destroy_all_tx_queues(struct ena_adapter *adapter) +{ + u16 ena_qid; + int i; + + for (i = 0; i < adapter->num_queues; i++) { + ena_qid = ENA_IO_TXQ_IDX(i); + ena_com_destroy_io_queue(adapter->ena_dev, ena_qid); + } +} + +static void ena_destroy_all_rx_queues(struct ena_adapter *adapter) +{ + u16 ena_qid; + int i; + + for (i = 0; i < adapter->num_queues; i++) { + ena_qid = ENA_IO_RXQ_IDX(i); + ena_com_destroy_io_queue(adapter->ena_dev, ena_qid); + } +} + +static void ena_destroy_all_io_queues(struct ena_adapter *adapter) +{ + ena_destroy_all_tx_queues(adapter); + ena_destroy_all_rx_queues(adapter); +} + +static int validate_tx_req_id(struct ena_ring *tx_ring, u16 req_id) +{ + struct ena_tx_buffer *tx_info = NULL; + + if (likely(req_id < tx_ring->ring_size)) { + tx_info = &tx_ring->tx_buffer_info[req_id]; + if (likely(tx_info->skb)) + return 0; + } + + if (tx_info) + netif_err(tx_ring->adapter, tx_done, tx_ring->netdev, + "tx_info doesn't have valid skb\n"); + else + netif_err(tx_ring->adapter, tx_done, tx_ring->netdev, + "Invalid req_id: %hu\n", req_id); + + u64_stats_update_begin(&tx_ring->syncp); + tx_ring->tx_stats.bad_req_id++; + u64_stats_update_end(&tx_ring->syncp); + + /* Trigger device reset */ + set_bit(ENA_FLAG_TRIGGER_RESET, &tx_ring->adapter->flags); + return -EFAULT; +} + +static int ena_clean_tx_irq(struct ena_ring *tx_ring, u32 budget) +{ + struct netdev_queue *txq; + bool above_thresh; + u32 tx_bytes = 0; + u32 total_done = 0; + u16 next_to_clean; + u16 req_id; + int tx_pkts = 0; + int rc; + + next_to_clean = tx_ring->next_to_clean; + txq = netdev_get_tx_queue(tx_ring->netdev, tx_ring->qid); + + while (tx_pkts < budget) { + struct ena_tx_buffer *tx_info; + struct sk_buff *skb; + struct ena_com_buf *ena_buf; + int i, nr_frags; + + rc = ena_com_tx_comp_req_id_get(tx_ring->ena_com_io_cq, + &req_id); + if (rc) + break; + + rc = validate_tx_req_id(tx_ring, req_id); + if (rc) + break; + + tx_info = &tx_ring->tx_buffer_info[req_id]; + skb = tx_info->skb; + + /* prefetch skb_end_pointer() to speedup skb_shinfo(skb) */ + prefetch(&skb->end); + + tx_info->skb = NULL; + tx_info->last_jiffies = 0; + + if (likely(tx_info->num_of_bufs != 0)) { + ena_buf = tx_info->bufs; + + dma_unmap_single(tx_ring->dev, + dma_unmap_addr(ena_buf, paddr), + dma_unmap_len(ena_buf, len), + DMA_TO_DEVICE); + + /* unmap remaining mapped pages */ + nr_frags = tx_info->num_of_bufs - 1; + for (i = 0; i < nr_frags; i++) { + ena_buf++; + dma_unmap_page(tx_ring->dev, + dma_unmap_addr(ena_buf, paddr), + dma_unmap_len(ena_buf, len), + DMA_TO_DEVICE); + } + } + + netif_dbg(tx_ring->adapter, tx_done, tx_ring->netdev, + "tx_poll: q %d skb %p completed\n", tx_ring->qid, + skb); + + tx_bytes += skb->len; + dev_kfree_skb(skb); + tx_pkts++; + total_done += tx_info->tx_descs; + + tx_ring->free_tx_ids[next_to_clean] = req_id; + next_to_clean = ENA_TX_RING_IDX_NEXT(next_to_clean, + tx_ring->ring_size); + } + + tx_ring->next_to_clean = next_to_clean; + ena_com_comp_ack(tx_ring->ena_com_io_sq, total_done); + ena_com_update_dev_comp_head(tx_ring->ena_com_io_cq); + + netdev_tx_completed_queue(txq, tx_pkts, tx_bytes); + + netif_dbg(tx_ring->adapter, tx_done, tx_ring->netdev, + "tx_poll: q %d done. total pkts: %d\n", + tx_ring->qid, tx_pkts); + + /* need to make the rings circular update visible to + * ena_start_xmit() before checking for netif_queue_stopped(). + */ + smp_mb(); + + above_thresh = ena_com_sq_empty_space(tx_ring->ena_com_io_sq) > + ENA_TX_WAKEUP_THRESH; + if (unlikely(netif_tx_queue_stopped(txq) && above_thresh)) { + __netif_tx_lock(txq, smp_processor_id()); + above_thresh = ena_com_sq_empty_space(tx_ring->ena_com_io_sq) > + ENA_TX_WAKEUP_THRESH; + if (netif_tx_queue_stopped(txq) && above_thresh) { + netif_tx_wake_queue(txq); + u64_stats_update_begin(&tx_ring->syncp); + tx_ring->tx_stats.queue_wakeup++; + u64_stats_update_end(&tx_ring->syncp); + } + __netif_tx_unlock(txq); + } + + tx_ring->per_napi_bytes += tx_bytes; + tx_ring->per_napi_packets += tx_pkts; + + return tx_pkts; +} + +static struct sk_buff *ena_rx_skb(struct ena_ring *rx_ring, + struct ena_com_rx_buf_info *ena_bufs, + u32 descs, + u16 *next_to_clean) +{ + struct sk_buff *skb; + struct ena_rx_buffer *rx_info = + &rx_ring->rx_buffer_info[*next_to_clean]; + u32 len; + u32 buf = 0; + void *va; + + len = ena_bufs[0].len; + if (unlikely(!rx_info->page)) { + netif_err(rx_ring->adapter, rx_err, rx_ring->netdev, + "Page is NULL\n"); + return NULL; + } + + netif_dbg(rx_ring->adapter, rx_status, rx_ring->netdev, + "rx_info %p page %p\n", + rx_info, rx_info->page); + + /* save virt address of first buffer */ + va = page_address(rx_info->page) + rx_info->page_offset; + prefetch(va + NET_IP_ALIGN); + + if (len <= rx_ring->rx_copybreak) { + skb = netdev_alloc_skb_ip_align(rx_ring->netdev, + rx_ring->rx_copybreak); + if (unlikely(!skb)) { + u64_stats_update_begin(&rx_ring->syncp); + rx_ring->rx_stats.skb_alloc_fail++; + u64_stats_update_end(&rx_ring->syncp); + netif_err(rx_ring->adapter, rx_err, rx_ring->netdev, + "Failed to allocate skb\n"); + return NULL; + } + + netif_dbg(rx_ring->adapter, rx_status, rx_ring->netdev, + "rx allocated small packet. len %d. data_len %d\n", + skb->len, skb->data_len); + + /* sync this buffer for CPU use */ + dma_sync_single_for_cpu(rx_ring->dev, + dma_unmap_addr(&rx_info->ena_buf, paddr), + len, + DMA_FROM_DEVICE); + skb_copy_to_linear_data(skb, va, len); + dma_sync_single_for_device(rx_ring->dev, + dma_unmap_addr(&rx_info->ena_buf, paddr), + len, + DMA_FROM_DEVICE); + + skb_put(skb, len); + skb->protocol = eth_type_trans(skb, rx_ring->netdev); + *next_to_clean = ENA_RX_RING_IDX_ADD(*next_to_clean, descs, + rx_ring->ring_size); + return skb; + } + + skb = napi_get_frags(rx_ring->napi); + if (unlikely(!skb)) { + netif_dbg(rx_ring->adapter, rx_status, rx_ring->netdev, + "Failed allocating skb\n"); + u64_stats_update_begin(&rx_ring->syncp); + rx_ring->rx_stats.skb_alloc_fail++; + u64_stats_update_end(&rx_ring->syncp); + return NULL; + } + + do { + dma_unmap_page(rx_ring->dev, + dma_unmap_addr(&rx_info->ena_buf, paddr), + PAGE_SIZE, DMA_FROM_DEVICE); + + skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, rx_info->page, + rx_info->page_offset, len, PAGE_SIZE); + + netif_dbg(rx_ring->adapter, rx_status, rx_ring->netdev, + "rx skb updated. len %d. data_len %d\n", + skb->len, skb->data_len); + + rx_info->page = NULL; + *next_to_clean = + ENA_RX_RING_IDX_NEXT(*next_to_clean, + rx_ring->ring_size); + if (likely(--descs == 0)) + break; + rx_info = &rx_ring->rx_buffer_info[*next_to_clean]; + len = ena_bufs[++buf].len; + } while (1); + + return skb; +} + +/* ena_rx_checksum - indicate in skb if hw indicated a good cksum + * @adapter: structure containing adapter specific data + * @ena_rx_ctx: received packet context/metadata + * @skb: skb currently being received and modified + */ +static inline void ena_rx_checksum(struct ena_ring *rx_ring, + struct ena_com_rx_ctx *ena_rx_ctx, + struct sk_buff *skb) +{ + /* Rx csum disabled */ + if (unlikely(!(rx_ring->netdev->features & NETIF_F_RXCSUM))) { + skb->ip_summed = CHECKSUM_NONE; + return; + } + + /* For fragmented packets the checksum isn't valid */ + if (ena_rx_ctx->frag) { + skb->ip_summed = CHECKSUM_NONE; + return; + } + + /* if IP and error */ + if (unlikely((ena_rx_ctx->l3_proto == ENA_ETH_IO_L3_PROTO_IPV4) && + (ena_rx_ctx->l3_csum_err))) { + /* ipv4 checksum error */ + skb->ip_summed = CHECKSUM_NONE; + u64_stats_update_begin(&rx_ring->syncp); + rx_ring->rx_stats.bad_csum++; + u64_stats_update_end(&rx_ring->syncp); + netif_err(rx_ring->adapter, rx_err, rx_ring->netdev, + "RX IPv4 header checksum error\n"); + return; + } + + /* if TCP/UDP */ + if (likely((ena_rx_ctx->l4_proto == ENA_ETH_IO_L4_PROTO_TCP) || + (ena_rx_ctx->l4_proto == ENA_ETH_IO_L4_PROTO_UDP))) { + if (unlikely(ena_rx_ctx->l4_csum_err)) { + /* TCP/UDP checksum error */ + u64_stats_update_begin(&rx_ring->syncp); + rx_ring->rx_stats.bad_csum++; + u64_stats_update_end(&rx_ring->syncp); + netif_err(rx_ring->adapter, rx_err, rx_ring->netdev, + "RX L4 checksum error\n"); + skb->ip_summed = CHECKSUM_NONE; + return; + } + + skb->ip_summed = CHECKSUM_UNNECESSARY; + } +} + +static void ena_set_rx_hash(struct ena_ring *rx_ring, + struct ena_com_rx_ctx *ena_rx_ctx, + struct sk_buff *skb) +{ + enum pkt_hash_types hash_type; + + if (likely(rx_ring->netdev->features & NETIF_F_RXHASH)) { + if (likely((ena_rx_ctx->l4_proto == ENA_ETH_IO_L4_PROTO_TCP) || + (ena_rx_ctx->l4_proto == ENA_ETH_IO_L4_PROTO_UDP))) + + hash_type = PKT_HASH_TYPE_L4; + else + hash_type = PKT_HASH_TYPE_NONE; + + /* Override hash type if the packet is fragmented */ + if (ena_rx_ctx->frag) + hash_type = PKT_HASH_TYPE_NONE; + + skb_set_hash(skb, ena_rx_ctx->hash, hash_type); + } +} + +/* ena_clean_rx_irq - Cleanup RX irq + * @rx_ring: RX ring to clean + * @napi: napi handler + * @budget: how many packets driver is allowed to clean + * + * Returns the number of cleaned buffers. + */ +static int ena_clean_rx_irq(struct ena_ring *rx_ring, struct napi_struct *napi, + u32 budget) +{ + u16 next_to_clean = rx_ring->next_to_clean; + u32 res_budget, work_done; + + struct ena_com_rx_ctx ena_rx_ctx; + struct ena_adapter *adapter; + struct sk_buff *skb; + int refill_required; + int refill_threshold; + int rc = 0; + int total_len = 0; + int rx_copybreak_pkt = 0; + + netif_dbg(rx_ring->adapter, rx_status, rx_ring->netdev, + "%s qid %d\n", __func__, rx_ring->qid); + res_budget = budget; + + do { + ena_rx_ctx.ena_bufs = rx_ring->ena_bufs; + ena_rx_ctx.max_bufs = rx_ring->sgl_size; + ena_rx_ctx.descs = 0; + rc = ena_com_rx_pkt(rx_ring->ena_com_io_cq, + rx_ring->ena_com_io_sq, + &ena_rx_ctx); + if (unlikely(rc)) + goto error; + + if (unlikely(ena_rx_ctx.descs == 0)) + break; + + netif_dbg(rx_ring->adapter, rx_status, rx_ring->netdev, + "rx_poll: q %d got packet from ena. descs #: %d l3 proto %d l4 proto %d hash: %x\n", + rx_ring->qid, ena_rx_ctx.descs, ena_rx_ctx.l3_proto, + ena_rx_ctx.l4_proto, ena_rx_ctx.hash); + + /* allocate skb and fill it */ + skb = ena_rx_skb(rx_ring, rx_ring->ena_bufs, ena_rx_ctx.descs, + &next_to_clean); + + /* exit if we failed to retrieve a buffer */ + if (unlikely(!skb)) { + next_to_clean = ENA_RX_RING_IDX_ADD(next_to_clean, + ena_rx_ctx.descs, + rx_ring->ring_size); + break; + } + + ena_rx_checksum(rx_ring, &ena_rx_ctx, skb); + + ena_set_rx_hash(rx_ring, &ena_rx_ctx, skb); + + skb_record_rx_queue(skb, rx_ring->qid); + + if (rx_ring->ena_bufs[0].len <= rx_ring->rx_copybreak) { + total_len += rx_ring->ena_bufs[0].len; + rx_copybreak_pkt++; + napi_gro_receive(napi, skb); + } else { + total_len += skb->len; + napi_gro_frags(napi); + } + + res_budget--; + } while (likely(res_budget)); + + work_done = budget - res_budget; + rx_ring->per_napi_bytes += total_len; + rx_ring->per_napi_packets += work_done; + u64_stats_update_begin(&rx_ring->syncp); + rx_ring->rx_stats.bytes += total_len; + rx_ring->rx_stats.cnt += work_done; + rx_ring->rx_stats.rx_copybreak_pkt += rx_copybreak_pkt; + u64_stats_update_end(&rx_ring->syncp); + + rx_ring->next_to_clean = next_to_clean; + + refill_required = ena_com_sq_empty_space(rx_ring->ena_com_io_sq); + refill_threshold = rx_ring->ring_size / ENA_RX_REFILL_THRESH_DIVIDER; + + /* Optimization, try to batch new rx buffers */ + if (refill_required > refill_threshold) { + ena_com_update_dev_comp_head(rx_ring->ena_com_io_cq); + ena_refill_rx_bufs(rx_ring, refill_required); + } + + return work_done; + +error: + adapter = netdev_priv(rx_ring->netdev); + + u64_stats_update_begin(&rx_ring->syncp); + rx_ring->rx_stats.bad_desc_num++; + u64_stats_update_end(&rx_ring->syncp); + + /* Too many desc from the device. Trigger reset */ + set_bit(ENA_FLAG_TRIGGER_RESET, &adapter->flags); + + return 0; +} + +inline void ena_adjust_intr_moderation(struct ena_ring *rx_ring, + struct ena_ring *tx_ring) +{ + /* We apply adaptive moderation on Rx path only. + * Tx uses static interrupt moderation. + */ + ena_com_calculate_interrupt_delay(rx_ring->ena_dev, + rx_ring->per_napi_packets, + rx_ring->per_napi_bytes, + &rx_ring->smoothed_interval, + &rx_ring->moder_tbl_idx); + + /* Reset per napi packets/bytes */ + tx_ring->per_napi_packets = 0; + tx_ring->per_napi_bytes = 0; + rx_ring->per_napi_packets = 0; + rx_ring->per_napi_bytes = 0; +} + +static inline void ena_update_ring_numa_node(struct ena_ring *tx_ring, + struct ena_ring *rx_ring) +{ + int cpu = get_cpu(); + int numa_node; + + /* Check only one ring since the 2 rings are running on the same cpu */ + if (likely(tx_ring->cpu == cpu)) + goto out; + + numa_node = cpu_to_node(cpu); + put_cpu(); + + if (numa_node != NUMA_NO_NODE) { + ena_com_update_numa_node(tx_ring->ena_com_io_cq, numa_node); + ena_com_update_numa_node(rx_ring->ena_com_io_cq, numa_node); + } + + tx_ring->cpu = cpu; + rx_ring->cpu = cpu; + + return; +out: + put_cpu(); +} + +static int ena_io_poll(struct napi_struct *napi, int budget) +{ + struct ena_napi *ena_napi = container_of(napi, struct ena_napi, napi); + struct ena_ring *tx_ring, *rx_ring; + struct ena_eth_io_intr_reg intr_reg; + + u32 tx_work_done; + u32 rx_work_done; + int tx_budget; + int napi_comp_call = 0; + int ret; + + tx_ring = ena_napi->tx_ring; + rx_ring = ena_napi->rx_ring; + + tx_budget = tx_ring->ring_size / ENA_TX_POLL_BUDGET_DIVIDER; + + if (!test_bit(ENA_FLAG_DEV_UP, &tx_ring->adapter->flags) || + test_bit(ENA_FLAG_TRIGGER_RESET, &tx_ring->adapter->flags)) { + napi_complete_done(napi, 0); + return 0; + } + + tx_work_done = ena_clean_tx_irq(tx_ring, tx_budget); + rx_work_done = ena_clean_rx_irq(rx_ring, napi, budget); + + if ((budget > rx_work_done) && (tx_budget > tx_work_done)) { + napi_complete_done(napi, rx_work_done); + + napi_comp_call = 1; + /* Tx and Rx share the same interrupt vector */ + if (ena_com_get_adaptive_moderation_enabled(rx_ring->ena_dev)) + ena_adjust_intr_moderation(rx_ring, tx_ring); + + /* Update intr register: rx intr delay, tx intr delay and + * interrupt unmask + */ + ena_com_update_intr_reg(&intr_reg, + rx_ring->smoothed_interval, + tx_ring->smoothed_interval, + true); + + /* It is a shared MSI-X. Tx and Rx CQ have pointer to it. + * So we use one of them to reach the intr reg + */ + ena_com_unmask_intr(rx_ring->ena_com_io_cq, &intr_reg); + + ena_update_ring_numa_node(tx_ring, rx_ring); + + ret = rx_work_done; + } else { + ret = budget; + } + + u64_stats_update_begin(&tx_ring->syncp); + tx_ring->tx_stats.napi_comp += napi_comp_call; + tx_ring->tx_stats.tx_poll++; + u64_stats_update_end(&tx_ring->syncp); + + return ret; +} + +static irqreturn_t ena_intr_msix_mgmnt(int irq, void *data) +{ + struct ena_adapter *adapter = (struct ena_adapter *)data; + + ena_com_admin_q_comp_intr_handler(adapter->ena_dev); + + /* Don't call the aenq handler before probe is done */ + if (likely(test_bit(ENA_FLAG_DEVICE_RUNNING, &adapter->flags))) + ena_com_aenq_intr_handler(adapter->ena_dev, data); + + return IRQ_HANDLED; +} + +/* ena_intr_msix_io - MSI-X Interrupt Handler for Tx/Rx + * @irq: interrupt number + * @data: pointer to a network interface private napi device structure + */ +static irqreturn_t ena_intr_msix_io(int irq, void *data) +{ + struct ena_napi *ena_napi = data; + + napi_schedule(&ena_napi->napi); + + return IRQ_HANDLED; +} + +static int ena_enable_msix(struct ena_adapter *adapter, int num_queues) +{ + int i, msix_vecs, rc; + + if (test_bit(ENA_FLAG_MSIX_ENABLED, &adapter->flags)) { + netif_err(adapter, probe, adapter->netdev, + "Error, MSI-X is already enabled\n"); + return -EPERM; + } + + /* Reserved the max msix vectors we might need */ + msix_vecs = ENA_MAX_MSIX_VEC(num_queues); + + netif_dbg(adapter, probe, adapter->netdev, + "trying to enable MSI-X, vectors %d\n", msix_vecs); + + adapter->msix_entries = vzalloc(msix_vecs * sizeof(struct msix_entry)); + + if (!adapter->msix_entries) + return -ENOMEM; + + for (i = 0; i < msix_vecs; i++) + adapter->msix_entries[i].entry = i; + + rc = pci_enable_msix(adapter->pdev, adapter->msix_entries, msix_vecs); + if (rc != 0) { + netif_err(adapter, probe, adapter->netdev, + "Failed to enable MSI-X, vectors %d rc %d\n", + msix_vecs, rc); + return -ENOSPC; + } + + netif_dbg(adapter, probe, adapter->netdev, "enable MSI-X, vectors %d\n", + msix_vecs); + + if (msix_vecs >= 1) { + if (ena_init_rx_cpu_rmap(adapter)) + netif_warn(adapter, probe, adapter->netdev, + "Failed to map IRQs to CPUs\n"); + } + + adapter->msix_vecs = msix_vecs; + set_bit(ENA_FLAG_MSIX_ENABLED, &adapter->flags); + + return 0; +} + +static void ena_setup_mgmnt_intr(struct ena_adapter *adapter) +{ + u32 cpu; + + snprintf(adapter->irq_tbl[ENA_MGMNT_IRQ_IDX].name, + ENA_IRQNAME_SIZE, "ena-mgmnt@pci:%s", + pci_name(adapter->pdev)); + adapter->irq_tbl[ENA_MGMNT_IRQ_IDX].handler = + ena_intr_msix_mgmnt; + adapter->irq_tbl[ENA_MGMNT_IRQ_IDX].data = adapter; + adapter->irq_tbl[ENA_MGMNT_IRQ_IDX].vector = + adapter->msix_entries[ENA_MGMNT_IRQ_IDX].vector; + cpu = cpumask_first(cpu_online_mask); + adapter->irq_tbl[ENA_MGMNT_IRQ_IDX].cpu = cpu; + cpumask_set_cpu(cpu, + &adapter->irq_tbl[ENA_MGMNT_IRQ_IDX].affinity_hint_mask); +} + +static void ena_setup_io_intr(struct ena_adapter *adapter) +{ + struct net_device *netdev; + int irq_idx, i, cpu; + + netdev = adapter->netdev; + + for (i = 0; i < adapter->num_queues; i++) { + irq_idx = ENA_IO_IRQ_IDX(i); + cpu = i % num_online_cpus(); + + snprintf(adapter->irq_tbl[irq_idx].name, ENA_IRQNAME_SIZE, + "%s-Tx-Rx-%d", netdev->name, i); + adapter->irq_tbl[irq_idx].handler = ena_intr_msix_io; + adapter->irq_tbl[irq_idx].data = &adapter->ena_napi[i]; + adapter->irq_tbl[irq_idx].vector = + adapter->msix_entries[irq_idx].vector; + adapter->irq_tbl[irq_idx].cpu = cpu; + + cpumask_set_cpu(cpu, + &adapter->irq_tbl[irq_idx].affinity_hint_mask); + } +} + +static int ena_request_mgmnt_irq(struct ena_adapter *adapter) +{ + unsigned long flags = 0; + struct ena_irq *irq; + int rc; + + irq = &adapter->irq_tbl[ENA_MGMNT_IRQ_IDX]; + rc = request_irq(irq->vector, irq->handler, flags, irq->name, + irq->data); + if (rc) { + netif_err(adapter, probe, adapter->netdev, + "failed to request admin irq\n"); + return rc; + } + + netif_dbg(adapter, probe, adapter->netdev, + "set affinity hint of mgmnt irq.to 0x%lx (irq vector: %d)\n", + irq->affinity_hint_mask.bits[0], irq->vector); + + irq_set_affinity_hint(irq->vector, &irq->affinity_hint_mask); + + return rc; +} + +static int ena_request_io_irq(struct ena_adapter *adapter) +{ + unsigned long flags = 0; + struct ena_irq *irq; + int rc = 0, i, k; + + if (!test_bit(ENA_FLAG_MSIX_ENABLED, &adapter->flags)) { + netif_err(adapter, ifup, adapter->netdev, + "Failed to request I/O IRQ: MSI-X is not enabled\n"); + return -EINVAL; + } + + for (i = ENA_IO_IRQ_FIRST_IDX; i < adapter->msix_vecs; i++) { + irq = &adapter->irq_tbl[i]; + rc = request_irq(irq->vector, irq->handler, flags, irq->name, + irq->data); + if (rc) { + netif_err(adapter, ifup, adapter->netdev, + "Failed to request I/O IRQ. index %d rc %d\n", + i, rc); + goto err; + } + + netif_dbg(adapter, ifup, adapter->netdev, + "set affinity hint of irq. index %d to 0x%lx (irq vector: %d)\n", + i, irq->affinity_hint_mask.bits[0], irq->vector); + + irq_set_affinity_hint(irq->vector, &irq->affinity_hint_mask); + } + + return rc; + +err: + for (k = ENA_IO_IRQ_FIRST_IDX; k < i; k++) { + irq = &adapter->irq_tbl[k]; + free_irq(irq->vector, irq->data); + } + + return rc; +} + +static void ena_free_mgmnt_irq(struct ena_adapter *adapter) +{ + struct ena_irq *irq; + + irq = &adapter->irq_tbl[ENA_MGMNT_IRQ_IDX]; + synchronize_irq(irq->vector); + irq_set_affinity_hint(irq->vector, NULL); + free_irq(irq->vector, irq->data); +} + +static void ena_free_io_irq(struct ena_adapter *adapter) +{ + struct ena_irq *irq; + int i; + +#ifdef CONFIG_RFS_ACCEL + if (adapter->msix_vecs >= 1) { + free_irq_cpu_rmap(adapter->netdev->rx_cpu_rmap); + adapter->netdev->rx_cpu_rmap = NULL; + } +#endif /* CONFIG_RFS_ACCEL */ + + for (i = ENA_IO_IRQ_FIRST_IDX; i < adapter->msix_vecs; i++) { + irq = &adapter->irq_tbl[i]; + irq_set_affinity_hint(irq->vector, NULL); + free_irq(irq->vector, irq->data); + } +} + +static void ena_disable_msix(struct ena_adapter *adapter) +{ + if (test_and_clear_bit(ENA_FLAG_MSIX_ENABLED, &adapter->flags)) + pci_disable_msix(adapter->pdev); + + if (adapter->msix_entries) + vfree(adapter->msix_entries); + adapter->msix_entries = NULL; +} + +static void ena_disable_io_intr_sync(struct ena_adapter *adapter) +{ + int i; + + if (!netif_running(adapter->netdev)) + return; + + for (i = ENA_IO_IRQ_FIRST_IDX; i < adapter->msix_vecs; i++) + synchronize_irq(adapter->irq_tbl[i].vector); +} + +static void ena_del_napi(struct ena_adapter *adapter) +{ + int i; + + for (i = 0; i < adapter->num_queues; i++) + netif_napi_del(&adapter->ena_napi[i].napi); +} + +static void ena_init_napi(struct ena_adapter *adapter) +{ + struct ena_napi *napi; + int i; + + for (i = 0; i < adapter->num_queues; i++) { + napi = &adapter->ena_napi[i]; + + netif_napi_add(adapter->netdev, + &adapter->ena_napi[i].napi, + ena_io_poll, + ENA_NAPI_BUDGET); + napi->rx_ring = &adapter->rx_ring[i]; + napi->tx_ring = &adapter->tx_ring[i]; + napi->qid = i; + } +} + +static void ena_napi_disable_all(struct ena_adapter *adapter) +{ + int i; + + for (i = 0; i < adapter->num_queues; i++) + napi_disable(&adapter->ena_napi[i].napi); +} + +static void ena_napi_enable_all(struct ena_adapter *adapter) +{ + int i; + + for (i = 0; i < adapter->num_queues; i++) + napi_enable(&adapter->ena_napi[i].napi); +} + +static void ena_restore_ethtool_params(struct ena_adapter *adapter) +{ + adapter->tx_usecs = 0; + adapter->rx_usecs = 0; + adapter->tx_frames = 1; + adapter->rx_frames = 1; +} + +/* Configure the Rx forwarding */ +static int ena_rss_configure(struct ena_adapter *adapter) +{ + struct ena_com_dev *ena_dev = adapter->ena_dev; + int rc; + + /* In case the RSS table wasn't initialized by probe */ + if (!ena_dev->rss.tbl_log_size) { + rc = ena_rss_init_default(adapter); + if (rc && (rc != -EPERM)) { + netif_err(adapter, ifup, adapter->netdev, + "Failed to init RSS rc: %d\n", rc); + return rc; + } + } + + /* Set indirect table */ + rc = ena_com_indirect_table_set(ena_dev); + if (unlikely(rc && rc != -EPERM)) + return rc; + + /* Configure hash function (if supported) */ + rc = ena_com_set_hash_function(ena_dev); + if (unlikely(rc && (rc != -EPERM))) + return rc; + + /* Configure hash inputs (if supported) */ + rc = ena_com_set_hash_ctrl(ena_dev); + if (unlikely(rc && (rc != -EPERM))) + return rc; + + return 0; +} + +static int ena_up_complete(struct ena_adapter *adapter) +{ + int rc, i; + + rc = ena_rss_configure(adapter); + if (rc) + return rc; + + ena_init_napi(adapter); + + ena_change_mtu(adapter->netdev, adapter->netdev->mtu); + + ena_refill_all_rx_bufs(adapter); + + /* enable transmits */ + netif_tx_start_all_queues(adapter->netdev); + + ena_restore_ethtool_params(adapter); + + ena_napi_enable_all(adapter); + + /* schedule napi in case we had pending packets + * from the last time we disable napi + */ + for (i = 0; i < adapter->num_queues; i++) + napi_schedule(&adapter->ena_napi[i].napi); + + return 0; +} + +static int ena_create_io_tx_queue(struct ena_adapter *adapter, int qid) +{ + struct ena_com_create_io_ctx ctx = { 0 }; + struct ena_com_dev *ena_dev; + struct ena_ring *tx_ring; + u32 msix_vector; + u16 ena_qid; + int rc; + + ena_dev = adapter->ena_dev; + + tx_ring = &adapter->tx_ring[qid]; + msix_vector = ENA_IO_IRQ_IDX(qid); + ena_qid = ENA_IO_TXQ_IDX(qid); + + ctx.direction = ENA_COM_IO_QUEUE_DIRECTION_TX; + ctx.qid = ena_qid; + ctx.mem_queue_type = ena_dev->tx_mem_queue_type; + ctx.msix_vector = msix_vector; + ctx.queue_size = adapter->tx_ring_size; + ctx.numa_node = cpu_to_node(tx_ring->cpu); + + rc = ena_com_create_io_queue(ena_dev, &ctx); + if (rc) { + netif_err(adapter, ifup, adapter->netdev, + "Failed to create I/O TX queue num %d rc: %d\n", + qid, rc); + return rc; + } + + rc = ena_com_get_io_handlers(ena_dev, ena_qid, + &tx_ring->ena_com_io_sq, + &tx_ring->ena_com_io_cq); + if (rc) { + netif_err(adapter, ifup, adapter->netdev, + "Failed to get TX queue handlers. TX queue num %d rc: %d\n", + qid, rc); + ena_com_destroy_io_queue(ena_dev, ena_qid); + } + + ena_com_update_numa_node(tx_ring->ena_com_io_cq, ctx.numa_node); + return rc; +} + +static int ena_create_all_io_tx_queues(struct ena_adapter *adapter) +{ + struct ena_com_dev *ena_dev = adapter->ena_dev; + int rc, i; + + for (i = 0; i < adapter->num_queues; i++) { + rc = ena_create_io_tx_queue(adapter, i); + if (rc) + goto create_err; + } + + return 0; + +create_err: + while (i--) + ena_com_destroy_io_queue(ena_dev, ENA_IO_TXQ_IDX(i)); + + return rc; +} + +static int ena_create_io_rx_queue(struct ena_adapter *adapter, int qid) +{ + struct ena_com_dev *ena_dev; + struct ena_com_create_io_ctx ctx = { 0 }; + struct ena_ring *rx_ring; + u32 msix_vector; + u16 ena_qid; + int rc; + + ena_dev = adapter->ena_dev; + + rx_ring = &adapter->rx_ring[qid]; + msix_vector = ENA_IO_IRQ_IDX(qid); + ena_qid = ENA_IO_RXQ_IDX(qid); + + ctx.qid = ena_qid; + ctx.direction = ENA_COM_IO_QUEUE_DIRECTION_RX; + ctx.mem_queue_type = ENA_ADMIN_PLACEMENT_POLICY_HOST; + ctx.msix_vector = msix_vector; + ctx.queue_size = adapter->rx_ring_size; + ctx.numa_node = cpu_to_node(rx_ring->cpu); + + rc = ena_com_create_io_queue(ena_dev, &ctx); + if (rc) { + netif_err(adapter, ifup, adapter->netdev, + "Failed to create I/O RX queue num %d rc: %d\n", + qid, rc); + return rc; + } + + rc = ena_com_get_io_handlers(ena_dev, ena_qid, + &rx_ring->ena_com_io_sq, + &rx_ring->ena_com_io_cq); + if (rc) { + netif_err(adapter, ifup, adapter->netdev, + "Failed to get RX queue handlers. RX queue num %d rc: %d\n", + qid, rc); + ena_com_destroy_io_queue(ena_dev, ena_qid); + } + + ena_com_update_numa_node(rx_ring->ena_com_io_cq, ctx.numa_node); + + return rc; +} + +static int ena_create_all_io_rx_queues(struct ena_adapter *adapter) +{ + struct ena_com_dev *ena_dev = adapter->ena_dev; + int rc, i; + + for (i = 0; i < adapter->num_queues; i++) { + rc = ena_create_io_rx_queue(adapter, i); + if (rc) + goto create_err; + } + + return 0; + +create_err: + while (i--) + ena_com_destroy_io_queue(ena_dev, ENA_IO_RXQ_IDX(i)); + + return rc; +} + +static int ena_up(struct ena_adapter *adapter) +{ + int rc; + + netdev_dbg(adapter->netdev, "%s\n", __func__); + + ena_setup_io_intr(adapter); + + rc = ena_request_io_irq(adapter); + if (rc) + goto err_req_irq; + + /* allocate transmit descriptors */ + rc = ena_setup_all_tx_resources(adapter); + if (rc) + goto err_setup_tx; + + /* allocate receive descriptors */ + rc = ena_setup_all_rx_resources(adapter); + if (rc) + goto err_setup_rx; + + /* Create TX queues */ + rc = ena_create_all_io_tx_queues(adapter); + if (rc) + goto err_create_tx_queues; + + /* Create RX queues */ + rc = ena_create_all_io_rx_queues(adapter); + if (rc) + goto err_create_rx_queues; + + rc = ena_up_complete(adapter); + if (rc) + goto err_up; + + if (test_bit(ENA_FLAG_LINK_UP, &adapter->flags)) + netif_carrier_on(adapter->netdev); + + u64_stats_update_begin(&adapter->syncp); + adapter->dev_stats.interface_up++; + u64_stats_update_end(&adapter->syncp); + + set_bit(ENA_FLAG_DEV_UP, &adapter->flags); + + return rc; + +err_up: + ena_destroy_all_rx_queues(adapter); +err_create_rx_queues: + ena_destroy_all_tx_queues(adapter); +err_create_tx_queues: + ena_free_all_io_rx_resources(adapter); +err_setup_rx: + ena_free_all_io_tx_resources(adapter); +err_setup_tx: + ena_free_io_irq(adapter); +err_req_irq: + + return rc; +} + +static void ena_down(struct ena_adapter *adapter) +{ + netif_info(adapter, ifdown, adapter->netdev, "%s\n", __func__); + + clear_bit(ENA_FLAG_DEV_UP, &adapter->flags); + + u64_stats_update_begin(&adapter->syncp); + adapter->dev_stats.interface_down++; + u64_stats_update_end(&adapter->syncp); + + netif_carrier_off(adapter->netdev); + netif_tx_disable(adapter->netdev); + + /* After this point the napi handler won't enable the tx queue */ + ena_napi_disable_all(adapter); + + /* After destroy the queue there won't be any new interrupts */ + + if (test_bit(ENA_FLAG_TRIGGER_RESET, &adapter->flags)) { + int rc; + + rc = ena_com_dev_reset(adapter->ena_dev); + if (rc) + dev_err(&adapter->pdev->dev, "Device reset failed\n"); + } + + ena_destroy_all_io_queues(adapter); + + ena_disable_io_intr_sync(adapter); + ena_free_io_irq(adapter); + ena_del_napi(adapter); + + ena_free_all_tx_bufs(adapter); + ena_free_all_rx_bufs(adapter); + ena_free_all_io_tx_resources(adapter); + ena_free_all_io_rx_resources(adapter); +} + +/* ena_open - Called when a network interface is made active + * @netdev: network interface device structure + * + * Returns 0 on success, negative value on failure + * + * The open entry point is called when a network interface is made + * active by the system (IFF_UP). At this point all resources needed + * for transmit and receive operations are allocated, the interrupt + * handler is registered with the OS, the watchdog timer is started, + * and the stack is notified that the interface is ready. + */ +static int ena_open(struct net_device *netdev) +{ + struct ena_adapter *adapter = netdev_priv(netdev); + int rc; + + /* Notify the stack of the actual queue counts. */ + rc = netif_set_real_num_tx_queues(netdev, adapter->num_queues); + if (rc) { + netif_err(adapter, ifup, netdev, "Can't set num tx queues\n"); + return rc; + } + + rc = netif_set_real_num_rx_queues(netdev, adapter->num_queues); + if (rc) { + netif_err(adapter, ifup, netdev, "Can't set num rx queues\n"); + return rc; + } + + rc = ena_up(adapter); + if (rc) + return rc; + + return rc; +} + +/* ena_close - Disables a network interface + * @netdev: network interface device structure + * + * Returns 0, this is not allowed to fail + * + * The close entry point is called when an interface is de-activated + * by the OS. The hardware is still under the drivers control, but + * needs to be disabled. A global MAC reset is issued to stop the + * hardware, and all transmit and receive resources are freed. + */ +static int ena_close(struct net_device *netdev) +{ + struct ena_adapter *adapter = netdev_priv(netdev); + + netif_dbg(adapter, ifdown, netdev, "%s\n", __func__); + + if (test_bit(ENA_FLAG_DEV_UP, &adapter->flags)) + ena_down(adapter); + + return 0; +} + +static void ena_tx_csum(struct ena_com_tx_ctx *ena_tx_ctx, struct sk_buff *skb) +{ + u32 mss = skb_shinfo(skb)->gso_size; + struct ena_com_tx_meta *ena_meta = &ena_tx_ctx->ena_meta; + u8 l4_protocol = 0; + + if ((skb->ip_summed == CHECKSUM_PARTIAL) || mss) { + ena_tx_ctx->l4_csum_enable = 1; + if (mss) { + ena_tx_ctx->tso_enable = 1; + ena_meta->l4_hdr_len = tcp_hdr(skb)->doff; + ena_tx_ctx->l4_csum_partial = 0; + } else { + ena_tx_ctx->tso_enable = 0; + ena_meta->l4_hdr_len = 0; + ena_tx_ctx->l4_csum_partial = 1; + } + + switch (ip_hdr(skb)->version) { + case IPVERSION: + ena_tx_ctx->l3_proto = ENA_ETH_IO_L3_PROTO_IPV4; + if (ip_hdr(skb)->frag_off & htons(IP_DF)) + ena_tx_ctx->df = 1; + if (mss) + ena_tx_ctx->l3_csum_enable = 1; + l4_protocol = ip_hdr(skb)->protocol; + break; + case 6: + ena_tx_ctx->l3_proto = ENA_ETH_IO_L3_PROTO_IPV6; + l4_protocol = ipv6_hdr(skb)->nexthdr; + break; + default: + break; + } + + if (l4_protocol == IPPROTO_TCP) + ena_tx_ctx->l4_proto = ENA_ETH_IO_L4_PROTO_TCP; + else + ena_tx_ctx->l4_proto = ENA_ETH_IO_L4_PROTO_UDP; + + ena_meta->mss = mss; + ena_meta->l3_hdr_len = skb_network_header_len(skb); + ena_meta->l3_hdr_offset = skb_network_offset(skb); + ena_tx_ctx->meta_valid = 1; + + } else { + ena_tx_ctx->meta_valid = 0; + } +} + +static int ena_check_and_linearize_skb(struct ena_ring *tx_ring, + struct sk_buff *skb) +{ + int num_frags, header_len, rc; + + num_frags = skb_shinfo(skb)->nr_frags; + header_len = skb_headlen(skb); + + if (num_frags < tx_ring->sgl_size) + return 0; + + if ((num_frags == tx_ring->sgl_size) && + (header_len < tx_ring->tx_max_header_size)) + return 0; + + u64_stats_update_begin(&tx_ring->syncp); + tx_ring->tx_stats.linearize++; + u64_stats_update_end(&tx_ring->syncp); + + rc = skb_linearize(skb); + if (unlikely(rc)) { + u64_stats_update_begin(&tx_ring->syncp); + tx_ring->tx_stats.linearize_failed++; + u64_stats_update_end(&tx_ring->syncp); + } + + return rc; +} + +/* Called with netif_tx_lock. */ +static netdev_tx_t ena_start_xmit(struct sk_buff *skb, struct net_device *dev) +{ + struct ena_adapter *adapter = netdev_priv(dev); + struct ena_tx_buffer *tx_info; + struct ena_com_tx_ctx ena_tx_ctx; + struct ena_ring *tx_ring; + struct netdev_queue *txq; + struct ena_com_buf *ena_buf; + void *push_hdr; + u32 len, last_frag; + u16 next_to_use; + u16 req_id; + u16 push_len; + u16 header_len; + dma_addr_t dma; + int qid, rc, nb_hw_desc; + int i = -1; + + netif_dbg(adapter, tx_queued, dev, "%s skb %p\n", __func__, skb); + /* Determine which tx ring we will be placed on */ + qid = skb_get_queue_mapping(skb); + tx_ring = &adapter->tx_ring[qid]; + txq = netdev_get_tx_queue(dev, qid); + + rc = ena_check_and_linearize_skb(tx_ring, skb); + if (unlikely(rc)) + goto error_drop_packet; + + skb_tx_timestamp(skb); + len = skb_headlen(skb); + + next_to_use = tx_ring->next_to_use; + req_id = tx_ring->free_tx_ids[next_to_use]; + tx_info = &tx_ring->tx_buffer_info[req_id]; + tx_info->num_of_bufs = 0; + + WARN(tx_info->skb, "SKB isn't NULL req_id %d\n", req_id); + ena_buf = tx_info->bufs; + tx_info->skb = skb; + + if (tx_ring->tx_mem_queue_type == ENA_ADMIN_PLACEMENT_POLICY_DEV) { + /* prepared the push buffer */ + push_len = min_t(u32, len, tx_ring->tx_max_header_size); + header_len = push_len; + push_hdr = skb->data; + } else { + push_len = 0; + header_len = min_t(u32, len, tx_ring->tx_max_header_size); + push_hdr = NULL; + } + + netif_dbg(adapter, tx_queued, dev, + "skb: %p header_buf->vaddr: %p push_len: %d\n", skb, + push_hdr, push_len); + + if (len > push_len) { + dma = dma_map_single(tx_ring->dev, skb->data + push_len, + len - push_len, DMA_TO_DEVICE); + if (dma_mapping_error(tx_ring->dev, dma)) + goto error_report_dma_error; + + ena_buf->paddr = dma; + ena_buf->len = len - push_len; + + ena_buf++; + tx_info->num_of_bufs++; + } + + last_frag = skb_shinfo(skb)->nr_frags; + + for (i = 0; i < last_frag; i++) { + const skb_frag_t *frag = &skb_shinfo(skb)->frags[i]; + + len = skb_frag_size(frag); + dma = skb_frag_dma_map(tx_ring->dev, frag, 0, len, + DMA_TO_DEVICE); + if (dma_mapping_error(tx_ring->dev, dma)) + goto error_report_dma_error; + + ena_buf->paddr = dma; + ena_buf->len = len; + ena_buf++; + } + + tx_info->num_of_bufs += last_frag; + + memset(&ena_tx_ctx, 0x0, sizeof(struct ena_com_tx_ctx)); + ena_tx_ctx.ena_bufs = tx_info->bufs; + ena_tx_ctx.push_header = push_hdr; + ena_tx_ctx.num_bufs = tx_info->num_of_bufs; + ena_tx_ctx.req_id = req_id; + ena_tx_ctx.header_len = header_len; + + /* set flags and meta data */ + ena_tx_csum(&ena_tx_ctx, skb); + + /* prepare the packet's descriptors to dma engine */ + rc = ena_com_prepare_tx(tx_ring->ena_com_io_sq, &ena_tx_ctx, + &nb_hw_desc); + + if (unlikely(rc)) { + netif_err(adapter, tx_queued, dev, + "failed to prepare tx bufs\n"); + u64_stats_update_begin(&tx_ring->syncp); + tx_ring->tx_stats.queue_stop++; + tx_ring->tx_stats.prepare_ctx_err++; + u64_stats_update_end(&tx_ring->syncp); + netif_tx_stop_queue(txq); + goto error_unmap_dma; + } + + netdev_tx_sent_queue(txq, skb->len); + + u64_stats_update_begin(&tx_ring->syncp); + tx_ring->tx_stats.cnt++; + tx_ring->tx_stats.bytes += skb->len; + u64_stats_update_end(&tx_ring->syncp); + + tx_info->tx_descs = nb_hw_desc; + tx_info->last_jiffies = jiffies; + + tx_ring->next_to_use = ENA_TX_RING_IDX_NEXT(next_to_use, + tx_ring->ring_size); + + /* This WMB is aimed to: + * 1 - perform smp barrier before reading next_to_completion + * 2 - make sure the desc were written before trigger DB + */ + wmb(); + + /* stop the queue when no more space available, the packet can have up + * to sgl_size + 2. one for the meta descriptor and one for header + * (if the header is larger than tx_max_header_size). + */ + if (unlikely(ena_com_sq_empty_space(tx_ring->ena_com_io_sq) < + (tx_ring->sgl_size + 2))) { + netif_dbg(adapter, tx_queued, dev, "%s stop queue %d\n", + __func__, qid); + + netif_tx_stop_queue(txq); + u64_stats_update_begin(&tx_ring->syncp); + tx_ring->tx_stats.queue_stop++; + u64_stats_update_end(&tx_ring->syncp); + + /* There is a rare condition where this function decide to + * stop the queue but meanwhile clean_tx_irq updates + * next_to_completion and terminates. + * The queue will remain stopped forever. + * To solve this issue this function perform rmb, check + * the wakeup condition and wake up the queue if needed. + */ + smp_rmb(); + + if (ena_com_sq_empty_space(tx_ring->ena_com_io_sq) + > ENA_TX_WAKEUP_THRESH) { + netif_tx_wake_queue(txq); + u64_stats_update_begin(&tx_ring->syncp); + tx_ring->tx_stats.queue_wakeup++; + u64_stats_update_end(&tx_ring->syncp); + } + } + + if (netif_xmit_stopped(txq) || !skb->xmit_more) { + /* trigger the dma engine */ + ena_com_write_sq_doorbell(tx_ring->ena_com_io_sq); + u64_stats_update_begin(&tx_ring->syncp); + tx_ring->tx_stats.doorbells++; + u64_stats_update_end(&tx_ring->syncp); + } + + return NETDEV_TX_OK; + +error_report_dma_error: + u64_stats_update_begin(&tx_ring->syncp); + tx_ring->tx_stats.dma_mapping_err++; + u64_stats_update_end(&tx_ring->syncp); + netdev_warn(adapter->netdev, "failed to map skb\n"); + + tx_info->skb = NULL; + +error_unmap_dma: + if (i >= 0) { + /* save value of frag that failed */ + last_frag = i; + + /* start back at beginning and unmap skb */ + tx_info->skb = NULL; + ena_buf = tx_info->bufs; + dma_unmap_single(tx_ring->dev, dma_unmap_addr(ena_buf, paddr), + dma_unmap_len(ena_buf, len), DMA_TO_DEVICE); + + /* unmap remaining mapped pages */ + for (i = 0; i < last_frag; i++) { + ena_buf++; + dma_unmap_page(tx_ring->dev, dma_unmap_addr(ena_buf, paddr), + dma_unmap_len(ena_buf, len), DMA_TO_DEVICE); + } + } + +error_drop_packet: + + dev_kfree_skb(skb); + return NETDEV_TX_OK; +} + +#ifdef CONFIG_NET_POLL_CONTROLLER +static void ena_netpoll(struct net_device *netdev) +{ + struct ena_adapter *adapter = netdev_priv(netdev); + int i; + + /* Dont schedule NAPI if the driver is in the middle of reset + * or netdev is down. + */ + + if (!test_bit(ENA_FLAG_DEV_UP, &adapter->flags) || + test_bit(ENA_FLAG_TRIGGER_RESET, &adapter->flags)) + return; + + for (i = 0; i < adapter->num_queues; i++) + napi_schedule(&adapter->ena_napi[i].napi); +} +#endif /* CONFIG_NET_POLL_CONTROLLER */ + +static u16 ena_select_queue(struct net_device *dev, struct sk_buff *skb, + void *accel_priv, select_queue_fallback_t fallback) +{ + u16 qid; + /* we suspect that this is good for in--kernel network services that + * want to loop incoming skb rx to tx in normal user generated traffic, + * most probably we will not get to this + */ + if (skb_rx_queue_recorded(skb)) + qid = skb_get_rx_queue(skb); + else + qid = fallback(dev, skb); + + return qid; +} + +static void ena_config_host_info(struct ena_com_dev *ena_dev) +{ + struct ena_admin_host_info *host_info; + int rc; + + /* Allocate only the host info */ + rc = ena_com_allocate_host_info(ena_dev); + if (rc) { + pr_err("Cannot allocate host info\n"); + return; + } + + host_info = ena_dev->host_attr.host_info; + + host_info->os_type = ENA_ADMIN_OS_LINUX; + host_info->kernel_ver = LINUX_VERSION_CODE; + strncpy(host_info->kernel_ver_str, utsname()->version, + sizeof(host_info->kernel_ver_str) - 1); + host_info->os_dist = 0; + strncpy(host_info->os_dist_str, utsname()->release, + sizeof(host_info->os_dist_str) - 1); + host_info->driver_version = + (DRV_MODULE_VER_MAJOR) | + (DRV_MODULE_VER_MINOR << ENA_ADMIN_HOST_INFO_MINOR_SHIFT) | + (DRV_MODULE_VER_SUBMINOR << ENA_ADMIN_HOST_INFO_SUB_MINOR_SHIFT); + + rc = ena_com_set_host_attributes(ena_dev); + if (rc) { + if (rc == -EPERM) + pr_warn("Cannot set host attributes\n"); + else + pr_err("Cannot set host attributes\n"); + + goto err; + } + + return; + +err: + ena_com_delete_host_info(ena_dev); +} + +static void ena_config_debug_area(struct ena_adapter *adapter) +{ + u32 debug_area_size; + int rc, ss_count; + + ss_count = ena_get_sset_count(adapter->netdev, ETH_SS_STATS); + if (ss_count <= 0) { + netif_err(adapter, drv, adapter->netdev, + "SS count is negative\n"); + return; + } + + /* allocate 32 bytes for each string and 64bit for the value */ + debug_area_size = ss_count * ETH_GSTRING_LEN + sizeof(u64) * ss_count; + + rc = ena_com_allocate_debug_area(adapter->ena_dev, debug_area_size); + if (rc) { + pr_err("Cannot allocate debug area\n"); + return; + } + + rc = ena_com_set_host_attributes(adapter->ena_dev); + if (rc) { + if (rc == -EPERM) + netif_warn(adapter, drv, adapter->netdev, + "Cannot set host attributes\n"); + else + netif_err(adapter, drv, adapter->netdev, + "Cannot set host attributes\n"); + goto err; + } + + return; +err: + ena_com_delete_debug_area(adapter->ena_dev); +} + +static struct rtnl_link_stats64 *ena_get_stats64(struct net_device *netdev, + struct rtnl_link_stats64 *stats) +{ + struct ena_adapter *adapter = netdev_priv(netdev); + struct ena_ring *rx_ring, *tx_ring; + unsigned int start; + u64 rx_drops; + int i; + + if (!test_bit(ENA_FLAG_DEV_UP, &adapter->flags)) + return NULL; + + for (i = 0; i < adapter->num_queues; i++) { + u64 bytes, packets; + + tx_ring = &adapter->tx_ring[i]; + + do { + start = u64_stats_fetch_begin_irq(&tx_ring->syncp); + packets = tx_ring->tx_stats.cnt; + bytes = tx_ring->tx_stats.bytes; + } while (u64_stats_fetch_retry_irq(&tx_ring->syncp, start)); + + stats->tx_packets += packets; + stats->tx_bytes += bytes; + + rx_ring = &adapter->rx_ring[i]; + + do { + start = u64_stats_fetch_begin_irq(&rx_ring->syncp); + packets = rx_ring->rx_stats.cnt; + bytes = rx_ring->rx_stats.bytes; + } while (u64_stats_fetch_retry_irq(&rx_ring->syncp, start)); + + stats->rx_packets += packets; + stats->rx_bytes += bytes; + } + + do { + start = u64_stats_fetch_begin_irq(&adapter->syncp); + rx_drops = adapter->dev_stats.rx_drops; + } while (u64_stats_fetch_retry_irq(&adapter->syncp, start)); + + stats->rx_dropped = rx_drops; + + stats->multicast = 0; + stats->collisions = 0; + + stats->rx_length_errors = 0; + stats->rx_crc_errors = 0; + stats->rx_frame_errors = 0; + stats->rx_fifo_errors = 0; + stats->rx_missed_errors = 0; + stats->tx_window_errors = 0; + + stats->rx_errors = 0; + stats->tx_errors = 0; + + return stats; +} + +static const struct net_device_ops ena_netdev_ops = { + .ndo_open = ena_open, + .ndo_stop = ena_close, + .ndo_start_xmit = ena_start_xmit, + .ndo_select_queue = ena_select_queue, + .ndo_get_stats64 = ena_get_stats64, + .ndo_tx_timeout = ena_tx_timeout, + .ndo_change_mtu = ena_change_mtu, + .ndo_set_mac_address = NULL, + .ndo_validate_addr = eth_validate_addr, +#ifdef CONFIG_NET_POLL_CONTROLLER + .ndo_poll_controller = ena_netpoll, +#endif /* CONFIG_NET_POLL_CONTROLLER */ +}; + +static void ena_device_io_suspend(struct work_struct *work) +{ + struct ena_adapter *adapter = + container_of(work, struct ena_adapter, suspend_io_task); + struct net_device *netdev = adapter->netdev; + + /* ena_napi_disable_all disables only the IO handling. + * We are still subject to AENQ keep alive watchdog. + */ + u64_stats_update_begin(&adapter->syncp); + adapter->dev_stats.io_suspend++; + u64_stats_update_begin(&adapter->syncp); + ena_napi_disable_all(adapter); + netif_tx_lock(netdev); + netif_device_detach(netdev); + netif_tx_unlock(netdev); +} + +static void ena_device_io_resume(struct work_struct *work) +{ + struct ena_adapter *adapter = + container_of(work, struct ena_adapter, resume_io_task); + struct net_device *netdev = adapter->netdev; + + u64_stats_update_begin(&adapter->syncp); + adapter->dev_stats.io_resume++; + u64_stats_update_end(&adapter->syncp); + + netif_device_attach(netdev); + ena_napi_enable_all(adapter); +} + +static int ena_device_validate_params(struct ena_adapter *adapter, + struct ena_com_dev_get_features_ctx *get_feat_ctx) +{ + struct net_device *netdev = adapter->netdev; + int rc; + + rc = ether_addr_equal(get_feat_ctx->dev_attr.mac_addr, + adapter->mac_addr); + if (!rc) { + netif_err(adapter, drv, netdev, + "Error, mac address are different\n"); + return -EINVAL; + } + + if ((get_feat_ctx->max_queues.max_cq_num < adapter->num_queues) || + (get_feat_ctx->max_queues.max_sq_num < adapter->num_queues)) { + netif_err(adapter, drv, netdev, + "Error, device doesn't support enough queues\n"); + return -EINVAL; + } + + if (get_feat_ctx->dev_attr.max_mtu < netdev->mtu) { + netif_err(adapter, drv, netdev, + "Error, device max mtu is smaller than netdev MTU\n"); + return -EINVAL; + } + + return 0; +} + +static int ena_device_init(struct ena_com_dev *ena_dev, struct pci_dev *pdev, + struct ena_com_dev_get_features_ctx *get_feat_ctx, + bool *wd_state) +{ + struct device *dev = &pdev->dev; + bool readless_supported; + u32 aenq_groups; + int dma_width; + int rc; + + rc = ena_com_mmio_reg_read_request_init(ena_dev); + if (rc) { + dev_err(dev, "failed to init mmio read less\n"); + return rc; + } + + /* The PCIe configuration space revision id indicate if mmio reg + * read is disabled + */ + readless_supported = !(pdev->revision & ENA_MMIO_DISABLE_REG_READ); + ena_com_set_mmio_read_mode(ena_dev, readless_supported); + + rc = ena_com_dev_reset(ena_dev); + if (rc) { + dev_err(dev, "Can not reset device\n"); + goto err_mmio_read_less; + } + + rc = ena_com_validate_version(ena_dev); + if (rc) { + dev_err(dev, "device version is too low\n"); + goto err_mmio_read_less; + } + + dma_width = ena_com_get_dma_width(ena_dev); + if (dma_width < 0) { + dev_err(dev, "Invalid dma width value %d", dma_width); + rc = dma_width; + goto err_mmio_read_less; + } + + rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(dma_width)); + if (rc) { + dev_err(dev, "pci_set_dma_mask failed 0x%x\n", rc); + goto err_mmio_read_less; + } + + rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(dma_width)); + if (rc) { + dev_err(dev, "err_pci_set_consistent_dma_mask failed 0x%x\n", + rc); + goto err_mmio_read_less; + } + + /* ENA admin level init */ + rc = ena_com_admin_init(ena_dev, &aenq_handlers, true); + if (rc) { + dev_err(dev, + "Can not initialize ena admin queue with device\n"); + goto err_mmio_read_less; + } + + /* To enable the msix interrupts the driver needs to know the number + * of queues. So the driver uses polling mode to retrieve this + * information + */ + ena_com_set_admin_polling_mode(ena_dev, true); + + ena_config_host_info(ena_dev); + + /* Get Device Attributes*/ + rc = ena_com_get_dev_attr_feat(ena_dev, get_feat_ctx); + if (rc) { + dev_err(dev, "Cannot get attribute for ena device rc=%d\n", rc); + goto err_admin_init; + } + + /* Try to turn all the available aenq groups */ + aenq_groups = BIT(ENA_ADMIN_LINK_CHANGE) | + BIT(ENA_ADMIN_FATAL_ERROR) | + BIT(ENA_ADMIN_WARNING) | + BIT(ENA_ADMIN_NOTIFICATION) | + BIT(ENA_ADMIN_KEEP_ALIVE); + + aenq_groups &= get_feat_ctx->aenq.supported_groups; + + rc = ena_com_set_aenq_config(ena_dev, aenq_groups); + if (rc) { + dev_err(dev, "Cannot configure aenq groups rc= %d\n", rc); + goto err_admin_init; + } + + *wd_state = !!(aenq_groups & BIT(ENA_ADMIN_KEEP_ALIVE)); + + return 0; + +err_admin_init: + ena_com_delete_host_info(ena_dev); + ena_com_admin_destroy(ena_dev); +err_mmio_read_less: + ena_com_mmio_reg_read_request_destroy(ena_dev); + + return rc; +} + +static int ena_enable_msix_and_set_admin_interrupts(struct ena_adapter *adapter, + int io_vectors) +{ + struct ena_com_dev *ena_dev = adapter->ena_dev; + struct device *dev = &adapter->pdev->dev; + int rc; + + rc = ena_enable_msix(adapter, io_vectors); + if (rc) { + dev_err(dev, "Can not reserve msix vectors\n"); + return rc; + } + + ena_setup_mgmnt_intr(adapter); + + rc = ena_request_mgmnt_irq(adapter); + if (rc) { + dev_err(dev, "Can not setup management interrupts\n"); + goto err_disable_msix; + } + + ena_com_set_admin_polling_mode(ena_dev, false); + + ena_com_admin_aenq_enable(ena_dev); + + return 0; + +err_disable_msix: + ena_disable_msix(adapter); + + return rc; +} + +static void ena_fw_reset_device(struct work_struct *work) +{ + struct ena_com_dev_get_features_ctx get_feat_ctx; + struct ena_adapter *adapter = + container_of(work, struct ena_adapter, reset_task); + struct net_device *netdev = adapter->netdev; + struct ena_com_dev *ena_dev = adapter->ena_dev; + struct pci_dev *pdev = adapter->pdev; + bool dev_up, wd_state; + int rc; + + if (unlikely(!test_bit(ENA_FLAG_TRIGGER_RESET, &adapter->flags))) { + dev_err(&pdev->dev, + "device reset schedule while reset bit is off\n"); + return; + } + + netif_carrier_off(netdev); + + del_timer_sync(&adapter->timer_service); + + rtnl_lock(); + + dev_up = test_bit(ENA_FLAG_DEV_UP, &adapter->flags); + ena_com_set_admin_running_state(ena_dev, false); + + /* After calling ena_close the tx queues and the napi + * are disabled so no one can interfere or touch the + * data structures + */ + ena_close(netdev); + + ena_free_mgmnt_irq(adapter); + + ena_disable_msix(adapter); + + ena_com_abort_admin_commands(ena_dev); + + ena_com_wait_for_abort_completion(ena_dev); + + ena_com_admin_destroy(ena_dev); + + ena_com_mmio_reg_read_request_destroy(ena_dev); + + clear_bit(ENA_FLAG_TRIGGER_RESET, &adapter->flags); + + /* Finish with the destroy part. Start the init part */ + + rc = ena_device_init(ena_dev, adapter->pdev, &get_feat_ctx, &wd_state); + if (rc) { + dev_err(&pdev->dev, "Can not initialize device\n"); + goto err; + } + adapter->wd_state = wd_state; + + rc = ena_device_validate_params(adapter, &get_feat_ctx); + if (rc) { + dev_err(&pdev->dev, "Validation of device parameters failed\n"); + goto err_device_destroy; + } + + rc = ena_enable_msix_and_set_admin_interrupts(adapter, + adapter->num_queues); + if (rc) { + dev_err(&pdev->dev, "Enable MSI-X failed\n"); + goto err_device_destroy; + } + /* If the interface was up before the reset bring it up */ + if (dev_up) { + rc = ena_up(adapter); + if (rc) { + dev_err(&pdev->dev, "Failed to create I/O queues\n"); + goto err_disable_msix; + } + } + + mod_timer(&adapter->timer_service, round_jiffies(jiffies + HZ)); + + rtnl_unlock(); + + dev_err(&pdev->dev, "Device reset completed successfully\n"); + + return; +err_disable_msix: + ena_free_mgmnt_irq(adapter); + ena_disable_msix(adapter); +err_device_destroy: + ena_com_admin_destroy(ena_dev); +err: + rtnl_unlock(); + + clear_bit(ENA_FLAG_DEVICE_RUNNING, &adapter->flags); + + dev_err(&pdev->dev, + "Reset attempt failed. Can not reset the device\n"); +} + +static void check_for_missing_tx_completions(struct ena_adapter *adapter) +{ + struct ena_tx_buffer *tx_buf; + unsigned long last_jiffies; + struct ena_ring *tx_ring; + int i, j, budget; + u32 missed_tx; + + /* Make sure the driver doesn't turn the device in other process */ + smp_rmb(); + + if (!test_bit(ENA_FLAG_DEV_UP, &adapter->flags)) + return; + + if (test_bit(ENA_FLAG_TRIGGER_RESET, &adapter->flags)) + return; + + budget = ENA_MONITORED_TX_QUEUES; + + for (i = adapter->last_monitored_tx_qid; i < adapter->num_queues; i++) { + tx_ring = &adapter->tx_ring[i]; + + for (j = 0; j < tx_ring->ring_size; j++) { + tx_buf = &tx_ring->tx_buffer_info[j]; + last_jiffies = tx_buf->last_jiffies; + if (unlikely(last_jiffies && time_is_before_jiffies(last_jiffies + TX_TIMEOUT))) { + netif_notice(adapter, tx_err, adapter->netdev, + "Found a Tx that wasn't completed on time, qid %d, index %d.\n", + tx_ring->qid, j); + + u64_stats_update_begin(&tx_ring->syncp); + missed_tx = tx_ring->tx_stats.missing_tx_comp++; + u64_stats_update_end(&tx_ring->syncp); + + /* Clear last jiffies so the lost buffer won't + * be counted twice. + */ + tx_buf->last_jiffies = 0; + + if (unlikely(missed_tx > MAX_NUM_OF_TIMEOUTED_PACKETS)) { + netif_err(adapter, tx_err, adapter->netdev, + "The number of lost tx completion is above the threshold (%d > %d). Reset the device\n", + missed_tx, MAX_NUM_OF_TIMEOUTED_PACKETS); + set_bit(ENA_FLAG_TRIGGER_RESET, &adapter->flags); + } + } + } + + budget--; + if (!budget) + break; + } + + adapter->last_monitored_tx_qid = i % adapter->num_queues; +} + +/* Check for keep alive expiration */ +static void check_for_missing_keep_alive(struct ena_adapter *adapter) +{ + unsigned long keep_alive_expired; + + if (!adapter->wd_state) + return; + + keep_alive_expired = round_jiffies(adapter->last_keep_alive_jiffies + + ENA_DEVICE_KALIVE_TIMEOUT); + if (unlikely(time_is_before_jiffies(keep_alive_expired))) { + netif_err(adapter, drv, adapter->netdev, + "Keep alive watchdog timeout.\n"); + u64_stats_update_begin(&adapter->syncp); + adapter->dev_stats.wd_expired++; + u64_stats_update_end(&adapter->syncp); + set_bit(ENA_FLAG_TRIGGER_RESET, &adapter->flags); + } +} + +static void check_for_admin_com_state(struct ena_adapter *adapter) +{ + if (unlikely(!ena_com_get_admin_running_state(adapter->ena_dev))) { + netif_err(adapter, drv, adapter->netdev, + "ENA admin queue is not in running state!\n"); + u64_stats_update_begin(&adapter->syncp); + adapter->dev_stats.admin_q_pause++; + u64_stats_update_end(&adapter->syncp); + set_bit(ENA_FLAG_TRIGGER_RESET, &adapter->flags); + } +} + +static void ena_update_host_info(struct ena_admin_host_info *host_info, + struct net_device *netdev) +{ + host_info->supported_network_features[0] = + netdev->features & GENMASK_ULL(31, 0); + host_info->supported_network_features[1] = + (netdev->features & GENMASK_ULL(63, 32)) >> 32; +} + +static void ena_timer_service(unsigned long data) +{ + struct ena_adapter *adapter = (struct ena_adapter *)data; + u8 *debug_area = adapter->ena_dev->host_attr.debug_area_virt_addr; + struct ena_admin_host_info *host_info = + adapter->ena_dev->host_attr.host_info; + + check_for_missing_keep_alive(adapter); + + check_for_admin_com_state(adapter); + + check_for_missing_tx_completions(adapter); + + if (debug_area) + ena_dump_stats_to_buf(adapter, debug_area); + + if (host_info) + ena_update_host_info(host_info, adapter->netdev); + + if (unlikely(test_bit(ENA_FLAG_TRIGGER_RESET, &adapter->flags))) { + netif_err(adapter, drv, adapter->netdev, + "Trigger reset is on\n"); + ena_dump_stats_to_dmesg(adapter); + queue_work(ena_wq, &adapter->reset_task); + return; + } + + /* Reset the timer */ + mod_timer(&adapter->timer_service, jiffies + HZ); +} + +static int ena_calc_io_queue_num(struct pci_dev *pdev, + struct ena_com_dev *ena_dev, + struct ena_com_dev_get_features_ctx *get_feat_ctx) +{ + int io_sq_num, io_queue_num; + + /* In case of LLQ use the llq number in the get feature cmd */ + if (ena_dev->tx_mem_queue_type == ENA_ADMIN_PLACEMENT_POLICY_DEV) { + io_sq_num = get_feat_ctx->max_queues.max_llq_num; + + if (io_sq_num == 0) { + dev_err(&pdev->dev, + "Trying to use LLQ but llq_num is 0. Fall back into regular queues\n"); + + ena_dev->tx_mem_queue_type = + ENA_ADMIN_PLACEMENT_POLICY_HOST; + io_sq_num = get_feat_ctx->max_queues.max_sq_num; + } + } else { + io_sq_num = get_feat_ctx->max_queues.max_sq_num; + } + + io_queue_num = min_t(int, num_online_cpus(), ENA_MAX_NUM_IO_QUEUES); + io_queue_num = min_t(int, io_queue_num, io_sq_num); + io_queue_num = min_t(int, io_queue_num, + get_feat_ctx->max_queues.max_cq_num); + /* 1 IRQ for for mgmnt and 1 IRQs for each IO direction */ + io_queue_num = min_t(int, io_queue_num, pci_msix_vec_count(pdev) - 1); + if (unlikely(!io_queue_num)) { + dev_err(&pdev->dev, "The device doesn't have io queues\n"); + return -EFAULT; + } + + return io_queue_num; +} + +static void ena_set_push_mode(struct pci_dev *pdev, struct ena_com_dev *ena_dev, + struct ena_com_dev_get_features_ctx *get_feat_ctx) +{ + bool has_mem_bar; + + has_mem_bar = pci_select_bars(pdev, IORESOURCE_MEM) & BIT(ENA_MEM_BAR); + + /* Enable push mode if device supports LLQ */ + if (has_mem_bar && (get_feat_ctx->max_queues.max_llq_num > 0)) + ena_dev->tx_mem_queue_type = ENA_ADMIN_PLACEMENT_POLICY_DEV; + else + ena_dev->tx_mem_queue_type = ENA_ADMIN_PLACEMENT_POLICY_HOST; +} + +static void ena_set_dev_offloads(struct ena_com_dev_get_features_ctx *feat, + struct net_device *netdev) +{ + netdev_features_t dev_features = 0; + + /* Set offload features */ + if (feat->offload.tx & + ENA_ADMIN_FEATURE_OFFLOAD_DESC_TX_L4_IPV4_CSUM_PART_MASK) + dev_features |= NETIF_F_IP_CSUM; + + if (feat->offload.tx & + ENA_ADMIN_FEATURE_OFFLOAD_DESC_TX_L4_IPV6_CSUM_PART_MASK) + dev_features |= NETIF_F_IPV6_CSUM; + + if (feat->offload.tx & ENA_ADMIN_FEATURE_OFFLOAD_DESC_TSO_IPV4_MASK) + dev_features |= NETIF_F_TSO; + + if (feat->offload.tx & ENA_ADMIN_FEATURE_OFFLOAD_DESC_TSO_IPV6_MASK) + dev_features |= NETIF_F_TSO6; + + if (feat->offload.tx & ENA_ADMIN_FEATURE_OFFLOAD_DESC_TSO_ECN_MASK) + dev_features |= NETIF_F_TSO_ECN; + + if (feat->offload.rx_supported & + ENA_ADMIN_FEATURE_OFFLOAD_DESC_RX_L4_IPV4_CSUM_MASK) + dev_features |= NETIF_F_RXCSUM; + + if (feat->offload.rx_supported & + ENA_ADMIN_FEATURE_OFFLOAD_DESC_RX_L4_IPV6_CSUM_MASK) + dev_features |= NETIF_F_RXCSUM; + + netdev->features = + dev_features | + NETIF_F_SG | + NETIF_F_RXHASH | + NETIF_F_HIGHDMA; + + netdev->hw_features |= netdev->features; + netdev->vlan_features |= netdev->features; +} + +static void ena_set_conf_feat_params(struct ena_adapter *adapter, + struct ena_com_dev_get_features_ctx *feat) +{ + struct net_device *netdev = adapter->netdev; + + /* Copy mac address */ + if (!is_valid_ether_addr(feat->dev_attr.mac_addr)) { + eth_hw_addr_random(netdev); + ether_addr_copy(adapter->mac_addr, netdev->dev_addr); + } else { + ether_addr_copy(adapter->mac_addr, feat->dev_attr.mac_addr); + ether_addr_copy(netdev->dev_addr, adapter->mac_addr); + } + + /* Set offload features */ + ena_set_dev_offloads(feat, netdev); + + adapter->max_mtu = feat->dev_attr.max_mtu; +} + +static int ena_rss_init_default(struct ena_adapter *adapter) +{ + struct ena_com_dev *ena_dev = adapter->ena_dev; + struct device *dev = &adapter->pdev->dev; + int rc, i; + u32 val; + + rc = ena_com_rss_init(ena_dev, ENA_RX_RSS_TABLE_LOG_SIZE); + if (unlikely(rc)) { + dev_err(dev, "Cannot init indirect table\n"); + goto err_rss_init; + } + + for (i = 0; i < ENA_RX_RSS_TABLE_SIZE; i++) { + val = ethtool_rxfh_indir_default(i, adapter->num_queues); + rc = ena_com_indirect_table_fill_entry(ena_dev, i, + ENA_IO_RXQ_IDX(val)); + if (unlikely(rc && (rc != -EPERM))) { + dev_err(dev, "Cannot fill indirect table\n"); + goto err_fill_indir; + } + } + + rc = ena_com_fill_hash_function(ena_dev, ENA_ADMIN_CRC32, NULL, + ENA_HASH_KEY_SIZE, 0xFFFFFFFF); + if (unlikely(rc && (rc != -EPERM))) { + dev_err(dev, "Cannot fill hash function\n"); + goto err_fill_indir; + } + + rc = ena_com_set_default_hash_ctrl(ena_dev); + if (unlikely(rc && (rc != -EPERM))) { + dev_err(dev, "Cannot fill hash control\n"); + goto err_fill_indir; + } + + return 0; + +err_fill_indir: + ena_com_rss_destroy(ena_dev); +err_rss_init: + + return rc; +} + +static void ena_release_bars(struct ena_com_dev *ena_dev, struct pci_dev *pdev) +{ + int release_bars; + + release_bars = pci_select_bars(pdev, IORESOURCE_MEM) & ENA_BAR_MASK; + pci_release_selected_regions(pdev, release_bars); +} + +static int ena_calc_queue_size(struct pci_dev *pdev, + struct ena_com_dev *ena_dev, + u16 *max_tx_sgl_size, + u16 *max_rx_sgl_size, + struct ena_com_dev_get_features_ctx *get_feat_ctx) +{ + u32 queue_size = ENA_DEFAULT_RING_SIZE; + + queue_size = min_t(u32, queue_size, + get_feat_ctx->max_queues.max_cq_depth); + queue_size = min_t(u32, queue_size, + get_feat_ctx->max_queues.max_sq_depth); + + if (ena_dev->tx_mem_queue_type == ENA_ADMIN_PLACEMENT_POLICY_DEV) + queue_size = min_t(u32, queue_size, + get_feat_ctx->max_queues.max_llq_depth); + + queue_size = rounddown_pow_of_two(queue_size); + + if (unlikely(!queue_size)) { + dev_err(&pdev->dev, "Invalid queue size\n"); + return -EFAULT; + } + + *max_tx_sgl_size = min_t(u16, ENA_PKT_MAX_BUFS, + get_feat_ctx->max_queues.max_packet_tx_descs); + *max_rx_sgl_size = min_t(u16, ENA_PKT_MAX_BUFS, + get_feat_ctx->max_queues.max_packet_rx_descs); + + return queue_size; +} + +/* ena_probe - Device Initialization Routine + * @pdev: PCI device information struct + * @ent: entry in ena_pci_tbl + * + * Returns 0 on success, negative on failure + * + * ena_probe initializes an adapter identified by a pci_dev structure. + * The OS initialization, configuring of the adapter private structure, + * and a hardware reset occur. + */ +static int ena_probe(struct pci_dev *pdev, const struct pci_device_id *ent) +{ + struct ena_com_dev_get_features_ctx get_feat_ctx; + static int version_printed; + struct net_device *netdev; + struct ena_adapter *adapter; + struct ena_com_dev *ena_dev = NULL; + static int adapters_found; + int io_queue_num, bars, rc; + int queue_size; + u16 tx_sgl_size = 0; + u16 rx_sgl_size = 0; + bool wd_state; + + dev_dbg(&pdev->dev, "%s\n", __func__); + + if (version_printed++ == 0) + dev_info(&pdev->dev, "%s", version); + + rc = pci_enable_device_mem(pdev); + if (rc) { + dev_err(&pdev->dev, "pci_enable_device_mem() failed!\n"); + return rc; + } + + pci_set_master(pdev); + + ena_dev = vzalloc(sizeof(*ena_dev)); + if (!ena_dev) { + rc = -ENOMEM; + goto err_disable_device; + } + + bars = pci_select_bars(pdev, IORESOURCE_MEM) & ENA_BAR_MASK; + rc = pci_request_selected_regions(pdev, bars, DRV_MODULE_NAME); + if (rc) { + dev_err(&pdev->dev, "pci_request_selected_regions failed %d\n", + rc); + goto err_free_ena_dev; + } + + ena_dev->reg_bar = ioremap(pci_resource_start(pdev, ENA_REG_BAR), + pci_resource_len(pdev, ENA_REG_BAR)); + if (!ena_dev->reg_bar) { + dev_err(&pdev->dev, "failed to remap regs bar\n"); + rc = -EFAULT; + goto err_free_region; + } + + ena_dev->dmadev = &pdev->dev; + + rc = ena_device_init(ena_dev, pdev, &get_feat_ctx, &wd_state); + if (rc) { + dev_err(&pdev->dev, "ena device init failed\n"); + if (rc == -ETIME) + rc = -EPROBE_DEFER; + goto err_free_region; + } + + ena_set_push_mode(pdev, ena_dev, &get_feat_ctx); + + if (ena_dev->tx_mem_queue_type == ENA_ADMIN_PLACEMENT_POLICY_DEV) { + ena_dev->mem_bar = ioremap_wc(pci_resource_start(pdev, ENA_MEM_BAR), + pci_resource_len(pdev, ENA_MEM_BAR)); + if (!ena_dev->mem_bar) { + rc = -EFAULT; + goto err_device_destroy; + } + } + + /* initial Tx interrupt delay, Assumes 1 usec granularity. + * Updated during device initialization with the real granularity + */ + ena_dev->intr_moder_tx_interval = ENA_INTR_INITIAL_TX_INTERVAL_USECS; + io_queue_num = ena_calc_io_queue_num(pdev, ena_dev, &get_feat_ctx); + queue_size = ena_calc_queue_size(pdev, ena_dev, &tx_sgl_size, + &rx_sgl_size, &get_feat_ctx); + if ((queue_size <= 0) || (io_queue_num <= 0)) { + rc = -EFAULT; + goto err_device_destroy; + } + + dev_info(&pdev->dev, "creating %d io queues. queue size: %d\n", + io_queue_num, queue_size); + + /* dev zeroed in init_etherdev */ + netdev = alloc_etherdev_mq(sizeof(struct ena_adapter), io_queue_num); + if (!netdev) { + dev_err(&pdev->dev, "alloc_etherdev_mq failed\n"); + rc = -ENOMEM; + goto err_device_destroy; + } + + SET_NETDEV_DEV(netdev, &pdev->dev); + + adapter = netdev_priv(netdev); + pci_set_drvdata(pdev, adapter); + + adapter->ena_dev = ena_dev; + adapter->netdev = netdev; + adapter->pdev = pdev; + + ena_set_conf_feat_params(adapter, &get_feat_ctx); + + adapter->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE); + + adapter->tx_ring_size = queue_size; + adapter->rx_ring_size = queue_size; + + adapter->max_tx_sgl_size = tx_sgl_size; + adapter->max_rx_sgl_size = rx_sgl_size; + + adapter->num_queues = io_queue_num; + adapter->last_monitored_tx_qid = 0; + + adapter->rx_copybreak = ENA_DEFAULT_RX_COPYBREAK; + adapter->wd_state = wd_state; + + snprintf(adapter->name, ENA_NAME_MAX_LEN, "ena_%d", adapters_found); + + rc = ena_com_init_interrupt_moderation(adapter->ena_dev); + if (rc) { + dev_err(&pdev->dev, + "Failed to query interrupt moderation feature\n"); + goto err_netdev_destroy; + } + ena_init_io_rings(adapter); + + netdev->netdev_ops = &ena_netdev_ops; + netdev->watchdog_timeo = TX_TIMEOUT; + ena_set_ethtool_ops(netdev); + + netdev->priv_flags |= IFF_UNICAST_FLT; + + u64_stats_init(&adapter->syncp); + + rc = ena_enable_msix_and_set_admin_interrupts(adapter, io_queue_num); + if (rc) { + dev_err(&pdev->dev, + "Failed to enable and set the admin interrupts\n"); + goto err_worker_destroy; + } + rc = ena_rss_init_default(adapter); + if (rc && (rc != -EPERM)) { + dev_err(&pdev->dev, "Cannot init RSS rc: %d\n", rc); + goto err_free_msix; + } + + ena_config_debug_area(adapter); + + memcpy(adapter->netdev->perm_addr, adapter->mac_addr, netdev->addr_len); + + netif_carrier_off(netdev); + + rc = register_netdev(netdev); + if (rc) { + dev_err(&pdev->dev, "Cannot register net device\n"); + goto err_rss; + } + + INIT_WORK(&adapter->suspend_io_task, ena_device_io_suspend); + INIT_WORK(&adapter->resume_io_task, ena_device_io_resume); + INIT_WORK(&adapter->reset_task, ena_fw_reset_device); + + adapter->last_keep_alive_jiffies = jiffies; + + setup_timer(&adapter->timer_service, ena_timer_service, + (unsigned long)adapter); + mod_timer(&adapter->timer_service, round_jiffies(jiffies + HZ)); + + dev_info(&pdev->dev, "%s found at mem %lx, mac addr %pM Queues %d\n", + DEVICE_NAME, (long)pci_resource_start(pdev, 0), + netdev->dev_addr, io_queue_num); + + set_bit(ENA_FLAG_DEVICE_RUNNING, &adapter->flags); + + adapters_found++; + + return 0; + +err_rss: + ena_com_delete_debug_area(ena_dev); + ena_com_rss_destroy(ena_dev); +err_free_msix: + ena_com_dev_reset(ena_dev); + ena_free_mgmnt_irq(adapter); + ena_disable_msix(adapter); +err_worker_destroy: + ena_com_destroy_interrupt_moderation(ena_dev); + del_timer(&adapter->timer_service); + cancel_work_sync(&adapter->suspend_io_task); + cancel_work_sync(&adapter->resume_io_task); +err_netdev_destroy: + free_netdev(netdev); +err_device_destroy: + ena_com_delete_host_info(ena_dev); + ena_com_admin_destroy(ena_dev); +err_free_region: + ena_release_bars(ena_dev, pdev); +err_free_ena_dev: + vfree(ena_dev); +err_disable_device: + pci_disable_device(pdev); + return rc; +} + +/*****************************************************************************/ +static int ena_sriov_configure(struct pci_dev *dev, int numvfs) +{ + int rc; + + if (numvfs > 0) { + rc = pci_enable_sriov(dev, numvfs); + if (rc != 0) { + dev_err(&dev->dev, + "pci_enable_sriov failed to enable: %d vfs with the error: %d\n", + numvfs, rc); + return rc; + } + + return numvfs; + } + + if (numvfs == 0) { + pci_disable_sriov(dev); + return 0; + } + + return -EINVAL; +} + +/*****************************************************************************/ +/*****************************************************************************/ + +/* ena_remove - Device Removal Routine + * @pdev: PCI device information struct + * + * ena_remove is called by the PCI subsystem to alert the driver + * that it should release a PCI device. + */ +static void ena_remove(struct pci_dev *pdev) +{ + struct ena_adapter *adapter = pci_get_drvdata(pdev); + struct ena_com_dev *ena_dev; + struct net_device *netdev; + + if (!adapter) + /* This device didn't load properly and it's resources + * already released, nothing to do + */ + return; + + ena_dev = adapter->ena_dev; + netdev = adapter->netdev; + +#ifdef CONFIG_RFS_ACCEL + if ((adapter->msix_vecs >= 1) && (netdev->rx_cpu_rmap)) { + free_irq_cpu_rmap(netdev->rx_cpu_rmap); + netdev->rx_cpu_rmap = NULL; + } +#endif /* CONFIG_RFS_ACCEL */ + + unregister_netdev(netdev); + del_timer_sync(&adapter->timer_service); + + cancel_work_sync(&adapter->reset_task); + + cancel_work_sync(&adapter->suspend_io_task); + + cancel_work_sync(&adapter->resume_io_task); + + /* Reset the device only if the device is running. */ + if (test_bit(ENA_FLAG_DEVICE_RUNNING, &adapter->flags)) + ena_com_dev_reset(ena_dev); + + ena_free_mgmnt_irq(adapter); + + ena_disable_msix(adapter); + + free_netdev(netdev); + + ena_com_mmio_reg_read_request_destroy(ena_dev); + + ena_com_abort_admin_commands(ena_dev); + + ena_com_wait_for_abort_completion(ena_dev); + + ena_com_admin_destroy(ena_dev); + + ena_com_rss_destroy(ena_dev); + + ena_com_delete_debug_area(ena_dev); + + ena_com_delete_host_info(ena_dev); + + ena_release_bars(ena_dev, pdev); + + pci_disable_device(pdev); + + ena_com_destroy_interrupt_moderation(ena_dev); + + vfree(ena_dev); +} + +static struct pci_driver ena_pci_driver = { + .name = DRV_MODULE_NAME, + .id_table = ena_pci_tbl, + .probe = ena_probe, + .remove = ena_remove, + .sriov_configure = ena_sriov_configure, +}; + +static int __init ena_init(void) +{ + pr_info("%s", version); + + ena_wq = create_singlethread_workqueue(DRV_MODULE_NAME); + if (!ena_wq) { + pr_err("Failed to create workqueue\n"); + return -ENOMEM; + } + + return pci_register_driver(&ena_pci_driver); +} + +static void __exit ena_cleanup(void) +{ + pci_unregister_driver(&ena_pci_driver); + + if (ena_wq) { + destroy_workqueue(ena_wq); + ena_wq = NULL; + } +} + +/****************************************************************************** + ******************************** AENQ Handlers ******************************* + *****************************************************************************/ +/* ena_update_on_link_change: + * Notify the network interface about the change in link status + */ +static void ena_update_on_link_change(void *adapter_data, + struct ena_admin_aenq_entry *aenq_e) +{ + struct ena_adapter *adapter = (struct ena_adapter *)adapter_data; + struct ena_admin_aenq_link_change_desc *aenq_desc = + (struct ena_admin_aenq_link_change_desc *)aenq_e; + int status = aenq_desc->flags & + ENA_ADMIN_AENQ_LINK_CHANGE_DESC_LINK_STATUS_MASK; + + if (status) { + netdev_dbg(adapter->netdev, "%s\n", __func__); + set_bit(ENA_FLAG_LINK_UP, &adapter->flags); + netif_carrier_on(adapter->netdev); + } else { + clear_bit(ENA_FLAG_LINK_UP, &adapter->flags); + netif_carrier_off(adapter->netdev); + } +} + +static void ena_keep_alive_wd(void *adapter_data, + struct ena_admin_aenq_entry *aenq_e) +{ + struct ena_adapter *adapter = (struct ena_adapter *)adapter_data; + + adapter->last_keep_alive_jiffies = jiffies; +} + +static void ena_notification(void *adapter_data, + struct ena_admin_aenq_entry *aenq_e) +{ + struct ena_adapter *adapter = (struct ena_adapter *)adapter_data; + + WARN(aenq_e->aenq_common_desc.group != ENA_ADMIN_NOTIFICATION, + "Invalid group(%x) expected %x\n", + aenq_e->aenq_common_desc.group, + ENA_ADMIN_NOTIFICATION); + + switch (aenq_e->aenq_common_desc.syndrom) { + case ENA_ADMIN_SUSPEND: + /* Suspend just the IO queues. + * We deliberately don't suspend admin so the timer and + * the keep_alive events should remain. + */ + queue_work(ena_wq, &adapter->suspend_io_task); + break; + case ENA_ADMIN_RESUME: + queue_work(ena_wq, &adapter->resume_io_task); + break; + default: + netif_err(adapter, drv, adapter->netdev, + "Invalid aenq notification link state %d\n", + aenq_e->aenq_common_desc.syndrom); + } +} + +/* This handler will called for unknown event group or unimplemented handlers*/ +static void unimplemented_aenq_handler(void *data, + struct ena_admin_aenq_entry *aenq_e) +{ + struct ena_adapter *adapter = (struct ena_adapter *)data; + + netif_err(adapter, drv, adapter->netdev, + "Unknown event was received or event with unimplemented handler\n"); +} + +static struct ena_aenq_handlers aenq_handlers = { + .handlers = { + [ENA_ADMIN_LINK_CHANGE] = ena_update_on_link_change, + [ENA_ADMIN_NOTIFICATION] = ena_notification, + [ENA_ADMIN_KEEP_ALIVE] = ena_keep_alive_wd, + }, + .unimplemented_handler = unimplemented_aenq_handler +}; + +module_init(ena_init); +module_exit(ena_cleanup); --- linux-4.8.0.orig/drivers/net/ethernet/amazon/ena/ena_netdev.h +++ linux-4.8.0/drivers/net/ethernet/amazon/ena/ena_netdev.h @@ -0,0 +1,325 @@ +/* + * Copyright 2015 Amazon.com, Inc. or its affiliates. + * + * This software is available to you under a choice of one of two + * licenses. You may choose to be licensed under the terms of the GNU + * General Public License (GPL) Version 2, available from the file + * COPYING in the main directory of this source tree, or the + * BSD license below: + * + * Redistribution and use in source and binary forms, with or + * without modification, are permitted provided that the following + * conditions are met: + * + * - Redistributions of source code must retain the above + * copyright notice, this list of conditions and the following + * disclaimer. + * + * - Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + +#ifndef ENA_H +#define ENA_H + +#include +#include +#include +#include +#include +#include + +#include "ena_com.h" +#include "ena_eth_com.h" + +#define DRV_MODULE_VER_MAJOR 1 +#define DRV_MODULE_VER_MINOR 1 +#define DRV_MODULE_VER_SUBMINOR 2 + +#define DRV_MODULE_NAME "ena" +#ifndef DRV_MODULE_VERSION +#define DRV_MODULE_VERSION \ + __stringify(DRV_MODULE_VER_MAJOR) "." \ + __stringify(DRV_MODULE_VER_MINOR) "." \ + __stringify(DRV_MODULE_VER_SUBMINOR) +#endif + +#define DEVICE_NAME "Elastic Network Adapter (ENA)" + +/* 1 for AENQ + ADMIN */ +#define ENA_MAX_MSIX_VEC(io_queues) (1 + (io_queues)) + +#define ENA_REG_BAR 0 +#define ENA_MEM_BAR 2 +#define ENA_BAR_MASK (BIT(ENA_REG_BAR) | BIT(ENA_MEM_BAR)) + +#define ENA_DEFAULT_RING_SIZE (1024) + +#define ENA_TX_WAKEUP_THRESH (MAX_SKB_FRAGS + 2) +#define ENA_DEFAULT_RX_COPYBREAK (128 - NET_IP_ALIGN) + +/* limit the buffer size to 600 bytes to handle MTU changes from very + * small to very large, in which case the number of buffers per packet + * could exceed ENA_PKT_MAX_BUFS + */ +#define ENA_DEFAULT_MIN_RX_BUFF_ALLOC_SIZE 600 + +#define ENA_MIN_MTU 128 + +#define ENA_NAME_MAX_LEN 20 +#define ENA_IRQNAME_SIZE 40 + +#define ENA_PKT_MAX_BUFS 19 + +#define ENA_RX_RSS_TABLE_LOG_SIZE 7 +#define ENA_RX_RSS_TABLE_SIZE (1 << ENA_RX_RSS_TABLE_LOG_SIZE) + +#define ENA_HASH_KEY_SIZE 40 + +/* The number of tx packet completions that will be handled each NAPI poll + * cycle is ring_size / ENA_TX_POLL_BUDGET_DIVIDER. + */ +#define ENA_TX_POLL_BUDGET_DIVIDER 4 + +/* Refill Rx queue when number of available descriptors is below + * QUEUE_SIZE / ENA_RX_REFILL_THRESH_DIVIDER + */ +#define ENA_RX_REFILL_THRESH_DIVIDER 8 + +/* Number of queues to check for missing queues per timer service */ +#define ENA_MONITORED_TX_QUEUES 4 +/* Max timeout packets before device reset */ +#define MAX_NUM_OF_TIMEOUTED_PACKETS 128 + +#define ENA_TX_RING_IDX_NEXT(idx, ring_size) (((idx) + 1) & ((ring_size) - 1)) + +#define ENA_RX_RING_IDX_NEXT(idx, ring_size) (((idx) + 1) & ((ring_size) - 1)) +#define ENA_RX_RING_IDX_ADD(idx, n, ring_size) \ + (((idx) + (n)) & ((ring_size) - 1)) + +#define ENA_IO_TXQ_IDX(q) (2 * (q)) +#define ENA_IO_RXQ_IDX(q) (2 * (q) + 1) + +#define ENA_MGMNT_IRQ_IDX 0 +#define ENA_IO_IRQ_FIRST_IDX 1 +#define ENA_IO_IRQ_IDX(q) (ENA_IO_IRQ_FIRST_IDX + (q)) + +/* ENA device should send keep alive msg every 1 sec. + * We wait for 6 sec just to be on the safe side. + */ +#define ENA_DEVICE_KALIVE_TIMEOUT (6 * HZ) + +#define ENA_MMIO_DISABLE_REG_READ BIT(0) + +struct ena_irq { + irq_handler_t handler; + void *data; + int cpu; + u32 vector; + cpumask_t affinity_hint_mask; + char name[ENA_IRQNAME_SIZE]; +}; + +struct ena_napi { + struct napi_struct napi ____cacheline_aligned; + struct ena_ring *tx_ring; + struct ena_ring *rx_ring; + u32 qid; +}; + +struct ena_tx_buffer { + struct sk_buff *skb; + /* num of ena desc for this specific skb + * (includes data desc and metadata desc) + */ + u32 tx_descs; + /* num of buffers used by this skb */ + u32 num_of_bufs; + /* Save the last jiffies to detect missing tx packets */ + unsigned long last_jiffies; + struct ena_com_buf bufs[ENA_PKT_MAX_BUFS]; +} ____cacheline_aligned; + +struct ena_rx_buffer { + struct sk_buff *skb; + struct page *page; + u32 page_offset; + struct ena_com_buf ena_buf; +} ____cacheline_aligned; + +struct ena_stats_tx { + u64 cnt; + u64 bytes; + u64 queue_stop; + u64 prepare_ctx_err; + u64 queue_wakeup; + u64 dma_mapping_err; + u64 linearize; + u64 linearize_failed; + u64 napi_comp; + u64 tx_poll; + u64 doorbells; + u64 missing_tx_comp; + u64 bad_req_id; +}; + +struct ena_stats_rx { + u64 cnt; + u64 bytes; + u64 refil_partial; + u64 bad_csum; + u64 page_alloc_fail; + u64 skb_alloc_fail; + u64 dma_mapping_err; + u64 bad_desc_num; + u64 rx_copybreak_pkt; +}; + +struct ena_ring { + /* Holds the empty requests for TX out of order completions */ + u16 *free_tx_ids; + union { + struct ena_tx_buffer *tx_buffer_info; + struct ena_rx_buffer *rx_buffer_info; + }; + + /* cache ptr to avoid using the adapter */ + struct device *dev; + struct pci_dev *pdev; + struct napi_struct *napi; + struct net_device *netdev; + struct ena_com_dev *ena_dev; + struct ena_adapter *adapter; + struct ena_com_io_cq *ena_com_io_cq; + struct ena_com_io_sq *ena_com_io_sq; + + u16 next_to_use; + u16 next_to_clean; + u16 rx_copybreak; + u16 qid; + u16 mtu; + u16 sgl_size; + + /* The maximum header length the device can handle */ + u8 tx_max_header_size; + + /* cpu for TPH */ + int cpu; + /* number of tx/rx_buffer_info's entries */ + int ring_size; + + enum ena_admin_placement_policy_type tx_mem_queue_type; + + struct ena_com_rx_buf_info ena_bufs[ENA_PKT_MAX_BUFS]; + u32 smoothed_interval; + u32 per_napi_packets; + u32 per_napi_bytes; + enum ena_intr_moder_level moder_tbl_idx; + struct u64_stats_sync syncp; + union { + struct ena_stats_tx tx_stats; + struct ena_stats_rx rx_stats; + }; +} ____cacheline_aligned; + +struct ena_stats_dev { + u64 tx_timeout; + u64 io_suspend; + u64 io_resume; + u64 wd_expired; + u64 interface_up; + u64 interface_down; + u64 admin_q_pause; + u64 rx_drops; +}; + +enum ena_flags_t { + ENA_FLAG_DEVICE_RUNNING, + ENA_FLAG_DEV_UP, + ENA_FLAG_LINK_UP, + ENA_FLAG_MSIX_ENABLED, + ENA_FLAG_TRIGGER_RESET +}; + +/* adapter specific private data structure */ +struct ena_adapter { + struct ena_com_dev *ena_dev; + /* OS defined structs */ + struct net_device *netdev; + struct pci_dev *pdev; + + /* rx packets that shorter that this len will be copied to the skb + * header + */ + u32 rx_copybreak; + u32 max_mtu; + + int num_queues; + + struct msix_entry *msix_entries; + int msix_vecs; + + u32 tx_usecs, rx_usecs; /* interrupt moderation */ + u32 tx_frames, rx_frames; /* interrupt moderation */ + + u32 tx_ring_size; + u32 rx_ring_size; + + u32 msg_enable; + + u16 max_tx_sgl_size; + u16 max_rx_sgl_size; + + u8 mac_addr[ETH_ALEN]; + + char name[ENA_NAME_MAX_LEN]; + + unsigned long flags; + /* TX */ + struct ena_ring tx_ring[ENA_MAX_NUM_IO_QUEUES] + ____cacheline_aligned_in_smp; + + /* RX */ + struct ena_ring rx_ring[ENA_MAX_NUM_IO_QUEUES] + ____cacheline_aligned_in_smp; + + struct ena_napi ena_napi[ENA_MAX_NUM_IO_QUEUES]; + + struct ena_irq irq_tbl[ENA_MAX_MSIX_VEC(ENA_MAX_NUM_IO_QUEUES)]; + + /* timer service */ + struct work_struct reset_task; + struct work_struct suspend_io_task; + struct work_struct resume_io_task; + struct timer_list timer_service; + + bool wd_state; + unsigned long last_keep_alive_jiffies; + + struct u64_stats_sync syncp; + struct ena_stats_dev dev_stats; + + /* last queue index that was checked for uncompleted tx packets */ + u32 last_monitored_tx_qid; +}; + +void ena_set_ethtool_ops(struct net_device *netdev); + +void ena_dump_stats_to_dmesg(struct ena_adapter *adapter); + +void ena_dump_stats_to_buf(struct ena_adapter *adapter, u8 *buf); + +int ena_get_sset_count(struct net_device *netdev, int sset); + +#endif /* !(ENA_H) */ --- linux-4.8.0.orig/drivers/net/ethernet/amazon/ena/ena_pci_id_tbl.h +++ linux-4.8.0/drivers/net/ethernet/amazon/ena/ena_pci_id_tbl.h @@ -0,0 +1,67 @@ +/* + * Copyright 2015 Amazon.com, Inc. or its affiliates. + * + * This software is available to you under a choice of one of two + * licenses. You may choose to be licensed under the terms of the GNU + * General Public License (GPL) Version 2, available from the file + * COPYING in the main directory of this source tree, or the + * BSD license below: + * + * Redistribution and use in source and binary forms, with or + * without modification, are permitted provided that the following + * conditions are met: + * + * - Redistributions of source code must retain the above + * copyright notice, this list of conditions and the following + * disclaimer. + * + * - Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + +#ifndef ENA_PCI_ID_TBL_H_ +#define ENA_PCI_ID_TBL_H_ + +#ifndef PCI_VENDOR_ID_AMAZON +#define PCI_VENDOR_ID_AMAZON 0x1d0f +#endif + +#ifndef PCI_DEV_ID_ENA_PF +#define PCI_DEV_ID_ENA_PF 0x0ec2 +#endif + +#ifndef PCI_DEV_ID_ENA_LLQ_PF +#define PCI_DEV_ID_ENA_LLQ_PF 0x1ec2 +#endif + +#ifndef PCI_DEV_ID_ENA_VF +#define PCI_DEV_ID_ENA_VF 0xec20 +#endif + +#ifndef PCI_DEV_ID_ENA_LLQ_VF +#define PCI_DEV_ID_ENA_LLQ_VF 0xec21 +#endif + +#define ENA_PCI_ID_TABLE_ENTRY(devid) \ + {PCI_DEVICE(PCI_VENDOR_ID_AMAZON, devid)}, + +static const struct pci_device_id ena_pci_tbl[] = { + ENA_PCI_ID_TABLE_ENTRY(PCI_DEV_ID_ENA_PF) + ENA_PCI_ID_TABLE_ENTRY(PCI_DEV_ID_ENA_LLQ_PF) + ENA_PCI_ID_TABLE_ENTRY(PCI_DEV_ID_ENA_VF) + ENA_PCI_ID_TABLE_ENTRY(PCI_DEV_ID_ENA_LLQ_VF) + { } +}; + +#endif /* ENA_PCI_ID_TBL_H_ */ --- linux-4.8.0.orig/drivers/net/ethernet/amazon/ena/ena_regs_defs.h +++ linux-4.8.0/drivers/net/ethernet/amazon/ena/ena_regs_defs.h @@ -0,0 +1,133 @@ +/* + * Copyright 2015 - 2016 Amazon.com, Inc. or its affiliates. + * + * This software is available to you under a choice of one of two + * licenses. You may choose to be licensed under the terms of the GNU + * General Public License (GPL) Version 2, available from the file + * COPYING in the main directory of this source tree, or the + * BSD license below: + * + * Redistribution and use in source and binary forms, with or + * without modification, are permitted provided that the following + * conditions are met: + * + * - Redistributions of source code must retain the above + * copyright notice, this list of conditions and the following + * disclaimer. + * + * - Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ +#ifndef _ENA_REGS_H_ +#define _ENA_REGS_H_ + +/* ena_registers offsets */ +#define ENA_REGS_VERSION_OFF 0x0 +#define ENA_REGS_CONTROLLER_VERSION_OFF 0x4 +#define ENA_REGS_CAPS_OFF 0x8 +#define ENA_REGS_CAPS_EXT_OFF 0xc +#define ENA_REGS_AQ_BASE_LO_OFF 0x10 +#define ENA_REGS_AQ_BASE_HI_OFF 0x14 +#define ENA_REGS_AQ_CAPS_OFF 0x18 +#define ENA_REGS_ACQ_BASE_LO_OFF 0x20 +#define ENA_REGS_ACQ_BASE_HI_OFF 0x24 +#define ENA_REGS_ACQ_CAPS_OFF 0x28 +#define ENA_REGS_AQ_DB_OFF 0x2c +#define ENA_REGS_ACQ_TAIL_OFF 0x30 +#define ENA_REGS_AENQ_CAPS_OFF 0x34 +#define ENA_REGS_AENQ_BASE_LO_OFF 0x38 +#define ENA_REGS_AENQ_BASE_HI_OFF 0x3c +#define ENA_REGS_AENQ_HEAD_DB_OFF 0x40 +#define ENA_REGS_AENQ_TAIL_OFF 0x44 +#define ENA_REGS_INTR_MASK_OFF 0x4c +#define ENA_REGS_DEV_CTL_OFF 0x54 +#define ENA_REGS_DEV_STS_OFF 0x58 +#define ENA_REGS_MMIO_REG_READ_OFF 0x5c +#define ENA_REGS_MMIO_RESP_LO_OFF 0x60 +#define ENA_REGS_MMIO_RESP_HI_OFF 0x64 +#define ENA_REGS_RSS_IND_ENTRY_UPDATE_OFF 0x68 + +/* version register */ +#define ENA_REGS_VERSION_MINOR_VERSION_MASK 0xff +#define ENA_REGS_VERSION_MAJOR_VERSION_SHIFT 8 +#define ENA_REGS_VERSION_MAJOR_VERSION_MASK 0xff00 + +/* controller_version register */ +#define ENA_REGS_CONTROLLER_VERSION_SUBMINOR_VERSION_MASK 0xff +#define ENA_REGS_CONTROLLER_VERSION_MINOR_VERSION_SHIFT 8 +#define ENA_REGS_CONTROLLER_VERSION_MINOR_VERSION_MASK 0xff00 +#define ENA_REGS_CONTROLLER_VERSION_MAJOR_VERSION_SHIFT 16 +#define ENA_REGS_CONTROLLER_VERSION_MAJOR_VERSION_MASK 0xff0000 +#define ENA_REGS_CONTROLLER_VERSION_IMPL_ID_SHIFT 24 +#define ENA_REGS_CONTROLLER_VERSION_IMPL_ID_MASK 0xff000000 + +/* caps register */ +#define ENA_REGS_CAPS_CONTIGUOUS_QUEUE_REQUIRED_MASK 0x1 +#define ENA_REGS_CAPS_RESET_TIMEOUT_SHIFT 1 +#define ENA_REGS_CAPS_RESET_TIMEOUT_MASK 0x3e +#define ENA_REGS_CAPS_DMA_ADDR_WIDTH_SHIFT 8 +#define ENA_REGS_CAPS_DMA_ADDR_WIDTH_MASK 0xff00 + +/* aq_caps register */ +#define ENA_REGS_AQ_CAPS_AQ_DEPTH_MASK 0xffff +#define ENA_REGS_AQ_CAPS_AQ_ENTRY_SIZE_SHIFT 16 +#define ENA_REGS_AQ_CAPS_AQ_ENTRY_SIZE_MASK 0xffff0000 + +/* acq_caps register */ +#define ENA_REGS_ACQ_CAPS_ACQ_DEPTH_MASK 0xffff +#define ENA_REGS_ACQ_CAPS_ACQ_ENTRY_SIZE_SHIFT 16 +#define ENA_REGS_ACQ_CAPS_ACQ_ENTRY_SIZE_MASK 0xffff0000 + +/* aenq_caps register */ +#define ENA_REGS_AENQ_CAPS_AENQ_DEPTH_MASK 0xffff +#define ENA_REGS_AENQ_CAPS_AENQ_ENTRY_SIZE_SHIFT 16 +#define ENA_REGS_AENQ_CAPS_AENQ_ENTRY_SIZE_MASK 0xffff0000 + +/* dev_ctl register */ +#define ENA_REGS_DEV_CTL_DEV_RESET_MASK 0x1 +#define ENA_REGS_DEV_CTL_AQ_RESTART_SHIFT 1 +#define ENA_REGS_DEV_CTL_AQ_RESTART_MASK 0x2 +#define ENA_REGS_DEV_CTL_QUIESCENT_SHIFT 2 +#define ENA_REGS_DEV_CTL_QUIESCENT_MASK 0x4 +#define ENA_REGS_DEV_CTL_IO_RESUME_SHIFT 3 +#define ENA_REGS_DEV_CTL_IO_RESUME_MASK 0x8 + +/* dev_sts register */ +#define ENA_REGS_DEV_STS_READY_MASK 0x1 +#define ENA_REGS_DEV_STS_AQ_RESTART_IN_PROGRESS_SHIFT 1 +#define ENA_REGS_DEV_STS_AQ_RESTART_IN_PROGRESS_MASK 0x2 +#define ENA_REGS_DEV_STS_AQ_RESTART_FINISHED_SHIFT 2 +#define ENA_REGS_DEV_STS_AQ_RESTART_FINISHED_MASK 0x4 +#define ENA_REGS_DEV_STS_RESET_IN_PROGRESS_SHIFT 3 +#define ENA_REGS_DEV_STS_RESET_IN_PROGRESS_MASK 0x8 +#define ENA_REGS_DEV_STS_RESET_FINISHED_SHIFT 4 +#define ENA_REGS_DEV_STS_RESET_FINISHED_MASK 0x10 +#define ENA_REGS_DEV_STS_FATAL_ERROR_SHIFT 5 +#define ENA_REGS_DEV_STS_FATAL_ERROR_MASK 0x20 +#define ENA_REGS_DEV_STS_QUIESCENT_STATE_IN_PROGRESS_SHIFT 6 +#define ENA_REGS_DEV_STS_QUIESCENT_STATE_IN_PROGRESS_MASK 0x40 +#define ENA_REGS_DEV_STS_QUIESCENT_STATE_ACHIEVED_SHIFT 7 +#define ENA_REGS_DEV_STS_QUIESCENT_STATE_ACHIEVED_MASK 0x80 + +/* mmio_reg_read register */ +#define ENA_REGS_MMIO_REG_READ_REQ_ID_MASK 0xffff +#define ENA_REGS_MMIO_REG_READ_REG_OFF_SHIFT 16 +#define ENA_REGS_MMIO_REG_READ_REG_OFF_MASK 0xffff0000 + +/* rss_ind_entry_update register */ +#define ENA_REGS_RSS_IND_ENTRY_UPDATE_INDEX_MASK 0xffff +#define ENA_REGS_RSS_IND_ENTRY_UPDATE_CQ_IDX_SHIFT 16 +#define ENA_REGS_RSS_IND_ENTRY_UPDATE_CQ_IDX_MASK 0xffff0000 + +#endif /*_ENA_REGS_H_ */ --- linux-4.8.0.orig/drivers/net/ethernet/broadcom/bgmac.c +++ linux-4.8.0/drivers/net/ethernet/broadcom/bgmac.c @@ -307,6 +307,10 @@ u32 ctl; ctl = bgmac_read(bgmac, ring->mmio_base + BGMAC_DMA_RX_CTL); + + /* preserve ONLY bits 16-17 from current hardware value */ + ctl &= BGMAC_DMA_RX_ADDREXT_MASK; + if (bgmac->feature_flags & BGMAC_FEAT_RX_MASK_SETUP) { ctl &= ~BGMAC_DMA_RX_BL_MASK; ctl |= BGMAC_DMA_RX_BL_128 << BGMAC_DMA_RX_BL_SHIFT; @@ -317,7 +321,6 @@ ctl &= ~BGMAC_DMA_RX_PT_MASK; ctl |= BGMAC_DMA_RX_PT_1 << BGMAC_DMA_RX_PT_SHIFT; } - ctl &= BGMAC_DMA_RX_ADDREXT_MASK; ctl |= BGMAC_DMA_RX_ENABLE; ctl |= BGMAC_DMA_RX_PARITY_DISABLE; ctl |= BGMAC_DMA_RX_OVERFLOW_CONT; --- linux-4.8.0.orig/drivers/net/ethernet/broadcom/bnx2.c +++ linux-4.8.0/drivers/net/ethernet/broadcom/bnx2.c @@ -49,6 +49,7 @@ #include #include #include +#include #if defined(CONFIG_CNIC) || defined(CONFIG_CNIC_MODULE) #define BCM_CNIC 1 @@ -4759,15 +4760,16 @@ BNX2_WR(bp, BNX2_PCI_GRC_WINDOW3_ADDR, BNX2_MSIX_PBA_ADDR); } -static int -bnx2_reset_chip(struct bnx2 *bp, u32 reset_code) +static void +bnx2_wait_dma_complete(struct bnx2 *bp) { u32 val; - int i, rc = 0; - u8 old_port; + int i; - /* Wait for the current PCI transaction to complete before - * issuing a reset. */ + /* + * Wait for the current PCI transaction to complete before + * issuing a reset. + */ if ((BNX2_CHIP(bp) == BNX2_CHIP_5706) || (BNX2_CHIP(bp) == BNX2_CHIP_5708)) { BNX2_WR(bp, BNX2_MISC_ENABLE_CLR_BITS, @@ -4791,6 +4793,21 @@ } } + return; +} + + +static int +bnx2_reset_chip(struct bnx2 *bp, u32 reset_code) +{ + u32 val; + int i, rc = 0; + u8 old_port; + + /* Wait for the current PCI transaction to complete before + * issuing a reset. */ + bnx2_wait_dma_complete(bp); + /* Wait for the firmware to tell us it is ok to issue a reset. */ bnx2_fw_sync(bp, BNX2_DRV_MSG_DATA_WAIT0 | reset_code, 1, 1); @@ -6356,6 +6373,10 @@ struct bnx2 *bp = netdev_priv(dev); int rc; + rc = bnx2_request_firmware(bp); + if (rc < 0) + goto out; + netif_carrier_off(dev); bnx2_disable_int(bp); @@ -6424,6 +6445,7 @@ bnx2_free_irq(bp); bnx2_free_mem(bp); bnx2_del_napi(bp); + bnx2_release_firmware(bp); goto out; } @@ -8570,12 +8592,15 @@ pci_set_drvdata(pdev, dev); - rc = bnx2_request_firmware(bp); - if (rc < 0) - goto error; - + /* + * In-flight DMA from 1st kernel could continue going in kdump kernel. + * New io-page table has been created before bnx2 does reset at open stage. + * We have to wait for the in-flight DMA to complete to avoid it look up + * into the newly created io-page table. + */ + if (is_kdump_kernel()) + bnx2_wait_dma_complete(bp); - bnx2_reset_chip(bp, BNX2_DRV_MSG_CODE_RESET); memcpy(dev->dev_addr, bp->mac_addr, ETH_ALEN); dev->hw_features = NETIF_F_IP_CSUM | NETIF_F_SG | @@ -8608,7 +8633,6 @@ return 0; error: - bnx2_release_firmware(bp); pci_iounmap(pdev, bp->regview); pci_release_regions(pdev); pci_disable_device(pdev); --- linux-4.8.0.orig/drivers/net/ethernet/broadcom/genet/bcmgenet.c +++ linux-4.8.0/drivers/net/ethernet/broadcom/genet/bcmgenet.c @@ -1172,6 +1172,7 @@ struct bcmgenet_tx_ring *ring) { struct bcmgenet_priv *priv = netdev_priv(dev); + struct device *kdev = &priv->pdev->dev; struct enet_cb *tx_cb_ptr; struct netdev_queue *txq; unsigned int pkts_compl = 0; @@ -1199,13 +1200,13 @@ if (tx_cb_ptr->skb) { pkts_compl++; bytes_compl += GENET_CB(tx_cb_ptr->skb)->bytes_sent; - dma_unmap_single(&dev->dev, + dma_unmap_single(kdev, dma_unmap_addr(tx_cb_ptr, dma_addr), dma_unmap_len(tx_cb_ptr, dma_len), DMA_TO_DEVICE); bcmgenet_free_cb(tx_cb_ptr); } else if (dma_unmap_addr(tx_cb_ptr, dma_addr)) { - dma_unmap_page(&dev->dev, + dma_unmap_page(kdev, dma_unmap_addr(tx_cb_ptr, dma_addr), dma_unmap_len(tx_cb_ptr, dma_len), DMA_TO_DEVICE); @@ -1775,6 +1776,7 @@ static void bcmgenet_free_rx_buffers(struct bcmgenet_priv *priv) { + struct device *kdev = &priv->pdev->dev; struct enet_cb *cb; int i; @@ -1782,7 +1784,7 @@ cb = &priv->rx_cbs[i]; if (dma_unmap_addr(cb, dma_addr)) { - dma_unmap_single(&priv->dev->dev, + dma_unmap_single(kdev, dma_unmap_addr(cb, dma_addr), priv->rx_buf_len, DMA_FROM_DEVICE); dma_unmap_addr_set(cb, dma_addr, 0); --- linux-4.8.0.orig/drivers/net/ethernet/cadence/macb.c +++ linux-4.8.0/drivers/net/ethernet/cadence/macb.c @@ -959,6 +959,7 @@ addr += bp->rx_buffer_size; } bp->rx_ring[RX_RING_SIZE - 1].addr |= MACB_BIT(RX_WRAP); + bp->rx_tail = 0; } static int macb_rx(struct macb *bp, int budget) @@ -1597,8 +1598,6 @@ bp->queues[0].tx_head = 0; bp->queues[0].tx_tail = 0; bp->queues[0].tx_ring[TX_RING_SIZE - 1].ctrl |= MACB_BIT(TX_WRAP); - - bp->rx_tail = 0; } static void macb_reset_hw(struct macb *bp) --- linux-4.8.0.orig/drivers/net/ethernet/cavium/thunder/thunder_bgx.c +++ linux-4.8.0/drivers/net/ethernet/cavium/thunder/thunder_bgx.c @@ -436,12 +436,14 @@ bgx_reg_modify(bgx, lmacid, BGX_SPUX_CONTROL1, SPU_CTL_LOW_POWER); /* Set interleaved running disparity for RXAUI */ - if (bgx->lmac_type != BGX_MODE_RXAUI) - bgx_reg_modify(bgx, lmacid, - BGX_SPUX_MISC_CONTROL, SPU_MISC_CTL_RX_DIS); - else + if (bgx->lmac_type == BGX_MODE_RXAUI) bgx_reg_modify(bgx, lmacid, BGX_SPUX_MISC_CONTROL, - SPU_MISC_CTL_RX_DIS | SPU_MISC_CTL_INTLV_RDISP); + SPU_MISC_CTL_INTLV_RDISP); + + /* Clear receive packet disable */ + cfg = bgx_reg_read(bgx, lmacid, BGX_SPUX_MISC_CONTROL); + cfg &= ~SPU_MISC_CTL_RX_DIS; + bgx_reg_write(bgx, lmacid, BGX_SPUX_MISC_CONTROL, cfg); /* clear all interrupts */ cfg = bgx_reg_read(bgx, lmacid, BGX_SMUX_RX_INT); @@ -514,7 +516,6 @@ int lmac_type = bgx->lmac_type; u64 cfg; - bgx_reg_modify(bgx, lmacid, BGX_SPUX_MISC_CONTROL, SPU_MISC_CTL_RX_DIS); if (bgx->use_training) { cfg = bgx_reg_read(bgx, lmacid, BGX_SPUX_INT); if (!(cfg & (1ull << 13))) { @@ -584,11 +585,6 @@ return -1; } - /* Clear receive packet disable */ - cfg = bgx_reg_read(bgx, lmacid, BGX_SPUX_MISC_CONTROL); - cfg &= ~SPU_MISC_CTL_RX_DIS; - bgx_reg_write(bgx, lmacid, BGX_SPUX_MISC_CONTROL, cfg); - /* Check for MAC RX faults */ cfg = bgx_reg_read(bgx, lmacid, BGX_SMUX_RX_CTL); /* 0 - Link is okay, 1 - Local fault, 2 - Remote fault */ --- linux-4.8.0.orig/drivers/net/ethernet/freescale/fec_main.c +++ linux-4.8.0/drivers/net/ethernet/freescale/fec_main.c @@ -913,13 +913,11 @@ * enet-mac reset will reset mac address registers too, * so need to reconfigure it. */ - if (fep->quirks & FEC_QUIRK_ENET_MAC) { - memcpy(&temp_mac, ndev->dev_addr, ETH_ALEN); - writel((__force u32)cpu_to_be32(temp_mac[0]), - fep->hwp + FEC_ADDR_LOW); - writel((__force u32)cpu_to_be32(temp_mac[1]), - fep->hwp + FEC_ADDR_HIGH); - } + memcpy(&temp_mac, ndev->dev_addr, ETH_ALEN); + writel((__force u32)cpu_to_be32(temp_mac[0]), + fep->hwp + FEC_ADDR_LOW); + writel((__force u32)cpu_to_be32(temp_mac[1]), + fep->hwp + FEC_ADDR_HIGH); /* Clear any outstanding interrupt. */ writel(0xffffffff, fep->hwp + FEC_IEVENT); @@ -1432,14 +1430,14 @@ skb_put(skb, pkt_len - 4); data = skb->data; + if (!is_copybreak && need_swap) + swap_buffer(data, pkt_len); + #if !defined(CONFIG_M5272) if (fep->quirks & FEC_QUIRK_HAS_RACC) data = skb_pull_inline(skb, 2); #endif - if (!is_copybreak && need_swap) - swap_buffer(data, pkt_len); - /* Extract the enhanced buffer descriptor */ ebdp = NULL; if (fep->bufdesc_ex) --- linux-4.8.0.orig/drivers/net/ethernet/ibm/ibmveth.c +++ linux-4.8.0/drivers/net/ethernet/ibm/ibmveth.c @@ -58,7 +58,7 @@ static const char ibmveth_driver_name[] = "ibmveth"; static const char ibmveth_driver_string[] = "IBM Power Virtual Ethernet Driver"; -#define ibmveth_driver_version "1.05" +#define ibmveth_driver_version "1.06" MODULE_AUTHOR("Santiago Leon "); MODULE_DESCRIPTION("IBM Power Virtual Ethernet Driver"); @@ -137,6 +137,11 @@ return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_OFF_MASK; } +static inline int ibmveth_rxq_large_packet(struct ibmveth_adapter *adapter) +{ + return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_LRG_PKT; +} + static inline int ibmveth_rxq_frame_length(struct ibmveth_adapter *adapter) { return be32_to_cpu(adapter->rx_queue.queue_addr[adapter->rx_queue.index].length); @@ -1174,6 +1179,53 @@ goto retry_bounce; } +static void ibmveth_rx_mss_helper(struct sk_buff *skb, u16 mss, int lrg_pkt) +{ + struct tcphdr *tcph; + int offset = 0; + int hdr_len; + + /* only TCP packets will be aggregated */ + if (skb->protocol == htons(ETH_P_IP)) { + struct iphdr *iph = (struct iphdr *)skb->data; + + if (iph->protocol == IPPROTO_TCP) { + offset = iph->ihl * 4; + skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4; + } else { + return; + } + } else if (skb->protocol == htons(ETH_P_IPV6)) { + struct ipv6hdr *iph6 = (struct ipv6hdr *)skb->data; + + if (iph6->nexthdr == IPPROTO_TCP) { + offset = sizeof(struct ipv6hdr); + skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6; + } else { + return; + } + } else { + return; + } + /* if mss is not set through Large Packet bit/mss in rx buffer, + * expect that the mss will be written to the tcp header checksum. + */ + tcph = (struct tcphdr *)(skb->data + offset); + if (lrg_pkt) { + skb_shinfo(skb)->gso_size = mss; + } else if (offset) { + skb_shinfo(skb)->gso_size = ntohs(tcph->check); + tcph->check = 0; + } + + if (skb_shinfo(skb)->gso_size) { + hdr_len = offset + tcph->doff * 4; + skb_shinfo(skb)->gso_segs = + DIV_ROUND_UP(skb->len - hdr_len, + skb_shinfo(skb)->gso_size); + } +} + static int ibmveth_poll(struct napi_struct *napi, int budget) { struct ibmveth_adapter *adapter = @@ -1182,6 +1234,7 @@ int frames_processed = 0; unsigned long lpar_rc; struct iphdr *iph; + u16 mss = 0; restart_poll: while (frames_processed < budget) { @@ -1199,9 +1252,21 @@ int length = ibmveth_rxq_frame_length(adapter); int offset = ibmveth_rxq_frame_offset(adapter); int csum_good = ibmveth_rxq_csum_good(adapter); + int lrg_pkt = ibmveth_rxq_large_packet(adapter); skb = ibmveth_rxq_get_buffer(adapter); + /* if the large packet bit is set in the rx queue + * descriptor, the mss will be written by PHYP eight + * bytes from the start of the rx buffer, which is + * skb->data at this stage + */ + if (lrg_pkt) { + __be64 *rxmss = (__be64 *)(skb->data + 8); + + mss = (u16)be64_to_cpu(*rxmss); + } + new_skb = NULL; if (length < rx_copybreak) new_skb = netdev_alloc_skb(netdev, length); @@ -1235,11 +1300,15 @@ if (iph->check == 0xffff) { iph->check = 0; iph->check = ip_fast_csum((unsigned char *)iph, iph->ihl); - adapter->rx_large_packets++; } } } + if (length > netdev->mtu + ETH_HLEN) { + ibmveth_rx_mss_helper(skb, mss, lrg_pkt); + adapter->rx_large_packets++; + } + napi_gro_receive(napi, skb); /* send it up */ netdev->stats.rx_packets++; --- linux-4.8.0.orig/drivers/net/ethernet/ibm/ibmveth.h +++ linux-4.8.0/drivers/net/ethernet/ibm/ibmveth.h @@ -209,6 +209,7 @@ #define IBMVETH_RXQ_TOGGLE 0x80000000 #define IBMVETH_RXQ_TOGGLE_SHIFT 31 #define IBMVETH_RXQ_VALID 0x40000000 +#define IBMVETH_RXQ_LRG_PKT 0x04000000 #define IBMVETH_RXQ_NO_CSUM 0x02000000 #define IBMVETH_RXQ_CSUM_GOOD 0x01000000 #define IBMVETH_RXQ_OFF_MASK 0x0000FFFF --- linux-4.8.0.orig/drivers/net/ethernet/ibm/ibmvnic.c +++ linux-4.8.0/drivers/net/ethernet/ibm/ibmvnic.c @@ -203,7 +203,8 @@ struct device *dev = &adapter->vdev->dev; dma_free_coherent(dev, ltb->size, ltb->buff, ltb->addr); - send_request_unmap(adapter, ltb->map_id); + if (!adapter->failover) + send_request_unmap(adapter, ltb->map_id); } static int alloc_rx_pool(struct ibmvnic_adapter *adapter, @@ -522,7 +523,8 @@ for (i = 0; i < adapter->req_rx_queues; i++) napi_disable(&adapter->napi[i]); - netif_tx_stop_all_queues(netdev); + if (!adapter->failover) + netif_tx_stop_all_queues(netdev); if (adapter->bounce_buffer) { if (!dma_mapping_error(dev, adapter->bounce_buffer_dma)) { @@ -1188,7 +1190,7 @@ if (!scrq) return NULL; - scrq->msgs = (union sub_crq *)__get_free_pages(GFP_KERNEL, 2); + scrq->msgs = (union sub_crq *)__get_free_pages(GFP_ATOMIC, 2); memset(scrq->msgs, 0, 4 * PAGE_SIZE); if (!scrq->msgs) { dev_warn(dev, "Couldn't allocate crq queue messages page\n"); @@ -1459,14 +1461,16 @@ return rc; req_rx_irq_failed: - for (j = 0; j < i; j++) + for (j = 0; j < i; j++) { free_irq(adapter->rx_scrq[j]->irq, adapter->rx_scrq[j]); irq_dispose_mapping(adapter->rx_scrq[j]->irq); + } i = adapter->req_tx_queues; req_tx_irq_failed: - for (j = 0; j < i; j++) + for (j = 0; j < i; j++) { free_irq(adapter->tx_scrq[j]->irq, adapter->tx_scrq[j]); irq_dispose_mapping(adapter->rx_scrq[j]->irq); + } release_sub_crqs_no_irqs(adapter); return rc; } @@ -1501,9 +1505,8 @@ adapter->max_rx_add_entries_per_subcrq > entries_page ? entries_page : adapter->max_rx_add_entries_per_subcrq; - /* Choosing the maximum number of queues supported by firmware*/ - adapter->req_tx_queues = adapter->max_tx_queues; - adapter->req_rx_queues = adapter->max_rx_queues; + adapter->req_tx_queues = adapter->opt_tx_comp_sub_queues; + adapter->req_rx_queues = adapter->opt_rx_comp_queues; adapter->req_rx_add_queues = adapter->max_rx_add_queues; adapter->req_mtu = adapter->max_mtu; @@ -3236,6 +3239,27 @@ spin_unlock_irqrestore(&adapter->inflight_lock, flags); } +static void ibmvnic_xport_event(struct work_struct *work) +{ + struct ibmvnic_adapter *adapter = container_of(work, + struct ibmvnic_adapter, + ibmvnic_xport); + struct device *dev = &adapter->vdev->dev; + long rc; + + ibmvnic_free_inflight(adapter); + release_sub_crqs(adapter); + if (adapter->migrated) { + rc = ibmvnic_reenable_crq_queue(adapter); + if (rc) + dev_err(dev, "Error after enable rc=%ld\n", rc); + adapter->migrated = false; + rc = ibmvnic_send_crq_init(adapter); + if (rc) + dev_err(dev, "Error sending init rc=%ld\n", rc); + } +} + static void ibmvnic_handle_crq(union ibmvnic_crq *crq, struct ibmvnic_adapter *adapter) { @@ -3271,21 +3295,16 @@ if (gen_crq->cmd == IBMVNIC_PARTITION_MIGRATED) { dev_info(dev, "Re-enabling adapter\n"); adapter->migrated = true; - ibmvnic_free_inflight(adapter); - release_sub_crqs(adapter); - rc = ibmvnic_reenable_crq_queue(adapter); - if (rc) - dev_err(dev, "Error after enable rc=%ld\n", rc); - adapter->migrated = false; - rc = ibmvnic_send_crq_init(adapter); - if (rc) - dev_err(dev, "Error sending init rc=%ld\n", rc); + schedule_work(&adapter->ibmvnic_xport); + } else if (gen_crq->cmd == IBMVNIC_DEVICE_FAILOVER) { + dev_info(dev, "Backing device failover detected\n"); + netif_carrier_off(netdev); + adapter->failover = true; } else { /* The adapter lost the connection */ dev_err(dev, "Virtual Adapter failed (rc=%d)\n", gen_crq->cmd); - ibmvnic_free_inflight(adapter); - release_sub_crqs(adapter); + schedule_work(&adapter->ibmvnic_xport); } return; case IBMVNIC_CRQ_CMD_RSP: @@ -3615,8 +3634,18 @@ struct device *dev = &adapter->vdev->dev; struct net_device *netdev = adapter->netdev; unsigned long timeout = msecs_to_jiffies(30000); + bool restart = false; int rc; + if (adapter->failover) { + release_sub_crqs(adapter); + if (netif_running(netdev)) { + netif_tx_disable(netdev); + ibmvnic_close(netdev); + restart = true; + } + } + send_version_xchg(adapter); reinit_completion(&adapter->init_done); if (!wait_for_completion_timeout(&adapter->init_done, timeout)) { @@ -3644,6 +3673,18 @@ goto task_failed; netdev->real_num_tx_queues = adapter->req_tx_queues; + netdev->mtu = adapter->req_mtu; + + if (adapter->failover) { + adapter->failover = false; + if (restart) { + rc = ibmvnic_open(netdev); + if (rc) + goto restart_failed; + } + netif_carrier_on(netdev); + return; + } rc = register_netdev(netdev); if (rc) { @@ -3655,6 +3696,8 @@ return; +restart_failed: + dev_err(dev, "Failed to restart ibmvnic, rc=%d\n", rc); register_failed: release_sub_crqs(adapter); task_failed: @@ -3668,7 +3711,7 @@ struct net_device *netdev; unsigned char *mac_addr_p; struct dentry *ent; - char buf[16]; /* debugfs name buf */ + char buf[17]; /* debugfs name buf */ int rc; dev_dbg(&dev->dev, "entering ibmvnic_probe for UA 0x%x\n", @@ -3692,6 +3735,7 @@ dev_set_drvdata(&dev->dev, netdev); adapter->vdev = dev; adapter->netdev = netdev; + adapter->failover = false; ether_addr_copy(adapter->mac_addr, mac_addr_p); ether_addr_copy(netdev->dev_addr, adapter->mac_addr); @@ -3701,6 +3745,7 @@ SET_NETDEV_DEV(netdev, &dev->dev); INIT_WORK(&adapter->vnic_crq_init, handle_crq_init_rsp); + INIT_WORK(&adapter->ibmvnic_xport, ibmvnic_xport_event); spin_lock_init(&adapter->stats_lock); @@ -3767,6 +3812,7 @@ } netdev->real_num_tx_queues = adapter->req_tx_queues; + netdev->mtu = adapter->req_mtu; rc = register_netdev(netdev); if (rc) { @@ -3803,6 +3849,9 @@ if (adapter->debugfs_dir && !IS_ERR(adapter->debugfs_dir)) debugfs_remove_recursive(adapter->debugfs_dir); + dma_unmap_single(&dev->dev, adapter->stats_token, + sizeof(struct ibmvnic_statistics), DMA_FROM_DEVICE); + if (adapter->ras_comps) dma_free_coherent(&dev->dev, adapter->ras_comp_num * --- linux-4.8.0.orig/drivers/net/ethernet/ibm/ibmvnic.h +++ linux-4.8.0/drivers/net/ethernet/ibm/ibmvnic.h @@ -830,6 +830,7 @@ IBMVNIC_CRQ_INIT = 0x01, IBMVNIC_CRQ_INIT_COMPLETE = 0x02, IBMVNIC_PARTITION_MIGRATED = 0x06, + IBMVNIC_DEVICE_FAILOVER = 0x08, }; struct ibmvnic_crq_queue { @@ -1047,4 +1048,6 @@ u8 map_id; struct work_struct vnic_crq_init; + struct work_struct ibmvnic_xport; + bool failover; }; --- linux-4.8.0.orig/drivers/net/ethernet/intel/e1000e/80003es2lan.c +++ linux-4.8.0/drivers/net/ethernet/intel/e1000e/80003es2lan.c @@ -698,7 +698,7 @@ ew32(TCTL, E1000_TCTL_PSP); e1e_flush(); - usleep_range(10000, 20000); + usleep_range(10000, 11000); ctrl = er32(CTRL); --- linux-4.8.0.orig/drivers/net/ethernet/intel/e1000e/82571.c +++ linux-4.8.0/drivers/net/ethernet/intel/e1000e/82571.c @@ -977,7 +977,7 @@ ew32(TCTL, tctl); e1e_flush(); - usleep_range(10000, 20000); + usleep_range(10000, 11000); /* Must acquire the MDIO ownership before MAC reset. * Ownership defaults to firmware after a reset. --- linux-4.8.0.orig/drivers/net/ethernet/intel/e1000e/ethtool.c +++ linux-4.8.0/drivers/net/ethernet/intel/e1000e/ethtool.c @@ -1023,7 +1023,7 @@ /* Disable all the interrupts */ ew32(IMC, 0xFFFFFFFF); e1e_flush(); - usleep_range(10000, 20000); + usleep_range(10000, 11000); /* Test each interrupt */ for (i = 0; i < 10; i++) { @@ -1055,7 +1055,7 @@ ew32(IMC, mask); ew32(ICS, mask); e1e_flush(); - usleep_range(10000, 20000); + usleep_range(10000, 11000); if (adapter->test_icr & mask) { *data = 3; @@ -1073,7 +1073,7 @@ ew32(IMS, mask); ew32(ICS, mask); e1e_flush(); - usleep_range(10000, 20000); + usleep_range(10000, 11000); if (!(adapter->test_icr & mask)) { *data = 4; @@ -1091,7 +1091,7 @@ ew32(IMC, ~mask & 0x00007FFF); ew32(ICS, ~mask & 0x00007FFF); e1e_flush(); - usleep_range(10000, 20000); + usleep_range(10000, 11000); if (adapter->test_icr) { *data = 5; @@ -1103,7 +1103,7 @@ /* Disable all the interrupts */ ew32(IMC, 0xFFFFFFFF); e1e_flush(); - usleep_range(10000, 20000); + usleep_range(10000, 11000); /* Unhook test interrupt handler */ free_irq(irq, netdev); @@ -1479,7 +1479,7 @@ */ ew32(SCTL, E1000_SCTL_ENABLE_SERDES_LOOPBACK); e1e_flush(); - usleep_range(10000, 20000); + usleep_range(10000, 11000); return 0; } @@ -1592,7 +1592,7 @@ hw->phy.media_type == e1000_media_type_internal_serdes) { ew32(SCTL, E1000_SCTL_DISABLE_SERDES_LOOPBACK); e1e_flush(); - usleep_range(10000, 20000); + usleep_range(10000, 11000); break; } /* Fall Through */ --- linux-4.8.0.orig/drivers/net/ethernet/intel/e1000e/ich8lan.c +++ linux-4.8.0/drivers/net/ethernet/intel/e1000e/ich8lan.c @@ -289,7 +289,7 @@ u16 count = 20; do { - usleep_range(5000, 10000); + usleep_range(5000, 6000); } while (!(er32(CTRL_EXT) & E1000_CTRL_EXT_LPCD) && count--); msleep(30); @@ -422,7 +422,7 @@ /* Ungate automatic PHY configuration on non-managed 82579 */ if ((hw->mac.type == e1000_pch2lan) && !(fwsm & E1000_ICH_FWSM_FW_VALID)) { - usleep_range(10000, 20000); + usleep_range(10000, 11000); e1000_gate_hw_phy_config_ich8lan(hw, false); } @@ -547,7 +547,7 @@ phy->id = 0; while ((e1000_phy_unknown == e1000e_get_phy_type_from_id(phy->id)) && (i++ < 100)) { - usleep_range(1000, 2000); + usleep_range(1000, 1100); ret_val = e1000e_get_phy_id(hw); if (ret_val) return ret_val; @@ -1259,7 +1259,7 @@ goto out; } - usleep_range(10000, 20000); + usleep_range(10000, 11000); } e_dbg("ULP_CONFIG_DONE cleared after %dmsec\n", i * 10); @@ -2011,7 +2011,7 @@ while ((blocked = !(er32(FWSM) & E1000_ICH_FWSM_RSPCIPHY)) && (i++ < 30)) - usleep_range(10000, 20000); + usleep_range(10000, 11000); return blocked ? E1000_BLK_PHY_RESET : 0; } @@ -2827,7 +2827,7 @@ return 0; /* Allow time for h/w to get to quiescent state after reset */ - usleep_range(10000, 20000); + usleep_range(10000, 11000); /* Perform any necessary post-reset workarounds */ switch (hw->mac.type) { @@ -2863,7 +2863,7 @@ if (hw->mac.type == e1000_pch2lan) { /* Ungate automatic PHY configuration on non-managed 82579 */ if (!(er32(FWSM) & E1000_ICH_FWSM_FW_VALID)) { - usleep_range(10000, 20000); + usleep_range(10000, 11000); e1000_gate_hw_phy_config_ich8lan(hw, false); } @@ -3884,7 +3884,7 @@ */ if (!ret_val) { nvm->ops.reload(hw); - usleep_range(10000, 20000); + usleep_range(10000, 11000); } out: @@ -4035,7 +4035,7 @@ */ if (!ret_val) { nvm->ops.reload(hw); - usleep_range(10000, 20000); + usleep_range(10000, 11000); } out: @@ -4658,7 +4658,7 @@ ew32(TCTL, E1000_TCTL_PSP); e1e_flush(); - usleep_range(10000, 20000); + usleep_range(10000, 11000); /* Workaround for ICH8 bit corruption issue in FIFO memory */ if (hw->mac.type == e1000_ich8lan) { --- linux-4.8.0.orig/drivers/net/ethernet/intel/e1000e/mac.c +++ linux-4.8.0/drivers/net/ethernet/intel/e1000e/mac.c @@ -815,7 +815,7 @@ * milliseconds even if the other end is doing it in SW). */ for (i = 0; i < FIBER_LINK_UP_LIMIT; i++) { - usleep_range(10000, 20000); + usleep_range(10000, 11000); status = er32(STATUS); if (status & E1000_STATUS_LU) break; --- linux-4.8.0.orig/drivers/net/ethernet/intel/e1000e/netdev.c +++ linux-4.8.0/drivers/net/ethernet/intel/e1000e/netdev.c @@ -3206,7 +3206,7 @@ if (!(adapter->flags2 & FLAG2_NO_DISABLE_RX)) ew32(RCTL, rctl & ~E1000_RCTL_EN); e1e_flush(); - usleep_range(10000, 20000); + usleep_range(10000, 11000); if (adapter->flags2 & FLAG2_DMA_BURST) { /* set the writeback threshold (only takes effect if the RDTR @@ -4258,7 +4258,7 @@ /* flush both disables and wait for them to finish */ e1e_flush(); - usleep_range(10000, 20000); + usleep_range(10000, 11000); e1000_irq_disable(adapter); @@ -4296,7 +4296,7 @@ { might_sleep(); while (test_and_set_bit(__E1000_RESETTING, &adapter->state)) - usleep_range(1000, 2000); + usleep_range(1000, 1100); e1000e_down(adapter, true); e1000e_up(adapter); clear_bit(__E1000_RESETTING, &adapter->state); @@ -4671,7 +4671,7 @@ int count = E1000_CHECK_RESET_COUNT; while (test_bit(__E1000_RESETTING, &adapter->state) && count--) - usleep_range(10000, 20000); + usleep_range(10000, 11000); WARN_ON(test_bit(__E1000_RESETTING, &adapter->state)); @@ -5996,7 +5996,7 @@ } while (test_and_set_bit(__E1000_RESETTING, &adapter->state)) - usleep_range(1000, 2000); + usleep_range(1000, 1100); /* e1000e_down -> e1000e_reset dependent on max_frame_size & mtu */ adapter->max_frame_size = max_frame; e_info("changing MTU from %d to %d\n", netdev->mtu, new_mtu); @@ -6276,7 +6276,7 @@ int count = E1000_CHECK_RESET_COUNT; while (test_bit(__E1000_RESETTING, &adapter->state) && count--) - usleep_range(10000, 20000); + usleep_range(10000, 11000); WARN_ON(test_bit(__E1000_RESETTING, &adapter->state)); @@ -6687,7 +6687,7 @@ int count = E1000_CHECK_RESET_COUNT; while (test_bit(__E1000_RESETTING, &adapter->state) && count--) - usleep_range(10000, 20000); + usleep_range(10000, 11000); WARN_ON(test_bit(__E1000_RESETTING, &adapter->state)); --- linux-4.8.0.orig/drivers/net/ethernet/intel/e1000e/nvm.c +++ linux-4.8.0/drivers/net/ethernet/intel/e1000e/nvm.c @@ -410,7 +410,7 @@ break; } } - usleep_range(10000, 20000); + usleep_range(10000, 11000); nvm->ops.release(hw); } --- linux-4.8.0.orig/drivers/net/ethernet/intel/i40e/i40e_client.c +++ linux-4.8.0/drivers/net/ethernet/intel/i40e/i40e_client.c @@ -1009,7 +1009,6 @@ if (!i40e_client_is_registered(client)) { pr_info("i40e: Client %s has not been registered\n", client->name); - mutex_unlock(&i40e_client_mutex); ret = -ENODEV; goto out; } --- linux-4.8.0.orig/drivers/net/ethernet/intel/i40e/i40e_main.c +++ linux-4.8.0/drivers/net/ethernet/intel/i40e/i40e_main.c @@ -7990,45 +7990,34 @@ static int i40e_config_rss_aq(struct i40e_vsi *vsi, const u8 *seed, u8 *lut, u16 lut_size) { - struct i40e_aqc_get_set_rss_key_data rss_key; struct i40e_pf *pf = vsi->back; struct i40e_hw *hw = &pf->hw; - bool pf_lut = false; - u8 *rss_lut; - int ret, i; - - memcpy(&rss_key, seed, sizeof(rss_key)); - - rss_lut = kzalloc(pf->rss_table_size, GFP_KERNEL); - if (!rss_lut) - return -ENOMEM; - - /* Populate the LUT with max no. of queues in round robin fashion */ - for (i = 0; i < vsi->rss_table_size; i++) - rss_lut[i] = i % vsi->rss_size; + int ret = 0; - ret = i40e_aq_set_rss_key(hw, vsi->id, &rss_key); - if (ret) { - dev_info(&pf->pdev->dev, - "Cannot set RSS key, err %s aq_err %s\n", - i40e_stat_str(&pf->hw, ret), - i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status)); - goto config_rss_aq_out; + if (seed) { + struct i40e_aqc_get_set_rss_key_data *seed_dw = + (struct i40e_aqc_get_set_rss_key_data *)seed; + ret = i40e_aq_set_rss_key(hw, vsi->id, seed_dw); + if (ret) { + dev_info(&pf->pdev->dev, + "Cannot set RSS key, err %s aq_err %s\n", + i40e_stat_str(hw, ret), + i40e_aq_str(hw, hw->aq.asq_last_status)); + return ret; + } } + if (lut) { + bool pf_lut = vsi->type == I40E_VSI_MAIN ? true : false; - if (vsi->type == I40E_VSI_MAIN) - pf_lut = true; - - ret = i40e_aq_set_rss_lut(hw, vsi->id, pf_lut, rss_lut, - vsi->rss_table_size); - if (ret) - dev_info(&pf->pdev->dev, - "Cannot set RSS lut, err %s aq_err %s\n", - i40e_stat_str(&pf->hw, ret), - i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status)); - -config_rss_aq_out: - kfree(rss_lut); + ret = i40e_aq_set_rss_lut(hw, vsi->id, pf_lut, lut, lut_size); + if (ret) { + dev_info(&pf->pdev->dev, + "Cannot set RSS lut, err %s aq_err %s\n", + i40e_stat_str(hw, ret), + i40e_aq_str(hw, hw->aq.asq_last_status)); + return ret; + } + } return ret; } @@ -9012,7 +9001,7 @@ return 0; return ndo_dflt_bridge_getlink(skb, pid, seq, dev, veb->bridge_mode, - nlflags, 0, 0, filter_mask, NULL); + 0, 0, nlflags, filter_mask, NULL); } /* Hardware supports L4 tunnel length of 128B (=2^7) which includes @@ -11360,6 +11349,12 @@ dev_info(&pdev->dev, "%s: error %d\n", __func__, error); + if (!pf) { + dev_info(&pdev->dev, + "Cannot recover - error happened during device probe\n"); + return PCI_ERS_RESULT_DISCONNECT; + } + /* shutdown all operations */ if (!test_bit(__I40E_SUSPENDED, &pf->state)) { rtnl_lock(); --- linux-4.8.0.orig/drivers/net/ethernet/intel/igb/e1000_phy.c +++ linux-4.8.0/drivers/net/ethernet/intel/igb/e1000_phy.c @@ -77,6 +77,10 @@ s32 ret_val = 0; u16 phy_id; + /* ensure phy page selection to fix misconfigured i210 */ + if ((hw->mac.type == e1000_i210) || (hw->mac.type == e1000_i211)) + phy->ops.write_reg(hw, I347AT4_PAGE_SELECT, 0); + ret_val = phy->ops.read_reg(hw, PHY_ID1, &phy_id); if (ret_val) goto out; --- linux-4.8.0.orig/drivers/net/ethernet/marvell/mvpp2.c +++ linux-4.8.0/drivers/net/ethernet/marvell/mvpp2.c @@ -770,6 +770,17 @@ u32 reserved8; }; +struct mvpp2_txq_pcpu_buf { + /* Transmitted SKB */ + struct sk_buff *skb; + + /* Physical address of transmitted buffer */ + dma_addr_t phys; + + /* Size transmitted */ + size_t size; +}; + /* Per-CPU Tx queue control */ struct mvpp2_txq_pcpu { int cpu; @@ -785,11 +796,8 @@ /* Number of Tx DMA descriptors reserved for each CPU */ int reserved_num; - /* Array of transmitted skb */ - struct sk_buff **tx_skb; - - /* Array of transmitted buffers' physical addresses */ - dma_addr_t *tx_buffs; + /* Infos about transmitted buffers */ + struct mvpp2_txq_pcpu_buf *buffs; /* Index of last TX DMA descriptor that was inserted */ int txq_put_index; @@ -979,10 +987,11 @@ struct sk_buff *skb, struct mvpp2_tx_desc *tx_desc) { - txq_pcpu->tx_skb[txq_pcpu->txq_put_index] = skb; - if (skb) - txq_pcpu->tx_buffs[txq_pcpu->txq_put_index] = - tx_desc->buf_phys_addr; + struct mvpp2_txq_pcpu_buf *tx_buf = + txq_pcpu->buffs + txq_pcpu->txq_put_index; + tx_buf->skb = skb; + tx_buf->size = tx_desc->data_size; + tx_buf->phys = tx_desc->buf_phys_addr; txq_pcpu->txq_put_index++; if (txq_pcpu->txq_put_index == txq_pcpu->size) txq_pcpu->txq_put_index = 0; @@ -4401,17 +4410,16 @@ int i; for (i = 0; i < num; i++) { - dma_addr_t buf_phys_addr = - txq_pcpu->tx_buffs[txq_pcpu->txq_get_index]; - struct sk_buff *skb = txq_pcpu->tx_skb[txq_pcpu->txq_get_index]; + struct mvpp2_txq_pcpu_buf *tx_buf = + txq_pcpu->buffs + txq_pcpu->txq_get_index; mvpp2_txq_inc_get(txq_pcpu); - dma_unmap_single(port->dev->dev.parent, buf_phys_addr, - skb_headlen(skb), DMA_TO_DEVICE); - if (!skb) + dma_unmap_single(port->dev->dev.parent, tx_buf->phys, + tx_buf->size, DMA_TO_DEVICE); + if (!tx_buf->skb) continue; - dev_kfree_skb_any(skb); + dev_kfree_skb_any(tx_buf->skb); } } @@ -4651,15 +4659,10 @@ for_each_present_cpu(cpu) { txq_pcpu = per_cpu_ptr(txq->pcpu, cpu); txq_pcpu->size = txq->size; - txq_pcpu->tx_skb = kmalloc(txq_pcpu->size * - sizeof(*txq_pcpu->tx_skb), - GFP_KERNEL); - if (!txq_pcpu->tx_skb) - goto error; - - txq_pcpu->tx_buffs = kmalloc(txq_pcpu->size * - sizeof(dma_addr_t), GFP_KERNEL); - if (!txq_pcpu->tx_buffs) + txq_pcpu->buffs = kmalloc(txq_pcpu->size * + sizeof(struct mvpp2_txq_pcpu_buf), + GFP_KERNEL); + if (!txq_pcpu->buffs) goto error; txq_pcpu->count = 0; @@ -4673,8 +4676,7 @@ error: for_each_present_cpu(cpu) { txq_pcpu = per_cpu_ptr(txq->pcpu, cpu); - kfree(txq_pcpu->tx_skb); - kfree(txq_pcpu->tx_buffs); + kfree(txq_pcpu->buffs); } dma_free_coherent(port->dev->dev.parent, @@ -4693,8 +4695,7 @@ for_each_present_cpu(cpu) { txq_pcpu = per_cpu_ptr(txq->pcpu, cpu); - kfree(txq_pcpu->tx_skb); - kfree(txq_pcpu->tx_buffs); + kfree(txq_pcpu->buffs); } if (txq->descs) --- linux-4.8.0.orig/drivers/net/ethernet/marvell/sky2.c +++ linux-4.8.0/drivers/net/ethernet/marvell/sky2.c @@ -5220,6 +5220,19 @@ static void sky2_shutdown(struct pci_dev *pdev) { + struct sky2_hw *hw = pci_get_drvdata(pdev); + int port; + + for (port = 0; port < hw->ports; port++) { + struct net_device *ndev = hw->dev[port]; + + rtnl_lock(); + if (netif_running(ndev)) { + dev_close(ndev); + netif_device_detach(ndev); + } + rtnl_unlock(); + } sky2_suspend(&pdev->dev); pci_wake_from_d3(pdev, device_may_wakeup(&pdev->dev)); pci_set_power_state(pdev, PCI_D3hot); --- linux-4.8.0.orig/drivers/net/ethernet/mellanox/mlx4/catas.c +++ linux-4.8.0/drivers/net/ethernet/mellanox/mlx4/catas.c @@ -158,7 +158,7 @@ return -ETIMEDOUT; } -static int mlx4_comm_internal_err(u32 slave_read) +int mlx4_comm_internal_err(u32 slave_read) { return (u32)COMM_CHAN_EVENT_INTERNAL_ERR == (slave_read & (u32)COMM_CHAN_EVENT_INTERNAL_ERR) ? 1 : 0; --- linux-4.8.0.orig/drivers/net/ethernet/mellanox/mlx4/cmd.c +++ linux-4.8.0/drivers/net/ethernet/mellanox/mlx4/cmd.c @@ -2278,6 +2278,17 @@ rd_toggle = swab32(readl(&priv->mfunc.comm->slave_read)); if (wr_toggle == 0xffffffff || rd_toggle == 0xffffffff) { /* PCI might be offline */ + + /* If device removal has been requested, + * do not continue retrying. + */ + if (dev->persist->interface_state & + MLX4_INTERFACE_STATE_NOWAIT) { + mlx4_warn(dev, + "communication channel is offline\n"); + return -EIO; + } + msleep(100); wr_toggle = swab32(readl(&priv->mfunc.comm-> slave_write)); --- linux-4.8.0.orig/drivers/net/ethernet/mellanox/mlx4/cq.c +++ linux-4.8.0/drivers/net/ethernet/mellanox/mlx4/cq.c @@ -101,13 +101,19 @@ { struct mlx4_cq *cq; + rcu_read_lock(); cq = radix_tree_lookup(&mlx4_priv(dev)->cq_table.tree, cqn & (dev->caps.num_cqs - 1)); + rcu_read_unlock(); + if (!cq) { mlx4_dbg(dev, "Completion event for bogus CQ %08x\n", cqn); return; } + /* Acessing the CQ outside of rcu_read_lock is safe, because + * the CQ is freed only after interrupt handling is completed. + */ ++cq->arm_sn; cq->comp(cq); @@ -118,23 +124,19 @@ struct mlx4_cq_table *cq_table = &mlx4_priv(dev)->cq_table; struct mlx4_cq *cq; - spin_lock(&cq_table->lock); - + rcu_read_lock(); cq = radix_tree_lookup(&cq_table->tree, cqn & (dev->caps.num_cqs - 1)); - if (cq) - atomic_inc(&cq->refcount); - - spin_unlock(&cq_table->lock); + rcu_read_unlock(); if (!cq) { - mlx4_warn(dev, "Async event for bogus CQ %08x\n", cqn); + mlx4_dbg(dev, "Async event for bogus CQ %08x\n", cqn); return; } + /* Acessing the CQ outside of rcu_read_lock is safe, because + * the CQ is freed only after interrupt handling is completed. + */ cq->event(cq, event_type); - - if (atomic_dec_and_test(&cq->refcount)) - complete(&cq->free); } static int mlx4_SW2HW_CQ(struct mlx4_dev *dev, struct mlx4_cmd_mailbox *mailbox, @@ -301,9 +303,9 @@ if (err) return err; - spin_lock_irq(&cq_table->lock); + spin_lock(&cq_table->lock); err = radix_tree_insert(&cq_table->tree, cq->cqn, cq); - spin_unlock_irq(&cq_table->lock); + spin_unlock(&cq_table->lock); if (err) goto err_icm; @@ -349,9 +351,9 @@ return 0; err_radix: - spin_lock_irq(&cq_table->lock); + spin_lock(&cq_table->lock); radix_tree_delete(&cq_table->tree, cq->cqn); - spin_unlock_irq(&cq_table->lock); + spin_unlock(&cq_table->lock); err_icm: mlx4_cq_free_icm(dev, cq->cqn); @@ -370,15 +372,15 @@ if (err) mlx4_warn(dev, "HW2SW_CQ failed (%d) for CQN %06x\n", err, cq->cqn); + spin_lock(&cq_table->lock); + radix_tree_delete(&cq_table->tree, cq->cqn); + spin_unlock(&cq_table->lock); + synchronize_irq(priv->eq_table.eq[MLX4_CQ_TO_EQ_VECTOR(cq->vector)].irq); if (priv->eq_table.eq[MLX4_CQ_TO_EQ_VECTOR(cq->vector)].irq != priv->eq_table.eq[MLX4_EQ_ASYNC].irq) synchronize_irq(priv->eq_table.eq[MLX4_EQ_ASYNC].irq); - spin_lock_irq(&cq_table->lock); - radix_tree_delete(&cq_table->tree, cq->cqn); - spin_unlock_irq(&cq_table->lock); - if (atomic_dec_and_test(&cq->refcount)) complete(&cq->free); wait_for_completion(&cq->free); --- linux-4.8.0.orig/drivers/net/ethernet/mellanox/mlx4/en_cq.c +++ linux-4.8.0/drivers/net/ethernet/mellanox/mlx4/en_cq.c @@ -127,7 +127,15 @@ /* For TX we use the same irq per ring we assigned for the RX */ struct mlx4_en_cq *rx_cq; + int xdp_index; + /* The xdp tx irq must align with the rx ring that forwards to + * it, so reindex these from 0. This should only happen when + * tx_ring_num is not a multiple of rx_ring_num. + */ + xdp_index = (priv->xdp_ring_num - priv->tx_ring_num) + cq_idx; + if (xdp_index >= 0) + cq_idx = xdp_index; cq_idx = cq_idx % priv->rx_ring_num; rx_cq = priv->rx_cq[cq_idx]; cq->vector = rx_cq->vector; --- linux-4.8.0.orig/drivers/net/ethernet/mellanox/mlx4/en_netdev.c +++ linux-4.8.0/drivers/net/ethernet/mellanox/mlx4/en_netdev.c @@ -2068,13 +2068,6 @@ return -ENOMEM; } -static void mlx4_en_shutdown(struct net_device *dev) -{ - rtnl_lock(); - netif_device_detach(dev); - mlx4_en_close(dev); - rtnl_unlock(); -} static int mlx4_en_copy_priv(struct mlx4_en_priv *dst, struct mlx4_en_priv *src, @@ -2151,8 +2144,6 @@ { struct mlx4_en_priv *priv = netdev_priv(dev); struct mlx4_en_dev *mdev = priv->mdev; - bool shutdown = mdev->dev->persist->interface_state & - MLX4_INTERFACE_STATE_SHUTDOWN; en_dbg(DRV, priv, "Destroying netdev on port:%d\n", priv->port); @@ -2160,10 +2151,7 @@ if (priv->registered) { devlink_port_type_clear(mlx4_get_devlink_port(mdev->dev, priv->port)); - if (shutdown) - mlx4_en_shutdown(dev); - else - unregister_netdev(dev); + unregister_netdev(dev); } if (priv->allocated) @@ -2192,8 +2180,7 @@ kfree(priv->tx_ring); kfree(priv->tx_cq); - if (!shutdown) - free_netdev(dev); + free_netdev(dev); } static int mlx4_en_change_mtu(struct net_device *dev, int new_mtu) --- linux-4.8.0.orig/drivers/net/ethernet/mellanox/mlx4/en_rx.c +++ linux-4.8.0/drivers/net/ethernet/mellanox/mlx4/en_rx.c @@ -443,8 +443,14 @@ ring->cqn = priv->rx_cq[ring_ind]->mcq.cqn; ring->stride = stride; - if (ring->stride <= TXBB_SIZE) + if (ring->stride <= TXBB_SIZE) { + /* Stamp first unused send wqe */ + __be32 *ptr = (__be32 *)ring->buf; + __be32 stamp = cpu_to_be32(1 << STAMP_SHIFT); + *ptr = stamp; + /* Move pointer to start of rx section */ ring->buf += TXBB_SIZE; + } ring->log_stride = ffs(ring->stride) - 1; ring->buf_size = ring->size * ring->stride; --- linux-4.8.0.orig/drivers/net/ethernet/mellanox/mlx4/eq.c +++ linux-4.8.0/drivers/net/ethernet/mellanox/mlx4/eq.c @@ -1251,9 +1251,8 @@ mlx4_warn(dev, "Failed adding irq rmap\n"); } #endif - err = mlx4_create_eq(dev, dev->caps.num_cqs - - dev->caps.reserved_cqs + - MLX4_NUM_SPARE_EQE, + err = mlx4_create_eq(dev, dev->quotas.cq + + MLX4_NUM_SPARE_EQE, (dev->flags & MLX4_FLAG_MSI_X) ? i + 1 - !!(i > MLX4_EQ_ASYNC) : 0, eq); --- linux-4.8.0.orig/drivers/net/ethernet/mellanox/mlx4/intf.c +++ linux-4.8.0/drivers/net/ethernet/mellanox/mlx4/intf.c @@ -222,6 +222,18 @@ return; mlx4_stop_catas_poll(dev); + if (dev->persist->interface_state & MLX4_INTERFACE_STATE_DELETION && + mlx4_is_slave(dev)) { + /* In mlx4_remove_one on a VF */ + u32 slave_read = + swab32(readl(&mlx4_priv(dev)->mfunc.comm->slave_read)); + + if (mlx4_comm_internal_err(slave_read)) { + mlx4_dbg(dev, "%s: comm channel is down, entering error state.\n", + __func__); + mlx4_enter_error_state(dev->persist); + } + } mutex_lock(&intf_mutex); list_for_each_entry(intf, &intf_list, list) --- linux-4.8.0.orig/drivers/net/ethernet/mellanox/mlx4/main.c +++ linux-4.8.0/drivers/net/ethernet/mellanox/mlx4/main.c @@ -1916,6 +1916,14 @@ (u32)(1 << COMM_CHAN_OFFLINE_OFFSET)); if (!offline_bit) return 0; + + /* If device removal has been requested, + * do not continue retrying. + */ + if (dev->persist->interface_state & + MLX4_INTERFACE_STATE_NOWAIT) + break; + /* There are cases as part of AER/Reset flow that PF needs * around 100 msec to load. We therefore sleep for 100 msec * to allow other tasks to make use of that CPU during this @@ -3477,6 +3485,8 @@ goto err_disable_msix; } + mlx4_init_quotas(dev); + err = mlx4_setup_hca(dev); if (err == -EBUSY && (dev->flags & MLX4_FLAG_MSI_X) && !mlx4_is_mfunc(dev)) { @@ -3489,7 +3499,6 @@ if (err) goto err_steer; - mlx4_init_quotas(dev); /* When PF resources are ready arm its comm channel to enable * getting commands */ @@ -3930,6 +3939,9 @@ struct devlink *devlink = priv_to_devlink(priv); int active_vfs = 0; + if (mlx4_is_slave(dev)) + persist->interface_state |= MLX4_INTERFACE_STATE_NOWAIT; + mutex_lock(&persist->interface_state_mutex); persist->interface_state |= MLX4_INTERFACE_STATE_DELETION; mutex_unlock(&persist->interface_state_mutex); @@ -4139,11 +4151,8 @@ mlx4_info(persist->dev, "mlx4_shutdown was called\n"); mutex_lock(&persist->interface_state_mutex); - if (persist->interface_state & MLX4_INTERFACE_STATE_UP) { - /* Notify mlx4 clients that the kernel is being shut down */ - persist->interface_state |= MLX4_INTERFACE_STATE_SHUTDOWN; + if (persist->interface_state & MLX4_INTERFACE_STATE_UP) mlx4_unload_one(pdev); - } mutex_unlock(&persist->interface_state_mutex); } --- linux-4.8.0.orig/drivers/net/ethernet/mellanox/mlx4/mlx4.h +++ linux-4.8.0/drivers/net/ethernet/mellanox/mlx4/mlx4.h @@ -1214,6 +1214,7 @@ void mlx4_srq_event(struct mlx4_dev *dev, u32 srqn, int event_type); void mlx4_enter_error_state(struct mlx4_dev_persistent *persist); +int mlx4_comm_internal_err(u32 slave_read); int mlx4_SENSE_PORT(struct mlx4_dev *dev, int port, enum mlx4_port_type *type); --- linux-4.8.0.orig/drivers/net/ethernet/mellanox/mlx4/resource_tracker.c +++ linux-4.8.0/drivers/net/ethernet/mellanox/mlx4/resource_tracker.c @@ -2963,6 +2963,9 @@ put_res(dev, slave, srqn, RES_SRQ); qp->srq = srq; } + + /* Save param3 for dynamic changes from VST back to VGT */ + qp->param3 = qpc->param3; put_res(dev, slave, rcqn, RES_CQ); put_res(dev, slave, mtt_base, RES_MTT); res_end_move(dev, slave, RES_QP, qpn); @@ -3755,7 +3758,6 @@ int qpn = vhcr->in_modifier & 0x7fffff; struct res_qp *qp; u8 orig_sched_queue; - __be32 orig_param3 = qpc->param3; u8 orig_vlan_control = qpc->pri_path.vlan_control; u8 orig_fvl_rx = qpc->pri_path.fvl_rx; u8 orig_pri_path_fl = qpc->pri_path.fl; @@ -3797,7 +3799,6 @@ */ if (!err) { qp->sched_queue = orig_sched_queue; - qp->param3 = orig_param3; qp->vlan_control = orig_vlan_control; qp->fvl_rx = orig_fvl_rx; qp->pri_path_fl = orig_pri_path_fl; --- linux-4.8.0.orig/drivers/net/ethernet/mellanox/mlxsw/spectrum.c +++ linux-4.8.0/drivers/net/ethernet/mellanox/mlxsw/spectrum.c @@ -231,7 +231,7 @@ span_entry->used = true; span_entry->id = index; - span_entry->ref_count = 0; + span_entry->ref_count = 1; span_entry->local_port = local_port; return span_entry; } @@ -268,6 +268,7 @@ span_entry = mlxsw_sp_span_entry_find(port); if (span_entry) { + /* Already exists, just take a reference */ span_entry->ref_count++; return span_entry; } @@ -278,6 +279,7 @@ static int mlxsw_sp_span_entry_put(struct mlxsw_sp *mlxsw_sp, struct mlxsw_sp_span_entry *span_entry) { + WARN_ON(!span_entry->ref_count); if (--span_entry->ref_count == 0) mlxsw_sp_span_entry_destroy(mlxsw_sp, span_entry); return 0; --- linux-4.8.0.orig/drivers/net/ethernet/mellanox/mlxsw/spectrum_router.c +++ linux-4.8.0/drivers/net/ethernet/mellanox/mlxsw/spectrum_router.c @@ -777,6 +777,26 @@ } } +static bool mlxsw_sp_router_rauhtd_is_full(char *rauhtd_pl) +{ + u8 num_rec, last_rec_index, num_entries; + + num_rec = mlxsw_reg_rauhtd_num_rec_get(rauhtd_pl); + last_rec_index = num_rec - 1; + + if (num_rec < MLXSW_REG_RAUHTD_REC_MAX_NUM) + return false; + if (mlxsw_reg_rauhtd_rec_type_get(rauhtd_pl, last_rec_index) == + MLXSW_REG_RAUHTD_TYPE_IPV6) + return true; + + num_entries = mlxsw_reg_rauhtd_ipv4_rec_num_entries_get(rauhtd_pl, + last_rec_index); + if (++num_entries == MLXSW_REG_RAUHTD_IPV4_ENT_PER_REC) + return true; + return false; +} + static int mlxsw_sp_router_neighs_update_rauhtd(struct mlxsw_sp *mlxsw_sp) { char *rauhtd_pl; @@ -803,7 +823,7 @@ for (i = 0; i < num_rec; i++) mlxsw_sp_router_neigh_rec_process(mlxsw_sp, rauhtd_pl, i); - } while (num_rec); + } while (mlxsw_sp_router_rauhtd_is_full(rauhtd_pl)); rtnl_unlock(); kfree(rauhtd_pl); --- linux-4.8.0.orig/drivers/net/ethernet/neterion/vxge/vxge-main.c +++ linux-4.8.0/drivers/net/ethernet/neterion/vxge/vxge-main.c @@ -4212,6 +4212,9 @@ return ret; } +#define VXGE_PXE_FIRMWARE "vxge/X3fw-pxe.ncf" +#define VXGE_FIRMWARE "vxge/X3fw.ncf" + static int vxge_probe_fw_update(struct vxgedev *vdev) { u32 maj, min, bld; @@ -4254,9 +4257,9 @@ } } if (gpxe) - fw_name = "vxge/X3fw-pxe.ncf"; + fw_name = VXGE_PXE_FIRMWARE; else - fw_name = "vxge/X3fw.ncf"; + fw_name = VXGE_FIRMWARE; ret = vxge_fw_upgrade(vdev, fw_name, 0); /* -EINVAL and -ENOENT are not fatal errors for flashing firmware on @@ -4861,3 +4864,5 @@ } module_init(vxge_starter); module_exit(vxge_closer); +MODULE_FIRMWARE(VXGE_PXE_FIRMWARE); +MODULE_FIRMWARE(VXGE_FIRMWARE); --- linux-4.8.0.orig/drivers/net/ethernet/renesas/sh_eth.c +++ linux-4.8.0/drivers/net/ethernet/renesas/sh_eth.c @@ -518,7 +518,7 @@ .ecsr_value = ECSR_ICD, .ecsipr_value = ECSIPR_ICDIP, - .eesipr_value = 0xff7f009f, + .eesipr_value = 0xe77f009f, .tx_check = EESR_TC1 | EESR_FTC, .eesr_err_check = EESR_TWB1 | EESR_TWB | EESR_TABT | EESR_RABT | --- linux-4.8.0.orig/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c +++ linux-4.8.0/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c @@ -871,6 +871,13 @@ return -ENODEV; } + /* stmmac_adjust_link will change this to PHY_IGNORE_INTERRUPT to avoid + * subsequent PHY polling, make sure we force a link transition if + * we have a UP/DOWN/UP transition + */ + if (phydev->is_pseudo_fixed_link) + phydev->irq = PHY_POLL; + pr_debug("stmmac_init_phy: %s: attached to PHY (UID 0x%x)" " Link = %d\n", dev->name, phydev->phy_id, phydev->link); --- linux-4.8.0.orig/drivers/net/geneve.c +++ linux-4.8.0/drivers/net/geneve.c @@ -453,7 +453,7 @@ skb_gro_pull(skb, gh_len); skb_gro_postpull_rcsum(skb, gh, gh_len); - pp = ptype->callbacks.gro_receive(head, skb); + pp = call_gro_receive(ptype->callbacks.gro_receive, head, skb); flush = 0; out_unlock: @@ -844,7 +844,6 @@ struct geneve_dev *geneve = netdev_priv(dev); struct geneve_sock *gs4 = geneve->sock4; struct rtable *rt = NULL; - const struct iphdr *iip; /* interior IP header */ int err = -EINVAL; struct flowi4 fl4; __u8 tos, ttl; @@ -871,8 +870,6 @@ sport = udp_flow_src_port(geneve->net, skb, 1, USHRT_MAX, true); skb_reset_mac_header(skb); - iip = ip_hdr(skb); - if (info) { const struct ip_tunnel_key *key = &info->key; u8 *opts = NULL; @@ -892,7 +889,7 @@ if (unlikely(err)) goto tx_error; - tos = ip_tunnel_ecn_encap(key->tos, iip, skb); + tos = ip_tunnel_ecn_encap(key->tos, ip_hdr(skb), skb); ttl = key->ttl; df = key->tun_flags & TUNNEL_DONT_FRAGMENT ? htons(IP_DF) : 0; } else { @@ -901,7 +898,7 @@ if (unlikely(err)) goto tx_error; - tos = ip_tunnel_ecn_encap(fl4.flowi4_tos, iip, skb); + tos = ip_tunnel_ecn_encap(fl4.flowi4_tos, ip_hdr(skb), skb); ttl = geneve->ttl; if (!ttl && IN_MULTICAST(ntohl(fl4.daddr))) ttl = 1; @@ -934,7 +931,6 @@ struct geneve_dev *geneve = netdev_priv(dev); struct geneve_sock *gs6 = geneve->sock6; struct dst_entry *dst = NULL; - const struct iphdr *iip; /* interior IP header */ int err = -EINVAL; struct flowi6 fl6; __u8 prio, ttl; @@ -959,8 +955,6 @@ sport = udp_flow_src_port(geneve->net, skb, 1, USHRT_MAX, true); skb_reset_mac_header(skb); - iip = ip_hdr(skb); - if (info) { const struct ip_tunnel_key *key = &info->key; u8 *opts = NULL; @@ -981,7 +975,7 @@ if (unlikely(err)) goto tx_error; - prio = ip_tunnel_ecn_encap(key->tos, iip, skb); + prio = ip_tunnel_ecn_encap(key->tos, ip_hdr(skb), skb); ttl = key->ttl; label = info->key.label; } else { @@ -991,7 +985,7 @@ goto tx_error; prio = ip_tunnel_ecn_encap(ip6_tclass(fl6.flowlabel), - iip, skb); + ip_hdr(skb), skb); ttl = geneve->ttl; if (!ttl && ipv6_addr_is_multicast(&fl6.daddr)) ttl = 1; --- linux-4.8.0.orig/drivers/net/hyperv/hyperv_net.h +++ linux-4.8.0/drivers/net/hyperv/hyperv_net.h @@ -84,8 +84,6 @@ #define NDIS_RSS_HASH_SECRET_KEY_MAX_SIZE_REVISION_2 40 #define ITAB_NUM 128 -#define HASH_KEYLEN NDIS_RSS_HASH_SECRET_KEY_MAX_SIZE_REVISION_2 -extern u8 netvsc_hash_key[]; struct ndis_recv_scale_param { /* NDIS_RECEIVE_SCALE_PARAMETERS */ struct ndis_obj_header hdr; @@ -175,7 +173,7 @@ struct rndis_message; struct netvsc_device; int netvsc_device_add(struct hv_device *device, void *additional_info); -int netvsc_device_remove(struct hv_device *device); +void netvsc_device_remove(struct hv_device *device); int netvsc_send(struct hv_device *device, struct hv_netvsc_packet *packet, struct rndis_message *rndis_msg, @@ -435,7 +433,7 @@ */ struct nvsp_1_message_send_rndis_packet { /* - * This field is specified by RNIDS. They assume there's two different + * This field is specified by RNDIS. They assume there's two different * channels of communication. However, the Network VSP only has one. * Therefore, the channel travels with the RNDIS packet. */ @@ -490,6 +488,7 @@ u64 sriov:1; u64 ieee8021q:1; u64 correlation_id:1; + u64 teaming:1; }; }; } __packed; @@ -579,7 +578,7 @@ /* The number of entries in the send indirection table */ u32 count; - /* The offset of the send indireciton table from top of this struct. + /* The offset of the send indirection table from top of this struct. * The send indirection table tells which channel to put the send * traffic on. Each entry is a channel number. */ @@ -633,12 +632,36 @@ u32 count; /* counter of batched packets */ }; +struct recv_comp_data { + u64 tid; /* transaction id */ + u32 status; +}; + +/* Netvsc Receive Slots Max */ +#define NETVSC_RECVSLOT_MAX (NETVSC_RECEIVE_BUFFER_SIZE / ETH_DATA_LEN + 1) + +struct multi_recv_comp { + void *buf; /* queued receive completions */ + u32 first; /* first data entry */ + u32 next; /* next entry for writing */ +}; + struct netvsc_stats { u64 packets; u64 bytes; + u64 broadcast; + u64 multicast; struct u64_stats_sync syncp; }; +struct netvsc_ethtool_stats { + unsigned long tx_scattered; + unsigned long tx_no_memory; + unsigned long tx_no_space; + unsigned long tx_too_big; + unsigned long tx_busy; +}; + struct netvsc_reconfig { struct list_head list; u32 event; @@ -668,14 +691,14 @@ /* Ethtool settings */ u8 duplex; u32 speed; + struct netvsc_ethtool_stats eth_stats; /* the device is going away */ bool start_remove; /* State to manage the associated VF interface. */ - struct net_device *vf_netdev; - bool vf_inject; - atomic_t vf_use_cnt; + struct net_device __rcu *vf_netdev; + /* 1: allocated, serial number is valid. 0: not allocated */ u32 vf_alloc; /* Serial number of the VF to team with */ @@ -711,7 +734,6 @@ struct nvsp_message channel_init_pkt; struct nvsp_message revoke_packet; - /* unsigned char HwMacAddr[HW_MACADDR_LEN]; */ struct vmbus_channel *chn_table[VRSS_CHANNEL_MAX]; u32 send_table[VRSS_SEND_TAB_SIZE]; @@ -735,6 +757,9 @@ u32 max_pkt; /* max number of pkt in one send, e.g. 8 */ u32 pkt_align; /* alignment bytes, e.g. 8 */ + struct multi_recv_comp mrc[VRSS_CHANNEL_MAX]; + atomic_t num_outstanding_recvs; + atomic_t open_cnt; }; @@ -1213,7 +1238,7 @@ u32 ndis_msg_type; /* Total length of this message, from the beginning */ - /* of the sruct rndis_message, in bytes. */ + /* of the struct rndis_message, in bytes. */ u32 msg_len; /* Actual message */ --- linux-4.8.0.orig/drivers/net/hyperv/netvsc.c +++ linux-4.8.0/drivers/net/hyperv/netvsc.c @@ -59,7 +59,6 @@ VM_PKT_DATA_INBAND, 0); } - static struct netvsc_device *alloc_net_device(void) { struct netvsc_device *net_device; @@ -74,17 +73,26 @@ return NULL; } + net_device->mrc[0].buf = vzalloc(NETVSC_RECVSLOT_MAX * + sizeof(struct recv_comp_data)); + init_waitqueue_head(&net_device->wait_drain); net_device->destroy = false; atomic_set(&net_device->open_cnt, 0); net_device->max_pkt = RNDIS_MAX_PKT_DEFAULT; net_device->pkt_align = RNDIS_PKT_ALIGN_DEFAULT; + init_completion(&net_device->channel_init_wait); return net_device; } static void free_netvsc_device(struct netvsc_device *nvdev) { + int i; + + for (i = 0; i < VRSS_CHANNEL_MAX; i++) + vfree(nvdev->mrc[i].buf); + kfree(nvdev->cb_buffer); kfree(nvdev); } @@ -107,20 +115,20 @@ goto get_in_err; if (net_device->destroy && - atomic_read(&net_device->num_outstanding_sends) == 0) + atomic_read(&net_device->num_outstanding_sends) == 0 && + atomic_read(&net_device->num_outstanding_recvs) == 0) net_device = NULL; get_in_err: return net_device; } - -static int netvsc_destroy_buf(struct hv_device *device) +static void netvsc_destroy_buf(struct hv_device *device) { struct nvsp_message *revoke_packet; - int ret = 0; struct net_device *ndev = hv_get_drvdata(device); struct netvsc_device *net_device = net_device_to_netvsc_device(ndev); + int ret; /* * If we got a section count, it means we received a @@ -150,7 +158,7 @@ if (ret != 0) { netdev_err(ndev, "unable to send " "revoke receive buffer to netvsp\n"); - return ret; + return; } } @@ -165,7 +173,7 @@ if (ret != 0) { netdev_err(ndev, "unable to teardown receive buffer's gpadl\n"); - return ret; + return; } net_device->recv_buf_gpadl_handle = 0; } @@ -209,7 +217,7 @@ if (ret != 0) { netdev_err(ndev, "unable to send " "revoke send buffer to netvsp\n"); - return ret; + return; } } /* Teardown the gpadl on the vsp end */ @@ -223,7 +231,7 @@ if (ret != 0) { netdev_err(ndev, "unable to teardown send buffer's gpadl\n"); - return ret; + return; } net_device->send_buf_gpadl_handle = 0; } @@ -233,8 +241,6 @@ net_device->send_buf = NULL; } kfree(net_device->send_section_map); - - return ret; } static int netvsc_init_buf(struct hv_device *device) @@ -276,7 +282,6 @@ goto cleanup; } - /* Notify the NetVsp of the gpadl handle */ init_packet = &net_device->channel_init_pkt; @@ -403,7 +408,7 @@ /* Section count is simply the size divided by the section size. */ net_device->send_section_cnt = - net_device->send_buf_size/net_device->send_section_size; + net_device->send_buf_size / net_device->send_section_size; dev_info(&device->device, "Send section size: %d, Section count:%d\n", net_device->send_section_size, net_device->send_section_cnt); @@ -412,8 +417,8 @@ net_device->map_words = DIV_ROUND_UP(net_device->send_section_cnt, BITS_PER_LONG); - net_device->send_section_map = - kzalloc(net_device->map_words * sizeof(ulong), GFP_KERNEL); + net_device->send_section_map = kcalloc(net_device->map_words, + sizeof(ulong), GFP_KERNEL); if (net_device->send_section_map == NULL) { ret = -ENOMEM; goto cleanup; @@ -428,7 +433,6 @@ return ret; } - /* Negotiate NVSP protocol version */ static int negotiate_nvsp_ver(struct hv_device *device, struct netvsc_device *net_device, @@ -468,9 +472,13 @@ init_packet->msg.v2_msg.send_ndis_config.mtu = ndev->mtu + ETH_HLEN; init_packet->msg.v2_msg.send_ndis_config.capability.ieee8021q = 1; - if (nvsp_ver >= NVSP_PROTOCOL_VERSION_5) + if (nvsp_ver >= NVSP_PROTOCOL_VERSION_5) { init_packet->msg.v2_msg.send_ndis_config.capability.sriov = 1; + /* Teaming bit is needed to receive link speed updates */ + init_packet->msg.v2_msg.send_ndis_config.capability.teaming = 1; + } + ret = vmbus_sendpacket(device->channel, init_packet, sizeof(struct nvsp_message), (unsigned long)init_packet, @@ -485,9 +493,10 @@ struct netvsc_device *net_device; struct nvsp_message *init_packet; int ndis_version; - u32 ver_list[] = { NVSP_PROTOCOL_VERSION_1, NVSP_PROTOCOL_VERSION_2, + const u32 ver_list[] = { + NVSP_PROTOCOL_VERSION_1, NVSP_PROTOCOL_VERSION_2, NVSP_PROTOCOL_VERSION_4, NVSP_PROTOCOL_VERSION_5 }; - int i, num_ver = 4; /* number of different NVSP versions */ + int i; net_device = get_outbound_net_device(device); if (!net_device) @@ -496,7 +505,7 @@ init_packet = &net_device->channel_init_pkt; /* Negotiate the latest NVSP protocol supported */ - for (i = num_ver - 1; i >= 0; i--) + for (i = ARRAY_SIZE(ver_list) - 1; i >= 0; i--) if (negotiate_nvsp_ver(device, net_device, init_packet, ver_list[i]) == 0) { net_device->nvsp_version = ver_list[i]; @@ -555,7 +564,7 @@ /* * netvsc_device_remove - Callback when the root bus device is removed */ -int netvsc_device_remove(struct hv_device *device) +void netvsc_device_remove(struct hv_device *device) { struct net_device *ndev = hv_get_drvdata(device); struct net_device_context *net_device_ctx = netdev_priv(ndev); @@ -577,10 +586,8 @@ /* Release all resources */ vfree(net_device->sub_cb_buf); free_netvsc_device(net_device); - return 0; } - #define RING_AVAIL_PERCENT_HIWATER 20 #define RING_AVAIL_PERCENT_LOWATER 10 @@ -604,72 +611,79 @@ sync_change_bit(index, net_device->send_section_map); } +static void netvsc_send_tx_complete(struct netvsc_device *net_device, + struct vmbus_channel *incoming_channel, + struct hv_device *device, + struct vmpacket_descriptor *packet) +{ + struct sk_buff *skb = (struct sk_buff *)(unsigned long)packet->trans_id; + struct net_device *ndev = hv_get_drvdata(device); + struct net_device_context *net_device_ctx = netdev_priv(ndev); + struct vmbus_channel *channel = device->channel; + int num_outstanding_sends; + u16 q_idx = 0; + int queue_sends; + + /* Notify the layer above us */ + if (likely(skb)) { + struct hv_netvsc_packet *nvsc_packet + = (struct hv_netvsc_packet *)skb->cb; + u32 send_index = nvsc_packet->send_buf_index; + + if (send_index != NETVSC_INVALID_INDEX) + netvsc_free_send_slot(net_device, send_index); + q_idx = nvsc_packet->q_idx; + channel = incoming_channel; + + dev_consume_skb_any(skb); + } + + num_outstanding_sends = + atomic_dec_return(&net_device->num_outstanding_sends); + queue_sends = atomic_dec_return(&net_device->queue_sends[q_idx]); + + if (net_device->destroy && num_outstanding_sends == 0) + wake_up(&net_device->wait_drain); + + if (netif_tx_queue_stopped(netdev_get_tx_queue(ndev, q_idx)) && + !net_device_ctx->start_remove && + (hv_ringbuf_avail_percent(&channel->outbound) > RING_AVAIL_PERCENT_HIWATER || + queue_sends < 1)) + netif_tx_wake_queue(netdev_get_tx_queue(ndev, q_idx)); +} + static void netvsc_send_completion(struct netvsc_device *net_device, struct vmbus_channel *incoming_channel, struct hv_device *device, struct vmpacket_descriptor *packet) { struct nvsp_message *nvsp_packet; - struct hv_netvsc_packet *nvsc_packet; struct net_device *ndev = hv_get_drvdata(device); - struct net_device_context *net_device_ctx = netdev_priv(ndev); - u32 send_index; - struct sk_buff *skb; nvsp_packet = (struct nvsp_message *)((unsigned long)packet + - (packet->offset8 << 3)); + (packet->offset8 << 3)); - if ((nvsp_packet->hdr.msg_type == NVSP_MSG_TYPE_INIT_COMPLETE) || - (nvsp_packet->hdr.msg_type == - NVSP_MSG1_TYPE_SEND_RECV_BUF_COMPLETE) || - (nvsp_packet->hdr.msg_type == - NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE) || - (nvsp_packet->hdr.msg_type == - NVSP_MSG5_TYPE_SUBCHANNEL)) { + switch (nvsp_packet->hdr.msg_type) { + case NVSP_MSG_TYPE_INIT_COMPLETE: + case NVSP_MSG1_TYPE_SEND_RECV_BUF_COMPLETE: + case NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE: + case NVSP_MSG5_TYPE_SUBCHANNEL: /* Copy the response back */ memcpy(&net_device->channel_init_pkt, nvsp_packet, sizeof(struct nvsp_message)); complete(&net_device->channel_init_wait); - } else if (nvsp_packet->hdr.msg_type == - NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE) { - int num_outstanding_sends; - u16 q_idx = 0; - struct vmbus_channel *channel = device->channel; - int queue_sends; - - /* Get the send context */ - skb = (struct sk_buff *)(unsigned long)packet->trans_id; - - /* Notify the layer above us */ - if (skb) { - nvsc_packet = (struct hv_netvsc_packet *) skb->cb; - send_index = nvsc_packet->send_buf_index; - if (send_index != NETVSC_INVALID_INDEX) - netvsc_free_send_slot(net_device, send_index); - q_idx = nvsc_packet->q_idx; - channel = incoming_channel; - dev_kfree_skb_any(skb); - } + break; - num_outstanding_sends = - atomic_dec_return(&net_device->num_outstanding_sends); - queue_sends = atomic_dec_return(&net_device-> - queue_sends[q_idx]); - - if (net_device->destroy && num_outstanding_sends == 0) - wake_up(&net_device->wait_drain); - - if (netif_tx_queue_stopped(netdev_get_tx_queue(ndev, q_idx)) && - !net_device_ctx->start_remove && - (hv_ringbuf_avail_percent(&channel->outbound) > - RING_AVAIL_PERCENT_HIWATER || queue_sends < 1)) - netif_tx_wake_queue(netdev_get_tx_queue( - ndev, q_idx)); - } else { - netdev_err(ndev, "Unknown send completion packet type- " - "%d received!!\n", nvsp_packet->hdr.msg_type); - } + case NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE: + netvsc_send_tx_complete(net_device, incoming_channel, + device, packet); + break; + default: + netdev_err(ndev, + "Unknown send completion type %d received!!\n", + nvsp_packet->hdr.msg_type); + } } static u32 netvsc_get_next_send_section(struct netvsc_device *net_device) @@ -859,7 +873,7 @@ struct sk_buff *skb) { struct netvsc_device *net_device; - int ret = 0, m_ret = 0; + int ret = 0; struct vmbus_channel *out_channel; u16 q_idx = packet->q_idx; u32 pktlen = packet->total_data_buflen, msd_len = 0; @@ -930,7 +944,7 @@ } if (msdp->skb) - dev_kfree_skb_any(msdp->skb); + dev_consume_skb_any(msdp->skb); if (xmit_more && !packet->cp_partial) { msdp->skb = skb; @@ -948,8 +962,8 @@ } if (msd_send) { - m_ret = netvsc_send_pkt(device, msd_send, net_device, - NULL, msd_skb); + int m_ret = netvsc_send_pkt(device, msd_send, net_device, + NULL, msd_skb); if (m_ret != 0) { netvsc_free_send_slot(net_device, @@ -968,49 +982,121 @@ return ret; } -static void netvsc_send_recv_completion(struct hv_device *device, - struct vmbus_channel *channel, - struct netvsc_device *net_device, - u64 transaction_id, u32 status) +static int netvsc_send_recv_completion(struct vmbus_channel *channel, + u64 transaction_id, u32 status) { struct nvsp_message recvcompMessage; - int retries = 0; int ret; - struct net_device *ndev = hv_get_drvdata(device); recvcompMessage.hdr.msg_type = NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE; recvcompMessage.msg.v1_msg.send_rndis_pkt_complete.status = status; -retry_send_cmplt: /* Send the completion */ ret = vmbus_sendpacket(channel, &recvcompMessage, - sizeof(struct nvsp_message), transaction_id, - VM_PKT_COMP, 0); - if (ret == 0) { - /* success */ - /* no-op */ - } else if (ret == -EAGAIN) { - /* no more room...wait a bit and attempt to retry 3 times */ - retries++; - netdev_err(ndev, "unable to send receive completion pkt" - " (tid %llx)...retrying %d\n", transaction_id, retries); - - if (retries < 4) { - udelay(100); - goto retry_send_cmplt; - } else { - netdev_err(ndev, "unable to send receive " - "completion pkt (tid %llx)...give up retrying\n", - transaction_id); - } - } else { - netdev_err(ndev, "unable to send receive " - "completion pkt - %llx\n", transaction_id); + sizeof(struct nvsp_message_header) + sizeof(u32), + transaction_id, VM_PKT_COMP, 0); + + return ret; +} + +static inline void count_recv_comp_slot(struct netvsc_device *nvdev, u16 q_idx, + u32 *filled, u32 *avail) +{ + u32 first = nvdev->mrc[q_idx].first; + u32 next = nvdev->mrc[q_idx].next; + + *filled = (first > next) ? NETVSC_RECVSLOT_MAX - first + next : + next - first; + + *avail = NETVSC_RECVSLOT_MAX - *filled - 1; +} + +/* Read the first filled slot, no change to index */ +static inline struct recv_comp_data *read_recv_comp_slot(struct netvsc_device + *nvdev, u16 q_idx) +{ + u32 filled, avail; + + if (!nvdev->mrc[q_idx].buf) + return NULL; + + count_recv_comp_slot(nvdev, q_idx, &filled, &avail); + if (!filled) + return NULL; + + return nvdev->mrc[q_idx].buf + nvdev->mrc[q_idx].first * + sizeof(struct recv_comp_data); +} + +/* Put the first filled slot back to available pool */ +static inline void put_recv_comp_slot(struct netvsc_device *nvdev, u16 q_idx) +{ + int num_recv; + + nvdev->mrc[q_idx].first = (nvdev->mrc[q_idx].first + 1) % + NETVSC_RECVSLOT_MAX; + + num_recv = atomic_dec_return(&nvdev->num_outstanding_recvs); + + if (nvdev->destroy && num_recv == 0) + wake_up(&nvdev->wait_drain); +} + +/* Check and send pending recv completions */ +static void netvsc_chk_recv_comp(struct netvsc_device *nvdev, + struct vmbus_channel *channel, u16 q_idx) +{ + struct recv_comp_data *rcd; + int ret; + + while (true) { + rcd = read_recv_comp_slot(nvdev, q_idx); + if (!rcd) + break; + + ret = netvsc_send_recv_completion(channel, rcd->tid, + rcd->status); + if (ret) + break; + + put_recv_comp_slot(nvdev, q_idx); } } +#define NETVSC_RCD_WATERMARK 80 + +/* Get next available slot */ +static inline struct recv_comp_data *get_recv_comp_slot( + struct netvsc_device *nvdev, struct vmbus_channel *channel, u16 q_idx) +{ + u32 filled, avail, next; + struct recv_comp_data *rcd; + + if (!nvdev->recv_section) + return NULL; + + if (!nvdev->mrc[q_idx].buf) + return NULL; + + if (atomic_read(&nvdev->num_outstanding_recvs) > + nvdev->recv_section->num_sub_allocs * NETVSC_RCD_WATERMARK / 100) + netvsc_chk_recv_comp(nvdev, channel, q_idx); + + count_recv_comp_slot(nvdev, q_idx, &filled, &avail); + if (!avail) + return NULL; + + next = nvdev->mrc[q_idx].next; + rcd = nvdev->mrc[q_idx].buf + next * sizeof(struct recv_comp_data); + nvdev->mrc[q_idx].next = (next + 1) % NETVSC_RECVSLOT_MAX; + + atomic_inc(&nvdev->num_outstanding_recvs); + + return rcd; +} + static void netvsc_receive(struct netvsc_device *net_device, struct vmbus_channel *channel, struct hv_device *device, @@ -1025,6 +1111,9 @@ int count = 0; struct net_device *ndev = hv_get_drvdata(device); void *data; + int ret; + struct recv_comp_data *rcd; + u16 q_idx = channel->offermsg.offer.sub_channel_index; /* * All inbound packets other than send completion should be xfer page @@ -1069,13 +1158,29 @@ /* Pass it to the upper layer */ status = rndis_filter_receive(device, netvsc_packet, &data, channel); + } + if (!net_device->mrc[q_idx].buf) { + ret = netvsc_send_recv_completion(channel, + vmxferpage_packet->d.trans_id, + status); + if (ret) + netdev_err(ndev, "Recv_comp q:%hd, tid:%llx, err:%d\n", + q_idx, vmxferpage_packet->d.trans_id, ret); + return; } - netvsc_send_recv_completion(device, channel, net_device, - vmxferpage_packet->d.trans_id, status); -} + rcd = get_recv_comp_slot(net_device, channel, q_idx); + if (!rcd) { + netdev_err(ndev, "Recv_comp full buf q:%hd, tid:%llx\n", + q_idx, vmxferpage_packet->d.trans_id); + return; + } + + rcd->tid = vmxferpage_packet->d.trans_id; + rcd->status = status; +} static void netvsc_send_table(struct hv_device *hdev, struct nvsp_message *nvmsg) @@ -1157,11 +1262,11 @@ } } - void netvsc_channel_cb(void *context) { int ret; struct vmbus_channel *channel = (struct vmbus_channel *)context; + u16 q_idx = channel->offermsg.offer.sub_channel_index; struct hv_device *device; struct netvsc_device *net_device; u32 bytes_recvd; @@ -1183,6 +1288,9 @@ ndev = hv_get_drvdata(device); buffer = get_per_channel_state(channel); + /* commit_rd_index() -> hv_signal_on_read() needs this. */ + init_cached_read_index(channel); + do { desc = get_next_pkt_raw(channel); if (desc != NULL) { @@ -1213,8 +1321,6 @@ ndev, request_id, desc); - - } else { /* * We are done for this pass. @@ -1237,11 +1343,15 @@ bufferlen = bytes_recvd; } + + init_cached_read_index(channel); + } while (1); if (bufferlen > NETVSC_PACKET_SIZE) kfree(buffer); - return; + + netvsc_chk_recv_comp(net_device, channel, q_idx); } /* @@ -1263,9 +1373,6 @@ net_device->ring_size = ring_size; - /* Initialize the NetVSC channel extension */ - init_completion(&net_device->channel_init_wait); - set_per_channel_state(device->channel, net_device->cb_buffer); /* Open the channel */ --- linux-4.8.0.orig/drivers/net/hyperv/netvsc_drv.c +++ linux-4.8.0/drivers/net/hyperv/netvsc_drv.c @@ -40,7 +40,6 @@ #include "hyperv_net.h" - #define RING_SIZE_MIN 64 #define LINKCHANGE_INT (2 * HZ) #define NETVSC_HW_FEATURES (NETIF_F_RXCSUM | \ @@ -48,6 +47,10 @@ NETIF_F_TSO | \ NETIF_F_TSO6 | \ NETIF_F_HW_CSUM) + +/* Restrict GSO size to account for NVGRE */ +#define NETVSC_GSO_MAX_SIZE 62768 + static int ring_size = 128; module_param(ring_size, int, S_IRUGO); MODULE_PARM_DESC(ring_size, "Ring buffer size (# of pages)"); @@ -358,18 +361,14 @@ struct rndis_message *rndis_msg; struct rndis_packet *rndis_pkt; u32 rndis_msg_size; - bool isvlan; - bool linear = false; struct rndis_per_packet_info *ppi; struct ndis_tcp_ip_checksum_info *csum_info; - struct ndis_tcp_lso_info *lso_info; int hdr_offset; u32 net_trans_info; u32 hash; u32 skb_length; struct hv_page_buffer page_buf[MAX_PAGE_BUFFER_COUNT]; struct hv_page_buffer *pb = page_buf; - struct netvsc_stats *tx_stats = this_cpu_ptr(net_device_ctx->tx_stats); /* We will atmost need two pages to describe the rndis * header. We can only transmit MAX_PAGE_BUFFER_COUNT number @@ -377,22 +376,20 @@ * more pages we try linearizing it. */ -check_size: skb_length = skb->len; num_data_pgs = netvsc_get_slots(skb) + 2; - if (num_data_pgs > MAX_PAGE_BUFFER_COUNT && linear) { - net_alert_ratelimited("packet too big: %u pages (%u bytes)\n", - num_data_pgs, skb->len); - ret = -EFAULT; - goto drop; - } else if (num_data_pgs > MAX_PAGE_BUFFER_COUNT) { - if (skb_linearize(skb)) { - net_alert_ratelimited("failed to linearize skb\n"); - ret = -ENOMEM; + + if (unlikely(num_data_pgs > MAX_PAGE_BUFFER_COUNT)) { + ++net_device_ctx->eth_stats.tx_scattered; + + if (skb_linearize(skb)) + goto no_memory; + + num_data_pgs = netvsc_get_slots(skb) + 2; + if (num_data_pgs > MAX_PAGE_BUFFER_COUNT) { + ++net_device_ctx->eth_stats.tx_too_big; goto drop; } - linear = true; - goto check_size; } /* @@ -401,17 +398,14 @@ * structure. */ ret = skb_cow_head(skb, RNDIS_AND_PPI_SIZE); - if (ret) { - netdev_err(net, "unable to alloc hv_netvsc_packet\n"); - ret = -ENOMEM; - goto drop; - } + if (ret) + goto no_memory; + /* Use the skb control buffer for building up the packet */ BUILD_BUG_ON(sizeof(struct hv_netvsc_packet) > FIELD_SIZEOF(struct sk_buff, cb)); packet = (struct hv_netvsc_packet *)skb->cb; - packet->q_idx = skb_get_queue_mapping(skb); packet->total_data_buflen = skb->len; @@ -420,8 +414,6 @@ memset(rndis_msg, 0, RNDIS_AND_PPI_SIZE); - isvlan = skb->vlan_tci & VLAN_TAG_PRESENT; - /* Add the rndis header */ rndis_msg->ndis_msg_type = RNDIS_MSG_PACKET; rndis_msg->msg_len = packet->total_data_buflen; @@ -440,7 +432,7 @@ *(u32 *)((void *)ppi + ppi->ppi_offset) = hash; } - if (isvlan) { + if (skb_vlan_tag_present(skb)) { struct ndis_pkt_8021q_info *vlan; rndis_msg_size += NDIS_VLAN_PPI_SIZE; @@ -454,92 +446,63 @@ } net_trans_info = get_net_transport_info(skb, &hdr_offset); - if (net_trans_info == TRANSPORT_INFO_NOT_IP) - goto do_send; /* * Setup the sendside checksum offload only if this is not a * GSO packet. */ - if (skb_is_gso(skb)) - goto do_lso; - - if ((skb->ip_summed == CHECKSUM_NONE) || - (skb->ip_summed == CHECKSUM_UNNECESSARY)) - goto do_send; - - rndis_msg_size += NDIS_CSUM_PPI_SIZE; - ppi = init_ppi_data(rndis_msg, NDIS_CSUM_PPI_SIZE, - TCPIP_CHKSUM_PKTINFO); - - csum_info = (struct ndis_tcp_ip_checksum_info *)((void *)ppi + - ppi->ppi_offset); - - if (net_trans_info & (INFO_IPV4 << 16)) - csum_info->transmit.is_ipv4 = 1; - else - csum_info->transmit.is_ipv6 = 1; - - if (net_trans_info & INFO_TCP) { - csum_info->transmit.tcp_checksum = 1; - csum_info->transmit.tcp_header_offset = hdr_offset; - } else if (net_trans_info & INFO_UDP) { - /* UDP checksum offload is not supported on ws2008r2. - * Furthermore, on ws2012 and ws2012r2, there are some - * issues with udp checksum offload from Linux guests. - * (these are host issues). - * For now compute the checksum here. - */ - struct udphdr *uh; - u16 udp_len; + if ((net_trans_info & (INFO_TCP | INFO_UDP)) && skb_is_gso(skb)) { + struct ndis_tcp_lso_info *lso_info; - ret = skb_cow_head(skb, 0); - if (ret) - goto drop; + rndis_msg_size += NDIS_LSO_PPI_SIZE; + ppi = init_ppi_data(rndis_msg, NDIS_LSO_PPI_SIZE, + TCP_LARGESEND_PKTINFO); + + lso_info = (struct ndis_tcp_lso_info *)((void *)ppi + + ppi->ppi_offset); + + lso_info->lso_v2_transmit.type = NDIS_TCP_LARGE_SEND_OFFLOAD_V2_TYPE; + if (net_trans_info & (INFO_IPV4 << 16)) { + lso_info->lso_v2_transmit.ip_version = + NDIS_TCP_LARGE_SEND_OFFLOAD_IPV4; + ip_hdr(skb)->tot_len = 0; + ip_hdr(skb)->check = 0; + tcp_hdr(skb)->check = + ~csum_tcpudp_magic(ip_hdr(skb)->saddr, + ip_hdr(skb)->daddr, 0, IPPROTO_TCP, 0); + } else { + lso_info->lso_v2_transmit.ip_version = + NDIS_TCP_LARGE_SEND_OFFLOAD_IPV6; + ipv6_hdr(skb)->payload_len = 0; + tcp_hdr(skb)->check = + ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr, + &ipv6_hdr(skb)->daddr, 0, IPPROTO_TCP, 0); + } + lso_info->lso_v2_transmit.tcp_header_offset = hdr_offset; + lso_info->lso_v2_transmit.mss = skb_shinfo(skb)->gso_size; + } else if (skb->ip_summed == CHECKSUM_PARTIAL) { + if (net_trans_info & INFO_TCP) { + rndis_msg_size += NDIS_CSUM_PPI_SIZE; + ppi = init_ppi_data(rndis_msg, NDIS_CSUM_PPI_SIZE, + TCPIP_CHKSUM_PKTINFO); + + csum_info = (struct ndis_tcp_ip_checksum_info *)((void *)ppi + + ppi->ppi_offset); + + if (net_trans_info & (INFO_IPV4 << 16)) + csum_info->transmit.is_ipv4 = 1; + else + csum_info->transmit.is_ipv6 = 1; - uh = udp_hdr(skb); - udp_len = ntohs(uh->len); - uh->check = 0; - uh->check = csum_tcpudp_magic(ip_hdr(skb)->saddr, - ip_hdr(skb)->daddr, - udp_len, IPPROTO_UDP, - csum_partial(uh, udp_len, 0)); - if (uh->check == 0) - uh->check = CSUM_MANGLED_0; - - csum_info->transmit.udp_checksum = 0; - } - goto do_send; - -do_lso: - rndis_msg_size += NDIS_LSO_PPI_SIZE; - ppi = init_ppi_data(rndis_msg, NDIS_LSO_PPI_SIZE, - TCP_LARGESEND_PKTINFO); - - lso_info = (struct ndis_tcp_lso_info *)((void *)ppi + - ppi->ppi_offset); - - lso_info->lso_v2_transmit.type = NDIS_TCP_LARGE_SEND_OFFLOAD_V2_TYPE; - if (net_trans_info & (INFO_IPV4 << 16)) { - lso_info->lso_v2_transmit.ip_version = - NDIS_TCP_LARGE_SEND_OFFLOAD_IPV4; - ip_hdr(skb)->tot_len = 0; - ip_hdr(skb)->check = 0; - tcp_hdr(skb)->check = - ~csum_tcpudp_magic(ip_hdr(skb)->saddr, - ip_hdr(skb)->daddr, 0, IPPROTO_TCP, 0); - } else { - lso_info->lso_v2_transmit.ip_version = - NDIS_TCP_LARGE_SEND_OFFLOAD_IPV6; - ipv6_hdr(skb)->payload_len = 0; - tcp_hdr(skb)->check = - ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr, - &ipv6_hdr(skb)->daddr, 0, IPPROTO_TCP, 0); + csum_info->transmit.tcp_checksum = 1; + csum_info->transmit.tcp_header_offset = hdr_offset; + } else { + /* UDP checksum (and other) offload is not supported. */ + if (skb_checksum_help(skb)) + goto drop; + } } - lso_info->lso_v2_transmit.tcp_header_offset = hdr_offset; - lso_info->lso_v2_transmit.mss = skb_shinfo(skb)->gso_size; -do_send: /* Start filling in the page buffers with the rndis hdr */ rndis_msg->msg_len += rndis_msg_size; packet->total_data_buflen = rndis_msg->msg_len; @@ -550,21 +513,33 @@ skb_tx_timestamp(skb); ret = netvsc_send(net_device_ctx->device_ctx, packet, rndis_msg, &pb, skb); + if (likely(ret == 0)) { + struct netvsc_stats *tx_stats = this_cpu_ptr(net_device_ctx->tx_stats); -drop: - if (ret == 0) { u64_stats_update_begin(&tx_stats->syncp); tx_stats->packets++; tx_stats->bytes += skb_length; u64_stats_update_end(&tx_stats->syncp); - } else { - if (ret != -EAGAIN) { - dev_kfree_skb_any(skb); - net->stats.tx_dropped++; - } + return NETDEV_TX_OK; } - return (ret == -EAGAIN) ? NETDEV_TX_BUSY : NETDEV_TX_OK; + if (ret == -EAGAIN) { + ++net_device_ctx->eth_stats.tx_busy; + return NETDEV_TX_BUSY; + } + + if (ret == -ENOSPC) + ++net_device_ctx->eth_stats.tx_no_space; + +drop: + dev_kfree_skb_any(skb); + net->stats.tx_dropped++; + + return NETDEV_TX_OK; + +no_memory: + ++net_device_ctx->eth_stats.tx_no_memory; + goto drop; } /* @@ -579,19 +554,32 @@ struct netvsc_reconfig *event; unsigned long flags; - /* Handle link change statuses only */ + net = hv_get_drvdata(device_obj); + + if (!net) + return; + + ndev_ctx = netdev_priv(net); + + /* Update the physical link speed when changing to another vSwitch */ + if (indicate->status == RNDIS_STATUS_LINK_SPEED_CHANGE) { + u32 speed; + + speed = *(u32 *)((void *)indicate + indicate-> + status_buf_offset) / 10000; + ndev_ctx->speed = speed; + return; + } + + /* Handle these link change statuses below */ if (indicate->status != RNDIS_STATUS_NETWORK_CHANGE && indicate->status != RNDIS_STATUS_MEDIA_CONNECT && indicate->status != RNDIS_STATUS_MEDIA_DISCONNECT) return; - net = hv_get_drvdata(device_obj); - - if (!net || net->reg_state != NETREG_REGISTERED) + if (net->reg_state != NETREG_REGISTERED) return; - ndev_ctx = netdev_priv(net); - event = kzalloc(sizeof(*event), GFP_ATOMIC); if (!event) return; @@ -604,7 +592,6 @@ schedule_delayed_work(&ndev_ctx->dwork, 0); } - static struct sk_buff *netvsc_alloc_recv_skb(struct net_device *net, struct hv_netvsc_packet *packet, struct ndis_tcp_ip_checksum_info *csum_info, @@ -624,15 +611,18 @@ packet->total_data_buflen); skb->protocol = eth_type_trans(skb, net); - if (csum_info) { - /* We only look at the IP checksum here. - * Should we be dropping the packet if checksum - * failed? How do we deal with other checksums - TCP/UDP? - */ - if (csum_info->receive.ip_checksum_succeeded) + + /* skb is already created with CHECKSUM_NONE */ + skb_checksum_none_assert(skb); + + /* + * In Linux, the IP checksum is always checked. + * Do L4 checksum offload if enabled and present. + */ + if (csum_info && (net->features & NETIF_F_RXCSUM)) { + if (csum_info->receive.tcp_checksum_succeeded || + csum_info->receive.udp_checksum_succeeded) skb->ip_summed = CHECKSUM_UNNECESSARY; - else - skb->ip_summed = CHECKSUM_NONE; } if (vlan_tci & VLAN_TAG_PRESENT) @@ -655,64 +645,51 @@ { struct net_device *net = hv_get_drvdata(device_obj); struct net_device_context *net_device_ctx = netdev_priv(net); + struct net_device *vf_netdev; struct sk_buff *skb; - struct sk_buff *vf_skb; struct netvsc_stats *rx_stats; - u32 bytes_recvd = packet->total_data_buflen; - int ret = 0; - if (!net || net->reg_state != NETREG_REGISTERED) + if (net->reg_state != NETREG_REGISTERED) return NVSP_STAT_FAIL; - if (READ_ONCE(net_device_ctx->vf_inject)) { - atomic_inc(&net_device_ctx->vf_use_cnt); - if (!READ_ONCE(net_device_ctx->vf_inject)) { - /* - * We raced; just move on. - */ - atomic_dec(&net_device_ctx->vf_use_cnt); - goto vf_injection_done; - } - - /* - * Inject this packet into the VF inerface. - * On Hyper-V, multicast and brodcast packets - * are only delivered on the synthetic interface - * (after subjecting these to policy filters on - * the host). Deliver these via the VF interface - * in the guest. - */ - vf_skb = netvsc_alloc_recv_skb(net_device_ctx->vf_netdev, - packet, csum_info, *data, - vlan_tci); - if (vf_skb != NULL) { - ++net_device_ctx->vf_netdev->stats.rx_packets; - net_device_ctx->vf_netdev->stats.rx_bytes += - bytes_recvd; - netif_receive_skb(vf_skb); - } else { - ++net->stats.rx_dropped; - ret = NVSP_STAT_FAIL; - } - atomic_dec(&net_device_ctx->vf_use_cnt); - return ret; - } - -vf_injection_done: - rx_stats = this_cpu_ptr(net_device_ctx->rx_stats); + /* + * If necessary, inject this packet into the VF interface. + * On Hyper-V, multicast and brodcast packets are only delivered + * to the synthetic interface (after subjecting these to + * policy filters on the host). Deliver these via the VF + * interface in the guest. + */ + rcu_read_lock(); + vf_netdev = rcu_dereference(net_device_ctx->vf_netdev); + if (vf_netdev && (vf_netdev->flags & IFF_UP)) + net = vf_netdev; /* Allocate a skb - TODO direct I/O to pages? */ skb = netvsc_alloc_recv_skb(net, packet, csum_info, *data, vlan_tci); if (unlikely(!skb)) { ++net->stats.rx_dropped; + rcu_read_unlock(); return NVSP_STAT_FAIL; } - skb_record_rx_queue(skb, channel-> - offermsg.offer.sub_channel_index); + if (net != vf_netdev) + skb_record_rx_queue(skb, + channel->offermsg.offer.sub_channel_index); + + /* + * Even if injecting the packet, record the statistics + * on the synthetic device because modifying the VF device + * statistics will not work correctly. + */ + rx_stats = this_cpu_ptr(net_device_ctx->rx_stats); u64_stats_update_begin(&rx_stats->syncp); rx_stats->packets++; rx_stats->bytes += packet->total_data_buflen; + + if (skb->pkt_type == PACKET_BROADCAST) + ++rx_stats->broadcast; + else if (skb->pkt_type == PACKET_MULTICAST) + ++rx_stats->multicast; u64_stats_update_end(&rx_stats->syncp); /* @@ -721,6 +698,7 @@ * TODO - use NAPI? */ netif_rx(skb); + rcu_read_unlock(); return 0; } @@ -951,7 +929,7 @@ cpu); struct netvsc_stats *rx_stats = per_cpu_ptr(ndev_ctx->rx_stats, cpu); - u64 tx_packets, tx_bytes, rx_packets, rx_bytes; + u64 tx_packets, tx_bytes, rx_packets, rx_bytes, rx_multicast; unsigned int start; do { @@ -964,12 +942,14 @@ start = u64_stats_fetch_begin_irq(&rx_stats->syncp); rx_packets = rx_stats->packets; rx_bytes = rx_stats->bytes; + rx_multicast = rx_stats->multicast + rx_stats->broadcast; } while (u64_stats_fetch_retry_irq(&rx_stats->syncp, start)); t->tx_bytes += tx_bytes; t->tx_packets += tx_packets; t->rx_bytes += rx_bytes; t->rx_packets += rx_packets; + t->multicast += rx_multicast; } t->tx_dropped = net->stats.tx_dropped; @@ -1005,6 +985,51 @@ return err; } +static const struct { + char name[ETH_GSTRING_LEN]; + u16 offset; +} netvsc_stats[] = { + { "tx_scattered", offsetof(struct netvsc_ethtool_stats, tx_scattered) }, + { "tx_no_memory", offsetof(struct netvsc_ethtool_stats, tx_no_memory) }, + { "tx_no_space", offsetof(struct netvsc_ethtool_stats, tx_no_space) }, + { "tx_too_big", offsetof(struct netvsc_ethtool_stats, tx_too_big) }, + { "tx_busy", offsetof(struct netvsc_ethtool_stats, tx_busy) }, +}; + +static int netvsc_get_sset_count(struct net_device *dev, int string_set) +{ + switch (string_set) { + case ETH_SS_STATS: + return ARRAY_SIZE(netvsc_stats); + default: + return -EINVAL; + } +} + +static void netvsc_get_ethtool_stats(struct net_device *dev, + struct ethtool_stats *stats, u64 *data) +{ + struct net_device_context *ndc = netdev_priv(dev); + const void *nds = &ndc->eth_stats; + int i; + + for (i = 0; i < ARRAY_SIZE(netvsc_stats); i++) + data[i] = *(unsigned long *)(nds + netvsc_stats[i].offset); +} + +static void netvsc_get_strings(struct net_device *dev, u32 stringset, u8 *data) +{ + int i; + + switch (stringset) { + case ETH_SS_STATS: + for (i = 0; i < ARRAY_SIZE(netvsc_stats); i++) + memcpy(data + i * ETH_GSTRING_LEN, + netvsc_stats[i].name, ETH_GSTRING_LEN); + break; + } +} + #ifdef CONFIG_NET_POLL_CONTROLLER static void netvsc_poll_controller(struct net_device *net) { @@ -1017,6 +1042,9 @@ static const struct ethtool_ops ethtool_ops = { .get_drvinfo = netvsc_get_drvinfo, .get_link = ethtool_op_get_link, + .get_ethtool_stats = netvsc_get_ethtool_stats, + .get_sset_count = netvsc_get_sset_count, + .get_strings = netvsc_get_strings, .get_channels = netvsc_get_channels, .set_channels = netvsc_set_channels, .get_ts_info = ethtool_op_get_ts_info, @@ -1151,25 +1179,44 @@ free_netdev(netdev); } -static struct net_device *get_netvsc_net_device(char *mac) +static struct net_device *get_netvsc_bymac(const u8 *mac) { - struct net_device *dev, *found = NULL; - int rtnl_locked; + struct net_device *dev; - rtnl_locked = rtnl_trylock(); + ASSERT_RTNL(); for_each_netdev(&init_net, dev) { - if (memcmp(dev->dev_addr, mac, ETH_ALEN) == 0) { - if (dev->netdev_ops != &device_ops) - continue; - found = dev; - break; - } + if (dev->netdev_ops != &device_ops) + continue; /* not a netvsc device */ + + if (ether_addr_equal(mac, dev->perm_addr)) + return dev; + } + + return NULL; +} + +static struct net_device *get_netvsc_byref(struct net_device *vf_netdev) +{ + struct net_device *dev; + + ASSERT_RTNL(); + + for_each_netdev(&init_net, dev) { + struct net_device_context *net_device_ctx; + + if (dev->netdev_ops != &device_ops) + continue; /* not a netvsc device */ + + net_device_ctx = netdev_priv(dev); + if (net_device_ctx->nvdev == NULL) + continue; /* device is removed */ + + if (rtnl_dereference(net_device_ctx->vf_netdev) == vf_netdev) + return dev; /* a match */ } - if (rtnl_locked) - rtnl_unlock(); - return found; + return NULL; } static int netvsc_register_vf(struct net_device *vf_netdev) @@ -1177,9 +1224,8 @@ struct net_device *ndev; struct net_device_context *net_device_ctx; struct netvsc_device *netvsc_dev; - const struct ethtool_ops *eth_ops = vf_netdev->ethtool_ops; - if (eth_ops == NULL || eth_ops == ðtool_ops) + if (vf_netdev->addr_len != ETH_ALEN) return NOTIFY_DONE; /* @@ -1187,13 +1233,13 @@ * associate with the VF interface. If we don't find a matching * synthetic interface, move on. */ - ndev = get_netvsc_net_device(vf_netdev->dev_addr); + ndev = get_netvsc_bymac(vf_netdev->perm_addr); if (!ndev) return NOTIFY_DONE; net_device_ctx = netdev_priv(ndev); netvsc_dev = net_device_ctx->nvdev; - if (!netvsc_dev || net_device_ctx->vf_netdev) + if (!netvsc_dev || rtnl_dereference(net_device_ctx->vf_netdev)) return NOTIFY_DONE; netdev_info(ndev, "VF registering: %s\n", vf_netdev->name); @@ -1201,46 +1247,26 @@ * Take a reference on the module. */ try_module_get(THIS_MODULE); - net_device_ctx->vf_netdev = vf_netdev; - return NOTIFY_OK; -} - -static void netvsc_inject_enable(struct net_device_context *net_device_ctx) -{ - net_device_ctx->vf_inject = true; -} -static void netvsc_inject_disable(struct net_device_context *net_device_ctx) -{ - net_device_ctx->vf_inject = false; - - /* Wait for currently active users to drain out. */ - while (atomic_read(&net_device_ctx->vf_use_cnt) != 0) - udelay(50); + dev_hold(vf_netdev); + rcu_assign_pointer(net_device_ctx->vf_netdev, vf_netdev); + return NOTIFY_OK; } static int netvsc_vf_up(struct net_device *vf_netdev) { struct net_device *ndev; struct netvsc_device *netvsc_dev; - const struct ethtool_ops *eth_ops = vf_netdev->ethtool_ops; struct net_device_context *net_device_ctx; - if (eth_ops == ðtool_ops) - return NOTIFY_DONE; - - ndev = get_netvsc_net_device(vf_netdev->dev_addr); + ndev = get_netvsc_byref(vf_netdev); if (!ndev) return NOTIFY_DONE; net_device_ctx = netdev_priv(ndev); netvsc_dev = net_device_ctx->nvdev; - if (!netvsc_dev || !net_device_ctx->vf_netdev) - return NOTIFY_DONE; - netdev_info(ndev, "VF up: %s\n", vf_netdev->name); - netvsc_inject_enable(net_device_ctx); /* * Open the device before switching data path. @@ -1261,29 +1287,20 @@ return NOTIFY_OK; } - static int netvsc_vf_down(struct net_device *vf_netdev) { struct net_device *ndev; struct netvsc_device *netvsc_dev; struct net_device_context *net_device_ctx; - const struct ethtool_ops *eth_ops = vf_netdev->ethtool_ops; - if (eth_ops == ðtool_ops) - return NOTIFY_DONE; - - ndev = get_netvsc_net_device(vf_netdev->dev_addr); + ndev = get_netvsc_byref(vf_netdev); if (!ndev) return NOTIFY_DONE; net_device_ctx = netdev_priv(ndev); netvsc_dev = net_device_ctx->nvdev; - if (!netvsc_dev || !net_device_ctx->vf_netdev) - return NOTIFY_DONE; - netdev_info(ndev, "VF down: %s\n", vf_netdev->name); - netvsc_inject_disable(net_device_ctx); netvsc_switch_datapath(ndev, false); netdev_info(ndev, "Data path switched from VF: %s\n", vf_netdev->name); rndis_filter_close(netvsc_dev); @@ -1295,28 +1312,23 @@ return NOTIFY_OK; } - static int netvsc_unregister_vf(struct net_device *vf_netdev) { struct net_device *ndev; struct netvsc_device *netvsc_dev; - const struct ethtool_ops *eth_ops = vf_netdev->ethtool_ops; struct net_device_context *net_device_ctx; - if (eth_ops == ðtool_ops) - return NOTIFY_DONE; - - ndev = get_netvsc_net_device(vf_netdev->dev_addr); + ndev = get_netvsc_byref(vf_netdev); if (!ndev) return NOTIFY_DONE; net_device_ctx = netdev_priv(ndev); netvsc_dev = net_device_ctx->nvdev; - if (!netvsc_dev || !net_device_ctx->vf_netdev) - return NOTIFY_DONE; + netdev_info(ndev, "VF unregistering: %s\n", vf_netdev->name); - netvsc_inject_disable(net_device_ctx); - net_device_ctx->vf_netdev = NULL; + + RCU_INIT_POINTER(net_device_ctx->vf_netdev, NULL); + dev_put(vf_netdev); module_put(THIS_MODULE); return NOTIFY_OK; } @@ -1337,6 +1349,8 @@ netif_carrier_off(net); + netvsc_init_settings(net); + net_device_ctx = netdev_priv(net); net_device_ctx->device_ctx = dev; net_device_ctx->msg_enable = netif_msg_init(debug, default_msg); @@ -1366,10 +1380,6 @@ spin_lock_init(&net_device_ctx->lock); INIT_LIST_HEAD(&net_device_ctx->reconfig_events); - atomic_set(&net_device_ctx->vf_use_cnt, 0); - net_device_ctx->vf_netdev = NULL; - net_device_ctx->vf_inject = false; - net->netdev_ops = &device_ops; net->hw_features = NETVSC_HW_FEATURES; @@ -1397,8 +1407,7 @@ nvdev = net_device_ctx->nvdev; netif_set_real_num_tx_queues(net, nvdev->num_chn); netif_set_real_num_rx_queues(net, nvdev->num_chn); - - netvsc_init_settings(net); + netif_set_gso_max_size(net, NETVSC_GSO_MAX_SIZE); ret = register_netdev(net); if (ret != 0) { @@ -1423,7 +1432,6 @@ return 0; } - ndev_ctx = netdev_priv(net); net_device = ndev_ctx->nvdev; @@ -1470,7 +1478,6 @@ .remove = netvsc_remove, }; - /* * On Hyper-V, every VF interface is matched with a corresponding * synthetic interface. The synthetic interface is presented first @@ -1482,13 +1489,21 @@ { struct net_device *event_dev = netdev_notifier_info_to_dev(ptr); + /* Skip our own events */ + if (event_dev->netdev_ops == &device_ops) + return NOTIFY_DONE; + + /* Avoid non-Ethernet type devices */ + if (event_dev->type != ARPHRD_ETHER) + return NOTIFY_DONE; + /* Avoid Vlan dev with same MAC registering as VF */ if (event_dev->priv_flags & IFF_802_1Q_VLAN) return NOTIFY_DONE; /* Avoid Bonding master dev with same MAC registering as VF */ - if (event_dev->priv_flags & IFF_BONDING && - event_dev->flags & IFF_MASTER) + if ((event_dev->priv_flags & IFF_BONDING) && + (event_dev->flags & IFF_MASTER)) return NOTIFY_DONE; switch (event) { --- linux-4.8.0.orig/drivers/net/hyperv/rndis_filter.c +++ linux-4.8.0/drivers/net/hyperv/rndis_filter.c @@ -663,13 +663,14 @@ return ret; } -u8 netvsc_hash_key[HASH_KEYLEN] = { +static const u8 netvsc_hash_key[] = { 0x6d, 0x5a, 0x56, 0xda, 0x25, 0x5b, 0x0e, 0xc2, 0x41, 0x67, 0x25, 0x3d, 0x43, 0xa3, 0x8f, 0xb0, 0xd0, 0xca, 0x2b, 0xcb, 0xae, 0x7b, 0x30, 0xb4, 0x77, 0xcb, 0x2d, 0xa3, 0x80, 0x30, 0xf2, 0x0c, 0x6a, 0x42, 0xb7, 0x3b, 0xbe, 0xac, 0x01, 0xfa }; +#define HASH_KEYLEN ARRAY_SIZE(netvsc_hash_key) static int rndis_filter_set_rss_param(struct rndis_device *rdev, int num_queue) { @@ -720,7 +721,6 @@ for (i = 0; i < HASH_KEYLEN; i++) keyp[i] = netvsc_hash_key[i]; - ret = rndis_filter_send_request(rdev, request); if (ret != 0) goto cleanup; @@ -738,7 +738,6 @@ return ret; } - static int rndis_filter_query_device_link_status(struct rndis_device *dev) { u32 size = sizeof(u32); @@ -752,6 +751,28 @@ return ret; } +static int rndis_filter_query_link_speed(struct rndis_device *dev) +{ + u32 size = sizeof(u32); + u32 link_speed; + struct net_device_context *ndc; + int ret; + + ret = rndis_filter_query_device(dev, RNDIS_OID_GEN_LINK_SPEED, + &link_speed, &size); + + if (!ret) { + ndc = netdev_priv(dev->ndev); + + /* The link speed reported from host is in 100bps unit, so + * we convert it to Mbps here. + */ + ndc->speed = link_speed / 10000; + } + + return ret; +} + int rndis_filter_set_packet_filter(struct rndis_device *dev, u32 new_filter) { struct rndis_request *request; @@ -792,7 +813,6 @@ return ret; } - static int rndis_filter_init_device(struct rndis_device *dev) { struct rndis_request *request; @@ -875,11 +895,11 @@ /* Wait for all send completions */ wait_event(nvdev->wait_drain, - atomic_read(&nvdev->num_outstanding_sends) == 0); + atomic_read(&nvdev->num_outstanding_sends) == 0 && + atomic_read(&nvdev->num_outstanding_recvs) == 0); if (request) put_rndis_request(dev, request); - return; } static int rndis_filter_open_device(struct rndis_device *dev) @@ -931,6 +951,9 @@ set_per_channel_state(new_sc, nvscdev->sub_cb_buf + (chn_index - 1) * NETVSC_PACKET_SIZE); + nvscdev->mrc[chn_index].buf = vzalloc(NETVSC_RECVSLOT_MAX * + sizeof(struct recv_comp_data)); + ret = vmbus_open(new_sc, nvscdev->ring_size * PAGE_SIZE, nvscdev->ring_size * PAGE_SIZE, NULL, 0, netvsc_channel_cb, new_sc); @@ -946,7 +969,7 @@ } int rndis_filter_device_add(struct hv_device *dev, - void *additional_info) + void *additional_info) { int ret; struct net_device *net = hv_get_drvdata(dev); @@ -1028,7 +1051,6 @@ offloads.udp_ip_v6_csum = NDIS_OFFLOAD_PARAMETERS_TX_RX_ENABLED; offloads.lso_v2_ipv4 = NDIS_OFFLOAD_PARAMETERS_LSOV2_ENABLED; - ret = rndis_filter_set_offload_params(net, &offloads); if (ret) goto err_dev_remv; @@ -1044,6 +1066,8 @@ if (net_device->nvsp_version < NVSP_PROTOCOL_VERSION_5) return 0; + rndis_filter_query_link_speed(rndis_device); + /* vRSS setup */ memset(&rsscap, 0, rsscap_size); ret = rndis_filter_query_device(rndis_device, @@ -1152,7 +1176,6 @@ netvsc_device_remove(dev); } - int rndis_filter_open(struct netvsc_device *nvdev) { if (!nvdev) --- linux-4.8.0.orig/drivers/net/macsec.c +++ linux-4.8.0/drivers/net/macsec.c @@ -397,6 +397,14 @@ #define DEFAULT_ENCRYPT false #define DEFAULT_ENCODING_SA 0 +static bool send_sci(const struct macsec_secy *secy) +{ + const struct macsec_tx_sc *tx_sc = &secy->tx_sc; + + return tx_sc->send_sci || + (secy->n_rx_sc > 1 && !tx_sc->end_station && !tx_sc->scb); +} + static sci_t make_sci(u8 *addr, __be16 port) { sci_t sci; @@ -437,15 +445,15 @@ /* Fill SecTAG according to IEEE 802.1AE-2006 10.5.3 */ static void macsec_fill_sectag(struct macsec_eth_header *h, - const struct macsec_secy *secy, u32 pn) + const struct macsec_secy *secy, u32 pn, + bool sci_present) { const struct macsec_tx_sc *tx_sc = &secy->tx_sc; - memset(&h->tci_an, 0, macsec_sectag_len(tx_sc->send_sci)); + memset(&h->tci_an, 0, macsec_sectag_len(sci_present)); h->eth.h_proto = htons(ETH_P_MACSEC); - if (tx_sc->send_sci || - (secy->n_rx_sc > 1 && !tx_sc->end_station && !tx_sc->scb)) { + if (sci_present) { h->tci_an |= MACSEC_TCI_SC; memcpy(&h->secure_channel_id, &secy->sci, sizeof(h->secure_channel_id)); @@ -609,7 +617,8 @@ static struct aead_request *macsec_alloc_req(struct crypto_aead *tfm, unsigned char **iv, - struct scatterlist **sg) + struct scatterlist **sg, + int num_frags) { size_t size, iv_offset, sg_offset; struct aead_request *req; @@ -621,7 +630,7 @@ size = ALIGN(size, __alignof__(struct scatterlist)); sg_offset = size; - size += sizeof(struct scatterlist) * (MAX_SKB_FRAGS + 1); + size += sizeof(struct scatterlist) * num_frags; tmp = kmalloc(size, GFP_ATOMIC); if (!tmp) @@ -641,6 +650,7 @@ { int ret; struct scatterlist *sg; + struct sk_buff *trailer; unsigned char *iv; struct ethhdr *eth; struct macsec_eth_header *hh; @@ -650,6 +660,7 @@ struct macsec_tx_sc *tx_sc; struct macsec_tx_sa *tx_sa; struct macsec_dev *macsec = macsec_priv(dev); + bool sci_present; u32 pn; secy = &macsec->secy; @@ -687,7 +698,8 @@ unprotected_len = skb->len; eth = eth_hdr(skb); - hh = (struct macsec_eth_header *)skb_push(skb, macsec_extra_len(tx_sc->send_sci)); + sci_present = send_sci(secy); + hh = (struct macsec_eth_header *)skb_push(skb, macsec_extra_len(sci_present)); memmove(hh, eth, 2 * ETH_ALEN); pn = tx_sa_update_pn(tx_sa, secy); @@ -696,7 +708,7 @@ kfree_skb(skb); return ERR_PTR(-ENOLINK); } - macsec_fill_sectag(hh, secy, pn); + macsec_fill_sectag(hh, secy, pn, sci_present); macsec_set_shortlen(hh, unprotected_len - 2 * ETH_ALEN); skb_put(skb, secy->icv_len); @@ -713,7 +725,14 @@ return ERR_PTR(-EINVAL); } - req = macsec_alloc_req(tx_sa->key.tfm, &iv, &sg); + ret = skb_cow_data(skb, 0, &trailer); + if (unlikely(ret < 0)) { + macsec_txsa_put(tx_sa); + kfree_skb(skb); + return ERR_PTR(ret); + } + + req = macsec_alloc_req(tx_sa->key.tfm, &iv, &sg, ret); if (!req) { macsec_txsa_put(tx_sa); kfree_skb(skb); @@ -722,14 +741,14 @@ macsec_fill_iv(iv, secy->sci, pn); - sg_init_table(sg, MAX_SKB_FRAGS + 1); + sg_init_table(sg, ret); skb_to_sgvec(skb, sg, 0, skb->len); if (tx_sc->encrypt) { - int len = skb->len - macsec_hdr_len(tx_sc->send_sci) - + int len = skb->len - macsec_hdr_len(sci_present) - secy->icv_len; aead_request_set_crypt(req, sg, sg, len, iv); - aead_request_set_ad(req, macsec_hdr_len(tx_sc->send_sci)); + aead_request_set_ad(req, macsec_hdr_len(sci_present)); } else { aead_request_set_crypt(req, sg, sg, 0, iv); aead_request_set_ad(req, skb->len - secy->icv_len); @@ -904,6 +923,7 @@ { int ret; struct scatterlist *sg; + struct sk_buff *trailer; unsigned char *iv; struct aead_request *req; struct macsec_eth_header *hdr; @@ -914,7 +934,12 @@ if (!skb) return ERR_PTR(-ENOMEM); - req = macsec_alloc_req(rx_sa->key.tfm, &iv, &sg); + ret = skb_cow_data(skb, 0, &trailer); + if (unlikely(ret < 0)) { + kfree_skb(skb); + return ERR_PTR(ret); + } + req = macsec_alloc_req(rx_sa->key.tfm, &iv, &sg, ret); if (!req) { kfree_skb(skb); return ERR_PTR(-ENOMEM); @@ -923,7 +948,7 @@ hdr = (struct macsec_eth_header *)skb->data; macsec_fill_iv(iv, sci, ntohl(hdr->packet_number)); - sg_init_table(sg, MAX_SKB_FRAGS + 1); + sg_init_table(sg, ret); skb_to_sgvec(skb, sg, 0, skb->len); if (hdr->tci_an & MACSEC_TCI_E) { --- linux-4.8.0.orig/drivers/net/macvtap.c +++ linux-4.8.0/drivers/net/macvtap.c @@ -821,9 +821,8 @@ if (iov_iter_count(iter) < vnet_hdr_len) return -EINVAL; - ret = virtio_net_hdr_from_skb(skb, &vnet_hdr, - macvtap_is_little_endian(q)); - if (ret) + if (virtio_net_hdr_from_skb(skb, &vnet_hdr, + macvtap_is_little_endian(q), true)) BUG(); if (copy_to_iter(&vnet_hdr, sizeof(vnet_hdr), iter) != --- linux-4.8.0.orig/drivers/net/phy/marvell.c +++ linux-4.8.0/drivers/net/phy/marvell.c @@ -1194,7 +1194,8 @@ int err; /* Check the fiber mode first */ - if (phydev->supported & SUPPORTED_FIBRE) { + if (phydev->supported & SUPPORTED_FIBRE && + phydev->interface != PHY_INTERFACE_MODE_SGMII) { err = phy_write(phydev, MII_MARVELL_PHY_PAGE, MII_M1111_FIBER); if (err < 0) goto error; --- linux-4.8.0.orig/drivers/net/phy/mdio-xgene.c +++ linux-4.8.0/drivers/net/phy/mdio-xgene.c @@ -229,7 +229,7 @@ val = SET_VAL(HSTPHYADX, phy_id) | SET_VAL(HSTREGADX, reg) | SET_VAL(HSTMIIMWRDAT, data); - xgene_enet_wr_mdio_csr(addr, MIIM_FIELD_ADDR, data); + xgene_enet_wr_mdio_csr(addr, MIIM_FIELD_ADDR, val); val = HSTLDCMD | SET_VAL(HSTMIIMCMD, MIIM_CMD_LEGACY_WRITE); xgene_enet_wr_mdio_csr(addr, MIIM_COMMAND_ADDR, val); --- linux-4.8.0.orig/drivers/net/phy/phy.c +++ linux-4.8.0/drivers/net/phy/phy.c @@ -608,6 +608,21 @@ } /** + * phy_trigger_machine - trigger the state machine to run + * + * @phydev: the phy_device struct + * + * Description: There has been a change in state which requires that the + * state machine runs. + */ + +static void phy_trigger_machine(struct phy_device *phydev) +{ + cancel_delayed_work_sync(&phydev->state_queue); + queue_delayed_work(system_power_efficient_wq, &phydev->state_queue, 0); +} + +/** * phy_stop_machine - stop the PHY state machine tracking * @phydev: target phy_device struct * @@ -639,6 +654,8 @@ mutex_lock(&phydev->lock); phydev->state = PHY_HALTED; mutex_unlock(&phydev->lock); + + phy_trigger_machine(phydev); } /** @@ -800,8 +817,7 @@ } /* reschedule state queue work to run as soon as possible */ - cancel_delayed_work_sync(&phydev->state_queue); - queue_delayed_work(system_power_efficient_wq, &phydev->state_queue, 0); + phy_trigger_machine(phydev); return; ignore: @@ -890,6 +906,8 @@ /* if phy was suspended, bring the physical link up again */ if (do_resume) phy_resume(phydev); + + phy_trigger_machine(phydev); } EXPORT_SYMBOL(phy_start); --- linux-4.8.0.orig/drivers/net/tun.c +++ linux-4.8.0/drivers/net/tun.c @@ -1266,8 +1266,7 @@ return -EFAULT; } - err = virtio_net_hdr_to_skb(skb, &gso, tun_is_little_endian(tun)); - if (err) { + if (virtio_net_hdr_to_skb(skb, &gso, tun_is_little_endian(tun))) { this_cpu_inc(tun->pcpu_stats->rx_frame_errors); kfree_skb(skb); return -EINVAL; @@ -1381,9 +1380,8 @@ if (iov_iter_count(iter) < vnet_hdr_sz) return -EINVAL; - ret = virtio_net_hdr_from_skb(skb, &gso, - tun_is_little_endian(tun)); - if (ret) { + if (virtio_net_hdr_from_skb(skb, &gso, + tun_is_little_endian(tun), true)) { struct skb_shared_info *sinfo = skb_shinfo(skb); pr_err("unexpected GSO type: " "0x%x, gso_size %d, hdr_len %d\n", --- linux-4.8.0.orig/drivers/net/usb/cdc_ether.c +++ linux-4.8.0/drivers/net/usb/cdc_ether.c @@ -388,12 +388,6 @@ case USB_CDC_NOTIFY_NETWORK_CONNECTION: netif_dbg(dev, timer, dev->net, "CDC: carrier %s\n", event->wValue ? "on" : "off"); - - /* Work-around for devices with broken off-notifications */ - if (event->wValue && - !test_bit(__LINK_STATE_NOCARRIER, &dev->net->state)) - usbnet_link_change(dev, 0, 0); - usbnet_link_change(dev, !!event->wValue, 0); break; case USB_CDC_NOTIFY_SPEED_CHANGE: /* tx/rx rates */ @@ -466,6 +460,36 @@ return 1; } +/* Ensure correct link state + * + * Some devices (ZTE MF823/831/910) export two carrier on notifications when + * connected. This causes the link state to be incorrect. Work around this by + * always setting the state to off, then on. + */ +void usbnet_cdc_zte_status(struct usbnet *dev, struct urb *urb) +{ + struct usb_cdc_notification *event; + + if (urb->actual_length < sizeof(*event)) + return; + + event = urb->transfer_buffer; + + if (event->bNotificationType != USB_CDC_NOTIFY_NETWORK_CONNECTION) { + usbnet_cdc_status(dev, urb); + return; + } + + netif_dbg(dev, timer, dev->net, "CDC: carrier %s\n", + event->wValue ? "on" : "off"); + + if (event->wValue && + netif_carrier_ok(dev->net)) + netif_carrier_off(dev->net); + + usbnet_link_change(dev, !!event->wValue, 0); +} + static const struct driver_info cdc_info = { .description = "CDC Ethernet Device", .flags = FLAG_ETHER | FLAG_POINTTOPOINT, @@ -481,7 +505,7 @@ .flags = FLAG_ETHER | FLAG_POINTTOPOINT, .bind = usbnet_cdc_zte_bind, .unbind = usbnet_cdc_unbind, - .status = usbnet_cdc_status, + .status = usbnet_cdc_zte_status, .set_rx_mode = usbnet_cdc_update_filter, .manage_power = usbnet_manage_power, .rx_fixup = usbnet_cdc_zte_rx_fixup, --- linux-4.8.0.orig/drivers/net/virtio_net.c +++ linux-4.8.0/drivers/net/virtio_net.c @@ -839,7 +839,7 @@ hdr = skb_vnet_hdr(skb); if (virtio_net_hdr_from_skb(skb, &hdr->hdr, - virtio_is_little_endian(vi->vdev))) + virtio_is_little_endian(vi->vdev), false)) BUG(); if (vi->mergeable_rx_bufs) @@ -1468,6 +1468,11 @@ netif_napi_del(&vi->rq[i].napi); } + /* We called napi_hash_del() before netif_napi_del(), + * we need to respect an RCU grace period before freeing vi->rq + */ + synchronize_net(); + kfree(vi->rq); kfree(vi->sq); } @@ -2010,23 +2015,33 @@ { 0 }, }; +#define VIRTNET_FEATURES \ + VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \ + VIRTIO_NET_F_MAC, \ + VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \ + VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \ + VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \ + VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \ + VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \ + VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \ + VIRTIO_NET_F_CTRL_MAC_ADDR, \ + VIRTIO_NET_F_MTU + static unsigned int features[] = { - VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, - VIRTIO_NET_F_GSO, VIRTIO_NET_F_MAC, - VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, - VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, - VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, - VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, - VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, - VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, - VIRTIO_NET_F_CTRL_MAC_ADDR, + VIRTNET_FEATURES, +}; + +static unsigned int features_legacy[] = { + VIRTNET_FEATURES, + VIRTIO_NET_F_GSO, VIRTIO_F_ANY_LAYOUT, - VIRTIO_NET_F_MTU, }; static struct virtio_driver virtio_net_driver = { .feature_table = features, .feature_table_size = ARRAY_SIZE(features), + .feature_table_legacy = features_legacy, + .feature_table_size_legacy = ARRAY_SIZE(features_legacy), .driver.name = KBUILD_MODNAME, .driver.owner = THIS_MODULE, .id_table = id_table, --- linux-4.8.0.orig/drivers/net/vxlan.c +++ linux-4.8.0/drivers/net/vxlan.c @@ -16,6 +16,7 @@ #include #include #include +#include #include #include #include @@ -88,6 +89,167 @@ ip_tunnel_collect_metadata(); } +static struct ip_fan_map *vxlan_fan_find_map(struct vxlan_dev *vxlan, __be32 daddr) +{ + struct ip_fan_map *fan_map; + + rcu_read_lock(); + list_for_each_entry_rcu(fan_map, &vxlan->fan.fan_maps, list) { + if (fan_map->overlay == + (daddr & inet_make_mask(fan_map->overlay_prefix))) { + rcu_read_unlock(); + return fan_map; + } + } + rcu_read_unlock(); + + return NULL; +} + +static void vxlan_fan_flush_map(struct vxlan_dev *vxlan) +{ + struct ip_fan_map *fan_map; + + list_for_each_entry_rcu(fan_map, &vxlan->fan.fan_maps, list) { + list_del_rcu(&fan_map->list); + kfree_rcu(fan_map, rcu); + } +} + +static int vxlan_fan_del_map(struct vxlan_dev *vxlan, __be32 overlay) +{ + struct ip_fan_map *fan_map; + + fan_map = vxlan_fan_find_map(vxlan, overlay); + if (!fan_map) + return -ENOENT; + + list_del_rcu(&fan_map->list); + kfree_rcu(fan_map, rcu); + + return 0; +} + +static int vxlan_fan_add_map(struct vxlan_dev *vxlan, struct ifla_fan_map *map) +{ + __be32 overlay_mask, underlay_mask; + struct ip_fan_map *fan_map; + + overlay_mask = inet_make_mask(map->overlay_prefix); + underlay_mask = inet_make_mask(map->underlay_prefix); + + netdev_dbg(vxlan->dev, "vfam: map: o %x/%d u %x/%d om %x um %x\n", + map->overlay, map->overlay_prefix, + map->underlay, map->underlay_prefix, + overlay_mask, underlay_mask); + + if ((map->overlay & ~overlay_mask) || (map->underlay & ~underlay_mask)) + return -EINVAL; + + if (!(map->overlay & overlay_mask) && (map->underlay & underlay_mask)) + return -EINVAL; + + /* Special case: overlay 0 and underlay 0: flush all mappings */ + if (!map->overlay && !map->underlay) { + vxlan_fan_flush_map(vxlan); + return 0; + } + + /* Special case: overlay set and underlay 0: clear map for overlay */ + if (!map->underlay) + return vxlan_fan_del_map(vxlan, map->overlay); + + if (vxlan_fan_find_map(vxlan, map->overlay)) + return -EEXIST; + + fan_map = kmalloc(sizeof(*fan_map), GFP_KERNEL); + fan_map->underlay = map->underlay; + fan_map->overlay = map->overlay; + fan_map->underlay_prefix = map->underlay_prefix; + fan_map->overlay_mask = ntohl(overlay_mask); + fan_map->overlay_prefix = map->overlay_prefix; + + list_add_tail_rcu(&fan_map->list, &vxlan->fan.fan_maps); + + return 0; +} + +static int vxlan_parse_fan_map(struct nlattr *data[], struct vxlan_dev *vxlan) +{ + struct ifla_fan_map *map; + struct nlattr *attr; + int rem, rv; + + nla_for_each_nested(attr, data[IFLA_IPTUN_FAN_MAP], rem) { + map = nla_data(attr); + rv = vxlan_fan_add_map(vxlan, map); + if (rv) + return rv; + } + + return 0; +} + +static int vxlan_fan_build_rdst(struct vxlan_dev *vxlan, struct sk_buff *skb, + struct vxlan_rdst *fan_rdst) +{ + struct ip_fan_map *f_map; + union vxlan_addr *va; + u32 daddr, underlay; + struct arphdr *arp; + void *arp_ptr; + struct ethhdr *eth; + struct iphdr *iph; + + eth = eth_hdr(skb); + switch (eth->h_proto) { + case htons(ETH_P_IP): + iph = ip_hdr(skb); + if (!iph) + return -EINVAL; + daddr = iph->daddr; + break; + case htons(ETH_P_ARP): + arp = arp_hdr(skb); + if (!arp) + return -EINVAL; + arp_ptr = arp + 1; + netdev_dbg(vxlan->dev, + "vfbr: arp sha %pM sip %pI4 tha %pM tip %pI4\n", + arp_ptr, arp_ptr + skb->dev->addr_len, + arp_ptr + skb->dev->addr_len + 4, + arp_ptr + (skb->dev->addr_len * 2) + 4); + arp_ptr += (skb->dev->addr_len * 2) + 4; + memcpy(&daddr, arp_ptr, 4); + break; + default: + netdev_dbg(vxlan->dev, "vfbr: unknown eth p %x\n", eth->h_proto); + return -EINVAL; + } + + f_map = vxlan_fan_find_map(vxlan, daddr); + if (!f_map) + return -EINVAL; + + daddr = ntohl(daddr); + underlay = ntohl(f_map->underlay); + if (!underlay) + return -EINVAL; + + memset(fan_rdst, 0, sizeof(*fan_rdst)); + va = &fan_rdst->remote_ip; + va->sa.sa_family = AF_INET; + fan_rdst->remote_vni = vxlan->default_dst.remote_vni; + va->sin.sin_addr.s_addr = htonl(underlay | + ((daddr & ~f_map->overlay_mask) >> + (32 - f_map->overlay_prefix - + (32 - f_map->underlay_prefix)))); + netdev_dbg(vxlan->dev, "vfbr: daddr %x ul %x dst %x\n", + daddr, underlay, va->sin.sin_addr.s_addr); + + return 0; +} + #if IS_ENABLED(CONFIG_IPV6) static inline bool vxlan_addr_equal(const union vxlan_addr *a, const union vxlan_addr *b) @@ -584,7 +746,7 @@ } } - pp = eth_gro_receive(head, skb); + pp = call_gro_receive(eth_gro_receive, head, skb); flush = 0; out: @@ -2021,6 +2183,13 @@ goto rt_tx_error; } + if (fan_has_map(&vxlan->fan) && rt->rt_flags & RTCF_LOCAL) { + netdev_dbg(dev, "discard fan to localhost %pI4\n", + &dst->sin.sin_addr.s_addr); + ip_rt_put(rt); + goto tx_free; + } + /* Bypass encapsulation if the destination is local */ if (!info && rt->rt_flags & RTCF_LOCAL && !(rt->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST))) { @@ -2178,7 +2347,22 @@ #endif } + if (fan_has_map(&vxlan->fan)) { + struct vxlan_rdst fan_rdst; + + netdev_dbg(vxlan->dev, "vxlan_xmit p %x d %pM\n", + eth->h_proto, eth->h_dest); + if (vxlan_fan_build_rdst(vxlan, skb, &fan_rdst)) { + dev->stats.tx_dropped++; + kfree_skb(skb); + return NETDEV_TX_OK; + } + vxlan_xmit_one(skb, dev, &fan_rdst, 0); + return NETDEV_TX_OK; + } + eth = eth_hdr(skb); + f = vxlan_find_mac(vxlan, eth->h_dest); did_rsc = false; @@ -2543,6 +2727,8 @@ for (h = 0; h < FDB_HASH_SIZE; ++h) INIT_HLIST_HEAD(&vxlan->fdb_head[h]); + + INIT_LIST_HEAD(&vxlan->fan.fan_maps); } static void vxlan_ether_setup(struct net_device *dev) @@ -2914,7 +3100,9 @@ static int vxlan_newlink(struct net *src_net, struct net_device *dev, struct nlattr *tb[], struct nlattr *data[]) { + struct vxlan_dev *vxlan = netdev_priv(dev); struct vxlan_config conf; + int err; memset(&conf, 0, sizeof(conf)); @@ -2931,6 +3119,12 @@ conf.remote_ip.sa.sa_family = AF_INET6; } + if (data[IFLA_VXLAN_FAN_MAP]) { + err = vxlan_parse_fan_map(data, vxlan); + if (err) + return err; + } + if (data[IFLA_VXLAN_LOCAL]) { conf.saddr.sin.sin_addr.s_addr = nla_get_in_addr(data[IFLA_VXLAN_LOCAL]); conf.saddr.sa.sa_family = AF_INET; @@ -3066,6 +3260,7 @@ nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_RX */ nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_TX */ nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_RX */ + nla_total_size(sizeof(struct ip_fan_map) * 256) + 0; } @@ -3112,6 +3307,26 @@ } } + if (fan_has_map(&vxlan->fan)) { + struct nlattr *fan_nest; + struct ip_fan_map *fan_map; + + fan_nest = nla_nest_start(skb, IFLA_VXLAN_FAN_MAP); + if (!fan_nest) + goto nla_put_failure; + list_for_each_entry_rcu(fan_map, &vxlan->fan.fan_maps, list) { + struct ifla_fan_map map; + + map.underlay = fan_map->underlay; + map.underlay_prefix = fan_map->underlay_prefix; + map.overlay = fan_map->overlay; + map.overlay_prefix = fan_map->overlay_prefix; + if (nla_put(skb, IFLA_FAN_MAPPING, sizeof(map), &map)) + goto nla_put_failure; + } + nla_nest_end(skb, fan_nest); + } + if (nla_put_u8(skb, IFLA_VXLAN_TTL, vxlan->cfg.ttl) || nla_put_u8(skb, IFLA_VXLAN_TOS, vxlan->cfg.tos) || nla_put_be32(skb, IFLA_VXLAN_LABEL, vxlan->cfg.label) || @@ -3271,6 +3486,22 @@ return 0; } +#ifdef CONFIG_SYSCTL +static struct ctl_table_header *vxlan_fan_header; +static unsigned int vxlan_fan_version = 4; + +static struct ctl_table vxlan_fan_sysctls[] = { + { + .procname = "vxlan", + .data = &vxlan_fan_version, + .maxlen = sizeof(vxlan_fan_version), + .mode = 0444, + .proc_handler = proc_dointvec, + }, + {}, +}; +#endif /* CONFIG_SYSCTL */ + static void __net_exit vxlan_exit_net(struct net *net) { struct vxlan_net *vn = net_generic(net, vxlan_net_id); @@ -3322,7 +3553,20 @@ if (rc) goto out3; +#ifdef CONFIG_SYSCTL + vxlan_fan_header = register_net_sysctl(&init_net, "net/fan", + vxlan_fan_sysctls); + if (!vxlan_fan_header) { + rc = -ENOMEM; + goto sysctl_failed; + } +#endif /* CONFIG_SYSCTL */ + return 0; +#ifdef CONFIG_SYSCTL +sysctl_failed: + rtnl_link_unregister(&vxlan_link_ops); +#endif /* CONFIG_SYSCTL */ out3: unregister_netdevice_notifier(&vxlan_notifier_block); out2: @@ -3334,6 +3578,9 @@ static void __exit vxlan_cleanup_module(void) { +#ifdef CONFIG_SYSCTL + unregister_net_sysctl_table(vxlan_fan_header); +#endif /* CONFIG_SYSCTL */ rtnl_link_unregister(&vxlan_link_ops); unregister_netdevice_notifier(&vxlan_notifier_block); unregister_pernet_subsys(&vxlan_net_ops); --- linux-4.8.0.orig/drivers/net/wireless/ath/ath10k/ce.c +++ linux-4.8.0/drivers/net/wireless/ath/ath10k/ce.c @@ -433,6 +433,13 @@ unsigned int nentries_mask = dest_ring->nentries_mask; unsigned int write_index = dest_ring->write_index; u32 ctrl_addr = pipe->ctrl_addr; + u32 cur_write_idx = ath10k_ce_dest_ring_write_index_get(ar, ctrl_addr); + + /* Prevent CE ring stuck issue that will occur when ring is full. + * Make sure that write index is 1 less than read index. + */ + if ((cur_write_idx + nentries) == dest_ring->sw_index) + nentries -= 1; write_index = CE_RING_IDX_ADD(nentries_mask, write_index, nentries); ath10k_ce_dest_ring_write_index_set(ar, ctrl_addr, write_index); --- linux-4.8.0.orig/drivers/net/wireless/ath/ath10k/core.h +++ linux-4.8.0/drivers/net/wireless/ath/ath10k/core.h @@ -445,6 +445,7 @@ u32 pktlog_filter; u32 reg_addr; u32 nf_cal_period; + void *cal_data; struct ath10k_fw_crash_data *fw_crash_data; }; --- linux-4.8.0.orig/drivers/net/wireless/ath/ath10k/debug.c +++ linux-4.8.0/drivers/net/wireless/ath/ath10k/debug.c @@ -30,6 +30,8 @@ /* ms */ #define ATH10K_DEBUG_HTT_STATS_INTERVAL 1000 +#define ATH10K_DEBUG_CAL_DATA_LEN 12064 + #define ATH10K_FW_CRASH_DUMP_VERSION 1 /** @@ -1450,56 +1452,51 @@ .llseek = default_llseek, }; -static int ath10k_debug_cal_data_open(struct inode *inode, struct file *file) +static int ath10k_debug_cal_data_fetch(struct ath10k *ar) { - struct ath10k *ar = inode->i_private; - void *buf; u32 hi_addr; __le32 addr; int ret; - mutex_lock(&ar->conf_mutex); - - if (ar->state != ATH10K_STATE_ON && - ar->state != ATH10K_STATE_UTF) { - ret = -ENETDOWN; - goto err; - } + lockdep_assert_held(&ar->conf_mutex); - buf = vmalloc(ar->hw_params.cal_data_len); - if (!buf) { - ret = -ENOMEM; - goto err; - } + if (WARN_ON(ar->hw_params.cal_data_len > ATH10K_DEBUG_CAL_DATA_LEN)) + return -EINVAL; hi_addr = host_interest_item_address(HI_ITEM(hi_board_data)); ret = ath10k_hif_diag_read(ar, hi_addr, &addr, sizeof(addr)); if (ret) { - ath10k_warn(ar, "failed to read hi_board_data address: %d\n", ret); - goto err_vfree; + ath10k_warn(ar, "failed to read hi_board_data address: %d\n", + ret); + return ret; } - ret = ath10k_hif_diag_read(ar, le32_to_cpu(addr), buf, + ret = ath10k_hif_diag_read(ar, le32_to_cpu(addr), ar->debug.cal_data, ar->hw_params.cal_data_len); if (ret) { ath10k_warn(ar, "failed to read calibration data: %d\n", ret); - goto err_vfree; + return ret; } - file->private_data = buf; + return 0; +} - mutex_unlock(&ar->conf_mutex); +static int ath10k_debug_cal_data_open(struct inode *inode, struct file *file) +{ + struct ath10k *ar = inode->i_private; - return 0; + mutex_lock(&ar->conf_mutex); -err_vfree: - vfree(buf); + if (ar->state == ATH10K_STATE_ON || + ar->state == ATH10K_STATE_UTF) { + ath10k_debug_cal_data_fetch(ar); + } -err: + file->private_data = ar; mutex_unlock(&ar->conf_mutex); - return ret; + return 0; } static ssize_t ath10k_debug_cal_data_read(struct file *file, @@ -1507,18 +1504,16 @@ size_t count, loff_t *ppos) { struct ath10k *ar = file->private_data; - void *buf = file->private_data; - return simple_read_from_buffer(user_buf, count, ppos, - buf, ar->hw_params.cal_data_len); -} + mutex_lock(&ar->conf_mutex); -static int ath10k_debug_cal_data_release(struct inode *inode, - struct file *file) -{ - vfree(file->private_data); + count = simple_read_from_buffer(user_buf, count, ppos, + ar->debug.cal_data, + ar->hw_params.cal_data_len); - return 0; + mutex_unlock(&ar->conf_mutex); + + return count; } static ssize_t ath10k_write_ani_enable(struct file *file, @@ -1579,7 +1574,6 @@ static const struct file_operations fops_cal_data = { .open = ath10k_debug_cal_data_open, .read = ath10k_debug_cal_data_read, - .release = ath10k_debug_cal_data_release, .owner = THIS_MODULE, .llseek = default_llseek, }; @@ -1931,6 +1925,8 @@ { lockdep_assert_held(&ar->conf_mutex); + ath10k_debug_cal_data_fetch(ar); + /* Must not use _sync to avoid deadlock, we do that in * ath10k_debug_destroy(). The check for htt_stats_mask is to avoid * warning from del_timer(). */ @@ -2343,6 +2339,10 @@ if (!ar->debug.fw_crash_data) return -ENOMEM; + ar->debug.cal_data = vzalloc(ATH10K_DEBUG_CAL_DATA_LEN); + if (!ar->debug.cal_data) + return -ENOMEM; + INIT_LIST_HEAD(&ar->debug.fw_stats.pdevs); INIT_LIST_HEAD(&ar->debug.fw_stats.vdevs); INIT_LIST_HEAD(&ar->debug.fw_stats.peers); @@ -2356,6 +2356,9 @@ vfree(ar->debug.fw_crash_data); ar->debug.fw_crash_data = NULL; + vfree(ar->debug.cal_data); + ar->debug.cal_data = NULL; + ath10k_debug_fw_stats_reset(ar); kfree(ar->debug.tpc_stats); --- linux-4.8.0.orig/drivers/net/wireless/ath/ath10k/htt_rx.c +++ linux-4.8.0/drivers/net/wireless/ath/ath10k/htt_rx.c @@ -2394,6 +2394,8 @@ skb_queue_splice_init(&htt->rx_in_ord_compl_q, &rx_ind_q); spin_unlock_irqrestore(&htt->rx_in_ord_compl_q.lock, flags); + ath10k_mac_tx_push_pending(ar); + spin_lock_irqsave(&htt->tx_fetch_ind_q.lock, flags); skb_queue_splice_init(&htt->tx_fetch_ind_q, &tx_ind_q); spin_unlock_irqrestore(&htt->tx_fetch_ind_q.lock, flags); --- linux-4.8.0.orig/drivers/net/wireless/ath/ath10k/mac.c +++ linux-4.8.0/drivers/net/wireless/ath/ath10k/mac.c @@ -3777,7 +3777,9 @@ enum ath10k_hw_txrx_mode txmode; enum ath10k_mac_tx_path txpath; struct sk_buff *skb; + struct ieee80211_hdr *hdr; size_t skb_len; + bool is_mgmt, is_presp; int ret; spin_lock_bh(&ar->htt.tx_lock); @@ -3801,6 +3803,22 @@ skb_len = skb->len; txmode = ath10k_mac_tx_h_get_txmode(ar, vif, sta, skb); txpath = ath10k_mac_tx_h_get_txpath(ar, skb, txmode); + is_mgmt = (txpath == ATH10K_MAC_TX_HTT_MGMT); + + if (is_mgmt) { + hdr = (struct ieee80211_hdr *)skb->data; + is_presp = ieee80211_is_probe_resp(hdr->frame_control); + + spin_lock_bh(&ar->htt.tx_lock); + ret = ath10k_htt_tx_mgmt_inc_pending(htt, is_mgmt, is_presp); + + if (ret) { + ath10k_htt_tx_dec_pending(htt); + spin_unlock_bh(&ar->htt.tx_lock); + return ret; + } + spin_unlock_bh(&ar->htt.tx_lock); + } ret = ath10k_mac_tx(ar, vif, sta, txmode, txpath, skb); if (unlikely(ret)) { @@ -3808,6 +3826,8 @@ spin_lock_bh(&ar->htt.tx_lock); ath10k_htt_tx_dec_pending(htt); + if (is_mgmt) + ath10k_htt_tx_mgmt_dec_pending(htt); spin_unlock_bh(&ar->htt.tx_lock); return ret; @@ -6538,7 +6558,7 @@ goto exit; } - ath10k_mac_update_bss_chan_survey(ar, survey->channel); + ath10k_mac_update_bss_chan_survey(ar, &sband->channels[idx]); spin_lock_bh(&ar->data_lock); memcpy(survey, ar_survey, sizeof(*survey)); --- linux-4.8.0.orig/drivers/net/wireless/ath/ath10k/txrx.c +++ linux-4.8.0/drivers/net/wireless/ath/ath10k/txrx.c @@ -119,8 +119,6 @@ ieee80211_tx_status(htt->ar->hw, msdu); /* we do not own the msdu anymore */ - ath10k_mac_tx_push_pending(ar); - return 0; } --- linux-4.8.0.orig/drivers/net/wireless/ath/ath10k/wmi.h +++ linux-4.8.0/drivers/net/wireless/ath/ath10k/wmi.h @@ -180,6 +180,7 @@ WMI_SERVICE_MESH_NON_11S, WMI_SERVICE_PEER_STATS, WMI_SERVICE_RESTRT_CHNL_SUPPORT, + WMI_SERVICE_PERIODIC_CHAN_STAT_SUPPORT, WMI_SERVICE_TX_MODE_PUSH_ONLY, WMI_SERVICE_TX_MODE_PUSH_PULL, WMI_SERVICE_TX_MODE_DYNAMIC, @@ -305,6 +306,7 @@ WMI_10_4_SERVICE_RESTRT_CHNL_SUPPORT, WMI_10_4_SERVICE_PEER_STATS, WMI_10_4_SERVICE_MESH_11S, + WMI_10_4_SERVICE_PERIODIC_CHAN_STAT_SUPPORT, WMI_10_4_SERVICE_TX_MODE_PUSH_ONLY, WMI_10_4_SERVICE_TX_MODE_PUSH_PULL, WMI_10_4_SERVICE_TX_MODE_DYNAMIC, @@ -402,6 +404,7 @@ SVCSTR(WMI_SERVICE_MESH_NON_11S); SVCSTR(WMI_SERVICE_PEER_STATS); SVCSTR(WMI_SERVICE_RESTRT_CHNL_SUPPORT); + SVCSTR(WMI_SERVICE_PERIODIC_CHAN_STAT_SUPPORT); SVCSTR(WMI_SERVICE_TX_MODE_PUSH_ONLY); SVCSTR(WMI_SERVICE_TX_MODE_PUSH_PULL); SVCSTR(WMI_SERVICE_TX_MODE_DYNAMIC); @@ -652,6 +655,8 @@ WMI_SERVICE_PEER_STATS, len); SVCMAP(WMI_10_4_SERVICE_MESH_11S, WMI_SERVICE_MESH_11S, len); + SVCMAP(WMI_10_4_SERVICE_PERIODIC_CHAN_STAT_SUPPORT, + WMI_SERVICE_PERIODIC_CHAN_STAT_SUPPORT, len); SVCMAP(WMI_10_4_SERVICE_TX_MODE_PUSH_ONLY, WMI_SERVICE_TX_MODE_PUSH_ONLY, len); SVCMAP(WMI_10_4_SERVICE_TX_MODE_PUSH_PULL, --- linux-4.8.0.orig/drivers/net/wireless/ath/ath9k/ar9003_calib.c +++ linux-4.8.0/drivers/net/wireless/ath/ath9k/ar9003_calib.c @@ -33,7 +33,6 @@ enum ar9003_cal_types { IQ_MISMATCH_CAL = BIT(0), - TEMP_COMP_CAL = BIT(1), }; static void ar9003_hw_setup_calibration(struct ath_hw *ah, @@ -59,12 +58,6 @@ /* Kick-off cal */ REG_SET_BIT(ah, AR_PHY_TIMING4, AR_PHY_TIMING4_DO_CAL); break; - case TEMP_COMP_CAL: - ath_dbg(common, CALIBRATE, - "starting Temperature Compensation Calibration\n"); - REG_SET_BIT(ah, AR_CH0_THERM, AR_CH0_THERM_LOCAL); - REG_SET_BIT(ah, AR_CH0_THERM, AR_CH0_THERM_START); - break; default: ath_err(common, "Invalid calibration type\n"); break; @@ -93,8 +86,7 @@ /* * Accumulate cal measures for active chains */ - if (cur_caldata->calCollect) - cur_caldata->calCollect(ah); + cur_caldata->calCollect(ah); ah->cal_samples++; if (ah->cal_samples >= cur_caldata->calNumSamples) { @@ -107,8 +99,7 @@ /* * Process accumulated data */ - if (cur_caldata->calPostProc) - cur_caldata->calPostProc(ah, numChains); + cur_caldata->calPostProc(ah, numChains); /* Calibration has finished. */ caldata->CalValid |= cur_caldata->calType; @@ -323,16 +314,9 @@ ar9003_hw_iqcalibrate }; -static const struct ath9k_percal_data temp_cal_single_sample = { - TEMP_COMP_CAL, - MIN_CAL_SAMPLES, - PER_MAX_LOG_COUNT, -}; - static void ar9003_hw_init_cal_settings(struct ath_hw *ah) { ah->iq_caldata.calData = &iq_cal_single_sample; - ah->temp_caldata.calData = &temp_cal_single_sample; if (AR_SREV_9300_20_OR_LATER(ah)) { ah->enabled_cals |= TX_IQ_CAL; @@ -340,7 +324,7 @@ ah->enabled_cals |= TX_IQ_ON_AGC_CAL; } - ah->supp_cals = IQ_MISMATCH_CAL | TEMP_COMP_CAL; + ah->supp_cals = IQ_MISMATCH_CAL; } #define OFF_UPPER_LT 24 @@ -1399,9 +1383,6 @@ INIT_CAL(&ah->iq_caldata); INSERT_CAL(ah, &ah->iq_caldata); - INIT_CAL(&ah->temp_caldata); - INSERT_CAL(ah, &ah->temp_caldata); - /* Initialize current pointer to first element in list */ ah->cal_list_curr = ah->cal_list; --- linux-4.8.0.orig/drivers/net/wireless/ath/ath9k/hw.c +++ linux-4.8.0/drivers/net/wireless/ath/ath9k/hw.c @@ -2792,7 +2792,7 @@ WARN_ON(1); } - return val; + return !!val; } EXPORT_SYMBOL(ath9k_hw_gpio_get); --- linux-4.8.0.orig/drivers/net/wireless/ath/ath9k/hw.h +++ linux-4.8.0/drivers/net/wireless/ath/ath9k/hw.h @@ -830,7 +830,6 @@ /* Calibration */ u32 supp_cals; struct ath9k_cal_list iq_caldata; - struct ath9k_cal_list temp_caldata; struct ath9k_cal_list adcgain_caldata; struct ath9k_cal_list adcdc_caldata; struct ath9k_cal_list *cal_list; --- linux-4.8.0.orig/drivers/net/wireless/ath/ath9k/pci.c +++ linux-4.8.0/drivers/net/wireless/ath/ath9k/pci.c @@ -26,7 +26,6 @@ { PCI_VDEVICE(ATHEROS, 0x0023) }, /* PCI */ { PCI_VDEVICE(ATHEROS, 0x0024) }, /* PCI-E */ { PCI_VDEVICE(ATHEROS, 0x0027) }, /* PCI */ - { PCI_VDEVICE(ATHEROS, 0x0029) }, /* PCI */ #ifdef CONFIG_ATH9K_PCOEM /* Mini PCI AR9220 MB92 cards: Compex WLM200NX, Wistron DNMA-92 */ @@ -37,7 +36,7 @@ .driver_data = ATH9K_PCI_LED_ACT_HI }, #endif - { PCI_VDEVICE(ATHEROS, 0x002A) }, /* PCI-E */ + { PCI_VDEVICE(ATHEROS, 0x0029) }, /* PCI */ #ifdef CONFIG_ATH9K_PCOEM { PCI_DEVICE_SUB(PCI_VENDOR_ID_ATHEROS, @@ -85,7 +84,11 @@ 0x10CF, /* Fujitsu */ 0x1536), .driver_data = ATH9K_PCI_D3_L1_WAR }, +#endif + { PCI_VDEVICE(ATHEROS, 0x002A) }, /* PCI-E */ + +#ifdef CONFIG_ATH9K_PCOEM /* AR9285 card for Asus */ { PCI_DEVICE_SUB(PCI_VENDOR_ID_ATHEROS, 0x002B, --- linux-4.8.0.orig/drivers/net/wireless/ath/carl9170/debug.c +++ linux-4.8.0/drivers/net/wireless/ath/carl9170/debug.c @@ -75,7 +75,8 @@ if (!ar) return -ENODEV; - dfops = container_of(file->f_op, struct carl9170_debugfs_fops, fops); + dfops = container_of(debugfs_real_fops(file), + struct carl9170_debugfs_fops, fops); if (!dfops->read) return -ENOSYS; @@ -127,7 +128,8 @@ if (!ar) return -ENODEV; - dfops = container_of(file->f_op, struct carl9170_debugfs_fops, fops); + dfops = container_of(debugfs_real_fops(file), + struct carl9170_debugfs_fops, fops); if (!dfops->write) return -ENOSYS; --- linux-4.8.0.orig/drivers/net/wireless/broadcom/b43/debugfs.c +++ linux-4.8.0/drivers/net/wireless/broadcom/b43/debugfs.c @@ -524,7 +524,8 @@ goto out_unlock; } - dfops = container_of(file->f_op, struct b43_debugfs_fops, fops); + dfops = container_of(debugfs_real_fops(file), + struct b43_debugfs_fops, fops); if (!dfops->read) { err = -ENOSYS; goto out_unlock; @@ -585,7 +586,8 @@ goto out_unlock; } - dfops = container_of(file->f_op, struct b43_debugfs_fops, fops); + dfops = container_of(debugfs_real_fops(file), + struct b43_debugfs_fops, fops); if (!dfops->write) { err = -ENOSYS; goto out_unlock; --- linux-4.8.0.orig/drivers/net/wireless/broadcom/b43legacy/debugfs.c +++ linux-4.8.0/drivers/net/wireless/broadcom/b43legacy/debugfs.c @@ -221,7 +221,8 @@ goto out_unlock; } - dfops = container_of(file->f_op, struct b43legacy_debugfs_fops, fops); + dfops = container_of(debugfs_real_fops(file), + struct b43legacy_debugfs_fops, fops); if (!dfops->read) { err = -ENOSYS; goto out_unlock; @@ -287,7 +288,8 @@ goto out_unlock; } - dfops = container_of(file->f_op, struct b43legacy_debugfs_fops, fops); + dfops = container_of(debugfs_real_fops(file), + struct b43legacy_debugfs_fops, fops); if (!dfops->write) { err = -ENOSYS; goto out_unlock; --- linux-4.8.0.orig/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c +++ linux-4.8.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c @@ -2533,7 +2533,7 @@ WL_BSS_INFO_MAX); if (err) { brcmf_err("Failed to get bss info (%d)\n", err); - return; + goto out_kfree; } si->filled |= BIT(NL80211_STA_INFO_BSS_PARAM); si->bss_param.beacon_interval = le16_to_cpu(buf->bss_le.beacon_period); @@ -2545,6 +2545,9 @@ si->bss_param.flags |= BSS_PARAM_FLAGS_SHORT_PREAMBLE; if (capability & WLAN_CAPABILITY_SHORT_SLOT_TIME) si->bss_param.flags |= BSS_PARAM_FLAGS_SHORT_SLOT_TIME; + +out_kfree: + kfree(buf); } static s32 @@ -3884,11 +3887,11 @@ if (!check_vif_up(ifp->vif)) return -EIO; - brcmf_dbg(CONN, "del_pmksa - PMK bssid = %pM\n", &pmksa->bssid); + brcmf_dbg(CONN, "del_pmksa - PMK bssid = %pM\n", pmksa->bssid); npmk = le32_to_cpu(cfg->pmk_list.npmk); for (i = 0; i < npmk; i++) - if (!memcmp(&pmksa->bssid, &pmk[i].bssid, ETH_ALEN)) + if (!memcmp(pmksa->bssid, pmk[i].bssid, ETH_ALEN)) break; if ((npmk > 0) && (i < npmk)) { --- linux-4.8.0.orig/drivers/net/wireless/broadcom/brcm80211/brcmfmac/flowring.c +++ linux-4.8.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/flowring.c @@ -234,13 +234,20 @@ void brcmf_flowring_delete(struct brcmf_flowring *flow, u16 flowid) { + struct brcmf_bus *bus_if = dev_get_drvdata(flow->dev); struct brcmf_flowring_ring *ring; + struct brcmf_if *ifp; u16 hash_idx; + u8 ifidx; struct sk_buff *skb; ring = flow->rings[flowid]; if (!ring) return; + + ifidx = brcmf_flowring_ifidx_get(flow, flowid); + ifp = brcmf_get_ifp(bus_if->drvr, ifidx); + brcmf_flowring_block(flow, flowid, false); hash_idx = ring->hash_id; flow->hash[hash_idx].ifidx = BRCMF_FLOWRING_INVALID_IFIDX; @@ -249,7 +256,7 @@ skb = skb_dequeue(&ring->skblist); while (skb) { - brcmu_pkt_buf_free_skb(skb); + brcmf_txfinalize(ifp, skb, false); skb = skb_dequeue(&ring->skblist); } --- linux-4.8.0.orig/drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.c +++ linux-4.8.0/drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.c @@ -564,11 +564,16 @@ __le32 mac_addr0 = cpu_to_le32(iwl_read32(trans, CSR_MAC_ADDR0_STRAP)); __le32 mac_addr1 = cpu_to_le32(iwl_read32(trans, CSR_MAC_ADDR1_STRAP)); - /* If OEM did not fuse address - get it from OTP */ - if (!mac_addr0 && !mac_addr1) { - mac_addr0 = cpu_to_le32(iwl_read32(trans, CSR_MAC_ADDR0_OTP)); - mac_addr1 = cpu_to_le32(iwl_read32(trans, CSR_MAC_ADDR1_OTP)); - } + iwl_flip_hw_address(mac_addr0, mac_addr1, data->hw_addr); + /* + * If the OEM fused a valid address, use it instead of the one in the + * OTP + */ + if (is_valid_ether_addr(data->hw_addr)) + return; + + mac_addr0 = cpu_to_le32(iwl_read32(trans, CSR_MAC_ADDR0_OTP)); + mac_addr1 = cpu_to_le32(iwl_read32(trans, CSR_MAC_ADDR1_OTP)); iwl_flip_hw_address(mac_addr0, mac_addr1, data->hw_addr); } --- linux-4.8.0.orig/drivers/net/wireless/intel/iwlwifi/mvm/d3.c +++ linux-4.8.0/drivers/net/wireless/intel/iwlwifi/mvm/d3.c @@ -1087,6 +1087,15 @@ ret = iwl_mvm_switch_to_d3(mvm); if (ret) return ret; + } else { + /* In theory, we wouldn't have to stop a running sched + * scan in order to start another one (for + * net-detect). But in practice this doesn't seem to + * work properly, so stop any running sched_scan now. + */ + ret = iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_SCHED, true); + if (ret) + return ret; } /* rfkill release can be either for wowlan or netdetect */ @@ -2088,6 +2097,16 @@ iwl_mvm_update_changed_regdom(mvm); if (mvm->net_detect) { + /* If this is a non-unified image, we restart the FW, + * so no need to stop the netdetect scan. If that + * fails, continue and try to get the wake-up reasons, + * but trigger a HW restart by keeping a failure code + * in ret. + */ + if (unified_image) + ret = iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_NETDETECT, + false); + iwl_mvm_query_netdetect_reasons(mvm, vif); /* has unlocked the mutex, so skip that */ goto out; @@ -2271,7 +2290,8 @@ static int iwl_mvm_d3_test_release(struct inode *inode, struct file *file) { struct iwl_mvm *mvm = inode->i_private; - int remaining_time = 10; + bool unified_image = fw_has_capa(&mvm->fw->ucode_capa, + IWL_UCODE_TLV_CAPA_CNSLDTD_D3_D0_IMG); mvm->d3_test_active = false; @@ -2282,17 +2302,21 @@ mvm->trans->system_pm_mode = IWL_PLAT_PM_MODE_DISABLED; iwl_abort_notification_waits(&mvm->notif_wait); - ieee80211_restart_hw(mvm->hw); + if (!unified_image) { + int remaining_time = 10; - /* wait for restart and disconnect all interfaces */ - while (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status) && - remaining_time > 0) { - remaining_time--; - msleep(1000); - } + ieee80211_restart_hw(mvm->hw); - if (remaining_time == 0) - IWL_ERR(mvm, "Timed out waiting for HW restart to finish!\n"); + /* wait for restart and disconnect all interfaces */ + while (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status) && + remaining_time > 0) { + remaining_time--; + msleep(1000); + } + + if (remaining_time == 0) + IWL_ERR(mvm, "Timed out waiting for HW restart!\n"); + } ieee80211_iterate_active_interfaces_atomic( mvm->hw, IEEE80211_IFACE_ITER_NORMAL, --- linux-4.8.0.orig/drivers/net/wireless/intel/iwlwifi/mvm/fw.c +++ linux-4.8.0/drivers/net/wireless/intel/iwlwifi/mvm/fw.c @@ -1214,9 +1214,12 @@ } /* TODO: read the budget from BIOS / Platform NVM */ - if (iwl_mvm_is_ctdp_supported(mvm) && mvm->cooling_dev.cur_state > 0) + if (iwl_mvm_is_ctdp_supported(mvm) && mvm->cooling_dev.cur_state > 0) { ret = iwl_mvm_ctdp_command(mvm, CTDP_CMD_OPERATION_START, mvm->cooling_dev.cur_state); + if (ret) + goto error; + } #else /* Initialize tx backoffs to the minimal possible */ iwl_mvm_tt_tx_backoff(mvm, 0); --- linux-4.8.0.orig/drivers/net/wireless/intel/iwlwifi/mvm/mac-ctxt.c +++ linux-4.8.0/drivers/net/wireless/intel/iwlwifi/mvm/mac-ctxt.c @@ -539,6 +539,11 @@ iwl_mvm_disable_txq(mvm, IWL_MVM_OFFCHANNEL_QUEUE, IWL_MVM_OFFCHANNEL_QUEUE, IWL_MAX_TID_COUNT, 0); + else + iwl_mvm_disable_txq(mvm, + IWL_MVM_DQA_P2P_DEVICE_QUEUE, + vif->hw_queue[0], IWL_MAX_TID_COUNT, + 0); break; case NL80211_IFTYPE_AP: --- linux-4.8.0.orig/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c +++ linux-4.8.0/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c @@ -4097,7 +4097,6 @@ struct iwl_mvm_internal_rxq_notif *notif, u32 size) { - DECLARE_WAIT_QUEUE_HEAD_ONSTACK(notif_waitq); u32 qmask = BIT(mvm->trans->num_rx_queues) - 1; int ret; @@ -4119,7 +4118,7 @@ } if (notif->sync) - ret = wait_event_timeout(notif_waitq, + ret = wait_event_timeout(mvm->rx_sync_waitq, atomic_read(&mvm->queue_sync_counter) == 0, HZ); WARN_ON_ONCE(!ret); --- linux-4.8.0.orig/drivers/net/wireless/intel/iwlwifi/mvm/mvm.h +++ linux-4.8.0/drivers/net/wireless/intel/iwlwifi/mvm/mvm.h @@ -932,6 +932,7 @@ /* sync d0i3_tx queue and IWL_MVM_STATUS_IN_D0I3 status flag */ spinlock_t d0i3_tx_lock; wait_queue_head_t d0i3_exit_waitq; + wait_queue_head_t rx_sync_waitq; /* BT-Coex */ struct iwl_bt_coex_profile_notif last_bt_notif; --- linux-4.8.0.orig/drivers/net/wireless/intel/iwlwifi/mvm/ops.c +++ linux-4.8.0/drivers/net/wireless/intel/iwlwifi/mvm/ops.c @@ -618,6 +618,7 @@ spin_lock_init(&mvm->refs_lock); skb_queue_head_init(&mvm->d0i3_tx); init_waitqueue_head(&mvm->d0i3_exit_waitq); + init_waitqueue_head(&mvm->rx_sync_waitq); atomic_set(&mvm->queue_sync_counter, 0); --- linux-4.8.0.orig/drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c +++ linux-4.8.0/drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c @@ -545,7 +545,8 @@ "Received expired RX queue sync message\n"); return; } - atomic_dec(&mvm->queue_sync_counter); + if (!atomic_dec_return(&mvm->queue_sync_counter)) + wake_up(&mvm->rx_sync_waitq); } switch (internal_notif->type) { @@ -598,9 +599,10 @@ mvm_sta = iwl_mvm_sta_from_mac80211(sta); - /* not a data packet */ - if (!ieee80211_is_data_qos(hdr->frame_control) || - is_multicast_ether_addr(hdr->addr1)) + /* not a data packet or a bar */ + if (!ieee80211_is_back_req(hdr->frame_control) && + (!ieee80211_is_data_qos(hdr->frame_control) || + is_multicast_ether_addr(hdr->addr1))) return false; if (unlikely(!ieee80211_is_data_present(hdr->frame_control))) @@ -624,6 +626,11 @@ spin_lock_bh(&buffer->lock); + if (ieee80211_is_back_req(hdr->frame_control)) { + iwl_mvm_release_frames(mvm, sta, napi, buffer, nssn); + goto drop; + } + /* * If there was a significant jump in the nssn - adjust. * If the SN is smaller than the NSSN it might need to first go into --- linux-4.8.0.orig/drivers/net/wireless/intel/iwlwifi/mvm/scan.c +++ linux-4.8.0/drivers/net/wireless/intel/iwlwifi/mvm/scan.c @@ -1185,6 +1185,9 @@ static int iwl_mvm_check_running_scans(struct iwl_mvm *mvm, int type) { + bool unified_image = fw_has_capa(&mvm->fw->ucode_capa, + IWL_UCODE_TLV_CAPA_CNSLDTD_D3_D0_IMG); + /* This looks a bit arbitrary, but the idea is that if we run * out of possible simultaneous scans and the userspace is * trying to run a scan type that is already running, we @@ -1211,12 +1214,30 @@ return -EBUSY; return iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_REGULAR, true); case IWL_MVM_SCAN_NETDETECT: - /* No need to stop anything for net-detect since the - * firmware is restarted anyway. This way, any sched - * scans that were running will be restarted when we - * resume. - */ - return 0; + /* For non-unified images, there's no need to stop + * anything for net-detect since the firmware is + * restarted anyway. This way, any sched scans that + * were running will be restarted when we resume. + */ + if (!unified_image) + return 0; + + /* If this is a unified image and we ran out of scans, + * we need to stop something. Prefer stopping regular + * scans, because the results are useless at this + * point, and we should be able to keep running + * another scheduled scan while suspended. + */ + if (mvm->scan_status & IWL_MVM_SCAN_REGULAR_MASK) + return iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_REGULAR, + true); + if (mvm->scan_status & IWL_MVM_SCAN_SCHED_MASK) + return iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_SCHED, + true); + + /* fall through, something is wrong if no scan was + * running but we ran out of scans. + */ default: WARN_ON(1); break; --- linux-4.8.0.orig/drivers/net/wireless/intel/iwlwifi/mvm/sta.c +++ linux-4.8.0/drivers/net/wireless/intel/iwlwifi/mvm/sta.c @@ -576,9 +576,7 @@ ret); /* Make sure the SCD wrptr is correctly set before reconfiguring */ - iwl_trans_txq_enable(mvm->trans, queue, iwl_mvm_ac_to_tx_fifo[ac], - cmd.sta_id, tid, LINK_QUAL_AGG_FRAME_LIMIT_DEF, - ssn, wdg_timeout); + iwl_trans_txq_enable_cfg(mvm->trans, queue, ssn, NULL, wdg_timeout); /* TODO: Work-around SCD bug when moving back by multiples of 0x40 */ @@ -1270,9 +1268,31 @@ ret = iwl_mvm_drain_sta(mvm, mvm_sta, false); /* If DQA is supported - the queues can be disabled now */ - if (iwl_mvm_is_dqa_supported(mvm)) + if (iwl_mvm_is_dqa_supported(mvm)) { + u8 reserved_txq = mvm_sta->reserved_queue; + enum iwl_mvm_queue_status *status; + iwl_mvm_disable_sta_queues(mvm, vif, mvm_sta); + /* + * If no traffic has gone through the reserved TXQ - it + * is still marked as IWL_MVM_QUEUE_RESERVED, and + * should be manually marked as free again + */ + spin_lock_bh(&mvm->queue_info_lock); + status = &mvm->queue_info[reserved_txq].status; + if (WARN((*status != IWL_MVM_QUEUE_RESERVED) && + (*status != IWL_MVM_QUEUE_FREE), + "sta_id %d reserved txq %d status %d", + mvm_sta->sta_id, reserved_txq, *status)) { + spin_unlock_bh(&mvm->queue_info_lock); + return -EINVAL; + } + + *status = IWL_MVM_QUEUE_FREE; + spin_unlock_bh(&mvm->queue_info_lock); + } + if (vif->type == NL80211_IFTYPE_STATION && mvmvif->ap_sta_id == mvm_sta->sta_id) { /* if associated - we can't remove the AP STA now */ --- linux-4.8.0.orig/drivers/net/wireless/intel/iwlwifi/mvm/tx.c +++ linux-4.8.0/drivers/net/wireless/intel/iwlwifi/mvm/tx.c @@ -903,9 +903,13 @@ tid = IWL_MAX_TID_COUNT; } - if (iwl_mvm_is_dqa_supported(mvm)) + if (iwl_mvm_is_dqa_supported(mvm)) { txq_id = mvmsta->tid_data[tid].txq_id; + if (ieee80211_is_mgmt(fc)) + tx_cmd->tid_tspec = IWL_TID_NON_QOS; + } + /* Copy MAC header from skb into command buffer */ memcpy(tx_cmd->hdr, hdr, hdrlen); --- linux-4.8.0.orig/drivers/net/wireless/intel/iwlwifi/pcie/drv.c +++ linux-4.8.0/drivers/net/wireless/intel/iwlwifi/pcie/drv.c @@ -526,48 +526,64 @@ MODULE_DEVICE_TABLE(pci, iwl_hw_card_ids); #ifdef CONFIG_ACPI -#define SPL_METHOD "SPLC" -#define SPL_DOMAINTYPE_MODULE BIT(0) -#define SPL_DOMAINTYPE_WIFI BIT(1) -#define SPL_DOMAINTYPE_WIGIG BIT(2) -#define SPL_DOMAINTYPE_RFEM BIT(3) +#define ACPI_SPLC_METHOD "SPLC" +#define ACPI_SPLC_DOMAIN_WIFI (0x07) -static u64 splx_get_pwr_limit(struct iwl_trans *trans, union acpi_object *splx) +static u64 splc_get_pwr_limit(struct iwl_trans *trans, union acpi_object *splc) { - union acpi_object *limits, *domain_type, *power_limit; + union acpi_object *data_pkg, *dflt_pwr_limit; + int i; - if (splx->type != ACPI_TYPE_PACKAGE || - splx->package.count != 2 || - splx->package.elements[0].type != ACPI_TYPE_INTEGER || - splx->package.elements[0].integer.value != 0) { - IWL_ERR(trans, "Unsupported splx structure\n"); + /* We need at least two elements, one for the revision and one + * for the data itself. Also check that the revision is + * supported (currently only revision 0). + */ + if (splc->type != ACPI_TYPE_PACKAGE || + splc->package.count < 2 || + splc->package.elements[0].type != ACPI_TYPE_INTEGER || + splc->package.elements[0].integer.value != 0) { + IWL_DEBUG_INFO(trans, + "Unsupported structure returned by the SPLC method. Ignoring.\n"); return 0; } - limits = &splx->package.elements[1]; - if (limits->type != ACPI_TYPE_PACKAGE || - limits->package.count < 2 || - limits->package.elements[0].type != ACPI_TYPE_INTEGER || - limits->package.elements[1].type != ACPI_TYPE_INTEGER) { - IWL_ERR(trans, "Invalid limits element\n"); - return 0; + /* loop through all the packages to find the one for WiFi */ + for (i = 1; i < splc->package.count; i++) { + union acpi_object *domain; + + data_pkg = &splc->package.elements[i]; + + /* Skip anything that is not a package with the right + * amount of elements (i.e. at least 2 integers). + */ + if (data_pkg->type != ACPI_TYPE_PACKAGE || + data_pkg->package.count < 2 || + data_pkg->package.elements[0].type != ACPI_TYPE_INTEGER || + data_pkg->package.elements[1].type != ACPI_TYPE_INTEGER) + continue; + + domain = &data_pkg->package.elements[0]; + if (domain->integer.value == ACPI_SPLC_DOMAIN_WIFI) + break; + + data_pkg = NULL; } - domain_type = &limits->package.elements[0]; - power_limit = &limits->package.elements[1]; - if (!(domain_type->integer.value & SPL_DOMAINTYPE_WIFI)) { - IWL_DEBUG_INFO(trans, "WiFi power is not limited\n"); + if (!data_pkg) { + IWL_DEBUG_INFO(trans, + "No element for the WiFi domain returned by the SPLC method.\n"); return 0; } - return power_limit->integer.value; + dflt_pwr_limit = &data_pkg->package.elements[1]; + return dflt_pwr_limit->integer.value; } static void set_dflt_pwr_limit(struct iwl_trans *trans, struct pci_dev *pdev) { acpi_handle pxsx_handle; acpi_handle handle; - struct acpi_buffer splx = {ACPI_ALLOCATE_BUFFER, NULL}; + struct acpi_buffer splc = {ACPI_ALLOCATE_BUFFER, NULL}; acpi_status status; pxsx_handle = ACPI_HANDLE(&pdev->dev); @@ -578,23 +594,24 @@ } /* Get the method's handle */ - status = acpi_get_handle(pxsx_handle, (acpi_string)SPL_METHOD, &handle); + status = acpi_get_handle(pxsx_handle, (acpi_string)ACPI_SPLC_METHOD, + &handle); if (ACPI_FAILURE(status)) { - IWL_DEBUG_INFO(trans, "SPL method not found\n"); + IWL_DEBUG_INFO(trans, "SPLC method not found\n"); return; } /* Call SPLC with no arguments */ - status = acpi_evaluate_object(handle, NULL, NULL, &splx); + status = acpi_evaluate_object(handle, NULL, NULL, &splc); if (ACPI_FAILURE(status)) { IWL_ERR(trans, "SPLC invocation failed (0x%x)\n", status); return; } - trans->dflt_pwr_limit = splx_get_pwr_limit(trans, splx.pointer); + trans->dflt_pwr_limit = splc_get_pwr_limit(trans, splc.pointer); IWL_DEBUG_INFO(trans, "Default power limit set to %lld\n", trans->dflt_pwr_limit); - kfree(splx.pointer); + kfree(splc.pointer); } #else /* CONFIG_ACPI */ --- linux-4.8.0.orig/drivers/net/wireless/intel/iwlwifi/pcie/tx.c +++ linux-4.8.0/drivers/net/wireless/intel/iwlwifi/pcie/tx.c @@ -522,6 +522,7 @@ static int iwl_pcie_txq_init(struct iwl_trans *trans, struct iwl_txq *txq, int slots_num, u32 txq_id) { + struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans); int ret; txq->need_update = false; @@ -536,6 +537,13 @@ return ret; spin_lock_init(&txq->lock); + + if (txq_id == trans_pcie->cmd_queue) { + static struct lock_class_key iwl_pcie_cmd_queue_lock_class; + + lockdep_set_class(&txq->lock, &iwl_pcie_cmd_queue_lock_class); + } + __skb_queue_head_init(&txq->overflow_q); /* --- linux-4.8.0.orig/drivers/net/wireless/marvell/mwifiex/cfg80211.c +++ linux-4.8.0/drivers/net/wireless/marvell/mwifiex/cfg80211.c @@ -2203,8 +2203,9 @@ is_scanning_required = 1; } else { mwifiex_dbg(priv->adapter, MSG, - "info: trying to associate to '%s' bssid %pM\n", - (char *)req_ssid.ssid, bss->bssid); + "info: trying to associate to '%.*s' bssid %pM\n", + req_ssid.ssid_len, (char *)req_ssid.ssid, + bss->bssid); memcpy(&priv->cfg_bssid, bss->bssid, ETH_ALEN); break; } @@ -2264,8 +2265,8 @@ } mwifiex_dbg(adapter, INFO, - "info: Trying to associate to %s and bssid %pM\n", - (char *)sme->ssid, sme->bssid); + "info: Trying to associate to %.*s and bssid %pM\n", + (int)sme->ssid_len, (char *)sme->ssid, sme->bssid); if (!mwifiex_stop_bg_scan(priv)) cfg80211_sched_scan_stopped_rtnl(priv->wdev.wiphy); @@ -2398,8 +2399,8 @@ } mwifiex_dbg(priv->adapter, MSG, - "info: trying to join to %s and bssid %pM\n", - (char *)params->ssid, params->bssid); + "info: trying to join to %.*s and bssid %pM\n", + params->ssid_len, (char *)params->ssid, params->bssid); mwifiex_set_ibss_params(priv, params); --- linux-4.8.0.orig/drivers/net/wireless/marvell/mwifiex/join.c +++ linux-4.8.0/drivers/net/wireless/marvell/mwifiex/join.c @@ -669,9 +669,8 @@ priv->assoc_rsp_size = min(le16_to_cpu(resp->size) - S_DS_GEN, sizeof(priv->assoc_rsp_buf)); - memcpy(priv->assoc_rsp_buf, &resp->params, priv->assoc_rsp_size); - assoc_rsp->a_id = cpu_to_le16(aid); + memcpy(priv->assoc_rsp_buf, &resp->params, priv->assoc_rsp_size); if (status_code) { priv->adapter->dbg.num_cmd_assoc_failure++; --- linux-4.8.0.orig/drivers/net/wireless/marvell/mwifiex/sta_event.c +++ linux-4.8.0/drivers/net/wireless/marvell/mwifiex/sta_event.c @@ -708,7 +708,11 @@ case EVENT_EXT_SCAN_REPORT: mwifiex_dbg(adapter, EVENT, "event: EXT_SCAN Report\n"); - if (adapter->ext_scan && !priv->scan_aborting) + /* We intend to skip this event during suspend, but handle + * it in interface disabled case + */ + if (adapter->ext_scan && (!priv->scan_aborting || + !netif_running(priv->netdev))) ret = mwifiex_handle_event_ext_scan_report(priv, adapter->event_skb->data); --- linux-4.8.0.orig/drivers/net/wireless/ralink/rt2x00/rt2x00usb.c +++ linux-4.8.0/drivers/net/wireless/ralink/rt2x00/rt2x00usb.c @@ -831,8 +831,10 @@ rt2x00dev->anchor = devm_kmalloc(&usb_dev->dev, sizeof(struct usb_anchor), GFP_KERNEL); - if (!rt2x00dev->anchor) + if (!rt2x00dev->anchor) { + retval = -ENOMEM; goto exit_free_reg; + } init_usb_anchor(rt2x00dev->anchor); return 0; --- linux-4.8.0.orig/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu.h +++ linux-4.8.0/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu.h @@ -231,7 +231,7 @@ u32 pattern1match:1; u32 pattern0match:1; #endif - __le32 tsfl; + u32 tsfl; #if 0 u32 bassn:12; u32 bavld:1; @@ -361,7 +361,7 @@ u32 ldcp:1; u32 splcp:1; #endif - __le32 tsfl; + u32 tsfl; }; struct rtl8xxxu_txdesc32 { --- linux-4.8.0.orig/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_8723b.c +++ linux-4.8.0/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_8723b.c @@ -1498,6 +1498,10 @@ u32 val32; u8 val8; + val32 = rtl8xxxu_read32(priv, REG_RX_WAIT_CCA); + val32 |= (BIT(22) | BIT(23)); + rtl8xxxu_write32(priv, REG_RX_WAIT_CCA, val32); + /* * No indication anywhere as to what 0x0790 does. The 2 antenna * vendor code preserves bits 6-7 here. --- linux-4.8.0.orig/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c +++ linux-4.8.0/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c @@ -4401,6 +4401,13 @@ void rtl8xxxu_gen2_report_connect(struct rtl8xxxu_priv *priv, u8 macid, bool connect) { +#ifdef RTL8XXXU_GEN2_REPORT_CONNECT + /* + * Barry Day reports this causes issues with 8192eu and 8723bu + * devices reconnecting. The reason for this is unclear, but + * until it is better understood, leave the code in place but + * disabled, so it is not lost. + */ struct h2c_cmd h2c; memset(&h2c, 0, sizeof(struct h2c_cmd)); @@ -4412,6 +4419,7 @@ h2c.media_status_rpt.parm &= ~BIT(0); rtl8xxxu_gen2_h2c_cmd(priv, &h2c, sizeof(h2c.media_status_rpt)); +#endif } void rtl8xxxu_gen1_init_aggregation(struct rtl8xxxu_priv *priv) @@ -5201,7 +5209,12 @@ pkt_offset = roundup(pkt_len + drvinfo_sz + desc_shift + sizeof(struct rtl8xxxu_rxdesc16), 128); - if (pkt_cnt > 1) + /* + * Only clone the skb if there's enough data at the end to + * at least cover the rx descriptor + */ + if (pkt_cnt > 1 && + urb_len > (pkt_offset + sizeof(struct rtl8xxxu_rxdesc16))) next_skb = skb_clone(skb, GFP_ATOMIC); rx_status = IEEE80211_SKB_RXCB(skb); @@ -5219,7 +5232,7 @@ rtl8xxxu_rx_parse_phystats(priv, rx_status, phy_stats, rx_desc->rxmcs); - rx_status->mactime = le32_to_cpu(rx_desc->tsfl); + rx_status->mactime = rx_desc->tsfl; rx_status->flag |= RX_FLAG_MACTIME_START; if (!rx_desc->swdec) @@ -5289,7 +5302,7 @@ rtl8xxxu_rx_parse_phystats(priv, rx_status, phy_stats, rx_desc->rxmcs); - rx_status->mactime = le32_to_cpu(rx_desc->tsfl); + rx_status->mactime = rx_desc->tsfl; rx_status->flag |= RX_FLAG_MACTIME_START; if (!rx_desc->swdec) --- linux-4.8.0.orig/drivers/net/wireless/realtek/rtlwifi/base.c +++ linux-4.8.0/drivers/net/wireless/realtek/rtlwifi/base.c @@ -1303,12 +1303,13 @@ static void setup_arp_tx(struct rtl_priv *rtlpriv, struct rtl_ps_ctl *ppsc) { + struct ieee80211_hw *hw = rtlpriv->hw; + rtlpriv->ra.is_special_data = true; if (rtlpriv->cfg->ops->get_btc_status()) rtlpriv->btcoexist.btc_ops->btc_special_packet_notify( rtlpriv, 1); - rtlpriv->enter_ps = false; - schedule_work(&rtlpriv->works.lps_change_work); + rtl_lps_leave(hw); ppsc->last_delaylps_stamp_jiffies = jiffies; } @@ -1381,8 +1382,7 @@ if (is_tx) { rtlpriv->ra.is_special_data = true; - rtlpriv->enter_ps = false; - schedule_work(&rtlpriv->works.lps_change_work); + rtl_lps_leave(hw); ppsc->last_delaylps_stamp_jiffies = jiffies; } --- linux-4.8.0.orig/drivers/net/wireless/realtek/rtlwifi/core.c +++ linux-4.8.0/drivers/net/wireless/realtek/rtlwifi/core.c @@ -1149,10 +1149,8 @@ } else { mstatus = RT_MEDIA_DISCONNECT; - if (mac->link_state == MAC80211_LINKED) { - rtlpriv->enter_ps = false; - schedule_work(&rtlpriv->works.lps_change_work); - } + if (mac->link_state == MAC80211_LINKED) + rtl_lps_leave(hw); if (ppsc->p2p_ps_info.p2p_ps_mode > P2P_PS_NONE) rtl_p2p_ps_cmd(hw, P2P_PS_DISABLE); mac->link_state = MAC80211_NOLINK; @@ -1430,8 +1428,7 @@ } if (mac->link_state == MAC80211_LINKED) { - rtlpriv->enter_ps = false; - schedule_work(&rtlpriv->works.lps_change_work); + rtl_lps_leave(hw); mac->link_state = MAC80211_LINKED_SCANNING; } else { rtl_ips_nic_on(hw); --- linux-4.8.0.orig/drivers/net/wireless/realtek/rtlwifi/pci.c +++ linux-4.8.0/drivers/net/wireless/realtek/rtlwifi/pci.c @@ -662,11 +662,9 @@ } if (((rtlpriv->link_info.num_rx_inperiod + - rtlpriv->link_info.num_tx_inperiod) > 8) || - (rtlpriv->link_info.num_rx_inperiod > 2)) { - rtlpriv->enter_ps = false; - schedule_work(&rtlpriv->works.lps_change_work); - } + rtlpriv->link_info.num_tx_inperiod) > 8) || + (rtlpriv->link_info.num_rx_inperiod > 2)) + rtl_lps_leave(hw); } static int _rtl_pci_init_one_rxdesc(struct ieee80211_hw *hw, @@ -917,10 +915,8 @@ } if (((rtlpriv->link_info.num_rx_inperiod + rtlpriv->link_info.num_tx_inperiod) > 8) || - (rtlpriv->link_info.num_rx_inperiod > 2)) { - rtlpriv->enter_ps = false; - schedule_work(&rtlpriv->works.lps_change_work); - } + (rtlpriv->link_info.num_rx_inperiod > 2)) + rtl_lps_leave(hw); skb = new_skb; no_new: if (rtlpriv->use_new_trx_flow) { --- linux-4.8.0.orig/drivers/net/wireless/realtek/rtlwifi/ps.c +++ linux-4.8.0/drivers/net/wireless/realtek/rtlwifi/ps.c @@ -407,8 +407,8 @@ } } -/*Enter the leisure power save mode.*/ -void rtl_lps_enter(struct ieee80211_hw *hw) +/* Interrupt safe routine to enter the leisure power save mode.*/ +static void rtl_lps_enter_core(struct ieee80211_hw *hw) { struct rtl_mac *mac = rtl_mac(rtl_priv(hw)); struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw)); @@ -444,10 +444,9 @@ spin_unlock_irqrestore(&rtlpriv->locks.lps_lock, flag); } -EXPORT_SYMBOL(rtl_lps_enter); -/*Leave the leisure power save mode.*/ -void rtl_lps_leave(struct ieee80211_hw *hw) +/* Interrupt safe routine to leave the leisure power save mode.*/ +static void rtl_lps_leave_core(struct ieee80211_hw *hw) { struct rtl_priv *rtlpriv = rtl_priv(hw); struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw)); @@ -477,7 +476,6 @@ } spin_unlock_irqrestore(&rtlpriv->locks.lps_lock, flag); } -EXPORT_SYMBOL(rtl_lps_leave); /* For sw LPS*/ void rtl_swlps_beacon(struct ieee80211_hw *hw, void *data, unsigned int len) @@ -670,12 +668,34 @@ struct rtl_priv *rtlpriv = rtl_priv(hw); if (rtlpriv->enter_ps) - rtl_lps_enter(hw); + rtl_lps_enter_core(hw); else - rtl_lps_leave(hw); + rtl_lps_leave_core(hw); } EXPORT_SYMBOL_GPL(rtl_lps_change_work_callback); +void rtl_lps_enter(struct ieee80211_hw *hw) +{ + struct rtl_priv *rtlpriv = rtl_priv(hw); + + if (!in_interrupt()) + return rtl_lps_enter_core(hw); + rtlpriv->enter_ps = true; + schedule_work(&rtlpriv->works.lps_change_work); +} +EXPORT_SYMBOL_GPL(rtl_lps_enter); + +void rtl_lps_leave(struct ieee80211_hw *hw) +{ + struct rtl_priv *rtlpriv = rtl_priv(hw); + + if (!in_interrupt()) + return rtl_lps_leave_core(hw); + rtlpriv->enter_ps = false; + schedule_work(&rtlpriv->works.lps_change_work); +} +EXPORT_SYMBOL_GPL(rtl_lps_leave); + void rtl_swlps_wq_callback(void *data) { struct rtl_works *rtlworks = container_of_dwork_rtl(data, --- linux-4.8.0.orig/drivers/net/wireless/realtek/rtlwifi/regd.c +++ linux-4.8.0/drivers/net/wireless/realtek/rtlwifi/regd.c @@ -345,9 +345,9 @@ return &rtl_regdom_no_midband; case COUNTRY_CODE_IC: return &rtl_regdom_11; - case COUNTRY_CODE_ETSI: case COUNTRY_CODE_TELEC_NETGEAR: return &rtl_regdom_60_64; + case COUNTRY_CODE_ETSI: case COUNTRY_CODE_SPAIN: case COUNTRY_CODE_FRANCE: case COUNTRY_CODE_ISRAEL: @@ -406,6 +406,8 @@ return COUNTRY_CODE_WORLD_WIDE_13; case 0x22: return COUNTRY_CODE_IC; + case 0x25: + return COUNTRY_CODE_ETSI; case 0x32: return COUNTRY_CODE_TELEC_NETGEAR; case 0x41: --- linux-4.8.0.orig/drivers/net/wireless/realtek/rtlwifi/usb.c +++ linux-4.8.0/drivers/net/wireless/realtek/rtlwifi/usb.c @@ -1073,6 +1073,7 @@ return -ENOMEM; } rtlpriv = hw->priv; + rtlpriv->hw = hw; rtlpriv->usb_data = kzalloc(RTL_USB_MAX_RX_COUNT * sizeof(u32), GFP_KERNEL); if (!rtlpriv->usb_data) --- linux-4.8.0.orig/drivers/nfc/mei_phy.c +++ linux-4.8.0/drivers/nfc/mei_phy.c @@ -133,7 +133,7 @@ return -ENOMEM; bytes_recv = mei_cldev_recv(phy->cldev, (u8 *)reply, if_version_length); - if (bytes_recv < 0 || bytes_recv < sizeof(struct mei_nfc_reply)) { + if (bytes_recv < 0 || bytes_recv < if_version_length) { pr_err("Could not read IF version\n"); r = -EIO; goto err; --- linux-4.8.0.orig/drivers/nvdimm/bus.c +++ linux-4.8.0/drivers/nvdimm/bus.c @@ -217,6 +217,8 @@ return rc; if (cmd_rc < 0) return cmd_rc; + + nvdimm_clear_from_poison_list(nvdimm_bus, phys, len); return clear_err.cleared; } EXPORT_SYMBOL_GPL(nvdimm_clear_poison); @@ -713,7 +715,7 @@ u32 nd_cmd_out_size(struct nvdimm *nvdimm, int cmd, const struct nd_cmd_desc *desc, int idx, const u32 *in_field, - const u32 *out_field) + const u32 *out_field, unsigned long remainder) { if (idx >= desc->out_num) return UINT_MAX; @@ -725,9 +727,24 @@ return in_field[1]; else if (nvdimm && cmd == ND_CMD_VENDOR && idx == 2) return out_field[1]; - else if (!nvdimm && cmd == ND_CMD_ARS_STATUS && idx == 2) - return out_field[1] - 8; - else if (cmd == ND_CMD_CALL) { + else if (!nvdimm && cmd == ND_CMD_ARS_STATUS && idx == 2) { + /* + * Per table 9-276 ARS Data in ACPI 6.1, out_field[1] is + * "Size of Output Buffer in bytes, including this + * field." + */ + if (out_field[1] < 4) + return 0; + /* + * ACPI 6.1 is ambiguous if 'status' is included in the + * output size. If we encounter an output size that + * overshoots the remainder by 4 bytes, assume it was + * including 'status'. + */ + if (out_field[1] - 8 == remainder) + return remainder; + return out_field[1] - 4; + } else if (cmd == ND_CMD_CALL) { struct nd_cmd_pkg *pkg = (struct nd_cmd_pkg *) in_field; return pkg->nd_size_out; @@ -874,7 +891,7 @@ /* process an output envelope */ for (i = 0; i < desc->out_num; i++) { u32 out_size = nd_cmd_out_size(nvdimm, cmd, desc, i, - (u32 *) in_env, (u32 *) out_env); + (u32 *) in_env, (u32 *) out_env, 0); u32 copy; if (out_size == UINT_MAX) { --- linux-4.8.0.orig/drivers/nvdimm/core.c +++ linux-4.8.0/drivers/nvdimm/core.c @@ -547,11 +547,12 @@ } EXPORT_SYMBOL_GPL(nvdimm_badblocks_populate); -static int add_poison(struct nvdimm_bus *nvdimm_bus, u64 addr, u64 length) +static int add_poison(struct nvdimm_bus *nvdimm_bus, u64 addr, u64 length, + gfp_t flags) { struct nd_poison *pl; - pl = kzalloc(sizeof(*pl), GFP_KERNEL); + pl = kzalloc(sizeof(*pl), flags); if (!pl) return -ENOMEM; @@ -567,7 +568,7 @@ struct nd_poison *pl; if (list_empty(&nvdimm_bus->poison_list)) - return add_poison(nvdimm_bus, addr, length); + return add_poison(nvdimm_bus, addr, length, GFP_KERNEL); /* * There is a chance this is a duplicate, check for those first. @@ -587,7 +588,7 @@ * as any overlapping ranges will get resolved when the list is consumed * and converted to badblocks */ - return add_poison(nvdimm_bus, addr, length); + return add_poison(nvdimm_bus, addr, length, GFP_KERNEL); } int nvdimm_bus_add_poison(struct nvdimm_bus *nvdimm_bus, u64 addr, u64 length) @@ -602,6 +603,70 @@ } EXPORT_SYMBOL_GPL(nvdimm_bus_add_poison); +void nvdimm_clear_from_poison_list(struct nvdimm_bus *nvdimm_bus, + phys_addr_t start, unsigned int len) +{ + struct list_head *poison_list = &nvdimm_bus->poison_list; + u64 clr_end = start + len - 1; + struct nd_poison *pl, *next; + + nvdimm_bus_lock(&nvdimm_bus->dev); + WARN_ON_ONCE(list_empty(poison_list)); + + /* + * [start, clr_end] is the poison interval being cleared. + * [pl->start, pl_end] is the poison_list entry we're comparing + * the above interval against. The poison list entry may need + * to be modified (update either start or length), deleted, or + * split into two based on the overlap characteristics + */ + + list_for_each_entry_safe(pl, next, poison_list, list) { + u64 pl_end = pl->start + pl->length - 1; + + /* Skip intervals with no intersection */ + if (pl_end < start) + continue; + if (pl->start > clr_end) + continue; + /* Delete completely overlapped poison entries */ + if ((pl->start >= start) && (pl_end <= clr_end)) { + list_del(&pl->list); + kfree(pl); + continue; + } + /* Adjust start point of partially cleared entries */ + if ((start <= pl->start) && (clr_end > pl->start)) { + pl->length -= clr_end - pl->start + 1; + pl->start = clr_end + 1; + continue; + } + /* Adjust pl->length for partial clearing at the tail end */ + if ((pl->start < start) && (pl_end <= clr_end)) { + /* pl->start remains the same */ + pl->length = start - pl->start; + continue; + } + /* + * If clearing in the middle of an entry, we split it into + * two by modifying the current entry to represent one half of + * the split, and adding a new entry for the second half. + */ + if ((pl->start < start) && (pl_end > clr_end)) { + u64 new_start = clr_end + 1; + u64 new_len = pl_end - new_start + 1; + + /* Add new entry covering the right half */ + add_poison(nvdimm_bus, new_start, new_len, GFP_NOIO); + /* Adjust this entry to cover the left half */ + pl->length = start - pl->start; + continue; + } + } + nvdimm_bus_unlock(&nvdimm_bus->dev); +} +EXPORT_SYMBOL_GPL(nvdimm_clear_from_poison_list); + #ifdef CONFIG_BLK_DEV_INTEGRITY int nd_integrity_init(struct gendisk *disk, unsigned long meta_size) { --- linux-4.8.0.orig/drivers/nvdimm/pfn_devs.c +++ linux-4.8.0/drivers/nvdimm/pfn_devs.c @@ -108,7 +108,7 @@ { struct nd_pfn *nd_pfn = to_nd_pfn_safe(dev); - return sprintf(buf, "%lx\n", nd_pfn->align); + return sprintf(buf, "%ld\n", nd_pfn->align); } static ssize_t __align_store(struct nd_pfn *nd_pfn, const char *buf) --- linux-4.8.0.orig/drivers/nvme/host/Kconfig +++ linux-4.8.0/drivers/nvme/host/Kconfig @@ -25,6 +25,13 @@ emulation to provide stable device names for mount by id, like some OpenSuSE and SLES versions. +config NVME_VENDOR_EXT_GOOGLE + bool "NVMe Vendor Extension for Improved Virtualization" + depends on BLK_DEV_NVME + ---help--- + Google extension to reduce the number of MMIO doorbell + writes for the NVMe driver + config NVME_FABRICS tristate --- linux-4.8.0.orig/drivers/nvme/host/core.c +++ linux-4.8.0/drivers/nvme/host/core.c @@ -26,6 +26,7 @@ #include #include #include +#include #include #include @@ -56,6 +57,11 @@ static int nvme_char_major; module_param(nvme_char_major, int, 0); +static unsigned long default_ps_max_latency_us = 25000; +module_param(default_ps_max_latency_us, ulong, 0644); +MODULE_PARM_DESC(default_ps_max_latency_us, + "max power saving latency for new devices; use PM QOS to change per device"); + static LIST_HEAD(nvme_ctrl_list); static DEFINE_SPINLOCK(dev_list_lock); @@ -225,8 +231,7 @@ req->cmd_type = REQ_TYPE_DRV_PRIV; req->cmd_flags |= REQ_FAILFAST_DRIVER; - req->cmd = (unsigned char *)cmd; - req->cmd_len = sizeof(struct nvme_command); + nvme_req(req)->cmd = cmd; return req; } @@ -325,7 +330,7 @@ int ret = 0; if (req->cmd_type == REQ_TYPE_DRV_PRIV) - memcpy(cmd, req->cmd, sizeof(*cmd)); + memcpy(cmd, nvme_req(req)->cmd, sizeof(*cmd)); else if (req_op(req) == REQ_OP_FLUSH) nvme_setup_flush(ns, cmd); else if (req_op(req) == REQ_OP_DISCARD) @@ -342,7 +347,7 @@ * if the result is positive, it's an NVM Express status code */ int __nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd, - struct nvme_completion *cqe, void *buffer, unsigned bufflen, + union nvme_result *result, void *buffer, unsigned bufflen, unsigned timeout, int qid, int at_head, int flags) { struct request *req; @@ -353,7 +358,6 @@ return PTR_ERR(req); req->timeout = timeout ? timeout : ADMIN_TIMEOUT; - req->special = cqe; if (buffer && bufflen) { ret = blk_rq_map_kern(q, req, buffer, bufflen, GFP_KERNEL); @@ -362,6 +366,8 @@ } blk_execute_rq(req->q, NULL, req, at_head); + if (result) + *result = nvme_req(req)->result; ret = req->errors; out: blk_mq_free_request(req); @@ -383,7 +389,6 @@ u32 *result, unsigned timeout) { bool write = nvme_is_write(cmd); - struct nvme_completion cqe; struct nvme_ns *ns = q->queuedata; struct gendisk *disk = ns ? ns->disk : NULL; struct request *req; @@ -396,7 +401,6 @@ return PTR_ERR(req); req->timeout = timeout ? timeout : ADMIN_TIMEOUT; - req->special = &cqe; if (ubuffer && bufflen) { ret = blk_rq_map_user(q, req, NULL, ubuffer, bufflen, @@ -451,7 +455,7 @@ blk_execute_rq(req->q, disk, req, 0); ret = req->errors; if (result) - *result = le32_to_cpu(cqe.result); + *result = le32_to_cpu(nvme_req(req)->result.u32); if (meta && !ret && !write) { if (copy_to_user(meta_buffer, meta, meta_len)) ret = -EFAULT; @@ -597,42 +601,40 @@ } int nvme_get_features(struct nvme_ctrl *dev, unsigned fid, unsigned nsid, - dma_addr_t dma_addr, u32 *result) + void *buffer, size_t buflen, u32 *result) { struct nvme_command c; - struct nvme_completion cqe; + union nvme_result res; int ret; memset(&c, 0, sizeof(c)); c.features.opcode = nvme_admin_get_features; c.features.nsid = cpu_to_le32(nsid); - c.features.dptr.prp1 = cpu_to_le64(dma_addr); c.features.fid = cpu_to_le32(fid); - ret = __nvme_submit_sync_cmd(dev->admin_q, &c, &cqe, NULL, 0, 0, + ret = __nvme_submit_sync_cmd(dev->admin_q, &c, &res, buffer, buflen, 0, NVME_QID_ANY, 0, 0); if (ret >= 0 && result) - *result = le32_to_cpu(cqe.result); + *result = le32_to_cpu(res.u32); return ret; } int nvme_set_features(struct nvme_ctrl *dev, unsigned fid, unsigned dword11, - dma_addr_t dma_addr, u32 *result) + void *buffer, size_t buflen, u32 *result) { struct nvme_command c; - struct nvme_completion cqe; + union nvme_result res; int ret; memset(&c, 0, sizeof(c)); c.features.opcode = nvme_admin_set_features; - c.features.dptr.prp1 = cpu_to_le64(dma_addr); c.features.fid = cpu_to_le32(fid); c.features.dword11 = cpu_to_le32(dword11); - ret = __nvme_submit_sync_cmd(dev->admin_q, &c, &cqe, NULL, 0, 0, - NVME_QID_ANY, 0, 0); + ret = __nvme_submit_sync_cmd(dev->admin_q, &c, &res, + buffer, buflen, 0, NVME_QID_ANY, 0, 0); if (ret >= 0 && result) - *result = le32_to_cpu(cqe.result); + *result = le32_to_cpu(res.u32); return ret; } @@ -664,7 +666,7 @@ u32 result; int status, nr_io_queues; - status = nvme_set_features(ctrl, NVME_FEAT_NUM_QUEUES, q_count, 0, + status = nvme_set_features(ctrl, NVME_FEAT_NUM_QUEUES, q_count, NULL, 0, &result); if (status < 0) return status; @@ -1112,12 +1114,7 @@ if (ret) return ret; - /* Checking for ctrl->tagset is a trick to avoid sleeping on module - * load, since we only need the quirk on reset_controller. Notice - * that the HGST device needs this delay only in firmware activation - * procedure; unfortunately we have no (easy) way to verify this. - */ - if ((ctrl->quirks & NVME_QUIRK_DELAY_BEFORE_CHK_RDY) && ctrl->tagset) + if (ctrl->quirks & NVME_QUIRK_DELAY_BEFORE_CHK_RDY) msleep(NVME_QUIRK_DELAY_AMOUNT); return nvme_wait_ready(ctrl, cap, false); @@ -1207,6 +1204,183 @@ blk_queue_write_cache(q, vwc, vwc); } +static void nvme_configure_apst(struct nvme_ctrl *ctrl) +{ + /* + * APST (Autonomous Power State Transition) lets us program a + * table of power state transitions that the controller will + * perform automatically. We configure it with a simple + * heuristic: we are willing to spend at most 2% of the time + * transitioning between power states. Therefore, when running + * in any given state, we will enter the next lower-power + * non-operational state after waiting 100 * (enlat + exlat) + * microseconds, as long as that state's total latency is under + * the requested maximum latency. + * + * We will not autonomously enter any non-operational state for + * which the total latency exceeds ps_max_latency_us. Users + * can set ps_max_latency_us to zero to turn off APST. + */ + + unsigned apste; + struct nvme_feat_auto_pst *table; + int ret; + + /* + * If APST isn't supported or if we haven't been initialized yet, + * then don't do anything. + */ + if (!ctrl->apsta) + return; + + if (ctrl->npss > 31) { + dev_warn(ctrl->device, "NPSS is invalid; not using APST\n"); + return; + } + + table = kzalloc(sizeof(*table), GFP_KERNEL); + if (!table) + return; + + if (ctrl->ps_max_latency_us == 0) { + /* Turn off APST. */ + apste = 0; + } else { + __le64 target = cpu_to_le64(0); + int state; + + /* + * Walk through all states from lowest- to highest-power. + * According to the spec, lower-numbered states use more + * power. NPSS, despite the name, is the index of the + * lowest-power state, not the number of states. + */ + for (state = (int)ctrl->npss; state >= 0; state--) { + u64 total_latency_us, transition_ms; + + if (target) + table->entries[state] = target; + + /* + * Don't allow transitions to the deepest state + * if it's quirked off. + */ + if (state == ctrl->npss && + (ctrl->quirks & NVME_QUIRK_NO_DEEPEST_PS)) + continue; + + /* + * Is this state a useful non-operational state for + * higher-power states to autonomously transition to? + */ + if (!(ctrl->psd[state].flags & + NVME_PS_FLAGS_NON_OP_STATE)) + continue; + + total_latency_us = + (u64)le32_to_cpu(ctrl->psd[state].entry_lat) + + + le32_to_cpu(ctrl->psd[state].exit_lat); + if (total_latency_us > ctrl->ps_max_latency_us) + continue; + + /* + * This state is good. Use it as the APST idle + * target for higher power states. + */ + transition_ms = total_latency_us + 19; + do_div(transition_ms, 20); + if (transition_ms > (1 << 24) - 1) + transition_ms = (1 << 24) - 1; + + target = cpu_to_le64((state << 3) | + (transition_ms << 8)); + } + + apste = 1; + } + + ret = nvme_set_features(ctrl, NVME_FEAT_AUTO_PST, apste, + table, sizeof(*table), NULL); + if (ret) + dev_err(ctrl->device, "failed to set APST feature (%d)\n", ret); + + kfree(table); +} + +static void nvme_set_latency_tolerance(struct device *dev, s32 val) +{ + struct nvme_ctrl *ctrl = dev_get_drvdata(dev); + u64 latency; + + switch (val) { + case PM_QOS_LATENCY_TOLERANCE_NO_CONSTRAINT: + case PM_QOS_LATENCY_ANY: + latency = U64_MAX; + break; + + default: + latency = val; + } + + if (ctrl->ps_max_latency_us != latency) { + ctrl->ps_max_latency_us = latency; + nvme_configure_apst(ctrl); + } +} + +struct nvme_core_quirk_entry { + /* + * NVMe model and firmware strings are padded with spaces. For + * simplicity, strings in the quirk table are padded with NULLs + * instead. + */ + u16 vid; + const char *mn; + const char *fr; + unsigned long quirks; +}; + +static const struct nvme_core_quirk_entry core_quirks[] = { + { + /* + * This Toshiba device seems to die using any APST states. See: + * https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1678184/comments/11 + */ + .vid = 0x1179, + .mn = "THNSF5256GPUK TOSHIBA", + .quirks = NVME_QUIRK_NO_APST, + } +}; + +/* match is null-terminated but idstr is space-padded. */ +static bool string_matches(const char *idstr, const char *match, size_t len) +{ + size_t matchlen; + + if (!match) + return true; + + matchlen = strlen(match); + WARN_ON_ONCE(matchlen > len); + + if (memcmp(idstr, match, matchlen)) + return false; + + for (; matchlen < len; matchlen++) + if (idstr[matchlen] != ' ') + return false; + + return true; +} + +static bool quirk_matches(const struct nvme_id_ctrl *id, + const struct nvme_core_quirk_entry *q) +{ + return q->vid == le16_to_cpu(id->vid) && + string_matches(id->mn, q->mn, sizeof(id->mn)) && + string_matches(id->fr, q->fr, sizeof(id->fr)); +} + /* * Initialize the cached copies of the Identify data and various controller * register in our nvme_ctrl structure. This should be called as soon as @@ -1218,6 +1392,7 @@ u64 cap; int ret, page_shift; u32 max_hw_sectors; + u8 prev_apsta; ret = ctrl->ops->reg_read32(ctrl, NVME_REG_VS, &ctrl->vs); if (ret) { @@ -1241,6 +1416,24 @@ return -EIO; } + if (!ctrl->identified) { + /* + * Check for quirks. Quirk can depend on firmware version, + * so, in principle, the set of quirks present can change + * across a reset. As a possible future enhancement, we + * could re-scan for quirks every time we reinitialize + * the device, but we'd have to make sure that the driver + * behaves intelligently if the quirks change. + */ + + int i; + + for (i = 0; i < ARRAY_SIZE(core_quirks); i++) { + if (quirk_matches(id, &core_quirks[i])) + ctrl->quirks |= core_quirks[i].quirks; + } + } + ctrl->vid = le16_to_cpu(id->vid); ctrl->oncs = le16_to_cpup(&id->oncs); atomic_set(&ctrl->abort_limit, id->acl + 1); @@ -1273,6 +1466,11 @@ ctrl->sgls = le32_to_cpu(id->sgls); ctrl->kas = le16_to_cpu(id->kas); + ctrl->npss = id->npss; + prev_apsta = ctrl->apsta; + ctrl->apsta = (ctrl->quirks & NVME_QUIRK_NO_APST) ? 0 : id->apsta; + memcpy(ctrl->psd, id->psd, sizeof(ctrl->psd)); + if (ctrl->ops->is_fabrics) { ctrl->icdoff = le16_to_cpu(id->icdoff); ctrl->ioccsz = le32_to_cpu(id->ioccsz); @@ -1296,6 +1494,16 @@ } kfree(id); + + if (ctrl->apsta && !prev_apsta) + dev_pm_qos_expose_latency_tolerance(ctrl->device); + else if (!ctrl->apsta && prev_apsta) + dev_pm_qos_hide_latency_tolerance(ctrl->device); + + nvme_configure_apst(ctrl); + + ctrl->identified = true; + return ret; } EXPORT_SYMBOL_GPL(nvme_init_identify); @@ -1885,7 +2093,7 @@ struct nvme_completion *cqe) { u16 status = le16_to_cpu(cqe->status) >> 1; - u32 result = le32_to_cpu(cqe->result); + u32 result = le32_to_cpu(cqe->result.u32); if (status == NVME_SC_SUCCESS || status == NVME_SC_ABORT_REQ) { ++ctrl->event_limit; @@ -2013,6 +2221,14 @@ list_add_tail(&ctrl->node, &nvme_ctrl_list); spin_unlock(&dev_list_lock); + /* + * Initialize latency tolerance controls. The sysfs files won't + * be visible to userspace unless the device actually supports APST. + */ + ctrl->device->power.set_latency_tolerance = nvme_set_latency_tolerance; + dev_pm_qos_update_user_latency_tolerance(ctrl->device, + min(default_ps_max_latency_us, (unsigned long)S32_MAX)); + return 0; out_release_instance: nvme_release_instance(ctrl); --- linux-4.8.0.orig/drivers/nvme/host/fabrics.c +++ linux-4.8.0/drivers/nvme/host/fabrics.c @@ -150,7 +150,7 @@ int nvmf_reg_read32(struct nvme_ctrl *ctrl, u32 off, u32 *val) { struct nvme_command cmd; - struct nvme_completion cqe; + union nvme_result res; int ret; memset(&cmd, 0, sizeof(cmd)); @@ -158,11 +158,11 @@ cmd.prop_get.fctype = nvme_fabrics_type_property_get; cmd.prop_get.offset = cpu_to_le32(off); - ret = __nvme_submit_sync_cmd(ctrl->admin_q, &cmd, &cqe, NULL, 0, 0, + ret = __nvme_submit_sync_cmd(ctrl->admin_q, &cmd, &res, NULL, 0, 0, NVME_QID_ANY, 0, 0); if (ret >= 0) - *val = le64_to_cpu(cqe.result64); + *val = le64_to_cpu(res.u64); if (unlikely(ret != 0)) dev_err(ctrl->device, "Property Get error: %d, offset %#x\n", @@ -196,7 +196,7 @@ int nvmf_reg_read64(struct nvme_ctrl *ctrl, u32 off, u64 *val) { struct nvme_command cmd; - struct nvme_completion cqe; + union nvme_result res; int ret; memset(&cmd, 0, sizeof(cmd)); @@ -205,11 +205,11 @@ cmd.prop_get.attrib = 1; cmd.prop_get.offset = cpu_to_le32(off); - ret = __nvme_submit_sync_cmd(ctrl->admin_q, &cmd, &cqe, NULL, 0, 0, + ret = __nvme_submit_sync_cmd(ctrl->admin_q, &cmd, &res, NULL, 0, 0, NVME_QID_ANY, 0, 0); if (ret >= 0) - *val = le64_to_cpu(cqe.result64); + *val = le64_to_cpu(res.u64); if (unlikely(ret != 0)) dev_err(ctrl->device, "Property Get error: %d, offset %#x\n", @@ -357,7 +357,7 @@ int nvmf_connect_admin_queue(struct nvme_ctrl *ctrl) { struct nvme_command cmd; - struct nvme_completion cqe; + union nvme_result res; struct nvmf_connect_data *data; int ret; @@ -389,16 +389,16 @@ strncpy(data->subsysnqn, ctrl->opts->subsysnqn, NVMF_NQN_SIZE); strncpy(data->hostnqn, ctrl->opts->host->nqn, NVMF_NQN_SIZE); - ret = __nvme_submit_sync_cmd(ctrl->admin_q, &cmd, &cqe, + ret = __nvme_submit_sync_cmd(ctrl->admin_q, &cmd, &res, data, sizeof(*data), 0, NVME_QID_ANY, 1, BLK_MQ_REQ_RESERVED | BLK_MQ_REQ_NOWAIT); if (ret) { - nvmf_log_connect_error(ctrl, ret, le32_to_cpu(cqe.result), + nvmf_log_connect_error(ctrl, ret, le32_to_cpu(res.u32), &cmd, data); goto out_free_data; } - ctrl->cntlid = le16_to_cpu(cqe.result16); + ctrl->cntlid = le16_to_cpu(res.u16); out_free_data: kfree(data); @@ -430,7 +430,7 @@ { struct nvme_command cmd; struct nvmf_connect_data *data; - struct nvme_completion cqe; + union nvme_result res; int ret; memset(&cmd, 0, sizeof(cmd)); @@ -448,11 +448,11 @@ strncpy(data->subsysnqn, ctrl->opts->subsysnqn, NVMF_NQN_SIZE); strncpy(data->hostnqn, ctrl->opts->host->nqn, NVMF_NQN_SIZE); - ret = __nvme_submit_sync_cmd(ctrl->connect_q, &cmd, &cqe, + ret = __nvme_submit_sync_cmd(ctrl->connect_q, &cmd, &res, data, sizeof(*data), 0, qid, 1, BLK_MQ_REQ_RESERVED | BLK_MQ_REQ_NOWAIT); if (ret) { - nvmf_log_connect_error(ctrl, ret, le32_to_cpu(cqe.result), + nvmf_log_connect_error(ctrl, ret, le32_to_cpu(res.u32), &cmd, data); } kfree(data); --- linux-4.8.0.orig/drivers/nvme/host/lightnvm.c +++ linux-4.8.0/drivers/nvme/host/lightnvm.c @@ -146,14 +146,6 @@ }; }; -struct nvme_nvm_completion { - __le64 result; /* Used by LightNVM to return ppa completions */ - __le16 sq_head; /* how much of this queue may be reclaimed */ - __le16 sq_id; /* submission queue that generated this entry */ - __u16 command_id; /* of the command which completed */ - __le16 status; /* did the command fail, and if so, why? */ -}; - #define NVME_NVM_LP_MLC_PAIRS 886 struct nvme_nvm_lp_mlc { __le16 num_pairs; @@ -481,11 +473,8 @@ static void nvme_nvm_end_io(struct request *rq, int error) { struct nvm_rq *rqd = rq->end_io_data; - struct nvme_nvm_completion *cqe = rq->special; - - if (cqe) - rqd->ppa_status = le64_to_cpu(cqe->result); + rqd->ppa_status = nvme_req(rq)->result.u64; nvm_end_io(rqd, error); kfree(rq->cmd); @@ -500,20 +489,18 @@ struct bio *bio = rqd->bio; struct nvme_nvm_command *cmd; - rq = blk_mq_alloc_request(q, bio_data_dir(bio), 0); - if (IS_ERR(rq)) + cmd = kzalloc(sizeof(struct nvme_nvm_command), GFP_KERNEL); + if (!cmd) return -ENOMEM; - cmd = kzalloc(sizeof(struct nvme_nvm_command) + - sizeof(struct nvme_nvm_completion), GFP_KERNEL); - if (!cmd) { - blk_mq_free_request(rq); + rq = nvme_alloc_request(q, (struct nvme_command *)cmd, 0, NVME_QID_ANY); + if (IS_ERR(rq)) { + kfree(cmd); return -ENOMEM; } + rq->cmd_flags &= ~REQ_FAILFAST_DRIVER; - rq->cmd_type = REQ_TYPE_DRV_PRIV; rq->ioprio = bio_prio(bio); - if (bio_has_data(bio)) rq->nr_phys_segments = bio_phys_segments(q, bio); @@ -522,10 +509,6 @@ nvme_nvm_rqtocmd(rq, rqd, ns, cmd); - rq->cmd = (unsigned char *)cmd; - rq->cmd_len = sizeof(struct nvme_nvm_command); - rq->special = cmd + 1; - rq->end_io_data = rqd; blk_execute_rq_nowait(q, NULL, rq, 0, nvme_nvm_end_io); --- linux-4.8.0.orig/drivers/nvme/host/nvme.h +++ linux-4.8.0/drivers/nvme/host/nvme.h @@ -76,8 +76,32 @@ * readiness, which is done by reading the NVME_CSTS_RDY bit. */ NVME_QUIRK_DELAY_BEFORE_CHK_RDY = (1 << 3), + + /* + * APST should not be used. + */ + NVME_QUIRK_NO_APST = (1 << 4), + + /* + * The deepest sleep state should not be used. + */ + NVME_QUIRK_NO_DEEPEST_PS = (1 << 5), +}; + +/* + * Common request structure for NVMe passthrough. All drivers must have + * this structure as the first member of their request-private data. + */ +struct nvme_request { + struct nvme_command *cmd; + union nvme_result result; }; +static inline struct nvme_request *nvme_req(struct request *req) +{ + return blk_mq_rq_to_pdu(req); +} + /* The below value is the specific amount of delay needed before checking * readiness in case of the PCI_DEVICE(0x1c58, 0x0003), which needs the * NVME_QUIRK_DELAY_BEFORE_CHK_RDY quirk enabled. The value (in ms) was @@ -96,6 +120,7 @@ struct nvme_ctrl { enum nvme_ctrl_state state; + bool identified; spinlock_t lock; const struct nvme_ctrl_ops *ops; struct request_queue *admin_q; @@ -129,13 +154,19 @@ u32 vs; u32 sgls; u16 kas; + u8 npss; + u8 apsta; unsigned int kato; bool subsystem; unsigned long quirks; + struct nvme_id_power_state psd[32]; struct work_struct scan_work; struct work_struct async_event_work; struct delayed_work ka_work; + /* Power saving configuration */ + u64 ps_max_latency_us; + /* Fabrics only */ u16 sqsize; u32 ioccsz; @@ -278,7 +309,7 @@ int nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd, void *buf, unsigned bufflen); int __nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd, - struct nvme_completion *cqe, void *buffer, unsigned bufflen, + union nvme_result *result, void *buffer, unsigned bufflen, unsigned timeout, int qid, int at_head, int flags); int nvme_submit_user_cmd(struct request_queue *q, struct nvme_command *cmd, void __user *ubuffer, unsigned bufflen, u32 *result, @@ -292,9 +323,9 @@ struct nvme_id_ns **id); int nvme_get_log_page(struct nvme_ctrl *dev, struct nvme_smart_log **log); int nvme_get_features(struct nvme_ctrl *dev, unsigned fid, unsigned nsid, - dma_addr_t dma_addr, u32 *result); + void *buffer, size_t buflen, u32 *result); int nvme_set_features(struct nvme_ctrl *dev, unsigned fid, unsigned dword11, - dma_addr_t dma_addr, u32 *result); + void *buffer, size_t buflen, u32 *result); int nvme_set_queue_count(struct nvme_ctrl *ctrl, int *count); void nvme_start_keep_alive(struct nvme_ctrl *ctrl); void nvme_stop_keep_alive(struct nvme_ctrl *ctrl); --- linux-4.8.0.orig/drivers/nvme/host/pci.c +++ linux-4.8.0/drivers/nvme/host/pci.c @@ -18,6 +18,7 @@ #include #include #include +#include #include #include #include @@ -50,6 +51,9 @@ #define SQ_SIZE(depth) (depth * sizeof(struct nvme_command)) #define CQ_SIZE(depth) (depth * sizeof(struct nvme_completion)) +/* Google Vendor ID is not in include/linux/pci_ids.h */ +#define PCI_VENDOR_ID_GOOGLE 0x1AE0 + /* * We handle AEN commands ourselves and don't even let the * block layer know about them. @@ -101,6 +105,12 @@ u32 cmbsz; struct nvme_ctrl ctrl; struct completion ioq_wait; +#ifdef CONFIG_NVME_VENDOR_EXT_GOOGLE + u32 *db_mem; + dma_addr_t doorbell; + u32 *ei_mem; + dma_addr_t eventidx; +#endif }; static inline struct nvme_dev *to_nvme_dev(struct nvme_ctrl *ctrl) @@ -131,6 +141,12 @@ u16 qid; u8 cq_phase; u8 cqe_seen; +#ifdef CONFIG_NVME_VENDOR_EXT_GOOGLE + u32 *sq_doorbell_addr; + u32 *sq_eventidx_addr; + u32 *cq_doorbell_addr; + u32 *cq_eventidx_addr; +#endif }; /* @@ -140,6 +156,7 @@ * allocated to store the PRP list. */ struct nvme_iod { + struct nvme_request req; struct nvme_queue *nvmeq; int aborted; int npages; /* In the PRP list. 0 means small pool in use */ @@ -168,6 +185,9 @@ BUILD_BUG_ON(sizeof(struct nvme_id_ns) != 4096); BUILD_BUG_ON(sizeof(struct nvme_lba_range_type) != 64); BUILD_BUG_ON(sizeof(struct nvme_smart_log) != 512); +#ifdef CONFIG_NVME_VENDOR_EXT_GOOGLE + BUILD_BUG_ON(sizeof(struct nvme_doorbell_memory) != 64); +#endif } /* @@ -263,6 +283,51 @@ return 0; } +#ifdef CONFIG_NVME_VENDOR_EXT_GOOGLE +static int nvme_vendor_memory_size(struct nvme_dev *dev) +{ + return ((num_possible_cpus() + 1) * 8 * dev->db_stride); +} + +static int nvme_set_doorbell_memory(struct nvme_dev *dev) +{ + struct nvme_command c; + + memset(&c, 0, sizeof(c)); + c.doorbell_memory.opcode = nvme_admin_doorbell_memory; + c.doorbell_memory.prp1 = cpu_to_le64(dev->doorbell); + c.doorbell_memory.prp2 = cpu_to_le64(dev->eventidx); + + return nvme_submit_sync_cmd(dev->ctrl.admin_q, &c, NULL, 0); +} + +static inline int nvme_ext_need_event(u16 event_idx, u16 new_idx, u16 old) +{ + /* Borrowed from vring_need_event */ + return (u16)(new_idx - event_idx - 1) < (u16)(new_idx - old); +} + +static void nvme_ext_write_doorbell(u16 value, u32 __iomem* q_db, + u32* db_addr, volatile u32* event_idx) +{ + u16 old_value; + if (!db_addr) + goto ring_doorbell; + + old_value = *db_addr; + *db_addr = value; + + rmb(); + if (!nvme_ext_need_event(*event_idx, value, old_value)) + goto no_doorbell; + +ring_doorbell: + writel(value, q_db); +no_doorbell: + return; +} +#endif + /** * __nvme_submit_cmd() - Copy a command into a queue and ring the doorbell * @nvmeq: The queue to use @@ -280,9 +345,19 @@ else memcpy(&nvmeq->sq_cmds[tail], cmd, sizeof(*cmd)); +#ifdef CONFIG_NVME_VENDOR_EXT_GOOGLE + if (nvmeq->sq_doorbell_addr) + wmb(); +#endif + if (++tail == nvmeq->q_depth) tail = 0; +#ifdef CONFIG_NVME_VENDOR_EXT_GOOGLE + nvme_ext_write_doorbell(tail, nvmeq->q_db, + nvmeq->sq_doorbell_addr, nvmeq->sq_eventidx_addr); +#else writel(tail, nvmeq->q_db); +#endif nvmeq->sq_tail = tail; } @@ -503,7 +578,8 @@ goto out; ret = BLK_MQ_RQ_QUEUE_BUSY; - if (!dma_map_sg(dev->dev, iod->sg, iod->nents, dma_dir)) + if (!dma_map_sg_attrs(dev->dev, iod->sg, iod->nents, dma_dir, + DMA_ATTR_NO_WARN)) goto out; if (!nvme_setup_prps(dev, req, size)) @@ -666,6 +742,10 @@ struct nvme_completion cqe = nvmeq->cqes[head]; struct request *req; +#ifdef CONFIG_NVME_VENDOR_EXT_GOOGLE + if (to_pci_dev(nvmeq->dev->dev)->vendor == PCI_VENDOR_ID_GOOGLE) + rmb(); +#endif if (++head == nvmeq->q_depth) { head = 0; phase = !phase; @@ -694,8 +774,7 @@ } req = blk_mq_tag_to_rq(*nvmeq->tags, cqe.command_id); - if (req->cmd_type == REQ_TYPE_DRV_PRIV && req->special) - memcpy(req->special, &cqe, sizeof(cqe)); + nvme_req(req)->result = cqe.result; blk_mq_complete_request(req, le16_to_cpu(cqe.status) >> 1); } @@ -710,7 +789,14 @@ return; if (likely(nvmeq->cq_vector >= 0)) +#ifdef CONFIG_NVME_VENDOR_EXT_GOOGLE + nvme_ext_write_doorbell(head, + nvmeq->q_db + nvmeq->dev->db_stride, + nvmeq->cq_doorbell_addr, + nvmeq->cq_eventidx_addr); +#else writel(head, nvmeq->q_db + nvmeq->dev->db_stride); +#endif nvmeq->cq_head = head; nvmeq->cq_phase = phase; @@ -1065,6 +1151,17 @@ dev->queues[qid] = nvmeq; dev->queue_count++; +#ifdef CONFIG_NVME_VENDOR_EXT_GOOGLE + if (dev->db_mem && dev->ei_mem && qid != 0) { + nvmeq->sq_doorbell_addr = &dev->db_mem[qid * 2 * dev->db_stride]; + nvmeq->cq_doorbell_addr = + &dev->db_mem[(qid * 2 + 1) * dev->db_stride]; + nvmeq->sq_eventidx_addr = &dev->ei_mem[qid * 2 * dev->db_stride]; + nvmeq->cq_eventidx_addr = + &dev->ei_mem[(qid * 2 + 1) * dev->db_stride]; + } +#endif + return nvmeq; free_cqdma: @@ -1095,6 +1192,16 @@ nvmeq->cq_head = 0; nvmeq->cq_phase = 1; nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride]; +#ifdef CONFIG_NVME_VENDOR_EXT_GOOGLE + if (to_pci_dev(dev->dev)->vendor == PCI_VENDOR_ID_GOOGLE && qid != 0) { + nvmeq->sq_doorbell_addr = &dev->db_mem[qid * 2 * dev->db_stride]; + nvmeq->cq_doorbell_addr = + &dev->db_mem[(qid * 2 + 1) * dev->db_stride]; + nvmeq->sq_eventidx_addr = &dev->ei_mem[qid * 2 * dev->db_stride]; + nvmeq->cq_eventidx_addr = + &dev->ei_mem[(qid * 2 + 1) * dev->db_stride]; + } +#endif memset((void *)nvmeq->cqes, 0, CQ_SIZE(nvmeq->q_depth)); dev->online_queues++; spin_unlock_irq(&nvmeq->q_lock); @@ -1531,9 +1638,9 @@ return 0; } -static void nvme_disable_io_queues(struct nvme_dev *dev) +static void nvme_disable_io_queues(struct nvme_dev *dev, int queues) { - int pass, queues = dev->online_queues - 1; + int pass; unsigned long timeout; u8 opcode = nvme_admin_delete_sq; @@ -1580,6 +1687,19 @@ if (blk_mq_alloc_tag_set(&dev->tagset)) return 0; dev->ctrl.tagset = &dev->tagset; + +#ifdef CONFIG_NVME_VENDOR_EXT_GOOGLE + if (to_pci_dev(dev->dev)->vendor == PCI_VENDOR_ID_GOOGLE) { + int res = nvme_set_doorbell_memory(dev); + if (res) { + // Free memory and continue on. + dma_free_coherent(dev->dev, 8192, dev->db_mem, dev->doorbell); + dma_free_coherent(dev->dev, 8192, dev->ei_mem, dev->doorbell); + dev->db_mem = 0; + dev->ei_mem = 0; + } + } +#endif } else { blk_mq_update_nr_hw_queues(&dev->tagset, dev->online_queues - 1); @@ -1647,8 +1767,31 @@ pci_enable_pcie_error_reporting(pdev); pci_save_state(pdev); + +#ifdef CONFIG_NVME_VENDOR_EXT_GOOGLE + if (pdev->vendor == PCI_VENDOR_ID_GOOGLE) { + int mem_size = nvme_vendor_memory_size(dev); + dev->db_mem = dma_alloc_coherent(&pdev->dev, mem_size, &dev->doorbell, GFP_KERNEL); + if (!dev->db_mem) { + result = -ENOMEM; + goto disable; + } + dev->ei_mem = dma_alloc_coherent(&pdev->dev, mem_size, &dev->eventidx, GFP_KERNEL); + if (!dev->ei_mem) { + result = -ENOMEM; + goto dma_free; + } + } +#endif + return 0; +#ifdef CONFIG_NVME_VENDOR_EXT_GOOGLE + dma_free: + dma_free_coherent(&pdev->dev, nvme_vendor_memory_size(dev), dev->db_mem, dev->doorbell); + dev->db_mem = 0; +#endif + disable: pci_disable_device(pdev); return result; @@ -1664,6 +1807,14 @@ static void nvme_pci_disable(struct nvme_dev *dev) { struct pci_dev *pdev = to_pci_dev(dev->dev); +#ifdef CONFIG_NVME_VENDOR_EXT_GOOGLE + int mem_size = nvme_vendor_memory_size(dev); + + if (dev->db_mem) + dma_free_coherent(&pdev->dev, mem_size, dev->db_mem, dev->doorbell); + if (dev->ei_mem) + dma_free_coherent(&pdev->dev, mem_size, dev->ei_mem, dev->eventidx); +#endif if (pdev->msi_enabled) pci_disable_msi(pdev); @@ -1678,7 +1829,7 @@ static void nvme_dev_disable(struct nvme_dev *dev, bool shutdown) { - int i; + int i, queues; u32 csts = -1; del_timer_sync(&dev->watchdog_timer); @@ -1689,6 +1840,7 @@ csts = readl(dev->bar + NVME_REG_CSTS); } + queues = dev->online_queues - 1; for (i = dev->queue_count - 1; i > 0; i--) nvme_suspend_queue(dev->queues[i]); @@ -1700,7 +1852,7 @@ if (dev->queue_count) nvme_suspend_queue(dev->queues[0]); } else { - nvme_disable_io_queues(dev); + nvme_disable_io_queues(dev, queues); nvme_disable_admin_queue(dev, shutdown); } nvme_pci_disable(dev); @@ -1908,10 +2060,31 @@ return -ENODEV; } +static unsigned long check_dell_samsung_bug(struct pci_dev *pdev) +{ + if (pdev->vendor == 0x144d && pdev->device == 0xa802) { + /* + * Several Samsung devices seem to drop off the PCIe bus + * randomly when APST is on and uses the deepest sleep state. + * This has been observed on a Samsung "SM951 NVMe SAMSUNG + * 256GB", a "PM951 NVMe SAMSUNG 512GB", and a "Samsung SSD + * 950 PRO 256GB", but it seems to be restricted to two Dell + * laptops. + */ + if (dmi_match(DMI_SYS_VENDOR, "Dell Inc.") && + (dmi_match(DMI_PRODUCT_NAME, "XPS 15 9550") || + dmi_match(DMI_PRODUCT_NAME, "Precision 5510"))) + return NVME_QUIRK_NO_DEEPEST_PS; + } + + return 0; +} + static int nvme_probe(struct pci_dev *pdev, const struct pci_device_id *id) { int node, result = -ENOMEM; struct nvme_dev *dev; + unsigned long quirks = id->driver_data; node = dev_to_node(&pdev->dev); if (node == NUMA_NO_NODE) @@ -1947,8 +2120,10 @@ if (result) goto put_pci; + quirks |= check_dell_samsung_bug(pdev); + result = nvme_init_ctrl(&dev->ctrl, &pdev->dev, &nvme_pci_ctrl_ops, - id->driver_data); + quirks); if (result) goto release_pools; @@ -2113,6 +2288,8 @@ { PCI_VDEVICE(INTEL, 0x0a54), .driver_data = NVME_QUIRK_STRIPE_SIZE | NVME_QUIRK_DISCARD_ZEROES, }, + { PCI_VDEVICE(INTEL, 0xf1a5), /* Intel 600P/P3100 */ + .driver_data = NVME_QUIRK_NO_DEEPEST_PS }, { PCI_VDEVICE(INTEL, 0x5845), /* Qemu emulated controller */ .driver_data = NVME_QUIRK_IDENTIFY_CNS, }, { PCI_DEVICE(0x1c58, 0x0003), /* HGST adapter */ --- linux-4.8.0.orig/drivers/nvme/host/rdma.c +++ linux-4.8.0/drivers/nvme/host/rdma.c @@ -67,6 +67,7 @@ struct nvme_rdma_queue; struct nvme_rdma_request { + struct nvme_request req; struct ib_mr *mr; struct nvme_rdma_qe sqe; struct ib_sge sge[1 + NVME_RDMA_MAX_INLINE_SEGMENTS]; @@ -1132,13 +1133,10 @@ static int nvme_rdma_process_nvme_rsp(struct nvme_rdma_queue *queue, struct nvme_completion *cqe, struct ib_wc *wc, int tag) { - u16 status = le16_to_cpu(cqe->status); struct request *rq; struct nvme_rdma_request *req; int ret = 0; - status >>= 1; - rq = blk_mq_tag_to_rq(nvme_rdma_tagset(queue), cqe->command_id); if (!rq) { dev_err(queue->ctrl->ctrl.device, @@ -1149,9 +1147,6 @@ } req = blk_mq_rq_to_pdu(rq); - if (rq->cmd_type == REQ_TYPE_DRV_PRIV && rq->special) - memcpy(rq->special, cqe, sizeof(*cqe)); - if (rq->tag == tag) ret = 1; @@ -1159,8 +1154,8 @@ wc->ex.invalidate_rkey == req->mr->rkey) req->mr->need_inval = false; - blk_mq_complete_request(rq, status); - + req->req.result = cqe->result; + blk_mq_complete_request(rq, le16_to_cpu(cqe->status) >> 1); return ret; } --- linux-4.8.0.orig/drivers/nvme/host/scsi.c +++ linux-4.8.0/drivers/nvme/host/scsi.c @@ -72,15 +72,6 @@ #define ALL_LUNS_RETURNED 0x02 #define ALL_WELL_KNOWN_LUNS_RETURNED 0x01 #define RESTRICTED_LUNS_RETURNED 0x00 -#define NVME_POWER_STATE_START_VALID 0x00 -#define NVME_POWER_STATE_ACTIVE 0x01 -#define NVME_POWER_STATE_IDLE 0x02 -#define NVME_POWER_STATE_STANDBY 0x03 -#define NVME_POWER_STATE_LU_CONTROL 0x07 -#define POWER_STATE_0 0 -#define POWER_STATE_1 1 -#define POWER_STATE_2 2 -#define POWER_STATE_3 3 #define DOWNLOAD_SAVE_ACTIVATE 0x05 #define DOWNLOAD_SAVE_DEFER_ACTIVATE 0x0E #define ACTIVATE_DEFERRED_MICROCODE 0x0F @@ -915,7 +906,7 @@ kfree(smart_log); /* Get Features for Temp Threshold */ - res = nvme_get_features(ns->ctrl, NVME_FEAT_TEMP_THRESH, 0, 0, + res = nvme_get_features(ns->ctrl, NVME_FEAT_TEMP_THRESH, 0, NULL, 0, &feature_resp); if (res != NVME_SC_SUCCESS) temp_c_thresh = LOG_TEMP_UNKNOWN; @@ -1048,7 +1039,7 @@ if (len < MODE_PAGE_CACHING_LEN) return -EINVAL; - nvme_sc = nvme_get_features(ns->ctrl, NVME_FEAT_VOLATILE_WC, 0, 0, + nvme_sc = nvme_get_features(ns->ctrl, NVME_FEAT_VOLATILE_WC, 0, NULL, 0, &feature_resp); res = nvme_trans_status_code(hdr, nvme_sc); if (res) @@ -1229,64 +1220,6 @@ /* Start Stop Unit Helper Functions */ -static int nvme_trans_power_state(struct nvme_ns *ns, struct sg_io_hdr *hdr, - u8 pc, u8 pcmod, u8 start) -{ - int res; - int nvme_sc; - struct nvme_id_ctrl *id_ctrl; - int lowest_pow_st; /* max npss = lowest power consumption */ - unsigned ps_desired = 0; - - nvme_sc = nvme_identify_ctrl(ns->ctrl, &id_ctrl); - res = nvme_trans_status_code(hdr, nvme_sc); - if (res) - return res; - - lowest_pow_st = max(POWER_STATE_0, (int)(id_ctrl->npss - 1)); - kfree(id_ctrl); - - switch (pc) { - case NVME_POWER_STATE_START_VALID: - /* Action unspecified if POWER CONDITION MODIFIER != 0 */ - if (pcmod == 0 && start == 0x1) - ps_desired = POWER_STATE_0; - if (pcmod == 0 && start == 0x0) - ps_desired = lowest_pow_st; - break; - case NVME_POWER_STATE_ACTIVE: - /* Action unspecified if POWER CONDITION MODIFIER != 0 */ - if (pcmod == 0) - ps_desired = POWER_STATE_0; - break; - case NVME_POWER_STATE_IDLE: - /* Action unspecified if POWER CONDITION MODIFIER != [0,1,2] */ - if (pcmod == 0x0) - ps_desired = POWER_STATE_1; - else if (pcmod == 0x1) - ps_desired = POWER_STATE_2; - else if (pcmod == 0x2) - ps_desired = POWER_STATE_3; - break; - case NVME_POWER_STATE_STANDBY: - /* Action unspecified if POWER CONDITION MODIFIER != [0,1] */ - if (pcmod == 0x0) - ps_desired = max(POWER_STATE_0, (lowest_pow_st - 2)); - else if (pcmod == 0x1) - ps_desired = max(POWER_STATE_0, (lowest_pow_st - 1)); - break; - case NVME_POWER_STATE_LU_CONTROL: - default: - res = nvme_trans_completion(hdr, SAM_STAT_CHECK_CONDITION, - ILLEGAL_REQUEST, SCSI_ASC_INVALID_CDB, - SCSI_ASCQ_CAUSE_NOT_REPORTABLE); - break; - } - nvme_sc = nvme_set_features(ns->ctrl, NVME_FEAT_POWER_MGMT, ps_desired, 0, - NULL); - return nvme_trans_status_code(hdr, nvme_sc); -} - static int nvme_trans_send_activate_fw_cmd(struct nvme_ns *ns, struct sg_io_hdr *hdr, u8 buffer_id) { @@ -1395,7 +1328,7 @@ case MODE_PAGE_CACHING: dword11 = ((mode_page[2] & CACHING_MODE_PAGE_WCE_MASK) ? 1 : 0); nvme_sc = nvme_set_features(ns->ctrl, NVME_FEAT_VOLATILE_WC, - dword11, 0, NULL); + dword11, NULL, 0, NULL); res = nvme_trans_status_code(hdr, nvme_sc); break; case MODE_PAGE_CONTROL: @@ -2235,11 +2168,10 @@ static int nvme_trans_start_stop(struct nvme_ns *ns, struct sg_io_hdr *hdr, u8 *cmd) { - u8 immed, pcmod, pc, no_flush, start; + u8 immed, pcmod, no_flush, start; immed = cmd[1] & 0x01; pcmod = cmd[3] & 0x0f; - pc = (cmd[4] & 0xf0) >> 4; no_flush = cmd[4] & 0x04; start = cmd[4] & 0x01; @@ -2254,8 +2186,8 @@ if (res) return res; } - /* Setup the expected power state transition */ - return nvme_trans_power_state(ns, hdr, pc, pcmod, start); + + return 0; } } --- linux-4.8.0.orig/drivers/nvme/target/configfs.c +++ linux-4.8.0/drivers/nvme/target/configfs.c @@ -271,7 +271,7 @@ mutex_lock(&subsys->lock); ret = -EBUSY; - if (nvmet_ns_enabled(ns)) + if (ns->enabled) goto out_unlock; kfree(ns->device_path); @@ -307,7 +307,7 @@ int ret = 0; mutex_lock(&subsys->lock); - if (nvmet_ns_enabled(ns)) { + if (ns->enabled) { ret = -EBUSY; goto out_unlock; } @@ -339,7 +339,7 @@ static ssize_t nvmet_ns_enable_show(struct config_item *item, char *page) { - return sprintf(page, "%d\n", nvmet_ns_enabled(to_nvmet_ns(item))); + return sprintf(page, "%d\n", to_nvmet_ns(item)->enabled); } static ssize_t nvmet_ns_enable_store(struct config_item *item, --- linux-4.8.0.orig/drivers/nvme/target/core.c +++ linux-4.8.0/drivers/nvme/target/core.c @@ -264,7 +264,7 @@ int ret = 0; mutex_lock(&subsys->lock); - if (!list_empty(&ns->dev_link)) + if (ns->enabled) goto out_unlock; ns->bdev = blkdev_get_by_path(ns->device_path, FMODE_READ | FMODE_WRITE, @@ -309,6 +309,7 @@ list_for_each_entry(ctrl, &subsys->ctrls, subsys_entry) nvmet_add_async_event(ctrl, NVME_AER_TYPE_NOTICE, 0, 0); + ns->enabled = true; ret = 0; out_unlock: mutex_unlock(&subsys->lock); @@ -325,11 +326,11 @@ struct nvmet_ctrl *ctrl; mutex_lock(&subsys->lock); - if (list_empty(&ns->dev_link)) { - mutex_unlock(&subsys->lock); - return; - } - list_del_init(&ns->dev_link); + if (!ns->enabled) + goto out_unlock; + + ns->enabled = false; + list_del_rcu(&ns->dev_link); mutex_unlock(&subsys->lock); /* @@ -351,6 +352,7 @@ if (ns->bdev) blkdev_put(ns->bdev, FMODE_WRITE|FMODE_READ); +out_unlock: mutex_unlock(&subsys->lock); } @@ -617,7 +619,7 @@ if (!subsys) { pr_warn("connect request for invalid subsystem %s!\n", subsysnqn); - req->rsp->result = IPO_IATTR_CONNECT_DATA(subsysnqn); + req->rsp->result.u32 = IPO_IATTR_CONNECT_DATA(subsysnqn); return NVME_SC_CONNECT_INVALID_PARAM | NVME_SC_DNR; } @@ -638,7 +640,7 @@ pr_warn("could not find controller %d for subsys %s / host %s\n", cntlid, subsysnqn, hostnqn); - req->rsp->result = IPO_IATTR_CONNECT_DATA(cntlid); + req->rsp->result.u32 = IPO_IATTR_CONNECT_DATA(cntlid); status = NVME_SC_CONNECT_INVALID_PARAM | NVME_SC_DNR; out: @@ -700,7 +702,7 @@ if (!subsys) { pr_warn("connect request for invalid subsystem %s!\n", subsysnqn); - req->rsp->result = IPO_IATTR_CONNECT_DATA(subsysnqn); + req->rsp->result.u32 = IPO_IATTR_CONNECT_DATA(subsysnqn); goto out; } @@ -709,7 +711,7 @@ if (!nvmet_host_allowed(req, subsys, hostnqn)) { pr_info("connect by host %s for subsystem %s not allowed\n", hostnqn, subsysnqn); - req->rsp->result = IPO_IATTR_CONNECT_DATA(hostnqn); + req->rsp->result.u32 = IPO_IATTR_CONNECT_DATA(hostnqn); up_read(&nvmet_config_sem); goto out_put_subsystem; } --- linux-4.8.0.orig/drivers/nvme/target/fabrics-cmd.c +++ linux-4.8.0/drivers/nvme/target/fabrics-cmd.c @@ -69,7 +69,7 @@ } } - req->rsp->result64 = cpu_to_le64(val); + req->rsp->result.u64 = cpu_to_le64(val); nvmet_req_complete(req, status); } @@ -125,7 +125,7 @@ d = kmap(sg_page(req->sg)) + req->sg->offset; /* zero out initial completion result, assign values as needed */ - req->rsp->result = 0; + req->rsp->result.u32 = 0; if (c->recfmt != 0) { pr_warn("invalid connect version (%d).\n", @@ -138,7 +138,7 @@ pr_warn("connect attempt for invalid controller ID %#x\n", d->cntlid); status = NVME_SC_CONNECT_INVALID_PARAM | NVME_SC_DNR; - req->rsp->result = IPO_IATTR_CONNECT_DATA(cntlid); + req->rsp->result.u32 = IPO_IATTR_CONNECT_DATA(cntlid); goto out; } @@ -155,7 +155,7 @@ pr_info("creating controller %d for NQN %s.\n", ctrl->cntlid, ctrl->hostnqn); - req->rsp->result16 = cpu_to_le16(ctrl->cntlid); + req->rsp->result.u16 = cpu_to_le16(ctrl->cntlid); out: kunmap(sg_page(req->sg)); @@ -173,7 +173,7 @@ d = kmap(sg_page(req->sg)) + req->sg->offset; /* zero out initial completion result, assign values as needed */ - req->rsp->result = 0; + req->rsp->result.u32 = 0; if (c->recfmt != 0) { pr_warn("invalid connect version (%d).\n", @@ -191,14 +191,14 @@ if (unlikely(qid > ctrl->subsys->max_qid)) { pr_warn("invalid queue id (%d)\n", qid); status = NVME_SC_CONNECT_INVALID_PARAM | NVME_SC_DNR; - req->rsp->result = IPO_IATTR_CONNECT_SQE(qid); + req->rsp->result.u32 = IPO_IATTR_CONNECT_SQE(qid); goto out_ctrl_put; } status = nvmet_install_queue(ctrl, req); if (status) { /* pass back cntlid that had the issue of installing queue */ - req->rsp->result16 = cpu_to_le16(ctrl->cntlid); + req->rsp->result.u16 = cpu_to_le16(ctrl->cntlid); goto out_ctrl_put; } --- linux-4.8.0.orig/drivers/nvme/target/loop.c +++ linux-4.8.0/drivers/nvme/target/loop.c @@ -36,6 +36,7 @@ (NVME_LOOP_AQ_DEPTH - NVME_LOOP_NR_AEN_COMMANDS) struct nvme_loop_iod { + struct nvme_request nvme_req; struct nvme_command cmd; struct nvme_completion rsp; struct nvmet_req req; @@ -112,10 +113,10 @@ blk_mq_end_request(req, error); } -static void nvme_loop_queue_response(struct nvmet_req *nvme_req) +static void nvme_loop_queue_response(struct nvmet_req *req) { struct nvme_loop_iod *iod = - container_of(nvme_req, struct nvme_loop_iod, req); + container_of(req, struct nvme_loop_iod, req); struct nvme_completion *cqe = &iod->rsp; /* @@ -128,11 +129,10 @@ cqe->command_id >= NVME_LOOP_AQ_BLKMQ_DEPTH)) { nvme_complete_async_event(&iod->queue->ctrl->ctrl, cqe); } else { - struct request *req = blk_mq_rq_from_pdu(iod); + struct request *rq = blk_mq_rq_from_pdu(iod); - if (req->cmd_type == REQ_TYPE_DRV_PRIV && req->special) - memcpy(req->special, cqe, sizeof(*cqe)); - blk_mq_complete_request(req, le16_to_cpu(cqe->status) >> 1); + iod->nvme_req.result = cqe->result; + blk_mq_complete_request(rq, le16_to_cpu(cqe->status) >> 1); } } --- linux-4.8.0.orig/drivers/nvme/target/nvmet.h +++ linux-4.8.0/drivers/nvme/target/nvmet.h @@ -47,6 +47,7 @@ loff_t size; u8 nguid[16]; + bool enabled; struct nvmet_subsys *subsys; const char *device_path; @@ -61,11 +62,6 @@ return container_of(to_config_group(item), struct nvmet_ns, group); } -static inline bool nvmet_ns_enabled(struct nvmet_ns *ns) -{ - return !list_empty_careful(&ns->dev_link); -} - struct nvmet_cq { u16 qid; u16 size; @@ -238,7 +234,7 @@ static inline void nvmet_set_result(struct nvmet_req *req, u32 result) { - req->rsp->result = cpu_to_le32(result); + req->rsp->result.u32 = cpu_to_le32(result); } /* --- linux-4.8.0.orig/drivers/of/fdt.c +++ linux-4.8.0/drivers/of/fdt.c @@ -924,7 +924,7 @@ #ifdef CONFIG_SERIAL_EARLYCON -static int __init early_init_dt_scan_chosen_serial(void) +int __init early_init_dt_scan_chosen_stdout(void) { int offset; const char *p, *q, *options = NULL; @@ -968,15 +968,6 @@ } return -ENODEV; } - -static int __init setup_of_earlycon(char *buf) -{ - if (buf) - return 0; - - return early_init_dt_scan_chosen_serial(); -} -early_param("earlycon", setup_of_earlycon); #endif /** @@ -1024,6 +1015,7 @@ const char *type = of_get_flat_dt_prop(node, "device_type", NULL); const __be32 *reg, *endp; int l; + bool hotpluggable; /* We are scanning "memory" nodes only */ if (type == NULL) { @@ -1043,6 +1035,7 @@ return 0; endp = reg + (l / sizeof(__be32)); + hotpluggable = of_get_flat_dt_prop(node, "hotpluggable", NULL); pr_debug("memory scan node %s, reg size %d,\n", uname, l); @@ -1058,6 +1051,13 @@ (unsigned long long)size); early_init_dt_add_memory_arch(base, size); + + if (!hotpluggable) + continue; + + if (early_init_dt_mark_hotplug_memory_arch(base, size)) + pr_warn("failed to mark hotplug range 0x%llx - 0x%llx\n", + base, base + size); } return 0; @@ -1155,6 +1155,11 @@ memblock_add(base, size); } +int __init __weak early_init_dt_mark_hotplug_memory_arch(u64 base, u64 size) +{ + return memblock_mark_hotplug(base, size); +} + int __init __weak early_init_dt_reserve_memory_arch(phys_addr_t base, phys_addr_t size, bool nomap) { @@ -1177,6 +1182,11 @@ WARN_ON(1); } +int __init __weak early_init_dt_mark_hotplug_memory_arch(u64 base, u64 size) +{ + return -ENOSYS; +} + int __init __weak early_init_dt_reserve_memory_arch(phys_addr_t base, phys_addr_t size, bool nomap) { --- linux-4.8.0.orig/drivers/pci/host/pci-aardvark.c +++ linux-4.8.0/drivers/pci/host/pci-aardvark.c @@ -848,7 +848,7 @@ int err, res_valid = 0; struct device *dev = &pcie->pdev->dev; struct device_node *np = dev->of_node; - struct resource_entry *win; + struct resource_entry *win, *tmp; resource_size_t iobase; INIT_LIST_HEAD(&pcie->resources); @@ -862,7 +862,7 @@ if (err) goto out_release_res; - resource_list_for_each_entry(win, &pcie->resources) { + resource_list_for_each_entry_safe(win, tmp, &pcie->resources) { struct resource *res = win->res; switch (resource_type(res)) { @@ -874,9 +874,11 @@ lower_32_bits(res->start), OB_PCIE_IO); err = pci_remap_iospace(res, iobase); - if (err) + if (err) { dev_warn(dev, "error %d: failed to map resource %pR\n", err, res); + resource_list_destroy_entry(win); + } break; case IORESOURCE_MEM: advk_pcie_set_ob_win(pcie, 0, --- linux-4.8.0.orig/drivers/pci/host/pci-host-common.c +++ linux-4.8.0/drivers/pci/host/pci-host-common.c @@ -29,7 +29,7 @@ int err, res_valid = 0; struct device_node *np = dev->of_node; resource_size_t iobase; - struct resource_entry *win; + struct resource_entry *win, *tmp; err = of_pci_get_host_bridge_resources(np, 0, 0xff, resources, &iobase); if (err) @@ -39,15 +39,17 @@ if (err) return err; - resource_list_for_each_entry(win, resources) { + resource_list_for_each_entry_safe(win, tmp, resources) { struct resource *res = win->res; switch (resource_type(res)) { case IORESOURCE_IO: err = pci_remap_iospace(res, iobase); - if (err) + if (err) { dev_warn(dev, "error %d: failed to map resource %pR\n", err, res); + resource_list_destroy_entry(win); + } break; case IORESOURCE_MEM: res_valid |= !(res->flags & IORESOURCE_PREFETCH); --- linux-4.8.0.orig/drivers/pci/host/pci-hyperv.c +++ linux-4.8.0/drivers/pci/host/pci-hyperv.c @@ -200,11 +200,11 @@ */ struct pci_message { - u32 message_type; + u32 type; } __packed; struct pci_child_message { - u32 message_type; + struct pci_message message_type; union win_slot_encoding wslot; } __packed; @@ -222,7 +222,8 @@ void (*completion_func)(void *context, struct pci_response *resp, int resp_packet_size); void *compl_ctxt; - struct pci_message message; + + struct pci_message message[0]; }; /* @@ -258,7 +259,7 @@ struct pci_bus_relations { struct pci_incoming_message incoming; u32 device_count; - struct pci_function_description func[1]; + struct pci_function_description func[0]; } __packed; struct pci_q_res_req_response { @@ -314,7 +315,7 @@ } __packed; struct pci_eject_response { - u32 message_type; + struct pci_message message_type; union win_slot_encoding wslot; u32 status; } __packed; @@ -373,11 +374,12 @@ struct list_head children; struct list_head dr_list; - struct work_struct wrk; struct msi_domain_info msi_info; struct msi_controller msi_chip; struct irq_domain *irq_domain; + struct retarget_msi_interrupt retarget_msi_interrupt_params; + spinlock_t retarget_msi_interrupt_lock; }; /* @@ -393,7 +395,7 @@ struct hv_dr_state { struct list_head list_entry; u32 device_count; - struct pci_function_description func[1]; + struct pci_function_description func[0]; }; enum hv_pcichild_state { @@ -447,15 +449,16 @@ * for any message for which the completion packet contains a * status and nothing else. */ -static -void -hv_pci_generic_compl(void *context, struct pci_response *resp, - int resp_packet_size) +static void hv_pci_generic_compl(void *context, struct pci_response *resp, + int resp_packet_size) { struct hv_pci_compl *comp_pkt = context; if (resp_packet_size >= offsetofend(struct pci_response, status)) comp_pkt->completion_status = resp->status; + else + comp_pkt->completion_status = -1; + complete(&comp_pkt->host_event); } @@ -694,13 +697,12 @@ struct pci_delete_interrupt *int_pkt; struct { struct pci_packet pkt; - u8 buffer[sizeof(struct pci_delete_interrupt) - - sizeof(struct pci_message)]; + u8 buffer[sizeof(struct pci_delete_interrupt)]; } ctxt; memset(&ctxt, 0, sizeof(ctxt)); int_pkt = (struct pci_delete_interrupt *)&ctxt.pkt.message; - int_pkt->message_type.message_type = + int_pkt->message_type.type = PCI_DELETE_INTERRUPT_MESSAGE; int_pkt->wslot.slot = hpdev->desc.win_slot.slot; int_pkt->int_desc = *int_desc; @@ -755,7 +757,7 @@ return parent->chip->irq_set_affinity(parent, dest, force); } -void hv_irq_mask(struct irq_data *data) +static void hv_irq_mask(struct irq_data *data) { pci_msi_mask_irq(data); } @@ -770,38 +772,44 @@ * is built out of this PCI bus's instance GUID and the function * number of the device. */ -void hv_irq_unmask(struct irq_data *data) +static void hv_irq_unmask(struct irq_data *data) { struct msi_desc *msi_desc = irq_data_get_msi_desc(data); struct irq_cfg *cfg = irqd_cfg(data); - struct retarget_msi_interrupt params; + struct retarget_msi_interrupt *params; struct hv_pcibus_device *hbus; struct cpumask *dest; struct pci_bus *pbus; struct pci_dev *pdev; int cpu; + unsigned long flags; dest = irq_data_get_affinity_mask(data); pdev = msi_desc_to_pci_dev(msi_desc); pbus = pdev->bus; hbus = container_of(pbus->sysdata, struct hv_pcibus_device, sysdata); - memset(¶ms, 0, sizeof(params)); - params.partition_id = HV_PARTITION_ID_SELF; - params.source = 1; /* MSI(-X) */ - params.address = msi_desc->msg.address_lo; - params.data = msi_desc->msg.data; - params.device_id = (hbus->hdev->dev_instance.b[5] << 24) | + spin_lock_irqsave(&hbus->retarget_msi_interrupt_lock, flags); + + params = &hbus->retarget_msi_interrupt_params; + memset(params, 0, sizeof(*params)); + params->partition_id = HV_PARTITION_ID_SELF; + params->source = 1; /* MSI(-X) */ + params->address = msi_desc->msg.address_lo; + params->data = msi_desc->msg.data; + params->device_id = (hbus->hdev->dev_instance.b[5] << 24) | (hbus->hdev->dev_instance.b[4] << 16) | (hbus->hdev->dev_instance.b[7] << 8) | (hbus->hdev->dev_instance.b[6] & 0xf8) | PCI_FUNC(pdev->devfn); - params.vector = cfg->vector; + params->vector = cfg->vector; for_each_cpu_and(cpu, dest, cpu_online_mask) - params.vp_mask |= (1ULL << vmbus_cpu_number_to_vp_number(cpu)); + params->vp_mask |= (1ULL << vmbus_cpu_number_to_vp_number(cpu)); - hv_do_hypercall(HVCALL_RETARGET_INTERRUPT, ¶ms, NULL); + hv_do_hypercall(HVCALL_RETARGET_INTERRUPT, params, NULL); + + spin_unlock_irqrestore(&hbus->retarget_msi_interrupt_lock, flags); pci_msi_unmask_irq(data); } @@ -847,8 +855,7 @@ struct cpumask *affinity; struct { struct pci_packet pkt; - u8 buffer[sizeof(struct pci_create_interrupt) - - sizeof(struct pci_message)]; + u8 buffer[sizeof(struct pci_create_interrupt)]; } ctxt; int cpu; int ret; @@ -876,7 +883,7 @@ ctxt.pkt.completion_func = hv_pci_compose_compl; ctxt.pkt.compl_ctxt = ∁ int_pkt = (struct pci_create_interrupt *)&ctxt.pkt.message; - int_pkt->message_type.message_type = PCI_CREATE_INTERRUPT_MESSAGE; + int_pkt->message_type.type = PCI_CREATE_INTERRUPT_MESSAGE; int_pkt->wslot.slot = hpdev->desc.win_slot.slot; int_pkt->int_desc.vector = cfg->vector; int_pkt->int_desc.vector_count = 1; @@ -897,8 +904,10 @@ sizeof(*int_pkt), (unsigned long)&ctxt.pkt, VM_PKT_DATA_INBAND, VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); - if (!ret) - wait_for_completion(&comp.comp_pkt.host_event); + if (ret) + goto free_int_desc; + + wait_for_completion(&comp.comp_pkt.host_event); if (comp.comp_pkt.completion_status < 0) { dev_err(&hbus->hdev->device, @@ -1289,7 +1298,7 @@ pkt.init_packet.compl_ctxt = &comp_pkt; pkt.init_packet.completion_func = q_resource_requirements; res_req = (struct pci_child_message *)&pkt.init_packet.message; - res_req->message_type = PCI_QUERY_RESOURCE_REQUIREMENTS; + res_req->message_type.type = PCI_QUERY_RESOURCE_REQUIREMENTS; res_req->wslot.slot = desc->win_slot.slot; ret = vmbus_sendpacket(hbus->hdev->channel, res_req, @@ -1466,8 +1475,7 @@ if (hpdev->reported_missing) { found = true; put_pcichild(hpdev, hv_pcidev_ref_childlist); - list_del(&hpdev->list_entry); - list_add_tail(&hpdev->list_entry, &removed); + list_move_tail(&hpdev->list_entry, &removed); break; } } @@ -1558,8 +1566,7 @@ int wslot; struct { struct pci_packet pkt; - u8 buffer[sizeof(struct pci_eject_response) - - sizeof(struct pci_message)]; + u8 buffer[sizeof(struct pci_eject_response)]; } ctxt; hpdev = container_of(work, struct hv_pci_dev, wrk); @@ -1583,18 +1590,18 @@ pci_dev_put(pdev); } + spin_lock_irqsave(&hpdev->hbus->device_list_lock, flags); + list_del(&hpdev->list_entry); + spin_unlock_irqrestore(&hpdev->hbus->device_list_lock, flags); + memset(&ctxt, 0, sizeof(ctxt)); ejct_pkt = (struct pci_eject_response *)&ctxt.pkt.message; - ejct_pkt->message_type = PCI_EJECTION_COMPLETE; + ejct_pkt->message_type.type = PCI_EJECTION_COMPLETE; ejct_pkt->wslot.slot = hpdev->desc.win_slot.slot; vmbus_sendpacket(hpdev->hbus->hdev->channel, ejct_pkt, sizeof(*ejct_pkt), (unsigned long)&ctxt.pkt, VM_PKT_DATA_INBAND, 0); - spin_lock_irqsave(&hpdev->hbus->device_list_lock, flags); - list_del(&hpdev->list_entry); - spin_unlock_irqrestore(&hpdev->hbus->device_list_lock, flags); - put_pcichild(hpdev, hv_pcidev_ref_childlist); put_pcichild(hpdev, hv_pcidev_ref_pnp); put_hvpcibus(hpdev->hbus); @@ -1688,7 +1695,7 @@ case VM_PKT_DATA_INBAND: new_message = (struct pci_incoming_message *)buffer; - switch (new_message->message_type.message_type) { + switch (new_message->message_type.type) { case PCI_BUS_RELATIONS: bus_rel = (struct pci_bus_relations *)buffer; @@ -1719,7 +1726,7 @@ default: dev_warn(&hbus->hdev->device, "Unimplemented protocol message %x\n", - new_message->message_type.message_type); + new_message->message_type.type); break; } break; @@ -1772,7 +1779,7 @@ pkt->completion_func = hv_pci_generic_compl; pkt->compl_ctxt = &comp_pkt; version_req = (struct pci_version_request *)&pkt->message; - version_req->message_type.message_type = PCI_QUERY_PROTOCOL_VERSION; + version_req->message_type.type = PCI_QUERY_PROTOCOL_VERSION; version_req->protocol_version = PCI_PROTOCOL_VERSION_CURRENT; ret = vmbus_sendpacket(hdev->channel, version_req, @@ -1973,7 +1980,7 @@ pkt->completion_func = hv_pci_generic_compl; pkt->compl_ctxt = &comp_pkt; d0_entry = (struct pci_bus_d0_entry *)&pkt->message; - d0_entry->message_type.message_type = PCI_BUS_D0ENTRY; + d0_entry->message_type.type = PCI_BUS_D0ENTRY; d0_entry->mmio_base = hbus->mem_config->start; ret = vmbus_sendpacket(hdev->channel, d0_entry, sizeof(*d0_entry), @@ -2019,7 +2026,7 @@ return -ENOTEMPTY; memset(&message, 0, sizeof(message)); - message.message_type = PCI_QUERY_BUS_RELATIONS; + message.type = PCI_QUERY_BUS_RELATIONS; ret = vmbus_sendpacket(hdev->channel, &message, sizeof(message), 0, VM_PKT_DATA_INBAND, 0); @@ -2072,8 +2079,8 @@ init_completion(&comp_pkt.host_event); pkt->completion_func = hv_pci_generic_compl; pkt->compl_ctxt = &comp_pkt; - pkt->message.message_type = PCI_RESOURCES_ASSIGNED; res_assigned = (struct pci_resources_assigned *)&pkt->message; + res_assigned->message_type.type = PCI_RESOURCES_ASSIGNED; res_assigned->wslot.slot = hpdev->desc.win_slot.slot; put_pcichild(hpdev, hv_pcidev_ref_by_slot); @@ -2123,7 +2130,7 @@ continue; memset(&pkt, 0, sizeof(pkt)); - pkt.message_type = PCI_RESOURCES_RELEASED; + pkt.message_type.type = PCI_RESOURCES_RELEASED; pkt.wslot.slot = hpdev->desc.win_slot.slot; put_pcichild(hpdev, hv_pcidev_ref_by_slot); @@ -2187,6 +2194,7 @@ INIT_LIST_HEAD(&hbus->resources_for_children); spin_lock_init(&hbus->config_lock); spin_lock_init(&hbus->device_list_lock); + spin_lock_init(&hbus->retarget_msi_interrupt_lock); sema_init(&hbus->enum_sem, 1); init_completion(&hbus->remove_event); @@ -2267,30 +2275,38 @@ return ret; } -/** - * hv_pci_remove() - Remove routine for this VMBus channel - * @hdev: VMBus's tracking struct for this root PCI bus - * - * Return: 0 on success, -errno on failure - */ -static int hv_pci_remove(struct hv_device *hdev) +static void hv_pci_bus_exit(struct hv_device *hdev) { - int ret; - struct hv_pcibus_device *hbus; - union { + struct hv_pcibus_device *hbus = hv_get_drvdata(hdev); + struct { struct pci_packet teardown_packet; - u8 buffer[0x100]; + u8 buffer[sizeof(struct pci_message)]; } pkt; struct pci_bus_relations relations; struct hv_pci_compl comp_pkt; + int ret; - hbus = hv_get_drvdata(hdev); + /* + * After the host sends the RESCIND_CHANNEL message, it doesn't + * access the per-channel ringbuffer any longer. + */ + if (hdev->channel->rescind) + return; + + /* Delete any children which might still exist. */ + memset(&relations, 0, sizeof(relations)); + hv_pci_devices_present(hbus, &relations); + + ret = hv_send_resources_released(hdev); + if (ret) + dev_err(&hdev->device, + "Couldn't send resources released packet(s)\n"); memset(&pkt.teardown_packet, 0, sizeof(pkt.teardown_packet)); init_completion(&comp_pkt.host_event); pkt.teardown_packet.completion_func = hv_pci_generic_compl; pkt.teardown_packet.compl_ctxt = &comp_pkt; - pkt.teardown_packet.message.message_type = PCI_BUS_D0EXIT; + pkt.teardown_packet.message[0].type = PCI_BUS_D0EXIT; ret = vmbus_sendpacket(hdev->channel, &pkt.teardown_packet.message, sizeof(struct pci_message), @@ -2299,7 +2315,19 @@ VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); if (!ret) wait_for_completion_timeout(&comp_pkt.host_event, 10 * HZ); +} + +/** + * hv_pci_remove() - Remove routine for this VMBus channel + * @hdev: VMBus's tracking struct for this root PCI bus + * + * Return: 0 on success, -errno on failure + */ +static int hv_pci_remove(struct hv_device *hdev) +{ + struct hv_pcibus_device *hbus; + hbus = hv_get_drvdata(hdev); if (hbus->state == hv_pcibus_installed) { /* Remove the bus from PCI's point of view. */ pci_lock_rescan_remove(); @@ -2308,17 +2336,10 @@ pci_unlock_rescan_remove(); } - ret = hv_send_resources_released(hdev); - if (ret) - dev_err(&hdev->device, - "Couldn't send resources released packet(s)\n"); + hv_pci_bus_exit(hdev); vmbus_close(hdev->channel); - /* Delete any children which might still exist. */ - memset(&relations, 0, sizeof(relations)); - hv_pci_devices_present(hbus, &relations); - iounmap(hbus->cfg_addr); hv_free_config_window(hbus); pci_free_resource_list(&hbus->resources_for_children); --- linux-4.8.0.orig/drivers/pci/host/pci-tegra.c +++ linux-4.8.0/drivers/pci/host/pci-tegra.c @@ -621,7 +621,11 @@ if (err < 0) return err; - pci_add_resource_offset(&sys->resources, &pcie->pio, sys->io_offset); + err = pci_remap_iospace(&pcie->pio, pcie->io.start); + if (!err) + pci_add_resource_offset(&sys->resources, &pcie->pio, + sys->io_offset); + pci_add_resource_offset(&sys->resources, &pcie->mem, sys->mem_offset); pci_add_resource_offset(&sys->resources, &pcie->prefetch, sys->mem_offset); @@ -631,7 +635,6 @@ if (err < 0) return err; - pci_remap_iospace(&pcie->pio, pcie->io.start); return 1; } @@ -856,7 +859,7 @@ /* override IDDQ */ value = pads_readl(pcie, PADS_CTL); value |= PADS_CTL_IDDQ_1L; - pads_writel(pcie, PADS_CTL, value); + pads_writel(pcie, value, PADS_CTL); /* reset PLL */ value = pads_readl(pcie, soc->pads_pll_ctl); --- linux-4.8.0.orig/drivers/pci/host/pci-versatile.c +++ linux-4.8.0/drivers/pci/host/pci-versatile.c @@ -74,7 +74,7 @@ int err, mem = 1, res_valid = 0; struct device_node *np = dev->of_node; resource_size_t iobase; - struct resource_entry *win; + struct resource_entry *win, *tmp; err = of_pci_get_host_bridge_resources(np, 0, 0xff, res, &iobase); if (err) @@ -84,15 +84,17 @@ if (err) goto out_release_res; - resource_list_for_each_entry(win, res) { + resource_list_for_each_entry_safe(win, tmp, res) { struct resource *res = win->res; switch (resource_type(res)) { case IORESOURCE_IO: err = pci_remap_iospace(res, iobase); - if (err) + if (err) { dev_warn(dev, "error %d: failed to map resource %pR\n", err, res); + resource_list_destroy_entry(win); + } break; case IORESOURCE_MEM: res_valid |= !(res->flags & IORESOURCE_PREFETCH); --- linux-4.8.0.orig/drivers/pci/host/pcie-designware.c +++ linux-4.8.0/drivers/pci/host/pcie-designware.c @@ -436,7 +436,7 @@ struct resource *cfg_res; int i, ret; LIST_HEAD(res); - struct resource_entry *win; + struct resource_entry *win, *tmp; cfg_res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "config"); if (cfg_res) { @@ -457,17 +457,20 @@ goto error; /* Get the I/O and memory ranges from DT */ - resource_list_for_each_entry(win, &res) { + resource_list_for_each_entry_safe(win, tmp, &res) { switch (resource_type(win->res)) { case IORESOURCE_IO: - pp->io = win->res; - pp->io->name = "I/O"; - pp->io_size = resource_size(pp->io); - pp->io_bus_addr = pp->io->start - win->offset; - ret = pci_remap_iospace(pp->io, pp->io_base); - if (ret) + ret = pci_remap_iospace(win->res, pp->io_base); + if (ret) { dev_warn(pp->dev, "error %d: failed to map resource %pR\n", - ret, pp->io); + ret, win->res); + resource_list_destroy_entry(win); + } else { + pp->io = win->res; + pp->io->name = "I/O"; + pp->io_size = resource_size(pp->io); + pp->io_bus_addr = pp->io->start - win->offset; + } break; case IORESOURCE_MEM: pp->mem = win->res; --- linux-4.8.0.orig/drivers/pci/host/pcie-rcar.c +++ linux-4.8.0/drivers/pci/host/pcie-rcar.c @@ -945,7 +945,7 @@ struct device *dev = pci->dev; struct device_node *np = dev->of_node; resource_size_t iobase; - struct resource_entry *win; + struct resource_entry *win, *tmp; err = of_pci_get_host_bridge_resources(np, 0, 0xff, &pci->resources, &iobase); if (err) @@ -955,14 +955,17 @@ if (err) goto out_release_res; - resource_list_for_each_entry(win, &pci->resources) { + resource_list_for_each_entry_safe(win, tmp, &pci->resources) { struct resource *res = win->res; if (resource_type(res) == IORESOURCE_IO) { err = pci_remap_iospace(res, iobase); - if (err) + if (err) { dev_warn(dev, "error %d: failed to map resource %pR\n", err, res); + + resource_list_destroy_entry(win); + } } } --- linux-4.8.0.orig/drivers/pci/hotplug/pnv_php.c +++ linux-4.8.0/drivers/pci/hotplug/pnv_php.c @@ -42,7 +42,7 @@ static inline void pnv_php_put_slot(struct pnv_php_slot *php_slot) { - if (WARN_ON(!php_slot)) + if (!php_slot) return; kref_put(&php_slot->kref, pnv_php_free_slot); --- linux-4.8.0.orig/drivers/pci/iov.c +++ linux-4.8.0/drivers/pci/iov.c @@ -303,13 +303,6 @@ return rc; } - pci_iov_set_numvfs(dev, nr_virtfn); - iov->ctrl |= PCI_SRIOV_CTRL_VFE | PCI_SRIOV_CTRL_MSE; - pci_cfg_access_lock(dev); - pci_write_config_word(dev, iov->pos + PCI_SRIOV_CTRL, iov->ctrl); - msleep(100); - pci_cfg_access_unlock(dev); - iov->initial_VFs = initial; if (nr_virtfn < initial) initial = nr_virtfn; @@ -320,6 +313,13 @@ goto err_pcibios; } + pci_iov_set_numvfs(dev, nr_virtfn); + iov->ctrl |= PCI_SRIOV_CTRL_VFE | PCI_SRIOV_CTRL_MSE; + pci_cfg_access_lock(dev); + pci_write_config_word(dev, iov->pos + PCI_SRIOV_CTRL, iov->ctrl); + msleep(100); + pci_cfg_access_unlock(dev); + for (i = 0; i < initial; i++) { rc = pci_iov_add_virtfn(dev, i, 0); if (rc) @@ -551,21 +551,61 @@ } /** - * pci_iov_resource_bar - get position of the SR-IOV BAR + * pci_iov_update_resource - update a VF BAR * @dev: the PCI device * @resno: the resource number * - * Returns position of the BAR encapsulated in the SR-IOV capability. + * Update a VF BAR in the SR-IOV capability of a PF. */ -int pci_iov_resource_bar(struct pci_dev *dev, int resno) +void pci_iov_update_resource(struct pci_dev *dev, int resno) { - if (resno < PCI_IOV_RESOURCES || resno > PCI_IOV_RESOURCE_END) - return 0; + struct pci_sriov *iov = dev->is_physfn ? dev->sriov : NULL; + struct resource *res = dev->resource + resno; + int vf_bar = resno - PCI_IOV_RESOURCES; + struct pci_bus_region region; + u16 cmd; + u32 new; + int reg; + + /* + * The generic pci_restore_bars() path calls this for all devices, + * including VFs and non-SR-IOV devices. If this is not a PF, we + * have nothing to do. + */ + if (!iov) + return; - BUG_ON(!dev->is_physfn); + pci_read_config_word(dev, iov->pos + PCI_SRIOV_CTRL, &cmd); + if ((cmd & PCI_SRIOV_CTRL_VFE) && (cmd & PCI_SRIOV_CTRL_MSE)) { + dev_WARN(&dev->dev, "can't update enabled VF BAR%d %pR\n", + vf_bar, res); + return; + } - return dev->sriov->pos + PCI_SRIOV_BAR + - 4 * (resno - PCI_IOV_RESOURCES); + /* + * Ignore unimplemented BARs, unused resource slots for 64-bit + * BARs, and non-movable resources, e.g., those described via + * Enhanced Allocation. + */ + if (!res->flags) + return; + + if (res->flags & IORESOURCE_UNSET) + return; + + if (res->flags & IORESOURCE_PCI_FIXED) + return; + + pcibios_resource_to_bus(dev->bus, ®ion, res); + new = region.start; + new |= res->flags & ~PCI_BASE_ADDRESS_MEM_MASK; + + reg = iov->pos + PCI_SRIOV_BAR + 4 * vf_bar; + pci_write_config_dword(dev, reg, new); + if (res->flags & IORESOURCE_MEM_64) { + new = region.start >> 16 >> 16; + pci_write_config_dword(dev, reg + 4, new); + } } resource_size_t __weak pcibios_iov_resource_alignment(struct pci_dev *dev, --- linux-4.8.0.orig/drivers/pci/msi.c +++ linux-4.8.0/drivers/pci/msi.c @@ -19,6 +19,7 @@ #include #include #include +#include #include #include #include @@ -1502,8 +1503,8 @@ pci_for_each_dma_alias(pdev, get_msi_id_cb, &rid); of_node = irq_domain_get_of_node(domain); - if (of_node) - rid = of_msi_map_rid(&pdev->dev, of_node, rid); + rid = of_node ? of_msi_map_rid(&pdev->dev, of_node, rid) : + iort_msi_map_rid(&pdev->dev, rid); return rid; } @@ -1519,9 +1520,13 @@ */ struct irq_domain *pci_msi_get_device_domain(struct pci_dev *pdev) { + struct irq_domain *dom; u32 rid = 0; pci_for_each_dma_alias(pdev, get_msi_id_cb, &rid); - return of_msi_map_get_device_domain(&pdev->dev, rid); + dom = of_msi_map_get_device_domain(&pdev->dev, rid); + if (!dom) + dom = iort_get_device_domain(&pdev->dev, rid); + return dom; } #endif /* CONFIG_PCI_MSI_IRQ_DOMAIN */ --- linux-4.8.0.orig/drivers/pci/pci-mid.c +++ linux-4.8.0/drivers/pci/pci-mid.c @@ -60,8 +60,13 @@ #define ICPU(model) { X86_VENDOR_INTEL, 6, model, X86_FEATURE_ANY, } +/* + * This table should be in sync with the one in + * arch/x86/platform/intel-mid/pwr.c. + */ static const struct x86_cpu_id lpss_cpu_ids[] = { - ICPU(INTEL_FAM6_ATOM_MERRIFIELD1), + ICPU(INTEL_FAM6_ATOM_PENWELL), + ICPU(INTEL_FAM6_ATOM_MERRIFIELD), {} }; --- linux-4.8.0.orig/drivers/pci/pci-sysfs.c +++ linux-4.8.0/drivers/pci/pci-sysfs.c @@ -30,6 +30,7 @@ #include #include #include +#include #include "pci.h" static int sysfs_initialized; /* = 0 */ @@ -716,6 +717,9 @@ loff_t init_off = off; u8 *data = (u8 *) buf; + if (secure_modules()) + return -EPERM; + if (off > dev->cfg_size) return 0; if (off + count > dev->cfg_size) { @@ -1007,6 +1011,9 @@ resource_size_t start, end; int i; + if (secure_modules()) + return -EPERM; + for (i = 0; i < PCI_ROM_RESOURCE; i++) if (res == &pdev->resource[i]) break; @@ -1106,6 +1113,9 @@ struct bin_attribute *attr, char *buf, loff_t off, size_t count) { + if (secure_modules()) + return -EPERM; + return pci_resource_io(filp, kobj, attr, buf, off, count, true); } --- linux-4.8.0.orig/drivers/pci/pci.c +++ linux-4.8.0/drivers/pci/pci.c @@ -540,10 +540,6 @@ { int i; - /* Per SR-IOV spec 3.4.1.11, VF BARs are RO zero */ - if (dev->is_virtfn) - return; - for (i = 0; i < PCI_BRIDGE_RESOURCES; i++) pci_update_resource(dev, i); } @@ -2064,6 +2060,10 @@ if (!dev->pme_support) return false; + /* PME-capable in principle, but not from the intended sleep state */ + if (!pci_pme_capable(dev, pci_target_state(dev))) + return false; + while (bus->parent) { struct pci_dev *bridge = bus->self; @@ -4789,36 +4789,6 @@ } EXPORT_SYMBOL(pci_select_bars); -/** - * pci_resource_bar - get position of the BAR associated with a resource - * @dev: the PCI device - * @resno: the resource number - * @type: the BAR type to be filled in - * - * Returns BAR position in config space, or 0 if the BAR is invalid. - */ -int pci_resource_bar(struct pci_dev *dev, int resno, enum pci_bar_type *type) -{ - int reg; - - if (resno < PCI_ROM_RESOURCE) { - *type = pci_bar_unknown; - return PCI_BASE_ADDRESS_0 + 4 * resno; - } else if (resno == PCI_ROM_RESOURCE) { - *type = pci_bar_mem32; - return dev->rom_base_reg; - } else if (resno < PCI_BRIDGE_RESOURCES) { - /* device specific resource */ - *type = pci_bar_unknown; - reg = pci_iov_resource_bar(dev, resno); - if (reg) - return reg; - } - - dev_err(&dev->dev, "BAR %d: invalid resource\n", resno); - return 0; -} - /* Some architectures require additional programming to enable VGA */ static arch_set_vga_state_t arch_set_vga_state; --- linux-4.8.0.orig/drivers/pci/pci.h +++ linux-4.8.0/drivers/pci/pci.h @@ -242,7 +242,6 @@ int pci_setup_device(struct pci_dev *dev); int __pci_read_base(struct pci_dev *dev, enum pci_bar_type type, struct resource *res, unsigned int reg); -int pci_resource_bar(struct pci_dev *dev, int resno, enum pci_bar_type *type); void pci_configure_ari(struct pci_dev *dev); void __pci_bus_size_bridges(struct pci_bus *bus, struct list_head *realloc_head); @@ -286,7 +285,7 @@ #ifdef CONFIG_PCI_IOV int pci_iov_init(struct pci_dev *dev); void pci_iov_release(struct pci_dev *dev); -int pci_iov_resource_bar(struct pci_dev *dev, int resno); +void pci_iov_update_resource(struct pci_dev *dev, int resno); resource_size_t pci_sriov_resource_alignment(struct pci_dev *dev, int resno); void pci_restore_iov_state(struct pci_dev *dev); int pci_iov_bus_range(struct pci_bus *bus); @@ -300,10 +299,6 @@ { } -static inline int pci_iov_resource_bar(struct pci_dev *dev, int resno) -{ - return 0; -} static inline void pci_restore_iov_state(struct pci_dev *dev) { } --- linux-4.8.0.orig/drivers/pci/pcie/aer/aer_inject.c +++ linux-4.8.0/drivers/pci/pcie/aer/aer_inject.c @@ -307,20 +307,6 @@ return 0; } -static struct pci_dev *pcie_find_root_port(struct pci_dev *dev) -{ - while (1) { - if (!pci_is_pcie(dev)) - break; - if (pci_pcie_type(dev) == PCI_EXP_TYPE_ROOT_PORT) - return dev; - if (!dev->bus->self) - break; - dev = dev->bus->self; - } - return NULL; -} - static int find_aer_device_iter(struct device *device, void *data) { struct pcie_device **result = data; --- linux-4.8.0.orig/drivers/pci/probe.c +++ linux-4.8.0/drivers/pci/probe.c @@ -227,7 +227,8 @@ mask64 = (u32)PCI_BASE_ADDRESS_MEM_MASK; } } else { - res->flags |= (l & IORESOURCE_ROM_ENABLE); + if (l & PCI_ROM_ADDRESS_ENABLE) + res->flags |= IORESOURCE_ROM_ENABLE; l64 = l & PCI_ROM_ADDRESS_MASK; sz64 = sz & PCI_ROM_ADDRESS_MASK; mask64 = (u32)PCI_ROM_ADDRESS_MASK; @@ -1439,6 +1440,21 @@ dev_warn(&dev->dev, "PCI-X settings not supported\n"); } +static bool pcie_root_rcb_set(struct pci_dev *dev) +{ + struct pci_dev *rp = pcie_find_root_port(dev); + u16 lnkctl; + + if (!rp) + return false; + + pcie_capability_read_word(rp, PCI_EXP_LNKCTL, &lnkctl); + if (lnkctl & PCI_EXP_LNKCTL_RCB) + return true; + + return false; +} + static void program_hpp_type2(struct pci_dev *dev, struct hpp_type2 *hpp) { int pos; @@ -1468,9 +1484,20 @@ ~hpp->pci_exp_devctl_and, hpp->pci_exp_devctl_or); /* Initialize Link Control Register */ - if (pcie_cap_has_lnkctl(dev)) + if (pcie_cap_has_lnkctl(dev)) { + + /* + * If the Root Port supports Read Completion Boundary of + * 128, set RCB to 128. Otherwise, clear it. + */ + hpp->pci_exp_lnkctl_and |= PCI_EXP_LNKCTL_RCB; + hpp->pci_exp_lnkctl_or &= ~PCI_EXP_LNKCTL_RCB; + if (pcie_root_rcb_set(dev)) + hpp->pci_exp_lnkctl_or |= PCI_EXP_LNKCTL_RCB; + pcie_capability_clear_and_set_word(dev, PCI_EXP_LNKCTL, ~hpp->pci_exp_lnkctl_and, hpp->pci_exp_lnkctl_or); + } /* Find Advanced Error Reporting Enhanced Capability */ pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR); --- linux-4.8.0.orig/drivers/pci/proc.c +++ linux-4.8.0/drivers/pci/proc.c @@ -116,6 +116,9 @@ int size = dev->cfg_size; int cnt; + if (secure_modules()) + return -EPERM; + if (pos >= size) return 0; if (nbytes >= size) @@ -195,6 +198,9 @@ #endif /* HAVE_PCI_MMAP */ int ret = 0; + if (secure_modules()) + return -EPERM; + switch (cmd) { case PCIIOC_CONTROLLER: ret = pci_domain_nr(dev->bus); @@ -233,7 +239,7 @@ struct pci_filp_private *fpriv = file->private_data; int i, ret, write_combine; - if (!capable(CAP_SYS_RAWIO)) + if (!capable(CAP_SYS_RAWIO) || secure_modules()) return -EPERM; /* Make sure the caller is mapping a real resource for this device */ --- linux-4.8.0.orig/drivers/pci/quirks.c +++ linux-4.8.0/drivers/pci/quirks.c @@ -41,6 +41,21 @@ DECLARE_PCI_FIXUP_CLASS_EARLY(PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_BRIDGE_HOST, 8, quirk_mmio_always_on); +/* The BAR0 ~ BAR4 of Marvell 9125 device can't be accessed +* by IO resource file, and need to skip the files +*/ +static void quirk_marvell_mask_bar(struct pci_dev *dev) +{ + int i; + + for (i = 0; i < 5; i++) + if (dev->resource[i].start) + dev->resource[i].start = + dev->resource[i].end = 0; +} +DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_MARVELL_EXT, 0x9125, + quirk_marvell_mask_bar); + /* The Mellanox Tavor device gives false positive parity errors * Mark this device with a broken_parity_status, to allow * PCI scanning code to "skip" this now blacklisted device. @@ -2776,6 +2791,26 @@ DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_HINT, 0x0020, quirk_hotplug_bridge); /* + * Apple: Avoid programming the memory/io aperture of 00:1c.0 + * + * BIOS does not declare any resource for 00:1c.0, but with + * hotplug flag set, thus the OS allocates: + * [mem 0x7fa00000 - 0x7fbfffff] + * [mem 0x7fc00000-0x7fdfffff 64bit pref] + * which is conflict with an unreported device, which + * causes unpredictable result such as accessing io port. + * So clear the hotplug flag to work around it. + */ +static void quirk_apple_mbp_poweroff(struct pci_dev *dev) +{ + if (dmi_match(DMI_PRODUCT_NAME, "MacBookPro11,4") || + dmi_match(DMI_PRODUCT_NAME, "MacBookPro11,5")) + dev->is_hotplug_bridge = 0; +} + +DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x8c10, quirk_apple_mbp_poweroff); + +/* * This is a quirk for the Ricoh MMC controller found as a part of * some mulifunction chips. @@ -3198,6 +3233,7 @@ DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_ATHEROS, 0x0030, quirk_no_bus_reset); DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_ATHEROS, 0x0032, quirk_no_bus_reset); DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_ATHEROS, 0x003c, quirk_no_bus_reset); +DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_ATHEROS, 0x0033, quirk_no_bus_reset); static void quirk_no_pm_reset(struct pci_dev *dev) { --- linux-4.8.0.orig/drivers/pci/rom.c +++ linux-4.8.0/drivers/pci/rom.c @@ -35,6 +35,11 @@ if (res->flags & IORESOURCE_ROM_SHADOW) return 0; + /* + * Ideally pci_update_resource() would update the ROM BAR address, + * and we would only set the enable bit here. But apparently some + * devices have buggy ROM BARs that read as zero when disabled. + */ pcibios_resource_to_bus(pdev->bus, ®ion, res); pci_read_config_dword(pdev, pdev->rom_base_reg, &rom_addr); rom_addr &= ~PCI_ROM_ADDRESS_MASK; --- linux-4.8.0.orig/drivers/pci/setup-res.c +++ linux-4.8.0/drivers/pci/setup-res.c @@ -25,21 +25,18 @@ #include #include "pci.h" - -void pci_update_resource(struct pci_dev *dev, int resno) +static void pci_std_update_resource(struct pci_dev *dev, int resno) { struct pci_bus_region region; bool disable; u16 cmd; u32 new, check, mask; int reg; - enum pci_bar_type type; struct resource *res = dev->resource + resno; - if (dev->is_virtfn) { - dev_warn(&dev->dev, "can't update VF BAR%d\n", resno); + /* Per SR-IOV spec 3.4.1.11, VF BARs are RO zero */ + if (dev->is_virtfn) return; - } /* * Ignore resources for unimplemented BARs and unused resource slots @@ -60,21 +57,34 @@ return; pcibios_resource_to_bus(dev->bus, ®ion, res); + new = region.start; - new = region.start | (res->flags & PCI_REGION_FLAG_MASK); - if (res->flags & IORESOURCE_IO) + if (res->flags & IORESOURCE_IO) { mask = (u32)PCI_BASE_ADDRESS_IO_MASK; - else + new |= res->flags & ~PCI_BASE_ADDRESS_IO_MASK; + } else if (resno == PCI_ROM_RESOURCE) { + mask = (u32)PCI_ROM_ADDRESS_MASK; + } else { mask = (u32)PCI_BASE_ADDRESS_MEM_MASK; + new |= res->flags & ~PCI_BASE_ADDRESS_MEM_MASK; + } - reg = pci_resource_bar(dev, resno, &type); - if (!reg) - return; - if (type != pci_bar_unknown) { + if (resno < PCI_ROM_RESOURCE) { + reg = PCI_BASE_ADDRESS_0 + 4 * resno; + } else if (resno == PCI_ROM_RESOURCE) { + + /* + * Apparently some Matrox devices have ROM BARs that read + * as zero when disabled, so don't update ROM BARs unless + * they're enabled. See https://lkml.org/lkml/2005/8/30/138. + */ if (!(res->flags & IORESOURCE_ROM_ENABLE)) return; + + reg = dev->rom_base_reg; new |= PCI_ROM_ADDRESS_ENABLE; - } + } else + return; /* * We can't update a 64-bit BAR atomically, so when possible, @@ -110,6 +120,16 @@ pci_write_config_word(dev, PCI_COMMAND, cmd); } +void pci_update_resource(struct pci_dev *dev, int resno) +{ + if (resno <= PCI_ROM_RESOURCE) + pci_std_update_resource(dev, resno); +#ifdef CONFIG_PCI_IOV + else if (resno >= PCI_IOV_RESOURCES && resno <= PCI_IOV_RESOURCE_END) + pci_iov_update_resource(dev, resno); +#endif +} + int pci_claim_resource(struct pci_dev *dev, int resource) { struct resource *res = &dev->resource[resource]; @@ -121,6 +141,14 @@ return -EINVAL; } + /* + * If we have a shadow copy in RAM, the PCI device doesn't respond + * to the shadow range, so we don't need to claim it, and upstream + * bridges don't need to route the range to the device. + */ + if (res->flags & IORESOURCE_ROM_SHADOW) + return 0; + root = pci_find_parent_resource(dev, res); if (!root) { dev_info(&dev->dev, "can't claim BAR %d %pR: no compatible bridge window\n", --- linux-4.8.0.orig/drivers/pci/syscall.c +++ linux-4.8.0/drivers/pci/syscall.c @@ -10,6 +10,7 @@ #include #include #include +#include #include #include "pci.h" @@ -92,7 +93,7 @@ u32 dword; int err = 0; - if (!capable(CAP_SYS_ADMIN)) + if (!capable(CAP_SYS_ADMIN) || secure_modules()) return -EPERM; dev = pci_get_bus_and_slot(bus, dfn); --- linux-4.8.0.orig/drivers/phy/phy-sun4i-usb.c +++ linux-4.8.0/drivers/phy/phy-sun4i-usb.c @@ -40,6 +40,7 @@ #include #include #include +#include #include #include @@ -112,7 +113,7 @@ void __iomem *base; const struct sun4i_usb_phy_cfg *cfg; enum usb_dr_mode dr_mode; - struct mutex mutex; + spinlock_t reg_lock; /* guard access to phyctl reg */ struct sun4i_usb_phy { struct phy *phy; void __iomem *pmu; @@ -179,9 +180,10 @@ struct sun4i_usb_phy_data *phy_data = to_sun4i_usb_phy_data(phy); u32 temp, usbc_bit = BIT(phy->index * 2); void __iomem *phyctl = phy_data->base + phy_data->cfg->phyctl_offset; + unsigned long flags; int i; - mutex_lock(&phy_data->mutex); + spin_lock_irqsave(&phy_data->reg_lock, flags); if (phy_data->cfg->type == sun8i_a33_phy) { /* A33 needs us to set phyctl to 0 explicitly */ @@ -218,7 +220,8 @@ data >>= 1; } - mutex_unlock(&phy_data->mutex); + + spin_unlock_irqrestore(&phy_data->reg_lock, flags); } static void sun4i_usb_phy_passby(struct sun4i_usb_phy *phy, int enable) @@ -577,7 +580,7 @@ if (!data) return -ENOMEM; - mutex_init(&data->mutex); + spin_lock_init(&data->reg_lock); INIT_DELAYED_WORK(&data->detect, sun4i_usb_phy0_id_vbus_det_scan); dev_set_drvdata(dev, data); data->cfg = of_device_get_match_data(dev); --- linux-4.8.0.orig/drivers/pinctrl/bcm/pinctrl-iproc-gpio.c +++ linux-4.8.0/drivers/pinctrl/bcm/pinctrl-iproc-gpio.c @@ -844,6 +844,6 @@ static int __init iproc_gpio_init(void) { - return platform_driver_probe(&iproc_gpio_driver, iproc_gpio_probe); + return platform_driver_register(&iproc_gpio_driver); } arch_initcall_sync(iproc_gpio_init); --- linux-4.8.0.orig/drivers/pinctrl/bcm/pinctrl-nsp-gpio.c +++ linux-4.8.0/drivers/pinctrl/bcm/pinctrl-nsp-gpio.c @@ -741,6 +741,6 @@ static int __init nsp_gpio_init(void) { - return platform_driver_probe(&nsp_gpio_driver, nsp_gpio_probe); + return platform_driver_register(&nsp_gpio_driver); } arch_initcall_sync(nsp_gpio_init); --- linux-4.8.0.orig/drivers/pinctrl/intel/pinctrl-baytrail.c +++ linux-4.8.0/drivers/pinctrl/intel/pinctrl-baytrail.c @@ -1808,6 +1808,8 @@ return PTR_ERR(vg->pctl_dev); } + raw_spin_lock_init(&vg->lock); + ret = byt_gpio_probe(vg); if (ret) { pinctrl_unregister(vg->pctl_dev); @@ -1815,7 +1817,6 @@ } platform_set_drvdata(pdev, vg); - raw_spin_lock_init(&vg->lock); pm_runtime_enable(&pdev->dev); return 0; --- linux-4.8.0.orig/drivers/pinctrl/intel/pinctrl-cherryview.c +++ linux-4.8.0/drivers/pinctrl/intel/pinctrl-cherryview.c @@ -1634,12 +1634,15 @@ } #ifdef CONFIG_PM_SLEEP -static int chv_pinctrl_suspend(struct device *dev) +static int chv_pinctrl_suspend_noirq(struct device *dev) { struct platform_device *pdev = to_platform_device(dev); struct chv_pinctrl *pctrl = platform_get_drvdata(pdev); + unsigned long flags; int i; + raw_spin_lock_irqsave(&chv_lock, flags); + pctrl->saved_intmask = readl(pctrl->regs + CHV_INTMASK); for (i = 0; i < pctrl->community->npins; i++) { @@ -1660,15 +1663,20 @@ ctx->padctrl1 = readl(reg); } + raw_spin_unlock_irqrestore(&chv_lock, flags); + return 0; } -static int chv_pinctrl_resume(struct device *dev) +static int chv_pinctrl_resume_noirq(struct device *dev) { struct platform_device *pdev = to_platform_device(dev); struct chv_pinctrl *pctrl = platform_get_drvdata(pdev); + unsigned long flags; int i; + raw_spin_lock_irqsave(&chv_lock, flags); + /* * Mask all interrupts before restoring per-pin configuration * registers because we don't know in which state BIOS left them @@ -1713,12 +1721,15 @@ chv_writel(0xffff, pctrl->regs + CHV_INTSTAT); chv_writel(pctrl->saved_intmask, pctrl->regs + CHV_INTMASK); + raw_spin_unlock_irqrestore(&chv_lock, flags); + return 0; } #endif static const struct dev_pm_ops chv_pinctrl_pm_ops = { - SET_LATE_SYSTEM_SLEEP_PM_OPS(chv_pinctrl_suspend, chv_pinctrl_resume) + SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(chv_pinctrl_suspend_noirq, + chv_pinctrl_resume_noirq) }; static const struct acpi_device_id chv_pinctrl_acpi_match[] = { --- linux-4.8.0.orig/drivers/pinctrl/intel/pinctrl-intel.c +++ linux-4.8.0/drivers/pinctrl/intel/pinctrl-intel.c @@ -19,6 +19,7 @@ #include #include +#include "../core.h" #include "pinctrl-intel.h" /* Offset from regs */ @@ -1079,6 +1080,26 @@ EXPORT_SYMBOL_GPL(intel_pinctrl_remove); #ifdef CONFIG_PM_SLEEP +static bool intel_pinctrl_should_save(struct intel_pinctrl *pctrl, unsigned pin) +{ + const struct pin_desc *pd = pin_desc_get(pctrl->pctldev, pin); + + if (!pd || !intel_pad_usable(pctrl, pin)) + return false; + + /* + * Only restore the pin if it is actually in use by the kernel (or + * by userspace). It is possible that some pins are used by the + * BIOS during resume and those are not always locked down so leave + * them alone. + */ + if (pd->mux_owner || pd->gpio_owner || + gpiochip_line_is_irq(&pctrl->chip, pin)) + return true; + + return false; +} + int intel_pinctrl_suspend(struct device *dev) { struct platform_device *pdev = to_platform_device(dev); @@ -1092,7 +1113,7 @@ const struct pinctrl_pin_desc *desc = &pctrl->soc->pins[i]; u32 val; - if (!intel_pad_usable(pctrl, desc->number)) + if (!intel_pinctrl_should_save(pctrl, desc->number)) continue; val = readl(intel_get_padcfg(pctrl, desc->number, PADCFG0)); @@ -1153,7 +1174,7 @@ void __iomem *padcfg; u32 val; - if (!intel_pad_usable(pctrl, desc->number)) + if (!intel_pinctrl_should_save(pctrl, desc->number)) continue; padcfg = intel_get_padcfg(pctrl, desc->number, PADCFG0); --- linux-4.8.0.orig/drivers/pinctrl/pinctrl-amd.c +++ linux-4.8.0/drivers/pinctrl/pinctrl-amd.c @@ -383,12 +383,27 @@ int ret = 0; u32 pin_reg; unsigned long flags; + u32 level_trig; + u32 active_level; struct gpio_chip *gc = irq_data_get_irq_chip_data(d); struct amd_gpio *gpio_dev = gpiochip_get_data(gc); spin_lock_irqsave(&gpio_dev->lock, flags); pin_reg = readl(gpio_dev->base + (d->hwirq)*4); + /* + * When level_trig is set EDGE and active_level is set HIGH in BIOS + * default settings, ignore incoming settings from client and use + * BIOS settings to configure GPIO register. + */ + level_trig = pin_reg & (LEVEL_TRIGGER << LEVEL_TRIG_OFF); + active_level = pin_reg & (ACTIVE_LEVEL_MASK << ACTIVE_LEVEL_OFF); + + if((!level_trig) && + ((active_level >> ACTIVE_LEVEL_OFF) == ACTIVE_HIGH)) { + type = IRQ_TYPE_EDGE_FALLING; + } + switch (type & IRQ_TYPE_SENSE_MASK) { case IRQ_TYPE_EDGE_RISING: pin_reg &= ~BIT(LEVEL_TRIG_OFF); --- linux-4.8.0.orig/drivers/pinctrl/qcom/pinctrl-msm.c +++ linux-4.8.0/drivers/pinctrl/qcom/pinctrl-msm.c @@ -156,7 +156,7 @@ spin_lock_irqsave(&pctrl->lock, flags); val = readl(pctrl->regs + g->ctl_reg); - val &= mask; + val &= ~mask; val |= i << g->mux_bit; writel(val, pctrl->regs + g->ctl_reg); --- linux-4.8.0.orig/drivers/platform/x86/asus-nb-wmi.c +++ linux-4.8.0/drivers/platform/x86/asus-nb-wmi.c @@ -137,6 +137,15 @@ }, { .callback = dmi_matched, + .ident = "ASUSTeK COMPUTER INC. X45U", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "X45U"), + }, + .driver_data = &quirk_asus_wapf4, + }, + { + .callback = dmi_matched, .ident = "ASUSTeK COMPUTER INC. X456UA", .matches = { DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), --- linux-4.8.0.orig/drivers/platform/x86/asus-wmi.c +++ linux-4.8.0/drivers/platform/x86/asus-wmi.c @@ -1872,6 +1872,9 @@ int err; u32 retval = -1; + if (secure_modules()) + return -EPERM; + err = asus_wmi_get_devstate(asus, asus->debug.dev_id, &retval); if (err < 0) @@ -1888,6 +1891,9 @@ int err; u32 retval = -1; + if (secure_modules()) + return -EPERM; + err = asus_wmi_set_devstate(asus->debug.dev_id, asus->debug.ctrl_param, &retval); @@ -1912,6 +1918,9 @@ union acpi_object *obj; acpi_status status; + if (secure_modules()) + return -EPERM; + status = wmi_evaluate_method(ASUS_WMI_MGMT_GUID, 1, asus->debug.method_id, &input, &output); --- linux-4.8.0.orig/drivers/platform/x86/dell-laptop.c +++ linux-4.8.0/drivers/platform/x86/dell-laptop.c @@ -42,6 +42,7 @@ #define KBD_LED_AUTO_50_TOKEN 0x02EB #define KBD_LED_AUTO_75_TOKEN 0x02EC #define KBD_LED_AUTO_100_TOKEN 0x02F6 +#define KBD_LED_AC_TOKEN 0x0451 struct quirk_entry { u8 touchpad_led; @@ -106,6 +107,12 @@ }, }, { + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_CHASSIS_TYPE, "10"), /*Notebook*/ + }, + }, + { .ident = "Dell Computer Corporation", .matches = { DMI_MATCH(DMI_SYS_VENDOR, "Dell Computer Corporation"), @@ -1018,7 +1025,7 @@ * bit 2 Pointing stick * bit 3 Any mouse * bits 4-7 Reserved for future use - * cbRES2, byte3 Current Timeout + * cbRES2, byte3 Current Timeout on battery * bits 7:6 Timeout units indicator: * 00b Seconds * 01b Minutes @@ -1030,6 +1037,15 @@ * cbRES3, byte0 Current setting of ALS value that turns the light on or off. * cbRES3, byte1 Current ALS reading * cbRES3, byte2 Current keyboard light level. + * cbRES3, byte3 Current timeout on AC Power + * bits 7:6 Timeout units indicator: + * 00b Seconds + * 01b Minutes + * 10b Hours + * 11b Days + * Bits 5:0 Timeout value (0-63) in sec/min/hr/day + * NOTE: A value of 0 means always on (no timeout) if any bits of RES3 byte2 + * are set upon return from the upon return from the [Get Feature information] call. * * cbArg1 0x2 = Set New State * cbRES1 Standard return codes (0, -1, -2) @@ -1052,7 +1068,7 @@ * bit 2 Pointing stick * bit 3 Any mouse * bits 4-7 Reserved for future use - * cbArg2, byte3 Desired Timeout + * cbArg2, byte3 Desired Timeout on battery * bits 7:6 Timeout units indicator: * 00b Seconds * 01b Minutes @@ -1061,6 +1077,13 @@ * bits 5:0 Timeout value (0-63) in sec/min/hr/day * cbArg3, byte0 Desired setting of ALS value that turns the light on or off. * cbArg3, byte2 Desired keyboard light level. + * cbArg3, byte3 Desired Timeout on AC power + * bits 7:6 Timeout units indicator: + * 00b Seconds + * 01b Minutes + * 10b Hours + * 11b Days + * bits 5:0 Timeout value (0-63) in sec/min/hr/day */ @@ -1106,6 +1129,8 @@ u8 triggers; u8 timeout_value; u8 timeout_unit; + u8 timeout_value_ac; + u8 timeout_unit_ac; u8 als_setting; u8 als_value; u8 level; @@ -1125,6 +1150,7 @@ static struct kbd_info kbd_info; static bool kbd_als_supported; static bool kbd_triggers_supported; +static bool kbd_timeout_ac_supported; static u8 kbd_mode_levels[16]; static int kbd_mode_levels_count; @@ -1263,6 +1289,8 @@ state->als_setting = buffer->output[2] & 0xFF; state->als_value = (buffer->output[2] >> 8) & 0xFF; state->level = (buffer->output[2] >> 16) & 0xFF; + state->timeout_value_ac = (buffer->output[2] >> 24) & 0x3F; + state->timeout_unit_ac = (buffer->output[2] >> 30) & 0x3; out: dell_smbios_release_buffer(); @@ -1282,6 +1310,8 @@ buffer->input[1] |= (state->timeout_unit & 0x3) << 30; buffer->input[2] = state->als_setting & 0xFF; buffer->input[2] |= (state->level & 0xFF) << 16; + buffer->input[2] |= (state->timeout_value_ac & 0x3F) << 24; + buffer->input[2] |= (state->timeout_unit_ac & 0x3) << 30; dell_smbios_send_request(4, 11); ret = buffer->output[0]; dell_smbios_release_buffer(); @@ -1388,6 +1418,13 @@ if (ret) return ret; + /* NOTE: Old models without KBD_LED_AC_TOKEN token supports only one + * timeout value which is shared for both battery and AC power + * settings. So do not try to set AC values on old models. + */ + if (dell_smbios_find_token(KBD_LED_AC_TOKEN)) + kbd_timeout_ac_supported = true; + kbd_get_state(&state); /* NOTE: timeout value is stored in 6 bits so max value is 63 */ @@ -1567,8 +1604,14 @@ return ret; new_state = state; - new_state.timeout_value = value; - new_state.timeout_unit = unit; + + if (kbd_timeout_ac_supported && power_supply_is_system_supplied() > 0) { + new_state.timeout_value_ac = value; + new_state.timeout_unit_ac = unit; + } else { + new_state.timeout_value = value; + new_state.timeout_unit = unit; + } ret = kbd_set_state_safe(&new_state, &state); if (ret) @@ -1581,16 +1624,26 @@ struct device_attribute *attr, char *buf) { struct kbd_state state; + int value; int ret; int len; + u8 unit; ret = kbd_get_state(&state); if (ret) return ret; - len = sprintf(buf, "%d", state.timeout_value); + if (kbd_timeout_ac_supported && power_supply_is_system_supplied() > 0) { + value = state.timeout_value_ac; + unit = state.timeout_unit_ac; + } else { + value = state.timeout_value; + unit = state.timeout_unit; + } + + len = sprintf(buf, "%d", value); - switch (state.timeout_unit) { + switch (unit) { case KBD_TIMEOUT_SECONDS: return len + sprintf(buf+len, "s\n"); case KBD_TIMEOUT_MINUTES: --- linux-4.8.0.orig/drivers/platform/x86/intel_ips.c +++ linux-4.8.0/drivers/platform/x86/intel_ips.c @@ -1501,6 +1501,14 @@ DMI_MATCH(DMI_PRODUCT_NAME, "HP ProBook"), }, }, + { + .callback = ips_blacklist_callback, + .ident = "G60JX", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "G60JX"), + }, + }, { } /* terminating entry */ }; --- linux-4.8.0.orig/drivers/platform/x86/toshiba-wmi.c +++ linux-4.8.0/drivers/platform/x86/toshiba-wmi.c @@ -24,14 +24,15 @@ #include #include #include +#include MODULE_AUTHOR("Azael Avalos"); MODULE_DESCRIPTION("Toshiba WMI Hotkey Driver"); MODULE_LICENSE("GPL"); -#define TOSHIBA_WMI_EVENT_GUID "59142400-C6A3-40FA-BADB-8A2652834100" +#define WMI_EVENT_GUID "59142400-C6A3-40FA-BADB-8A2652834100" -MODULE_ALIAS("wmi:"TOSHIBA_WMI_EVENT_GUID); +MODULE_ALIAS("wmi:"WMI_EVENT_GUID); static struct input_dev *toshiba_wmi_input_dev; @@ -63,6 +64,16 @@ kfree(response.pointer); } +static struct dmi_system_id toshiba_wmi_dmi_table[] __initdata = { + { + .ident = "Toshiba laptop", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"), + }, + }, + {} +}; + static int __init toshiba_wmi_input_setup(void) { acpi_status status; @@ -81,7 +92,7 @@ if (err) goto err_free_dev; - status = wmi_install_notify_handler(TOSHIBA_WMI_EVENT_GUID, + status = wmi_install_notify_handler(WMI_EVENT_GUID, toshiba_wmi_notify, NULL); if (ACPI_FAILURE(status)) { err = -EIO; @@ -95,7 +106,7 @@ return 0; err_remove_notifier: - wmi_remove_notify_handler(TOSHIBA_WMI_EVENT_GUID); + wmi_remove_notify_handler(WMI_EVENT_GUID); err_free_keymap: sparse_keymap_free(toshiba_wmi_input_dev); err_free_dev: @@ -105,7 +116,7 @@ static void toshiba_wmi_input_destroy(void) { - wmi_remove_notify_handler(TOSHIBA_WMI_EVENT_GUID); + wmi_remove_notify_handler(WMI_EVENT_GUID); sparse_keymap_free(toshiba_wmi_input_dev); input_unregister_device(toshiba_wmi_input_dev); } @@ -114,7 +125,8 @@ { int ret; - if (!wmi_has_guid(TOSHIBA_WMI_EVENT_GUID)) + if (!wmi_has_guid(WMI_EVENT_GUID) || + !dmi_check_system(toshiba_wmi_dmi_table)) return -ENODEV; ret = toshiba_wmi_input_setup(); @@ -130,7 +142,7 @@ static void __exit toshiba_wmi_exit(void) { - if (wmi_has_guid(TOSHIBA_WMI_EVENT_GUID)) + if (wmi_has_guid(WMI_EVENT_GUID)) toshiba_wmi_input_destroy(); } --- linux-4.8.0.orig/drivers/pnp/isapnp/core.c +++ linux-4.8.0/drivers/pnp/isapnp/core.c @@ -41,6 +41,7 @@ #include #include #include +#include #include #include "../base.h" @@ -990,7 +991,7 @@ .disable = isapnp_disable_resources, }; -static int __init isapnp_init(void) +static int __init real_isapnp_init(void) { int cards; struct pnp_card *card; @@ -1084,6 +1085,16 @@ return 0; } +static void __init async_isapnp_init(void *unused, async_cookie_t cookie) +{ + (void)real_isapnp_init(); +} + +static int __init isapnp_init(void) +{ + async_schedule(async_isapnp_init, NULL); + return 0; +} device_initcall(isapnp_init); /* format is: noisapnp */ --- linux-4.8.0.orig/drivers/power/bq24257_charger.c +++ linux-4.8.0/drivers/power/bq24257_charger.c @@ -1068,6 +1068,12 @@ return ret; } + ret = bq24257_power_supply_init(bq); + if (ret < 0) { + dev_err(dev, "Failed to register power supply\n"); + return ret; + } + ret = devm_request_threaded_irq(dev, client->irq, NULL, bq24257_irq_handler_thread, IRQF_TRIGGER_FALLING | @@ -1078,12 +1084,6 @@ return ret; } - ret = bq24257_power_supply_init(bq); - if (ret < 0) { - dev_err(dev, "Failed to register power supply\n"); - return ret; - } - ret = sysfs_create_group(&bq->charger->dev.kobj, &bq24257_attr_group); if (ret < 0) { dev_err(dev, "Can't create sysfs entries\n"); --- linux-4.8.0.orig/drivers/powercap/intel_rapl.c +++ linux-4.8.0/drivers/powercap/intel_rapl.c @@ -1154,8 +1154,8 @@ RAPL_CPU(INTEL_FAM6_ATOM_SILVERMONT1, rapl_defaults_byt), RAPL_CPU(INTEL_FAM6_ATOM_AIRMONT, rapl_defaults_cht), - RAPL_CPU(INTEL_FAM6_ATOM_MERRIFIELD1, rapl_defaults_tng), - RAPL_CPU(INTEL_FAM6_ATOM_MERRIFIELD2, rapl_defaults_ann), + RAPL_CPU(INTEL_FAM6_ATOM_MERRIFIELD, rapl_defaults_tng), + RAPL_CPU(INTEL_FAM6_ATOM_MOOREFIELD, rapl_defaults_ann), RAPL_CPU(INTEL_FAM6_ATOM_GOLDMONT, rapl_defaults_core), RAPL_CPU(INTEL_FAM6_ATOM_DENVERTON, rapl_defaults_core), @@ -1661,7 +1661,7 @@ id = x86_match_cpu(rapl_ids); if (!id) { - pr_err("driver does not support CPU family %d model %d\n", + pr_info("driver does not support CPU family %d model %d\n", boot_cpu_data.x86, boot_cpu_data.x86_model); return -ENODEV; --- linux-4.8.0.orig/drivers/ptp/ptp_chardev.c +++ linux-4.8.0/drivers/ptp/ptp_chardev.c @@ -193,6 +193,7 @@ if (err) break; + memset(&precise_offset, 0, sizeof(precise_offset)); ts = ktime_to_timespec64(xtstamp.device); precise_offset.device.sec = ts.tv_sec; precise_offset.device.nsec = ts.tv_nsec; --- linux-4.8.0.orig/drivers/pwm/core.c +++ linux-4.8.0/drivers/pwm/core.c @@ -339,6 +339,8 @@ unsigned int i; int ret = 0; + pwmchip_sysfs_unexport_children(chip); + mutex_lock(&pwm_lock); for (i = 0; i < chip->npwm; i++) { --- linux-4.8.0.orig/drivers/pwm/sysfs.c +++ linux-4.8.0/drivers/pwm/sysfs.c @@ -409,6 +409,26 @@ } } +void pwmchip_sysfs_unexport_children(struct pwm_chip *chip) +{ + struct device *parent; + unsigned int i; + + parent = class_find_device(&pwm_class, NULL, chip, + pwmchip_sysfs_match); + if (!parent) + return; + + for (i = 0; i < chip->npwm; i++) { + struct pwm_device *pwm = &chip->pwms[i]; + + if (test_bit(PWMF_EXPORTED, &pwm->flags)) + pwm_unexport_child(parent, pwm); + } + + put_device(parent); +} + static int __init pwm_sysfs_init(void) { return class_register(&pwm_class); --- linux-4.8.0.orig/drivers/regulator/stw481x-vmmc.c +++ linux-4.8.0/drivers/regulator/stw481x-vmmc.c @@ -47,7 +47,8 @@ .volt_table = stw481x_vmmc_voltages, .enable_time = 200, /* FIXME: look this up */ .enable_reg = STW_CONF1, - .enable_mask = STW_CONF1_PDN_VMMC, + .enable_mask = STW_CONF1_PDN_VMMC | STW_CONF1_MMC_LS_STATUS, + .enable_val = STW_CONF1_PDN_VMMC, .vsel_reg = STW_CONF1, .vsel_mask = STW_CONF1_VMMC_MASK, }; --- linux-4.8.0.orig/drivers/regulator/tps65910-regulator.c +++ linux-4.8.0/drivers/regulator/tps65910-regulator.c @@ -1111,6 +1111,12 @@ pmic->num_regulators = ARRAY_SIZE(tps65910_regs); pmic->ext_sleep_control = tps65910_ext_sleep_control; info = tps65910_regs; + /* Work around silicon erratum SWCZ010: output programmed + * voltage level can go higher than expected or crash + * Workaround: use no synchronization of DCDC clocks + */ + tps65910_reg_clear_bits(pmic->mfd, TPS65910_DCDCCTRL, + DCDCCTRL_DCDCCKSYNC_MASK); break; case TPS65911: pmic->get_ctrl_reg = &tps65911_get_ctrl_register; --- linux-4.8.0.orig/drivers/rtc/rtc-omap.c +++ linux-4.8.0/drivers/rtc/rtc-omap.c @@ -109,6 +109,7 @@ /* OMAP_RTC_OSC_REG bit fields: */ #define OMAP_RTC_OSC_32KCLK_EN BIT(6) #define OMAP_RTC_OSC_SEL_32KCLK_SRC BIT(3) +#define OMAP_RTC_OSC_OSC32K_GZ_DISABLE BIT(4) /* OMAP_RTC_IRQWAKEEN bit fields: */ #define OMAP_RTC_IRQWAKEEN_ALARM_WAKEEN BIT(1) @@ -646,8 +647,9 @@ */ if (rtc->has_ext_clk) { reg = rtc_read(rtc, OMAP_RTC_OSC_REG); - rtc_write(rtc, OMAP_RTC_OSC_REG, - reg | OMAP_RTC_OSC_SEL_32KCLK_SRC); + reg &= ~OMAP_RTC_OSC_OSC32K_GZ_DISABLE; + reg |= OMAP_RTC_OSC_32KCLK_EN | OMAP_RTC_OSC_SEL_32KCLK_SRC; + rtc_writel(rtc, OMAP_RTC_OSC_REG, reg); } rtc->type->lock(rtc); --- linux-4.8.0.orig/drivers/rtc/rtc-pcf2123.c +++ linux-4.8.0/drivers/rtc/rtc-pcf2123.c @@ -182,7 +182,8 @@ } static ssize_t pcf2123_store(struct device *dev, struct device_attribute *attr, - const char *buffer, size_t count) { + const char *buffer, size_t count) +{ struct pcf2123_sysfs_reg *r; unsigned long reg; unsigned long val; @@ -199,7 +200,7 @@ if (ret) return ret; - pcf2123_write_reg(dev, reg, val); + ret = pcf2123_write_reg(dev, reg, val); if (ret < 0) return -EIO; return count; --- linux-4.8.0.orig/drivers/s390/char/con3270.c +++ linux-4.8.0/drivers/s390/char/con3270.c @@ -124,7 +124,12 @@ static void con3270_update_string(struct con3270 *cp, struct string *s, int nr) { - if (s->len >= cp->view.cols - 5) + if (s->len < 4) { + /* This indicates a bug, but printing a warning would + * cause a deadlock. */ + return; + } + if (s->string[s->len - 4] != TO_RA) return; raw3270_buffer_address(cp->view.dev, s->string + s->len - 3, cp->view.cols * (nr + 1)); @@ -460,11 +465,11 @@ cp->cline->len + 4 : cp->view.cols; s = con3270_alloc_string(cp, size); memcpy(s->string, cp->cline->string, cp->cline->len); - if (s->len < cp->view.cols - 5) { + if (cp->cline->len < cp->view.cols - 5) { s->string[s->len - 4] = TO_RA; s->string[s->len - 1] = 0; } else { - while (--size > cp->cline->len) + while (--size >= cp->cline->len) s->string[size] = cp->view.ascebc[' ']; } /* Replace cline with allocated line s and reset cline. */ --- linux-4.8.0.orig/drivers/s390/char/vmlogrdr.c +++ linux-4.8.0/drivers/s390/char/vmlogrdr.c @@ -870,7 +870,7 @@ goto cleanup; for (i=0; i < MAXMINOR; ++i ) { - sys_ser[i].buffer = (char *) get_zeroed_page(GFP_KERNEL); + sys_ser[i].buffer = (char *) get_zeroed_page(GFP_KERNEL | GFP_DMA); if (!sys_ser[i].buffer) { rc = -ENOMEM; break; --- linux-4.8.0.orig/drivers/s390/cio/chsc.c +++ linux-4.8.0/drivers/s390/cio/chsc.c @@ -95,12 +95,13 @@ int chsc_get_ssd_info(struct subchannel_id schid, struct chsc_ssd_info *ssd) { struct chsc_ssd_area *ssd_area; + unsigned long flags; int ccode; int ret; int i; int mask; - spin_lock_irq(&chsc_page_lock); + spin_lock_irqsave(&chsc_page_lock, flags); memset(chsc_page, 0, PAGE_SIZE); ssd_area = chsc_page; ssd_area->request.length = 0x0010; @@ -144,7 +145,7 @@ ssd->fla[i] = ssd_area->fla[i]; } out: - spin_unlock_irq(&chsc_page_lock); + spin_unlock_irqrestore(&chsc_page_lock, flags); return ret; } @@ -832,9 +833,10 @@ u32 fmt : 4; u32 : 16; } __attribute__ ((packed)) *secm_area; + unsigned long flags; int ret, ccode; - spin_lock_irq(&chsc_page_lock); + spin_lock_irqsave(&chsc_page_lock, flags); memset(chsc_page, 0, PAGE_SIZE); secm_area = chsc_page; secm_area->request.length = 0x0050; @@ -864,7 +866,7 @@ CIO_CRW_EVENT(2, "chsc: secm failed (rc=%04x)\n", secm_area->response.code); out: - spin_unlock_irq(&chsc_page_lock); + spin_unlock_irqrestore(&chsc_page_lock, flags); return ret; } @@ -992,6 +994,7 @@ int chsc_get_channel_measurement_chars(struct channel_path *chp) { + unsigned long flags; int ccode, ret; struct { @@ -1021,7 +1024,7 @@ if (!css_chsc_characteristics.scmc || !css_chsc_characteristics.secm) return -EINVAL; - spin_lock_irq(&chsc_page_lock); + spin_lock_irqsave(&chsc_page_lock, flags); memset(chsc_page, 0, PAGE_SIZE); scmc_area = chsc_page; scmc_area->request.length = 0x0010; @@ -1053,7 +1056,7 @@ chsc_initialize_cmg_chars(chp, scmc_area->cmcv, (struct cmg_chars *) &scmc_area->data); out: - spin_unlock_irq(&chsc_page_lock); + spin_unlock_irqrestore(&chsc_page_lock, flags); return ret; } @@ -1134,6 +1137,7 @@ int __init chsc_determine_css_characteristics(void) { + unsigned long flags; int result; struct { struct chsc_header request; @@ -1146,7 +1150,7 @@ u32 chsc_char[508]; } __attribute__ ((packed)) *scsc_area; - spin_lock_irq(&chsc_page_lock); + spin_lock_irqsave(&chsc_page_lock, flags); memset(chsc_page, 0, PAGE_SIZE); scsc_area = chsc_page; scsc_area->request.length = 0x0010; @@ -1168,7 +1172,7 @@ CIO_CRW_EVENT(2, "chsc: scsc failed (rc=%04x)\n", scsc_area->response.code); exit: - spin_unlock_irq(&chsc_page_lock); + spin_unlock_irqrestore(&chsc_page_lock, flags); return result; } --- linux-4.8.0.orig/drivers/s390/crypto/ap_bus.c +++ linux-4.8.0/drivers/s390/crypto/ap_bus.c @@ -1712,6 +1712,9 @@ ap_dev->queue_depth = queue_depth; ap_dev->raw_hwtype = device_type; ap_dev->device_type = device_type; + /* CEX6 toleration: map to CEX5 */ + if (device_type == AP_DEVICE_TYPE_CEX6) + ap_dev->device_type = AP_DEVICE_TYPE_CEX5; ap_dev->functions = device_functions; spin_lock_init(&ap_dev->lock); INIT_LIST_HEAD(&ap_dev->pendingq); --- linux-4.8.0.orig/drivers/s390/crypto/ap_bus.h +++ linux-4.8.0/drivers/s390/crypto/ap_bus.h @@ -105,6 +105,7 @@ #define AP_DEVICE_TYPE_CEX3C 9 #define AP_DEVICE_TYPE_CEX4 10 #define AP_DEVICE_TYPE_CEX5 11 +#define AP_DEVICE_TYPE_CEX6 12 /* * Known function facilities --- linux-4.8.0.orig/drivers/s390/scsi/zfcp_dbf.c +++ linux-4.8.0/drivers/s390/scsi/zfcp_dbf.c @@ -3,7 +3,7 @@ * * Debug traces for zfcp. * - * Copyright IBM Corp. 2002, 2013 + * Copyright IBM Corp. 2002, 2016 */ #define KMSG_COMPONENT "zfcp" @@ -65,7 +65,7 @@ * @tag: tag indicating which kind of unsolicited status has been received * @req: request for which a response was received */ -void zfcp_dbf_hba_fsf_res(char *tag, struct zfcp_fsf_req *req) +void zfcp_dbf_hba_fsf_res(char *tag, int level, struct zfcp_fsf_req *req) { struct zfcp_dbf *dbf = req->adapter->dbf; struct fsf_qtcb_prefix *q_pref = &req->qtcb->prefix; @@ -85,6 +85,8 @@ rec->u.res.req_issued = req->issued; rec->u.res.prot_status = q_pref->prot_status; rec->u.res.fsf_status = q_head->fsf_status; + rec->u.res.port_handle = q_head->port_handle; + rec->u.res.lun_handle = q_head->lun_handle; memcpy(rec->u.res.prot_status_qual, &q_pref->prot_status_qual, FSF_PROT_STATUS_QUAL_SIZE); @@ -97,7 +99,7 @@ rec->pl_len, "fsf_res", req->req_id); } - debug_event(dbf->hba, 1, rec, sizeof(*rec)); + debug_event(dbf->hba, level, rec, sizeof(*rec)); spin_unlock_irqrestore(&dbf->hba_lock, flags); } @@ -241,7 +243,8 @@ if (sdev) { rec->lun_status = atomic_read(&sdev_to_zfcp(sdev)->status); rec->lun = zfcp_scsi_dev_lun(sdev); - } + } else + rec->lun = ZFCP_DBF_INVALID_LUN; } /** @@ -286,11 +289,12 @@ /** - * zfcp_dbf_rec_run - trace event related to running recovery + * zfcp_dbf_rec_run_lvl - trace event related to running recovery + * @level: trace level to be used for event * @tag: identifier for event * @erp: erp_action running */ -void zfcp_dbf_rec_run(char *tag, struct zfcp_erp_action *erp) +void zfcp_dbf_rec_run_lvl(int level, char *tag, struct zfcp_erp_action *erp) { struct zfcp_dbf *dbf = erp->adapter->dbf; struct zfcp_dbf_rec *rec = &dbf->rec_buf; @@ -316,17 +320,62 @@ else rec->u.run.rec_count = atomic_read(&erp->adapter->erp_counter); + debug_event(dbf->rec, level, rec, sizeof(*rec)); + spin_unlock_irqrestore(&dbf->rec_lock, flags); +} + +/** + * zfcp_dbf_rec_run - trace event related to running recovery + * @tag: identifier for event + * @erp: erp_action running + */ +void zfcp_dbf_rec_run(char *tag, struct zfcp_erp_action *erp) +{ + zfcp_dbf_rec_run_lvl(1, tag, erp); +} + +/** + * zfcp_dbf_rec_run_wka - trace wka port event with info like running recovery + * @tag: identifier for event + * @wka_port: well known address port + * @req_id: request ID to correlate with potential HBA trace record + */ +void zfcp_dbf_rec_run_wka(char *tag, struct zfcp_fc_wka_port *wka_port, + u64 req_id) +{ + struct zfcp_dbf *dbf = wka_port->adapter->dbf; + struct zfcp_dbf_rec *rec = &dbf->rec_buf; + unsigned long flags; + + spin_lock_irqsave(&dbf->rec_lock, flags); + memset(rec, 0, sizeof(*rec)); + + rec->id = ZFCP_DBF_REC_RUN; + memcpy(rec->tag, tag, ZFCP_DBF_TAG_LEN); + rec->port_status = wka_port->status; + rec->d_id = wka_port->d_id; + rec->lun = ZFCP_DBF_INVALID_LUN; + + rec->u.run.fsf_req_id = req_id; + rec->u.run.rec_status = ~0; + rec->u.run.rec_step = ~0; + rec->u.run.rec_action = ~0; + rec->u.run.rec_count = ~0; + debug_event(dbf->rec, 1, rec, sizeof(*rec)); spin_unlock_irqrestore(&dbf->rec_lock, flags); } static inline -void zfcp_dbf_san(char *tag, struct zfcp_dbf *dbf, void *data, u8 id, u16 len, - u64 req_id, u32 d_id) +void zfcp_dbf_san(char *tag, struct zfcp_dbf *dbf, + char *paytag, struct scatterlist *sg, u8 id, u16 len, + u64 req_id, u32 d_id, u16 cap_len) { struct zfcp_dbf_san *rec = &dbf->san_buf; u16 rec_len; unsigned long flags; + struct zfcp_dbf_pay *payload = &dbf->pay_buf; + u16 pay_sum = 0; spin_lock_irqsave(&dbf->san_lock, flags); memset(rec, 0, sizeof(*rec)); @@ -334,10 +383,41 @@ rec->id = id; rec->fsf_req_id = req_id; rec->d_id = d_id; - rec_len = min(len, (u16)ZFCP_DBF_SAN_MAX_PAYLOAD); - memcpy(rec->payload, data, rec_len); memcpy(rec->tag, tag, ZFCP_DBF_TAG_LEN); + rec->pl_len = len; /* full length even if we cap pay below */ + if (!sg) + goto out; + rec_len = min_t(unsigned int, sg->length, ZFCP_DBF_SAN_MAX_PAYLOAD); + memcpy(rec->payload, sg_virt(sg), rec_len); /* part of 1st sg entry */ + if (len <= rec_len) + goto out; /* skip pay record if full content in rec->payload */ + + /* if (len > rec_len): + * dump data up to cap_len ignoring small duplicate in rec->payload + */ + spin_lock(&dbf->pay_lock); + memset(payload, 0, sizeof(*payload)); + memcpy(payload->area, paytag, ZFCP_DBF_TAG_LEN); + payload->fsf_req_id = req_id; + payload->counter = 0; + for (; sg && pay_sum < cap_len; sg = sg_next(sg)) { + u16 pay_len, offset = 0; + + while (offset < sg->length && pay_sum < cap_len) { + pay_len = min((u16)ZFCP_DBF_PAY_MAX_REC, + (u16)(sg->length - offset)); + /* cap_len <= pay_sum < cap_len+ZFCP_DBF_PAY_MAX_REC */ + memcpy(payload->data, sg_virt(sg) + offset, pay_len); + debug_event(dbf->pay, 1, payload, + zfcp_dbf_plen(pay_len)); + payload->counter++; + offset += pay_len; + pay_sum += pay_len; + } + } + spin_unlock(&dbf->pay_lock); +out: debug_event(dbf->san, 1, rec, sizeof(*rec)); spin_unlock_irqrestore(&dbf->san_lock, flags); } @@ -354,9 +434,62 @@ struct zfcp_fsf_ct_els *ct_els = fsf->data; u16 length; - length = (u16)(ct_els->req->length + FC_CT_HDR_LEN); - zfcp_dbf_san(tag, dbf, sg_virt(ct_els->req), ZFCP_DBF_SAN_REQ, length, - fsf->req_id, d_id); + length = (u16)zfcp_qdio_real_bytes(ct_els->req); + zfcp_dbf_san(tag, dbf, "san_req", ct_els->req, ZFCP_DBF_SAN_REQ, + length, fsf->req_id, d_id, length); +} + +static u16 zfcp_dbf_san_res_cap_len_if_gpn_ft(char *tag, + struct zfcp_fsf_req *fsf, + u16 len) +{ + struct zfcp_fsf_ct_els *ct_els = fsf->data; + struct fc_ct_hdr *reqh = sg_virt(ct_els->req); + struct fc_ns_gid_ft *reqn = (struct fc_ns_gid_ft *)(reqh + 1); + struct scatterlist *resp_entry = ct_els->resp; + struct fc_gpn_ft_resp *acc; + int max_entries, x, last = 0; + + if (!(memcmp(tag, "fsscth2", 7) == 0 + && ct_els->d_id == FC_FID_DIR_SERV + && reqh->ct_rev == FC_CT_REV + && reqh->ct_in_id[0] == 0 + && reqh->ct_in_id[1] == 0 + && reqh->ct_in_id[2] == 0 + && reqh->ct_fs_type == FC_FST_DIR + && reqh->ct_fs_subtype == FC_NS_SUBTYPE + && reqh->ct_options == 0 + && reqh->_ct_resvd1 == 0 + && reqh->ct_cmd == FC_NS_GPN_FT + /* reqh->ct_mr_size can vary so do not match but read below */ + && reqh->_ct_resvd2 == 0 + && reqh->ct_reason == 0 + && reqh->ct_explan == 0 + && reqh->ct_vendor == 0 + && reqn->fn_resvd == 0 + && reqn->fn_domain_id_scope == 0 + && reqn->fn_area_id_scope == 0 + && reqn->fn_fc4_type == FC_TYPE_FCP)) + return len; /* not GPN_FT response so do not cap */ + + acc = sg_virt(resp_entry); + max_entries = (reqh->ct_mr_size * 4 / sizeof(struct fc_gpn_ft_resp)) + + 1 /* zfcp_fc_scan_ports: bytes correct, entries off-by-one + * to account for header as 1st pseudo "entry" */; + + /* the basic CT_IU preamble is the same size as one entry in the GPN_FT + * response, allowing us to skip special handling for it - just skip it + */ + for (x = 1; x < max_entries && !last; x++) { + if (x % (ZFCP_FC_GPN_FT_ENT_PAGE + 1)) + acc++; + else + acc = sg_virt(++resp_entry); + + last = acc->fp_flags & FC_NS_FID_LAST; + } + len = min(len, (u16)(x * sizeof(struct fc_gpn_ft_resp))); + return len; /* cap after last entry */ } /** @@ -370,9 +503,10 @@ struct zfcp_fsf_ct_els *ct_els = fsf->data; u16 length; - length = (u16)(ct_els->resp->length + FC_CT_HDR_LEN); - zfcp_dbf_san(tag, dbf, sg_virt(ct_els->resp), ZFCP_DBF_SAN_RES, length, - fsf->req_id, 0); + length = (u16)zfcp_qdio_real_bytes(ct_els->resp); + zfcp_dbf_san(tag, dbf, "san_res", ct_els->resp, ZFCP_DBF_SAN_RES, + length, fsf->req_id, ct_els->d_id, + zfcp_dbf_san_res_cap_len_if_gpn_ft(tag, fsf, length)); } /** @@ -386,11 +520,13 @@ struct fsf_status_read_buffer *srb = (struct fsf_status_read_buffer *) fsf->data; u16 length; + struct scatterlist sg; length = (u16)(srb->length - offsetof(struct fsf_status_read_buffer, payload)); - zfcp_dbf_san(tag, dbf, srb->payload.data, ZFCP_DBF_SAN_ELS, length, - fsf->req_id, ntoh24(srb->d_id)); + sg_init_one(&sg, srb->payload.data, length); + zfcp_dbf_san(tag, dbf, "san_els", &sg, ZFCP_DBF_SAN_ELS, length, + fsf->req_id, ntoh24(srb->d_id), length); } /** @@ -399,7 +535,8 @@ * @sc: pointer to struct scsi_cmnd * @fsf: pointer to struct zfcp_fsf_req */ -void zfcp_dbf_scsi(char *tag, struct scsi_cmnd *sc, struct zfcp_fsf_req *fsf) +void zfcp_dbf_scsi(char *tag, int level, struct scsi_cmnd *sc, + struct zfcp_fsf_req *fsf) { struct zfcp_adapter *adapter = (struct zfcp_adapter *) sc->device->host->hostdata[0]; @@ -442,7 +579,7 @@ } } - debug_event(dbf->scsi, 1, rec, sizeof(*rec)); + debug_event(dbf->scsi, level, rec, sizeof(*rec)); spin_unlock_irqrestore(&dbf->scsi_lock, flags); } --- linux-4.8.0.orig/drivers/s390/scsi/zfcp_dbf.h +++ linux-4.8.0/drivers/s390/scsi/zfcp_dbf.h @@ -2,7 +2,7 @@ * zfcp device driver * debug feature declarations * - * Copyright IBM Corp. 2008, 2010 + * Copyright IBM Corp. 2008, 2016 */ #ifndef ZFCP_DBF_H @@ -17,6 +17,11 @@ #define ZFCP_DBF_INVALID_LUN 0xFFFFFFFFFFFFFFFFull +enum zfcp_dbf_pseudo_erp_act_type { + ZFCP_PSEUDO_ERP_ACTION_RPORT_ADD = 0xff, + ZFCP_PSEUDO_ERP_ACTION_RPORT_DEL = 0xfe, +}; + /** * struct zfcp_dbf_rec_trigger - trace record for triggered recovery action * @ready: number of ready recovery actions @@ -110,6 +115,7 @@ u32 d_id; #define ZFCP_DBF_SAN_MAX_PAYLOAD (FC_CT_HDR_LEN + 32) char payload[ZFCP_DBF_SAN_MAX_PAYLOAD]; + u16 pl_len; } __packed; /** @@ -126,6 +132,8 @@ u8 prot_status_qual[FSF_PROT_STATUS_QUAL_SIZE]; u32 fsf_status; u8 fsf_status_qual[FSF_STATUS_QUALIFIER_SIZE]; + u32 port_handle; + u32 lun_handle; } __packed; /** @@ -275,11 +283,35 @@ struct zfcp_dbf_scsi scsi_buf; }; +/** + * zfcp_dbf_hba_fsf_resp_suppress - true if we should not trace by default + * @req: request that has been completed + * + * Returns true if FCP response with only benign residual under count. + */ +static inline +bool zfcp_dbf_hba_fsf_resp_suppress(struct zfcp_fsf_req *req) +{ + struct fsf_qtcb *qtcb = req->qtcb; + u32 fsf_stat = qtcb->header.fsf_status; + struct fcp_resp *fcp_rsp; + u8 rsp_flags, fr_status; + + if (qtcb->prefix.qtcb_type != FSF_IO_COMMAND) + return false; /* not an FCP response */ + fcp_rsp = (struct fcp_resp *)&qtcb->bottom.io.fcp_rsp; + rsp_flags = fcp_rsp->fr_flags; + fr_status = fcp_rsp->fr_status; + return (fsf_stat == FSF_FCP_RSP_AVAILABLE) && + (rsp_flags == FCP_RESID_UNDER) && + (fr_status == SAM_STAT_GOOD); +} + static inline void zfcp_dbf_hba_fsf_resp(char *tag, int level, struct zfcp_fsf_req *req) { if (debug_level_enabled(req->adapter->dbf->hba, level)) - zfcp_dbf_hba_fsf_res(tag, req); + zfcp_dbf_hba_fsf_res(tag, level, req); } /** @@ -296,7 +328,9 @@ zfcp_dbf_hba_fsf_resp("fs_perr", 1, req); } else if (qtcb->header.fsf_status != FSF_GOOD) { - zfcp_dbf_hba_fsf_resp("fs_ferr", 1, req); + zfcp_dbf_hba_fsf_resp("fs_ferr", + zfcp_dbf_hba_fsf_resp_suppress(req) + ? 5 : 1, req); } else if ((req->fsf_command == FSF_QTCB_OPEN_PORT_WITH_DID) || (req->fsf_command == FSF_QTCB_OPEN_LUN)) { @@ -318,7 +352,7 @@ scmd->device->host->hostdata[0]; if (debug_level_enabled(adapter->dbf->scsi, level)) - zfcp_dbf_scsi(tag, scmd, req); + zfcp_dbf_scsi(tag, level, scmd, req); } /** @@ -380,4 +414,15 @@ _zfcp_dbf_scsi(tmp_tag, 1, scmnd, NULL); } +/** + * zfcp_dbf_scsi_nullcmnd() - trace NULLify of SCSI command in dev/tgt-reset. + * @scmnd: SCSI command that was NULLified. + * @fsf_req: request that owned @scmnd. + */ +static inline void zfcp_dbf_scsi_nullcmnd(struct scsi_cmnd *scmnd, + struct zfcp_fsf_req *fsf_req) +{ + _zfcp_dbf_scsi("scfc__1", 3, scmnd, fsf_req); +} + #endif /* ZFCP_DBF_H */ --- linux-4.8.0.orig/drivers/s390/scsi/zfcp_erp.c +++ linux-4.8.0/drivers/s390/scsi/zfcp_erp.c @@ -3,7 +3,7 @@ * * Error Recovery Procedures (ERP). * - * Copyright IBM Corp. 2002, 2010 + * Copyright IBM Corp. 2002, 2016 */ #define KMSG_COMPONENT "zfcp" @@ -1204,6 +1204,62 @@ } } +/** + * zfcp_erp_try_rport_unblock - unblock rport if no more/new recovery + * @port: zfcp_port whose fc_rport we should try to unblock + */ +static void zfcp_erp_try_rport_unblock(struct zfcp_port *port) +{ + unsigned long flags; + struct zfcp_adapter *adapter = port->adapter; + int port_status; + struct Scsi_Host *shost = adapter->scsi_host; + struct scsi_device *sdev; + + write_lock_irqsave(&adapter->erp_lock, flags); + port_status = atomic_read(&port->status); + if ((port_status & ZFCP_STATUS_COMMON_UNBLOCKED) == 0 || + (port_status & (ZFCP_STATUS_COMMON_ERP_INUSE | + ZFCP_STATUS_COMMON_ERP_FAILED)) != 0) { + /* new ERP of severity >= port triggered elsewhere meanwhile or + * local link down (adapter erp_failed but not clear unblock) + */ + zfcp_dbf_rec_run_lvl(4, "ertru_p", &port->erp_action); + write_unlock_irqrestore(&adapter->erp_lock, flags); + return; + } + spin_lock(shost->host_lock); + __shost_for_each_device(sdev, shost) { + struct zfcp_scsi_dev *zsdev = sdev_to_zfcp(sdev); + int lun_status; + + if (zsdev->port != port) + continue; + /* LUN under port of interest */ + lun_status = atomic_read(&zsdev->status); + if ((lun_status & ZFCP_STATUS_COMMON_ERP_FAILED) != 0) + continue; /* unblock rport despite failed LUNs */ + /* LUN recovery not given up yet [maybe follow-up pending] */ + if ((lun_status & ZFCP_STATUS_COMMON_UNBLOCKED) == 0 || + (lun_status & ZFCP_STATUS_COMMON_ERP_INUSE) != 0) { + /* LUN blocked: + * not yet unblocked [LUN recovery pending] + * or meanwhile blocked [new LUN recovery triggered] + */ + zfcp_dbf_rec_run_lvl(4, "ertru_l", &zsdev->erp_action); + spin_unlock(shost->host_lock); + write_unlock_irqrestore(&adapter->erp_lock, flags); + return; + } + } + /* now port has no child or all children have completed recovery, + * and no ERP of severity >= port was meanwhile triggered elsewhere + */ + zfcp_scsi_schedule_rport_register(port); + spin_unlock(shost->host_lock); + write_unlock_irqrestore(&adapter->erp_lock, flags); +} + static void zfcp_erp_action_cleanup(struct zfcp_erp_action *act, int result) { struct zfcp_adapter *adapter = act->adapter; @@ -1214,11 +1270,18 @@ case ZFCP_ERP_ACTION_REOPEN_LUN: if (!(act->status & ZFCP_STATUS_ERP_NO_REF)) scsi_device_put(sdev); + zfcp_erp_try_rport_unblock(port); break; case ZFCP_ERP_ACTION_REOPEN_PORT: - if (result == ZFCP_ERP_SUCCEEDED) - zfcp_scsi_schedule_rport_register(port); + /* This switch case might also happen after a forced reopen + * was successfully done and thus overwritten with a new + * non-forced reopen at `ersfs_2'. In this case, we must not + * do the clean-up of the non-forced version. + */ + if (act->step != ZFCP_ERP_STEP_UNINITIALIZED) + if (result == ZFCP_ERP_SUCCEEDED) + zfcp_erp_try_rport_unblock(port); /* fall through */ case ZFCP_ERP_ACTION_REOPEN_PORT_FORCED: put_device(&port->dev); --- linux-4.8.0.orig/drivers/s390/scsi/zfcp_ext.h +++ linux-4.8.0/drivers/s390/scsi/zfcp_ext.h @@ -3,7 +3,7 @@ * * External function declarations. * - * Copyright IBM Corp. 2002, 2010 + * Copyright IBM Corp. 2002, 2016 */ #ifndef ZFCP_EXT_H @@ -35,8 +35,11 @@ extern void zfcp_dbf_rec_trig(char *, struct zfcp_adapter *, struct zfcp_port *, struct scsi_device *, u8, u8); extern void zfcp_dbf_rec_run(char *, struct zfcp_erp_action *); +extern void zfcp_dbf_rec_run_lvl(int level, char *tag, + struct zfcp_erp_action *erp); +extern void zfcp_dbf_rec_run_wka(char *, struct zfcp_fc_wka_port *, u64); extern void zfcp_dbf_hba_fsf_uss(char *, struct zfcp_fsf_req *); -extern void zfcp_dbf_hba_fsf_res(char *, struct zfcp_fsf_req *); +extern void zfcp_dbf_hba_fsf_res(char *, int, struct zfcp_fsf_req *); extern void zfcp_dbf_hba_bit_err(char *, struct zfcp_fsf_req *); extern void zfcp_dbf_hba_berr(struct zfcp_dbf *, struct zfcp_fsf_req *); extern void zfcp_dbf_hba_def_err(struct zfcp_adapter *, u64, u16, void **); @@ -44,7 +47,8 @@ extern void zfcp_dbf_san_req(char *, struct zfcp_fsf_req *, u32); extern void zfcp_dbf_san_res(char *, struct zfcp_fsf_req *); extern void zfcp_dbf_san_in_els(char *, struct zfcp_fsf_req *); -extern void zfcp_dbf_scsi(char *, struct scsi_cmnd *, struct zfcp_fsf_req *); +extern void zfcp_dbf_scsi(char *, int, struct scsi_cmnd *, + struct zfcp_fsf_req *); /* zfcp_erp.c */ extern void zfcp_erp_set_adapter_status(struct zfcp_adapter *, u32); --- linux-4.8.0.orig/drivers/s390/scsi/zfcp_fsf.c +++ linux-4.8.0/drivers/s390/scsi/zfcp_fsf.c @@ -3,7 +3,7 @@ * * Implementation of FSF commands. * - * Copyright IBM Corp. 2002, 2013 + * Copyright IBM Corp. 2002, 2015 */ #define KMSG_COMPONENT "zfcp" @@ -508,7 +508,10 @@ fc_host_port_type(shost) = FC_PORTTYPE_PTP; break; case FSF_TOPO_FABRIC: - fc_host_port_type(shost) = FC_PORTTYPE_NPORT; + if (bottom->connection_features & FSF_FEATURE_NPIV_MODE) + fc_host_port_type(shost) = FC_PORTTYPE_NPIV; + else + fc_host_port_type(shost) = FC_PORTTYPE_NPORT; break; case FSF_TOPO_AL: fc_host_port_type(shost) = FC_PORTTYPE_NLPORT; @@ -613,7 +616,6 @@ if (adapter->connection_features & FSF_FEATURE_NPIV_MODE) { fc_host_permanent_port_name(shost) = bottom->wwpn; - fc_host_port_type(shost) = FC_PORTTYPE_NPIV; } else fc_host_permanent_port_name(shost) = fc_host_port_name(shost); fc_host_maxframe_size(shost) = bottom->maximum_frame_size; @@ -982,8 +984,12 @@ if (zfcp_adapter_multi_buffer_active(adapter)) { if (zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req, sg_req)) return -EIO; + qtcb->bottom.support.req_buf_length = + zfcp_qdio_real_bytes(sg_req); if (zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req, sg_resp)) return -EIO; + qtcb->bottom.support.resp_buf_length = + zfcp_qdio_real_bytes(sg_resp); zfcp_qdio_set_data_div(qdio, &req->qdio_req, zfcp_qdio_sbale_count(sg_req)); @@ -1073,6 +1079,7 @@ req->handler = zfcp_fsf_send_ct_handler; req->qtcb->header.port_handle = wka_port->handle; + ct->d_id = wka_port->d_id; req->data = ct; zfcp_dbf_san_req("fssct_1", req, wka_port->d_id); @@ -1169,6 +1176,7 @@ hton24(req->qtcb->bottom.support.d_id, d_id); req->handler = zfcp_fsf_send_els_handler; + els->d_id = d_id; req->data = els; zfcp_dbf_san_req("fssels1", req, d_id); @@ -1575,7 +1583,7 @@ int zfcp_fsf_open_wka_port(struct zfcp_fc_wka_port *wka_port) { struct zfcp_qdio *qdio = wka_port->adapter->qdio; - struct zfcp_fsf_req *req; + struct zfcp_fsf_req *req = NULL; int retval = -EIO; spin_lock_irq(&qdio->req_q_lock); @@ -1604,6 +1612,8 @@ zfcp_fsf_req_free(req); out: spin_unlock_irq(&qdio->req_q_lock); + if (req && !IS_ERR(req)) + zfcp_dbf_rec_run_wka("fsowp_1", wka_port, req->req_id); return retval; } @@ -1628,7 +1638,7 @@ int zfcp_fsf_close_wka_port(struct zfcp_fc_wka_port *wka_port) { struct zfcp_qdio *qdio = wka_port->adapter->qdio; - struct zfcp_fsf_req *req; + struct zfcp_fsf_req *req = NULL; int retval = -EIO; spin_lock_irq(&qdio->req_q_lock); @@ -1657,6 +1667,8 @@ zfcp_fsf_req_free(req); out: spin_unlock_irq(&qdio->req_q_lock); + if (req && !IS_ERR(req)) + zfcp_dbf_rec_run_wka("fscwp_1", wka_port, req->req_id); return retval; } --- linux-4.8.0.orig/drivers/s390/scsi/zfcp_fsf.h +++ linux-4.8.0/drivers/s390/scsi/zfcp_fsf.h @@ -3,7 +3,7 @@ * * Interface to the FSF support functions. * - * Copyright IBM Corp. 2002, 2010 + * Copyright IBM Corp. 2002, 2016 */ #ifndef FSF_H @@ -78,6 +78,7 @@ #define FSF_APP_TAG_CHECK_FAILURE 0x00000082 #define FSF_REF_TAG_CHECK_FAILURE 0x00000083 #define FSF_ADAPTER_STATUS_AVAILABLE 0x000000AD +#define FSF_FCP_RSP_AVAILABLE 0x000000AF #define FSF_UNKNOWN_COMMAND 0x000000E2 #define FSF_UNKNOWN_OP_SUBTYPE 0x000000E3 #define FSF_INVALID_COMMAND_OPTION 0x000000E5 @@ -436,6 +437,7 @@ * @handler_data: data passed to handler function * @port: Optional pointer to port for zfcp internal ELS (only test link ADISC) * @status: used to pass error status to calling function + * @d_id: Destination ID of either open WKA port for CT or of D_ID for ELS */ struct zfcp_fsf_ct_els { struct scatterlist *req; @@ -444,6 +446,7 @@ void *handler_data; struct zfcp_port *port; int status; + u32 d_id; }; #endif /* FSF_H */ --- linux-4.8.0.orig/drivers/s390/scsi/zfcp_reqlist.h +++ linux-4.8.0/drivers/s390/scsi/zfcp_reqlist.h @@ -4,7 +4,7 @@ * Data structure and helper functions for tracking pending FSF * requests. * - * Copyright IBM Corp. 2009 + * Copyright IBM Corp. 2009, 2016 */ #ifndef ZFCP_REQLIST_H @@ -180,4 +180,32 @@ spin_unlock_irqrestore(&rl->lock, flags); } +/** + * zfcp_reqlist_apply_for_all() - apply a function to every request. + * @rl: the requestlist that contains the target requests. + * @f: the function to apply to each request; the first parameter of the + * function will be the target-request; the second parameter is the same + * pointer as given with the argument @data. + * @data: freely chosen argument; passed through to @f as second parameter. + * + * Uses :c:macro:`list_for_each_entry` to iterate over the lists in the hash- + * table (not a 'safe' variant, so don't modify the list). + * + * Holds @rl->lock over the entire request-iteration. + */ +static inline void +zfcp_reqlist_apply_for_all(struct zfcp_reqlist *rl, + void (*f)(struct zfcp_fsf_req *, void *), void *data) +{ + struct zfcp_fsf_req *req; + unsigned long flags; + unsigned int i; + + spin_lock_irqsave(&rl->lock, flags); + for (i = 0; i < ZFCP_REQ_LIST_BUCKETS; i++) + list_for_each_entry(req, &rl->buckets[i], list) + f(req, data); + spin_unlock_irqrestore(&rl->lock, flags); +} + #endif /* ZFCP_REQLIST_H */ --- linux-4.8.0.orig/drivers/s390/scsi/zfcp_scsi.c +++ linux-4.8.0/drivers/s390/scsi/zfcp_scsi.c @@ -3,7 +3,7 @@ * * Interface to Linux SCSI midlayer. * - * Copyright IBM Corp. 2002, 2013 + * Copyright IBM Corp. 2002, 2016 */ #define KMSG_COMPONENT "zfcp" @@ -88,9 +88,7 @@ } if (unlikely(!(status & ZFCP_STATUS_COMMON_UNBLOCKED))) { - /* This could be either - * open LUN pending: this is temporary, will result in - * open LUN or ERP_FAILED, so retry command + /* This could be * call to rport_delete pending: mimic retry from * fc_remote_port_chkready until rport is BLOCKED */ @@ -209,6 +207,57 @@ return retval; } +struct zfcp_scsi_req_filter { + u8 tmf_scope; + u32 lun_handle; + u32 port_handle; +}; + +static void zfcp_scsi_forget_cmnd(struct zfcp_fsf_req *old_req, void *data) +{ + struct zfcp_scsi_req_filter *filter = + (struct zfcp_scsi_req_filter *)data; + + /* already aborted - prevent side-effects - or not a SCSI command */ + if (old_req->data == NULL || old_req->fsf_command != FSF_QTCB_FCP_CMND) + return; + + /* (tmf_scope == FCP_TMF_TGT_RESET || tmf_scope == FCP_TMF_LUN_RESET) */ + if (old_req->qtcb->header.port_handle != filter->port_handle) + return; + + if (filter->tmf_scope == FCP_TMF_LUN_RESET && + old_req->qtcb->header.lun_handle != filter->lun_handle) + return; + + zfcp_dbf_scsi_nullcmnd((struct scsi_cmnd *)old_req->data, old_req); + old_req->data = NULL; +} + +static void zfcp_scsi_forget_cmnds(struct zfcp_scsi_dev *zsdev, u8 tm_flags) +{ + struct zfcp_adapter *adapter = zsdev->port->adapter; + struct zfcp_scsi_req_filter filter = { + .tmf_scope = FCP_TMF_TGT_RESET, + .port_handle = zsdev->port->handle, + }; + unsigned long flags; + + if (tm_flags == FCP_TMF_LUN_RESET) { + filter.tmf_scope = FCP_TMF_LUN_RESET; + filter.lun_handle = zsdev->lun_handle; + } + + /* + * abort_lock secures against other processings - in the abort-function + * and normal cmnd-handler - of (struct zfcp_fsf_req *)->data + */ + write_lock_irqsave(&adapter->abort_lock, flags); + zfcp_reqlist_apply_for_all(adapter->req_list, zfcp_scsi_forget_cmnd, + &filter); + write_unlock_irqrestore(&adapter->abort_lock, flags); +} + static int zfcp_task_mgmt_function(struct scsi_cmnd *scpnt, u8 tm_flags) { struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(scpnt->device); @@ -241,8 +290,10 @@ if (fsf_req->status & ZFCP_STATUS_FSFREQ_TMFUNCFAILED) { zfcp_dbf_scsi_devreset("fail", scpnt, tm_flags); retval = FAILED; - } else + } else { zfcp_dbf_scsi_devreset("okay", scpnt, tm_flags); + zfcp_scsi_forget_cmnds(zfcp_sdev, tm_flags); + } zfcp_fsf_req_free(fsf_req); return retval; @@ -556,6 +607,9 @@ ids.port_id = port->d_id; ids.roles = FC_RPORT_ROLE_FCP_TARGET; + zfcp_dbf_rec_trig("scpaddy", port->adapter, port, NULL, + ZFCP_PSEUDO_ERP_ACTION_RPORT_ADD, + ZFCP_PSEUDO_ERP_ACTION_RPORT_ADD); rport = fc_remote_port_add(port->adapter->scsi_host, 0, &ids); if (!rport) { dev_err(&port->adapter->ccw_device->dev, @@ -577,6 +631,9 @@ struct fc_rport *rport = port->rport; if (rport) { + zfcp_dbf_rec_trig("scpdely", port->adapter, port, NULL, + ZFCP_PSEUDO_ERP_ACTION_RPORT_DEL, + ZFCP_PSEUDO_ERP_ACTION_RPORT_DEL); fc_remote_port_delete(rport); port->rport = NULL; } --- linux-4.8.0.orig/drivers/scsi/aacraid/linit.c +++ linux-4.8.0/drivers/scsi/aacraid/linit.c @@ -160,7 +160,6 @@ { 0x9005, 0x028b, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 62 }, /* Adaptec PMC Series 6 (Tupelo) */ { 0x9005, 0x028c, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 63 }, /* Adaptec PMC Series 7 (Denali) */ { 0x9005, 0x028d, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 64 }, /* Adaptec PMC Series 8 */ - { 0x9005, 0x028f, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 65 }, /* Adaptec PMC Series 9 */ { 0,} }; MODULE_DEVICE_TABLE(pci, aac_pci_tbl); @@ -239,7 +238,6 @@ { aac_src_init, "aacraid", "ADAPTEC ", "RAID ", 2, AAC_QUIRK_SRC }, /* Adaptec PMC Series 6 (Tupelo) */ { aac_srcv_init, "aacraid", "ADAPTEC ", "RAID ", 2, AAC_QUIRK_SRC }, /* Adaptec PMC Series 7 (Denali) */ { aac_srcv_init, "aacraid", "ADAPTEC ", "RAID ", 2, AAC_QUIRK_SRC }, /* Adaptec PMC Series 8 */ - { aac_srcv_init, "aacraid", "ADAPTEC ", "RAID ", 2, AAC_QUIRK_SRC } /* Adaptec PMC Series 9 */ }; /** --- linux-4.8.0.orig/drivers/scsi/arcmsr/arcmsr_hba.c +++ linux-4.8.0/drivers/scsi/arcmsr/arcmsr_hba.c @@ -2388,15 +2388,23 @@ } case ARCMSR_MESSAGE_WRITE_WQBUFFER: { unsigned char *ver_addr; - int32_t user_len, cnt2end; + uint32_t user_len; + int32_t cnt2end; uint8_t *pQbuffer, *ptmpuserbuffer; + + user_len = pcmdmessagefld->cmdmessage.Length; + if (user_len > ARCMSR_API_DATA_BUFLEN) { + retvalue = ARCMSR_MESSAGE_FAIL; + goto message_out; + } + ver_addr = kmalloc(ARCMSR_API_DATA_BUFLEN, GFP_ATOMIC); if (!ver_addr) { retvalue = ARCMSR_MESSAGE_FAIL; goto message_out; } ptmpuserbuffer = ver_addr; - user_len = pcmdmessagefld->cmdmessage.Length; + memcpy(ptmpuserbuffer, pcmdmessagefld->messagedatabuffer, user_len); spin_lock_irqsave(&acb->wqbuffer_lock, flags); @@ -2628,18 +2636,9 @@ struct AdapterControlBlock *acb = (struct AdapterControlBlock *) host->hostdata; struct CommandControlBlock *ccb; int target = cmd->device->id; - int lun = cmd->device->lun; - uint8_t scsicmd = cmd->cmnd[0]; cmd->scsi_done = done; cmd->host_scribble = NULL; cmd->result = 0; - if ((scsicmd == SYNCHRONIZE_CACHE) ||(scsicmd == SEND_DIAGNOSTIC)){ - if(acb->devstate[target][lun] == ARECA_RAID_GONE) { - cmd->result = (DID_NO_CONNECT << 16); - } - cmd->scsi_done(cmd); - return 0; - } if (target == 16) { /* virtual device for iop message transfer */ arcmsr_handle_virtual_command(acb, cmd); --- linux-4.8.0.orig/drivers/scsi/be2iscsi/be_main.c +++ linux-4.8.0/drivers/scsi/be2iscsi/be_main.c @@ -233,20 +233,20 @@ cls_session = starget_to_session(scsi_target(sc->device)); session = cls_session->dd_data; - spin_lock_bh(&session->frwd_lock); + spin_lock_bh(&session->lock); if (!aborted_task || !aborted_task->sc) { /* we raced */ - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); return SUCCESS; } aborted_io_task = aborted_task->dd_data; if (!aborted_io_task->scsi_cmnd) { /* raced or invalid command */ - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); return SUCCESS; } - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); /* Invalidate WRB Posted for this Task */ AMAP_SET_BITS(struct amap_iscsi_wrb, invld, aborted_io_task->pwrb_handle->pwrb, @@ -311,9 +311,9 @@ /* invalidate iocbs */ cls_session = starget_to_session(scsi_target(sc->device)); session = cls_session->dd_data; - spin_lock_bh(&session->frwd_lock); + spin_lock_bh(&session->lock); if (!session->leadconn || session->state != ISCSI_STATE_LOGGED_IN) { - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); return FAILED; } conn = session->leadconn; @@ -342,7 +342,7 @@ num_invalidate++; inv_tbl++; } - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); inv_tbl = phba->inv_tbl; nonemb_cmd.va = pci_alloc_consistent(phba->ctrl.pdev, @@ -1122,9 +1122,9 @@ return 1; } - spin_lock_bh(&session->back_lock); + spin_lock_bh(&session->lock); __iscsi_complete_pdu(conn, (struct iscsi_hdr *)ppdu, pbuffer, buf_len); - spin_unlock_bh(&session->back_lock); + spin_unlock_bh(&session->lock); return 0; } @@ -1572,7 +1572,7 @@ pwrb = pwrb_handle->pwrb; type = ((struct beiscsi_io_task *)task->dd_data)->wrb_type; - spin_lock_bh(&session->back_lock); + spin_lock_bh(&session->lock); switch (type) { case HWH_TYPE_IO: case HWH_TYPE_IO_RD: @@ -1611,7 +1611,7 @@ break; } - spin_unlock_bh(&session->back_lock); + spin_unlock_bh(&session->lock); } static struct list_head *hwi_get_async_busy_list(struct hwi_async_pdu_context @@ -4711,9 +4711,9 @@ * login/startup related tasks. */ beiscsi_conn->login_in_progress = 0; - spin_lock_bh(&session->back_lock); + spin_lock_bh(&session->lock); beiscsi_cleanup_task(task); - spin_unlock_bh(&session->back_lock); + spin_unlock_bh(&session->lock); pwrb_handle = alloc_wrb_handle(phba, beiscsi_conn->beiscsi_conn_cid, &pwrb_context); --- linux-4.8.0.orig/drivers/scsi/bnx2i/bnx2i_hwi.c +++ linux-4.8.0/drivers/scsi/bnx2i/bnx2i_hwi.c @@ -1363,7 +1363,7 @@ u32 datalen = 0; resp_cqe = (struct bnx2i_cmd_response *)cqe; - spin_lock_bh(&session->back_lock); + spin_lock_bh(&session->lock); task = iscsi_itt_to_task(conn, resp_cqe->itt & ISCSI_CMD_RESPONSE_INDEX); if (!task) @@ -1434,7 +1434,7 @@ __iscsi_complete_pdu(conn, (struct iscsi_hdr *)hdr, conn->data, datalen); fail: - spin_unlock_bh(&session->back_lock); + spin_unlock_bh(&session->lock); return 0; } @@ -1459,7 +1459,7 @@ int pad_len; login = (struct bnx2i_login_response *) cqe; - spin_lock(&session->back_lock); + spin_lock(&session->lock); task = iscsi_itt_to_task(conn, login->itt & ISCSI_LOGIN_RESPONSE_INDEX); if (!task) @@ -1502,7 +1502,7 @@ bnx2i_conn->gen_pdu.resp_buf, bnx2i_conn->gen_pdu.resp_wr_ptr - bnx2i_conn->gen_pdu.resp_buf); done: - spin_unlock(&session->back_lock); + spin_unlock(&session->lock); return 0; } @@ -1527,7 +1527,7 @@ int pad_len; text = (struct bnx2i_text_response *) cqe; - spin_lock(&session->back_lock); + spin_lock(&session->lock); task = iscsi_itt_to_task(conn, text->itt & ISCSI_LOGIN_RESPONSE_INDEX); if (!task) goto done; @@ -1563,7 +1563,7 @@ bnx2i_conn->gen_pdu.resp_wr_ptr - bnx2i_conn->gen_pdu.resp_buf); done: - spin_unlock(&session->back_lock); + spin_unlock(&session->lock); return 0; } @@ -1586,7 +1586,7 @@ struct iscsi_tm_rsp *resp_hdr; tmf_cqe = (struct bnx2i_tmf_response *)cqe; - spin_lock(&session->back_lock); + spin_lock(&session->lock); task = iscsi_itt_to_task(conn, tmf_cqe->itt & ISCSI_TMF_RESPONSE_INDEX); if (!task) @@ -1602,7 +1602,7 @@ __iscsi_complete_pdu(conn, (struct iscsi_hdr *)resp_hdr, NULL, 0); done: - spin_unlock(&session->back_lock); + spin_unlock(&session->lock); return 0; } @@ -1625,7 +1625,7 @@ struct iscsi_logout_rsp *resp_hdr; logout = (struct bnx2i_logout_response *) cqe; - spin_lock(&session->back_lock); + spin_lock(&session->lock); task = iscsi_itt_to_task(conn, logout->itt & ISCSI_LOGOUT_RESPONSE_INDEX); if (!task) @@ -1649,7 +1649,7 @@ bnx2i_conn->ep->state = EP_STATE_LOGOUT_RESP_RCVD; done: - spin_unlock(&session->back_lock); + spin_unlock(&session->lock); return 0; } @@ -1670,12 +1670,12 @@ struct iscsi_task *task; nop_in = (struct bnx2i_nop_in_msg *)cqe; - spin_lock(&session->back_lock); + spin_lock(&session->lock); task = iscsi_itt_to_task(conn, nop_in->itt & ISCSI_NOP_IN_MSG_INDEX); if (task) __iscsi_put_task(task); - spin_unlock(&session->back_lock); + spin_unlock(&session->lock); } /** @@ -1714,7 +1714,7 @@ nop_in = (struct bnx2i_nop_in_msg *)cqe; - spin_lock(&session->back_lock); + spin_lock(&session->lock); hdr = (struct iscsi_nopin *)&bnx2i_conn->gen_pdu.resp_hdr; memset(hdr, 0, sizeof(struct iscsi_hdr)); hdr->opcode = nop_in->op_code; @@ -1740,7 +1740,7 @@ } done: __iscsi_complete_pdu(conn, (struct iscsi_hdr *)hdr, NULL, 0); - spin_unlock(&session->back_lock); + spin_unlock(&session->lock); return tgt_async_nop; } @@ -1773,7 +1773,7 @@ return; } - spin_lock(&session->back_lock); + spin_lock(&session->lock); resp_hdr = (struct iscsi_async *) &bnx2i_conn->gen_pdu.resp_hdr; memset(resp_hdr, 0, sizeof(struct iscsi_hdr)); resp_hdr->opcode = async_cqe->op_code; @@ -1792,7 +1792,7 @@ __iscsi_complete_pdu(bnx2i_conn->cls_conn->dd_data, (struct iscsi_hdr *)resp_hdr, NULL, 0); - spin_unlock(&session->back_lock); + spin_unlock(&session->lock); } @@ -1819,7 +1819,7 @@ } else bnx2i_unsol_pdu_adjust_rq(bnx2i_conn); - spin_lock(&session->back_lock); + spin_lock(&session->lock); hdr = (struct iscsi_reject *) &bnx2i_conn->gen_pdu.resp_hdr; memset(hdr, 0, sizeof(struct iscsi_hdr)); hdr->opcode = reject->op_code; @@ -1830,7 +1830,7 @@ hdr->ffffffff = cpu_to_be32(RESERVED_ITT); __iscsi_complete_pdu(conn, (struct iscsi_hdr *)hdr, conn->data, reject->data_length); - spin_unlock(&session->back_lock); + spin_unlock(&session->lock); } /** @@ -1850,13 +1850,13 @@ struct iscsi_task *task; cmd_clean_rsp = (struct bnx2i_cleanup_response *)cqe; - spin_lock(&session->back_lock); + spin_lock(&session->lock); task = iscsi_itt_to_task(conn, cmd_clean_rsp->itt & ISCSI_CLEANUP_RESPONSE_INDEX); if (!task) printk(KERN_ALERT "bnx2i: cmd clean ITT %x not active\n", cmd_clean_rsp->itt & ISCSI_CLEANUP_RESPONSE_INDEX); - spin_unlock(&session->back_lock); + spin_unlock(&session->lock); complete(&bnx2i_conn->cmd_cleanup_cmpl); } @@ -1923,11 +1923,11 @@ int rc = 0; int cpu; - spin_lock(&session->back_lock); + spin_lock(&session->lock); task = iscsi_itt_to_task(bnx2i_conn->cls_conn->dd_data, cqe->itt & ISCSI_CMD_RESPONSE_INDEX); if (!task || !task->sc) { - spin_unlock(&session->back_lock); + spin_unlock(&session->lock); return -EINVAL; } sc = task->sc; @@ -1937,7 +1937,7 @@ else cpu = sc->request->cpu; - spin_unlock(&session->back_lock); + spin_unlock(&session->lock); p = &per_cpu(bnx2i_percpu, cpu); spin_lock(&p->p_work_lock); --- linux-4.8.0.orig/drivers/scsi/bnx2i/bnx2i_iscsi.c +++ linux-4.8.0/drivers/scsi/bnx2i/bnx2i_iscsi.c @@ -1172,12 +1172,10 @@ if (task->state == ISCSI_TASK_ABRT_TMF) { bnx2i_send_cmd_cleanup_req(hba, task->dd_data); - spin_unlock_bh(&conn->session->back_lock); - spin_unlock_bh(&conn->session->frwd_lock); + spin_unlock_bh(&conn->session->lock); wait_for_completion_timeout(&bnx2i_conn->cmd_cleanup_cmpl, msecs_to_jiffies(ISCSI_CMD_CLEANUP_TIMEOUT)); - spin_lock_bh(&conn->session->frwd_lock); - spin_lock_bh(&conn->session->back_lock); + spin_lock_bh(&conn->session->lock); } bnx2i_iscsi_unmap_sg_list(task->dd_data); } @@ -2063,7 +2061,7 @@ goto out; if (session) { - spin_lock_bh(&session->frwd_lock); + spin_lock_bh(&session->lock); if (bnx2i_ep->state != EP_STATE_TCP_FIN_RCVD) { if (session->state == ISCSI_STATE_LOGGING_OUT) { if (bnx2i_ep->state == EP_STATE_LOGOUT_SENT) { @@ -2079,7 +2077,7 @@ } else close = 1; - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); } bnx2i_ep->state = EP_STATE_DISCONN_START; --- linux-4.8.0.orig/drivers/scsi/cxlflash/main.c +++ linux-4.8.0/drivers/scsi/cxlflash/main.c @@ -823,17 +823,6 @@ } /** - * cxlflash_shutdown() - shutdown handler - * @pdev: PCI device associated with the host. - */ -static void cxlflash_shutdown(struct pci_dev *pdev) -{ - struct cxlflash_cfg *cfg = pci_get_drvdata(pdev); - - notify_shutdown(cfg, false); -} - -/** * cxlflash_remove() - PCI entry point to tear down host * @pdev: PCI device associated with the host. * @@ -844,6 +833,11 @@ struct cxlflash_cfg *cfg = pci_get_drvdata(pdev); ulong lock_flags; + if (!pci_is_enabled(pdev)) { + pr_debug("%s: Device is disabled\n", __func__); + return; + } + /* If a Task Management Function is active, wait for it to complete * before continuing with remove. */ @@ -1046,6 +1040,8 @@ do { msleep(delay_us / 1000); status = readq_be(&fc_regs[FC_MTIP_STATUS / 8]); + if (status == U64_MAX) + nretry /= 2; } while ((status & FC_MTIP_STATUS_MASK) != FC_MTIP_STATUS_ONLINE && nretry--); @@ -1077,6 +1073,8 @@ do { msleep(delay_us / 1000); status = readq_be(&fc_regs[FC_MTIP_STATUS / 8]); + if (status == U64_MAX) + nretry /= 2; } while ((status & FC_MTIP_STATUS_MASK) != FC_MTIP_STATUS_OFFLINE && nretry--); @@ -1187,7 +1185,7 @@ {SISL_ASTATUS_FC0_LOGI_F, "login failed", 0, CLR_FC_ERROR}, {SISL_ASTATUS_FC0_LOGI_S, "login succeeded", 0, SCAN_HOST}, {SISL_ASTATUS_FC0_LINK_DN, "link down", 0, 0}, - {SISL_ASTATUS_FC0_LINK_UP, "link up", 0, SCAN_HOST}, + {SISL_ASTATUS_FC0_LINK_UP, "link up", 0, 0}, {SISL_ASTATUS_FC1_OTHER, "other error", 1, CLR_FC_ERROR | LINK_RESET}, {SISL_ASTATUS_FC1_LOGO, "target initiated LOGO", 1, 0}, {SISL_ASTATUS_FC1_CRC_T, "CRC threshold exceeded", 1, LINK_RESET}, @@ -1195,7 +1193,7 @@ {SISL_ASTATUS_FC1_LOGI_F, "login failed", 1, CLR_FC_ERROR}, {SISL_ASTATUS_FC1_LOGI_S, "login succeeded", 1, SCAN_HOST}, {SISL_ASTATUS_FC1_LINK_DN, "link down", 1, 0}, - {SISL_ASTATUS_FC1_LINK_UP, "link up", 1, SCAN_HOST}, + {SISL_ASTATUS_FC1_LINK_UP, "link up", 1, 0}, {0x0, "", 0, 0} /* terminator */ }; @@ -2048,6 +2046,11 @@ * cxlflash_eh_host_reset_handler() - reset the host adapter * @scp: SCSI command from stack identifying host. * + * Following a reset, the state is evaluated again in case an EEH occurred + * during the reset. In such a scenario, the host reset will either yield + * until the EEH recovery is complete or return success or failure based + * upon the current device state. + * * Return: * SUCCESS as defined in scsi/scsi.h * FAILED as defined in scsi/scsi.h @@ -2080,7 +2083,8 @@ } else cfg->state = STATE_NORMAL; wake_up_all(&cfg->reset_waitq); - break; + ssleep(1); + /* fall through */ case STATE_RESET: wait_event(cfg->reset_waitq, cfg->state != STATE_RESET); if (cfg->state == STATE_NORMAL) @@ -2596,6 +2600,9 @@ * @pdev: PCI device struct. * @state: PCI channel state. * + * When an EEH occurs during an active reset, wait until the reset is + * complete and then take action based upon the device state. + * * Return: PCI_ERS_RESULT_NEED_RESET or PCI_ERS_RESULT_DISCONNECT */ static pci_ers_result_t cxlflash_pci_error_detected(struct pci_dev *pdev, @@ -2609,6 +2616,10 @@ switch (state) { case pci_channel_io_frozen: + wait_event(cfg->reset_waitq, cfg->state != STATE_RESET); + if (cfg->state == STATE_FAILTERM) + return PCI_ERS_RESULT_DISCONNECT; + cfg->state = STATE_RESET; scsi_block_requests(cfg->host); drain_ioctls(cfg); @@ -2685,7 +2696,7 @@ .id_table = cxlflash_pci_table, .probe = cxlflash_probe, .remove = cxlflash_remove, - .shutdown = cxlflash_shutdown, + .shutdown = cxlflash_remove, .err_handler = &cxlflash_err_handler, }; --- linux-4.8.0.orig/drivers/scsi/device_handler/scsi_dh_alua.c +++ linux-4.8.0/drivers/scsi/device_handler/scsi_dh_alua.c @@ -792,6 +792,7 @@ WARN_ON(pg->flags & ALUA_PG_RUN_RTPG); WARN_ON(pg->flags & ALUA_PG_RUN_STPG); spin_unlock_irqrestore(&pg->lock, flags); + kref_put(&pg->kref, release_port_group); return; } if (pg->flags & ALUA_SYNC_STPG) @@ -889,6 +890,7 @@ /* Do not queue if the worker is already running */ if (!(pg->flags & ALUA_PG_RUNNING)) { kref_get(&pg->kref); + sdev = NULL; start_queue = 1; } } @@ -900,7 +902,8 @@ if (start_queue && !queue_delayed_work(alua_wq, &pg->rtpg_work, msecs_to_jiffies(ALUA_RTPG_DELAY_MSECS))) { - scsi_device_put(sdev); + if (sdev) + scsi_device_put(sdev); kref_put(&pg->kref, release_port_group); } } --- linux-4.8.0.orig/drivers/scsi/hosts.c +++ linux-4.8.0/drivers/scsi/hosts.c @@ -246,10 +246,6 @@ shost->dma_dev = dma_dev; - error = device_add(&shost->shost_gendev); - if (error) - goto out_destroy_freelist; - /* * Increase usage count temporarily here so that calling * scsi_autopm_put_host() will trigger runtime idle if there is @@ -260,6 +256,10 @@ pm_runtime_enable(&shost->shost_gendev); device_enable_async_suspend(&shost->shost_gendev); + error = device_add(&shost->shost_gendev); + if (error) + goto out_destroy_freelist; + scsi_host_set_state(shost, SHOST_RUNNING); get_device(shost->shost_gendev.parent); @@ -309,6 +309,10 @@ out_del_gendev: device_del(&shost->shost_gendev); out_destroy_freelist: + device_disable_async_suspend(&shost->shost_gendev); + pm_runtime_disable(&shost->shost_gendev); + pm_runtime_set_suspended(&shost->shost_gendev); + pm_runtime_put_noidle(&shost->shost_gendev); scsi_destroy_command_freelist(shost); out_destroy_tags: if (shost_use_blk_mq(shost)) --- linux-4.8.0.orig/drivers/scsi/hpsa.c +++ linux-4.8.0/drivers/scsi/hpsa.c @@ -2007,7 +2007,7 @@ static int hpsa_slave_alloc(struct scsi_device *sdev) { - struct hpsa_scsi_dev_t *sd; + struct hpsa_scsi_dev_t *sd = NULL; unsigned long flags; struct ctlr_info *h; @@ -2024,7 +2024,8 @@ sd->target = sdev_id(sdev); sd->lun = sdev->lun; } - } else + } + if (!sd) sd = lookup_hpsa_scsi_dev(h, sdev_channel(sdev), sdev_id(sdev), sdev->lun); @@ -3805,6 +3806,7 @@ sizeof(this_device->vendor)); memcpy(this_device->model, &inq_buff[16], sizeof(this_device->model)); + this_device->rev = inq_buff[2]; memset(this_device->device_id, 0, sizeof(this_device->device_id)); hpsa_get_device_id(h, scsi3addr, this_device->device_id, 8, @@ -3887,10 +3889,14 @@ if (!is_logical_dev_addr_mode(lunaddrbytes)) { /* physical device, target and lun filled in later */ - if (is_hba_lunid(lunaddrbytes)) + if (is_hba_lunid(lunaddrbytes)) { + int bus = HPSA_HBA_BUS; + + if (!device->rev) + bus = HPSA_LEGACY_HBA_BUS; hpsa_set_bus_target_lun(device, - HPSA_HBA_BUS, 0, lunid & 0x3fff); - else + bus, 0, lunid & 0x3fff); + } else /* defer target, lun assignment for physical devices */ hpsa_set_bus_target_lun(device, HPSA_PHYSICAL_DEVICE_BUS, -1, -1); --- linux-4.8.0.orig/drivers/scsi/hpsa.h +++ linux-4.8.0/drivers/scsi/hpsa.h @@ -69,6 +69,7 @@ u64 sas_address; unsigned char vendor[8]; /* bytes 8-15 of inquiry data */ unsigned char model[16]; /* bytes 16-31 of inquiry data */ + unsigned char rev; /* byte 2 of inquiry data */ unsigned char raid_level; /* from inquiry page 0xC1 */ unsigned char volume_offline; /* discovered via TUR or VPD */ u16 queue_depth; /* max queue_depth for this device */ @@ -403,6 +404,7 @@ #define HPSA_RAID_VOLUME_BUS 1 #define HPSA_EXTERNAL_RAID_VOLUME_BUS 2 #define HPSA_HBA_BUS 0 +#define HPSA_LEGACY_HBA_BUS 3 /* Send the command to the hardware --- linux-4.8.0.orig/drivers/scsi/ibmvscsi/ibmvfc.c +++ linux-4.8.0/drivers/scsi/ibmvscsi/ibmvfc.c @@ -717,7 +717,6 @@ spin_lock_irqsave(vhost->host->host_lock, flags); vhost->state = IBMVFC_NO_CRQ; vhost->logged_in = 0; - ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_NONE); /* Clean out the queue */ memset(crq->msgs, 0, PAGE_SIZE); --- linux-4.8.0.orig/drivers/scsi/ibmvscsi_tgt/ibmvscsi_tgt.c +++ linux-4.8.0/drivers/scsi/ibmvscsi_tgt/ibmvscsi_tgt.c @@ -22,7 +22,7 @@ * ****************************************************************************/ -#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt +#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include #include @@ -45,6 +45,7 @@ #define INITIAL_SRP_LIMIT 800 #define DEFAULT_MAX_SECTORS 256 +#define MAX_TXU 1024 * 1024 static uint max_vdma_size = MAX_H_COPY_RDMA; @@ -81,7 +82,7 @@ } } else if (se_cmd->se_cmd_flags & SCF_OVERFLOW_BIT) { if (se_cmd->data_direction == DMA_TO_DEVICE) { - /* residual data from an overflow write */ + /* residual data from an overflow write */ rsp->flags = SRP_RSP_FLAG_DOOVER; rsp->data_out_res_cnt = cpu_to_be32(residual_count); } else if (se_cmd->data_direction == DMA_FROM_DEVICE) { @@ -101,7 +102,7 @@ * and the function returns TRUE. * * EXECUTION ENVIRONMENT: - * Interrupt or Process environment + * Interrupt or Process environment */ static bool connection_broken(struct scsi_info *vscsi) { @@ -324,7 +325,7 @@ } /** - * ibmvscsis_send_init_message() - send initialize message to the client + * ibmvscsis_send_init_message() - send initialize message to the client * @vscsi: Pointer to our adapter structure * @format: Which Init Message format to send * @@ -382,13 +383,13 @@ vscsi->cmd_q.base_addr); if (crq) { *format = (uint)(crq->format); - rc = ERROR; + rc = ERROR; crq->valid = INVALIDATE_CMD_RESP_EL; dma_rmb(); } } else { *format = (uint)(crq->format); - rc = ERROR; + rc = ERROR; crq->valid = INVALIDATE_CMD_RESP_EL; dma_rmb(); } @@ -397,166 +398,6 @@ } /** - * ibmvscsis_establish_new_q() - Establish new CRQ queue - * @vscsi: Pointer to our adapter structure - * @new_state: New state being established after resetting the queue - * - * Must be called with interrupt lock held. - */ -static long ibmvscsis_establish_new_q(struct scsi_info *vscsi, uint new_state) -{ - long rc = ADAPT_SUCCESS; - uint format; - - vscsi->flags &= PRESERVE_FLAG_FIELDS; - vscsi->rsp_q_timer.timer_pops = 0; - vscsi->debit = 0; - vscsi->credit = 0; - - rc = vio_enable_interrupts(vscsi->dma_dev); - if (rc) { - pr_warn("reset_queue: failed to enable interrupts, rc %ld\n", - rc); - return rc; - } - - rc = ibmvscsis_check_init_msg(vscsi, &format); - if (rc) { - dev_err(&vscsi->dev, "reset_queue: check_init_msg failed, rc %ld\n", - rc); - return rc; - } - - if (format == UNUSED_FORMAT && new_state == WAIT_CONNECTION) { - rc = ibmvscsis_send_init_message(vscsi, INIT_MSG); - switch (rc) { - case H_SUCCESS: - case H_DROPPED: - case H_CLOSED: - rc = ADAPT_SUCCESS; - break; - - case H_PARAMETER: - case H_HARDWARE: - break; - - default: - vscsi->state = UNDEFINED; - rc = H_HARDWARE; - break; - } - } - - return rc; -} - -/** - * ibmvscsis_reset_queue() - Reset CRQ Queue - * @vscsi: Pointer to our adapter structure - * @new_state: New state to establish after resetting the queue - * - * This function calls h_free_q and then calls h_reg_q and does all - * of the bookkeeping to get us back to where we can communicate. - * - * Actually, we don't always call h_free_crq. A problem was discovered - * where one partition would close and reopen his queue, which would - * cause his partner to get a transport event, which would cause him to - * close and reopen his queue, which would cause the original partition - * to get a transport event, etc., etc. To prevent this, we don't - * actually close our queue if the client initiated the reset, (i.e. - * either we got a transport event or we have detected that the client's - * queue is gone) - * - * EXECUTION ENVIRONMENT: - * Process environment, called with interrupt lock held - */ -static void ibmvscsis_reset_queue(struct scsi_info *vscsi, uint new_state) -{ - int bytes; - long rc = ADAPT_SUCCESS; - - pr_debug("reset_queue: flags 0x%x\n", vscsi->flags); - - /* don't reset, the client did it for us */ - if (vscsi->flags & (CLIENT_FAILED | TRANS_EVENT)) { - vscsi->flags &= PRESERVE_FLAG_FIELDS; - vscsi->rsp_q_timer.timer_pops = 0; - vscsi->debit = 0; - vscsi->credit = 0; - vscsi->state = new_state; - vio_enable_interrupts(vscsi->dma_dev); - } else { - rc = ibmvscsis_free_command_q(vscsi); - if (rc == ADAPT_SUCCESS) { - vscsi->state = new_state; - - bytes = vscsi->cmd_q.size * PAGE_SIZE; - rc = h_reg_crq(vscsi->dds.unit_id, - vscsi->cmd_q.crq_token, bytes); - if (rc == H_CLOSED || rc == H_SUCCESS) { - rc = ibmvscsis_establish_new_q(vscsi, - new_state); - } - - if (rc != ADAPT_SUCCESS) { - pr_debug("reset_queue: reg_crq rc %ld\n", rc); - - vscsi->state = ERR_DISCONNECTED; - vscsi->flags |= RESPONSE_Q_DOWN; - ibmvscsis_free_command_q(vscsi); - } - } else { - vscsi->state = ERR_DISCONNECTED; - vscsi->flags |= RESPONSE_Q_DOWN; - } - } -} - -/** - * ibmvscsis_free_cmd_resources() - Free command resources - * @vscsi: Pointer to our adapter structure - * @cmd: Command which is not longer in use - * - * Must be called with interrupt lock held. - */ -static void ibmvscsis_free_cmd_resources(struct scsi_info *vscsi, - struct ibmvscsis_cmd *cmd) -{ - struct iu_entry *iue = cmd->iue; - - switch (cmd->type) { - case TASK_MANAGEMENT: - case SCSI_CDB: - /* - * When the queue goes down this value is cleared, so it - * cannot be cleared in this general purpose function. - */ - if (vscsi->debit) - vscsi->debit -= 1; - break; - case ADAPTER_MAD: - vscsi->flags &= ~PROCESSING_MAD; - break; - case UNSET_TYPE: - break; - default: - dev_err(&vscsi->dev, "free_cmd_resources unknown type %d\n", - cmd->type); - break; - } - - cmd->iue = NULL; - list_add_tail(&cmd->list, &vscsi->free_cmd); - srp_iu_put(iue); - - if (list_empty(&vscsi->active_q) && list_empty(&vscsi->schedule_q) && - list_empty(&vscsi->waiting_rsp) && (vscsi->flags & WAIT_FOR_IDLE)) { - vscsi->flags &= ~WAIT_FOR_IDLE; - complete(&vscsi->wait_idle); - } -} - -/** * ibmvscsis_disconnect() - Helper function to disconnect * @work: Pointer to work_struct, gives access to our adapter structure * @@ -575,7 +416,6 @@ proc_work); u16 new_state; bool wait_idle = false; - long rc = ADAPT_SUCCESS; spin_lock_bh(&vscsi->intr_lock); new_state = vscsi->new_state; @@ -589,7 +429,7 @@ * should transitition to the new state */ switch (vscsi->state) { - /* Should never be called while in this state. */ + /* Should never be called while in this state. */ case NO_QUEUE: /* * Can never transition from this state; @@ -628,30 +468,24 @@ vscsi->state = new_state; break; - /* - * If this is a transition into an error state. - * a client is attempting to establish a connection - * and has violated the RPA protocol. - * There can be nothing pending on the adapter although - * there can be requests in the command queue. - */ case WAIT_ENABLED: - case PART_UP_WAIT_ENAB: switch (new_state) { - case ERR_DISCONNECT: - vscsi->flags |= RESPONSE_Q_DOWN; + case UNCONFIGURING: vscsi->state = new_state; + vscsi->flags |= RESPONSE_Q_DOWN; vscsi->flags &= ~(SCHEDULE_DISCONNECT | DISCONNECT_SCHEDULED); - ibmvscsis_free_command_q(vscsi); - break; - case ERR_DISCONNECT_RECONNECT: - ibmvscsis_reset_queue(vscsi, WAIT_ENABLED); + dma_rmb(); + if (vscsi->flags & CFG_SLEEPING) { + vscsi->flags &= ~CFG_SLEEPING; + complete(&vscsi->unconfig); + } break; /* should never happen */ + case ERR_DISCONNECT: + case ERR_DISCONNECT_RECONNECT: case WAIT_IDLE: - rc = ERROR; dev_err(&vscsi->dev, "disconnect: invalid state %d for WAIT_IDLE\n", vscsi->state); break; @@ -660,6 +494,13 @@ case WAIT_IDLE: switch (new_state) { + case UNCONFIGURING: + vscsi->flags |= RESPONSE_Q_DOWN; + vscsi->state = new_state; + vscsi->flags &= ~(SCHEDULE_DISCONNECT | + DISCONNECT_SCHEDULED); + ibmvscsis_free_command_q(vscsi); + break; case ERR_DISCONNECT: case ERR_DISCONNECT_RECONNECT: vscsi->state = new_state; @@ -759,50 +600,353 @@ INIT_WORK(&vscsi->proc_work, ibmvscsis_disconnect); (void)queue_work(vscsi->work_q, &vscsi->proc_work); } else { - if (vscsi->new_state) - state = vscsi->new_state; - else - state = vscsi->state; + if (vscsi->new_state) + state = vscsi->new_state; + else + state = vscsi->state; + + switch (state) { + case NO_QUEUE: + case UNCONFIGURING: + break; + + case ERR_DISCONNECTED: + case ERR_DISCONNECT: + case UNDEFINED: + if (new_state == UNCONFIGURING) + vscsi->new_state = new_state; + break; + + case ERR_DISCONNECT_RECONNECT: + switch (new_state) { + case UNCONFIGURING: + case ERR_DISCONNECT: + vscsi->new_state = new_state; + break; + default: + break; + } + break; + + case WAIT_ENABLED: + case WAIT_IDLE: + case WAIT_CONNECTION: + case CONNECTED: + case SRP_PROCESSING: + vscsi->new_state = new_state; + break; + + default: + break; + } + } + + pr_debug("Leaving post_disconnect: flags 0x%x, new_state 0x%x\n", + vscsi->flags, vscsi->new_state); +} + +/** + * ibmvscsis_handle_init_compl_msg() - Respond to an Init Complete Message + * @vscsi: Pointer to our adapter structure + * + * Must be called with interrupt lock held. + */ +static long ibmvscsis_handle_init_compl_msg(struct scsi_info *vscsi) +{ + long rc = ADAPT_SUCCESS; + + switch (vscsi->state) { + case NO_QUEUE: + case ERR_DISCONNECT: + case ERR_DISCONNECT_RECONNECT: + case ERR_DISCONNECTED: + case UNCONFIGURING: + case UNDEFINED: + rc = ERROR; + break; + + case WAIT_CONNECTION: + vscsi->state = CONNECTED; + break; + + case WAIT_IDLE: + case SRP_PROCESSING: + case CONNECTED: + case WAIT_ENABLED: + default: + rc = ERROR; + dev_err(&vscsi->dev, "init_msg: invalid state %d to get init compl msg\n", + vscsi->state); + ibmvscsis_post_disconnect(vscsi, ERR_DISCONNECT_RECONNECT, 0); + break; + } + + return rc; +} + +/** + * ibmvscsis_handle_init_msg() - Respond to an Init Message + * @vscsi: Pointer to our adapter structure + * + * Must be called with interrupt lock held. + */ +static long ibmvscsis_handle_init_msg(struct scsi_info *vscsi) +{ + long rc = ADAPT_SUCCESS; + + switch (vscsi->state) { + case WAIT_CONNECTION: + rc = ibmvscsis_send_init_message(vscsi, INIT_COMPLETE_MSG); + switch (rc) { + case H_SUCCESS: + vscsi->state = CONNECTED; + break; + + case H_PARAMETER: + dev_err(&vscsi->dev, "init_msg: failed to send, rc %ld\n", + rc); + ibmvscsis_post_disconnect(vscsi, ERR_DISCONNECT, 0); + break; + + case H_DROPPED: + dev_err(&vscsi->dev, "init_msg: failed to send, rc %ld\n", + rc); + rc = ERROR; + ibmvscsis_post_disconnect(vscsi, + ERR_DISCONNECT_RECONNECT, 0); + break; + + case H_CLOSED: + pr_warn("init_msg: failed to send, rc %ld\n", rc); + rc = 0; + break; + } + break; + + case UNDEFINED: + rc = ERROR; + break; + + case UNCONFIGURING: + break; + + case WAIT_ENABLED: + case CONNECTED: + case SRP_PROCESSING: + case WAIT_IDLE: + case NO_QUEUE: + case ERR_DISCONNECT: + case ERR_DISCONNECT_RECONNECT: + case ERR_DISCONNECTED: + default: + rc = ERROR; + dev_err(&vscsi->dev, "init_msg: invalid state %d to get init msg\n", + vscsi->state); + ibmvscsis_post_disconnect(vscsi, ERR_DISCONNECT_RECONNECT, 0); + break; + } + + return rc; +} + +/** + * ibmvscsis_init_msg() - Respond to an init message + * @vscsi: Pointer to our adapter structure + * @crq: Pointer to CRQ element containing the Init Message + * + * EXECUTION ENVIRONMENT: + * Interrupt, interrupt lock held + */ +static long ibmvscsis_init_msg(struct scsi_info *vscsi, struct viosrp_crq *crq) +{ + long rc = ADAPT_SUCCESS; + + pr_debug("init_msg: state 0x%hx\n", vscsi->state); + + rc = h_vioctl(vscsi->dds.unit_id, H_GET_PARTNER_INFO, + (u64)vscsi->map_ioba | ((u64)PAGE_SIZE << 32), 0, 0, 0, + 0); + if (rc == H_SUCCESS) { + vscsi->client_data.partition_number = + be64_to_cpu(*(u64 *)vscsi->map_buf); + pr_debug("init_msg, part num %d\n", + vscsi->client_data.partition_number); + } else { + pr_debug("init_msg h_vioctl rc %ld\n", rc); + rc = ADAPT_SUCCESS; + } + + if (crq->format == INIT_MSG) { + rc = ibmvscsis_handle_init_msg(vscsi); + } else if (crq->format == INIT_COMPLETE_MSG) { + rc = ibmvscsis_handle_init_compl_msg(vscsi); + } else { + rc = ERROR; + dev_err(&vscsi->dev, "init_msg: invalid format %d\n", + (uint)crq->format); + ibmvscsis_post_disconnect(vscsi, ERR_DISCONNECT_RECONNECT, 0); + } + + return rc; +} + +/** + * ibmvscsis_establish_new_q() - Establish new CRQ queue + * @vscsi: Pointer to our adapter structure + * + * Must be called with interrupt lock held. + */ +static long ibmvscsis_establish_new_q(struct scsi_info *vscsi) +{ + long rc = ADAPT_SUCCESS; + uint format; + + vscsi->flags &= PRESERVE_FLAG_FIELDS; + vscsi->rsp_q_timer.timer_pops = 0; + vscsi->debit = 0; + vscsi->credit = 0; + + rc = vio_enable_interrupts(vscsi->dma_dev); + if (rc) { + pr_warn("establish_new_q: failed to enable interrupts, rc %ld\n", + rc); + return rc; + } + + rc = ibmvscsis_check_init_msg(vscsi, &format); + if (rc) { + dev_err(&vscsi->dev, "establish_new_q: check_init_msg failed, rc %ld\n", + rc); + return rc; + } + + if (format == UNUSED_FORMAT) { + rc = ibmvscsis_send_init_message(vscsi, INIT_MSG); + switch (rc) { + case H_SUCCESS: + case H_DROPPED: + case H_CLOSED: + rc = ADAPT_SUCCESS; + break; + + case H_PARAMETER: + case H_HARDWARE: + break; + + default: + vscsi->state = UNDEFINED; + rc = H_HARDWARE; + break; + } + } else if (format == INIT_MSG) { + rc = ibmvscsis_handle_init_msg(vscsi); + } + + return rc; +} + +/** + * ibmvscsis_reset_queue() - Reset CRQ Queue + * @vscsi: Pointer to our adapter structure + * + * This function calls h_free_q and then calls h_reg_q and does all + * of the bookkeeping to get us back to where we can communicate. + * + * Actually, we don't always call h_free_crq. A problem was discovered + * where one partition would close and reopen his queue, which would + * cause his partner to get a transport event, which would cause him to + * close and reopen his queue, which would cause the original partition + * to get a transport event, etc., etc. To prevent this, we don't + * actually close our queue if the client initiated the reset, (i.e. + * either we got a transport event or we have detected that the client's + * queue is gone) + * + * EXECUTION ENVIRONMENT: + * Process environment, called with interrupt lock held + */ +static void ibmvscsis_reset_queue(struct scsi_info *vscsi) +{ + int bytes; + long rc = ADAPT_SUCCESS; + + pr_debug("reset_queue: flags 0x%x\n", vscsi->flags); + + /* don't reset, the client did it for us */ + if (vscsi->flags & (CLIENT_FAILED | TRANS_EVENT)) { + vscsi->flags &= PRESERVE_FLAG_FIELDS; + vscsi->rsp_q_timer.timer_pops = 0; + vscsi->debit = 0; + vscsi->credit = 0; + vscsi->state = WAIT_CONNECTION; + vio_enable_interrupts(vscsi->dma_dev); + } else { + rc = ibmvscsis_free_command_q(vscsi); + if (rc == ADAPT_SUCCESS) { + vscsi->state = WAIT_CONNECTION; - switch (state) { - case NO_QUEUE: - case UNCONFIGURING: - break; + bytes = vscsi->cmd_q.size * PAGE_SIZE; + rc = h_reg_crq(vscsi->dds.unit_id, + vscsi->cmd_q.crq_token, bytes); + if (rc == H_CLOSED || rc == H_SUCCESS) { + rc = ibmvscsis_establish_new_q(vscsi); + } - case ERR_DISCONNECTED: - case ERR_DISCONNECT: - case UNDEFINED: - if (new_state == UNCONFIGURING) - vscsi->new_state = new_state; - break; + if (rc != ADAPT_SUCCESS) { + pr_debug("reset_queue: reg_crq rc %ld\n", rc); - case ERR_DISCONNECT_RECONNECT: - switch (new_state) { - case UNCONFIGURING: - case ERR_DISCONNECT: - vscsi->new_state = new_state; - break; - default: - break; + vscsi->state = ERR_DISCONNECTED; + vscsi->flags |= RESPONSE_Q_DOWN; + ibmvscsis_free_command_q(vscsi); } - break; + } else { + vscsi->state = ERR_DISCONNECTED; + vscsi->flags |= RESPONSE_Q_DOWN; + } + } +} - case WAIT_ENABLED: - case PART_UP_WAIT_ENAB: - case WAIT_IDLE: - case WAIT_CONNECTION: - case CONNECTED: - case SRP_PROCESSING: - vscsi->new_state = new_state; - break; +/** + * ibmvscsis_free_cmd_resources() - Free command resources + * @vscsi: Pointer to our adapter structure + * @cmd: Command which is not longer in use + * + * Must be called with interrupt lock held. + */ +static void ibmvscsis_free_cmd_resources(struct scsi_info *vscsi, + struct ibmvscsis_cmd *cmd) +{ + struct iu_entry *iue = cmd->iue; - default: - break; - } + switch (cmd->type) { + case TASK_MANAGEMENT: + case SCSI_CDB: + /* + * When the queue goes down this value is cleared, so it + * cannot be cleared in this general purpose function. + */ + if (vscsi->debit) + vscsi->debit -= 1; + break; + case ADAPTER_MAD: + vscsi->flags &= ~PROCESSING_MAD; + break; + case UNSET_TYPE: + break; + default: + dev_err(&vscsi->dev, "free_cmd_resources unknown type %d\n", + cmd->type); + break; } - pr_debug("Leaving post_disconnect: flags 0x%x, new_state 0x%x\n", - vscsi->flags, vscsi->new_state); + cmd->iue = NULL; + list_add_tail(&cmd->list, &vscsi->free_cmd); + srp_iu_put(iue); + + if (list_empty(&vscsi->active_q) && list_empty(&vscsi->schedule_q) && + list_empty(&vscsi->waiting_rsp) && (vscsi->flags & WAIT_FOR_IDLE)) { + vscsi->flags &= ~WAIT_FOR_IDLE; + complete(&vscsi->wait_idle); + } } /** @@ -863,10 +1007,6 @@ TRANS_EVENT)); break; - case PART_UP_WAIT_ENAB: - vscsi->state = WAIT_ENABLED; - break; - case SRP_PROCESSING: if ((vscsi->debit > 0) || !list_empty(&vscsi->schedule_q) || @@ -895,7 +1035,7 @@ } } - rc = vscsi->flags & SCHEDULE_DISCONNECT; + rc = vscsi->flags & SCHEDULE_DISCONNECT; pr_debug("Leaving trans_event: flags 0x%x, state 0x%hx, rc %ld\n", vscsi->flags, vscsi->state, rc); @@ -1066,16 +1206,28 @@ free_qs = true; switch (vscsi->state) { + case UNCONFIGURING: + ibmvscsis_free_command_q(vscsi); + dma_rmb(); + isync(); + if (vscsi->flags & CFG_SLEEPING) { + vscsi->flags &= ~CFG_SLEEPING; + complete(&vscsi->unconfig); + } + break; case ERR_DISCONNECT_RECONNECT: - ibmvscsis_reset_queue(vscsi, WAIT_CONNECTION); + ibmvscsis_reset_queue(vscsi); pr_debug("adapter_idle, disc_rec: flags 0x%x\n", vscsi->flags); break; case ERR_DISCONNECT: ibmvscsis_free_command_q(vscsi); - vscsi->flags &= ~DISCONNECT_SCHEDULED; + vscsi->flags &= ~(SCHEDULE_DISCONNECT | DISCONNECT_SCHEDULED); vscsi->flags |= RESPONSE_Q_DOWN; - vscsi->state = ERR_DISCONNECTED; + if (vscsi->tport.enabled) + vscsi->state = ERR_DISCONNECTED; + else + vscsi->state = WAIT_ENABLED; pr_debug("adapter_idle, disc: flags 0x%x, state 0x%hx\n", vscsi->flags, vscsi->state); break; @@ -1220,7 +1372,7 @@ * @iue: Information Unit containing the Adapter Info MAD request * * EXECUTION ENVIRONMENT: - * Interrupt adpater lock is held + * Interrupt adapter lock is held */ static long ibmvscsis_adapter_info(struct scsi_info *vscsi, struct iu_entry *iue) @@ -1239,7 +1391,7 @@ } info = dma_alloc_coherent(&vscsi->dma_dev->dev, sizeof(*info), &token, - GFP_KERNEL); + GFP_ATOMIC); if (!info) { dev_err(&vscsi->dev, "bad dma_alloc_coherent %p\n", iue->target); @@ -1291,7 +1443,7 @@ info->mad_version = cpu_to_be32(MAD_VERSION_1); info->os_type = cpu_to_be32(LINUX); memset(&info->port_max_txu[0], 0, sizeof(info->port_max_txu)); - info->port_max_txu[0] = cpu_to_be32(128 * PAGE_SIZE); + info->port_max_txu[0] = cpu_to_be32(MAX_TXU); dma_wmb(); rc = h_copy_rdma(sizeof(*info), vscsi->dds.window[LOCAL].liobn, @@ -1357,7 +1509,7 @@ } cap = dma_alloc_coherent(&vscsi->dma_dev->dev, olen, &token, - GFP_KERNEL); + GFP_ATOMIC); if (!cap) { dev_err(&vscsi->dev, "bad dma_alloc_coherent %p\n", iue->target); @@ -1606,8 +1758,6 @@ if (!(vscsi->flags & RESPONSE_Q_DOWN)) { list_for_each_entry_safe(cmd, nxt, &vscsi->waiting_rsp, list) { - pr_debug("send_messages cmd %p\n", cmd); - iue = cmd->iue; crq->valid = VALID_CMD_RESP_EL; @@ -1622,8 +1772,8 @@ be64_to_cpu(msg_hi), be64_to_cpu(cmd->rsp.tag)); - pr_debug("send_messages: tag 0x%llx, rc %ld\n", - be64_to_cpu(cmd->rsp.tag), rc); + pr_debug("send_messages: cmd %p, tag 0x%llx, rc %ld\n", + cmd, be64_to_cpu(cmd->rsp.tag), rc); /* if all ok free up the command element resources */ if (rc == H_SUCCESS) { @@ -1693,7 +1843,7 @@ * @crq: Pointer to the CRQ entry containing the MAD request * * EXECUTION ENVIRONMENT: - * Interrupt called with adapter lock held + * Interrupt, called with adapter lock held */ static long ibmvscsis_mad(struct scsi_info *vscsi, struct viosrp_crq *crq) { @@ -1747,14 +1897,7 @@ pr_debug("mad: type %d\n", be32_to_cpu(mad->type)); - if (be16_to_cpu(mad->length) < 0) { - dev_err(&vscsi->dev, "mad: length is < 0\n"); - ibmvscsis_post_disconnect(vscsi, - ERR_DISCONNECT_RECONNECT, 0); - rc = SRP_VIOLATION; - } else { - rc = ibmvscsis_process_mad(vscsi, iue); - } + rc = ibmvscsis_process_mad(vscsi, iue); pr_debug("mad: status %hd, rc %ld\n", be16_to_cpu(mad->status), rc); @@ -1866,7 +2009,7 @@ break; case H_PERMISSION: if (connection_broken(vscsi)) - flag_bits = RESPONSE_Q_DOWN | CLIENT_FAILED; + flag_bits = RESPONSE_Q_DOWN | CLIENT_FAILED; dev_err(&vscsi->dev, "login_rej: error copying to client, rc %ld\n", rc); ibmvscsis_post_disconnect(vscsi, ERR_DISCONNECT_RECONNECT, @@ -1934,6 +2077,8 @@ /* * Release the SCSI I_T Nexus to the emulated ibmvscsis Target Port */ + target_wait_for_sess_cmds(se_sess); + transport_deregister_session_configfs(se_sess); transport_deregister_session(se_sess); tport->ibmv_nexus = NULL; kfree(nexus); @@ -1978,7 +2123,7 @@ reason = SRP_LOGIN_REJ_MULTI_CHANNEL_UNSUPPORTED; else if (fmt->buffers & (~SUPPORTED_FORMATS)) reason = SRP_LOGIN_REJ_UNSUPPORTED_DESCRIPTOR_FMT; - else if ((fmt->buffers | SUPPORTED_FORMATS) == 0) + else if ((fmt->buffers & SUPPORTED_FORMATS) == 0) reason = SRP_LOGIN_REJ_UNSUPPORTED_DESCRIPTOR_FMT; if (vscsi->state == SRP_PROCESSING) @@ -2099,238 +2244,88 @@ queue_work(vscsi->work_q, &cmd->work); break; - case SRP_CMD: - pr_debug("srp_cmd tag: %llu (0x%llx)\n", srp->tag, - srp->tag); - cmd->rsp.tag = srp->tag; - vscsi->debit += 1; - cmd->type = SCSI_CDB; - /* - * We want to keep track of work waiting for - * the workqueue. - */ - list_add_tail(&cmd->list, &vscsi->schedule_q); - queue_work(vscsi->work_q, &cmd->work); - break; - - case SRP_I_LOGOUT: - rc = ibmvscsis_srp_i_logout(vscsi, cmd, crq); - break; - - case SRP_CRED_RSP: - case SRP_AER_RSP: - default: - ibmvscsis_free_cmd_resources(vscsi, cmd); - dev_err(&vscsi->dev, "invalid srp cmd, opcode %d\n", - (uint)srp->opcode); - ibmvscsis_post_disconnect(vscsi, - ERR_DISCONNECT_RECONNECT, 0); - break; - } - } else if (srp->opcode == SRP_LOGIN_REQ && vscsi->state == CONNECTED) { - rc = ibmvscsis_srp_login(vscsi, cmd, crq); - } else { - ibmvscsis_free_cmd_resources(vscsi, cmd); - dev_err(&vscsi->dev, "Invalid state %d to handle srp cmd\n", - vscsi->state); - ibmvscsis_post_disconnect(vscsi, ERR_DISCONNECT_RECONNECT, 0); - } -} - -/** - * ibmvscsis_ping_response() - Respond to a ping request - * @vscsi: Pointer to our adapter structure - * - * Let the client know that the server is alive and waiting on - * its native I/O stack. - * If any type of error occurs from the call to queue a ping - * response then the client is either not accepting or receiving - * interrupts. Disconnect with an error. - * - * EXECUTION ENVIRONMENT: - * Interrupt, interrupt lock held - */ -static long ibmvscsis_ping_response(struct scsi_info *vscsi) -{ - struct viosrp_crq *crq; - u64 buffer[2] = { 0, 0 }; - long rc; - - crq = (struct viosrp_crq *)&buffer; - crq->valid = VALID_CMD_RESP_EL; - crq->format = (u8)MESSAGE_IN_CRQ; - crq->status = PING_RESPONSE; - - rc = h_send_crq(vscsi->dds.unit_id, cpu_to_be64(buffer[MSG_HI]), - cpu_to_be64(buffer[MSG_LOW])); - - switch (rc) { - case H_SUCCESS: - break; - case H_CLOSED: - vscsi->flags |= CLIENT_FAILED; - case H_DROPPED: - vscsi->flags |= RESPONSE_Q_DOWN; - case H_REMOTE_PARM: - dev_err(&vscsi->dev, "ping_response: h_send_crq failed, rc %ld\n", - rc); - ibmvscsis_post_disconnect(vscsi, ERR_DISCONNECT_RECONNECT, 0); - break; - default: - dev_err(&vscsi->dev, "ping_response: h_send_crq returned unknown rc %ld\n", - rc); - ibmvscsis_post_disconnect(vscsi, ERR_DISCONNECT, 0); - break; - } - - return rc; -} - -/** - * ibmvscsis_handle_init_compl_msg() - Respond to an Init Complete Message - * @vscsi: Pointer to our adapter structure - * - * Must be called with interrupt lock held. - */ -static long ibmvscsis_handle_init_compl_msg(struct scsi_info *vscsi) -{ - long rc = ADAPT_SUCCESS; - - switch (vscsi->state) { - case NO_QUEUE: - case ERR_DISCONNECT: - case ERR_DISCONNECT_RECONNECT: - case ERR_DISCONNECTED: - case UNCONFIGURING: - case UNDEFINED: - rc = ERROR; - break; - - case WAIT_CONNECTION: - vscsi->state = CONNECTED; - break; - - case WAIT_IDLE: - case SRP_PROCESSING: - case CONNECTED: - case WAIT_ENABLED: - case PART_UP_WAIT_ENAB: - default: - rc = ERROR; - dev_err(&vscsi->dev, "init_msg: invalid state %d to get init compl msg\n", - vscsi->state); - ibmvscsis_post_disconnect(vscsi, ERR_DISCONNECT_RECONNECT, 0); - break; - } - - return rc; -} - -/** - * ibmvscsis_handle_init_msg() - Respond to an Init Message - * @vscsi: Pointer to our adapter structure - * - * Must be called with interrupt lock held. - */ -static long ibmvscsis_handle_init_msg(struct scsi_info *vscsi) -{ - long rc = ADAPT_SUCCESS; - - switch (vscsi->state) { - case WAIT_ENABLED: - vscsi->state = PART_UP_WAIT_ENAB; - break; - - case WAIT_CONNECTION: - rc = ibmvscsis_send_init_message(vscsi, INIT_COMPLETE_MSG); - switch (rc) { - case H_SUCCESS: - vscsi->state = CONNECTED; + case SRP_CMD: + pr_debug("srp_cmd tag: %llu (0x%llx)\n", srp->tag, + srp->tag); + cmd->rsp.tag = srp->tag; + vscsi->debit += 1; + cmd->type = SCSI_CDB; + /* + * We want to keep track of work waiting for + * the workqueue. + */ + list_add_tail(&cmd->list, &vscsi->schedule_q); + queue_work(vscsi->work_q, &cmd->work); break; - case H_PARAMETER: - dev_err(&vscsi->dev, "init_msg: failed to send, rc %ld\n", - rc); - ibmvscsis_post_disconnect(vscsi, ERR_DISCONNECT, 0); + case SRP_I_LOGOUT: + rc = ibmvscsis_srp_i_logout(vscsi, cmd, crq); break; - case H_DROPPED: - dev_err(&vscsi->dev, "init_msg: failed to send, rc %ld\n", - rc); - rc = ERROR; + case SRP_CRED_RSP: + case SRP_AER_RSP: + default: + ibmvscsis_free_cmd_resources(vscsi, cmd); + dev_err(&vscsi->dev, "invalid srp cmd, opcode %d\n", + (uint)srp->opcode); ibmvscsis_post_disconnect(vscsi, ERR_DISCONNECT_RECONNECT, 0); break; - - case H_CLOSED: - pr_warn("init_msg: failed to send, rc %ld\n", rc); - rc = 0; - break; } - break; - - case UNDEFINED: - rc = ERROR; - break; - - case UNCONFIGURING: - break; - - case PART_UP_WAIT_ENAB: - case CONNECTED: - case SRP_PROCESSING: - case WAIT_IDLE: - case NO_QUEUE: - case ERR_DISCONNECT: - case ERR_DISCONNECT_RECONNECT: - case ERR_DISCONNECTED: - default: - rc = ERROR; - dev_err(&vscsi->dev, "init_msg: invalid state %d to get init msg\n", + } else if (srp->opcode == SRP_LOGIN_REQ && vscsi->state == CONNECTED) { + rc = ibmvscsis_srp_login(vscsi, cmd, crq); + } else { + ibmvscsis_free_cmd_resources(vscsi, cmd); + dev_err(&vscsi->dev, "Invalid state %d to handle srp cmd\n", vscsi->state); ibmvscsis_post_disconnect(vscsi, ERR_DISCONNECT_RECONNECT, 0); - break; } - - return rc; } /** - * ibmvscsis_init_msg() - Respond to an init message + * ibmvscsis_ping_response() - Respond to a ping request * @vscsi: Pointer to our adapter structure - * @crq: Pointer to CRQ element containing the Init Message + * + * Let the client know that the server is alive and waiting on + * its native I/O stack. + * If any type of error occurs from the call to queue a ping + * response then the client is either not accepting or receiving + * interrupts. Disconnect with an error. * * EXECUTION ENVIRONMENT: * Interrupt, interrupt lock held */ -static long ibmvscsis_init_msg(struct scsi_info *vscsi, struct viosrp_crq *crq) +static long ibmvscsis_ping_response(struct scsi_info *vscsi) { - long rc = ADAPT_SUCCESS; + struct viosrp_crq *crq; + u64 buffer[2] = { 0, 0 }; + long rc; - pr_debug("init_msg: state 0x%hx\n", vscsi->state); + crq = (struct viosrp_crq *)&buffer; + crq->valid = VALID_CMD_RESP_EL; + crq->format = (u8)MESSAGE_IN_CRQ; + crq->status = PING_RESPONSE; - rc = h_vioctl(vscsi->dds.unit_id, H_GET_PARTNER_INFO, - (u64)vscsi->map_ioba | ((u64)PAGE_SIZE << 32), 0, 0, 0, - 0); - if (rc == H_SUCCESS) { - vscsi->client_data.partition_number = - be64_to_cpu(*(u64 *)vscsi->map_buf); - pr_debug("init_msg, part num %d\n", - vscsi->client_data.partition_number); - } else { - pr_debug("init_msg h_vioctl rc %ld\n", rc); - rc = ADAPT_SUCCESS; - } + rc = h_send_crq(vscsi->dds.unit_id, cpu_to_be64(buffer[MSG_HI]), + cpu_to_be64(buffer[MSG_LOW])); - if (crq->format == INIT_MSG) { - rc = ibmvscsis_handle_init_msg(vscsi); - } else if (crq->format == INIT_COMPLETE_MSG) { - rc = ibmvscsis_handle_init_compl_msg(vscsi); - } else { - rc = ERROR; - dev_err(&vscsi->dev, "init_msg: invalid format %d\n", - (uint)crq->format); + switch (rc) { + case H_SUCCESS: + break; + case H_CLOSED: + vscsi->flags |= CLIENT_FAILED; + case H_DROPPED: + vscsi->flags |= RESPONSE_Q_DOWN; + case H_REMOTE_PARM: + dev_err(&vscsi->dev, "ping_response: h_send_crq failed, rc %ld\n", + rc); ibmvscsis_post_disconnect(vscsi, ERR_DISCONNECT_RECONNECT, 0); + break; + default: + dev_err(&vscsi->dev, "ping_response: h_send_crq returned unknown rc %ld\n", + rc); + ibmvscsis_post_disconnect(vscsi, ERR_DISCONNECT, 0); + break; } return rc; @@ -2391,7 +2386,7 @@ break; case VALID_TRANS_EVENT: - rc = ibmvscsis_trans_event(vscsi, crq); + rc = ibmvscsis_trans_event(vscsi, crq); break; case VALID_INIT_MSG: @@ -2522,7 +2517,6 @@ dev_err(&vscsi->dev, "0x%llx: parsing SRP descriptor table failed.\n", srp->tag); goto fail; - return; } cmd->rsp.sol_not = srp->sol_not; @@ -2554,15 +2548,15 @@ srp->lun.scsi_lun[0] &= 0x3f; - pr_debug("calling submit_cmd, se_cmd %p, lun 0x%llx, cdb 0x%x, attr:%d\n", - &cmd->se_cmd, scsilun_to_int(&srp->lun), (int)srp->cdb[0], - attr); - rc = target_submit_cmd(&cmd->se_cmd, nexus->se_sess, srp->cdb, cmd->sense_buf, scsilun_to_int(&srp->lun), data_len, attr, dir, 0); if (rc) { dev_err(&vscsi->dev, "target_submit_cmd failed, rc %d\n", rc); + spin_lock_bh(&vscsi->intr_lock); + list_del(&cmd->list); + ibmvscsis_free_cmd_resources(vscsi, cmd); + spin_unlock_bh(&vscsi->intr_lock); goto fail; } return; @@ -2642,6 +2636,9 @@ if (rc) { dev_err(&vscsi->dev, "target_submit_tmr failed, rc %d\n", rc); + spin_lock_bh(&vscsi->intr_lock); + list_del(&cmd->list); + spin_unlock_bh(&vscsi->intr_lock); cmd->se_cmd.se_tmr_req->response = TMR_FUNCTION_REJECTED; } @@ -2790,36 +2787,6 @@ } /** - * ibmvscsis_check_q() - Helper function to Check Init Message Valid - * @vscsi: Pointer to our adapter structure - * - * Checks if a initialize message was queued by the initiatior - * while the timing window was open. This function is called from - * probe after the CRQ is created and interrupts are enabled. - * It would only be used by adapters who wait for some event before - * completing the init handshake with the client. For ibmvscsi, this - * event is waiting for the port to be enabled. - * - * EXECUTION ENVIRONMENT: - * Process level only, interrupt lock held - */ -static long ibmvscsis_check_q(struct scsi_info *vscsi) -{ - uint format; - long rc; - - rc = ibmvscsis_check_init_msg(vscsi, &format); - if (rc) - ibmvscsis_post_disconnect(vscsi, ERR_DISCONNECT_RECONNECT, 0); - else if (format == UNUSED_FORMAT) - vscsi->state = WAIT_ENABLED; - else - vscsi->state = PART_UP_WAIT_ENAB; - - return rc; -} - -/** * ibmvscsis_enable_change_state() - Set new state based on enabled status * @vscsi: Pointer to our adapter structure * @@ -2830,77 +2797,19 @@ */ static long ibmvscsis_enable_change_state(struct scsi_info *vscsi) { + int bytes; long rc = ADAPT_SUCCESS; -handle_state_change: - switch (vscsi->state) { - case WAIT_ENABLED: - rc = ibmvscsis_send_init_message(vscsi, INIT_MSG); - switch (rc) { - case H_SUCCESS: - case H_DROPPED: - case H_CLOSED: - vscsi->state = WAIT_CONNECTION; - rc = ADAPT_SUCCESS; - break; - - case H_PARAMETER: - break; - - case H_HARDWARE: - break; - - default: - vscsi->state = UNDEFINED; - rc = H_HARDWARE; - break; - } - break; - case PART_UP_WAIT_ENAB: - rc = ibmvscsis_send_init_message(vscsi, INIT_COMPLETE_MSG); - switch (rc) { - case H_SUCCESS: - vscsi->state = CONNECTED; - rc = ADAPT_SUCCESS; - break; - - case H_DROPPED: - case H_CLOSED: - vscsi->state = WAIT_ENABLED; - goto handle_state_change; - - case H_PARAMETER: - break; - - case H_HARDWARE: - break; - - default: - rc = H_HARDWARE; - break; - } - break; - - case WAIT_CONNECTION: - case WAIT_IDLE: - case SRP_PROCESSING: - case CONNECTED: - rc = ADAPT_SUCCESS; - break; - /* should not be able to get here */ - case UNCONFIGURING: - rc = ERROR; - vscsi->state = UNDEFINED; - break; + bytes = vscsi->cmd_q.size * PAGE_SIZE; + rc = h_reg_crq(vscsi->dds.unit_id, vscsi->cmd_q.crq_token, bytes); + if (rc == H_CLOSED || rc == H_SUCCESS) { + vscsi->state = WAIT_CONNECTION; + rc = ibmvscsis_establish_new_q(vscsi); + } - /* driver should never allow this to happen */ - case ERR_DISCONNECT: - case ERR_DISCONNECT_RECONNECT: - default: - dev_err(&vscsi->dev, "in invalid state %d during enable_change_state\n", - vscsi->state); - rc = ADAPT_SUCCESS; - break; + if (rc != ADAPT_SUCCESS) { + vscsi->state = ERR_DISCONNECTED; + vscsi->flags |= RESPONSE_Q_DOWN; } return rc; @@ -2920,7 +2829,6 @@ */ static long ibmvscsis_create_command_q(struct scsi_info *vscsi, int num_cmds) { - long rc = 0; int pages; struct vio_dev *vdev = vscsi->dma_dev; @@ -2944,22 +2852,7 @@ return -ENOMEM; } - rc = h_reg_crq(vscsi->dds.unit_id, vscsi->cmd_q.crq_token, PAGE_SIZE); - if (rc) { - if (rc == H_CLOSED) { - vscsi->state = WAIT_ENABLED; - rc = 0; - } else { - dma_unmap_single(&vdev->dev, vscsi->cmd_q.crq_token, - PAGE_SIZE, DMA_BIDIRECTIONAL); - free_page((unsigned long)vscsi->cmd_q.base_addr); - rc = -ENODEV; - } - } else { - vscsi->state = WAIT_ENABLED; - } - - return rc; + return 0; } /** @@ -3142,8 +3035,6 @@ long tx_len; long rc = 0; - pr_debug("rdma: dir %d, bytes 0x%x\n", dir, bytes); - if (bytes == 0) return 0; @@ -3195,9 +3086,6 @@ /* write to client */ struct srp_cmd *srp = (struct srp_cmd *)iue->sbuf->buf; - if (!READ_CMD(srp->cdb)) - print_hex_dump_bytes(" data:", DUMP_PREFIX_NONE, - sg_virt(sgp), buf_len); /* The h_copy_rdma will cause phyp, running in another * partition, to read memory, so we need to make sure * the data has been written out, hence these syncs. @@ -3282,7 +3170,7 @@ /* * if we are in a path where we are waiting for all pending commands * to complete because we received a transport event and anything in - * the command queue is for a new connection, do nothing + * the command queue is for a new connection, do nothing */ if (TARGET_STOP(vscsi)) { vio_enable_interrupts(vscsi->dma_dev); @@ -3322,14 +3210,11 @@ rc = ibmvscsis_trans_event(vscsi, crq); } else if (vscsi->flags & TRANS_EVENT) { /* - * if a tranport event has occurred leave + * if a transport event has occurred leave * everything but transport events on the queue - */ - pr_debug("handle_crq, ignoring\n"); - - /* + * * need to decrement the queue index so we can - * look at the elment again + * look at the element again */ if (vscsi->cmd_q.index) vscsi->cmd_q.index -= 1; @@ -3393,7 +3278,8 @@ INIT_LIST_HEAD(&vscsi->waiting_rsp); INIT_LIST_HEAD(&vscsi->active_q); - snprintf(vscsi->tport.tport_name, 256, "%s", dev_name(&vdev->dev)); + snprintf(vscsi->tport.tport_name, IBMVSCSIS_NAMELEN, "%s", + dev_name(&vdev->dev)); pr_debug("probe tport_name: %s\n", vscsi->tport.tport_name); @@ -3408,6 +3294,9 @@ strncat(vscsi->eye, vdev->name, MAX_EYE); vscsi->dds.unit_id = vdev->unit_address; + strncpy(vscsi->dds.partition_name, partition_name, + sizeof(vscsi->dds.partition_name)); + vscsi->dds.partition_num = partition_number; spin_lock_bh(&ibmvscsis_dev_lock); list_add_tail(&vscsi->list, &ibmvscsis_dev_list); @@ -3483,6 +3372,7 @@ (unsigned long)vscsi); init_completion(&vscsi->wait_idle); + init_completion(&vscsi->unconfig); snprintf(wq_name, 24, "ibmvscsis%s", dev_name(&vdev->dev)); vscsi->work_q = create_workqueue(wq_name); @@ -3499,31 +3389,12 @@ goto destroy_WQ; } - spin_lock_bh(&vscsi->intr_lock); - vio_enable_interrupts(vdev); - if (rc) { - dev_err(&vscsi->dev, "enabling interrupts failed, rc %d\n", rc); - rc = -ENODEV; - spin_unlock_bh(&vscsi->intr_lock); - goto free_irq; - } - - if (ibmvscsis_check_q(vscsi)) { - rc = ERROR; - dev_err(&vscsi->dev, "probe: check_q failed, rc %d\n", rc); - spin_unlock_bh(&vscsi->intr_lock); - goto disable_interrupt; - } - spin_unlock_bh(&vscsi->intr_lock); + vscsi->state = WAIT_ENABLED; dev_set_drvdata(&vdev->dev, vscsi); return 0; -disable_interrupt: - vio_disable_interrupts(vdev); -free_irq: - free_irq(vdev->irq, vscsi); destroy_WQ: destroy_workqueue(vscsi->work_q); unmap_buf: @@ -3557,10 +3428,11 @@ pr_debug("remove (%s)\n", dev_name(&vscsi->dma_dev->dev)); - /* - * TBD: Need to handle if there are commands on the waiting_rsp q - * Actually, can there still be cmds outstanding to tcm? - */ + spin_lock_bh(&vscsi->intr_lock); + ibmvscsis_post_disconnect(vscsi, UNCONFIGURING, 0); + vscsi->flags |= CFG_SLEEPING; + spin_unlock_bh(&vscsi->intr_lock); + wait_for_completion(&vscsi->unconfig); vio_disable_interrupts(vdev); free_irq(vdev->irq, vscsi); @@ -3569,7 +3441,6 @@ DMA_BIDIRECTIONAL); kfree(vscsi->map_buf); tasklet_kill(&vscsi->work_task); - ibmvscsis_unregister_command_q(vscsi); ibmvscsis_destroy_command_q(vscsi); ibmvscsis_freetimer(vscsi); ibmvscsis_free_cmds(vscsi); @@ -3623,7 +3494,7 @@ num = of_get_property(rootdn, "ibm,partition-no", NULL); if (num) - partition_number = *num; + partition_number = of_read_number(num, 1); of_node_put(rootdn); @@ -3693,8 +3564,6 @@ se_cmd); struct scsi_info *vscsi = cmd->adapter; - pr_debug("release_cmd %p, flags %d\n", se_cmd, cmd->flags); - spin_lock_bh(&vscsi->intr_lock); /* Remove from active_q */ list_del(&cmd->list); @@ -3715,14 +3584,11 @@ struct iu_entry *iue = cmd->iue; int rc; - pr_debug("write_pending, se_cmd %p, length 0x%x\n", - se_cmd, se_cmd->data_length); - rc = srp_transfer_data(cmd, &vio_iu(iue)->srp.cmd, ibmvscsis_rdma, 1, 1); if (rc) { pr_err("srp_transfer_data() failed: %d\n", rc); - return -EAGAIN; + return -EIO; } /* * We now tell TCM to add this WRITE CDB directly into the TCM storage @@ -3756,9 +3622,6 @@ uint len = 0; int rc; - pr_debug("queue_data_in, se_cmd %p, length 0x%x\n", - se_cmd, se_cmd->data_length); - rc = srp_transfer_data(cmd, &vio_iu(iue)->srp.cmd, ibmvscsis_rdma, 1, 1); if (rc) { @@ -3926,18 +3789,22 @@ } if (tmp) { - tport->enabled = true; spin_lock_bh(&vscsi->intr_lock); + tport->enabled = true; lrc = ibmvscsis_enable_change_state(vscsi); if (lrc) pr_err("enable_change_state failed, rc %ld state %d\n", lrc, vscsi->state); spin_unlock_bh(&vscsi->intr_lock); } else { + spin_lock_bh(&vscsi->intr_lock); tport->enabled = false; + /* This simulates the server going down */ + ibmvscsis_post_disconnect(vscsi, ERR_DISCONNECT, 0); + spin_unlock_bh(&vscsi->intr_lock); } - pr_debug("tpg_enable_store, state %d\n", vscsi->state); + pr_debug("tpg_enable_store, tmp %ld, state %d\n", tmp, vscsi->state); return count; } @@ -3951,6 +3818,7 @@ static const struct target_core_fabric_ops ibmvscsis_ops = { .module = THIS_MODULE, .name = "ibmvscsis", + .max_data_sg_nents = MAX_TXU / PAGE_SIZE, .get_fabric_name = ibmvscsis_get_fabric_name, .tpg_get_wwn = ibmvscsis_get_fabric_wwn, .tpg_get_tag = ibmvscsis_get_tag, @@ -4006,10 +3874,10 @@ ATTRIBUTE_GROUPS(ibmvscsis_dev); static struct class ibmvscsis_class = { - .name = "ibmvscsis", - .dev_release = ibmvscsis_dev_release, - .class_attrs = ibmvscsis_class_attrs, - .dev_groups = ibmvscsis_dev_groups, + .name = "ibmvscsis", + .dev_release = ibmvscsis_dev_release, + .class_attrs = ibmvscsis_class_attrs, + .dev_groups = ibmvscsis_dev_groups, }; static struct vio_device_id ibmvscsis_device_table[] = { --- linux-4.8.0.orig/drivers/scsi/ibmvscsi_tgt/ibmvscsi_tgt.h +++ linux-4.8.0/drivers/scsi/ibmvscsi_tgt/ibmvscsi_tgt.h @@ -204,8 +204,6 @@ struct list_head waiting_rsp; #define NO_QUEUE 0x00 #define WAIT_ENABLED 0X01 - /* driver has received an initialize command */ -#define PART_UP_WAIT_ENAB 0x02 #define WAIT_CONNECTION 0x04 /* have established a connection */ #define CONNECTED 0x08 @@ -259,6 +257,8 @@ #define SCHEDULE_DISCONNECT 0x00400 /* disconnect handler is scheduled */ #define DISCONNECT_SCHEDULED 0x00800 + /* remove function is sleeping */ +#define CFG_SLEEPING 0x01000 u32 flags; /* adapter lock */ spinlock_t intr_lock; @@ -287,6 +287,7 @@ struct workqueue_struct *work_q; struct completion wait_idle; + struct completion unconfig; struct device dev; struct vio_dev *dma_dev; struct srp_target target; --- linux-4.8.0.orig/drivers/scsi/iscsi_tcp.c +++ linux-4.8.0/drivers/scsi/iscsi_tcp.c @@ -599,9 +599,9 @@ iscsi_sw_tcp_conn_restore_callbacks(conn); sock_put(sock->sk); - spin_lock_bh(&session->frwd_lock); + spin_lock_bh(&session->lock); tcp_sw_conn->sock = NULL; - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); sockfd_put(sock); } @@ -673,10 +673,10 @@ if (err) goto free_socket; - spin_lock_bh(&session->frwd_lock); + spin_lock_bh(&session->lock); /* bind iSCSI connection and socket */ tcp_sw_conn->sock = sock; - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); /* setup Socket parameters */ sk = sock->sk; @@ -737,9 +737,9 @@ case ISCSI_PARAM_CONN_PORT: case ISCSI_PARAM_CONN_ADDRESS: case ISCSI_PARAM_LOCAL_PORT: - spin_lock_bh(&conn->session->frwd_lock); + spin_lock_bh(&conn->session->lock); if (!tcp_sw_conn || !tcp_sw_conn->sock) { - spin_unlock_bh(&conn->session->frwd_lock); + spin_unlock_bh(&conn->session->lock); return -ENOTCONN; } if (param == ISCSI_PARAM_LOCAL_PORT) @@ -748,7 +748,7 @@ else rc = kernel_getpeername(tcp_sw_conn->sock, (struct sockaddr *)&addr, &len); - spin_unlock_bh(&conn->session->frwd_lock); + spin_unlock_bh(&conn->session->lock); if (rc) return rc; @@ -777,23 +777,23 @@ if (!session) return -ENOTCONN; - spin_lock_bh(&session->frwd_lock); + spin_lock_bh(&session->lock); conn = session->leadconn; if (!conn) { - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); return -ENOTCONN; } tcp_conn = conn->dd_data; tcp_sw_conn = tcp_conn->dd_data; if (!tcp_sw_conn->sock) { - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); return -ENOTCONN; } rc = kernel_getsockname(tcp_sw_conn->sock, (struct sockaddr *)&addr, &len); - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); if (rc) return rc; --- linux-4.8.0.orig/drivers/scsi/libfc/fc_lport.c +++ linux-4.8.0/drivers/scsi/libfc/fc_lport.c @@ -308,7 +308,7 @@ fc_stats = &lport->host_stats; memset(fc_stats, 0, sizeof(struct fc_host_statistics)); - fc_stats->seconds_since_last_reset = (lport->boot_time - jiffies) / HZ; + fc_stats->seconds_since_last_reset = (jiffies - lport->boot_time) / HZ; for_each_possible_cpu(cpu) { struct fc_stats *stats; --- linux-4.8.0.orig/drivers/scsi/libiscsi.c +++ linux-4.8.0/drivers/scsi/libiscsi.c @@ -477,7 +477,7 @@ * iscsi_free_task - free a task * @task: iscsi cmd task * - * Must be called with session back_lock. + * Must be called with session lock. * This function returns the scsi command to scsi-ml or cleans * up mgmt tasks then returns the task to the pool. */ @@ -531,10 +531,9 @@ { struct iscsi_session *session = task->conn->session; - /* regular RX path uses back_lock */ - spin_lock_bh(&session->back_lock); + spin_lock_bh(&session->lock); __iscsi_put_task(task); - spin_unlock_bh(&session->back_lock); + spin_unlock_bh(&session->lock); } EXPORT_SYMBOL_GPL(iscsi_put_task); @@ -543,7 +542,7 @@ * @task: iscsi cmd task * @state: state to complete task with * - * Must be called with session back_lock. + * Must be called with session lock. */ static void iscsi_complete_task(struct iscsi_task *task, int state) { @@ -582,7 +581,7 @@ * This is used when drivers do not need or cannot perform * lower level pdu processing. * - * Called with session back_lock + * Called with session lock */ void iscsi_complete_scsi_task(struct iscsi_task *task, uint32_t exp_cmdsn, uint32_t max_cmdsn) @@ -599,7 +598,7 @@ /* - * session back_lock must be held and if not called for a task that is + * session lock must be held and if not called for a task that is * still pending or from the xmit thread, then xmit thread must * be suspended. */ @@ -639,10 +638,7 @@ scsi_in(sc)->resid = scsi_in(sc)->length; } - /* regular RX path uses back_lock */ - spin_lock_bh(&conn->session->back_lock); iscsi_complete_task(task, state); - spin_unlock_bh(&conn->session->back_lock); } static int iscsi_prep_mgmt_task(struct iscsi_conn *conn, @@ -790,10 +786,7 @@ return task; free_task: - /* regular RX path uses back_lock */ - spin_lock_bh(&session->back_lock); __iscsi_put_task(task); - spin_unlock_bh(&session->back_lock); return NULL; } @@ -804,10 +797,10 @@ struct iscsi_session *session = conn->session; int err = 0; - spin_lock_bh(&session->frwd_lock); + spin_lock_bh(&session->lock); if (!__iscsi_conn_send_pdu(conn, hdr, data, data_size)) err = -EPERM; - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); return err; } EXPORT_SYMBOL_GPL(iscsi_conn_send_pdu); @@ -1071,19 +1064,14 @@ if (opcode != ISCSI_OP_NOOP_OUT) return 0; - if (rejected_pdu.itt == cpu_to_be32(ISCSI_RESERVED_TAG)) { + if (rejected_pdu.itt == cpu_to_be32(ISCSI_RESERVED_TAG)) /* * nop-out in response to target's nop-out rejected. * Just resend. */ - /* In RX path we are under back lock */ - spin_unlock(&conn->session->back_lock); - spin_lock(&conn->session->frwd_lock); iscsi_send_nopout(conn, (struct iscsi_nopin*)&rejected_pdu); - spin_unlock(&conn->session->frwd_lock); - spin_lock(&conn->session->back_lock); - } else { + else { struct iscsi_task *task; /* * Our nop as ping got dropped. We know the target @@ -1119,7 +1107,7 @@ * This should be used for mgmt tasks like login and nops, or if * the LDD's itt space does not include the session age. * - * The session back_lock must be held. + * The session lock must be held. */ struct iscsi_task *iscsi_itt_to_task(struct iscsi_conn *conn, itt_t itt) { @@ -1148,7 +1136,7 @@ * @datalen: len of data buffer * * Completes pdu processing by freeing any resources allocated at - * queuecommand or send generic. session back_lock must be held and verify + * queuecommand or send generic. session lock must be held and verify * itt must have been called. */ int __iscsi_complete_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr, @@ -1185,12 +1173,7 @@ if (hdr->ttt == cpu_to_be32(ISCSI_RESERVED_TAG)) break; - /* In RX path we are under back lock */ - spin_unlock(&session->back_lock); - spin_lock(&session->frwd_lock); iscsi_send_nopout(conn, (struct iscsi_nopin*)hdr); - spin_unlock(&session->frwd_lock); - spin_lock(&session->back_lock); break; case ISCSI_OP_REJECT: rc = iscsi_handle_reject(conn, hdr, data, datalen); @@ -1297,9 +1280,9 @@ { int rc; - spin_lock(&conn->session->back_lock); + spin_lock(&conn->session->lock); rc = __iscsi_complete_pdu(conn, hdr, data, datalen); - spin_unlock(&conn->session->back_lock); + spin_unlock(&conn->session->lock); return rc; } EXPORT_SYMBOL_GPL(iscsi_complete_pdu); @@ -1343,7 +1326,7 @@ * * This should be used for cmd tasks. * - * The session back_lock must be held. + * The session lock must be held. */ struct iscsi_task *iscsi_itt_to_ctask(struct iscsi_conn *conn, itt_t itt) { @@ -1373,15 +1356,15 @@ struct iscsi_conn *conn; struct device *dev; - spin_lock_bh(&session->frwd_lock); + spin_lock_bh(&session->lock); conn = session->leadconn; if (session->state == ISCSI_STATE_TERMINATE || !conn) { - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); return; } dev = get_device(&conn->cls_conn->dev); - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); if (!dev) return; /* @@ -1401,15 +1384,15 @@ { struct iscsi_session *session = conn->session; - spin_lock_bh(&session->frwd_lock); + spin_lock_bh(&session->lock); if (session->state == ISCSI_STATE_FAILED) { - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); return; } if (conn->stop_stage == 0) session->state = ISCSI_STATE_FAILED; - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx); set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_rx); @@ -1443,18 +1426,15 @@ return -ENODATA; __iscsi_get_task(task); - spin_unlock_bh(&conn->session->frwd_lock); + spin_unlock_bh(&conn->session->lock); rc = conn->session->tt->xmit_task(task); - spin_lock_bh(&conn->session->frwd_lock); + spin_lock_bh(&conn->session->lock); if (!rc) { /* done with this task */ task->last_xfer = jiffies; conn->task = NULL; } - /* regular RX path uses back_lock */ - spin_lock(&conn->session->back_lock); __iscsi_put_task(task); - spin_unlock(&conn->session->back_lock); return rc; } @@ -1463,7 +1443,7 @@ * @task: task to requeue * * LLDs that need to run a task from the session workqueue should call - * this. The session frwd_lock must be held. This should only be called + * this. The session lock must be held. This should only be called * by software drivers. */ void iscsi_requeue_task(struct iscsi_task *task) @@ -1494,10 +1474,10 @@ struct iscsi_task *task; int rc = 0; - spin_lock_bh(&conn->session->frwd_lock); + spin_lock_bh(&conn->session->lock); if (test_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx)) { ISCSI_DBG_SESSION(conn->session, "Tx suspended!\n"); - spin_unlock_bh(&conn->session->frwd_lock); + spin_unlock_bh(&conn->session->lock); return -ENODATA; } @@ -1518,10 +1498,7 @@ struct iscsi_task, running); list_del_init(&conn->task->running); if (iscsi_prep_mgmt_task(conn, conn->task)) { - /* regular RX path uses back_lock */ - spin_lock_bh(&conn->session->back_lock); __iscsi_put_task(conn->task); - spin_unlock_bh(&conn->session->back_lock); conn->task = NULL; continue; } @@ -1583,11 +1560,11 @@ if (!list_empty(&conn->mgmtqueue)) goto check_mgmt; } - spin_unlock_bh(&conn->session->frwd_lock); + spin_unlock_bh(&conn->session->lock); return -ENODATA; done: - spin_unlock_bh(&conn->session->frwd_lock); + spin_unlock_bh(&conn->session->lock); return rc; } @@ -1657,7 +1634,7 @@ cls_session = starget_to_session(scsi_target(sc->device)); session = cls_session->dd_data; - spin_lock_bh(&session->frwd_lock); + spin_lock_bh(&session->lock); reason = iscsi_session_chkready(cls_session); if (reason) { @@ -1743,13 +1720,13 @@ } session->queued_cmdsn++; - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); return 0; prepd_reject: iscsi_complete_task(task, ISCSI_TASK_REQUEUE_SCSIQ); reject: - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); ISCSI_DBG_SESSION(session, "cmd 0x%x rejected (%d)\n", sc->cmnd[0], reason); return SCSI_MLQUEUE_TARGET_BUSY; @@ -1757,7 +1734,7 @@ prepd_fault: iscsi_complete_task(task, ISCSI_TASK_REQUEUE_SCSIQ); fault: - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); ISCSI_DBG_SESSION(session, "iscsi: cmd 0x%x is not queued (%d)\n", sc->cmnd[0], reason); if (!scsi_bidi_cmnd(sc)) @@ -1786,14 +1763,14 @@ struct iscsi_conn *conn = (struct iscsi_conn *)data; struct iscsi_session *session = conn->session; - spin_lock(&session->frwd_lock); + spin_lock(&session->lock); if (conn->tmf_state == TMF_QUEUED) { conn->tmf_state = TMF_TIMEDOUT; ISCSI_DBG_EH(session, "tmf timedout\n"); /* unblock eh_abort() */ wake_up(&conn->ehwait); } - spin_unlock(&session->frwd_lock); + spin_unlock(&session->lock); } static int iscsi_exec_task_mgmt_fn(struct iscsi_conn *conn, @@ -1806,10 +1783,10 @@ task = __iscsi_conn_send_pdu(conn, (struct iscsi_hdr *)hdr, NULL, 0); if (!task) { - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); iscsi_conn_printk(KERN_ERR, conn, "Could not send TMF.\n"); iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED); - spin_lock_bh(&session->frwd_lock); + spin_lock_bh(&session->lock); return -EPERM; } conn->tmfcmd_pdus_cnt++; @@ -1819,7 +1796,7 @@ add_timer(&conn->tmf_timer); ISCSI_DBG_EH(session, "tmf set timeout\n"); - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); mutex_unlock(&session->eh_mutex); /* @@ -1838,7 +1815,7 @@ del_timer_sync(&conn->tmf_timer); mutex_lock(&session->eh_mutex); - spin_lock_bh(&session->frwd_lock); + spin_lock_bh(&session->lock); /* if the session drops it will clean up the task */ if (age != session->age || session->state != ISCSI_STATE_LOGGED_IN) @@ -1874,7 +1851,7 @@ * iscsi_suspend_queue - suspend iscsi_queuecommand * @conn: iscsi conn to stop queueing IO on * - * This grabs the session frwd_lock to make sure no one is in + * This grabs the session lock to make sure no one is in * xmit_task/queuecommand, and then sets suspend to prevent * new commands from being queued. This only needs to be called * by offload drivers that need to sync a path like ep disconnect @@ -1883,9 +1860,9 @@ */ void iscsi_suspend_queue(struct iscsi_conn *conn) { - spin_lock_bh(&conn->session->frwd_lock); + spin_lock_bh(&conn->session->lock); set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx); - spin_unlock_bh(&conn->session->frwd_lock); + spin_unlock_bh(&conn->session->lock); } EXPORT_SYMBOL_GPL(iscsi_suspend_queue); @@ -1944,7 +1921,7 @@ ISCSI_DBG_EH(session, "scsi cmd %p timedout\n", sc); - spin_lock(&session->frwd_lock); + spin_lock(&session->lock); task = (struct iscsi_task *)sc->SCp.ptr; if (!task) { /* @@ -2058,7 +2035,7 @@ done: if (task) task->last_timeout = jiffies; - spin_unlock(&session->frwd_lock); + spin_unlock(&session->lock); ISCSI_DBG_EH(session, "return %s\n", rc == BLK_EH_RESET_TIMER ? "timer reset" : "nh"); return rc; @@ -2070,7 +2047,7 @@ struct iscsi_session *session = conn->session; unsigned long recv_timeout, next_timeout = 0, last_recv; - spin_lock(&session->frwd_lock); + spin_lock(&session->lock); if (session->state != ISCSI_STATE_LOGGED_IN) goto done; @@ -2087,7 +2064,7 @@ "last ping %lu, now %lu\n", conn->ping_timeout, conn->recv_timeout, last_recv, conn->last_ping, jiffies); - spin_unlock(&session->frwd_lock); + spin_unlock(&session->lock); iscsi_conn_failure(conn, ISCSI_ERR_NOP_TIMEDOUT); return; } @@ -2105,7 +2082,7 @@ ISCSI_DBG_CONN(conn, "Setting next tmo %lu\n", next_timeout); mod_timer(&conn->transport_timer, next_timeout); done: - spin_unlock(&session->frwd_lock); + spin_unlock(&session->lock); } static void iscsi_prep_abort_task_pdu(struct iscsi_task *task, @@ -2135,7 +2112,7 @@ ISCSI_DBG_EH(session, "aborting sc %p\n", sc); mutex_lock(&session->eh_mutex); - spin_lock_bh(&session->frwd_lock); + spin_lock_bh(&session->lock); /* * if session was ISCSI_STATE_IN_RECOVERY then we may not have * got the command. @@ -2143,7 +2120,7 @@ if (!sc->SCp.ptr) { ISCSI_DBG_EH(session, "sc never reached iscsi layer or " "it completed.\n"); - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); mutex_unlock(&session->eh_mutex); return SUCCESS; } @@ -2154,7 +2131,7 @@ */ if (!session->leadconn || session->state != ISCSI_STATE_LOGGED_IN || sc->SCp.phase != session->age) { - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); mutex_unlock(&session->eh_mutex); ISCSI_DBG_EH(session, "failing abort due to dropped " "session.\n"); @@ -2193,7 +2170,7 @@ switch (conn->tmf_state) { case TMF_SUCCESS: - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); /* * stop tx side incase the target had sent a abort rsp but * the initiator was still writing out data. @@ -2204,15 +2181,15 @@ * good and have never sent us a successful tmf response * then sent more data for the cmd. */ - spin_lock_bh(&session->frwd_lock); + spin_lock_bh(&session->lock); fail_scsi_task(task, DID_ABORT); conn->tmf_state = TMF_INITIAL; memset(hdr, 0, sizeof(*hdr)); - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); iscsi_start_tx(conn); goto success_unlocked; case TMF_TIMEDOUT: - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); iscsi_conn_failure(conn, ISCSI_ERR_SCSI_EH_SESSION_RST); goto failed_unlocked; case TMF_NOT_FOUND: @@ -2231,7 +2208,7 @@ } success: - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); success_unlocked: ISCSI_DBG_EH(session, "abort success [sc %p itt 0x%x]\n", sc, task->itt); @@ -2239,7 +2216,7 @@ return SUCCESS; failed: - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); failed_unlocked: ISCSI_DBG_EH(session, "abort failed [sc %p itt 0x%x]\n", sc, task ? task->itt : 0); @@ -2273,7 +2250,7 @@ sc->device->lun); mutex_lock(&session->eh_mutex); - spin_lock_bh(&session->frwd_lock); + spin_lock_bh(&session->lock); /* * Just check if we are not logged in. We cannot check for * the phase because the reset could come from a ioctl. @@ -2300,7 +2277,7 @@ case TMF_SUCCESS: break; case TMF_TIMEDOUT: - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); iscsi_conn_failure(conn, ISCSI_ERR_SCSI_EH_SESSION_RST); goto done; default: @@ -2309,21 +2286,21 @@ } rc = SUCCESS; - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); iscsi_suspend_tx(conn); - spin_lock_bh(&session->frwd_lock); + spin_lock_bh(&session->lock); memset(hdr, 0, sizeof(*hdr)); fail_scsi_tasks(conn, sc->device->lun, DID_ERROR); conn->tmf_state = TMF_INITIAL; - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); iscsi_start_tx(conn); goto done; unlock: - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); done: ISCSI_DBG_EH(session, "dev reset result = %s\n", rc == SUCCESS ? "SUCCESS" : "FAILED"); @@ -2336,13 +2313,13 @@ { struct iscsi_session *session = cls_session->dd_data; - spin_lock_bh(&session->frwd_lock); + spin_lock_bh(&session->lock); if (session->state != ISCSI_STATE_LOGGED_IN) { session->state = ISCSI_STATE_RECOVERY_FAILED; if (session->leadconn) wake_up(&session->leadconn->ehwait); } - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); } EXPORT_SYMBOL_GPL(iscsi_session_recovery_timedout); @@ -2364,19 +2341,19 @@ conn = session->leadconn; mutex_lock(&session->eh_mutex); - spin_lock_bh(&session->frwd_lock); + spin_lock_bh(&session->lock); if (session->state == ISCSI_STATE_TERMINATE) { failed: ISCSI_DBG_EH(session, "failing session reset: Could not log back into " "%s, %s [age %d]\n", session->targetname, conn->persistent_address, session->age); - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); mutex_unlock(&session->eh_mutex); return FAILED; } - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); mutex_unlock(&session->eh_mutex); /* * we drop the lock here but the leadconn cannot be destoyed while @@ -2393,14 +2370,14 @@ flush_signals(current); mutex_lock(&session->eh_mutex); - spin_lock_bh(&session->frwd_lock); + spin_lock_bh(&session->lock); if (session->state == ISCSI_STATE_LOGGED_IN) { ISCSI_DBG_EH(session, "session reset succeeded for %s,%s\n", session->targetname, conn->persistent_address); } else goto failed; - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); mutex_unlock(&session->eh_mutex); return SUCCESS; } @@ -2436,7 +2413,7 @@ session->targetname); mutex_lock(&session->eh_mutex); - spin_lock_bh(&session->frwd_lock); + spin_lock_bh(&session->lock); /* * Just check if we are not logged in. We cannot check for * the phase because the reset could come from a ioctl. @@ -2463,7 +2440,7 @@ case TMF_SUCCESS: break; case TMF_TIMEDOUT: - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); iscsi_conn_failure(conn, ISCSI_ERR_SCSI_EH_SESSION_RST); goto done; default: @@ -2472,21 +2449,21 @@ } rc = SUCCESS; - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); iscsi_suspend_tx(conn); - spin_lock_bh(&session->frwd_lock); + spin_lock_bh(&session->lock); memset(hdr, 0, sizeof(*hdr)); fail_scsi_tasks(conn, -1, DID_ERROR); conn->tmf_state = TMF_INITIAL; - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); iscsi_start_tx(conn); goto done; unlock: - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); done: ISCSI_DBG_EH(session, "tgt %s reset result = %s\n", session->targetname, rc == SUCCESS ? "SUCCESS" : "FAILED"); @@ -2783,10 +2760,8 @@ session->max_r2t = 1; session->tt = iscsit; session->dd_data = cls_session->dd_data + sizeof(*session); - mutex_init(&session->eh_mutex); - spin_lock_init(&session->frwd_lock); - spin_lock_init(&session->back_lock); + spin_lock_init(&session->lock); /* initialize SCSI PDU commands pool */ if (iscsi_pool_init(&session->cmdpool, session->cmds_max, @@ -2900,14 +2875,14 @@ INIT_WORK(&conn->xmitwork, iscsi_xmitworker); /* allocate login_task used for the login/text sequences */ - spin_lock_bh(&session->frwd_lock); + spin_lock_bh(&session->lock); if (!kfifo_out(&session->cmdpool.queue, (void*)&conn->login_task, sizeof(void*))) { - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); goto login_task_alloc_fail; } - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); data = (char *) __get_free_pages(GFP_KERNEL, get_order(ISCSI_DEF_MAX_RECV_SEG_LEN)); @@ -2944,7 +2919,7 @@ del_timer_sync(&conn->transport_timer); mutex_lock(&session->eh_mutex); - spin_lock_bh(&session->frwd_lock); + spin_lock_bh(&session->lock); conn->c_stage = ISCSI_CONN_CLEANUP_WAIT; if (session->leadconn == conn) { /* @@ -2953,24 +2928,21 @@ session->state = ISCSI_STATE_TERMINATE; wake_up(&conn->ehwait); } - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); /* flush queued up work because we free the connection below */ iscsi_suspend_tx(conn); - spin_lock_bh(&session->frwd_lock); + spin_lock_bh(&session->lock); free_pages((unsigned long) conn->data, get_order(ISCSI_DEF_MAX_RECV_SEG_LEN)); kfree(conn->persistent_address); kfree(conn->local_ipaddr); - /* regular RX path uses back_lock */ - spin_lock_bh(&session->back_lock); kfifo_in(&session->cmdpool.queue, (void*)&conn->login_task, sizeof(void*)); - spin_unlock_bh(&session->back_lock); if (session->leadconn == conn) session->leadconn = NULL; - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); mutex_unlock(&session->eh_mutex); iscsi_destroy_conn(cls_conn); @@ -3008,7 +2980,7 @@ conn->ping_timeout = 5; } - spin_lock_bh(&session->frwd_lock); + spin_lock_bh(&session->lock); conn->c_stage = ISCSI_CONN_STARTED; session->state = ISCSI_STATE_LOGGED_IN; session->queued_cmdsn = session->cmdsn; @@ -3037,7 +3009,7 @@ default: break; } - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); iscsi_unblock_session(session->cls_session); wake_up(&conn->ehwait); @@ -3076,9 +3048,9 @@ int old_stop_stage; mutex_lock(&session->eh_mutex); - spin_lock_bh(&session->frwd_lock); + spin_lock_bh(&session->lock); if (conn->stop_stage == STOP_CONN_TERM) { - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); mutex_unlock(&session->eh_mutex); return; } @@ -3095,14 +3067,14 @@ old_stop_stage = conn->stop_stage; conn->stop_stage = flag; - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); del_timer_sync(&conn->transport_timer); iscsi_suspend_tx(conn); - spin_lock_bh(&session->frwd_lock); + spin_lock_bh(&session->lock); conn->c_stage = ISCSI_CONN_STOPPED; - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); /* * for connection level recovery we should not calculate @@ -3123,11 +3095,11 @@ /* * flush queues. */ - spin_lock_bh(&session->frwd_lock); + spin_lock_bh(&session->lock); fail_scsi_tasks(conn, -1, DID_TRANSPORT_DISRUPTED); fail_mgmt_tasks(session, conn); memset(&conn->tmhdr, 0, sizeof(conn->tmhdr)); - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); mutex_unlock(&session->eh_mutex); } @@ -3154,10 +3126,10 @@ struct iscsi_session *session = cls_session->dd_data; struct iscsi_conn *conn = cls_conn->dd_data; - spin_lock_bh(&session->frwd_lock); + spin_lock_bh(&session->lock); if (is_leading) session->leadconn = conn; - spin_unlock_bh(&session->frwd_lock); + spin_unlock_bh(&session->lock); /* * Unblock xmitworker(), Login Phase will pass through. --- linux-4.8.0.orig/drivers/scsi/libiscsi_tcp.c +++ linux-4.8.0/drivers/scsi/libiscsi_tcp.c @@ -451,7 +451,7 @@ * iscsi_tcp_cleanup_task - free tcp_task resources * @task: iscsi task * - * must be called with session back_lock + * must be called with session lock */ void iscsi_tcp_cleanup_task(struct iscsi_task *task) { @@ -462,7 +462,6 @@ if (!task->sc) return; - spin_lock_bh(&tcp_task->queue2pool); /* flush task's r2t queues */ while (kfifo_out(&tcp_task->r2tqueue, (void*)&r2t, sizeof(void*))) { kfifo_in(&tcp_task->r2tpool.queue, (void*)&r2t, @@ -476,7 +475,6 @@ sizeof(void*)); tcp_task->r2t = NULL; } - spin_unlock_bh(&tcp_task->queue2pool); } EXPORT_SYMBOL_GPL(iscsi_tcp_cleanup_task); @@ -584,13 +582,11 @@ return ISCSI_ERR_DATALEN; } - spin_lock(&tcp_task->pool2queue); rc = kfifo_out(&tcp_task->r2tpool.queue, (void *)&r2t, sizeof(void *)); if (!rc) { iscsi_conn_printk(KERN_ERR, conn, "Could not allocate R2T. " "Target has sent more R2Ts than it " "negotiated for or driver has leaked.\n"); - spin_unlock(&tcp_task->pool2queue); return ISCSI_ERR_PROTO; } @@ -605,7 +601,6 @@ tcp_task->exp_datasn = r2tsn + 1; kfifo_in(&tcp_task->r2tqueue, (void*)&r2t, sizeof(void*)); conn->r2t_pdus_cnt++; - spin_unlock(&tcp_task->pool2queue); iscsi_requeue_task(task); return 0; @@ -678,14 +673,14 @@ switch(opcode) { case ISCSI_OP_SCSI_DATA_IN: - spin_lock(&conn->session->back_lock); + spin_lock(&conn->session->lock); task = iscsi_itt_to_ctask(conn, hdr->itt); if (!task) rc = ISCSI_ERR_BAD_ITT; else rc = iscsi_tcp_data_in(conn, task); if (rc) { - spin_unlock(&conn->session->back_lock); + spin_unlock(&conn->session->lock); break; } @@ -718,11 +713,11 @@ tcp_conn->in.datalen, iscsi_tcp_process_data_in, rx_hash); - spin_unlock(&conn->session->back_lock); + spin_unlock(&conn->session->lock); return rc; } rc = __iscsi_complete_pdu(conn, hdr, NULL, 0); - spin_unlock(&conn->session->back_lock); + spin_unlock(&conn->session->lock); break; case ISCSI_OP_SCSI_CMD_RSP: if (tcp_conn->in.datalen) { @@ -732,20 +727,18 @@ rc = iscsi_complete_pdu(conn, hdr, NULL, 0); break; case ISCSI_OP_R2T: - spin_lock(&conn->session->back_lock); + spin_lock(&conn->session->lock); task = iscsi_itt_to_ctask(conn, hdr->itt); - spin_unlock(&conn->session->back_lock); if (!task) rc = ISCSI_ERR_BAD_ITT; else if (ahslen) rc = ISCSI_ERR_AHSLEN; else if (task->sc->sc_data_direction == DMA_TO_DEVICE) { task->last_xfer = jiffies; - spin_lock(&conn->session->frwd_lock); rc = iscsi_tcp_r2t_rsp(conn, task); - spin_unlock(&conn->session->frwd_lock); } else rc = ISCSI_ERR_PROTO; + spin_unlock(&conn->session->lock); break; case ISCSI_OP_LOGIN_RSP: case ISCSI_OP_TEXT_RSP: @@ -993,13 +986,14 @@ static struct iscsi_r2t_info *iscsi_tcp_get_curr_r2t(struct iscsi_task *task) { + struct iscsi_session *session = task->conn->session; struct iscsi_tcp_task *tcp_task = task->dd_data; struct iscsi_r2t_info *r2t = NULL; if (iscsi_task_has_unsol_data(task)) r2t = &task->unsol_r2t; else { - spin_lock_bh(&tcp_task->queue2pool); + spin_lock_bh(&session->lock); if (tcp_task->r2t) { r2t = tcp_task->r2t; /* Continue with this R2T? */ @@ -1021,7 +1015,7 @@ else r2t = tcp_task->r2t; } - spin_unlock_bh(&tcp_task->queue2pool); + spin_unlock_bh(&session->lock); } return r2t; @@ -1151,8 +1145,6 @@ iscsi_pool_free(&tcp_task->r2tpool); goto r2t_alloc_fail; } - spin_lock_init(&tcp_task->pool2queue); - spin_lock_init(&tcp_task->queue2pool); } return 0; --- linux-4.8.0.orig/drivers/scsi/lpfc/lpfc_hw4.h +++ linux-4.8.0/drivers/scsi/lpfc/lpfc_hw4.h @@ -1185,6 +1185,7 @@ #define lpfc_mbx_wq_create_page_size_SHIFT 0 #define lpfc_mbx_wq_create_page_size_MASK 0x000000FF #define lpfc_mbx_wq_create_page_size_WORD word1 +#define LPFC_WQ_PAGE_SIZE_4096 0x1 #define lpfc_mbx_wq_create_wqe_size_SHIFT 8 #define lpfc_mbx_wq_create_wqe_size_MASK 0x0000000F #define lpfc_mbx_wq_create_wqe_size_WORD word1 @@ -1256,6 +1257,7 @@ #define lpfc_rq_context_page_size_SHIFT 0 /* Version 1 Only */ #define lpfc_rq_context_page_size_MASK 0x000000FF #define lpfc_rq_context_page_size_WORD word0 +#define LPFC_RQ_PAGE_SIZE_4096 0x1 uint32_t reserved1; uint32_t word2; #define lpfc_rq_context_cq_id_SHIFT 16 --- linux-4.8.0.orig/drivers/scsi/lpfc/lpfc_sli.c +++ linux-4.8.0/drivers/scsi/lpfc/lpfc_sli.c @@ -119,6 +119,8 @@ if (q->phba->sli3_options & LPFC_SLI4_PHWQ_ENABLED) bf_set(wqe_wqid, &wqe->generic.wqe_com, q->queue_id); lpfc_sli_pcimem_bcopy(wqe, temp_wqe, q->entry_size); + /* ensure WQE bcopy flushed before doorbell write */ + wmb(); /* Update the host index before invoking device */ host_index = q->host_index; @@ -1323,18 +1325,20 @@ { lockdep_assert_held(&phba->hbalock); - BUG_ON(!piocb || !piocb->vport); + BUG_ON(!piocb); list_add_tail(&piocb->list, &pring->txcmplq); piocb->iocb_flag |= LPFC_IO_ON_TXCMPLQ; if ((unlikely(pring->ringno == LPFC_ELS_RING)) && (piocb->iocb.ulpCommand != CMD_ABORT_XRI_CN) && - (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN) && - (!(piocb->vport->load_flag & FC_UNLOADING))) - mod_timer(&piocb->vport->els_tmofunc, - jiffies + - msecs_to_jiffies(1000 * (phba->fc_ratov << 1))); + (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN)) { + BUG_ON(!piocb->vport); + if (!(piocb->vport->load_flag & FC_UNLOADING)) + mod_timer(&piocb->vport->els_tmofunc, + jiffies + + msecs_to_jiffies(1000 * (phba->fc_ratov << 1))); + } return 0; } @@ -13676,7 +13680,7 @@ LPFC_WQ_WQE_SIZE_128); bf_set(lpfc_mbx_wq_create_page_size, &wq_create->u.request_1, - (PAGE_SIZE/SLI4_PAGE_SIZE)); + LPFC_WQ_PAGE_SIZE_4096); page = wq_create->u.request_1.page; break; } @@ -13702,8 +13706,9 @@ LPFC_WQ_WQE_SIZE_128); break; } - bf_set(lpfc_mbx_wq_create_page_size, &wq_create->u.request_1, - (PAGE_SIZE/SLI4_PAGE_SIZE)); + bf_set(lpfc_mbx_wq_create_page_size, + &wq_create->u.request_1, + LPFC_WQ_PAGE_SIZE_4096); page = wq_create->u.request_1.page; break; default: @@ -13889,7 +13894,7 @@ LPFC_RQE_SIZE_8); bf_set(lpfc_rq_context_page_size, &rq_create->u.request.context, - (PAGE_SIZE/SLI4_PAGE_SIZE)); + LPFC_RQ_PAGE_SIZE_4096); } else { switch (hrq->entry_count) { default: --- linux-4.8.0.orig/drivers/scsi/megaraid/megaraid_sas.h +++ linux-4.8.0/drivers/scsi/megaraid/megaraid_sas.h @@ -2233,7 +2233,7 @@ }; #define MEGASAS_IS_LOGICAL(scp) \ - (scp->device->channel < MEGASAS_MAX_PD_CHANNELS) ? 0 : 1 + ((scp->device->channel < MEGASAS_MAX_PD_CHANNELS) ? 0 : 1) #define MEGASAS_DEV_INDEX(scp) \ (((scp->device->channel % 2) * MEGASAS_MAX_DEV_PER_CHANNEL) + \ --- linux-4.8.0.orig/drivers/scsi/megaraid/megaraid_sas_base.c +++ linux-4.8.0/drivers/scsi/megaraid/megaraid_sas_base.c @@ -1713,16 +1713,13 @@ goto out_done; } - switch (scmd->cmnd[0]) { - case SYNCHRONIZE_CACHE: - /* - * FW takes care of flush cache on its own - * No need to send it down - */ + /* + * FW takes care of flush cache on its own for Virtual Disk. + * No need to send it down for VD. For JBOD send SYNCHRONIZE_CACHE to FW. + */ + if ((scmd->cmnd[0] == SYNCHRONIZE_CACHE) && MEGASAS_IS_LOGICAL(scmd)) { scmd->result = DID_OK << 16; goto out_done; - default: - break; } return instance->instancet->build_and_issue_cmd(instance, scmd); --- linux-4.8.0.orig/drivers/scsi/megaraid/megaraid_sas_fusion.c +++ linux-4.8.0/drivers/scsi/megaraid/megaraid_sas_fusion.c @@ -2000,6 +2000,8 @@ io_request->DevHandle = pd_sync->seq[pd_index].devHandle; pRAID_Context->regLockFlags |= (MR_RL_FLAGS_SEQ_NUM_ENABLE|MR_RL_FLAGS_GRANT_DESTINATION_CUDA); + pRAID_Context->Type = MPI2_TYPE_CUDA; + pRAID_Context->nseg = 0x1; } else if (fusion->fast_path_io) { pRAID_Context->VirtualDiskTgtId = cpu_to_le16(device_id); pRAID_Context->configSeqNum = 0; @@ -2035,12 +2037,10 @@ pRAID_Context->timeoutValue = cpu_to_le16((os_timeout_value > timeout_limit) ? timeout_limit : os_timeout_value); - if (fusion->adapter_type == INVADER_SERIES) { - pRAID_Context->Type = MPI2_TYPE_CUDA; - pRAID_Context->nseg = 0x1; + if (fusion->adapter_type == INVADER_SERIES) io_request->IoFlags |= cpu_to_le16(MPI25_SAS_DEVICE0_FLAGS_ENABLED_FAST_PATH); - } + cmd->request_desc->SCSIIO.RequestFlags = (MPI2_REQ_DESCRIPT_FLAGS_FP_IO << MEGASAS_REQ_DESCRIPT_FLAGS_TYPE_SHIFT); @@ -2823,6 +2823,7 @@ dev_err(&instance->pdev->dev, "pending commands remain after waiting, " "will reset adapter scsi%d.\n", instance->host->host_no); + *convert = 1; retval = 1; } out: --- linux-4.8.0.orig/drivers/scsi/mpt3sas/mpt3sas_scsih.c +++ linux-4.8.0/drivers/scsi/mpt3sas/mpt3sas_scsih.c @@ -1273,9 +1273,9 @@ sas_target_priv_data->handle = raid_device->handle; sas_target_priv_data->sas_address = raid_device->wwid; sas_target_priv_data->flags |= MPT_TARGET_FLAGS_VOLUME; - sas_target_priv_data->raid_device = raid_device; if (ioc->is_warpdrive) - raid_device->starget = starget; + sas_target_priv_data->raid_device = raid_device; + raid_device->starget = starget; } spin_unlock_irqrestore(&ioc->raid_device_lock, flags); return 0; @@ -3894,6 +3894,11 @@ } } +static inline bool ata_12_16_cmd(struct scsi_cmnd *scmd) +{ + return (scmd->cmnd[0] == ATA_12 || scmd->cmnd[0] == ATA_16); +} + /** * _scsih_flush_running_cmds - completing outstanding commands. * @ioc: per adapter object @@ -3915,6 +3920,9 @@ if (!scmd) continue; count++; + if (ata_12_16_cmd(scmd)) + scsi_internal_device_unblock(scmd->device, + SDEV_RUNNING); mpt3sas_base_free_smid(ioc, smid); scsi_dma_unmap(scmd); if (ioc->pci_error_recovery) @@ -4019,8 +4027,6 @@ SAM_STAT_CHECK_CONDITION; } - - /** * scsih_qcmd - main scsi request entry point * @scmd: pointer to scsi command object @@ -4047,6 +4053,13 @@ if (ioc->logging_level & MPT_DEBUG_SCSI) scsi_print_command(scmd); + /* + * Lock the device for any subsequent command until command is + * done. + */ + if (ata_12_16_cmd(scmd)) + scsi_internal_device_block(scmd->device); + sas_device_priv_data = scmd->device->hostdata; if (!sas_device_priv_data || !sas_device_priv_data->sas_target) { scmd->result = DID_NO_CONNECT << 16; @@ -4622,6 +4635,9 @@ if (scmd == NULL) return 1; + if (ata_12_16_cmd(scmd)) + scsi_internal_device_unblock(scmd->device, SDEV_RUNNING); + mpi_request = mpt3sas_base_get_msg_frame(ioc, smid); if (mpi_reply == NULL) { @@ -4701,7 +4717,7 @@ le16_to_cpu(mpi_reply->DevHandle)); mpt3sas_trigger_scsi(ioc, data.skey, data.asc, data.ascq); - if (!(ioc->logging_level & MPT_DEBUG_REPLY) && + if ((ioc->logging_level & MPT_DEBUG_REPLY) && ((scmd->sense_buffer[2] == UNIT_ATTENTION) || (scmd->sense_buffer[2] == MEDIUM_ERROR) || (scmd->sense_buffer[2] == HARDWARE_ERROR))) --- linux-4.8.0.orig/drivers/scsi/qla2xxx/qla_os.c +++ linux-4.8.0/drivers/scsi/qla2xxx/qla_os.c @@ -2341,6 +2341,8 @@ { scsi_qla_host_t *vha = shost_priv(shost); + if (test_bit(UNLOADING, &vha->dpc_flags)) + return 1; if (!vha->host) return 1; if (time > vha->hw->loop_reset_delay * HZ) --- linux-4.8.0.orig/drivers/scsi/qla4xxx/ql4_isr.c +++ linux-4.8.0/drivers/scsi/qla4xxx/ql4_isr.c @@ -385,9 +385,9 @@ cls_conn = ddb_entry->conn; conn = cls_conn->dd_data; - spin_lock(&conn->session->back_lock); + spin_lock(&conn->session->lock); task = iscsi_itt_to_task(conn, itt); - spin_unlock(&conn->session->back_lock); + spin_unlock(&conn->session->lock); if (task == NULL) { ql4_printk(KERN_ERR, ha, "%s: Task is NULL\n", __func__); --- linux-4.8.0.orig/drivers/scsi/scsi_debug.c +++ linux-4.8.0/drivers/scsi/scsi_debug.c @@ -5134,6 +5134,7 @@ bus_unregister(&pseudo_lld_bus); root_device_unregister(pseudo_primary); + vfree(map_storep); vfree(dif_storep); vfree(fake_storep); kfree(sdebug_q_arr); --- linux-4.8.0.orig/drivers/scsi/scsi_scan.c +++ linux-4.8.0/drivers/scsi/scsi_scan.c @@ -1472,12 +1472,12 @@ out_err: kfree(lun_data); out: - scsi_device_put(sdev); if (scsi_device_created(sdev)) /* * the sdev we used didn't appear in the report luns scan */ __scsi_remove_device(sdev); + scsi_device_put(sdev); return ret; } --- linux-4.8.0.orig/drivers/scsi/scsi_sysfs.c +++ linux-4.8.0/drivers/scsi/scsi_sysfs.c @@ -1204,10 +1204,6 @@ struct request_queue *rq = sdev->request_queue; struct scsi_target *starget = sdev->sdev_target; - error = scsi_device_set_state(sdev, SDEV_RUNNING); - if (error) - return error; - error = scsi_target_add(starget); if (error) return error; --- linux-4.8.0.orig/drivers/scsi/ses.c +++ linux-4.8.0/drivers/scsi/ses.c @@ -587,7 +587,7 @@ ses_enclosure_data_process(edev, to_scsi_device(edev->edev.parent), 0); - if (scsi_is_sas_rphy(&sdev->sdev_gendev)) + if (scsi_is_sas_rphy(sdev->sdev_target->dev.parent)) efd.addr = sas_get_address(sdev); if (efd.addr) { --- linux-4.8.0.orig/drivers/scsi/sg.c +++ linux-4.8.0/drivers/scsi/sg.c @@ -592,6 +592,9 @@ sg_io_hdr_t *hp; unsigned char cmnd[SG_MAX_CDB_SIZE]; + if (unlikely(segment_eq(get_fs(), KERNEL_DS))) + return -EINVAL; + if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp))) return -ENXIO; SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp, --- linux-4.8.0.orig/drivers/scsi/storvsc_drv.c +++ linux-4.8.0/drivers/scsi/storvsc_drv.c @@ -136,6 +136,8 @@ #define SRB_FLAGS_PORT_DRIVER_RESERVED 0x0F000000 #define SRB_FLAGS_CLASS_DRIVER_RESERVED 0xF0000000 +#define SP_UNTAGGED ((unsigned char) ~0) +#define SRB_SIMPLE_TAG_REQUEST 0x20 /* * Platform neutral description of a scsi request - @@ -375,6 +377,7 @@ #define SRB_STATUS_SUCCESS 0x01 #define SRB_STATUS_ABORTED 0x02 #define SRB_STATUS_ERROR 0x04 +#define SRB_STATUS_DATA_OVERRUN 0x12 #define SRB_STATUS(status) \ (status & ~(SRB_STATUS_AUTOSENSE_VALID | SRB_STATUS_QUEUE_FROZEN)) @@ -397,8 +400,6 @@ */ static int storvsc_timeout = 180; -static int msft_blist_flags = BLIST_TRY_VPD_PAGES; - #if IS_ENABLED(CONFIG_SCSI_FC_ATTRS) static struct scsi_transport_template *fc_transport_template; #endif @@ -458,6 +459,15 @@ * Max I/O, the device can support. */ u32 max_transfer_bytes; + /* + * Number of sub-channels we will open. + */ + u16 num_sc; + struct vmbus_channel **stor_chns; + /* + * Mask of CPUs bound to subchannels. + */ + struct cpumask alloced_cpus; /* Used for vsc/vsp channel reset process */ struct storvsc_cmd_request init_request; struct storvsc_cmd_request reset_request; @@ -635,6 +645,11 @@ (void *)&props, sizeof(struct vmstorage_channel_properties), storvsc_on_channel_callback, new_sc); + + if (new_sc->state == CHANNEL_OPENED_STATE) { + stor_device->stor_chns[new_sc->target_cpu] = new_sc; + cpumask_set_cpu(new_sc->target_cpu, &stor_device->alloced_cpus); + } } static void handle_multichannel_storage(struct hv_device *device, int max_chns) @@ -651,6 +666,7 @@ if (!stor_device) return; + stor_device->num_sc = num_sc; request = &stor_device->init_request; vstor_packet = &request->vstor_packet; @@ -838,6 +854,25 @@ * support multi-channel. */ max_chns = vstor_packet->storage_channel_properties.max_channel_cnt; + + /* + * Allocate state to manage the sub-channels. + * We allocate an array based on the numbers of possible CPUs + * (Hyper-V does not support cpu online/offline). + * This Array will be sparseley populated with unique + * channels - primary + sub-channels. + * We will however populate all the slots to evenly distribute + * the load. + */ + stor_device->stor_chns = kzalloc(sizeof(void *) * num_possible_cpus(), + GFP_KERNEL); + if (stor_device->stor_chns == NULL) + return -ENOMEM; + + stor_device->stor_chns[device->channel->target_cpu] = device->channel; + cpumask_set_cpu(device->channel->target_cpu, + &stor_device->alloced_cpus); + if (vmstor_proto_version >= VMSTOR_PROTO_VERSION_WIN8) { if (vstor_packet->storage_channel_properties.flags & STORAGE_CHANNEL_SUPPORTS_MULTI_CHANNEL) @@ -889,6 +924,13 @@ switch (SRB_STATUS(vm_srb->srb_status)) { case SRB_STATUS_ERROR: /* + * Let upper layer deal with error when + * sense message is present. + */ + + if (vm_srb->srb_status & SRB_STATUS_AUTOSENSE_VALID) + break; + /* * If there is an error; offline the device since all * error recovery strategies would have already been * deployed on the host side. However, if the command @@ -953,6 +995,7 @@ struct scsi_cmnd *scmnd = cmd_request->cmd; struct scsi_sense_hdr sense_hdr; struct vmscsi_request *vm_srb; + u32 data_transfer_length; struct Scsi_Host *host; u32 payload_sz = cmd_request->payload_sz; void *payload = cmd_request->payload; @@ -960,6 +1003,7 @@ host = stor_dev->host; vm_srb = &cmd_request->vstor_packet.vm_srb; + data_transfer_length = vm_srb->data_transfer_length; scmnd->result = vm_srb->scsi_status; @@ -973,13 +1017,20 @@ &sense_hdr); } - if (vm_srb->srb_status != SRB_STATUS_SUCCESS) + if (vm_srb->srb_status != SRB_STATUS_SUCCESS) { storvsc_handle_error(vm_srb, scmnd, host, sense_hdr.asc, sense_hdr.ascq); + /* + * The Windows driver set data_transfer_length on + * SRB_STATUS_DATA_OVERRUN. On other errors, this value + * is untouched. In these cases we set it to 0. + */ + if (vm_srb->srb_status != SRB_STATUS_DATA_OVERRUN) + data_transfer_length = 0; + } scsi_set_resid(scmnd, - cmd_request->payload->range.len - - vm_srb->data_transfer_length); + cmd_request->payload->range.len - data_transfer_length); scmnd->scsi_done(scmnd); @@ -1198,17 +1249,64 @@ /* Close the channel */ vmbus_close(device->channel); + kfree(stor_device->stor_chns); kfree(stor_device); return 0; } +static struct vmbus_channel *get_og_chn(struct storvsc_device *stor_device, + u16 q_num) +{ + u16 slot = 0; + u16 hash_qnum; + struct cpumask alloced_mask; + int num_channels, tgt_cpu; + + if (stor_device->num_sc == 0) + return stor_device->device->channel; + + /* + * Our channel array is sparsley populated and we + * initiated I/O on a processor/hw-q that does not + * currently have a designated channel. Fix this. + * The strategy is simple: + * I. Ensure NUMA locality + * II. Distribute evenly (best effort) + * III. Mapping is persistent. + */ + + cpumask_and(&alloced_mask, &stor_device->alloced_cpus, + cpumask_of_node(cpu_to_node(q_num))); + + num_channels = cpumask_weight(&alloced_mask); + if (num_channels == 0) + return stor_device->device->channel; + + hash_qnum = q_num; + while (hash_qnum >= num_channels) + hash_qnum -= num_channels; + + for_each_cpu(tgt_cpu, &alloced_mask) { + if (slot == hash_qnum) + break; + slot++; + } + + stor_device->stor_chns[q_num] = stor_device->stor_chns[tgt_cpu]; + + return stor_device->stor_chns[q_num]; +} + + static int storvsc_do_io(struct hv_device *device, - struct storvsc_cmd_request *request) + struct storvsc_cmd_request *request, u16 q_num) { struct storvsc_device *stor_device; struct vstor_packet *vstor_packet; struct vmbus_channel *outgoing_channel; int ret = 0; + struct cpumask alloced_mask; + int tgt_cpu; vstor_packet = &request->vstor_packet; stor_device = get_out_stor_device(device); @@ -1222,7 +1320,26 @@ * Select an an appropriate channel to send the request out. */ - outgoing_channel = vmbus_get_outgoing_channel(device->channel); + if (stor_device->stor_chns[q_num] != NULL) { + outgoing_channel = stor_device->stor_chns[q_num]; + if (outgoing_channel->target_cpu == smp_processor_id()) { + /* + * Ideally, we want to pick a different channel if + * available on the same NUMA node. + */ + cpumask_and(&alloced_mask, &stor_device->alloced_cpus, + cpumask_of_node(cpu_to_node(q_num))); + for_each_cpu(tgt_cpu, &alloced_mask) { + if (tgt_cpu != outgoing_channel->target_cpu) { + outgoing_channel = + stor_device->stor_chns[tgt_cpu]; + break; + } + } + } + } else { + outgoing_channel = get_og_chn(stor_device, q_num); + } vstor_packet->flags |= REQUEST_COMPLETION_FLAG; @@ -1264,10 +1381,24 @@ return ret; } -static int storvsc_device_configure(struct scsi_device *sdevice) +static int storvsc_device_alloc(struct scsi_device *sdevice) { + /* + * Set blist flag to permit the reading of the VPD pages even when + * the target may claim SPC-2 compliance. MSFT targets currently + * claim SPC-2 compliance while they implement post SPC-2 features. + * With this flag we can correctly handle WRITE_SAME_16 issues. + * + * Hypervisor reports SCSI_UNKNOWN type for DVD ROM device but + * still supports REPORT LUN. + */ + sdevice->sdev_bflags = BLIST_REPORTLUN2 | BLIST_TRY_VPD_PAGES; - blk_queue_max_segment_size(sdevice->request_queue, PAGE_SIZE); + return 0; +} + +static int storvsc_device_configure(struct scsi_device *sdevice) +{ blk_queue_bounce_limit(sdevice->request_queue, BLK_BOUNCE_ANY); @@ -1279,14 +1410,6 @@ sdevice->no_write_same = 1; /* - * Add blist flags to permit the reading of the VPD pages even when - * the target may claim SPC-2 compliance. MSFT targets currently - * claim SPC-2 compliance while they implement post SPC-2 features. - * With this patch we can correctly handle WRITE_SAME_16 issues. - */ - sdevice->sdev_bflags |= msft_blist_flags; - - /* * If the host is WIN8 or WIN8 R2, claim conformance to SPC-3 * if the device is a MSFT virtual device. If the host is * WIN10 or newer, allow write_same. @@ -1451,6 +1574,13 @@ vm_srb->win8_extension.srb_flags |= SRB_FLAGS_DISABLE_SYNCH_TRANSFER; + if (scmnd->device->tagged_supported) { + vm_srb->win8_extension.srb_flags |= + (SRB_FLAGS_QUEUE_ACTION_ENABLE | SRB_FLAGS_NO_QUEUE_FREEZE); + vm_srb->win8_extension.queue_tag = SP_UNTAGGED; + vm_srb->win8_extension.queue_action = SRB_SIMPLE_TAG_REQUEST; + } + /* Build the SRB */ switch (scmnd->sc_data_direction) { case DMA_TO_DEVICE: @@ -1524,7 +1654,8 @@ cmd_request->payload_sz = payload_sz; /* Invokes the vsc to start an IO */ - ret = storvsc_do_io(dev, cmd_request); + ret = storvsc_do_io(dev, cmd_request, get_cpu()); + put_cpu(); if (ret == -EAGAIN) { /* no more space */ @@ -1543,6 +1674,7 @@ .eh_host_reset_handler = storvsc_host_reset_handler, .proc_name = "storvsc_host", .eh_timed_out = storvsc_eh_timed_out, + .slave_alloc = storvsc_device_alloc, .slave_configure = storvsc_device_configure, .cmd_per_lun = 255, .this_id = -1, @@ -1550,6 +1682,7 @@ /* Make sure we dont get a sg segment crosses a page boundary */ .dma_boundary = PAGE_SIZE-1, .no_write_same = 1, + .track_queue_depth = 1, }; enum { @@ -1680,6 +1813,16 @@ * from the host. */ host->sg_tablesize = (stor_device->max_transfer_bytes >> PAGE_SHIFT); +#if defined(CONFIG_X86_32) + dev_warn(&device->device, "adjusting sg_tablesize 0x%x -> 0x%x", + host->sg_tablesize, MAX_MULTIPAGE_BUFFER_COUNT); + host->sg_tablesize = MAX_MULTIPAGE_BUFFER_COUNT; +#endif + /* + * Set the number of HW queues we are supporting. + */ + if (stor_device->num_sc != 0) + host->nr_hw_queues = stor_device->num_sc + 1; /* Register the HBA and start the scsi bus scan */ ret = scsi_add_host(host, &device->device); @@ -1716,6 +1859,7 @@ goto err_out0; err_out1: + kfree(stor_device->stor_chns); kfree(stor_device); err_out0: --- linux-4.8.0.orig/drivers/soc/fsl/qe/gpio.c +++ linux-4.8.0/drivers/soc/fsl/qe/gpio.c @@ -41,7 +41,8 @@ static void qe_gpio_save_regs(struct of_mm_gpio_chip *mm_gc) { - struct qe_gpio_chip *qe_gc = gpiochip_get_data(&mm_gc->gc); + struct qe_gpio_chip *qe_gc = + container_of(mm_gc, struct qe_gpio_chip, mm_gc); struct qe_pio_regs __iomem *regs = mm_gc->regs; qe_gc->cpdata = in_be32(®s->cpdata); --- linux-4.8.0.orig/drivers/soc/fsl/qe/qe_common.c +++ linux-4.8.0/drivers/soc/fsl/qe/qe_common.c @@ -70,6 +70,11 @@ } muram_pool = gen_pool_create(0, -1); + if (!muram_pool) { + pr_err("Cannot allocate memory pool for CPM/QE muram"); + ret = -ENOMEM; + goto out_muram; + } muram_pbase = of_translate_address(np, zero); if (muram_pbase == (phys_addr_t)OF_BAD_ADDR) { pr_err("Cannot translate zero through CPM muram node"); @@ -116,6 +121,9 @@ struct muram_block *entry; unsigned long start; + if (!muram_pool && cpm_muram_init()) + goto out2; + start = gen_pool_alloc_algo(muram_pool, size, algo, data); if (!start) goto out2; --- linux-4.8.0.orig/drivers/spi/spi-fsl-dspi.c +++ linux-4.8.0/drivers/spi/spi-fsl-dspi.c @@ -760,7 +760,6 @@ /* Disconnect from the SPI framework */ clk_disable_unprepare(dspi->clk); spi_unregister_master(dspi->master); - spi_master_put(dspi->master); return 0; } --- linux-4.8.0.orig/drivers/spi/spi-fsl-espi.c +++ linux-4.8.0/drivers/spi/spi-fsl-espi.c @@ -581,7 +581,7 @@ mspi->len -= rx_nr_bytes; - if (mspi->rx) + if (rx_nr_bytes && mspi->rx) mspi->get_rx(rx_data, mspi); } --- linux-4.8.0.orig/drivers/spi/spi.c +++ linux-4.8.0/drivers/spi/spi.c @@ -1607,9 +1607,11 @@ if (of_node_test_and_set_flag(nc, OF_POPULATED)) continue; spi = of_register_spi_device(master, nc); - if (IS_ERR(spi)) + if (IS_ERR(spi)) { dev_warn(&master->dev, "Failed to create SPI device for %s\n", nc->full_name); + of_node_clear_flag(nc, OF_POPULATED); + } } } #else @@ -3120,6 +3122,7 @@ if (IS_ERR(spi)) { pr_err("%s: failed to create for '%s'\n", __func__, rd->dn->full_name); + of_node_clear_flag(rd->dn, OF_POPULATED); return notifier_from_errno(PTR_ERR(spi)); } break; --- linux-4.8.0.orig/drivers/ssb/pci.c +++ linux-4.8.0/drivers/ssb/pci.c @@ -909,6 +909,7 @@ if (err) { ssb_warn("WARNING: Using fallback SPROM failed (err %d)\n", err); + goto out_free; } else { ssb_dbg("Using SPROM revision %d provided by platform\n", sprom->revision); --- linux-4.8.0.orig/drivers/staging/android/ion/Kconfig +++ linux-4.8.0/drivers/staging/android/ion/Kconfig @@ -36,6 +36,7 @@ config ION_HISI tristate "Ion for Hisilicon" depends on ARCH_HISI && ION + select ION_OF help Choose this option if you wish to use ion on Hisilicon Platform. --- linux-4.8.0.orig/drivers/staging/comedi/drivers/ni_mio_common.c +++ linux-4.8.0/drivers/staging/comedi/drivers/ni_mio_common.c @@ -1832,7 +1832,7 @@ unsigned int *data) { struct ni_private *devpriv = dev->private; - unsigned int mask = (s->maxdata + 1) >> 1; + unsigned int mask = s->maxdata; int i, n; unsigned int signbits; unsigned int d; @@ -1875,7 +1875,7 @@ return -ETIME; } d += signbits; - data[n] = d; + data[n] = d & 0xffff; } } else if (devpriv->is_6143) { for (n = 0; n < insn->n; n++) { @@ -1924,9 +1924,8 @@ data[n] = dl; } else { d = ni_readw(dev, NI_E_AI_FIFO_DATA_REG); - /* subtle: needs to be short addition */ d += signbits; - data[n] = d; + data[n] = d & 0xffff; } } } --- linux-4.8.0.orig/drivers/staging/comedi/drivers/ni_tio.c +++ linux-4.8.0/drivers/staging/comedi/drivers/ni_tio.c @@ -207,7 +207,8 @@ * clock period is specified by user with prescaling * already taken into account. */ - return counter->clock_period_ps; + *period_ps = counter->clock_period_ps; + return 0; } switch (generic_clock_source & NI_GPCT_PRESCALE_MODE_CLOCK_SRC_MASK) { --- linux-4.8.0.orig/drivers/staging/fbtft/fbtft-core.c +++ linux-4.8.0/drivers/staging/fbtft/fbtft-core.c @@ -391,11 +391,11 @@ if (unlikely(timeit)) { ts_end = ktime_get(); - if (ktime_to_ns(par->update_time)) + if (!ktime_to_ns(par->update_time)) par->update_time = ts_start; - par->update_time = ts_start; fps = ktime_us_delta(ts_start, par->update_time); + par->update_time = ts_start; fps = fps ? 1000000 / fps : 0; throughput = ktime_us_delta(ts_end, ts_start); --- linux-4.8.0.orig/drivers/staging/iio/impedance-analyzer/ad5933.c +++ linux-4.8.0/drivers/staging/iio/impedance-analyzer/ad5933.c @@ -655,6 +655,7 @@ __be16 buf[2]; int val[2]; unsigned char status; + int ret; mutex_lock(&indio_dev->mlock); if (st->state == AD5933_CTRL_INIT_START_FREQ) { @@ -662,19 +663,22 @@ ad5933_cmd(st, AD5933_CTRL_START_SWEEP); st->state = AD5933_CTRL_START_SWEEP; schedule_delayed_work(&st->work, st->poll_time_jiffies); - mutex_unlock(&indio_dev->mlock); - return; + goto out; } - ad5933_i2c_read(st->client, AD5933_REG_STATUS, 1, &status); + ret = ad5933_i2c_read(st->client, AD5933_REG_STATUS, 1, &status); + if (ret) + goto out; if (status & AD5933_STAT_DATA_VALID) { int scan_count = bitmap_weight(indio_dev->active_scan_mask, indio_dev->masklength); - ad5933_i2c_read(st->client, + ret = ad5933_i2c_read(st->client, test_bit(1, indio_dev->active_scan_mask) ? AD5933_REG_REAL_DATA : AD5933_REG_IMAG_DATA, scan_count * 2, (u8 *)buf); + if (ret) + goto out; if (scan_count == 2) { val[0] = be16_to_cpu(buf[0]); @@ -686,8 +690,7 @@ } else { /* no data available - try again later */ schedule_delayed_work(&st->work, st->poll_time_jiffies); - mutex_unlock(&indio_dev->mlock); - return; + goto out; } if (status & AD5933_STAT_SWEEP_DONE) { @@ -700,7 +703,7 @@ ad5933_cmd(st, AD5933_CTRL_INC_FREQ); schedule_delayed_work(&st->work, st->poll_time_jiffies); } - +out: mutex_unlock(&indio_dev->mlock); } --- linux-4.8.0.orig/drivers/staging/ks7010/ks_hostif.c +++ linux-4.8.0/drivers/staging/ks7010/ks_hostif.c @@ -69,16 +69,20 @@ return data; } -void ks_wlan_hw_wakeup_task(struct work_struct *work) +static void ks_wlan_hw_wakeup_task(struct work_struct *work) { struct ks_wlan_private *priv = container_of(work, struct ks_wlan_private, ks_wlan_wakeup_task); int ps_status = atomic_read(&priv->psstatus.status); + long time_left; if (ps_status == PS_SNOOZE) { ks_wlan_hw_wakeup_request(priv); - if (!wait_for_completion_interruptible_timeout(&priv->psstatus.wakeup_wait, HZ / 50)) { /* 20ms timeout */ - DPRINTK(1, "wake up timeout !!!\n"); + time_left = wait_for_completion_interruptible_timeout( + &priv->psstatus.wakeup_wait, + msecs_to_jiffies(20)); + if (time_left <= 0) { + DPRINTK(1, "wake up timeout or interrupted !!!\n"); schedule_work(&priv->ks_wlan_wakeup_task); return; } @@ -1505,7 +1509,7 @@ ks_wlan_hw_tx(priv, pp, hif_align_size(sizeof(*pp)), NULL, NULL, NULL); } -void hostif_infrastructure_set2_request(struct ks_wlan_private *priv) +static void hostif_infrastructure_set2_request(struct ks_wlan_private *priv) { struct hostif_infrastructure_set2_request_t *pp; uint16_t capability; --- linux-4.8.0.orig/drivers/staging/nvec/nvec_ps2.c +++ linux-4.8.0/drivers/staging/nvec/nvec_ps2.c @@ -106,13 +106,12 @@ { struct nvec_chip *nvec = dev_get_drvdata(pdev->dev.parent); struct serio *ser_dev; - char mouse_reset[] = { NVEC_PS2, SEND_COMMAND, PSMOUSE_RST, 3 }; - ser_dev = devm_kzalloc(&pdev->dev, sizeof(struct serio), GFP_KERNEL); + ser_dev = kzalloc(sizeof(struct serio), GFP_KERNEL); if (!ser_dev) return -ENOMEM; - ser_dev->id.type = SERIO_PS_PSTHRU; + ser_dev->id.type = SERIO_8042; ser_dev->write = ps2_sendcommand; ser_dev->start = ps2_startstreaming; ser_dev->stop = ps2_stopstreaming; @@ -127,9 +126,6 @@ serio_register_port(ser_dev); - /* mouse reset */ - nvec_write_async(nvec, mouse_reset, sizeof(mouse_reset)); - return 0; } --- linux-4.8.0.orig/drivers/staging/rtl8188eu/core/rtw_cmd.c +++ linux-4.8.0/drivers/staging/rtl8188eu/core/rtw_cmd.c @@ -670,13 +670,13 @@ u8 res = _SUCCESS; - ph2c = kzalloc(sizeof(struct cmd_obj), GFP_KERNEL); + ph2c = kzalloc(sizeof(struct cmd_obj), GFP_ATOMIC); if (!ph2c) { res = _FAIL; goto exit; } - paddbareq_parm = kzalloc(sizeof(struct addBaReq_parm), GFP_KERNEL); + paddbareq_parm = kzalloc(sizeof(struct addBaReq_parm), GFP_ATOMIC); if (!paddbareq_parm) { kfree(ph2c); res = _FAIL; --- linux-4.8.0.orig/drivers/staging/sm750fb/ddk750_mode.c +++ linux-4.8.0/drivers/staging/sm750fb/ddk750_mode.c @@ -63,7 +63,7 @@ dispControl |= (CRT_DISPLAY_CTRL_CRTSELECT | CRT_DISPLAY_CTRL_RGBBIT); /* Set bit 14 of display controller */ - dispControl = DISPLAY_CTRL_CLOCK_PHASE; + dispControl |= DISPLAY_CTRL_CLOCK_PHASE; POKE32(CRT_DISPLAY_CTRL, dispControl); --- linux-4.8.0.orig/drivers/staging/sm750fb/ddk750_reg.h +++ linux-4.8.0/drivers/staging/sm750fb/ddk750_reg.h @@ -601,13 +601,13 @@ #define PANEL_PLANE_TL 0x08001C #define PANEL_PLANE_TL_TOP_SHIFT 16 -#define PANEL_PLANE_TL_TOP_MASK (0xeff << 16) -#define PANEL_PLANE_TL_LEFT_MASK 0xeff +#define PANEL_PLANE_TL_TOP_MASK (0x7ff << 16) +#define PANEL_PLANE_TL_LEFT_MASK 0x7ff #define PANEL_PLANE_BR 0x080020 #define PANEL_PLANE_BR_BOTTOM_SHIFT 16 -#define PANEL_PLANE_BR_BOTTOM_MASK (0xeff << 16) -#define PANEL_PLANE_BR_RIGHT_MASK 0xeff +#define PANEL_PLANE_BR_BOTTOM_MASK (0x7ff << 16) +#define PANEL_PLANE_BR_RIGHT_MASK 0x7ff #define PANEL_HORIZONTAL_TOTAL 0x080024 #define PANEL_HORIZONTAL_TOTAL_TOTAL_SHIFT 16 --- linux-4.8.0.orig/drivers/staging/wilc1000/host_interface.c +++ linux-4.8.0/drivers/staging/wilc1000/host_interface.c @@ -3391,7 +3391,6 @@ clients_count++; - destroy_workqueue(hif_workqueue); _fail_: return result; } --- linux-4.8.0.orig/drivers/target/iscsi/iscsi_target_configfs.c +++ linux-4.8.0/drivers/target/iscsi/iscsi_target_configfs.c @@ -100,8 +100,10 @@ tpg_np_new = iscsit_tpg_add_network_portal(tpg, &np->np_sockaddr, tpg_np, type); - if (IS_ERR(tpg_np_new)) + if (IS_ERR(tpg_np_new)) { + rc = PTR_ERR(tpg_np_new); goto out; + } } else { tpg_np_new = iscsit_tpg_locate_child_np(tpg_np, type); if (tpg_np_new) { --- linux-4.8.0.orig/drivers/target/target_core_transport.c +++ linux-4.8.0/drivers/target/target_core_transport.c @@ -754,15 +754,7 @@ void target_complete_cmd_with_length(struct se_cmd *cmd, u8 scsi_status, int length) { - if (scsi_status != SAM_STAT_GOOD) { - return; - } - - /* - * Calculate new residual count based upon length of SCSI data - * transferred. - */ - if (length < cmd->data_length) { + if (scsi_status == SAM_STAT_GOOD && length < cmd->data_length) { if (cmd->se_cmd_flags & SCF_UNDERFLOW_BIT) { cmd->residual_count += cmd->data_length - length; } else { @@ -771,12 +763,6 @@ } cmd->data_length = length; - } else if (length > cmd->data_length) { - cmd->se_cmd_flags |= SCF_OVERFLOW_BIT; - cmd->residual_count = length - cmd->data_length; - } else { - cmd->se_cmd_flags &= ~(SCF_OVERFLOW_BIT | SCF_UNDERFLOW_BIT); - cmd->residual_count = 0; } target_complete_cmd(cmd, scsi_status); @@ -1706,6 +1692,7 @@ case TCM_LOGICAL_BLOCK_GUARD_CHECK_FAILED: case TCM_LOGICAL_BLOCK_APP_TAG_CHECK_FAILED: case TCM_LOGICAL_BLOCK_REF_TAG_CHECK_FAILED: + case TCM_COPY_TARGET_DEVICE_NOT_REACHABLE: break; case TCM_OUT_OF_RESOURCES: sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE; @@ -2547,8 +2534,10 @@ * fabric acknowledgement that requires two target_put_sess_cmd() * invocations before se_cmd descriptor release. */ - if (ack_kref) + if (ack_kref) { kref_get(&se_cmd->cmd_kref); + se_cmd->se_cmd_flags |= SCF_ACK_KREF; + } spin_lock_irqsave(&se_sess->sess_cmd_lock, flags); if (se_sess->sess_tearing_down) { @@ -2871,6 +2860,12 @@ .ascq = 0x03, /* LOGICAL BLOCK REFERENCE TAG CHECK FAILED */ .add_sector_info = true, }, + [TCM_COPY_TARGET_DEVICE_NOT_REACHABLE] = { + .key = COPY_ABORTED, + .asc = 0x0d, + .ascq = 0x02, /* COPY TARGET DEVICE NOT REACHABLE */ + + }, [TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE] = { /* * Returning ILLEGAL REQUEST would cause immediate IO errors on --- linux-4.8.0.orig/drivers/target/target_core_user.c +++ linux-4.8.0/drivers/target/target_core_user.c @@ -96,7 +96,7 @@ size_t dev_size; u32 cmdr_size; u32 cmdr_last_cleaned; - /* Offset of data ring from start of mb */ + /* Offset of data area from start of mb */ /* Must add data_off and mb_addr to get the address */ size_t data_off; size_t data_size; @@ -158,6 +158,14 @@ .netnsok = true, }; +/* Sense Key = 2 (Not Ready) + * ASC/ASCQ = 0x0800 (Logical Unit Communication Failure) + */ +static const char lu_comm_failure_sense[18] = { + 0x70, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x0a, + 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, + 0x00, 0x00 }; + static struct tcmu_cmd *tcmu_alloc_cmd(struct se_cmd *se_cmd) { struct se_device *se_dev = se_cmd->se_dev; @@ -349,7 +357,7 @@ /* * We can't queue a command until we have space available on the cmd ring *and* - * space available on the data ring. + * space available on the data area. * * Called with ring lock held. */ @@ -389,7 +397,8 @@ return true; } -static int tcmu_queue_cmd_ring(struct tcmu_cmd *tcmu_cmd) +static sense_reason_t +tcmu_queue_cmd_ring(struct tcmu_cmd *tcmu_cmd) { struct tcmu_dev *udev = tcmu_cmd->tcmu_dev; struct se_cmd *se_cmd = tcmu_cmd->se_cmd; @@ -405,7 +414,7 @@ DECLARE_BITMAP(old_bitmap, DATA_BLOCK_BITS); if (test_bit(TCMU_DEV_BIT_BROKEN, &udev->flags)) - return -EINVAL; + return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE; /* * Must be a certain minimum size for response sense info, but @@ -432,11 +441,14 @@ BUG_ON(!(se_cmd->t_bidi_data_sg && se_cmd->t_bidi_data_nents)); data_length += se_cmd->t_bidi_data_sg->length; } - if ((command_size > (udev->cmdr_size / 2)) - || data_length > udev->data_size) - pr_warn("TCMU: Request of size %zu/%zu may be too big for %u/%zu " - "cmd/data ring buffers\n", command_size, data_length, + if ((command_size > (udev->cmdr_size / 2)) || + data_length > udev->data_size) { + pr_warn("TCMU: Request of size %zu/%zu is too big for %u/%zu " + "cmd ring/data area\n", command_size, data_length, udev->cmdr_size, udev->data_size); + spin_unlock_irq(&udev->cmdr_lock); + return TCM_INVALID_CDB_FIELD; + } while (!is_ring_space_avail(udev, command_size, data_length)) { int ret; @@ -450,7 +462,7 @@ finish_wait(&udev->wait_cmdr, &__wait); if (!ret) { pr_warn("tcmu: command timed out\n"); - return -ETIMEDOUT; + return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE; } spin_lock_irq(&udev->cmdr_lock); @@ -487,9 +499,7 @@ bitmap_copy(old_bitmap, udev->data_bitmap, DATA_BLOCK_BITS); - /* - * Fix up iovecs, and handle if allocation in data ring wrapped. - */ + /* Handle allocating space from the data area */ iov = &entry->req.iov[0]; iov_cnt = 0; copy_to_data_area = (se_cmd->data_direction == DMA_TO_DEVICE @@ -526,10 +536,11 @@ mod_timer(&udev->timeout, round_jiffies_up(jiffies + msecs_to_jiffies(TCMU_TIME_OUT))); - return 0; + return TCM_NO_SENSE; } -static int tcmu_queue_cmd(struct se_cmd *se_cmd) +static sense_reason_t +tcmu_queue_cmd(struct se_cmd *se_cmd) { struct se_device *se_dev = se_cmd->se_dev; struct tcmu_dev *udev = TCMU_DEV(se_dev); @@ -538,10 +549,10 @@ tcmu_cmd = tcmu_alloc_cmd(se_cmd); if (!tcmu_cmd) - return -ENOMEM; + return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE; ret = tcmu_queue_cmd_ring(tcmu_cmd); - if (ret < 0) { + if (ret != TCM_NO_SENSE) { pr_err("TCMU: Could not queue command\n"); spin_lock_irq(&udev->commands_lock); idr_remove(&udev->commands, tcmu_cmd->cmd_id); @@ -561,7 +572,7 @@ if (test_bit(TCMU_CMD_BIT_EXPIRED, &cmd->flags)) { /* * cmd has been completed already from timeout, just reclaim - * data ring space and free cmd + * data area space and free cmd */ free_data_area(udev, cmd); @@ -574,9 +585,11 @@ pr_warn("TCMU: Userspace set UNKNOWN_OP flag on se_cmd %p\n", cmd->se_cmd); entry->rsp.scsi_status = SAM_STAT_CHECK_CONDITION; + memcpy(se_cmd->sense_buffer, lu_comm_failure_sense, + sizeof(lu_comm_failure_sense)); } else if (entry->rsp.scsi_status == SAM_STAT_CHECK_CONDITION) { memcpy(se_cmd->sense_buffer, entry->rsp.sense_buffer, - se_cmd->scsi_sense_length); + TRANSPORT_SENSE_BUFFER); free_data_area(udev, cmd); } else if (se_cmd->se_cmd_flags & SCF_BIDI) { DECLARE_BITMAP(bitmap, DATA_BLOCK_BITS); @@ -679,11 +692,11 @@ return 0; set_bit(TCMU_CMD_BIT_EXPIRED, &cmd->flags); + memcpy(cmd->se_cmd->sense_buffer, lu_comm_failure_sense, + sizeof(lu_comm_failure_sense)); target_complete_cmd(cmd->se_cmd, SAM_STAT_CHECK_CONDITION); cmd->se_cmd = NULL; - kmem_cache_free(tcmu_cmd_cache, cmd); - return 0; } @@ -1129,20 +1142,20 @@ } static sense_reason_t -tcmu_pass_op(struct se_cmd *se_cmd) +tcmu_parse_cdb(struct se_cmd *cmd) { - int ret = tcmu_queue_cmd(se_cmd); - - if (ret != 0) - return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE; - else - return TCM_NO_SENSE; + return passthrough_parse_cdb(cmd, tcmu_queue_cmd); } -static sense_reason_t -tcmu_parse_cdb(struct se_cmd *cmd) +static void tcmu_transport_complete(struct se_cmd *cmd, struct scatterlist *sg, + unsigned char *sense_buffer) { - return passthrough_parse_cdb(cmd, tcmu_pass_op); + if (cmd->scsi_status == SAM_STAT_CHECK_CONDITION) + /* Setting this flag will prevent target_complete_cmd from + * calling target_complete_failure_work, which would overwrite + * the sense data we already set. + */ + cmd->se_cmd_flags |= SCF_TRANSPORT_TASK_SENSE; } static const struct target_backend_ops tcmu_ops = { @@ -1155,6 +1168,7 @@ .configure_device = tcmu_configure_device, .free_device = tcmu_free_device, .parse_cdb = tcmu_parse_cdb, + .transport_complete = tcmu_transport_complete, .set_configfs_dev_params = tcmu_set_configfs_dev_params, .show_configfs_dev_params = tcmu_show_configfs_dev_params, .get_device_type = sbc_get_device_type, --- linux-4.8.0.orig/drivers/target/target_core_xcopy.c +++ linux-4.8.0/drivers/target/target_core_xcopy.c @@ -104,7 +104,7 @@ } mutex_unlock(&g_device_mutex); - pr_err("Unable to locate 0xe4 descriptor for EXTENDED_COPY\n"); + pr_debug_ratelimited("Unable to locate 0xe4 descriptor for EXTENDED_COPY\n"); return -EINVAL; } @@ -185,7 +185,7 @@ static int target_xcopy_parse_target_descriptors(struct se_cmd *se_cmd, struct xcopy_op *xop, unsigned char *p, - unsigned short tdll) + unsigned short tdll, sense_reason_t *sense_ret) { struct se_device *local_dev = se_cmd->se_dev; unsigned char *desc = p; @@ -193,6 +193,8 @@ unsigned short start = 0; bool src = true; + *sense_ret = TCM_INVALID_PARAMETER_LIST; + if (offset != 0) { pr_err("XCOPY target descriptor list length is not" " multiple of %d\n", XCOPY_TARGET_DESC_LEN); @@ -243,9 +245,16 @@ rc = target_xcopy_locate_se_dev_e4(se_cmd, xop, true); else rc = target_xcopy_locate_se_dev_e4(se_cmd, xop, false); - - if (rc < 0) + /* + * If a matching IEEE NAA 0x83 descriptor for the requested device + * is not located on this node, return COPY_ABORTED with ASQ/ASQC + * 0x0d/0x02 - COPY_TARGET_DEVICE_NOT_REACHABLE to request the + * initiator to fall back to normal copy method. + */ + if (rc < 0) { + *sense_ret = TCM_COPY_TARGET_DEVICE_NOT_REACHABLE; goto out; + } pr_debug("XCOPY TGT desc: Source dev: %p NAA IEEE WWN: 0x%16phN\n", xop->src_dev, &xop->src_tid_wwn[0]); @@ -653,6 +662,7 @@ rc = target_xcopy_setup_pt_cmd(xpt_cmd, xop, src_dev, &cdb[0], remote_port, true); if (rc < 0) { + ec_cmd->scsi_status = xpt_cmd->se_cmd.scsi_status; transport_generic_free_cmd(se_cmd, 0); return rc; } @@ -664,6 +674,7 @@ rc = target_xcopy_issue_pt_cmd(xpt_cmd); if (rc < 0) { + ec_cmd->scsi_status = xpt_cmd->se_cmd.scsi_status; transport_generic_free_cmd(se_cmd, 0); return rc; } @@ -714,6 +725,7 @@ remote_port, false); if (rc < 0) { struct se_cmd *src_cmd = &xop->src_pt_cmd->se_cmd; + ec_cmd->scsi_status = xpt_cmd->se_cmd.scsi_status; /* * If the failure happened before the t_mem_list hand-off in * target_xcopy_setup_pt_cmd(), Reset memory + clear flag so that @@ -729,6 +741,7 @@ rc = target_xcopy_issue_pt_cmd(xpt_cmd); if (rc < 0) { + ec_cmd->scsi_status = xpt_cmd->se_cmd.scsi_status; se_cmd->se_cmd_flags &= ~SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC; transport_generic_free_cmd(se_cmd, 0); return rc; @@ -815,9 +828,14 @@ out: xcopy_pt_undepend_remotedev(xop); kfree(xop); - - pr_warn("target_xcopy_do_work: Setting X-COPY CHECK_CONDITION -> sending response\n"); - ec_cmd->scsi_status = SAM_STAT_CHECK_CONDITION; + /* + * Don't override an error scsi status if it has already been set + */ + if (ec_cmd->scsi_status == SAM_STAT_GOOD) { + pr_warn_ratelimited("target_xcopy_do_work: rc: %d, Setting X-COPY" + " CHECK_CONDITION -> sending response\n", rc); + ec_cmd->scsi_status = SAM_STAT_CHECK_CONDITION; + } target_complete_cmd(ec_cmd, SAM_STAT_CHECK_CONDITION); } @@ -875,7 +893,7 @@ " tdll: %hu sdll: %u inline_dl: %u\n", list_id, list_id_usage, tdll, sdll, inline_dl); - rc = target_xcopy_parse_target_descriptors(se_cmd, xop, &p[16], tdll); + rc = target_xcopy_parse_target_descriptors(se_cmd, xop, &p[16], tdll, &ret); if (rc <= 0) goto out; --- linux-4.8.0.orig/drivers/target/tcm_fc/tfc_cmd.c +++ linux-4.8.0/drivers/target/tcm_fc/tfc_cmd.c @@ -572,7 +572,7 @@ if (target_submit_cmd(&cmd->se_cmd, cmd->sess->se_sess, fcp->fc_cdb, &cmd->ft_sense_buffer[0], scsilun_to_int(&fcp->fc_lun), ntohl(fcp->fc_dl), task_attr, data_dir, - TARGET_SCF_ACK_KREF)) + TARGET_SCF_ACK_KREF | TARGET_SCF_USE_CPUID)) goto err; pr_debug("r_ctl %x alloc target_submit_cmd\n", fh->fh_r_ctl); --- linux-4.8.0.orig/drivers/thermal/intel_powerclamp.c +++ linux-4.8.0/drivers/thermal/intel_powerclamp.c @@ -669,20 +669,17 @@ .set_cur_state = powerclamp_set_cur_state, }; -static const struct x86_cpu_id intel_powerclamp_ids[] __initconst = { +static const struct x86_cpu_id __initconst intel_powerclamp_ids[] = { { X86_VENDOR_INTEL, X86_FAMILY_ANY, X86_MODEL_ANY, X86_FEATURE_MWAIT }, - { X86_VENDOR_INTEL, X86_FAMILY_ANY, X86_MODEL_ANY, X86_FEATURE_ARAT }, - { X86_VENDOR_INTEL, X86_FAMILY_ANY, X86_MODEL_ANY, X86_FEATURE_NONSTOP_TSC }, - { X86_VENDOR_INTEL, X86_FAMILY_ANY, X86_MODEL_ANY, X86_FEATURE_CONSTANT_TSC}, {} }; MODULE_DEVICE_TABLE(x86cpu, intel_powerclamp_ids); static int __init powerclamp_probe(void) { + if (!x86_match_cpu(intel_powerclamp_ids)) { - pr_err("Intel powerclamp does not run on family %d model %d\n", - boot_cpu_data.x86, boot_cpu_data.x86_model); + pr_err("CPU does not support MWAIT"); return -ENODEV; } --- linux-4.8.0.orig/drivers/thermal/thermal_hwmon.c +++ linux-4.8.0/drivers/thermal/thermal_hwmon.c @@ -98,7 +98,7 @@ int temperature; int ret; - ret = tz->ops->get_trip_temp(tz, 0, &temperature); + ret = tz->ops->get_crit_temp(tz, &temperature); if (ret) return ret; --- linux-4.8.0.orig/drivers/tty/n_hdlc.c +++ linux-4.8.0/drivers/tty/n_hdlc.c @@ -114,7 +114,7 @@ #define DEFAULT_TX_BUF_COUNT 3 struct n_hdlc_buf { - struct n_hdlc_buf *link; + struct list_head list_item; int count; char buf[1]; }; @@ -122,8 +122,7 @@ #define N_HDLC_BUF_SIZE (sizeof(struct n_hdlc_buf) + maxframe) struct n_hdlc_buf_list { - struct n_hdlc_buf *head; - struct n_hdlc_buf *tail; + struct list_head list; int count; spinlock_t spinlock; }; @@ -136,7 +135,6 @@ * @backup_tty - TTY to use if tty gets closed * @tbusy - reentrancy flag for tx wakeup code * @woke_up - FIXME: describe this field - * @tbuf - currently transmitting tx buffer * @tx_buf_list - list of pending transmit frame buffers * @rx_buf_list - list of received frame buffers * @tx_free_buf_list - list unused transmit frame buffers @@ -149,7 +147,6 @@ struct tty_struct *backup_tty; int tbusy; int woke_up; - struct n_hdlc_buf *tbuf; struct n_hdlc_buf_list tx_buf_list; struct n_hdlc_buf_list rx_buf_list; struct n_hdlc_buf_list tx_free_buf_list; @@ -159,6 +156,8 @@ /* * HDLC buffer list manipulation functions */ +static void n_hdlc_buf_return(struct n_hdlc_buf_list *buf_list, + struct n_hdlc_buf *buf); static void n_hdlc_buf_put(struct n_hdlc_buf_list *list, struct n_hdlc_buf *buf); static struct n_hdlc_buf *n_hdlc_buf_get(struct n_hdlc_buf_list *list); @@ -208,16 +207,9 @@ { struct n_hdlc *n_hdlc = tty2n_hdlc(tty); struct n_hdlc_buf *buf; - unsigned long flags; while ((buf = n_hdlc_buf_get(&n_hdlc->tx_buf_list))) n_hdlc_buf_put(&n_hdlc->tx_free_buf_list, buf); - spin_lock_irqsave(&n_hdlc->tx_buf_list.spinlock, flags); - if (n_hdlc->tbuf) { - n_hdlc_buf_put(&n_hdlc->tx_free_buf_list, n_hdlc->tbuf); - n_hdlc->tbuf = NULL; - } - spin_unlock_irqrestore(&n_hdlc->tx_buf_list.spinlock, flags); } static struct tty_ldisc_ops n_hdlc_ldisc = { @@ -283,7 +275,6 @@ } else break; } - kfree(n_hdlc->tbuf); kfree(n_hdlc); } /* end of n_hdlc_release() */ @@ -402,13 +393,7 @@ n_hdlc->woke_up = 0; spin_unlock_irqrestore(&n_hdlc->tx_buf_list.spinlock, flags); - /* get current transmit buffer or get new transmit */ - /* buffer from list of pending transmit buffers */ - - tbuf = n_hdlc->tbuf; - if (!tbuf) - tbuf = n_hdlc_buf_get(&n_hdlc->tx_buf_list); - + tbuf = n_hdlc_buf_get(&n_hdlc->tx_buf_list); while (tbuf) { if (debuglevel >= DEBUG_LEVEL_INFO) printk("%s(%d)sending frame %p, count=%d\n", @@ -420,7 +405,7 @@ /* rollback was possible and has been done */ if (actual == -ERESTARTSYS) { - n_hdlc->tbuf = tbuf; + n_hdlc_buf_return(&n_hdlc->tx_buf_list, tbuf); break; } /* if transmit error, throw frame away by */ @@ -435,10 +420,7 @@ /* free current transmit buffer */ n_hdlc_buf_put(&n_hdlc->tx_free_buf_list, tbuf); - - /* this tx buffer is done */ - n_hdlc->tbuf = NULL; - + /* wait up sleeping writers */ wake_up_interruptible(&tty->write_wait); @@ -448,10 +430,12 @@ if (debuglevel >= DEBUG_LEVEL_INFO) printk("%s(%d)frame %p pending\n", __FILE__,__LINE__,tbuf); - - /* buffer not accepted by driver */ - /* set this buffer as pending buffer */ - n_hdlc->tbuf = tbuf; + + /* + * the buffer was not accepted by driver, + * return it back into tx queue + */ + n_hdlc_buf_return(&n_hdlc->tx_buf_list, tbuf); break; } } @@ -749,7 +733,8 @@ int error = 0; int count; unsigned long flags; - + struct n_hdlc_buf *buf = NULL; + if (debuglevel >= DEBUG_LEVEL_INFO) printk("%s(%d)n_hdlc_tty_ioctl() called %d\n", __FILE__,__LINE__,cmd); @@ -763,8 +748,10 @@ /* report count of read data available */ /* in next available frame (if any) */ spin_lock_irqsave(&n_hdlc->rx_buf_list.spinlock,flags); - if (n_hdlc->rx_buf_list.head) - count = n_hdlc->rx_buf_list.head->count; + buf = list_first_entry_or_null(&n_hdlc->rx_buf_list.list, + struct n_hdlc_buf, list_item); + if (buf) + count = buf->count; else count = 0; spin_unlock_irqrestore(&n_hdlc->rx_buf_list.spinlock,flags); @@ -776,8 +763,10 @@ count = tty_chars_in_buffer(tty); /* add size of next output frame in queue */ spin_lock_irqsave(&n_hdlc->tx_buf_list.spinlock,flags); - if (n_hdlc->tx_buf_list.head) - count += n_hdlc->tx_buf_list.head->count; + buf = list_first_entry_or_null(&n_hdlc->tx_buf_list.list, + struct n_hdlc_buf, list_item); + if (buf) + count += buf->count; spin_unlock_irqrestore(&n_hdlc->tx_buf_list.spinlock,flags); error = put_user(count, (int __user *)arg); break; @@ -825,14 +814,14 @@ poll_wait(filp, &tty->write_wait, wait); /* set bits for operations that won't block */ - if (n_hdlc->rx_buf_list.head) + if (!list_empty(&n_hdlc->rx_buf_list.list)) mask |= POLLIN | POLLRDNORM; /* readable */ if (test_bit(TTY_OTHER_CLOSED, &tty->flags)) mask |= POLLHUP; if (tty_hung_up_p(filp)) mask |= POLLHUP; if (!tty_is_writelocked(tty) && - n_hdlc->tx_free_buf_list.head) + !list_empty(&n_hdlc->tx_free_buf_list.list)) mask |= POLLOUT | POLLWRNORM; /* writable */ } return mask; @@ -856,7 +845,12 @@ spin_lock_init(&n_hdlc->tx_free_buf_list.spinlock); spin_lock_init(&n_hdlc->rx_buf_list.spinlock); spin_lock_init(&n_hdlc->tx_buf_list.spinlock); - + + INIT_LIST_HEAD(&n_hdlc->rx_free_buf_list.list); + INIT_LIST_HEAD(&n_hdlc->tx_free_buf_list.list); + INIT_LIST_HEAD(&n_hdlc->rx_buf_list.list); + INIT_LIST_HEAD(&n_hdlc->tx_buf_list.list); + /* allocate free rx buffer list */ for(i=0;ispinlock, flags); + + list_add(&buf->list_item, &buf_list->list); + buf_list->count++; + + spin_unlock_irqrestore(&buf_list->spinlock, flags); +} + +/** * n_hdlc_buf_put - add specified HDLC buffer to tail of specified list - * @list - pointer to buffer list + * @buf_list - pointer to buffer list * @buf - pointer to buffer */ -static void n_hdlc_buf_put(struct n_hdlc_buf_list *list, +static void n_hdlc_buf_put(struct n_hdlc_buf_list *buf_list, struct n_hdlc_buf *buf) { unsigned long flags; - spin_lock_irqsave(&list->spinlock,flags); - - buf->link=NULL; - if (list->tail) - list->tail->link = buf; - else - list->head = buf; - list->tail = buf; - (list->count)++; - - spin_unlock_irqrestore(&list->spinlock,flags); - + + spin_lock_irqsave(&buf_list->spinlock, flags); + + list_add_tail(&buf->list_item, &buf_list->list); + buf_list->count++; + + spin_unlock_irqrestore(&buf_list->spinlock, flags); } /* end of n_hdlc_buf_put() */ /** * n_hdlc_buf_get - remove and return an HDLC buffer from list - * @list - pointer to HDLC buffer list + * @buf_list - pointer to HDLC buffer list * * Remove and return an HDLC buffer from the head of the specified HDLC buffer * list. * Returns a pointer to HDLC buffer if available, otherwise %NULL. */ -static struct n_hdlc_buf* n_hdlc_buf_get(struct n_hdlc_buf_list *list) +static struct n_hdlc_buf *n_hdlc_buf_get(struct n_hdlc_buf_list *buf_list) { unsigned long flags; struct n_hdlc_buf *buf; - spin_lock_irqsave(&list->spinlock,flags); - - buf = list->head; + + spin_lock_irqsave(&buf_list->spinlock, flags); + + buf = list_first_entry_or_null(&buf_list->list, + struct n_hdlc_buf, list_item); if (buf) { - list->head = buf->link; - (list->count)--; + list_del(&buf->list_item); + buf_list->count--; } - if (!list->head) - list->tail = NULL; - - spin_unlock_irqrestore(&list->spinlock,flags); + + spin_unlock_irqrestore(&buf_list->spinlock, flags); return buf; - } /* end of n_hdlc_buf_get() */ static char hdlc_banner[] __initdata = --- linux-4.8.0.orig/drivers/tty/serial/8250/8250_dw.c +++ linux-4.8.0/drivers/tty/serial/8250/8250_dw.c @@ -462,7 +462,7 @@ } data->pclk = devm_clk_get(&pdev->dev, "apb_pclk"); - if (IS_ERR(data->clk) && PTR_ERR(data->clk) == -EPROBE_DEFER) { + if (IS_ERR(data->pclk) && PTR_ERR(data->pclk) == -EPROBE_DEFER) { err = -EPROBE_DEFER; goto err_clk; } --- linux-4.8.0.orig/drivers/tty/serial/8250/8250_pci.c +++ linux-4.8.0/drivers/tty/serial/8250/8250_pci.c @@ -56,6 +56,7 @@ struct pci_dev *dev; unsigned int nr; struct pci_serial_quirk *quirk; + const struct pciserial_board *board; int line[0]; }; @@ -4055,6 +4056,7 @@ } } priv->nr = i; + priv->board = board; return priv; err_deinit: @@ -4065,7 +4067,7 @@ } EXPORT_SYMBOL_GPL(pciserial_init_ports); -void pciserial_remove_ports(struct serial_private *priv) +void pciserial_detach_ports(struct serial_private *priv) { struct pci_serial_quirk *quirk; int i; @@ -4079,7 +4081,11 @@ quirk = find_quirk(priv->dev); if (quirk->exit) quirk->exit(priv->dev); +} +void pciserial_remove_ports(struct serial_private *priv) +{ + pciserial_detach_ports(priv); kfree(priv); } EXPORT_SYMBOL_GPL(pciserial_remove_ports); @@ -5803,7 +5809,7 @@ return PCI_ERS_RESULT_DISCONNECT; if (priv) - pciserial_suspend_ports(priv); + pciserial_detach_ports(priv); pci_disable_device(dev); @@ -5828,9 +5834,16 @@ static void serial8250_io_resume(struct pci_dev *dev) { struct serial_private *priv = pci_get_drvdata(dev); + struct serial_private *new; - if (priv) - pciserial_resume_ports(priv); + if (!priv) + return; + + new = pciserial_init_ports(dev, priv->board); + if (!IS_ERR(new)) { + pci_set_drvdata(dev, new); + kfree(priv); + } } static const struct pci_error_handlers serial8250_err_handler = { --- linux-4.8.0.orig/drivers/tty/serial/8250/8250_port.c +++ linux-4.8.0/drivers/tty/serial/8250/8250_port.c @@ -1414,12 +1414,8 @@ if (!(p->port.rs485.flags & SER_RS485_RX_DURING_TX)) { serial8250_clear_fifos(p); - serial8250_rpm_get(p); - p->ier |= UART_IER_RLSI | UART_IER_RDI; serial_port_out(&p->port, UART_IER, p->ier); - - serial8250_rpm_put(p); } } @@ -1429,6 +1425,7 @@ struct uart_8250_em485 *em485 = p->em485; unsigned long flags; + serial8250_rpm_get(p); spin_lock_irqsave(&p->port.lock, flags); if (em485 && em485->active_timer == &em485->stop_tx_timer) { @@ -1436,6 +1433,7 @@ em485->active_timer = NULL; } spin_unlock_irqrestore(&p->port.lock, flags); + serial8250_rpm_put(p); } static void __stop_tx_rs485(struct uart_8250_port *p) @@ -1475,7 +1473,7 @@ unsigned char lsr = serial_in(p, UART_LSR); /* * To provide required timeing and allow FIFO transfer, - * __stop_tx_rs485 must be called only when both FIFO and + * __stop_tx_rs485() must be called only when both FIFO and * shift register are empty. It is for device driver to enable * interrupt on TEMT. */ @@ -1484,9 +1482,10 @@ del_timer(&em485->start_tx_timer); em485->active_timer = NULL; + + __stop_tx_rs485(p); } __do_stop_tx(p); - __stop_tx_rs485(p); } static void serial8250_stop_tx(struct uart_port *port) --- linux-4.8.0.orig/drivers/tty/serial/amba-pl011.c +++ linux-4.8.0/drivers/tty/serial/amba-pl011.c @@ -2288,12 +2288,67 @@ return uart_set_options(&uap->port, co, baud, parity, bits, flow); } +/** + * pl011_console_match - non-standard console matching + * @co: registering console + * @name: name from console command line + * @idx: index from console command line + * @options: ptr to option string from console command line + * + * Only attempts to match console command lines of the form: + * console=pl011,mmio|mmio32,[,] + * console=pl011,0x[,] + * This form is used to register an initial earlycon boot console and + * replace it with the amba_console at pl011 driver init. + * + * Performs console setup for a match (as required by interface) + * If no are specified, then assume the h/w is already setup. + * + * Returns 0 if console matches; otherwise non-zero to use default matching + */ +static int __init pl011_console_match(struct console *co, char *name, int idx, + char *options) +{ + unsigned char iotype; + unsigned long addr; + int i; + + if (strcmp(name, "pl011") != 0) + return -ENODEV; + + if (uart_parse_earlycon(options, &iotype, &addr, &options)) + return -ENODEV; + + if (iotype != UPIO_MEM && iotype != UPIO_MEM32) + return -ENODEV; + + /* try to match the port specified on the command line */ + for (i = 0; i < ARRAY_SIZE(amba_ports); i++) { + struct uart_port *port; + + if (!amba_ports[i]) + continue; + + port = &amba_ports[i]->port; + + if (port->mapbase != addr) + continue; + + co->index = i; + port->cons = co; + return pl011_console_setup(co, options); + } + + return -ENODEV; +} + static struct uart_driver amba_reg; static struct console amba_console = { .name = "ttyAMA", .write = pl011_console_write, .device = uart_console_device, .setup = pl011_console_setup, + .match = pl011_console_match, .flags = CON_PRINTBUFFER, .index = -1, .data = &amba_reg, --- linux-4.8.0.orig/drivers/tty/serial/atmel_serial.c +++ linux-4.8.0/drivers/tty/serial/atmel_serial.c @@ -1929,6 +1929,9 @@ { struct atmel_uart_port *atmel_port = to_atmel_uart_port(port); + /* Disable modem control lines interrupts */ + atmel_disable_ms(port); + /* Disable interrupts at device level */ atmel_uart_writel(port, ATMEL_US_IDR, -1); @@ -1979,8 +1982,6 @@ */ free_irq(port->irq, port); - atmel_port->ms_irq_enabled = false; - atmel_flush_buffer(port); } @@ -2025,6 +2026,7 @@ static void atmel_set_termios(struct uart_port *port, struct ktermios *termios, struct ktermios *old) { + struct atmel_uart_port *atmel_port = to_atmel_uart_port(port); unsigned long flags; unsigned int old_mode, mode, imr, quot, baud; @@ -2128,11 +2130,29 @@ mode |= ATMEL_US_USMODE_RS485; } else if (termios->c_cflag & CRTSCTS) { /* RS232 with hardware handshake (RTS/CTS) */ - if (atmel_use_dma_rx(port) && !atmel_use_fifo(port)) { - dev_info(port->dev, "not enabling hardware flow control because DMA is used"); - termios->c_cflag &= ~CRTSCTS; - } else { + if (atmel_use_fifo(port) && + !mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_CTS)) { + /* + * with ATMEL_US_USMODE_HWHS set, the controller will + * be able to drive the RTS pin high/low when the RX + * FIFO is above RXFTHRES/below RXFTHRES2. + * It will also disable the transmitter when the CTS + * pin is high. + * This mode is not activated if CTS pin is a GPIO + * because in this case, the transmitter is always + * disabled (there must be an internal pull-up + * responsible for this behaviour). + * If the RTS pin is a GPIO, the controller won't be + * able to drive it according to the FIFO thresholds, + * but it will be handled by the driver. + */ mode |= ATMEL_US_USMODE_HWHS; + } else { + /* + * For platforms without FIFO, the flow control is + * handled by the driver. + */ + mode |= ATMEL_US_USMODE_NORMAL; } } else { /* RS232 without hadware handshake */ --- linux-4.8.0.orig/drivers/tty/serial/earlycon.c +++ linux-4.8.0/drivers/tty/serial/earlycon.c @@ -21,6 +21,7 @@ #include #include #include +#include #ifdef CONFIG_FIX_EARLYCON_MEM #include @@ -199,6 +200,14 @@ return -ENOENT; } +/* + * When CONFIG_ACPI_SPCR_TABLE is defined, "earlycon" without parameters in + * command line does not start DT earlycon immediately, instead it defers + * starting it until DT/ACPI decision is made. At that time if ACPI is enabled + * call parse_spcr(), else call early_init_dt_scan_chosen_stdout() + */ +bool earlycon_init_is_deferred __initdata; + /* early_param wrapper for setup_earlycon() */ static int __init param_setup_earlycon(char *buf) { @@ -208,8 +217,14 @@ * Just 'earlycon' is a valid param for devicetree earlycons; * don't generate a warning from parse_early_params() in that case */ - if (!buf || !buf[0]) - return 0; + if (!buf || !buf[0]) { + if (IS_ENABLED(CONFIG_ACPI_SPCR_TABLE)) { + earlycon_init_is_deferred = true; + return 0; + } else { + return early_init_dt_scan_chosen_stdout(); + } + } err = setup_earlycon(buf); if (err == -ENOENT || err == -EALREADY) --- linux-4.8.0.orig/drivers/tty/serial/imx.c +++ linux-4.8.0/drivers/tty/serial/imx.c @@ -740,12 +740,13 @@ { unsigned int tmp = TIOCM_DSR; unsigned usr1 = readl(sport->port.membase + USR1); + unsigned usr2 = readl(sport->port.membase + USR2); if (usr1 & USR1_RTSS) tmp |= TIOCM_CTS; /* in DCE mode DCDIN is always 0 */ - if (!(usr1 & USR2_DCDIN)) + if (!(usr2 & USR2_DCDIN)) tmp |= TIOCM_CAR; if (sport->dte_mode) --- linux-4.8.0.orig/drivers/tty/serial/sc16is7xx.c +++ linux-4.8.0/drivers/tty/serial/sc16is7xx.c @@ -1240,7 +1240,7 @@ /* Setup interrupt */ ret = devm_request_irq(dev, irq, sc16is7xx_irq, - IRQF_ONESHOT | flags, dev_name(dev), s); + flags, dev_name(dev), s); if (!ret) return 0; --- linux-4.8.0.orig/drivers/tty/tty_ldisc.c +++ linux-4.8.0/drivers/tty/tty_ldisc.c @@ -669,16 +669,17 @@ tty_ldisc_put(tty->ldisc); } - /* switch the line discipline */ - tty->ldisc = ld; tty_set_termios_ldisc(tty, disc); - retval = tty_ldisc_open(tty, tty->ldisc); + retval = tty_ldisc_open(tty, ld); if (retval) { if (!WARN_ON(disc == N_TTY)) { - tty_ldisc_put(tty->ldisc); - tty->ldisc = NULL; + tty_ldisc_put(ld); + ld = NULL; } } + + /* switch the line discipline */ + smp_store_release(&tty->ldisc, ld); return retval; } --- linux-4.8.0.orig/drivers/tty/vt/keyboard.c +++ linux-4.8.0/drivers/tty/vt/keyboard.c @@ -982,7 +982,7 @@ KBD_LED_TRIGGER((_led_bit) + 8, _name) static struct kbd_led_trigger kbd_led_triggers[] = { - KBD_LED_TRIGGER(VC_SCROLLOCK, "kbd-scrollock"), + KBD_LED_TRIGGER(VC_SCROLLOCK, "kbd-scrolllock"), KBD_LED_TRIGGER(VC_NUMLOCK, "kbd-numlock"), KBD_LED_TRIGGER(VC_CAPSLOCK, "kbd-capslock"), KBD_LED_TRIGGER(VC_KANALOCK, "kbd-kanalock"), --- linux-4.8.0.orig/drivers/tty/vt/vt.c +++ linux-4.8.0/drivers/tty/vt/vt.c @@ -102,6 +102,7 @@ #include #include #include +#include #define MAX_NR_CON_DRIVER 16 @@ -146,7 +147,7 @@ static int con_open(struct tty_struct *, struct file *); static void vc_init(struct vc_data *vc, unsigned int rows, - unsigned int cols, int do_clear); + unsigned int cols, int do_clear, int mode); static void gotoxy(struct vc_data *vc, int new_x, int new_y); static void save_cur(struct vc_data *vc); static void reset_terminal(struct vc_data *vc, int do_clear); @@ -170,6 +171,9 @@ static int cur_default = CUR_DEFAULT; module_param(cur_default, int, S_IRUGO | S_IWUSR); +int vt_handoff = 0; +module_param_named(handoff, vt_handoff, int, S_IRUGO | S_IWUSR); + /* * ignore_poke: don't unblank the screen when things are typed. This is * mainly for the privacy of braille terminal users. @@ -678,6 +682,13 @@ } if (tty0dev) sysfs_notify(&tty0dev->kobj, NULL, "active"); + /* + * If we are switching away from a transparent VT the contents + * will be lost, convert it into a blank text console then + * it will be repainted blank if we ever switch back. + */ + if (old_vc->vc_mode == KD_TRANSPARENT) + old_vc->vc_mode = KD_TEXT; } else { hide_cursor(vc); redraw = 1; @@ -794,7 +805,7 @@ if (global_cursor_default == -1) global_cursor_default = 1; - vc_init(vc, vc->vc_rows, vc->vc_cols, 1); + vc_init(vc, vc->vc_rows, vc->vc_cols, 1, KD_TEXT); vcs_make_sysfs(currcons); atomic_notifier_call_chain(&vt_notifier_list, VT_ALLOCATE, ¶m); @@ -870,10 +881,15 @@ if (new_cols == vc->vc_cols && new_rows == vc->vc_rows) return 0; + if (new_screen_size > (4 << 20)) + return -EINVAL; newscreen = kmalloc(new_screen_size, GFP_USER); if (!newscreen) return -ENOMEM; + if (vc == sel_cons) + clear_selection(); + old_rows = vc->vc_rows; old_row_size = vc->vc_size_row; @@ -1176,7 +1192,7 @@ break; case 3: /* erase scroll-back buffer (and whole display) */ scr_memsetw(vc->vc_screenbuf, vc->vc_video_erase_char, - vc->vc_screenbuf_size >> 1); + vc->vc_screenbuf_size); set_origin(vc); if (con_is_visible(vc)) update_screen(vc); @@ -2926,7 +2942,7 @@ module_param_named(underline, default_underline_color, int, S_IRUGO | S_IWUSR); static void vc_init(struct vc_data *vc, unsigned int rows, - unsigned int cols, int do_clear) + unsigned int cols, int do_clear, int mode) { int j, k ; @@ -2937,7 +2953,7 @@ set_origin(vc); vc->vc_pos = vc->vc_origin; - reset_vc(vc); + reset_vc(vc, mode); for (j=k=0; j<16; j++) { vc->vc_palette[k++] = default_red[j] ; vc->vc_palette[k++] = default_grn[j] ; @@ -2994,16 +3010,32 @@ mod_timer(&console_timer, jiffies + (blankinterval * HZ)); } + if (vt_handoff > 0 && vt_handoff <= MAX_NR_CONSOLES) { + currcons = vt_handoff - 1; + vc_cons[currcons].d = vc = kzalloc(sizeof(struct vc_data), GFP_NOWAIT); + INIT_WORK(&vc_cons[currcons].SAK_work, vc_SAK); + tty_port_init(&vc->port); + visual_init(vc, currcons, 1); + vc->vc_screenbuf = kzalloc(vc->vc_screenbuf_size, GFP_NOWAIT); + vc_init(vc, vc->vc_rows, vc->vc_cols, 0, KD_TRANSPARENT); + } for (currcons = 0; currcons < MIN_NR_CONSOLES; currcons++) { + if (currcons == vt_handoff - 1) + continue; vc_cons[currcons].d = vc = kzalloc(sizeof(struct vc_data), GFP_NOWAIT); INIT_WORK(&vc_cons[currcons].SAK_work, vc_SAK); tty_port_init(&vc->port); visual_init(vc, currcons, 1); vc->vc_screenbuf = kzalloc(vc->vc_screenbuf_size, GFP_NOWAIT); vc_init(vc, vc->vc_rows, vc->vc_cols, - currcons || !vc->vc_sw->con_save_screen); + currcons || !vc->vc_sw->con_save_screen, KD_TEXT); } currcons = fg_console = 0; + if (vt_handoff > 0) { + printk(KERN_INFO "vt handoff: transparent VT on vt#%d\n", + vt_handoff); + currcons = fg_console = vt_handoff - 1; + } master_display_fg = vc = vc_cons[currcons].d; set_origin(vc); save_screen(vc); --- linux-4.8.0.orig/drivers/tty/vt/vt_ioctl.c +++ linux-4.8.0/drivers/tty/vt/vt_ioctl.c @@ -1040,9 +1040,9 @@ return ret; } -void reset_vc(struct vc_data *vc) +void reset_vc(struct vc_data *vc, int mode) { - vc->vc_mode = KD_TEXT; + vc->vc_mode = mode; vt_reset_unicode(vc->vc_num); vc->vt_mode.mode = VT_AUTO; vc->vt_mode.waitv = 0; @@ -1074,7 +1074,7 @@ */ if (tty) __do_SAK(tty); - reset_vc(vc); + reset_vc(vc, KD_TEXT); } console_unlock(); } @@ -1331,7 +1331,7 @@ * this outside of VT_PROCESS but there is no single process * to account for and tracking tty count may be undesirable. */ - reset_vc(vc); + reset_vc(vc, KD_TEXT); if (old_vc_mode != vc->vc_mode) { if (vc->vc_mode == KD_TEXT) @@ -1403,7 +1403,7 @@ * this outside of VT_PROCESS but there is no single process * to account for and tracking tty count may be undesirable. */ - reset_vc(vc); + reset_vc(vc, KD_TEXT); /* * Fall through to normal (VT_AUTO) handling of the switch... --- linux-4.8.0.orig/drivers/uio/uio_dmem_genirq.c +++ linux-4.8.0/drivers/uio/uio_dmem_genirq.c @@ -229,7 +229,7 @@ ++uiomem; } - priv->dmem_region_start = i; + priv->dmem_region_start = uiomem - &uioinfo->mem[0]; priv->num_dmem_regions = pdata->num_dynamic_regions; for (i = 0; i < pdata->num_dynamic_regions; ++i) { --- linux-4.8.0.orig/drivers/usb/chipidea/core.c +++ linux-4.8.0/drivers/usb/chipidea/core.c @@ -914,6 +914,7 @@ if (!ci) return -ENOMEM; + spin_lock_init(&ci->lock); ci->dev = dev; ci->platdata = dev_get_platdata(dev); ci->imx28_write_fix = !!(ci->platdata->flags & --- linux-4.8.0.orig/drivers/usb/chipidea/host.c +++ linux-4.8.0/drivers/usb/chipidea/host.c @@ -185,6 +185,8 @@ if (hcd) { usb_remove_hcd(hcd); + ci->role = CI_ROLE_END; + synchronize_irq(ci->irq); usb_put_hcd(hcd); if (ci->platdata->reg_vbus && !ci_otg_is_fsm_mode(ci) && (ci->platdata->flags & CI_HDRC_TURN_VBUS_EARLY_ON)) --- linux-4.8.0.orig/drivers/usb/chipidea/udc.c +++ linux-4.8.0/drivers/usb/chipidea/udc.c @@ -1895,8 +1895,6 @@ struct usb_otg_caps *otg_caps = &ci->platdata->ci_otg_caps; int retval = 0; - spin_lock_init(&ci->lock); - ci->gadget.ops = &usb_gadget_ops; ci->gadget.speed = USB_SPEED_UNKNOWN; ci->gadget.max_speed = USB_SPEED_HIGH; --- linux-4.8.0.orig/drivers/usb/class/cdc-acm.c +++ linux-4.8.0/drivers/usb/class/cdc-acm.c @@ -946,8 +946,6 @@ DECLARE_WAITQUEUE(wait, current); struct async_icount old, new; - if (arg & (TIOCM_DSR | TIOCM_RI | TIOCM_CD)) - return -EINVAL; do { spin_lock_irq(&acm->read_lock); old = acm->oldcount; @@ -1175,6 +1173,8 @@ if (quirks == IGNORE_DEVICE) return -ENODEV; + memset(&h, 0x00, sizeof(struct usb_cdc_parsed_header)); + num_rx_buf = (quirks == SINGLE_RX_URB) ? 1 : ACM_NR; /* handle quirks deadly to normal probing*/ @@ -1732,6 +1732,7 @@ { USB_DEVICE(0x20df, 0x0001), /* Simtec Electronics Entropy Key */ .driver_info = QUIRK_CONTROL_LINE_STATE, }, { USB_DEVICE(0x2184, 0x001c) }, /* GW Instek AFG-2225 */ + { USB_DEVICE(0x2184, 0x0036) }, /* GW Instek AFG-125 */ { USB_DEVICE(0x22b8, 0x6425), /* Motorola MOTOMAGX phones */ }, /* Motorola H24 HSPA module: */ @@ -1875,6 +1876,20 @@ .driver_info = IGNORE_DEVICE, }, + /* Exclude Exar USB serial ports */ + { USB_DEVICE(0x04e2, 0x1400), .driver_info = IGNORE_DEVICE, }, + { USB_DEVICE(0x04e2, 0x1401), .driver_info = IGNORE_DEVICE, }, + { USB_DEVICE(0x04e2, 0x1402), .driver_info = IGNORE_DEVICE, }, + { USB_DEVICE(0x04e2, 0x1403), .driver_info = IGNORE_DEVICE, }, + { USB_DEVICE(0x04e2, 0x1410), .driver_info = IGNORE_DEVICE, }, + { USB_DEVICE(0x04e2, 0x1411), .driver_info = IGNORE_DEVICE, }, + { USB_DEVICE(0x04e2, 0x1412), .driver_info = IGNORE_DEVICE, }, + { USB_DEVICE(0x04e2, 0x1414), .driver_info = IGNORE_DEVICE, }, + { USB_DEVICE(0x04e2, 0x1420), .driver_info = IGNORE_DEVICE, }, + { USB_DEVICE(0x04e2, 0x1421), .driver_info = IGNORE_DEVICE, }, + { USB_DEVICE(0x04e2, 0x1422), .driver_info = IGNORE_DEVICE, }, + { USB_DEVICE(0x04e2, 0x1424), .driver_info = IGNORE_DEVICE, }, + /* control interfaces without any protocol set */ { USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM, USB_CDC_PROTO_NONE) }, --- linux-4.8.0.orig/drivers/usb/class/usbtmc.c +++ linux-4.8.0/drivers/usb/class/usbtmc.c @@ -141,6 +141,7 @@ struct usbtmc_device_data *data = to_usbtmc_data(kref); usb_put_dev(data->usb_dev); + kfree(data); } static int usbtmc_open(struct inode *inode, struct file *filp) @@ -1379,7 +1380,7 @@ dev_dbg(&intf->dev, "%s called\n", __func__); - data = devm_kzalloc(&intf->dev, sizeof(*data), GFP_KERNEL); + data = kmalloc(sizeof(*data), GFP_KERNEL); if (!data) return -ENOMEM; --- linux-4.8.0.orig/drivers/usb/core/hub.c +++ linux-4.8.0/drivers/usb/core/hub.c @@ -101,6 +101,8 @@ static void hub_release(struct kref *kref); static int usb_reset_and_verify_device(struct usb_device *udev); +static void hub_usb3_port_prepare_disable(struct usb_hub *hub, + struct usb_port *port_dev); static inline char *portspeed(struct usb_hub *hub, int portstatus) { @@ -899,82 +901,28 @@ } /* - * If USB 3.0 ports are placed into the Disabled state, they will no longer - * detect any device connects or disconnects. This is generally not what the - * USB core wants, since it expects a disabled port to produce a port status - * change event when a new device connects. - * - * Instead, set the link state to Disabled, wait for the link to settle into - * that state, clear any change bits, and then put the port into the RxDetect - * state. + * USB-3 does not have a similar link state as USB-2 that will avoid negotiating + * a connection with a plugged-in cable but will signal the host when the cable + * is unplugged. Disable remote wake and set link state to U3 for USB-3 devices */ -static int hub_usb3_port_disable(struct usb_hub *hub, int port1) -{ - int ret; - int total_time; - u16 portchange, portstatus; - - if (!hub_is_superspeed(hub->hdev)) - return -EINVAL; - - ret = hub_port_status(hub, port1, &portstatus, &portchange); - if (ret < 0) - return ret; - - /* - * USB controller Advanced Micro Devices, Inc. [AMD] FCH USB XHCI - * Controller [1022:7814] will have spurious result making the following - * usb 3.0 device hotplugging route to the 2.0 root hub and recognized - * as high-speed device if we set the usb 3.0 port link state to - * Disabled. Since it's already in USB_SS_PORT_LS_RX_DETECT state, we - * check the state here to avoid the bug. - */ - if ((portstatus & USB_PORT_STAT_LINK_STATE) == - USB_SS_PORT_LS_RX_DETECT) { - dev_dbg(&hub->ports[port1 - 1]->dev, - "Not disabling port; link state is RxDetect\n"); - return ret; - } - - ret = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_SS_DISABLED); - if (ret) - return ret; - - /* Wait for the link to enter the disabled state. */ - for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) { - ret = hub_port_status(hub, port1, &portstatus, &portchange); - if (ret < 0) - return ret; - - if ((portstatus & USB_PORT_STAT_LINK_STATE) == - USB_SS_PORT_LS_SS_DISABLED) - break; - if (total_time >= HUB_DEBOUNCE_TIMEOUT) - break; - msleep(HUB_DEBOUNCE_STEP); - } - if (total_time >= HUB_DEBOUNCE_TIMEOUT) - dev_warn(&hub->ports[port1 - 1]->dev, - "Could not disable after %d ms\n", total_time); - - return hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_RX_DETECT); -} - static int hub_port_disable(struct usb_hub *hub, int port1, int set_state) { struct usb_port *port_dev = hub->ports[port1 - 1]; struct usb_device *hdev = hub->hdev; int ret = 0; - if (port_dev->child && set_state) - usb_set_device_state(port_dev->child, USB_STATE_NOTATTACHED); if (!hub->error) { - if (hub_is_superspeed(hub->hdev)) - ret = hub_usb3_port_disable(hub, port1); - else + if (hub_is_superspeed(hub->hdev)) { + hub_usb3_port_prepare_disable(hub, port_dev); + ret = hub_set_port_link_state(hub, port_dev->portnum, + USB_SS_PORT_LS_U3); + } else { ret = usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_ENABLE); + } } + if (port_dev->child && set_state) + usb_set_device_state(port_dev->child, USB_STATE_NOTATTACHED); if (ret && ret != -ENODEV) dev_err(&port_dev->dev, "cannot disable (err = %d)\n", ret); return ret; @@ -2733,8 +2681,15 @@ if (ret < 0) return ret; - /* The port state is unknown until the reset completes. */ - if (!(portstatus & USB_PORT_STAT_RESET)) + /* + * The port state is unknown until the reset completes. + * + * On top of that, some chips may require additional time + * to re-establish a connection after the reset is complete, + * so also wait for the connection to be re-established. + */ + if (!(portstatus & USB_PORT_STAT_RESET) && + (portstatus & USB_PORT_STAT_CONNECTION)) break; /* switch to the long delay after two short delay failures */ @@ -4142,6 +4097,26 @@ } EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm); +/* usb3 devices use U3 for disabled, make sure remote wakeup is disabled */ +static void hub_usb3_port_prepare_disable(struct usb_hub *hub, + struct usb_port *port_dev) +{ + struct usb_device *udev = port_dev->child; + int ret; + + if (udev && udev->port_is_suspended && udev->do_remote_wakeup) { + ret = hub_set_port_link_state(hub, port_dev->portnum, + USB_SS_PORT_LS_U0); + if (!ret) { + msleep(USB_RESUME_TIMEOUT); + ret = usb_disable_remote_wakeup(udev); + } + if (ret) + dev_warn(&udev->dev, + "Port disable: can't disable remote wake\n"); + udev->do_remote_wakeup = 0; + } +} #else /* CONFIG_PM */ @@ -4149,6 +4124,9 @@ #define hub_resume NULL #define hub_reset_resume NULL +static inline void hub_usb3_port_prepare_disable(struct usb_hub *hub, + struct usb_port *port_dev) { } + int usb_disable_lpm(struct usb_device *udev) { return 0; --- linux-4.8.0.orig/drivers/usb/dwc3/core.c +++ linux-4.8.0/drivers/usb/dwc3/core.c @@ -669,15 +669,14 @@ return 0; err4: - phy_power_off(dwc->usb2_generic_phy); + phy_power_off(dwc->usb3_generic_phy); err3: - phy_power_off(dwc->usb3_generic_phy); + phy_power_off(dwc->usb2_generic_phy); err2: usb_phy_set_suspend(dwc->usb2_phy, 1); usb_phy_set_suspend(dwc->usb3_phy, 1); - dwc3_core_exit(dwc); err1: usb_phy_shutdown(dwc->usb2_phy); --- linux-4.8.0.orig/drivers/usb/dwc3/gadget.c +++ linux-4.8.0/drivers/usb/dwc3/gadget.c @@ -348,7 +348,8 @@ * IN transfers due to a mishandled error condition. Synopsys * STAR 9000614252. */ - if (dep->direction && (dwc->revision >= DWC3_REVISION_260A)) + if (dep->direction && (dwc->revision >= DWC3_REVISION_260A) && + (dwc->gadget.speed >= USB_SPEED_SUPER)) cmd |= DWC3_DEPCMD_CLEARPENDIN; memset(¶ms, 0, sizeof(params)); @@ -774,6 +775,9 @@ unsigned length, unsigned last, unsigned chain, unsigned node) { struct dwc3_trb *trb; + struct dwc3 *dwc = dep->dwc; + struct usb_gadget *gadget = &dwc->gadget; + enum usb_device_speed speed = gadget->speed; dwc3_trace(trace_dwc3_gadget, "%s: req %p dma %08llx length %d%s%s", dep->name, req, (unsigned long long) dma, @@ -788,6 +792,7 @@ req->trb = trb; req->trb_dma = dwc3_trb_dma_offset(dep, trb); req->first_trb_index = dep->trb_enqueue; + dep->queued_requests++; } dwc3_ep_inc_enq(dep); @@ -802,10 +807,16 @@ break; case USB_ENDPOINT_XFER_ISOC: - if (!node) + if (!node) { trb->ctrl = DWC3_TRBCTL_ISOCHRONOUS_FIRST; - else + + if (speed == USB_SPEED_HIGH) { + struct usb_ep *ep = &dep->endpoint; + trb->size |= DWC3_TRB_SIZE_PCM1(ep->mult - 1); + } + } else { trb->ctrl = DWC3_TRBCTL_ISOCHRONOUS; + } /* always enable Interrupt on Missed ISOC */ trb->ctrl |= DWC3_TRB_CTRL_ISP_IMI; @@ -840,8 +851,6 @@ trb->ctrl |= DWC3_TRB_CTRL_HWO; - dep->queued_requests++; - trace_dwc3_prepare_trb(dep, trb); } @@ -1962,7 +1971,9 @@ unsigned int s_pkt = 0; unsigned int trb_status; - dep->queued_requests--; + if (req->trb == trb) + dep->queued_requests--; + trace_dwc3_complete_trb(dep, trb); /* @@ -3054,7 +3065,7 @@ kfree(dwc->setup_buf); err2: - dma_free_coherent(dwc->dev, sizeof(*dwc->ep0_trb), + dma_free_coherent(dwc->dev, sizeof(*dwc->ep0_trb) * 2, dwc->ep0_trb, dwc->ep0_trb_addr); err1: @@ -3079,7 +3090,7 @@ kfree(dwc->setup_buf); kfree(dwc->zlp_buf); - dma_free_coherent(dwc->dev, sizeof(*dwc->ep0_trb), + dma_free_coherent(dwc->dev, sizeof(*dwc->ep0_trb) * 2, dwc->ep0_trb, dwc->ep0_trb_addr); dma_free_coherent(dwc->dev, sizeof(*dwc->ctrl_req), --- linux-4.8.0.orig/drivers/usb/gadget/composite.c +++ linux-4.8.0/drivers/usb/gadget/composite.c @@ -197,11 +197,16 @@ ep_found: /* commit results */ - _ep->maxpacket = usb_endpoint_maxp(chosen_desc); + _ep->maxpacket = usb_endpoint_maxp(chosen_desc) & 0x7ff; _ep->desc = chosen_desc; _ep->comp_desc = NULL; _ep->maxburst = 0; - _ep->mult = 0; + _ep->mult = 1; + + if (g->speed == USB_SPEED_HIGH && (usb_endpoint_xfer_isoc(_ep->desc) || + usb_endpoint_xfer_int(_ep->desc))) + _ep->mult = usb_endpoint_maxp(_ep->desc) & 0x7ff; + if (!want_comp_desc) return 0; @@ -218,7 +223,7 @@ switch (usb_endpoint_type(_ep->desc)) { case USB_ENDPOINT_XFER_ISOC: /* mult: bits 1:0 of bmAttributes */ - _ep->mult = comp_desc->bmAttributes & 0x3; + _ep->mult = (comp_desc->bmAttributes & 0x3) + 1; case USB_ENDPOINT_XFER_BULK: case USB_ENDPOINT_XFER_INT: _ep->maxburst = comp_desc->bMaxBurst + 1; --- linux-4.8.0.orig/drivers/usb/gadget/function/f_fs.c +++ linux-4.8.0/drivers/usb/gadget/function/f_fs.c @@ -133,8 +133,60 @@ /* * Buffer for holding data from partial reads which may happen since * we’re rounding user read requests to a multiple of a max packet size. + * + * The pointer is initialised with NULL value and may be set by + * __ffs_epfile_read_data function to point to a temporary buffer. + * + * In normal operation, calls to __ffs_epfile_read_buffered will consume + * data from said buffer and eventually free it. Importantly, while the + * function is using the buffer, it sets the pointer to NULL. This is + * all right since __ffs_epfile_read_data and __ffs_epfile_read_buffered + * can never run concurrently (they are synchronised by epfile->mutex) + * so the latter will not assign a new value to the pointer. + * + * Meanwhile ffs_func_eps_disable frees the buffer (if the pointer is + * valid) and sets the pointer to READ_BUFFER_DROP value. This special + * value is crux of the synchronisation between ffs_func_eps_disable and + * __ffs_epfile_read_data. + * + * Once __ffs_epfile_read_data is about to finish it will try to set the + * pointer back to its old value (as described above), but seeing as the + * pointer is not-NULL (namely READ_BUFFER_DROP) it will instead free + * the buffer. + * + * == State transitions == + * + * • ptr == NULL: (initial state) + * â—¦ __ffs_epfile_read_buffer_free: go to ptr == DROP + * â—¦ __ffs_epfile_read_buffered: nop + * â—¦ __ffs_epfile_read_data allocates temp buffer: go to ptr == buf + * â—¦ reading finishes: n/a, not in ‘and reading’ state + * • ptr == DROP: + * â—¦ __ffs_epfile_read_buffer_free: nop + * â—¦ __ffs_epfile_read_buffered: go to ptr == NULL + * â—¦ __ffs_epfile_read_data allocates temp buffer: free buf, nop + * â—¦ reading finishes: n/a, not in ‘and reading’ state + * • ptr == buf: + * â—¦ __ffs_epfile_read_buffer_free: free buf, go to ptr == DROP + * â—¦ __ffs_epfile_read_buffered: go to ptr == NULL and reading + * â—¦ __ffs_epfile_read_data: n/a, __ffs_epfile_read_buffered + * is always called first + * â—¦ reading finishes: n/a, not in ‘and reading’ state + * • ptr == NULL and reading: + * â—¦ __ffs_epfile_read_buffer_free: go to ptr == DROP and reading + * â—¦ __ffs_epfile_read_buffered: n/a, mutex is held + * â—¦ __ffs_epfile_read_data: n/a, mutex is held + * â—¦ reading finishes and … + * … all data read: free buf, go to ptr == NULL + * … otherwise: go to ptr == buf and reading + * • ptr == DROP and reading: + * â—¦ __ffs_epfile_read_buffer_free: nop + * â—¦ __ffs_epfile_read_buffered: n/a, mutex is held + * â—¦ __ffs_epfile_read_data: n/a, mutex is held + * â—¦ reading finishes: free buf, go to ptr == DROP */ - struct ffs_buffer *read_buffer; /* P: epfile->mutex */ + struct ffs_buffer *read_buffer; +#define READ_BUFFER_DROP ((struct ffs_buffer *)ERR_PTR(-ESHUTDOWN)) char name[5]; @@ -733,25 +785,47 @@ schedule_work(&io_data->work); } +static void __ffs_epfile_read_buffer_free(struct ffs_epfile *epfile) +{ + /* + * See comment in struct ffs_epfile for full read_buffer pointer + * synchronisation story. + */ + struct ffs_buffer *buf = xchg(&epfile->read_buffer, READ_BUFFER_DROP); + if (buf && buf != READ_BUFFER_DROP) + kfree(buf); +} + /* Assumes epfile->mutex is held. */ static ssize_t __ffs_epfile_read_buffered(struct ffs_epfile *epfile, struct iov_iter *iter) { - struct ffs_buffer *buf = epfile->read_buffer; + /* + * Null out epfile->read_buffer so ffs_func_eps_disable does not free + * the buffer while we are using it. See comment in struct ffs_epfile + * for full read_buffer pointer synchronisation story. + */ + struct ffs_buffer *buf = xchg(&epfile->read_buffer, NULL); ssize_t ret; - if (!buf) + if (!buf || buf == READ_BUFFER_DROP) return 0; ret = copy_to_iter(buf->data, buf->length, iter); if (buf->length == ret) { kfree(buf); - epfile->read_buffer = NULL; - } else if (unlikely(iov_iter_count(iter))) { + return ret; + } + + if (unlikely(iov_iter_count(iter))) { ret = -EFAULT; } else { buf->length -= ret; buf->data += ret; } + + if (cmpxchg(&epfile->read_buffer, NULL, buf)) + kfree(buf); + return ret; } @@ -780,7 +854,15 @@ buf->length = data_len; buf->data = buf->storage; memcpy(buf->storage, data + ret, data_len); - epfile->read_buffer = buf; + + /* + * At this point read_buffer is NULL or READ_BUFFER_DROP (if + * ffs_func_eps_disable has been called in the meanwhile). See comment + * in struct ffs_epfile for full read_buffer pointer synchronisation + * story. + */ + if (unlikely(cmpxchg(&epfile->read_buffer, NULL, buf))) + kfree(buf); return ret; } @@ -1094,8 +1176,7 @@ ENTER(); - kfree(epfile->read_buffer); - epfile->read_buffer = NULL; + __ffs_epfile_read_buffer_free(epfile); ffs_data_closed(epfile->ffs); return 0; @@ -1721,24 +1802,20 @@ unsigned count = func->ffs->eps_count; unsigned long flags; + spin_lock_irqsave(&func->ffs->eps_lock, flags); do { - if (epfile) - mutex_lock(&epfile->mutex); - spin_lock_irqsave(&func->ffs->eps_lock, flags); /* pending requests get nuked */ if (likely(ep->ep)) usb_ep_disable(ep->ep); ++ep; - spin_unlock_irqrestore(&func->ffs->eps_lock, flags); if (epfile) { epfile->ep = NULL; - kfree(epfile->read_buffer); - epfile->read_buffer = NULL; - mutex_unlock(&epfile->mutex); + __ffs_epfile_read_buffer_free(epfile); ++epfile; } } while (--count); + spin_unlock_irqrestore(&func->ffs->eps_lock, flags); } static int ffs_func_eps_enable(struct ffs_function *func) --- linux-4.8.0.orig/drivers/usb/gadget/function/f_uac2.c +++ linux-4.8.0/drivers/usb/gadget/function/f_uac2.c @@ -1067,13 +1067,13 @@ agdev->out_ep = usb_ep_autoconfig(gadget, &fs_epout_desc); if (!agdev->out_ep) { dev_err(dev, "%s:%d Error!\n", __func__, __LINE__); - goto err; + return ret; } agdev->in_ep = usb_ep_autoconfig(gadget, &fs_epin_desc); if (!agdev->in_ep) { dev_err(dev, "%s:%d Error!\n", __func__, __LINE__); - goto err; + return ret; } uac2->p_prm.uac2 = uac2; @@ -1091,7 +1091,7 @@ ret = usb_assign_descriptors(fn, fs_audio_desc, hs_audio_desc, NULL, NULL); if (ret) - goto err; + return ret; prm = &agdev->uac2.c_prm; prm->max_psize = hs_epout_desc.wMaxPacketSize; @@ -1106,19 +1106,19 @@ prm->rbuf = kzalloc(prm->max_psize * USB_XFERS, GFP_KERNEL); if (!prm->rbuf) { prm->max_psize = 0; - goto err_free_descs; + goto err; } ret = alsa_uac2_init(agdev); if (ret) - goto err_free_descs; + goto err; return 0; -err_free_descs: - usb_free_all_descriptors(fn); err: kfree(agdev->uac2.p_prm.rbuf); kfree(agdev->uac2.c_prm.rbuf); +err_free_descs: + usb_free_all_descriptors(fn); return -EINVAL; } --- linux-4.8.0.orig/drivers/usb/gadget/function/u_ether.c +++ linux-4.8.0/drivers/usb/gadget/function/u_ether.c @@ -585,13 +585,6 @@ req->length = length; - /* throttle high/super speed IRQ rate back slightly */ - if (gadget_is_dualspeed(dev->gadget)) - req->no_interrupt = (dev->gadget->speed == USB_SPEED_HIGH || - dev->gadget->speed == USB_SPEED_SUPER) - ? ((atomic_read(&dev->tx_qlen) % dev->qmult) != 0) - : 0; - retval = usb_ep_queue(in, req, GFP_ATOMIC); switch (retval) { default: --- linux-4.8.0.orig/drivers/usb/gadget/function/uvc_video.c +++ linux-4.8.0/drivers/usb/gadget/function/uvc_video.c @@ -243,7 +243,7 @@ req_size = video->ep->maxpacket * max_t(unsigned int, video->ep->maxburst, 1) - * (video->ep->mult + 1); + * (video->ep->mult); for (i = 0; i < UVC_NUM_REQUESTS; ++i) { video->req_buffer[i] = kmalloc(req_size, GFP_KERNEL); --- linux-4.8.0.orig/drivers/usb/gadget/udc/atmel_usba_udc.c +++ linux-4.8.0/drivers/usb/gadget/udc/atmel_usba_udc.c @@ -1978,7 +1978,7 @@ dev_err(&pdev->dev, "of_probe: name error(%d)\n", ret); goto err; } - ep->ep.name = name; + ep->ep.name = kasprintf(GFP_KERNEL, "ep%d", ep->index); ep->ep_regs = udc->regs + USBA_EPT_BASE(i); ep->dma_regs = udc->regs + USBA_DMA_BASE(i); --- linux-4.8.0.orig/drivers/usb/host/ohci-hcd.c +++ linux-4.8.0/drivers/usb/host/ohci-hcd.c @@ -72,7 +72,7 @@ static const char hcd_name [] = "ohci_hcd"; #define STATECHANGE_DELAY msecs_to_jiffies(300) -#define IO_WATCHDOG_DELAY msecs_to_jiffies(250) +#define IO_WATCHDOG_DELAY msecs_to_jiffies(275) #include "ohci.h" #include "pci-quirks.h" --- linux-4.8.0.orig/drivers/usb/host/uhci-pci.c +++ linux-4.8.0/drivers/usb/host/uhci-pci.c @@ -129,6 +129,10 @@ if (to_pci_dev(uhci_dev(uhci))->vendor == PCI_VENDOR_ID_HP) uhci->wait_for_hp = 1; + /* Intel controllers use non-PME wakeup signalling */ + if (to_pci_dev(uhci_dev(uhci))->vendor == PCI_VENDOR_ID_INTEL) + device_set_run_wake(uhci_dev(uhci), 1); + /* Set up pointers to PCI-specific functions */ uhci->reset_hc = uhci_pci_reset_hc; uhci->check_and_reset_hc = uhci_pci_check_and_reset_hc; --- linux-4.8.0.orig/drivers/usb/host/xhci-hub.c +++ linux-4.8.0/drivers/usb/host/xhci-hub.c @@ -1166,7 +1166,7 @@ xhci_set_link_state(xhci, port_array, wIndex, XDEV_RESUME); spin_unlock_irqrestore(&xhci->lock, flags); - msleep(20); + msleep(USB_RESUME_TIMEOUT); spin_lock_irqsave(&xhci->lock, flags); xhci_set_link_state(xhci, port_array, wIndex, XDEV_U0); @@ -1355,6 +1355,35 @@ return 0; } +/* + * Workaround for missing Cold Attach Status (CAS) if device re-plugged in S3. + * warm reset a USB3 device stuck in polling or compliance mode after resume. + * See Intel 100/c230 series PCH specification update Doc #332692-006 Errata #8 + */ +static bool xhci_port_missing_cas_quirk(int port_index, + __le32 __iomem **port_array) +{ + u32 portsc; + + portsc = readl(port_array[port_index]); + + /* if any of these are set we are not stuck */ + if (portsc & (PORT_CONNECT | PORT_CAS)) + return false; + + if (((portsc & PORT_PLS_MASK) != XDEV_POLLING) && + ((portsc & PORT_PLS_MASK) != XDEV_COMP_MODE)) + return false; + + /* clear wakeup/change bits, and do a warm port reset */ + portsc &= ~(PORT_RWC_BITS | PORT_CEC | PORT_WAKE_BITS); + portsc |= PORT_WR; + writel(portsc, port_array[port_index]); + /* flush write */ + readl(port_array[port_index]); + return true; +} + int xhci_bus_resume(struct usb_hcd *hcd) { struct xhci_hcd *xhci = hcd_to_xhci(hcd); @@ -1392,6 +1421,14 @@ u32 temp; temp = readl(port_array[port_index]); + + /* warm reset CAS limited ports stuck in polling/compliance */ + if ((xhci->quirks & XHCI_MISSING_CAS) && + (hcd->speed >= HCD_USB3) && + xhci_port_missing_cas_quirk(port_index, port_array)) { + xhci_dbg(xhci, "reset stuck port %d\n", port_index); + continue; + } if (DEV_SUPERSPEED_ANY(temp)) temp &= ~(PORT_RWC_BITS | PORT_CEC | PORT_WAKE_BITS); else @@ -1410,7 +1447,7 @@ if (need_usb2_u3_exit) { spin_unlock_irqrestore(&xhci->lock, flags); - msleep(20); + msleep(USB_RESUME_TIMEOUT); spin_lock_irqsave(&xhci->lock, flags); } --- linux-4.8.0.orig/drivers/usb/host/xhci-pci.c +++ linux-4.8.0/drivers/usb/host/xhci-pci.c @@ -45,11 +45,13 @@ #define PCI_DEVICE_ID_INTEL_LYNXPOINT_XHCI 0x8c31 #define PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_XHCI 0x9c31 +#define PCI_DEVICE_ID_INTEL_WILDCATPOINT_LP_XHCI 0x9cb1 #define PCI_DEVICE_ID_INTEL_CHERRYVIEW_XHCI 0x22b5 #define PCI_DEVICE_ID_INTEL_SUNRISEPOINT_H_XHCI 0xa12f #define PCI_DEVICE_ID_INTEL_SUNRISEPOINT_LP_XHCI 0x9d2f #define PCI_DEVICE_ID_INTEL_BROXTON_M_XHCI 0x0aa8 #define PCI_DEVICE_ID_INTEL_BROXTON_B_XHCI 0x1aa8 +#define PCI_DEVICE_ID_INTEL_APL_XHCI 0x5aa8 static const char hcd_name[] = "xhci_hcd"; @@ -153,7 +155,8 @@ xhci->quirks |= XHCI_SPURIOUS_REBOOT; } if (pdev->vendor == PCI_VENDOR_ID_INTEL && - pdev->device == PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_XHCI) { + (pdev->device == PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_XHCI || + pdev->device == PCI_DEVICE_ID_INTEL_WILDCATPOINT_LP_XHCI)) { xhci->quirks |= XHCI_SPURIOUS_REBOOT; xhci->quirks |= XHCI_SPURIOUS_WAKEUP; } @@ -169,6 +172,11 @@ pdev->device == PCI_DEVICE_ID_INTEL_CHERRYVIEW_XHCI) { xhci->quirks |= XHCI_SSIC_PORT_UNUSED; } + if (pdev->vendor == PCI_VENDOR_ID_INTEL && + (pdev->device == PCI_DEVICE_ID_INTEL_CHERRYVIEW_XHCI || + pdev->device == PCI_DEVICE_ID_INTEL_APL_XHCI)) + xhci->quirks |= XHCI_MISSING_CAS; + if (pdev->vendor == PCI_VENDOR_ID_ETRON && pdev->device == PCI_DEVICE_ID_EJ168) { xhci->quirks |= XHCI_RESET_ON_RESUME; --- linux-4.8.0.orig/drivers/usb/host/xhci.h +++ linux-4.8.0/drivers/usb/host/xhci.h @@ -314,6 +314,8 @@ #define XDEV_U2 (0x2 << 5) #define XDEV_U3 (0x3 << 5) #define XDEV_INACTIVE (0x6 << 5) +#define XDEV_POLLING (0x7 << 5) +#define XDEV_COMP_MODE (0xa << 5) #define XDEV_RESUME (0xf << 5) /* true: port has power (see HCC_PPC) */ #define PORT_POWER (1 << 9) @@ -1653,6 +1655,7 @@ #define XHCI_MTK_HOST (1 << 21) #define XHCI_SSIC_PORT_UNUSED (1 << 22) #define XHCI_NO_64BIT_SUPPORT (1 << 23) +#define XHCI_MISSING_CAS (1 << 24) unsigned int num_active_eps; unsigned int limit_active_eps; /* There are two roothubs to keep track of bus suspend info for */ --- linux-4.8.0.orig/drivers/usb/misc/legousbtower.c +++ linux-4.8.0/drivers/usb/misc/legousbtower.c @@ -898,24 +898,6 @@ dev->interrupt_in_interval = interrupt_in_interval ? interrupt_in_interval : dev->interrupt_in_endpoint->bInterval; dev->interrupt_out_interval = interrupt_out_interval ? interrupt_out_interval : dev->interrupt_out_endpoint->bInterval; - /* we can register the device now, as it is ready */ - usb_set_intfdata (interface, dev); - - retval = usb_register_dev (interface, &tower_class); - - if (retval) { - /* something prevented us from registering this driver */ - dev_err(idev, "Not able to get a minor for this device.\n"); - usb_set_intfdata (interface, NULL); - goto error; - } - dev->minor = interface->minor; - - /* let the user know what node this device is now attached to */ - dev_info(&interface->dev, "LEGO USB Tower #%d now attached to major " - "%d minor %d\n", (dev->minor - LEGO_USB_TOWER_MINOR_BASE), - USB_MAJOR, dev->minor); - /* get the firmware version and log it */ result = usb_control_msg (udev, usb_rcvctrlpipe(udev, 0), @@ -936,6 +918,23 @@ get_version_reply.minor, le16_to_cpu(get_version_reply.build_no)); + /* we can register the device now, as it is ready */ + usb_set_intfdata (interface, dev); + + retval = usb_register_dev (interface, &tower_class); + + if (retval) { + /* something prevented us from registering this driver */ + dev_err(idev, "Not able to get a minor for this device.\n"); + usb_set_intfdata (interface, NULL); + goto error; + } + dev->minor = interface->minor; + + /* let the user know what node this device is now attached to */ + dev_info(&interface->dev, "LEGO USB Tower #%d now attached to major " + "%d minor %d\n", (dev->minor - LEGO_USB_TOWER_MINOR_BASE), + USB_MAJOR, dev->minor); exit: return retval; --- linux-4.8.0.orig/drivers/usb/musb/omap2430.c +++ linux-4.8.0/drivers/usb/musb/omap2430.c @@ -337,6 +337,7 @@ } musb->isr = omap2430_musb_interrupt; phy_init(musb->phy); + phy_power_on(musb->phy); l = musb_readl(musb->mregs, OTG_INTERFSEL); @@ -373,8 +374,6 @@ struct musb_hdrc_platform_data *pdata = dev_get_platdata(dev); struct omap_musb_board_data *data = pdata->board_data; - if (!WARN_ON(!musb->phy)) - phy_power_on(musb->phy); omap2430_set_power(musb, true, glue->cable_connected); @@ -413,9 +412,6 @@ struct device *dev = musb->controller; struct omap2430_glue *glue = dev_get_drvdata(dev->parent); - if (!WARN_ON(!musb->phy)) - phy_power_off(musb->phy); - if (glue->status != MUSB_UNKNOWN) omap_control_usb_set_mode(glue->control_otghs, USB_MODE_DISCONNECT); @@ -429,6 +425,7 @@ struct omap2430_glue *glue = dev_get_drvdata(dev->parent); omap2430_low_level_exit(musb); + phy_power_off(musb->phy); phy_exit(musb->phy); musb->phy = NULL; cancel_work_sync(&glue->omap_musb_mailbox_work); --- linux-4.8.0.orig/drivers/usb/renesas_usbhs/rcar3.c +++ linux-4.8.0/drivers/usb/renesas_usbhs/rcar3.c @@ -9,6 +9,7 @@ * */ +#include #include #include "common.h" #include "rcar3.h" @@ -35,10 +36,13 @@ usbhs_write32(priv, UGCTRL2, UGCTRL2_RESERVED_3 | UGCTRL2_USB0SEL_OTG); - if (enable) + if (enable) { usbhs_bset(priv, LPSTS, LPSTS_SUSPM, LPSTS_SUSPM); - else + /* The controller on R-Car Gen3 needs to wait up to 45 usec */ + udelay(45); + } else { usbhs_bset(priv, LPSTS, LPSTS_SUSPM, 0); + } return 0; } --- linux-4.8.0.orig/drivers/usb/serial/cp210x.c +++ linux-4.8.0/drivers/usb/serial/cp210x.c @@ -118,6 +118,7 @@ { USB_DEVICE(0x10C4, 0x8411) }, /* Kyocera GPS Module */ { USB_DEVICE(0x10C4, 0x8418) }, /* IRZ Automation Teleport SG-10 GSM/GPRS Modem */ { USB_DEVICE(0x10C4, 0x846E) }, /* BEI USB Sensor Interface (VCP) */ + { USB_DEVICE(0x10C4, 0x8470) }, /* Juniper Networks BX Series System Console */ { USB_DEVICE(0x10C4, 0x8477) }, /* Balluff RFID */ { USB_DEVICE(0x10C4, 0x84B6) }, /* Starizona Hyperion */ { USB_DEVICE(0x10C4, 0x85EA) }, /* AC-Services IBUS-IF */ @@ -130,6 +131,7 @@ { USB_DEVICE(0x10C4, 0x88A4) }, /* MMB Networks ZigBee USB Device */ { USB_DEVICE(0x10C4, 0x88A5) }, /* Planet Innovation Ingeni ZigBee USB Device */ { USB_DEVICE(0x10C4, 0x8946) }, /* Ketra N1 Wireless Interface */ + { USB_DEVICE(0x10C4, 0x8962) }, /* Brim Brothers charging dock */ { USB_DEVICE(0x10C4, 0x8977) }, /* CEL MeshWorks DevKit Device */ { USB_DEVICE(0x10C4, 0x8998) }, /* KCF Technologies PRN */ { USB_DEVICE(0x10C4, 0x8A2A) }, /* HubZ dual ZigBee and Z-Wave dongle */ @@ -1076,7 +1078,9 @@ u8 control; int result; - cp210x_read_u8_reg(port, CP210X_GET_MDMSTS, &control); + result = cp210x_read_u8_reg(port, CP210X_GET_MDMSTS, &control); + if (result) + return result; result = ((control & CONTROL_DTR) ? TIOCM_DTR : 0) |((control & CONTROL_RTS) ? TIOCM_RTS : 0) --- linux-4.8.0.orig/drivers/usb/serial/ftdi_sio.c +++ linux-4.8.0/drivers/usb/serial/ftdi_sio.c @@ -986,7 +986,8 @@ /* ekey Devices */ { USB_DEVICE(FTDI_VID, FTDI_EKEY_CONV_USB_PID) }, /* Infineon Devices */ - { USB_DEVICE_INTERFACE_NUMBER(INFINEON_VID, INFINEON_TRIBOARD_PID, 1) }, + { USB_DEVICE_INTERFACE_NUMBER(INFINEON_VID, INFINEON_TRIBOARD_TC1798_PID, 1) }, + { USB_DEVICE_INTERFACE_NUMBER(INFINEON_VID, INFINEON_TRIBOARD_TC2X7_PID, 1) }, /* GE Healthcare devices */ { USB_DEVICE(GE_HEALTHCARE_VID, GE_HEALTHCARE_NEMO_TRACKER_PID) }, /* Active Research (Actisense) devices */ @@ -1011,6 +1012,8 @@ { USB_DEVICE(ICPDAS_VID, ICPDAS_I7561U_PID) }, { USB_DEVICE(ICPDAS_VID, ICPDAS_I7563U_PID) }, { USB_DEVICE(WICED_VID, WICED_USB20706V2_PID) }, + { USB_DEVICE(TI_VID, TI_CC3200_LAUNCHPAD_PID), + .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk }, { } /* Terminating entry */ }; --- linux-4.8.0.orig/drivers/usb/serial/ftdi_sio_ids.h +++ linux-4.8.0/drivers/usb/serial/ftdi_sio_ids.h @@ -596,6 +596,12 @@ #define STK541_PID 0x2109 /* Zigbee Controller */ /* + * Texas Instruments + */ +#define TI_VID 0x0451 +#define TI_CC3200_LAUNCHPAD_PID 0xC32A /* SimpleLink Wi-Fi CC3200 LaunchPad */ + +/* * Blackfin gnICE JTAG * http://docs.blackfin.uclinux.org/doku.php?id=hw:jtag:gnice */ @@ -626,8 +632,9 @@ /* * Infineon Technologies */ -#define INFINEON_VID 0x058b -#define INFINEON_TRIBOARD_PID 0x0028 /* DAS JTAG TriBoard TC1798 V1.0 */ +#define INFINEON_VID 0x058b +#define INFINEON_TRIBOARD_TC1798_PID 0x0028 /* DAS JTAG TriBoard TC1798 V1.0 */ +#define INFINEON_TRIBOARD_TC2X7_PID 0x0043 /* DAS JTAG TriBoard TC2X7 V1.0 */ /* * Acton Research Corp. --- linux-4.8.0.orig/drivers/usb/serial/kl5kusb105.c +++ linux-4.8.0/drivers/usb/serial/kl5kusb105.c @@ -296,7 +296,7 @@ rc = usb_serial_generic_open(tty, port); if (rc) { retval = rc; - goto exit; + goto err_free_cfg; } rc = usb_control_msg(port->serial->dev, @@ -315,17 +315,32 @@ dev_dbg(&port->dev, "%s - enabled reading\n", __func__); rc = klsi_105_get_line_state(port, &line_state); - if (rc >= 0) { - spin_lock_irqsave(&priv->lock, flags); - priv->line_state = line_state; - spin_unlock_irqrestore(&priv->lock, flags); - dev_dbg(&port->dev, "%s - read line state 0x%lx\n", __func__, line_state); - retval = 0; - } else + if (rc < 0) { retval = rc; + goto err_disable_read; + } + + spin_lock_irqsave(&priv->lock, flags); + priv->line_state = line_state; + spin_unlock_irqrestore(&priv->lock, flags); + dev_dbg(&port->dev, "%s - read line state 0x%lx\n", __func__, + line_state); + + return 0; -exit: +err_disable_read: + usb_control_msg(port->serial->dev, + usb_sndctrlpipe(port->serial->dev, 0), + KL5KUSB105A_SIO_CONFIGURE, + USB_TYPE_VENDOR | USB_DIR_OUT, + KL5KUSB105A_SIO_CONFIGURE_READ_OFF, + 0, /* index */ + NULL, 0, + KLSI_TIMEOUT); + usb_serial_generic_close(port); +err_free_cfg: kfree(cfg); + return retval; } --- linux-4.8.0.orig/drivers/usb/serial/option.c +++ linux-4.8.0/drivers/usb/serial/option.c @@ -268,6 +268,8 @@ #define TELIT_PRODUCT_CC864_SINGLE 0x1006 #define TELIT_PRODUCT_DE910_DUAL 0x1010 #define TELIT_PRODUCT_UE910_V2 0x1012 +#define TELIT_PRODUCT_LE922_USBCFG1 0x1040 +#define TELIT_PRODUCT_LE922_USBCFG2 0x1041 #define TELIT_PRODUCT_LE922_USBCFG0 0x1042 #define TELIT_PRODUCT_LE922_USBCFG3 0x1043 #define TELIT_PRODUCT_LE922_USBCFG5 0x1045 @@ -1210,6 +1212,10 @@ { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_UE910_V2) }, { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_LE922_USBCFG0), .driver_info = (kernel_ulong_t)&telit_le922_blacklist_usbcfg0 }, + { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_LE922_USBCFG1), + .driver_info = (kernel_ulong_t)&telit_le910_blacklist }, + { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_LE922_USBCFG2), + .driver_info = (kernel_ulong_t)&telit_le922_blacklist_usbcfg3 }, { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_LE922_USBCFG3), .driver_info = (kernel_ulong_t)&telit_le922_blacklist_usbcfg3 }, { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, TELIT_PRODUCT_LE922_USBCFG5, 0xff), @@ -1989,6 +1995,7 @@ { USB_DEVICE_AND_INTERFACE_INFO(0x2001, 0x7d02, 0xff, 0x00, 0x00) }, { USB_DEVICE_AND_INTERFACE_INFO(0x2001, 0x7d03, 0xff, 0x02, 0x01) }, { USB_DEVICE_AND_INTERFACE_INFO(0x2001, 0x7d03, 0xff, 0x00, 0x00) }, + { USB_DEVICE_INTERFACE_CLASS(0x2001, 0x7d04, 0xff) }, /* D-Link DWM-158 */ { USB_DEVICE_INTERFACE_CLASS(0x2001, 0x7e19, 0xff), /* D-Link DWM-221 B1 */ .driver_info = (kernel_ulong_t)&net_intf4_blacklist }, { USB_DEVICE_AND_INTERFACE_INFO(0x07d1, 0x3e01, 0xff, 0xff, 0xff) }, /* D-Link DWM-152/C1 */ --- linux-4.8.0.orig/drivers/usb/serial/usb-serial.c +++ linux-4.8.0/drivers/usb/serial/usb-serial.c @@ -1078,7 +1078,8 @@ serial->disconnected = 0; - usb_serial_console_init(serial->port[0]->minor); + if (num_ports > 0) + usb_serial_console_init(serial->port[0]->minor); exit: module_put(type->driver.owner); return 0; --- linux-4.8.0.orig/drivers/usb/storage/transport.c +++ linux-4.8.0/drivers/usb/storage/transport.c @@ -954,10 +954,15 @@ /* COMMAND STAGE */ /* let's send the command via the control pipe */ + /* + * Command is sometime (f.e. after scsi_eh_prep_cmnd) on the stack. + * Stack may be vmallocated. So no DMA for us. Make a copy. + */ + memcpy(us->iobuf, srb->cmnd, srb->cmd_len); result = usb_stor_ctrl_transfer(us, us->send_ctrl_pipe, US_CBI_ADSC, USB_TYPE_CLASS | USB_RECIP_INTERFACE, 0, - us->ifnum, srb->cmnd, srb->cmd_len); + us->ifnum, us->iobuf, srb->cmd_len); /* check the return code for the command */ usb_stor_dbg(us, "Call to usb_stor_ctrl_transfer() returned %d\n", --- linux-4.8.0.orig/drivers/usb/storage/unusual_devs.h +++ linux-4.8.0/drivers/usb/storage/unusual_devs.h @@ -1331,6 +1331,13 @@ USB_SC_DEVICE, USB_PR_DEVICE, option_ms_init, 0), +/* Reported by Timo Aaltonen */ +UNUSUAL_DEV( 0x0af0, 0x7011, 0x0000, 0x9999, + "Option", + "Mass Storage", + USB_SC_DEVICE, USB_PR_DEVICE, option_ms_init, + 0 ), + /* * Reported by F. Aben * This device (wrongly) has a vendor-specific device descriptor. --- linux-4.8.0.orig/drivers/usb/storage/usb.c +++ linux-4.8.0/drivers/usb/storage/usb.c @@ -1070,17 +1070,17 @@ result = usb_stor_acquire_resources(us); if (result) goto BadDevice; + usb_autopm_get_interface_no_resume(us->pusb_intf); snprintf(us->scsi_name, sizeof(us->scsi_name), "usb-storage %s", dev_name(&us->pusb_intf->dev)); result = scsi_add_host(us_to_host(us), dev); if (result) { dev_warn(dev, "Unable to add the scsi host\n"); - goto BadDevice; + goto HostAddErr; } /* Submit the delayed_work for SCSI-device scanning */ - usb_autopm_get_interface_no_resume(us->pusb_intf); set_bit(US_FLIDX_SCAN_PENDING, &us->dflags); if (delay_use > 0) @@ -1090,6 +1090,8 @@ return 0; /* We come here if there are any problems */ +HostAddErr: + usb_autopm_put_interface_no_suspend(us->pusb_intf); BadDevice: usb_stor_dbg(us, "storage_probe() failed\n"); release_everything(us); --- linux-4.8.0.orig/drivers/usb/usbip/vudc_rx.c +++ linux-4.8.0/drivers/usb/usbip/vudc_rx.c @@ -142,7 +142,7 @@ urb_p->urb->status = -EINPROGRESS; /* FIXME: more pipe setup to please usbip_common */ - urb_p->urb->pipe &= ~(11 << 30); + urb_p->urb->pipe &= ~(3 << 30); switch (urb_p->ep->type) { case USB_ENDPOINT_XFER_BULK: urb_p->urb->pipe |= (PIPE_BULK << 30); --- linux-4.8.0.orig/drivers/usb/usbip/vudc_transfer.c +++ linux-4.8.0/drivers/usb/usbip/vudc_transfer.c @@ -339,6 +339,8 @@ total = timer->frame_limit; } + /* We have to clear ep0 flags separately as it's not on the list */ + udc->ep[0].already_seen = 0; list_for_each_entry(_ep, &udc->gadget.ep_list, ep_list) { ep = to_vep(_ep); ep->already_seen = 0; --- linux-4.8.0.orig/drivers/uwb/lc-rc.c +++ linux-4.8.0/drivers/uwb/lc-rc.c @@ -56,8 +56,11 @@ struct uwb_rc *rc = NULL; dev = class_find_device(&uwb_rc_class, NULL, &index, uwb_rc_index_match); - if (dev) + if (dev) { rc = dev_get_drvdata(dev); + put_device(dev); + } + return rc; } @@ -467,7 +470,9 @@ if (dev) { rc = dev_get_drvdata(dev); __uwb_rc_get(rc); + put_device(dev); } + return rc; } EXPORT_SYMBOL_GPL(__uwb_rc_try_get); @@ -520,8 +525,11 @@ dev = class_find_device(&uwb_rc_class, NULL, grandpa_dev, find_rc_grandpa); - if (dev) + if (dev) { rc = dev_get_drvdata(dev); + put_device(dev); + } + return rc; } EXPORT_SYMBOL_GPL(uwb_rc_get_by_grandpa); @@ -553,8 +561,10 @@ struct uwb_rc *rc = NULL; dev = class_find_device(&uwb_rc_class, NULL, addr, find_rc_dev); - if (dev) + if (dev) { rc = dev_get_drvdata(dev); + put_device(dev); + } return rc; } --- linux-4.8.0.orig/drivers/uwb/pal.c +++ linux-4.8.0/drivers/uwb/pal.c @@ -97,6 +97,8 @@ dev = class_find_device(&uwb_rc_class, NULL, target_rc, find_rc); + put_device(dev); + return (dev != NULL); } --- linux-4.8.0.orig/drivers/vfio/vfio_iommu_spapr_tce.c +++ linux-4.8.0/drivers/vfio/vfio_iommu_spapr_tce.c @@ -31,49 +31,49 @@ static void tce_iommu_detach_group(void *iommu_data, struct iommu_group *iommu_group); -static long try_increment_locked_vm(long npages) +static long try_increment_locked_vm(struct mm_struct *mm, long npages) { long ret = 0, locked, lock_limit; - if (!current || !current->mm) - return -ESRCH; /* process exited */ + if (WARN_ON_ONCE(!mm)) + return -EPERM; if (!npages) return 0; - down_write(¤t->mm->mmap_sem); - locked = current->mm->locked_vm + npages; + down_write(&mm->mmap_sem); + locked = mm->locked_vm + npages; lock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT; if (locked > lock_limit && !capable(CAP_IPC_LOCK)) ret = -ENOMEM; else - current->mm->locked_vm += npages; + mm->locked_vm += npages; pr_debug("[%d] RLIMIT_MEMLOCK +%ld %ld/%ld%s\n", current->pid, npages << PAGE_SHIFT, - current->mm->locked_vm << PAGE_SHIFT, + mm->locked_vm << PAGE_SHIFT, rlimit(RLIMIT_MEMLOCK), ret ? " - exceeded" : ""); - up_write(¤t->mm->mmap_sem); + up_write(&mm->mmap_sem); return ret; } -static void decrement_locked_vm(long npages) +static void decrement_locked_vm(struct mm_struct *mm, long npages) { - if (!current || !current->mm || !npages) - return; /* process exited */ + if (!mm || !npages) + return; - down_write(¤t->mm->mmap_sem); - if (WARN_ON_ONCE(npages > current->mm->locked_vm)) - npages = current->mm->locked_vm; - current->mm->locked_vm -= npages; + down_write(&mm->mmap_sem); + if (WARN_ON_ONCE(npages > mm->locked_vm)) + npages = mm->locked_vm; + mm->locked_vm -= npages; pr_debug("[%d] RLIMIT_MEMLOCK -%ld %ld/%ld\n", current->pid, npages << PAGE_SHIFT, - current->mm->locked_vm << PAGE_SHIFT, + mm->locked_vm << PAGE_SHIFT, rlimit(RLIMIT_MEMLOCK)); - up_write(¤t->mm->mmap_sem); + up_write(&mm->mmap_sem); } /* @@ -89,6 +89,15 @@ }; /* + * A container needs to remember which preregistered region it has + * referenced to do proper cleanup at the userspace process exit. + */ +struct tce_iommu_prereg { + struct list_head next; + struct mm_iommu_table_group_mem_t *mem; +}; + +/* * The container descriptor supports only a single group per container. * Required by the API as the container is not supplied with the IOMMU group * at the moment of initialization. @@ -97,24 +106,68 @@ struct mutex lock; bool enabled; bool v2; + bool def_window_pending; unsigned long locked_pages; + struct mm_struct *mm; struct iommu_table *tables[IOMMU_TABLE_GROUP_MAX_TABLES]; struct list_head group_list; + struct list_head prereg_list; }; +static long tce_iommu_mm_set(struct tce_container *container) +{ + if (container->mm) { + if (container->mm == current->mm) + return 0; + return -EPERM; + } + BUG_ON(!current->mm); + container->mm = current->mm; + atomic_inc(&container->mm->mm_count); + + return 0; +} + +static long tce_iommu_prereg_free(struct tce_container *container, + struct tce_iommu_prereg *tcemem) +{ + long ret; + + ret = mm_iommu_put(container->mm, tcemem->mem); + if (ret) + return ret; + + list_del(&tcemem->next); + kfree(tcemem); + + return 0; +} + static long tce_iommu_unregister_pages(struct tce_container *container, __u64 vaddr, __u64 size) { struct mm_iommu_table_group_mem_t *mem; + struct tce_iommu_prereg *tcemem; + bool found = false; if ((vaddr & ~PAGE_MASK) || (size & ~PAGE_MASK)) return -EINVAL; - mem = mm_iommu_find(vaddr, size >> PAGE_SHIFT); + mem = mm_iommu_find(container->mm, vaddr, size >> PAGE_SHIFT); if (!mem) return -ENOENT; - return mm_iommu_put(mem); + list_for_each_entry(tcemem, &container->prereg_list, next) { + if (tcemem->mem == mem) { + found = true; + break; + } + } + + if (!found) + return -ENOENT; + + return tce_iommu_prereg_free(container, tcemem); } static long tce_iommu_register_pages(struct tce_container *container, @@ -122,22 +175,36 @@ { long ret = 0; struct mm_iommu_table_group_mem_t *mem = NULL; + struct tce_iommu_prereg *tcemem; unsigned long entries = size >> PAGE_SHIFT; if ((vaddr & ~PAGE_MASK) || (size & ~PAGE_MASK) || ((vaddr + size) < vaddr)) return -EINVAL; - ret = mm_iommu_get(vaddr, entries, &mem); + mem = mm_iommu_find(container->mm, vaddr, entries); + if (mem) { + list_for_each_entry(tcemem, &container->prereg_list, next) { + if (tcemem->mem == mem) + return -EBUSY; + } + } + + ret = mm_iommu_get(container->mm, vaddr, entries, &mem); if (ret) return ret; + tcemem = kzalloc(sizeof(*tcemem), GFP_KERNEL); + tcemem->mem = mem; + list_add(&tcemem->next, &container->prereg_list); + container->enabled = true; return 0; } -static long tce_iommu_userspace_view_alloc(struct iommu_table *tbl) +static long tce_iommu_userspace_view_alloc(struct iommu_table *tbl, + struct mm_struct *mm) { unsigned long cb = _ALIGN_UP(sizeof(tbl->it_userspace[0]) * tbl->it_size, PAGE_SIZE); @@ -146,13 +213,13 @@ BUG_ON(tbl->it_userspace); - ret = try_increment_locked_vm(cb >> PAGE_SHIFT); + ret = try_increment_locked_vm(mm, cb >> PAGE_SHIFT); if (ret) return ret; uas = vzalloc(cb); if (!uas) { - decrement_locked_vm(cb >> PAGE_SHIFT); + decrement_locked_vm(mm, cb >> PAGE_SHIFT); return -ENOMEM; } tbl->it_userspace = uas; @@ -160,7 +227,8 @@ return 0; } -static void tce_iommu_userspace_view_free(struct iommu_table *tbl) +static void tce_iommu_userspace_view_free(struct iommu_table *tbl, + struct mm_struct *mm) { unsigned long cb = _ALIGN_UP(sizeof(tbl->it_userspace[0]) * tbl->it_size, PAGE_SIZE); @@ -170,7 +238,7 @@ vfree(tbl->it_userspace); tbl->it_userspace = NULL; - decrement_locked_vm(cb >> PAGE_SHIFT); + decrement_locked_vm(mm, cb >> PAGE_SHIFT); } static bool tce_page_is_contained(struct page *page, unsigned page_shift) @@ -230,9 +298,6 @@ struct iommu_table_group *table_group; struct tce_iommu_group *tcegrp; - if (!current->mm) - return -ESRCH; /* process exited */ - if (container->enabled) return -EBUSY; @@ -277,8 +342,12 @@ if (!table_group->tce32_size) return -EPERM; + ret = tce_iommu_mm_set(container); + if (ret) + return ret; + locked = table_group->tce32_size >> PAGE_SHIFT; - ret = try_increment_locked_vm(locked); + ret = try_increment_locked_vm(container->mm, locked); if (ret) return ret; @@ -296,10 +365,8 @@ container->enabled = false; - if (!current->mm) - return; - - decrement_locked_vm(container->locked_pages); + BUG_ON(!container->mm); + decrement_locked_vm(container->mm, container->locked_pages); } static void *tce_iommu_open(unsigned long arg) @@ -317,6 +384,7 @@ mutex_init(&container->lock); INIT_LIST_HEAD_RCU(&container->group_list); + INIT_LIST_HEAD_RCU(&container->prereg_list); container->v2 = arg == VFIO_SPAPR_TCE_v2_IOMMU; @@ -326,7 +394,8 @@ static int tce_iommu_clear(struct tce_container *container, struct iommu_table *tbl, unsigned long entry, unsigned long pages); -static void tce_iommu_free_table(struct iommu_table *tbl); +static void tce_iommu_free_table(struct tce_container *container, + struct iommu_table *tbl); static void tce_iommu_release(void *iommu_data) { @@ -351,10 +420,20 @@ continue; tce_iommu_clear(container, tbl, tbl->it_offset, tbl->it_size); - tce_iommu_free_table(tbl); + tce_iommu_free_table(container, tbl); + } + + while (!list_empty(&container->prereg_list)) { + struct tce_iommu_prereg *tcemem; + + tcemem = list_first_entry(&container->prereg_list, + struct tce_iommu_prereg, next); + WARN_ON_ONCE(tce_iommu_prereg_free(container, tcemem)); } tce_iommu_disable(container); + if (container->mm) + mmdrop(container->mm); mutex_destroy(&container->lock); kfree(container); @@ -369,13 +448,14 @@ put_page(page); } -static int tce_iommu_prereg_ua_to_hpa(unsigned long tce, unsigned long size, +static int tce_iommu_prereg_ua_to_hpa(struct tce_container *container, + unsigned long tce, unsigned long size, unsigned long *phpa, struct mm_iommu_table_group_mem_t **pmem) { long ret = 0; struct mm_iommu_table_group_mem_t *mem; - mem = mm_iommu_lookup(tce, size); + mem = mm_iommu_lookup(container->mm, tce, size); if (!mem) return -EINVAL; @@ -388,18 +468,18 @@ return 0; } -static void tce_iommu_unuse_page_v2(struct iommu_table *tbl, - unsigned long entry) +static void tce_iommu_unuse_page_v2(struct tce_container *container, + struct iommu_table *tbl, unsigned long entry) { struct mm_iommu_table_group_mem_t *mem = NULL; int ret; unsigned long hpa = 0; unsigned long *pua = IOMMU_TABLE_USERSPACE_ENTRY(tbl, entry); - if (!pua || !current || !current->mm) + if (!pua) return; - ret = tce_iommu_prereg_ua_to_hpa(*pua, IOMMU_PAGE_SIZE(tbl), + ret = tce_iommu_prereg_ua_to_hpa(container, *pua, IOMMU_PAGE_SIZE(tbl), &hpa, &mem); if (ret) pr_debug("%s: tce %lx at #%lx was not cached, ret=%d\n", @@ -429,7 +509,7 @@ continue; if (container->v2) { - tce_iommu_unuse_page_v2(tbl, entry); + tce_iommu_unuse_page_v2(container, tbl, entry); continue; } @@ -509,13 +589,19 @@ unsigned long hpa; enum dma_data_direction dirtmp; + if (!tbl->it_userspace) { + ret = tce_iommu_userspace_view_alloc(tbl, container->mm); + if (ret) + return ret; + } + for (i = 0; i < pages; ++i) { struct mm_iommu_table_group_mem_t *mem = NULL; unsigned long *pua = IOMMU_TABLE_USERSPACE_ENTRY(tbl, entry + i); - ret = tce_iommu_prereg_ua_to_hpa(tce, IOMMU_PAGE_SIZE(tbl), - &hpa, &mem); + ret = tce_iommu_prereg_ua_to_hpa(container, + tce, IOMMU_PAGE_SIZE(tbl), &hpa, &mem); if (ret) break; @@ -536,7 +622,7 @@ ret = iommu_tce_xchg(tbl, entry + i, &hpa, &dirtmp); if (ret) { /* dirtmp cannot be DMA_NONE here */ - tce_iommu_unuse_page_v2(tbl, entry + i); + tce_iommu_unuse_page_v2(container, tbl, entry + i); pr_err("iommu_tce: %s failed ioba=%lx, tce=%lx, ret=%ld\n", __func__, entry << tbl->it_page_shift, tce, ret); @@ -544,7 +630,7 @@ } if (dirtmp != DMA_NONE) - tce_iommu_unuse_page_v2(tbl, entry + i); + tce_iommu_unuse_page_v2(container, tbl, entry + i); *pua = tce; @@ -572,7 +658,7 @@ if (!table_size) return -EINVAL; - ret = try_increment_locked_vm(table_size >> PAGE_SHIFT); + ret = try_increment_locked_vm(container->mm, table_size >> PAGE_SHIFT); if (ret) return ret; @@ -582,25 +668,17 @@ WARN_ON(!ret && !(*ptbl)->it_ops->free); WARN_ON(!ret && ((*ptbl)->it_allocated_size != table_size)); - if (!ret && container->v2) { - ret = tce_iommu_userspace_view_alloc(*ptbl); - if (ret) - (*ptbl)->it_ops->free(*ptbl); - } - - if (ret) - decrement_locked_vm(table_size >> PAGE_SHIFT); - return ret; } -static void tce_iommu_free_table(struct iommu_table *tbl) +static void tce_iommu_free_table(struct tce_container *container, + struct iommu_table *tbl) { unsigned long pages = tbl->it_allocated_size >> PAGE_SHIFT; - tce_iommu_userspace_view_free(tbl); + tce_iommu_userspace_view_free(tbl, container->mm); tbl->it_ops->free(tbl); - decrement_locked_vm(pages); + decrement_locked_vm(container->mm, pages); } static long tce_iommu_create_window(struct tce_container *container, @@ -663,7 +741,7 @@ table_group = iommu_group_get_iommudata(tcegrp->grp); table_group->ops->unset_window(table_group, num); } - tce_iommu_free_table(tbl); + tce_iommu_free_table(container, tbl); return ret; } @@ -701,12 +779,41 @@ /* Free table */ tce_iommu_clear(container, tbl, tbl->it_offset, tbl->it_size); - tce_iommu_free_table(tbl); + tce_iommu_free_table(container, tbl); container->tables[num] = NULL; return 0; } +static long tce_iommu_create_default_window(struct tce_container *container) +{ + long ret; + __u64 start_addr = 0; + struct tce_iommu_group *tcegrp; + struct iommu_table_group *table_group; + + if (!container->def_window_pending) + return 0; + + if (!tce_groups_attached(container)) + return -ENODEV; + + tcegrp = list_first_entry(&container->group_list, + struct tce_iommu_group, next); + table_group = iommu_group_get_iommudata(tcegrp->grp); + if (!table_group) + return -ENODEV; + + ret = tce_iommu_create_window(container, IOMMU_PAGE_SHIFT_4K, + table_group->tce32_size, 1, &start_addr); + WARN_ON_ONCE(!ret && start_addr); + + if (!ret) + container->def_window_pending = false; + + return ret; +} + static long tce_iommu_ioctl(void *iommu_data, unsigned int cmd, unsigned long arg) { @@ -727,7 +834,17 @@ } return (ret < 0) ? 0 : ret; + } + + /* + * Sanity check to prevent one userspace from manipulating + * another userspace mm. + */ + BUG_ON(!container); + if (container->mm && container->mm != current->mm) + return -EPERM; + switch (cmd) { case VFIO_IOMMU_SPAPR_TCE_GET_INFO: { struct vfio_iommu_spapr_tce_info info; struct tce_iommu_group *tcegrp; @@ -797,6 +914,10 @@ VFIO_DMA_MAP_FLAG_WRITE)) return -EINVAL; + ret = tce_iommu_create_default_window(container); + if (ret) + return ret; + num = tce_iommu_find_table(container, param.iova, &tbl); if (num < 0) return -ENXIO; @@ -860,6 +981,10 @@ if (param.flags) return -EINVAL; + ret = tce_iommu_create_default_window(container); + if (ret) + return ret; + num = tce_iommu_find_table(container, param.iova, &tbl); if (num < 0) return -ENXIO; @@ -888,6 +1013,10 @@ minsz = offsetofend(struct vfio_iommu_spapr_register_memory, size); + ret = tce_iommu_mm_set(container); + if (ret) + return ret; + if (copy_from_user(¶m, (void __user *)arg, minsz)) return -EFAULT; @@ -911,6 +1040,9 @@ if (!container->v2) break; + if (!container->mm) + return -EPERM; + minsz = offsetofend(struct vfio_iommu_spapr_register_memory, size); @@ -969,6 +1101,10 @@ if (!container->v2) break; + ret = tce_iommu_mm_set(container); + if (ret) + return ret; + if (!tce_groups_attached(container)) return -ENXIO; @@ -986,6 +1122,10 @@ mutex_lock(&container->lock); + ret = tce_iommu_create_default_window(container); + if (ret) + return ret; + ret = tce_iommu_create_window(container, create.page_shift, create.window_size, create.levels, &create.start_addr); @@ -1003,6 +1143,10 @@ if (!container->v2) break; + ret = tce_iommu_mm_set(container); + if (ret) + return ret; + if (!tce_groups_attached(container)) return -ENXIO; @@ -1018,6 +1162,11 @@ if (remove.flags) return -EINVAL; + if (container->def_window_pending && !remove.start_addr) { + container->def_window_pending = false; + return 0; + } + mutex_lock(&container->lock); ret = tce_iommu_remove_window(container, remove.start_addr); @@ -1043,7 +1192,7 @@ continue; tce_iommu_clear(container, tbl, tbl->it_offset, tbl->it_size); - tce_iommu_userspace_view_free(tbl); + tce_iommu_userspace_view_free(tbl, container->mm); if (tbl->it_map) iommu_release_ownership(tbl); @@ -1062,10 +1211,7 @@ if (!tbl || !tbl->it_map) continue; - rc = tce_iommu_userspace_view_alloc(tbl); - if (!rc) - rc = iommu_take_ownership(tbl); - + rc = iommu_take_ownership(tbl); if (rc) { for (j = 0; j < i; ++j) iommu_release_ownership( @@ -1100,9 +1246,6 @@ static long tce_iommu_take_ownership_ddw(struct tce_container *container, struct iommu_table_group *table_group) { - long i, ret = 0; - struct iommu_table *tbl = NULL; - if (!table_group->ops->create_table || !table_group->ops->set_window || !table_group->ops->release_ownership) { WARN_ON_ONCE(1); @@ -1111,47 +1254,7 @@ table_group->ops->take_ownership(table_group); - /* - * If it the first group attached, check if there is - * a default DMA window and create one if none as - * the userspace expects it to exist. - */ - if (!tce_groups_attached(container) && !container->tables[0]) { - ret = tce_iommu_create_table(container, - table_group, - 0, /* window number */ - IOMMU_PAGE_SHIFT_4K, - table_group->tce32_size, - 1, /* default levels */ - &tbl); - if (ret) - goto release_exit; - else - container->tables[0] = tbl; - } - - /* Set all windows to the new group */ - for (i = 0; i < IOMMU_TABLE_GROUP_MAX_TABLES; ++i) { - tbl = container->tables[i]; - - if (!tbl) - continue; - - /* Set the default window to a new group */ - ret = table_group->ops->set_window(table_group, i, tbl); - if (ret) - goto release_exit; - } - return 0; - -release_exit: - for (i = 0; i < IOMMU_TABLE_GROUP_MAX_TABLES; ++i) - table_group->ops->unset_window(table_group, i); - - table_group->ops->release_ownership(table_group); - - return ret; } static int tce_iommu_attach_group(void *iommu_data, @@ -1203,10 +1306,13 @@ } if (!table_group->ops || !table_group->ops->take_ownership || - !table_group->ops->release_ownership) + !table_group->ops->release_ownership) { ret = tce_iommu_take_ownership(container, table_group); - else + } else { ret = tce_iommu_take_ownership_ddw(container, table_group); + if (!tce_groups_attached(container) && !container->tables[0]) + container->def_window_pending = true; + } if (!ret) { tcegrp->grp = iommu_group; --- linux-4.8.0.orig/drivers/vhost/vsock.c +++ linux-4.8.0/drivers/vhost/vsock.c @@ -506,7 +506,7 @@ * executing. */ - if (!vhost_vsock_get(vsk->local_addr.svm_cid)) { + if (!vhost_vsock_get(vsk->remote_addr.svm_cid)) { sock_set_flag(sk, SOCK_DONE); vsk->peer_shutdown = SHUTDOWN_MASK; sk->sk_state = SS_UNCONNECTED; --- linux-4.8.0.orig/drivers/video/fbdev/efifb.c +++ linux-4.8.0/drivers/video/fbdev/efifb.c @@ -50,9 +50,9 @@ return 1; if (regno < 16) { - red >>= 8; - green >>= 8; - blue >>= 8; + red >>= 16 - info->var.red.length; + green >>= 16 - info->var.green.length; + blue >>= 16 - info->var.blue.length; ((u32 *)(info->pseudo_palette))[regno] = (red << info->var.red.offset) | (green << info->var.green.offset) | --- linux-4.8.0.orig/drivers/video/fbdev/omap2/omapfb/dss/dsi.c +++ linux-4.8.0/drivers/video/fbdev/omap2/omapfb/dss/dsi.c @@ -5348,7 +5348,7 @@ dsi->phy_base = devm_ioremap(&dsidev->dev, res->start, resource_size(res)); - if (!dsi->proto_base) { + if (!dsi->phy_base) { DSSERR("can't ioremap DSI PHY\n"); return -ENOMEM; } @@ -5368,7 +5368,7 @@ dsi->pll_base = devm_ioremap(&dsidev->dev, res->start, resource_size(res)); - if (!dsi->proto_base) { + if (!dsi->pll_base) { DSSERR("can't ioremap DSI PLL\n"); return -ENOMEM; } --- linux-4.8.0.orig/drivers/video/fbdev/pxafb.c +++ linux-4.8.0/drivers/video/fbdev/pxafb.c @@ -2125,7 +2125,7 @@ timings = of_get_display_timings(disp); if (!timings) - goto out; + return -EINVAL; ret = -ENOMEM; info->modes = kmalloc_array(timings->num_timings, --- linux-4.8.0.orig/drivers/virtio/virtio_pci_legacy.c +++ linux-4.8.0/drivers/virtio/virtio_pci_legacy.c @@ -212,10 +212,18 @@ return -ENODEV; } - rc = dma_set_mask_and_coherent(&pci_dev->dev, DMA_BIT_MASK(64)); - if (rc) - rc = dma_set_mask_and_coherent(&pci_dev->dev, - DMA_BIT_MASK(32)); + rc = dma_set_mask(&pci_dev->dev, DMA_BIT_MASK(64)); + if (rc) { + rc = dma_set_mask_and_coherent(&pci_dev->dev, DMA_BIT_MASK(32)); + } else { + /* + * The virtio ring base address is expressed as a 32-bit PFN, + * with a page size of 1 << VIRTIO_PCI_QUEUE_ADDR_SHIFT. + */ + dma_set_coherent_mask(&pci_dev->dev, + DMA_BIT_MASK(32 + VIRTIO_PCI_QUEUE_ADDR_SHIFT)); + } + if (rc) dev_warn(&pci_dev->dev, "Failed to enable 64-bit or 32-bit DMA. Trying to continue, but this might not work.\n"); --- linux-4.8.0.orig/drivers/virtio/virtio_ring.c +++ linux-4.8.0/drivers/virtio/virtio_ring.c @@ -732,7 +732,8 @@ if (!(vq->avail_flags_shadow & VRING_AVAIL_F_NO_INTERRUPT)) { vq->avail_flags_shadow |= VRING_AVAIL_F_NO_INTERRUPT; - vq->vring.avail->flags = cpu_to_virtio16(_vq->vdev, vq->avail_flags_shadow); + if (!vq->event) + vq->vring.avail->flags = cpu_to_virtio16(_vq->vdev, vq->avail_flags_shadow); } } @@ -764,7 +765,8 @@ * entry. Always do both to keep code simple. */ if (vq->avail_flags_shadow & VRING_AVAIL_F_NO_INTERRUPT) { vq->avail_flags_shadow &= ~VRING_AVAIL_F_NO_INTERRUPT; - vq->vring.avail->flags = cpu_to_virtio16(_vq->vdev, vq->avail_flags_shadow); + if (!vq->event) + vq->vring.avail->flags = cpu_to_virtio16(_vq->vdev, vq->avail_flags_shadow); } vring_used_event(&vq->vring) = cpu_to_virtio16(_vq->vdev, last_used_idx = vq->last_used_idx); END_USE(vq); @@ -832,10 +834,11 @@ * more to do. */ /* Depending on the VIRTIO_RING_F_USED_EVENT_IDX feature, we need to * either clear the flags bit or point the event index at the next - * entry. Always do both to keep code simple. */ + * entry. Always update the event index to keep code simple. */ if (vq->avail_flags_shadow & VRING_AVAIL_F_NO_INTERRUPT) { vq->avail_flags_shadow &= ~VRING_AVAIL_F_NO_INTERRUPT; - vq->vring.avail->flags = cpu_to_virtio16(_vq->vdev, vq->avail_flags_shadow); + if (!vq->event) + vq->vring.avail->flags = cpu_to_virtio16(_vq->vdev, vq->avail_flags_shadow); } /* TODO: tune this threshold */ bufs = (u16)(vq->avail_idx_shadow - vq->last_used_idx) * 3 / 4; @@ -953,7 +956,8 @@ /* No callback? Tell other side not to bother us. */ if (!callback) { vq->avail_flags_shadow |= VRING_AVAIL_F_NO_INTERRUPT; - vq->vring.avail->flags = cpu_to_virtio16(vdev, vq->avail_flags_shadow); + if (!vq->event) + vq->vring.avail->flags = cpu_to_virtio16(vdev, vq->avail_flags_shadow); } /* Put everything in free lists. */ --- linux-4.8.0.orig/drivers/watchdog/mei_wdt.c +++ linux-4.8.0/drivers/watchdog/mei_wdt.c @@ -389,6 +389,8 @@ wdt->wdd.max_timeout = MEI_WDT_MAX_TIMEOUT; watchdog_set_drvdata(&wdt->wdd, wdt); + watchdog_stop_on_reboot(&wdt->wdd); + ret = watchdog_register_device(&wdt->wdd); if (ret) { dev_err(dev, "unable to register watchdog device = %d.\n", ret); --- linux-4.8.0.orig/drivers/watchdog/mt7621_wdt.c +++ linux-4.8.0/drivers/watchdog/mt7621_wdt.c @@ -139,7 +139,6 @@ if (!IS_ERR(mt7621_wdt_reset)) reset_control_deassert(mt7621_wdt_reset); - mt7621_wdt_dev.dev = &pdev->dev; mt7621_wdt_dev.bootstatus = mt7621_wdt_bootcause(); watchdog_init_timeout(&mt7621_wdt_dev, mt7621_wdt_dev.max_timeout, --- linux-4.8.0.orig/drivers/watchdog/qcom-wdt.c +++ linux-4.8.0/drivers/watchdog/qcom-wdt.c @@ -209,7 +209,7 @@ wdt->wdd.parent = &pdev->dev; wdt->layout = regs; - if (readl(wdt->base + WDT_STS) & 1) + if (readl(wdt_addr(wdt, WDT_STS)) & 1) wdt->wdd.bootstatus = WDIOF_CARDRESET; /* --- linux-4.8.0.orig/drivers/watchdog/rt2880_wdt.c +++ linux-4.8.0/drivers/watchdog/rt2880_wdt.c @@ -158,7 +158,6 @@ rt288x_wdt_freq = clk_get_rate(rt288x_wdt_clk) / RALINK_WDT_PRESCALE; - rt288x_wdt_dev.dev = &pdev->dev; rt288x_wdt_dev.bootstatus = rt288x_wdt_bootcause(); rt288x_wdt_dev.max_timeout = (0xfffful / rt288x_wdt_freq); rt288x_wdt_dev.parent = &pdev->dev; --- linux-4.8.0.orig/drivers/watchdog/watchdog_core.c +++ linux-4.8.0/drivers/watchdog/watchdog_core.c @@ -349,7 +349,7 @@ struct watchdog_device **rcwdd; int ret; - rcwdd = devres_alloc(devm_watchdog_unregister_device, sizeof(*wdd), + rcwdd = devres_alloc(devm_watchdog_unregister_device, sizeof(*rcwdd), GFP_KERNEL); if (!rcwdd) return -ENOMEM; --- linux-4.8.0.orig/drivers/xen/gntdev.c +++ linux-4.8.0/drivers/xen/gntdev.c @@ -1007,7 +1007,7 @@ vma->vm_ops = &gntdev_vmops; - vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP | VM_IO; + vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP | VM_MIXEDMAP; if (use_ptemod) vma->vm_flags |= VM_DONTCOPY; --- linux-4.8.0.orig/drivers/xen/xenbus/xenbus_probe.c +++ linux-4.8.0/drivers/xen/xenbus/xenbus_probe.c @@ -826,7 +826,7 @@ * Create xenfs mountpoint in /proc for compatibility with * utilities that expect to find "xenbus" under "/proc/xen". */ - proc_mkdir("xen", NULL); + proc_create_mount_point("xen"); #endif out_error: --- linux-4.8.0.orig/dropped.txt +++ linux-4.8.0/dropped.txt @@ -0,0 +1,11 @@ +UBUNTU: SAUCE: (no-up) dell-wmi: Demote unknown WMI event message to pr_debug +UBUNTU: SAUCE: (no-up) arm64: dts: Add X-Gene reboot driver dts node +UBUNTU: SAUCE: (no-up) Add documentation for generic SYSCON reboot driver. +UBUNTU: SAUCE: fix perf_regs definitions for arm64 +UBUNTU: SAUCE: aufs3 -- (no-up) aufs3-mmap.patch +Revert "UBUNTU: SAUCE: aufs3 -- (no-up) aufs3-mmap.patch" +UBUNTU: SAUCE: aufs3 -- (no-up) aufs3-mmap.patch +UBUNTU: SAUCE: aufs3 -- avoid aufs3-mmap.patch include hell for arm64 +UBUNTU: SAUCE: (no-up) irqchip:gic: change access of gicc_ctrl register to read modify write. +UBUNTU: SAUCE: (no-up) PCI: Increase BAR size quirk for IBM ipr SAS Crocodile adapters + --- linux-4.8.0.orig/firmware/Makefile +++ linux-4.8.0/firmware/Makefile @@ -20,80 +20,32 @@ # accurate. In the latter case it doesn't matter -- it'll use $(fw-shipped-all). # But be aware that the config file might not be included at all. -ifdef CONFIG_ACENIC_OMIT_TIGON_I -acenic-objs := acenic/tg2.bin -fw-shipped- += acenic/tg1.bin -else -acenic-objs := acenic/tg1.bin acenic/tg2.bin -endif -fw-shipped-$(CONFIG_ACENIC) += $(acenic-objs) -fw-shipped-$(CONFIG_ADAPTEC_STARFIRE) += adaptec/starfire_rx.bin \ - adaptec/starfire_tx.bin -fw-shipped-$(CONFIG_ATARI_DSP56K) += dsp56k/bootstrap.bin -fw-shipped-$(CONFIG_ATM_AMBASSADOR) += atmsar11.fw -fw-shipped-$(CONFIG_BNX2X) += bnx2x/bnx2x-e1-6.2.9.0.fw \ - bnx2x/bnx2x-e1h-6.2.9.0.fw \ - bnx2x/bnx2x-e2-6.2.9.0.fw -fw-shipped-$(CONFIG_BNX2) += bnx2/bnx2-mips-09-6.2.1a.fw \ - bnx2/bnx2-rv2p-09-6.0.17.fw \ - bnx2/bnx2-rv2p-09ax-6.0.17.fw \ - bnx2/bnx2-mips-06-6.2.1.fw \ - bnx2/bnx2-rv2p-06-6.0.15.fw -fw-shipped-$(CONFIG_CASSINI) += sun/cassini.bin -fw-shipped-$(CONFIG_CHELSIO_T3) += cxgb3/t3b_psram-1.1.0.bin \ - cxgb3/t3c_psram-1.1.0.bin \ - cxgb3/ael2005_opt_edc.bin \ - cxgb3/ael2005_twx_edc.bin \ - cxgb3/ael2020_twx_edc.bin -fw-shipped-$(CONFIG_DRM_MGA) += matrox/g200_warp.fw matrox/g400_warp.fw -fw-shipped-$(CONFIG_DRM_R128) += r128/r128_cce.bin -fw-shipped-$(CONFIG_DRM_RADEON) += radeon/R100_cp.bin radeon/R200_cp.bin \ - radeon/R300_cp.bin radeon/R420_cp.bin \ - radeon/RS690_cp.bin radeon/RS600_cp.bin \ - radeon/R520_cp.bin \ - radeon/R600_pfp.bin radeon/R600_me.bin \ - radeon/RV610_pfp.bin radeon/RV610_me.bin \ - radeon/RV630_pfp.bin radeon/RV630_me.bin \ - radeon/RV620_pfp.bin radeon/RV620_me.bin \ - radeon/RV635_pfp.bin radeon/RV635_me.bin \ - radeon/RV670_pfp.bin radeon/RV670_me.bin \ - radeon/RS780_pfp.bin radeon/RS780_me.bin \ - radeon/RV770_pfp.bin radeon/RV770_me.bin \ - radeon/RV730_pfp.bin radeon/RV730_me.bin \ - radeon/RV710_pfp.bin radeon/RV710_me.bin -fw-shipped-$(CONFIG_DVB_AV7110) += av7110/bootcode.bin -fw-shipped-$(CONFIG_DVB_TTUSB_BUDGET) += ttusb-budget/dspbootcode.bin +fw-shipped-$(CONFIG_BNX2X) += bnx2x/bnx2x-e1-7.13.1.0.fw \ + bnx2x/bnx2x-e1h-7.13.1.0.fw \ + bnx2x/bnx2x-e2-7.13.1.0.fw +fw-shipped-$(CONFIG_BNX2) += bnx2/bnx2-mips-09-6.2.1b.fw \ + bnx2/bnx2-rv2p-06-6.0.15.fw \ + bnx2/bnx2-mips-06-6.2.3.fw \ + bnx2/bnx2-rv2p-09-6.0.17.fw \ + bnx2/bnx2-rv2p-09ax-6.0.17.fw fw-shipped-$(CONFIG_E100) += e100/d101m_ucode.bin e100/d101s_ucode.bin \ e100/d102e_ucode.bin -fw-shipped-$(CONFIG_MYRI_SBUS) += myricom/lanai.bin -fw-shipped-$(CONFIG_PCMCIA_PCNET) += cis/LA-PCM.cis cis/PCMLM28.cis \ - cis/DP83903.cis cis/NE2K.cis \ - cis/tamarack.cis cis/PE-200.cis \ - cis/PE520.cis -fw-shipped-$(CONFIG_PCMCIA_3C589) += cis/3CXEM556.cis -fw-shipped-$(CONFIG_PCMCIA_3C574) += cis/3CCFEM556.cis -fw-shipped-$(CONFIG_SERIAL_8250_CS) += cis/MT5634ZLX.cis cis/RS-COM-2P.cis \ - cis/COMpad2.cis cis/COMpad4.cis \ - cis/SW_555_SER.cis cis/SW_7xx_SER.cis \ - cis/SW_8xx_SER.cis -fw-shipped-$(CONFIG_PCMCIA_SMC91C92) += ositech/Xilinx7OD.bin -fw-shipped-$(CONFIG_SCSI_ADVANSYS) += advansys/mcode.bin advansys/38C1600.bin \ - advansys/3550.bin advansys/38C0800.bin +fw-shipped-$(CONFIG_PCMCIA_PCNET) += + +fw-shipped-$(CONFIG_PCMCIA_3C589) += +fw-shipped-$(CONFIG_PCMCIA_3C574) += +fw-shipped-$(CONFIG_SERIAL_8250_CS) += + fw-shipped-$(CONFIG_SCSI_QLOGIC_1280) += qlogic/1040.bin qlogic/1280.bin \ qlogic/12160.bin fw-shipped-$(CONFIG_SCSI_QLOGICPTI) += qlogic/isp1000.bin fw-shipped-$(CONFIG_INFINIBAND_QIB) += qlogic/sd7220.fw fw-shipped-$(CONFIG_SND_KORG1212) += korg/k1212.dsp -fw-shipped-$(CONFIG_SND_MAESTRO3) += ess/maestro3_assp_kernel.fw \ - ess/maestro3_assp_minisrc.fw fw-shipped-$(CONFIG_SND_SB16_CSP) += sb16/mulaw_main.csp sb16/alaw_main.csp \ sb16/ima_adpcm_init.csp \ sb16/ima_adpcm_playback.csp \ sb16/ima_adpcm_capture.csp -fw-shipped-$(CONFIG_SND_YMFPCI) += yamaha/ds1_ctrl.fw yamaha/ds1_dsp.fw \ - yamaha/ds1e_ctrl.fw fw-shipped-$(CONFIG_SND_WAVEFRONT) += yamaha/yss225_registers.bin -fw-shipped-$(CONFIG_TEHUTI) += tehuti/bdx.bin fw-shipped-$(CONFIG_TIGON3) += tigon/tg3.bin tigon/tg3_tso.bin \ tigon/tg3_tso5.bin fw-shipped-$(CONFIG_TYPHOON) += 3com/typhoon.bin @@ -101,40 +53,8 @@ emi26/bitstream.fw fw-shipped-$(CONFIG_USB_EMI62) += emi62/loader.fw emi62/bitstream.fw \ emi62/spdif.fw emi62/midi.fw -fw-shipped-$(CONFIG_USB_KAWETH) += kaweth/new_code.bin kaweth/trigger_code.bin \ - kaweth/new_code_fix.bin \ - kaweth/trigger_code_fix.bin -ifdef CONFIG_FIRMWARE_IN_KERNEL -fw-shipped-$(CONFIG_USB_SERIAL_KEYSPAN_MPR) += keyspan/mpr.fw -fw-shipped-$(CONFIG_USB_SERIAL_KEYSPAN_USA18X) += keyspan/usa18x.fw -fw-shipped-$(CONFIG_USB_SERIAL_KEYSPAN_USA19) += keyspan/usa19.fw -fw-shipped-$(CONFIG_USB_SERIAL_KEYSPAN_USA19QI) += keyspan/usa19qi.fw -fw-shipped-$(CONFIG_USB_SERIAL_KEYSPAN_USA19QW) += keyspan/usa19qw.fw -fw-shipped-$(CONFIG_USB_SERIAL_KEYSPAN_USA19W) += keyspan/usa19w.fw -fw-shipped-$(CONFIG_USB_SERIAL_KEYSPAN_USA28) += keyspan/usa28.fw -fw-shipped-$(CONFIG_USB_SERIAL_KEYSPAN_USA28XA) += keyspan/usa28xa.fw -fw-shipped-$(CONFIG_USB_SERIAL_KEYSPAN_USA28XB) += keyspan/usa28xb.fw -fw-shipped-$(CONFIG_USB_SERIAL_KEYSPAN_USA28X) += keyspan/usa28x.fw -fw-shipped-$(CONFIG_USB_SERIAL_KEYSPAN_USA49W) += keyspan/usa49w.fw -fw-shipped-$(CONFIG_USB_SERIAL_KEYSPAN_USA49WLC) += keyspan/usa49wlc.fw -else -fw-shipped- += keyspan/mpr.fw keyspan/usa18x.fw keyspan/usa19.fw \ - keyspan/usa19qi.fw keyspan/usa19qw.fw keyspan/usa19w.fw \ - keyspan/usa28.fw keyspan/usa28xa.fw keyspan/usa28xb.fw \ - keyspan/usa28x.fw keyspan/usa49w.fw keyspan/usa49wlc.fw -endif -fw-shipped-$(CONFIG_USB_SERIAL_TI) += ti_3410.fw ti_5052.fw \ - mts_cdma.fw mts_gsm.fw mts_edge.fw -fw-shipped-$(CONFIG_USB_SERIAL_EDGEPORT) += edgeport/boot.fw edgeport/boot2.fw \ - edgeport/down.fw edgeport/down2.fw -fw-shipped-$(CONFIG_USB_SERIAL_EDGEPORT_TI) += edgeport/down3.bin fw-shipped-$(CONFIG_USB_SERIAL_WHITEHEAT) += whiteheat_loader.fw whiteheat.fw \ # whiteheat_loader_debug.fw -fw-shipped-$(CONFIG_USB_SERIAL_KEYSPAN_PDA) += keyspan_pda/keyspan_pda.fw -fw-shipped-$(CONFIG_USB_SERIAL_XIRCOM) += keyspan_pda/xircom_pgs.fw -fw-shipped-$(CONFIG_USB_VICAM) += vicam/firmware.fw -fw-shipped-$(CONFIG_VIDEO_CPIA2) += cpia2/stv0672_vp4.bin -fw-shipped-$(CONFIG_YAM) += yam/1200.bin yam/9600.bin fw-shipped-all := $(fw-shipped-y) $(fw-shipped-m) $(fw-shipped-) --- linux-4.8.0.orig/firmware/WHENCE +++ linux-4.8.0/firmware/WHENCE @@ -619,16 +619,6 @@ -------------------------------------------------------------------------- -Driver: MYRI_SBUS - MyriCOM Gigabit Ethernet - -File: myricom/lanai.bin - -Licence: Unknown - -Found in hex form in kernel source. - --------------------------------------------------------------------------- - Driver: bnx2x: Broadcom Everest File: bnx2x/bnx2x-e1-6.2.9.0.fw --- linux-4.8.0.orig/firmware/bnx2/bnx2-mips-06-6.2.3.fw.ihex +++ linux-4.8.0/firmware/bnx2/bnx2-mips-06-6.2.3.fw.ihex @@ -0,0 +1,5804 @@ +:10000000080001180800000000004A68000000C84D +:1000100000000000000000000000000008004A6826 +:100020000000001400004B30080000A00800000091 +:100030000000569400004B44080058200000008443 +:100040000000A1D808005694000001580000A25CEE +:100050000800321008000000000072F00000A3B495 +:10006000000000000000000000000000080072F026 +:1000700000000024000116A40800049008000400F9 +:10008000000017D4000116C80000000000000000A6 +:100090000000000000000000000000000000000060 +:1000A000080000A80800000000003BFC00012E9C96 +:1000B0000000000000000000000000000000000040 +:1000C00000000000000000000A00004600000000E0 +:1000D000000000000000000D636F6D362E322E33DD +:1000E0000000000006020302000000000000000300 +:1000F000000000C800000032000000030000000003 +:1001000000000000000000000000000000000000EF +:1001100000000010000001360000EA600000000549 +:1001200000000000000000000000000000000008C7 +:1001300000000000000000000000000000000000BF +:1001400000000000000000000000000000000000AF +:10015000000000000000000000000000000000009F +:10016000000000020000000000000000000000008D +:10017000000000000000000000000000000000007F +:10018000000000000000000000000010000000005F +:10019000000000000000000000000000000000005F +:1001A000000000000000000000000000000000004F +:1001B000000000000000000000000000000000003F +:1001C000000000000000000000000000000000002F +:1001D000000000000000000000000000000000001F +:1001E0000000000010000003000000000000000DEF +:1001F0000000000D3C02080024424AA03C03080015 +:1002000024634B9CAC4000000043202B1480FFFD76 +:10021000244200043C1D080037BD7FFC03A0F021F0 +:100220003C100800261001183C1C0800279C4AA01E +:100230000E000168000000000000000D27470100CB +:1002400090E3000B2402001A94E5000814620028D1 +:10025000000020218CE200003C0308008C63004475 +:1002600094E60014000211C20002104030A4000203 +:10027000005A10212463000130A50004A446008028 +:100280003C010800AC23004410A000190004202BFE +:100290008F4202B804410008240400013C02080017 +:1002A0008C420060244200013C010800AC22006046 +:1002B00003E00008008010218CE2002094E3001687 +:1002C00000002021AF4202808CE20004A743028498 +:1002D000AF4202883C021000AF4202B83C02080064 +:1002E0008C42005C244200013C010800AC22005C0E +:1002F00003E00008008010212747010090E3000B75 +:100300002402000394E50008146200280000202164 +:100310008CE200003C0308008C63004494E6001467 +:10032000000211C20002104030A40002005A102145 +:100330002463000130A50004A44600803C010800AD +:10034000AC23004410A000190004202B8F4202B8F7 +:1003500004410008240400013C0208008C420060B3 +:10036000244200013C010800AC22006003E00008C8 +:10037000008010218CE2002094E300160000202170 +:10038000AF4202808CE20004A7430284AF4202889D +:100390003C021000AF4202B83C0208008C42005CF4 +:1003A000244200013C010800AC22005C03E000088C +:1003B000008010218F4301002402010050620003DD +:1003C000000311C20000000D000311C20002104022 +:1003D000005A1021A440008003E000080000102112 +:1003E0009362000003E00008AF80000003E0000813 +:1003F0000000102103E00008000010212402010089 +:1004000014820008000000003C0208008C4200FC3E +:10041000244200013C010800AC2200FC0A0000DD7F +:1004200030A200203C0208008C42008424420001DB +:100430003C010800AC22008430A2002010400008DB +:1004400030A300103C0208008C4201082442000145 +:100450003C010800AC22010803E000080000000095 +:1004600010600008000000003C0208008C420104FB +:10047000244200013C010800AC22010403E0000812 +:10048000000000003C0208008C42010024420001F0 +:100490003C010800AC22010003E00008000000005D +:1004A00027BDFFE8AFBF0010274401009483000878 +:1004B000306200041040001B306600028F4202B818 +:1004C00004410008240500013C0208008C42006041 +:1004D000244200013C010800AC2200600A0001290E +:1004E0008FBF00108C82002094830016000028210A +:1004F000AF4202808C820004A7430284AF4202888C +:100500003C021000AF4202B83C0208008C42005C82 +:10051000244200013C010800AC22005C0A000129D1 +:100520008FBF001010C00006006028218F4401001A +:100530000E0000CD000000000A0001282405000183 +:100540008F8200088F4301045043000700002821D8 +:100550008F4401000E0000CD000000008F42010416 +:10056000AF820008000028218FBF001000A01021DA +:1005700003E0000827BD001827BDFFE8AFBF001447 +:10058000AFB00010974201083043700024022000F1 +:100590001062000B286220011440002F000010217F +:1005A00024024000106200250000000024026000C8 +:1005B00010620026000010210A0001658FBF0014A0 +:1005C00027500100920200091040001A2403000184 +:1005D0003C0208008C420020104000160000182148 +:1005E0000E00049300000000960300083C0608007B +:1005F00094C64B5E8E0400188F8200209605000C76 +:1006000000031C0000661825AC440000AC45000443 +:1006100024040001AC400008AC40000CAC400010C9 +:10062000AC400014AC4000180E0004B8AC43001CF1 +:10063000000018210A000164006010210E0003254B +:10064000000000000A000164000010210E000EE905 +:1006500000000000000010218FBF00148FB00010B8 +:1006600003E0000827BD001827BDFFE0AFB2001867 +:100670003C036010AFBF001CAFB10014AFB000105E +:100680008C6450002402FF7F3C1A800000822024EA +:100690003484380C24020037AC6450003C1208004B +:1006A00026524AD8AF42000824020C80AF420024F0 +:1006B0003C1B80083C06080024C60324024010218D +:1006C0002404001D2484FFFFAC4600000481FFFDCC +:1006D000244200043C020800244204B03C0108000B +:1006E000AC224AE03C020800244202303C010800EF +:1006F000AC224AE43C020800244201743C03080096 +:100700002463032C3C040800248403D83C0508001F +:1007100024A538F03C010800AC224B403C02080004 +:10072000244202EC3C010800AC264B243C010800AA +:10073000AC254B343C010800AC234B3C3C01080089 +:10074000AC244B443C010800AC224B483C0108005F +:10075000AC234ADC3C010800AC204AE83C0108001C +:10076000AC204AEC3C010800AC204AF03C010800F7 +:10077000AC204AF43C010800AC204AF83C010800D7 +:10078000AC204AFC3C010800AC204B003C010800B6 +:10079000AC244B043C010800AC204B083C01080091 +:1007A000AC204B0C3C010800AC204B103C01080075 +:1007B000AC204B143C010800AC204B183C01080055 +:1007C000AC264B1C3C010800AC264B203C01080029 +:1007D000AC254B303C010800AC234B380E000623FF +:1007E000000000003C028000344200708C42000097 +:1007F000AF8200143C0308008C6300208F82000449 +:10080000104300043C0280000E00045BAF83000430 +:100810003C028000344600703C0308008C6300A05A +:100820003C0208008C4200A4104300048F84001492 +:100830003C010800AC2300A4A743009E8CCA000022 +:100840003C0308008C6300BC3C0208008C4200B8EA +:100850000144202300641821000040210064202B63 +:1008600000481021004410213C010800AC2300BCCA +:100870003C010800AC2200B88F5100003222000772 +:100880001040FFDCAF8A00148CC600003C05080055 +:100890008CA500BC3C0408008C8400B800CA30233E +:1008A00000A628210000102100A6302B0082202164 +:1008B00000862021322700013C010800AC2500BC45 +:1008C0003C010800AC2400B810E0001F32220002F6 +:1008D0008F420100AF4200208F420104AF4200A8C6 +:1008E0009342010B0E0000C6305000FF2E02001E86 +:1008F00054400004001010800E0000C90A000213CA +:1009000000000000005210218C4200000040F80955 +:1009100000000000104000053C0240008F4301042D +:100920003C026020AC4300143C024000AF4201385E +:100930003C0208008C420034244200013C010800C3 +:10094000AC220034322200021040000E3222000499 +:100950008F4201400E0000C6AF4200200E000295FB +:10096000000000003C024000AF4201783C02080059 +:100970008C420038244200013C010800AC220038BF +:10098000322200041040FF983C0280008F42018018 +:100990000E0000C6AF4200208F43018024020F00EA +:1009A00014620005000000008F420188A742009CED +:1009B0000A0002483C0240009362000024030050F9 +:1009C000304200FF144300083C0240000E00027B4E +:1009D00000000000544000043C0240000E000D7571 +:1009E000000000003C024000AF4201B83C02080099 +:1009F0008C42003C244200013C010800AC22003C37 +:100A00000A0001C83C0280003C0290003442000110 +:100A100000822025AF4400208F4200200440FFFECA +:100A20000000000003E00008000000003C0280001D +:100A3000344200010082202503E00008AF4400207A +:100A400027BDFFE0AFB10014AFB0001000808821D7 +:100A5000AFBF00180E00025030B000FF9362007D5F +:100A60000220202102028025A370007D8F70007477 +:100A70003C0280000E000259020280241600000988 +:100A80008FBF00188F4201F80440FFFE24020002CD +:100A9000AF5101C0A34201C43C021000AF4201F8B3 +:100AA0008FBF00188FB100148FB0001003E0000852 +:100AB00027BD002027BDFFE8AFBF0010974201848B +:100AC0008F440188304202001040000500002821B8 +:100AD0000E000FAA000000000A00028D240500018C +:100AE0003C02FF0004800005008218243C02040040 +:100AF000506200019362003E240500018FBF001088 +:100B000000A0102103E0000827BD0018A360002208 +:100B10008F4401400A00025E2405000127BDFFE862 +:100B2000AFBF0014AFB0001093620000304400FF6C +:100B300038830020388200300003182B0002102B6D +:100B40000062182410600003240200501482008008 +:100B50008FBF001493620005304200011040007CFA +:100B60008FBF0014934201482443FFFF2C6200050D +:100B7000104000788FB00010000310803C03080084 +:100B800024634A68004310218C42000000400008A2 +:100B9000000000000E0002508F4401408F70000CD6 +:100BA0008F4201441602000224020001AF62000CD1 +:100BB0000E0002598F4401408F420144145000043A +:100BC0008FBF00148FB000100A000F2027BD00183F +:100BD0008F62000C0A0003040000000097620010FE +:100BE0008F4301443042FFFF1462001A00000000EE +:100BF00024020001A76200108F4202380443001053 +:100C00008F4201403C02003F3446F0003C0560004A +:100C10003C04FFC08CA22BBC0044182400461024C6 +:100C20000002130200031D82106200390000000060 +:100C30008F4202380440FFF7000000008F4201405D +:100C4000AF4202003C021000AF4202380A00032209 +:100C50008FBF0014976200100A0003040000000018 +:100C60000E0002508F440140976200128F430144EE +:100C70003050FFFF1603000224020001A762001299 +:100C80000E0002598F4401408F42014416020004B5 +:100C90008FBF00148FB000100A00029127BD00180A +:100CA000976200120A00030400000000976200141B +:100CB0008F4301443042FFFF14620006240200010A +:100CC0008FBF00148FB00010A76200140A00124AF0 +:100CD00027BD0018976200141440001D8FBF001438 +:100CE0000A00031C00000000976200168F430144B5 +:100CF0003042FFFF1462000B240200018FBF00147A +:100D00008FB00010A76200160A000B1227BD001852 +:100D10009742007824420004A76200100A000322D0 +:100D20008FBF001497620016240300013042FFFFBA +:100D3000144300078FBF00143C0208008C4200706F +:100D4000244200013C010800AC2200708FBF001457 +:100D50008FB0001003E0000827BD001827BDFFE892 +:100D6000AFBF0014AFB000108F50010093620000BD +:100D700093430109304400FF2402001F106200A5C4 +:100D80002862002010400018240200382862000A5F +:100D90001040000C2402000B286200081040002CB8 +:100DA00000000000046000E52862000214400028F2 +:100DB00024020006106200268FBF00140A00041FE0 +:100DC0008FB000101062005E2862000B144000DC3F +:100DD0008FBF00142402000E106200738FB0001049 +:100DE0000A00041F00000000106200C028620039E1 +:100DF0001040000A2402008024020036106200CA5B +:100E000028620037104000B424020035106200C18F +:100E10008FBF00140A00041F8FB000101062002B57 +:100E20002862008110400006240200C82402003914 +:100E3000106200B48FBF00140A00041F8FB00010AE +:100E4000106200998FBF00140A00041F8FB00010B9 +:100E50003C0208008C420020104000B98FBF0014F3 +:100E60000E000493000000008F4201008F830020D9 +:100E70009745010C97460108AC6200008F420104BF +:100E80003C04080094844B5E00052C00AC62000416 +:100E90008F4201180006340000C43025AC620008FF +:100EA0008F42011C24040001AC62000C9342010A31 +:100EB00000A22825AC650010AC600014AC600018DE +:100EC000AC66001C0A0003F58FBF00143C0208004A +:100ED0008C4200201040009A8FBF00140E00049333 +:100EE00000000000974401083C03080094634B5E37 +:100EF0009745010C000422029746010E8F820020C4 +:100F0000000426000083202500052C003C030080FF +:100F100000A6282500832025AC400000AC4000043A +:100F2000AC400008AC40000CAC450010AC400014D4 +:100F3000AC400018AC44001C0A0003F42404000177 +:100F40009742010C14400015000000009362000558 +:100F50003042001014400011000000000E0002504A +:100F6000020020219362000502002021344200107B +:100F70000E000259A36200059362000024030020C2 +:100F8000304200FF1043006D020020218FBF00148B +:100F90008FB000100A000FC027BD00180000000D20 +:100FA0000A00041E8FBF00143C0208008C4200207F +:100FB000104000638FBF00140E0004930000000077 +:100FC0008F4201048F8300209744010C3C050800E8 +:100FD00094A54B5EAC6200009762002C00042400D4 +:100FE0003042FFFF008220253C02400E00A228254F +:100FF000AC640004AC600008AC60000CAC60001095 +:10100000AC600014AC600018AC65001C0A0003F46E +:10101000240400010E00025002002021A7600008F5 +:101020000E00025902002021020020210E00025E63 +:10103000240500013C0208008C42002010400040C2 +:101040008FBF00140E000493000000009742010CB3 +:101050008F8300203C05080094A54B5E000214001D +:10106000AC700000AC620004AC6000088F64004CFF +:101070003C02401F00A22825AC64000C8F62005087 +:1010800024040001AC6200108F620054AC620014B2 +:10109000AC600018AC65001C8FBF00148FB000104E +:1010A0000A0004B827BD0018240200205082002541 +:1010B0008FB000100E000F0A020020211040002007 +:1010C0008FBF0014020020218FB0001000002821E3 +:1010D0000A00025E27BD0018020020218FBF001405 +:1010E0008FB000100A00058027BD00189745010C3D +:1010F000020020218FBF00148FB000100A0005A04D +:1011000027BD0018020020218FB000100A0005C57D +:1011100027BD00189345010D020020218FB000105B +:101120000A00060F27BD0018020020218FBF0014FF +:101130008FB000100A0005EB27BD00188FBF001408 +:101140008FB0001003E0000827BD00188F4202781E +:101150000440FFFE2402000234840080AF440240B9 +:10116000A34202443C02100003E00008AF420278B0 +:101170003C04080094844B6A3C0208008C424B7487 +:101180003083FFFF000318C000431021AF42003C32 +:101190003C0208008C424B70AF4200383C020050C9 +:1011A00034420008AF4200300000000000000000A0 +:1011B000000000008F420000304200201040FFFD80 +:1011C000000000008F4204003C010800AC224B608C +:1011D0008F4204043C010800AC224B643C02002016 +:1011E000AF420030000000003C02080094424B680F +:1011F0003C03080094634B6C3C05080094A54B6EBF +:1012000024840001004310213083FFFF3C010800CB +:10121000A4224B683C010800A4244B6A1465000317 +:10122000000000003C010800A4204B6A03E0000815 +:10123000000000003C05000A27BDFFE80345282107 +:101240003C04080024844B50AFBF00100E00051D65 +:101250002406000A3C02080094424B523C0308005A +:1012600094634B6E3042000F244200030043180485 +:1012700024027FFF0043102B10400002AF83001CAC +:101280000000000D0E00042A000000003C020800CF +:1012900094424B5A8FBF001027BD001803E000088E +:1012A000A74200A23C02000A034210219443000618 +:1012B0003C02080094424B5A3C010800A4234B56C0 +:1012C000004310238F83001C00021400000214034B +:1012D0000043102B03E000083842000127BDFFE85F +:1012E000AFBF00103C02000A0342102194420006E6 +:1012F0003C010800A4224B560E00047700000000B9 +:101300005440FFF93C02000A8FBF001003E00008C0 +:1013100027BD001827BDFFE8AFBF00100E000477FF +:101320000000000010400003000000000E000485D3 +:10133000000000003C0208008C424B608FBF001090 +:1013400027430400AF4200383C0208008C424B6443 +:1013500027BD0018AF830020AF42003C3C020005CF +:10136000AF42003003E00008AF8000188F82001801 +:101370003C0300060002114000431025AF4200303C +:101380000000000000000000000000008F4200008C +:10139000304200101040FFFD27420400AF820020C1 +:1013A00003E00008AF8000183C0608008CC64B64C0 +:1013B0008F8500188F8300203C02080094424B5A0E +:1013C00027BDFFE024A50001246300202442000182 +:1013D00024C70020AFB10014AFB00010AFBF001899 +:1013E000AF850018AF8300203C010800A4224B5AAF +:1013F000309000FF3C010800AC274B6404C100089A +:101400000000882104E00006000000003C02080003 +:101410008C424B60244200013C010800AC224B602E +:101420003C02080094424B5A3C03080094634B680A +:101430000010202B004310262C42000100441025F0 +:10144000144000048F830018240200101462000F5F +:10145000000000000E0004A9241100013C03080054 +:1014600094634B5A3C02080094424B681462000398 +:10147000000000000E00042A000000001600000317 +:10148000000000000E000493000000003C03080070 +:1014900094634B5E3C02080094424B5C2463000161 +:1014A0003064FFFF3C010800A4234B5E148200035C +:1014B000000000003C010800A4204B5E1200000662 +:1014C000000000003C02080094424B5AA74200A2D0 +:1014D0000A00050B022010210E0004770000000016 +:1014E00010400004022010210E00048500000000BE +:1014F000022010218FBF00188FB100148FB0001090 +:1015000003E0000827BD00203084FFFF30A5FFFF67 +:101510000000182110800007000000003082000148 +:101520001040000200042042006518210A00051343 +:101530000005284003E000080060102110C00006EC +:1015400024C6FFFF8CA2000024A50004AC8200008A +:101550000A00051D2484000403E0000800000000C8 +:1015600010A0000824A3FFFFAC86000000000000CC +:10157000000000002402FFFF2463FFFF1462FFFA53 +:101580002484000403E0000800000000240200019D +:10159000AF62000CA7620010A7620012A7620014DD +:1015A00003E00008A76200163082007F034210218A +:1015B0003C08000E004818213C0208008C42002024 +:1015C00027BDFFD82407FF80AFB3001CAFB20018BF +:1015D000AFB10014AFB00010AFBF00200080802179 +:1015E00030B100FF0087202430D200FF1040002FD0 +:1015F00000009821AF44002C9062000024030050AA +:10160000304200FF1443000E000000003C020800BE +:101610008C4200E00202102100471024AF42002C4F +:101620003C0208008C4200E0020210213042007FA0 +:101630000342102100481021944200D43053FFFF90 +:101640000E000493000000003C02080094424B5E30 +:101650008F8300200011340000C2302500122C00BE +:101660003C02400000C2302534A50001AC700000EF +:101670008FBF0020AC6000048FB20018AC7300086C +:101680008FB10014AC60000C8FB3001CAC6500106F +:101690008FB00010AC60001424040001AC6000188E +:1016A00027BD00280A0004B8AC66001C8FBF0020CC +:1016B0008FB3001C8FB200188FB100148FB00010D0 +:1016C00003E0000827BD00289343010F2402001007 +:1016D0001062000E2865001110A0000724020012FD +:1016E000240200082405003A1062000600003021A0 +:1016F00003E0000800000000240500351462FFFC30 +:10170000000030210A000538000000008F420074FC +:1017100024420FA003E00008AF62000C27BDFFE8E1 +:10172000AFBF00100E00025E240500018FBF001045 +:1017300024020001A762001227BD00182402000144 +:1017400003E00008A360002227BDFFE0AFB1001452 +:10175000AFB00010AFBF001830B1FFFF0E00025055 +:10176000008080219362003F24030004304200FF88 +:101770001443000C02002021122000082402000A59 +:101780000E00053100000000936200052403FFFEF7 +:1017900000431024A362000524020012A362003F4C +:1017A000020020210E000259A360008116200003D0 +:1017B000020020210E0005950000000002002021FB +:1017C000322600FF8FBF00188FB100148FB00010B9 +:1017D000240500380A00053827BD002027BDFFE09A +:1017E000AFBF001CAFB20018AFB10014AFB0001013 +:1017F0000E000250008080210E0005310000000024 +:101800009362003F24120018305100FF123200038F +:101810000200202124020012A362003F936200050F +:101820002403FFFE004310240E000259A3620005AA +:10183000020020212405002016320007000030217C +:101840008FBF001C8FB200188FB100148FB0001032 +:101850000A00025E27BD00208FBF001C8FB2001857 +:101860008FB100148FB00010240500390A0005382C +:1018700027BD002027BDFFE8AFB00010AFBF0014A8 +:101880009742010C2405003600808021144000108E +:10189000304600FF0E00025000000000240200123B +:1018A000A362003F93620005344200100E00053130 +:1018B000A36200050E00025902002021020020212F +:1018C0000E00025E240500200A000604000000004D +:1018D0000E000538000000000E000250020020211A +:1018E000936200232403FF9F020020210043102461 +:1018F0008FBF00148FB00010A36200230A000259AA +:1019000027BD001827BDFFE0AFBF0018AFB100141E +:10191000AFB0001030B100FF0E00025000808021F7 +:10192000240200120E000531A362003F0E0002598E +:101930000200202102002021022030218FBF001848 +:101940008FB100148FB00010240500350A0005384F +:1019500027BD0020A380002C03E00008A380002DF9 +:101960008F4202780440FFFE8F820034AF42024073 +:1019700024020002A34202443C02100003E00008DB +:10198000AF4202783C0360008C6254003042000891 +:101990001440FFFD000000008C625408AF82000C70 +:1019A00024020052AC605408AC645430AC6254342D +:1019B0002402000803E00008AC6254003C0260000E +:1019C0008C42540030420008104000053C03600087 +:1019D0008C625400304200081440FFFD00000000FB +:1019E0008F83000C3C02600003E00008AC43540805 +:1019F00090A3000024020005008040213063003FD6 +:101A000000004821146200050000502190A2001C33 +:101A100094A3001E304900FF306AFFFFAD00000CA8 +:101A2000AD000010AD000024950200148D05001CCF +:101A30008D0400183042FFFF0049102300021100FE +:101A4000000237C3004038210086202300A2102B5B +:101A50000082202300A72823AD05001CAD04001838 +:101A6000A5090014A5090020A50A001603E0000836 +:101A7000A50A00228F4201F80440FFFE2402000262 +:101A8000AF4401C0A34201C43C02100003E00008BF +:101A9000AF4201F83C0208008C4200B427BDFFE8C9 +:101AA000AFBF001424420001AFB000103C01080099 +:101AB000AC2200B48F4300243C02001F30AA00FF78 +:101AC0003442FF8030D800FF006280240080F8217B +:101AD00030EF00FF1158003B01405821240CFF80DB +:101AE0003C19000A3163007F000310C00003194055 +:101AF000006218213C0208008C4200DC25680001CD +:101B0000310D007F03E21021004310213043007F9C +:101B100003431821004C102400794821AF420024CF +:101B20008D220024016C1824006C7026AD22000C5C +:101B30008D220024310800FFAD22001095220014F0 +:101B4000952300208D27001C3042FFFF3063FFFFEC +:101B50008D2600180043102300021100000227C345 +:101B60000040282100C4302300E2102B00C23023A3 +:101B700000E53823AD27001CAD2600189522002073 +:101B8000A522001495220022154B000AA52200165A +:101B90008D2300248D220008254600013145008058 +:101BA0001462000430C4007F108F000238AA008045 +:101BB00000C0502151AF000131C800FF1518FFC906 +:101BC000010058218F8400343082007F03421821A5 +:101BD0003C02000A006218212402FF8000822024B7 +:101BE000AF440024A06A0079A06A00838C62005090 +:101BF0008F840034AC6200708C6500743C027FFFFF +:101C00003442FFFF00A228240E00066BAC6500746E +:101C1000AF5000248FBF00148FB0001003E0000805 +:101C200027BD001827BDFFC0AFBE0038AFB70034D6 +:101C3000AFB5002CAFB20020AFB1001CAFB00018A0 +:101C4000AFBF003CAFB60030AFB40028AFB3002444 +:101C50008F4500248F4600288F43002C3C02001F34 +:101C60003442FF800062182400C230240080A82182 +:101C7000AFA3001400A2F0240E00062FAFA60010A0 +:101C80003C0208008C4200E02410FF8003608821A1 +:101C900002A2102100501024AF4200243C02080090 +:101CA0008C4200E002A210213042007F0342182142 +:101CB0003C02000A00629021924200D293630084A9 +:101CC000305700FF306300FF24020001106200342F +:101CD000036020212402000214620036000000008C +:101CE0000E001216024028219223008392220083C4 +:101CF0003063007F3042007F000210C000031940B3 +:101D0000006218213C0208008C4200DC02A2102173 +:101D10000043382100F01024AF42002892250078BB +:101D20009224008330E2007F034218213C02000C21 +:101D300014850007006280212402FFFFA24200F107 +:101D40002402FFFFA64200F20A0007272402FFFF39 +:101D500096020020A24200F196020022A64200F262 +:101D60008E020024AE4200F492220083A24200F0D0 +:101D70008E4200C8AE4200FC8E4200C4AE4200F863 +:101D80008E220050AE4201008E4200CCAE420104D1 +:101D9000922200853042003F0A0007823442004010 +:101DA0000E00123902402821922200850A00078283 +:101DB0003042003F936200852403FFDF3042003F42 +:101DC000A36200859362008500431024A36200850E +:101DD0009363008393620078307400FF304200FF09 +:101DE00010540036240AFF803C0C000C3283007F24 +:101DF000000310C000031940006218213C020800D3 +:101E00008C4200DC268800013109007F02A21021EB +:101E10000043382130E2007F0342182100EA1024F9 +:101E2000AF420028006C80218E020024028A182410 +:101E3000006A5826AE02000C8E020024310800FF12 +:101E4000AE02001096020014960300208E07001CBC +:101E50003042FFFF3063FFFF8E060018004310235F +:101E600000021100000227C30040282100C43023D3 +:101E700000E2102B00C2302300E53823AE07001C1F +:101E8000AE06001896020020A60200149602002258 +:101E9000A602001692220079304200FF105400077B +:101EA0000000000051370001316800FF92220078E5 +:101EB000304200FF1448FFCD0100A0219222008390 +:101EC000A22200798E2200500A0007E2AE220070A2 +:101ED000A22200858E22004C2405FF80AE42010C18 +:101EE0009222008534420020A2220085924200D135 +:101EF0003C0308008C6300DC305400FF3C02080007 +:101F00008C4200E400143140001420C002A31821C8 +:101F100000C4202102A210210064382100461021B3 +:101F20000045182400E52824AF450028AF43002CC5 +:101F30003042007F924400D030E3007F03422821EA +:101F4000034318213C02000C006280213C02000E79 +:101F5000309600FF00A298211296002A000000008F +:101F60008E02000C02002021026028211040002572 +:101F7000261000280E00064A000000009262000DA4 +:101F800026830001307400FF3042007FA262000D02 +:101F90002404FF801697FFF0267300203C020800FF +:101FA0008C4200DC0000A02102A210210044102479 +:101FB000AF4200283C0208008C4200E43C030800C9 +:101FC0008C6300DC02A2102100441024AF42002CDC +:101FD0003C0208008C4200E402A318213063007F19 +:101FE00002A210213042007F034220210343182126 +:101FF0003C02000C006280213C02000E0A0007A493 +:10200000008298218E4200D8AE2200508E4200D825 +:10201000AE22007092250083924600D19223008365 +:10202000924400D12402FF8000A228243063007F64 +:10203000308400FF00A628250064182A10600002E2 +:1020400030A500FF38A50080A2250083A2250079D5 +:102050000E00063D000000009222007E02A020211A +:10206000A222007A8E2300743C027FFF3442FFFFDD +:10207000006218240E00066BAE2300748FA20010BD +:10208000AF5E00248FBF003CAF4200288FBE0038F7 +:102090008FA200148FB700348FB600308FB5002C9C +:1020A0008FB400288FB300248FB200208FB1001CA2 +:1020B0008FB0001827BD004003E00008AF42002C9D +:1020C00090A2000024420001A0A200003C030800EE +:1020D0008C6300F4304200FF1443000F0080302175 +:1020E000A0A000003C0208008C4200E48F84003471 +:1020F000008220213082007F034218213C02000C24 +:10210000006218212402FF8000822024ACC300005A +:1021100003E00008AF4400288C8200002442002025 +:1021200003E00008AC82000094C200003C080800F4 +:10213000950800CA30E7FFFF008048210102102106 +:10214000A4C2000094C200003042FFFF00E2102B46 +:1021500054400001A4C7000094A200003C03080002 +:102160008C6300CC24420001A4A2000094A20000D1 +:102170003042FFFF544300078F8600280107102BD1 +:10218000A4A000005440000101003821A4C70000B1 +:102190008F8600288CC4001CAF44003C94A2000031 +:1021A0008F43003C3042FFFF000210C00062182144 +:1021B000AF43003C8F42003C008220231880000483 +:1021C000000000008CC200180A00084324420001ED +:1021D0008CC20018AF4200383C020050344200105C +:1021E000AF420030000000000000000000000000CE +:1021F0008F420000304200201040FFFD0000000030 +:102200008F420404AD2200048F420400AD2200007E +:102210003C020020AF42003003E000080000000054 +:1022200027BDFFE0AFB20018AFB10014AFB000108F +:10223000AFBF001C94C2000000C080213C12080007 +:10224000965200C624420001A60200009603000038 +:1022500094E2000000E03021144300058FB100300B +:102260000E000818024038210A000875000000001E +:102270008C8300048C820004244200400461000727 +:10228000AC8200048C8200040440000400000000C2 +:102290008C82000024420001AC8200009602000003 +:1022A0003042FFFF50520001A600000096220000BD +:1022B00024420001A62200008F82002896230000FD +:1022C00094420016144300048FBF001C2402000136 +:1022D000A62200008FBF001C8FB200188FB100141F +:1022E0008FB0001003E0000827BD00208F89002870 +:1022F00027BDFFE0AFBF00188D220028274804004B +:1023000030E700FFAF4200388D22002CAF8800304C +:10231000AF42003C3C020005AF420030000000002C +:1023200000000000000000000000000000000000AD +:10233000000000008C82000C8C82000CAD020000BA +:102340008C820010AD0200048C820018AD020008DF +:102350008C82001CAD02000C8CA20014AD02001097 +:102360008C820020AD02001490820005304200FFF4 +:1023700000021200AD0200188CA20018AD02001C71 +:102380008CA2000CAD0200208CA20010AD02002433 +:102390008CA2001CAD0200288CA20020AD02002CF3 +:1023A000AD060030AD000034978300263402FFFFF5 +:1023B00014620002006020213404FFFF10E00011CD +:1023C000AD04003895230036952400362402000120 +:1023D0003063FFFF000318C20069182190650040B8 +:1023E000308400070082100400451025A0620040E0 +:1023F0008F820028944200563042FFFF0A0008DC1A +:10240000AD02003C952300369524003624020001DD +:102410003063FFFF000318C2006918219065004077 +:1024200030840007008210040002102700451024A9 +:10243000A0620040AD00003C000000000000000071 +:10244000000000003C02000634420040AF42003071 +:102450000000000000000000000000008F420000AB +:10246000304200101040FFFD8F860028AF880030FA +:1024700024C2005624C7003C24C4002824C50032CE +:1024800024C600360E000856AFA200108FBF0018F9 +:1024900003E0000827BD00208F8300243C060800CD +:1024A0008CC600E88F82003430633FFF0003198040 +:1024B00000461021004310212403FF803046007F96 +:1024C00000431024AF420028034618213C02000CB0 +:1024D0000062302190C2000D30A500FF00003821BD +:1024E00034420010A0C2000D8F8900288F8A00247A +:1024F00095230036000A13823048000324020001AD +:10250000A4C3000E1102000B2902000210400005B6 +:10251000240200021100000C240300010A0009201B +:102520000000182111020006000000000A00092026 +:10253000000018218CC2002C0A000920244300014D +:102540008CC20014244300018CC200180043102BDD +:1025500050400009240700012402002714A20003B0 +:10256000000000000A00092C240700019522003E0B +:1025700024420001A522003E000A138230430003DA +:102580002C62000210400009008028211460000421 +:102590000000000094C200360A00093C3046FFFFEC +:1025A0008CC600380A00093C008028210000302138 +:1025B0003C04080024844B780A00088900000000CD +:1025C000274901008D22000C9523000601202021BF +:1025D000000216023046003F3063FFFF240200274E +:1025E00000C0282128C7002810C2000EAF83002495 +:1025F00010E00008240200312402002110C200096A +:102600002402002510C200079382002D0A00095BF6 +:102610000000000010C200059382002D0A00095B33 +:10262000000000000A0008F4000000000A0006266E +:102630000000000095230006912400058D25000C64 +:102640008D2600108D2700188D28001C8D29002054 +:10265000244200013C010800A4234B7E3C010800F9 +:10266000A0244B7D3C010800AC254B843C010800B4 +:10267000AC264B883C010800AC274B903C0108007D +:10268000AC284B943C010800AC294B9803E00008AF +:10269000A382002D8F87002827BDFFC0AFB3003471 +:1026A000AFB20030AFB1002CAFB00028AFBF0038E0 +:1026B0003C0208008C4200D094E3003030B0FFFFB1 +:1026C000005010073045FFFF3063FFFF00C0982126 +:1026D000A7A200103C110800963100C614A3000602 +:1026E0003092FFFF8CE2002424420030AF42003CD5 +:1026F0000A0009948CE2002094E200323042FFFF8D +:1027000054A2000827A400188CE2002C24420030B8 +:10271000AF42003C8CE20028AF4200380A0009A218 +:102720008F84002827A5001027A60020022038212A +:102730000E000818A7A000208FA200182442003025 +:10274000AF4200388FA2001CAF42003C8F840028AB +:102750003C020005AF42003094820034274304005D +:102760003042FFFF0202102B14400007AF830030FD +:1027700094820054948300340202102100431023F9 +:102780000A0009B63043FFFF94830054948200345A +:102790000223182100501023006218233063FFFF2A +:1027A000948200163042FFFF144300030000000033 +:1027B0000A0009C424030001948200163042FFFF7E +:1027C0000043102B104000058F82003094820016C9 +:1027D000006210233043FFFF8F820030AC530000B3 +:1027E000AC400004AC520008AC43000C3C020006B4 +:1027F00034420010AF420030000000000000000032 +:10280000000000008F420000304200101040FFFD29 +:10281000001018C2006418219065004032040007BF +:10282000240200018FBF00388FB300348FB2003014 +:102830008FB1002C8FB000280082100400451025B5 +:1028400027BD004003E00008A062004027BDFFA8AC +:10285000AFB60050AFB5004CAFB40048AFB30044C2 +:10286000AFB1003CAFBF0054AFB20040AFB00038D2 +:102870008C9000003C0208008C4200E88F860034F7 +:10288000960300022413FF8000C2302130633FFF13 +:102890000003198000C3382100F3102490B2000017 +:1028A000AF42002C9203000230E2007F034230214D +:1028B0003C02000E00C28821306300C024020040A8 +:1028C0000080A82100A0B021146200260000A021F1 +:1028D0008E3400388E2200181440000224020001B9 +:1028E000AE2200189202000D304200201440001564 +:1028F0008F8200343C0308008C6300DC001238C077 +:10290000001231400043102100C730210046382119 +:1029100030E300073C02008030E6007800C230253A +:102920000343182100F31024AF4208002463090078 +:10293000AF4608108E2200188C6300080043102157 +:10294000AE2200188E22002C8E2300182442000193 +:102950000062182B1060003D000000000A000A7899 +:1029600000000000920300022402FFC00043102474 +:10297000304200FF1440000524020001AE2200187E +:10298000962200360A000A613054FFFF8E2200149E +:1029900024420001AE22001892020000000216003C +:1029A0000002160304410029000000009602000204 +:1029B00027A4001000802821A7A20016960200027A +:1029C00024070001000030213042FFFFAF820024C5 +:1029D0000E000889AFA0001C960300023C0408000A +:1029E0008C8400E88F82003430633FFF000319803D +:1029F00000441021004310213043007F3C05000CAF +:102A00000053102403431821AF4200280065182109 +:102A10009062000D001221403042007FA062000D44 +:102A20003C0308008C6300E48F82003400431021D3 +:102A30000044382130E2007F03421021004510217C +:102A400000F31824AF430028AEA200009222000D2C +:102A5000304200101040001302A020218F83002874 +:102A60008EA40000028030219462003E2442FFFFC9 +:102A7000A462003E948400029625000E3084FFFF7D +:102A80000E00097330A5FFFF8F82002894430034A5 +:102A90009622000E1443000302A02021240200010C +:102AA000A382002C02C028210E0007FE00000000B7 +:102AB0008FBF00548FB600508FB5004C8FB40048C4 +:102AC0008FB300448FB200408FB1003C8FB000380C +:102AD00003E0000827BD00588F82002827BDFFD0E3 +:102AE000AFB40028AFB20020AFBF002CAFB30024BA +:102AF000AFB1001CAFB00018904400D0904300D19B +:102B00000000A021309200FFA3A30010306300FF5B +:102B10008C5100D88C5300DC1072002B2402000171 +:102B20003C0308008C6300E493A400108F820034FF +:102B30002406FF800004214000431021004410219E +:102B40003043007F00461024AF4200280343182181 +:102B50003C02000C006218218C62000427A40014BF +:102B600027A50010022280210270102304400015C6 +:102B7000AFA300149062000D00C21024304200FF89 +:102B800014400007020088219062000D344200408A +:102B90000E0007FEA062000D0A000ABD93A20010FD +:102BA0000E0009E1241400018F830028AC7000D8C6 +:102BB00093A20010A06200D193A200101452FFD87B +:102BC0000000000024020001168200048FBF002CC8 +:102BD0000E000626000000008FBF002C8FB40028D6 +:102BE0008FB300248FB200208FB1001C8FB000186B +:102BF00003E0000827BD003027BDFFD8AFB3001C9D +:102C0000AFB20018AFB10014AFB00010AFBF0020DA +:102C10000080982100E0802130B1FFFF0E00049376 +:102C200030D200FF000000000000000000000000A3 +:102C30008F820020AC510000AC520004AC5300085D +:102C4000AC40000CAC400010AC400014AC4000188C +:102C50003C03080094634B5E02038025AC50001CCB +:102C6000000000000000000000000000240400013B +:102C70008FBF00208FB3001C8FB200188FB10014DB +:102C80008FB000100A0004B827BD002827BDFFE858 +:102C9000AFB00010AFBF001430A5FFFF30C600FF7B +:102CA0000080802124020C80AF420024000000003C +:102CB0000000000000000000000000000000000014 +:102CC0000E000ACC000000003C040800248400E050 +:102CD0008C8200002403FF808FBF001402021021A9 +:102CE00000431024AF4200248C8200003C03000A01 +:102CF000020280213210007F035010218FB000109B +:102D00000043102127BD001803E00008AF8200280F +:102D100027BDFFE8AFBF00108F4401403C0308000F +:102D20008C6300E02402FF80AF840034008318210C +:102D300000621024AF4200243C02000803424021FC +:102D4000950500023063007F3C02000A034318210E +:102D50000062182130A5FFFF3402FFFF0000302180 +:102D60003C07602010A20006AF8300282402FFFF6A +:102D7000A5020002946500D40E000AF130A5FFFF01 +:102D80008FBF001024020C8027BD001803E000084C +:102D9000AF4200243C020008034240219502000299 +:102DA0003C0A0800954A00C63046FFFF14C00007E1 +:102DB0003402FFFF8F8200288F8400343C0760209C +:102DC000944500D40A000B5A30A5FFFF10C200241E +:102DD0008F87002894E2005494E400163045FFFFEA +:102DE00000A6102300A6182B3089FFFF10600004F6 +:102DF0003044FFFF00C51023012210233044FFFFA1 +:102E0000008A102B1040000C012A1023240200011C +:102E1000A50200162402FFFFA502000294E500D4DB +:102E20008F8400340000302130A5FFFF3C07602074 +:102E30000A000AF1000000000044102A10400008B7 +:102E4000000000009502001630420001104000040E +:102E5000000000009742007E24420014A5020016E4 +:102E600003E00008000000008F84002827BDFFE079 +:102E7000AFBF0018948200349483003E1060001AA3 +:102E80003048FFFF9383002C2402000114620027C6 +:102E90008FBF00188F820028000818C23108000771 +:102EA000006218212447003A244900542444002099 +:102EB000244500302446003490620040304200FF38 +:102EC0000102100730420001104000168FBF0018A9 +:102ED0000E000856AFA900108F82002894420034DB +:102EE0000A000B733048FFFF94830036948200344D +:102EF0001043000E8FBF001894820036A482003465 +:102F000094820056A48200548C82002CAC8200244F +:102F100094820032A48200309482003CA482003A61 +:102F20008FBF00180A000B3327BD002003E0000804 +:102F300027BD002027BDFFE8AFBF00108F4A01006A +:102F40003C0508008CA500E03C02080090424B8440 +:102F50003C0C0800958C4B7E01452821304B003FEE +:102F600030A2007F03424021396900323C02000A4E +:102F70003963003F2C630001010240212D2900012B +:102F80002402FF8000A2282401234825AF8A0034B0 +:102F900000801821AF450024000030210080282146 +:102FA00024070001AF8800283C04080024844B78E3 +:102FB000AF8C002415200007A380002D24020020E0 +:102FC0005562000F006020213402FFFF5582000C83 +:102FD000006020212402002015620005000000008E +:102FE0008C6300142402FFFF106200070000000041 +:102FF0000E000889000000000A000BD0000000004D +:103000000E0008F4016028210E000B68000000008B +:103010008FBF001024020C8027BD001803E00008B9 +:10302000AF4200243C0208008C4200E027BDFFA014 +:10303000AFB1003C008210212411FF80AFBE0058C8 +:10304000AFB70054AFB20040AFB00038AFBF005CC4 +:10305000AFB60050AFB5004CAFB40048AFB30044BA +:10306000005110248F4800248F4900288F470028E2 +:10307000AF4200243C0208008C4200E00080902116 +:1030800024060006008210213042007F03421821EE +:103090003C02000A006280213C02001F3442FF8093 +:1030A00000E2382427A40010260500F00122F024B5 +:1030B0000102B8240E00051DAFA700308FA2001832 +:1030C000AE0200C48FA2001CAE0200C88FA2002472 +:1030D000AE0200CC93A40010920300D12402FF8022 +:1030E0000082102400431025304900FF3083007F08 +:1030F0003122007F0062102A10400004000310C03B +:1031000001311026304900FF000310C000031940B0 +:10311000006218213C0208008C4200DC920400D2BC +:10312000024210210043102100511024AF42002818 +:1031300093A300103063007F000310C00003194008 +:10314000006218213C0208008C4200DC024210217F +:10315000004310213042007F034218213C02000C42 +:10316000006240218FA300142402FFFF1062003090 +:10317000309500FF93A2001195030014304400FF26 +:103180003063FFFF0064182B1060000D000000008A +:10319000950400148D07001C8D0600183084FFFF75 +:1031A00000442023000421000000102100E4382105 +:1031B00000E4202B00C230210A000C4A00C4302158 +:1031C000950400148D07001C8D0600183084FFFF45 +:1031D000008220230004210000001021008018211B +:1031E00000C2302300E4202B00C4302300E3382346 +:1031F000AD07001CAD06001893A20011A502001433 +:1032000097A20012A50200168FA20014AD020010B2 +:103210008FA20014AD02000C93A20011A5020020A1 +:1032200097A20012A50200228FA20014AD02002472 +:103230002406FF80024610243256007FAF4200244D +:10324000035618213C02000A006280218E02004CC5 +:103250008FA200203124007F000428C0AE0200505D +:103260008FA200200004214000852821AE020070BA +:1032700093A2001001208821A202008393A20010D3 +:10328000A2020079920200853042003FA20200852E +:103290003C0208008C4200DC024210210045102153 +:1032A00000461024AF42002C3C0208008C4200E48F +:1032B0003C0308008C6300DC024210210044102112 +:1032C00000461024AF4200283C0208008C4200E473 +:1032D00002431821006518210242102100441021E8 +:1032E0003042007F3063007F93A50010034220210D +:1032F000034318213C02000E006240213C02000CF6 +:1033000010B1008C008248213233007F1660001912 +:103310002404FF803C0208008C4200DC02421021A1 +:1033200000441024AF42002C3C0208008C4200E410 +:103330003C0308008C6300DC02421021004410248E +:10334000AF4200283C0208008C4200E402431821EE +:103350003063007F024210213042007F034220216F +:10336000034318213C02000E006240213C02000C85 +:10337000008248219124000D2414FF8000001021B8 +:1033800000942025A124000D950400029505001449 +:103390008D07001C3084FFFF30A5FFFF8D0600184D +:1033A000008520230004210000E4382100C23021E0 +:1033B00000E4202B00C43021AD07001CAD0600182E +:1033C00095020002A5020014A50000168D02000857 +:1033D000AD0200108D020008AD02000C9502000243 +:1033E000A5020020A50000228D020008AD020024E5 +:1033F0009122000D30420040104000422622000180 +:103400003C0208008C4200E0A3B300283C10000AF4 +:103410000242102100541024AF4200243C02080054 +:103420008C4200E0A380002C27A4002C0242102133 +:103430003042007F03421821007018218C6200D8AE +:103440008D26000427A50028AFA9002C00461021D6 +:10345000AC6200D80E0009E1AF83002893A30028D6 +:103460008F8200280E000626A04300D10E000B68B4 +:103470000000000002541024AF4200243C02080067 +:103480008C4200DC00132940001320C000A420213E +:10349000024210210044102100541024AF42002C9D +:1034A0003C0208008C4200E43C0308008C6300DC12 +:1034B00003563021024210210045102100541024EF +:1034C000AF4200283C0208008C4200E4024318216D +:1034D0000064182102421021004510213042007F73 +:1034E0003063007F03422021034318213C02000E79 +:1034F000006240213C02000C00D080210082482163 +:10350000262200013043007F14750005304400FF7F +:103510002403FF800223102400431026304400FFC0 +:1035200093A2001000808821250800281444FF760B +:103530002529002093A400108FA300142402FFFF6C +:103540001062000A308900FF2482000124830001F8 +:103550003042007F14550005306900FF2403FF80CE +:103560000083102400431026304900FF92020078A7 +:10357000305300FF11330032012088213C02080043 +:103580008C4200DC3225007F000520C00005294068 +:1035900000A42021024210212406FF8000441021B3 +:1035A00000461024AF42002C3C0308008C6300DC72 +:1035B0003C0208008C4200E4024318210242102120 +:1035C0000045102100641821004610243063007F5C +:1035D000AF420028034318213C02000E0062402144 +:1035E0003C0208008C4200E48D06000C0100202102 +:1035F00002421021004510213042007F0342182171 +:103600003C02000C0062482110C0000D012028215E +:103610000E00064A000000002402FF800222182447 +:1036200026240001006228263082007F1455000203 +:10363000308300FF30A300FF1473FFD000608821A7 +:103640008E0300743C027FFF3442FFFF00621824A7 +:10365000AE0300740E00066B02402021AF57002419 +:103660008FA20030AF5E00288FBF005C8FBE005875 +:103670008FB700548FB600508FB5004C8FB4004800 +:103680008FB300448FB200408FB1003C8FB0003840 +:1036900027BD006003E00008AF42002C27BDFFD823 +:1036A000AFB1001CAFBF0020AFB000182751018898 +:1036B000922200032408FF803C03000A3047007F69 +:1036C000A3A700108F4601803C0208008C4200E056 +:1036D000AF86003400C2282100A81024AF42002485 +:1036E0009224000030A2007F0342102100431021E9 +:1036F000AF8200283084007F24020002148200255B +:10370000000719403C0208008C4200E400C210216E +:103710000043282130A2007F0342182100A8102472 +:10372000AF4200283C02000C006218219062000D9C +:10373000AFA3001400481025A062000D8FA3001451 +:103740009062000D304200405040006A8FBF002060 +:103750008F860028A380002C27A400148CC200D8D8 +:103760008C63000427A50010004310210E0009E11E +:10377000ACC200D893A300108F8200280E0006264A +:10378000A04300D10E000B68000000000A000E0BE1 +:103790008FBF00200E00062F00C020210E00063D26 +:1037A000000000003C020008034280219223000137 +:1037B0009202007B1443004F8FBF00209222000032 +:1037C0003044007F24020004108200172882000584 +:1037D00010400006240200052402000310820007A6 +:1037E0008FB1001C0A000E0C0000000010820012B5 +:1037F0008FBF00200A000E0C8FB1001C92050083C1 +:10380000920600788E0700748F84003430A500FF84 +:1038100000073E0230C600FF0E00067330E7007F4F +:103820000A000E0B8FBF00200E000BD78F840034D0 +:103830000A000E0B8FBF002024020C80AF42002430 +:103840009202003E30420040104000200000000084 +:103850009202003E00021600000216030441000618 +:10386000000000008F8400340E0005A024050093A2 +:103870000A000E0B8FBF00209202003F24030018A5 +:10388000304200FF1443000C8F84003424050039BB +:103890000E000538000030210E0002508F840034E5 +:1038A00024020012A202003F0E0002598F8400344D +:1038B0000A000E0B8FBF0020240500360E000538CD +:1038C000000030210A000E0B8FBF00200E000250B6 +:1038D0008F8400349202000534420020A2020005C9 +:1038E0000E0002598F8400340E000FC08F84003404 +:1038F0008FBF00208FB1001C8FB0001824020C80F5 +:1039000027BD002803E00008AF42002427BDFFE8E0 +:10391000AFB00010AFBF001427430100946200084D +:103920000002140000021403044100020000802180 +:103930002410000194620008304200801040001AF8 +:10394000020010219462000830422000104000164E +:10395000020010218C6300183C021C2D344219ED2A +:10396000240600061062000F3C0760213C0208009C +:103970008C4200D4104000078F8200288F830028DB +:10398000906200623042000F34420040A062006248 +:103990008F8200288F840034944500D40E000AF1F1 +:1039A00030A5FFFF020010218FBF00148FB0001060 +:1039B00003E0000827BD001827BDFFE0AFB10014E9 +:1039C000AFB00010A380002CAFBF00188F450100DE +:1039D0003C0308008C6300E02402FF80AF850034C4 +:1039E00000A318213064007F0344202100621824C2 +:1039F0003C02000A00822021AF430024275001002E +:103A00008E0200148C8300DCAF8400280043102356 +:103A100018400004000088218E0200140E000A8461 +:103A2000AC8200DC9202000B24030002304200FF53 +:103A30001443002F0000000096020008304300FFEE +:103A40002402008214620005240200840E00093E54 +:103A5000000000000A000E97000000001462000938 +:103A6000240200818F8200288F8400343C0760216B +:103A7000944500D49206000530A5FFFF0A000E868B +:103A800030C600FF14620027000000009202000A06 +:103A9000304300FF306200201040000430620040DC +:103AA0008F8400340A000E82240600401040000477 +:103AB000000316008F8400340A000E8224060041A1 +:103AC00000021603044100178F84003424060042CC +:103AD0008F8200283C076019944500D430A5FFFF71 +:103AE0000E000AF1000000000A000E97000000001E +:103AF0009202000B24030016304200FF1043000620 +:103B0000000000009202000B24030017304200FF67 +:103B100014430004000000000E000E11000000001D +:103B2000004088210E000B68000000009202000A8D +:103B3000304200081040000624020C808F850028C7 +:103B40003C0400080E0011EE0344202124020C80E6 +:103B5000AF4200248FBF0018022010218FB0001048 +:103B60008FB1001403E0000827BD002027BDFFE847 +:103B7000AFBF0014AFB000108F5000243C0308000A +:103B80008C6300E08F4501002402FF8000A3182110 +:103B90003064007F03442021006218243C02000AA4 +:103BA00000822021AF850034AF4300249082006260 +:103BB000AF8400283042000F34420050A0820062DF +:103BC0003C02001F3442FF800E00062602028024C1 +:103BD000AF5000248FBF00148FB0001003E0000826 +:103BE00027BD00183C0208008C4200201040001D38 +:103BF0002745010090A300093C0200080342202150 +:103C000024020018546200033C0200080A000ED887 +:103C10002402000803422021240200161462000539 +:103C20002402001724020012A082003F0A000EE2C4 +:103C300094A700085462000694A700089362000548 +:103C40002403FFFE00431024A362000594A700088C +:103C500090A6001B8CA4000094A500060A000ACCC4 +:103C600000073C0003E000080000000027440100BA +:103C700094820008304500FF38A3008238A20084F7 +:103C80002C6300012C420001006218251060000620 +:103C9000240200839382002D1040000D00000000DC +:103CA0000A000B9B0000000014A2000524A2FF8064 +:103CB0008F4301043C02602003E00008AC43001481 +:103CC000304200FF2C420002104000032402002278 +:103CD0000A000E3C0000000014A2000300000000D7 +:103CE0000A000EA9000000000A000EC70000000034 +:103CF0009363007E9362007A144300090000202140 +:103D00009362000024030050304200FF144300047B +:103D1000240400019362007E24420001A362007E1D +:103D200003E00008008010218F4201F80440FFFEEC +:103D300024020002AF4401C0A34201C43C021000AF +:103D400003E00008AF4201F827BDFFE8AFBF001055 +:103D50009362003F2403000A304200FF14430046F0 +:103D6000000000008F6300548F62004C1062007DE1 +:103D7000036030219362000024030050304200FFB2 +:103D80001443002F000000008F4401403C02080053 +:103D90008C4200E02403FF800082102100431024A5 +:103DA000AF4200243C0208008C4200E08F650054C2 +:103DB0003C03000A008220213084007F034410214C +:103DC00000431021AC4501089762003C8F63004C12 +:103DD0003042FFFF0002104000621821AF63005C18 +:103DE0008F6300548F64004C9762003C006418237A +:103DF0003042FFFF00031843000210400043102A26 +:103E000010400006000000008F6200548F63004CD9 +:103E1000004310230A000F58000210439762003C31 +:103E20003042FFFF00021040ACC2006424020001D7 +:103E3000A0C0007CA0C2008424020C80AF420024F9 +:103E40000E000F0A8F440140104000478FBF001042 +:103E50008F4301408F4201F80440FFFE240200021C +:103E6000AF4301C0A34201C43C021000AF4201F8BD +:103E70000A000FA88FBF00109362003F24030010B8 +:103E8000304200FF14430004000000008F44014052 +:103E90000A000F94000028219362003F24030016BB +:103EA000304200FF1443000424020014A362003FC8 +:103EB0000A000FA2000000008F62004C8F630050C8 +:103EC00000431023044100288FBF0010936200813B +:103ED00024420001A3620081936200812C4200040D +:103EE00014400010000000009362003F240300040F +:103EF000304200FF14430006000000008F440140E0 +:103F00008FBF0010240500930A0005A027BD0018EC +:103F10008F440140240500938FBF00100A00060F54 +:103F200027BD00188F4401400E0002500000000021 +:103F30008F6200542442FFFFAF6200548F62005032 +:103F40002442FFFFAF6200500E0002598F4401402F +:103F50008F4401408FBF0010240500040A00025E58 +:103F600027BD00188FBF001003E0000827BD001810 +:103F70008F4201889363007E00021402304400FFE8 +:103F8000306300FF1464000D0000000093620080A5 +:103F9000304200FF1044000900000000A3640080CC +:103FA0009362000024030050304200FF14430004D9 +:103FB000000000000A0006D78F440180A36400803F +:103FC00003E000080000000027BDFFE8AFB00010CC +:103FD000AFBF00149362000524030030304200306C +:103FE00014430089008080213C0208008C4200209C +:103FF00010400080020020210E0004930000000009 +:104000008F850020ACB000009362003E9363003FB8 +:10401000304200FF00021200306300FF0043102511 +:10402000ACA2000493620082000216000002160394 +:1040300004410005000000003C0308008C630048B8 +:104040000A000FE6000000009362003E304200408C +:10405000144000030000182193620081304300FFE8 +:104060009362008200031E00304200FF0002140031 +:1040700000621825ACA300088F620040ACA2000CBF +:104080008F620048ACA200108F62004CACA20014FA +:104090008F6200508F63004C0043102304410003E3 +:1040A000000000000A000FFA8F62004C8F6200507F +:1040B000ACA200183C02080094424B5E3C03C00BCB +:1040C00000002021004310250E0004B8ACA2001C03 +:1040D0008F6200548F840020AC8200008F620058F1 +:1040E000AC8200048F62005CAC8200088F620060CA +:1040F0008F43007400431021AC82000C8F62006477 +:10410000AC820010976300689762006A00031C008D +:104110003042FFFF00621825AC83001493620082D6 +:1041200024030080304200FF14430003000000001D +:104130000A00102EAC8000188F63000C24020001CE +:104140001062000E2402FFFF9362003E30420040E6 +:104150001440000A2402FFFF8F63000C8F4200749A +:10416000006218233C020800006210241440000280 +:10417000000028210060282100051043AC820018AF +:104180003C02080094424B5E3C03C00C000020211E +:10419000004310258F8300200E0004B8AC62001C81 +:1041A0008F6200188F8300203C05080094A54B5EA9 +:1041B00024040001AC620000AC6000048F66006C57 +:1041C0003C02400D00A22825AC6600088F6200DC8E +:1041D000AC62000CAC600010936200050002160097 +:1041E000AC620014AC6000180E0004B8AC65001C92 +:1041F000020020218FBF00148FB00010A3600005C3 +:104200000A00042127BD00188FBF00148FB00010D2 +:1042100003E0000827BD00189742007C30C600FF6D +:10422000A08600843047FFFF2402000514C2000B63 +:1042300024E3465090A201122C42000710400007D0 +:1042400024E30A0090A30112240200140062100467 +:1042500000E210210A0010663047FFFF3067FFFFC1 +:1042600003E00008A4870014AC87004C8CA201086E +:104270000080402100A0482100E2102330C600FF4A +:104280001840000393AA001324E2FFFCACA201082B +:1042900030C2000110400008000000008D020050F4 +:1042A00000E2102304410013240600058D0200548F +:1042B00010E20010000000008D02005414E2001A09 +:1042C000000000003C0208008C4200D83042002070 +:1042D0001040000A2402000191030078910200833B +:1042E000144300062402000101002021012028219E +:1042F000240600040A00105400000000A1000084FD +:1043000011400009A50200148F4301008F4201F8FB +:104310000440FFFE24020002AF4301C0A34201C4D7 +:104320003C021000AF4201F803E00008000000006A +:1043300027BDFFE88FA90028AFBF001000804021F3 +:1043400000E918231860007330C600FFA080007CCD +:10435000A08000818CA2010800E210230440004DDF +:10436000000000008C8200509483003C8C84006428 +:10437000004748233063FFFF012318210083202BCF +:1043800010800004000000008D0200640A0010B7D5 +:1043900000E210219502003C3042FFFF0122102173 +:1043A00000E21021AD02005C9502003C8D03005C30 +:1043B0003042FFFF0002104000E210210043102BAA +:1043C00010400003000000000A0010C68D02005CCF +:1043D0009502003C3042FFFF0002104000E2102135 +:1043E000AD02005CA1000084AD07004C8CA2010866 +:1043F00000E210231840000224E2FFFCACA20108F6 +:1044000030C200011040000A000000008D02005080 +:1044100000E2102304410004010020218D02005419 +:1044200014E20003000000000A0010E82406000562 +:104430008D02005414E200478FBF00103C020800B8 +:104440008C4200D8304200201040000A24020001B3 +:1044500091030078910200831443000624020001B6 +:1044600001002021240600048FBF00100A00105410 +:1044700027BD0018A1000084A50200148F4301008D +:104480008F4201F80440FFFE240200020A00110DD1 +:10449000000000008C82005C004910230043102BB8 +:1044A00054400001AC87005C9502003C3042FFFFA5 +:1044B0000062102B14400007240200029502003C09 +:1044C0008D03005C3042FFFF00621821AD03005CE9 +:1044D00024020002AD07004CA10200840E000F0A66 +:1044E0008F4401001040001B8FBF00108F4301005C +:1044F0008F4201F80440FFFE24020002AF4301C0D6 +:10450000A34201C43C021000AF4201F80A0011238B +:104510008FBF001030C200101040000E8FBF00107F +:104520008C83005C9482003C006918233042FFFFBA +:10453000006218213C023FFF3444FFFF0083102B30 +:10454000544000010080182101231021AD02005CBD +:104550008FBF001003E0000827BD001827BDFFE84B +:104560008FAA0028AFBF00100080402100EA482336 +:104570001920002130C600FF8C83005C8C8200640F +:10458000006A18230043102B5040001000691821C6 +:1045900094A2011001221021A4A2011094A20110E2 +:1045A0003042FFFF0043102B1440000A3C023FFF43 +:1045B00094A2011000431023A4A201109482003C95 +:1045C0003042FFFF0A00114200621821A4A001102E +:1045D0003C023FFF3444FFFF0083102B5440000196 +:1045E0000080182100671021AD02005CA100007C52 +:1045F0000A00118AA100008130C200101040003C66 +:10460000000000008C820050004A1023184000383F +:10461000000000009082007C24420001A082007C07 +:104620009082007C3C0308008C630024304200FF31 +:104630000043102B1440005C8FBF00108CA20108B7 +:1046400000E2102318400058000000008C83005442 +:104650009482003C006A18233042FFFF0003184395 +:10466000000210400043102A104000050000000026 +:104670008C820054004A10230A001171000210437A +:104680009482003C3042FFFF00021040AD02006403 +:104690009502003C8D0400649503003C3042FFFF0E +:1046A00000021040008220213063FFFF00831821A8 +:1046B00001431021AD02005C8D020054ACA2010840 +:1046C00024020002A10200840E000F0A8F440100A0 +:1046D000104000358FBF00108F4301008F4201F85A +:1046E0000440FFFE240200020A0011B30000000093 +:1046F000AD07004C8CA2010800E210231840000214 +:1047000024E2FFFCACA2010830C200011040000A04 +:10471000000000008D02005000E21023044100045C +:10472000010020218D02005414E20003000000006B +:104730000A0011AA240600058D02005414E2001A92 +:104740008FBF00103C0208008C4200D8304200208D +:104750001040000A240200019103007891020083B6 +:104760001443000624020001010020212406000455 +:104770008FBF00100A00105427BD0018A10000844C +:10478000A50200148F4301008F4201F80440FFFE90 +:1047900024020002AF4301C0A34201C43C02100046 +:1047A000AF4201F88FBF001003E0000827BD0018DA +:1047B0008FAA00108C8200500080402130C600FF7C +:1047C000004A102300A048211840000700E01821EB +:1047D00024020001A0800084A0A00112A482001481 +:1047E0000A001125AFAA0010A0800081AD07004C7F +:1047F0008CA2010800E210231840000224E2FFFC12 +:10480000ACA2010830C20001104000080000000006 +:104810008D0200500062102304410013240600059D +:104820008D02005410620010000000008D02005440 +:1048300014620011000000003C0208008C4200D805 +:10484000304200201040000A240200019103007849 +:10485000910200831443000624020001010020217C +:1048600001202821240600040A0010540000000042 +:10487000A1000084A502001403E00008000000006D +:1048800027BDFFE0AFBF0018274201009046000A95 +:104890008C4800148C8B004C9082008430C900FF3F +:1048A00001681823304A00FF1C60001A2D460006DC +:1048B000240200010142100410C00016304300031E +:1048C000012030210100382114600007304C000C19 +:1048D00015800009304200301440000B8FBF0018D3 +:1048E0000A001214000000000E001125AFAB0010EA +:1048F0000A0012148FBF00180E00109AAFAB001000 +:104900000A0012148FBF0018AFAB00100E0011BACE +:10491000AFAA00148FBF001803E0000827BD0020D5 +:1049200024020003A08200848C82005403E000086B +:10493000ACA201083C0200080342182190620081E9 +:10494000240600433C07601924420001A062008154 +:10495000906300813C0208008C4200C0306300FF7D +:10496000146200102403FF803C0208008C4200E027 +:104970000082102100431024AF4200243C020800B2 +:104980008C4200E03C03000A008210213042007F8C +:104990000342102100431021944500D40A000AF17B +:1049A00030A5FFFF03E000080000000027BDFFE086 +:1049B000AFBF0018AFB10014AFB000108F4201803C +:1049C0000080802100A088210E00121B00402021C1 +:1049D000A20000848E0200548FBF00188FB0001018 +:1049E000AE2201088FB1001403E0000827BD0020AB +:1049F00027BDFFE03C020008AFB00010AFBF0018B9 +:104A0000AFB10014034280218F5101409203008412 +:104A10008E0400508E02004C14820040306600FF6D +:104A20003C0208008C4200E02403FF800222102197 +:104A300000431024AF4200243C0208008C4200E0F6 +:104A40009744007C92050081022210213042007FB1 +:104A5000034218213C02000A0062182114A0000B36 +:104A60003084FFFF2402000554C20014248205DCB8 +:104A70009062011224420001A062011224020C8003 +:104A8000AF4200240A00127324020005A060011244 +:104A90002402000514C20009248205DC9202008170 +:104AA0002C4200075040000524820A009203008136 +:104AB0002402001400621004008210213044FFFF21 +:104AC000A60400140E00121B022020219602003CB6 +:104AD0008E03004C022020213042FFFF00021040D4 +:104AE000006218210E000250AE03005C9202007DAD +:104AF00002202021344200400E000259A202007D13 +:104B00008F4201F80440FFFE24020002AF5101C0B1 +:104B1000A34201C43C021000AF4201F88FBF00184D +:104B20008FB100148FB0001003E0000827BD0020F3 +:104B300008000ACC08000B1408000B9808000BE4CE +:104B400008000C200A0000280000000000000000FF +:104B50000000000D6370362E322E3300000000007E +:104B60000602030400000000000000000000000036 +:104B70000000000000000000000000000000000035 +:104B80000000000000000000000000000000002005 +:104B90000000000000000000000000000000000015 +:104BA0000000000000000000000000000000000005 +:104BB00000000000000000000000000000000001F4 +:104BC0000000002B000000000000000400030D4066 +:104BD00000000000000000000000000000000000D5 +:104BE00000000000000000001000000300000000B2 +:104BF0000000000D0000000D3C020800244258A4F3 +:104C00003C03080024635F70AC4000000043202B8D +:104C10001480FFFD244200043C1D080037BD7FFCCA +:104C200003A0F0213C100800261000A03C1C080046 +:104C3000279C58A40E0001AC000000000000000DED +:104C400027BDFFE83C096018AFBF00108D2C500055 +:104C5000240DFF7F24080031018D5824356A380C5B +:104C600024070C003C1A8000AD2A50003C04800A46 +:104C7000AF4800083C1B8008AF4700240E00091510 +:104C8000AF8400100E0008D8000000000E000825B8 +:104C9000000000000E001252000000003C046016EC +:104CA0008C8500003C06FFFF3C02535300A61824ED +:104CB0001062004734867C0094C201F2A780002C69 +:104CC00010400003A78000CC38581E1EA798002C67 +:104CD00094C201F810400004978300CC38591E1E7E +:104CE000A79900CC978300CC2C7F006753E000018C +:104CF000240300669784002C2C82040114400002D7 +:104D000000602821240404003C0760008CE904387A +:104D10002403103C3128FFFF1103001F30B9FFFFAF +:104D200057200010A38000CE24020050A38200CEA2 +:104D3000939F00CE53E0000FA78500CCA78000CC46 +:104D4000978500CC8FBF0010A780002CA78000346F +:104D5000A78000E63C010800AC25008003E00008C5 +:104D600027BD0018939F00CE57E0FFF5A78000CC29 +:104D7000A78500CC978500CC8FBF0010A784002C9E +:104D8000A7800034A78000E63C010800AC25008025 +:104D900003E0000827BD0018A38000CE8CCB003CA8 +:104DA000316A00011140000E0000000030A7FFFF33 +:104DB00010E0FFDE240200508CCC00C831860001D8 +:104DC00014C0FFDC939F00CE0A00007A2402005139 +:104DD0008C8F00043C0E60000A00005D01EE302163 +:104DE0008CEF0808240D5708000F740211CD000441 +:104DF00030B8FFFF240500660A00007B240404008D +:104E00001700FFCC939F00CE0A00007A24020050C6 +:104E10008F8600103089FFFF000939408CC30010D5 +:104E20003C08005000E82025AF4300388CC5001432 +:104E300027420400AF82001CAF45003CAF44003065 +:104E40000000000000000000000000000000000062 +:104E50000000000000000000000000000000000052 +:104E60008F4B0000316A00201140FFFD0000000060 +:104E700003E00008000000008F840010948A001AEC +:104E80008C8700243149FFFF000940C000E8302131 +:104E9000AF46003C8C8500248F43003C00A31023C8 +:104EA00018400029000000008C8B002025620001C2 +:104EB0003C0D005035AC0008AF420038AF4C00301C +:104EC00000000000000000000000000000000000E2 +:104ED00000000000000000000000000000000000D2 +:104EE0008F4F000031EE002011C0FFFD00000000D8 +:104EF0008F4A04003C080020AC8A00108F4904044B +:104F0000AC890014AF4800300000000094860018FF +:104F10009487001C00C71821A48300189485001AE8 +:104F200024A20001A482001A9498001A9499001EE9 +:104F3000133800030000000003E000080000000038 +:104F400003E00008A480001A8C8200200A0000DC24 +:104F50003C0D00500A0000CD000000003C0308009A +:104F60008C6300208F82001827BDFFE810620008C4 +:104F7000AFBF00100E000104AF8300183C0308000F +:104F80008C63002024040001106400048F89001049 +:104F90008FBF001003E0000827BD00188FBF00106E +:104FA0003C076012A520000A9528000A34E500108D +:104FB00027BD00183106FFFF03E00008ACA60090F3 +:104FC0003C0208008C42002027BDFFC8AFBF003460 +:104FD000AFBE0030AFB7002CAFB60028AFB500248D +:104FE000AFB40020AFB3001CAFB20018AFB10014D3 +:104FF00010400050AFB000108F840010948600065F +:105000009483000A00C3282330B6FFFF12C0004A71 +:105010008FBF003494890018948A000A012A402323 +:105020003102FFFF02C2382B14E0000202C020212F +:10503000004020212C8C0005158000020080A0215A +:10504000241400040E0000B3028020218F8700107A +:1050500002809821AF80001494ED000A028088211C +:105060001280004E31B2FFFF3C1770003C1540002B +:105070003C1E60008F8F001C8DEE000001D71824AD +:10508000507500500220202102A3802B160000350D +:105090003C182000507800470220202124100001F5 +:1050A0008F83001414600039029158230230F823D2 +:1050B0000250C82133F1FFFF1620FFEE3332FFFF0D +:1050C0008F8700103C110020AF510030000000001D +:1050D00094E6000A3C1E601237D5001002662821B3 +:1050E000A4E5000A94E2000A94F2000A94F400187D +:1050F0003057FFFF1292003BAEB700908CED0014CA +:105100008CE400100013714001AE4021000E5FC31B +:10511000010E502B008B4821012A1821ACE8001405 +:10512000ACE3001002D3382330F6FFFF16C0FFB9FE +:105130008F8400108FBF00348FBE00308FB7002CDB +:105140008FB600288FB500248FB400208FB3001CC9 +:105150008FB200188FB100148FB0001003E0000868 +:1051600027BD0038107E001B000000001477FFCC24 +:10517000241000010E00159B000000008F83001416 +:105180001060FFCB0230F823029158238F87001064 +:10519000017020210A0001973093FFFF8F830014D4 +:1051A0001460FFCB3C110020AF5100300A000163B6 +:1051B000000000000E00077D024028210A00015770 +:1051C000004080210E00033A024028210A000157C6 +:1051D000004080210E001463022020210A000157A4 +:1051E000004080210E0000CD000000000A0001797F +:1051F00002D3382327BDFFE8AFB00010AFBF0014C3 +:105200000E00003F000000003C028000345000709F +:105210000A0001BA8E0600008F4F000039EE00012F +:1052200031C20001104000248F8600A88E070000C4 +:105230003C0C08008D8C003C3C0908008D2900388E +:1052400000E66823018D28210000502100AD302B9D +:10525000012A4021010620213C010800AC25003C28 +:10526000AF8700A83C010800AC2400380E000106FE +:10527000000000003C0308008C6300701060FFE633 +:10528000006020213C0508008CA500683C06080051 +:105290008CC6006C0E00152A000000003C010800BE +:1052A000AC2000708F4F000039EE000131C20001C8 +:1052B0001440FFDE8F8600A88E0A00008F8B00A8A6 +:1052C0003C0508008CA5003C3C0408008C84003898 +:1052D000014B482300A938210082182100E9402B06 +:1052E000006810213C010800AC27003C3C0108008C +:1052F000AC2200388F5F01002419FF0024180C0035 +:1053000003F9202410980012AF840000AF4400205D +:10531000936D0000240C002031A600FF10CC001279 +:10532000240E005010CE00043C194000AF59013843 +:105330000A0001B3000000000E0011C800000000C8 +:105340003C194000AF5901380A0001B300000000C9 +:105350000E00011F000000003C194000AF59013849 +:105360000A0001B3000000008F58010000802821CE +:10537000330F00FF01E020210E0002F1AF8F000487 +:105380003C194000AF5901380A0001B30000000089 +:1053900000A4102B2403000110400009000030215C +:1053A0000005284000A4102B04A0000300031840AF +:1053B0005440FFFC000528405060000A0004182BF0 +:1053C0000085382B54E000040003184200C3302548 +:1053D00000852023000318421460FFF900052842CD +:1053E0000004182B03E0000800C310218F4201B80D +:1053F0000440FFFE00000000AF4401803C031000A9 +:1054000024040040AF450184A3440188A3460189D8 +:10541000A747018A03E00008AF4301B83084FFFFCB +:105420000080382130A5FFFF000020210A00022A59 +:10543000240600803087FFFF8CA40000240600387B +:105440000A00022A000028218F8300388F8600304E +:105450001066000B008040213C07080024E75A1822 +:10546000000328C000A710218C4400002463000121 +:10547000108800053063000F5466FFFA000328C04F +:1054800003E00008000010213C07080024E75A1C34 +:1054900000A7302103E000088CC200003C0390000C +:1054A0003462000100822025AF4400208F45002097 +:1054B00004A0FFFE0000000003E000080000000060 +:1054C0003C038000346200010082202503E00008D4 +:1054D000AF44002027BDFFE0AFB100143091FFFFC3 +:1054E000AFB00010AFBF00181220001300A0802141 +:1054F0008CA2000024040002240601401040000F8A +:10550000004028210E000C5C00000000000010216B +:10551000AE000000022038218FBF00188FB10014A8 +:105520008FB0001000402021000028210000302111 +:105530000A00022A27BD00208CA200000220382188 +:105540008FBF00188FB100148FB0001000402021D1 +:1055500000002821000030210A00022A27BD002077 +:1055600000A010213087FFFF8CA500048C440000B0 +:105570000A00022A2406000627BDFFE0AFB0001093 +:10558000AFBF0018AFB100149363003E00808021CC +:105590000080282130620040000020211040000FD0 +:1055A0008E1100000E000851022020219367000098 +:1055B0002404005030E500FF50A400128E0F0000BC +:1055C000022020218FBF00188FB100148FB000106F +:1055D000A762013C0A00091127BD00200E000287C6 +:1055E000000000000E0008510220202193670000F7 +:1055F0002404005030E500FF14A4FFF20220202113 +:105600008E0F00003C1008008E1000503C0D000C66 +:10561000240BFF8001F05021314E007F01DA602120 +:10562000018D4021014B4824AF4900280220202150 +:105630008FBF00188FB100148FB00010A50200D6E4 +:1056400027BD00200A000911AF8800D027BDFFE068 +:10565000AFBF0018AFB10014AFB0001093660001E7 +:10566000008080210E00025630D1000493640005B2 +:10567000001029C2A765000034830040A363000521 +:105680000E00025F020020210E00091302002021FB +:1056900024020001AF62000C02002821A762001062 +:1056A00024040002A762001224060140A76200142D +:1056B0000E000C5CA76200161620000F8FBF0018AA +:1056C000978C00343C0B08008D6B00782588FFFF19 +:1056D0003109FFFF256A0001012A382B10E000067E +:1056E000A78800343C0F6006240E001635ED00102C +:1056F000ADAE00508FBF00188FB100148FB00010F6 +:1057000003E0000827BD002027BDFFE0AFB1001473 +:10571000AFBF0018AFB0001000A088211080000AB1 +:105720003C03600024020080108200120000000090 +:105730000000000D8FBF00188FB100148FB0001053 +:1057400003E0000827BD00208C682BF80500FFFE51 +:1057500000000000AC712BC08FBF00188FB1001487 +:105760008FB000103C09100027BD002003E00008A6 +:10577000AC692BF80E00025600A0202193650005AD +:10578000022020210E00025F30B000FF2403003E03 +:105790001603FFE7000000008F4401780480FFFE3D +:1057A000240700073C061000AF51014002202021D1 +:1057B000A34701448FBF00188FB100148FB00010B1 +:1057C000AF4601780A0002C227BD002027BDFFE8CE +:1057D000AFBF0014AFB000108F50002000000000D9 +:1057E0000E000913AF440020AF5000208FBF0014FB +:1057F0008FB0001003E0000827BD00183084FFFFC1 +:10580000008038212406003500A020210A00022A49 +:10581000000028213084FFFF008038212406003654 +:1058200000A020210A00022A0000282127BDFFD065 +:10583000AFB3001C3093FFFFAFB50024AFB2001828 +:10584000AFBF0028AFB40020AFB10014AFB000105C +:1058500030B5FFFF12600027000090218F90001CE0 +:105860008E0300003C0680002402004000033E023C +:1058700000032C0230E4007F006688241482001D9F +:1058800030A500FF8F8300282C68000A510000100B +:105890008F910014000358803C0C0800258C56940E +:1058A000016C50218D49000001200008000000001B +:1058B00002B210213045FFFF0E000236240400849E +:1058C000162000028F90001CAF8000288F910014DA +:1058D000260C002026430001018080213072FFFF4A +:1058E00016200004AF8C001C0253502B1540FFDC27 +:1058F00000000000024010218FBF00288FB5002457 +:105900008FB400208FB3001C8FB200188FB1001429 +:105910008FB0001003E0000827BD0030240E0034D3 +:1059200014AE00F9000000009203000E241F168040 +:105930003C07000CA36300219202000D0347C8211D +:105940003C066000A3620020961100123C0A7FFF13 +:10595000354CFFFFA771003C960B00102403000597 +:105960003168FFFFAF6800848E05001CAF5F002820 +:105970008F3800008CC4444803057826008F3021FE +:10598000AF66004C8F69004C24CE00013C057F00BF +:10599000AF6900508F740050AF740054AF66007050 +:1059A000AF6E00588F6D005824140050AF6D005C2E +:1059B000A3600023AF6C0064A36300378E02001461 +:1059C000AF6200488F710048AF7100248E0B001841 +:1059D000AF6B006C9208000CA3680036937F003E0A +:1059E00037F90020A379003E8F78007403058024E6 +:1059F000360F4000AF6F007493640000308900FFE1 +:105A0000513402452404FF803C04080024845A9841 +:105A10000E00028D000000003C1008008E105A9805 +:105A20000E00025602002021240600042407000173 +:105A3000A366007D020020210E00025FA36700051F +:105A40008F5F017807E0FFFE240B0002AF5001409A +:105A5000A34B01448F90001C3C081000AF48017814 +:105A60000A000362AF8000282CAD003751A0FF98D8 +:105A70008F9100140005A0803C180800271856BC20 +:105A8000029878218DEE000001C00008000000009F +:105A90002418000614B80011000000003C0808009B +:105AA0008D085A9824040005AF4800208E1F001866 +:105AB000AF7F00188F79004CAF79001C8F650050C4 +:105AC000122000C0AF6500700A000362AF84002896 +:105AD0002406000710A60083240300063C050800E6 +:105AE00024A55A980E000264240400818F90001CA3 +:105AF0000011102B0A000362AF8200282407000463 +:105B000014A7FFF6240500503C1808008F185A9877 +:105B1000AF5800208E0F0008AF6F00408E090008BC +:105B2000AF6900448E14000CAF7400488E0E001054 +:105B3000AF6E004C8E0D0010AF6D00848E0A001405 +:105B4000AF6A00508E0C0018AF6C00548E04001C1D +:105B5000AF64005893630000306B00FF116501D8FB +:105B6000000000008F7400488F6900400289702394 +:105B700005C000042404008C1620FFDE240200036C +:105B8000240400823C05080024A55A980E000287D0 +:105B9000000000008F90001C000010210A0003622A +:105BA000AF820028240F000514AFFFCC240520008D +:105BB0003C0708008CE75A98AF4700208E06000487 +:105BC000AF66005C9208000824100008A36800215A +:105BD0008F9F001C93F90009A37900208F86001C79 +:105BE00090D8000A330400FF10900011000000005C +:105BF0002885000914A0006924020002240A00205C +:105C0000108A000B34058000288D002115A00008A3 +:105C100024054000240E0040108E00053C050001C4 +:105C200024140080109400023C050002240540006A +:105C30008F7800743C19FF00031980240205782531 +:105C4000AF6F007490C4000BA36400818F84001CAC +:105C50009489000C11200192000000009490000C27 +:105C60002406FFBF24050004A770003C908F000E9F +:105C7000A36F003E8F84001C9089000FA369003F32 +:105C80008F8B001C8D6E00108F54007401D468231C +:105C9000AF6D00608D6A0014AF6A0064956C0018E7 +:105CA000A76C00689563001AA763006A8D62001CE8 +:105CB000AF62006C9167000EA367003E9368003EE0 +:105CC0000106F8241220014BA37F003E8F90001C98 +:105CD0000A000362AF8500282407002214A7FF7F73 +:105CE000240300073C0B08008D6B5A981220000C0F +:105CF000AF4B00200A000362AF830028240C00335E +:105D000010AC0014240A00283C05080024A55A9869 +:105D10000E00023C240400810A0003EB8F90001C5B +:105D20003C04080024845A980E00028D00000000F4 +:105D30009363000024110050306200FF10510135C0 +:105D4000000000008F90001C000018210A00036270 +:105D5000AF8300283C0D08008DAD5A9824040081C3 +:105D6000AF4D00203C05080024A55A980E00023CC7 +:105D7000A36A00348F90001C240200090A00036209 +:105D8000AF82002802B288213225FFFF0E000236C2 +:105D9000240400840A0003628F90001C1082FFA478 +:105DA00024050400288B000311600170240C0004FA +:105DB000240300015483FF9E240540000A00043B95 +:105DC000240501003C04080024845A988F62004C8A +:105DD0000E00028D8F6300508F90001C0000202168 +:105DE0000A000362AF8400288E1000042404008A95 +:105DF000AF50002093790005333800021700015F8F +:105E0000020028219368002302002821311F00206E +:105E100017E0015A2404008D9367003F2406001206 +:105E200030E200FF10460155240400810E000256A6 +:105E30000200202193630023240500040200202196 +:105E4000346B0042A36B00230E00025FA365007D4C +:105E50008F4401780480FFFE240A0002AF50014005 +:105E6000A34A01448F90001C3C0C1000AF4C0178F9 +:105E70000A0003EC0011102B8E1000042404008A89 +:105E8000AF500020936E000531CD000215A0001622 +:105E900002002821936F003F2414000402002821EF +:105EA00031E900FF11340010240400810E00025675 +:105EB000020020219362002324080012241FFFFE09 +:105EC00034460020A3660023A368003F93790005B1 +:105ED00002002021033FC0240E00025FA3780005CA +:105EE00002002821000020210E00033400000000E1 +:105EF0000A0003EB8F90001C8E1000043C03000886 +:105F00000343A021AF500020928B000024050050D5 +:105F1000316400FF10850161240700880200202100 +:105F2000000028210E00022A2406000E928D000097 +:105F3000240EFF800200282101AE8025A2900000DF +:105F4000240400040E000C5C240600300A0003EB5D +:105F50008F90001C8E0800043C14080026945A9868 +:105F60003C010800AC285A98AF480020921F00035B +:105F700033F9000413200002240200122402000658 +:105F8000A362003F920B001B2404FFC03165003F59 +:105F900000A43825A367003E9206000330C200012A +:105FA00014400132000000008E020008AE8200089A +:105FB0003C0208008C425AA010400131000249C244 +:105FC000A76900088E14000C240C0001240300149F +:105FD000AF74002C8E0E0010AF6E0030960D0016C0 +:105FE000A76D0038960A0014A76A003AAF6C000C3F +:105FF000A76C0010A76C0012A76C0014A76C001609 +:1060000012200136A3630034920F000331F0000226 +:106010002E1100018F90001C262200080A00036246 +:10602000AF8200288E0400043C0E0008034E30218D +:10603000AF4400208E05000890CD0000240C0050D5 +:1060400031AA00FF114C00862407008824060009AD +:106050000E00022A000000000A0003EB8F90001CD3 +:106060008E04001C0E00024100000000104000F4ED +:10607000004050218F89001C240700890140202105 +:106080008D25001C240600010E00022A00000000DD +:106090000A0003EB8F90001C960D00023C140800D0 +:1060A00026945A9831AA0004514000B83C10600070 +:1060B0008E0E001C3C010800AC2E5A98AF4E0020FA +:1060C000920700102408001430E200FF144800D6A4 +:1060D00000000000960B00023163000114600165AE +:1060E000000000008E020004AE8200083C1408008C +:1060F0008E945AA01280015B000000008F7400741F +:106100003C0380002404000102835825AF6B007417 +:10611000A3600005AF64000C3C0708008CE75AA0A0 +:106120008F86001CA7640010000711C2A76400122C +:10613000A7640014A7640016A76200088CC80008B2 +:1061400024040002AF68002C8CC5000CAF65003041 +:1061500090DF0010A37F00348F99001C9330001152 +:10616000A37000358F98001C930F0012A36F0036A8 +:106170008F89001C912E0013A36E00378F90001C96 +:10618000960D0014A76D0038960A0016A76A003A0B +:106190008E0C0018AF6C00245620FDCCAF84002874 +:1061A0003C05080024A55A980E0002640000202136 +:1061B0008F90001C0A0004A7000020218E1000040C +:1061C00024070081AF500020936900233134001070 +:1061D000128000170000000002002021000028218A +:1061E0002406001F0E00022A000000000A0003EB34 +:1061F0008F90001C3C05080024A55A980E000287C9 +:10620000240400828F90001C000028210A000362F1 +:10621000AF8500283C0408008C845A980E0014E8CE +:10622000000000008F90001C0A000482000018216A +:106230000E00025602002021937800230200202144 +:10624000370F00100E00025FA36F002300003821FB +:1062500002002021000028210A0005A82406001FB2 +:10626000920F000C31E90001112000030000000032 +:106270009618000EA4D8002C921F000C33F90002CF +:1062800013200005000038218E0200149608001229 +:10629000ACC2001CA4C8001A0A0005432406000969 +:1062A0003C05080024A55A980E0002872404008BA0 +:1062B0008F90001C0011282B0A000362AF85002874 +:1062C000AF6000843C0A08008D4A5A983C0D0800D3 +:1062D0008DAD0050240CFF803C02000C014D1821B4 +:1062E000006C2024AF4400288E070014306B007F20 +:1062F000017A282100A2C821AF2700D88E060014F9 +:10630000AF9900D0AF2600DC8E080010251FFFFEDD +:106310000A000408AF3F01083C0508008CA55A9804 +:106320003C1908008F39005024CCFFFE00B9C02171 +:1063300003047824AF4F00283C1408008E945A9828 +:106340003C0908008D2900500289702131CD007F61 +:1063500001BA502101478021AE0600D8AF9000D08D +:10636000AE0000DC0A0003B1AE0C0108548CFE3014 +:10637000240540000A00043B240510000E00032EF3 +:10638000000000000A0003EB8F90001C8E0F442CCD +:106390003C186C62370979703C010800AC205A98AF +:1063A00015E9000824050140979F00349786002CCA +:1063B0000280282103E6C82B132000112404009238 +:1063C000240501400E000C7A240400023C01080060 +:1063D000AC225A98AF4200203C0508008CA55A9880 +:1063E00010A00005240400830E00084500000000F2 +:1063F00010400009240400833C05080024A55A9895 +:106400000E000264000000008F90001C0011202B81 +:106410000A000362AF8400280E0008490000000053 +:106420000A00055F8F90001C0E00084D0000000060 +:106430003C05080024A55A980A00062F2404008B66 +:10644000240400040E000C7A240500301440002AB5 +:10645000004050218F89001C240700830140202127 +:106460008D25001C0A000551240600018E04000839 +:106470000E000241000000000A00051BAE82000869 +:106480003C05080024A55A980E00023C240400870D +:106490008F90001C0A0005360011102B8F830038E6 +:1064A0008F8600301066FE9D000038213C070800F2 +:1064B00024E75A1C000320C0008728218CAC000070 +:1064C00011900061246A00013143000F5466FFFA05 +:1064D000000320C00A0004F6000038213C05080033 +:1064E00024A55A980E000287240400828F90001C75 +:1064F0000A000536000010213C0B0008034B202148 +:106500002403005024070001AF420020A0830000B4 +:10651000A08700018F82001C90480004A08800180A +:106520008F85001C90A60005A08600198F9F001C77 +:1065300093F90006A099001A8F90001C921800078A +:10654000A098001B8F94001C928F0008A08F001C45 +:106550008F89001C912E0009A08E001D8F8D001CBC +:1065600091AC000AA08C001E8F8B001C3C0C080014 +:10657000258C5A1C9163000B3C0B0800256B5A18A4 +:10658000A083001F8F87001C90E8000CA0880020CB +:106590008F82001C9045000D24024646A0850021F4 +:1065A0008F86001C90DF000EA09F00228F99001C98 +:1065B0009330000FA09000238F98001C93140010BC +:1065C000A09400248F8F001C91E90011A089002560 +:1065D0008F89001C8F8E00308F900038952D00140D +:1065E000000E18C025C80001A48D002895270016AC +:1065F000006C3021006BC821A487002A9525001863 +:106600003108000FA485002CA482002E8D3F001CB1 +:10661000ACCA0000AF88003011100006AF3F000088 +:10662000000038218D25001C014020210A00055161 +:1066300024060001250C00013184000F00003821E0 +:106640000A0006B8AF8400383C07080024E75A184F +:106650000087302100003821ACA000000A0004F6B9 +:10666000ACC000003C05080024A55A980A00062F7B +:10667000240400878E0400040E0002410000000084 +:106680000A00056AAE8200083084FFFF30C600FFB2 +:106690008F4201B80440FFFE00064400010430258B +:1066A0003C07200000C720253C031000AF400180BC +:1066B000AF450184AF44018803E00008AF4301B84F +:1066C00027BDFFE8AFB00010AFBF00143C0760006B +:1066D000240600021080000600A080210010102B6C +:1066E0008FBF00148FB0001003E0000827BD001812 +:1066F0003C09600EAD2000348CE5201C8F82001C0C +:106700002408FFFC00A81824ACE3201C0E0006D1CE +:106710008C45000C0010102B8FBF00148FB00010A0 +:1067200003E0000827BD00183C02600E344701005A +:1067300024090018274A040000000000000000009F +:10674000000000003C06005034C30200AF44003893 +:10675000AF45003CAF430030014018218F4B000093 +:10676000316800201100FFFD2406007F2408FFFF90 +:106770008C6C000024C6FFFF24630004ACEC000016 +:1067800014C8FFFB24E70004000000000000000024 +:10679000000000003C0F0020AF4F00300000000060 +:1067A00024AD020001A5702B2529FFFF008E2021BA +:1067B0001520FFE101A0282103E0000800000000EF +:1067C00027BDFFE0AFB10014AFBF0018AFB000109D +:1067D0003C05600E8CA20034008088211440000625 +:1067E0003C0460008C87201C2408FFFC00E8302457 +:1067F00034C30001AC83201C8F8B001C24090001D2 +:10680000ACA90034956900028D6500148D70000CF0 +:106810002D2400818D6700048D660008108000071C +:106820008D6A00102D2C00041580000E30CE00075C +:10683000312D000311A0000B000000002404008B88 +:10684000020028210E0006D1240600030011102B9F +:106850008FBF00188FB100148FB0001003E0000844 +:1068600027BD002015C0FFF62404008B3C03002048 +:10687000AF4300300000000024020001AF8200148A +:106880000000000000000000000000003C1F01505C +:10689000013FC825253800033C0F600EAF47003884 +:1068A00000181882AF46003C35E8003CAF59003074 +:1068B000274704008F4400003086002010C0FFFDF1 +:1068C00000000000106000082466FFFF2403FFFFA3 +:1068D0008CEB000024C6FFFF24E70004AD0B000092 +:1068E00014C3FFFB250800043C08600EAD09003806 +:1068F0000000000000000000000000003C07002035 +:10690000AF470030000000000E0006F901402021D2 +:1069100002002821000020210E0006D124060003D9 +:106920000011102B8FBF00188FB100148FB0001012 +:1069300003E0000827BD002027BDFFE0AFB200182C +:106940003092FFFFAFB10014AFBF001CAFB000101A +:106950001640000D000088210A0007AA022010211D +:1069600024050001508500278CE5000C0000000D77 +:10697000262300013071FFFF24E200200232382B71 +:1069800010E00019AF82001C8F8200141440001622 +:106990008F87001C3C0670003C0320008CE5000043 +:1069A00000A62024148300108F84003C00054402BC +:1069B0003C09800000A980241480FFE9310600FF13 +:1069C0002CCA00095140FFEB262300010006688015 +:1069D0003C0E080025CE579801AE60218D8B00003B +:1069E0000160000800000000022010218FBF001C81 +:1069F0008FB200188FB100148FB0001003E00008B0 +:106A000027BD00200E0006D1240400841600FFD804 +:106A10008F87001C0A00078BAF80003C90EF0002BC +:106A200000002021240600090E0006D1000F2E00D0 +:106A30008F87001C0010102B0A00078BAF82003CD0 +:106A4000020028210E0006DF240400018F87001CAD +:106A50000A00078BAF82003C020028210E0006DFEF +:106A6000000020210A0007C38F87001C0E00071FAB +:106A7000020020210A0007C38F87001C30B0FFFFEF +:106A8000001019C08F5801B80700FFFE3C1F2004FA +:106A90003C191000AF430180AF400184AF5F018813 +:106AA000AF5901B80A00078C262300013082FFFF8E +:106AB00014400003000018210004240224030010E5 +:106AC000308500FF14A000053087000F2466000801 +:106AD0000004220230C300FF3087000F14E00005DD +:106AE000308900032468000400042102310300FF00 +:106AF0003089000315200005388B0001246A00024C +:106B000000042082314300FF388B00013164000112 +:106B100010800002246C0001318300FF03E00008B4 +:106B200000601021308BFFFF000B394230E600FF80 +:106B30003C09080025295998000640800109602178 +:106B40008D8700003164001F240A0001008A1804A8 +:106B500030A500FF00E3202514A000020003102749 +:106B600000E22024240F000100CF700401096821F5 +:106B7000000E282714800005ADA400008F86000CAD +:106B800000A6102403E00008AF82000C8F88000CE0 +:106B900001C8102503E00008AF82000C3C06001F6E +:106BA0003C0360003084FFFF34C5FF8024020020D6 +:106BB000AC602008AC60200CAC602010AC652014E8 +:106BC000AC642018AC62200000000000000000004F +:106BD00003E000080000000027BDFFE82402FFFFDB +:106BE000AFBF0010AF82000C000020213C0608005F +:106BF00024C659982405FFFF248900010004408021 +:106C00003124FFFF010618212C87002014E0FFFA31 +:106C1000AC6500000E0008160000202124020001CF +:106C20003C04600024050020AC822018AC852000C4 +:106C3000000000000000000000000000244A0001E5 +:106C40003142FFFF2C46040014C0FFF78FBF001035 +:106C500003E0000827BD00188F8300082C620400A1 +:106C600003E00008384200018F830008246200011D +:106C700003E00008AF8200088F8300082462FFFF52 +:106C800003E00008AF82000827BDFFE0AFB10014A9 +:106C9000AFBF0018AFB000108F6B00303C06600033 +:106CA00000808821ACCB20088F6A002C3C02800039 +:106CB00024030008ACCA200C9769003A9768003892 +:106CC00000092C003107FFFF00A72025ACC42010CD +:106CD000ACC22014ACC32000000000000000000083 +:106CE000000000003C0360008C6D200031AC000807 +:106CF0001580FFF9000000008C6E201405C00020F4 +:106D0000000000000E0007DA8F84000C00024080B3 +:106D10003C09080025295998010938218CE4000014 +:106D20000E0007DA00028140020220213090FFFFAE +:106D3000020020210E0007F8000028213C0C8000F2 +:106D4000022C58253210FFFF3C116000240A00205D +:106D5000AE2B2014AE302018AE2A20000000000018 +:106D60000000000000000000020010218FBF00188A +:106D70008FB100148FB0001003E0000827BD002081 +:106D80008C6620143C02001F3443FF803C1FFFE848 +:106D900000C3C02437F9080003198021001079C20C +:106DA0003C0C8000022C582531F0FFFF3C116000A4 +:106DB000240A0020AE2B2014AE302018AE2A20006A +:106DC0000000000000000000000000000200102190 +:106DD0008FBF00188FB100148FB0001003E00008BF +:106DE00027BD002027BDFFE8AFB000103402FFFF31 +:106DF0003090FFFFAFBF00141202000602002021F6 +:106E00000E00081600000000020020210E0007F806 +:106E1000240500018F8400088FBF00148FB000107C +:106E20002483FFFF27BD001803E00008AF8300089C +:106E3000000439C230E6003F00043B42000718401E +:106E4000240210002CC4002024C8FFE0AF42002C14 +:106E5000246300011480000330A900FF00071840DC +:106E6000310600FF0003608024080001019A5821C8 +:106E70003C0A000E00C82804016A382111200005D0 +:106E8000000530278CE900000125302503E00008CB +:106E9000ACE600008CEE000001C6682403E00008A8 +:106EA000ACED000027BDFFE8AFBF0014AFB000108D +:106EB0003C0460008C8508083403F00030A2F00028 +:106EC00050430006240200018C8708083404E000C7 +:106ED00030E6F00010C4001E24020002AF82004021 +:106EE0003C1060003C0A0200AE0A0814240910009D +:106EF0003C08000E8E03440003482021AF49002CBB +:106F0000240501200E000CC0000030218F830040BA +:106F1000106000043C021691240B0001106B000E5F +:106F20003C023D2C344F0090AE0F44088FBF00143C +:106F30008FB000103C0C6000240E10003C0D0200CD +:106F400027BD0018AD8E442003E00008AD8D081069 +:106F50000A0008E7AF8000403C0218DA344F009086 +:106F6000AE0F44088FBF00148FB000103C0C6000BF +:106F7000240E10003C0D020027BD0018AD8E4420E9 +:106F800003E00008AD8D08100A0008BB24050001CD +:106F90000A0008BB000028213C08080025085DA461 +:106FA0002404FFFF010018212402001E2442FFFFD9 +:106FB000AC6400000441FFFD246300043C070800AA +:106FC00024E75E208CE5FFFC2404001C240600015D +:106FD000308A001F0146480424840001000910275C +:106FE0002C8300201460FFFA00A22824ACE5FFFCEB +:106FF0003C05666634A4616E3C06080024C65EE06B +:10700000AF840058AF88009C2404FFFF00C0182103 +:107010002402001F2442FFFFAC6400000441FFFD76 +:10702000246300043C0766663C05080024A55EA0B6 +:10703000AF86004834E6616EAF8600982404FFFFF7 +:1070400000A018212402000F2442FFFFAC640000BE +:107050000441FFFD246300043C0B66663C06080007 +:1070600024C65E203568616EAF8500A4AF880070CD +:107070002404FFFF00C018212402001F2442FFFF48 +:10708000AC6400000441FFFD246300043C0D66660F +:107090003C0A0800254A5F6035AC616EAF860090FF +:1070A000AF8C005C2404FFFF014018212402000380 +:1070B0002442FFFFAC6400000441FFFD2463000490 +:1070C0003C09080025295F708D27FFFC2404000679 +:1070D000240500013099001F0325C0042484000109 +:1070E000001878272C8E002015C0FFFA00EF3824F6 +:1070F000AD27FFFC3C09666624030400240403DC7E +:1071000024050200240600663522616E3C08080052 +:1071100025085AA4AF820074AF830044AF83006C8B +:10712000AF830050AF830084AF8A008CAF840064CB +:10713000AF85004CAF860054AF840078AF85006007 +:10714000AF86008001001821240200022442FFFFC4 +:10715000AC6000000441FFFD24630004240400032C +:107160002403000C3C0A0800254A5AB0AF8A006884 +:107170000A00098E2405FFFF000418802484000102 +:10718000006858212C8700C014E0FFFBAD650000AB +:107190003C0E666635CD616E240C17A024081800DD +:1071A000AF8D0088AF8C009403E00008AF88007CAE +:1071B0002484007F000421C200004021000030210F +:1071C00000003821000028210A0009A5AF8400A092 +:1071D0001060000624E7000100C4302124A500014E +:1071E0002CC20BF51440FFFA2CA300663C090800E2 +:1071F00025295F6001201821240200032442FFFF9B +:10720000AC6000000441FFFD2463000410E0001A9C +:1072100024E3FFFF0003294210A0000A0000202100 +:107220002406FFFF3C03080024635F602484000100 +:107230000085502BAC660000250800011540FFFBBF +:107240002463000430E2001F10400008000868803A +:10725000240C0001004C38040008588001692821E2 +:1072600024E6FFFF03E00008ACA6000001A94021CE +:107270002409FFFFAD09000003E000080000000042 +:10728000AF4400283C04000C034420210005288260 +:107290000A000CC000003021000421803C03600083 +:1072A000AC6410080000000000052980AC65100CDB +:1072B0000000000003E000088C62100C27BDFFE80E +:1072C0000080282124040038AFBF00140E0009D527 +:1072D000AFB0001024040E00AF4400283C10000C96 +:1072E00003502021240500100E000CC000003021A6 +:1072F00003501021AC400000AC40000424040038CE +:107300008FBF00148FB0001024053FFF27BD001869 +:107310000A0009D58C430000000421803C03600072 +:10732000AC641008000000008C62100C03E0000840 +:107330000002118227BDFFC8AFB400208F940068FF +:10734000AFBE0030AFB7002CAFB600280000B821A8 +:107350000080B021241E00C0AFBF0034AFB50024B0 +:10736000AFB3001CAFB20018AFB10014AFB0001043 +:107370000A000A12AFA5003C504000018F9400683B +:1073800027DEFFFF13C00028269400048E92000021 +:107390003C03080024635DA01240FFF70283102B1A +:1073A0003C04080024845AA4028410230002A8C0CC +:1073B000000098210A000A212411000100118840D0 +:1073C000122000260000000002B380210251282470 +:1073D0000200202110A0FFF9267300010E0009DE33 +:1073E000000000000016684032EC000101AC2021D2 +:1073F0000E0009D5020028218F89009426F700018C +:107400008FA6003C3AEB0001316A00012528FFFFFE +:107410000011382702CAB021AF88009416E6FFE7B2 +:1074200002479024AE92000002E010218FBF00348A +:107430008FBE00308FB7002C8FB600288FB5002488 +:107440008FB400208FB3001C8FB200188FB10014CE +:107450008FB0001003E0000827BD00383C0E080084 +:1074600025CE5DA0028E102B0A000A0DAE92000000 +:1074700027BDFFD8AFB10014AFB00010AFBF0020E0 +:10748000AFB3001CAFB2001800A0882110A0001FED +:10749000000480403C13080026735AA40A000A5ACC +:1074A0002412000112200019261000010E0009F517 +:1074B00002002021000231422444FFA0000618806F +:1074C0003045001F2C8217A1007318212631FFFFC1 +:1074D0001040FFF400B230048C690000020020214B +:1074E00024053FFF012640241500FFEE0126382524 +:1074F0000E0009D5AC6700008F8A009426100001A9 +:10750000254700011620FFE9AF8700948FBF0020B8 +:107510008FB3001C8FB200188FB100148FB0001011 +:1075200003E0000827BD00288F85009C00805821BB +:107530000000402100004821240A001F3C0C0800E4 +:10754000258C5E1C3C0D080025AD5DA48CA60000BA +:1075500050C000140000402100AD1023000238C0CC +:10756000240300010A000A930000202115000003F3 +:1075700000E410212448202400004821252900018E +:10758000512B00132506DFDC106000062484000167 +:1075900000C3702415C0FFF5000318400A000A91CB +:1075A0000000402110AC002624A300040060282124 +:1075B000254AFFFF1540FFE5AF85009C512B0004D5 +:1075C0002506DFDC0000402103E000080100102157 +:1075D0000006614230C5001F000C50803C070800C7 +:1075E00024E75DA424040001014730211120000F8D +:1075F00000A420043C05080024A55E20148000059A +:107600002529FFFF24C6000410C50011000000005A +:10761000240400018CCF00000004C0270004204097 +:1076200001F868241520FFF5ACCD00008F99007893 +:1076300001001021032B482303E00008AF890078E4 +:107640003C05080024A55DA40A000A9B0000402117 +:107650003C06080024C65DA40A000AB42404000104 +:10766000308800FF240200021102000A24030003F4 +:107670001103005C8F8900A4240400041104005F3E +:1076800024050005110500670000182103E000082B +:10769000006010218F8900483C0C0800258C5EE0BA +:1076A0003C04080024845F60240300201060000F65 +:1076B00000005821240D0002240E00033C0F080096 +:1076C00025EF5EE08D27000014E0000B30F9FFFF8E +:1076D000252900040124C02B53000001018048210A +:1076E0002463FFFF5460FFF88D270000016018211C +:1076F00003E0000800601021132000323C0500FF69 +:1077000030E200FF004030211040004200005021D4 +:1077100024050001000020210005C84000A6C02467 +:1077200017000003332500FF14A0FFFB2484000191 +:10773000012CC023001828C000AA6021008C502111 +:107740003144001F240C0001008C18040003102792 +:1077500000E23024110D0041AD260000110E004C56 +:10776000000A1840110D00368F87006C510E00562C +:107770008F8C0060240D0004110D005A8F8E008440 +:10778000240E0005150EFFDA01601821240B1430B9 +:1077900011400006000018218F8400A0246300011E +:1077A000006A402B1500FFFD016458218F8A00807C +:1077B000AF89008C016018212549FFFF0A000AEB00 +:1077C000AF89008000E52024000736021080FFD03A +:1077D000240A001800075402314600FF0A000AF389 +:1077E000240A00103C0C0800258C5EA03C04080014 +:1077F00024845EE00A000ADA240300103C0C08002E +:10780000258C5E203C04080024845EA00A000AD96E +:107810008F89009000071A02306600FF0A000AF301 +:10782000240A00088F89008C3C0C0800258C5F60BE +:107830003C04080024845F700A000ADA2403000470 +:10784000000A4080250B003024E6FFFF016018216C +:10785000AF8900480A000AEBAF86006C000AC982B3 +:10786000001978803C07080024E75EA001E720218A +:10787000000A18428C8F00003079001F032C380456 +:107880000007C02701F860240A000B08AC8C000038 +:10789000000331420006288000AF28213062001F1B +:1078A0008CB8000024630001004CC804000321428E +:1078B000001938270004108003073024004F2021CE +:1078C0000A000B4CACA60000000A68C025AB0032D1 +:1078D000258AFFFF01601821AF8900A40A000AEB86 +:1078E000AF8A0060254B1030AF89009001601821ED +:1078F00025C9FFFF0A000AEBAF8900843086000724 +:107900002CC2000610400014000000000006408059 +:107910003C030800246357BC010338218CE40000B9 +:1079200000800008000000002409000310A9000ED8 +:1079300000000000240A000510AA000B000000004F +:10794000240B000110AB0008000000008F8C00A089 +:1079500010AC00050000000003E00008000010214A +:107960000A000A7900A020210A000AC700C02021CD +:1079700027BDFFE8308400FF240300021083000BC2 +:10798000AFBF0010240600031086003A240800044C +:1079900010880068240E0005108E007F2CAF143074 +:1079A0008FBF001003E0000827BD00182CA2003094 +:1079B0001440FFFC8FBF001024A5FFD0000531C28A +:1079C000000668803C07080024E75EE001A730213C +:1079D0008CC900000005288230AC001F240B000178 +:1079E000018B50048F840048012A4025ACC8000058 +:1079F0008C83000050600001AF8600488F98006CB7 +:107A000030AE000124A6FFFF270F000115C00002C1 +:107A1000AF8F006C24A600010006414200082080C0 +:107A2000008718218C79000030C2001F2406000155 +:107A30000046F804033F382410E0FFDA8FBF00103F +:107A40000005C182001870803C0F080025EF5EA081 +:107A500001CF48218D2B00000005684231A5001F91 +:107A600000A66004016C502527BD001803E0000843 +:107A7000AD2A00002CA7003014E0FFCA8FBF001011 +:107A800030B900071723FFC724A8FFCE00086A02F9 +:107A9000000D60803C0B0800256B5EA0018B30213F +:107AA0008CC40000000828C230AA001F240800016E +:107AB000014848048F8200A400891825ACC3000047 +:107AC0008C5F000053E00001AF8600A40005704009 +:107AD000000E7942000F28803C04080024845EE0F8 +:107AE00000A418218C6B000025DF000131CD001FA0 +:107AF000001F514201A86004016C4825000A108053 +:107B0000AC690000004428218CA600008F9800601A +:107B100033F9001F8FBF00100328380400C77825F1 +:107B2000270E000127BD0018ACAF000003E00008DD +:107B3000AF8E006024A5EFD02CB804001300FF998D +:107B40008FBF001000053142000658803C0A080033 +:107B5000254A5E20016A30218CC4000030A3001F3A +:107B600024090001006910048F9900900082F82513 +:107B7000ACDF00008F27000050E00001AF860090CE +:107B80008F8D00848FBF001027BD001825AC000129 +:107B900003E00008AF8C008415E0FF828FBF001067 +:107BA0008F8600A0000610400046F821001F21002B +:107BB00003E4C8210019384024F8143000B8402BE1 +:107BC0001100FF788FBF001024A4EBD00E00021329 +:107BD00000C0282100027942000F70803C0D08008F +:107BE00025AD5F6001CD20218C8B0000304C001F43 +:107BF00024060001018618048F89008C016350253A +:107C0000AC8A00008D25000050A00001AF84008CDC +:107C10008F9800808FBF001027BD00182708000133 +:107C200003E00008AF88008030A5000724030003AC +:107C300010A3001028A2000414400008240700022A +:107C40002403000410A300152408000510A8000F49 +:107C50008F8500A003E000080000000014A7FFFDCE +:107C60000080282114C3FFFB240400020A000B8BB0 +:107C700000000000240900050080282110C9FFFB36 +:107C80002404000303E000080000000014C5FFF115 +:107C9000008028210A000B8B24040005240A00011F +:107CA0000080282110CAFFF12404000403E000082A +:107CB0000000000027BDFFE0AFB00010000581C24A +:107CC0002603FFD024C5003F2C6223D024C6007FAA +:107CD000AFB20018AFB10014AFBF001C309100FF6D +:107CE000000691C2000529820200202110400008F0 +:107CF0002403FFFF0E000A4B0000000002002021B9 +:107D0000022028210E000C390240302100001821E9 +:107D10008FBF001C8FB200188FB100148FB00010FD +:107D20000060102103E0000827BD002027BDFFD818 +:107D300024A2007FAFB3001CAFB20018000299C2AA +:107D4000309200FF24A3003F02402021026028213E +:107D5000AFB10014AFB00010AFBF00200E000B6E2B +:107D60000003898200408021004020210220282138 +:107D700014400009000018218FBF00208FB3001CA1 +:107D80008FB200188FB100148FB000100060102166 +:107D900003E0000827BD00280E0009FC00000000D9 +:107DA00000402821020020211051FFF3001019C0CB +:107DB0000E000A4B00000000020020210240282192 +:107DC0000E000C39026030218FBF00208FB3001CE1 +:107DD0008FB200188FB100148FB00010000018216E +:107DE0000060102103E0000827BD00283084FFFF59 +:107DF00030A5FFFF1080000700001821308200012D +:107E00001040000200042042006518211480FFFB8E +:107E10000005284003E000080060102110C00007A2 +:107E2000000000008CA2000024C6FFFF24A500046F +:107E3000AC82000014C0FFFB2484000403E00008AF +:107E40000000000010A0000824A3FFFFAC86000083 +:107E500000000000000000002402FFFF2463FFFF79 +:107E60001462FFFA2484000403E00008000000000C +:107E700030A5FFFF8F4201B80440FFFE3C076015AC +:107E800000A730253C031000AF440180AF400184BF +:107E9000AF46018803E00008AF4301B88F8500D0EA +:107EA0002C864000008018218CA700840087102BAE +:107EB00014400010000000008CA800842D06400033 +:107EC00050C0000F240340008CAA0084008A482B75 +:107ED000512000018CA3008400035A42000B208033 +:107EE0003C05080024A558200085182103E000085F +:107EF0008C62000014C0FFF4000000002403400066 +:107F000000035A42000B20803C05080024A558209D +:107F10000085182103E000088C6200008F8300D0E8 +:107F2000906600D024C50001A06500D08F8500D0E8 +:107F3000906400D090A200D210440017000000000E +:107F4000936C00788F8B00BC318A00FFA16A000C13 +:107F500025490001938700C4312200FF3048007F8B +:107F60001107000B00026827A36200788F4E01788A +:107F700005C0FFFE8F9900B0241800023C0F1000CE +:107F8000AF590140A358014403E00008AF4F017806 +:107F90000A000D0931A20080A0A000D00A000CFF49 +:107FA000000000008F8700D027BDFFC8AFBF0030A2 +:107FB000AFB7002CAFB60028AFB50024AFB4002097 +:107FC000AFB3001CAFB20018AFB10014AFB00010D7 +:107FD00094E300E094E200E2104300D72405FFFFA1 +:107FE0003C047FFF3497FFFF2415FF800A000DF04B +:107FF0003C16000E108A00D18FBF00308F9100B068 +:108000003C1808008F18005C001230C0001291402C +:108010000311702101D57824AF4F002C94EC00E2BD +:1080200031CD007F01BA5821318A7FFF0176482186 +:10803000000A804002091021945300003C08080007 +:108040008D0800580246C02132733FFF001319808B +:10805000010320210224282130BF007F03FAC82118 +:1080600000B5A024AF54002C0336A0218E87001049 +:108070008E8F003003785821256D008800EF702323 +:10808000240C0002AE8E0010AF8D00ACA16C0088F5 +:10809000976A003C8E8400308F9100AC0E000CD6A5 +:1080A0003150FFFF00024B80020940253C02420094 +:1080B00001022025AE2400048E8300048F8D00ACC5 +:1080C0008E860000240E0008ADA3001CADA600188B +:1080D000ADA0000CADA00010929F000A33F900FF84 +:1080E000A5B90014968500083C1F000CA5A5001634 +:1080F0009298000A331100FFA5B100209690000865 +:1081000024180005A5B00022ADA00024928F000B1A +:108110002410C00031E700FFA5A70002A1AE0001B6 +:108120008E8C00308F8B00AC8F8400B0AD6C00085B +:108130003C0A08008D4A005401444821013540247E +:10814000AF4800283C0208008C4200540044302113 +:1081500030C3007F007AC821033F282102458821CF +:10816000AF9100BCAF8500C0A23800008F8A00BC70 +:108170002403FFBF2418FFDF954F000201F03824CD +:1081800000F37025A54E0002914D000231AC003F76 +:10819000358B0040A14B00028F8600BC8F8900D038 +:1081A000ACC000048D28007C3C098000ACC80008ED +:1081B00090C4000D3082007FA0C2000D8F8500BCEE +:1081C00090BF000D03E3C824A0B9000D8F9100BC3F +:1081D0009233000D02789024A232000D8E9000346C +:1081E0008F8B00BCAD7000108E87002C8E8F0030FE +:1081F00000EF7023AD6E0014916D001831AC007F5C +:10820000A16C00188F9F00BC8E8A00308FE8001888 +:10821000015720240109302400C41025AFE20018C2 +:108220009283000AA3E3001C969900088F8500BC86 +:108230008F9800D0A4B9001E8E9000308E8400303C +:108240000E0002138F0500848F8500D0000291403C +:108250000002990090AF00BC0253882100403021F9 +:1082600031E7000210E0000302118021000290803B +:108270000212802190B900BC3327000410E00002F4 +:108280000006F880021F80218E9800308F8B00BC82 +:1082900024068000330F0003000F702331CD00034C +:1082A000020D6021AD6C000494A400E294AA00E2E7 +:1082B00094B000E231497FFF2522000130537FFF57 +:1082C0000206182400734025A4A800E294A400E24A +:1082D0003C1408008E94006030917FFF123400221D +:1082E000000000000E000CF6000000008F8700D098 +:1082F0000000282194F300E094F000E21213000F34 +:108300008FBF003090E900D090E800D1313200FFFB +:10831000310400FF0244302B14C0FF36264A00010E +:1083200090EE00D2264B000131CD00FF008D602180 +:10833000158BFF338F9100B08FBF00308FB7002CAB +:108340008FB600288FB500248FB400208FB3001C97 +:108350008FB200188FB100148FB0001000A0102150 +:1083600003E0000827BD003894A300E20066402423 +:10837000A4A800E290A400E290B900E2309100FFCE +:108380000011A1C20014F827001F39C03332007F4A +:10839000024730250A000DE8A0A600E23084FFFF66 +:1083A00030A5FFFFAF440018AF45001C03E00008F4 +:1083B0008F42001427BDFFB8AFB000208F9000D0CF +:1083C0003084FFFFAFA40010AFBF0044AFBE004039 +:1083D000AFB7003CAFB60038AFB50034AFB4003033 +:1083E000AFB3002CAFB20028AFB10024A7A0001893 +:1083F000920600D1920500D030C400FF30A300FFE8 +:108400000064102B10400122AFA00014920900D08C +:108410008FB50010312800FF0088382324F4FFFFB7 +:108420000014882B0015982B02339024524001260B +:108430008FB40014961E0012961F00108FB7001004 +:1084400003DFC823001714000019C400000224032E +:108450000018140302E2B02A52C00001004020219B +:108460000284282B10A0000200801821028018210D +:1084700000033C0000071C033064FFFF2C8600094A +:1084800014C000020060B821241700088E0A0008FA +:10849000001769808E09000C31ABFFFF3C0C001007 +:1084A000016C402527520400AF4A0038AF9200B853 +:1084B000AF49003CAF480030000000000000000061 +:1084C00000000000000000000000000000000000AC +:1084D00000000000000000008F4F000031EE00207F +:1084E00011C0FFFD0017982A027110240A000E83A4 +:1084F0000000B02155E001019258000131130080C5 +:10850000126001CF012020219655001232A5FFFFF5 +:108510000E000CCBA7B500188F9000D00291A023BD +:1085200026CD00018F9100B8000DB4000016B403F1 +:108530002638004002D7582A0014882B2405000151 +:108540000300902101711024AF9800B8AFA500146A +:10855000104001BC8F8900B03C0C08008D8C005489 +:10856000240BFF80921E00D001895021014B28244A +:10857000921900D0AF4500288E4700103C08080033 +:108580008D0800583C1808008F18005430E33FFF56 +:108590000003218001043021012658212402FF809C +:1085A0000162F824920C00D0AF5F002C92480000CA +:1085B00033D100FF333500FF0309982100117140CA +:1085C000001578C0326D007F01CF382101BA282113 +:1085D000318300FF3164007F3C0A000C00AA88212F +:1085E0000367F02100033140009A10213108003F59 +:1085F0003C1F000E00D1C021005F982127D90088C0 +:108600002D150008AF9100C0AF9900ACAF9800BC29 +:10861000AF9300B412A0018A00008821240E00014B +:10862000010E4004310D005D11A0FFB2310F0002B8 +:108630008E4A00283C0300803C04FFEFAE6A000035 +:108640008E450024A260000A3488FFFFAE65000456 +:108650009247002C3C1FFF9F37FEFFFFA267000CD4 +:108660008E62000C3C180040A267000B00433025CE +:1086700000C8C824033E88240238A825AE75000C23 +:108680008E490004AE6000183C0F00FFAE69001474 +:108690008E4D002C35EEFFFF8F8B00B001AE6024B5 +:1086A000AE6C00108E470008A660000896450012C8 +:1086B000AE6700208E42000C30B03FFF00105180AA +:1086C000AE6200248E5E0014014B182130A400011C +:1086D000AE7E00288E590018000331C2000443808A +:1086E000AE79002C8E51001C00C8F821A67F001C1A +:1086F000AE710030965800028E550020A678001EFC +:10870000AE75003492490033313000045600000544 +:10871000925000008F8C00D08D8B007CAE6B0030AF +:10872000925000008F8F00BCA1F00000924E0033E9 +:1087300031CD000251A00007925E00018F8900BC7C +:108740002418FF80913100000311A825A1350000F5 +:10875000925E00018F9900BC2409FFBF240BFFDF4C +:10876000A33E00018F9500BC92B8000D3311007F2D +:10877000A2B1000D8F8E00BC91D0000D02097824AB +:10878000A1CF000D8F8800BC8E6D0014910A000DE2 +:108790002DAC0001000C2940014B382400E51825C0 +:1087A000A103000D964200128F8800BC8F8700D075 +:1087B000A50200028E45000490FF00BC30A4000317 +:1087C0000004302330DE000300BE102133F9000224 +:1087D00017200002244400342444003090E200BCFE +:1087E00000A2302430DF000417E0000224830004DC +:1087F000008018218F8F00AC24090002AD03000413 +:10880000A1E90000924E003F8F8D00ACA1AE0001A7 +:108810008F9500AC924C003F8E440004A6AC000241 +:10882000976B003C0E000CD63170FFFF00025380A6 +:10883000020A38253C05420000E51825AEA30004D5 +:108840008F8600AC8E480038ACC800188E440034C7 +:10885000ACC4001CACC0000CACC00010A4C0001420 +:10886000A4C00016A4C00020A4C00022ACC00024F4 +:108870008E6400145080000124040001ACC4000880 +:108880000E000CF6241100010A000E768F9000D025 +:10889000920F00D2920E00D08FB5001031EB00FF86 +:1088A00031CD00FF008D6023016C50212554FFFF66 +:1088B0000014882B0015982B023390241640FEDDFF +:1088C000000000008FB400148FBF00448FBE004032 +:1088D0003A8200018FB7003C8FB600388FB5003464 +:1088E0008FB400308FB3002C8FB200288FB10024DA +:1088F0008FB0002003E0000827BD0048331100209E +:10890000122000EF24150001921E00BC241F00015C +:108910000000A82133D900011320000DAFBF001CB7 +:108920008E4400148E0800840088102B144000022E +:10893000008030218E0600848E03006400C3A82BC3 +:1089400016A0000200C020218E0400640080A8212F +:108950008E4700148E05006400E5302B14C0000221 +:1089600000E020218E0400640095F02313C0000471 +:108970008FAC001C240A0002AFAA001C8FAC001CA4 +:10898000028C582B156000A8000018218E4F00386B +:108990008E6D000C3C0E0080AE6F00008E4A0034DD +:1089A0003C10FF9F01AE5825AE6A00049246003F7E +:1089B000360CFFFF016C38243C0500203C03FFEF20 +:1089C000A266000B00E510253468FFFF8F8700B812 +:1089D0000048F8243C04000803E4C825AE79000CE4 +:1089E0008CF80014AE60001802BE7821AE78001436 +:1089F0008CF10018AE71001C8CE90008AE690024EF +:108A00008CEE000CAE6F002CAE600028AE6E002025 +:108A1000A6600038A660003A8CED001401B58023F2 +:108A2000021E902312400011AE72001090EA003D29 +:108A30008E6500048E640000000A310000A6C82183 +:108A4000000010210326402B0082F82103E8C021FA +:108A5000AE790004AE78000090F1003DA271000AEA +:108A60008F8900B895320006A67200088F9800AC76 +:108A70002419000202A02021A31900009769003CDC +:108A80008F9200AC0E000CD63131FFFF00027B80CC +:108A90008F8500B8022F68253C0E420001AE80256C +:108AA000AE5000048F8400AC8CAC0038AC8C001845 +:108AB0008CAB0034AC8B001CAC80000CAC80001084 +:108AC000A4800014A4800016A4800020A4800022AA +:108AD000AC80002490A7003FA487000212A00135BB +:108AE0002403000153C0000290A2003D90A2003E6A +:108AF00024480001A08800018F9F00ACAFF500085A +:108B00008F8300D024070034906600BC30C500027B +:108B100050A00001240700308F9200B88F8A00BC5B +:108B2000906D00BC924B00002412C00032A50003DF +:108B3000A14B00008F8600B88F8800BC240200047F +:108B400090C400010045182330790003A1040001FE +:108B50008F8A00BC8F9F00B800F53821955800021D +:108B600097E9001200F9382103128824312F3FFFC2 +:108B7000022F7025A54E00029150000231A800047A +:108B8000320C003F358B0040A14B000212A00002C6 +:108B90008F8500BC00E838218F8E00D0ACA7000480 +:108BA000240BFFBF8DCD007C2EA400012403FFDF2A +:108BB000ACAD000890B0000D00044140320C007FC5 +:108BC000A0AC000D8F8600BC90CA000D014B102494 +:108BD000A0C2000D8F8700BC90E5000D00A3F82413 +:108BE00003E8C825A0F9000D8F9100B88F8D00BC57 +:108BF0008E380020ADB800108E290024ADA90014D5 +:108C00008E2F0028ADAF00188E2E002C0E000CF613 +:108C1000ADAE001C8FB0001C240C0002120C00EE44 +:108C20008F9000D08FA3001C006088211460000288 +:108C30000060A8210000A02156A0FE390291A023C7 +:108C40000014882B8FA90010960700103C1E0020EE +:108C50000136402302C750213112FFFFA60A00103F +:108C6000AFB20010AF5E0030000000009617001099 +:108C7000961300121277008F000000008E05000C82 +:108C80008E0B00080016698000AD7021000DC7C36F +:108C900001CDA82B0178782101F56021AE0E000CE2 +:108CA000AE0C00088FB300100013B82B02378024DD +:108CB0001200FF048F9000D00A000E3C000000005C +:108CC0008E4D0038A6600008240B0003AE6D000036 +:108CD0008E500034A260000A8F9800B8AE70000475 +:108CE0003C0500809311003FA26B000C8E6F000CBE +:108CF0003C0EFF9FA271000B01E5102535CCFFFF54 +:108D00003C03FFEF8F9200B8004C30243464FFFF27 +:108D100000C4F824AE7F000C8E590014964800124F +:108D20008F8A00B0AE7900108E490014AE60001832 +:108D3000AE600020AE690014AE6000248E470018BB +:108D400031093FFF0009F180AE6700288E4D000811 +:108D500003CA802131180001AE6D00308E4F000C27 +:108D60008F8C00AC001089C200185B80022B282178 +:108D7000240E0002A665001CA6600036AE6F002C13 +:108D8000A18E00009763003C8F8A00AC3C04420037 +:108D90003062FFFF00443025AD4600048F9F00B8CD +:108DA000240700012411C0008FF30038240600348A +:108DB000AD5300188FF90034AD59001CAD40000CC4 +:108DC000AD400010A5400014A5400016A5400020AD +:108DD000A5400022AD400024A5550002A147000196 +:108DE0008F9E00AC8F8800B88F9200BCAFD5000872 +:108DF000910D0000A24D00008F9000B88F8B00BC39 +:108E000092180001A17800018F8400BC94850002B3 +:108E100000B1782401E97025A48E0002908C000234 +:108E20003183003FA08300028F8300D08F8400BC79 +:108E3000906200BC305300025260000124060030F2 +:108E4000AC8600048C6F007C2403FFBF02A0882145 +:108E5000AC8F0008908E000D31CC007FA08C000DEF +:108E60008F8600BC90C2000D00432024A0C4000DDA +:108E70008F8900BC913F000D37F90020A139000D0A +:108E80008F8800B88F9300BC8D070020AE6700105C +:108E90008D0A0024AE6A00148D1E0028AE7E0018D4 +:108EA0008D12002C0E000CF6AE72001C0A00103D54 +:108EB0008F9000D0960E00148E03000431CCFFFF7B +:108EC000000C10C000622021AF44003C8E1F000443 +:108ED0008F46003C03E6C8231B20003C0000000036 +:108EE0008E0F000025E200013C05001034B500089B +:108EF000AF420038AF550030000000000000000015 +:108F00000000000000000000000000000000000061 +:108F100000000000000000008F580000330B00200C +:108F20001160FFFD000000008F5304003C0D002085 +:108F3000AE1300088F570404AE17000CAF4D00307D +:108F4000000000003C0608008CC600442416000106 +:108F500010D600BD00000000961F00123C0508005E +:108F60008CA5004000BFC821A61900129609001464 +:108F700025270001A6070014960A00143144FFFFBC +:108F80005486FF498FB30010A60000140E000E1681 +:108F900030A5FFFF3C0408008C84002496030012D7 +:108FA0000044102300623023A60600120A00105964 +:108FB0008FB30010A08300018F8200AC2404000155 +:108FC000AC4400080A000FF08F8300D08E0200002E +:108FD0000A0010EA3C0500108F8200C08FA7001C19 +:108FE000921800D0920B00D0920E00D0331100FFE7 +:108FF000316900FF00117940000928C001E56021B6 +:1090000031C300FF036C50210003314000C2C8216E +:10901000255F0088AF9F00ACAF9900BCA1470088D6 +:109020009768003C03C020218F9100AC0E000CD645 +:109030003110FFFF00026B80020DC0253C0442008E +:109040008F8D00B803045825AE2B00048DA900387D +:109050008F8B00AC0000882100118100AD690018E1 +:109060008DAF00343C087FFF3504FFFFAD6F001C5F +:1090700091AC003E8D65001C8D660018000C190037 +:10908000000C770200A33821020E102500E3F82B14 +:1090900000C2C821033F5021AD67001CAD6A001813 +:1090A000AD60000CAD60001091B8003E24050005D5 +:1090B00003C45024A578001495A9000403C02021FE +:1090C000A569001691AF003EA56F002095B1000480 +:1090D000A5710022AD60002491AE003FA56E000294 +:1090E00091B0003E91AC003D01901023244300015B +:1090F000A16300018F8600AC8F9F00BCACDE00082E +:10910000A3E500008F9000BC8F9900B82405FFBF35 +:1091100096070002973800120247782433093FFF70 +:1091200001E98825A6110002921200022418FFDF2F +:10913000324E003F35CD0040A20D00028F8600BCAC +:109140008F8C00D02412FFFFACC000048D8B007CFC +:109150003C0C8000ACCB000890C2000D3043007F77 +:10916000A0C3000D8F8700BC90FF000D03E5C8244D +:10917000A0F9000D8F9100BC9229000D01387824D0 +:10918000A22F000D8F9000BCAE120010AE1500147F +:10919000920E00182415FF8002AE6825A20D00185B +:1091A0008F8500BC8F8300B88CAB0018016C102435 +:1091B000004A3025ACA600189068003EA0A8001C0C +:1091C0008F9F00B88F8700BC8F9800D097F900045C +:1091D000A4F9001E0E0002138F0500848F8600D0B4 +:1091E000000279400002490090D200BC01E98821C8 +:1091F000004028213255000212A0000303D1202193 +:109200000002A8800095202190CD00BC31B200045E +:109210001240000333DF0003000540800088202156 +:10922000240600048F9E00BC00DFC8233327000300 +:1092300000875021AFCA00040E000CF6A665003866 +:109240000A0010388F9000D0961E00123C080800CB +:109250008D080024011E9021A61200120A00105948 +:109260008FB3001027BDFFE03C1808008F18005096 +:10927000AFB00010AFBF0018AFB10014AF8400B0A2 +:1092800093710074030478212410FF8031EE007F75 +:109290003225007F01F0582401DA68213C0C000AD5 +:1092A000A38500C401AC2821AF4B002494A9001071 +:1092B0009768000690A600620080382124020030E2 +:1092C0000109202330C300F0AF8500D010620019DF +:1092D0003090FFFF90AE0062240DFFF0240A005092 +:1092E00001AE6024318B00FF116A002F00000000E6 +:1092F00016000007241F0C00AF5F00248FB100147C +:109300008FBF00188FB0001003E0000827BD0020B9 +:109310000E000E1C02002021241F0C00AF5F002451 +:109320008FB100148FBF00188FB0001003E0000849 +:1093300027BD002094A200E094A400E290BF011396 +:10934000008218263079FFFF33E700C014E00009DF +:109350002F31000116000038000000005620FFE603 +:10936000241F0C000E000D18000000000A0011ED73 +:10937000241F0C001620FFDE000000000E000D1858 +:10938000000000001440FFDC241F0C001600002227 +:109390008F8300D0906901133122003FA062011336 +:1093A0000A0011ED241F0C0094AF00D48F8600D466 +:1093B00000E02821240400050E000C5C31F0FFFFC2 +:1093C0001440000524030003979100E600001821D3 +:1093D0002625FFFFA78500E68F5801B80700FFFE8E +:1093E0003C196013AF400180241F0C00AF50018472 +:1093F000007938253C101000AF4701888FB1001468 +:10940000AF5001B8AF5F00248FB000108FBF0018BD +:1094100003E0000827BD00200E000E1C02002021E2 +:109420005040FFB5241F0C008F8300D090690113BA +:109430000A0012163122003F0E000E1C02002021ED +:109440001440FFAD241F0C00122000078F8300D0B2 +:10945000906801133106003F34C20040A06201133E +:109460000A0011ED241F0C000E000D180000000072 +:109470005040FFA1241F0C008F8300D0906801137F +:109480003106003F0A00124634C20040AF9B00C8BC +:1094900003E00008AF8000EC3089FFFF0009404284 +:1094A0002D020041000921801440000200095040B3 +:1094B00024080040000830C0000811400046582130 +:1094C000256701A800E2C821272F007F2418FF800C +:1094D00001F818240064302100CA702125CC00FF57 +:1094E000240DFF00018D202425650088240A0088B2 +:1094F0003C010800AC2A004C3C010800AC2500509F +:10950000AF8400D43C010800AC2900603C01080095 +:10951000AC2800643C010800AC2700543C01080062 +:10952000AC2300583C010800AC26005C03E00008B6 +:1095300000000000308300FF30C6FFFF30E400FF72 +:109540008F4201B80440FFFE00034C00012438257F +:109550003C08600000E820253C031000AF45018076 +:10956000AF460184AF44018803E00008AF4301B86F +:109570008F86001C3C096012352700108CCB00043C +:109580003C0C600E35850010316A00062D48000144 +:10959000ACE800C48CC40004ACA431808CC20008C8 +:1095A00094C30002ACA2318403E00008A78300E466 +:1095B0003C0308008C6300508F8400E88F86001CF9 +:1095C0002402FF800064C0210302C824AF59002890 +:1095D0008CCD00043305007F00BA78213C0E000CCE +:1095E00001EE2821ACAD00588CC80008AF8500D032 +:1095F0003C076012ACA8005C8CCC001034E8001072 +:10960000ACAC000C8CCB000CACAB000894AA0014E2 +:109610003C0208008C42004425490001A4A9001422 +:1096200094A400143083FFFF106200178F8400D0D1 +:109630003C0A08008D4A0040A4AA00128CCE0018F3 +:10964000AC8E00248CCD0014AC8D00208CC700188B +:10965000AC87002C8CCC001424060001AC8C0028B4 +:109660008D0B00BC5166001A8D0200B48D0200B84B +:10967000A482003A948F003AA48F003C948800D4CE +:1096800003E000083102FFFF3C0908008D29002497 +:10969000A4A000148F8400D0A4A900128CCE0018BE +:1096A000AC8E00248CCD0014AC8D00208CC700182B +:1096B000AC87002C8CCC001424060001AC8C002854 +:1096C0008D0B00BC5566FFEA8D0200B88D0200B418 +:1096D000A482003A948F003AA48F003C948800D46E +:1096E00003E000083102FFFF8F86001C3C0C0800DD +:1096F0008D8C0050240BFF808CCD00083C03000CA7 +:10970000000D51C0018A4021010B4824AF8A00E8B6 +:10971000AF49002890C700073105007F00BA10212B +:109720000043282130E4000410800039AF8500D0C8 +:1097300090CF000731EE000811C000380000000093 +:109740008CD9000C8CC400140324C02B13000030EF +:10975000000000008CC2000CACA200648CCD00188C +:109760002402FFF8ACAD00688CCC0010ACAC0080DB +:109770008CCB000CACAB00848CCA001CACAA007C67 +:1097800090A900BC01224024A0A800BC90C30007FF +:109790003067000810E000048F8500D090AF00BC57 +:1097A00035EE0001A0AE00BC90D9000733380001AF +:1097B000130000088F8300D08F8700D0240400346A +:1097C00090E800BC35030002A0E300BC8F8300D00A +:1097D000AC6400C090C900073126000210C000052B +:1097E00000000000906A00BC35420004A06200BC8A +:1097F0008F8300D09065011330AD003FA06D011341 +:109800008F8C00D0958B00D403E000083162FFFFFD +:109810008CC200140A001305000000000A001306A1 +:10982000ACA0006427BDFFD8AFB000108F90001C23 +:10983000AFBF0024AFB40020AFB20018AFB1001426 +:10984000AFB3001C9613000E3C07600A3C14600680 +:109850003264FFFF369300100E00125534F40410EA +:109860008F8400D43C11600E0E00099B363100102D +:10987000920E00153C0708008CE700603C12601255 +:1098800031CD000FA38D00F08E0E00048E0D000868 +:1098900096080012961F00109619001A9618001EBE +:1098A000960F001C310CFFFF33EBFFFF332AFFFF45 +:1098B0003309FFFF31E6FFFF3C010800AC2B0040FD +:1098C0003C010800AC2C00243C010800AC2A0044F8 +:1098D000AE293178AE26317C92020015960300162F +:1098E00036520010304400FF3065FFFF3C06080090 +:1098F0008CC60064AE243188AE4500B492080014D2 +:1099000096190018241F0001011FC004332FFFFF08 +:109910003C0508008CA50058AE5800B8AE4F00BCFE +:10992000920C0014AF8E00D8AF8D00DC318B00FF9D +:10993000AE4B00C0920A0015AE670048AE66004C00 +:10994000314900FFAE4900C8AE65007C3C03080009 +:109950008C6300503C0408008C84004C3C080800D8 +:109960008D0800543C0208008C42005C8FBF00242C +:10997000AE6300808FB00010AE8300748FB3001C04 +:10998000AE22319CAE4200DCAE2731A0AE2631A41F +:10999000AE24318CAE233190AE283194AE2531986F +:1099A000AE870050AE860054AE8500708FB10014B3 +:1099B000AE4700E0AE4600E4AE4400CCAE4300D07B +:1099C000AE4800D4AE4500D88FB400208FB2001846 +:1099D00003E0000827BD002827BDFFE0AFB1001459 +:1099E000AFBF0018241100010E000845AFB00010F1 +:1099F00010510005978400E6978300CC0083102B5C +:109A0000144000088F8500D4240700028FBF00187F +:109A10008FB100148FB0001000E0102103E00008A7 +:109A200027BD00200E000C7A24040005AF8200E858 +:109A30001040FFF6240700020E0008498F90001C1A +:109A4000979F00E68F9900E88F8D00C827EF0001EF +:109A5000240E0050AF590020A78F00E6A1AE0000F1 +:109A60003C0C08008D8C00648F8600C8240A80009E +:109A7000000C5E00ACCB0074A4C0000694C9000AC0 +:109A8000241FFF803C0D000C012AC024A4D8000A2A +:109A900090C8000A24182000011F1825A0C3000A3E +:109AA0008F8700C8A0E000788F8500C800003821AB +:109AB000A0A000833C0208008C4200508F8400E884 +:109AC0000044782101FFC824AF590028960B0002FA +:109AD00031EE007F01DA6021018D3021A4CB00D46A +:109AE000960A0002AF8600D03C0E000425492401EE +:109AF000A4C900E68E080004ACC800048E03000868 +:109B0000ACC30000A4C00010A4C00014A0C000D0CA +:109B10008F8500D02403FFBFA0A000D13C04080023 +:109B20008C8400648F8200D0A04400D28E1F000C71 +:109B30008F8A00D0978F00E4AD5F001C8E19001053 +:109B400024100030AD590018A5400030A551005434 +:109B5000A5510056A54F0016AD4E0068AD580080C7 +:109B6000AD580084914D006231AC000F358B001070 +:109B7000A14B00628F8600D090C900633128007F1E +:109B8000A0C800638F8400D02406FFFF9085006387 +:109B900000A31024A08200638F9100D000E0102168 +:109BA000923F00BC37F90001A23900BC8F8A00D077 +:109BB000938F00F0AD580064AD5000C0914E00D3BB +:109BC000000F690031CC000F018D5825A14B00D347 +:109BD0008F8500D08F8900DCACA900E88F8800D881 +:109BE0008FBF00188FB100148FB0001027BD002068 +:109BF000ACA800ECA4A600D6A4A000E0A4A000E2BB +:109C000003E000080000000027BDFFE0AFB0001037 +:109C10008F90001CAFB10014AFBF00188E19000464 +:109C20003C1808008F180050240FFF80001989C0CD +:109C30000238702131CD007F01CF602401BA50215C +:109C40003C0B000CAF4C0028014B4021950900D47F +:109C5000950400D68E0700043131FFFFAF8800D095 +:109C60000E000913000721C08E0600048F8300C870 +:109C7000000629C0AF4500209064003E30820040BD +:109C8000144000068F8400D0341FFFFF948300D659 +:109C90003062FFFF145F000400000000948400D6CF +:109CA0000E0008A83084FFFF8E050004022030213A +:109CB0008FBF00188FB100148FB000102404002251 +:109CC00000003821000529C00A00127C27BD0020B1 +:109CD00027BDFFE0AFB100143091FFFFAFB000101F +:109CE000AFBF00181220001D000080218F86001CCD +:109CF0008CC500002403000600053F020005140285 +:109D000030E4000714830015304500FF2CA800063E +:109D10001100004D000558803C0C0800258C57D4DC +:109D2000016C50218D490000012000080000000056 +:109D30008F8E00EC240D000111CD005900000000B1 +:109D4000260B00013170FFFF24CA00200211202BD6 +:109D5000014030211480FFE6AF8A001C0200102170 +:109D60008FBF00188FB100148FB0001003E00008FF +:109D700027BD0020938700CE14E00038240400148F +:109D80000E001338000000008F86001C2402000122 +:109D90000A00147FAF8200EC8F8900EC24080002D7 +:109DA0001128003B2404001300002821000030216A +:109DB000240700010E00127C000000000A00147F3E +:109DC0008F86001C8F8700EC2405000214E5FFF647 +:109DD000240400120E0012E9000000008F8500E844 +:109DE00000403021240400120E00127C00003821B3 +:109DF0000A00147F8F86001C8F8300EC241F000351 +:109E0000147FFFD0260B00010E00129B0000000003 +:109E10008F8500E800403021240200022404001055 +:109E200000003821AF8200EC0E00127C0000000020 +:109E30000A00147F8F86001C8F8F00EC240600021E +:109E400011E6000B0000000024040010000028218F +:109E5000000030210A00149C240700010000282182 +:109E60000E00127C000030210A00147F8F86001C37 +:109E70000E0013A500000000144000128F99001C72 +:109E80008F86001C240200030A00147FAF8200ECBE +:109E90000E001431000000000A00147F8F86001CA1 +:109EA0000E00128B000000002402000224040014A3 +:109EB0000000282100003021000038210A0014B9D8 +:109EC000AF8200EC004038212404001097380002D3 +:109ED000000028210E00127C3306FFFF0A00147FC9 +:109EE0008F86001C8F8400C83C077FFF34E6FFFF8D +:109EF0008C8500742402000100A61824AC83007431 +:109F000003E00008A082000510A000362CA200800B +:109F1000274A04003C0B000524090080104000077C +:109F20002408008030A6000F00C540212D030081C9 +:109F30001460000200A0482124080080AF4B0030CC +:109F400000000000000000000000000011000009F7 +:109F500000003821014030218C8D000024E70004EE +:109F600000E8602BACCD0000248400041580FFFACB +:109F700024C60004000000000000000000000000F3 +:109F80003C0E0006010E3825AF47003000000000EF +:109F900000000000000000008F4F000031E80010BA +:109FA0001100FFFD000000008F42003C8F43003C89 +:109FB0000049C8210323C02B130000040000000047 +:109FC0008F4C003825860001AF4600388F47003C93 +:109FD00000A9282300E96821AF4D003C14A0FFCE62 +:109FE0002CA2008003E000080000000027BDFFD085 +:109FF0003C020002AFB100143C11000CAF45003828 +:10A00000AFB3001CAF46003C00809821AF42003047 +:10A0100024050088AF44002803512021AFBF002849 +:10A02000AFB50024AFB40020AFB200180E0014F199 +:10A03000AFB000103C1F08008FFF004C3C18080018 +:10A040008F1800642410FF8003F3A82132B9007F29 +:10A0500002B078240018A0C0033A70210018914083 +:10A0600001D12021AF4F00280E0014F10254282105 +:10A070003C0D08008DAD00502405012001B358218E +:10A08000316C007F01705024019A48210131202158 +:10A090000E0014F1AF4A00283C0808008D08005457 +:10A0A0003C0508008CA500640113382130E6007FD0 +:10A0B00000F0182400DA202100912021AF4300286D +:10A0C0000E0014F1000529403C0208008C420058A3 +:10A0D0003C1008008E1000601200001C0053882104 +:10A0E0002415FF800A0015743C14000C3226007FF2 +:10A0F0000235182400DA202102402821AF4300282D +:10A10000009420210E0014F12610FFC01200000F51 +:10A11000023288212E05004110A0FFF42412100005 +:10A120003226007F001091800235182400DA2021A9 +:10A1300002402821AF430028009420210E0014F192 +:10A14000000080211600FFF3023288213C0B08003A +:10A150008D6B005C240AFF802405000201734021FE +:10A16000010A4824AF4900283C0408009484006296 +:10A170003110007F021A88213C07000C0E000CAA47 +:10A180000227982100402821026020218FBF00284B +:10A190008FB500248FB400208FB3001C8FB200183D +:10A1A0008FB100148FB000100A0014F127BD0030E9 +:10A1B0008F83001C8C62000410400003000000002C +:10A1C00003E00008000000008C6400108C650008AB +:10A1D0000A00152A8C66000C000000000000001B1D +:10A1E0000000000F0000000A000000080000000648 +:10A1F000000000050000000500000004000000044D +:10A200000000000300000003000000030000000342 +:10A210000000000300000002000000020000000235 +:10A220000000000200000002000000020000000226 +:10A230000000000200000002000000020000000216 +:10A240000000000200000002000000020000000206 +:10A2500000000001000000010000000108000F24C0 +:10A2600008000D6C08000FB80800106008000F4CC3 +:10A2700008000F8C0800119408000D88080011B820 +:10A2800008000DD8080015540800151C08000D889A +:10A2900008000D8808000D880800124008001240D0 +:10A2A00008000D8808000D88080014E008000D88DB +:10A2B00008000D8808000D8808000D88080013B4F8 +:10A2C00008000D8808000D8808000D8808000D881A +:10A2D00008000D8808000D8808000D8808000D880A +:10A2E00008000D8808000D8808000D8808000D88FA +:10A2F00008000D8808000D8808000FAC08000D88C4 +:10A3000008000D880800167808000D8808000D88E0 +:10A3100008000D8808000D8808000D8808000D88C9 +:10A3200008000D8808000D8808000D8808000D88B9 +:10A3300008000D8808000D8808000D8808000D88A9 +:10A3400008000D8808000D8808000D88080014100A +:10A3500008000D8808000D8808001334080012A4B6 +:10A3600008001E2C08001EFC08001F1408001F28EF +:10A3700008001F3808001E2C08001E2C08001E2C88 +:10A3800008001ED808002E1408002E1C08002DE41A +:10A3900008002DF008002DFC08002E08080052F4DB +:10A3A000080052B40800528008005254080052308D +:10A3B000080051EC0A000C840000000000000000BE +:10A3C0000000000D727870362E322E33000000002F +:10A3D000060203030000000000000001000000006E +:10A3E000000000000000000000000000000000006D +:10A3F000000000000000000000000000000000005D +:10A40000000000000000000000000000000000004C +:10A41000000000000000000000000000000000003C +:10A42000000000000000000000000000000000002C +:10A43000000000000000000000000000000000001C +:10A44000000000000000000000000000000000000C +:10A4500000000000000000000000000000000000FC +:10A4600000000000000000000000000000000000EC +:10A4700000000000000000000000000000000000DC +:10A4800000000000000000000000000000000000CC +:10A4900000000000000000000000000000000000BC +:10A4A00000000000000000000000000000000000AC +:10A4B000000000000000000000000000000000009C +:10A4C000000000000000000000000000000000008C +:10A4D000000000000000000000000000000000007C +:10A4E000000000000000000000000000000000006C +:10A4F000000000000000000000000000000000005C +:10A50000000000000000000000000000000000004B +:10A51000000000000000000000000000000000003B +:10A52000000000000000000000000000000000002B +:10A53000000000000000000000000000000000001B +:10A54000000000000000000000000000000000000B +:10A5500000000000000000000000000000000000FB +:10A5600000000000000000000000000000000000EB +:10A5700000000000000000000000000000000000DB +:10A5800000000000000000000000000000000000CB +:10A5900000000000000000000000000000000000BB +:10A5A00000000000000000000000000000000000AB +:10A5B000000000000000000000000000000000009B +:10A5C000000000000000000000000000000000008B +:10A5D000000000000000000000000000000000007B +:10A5E000000000000000000000000000000000006B +:10A5F000000000000000000000000000000000005B +:10A60000000000000000000000000000000000004A +:10A61000000000000000000000000000000000003A +:10A62000000000000000000000000000000000002A +:10A63000000000000000000000000000000000001A +:10A64000000000000000000000000000000000000A +:10A6500000000000000000000000000000000000FA +:10A6600000000000000000000000000000000000EA +:10A6700000000000000000000000000000000000DA +:10A6800000000000000000000000000000000000CA +:10A6900000000000000000000000000000000000BA +:10A6A00000000000000000000000000000000000AA +:10A6B000000000000000000000000000000000009A +:10A6C000000000000000000000000000000000008A +:10A6D000000000000000000000000000000000007A +:10A6E000000000000000000000000000000000006A +:10A6F000000000000000000000000000000000005A +:10A700000000000000000000000000000000000049 +:10A710000000000000000000000000000000000039 +:10A720000000000000000000000000000000000029 +:10A730000000000000000000000000000000000019 +:10A740000000000000000000000000000000000009 +:10A7500000000000000000000000000000000000F9 +:10A7600000000000000000000000000000000000E9 +:10A7700000000000000000000000000000000000D9 +:10A7800000000000000000000000000000000000C9 +:10A7900000000000000000000000000000000000B9 +:10A7A00000000000000000000000000000000000A9 +:10A7B0000000000000000000000000000000000099 +:10A7C0000000000000000000000000000000000089 +:10A7D0000000000000000000000000000000000079 +:10A7E0000000000000000000000000000000000069 +:10A7F0000000000000000000000000000000000059 +:10A800000000000000000000000000000000000048 +:10A810000000000000000000000000000000000038 +:10A820000000000000000000000000000000000028 +:10A830000000000000000000000000000000000018 +:10A840000000000000000000000000000000000008 +:10A8500000000000000000000000000000000000F8 +:10A8600000000000000000000000000000000000E8 +:10A8700000000000000000000000000000000000D8 +:10A8800000000000000000000000000000000000C8 +:10A8900000000000000000000000000000000000B8 +:10A8A00000000000000000000000000000000000A8 +:10A8B0000000000000000000000000000000000098 +:10A8C0000000000000000000000000000000000088 +:10A8D0000000000000000000000000000000000078 +:10A8E0000000000000000000000000000000000068 +:10A8F0000000000000000000000000000000000058 +:10A900000000000000000000000000000000000047 +:10A910000000000000000000000000000000000037 +:10A920000000000000000000000000000000000027 +:10A930000000000000000000000000000000000017 +:10A940000000000000000000000000000000000007 +:10A9500000000000000000000000000000000000F7 +:10A9600000000000000000000000000000000000E7 +:10A9700000000000000000000000000000000000D7 +:10A9800000000000000000000000000000000000C7 +:10A9900000000000000000000000000000000000B7 +:10A9A00000000000000000000000000000000000A7 +:10A9B0000000000000000000000000000000000097 +:10A9C0000000000000000000000000000000000087 +:10A9D0000000000000000000000000000000000077 +:10A9E0000000000000000000000000000000000067 +:10A9F0000000000000000000000000000000000057 +:10AA00000000000000000000000000000000000046 +:10AA10000000000000000000000000000000000036 +:10AA20000000000000000000000000000000000026 +:10AA30000000000000000000000000000000000016 +:10AA40000000000000000000000000000000000006 +:10AA500000000000000000000000000000000000F6 +:10AA600000000000000000000000000000000000E6 +:10AA700000000000000000000000000000000000D6 +:10AA800000000000000000000000000000000000C6 +:10AA900000000000000000000000000000000000B6 +:10AAA00000000000000000000000000000000000A6 +:10AAB0000000000000000000000000000000000096 +:10AAC0000000000000000000000000000000000086 +:10AAD0000000000000000000000000000000000076 +:10AAE0000000000000000000000000000000000066 +:10AAF0000000000000000000000000000000000056 +:10AB00000000000000000000000000000000000045 +:10AB10000000000000000000000000000000000035 +:10AB20000000000000000000000000000000000025 +:10AB30000000000000000000000000000000000015 +:10AB40000000000000000000000000000000000005 +:10AB500000000000000000000000000000000000F5 +:10AB600000000000000000000000000000000000E5 +:10AB700000000000000000000000000000000000D5 +:10AB800000000000000000000000000000000000C5 +:10AB900000000000000000000000000000000000B5 +:10ABA00000000000000000000000000000000000A5 +:10ABB0000000000000000000000000000000000095 +:10ABC0000000000000000000000000000000000085 +:10ABD0000000000000000000000000000000000075 +:10ABE0000000000000000000000000000000000065 +:10ABF0000000000000000000000000000000000055 +:10AC00000000000000000000000000000000000044 +:10AC10000000000000000000000000000000000034 +:10AC20000000000000000000000000000000000024 +:10AC30000000000000000000000000000000000014 +:10AC40000000000000000000000000000000000004 +:10AC500000000000000000000000000000000000F4 +:10AC600000000000000000000000000000000000E4 +:10AC700000000000000000000000000000000000D4 +:10AC800000000000000000000000000000000000C4 +:10AC900000000000000000000000000000000000B4 +:10ACA00000000000000000000000000000000000A4 +:10ACB0000000000000000000000000000000000094 +:10ACC0000000000000000000000000000000000084 +:10ACD0000000000000000000000000000000000074 +:10ACE0000000000000000000000000000000000064 +:10ACF0000000000000000000000000000000000054 +:10AD00000000000000000000000000000000000043 +:10AD10000000000000000000000000000000000033 +:10AD20000000000000000000000000000000000023 +:10AD30000000000000000000000000000000000013 +:10AD40000000000000000000000000000000000003 +:10AD500000000000000000000000000000000000F3 +:10AD600000000000000000000000000000000000E3 +:10AD700000000000000000000000000000000000D3 +:10AD800000000000000000000000000000000000C3 +:10AD900000000000000000000000000000000000B3 +:10ADA00000000000000000000000000000000000A3 +:10ADB0000000000000000000000000000000000093 +:10ADC0000000000000000000000000000000000083 +:10ADD0000000000000000000000000000000000073 +:10ADE0000000000000000000000000000000000063 +:10ADF0000000000000000000000000000000000053 +:10AE00000000000000000000000000000000000042 +:10AE10000000000000000000000000000000000032 +:10AE20000000000000000000000000000000000022 +:10AE30000000000000000000000000000000000012 +:10AE40000000000000000000000000000000000002 +:10AE500000000000000000000000000000000000F2 +:10AE600000000000000000000000000000000000E2 +:10AE700000000000000000000000000000000000D2 +:10AE800000000000000000000000000000000000C2 +:10AE900000000000000000000000000000000000B2 +:10AEA00000000000000000000000000000000000A2 +:10AEB0000000000000000000000000000000000092 +:10AEC0000000000000000000000000000000000082 +:10AED0000000000000000000000000000000000072 +:10AEE0000000000000000000000000000000000062 +:10AEF0000000000000000000000000000000000052 +:10AF00000000000000000000000000000000000041 +:10AF10000000000000000000000000000000000031 +:10AF20000000000000000000000000000000000021 +:10AF30000000000000000000000000000000000011 +:10AF40000000000000000000000000000000000001 +:10AF500000000000000000000000000000000000F1 +:10AF600000000000000000000000000000000000E1 +:10AF700000000000000000000000000000000000D1 +:10AF800000000000000000000000000000000000C1 +:10AF900000000000000000000000000000000000B1 +:10AFA00000000000000000000000000000000000A1 +:10AFB0000000000000000000000000000000000091 +:10AFC0000000000000000000000000000000000081 +:10AFD0000000000000000000000000000000000071 +:10AFE0000000000000000000000000000000000061 +:10AFF0000000000000000000000000000000000051 +:10B000000000000000000000000000000000000040 +:10B010000000000000000000000000000000000030 +:10B020000000000000000000000000000000000020 +:10B030000000000000000000000000000000000010 +:10B040000000000000000000000000000000000000 +:10B0500000000000000000000000000000000000F0 +:10B0600000000000000000000000000000000000E0 +:10B0700000000000000000000000000000000000D0 +:10B0800000000000000000000000000000000000C0 +:10B0900000000000000000000000000000000000B0 +:10B0A00000000000000000000000000000000000A0 +:10B0B0000000000000000000000000000000000090 +:10B0C0000000000000000000000000000000000080 +:10B0D0000000000000000000000000000000000070 +:10B0E0000000000000000000000000000000000060 +:10B0F0000000000000000000000000000000000050 +:10B10000000000000000000000000000000000003F +:10B11000000000000000000000000000000000002F +:10B12000000000000000000000000000000000001F +:10B13000000000000000000000000000000000000F +:10B1400000000000000000000000000000000000FF +:10B1500000000000000000000000000000000000EF +:10B1600000000000000000000000000000000000DF +:10B1700000000000000000000000000000000000CF +:10B1800000000000000000000000000000000000BF +:10B1900000000000000000000000000000000000AF +:10B1A000000000000000000000000000000000009F +:10B1B000000000000000000000000000000000008F +:10B1C000000000000000000000000000000000007F +:10B1D000000000000000000000000000000000006F +:10B1E000000000000000000000000000000000005F +:10B1F000000000000000000000000000000000004F +:10B20000000000000000000000000000000000003E +:10B21000000000000000000000000000000000002E +:10B22000000000000000000000000000000000001E +:10B23000000000000000000000000000000000000E +:10B2400000000000000000000000000000000000FE +:10B2500000000000000000000000000000000000EE +:10B2600000000000000000000000000000000000DE +:10B2700000000000000000000000000000000000CE +:10B2800000000000000000000000000000000000BE +:10B2900000000000000000000000000000000000AE +:10B2A000000000000000000000000000000000009E +:10B2B000000000000000000000000000000000008E +:10B2C000000000000000000000000000000000007E +:10B2D000000000000000000000000000000000006E +:10B2E000000000000000000000000000000000005E +:10B2F000000000000000000000000000000000004E +:10B30000000000000000000000000000000000003D +:10B31000000000000000000000000000000000002D +:10B32000000000000000000000000000000000001D +:10B33000000000000000000000000000000000000D +:10B3400000000000000000000000000000000000FD +:10B3500000000000000000000000000000000000ED +:10B3600000000000000000000000000000000000DD +:10B3700000000000000000000000000000000000CD +:10B3800000000000000000000000000000000000BD +:10B3900000000000000000000000000000000000AD +:10B3A000000000000000000000000000000000009D +:10B3B000000000000000000000000000000000008D +:10B3C000000000000000000000000000000000007D +:10B3D000000000000000000000000000000000006D +:10B3E000000000000000000000000000000000005D +:10B3F000000000000000000000000000000000004D +:10B40000000000000000000000000000000000003C +:10B41000000000000000000000000000000000002C +:10B42000000000000000000000000000000000001C +:10B43000000000000000000000000000000000000C +:10B4400000000000000000000000000000000000FC +:10B4500000000000000000000000000000000000EC +:10B4600000000000000000000000000000000000DC +:10B4700000000000000000000000000000000000CC +:10B4800000000000000000000000000000000000BC +:10B4900000000000000000000000000000000000AC +:10B4A000000000000000000000000000000000009C +:10B4B000000000000000000000000000000000008C +:10B4C000000000000000000000000000000000007C +:10B4D000000000000000000000000000000000006C +:10B4E000000000000000000000000000000000005C +:10B4F000000000000000000000000000000000004C +:10B50000000000000000000000000000000000003B +:10B51000000000000000000000000000000000002B +:10B52000000000000000000000000000000000001B +:10B53000000000000000000000000000000000000B +:10B5400000000000000000000000000000000000FB +:10B5500000000000000000000000000000000000EB +:10B5600000000000000000000000000000000000DB +:10B5700000000000000000000000000000000000CB +:10B5800000000000000000000000000000000000BB +:10B5900000000000000000000000000000000000AB +:10B5A000000000000000000000000000000000009B +:10B5B000000000000000000000000000000000008B +:10B5C000000000000000000000000000000000007B +:10B5D000000000000000000000000000000000006B +:10B5E000000000000000000000000000000000005B +:10B5F000000000000000000000000000000000004B +:10B60000000000000000000000000000000000003A +:10B61000000000000000000000000000000000002A +:10B62000000000000000000000000000000000001A +:10B63000000000000000000000000000000000000A +:10B6400000000000000000000000000000000000FA +:10B6500000000000000000000000000000000000EA +:10B6600000000000000000000000000000000000DA +:10B6700000000000000000000000000000000000CA +:10B6800000000000000000000000000000000000BA +:10B6900000000000000000000000000000000000AA +:10B6A000000000000000000000000000000000009A +:10B6B000000000000000000000000000000000008A +:10B6C000000000000000000000000000000000007A +:10B6D000000000000000000000000000000000006A +:10B6E000000000000000000000000000000000005A +:10B6F000000000000000000000000000000000004A +:10B700000000000000000000000000000000000039 +:10B710000000000000000000000000000000000029 +:10B720000000000000000000000000000000000019 +:10B730000000000000000000000000000000000009 +:10B7400000000000000000000000000000000000F9 +:10B7500000000000000000000000000000000000E9 +:10B7600000000000000000000000000000000000D9 +:10B7700000000000000000000000000000000000C9 +:10B7800000000000000000000000000000000000B9 +:10B7900000000000000000000000000000000000A9 +:10B7A0000000000000000000000000000000000099 +:10B7B0000000000000000000000000000000000089 +:10B7C0000000000000000000000000000000000079 +:10B7D0000000000000000000000000000000000069 +:10B7E0000000000000000000000000000000000059 +:10B7F0000000000000000000000000000000000049 +:10B800000000000000000000000000000000000038 +:10B810000000000000000000000000000000000028 +:10B820000000000000000000000000000000000018 +:10B830000000000000000000000000000000000008 +:10B8400000000000000000000000000000000000F8 +:10B8500000000000000000000000000000000000E8 +:10B8600000000000000000000000000000000000D8 +:10B8700000000000000000000000000000000000C8 +:10B8800000000000000000000000000000000000B8 +:10B8900000000000000000000000000000000000A8 +:10B8A0000000000000000000000000000000000098 +:10B8B0000000000000000000000000000000000088 +:10B8C0000000000000000000000000000000000078 +:10B8D0000000000000000000000000000000000068 +:10B8E0000000000000000000000000000000000058 +:10B8F0000000000000000000000000000000000048 +:10B900000000000000000000000000000000000037 +:10B910000000000000000000000000000000000027 +:10B920000000000000000000000000000000000017 +:10B930000000000000000000000000000000000007 +:10B9400000000000000000000000000000000000F7 +:10B9500000000000000000000000000000000000E7 +:10B9600000000000000000000000000000000000D7 +:10B9700000000000000000000000000000000000C7 +:10B9800000000000000000000000000000000000B7 +:10B9900000000000000000000000000000000000A7 +:10B9A0000000000000000000000000000000000097 +:10B9B0000000000000000000000000000000000087 +:10B9C0000000000000000000000000000000000077 +:10B9D0000000000000000000000000000000000067 +:10B9E0000000000000000000000000000000000057 +:10B9F0000000000000000000000000000000000047 +:10BA00000000000000000000000000000000000036 +:10BA10000000000000000000000000000000000026 +:10BA20000000000000000000000000000000000016 +:10BA30000000000000000000000000000000000006 +:10BA400000000000000000000000000000000000F6 +:10BA500000000000000000000000000000000000E6 +:10BA600000000000000000000000000000000000D6 +:10BA700000000000000000000000000000000000C6 +:10BA800000000000000000000000000000000000B6 +:10BA900000000000000000000000000000000000A6 +:10BAA0000000000000000000000000000000000096 +:10BAB0000000000000000000000000000000000086 +:10BAC0000000000000000000000000000000000076 +:10BAD0000000000000000000000000000000000066 +:10BAE0000000000000000000000000000000000056 +:10BAF0000000000000000000000000000000000046 +:10BB00000000000000000000000000000000000035 +:10BB10000000000000000000000000000000000025 +:10BB20000000000000000000000000000000000015 +:10BB30000000000000000000000000000000000005 +:10BB400000000000000000000000000000000000F5 +:10BB500000000000000000000000000000000000E5 +:10BB600000000000000000000000000000000000D5 +:10BB700000000000000000000000000000000000C5 +:10BB800000000000000000000000000000000000B5 +:10BB900000000000000000000000000000000000A5 +:10BBA0000000000000000000000000000000000095 +:10BBB0000000000000000000000000000000000085 +:10BBC0000000000000000000000000000000000075 +:10BBD0000000000000000000000000000000000065 +:10BBE0000000000000000000000000000000000055 +:10BBF0000000000000000000000000000000000045 +:10BC00000000000000000000000000000000000034 +:10BC10000000000000000000000000000000000024 +:10BC20000000000000000000000000000000000014 +:10BC30000000000000000000000000000000000004 +:10BC400000000000000000000000000000000000F4 +:10BC500000000000000000000000000000000000E4 +:10BC600000000000000000000000000000000000D4 +:10BC700000000000000000000000000000000000C4 +:10BC800000000000000000000000000000000000B4 +:10BC900000000000000000000000000000000000A4 +:10BCA0000000000000000000000000000000000094 +:10BCB0000000000000000000000000000000000084 +:10BCC0000000000000000000000000000000000074 +:10BCD0000000000000000000000000000000000064 +:10BCE0000000000000000000000000000000000054 +:10BCF0000000000000000000000000000000000044 +:10BD00000000000000000000000000000000000033 +:10BD10000000000000000000000000000000000023 +:10BD20000000000000000000000000000000000013 +:10BD30000000000000000000000000000000000003 +:10BD400000000000000000000000000000000000F3 +:10BD500000000000000000000000000000000000E3 +:10BD600000000000000000000000000000000000D3 +:10BD700000000000000000000000000000000000C3 +:10BD800000000000000000000000000000000000B3 +:10BD900000000000000000000000000000000000A3 +:10BDA0000000000000000000000000000000000093 +:10BDB0000000000000000000000000000000000083 +:10BDC0000000000000000000000000000000000073 +:10BDD0000000000000000000000000000000000063 +:10BDE0000000000000000000000000000000000053 +:10BDF0000000000000000000000000000000000043 +:10BE00000000000000000000000000000000000032 +:10BE10000000000000000000000000000000000022 +:10BE20000000000000000000000000000000000012 +:10BE30000000000000000000000000000000000002 +:10BE400000000000000000000000000000000000F2 +:10BE500000000000000000000000000000000000E2 +:10BE600000000000000000000000000000000000D2 +:10BE700000000000000000000000000000000000C2 +:10BE800000000000000000000000000000000000B2 +:10BE900000000000000000000000000000000000A2 +:10BEA0000000000000000000000000000000000092 +:10BEB0000000000000000000000000000000000082 +:10BEC0000000000000000000000000000000000072 +:10BED0000000000000000000000000000000000062 +:10BEE0000000000000000000000000000000000052 +:10BEF0000000000000000000000000000000000042 +:10BF00000000000000000000000000000000000031 +:10BF10000000000000000000000000000000000021 +:10BF20000000000000000000000000000000000011 +:10BF30000000000000000000000000000000000001 +:10BF400000000000000000000000000000000000F1 +:10BF500000000000000000000000000000000000E1 +:10BF600000000000000000000000000000000000D1 +:10BF700000000000000000000000000000000000C1 +:10BF800000000000000000000000000000000000B1 +:10BF900000000000000000000000000000000000A1 +:10BFA0000000000000000000000000000000000091 +:10BFB0000000000000000000000000000000000081 +:10BFC0000000000000000000000000000000000071 +:10BFD0000000000000000000000000000000000061 +:10BFE0000000000000000000000000000000000051 +:10BFF0000000000000000000000000000000000041 +:10C000000000000000000000000000000000000030 +:10C010000000000000000000000000000000000020 +:10C020000000000000000000000000000000000010 +:10C030000000000000000000000000000000000000 +:10C0400000000000000000000000000000000000F0 +:10C0500000000000000000000000000000000000E0 +:10C0600000000000000000000000000000000000D0 +:10C0700000000000000000000000000000000000C0 +:10C0800000000000000000000000000000000000B0 +:10C0900000000000000000000000000000000000A0 +:10C0A0000000000000000000000000000000000090 +:10C0B0000000000000000000000000000000000080 +:10C0C0000000000000000000000000000000000070 +:10C0D0000000000000000000000000000000000060 +:10C0E0000000000000000000000000000000000050 +:10C0F0000000000000000000000000000000000040 +:10C10000000000000000000000000000000000002F +:10C11000000000000000000000000000000000001F +:10C12000000000000000000000000000000000000F +:10C1300000000000000000000000000000000000FF +:10C1400000000000000000000000000000000000EF +:10C1500000000000000000000000000000000000DF +:10C1600000000000000000000000000000000000CF +:10C1700000000000000000000000000000000000BF +:10C1800000000000000000000000000000000000AF +:10C19000000000000000000000000000000000009F +:10C1A000000000000000000000000000000000008F +:10C1B000000000000000000000000000000000007F +:10C1C000000000000000000000000000000000006F +:10C1D000000000000000000000000000000000005F +:10C1E000000000000000000000000000000000004F +:10C1F000000000000000000000000000000000003F +:10C20000000000000000000000000000000000002E +:10C21000000000000000000000000000000000001E +:10C22000000000000000000000000000000000000E +:10C2300000000000000000000000000000000000FE +:10C2400000000000000000000000000000000000EE +:10C2500000000000000000000000000000000000DE +:10C2600000000000000000000000000000000000CE +:10C2700000000000000000000000000000000000BE +:10C2800000000000000000000000000000000000AE +:10C29000000000000000000000000000000000009E +:10C2A000000000000000000000000000000000008E +:10C2B000000000000000000000000000000000007E +:10C2C000000000000000000000000000000000006E +:10C2D000000000000000000000000000000000005E +:10C2E000000000000000000000000000000000004E +:10C2F000000000000000000000000000000000003E +:10C30000000000000000000000000000000000002D +:10C31000000000000000000000000000000000001D +:10C32000000000000000000000000000000000000D +:10C3300000000000000000000000000000000000FD +:10C3400000000000000000000000000000000000ED +:10C3500000000000000000000000000000000000DD +:10C3600000000000000000000000000000000000CD +:10C3700000000000000000000000000000000000BD +:10C3800000000000000000000000000000000000AD +:10C39000000000000000000000000000000000009D +:10C3A000000000000000000000000000000000008D +:10C3B000000000000000000000000000000000007D +:10C3C000000000000000000000000000000000006D +:10C3D000000000000000000000000000000000005D +:10C3E000000000000000000000000000000000004D +:10C3F000000000000000000000000000000000003D +:10C40000000000000000000000000000000000002C +:10C41000000000000000000000000000000000001C +:10C42000000000000000000000000000000000000C +:10C4300000000000000000000000000000000000FC +:10C4400000000000000000000000000000000000EC +:10C4500000000000000000000000000000000000DC +:10C4600000000000000000000000000000000000CC +:10C4700000000000000000000000000000000000BC +:10C4800000000000000000000000000000000000AC +:10C49000000000000000000000000000000000009C +:10C4A000000000000000000000000000000000008C +:10C4B000000000000000000000000000000000007C +:10C4C000000000000000000000000000000000006C +:10C4D000000000000000000000000000000000005C +:10C4E000000000000000000000000000000000004C +:10C4F000000000000000000000000000000000003C +:10C50000000000000000000000000000000000002B +:10C51000000000000000000000000000000000001B +:10C52000000000000000000000000000000000000B +:10C5300000000000000000000000000000000000FB +:10C5400000000000000000000000000000000000EB +:10C5500000000000000000000000000000000000DB +:10C5600000000000000000000000000000000000CB +:10C5700000000000000000000000000000000000BB +:10C5800000000000000000000000000000000000AB +:10C59000000000000000000000000000000000009B +:10C5A000000000000000000000000000000000008B +:10C5B000000000000000000000000000000000007B +:10C5C000000000000000000000000000000000006B +:10C5D000000000000000000000000000000000005B +:10C5E000000000000000000000000000000000004B +:10C5F000000000000000000000000000000000003B +:10C60000000000000000000000000000000000002A +:10C61000000000000000000000000000000000001A +:10C62000000000000000000000000000000000000A +:10C6300000000000000000000000000000000000FA +:10C6400000000000000000000000000000000000EA +:10C6500000000000000000000000000000000000DA +:10C6600000000000000000000000000000000000CA +:10C6700000000000000000000000000000000000BA +:10C6800000000000000000000000000000000000AA +:10C69000000000000000000000000000000000009A +:10C6A000000000000000000000000000000000008A +:10C6B000000000000000000000000000000000007A +:10C6C000000000000000000000000000000000006A +:10C6D000000000000000000000000000000000005A +:10C6E000000000000000000000000000000000004A +:10C6F000000000000000000000000000000000003A +:10C700000000000000000000000000000000000029 +:10C710000000000000000000000000000000000019 +:10C720000000000000000000000000000000000009 +:10C7300000000000000000000000000000000000F9 +:10C7400000000000000000000000000000000000E9 +:10C7500000000000000000000000000000000000D9 +:10C7600000000000000000000000000000000000C9 +:10C7700000000000000000000000000000000000B9 +:10C7800000000000000000000000000000000000A9 +:10C790000000000000000000000000000000000099 +:10C7A0000000000000000000000000000000000089 +:10C7B0000000000000000000000000000000000079 +:10C7C0000000000000000000000000000000000069 +:10C7D0000000000000000000000000000000000059 +:10C7E0000000000000000000000000000000000049 +:10C7F0000000000000000000000000000000000039 +:10C800000000000000000000000000000000000028 +:10C810000000000000000000000000000000000018 +:10C820000000000000000000000000000000000008 +:10C8300000000000000000000000000000000000F8 +:10C8400000000000000000000000000000000000E8 +:10C8500000000000000000000000000000000000D8 +:10C8600000000000000000000000000000000000C8 +:10C8700000000000000000000000000000000000B8 +:10C8800000000000000000000000000000000000A8 +:10C890000000000000000000000000000000000098 +:10C8A0000000000000000000000000000000000088 +:10C8B0000000000000000000000000000000000078 +:10C8C0000000000000000000000000000000000068 +:10C8D0000000000000000000000000000000000058 +:10C8E0000000000000000000000000000000000048 +:10C8F0000000000000000000000000000000000038 +:10C900000000000000000000000000000000000027 +:10C910000000000000000000000000000000000017 +:10C920000000000000000000000000000000000007 +:10C9300000000000000000000000000000000000F7 +:10C9400000000000000000000000000000000000E7 +:10C9500000000000000000000000000000000000D7 +:10C9600000000000000000000000000000000000C7 +:10C9700000000000000000000000000000000000B7 +:10C9800000000000000000000000000000000000A7 +:10C990000000000000000000000000000000000097 +:10C9A0000000000000000000000000000000000087 +:10C9B0000000000000000000000000000000000077 +:10C9C0000000000000000000000000000000000067 +:10C9D0000000000000000000000000000000000057 +:10C9E0000000000000000000000000000000000047 +:10C9F0000000000000000000000000000000000037 +:10CA00000000000000000000000000000000000026 +:10CA10000000000000000000000000000000000016 +:10CA20000000000000000000000000000000000006 +:10CA300000000000000000000000000000000000F6 +:10CA400000000000000000000000000000000000E6 +:10CA500000000000000000000000000000000000D6 +:10CA600000000000000000000000000000000000C6 +:10CA700000000000000000000000000000000000B6 +:10CA800000000000000000000000000000000000A6 +:10CA90000000000000000000000000000000000096 +:10CAA0000000000000000000000000000000000086 +:10CAB0000000000000000000000000000000000076 +:10CAC0000000000000000000000000000000000066 +:10CAD0000000000000000000000000000000000056 +:10CAE0000000000000000000000000000000000046 +:10CAF0000000000000000000000000000000000036 +:10CB00000000000000000000000000000000000025 +:10CB10000000000000000000000000000000000015 +:10CB20000000000000000000000000000000000005 +:10CB300000000000000000000000000000000000F5 +:10CB400000000000000000000000000000000000E5 +:10CB500000000000000000000000000000000000D5 +:10CB600000000000000000000000000000000000C5 +:10CB700000000000000000000000000000000000B5 +:10CB800000000000000000000000000000000000A5 +:10CB90000000000000000000000000000000000095 +:10CBA0000000000000000000000000000000000085 +:10CBB0000000000000000000000000000000000075 +:10CBC0000000000000000000000000000000000065 +:10CBD0000000000000000000000000000000000055 +:10CBE0000000000000000000000000000000000045 +:10CBF0000000000000000000000000000000000035 +:10CC00000000000000000000000000000000000024 +:10CC10000000000000000000000000000000000014 +:10CC20000000000000000000000000000000000004 +:10CC300000000000000000000000000000000000F4 +:10CC400000000000000000000000000000000000E4 +:10CC500000000000000000000000000000000000D4 +:10CC600000000000000000000000000000000000C4 +:10CC700000000000000000000000000000000000B4 +:10CC800000000000000000000000000000000000A4 +:10CC90000000000000000000000000000000000094 +:10CCA0000000000000000000000000000000000084 +:10CCB0000000000000000000000000000000000074 +:10CCC0000000000000000000000000000000000064 +:10CCD0000000000000000000000000000000000054 +:10CCE0000000000000000000000000000000000044 +:10CCF0000000000000000000000000000000000034 +:10CD00000000000000000000000000000000000023 +:10CD10000000000000000000000000000000000013 +:10CD20000000000000000000000000000000000003 +:10CD300000000000000000000000000000000000F3 +:10CD400000000000000000000000000000000000E3 +:10CD500000000000000000000000000000000000D3 +:10CD600000000000000000000000000000000000C3 +:10CD700000000000000000000000000000000000B3 +:10CD800000000000000000000000000000000000A3 +:10CD90000000000000000000000000000000000093 +:10CDA0000000000000000000000000000000000083 +:10CDB0000000000000000000000000000000000073 +:10CDC0000000000000000000000000000000000063 +:10CDD0000000000000000000000000000000000053 +:10CDE0000000000000000000000000000000000043 +:10CDF0000000000000000000000000000000000033 +:10CE00000000000000000000000000000000000022 +:10CE10000000000000000000000000000000000012 +:10CE20000000000000000000000000000000000002 +:10CE300000000000000000000000000000000000F2 +:10CE400000000000000000000000000000000000E2 +:10CE500000000000000000000000000000000000D2 +:10CE600000000000000000000000000000000000C2 +:10CE700000000000000000000000000000000000B2 +:10CE800000000000000000000000000000000000A2 +:10CE90000000000000000000000000000000000092 +:10CEA0000000000000000000000000000000000082 +:10CEB0000000000000000000000000000000000072 +:10CEC0000000000000000000000000000000000062 +:10CED0000000000000000000000000000000000052 +:10CEE0000000000000000000000000000000000042 +:10CEF0000000000000000000000000000000000032 +:10CF00000000000000000000000000000000000021 +:10CF10000000000000000000000000000000000011 +:10CF20000000000000000000000000000000000001 +:10CF300000000000000000000000000000000000F1 +:10CF400000000000000000000000000000000000E1 +:10CF500000000000000000000000000000000000D1 +:10CF600000000000000000000000000000000000C1 +:10CF700000000000000000000000000000000000B1 +:10CF800000000000000000000000000000000000A1 +:10CF90000000000000000000000000000000000091 +:10CFA0000000000000000000000000000000000081 +:10CFB0000000000000000000000000000000000071 +:10CFC0000000000000000000000000000000000061 +:10CFD0000000000000000000000000000000000051 +:10CFE0000000000000000000000000000000000041 +:10CFF0000000000000000000000000000000000031 +:10D000000000000000000000000000000000000020 +:10D010000000000000000000000000000000000010 +:10D020000000000000000000000000000000000000 +:10D0300000000000000000000000000000000000F0 +:10D0400000000000000000000000000000000000E0 +:10D0500000000000000000000000000000000000D0 +:10D0600000000000000000000000000000000000C0 +:10D0700000000000000000000000000000000000B0 +:10D0800000000000000000000000000000000000A0 +:10D090000000000000000000000000000000000090 +:10D0A0000000000000000000000000000000000080 +:10D0B0000000000000000000000000000000000070 +:10D0C0000000000000000000000000000000000060 +:10D0D0000000000000000000000000000000000050 +:10D0E0000000000000000000000000000000000040 +:10D0F0000000000000000000000000000000000030 +:10D10000000000000000000000000000000000001F +:10D11000000000000000000000000000000000000F +:10D1200000000000000000000000000000000000FF +:10D1300000000000000000000000000000000000EF +:10D1400000000000000000000000000000000000DF +:10D1500000000000000000000000000000000000CF +:10D1600000000000000000000000000000000000BF +:10D1700000000000000000000000000000000000AF +:10D18000000000000000000000000000000000009F +:10D19000000000000000000000000000000000008F +:10D1A000000000000000000000000000000000007F +:10D1B000000000000000000000000000000000006F +:10D1C000000000000000000000000000000000005F +:10D1D000000000000000000000000000000000004F +:10D1E000000000000000000000000000000000003F +:10D1F000000000000000000000000000000000002F +:10D20000000000000000000000000000000000001E +:10D21000000000000000000000000000000000000E +:10D2200000000000000000000000000000000000FE +:10D2300000000000000000000000000000000000EE +:10D2400000000000000000000000000000000000DE +:10D2500000000000000000000000000000000000CE +:10D2600000000000000000000000000000000000BE +:10D2700000000000000000000000000000000000AE +:10D28000000000000000000000000000000000009E +:10D29000000000000000000000000000000000008E +:10D2A000000000000000000000000000000000007E +:10D2B000000000000000000000000000000000006E +:10D2C000000000000000000000000000000000005E +:10D2D000000000000000000000000000000000004E +:10D2E000000000000000000000000000000000003E +:10D2F000000000000000000000000000000000002E +:10D30000000000000000000000000000000000001D +:10D31000000000000000000000000000000000000D +:10D3200000000000000000000000000000000000FD +:10D3300000000000000000000000000000000000ED +:10D3400000000000000000000000000000000000DD +:10D3500000000000000000000000000000000000CD +:10D3600000000000000000000000000000000000BD +:10D3700000000000000000000000000000000000AD +:10D38000000000000000000000000000000000009D +:10D39000000000000000000000000000000000008D +:10D3A000000000000000000000000000000000007D +:10D3B000000000000000000000000000000000006D +:10D3C000000000000000000000000000000000005D +:10D3D000000000000000000000000000000000004D +:10D3E000000000000000000000000000000000003D +:10D3F000000000000000000000000000000000002D +:10D40000000000000000000000000000000000001C +:10D41000000000000000000000000000000000000C +:10D4200000000000000000000000000000000000FC +:10D4300000000000000000000000000000000000EC +:10D4400000000000000000000000000000000000DC +:10D4500000000000000000000000000000000000CC +:10D4600000000000000000000000000000000000BC +:10D4700000000000000000000000000000000000AC +:10D48000000000000000000000000000000000009C +:10D49000000000000000000000000000000000008C +:10D4A000000000000000000000000000000000007C +:10D4B000000000000000000000000000000000006C +:10D4C000000000000000000000000000000000005C +:10D4D000000000000000000000000000000000004C +:10D4E000000000000000000000000000000000003C +:10D4F000000000000000000000000000000000002C +:10D50000000000000000000000000000000000001B +:10D51000000000000000000000000000000000000B +:10D5200000000000000000000000000000000000FB +:10D5300000000000000000000000000000000000EB +:10D5400000000000000000000000000000000000DB +:10D5500000000000000000000000000000000000CB +:10D5600000000000000000000000000000000000BB +:10D5700000000000000000000000000000000000AB +:10D58000000000000000000000000000000000009B +:10D59000000000000000008000000000000000000B +:10D5A000000000000000000000000000000000007B +:10D5B00000000000000000000000000A0000000061 +:10D5C0000000000000000000100000030000000048 +:10D5D0000000000D0000000D3C02080024427340D2 +:10D5E0003C030800246377CCAC4000000043202BB0 +:10D5F0001480FFFD244200043C1D080037BD7FFC61 +:10D6000003A0F0213C100800261032103C1C08003A +:10D61000279C73400E0010FE000000000000000D6B +:10D6200030A5FFFF30C600FF274301808F4201B8BD +:10D630000440FFFE24020002AC640000A465000860 +:10D64000A066000AA062000B3C021000AC67001844 +:10D6500003E00008AF4201B83C0360008C624FF861 +:10D660000440FFFE3C020200AC644FC0AC624FC4F9 +:10D670003C02100003E00008AC624FF89482000CFA +:10D680002486001400A0382100021302000210803A +:10D690000082402100C8102B1040005700000000FD +:10D6A00090C300002C6200095040005190C200015C +:10D6B000000310803C030800246372F00043102133 +:10D6C0008C420000004000080000000090C30001F0 +:10D6D0002402000A1462003A000000000106102330 +:10D6E0002C42000A1440003624C600028CE20000DE +:10D6F00034420100ACE2000090C2000090C300017F +:10D7000090C4000290C5000300031C000002160034 +:10D710000043102500042200004410250045102578 +:10D7200024C60004ACE2000490C2000090C30001D3 +:10D7300090C4000290C500030002160000031C0004 +:10D740000043102500042200004410250045102548 +:10D7500024C600040A000CB8ACE2000890C3000123 +:10D76000240200041462001624C6000290C20000C5 +:10D7700090C400018CE30000000212000044102558 +:10D780003463000424C60002ACE2000C0A000CB8AA +:10D79000ACE3000090C300012402000314620008FF +:10D7A00024C600028CE2000090C3000024C60001E1 +:10D7B00034420008A0E300100A000CB8ACE20000FC +:10D7C00003E000082402000190C3000124020002CB +:10D7D0001062000224C40002010020210A000CB8DB +:10D7E000008030210A000CB824C6000190C200015C +:10D7F0000A000CB800C2302103E00008000010212C +:10D8000027BDFFE8AFBF0014AFB000100E00130239 +:10D8100000808021936200052403FFFE0200202186 +:10D82000004310248FBF00148FB00010A3620005C6 +:10D830000A00130B27BD001827BDFFE8AFB000108A +:10D84000AFBF00140E000F3C0080802193620000E7 +:10D8500024030050304200FF14430004240201005E +:10D86000AF4201800A000D3002002021AF4001804C +:10D87000020020218FBF00148FB000100A000FE7B4 +:10D8800027BD001827BDFF80AFBE0078AFB700747A +:10D89000AFB20060AFBF007CAFB60070AFB5006C38 +:10D8A000AFB40068AFB30064AFB1005CAFB0005874 +:10D8B0008F5001283C0208008C4231A02403FF80D5 +:10D8C0009365003F0202102100431024AF42002460 +:10D8D0003C0208008C4231A09364000530B200FF86 +:10D8E000020210213042007F034218210004202749 +:10D8F0003C02000A0062182130840001AF8300144A +:10D900000000F0210000B82114800053AFA00050A7 +:10D9100093430116934401128F450104306300FFC5 +:10D920003C020001308400FF00A2282403431021A0 +:10D9300003441821245640002467400014A001CD60 +:10D940002402000193620000304300FF2402002003 +:10D950001062000524020050106200060000000062 +:10D960000A000D74000000000000000D0A000D7D8B +:10D97000AFA000303C1E080027DE738C0A000D7D2E +:10D98000AFA000303C0208008C4200DC24420001C1 +:10D990003C010800AC2200DC0E00139F00000000D8 +:10D9A0000A000F318FBF007C8F4201043C0300202E +:10D9B00092D3000D004310240002202B00042140CC +:10D9C000AFA400308F4301043C02004000621824E1 +:10D9D000146000023485004000802821326200205B +:10D9E000AFA500301440000234A6008000A0302112 +:10D9F00010C0000BAFA6003093C500088F67004C25 +:10DA00000200202100052B0034A5008130A5F08103 +:10DA10000E000C9B30C600FF0A000F2E0000000015 +:10DA20009362003E304200401040000F2402000488 +:10DA300056420007240200120200202100E02821A3 +:10DA40000E0013F702C030210A000F318FBF007C97 +:10DA500016420005000000000E000D2100002021EC +:10DA60000A000F318FBF007C9743011A96C4000E45 +:10DA700093620035326500043075FFFF00442004D6 +:10DA8000AFA400548ED1000410A000158ED400085D +:10DA90009362003E3042004010400007000000004A +:10DAA0000E0013E0022020211040000D00000000B5 +:10DAB0000A000F2E000000008F6200440222102393 +:10DAC0000440016A000000008F6200480222102317 +:10DAD00004410166240400160A000E218FC20004CE +:10DAE0008F6200480222102304400008000000005A +:10DAF0003C0208008C423100244200013C01080035 +:10DB0000AC2231000A000F23000000008F620040A9 +:10DB100002221023184000128F8400143C020800D7 +:10DB20008C423100327300FC0000A8212442000125 +:10DB30003C010800AC2231008F6300409482011C3C +:10DB4000022318233042FFFF0043102A50400010E8 +:10DB50002402000C8F6200400A000DF20222102302 +:10DB60009483011C9762003C0043102B1040000678 +:10DB7000000000009482011C00551023A482011CA7 +:10DB80000A000DF72402000CA480011C2402000CE2 +:10DB9000AFA200308F620040005120231880000D9A +:10DBA00002A4102A1440012600000000149500066B +:10DBB00002A410233A620001304200011440012007 +:10DBC0000000000002A41023022488210A000E098C +:10DBD0003055FFFF00002021326200021040001A81 +:10DBE000326200109362003E30420040504000110B +:10DBF0008FC200040E00130202002021240200182C +:10DC0000A362003F936200052403FFFE020020216F +:10DC1000004310240E00130BA362000524040039F6 +:10DC2000000028210E0013C9240600180A000F3036 +:10DC300024020001240400170040F809000000003D +:10DC40000A000F302402000110400108000000000B +:10DC50008F63004C8F620054028210231C4001032A +:10DC600002831023044200010060A021AFA4001829 +:10DC7000AFB10010AFB50014934201208F65004092 +:10DC80009763003C304200FF034210210044102102 +:10DC90008FA400543063FFFF244240000083182B00 +:10DCA0008FA40030AFA20020AFA50028008320255C +:10DCB000AFA40030AFA50024AFA0002CAFB4003457 +:10DCC0009362003E30420008504000118FC20000B5 +:10DCD00002C0202127A500380E000CB2AFA00038EA +:10DCE0005440000B8FC200008FA200383042010068 +:10DCF000504000078FC200008FA3003C8F6200607D +:10DD00000062102304430001AF6300608FC2000073 +:10DD10000040F80927A400108FA200303042000212 +:10DD200054400001327300FE9362003E30420040D6 +:10DD3000104000378FA200248F6200541682001A10 +:10DD40003262000124020014124200102A4200151F +:10DD500010400006240200162402000C12420007A4 +:10DD6000326200010A000E7D000000001242000530 +:10DD7000326200010A000E7D000000000A000E78E9 +:10DD80002417000E0A000E78241700100A000E7CDB +:10DD900024170012936200232403FFBD00431024C4 +:10DDA000A362002332620001104000198FA20024F8 +:10DDB0002402000C1242000E2A42000D1040000600 +:10DDC0002402000E2402000A124200078FA200243F +:10DDD0000A000E9524420001124200088FA200247E +:10DDE0000A000E95244200010A000E932417000831 +:10DDF0002402000E16E20002241700162417001059 +:10DE00008FA2002424420001AFA200248FA200248C +:10DE10008FA300148F76004000431021AF620040B2 +:10DE20008F8200149442011C104000090000000081 +:10DE30008F6200488F6400409763003C00441023C9 +:10DE40003063FFFF0043102A104000088FA20054E7 +:10DE5000936400368F6300403402FFFC008210049C +:10DE600000621821AF6300488FA200548FA60030D3 +:10DE70000282902130C200081040000E0000000015 +:10DE80008F6200581642000430C600FF9742011A04 +:10DE90005040000134C6001093C500088FA700341D +:10DEA0000200202100052B0034A500800E000C9BF1 +:10DEB00030A5F0808F620040005610231840001BF0 +:10DEC0008FA200183C0208008C42319830420010AA +:10DED0001040000D24020001976200681440000AFF +:10DEE000240200018F8200149442011C1440000699 +:10DEF00024020001A76200689742007A244200646D +:10DF00000A000EE9A7620012A76200120E001302B7 +:10DF1000020020219362007D2403000102002021E1 +:10DF2000344200010A000EE7AFA300501840000A77 +:10DF3000000000000E001302020020219362007D09 +:10DF40002403000102002021AFA30050344200044A +:10DF50000E00130BA362007D9362003E304200402E +:10DF60001440000C326200011040000A0000000062 +:10DF70008F6300408FC20004240400182463000152 +:10DF80000040F809AF6300408FA200300A000F3054 +:10DF9000304200048F620058105200100000000050 +:10DFA0008F620018022210231C4000082404000184 +:10DFB0008F62001816220009000000008F62001C0A +:10DFC000028210230440000500000000AF720058D8 +:10DFD000AFA40050AF710018AF74001C12E0000B2A +:10DFE0008FA200500E00130202002021A377003FF1 +:10DFF0000E00130B0200202102E030212404003720 +:10E000000E0013C9000028218FA200501040000309 +:10E01000000000000E000CA90200202112A0000543 +:10E02000000018218FA2003030420004504000113F +:10E0300000601021240300010A000F30006010214D +:10E040000E001302020020219362007D02002021B5 +:10E05000344200040E00130BA362007D0E000CA9D5 +:10E06000020020210A000F3024020001AF400044CA +:10E07000240200018FBF007C8FBE00788FB7007430 +:10E080008FB600708FB5006C8FB400688FB30064DA +:10E090008FB200608FB1005C8FB0005803E00008C1 +:10E0A00027BD00808F4201B80440FFFE2402080013 +:10E0B000AF4201B803E00008000000003C02000885 +:10E0C00003421021944200483084FFFF2484001250 +:10E0D0003045FFFF10A0001700A4102B10400016C1 +:10E0E00024020003934201202403001AA343018B5E +:10E0F000304200FF2446FFFE8F82000000A6182B4E +:10E100003863000100021382004310241040000510 +:10E110008F84000434820001A746019403E00008C4 +:10E12000AF8200042402FFFE0082102403E00008F6 +:10E13000AF8200042402000303E00008A342018B25 +:10E1400027BDFFE0AFB10014AFB00010AFBF0018A3 +:10E1500030B0FFFF30D1FFFF8F4201B80440FFFE17 +:10E1600000000000AF440180AF4400200E000F42C9 +:10E17000020020218F8300008F840004A750019AA1 +:10E18000A750018EA74301908F8300083082800042 +:10E19000AF4301A8A75101881040000E8F820004F0 +:10E1A00093420116304200FC24420004005A102120 +:10E1B0008C4240003042FFFF144000068F82000472 +:10E1C0003C02FFFF34427FFF00821024AF82000434 +:10E1D0008F8200042403BFFF00431024A74201A63E +:10E1E0009743010C8F42010400031C003042FFFFE3 +:10E1F00000621825AF4301AC3C021000AF4201B8E9 +:10E200008FBF00188FB100148FB0001003E000081A +:10E2100027BD00208F470070934201128F830000BA +:10E2200027BDFFF0304200FF00022882306201006B +:10E23000000030211040004324A40003306240005D +:10E24000104000103062200000041080005A10219D +:10E250008C43400024A4000400041080AFA30000FD +:10E26000005A10218C424000AFA2000493420116D4 +:10E27000304200FC005A10218C4240000A000FC0BE +:10E28000AFA200081040002F0000302100041080D1 +:10E29000005A10218C43400024A400040004108084 +:10E2A000AFA30000005A10218C424000AFA000082C +:10E2B000AFA200048FA80008000030210000202138 +:10E2C000240A00083C0908002529010003A41021A4 +:10E2D000148A000300042A001100000A0000000054 +:10E2E00090420000248400012C83000C00A2102125 +:10E2F00000021080004910218C4200001460FFF3DE +:10E3000000C230263C0408008C8431048F42007027 +:10E310002C83002010600009004738233C030800CC +:10E32000246331080004108000431021248300017D +:10E33000AC4700003C010800AC233104AF86000864 +:10E340002406000100C0102103E0000827BD0010D2 +:10E350003C0208008C42003827BDFFD0AFB5002436 +:10E36000AFB40020AFB10014AFBF0028AFB3001CA2 +:10E37000AFB20018AFB00010000088213C150800B3 +:10E3800026B50038144000022454FFFF0000A021ED +:10E390009742010E8F8400003042FFFF308340001F +:10E3A0001060000A245200043C0200200082102465 +:10E3B00050400007308280008F8200042403BFFF9A +:10E3C000008318240A0010103442100030828000AC +:10E3D0001040000A3C020020008210241040000778 +:10E3E0008F8200043C03FFFF34637FFF0083182407 +:10E3F00034428000AF820004AF8300000E000F980B +:10E400000000000014400007000000009743011EB8 +:10E410009742011C3063FFFF0002140000621825C0 +:10E42000AF8300089742010C8F4340003045FFFF47 +:10E430003402FFFF14620003000000000A001028ED +:10E44000241100208F42400030420100544000015E +:10E45000241100108F8400003082100050400014FE +:10E4600036310001308200201440000B3C021000C5 +:10E47000008210245040000E363100013C030E0093 +:10E480003C020DFF008318243442FFFF0043102B91 +:10E4900050400007363100013C0208008C42002C3D +:10E4A000244200013C010800AC22002C363100055A +:10E4B0003C0608008CC6003454C000238F85000041 +:10E4C0008F820004304240005440001F8F850000BE +:10E4D0003C021F01008210243C0310005443001A28 +:10E4E0008F85000030A20200144000178F850000C5 +:10E4F0003250FFFF363100028F4201B80440FFFE68 +:10E5000000000000AF400180020020210E000F42F9 +:10E51000AF4000208F8300042402BFFFA750019A60 +:10E52000006218248F820000A750018EA751018835 +:10E53000A74301A6A74201903C021000AF4201B8D8 +:10E540000A0010F5000010213C02100000A2102467 +:10E550001040003A0000000010C0000F0000000052 +:10E5600030A201001040000C3C0302003C020F00EE +:10E5700000A2102410430008000000008F82000851 +:10E58000005410240055102190420004244200043D +:10E590000A00109F000221C00000000000051602C2 +:10E5A0003050000F3A0300022E4203EF38420001C0 +:10E5B0002C6300010062182414600073240200011F +:10E5C0003C0308008C6300D02E06000C386200016A +:10E5D0002C4200010046102414400015001021C0F8 +:10E5E0002602FFFC2C4200045440001100002021B0 +:10E5F000386200022C420001004610241040000343 +:10E60000000512420A00109F000020210010182B64 +:10E610000043102450400006001021C000002021BB +:10E620003245FFFF0E000F633226FFFB001021C0B2 +:10E630003245FFFF0A0010F2362600028F424000EA +:10E640003C0308008C630024304201001040004667 +:10E6500030620001322200043070000D14400002CC +:10E660002413000424130002000512C238420001E2 +:10E670002E4303EF304200013863000100431025B0 +:10E68000104000033231FFFB2402FFFB0202802412 +:10E6900010C000183202000130A201001040001525 +:10E6A000320200013C020F0000A210243C030200D1 +:10E6B0001043000F8F8200082403FFFE0203802412 +:10E6C00000541024005510219042000402333025DC +:10E6D0002442000412000002000221C03226FFFF83 +:10E6E0000E000F633245FFFF1200002700001021CB +:10E6F000320200011040000D320200042402000129 +:10E7000012020002023330253226FFFF00002021D2 +:10E710000E000F633245FFFF2402FFFE0202802439 +:10E7200012000019000010213202000410400016EF +:10E7300024020001240200041202000202333025E8 +:10E740003226FFFF3245FFFF0E000F632404010055 +:10E750002402FFFB020280241200000B00001021A3 +:10E760000A0010F5240200011040000700001021EB +:10E770003245FFFF36260002000020210E000F6305 +:10E7800000000000000010218FBF00288FB500247A +:10E790008FB400208FB3001C8FB200188FB100140B +:10E7A0008FB0001003E0000827BD003027BDFFD068 +:10E7B000AFB000103C04600CAFBF002CAFB6002817 +:10E7C000AFB50024AFB40020AFB3001CAFB2001847 +:10E7D000AFB100148C8250002403FF7F3C1A8000EC +:10E7E000004310243442380CAC8250002402000351 +:10E7F0003C106000AF4200088E0208083C1B8008F5 +:10E800003C010800AC2000203042FFF038420010EC +:10E810002C4200010E001B8DAF8200183C04FFFF4C +:10E820003C020400348308063442000CAE0219484E +:10E83000AE03194C3C0560168E0219808CA30000B3 +:10E840003442020000641824AE0219803C02535383 +:10E850001462000334A47C008CA200040050202128 +:10E860008C82007C8C830078AF820010AF83000C18 +:10E870008F55000032A200031040FFFD32A20001BC +:10E880001040013D32A200028F420128AF42002019 +:10E890008F4201048F430100AF8200000E000F3C45 +:10E8A000AF8300043C0208008C4200C01040000806 +:10E8B0008F8400003C0208008C4200C42442000106 +:10E8C0003C010800AC2200C40A00126900000000EC +:10E8D0003C020010008210241440010C8F830004BD +:10E8E0003C0208008C4200203C0308008C63003886 +:10E8F00000008821244200013C010800AC220020D5 +:10E900003C16080026D60038146000022474FFFF6D +:10E910000000A0219742010E308340003042FFFFEB +:10E920001060000A245200043C02002000821024DF +:10E9300050400007308280008F8200042403BFFF14 +:10E94000008318240A0011703442100030828000C5 +:10E950001040000A3C0200200082102410400007F2 +:10E960008F8200043C03FFFF34637FFF0083182481 +:10E9700034428000AF820004AF8300000E000F9885 +:10E980000000000014400007000000009743011E33 +:10E990009742011C3063FFFF00021400006218253B +:10E9A000AF8300089742010C8F4340003045FFFFC2 +:10E9B0003402FFFF14620003000000000A00118807 +:10E9C000241100208F4240003042010054400001D9 +:10E9D000241100108F840000308210005040001479 +:10E9E00036310001308200201440000B3C02100040 +:10E9F000008210245040000E363100013C030E000E +:10EA00003C020DFF008318243442FFFF0043102B0B +:10EA100050400007363100013C0208008C42002CB7 +:10EA2000244200013C010800AC22002C36310005D4 +:10EA30003C0608008CC6003454C000238F850000BB +:10EA40008F820004304240005440001F8F85000038 +:10EA50003C021F01008210243C0310005443001AA2 +:10EA60008F85000030A20200144000178F8500003F +:10EA70003250FFFF363100028F4201B80440FFFEE2 +:10EA800000000000AF400180020020210E000F4274 +:10EA9000AF4000208F8300042402BFFFA750019ADB +:10EAA000006218248F820000A750018EA7510188B0 +:10EAB000A74301A6A74201903C021000AF4201B853 +:10EAC0000A001267000010213C02100000A210246E +:10EAD0001040003A0000000010C0000F00000000CD +:10EAE00030A201001040000C3C0302003C020F0069 +:10EAF00000A2102410430008000000008F820008CC +:10EB000000541024005610219042000424420004B6 +:10EB10000A0011FF000221C00000000000051602DB +:10EB20003050000F3A0300022E4203EF384200013A +:10EB30002C63000100621824146000852402000187 +:10EB40003C0308008C6300D02E06000C38620001E4 +:10EB50002C4200010046102414400015001021C072 +:10EB60002602FFFC2C42000454400011000020212A +:10EB7000386200022C42000100461024504000037D +:10EB8000000512420A0011FF000020210010182B7E +:10EB90000043102450400006001021C00000202136 +:10EBA0003245FFFF0E000F633226FFFB001021C02D +:10EBB0003245FFFF0A001252362600028F42400003 +:10EBC0003C0308008C6300243042010010400046E2 +:10EBD00030620001322200043070000D1440000247 +:10EBE0002413000424130002000512C2384200015D +:10EBF0002E4303EF3042000138630001004310252B +:10EC0000104000033231FFFB2402FFFB020280248C +:10EC100010C000183202000130A20100104000159F +:10EC2000320200013C020F0000A210243C0302004B +:10EC30001043000F8F8200082403FFFE020380248C +:10EC40000054102400561021904200040233302555 +:10EC50002442000412000002000221C03226FFFFFD +:10EC60000E000F633245FFFF120000390000102133 +:10EC7000320200011040000D3202000424020001A3 +:10EC800012020002023330253226FFFF000020214D +:10EC90000E000F633245FFFF2402FFFE02028024B4 +:10ECA0001200002B00001021320200041040002846 +:10ECB0002402000124020004120200020233302563 +:10ECC0003226FFFF3245FFFF0E000F6324040100D0 +:10ECD0002402FFFB020280241200001D000010210C +:10ECE0000A001267240200015040001900001021A0 +:10ECF0003245FFFF36260002000020210E000F6380 +:10ED0000000000000A001267000010212402BFFF6B +:10ED1000006210241040000800000000240287FF59 +:10ED200000621024144000083C020060008210249D +:10ED300010400005000000000E000D34000000002F +:10ED40000A001267000000000E0012C70000000059 +:10ED5000104000063C0240008F4301243C0260202A +:10ED6000AC430014000000003C024000AF420138F8 +:10ED70000000000032A200021040FEBD00000000B2 +:10ED80008F4201403C044000AF4200208F430148C5 +:10ED90003C02700000621824106400420000000071 +:10EDA0000083102B144000063C0260003C0220004F +:10EDB000106200073C0240000A0012C3000000007D +:10EDC0001062003C3C0240000A0012C30000000038 +:10EDD0008F4501408F4601448F42014800021402D2 +:10EDE000304300FF240200041462000A274401801B +:10EDF0008F4201B80440FFFE2402001CAC850000D5 +:10EE0000A082000B3C021000AF4201B80A0012C3FE +:10EE10003C0240002402000914620012000616029F +:10EE2000000229C0AF4500208F4201B80440FFFE18 +:10EE30002402000124030003AF450180A343018B9A +:10EE4000A740018EA740019AA7400190AF4001A8BA +:10EE5000A7420188A74201A6AF4001AC3C021000C6 +:10EE6000AF4201B88F4201B80440FFFE000000002D +:10EE7000AC8500008F42014800021402A482000801 +:10EE800024020002A082000B8F420148A4820010DD +:10EE90003C021000AC860024AF4201B80A0012C345 +:10EEA0003C0240000E001310000000000A0012C3D4 +:10EEB0003C0240000E001BC2000000003C0240006B +:10EEC000AF420178000000000A00112F000000008E +:10EED0008F4201003042003E144000112402000124 +:10EEE000AF4000488F420100304207C0104000058B +:10EEF00000000000AF40004CAF40005003E00008AD +:10EF000024020001AF400054AF4000408F42010096 +:10EF10003042380054400001AF4000442402000158 +:10EF200003E00008000000008F4201B80440FFFE2B +:10EF300024020001AF440180AF400184A74501884D +:10EF4000A342018A24020002A342018B9742014A94 +:10EF500014C00004A7420190AF4001A40A0012EFC0 +:10EF60003C0210008F420144AF4201A43C02100059 +:10EF7000AF4001A803E00008AF4201B88F4201B8DA +:10EF80000440FFFE24020002AF440180AF4401842C +:10EF9000A7450188A342018AA342018B9742014AF7 +:10EFA000A7420190AF4001A48F420144AF4201A8A3 +:10EFB0003C02100003E00008AF4201B83C029000A0 +:10EFC0003442000100822025AF4400208F420020FF +:10EFD0000440FFFE0000000003E000080000000005 +:10EFE0003C028000344200010082202503E000083A +:10EFF000AF44002027BDFFE8AFBF0014AFB0001042 +:10F000008F50014093430149934201489344014882 +:10F01000306300FF304200FF00021200006228252A +:10F020002402001910620076308400802862001AE1 +:10F030001040001C24020020240200081062007707 +:10F04000286200091040000E2402000B2402000177 +:10F0500010620034286200025040000524020006BD +:10F0600050600034020020210A00139A00000000C2 +:10F0700010620030020020210A00139A00000000F4 +:10F080001062003B2862000C504000022402000E77 +:10F090002402000910620056020020210A00139A7F +:10F0A0000000000010620056286200211040000F8E +:10F0B000240200382402001C106200582862001D3F +:10F0C000104000062402001F2402001B1062004CA6 +:10F0D000000000000A00139A000000001062004ABD +:10F0E000020020210A00139A00000000106200456F +:10F0F0002862003910400007240200802462FFCB00 +:10F100002C42000210400045020020210A00139604 +:10F110000000302110620009000000000A00139A6C +:10F12000000000001480003D020020210A0013901E +:10F130008FBF00140A001396240600018F4201B805 +:10F140000440FFFE24020002A342018BA745018870 +:10F150009742014AA74201908F420144A74201927F +:10F160003C021000AF4201B80A00139C8FBF00148C +:10F170009742014A144000290000000093620005F4 +:10F180003042000414400025000000000E0013026D +:10F190000200202193620005020020213442000475 +:10F1A0000E00130BA36200059362000530420004B9 +:10F1B00014400002000000000000000D93620000F7 +:10F1C00024030020304200FF14430014000000001C +:10F1D0008F4201B80440FFFE24020005AF500180B9 +:10F1E000A342018B3C0210000A00139AAF4201B8FF +:10F1F0008FBF00148FB000100A0012F227BD001854 +:10F200000000000D02002021000030218FBF0014FB +:10F210008FB000100A0012DD27BD00180000000D9D +:10F220008FBF00148FB0001003E0000827BD001846 +:10F2300027BDFFE8AFBF00100E000F3C000000002C +:10F24000AF4001808FBF0010000020210A000FE7AF +:10F2500027BD00183084FFFF30A5FFFF00001821F4 +:10F260001080000700000000308200011040000202 +:10F2700000042042006518210A0013AB0005284055 +:10F2800003E000080060102110C0000624C6FFFF44 +:10F290008CA2000024A50004AC8200000A0013B573 +:10F2A0002484000403E000080000000010A000080F +:10F2B00024A3FFFFAC860000000000000000000057 +:10F2C0002402FFFF2463FFFF1462FFFA248400047A +:10F2D00003E0000800000000308300FF30A500FFBD +:10F2E00030C600FF274701808F4201B80440FFFE6F +:10F2F000000000008F42012834634000ACE20000AF +:10F3000024020001ACE00004A4E30008A0E2000A2B +:10F3100024020002A0E2000B3C021000A4E5001051 +:10F32000ACE00024ACE00028A4E6001203E00008F2 +:10F33000AF4201B827BDFFE8AFBF00109362003FA6 +:10F3400024030012304200FF1043000D00803021E2 +:10F350008F620044008210230440000A8FBF001017 +:10F360008F620048240400390000282100C21023C5 +:10F3700004410004240600120E0013C9000000001E +:10F380008FBF00102402000103E0000827BD001811 +:10F3900027BDFFC8AFB20030AFB1002CAFBF003403 +:10F3A000AFB0002890C5000D0080902130A400105F +:10F3B0001080000B00C088218CC300088F620054AD +:10F3C0001062000730A20005144000B524040001BB +:10F3D0000E000D21000020210A0014BB0040202156 +:10F3E00030A200051040000930A30012108000ACCC +:10F3F000240400018E2300088F620054146200A9C7 +:10F400008FBF00340A00142C240400382402001298 +:10F41000146200A3240400010220202127A500106B +:10F420000E000CB2AFA000101040001102402021CD +:10F430008E220008AF620084AF6000400E0013020D +:10F44000000000009362007D024020213442002031 +:10F450000E00130BA362007D0E000CA902402021B8 +:10F46000240400382405008D0A0014B82406001274 +:10F470009362003E304200081040000F8FA200103F +:10F4800030420100104000078FA300148F6200601B +:10F490000062102304430008AF6300600A001441B7 +:10F4A00000000000AF6000609362003E2403FFF79D +:10F4B00000431024A362003E9362003E30420008E5 +:10F4C000144000022406000300003021936200343F +:10F4D000936300378F640084304200FF306300FF85 +:10F4E00000661821000318800043282100A4202B67 +:10F4F0001080000B000000009763003C8F620084C6 +:10F500003063FFFF004510230062182B14600004D5 +:10F51000000000008F6200840A00145D0045802313 +:10F520009762003C3050FFFF8FA300103062000450 +:10F5300010400004000628808FA2001C0A001465F9 +:10F540000202102B2E02021850400003240202185F +:10F550000A00146E020510233063000410600003DB +:10F56000004510238FA2001C00451023004080217D +:10F570002C42008054400001241000800E00130231 +:10F580000240202124020001AF62000C9362003E81 +:10F59000001020403042007FA362003E8E22000413 +:10F5A00024420001AF620040A770003C8F6200500F +:10F5B0009623000E00431021AF6200588F62005066 +:10F5C00000441021AF62005C8E220004AF6200187C +:10F5D0008E220008AF62001C8FA20010304200088B +:10F5E0005440000A93A20020A360003693620036C4 +:10F5F0002403FFDFA36200359362003E0043102422 +:10F60000A362003E0A0014988E220008A36200350F +:10F610008E220008AF62004C8F6200248F6300408E +:10F6200000431021AF6200489362000024030050A1 +:10F63000304200FF144300122403FF803C02080004 +:10F640008C4231A00242102100431024AF42002816 +:10F650003C0208008C4231A08E2400083C03000CC0 +:10F66000024210213042007F03421021004310214A +:10F67000AC4400D88E230008AF820014AC4300DCF9 +:10F680000E00130B02402021240400380000282122 +:10F690002406000A0E0013C9000000002404000123 +:10F6A0008FBF00348FB200308FB1002C8FB0002894 +:10F6B0000080102103E0000827BD003827BDFFF8B7 +:10F6C00027420180AFA20000308A00FF8F4201B8BC +:10F6D0000440FFFE000000008F4601283C020800A5 +:10F6E0008C4231A02403FF80AF86004800C2102165 +:10F6F00000431024AF4200243C0208008C4231A099 +:10F700008FA900008FA8000000C210213042007FA6 +:10F71000034218213C02000A00621821946400D4BC +:10F720008FA700008FA5000024020002AF83001401 +:10F73000A0A2000B8FA30000354260003084FFFFC1 +:10F74000A4E200083C021000AD260000AD04000455 +:10F75000AC60002427BD0008AF4201B803E00008F8 +:10F76000240200018F88003C938200288F830014BC +:10F770003C07080024E7779800481023304200FF38 +:10F78000304900FC246500888F860040304A000321 +:10F790001120000900002021248200048CA3000015 +:10F7A000304400FF0089102AACE3000024A50004C7 +:10F7B0001440FFF924E70004114000090000202153 +:10F7C0002482000190A30000304400FF008A102B27 +:10F7D000A0E3000024A500011440FFF924E7000184 +:10F7E00030C20003144000048F85003C3102000346 +:10F7F0001040000D0000000010A0000900002021B2 +:10F800002482000190C30000304400FF0085102BCB +:10F81000A0E3000024C600011440FFF924E7000122 +:10F8200003E00008000000001100FFFD000020219F +:10F83000248200048CC30000304400FF0088102B99 +:10F84000ACE3000024C600041440FFF924E70004E0 +:10F8500003E00008000000008F83003C9382002832 +:10F8600030C600FF30A500FF00431023304300FFE7 +:10F870008F820014008038210043102114C0000240 +:10F88000244800880083382130E20003144000053A +:10F8900030A2000314400003306200031040000D4A +:10F8A0000000000010A000090000202124820001B7 +:10F8B00090E30000304400FF0085102BA1030000FE +:10F8C00024E700011440FFF92508000103E00008C7 +:10F8D0000000000010A0FFFD000020212482000491 +:10F8E0008CE30000304400FF0085102BAD030000C6 +:10F8F00024E700041440FFF92508000403E0000891 +:10F90000000000000080482130AAFFFF30C600FF41 +:10F9100030E7FFFF274801808F4201B80440FFFE17 +:10F920008F820048AD0200008F420124AD02000426 +:10F930008D220020A5070008A102000A240200165B +:10F94000A102000B934301208D2200088D240004A6 +:10F95000306300FF004310219783003A00441021D8 +:10F960008D250024004310233C0308008C6331A044 +:10F970008F840014A502000C246300E82402FFFF1A +:10F98000A50A000EA5030010A5060012AD0500187B +:10F99000AD020024948201142403FFF73042FFFFDC +:10F9A000AD0200288C820118AD02002C3C02100030 +:10F9B000AD000030AF4201B88D220020004310247A +:10F9C00003E00008AD2200208F82001430E7FFFF23 +:10F9D00000804821904200D330A5FFFF30C600FFD1 +:10F9E0000002110030420F0000E238252748018054 +:10F9F0008F4201B80440FFFE8F820048AD02000034 +:10FA00008F420124AD0200048D220020A5070008CA +:10FA1000A102000A24020017A102000B9343012057 +:10FA20008D2200088D240004306300FF0043102164 +:10FA30009783003A004410218F8400140043102360 +:10FA40003C0308008C6331A0A502000CA505000E44 +:10FA5000246300E8A5030010A5060012AD00001401 +:10FA60008D220024AD0200188C82005CAD02001CC7 +:10FA70008C820058AD0200202402FFFFAD0200245A +:10FA8000948200E63042FFFFAD02002894820060BD +:10FA9000948300BE30427FFF3063FFFF00021200FC +:10FAA00000431021AD02002C3C021000AD000030DC +:10FAB000AF4201B8948200BE2403FFF700A21021D8 +:10FAC000A48200BE8D2200200043102403E0000821 +:10FAD000AD220020274301808F4201B80440FFFE81 +:10FAE0008F8200249442001C3042FFFF000211C0AC +:10FAF000AC62000024020019A062000B3C0210005E +:10FB0000AC60003003E00008AF4201B88F87002CE2 +:10FB100030C300FF8F4201B80440FFFE8F820048CF +:10FB200034636000ACA2000093820044A0A20005F0 +:10FB30008CE20010A4A20006A4A300088C8200207E +:10FB40002403FFF7A0A2000A24020002A0A2000BD7 +:10FB50008CE20000ACA200108CE20004ACA2001405 +:10FB60008CE2001CACA200248CE20020ACA2002895 +:10FB70008CE2002CACA2002C8C820024ACA20018D9 +:10FB80003C021000AF4201B88C82002000431024D8 +:10FB900003E00008AC8200208F86001427BDFFE838 +:10FBA000AFBF0014AFB0001090C20063304200201D +:10FBB0001040000830A500FF8CC2007C2403FFDF4A +:10FBC00024420001ACC2007C90C2006300431024B8 +:10FBD000A0C2006310A000238F830014275001806F +:10FBE000020028210E0015D6240600828F82001400 +:10FBF000904200633042004050400019A38000440E +:10FC00008F83002C8F4201B80440FFFE8F82004892 +:10FC1000AE02000024026082A60200082402000254 +:10FC2000A202000B8C620008AE0200108C62000C75 +:10FC3000AE0200148C620014AE0200188C62001830 +:10FC4000AE0200248C620024AE0200288C620028E0 +:10FC5000AE02002C3C021000AF4201B8A380004469 +:10FC60008F8300148FBF00148FB000109062006368 +:10FC700027BD00183042007FA06200639782003ADF +:10FC80008F86003C8F850014938300280046102344 +:10FC9000A782003AA4A000E490A400638F820040F1 +:10FCA000AF83003C2403FFBF0046102100832024C3 +:10FCB000AF820040A0A400638F820014A04000BD6A +:10FCC0008F82001403E00008A44000BE8F8A001455 +:10FCD00027BDFFE0AFB10014AFB000108F88003C2B +:10FCE000AFBF00189389001C954200E430D100FF9B +:10FCF0000109182B0080802130AC00FF3047FFFF46 +:10FD00000000582114600003310600FF012030215B +:10FD1000010958239783003A0068102B1440003CD7 +:10FD20000000000014680007240200018E02002079 +:10FD30002403FFFB34E7800000431024AE020020C0 +:10FD40002402000134E70880158200053165FFFFB9 +:10FD50000E001554020020210A00169102002021F5 +:10FD60000E001585020020218F8400482743018062 +:10FD70008F4201B80440FFFE24020018AC6400006A +:10FD8000A062000B8F840014948200E6A46200102D +:10FD90003C021000AC600030AF4201B894820060B9 +:10FDA00024420001A4820060948200603C030800A9 +:10FDB0008C63318830427FFF5443000F02002021C2 +:10FDC000948200602403800000431024A482006019 +:10FDD0009082006090830060304200FF000211C2F8 +:10FDE00000021027000211C03063007F0062182556 +:10FDF000A083006002002021022028218FBF00186C +:10FE00008FB100148FB000100A0015F927BD002033 +:10FE1000914200632403FF8000431025A142006348 +:10FE20009782003A3048FFFF110000209383001CA6 +:10FE30008F840014004B1023304600FF948300E4AD +:10FE40002402EFFF0168282B00621824A48300E439 +:10FE500014A000038E020020010058210000302170 +:10FE60002403FFFB34E7800000431024AE0200208F +:10FE700024020001158200053165FFFF0E001554B4 +:10FE8000020020210A0016B99783003A0E0015855A +:10FE9000020020219783003A8F82003CA780003A1D +:10FEA00000431023AF82003C9383001C8F82001418 +:10FEB0008FBF00188FB100148FB0001027BD002035 +:10FEC00003E00008A04300BD938200442403000126 +:10FED00027BDFFE8004330042C420020AFB00010E3 +:10FEE000AFBF00142410FFFE10400005274501801D +:10FEF0003C0208008C4231900A0016D600461024BD +:10FF00003C0208008C423194004610241440000743 +:10FF1000240600848F8300142410FFFF9062006287 +:10FF20003042000F34420040A06200620E0015D63D +:10FF300000000000020010218FBF00148FB00010DD +:10FF400003E0000827BD00188F83002427BDFFE0D1 +:10FF5000AFB20018AFB10014AFB00010AFBF001CBB +:10FF60009062000D00A0902130D100FF3042007F50 +:10FF7000A062000D8F8500148E4300180080802140 +:10FF80008CA2007C146200052402000E90A2006383 +:10FF9000344200200A0016FFA0A200630E0016C51E +:10FFA000A38200442403FFFF104300472404FFFF03 +:10FFB00052200045000020218E4300003C0200102A +:10FFC00000621024504000043C020008020020217E +:10FFD0000A00170E24020015006210245040000988 +:10FFE0008E45000002002021240200140E0016C5D8 +:10FFF000A38200442403FFFF104300332404FFFFC7 +:020000021000EC +:100000008E4500003C02000200A2102410400016A1 +:100010003C0200048F8600248CC200148CC30010A4 +:100020008CC40014004310230044102B50400005E2 +:10003000020020218E43002C8CC2001010620003AD +:10004000020020210A00173F240200123C02000493 +:1000500000A210245040001C00002021020020219A +:100060000A00173F2402001300A2102410400006CB +:100070008F8300248C620010504000130000202168 +:100080000A001739020020218C6200105040000441 +:100090008E42002C020020210A00173F240200118A +:1000A00050400009000020210200202124020017F6 +:1000B0000E0016C5A38200442403FFFF1043000274 +:1000C0002404FFFF000020218FBF001C8FB2001806 +:1000D0008FB100148FB000100080102103E00008E1 +:1000E00027BD00208F83001427BDFFD8AFB40020A8 +:1000F000AFB3001CAFB20018AFB10014AFB0001026 +:10010000AFBF0024906200638F91002C2412FFFF88 +:100110003442004092250000A06200638E2200104D +:100120000080982130B0003F105200060360A021EB +:100130002402000D0E0016C5A38200441052005484 +:100140002404FFFF8F8300148E2200188C63007C30 +:1001500010430007026020212402000E0E0016C585 +:10016000A38200442403FFFF104300492404FFFF3F +:1001700024040020120400048F83001490620063A2 +:1001800034420020A06200638F85003410A000205C +:1001900000000000560400048F8200140260202139 +:1001A0000A0017902402000A9683000A9442006015 +:1001B0003042FFFF144300048F8200202404FFFD1F +:1001C0000A0017B7AF82003C3C0208008C42318C19 +:1001D0000045102B14400006026020210000282159 +:1001E0000E001646240600010A0017B70000202161 +:1001F0002402002D0E0016C5A38200442403FFFF35 +:10020000104300232404FFFF0A0017B70000202139 +:10021000160400058F8400148E2300142402FFFFAF +:100220005062001802602021948200602442000184 +:10023000A4820060948200603C0308008C633188D3 +:1002400030427FFF5443000F0260202194820060FF +:100250002403800000431024A48200609082006088 +:1002600090830060304200FF000211C2000210279C +:10027000000211C03063007F00621825A083006077 +:10028000026020210E0015F9240500010000202144 +:100290008FBF00248FB400208FB3001C8FB20018D2 +:1002A0008FB100148FB000100080102103E000080F +:1002B00027BD00288F83001427BDFFE8AFB00010D2 +:1002C000AFBF0014906200638F87002C00808021F4 +:1002D000344200408CE60010A06200633C0308003A +:1002E0008C6331B030C23FFF0043102B1040004EF2 +:1002F0008F8500302402FF8090A3000D004310245E +:10030000304200FF504000490200202100061382C5 +:10031000304800032402000255020044020020215C +:1003200094A2001C8F85001424030023A4A20114AE +:100330008CE60000000616023042003F1043001019 +:100340003C0300838CE300188CA2007C1062000642 +:100350002402000E0E0016C5A38200442403FFFFF2 +:10036000104300382404FFFF8F8300149062006361 +:1003700034420020A06200630A0017FC8F8300242F +:1003800000C31024144300078F83002490A200624E +:100390003042000F34420020A0A20062A38800383F +:1003A0008F8300249062000D3042007FA062000D18 +:1003B0008F83003410600018020020218F840030E9 +:1003C0008C8200100043102B1040000924020018FA +:1003D000020020210E0016C5A38200442403FFFF63 +:1003E000104300182404FFFF0A00182400002021F5 +:1003F0008C820010240500010200202100431023FC +:100400008F830024240600010E001646AC62001003 +:100410000A001824000020210E0015F9240500010F +:100420000A00182400002021020020212402000DCF +:100430008FBF00148FB0001027BD00180A0016C52A +:10044000A38200448FBF00148FB0001000801021E1 +:1004500003E0000827BD001827BDFFC8AFB2002089 +:10046000AFBF0034AFB60030AFB5002CAFB400283A +:10047000AFB30024AFB1001CAFB000188F46012805 +:100480003C0308008C6331A02402FF80AF86004843 +:1004900000C318213065007F03452821006218241D +:1004A0003C02000AAF43002400A2282190A200626F +:1004B00000809021AF850014304200FF000211023D +:1004C000A382003890A200BC304200021440000217 +:1004D00024030034240300308F820014A3830028F7 +:1004E000938300388C4200C0A3800044AF82003C5C +:1004F000240200041062031C8F84003C8E4400041C +:10050000508003198F84003C8E4200103083FFFF1F +:10051000A784003A106002FFAF8200408F8400146D +:100520002403FF809082006300621024304200FFA9 +:10053000144002CF9785003A9383003824020002CA +:1005400030B6FFFF14620005000088219382002866 +:100550002403FFFD0A001B19AF82003C8F82003C80 +:1005600002C2102B144002A18F8400400E0014EC34 +:1005700000000000938300283C040800248477983E +:10058000240200341462002EAF84002C3C0A0800C0 +:100590008D4A77C82402FFFFAFA2001000803821E7 +:1005A0002405002F3C09080025297398240800FF22 +:1005B0002406FFFF90E2000024A3FFFF00062202B2 +:1005C00000C21026304200FF0002108000491021B6 +:1005D0008C420000306500FF24E7000114A8FFF5FD +:1005E0000082302600061027AFA20014AFA2001030 +:1005F0000000282127A7001027A6001400C51023FB +:100600009044000324A2000100A71821304500FFF8 +:100610002CA200041440FFF9A06400008FA2001077 +:100620001142000724020005024020210E0016C5D9 +:10063000A38200442403FFFF104300642404FFFF4F +:100640003C0208009042779C104000098F82001401 +:10065000024020212402000C0E0016C5A382004493 +:100660002403FFFF104300592404FFFF8F8200146E +:10067000A380001C3C0308008C63779C8C440080A2 +:100680003C0200FF3442FFFF006218240083202B4D +:1006900010800008AF83003402402021240200199A +:1006A0000E0016C5A38200442403FFFF1043004739 +:1006B0002404FFFF8F87003C9782003A8F85003427 +:1006C000AF8700200047202310A0003BA784003AFA +:1006D0008F86001430A200030002102390C300BCD8 +:1006E0003050000300B0282100031882307300014D +:1006F0000013108000A228213C0308008C6331A065 +:100700008F8200483084FFFF0085202B004310219A +:1007100010800011244200888F84002C1082000E6B +:100720003C033F013C0208008C42779800431024B0 +:100730003C0325001443000630E500FF8C820000D6 +:10074000ACC200888C8200100A0018E9ACC2009884 +:100750000E001529000030219382001C8F850014A3 +:100760008F830040020238218F82003CA387001C47 +:1007700094A400E4006218218F82003434841000B5 +:10078000AF83004000503021A4A400E41260000EAA +:10079000AF86003C24E20004A382001C94A200E483 +:1007A00024C30004AF83003C34422000A4A200E430 +:1007B0000A001906000020218F820040AF80003C13 +:1007C00000471021AF820040000020212414FFFFC9 +:1007D000109402112403FFFF3C0808008D0877A83D +:1007E0003C0208008C4231B03C03080090637798CB +:1007F00031043FFF0082102B1040001B3067003F88 +:100800003C0208008C4231A88F83004800042180FC +:1008100000621821006418213062007F0342282101 +:100820003C02000C00A228213C020080344200015E +:100830003066007800C230252402FF800062102458 +:10084000AF42002830640007AF4208048F820014D2 +:100850000344202124840940AF460814AF850024B6 +:10086000AF840030AC4301189383003824020003A6 +:10087000146201CF240200012402002610E201D1FB +:1008800028E2002710400013240200322402002234 +:1008900010E201CC28E200231040000824020024CA +:1008A0002402002010E201B82402002110E20147D6 +:1008B000024020210A001AFB2402000B10E201C1B1 +:1008C0002402002510E20010024020210A001AFB39 +:1008D0002402000B10E201AE28E2003310400006B3 +:1008E0002402003F2402003110E2009A024020213D +:1008F0000A001AFB2402000B10E201A5024020218D +:100900000A001AFB2402000B8F90002C3C03080005 +:100910008C6331B08F8500308E0400100000A82158 +:100920008CB3001430823FFF0043102B8CB10020A9 +:100930005040018F0240202190A3000D2402FF802F +:1009400000431024304200FF504001890240202122 +:10095000000413823042000314400185024020212C +:1009600094A3001C8F8200148E040028A443011459 +:100970008CA20010026218231064000302402021A0 +:100980000A00197C2402001F8F82003400621021AB +:100990000262102B104000088F83002402402021A7 +:1009A000240200180E0016C5A382004410540174DE +:1009B0002404FFFF8F8300248F8400348C62001096 +:1009C0000224882100441023AC6200108F8200149E +:1009D000AC7100208C4200680051102B10400009BF +:1009E0008F830030024020212402001D0E0016C516 +:1009F000A38200442403FFFF104301612404FFFF8E +:100A00008F8300308E0200248C6300241043000783 +:100A1000024020212402001C0E0016C5A3820044BF +:100A20002403FFFF104301562404FFFF8F8400249A +:100A30008C82002424420001AC8200241233000482 +:100A40008F8200148C4200685622000E8E02000035 +:100A50008E0200003C030080004310241440000D6F +:100A60002402001A024020210E0016C5A382004471 +:100A70002403FFFF104301422404FFFF0A0019BAB8 +:100A80008E0200143C0300800043102450400003F9 +:100A90008E020014AC8000208E0200142411FFFF8F +:100AA0001051000E3C0308003C0208008C423190BB +:100AB000004310242403001B14400007A3830044B8 +:100AC0000E0016C5024020211051012D2404FFFF05 +:100AD0000A0019CB8E030000A38000448E0300009F +:100AE0003C02000100621024104000123C02008011 +:100AF0000062102414400008024020212402001A41 +:100B00000E0016C5A38200442403FFFF1043011CFE +:100B10002404FFFF02402021020028210E0016E5D8 +:100B2000240600012403FFFF104301152404FFFFE6 +:100B3000241500018F83002402A0302102402021CF +:100B40009462003624050001244200010A001ADFE5 +:100B5000A46200368F90002C3C0308008C6331B0F7 +:100B60008E13001032623FFF0043102B10400089AB +:100B70008F8400302402FF809083000D00431024F6 +:100B8000304200FF104000842402000D0013138245 +:100B900030420003240300011443007F2402000DAF +:100BA0009082000D30420008544000048F820034CF +:100BB000024020210A001A102402002450400004A0 +:100BC0008E03000C024020210A001A102402002784 +:100BD0008C82002054620006024020218E0300080F +:100BE0008C820024506200098E02001402402021F1 +:100BF000240200200E0016C5A38200441054007188 +:100C00002403FFFF0A001A458F8400242411FFFFEC +:100C1000145100048F860014024020210A001A405B +:100C2000240200258E0300188CC2007C1062000391 +:100C30002402000E0A001A40024020218E030024E4 +:100C40008C82002810620003240200210A001A404E +:100C5000024020218E0500288C82002C10A2000367 +:100C60002402001F0A001A40024020218E03002C9B +:100C700014600003240200230A001A4002402021CD +:100C80008CC200680043102B104000032402002691 +:100C90000A001A40024020218C82001400651821AD +:100CA0000043102B104000088F84002402402021B4 +:100CB000240200220E0016C5A382004410510041F8 +:100CC0002403FFFF8F8400242403FFF79082000D8C +:100CD00000431024A082000D8F8600143C030800FE +:100CE0008C6331AC8F82004894C400E08F8500246F +:100CF0000043102130847FFF000420400044102175 +:100D00003043007F034320213C03000E0083202159 +:100D10002403FF8000431024AF42002CA493000062 +:100D20008CA2002824420001ACA200288CA2002C36 +:100D30008E03002C00431021ACA2002C8E02002C4C +:100D4000ACA200308E020014ACA2003494A2003A8F +:100D500024420001A4A2003A94C600E03C0208002C +:100D60008C4231B024C4000130837FFF1462000F35 +:100D700000803021240280000082302430C2FFFF36 +:100D8000000213C2304200FF000210270A001A7E40 +:100D9000000233C02402000D024020210E0016C5BF +:100DA000A38200440A001A84004018218F82001494 +:100DB00002402021240500010E0015F9A44600E0A0 +:100DC000000018210A001B16006088218F90002C5B +:100DD0003C0308008C6331B08E05001030A23FFF49 +:100DE0000043102B104000612402FF808F840030EC +:100DF0009083000D00431024304200FF5040005CFF +:100E0000024020218F8200341040000B0005138225 +:100E10008F8200149763000A944200603042FFFF03 +:100E200014430005000513828F8200202404FFFD77 +:100E30000A001AF3AF82003C304200031440000E57 +:100E40000000000092020002104000058E03002402 +:100E500050600015920300030A001AAF02402021DF +:100E60008C82002450620010920300030240202173 +:100E70000A001AB72402000F9082000D30420008C9 +:100E80005440000992030003024020212402001074 +:100E90000E0016C5A38200442403FFFF1043003850 +:100EA0002404FFFF92030003240200025462000C9A +:100EB000920200038F820034544000099202000322 +:100EC000024020212402002C0E0016C5A3820044FB +:100ED0002403FFFF1043002A2404FFFF92020003B3 +:100EE0000200282102402021384600102CC60001B3 +:100EF0002C4200010E0016E5004630252410FFFFAD +:100F00001050001F2404FFFF8F8300341060001373 +:100F1000024020213C0208008C42318C0043102BFF +:100F200014400007000000000000282124060001F2 +:100F30000E001646000000000A001AF300002021EF +:100F40002402002D0E0016C5A38200441050000C90 +:100F50002404FFFF0A001AF3000020210E0015F9F7 +:100F6000240500010A001AF300002021024020217C +:100F70002402000D0E0016C5A3820044004020216B +:100F80000A001B16008088211514000E00000000C6 +:100F90000E00174C024020210A001B160040882139 +:100FA0000E0016C5A38200440A001B1600408821CB +:100FB00014620017022018212402002314E2000505 +:100FC0002402000B0E0017C0024020210A001B164D +:100FD0000040882102402021A38200440E0016C553 +:100FE0002411FFFF0A001B170220182130A500FF63 +:100FF0000E001529240600019783003A8F82003CD9 +:10100000A780003A00431023AF82003C0220182141 +:101010001220003E9782003A2402FFFD5462003EF7 +:101020008E4300208E4200048F830014005610234C +:10103000AE420004906200633042007FA062006311 +:101040008E4200208F840014A780003A34420002B0 +:10105000AE420020A48000E4908200632403FFBF1E +:1010600000431024A08200630A001B598E43002015 +:101070009082006300621024304200FF1040002381 +:101080009782003A90820088908300BD2485008872 +:101090003042003F2444FFE02C820020A383001C48 +:1010A00010400019AF85002C2402000100821804B2 +:1010B000306200191440000C3C02800034420002EF +:1010C000006210241440000B306200201040000F1A +:1010D0009782003A90A600010240202124050001D9 +:1010E0000A001B5330C60001024020210A001B5297 +:1010F00024050001024020210000282124060001CF +:101100000E001646000000009782003A1440FD04CD +:101110008F8400148E4300203062000410400012BF +:101120008F84003C2402FFFB00621024AE420020AA +:10113000274301808F4201B80440FFFE8F820048A0 +:10114000AC6200008F420124AC6200042402608380 +:10115000A462000824020002A062000B3C021000FE +:10116000AF4201B88F84003C8F8300148FBF0034DE +:101170008FB600308FB5002C8FB400288FB30024B9 +:101180008FB200208FB1001C8FB000182402000124 +:1011900027BD003803E00008AC6400C030A500FFA4 +:1011A0002403000124A900010069102B1040000C49 +:1011B00000004021240A000100A31023004A380443 +:1011C00024630001308200010069302B10400002CE +:1011D000000420420107402554C0FFF800A310235B +:1011E00003E00008010010213C020800244260A432 +:1011F0003C010800AC22738C3C02080024425308D6 +:101200003C010800AC2273902402000627BDFFE0D9 +:101210003C010800A02273943C021EDCAFB200180F +:10122000AFB10014AFBF001CAFB0001034526F411B +:1012300000008821240500080E001B7A02202021CE +:10124000001180803C07080024E773980002160014 +:1012500002071821AC6200000000282124A200012E +:101260003045FFFF8C6200002CA6000804410002FC +:10127000000220400092202614C0FFF8AC64000059 +:10128000020780218E0400000E001B7A2405002036 +:10129000262300013071FFFF2E2301001460FFE5BB +:1012A000AE0200008FBF001C8FB200188FB1001477 +:1012B0008FB0001003E0000827BD002027BDFFD835 +:1012C000AFB3001CAFB20018AFBF0020AFB1001425 +:1012D000AFB000108F5101408F48014800089402C0 +:1012E000324300FF311300FF8F4201B80440FFFE7C +:1012F00027500180AE1100008F420144AE0200046D +:1013000024020002A6120008A202000B240200140C +:10131000AE1300241062002528620015104000085A +:101320002402001524020010106200302402001272 +:10133000106200098FBF00200A001CB58FB3001C8B +:101340001062007024020022106200378FBF00205C +:101350000A001CB58FB3001C3C0208008C4231A06F +:101360002403FF800222102100431024AF420024F6 +:101370003C0208008C4231A0022210213042007F42 +:10138000034218213C02000A00621821166000BCCA +:10139000AF830014906200623042000F344200308C +:1013A000A06200620A001CB48FBF00203C046000F1 +:1013B0008C832C083C02F0033442FFFF00621824A7 +:1013C000AC832C083C0208008C4231A08C832C0892 +:1013D000244200740002108200021480006218256A +:1013E000AC832C080A001CB48FBF00203C0208000C +:1013F0008C4231A02403FF800222102100431024DC +:10140000AF4200243C0208008C4231A03C03000A99 +:10141000022210213042007F03421021004310219C +:101420000A001CB3AF8200143C0208008C4231A0B9 +:101430002405FF800222102100451024AF42002421 +:101440003C0208008C4231A0022210213042007F71 +:10145000034218213C02000A0062182190620063D6 +:1014600000A21024304200FF10400085AF8300141A +:1014700024620088944300123C0208008C4231A888 +:1014800030633FFF00031980022210210043102126 +:101490003043007F03432021004510243C03000C0F +:1014A00000832021AF4200289082000D00A210246A +:1014B000304200FF10400072AF8400249082000D83 +:1014C000304200101440006F8FBF00200E0015C87E +:1014D000000000008F4201B80440FFFE0000000041 +:1014E000AE1100008F420144AE020004240200024B +:1014F000A6120008A202000BAE1300240A001CB4BE +:101500008FBF00202406FF8002261024AF42002057 +:101510003C0208008C4231A031043FFF00042180CE +:101520000222102100461024AF4200243C03080090 +:101530008C6331A83C0208008C4231A03227007F26 +:101540000223182102221021006418213042007F5A +:101550003064007F034228213C02000A0066182400 +:1015600000A22821034420213C02000C00822021FB +:10157000AF4300283C020008034718210062902175 +:10158000AF850014AF8400240E0015C8010080212F +:101590008F4201B80440FFFE8F8200248F84001424 +:1015A000274501809042000DACB10000A4B00006B8 +:1015B000000216000002160300021027000237C2C4 +:1015C00014C00016248200889442001232033FFFA8 +:1015D00030423FFF14430012240260829083006374 +:1015E0002402FF8000431024304200FF5040000CD2 +:1015F00024026082908200623042000F3442004038 +:10160000A082006224026084A4A200082402000DCB +:10161000A0A200050A001C9E3C0227002402608252 +:10162000A4A20008A0A000053C02270000061C00A0 +:101630000062182524020002A0A2000BACA3001037 +:10164000ACA00014ACA00024ACA00028ACA0002CDE +:101650008E42004C8F840024ACA200189083000DB1 +:101660002402FF8000431024304200FF1040000598 +:101670008FBF00209082000D3042007FA082000DBD +:101680008FBF00208FB3001C8FB200188FB10014E1 +:101690008FB000103C02100027BD002803E00008B6 +:1016A000AF4201B80800343008003430080033A8D5 +:1016B000080033E0080034140800343808003438D7 +:1016C00008003438080033180A0001240000000024 +:1016D000000000000000000D747061362E322E33C1 +:1016E00000000000060203010000000000000000EE +:1016F00000000000000000000000000000000000EA +:1017000000000000000000000000000000000000D9 +:1017100000000000000000000000000000000000C9 +:1017200000000000000000000000000000000000B9 +:1017300000000000000000000000000000000000A9 +:101740000000000000000000000000000000000099 +:101750000000000000000000000000001000000376 +:10176000000000000000000D0000000D3C02080019 +:1017700024421C003C03080024632094AC40000079 +:101780000043202B1480FFFD244200043C1D080070 +:1017900037BD2FFC03A0F0213C1008002610049058 +:1017A0003C1C0800279C1C000E00015C000000008F +:1017B0000000000D3084FFFF308200078F85001885 +:1017C00010400002248300073064FFF800853021B8 +:1017D00030C41FFF03441821247B4000AF85001C48 +:1017E000AF84001803E00008AF4400843084FFFF9A +:1017F000308200078F8500208F860028104000026D +:10180000248300073064FFF8008520210086182B10 +:1018100014600002AF8500240086202303442821A1 +:1018200034068000AF840020AF44008000A6202151 +:1018300003E00008AF84003827BDFFD8AFB3001C19 +:10184000AFB20018AFB00010AFBF0024AFB400209B +:10185000AFB100143C0860088D1450002418FF7FBD +:101860003C1A8000029898243672380CAD12500051 +:101870008F5100083C07601C3C08600036300001B6 +:10188000AF500008AF800018AF400080AF40008428 +:101890008CE600088D0F08083C0760168CEC0000F1 +:1018A00031EEFFF039CA00103C0DFFFF340B800011 +:1018B0003C030080034B48212D440001018D282466 +:1018C0003C0253533C010800AC230420AF8900388C +:1018D000AF860028AF840010275B400014A20003ED +:1018E00034E37C008CF90004032818218C7F007CF1 +:1018F0008C6500783C0280003C0B08008D6B048CEA +:101900003C0A08008D4A048834520070AF85003CC0 +:10191000AF9F00403C13080026731C440240A021E6 +:101920008E4800008F46000038C30001306400017B +:1019300010800017AF880034028048218D2F0000EE +:101940003C0508008CA5045C3C1808008F1804585E +:1019500001E8102300A280210000C8210202402BD0 +:1019600003198821022838213C010800AC30045CAE +:101970003C010800AC2704588F4E000039CD00010F +:1019800031AC00011580FFED01E04021AF8F003444 +:101990008E5100003C0708008CE7045C3C0D0800F9 +:1019A0008DAD04580228802300F0602100007021D2 +:1019B0000190302B01AE1821006620213C01080067 +:1019C000AC2C045C3C010800AC2404588F46010890 +:1019D0008F47010030C92000AF860000AF87000CA0 +:1019E0001120000A00C040213C1808008F18042C68 +:1019F000270800013C010800AC28042C3C184000DA +:101A0000AF5801380A000196000000009749010410 +:101A100000002821014550213122FFFF0162582199 +:101A20000162F82B015F502130D902003C0108000F +:101A3000AC2B048C3C010800AC2A0488172000154C +:101A400024040F0010E400130000000024080D001F +:101A500010E8023B30CD000611A0FFE93C18400021 +:101A6000936E00002409001031C400F01089027147 +:101A700024020070108202E58F880014250F0001F7 +:101A8000AF8F00143C184000AF5801380A0001968F +:101A900000000000974C01041180FFD93C18400061 +:101AA00030C34000146000A1000000008F460178A0 +:101AB00004C0FFFE8F87003824100800240F0008A0 +:101AC0008CE30008AF500178A74F0140A7400142C6 +:101AD000974E01048F86000031C9FFFF30CD000111 +:101AE00011A002E1012040212531FFFE241800024F +:101AF000A75801463228FFFFA75101483C190800AA +:101B00008F39043C172002D08F8C000C30DF00206E +:101B100017E00002240400092404000130C20C0074 +:101B2000240504005045000134840004A744014A00 +:101B30003C1108008E3104203C1800483C10000184 +:101B40000238182530CF00020070282511E000046B +:101B5000000018213C19010000B9282524030001C8 +:101B600030DF000453E00005AF8300083C0600109E +:101B700000A6282524030001AF830008AF4510000C +:101B80000000000000000000000000000000000055 +:101B90008F83000810600023000000008F451000B4 +:101BA00004A1FFFE000000001060001E0000000005 +:101BB0008F4410003C0C0020008C102410400019B1 +:101BC0008F8E000031CD000211A000160000000031 +:101BD000974F101415E000130000000097591008EB +:101BE0003338FFFF271100060011188200033080F0 +:101BF00000C7282132300001322300031200032CD9 +:101C00008CA200000000000D00C7F821AFE2000028 +:101C10003C0508008CA5043024A600013C01080006 +:101C2000AC2604308F6D00003402FFFFAF8D00043E +:101C30008CEC0000118202A6000020218CED000037 +:101C400031AC01001180028A000000003C02080053 +:101C50008C4204743C0308008C63044C3C1F080055 +:101C60008FFF04703C1808008F1804480048382182 +:101C70000068802100E8282B03E430210208402B73 +:101C80000304882100C57021022878213C01080046 +:101C9000AC30044C3C010800AC2F04483C01080067 +:101CA000AC2704743C010800AC2E04708F8400182B +:101CB0000120302131290007249F000833F91FFF3C +:101CC00003594021AF84001CAF990018251B400028 +:101CD000AF590084112000038F83002024C2000725 +:101CE0003046FFF88F84002800C3282100A4302B41 +:101CF00014C00002AF83002400A428230345602100 +:101D0000340D8000018D10213C0F1000AF850020A4 +:101D1000AF820038AF450080AF4F01788F88001444 +:101D2000250F00010A0001EFAF8F00148F62000839 +:101D30008F670000240500300007760231C300F0F1 +:101D4000106500A7240F0040546FFF4C8F880014CB +:101D50008F4B01780560FFFE0000000030CA0200D2 +:101D600015400003000612820000000D00061282DA +:101D7000304D0003000D4900012D18210003808023 +:101D8000020D402100086080019380218E1F000019 +:101D900017E00002000000000000000D8F6E00043C +:101DA00005C202BD92070006920E000592020004D1 +:101DB0003C090001000E18800070F8218FED00181A +:101DC000277100082448000501A96021000830821D +:101DD000AFEC0018022020210E00059E26050014FD +:101DE000920A00068F7900043C0B7FFF000A2080D6 +:101DF000009178218DF800043566FFFF0326282422 +:101E000003053821ADE70004920E0005920D000491 +:101E1000960C0008000E10800051C8218F2300008E +:101E2000974901043C07FFFF006758243128FFFF52 +:101E3000010DF82103EC50233144FFFF01643025EC +:101E4000AF260000920300072418000110780275E5 +:101E5000240F0003106F0285000000008E050010A3 +:101E60002419000AA7590140A7450142921800040D +:101E70008F860000240F0001A7580144A7400146A7 +:101E80009747010430D100023C050041A7470148B3 +:101E900000001821A74F014A1220000330CB000494 +:101EA0003C0501412403000151600005AF83000897 +:101EB0003C06001000A6282524030001AF8300087B +:101EC000AF4510000000000000000000000000000E +:101ED000000000008F8A000811400004000000008C +:101EE0008F4410000481FFFE000000008F6B000093 +:101EF000920800043C1108008E310444AF8B0004AA +:101F000097590104311800FF3C0E08008DCE0440A3 +:101F10003325FFFF0305382102276021000010212F +:101F2000250F000A31E8FFFF0187482B01C2682115 +:101F300001A9F821311000073C010800AC2C044431 +:101F40003C010800AC3F0440120000038F8C0018D5 +:101F50002506000730C8FFF8010C682131BF1FFFBC +:101F6000AF8C001CAF9F0018AF5F00849744010442 +:101F7000035F80213084FFFF308A00071140000397 +:101F8000261B4000248900073124FFF88F8200209F +:101F90008F850028008220210085702B15C000024B +:101FA000AF820024008520233C0B08008D6B048C3D +:101FB0003C0A08008D4A04880344882134038000C9 +:101FC000022310213C0F1000AF840020AF820038A4 +:101FD000AF440080AF4F01780A0002968F8800144A +:101FE0008F5001780600FFFE30D10200162000035A +:101FF000000612820000000D00061282305F00030E +:10200000001F1900007F302100062080009FC8219A +:1020100000194880013380218E180000130000024F +:10202000000000000000000D8F6C000C058001FB1B +:102030008F870038240E0001AE0E00008CE30008EC +:10204000A20000078F65000400055402314D00FF17 +:1020500025A80005000830822CCB00411560000245 +:10206000A20A00040000000D8F7800043C03FFFF6B +:1020700000E02821330BFFFF256C000B000C1082C1 +:1020800000022080008748218D3F000026040014B4 +:10209000A618000803E3C8240E00059EAD39000011 +:1020A0008F4F01083C11100001F1382410E001AB02 +:1020B00000000000974D01049208000725AAFFECDC +:1020C000350600023144FFFFA2060007960600080D +:1020D0002CC7001354E0000592030007921100077B +:1020E000362F0001A20F00079203000724180001F9 +:1020F000107801C224090003106901D58F880038C7 +:1021000030CBFFFF257100020011788331E400FF1E +:1021100000042880A20F000500A848218D2D000092 +:10212000974A01043C0EFFFF01AEF8243143FFFF44 +:10213000006B1023244CFFFE03ECC825AD390000D2 +:10214000920600053C03FFF63462FFFF30D800FF23 +:102150000018388000F08821922F00143C04FF7F83 +:102160003487FFFF31EE000F01C65821316500FFB3 +:1021700000055080015068218DAC00200148F821F5 +:10218000A20B00060182C824AE0C000CAFF9000CB3 +:10219000920900068E11000C032778240009C080E4 +:1021A0000310702195C60026030828210227202449 +:1021B000AE04000CADCF0020ADC60024ACA60010CC +:1021C0008F8800003C0B08008D6B048C3C0A0800D3 +:1021D0008D4A0488241F001024190002A75F0140C3 +:1021E000A7400142A7400144A7590146974901046D +:1021F00024070001310600022538FFFEA7580148D8 +:102200003C050009A747014A10C00003000018213F +:102210003C05010924030001310C00045180000534 +:10222000AF8300083C08001000A828252403000103 +:10223000AF830008AF451000000000000000000060 +:1022400000000000000000009205000424AE00021F +:1022500031CD0007000D182330620007AE020010D8 +:102260008F90000812000004000000008F4F100043 +:1022700005E1FFFE000000008F7100008F8E001846 +:102280003C0308008C630444AF91000497450104AB +:1022900025CF001031E61FFF30A2FFFFAF8E001CDC +:1022A000AF860018AF4600842449FFFE3C0C0800AE +:1022B0008D8C0440974D010401208021000947C303 +:1022C0000070C02131A9FFFF0310F82B0188C8213D +:1022D000033F202103463821313100073C0108002B +:1022E000AC3804443C010800AC2404401220000334 +:1022F00024FB40002527000730E9FFF88F860020E7 +:102300008F8400280126382100E4C02B170000022A +:10231000AF86002400E438230347202134198000CD +:10232000009910213C0F1000AF870020AF820038C9 +:10233000AF470080AF4F01780A0002968F880014E3 +:102340009747010410E0FDAE3C1840008F5801781B +:102350000700FFFE30C5400010A000033C1F00082E +:102360000000000D3C1F0008AF5F01402410080072 +:102370008F860000AF5001789744010430D90001E6 +:10238000132000ED3086FFFF24CCFFFE240D000259 +:10239000A74D0146A74C01488F9100182408000D55 +:1023A000A748014A8F630000262F000831E21FFF73 +:1023B0000342702130C90007AF830004AF91001CB5 +:1023C000AF82001800C03821AF4200841120000302 +:1023D00025DB400024D800073307FFF88F85002055 +:1023E0008F84002800E5302100C4382B14E000025F +:1023F000AF85002400C430238F8400140346F821E5 +:10240000340C8000AF86002003EC8021AF460080B2 +:10241000249900013C0610003C184000AF460178AA +:10242000AF900038AF990014AF5801380A000196F8 +:10243000000000008F630000975101043067FFFF28 +:102440003228FFFF8F4F017805E0FFFE30EC0007D8 +:10245000000CF82333F0000724F9FFFE2404000ADF +:10246000A7440140A7500142A7590144A740014693 +:10247000A74801488F45010830B800201700000226 +:10248000240300092403000130CD0002A743014AC0 +:102490003C04004111A00003000018213C0401414C +:1024A0002403000130C9000451200005AF83000857 +:1024B0003C0600100086202524030001AF8300089D +:1024C000AF44100000000000000000000000000009 +:1024D000000000008F8E000811C000040000000002 +:1024E0008F4210000441FFFE000000008F7F0000BB +:1024F000276400088F91003CAF9F0004948500087A +:102500009490000A9499000C30AFFFFF0010C400B3 +:102510003323FFFF11F100A6030320253C0E080022 +:102520008DCE04443C0C08008D8C044000E88821CA +:102530002626FFFE01C628210000682100A6F82BF0 +:10254000018D2021009F80213C010800AC2504441E +:102550003C010800AC30044024E200083042FFFF98 +:102560003047000710E000038F830018244F000756 +:1025700031E2FFF83106FFFF30C800070043802139 +:1025800032191FFF0359C021AF83001CAF990018F7 +:10259000271B4000AF590084110000038F8C0020DE +:1025A00024C5000730A6FFF88F84002800CC28211E +:1025B00000A4F82B17E00002AF8C002400A428230D +:1025C000AF850020AF4500803C0408008C840434B3 +:1025D00003454821340E8000012E6821108000053B +:1025E000AF8D0038939100172406000E12260011BB +:1025F0002407043F3C021000AF4201788F8800148A +:10260000250F00010A0001EFAF8F00140E0005C472 +:1026100000E020218F8800143C0B08008D6B048C97 +:102620003C0A08008D4A0488250F00010A0001EFCA +:10263000AF8F00143C021000A7470148AF42017859 +:102640000A0004CE8F88001424040F001184003D7A +:1026500030CE002015C0000224030009240300012D +:102660000A00021AA743014A0A00020DA7400146C8 +:1026700094EF000894F1000A94F0000C8F8C003C59 +:10268000001174003207FFFF31EDFFFF11AC00377E +:1026900001C720253C1808008F1804443C0F08008F +:1026A0008DEF0440000080210308682101A8382B29 +:1026B00001F0702101C760213C010800AC2D0444E9 +:1026C0003C010800AC2C04400A00027A8F840018F8 +:1026D0003C0208008C42047C3C0308008C630454D8 +:1026E0003C1F08008FFF04783C1808008F18045026 +:1026F000004838210068802100E8282B03E43021BD +:102700000208402B0304882100C57021022878218B +:102710003C010800AC3004543C010800AC2F0450CC +:102720003C010800AC27047C3C010800AC2E047876 +:102730000A00027A8F840018A74001460A00043577 +:102740008F91001830CD002015A0FFC52403000D87 +:10275000240300050A00021AA743014A974E010408 +:1027600025C5FFF00A00038130A4FFFF8F980040C9 +:102770001498FFC8000010213C0508008CA5046CCB +:102780003C1F08008FFF046800A8C8210328302BD5 +:1027900003E22021008640213C010800AC39046C92 +:1027A0003C010800AC2804680A00027A8F840018F3 +:1027B0008F8C0040148CFF5900E8C8213C18080099 +:1027C0008F18046C3C1108008E3104682723FFFE2B +:1027D00003034821000010210123302B0222702125 +:1027E00001C668213C010800AC29046C3C010800CA +:1027F000AC2D04680A0004A524E200088F88003884 +:102800003C03FFFF8D02000C0043F82403E4C825BD +:10281000AD19000C0A00038F30CBFFFF0A0003C381 +:10282000AE000000974A0104920400048E26000CBA +:10283000014458212579FFF200C7C0243325FFFF4A +:1028400003053825AE27000C0A0002E68E050010AD +:102850003C0DFFFF8D0A0010014D582401646025D6 +:10286000AD0C00100A00038F30CBFFFF974301042B +:10287000920E00048E290010006E1021244DFFEEF0 +:102880000127602431A8FFFF0188F825AE3F001022 +:102890000A0002E68E0500108E0F000CAE0000004C +:1028A00000078880023028210A0002B8ACAF00205F +:1028B0001460000D3058FFFF3C04FFFF0044682403 +:1028C00001A47026000E602B000D102B004CF82484 +:1028D00013E00002000000000000000D8CAF0000BB +:1028E0000A00025001E410253B03FFFF0003882B80 +:1028F0000018802B0211202410800002000000002C +:102900000000000D8CB900000A0002503722FFFFC2 +:102910003084FFFF30A5FFFF108000070000182162 +:10292000308200011040000200042042006518219E +:102930001480FFFB0005284003E000080060102120 +:1029400010C00007000000008CA2000024C6FFFF9A +:1029500024A50004AC82000014C0FFFB2484000402 +:1029600003E000080000000010A0000824A3FFFFFF +:10297000AC86000000000000000000002402FFFF01 +:102980002463FFFF1462FFFA2484000403E00008BC +:1029900000000000308EFFFF30D8FFFF00057C00F4 +:1029A00001F8602539CDFFFF01AC5021014C582BB7 +:1029B000014B4821000944023127FFFF00E8302184 +:1029C0000006240230C5FFFF00A418213862FFFF73 +:1029D00003E000083042FFFF3C0C08008D8C0484AB +:1029E000240BFF8027BDFFD001845021014B4824D8 +:1029F000AF4900203C0808008D080484AFB20020D5 +:102A0000AFB00018AFBF0028AFB30024AFB1001CB7 +:102A1000936600040104382130E4007F009A1021FD +:102A20003C0300080043902130C500200360802152 +:102A30003C080111277B000814A000022646007004 +:102A40002646006C9213000497510104920F000473 +:102A50003267000F322EFFFF31ED004001C72823FF +:102A600011A0000500004821925900BC3338000431 +:102A70001700009000000000924300BC307F00046B +:102A800013E0000F0000000010A0000D0000000087 +:102A9000960E0002240AFF8000A7602125CDFFFECC +:102AA000A74D1016920B0004014B2024308200FF2A +:102AB00010400085010C40253C0F0400010F40250B +:102AC0008F5301780660FFFE2404000AA7440140EA +:102AD000960D00022404000931AC0007000C5823B5 +:102AE000316A0007A74A0142960200022443FFFE12 +:102AF000A7430144A7400146975F0104A75F01482F +:102B00008F590108333800205300000124040001CC +:102B1000920F000431EE001015C000023483001043 +:102B200000801821A743014A0000000000000000B7 +:102B30000000000000000000AF481000000000008E +:102B40000000000000000000000000008F51100095 +:102B50000621FFFE3113FFFF12600003000000009A +:102B60008F481018ACC8000096030006307FFFFFA6 +:102B700027F900020019988200138880023B302157 +:102B80008CD800001520005700183402920300046E +:102B90002405FF8000A3F82433F100FF1220002C4D +:102BA00000000000924700BC30F2000212400028F2 +:102BB00000000000974B100C2562FFFEA742101684 +:102BC000000000003C0A040035490030AF49100005 +:102BD00000000000000000000000000000000000F5 +:102BE0008F4C10000581FFFE000000009749100C7B +:102BF0008F51101C00C020213127FFFF24F200302C +:102C0000001218820003288000BBF8213226FFFF43 +:102C1000AFF100000E0005B300112C020013C880B4 +:102C2000033B98218E78000000027400AFB80010BA +:102C30008FA80010310FFFFFAFAF00108FA400105E +:102C400001C46825AFAD00108FA60010AE6600006D +:102C500097730008976D000A9766000C8F8A003CF6 +:102C6000000D5C0030CCFFFF3262FFFF104A0036DF +:102C7000016C2025960600023C10100024D30008A9 +:102C80000E00013B3264FFFF974C01040E00014926 +:102C90003184FFFFAF5001788FBF00288FB300242D +:102CA0008FB200208FB1001C8FB0001803E0000825 +:102CB00027BD003010A0FF700000000024A5FFFC1D +:102CC0000A0005EC240900048CD10000AF51101853 +:102CD0008F5301780660FF7A2404000A0A00060177 +:102CE0000000000000A7C8218F8800388F4E101CFC +:102CF0000019C0820018788001E82021AC8E000005 +:102D0000000E2C0200C020210E0005B331C6FFFFCB +:102D1000023B28218CAD000000025400004030210D +:102D2000AFAD00108FAC0010318BFFFFAFAB0010C8 +:102D30008FA2001001424825AFA900108FA70010F4 +:102D40000A000631ACA700008F8F0040148FFFC926 +:102D50000000000097420104960B00023C050800A9 +:102D60008CA5046C3049FFFF316AFFFF3C1108005D +:102D70008E310468012A382124F2FFFE00B240217E +:102D80000012FFC30112C82B023FC02103192021EA +:102D90003C010800AC28046C3C010800AC24046829 +:102DA0000A00066B0000000000A4102B1040000970 +:102DB000240300010005284000A4102B04A00003F8 +:102DC000000318405440FFFC000528401060000735 +:102DD000000000000085302B14C0000200031842E0 +:102DE000008520231460FFFB0005284203E0000853 +:102DF000008010218F85002C27BDFFE800053027BB +:102E00002CC300012CA400020083102510400003F5 +:102E1000AFBF00102405007FAF85002C00052827D8 +:102E200030A5FFFF0E000592240426F58F830030A5 +:102E3000240402BD004030210083382B10E000093B +:102E400024050001000420400083102B04800003AF +:102E5000000528405440FFFC0004204010A000085A +:102E600000C350210064402B1500000200052842D9 +:102E70000064182314A0FFFB0004204200C350216B +:102E80008FBF0010000A4C02312200FF27BD00183E +:102E9000AF8A002C03E00008AF8900300A00002A46 +:102EA00000000000000000000000000D7478703683 +:102EB0002E322E3300000000060203000000000046 +:102EC000000001360000EA60000000000000000081 +:102ED00000000000000000000000000000000000F2 +:102EE00000000000000000000000000000000000E2 +:102EF00000000000000000000000000000000016BC +:102F000000000000000000000000000000000000C1 +:102F100000000000000000000000000000000000B1 +:102F200000000000000000000000000000000000A1 +:102F3000000000000000138800000000000005DC15 +:102F4000000000000000000010000003000000006E +:102F50000000000D0000000D3C02080024423C204F +:102F60003C03080024633DD4AC4000000043202B08 +:102F70001480FFFD244200043C1D080037BD7FFC87 +:102F800003A0F0213C100800261000A83C1C0800FB +:102F9000279C3C200E0002BA000000000000000D3B +:102FA0008F8300383C088000350700708CE50000F6 +:102FB000008330253C02900000C22025AF85003000 +:102FC000AF4400208F4900200520FFFE3C03800015 +:102FD000346200708C4500008F8600303C19080078 +:102FE0008F39007C3C0E08008DCE007800A620238F +:102FF00003245821000078210164682B01CF60214F +:10300000018D50213C010800AC2B007C3C010800E4 +:10301000AC2A007803E00008000000000A0000412C +:10302000240400018F8400383C05800034A2000194 +:103030000082182503E00008AF43002003E00008E9 +:10304000000010213084FFFF30A5FFFF1080000733 +:1030500000001821308200011040000200042042CC +:10306000006518211480FFFB0005284003E00008DC +:103070000060102110C00007000000008CA20000BA +:1030800024C6FFFF24A50004AC82000014C0FFFB8F +:103090002484000403E000080000000010A00008E1 +:1030A00024A3FFFFAC860000000000000000000029 +:1030B0002402FFFF2463FFFF1462FFFA248400044C +:1030C00003E0000800000000308AFFFF93A800130F +:1030D000A74A014497490E1630C600FF3C02100073 +:1030E000A7490146AF450148A3460152A748015AE6 +:1030F000AF4701608FA400188FA30014A7440158A4 +:10310000AF43015403E00008AF42017803E0000838 +:10311000000000003C038000346200708C49000015 +:103120008F8800002484000727BDFFF83084FFF853 +:10313000AF890030974D008A31ACFFFFAFAC000083 +:103140008FAB0000016850232547FFFF30E61FFFCB +:1031500000C4282B14A0FFF73C0C8000358B0070B6 +:103160008D6A00003C0708008CE700843C060800DC +:103170008CC6008000081082014918230002788064 +:1031800000E370210000202101C3C82B00C4C0212E +:1031900001FA4021031948212502400027BD0008FB +:1031A0003C010800AC2E00843C010800AC290080E2 +:1031B00003E00008000000008F8200002486000762 +:1031C00030C5FFF800A2182130641FFF03E000089B +:1031D000AF8400008F8700388F8A004027BDFFB87A +:1031E0008F860044AFB60040AFBF0044AFB5003C8F +:1031F000AFB40038AFB30034AFB20030AFB1002C81 +:10320000AFB000288F4501048D4900ACAF47008066 +:103210008CC8002000A938230000B021AF480E1050 +:103220008F440E1000004821AF440E148CC20024BD +:10323000AF420E188F430E18AF430E1C10E001254D +:103240002D230001936B0008116000D400000000E2 +:10325000976E001031CDFFFF00ED602B158000CF81 +:103260000000000097700010320FFFFFAF4F0E00FC +:103270008F520000325100081220FFFD00000000B4 +:1032800097540E088F460E043285FFFF30B30001BD +:1032900012600132000000000000000D30B8A040B4 +:1032A00024150040131500C030A9A0001120012DE5 +:1032B00000000000937F000813E0000800000000F9 +:1032C00097630010306BFFFF00CB402B1100000311 +:1032D00030AC00401180012300000000A785003CB5 +:1032E000AF8600349366000800E02821AFA70020D5 +:1032F00014C0012427B30020AF60000C9782003C6B +:103300003047400014E00002240300162403000E9E +:1033100024194007A363000AAF790014938A003E82 +:103320008F740014315800070018AA4002959025A8 +:10333000AF7200149784003C8F700014309100101D +:1033400002117825AF6F0014978E003C31CD000834 +:1033500011A00147000028218F6700143C021000D3 +:103360003C0C810000E22825AF65001497460E0A48 +:103370002408000E3405FFFC30C3FFFF006C582505 +:10338000AF6B0004A3680002937F000A27E90004E2 +:10339000A369000A9786003C9363000A30CC1F00A3 +:1033A000000C598301634021251F0028A37F0009D9 +:1033B00097490E0CA769001093790009272A00028B +:1033C000315800070018A82332B10007A371000B81 +:1033D00093740009976400108F910034978F003C1C +:1033E000329200FF024480210205702131ED00403D +:1033F00011A0000531C4FFFF0091282B3C12800072 +:1034000010A000140000A0210224382B14E0011B9E +:103410008FA500208F4D0E14AF4D0E108F420E1C45 +:10342000AF420E18AF440E008F4F000031EE00087F +:1034300011C0FFFD0000000097540E080080882195 +:1034400000009021A794003C8F500E04241400012A +:10345000AF900034976400103095FFFF8E68000035 +:103460000111F82317E00009AE7F00008F650014FA +:103470008F8B004434A60040AF6600148F4C0E10B2 +:10348000AD6C00208F430E18AD63002493670008D5 +:1034900014E000D2000000000E00009E2404001082 +:1034A0008F8900483C08320000402821312600FF67 +:1034B0000006FC0003E8502525390001AF990048BB +:1034C000AC4A0000937800099370000A330400FFAF +:1034D00000047400320F00FF01CF6825AC4D0004DA +:1034E0008F820048064000EAACA20008ACA0000CA5 +:1034F0009783003C306B0008156000022628000608 +:1035000026280002974E0E148F450E1C8F6700046C +:10351000936D000231C4FFFF31A200FFAFA2001083 +:103520008F6C0014AFA800180E00008BAFAC001415 +:10353000240400100E0000C7000000008E7200007E +:1035400016400005000000008F6400142405FFBF32 +:1035500000859824AF7300148F79000C033538214F +:10356000AF67000C9375000816A00008000000006B +:1035700012800006000000008F7F00143C0BEFFF5C +:103580003568FFFE03E84824AF690014A3740008FF +:103590008FA500200A00024602202021AF470E001E +:1035A0000A0000F5000000008F5901780720FFFE97 +:1035B000241F08008F840000AF5F0178974B008ABA +:1035C000316AFFFF014448232528FFFF31021FFF16 +:1035D0002C4300081460FFF9000000008F8E0048A3 +:1035E0008F8D003800C048210344202125C60001EA +:1035F000240C0F00AF86004800E9382324864000E1 +:1036000031CA00FF11AC0005240800019391003E6F +:103610003230000700107A4035E80001000AAC00A3 +:103620003C18010002B8A025AC9440008F930048DC +:1036300030B2003630A40008ACD3000410800097EC +:1036400001123025974E0E0A8F8D00003C0281003A +:1036500031CCFFFF25AB0008018240253C03100060 +:1036600031651FFF25390006241F000EAF48016099 +:1036700000C33025A75F015AAF850000A759015844 +:1036800014E0000A8F93003824120F0052720002D7 +:103690002416000134C600408F580E108F94004449 +:1036A000AE9800208F550E18AE9500248F450E144D +:1036B000AF4501448F590E1CAF590148A34A01522E +:1036C0003C0A1000AF460154AF4A017814E0FEDD19 +:1036D0002D2300010076A025128000178FBF004423 +:1036E0008F84003824160F0010960084000000001C +:1036F0008F45017804A0FFFE24150F001095006E81 +:10370000000000008F470E14240202403C1F1000EE +:10371000AF4701448F440E1CAF440148A3400152FF +:10372000A740015AAF400160A7400158AF42015481 +:10373000AF5F01788FBF00448FB600408FB5003C6B +:103740008FB400388FB300348FB200308FB1002CAB +:103750008FB0002803E0000827BD004814C0FED049 +:1037600030B8A0408F420E148F84004400004821DE +:10377000AC8200208F510E1CAC9100240A00020E76 +:103780002D2300018F910034978A003C3C12800069 +:103790000220A821315800401700FF300000A0216E +:1037A000976900108F9200343139FFFF13320035D2 +:1037B00000002021008048211480FEA000A03821B4 +:1037C0008F420E148F840044AC8200208F510E1C57 +:1037D000AC9100240A00020E2D230001936A000917 +:1037E0009378000B315000FF330F00FF020F702160 +:1037F00025C2000A3050FFFF0E00009E020020216B +:103800008F8600483C1F410024CD0001AF8D004849 +:10381000936C000930C600FF00064400318300FFAE +:10382000246B0002010B4825013FC825AC5900005C +:103830008F67000C97440E1400F22825AC45000455 +:103840008F450E1C8F670004936A00023084FFFFCF +:10385000315800FFAFB800108F6F0014AFB10018DF +:103860000E00008BAFAF00140A0001A60200202159 +:10387000AF6000040A00013EA36000020A00024695 +:1038800000002021000090210A0001702414000192 +:103890003C1280000A000195ACB2000C8F91000030 +:1038A00025240002A744015826300008320F1FFFCC +:1038B0000A0001F9AF8F0000AF40014C1120002C2D +:1038C000000000008F590E10AF5901448F430E18AD +:1038D000240200403C1F1000AF430148A3400152A6 +:1038E000A740015AAF400160A7400158AF420154C0 +:1038F000AF5F01780A0002278FBF00441120000645 +:103900000000000097460E0830CC004015800002F1 +:10391000000000000000000D8F4D017805A0FFFEA3 +:103920000000000097530E103C120500240E2000EA +:10393000326AFFFF0152C025AF58014C8F4F0E1461 +:103940003C021000AF4F01448F500E1CAF50014895 +:10395000A34001528F840038A740015AAF40016054 +:10396000A7400158AF4E01540A000215AF4201783A +:103970008F490E14AF4901448F430E1C0A00028E7A +:10398000240200403C0E20FF27BDFFE03C1A8000CF +:103990003C0F800835CDFFFDAFBF001CAFB2001853 +:1039A000AFB10014AFB00010AF8F0040AF4D0E00AC +:1039B0000000000000000000000000000000000007 +:1039C000000000003C0C00FF358BFFFDAF4B0E00EC +:1039D0003C0660048CC95000240AFF7F3C11600043 +:1039E000012A40243507380CACC750008E24043817 +:1039F00024050009AF4500083083FFFF38622F71AE +:103A00002450C0B3AF8000480E000068AF800000B3 +:103A100052000001AE20442C0E0004353C11800001 +:103A20000E000ED9363000708F8A00403C1208001C +:103A300026523C88020088218E0800008F5F00001B +:103A40003BF900013338000113000017AF88003044 +:103A5000022048218D2700003C0F08008DEF006CEC +:103A60003C0C08008D8C006800E8C02301F8282178 +:103A70000000682100B8302B018D582101664021DB +:103A80003C010800AC25006C3C010800AC28006833 +:103A90008F44000038830001306200011440FFEDC4 +:103AA00000E04021AF8700308E0C00003C0508008C +:103AB0008CA5006C3C0408008C84006801883023CD +:103AC00000A638210000102100E6402B00821821BA +:103AD0000068F8213C010800AC27006C3C0108009C +:103AE000AC3F00688F49010025590088AF99004418 +:103AF000AF890038AF4900208E070000AF87003043 +:103B00008F4D017805A0FFFE000000008E0600002A +:103B10003C0B08008D6B00743C0408008C84007022 +:103B200000C728230165F8210000102103E5402B80 +:103B30000082382100E8C821240908003C0108005F +:103B4000AC3F00743C010800AC390070AF4901780B +:103B500093580108A398003E938F003E31EE000178 +:103B600015C000158F830038240E0D00106E00194B +:103B7000240F0F00106F001D00000000915900007D +:103B800024180050332900FF113800043C1F400066 +:103B9000AF5F01380A0002E7000000000E00090EC6 +:103BA000000000008F8A00403C1F4000AF5F0138DA +:103BB0000A0002E700000000938D003E31AC0006D1 +:103BC000000C51000E0000CE0152D8210A00034320 +:103BD0008F8A00403C1B0800277B3D080E0000CE6A +:103BE000000000000A0003438F8A00403C1B0800CD +:103BF000277B3D280E0000CE000000000A00034392 +:103C00008F8A004090AA00018FAB00108CAC00108E +:103C10003C0300FF8D680004AD6C00208CAD0014E7 +:103C200000E060213462FFFFAD6D00248CA7001816 +:103C30003C09FF000109C024AD6700288CAE001CC0 +:103C40000182C82403197825AD6F0004AD6E002CE5 +:103C50008CAD0008314A00FFAD6D001C94A9000234 +:103C60003128FFFFAD68001090A70000A56000029A +:103C7000A1600004A167000090A30002306200FF71 +:103C80000002198210600005240500011065000E75 +:103C90000000000003E00008A16A00018CD80028A1 +:103CA000354A0080AD7800188CCF0014AD6F001439 +:103CB0008CCE0030AD6E00088CC4002CA16A0001CF +:103CC00003E00008AD64000C8CCD001CAD6D001845 +:103CD0008CC90014AD6900148CC80024AD680008BC +:103CE0008CC70020AD67000C8CC200148C8300646C +:103CF0000043C82B13200007000000008CC20014F2 +:103D0000144CFFE400000000354A008003E0000886 +:103D1000A16A00018C8200640A000399000000007F +:103D200090AA000027BDFFF88FA9001CA3AA0000DD +:103D30008FAE00003C0FFF808FA8001835E2FFFF18 +:103D40008CCD002C01C26024AFAC0000A120000487 +:103D500000E06021A7A000028FB800008D270004BA +:103D60000188182100A0582100C05021006D28268C +:103D70003C06FF7F3C0F00FF2CAD000135EEFFFF3E +:103D800034D9FFFF3C02FF0003193024000D1DC091 +:103D9000010EC82400E2C02400C370250319782551 +:103DA000AD2E0000AD2F00048D450024AFAE000005 +:103DB000AD2500088D4D00202405FFFFAD2D000C22 +:103DC000956800023107FFFFAD27001091660018CB +:103DD00030C200FF000219C2506000018D4500345E +:103DE000AD2500148D67000827BD0008AD27001C15 +:103DF0008C8B00CCAD2C0028AD20002CAD2B0024EA +:103E0000AD20001803E00008AD20002027BDFFE032 +:103E1000AFB20018AFB10014AFB00010AFBF001CBC +:103E20009098000000C088213C0D00FF330F007FF8 +:103E3000A0CF0000908E000135ACFFFF3C0AFF00D0 +:103E4000A0CE000194A6001EA22000048CAB00149A +:103E50008E29000400A08021016C2824012A40241E +:103E60000080902101052025A6260002AE24000432 +:103E700026050020262400080E00007624060002F5 +:103E800092470000260500282624001400071E0083 +:103E90000003160324060004044000032403FFFF6C +:103EA000965900023323FFFF0E000076AE23001068 +:103EB000262400248FBF001C8FB200188FB100147D +:103EC0008FB0001024050003000030210A0000809C +:103ED00027BD002027BDFFD8AFB1001CAFB0001830 +:103EE000AFBF002090A80000240200018FB0003C6A +:103EF0003103003F00808821106200148FAA00382F +:103F0000240B0005506B0016AFAA001000A0202162 +:103F100000C028210E0003DC02003021922400BCE6 +:103F2000308300021060000326060030ACC00000A1 +:103F300024C600048FBF00208FB1001C8FB0001872 +:103F400000C0102103E0000827BD002801403821EF +:103F50000E00035AAFB000100A0004200000000059 +:103F60000E0003A1AFB000140A00042000000000FE +:103F70003C02000A034218213C04080024843D6CE2 +:103F80002405001A000030210A000080AF8300548D +:103F90003C038000346200708C48000000A058216F +:103FA00000C04821308A00FFAF8800308F4401787C +:103FB0000480FFFE3C0C8000358600708CC500003C +:103FC0003C0308008C6300743C1808008F180070D4 +:103FD00000A82023006468210000C82101A4782BD8 +:103FE0000319702101CF60213C010800AC2D007441 +:103FF0003C010800AC2C00708F480E14AF480144FF +:10400000AF47014CA34A0152A74B01589346010800 +:1040100030C5000854A0000135291000934B090059 +:1040200024070050316A00FF11470007000000001C +:104030008F450E1CAF450148AF4901543C091000A3 +:1040400003E00008AF490178934D010831A800084A +:104050001100001000000000934F010831EE001025 +:1040600051C00001352900083C04080090843DD06F +:10407000A34401508F4309A4AF4301488F4209A0D4 +:10408000AF420144AF4901543C09100003E000086D +:10409000AF4901783C1908008F393D8C333800084E +:1040A0005700FFF1352900080A00047300000000E2 +:1040B00024070040AF470814AF4008108F4209445E +:1040C0008F4309508F4409548F45095C8F46094C32 +:1040D000AF820064AF830050AF84004CAF85005CBA +:1040E00003E00008AF8600609346010930C5007FF9 +:1040F000000518C0000521400083102103E00008DE +:10410000244200883C09080091293D9124A800021E +:104110003C05110000093C0000E8302500C51825C9 +:1041200024820008AC83000003E00008AC80000497 +:104130009347010B8F4A002C974F09083C18000E3B +:104140000358482131EEFFFF000E41C0AF48002C5C +:1041500097430908952C001A008040212403000190 +:10416000318BFFFFAC8B00008D2D001C00A058216F +:1041700000C06021AC8D00048D24002030E7004099 +:10418000AD04000891220019304400031083004858 +:104190002885000214A00062240600021086005642 +:1041A00024190003109900660000000010E0003A96 +:1041B000000000003C07080094E73D8624E200016F +:1041C000934F0934934709219525002A31EE00FFCA +:1041D000000E488230ED00FF978700580009360036 +:1041E000000D1C003044FFFF00C310250044C02513 +:1041F00000A778213C19400003197025000F4C00DE +:10420000AD090004AD0E0000934D09203C030006EB +:1042100025090014000D360000C32025AD04000858 +:104220008F59092C24E5000130A27FFFAD19000C45 +:104230008F580930A782005825020028AD180010B9 +:104240008F4F0938AD0F0014AD2B00048F4E09407D +:10425000AD2E0008934D09373C05080090A53D9010 +:104260008F4409488F46094031A700FF00EC182110 +:10427000008678230003C7000005CC0003196025E1 +:1042800031E8FFFC01885825AD2B000CAD20001053 +:1042900003E00008AF4A002C3C0D080095AD3D86B8 +:1042A0003C0E080095CE3D800A0004C901AE1021E5 +:1042B0003C05080094A53D8A3C06080094C63D8054 +:1042C0003C18080097183D7C952E002400A6782104 +:1042D00001F86823000E240025A2FFF200821825B1 +:1042E00024190800AD03000CAD190014AD00001036 +:1042F0000A0004C4250800189526002495250028E6 +:104300000006C40000057C00370E810035ED080072 +:10431000AD0E000CAD0D00100A0004C425080014F9 +:104320001480FFA200000000952400240004140063 +:1043300034430800AD03000C0A0004C42508001033 +:104340003C03080094633D8A3C05080094A53D8029 +:104350003C06080094C63D7C953900249538002819 +:10436000006520210086782300196C000018740075 +:1043700025E2FFEE01C2202535A3810024190800A3 +:10438000AD03000CAD040010AD190018AD00001411 +:104390000A0004C42508001C03E00008240201F4FC +:1043A00027BDFFE8AFB00010AFBF00140E000060E3 +:1043B0000080802124050040AF4508148F83005001 +:1043C0008F84004C8F85005C0070182100641023DE +:1043D00018400004AF830050AF6300548F66005450 +:1043E000AF86004C1200000C000000008F440074E7 +:1043F000936800813409FA002D07000710E00005DA +:1044000000891021936C0081240B01F4018B50046E +:1044100001441021AF62000C8F4E095C01C5682376 +:1044200019A000048FBF00148F4F095CAF8F005C90 +:104430008FBF00148FB000100A00006227BD001863 +:104440008F8400648F8300508F82004CAF640044DF +:10445000AF63005003E00008AF6200543C038000EB +:10446000346200708C43000027BDFFF8308700FFE6 +:1044700030A900FF30C800FFAF8300308F440178BF +:104480000480FFFE3C028000345900708F38000029 +:10449000A3A700033C0708008CE700748FAC000062 +:1044A0003C0608008CC60070030378233C0E7FFF97 +:1044B00000EFC82135CDFFFF00005021018D2824D9 +:1044C00000CA1821000847C0032F202B00A8102580 +:1044D0000064C021AFA200003C010800AC390074A8 +:1044E0003C010800AC380070934F010AA3A0000201 +:1044F0003C0E80FFA3AF00018FAC0000312B007F8A +:1045000035CDFFFF018D4824000B5600012A4025C0 +:10451000240730002406FF803C05100027BD00085A +:10452000AF48014CAF470154A7400158A346015280 +:1045300003E00008AF45017827BDFFE8AFBF0014D6 +:10454000AFB000108F6500743C068000309000FF13 +:1045500000A620250E000060AF6400749363000580 +:10456000346200080E000062A362000502002021F0 +:104570008FBF00148FB00010240500052406000131 +:104580000A00057027BD001827BDFFE03C0380002E +:10459000AFB00010AFBF0018AFB1001434620070AC +:1045A0008C470000309000FF30A800FFAF8700303C +:1045B0008F4401780480FFFE3C18800037110070A2 +:1045C0008E2F00003C0D08008DAD00743C0A0800E1 +:1045D0008D4A007001E7702301AE282100005821A8 +:1045E00000AE302B014B4821012638213C01080048 +:1045F000AC250074000088213C010800AC27007045 +:104600001100000F000000008F6200742619FFFFE8 +:104610003208007F0002FE0233E5007F150000062D +:10462000332200FF2407FF800207202624A3FFFF78 +:1046300000838025320200FF0040802124111008F1 +:104640000E000060000000008F49081831250004AA +:1046500014A0FFFD3218007F001878C000187140C8 +:1046600001CF682125AC0088AF4C0818274A098083 +:104670008D4B0020AF4B01448D460024AF460148CE +:10468000A35001500E000062A740015802201021E3 +:104690008FBF00188FB100148FB0001003E0000826 +:1046A00027BD002027BDFFE8308400FFAFBF00100A +:1046B0000E0005BB30A500FF8F8300508FBF001098 +:1046C000344500402404FF903C02100027BD001830 +:1046D000AF43014CA3440152AF45015403E000082D +:1046E000AF4201789343093E306200081040000D4C +:1046F0003C0901013528080AAC8800008F47007486 +:10470000AC8700043C06080090C63D9030C5001000 +:1047100050A00006AC8000088F6A0060AC8A0008D8 +:104720002484000C03E00008008010210A00062207 +:104730002484000C27BDFFE8AFBF0014AFB0001009 +:104740009346093F00A050210005288000853823AA +:1047500030C200FF240300063C09080095293D866D +:1047600024E8FFD824050004104300372406000283 +:104770009750093C3C0F020400063400320EFFFF44 +:1047800001CF6825AC8D0000934C093E318B002091 +:104790001160000800000000934309363C02010349 +:1047A000345F0300307900FF033FC0252405000873 +:1047B000AC98000493430934935909210005F88209 +:1047C000306200FF0002C082332F00FF00186E002D +:1047D000000F740001AE6025018920253C094000CE +:1047E00000898025ACF0FFD8934309378F4F0948E3 +:1047F0008F580940306200FF004AC821033F7021F2 +:1048000001F86023000E6F0001A650253185FFFCE2 +:10481000001F58800145482501683821AD09002056 +:104820000E00006024F00028240400040E00006242 +:10483000A364003F020010218FBF00148FB000104E +:1048400003E0000827BD00180A0006352406001200 +:1048500027BDFFD024090010AFB60028AFB5002453 +:10486000AFB40020AFB10014AFB000103C0108009D +:10487000A0293D90AFBF002CAFB3001CAFB2001811 +:1048800097480908309400FF3C02000E3107FFFFF3 +:10489000000731C0AF46002C974409089344010B30 +:1048A00030B500FF03428021308300300000B0218A +:1048B0001060012500008821240C00043C01080040 +:1048C000A02C3D90934B093E000B5600000A2E038E +:1048D00004A0016000000000AF400048934F010BAE +:1048E00031EE002011C00006000000009358093E80 +:1048F00000189E0000139603064001890000000086 +:104900009344010B30830040106000038F930050EC +:104910008F8200502453FFFF9347093E30E6000882 +:1049200014C0000224120003000090219619002CEC +:1049300093580934934F0937A7990058330C00FF57 +:1049400031EE00FF024E6821000D5880016C5021AD +:10495000015140213C010800A4283D869205001821 +:1049600030A900FF010918213C010800A4233D885B +:104970009211001816200002000000000000000D37 +:104980003C010800A4233D8A3C010800A4203D808E +:104990003C010800A4203D7C935F010B3063FFFFC6 +:1049A00033F00040120000022464000A2464000B6B +:1049B0003091FFFF0E00009E022020219358010B32 +:1049C0003C08080095083D8A0040202100185982C3 +:1049D000316700010E00049A01072821934C010B56 +:1049E0008F4B002C974E09083C0F000E034F4021BF +:1049F00031CDFFFF000D51C0AF4A002C974309088D +:104A00009505001A004038212404000130A9FFFF59 +:104A1000AC4900008D06001C00404821318A00404E +:104A2000AC4600048D020020ACE20008910300199E +:104A300030630003106400EC28790002172001188D +:104A4000241000021070010C241F0003107F011EAF +:104A500000000000114000DE000000003C090800DA +:104A600095293D8625220001935F0934934E092143 +:104A70009504002A33F900FF0019C08231CF00FFEE +:104A8000978E005800184600000F6C00010D80251D +:104A90003045FFFF02051025008E50213C034000E9 +:104AA00000433025000A6400ACEC0004ACE60000D2 +:104AB000935F09203C19000624EC0014001FC60077 +:104AC00003197825ACEF00088F48092C25CD00018B +:104AD00031A57FFFACE8000C8F500930A785005846 +:104AE00024E80028ACF000108F4409380100802130 +:104AF000ACE40014AD9300048F530940AD9300085B +:104B0000934A09373C19080093393D908F4309486F +:104B10008F460940314200FF0052F82100667023A1 +:104B2000001F7F000019C40001F8282531CDFFFCCB +:104B300000AD2025AD84000CAD800010AF4B002CE3 +:104B4000934B093E317300081260000D3C060101D1 +:104B500034CC080AACEC00288F530074AD13000469 +:104B60003C0B0800916B3D903167001050E0000352 +:104B7000AD0000088F6A0060AD0A00082510000C27 +:104B800012C0003D000000009343093F24160006B8 +:104B900024060004306200FF105600C924070002FA +:104BA0009758093C3C0F0204330DFFFF01AF40252D +:104BB000AE0800009345093E30A400201080000894 +:104BC00000000000935309363C0B0103357F0300BE +:104BD000327900FF033F7025AE0E00042406000862 +:104BE000934F093493480921312AFFFF31ED00FF2B +:104BF000000D1082310300FF0002B60000032C00FC +:104C000002C56025018A9825001220803C094000D9 +:104C10000204502302695825AD4BFFD8935F093732 +:104C20008F4F09488F58094033F900FF0332702134 +:104C30000006B08201D668210007440001F828234D +:104C4000000D1F000068302530A2FFFC2547FFD86B +:104C500000C260250016808002074821ACEC0020CD +:104C6000253000280E00006024120004A372003FCB +:104C70000E000062000000009347010B30F200407C +:104C8000124000053C1900FF8E180000372EFFFF70 +:104C9000030E3024AE0600000E0000C702202021C3 +:104CA0003C10080092103D90321100031220000FBA +:104CB00002A028218F89005025330001AF930050B6 +:104CC000AF7300508F6B00540173F8231BE0000298 +:104CD000026020218F640054AF6400548F4C007434 +:104CE000258401F4AF64000C02A028210280202159 +:104CF000A76000680E0005BB3C1410008F850050B3 +:104D000034550006AF45014C8F8A00488FBF002CF8 +:104D10008FB3001C25560001AF9600488FB20018D3 +:104D2000A34A01528FB60028AF5501548FB1001429 +:104D3000AF5401788FB500248FB400208FB00010DD +:104D400003E0000827BD00309358093E00189E007C +:104D500000139603064200362411000293440923EF +:104D6000308300021060FEDD8F8600608F8200506D +:104D700014C2FEDA000000000E0000600000000017 +:104D80009369003F24070016312800FF1107000C2B +:104D9000240500083C0C0800918C3D90358B0001E7 +:104DA0003C010800A02B3D90936A003F314300FF77 +:104DB00010650065240D000A106D005E2402000CD1 +:104DC0000E000062000000000A00069000000000D3 +:104DD0003C09080095293D863C0A0800954A3D801B +:104DE0000A0006F3012A10213C09080095293D8A92 +:104DF0003C04080094843D803C06080094C63D7C39 +:104E000095030024012410210046F8230003CC0060 +:104E100027F0FFF20330C025240F0800ACF8000C87 +:104E2000ACEF0014ACE000100A0006EE24E7001816 +:104E30003C010800A0313D90935F093E241600011B +:104E400033F900201720FEA5241100080A0006905F +:104E5000241100048F6E00848F4D094011A0FE9E26 +:104E6000AF8E0050240F00143C010800A02F3D908D +:104E70000A00068F00000000950E0024950D002802 +:104E8000000E6400000D2C003589810034A6080056 +:104E9000ACE9000CACE600100A0006EE24E70014B2 +:104EA0001460FEEC000000009502002400021C00CB +:104EB00034640800ACE4000C0A0006EE24E700109D +:104EC0000A000741240700123C02080094423D8A70 +:104ED0003C06080094C63D803C03080094633D7C7A +:104EE00095100024951900280046F82103E3C023FB +:104EF00000106C0000197400270FFFEE01CF282569 +:104F000035AC8100ACEC000CACE5001024070800C7 +:104F1000AD2700182527001C0A0006EEAD2000145E +:104F20008F7F004CAF7F00548F7900540A000699A0 +:104F3000AF790050A362003F0E0000620000000045 +:104F40000A00069000000000240200140A0008274E +:104F5000A362003F27BDFFE8308400FFAFBF001011 +:104F60000E0005BB30A500FF9378007E9379007F8B +:104F7000936E00809368007A332F00FF001866005C +:104F8000000F6C0031CB00FF018D4825000B520053 +:104F90008FBF0010012A3825310600FF344470000D +:104FA00000E628252402FF813C03100027BD0018DD +:104FB000AF45014CAF440154A342015203E0000845 +:104FC000AF43017827BDFFD8AFB20018AFB10014CE +:104FD000AFB00010AFBF0020AFB3001C9342010977 +:104FE000308600FF30B000FF000618C23204000215 +:104FF0003071000114800005305200FF93670005F6 +:1050000030E5000810A0000D30C80010024020213B +:105010000E0005A702202821240400018FBF0020D4 +:105020008FB3001C8FB200188FB100148FB0001026 +:105030000080102103E0000827BD00281500003281 +:105040000000000093430109000028213062007F26 +:10505000000220C00002F94003E49821267900886C +:10506000033B98218E7800248E6F0008130F0046B2 +:10507000000000008F640084241800020004FD82F8 +:1050800033F900031338007C0000000093660083AE +:10509000934A0109514600043205007C10A00060CB +:1050A000000000003205007C14A0005302402021C3 +:1050B00016200006320400018E7F00248F5901045F +:1050C00017F9FFD600002021320400011080000AE9 +:1050D000024020218F4209408F9300641053000644 +:1050E000000000000E00066D022028218F430940B9 +:1050F000AF630044024020210E0006020220282156 +:105100000A000860240400013C0908008D2900649D +:10511000252600013C010800AC26006416000012A0 +:10512000000000008F6D00843C0E00C001AE6024C2 +:1051300015800005024020210E00082E02202821A3 +:105140000A00086024040001240500040E00057014 +:1051500024060001024020210E00082E02202821F2 +:105160000A000860240400010E000041240400012C +:10517000936B007D020B50250E000062A36A007D38 +:105180000A0008A38F6D00848F6600748F480104A5 +:105190008E67002400064E021507FFB63126007FF9 +:1051A000936B008326440001308A007F1146004340 +:1051B000316300FF5464FFB08F6400842645000112 +:1051C00030B1007F30A200FF122600042405000148 +:1051D000004090210A00087624110001240FFF806E +:1051E000024F702401CF9026324200FF00409021F0 +:1051F0000A000876241100010E00066D0220282105 +:10520000321800301300FFAA321000820240202121 +:105210000E0005A7022028210A00086024040001CE +:105220008F6E00743C0F80002405000301CF902591 +:10523000AF72007493710083240600010E000570A4 +:10524000322400FF0E00004124040001936D007D14 +:10525000020D60250E000062A36C007D3C0B08006F +:105260008D6B0054257000013C010800AC300054E7 +:105270000A000860240400018F6800743C09800063 +:105280002405000401093825AF6700749363008387 +:10529000240600010E000570306400FF0E0000417E +:1052A000240400019362007D020298250E00006232 +:1052B000A373007D0A00086024040001324D0080C1 +:1052C00039AC0080546CFF6C8F6400840A0008C9FC +:1052D0002645000127BDFFC83C0A0008AFBF0030CB +:1052E000AFB5002CAFB40028AFB30024AFB200209C +:1052F000AFB1001CAFB00018034AD8212409004008 +:10530000AF490814AF4008108F4209448F43095039 +:105310008F4609548F47095C8F48094C9344010814 +:105320009345010BAF820064308400FF30A500FF7D +:10533000AF830050AF86004CAF87005C0E00084A78 +:10534000AF8800601440017D8FBF0030A760006807 +:10535000934D0900240B00503C15080026B53D482C +:1053600031AC00FF3C12080026523D58118B00035F +:10537000000000000000A8210000902193510109C5 +:105380008F9F005024040010322E007F000E68C052 +:10539000000E6140018D282124B40088AF54081804 +:1053A0008F4901048F4A09A43C0B000E034BC02116 +:1053B000012A10233C010800AC223D6C8F430958A0 +:1053C0003C010800A0243D9097470908007F302346 +:1053D0003C010800AC263D7030E8FFFF0008C9C062 +:1053E0003C010800AC3F3D94AF59002C974209089E +:1053F0009710002C8EB10000930F001803749821B1 +:10540000A7900058AF9300440220F80931F000FF44 +:10541000304E000215C001B2304F000111E0014FC3 +:10542000000000009343093E3066000814C00002EB +:10543000241400030000A0218F5809A424130001A4 +:105440003C010800AC383D98934F0934935109371B +:1054500031EC00FF322E00FF028E6821000D288003 +:1054600000AC5021015058213C010800A42B3D887C +:105470003C010800A42A3D8693490934312200FFEB +:1054800002022021249000103C010800A4303D8439 +:10549000240700068F9F00503C010800AC273D8C7C +:1054A0008F88005C8F59095800008021011F282334 +:1054B00004A00149033F20230480014700A4302BAE +:1054C00010C00149000000003C010800AC253D70FF +:1054D0008E4200000040F809000000003043000246 +:1054E000146000F80040882130440001548000100E +:1054F0008E4200043C0908008D293D743C0AC0001E +:10550000012A8025AF500E008F45000030AB000807 +:105510001160FFFD00000000974D0E0824100001EF +:10552000A78D003C8F4C0E04AF8C00348E420004DB +:105530000040F8090000000002228825322E0002F7 +:1055400015C00180000000003C09080095293D7C41 +:105550003C06080094C63D883C0A0800954A3D7EFA +:105560003C1908008F393D74012660213C18080061 +:105570008F183D983C03080094633D92018A2021D6 +:105580008F4E09400329F821248F000203E32821CC +:10559000031968213C010800A42C3D8AAF8E0064E9 +:1055A0003C010800AC2D3D983C010800A4253D803D +:1055B0000E00009E31E4FFFF8F870048004020214D +:1055C0003C010800A0273D918E42000824E800011C +:1055D000AF8800480040F809000000009344010B28 +:1055E0008F4C002C974A09083C0B000E034B4021BE +:1055F0003149FFFF000919C08F8B0050AF43002CC9 +:10560000974309089506001A00403821308A004067 +:1056100030DFFFFFAC5F00008D19001C0040482107 +:10562000AC5900048D180020AC580008910F0019E7 +:1056300031E30003107300F0000000002862000254 +:105640001440010924050002106500FD240D00032B +:10565000106D010D00000000114000D90000000095 +:105660003C0A0800954A3D8625420001934D0934C5 +:1056700093580921950E002A31A300FF00032082D0 +:10568000331F00FF9798005800047E00001FCC00D5 +:1056900001F940253049FFFF0109102501D83021CB +:1056A0003C0540000045502500066C00ACED0004B0 +:1056B000ACEA0000934309203C04000624ED0014EA +:1056C0000003FE0003E4C825ACF900088F49092C4B +:1056D000270F000131EE7FFFACE9000C8F48093045 +:1056E000A78E005824E90028ACE800108F4509383F +:1056F00001204021ACE50014ADAB00048F4209400D +:10570000ADA20008934B09373C1F080093FF3D9062 +:105710008F4309488F4A0940316600FF00D4202199 +:10572000006A78230004C700001FCC000319282555 +:1057300031EEFFFC00AE1025ADA2000CADA00010B4 +:10574000AF4C002C934C093E318B00085160000F88 +:105750008E58000C3C06010134CA080AACEA002845 +:105760008F4B0074AD2B00043C0C0800918C3D90D5 +:105770003187001050E00003AD2000088F62006008 +:10578000AD2200082528000C8E58000C0300F809F3 +:10579000010020213C19080097393D8A3C1F080070 +:1057A00097FF3D7E033F782125E900020E0000C7E8 +:1057B0003124FFFF3C0E08008DCE3D6C3C080800F4 +:1057C0008D083D7401C828233C010800AC253D6CC0 +:1057D00014A00006000000003C0308008C633D8C10 +:1057E000346400403C010800AC243D8C1200007081 +:1057F0008F8C00448F470E108F900044AE0700201E +:105800008F4D0E18AE0D00243C10080096103D8000 +:105810000E0000600000000024020040AF420814A7 +:105820008F8600508F8A004C00D01821006A5823C0 +:1058300019600004AF830050AF6300548F650054BB +:10584000AF85004C1200000C000000008F44007473 +:10585000936800813409FA002D0E000711C000057D +:1058600000891821937F0081241901F403F9780439 +:1058700001E41821AF63000C8F44095C8F83005C46 +:105880000083C0231B000003000000008F50095C50 +:10589000AF90005C0E000062000000008F8C005092 +:1058A0008E4700103C010800AC2C3D9400E0F80944 +:1058B000000000003C0D08008DAD3D6C55A0FEF5CC +:1058C000240700068F450024975909088F8B006430 +:1058D0008F9400503C0F001F978200588F86005411 +:1058E0008F93004C3328FFFF35E9FF8000A9502437 +:1058F000000871C032320100AF4E0024A4C2002C57 +:10590000AF4A0024AF6B0044AF740050AF73005433 +:105910001640008032380010570000868EA4000424 +:10592000322300405460001B8EB100088EB0000C82 +:105930000200F809000000008FBF00308FB5002C76 +:105940008FB400288FB300248FB200208FB1001CC9 +:105950008FB0001803E0000827BD00389347010905 +:105960008F8800380007FE0003E8C825AF59008083 +:105970008F5809A08F5309A4AFB80010AF580E1468 +:105980008FB40010AF540E10AF530E1C0A00096202 +:10599000AF530E180220F809000000008EB0000C72 +:1059A0000200F809000000000A000AA88FBF0030BA +:1059B000A5800020A59300220A000A5BAD93002475 +:1059C0003C09080095293D863C06080094C63D80A8 +:1059D0000A0009F4012610213C010800AC203D70AA +:1059E0000A00098E8E4200003C010800AC243D7084 +:1059F0000A00098E8E4200003C03080094633D8A31 +:105A00003C04080094843D803C1F080097FF3D7CC7 +:105A1000951800240064C821033F782300186C0007 +:105A200025EEFFF201AE2825AC45000C240208004B +:105A3000ACE20014ACE000100A0009EF24E7001803 +:105A400095060024950900280006240000091C0082 +:105A5000349F810034790800ACFF000CACF90010D1 +:105A60000A0009EF24E700141460FEFB00000000A8 +:105A70009518002400187C0035EE0800ACEE000CF0 +:105A80000A0009EF24E700103C07080094E73D8076 +:105A90003C04080094843D8A3C03080094633D7CE8 +:105AA00095190024951800280087F82103E378232E +:105AB0002407080000192C0000186C0025EEFFEEEA +:105AC00001AE302534A28100AD2700182527001C27 +:105AD000AD22000CAD2600100A0009EFAD20001425 +:105AE00093520109000028210E000602324400FFF3 +:105AF0008FBF00308FB5002C8FB400288FB30024E7 +:105B00008FB200208FB1001C8FB0001803E0000896 +:105B100027BD0038935F010933E400FF0E00066DD6 +:105B200000002821323800105300FF7E322300404D +:105B30008EA400040080F809000000000A000AA2F8 +:105B4000322300401200FF5F000000008F540E144B +:105B50008F920044AE5400208F530E1C0A000A8A14 +:105B6000AE5300248F82001C008040213C040100C1 +:105B70009047008530E3002010600009000000001D +:105B80003C0708008CE73D948F83001800E3202336 +:105B9000048000089389000414E30003010020211D +:105BA00003E00008008010213C04010003E000082D +:105BB000008010211120000B006738238F8C0020FB +:105BC00024090034918B00BC316A0002514000016D +:105BD0002409003000E9682B15A0FFF10100202105 +:105BE00000E938232419FFFC00B9C02400F9782407 +:105BF00000F8702B15C0FFEA01E8202130C2000335 +:105C00000002182314C00012306900030000302184 +:105C100000A9702101C6682100ED602B1180FFE012 +:105C20003C0401002D2F00010006482B01053821FE +:105C300001E9302414C0FFDA24E4FFFC2419FFFC3E +:105C400000B9C0240308202103E0000800801021CF +:105C50008F8B002024060004916A00BC31440004AC +:105C60001480FFEC00A970210A000B5E00003021B7 +:105C700027BDFFE8AFBF00108F460100934A01091E +:105C80003C1F08008FFF00902407FF80314F00FF6A +:105C900031E8007F0008614003E6C821032CC021E1 +:105CA00027090120012770243C010800A02F3DD0C6 +:105CB000AF4E080C3C0D08008DAD00903C040080F8 +:105CC0003482000301A65821016C182124650120AB +:105CD00030AA007801424025AF48081C3C1F08004C +:105CE0008FFF00908F88004003E6C0213319000722 +:105CF00003074824033A7821AF49002825E909C061 +:105D0000952E00023C0D08008DAD008C3C0A080069 +:105D10008D4A009031CC3FFF01A61821000C59801C +:105D2000006B282100A72024AF44002C95220002FC +:105D30003C1F08008FFF008C9107008530593FFF02 +:105D400003E678210019C1800146702101F868211D +:105D500031CC007F31AB007F019A2821017A50219C +:105D60003C03000C3C04000E00A328210144102138 +:105D700030E6002027470980AF82002CAF88001C46 +:105D8000AF890024AF85002010C00006AF8700282F +:105D90008D0200508CA4010C0044302318C0007701 +:105DA00000000000910C0085240DFFDF018D3824D8 +:105DB000A10700858F8B001C8F8900248F87002806 +:105DC0008D65004CAF850018912F000D31EE00203D +:105DD00011C000170000000024090001A38900047D +:105DE000AF80000C8CE400248F85000C240A00088E +:105DF000AF800008AF8000103C010800A42A3D7E5F +:105E00003C010800A4203D920E000B32000030211E +:105E10008F8500248FBF0010AF82001490A8000D62 +:105E200027BD00180008394203E0000830E20001F5 +:105E3000913F00022418000133F900FF001921826C +:105E400010980039240800021088005B8F86002C0F +:105E50008CE5002414A0001B8F9F002091220000DD +:105E6000240A00053046003F10CA00472404000100 +:105E70008F860008A3840004AF860010AF86000C54 +:105E80008CE400248F85000C240A00083C010800E3 +:105E9000A42A3D7E3C010800A4203D920E000B3256 +:105EA000000000008F8500248FBF0010AF82001417 +:105EB00090A8000D27BD00180008394203E0000833 +:105EC00030E200018CF800088CF900248FEE00C449 +:105ED000A38000048CE40024AF8E000C8F85000C9E +:105EE0008F86000803197823240A0008AF8F00105A +:105EF0003C010800A42A3D7E3C010800A4203D92FC +:105F00000E000B32000000008F8500248FBF0010B0 +:105F1000AF82001490A8000D27BD00180008394278 +:105F200003E0000830E20001912300003062003FEE +:105F3000104400278F8500208CE400241480002169 +:105F4000000000008D2E00183C187FFF8F85002078 +:105F5000370FFFFF01CF1824AF8300088F9F000881 +:105F60008CA8008403E8C82B1720000203E020213E +:105F70008CA400840A000BEDAF8400088CA3010CF4 +:105F80000A000BCBAF8300188D2C00188F860008F9 +:105F90003C0D7FFF8F89002035A3FFFF018358242C +:105FA00024040001AF8B0010AD2000CCA3840004BA +:105FB0000A000BF9AF86000C8CCA00140A000BED26 +:105FC000AF8A00088CA300C80A000C30AF83000819 +:105FD0008F84002C8CAC00648C8D0014018D582BA8 +:105FE00011600004000000008CA200640A000C3064 +:105FF000AF8200088C8200140A000C30AF820008C7 +:106000008F85000C27BDFFE0AFBF0018AFB10014B3 +:1060100014A00007AFB000108F86002424020005F2 +:1060200090C400003083003F106200B68F840020CF +:106030008F91000800A080218F8C00283C0508006B +:106040008CA53D708D8B000431663FFF00C5502B41 +:106050005540000100C02821938D000411A0007359 +:1060600000B0F82B8F98002024040034930F00BC5C +:1060700031EE000251C000012404003000A4C82BFE +:10608000172000D10000000000A4282300B0F82B46 +:106090003C010800A4243D7C17E000680200202198 +:1060A0003C0308008C633D6C0083102B54400001BE +:1060B000008018218F8800243C010800AC233D7427 +:1060C000000048219104000D308300205060000141 +:1060D0008F490E188F8300140123382B10E00059CC +:1060E000000000003C0408008C843D7400895821A5 +:1060F000006B502B114000560090602B006930233C +:1061000000C020213C010800AC263D7412000003B1 +:10611000241FFFFC1090008A32270003009FC82430 +:106120003C010800AC393D743C010800A4203D92BC +:106130008F84000C120400078F830020AF910008A9 +:10614000020020218C7100CCAF90000C26300001A1 +:10615000AC7000CC3C0208008C423D748F8A001069 +:10616000240700180082202301422823AF84000C5A +:1061700010800002AF850010240700108F86001CDD +:106180003C010800A0273D902407004090CC0085EA +:10619000318B00C0116700408F8D001414A00015D2 +:1061A00000002021934A01098F420974314500FF04 +:1061B0000002260224A300013090007F3071007F8E +:1061C0001230007A2407FF80A0C300833C09080036 +:1061D0008D293D8C8F880024240D0002352C000869 +:1061E0003C010800A02D3DD13C010800AC2C3D8CA9 +:1061F00024040010910E000D31C6002010C00005CF +:1062000000801821240800013C010800AC283D74DE +:10621000348300018FBF00188FB100148FB00010BD +:106220000060102103E0000827BD00203C010800A9 +:10623000A4203D7C13E0FF9A020020210A000C817B +:1062400000A020213C0408008C843D740090602B49 +:106250001180FFAE000000003C0F080095EF3D7C70 +:1062600001E4702101C6682B11A000072C820004F4 +:106270003C1F60008FF954043338003F1700FFE5DE +:10628000240300422C8200041040FFA0240300429B +:106290000A000CDF8FBF0018152DFFC000000000A2 +:1062A0008CDF00743C0380002405FF8003E3C825D5 +:1062B000ACD9007490D80085240E0004240400108A +:1062C000330F003F01E54025A0C800858F880024DA +:1062D0003C010800A02E3DD1240300019106000DD1 +:1062E00030C9002015200003000000003C03080016 +:1062F0008C633D743C010800AC233D6C0A000CD655 +:10630000000000008F8700108C88008400E8282B94 +:1063100014A0000200E088218C910084240900016F +:10632000A38900048F440E18022028210E000B328E +:1063300002203021022080210A000C67AF82001465 +:1063400000071823306600033C010800A4263D9294 +:10635000122000058F8C0020918B00BC316A000454 +:106360001540001524CD00043C0F080095EF3D9228 +:1063700001E4702100AE302B50C0FF6E8F84000C02 +:106380002C85000514A0FFA32403004230980003CD +:1063900017000002009818232483FFFC3C0108002A +:1063A000AC233D740A000CA30000000000A7582491 +:1063B0000A000CCB016718263C010800A42D3D9271 +:1063C0000A000D33000000003C010800AC203D74C1 +:1063D0000A000CDE240300428F83001014600007C3 +:1063E000000010218F88002424050005910600007C +:1063F00030C400FF108500030000000003E0000827 +:1064000000000000910A0018314900FF000939C25C +:1064100014E0FFFA8F85001C3C04080094843D7C46 +:106420003C0308008C633D943C1908008F393D748F +:106430003C0F080095EF3D920064C0218CAD0054E4 +:106440000319702101CF6021018D58231960001DAF +:1064500000000000910E001C8F8C002C974B0E103A +:1064600031CD00FF8D850004016D30238D88000043 +:1064700030CEFFFF000E510000AAC82100003821D5 +:1064800001072021032A182B0083C021AD990004A5 +:10649000AD980000918F000A01CF6821A18D000AFC +:1064A0008F88002C974B0E12A50B0008950A003818 +:1064B00025490001A50900389107000D34E60008C0 +:1064C000A106000D03E000080000000027BDFFE06A +:1064D000938700048F8F00248FAD00143C0E7FFF44 +:1064E0008F89000C35C8FFFFAFBF001CAFB000188C +:1064F00001A8182491EA000D000717C03C1FBFFF38 +:10650000006258252D2E00018F90001837F9FFFFEB +:106510003C1808008F183D943C0F080095EF3D8A09 +:1065200001796824000E47803C07EFFF3C05F0FF2F +:1065300001A818253149002034E2FFFF34ACFFFFE9 +:106540000310582327A500102406000225EA0002A4 +:1065500000621824008080211520000200004021E4 +:106560008F480E1CA7AA0012056000372407000000 +:1065700030FF00FF001FCF008F8B001C00793825F3 +:10658000AFA70014916F00853C08080091083D9169 +:106590003C18DFFF31EE00C0370AFFFF000E182B5A +:1065A0003C1F080097FF3D8400EA6824A3A800115F +:1065B0000003174001A248258FB90010AFA90014AD +:1065C0003C0A0800914A3D93A7BF00168FA800140B +:1065D000032CC0243C0B01003C0F0FFF030B1825BC +:1065E0003147000335EEFFFF010C68240007160059 +:1065F000006EF8243C09700001A2C82503E9582563 +:10660000AFB90014AFAB00100E000076A3A00015C8 +:106610008F8C0024260200089186000D30C40020D3 +:10662000108000068FBF001C3C05080094A53D802B +:1066300024B0FFFF3C010800A4303D808FB000185B +:1066400003E0000827BD00208F9800140118502B8C +:106650005540FFC7240700010A000DB630FF00FFB8 +:106660009382000427BDFFE0AFBF00181040000F69 +:10667000008050218F880024240B00058F8900089A +:10668000910700008F8400200100282130E3003FA3 +:106690008F86002C106B000800003821AFA9001075 +:1066A0000E00040EAFAA0014A38000048FBF0018D0 +:1066B00003E0000827BD00208D1900183C0F0800DA +:1066C0008DEF3D748F9800103C027FFF8D08001401 +:1066D000345FFFFF033F682401F8702101AE60239F +:1066E00001883821AFA900100E00040EAFAA0014D3 +:1066F0000A000E04A38000048F8700243C050800D4 +:1067000094A53D923C0208008C423D8C90E6000D21 +:106710000005240030C300201060002C00444025F8 +:106720008F85001C00006021240B000190A30085D0 +:1067300000004821240A00013C0F800035EE007063 +:106740008DC70000AF8700308F5801780700FFFE2B +:106750003C038000347900708F3800003C0508004D +:106760008CA500743C0D08008DAD007003077823E4 +:1067700000AF38210000102100EF302B01A22021B2 +:10678000008618213C010800AC2700743C01080079 +:10679000AC230070AF4B01483C1908008F393D9481 +:1067A000A7490144A74A0146AF59014C3C0B0800D8 +:1067B000916B3D91A34B0152AF4801543C0810002E +:1067C000A74C015803E00008AF4801788F4B0E1C1E +:1067D0003C0A08008D4A3D7497490E16974D0E14D9 +:1067E00001456021312AFFFF0A000E2731A9FFFF72 +:1067F0008F8300249064000D308200201040002917 +:10680000000000000000482100005021000040214D +:106810003C07800034EB00708D670000AF870030CC +:106820008F4C01780580FFFE3C0D800035AC007078 +:106830008D8B00003C0508008CA500743C0408000A +:106840008C8400700167302300A67821000010219D +:1068500001E6C82B0082C021031970213C01080009 +:10686000AC2F00743C010800AC2E0070AF49014809 +:106870003C0D08008DAD3D94A7480144240900401B +:10688000A74A01463C081000240AFF91AF4D014C75 +:10689000A34A0152AF490154A740015803E0000840 +:1068A000AF4801788F490E1897460E1297450E1083 +:1068B00030CAFFFF0A000E5D30A8FFFF8F8300245F +:1068C00027BDFFF89064000D308200201040003A90 +:1068D00000000000240B000100004821240A0001F0 +:1068E0003C088000350700708CE30000AF83003067 +:1068F0008F4C01780580FFFE3C0E80003C040800B0 +:1069000090843DD035C700708CEC00003C05080039 +:106910008CA50074A3A400033C1908008F390070F3 +:106920008FAD00000183302300A638210000102124 +:106930000322782100E6C02B01F8602101AE40253A +:10694000AFA800003C010800AC2700743C0108001F +:10695000AC2C00709346010A3C04080090843DD1A1 +:10696000A3A00002A3A600018FA300003C0580FFA6 +:106970003099007F34A2FFFF006278240019C6001E +:1069800001F87025240D3000AF4E014C27BD0008E2 +:10699000AF4D0154A7400158AF4B0148A7490144EE +:1069A000A74A01463C091000240AFF80A34A01526D +:1069B00003E00008AF4901788F4B0E1897460E127E +:1069C00097450E1030CAFFFF0A000E9130A9FFFF55 +:1069D0008F85001C2402008090A40085308300C0B5 +:1069E000106200058F8600208F8800088F87000CBA +:1069F000ACC800C8ACC700C403E000080000000039 +:106A00003C0A0800254A39543C09080025293A2047 +:106A10003C08080025082DD43C07080024E73B3437 +:106A20003C06080024C637C43C05080024A5353CB4 +:106A30003C040800248431643C0308002463385C6F +:106A40003C020800244236303C010800AC2A3D508C +:106A50003C010800AC293D4C3C010800AC283D48F5 +:106A60003C010800AC273D543C010800AC263D64C5 +:106A70003C010800AC253D5C3C010800AC243D58BD +:106A80003C010800AC233D683C010800AC223D609D +:086A900003E000080000000013 +:00000001FF --- linux-4.8.0.orig/firmware/bnx2/bnx2-mips-09-6.2.1b.fw.ihex +++ linux-4.8.0/firmware/bnx2/bnx2-mips-09-6.2.1b.fw.ihex @@ -0,0 +1,6496 @@ +:10000000080001180800000000005594000000C816 +:1000100000000000000000000000000008005594EF +:10002000000000380000565C080000A00800000036 +:100030000000574400005694080059200000008436 +:100040000000ADD808005744000001C00000AE5CBD +:100050000800321008000000000092580000B01C98 +:10006000000000000000000000000000080092589E +:100070000000033C000142740800049008000400E2 +:10008000000012FC000145B000000000000000006C +:1000900000000000080016FC00000004000158AC3D +:1000A000080000A80800000000003D00000158B052 +:1000B00000000000000000000000000008003D00FB +:1000C00000000030000195B00A000046000000006A +:1000D000000000000000000D636F6D362E322E31DF +:1000E00062000000060201020000000000000003A0 +:1000F000000000C800000032000000030000000003 +:1001000000000000000000000000000000000000EF +:1001100000000010000001360000EA600000000549 +:1001200000000000000000000000000000000008C7 +:1001300000000000000000000000000000000000BF +:1001400000000000000000000000000000000000AF +:10015000000000000000000000000000000000009F +:10016000000000020000000000000000000000008D +:10017000000000000000000000000000000000007F +:10018000000000000000000000000010000000005F +:10019000000000000000000000000000000000005F +:1001A000000000000000000000000000000000004F +:1001B000000000000000000000000000000000003F +:1001C000000000000000000000000000000000002F +:1001D000000000000000000000000000000000001F +:1001E0000000000010000003000000000000000DEF +:1001F0000000000D3C020800244256083C030800A1 +:1002000024635754AC4000000043202B1480FFFDB2 +:10021000244200043C1D080037BD9FFC03A0F021D0 +:100220003C100800261001183C1C0800279C5608AA +:100230000E000256000000000000000D27BDFFB4B4 +:10024000AFA10000AFA20004AFA30008AFA4000C50 +:10025000AFA50010AFA60014AFA70018AFA8001CF0 +:10026000AFA90020AFAA0024AFAB0028AFAC002C90 +:10027000AFAD0030AFAE0034AFAF0038AFB8003C28 +:10028000AFB90040AFBC0044AFBF00480E001544FA +:10029000000000008FBF00488FBC00448FB90040B1 +:1002A0008FB8003C8FAF00388FAE00348FAD003078 +:1002B0008FAC002C8FAB00288FAA00248FA90020C0 +:1002C0008FA8001C8FA700188FA600148FA5001000 +:1002D0008FA4000C8FA300088FA200048FA1000040 +:1002E00027BD004C3C1B60108F7A5030377B502864 +:1002F00003400008AF7A00008F82002427BDFFE092 +:10030000AFB00010AFBF0018AFB100148C42000CAA +:100310003C1080008E110100104000348FBF001887 +:100320000E000D84000000008F85002024047FFF54 +:100330000091202BACB100008E030104960201084D +:1003400000031C003042FFFF00621825ACA300042C +:100350009202010A96030114304200FF3063FFFF4E +:100360000002140000431025ACA200089603010C03 +:100370009602010E00031C003042FFFF00621825A8 +:10038000ACA3000C960301109602011200031C009E +:100390003042FFFF00621825ACA300108E02011846 +:1003A000ACA200148E02011CACA20018148000083C +:1003B0008F820024978200003C0420050044182509 +:1003C00024420001ACA3001C0A0000C6A782000062 +:1003D0003C0340189442001E00431025ACA2001CB0 +:1003E0000E000DB8240400018FBF00188FB1001457 +:1003F0008FB000100000102103E0000827BD00208E +:100400003C0780008CE202B834E50100044100089A +:10041000240300013C0208008C42006024420001D9 +:100420003C010800AC22006003E0000800601021DD +:100430003C0208008C42005C8CA4002094A30016AF +:100440008CA6000494A5000E24420001ACE40280B6 +:100450002463FFFC3C010800AC22005C3C0210005D +:10046000A4E30284A4E5028600001821ACE6028819 +:10047000ACE202B803E000080060102127BDFFE0F5 +:100480003C028000AFB0001034420100AFBF001C3E +:10049000AFB20018AFB100148C43000094450008BF +:1004A0002462FE002C42038110400003000381C23D +:1004B0000A00010226100004240201001462000553 +:1004C0003C1180003C02800890420004305000FF44 +:1004D0003C11800036320100964300143202000FB6 +:1004E00000021500004310253C0308008C63004403 +:1004F00030A40004AE220080246300013C01080007 +:10050000AC2300441080000730A200028FBF001C03 +:100510008FB200188FB100148FB000100A0000CE07 +:1005200027BD00201040002D0000182130A20080BF +:1005300010400005362200708E44001C0E000C672F +:10054000240500A0362200708C4400008F82000C2D +:10055000008210232C43012C10600004AF82001095 +:10056000240300010A000145AF84000C8E42000400 +:100570003C036020AF84000CAC6200143C02080015 +:100580008C42005850400015000018218C62000475 +:10059000240301FE304203FF144300100000182121 +:1005A0002E020004104000032E0200080A00014041 +:1005B0000000802114400003000000000A000140F8 +:1005C0002610FFF90000000D2402000202021004B0 +:1005D0003C036000AC626914000018218FBF001C4E +:1005E0008FB200188FB100148FB00010006010217E +:1005F00003E0000827BD00203C0480008C8301003C +:1006000024020100506200033C0280080000000D3B +:100610003C02800890430004000010213063000F6A +:1006200000031D0003E00008AC8300800004188074 +:100630002782FF9C00621821000410C00044102390 +:100640008C640000000210C03C030800246356E4E0 +:10065000004310213C038000AC64009003E00008DC +:10066000AF8200243C0208008C42011410400019A3 +:100670003084400030A2007F000231C03C02020002 +:100680001080001400A218253C026020AC43001426 +:100690003C0408008C8456B83C0308008C630110AD +:1006A0003C02800024050900AC4500200086202182 +:1006B000246300013C028008AC4400643C01080053 +:1006C000AC2301103C010800AC2456B803E000083C +:1006D000000000003C02602003E00008AC4500146C +:1006E00003E000080000102103E0000800001021D2 +:1006F00030A2000810400008240201003C0208005B +:100700008C42010C244200013C010800AC22010C87 +:1007100003E0000800000000148200080000000050 +:100720003C0208008C4200FC244200013C0108000D +:10073000AC2200FC0A0001A330A200203C02080009 +:100740008C420084244200013C010800AC22008459 +:1007500030A200201040000830A200103C02080027 +:100760008C420108244200013C010800AC2201082F +:1007700003E0000800000000104000080000000036 +:100780003C0208008C420104244200013C010800A4 +:10079000AC22010403E00008000000003C02080055 +:1007A0008C420100244200013C010800AC220100FF +:1007B00003E000080000000027BDFFE0AFB1001417 +:1007C0003C118000AFB20018AFBF001CAFB00010EA +:1007D0003632010096500008320200041040000733 +:1007E000320300028FBF001C8FB200188FB10014BB +:1007F0008FB000100A0000CE27BD00201060000B53 +:10080000020028218E2401000E00018A0000000051 +:100810003202008010400003240500A10E000C6786 +:100820008E44001C0A0001E3240200018E2301040F +:100830008F82000810430006020028218E24010048 +:100840000E00018A000000008E220104AF82000821 +:10085000000010218FBF001C8FB200188FB1001450 +:100860008FB0001003E0000827BD00202C82000498 +:1008700014400002000018212483FFFD240200021E +:10088000006210043C03600003E00008AC626914DD +:1008900027BDFFE0AFBF001CAFB20018AFB100141E +:1008A000AFB000103C048000948201083043700017 +:1008B000240220001062000A2862200154400052E5 +:1008C0008FBF001C24024000106200482402600018 +:1008D0001062004A8FBF001C0A0002518FB200183C +:1008E00034820100904300098C5000189451000C90 +:1008F000240200091062001C0000902128620009F7 +:10090000144000218F8200242402000A5062001249 +:10091000323100FF2402000B1062000F00000000C3 +:100920002402000C146200188F8200243C0208008C +:100930008C4256B824030900AC83002000501021DB +:100940003C038008AC6200643C010800AC2256B84D +:100950000A0002508FBF001C0E0001E900102602A1 +:100960000A0002308F8200240E0001E900102602E6 +:100970003C0380089462001A8C72000C3042FFFF26 +:10098000020280258F8200248C42000C5040001E01 +:100990008FBF001C0E000D84000000003C02800090 +:1009A00034420100944300088F82002400031C009D +:1009B0009444001E8F82002000641825AC50000073 +:1009C00024040001AC510004AC520008AC40000CFF +:1009D000AC400010AC400014AC4000180E000DB844 +:1009E000AC43001C0A0002508FBF001C0E000440E4 +:1009F000000000000A0002508FBF001C0E000C9F78 +:100A0000000000008FBF001C8FB200188FB10014CF +:100A10008FB000100000102103E0000827BD002067 +:100A200027BDFFD8AFB400203C036010AFBF002447 +:100A3000AFB3001CAFB20018AFB10014AFB00010DC +:100A40008C6450002402FF7F3C1408002694563822 +:100A5000008220243484380CAC6450003C028000B6 +:100A6000240300370E0014B0AC4300083C07080014 +:100A700024E70618028010212404001D2484FFFFAF +:100A8000AC4700000481FFFD244200043C02080042 +:100A9000244207C83C010800AC2256403C02080032 +:100AA000244202303C030800246306203C04080072 +:100AB000248403B43C05080024A506F03C06080085 +:100AC00024C62C9C3C010800AC2256803C02080045 +:100AD000244205303C010800AC2756843C01080044 +:100AE000AC2656943C010800AC23569C3C010800FF +:100AF000AC2456A03C010800AC2556A43C010800DB +:100B0000AC2256A83C010800AC23563C3C0108002E +:100B1000AC2456443C010800AC2056603C0108005F +:100B2000AC2556643C010800AC2056703C0108001E +:100B3000AC27567C3C010800AC2656903C010800CE +:100B4000AC2356980E00056E00000000AF80000C2C +:100B50003C0280008C5300008F8300043C0208009C +:100B60008C420020106200213262000700008821C0 +:100B70002792FF9C3C100800261056E43C02080017 +:100B80008C42002024050001022518040043202483 +:100B90008F820004004310245044000C26310001D1 +:100BA00010800008AF9000248E4300003C028000BB +:100BB000AC4300900E000D4BAE05000C0A0002C1C4 +:100BC00026310001AE00000C263100012E22000269 +:100BD000261000381440FFE9265200043C020800A9 +:100BE0008C420020AF820004326200071040FFD91F +:100BF0003C028000326200011040002D326200028F +:100C00003C0580008CA2010000002021ACA2002045 +:100C10008CA301042C42078110400008ACA300A85B +:100C200094A2010824032000304270001443000302 +:100C30003C02800890420005304400FF0E0001593C +:100C4000000000003C0280009042010B304300FF96 +:100C50002C62001E54400004000310800E00018628 +:100C60000A0002EC00000000005410218C42000039 +:100C70000040F80900000000104000043C02800021 +:100C80008C4301043C026020AC4300143C02080089 +:100C90008C4200343C0440003C03800024420001AC +:100CA000AC6401383C010800AC220034326200021E +:100CB00010400010326200043C1080008E0201409F +:100CC000000020210E000159AE0200200E00038317 +:100CD000000000003C024000AE0201783C02080027 +:100CE0008C420038244200013C010800AC2200384C +:100CF000326200041040FF973C0280003C108000EC +:100D00008E020180000020210E000159AE02002059 +:100D10008E03018024020F00546200073C02800809 +:100D20008E0201883C0300E03042FFFF00431025A3 +:100D30000A000328AE020080344200809042000086 +:100D400024030050304200FF14430007000000005D +:100D50000E000362000000001440000300000000C9 +:100D60000E000971000000003C0208008C42003CAB +:100D70003C0440003C03800024420001AC6401B804 +:100D80003C010800AC22003C0A0002A33C028000A7 +:100D90003C02900034420001008220253C02800089 +:100DA000AC4400203C0380008C6200200440FFFE25 +:100DB0000000000003E00008000000003C0280008A +:100DC000344300010083202503E00008AC440020E8 +:100DD00027BDFFE0AFB10014AFB000100080882144 +:100DE000AFBF00180E00033230B000FF8F83FF94B6 +:100DF000022020219062002502028025A07000259B +:100E00008C7000183C0280000E00033D020280241A +:100E10001600000B8FBF00183C0480008C8201F884 +:100E20000440FFFE348201C024030002AC510000E4 +:100E3000A04300043C021000AC8201F88FBF0018F0 +:100E40008FB100148FB0001003E0000827BD002010 +:100E500027BDFFE83C028000AFBF00103442018094 +:100E6000944300048C4400083063020010600005C5 +:100E7000000028210E00100C000000000A0003787A +:100E8000240500013C02FF000480000700821824B2 +:100E90003C02040014620004240500018F82FF94C8 +:100EA00090420008240500018FBF001000A010210F +:100EB00003E0000827BD00188F82FF982405000179 +:100EC000A040001A3C028000344201400A00034264 +:100ED0008C4400008F85FF9427BDFFE0AFBF001C4E +:100EE000AFB20018AFB10014AFB0001090A2000074 +:100EF000304400FF38830020388200300003182B74 +:100F00000002102B0062182410600003240200501D +:100F1000148200A88FBF001C90A20005304200017F +:100F2000104000A48FBF001C3C02800034420140EE +:100F3000904200082443FFFF2C6200051040009EF1 +:100F40008FB20018000310803C030800246355ACE6 +:100F5000004310218C420000004000080000000007 +:100F60003C028000345101400E0003328E24000008 +:100F70008F92FF948E2200048E50000C1602000205 +:100F800024020001AE42000C0E00033D8E2400003E +:100F90008E220004145000068FBF001C8FB2001870 +:100FA0008FB100148FB000100A000F7827BD002009 +:100FB0008E42000C0A000419000000003C0480006E +:100FC0003482014094A300108C4200043063FFFF80 +:100FD0001443001C0000000024020001A4A2001021 +:100FE0008C8202380441000F3C0380003C02003F29 +:100FF0003448F0003C0760003C06FFC08CE22BBC8C +:1010000000461824004810240002130200031D8229 +:10101000106200583C0280008C8202380440FFF7C6 +:101020003C038000346201408C44000034620200C2 +:10103000AC4400003C021000AC6202380A00043BE1 +:101040008FBF001C94A200100A00041900000000C9 +:10105000240200201482000F3C0280003C03800028 +:1010600094A20012346301408C6300043042FFFFFD +:10107000146200050000000024020001A4A2001276 +:101080000A0004028FBF001C94A200120A00041977 +:1010900000000000345101400E0003328E24000095 +:1010A0008F92FF948E230004964200123050FFFF6F +:1010B0001603000224020001A64200120E00033DA6 +:1010C0008E2400008E220004160200068FBF001C32 +:1010D0008FB200188FB100148FB000100A00037C8B +:1010E00027BD0020964200120A00041900000000EB +:1010F0003C03800094A20014346301408C6300041C +:101100003042FFFF14620008240200018FBF001C60 +:101110008FB200188FB100148FB00010A4A2001479 +:101120000A00146327BD002094A20014144000217B +:101130008FBF001C0A000435000000003C03800043 +:1011400094A20016346301408C6300043042FFFF18 +:101150001462000D240200018FBF001C8FB2001822 +:101160008FB100148FB00010A4A200160A000B1457 +:1011700027BD00209442007824420004A4A200105D +:101180000A00043B8FBF001C94A200162403000138 +:101190003042FFFF144300078FBF001C3C020800D1 +:1011A0008C420070244200013C010800AC22007017 +:1011B0008FBF001C8FB200188FB100148FB00010C9 +:1011C00003E0000827BD002027BDFFD8AFB20018FC +:1011D0008F92FF94AFB10014AFBF0020AFB3001CDB +:1011E000AFB000103C028000345101008C5001006F +:1011F0009242000092230009304400FF2402001FA5 +:10120000106200AB28620020104000192402003850 +:101210002862000A1040000D2402000B286200081A +:101220001040002E8F820024046001042862000216 +:101230001440002A8F820024240200061062002637 +:101240008FBF00200A00055F8FB3001C1062006092 +:101250002862000B144000FA8FBF00202402000E09 +:10126000106200788F8200240A00055F8FB3001C93 +:10127000106200D2286200391040000A2402008067 +:1012800024020036106200E528620037104000C3D7 +:1012900024020035106200D98FBF00200A00055FCC +:1012A0008FB3001C1062002D2862008110400006E0 +:1012B000240200C824020039106200C98FBF002038 +:1012C0000A00055F8FB3001C106200A28FBF0020D0 +:1012D0000A00055F8FB3001C8F8200248C42000C33 +:1012E000104000D78FBF00200E000D8400000000CA +:1012F0003C038000346301008C6200008F85002075 +:10130000946700089466000CACA200008C64000492 +:101310008F82002400063400ACA400049448001E10 +:101320008C62001800073C0000E83825ACA20008D9 +:101330008C62001C24040001ACA2000C9062000A24 +:1013400000C23025ACA60010ACA00014ACA0001860 +:10135000ACA7001C0A00051D8FBF00208F8200244F +:101360008C42000C104000B68FBF00200E000D8490 +:10137000000000008F820024962400089625000CAF +:101380009443001E000422029626000E8F82002045 +:10139000000426000083202500052C003C0300806B +:1013A00000A6282500832025AC400000AC400004A6 +:1013B000AC400008AC40000CAC450010AC40001440 +:1013C000AC400018AC44001C0A00051C24040001B9 +:1013D0009622000C14400018000000009242000504 +:1013E0003042001014400014000000000E000332D0 +:1013F0000200202192420005020020213442001008 +:101400000E00033DA242000592420000240300208A +:10141000304200FF10430089020020218FBF0020CE +:101420008FB3001C8FB200188FB100148FB0001062 +:101430000A00107527BD00280000000D0A00055E97 +:101440008FBF00208C42000C1040007D8FBF002019 +:101450000E000D84000000008E2200048F84002006 +:101460009623000CAC8200003C0280089445002CBE +:101470008F82002400031C0030A5FFFF9446001E4D +:101480003C02400E0065182500C23025AC830004E4 +:10149000AC800008AC80000CAC800010AC80001464 +:1014A000AC800018AC86001C0A00051C2404000156 +:1014B0000E000332020020218F93FF9802002021AA +:1014C0000E00033DA660000C020020210E00034226 +:1014D000240500018F8200248C42000C104000582B +:1014E0008FBF00200E000D84000000009622000C2B +:1014F0008F83002000021400AC700000AC62000476 +:10150000AC6000088E4400388F820024AC64000C6C +:101510008E46003C9445001E3C02401FAC66001005 +:1015200000A228258E62000424040001AC6200148D +:10153000AC600018AC65001C8FBF00208FB3001C8E +:101540008FB200188FB100148FB000100A000DB8D0 +:1015500027BD0028240200201082003A8FB3001C0F +:101560000E000F5E00000000104000358FBF00200D +:101570003C0480008C8201F80440FFFE348201C0EC +:1015800024030002AC500000A04300043C02100001 +:10159000AC8201F80A00055E8FBF00200200202106 +:1015A0008FBF00208FB3001C8FB200188FB10014C2 +:1015B0008FB000100A000EA727BD00289625000C4A +:1015C000020020218FBF00208FB3001C8FB20018B3 +:1015D0008FB100148FB000100A000ECC27BD002878 +:1015E000020020218FB3001C8FB200188FB10014AD +:1015F0008FB000100A000EF727BD00289225000DBD +:10160000020020218FB3001C8FB200188FB100148C +:101610008FB000100A000F4827BD002802002021CB +:101620008FBF00208FB3001C8FB200188FB1001441 +:101630008FB000100A000F1F27BD00288FBF0020A9 +:101640008FB3001C8FB200188FB100148FB0001040 +:1016500003E0000827BD00283C0580008CA202782A +:101660000440FFFE34A2024024030002AC44000008 +:10167000A04300043C02100003E00008ACA2027882 +:10168000A380001803E00008A38000193C03800039 +:101690008C6202780440FFFE8F82001CAC62024024 +:1016A00024020002A06202443C02100003E0000891 +:1016B000AC6202783C02600003E000088C425404F3 +:1016C0009083003024020005008040213063003FF9 +:1016D0000000482114620005000050219082004C57 +:1016E0009483004E304900FF306AFFFFAD00000CCC +:1016F000AD000010AD000024950200148D05001C03 +:101700008D0400183042FFFF004910230002110031 +:10171000000237C3004038210086202300A2102B8E +:101720000082202300A72823AD05001CAD0400186B +:10173000A5090014A5090020A50A001603E0000869 +:10174000A50A002203E000080000000027BDFFD822 +:10175000AFB200183C128008AFB40020AFB3001C39 +:10176000AFB10014AFBF0024AFB00010365101007C +:101770003C0260008C4254049222000C3C1408008D +:10178000929400F7304300FF2402000110620032FF +:101790000080982124020002146200353650008037 +:1017A0000E00143D000000009202004C2403FF8054 +:1017B0003C0480003042007F000211C024420240FD +:1017C0000262102100431824AC8300949245000863 +:1017D0009204004C3042007F3C03800614850007D1 +:1017E000004380212402FFFFA22200112402FFFFF8 +:1017F000A62200120A0005D22402FFFF9602002052 +:10180000A222001196020022A62200128E020024BB +:101810003C048008AE2200143485008090A2004C65 +:1018200034830100A06200108CA2003CAC6200185E +:101830008C820068AC6200F48C820064AC6200F0C0 +:101840008C82006CAC6200F824020001A0A2006847 +:101850000A0005EE3C0480080E001456000000004B +:1018600036420080A04000680A0005EE3C04800873 +:10187000A2000068A20000690A0006293C02800854 +:10188000348300808C62003834850100AC62006CC7 +:1018900024020001A062006990A200D59083000894 +:1018A000305100FF3072007F12320019001111C058 +:1018B00024420240026210212403FF8000431824C6 +:1018C0003C048000AC8300943042007F3C038006DF +:1018D000004380218E02000C1040000D02002021E8 +:1018E0000E00057E0000000026220001305100FF9E +:1018F0009203003C023410260002102B0002102339 +:101900003063007F022288240A0005F8A203003C0D +:101910003C088008350401008C8200E03507008017 +:10192000ACE2003C8C8200E0AD02000090E5004C8F +:10193000908600D590E3004C908400D52402FF806F +:1019400000A228243063007F308400FF00A62825F1 +:101950000064182A1060000230A500FF38A500803E +:10196000A0E5004CA10500093C0280089043000E50 +:10197000344400803C058000A043000A8C8300189A +:101980003C027FFF3442FFFF00621824AC83001842 +:101990008CA201F80440FFFE00000000ACB301C0BF +:1019A0008FBF00248FB400208FB3001C8FB20018AB +:1019B0008FB100148FB0001024020002A0A201C455 +:1019C00027BD00283C02100003E00008ACA201F88B +:1019D00090A2000024420001A0A200003C030800E5 +:1019E0008C6300F4304200FF144300020080302179 +:1019F000A0A0000090A200008F84001C000211C073 +:101A00002442024024830040008220212402FF80DF +:101A1000008220243063007F3C02800A006218218B +:101A20003C028000AC44002403E00008ACC300008A +:101A300094820006908300058C85000C8C86001033 +:101A40008C8700188C88001C8C8400203C010800C6 +:101A5000A42256C63C010800A02356C53C0108003C +:101A6000AC2556CC3C010800AC2656D03C01080001 +:101A7000AC2756D83C010800AC2856DC3C010800D5 +:101A8000AC2456E003E00008000000003C0280089F +:101A9000344201008C4400343C038000346504006F +:101AA000AC6400388C420038AF850028AC62003C42 +:101AB0003C020005AC6200300000000000000000A5 +:101AC00003E00008000000003C020006308400FF34 +:101AD000008220253C028000AC4400300000000061 +:101AE00000000000000000003C0380008C62000049 +:101AF000304200101040FFFD3462040003E0000893 +:101B0000AF82002894C200003C080800950800CA73 +:101B100030E7FFFF0080482101021021A4C200002D +:101B200094C200003042FFFF00E2102B544000013D +:101B3000A4C7000094A200003C0308008C6300CC02 +:101B400024420001A4A2000094A200003042FFFF42 +:101B5000144300073C0280080107102BA4A00000DA +:101B60005440000101003821A4C700003C02800855 +:101B7000344601008CC3002894A200003C0480007D +:101B80003042FFFE000210C000621021AC82003C17 +:101B90008C82003C006218231860000400000000E2 +:101BA0008CC200240A0006BA244200018CC2002420 +:101BB000AC8200383C020050344200103C038000EC +:101BC000AC620030000000000000000000000000D7 +:101BD0008C620000304200201040FFFD0000000039 +:101BE00094A200003C04800030420001000210C0BA +:101BF000004410218C430400AD2300008C420404F7 +:101C0000AD2200043C02002003E00008AC8200305A +:101C100027BDFFE0AFB20018AFB10014AFB00010A5 +:101C2000AFBF001C94C2000000C080213C1208001D +:101C3000965200C624420001A6020000960300004E +:101C400094E2000000E03021144300058FB1003021 +:101C50000E00068F024038210A0006F10000000045 +:101C60008C8300048C82000424420040046100073D +:101C7000AC8200048C8200040440000400000000D8 +:101C80008C82000024420001AC8200009602000019 +:101C90003042FFFF50520001A600000096220000D3 +:101CA00024420001A62200003C02800834420100C8 +:101CB000962300009442003C144300048FBF001C94 +:101CC00024020001A62200008FBF001C8FB2001862 +:101CD0008FB100148FB0001003E0000827BD002072 +:101CE00027BDFFE03C028008AFBF0018344201006E +:101CF0008C4800343C03800034690400AC68003830 +:101D00008C42003830E700FFAF890028AC62003C0D +:101D10003C020005AC620030000000000000000042 +:101D200000000000000000000000000000000000B3 +:101D30008C82000C8C82000C97830016AD22000070 +:101D40008C82001000604021AD2200048C820018BB +:101D5000AD2200088C82001CAD22000C8CA2001465 +:101D6000AD2200108C820020AD220014908200056C +:101D7000304200FF00021200AD2200188CA20018B1 +:101D8000AD22001C8CA2000CAD2200208CA2001001 +:101D9000AD2200248CA2001CAD2200288CA20020C1 +:101DA000AD22002C3402FFFFAD260030AD20003400 +:101DB000506200013408FFFFAD28003850E00011E8 +:101DC0003C0280083C048008348401009482005066 +:101DD0003042FFFFAD22003C9483004494850044D0 +:101DE000240200013063FFFF000318C200641821C1 +:101DF0009064006430A5000700A210040A00075C8C +:101E00000044102534420100AD20003C94430044BE +:101E1000944400443063FFFF000318C2006218219D +:101E200030840007906500642402000100821004E1 +:101E30000002102700451024A0620064000000008A +:101E400000000000000000003C0200063442004098 +:101E50003C038000AC620030000000000000000085 +:101E6000000000008C620000304200101040FFFDB6 +:101E70003C06800834C201503463040034C7014A70 +:101E800034C4013434C5014034C60144AFA200104B +:101E90000E0006D2AF8300288FBF001803E00008B1 +:101EA00027BD00208F8300143C0608008CC600E884 +:101EB0008F82001C30633FFF000319800046102111 +:101EC000004310212403FF80004318243C068000B7 +:101ED000ACC300283042007F3C03800C004330211B +:101EE00090C2000D30A500FF0000382134420010E0 +:101EF000A0C2000D8F8900143C028008344201000A +:101F00009443004400091382304800032402000176 +:101F1000A4C3000E1102000B2902000210400005AC +:101F2000240200021100000C240300010A0007A48F +:101F30000000182111020006000000000A0007A49A +:101F4000000018218CC2002C0A0007A424430001C1 +:101F50008CC20014244300018CC200180043102BD3 +:101F60005040000A240700012402002714A20003A5 +:101F70003C0380080A0007B1240700013463010014 +:101F80009462004C24420001A462004C00091382B8 +:101F9000304300032C620002104000090080282119 +:101FA000146000040000000094C200340A0007C15D +:101FB0003046FFFF8CC600380A0007C10080282188 +:101FC000000030213C040800248456C00A000706A3 +:101FD0000000000027BDFF90AFB60068AFB50064F9 +:101FE000AFB40060AFB3005CAFB20058AFB1005403 +:101FF000AFBF006CAFB000508C9000000080B021EB +:102000003C0208008C4200E8960400328F83001CDA +:102010002414FF8030843FFF0062182100042180D7 +:1020200000641821007410243C13800000A090214B +:1020300090A50000AE620028920400323C02800CA1 +:102040003063007F00628821308400C02402004099 +:10205000148200320000A8218E3500388E2200182C +:102060001440000224020001AE2200189202003C3B +:10207000304200201440000E8F83001C000511C068 +:102080002442024000621821306400783C02008043 +:102090000082202500741824AE630800AE64081086 +:1020A0008E2200188E03000800431021AE22001873 +:1020B0008E22002C8E230018244200010062182B6F +:1020C0001060004300000000924200002442000122 +:1020D000A24200003C0308008C6300F4304200FF81 +:1020E00050430001A2400000924200008F84001C77 +:1020F000000211C024420240248300403063007F6C +:10210000008220213C02800A0094202400621821D1 +:10211000AE6400240A0008D2AEC30000920300326D +:102120002402FFC000431024304200FF1440000589 +:1021300024020001AE220018962200340A00084250 +:102140003055FFFF8E22001424420001AE220018F9 +:102150009202003000021600000216030441001C27 +:10216000000000009602003227A400100080282101 +:10217000A7A20016960200320000302124070001B9 +:102180003042FFFFAF8200140E000706AFA0001C14 +:10219000960200328F83001C3C0408008C8400E807 +:1021A00030423FFF000211800064182100621821B4 +:1021B00000741024AE62002C3063007F3C02800E5D +:1021C000006218219062000D3042007FA062000D75 +:1021D0009222000D304200105040007892420000E0 +:1021E0003C028008344401009482004C8EC30000FD +:1021F0003C130800967300C62442FFFFA482004CE3 +:10220000946200329623000E3054FFFF3070FFFFBF +:102210003C0308008C6300D000701807A7A30038A7 +:102220009482003E3063FFFF3042FFFF14620007DC +:10223000000000008C8200303C038000244200300B +:10224000AC62003C0A00086A8C82002C9482004038 +:102250003042FFFF5462000927A400408C820038FE +:102260003C03800024420030AC62003C8C8200348D +:10227000AC6200380A0008793C03800027A50038CA +:1022800027A60048026038210E00068FA7A000484C +:102290008FA300403C02800024630030AC43003830 +:1022A0008FA30044AC43003C3C0380003C0200058B +:1022B000AC6200303C028008344401009482004249 +:1022C000346304003042FFFF0202102B1440000769 +:1022D000AF8300289482004E9483004202021021B2 +:1022E000004310230A00088F3043FFFF9483004E01 +:1022F00094820042026318210050102300621823C8 +:102300003063FFFF3C028008344401009482003CAB +:102310003042FFFF14430003000000000A00089F42 +:10232000240300019482003C3042FFFF0062102B26 +:10233000144000058F8200289482003C0062102324 +:102340003043FFFF8F820028AC550000AC400004F2 +:10235000AC540008AC43000C3C02000634420010B0 +:102360003C038000AC620030000000000000000070 +:10237000000000008C620000304200101040FFFDA1 +:102380003C04800834840100001018C20064182145 +:102390009065006432020007240600010046100424 +:1023A00000451025A0620064948300429622000E2E +:1023B00050430001A386001892420000244200010D +:1023C000A24200003C0308008C6300F4304200FF8E +:1023D00050430001A2400000924200008F84001C84 +:1023E000000211C0244202402483004000822021C8 +:1023F0002402FF80008220243063007F3C02800A98 +:10240000006218213C028000AC440024AEC30000EE +:102410008FBF006C8FB600688FB500648FB400600A +:102420008FB3005C8FB200588FB100548FB0005052 +:1024300003E0000827BD007027BDFFD8AFB3001C24 +:10244000AFB20018AFB10014AFB00010AFBF0020A2 +:102450000080982100E0802130B1FFFF0E000D8444 +:1024600030D200FF0000000000000000000000006B +:102470008F8200208F830024AC510000AC520004F6 +:10248000AC530008AC40000CAC400010AC40001451 +:10249000AC4000189463001E02038025AC50001C61 +:1024A0000000000000000000000000002404000103 +:1024B0008FBF00208FB3001C8FB200188FB10014A3 +:1024C0008FB000100A000DB827BD002830A5FFFF0F +:1024D0000A0008DC30C600FF3C02800834430100DB +:1024E0009462000E3C080800950800C63046FFFFC5 +:1024F00014C000043402FFFF946500EA0A000929B1 +:102500008F84001C10C20027000000009462004E5F +:102510009464003C3045FFFF00A6102300A6182B52 +:102520003087FFFF106000043044FFFF00C5102318 +:1025300000E210233044FFFF0088102B1040000EF3 +:1025400000E810233C028008344401002403000109 +:1025500034420080A44300162402FFFFA482000E30 +:10256000948500EA8F84001C0000302130A5FFFF15 +:102570000A0009013C0760200044102A10400009AD +:102580003C0280083443008094620016304200010F +:10259000104000043C0280009442007E244200145B +:1025A000A462001603E000080000000027BDFFE061 +:1025B0003C028008AFBF001CAFB0001834420100DD +:1025C000944300429442004C104000193068FFFFD1 +:1025D0009383001824020001146200298FBF001C9D +:1025E0003C06800834D00100000810C200501021C1 +:1025F000904200643103000734C70148304200FFB5 +:10260000006210073042000134C9014E34C4012C6D +:1026100034C5013E1040001634C601420E0006D2F9 +:10262000AFA90010960200420A0009463048FFFF99 +:102630003C028008344401009483004494820042A8 +:102640001043000F8FBF001C94820044A4820042FC +:1026500094820050A482004E8C820038AC820030FC +:1026600094820040A482003E9482004AA4820048E2 +:102670008FBF001C8FB000180A00090427BD00207E +:102680008FB0001803E0000827BD002027BDFFA081 +:10269000AFB1004C3C118000AFBF0058AFB3005445 +:1026A000AFB20050AFB000483626018890C2000398 +:1026B0003044007FA3A400108E32018090C200003D +:1026C0003043007F240200031062003BAF92001CE5 +:1026D00028620004104000062402000424020002C4 +:1026E000106200098FBF00580A000B0F8FB300540F +:1026F0001062004D240200051062014E8FBF005889 +:102700000A000B0F8FB30054000411C002421021C5 +:102710002404FF8024420240004410242643004049 +:10272000AE2200243063007F3C02800A0062182140 +:102730009062003CAFA3003C00441025A062003C26 +:102740008FA3003C9062003C304200401040016C7E +:102750008FBF00583C108008A3800018361001007D +:102760008E0200E08C63003427A4003C27A50010F3 +:10277000004310210E0007C3AE0200E093A2001038 +:102780003C038000A20200D58C6202780440FFFE68 +:102790008F82001CAC62024024020002A06202444C +:1027A0003C021000AC6202780E0009390000000003 +:1027B0000A000B0E8FBF00583C05800890C3000133 +:1027C00090A2000B1443014E8FBF005834A4008028 +:1027D0008C8200189082004C90A200083C0260009D +:1027E0008C4254048C8300183C027FFF3442FFFF6C +:1027F000006218243C0208008C4200B4AC8300182C +:102800003C038000244200013C010800AC2200B4DB +:102810008C6201F80440FFFE8F82001CAC6201C094 +:102820000A000AD6240200023C10800890C300016E +:102830009202000B144301328FBF005827A40018E6 +:1028400036050110240600033C0260008C4254044B +:102850000E000E470000000027A40028360501F0F6 +:102860000E000E47240600038FA200283603010045 +:10287000AE0200648FA2002CAE0200688FA200306E +:10288000AE02006C93A40018906300D52402FF8070 +:102890000082102400431025304900FF3084007F5F +:1028A0003122007F0082102A544000013929008023 +:1028B000000411C0244202402403FF800242102180 +:1028C00000431024AE220094264200403042007F94 +:1028D0003C038006004340218FA3001C2402FFFF1D +:1028E000AFA800403C130800927300F71062003359 +:1028F00093A2001995030014304400FF3063FFFFDA +:102900000064182B106000100000000095040014F3 +:102910008D07001C8D0600183084FFFF0044202323 +:102920000004210000E438210000102100E4202BE5 +:1029300000C2302100C43021AD07001CAD060018D4 +:102940000A000A2F93A20019950400148D07001C99 +:102950008D0600183084FFFF008220230004210030 +:10296000000010210080182100C2302300E4202B39 +:1029700000C4302300E33823AD07001CAD06001867 +:1029800093A200198FA30040A462001497A2001A1A +:10299000A46200168FA2001CAC6200108FA2001C63 +:1029A000AC62000C93A20019A462002097A2001A46 +:1029B000A46200228FA2001CAC6200243C048008A8 +:1029C000348300808C6200388FA20020012088218F +:1029D000AC62003C8FA20020AC82000093A20018E1 +:1029E000A062004C93A20018A0820009A0600068B9 +:1029F00093A20018105100512407FF803229007F54 +:102A0000000911C024420240024210213046007FDA +:102A10003C03800000471024AC6200943C02800616 +:102A200000C2302190C2003CAFA60040000020212F +:102A300000471025A0C2003C8FA80040950200026C +:102A4000950300148D07001C3042FFFF3063FFFF29 +:102A50008D060018004310230002110000E2382107 +:102A600000E2102B00C4302100C23021AD07001C51 +:102A7000AD06001895020002A5020014A50000167C +:102A80008D020008AD0200108D020008AD02000C9E +:102A900095020002A5020020A50000228D02000878 +:102AA000AD0200249102003C304200401040001A68 +:102AB000262200013C108008A3A90038A38000183A +:102AC000361001008E0200E08D03003427A4004080 +:102AD00027A50038004310210E0007C3AE0200E016 +:102AE00093A200383C038000A20200D58C620278D9 +:102AF0000440FFFE8F82001CAC62024024020002F0 +:102B0000A06202443C021000AC6202780E00093957 +:102B100000000000262200013043007F14730004EF +:102B2000004020212403FF8002231024004320269C +:102B300093A200180A000A4B309100FF93A40018DA +:102B40008FA3001C2402FFFF1062000A308900FFDF +:102B500024820001248300013042007F14530005C9 +:102B6000306900FF2403FF800083102400431026F7 +:102B7000304900FF3C028008904200080120882173 +:102B8000305000FF123000193222007F000211C0C5 +:102B900002421021244202402403FF8000431824F3 +:102BA0003C048000AC8300943042007F3C038006EC +:102BB000004310218C43000C004020211060000BCA +:102BC000AFA200400E00057E000000002623000199 +:102BD0002405FF803062007F145300020225202468 +:102BE000008518260A000AAF307100FF3C048008F7 +:102BF000348400808C8300183C027FFF3442FFFF46 +:102C000000621824AC8300183C0380008C6201F839 +:102C10000440FFFE00000000AC7201C0240200026C +:102C2000A06201C43C021000AC6201F80A000B0E65 +:102C30008FBF00583C04800890C300019082000BB5 +:102C40001443002F8FBF0058349000809202000878 +:102C500030420040104000200000000092020008B6 +:102C60000002160000021603044100050240202164 +:102C70000E000ECC240500930A000B0E8FBF0058E7 +:102C80009202000924030018304200FF1443000D93 +:102C900002402021240500390E000E64000030217E +:102CA0000E0003328F84001C8F82FF9424030012D5 +:102CB000A04300090E00033D8F84001C0A000B0E88 +:102CC0008FBF0058240500360E000E64000030212E +:102CD0000A000B0E8FBF00580E0003320240202165 +:102CE000920200058F84001C344200200E00033D38 +:102CF000A20200050E0010758F84001C8FBF0058C3 +:102D00008FB300548FB200508FB1004C8FB0004889 +:102D100003E0000827BD00603C0280083445010044 +:102D20003C0280008C42014094A3000E0000302140 +:102D300000402021AF82001C3063FFFF3402FFFF00 +:102D4000106200063C0760202402FFFFA4A2000ED0 +:102D500094A500EA0A00090130A5FFFF03E000087E +:102D60000000000027BDFFC83C0280003C06800830 +:102D7000AFB5002CAFB1001CAFBF0030AFB400281E +:102D8000AFB30024AFB20020AFB00018345101003F +:102D900034C501008C4301008E2200148CA400E491 +:102DA0000000A821AF83001C0044102318400052EB +:102DB000A38000188E22001400005021ACA200E471 +:102DC00090C3000890A200D53073007FA3A200102A +:102DD0008CB200E08CB400E4304200FF1053003BA2 +:102DE00093A200108F83001C2407FF80000211C0F3 +:102DF0000062102124420240246300400047102456 +:102E00003063007F3C0980003C08800A006818217C +:102E1000AD2200248C62003427A4001427A50010E2 +:102E2000024280210290102304400028AFA3001426 +:102E30009062003C00E21024304200FF1440001970 +:102E4000020090219062003C34420040A062003CAD +:102E50008F86001C93A3001024C200403042007FE4 +:102E6000004828213C0208008C4200F42463000141 +:102E7000306400FF14820002A3A30010A3A000107E +:102E800093A20010AFA50014000211C0244202401A +:102E900000C2102100471024AD2200240A000B4577 +:102EA00093A200100E0007C3000000003C0280083F +:102EB00034420100AC5000E093A30010240A00014A +:102EC000A04300D50A000B4593A200102402000184 +:102ED000154200093C0380008C6202780440FFFE2A +:102EE0008F82001CAC62024024020002A0620244F5 +:102EF0003C021000AC6202789222000B2403000214 +:102F0000304200FF144300720000000096220008C7 +:102F1000304300FF24020082146200402402008437 +:102F20003C028000344901008D22000C95230006EC +:102F3000000216023063FFFF3045003F24020027E5 +:102F400010A2000FAF83001428A200281040000830 +:102F5000240200312402002110A2000924020025CD +:102F600010A20007938200190A000BBD00000000A8 +:102F700010A20007938200190A000BBD0000000098 +:102F80000E000777012020210A000C3D0000000000 +:102F90003C0380008C6202780440FFFE8F82001C9C +:102FA000AC62024024020002A06202443C02100013 +:102FB000AC6202780A000C3D000000009523000678 +:102FC000912400058D25000C8D2600108D270018FA +:102FD0008D28001C8D290020244200013C0108009E +:102FE000A42356C63C010800A02456C53C01080095 +:102FF000AC2556CC3C010800AC2656D03C0108005C +:10300000AC2756D83C010800AC2856DC3C0108002F +:10301000AC2956E00A000C3DA38200191462000A94 +:10302000240200813C02800834420100944500EAF9 +:10303000922600058F84001C30A5FFFF30C600FFDC +:103040000A000BFE3C0760211462005C00000000D7 +:103050009222000A304300FF306200201040000737 +:10306000306200403C02800834420100944500EA8E +:103070008F84001C0A000BFC24060040104000074F +:10308000000316003C02800834420100944500EA27 +:103090008F84001C0A000BFC24060041000216036A +:1030A000044100463C02800834420100944500EA95 +:1030B0008F84001C2406004230A5FFFF3C076019E6 +:1030C0000E000901000000000A000C3D0000000095 +:1030D0009222000B24040016304200FF1044000628 +:1030E0003C0680009222000B24030017304200FFB0 +:1030F000144300320000000034C5010090A2000B10 +:10310000304200FF1444000B000080218CA20020FC +:103110008CA400202403FF800043102400021140EF +:103120003084007F004410253C032000004310251C +:10313000ACC2083094A2000800021400000214037C +:10314000044200012410000194A2000830420080D3 +:103150005040001A0200A82194A20008304220002A +:10316000504000160200A8218CA300183C021C2D20 +:10317000344219ED106200110200A8213C0208003F +:103180008C4200D4104000053C0280082403000457 +:1031900034420100A04300FC3C028008344201009C +:1031A000944500EA8F84001C2406000630A5FFFF2A +:1031B0000E0009013C0760210200A8210E00093918 +:1031C000000000009222000A304200081040000473 +:1031D00002A010210E0013790000000002A01021AF +:1031E0008FBF00308FB5002C8FB400288FB3002420 +:1031F0008FB200208FB1001C8FB0001803E00008D0 +:1032000027BD00382402FF80008220243C02900069 +:1032100034420007008220253C028000AC4400209C +:103220003C0380008C6200200440FFFE0000000090 +:1032300003E00008000000003C0380002402FF803F +:10324000008220243462000700822025AC64002024 +:103250008C6200200440FFFE0000000003E0000834 +:103260000000000027BDFFD8AFB3001CAFB10014B1 +:10327000AFB00010AFBF0020AFB200183C1180000B +:103280003C0280088E32002034530100AE2400201E +:10329000966300EA000514003C074000004738250B +:1032A00000A08021000030210E0009013065FFFFE1 +:1032B000240200A1160200022402FFFFA2620009FC +:1032C000AE3200208FBF00208FB3001C8FB20018D9 +:1032D0008FB100148FB0001003E0000827BD002854 +:1032E0003C0280082403000527BDFFE834420100AA +:1032F000A04300FCAFBF00103C0280008C420100E4 +:10330000240500A1004020210E000C67AF82001CA4 +:103310003C0380008C6202780440FFFE8F82001C18 +:103320008FBF001027BD0018AC62024024020002CB +:10333000A06202443C021000AC62027803E0000884 +:103340000000000027BDFFE83C068000AFBF001072 +:1033500034C7010094E20008304400FF3883008243 +:10336000388200842C6300012C4200010062182581 +:103370001060002D24020083938200195040003B0E +:103380008FBF00103C020800904256CC8CC4010054 +:103390003C06080094C656C63045003F38A30032AC +:1033A00038A2003F2C6300012C4200010062182566 +:1033B000AF84001CAF860014A380001914600007BE +:1033C00000E020212402002014A2001200000000CE +:1033D0003402FFFF14C2000F00000000240200208E +:1033E00014A2000500E028218CE300142402FFFF52 +:1033F0005062000B8FBF00103C040800248456C0AC +:10340000000030210E000706240700010A000CD638 +:103410008FBF00100E000777000000008FBF001064 +:103420000A00093927BD001814820004240200850F +:103430008CC501040A000CE1000020211482000662 +:103440002482FF808CC50104240440008FBF00103B +:103450000A00016727BD0018304200FF2C4200021D +:1034600010400004240200228FBF00100A000B2726 +:1034700027BD0018148200048F8200248FBF001023 +:103480000A000C8627BD00188C42000C1040001E5C +:1034900000E0282190E300092402001814620003D0 +:1034A000240200160A000CFC240300081462000722 +:1034B00024020017240300123C02800834420080DA +:1034C000A04300090A000D0994A7000854620007F0 +:1034D00094A700088F82FF942404FFFE9043000508 +:1034E00000641824A043000594A7000890A6001BC0 +:1034F0008CA4000094A500068FBF001000073C00BC +:103500000A0008DC27BD00188FBF001003E0000888 +:1035100027BD00188F8500243C04800094A2002A57 +:103520008CA30034000230C02402FFF000C210243B +:1035300000621821AC83003C8CA200303C03800068 +:10354000AC8200383C02005034420010AC620030C3 +:103550000000000000000000000000008C6200007D +:10356000304200201040FFFD30C20008104000062D +:103570003C0280008C620408ACA200208C62040C27 +:103580000A000D34ACA200248C430400ACA300203C +:103590008C420404ACA200243C0300203C028000C6 +:1035A000AC4300303C0480008C8200300043102487 +:1035B0001440FFFD8F8600243C020040AC820030A6 +:1035C00094C3002A94C2002894C4002C94C5002EF1 +:1035D00024630001004410213064FFFFA4C20028CE +:1035E00014850002A4C3002AA4C0002A03E0000836 +:1035F000000000008F84002427BDFFE83C05800404 +:1036000024840010AFBF00100E000E472406000AED +:103610008F840024948200129483002E3042000F85 +:10362000244200030043180424027FFF0043102BB0 +:1036300010400002AC8300000000000D0E000D13CE +:10364000000000008F8300248FBF001027BD0018EA +:10365000946200149463001A3042000F00021500B7 +:10366000006218253C02800003E00008AC4300A083 +:103670008F8300243C028004944400069462001A64 +:103680008C650000A4640016004410233042FFFF44 +:103690000045102B03E00008384200018F8400240D +:1036A0003C0780049486001A8C85000094E2000692 +:1036B000A482001694E3000600C310233042FFFFEB +:1036C0000045102B384200011440FFF8A483001677 +:1036D00003E00008000000008F8400243C02800406 +:1036E000944200069483001A8C850000A482001680 +:1036F000006210233042FFFF0045102B38420001CA +:103700005040000D8F850024006030213C0780046C +:1037100094E20006A482001694E3000600C310237E +:103720003042FFFF0045102B384200011440FFF8E3 +:10373000A48300168F8500243C03800034620400BB +:103740008CA40020AF820020AC6400388CA200243E +:10375000AC62003C3C020005AC62003003E00008B3 +:10376000ACA000048F8400243C0300068C8200047B +:1037700000021140004310253C038000AC62003081 +:103780000000000000000000000000008C6200004B +:10379000304200101040FFFD34620400AC80000491 +:1037A00003E00008AF8200208F86002427BDFFE0E1 +:1037B000AFB10014AFB00010AFBF00188CC300044D +:1037C0008CC500248F820020309000FF94C4001A22 +:1037D00024630001244200202484000124A7002047 +:1037E000ACC30004AF820020A4C4001AACC70024FC +:1037F00004A100060000882104E2000594C2001A1A +:103800008CC2002024420001ACC2002094C2001AE5 +:1038100094C300282E040001004310262C4200010E +:10382000004410245040000594C2001A24020001F4 +:10383000ACC2000894C2001A94C300280010202BC8 +:10384000004310262C4200010044102514400007BC +:10385000000000008CC20008144000042402001084 +:103860008CC300041462000F8F8500240E000DA786 +:10387000241100018F820024944300289442001AEE +:1038800014430003000000000E000D1300000000B0 +:10389000160000048F8500240E000D840000000037 +:1038A0008F85002494A2001E94A4001C24420001D1 +:1038B0003043FFFF14640002A4A2001EA4A0001E57 +:1038C0001200000A3C02800494A2001494A3001A7F +:1038D0003042000F00021500006218253C028000F3 +:1038E000AC4300A00A000E1EACA0000894420006E3 +:1038F00094A3001A8CA40000A4A200160062102356 +:103900003042FFFF0044102B384200011040000DF0 +:1039100002201021006030213C07800494E2000660 +:10392000A4A2001694E3000600C310233042FFFF58 +:103930000044102B384200011440FFF8A4A30016E5 +:10394000022010218FBF00188FB100148FB000101B +:1039500003E0000827BD002003E00008000000008D +:103960008F82002C3C03000600021140004310250A +:103970003C038000AC62003000000000000000004A +:10398000000000008C620000304200101040FFFD7B +:1039900034620400AF82002803E00008AF80002CEE +:1039A00003E000080000102103E000080000000010 +:1039B0003084FFFF30A5FFFF0000182110800007B2 +:1039C000000000003082000110400002000420428C +:1039D000006518210A000E3D0005284003E000089C +:1039E0000060102110C0000624C6FFFF8CA200005A +:1039F00024A50004AC8200000A000E4724840004C1 +:103A000003E000080000000010A0000824A3FFFF4E +:103A1000AC86000000000000000000002402FFFF50 +:103A20002463FFFF1462FFFA2484000403E000080B +:103A3000000000003C0280083442008024030001A2 +:103A4000AC43000CA4430010A4430012A443001490 +:103A500003E00008A44300168F82002427BDFFD88E +:103A6000AFB3001CAFB20018AFB10014AFB000107C +:103A7000AFBF00208C47000C248200802409FF8007 +:103A80003C08800E3043007F008080213C0A80008B +:103A9000004920240068182130B100FF30D200FF17 +:103AA00010E000290000982126020100AD44002CFE +:103AB000004928243042007F004820219062000005 +:103AC00024030050304200FF1443000400000000B3 +:103AD000AD45002C948200EA3053FFFF0E000D84A8 +:103AE000000000008F8200248F83002000112C0032 +:103AF0009442001E001224003484000100A22825F4 +:103B00003C02400000A22825AC7000008FBF0020BE +:103B1000AC6000048FB20018AC7300088FB10014C1 +:103B2000AC60000C8FB3001CAC6400108FB00010B0 +:103B3000AC60001424040001AC60001827BD00280C +:103B40000A000DB8AC65001C8FBF00208FB3001CAD +:103B50008FB200188FB100148FB0001003E000087E +:103B600027BD00283C06800034C201009043000FAE +:103B7000240200101062000E2865001110A000073A +:103B800024020012240200082405003A10620006F4 +:103B90000000302103E0000800000000240500358B +:103BA0001462FFFC000030210A000E6400000000D7 +:103BB0008CC200748F83FF9424420FA003E000089E +:103BC000AC62000C27BDFFE8AFBF00100E0003423F +:103BD000240500013C0480088FBF0010240200016E +:103BE00034830080A462001227BD00182402000163 +:103BF00003E00008A080001A27BDFFE0AFB2001864 +:103C0000AFB10014AFB00010AFBF001C30B2FFFF67 +:103C10000E000332008088213C028008345000806E +:103C20009202000924030004304200FF1443000CF8 +:103C30003C028008124000082402000A0E000E5BBD +:103C400000000000920200052403FFFE0043102440 +:103C5000A202000524020012A20200093C02800810 +:103C600034420080022020210E00033DA0400027A6 +:103C700016400003022020210E000EBF00000000AD +:103C800002202021324600FF8FBF001C8FB2001897 +:103C90008FB100148FB00010240500380A000E64A4 +:103CA00027BD002027BDFFE0AFBF001CAFB200184A +:103CB000AFB10014AFB000100E00033200808021BD +:103CC0000E000E5B000000003C02800834450080BE +:103CD00090A2000924120018305100FF1232000394 +:103CE0000200202124020012A0A2000990A20005D7 +:103CF0002403FFFE004310240E00033DA0A2000594 +:103D00000200202124050020163200070000302187 +:103D10008FBF001C8FB200188FB100148FB000103D +:103D20000A00034227BD00208FBF001C8FB200187D +:103D30008FB100148FB00010240500390A000E6402 +:103D400027BD002027BDFFE83C028000AFB0001077 +:103D5000AFBF0014344201009442000C2405003629 +:103D60000080802114400012304600FF0E00033214 +:103D7000000000003C02800834420080240300124E +:103D8000A043000990430005346300100E000E5B51 +:103D9000A04300050E00033D020020210200202167 +:103DA0000E000342240500200A000F3C0000000022 +:103DB0000E000E64000000000E00033202002021FD +:103DC0003C0280089043001B2405FF9F0200202135 +:103DD000006518248FBF00148FB00010A043001B93 +:103DE0000A00033D27BD001827BDFFE0AFBF001844 +:103DF000AFB10014AFB0001030B100FF0E000332BD +:103E0000008080213C02800824030012344200809C +:103E10000E000E5BA04300090E00033D02002021AE +:103E200002002021022030218FBF00188FB1001422 +:103E30008FB00010240500350A000E6427BD002055 +:103E40003C0480089083000E9082000A1443000B0B +:103E5000000028218F82FF942403005024050001D4 +:103E600090420000304200FF1443000400000000B4 +:103E70009082000E24420001A082000E03E00008A0 +:103E800000A010213C0380008C6201F80440FFFE7A +:103E900024020002AC6401C0A06201C43C02100014 +:103EA00003E00008AC6201F827BDFFE0AFB20018E4 +:103EB0003C128008AFB10014AFBF001CAFB00010BF +:103EC00036510080922200092403000A304200FF8C +:103ED0001443003E000000008E4300048E22003890 +:103EE000506200808FBF001C92220000240300500B +:103EF000304200FF144300253C0280008C42014008 +:103F00008E4300043642010002202821AC43001CED +:103F10009622005C8E2300383042FFFF00021040E2 +:103F200000621821AE23001C8E4300048E2400384A +:103F30009622005C006418233042FFFF0003184300 +:103F4000000210400043102A10400006000000004C +:103F50008E4200048E230038004310230A000FAA6B +:103F6000000220439622005C3042FFFF0002204006 +:103F70003C0280083443010034420080ACA4002C91 +:103F8000A040002424020001A062000C0E000F5E7D +:103F900000000000104000538FBF001C3C02800056 +:103FA0008C4401403C0380008C6201F80440FFFE19 +:103FB00024020002AC6401C0A06201C43C021000F3 +:103FC000AC6201F80A0010078FBF001C92220009A2 +:103FD00024030010304200FF144300043C02800020 +:103FE0008C4401400A000FEE0000282192220009B3 +:103FF00024030016304200FF14430006240200147C +:10400000A22200093C0280008C4401400A001001F9 +:104010008FBF001C8E2200388E23003C00431023EB +:10402000044100308FBF001C92220027244200016F +:10403000A2220027922200272C42000414400016DE +:104040003C1080009222000924030004304200FF4B +:10405000144300093C0280008C4401408FBF001CC7 +:104060008FB200188FB100148FB000102405009398 +:104070000A000ECC27BD00208C440140240500938B +:104080008FBF001C8FB200188FB100148FB00010CA +:104090000A000F4827BD00208E0401400E000332A5 +:1040A000000000008E4200042442FFFFAE420004E4 +:1040B0008E22003C2442FFFFAE22003C0E00033D56 +:1040C0008E0401408E0401408FBF001C8FB2001887 +:1040D0008FB100148FB00010240500040A000342C1 +:1040E00027BD00208FB200188FB100148FB00010D0 +:1040F00003E0000827BD00203C0680008CC2018838 +:104100003C038008346500809063000E00021402B6 +:10411000304400FF306300FF1464000E3C0280084E +:1041200090A20026304200FF104400098F82FF94C5 +:10413000A0A400262403005090420000304200FF5B +:1041400014430006000000000A0005A18CC4018091 +:104150003C02800834420080A044002603E00008AE +:104160000000000027BDFFE030E700FFAFB20018FD +:10417000AFBF001CAFB10014AFB0001000809021A1 +:1041800014E0000630C600FF000000000000000D33 +:10419000000000000A001060240001163C038008A3 +:1041A0009062000E304200FF14460023346200800B +:1041B00090420026304200FF1446001F000000001D +:1041C0009062000F304200FF1446001B0000000008 +:1041D0009062000A304200FF144600038F90FF9463 +:1041E0000000000D8F90FF948F82FF983C1180009B +:1041F000AE05003CAC450000A066000A0E0003328C +:104200008E240100A20000240E00033D8E24010034 +:104210003C0380008C6201F80440FFFE240200028F +:10422000AC7201C0A06201C43C021000AC6201F893 +:104230000A0010618FBF001C000000000000000D8C +:10424000000000002400013F8FBF001C8FB2001847 +:104250008FB100148FB0001003E0000827BD0020CC +:104260008F83FF943C0280008C44010034420100A3 +:104270008C65003C9046001B0A00102724070001B3 +:104280003C0280089043000E9042000A0043102632 +:10429000304200FF03E000080002102B27BDFFE0C2 +:1042A0003C028008AFB10014AFB00010AFBF0018DF +:1042B0003450008092020005240300303042003068 +:1042C00014430085008088218F8200248C42000CDA +:1042D000104000828FBF00180E000D840000000007 +:1042E0008F860020ACD100009202000892030009E2 +:1042F000304200FF00021200306300FF004310252F +:10430000ACC200049202004D000216000002160327 +:1043100004410005000000003C0308008C630048D5 +:104320000A00109F3C1080089202000830420040B2 +:10433000144000030000182192020027304300FFC0 +:104340003C108008361100809222004D00031E00B0 +:10435000304200FF0002140000621825ACC30008C0 +:104360008E2400308F820024ACC4000C8E250034D3 +:104370009443001E3C02C00BACC50010006218251F +:104380008E22003800002021ACC200148E22003C96 +:10439000ACC200180E000DB8ACC3001C8E020004A5 +:1043A0008F8400203C058000AC8200008E2200201B +:1043B000AC8200048E22001CAC8200088E220058C1 +:1043C0008CA3007400431021AC82000C8E22002CC0 +:1043D000AC8200108E2200408E23004400021400A4 +:1043E00000431025AC8200149222004D240300806B +:1043F000304200FF1443000400000000AC800018AD +:104400000A0010E38F8200248E23000C2402000196 +:104410001062000E2402FFFF92220008304200408A +:104420001440000A2402FFFF8E23000C8CA20074AB +:10443000006218233C0208000062102414400002AD +:10444000000028210060282100051043AC820018DC +:104450008F820024000020219443001E3C02C00CE7 +:10446000006218258F8200200E000DB8AC43001C9E +:104470003C038008346201008C4200008F850020DC +:10448000346300808FBF0018ACA20000ACA0000411 +:104490008C6400488F8200248FB10014ACA4000803 +:1044A000ACA0000CACA00010906300059446001E68 +:1044B0003C02400D00031E0000C23025ACA30014D6 +:1044C0008FB00010ACA0001824040001ACA6001CA2 +:1044D0000A000DB827BD00208FBF00188FB100144F +:1044E0008FB0001003E0000827BD00203C028000D0 +:1044F0009443007C3C02800834460100308400FF75 +:104500003065FFFF2402000524A34650A0C4000C20 +:104510005482000C3065FFFF90C2000D2C42000752 +:104520001040000724A30A0090C3000D24020014C9 +:104530000062100400A210210A00111F3045FFFF85 +:104540003065FFFF3C0280083442008003E0000831 +:10455000A44500143C03800834680080AD05003891 +:10456000346701008CE2001C308400FF00A210239D +:104570001840000330C600FF24A2FFFCACE2001C80 +:1045800030820001504000083C0380088D02003C4E +:1045900000A2102304410012240400058C620004D0 +:1045A00010A2000F3C0380088C62000414A2001EBD +:1045B000000000003C0208008C4200D8304200207D +:1045C000104000093C0280083462008090630008BB +:1045D0009042004C144300043C0280082404000470 +:1045E0000A00110900000000344300803442010039 +:1045F000A040000C24020001A462001410C0000AB4 +:104600003C0280008C4401003C0380008C6201F875 +:104610000440FFFE24020002AC6401C0A06201C499 +:104620003C021000AC6201F803E00008000000004A +:1046300027BDFFE800A61823AFBF00101860008058 +:10464000308800FF3C02800834470080A0E000244E +:1046500034440100A0E000278C82001C00A210233B +:1046600004400056000000008CE2003C94E3005C33 +:104670008CE4002C004530233063FFFF00C3182179 +:104680000083202B1080000400E018218CE2002C15 +:104690000A00117800A2102194E2005C3042FFFF72 +:1046A00000C2102100A21021AC62001C3C02800854 +:1046B000344400809482005C8C83001C3042FFFFF5 +:1046C0000002104000A210210043102B10400004F3 +:1046D000000000008C82001C0A00118B3C06800840 +:1046E0009482005C3042FFFF0002104000A21021C3 +:1046F0003C06800834C3010034C70080AC82001C33 +:10470000A060000CACE500388C62001C00A21023F5 +:104710001840000224A2FFFCAC62001C3102000120 +:10472000104000083C0380088CE2003C00A21023EB +:1047300004410012240400058CC2000410A20010E1 +:104740008FBF00108C62000414A2004F8FBF0010B6 +:104750003C0208008C4200D8304200201040000A81 +:104760003C02800834620080906300089042004C54 +:10477000144300053C028008240400048FBF00108D +:104780000A00110927BD001834430080344201009B +:10479000A040000C24020001A46200143C0280002E +:1047A0008C4401003C0380008C6201F80440FFFE51 +:1047B000240200020A0011D8000000008CE2001C54 +:1047C000004610230043102B54400001ACE5001CB0 +:1047D00094E2005C3042FFFF0062102B144000079F +:1047E0002402000294E2005C8CE3001C3042FFFFD4 +:1047F00000621821ACE3001C24020002ACE5003882 +:104800000E000F5EA082000C1040001F8FBF001032 +:104810003C0280008C4401003C0380008C6201F863 +:104820000440FFFE24020002AC6401C0A06201C487 +:104830003C021000AC6201F80A0011F08FBF0010BA +:1048400031020010104000108FBF00103C028008A1 +:10485000344500808CA3001C94A2005C00661823E1 +:104860003042FFFF006218213C023FFF3444FFFF4B +:104870000083102B544000010080182100C3102138 +:10488000ACA2001C8FBF001003E0000827BD001879 +:1048900027BDFFE800C0402100A63023AFBF0010B5 +:1048A00018C00026308A00FF3C028008344900808E +:1048B0008D24001C8D23002C008820230064182BDD +:1048C0001060000F344701008CE2002000461021E8 +:1048D000ACE200208CE200200044102B1440000BBE +:1048E0003C023FFF8CE2002000441023ACE2002099 +:1048F0009522005C3042FFFF0A0012100082202146 +:10490000ACE00020008620213C023FFF3443FFFF43 +:104910000064102B54400001006020213C028008FC +:104920003442008000851821AC43001CA0400024C4 +:10493000A04000270A0012623C03800831420010A8 +:10494000104000433C0380083C06800834C40080CB +:104950008C82003C004810235840003E34660080A2 +:104960009082002424420001A0820024908200242E +:104970003C0308008C630024304200FF0043102BEE +:10498000144000688FBF001034C201008C42001C2C +:1049900000A2102318400063000000008CC3000434 +:1049A0009482005C006818233042FFFF0003184324 +:1049B000000210400043102A1040000500000000D3 +:1049C0008CC20004004810230A0012450002104364 +:1049D0009482005C3042FFFF000210403C068008D9 +:1049E000AC82002C34C5008094A2005C8CA4002C06 +:1049F00094A3005C3042FFFF00021040008220219F +:104A00003063FFFF0083202101041021ACA2001CB1 +:104A10008CC2000434C60100ACC2001C2402000297 +:104A20000E000F5EA0C2000C1040003E8FBF0010B1 +:104A30003C0280008C4401003C0380008C6201F841 +:104A40000440FFFE240200020A001292000000004F +:104A500034660080ACC50038346401008C82001CD0 +:104A600000A210231840000224A2FFFCAC82001C0C +:104A7000314200015040000A3C0380088CC2003CD7 +:104A800000A2102304430014240400058C620004D7 +:104A900014A200033C0380080A00128424040005C9 +:104AA0008C62000414A2001F8FBF00103C0208009B +:104AB0008C4200D8304200201040000A3C0280089E +:104AC00034620080906300089042004C144300055B +:104AD0003C028008240400048FBF00100A00110962 +:104AE00027BD00183443008034420100A040000C70 +:104AF00024020001A46200143C0280008C440100E6 +:104B00003C0380008C6201F80440FFFE2402000296 +:104B1000AC6401C0A06201C43C021000AC6201F8A8 +:104B20008FBF001003E0000827BD001827BDFFE875 +:104B30003C0A8008AFBF0010354900808D22003C40 +:104B400000C04021308400FF004610231840009D23 +:104B500030E700FF354701002402000100A63023A2 +:104B6000A0E0000CA0E0000DA522001418C0002455 +:104B7000308200108D23001C8D22002C0068182329 +:104B80000043102B1040000F000000008CE20020BA +:104B900000461021ACE200208CE200200043102BE4 +:104BA0001440000B3C023FFF8CE200200043102326 +:104BB000ACE200209522005C3042FFFF0A0012C1E7 +:104BC00000621821ACE00020006618213C023FFF83 +:104BD0003446FFFF00C3102B5440000100C01821D1 +:104BE0003C0280083442008000651821AC43001C60 +:104BF000A0400024A04000270A00130F3C038008B7 +:104C0000104000403C0380088D22003C00481023E7 +:104C10005840003D34670080912200242442000166 +:104C2000A1220024912200243C0308008C6300246C +:104C3000304200FF0043102B1440009A8FBF001039 +:104C40008CE2001C00A21023184000960000000017 +:104C50008D4300049522005C006818233042FFFF5A +:104C600000031843000210400043102A10400005C2 +:104C7000012020218D420004004810230A0012F276 +:104C8000000210439522005C3042FFFF00021040FA +:104C90003C068008AC82002C34C5008094A2005CE5 +:104CA0008CA4002C94A3005C3042FFFF0002104053 +:104CB000008220213063FFFF0083182101031021AF +:104CC000ACA2001C8CC2000434C60100ACC2001CA3 +:104CD000240200020E000F5EA0C2000C1040007102 +:104CE0008FBF00103C0280008C4401003C03800018 +:104CF0008C6201F80440FFFE240200020A0013390E +:104D00000000000034670080ACE500383466010024 +:104D10008CC2001C00A210231840000224A2FFFC39 +:104D2000ACC2001C30820001504000083C038008E7 +:104D30008CE2003C00A2102304430051240400052F +:104D40008C62000410A2003E3C0380088C620004C8 +:104D500054A200548FBF00103C0208008C4200D8BF +:104D600030420020104000063C028008346200807F +:104D7000906300089042004C104300403C028008C1 +:104D80003443008034420100A040000C24020001A2 +:104D9000A46200143C0280008C4401003C038000AB +:104DA0008C6201F80440FFFE24020002AC6401C0E2 +:104DB000A06201C43C021000AC6201F80A00137743 +:104DC0008FBF001024020005A120002714E2000A72 +:104DD0003C038008354301009062000D2C42000620 +:104DE000504000053C0380089062000D2442000101 +:104DF000A062000D3C03800834670080ACE50038F9 +:104E0000346601008CC2001C00A21023184000026E +:104E100024A2FFFCACC2001C308200015040000AFA +:104E20003C0380088CE2003C00A2102304410014E3 +:104E3000240400058C62000414A200033C038008D3 +:104E40000A00136E240400058C62000414A20015ED +:104E50008FBF00103C0208008C4200D83042002076 +:104E60001040000A3C028008346200809063000811 +:104E70009042004C144300053C02800824040004C6 +:104E80008FBF00100A00110927BD001834430080AD +:104E900034420100A040000C24020001A46200146E +:104EA0008FBF001003E0000827BD00183C0B8008EE +:104EB00027BDFFE83C028000AFBF00103442010074 +:104EC000356A00809044000A356901008C45001461 +:104ED0008D4800389123000C308400FF0105102319 +:104EE0001C4000B3306700FF2CE20006504000B1C8 +:104EF0008FBF00102402000100E2300430C2000322 +:104F00005440000800A8302330C2000C144000A117 +:104F100030C20030144000A38FBF00100A00143BC1 +:104F20000000000018C00024308200108D43001CD7 +:104F30008D42002C006818230043102B1040000FF6 +:104F4000000000008D22002000461021AD2200202C +:104F50008D2200200043102B1440000B3C023FFF29 +:104F60008D22002000431023AD2200209542005CDA +:104F70003042FFFF0A0013AF00621821AD2000206D +:104F8000006618213C023FFF3446FFFF00C3102B90 +:104F90005440000100C018213C02800834420080C7 +:104FA00000651821AC43001CA0400024A04000274D +:104FB0000A0013FD3C038008104000403C038008B9 +:104FC0008D42003C004810231840003D34670080AB +:104FD0009142002424420001A14200249142002475 +:104FE0003C0308008C630024304200FF0043102B78 +:104FF000144000708FBF00108D22001C00A21023EF +:105000001840006C000000008D6300049542005CB5 +:10501000006818233042FFFF0003184300021040CD +:105020000043102A10400005014020218D62000439 +:10503000004810230A0013E0000210439542005C70 +:105040003042FFFF000210403C068008AC82002C7A +:1050500034C5008094A2005C8CA4002C94A3005C56 +:105060003042FFFF00021040008220213063FFFF2A +:105070000083182101031021ACA2001C8CC2000483 +:1050800034C60100ACC2001C240200020E000F5EF8 +:10509000A0C2000C104000478FBF00103C028000EF +:1050A0008C4401003C0380008C6201F80440FFFE48 +:1050B000240200020A00142D000000003467008062 +:1050C000ACE50038346601008CC2001C00A210233D +:1050D0001840000224A2FFFCACC2001C3082000178 +:1050E0005040000A3C0380088CE2003C00A21023E0 +:1050F00004430014240400058C62000414A200037D +:105100003C0380080A00141F240400058C6200047C +:1051100014A200288FBF00103C0208008C4200D867 +:10512000304200201040000A3C02800834620080B7 +:10513000906300089042004C144300053C02800834 +:10514000240400048FBF00100A00110927BD0018B5 +:105150003443008034420100A040000C24020001CE +:10516000A46200143C0280008C4401003C038000D7 +:105170008C6201F80440FFFE24020002AC6401C00E +:10518000A06201C43C021000AC6201F80A00143BAA +:105190008FBF00108FBF0010010030210A00115A8C +:1051A00027BD0018010030210A00129927BD001800 +:1051B0008FBF001003E0000827BD00183C038008E3 +:1051C0003464010024020003A082000C8C620004FD +:1051D00003E00008AC82001C3C05800834A300807A +:1051E0009062002734A501002406004324420001F8 +:1051F000A0620027906300273C0208008C42004810 +:10520000306300FF146200043C07602194A500EAAB +:105210000A00090130A5FFFF03E0000800000000BC +:1052200027BDFFE8AFBF00103C0280000E00144411 +:105230008C4401803C02800834430100A060000CD3 +:105240008C4200048FBF001027BD001803E0000847 +:10525000AC62001C27BDFFE03C028008AFBF001815 +:10526000AFB10014AFB000103445008034460100E7 +:105270003C0880008D09014090C3000C8CA4003CC8 +:105280008CA200381482003B306700FF9502007C3E +:1052900090A30027146000093045FFFF2402000599 +:1052A00054E200083C04800890C2000D2442000132 +:1052B000A0C2000D0A00147F3C048008A0C0000DAD +:1052C0003C048008348201009042000C2403000555 +:1052D000304200FF1443000A24A205DC348300801E +:1052E000906200272C4200075040000524A20A00CB +:1052F00090630027240200140062100400A2102111 +:105300003C108008361000803045FFFF012020212E +:105310000E001444A60500149602005C8E030038AB +:105320003C1180003042FFFF000210400062182153 +:10533000AE03001C0E0003328E24014092020025B1 +:1053400034420040A20200250E00033D8E2401409D +:105350008E2401403C0380008C6201F80440FFFE73 +:1053600024020002AC6401C0A06201C43C0210002F +:10537000AC6201F88FBF00188FB100148FB000101D +:1053800003E0000827BD00203C0360103C02080039 +:1053900024420174AC62502C8C6250003C048000AA +:1053A00034420080AC6250003C0208002442547C2D +:1053B0003C010800AC2256003C020800244254384C +:1053C0003C010800AC2256043C020002AC840008F8 +:1053D000AC82000C03E000082402000100A0302190 +:1053E0003C1C0800279C56083C0200023C050400B7 +:1053F00000852826008220260004102B2CA5000101 +:105400002C840001000210803C0308002463560035 +:105410000085202500431821108000030000102182 +:10542000AC6600002402000103E000080000000058 +:105430003C1C0800279C56083C0200023C05040066 +:1054400000852826008220260004102B2CA50001B0 +:105450002C840001000210803C03080024635600E5 +:105460000085202500431821108000050000102130 +:105470003C02080024425438AC62000024020001BF +:1054800003E00008000000003C0200023C030400AE +:1054900000821026008318262C4200012C63000194 +:1054A000004310251040000B000028213C1C080080 +:1054B000279C56083C0380008C62000824050001EC +:1054C00000431025AC6200088C62000C00441025DB +:1054D000AC62000C03E0000800A010213C1C080096 +:1054E000279C56083C0580008CA3000C0004202754 +:1054F000240200010064182403E00008ACA3000C9F +:105500003C020002148200063C0560008CA208D018 +:105510002403FFFE0043102403E00008ACA208D0DF +:105520003C02040014820005000000008CA208D098 +:105530002403FFFD00431024ACA208D003E00008C0 +:10554000000000003C02601A344200108C430080CE +:1055500027BDFFF88C440084AFA3000093A3000094 +:10556000240200041462001AAFA4000493A20001F4 +:105570001040000797A300023062FFFC3C0380004C +:10558000004310218C4200000A001536AFA200042F +:105590003062FFFC3C03800000431021AC4400005B +:1055A000A3A000003C0560008CA208D02403FFFEED +:1055B0003C04601A00431024ACA208D08FA300045E +:1055C0008FA2000034840010AC830084AC82008081 +:1055D00003E0000827BD000827BDFFE8AFBF0010AB +:1055E0003C1C0800279C56083C0280008C43000CA1 +:1055F0008C420004004318243C0200021060001496 +:10560000006228243C0204003C04000210A00005B3 +:10561000006210243C0208008C4256000A00155B10 +:1056200000000000104000073C0404003C02080099 +:105630008C4256040040F809000000000A00156082 +:10564000000000000000000D3C1C0800279C5608CC +:105650008FBF001003E0000827BD0018800802403B +:1056600080080100800800808008000000000C8095 +:105670000000320008000E9808000EF408000F88A1 +:1056800008001028080010748008010080080080BD +:10569000800800000A000028000000000000000050 +:1056A0000000000D6370362E322E316200000000C3 +:1056B00006020104000000000000000000000000DD +:1056C000000000000000000038003C000000000066 +:1056D00000000000000000000000000000000020AA +:1056E00000000000000000000000000000000000BA +:1056F00000000000000000000000000000000000AA +:10570000000000000000000021003800000000013F +:105710000000002B000000000000000400030D400A +:105720000000000000000000000000000000000079 +:105730000000000000000000100000030000000056 +:105740000000000D0000000D3C020800244259AC8E +:105750003C03080024635BF4AC4000000043202BB2 +:105760001480FFFD244200043C1D080037BD9FFC4F +:1057700003A0F0213C100800261000A03C1C0800EB +:10578000279C59AC0E0002F6000000000000000D3E +:1057900027BDFFB4AFA10000AFA20004AFA3000873 +:1057A000AFA4000CAFA50010AFA60014AFA700185F +:1057B000AFA8001CAFA90020AFAA0024AFAB0028FF +:1057C000AFAC002CAFAD0030AFAE0034AFAF00389F +:1057D000AFB8003CAFB90040AFBC0044AFBF004819 +:1057E0000E000820000000008FBF00488FBC00445E +:1057F0008FB900408FB8003C8FAF00388FAE0034B7 +:105800008FAD00308FAC002C8FAB00288FAA002406 +:105810008FA900208FA8001C8FA700188FA6001446 +:105820008FA500108FA4000C8FA300088FA2000486 +:105830008FA1000027BD004C3C1B60188F7A5030B0 +:10584000377B502803400008AF7A000000A01821E1 +:1058500000801021008028213C0460003C0760008B +:105860002406000810600006348420788C42000072 +:10587000ACE220088C63000003E00008ACE3200CDD +:105880000A000F8100000000240300403C02600079 +:1058900003E00008AC4320003C0760008F86000452 +:1058A0008CE520740086102100A2182B14600007DC +:1058B000000028218F8AFDA024050001A1440013C7 +:1058C0008F89000401244021AF88000403E0000810 +:1058D00000A010218F84FDA08F8500049086001306 +:1058E00030C300FF00A31023AF82000403E00008D0 +:1058F000A08000138F84FDA027BDFFE8AFB000108B +:10590000AFBF001490890011908700112402002875 +:10591000312800FF3906002830E300FF2485002CE1 +:105920002CD00001106200162484001C0E00006EB2 +:10593000000000008F8FFDA03C05600024020204DF +:1059400095EE003E95ED003C000E5C0031ACFFFF93 +:10595000016C5025ACAA2010520000012402000462 +:10596000ACA22000000000000000000000000000C9 +:105970008FBF00148FB0001003E0000827BD00188F +:105980000A0000A6000028218F85FDA027BDFFD8B2 +:10599000AFBF0020AFB3001CAFB20018AFB100140E +:1059A000AFB000100080982190A4001124B0001C1A +:1059B00024B1002C308300FF386200280E000090D4 +:1059C0002C5200010E00009800000000020020216F +:1059D0001240000202202821000028210E00006E43 +:1059E000000000008F8DFDA03C0880003C05600099 +:1059F00095AC003E95AB003C02683025000C4C0095 +:105A0000316AFFFF012A3825ACA7201024020202C8 +:105A1000ACA6201452400001240200028FBF0020D7 +:105A20008FB3001C8FB200188FB100148FB000101C +:105A300027BD002803E00008ACA2200027BDFFE03E +:105A4000AFB20018AFB10014AFB00010AFBF001C70 +:105A50003C1160008E2320748F82000430D0FFFF41 +:105A600030F2FFFF1062000C2406008F0E00006E63 +:105A7000000000003C06801F0010440034C5FF00F9 +:105A80000112382524040002AE2720100000302126 +:105A9000AE252014AE2420008FBF001C8FB200184A +:105AA0008FB100148FB0001000C0102103E0000877 +:105AB00027BD002027BDFFE0AFB0001030D0FFFFB2 +:105AC000AFBF0018AFB100140E00006E30F1FFFF41 +:105AD00000102400009180253C036000AC70201071 +:105AE0008FBF00188FB100148FB000102402000483 +:105AF000AC62200027BD002003E000080000102158 +:105B000027BDFFE03C046018AFBF0018AFB1001420 +:105B1000AFB000108C8850002403FF7F34028071E6 +:105B20000103382434E5380C241F00313C1980006F +:105B3000AC8550003C11800AAC8253BCAF3F0008DA +:105B40000E00054CAF9100400E00050A3C116000AC +:105B50000E00007D000000008E3008083C0F570941 +:105B60002418FFF00218602435EEE00035EDF00057 +:105B7000018E5026018D58262D4600012D69000109 +:105B8000AF86004C0E000D09AF8900503C06601630 +:105B90008CC700003C0860148D0500A03C03FFFF8B +:105BA00000E320243C02535300052FC2108200550D +:105BB00034D07C00960201F2A780006C10400003F4 +:105BC000A780007C384B1E1EA78B006C960201F844 +:105BD000104000048F8D0050384C1E1EA78C007C96 +:105BE0008F8D005011A000058F83004C240E0020E3 +:105BF000A78E007CA78E006C8F83004C1060000580 +:105C00009785007C240F0020A78F007CA78F006C55 +:105C10009785007C2CB8008153000001240500808A +:105C20009784006C2C91040152200001240404008C +:105C30001060000B3C0260008FBF00188FB1001491 +:105C40008FB0001027BD0020A784006CA785007CC2 +:105C5000A380007EA780007403E00008A780009264 +:105C60008C4704382419103C30FFFFFF13F9000360 +:105C700030A8FFFF1100004624030050A380007EDF +:105C80009386007E50C00024A785007CA780007CFE +:105C90009798007CA780006CA7800074A780009272 +:105CA0003C010800AC3800800E00078700000000AF +:105CB0003C0F60008DED0808240EFFF03C0B600ED9 +:105CC000260C0388356A00100000482100002821B6 +:105CD00001AE20243C105709AF8C0010AF8A004859 +:105CE000AF89001810900023AF8500148FBF0018F3 +:105CF0008FB100148FB0001027BD002003E0000812 +:105D0000AF80005400055080014648218D260004D4 +:105D10000A00014800D180219798007CA784006C7C +:105D2000A7800074A78000923C010800AC38008076 +:105D30000E000787000000003C0F60008DED080892 +:105D4000240EFFF03C0B600E260C0388356A001011 +:105D5000000048210000282101AE20243C105709F2 +:105D6000AF8C0010AF8A0048AF8900181490FFDF95 +:105D7000AF85001424110001AF9100548FBF0018AB +:105D80008FB100148FB0001003E0000827BD002081 +:105D90000A00017BA383007E3083FFFF8F880040D1 +:105DA0008F87003C000321403C0580003C020050EE +:105DB000008248253C0660003C0A010034AC040027 +:105DC0008CCD08E001AA58241160000500000000F5 +:105DD0008CCF08E024E7000101EA7025ACCE08E092 +:105DE0008D19001001805821ACB900388D180014AD +:105DF000ACB8003CACA9003000000000000000007E +:105E00000000000000000000000000000000000092 +:105E100000000000000000003C0380008C640000D3 +:105E2000308200201040FFFD3C0F60008DED08E047 +:105E30003C0E010001AE18241460FFE100000000D8 +:105E4000AF87003C03E00008AF8B00588F8500400F +:105E5000240BFFF03C06800094A7001A8CA90024B4 +:105E600030ECFFFF000C38C000EB5024012A402129 +:105E7000ACC8003C8CA400248CC3003C00831023DD +:105E800018400033000000008CAD002025A2000166 +:105E90003C0F0050ACC2003835EE00103C068000CC +:105EA000ACCE003000000000000000000000000048 +:105EB00000000000000000000000000000000000E2 +:105EC000000000003C0480008C9900003338002062 +:105ED0001300FFFD30E20008104000173C0980006D +:105EE0008C880408ACA800108C83040CACA30014AC +:105EF0003C1900203C188000AF19003094AE001807 +:105F000094AF001C01CF3021A4A6001894AD001A54 +:105F100025A70001A4A7001A94AB001A94AC001E98 +:105F2000118B00030000000003E0000800000000E7 +:105F300003E00008A4A0001A8D2A0400ACAA0010F7 +:105F40008D240404ACA400140A0002183C1900209B +:105F50008CA200200A0002003C0F00500A0001EE53 +:105F60000000000027BDFFE8AFBF00100E000232A6 +:105F7000000000008F8900408FBF00103C038000AC +:105F8000A520000A9528000A9527000427BD0018BF +:105F90003105FFFF30E6000F0006150000A22025A6 +:105FA00003E00008AC6400803C0508008CA50020DC +:105FB0008F83000C27BDFFE8AFB00010AFBF001407 +:105FC00010A300100000802124040001020430040A +:105FD00000A6202400C3102450440006261000010F +:105FE000001018802787FDA41480000A006718217C +:105FF000261000012E0900025520FFF38F83000CAC +:10600000AF85000C8FBF00148FB0001003E00008B4 +:1060100027BD00188C6800003C058000ACA8002457 +:106020000E000234261000013C0508008CA500205B +:106030000A0002592E0900022405000100851804F7 +:106040003C0408008C84002027BDFFC8AFBF00348B +:1060500000831024AFBE0030AFB7002CAFB60028CD +:10606000AFB50024AFB40020AFB3001CAFB200182E +:10607000AFB1001410400051AFB000108F84004049 +:10608000948700069488000A00E8302330D5FFFF8B +:1060900012A0004B8FBF0034948B0018948C000A20 +:1060A000016C50233142FFFF02A2482B1520000251 +:1060B00002A02021004020212C8F000515E00002C5 +:1060C00000809821241300040E0001C102602021E9 +:1060D0008F87004002609021AF80004494F4000A52 +:1060E000026080211260004E3291FFFF3C1670006A +:1060F0003C1440003C1E20003C1760008F99005863 +:106100008F380000031618241074004F0283F82BF8 +:1061100017E0003600000000107E00478F86004424 +:1061200014C0003A2403000102031023022320219B +:106130003050FFFF1600FFF13091FFFF8F870040C6 +:106140003C1100203C108000AE11003094EB000A9E +:106150003C178000024B5021A4EA000A94E9000A8F +:1061600094E800043123FFFF3106000F00062D00E4 +:106170000065F025AEFE008094F3000A94F6001846 +:1061800012D30036001221408CFF00148CF4001052 +:1061900003E468210000C02101A4782B029870213B +:1061A00001CF6021ACED0014ACEC001002B238233A +:1061B00030F5FFFF16A0FFB88F8400408FBF00347A +:1061C0008FBE00308FB7002C8FB600288FB500240B +:1061D0008FB400208FB3001C8FB200188FB1001451 +:1061E0008FB0001003E0000827BD00381477FFCC03 +:1061F0008F8600440E000EE202002021004018218C +:106200008F86004410C0FFC9020310230270702360 +:106210008F87004001C368210A0002E431B2FFFF0A +:106220008F86004414C0FFC93C1100203C10800040 +:106230000A0002AEAE1100300E00046602002021FA +:106240000A0002DB00401821020020210E0009395B +:10625000022028210A0002DB004018210E0001EE76 +:10626000000000000A0002C702B2382327BDFFC8A1 +:10627000AFB7002CAFB60028AFB50024AFB40020F4 +:10628000AFB3001CAFB20018AFB10014AFB0001034 +:10629000AFBF00300E00011B241300013C047FFF40 +:1062A0003C0380083C0220003C010800AC20007048 +:1062B0003496FFFF34770080345200033C1512C03F +:1062C000241400013C1080002411FF800E000245C0 +:1062D000000000008F8700488F8B00188F89001402 +:1062E0008CEA00EC8CE800E8014B302B01092823F4 +:1062F00000A6102314400006014B18231440000E82 +:106300003C05800002A3602B1180000B0000000000 +:106310003C0560008CEE00EC8CED00E88CA4180CC1 +:10632000AF8E001804800053AF8D00148F8F0010C3 +:10633000ADF400003C0580008CBF00003BF900017B +:10634000333800011700FFE13C0380008C6201003C +:1063500024060C0010460009000000008C680100B3 +:106360002D043080548000103C0480008C690100B2 +:106370002D2331811060000C3C0480008CAA0100A8 +:1063800011460004000020218CA6010024C5FF81D5 +:1063900030A400FF8E0B01000E000269AE0B00243A +:1063A0000A00034F3C0480008C8D01002DAC3300AB +:1063B00011800022000000003C0708008CE70098D4 +:1063C00024EE00013C010800AC2E00983C04800043 +:1063D0008C8201001440000300000000566000148D +:1063E0003C0440008C9F01008C9801000000982123 +:1063F00003F1C82400193940330F007F00EF7025E6 +:1064000001D26825AC8D08308C8C01008C85010090 +:10641000258B0100017130240006514030A3007F1C +:106420000143482501324025AC8808303C04400037 +:10643000AE0401380A00030E000000008C99010030 +:10644000240F0020AC99002092F80000330300FFD5 +:10645000106F000C241F0050547FFFDD3C048000AF +:106460008C8401000E00154E000000000A00034F4E +:106470003C04800000963824ACA7180C0A000327BF +:106480008F8F00108C8501000E0008F72404008017 +:106490000A00034F3C04800000A4102B24030001D9 +:1064A00010400009000030210005284000A4102BF6 +:1064B00004A00003000318405440FFFC00052840DE +:1064C0005060000A0004182B0085382B54E00004AB +:1064D0000003184200C33025008520230003184222 +:1064E0001460FFF9000528420004182B03E000089F +:1064F00000C310213084FFFF30C600FF3C0780003E +:106500008CE201B80440FFFE00064C000124302557 +:106510003C08200000C820253C031000ACE00180AE +:10652000ACE50184ACE4018803E00008ACE301B809 +:106530003C0660008CC5201C2402FFF03083020062 +:10654000308601001060000E00A2282434A500014E +:106550003087300010E0000530830C0034A50004C3 +:106560003C04600003E00008AC85201C1060FFFDC7 +:106570003C04600034A5000803E00008AC85201C42 +:1065800054C0FFF334A500020A0003B03087300086 +:1065900027BDFFE8AFB00010AFBF00143C0760009C +:1065A000240600021080001100A080218F83005873 +:1065B0000E0003A78C6400188F8200580000202171 +:1065C000240600018C45000C0E000398000000001A +:1065D0001600000224020003000010218FBF0014E7 +:1065E0008FB0001003E0000827BD00188CE8201CC5 +:1065F0002409FFF001092824ACE5201C8F870058EE +:106600000A0003CD8CE5000C3C02600E00804021A6 +:1066100034460100240900180000000000000000BA +:10662000000000003C0A00503C0380003547020097 +:10663000AC68003834640400AC65003CAC670030E2 +:106640008C6C0000318B00201160FFFD2407FFFFE0 +:106650002403007F8C8D00002463FFFF248400044A +:10666000ACCD00001467FFFB24C60004000000004E +:10667000000000000000000024A402000085282B78 +:106680003C0300203C0E80002529FFFF010540212E +:10669000ADC300301520FFE00080282103E0000892 +:1066A000000000008F82005827BDFFD8AFB3001C48 +:1066B000AFBF0020AFB20018AFB10014AFB00010F0 +:1066C00094460002008098218C5200182CC300814F +:1066D0008C4800048C4700088C51000C8C49001039 +:1066E000106000078C4A00142CC4000414800013AE +:1066F00030EB000730C5000310A0001000000000C0 +:106700002410008B02002021022028210E00039873 +:10671000240600031660000224020003000010217A +:106720008FBF00208FB3001C8FB200188FB10014F0 +:106730008FB0001003E0000827BD00281560FFF1AE +:106740002410008B3C0C80003C030020241F00011F +:10675000AD830030AF9F0044000000000000000047 +:10676000000000002419FFF024D8000F031978243A +:106770003C1000D0AD88003801F0702524CD000316 +:106780003C08600EAD87003C35850400AD8E0030BE +:10679000000D38823504003C3C0380008C6B000007 +:1067A000316200201040FFFD0000000010E00008F2 +:1067B00024E3FFFF2407FFFF8CA800002463FFFFF2 +:1067C00024A50004AC8800001467FFFB24840004A7 +:1067D0003C05600EACA60038000000000000000080 +:1067E000000000008F8600543C0400203C0780001D +:1067F000ACE4003054C000060120202102402021DA +:106800000E0003A7000080210A00041D02002021C1 +:106810000E0003DD01402821024020210E0003A7C5 +:10682000000080210A00041D0200202127BDFFE096 +:10683000AFB200183092FFFFAFB10014AFBF001C21 +:10684000AFB000101640000D000088210A0004932C +:106850000220102124050003508500278CE5000C40 +:106860000000000D262800013111FFFF24E2002066 +:106870000232802B12000019AF8200588F82004430 +:10688000144000168F8700583C0670003C0320001F +:106890008CE5000000A62024148300108F84006083 +:1068A000000544023C09800000A980241480FFE90F +:1068B000310600FF2CCA000B5140FFEB26280001D7 +:1068C000000668803C0E080025CE575801AE6021B6 +:1068D0008D8B0000016000080000000002201021E4 +:1068E0008FBF001C8FB200188FB100148FB0001042 +:1068F00003E0000827BD00200E0003982404008454 +:106900001600FFD88F8700580A000474AF8000601B +:10691000020028210E0003BF240400018F870058C5 +:106920000A000474AF820060020028210E0003BF39 +:10693000000020210A0004A38F8700580E000404E1 +:10694000020020218F8700580A000474AF82006083 +:1069500030AFFFFF000F19C03C0480008C9001B8DD +:106960000600FFFE3C1920043C181000AC83018097 +:10697000AC800184AC990188AC9801B80A00047518 +:106980002628000190E2000390E30002000020218D +:106990000002FE0000033A0000FF2825240600083C +:1069A0000E000398000000001600FFDC2402000324 +:1069B0008F870058000010210A000474AF82006025 +:1069C00090E8000200002021240600090A0004C308 +:1069D00000082E0090E4000C240900FF308500FF21 +:1069E00010A900150000302190F9000290F8000372 +:1069F000308F00FF94EB000400196E000018740043 +:106A0000000F62000186202501AE5025014B28258C +:106A10003084FF8B0A0004C32406000A90E30002BE +:106A200090FF0004000020210003360000DF28252D +:106A30000A0004C32406000B0A0004D52406008BB8 +:106A4000000449C23127003F000443423C02800059 +:106A500000082040240316802CE60020AC43002CC4 +:106A600024EAFFE02482000114C0000330A900FFE3 +:106A700000801021314700FF000260803C0D800043 +:106A8000240A0001018D20213C0B000E00EA28049D +:106A9000008B302111200005000538278CCE000026 +:106AA00001C5382503E00008ACC700008CD8000001 +:106AB0000307782403E00008ACCF000027BDFFE007 +:106AC000AFB10014AFB00010AFBF00183C076000BA +:106AD0008CE408083402F0003C1160003083F000C0 +:106AE000240501C03C04800E000030211062000625 +:106AF000241000018CEA08083149F0003928E00030 +:106B00000008382B000780403C0D0200AE2D081411 +:106B1000240C16803C0B80008E2744000E000F8B47 +:106B2000AD6C002C120000043C02169124050001FB +:106B3000120500103C023D2C345800E0AE384408E9 +:106B40003C1108008E31007C8FBF00183C066000AD +:106B500000118540360F16808FB100148FB00010E1 +:106B60003C0E020027BD0020ACCF442003E000080B +:106B7000ACCE08103C0218DA345800E0AE384408B5 +:106B80003C1108008E31007C8FBF00183C0660006D +:106B900000118540360F16808FB100148FB00010A1 +:106BA0003C0E020027BD0020ACCF442003E00008CB +:106BB000ACCE08100A0004EB240500010A0004EB27 +:106BC0000000282124020400A7820024A780001CC2 +:106BD000000020213C06080024C65A582405FFFF67 +:106BE00024890001000440803124FFFF01061821A0 +:106BF0002C87002014E0FFFAAC6500002404040098 +:106C0000A7840026A780001E000020213C06080063 +:106C100024C65AD82405FFFF248D0001000460809B +:106C200031A4FFFF018658212C8A00201540FFFA6D +:106C3000AD650000A7800028A7800020A780002263 +:106C4000000020213C06080024C65B582405FFFFF5 +:106C5000249900010004C0803324FFFF030678213B +:106C60002C8E000415C0FFFAADE500003C05600065 +:106C70008CA73D002403E08F00E31024344601403C +:106C800003E00008ACA63D002487007F000731C266 +:106C900024C5FFFF000518C2246400013082FFFFF5 +:106CA000000238C0A78400303C010800AC27003047 +:106CB000AF80002C0000282100002021000030219E +:106CC0002489000100A728213124FFFF2CA81701E7 +:106CD000110000032C8300801460FFF924C600011A +:106CE00000C02821AF86002C10C0001DA786002AF6 +:106CF00024CAFFFF000A11423C08080025085B581F +:106D00001040000A00002021004030212407FFFF2E +:106D1000248E00010004688031C4FFFF01A86021B7 +:106D20000086582B1560FFFAAD87000030A2001FC7 +:106D30005040000800043080240300010043C804D0 +:106D400000041080004878212738FFFF03E0000886 +:106D5000ADF8000000C820212405FFFFAC8500002D +:106D600003E000080000000030A5FFFF30C6FFFF71 +:106D700030A8001F0080602130E700FF0005294295 +:106D80000000502110C0001D24090001240B000147 +:106D900025180001010B2004330800FF0126782686 +:106DA000390E00202DED00012DC2000101A2182591 +:106DB0001060000D014450250005C880032C4021BF +:106DC0000100182110E0000F000A20278D040000A8 +:106DD000008A1825AD03000024AD00010000402109 +:106DE0000000502131A5FFFF252E000131C9FFFF12 +:106DF00000C9102B1040FFE72518000103E0000830 +:106E0000000000008D0A0000014440240A0005D162 +:106E1000AC68000027BDFFE830A5FFFF30C6FFFFCC +:106E2000AFB00010AFBF001430E7FFFF00005021EB +:106E30003410FFFF0000602124AF001F00C0482174 +:106E4000241800012419002005E0001601E010219B +:106E50000002F943019F682A0009702B01AE40240B +:106E600011000017000C18800064102110E00005CC +:106E70008C4B000000F840040008382301675824B8 +:106E800000003821154000410000402155600016E7 +:106E90003169FFFF258B0001316CFFFF05E1FFEC3D +:106EA00001E0102124A2003E0002F943019F682A5C +:106EB0000009702B01AE40241500FFEB000C188078 +:106EC000154600053402FFFF020028210E0005B51B +:106ED00000003821020010218FBF00148FB0001075 +:106EE00003E0000827BD00181520000301601821E9 +:106EF000000B1C0224080010306A00FF154000053A +:106F0000306E000F250D000800031A0231A800FFA3 +:106F1000306E000F15C00005307F000325100004FF +:106F200000031902320800FF307F000317E000055C +:106F3000386900012502000200031882304800FF72 +:106F4000386900013123000110600004310300FFA3 +:106F5000250A0001314800FF310300FF000C6940A1 +:106F600001A34021240A000110CAFFD53110FFFF00 +:106F7000246E000131C800FF1119FFC638C9000195 +:106F80002D1F002053E0001C258B0001240D000163 +:106F90000A000648240E002051460017258B0001E8 +:106FA00025090001312800FF2D0900205120001281 +:106FB000258B000125430001010D5004014B1024D5 +:106FC000250900011440FFF4306AFFFF3127FFFF5D +:106FD00010EE000C2582FFFF304CFFFF0000502117 +:106FE0003410FFFF312800FF2D0900205520FFF24B +:106FF00025430001258B0001014648260A000602B0 +:10700000316CFFFF00003821000050210A000654B7 +:107010003410FFFF27BDFFD8AFB0001030F0FFFFE6 +:10702000AFB10014001039423211FFE000071080A8 +:10703000AFB3001C00B1282330D3FFFFAFB200185C +:1070400030A5FFFF00809021026030210044202104 +:10705000AFBF00200E0005E03207001F022288218A +:107060003403FFFF0240202102002821026030216A +:1070700000003821104300093231FFFF02201021A7 +:107080008FBF00208FB3001C8FB200188FB1001487 +:107090008FB0001003E0000827BD00280E0005E0B7 +:1070A0000000000000408821022010218FBF002036 +:1070B0008FB3001C8FB200188FB100148FB0001076 +:1070C00003E0000827BD0028000424003C03600002 +:1070D000AC603D0810A00002348210063482101605 +:1070E00003E00008AC623D0427BDFFE0AFB0001034 +:1070F000309000FF2E020006AFBF001810400008BD +:10710000AFB10014001030803C03080024635784A2 +:1071100000C328218CA400000080000800000000AB +:10712000000020218FBF00188FB100148FB0001015 +:107130000080102103E0000827BD00209791002A5D +:1071400016200051000020213C020800904200332C +:107150000A0006BB00000000978D002615A0003134 +:10716000000020210A0006BB2402000897870024A3 +:1071700014E0001A00001821006020212402000100 +:107180001080FFE98FBF0018000429C2004530219C +:1071900000A6582B1160FFE43C0880003C0720004B +:1071A000000569C001A76025AD0C00203C038008E4 +:1071B0002402001F2442FFFFAC6000000441FFFDD9 +:1071C0002463000424A5000100A6702B15C0FFF560 +:1071D000000569C00A0006A58FBF00189787001C2C +:1071E0003C04080024845A58240504000E0006605C +:1071F00024060001978B002424440001308AFFFFFD +:107200002569FFFF2D48040000402821150000409B +:10721000A789002424AC3800000C19C00A0006B964 +:10722000A780001C9787001E3C04080024845AD8BD +:10723000240504000E00066024060001979900262C +:10724000244400013098FFFF272FFFFF2F0E04007A +:107250000040882115C0002CA78F0026A780001EA3 +:107260003A020003262401003084FFFF0E00068D41 +:107270002C4500010011F8C027F00100001021C0CA +:107280000A0006BB240200089785002E978700227B +:107290003C04080024845B580E00066024060001AC +:1072A0009787002A8F89002C2445000130A8FFFF12 +:1072B00024E3FFFF0109302B0040802114C0001897 +:1072C000A783002AA7800022978500300E000F7543 +:1072D00002002021244A05003144FFFF0E00068DE4 +:1072E000240500013C05080094A500320E000F752E +:1072F00002002021244521003C0208009042003376 +:107300000A0006BB000521C00A0006F3A784001E80 +:1073100024AC3800000C19C00A0006B9A784001C70 +:107320000A00070DA7850022308400FF27BDFFE873 +:107330002C820006AFBF0014AFB000101040001543 +:1073400000A03821000440803C0308002463579CBF +:10735000010328218CA40000008000080000000028 +:1073600024CC007F000751C2000C59C23170FFFFCE +:107370002547C40030E5FFFF2784001C02003021B0 +:107380000E0005B52407000197860028020620217B +:10739000A78400288FBF00148FB0001003E00008FE +:1073A00027BD00183C0508008CA50030000779C2F5 +:1073B0000E00038125E4DF003045FFFF3C04080098 +:1073C00024845B58240600010E0005B52407000143 +:1073D000978E002A8FBF00148FB0001025CD0001BA +:1073E00027BD001803E00008A78D002A0007C9C2C6 +:1073F0002738FF00001878C231F0FFFF3C04080076 +:1074000024845AD802002821240600010E0005B564 +:1074100024070001978D0026260E0100000E84002F +:1074200025AC00013C0B6000A78C0026AD603D0838 +:1074300036040006000030213C0760008CE23D0469 +:10744000305F000617E0FFFD24C9000100061B00A5 +:10745000312600FF006440252CC50004ACE83D0443 +:1074600014A0FFF68FBF00148FB0001003E00008D7 +:1074700027BD0018000751C22549C8002406000195 +:10748000240700013C04080024845A580E0005B566 +:107490003125FFFF978700248FBF00148FB00010A5 +:1074A00024E6000127BD001803E00008A786002499 +:1074B0003C0660183C090800252900FCACC9502C8A +:1074C0008CC850003C0580003C020002350700805B +:1074D000ACC750003C04080024841FE03C030800B3 +:1074E00024631F98ACA50008ACA2000C3C01080066 +:1074F000AC2459A43C010800AC2359A803E00008BF +:107500002402000100A030213C1C0800279C59AC3B +:107510003C0C04003C0B0002008B3826008C4026FB +:107520002CE200010007502B2D050001000A4880C5 +:107530003C030800246359A4004520250123182199 +:107540001080000300001021AC660000240200013E +:1075500003E00008000000003C1C0800279C59AC18 +:107560003C0B04003C0A0002008A3026008B3826BF +:107570002CC200010006482B2CE5000100094080C8 +:107580003C030800246359A4004520250103182169 +:1075900010800005000010213C0C0800258C1F986D +:1075A000AC6C00002402000103E0000800000000B1 +:1075B0003C0900023C080400008830260089382677 +:1075C0002CC30001008028212CE400010083102539 +:1075D0001040000B000030213C1C0800279C59ACD7 +:1075E0003C0A80008D4E00082406000101CA68256F +:1075F000AD4D00088D4C000C01855825AD4B000C9D +:1076000003E0000800C010213C1C0800279C59AC76 +:107610003C0580008CA6000C0004202724020001F9 +:1076200000C4182403E00008ACA3000C3C020002D4 +:107630001082000B3C0560003C070400108700032B +:107640000000000003E00008000000008CA908D042 +:10765000240AFFFD012A402403E00008ACA808D05A +:107660008CA408D02406FFFE0086182403E000083E +:10767000ACA308D03C05601A34A600108CC300806F +:1076800027BDFFF88CC50084AFA3000093A40000C1 +:107690002402001010820003AFA5000403E00008DC +:1076A00027BD000893A7000114E0001497AC000266 +:1076B00097B800023C0F8000330EFFFC01CF682119 +:1076C000ADA50000A3A000003C0660008CC708D058 +:1076D0002408FFFE3C04601A00E82824ACC508D04A +:1076E0008FA300048FA200003499001027BD00086A +:1076F000AF22008003E00008AF2300843C0B800031 +:10770000318AFFFC014B48218D2800000A00080C3B +:10771000AFA8000427BDFFE8AFBF00103C1C080065 +:10772000279C59AC3C0580008CA4000C8CA2000462 +:107730003C0300020044282410A0000A00A31824DF +:107740003C0604003C0400021460000900A610245A +:107750001440000F3C0404000000000D3C1C080015 +:10776000279C59AC8FBF001003E0000827BD00180C +:107770003C0208008C4259A40040F80900000000B7 +:107780003C1C0800279C59AC0A0008358FBF00102C +:107790003C0208008C4259A80040F8090000000093 +:1077A0000A00083B000000003C0880008D0201B880 +:1077B0000440FFFE35090180AD2400003C031000A9 +:1077C00024040040AD250004A1240008A1260009DE +:1077D000A527000A03E00008AD0301B83084FFFFCD +:1077E0000080382130A5FFFF000020210A00084555 +:1077F000240600803087FFFF8CA400002406003898 +:107800000A000845000028218F8300788F860070C9 +:107810001066000B008040213C07080024E75B68ED +:10782000000328C000A710218C440000246300013D +:10783000108800053063000F5466FFFA000328C06B +:1078400003E00008000010213C07080024E75B6CFF +:1078500000A7302103E000088CC200003C03900028 +:1078600034620001008220253C038000AC640020CB +:107870008C65002004A0FFFE0000000003E000086B +:10788000000000003C0280003443000100832025FA +:1078900003E00008AC44002027BDFFE0AFB10014B6 +:1078A0003091FFFFAFB00010AFBF001812200013DF +:1078B00000A080218CA20000240400022406020003 +:1078C0001040000F004028210E0007250000000096 +:1078D00000001021AE000000022038218FBF0018E8 +:1078E0008FB100148FB0001000402021000028212B +:1078F000000030210A00084527BD00208CA20000AE +:10790000022038218FBF00188FB100148FB00010F3 +:107910000040202100002821000030210A000845F5 +:1079200027BD002000A010213087FFFF8CA5000498 +:107930008C4400000A000845240600068F83FD9C45 +:1079400027BDFFE8AFBF0014AFB00010906700087C +:10795000008010210080282130E600400000202116 +:1079600010C000088C5000000E0000BD0200202155 +:10797000020020218FBF00148FB000100A000548BC +:1079800027BD00180E0008A4000000000E0000BD76 +:1079900002002021020020218FBF00148FB00010B0 +:1079A0000A00054827BD001827BDFFE0AFB0001052 +:1079B0008F90FD9CAFBF001CAFB20018AFB1001498 +:1079C00092060001008088210E00087230D2000467 +:1079D00092040005001129C2A6050000348300406E +:1079E000A20300050E00087C022020210E00054A9B +:1079F0000220202124020001AE02000C02202821D6 +:107A0000A602001024040002A602001224060200AE +:107A1000A60200140E000725A60200161640000F4D +:107A20008FBF001C978C00743C0B08008D6B007896 +:107A30002588FFFF3109FFFF256A0001012A382B45 +:107A400010E00006A78800743C0F6006240E0016A4 +:107A500035ED0010ADAE00508FBF001C8FB2001886 +:107A60008FB100148FB0001003E0000827BD002084 +:107A700027BDFFE0AFB10014AFBF0018AFB00010DA +:107A80001080000400A088212402008010820007DA +:107A9000000000000000000D8FBF00188FB100141F +:107AA0008FB0001003E0000827BD00200E00087210 +:107AB00000A020218F86FD9C0220202190C500057A +:107AC0000E00087C30B000FF2403003E1603FFF1D7 +:107AD0003C0680008CC401780480FFFE34C801405D +:107AE000240900073C071000AD11000002202021EE +:107AF000A10900048FBF00188FB100148FB00010CF +:107B0000ACC701780A0008C527BD002027BDFFE0EB +:107B1000AFB00010AFBF0018AFB100143C10800030 +:107B20008E110020000000000E00054AAE04002067 +:107B3000AE1100208FBF00188FB100148FB000105D +:107B400003E0000827BD00203084FFFF00803821BB +:107B50002406003500A020210A0008450000282145 +:107B60003084FFFF008038212406003600A0202149 +:107B70000A0008450000282127BDFFD0AFB500242A +:107B80003095FFFFAFB60028AFB40020AFBF002C88 +:107B9000AFB3001CAFB20018AFB10014AFB000100B +:107BA00030B6FFFF12A000270000A0218F920058DE +:107BB0008E4300003C0680002402004000033E0289 +:107BC00000032C0230E4007F006698241482001D1C +:107BD00030A500FF8F8300682C68000A1100001098 +:107BE0008F8D0044000358803C0C0800258C57B84A +:107BF000016C50218D4900000120000800000000A8 +:107C000002D4302130C5FFFF0E0008522404008446 +:107C1000166000028F920058AF8000688F8D00447C +:107C20002659002026980001032090213314FFFFDD +:107C300015A00004AF9900580295202B1480FFDC9A +:107C400000000000028010218FBF002C8FB600289A +:107C50008FB500248FB400208FB3001C8FB20018A2 +:107C60008FB100148FB0001003E0000827BD003072 +:107C70002407003414A70149000000009247000EB9 +:107C80008F9FFDA08F90FD9C24181600A3E700197C +:107C90009242000D3C0880003C07800CA3E20018D3 +:107CA000964A00123C0D60003C117FFFA60A005C62 +:107CB000964400103623FFFF240200053099FFFF91 +:107CC000AE1900548E46001CAD1800288CEF000041 +:107CD0008DAE444801E6482601C93021AE06003881 +:107CE0008E05003824CB00013C0E7F00AE05003C21 +:107CF0008E0C003CAFEC0004AE0B00208E13002075 +:107D0000AE13001CA3E0001BAE03002CA3E2001284 +:107D10008E4A001424130050AE0A00348E0400343E +:107D2000AFE400148E590018AE1900489258000CA8 +:107D3000A218004E920D000835AF0020A20F0008D7 +:107D40008E090018012E282434AC4000AE0C001817 +:107D5000920B0000317200FF1253027F2403FF8058 +:107D60003C04080024845BE80E0008AA0000000020 +:107D70003C1108008E315BE80E00087202202021C1 +:107D80002405000424080001A2050025022020216A +:107D90000E00087CA20800053C0580008CB001782C +:107DA0000600FFFE8F92005834AE0140240F0002FF +:107DB0003C091000ADD10000A1CF0004ACA90178AE +:107DC0000A000962AF8000682CAD003751A0FF9413 +:107DD0008F8D0044000580803C110800263157E05B +:107DE000021178218DEE000001C0000800000000A3 +:107DF0002411000414B1008C3C0780003C080800EA +:107E00008D085BE88F86FD9CACE800208E4500085D +:107E10008F99FDA0240D0050ACC500308E4C000899 +:107E2000ACCC00508E4B000CACCB00348E43001019 +:107E3000ACC300388E4A0010ACCA00548E42001405 +:107E4000ACC2003C8E5F0018AF3F00048E50001C97 +:107E5000ACD0002090C40000309800FF130D024AFF +:107E6000000000008CC400348CD00030009030231F +:107E700004C000F12404008C126000EE2402000310 +:107E80000A000962AF8200682419000514B900666F +:107E90003C0580003C0808008D085BE88F86FD9C4F +:107EA000ACA800208E4C00048F8AFDA0240720007F +:107EB000ACCC001C924B000824120008A14B001906 +:107EC0008F82005890430009A14300188F85005805 +:107ED00090BF000A33E400FF1092001028890009C7 +:107EE000152000BA240E0002240D0020108D000B76 +:107EF000340780002898002117000008240740005C +:107F000024100040109000053C0700012419008057 +:107F1000109900023C070002240740008CC20018A0 +:107F20003C03FF00004350240147F825ACDF001854 +:107F300090B2000BA0D200278F8300589464000CED +:107F4000108001FE000000009467000C3C1F8000C0 +:107F50002405FFBFA4C7005C9063000E2407000443 +:107F6000A0C300088F820058904A000FA0CA0009E1 +:107F70008F8900588D3200108FE400740244C823AA +:107F8000ACD900588D300014ACD0002C95380018B6 +:107F9000330DFFFFACCD00409531001A322FFFFFAB +:107FA000ACCF00448D2E001CACCE00489128000EB2 +:107FB000A0C8000890CC000801855824126001B6C2 +:107FC000A0CB00088F9200580A000962AF870068B2 +:107FD0002406000614A600143C0E80003C0F080086 +:107FE0008DEF5BE88F85FD98ADCF00208E4900189E +:107FF0008F86FD9C8F8BFDA0ACA900008CC800383B +:1080000024040005ACA800048CCC003C1260008164 +:10801000AD6C00000A000962AF84006824110007FB +:1080200010B1004B240400063C05080024A55BE8C1 +:108030000E000881240400818F9200580013102B39 +:108040000A000962AF820068241F002314BFFFF6F4 +:108050003C0C80003C0508008CA55BE88F8BFDA0E4 +:10806000AD8500208F91FD9C8E4600042564002084 +:1080700026450014AE260028240600030E000F81BA +:10808000257000308F87005802002021240600034D +:108090000E000F8124E500083C04080024845BE8FE +:1080A0000E0008AA0000000092230000240A0050DD +:1080B000306200FF544AFFE18F9200580E000F6CAF +:1080C000000000000A000A6A8F920058240800335A +:1080D00014A800323C0380003C1108008E315BE89C +:1080E0008F8FFDA0AC7100208E420008240D002867 +:1080F0008F89FD9CADE200308E4A000C24060009F9 +:10810000ADEA00348E5F0010ADFF00388E440014DD +:10811000ADE400208E590018ADF900248E58001CE3 +:10812000ADF80028A1ED00118E4E00041260003160 +:10813000AD2E00288F9200580A000962AF860068B1 +:10814000240D002214ADFFB8000000002404000735 +:108150003C1008008E105BE83C188000AF10002037 +:108160005660FEAEAF8400683C04080024845BE8DF +:108170000E0008AA241300508F84FD9C90920000EA +:10818000325900FF1333014B000000008F9200585A +:10819000000020210A000962AF8400683C05080045 +:1081A00024A55BE80E000858240400810A000A6A2E +:1081B0008F92005802D498213265FFFF0E000852BA +:1081C000240400840A0009628F920058108EFF5325 +:1081D000240704002887000310E00179241100041B +:1081E000240F0001548FFF4D240740000A000A228B +:1081F000240701003C05080024A55BE80E0008A444 +:10820000240400828F920058000030210A00096285 +:10821000AF8600683C04080024845BE88CC2003808 +:108220000E0008AA8CC3003C8F9200580A000AC0B6 +:1082300000002021240400823C05080024A55BE8FE +:108240000E0008A4000000008F92005800001021CA +:108250000A000962AF8200688E5000048F91FD9C75 +:108260003C078000ACF00020922C00050200282181 +:10827000318B0002156001562404008A8F92FDA004 +:108280002404008D9245001B30A6002014C001502C +:1082900002002821922E00092408001231C900FF93 +:1082A0001128014B240400810E00087202002021D5 +:1082B0009258001B240F000402002021370D0042B9 +:1082C000A24D001B0E00087CA22F00253C0580005B +:1082D0008CA401780480FFFE34B90140241F000201 +:1082E000AF300000A33F00048F9200583C101000F4 +:1082F000ACB001780A000A6B0013102B8E500004FA +:108300008F91FD9C3C038000AC700020922A0005F8 +:108310000200282131420002144000172404008A80 +:10832000922C00092412000402002821318B00FF46 +:1083300011720011240400810E0008720200202135 +:108340008F89FDA0240800122405FFFE912F001B39 +:108350000200202135EE0020A12E001BA2280009DA +:108360009226000500C538240E00087CA2270005CF +:1083700002002821000020210E0009330000000027 +:108380000A000A6A8F9200588E4C00043C07800055 +:108390003C10080026105BE8ACEC00203C01080013 +:1083A000AC2C5BE8924B0003317100041220013BBE +:1083B0008F84FD9C24020006A0820009924F001BBE +:1083C000240EFFC031E9003F012E4025A08800089F +:1083D0009245000330A6000114C0013200000000E5 +:1083E0008E420008AE0200083C0208008C425BF09E +:1083F000104001318F90FDA0000219C28F8DFD9CAD +:10840000A603000C8E4A000C24180001240400145A +:10841000AE0A002C8E420010AE02001C965F0016C1 +:10842000A61F003C96590014A619003EADB8000CDA +:10843000A5B80010A5B80012A5B80014A5B800167C +:1084400012600144A2040011925100033232000272 +:108450002E5300018F920058266200080A0009621C +:10846000AF8200688E4400043C1980003C068008FE +:10847000AF2400208E45000890D80000240D005045 +:10848000331100FF122D009C2407008824060009E8 +:108490000E000845000000000A000A6A8F9200588A +:1084A0008E5000043C0980003C118008AD30002053 +:1084B0009228000024050050310400FF10850110AF +:1084C0002407008802002021000028210E00084512 +:1084D0002406000E922D00002418FF80020028219F +:1084E00001B8802524040004240600300E0007256E +:1084F000A23000000A000A6A8F9200588E500004D1 +:108500008F91FDA03C028000AC500020923F001BE8 +:1085100033F900101320006C240700810200202191 +:10852000000028212406001F0E000845000000005E +:108530000A000A6A8F9200588E44001C0E00085DE3 +:1085400000000000104000E3004048218F880058E0 +:1085500024070089012020218D05001C240600012C +:108560000E000845000000000A000A6A8F920058B9 +:10857000964900023C10080026105BE831280004F0 +:10858000110000973C0460008E4E001C3C0F8000E0 +:10859000ADEE00203C010800AC2E5BE896470002DF +:1085A00030E40001148000E6000000008E42000468 +:1085B000AE0200083C1008008E105BF0120000ECC8 +:1085C0003C0F80008F92FD9C241000018E4E0018FD +:1085D0008F8DFDA08F9FFD9801CF4825AE490018D3 +:1085E000A2400005AE50000C3C0808008D085BF06E +:1085F0008F840058A6500010000839C2A6500012FF +:10860000A6500014A6500016A5A7000C8C8C0008DC +:108610008F8B00588F8A0058ADAC002C8D63000CF6 +:1086200024070002ADA3001C91460010A1A6001172 +:108630008F82005890450011A3E500088F990058DB +:1086400093380012A258004E8F910058922F0013B9 +:10865000A1AF00128F920058964E0014A5AE003CB8 +:1086600096490016A5A9003E8E480018ADA8001432 +:108670005660FD6AAF8700683C05080024A55BE8EA +:108680000E000881000020218F9200580000382140 +:108690000A000962AF8700683C05080024A55BE872 +:1086A0000E0008A4240400828F9200580A000A4D8C +:1086B000000038210E000F6C000000008F9200585F +:1086C0000A000AC0000020210E00087202002021CA +:1086D0009223001B02002021346A00100E00087C47 +:1086E000A22A001B000038210200202100002821BE +:1086F0000A000BA52406001F9242000C305F000107 +:1087000013E0000300000000964A000EA4CA002CEB +:10871000924B000C316300025060000600003821CB +:108720008E470014964C0012ACC7001CA4CC001A53 +:10873000000038210A000B7F240600093C050800D0 +:1087400024A55BE80E0008A42404008B8F92005837 +:108750000A000A4D0013382B3C0C08008D8C5BE896 +:1087600024DFFFFE25930100326B007F016790211B +:1087700002638824AD110028AE4600E0AE4000E45C +:108780000A0009B3AE5F001CACC000543C0D0800E9 +:108790008DAD5BE83C18800C37090100ACED00287A +:1087A0008E510014AD3100E08E4F0014AD2F00E467 +:1087B0008E4E001025C7FFFE0A0009F4AD27001CED +:1087C0005491FDD6240740000A000A222407100015 +:1087D0000E00092D000000000A000A6A8F9200585E +:1087E0008C83442C3C12DEAD3651BEEF3C010800B8 +:1087F000AC205BE810710062000000003C196C6264 +:1088000037387970147800082404000297850074C2 +:108810009782006C2404009200A2F82B13E0001948 +:1088200002002821240400020E00069524050200FF +:108830003C068000ACC200203C010800AC225BE892 +:108840001040000D8F8C0058240A002824040003D7 +:10885000918B0010316300FF546A00012404000171 +:108860000E0000810000000010400004240400837A +:108870000A000BC28F920058240400833C050800B4 +:1088800024A55BE80E000881000000008F920058CC +:108890000013382B0A000962AF8700680A000B49F1 +:1088A000240200128E4400080E00085D0000000043 +:1088B0000A000B55AE0200083C05080024A55BE841 +:1088C0000E000858240400878F9200580A000B728B +:1088D0000013102B240400040E000695240500301C +:1088E0001440002A004048218F8800582407008344 +:1088F000012020218D05001C0A000BB32406000175 +:108900008F8300788F8600701066FEEE000038219D +:108910003C07080024E75B6C000320C00087282187 +:108920008CAE000011D0005D246F000131E3000F18 +:108930005466FFFA000320C00A000B8C00003821A7 +:108940008E4400040E00085D000000000A000BC801 +:10895000AE0200083C05080024A55BE80E0008A450 +:10896000240400828F9200580A000B72000010212C +:108970003C05080024A55BE80A000C7C2404008761 +:108980008C83442C0A000C5B3C196C628F88005865 +:108990003C0780083C0C8000240B0050240A000196 +:1089A000AD820020A0EB0000A0EA000191030004CA +:1089B000A0E3001891040005A0E400199106000648 +:1089C0003C04080024845B6CA0E6001A91020007B6 +:1089D0003C06080024C65B68A0E2001B9105000865 +:1089E000A0E5001C911F0009A0FF001D9119000ABD +:1089F000A0F9001E9118000BA0F8001F9112000CA6 +:108A0000A0F200209111000DA0F100219110000EA4 +:108A1000A0F00022910F000FA0EF0023910E001094 +:108A2000A0EE0024910D0011A0ED0025950C00147E +:108A3000A4EC0028950B00168F8A00708F920078A6 +:108A4000A4EB002A95030018000A10C02545000178 +:108A5000A4E3002C8D1F001C0044C0210046C82147 +:108A600030A5000FAF3F0000AF09000010B20006B4 +:108A7000AF850070000038218D05001C01202021E9 +:108A80000A000BB32406000124AD000131A7000F3A +:108A9000AF8700780A000CF9000038213C06080076 +:108AA00024C65B680086902100003821ACA000003D +:108AB0000A000B8CAE4000003C0482013C036000C5 +:108AC00034820E02AC603D68AF80009803E000087D +:108AD000AC623D6C27BDFFE8AFB000103090FFFFE7 +:108AE000001018422C620041AFBF00141440000275 +:108AF00024040080240300403C010800AC300060E6 +:108B00003C010800AC2300640E000F7500602821B2 +:108B1000244802BF2409FF8001092824001039805D +:108B2000001030408FBF00148FB0001000A720212C +:108B300000861821AF8300803C010800AC25005856 +:108B40003C010800AC24005C03E0000827BD0018CD +:108B5000308300FF30C6FFFF30E400FF3C08800098 +:108B60008D0201B80440FFFE000354000144382583 +:108B70003C09600000E920253C031000AD050180A0 +:108B8000AD060184AD04018803E00008AD0301B81F +:108B90008F8500583C0A6012354800108CAC0004E8 +:108BA0003C0D600E35A60010318B00062D690001CA +:108BB000AD0900C48CA70004ACC731808CA20008AA +:108BC00094A40002ACC231848CA3001C0460000396 +:108BD000A784009003E00008000000008CAF00189C +:108BE000ACCF31D08CAE001C03E00008ACCE31D449 +:108BF0008F8500588F87FF288F86FF308CAE00044A +:108C00003C0F601235E80010ACEE00788CAD000827 +:108C1000ACED007C8CAC0010ACCC004C8CAB000CF0 +:108C2000ACCB004894CA00543C0208008C4200447B +:108C300025490001A4C9005494C400543083FFFFA7 +:108C400010620017000000003C0208008C42004047 +:108C5000A4C200528CA30018ACE300308CA2001414 +:108C6000ACE2002C8CB90018ACF900388CB80014B8 +:108C700024050001ACF800348D0600BC50C5001975 +:108C80008D0200B48D0200B8A4E2004894E40048CC +:108C9000A4E4004A94E800EA03E000083102FFFF80 +:108CA0003C0208008C420024A4C00054A4C200521C +:108CB0008CA30018ACE300308CA20014ACE2002CB2 +:108CC0008CB90018ACF900388CB8001424050001E8 +:108CD000ACF800348D0600BC54C5FFEB8D0200B823 +:108CE0008D0200B4A4E2004894E40048A4E4004AE1 +:108CF00094E800EA03E000083102FFFF8F86005885 +:108D00003C0480008CC900088CC80008000929C0F8 +:108D1000000839C0AC87002090C30007306200040F +:108D20001040003EAF85009490CB0007316A0008E8 +:108D30001140003D8F87FF2C8CCD000C8CCE001491 +:108D400001AE602B11800036000000008CC2000CC8 +:108D5000ACE200708CCB00188F85FF288F88FF3025 +:108D6000ACEB00748CCA00102402FFF8ACAA00D847 +:108D70008CC9000CAD0900608CC4001CACA400D0F0 +:108D800090E3007C0062C824A0F9007C90D8000722 +:108D9000330F000811E000040000000090ED007C9B +:108DA00035AC0001A0EC007C90CF000731EE000153 +:108DB00011C000060000000090E3007C241800347D +:108DC00034790002A0F9007CACB800DC90C2000746 +:108DD0003046000210C000040000000090E8007C53 +:108DE00035040004A0E4007C90ED007D3C0B600E97 +:108DF000356A001031AC003FA0EC007D8D4931D4C4 +:108E00003127000110E00002240E0001A0AE00098D +:108E100094AF00EA03E0000831E2FFFF8F87FF2CE8 +:108E20000A000DAF8CC200140A000DB0ACE0007057 +:108E30008F8C005827BDFFD8AFB3001CAFB200180D +:108E4000AFB00010AFBF0020AFB10014918F00157C +:108E50003C13600E3673001031EB000FA38B009CA7 +:108E60008D8F00048D8B0008959F0012959900103E +:108E70009584001A9598001E958E001C33EDFFFF17 +:108E8000332AFFFF3089FFFF3308FFFF31C7FFFFA1 +:108E90003C010800AC2D00243C010800AC29004432 +:108EA0003C010800AC2A0040AE683178AE67317CE6 +:108EB00091850015959100163C12601236520010F3 +:108EC00030A200FF3230FFFFAE623188AE5000B4F6 +:108ED00091830014959F0018240600010066C804C1 +:108EE00033F8FFFFAE5900B8AE5800BC918E0014A5 +:108EF000AF8F00843C08600631CD00FFAE4D00C04E +:108F0000918A00159584000E3C07600A314900FFE4 +:108F1000AF8B00883084FFFFAE4900C835110010C8 +:108F20000E000D1034F004103C0208008C4200606A +:108F30003C0308008C6300643C0608008CC60058A3 +:108F40003C0508008CA5005C8F8400808FBF00204A +:108F5000AE23004CAE65319CAE030054AE4500DC40 +:108F6000AE6231A0AE6331A4AE663198AE22004845 +:108F70008FB3001CAE0200508FB10014AE4200E06F +:108F8000AE4300E4AE4600D88FB000108FB2001898 +:108F90000A00057D27BD0028978500929783007CF5 +:108FA00027BDFFE8AFB0001000A3102BAFBF001427 +:108FB000240400058F900058104000552409000239 +:108FC0000E0006958F850080AF8200942404000374 +:108FD0001040004F240900023C0680000E00008172 +:108FE000ACC2002024070001240820001040004DDE +:108FF00024040005978E00928F8AFF2C24090050CC +:1090000025C50001A7850092A14900003C0D08007C +:109010008DAD0064240380008F84FF28000D66005E +:10902000AD4C0018A5400006954B000A8F85FF3017 +:109030002402FF8001633024A546000A915F000AE4 +:109040000000482103E2C825A159000AA0A0000899 +:10905000A140004CA08000D5961800029783009094 +:109060003C020004A49800EA960F00022418FFBFF7 +:1090700025EE2401A48E00BE8E0D0004ACAD00448C +:109080008E0C0008ACAC0040A4A00050A4A000547A +:109090008E0B000C240C0030AC8B00288E060010C8 +:1090A000AC860024A480003EA487004EA487005014 +:1090B000A483003CAD420074AC8800D8ACA800602A +:1090C000A08700FC909F00D433F9007FA09900D4C2 +:1090D000909000D402187824A08F00D4914E007C88 +:1090E00035CD0001A14D007C938B009CAD480070F4 +:1090F000AC8C00DCA08B00D68F8800888F87008422 +:10910000AC8800C4AC8700C8A5400078A540007AB0 +:109110008FBF00148FB000100120102103E0000861 +:1091200027BD00188F8500940E0007258F860080CC +:109130000A000E9F2409000227BDFFE0AFB0001017 +:109140008F900058AFB10014AFBF00188E09000413 +:109150000E00054A000921C08E0800048F84FF28F4 +:109160008F82FF30000839C03C068000ACC7002069 +:10917000948500EA904300131460001C30B1FFFF97 +:109180008F8CFF2C918B0008316A00401540000B3A +:10919000000000008E0D0004022030218FBF001857 +:1091A0008FB100148FB00010240400220000382179 +:1091B000000D29C00A000D2F27BD00200E000098C9 +:1091C000000000008E0D0004022030218FBF001827 +:1091D0008FB100148FB00010240400220000382149 +:1091E000000D29C00A000D2F27BD00200E000090A1 +:1091F000000000008E0D0004022030218FBF0018F7 +:109200008FB100148FB00010240400220000382118 +:10921000000D29C00A000D2F27BD002027BDFFE04B +:10922000AFB200183092FFFFAFB00010AFBF001C0C +:10923000AFB100141240001E000080218F8600583C +:109240008CC500002403000600053F02000514023F +:1092500030E4000714830016304500FF2CA80006F8 +:1092600011000040000558803C0C0800258C58BCBB +:10927000016C50218D490000012000080000000011 +:109280008F8E0098240D000111CD005024020002A1 +:10929000AF820098260900013130FFFF24C800206A +:1092A0000212202B010030211480FFE5AF88005806 +:1092B000020010218FBF001C8FB200188FB1001464 +:1092C0008FB0001003E0000827BD00209387007EC8 +:1092D00054E00034000030210E000DE700000000D3 +:1092E0008F8600580A000EFF240200018F87009825 +:1092F0002405000210E50031240400130000282199 +:1093000000003021240700010E000D2F0000000096 +:109310000A000F008F8600588F83009824020002F5 +:109320001462FFF6240400120E000D9A00000000E3 +:109330008F85009400403021240400120E000D2F70 +:10934000000038210A000F008F8600588F83009894 +:109350002411000310710029241F0002107FFFCE8A +:1093600026090001240400100000282100003021FB +:109370000A000F1D240700018F91009824060002A7 +:109380001626FFF9240400100E000E410000000014 +:10939000144000238F9800588F8600580A000EFF53 +:1093A00024020003240400140E000D2F00002821C5 +:1093B0008F8600580A000EFF240200020E000EA93C +:1093C000000000000A000F008F8600580E000D3FBD +:1093D00000000000241900022404001400002821C9 +:1093E0000000302100003821AF9900980E000D2FA9 +:1093F000000000000A000F008F8600580E000D5775 +:10940000000000008F8500942419000200403021E4 +:1094100024040010000038210A000F56AF9900986C +:109420000040382124040010970F0002000028217A +:109430000E000D2F31E6FFFF8F8600580A000F0047 +:10944000AF9100988F84FF2C3C077FFF34E6FFFF2D +:109450008C8500182402000100A61824AC83001893 +:1094600003E00008A08200053084FFFF30A5FFFF65 +:109470001080000700001821308200011040000217 +:1094800000042042006518211480FFFB00052840DD +:1094900003E000080060102110C000070000000079 +:1094A0008CA2000024C6FFFF24A50004AC820000AB +:1094B00014C0FFFB2484000403E000080000000047 +:1094C00010A0000824A3FFFFAC86000000000000ED +:1094D000000000002402FFFF2463FFFF1462FFFA74 +:1094E0002484000403E0000800000000000411C010 +:1094F00003E000082442024027BDFFE8AFB000109F +:1095000000808021AFBF00140E000F9600A0202124 +:1095100000504821240AFF808FBF00148FB0001034 +:10952000012A30243127007F3C08800A3C042100B6 +:1095300000E8102100C428253C03800027BD001846 +:10954000AC650024AF820038AC400000AC6500245C +:1095500003E00008AC4000403C0D08008DAD005811 +:1095600000056180240AFF8001A45821016C482174 +:10957000012A30243127007F3C08800C3C04210064 +:1095800000E8102100C428253C038000AC650028B9 +:10959000AF82003403E00008AC40002430A5FFFF98 +:1095A0003C0680008CC201B80440FFFE3C086015F8 +:1095B00000A838253C031000ACC40180ACC0018475 +:1095C000ACC7018803E00008ACC301B83C0D08003B +:1095D0008DAD005800056180240AFF8001A4582148 +:1095E000016C4021010A4824000931403107007F05 +:1095F00000C728253C04200000A418253C02800058 +:10960000AC43083003E00008AF80003427BDFFE81A +:10961000AFB0001000808021AFBF00140E000F9685 +:1096200000A0202100504821240BFF80012B502452 +:10963000000A39403128007F3C0620008FBF00140B +:109640008FB0001000E8282534C2000100A21825C0 +:109650003C04800027BD0018AC83083003E00008FC +:10966000AF8000383C0580088CA700603C0680086D +:109670000087102B144000112C8340008CA8006040 +:109680002D0340001060000F240340008CC90060CF +:109690000089282B14A00002008018218CC30060D0 +:1096A00000035A42000B30803C0A0800254A59202A +:1096B00000CA202103E000088C8200001460FFF340 +:1096C0002403400000035A42000B30803C0A08008B +:1096D000254A592000CA202103E000088C8200009E +:1096E0003C05800890A60008938400AB24C20001CA +:1096F000304200FF3043007F1064000C0002382726 +:10970000A0A200083C0480008C85017804A0FFFE24 +:109710008F8A00A0240900023C081000AC8A014096 +:10972000A089014403E00008AC8801780A00101BFE +:1097300030E2008027BDFFD8AFB200188F9200A49E +:10974000AFBF0020AFB3001CAFB00010AFB100142A +:109750008F9300348E5900283C1000803C0EFFEFA0 +:10976000AE7900008E580024A260000A35CDFFFFBC +:10977000AE7800049251002C3C0BFF9F356AFFFF2E +:10978000A271000C8E6F000C3C080040A271000B0F +:1097900001F06025018D4824012A382400E8302595 +:1097A000AE66000C8E450004AE6000183C0400FF5D +:1097B000AE6500148E43002C3482FFFFA6600008C3 +:1097C0000062F824AE7F00108E5900088F9000A030 +:1097D000964E0012AE7900208E51000C31D83FFF1A +:1097E00000187980AE7100248E4D001401F06021C4 +:1097F00031CB0001AE6D00288E4A0018000C41C22A +:10980000000B4B80AE6A002C8E46001C01093821EB +:10981000A667001CAE660030964500028E4400200C +:10982000A665001EAE64003492430033306200042B +:1098300054400006924700003C0280083443010077 +:109840008C7F00D0AE7F0030924700008F860038BA +:10985000A0C700309245003330A4000250800007BA +:10986000925100018F880038240BFF80910A00304C +:10987000014B4825A1090030925100018F9000381A +:10988000240CFFBF2404FFDFA21100318F8D0038AC +:109890003C1880083711008091AF003C31EE007F0A +:1098A000A1AE003C8F890038912B003C016C502404 +:1098B000A12A003C8F9F00388E68001493E6003C7C +:1098C0002D0700010007114000C4282400A218251C +:1098D000A3E3003C8F87003896590012A4F90032A8 +:1098E0008E450004922E007C30B0000300107823D7 +:1098F00031ED000300AD102131CC000215800002D3 +:1099000024460034244600303C0280083443008062 +:10991000907F007C00BFC824333800041700000289 +:1099200024C2000400C010218F98003824190002BE +:10993000ACE20034A3190000924F003F8F8E003834 +:109940003C0C8008358B0080A1CF00018F9100383E +:10995000924D003F8E440004A62D0002956A005CE3 +:109960000E000FF43150FFFF00024B800209382532 +:109970003C08420000E82825AE2500048E4400384B +:109980008F850038ACA400188E460034ACA6001CAD +:10999000ACA0000CACA00010A4A00014A4A0001661 +:1099A000A4A00020A4A00022ACA000248E62001479 +:1099B00050400001240200018FBF00208FB3001C23 +:1099C0008FB200188FB100148FB00010ACA2000845 +:1099D0000A00101327BD002827BDFFC83C058008DA +:1099E00034A40080AFBF0034AFBE0030AFB7002C4E +:1099F000AFB60028AFB50024AFB40020AFB3001C51 +:109A0000AFB20018AFB10014AFB00010948300786B +:109A10009482007A104300512405FFFF0080F0215A +:109A20000A0011230080B821108B004D8FBF003435 +:109A30008F8600A03C1808008F18005C2411FF805E +:109A40003C1680000306782101F18024AED0002C62 +:109A500096EE007A31EC007F3C0D800E31CB7FFF1B +:109A6000018D5021000B4840012AA82196A4000036 +:109A70003C0808008D0800582405FF8030953FFF02 +:109A800001061821001539800067C8210325F82434 +:109A90003C02010003E290253338007F3C11800C2A +:109AA000AED20028031190219250000D320F000415 +:109AB00011E0003702E0982196E3007A96E8007AF8 +:109AC00096E5007A2404800031077FFF24E300013B +:109AD00030627FFF00A4F82403E2C825A6F9007ACB +:109AE00096E6007A3C1408008E94006030D67FFF22 +:109AF00012D400C1000000008E5800188F8400A00E +:109B000002A028212713FFFF0E000FCEAE53002C1A +:109B100097D5007897D4007A12950010000028217C +:109B20003C098008352401003C0A8008914800085F +:109B3000908700D53114007F30E400FF0284302B81 +:109B400014C0FFB9268B0001938E00AB268C000158 +:109B5000008E682115ACFFB78F8600A08FBF003440 +:109B60008FBE00308FB7002C8FB600288FB5002431 +:109B70008FB400208FB3001C8FB200188FB1001477 +:109B80008FB0001000A0102103E0000827BD0038AE +:109B900000C020210E000F99028028218E4B00105A +:109BA0008E4C00308F84003824090002016C502351 +:109BB000AE4A0010A089000096E3005C8E4400309D +:109BC0008F9100380E000FF43070FFFF00024380C9 +:109BD000020838253C02420000E22825AE25000498 +:109BE0008E5F00048F8A00388E590000240B000815 +:109BF000AD5F001CAD590018AD40000CAD40001029 +:109C00009246000A240400052408C00030D000FF5A +:109C1000A550001496580008A55800169251000A45 +:109C20003C188008322F00FFA54F0020964E0008F8 +:109C300037110100A54E0022AD400024924D000BCB +:109C400031AC00FFA54C0002A14B00018E49003051 +:109C50008F830038240BFFBFAC690008A06400307C +:109C60008F9000382403FFDF9607003200E8282495 +:109C700000B51025A6020032921F003233F9003FD2 +:109C800037260040A20600328F8C0038AD800034A9 +:109C90008E2F00D0AD8F0038918E003C3C0F7FFF9F +:109CA00031CD007FA18D003C8F84003835EEFFFF61 +:109CB000908A003C014B4824A089003C8F850038E5 +:109CC00090A8003C01033824A0A7003C8E42003439 +:109CD0008F9100383C038008AE2200408E59002C42 +:109CE0008E5F0030033F3023AE26004492300048A0 +:109CF0003218007FA23800488F8800388E4D00301F +:109D00008D0C004801AE582401965024014B482583 +:109D1000AD0900489244000AA104004C964700088F +:109D20008F850038A4A7004E8E5000308E4400303E +:109D30000E0003818C65006092F9007C0002F940FE +:109D4000004028210002110003E2302133360002D6 +:109D500012C00003020680210005B0800216802197 +:109D6000926D007C31B30004126000020005708027 +:109D7000020E80218E4B00308F8800382405800031 +:109D8000316A0003000A4823312400030204182129 +:109D9000AD03003496E4007A96F0007A96F1007AEA +:109DA00032027FFF2447000130FF7FFF0225C824D5 +:109DB000033F3025A6E6007A96F8007A3C120800A8 +:109DC0008E520060330F7FFF11F200180000000078 +:109DD0008F8400A00E000FCE02A028218F8400A047 +:109DE0000E000FDE028028210E001013000000007C +:109DF0000A00111F0000000096F1007A022480245E +:109E0000A6F0007A92EF007A92EB007A31EE00FF32 +:109E1000000E69C2000D6027000C51C03169007F3F +:109E2000012A20250A001119A2E4007A96E6007A98 +:109E300000C5C024A6F8007A92EF007A92F3007A67 +:109E400031F200FF001271C2000E6827000DB1C090 +:109E5000326C007F01962825A2E5007A0A0011D015 +:109E60008F8400A03C0380003084FFFF30A5FFFFFB +:109E7000AC640018AC65001C03E000088C620014A0 +:109E800027BDFFA03C068008AFBF005CAFBE0058F6 +:109E9000AFB70054AFB60050AFB5004CAFB40048F8 +:109EA000AFB30044AFB20040AFB1003CAFB0003838 +:109EB00034C80100910500D590C700083084FFFF29 +:109EC00030A500FF30E2007F0045182AAFA4001043 +:109ED000A7A00018A7A0002610600055AFA000148E +:109EE00090CA00083149007F00A9302324D3FFFF26 +:109EF0000013802B8FB400100014902B02128824C2 +:109F0000522000888FB300143C03800894790052DB +:109F1000947E00508FB60010033EC0230018BC0092 +:109F2000001714030016FC0002C2A82A16A00002A3 +:109F3000001F2C030040282100133C0000072403CD +:109F400000A4102A5440000100A020212885000907 +:109F500014A000020080A021241400083C0C8008FA +:109F60008D860048001459808D88004C3C03800089 +:109F70003169FFFF3C0A0010012A202534710400DA +:109F8000AC660038AF9100A4AC68003CAC64003013 +:109F900000000000000000000000000000000000C1 +:109FA00000000000000000000000000000000000B1 +:109FB0008C6E000031CD002011A0FFFD0014782A26 +:109FC00001F01024104000390000A8213C16800840 +:109FD00092D700083C1280008E44010032F6007FC8 +:109FE0000E000F9902C028218E3900108E44010006 +:109FF0000000902133373FFF0E000FB102E028210F +:10A00000923800003302003F2C500008520000102C +:10A0100000008821000210803C030800246358E4FB +:10A020000043F8218FFE000003C00008000000007C +:10A0300090CF0008938C00AB31EE007F00AE682318 +:10A04000018D58210A0012172573FFFF0000882197 +:10A050003C1E80008FC401000E000FCE02E02821BC +:10A060008FC401000E000FDE02C028211220000F55 +:10A070000013802B8F8B00A426A400010004AC00E9 +:10A08000027298230015AC032578004002B4B02A70 +:10A090000013802B241700010300882102D0102414 +:10A0A000AF9800A41440FFC9AFB700143C07800864 +:10A0B00094E200508FAE00103C05800002A288217F +:10A0C0003C060020A4F10050ACA6003094F40050EF +:10A0D00094EF005201D51823306CFFFF11F4001EDD +:10A0E000AFAC00108CEF004C001561808CF500487F +:10A0F00001EC28210000202100AC582B02A4C02133 +:10A10000030BB021ACE5004CACF600488FB4001056 +:10A110000014902B021288241620FF7C3C03800838 +:10A120008FB300148FBF005C8FBE00583A620001ED +:10A130008FB700548FB600508FB5004C8FB40048D5 +:10A140008FB300448FB200408FB1003C8FB0003815 +:10A1500003E0000827BD006094FE00548CF2004428 +:10A1600033C9FFFE0009C8C00259F821ACBF003C4A +:10A170008CE800448CAD003C010D50231940003B9D +:10A18000000000008CF7004026E20001ACA200387D +:10A190003C05005034A700103C038000AC67003041 +:10A1A00000000000000000000000000000000000AF +:10A1B000000000000000000000000000000000009F +:10A1C0008C7800003316002012C0FFFD3C1180087F +:10A1D000962200543C1580003C068008304E000159 +:10A1E000000E18C0007578218DEC04003C070800B3 +:10A1F0008CE700443C040020ACCC00488DF40404FF +:10A20000240B0001ACD4004C10EB0260AEA4003073 +:10A21000963900523C0508008CA5004000B99021F9 +:10A22000A6320052963F005427ED0001A62D00549F +:10A230009626005430C4FFFF5487FF2F8FB40010C0 +:10A2400030A5FFFF0E0011F4A62000543C070800C3 +:10A250008CE70024963E00520047B82303D74823DA +:10A26000A62900520A0012198FB400108CE2004097 +:10A270000A0012BE00000000922400012407000121 +:10A280003085007F14A7001C97AD00268E2B00148C +:10A29000240CC000316A3FFF01AC48243C06080092 +:10A2A0008CC60060012A402531043FFF0086882BC0 +:10A2B00012200011A7A800263C0508008CA5005814 +:10A2C0008F9100A0000439802402FF8000B1182182 +:10A2D0000067F82103E2F02433F8007F3C1280008D +:10A2E0003C19800EAE5E002C0319702191D0000D38 +:10A2F000360F0004A1CF000D0E001028241200011B +:10A30000241100013C1E80008FC401000E000FCEFE +:10A3100002E028218FC401000E000FDE02C02821B8 +:10A320001620FF558F8B00A40A0012860013802B85 +:10A330008F8600A490C80001310400201080019194 +:10A34000241000013C048008348B0080916A007C5A +:10A350008F9E0034AFA0002C314900011120000F66 +:10A36000AFB000288CCD00148C8E006001AE602B45 +:10A370001580000201A038218C8700603C188008FD +:10A38000370300808C70007000F0782B15E000021D +:10A3900000E020218C640070AFA4002C3C028008F7 +:10A3A000344500808CD200148CBF0070025FC82B33 +:10A3B00017200002024020218CA400708FA7002CDF +:10A3C0000087182310600003AFA3003024050002AB +:10A3D000AFA500288FA400280264882B162000BA9D +:10A3E000000018218CD000388FCE000C3C0F00806C +:10A3F000AFD000008CCD00343C0CFF9F01CF58251E +:10A40000AFCD000490CA003F3586FFFF01662024CF +:10A410003C0900203C08FFEFA3CA000B0089382547 +:10A420003511FFFF00F118243C0500088F8700A4B8 +:10A430000065C825AFD9000C8CE20014AFC000182D +:10A440008FA60030AFC200148CF800188FB0002C1B +:10A450003C1FFFFBAFD8001C8CEF000837F2FFFF5A +:10A4600003326824AFCF00248CEC000C020670216C +:10A47000AFCD000CA7C00038A7C0003AAFCE002C6B +:10A48000AFCC0020AFC000288CEA00148FAB002CAA +:10A49000014B48230126402311000011AFC80010D2 +:10A4A00090EB003D8FC900048FC80000000B5100E5 +:10A4B000012A28210000102100AA882B010218215E +:10A4C0000071F821AFC50004AFDF000090F2003D3D +:10A4D000A3D2000A8F9900A497380006A7D80008D5 +:10A4E0008F910038240800023C038008A228000055 +:10A4F0003465008094BF005C8FA4002C33F0FFFF14 +:10A500000E000FF48F9200380002CB808F8500A4DC +:10A51000021978253C18420001F87025AE4E00045F +:10A520008F8400388CAD0038AC8D00188CAC0034B2 +:10A53000AC8C001CAC80000CAC800010A48000141B +:10A54000A4800016A4800020A4800022AC800024F7 +:10A5500090A6003F8FA7002CA486000250E0019235 +:10A56000240700018FA200305040000290A2003D5D +:10A5700090A2003E244A0001A08A00018F84003886 +:10A580008FA9002CAC8900083C128008364D008051 +:10A5900091AC007C3186000214C000022407003414 +:10A5A000240700308F8500A43C198008373F0080C5 +:10A5B00090B0000093F9007C240E0004A0900030BD +:10A5C0008F8F00A48FB8002C8F8D003891F200017E +:10A5D0003304000301C46023A1B200318F8E003820 +:10A5E0008F8600A42402C00095CA003294C90012CC +:10A5F0008FAB002C0142402431233FFF010388250B +:10A60000A5D1003291D000323185000300EBF82152 +:10A610003218003F370F0040A1CF00328FA4002C2A +:10A6200003E5382133280004108000028F850038AC +:10A6300000E838213C0A8008ACA700343549010005 +:10A640008D2800D08FA3002C2419FFBFACA80038A0 +:10A6500090B1003C2C640001240FFFDF3227007F03 +:10A66000A0A7003C8F98003800049140931F003C45 +:10A6700003F98024A310003C8F8C0038918E003C9D +:10A6800001CF682401B23025A186003C8F8900A447 +:10A690008F8800388D2B0020AD0B00408D220024C8 +:10A6A000AD0200448D2A0028AD0A00488D23002CFD +:10A6B0000E001013AD03004C8FB1002824070002D8 +:10A6C000122700118FA300280003282B00058023E8 +:10A6D0000270982400608021006090210A00126FAF +:10A6E0000010882B962900128F8400A00000902172 +:10A6F0003125FFFFA7A900180E000FC22411000189 +:10A700000A00131D3C1E80003C0B80003C12800898 +:10A710008D640100924900088F92FF340E000F995A +:10A720003125007F8F9900388FA700288FA4003033 +:10A73000A3270000965F005C33F0FFFF0E000FF4CC +:10A740008F91003800026B80020D80253C0842008A +:10A750008F8D00A402085025AE2A00048DA5003874 +:10A760008F8A003800007821000F1100AD450018D5 +:10A770008DB800343C047FFF3488FFFFAD58001CC7 +:10A7800091A6003E8D4C001C8D4900180006190052 +:10A79000000677020183C821004E58250323882B29 +:10A7A000012B382100F1F821AD59001CAD5F0018D4 +:10A7B000AD40000CAD40001091B0003E8FA40030C1 +:10A7C00024090005A550001495A500042419C00013 +:10A7D00000884024A545001691B8003EA5580020E9 +:10A7E00095AF0004A54F0022AD40002491AE003F7C +:10A7F000A54E000291A6003E91AC003D01861023BB +:10A80000244B0001A14B00018F9100388FA3003031 +:10A810003C028008344B0100AE230008A22900301E +:10A820008F8C00388F8700A4959F003294F000121F +:10A830002407FFBF033FC02432053FFF03057825EF +:10A84000A58F0032918E00322418FFDF31CD003FFA +:10A8500035A60040A18600328F910038240DFFFFFD +:10A86000240CFF80AE2000348D6A00D0AE2A003860 +:10A870009223003C3069007FA229003C8F90003871 +:10A880003C0380009219003C0327F824A21F003CDF +:10A890008F8E003891C5003C00B87824A1CF003CD1 +:10A8A0008F8A00383C0E8008AD4D00408FA6002CEA +:10A8B000AD46004491420048004C5825A14B004849 +:10A8C0008F9000388F9900A48E09004801238824B6 +:10A8D00002283825AE070048933F003EA21F004CD7 +:10A8E0008F9800A48F8F003897050004A5E5004ECF +:10A8F0000E0003818DC500609246007C8FAC003055 +:10A9000000026940000291000040282130CB000283 +:10A9100001B21021156000AA018230213C0E80088E +:10A9200035C20080904C007C31830004106000032D +:10A930008FB900300005788000CF3021241F00043B +:10A940008F910038332D000303ED8023320800037C +:10A9500000C85021AE2A00343C188000A7C500383A +:10A960003C0680088F04010090DE00080E000FDE18 +:10A9700033C5007F0E001013000000000A00140D04 +:10A980008FA300288F9800348CC90038241F00033F +:10A99000A7000008AF0900008CC50034A300000A1E +:10A9A0008F9900A4AF0500043C080080932D003F60 +:10A9B000A31F000C8F0A000C3C02FF9FA30D000B8D +:10A9C0000148F0253451FFFF3C12FFEF8F9900A49E +:10A9D00003D170243646FFFF01C61824AF03000CD4 +:10A9E0008F2C0014972900128F8400A0AF0C001048 +:10A9F0008F2F0014AF000018AF000020AF0F00141D +:10AA0000AF0000248F270018312F3FFF000F59801F +:10AA1000AF0700288F2500080164F821312D0001BF +:10AA2000AF0500308F31000C8F920038001F51C2EB +:10AA3000000D438001481021241E00023C068008BE +:10AA4000A702001CA7000034AF11002CA25E00007A +:10AA500034D20080964E005C8F9900383C0342004F +:10AA600031CCFFFF01833825AF2700048F8B00A472 +:10AA7000240500012402C0008D640038240700343E +:10AA8000AF2400188D690034AF29001CAF20000CE2 +:10AA9000AF200010A7200014A7200016A720002038 +:10AAA000A7200022AF200024A7300002A325000128 +:10AAB0008F8800388F9F00A4AD10000893ED000030 +:10AAC000A10D00308F8A00A48F98003891510001A9 +:10AAD000A31100318F8B0038957E003203C27024A1 +:10AAE00001CF6025A56C0032916300323064003FD5 +:10AAF000A16400329249007C3125000214A00002BA +:10AB00008F840038240700303C198008AC8700345B +:10AB1000373201008E5F00D0240AFFBF020090216F +:10AB2000AC9F0038908D003C31A8007FA088003C8D +:10AB30008F9E003893C2003C004A8824A3D1003C79 +:10AB40008F8300380010882B9066003C34CE0020A4 +:10AB5000A06E003C8F8400A48F9800388C8C00205D +:10AB6000AF0C00408C8F0024AF0F00448C8700286E +:10AB7000AF0700488C8B002CAF0B004C0E0010135D +:10AB80003C1E80000A0012700000000094C80052B1 +:10AB90003C0A08008D4A002401488821A4D10052B3 +:10ABA0000A0012198FB40010A08700018F840038AA +:10ABB000240B0001AC8B00080A0013BE3C12800875 +:10ABC000000520800A0014A200C4302127BDFFE048 +:10ABD0003C0D8008AFB20018AFB00010AFBF001C32 +:10ABE000AFB1001435B200808E4C001835A80100BA +:10ABF000964B000695A70050910900FC000C5602E8 +:10AC0000016728233143007F312600FF240200031F +:10AC1000AF8300A8AF8400A010C2001B30B0FFFFBC +:10AC2000910600FC2412000530C200FF10520033D0 +:10AC300000000000160000098FBF001C8FB2001832 +:10AC40008FB100148FB00010240D0C003C0C80005C +:10AC500027BD002003E00008AD8D00240E0011FB8D +:10AC6000020020218FBF001C8FB200188FB100148A +:10AC70008FB00010240D0C003C0C800027BD00207C +:10AC800003E00008AD8D0024965800789651007AB4 +:10AC9000924E007D0238782631E8FFFF31C400C0B3 +:10ACA000148000092D11000116000037000000007B +:10ACB0005620FFE28FBF001C0E0010D100000000E4 +:10ACC0000A00156A8FBF001C1620FFDA0000000082 +:10ACD0000E0010D1000000001440FFD88FBF001CF0 +:10ACE0001600002200000000925F007D33E2003F6A +:10ACF000A242007D0A00156A8FBF001C950900EA78 +:10AD00008F86008000802821240400050E0007257E +:10AD10003130FFFF978300923C0480002465FFFFE1 +:10AD2000A78500928C8A01B80540FFFE0000000054 +:10AD3000AC8001808FBF001CAC9001848FB20018E2 +:10AD40008FB100148FB000103C0760133C0B100053 +:10AD5000240D0C003C0C800027BD0020AC8701882E +:10AD6000AC8B01B803E00008AD8D00240E0011FB90 +:10AD7000020020215040FFB18FBF001C925F007D78 +:10AD80000A00159733E2003F0E0011FB020020215C +:10AD90001440FFAA8FBF001C122000070000000013 +:10ADA0009259007D3330003F36020040A242007DC0 +:10ADB0000A00156A8FBF001C0E0010D100000000B1 +:10ADC0005040FF9E8FBF001C9259007D3330003FE2 +:10ADD0000A0015C636020040000000000000001BFB +:10ADE0000000000F0000000A00000008000000063C +:10ADF0000000000500000005000000040000000441 +:10AE00000000000300000003000000030000000336 +:10AE10000000000300000002000000020000000229 +:10AE2000000000020000000200000002000000021A +:10AE3000000000020000000200000002000000020A +:10AE400000000002000000020000000200000002FA +:10AE50000000000100000001000000018008010066 +:10AE6000800800808008000000000C000000308096 +:10AE7000080011D00800127C08001294080012A8E3 +:10AE8000080012BC080011D0080011D0080012F010 +:10AE90000800132C080013400800138808001A8CBF +:10AEA00008001A8C08001AC408001AC408001AD82E +:10AEB00008001AA808001D0008001CCC08001D5836 +:10AEC00008001D5808001DE008001D108008024001 +:10AED000080027340800256C0800275C080027F4C8 +:10AEE0000800293C0800298808002AAC080029B479 +:10AEF00008002A38080025DC08002EDC08002EA4F3 +:10AF000008002588080025880800258808002B20CF +:10AF100008002B20080025880800258808002DD06F +:10AF2000080025880800258808002588080025884D +:10AF300008002E0C080025880800258808002588B0 +:10AF4000080025880800258808002588080025882D +:10AF5000080025880800258808002588080025881D +:10AF6000080025880800258808002588080029A8E9 +:10AF7000080025880800258808002E680800258814 +:10AF800008002588080025880800258808002588ED +:10AF900008002588080025880800258808002588DD +:10AFA00008002588080025880800258808002588CD +:10AFB00008002588080025880800258808002588BD +:10AFC00008002CF4080025880800258808002C6853 +:10AFD00008002BC408003CE408003CB808003C848E +:10AFE00008003C5808003C3808003BEC8008010091 +:10AFF00080080080800800008008008008004C6401 +:10B0000008004C9C08004BE408004C6408004C64A9 +:10B01000080049B808004C64080050500A000C842D +:10B0200000000000000000000000000D7278703683 +:10B030002E322E31620000000602010300000000E3 +:10B0400000000001000000000000000000000000FF +:10B0500000000000000000000000000000000000F0 +:10B0600000000000000000000000000000000000E0 +:10B0700000000000000000000000000000000000D0 +:10B0800000000000000000000000000000000000C0 +:10B0900000000000000000000000000000000000B0 +:10B0A00000000000000000000000000000000000A0 +:10B0B0000000000000000000000000000000000090 +:10B0C0000000000000000000000000000000000080 +:10B0D0000000000000000000000000000000000070 +:10B0E0000000000000000000000000000000000060 +:10B0F0000000000000000000000000000000000050 +:10B10000000000000000000000000000000000003F +:10B11000000000000000000000000000000000002F +:10B12000000000000000000000000000000000001F +:10B13000000000000000000000000000000000000F +:10B1400000000000000000000000000000000000FF +:10B1500000000000000000000000000000000000EF +:10B1600000000000000000000000000000000000DF +:10B1700000000000000000000000000000000000CF +:10B1800000000000000000000000000000000000BF +:10B1900000000000000000000000000000000000AF +:10B1A000000000000000000000000000000000009F +:10B1B000000000000000000000000000000000008F +:10B1C000000000000000000000000000000000007F +:10B1D000000000000000000000000000000000006F +:10B1E000000000000000000000000000000000005F +:10B1F000000000000000000000000000000000004F +:10B20000000000000000000000000000000000003E +:10B21000000000000000000000000000000000002E +:10B22000000000000000000000000000000000001E +:10B23000000000000000000000000000000000000E +:10B2400000000000000000000000000000000000FE +:10B2500000000000000000000000000000000000EE +:10B2600000000000000000000000000000000000DE +:10B2700000000000000000000000000000000000CE +:10B2800000000000000000000000000000000000BE +:10B2900000000000000000000000000000000000AE +:10B2A000000000000000000000000000000000009E +:10B2B000000000000000000000000000000000008E +:10B2C000000000000000000000000000000000007E +:10B2D000000000000000000000000000000000006E +:10B2E000000000000000000000000000000000005E +:10B2F000000000000000000000000000000000004E +:10B30000000000000000000000000000000000003D +:10B31000000000000000000000000000000000002D +:10B32000000000000000000000000000000000001D +:10B33000000000000000000000000000000000000D +:10B3400000000000000000000000000000000000FD +:10B3500000000000000000000000000000000000ED +:10B3600000000000000000000000000000000000DD +:10B3700000000000000000000000000000000000CD +:10B3800000000000000000000000000000000000BD +:10B3900000000000000000000000000000000000AD +:10B3A000000000000000000000000000000000009D +:10B3B000000000000000000000000000000000008D +:10B3C000000000000000000000000000000000007D +:10B3D000000000000000000000000000000000006D +:10B3E000000000000000000000000000000000005D +:10B3F000000000000000000000000000000000004D +:10B40000000000000000000000000000000000003C +:10B41000000000000000000000000000000000002C +:10B42000000000000000000000000000000000001C +:10B43000000000000000000000000000000000000C +:10B4400000000000000000000000000000000000FC +:10B4500000000000000000000000000000000000EC +:10B4600000000000000000000000000000000000DC +:10B4700000000000000000000000000000000000CC +:10B4800000000000000000000000000000000000BC +:10B4900000000000000000000000000000000000AC +:10B4A000000000000000000000000000000000009C +:10B4B000000000000000000000000000000000008C +:10B4C000000000000000000000000000000000007C +:10B4D000000000000000000000000000000000006C +:10B4E000000000000000000000000000000000005C +:10B4F000000000000000000000000000000000004C +:10B50000000000000000000000000000000000003B +:10B51000000000000000000000000000000000002B +:10B52000000000000000000000000000000000001B +:10B53000000000000000000000000000000000000B +:10B5400000000000000000000000000000000000FB +:10B5500000000000000000000000000000000000EB +:10B5600000000000000000000000000000000000DB +:10B5700000000000000000000000000000000000CB +:10B5800000000000000000000000000000000000BB +:10B5900000000000000000000000000000000000AB +:10B5A000000000000000000000000000000000009B +:10B5B000000000000000000000000000000000008B +:10B5C000000000000000000000000000000000007B +:10B5D000000000000000000000000000000000006B +:10B5E000000000000000000000000000000000005B +:10B5F000000000000000000000000000000000004B +:10B60000000000000000000000000000000000003A +:10B61000000000000000000000000000000000002A +:10B62000000000000000000000000000000000001A +:10B63000000000000000000000000000000000000A +:10B6400000000000000000000000000000000000FA +:10B6500000000000000000000000000000000000EA +:10B6600000000000000000000000000000000000DA +:10B6700000000000000000000000000000000000CA +:10B6800000000000000000000000000000000000BA +:10B6900000000000000000000000000000000000AA +:10B6A000000000000000000000000000000000009A +:10B6B000000000000000000000000000000000008A +:10B6C000000000000000000000000000000000007A +:10B6D000000000000000000000000000000000006A +:10B6E000000000000000000000000000000000005A +:10B6F000000000000000000000000000000000004A +:10B700000000000000000000000000000000000039 +:10B710000000000000000000000000000000000029 +:10B720000000000000000000000000000000000019 +:10B730000000000000000000000000000000000009 +:10B7400000000000000000000000000000000000F9 +:10B7500000000000000000000000000000000000E9 +:10B7600000000000000000000000000000000000D9 +:10B7700000000000000000000000000000000000C9 +:10B7800000000000000000000000000000000000B9 +:10B7900000000000000000000000000000000000A9 +:10B7A0000000000000000000000000000000000099 +:10B7B0000000000000000000000000000000000089 +:10B7C0000000000000000000000000000000000079 +:10B7D0000000000000000000000000000000000069 +:10B7E0000000000000000000000000000000000059 +:10B7F0000000000000000000000000000000000049 +:10B800000000000000000000000000000000000038 +:10B810000000000000000000000000000000000028 +:10B820000000000000000000000000000000000018 +:10B830000000000000000000000000000000000008 +:10B8400000000000000000000000000000000000F8 +:10B8500000000000000000000000000000000000E8 +:10B8600000000000000000000000000000000000D8 +:10B8700000000000000000000000000000000000C8 +:10B8800000000000000000000000000000000000B8 +:10B8900000000000000000000000000000000000A8 +:10B8A0000000000000000000000000000000000098 +:10B8B0000000000000000000000000000000000088 +:10B8C0000000000000000000000000000000000078 +:10B8D0000000000000000000000000000000000068 +:10B8E0000000000000000000000000000000000058 +:10B8F0000000000000000000000000000000000048 +:10B900000000000000000000000000000000000037 +:10B910000000000000000000000000000000000027 +:10B920000000000000000000000000000000000017 +:10B930000000000000000000000000000000000007 +:10B9400000000000000000000000000000000000F7 +:10B9500000000000000000000000000000000000E7 +:10B9600000000000000000000000000000000000D7 +:10B9700000000000000000000000000000000000C7 +:10B9800000000000000000000000000000000000B7 +:10B9900000000000000000000000000000000000A7 +:10B9A0000000000000000000000000000000000097 +:10B9B0000000000000000000000000000000000087 +:10B9C0000000000000000000000000000000000077 +:10B9D0000000000000000000000000000000000067 +:10B9E0000000000000000000000000000000000057 +:10B9F0000000000000000000000000000000000047 +:10BA00000000000000000000000000000000000036 +:10BA10000000000000000000000000000000000026 +:10BA20000000000000000000000000000000000016 +:10BA30000000000000000000000000000000000006 +:10BA400000000000000000000000000000000000F6 +:10BA500000000000000000000000000000000000E6 +:10BA600000000000000000000000000000000000D6 +:10BA700000000000000000000000000000000000C6 +:10BA800000000000000000000000000000000000B6 +:10BA900000000000000000000000000000000000A6 +:10BAA0000000000000000000000000000000000096 +:10BAB0000000000000000000000000000000000086 +:10BAC0000000000000000000000000000000000076 +:10BAD0000000000000000000000000000000000066 +:10BAE0000000000000000000000000000000000056 +:10BAF0000000000000000000000000000000000046 +:10BB00000000000000000000000000000000000035 +:10BB10000000000000000000000000000000000025 +:10BB20000000000000000000000000000000000015 +:10BB30000000000000000000000000000000000005 +:10BB400000000000000000000000000000000000F5 +:10BB500000000000000000000000000000000000E5 +:10BB600000000000000000000000000000000000D5 +:10BB700000000000000000000000000000000000C5 +:10BB800000000000000000000000000000000000B5 +:10BB900000000000000000000000000000000000A5 +:10BBA0000000000000000000000000000000000095 +:10BBB0000000000000000000000000000000000085 +:10BBC0000000000000000000000000000000000075 +:10BBD0000000000000000000000000000000000065 +:10BBE0000000000000000000000000000000000055 +:10BBF0000000000000000000000000000000000045 +:10BC00000000000000000000000000000000000034 +:10BC10000000000000000000000000000000000024 +:10BC20000000000000000000000000000000000014 +:10BC30000000000000000000000000000000000004 +:10BC400000000000000000000000000000000000F4 +:10BC500000000000000000000000000000000000E4 +:10BC600000000000000000000000000000000000D4 +:10BC700000000000000000000000000000000000C4 +:10BC800000000000000000000000000000000000B4 +:10BC900000000000000000000000000000000000A4 +:10BCA0000000000000000000000000000000000094 +:10BCB0000000000000000000000000000000000084 +:10BCC0000000000000000000000000000000000074 +:10BCD0000000000000000000000000000000000064 +:10BCE0000000000000000000000000000000000054 +:10BCF0000000000000000000000000000000000044 +:10BD00000000000000000000000000000000000033 +:10BD10000000000000000000000000000000000023 +:10BD20000000000000000000000000000000000013 +:10BD30000000000000000000000000000000000003 +:10BD400000000000000000000000000000000000F3 +:10BD500000000000000000000000000000000000E3 +:10BD600000000000000000000000000000000000D3 +:10BD700000000000000000000000000000000000C3 +:10BD800000000000000000000000000000000000B3 +:10BD900000000000000000000000000000000000A3 +:10BDA0000000000000000000000000000000000093 +:10BDB0000000000000000000000000000000000083 +:10BDC0000000000000000000000000000000000073 +:10BDD0000000000000000000000000000000000063 +:10BDE0000000000000000000000000000000000053 +:10BDF0000000000000000000000000000000000043 +:10BE00000000000000000000000000000000000032 +:10BE10000000000000000000000000000000000022 +:10BE20000000000000000000000000000000000012 +:10BE30000000000000000000000000000000000002 +:10BE400000000000000000000000000000000000F2 +:10BE500000000000000000000000000000000000E2 +:10BE600000000000000000000000000000000000D2 +:10BE700000000000000000000000000000000000C2 +:10BE800000000000000000000000000000000000B2 +:10BE900000000000000000000000000000000000A2 +:10BEA0000000000000000000000000000000000092 +:10BEB0000000000000000000000000000000000082 +:10BEC0000000000000000000000000000000000072 +:10BED0000000000000000000000000000000000062 +:10BEE0000000000000000000000000000000000052 +:10BEF0000000000000000000000000000000000042 +:10BF00000000000000000000000000000000000031 +:10BF10000000000000000000000000000000000021 +:10BF20000000000000000000000000000000000011 +:10BF30000000000000000000000000000000000001 +:10BF400000000000000000000000000000000000F1 +:10BF500000000000000000000000000000000000E1 +:10BF600000000000000000000000000000000000D1 +:10BF700000000000000000000000000000000000C1 +:10BF800000000000000000000000000000000000B1 +:10BF900000000000000000000000000000000000A1 +:10BFA0000000000000000000000000000000000091 +:10BFB0000000000000000000000000000000000081 +:10BFC0000000000000000000000000000000000071 +:10BFD0000000000000000000000000000000000061 +:10BFE0000000000000000000000000000000000051 +:10BFF0000000000000000000000000000000000041 +:10C000000000000000000000000000000000000030 +:10C010000000000000000000000000000000000020 +:10C020000000000000000000000000000000000010 +:10C030000000000000000000000000000000000000 +:10C0400000000000000000000000000000000000F0 +:10C0500000000000000000000000000000000000E0 +:10C0600000000000000000000000000000000000D0 +:10C0700000000000000000000000000000000000C0 +:10C0800000000000000000000000000000000000B0 +:10C0900000000000000000000000000000000000A0 +:10C0A0000000000000000000000000000000000090 +:10C0B0000000000000000000000000000000000080 +:10C0C0000000000000000000000000000000000070 +:10C0D0000000000000000000000000000000000060 +:10C0E0000000000000000000000000000000000050 +:10C0F0000000000000000000000000000000000040 +:10C10000000000000000000000000000000000002F +:10C11000000000000000000000000000000000001F +:10C12000000000000000000000000000000000000F +:10C1300000000000000000000000000000000000FF +:10C1400000000000000000000000000000000000EF +:10C1500000000000000000000000000000000000DF +:10C1600000000000000000000000000000000000CF +:10C1700000000000000000000000000000000000BF +:10C1800000000000000000000000000000000000AF +:10C19000000000000000000000000000000000009F +:10C1A000000000000000000000000000000000008F +:10C1B000000000000000000000000000000000007F +:10C1C000000000000000000000000000000000006F +:10C1D000000000000000000000000000000000005F +:10C1E000000000000000000000000000000000004F +:10C1F000000000000000000000000000000000003F +:10C20000000000000000000000000000000000002E +:10C21000000000000000000000000000000000001E +:10C22000000000000000000000000000000000000E +:10C2300000000000000000000000000000000000FE +:10C2400000000000000000000000000000000000EE +:10C2500000000000000000000000000000000000DE +:10C2600000000000000000000000000000000000CE +:10C2700000000000000000000000000000000000BE +:10C2800000000000000000000000000000000000AE +:10C29000000000000000000000000000000000009E +:10C2A000000000000000000000000000000000008E +:10C2B000000000000000000000000000000000007E +:10C2C000000000000000000000000000000000006E +:10C2D000000000000000000000000000000000005E +:10C2E000000000000000000000000000000000004E +:10C2F000000000000000000000000000000000003E +:10C30000000000000000000000000000000000002D +:10C31000000000000000000000000000000000001D +:10C32000000000000000000000000000000000000D +:10C3300000000000000000000000000000000000FD +:10C3400000000000000000000000000000000000ED +:10C3500000000000000000000000000000000000DD +:10C3600000000000000000000000000000000000CD +:10C3700000000000000000000000000000000000BD +:10C3800000000000000000000000000000000000AD +:10C39000000000000000000000000000000000009D +:10C3A000000000000000000000000000000000008D +:10C3B000000000000000000000000000000000007D +:10C3C000000000000000000000000000000000006D +:10C3D000000000000000000000000000000000005D +:10C3E000000000000000000000000000000000004D +:10C3F000000000000000000000000000000000003D +:10C40000000000000000000000000000000000002C +:10C41000000000000000000000000000000000001C +:10C42000000000000000000000000000000000000C +:10C4300000000000000000000000000000000000FC +:10C4400000000000000000000000000000000000EC +:10C4500000000000000000000000000000000000DC +:10C4600000000000000000000000000000000000CC +:10C4700000000000000000000000000000000000BC +:10C4800000000000000000000000000000000000AC +:10C49000000000000000000000000000000000009C +:10C4A000000000000000000000000000000000008C +:10C4B000000000000000000000000000000000007C +:10C4C000000000000000000000000000000000006C +:10C4D000000000000000000000000000000000005C +:10C4E000000000000000000000000000000000004C +:10C4F000000000000000000000000000000000003C +:10C50000000000000000000000000000000000002B +:10C51000000000000000000000000000000000001B +:10C52000000000000000000000000000000000000B +:10C5300000000000000000000000000000000000FB +:10C5400000000000000000000000000000000000EB +:10C5500000000000000000000000000000000000DB +:10C5600000000000000000000000000000000000CB +:10C5700000000000000000000000000000000000BB +:10C5800000000000000000000000000000000000AB +:10C59000000000000000000000000000000000009B +:10C5A000000000000000000000000000000000008B +:10C5B000000000000000000000000000000000007B +:10C5C000000000000000000000000000000000006B +:10C5D000000000000000000000000000000000005B +:10C5E000000000000000000000000000000000004B +:10C5F000000000000000000000000000000000003B +:10C60000000000000000000000000000000000002A +:10C61000000000000000000000000000000000001A +:10C62000000000000000000000000000000000000A +:10C6300000000000000000000000000000000000FA +:10C6400000000000000000000000000000000000EA +:10C6500000000000000000000000000000000000DA +:10C6600000000000000000000000000000000000CA +:10C6700000000000000000000000000000000000BA +:10C6800000000000000000000000000000000000AA +:10C69000000000000000000000000000000000009A +:10C6A000000000000000000000000000000000008A +:10C6B000000000000000000000000000000000007A +:10C6C000000000000000000000000000000000006A +:10C6D000000000000000000000000000000000005A +:10C6E000000000000000000000000000000000004A +:10C6F000000000000000000000000000000000003A +:10C700000000000000000000000000000000000029 +:10C710000000000000000000000000000000000019 +:10C720000000000000000000000000000000000009 +:10C7300000000000000000000000000000000000F9 +:10C7400000000000000000000000000000000000E9 +:10C7500000000000000000000000000000000000D9 +:10C7600000000000000000000000000000000000C9 +:10C7700000000000000000000000000000000000B9 +:10C7800000000000000000000000000000000000A9 +:10C790000000000000000000000000000000000099 +:10C7A0000000000000000000000000000000000089 +:10C7B0000000000000000000000000000000000079 +:10C7C0000000000000000000000000000000000069 +:10C7D0000000000000000000000000000000000059 +:10C7E0000000000000000000000000000000000049 +:10C7F0000000000000000000000000000000000039 +:10C800000000000000000000000000000000000028 +:10C810000000000000000000000000000000000018 +:10C820000000000000000000000000000000000008 +:10C8300000000000000000000000000000000000F8 +:10C8400000000000000000000000000000000000E8 +:10C8500000000000000000000000000000000000D8 +:10C8600000000000000000000000000000000000C8 +:10C8700000000000000000000000000000000000B8 +:10C8800000000000000000000000000000000000A8 +:10C890000000000000000000000000000000000098 +:10C8A0000000000000000000000000000000000088 +:10C8B0000000000000000000000000000000000078 +:10C8C0000000000000000000000000000000000068 +:10C8D0000000000000000000000000000000000058 +:10C8E0000000000000000000000000000000000048 +:10C8F0000000000000000000000000000000000038 +:10C900000000000000000000000000000000000027 +:10C910000000000000000000000000000000000017 +:10C920000000000000000000000000000000000007 +:10C9300000000000000000000000000000000000F7 +:10C9400000000000000000000000000000000000E7 +:10C9500000000000000000000000000000000000D7 +:10C9600000000000000000000000000000000000C7 +:10C9700000000000000000000000000000000000B7 +:10C9800000000000000000000000000000000000A7 +:10C990000000000000000000000000000000000097 +:10C9A0000000000000000000000000000000000087 +:10C9B0000000000000000000000000000000000077 +:10C9C0000000000000000000000000000000000067 +:10C9D0000000000000000000000000000000000057 +:10C9E0000000000000000000000000000000000047 +:10C9F0000000000000000000000000000000000037 +:10CA00000000000000000000000000000000000026 +:10CA10000000000000000000000000000000000016 +:10CA20000000000000000000000000000000000006 +:10CA300000000000000000000000000000000000F6 +:10CA400000000000000000000000000000000000E6 +:10CA500000000000000000000000000000000000D6 +:10CA600000000000000000000000000000000000C6 +:10CA700000000000000000000000000000000000B6 +:10CA800000000000000000000000000000000000A6 +:10CA90000000000000000000000000000000000096 +:10CAA0000000000000000000000000000000000086 +:10CAB0000000000000000000000000000000000076 +:10CAC0000000000000000000000000000000000066 +:10CAD0000000000000000000000000000000000056 +:10CAE0000000000000000000000000000000000046 +:10CAF0000000000000000000000000000000000036 +:10CB00000000000000000000000000000000000025 +:10CB10000000000000000000000000000000000015 +:10CB20000000000000000000000000000000000005 +:10CB300000000000000000000000000000000000F5 +:10CB400000000000000000000000000000000000E5 +:10CB500000000000000000000000000000000000D5 +:10CB600000000000000000000000000000000000C5 +:10CB700000000000000000000000000000000000B5 +:10CB800000000000000000000000000000000000A5 +:10CB90000000000000000000000000000000000095 +:10CBA0000000000000000000000000000000000085 +:10CBB0000000000000000000000000000000000075 +:10CBC0000000000000000000000000000000000065 +:10CBD0000000000000000000000000000000000055 +:10CBE0000000000000000000000000000000000045 +:10CBF0000000000000000000000000000000000035 +:10CC00000000000000000000000000000000000024 +:10CC10000000000000000000000000000000000014 +:10CC20000000000000000000000000000000000004 +:10CC300000000000000000000000000000000000F4 +:10CC400000000000000000000000000000000000E4 +:10CC500000000000000000000000000000000000D4 +:10CC600000000000000000000000000000000000C4 +:10CC700000000000000000000000000000000000B4 +:10CC800000000000000000000000000000000000A4 +:10CC90000000000000000000000000000000000094 +:10CCA0000000000000000000000000000000000084 +:10CCB0000000000000000000000000000000000074 +:10CCC0000000000000000000000000000000000064 +:10CCD0000000000000000000000000000000000054 +:10CCE0000000000000000000000000000000000044 +:10CCF0000000000000000000000000000000000034 +:10CD00000000000000000000000000000000000023 +:10CD10000000000000000000000000000000000013 +:10CD20000000000000000000000000000000000003 +:10CD300000000000000000000000000000000000F3 +:10CD400000000000000000000000000000000000E3 +:10CD500000000000000000000000000000000000D3 +:10CD600000000000000000000000000000000000C3 +:10CD700000000000000000000000000000000000B3 +:10CD800000000000000000000000000000000000A3 +:10CD90000000000000000000000000000000000093 +:10CDA0000000000000000000000000000000000083 +:10CDB0000000000000000000000000000000000073 +:10CDC0000000000000000000000000000000000063 +:10CDD0000000000000000000000000000000000053 +:10CDE0000000000000000000000000000000000043 +:10CDF0000000000000000000000000000000000033 +:10CE00000000000000000000000000000000000022 +:10CE10000000000000000000000000000000000012 +:10CE20000000000000000000000000000000000002 +:10CE300000000000000000000000000000000000F2 +:10CE400000000000000000000000000000000000E2 +:10CE500000000000000000000000000000000000D2 +:10CE600000000000000000000000000000000000C2 +:10CE700000000000000000000000000000000000B2 +:10CE800000000000000000000000000000000000A2 +:10CE90000000000000000000000000000000000092 +:10CEA0000000000000000000000000000000000082 +:10CEB0000000000000000000000000000000000072 +:10CEC0000000000000000000000000000000000062 +:10CED0000000000000000000000000000000000052 +:10CEE0000000000000000000000000000000000042 +:10CEF0000000000000000000000000000000000032 +:10CF00000000000000000000000000000000000021 +:10CF10000000000000000000000000000000000011 +:10CF20000000000000000000000000000000000001 +:10CF300000000000000000000000000000000000F1 +:10CF400000000000000000000000000000000000E1 +:10CF500000000000000000000000000000000000D1 +:10CF600000000000000000000000000000000000C1 +:10CF700000000000000000000000000000000000B1 +:10CF800000000000000000000000000000000000A1 +:10CF90000000000000000000000000000000000091 +:10CFA0000000000000000000000000000000000081 +:10CFB0000000000000000000000000000000000071 +:10CFC0000000000000000000000000000000000061 +:10CFD0000000000000000000000000000000000051 +:10CFE0000000000000000000000000000000000041 +:10CFF0000000000000000000000000000000000031 +:10D000000000000000000000000000000000000020 +:10D010000000000000000000000000000000000010 +:10D020000000000000000000000000000000000000 +:10D0300000000000000000000000000000000000F0 +:10D0400000000000000000000000000000000000E0 +:10D0500000000000000000000000000000000000D0 +:10D0600000000000000000000000000000000000C0 +:10D0700000000000000000000000000000000000B0 +:10D0800000000000000000000000000000000000A0 +:10D090000000000000000000000000000000000090 +:10D0A0000000000000000000000000000000000080 +:10D0B0000000000000000000000000000000000070 +:10D0C0000000000000000000000000000000000060 +:10D0D0000000000000000000000000000000000050 +:10D0E0000000000000000000000000000000000040 +:10D0F0000000000000000000000000000000000030 +:10D10000000000000000000000000000000000001F +:10D11000000000000000000000000000000000000F +:10D1200000000000000000000000000000000000FF +:10D1300000000000000000000000000000000000EF +:10D1400000000000000000000000000000000000DF +:10D1500000000000000000000000000000000000CF +:10D1600000000000000000000000000000000000BF +:10D1700000000000000000000000000000000000AF +:10D18000000000000000000000000000000000009F +:10D19000000000000000000000000000000000008F +:10D1A000000000000000000000000000000000007F +:10D1B000000000000000000000000000000000006F +:10D1C000000000000000000000000000000000005F +:10D1D000000000000000000000000000000000004F +:10D1E000000000000000000000000000000000003F +:10D1F000000000000000000000000000000000002F +:10D20000000000000000000000000000000000001E +:10D21000000000000000000000000000000000000E +:10D2200000000000000000000000000000000000FE +:10D2300000000000000000000000000000000000EE +:10D2400000000000000000000000000000000000DE +:10D2500000000000000000000000000000000000CE +:10D2600000000000000000000000000000000000BE +:10D2700000000000000000000000000000000000AE +:10D28000000000000000000000000000000000009E +:10D29000000000000000000000000000000000008E +:10D2A000000000000000000000000000000000007E +:10D2B000000000000000000000000000000000006E +:10D2C000000000000000000000000000000000005E +:10D2D000000000000000000000000000000000004E +:10D2E000000000000000000000000000000000003E +:10D2F000000000000000000000000000000000002E +:10D30000000000000000000000000000000000001D +:10D31000000000000000000000000000000000000D +:10D3200000000000000000000000000000000000FD +:10D3300000000000000000000000000000000000ED +:10D3400000000000000000000000000000000000DD +:10D3500000000000000000000000000000000000CD +:10D3600000000000000000000000000000000000BD +:10D3700000000000000000000000000000000000AD +:10D38000000000000000000000000000000000009D +:10D39000000000000000000000000000000000008D +:10D3A000000000000000000000000000000000007D +:10D3B000000000000000000000000000000000006D +:10D3C000000000000000000000000000000000005D +:10D3D000000000000000000000000000000000004D +:10D3E000000000000000000000000000000000003D +:10D3F000000000000000000000000000000000002D +:10D40000000000000000000000000000000000001C +:10D41000000000000000000000000000000000000C +:10D4200000000000000000000000000000000000FC +:10D4300000000000000000000000000000000000EC +:10D4400000000000000000000000000000000000DC +:10D4500000000000000000000000000000000000CC +:10D4600000000000000000000000000000000000BC +:10D4700000000000000000000000000000000000AC +:10D48000000000000000000000000000000000009C +:10D49000000000000000000000000000000000008C +:10D4A000000000000000000000000000000000007C +:10D4B000000000000000000000000000000000006C +:10D4C000000000000000000000000000000000005C +:10D4D000000000000000000000000000000000004C +:10D4E000000000000000000000000000000000003C +:10D4F000000000000000000000000000000000002C +:10D50000000000000000000000000000000000001B +:10D51000000000000000000000000000000000000B +:10D5200000000000000000000000000000000000FB +:10D5300000000000000000000000000000000000EB +:10D5400000000000000000000000000000000000DB +:10D5500000000000000000000000000000000000CB +:10D5600000000000000000000000000000000000BB +:10D5700000000000000000000000000000000000AB +:10D58000000000000000000000000000000000009B +:10D59000000000000000000000000000000000008B +:10D5A000000000000000000000000000000000007B +:10D5B000000000000000000000000000000000006B +:10D5C000000000000000000000000000000000005B +:10D5D000000000000000000000000000000000004B +:10D5E000000000000000000000000000000000003B +:10D5F000000000000000000000000000000000002B +:10D60000000000000000000000000000000000001A +:10D61000000000000000000000000000000000000A +:10D6200000000000000000000000000000000000FA +:10D6300000000000000000000000000000000000EA +:10D6400000000000000000000000000000000000DA +:10D6500000000000000000000000000000000000CA +:10D6600000000000000000000000000000000000BA +:10D6700000000000000000000000000000000000AA +:10D68000000000000000000000000000000000009A +:10D69000000000000000000000000000000000008A +:10D6A000000000000000000000000000000000007A +:10D6B000000000000000000000000000000000006A +:10D6C000000000000000000000000000000000005A +:10D6D000000000000000000000000000000000004A +:10D6E000000000000000000000000000000000003A +:10D6F000000000000000000000000000000000002A +:10D700000000000000000000000000000000000019 +:10D710000000000000000000000000000000000009 +:10D7200000000000000000000000000000000000F9 +:10D7300000000000000000000000000000000000E9 +:10D7400000000000000000000000000000000000D9 +:10D7500000000000000000000000000000000000C9 +:10D7600000000000000000000000000000000000B9 +:10D7700000000000000000000000000000000000A9 +:10D780000000000000000000000000000000000099 +:10D790000000000000000000000000000000000089 +:10D7A0000000000000000000000000000000000079 +:10D7B0000000000000000000000000000000000069 +:10D7C0000000000000000000000000000000000059 +:10D7D0000000000000000000000000000000000049 +:10D7E0000000000000000000000000000000000039 +:10D7F0000000000000000000000000000000000029 +:10D800000000000000000000000000000000000018 +:10D810000000000000000000000000000000000008 +:10D8200000000000000000000000000000000000F8 +:10D8300000000000000000000000000000000000E8 +:10D8400000000000000000000000000000000000D8 +:10D8500000000000000000000000000000000000C8 +:10D8600000000000000000000000000000000000B8 +:10D8700000000000000000000000000000000000A8 +:10D880000000000000000000000000000000000098 +:10D890000000000000000000000000000000000088 +:10D8A0000000000000000000000000000000000078 +:10D8B0000000000000000000000000000000000068 +:10D8C0000000000000000000000000000000000058 +:10D8D0000000000000000000000000000000000048 +:10D8E0000000000000000000000000000000000038 +:10D8F0000000000000000000000000000000000028 +:10D900000000000000000000000000000000000017 +:10D910000000000000000000000000000000000007 +:10D9200000000000000000000000000000000000F7 +:10D9300000000000000000000000000000000000E7 +:10D9400000000000000000000000000000000000D7 +:10D9500000000000000000000000000000000000C7 +:10D9600000000000000000000000000000000000B7 +:10D9700000000000000000000000000000000000A7 +:10D980000000000000000000000000000000000097 +:10D990000000000000000000000000000000000087 +:10D9A0000000000000000000000000000000000077 +:10D9B0000000000000000000000000000000000067 +:10D9C0000000000000000000000000000000000057 +:10D9D0000000000000000000000000000000000047 +:10D9E0000000000000000000000000000000000037 +:10D9F0000000000000000000000000000000000027 +:10DA00000000000000000000000000000000000016 +:10DA10000000000000000000000000000000000006 +:10DA200000000000000000000000000000000000F6 +:10DA300000000000000000000000000000000000E6 +:10DA400000000000000000000000000000000000D6 +:10DA500000000000000000000000000000000000C6 +:10DA600000000000000000000000000000000000B6 +:10DA700000000000000000000000000000000000A6 +:10DA80000000000000000000000000000000000096 +:10DA90000000000000000000000000000000000086 +:10DAA0000000000000000000000000000000000076 +:10DAB0000000000000000000000000000000000066 +:10DAC0000000000000000000000000000000000056 +:10DAD0000000000000000000000000000000000046 +:10DAE0000000000000000000000000000000000036 +:10DAF0000000000000000000000000000000000026 +:10DB00000000000000000000000000000000000015 +:10DB10000000000000000000000000000000000005 +:10DB200000000000000000000000000000000000F5 +:10DB300000000000000000000000000000000000E5 +:10DB400000000000000000000000000000000000D5 +:10DB500000000000000000000000000000000000C5 +:10DB600000000000000000000000000000000000B5 +:10DB700000000000000000000000000000000000A5 +:10DB80000000000000000000000000000000000095 +:10DB90000000000000000000000000000000000085 +:10DBA0000000000000000000000000000000000075 +:10DBB0000000000000000000000000000000000065 +:10DBC0000000000000000000000000000000000055 +:10DBD0000000000000000000000000000000000045 +:10DBE0000000000000000000000000000000000035 +:10DBF0000000000000000000000000000000000025 +:10DC00000000000000000000000000000000000014 +:10DC10000000000000000000000000000000000004 +:10DC200000000000000000000000000000000000F4 +:10DC300000000000000000000000000000000000E4 +:10DC400000000000000000000000000000000000D4 +:10DC500000000000000000000000000000000000C4 +:10DC600000000000000000000000000000000000B4 +:10DC700000000000000000000000000000000000A4 +:10DC80000000000000000000000000000000000094 +:10DC90000000000000000000000000000000000084 +:10DCA0000000000000000000000000000000000074 +:10DCB0000000000000000000000000000000000064 +:10DCC0000000000000000000000000000000000054 +:10DCD0000000000000000000000000000000000044 +:10DCE0000000000000000000000000000000000034 +:10DCF0000000000000000000000000000000000024 +:10DD00000000000000000000000000000000000013 +:10DD10000000000000000000000000000000000003 +:10DD200000000000000000000000000000000000F3 +:10DD300000000000000000000000000000000000E3 +:10DD400000000000000000000000000000000000D3 +:10DD500000000000000000000000000000000000C3 +:10DD600000000000000000000000000000000000B3 +:10DD700000000000000000000000000000000000A3 +:10DD80000000000000000000000000000000000093 +:10DD90000000000000000000000000000000000083 +:10DDA0000000000000000000000000000000000073 +:10DDB0000000000000000000000000000000000063 +:10DDC0000000000000000000000000000000000053 +:10DDD0000000000000000000000000000000000043 +:10DDE0000000000000000000000000000000000033 +:10DDF0000000000000000000000000000000000023 +:10DE00000000000000000000000000000000000012 +:10DE10000000000000000000000000000000000002 +:10DE200000000000000000000000000000000000F2 +:10DE300000000000000000000000000000000000E2 +:10DE400000000000000000000000000000000000D2 +:10DE500000000000000000000000000000000000C2 +:10DE600000000000000000000000000000000000B2 +:10DE700000000000000000000000000000000000A2 +:10DE80000000000000000000000000000000000092 +:10DE90000000000000000000000000000000000082 +:10DEA0000000000000000000000000000000000072 +:10DEB0000000000000000000000000000000000062 +:10DEC0000000000000000000000000000000000052 +:10DED0000000000000000000000000000000000042 +:10DEE0000000000000000000000000000000000032 +:10DEF0000000000000000000000000000000000022 +:10DF00000000000000000000000000000000000011 +:10DF10000000000000000000000000000000000001 +:10DF200000000000000000000000000000000000F1 +:10DF300000000000000000000000000000000000E1 +:10DF400000000000000000000000000000000000D1 +:10DF500000000000000000000000000000000000C1 +:10DF600000000000000000000000000000000000B1 +:10DF700000000000000000000000000000000000A1 +:10DF80000000000000000000000000000000000091 +:10DF90000000000000000000000000000000000081 +:10DFA0000000000000000000000000000000000071 +:10DFB0000000000000000000000000000000000061 +:10DFC0000000000000000000000000000000000051 +:10DFD0000000000000000000000000000000000041 +:10DFE0000000000000000000000000000000000031 +:10DFF0000000000000000000000000000000000021 +:10E000000000000000000000000000000000000010 +:10E010000000000000000000000000000000000000 +:10E0200000000000000000000000000000000000F0 +:10E0300000000000000000000000000000000000E0 +:10E0400000000000000000000000000000000000D0 +:10E0500000000000000000000000000000000000C0 +:10E0600000000000000000000000000000000000B0 +:10E0700000000000000000000000000000000000A0 +:10E080000000000000000000000000000000000090 +:10E090000000000000000000000000000000000080 +:10E0A0000000000000000000000000000000000070 +:10E0B0000000000000000000000000000000000060 +:10E0C0000000000000000000000000000000000050 +:10E0D0000000000000000000000000000000000040 +:10E0E0000000000000000000000000000000000030 +:10E0F0000000000000000000000000000000000020 +:10E10000000000000000000000000000000000000F +:10E1100000000000000000000000000000000000FF +:10E1200000000000000000000000000000000000EF +:10E1300000000000000000000000000000000000DF +:10E1400000000000000000000000000000000000CF +:10E1500000000000000000000000000000000000BF +:10E1600000000000000000000000000000000000AF +:10E17000000000000000000000000000000000009F +:10E18000000000000000000000000000000000008F +:10E19000000000000000000000000000000000007F +:10E1A000000000000000000000000000000000006F +:10E1B000000000000000000000000000000000005F +:10E1C000000000000000000000000000000000004F +:10E1D000000000000000000000000000000000003F +:10E1E000000000000000000000000000000000002F +:10E1F000000000000000000000000000000000809F +:10E20000000000000000000000000000000000000E +:10E2100000000000000000000000000000000000FE +:10E220000000000A000000000000000000000000E4 +:10E2300010000003000000000000000D0000000DB1 +:10E240003C020801244295C03C030801246397FC6A +:10E25000AC4000000043202B1480FFFD244200044A +:10E260003C1D080037BD9FFC03A0F0213C100800B6 +:10E27000261032103C1C0801279C95C00E0012BECF +:10E28000000000000000000D3C02800030A5FFFFF0 +:10E2900030C600FF344301803C0880008D0901B87E +:10E2A0000520FFFE00000000AC6400002404000212 +:10E2B000A4650008A066000AA064000BAC67001803 +:10E2C0003C03100003E00008AD0301B83C0560000A +:10E2D0008CA24FF80440FFFE00000000ACA44FC029 +:10E2E0003C0310003C040200ACA44FC403E000084F +:10E2F000ACA34FF89486000C00A050212488001491 +:10E3000000062B0200051080004448210109182B4B +:10E310001060001100000000910300002C6400094F +:10E320005080000991190001000360803C0D080134 +:10E3300025AD9258018D58218D67000000E000083E +:10E340000000000091190001011940210109302B42 +:10E3500054C0FFF29103000003E000080000102108 +:10E360000A000CCC25080001910F0001240E000AC0 +:10E3700015EE00400128C8232F38000A1700003D81 +:10E38000250D00028D580000250F0006370E0100F4 +:10E39000AD4E0000910C000291AB000191A400026F +:10E3A00091A60003000C2E00000B3C0000A71025D6 +:10E3B00000041A000043C8250326C025AD580004F8 +:10E3C000910E000691ED000191E7000291E5000336 +:10E3D000000E5E00000D6400016C30250007220075 +:10E3E00000C41025004518252508000A0A000CCC99 +:10E3F000AD430008910F000125040002240800022B +:10E4000055E80001012020210A000CCC00804021A9 +:10E41000910C0001240B0003158B00160000000076 +:10E420008D580000910E000225080003370D0008EA +:10E43000A14E00100A000CCCAD4D00009119000156 +:10E44000240F0004172F000B0000000091070002AA +:10E45000910400038D43000000072A0000A410254A +:10E460003466000425080004AD42000C0A000CCC00 +:10E47000AD46000003E000082402000127BDFFE8CC +:10E48000AFBF0014AFB000100E00164E0080802108 +:10E490003C0480083485008090A600052403FFFE1C +:10E4A0000200202100C310248FBF00148FB0001081 +:10E4B000A0A200050A00165827BD001827BDFFE8D6 +:10E4C000AFB00010AFBF00140E000FD40080802149 +:10E4D0003C06800834C5008090A40000240200504F +:10E4E000308300FF106200073C09800002002021F9 +:10E4F0008FBF00148FB00010AD2001800A00108F74 +:10E5000027BD0018240801003C07800002002021DC +:10E510008FBF00148FB00010ACE801800A00108F8C +:10E5200027BD001827BDFF783C058008AFBE0080DE +:10E53000AFB7007CAFB3006CAFB10064AFBF008475 +:10E54000AFB60078AFB50074AFB40070AFB200687A +:10E55000AFB0006034A600803C0580008CB201287A +:10E5600090C400098CA701043C020001309100FF17 +:10E5700000E218240000B8210000F021106000071C +:10E58000000098213C0908008D2931F02413000176 +:10E59000252800013C010800AC2831F0ACA0008423 +:10E5A00090CC0005000C5827316A0001154000721C +:10E5B000AFA0005090CD00002406002031A400FF41 +:10E5C00010860018240E0050108E009300000000EA +:10E5D0003C1008008E1000DC260F00013C010800F2 +:10E5E000AC2F00DC0E0016C7000000000040182110 +:10E5F0008FBF00848FBE00808FB7007C8FB60078FD +:10E600008FB500748FB400708FB3006C8FB2006848 +:10E610008FB100648FB000600060102103E000083B +:10E6200027BD00880000000D3C1F8000AFA0003017 +:10E6300097E501168FE201043C04002030B9FFFF8A +:10E64000004438240007182B00033140AFA60030E7 +:10E650008FF5010437F80C003C1600400338802188 +:10E6600002B6A02434C40040128000479215000D69 +:10E6700032A800201500000234860080008030217E +:10E6800014C0009FAFA600303C0D800835A6008066 +:10E6900090CC0008318B0040516000063C06800899 +:10E6A000240E0004122E00A8240F0012122F003294 +:10E6B0003C06800834C401003C0280009447011AE3 +:10E6C0009619000E909F00088E18000830E3FFFF97 +:10E6D00003F9B00432B40004AFB6005CAFA3005835 +:10E6E0008E1600041280002EAFB8005434C3008090 +:10E6F000906800083105004014A0002500000000CB +:10E700008C70005002D090230640000500000000ED +:10E710008C71003402D1A82306A201678EE20008A2 +:10E72000126000063C1280003C1508008EB531F4E2 +:10E7300026B600013C010800AC3631F4AE4000447E +:10E74000240300018FBF00848FBE00808FB7007C40 +:10E750008FB600788FB500748FB400708FB3006CE3 +:10E760008FB200688FB100648FB00060006010212C +:10E7700003E0000827BD00880E000D2800002021BE +:10E780000A000D75004018210A000D9500C02021D7 +:10E790000E00171702C020211440FFE10000000006 +:10E7A0003C0B8008356400808C8A003402CA482300 +:10E7B0000520001D000000003C1E08008FDE310017 +:10E7C00027D700013C010800AC3731001260000679 +:10E7D000024020213C1408008E9431F42690000160 +:10E7E0003C010800AC3031F40E00164E3C1E80088F +:10E7F00037CD008091B700250240202136EE00047D +:10E800000E001658A1AE00250E000CAC02402021CF +:10E810000A000DCA240300013C17080126F796C020 +:10E820000A000D843C1F80008C86003002C66023E5 +:10E830001980000C2419000C908F004F3C14080024 +:10E840008E94310032B500FC35ED0001268E0001BA +:10E850003C010800AC2E3100A08D004FAFA0005845 +:10E860002419000CAFB900308C9800300316A02397 +:10E870001A80010B8FA300580074F82A17E0FFD309 +:10E88000000000001074002A8FA5005802D4B021A7 +:10E8900000B410233044FFFFAFA4005832A8000298 +:10E8A0001100002E32AB00103C15800836B00080FD +:10E8B0009216000832D30040526000FB8EE200083E +:10E8C0000E00164E02402021240A0018A20A000958 +:10E8D000921100052409FFFE024020210229902404 +:10E8E0000E001658A2120005240400390000282149 +:10E8F0000E0016F2240600180A000DCA24030001B7 +:10E9000092FE000C3C0A800835490080001EBB00C6 +:10E910008D27003836F10081024020213225F08118 +:10E920000E000C9B30C600FF0A000DC10000000065 +:10E930003AA7000130E300011460FFA402D4B02123 +:10E940000A000E1D00000000024020210E001734B6 +:10E95000020028210A000D75004018211160FF7087 +:10E960003C0F80083C0D800835EE00808DC40038D7 +:10E970008FA300548DA60004006660231D80FF68ED +:10E98000000000000064C02307020001AFA400548F +:10E990003C1F08008FFF31E433F9000113200015FC +:10E9A0008FAC00583C07800094E3011A10600012FD +:10E9B0003C0680080E00216A024020213C03080129 +:10E9C000906396F13064000214800145000000005D +:10E9D000306C0004118000078FAC0058306600FBDB +:10E9E0003C010801A02696F132B500FCAFA000580A +:10E9F0008FAC00583C06800834D30080AFB40018B8 +:10EA0000AFB60010AFAC00143C088000950B01209D +:10EA10008E6F0030966A005C8FA3005C8FBF003061 +:10EA20003169FFFF3144FFFF8FAE005401341021E4 +:10EA3000350540000064382B0045C82103E7C02598 +:10EA4000AFB90020AFAF0028AFB80030AFAF00249F +:10EA5000AFA0002CAFAE0034926D000831B40008B6 +:10EA6000168000BB020020218EE200040040F8095D +:10EA700027A400108FAF003031F300025660000170 +:10EA800032B500FE3C048008349F008093F90008F2 +:10EA900033380040530000138FA400248C850004F9 +:10EAA0008FA7005410A700D52404001432B0000131 +:10EAB0001200000C8FA400242414000C1234011A3C +:10EAC0002A2D000D11A001022413000E240E000AAD +:10EAD000522E0001241E00088FAF002425E40001FF +:10EAE000AFA400248FAA00143C0B80083565008079 +:10EAF000008A48218CB10030ACA9003090A4004EAF +:10EB00008CA700303408FFFF0088180400E3F821C8 +:10EB1000ACBF00348FA600308FB900548FB8005CB2 +:10EB200030C200081040000B033898218CAC002044 +:10EB3000119300D330C600FF92EE000C8FA7003473 +:10EB400002402021000E6B0035B400800E000C9BAB +:10EB50003285F0803C028008345000808E0F0030F7 +:10EB600001F1302318C00097264800803C070800B8 +:10EB70008CE731E42404FF80010418243118007F5D +:10EB80003C1F80003C19800430F10001AFE300908D +:10EB900012200006031928213C030801906396F116 +:10EBA00030690008152000C6306A00F73C10800864 +:10EBB00036040080908C004F318B000115600042BC +:10EBC000000000003C0608008CC6319830CE0010D2 +:10EBD00051C0004230F9000190AF006B55E0003F9A +:10EBE00030F9000124180001A0B8006B3C1180002E +:10EBF0009622007A24470064A48700123C0D800806 +:10EC000035A5008090B40008329000401600000442 +:10EC10003C03800832AE000115C0008B00000000EC +:10EC2000346400808C86002010D3000A3463010015 +:10EC30008C67000002C7782319E000978FBF00544B +:10EC4000AC93002024130001AC760000AFB3005059 +:10EC5000AC7F000417C0004E000000008FA90050D8 +:10EC60001520000B000000003C030801906396F1A2 +:10EC7000306A00011140002E8FAB0058306400FE56 +:10EC80003C010801A02496F10A000D75000018212E +:10EC90000E000CAC024020210A000F1300000000FF +:10ECA0000A000E200000A0210040F80924040017EB +:10ECB0000A000DCA240300010040F80924040016CC +:10ECC0000A000DCA240300019094004F240DFFFE9A +:10ECD000028D2824A085004F30F900011320000682 +:10ECE0003C0480083C030801906396F1307F0010DB +:10ECF00017E00051306800EF34900080240A0001D2 +:10ED0000024020210E00164EA60A00129203002592 +:10ED100024090001AFA90050346200010240202103 +:10ED20000E001658A20200250A000EF93C0D8008BC +:10ED30001160FE83000018218FA5003030AC000464 +:10ED40001180FE2C8FBF00840A000DCB240300012C +:10ED500027A500380E000CB6AFA000385440FF4382 +:10ED60008EE200048FB40038329001005200FF3F61 +:10ED70008EE200048FA3003C8E6E0058006E682364 +:10ED800005A3FF39AE6300580A000E948EE200041A +:10ED90000E00164E024020213C038008346800809B +:10EDA000024020210E001658A11E000903C0302188 +:10EDB000240400370E0016F2000028210A000F116B +:10EDC0008FA900508FAB00185960FF8D3C0D800853 +:10EDD0000E00164E02402021920C00252405000151 +:10EDE000AFA5005035820004024020210E001658C5 +:10EDF000A20200250A000EF93C0D800812240059D9 +:10EE00002A2300151060004D240900162408000C68 +:10EE10005628FF2732B000013C0A8008914C001BA5 +:10EE20002406FFBD241E000E01865824A14B001BA2 +:10EE30000A000EA532B000013C010801A02896F19D +:10EE40000A000EF93C0D80088CB500308EFE0008DB +:10EE50002404001826B6000103C0F809ACB600303F +:10EE60003C030801906396F13077000116E0FF81C2 +:10EE7000306A00018FB200300A000D753243000481 +:10EE80003C1080009605011A50A0FF2B34C60010DC +:10EE90000A000EC892EE000C8C6200001456FF6D42 +:10EEA000000000008C7800048FB9005403388823D8 +:10EEB0000621FF638FBF00540A000F0E0000000000 +:10EEC0003C010801A02A96F10A000F3030F9000138 +:10EED0001633FF028FAF00240A000EB0241E00106C +:10EEE0000E00164E024020213C0B80083568008041 +:10EEF00091090025240A0001AFAA0050353300040F +:10EF0000024020210E001658A11300253C050801DF +:10EF100090A596F130A200FD3C010801A02296F1D7 +:10EF20000A000E6D004018212411000E53D1FEEA94 +:10EF3000241E00100A000EAF241E00165629FEDC07 +:10EF400032B000013C0A8008914C001B2406FFBD32 +:10EF5000241E001001865824A14B001B0A000EA598 +:10EF600032B000010A000EA4241E00123C038000EF +:10EF70008C6201B80440FFFE24040800AC6401B8B0 +:10EF800003E000080000000030A5FFFF30C6FFFFCF +:10EF90003C0780008CE201B80440FFFE34EA0180A7 +:10EFA000AD440000ACE400203C0480089483004899 +:10EFB0003068FFFF11000016AF88000824AB001274 +:10EFC000010B482B512000133C04800034EF01005A +:10EFD00095EE00208F890000240D001A31CCFFFF30 +:10EFE00031274000A14D000B10E000362583FFFEC5 +:10EFF0000103C02B170000348F9900048F88000490 +:10F00000A5430014350700010A001003AF87000470 +:10F010003C04800024030003348201808F890000B7 +:10F020008F870004A043000B3C088000350C018052 +:10F03000A585000EA585001A8F85000C30EB800099 +:10F04000A5890010AD850028A58600081160000F75 +:10F050008F85001435190100972A00163158FFFCDE +:10F06000270F000401E870218DCD400031A6FFFF7D +:10F0700014C000072403BFFF3C02FFFF34487FFF9A +:10F0800000E83824AF8700048F8500142403BFFFF5 +:10F090003C04800000E3582434830180A46B0026E4 +:10F0A000AC69002C10A0000300054C02A465001000 +:10F0B000A46900263C071000AC8701B803E00008F3 +:10F0C000000000008F990004240AFFFE032A382460 +:10F0D0000A001003AF87000427BDFFE88FA20028B5 +:10F0E00030A5FFFF30C6FFFFAFBF0010AF87000C99 +:10F0F000AF820014AF8000040E000FDBAF80000071 +:10F100008FBF001027BD001803E00008AF80001477 +:10F110003C06800034C4007034C701008C8A0000B3 +:10F1200090E500128F84000027BDFFF030A300FFA0 +:10F13000000318823082400010400037246500032D +:10F140000005C8800326C0218F0E4000246F0004F4 +:10F15000000F6880AFAE000001A660218D8B4000DB +:10F16000AFAB000494E900163128FFFC01063821FA +:10F170008CE64000AFA600088FA9000800003021EF +:10F18000000028213C07080024E701000A0010675E +:10F19000240800089059000024A500012CAC000CA4 +:10F1A0000079C0210018788001E770218DCD000022 +:10F1B0001180000600CD302603A5102114A8FFF50C +:10F1C00000051A005520FFF4905900003C0480000F +:10F1D000348700703C0508008CA531048CE30000E6 +:10F1E0002CA2002010400009006A38230005488046 +:10F1F0003C0B0800256B3108012B402124AA00019B +:10F20000AD0700003C010800AC2A310400C0102109 +:10F2100003E0000827BD0010308220001040000BE2 +:10F2200000055880016648218D24400024680004B0 +:10F2300000083880AFA4000000E618218C6540006B +:10F24000AFA000080A001057AFA500040000000D91 +:10F250000A0010588FA9000827BDFFE03C07800076 +:10F2600034E60100AFBF001CAFB20018AFB100140C +:10F27000AFB0001094C5000E8F87000030A4FFFFD0 +:10F280002483000430E2400010400010AF830028C7 +:10F290003C09002000E940241100000D30EC800002 +:10F2A0008F8A0004240BBFFF00EB38243543100085 +:10F2B000AF87000030F220001640000B3C1900041C +:10F2C000241FFFBF0A0010B7007F102430EC80001D +:10F2D000158000423C0E002030F220001240FFF862 +:10F2E0008F8300043C19000400F9C0241300FFF5CB +:10F2F000241FFFBF34620040AF82000430E20100EF +:10F300001040001130F010008F83002C10600006B8 +:10F310003C0F80003C05002000E52024148000C044 +:10F320003C0800043C0F800035EE010095CD001E26 +:10F3300095CC001C31AAFFFF000C5C00014B482556 +:10F34000AF89000C30F010001200000824110001F9 +:10F3500030F100201620008B3C18100000F890249B +:10F36000164000823C040C002411000130E801002A +:10F370001500000B3C0900018F85000430A94000F6 +:10F38000152000073C0900013C0C1F0100EC58242B +:10F390003C0A1000116A01183C1080003C09000171 +:10F3A00000E9302410C000173C0B10003C18080086 +:10F3B0008F1800243307000214E0014024030001E9 +:10F3C0008FBF001C8FB200188FB100148FB00010D7 +:10F3D0000060102103E0000827BD002000EE682433 +:10F3E00011A0FFBE30F220008F8F00043C11FFFF00 +:10F3F00036307FFF00F0382435E380000A0010A685 +:10F40000AF87000000EB102450400065AF8000245F +:10F410008F8C002C3C0D0F0000ED18241580008807 +:10F42000AF83001030E8010011000086938F0010B8 +:10F430003C0A0200106A00833C1280003650010032 +:10F44000920500139789002A3626000230AF00FF8C +:10F4500025EE0004000E19C03C0480008C9801B811 +:10F460000700FFFE34880180AD0300003C198008CE +:10F47000AC830020973100483225FFFF10A0015CCB +:10F48000AF8500082523001200A3F82B53E0015993 +:10F490008F850004348D010095AC00202402001AF1 +:10F4A00030E44000318BFFFFA102000B108001927D +:10F4B0002563FFFE00A3502B154001908F8F0004A1 +:10F4C000A50300148F88000435050001AF850004F2 +:10F4D0003C08800035190180A729000EA729001AD1 +:10F4E0008F89000C30B18000A7270010AF290028B9 +:10F4F000A72600081220000E3C04800035020100FF +:10F50000944C0016318BFFFC256400040088182100 +:10F510008C7F400033E6FFFF14C000053C048000F0 +:10F520003C0AFFFF354D7FFF00AD2824AF85000466 +:10F53000240EBFFF00AE402434850180A4A800261D +:10F54000ACA7002C3C071000AC8701B800001821C4 +:10F550008FBF001C8FB200188FB100148FB0001045 +:10F560000060102103E0000827BD00203C020BFFD3 +:10F5700000E41824345FFFFF03E3C82B5320FF7B14 +:10F58000241100013C0608008CC6002C24C5000193 +:10F590003C010800AC25002C0A0010D42411000501 +:10F5A0008F85002410A0002FAF80001090A30000D2 +:10F5B000146000792419000310A0002A30E601002D +:10F5C00010C000CC8F860010241F000210DF00C97D +:10F5D0008F8B000C3C0708008CE7003824E4FFFF09 +:10F5E00014E0000201641824000018213C0D0800FA +:10F5F00025AD0038006D1021904C00048F85002847 +:10F6000025830004000321C030A5FFFF3626000239 +:10F610000E000FDB000000000A00114D0000182151 +:10F6200000E8302414C0FF403C0F80000E00103D65 +:10F63000000000008F8700000A0010CAAF82000C93 +:10F64000938F00103C18080127189640000F90C0B7 +:10F6500002588021AF9000248F85002414A0FFD38E +:10F66000AF8F00103C0480008C86400030C5010044 +:10F6700010A000BC322300043C0C08008D8C002438 +:10F6800024120004106000C23190000D3C04800080 +:10F690008C8D40003402FFFF11A201003231FFFBCC +:10F6A0008C884000310A01005540000124110010EF +:10F6B00030EE080011C000BE2419FFFB8F9800280F +:10F6C0002F0F03EF51E000010219802430E90100FF +:10F6D00011200014320800018F87002C14E000FB79 +:10F6E0008F8C000C3C05800034AB0100917F00132F +:10F6F00033E300FF246A00042403FFFE0203802496 +:10F70000000A21C012000002023230253226FFFF1B +:10F710000E000FDB9785002A1200FF290000182138 +:10F72000320800011100000D32180004240E0001FF +:10F73000120E0002023230253226FFFF9785002A82 +:10F740000E000FDB00002021240FFFFE020F80249B +:10F750001200FF1B00001821321800045300FF188C +:10F760002403000102323025241200045612000145 +:10F770003226FFFF9785002A0E000FDB24040100CC +:10F780002419FFFB021988241220FF0D0000182104 +:10F790000A0010E9240300011079009C00003021C8 +:10F7A00090AD00012402000211A200BE30EA004028 +:10F7B00090B90001241800011338007F30E900409F +:10F7C0008CA600049785002A00C020210E000FDBC4 +:10F7D0003626000200004021010018218FBF001CC6 +:10F7E0008FB200188FB100148FB00010006010218C +:10F7F00003E0000827BD0020360F010095EE000C45 +:10F8000031CD020015A0FEE63C0900013C1880083D +:10F81000971200489789002A362600023248FFFFD7 +:10F82000AF8800083C0380008C7101B80620FFFE01 +:10F83000346A0180AD4000001100008E3C0F800052 +:10F84000253F0012011FC82B1320008B240E00033C +:10F85000346C0100958B00202402001A30E4400033 +:10F860003163FFFFA142000B108000A72463FFFE5D +:10F870000103682B15A000A52408FFFE34A5000194 +:10F88000A5430014AF8500043C0480002412BFFF90 +:10F8900000B2802434850180A4A9000EA4A9001A16 +:10F8A000A4A60008A4B00026A4A700103C071000DE +:10F8B000AC8701B80A00114D000018213C038000FC +:10F8C00034640100949F000E3C1908008F3900D861 +:10F8D0002404008033E5FFFF273100013C010800CC +:10F8E000AC3100D80E000FDB240600030A00114DD6 +:10F8F00000001821240A000210CA00598F85002830 +:10F900003C0308008C6300D0240E0001106E005EE2 +:10F910002CCF000C24D2FFFC2E5000041600002136 +:10F9200000002021241800021078001B2CD9000CA4 +:10F9300024DFFFF82FE900041520FF330000202109 +:10F9400030EB020051600004000621C054C00022C8 +:10F9500030A5FFFF000621C030A5FFFF0A00117D82 +:10F96000362600023C0908008D29002431300001B0 +:10F970005200FEF7000018219785002A3626000263 +:10F980000E000FDB000020210A00114D000018219D +:10F990000A00119C241200021320FFE624DFFFF866 +:10F9A0000000202130A5FFFF0A00117D362600024D +:10F9B0000A0011AC021980245120FF828CA6000499 +:10F9C0003C05080190A5964110A0FF7E2408000187 +:10F9D0000A0011F0010018210E000FDB3226000191 +:10F9E0008F8600108F8500280A00124F000621C064 +:10F9F0008F8500043C18800024120003371001801A +:10FA0000A212000B0A00112E3C08800090A30001F6 +:10FA1000241100011071FF70240800012409000264 +:10FA20005069000430E60040240800010A0011F08B +:10FA30000100182150C0FFFD240800013C0C80008B +:10FA4000358B01009563001094A40002307FFFFF06 +:10FA5000509FFF62010018210A001284240800014F +:10FA60002CA803EF1100FE56240300010A001239EE +:10FA700000000000240E000335EA0180A14E000BB7 +:10FA80000A00121C3C04800011E0FFA2000621C005 +:10FA900030A5FFFF0A00117D362600020A0011A5DD +:10FAA000241100201140FFC63C1280003650010096 +:10FAB000960F001094AE000231E80FFF15C8FFC08A +:10FAC000000000000A0011E690B900013C060800A1 +:10FAD0008CC6003824C4FFFF14C00002018418241F +:10FAE000000018213C0D080025AD0038006D1021E4 +:10FAF0000A0011B6904300048F8F0004240EFFFE0D +:10FB00000A00112C01EE28242408FFFE0A00121A14 +:10FB100000A8282427BDFFC8AFB00010AFBF003435 +:10FB20003C10600CAFBE0030AFB7002CAFB6002861 +:10FB3000AFB50024AFB40020AFB3001CAFB20018C3 +:10FB4000AFB100148E0E5000240FFF7F3C068000E2 +:10FB500001CF682435AC380C240B0003AE0C5000E8 +:10FB6000ACCB00083C010800AC2000200E001819A6 +:10FB7000000000003C0A0010354980513C06601628 +:10FB8000AE09537C8CC700003C0860148D0500A0B2 +:10FB90003C03FFFF00E320243C02535300051FC237 +:10FBA0001482000634C57C000003A08002869821E0 +:10FBB0008E7200043C116000025128218CBF007C31 +:10FBC0008CA200783C1E600037C420203C05080150 +:10FBD00024A59288AF820018AF9F001C0E0016DD8E +:10FBE0002406000A3C190001273996403C01080010 +:10FBF000AC3931DC0E0020DDAF8000148FD708084F +:10FC00002418FFF03C15570902F8B02412D502F56C +:10FC100024040001AF80002C3C1480003697018042 +:10FC20003C1E080127DE9644369301008E900000AA +:10FC30003205000310A0FFFD3207000110E000882C +:10FC4000320600028E7100283C048000AE91002034 +:10FC50008E6500048E66000000A0382100C040219F +:10FC60008C8301B80460FFFE3C0B0010240A0800DE +:10FC700000AB4824AC8A01B8552000E0240BBFFF3C +:10FC80009675000E3C1208008E52002030AC4000E9 +:10FC900032AFFFFF264E000125ED00043C010800B5 +:10FCA000AC2E0020118000E8AF8D00283C18002009 +:10FCB00000B8B02412C000E530B980002408BFFFAE +:10FCC00000A8382434C81000AF87000030E62000B8 +:10FCD00010C000E92409FFBF3C03000400E328240E +:10FCE00010A00002010910243502004030EA010092 +:10FCF00011400010AF8200048F8B002C11600007B0 +:10FD00003C0D002000ED6024118000043C0F000435 +:10FD100000EF702411C00239000000009668001E38 +:10FD20009678001C3115FFFF0018B40002B690252C +:10FD3000AF92000C30F910001320001324150001BD +:10FD400030FF002017E0000A3C04100000E41024FB +:10FD50001040000D3C0A0C003C090BFF00EA18247F +:10FD60003525FFFF00A3302B10C0000830ED010047 +:10FD70003C0C08008D8C002C24150005258B0001FF +:10FD80003C010800AC2B002C30ED010015A0000B4D +:10FD90003C0500018F85000430AE400055C00007CF +:10FDA0003C0500013C161F0100F690243C0F10009A +:10FDB000124F01CE000000003C05000100E5302498 +:10FDC00010C000AF3C0C10003C1F08008FFF002447 +:10FDD00033E90002152000712403000100601021A6 +:10FDE000104000083C0680003C08800035180100E7 +:10FDF0008F0F00243C056020ACAF00140000000011 +:10FE00003C0680003C194000ACD9013800000000DD +:10FE10005220001332060002262B0140262C0080BF +:10FE2000240EFF80016E2024018E6824000D1940ED +:10FE3000318A007F0004A9403172007F3C16200007 +:10FE400036C20002006A482502B2382500E2882541 +:10FE50000122F825ACDF0830ACD1083032060002B0 +:10FE600010C0FF723C188000370501408CA80000CC +:10FE700024100040AF08002090AF000831E300706C +:10FE8000107000D428790041532000082405006038 +:10FE9000241100201071000E3C0A40003C09800033 +:10FEA000AD2A01780A001304000000001465FFFB6E +:10FEB0003C0A40000E001FFA000000003C0A40000F +:10FEC0003C098000AD2A01780A00130400000000FC +:10FED00090A90009241F00048CA70000312800FF0E +:10FEE000111F01B22503FFFA2C7200061240001404 +:10FEF0003C0680008CA9000494A4000A310500FF90 +:10FF000000095E022D6A00083086FFFF15400002DE +:10FF10002567000424070003240C000910AC01FA33 +:10FF200028AD000A11A001DE2410000A240E0008EA +:10FF300010AE0028000731C000C038213C06800008 +:10FF40008CD501B806A0FFFE34D20180AE47000078 +:10FF500034CB0140916E0008240300023C0A4000AB +:10FF600031C400FF00046A0001A86025A64C000807 +:10FF7000A243000B9562000A3C0810003C09800077 +:10FF8000A64200108D670004AE470024ACC801B83B +:10FF9000AD2A01780A001304000000003C0A80002A +:10FFA000354401009483000E3C0208008C4200D8C6 +:10FFB000240400803065FFFF245500013C01080047 +:10FFC000AC3500D80E000FDB240600030A001370C6 +:10FFD000000018210009320230D900FF2418000166 +:10FFE0001738FFD5000731C08F910020262200016D +:10FFF000AF8200200A0013C800C0382100CB2024A3 +:020000021000EC +:10000000AF85000010800008AF860004240D87FF34 +:1000100000CD6024158000083C0E006000AE302446 +:1000200010C00005000000000E000D42000000009E +:100030000A001371000000000E0016050000000009 +:100040000A0013710000000030B980005320FF1F28 +:10005000AF8500003C02002000A2F82453E0FF1B03 +:10006000AF8500003C07FFFF34E47FFF00A4382485 +:100070000A00132B34C880000A001334010910242D +:1000800000EC58245160005AAF8000248F8D002C62 +:100090003C0E0F0000EE182415A00075AF83001071 +:1000A00030EF010011E00073939800103C12020041 +:1000B000107200703C06800034D9010093280013B0 +:1000C0009789002A36A60002311800FF271600047F +:1000D000001619C03C0480008C8501B804A0FFFE06 +:1000E00034880180AD0300003C158008AC830020FB +:1000F00096BF004833E5FFFF10A001BCAF850008A4 +:100100002523001200A3102B504001B98F85000455 +:10011000348D010095AC0020240B001A30E440001F +:10012000318AFFFFA10B000B108001BA2543FFFEAF +:1001300000A3702B15C001B88F9600048F8F0004A8 +:10014000A503001435E50001AF8500043C088000DC +:1001500035150180A6A9000EA6A9001A8F89000CEA +:1001600030BF8000A6A70010AEA90028A6A60008F0 +:1001700013E0000F3C0F8000350C0100958B00163A +:10018000316AFFFC25440004008818218C6240007D +:100190003046FFFF14C000072416BFFF3C0EFFFFD0 +:1001A00035CD7FFF00AD2824AF8500043C0F8000D3 +:1001B0002416BFFF00B6902435E50180A4B20026C6 +:1001C000ACA7002C3C071000ADE701B80A00137083 +:1001D000000018210E00165D000000003C0A4000DF +:1001E0003C098000AD2A01780A00130400000000D9 +:1001F0008F85002410A00027AF80001090A300007E +:10020000106000742409000310690101000030210E +:1002100090AE0001240D000211CD014230EF0040EC +:1002200090A90001241F0001113F000930E20040A5 +:100230008CA600049785002A00C020210E000FDB49 +:1002400036A60002000040210A00137001001821A8 +:100250005040FFF88CA600043C07080190E7964147 +:1002600010E0FFF4240800010A00137001001821B7 +:10027000939800103C1F080127FF96400018C8C043 +:10028000033F4021AF8800248F85002414A0FFDBAA +:10029000AF9800103C0480008C86400030C50100FF +:1002A00010A0008732AB00043C0C08008D8C0024A9 +:1002B00024160004156000033192000D241600027C +:1002C0003C0480008C8E4000340DFFFF11CD0113E3 +:1002D00032B5FFFB8C984000330F010055E0000160 +:1002E0002415001030E80800110000382409FFFB35 +:1002F0008F9F00282FF903EF53200001024990241B +:1003000030E2010010400014325F00018F87002CA2 +:1003100014E0010E8F8C000C3C0480003486010038 +:1003200090C5001330AA00FF25430004000321C03C +:100330002419FFFE025990241240000202B6302513 +:1003400032A6FFFF0E000FDB9785002A1240FEA3A6 +:1003500000001821325F000113E0000D3247000455 +:10036000240900011249000202B6302532A6FFFF1F +:100370009785002A0E000FDB000020212402FFFEDB +:10038000024290241240FE950000182132470004DA +:1003900050E0FE922403000102B63025241600042A +:1003A0005656000132A6FFFF9785002A0E000FDB8C +:1003B000240401002403FFFB0243A82412A0FE87AB +:1003C000000018210A001370240300010A0014B968 +:1003D0000249902410A0FFAF30E5010010A00017E3 +:1003E0008F8600102403000210C300148F84000CB9 +:1003F0003C0608008CC6003824CAFFFF14C0000267 +:10040000008A1024000010213C0E080025CE003880 +:10041000004E682191AC00048F850028258B0004D4 +:10042000000B21C030A5FFFF36A600020E000FDB37 +:10043000000000000A00137000001821240F0002C1 +:1004400010CF0088241600013C0308008C6300D004 +:100450001076008D8F85002824D9FFFC2F280004FA +:100460001500006300002021241F0002107F005DA2 +:100470002CC9000C24C3FFF82C6200041440FFE9CF +:100480000000202130EA020051400004000621C093 +:1004900054C0000530A5FFFF000621C030A5FFFFB6 +:1004A0000A00150436A600020E000FDB32A600017A +:1004B0008F8600108F8500280A001520000621C0B5 +:1004C0003C0A08008D4A0024315200015240FE438C +:1004D000000018219785002A36A600020E000FDBC7 +:1004E000000020210A001370000018219668000CFB +:1004F000311802005700FE313C0500013C1F800806 +:1005000097F900489789002A36A600023328FFFF92 +:10051000AF8800083C0380008C7501B806A0FFFE80 +:100520003C04800034820180AC400000110000B621 +:1005300024180003252A0012010A182B106000B2AB +:1005400000000000966F00203C0E8000240D001A71 +:1005500031ECFFFF35CA018030EB4000A14D000BAC +:10056000116000B02583FFFE0103902B164000AE02 +:100570002416FFFE34A50001A5430014AF85000436 +:100580002419BFFF00B94024A6E9000EA6E9001A0D +:10059000A6E60008A6E80026A6E700103C07100023 +:1005A000AE8701B80A001370000018213C048000D7 +:1005B0008C8201B80440FFFE349601802415001C93 +:1005C000AEC70000A2D5000B3C071000AC8701B8F5 +:1005D0003C0A40003C098000AD2A01780A0013045F +:1005E000000000005120FFA424C3FFF800002021D8 +:1005F00030A5FFFF0A00150436A600020E00103DCC +:10060000000000008F8700000A001346AF82000C34 +:1006100090A30001241500011075FF0B24080001B0 +:10062000240600021066000430E2004024080001A5 +:100630000A001370010018215040FFFD240800013A +:100640003C0C8000358B0100956A001094A40002D8 +:100650003143FFFF5083FDE1010018210A00158599 +:10066000240800018F8500282CB203EF1240FDDB27 +:10067000240300013C0308008C6300D02416000111 +:100680001476FF7624D9FFFC2CD8000C1300FF72DF +:10069000000621C030A5FFFF0A00150436A600029F +:1006A00010B00037240F000B14AFFE23000731C039 +:1006B000312600FF00065600000A4E0305220047BF +:1006C00030C6007F0006F8C03C16080126D69640CA +:1006D00003F68021A2000001A20000003C0F600090 +:1006E0008DF918202405000100C588040011302769 +:1006F0000326C024000731C000C03821ADF81820FF +:100700000A0013C8A60000028F850020000731C030 +:1007100024A2FFFF0A0013F6AF8200200A0014B2E1 +:100720002415002011E0FECC3C1980003728010080 +:100730009518001094B6000233120FFF16D2FEC6B1 +:10074000000000000A00148290A900013C0B080080 +:100750008D6B0038256DFFFF15600002018D1024A0 +:10076000000010213C080800250800380048C0217E +:10077000930F000425EE00040A0014C5000E21C0EA +:1007800000065202241F00FF115FFDEB000731C07D +:10079000000A20C03C0E080125CE9640008EA821FC +:1007A000009E602100095C02240D00013C076000EE +:1007B000A2AD0000AD860000A2AB00018CF21820B3 +:1007C00024030001014310040242B025ACF61820B6 +:1007D00000C038210A0013C8A6A900020A0015AA01 +:1007E000AF8000200A0012FFAF84002C8F85000428 +:1007F0003C1980002408000337380180A308000B4F +:100800000A00144D3C088000A2F8000B0A00155A9B +:100810002419BFFF8F9600042412FFFE0A00144B18 +:1008200002D228242416FFFE0A00155800B62824F8 +:100830003C038000346401008C85000030A2003E3F +:100840001440000800000000AC6000488C870000E5 +:1008500030E607C010C0000500000000AC60004C8E +:10086000AC60005003E0000824020001AC600054BA +:10087000AC6000408C880000310438001080FFF923 +:10088000000000002402000103E00008AC60004406 +:100890003C0380008C6201B80440FFFE3467018095 +:1008A000ACE4000024080001ACE00004A4E500086A +:1008B00024050002A0E8000A34640140A0E5000B12 +:1008C0009483000A14C00008A4E30010ACE00024E4 +:1008D0003C07800034E901803C041000AD20002872 +:1008E00003E00008ACE401B88C8600043C0410006E +:1008F000ACE600243C07800034E90180AD200028EC +:1009000003E00008ACE401B83C0680008CC201B8EA +:100910000440FFFE34C7018024090002ACE400005B +:10092000ACE40004A4E50008A0E9000A34C50140D5 +:10093000A0E9000B94A8000A3C041000A4E80010F1 +:10094000ACE000248CA30004ACE3002803E0000822 +:10095000ACC401B83C039000346200010082202541 +:100960003C038000AC6400208C65002004A0FFFEE6 +:100970000000000003E00008000000003C028000CE +:10098000344300010083202503E00008AC4400202C +:1009900027BDFFE03C098000AFBF0018AFB10014D5 +:1009A000AFB00010352801408D10000091040009FF +:1009B0009107000891050008308400FF30E600FF31 +:1009C00000061A002C820081008330251040002A86 +:1009D00030A50080000460803C0D080125AD92B078 +:1009E000018D58218D6A00000140000800000000C0 +:1009F0003C038000346201409445000A14A0001EAC +:100A00008F91FCC09227000530E6000414C0001A44 +:100A1000000000000E00164E02002021922A000560 +:100A200002002021354900040E001658A2290005B5 +:100A30009228000531040004148000020000000028 +:100A40000000000D922D0000240B002031AC00FFAF +:100A5000158B00093C0580008CAE01B805C0FFFE77 +:100A600034B10180AE3000003C0F100024100005AE +:100A7000A230000BACAF01B80000000D8FBF001812 +:100A80008FB100148FB0001003E0000827BD0020D4 +:100A90000200202100C028218FBF00188FB1001450 +:100AA0008FB00010240600010A00161D27BD00208B +:100AB0000000000D0200202100C028218FBF001877 +:100AC0008FB100148FB00010000030210A00161DF5 +:100AD00027BD002014A0FFE8000000000200202134 +:100AE0008FBF00188FB100148FB0001000C02821F4 +:100AF0000A00163B27BD00203C0780008CEE01B8A1 +:100B000005C0FFFE34F00180241F0002A21F000B6D +:100B100034F80140A60600089719000A3C0F10009F +:100B2000A61900108F110004A6110012ACEF01B835 +:100B30000A0016998FBF001827BDFFE8AFBF00104D +:100B40000E000FD4000000003C0280008FBF001098 +:100B500000002021AC4001800A00108F27BD001842 +:100B60003084FFFF30A5FFFF108000070000182130 +:100B7000308200011040000200042042006518216C +:100B80001480FFFB0005284003E0000800601021EE +:100B900010C00007000000008CA2000024C6FFFF68 +:100BA00024A50004AC82000014C0FFFB24840004D0 +:100BB00003E000080000000010A0000824A3FFFFCD +:100BC000AC86000000000000000000002402FFFFCF +:100BD0002463FFFF1462FFFA2484000403E000088A +:100BE000000000003C03800027BDFFF83462018054 +:100BF000AFA20000308C00FF30AD00FF30CE00FF10 +:100C00003C0B80008D6401B80480FFFE00000000F2 +:100C10008FA900008D6801288FAA00008FA700000F +:100C20008FA400002405000124020002A085000A10 +:100C30008FA30000359940003C051000A062000B16 +:100C40008FB800008FAC00008FA600008FAF0000AF +:100C500027BD0008AD280000AD400004AD80002491 +:100C6000ACC00028A4F90008A70D0010A5EE0012E2 +:100C700003E00008AD6501B83C06800827BDFFE829 +:100C800034C50080AFBF001090A7000924020012F5 +:100C900030E300FF1062000B008030218CA8005070 +:100CA00000882023048000088FBF00108CAA003425 +:100CB000240400390000282100CA4823052000052B +:100CC000240600128FBF00102402000103E0000878 +:100CD00027BD00180E0016F2000000008FBF0010A4 +:100CE0002402000103E0000827BD001827BDFFC84B +:100CF000AFB20030AFB00028AFBF0034AFB1002CAE +:100D000000A0802190A5000D30A6001010C000109A +:100D1000008090213C0280088C4400048E0300086F +:100D20001064000C30A7000530A6000510C0009329 +:100D3000240400018FBF00348FB200308FB1002C2B +:100D40008FB000280080102103E0000827BD003884 +:100D500030A7000510E0000F30AB001210C00006F5 +:100D6000240400013C0980088E0800088D25000439 +:100D70005105009C240400388FBF00348FB200302E +:100D80008FB1002C8FB000280080102103E00008F4 +:100D900027BD0038240A0012156AFFE6240400016A +:100DA0000200202127A500100E000CB6AFA00010F5 +:100DB0001440007C3C19800837240080909800087B +:100DC000331100081220000A8FA7001030FF010025 +:100DD00013E000A48FA300148C8600580066102333 +:100DE000044000043C0A8008AC8300588FA7001020 +:100DF0003C0A800835480080910900083124000829 +:100E00001480000224080003000040213C1F8008D9 +:100E100093F1001193F9001237E600808CCC005456 +:100E2000333800FF03087821322D00FF000F708057 +:100E300001AE282100AC582B1160006F00000000AB +:100E400094CA005C8CC900543144FFFF0125102373 +:100E50000082182B14600068000000008CCB005446 +:100E60000165182330EC00041180006C000830800C +:100E70008FA8001C0068102B1040006230ED0004A9 +:100E8000006610232C46008010C00002004088211C +:100E9000241100800E00164E024020213C0D8008D7 +:100EA00035A6008024070001ACC7000C90C80008DC +:100EB0000011484035A70100310C007FA0CC00088C +:100EC0008E05000424AB0001ACCB0030A4D1005C43 +:100ED0008CCA003C9602000E01422021ACC40020C6 +:100EE0008CC3003C0069F821ACDF001C8E190004A3 +:100EF000ACF900008E180008ACF800048FB10010A7 +:100F0000322F000855E0004793A60020A0C0004EF5 +:100F100090D8004E2411FFDFA0F8000890CF000801 +:100F200001F17024A0CE00088E0500083C0B80085B +:100F300035690080AD2500388D6A00148D2200309F +:100F40002419005001422021AD24003491230000D7 +:100F5000307F00FF13F90036264F01000E001658AF +:100F60000240202124040038000028210E0016F23F +:100F70002406000A0A001757240400010E000D2859 +:100F8000000020218FBF00348FB200308FB1002CC1 +:100F90008FB00028004020210080102103E00008CD +:100FA00027BD00388E0E00083C0F800835F0008009 +:100FB000AE0E005402402021AE0000300E00164E4E +:100FC00000000000920D00250240202135AC0020D9 +:100FD0000E001658A20C00250E000CAC0240202179 +:100FE000240400382405008D0E0016F22406001299 +:100FF0000A0017572404000194C5005C0A001792E8 +:1010000030A3FFFF2407021811A0FF9E00E6102363 +:101010008FAE001C0A00179A01C610230A0017970A +:101020002C620218A0E600080A0017C48E0500080A +:101030002406FF8001E6C0243C118000AE38002861 +:101040008E0D000831E7007F3C0E800C00EE602121 +:10105000AD8D00E08E080008AF8C00380A0017D074 +:10106000AD8800E4AC800058908500082403FFF7A9 +:1010700000A33824A08700080A0017758FA7001066 +:101080003C05080024A560A83C04080024846FF4F3 +:101090003C020800244260B0240300063C01080121 +:1010A000AC2596C03C010801AC2496C43C01080163 +:1010B000AC2296C83C010801A02396CC03E00008AE +:1010C0000000000003E00008240200013C02800050 +:1010D000308800FF344701803C0680008CC301B893 +:1010E0000460FFFE000000008CC501282418FF806A +:1010F0003C0D800A24AF010001F8702431EC007F20 +:10110000ACCE0024018D2021ACE50000948B00EAD8 +:101110003509600024080002316AFFFFACEA0004D0 +:1011200024020001A4E90008A0E8000BACE00024C0 +:101130003C071000ACC701B8AF84003803E00008DA +:10114000AF85006C938800488F8900608F820038DB +:1011500030C600FF0109382330E900FF01221821C1 +:1011600030A500FF2468008810C000020124382147 +:101170000080382130E400031480000330AA00030B +:101180001140000D312B000310A0000900001021B8 +:1011900090ED0000244E000131C200FF0045602B9D +:1011A000A10D000024E700011580FFF925080001CA +:1011B00003E00008000000001560FFF300000000DD +:1011C00010A0FFFB000010218CF80000245900043F +:1011D000332200FF0045782BAD18000024E70004FF +:1011E00015E0FFF92508000403E0000800000000F6 +:1011F00093850048938800588F8700600004320070 +:101200003103007F00E5102B30C47F001040000F39 +:10121000006428258F8400383C0980008C8A00EC0B +:10122000AD2A00A43C03800000A35825AC6B00A0AD +:101230008C6C00A00580FFFE000000008C6D00ACEF +:10124000AC8D00EC03E000088C6200A80A00188254 +:101250008F840038938800593C0280000080502120 +:10126000310300FEA383005930ABFFFF30CC00FFF9 +:1012700030E7FFFF344801803C0980008D2401B82D +:101280000480FFFE8F8D006C24180016AD0D000049 +:101290008D2201248F8D0038AD0200048D5900206D +:1012A000A5070008240201C4A119000AA118000B17 +:1012B000952F01208D4E00088D4700049783005C18 +:1012C0008D59002401CF302100C7282100A32023FD +:1012D0002418FFFFA504000CA50B000EA5020010AA +:1012E000A50C0012AD190018AD18002495AF00E848 +:1012F0003C0B10002407FFF731EEFFFFAD0E002876 +:101300008DAC0084AD0C002CAD2B01B88D460020B7 +:1013100000C7282403E00008AD4500208F8800386E +:101320000080582130E7FFFF910900D63C02800081 +:1013300030A5FFFF312400FF00041A00006750258C +:1013400030C600FF344701803C0980008D2C01B875 +:101350000580FFFE8F82006C240F0017ACE20000B6 +:101360008D390124ACF900048D780020A4EA00082E +:10137000241901C4A0F8000AA0EF000B9523012056 +:101380008D6E00088D6D00049784005C01C35021B0 +:10139000014D602101841023A4E2000CA4E5000E9D +:1013A000A4F90010A4E60012ACE000148D7800242B +:1013B000240DFFFFACF800188D0F007CACEF001C73 +:1013C0008D0E00783C0F1000ACEE0020ACED002438 +:1013D000950A00BE240DFFF73146FFFFACE600285A +:1013E000950C00809504008231837FFF0003CA00C2 +:1013F0003082FFFF0322C021ACF8002CAD2F01B8D2 +:10140000950E00828D6A002000AE3021014D282407 +:10141000A506008203E00008AD6500203C028000C4 +:10142000344501803C0480008C8301B80460FFFED9 +:101430008F8A0044240600199549001C3128FFFFBB +:10144000000839C0ACA70000A0A6000B3C051000A6 +:1014500003E00008AC8501B88F87004C0080402174 +:1014600030C400FF3C0680008CC201B80440FFFE7F +:101470008F89006C9383006834996000ACA90000E8 +:10148000A0A300058CE20010240F00022403FFF744 +:10149000A4A20006A4B900088D180020A0B8000A74 +:1014A000A0AF000B8CEE0000ACAE00108CED000481 +:1014B000ACAD00148CEC001CACAC00248CEB002018 +:1014C000ACAB00288CEA002C3C071000ACAA002C26 +:1014D0008D090024ACA90018ACC701B88D05002007 +:1014E00000A3202403E00008AD0400208F8600380C +:1014F00027BDFFE0AFB10014AFBF0018AFB00010C0 +:1015000090C300D430A500FF3062002010400008D6 +:10151000008088218CCB00D02409FFDF256A0001E0 +:10152000ACCA00D090C800D401093824A0C700D4A8 +:1015300014A000403C0C80008F840038908700D4B9 +:101540002418FFBF2406FFEF30E3007FA08300D400 +:10155000979F005C8F8200608F8D003803E2C82364 +:10156000A799005CA5A000BC91AF00D401F870243D +:10157000A1AE00D48F8C0038A18000D78F8A0038AC +:10158000A5400082AD4000EC914500D400A658244F +:10159000A14B00D48F9000348F8400609786005C4C +:1015A0000204282110C0000FAF850034A38000582A +:1015B0003C0780008E2C000894ED01208E2B000447 +:1015C000018D5021014B8021020620233086FFFF30 +:1015D00030C8000F3909000131310001162000091F +:1015E000A3880058938600488FBF00188FB100145D +:1015F0008FB0001027BD0020AF85006403E0000815 +:10160000AF86006000C870238FBF00189386004823 +:101610008FB100148FB0001034EF0C00010F28219F +:1016200027BD0020ACEE0084AF85006403E0000815 +:10163000AF86006035900180020028210E00190F4E +:10164000240600828F840038908600D430C5004084 +:1016500050A0FFBAA38000688F85004C3C06800034 +:101660008CCD01B805A0FFFE8F89006C2408608234 +:1016700024070002AE090000A6080008A207000B1C +:101680008CA300083C0E1000AE0300108CA2000CCE +:10169000AE0200148CBF0014AE1F00188CB90018E5 +:1016A000AE1900248CB80024AE1800288CAF002896 +:1016B000AE0F002CACCE01B80A001948A380006818 +:1016C0008F8A003827BDFFE0AFB10014AFB0001023 +:1016D0008F880060AFBF00189389003C954200BC22 +:1016E00030D100FF0109182B0080802130AC00FFB1 +:1016F0003047FFFF0000582114600003310600FF4F +:1017000001203021010958239783005C0068202BB9 +:101710001480002700000000106800562419000102 +:101720001199006334E708803165FFFF0E0018C08F +:10173000020020218F83006C3C07800034E601808A +:101740003C0580008CAB01B80560FFFE240A001840 +:101750008F840038ACC30000A0CA000B948900BE7F +:101760003C081000A4C90010ACC00030ACA801B8FF +:101770009482008024430001A4830080949F008011 +:101780003C0608008CC6318833EC7FFF1186005E72 +:101790000000000002002021022028218FBF001835 +:1017A0008FB100148FB000100A00193427BD00203B +:1017B000914400D42403FF8000838825A15100D4E4 +:1017C0009784005C3088FFFF51000023938C003C1D +:1017D0008F8500382402EFFF008B782394AE00BC85 +:1017E0000168502B31E900FF01C26824A4AD00BCA0 +:1017F00051400039010058213C1F800037E60100AC +:101800008CD800043C190001031940245500000144 +:1018100034E740008E0A00202403FFFB241100015E +:1018200001432024AE0400201191002D34E78000F4 +:1018300002002021012030210E0018C03165FFFF79 +:101840009787005C8F890060A780005C0127802358 +:10185000AF900060938C003C8F8B00388FBF0018D6 +:101860008FB100148FB0001027BD002003E00008E6 +:10187000A16C00D73C0D800035AA01008D48000402 +:101880003C0900010109282454A0000134E740006C +:101890008E0F00202418FFFB34E7800001F870242D +:1018A00024190001AE0E00201599FF9F34E708802F +:1018B000020020210E00188E3165FFFF020020215A +:1018C000022028218FBF00188FB100148FB00010A4 +:1018D0000A00193427BD00200A0019F7000048212A +:1018E00002002021012030210E00188E3165FFFFFB +:1018F0009787005C8F890060A780005C01278023A8 +:101900000A001A0EAF900060948C0080241F8000A3 +:10191000019F3024A4860080908B0080908F0080EF +:10192000316700FF0007C9C20019C027001871C045 +:1019300031ED007F01AE2825A08500800A0019DF67 +:1019400002002021938500682403000127BDFFE8E1 +:1019500000A330042CA20020AFB00010AFBF0014D1 +:1019600000C01821104000132410FFFE3C0708009F +:101970008CE7319000E610243C088000350501809A +:1019800014400005240600848F890038240A0004CE +:101990002410FFFFA12A00FC0E00190F0000000018 +:1019A000020010218FBF00148FB0001003E0000868 +:1019B00027BD00183C0608008CC631940A001A574F +:1019C00000C310248F87004427BDFFE0AFB200188A +:1019D000AFB10014AFB00010AFBF001C30D000FF9B +:1019E00090E6000D00A088210080902130C5007F86 +:1019F000A0E5000D8F8500388E2300188CA200D042 +:101A00001062002E240A000E0E001A4AA38A0068F3 +:101A10002409FFFF104900222404FFFF5200002088 +:101A2000000020218E2600003C0C001000CC582421 +:101A3000156000393C0E000800CE682455A0003F18 +:101A4000024020213C18000200D880241200001F10 +:101A50003C0A00048F8700448CE200148CE30010E1 +:101A60008CE500140043F82303E5C82B1320000580 +:101A7000024020218E24002C8CF1001010910031A6 +:101A80000240202124020012A38200680E001A4A9C +:101A90002412FFFF105200022404FFFF0000202147 +:101AA0008FBF001C8FB200188FB100148FB00010D0 +:101AB0000080102103E0000827BD002090A800D47A +:101AC000350400200A001A80A0A400D400CA4824CB +:101AD0001520000B8F8B00448F8D00448DAC0010BF +:101AE0001580000B024020218E2E002C51C0FFECEF +:101AF00000002021024020210A001A9B2402001726 +:101B00008D66001050C0FFE6000020210240202119 +:101B10000A001A9B24020011024020212402001511 +:101B20000E001A4AA3820068240FFFFF104FFFDC4B +:101B30002404FFFF0A001A8A8E2600000A001AC138 +:101B4000240200143C08000400C8382450E0FFD4EC +:101B500000002021024020210A001A9B24020013C9 +:101B60008F85003827BDFFD8AFB3001CAFB2001877 +:101B7000AFB10014AFB00010AFBF002090A700D4E9 +:101B80008F90004C2412FFFF34E2004092060000C8 +:101B9000A0A200D48E0300100080982110720006CD +:101BA00030D1003F2408000D0E001A4AA3880068B7 +:101BB000105200252404FFFF8F8A00388E09001878 +:101BC0008D4400D01124000702602021240C000E57 +:101BD0000E001A4AA38C0068240BFFFF104B001A5A +:101BE0002404FFFF24040020122400048F8D0038F9 +:101BF00091AF00D435EE0020A1AE00D48F85005403 +:101C000010A00019000000001224004A8F9800382C +:101C10008F92FCC0971000809651000A5230004805 +:101C20008F9300403C1F08008FFF318C03E5C82BC9 +:101C30001720001E02602021000028210E0019A993 +:101C400024060001000020218FBF00208FB3001C5C +:101C50008FB200188FB100148FB0001000801021D7 +:101C600003E0000827BD00285224002A8E05001436 +:101C70008F840038948A008025490001A48900805F +:101C8000948800803C0208008C42318831077FFF35 +:101C900010E2000E00000000026020210E00193446 +:101CA000240500010A001B0B000020212402002D46 +:101CB0000E001A4AA38200682403FFFF1443FFE1C9 +:101CC0002404FFFF0A001B0C8FBF002094990080A2 +:101CD000241F800024050001033FC024A498008035 +:101CE00090920080908E0080325100FF001181C2DE +:101CF00000107827000F69C031CC007F018D582576 +:101D0000A08B00800E001934026020210A001B0BFA +:101D1000000020212406FFFF54A6FFD68F84003840 +:101D2000026020210E001934240500010A001B0B5B +:101D300000002021026020210A001B252402000A45 +:101D40002404FFFD0A001B0BAF9300608F8800384E +:101D500027BDFFE8AFB00010AFBF0014910A00D458 +:101D60008F87004C00808021354900408CE60010B0 +:101D7000A10900D43C0208008C4231B030C53FFFBD +:101D800000A2182B106000078F850050240DFF80E3 +:101D900090AE000D01AE6024318B00FF156000088D +:101DA0000006C382020020212403000D8FBF00140F +:101DB0008FB0001027BD00180A001A4AA3830068DC +:101DC00033060003240F000254CFFFF70200202146 +:101DD00094A2001C8F85003824190023A4A200E8D7 +:101DE0008CE8000000081E02307F003F13F9003528 +:101DF0003C0A00838CE800188CA600D0110600086D +:101E0000000000002405000E0E001A4AA385006899 +:101E10002407FFFF104700182404FFFF8F850038B8 +:101E200090A900D435240020A0A400D48F8C0044B5 +:101E3000918E000D31CD007FA18D000D8F83005458 +:101E40001060001C020020218F8400508C9800102C +:101E50000303782B11E0000D241900180200202143 +:101E6000A39900680E001A4A2410FFFF10500002C8 +:101E70002404FFFF000020218FBF00148FB000104A +:101E80000080102103E0000827BD00188C86001098 +:101E90008F9F00440200202100C31023AFE20010F6 +:101EA000240500010E0019A9240600010A001B9751 +:101EB000000020210E001934240500010A001B97A0 +:101EC00000002021010A5824156AFFD98F8C004494 +:101ED000A0A600FC0A001B84A386005A30A500FFC0 +:101EE0002406000124A9000100C9102B1040000C99 +:101EF00000004021240A000100A61823308B0001B5 +:101F000024C60001006A3804000420421160000267 +:101F100000C9182B010740251460FFF800A61823FC +:101F200003E000080100102127BDFFD8AFB0001862 +:101F30008F90004CAFB1001CAFBF00202403FFFF07 +:101F40002411002FAFA30010920600002405000802 +:101F500026100001006620260E001BB0308400FF12 +:101F600000021E003C021EDC34466F410A001BD8F2 +:101F70000000102110A00009008018212445000154 +:101F800030A2FFFF2C4500080461FFFA0003204047 +:101F90000086202614A0FFF9008018210E001BB037 +:101FA000240500208FA300102629FFFF313100FFF8 +:101FB00000034202240700FF1627FFE20102182651 +:101FC00000035027AFAA0014AFAA00100000302170 +:101FD00027A8001027A7001400E6782391ED00033E +:101FE00024CE000100C8602131C600FF2CCB0004C4 +:101FF0001560FFF9A18D00008FA200108FBF002097 +:102000008FB1001C8FB0001803E0000827BD002826 +:1020100027BDFFD0AFB3001CAFB00010AFBF00288A +:10202000AFB50024AFB40020AFB20018AFB10014B8 +:102030003C0C80008D880128240FFF803C06800A1C +:1020400025100100250B0080020F68243205007F57 +:10205000016F7024AD8E009000A62821AD8D002464 +:1020600090A600FC3169007F3C0A8004012A1821F7 +:10207000A386005A9067007C00809821AF830030CF +:1020800030E20002AF88006CAF85003800A0182154 +:10209000144000022404003424040030A3840048C7 +:1020A0008C7200DC30D100FF24040004AF92006089 +:1020B00012240004A38000688E7400041680001EA1 +:1020C0003C0880009386005930C7000110E0000FE3 +:1020D0008F9300608CB000848CA800842404FF805F +:1020E000020410240002F940310A007F03EA482567 +:1020F0003C0C2000012C902530CD00FE3C038000DC +:10210000AC720830A38D00598F9300608FBF0028F8 +:102110008FB50024ACB300DC8FB400208FB3001C5B +:102120008FB200188FB100148FB00010240200018C +:1021300003E0000827BD00308E7F000895020120D3 +:102140008E67001003E2C8213326FFFF30D8000F4E +:1021500033150001AF87003416A00058A39800582B +:1021600035090C000309382100D81823AD03008479 +:10217000AF8700648E6A00043148FFFF1100007EC3 +:10218000A78A005C90AC00D42407FF8000EC3024C8 +:1021900030CB00FF1560004B9786005C938E005A91 +:1021A000240D000230D5FFFF11CD02A20000A021B6 +:1021B0008F85006002A5802B160000BC9388004824 +:1021C0003C11800096240120310400FF1485008812 +:1021D0008F8400648F9800343312000356400085CA +:1021E00030A500FF8F900064310C00FF24060034FE +:1021F00011860095AF90004C9204000414800118E1 +:102200008F8E0038A380003C8E0D00048DC800D84E +:102210003C0600FF34CCFFFF01AC30240106182B34 +:1022200014600120AF8600548F8700609798005C8F +:10223000AF8700400307402310C000C7A788005C99 +:102240008F91003030C3000300035823922A007C92 +:102250003171000302261021000A20823092000111 +:102260000012488000492821311FFFFF03E5C82BD9 +:10227000132001208F8800388F8500348F880064F8 +:102280001105025A3C0E3F018E0600003C0C250051 +:1022900000CE682411AC01638F84004C30E500FF50 +:1022A0000E00184A000030218F8800388F870060A8 +:1022B0008F8500340A001DB78F8600540A001C5613 +:1022C000AF87006490A400D400E48024320200FFB1 +:1022D000104000169386005990A6008890AE00D753 +:1022E00024A8008830D4003F2686FFE02CD10020AF +:1022F000A38E003C1220000CAF88004C240B000180 +:1023000000CB20043095001916A0012B3C0680005C +:1023100034CF0002008FC0241700022E3099002015 +:1023200017200234000000009386005930CB0001D2 +:102330001160000F9788005C8CBF00848CA900841A +:10234000240AFF8003EA6024000C19403132007F28 +:10235000007238253C0D200000EDC82530D800FE65 +:102360003C0F8000ADF90830A39800599788005CB5 +:102370001500FF84000000008E630020306200041E +:102380001040FF51938600592404FFFB0064802411 +:102390003C038000AE700020346601808C7301B86D +:1023A0000660FFFE8F98006C347501003C1400013C +:1023B000ACD800008C6B012424076085ACCB0004F2 +:1023C0008EAE000401D488245220000124076083CB +:1023D00024190002A4C700083C0F1000A0D9000B6C +:1023E0003C068000ACCF01B80A001C2B9386005934 +:1023F00030A500FF0E00184A240600018F88006CEB +:102400003C05800034A90900250201889388004812 +:10241000304A0007304B00783C0340802407FF809F +:102420000163C825014980210047F824310C00FFD1 +:1024300024060034ACBF0800AF90004CACB90810C3 +:102440005586FF6E920400048F8400388E11003090 +:10245000908E00D431CD001015A000108F83006045 +:102460002C6F000515E000E400000000909800D4F7 +:102470002465FFFC331200101640000830A400FF52 +:102480008F9F00648F99003413F90004388700018E +:1024900030E20001144001C8000000000E001BC320 +:1024A000000000000A001DF8000000008F84006496 +:1024B00030C500FF0E00184A24060001939800481A +:1024C000240B0034130B00A08F8500388F8600602A +:1024D0009783005C306EFFFF00CE8823AF910060D1 +:1024E000A780005C1280FF90028018212414FFFD59 +:1024F0005474FFA28E6300208E6A00042403FFBF81 +:102500002408FFEF0155F823AE7F000490AC00D4FF +:102510003189007FA0A900D48E7200208F8F0038EF +:10252000A780005C364D0002AE6D0020A5E000BC27 +:1025300091E500D400A3C824A1F900D48F950038F8 +:10254000AEA000EC92B800D403085824A2AB00D48B +:102550000A001CD78F8500388F910034AF8000604F +:1025600002275821AF8B0034000020212403FFFFF5 +:10257000108301B48F8500388E0C00103C0D0800CC +:102580008DAD31B09208000031843FFF008D802B6B +:1025900012000023310D003F3C1908008F3931A88B +:1025A0008F9F006C000479802408FF80033F202166 +:1025B000008FC821938500590328F8243C06008029 +:1025C0003C0F800034D80001001F91403331007F60 +:1025D0008F8600380251502535EE0940332B0078A4 +:1025E000333000073C0310003C02800C017890253A +:1025F000020E48210143C0250222382134AE0001D9 +:10260000ADFF0804AF890050ADF20814AF87004455 +:10261000ADFF0028ACD90084ADF80830A38E005976 +:102620009383005A24070003106700272407000142 +:102630001467FFAC8F8500382411002311B1008589 +:1026400000000000240E000B026020210E001A4A38 +:10265000A38E00680040A0210A001D328F8500383B +:1026600002602021240B000C0E001A4AA38B006884 +:10267000240AFFFF104AFFBD2404FFFF8F8E00389D +:10268000A380003C8E0D00048DC800D83C0600FFDE +:1026900034CCFFFF01AC30240106182B1060FEE2A1 +:1026A000AF86005402602021241200190E001A4A3D +:1026B000A3920068240FFFFF104FFFAC2404FFFF1C +:1026C0000A001C838F86005425A3FFE02C74002091 +:1026D0001280FFDD240E000B000328803C1108014E +:1026E000263194B400B148218D2D000001A00008CE +:1026F000000000008F85003400A710219385003C66 +:10270000AF82003402251821A383003C951F00BC32 +:102710000226282137F91000A51900BC5240FF926B +:10272000AF850060246A0004A38A003C950900BCC0 +:1027300024A40004AF84006035322000A51200BC40 +:102740000A001D54000020218F8600602CC800055F +:102750001500FF609783005C3065FFFF00C5C8234C +:102760002F2F000511E00003306400FF24CDFFFC93 +:1027700031A400FF8F8900648F920034113200046D +:10278000389F000133EC0001158001380000000083 +:102790008F840038908700D434E60010A08600D4DF +:1027A0008F8500388F8600609783005CACA000ECBA +:1027B0000A001D2F306EFFFF8CB500848CB400849E +:1027C0003C04100002A7302400068940328E007FAE +:1027D000022E8025020410253C08800024050001FB +:1027E00002602021240600010E0019A9AD02083064 +:1027F0000A001CC38F8500388C8200EC1222FE7EFA +:102800000260202124090005A38900680E001A4AED +:102810002411FFFF1451FE782404FFFF0A001D5508 +:102820002403FFFF8F8F004C8F8800388DF8000045 +:10283000AD1800888DE70010AD0700988F87006005 +:102840000A001DB78F8600542406FFFF118600057D +:10285000000000000E001B4C026020210A001D8FAA +:102860000040A0210E001AD1026020210A001D8F15 +:102870000040A0218F90004C3C0208008C4231B0F7 +:102880008E110010322C3FFF0182282B10A0000C6B +:10289000240BFF808F85005090A3000D01637024EE +:1028A00031CA00FF1140000702602021001143825D +:1028B000310600032418000110D8010600000000B2 +:1028C000026020212403000D0E001A4AA383006831 +:1028D000004020218F8500380A001D320080A02191 +:1028E0008F90004C3C0A08008D4A31B08F85005013 +:1028F0008E0400100000A0218CB1001430823FFF34 +:10290000004A602B8CB200205180FFEE0260202133 +:1029100090B8000D240BFF800178702431C300FFB4 +:102920005060FFE80260202100044382310600036A +:1029300014C0FFE40260202194BF001C8F9900386E +:102940008E060028A73F00E88CAF0010022F20233E +:1029500014C4013A026020218F83005400C368210F +:10296000022D382B14E00136240200188F8A00440F +:102970008F820030024390218D4B00100163702341 +:10298000AD4E0010AD5200208C4C00740192282BEB +:1029900014A0015F026020218F8400508E08002463 +:1029A0008C86002411060007026020212419001CD7 +:1029B0000E001A4AA3990068240FFFFF104FFFC5AD +:1029C0002404FFFF8F8400448C87002424FF00012F +:1029D000AC9F00241251012F8F8D00308DB10074F7 +:1029E0001232012C3C0B00808E0E000001CB5024D3 +:1029F00015400075000000008E0300142411FFFF35 +:102A0000107100073C0808003C0608008CC6319095 +:102A100000C8C0241300015202602021A380006876 +:102A20008E0300003C19000100792024108000135F +:102A30003C1F0080007FA02416800009020028218E +:102A4000026020212411001A0E001A4AA391006886 +:102A50002407FFFF1047FF9F2404FFFF02002821E7 +:102A6000026020210E001A6A240600012410FFFFD4 +:102A70001050FF982404FFFF241400018F8D0044A0 +:102A8000026020210280302195A900342405000134 +:102A9000253200010E0019A9A5B200340000202142 +:102AA0008F8500380A001D320080A0218F90004CD5 +:102AB0003C1408008E9431B08E07001030E53FFFC3 +:102AC00000B4C82B132000618F8600502412FF80B1 +:102AD00090C9000D0249682431A400FF5080005CB9 +:102AE000026020218F8C00541180000700078B8228 +:102AF0008F8500388F82FCC094BF0080944A000A02 +:102B0000515F00F78F8600403227000314E0006415 +:102B100000000000920E000211C000D8000000006A +:102B20008E0B0024156000D902602021920400035E +:102B300024190002308500FF14B90005308900FF18 +:102B40008F940054128000EA240D002C308900FF7D +:102B5000392C00102D8400012D3200010244302553 +:102B6000020028210E001A6A026020212410FFFFB3 +:102B7000105000BF8F8500388F830054106000D341 +:102B8000240500013C0A08008D4A318C0143F82BD2 +:102B900017E000B22402002D02602021000028214D +:102BA0000E0019A9240600018F85003800001821A5 +:102BB0000A001D320060A0210E0018750000000000 +:102BC0000A001DF800000000AC8000200A001E78FA +:102BD0008E03001400002821026020210E0019A994 +:102BE000240600010A001CC38F8500380A001DB7A7 +:102BF0008F8800388CAA00848CAC00843C031000C1 +:102C00000147F824001F91403189007F024968255F +:102C100001A32825ACC50830910700012405000157 +:102C2000026020210E0019A930E600010A001CC331 +:102C30008F850038938F00482403FFFD0A001D3460 +:102C4000AF8F00600A001D342403FFFF02602021C3 +:102C50002410000D0E001A4AA390006800401821AD +:102C60008F8500380A001D320060A0210E00187503 +:102C7000000000009783005C8F86006000402021E8 +:102C80003070FFFF00D010232C4A00051140FE11C8 +:102C90008F850038ACA400EC0A001D2F306EFFFFBA +:102CA00090CF000D31E300085460FFA192040003AF +:102CB00002602021240200100E001A4AA38200683C +:102CC0002403FFFF5443FF9A920400030A001F12DB +:102CD0008F85003890A4000D308F000811E000951A +:102CE0008F990054572000A6026020218E1F000CEF +:102CF0008CB4002057F40005026020218E0D0008DE +:102D00008CA7002411A7003A026020212402002091 +:102D1000A38200680E001A4A2412FFFF1052FEED33 +:102D20002404FFFF8F9F00442402FFF73C14800E11 +:102D300093EA000D2419FF803C03800001423824EF +:102D4000A3E7000D8F9F00303C0908008D2931ACAE +:102D50008F8C006C97F200788F870044012C302113 +:102D6000324D7FFF000D204000C4782131E5007F07 +:102D700000B4C02101F94024AC68002CA711000068 +:102D80008CEB0028256E0001ACEE00288CEA002CAC +:102D90008E02002C01426021ACEC002C8E09002C2C +:102DA000ACE900308E120014ACF2003494ED003A1D +:102DB00025A40001A4E4003A97E600783C1108003D +:102DC0008E3131B024C3000130707FFF1211005CDE +:102DD000006030218F8F0030026020212405000127 +:102DE0000E001934A5E600780A001EA1000020217B +:102DF0008E0900142412FFFF1132006B8F8A0038F5 +:102E00008E0200188D4C00D0144C00650260202109 +:102E10008E0B00248CAE0028116E005B2402002172 +:102E20000E001A4AA38200681452FFBE2404FFFF5A +:102E30008F8500380A001D320080A0212402001F67 +:102E40000E001A4AA38200682409FFFF1049FEA160 +:102E50002404FFFF0A001E548F83005402602021C7 +:102E60000E001A4AA38200681450FF508F85003864 +:102E70002403FFFF0A001D320060A0218CD800242B +:102E80008E0800241118FF29026020210A001F2744 +:102E90002402000F8E0900003C05008001259024CB +:102EA0001640FF492402001A026020210E001A4A2F +:102EB000A3820068240CFFFF144CFECF2404FFFF04 +:102EC0008F8500380A001D320080A0210E001934C1 +:102ED000026020218F8500380A001EE500001821BD +:102EE0002403FFFD0060A0210A001D32AF860060B0 +:102EF000026020210E001A4AA38D00682403FFFF00 +:102F00001043FF588F8500380A001ECC920400033E +:102F10002418001D0E001A4AA39800682403FFFF1E +:102F20001443FE9D2404FFFF8F8500380A001D32E4 +:102F30000080A021026020210A001F3D24020024FD +:102F4000240880000068C024330BFFFF000B73C20D +:102F500031D000FF001088270A001F6E001133C017 +:102F6000240F001B0E001A4AA38F00681451FEACF8 +:102F70002404FFFF8F8500380A001D320080A02145 +:102F80000A001F3D240200278E0600288CA3002C77 +:102F900010C30008026020210A001F812402001FC4 +:102FA0000A001F812402000E026020210A001F81F6 +:102FB000240200258E04002C1080000D8F8F00301D +:102FC0008DE800740104C02B5700000C0260202122 +:102FD0008CB900140086A0210334282B10A0FF52C6 +:102FE0008F9F0044026020210A001F8124020022DA +:102FF000026020210A001F81240200230A001F8191 +:103000002402002627BDFFD8AFB3001CAFB10014C7 +:10301000AFBF0020AFB20018AFB000103C0280007C +:103020008C5201408C4B01483C048000000B8C0208 +:10303000322300FF317300FF8C8501B804A0FFFE2E +:1030400034900180AE1200008C8701442464FFF0AC +:10305000240600022C830013AE070004A61100080A +:10306000A206000BAE1300241060004F8FBF00209B +:10307000000448803C0A0801254A9534012A402171 +:103080008D04000000800008000000003C030800E0 +:103090008C6331A831693FFF00099980007280215B +:1030A000021370212405FF80264D0100264C00806C +:1030B0003C02800031B1007F3198007F31CA007F2F +:1030C0003C1F800A3C1980043C0F800C01C5202461 +:1030D00001A5302401853824014F1821AC46002475 +:1030E000023F402103194821AC470090AC4400281E +:1030F000AF830044AF880038AF8900300E0019005C +:10310000016080213C0380008C6B01B80560FFFEEC +:103110008F8700448F8600383465018090E8000D69 +:10312000ACB20000A4B0000600082600000416039C +:1031300000029027001227C21080008124C200885C +:10314000241F6082A4BF0008A0A000052402000282 +:10315000A0A2000B8F8B0030000424003C08270045 +:1031600000889025ACB20010ACA00014ACA00024E4 +:10317000ACA00028ACA0002C8D6900382413FF807F +:10318000ACA9001890E3000D02638024320500FF13 +:1031900010A000058FBF002090ED000D31AC007F26 +:1031A000A0EC000D8FBF00208FB3001C8FB2001861 +:1031B0008FB100148FB000103C0A10003C0E80004C +:1031C00027BD002803E00008ADCA01B8265F010052 +:1031D0002405FF8033F8007F3C06800003E5782457 +:1031E0003C19800A03192021ACCF0024908E00D412 +:1031F00000AE682431AC00FF11800024AF84003899 +:10320000248E008895CD00123C0C08008D8C31A8CE +:1032100031AB3FFF01924821000B5180012A402130 +:1032200001052024ACC400283107007F3C06800C37 +:1032300000E620219083000D00A31024304500FFFC +:1032400010A0FFD8AF8400449098000D330F0010F9 +:1032500015E0FFD58FBF00200E0019000000000010 +:103260003C0380008C7901B80720FFFE00000000BD +:10327000AE1200008C7F0144AE1F0004A6110008AE +:1032800024110002A211000BAE1300243C1308010C +:10329000927396F0327000015200FFC38FBF00207E +:1032A0000E002146024020210A0020638FBF00202B +:1032B0003C1260008E452C083C03F0033462FFFF93 +:1032C00000A2F824AE5F2C088E582C083C1901C0CF +:1032D00003199825AE532C080A0020638FBF0020E5 +:1032E000264D010031AF007F3C10800A240EFF8084 +:1032F00001F0282101AE60243C0B8000AD6C00245D +:103300001660FFA8AF85003824110003A0B100FCAF +:103310000A0020638FBF002026480100310A007F89 +:103320003C0B800A2409FF80014B30210109202435 +:103330003C078000ACE400240A002062AF8600381D +:10334000944E0012320C3FFF31CD3FFF15ACFF7D94 +:10335000241F608290D900D42418FF800319782498 +:1033600031EA00FF1140FF7700000000240700044D +:10337000A0C700FC8F870044241160842406000D40 +:10338000A4B10008A0A600050A00204D24020002F6 +:103390003C040001248496DC24030014240200FE73 +:1033A0003C010800AC2431EC3C010800AC2331E8BE +:1033B0003C010801A42296F83C040801248496F8F4 +:1033C0000000182100643021A0C300042463000120 +:1033D0002C6500FF54A0FFFC006430213C0708006E +:1033E00024E7010003E00008AF87007800A058211F +:1033F000008048210000102114A00012000050217C +:103400000A002142000000003C010801A42096F8B7 +:103410003C05080194A596F88F8200783C0C0801C1 +:10342000258C96F800E2182100AC2021014B302BAE +:10343000A089000400001021A460000810C0003919 +:10344000010048218F8600780009384000E94021BA +:103450000008388000E6282190A8000B90B9000AE7 +:103460000008204000881021000218800066C0215A +:10347000A319000A8F85007800E5782191EE000AF3 +:1034800091E6000B000E684001AE6021000C208028 +:1034900000851021A046000B3C030801906396F2C2 +:1034A000106000222462FFFF8F8300383C01080176 +:1034B000A02296F2906C00FF118000040000000032 +:1034C000906E00FF25CDFFFFA06D00FF3C190801A5 +:1034D000973996F8272300013078FFFF2F0F00FF60 +:1034E00011E0FFC9254A00013C010801A42396F818 +:1034F0003C05080194A596F88F8200783C0C0801E1 +:10350000258C96F800E2182100AC2021014B302BCD +:10351000A089000400001021A460000814C0FFC9A5 +:103520000100482103E000080000000003E000085B +:103530002402000227BDFFE0248501002407FF804C +:10354000AFB00010AFBF0018AFB1001400A718242F +:103550003C10800030A4007F3C06800A00862821B1 +:103560008E110024AE03002490A200FF1440000836 +:10357000AF850038A0A000098FBF0018AE1100244D +:103580008FB100148FB0001003E0000827BD0020A9 +:1035900090A900FD90A800FF312400FF0E0020F448 +:1035A000310500FF8F8500388FBF0018A0A00009EB +:1035B000AE1100248FB100148FB0001003E000089A +:1035C00027BD002027BDFFD0AFB20020AFB1001C47 +:1035D000AFB00018AFBF002CAFB40028AFB30024C9 +:1035E0003C0980009533011635320C00952F011AE5 +:1035F0003271FFFF023280218E08000431EEFFFF9E +:10360000248B0100010E6821240CFF8025A5FFFFFB +:10361000016C50243166007F3C07800AAD2A0024EB +:1036200000C73021AF850074AF8800703C010801ED +:10363000A02096F190C300090200D02100809821BB +:10364000306300FF2862000510400048AF86003854 +:10365000286400021480008E24140001240D00054B +:103660003C010801A02D96D590CC00FD3C0108013D +:10367000A02096D63C010801A02096D790CB000A46 +:10368000240AFF80318500FF014B4824312700FFC9 +:1036900010E0000C000058213C12800836510080D8 +:1036A0008E2F00308CD0005C01F0702305C0018E9D +:1036B0008F87007090D4000A3284007FA0C4000A73 +:1036C0008F8600383C118008363000808E0F003025 +:1036D0008F87007000EF702319C000EE000000001B +:1036E00090D4000924120002328400FF1092024795 +:1036F000000000008CC2005800E2F82327F9FFFF09 +:103700001B2001300000000090C5000924080004BF +:1037100030A300FF10680057240A00013C01080193 +:10372000A02A96D590C900FF252700013C01080179 +:10373000A02796D43C030801906396D52406000583 +:103740001066006A2C780005130000C40000902168 +:103750000003F8803C0408012484958003E4C82118 +:103760008F25000000A0000800000000241800FFC2 +:103770001078005C0000000090CC000A90CA00099C +:103780003C080801910896F13187008000EA48253D +:103790003C010801A02996DC90C500FD3C140801FD +:1037A000929496F2311100013C010801A02596DDAA +:1037B00090DF00FE3C010801A03F96DE90D200FFA2 +:1037C0003C010801A03296DF8CD900543C0108016D +:1037D000AC3996E08CD000583C010801AC3096E43E +:1037E0008CC3005C3C010801AC3496EC3C01080140 +:1037F000AC2396E8162000088FBF002C8FB4002859 +:103800008FB300248FB200208FB1001C8FB000183E +:1038100003E0000827BD00303C1180009624010E13 +:103820000E000FD43094FFFF3C0B08018D6B96F413 +:103830000260382102802821AE2B01803C13080150 +:103840008E7396D401602021240600830E00102F71 +:10385000AFB300108FBF002C8FB400288FB30024AB +:103860008FB200208FB1001C8FB0001803E0000859 +:1038700027BD00303C1808008F1831FC270F0001CD +:103880003C010800AC2F31FC0A0021D700000000E9 +:103890001474FFB900000000A0C000FF3C05080040 +:1038A0008CA531E43C0308008C6331E03C02080045 +:1038B0008C4232048F99003834A80001241F000282 +:1038C0003C010801AC2396F43C010801A02896F0C5 +:1038D0003C010801A02296F3A33F00090A002190B1 +:1038E0008F8600380E002146000000000A0021D714 +:1038F0008F8600383C1F080193FF96D424190001DD +:1039000013F902298F8700703C100801921096D895 +:103910003C06080190C696D610C000050200A02102 +:103920003C040801908496D9109001E48F870078B8 +:10393000001088408F9F0078023048210009C8801D +:10394000033F702195D80008270F0001A5CF00087C +:103950003C040801908496D93C05080190A596D6B0 +:103960000E0020F4000000008F8700780230202134 +:103970000004308000C720218C8500048F820074F1 +:1039800000A2402305020006AC8200048C8A0000DD +:103990008F830070014310235C400001AC83000062 +:1039A0008F86003890CB00FF2D6C00025580002DD3 +:1039B000241400010230F821001F40800107282153 +:1039C00090B9000B8CAE00040019C0400319782197 +:1039D000000F1880006710218C4D000001AE882375 +:1039E0002630FFFF5E00001F241400018C440004F9 +:1039F0008CAA0000008A482319200019240E000414 +:103A00003C010801A02E96D590AD000B8CAB0004B4 +:103A1000000D8840022D80210010108000471021E9 +:103A20008C44000401646023058202009443000872 +:103A300090DF00FE90B9000B33E500FF54B900049D +:103A40000107A021A0D400FE8F8700780107A021E4 +:103A50009284000B0E0020F4240500018F860038AC +:103A600024140001125400962E500001160000424A +:103A70003C08FFFF241900021659FF3F0000000018 +:103A8000A0C000FF8F860038A0D200090A0021D70D +:103A90008F86003890C700092404000230E300FF3D +:103AA0001064016F24090004106901528F880074AA +:103AB0008CCE0054010E682325B10001062001754B +:103AC000241800043C010801A03896D53C010801E7 +:103AD000A02096D490D400FD90D200FF2E4F00027B +:103AE00015E0FF14328400FF000438408F8900780D +:103AF00090DF00FF00E41021000220800089C8212F +:103B00002FE500029324000B14A0FF0A24070002F3 +:103B100000041840006480210010588001692821A9 +:103B20008CAC0004010C50230540FF020000000093 +:103B30003C030801906396D614600005246F0001D1 +:103B40003C010801A02496D93C010801A02796D782 +:103B50003C010801A02F96D690CE00FF24E700017B +:103B600031CD00FF01A7882B1220FFE990A4000BA4 +:103B70000A0021C6000000003C0508018CA596D46F +:103B80003C12000400A8F82413F2000624020005E9 +:103B90003C090801912996D5152000022402000352 +:103BA000240200053C010801A02296F190C700FF05 +:103BB00014E0012024020002A0C200090A0021D75B +:103BC0008F86003890CC00FF1180FEDA240A0001B5 +:103BD0008F8C00748F890078240F00030180682186 +:103BE0001160001E240E0002000540400105A021C6 +:103BF00000142080008990218E51000401918023BF +:103C00000600FECC000000003C020801904296D65F +:103C100014400005245800013C010801A02A96D751 +:103C20003C010801A02596D93C010801A03896D690 +:103C300090DF00FF010510210002C88033E500FF7E +:103C4000254A00010329202100AA402B1500FEB9B6 +:103C50009085000B1560FFE50005404000054040E1 +:103C600001051821000310803C010801A02A96D408 +:103C70003C010801A02596D8004918218C64000455 +:103C800000E4F82327F9FFFF1F20FFE900000000F0 +:103C90008C63000000E358230560013A01A38823E8 +:103CA00010E301170184C0231B00FEA200000000E6 +:103CB0003C010801A02E96D50A002305240B000123 +:103CC000240E0004A0CE00093C0D08008DAD31F893 +:103CD0008F86003825A200013C010800AC2231F893 +:103CE0000A0021D7000000008CD9005C00F9C02335 +:103CF0001F00FE7B000000008CDF005C10FFFF65F2 +:103D00008F8400748CC3005C008340232502000173 +:103D10001C40FF60000000008CC9005C248700018B +:103D200000E9282B10A0FE943C0D80008DAB01040F +:103D30003C0C0001016C50241140FE8F2402001045 +:103D40003C010801A02296F10A0021D700000000E2 +:103D50008F9100748F86003826220001ACC2005C6F +:103D60000A002292241400018F8700382404FF8067 +:103D70000000882190E9000A241400010124302564 +:103D8000A0E6000A3C05080190A596D63C0408016F +:103D9000908496D90E0020F4000000008F86003831 +:103DA0008F85007890C800FD310700FF0007404074 +:103DB0000107F821001FC0800305C8219323000BD1 +:103DC000A0C300FD8F8500788F8600380305602131 +:103DD000918F000B000F704001CF6821000D808093 +:103DE000020510218C4B0000ACCB00548D840004E4 +:103DF0008F83007400645023194000022482000164 +:103E00002462000101074821ACC2005C0009308037 +:103E100000C5402100E02021240500010E0020F40F +:103E20009110000B8F86003890C500FF10A0FF0C8A +:103E3000001070408F85007801D06821000D10803F +:103E4000004558218D6400008F8C0074018450233C +:103E50002547000104E0FF02263100013C03080170 +:103E6000906396D62E2F0002247800013C010801B1 +:103E7000A03896D63C010801A03496D711E0FEF890 +:103E8000020038210A002365000740408F84003873 +:103E90008F8300748C85005800A340230502FE9A8E +:103EA000AC8300580A00223B000000003C070801D8 +:103EB00090E796F2240200FF10E200BE8F860038E1 +:103EC0003C110801963196FA3C030801246396F8E8 +:103ED000262500013230FFFF30ABFFFF02036021D7 +:103EE0002D6A00FF1540008D918700043C010801F8 +:103EF000A42096FA8F88003800074840012728211F +:103F0000911800FF000530802405000127140001EE +:103F1000A11400FF3C120801925296F28F8800789B +:103F20008F8E0070264F000100C820213C0108013F +:103F3000A02F96F2AC8E00008F8D0074A48500082F +:103F4000AC8D00043C030801906396D414600077A4 +:103F5000000090213C010801A02596D4A087000B09 +:103F60008F8C007800CC5021A147000A8F82003846 +:103F7000A04700FD8F840038A08700FE8F860038A0 +:103F80008F9F0070ACDF00548F990074ACD900583B +:103F90008F8D00780127C02100185880016DA02165 +:103FA000928F000A000F704001CF18210003888013 +:103FB000022D8021A207000B8F8600780166602108 +:103FC000918A000B000A1040004A2021000428803A +:103FD00000A64021A107000A3C07800834E90080C0 +:103FE0008D2200308F860038ACC2005C0A0022921D +:103FF0002414000190CA00FF1540FEAD8F880074A4 +:10400000A0C400090A0021D78F860038A0C000FD97 +:104010008F98003824060001A30000FE3C0108012F +:10402000A02696D53C010801A02096D40A0021C6FE +:104030000000000090CB00FF3C040801908496F340 +:10404000316C00FF0184502B1540000F2402000347 +:1040500024020004A0C200090A0021D78F8600387C +:1040600090C3000A2410FF8002035824316C00FF23 +:104070001180FDC1000000003C010801A02096D580 +:104080000A0021C600000000A0C200090A0021D7D2 +:104090008F86003890D4000A2412FF8002544824EE +:1040A000312800FF1500FFF4240200083C0108013C +:1040B000A02296F10A0021D70000000000108840DD +:1040C0008F8B0070023018210003688001A7202127 +:1040D000AC8B00008F8A0074240C0001A48C0008B3 +:1040E000AC8A00043C05080190A596D62402000184 +:1040F00010A2FE1E24A5FFFF0A0022519084000B8F +:104100000184A0231A80FD8B000000003C010801FF +:10411000A02E96D50A002305240B00013C010801BE +:10412000A42596FA0A0023B78F880038240B0001D3 +:10413000106B00228F9800388F85003890BF00FFE9 +:1041400033F900FF1079002B000000003C1F08012C +:1041500093FF96D8001FC840033FC0210018A080DD +:104160000288782191EE000AA08E000A8F8D0078D7 +:104170003C030801906396D800CD88210A0023DD16 +:10418000A223000B263000010600003101A4902379 +:104190000640002B240200033C010801A02F96D505 +:1041A0000A002305240B00018F8900380A00223BF6 +:1041B000AD2700540A00229124120001931400FD3F +:1041C000A094000B8F8800388F8F0078910E00FE2E +:1041D00000CF6821A1AE000A8F910038A22700FD10 +:1041E0008F8300708F900038AE0300540A0023DEE6 +:1041F0008F8D007890B000FEA090000A8F8B003861 +:104200008F8C0078916A00FD00CC1021A04A000B31 +:104210008F840038A08700FE8F8600748F85003859 +:10422000ACA600580A0023DE8F8D007894B80008F1 +:10423000ACA40004030378210A002285A4AF00087F +:104240003C010801A02296D50A0021C6000000000A +:1042500090CF0009240D000431EE00FF11CDFD8543 +:10426000240200013C010801A02296D50A0021C6C3 +:1042700000000000080033440800334408003420E4 +:10428000080033F4080033D8080033280800332826 +:10429000080033280800334C8008010080080080A3 +:1042A000800800005F865437E4AC62CC50103A4579 +:1042B00036621985BF14C0E81BC27A1E84F4B55655 +:1042C000094EA6FE7DDA01E7C04D748108005A74DC +:1042D00008005AB808005A5C08005A5C08005A5C8A +:1042E00008005A5C08005A7408005A5C08005A5CBE +:1042F00008005AC008005A5C080059D408005A5CEB +:1043000008005A5C08005AC008005A5C08005A5C51 +:1043100008005A5C08005A5C08005A5C08005A5CA5 +:1043200008005A5C08005A5C08005A5C08005A5C95 +:1043300008005A9408005A5C08005A9408005A5C15 +:1043400008005A5C08005A5C08005A9808005A9401 +:1043500008005A5C08005A5C08005A5C08005A5C65 +:1043600008005A5C08005A5C08005A5C08005A5C55 +:1043700008005A5C08005A5C08005A5C08005A5C45 +:1043800008005A5C08005A5C08005A5C08005A5C35 +:1043900008005A5C08005A5C08005A5C08005A5C25 +:1043A00008005A9808005A9808005A5C08005A9861 +:1043B00008005A5C08005A5C08005A5C08005A5C05 +:1043C00008005A5C08005A5C08005A5C08005A5CF5 +:1043D00008005A5C08005A5C08005A5C08005A5CE5 +:1043E00008005A5C08005A5C08005A5C08005A5CD5 +:1043F00008005A5C08005A5C08005A5C08005A5CC5 +:1044000008005A5C08005A5C08005A5C08005A5CB4 +:1044100008005A5C08005A5C08005A5C08005A5CA4 +:1044200008005A5C08005A5C08005A5C08005A5C94 +:1044300008005A5C08005A5C08005A5C08005A5C84 +:1044400008005A5C08005A5C08005A5C08005A5C74 +:1044500008005A5C08005A5C08005A5C08005A5C64 +:1044600008005A5C08005A5C08005A5C08005A5C54 +:1044700008005A5C08005A5C08005A5C08005A5C44 +:1044800008005A5C08005A5C08005A5C08005A5C34 +:1044900008005A5C08005A5C08005A5C08005A5C24 +:1044A00008005A5C08005A5C08005A5C08005A5C14 +:1044B00008005A5C08005A5C08005A5C08005A5C04 +:1044C00008005A5C08005A5C08005A5C08005ADC74 +:1044D0000800782C08007A900800783808007628C0 +:1044E00008007838080078C4080078380800762872 +:1044F0000800762808007628080076280800762824 +:104500000800762808007628080076280800762813 +:1045100008007628080078580800784808007628AF +:1045200008007628080076280800762808007628F3 +:1045300008007628080076280800762808007628E3 +:1045400008007628080076280800762808007848B1 +:10455000080082FC08008188080082C40800818865 +:104560000800829408008070080081880800818813 +:1045700008008188080081880800818808008188F7 +:1045800008008188080081880800818808008188E7 +:104590000800818808008188080081B008008D34F7 +:1045A00008008E9008008E70080088D808008D4C96 +:1045B0000A00012400000000000000000000000DBF +:1045C000747061362E322E31620000000602010145 +:1045D00000000000000000000000000000000000DB +:1045E00000000000000000000000000000000000CB +:1045F00000000000000000000000000000000000BB +:1046000000000000000000000000000000000000AA +:10461000000000000000000000000000000000009A +:10462000000000000000000000000000000000008A +:10463000000000000000000000000000000000007A +:104640000000000010000003000000000000000D4A +:104650000000000D3C020800244217203C03080023 +:1046600024632A10AC4000000043202B1480FFFD7F +:10467000244200043C1D080037BD2FFC03A0F0219C +:104680003C100800261004903C1C0800279C1720B2 +:104690000E000262000000000000000D2402FF80F6 +:1046A00027BDFFE000821024AFB00010AF42002011 +:1046B000AFBF0018AFB10014936500043084007FD1 +:1046C000034418213C0200080062182130A5002094 +:1046D000036080213C080111277B000814A0000220 +:1046E0002466005C2466005892020004974301048B +:1046F000920400043047000F3063FFFF3084004015 +:10470000006728231080000900004821920200055C +:1047100030420004104000050000000010A000031B +:104720000000000024A5FFFC2409000492020005FB +:1047300030420004104000120000000010A00010E1 +:10474000000000009602000200A72021010440257D +:104750002442FFFEA7421016920300042402FF80A9 +:1047600000431024304200FF104000033C020400CC +:104770000A000174010240258CC20000AF421018EB +:104780008F4201780440FFFE2402000AA742014044 +:1047900096020002240400093042000700021023A0 +:1047A00030420007A7420142960200022442FFFE67 +:1047B000A7420144A740014697420104A74201488D +:1047C0008F420108304200205040000124040001C3 +:1047D00092020004304200101440000234830010A2 +:1047E00000801821A743014A0000000000000000DB +:1047F0000000000000000000AF48100000000000B2 +:104800000000000000000000000000008F421000C7 +:104810000441FFFE3102FFFF1040000700000000CE +:1048200092020004304200401440000300000000E7 +:104830008F421018ACC20000960200063042FFFF03 +:10484000244200020002104300021040036288214B +:10485000962200001120000D3044FFFF00A7102118 +:104860008F8300388F45101C0002108200021080D8 +:1048700000431021AC45000030A6FFFF0E00058D5F +:1048800000052C0200402021A62200009203000413 +:104890002402FF8000431024304200FF1040001F1C +:1048A0000000000092020005304200021040001B90 +:1048B000000000009742100C2442FFFEA742101691 +:1048C000000000003C02040034420030AF421000FF +:1048D00000000000000000000000000000000000D8 +:1048E0008F4210000441FFFE000000009742100CB0 +:1048F0008F45101C3042FFFF24420030000210821E +:1049000000021080005B1021AC45000030A6FFFFC4 +:104910000E00058D00052C02A62200009604000260 +:10492000248400080E0001E93084FFFF974401044D +:104930000E0001F73084FFFF8FBF00188FB1001405 +:104940008FB000103C02100027BD002003E00008DB +:10495000AF4201783084FFFF308200078F8500244A +:1049600010400002248300073064FFF800A41021E7 +:1049700030421FFF03421821247B4000AF850028EE +:10498000AF82002403E00008AF4200843084FFFFC0 +:104990003082000F8F85002C8F860034104000027B +:1049A0002483000F3064FFF000A410210046182B70 +:1049B000AF8500300046202314600002AF82002C37 +:1049C000AF84002C8F82002C340480000342182115 +:1049D00000641821AF83003803E00008AF42008074 +:1049E0008F820014104000088F8200048F82FFDC49 +:1049F000144000058F8200043C02FFBF3442FFFFD9 +:104A0000008220248F82000430430006240200022A +:104A10001062000F3C0201012C62000350400005AF +:104A2000240200041060000F3C0200010A00023062 +:104A30000000000010620005240200061462000C51 +:104A40003C0201110A000229008210253C020011DB +:104A500000821025AF421000240200010A0002303B +:104A6000AF82000C00821025AF421000AF80000C16 +:104A700000000000000000000000000003E000084B +:104A8000000000008F82000C1040000400000000B5 +:104A90008F4210000441FFFE0000000003E0000808 +:104AA000000000008F8200102443F800000231C291 +:104AB00024C2FFF02C6303011060000300021042C7 +:104AC0000A000257AC8200008F85001800C5102B29 +:104AD0001440000B0000182100C5102324470001DA +:104AE0008F82001C00A210212442FFFF0046102BE1 +:104AF000544000042402FFFF0A000257AC87000064 +:104B00002402FFFF0A000260AC8200008C820000D9 +:104B10000002194000621821000318800062182169 +:104B2000000318803C0208002442175C0062182130 +:104B300003E000080060102127BDFFD8AFBF0020B0 +:104B4000AFB1001CAFB000183C0460088C8250006C +:104B50002403FF7F3C066000004310243442380CDD +:104B6000AC8250008CC24C1C3C1A80000002160221 +:104B70003042000F10400007AF82001C8CC34C1C59 +:104B80003C02001F3442FC0000621824000319C2DA +:104B9000AF8300188F420008275B400034420001B9 +:104BA000AF420008AF8000243C02601CAF40008090 +:104BB000AF4000848C4500088CC308083402800094 +:104BC000034220212402FFF0006218243C020080EE +:104BD0003C010800AC2204203C025709AF84003895 +:104BE00014620004AF850034240200010A0002921E +:104BF000AF820014AF8000148F42000038420001E1 +:104C0000304200011440FFFC8F8200141040001657 +:104C10000000000097420104104000058F8300004F +:104C2000146000072462FFFF0A0002A72C62000A3A +:104C30002C620010504000048F83000024620001A9 +:104C4000AF8200008F8300002C62000A1440000332 +:104C50002C6200070A0002AEAF80FFDC10400002A9 +:104C600024020001AF82FFDC8F4301088F44010062 +:104C700030622000AF83000410400008AF840010B1 +:104C80003C0208008C42042C244200013C01080034 +:104C9000AC22042C0A00058A3C0240003065020068 +:104CA00014A0000324020F001482026024020D00ED +:104CB00097420104104002C83C02400030624000AC +:104CC000144000AD8F8200388C4400088F42017878 +:104CD0000440FFFE24020800AF42017824020008CD +:104CE000A7420140A7400142974201048F8400047B +:104CF0003051FFFF30820001104000070220802168 +:104D00002623FFFE240200023070FFFFA742014667 +:104D10000A0002DBA7430148A74001463C02080005 +:104D20008C42043C1440000D8F8300103082002020 +:104D30001440000224030009240300010060202124 +:104D40008F830010240209005062000134840004A3 +:104D5000A744014A0A0002F60000000024020F00E6 +:104D60001462000530820020144000062403000D68 +:104D70000A0002F524030005144000022403000980 +:104D800024030001A743014A3C0208008C4204208E +:104D90003C0400480E00020C004420250E000235A1 +:104DA000000000008F82000C1040003E0000000058 +:104DB0008F4210003C0300200043102410400039B3 +:104DC0008F820004304200021040003600000000D4 +:104DD000974210141440003300000000974210085E +:104DE0008F8800383042FFFF2442000600021882FC +:104DF0000003388000E83021304300018CC40000FB +:104E000010600004304200030000000D0A00033768 +:104E100000E81021544000103084FFFF3C05FFFFE4 +:104E200000852024008518260003182B0004102B71 +:104E300000431024104000050000000000000000A6 +:104E40000000000D00000000240002228CC20000BF +:104E50000A000336004520253883FFFF0003182B86 +:104E60000004102B00431024104000050000000037 +:104E7000000000000000000D000000002400022BD4 +:104E80008CC200003444FFFF00E81021AC44000055 +:104E90003C0208008C420430244200013C0108001E +:104EA000AC2204308F6200008F840038AF8200088B +:104EB0008C8300003402FFFF1462000F00001021F9 +:104EC0003C0508008CA504543C0408008C84045064 +:104ED00000B0282100B0302B008220210086202144 +:104EE0003C010800AC2504543C010800AC240450EB +:104EF0000A000580240400088C8200003042010072 +:104F00001040000F000010213C0508008CA5044C47 +:104F10003C0408008C84044800B0282100B0302BE9 +:104F200000822021008620213C010800AC25044C91 +:104F30003C010800AC2404480A0005802404000851 +:104F40003C0508008CA504443C0408008C84044003 +:104F500000B0282100B0302B0082202100862021C3 +:104F60003C010800AC2504443C010800AC2404408A +:104F70000A000580240400088F6200088F62000088 +:104F800000021602304300F02402003010620005D7 +:104F900024020040106200E08F8200200A00058891 +:104FA0002442000114A000050000000000000000E1 +:104FB0000000000D00000000240002568F4201781E +:104FC0000440FFFE000000000E00023D27A4001078 +:104FD0001440000500408021000000000000000D8A +:104FE000000000002400025D8E0200001040000559 +:104FF00000000000000000000000000D00000000A4 +:10500000240002608F62000C0443000324020001AC +:105010000A00042EAE000000AE0200008F820038AD +:105020008C480008A20000078F65000C8F64000404 +:1050300030A3FFFF0004240200852023308200FFFC +:105040000043102124420005000230832CC200815D +:10505000A605000A14400005A20400040000000098 +:105060000000000D00000000240002788F85003849 +:105070000E0005AB260400148F6200048F43010864 +:10508000A60200083C02100000621824106000080C +:105090000000000097420104920300072442FFEC45 +:1050A000346300023045FFFF0A0003C3A203000778 +:1050B000974201042442FFF03045FFFF96060008A6 +:1050C0002CC200135440000592030007920200070F +:1050D00034420001A20200079203000724020001EB +:1050E00010620005240200031062000B8F8200385A +:1050F0000A0003E030C6FFFF8F8200383C04FFFF48 +:105100008C43000C0064182400651825AC43000C87 +:105110000A0003E030C6FFFF3C04FFFF8C43001091 +:105120000064182400651825AC43001030C6FFFF4A +:1051300024C2000200021083A20200058F830038FF +:10514000304200FF00021080004328218CA800009C +:105150008CA2000024030004000217021443001272 +:1051600000000000974201043C03FFFF01031824E4 +:105170003042FFFF004610232442FFFE006240251C +:10518000ACA8000092030005306200FF000210800E +:1051900000501021904200143042000F00431021B3 +:1051A0000A000415A20200068CA400049742010420 +:1051B0009603000A3088FFFF3042FFFF00461023AD +:1051C0002442FFD60002140001024025ACA80004CE +:1051D000920200079204000524630028000318834C +:1051E0000064182134420004A2030006A202000752 +:1051F0008F8200042403FFFB34420002004310248A +:10520000AF820004920300068F87003800031880E5 +:10521000007010218C4400203C02FFF63442FFFF56 +:105220000082402400671821AE04000CAC68000C1A +:10523000920500063C03FF7F8E02000C00052880CB +:1052400000B020213463FFFF01033024948800263E +:1052500000A7282100431024AE02000CAC860020D9 +:10526000AC880024ACA8001024020010A742014022 +:1052700024020002A7400142A7400144A742014680 +:10528000974201043C0400082442FFFEA742014863 +:10529000240200010E00020CA742014A9603000AF4 +:1052A0009202000400431021244200023042000711 +:1052B00000021023304200070E000235AE0200103B +:1052C0008F6200003C0308008C6304442404001037 +:1052D000AF820008974201043042FFFF2442FFFEE4 +:1052E00000403821000237C33C0208008C420440D1 +:1052F000006718210067282B004610210045102167 +:105300003C010800AC2304443C010800AC220440EA +:105310000A0005150000000014A0000500000000B0 +:10532000000000000000000D000000002400030A3F +:105330008F4201780440FFFE000000000E00023D95 +:1053400027A4001414400005004080210000000044 +:105350000000000D00000000240003118E02000078 +:105360005440000692020007000000000000000DFB +:10537000000000002400031C9202000730420004D9 +:10538000104000058F8200042403FFFB344200021A +:1053900000431024AF8200048F620004044300081D +:1053A00092020007920200068E03000CAE0000007D +:1053B0000002108000501021AC4300209202000730 +:1053C00030420004544000099602000A920200058F +:1053D0003C03000100021080005010218C46001890 +:1053E00000C33021AC4600189602000A9206000461 +:1053F000277100080220202100C2302124C60005A8 +:10540000260500140E0005AB00063082920400064B +:105410008F6500043C027FFF000420800091202162 +:105420008C8300043442FFFF00A228240065182169 +:10543000AC8300049202000792040005920300046A +:10544000304200041040001496070008308400FF2A +:1054500000042080009120218C86000497420104E2 +:105460009605000A306300FF3042FFFF0043102121 +:105470000045102130E3FFFF004310232442FFD8F2 +:1054800030C6FFFF0002140000C23025AC860004C5 +:105490000A0004C992030007308500FF0005288038 +:1054A00000B128218CA4000097420104306300FF62 +:1054B0003042FFFF00431021004710233C03FFFF51 +:1054C000008320243042FFFF00822025ACA400008E +:1054D0009203000724020001106200060000000091 +:1054E0002402000310620011000000000A0004EC16 +:1054F0008E03001097420104920300049605000AEF +:105500008E24000C00431021004510212442FFF29C +:105510003C03FFFF008320243042FFFF0082202550 +:10552000AE24000C0A0004EC8E0300109742010424 +:10553000920300049605000A8E24001000431021F7 +:10554000004510212442FFEE3C03FFFF008320248E +:105550003042FFFF00822025AE2400108E03001091 +:105560002402000AA7420140A74301429603000A11 +:10557000920200043C04004000431021A742014471 +:10558000A740014697420104A742014824020001B6 +:105590000E00020CA742014A0E0002350000000076 +:1055A0008F6200009203000400002021AF820008F7 +:1055B000974201049606000A3042FFFF006218215C +:1055C000006028213C0308008C6304443C0208006E +:1055D0008C42044000651821004410210065382BDE +:1055E000004710213C010800AC2304443C010800A2 +:1055F000AC22044092040004008620212484000A86 +:105600003084FFFF0E0001E9000000009744010410 +:105610003084FFFF0E0001F7000000003C02100084 +:10562000AF4201780A0005878F820020148200278C +:105630003062000697420104104000673C024000BF +:105640003062400010400005000000000000000033 +:105650000000000D00000000240004208F420178AB +:105660000440FFFE24020800AF4201782402000833 +:10567000A7420140A74001428F82000497430104E2 +:1056800030420001104000073070FFFF2603FFFE8C +:1056900024020002A7420146A74301480A00053F31 +:1056A0002402000DA74001462402000DA742014A32 +:1056B0008F62000024040008AF8200080E0001E998 +:1056C000000000000A0005190200202110400042DD +:1056D0003C02400093620000304300F024020010BE +:1056E0001062000524020070106200358F820020D5 +:1056F0000A000588244200018F62000097430104DC +:105700003050FFFF3071FFFF8F4201780440FFFEF1 +:105710003202000700021023304200072403000A6F +:105720002604FFFEA7430140A7420142A7440144CB +:10573000A7400146A75101488F420108304200208E +:10574000144000022403000924030001A743014A76 +:105750000E00020C3C0400400E0002350000000068 +:105760003C0708008CE70444021110212442FFFE8C +:105770003C0608008CC604400040182100E3382194 +:10578000000010218F65000000E3402B00C2302193 +:105790002604000800C830213084FFFFAF850008D0 +:1057A0003C010800AC2704443C010800AC2604403E +:1057B0000E0001E9000000000A0005190220202166 +:1057C0000E00013B000000008F82002024420001F7 +:1057D000AF8200203C024000AF4201380A00029232 +:1057E000000000003084FFFF30C6FFFF00052C00E2 +:1057F00000A628253882FFFF004510210045282BF0 +:105800000045102100021C023042FFFF004310211E +:1058100000021C023042FFFF004310213842FFFF0C +:1058200003E000083042FFFF3084FFFF30A5FFFF98 +:1058300000001821108000070000000030820001E5 +:105840001040000200042042006518210A0005A152 +:105850000005284003E000080060102110C0000689 +:1058600024C6FFFF8CA2000024A50004AC82000027 +:105870000A0005AB2484000403E0000800000000D7 +:1058800010A0000824A3FFFFAC8600000000000069 +:10589000000000002402FFFF2463FFFF1462FFFAF0 +:1058A0002484000403E00008000000000000000160 +:1058B0000A00002A00000000000000000000000DA7 +:1058C000747870362E322E3162000000060201001C +:1058D00000000000000001360000EA600000000047 +:1058E00000000000000000000000000000000000B8 +:1058F00000000000000000000000000000000000A8 +:105900000000000000000000000000000000000097 +:105910000000001600000000000000000000000071 +:105920000000000000000000000000000000000077 +:105930000000000000000000000000000000000067 +:1059400000000000000000000000138800000000BC +:10595000000005DC00000000000000001000000353 +:10596000000000000000000D0000000D3C020800D7 +:1059700024423D683C0308002463401CAC40000006 +:105980000043202B1480FFFD244200043C1D08002E +:1059900037BD7FFC03A0F0213C100800261000A8B2 +:1059A0003C1C0800279C3D680E00044E00000000CF +:1059B0000000000D27BDFFB4AFA10000AFA200049E +:1059C000AFA30008AFA4000CAFA50010AFA6001451 +:1059D000AFA70018AFA8001CAFA90020AFAA0024F1 +:1059E000AFAB0028AFAC002CAFAD0030AFAE003491 +:1059F000AFAF0038AFB8003CAFB90040AFBC004417 +:105A0000AFBF00480E000591000000008FBF0048A6 +:105A10008FBC00448FB900408FB8003C8FAF003876 +:105A20008FAE00348FAD00308FAC002C8FAB0028D0 +:105A30008FAA00248FA900208FA8001C8FA7001810 +:105A40008FA600148FA500108FA4000C8FA3000850 +:105A50008FA200048FA1000027BD004C3C1B6004F6 +:105A60008F7A5030377B502803400008AF7A00000F +:105A70008F86003C3C0390003C0280000086282575 +:105A800000A32025AC4400203C0380008C6700204C +:105A900004E0FFFE0000000003E00008000000003A +:105AA0000A000070240400018F85003C3C04800043 +:105AB0003483000100A3102503E00008AC8200201D +:105AC00003E00008000010213084FFFF30A5FFFF35 +:105AD00010800007000018213082000110400002F1 +:105AE00000042042006518211480FFFB00052840B7 +:105AF00003E000080060102110C000070000000053 +:105B00008CA2000024C6FFFF24A50004AC82000084 +:105B100014C0FFFB2484000403E000080000000020 +:105B200010A0000824A3FFFFAC86000000000000C6 +:105B3000000000002402FFFF2463FFFF1462FFFA4D +:105B40002484000403E000080000000090AA003153 +:105B50008FAB00108CAC00403C0300FF8D6800044C +:105B6000AD6C00208CAD004400E060213462FFFF8A +:105B7000AD6D00248CA700483C09FF000109C0243A +:105B8000AD6700288CAE004C0182C824031978252B +:105B9000AD6F0004AD6E002C8CAD0038314A00FFB3 +:105BA000AD6D001C94A900323128FFFFAD680010D4 +:105BB00090A70030A5600002A1600004A16700006A +:105BC00090A30032306200FF0002198210600005CD +:105BD000240500011065000E0000000003E000082D +:105BE000A16A00018CD80028354A0080AD780018E1 +:105BF0008CCF0014AD6F00148CCE0030AD6E000859 +:105C00008CC4002CA16A000103E00008AD64000C04 +:105C10008CCD001CAD6D00188CC90014AD6900144A +:105C20008CC80024AD6800088CC70020AD67000C4C +:105C30008CC200148C8300700043C82B1320000713 +:105C4000000000008CC20014144CFFE400000000AF +:105C5000354A008003E00008A16A00018C820070D0 +:105C60000A0000E6000000009089003027BDFFF820 +:105C70008FA8001CA3A900008FA300003C0DFF808B +:105C800035A2FFFF8CAC002C00625824AFAB0000A3 +:105C9000A100000400C05821A7A000028D06000446 +:105CA00000A048210167C8218FA500000080502175 +:105CB0003C18FF7F032C20263C0E00FF2C8C00019B +:105CC000370FFFFF35CDFFFF3C02FF0000AFC824B8 +:105CD00000EDC02400C27824000C1DC003236825F9 +:105CE00001F87025AD0D0000AD0E00048D240024D8 +:105CF000AFAD0000AD0400088D2C00202404FFFF90 +:105D0000AD0C000C9547003230E6FFFFAD060010E9 +:105D10009145004830A200FF000219C25060000106 +:105D20008D240034AD0400148D4700388FAA00186C +:105D300027BD0008AD0B0028AD0A0024AD07001CEC +:105D4000AD00002CAD00001803E00008AD000020FD +:105D500027BDFFE0AFB20018AFB10014AFB0001024 +:105D6000AFBF001C9098003000C088213C0D00FFA0 +:105D7000330F007FA0CF0000908E003135ACFFFFC5 +:105D80003C0AFF00A0CE000194A6001EA220000441 +:105D90008CAB00148E29000400A08021016C282403 +:105DA000012A40240080902101052025A62600021A +:105DB000AE24000426050020262400080E000092D0 +:105DC00024060002924700302605002826240014ED +:105DD00000071E000003160324060004044000030D +:105DE0002403FFFF965900323323FFFF0E00009279 +:105DF000AE230010262400248FBF001C8FB2001891 +:105E00008FB100148FB00010240500030000302172 +:105E10000A00009C27BD002027BDFFD8AFB1001CA1 +:105E2000AFB00018AFBF002090A9003024020001DD +:105E300000E050213123003F00A040218FB00040FE +:105E40000080882100C04821106200148FA700380C +:105E5000240B000500A0202100C02821106B001396 +:105E6000020030210E000128000000009225007C75 +:105E700030A400021080000326030030AE00003082 +:105E8000260300348FBF00208FB1001C8FB0001894 +:105E90000060102103E0000827BD00280E0000A7C5 +:105EA000AFB000100A00016F000000008FA3003C9B +:105EB000010020210120282101403021AFA3001042 +:105EC0000E0000EEAFB000140A00016F00000000E9 +:105ED0003C06800034C20E008C4400108F850044C4 +:105EE000ACA400208C43001803E00008ACA30024FD +:105EF0003C06800034C20E008C4400148F850044A0 +:105F0000ACA400208C43001C03E00008ACA30024D8 +:105F10009382000C1040001B2483000F2404FFF028 +:105F20000064382410E00019978B00109784000E4D +:105F30009389000D3C0A601C0A0001AC01644023F7 +:105F400001037021006428231126000231C2FFFFE3 +:105F500030A2FFFF0047302B50C0000E00E4482164 +:105F60008D4D000C31A3FFFF00036400000C2C03D7 +:105F700004A1FFF30000302130637FFF0A0001A479 +:105F80002406000103E00008000000009784000ED2 +:105F900000E448213123FFFF3168FFFF0068382B00 +:105FA00054E0FFF8A783000E938A000D114000050E +:105FB000240F0001006BC023A380000D03E0000844 +:105FC000A798000E006BC023A38F000D03E000080C +:105FD000A798000E03E000080000000027BDFFE8BE +:105FE000AFB000103C10800036030140308BFFFF43 +:105FF00093AA002BAFBF0014A46B000436040E005C +:106000009488001630C600FF8FA90030A4680006EF +:10601000AC650008A0660012A46A001AAC670020F4 +:106020008FA5002CA4690018012020210E000198E2 +:10603000AC6500143C021000AE0201788FBF001462 +:106040008FB0001003E0000827BD00188F85000006 +:106050002484000727BDFFF83084FFF83C06800049 +:1060600094CB008A316AFFFFAFAA00008FA900001D +:10607000012540232507FFFF30E31FFF0064102B9D +:106080001440FFF700056882000D288034CC4000E2 +:1060900000AC102103E0000827BD00088F8200003B +:1060A0002486000730C5FFF800A2182130641FFFC6 +:1060B00003E00008AF8400008F87003C8F84004419 +:1060C00027BDFFB0AFB70044AFB40038AFB1002C6C +:1060D000AFBF0048AFB60040AFB5003CAFB300342F +:1060E000AFB20030AFB000283C0B80008C8600249B +:1060F000AD6700808C8A002035670E00356901008D +:10610000ACEA00108C8800248D2500040000B82122 +:10611000ACE800188CE3001000A688230000A02142 +:10612000ACE300148CE20018ACE2001C122000FE6C +:1061300000E0B021936C0008118000F40000000022 +:10614000976F001031EEFFFF022E682B15A000EFB5 +:1061500000000000977200103250FFFFAED0000028 +:106160003C0380008C740000329300081260FFFD35 +:106170000000000096D800088EC700043305FFFF1A +:1061800030B5000112A000E4000000000000000D86 +:1061900030BFA0402419004013F9011B30B4A00007 +:1061A000128000DF000000009373000812600008F6 +:1061B00000000000976D001031ACFFFF00EC202BB9 +:1061C0001080000330AE004011C000D50000000078 +:1061D000A7850040AF87003893630008022028217C +:1061E000AFB10020146000F527B40020AF60000CB0 +:1061F000978F004031F14000162000022403001662 +:106200002403000E24054007A363000AAF650014B1 +:10621000938A00428F70001431550001001512401E +:1062200002024825AF690014979F00408F78001440 +:1062300033F9001003194025AF680014979200400D +:106240003247000810E0016E000000008F67001464 +:106250003C1210003C11800000F27825AF6F001452 +:1062600036230E00946E000A3C0D81002406000EB9 +:1062700031CCFFFF018D2025AF640004A36600022E +:106280009373000A3406FFFC266B0004A36B000A1C +:1062900097980040330820001100015F00000000C3 +:1062A0003C05800034A90E00979900409538000CF9 +:1062B00097870040001940423312C00031030003A9 +:1062C00000127B0330F11000006F6825001172038B +:1062D00001AE6025000C20C0A76400129793004017 +:1062E000936A000A001359823175003C02AA1021FA +:1062F0002450003CA3700009953F000C33F93FFF88 +:10630000A779001097700012936900090130F821F5 +:1063100027E5000230B900070019C0233308000741 +:10632000A368000B9371000997720012976F001019 +:10633000322700FF8F910038978D004000F218211E +:10634000006F702101C6602131A6004010C0000519 +:106350003185FFFF00B1102B3C1280001040001768 +:10636000000098210225A82B56A0013E8FA50020F1 +:106370003C048000348A0E008D5300143C068000DB +:10638000AD5300108D4B001CAD4B0018AD45000007 +:106390008CCD000031AC00081180FFFD34CE0E0022 +:1063A00095C3000800A0882100009021A783004029 +:1063B0008DC6000424130001AF860038976F0010CB +:1063C00031F5FFFF8E9F000003F1282310A0011F6D +:1063D000AE85000093620008144000DD000000005C +:1063E0000E0001E7240400108F900048004028218F +:1063F0003C023200320600FF000654000142F8253C +:1064000026090001AF890048ACBF0000937900095C +:1064100097780012936F000A332800FF3303FFFFC1 +:106420000103382100076C0031EE00FF01AE60254A +:10643000ACAC00048F840048978B0040316A200088 +:106440001140010AACA4000897640012308BFFFFD2 +:1064500006400108ACAB000C978E004031C5000827 +:1064600014A0000226280006262800023C1F8000F7 +:1064700037E70E0094F900148CE5001C8F670004C8 +:10648000937800023324FFFF330300FFAFA3001013 +:106490008F6F0014AFA800180E0001CBAFAF00142F +:1064A000240400100E0001FB000000008E9200008A +:1064B00016400005000000008F7800142403FFBF81 +:1064C0000303A024AF7400148F67000C00F5C821EB +:1064D000AF79000C9375000816A0000800000000BA +:1064E00012600006000000008F6800143C0AEFFFF5 +:1064F0003549FFFE0109F824AF7F0014A37300089B +:106500008FA500200A00034F02202021AED10000F9 +:106510000A00022D3C03800014E0FF1E30BFA040A3 +:106520000E0001900000A0212E9100010237B0253D +:1065300012C000188FBF00488F87003C24170F003F +:1065400010F700D43C0680008CD901780720FFFEAC +:10655000241F0F0010FF00F634CA0E008D560014E1 +:1065600034C7014024080240ACF600048D49001CE9 +:106570003C141000ACE90008A0E00012A4E0001AEE +:10658000ACE00020A4E00018ACE80014ACD4017822 +:106590008FBF00488FB700448FB600408FB5003CD6 +:1065A0008FB400388FB300348FB200308FB1002C1D +:1065B0008FB0002803E0000827BD00508F910038FD +:1065C000978800403C1280000220A821310700403B +:1065D00014E0FF7C00009821977900108F9200381A +:1065E0003338FFFF131200A8000020210080A021F3 +:1065F000108000F300A088211620FECE00000000CD +:106600000A00031F2E9100013C0380008C62017878 +:106610000440FFFE240808008F860000AC68017863 +:106620003C038000946D008A31ACFFFF0186582343 +:10663000256AFFFF31441FFF2C8900081520FFF950 +:10664000000000008F8F0048347040008F83003CB2 +:1066500000E0A021240E0F0025E70001AF870048CD +:1066600000D03021023488233C08800031F500FF3F +:10667000106E0005240700019398004233130001B7 +:106680000013924036470001001524003C0A010027 +:10669000008A4825ACC900008F82004830BF003610 +:1066A00030B90008ACC200041320009900FF9825FF +:1066B00035120E009650000A8F8700003C0F8100B3 +:1066C0003203FFFF24ED000835060140006F60250E +:1066D0003C0E100031AB1FFF269200062405000E71 +:1066E000ACCC0020026E9825A4C5001AAF8B000028 +:1066F000A4D20018162000083C1080008F89003CAE +:1067000024020F00512200022417000136730040BA +:106710000E0001883C10800036060E008CCB001461 +:10672000360A014002402021AD4B00048CC5001CFC +:10673000AD450008A1550012AD5300140E0001989C +:106740003C151000AE1501780A000352000000004D +:10675000936F0009976E0012936D000B31E500FFF7 +:1067600000AE202131AC00FF008C80212602000AFF +:106770003050FFFF0E0001E7020020218F86004805 +:106780003C0341003C05800024CB0001AF8B004856 +:10679000936A00099769001230C600FF315F00FF5D +:1067A0003128FFFF03E8382124F900020006C40065 +:1067B0000319782501E37025AC4E00008F6D000CA5 +:1067C00034A40E00948B001401B26025AC4C00047C +:1067D0008C85001C8F670004936A00023164FFFF00 +:1067E000314900FFAFA900108F680014AFB1001845 +:1067F0000E0001CBAFA800140A0002FD0200202108 +:10680000AF600004A36000029798004033082000A6 +:106810001500FEA300003021A760001297840040FD +:10682000936B000A3C10800030931F0000135183CB +:10683000014BA82126A20028A362000936090E00F8 +:10684000953F000C0A000295A77F00108F7000147E +:10685000360900400E000188AF6900140A0002C921 +:10686000000000000A00034F000020210641FEFA4C +:10687000ACA0000C8CAC000C3C0D8000018D902570 +:106880000A0002EAACB2000C000090210A0002C526 +:1068900024130001128000073C028000344B0E00DC +:1068A0009566000830D300401260004900000000E7 +:1068B0003C0680008CD001780600FFFE34C50E0037 +:1068C00094B500103C03050034CC014032B8FFFF02 +:1068D00003039025AD92000C8CAF0014240D200012 +:1068E0003C041000AD8F00048CAE001CAD8E00087F +:1068F000A1800012A580001AAD800020A58000189C +:10690000AD8D0014ACC401780A0003263C0680005B +:106910008F9F0000351801402692000227F90008D9 +:1069200033281FFFA71200180A000391AF88000048 +:106930003C02800034450140ACA0000C1280001BDA +:1069400034530E0034510E008E370010ACB70004E3 +:106950008E2400183C0B8000ACA400083570014068 +:1069600024040040A20000128FBF0048A600001AB5 +:106970008FB70044AE0000208FB60040A60000187C +:106980008FB5003CAE0400148FB400388FB30034D0 +:106990008FB200308FB1002C8FB000283C02100065 +:1069A00027BD005003E00008AD6201788E66001438 +:1069B000ACA600048E64001C0A00042A3C0B800074 +:1069C0000E0001902E9100010A0003200237B0252D +:1069D000000000000000000D00000000240003691A +:1069E0000A0004013C06800027BDFFD8AFBF00208D +:1069F0003C0980003C1F20FFAFB200183C0760003C +:106A000035320E002402001037F9FFFDACE23008E9 +:106A1000AFB3001CAFB10014AFB00010AE5900000E +:106A20000000000000000000000000000000000066 +:106A3000000000003C1800FF3713FFFDAE530000BC +:106A40003C0B60048D7050002411FF7F3C0E00024F +:106A50000211782435EC380C35CD0109ACED4C1819 +:106A6000240A0009AD6C50008CE80438AD2A0008F7 +:106A7000AD2000148CE54C1C3106FFFF38C42F718B +:106A800000051E023062000F2486C0B310400007CC +:106A9000AF8200088CE54C1C3C09001F3528FC0027 +:106AA00000A81824000321C2AF8400048CF1080858 +:106AB0003C0F57092412F0000232702435F0001008 +:106AC00001D0602601CF68262DAA00012D8B000180 +:106AD000014B382550E00009A380000C3C1F601CCE +:106AE0008FF8000824190001A399000C33137C00CF +:106AF000A7930010A780000EA380000DAF80004870 +:106B000014C00003AF8000003C066000ACC0442C01 +:106B10000E0005B93C1080000E000F1A361101005E +:106B20003C12080026523DD03C13080026733E500C +:106B30008E03000038640001308200011440FFFC25 +:106B40003C0B800A8E2600002407FF8024C90240E7 +:106B5000312A007F014B402101272824AE06002066 +:106B6000AF880044AE0500243C048000AF86003CA2 +:106B70008C8C01780580FFFE24180800922F0008F5 +:106B8000AC980178A38F0042938E004231CD000172 +:106B900011A0000F24050D0024DFF8002FF90301D8 +:106BA0001320001C000629C224A4FFF00004104298 +:106BB000000231400E00020200D2D8213C02400007 +:106BC0003C068000ACC201380A0004A000000000AE +:106BD00010C50023240D0F0010CD00273C1F800896 +:106BE00037F9008093380000240E0050330F00FF67 +:106BF00015EEFFF33C0240000E000A3600000000D4 +:106C00003C0240003C068000ACC201380A0004A0EF +:106C1000000000008F83000400A3402B1500000B30 +:106C20008F8B0008006B50212547FFFF00E5482BA4 +:106C30001520000600A36023000C19400E0002027C +:106C40000073D8210A0004C43C0240000000000D7B +:106C50000E000202000000000A0004C43C024000D2 +:106C60003C1B0800277B3F500E0002020000000082 +:106C70000A0004C43C0240003C1B0800277B3F7014 +:106C80000E000202000000000A0004C43C024000A2 +:106C90003C0660043C09080025290104ACC9502CBD +:106CA0008CC850003C0580003C0200023507008083 +:106CB000ACC750003C040800248415A43C03080021 +:106CC0002463155CACA50008ACA2000C3C010800D4 +:106CD000AC243D603C010800AC233D6403E00008A7 +:106CE0002402000100A030213C1C0800279C3D68C4 +:106CF0003C0C04003C0B0002008B3826008C402624 +:106D00002CE200010007502B2D050001000A4880ED +:106D10003C03080024633D60004520250123182121 +:106D20001080000300001021AC6600002402000166 +:106D300003E00008000000003C1C0800279C3D68A0 +:106D40003C0B04003C0A0002008A3026008B3826E7 +:106D50002CC200010006482B2CE5000100094080F0 +:106D60003C03080024633D600045202501031821F1 +:106D700010800005000010213C0C0800258C155CDB +:106D8000AC6C00002402000103E0000800000000D9 +:106D90003C0900023C08040000883026008938269F +:106DA0002CC30001008028212CE400010083102561 +:106DB0001040000B000030213C1C0800279C3D685F +:106DC0003C0A80008D4E00082406000101CA682597 +:106DD000AD4D00088D4C000C01855825AD4B000CC5 +:106DE00003E0000800C010213C1C0800279C3D68FF +:106DF0003C0580008CA6000C000420272402000122 +:106E000000C4182403E00008ACA3000C3C020002FC +:106E10001082000B3C0560003C0704001087000353 +:106E20000000000003E00008000000008CA908D06A +:106E3000240AFFFD012A402403E00008ACA808D082 +:106E40008CA408D02406FFFE0086182403E0000866 +:106E5000ACA308D03C05601A34A600108CC3008097 +:106E600027BDFFF88CC50084AFA3000093A40000E9 +:106E70002402000110820003AFA5000403E0000813 +:106E800027BD000893A7000114E0001497AC00028E +:106E900097B800023C0F8000330EFFFC01CF682141 +:106EA000ADA50000A3A000003C0660008CC708D080 +:106EB0002408FFFE3C04601A00E82824ACC508D072 +:106EC0008FA300048FA200003499001027BD000892 +:106ED000AF22008003E00008AF2300843C0B800059 +:106EE000318AFFFC014B48218D2800000A00057DF6 +:106EF000AFA8000427BDFFE8AFBF00103C1C08008E +:106F0000279C3D683C0580008CA4000C8CA20004EA +:106F10003C0300020044282410A0000A00A3182407 +:106F20003C0604003C0400021460000900A6102482 +:106F30001440000F3C0404000000000D3C1C08003D +:106F4000279C3D688FBF001003E0000827BD001894 +:106F50003C0208008C423D600040F809000000003F +:106F60003C1C0800279C3D680A0005A68FBF001046 +:106F70003C0208008C423D640040F809000000001B +:106F80000A0005AC00000000000411C003E0000886 +:106F9000244202403C04080024843FB42405001A23 +:106FA0000A00009C0000302127BDFFE0AFB00010B8 +:106FB0003C108000AFBF0018AFB1001436110100C3 +:106FC000922200090E0005B63044007F8E3F00007B +:106FD0008F89003C3C0F008003E26021258800403F +:106FE0000049F821240DFF80310E00783198007897 +:106FF00035F9000135F100020319382501D1482582 +:10700000010D302403ED5824018D2824240A00406A +:1070100024040080240300C0AE0B0024AE0008103E +:10702000AE0A0814AE040818AE03081CAE05080426 +:10703000AE070820AE060808AE0908243609090084 +:107040009539000C3605098033ED007F3338FFFF9A +:10705000001889C0AE110800AE0F0828952C000C4E +:107060008FBF00188FB10014318BFFFF000B51C090 +:10707000AE0A002C8CA400508FB000108CA3003CF2 +:107080008D2700048CA8001C8CA600383C0E800ABA +:1070900001AE102127BD0020AF820044AF84005014 +:1070A000AF830054AF87004CAF88005C03E000085A +:1070B000AF8600603C09080091293FD924A800024E +:1070C0003C05110000093C0000E8302500C51825EA +:1070D00024820008AC83000003E00008AC800004B8 +:1070E0003C098000352309009128010B906A0011AA +:1070F0002402002800804821314700FF00A07021B1 +:1071000000C068213108004010E20002340C86DD26 +:10711000240C08003C0A800035420A9A944700007B +:10712000354B0A9C35460AA030F9FFFFAD39000007 +:107130008D780000354B0A8024040001AD3800042E +:107140008CCF0000AD2F00089165001930A300031B +:107150001064009028640002148000AF240500022F +:107160001065009E240F0003106F00B435450AA47B +:10717000240A0800118A0048000000005100003D68 +:107180003C0B80003C0480003483090090670012AF +:1071900030E200FF004D7821000FC8802724000155 +:1071A0003C0A8000354F090091E50019354C0980F3 +:1071B0008D87002830A300FF0003150000475825E5 +:1071C0000004C4003C19600001793025370806FF2F +:1071D000AD260000AD2800048DEA002C25280028EB +:1071E000AD2A00088DEC0030AD2C000C8DE500348C +:1071F000AD2500108DE400383C05800034AC093C1E +:10720000AD2400148DE3001CAD2300188DE7002091 +:10721000AD27001C8DE20024AD2200208DF900284E +:1072200034A20100AD3900248D830000AD0E0004AE +:1072300034B90900AD0300008C47000C250200148E +:10724000AD070008932B00123C04080090843FD83F +:10725000AD000010317800FF030D302100064F0013 +:1072600000047C00012F702535CDFFFC03E00008F1 +:10727000AD0D000C35780900930600123C0508009E +:1072800094A53FC830C800FF010D5021000A60805E +:107290000A00063C018520211500005B000000006B +:1072A0003C08080095083FCE3C06080094C63FC83D +:1072B000010610213C0B800035790900933800113C +:1072C000932A001935660A80330800FF94CF002AFC +:1072D00000086082314500FF978A0058000C1E00AC +:1072E000000524003047FFFF006410250047C0253B +:1072F00001EA30213C0B4000030B402500066400EE +:10730000AD280000AD2C0004932500183C030006B6 +:107310002528001400053E0000E31025AD220008DA +:107320008F24002C3C05800034AC093CAD24000CBB +:107330008F38001C34A20100254F0001AD38001029 +:107340008D830000AD0E000431EB7FFFAD03000024 +:107350008C47000C34B90900A78B0058AD07000812 +:10736000932B00123C04080090843FD8250200149F +:10737000317800FF030D302100064F0000047C002F +:10738000012F702535CDFFFCAD00001003E0000893 +:10739000AD0D000C3C02080094423FD23C050800B1 +:1073A00094A53FC835440AA43C07080094E73FC4AD +:1073B000948B00000045C8210327C023000B1C004C +:1073C0002706FFF200665025AD2A000CAD20001004 +:1073D000AD2C00140A00063025290018354F0AA4E8 +:1073E00095E50000956400280005140000043C00A9 +:1073F0003459810000EC5825AD39000CAD2B00103C +:107400000A000630252900143C0C0800958C3FCE5C +:107410000A000681258200015460FF56240A0800F4 +:1074200035580AA49706000000061C00006C502581 +:10743000AD2A000C0A000630252900103C03080084 +:1074400094633FD23C07080094E73FC83C0F080014 +:1074500095EF3FC494A4000095790028006710219F +:10746000004F582300041C00001934002578FFEE5B +:1074700000D87825346A8100AD2A000CAD2F0010A9 +:10748000AD200014AD2C00180A0006302529001C80 +:1074900003E00008240207D027BDFFE0AFB20018C8 +:1074A000AFB10014AFB00010AFBF001C0E00007CE5 +:1074B000008088218F8800548F87004C3C0580080D +:1074C00034B20080011128213C1080002402008089 +:1074D000240300C000A72023AE0208183C06800841 +:1074E000AE03081C18800004AF850054ACC500042E +:1074F0008CC90004AF89004C1220000936040980B1 +:107500000E0006F800000000924C00278E0B00745D +:1075100001825004014B3021AE46000C3604098034 +:107520008C8E001C8F8F005C01CF682319A0000493 +:107530008FBF001C8C90001CAF90005C8FBF001CA4 +:107540008FB200188FB100148FB000100A00007EB7 +:1075500027BD00208F8600508F8300548F82004CFF +:107560003C05800834A40080AC860050AC83003C0D +:1075700003E00008ACA200043C0308008C63005444 +:1075800027BDFFF8308400FF2462000130A500FF12 +:107590003C010800AC22005430C600FF3C078000CC +:1075A0008CE801780500FFFE3C0C7FFFA3A40003DC +:1075B0008FAA0000358BFFFF014B4824000627C02F +:1075C00001244025AFA8000034E201009043000AE6 +:1075D000A3A000023C1980FFA3A300018FAF00000D +:1075E00030AE007F3738FFFF01F86024000E6E00D8 +:1075F0003C0A002034E50140018D58253549200022 +:107600002406FF803C04100027BD0008ACAB000C32 +:10761000ACA90014A4A00018A0A6001203E0000862 +:10762000ACE40178308800FF30A700FF3C03800005 +:107630008C6201780440FFFE3C0C8000358A0A0011 +:107640008D4B00203584014035850980AC8B0004CA +:107650008D4900240007302B00061540AC89000836 +:10766000A088001090A3004CA083002D03E0000828 +:10767000A480001827BDFFE8308400FFAFBF0010D2 +:107680000E00075D30A500FF8F8300548FBF0010F0 +:107690003C06800034C50140344700402404FF907C +:1076A0003C02100027BD0018ACA3000CA0A40012DF +:1076B000ACA7001403E00008ACC2017827BDFFE0CE +:1076C0003C088008AFBF001CAFB20018AFB1001477 +:1076D000AFB00010351000808E0600183C07800007 +:1076E000309200FF00C72025AE0400180E00007C79 +:1076F00030B100FF92030005346200080E00007EE6 +:10770000A2020005024020210E000771022028215C +:10771000024020218FBF001C8FB200188FB10014CF +:107720008FB0001024050005240600010A0007326E +:1077300027BD00203C05800034A309809066000826 +:1077400030C200081040000F3C0A01013549080A08 +:10775000AC8900008CA80074AC8800043C070800C9 +:1077600090E73FD830E5001050A00008AC8000083A +:107770003C0D800835AC00808D8B0058AC8B000828 +:107780002484000C03E00008008010210A0007B5E3 +:107790002484000C27BDFFE83C098000AFB0001036 +:1077A000AFBF00143526098090C8000924020006E6 +:1077B00000A05821310300FF3527090000808021F7 +:1077C000240500041062007B2408000294CF005CB2 +:1077D0003C0E020431EDFFFF01AE6025AE0C00004F +:1077E00090CA00083144002010800008000000000A +:1077F00090C2004E3C1F010337F90300305800FFD0 +:107800000319302524050008AE06000490F9001184 +:1078100090E6001290E40011333800FF00187082E7 +:1078200030CF00FF01CF5021014B6821308900FF8C +:1078300031AAFFFF39230028000A60801460002C61 +:10784000020C482390E400123C198000372F0100FD +:10785000308C00FF018B1821000310800045F821B7 +:10786000001F8400360706FFAD270004373F0900DC +:1078700093EC001193EE0012372609800005C082B8 +:107880008DE4000C8CC5003431CD00FF01AB10211C +:107890000058182100A4F8230008840000033F00CA +:1078A00000F0302533F9FFFF318F00FC00D970253F +:1078B0000158202101E9682100045080ADAE000C80 +:1078C0000E00007C012A80213C088008240B000463 +:1078D000350500800E00007EA0AB000902001021DB +:1078E0008FBF00148FB0001003E0000827BD001800 +:1078F00090EC001190E300193C18080097183FCE57 +:10790000318200FF0002F882307000FF001FCE00BD +:1079100000103C000327302500D870253C0F4000A4 +:1079200001CF68253C198000AD2D0000373F0900CC +:1079300093EC001193EE0012372F010037260980D7 +:107940000005C0828DE4000C8CC5003431CD00FFF1 +:1079500001AB10210058182100A4F823000884006E +:1079600000033F0000F0302533F9FFFF318F00FCAA +:1079700000D970250158202101E9682100045080B8 +:10798000ADAE000C0E00007C012A80213C0880086E +:10799000240B0004350500800E00007EA0AB00091A +:1079A000020010218FBF00148FB0001003E0000808 +:1079B00027BD00180A0007C72408001227BDFFD002 +:1079C0003C038000AFB60028AFB50024AFB4002060 +:1079D000AFB10014AFBF002CAFB3001CAFB20018A2 +:1079E000AFB000103467010090E6000B309400FF48 +:1079F00030B500FF30C200300000B02110400099C7 +:107A000000008821346409809088000800082E0056 +:107A100000051E03046000C0240400048F86005487 +:107A20003C010800A0243FD83C0C8000AD800048F9 +:107A30003C048000348E010091CD000B31A5002064 +:107A400010A000073C078000349309809272000860 +:107A50000012860000107E0305E000C43C1F800871 +:107A600034EC0100918A000B34EB09809169000825 +:107A7000314400400004402B3123000800C8982303 +:107A80001460000224120003000090213C108000CA +:107A900036180A8036040900970E002C90830011D6 +:107AA0009089001293050018307F00FF312800FFF5 +:107AB000024810210002C880930D0018033F78216E +:107AC00001F1302130B100FF00D11821A78E0058FC +:107AD0003C010800A4263FCE3C010800A4233FD06F +:107AE00015A00002000000000000000D920B010B29 +:107AF0003065FFFF3C010800A4233FD2316A0040FB +:107B00003C010800A4203FC83C010800A4203FC459 +:107B10001140000224A4000A24A4000B3091FFFFAE +:107B20000E0001E7022020219206010B3C0C080008 +:107B3000958C3FD2004020210006698231A70001C8 +:107B40000E00060101872821004020210260282123 +:107B50000E00060C024030210E0007A1004020213B +:107B600016C00069004020219212010B32560040DD +:107B700012C000053C0500FF8C93000034AEFFFFEF +:107B8000026E8024AC9000000E0001FB0220202138 +:107B90003C0F080091EF3FD831F10003122000168E +:107BA0003C1380088F8200543C09800835280080EF +:107BB000245F0001AD1F003C3C0580088CB9000427 +:107BC00003E02021033FC0231B000002AF9F0054AD +:107BD0008CA400040E0006F8ACA400043C0780004E +:107BE0008CEB00743C04800834830080004B5021EF +:107BF000AC6A000C3C1380083670008002802021A3 +:107C000002A02821A200006B0E00075D3C1480003A +:107C10008F920054368C0140AD92000C8F86004844 +:107C20003C151000344D000624D60001AF960048E4 +:107C30008FBF002CA18600128FB60028AD8D0014D6 +:107C40008FB3001CAE9501788FB200188FB5002459 +:107C50008FB400208FB100148FB0001003E0000833 +:107C600027BD003034640980908F0008000F760033 +:107C7000000E6E0305A00033347F090093F8001B4B +:107C8000241900103C010800A0393FD8331300022A +:107C90001260FF678F8600548F8200601446FF6574 +:107CA0003C0480000E00007C000000003C048008C2 +:107CB0003485008090A8000924060016310300FFD7 +:107CC0001066000D0000000090AB00093C070800A2 +:107CD00090E73FD824090008316400FF34EA00012E +:107CE0003C010800A02A3FD81089002F240C000A6C +:107CF000108C00282402000C0E00007E0000000002 +:107D00000A0008608F8600540E0007B9024028213F +:107D10000A0008AE004020213C0B8008356A008034 +:107D20008D4600548CE9000C1120FF3DAF860054B5 +:107D3000240700143C010800A0273FD80A00085F70 +:107D40003C0C800090910008241200023C010800C5 +:107D5000A0323FD8323000201200000B2416000160 +:107D60008F8600540A0008602411000837F800804C +:107D70008F020038AFE200048FF90004AF19003C15 +:107D80000A00086C3C0780008F8600540A000860D7 +:107D900024110004A0A200090E00007E00000000D3 +:107DA0000A0008608F860054240200140A00093A71 +:107DB000A0A2000927BDFFE8AFB000103C10800072 +:107DC000AFBF001436020100904400090E00075DA9 +:107DD000240500013C0480089099000E3483008043 +:107DE000909F000F906F00269089000A33F800FFE3 +:107DF00000196E000018740031EC00FF01AE502530 +:107E0000000C5A00014B3825312800FF3603014091 +:107E10003445600000E830252402FF813C04100056 +:107E2000AC66000C8FBF0014AC650014A062001299 +:107E3000AE0401788FB0001003E0000827BD0018E1 +:107E400027BDFFE8308400FFAFBF00100E00075DC4 +:107E500030A500FF3C05800034A4014034470040B9 +:107E60002406FF92AC870014A08600128F83005472 +:107E70008FBF00103C02100027BD0018AC83000C1F +:107E800003E00008ACA2017827BDFFD8AFB0001016 +:107E9000308400FF30B000FF3C058000AFB100141B +:107EA000AFBF0020AFB3001CAFB20018000410C277 +:107EB00034A60100320300023051000114600007B3 +:107EC00090D200093C098008353300809268000593 +:107ED0003107000810E0000C308A00100240202119 +:107EE0000E00078302202821240200018FBF0020FA +:107EF0008FB3001C8FB200188FB100148FB0001028 +:107F000003E0000827BD00281540003434A50A000E +:107F10008CB800248CAF0008130F004B00003821F0 +:107F20003C0D800835B30080926C00682406000286 +:107F3000318B00FF116600843C06800034C20100D2 +:107F40009263004C90590009307F00FF53F9000400 +:107F50003213007C10E00069000000003213007C46 +:107F60005660005C0240202116200009320D0001FD +:107F70003C0C800035840100358B0A008D6500249F +:107F80008C86000414A6FFD900001021320D0001D8 +:107F900011A0000E024020213C1880003710010083 +:107FA0008E0F000C8F8E005011EE000800000000B4 +:107FB0000E000843022028218E19000C3C1F800867 +:107FC00037F00080AE190050024020210E000771EA +:107FD000022028210A00098F240200013C05080024 +:107FE0008CA5006424A400013C010800AC240064BA +:107FF0001600000D00000000022028210E0007716D +:1080000002402021926E0068240C000231CD00FF56 +:1080100011AC0022024020210E00094100000000A6 +:108020000A00098F240200010E00007024040001E0 +:10803000926B0025020B30250E00007EA266002503 +:108040000A0009D3022028218E6200188CDF000468 +:108050008CB9002400021E0217F9FFB13065007FC1 +:108060009268004C264400013093007F1265004066 +:10807000310300FF1464FFAB3C0D8008264700016C +:1080800030F1007F30E200FF1225000B24070001D1 +:10809000004090210A00099C2411000124050004DD +:1080A0000E000732240600010E0009410000000006 +:1080B0000A00098F240200012405FF8002452024C4 +:1080C00000859026324200FF004090210A00099C62 +:1080D000241100010E00084302202821320700303D +:1080E00010E0FFA132100082024020210E00078321 +:1080F000022028210A00098F240200018E6900183D +:108100000240202102202821012640250E0009647A +:10811000AE6800189264004C240500032406000198 +:108120000E000732308400FF0E00007024040001AE +:1081300092710025021150250E00007EA26A0025D2 +:108140000A00098F240200018E6F00183C1880007D +:108150000240202101F87025022028210E0007711D +:10816000AE6E00189264004C0A000A1B240500043D +:10817000324A0080394900801469FF6A3C0D80084A +:108180000A0009F42647000127BDFFC0AFB0001860 +:108190003C108000AFBF0038AFB70034AFB600303E +:1081A000AFB5002CAFB40028AFB30024AFB20020AD +:1081B0000E0005BEAFB1001C360201009045000B59 +:1081C0000E00097690440008144000E78FBF003885 +:1081D0003C08800835070080A0E0006B3606098067 +:1081E00090C50000240300503C17080026F73F907C +:1081F00030A400FF3C13080026733FA01083000347 +:108200003C1080000000B82100009821241F0010BD +:108210003611010036120A00361509808E580024E6 +:108220008E3400048EAF00208F8C00543C01080077 +:10823000A03F3FD836190A80972B002C8EF60000FD +:10824000932A00180298702301EC68233C0108006F +:10825000AC2E3FB43C010800AC2D3FB83C010800F7 +:10826000AC2C3FDCA78B005802C0F809315400FF4A +:1082700030490002152000E930420001504000C49E +:108280009227000992A90008312800081500000271 +:10829000241500030000A8213C0A80003543090092 +:1082A00035440A008C8D00249072001190700012E9 +:1082B000907F0011325900FF321100FF02B11021EE +:1082C0000002C08033EF00FF0319B021028F70213C +:1082D00002D4602125CB00103C010800A4363FCE1B +:1082E0003C010800AC2D3FE03C010800A42C3FD02D +:1082F0003C010800A42B3FCC3556010035540980C1 +:1083000035510E008F8700548F89005C8E850020C8 +:1083100024080006012730233C010800AC283FD484 +:1083200000A7282304C000B50000902104A000B3DA +:1083300000C5502B114000B5000000003C010800B2 +:10834000AC263FB88E6200000040F8090000000033 +:108350003046000214C0007400408021304B000100 +:10836000556000118E6200043C0D08008DAD3FBCCD +:108370003C0EC0003C04800001AE6025AE2C000025 +:108380008C980000330F000811E0FFFD0000000092 +:10839000963F000824120001A79F00408E39000478 +:1083A000AF9900388E6200040040F8090000000018 +:1083B0000202802532030002146000B300000000B6 +:1083C0003C09080095293FC43C06080094C63FD0EC +:1083D0003C0A0800954A3FC63C0708008CE73FBCB2 +:1083E000012670213C0308008C633FE03C08080034 +:1083F00095083FDA01CA20218ED9000C00E9282116 +:10840000249F000200A878210067C02133E4FFFF09 +:10841000AF9900503C010800AC383FE03C01080037 +:10842000A42F3FC83C010800A42E3FD20E0001E754 +:10843000000000008F8D0048004020213C01080012 +:10844000A02D3FD98E62000825AC0001AF8C0048FA +:108450000040F809000000008F85005402A0302180 +:108460000E00060C004020210E0007A10040202134 +:108470008E6B000C0160F809004020213C0A0800C6 +:10848000954A3FD23C06080094C63FC601464821A3 +:10849000252800020E0001FB3104FFFF3C05080007 +:1084A0008CA53FB43C0708008CE73FBC00A7202305 +:1084B0003C010800AC243FB414800006000000001A +:1084C0003C0208008C423FD4344B00403C01080081 +:1084D000AC2B3FD4124000438F8E00448E2D0010F1 +:1084E0008F920044AE4D00208E2C0018AE4C00241C +:1084F0003C04080094843FC80E0006FA0000000007 +:108500008F9F00548E6700103C010800AC3F3FDC99 +:1085100000E0F809000000003C1908008F393FB462 +:108520001720FF798F870054979300583C11800ED5 +:10853000321601000E000729A633002C16C0004594 +:10854000320300105460004C8EE5000432080040F5 +:108550005500001D8EF000088EE4000C0080F80924 +:10856000000000008FBF00388FB700348FB6003096 +:108570008FB5002C8FB400288FB300248FB2002059 +:108580008FB1001C8FB0001803E0000827BD004029 +:108590008F86003C36110E0000072E0000A6202515 +:1085A000AE0400808E4300208E500024AFA3001044 +:1085B000AE2300148FB20010AE320010AE30001C9B +:1085C0000A000A75AE3000180200F8090000000029 +:1085D0008EE4000C0080F809000000000A000B2E59 +:1085E0008FBF003824180001240F0001A5C000200F +:1085F000A5D800220A000B10ADCF00243C010800D2 +:10860000AC203FB80A000AA68E6200003C010800B8 +:10861000AC253FB80A000AA68E6200009224000929 +:108620000E000771000028218FBF00388FB700347B +:108630008FB600308FB5002C8FB400288FB3002484 +:108640008FB200208FB1001C8FB0001803E000082B +:1086500027BD00403C1480009295010900002821AC +:108660000E00084332A400FF320300105060FFB830 +:10867000320800408EE5000400A0F8090000000068 +:108680000A000B28320800405240FFA89793005878 +:108690008E3400148F930044AE7400208E35001C7D +:1086A000AE7500240A000B1F979300588F820014A8 +:1086B0000004218003E00008008210213C078008AC +:1086C00034E200809043006900804021106000097E +:1086D0003C0401003C0708008CE73FDC8F8300303E +:1086E00000E32023048000089389001C14E30003A6 +:1086F0000100202103E00008008010213C0401005B +:1087000003E00008008010211120000B00673823CF +:108710003C0D800035AC0980918B007C316A0002F1 +:10872000114000202409003400E9702B15C0FFF12E +:108730000100202100E938232403FFFC00A3C82402 +:1087400000E3C02400F9782B15E0FFEA030820219C +:1087500030C400030004102314C000143049000387 +:108760000000302100A9782101E6702100EE682B7D +:1087700011A0FFE03C0401002D3800010006C82BC9 +:10878000010548210319382414E0FFDA2524FFFCF1 +:108790002402FFFC00A218240068202103E0000846 +:1087A000008010210A000B9E240900303C0C800040 +:1087B0003586098090CB007C316A00041540FFE9C2 +:1087C000240600040A000BAD000030213C03080021 +:1087D0008C63005C8F82001827BDFFE0AFBF0018DC +:1087E000AFB1001410620005AFB00010000329C043 +:1087F00024A40280AF840014AF8300183C108000D2 +:1088000036020A0094450032361101000E000B7F3B +:1088100030A43FFF8E240000241FFF803C11008005 +:108820000082C021031F60243309007F000CC9406F +:1088300003294025330E0078362F00033C0D10002D +:10884000010D502501CF5825AE0C002836080980AF +:10885000AE0C080CAE0B082CAE0A08309103006970 +:108860003C06800C0126382110600006AF870034DA +:108870008D09003C8D03006C0123382318E0008231 +:10888000000000003C0B8008356A00803C1080002E +:10889000A1400069360609808CC200383C06800081 +:1088A00034C50A0090A8003C310C00201180001A49 +:1088B000AF820030240D00013C0E800035D10A004B +:1088C000A38D001CAF8000248E2400248F850024FB +:1088D000240D0008AF800020AF8000283C01080074 +:1088E000A42D3FC63C010800A4203FDA0E000B83F4 +:1088F000000030219228003C8FBF00188FB1001477 +:108900008FB0001000086142AF82002C27BD00200C +:1089100003E000083182000190B80032240E00010B +:10892000330F00FF000F2182108E00412419000236 +:108930001099006434C40AC03C03800034640A0007 +:108940008C8F002415E0001E34660900909F0030D3 +:108950002418000533F9003F1338004E24030001AA +:108960008F860020A383001CAF860028AF860024DA +:108970003C0E800035D10A008E2400248F8500240F +:10898000240D00083C010800A42D3FC63C0108004E +:10899000A4203FDA0E000B83000000009228003C68 +:1089A0008FBF00188FB100148FB000100008614213 +:1089B000AF82002C27BD002003E0000831820001B7 +:1089C0008C8A00088C8B00248CD000643C0E8000C4 +:1089D00035D10A00014B2823AF900024A380001C4E +:1089E000AF8500288E2400248F8600208F850024E8 +:1089F000240D00083C010800A42D3FC63C010800DE +:108A0000A4203FDA0E000B83000000009228003CF7 +:108A10008FBF00188FB100148FB0001000086142A2 +:108A2000AF82002C27BD002003E000083182000146 +:108A300090A200303051003F5224002834C50AC0B3 +:108A40008CB000241600002234CB09008CA600480C +:108A50003C0A7FFF3545FFFF00C510243C0E800017 +:108A6000AF82002035C509008F8800208CAD0060E2 +:108A7000010D602B15800002010020218CA40060F4 +:108A80000A000C22AF8400208D02006C0A000BFC4F +:108A90003C0680008C8200488F8600203C097FFFC6 +:108AA0003527FFFF004788243C0480082403000189 +:108AB000AF910028AC80006CA383001C0A000C302E +:108AC000AF8600248C9F00140A000C22AF9F002068 +:108AD0008D6200680A000C6C3C0E800034C4098072 +:108AE0008C8900708CA300140123382B10E0000443 +:108AF000000000008C8200700A000C6C3C0E8000AC +:108B00008CA200140A000C6C3C0E80008F8500249F +:108B100027BDFFE0AFBF0018AFB1001414A00008DC +:108B2000AFB000103C04800034870A0090E60030AB +:108B30002402000530C3003F106200B934840900EC +:108B40008F91002000A080213C048000348E0A0018 +:108B50008DCD00043C0608008CC63FB831A73FFF0E +:108B600000E6602B5580000100E03021938F001C4F +:108B700011E0007800D0282B349F098093F9007C05 +:108B800033380002130000792403003400C3102B93 +:108B9000144000D90000000000C3302300D0282B6F +:108BA0003C010800A4233FC414A0006E0200182159 +:108BB0003C0408008C843FB40064402B5500000145 +:108BC000006020213C05800034A90A00912A003C65 +:108BD0003C010800AC243FBC31430020146000037A +:108BE0000000482134AB0E008D6900188F88002CDE +:108BF0000128202B1080005F000000003C050800C9 +:108C00008CA53FBC00A96821010D602B1180005C80 +:108C100000B0702B0109382300E028213C01080036 +:108C2000AC273FBC12000003240AFFFC10B0008DEB +:108C30003224000300AA18243C010800A4203FDAD3 +:108C40003C010800AC233FBC006028218F84002435 +:108C5000120400063C0B80088D6C006C0200202181 +:108C6000AF91002025900001AD70006C8F8D002821 +:108C700000858823AF91002401A52023AF8400281C +:108C80001220000224070018240700103C18800856 +:108C90003706008090CF00683C010800A0273FD82D +:108CA0002407000131EE00FF11C70047000000005B +:108CB00014800018000028213C06800034D109806F +:108CC00034CD010091A600098E2C001824C40001A7 +:108CD000000C86023205007F308B007F1165007F1B +:108CE0002407FF803C19800837290080A124004C0C +:108CF0003C0808008D083FD4241800023C010800FD +:108D0000A0384019350F00083C010800AC2F3FD4B3 +:108D1000240500103C02800034440A009083003C8B +:108D2000307F002013E0000500A02021240A00016C +:108D30003C010800AC2A3FBC34A400018FBF0018DE +:108D40008FB100148FB000100080102103E00008E4 +:108D500027BD00203C010800A4203FC410A0FF94C0 +:108D6000020018210A000CC000C018210A000CB72C +:108D7000240300303C0508008CA53FBC00B0702BDC +:108D800011C0FFA8000000003C19080097393FC43B +:108D90000325C0210307782B11E000072CAA00044B +:108DA0003C0360008C625404305F003F17E0FFE337 +:108DB000240400422CAA00041140FF9A240400421B +:108DC0000A000D248FBF00181528FFB9000000000D +:108DD0008CCA00183C1F800024020002015F182585 +:108DE000ACC3001837F90A00A0C200689329003C00 +:108DF0002404000400A01021312800203C010800B8 +:108E0000A0244019110000022405001024020001D2 +:108E10003C010800AC223FB40A000D1A3C0280005D +:108E20008F8800288C8900600109282B14A000027B +:108E3000010088218C9100603C048000348B0E007E +:108E40008D640018240A000102202821022030210C +:108E5000A38A001C0E000B83022080210A000CA6AE +:108E6000AF82002C00045823122000073164000355 +:108E70003C0E800035C7098090ED007C31AC0004C9 +:108E800015800019248F00043C010800A4243FDA57 +:108E90003C1F080097FF3FDA03E5C82100D9C02B2B +:108EA0001300FF6B8F8400242CA6000514C0FFA3C1 +:108EB0002404004230A200031440000200A2182340 +:108EC00024A3FFFC3C010800AC233FBC3C0108008C +:108ED000A4203FDA0A000CE70060282100C77024B4 +:108EE0000A000D0D01C720263C010800A42F3FDA1F +:108EF0000A000D78000000003C010800AC203FBCD7 +:108F00000A000D23240400428F8300283C058000C2 +:108F100034AA0A00146000060000102191470030B6 +:108F20002406000530E400FF108600030000000066 +:108F300003E0000800000000914B0048316900FF89 +:108F4000000941C21500FFFA3C0680083C040800F5 +:108F500094843FC43C0308008C633FDC3C19080048 +:108F60008F393FBC3C0F080095EF3FDA0064C02109 +:108F70008CCD00040319702101CF602134AB0E00A9 +:108F8000018D282318A0001D00000000914F004C07 +:108F90008F8C0034956D001031EE00FF8D89000438 +:108FA00001AE30238D8A000030CEFFFF000E290075 +:108FB0000125C82100003821014720210325182B55 +:108FC0000083C021AD990004AD980000918F000A84 +:108FD00001CF6821A18D000A956500128F8A0034A7 +:108FE000A5450008954B003825690001A5490038C2 +:108FF0009148000D35070008A147000D03E0000867 +:109000000000000027BDFFD8AFB000189388001CF7 +:109010008FB000143C0A80003C197FFF8F8700242A +:109020003738FFFFAFBF0020AFB1001C355F0A002B +:109030000218182493EB003C00087FC03C02BFFFDD +:10904000006F60252CF000013449FFFF3C1F080031 +:109050008FFF3FDC8F9900303C18080097183FD2F3 +:1090600001897824001047803C07EFFF3C05F0FFA2 +:1090700001E818253C1180003169002034E2FFFF2F +:1090800034ADFFFF362E098027A50010240600020C +:1090900003F96023270B0002354A0E0000621824F2 +:1090A0000080802115200002000040218D48001C16 +:1090B000A7AB0012058000392407000030E800FF4C +:1090C00000083F00006758253C028008AFAB001441 +:1090D000344F008091EA00683C08080091083FD9AD +:1090E0003C09DFFF352CFFFF000AF82B3C0208008B +:1090F00094423FCCA3A80011016CC024001FCF40B4 +:10910000031918258FA70010AFA300143C0C08000A +:10911000918C3FDBA7A200168FAB001400ED482412 +:109120003C0F01003C0A0FFF012FC82531980003B6 +:10913000355FFFFF016D40243C027000033F38247F +:1091400000181E0000E2482501037825AFAF001487 +:10915000AFA9001091CC007C0E000092A3AC0015CA +:10916000362D0A0091A6003C30C400201080000675 +:10917000260200083C11080096313FC8262EFFFF4A +:109180003C010800A42E3FC88FBF00208FB1001CF7 +:109190008FB0001803E0000827BD00288F8B002C3B +:1091A000010B502B5540FFC5240700010A000E0497 +:1091B00030E800FF9383001C3C02800027BDFFD8ED +:1091C00034480A0000805021AFBF002034460AC056 +:1091D000010028211060000E3444098091070030FE +:1091E000240B00058F89002030EC003F118B000B11 +:1091F00000003821AFA900103C0B80088D69006C7D +:10920000AFAA00180E00015AAFA90014A380001CD9 +:109210008FBF002003E0000827BD00288D1F0048F5 +:109220003C1808008F183FBC8F9900283C027FFF34 +:109230008D0800443443FFFFAFA900103C0B8008A9 +:109240008D69006C03E370240319782101CF682332 +:1092500001A83821AFAA00180E00015AAFA90014C6 +:109260000A000E58A380001C3C05800034A60A00AA +:1092700090C7003C3C06080094C63FDA3C02080058 +:109280008C423FD430E30020000624001060001E12 +:10929000004438253C0880083505008090A300680C +:1092A00000004821240800010000282124040001B6 +:1092B0003C0680008CCD017805A0FFFE34CF014034 +:1092C000ADE800083C0208008C423FDCA5E5000444 +:1092D000A5E40006ADE2000C3C04080090843FD9F0 +:1092E0003C03800834790080A1E40012ADE700144B +:1092F000A5E900189338004C3C0E1000A1F8002D91 +:1093000003E00008ACCE017834A90E008D28001CC3 +:109310003C0C08008D8C3FBC952B0016952A001440 +:10932000018648213164FFFF0A000E803145FFFFAE +:109330003C04800034830A009065003C30A2002089 +:109340001040001934870E00000040210000382131 +:10935000000020213C0680008CC901780520FFFE1A +:1093600034CA014034CF010091EB0009AD48000838 +:109370003C0E08008DCE3FDC240DFF91240C0040F4 +:109380003C081000A5440004A5470006AD4E000CA3 +:10939000A14D0012AD4C0014A5400018A14B002DAA +:1093A00003E00008ACC801788CE8001894E60012CD +:1093B00094E4001030C7FFFF0A000EA93084FFFFBD +:1093C0003C04800034830A009065003C30A20020F9 +:1093D0001040002727BDFFF82409000100003821B4 +:1093E000240800013C0680008CCA01780540FFFE7D +:1093F0003C0280FF34C40100908D00093C0C080041 +:10940000918C4019A3AD00038FAB00003185007F24 +:109410003459FFFF01665025AFAA00009083000A6F +:10942000A3A0000200057E00A3A300018FB80000E6 +:1094300034CB0140240C30000319702401CF68257F +:10944000AD6D000C27BD0008AD6C0014A5600018C0 +:10945000AD690008A56700042409FF80A56800061F +:109460003C081000A169001203E00008ACC80178B4 +:1094700034870E008CE9001894E6001294E4001082 +:1094800030C8FFFF0A000ECD3087FFFF27BDFFE089 +:10949000AFB100143C118000AFB00010AFBF001896 +:1094A00036380A00970F0032363001000E000B7F6D +:1094B00031E43FFF8E0E0000240DFF803C042000AD +:1094C00001C25821016D6024000C4940316A007FBF +:1094D000012A4025010438253C048008AE270830C5 +:1094E0003486008090C500682403000230A200FF8B +:1094F000104300048F9F00208F990024AC9F0068C8 +:10950000AC9900648FBF00188FB100148FB00010A9 +:1095100003E0000827BD00203C0A0800254A3A80E5 +:109520003C09080025293B103C08080025082F1C91 +:109530003C07080024E73BDC3C06080024C639044D +:109540003C05080024A536583C0408002484325CFD +:109550003C030800246339B83C0208002442375415 +:109560003C010800AC2A3F983C010800AC293F941C +:109570003C010800AC283F903C010800AC273F9C10 +:109580003C010800AC263FAC3C010800AC253FA4E0 +:109590003C010800AC243FA03C010800AC233FB0D4 +:1095A0003C010800AC223FA803E0000800000000D6 +:1095B00080000940800009008008010080080080C8 +:1095C00080080000800E00008008008080080000F5 +:1095D00080000A8080000A00800009808000090065 +:00000001FF --- linux-4.8.0.orig/firmware/bnx2/bnx2-rv2p-09-6.0.17.fw.ihex +++ linux-4.8.0/firmware/bnx2/bnx2-rv2p-09-6.0.17.fw.ihex @@ -3,8 +3,7 @@ :1000200000000000000000000000000000000000D0 :1000300000000E88000009500000000500000000CC :1000400000000000000000000000000000000000B0 -:080050000000000000000000A8 -:0800580000000010B180000659 +:10005000000000000000000000000010B180000659 :100060000000001F05060011000000080500FFFF4A :10007000000000180002000000000008050000FF5A :10008000000000180002000000000008AC000001A1 @@ -382,11 +381,3 @@ :1017C0000000000C2980000000000010001F000035 :0817D000000000188000FE3546 :00000001FF -/* - * This file contains firmware data derived from proprietary unpublished - * source code, Copyright (c) 2004 - 2009 Broadcom Corporation. - * - * Permission is hereby granted for the distribution of this firmware data - * in hexadecimal or equivalent format, provided this copyright notice is - * accompanying it. - */ --- linux-4.8.0.orig/firmware/bnx2/bnx2-rv2p-09ax-6.0.17.fw.ihex +++ linux-4.8.0/firmware/bnx2/bnx2-rv2p-09ax-6.0.17.fw.ihex @@ -3,8 +3,7 @@ :1000200000000000000000000000000000000000D0 :1000300000001010000009C80000000500000000CA :1000400000000000000000000000000000000000B0 -:080050000000000000000000A8 -:0800580000000010B180000659 +:10005000000000000000000000000010B180000659 :100060000000001F03060011000000080500FFFF4C :10007000000000180002000000000008050000FF5A :10008000000000180002000000000008AC000001A1 @@ -155,8 +154,7 @@ :100990000000001091D40000000000080500005580 :1009A000000000188000FF360000000C29800001C4 :1009B0000000000C1F800001000000082A00000752 -:0809C000000000188000FEDEBB -:0809C80000000010B1800004E2 +:1009C000000000188000FEDE00000010B18000046E :1009D0000000001F0306001100000008050000FFD2 :1009E0000000001800020000000000002A000000C3 :1009F00000000010B1D400000000001091DE0000E3 @@ -415,11 +413,3 @@ :1019C00000000010001F00000000000C6BD7000199 :0819D000000000188000FE0475 :00000001FF -/* - * This file contains firmware data derived from proprietary unpublished - * source code, Copyright (c) 2004 - 2009 Broadcom Corporation. - * - * Permission is hereby granted for the distribution of this firmware data - * in hexadecimal or equivalent format, provided this copyright notice is - * accompanying it. - */ --- linux-4.8.0.orig/firmware/bnx2x/bnx2x-e1-7.13.1.0.fw.ihex +++ linux-4.8.0/firmware/bnx2x/bnx2x-e1-7.13.1.0.fw.ihex @@ -0,0 +1,10634 @@ +:100000000000165800000068000005D8000016C85F +:10001000000031D400001CA80000006C00004E80DD +:10002000000076DC00004EF00000009C0000C5D00F +:100030000000C94C0000C6700000008400018FC0A1 +:1000400000003C1400019048000000880001CC60D2 +:100050000000B9600001CCF00000120C00028658CC +:100060000000000400029868020600DC00000001A5 +:100070000306100002000000010600D80000000086 +:100080000306020000030200020600DC000000007C +:1000900002060068000000B80206007800000114A3 +:1000A000010600B800000000010600C800000000C2 +:1000B0000206006C000000B80206007C000001147B +:1000C000010600BC00000000010600CC000000009A +:1000D000020D004400000032030D004C0004020336 +:1000E000040D005C00000004030D008C00110207E9 +:1000F000020D015C00000001030D01640002021802 +:10010000020D020400000001030D020C0003021A9C +:10011000030D02200002021D040D028000000012E7 +:10012000030D03000018021F040D03600000000C03 +:10013000040D400000000A00030D0004000F023708 +:10014000020D01140000000D020D01180000002D29 +:100150000310100000030246021010100000026499 +:10016000071011000010024908101140000000089B +:100170000710116000100259081011A000000018AB +:1001800007101800020002690210101000000000A1 +:1001900004104C0000000100021040280000001074 +:1001A000031040400002046902104058002800007B +:1001B000021040840084924A02104058000000005F +:1001C000030C20080003046B030C201C0004046EC5 +:1001D000030C203800110472040C207C0000004F36 +:1001E000030C21B800110483040C21FC0000000F53 +:1001F000030C223800040494010C22480000000083 +:10020000010C224C00000000010C225000000000F4 +:10021000010C225400000000010C225800000000D4 +:10022000010C225C00000000010C226000000000B4 +:10023000010C226400000000010C22680000000094 +:10024000010C226C00000000010C22700000000074 +:10025000010C227400000000010C22780000000054 +:10026000010C227C00000000020C24BC00000001F4 +:100270000A00000100000001020C2000000003E859 +:100280000A00000100000002020C20000000000A29 +:100290000A00000100000004020C20000000000120 +:1002A0000520040000840000062007800010049848 +:1002B000042200000000160004228000000000401C +:1002C00004223BD000000008042248000000000681 +:1002D000032248180004049A042248280000000C55 +:1002E000032248580004049E042248680000000CC1 +:1002F00003224898000404A2042248A80000000C2D +:10030000032248D8000404A6042248E80000000C98 +:1003100003224918000404AA042249280000000C02 +:1003200003224958000404AE042249680000000C6E +:1003300003224998000404B2042249A80000000CDA +:10034000032249D8000404B6042249E80000000C46 +:1003500003224A18000404BA04224A280000000CB0 +:1003600003224A58000404BE04224A680000000C1C +:1003700003224A98000404C204224AA80000000C88 +:1003800003224AD8000404C604224AE80000000CF4 +:1003900003224B18000404CA04224B280000000C5E +:1003A00003224B58000404CE04224B680000000CCA +:1003B00003224B98000404D204224BA80000000C36 +:1003C00003224BD8000404D604224BE80000000CA2 +:1003D00003224C18000404DA04224C280000000C0C +:1003E00003224C58000404DE04224C680000000C78 +:1003F00003224C98000404E204224CA80000000CE4 +:1004000003224CD8000404E604224CE80000000C4F +:1004100003224D18000404EA04224D280000000CB9 +:1004200003224D58000404EE04224D680000000C25 +:1004300003224D98000404F204224DA80000000C91 +:1004400003224DD8000404F604224DE80000000CFD +:1004500003224E18000404FA04224E280000000C67 +:1004600003224E58000404FE04224E680000000CD3 +:1004700003224E980004050204224EA80000000C3E +:1004800003224ED80004050604224EE80000000CAA +:1004900003224F180004050A04224F280000000C14 +:1004A00003224F580004050E04224F680000000C80 +:1004B00003224F980004051204224FA80000000CEC +:1004C00003224FD80004051604224FE8000000065E +:1004D000032251980004051A022380000000001036 +:1004E00002238040000000120223808000000030C0 +:1004F000022380C00000000E022383800007A12099 +:10050000022383C0000001F402238BC0000000011D +:100510000A00000200000001022383000007A1205E +:1005200002238340000001F40A00000200000002E0 +:10053000022383000000138802238340000000058B +:100540000A000002000000040223830000000138BA +:1005500002238340000000000524000036C3000091 +:1005600005248000054E0DB1062489806D36051ED8 +:100570000120000000000000012000040000000035 +:1005800001200008000000000120000C0000000015 +:1005900001200010000000000120001400000000F5 +:1005A00003200020001A0520032000A40002053AC1 +:1005B000022002240000000002200234000000009B +:1005C0000220024C00000000022002E40000FFFFB5 +:1005D000082020000000080004221400000000028F +:1005E00004221490000000300422390000000010A2 +:1005F0000422510800000002042251A80000000655 +:1006000004221408000000020422155000000030EB +:1006100004223940000000100422511000000002A2 +:10062000042251C00000000604102400000000E075 +:100630000310201C0002053C021020C00000000135 +:10064000031020040002053E02170008000000020B +:100650000217002C000000030317003800020540B9 +:100660000317004400060542031700600005054813 +:10067000031700780002054D021700040000000F68 +:100680000410806800000004021080000000108048 +:1006900004108040000000020410802800000002C6 +:1006A0000210803800000010031080400002054F47 +:1006B00002108050000000000210810000000000C5 +:1006C000041081200000000202108008000002B522 +:1006D0000210801000000000021081080001FFFFDE +:1006E000041082000000004A041081400000000253 +:1006F0000210800000001A80041090000000002406 +:10070000041091200000004A041093700000004A79 +:10071000041095C00000004A021080040000108000 +:100720000410804800000002041080300000000225 +:100730000210803C000000100310804800020551A8 +:10074000021080540000000002108104000000002C +:1007500004108128000000020210800C000002B585 +:1007600002108014000000000210810C0001FFFF45 +:10077000041084000000004A0410814800000002B8 +:100780000210800400001A800410909000000024E1 +:10079000041092480000004A041094980000004A97 +:1007A000041096E80000004A0200A468000AFFDC7A +:1007B0000200A280000000010300A294000405537F +:1007C0000200A4FCFF000000030100B40002055772 +:1007D000020100DC000000010301010000020559D4 +:1007E0000201007C003000000201008400000028AB +:1007F0000201008C00000000020101300000000432 +:10080000040101380000001102010328000000006B +:100810000201055400000030020100C40000000184 +:10082000020100CC00000001020100F800000001FC +:10083000020100F000000001020100800030000011 +:100840000201008800000028020100900000000062 +:1008500002010134000000040401017C00000011C9 +:100860000201032C000000000201056400000030BA +:10087000020100C800000001020100D000000001D8 +:10088000020100FC00000001020100F40000000170 +:1008900002140000000000010214000C000000011E +:1008A000031400400002055B0214000C000000006D +:1008B00002140000000000000214006C00000000A0 +:1008C00002140004000000010214003000000001C6 +:1008D00002140004000000000214005C000000008C +:1008E000021400080000000102140034000000019E +:1008F0000214000800000000021400600000000064 +:10090000030400040012055D030400540003056F96 +:100910000204007000000004030400780004057263 +:1009200004040088000000050304009C0003057611 +:10093000040400A800000004030400B800050579C1 +:10094000040400CC00000004030400DC0004057E65 +:10095000040400EC00000004010401240000000075 +:1009600001040128000000000104012C0000000027 +:100970000104013000000000020401340000000FF7 +:1009800003120490002205820212052000000002DA +:1009900002120388000000640212039000000008A5 +:1009A0000312039C000305A4021203BC0000000410 +:1009B000021203C400000004021203D00000000071 +:1009C000021203DC000000000212036C00000001B0 +:1009D000021203680000003F031201BC003C05A79F +:1009E000031202B0000205E303120324000205E52E +:1009F000021201B00000000107103800000505E7F1 +:100A000007103C00000505EC07103C20000505F12F +:100A100003168030000805F602168054000000021C +:100A200003168060000505FE0416807400000007B0 +:100A300003168090000206030316809C000506053D +:100A4000041680B000000007031680CC0008060AD8 +:100A5000021680F000000007041680F40000000C6D +:100A60000316812400040612041681340000000CD1 +:100A700003168164003B0616041682500000000431 +:100A80000316826000020651041682680000000806 +:100A90000316828800080653041682A80000000A84 +:100AA00002168804000000040316880C0010065B80 +:100AB000021680EC000000FF030404080014066B1B +:100AC000030500440002067F030500500004068170 +:100AD0000405006000000004030500900013068573 +:100AE00002050114000000010305011C0002069824 +:100AF00002050204000000010305020C0002069A30 +:100B00000305021C0003069C040502400000000AC5 +:100B1000030502800020069F0405400000000D0030 +:100B200003050004001006BF020500E00000000EEF +:100B3000020500E40000002E04164024000000021C +:100B400003164030000306CF021640440000002088 +:100B5000021640700000001C02164208000000014E +:100B6000021642100000000102164220000000019F +:100B70000216422800000001021642300000000167 +:100B80000216423800000001021642600000000117 +:100B90000A000001000000010216401C0003D09072 +:100BA0000A000001000000020216401C000009C4F7 +:100BB0000A000001000000040216401C0000009C16 +:100BC0000216400000000001021640D8000000019B +:100BD00003164008000306D202164240000000003F +:100BE0000216424800000000081642700000000291 +:100BF0000216425000000000021642580000000099 +:100C0000081642800000000203042008000406D5F4 +:100C10000304201C000406D90404203800000080CE +:100C200003042238000406DD01042248000000000D +:100C30000104224C000000000104225000000000CA +:100C400001042254000000000104225800000000AA +:100C50000104225C0000000001042260000000008A +:100C6000010422640000000001042268000000006A +:100C70000104226C0000000001042270000000004A +:100C8000010422740000000001042278000000002A +:100C90000104227C00000000020424BC00000001CA +:100CA0000A0000010000000102042000000003E827 +:100CB0000A00000100000002020420000000000AF7 +:100CC0000A000001000000040204200000000001EE +:100CD00005180400006A000006180760001406E109 +:100CE000041A000000001600041A800000000040F2 +:100CF000031A08B0000206E3031A19C8000206E549 +:100D0000031A2FC0000406E7041A2FD000000006C3 +:100D1000031A2FE8000206EB031A300003F906ED70 +:100D2000041A3FE400000007031A487000040AE6B2 +:100D3000021B800000000034021B804000000018ED +:100D4000021B80800000000C021B80C000000020FD +:100D5000021B83800007A120021B83C0000001F456 +:100D6000021B8BC0000000010A000002000000010D +:100D7000021B83000007A120021B8340000001F436 +:100D80000A00000200000002021B8300000013881A +:100D9000021B8340000000050A000002000000045E +:100DA000021B830000000138021B8340000000008A +:100DB000051C000031790000051C800035860C5FA1 +:100DC000051D00000FD719C1061D21805BD00AEA5E +:100DD00001180000000000000118000400000000DD +:100DE00001180008000000000118000C00000000BD +:100DF000011800100000000001180014000000009D +:100E000003180020001A0AEC031800A400020B06C5 +:100E10000218022400000000021802340000000042 +:100E20000218024C00000000021802E4000000FF5B +:100E30000818100000000400041A08000000000256 +:100E4000041A082000000012041A09C0000000481B +:100E5000041A250000000010041A2580000000126A +:100E6000041A261000000012031A2FB000020B080B +:100E7000041A400000000006041A4030000000027E +:100E8000041A482000000002031A4C5000020B0A0A +:100E9000041A081000000002041A0868000000127A +:100EA000041A0AE000000048041A2540000000105F +:100EB000041A25C800000012041A26580000001267 +:100EC000031A2FB800020B0C041A40180000000689 +:100ED000041A403800000002041A482800000002EA +:100EE000031A4C5800020B0E020E004C0000003298 +:100EF000030E005400040B10040E006400000004F4 +:100F0000030E009400130B14020E014400000001B4 +:100F1000030E014C00020B27020E02040000000128 +:100F2000030E020C00020B29030E021C00040B2B03 +:100F3000030E0280001B0B2F040E02EC00000017B2 +:100F4000040E200000000800030E000400110B4AEC +:100F5000020E01100000000F020E01140000002F0D +:100F6000020C100000000028030C400800040B5B7A +:100F7000030C401C00040B5F030C403800020B63A1 +:100F8000040C40400000005E020C41B8000000016B +:100F9000040C41BC0000001F030C423800040B6528 +:100FA000010C424800000000010C424C000000000F +:100FB000010C425000000000010C425400000000EF +:100FC000010C425800000000010C425C00000000CF +:100FD000010C426000000000010C426400000000AF +:100FE000010C426800000000010C426C000000008F +:100FF000010C427000000000010C4274000000006F +:10100000010C427800000000010C427C000000004E +:10101000010C428000000000020C44C000000001EE +:101020000A00000100000001020C4000000003E87B +:101030000A00000100000002020C40000000000A4B +:101040000A00000100000004020C40000000000142 +:1010500005300400009B00000630076800130B6990 +:10106000043200000000160004328000000000403E +:101070000332183000020B6B03322E7000040B6D2C +:101080000432508000000008033250A000020B71AF +:10109000023380000000001A023380400000004E3E +:1010A0000233808000000010023380C00000002066 +:1010B000023383800007A120023383C0000001F4C3 +:1010C00002338BC0000000010A0000020000000192 +:1010D000023383000007A12002338340000001F4A3 +:1010E0000A0000020000000202338300000013889F +:1010F00002338340000000050A00000200000004E3 +:1011000002338300000001380233834000000000F6 +:10111000053400003326000005348000284E0CCA38 +:1011200005350000278E16DE0535800036AD20C25D +:10113000053600000F942E6E063621503BD60B73F9 +:101140000130000000000000013000040000000039 +:1011500001300008000000000130000C0000000019 +:1011600001300010000000000130001400000000F9 +:1011700003300020001A0B75033000A400020B8F0F +:10118000023002240000000002300234000000009F +:101190000230024C00000000023002E40000FFFFB9 +:1011A000083020000000080004322DE0000000029A +:1011B00004324000000000D8043246C00000012084 +:1011C000043250C80000002404322DE80000000260 +:1011D00004324360000000D804324B40000001207C +:1011E000043251580000002402020058000000326E +:1011F0000302006000040B91040200700000000470 +:10120000030200A0000E0B95030200DC00070BA3F5 +:10121000020200FC000000060202012000000000A3 +:101220000202013400000002020201B000000001CD +:101230000202020C000000010302021400020BAAC9 +:1012400002020404000000010302040C00020BACC3 +:101250000302041C00040BAE03020480001F0BB247 +:10126000040204FC000000130402800000002000BF +:101270000302000400140BD102020108000000C8A0 +:101280000202011800000002020201C40000000076 +:10129000020201CC00000000020201D400000002A2 +:1012A000020201DC00000002020201E4000000FF73 +:1012B000020201EC000000FF0202010C000000C865 +:1012C0000202011C00000002020201C8000000002E +:1012D000020201D000000000020201D8000000025A +:1012E000020201E000000002020201E8000000FF2B +:1012F000020201F0000000FF0216100000000028AA +:101300000316600800030BE50316601C00040BE8DD +:1013100003166038000D0BEC0416606C000000131F +:10132000031660B800020BF9041660C00000003E0E +:10133000021661B800000001041661BC0000001F25 +:101340000316623800040BFB01166248000000001F +:101350000116624C000000000116625000000000FF +:1013600001166254000000000116625800000000DF +:101370000116625C000000000116626000000000BF +:10138000011662640000000001166268000000009F +:101390000116626C0000000001166270000000007F +:1013A000011662740000000001166278000000005F +:1013B0000116627C00000000021664BC00000001FF +:1013C0000A0000010000000102166000000003E8AE +:1013D0000A00000100000002021660000000000A7E +:1013E0000A00000100000004021660000000000175 +:1013F00005280400008800000628076800130BFF7A +:10140000042A000000001600042A800000000040AA +:10141000032A250000020C01032A296000040C03A2 +:10142000032A2F4800020C07032A336800020C0924 +:10143000032A392000020C0B032A393000020C0D5C +:10144000032A3AC800020C0F042A3AD00000000612 +:10145000032A3B9800020C11032A3C2000040C13C1 +:10146000022A3CD000000000022B80000000000097 +:10147000022B804000000018022B80800000000C2E +:10148000022B80C000000066022B83800007A12091 +:10149000022B83C0000001F4022B8BC0000000016E +:1014A0000A00000200000001022B83000007A120B7 +:1014B000022B8340000001F40A0000020000000239 +:1014C000022B830000001388022B834000000005DC +:1014D0000A00000200000004022B83000000013813 +:1014E000022B8340000000000A00000100000020E1 +:1014F000022A3CD400000000052C0000383B00000C +:10150000052C80003A4D0E0F052D00003C731CA3E6 +:10151000052D80000A5F2BC0062D93904D8E0C1771 +:101520000128000000000000012800040000000065 +:1015300001280008000000000128000C0000000045 +:101540000128001000000000012800140000000025 +:1015500003280020001A0C19032800A400020C33F1 +:1015600002280224000000000228023400000000CB +:101570000228024C00000000022802E40000FFFFE5 +:101580000828200000000800042A3910000000028A +:10159000042A393800000020042A3A3800000010DC +:1015A000032A3AE800020C35032A3AF800100C37F7 +:1015B000042A3C3000000002042A5000000000020F +:1015C000042A501000000002042A502000000002EB +:1015D000042A503000000002022A5040000000009F +:1015E000042A50480000000E042A391800000002A6 +:1015F000042A39B800000020042A3A7800000010BC +:10160000032A3AF000020C47032A3B3800100C4929 +:10161000042A3C3800000002042A5008000000029E +:10162000042A501800000002042A5028000000027A +:10163000042A503800000002022A50440000000032 +:10164000042A50800000000E0400A00000000016D4 +:101650000300A06C00060C590400A08400000005E3 +:101660000200A0980FE000000400A09C00000014FD +:101670000300A0EC00080C5F0400A22C0000000492 +:101680000200A060000003070300A10C00060C6725 +:101690000400A124000000050200A1380FE00000B2 +:1016A0000400A13C000000140300A18C00080C6D94 +:1016B0000400A23C000000040200A0640000030734 +:1016C000000000000000000000000000000000001A +:1016D000000000000000000000000000000000000A +:1016E00000000000000000000000000000000000FA +:1016F0000000000000000005000500090009000DC1 +:1017000000000000000000000000000000000000D9 +:1017100000000000000000000000000000000000C9 +:10172000000D001B001B001C001C001D0000000021 +:1017300000000000000000000000000000000000A9 +:10174000000000000000000000000000001D002557 +:101750000000000000000000000000000000000089 +:101760000000000000000000000000000000000079 +:1017700000000000000000000025002B0000000019 +:101780000000000000000000000000000000000059 +:101790000000000000000000000000000000000049 +:1017A00000000000002B00470000000000000000C7 +:1017B0000000000000000000000000000000000029 +:1017C0000000000000000000000000000000000019 +:1017D000004700AE00AE00B300B300B80000000048 +:1017E00000000000000000000000000000000000F9 +:1017F00000000000000000000000000000000000E9 +:1018000000000000000000000000000000000000D8 +:1018100000000000000000000000000000000000C8 +:10182000000000000000000000B800BC0000000044 +:1018300000000000000000000000000000000000A8 +:101840000000000000000000000000000000000098 +:101850000000000000BC00C3000000000000000009 +:101860000000000000000000000000000000000078 +:101870000000000000000000000000000000000068 +:1018800000C300C400C400D600D600E80000000079 +:101890000000000000000000000000000000000048 +:1018A0000000000000000000000000000000000038 +:1018B0000000000000000000000000000000000028 +:1018C0000000000000000000000000000000000018 +:1018D000000000000000000000E800EC0000000034 +:1018E00000000000000000000000000000000000F8 +:1018F00000000000000000000000000000000000E8 +:101900000000000000EC00EF00EF00FA00FA010513 +:1019100000000000000000000000000000000000C7 +:1019200000000000000000000000000000000000B7 +:101930000105010B010B010F010F01130000000055 +:101940000000000000000000000000000000000097 +:101950000000000000000000000000000000000087 +:101960000000000000000000000000000000000077 +:101970000000000000000000000000000000000067 +:10198000000000000000000001130123000000001F +:101990000000000000000000000000000000000047 +:1019A0000000000000000000000000000000000037 +:1019B00000000000012301320000000000000000D0 +:1019C0000000000000000000000000000000000017 +:1019D0000000000000000000000000000000000007 +:1019E000013201350000000000000000000000008E +:1019F00000000000000000000000000000000000E7 +:101A00000000000000000000000000000135014A55 +:101A100000000000000000000000000000000000C6 +:101A200000000000000000000000000000000000B6 +:101A30000000000000000000014A014B000000000F +:101A40000000000000000000000000000000000096 +:101A50000000000000000000000000000000000086 +:101A600000000000014B0158015801590159015A69 +:101A70000000000000000000000000000000000066 +:101A80000000000000000000000000000000000056 +:101A9000015A016E016E01710171017400000000B4 +:101AA0000000000000000000000000000000000036 +:101AB0000000000000000000000000000174018D23 +:101AC0000000000000000000000000000000000016 +:101AD0000000000000000000000000000000000006 +:101AE0000000000000000000018D01BA01BA01C52C +:101AF00001C501D00000000000000000000000004F +:101B000000000000000000000000000000000000D5 +:101B10000000000001D001DD01DD01DE01DE01DF9A +:101B200000000000000000000000000000000000B5 +:101B300000000000000000000000000000000000A5 +:101B400001DF01E0000000000000000000000000D4 +:101B50000000000000000000000000000000000085 +:101B600000000000000000000000000001E001FD96 +:101B70000000000000000000000000000000000065 +:101B80000000000000000000000000000000000055 +:101B9000000000000000000001FD02280228022CC5 +:101BA000022C0230000000000000000000000000D5 +:101BB0000000000000000000000000000000000025 +:101BC00000000000023002420242024A024A02526F +:101BD0000000000000000000000000000000000005 +:101BE00000000000000000000000000000000000F5 +:101BF000025202530000000000000000000000003C +:101C000000000000000000000000000000000000D4 +:101C100000000000000000000000000002530271FC +:101C200000000000000000000000000000000000B4 +:101C300000000000000000000000000000000000A4 +:101C40000000000000000000027102A402A402B023 +:101C500002B002BC00000000000000000000000014 +:101C60000000000000000000000000000000000074 +:101C70000000000002BC02BD02BD02C402C402CBCF +:101C80000000000000000000000000000000000054 +:101C90000000000000000000000000000000000044 +:101CA00000000000000000000000200000004000D4 +:101CB00000006000000080000000A0000000C000E4 +:101CC0000000E000000100000001200000014000D1 +:101CD00000016000000180000001A0000001C000C0 +:101CE0000001E000000200000002200000024000AD +:101CF00000026000000280000002A0000002C0009C +:101D00000002E00000030000000320000003400088 +:101D100000036000000380000003A0000003C00077 +:101D20000003E00000040000000420000004400064 +:101D300000046000000480000004A0000004C00053 +:101D40000004E00000050000000520000005400040 +:101D500000056000000580000005A0000005C0002F +:101D60000005E0000006000000062000000640001C +:101D700000066000000680000006A0000006C0000B +:101D80000006E000000700000007200000074000F8 +:101D900000076000000780000007A0000007C000E7 +:101DA0000007E000000800000008200000084000D4 +:101DB00000086000000880000008A0000008C000C3 +:101DC0000008E000000900000009200000094000B0 +:101DD00000096000000980000009A0000009C0009F +:101DE0000009E000000A0000000A2000000A40008C +:101DF000000A6000000A8000000AA000000AC0007B +:101E0000000AE000000B0000000B2000000B400067 +:101E1000000B6000000B8000000BA000000BC00056 +:101E2000000BE000000C0000000C2000000C400043 +:101E3000000C6000000C8000000CA000000CC00032 +:101E4000000CE000000D0000000D2000000D40001F +:101E5000000D6000000D8000000DA000000DC0000E +:101E6000000DE000000E0000000E2000000E4000FB +:101E7000000E6000000E8000000EA000000EC000EA +:101E8000000EE000000F0000000F2000000F4000D7 +:101E9000000F6000000F8000000FA000000FC000C6 +:101EA000000FE000001000000010200000104000B3 +:101EB00000106000001080000010A0000010C000A2 +:101EC0000010E0000011000000112000001140008F +:101ED00000116000001180000011A0000011C0007E +:101EE0000011E0000012000000122000001240006B +:101EF00000126000001280000012A0000012C0005A +:101F00000012E00000130000001320000013400046 +:101F100000136000001380000013A0000013C00035 +:101F20000013E00000140000001420000014400022 +:101F300000146000001480000014A0000014C00011 +:101F40000014E000001500000015200000154000FE +:101F500000156000001580000015A0000015C000ED +:101F60000015E000001600000016200000164000DA +:101F700000166000001680000016A0000016C000C9 +:101F80000016E000001700000017200000174000B6 +:101F900000176000001780000017A0000017C000A5 +:101FA0000017E00000180000001820000018400092 +:101FB00000186000001880000018A0000018C00081 +:101FC0000018E0000019000000192000001940006E +:101FD00000196000001980000019A0000019C0005D +:101FE0000019E000001A0000001A2000001A40004A +:101FF000001A6000001A8000001AA000001AC00039 +:10200000001AE000001B0000001B2000001B400025 +:10201000001B6000001B8000001BA000001BC00014 +:10202000001BE000001C0000001C2000001C400001 +:10203000001C6000001C8000001CA000001CC000F0 +:10204000001CE000001D0000001D2000001D4000DD +:10205000001D6000001D8000001DA000001DC000CC +:10206000001DE000001E0000001E2000001E4000B9 +:10207000001E6000001E8000001EA000001EC000A8 +:10208000001EE000001F0000001F2000001F400095 +:10209000001F6000001F8000001FA000001FC00084 +:1020A000001FE00000200000002020000020400071 +:1020B00000206000002080000020A0000020C00060 +:1020C0000020E0000021000000212000002140004D +:1020D00000216000002180000021A0000021C0003C +:1020E0000021E00000220000002220000022400029 +:1020F00000226000002280000022A0000022C00018 +:102100000022E00000230000002320000023400004 +:1021100000236000002380000023A0000023C000F3 +:102120000023E000002400000024200000244000E0 +:1021300000246000002480000024A0000024C000CF +:102140000024E000002500000025200000254000BC +:1021500000256000002580000025A0000025C000AB +:102160000025E00000260000002620000026400098 +:1021700000266000002680000026A0000026C00087 +:102180000026E00000270000002720000027400074 +:1021900000276000002780000027A0000027C00063 +:1021A0000027E00000280000002820000028400050 +:1021B00000286000002880000028A0000028C0003F +:1021C0000028E0000029000000292000002940002C +:1021D00000296000002980000029A0000029C0001B +:1021E0000029E000002A0000002A2000002A400008 +:1021F000002A6000002A8000002AA000002AC000F7 +:10220000002AE000002B0000002B2000002B4000E3 +:10221000002B6000002B8000002BA000002BC000D2 +:10222000002BE000002C0000002C2000002C4000BF +:10223000002C6000002C8000002CA000002CC000AE +:10224000002CE000002D0000002D2000002D40009B +:10225000002D6000002D8000002DA000002DC0008A +:10226000002DE000002E0000002E2000002E400077 +:10227000002E6000002E8000002EA000002EC00066 +:10228000002EE000002F0000002F2000002F400053 +:10229000002F6000002F8000002FA000002FC00042 +:1022A000002FE0000030000000302000003040002F +:1022B00000306000003080000030A0000030C0001E +:1022C0000030E0000031000000312000003140000B +:1022D00000316000003180000031A0000031C000FA +:1022E0000031E000003200000032200000324000E7 +:1022F00000326000003280000032A0000032C000D6 +:102300000032E000003300000033200000334000C2 +:1023100000336000003380000033A0000033C000B1 +:102320000033E0000034000000342000003440009E +:1023300000346000003480000034A0000034C0008D +:102340000034E0000035000000352000003540007A +:1023500000356000003580000035A0000035C00069 +:102360000035E00000360000003620000036400056 +:1023700000366000003680000036A0000036C00045 +:102380000036E00000370000003720000037400032 +:1023900000376000003780000037A0000037C00021 +:1023A0000037E0000038000000382000003840000E +:1023B00000386000003880000038A0000038C000FD +:1023C0000038E000003900000039200000394000EA +:1023D00000396000003980000039A0000039C000D9 +:1023E0000039E000003A0000003A2000003A4000C6 +:1023F000003A6000003A8000003AA000003AC000B5 +:10240000003AE000003B0000003B2000003B4000A1 +:10241000003B6000003B8000003BA000003BC00090 +:10242000003BE000003C0000003C2000003C40007D +:10243000003C6000003C8000003CA000003CC0006C +:10244000003CE000003D0000003D2000003D400059 +:10245000003D6000003D8000003DA000003DC00048 +:10246000003DE000003E0000003E2000003E400035 +:10247000003E6000003E8000003EA000003EC00024 +:10248000003EE000003F0000003F2000003F400011 +:10249000003F6000003F8000003FA000003FC00000 +:1024A000003FE000003FE00100000000000001FFED +:1024B0000000020000000001000000020000000017 +:1024C000000000080215002002150020081000007E +:1024D00000000033000000020000000000000005C2 +:1024E00000000005000000000000000000000002E5 +:1024F00000000003000000020000000100000004D2 +:1025000000000002000000020000000100000002C4 +:102510000000002000000040000000400000000318 +:102520000000001800002000000040C00000618092 +:10253000000082400000A3000000C3C00000E4804F +:102540000001054000012600000146C0000167802F +:10255000000188400001A9000001C9C00001EA8013 +:1025600000020B4000022C0000024CC000026D80F3 +:1025700000028E400002AF000002CFC00002F080D7 +:1025800000001140000000010000000100000001F7 +:102590000000000100000001000000010000000137 +:1025A0000000000100000001000000010000000127 +:1025B0000000000100000001000000010000000117 +:1025C0000003D0000000003D00000001000D0000ED +:1025D000000700D000028140000B81680002022049 +:1025E00000010240000F025000010340000C0000F7 +:1025F000000800C000028140000B81680002022038 +:102600000001024000070250000202C0001000005A +:102610000008010000028180000B81A80002026016 +:1026200000018280000E82980008038000000000F4 +:102630000000000000028000000B8028000200E083 +:10264000000101000000811000000118FFFFFFF3EE +:1026500001AFFFFF000000000000000000000000CC +:10266000000000000000000000000000FFFFFFF17C +:1026700000EFFFFF0000000000000000000000006D +:10268000000000000001000000000000FFFFFFF656 +:10269000005FFFFF000000000000000000000000DD +:1026A000000000000002000000000000FFFFF40630 +:1026B0001CBFFFFF00000005000000000000001428 +:1026C000000000000004000000000000FFFFFFF217 +:1026D000004FFFFF000000000000000000000000AD +:1026E000000000000008000000000000FFFFFFFAEB +:1026F000002FFFFF000000000000000000000000AD +:10270000000000000010000000000000FFFFFFF7C5 +:1027100001EFFFFF000000000000000000000000CB +:10272000000000000020000000000000FFFFFFF597 +:10273000002FFFFF0000000000000000000000006C +:10274000000000000040000000000000FFFFFFF359 +:10275000018FFFFF000000000000000000000000EB +:10276000000000000000000000000000FFFFFFF17B +:10277000010FFFFF0000000000000000000000004B +:10278000000000000001000000000000FFFFFFF655 +:10279000005FFFFF000000000000000000000000DC +:1027A000000000000002000000000000FFFFF4062F +:1027B0001CBFFFFF00000005000000000000001427 +:1027C000000000000004000000000000FFFFFFF216 +:1027D000004FFFFF000000000000000000000000AC +:1027E000000000000008000000000000FFFFFFFAEA +:1027F000002FFFFF000000000000000000000000AC +:10280000000000000010000000000000FFFFFFF7C4 +:1028100000EFFFFF000000000000000000000000CB +:10282000000000000020000000000000FFFFFFF596 +:10283000004FFFFF0000000000000000000000004B +:10284000000000000040000000000000FFFFFFFF4C +:1028500000CFFFFF0000000000000000000000CCDF +:10286000000000000000000000000000FFFFFFFF6C +:1028700000CFFFFF0000000000000000000000CCBF +:10288000000000000001000000000000FFFFFFFF4B +:1028900000CFFFFF0000000000000000000000CC9F +:1028A000000000000002000000000000FFFFFFFF2A +:1028B00000CFFFFF0000000000000000000000CC7F +:1028C000000000000004000000000000FFFFFFFF08 +:1028D00000CFFFFF0000000000000000000000CC5F +:1028E000000000000008000000000000FFFFFFFFE4 +:1028F00000CFFFFF0000000000000000000000CC3F +:10290000000000000010000000000000FFFFFFFFBB +:1029100000CFFFFF0000000000000000000000CC1E +:10292000000000000020000000000000FFFFFFFF8B +:1029300000CFFFFF0000000000000000000000CCFE +:10294000000000000040000000000000FFFFFFF357 +:10295000020FFFFF00000000000000000000000068 +:10296000000000000000000000000000FFFFFFF179 +:10297000010FFFFF00000000000000000000000049 +:10298000000000000001000000000000FFFFFFF653 +:10299000005FFFFF000000000000000000000000DA +:1029A000000000000002000000000000FFFFF4062D +:1029B0001CBFFFFF00000005000000000000001425 +:1029C000000000000004000000000000FFFFFFF214 +:1029D000004FFFFF000000000000000000000000AA +:1029E000000000000008000000000000FFFFFF8A58 +:1029F000042FFFFF000000000000000000000000A6 +:102A0000000000000010000000000000FFFFFF9722 +:102A100005CFFFFF000000000000000000000000E4 +:102A2000000000000020000000000000FFFFFFF594 +:102A3000010FFFFF00000000000000000000000088 +:102A4000000000000040000000000000FFFFFFF356 +:102A5000000FFFFF00000000000000000000000069 +:102A6000000000000000000000000000FFFFFFF178 +:102A7000000FFFFF00000000000000000000000049 +:102A8000000000000001000000000000FFFFFFF652 +:102A9000005FFFFF000000000000000000000000D9 +:102AA000000000000002000000000000FFFFF4062C +:102AB0001CBFFFFF00000005000000000000001424 +:102AC000000000000004000000000000FFFFFFF213 +:102AD000004FFFFF000000000000000000000000A9 +:102AE000000000000008000000000000FFFFFFFAE7 +:102AF000002FFFFF000000000000000000000000A9 +:102B0000000000000010000000000000FFFFFF9721 +:102B1000040FFFFF000000000000000000000000A4 +:102B2000000000000020000000000000FFFFFFF593 +:102B3000000FFFFF00000000000000000000000088 +:102B4000000000000040000000000000FFFFFFFF49 +:102B500000CFFFFF0000000000000000000000CCDC +:102B6000000000000000000000000000FFFFFFFF69 +:102B700000CFFFFF0000000000000000000000CCBC +:102B8000000000000001000000000000FFFFFFFF48 +:102B900000CFFFFF0000000000000000000000CC9C +:102BA000000000000002000000000000FFFFFFFF27 +:102BB00000CFFFFF0000000000000000000000CC7C +:102BC000000000000004000000000000FFFFFFFF05 +:102BD00000CFFFFF0000000000000000000000CC5C +:102BE000000000000008000000000000FFFFFFFFE1 +:102BF00000CFFFFF0000000000000000000000CC3C +:102C0000000000000010000000000000FFFFFFFFB8 +:102C100000CFFFFF0000000000000000000000CC1B +:102C2000000000000020000000000000FFFFFFFF88 +:102C300000CFFFFF0000000000000000000000CCFB +:102C4000000000000040000000000000FFFFFFFF48 +:102C500000CFFFFF0000000000000000000000CCDB +:102C6000000000000000000000000000FFFFFFFF68 +:102C700000CFFFFF0000000000000000000000CCBB +:102C8000000000000001000000000000FFFFFFFF47 +:102C900000CFFFFF0000000000000000000000CC9B +:102CA000000000000002000000000000FFFFFFFF26 +:102CB00000CFFFFF0000000000000000000000CC7B +:102CC000000000000004000000000000FFFFFFFF04 +:102CD00000CFFFFF0000000000000000000000CC5B +:102CE000000000000008000000000000FFFFFFFFE0 +:102CF00000CFFFFF0000000000000000000000CC3B +:102D0000000000000010000000000000FFFFFFFFB7 +:102D100000CFFFFF0000000000000000000000CC1A +:102D2000000000000020000000000000FFFFFFFF87 +:102D300000CFFFFF0000000000000000000000CCFA +:102D4000000000000040000000000000FFFFFFFF47 +:102D500000CFFFFF0000000000000000000000CCDA +:102D6000000000000000000000000000FFFFFFFF67 +:102D700000CFFFFF0000000000000000000000CCBA +:102D8000000000000001000000000000FFFFFFFF46 +:102D900000CFFFFF0000000000000000000000CC9A +:102DA000000000000002000000000000FFFFFFFF25 +:102DB00000CFFFFF0000000000000000000000CC7A +:102DC000000000000004000000000000FFFFFFFF03 +:102DD00000CFFFFF0000000000000000000000CC5A +:102DE000000000000008000000000000FFFFFFFFDF +:102DF00000CFFFFF0000000000000000000000CC3A +:102E0000000000000010000000000000FFFFFFFFB6 +:102E100000CFFFFF0000000000000000000000CC19 +:102E2000000000000020000000000000FFFFFFFF86 +:102E300000CFFFFF0000000000000000000000CCF9 +:102E40000000000000400000000000000000020040 +:102E500000003DFF00000A1100000A0000000A0403 +:102E60000000FFFF0000FFFF0000FFFF0000FFFF6A +:102E700000000020000000210000002200000023CC +:102E800000000024000000250000002600000027AC +:102E900000000028000000290000002A0000002B8C +:102EA0000000002C0000002D0000002E0000002F6C +:102EB00000000010000000010000000100000001FF +:102EC00000000001000000010000000100000001FE +:102ED00000000001000000010000000100000001EE +:102EE00000000001000000010000000100000001DE +:102EF000000000010000000107FFFFFF0000003F8D +:102F000007FFFFFF0000000F00007FF800007FF8C0 +:102F10000000FF1C0FFFFFFF0000FF1C0FFFFFFF63 +:102F20000000FF1C0FFFFFFF0000FF1C0FFFFFFF53 +:102F30000000FF1C0FFFFFFF0000FF1C0FFFFFFF43 +:102F40000000FF1C0FFFFFFF0000FF1C0FFFFFFF33 +:102F50000000FF1C0FFFFFFF0000FF1C0FFFFFFF23 +:102F60000000FF1C0FFFFFFF0000FF1C0FFFFFFF13 +:102F70000000FF1C0FFFFFFF0000FF1C0FFFFFFF03 +:102F80000000FF1C0FFFFFFF0000FF1C0FFFFFFFF3 +:102F90000000FF1C0FFFFFFF0000FF1C0FFFFFFFE3 +:102FA0000000FF1C0FFFFFFF0000FF1C0FFFFFFFD3 +:102FB0000000FF1C0FFFFFFF0000FF1C0FFFFFFFC3 +:102FC0000000FF1C0FFFFFFF0000FF1C0FFFFFFFB3 +:102FD0000000FF1C0FFFFFFF0000FF1C0FFFFFFFA3 +:102FE0000000FF1C0FFFFFFF0000FF1C0FFFFFFF93 +:102FF0000000FF1C0FFFFFFF0000FF1C0FFFFFFF83 +:103000000000FF1C0FFFFFFF0000FF1C0FFFFFFF72 +:103010000000FF1C0FFFFFFF0000FF1C0FFFFFFF62 +:103020000000FF1C0FFFFFFF0000FF1C0FFFFFFF52 +:103030000000FF1C0FFFFFFF0000FF1C0FFFFFFF42 +:103040000000FF1C0FFFFFFF0000FF1C0FFFFFFF32 +:103050000000FF1C0FFFFFFF0000FF1C0FFFFFFF22 +:103060000000FF1C0FFFFFFF0000FF1C0FFFFFFF12 +:103070000000FF1C0FFFFFFF0000FF1C0FFFFFFF02 +:103080000000FF1C0FFFFFFF0000FF1C0FFFFFFFF2 +:103090000000FF1C0FFFFFFF0000FF1C0FFFFFFFE2 +:1030A0000000FF1C0FFFFFFF0000FF1C0FFFFFFFD2 +:1030B0000000FF1C0FFFFFFF0000FF1C0FFFFFFFC2 +:1030C0000000FF1C0FFFFFFF0000FF1C0FFFFFFFB2 +:1030D0000000FF1C0FFFFFFF0000FF1C0FFFFFFFA2 +:1030E0000000FF1C0FFFFFFF0000FF1C0FFFFFFF92 +:1030F0000000FF1C0FFFFFFF0000FF1C0FFFFFFF82 +:103100000000FF1C0FFFFFFF0000FF1C0FFFFFFF71 +:103110000000FF00000000000000FF0000000000B1 +:103120000000000200001500000000010000000285 +:103130000000000300000000000000040000000187 +:10314000000000000000000100000004000000007A +:10315000000000010000000300000000000000016A +:103160000000000400000000000000010000000357 +:10317000000000000000000100000004000000004A +:103180000000000400000003000000000000000038 +:1031900000003FFF000003FF0000000000000001EE +:1031A0000000000100000001007C10040000000489 +:1031B00000000000000000020000009000000090ED +:1031C00000800090081000000000008A00000080CD +:1031D000000000810000008000000006000007D011 +:1031E0000000076C0000FFFF0000FFFF0000FFFF72 +:1031F0000000FFFF071D291100000000009C0424AF +:1032000000000000000000010000000100000001BB +:10321000000000010000000100007FFF000000FF2F +:10322000000000FF000000FF000000FF000000FFA2 +:10323000000000FF000000FF000000FF0000003E53 +:10324000000000000000003F0000003F0000003FC1 +:10325000000000000000003F0000003F0000003FB1 +:103260000000000F00000043000000000000000606 +:1032700000000000121700002217000032170000A3 +:103280001215000022150000321500000210000087 +:10329000001000001010000020100000301000008E +:1032A000001000001214000022140000321400006C +:1032B00000E38340FFFFFFFFFFFFFFFFFFFFFFFF74 +:1032C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0E +:1032D000FFFFFFFFF0003000FFFFFFFFFFFFFFFFDA +:1032E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEE +:1032F000FFFFFFFFFFFF3328FFFF3338FFFFFFFF14 +:10330000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCD +:10331000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBD +:10332000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAD +:10333000FFFFFFFF00003C1000000008000000003D +:103340000000000000000040000018080000080312 +:103350000000080300000040000000030000080314 +:103360000000080300000803000100030000080338 +:103370000000080300000003000000030000000339 +:103380000000000300000003000000030000000331 +:103390000000000300000003000000030000000321 +:1033A0000000000300000003000000030000000311 +:1033B000000024030000002F000000090000001995 +:1033C00000000184000001830000030600000019D2 +:1033D00000000006000003060000030600000306CC +:1033E00000000C8600000306000003060000000633 +:1033F00000000006000000060000000600000006B5 +:1034000000000006000000060000000600000006A4 +:103410000000000600000006000000060000000694 +:103420000000000600000006000003060000001374 +:1034300000000006000010040000100400106440AA +:1034400000106440000000000000000000000000C8 +:10345000000000000000200000000000000000004C +:10346000000000000000000000002000000000003C +:10347000000000000000000000000000000020002C +:103480000000007C0000003D0000003F0000009CA8 +:1034900000000006000000050000000A0000000512 +:1034A000000001400000014000000000000000009A +:1034B000000000C00000013F00007FFF0000004846 +:1034C000000000480000000000000000000000486C +:1034D00000000004000000040000000400000004DC +:1034E00000000004000000040000000400000004CC +:1034F00000000004000000090000000B0000000AAA +:1035000000000004000000090000000B0000000A99 +:1035100000000001000000010000000100000001A7 +:103520000000000100000001000000010000000197 +:103530000000000100000001000000010000000187 +:1035400000000004000000090000000B0000000A59 +:103550000000000100000001000000010000000167 +:103560000000000100000001000000010000000157 +:103570000000000100000001000000010000000147 +:1035800000000004000000090000000B0000000A19 +:103590000000000000000000000008000000020021 +:1035A000000001FF00000400000000000000000017 +:1035B0001E491E491E491E490E490E490E490E4913 +:1035C000FFFFFFFF00000000FFFFFFFF0000000003 +:1035D000000025E400008000000000130FFF0FFF33 +:1035E00000000000000000000FFF0FFF100010009F +:1035F000100010002000200020002000800080002B +:1036000080008000400040004000400000000000BA +:10361000000000010101010101200101200101015F +:10362000010110010101010101200101200101013D +:10363000010110012001010101011001010101013D +:10364000012001012001010101011001010101011D +:1036500001200101000001230000012300000123DB +:1036600000000123000001230000012300000123CA +:1036700000000123000001230000012300000123BA +:1036800000000123000001230000012300000123AA +:10369000000001230000012300000123000001239A +:1036A000000001230000002000000032000000079D +:1036B00000000007000000000000000802150020C4 +:1036C0000215002000000030081000000000003348 +:1036D0000000003000000031000000020000000582 +:1036E00000000006000000020000000200000000D0 +:1036F00000000005000000020000000200000002BF +:1037000000000001000000060000000100000002AF +:1037100000000040000000400000002000000013F6 +:103720000000002000010000000204C00003098026 +:1037300000040E4000051300000617C000071C809F +:103740000008214000092600000A2AC0000B2F8033 +:10375000000C3440000D3900000E3DC0000F4280C7 +:103760000010474000114C00001250C0001355805B +:1037700000145A4000155F00001663C000176880EF +:1037800000186D4000197200001A76C0001B7B8083 +:10379000001C8040001D8500001E89C0001F8E8017 +:1037A0000000934000000001000000010000000143 +:1037B0000000000100000001000000010000000105 +:1037C00000000001000000010000000100000001F5 +:1037D00000000001000000010000000100000001E5 +:1037E00000000001000000080000000C00000010B4 +:1037F00000000001000000010000000100000211B3 +:103800000000020000000204000002190000FFFF97 +:103810000000FFFF0000FFFF0000FFFF07FFFFFFAA +:103820000000003F07FFFFFF0000000F00007FF8CF +:1038300000007FF800000000140AFF0000000000F4 +:1038400000000001002010010000000001008600BF +:1038500000000100000000010000000000008602DE +:1038600000000000000000000000000000008604CE +:1038700000000000000000000000000000008606BC +:1038800000000000000000000000000000008608AA +:103890000000000000000000000000000000860A98 +:1038A0000000000000000000000000000000860C86 +:1038B0000000000000000000000000000000860E74 +:1038C0000000000000000000000000000000861062 +:1038D0000000000000000000000000000000861250 +:1038E000000000000000000000000000000086143E +:1038F000000000000000000000000000000086162C +:103900000000000000000000000000000000861819 +:103910000000000000000000000000000000861A07 +:103920000000000000000000000000000000861CF5 +:103930000000000000000000000000000000861EE3 +:1039400000000000000000000000000000008620D1 +:1039500000000000000000000000000000008622BF +:1039600000000000000000000000000000008624AD +:10397000000000000000000000000000000086269B +:103980000000000000000000000000000000862889 +:103990000000000000000000000000000000862A77 +:1039A0000000000000000000000000000000862C65 +:1039B0000000000000000000000000000000862E53 +:1039C0000000000000000000000000000000863041 +:1039D000000000000000000000000000000086322F +:1039E000000000000000000000000000000086341D +:1039F000000000000000000000000000000086360B +:103A000000000000000000000000000000008638F8 +:103A10000000000000000000000000000000863AE6 +:103A20000000000000000000000000000000863CD4 +:103A30000000000000000000000000000000863EC2 +:103A400000000000000000000000000000008640B0 +:103A5000000000000000000000000000000086429E +:103A6000000000000000000000000000000086448C +:103A7000000000000000000000000000000086467A +:103A80000000000000000000000000000000864868 +:103A90000000000000000000000000000000864A56 +:103AA0000000000000000000000000000000864C44 +:103AB0000000000000000000000000000000864E32 +:103AC0000000000000000000000000000000865020 +:103AD000000000000000000000000000000086520E +:103AE00000000000000000000000000000008654FC +:103AF00000000000000000000000000000008656EA +:103B000000000000000000000000000000008658D7 +:103B10000000000000000000000000000000865AC5 +:103B20000000000000000000000000000000865CB3 +:103B30000000000000000000000000000000865EA1 +:103B4000000000000000000000000000000086608F +:103B5000000000000000000000000000000086627D +:103B6000000000000000000000000000000086646B +:103B70000000000000000000000000000000866659 +:103B80000000000000000000000000000000866847 +:103B90000000000000000000000000000000866A35 +:103BA0000000000000000000000000000000866C23 +:103BB0000000000000000000000000000000866E11 +:103BC00000000000000000000000000000008670FF +:103BD00000000000000000000000000000008672ED +:103BE00000000000000000000000000000008674DB +:103BF00000000000000000000000000000008676C9 +:103C000000000000000000000000000000008678B6 +:103C10000000000000000000000000000000867AA4 +:103C20000000000000000000000000000000867C92 +:103C30000000000000000000000000000000867E80 +:103C4000000000000000000000000000000086806E +:103C5000000000000000000000000000000086825C +:103C6000000000000000000000000000000086844A +:103C70000000000000000000000000000000868638 +:103C80000000000000000000000000000000868826 +:103C90000000000000000000000000000000868A14 +:103CA0000000000000000000000000000000868C02 +:103CB0000000000000000000000000000000868EF0 +:103CC00000000000000000000000000000008690DE +:103CD00000000000000000000000000000008692CC +:103CE00000000000000000000000000000008694BA +:103CF00000000000000000000000000000008696A8 +:103D00000000000000000000000000000000869895 +:103D10000000000000000000000000000000869A83 +:103D20000000000000000000000000000000869C71 +:103D30000000000000000000000000000000869E5F +:103D4000000000000000000000000000000086A04D +:103D5000000000000000000000000000000086A23B +:103D6000000000000000000000000000000086A429 +:103D7000000000000000000000000000000086A617 +:103D8000000000000000000000000000000086A805 +:103D9000000000000000000000000000000086AAF3 +:103DA000000000000000000000000000000086ACE1 +:103DB000000000000000000000000000000086AECF +:103DC000000000000000000000000000000086B0BD +:103DD000000000000000000000000000000086B2AB +:103DE000000000000000000000000000000086B499 +:103DF000000000000000000000000000000086B687 +:103E0000000000000000000000000000000086B874 +:103E1000000000000000000000000000000086BA62 +:103E2000000000000000000000000000000086BC50 +:103E3000000000000000000000000000000086BE3E +:103E4000000000000000000000000000000086C02C +:103E5000000000000000000000000000000086C21A +:103E6000000000000000000000000000000086C408 +:103E7000000000000000000000000000000086C6F6 +:103E8000000000000000000000000000000086C8E4 +:103E9000000000000000000000000000000086CAD2 +:103EA000000000000000000000000000000086CCC0 +:103EB000000000000000000000000000000086CEAE +:103EC000000000000000000000000000000086D09C +:103ED000000000000000000000000000000086D28A +:103EE000000000000000000000000000000086D478 +:103EF000000000000000000000000000000086D666 +:103F0000000000000000000000000000000086D853 +:103F1000000000000000000000000000000086DA41 +:103F2000000000000000000000000000000086DC2F +:103F3000000000000000000000000000000086DE1D +:103F4000000000000000000000000000000086E00B +:103F5000000000000000000000000000000086E2F9 +:103F6000000000000000000000000000000086E4E7 +:103F7000000000000000000000000000000086E6D5 +:103F8000000000000000000000000000000086E8C3 +:103F9000000000000000000000000000000086EAB1 +:103FA000000000000000000000000000000086EC9F +:103FB000000000000000000000000000000086EE8D +:103FC000000000000000000000000000000086F07B +:103FD000000000000000000000000000000086F269 +:103FE000000000000000000000000000000086F457 +:103FF000000000000000000000000000000086F645 +:10400000000000000000000000000000000086F832 +:10401000000000000000000000000000000086FA20 +:10402000000000000000000000000000000086FC0E +:10403000000000000000000000000000000086FEFC +:1040400000000000000000000000000000008700E9 +:1040500000000000000000000000000000008702D7 +:1040600000000000000000000000000000008704C5 +:1040700000000000000000000000000000008706B3 +:1040800000000000000000000000000000008708A1 +:104090000000000000000000000000000000870A8F +:1040A0000000000000000000000000000000870C7D +:1040B0000000000000000000000000000000870E6B +:1040C0000000000000000000000000000000871059 +:1040D0000000000000000000000000000000871247 +:1040E0000000000000000000000000000000871435 +:1040F0000000000000000000000000000000871623 +:104100000000000000000000000000000000871810 +:104110000000000000000000000000000000871AFE +:104120000000000000000000000000000000871CEC +:104130000000000000000000000000000000871EDA +:1041400000000000000000000000000000008720C8 +:1041500000000000000000000000000000008722B6 +:1041600000000000000000000000000000008724A4 +:104170000000000000000000000000000000872692 +:104180000000000000000000000000000000872880 +:104190000000000000000000000000000000872A6E +:1041A0000000000000000000000000000000872C5C +:1041B0000000000000000000000000000000872E4A +:1041C0000000000000000000000000000000873038 +:1041D0000000000000000000000000000000873226 +:1041E0000000000000000000000000000000873414 +:1041F0000000000000000000000000000000873602 +:1042000000000000000000000000000000008738EF +:104210000000000000000000000000000000873ADD +:104220000000000000000000000000000000873CCB +:104230000000000000000000000000000000873EB9 +:1042400000000000000000000000000000008740A7 +:104250000000000000000000000000000000874295 +:104260000000000000000000000000000000874483 +:104270000000000000000000000000000000874671 +:10428000000000000000000000000000000087485F +:104290000000000000000000000000000000874A4D +:1042A0000000000000000000000000000000874C3B +:1042B0000000000000000000000000000000874E29 +:1042C0000000000000000000000000000000875017 +:1042D0000000000000000000000000000000875205 +:1042E00000000000000000000000000000008754F3 +:1042F00000000000000000000000000000008756E1 +:1043000000000000000000000000000000008758CE +:104310000000000000000000000000000000875ABC +:104320000000000000000000000000000000875CAA +:104330000000000000000000000000000000875E98 +:104340000000000000000000000000000000876086 +:104350000000000000000000000000000000876274 +:104360000000000000000000000000000000876462 +:104370000000000000000000000000000000876650 +:10438000000000000000000000000000000087683E +:104390000000000000000000000000000000876A2C +:1043A0000000000000000000000000000000876C1A +:1043B0000000000000000000000000000000876E08 +:1043C00000000000000000000000000000008770F6 +:1043D00000000000000000000000000000008772E4 +:1043E00000000000000000000000000000008774D2 +:1043F00000000000000000000000000000008776C0 +:1044000000000000000000000000000000008778AD +:104410000000000000000000000000000000877A9B +:104420000000000000000000000000000000877C89 +:104430000000000000000000000000000000877E77 +:104440000000000000000000000000000000878065 +:104450000000000000000000000000000000878253 +:104460000000000000000000000000000000878441 +:10447000000000000000000000000000000087862F +:10448000000000000000000000000000000087881D +:104490000000000000000000000000000000878A0B +:1044A0000000000000000000000000000000878CF9 +:1044B0000000000000000000000000000000878EE7 +:1044C00000000000000000000000000000008790D5 +:1044D00000000000000000000000000000008792C3 +:1044E00000000000000000000000000000008794B1 +:1044F000000000000000000000000000000087969F +:10450000000000000000000000000000000087988C +:104510000000000000000000000000000000879A7A +:104520000000000000000000000000000000879C68 +:104530000000000000000000000000000000879E56 +:10454000000000000000000000000000000087A044 +:10455000000000000000000000000000000087A232 +:10456000000000000000000000000000000087A420 +:10457000000000000000000000000000000087A60E +:10458000000000000000000000000000000087A8FC +:10459000000000000000000000000000000087AAEA +:1045A000000000000000000000000000000087ACD8 +:1045B000000000000000000000000000000087AEC6 +:1045C000000000000000000000000000000087B0B4 +:1045D000000000000000000000000000000087B2A2 +:1045E000000000000000000000000000000087B490 +:1045F000000000000000000000000000000087B67E +:10460000000000000000000000000000000087B86B +:10461000000000000000000000000000000087BA59 +:10462000000000000000000000000000000087BC47 +:10463000000000000000000000000000000087BE35 +:10464000000000000000000000000000000087C023 +:10465000000000000000000000000000000087C211 +:10466000000000000000000000000000000087C4FF +:10467000000000000000000000000000000087C6ED +:10468000000000000000000000000000000087C8DB +:10469000000000000000000000000000000087CAC9 +:1046A000000000000000000000000000000087CCB7 +:1046B000000000000000000000000000000087CEA5 +:1046C000000000000000000000000000000087D093 +:1046D000000000000000000000000000000087D281 +:1046E000000000000000000000000000000087D46F +:1046F000000000000000000000000000000087D65D +:10470000000000000000000000000000000087D84A +:10471000000000000000000000000000000087DA38 +:10472000000000000000000000000000000087DC26 +:10473000000000000000000000000000000087DE14 +:10474000000000000000000000000000000087E002 +:10475000000000000000000000000000000087E2F0 +:10476000000000000000000000000000000087E4DE +:10477000000000000000000000000000000087E6CC +:10478000000000000000000000000000000087E8BA +:10479000000000000000000000000000000087EAA8 +:1047A000000000000000000000000000000087EC96 +:1047B000000000000000000000000000000087EE84 +:1047C000000000000000000000000000000087F072 +:1047D000000000000000000000000000000087F260 +:1047E000000000000000000000000000000087F44E +:1047F000000000000000000000000000000087F63C +:10480000000000000000000000000000000087F829 +:10481000000000000000000000000000000087FA17 +:10482000000000000000000000000000000087FC05 +:10483000000000000000000000000000000087FEF3 +:104840000000FF00000000000000FF00000000006A +:10485000000000020000150000000001000000023E +:104860000000000300000000000000040000000140 +:104870000000000000000001000000040000000033 +:104880000000000100000003000000000000000123 +:104890000000000400000000000000010000000310 +:1048A0000000000000000001000000040000000003 +:1048B00000000004000000030000000000000000F1 +:1048C00000003FFF000003FF0000000300BEBC200B +:1048D00000000000000000050000000300BEBC2036 +:1048E00000000000000000050000000D0000000CAA +:1048F000000000000000001002150020021500203A +:1049000000000030081000000000003300000030FC +:104910000000003100000002000000040000000060 +:104920000000000200000002000000000000000281 +:10493000000000070000000200000002000000016B +:104940000000000300000001000000020000004021 +:104950000000004000000004000000200000000FE4 +:104960000000001B00008000000103C000018780E0 +:1049700000020B4000028F00000312C0000396806B +:1049800000041A4000049E00000521C00005A58017 +:10499000000629400006AD00000730C00007B480C3 +:1049A000000838400008BC0000093FC00009C3806F +:1049B000000A4740000ACB00000B4EC0000BD2801B +:1049C000000C5640000CDA00000D5DC00000618054 +:1049D00000000001000000010000000100000001D3 +:1049E00000000001000000010000000100000001C3 +:1049F00000000001000000010000000100000001B3 +:104A000000000001000000010000000100000001A2 +:104A100000000001000005AA000005990000059DA6 +:104A2000000003C00000FFFF0000FFFF0000FFFFC9 +:104A30000000FFFF000000460000000C07FFFFFF22 +:104A40000000003F07FFFFFF0000000F00007FF89D +:104A500000007FF8FFFFFFFFFFFFFFFF0000FF00E8 +:104A6000000000000000FF0000000000000019002E +:104A7000000000000000000200001500000000011E +:104A8000000000020000000300000000000000041D +:104A90000000000100000000000000010000000410 +:104AA0000000000000000001000000030000000002 +:104AB00000000001000000040000000000000001F0 +:104AC00000000003000000000000000100000004DE +:104AD00000000000000000040000000300000000CF +:104AE0000000000000003FFF000003FF0000000F77 +:104AF00000000007000000000000000E0315002069 +:104B000003150020010000300810000000000033F1 +:104B1000000000300000003100000003000000062B +:104B2000000000030000000300000002000000007D +:104B30000000000200000000000000060000000469 +:104B4000000000020000000200000001000000045C +:104B500000000001000000020000004000000040D2 +:104B60000000000400000020000000020000001F00 +:104B70000000100000002080000031000000418093 +:104B8000000052000000628000007300000083807B +:104B9000000094000000A4800000B5000000C58063 +:104BA0000000D6000000E6800000F700000107804A +:104BB000000118000001288000013900000149802F +:104BC00000015A0000016A8000017B0000018B8017 +:104BD00000019C000001AC800001BD000001CD80FF +:104BE0000001DE000001EE8000000F000000000167 +:104BF00000000001000000010000000100000001B1 +:104C000000000001000000010000000100000001A0 +:104C10000000000100000001000000010000000190 +:104C20000000000100000001000000010000000180 +:104C30000000000100000001000000010000061457 +:104C400000000600000006040000FFFF0000FFFF58 +:104C50000000FFFF0000FFFF000000200000002018 +:104C600000000000000000000000002300000024FD +:104C70000000002500000026000000270000002999 +:104C80000000002A0000002B0000002C00000001A2 +:104C90000000000107FFFFFF0000003F07FFFFFFCC +:104CA0000000000F00007FF800007FF80000000007 +:104CB00000000001CCCC0201CCCCCCCCCCCC02018D +:104CC000CCCCCCCCFFFFFFFFFFFFFFFF00000000BC +:104CD0000001000100010D07CCCCCCC1FFFFFFFF9C +:104CE000FFFFFFFF10000000000028AD7058103CCF +:104CF000000000000000FF00000000000000FF00B6 +:104D0000000000000000000200001500000000018B +:104D1000000000020000000300000000000000048A +:104D2000000000010000000000000001000000047D +:104D3000000000000000000100000003000000006F +:104D4000000000010000000400000000000000015D +:104D5000000000030000000000000001000000044B +:104D6000000000000000000400000003000000003C +:104D70000000000000003FFF000003FF000E0000E5 +:104D8000011600D60000FFFF000000000000FFFF3A +:104D9000000000000000FFFF000000000000FFFF17 +:104DA000000000000000FFFF000000000000FFFF07 +:104DB0000000000000000000000000000000FFFFF5 +:104DC0000000000000720000012300F30000FFFF5C +:104DD000000000000000FFFF000000000000FFFFD7 +:104DE000000000000000FFFF000000000000FFFFC7 +:104DF000000000000000FFFF0000000000000000B5 +:104E0000000000000000FFFF00000000BF5C000089 +:104E1000FFF51FEF0000FFFFF00003E000000000BF +:104E20000000A0005554000055555555000055553B +:104E3000F0000000555400005555555500005555DB +:104E4000F0000000BF5C0000FFF51FEF0000FFFF57 +:104E5000F00003E0000000000000A0005554000036 +:104E60005555555500005555F000000055540000AB +:104E70005555555500005555F00000000000000044 +:104E80001F8B080000000000000BFB51CFC0F00397 +:104E9000099F6147E5A730A3F28FB1A0F2071A3747 +:104EA0003131307403F105209EC2845FED72464CAF +:104EB000B1A71208769F1803C31F61085B4764E01F +:104EC000FD368A698F3B9451F9CD8A109A152ADEF6 +:104ED0008926DF0295B79483D05DCAD8CDB582CA42 +:104EE0000300B16032C66003000000000000000053 +:104EF0001F8B080000000000000BED7D7B7C1CD5A3 +:104F000079E899D9D9D9D9973492F5D8B52533927A +:104F10006523E3B558C9B22D131346B28C378912F5 +:104F2000D6B60C02E464FD00142C83EC9A464D497D +:104F300077643D2C646364A044A1902E065227211F +:104F4000AD9C086A6E692B036E9CDBA455FD080EB0 +:104F50003120886308C55C01A1985C12F7FBCE394B +:104F6000B33B337AD8E6C26DFFA8F999E333731ED9 +:104F7000DFF9CEF73EDF99F50405225F42C839FC20 +:104F80007315213BDCE4807039215E257A789D061B +:104F900075027F9610D2836518FEA644892C22C420 +:104FA00047D81F5791F8AA278B908745689C0F0F09 +:104FB00042B9B4BD3BD046125A665CA2E86B493593 +:104FC000212D2159EB1308D9E4226D8311ACCFA90F +:104FD0002715D05E60E32FC4FFE138AE06AD238F06 +:104FE00090F753DD5197651C67D92211A2564149AC +:104FF000768DB8B2103EF7D8A8C2603B574A48FB3E +:10500000C9CAD8F3661DFE6A249877DA0FFF584C98 +:10501000169F73C1F82492DD31C5F86F260FABD20D +:105020006C423E484663CFCF1EFFDE5CC726424E31 +:105030007972719D867CFD7C42AE240A2E26BD3E8F +:1050400029B7B7201180F77979143F9BF6FD449575 +:10505000CA33706D92C8B0A76A3CFC84180C1F66F6 +:105060003F02ED609E4DA30097655DE3FBF5D3F92C +:10507000D3E34AC4B66F0F8B893A7CEFADBFC398B8 +:105080000EEBDFF4C44A42E103F8E3F3A780DB9CB4 +:10509000DF01FFF9E67FB7BEBB8788841C736BC551 +:1050A00071DCF7D8A5F504F66B95C0E8CBC4F3CA5C +:1050B000E5DD74BEC9F00CFBADA9886757203A4CFA +:1050C000E9E3AE1AD846F2C7C44BF1E4EC773E7A76 +:1050D000583F9E1EAE69FC14E8E11B480FB88FB123 +:1050E0007C4AE7E6FA9D786CA977BFEAA998820E18 +:1050F00078FF0BDF07DE6FFCFE6F9F70FFF9F8266D +:105100001D98F37C6C78391D101277E17899FA209C +:10511000890781EF6592407C75E2A330070EF6D5D2 +:10512000A3461F4539F12091697B294F315C54CE4C +:10513000241EA4FD1BECEB71C3B802B4771794676F +:1051400027603C126072C8B93F3B926D31C9B26FA3 +:1051500020EF9A060314716C9E9924350DD7F3D174 +:10516000326D5570723A388AFD2219FA35E1968A05 +:1051700018DCFB4DB81B3C86AB82C2BD7F22B8BD9C +:105180006A9C205F1CFDE2A50C6E8E7FE77CAB94D1 +:105190003F8A490BAC78253A2900716BAE9FCBCF83 +:1051A000FE6242F134505413C571F7140D74B861A6 +:1051B0007F0B9B47098E5F20270E221CE6B8A1C4F7 +:1051C000087DBE93E361B92BE27D0DCA7B63A5D94F +:1051D000EBA17C9D0813F2555F12D606784C25157D +:1051E0005A7EF012837F327CED486A76BC974BB1D1 +:1051F00014B4DF51B4B7BF0EF0D69D5756857CDC92 +:1052000037F76A82F3FE02E7457CB50812AED34257 +:10521000B7BF40783C6ABF2ED02771C2E80AE0B120 +:10522000E0A3401FD455183F542F1AA89F0AC9E085 +:10523000B008F34CDB45A2C384E2E1351C271C19FE +:105240002132E027AB417B56D23278004D7157199D +:10525000B4BFEF27B3ABFAB40CDCB304D1268F890B +:10526000142D8F4F4027E63EDD0D788AB829DD0BDF +:10527000D8EE215E37DB3D4612EF5138AA7D74DF50 +:10528000C21BA36EE4C32302A32FBA22A0972EBE93 +:10529000AEBB17F9289D7515AB8FB84A08F9036E98 +:1052A00032E2E921C1C9DF7F6074C2F023A9FD9415 +:1052B000BFEF10E24480E7D2B641E28175758AA45F +:1052C00085AED72023D83F2C90CC1F98273BAAED42 +:1052D000457ACE11D87E044E7EEE372807C27ACFAB +:1052E0001611E83A1492287EB3222901F5747874D5 +:1052F0005D0361CFA95CF0B70C0AC00964FAC6B1BE +:10530000FE3A285B85448E00E3045543202027663F +:10531000B4F60B4837F7B907890A70F8970EEBF126 +:1053200000A38375163D502AB0754A11A2A7229991 +:10533000FD1E40A28179F7D46FF7DE12C0763E8A57 +:10534000F759A49EEE7F29B08900EBF067F6BD8483 +:10535000CE9FE81704DCF788F62C9A2E40EF850CD8 +:105360008E6818E1B86FAEDC9462783986F49725C0 +:10537000729C68F01FE029C8EB6F81E4C1F9B23874 +:105380003EB2F8FA03302F00415C9DA3860BEC9EE1 +:10539000DC8D24AA910CFEA4AE111D9F4F6B2551EC +:1053A0009DE2472788BF50D1BB0834E26911C299FA +:1053B000151B1946BAF4ABFD07914E77486DAF7CCB +:1053C00003FAED38EC8A1AC4428704E8707E065F5F +:1053D0004A11F09B552F707AF499728224EA900E4C +:1053E000142D41E962673EE947FA33FB4B28977178 +:1053F000FDE58DB4BD1C1A3CB11EE5725EA8D24518 +:1054000091AF8A88979D0AC37F86EEB7D37DEA4D18 +:10541000A6C8AF0035EE3C36BEA2C559D9EED24E75 +:10542000A11C2B6770F7465665137CAEF0FDEFDFCD +:105430004FF914C68C3EAE31B81B615D1EA0F361FE +:1054400058CFF7A13C5782CF53741E77C8479F9B14 +:10545000EB54DA65363EC9A372633ADB33524C86AD +:1054600005DC0FC2E5E60CBE9D33CBC60464212DDE +:10547000AED6219B9636459FC5F2E19CEF841FA1D5 +:10548000F3D7ABA7617C419F269C9B37B97C430532 +:105490007BDA84C395C177B8457A6DD4025F76C252 +:1054A0005E0FD6D8EB7E0275538F9664C6514D3D84 +:1054B000A345A32847EE768F349128217F2A1CD458 +:1054C000F3607FEEF68E9C202AC8D1DEE7F518D473 +:1054D00083330919C1FD936034A0EB3F476247391C +:1054E000A169549E64F37DDBBD542459806F5F58DD +:1054F0004A1198EFE0A88BC850BF2724A53C02476B +:105500001ED23F87C91CE79ED1E7E8B8BB6AF6AA5E +:10551000B87FE9F143AC7D808FFF41A54844CBF8CB +:105520001F800E1841FE958615EC57340ABC01EF1A +:10553000B360BE5409DD27A516E83BBB5CC21D2342 +:10554000D2D24103F982E879CC3E388FBC95AA6566 +:105550002A47A5EADE1156323904E2D7291FF7227D +:105560007F79403E225D98F2D19C67F27D364CFDFA +:105570005B2E019C5F23BE28CAC7CF0A8927909F54 +:10558000DA1B7B09EADB0FD634E958B6C388949E50 +:105590006BC4D4E3259CFEA0DFEE78610AFB49D3FF +:1055A0008AF271DEDD354CFE4C36EFCEA431BBCC39 +:1055B000A23F774A830AF2CBCE489532513F7FA86B +:1055C0006776D9341837A615AA13D8D3E71F77956D +:1055D0006DDC2F92C46161E1F8F10961F42B82BEA8 +:1055E00046BAF705EEA7F68C8F58E8BA24D32EC337 +:1055F0001FF6FAC0BA9B438887BC42BD52003A8E60 +:1056000002BBC76BA0EED7F7239DCFDE1EAC0D000B +:10561000FDE779F42D22BC5F26BEADEFC23AF8AEAD +:10562000C8E48BB79F251DD81F78945C01FED7F680 +:10563000920E23C0F08F72AC2F39123EE5463BE448 +:10564000042D4F717DF23AA75B1F9027953FE5D05F +:10565000CEE21F78A436FA5C293A617B0E6A79188B +:10566000E9493259444EBC85FB1F6E1A1DC67D9711 +:1056700054BB5DE5C4FB18D7A703F361DD110B9D97 +:10568000549B7432A2ACB4D0F9DDD517471FBB8050 +:10569000EF51FFED0EBCD63B0BE8CD888AD1D90087 +:1056A0005727D6611ED7FCB24AAB5FFDF7EE3A51E1 +:1056B000B4EC6F2002E359D67BF745D2517AFE3C19 +:1056C000FBFCDD7993CE9F2B32BE7A0BE587C2F1CE +:1056D000DA13EE51902E9CF098FD6E14120D56B810 +:1056E000154DA7783F3B3AEB3CF6E84858B2D861F5 +:1056F000EF201DE4B3FD8E4670BFE1BD653E89CB52 +:1057000089BCD5CD942FA44685DAF5A499D8EC535D +:10571000496DA3F3837CA9C0F5B8F3B85CE176D8F2 +:105720003B48DCF07CC09D08B5C1F3BB7340B75C5F +:105730008EF2DC688AD376A3A155163DDE2632FBB5 +:105740003BDD6F09A397BF2589CFE0BA492414C078 +:10575000F94D3A34E737DBF7046FA57CE52DD7998F +:105760009CE3707FDE8CD74C02FFA4EB6DB2FB2F65 +:10577000667B739D0F8BF177848599F58E977FA358 +:1057800036BABE58B9E72C030289237F7506AAD41E +:10579000F516FA5CCBF1D6EED6D7E23E38E9E762F1 +:1057A000E5E264F376E7D9E76D15195FC3BCADB8E0 +:1057B0003FCE7941E3A934DEC0E59E14CF32FC1818 +:1057C0006789EF7A07F5954F35621B10AFA69DC428 +:1057D000EDACB4FE5D7335E51FE5B88B3031AA1B27 +:1057E000549F001D517DD22FE8CC7FD1A9DDE44329 +:1057F000BB89861E98DDB450D4B81DE0A3CF291C08 +:10580000A5381FB39B0C34D2915F5FF6A63AA17DF9 +:10581000BB925541B2419F7959F935572A26005D0F +:105820007C20A6E2088019F7F32A719D8DC6E8E175 +:1058300002C6E9BD90719CFD9CE342BBC5CCFF6BE9 +:10584000BB1CCBBE32186F168ED34647112487DDA2 +:10585000C9F169F2B6A2184A09CAA3632E62000808 +:10586000AEFECA611C3F6D7F16B1F9C0067FACCF9A +:10587000B43B81FE5D9CFEBDE562068FF0D75DE422 +:10588000B3D54913F83930DF1DE67C1CCF520094A4 +:105890005A84ED13DA336061533B164DAE73D44E28 +:1058A000FD533A8FD94F0A90612FD0475F7915B1D8 +:1058B000C6C724EC076D509D303D6BEF3719FD8E48 +:1058C0009BAFD10EE705F70B48DA690B1D4DDECF14 +:1058D0006E1FFF2BFA4FF9E3F777650EC899CBC718 +:1058E000EF33D81F27908F8FB9DB1633E4B3FDF663 +:1058F000A03DE6C292D9CDD40E81F6B74B815E01B0 +:10590000C6F30686A83FE5D52C7635FCBD1DFF8184 +:1059100072A99C50B9E42FB7BF77DA27FFCEF99A66 +:10592000906117E21743CD286FB394C030958B3543 +:10593000D25BE9F6163C6C0D01DD4D9B1C2F2268F5 +:105940002CB49515CE9F02AF9B70BCDB2FC4300EDC +:10595000B0155C80F62AEBB8321DD7294FC6CBDBD9 +:10596000FE96BD50DF1D2A88F641AD2FE7247995BC +:105970005CBCDCDD2519549FF706B62BA5367B02EF +:10598000EA13EBF3806B0A7BE262E56F7AFE3CFB85 +:10599000FCDD7993CE5FE4027AB94B60F6D73839F3 +:1059A000AC06A81E9BCEE31D152EA62FC0FFE82037 +:1059B000CC4E8F2B563FB169EC20FA85C5D37F1EA4 +:1059C0003E04F364932EEA170219579F5B70E1744B +:1059D000EF15B95F1DE7FE6926DEC2E613185DE923 +:1059E0002E466F00CFFEF5F0CF87168F523F15CCB5 +:1059F0005DD10DF095346ADBA99F3A7DD1B3686F14 +:105A00007E5C3F354D2F9A492F864D3FF76A9F8E1A +:105A10007E5EE94AEBC995AE09F464EFA7A49F1333 +:105A2000AEB45D90704D601738F9E99BABB3581C6C +:105A3000ECA440FD61A34E17DC487FA5248A316B9E +:105A4000F0FB36E138EE46E3C7487FD952DB2578D4 +:105A5000BE916DE255B7FB7DFD0EBFAF5FFF74FCDD +:105A6000BEFE4FCEEFDB61E5E3C9FC3E57F07EAAF8 +:105A700097BC17E9F7E54D037F2F8AB5E6BA9F86F5 +:105A800032FEDE839D15758130FA7B84FA77DFEE76 +:105A9000FCF276F4E7F266E8FBB17D89B4B62E0F2E +:105AA000FDBF59EC7D7B177B2F296D3ACAFBBFC325 +:105AB000A019FAF709F955B4AB3C45DC0E0F91512A +:105AC000C1EEB73DEA9AC06F5BEE0A50FDF36E116E +:105AD000A1FB3E191EF760FC1B18715792C5C3BF8E +:105AE000955469D99B0CD1E79E7A766ED197D4698B +:105AF000FD31204BC4A7A788C57907F83942A74CC8 +:105B00005AB03CC2FDC52289D169A66471E7E75E3F +:105B1000FA716803C215F045113593C1756FB27CF7 +:105B200036CED7938CD2B24F4869181F3AD439DA9F +:105B3000A1005E03AE9110D67BBA7EDD510F78F4E2 +:105B400071B9E4D22A664B167DF563CEA7B9D19E12 +:105B50007750CFE5EAEC7D00CFB926A0AF9F65DA9C +:105B60008FD0F62A6B7F378F673BDB1FE3FCB8EBE8 +:105B7000E077890672C71762F142B97DD16C3CEFBC +:105B8000D875D02B68A0E7BFE5260725E0A77BBF27 +:105B900048A27B61DDD3DA23FCFD87A414DE9FE4F9 +:105BA000F36617B5D1FE9EF66AFAFE5B5EEDFA3833 +:105BB0008F17B3F31916CF060EB91EEB6E754E296B +:105BC000D6DFE070281B81A4C1FE002FD4192F7AE4 +:105BD00003F74DD20CBA2E335EB44760E31A9B999B +:105BE0001D31430BE818FF9D5156508746C28CE883 +:105BF00065F4DC6C464B601D7DAE156C6065F94D3F +:105C0000CC8860F69F4F2AA1F3CFD0AEB805DF77DE +:105C100055C562CBE06D60A6192F03D6C252D3A83A +:105C2000FD6AC6EFFA9796D2F8E9E4F25EE4CEB4E4 +:105C3000C97F3EB4792CF55C477DBAA37DA9E3FD0D +:105C4000658EF755B67A3BC733D1E5D4E3889B51CF +:105C500089C27B0F6F43DADC228D3F7A59F560569B +:105C60009FF26A8095AF59D6D17B9E751573FE9EC3 +:105C700001E67C1A3EFC9FE2CBC0534AF116A6E730 +:105C80001F201774D1221774900B1536B96058FD78 +:105C900068900B73A4FF07B9B013E5811BE5003BC7 +:105CA0001F73BE7F8C24AA707C4F84F9D51979109C +:105CB0006D41F9D72445EAA425541ED07816380B37 +:105CC000DB75F4634456AF914AEA8C08CA834B0BE8 +:105CD00047D12EE2FCB513F921C8CA9220F2D102B5 +:105CE0002AAFCD79B34363069E87C821B50A5161B7 +:105CF0003E477EC37617BD7FF37B945723AC7C0D64 +:105D00004A3F3FFF3EDFFEF5007EC8A599BA27E275 +:105D1000D3353C37E172C8132DA8D3803FAEE7FBE3 +:105D2000956E1772EC77667F895E3AF9FE029EB235 +:105D3000114F05C31F126DFE7878E4F6B9544E4931 +:105D4000802F2CB3435AAD1EB0C88D3CF511F4FF23 +:105D50000A9AF425BFC6F3B7BC99D4DEBC5DE2E76E +:105D60006FA37679618E0B72E3766982F3CA8261E2 +:105D70002F0D35AB6524E58517AA9E2209F4D7437C +:105D80002922007DC92A586448772807A765D625A7 +:105D9000A3DC83BAA8B03817D06DC21187FC86B4D3 +:105DA000703CDD3AF58C09DF8FB87E31CBE5AE086B +:105DB000C5D364FB669EFB9AF8F495478589EC1081 +:105DC00053EFDCC7F5D9CE640DAB3F7B1729817546 +:105DD000DEC7F1A6141984D2B5142D41BA37BAAE74 +:105DE000A9437D749F97F533DB9BE3FE05D7834A78 +:105DF00011DB1FE7BC7F29313D304D647905CEF7BB +:105E0000FBF83AA5067E4ED0C0CF098A18BD4811CE +:105E1000A6E7C818719E3BEF43BCBA49DBF0632587 +:105E200019F96FAEEFBE67BD02C2A982FEC173CB86 +:105E3000413E4F661DFCBD4E8475BC5D2DC037C410 +:105E4000F715FE84510F987AEB42E9FAEF24959DFD +:105E50008B2AFD3AB68392A09CFB9DA83F23D1716B +:105E60000D16078CB7C66F427A5076D1F5494A961F +:105E7000E147FD736CDC3A0F21BDC23A8950827252 +:105E8000C28C5F1A939D7BFC33CED3DEC8CE3B3EE3 +:105E900058C3CE3FC6FB15CCFEED75D8BF17EB5FE0 +:105EA0005CA8FD7BB1FEC314F6EFEB52FEF8F19D4A +:105EB000F66FD7BA078675F231ECDFCBF57744B4CD +:105EC0007F8D6F33FBF7527D3FD603F7EFA98BA190 +:105ED0007DBB80CB7FE3B13A1DE0CA5B4CA88A3E14 +:105EE000DBF538B577FF54D63FA4F837F15D2E3295 +:105EF000B94D52CA4A0BDFF4957FEAFEBECF3D850D +:105F0000BFDF87FBF171E6BF707F7FBA9BD127951A +:105F10008732A7E7AE9C9BE97E4E717ED0E8B6EC57 +:105F2000AF1C6272556A8C139AB6E1E00F27DCEE63 +:105F300042161FEFCAB956A5FD1CFC75053243FE7B +:105F4000F838F92735FE04F1F70F254BDEC787A88F +:105F500018F23FFDF5B83C3A9D373DDF459E1F8066 +:105F6000DCA1FD9DE725FF55F1899BDCE938C14D9A +:105F7000EE09E2049F567C625B66DE6D13CDEB8C0E +:105F80004F044AA2716AAF854582F871791387314F +:105F9000AF6447E866CD28C9E48599E33FE19E45B3 +:105FA000C7EF0AC922C647BB0E2F2F443BADC7DD42 +:105FB00016C3713A7344756FC978781F7433BDEB9B +:105FC0006ADF39FBB129E25D2E9ECFD7A53E4BE1BA +:105FD000F257E6E5609E52E7C13F39EC423B2A5456 +:105FE00050E285FA013E1E1EAEFECA1237DD81F474 +:105FF00083F00748CA1070BEDD74BEF3C1D7E366F4 +:106000007ADFD57ED7ECC7A688B77ED2F09978FC28 +:1060100073CE17AEF65D747E13AF2EE403D40F116A +:106020006918F3A4DCA31E6A77B8A22C2F2D2D0FBC +:106030002222CD53003E788ACAB153763EF5A8F1AC +:10604000612C3BDCEC5CCFE56DA3F2D1CCFF0924E5 +:10605000BAA85EF2277A6CF6BEA9B7FDEE3682EDDD +:106060003D0189E64FC99C2E02EEE808D24BA0768E +:106070004E29D2CB394E7FFDFC3C72870EEBBB3CE8 +:1060800033FE9BEE1CFA7EC7E1D9DF6C867EDB6AAD +:1060900045CC2E26CAC92DD4EEF09000E573737E50 +:1060A0000FE203F6AF7D740BE5F31137CFB72D2563 +:1060B000A548BF5B6BB77AD0A5F114199E89F27E13 +:1060C000C7EB05E2C575B86A456F199ED35432BD5A +:1060D0004042D5E7C9DBE860F4C1F7C3DC0729C259 +:1060E000F2D7DC983F0E70BB74D8978ACC7EA4EDB3 +:1060F000F693CE7880C6F3DD19FE5D0176CEE421FD +:10610000D25DCD42060F1EA45FC09B67B463B81872 +:106110009A8FE1FAE7FDD7ADFF65540268173E3765 +:10612000F79BCD788EA88B512FF6D7EC74EE423AC0 +:106130005AC0F67526C227FFD7EE5B1A6EF01630EE +:106140007E7709FE13FB932DB6F3AE4B78FE9DE9E7 +:10615000A707DAC04F07BA9E592DD17DBDA47AFB9F +:106160001691C65D86A95F37BD4D227DEC3DBDC74A +:1061700060F69F79A76C3BC7CBDA28DBF2CCA6137D +:10618000765E5B442CED609CE998DF5781EFEDCFA4 +:1061900089AB399BC6B51CF2D82C9D79E90B654EAD +:1061A000273C2FDDEC3F199ECC7CF4DD44FF8CBCFA +:1061B0003043979D15C4C68F4EB950A0B5D13CC988 +:1061C00042F06B685C6029CB93CC25091A272035F7 +:1061D000EC1C54E2F96766FFCFCB4CDE7AC86F75D2 +:1061E000D483321935A83C72EC87B90F3BCA09CF6A +:1061F00027D30361789FC3F988DE2FA1F961204F6F +:10620000014F39887FDC9F7A8E6F8108488F594B08 +:10621000EDFB21136697E4F2FC1E1FB1EC0FFA2D83 +:106220003CCF52763CDFCCE13E1F3E9DFB718B495B +:10623000FF4112B4EE075127CE1733F723ED375D38 +:10624000E47C7798F30560BE591F633EC73E5CCD82 +:10625000F7A14733F7813458F701CCE618EABF5C61 +:106260004DA27904CE7D50E03FDC87C226FB3EA0E4 +:10627000B98D769AE2A0F7C9F0EFE2F4AFCB7A3F9E +:10628000A5D3535E1A5FF2A4E9E5998372359EE3C4 +:10629000131ADFFE3D26BD42BBE97FC8A674B233A8 +:1062A0004A52DB91CF666EA7F983045D304BFFBE87 +:1062B000A255D9640A7B10F3B1873D181F5768397E +:1062C00059BB5C399140FD17AC1E35102F39BA56B9 +:1062D00045F31089D621513ED1685EF8BF98F48409 +:1062E000946A393F97B91EF1D4B3525E2AAF437C0A +:1062F00078EA999C912375BF91B02C72E2935CD49B +:10630000393C6DE39ABCDD8596188F7BCD920FD515 +:106310001B657CF97E1149E161BF2706220DD71369 +:10632000530BE83A62D1002D476B63EC79BC0FCB7D +:1063300033B85F18EFAA617997D38AC429D747FF8A +:1063400098FE5A69062F261C4EFAF9EF821FF44375 +:10635000902ED4632ED237051CEA59890C83FEEFA8 +:10636000538687B17D5F11A176B96729C82DF44B9B +:10637000A5D4B76EAEC6B8A65A6958C6F99DCCEC7E +:106380004FB988E8340F5DD284D541EB7B76BF04EA +:10639000F8E843E4A3E5AE2794513ADE20B5930331 +:1063A0001191A07DBAF3A37F54908E032D321B0769 +:1063B000F3332DF2634076DBEE77A4E547888C8AD1 +:1063C000163FDA94FF0572C2EBB1C417E5901917B6 +:1063D000677143331EEDC4C381248B87FF759250D0 +:1063E000BBE0873C2EFE3D7E5E5631EAA3E72615D4 +:1063F000A3AA86745531AA95B17AB40CEBDFC6F323 +:106400003468D79FD468B93B59CECFDDA2B4DE97AC +:10641000ACE1F1769DD67B92317E3F254E9F3F9435 +:106420006CA2F50793095A1F48B6D0F2DE641B2D03 +:106430009F48B6D3725FD2A0E57792BDECBC2ED94F +:106440004FFBED4D0ED0FA53C914AD0F25F7D172A5 +:106450003039489F578CC66202C27B8AC5E72E3FFF +:1064600000EBB4C6A9377A69DCBC829FDB3CFFD263 +:10647000073EC4D3DF1C985A5E2D382CDAEC8E7997 +:10648000FBECF94597B4E7DAEA39FA745BFBEC9A6E +:1064900052DBFB60F432DB7B7F7995ADEED5AEB09D +:1064A000B5F784EA6CF512E3F3B6F6C56DAB6CF59F +:1064B000192D37D8DA8713EB6DEFA7C56EB5BD9FE1 +:1064C0003FB8D5569F9BFABAAD7D7498F94707AA95 +:1064D0003AFF88541272FD8E273A1530A46BFCC621 +:1064E0002C545E03339EEEAC0F23FE417A809F72E4 +:1064F000F92829C3C377F701760FCAFD8C41E3BBA6 +:10650000F0FE327C0EEF23D80EDED37D82F7EFF063 +:10651000F773F87B9A87241D607693F40C3BEFABFE +:1065200041658471FF2CD03FE8979E64FE433A5E3C +:10653000F1D1B838EA6DC827D2288B279BFE5B8D36 +:106540003FD1169F285EEE617E1751243A0E1E4100 +:10655000229DA4CF63406FD3B85E54A27EC8E53CB1 +:106560006FC4ECAF3C4386BD15A887A5FFC03C2691 +:10657000BC06730EDA5C3AC0EA263E67F7DBEBB383 +:106580007AEDF5C527ECF58523F67ACD2471F5EF84 +:106590007A981EEC490E569C9ACDE236BA25BF4A2F +:1065A00086FD512BE830BA35BF57067EC7731F52A0 +:1065B000CDEE795570FCC9A3DA1C6CAF1C60796F05 +:1065C00032C801DA8EDB41BE932B0E0B59380EB365 +:1065D000C33D2198D742374AB91D6E393448E594F6 +:1065E0002702CF2DED9C76D7639E8F67774F6697F6 +:1065F0008D93AB1F9DA3F9637E3EE703FCFC20BC9B +:10660000ADFF20C6D5C31B557A0FCE3D5F8CA39F2F +:10661000DE1311638FA07D0D752CC3ADA90EB48F51 +:10662000C2074A7E88F6C867CF0ED7227D84DBD4A6 +:106630004A8C6394291AB347A44418E364E1037BAA +:10664000843A18A74461E704E10676DFAAF34976A5 +:106650007EF3FC4BD7A9A330EEBB7965540E9D7930 +:10666000CAA3633CE34C2EBB1776E6A9C5FF84FCA6 +:10667000F0EFC9C3B9D673CC337FFD6F8BDC30FE2E +:10668000991FFEDB2289E62FA66CE7749BCF1D5D68 +:10669000847AC7A823E598E77CBB2A131CF7765CAD +:1066A00037FA7F1B193D3F5020F7E0F80585E26E71 +:1066B0002CE3187C5998C90B249CFE0BFEB79B9EBB +:1066C000DB77FEC447C769E77118A2B273CAADB3DE +:1066D000B5CE00D4B796A8F45E54678EE19989715F +:1066E000E3973CD1C7A1BEF573E0A2E3FB30BC0742 +:1066F000147509EA32AC1BC5CCBFF9A0849497008D +:10670000D349CB745710E61B9BCBF20C4C3F366B36 +:10671000744C477378A794EACC827E9D3AA1E3EC4F +:1067200094069FC3FACE7A56FF9AD8B6A799F26616 +:10673000A2BF16C6F960915889F6C18DDE526E97D8 +:10674000035CF0FC6B8B25FADC3C4F78EE250F5D8B +:10675000CFD69FB9A8BF1A7413C35F45E9E52A4A8B +:106760002F9C5FFC7843059C9EFB93E5142E4F897C +:1067700068B801EEFC3CE6DFE687D87DFC6023D8F4 +:106780002B56390F7F5F53F8FE58E26707501F837F +:10679000FE1A4E2A74BC07932A2DFF2119A2CFEFAF +:1067A0004D6AB47C26199D329E395989E7E0AF596C +:1067B000FA3D301F5601F03EC0CFABDF8B8846D983 +:1067C000E593F77F2879785AFDEC0C1D14B7B17367 +:1067D000D849DB77085F598571982D527C2FF54792 +:1067E00013616B3E7DB73B1146BDF1AEE78565A8F1 +:1067F0003780EF04E46F9DECA955F1DC7523892205 +:10680000AEC2A17E01CF5B00FFE7CE99761030E6E5 +:10681000D345BF7D2E1BE9264206112C39A26B1DE4 +:10682000D86F64561443424B8ACB3A908FC97CF39D +:106830007DD4F5D7E82F0C5DAA61BCE41F3D894AE1 +:1068400005E8FB80207E05F903E7A983F2FE673F98 +:106850009431FFA5FB3559C1785BF89957659CBF0A +:106860005B1C95314F27AE94D7633E40B79C988B05 +:10687000E7A4F1DEBFE99200FE07B212DFC5F72000 +:1068800068EB9FAF013EF1187F81EF3FAF102356B9 +:1068900084714CE3465C6F3D29EB523E4BDFCFC029 +:1068A000FCA97A18AF17DFA34D4DF30B6675E94BC2 +:1068B000A19EC3EA71A5B4CB80FA17B8DC2081444D +:1068C00009FA79E9BA0AF5A0A52EB13A515869AE8C +:1068D00067F3731FFED30CC0C76DCF0883983210C7 +:1068E0007E660FC52BCA259443079287D52E737FEA +:1068F0002D7EC012CCC740BCA68454A9404D4FFA8F +:106900001D0129774040FCB7DC44349493FBBD4C17 +:106910006F2E1985712C727C89C4EEAD3BEFA5D327 +:106920002BE6B83FBBD8794278E3A88CF1F7033562 +:1069300086BF029E6F5A5756D501FB38DBCBF31347 +:10694000810DEB518FE5F9549A0FCEF321DE72E4FD +:1069500043B4F27C08F77642F7B5DB3B5880E71684 +:10696000633F70E75AE3D5DD398305C204CFBBDC52 +:10697000F01CE90A9E235C0754232717C6B9EDC013 +:106980009E9906E0F136D2FFE5AF23DC3F75119406 +:1069900067BF39B824FB3350DF0C758CDF3D2A8D7F +:1069A0005C8D787E74A86410E55FAFC2E0BF6D08AF +:1069B000E828807C0C340E22E680DE3F4F82FD1FEB +:1069C000F6BE54EF053BEAE9525D1561CF4F7A5FA1 +:1069D000EF42BBEA69599D8B76D649EFDB5D486F84 +:1069E0009B3E27F24B946F3FAF97211C84D67B953B +:1069F0002BBAF0FCB1BA49A1F97505623C8679F46D +:106A0000E48848E52992C452C0BF2BA78B9EDFFDC6 +:106A10009F6E91FAF3787C79273CAF96C86109CADA +:106A200007649D7EE7C3E891683F78DEEBCEC57DC5 +:106A30008A3E87F299F4122ABF173EE3A1FE7375CE +:106A40009BFE551A975097523B682649FFA1F9B310 +:106A5000977039B95825B5E8472EE2FAA4BAE9DAB1 +:106A60004DD86FD6BAC67FD6E17D8D9032E8B9D2C7 +:106A70002F98FCEF2EF8DEA002F5EA6C49C518C588 +:106A800090579FA7E13EFD9BAF12F7692827AAD236 +:106A90007D0B4AB97B31EE3F0A7E3DE8A1A74EB49B +:106AA000FEFB95786E900F8A17E31BD0AE0AF0724A +:106AB00025CA0DC49BB1B55E47B92727B6205FFE36 +:106AC000BA776B97B284E27D9602783FA56CA57881 +:106AD0001FEAD067A896FAE2DF839D40F9726B97B0 +:106AE0000E7C2AE5DCBB09F91CDE3FAF00BD3F9DF3 +:106AF0004BF8BEB0F7D5A5661D4419C8015787C924 +:106B0000D7E0A8821EA8B6B4AF07BE76D7B1F70704 +:106B1000613ECC2342BB155C095827A1F795C7E617 +:106B20004AA9BD348E0DCFAB307ED4FC85F9E8A7E1 +:106B3000CE2651BC37EECB61F2D897A3D1B8DD9009 +:106B4000979DEF8F1D0FA4105FBE9CB67E0FBE2FCA +:106B50002EA37EA83FC5C6C112F7DFBCE72AA82B2B +:106B6000A99DEA2DB7DF83F538EEC14ADCCE931C30 +:106B7000CFBF5DA21F2C16F07C6125952727156ECF +:106B8000BF15B338F5D7E2C60AF4532F1B1BAC432D +:106B900073227276E4592C2BC83B752836A34ACE53 +:106BA0007358BECEEDA62AB572192EED334B539D08 +:106BB000F4B85E1BA579190B5D508779B2970EBAB0 +:106BC000709EC2B56517799E3E4CF30B7605C4588E +:106BD0008A9E37FE505D67E9FF94D7CC2362F205A9 +:106BE0008F7998FDDF5F8BF77161EFD97D142E6F80 +:106BF000DC3C702711164790D4A86A807CAE0D56F5 +:106C000053BB6E26978BAE834BAE413B4446390156 +:106C1000ED1FF2B2B8EE58980CEED5F0BC4B2754ED +:106C2000CFF1BCC26D7C5E535EF4809FAE5F4AC8FC +:106C3000935F9A53C78C739DE68F0BC3478573A0F0 +:106C400028EF4DDF331E93D17E7CF24B05752AEC85 +:106C5000D3DFC6447493402EE92FCC40FE1E7153FF +:106C6000B9755F0E938FE6BA1FF7B238C75985C161 +:106C7000DBED86F711BC9F07A21BE697CFFA496AA6 +:106C800001CA531E6F4E6CA474E6090198942E0C31 +:106C9000D33F224F96605E90485256BBFF6C16ED74 +:106CA0007F5661F398E7AE93E5031CE0F038CF59C7 +:106CB000F1001AF1BE2DBD2F2CEEFC749DFE02A139 +:106CC00072C22D4E742E59C5F7553E2B5038CCE765 +:106CD0008B5068637C474AD0FBA5F25989BE37D7F1 +:106CE0006BB6CBBC67EB785B65F763E410E357F9F1 +:106CF000808BDA7B24248D59EF9FF8D11E9F95E17C +:106D000033F35ECCF8754447A89F56C6E4EC783E52 +:106D100034A8DDB32DA817A23EF268F6F7CE7C9614 +:106D200034DC67A7D9D661F257663D05F43DEA1316 +:106D30009407B749E45BE8CF6DE679069B5D404F69 +:106D4000007FDF6FD9FDB0B74DFFE119F69D9ACDF9 +:106D5000437B78BE83668B5FDD76809D33FE566D08 +:106D600009A31D11E7F31688C3FCC2DC880BF9B92F +:106D70003B2B5E2EA84C5E4A2194FFA6BC2CEF4212 +:106D80007E7840CEC84F74561FF0B17AD25BDED504 +:106D90008576590E93A7F1DEFF45EDA46EAF597FBE +:106DA00092D61F90A3CF61BCCF78CAA3A13E87FE25 +:106DB0003AF29D714339F557BA4BC974B4F39E2F1B +:106DC00060DFF3E87ECAB3175D68B00FBFA058D686 +:106DD0007326FFC59918E79E603CC336DECC8B1B3B +:106DE0000FE61F12B333EF9F2FB8828E0FFD34ECE6 +:106DF0007726DF47CF83CE5CAFD0F8EF436E3BDF23 +:106E00009AE537BDA6DFAF527E4DEF3FF2299E6B6C +:106E10009336C69F458C3F3DA15C1B7F66E86506A7 +:106E20004959CEAD6772BD9DA19799F4FD59EC4BC0 +:106E3000E7D32E70BED249E69B779EF92A6CF3A168 +:106E4000844DDF739B229EECBC5FE394776669CA36 +:106E5000BB5C2F1B3F4012435E286F1D1DBC9AA6D2 +:106E6000E5096A7E0734F9B2C2CEFB973CD1D189DD +:106E7000EAFBEFDDF177D17FC07C157A3FD21D9F11 +:106E8000E5CDCFD46F3F1530705F6F43FB04E8A1B1 +:106E9000EF0D761FD272BF72788696E19309E41ADD +:106EA000C31FF7CF517E63FDD111B7D83185DFE520 +:106EB000945BBDE3F89DC9AF4F6E3E976DFFC6CFA3 +:106EC00027D3F719FD942064023DB72DAC1732FE8D +:106ED0004AF3BB8EFC8EE9F8DC9E32503EDC67BE86 +:106EE00037CE75D517A19D9C794FA8DF95E98FDF27 +:106EF0005DB9CF67B6F775A3BD35AEBDDFD1BED4E2 +:106F00006C9FDF8DE33BE131E50FD6D19E937EEFA1 +:106F100049DB7B08DF1ED1315EAE399E46C733EDBB +:106F2000F86DBDF30E1912D2657F2DEAE531F0A39D +:106F300030CEF1A814F5452DF6C836EE3FC867BD32 +:106F4000363C67F01BA0CF49C8BE9FDB5E5A513864 +:106F500055DEF7EB5CAF9BF55B12DBAEC6F6DBF8FC +:106F6000FEB5802780E3B73CE4B2F1EDFFC0FBDF64 +:106F700005DEB993D82711C6DFFFEDE00D4F026F94 +:106F8000D1FF577897AB6D07DD00EF724DA0F70684 +:106F900097C33B2FF0E80A2815289783211BA09957 +:106FA00054293A0ED6317EB1E20FEF1DBB0AE4F749 +:106FB0003E9EB77FE9C3DB8E7C0EC6391A5BB0807C +:106FC0009E474BFAFCD560F7EFF7B1F3C04BB97DA4 +:106FD000EB847BBF8FE99B23B1659BE9B96EDC4FE6 +:106FE000CFE28F89D19F5563DC61958BDA7FCE7EAE +:106FF0004792ECBCFC1E1FCBFB3A1677B173E1D86D +:10700000EC14F69F0C4F24E6CA9CE3D0EF01FA6C17 +:10701000E7B1E454A1683DC73D42B4BBABD19E6922 +:1070200098188EB7108E4B71FED553C6E3DFE4ED92 +:10703000DEC0F37D286F1D74D1FCAED6B88BC64779 +:107040009DF33AFBB7BA870BA6CAEBDC3CE8B29DCE +:107050004F9D0F9E3FF395B2EF60EEB3F7FB6ACA08 +:10706000EF381767FB9EC7E35C8089CBD8770D3478 +:1070700037DAABAB4EB2EF08BE808F96D07B844F31 +:10708000FBA0FDAA5825FB5E9CF9DD3A09F4050C2E +:10709000B271F7DCBDF47B05CDAB69FB833EC11655 +:1070A0009F4FEF133F97D8C7BF0357D86CB8ADDFDA +:1070B0005D53FCA63F9428467886647DDE0F60FC15 +:1070C000235FF2D0F8B86775C3CE20D0CFB1353981 +:1070D00082F53EE2493EDFA266F6BDB6A11371B766 +:1070E00068E1CF0F393D42FFB5A313E0EF047FBF46 +:1070F0002621F0F36FBDD8FA3D46D16F7FEFECFF4C +:107100001B5F169DFFD824F70E4FF1F19B1AA7EED7 +:107110004F9AA7F1A0A13EC7FA7D3527FEEEF025D4 +:10712000CEF8A0FCB99078F80EA4E35A85D231913C +:10713000B40A84DBC403F07D2F7E9AD2DCA76B6691 +:1071400044E83E99F098F361E80BE325D53A8BA328 +:10715000E5F2F38EC5BBBCA90EEAC7F1EF684A00A1 +:107160005790CEFF7BA487C9E637C7CD93C8B00C34 +:10717000E36E14536D68173AD761B63BFAE1B22F4C +:10718000207C434744757BC9F8F5A7E986CBA53930 +:107190000376BA29F633BF378FDF1305FBABB8C9C7 +:1071A000D2BFD0CFBED77AB1F4F453B483A09C73CE +:1071B0007FC2ADC1BCD74A2CFE81E35BE3FC8738BC +:1071C0003E553FE17018BECBD0CE7C81C9977D7B08 +:1071D0006F2D9E886F8F70B9F14FBE721BBFAC8E42 +:1071E000551ECAAB467ADB13C5B8C6D0912B68FFD3 +:1071F000357CFE21D9B815F7E7C80D9E1C8C035CC1 +:10720000E83A902F507F44381D3E22C697E7E3FEB0 +:10721000FD905C8970BECAF9DDEC7F1BA7FB7D7217 +:10722000A2D31B2564D9CE87BB7B15CABFD4DEDBB6 +:10723000B0F3916E8CE7912EB68F731ADFD9865713 +:10724000408764164F3F7E57909E5F031DDAF44DD2 +:107250005EE307498C8F6E10B59B999FCCE4CE639B +:1072600024B1C2BF30237FC6C99BAED5E67730E7D5 +:107270004CF4BD54F37B80269DEC4BADCADE60C15F +:107280007BD22FDBF0FC732EBF8F3AF2B31A4FB0D4 +:107290003C1858078DFFBC7865F123B88EBC960F5B +:1072A00092784E9CE472EAFD54E953B85E73FDE6B1 +:1072B0003A615D73BE07EDAF6BB2CB61938FD6348D +:1072C000F8EDCF79FF7297BE89FA275F607EB739F4 +:1072D0005E5E0CF05581EB8A6F0F9664F06CE27382 +:1072E000BD07F0388BB08B79006FF93D617AEF29DB +:1072F000BF73F40EF4077F1B8867E75AE4D2D7F90F +:10730000BE66E890E95D6C87FA6895A4B927D24B10 +:10731000AB63AE09E1DE9095682313F8A9693E7767 +:10732000E84155EC7763FB26D246CBAF10FD4A2CE3 +:107330004FF2FD48D32F190E2E467B21E6A2F1C84D +:10734000936DABB3D7C33A9ADD83C12A28EFE7EB3D +:10735000F8E536178D73BEC1D7E19C6F6DABCBB826 +:107360000EE8AD39C5F472732B8B63AD6DB3AFE727 +:107370002890474D2EE2B9EDC8E770DE3F73F1EF7C +:1073800042327BE195546E25E6E11D45DC23DFACFE +:10739000F2F3FB4F847E1F34C1FE497E11DB70087F +:1073A000E3C0DFF59750F88EC6365C8DAEF72D033F +:1073B000E41F4635B48BA6D6E3893B5D367D3DE7B9 +:1073C0007EFB7727173509ECBBA4D270F1972D729D +:1073D000C893E5A7F35DDBC8DE3BC795B3020C9EFF +:1073E0003FB85A26B2DB8AB2B89E1B98B87F515676 +:1073F00090BD7F68623D7653D0CFF5C420D5DF6B5A +:107400009A261EA727C0F4DDC9CDAFAFC5F3A2638E +:10741000A2FD9EE89F0498DCBA31C0E4FAD1BD5FBA +:10742000EF09E37EDC26A898C7BD7E9A3607E9E51A +:10743000C6D64A1A876FE4ED37FBE2FF8AF2E3967D +:1074400087D6F5E0F941E188A8A2DDBACF710FD562 +:107450002C5F70E80DD057A7505FE5E1F7B4E977EE +:10746000CC53D1EBD9928DEC5CDC7726778DBD3E89 +:1074700015F7FD6803B74F8DF936FBF4570EFE7212 +:10748000EEE72D030E7BCC41AFAF9028B59B8D0668 +:10749000BF4AEF217DF4DECF16A31D7EF3B4A8F51D +:1074A000FBC0A69D7A546676F5D19FCFA2F90893CA +:1074B000D1D5A4F66A032B3F697BF56803A3F35784 +:1074C000EE5C105C3F41BF6080F1C7F9ECD557EE30 +:1074D0009C9A5F5EE1EB3ACDE5B8494F682FAFB7B4 +:1074E000EC7B41C06E97366DB4CF7B6DB37D5E9300 +:1074F0004F8EC53B7D686F1012A5F68F69BF92AEA7 +:1075000005137EF73B23FF3A985DC8E141BE5F1F3C +:1075100061E202F1BC1A6507ECE7A501D35F5A10DE +:10752000447A76AEE7A83846F7DFF8363BB79C3D9D +:10753000B0EED9B0369EFE1604EC74F771E9CF9424 +:10754000EBCE71D2F4D6F031FDA24F99CE26DF8773 +:10755000D405F945A61CB8511A742F8930F9F25593 +:10756000287F8A09546847F9352697F839186CDE60 +:1075700022BCF77A74AF8FDEA337FA82A9D940D242 +:10758000C756CD9B6385670BDF971B07561E42F3DB +:10759000FE9818DF4DEDAE3F66E7EB2F9DF86137A3 +:1075A000D67F0DF24AD090DE36D0FAFB2734FA7B34 +:1075B00014B705983FBCA6719DDB3AAE937ED738D1 +:1075C000E8F70487376D7F4963D52897CD75A29C6E +:1075D0000CC33C6B5AF72CC1796E1938E89E0BCF5F +:1075E00013F85130986F5D80F56F36ED5E05D60B60 +:1075F000F4FF4BA45B5CEF9F084CFF49A36EEB3D8F +:10760000C92FB7BDBE7C22B9FE971C0F7D5CAE6F43 +:10761000F6254281FC8C7C2D6C2C5984764D0879A2 +:10762000CB027798C3217BA2DF61760E5B471A8F6E +:10763000B7313CFEF2C4AAEEFCEAC9F1F84D07FFEF +:107640005F281E8FEDF551FFC9F82CDBDF8C7D5BC9 +:107650004CEF0798708610CE7C66DFA29D68D2C181 +:107660002FB7BCBE36C1FCB12EE68F8D5523BE7E32 +:1076700014E4FEEE68A168BD3FF1ABE0C4DF717DAC +:1076800091F3D5F9F8E7865B7F42FD85176FFDE73B +:10769000623CF735FB4DC61F37F038CEBEAD9E9627 +:1076A000BD13CCFB1EDFB7717282D8ED9E5B1AD77B +:1076B000F5040105DBFD599FA5E7E393D9738DCC54 +:1076C0002FCAD873A920E631FC0BDF9F17D19E8B00 +:1076D0004C61CFB5803D5761B1E75A5C34FFDF693B +:1076E000CF1D27F12F2EACCEC4797EB191C5A35EFC +:1076F000699827A2BC3CDE781FD54BA7F9BC47B9D7 +:107700005C3FDE68D71B2F05CEA3CF4FD8F3A4274D +:10771000D33FA72F52FF80BD5F8C72F0F823CD6B53 +:10772000A99FFD888FDE6373EECFA1A08BD975482A +:10773000A71639342447CF0CE5219D86A3DBB5F18C +:10774000F479B481E9B57DABFC2D68CFEDE3FD5F45 +:10775000AB2BDF8BF841FF09E13F1964EB4FFBD7FF +:107760005C7FDD484560669F4C7D250699FCB865C9 +:10777000E055EA377F5922FC3BA184EA2BB56F061E +:10778000CDABFBA5C8E5C87782343FCA9CCF5C5718 +:107790002068C7D75753767C9D4F8FFD22C5F21FB7 +:1077A000CC796F7EA884C5A978BD791BAB9B7A6D17 +:1077B0005F4A64FAB43D9BAE1FE865FE93503FDD1F +:1077C0003E8FE6C95EB09E4B899F8A9E43FC4CA5C6 +:1077D000E73E172CB9203D779A9018DD8F8F36EC55 +:1077E0005E02EB7BF9EBD3AA303FF4F400A3D72B76 +:1077F00038DE5F9647E75BE13BCDD77B92EFF3E95D +:10780000347E1359D6EF3F5472B9F632E78397DBD3 +:10781000ED7CB0C2B1AFB70CD8E15DDB6687B731A4 +:10782000C8CE255F6EEFF4A15C3966D2CDCD2EAA0D +:107830007F8EC5970517E6517F3C6ADDA7C6A09DE0 +:107840006FCFC76F370860DFA3FFFD888FDADDE9F0 +:10785000F8E81B6C1FDF5718BDCFCC1227D4236963 +:10786000F9FC867DDFD19EB0E2F100E743B37E6391 +:107870008BC3AF1EB3F73F2A323E36FAFCD4FE5319 +:107880006506A70A7E88C1E87911EAC3F4FC8EFE7A +:10789000374829DBFCDF08964C39FFF9ECA9FFF1EA +:1078A0006726F667FEEA02F9EF93F267062F92BEAB +:1078B000F7737BD0E9D7A4F506B76F4C7B667DB62E +:1078C000767A08F98BF3EBCD032BA9FD79548C77ED +:1078D00063DEBA7144A479AA471B367462FDFD8148 +:1078E00012DBEFA7851C7AD3D43FE7D39F4EFE3936 +:1078F000BE664715CE7B7CCD7536FBF7DAB333E831 +:107900007D37B36EC61BD2FCEAB5EFFB5B0199CEA7 +:10791000FF16B727D3FDCECEA4E3A4EDE2817534E4 +:10792000DED0DCB867896059CF8120F3039E0EB2A8 +:1079300075A4ED6289D9C593C5DBDE70C8BBE37C55 +:107940007FCD78DB1A293E61BCEDDA4697433E31A4 +:107950003BCD298FCCF667B9DC75CEE3C4E785CE85 +:10796000170EB07C6B33BE47DEB2DBA993D16F7AC2 +:107970005E477BE7BCFF11B4EF8373FEBFC778FAA5 +:1079800014F1AA8A2C7EEEC3E35547BFF4999F6198 +:107990009CEED8AAE796221DBE72E77BC7AFCB4309 +:1079A0003D7E6829825F81F1AB85288F888C9F029C +:1079B000301202B50BAF1B5847FD3268CFE4D2B18D +:1079C00059F4FE6D84C7C3401ED9F4A0933FBFCBCA +:1079D000E1FC073FCF4F2783C5343FFD02F1F5E2BD +:1079E00024F8BA58BDF15D73FE8F16CC477DF003C5 +:1079F000BFCACFD386593C6E19FB4EF5901CBF838E +:107A0000E6CFAE09AA7B59FC92DA73AB08A3A72193 +:107A100049DB7919BC1F8ACFD20DA8977C7E256DD2 +:107A2000BFAAD1AF62EAD24AECB304F6AB2E60E053 +:107A300078D5471BBE8FE70FBF6EF268782FE8F945 +:107A4000F80617C6DF8E3508F4779FD65C153F839E +:107A5000F95E6BAEF36B1847CF8D9550BBF07B385A +:107A60009F25EFED58BA9ED8510FEBBE2C7F4844AE +:107A7000121CCE4AEC5060DCEE8E7808F3965BB3B5 +:107A800016EEC0BCE582027DE4AA28210F652D5EBA +:107A9000A15C09F03E68F6AFD981F70BFE4E4C941D +:107AA000E0FD83E359D7ADC0FC7249A8AFC4FCF335 +:107AB00017763FBE03DB5F7BEDE69B9E84F767B3E3 +:107AC000EE5C8139388B9ACDFE1D2B964984AC5ED5 +:107AD0006AD6BB3D58CFF3C735B112E46256E50A0A +:107AE00009F3A873F52D98BF9E9B5D49E1A9491044 +:107AF000962763EC5CB1AC2C335E22AB7207E6C117 +:107B000084DB97915F819CA91935E83D909FD7B69A +:107B10002DC3FCF8ABEFB97B47642E218B63B57E98 +:107B2000CCDBFEE23D8FADF054D2F3AA4A0DCA6B16 +:107B3000EEF92B3AFEA266E3327C2F93EFEF8855E5 +:107B4000225CFC5CAE283AC7F67B77E52C4E95AEFE +:107B500087587D68FBC4F961AF64337B66C837F131 +:107B6000FB074C3EE3E78AD92788FE4404CFBDC813 +:107B700090027AE21A0FA9C6B87912E3CB0B2DF363 +:107B80002A0C2EB31F31AEC945FA6EE031737C8FDB +:107B9000E738F7733E9B15657C9CEF6276F858A535 +:107BA000F028D267BE4BF8CA4A785EE02389FDF818 +:107BB0007E1AA1F50642F4FD81CCB83FE5C32E9FA5 +:107BC000157F0CE9757961B812BFE70EE3D1750135 +:107BD000BC5D8AE51C0AE09610EE7CD7AACA2D117E +:107BE0000BDC1106F7502EC3C7D0EF589C6DE84848 +:107BF000E95EA4DF2F65D9E5D6A2912A7AAE96BFB9 +:107C00000C7C1FE4ABBBBD349F9D2889A8F5F7838E +:107C10001EE7786C75E4E1B44AC332F2792BCFC326 +:107C2000C9EF9C781FCC7862EBD91C622CB03E6700 +:107C3000EBC98C9347DF033C2C4F7E1278FE360D48 +:107C40008F3DCF26330ECBB3F9B4E149E7E9A53F29 +:107C500010D1C1EFC330BFD1CC079E4C7EB63AF2F3 +:107C60009D33F3B23CE7924BCCBCBC6199FD0E0254 +:107C7000836F5C7EDEFEDA42F69D07F3BC9BD38108 +:107C8000CCD68FFB6CCD2B38CDE976B549DFFC9C8B +:107C90007DC37476CE3EF4BB65F356D2F1D8B9E419 +:107CA00090C4FCAE45924ECFBB178DE4E22FD3A516 +:107CB000E9D2A447939E8672DB6A29BE560A137ED8 +:107CC00087EA8CC99771761E53D89C7059F3FC4D86 +:107CD000BE73F229210FF3FBBFD1396B512EA03FA8 +:107CE00088F047811F6DE7EE0CEE55684B2FA474AA +:107CF000C0F62FCCEE5D98F8194F0F33CE430F33FB +:107D0000E9FB4523CFCAB8CE560E67E189E1AC79CD +:107D100011B68E4D501ECF66E744D76631BD56FD75 +:107D2000A365FECFF0F81E8EBAC894CFC69B3FAEB7 +:107D300003F95A9896D7A04FA81E2366DEE2B0A298 +:107D400064DA1FBEE7CD155D52063F79681CE45A20 +:107D5000FC1B8ED7F57CDD803F43C9B5C90D52535E +:107D600095916FA69C30C74BE33F9BD1C7025EA69F +:107D7000E51FD7B320EF0C763FCC4BEDEE4F5EEE18 +:107D800009E7917B2BB9DC63CF0F81798CED36E469 +:107D900026D6098093238797CDC678ACF9BB128D80 +:107DA00042A21BF3B337C8D1EEA0851EAFC5DF9149 +:107DB00028C7AFC088F47E4DE308FB7DC9D571EFBD +:107DC00005FDBE8439BFF93B134762ECF794D270CE +:107DD00071FC6FF08D6D63F90276FE34EB1BE600EB +:107DE000DCB32CEF035CEFF9F478763EE6A1B0FB50 +:107DF000E4A43EDF76BED19265F753CC73EBA85F67 +:107E0000BF0EFB39DB8F9783AC7D3EFFFD5AFCF242 +:107E1000FF7CD8C7F55F21F47B1D858384F3E7B031 +:107E2000D84AF51B310458FF8BD9C5CCBE5C13A0D2 +:107E300097F0CDF18E0AF1229A6F9FEF89627C0351 +:107E4000F685AE7FB96B0BCBEB9BC5F2FABE969D68 +:107E5000C3F5ED5835AE33DFCFE8F09097285E18C4 +:107E6000FFC7502A5519B9F4AF33E7D27BCDA63CF2 +:107E70004BCBC18F5CC35759DE1F125616E115F369 +:107E800043F985559D021D8FE60F9AED615C9A4777 +:107E9000B8E20FEFBD75157EDFAC948D9707F3AF99 +:107EA000B2F0C1E2185B777736E3A7EE6C763EBCA2 +:107EB000DCCFC63B54026482F3CC86F56898079306 +:107EC00088B451B8EE66F7287CECFBCC057CDF0A61 +:107ED000F8EF443EA9B2FD7A5B65E3B6F17A41D68C +:107EE000C4DF0B38C4DBD194093C7F68D8EBC8539E +:107EF0006FA3F740CDEF40F6D5B27B41CE71F6705F +:107F00003B09F4185DEF78BDC2E49F6F495D08C777 +:107F1000EBE2792BCE76B27F54A1DFBB9A2789346E +:107F20001EC2F59069F7BF3FB8927ECFFA00971B4B +:107F3000B2E3FBF75D49166FCD3AEBA77EEB8F38C6 +:107F40005C52F929BACF520D0C29E077E6E2866A35 +:107F5000D967B76AFFBE47D6D92CDABFF5EC029BCA +:107F60003D325E5E2FB2E507A7E13C791D85D3B9AE +:107F70003E27DE8639BC665D2F97EA8905AE5AA298 +:107F800076E13CB5C4992FB354A5F7EB80DE308F72 +:107F900013E437D31350E2F709509FA25C34FD116C +:107FA000E42315FC918DD9B5FF92BDD0A25F783F37 +:107FB000938F877EF79E1164F65C2E6838D2C4F9E1 +:107FC000BF89CB7B539E3BF38C0A4D39CEF93DA63E +:107FD0003C77F9298B9EDB98ADD1FE8705F3777D41 +:107FE000A3348F70D152260F484C2078FD78713D14 +:107FF000B1E54FBC991DA0E3BDC9F9C3E49F55CDC0 +:10800000F6766F6733FBFAED6C96E7713EBD94969A +:108010008B054C2E4A3EF69D83477EBF8CDE831D2A +:10802000FB999BE6C191030C2FB5D76FEBC4EF4DC5 +:10803000B90705D59A471668DF7FF94658E7FFE587 +:108040007CDC9AC7E06BCD1B96CB00A4E9AD0CCECF +:10805000A2C1838264D9FFA216D64E52DDB4DF7F5F +:108060000268598654008000000000001F8B080041 +:1080700000000000000BDD7D0B7854D5B5F03EF319 +:10808000CA4C324966269364F2E40C010C189249FA +:10809000801094C72410881274121E06041D1E42FC +:1080A0009410528B6D5AFD6F060214236AFC548A99 +:1080B0008A3A44B4D46B6B50DA46451C10107B15D9 +:1080C000038A62451BD40222C208DEABFD2FB7FC37 +:1080D0006BADBD4F66CE4962407BBFAFDF1F3FDD5A +:1080E000EE73F6DE67EDF5DA6BADBDF69EF41A03BE +:1080F0006323194B6FF06E616EC6CC362363A318F1 +:1081000033D91863C9F02F0B4A19F03EB396B11654 +:1081100019DA7998376865CCEA094A0BF318AB97F6 +:10812000A0C918C6D6E9AAF26C4E2853E23CCDF09D +:108130006CB2DD9F6083FE754743A1786832FA68B0 +:10814000A7C10FFD16DBBD8936189F75C0CB34C69D +:1081500064BD2D9DE530167714C685F15A1DEC6679 +:108160001FB4BB887F13F0FBF7103C8CB5113CC9E2 +:108170007AB69F39B0CE420CBE27CFC96D6B912223 +:10818000ED531CCCDF0EFD535298FF052BB55FC796 +:108190008AA0B599D13C53560D696B71D3BC68DC8C +:1081A000F21CDF167C5E9E3AB4A8199EE7AC0F194C +:1081B0001640BF9737E92A82517028E5709B44FD2D +:1081C000601EB9D1F3D0B68BC01FE07814ED8CB12E +:1081D000EAF945DAADA471E32A387E4B673BE7E064 +:1081E000FCEA56FF312E063E99DEBE598ACBC37695 +:1081F000F7513B05EF00C71884C3109B90CF12B115 +:108200005DA9BC12E9F996D1834DFA82AFAEF1C5F2 +:1082100082454951F5D526C2FF6613AB6DCF8B86DB +:108220006B157DAFCAA6A3793C62F755205DEB3B89 +:108230001E30213D6FDD72CCE4CFFB9EF95F227EC4 +:10824000A45AE6453AD4D5988338DFD2D99C2F97E3 +:10825000AE360563802E75CF6D0BE9A0CEEE629E23 +:10826000C150D4B56FDB970EF8C9A8F38ED2035F67 +:10827000A6009375227E0C21138332BD2E24B1817A +:10828000888FF975C4DFAE380FF2F75E136316E01E +:108290009FD3A5D6805400A531902BC3FBD3EE58B5 +:1082A0004F00DEEFB3B080D911C1EF1BDBA6EC9716 +:1082B00012188B7F212684E562BB7F29E2BB65A56E +:1082C0005C8AF469296736E41B39C6B79DF83135F5 +:1082D000DE13902E7DDEA305BD95E7A3EFE272F0DD +:1082E000B82D41C81F2BF2C1DCD6D8E2A99E02648A +:1082F00028017EDE67E4701A049C676CDE5F123F23 +:10830000A210C27733597097C9DDF3BB517C13B00B +:10831000255F0E9CED2619E05A5ACBE12B9DBD45F9 +:10832000FA2C8AEEF7DBF4C427E9CF6D9664E2DF1E +:108330002D2BCB9DD49EC5A0DE784EA27E4BE1FDB9 +:108340002D517A4399472FFA6303CEC77AB4730F3E +:10835000D71F21E237055E858E0ABDDA6C32C1393E +:10836000D9C402161A6F411DD2635D3A1F4F91673F +:10837000ADFCB509BE4EAFD922E9F2709E9D34CF57 +:10838000653506A2CBEE1B6E5A84E32C73A615222C +:108390001F3EF4A78326099E3F8FFD00BE65AD9268 +:1083A00017F50D6B3D689A391CD1F55B3D4B616C3F +:1083B0002AE37F1BFE70D024C3F3A9DB251A6FD9F3 +:1083C000F66D8685D608FFB94FEDBE09F973597B66 +:1083D0000CB34848173E0F2DDF815E2079600153B2 +:1083E00070B09BF45A80EB41BFBB3A3EA237CF0836 +:1083F000B898D53752E7443D38BC10F5DD6E314FA3 +:1084000065FCF258CF6E33EABD22C9D3CC108E433F +:1084100004E75EC4E3281A3F447A93B181BEE19138 +:10842000F17BEAFB2B8B10BF5F09BD08747BBB3768 +:10843000BDAF8CEF7EA29AC9F151F4403C47F1D117 +:10844000519B89C6396A33109C86328E278389CF27 +:10845000DFB0CA1C44F97AC35EC1F1E330137EF683 +:108460000A7AEF15F45EA75B95DBC0D79B8F918FDF +:1084700076DF90C0B87EE1FAE4A117255E0F58833D +:108480000CFEB7CE3F83E8CC9C16CFD3B83EF8F7AE +:108490009866C647F84D4B57F9855D269CC7D4763C +:1084A000CED7117CF17545E143D053446FA413E25C +:1084B000519177058F0A5E721479B77BC38950DEBC +:1084C000EED2CB9F837EB6CE0D0798DC532E139948 +:1084D00059B6E632D6C074EC22C05BECE175FCBB49 +:1084E00008FF9E6B952A508FDF0E1AA1310A2EA528 +:1084F000FFED2E138DBFB4F13FD2B0BCCDF5269564 +:10850000CE38A033F4330E54CB49AC5D22F8CE0BF9 +:108510003ADB051F2D1DD94EFA76E9E70D2437D633 +:108520000AAE1FAC47D57A8DB17BC53ABE5EF4E387 +:10853000FA728933DE23497DEB9F2512F3E13CD8A3 +:10854000858B7A560CF8B488398AF703ED9CAF4FC7 +:108550006C050290FE6F30B15ED6D7C8780D07C6A5 +:10856000209DB7E93D4FB39EE3B2D07B12D279A9EB +:1085700099574F3F3771CCDF804F025B133D8361CA +:10858000CA5F3E37FD177F83FEA7B74CF0E8915DC9 +:108590009A7DC437E1648BA70DE8E0D4B30A09F0F3 +:1085A000BDB2FDF584ABA1DF17FF5E5084FA6F8C7E +:1085B00080F3D48BFA46C4CBA9175FBFEFFF42BF4D +:1085C000DA60610AB2C2AADFBC66EA02F875C107C6 +:1085D000FE81EB5AED96445B0C3C6FFEF727C763B8 +:1085E0007DE99644D2A3CDED4FF1F75BF9FB534FF4 +:1085F0006D1E8FF8DFFD9BE777E27875BE040F3EB6 +:10860000FFE237CF8F47BBED61E07384B3CE6FF0ED +:10861000121E15BED6EAA96DBB880F153E01BE66B7 +:10862000240F355CDF287C7C08F516D819D565D673 +:1086300075581EBAC65243FC2CE4B37E8E7D33AD12 +:108640007F017700FB4FF7D90B5BA0BA50CCBF2E50 +:108650008FF3C53AE01A0BE0292E2F64CA807637D3 +:10866000CCDD361EE15C17CB4A2CC4AFF010E852CB +:108670004DC206E3B4BEF177291FEC2F507BC781B2 +:10868000CF61B42D174730F63E98ABB47EC4F27577 +:10869000E086B9C7245A2798C1765CD01028FC3DE3 +:1086A000EB9B81C653DA75DB6B020F0067408C4F82 +:1086B000EB4DF10ACEDF7BA505CDF1A86FEE088D5D +:1086C00045FDF9F2C9DB63EBF2A2F99CF74FDFCE6F +:1086D000F5C3B2ED9B579AA0FDB5B985C5F899656C +:1086E0008D13D967286F7A89E4AD3E6055E9C13BA7 +:1086F00085BCA5D898F32AF86EB98139AD5832F601 +:108700009E91F0F334FF8E01441CF07E76E5DC642C +:10871000B4833718FD69A3F07BEBC43AB685C30B6D +:10872000FD6DD6221ACF7655118DD36974A0DD0266 +:108730001386FEF26B53B6AC942270034767E37A5C +:1087400086E38DB4E2FA13A8A1F5473679901F4E5F +:10875000619334C257FEBCE19179837DE2473E4B81 +:1087600031713B1CF55E553CDA8DA50FD99323651D +:108770004A2C7FAFA5C707E2BDDDE17DC88E706CD6 +:108780004D223DD99F7DB2FB8633243F0FBD728CB5 +:10879000F4513DF23B7EDFFFB96A5D56F869C34B89 +:1087A000C788DFAB3B387D36485D6B515E02D748EA +:1087B000239E46396FF2B2CFC0D0AC177CBEB4E274 +:1087C000D8629CFFC08E341BEAAB33420EEAC777F7 +:1087D0000DA175F7252E077B753AC2E7DEB62B375C +:1087E000E33A04762DB1727D83DC1643F8E5767E9C +:1087F000E9EC450F94E3BA5FCB3C28D7F5DBAB320D +:10880000655A7F6208BFEE273E5D8B726107EBD52C +:1088100022E3FC3E998CF0D5D7B15128DFE993BC17 +:108820002F619D75480CEDE194D9CE5203F1D7FC30 +:1088300011C85F1BB2DAD7E2FA1E00FB14E7B3C11E +:10884000D85A6680FA8672D9061803FCC07A87FD6A +:10885000BBD7BB19DB497E9DF33C2D522FFAE1A516 +:10886000CD2E1CAF3ED7E4413B656A07B7AB19D8A4 +:10887000D5086F7DC7CA5C847FAA7C95478FF68038 +:10888000C08F82A7A993804F717E012BC3F6678C9E +:108890009D3761FDCC1F80012512D75284EF64BE45 +:1088A0003402F5C51B2F81FD931FE1C7F83F821DE0 +:1088B000047587C1267948CEA6C744D3B3D5C8D797 +:1088C0002BBB587F722A385D8F09393A26F4CF3195 +:1088D000BB49F0772B2F6D817C5C97BF12F4A6E12A +:1088E00050FF8B71972D0A911CD53DC7ED37678CD2 +:1088F000B7F0A7517CEB9CC8D7CB6490E32A2A75CC +:1089000054A6A0FFE244BF5A6ED3133DAB89BED735 +:108910003AAF28B2405D72F075343D579AC3F162A8 +:1089200022BC2427F91F40BB393C542A6E937BF2AA +:10893000BBD1C1E7919CE41B2941BB64F03790CFC8 +:1089400092F5A53A0BF62B943CD82F595F4D7E6DCE +:108950003839CDD3A6926B6E179E4C89E7740EBE44 +:1089600063A88ED2FB117FD8E241BFE6A42E64B08B +:10897000B8F9FC7CD6C8FC822B636BA2F5559C9899 +:108980004F7028AB41F907FBDC6A463D6503BB0825 +:10899000FDEEB6AB9FE27E7733C1FFADDDC6BF070C +:1089A000F3403B2D39C7B782AFA3F1046F720E5B62 +:1089B00080FD929B5D12C211C1A76D33E2F311419C +:1089C0004FC53EAF073E46BB8E19B85CC8AF4814D2 +:1089D000AFE84B0F44F89AEB81A91D9CBE71155C62 +:1089E0000FB03C6904AEF7A8DFAA86733DE02E887D +:1089F000C86FBDA96B08F2E1A5EA81F2B820C94FA2 +:108A0000F9954328CEA08C73C6087E243C3F0372A0 +:108A10004A76ADE0FBF89739BF2B74D9670A907C92 +:108A2000ED1B184BF446B8D02F54F463FDCB770FF1 +:108A3000F1F71A5750D6B38017F1747220E3741708 +:108A4000E39A618D8C2FA23280EB435C235F9F59A8 +:108A5000858EDAB7E4BEF73B6CAF33B787906F2CE7 +:108A6000999DE3D0DFBED661A5711FD7D9A8CC6E82 +:108A7000F431FC7E0AFA2488BFB6B820EA15250E28 +:108A8000A3856B9CE01725DEA1F8172909BCFD62C0 +:108A9000C1E7B31D5C7E978B52815BB1B7A1FD40EE +:108AA0003470FA5A4F947EFFACB890F21D655D8B1E +:108AB000E099D313E16F1771ACAABCBEDBB5EEE24F +:108AC0007A83FE902E2FA76D6EA17555267AAEB1D2 +:108AD000EB843FE52B7140E9A8E0FEEFEF25902FF6 +:108AE000FC7E8D41877C7C8785EB29EDF8DD7E79E6 +:108AF0001398B457F4BD7EDAFEA1277819F3321C1F +:108B00008FE20928B665151E9CEFDD824EDA7E06DF +:108B100066F8A64BB19BDC51F0089B0B44828D2F6D +:108B20008A862BA81AC73656C74251FE8AB67F5F7F +:108B3000F0AEC3F9C444D57376328C3FC59913386F +:108B4000DFB20B64CFDF2DC601BEF754917EE37117 +:108B5000ACFEBEA385D322ABE1BC54FCAFD36DAB5E +:108B6000457EDE29E0650F5DDAFC7E2FE8755F93B8 +:108B7000994A3617FA1547FA593DF24A5CE70B76DF +:108B8000C885642FEB78BC2E7E3CFB5A0FFC9A50B4 +:108B9000D29ABB0AF5B54F0D776A4D2C0B9923F588 +:108BA00034BF4355CFA84D57B5CF6A18A87A3FA018 +:108BB0007198EABD3B50A4AAE7ACBB4AD57E706B66 +:108BC00099AA7EC5C66B55ED8706AB55F52BB7CE7A +:108BD00051B51FDEBE40CD1F1AFCB5AC6CAF41F9DC +:108BE00099F08FF365A46F5E66F6A79177CD5D234C +:108BF00050DE0A3AD4F33FE970105D124BD478B8D6 +:108C00005C7E98F0DDF7F3AD2247718CF345DC858F +:108C1000755FEBF3B1AE911731EE78339793FEC6E3 +:108C20005D15779301F97C2756A2ECE1431A792868 +:108C3000AF48E472F05D753F76339787EA18D680C7 +:108C4000FC5C1DC74BE5FD15495CEE0724713D7CBE +:108C5000A9FCFB17C1BF47FAE2DFDA6D7B53D0DE18 +:108C6000A960E44FDBFC2BBFC6F8CD8D86102B44EA +:108C7000FB5DF4DF20FA6F6CB2D1FC1E6D7251B94E +:108C8000A949A6E74F34E552196CF2D0F3B6A61203 +:108C90002AB7801D87E5334D15546E6DF251BB67C1 +:108CA0009B6AA87CAEC9CFE5514BB7EF1CE4CFA0BF +:108CB0003D39DE1199CFF40ABD9A2ECA7AAAE93F4E +:108CC0009DADEF443A6BF1D1A3BF7E6E626FEBB402 +:108CD00052361E2DACD813C59FC549F1CEE3C84C02 +:108CE000A3D968F24FFBE9FF6D93A762CFE0FEF9CD +:108CF0005ACB3FECC288C1BEF89EEFABF1DB578187 +:108D0000DDF9E0FD7707F27A8E0BFA707517B04A3D +:108D10003ECA5E541C799766DDF11A1255FEAD52BB +:108D20003E9FC4D7B952E4438C2BC7F15279DF2A56 +:108D3000F8B0E1FF533EDC6D89273B7AB751CE4C4A +:108D40008EA2EB6E4B1C3D67B94C9E01EB97E46520 +:108D50003637E8899D4946BE5F821E03C57F07D925 +:108D6000287E61B9CC3887068F1298D76E18AFD499 +:108D7000C0F91FC60F19707C8F2EA22F07E27F63E8 +:108D800023FCACEFC90F304EC00470FEDEC8641384 +:108D9000BC3F9C2413BC0A1C6506FDF7EADFB23E0B +:108DA000E4A847BFCB94A327FF97E548E177762156 +:108DB00067506F72548ADF4E676C565207C991C272 +:108DC000EF65687F45C1712089DBAB0704BFEF16F3 +:108DD000F606F247512F76C7BE24B57D76B9F82E38 +:108DE000657CFD61AC2B1DFDE0CBED0F9263C07E79 +:108DF000A5E684405CFEE5F7EF0B9F3DFA75382F42 +:108E0000290E049A4642395F2CA05B6CB606909FEF +:108E1000D846E3E9AE283EBE23D6772C09F0D661CA +:108E2000641DB8BF00CBB66C4B21BE27BCC29FCF20 +:108E30000CF542511F1D90889F63A0D288F2D1B5D6 +:108E4000EFEFA82F0A45395A94180675A1DCE4C53E +:108E50001B709E1E054D229E59AC542781A992423B +:108E6000AA95FE4015482B1CE88EB432DC0F6F919A +:108E70003CEBF4F03D7DAABB19811A5151AA67B4AD +:108E8000C5D64AE558D6D9EC84723C0BEBB17D8946 +:108E9000B9BDD900700E60176CC4E7A9CF2CBB0810 +:108EA000AE61A399EF0B7F6BE165A08C91BF13F8C6 +:108EB000C41244BF661AF3EB9D80879FEBBDF3702D +:108EC000DC2AFB5D05185C057DF16917C559259203 +:108ED000F332EBC89A5B483EF973C2A33BD28EEAE9 +:108EE000FA9EF587D7F07840F3DD9C8F9B57F27A96 +:108EF000A693F3ADC3C9F97DB053EC5B21255208AD +:108F00001F84770B0B0470DF96E5023E8B397E09D8 +:108F10005FD6FD84EF58D64EF8B2CCDA48F081A285 +:108F2000B71DBF129019F2B18B713DC7EB6B1CB32B +:108F3000B9D56B06BE889B1B0C187B19C720E8624D +:108F400098610AE813D0EFF55F897863993AA273C4 +:108F5000AC329ECDC7D8C0083F5E02FE475C0AFE19 +:108F60008D659E4E2FB0D0CC58C9D3F603E850E99A +:108F70007428FBC9C48A3BD3D866F4EB6B9DCCC57F +:108F800080FF4D5633C9C9EA2C99E2F6A621CCB32D +:108F90000AF1E5D311BE94F9C10386F2AEC81DE013 +:108FA000612AC26F0A4AC7102F265703F963CCD033 +:108FB0009581ED764A9CDE5A799DE954FCF94CCEB8 +:108FC000AFECFBD7AF6DD3EC1F3949989EBCF6AD23 +:108FD00012A897DA6F74DA40A53E5C70AD01F4C256 +:108FE000B6838C84E9DB87CAEE41FDBA6DA6FDB17C +:108FF00064687F4BCAC72D467C3F4FA2F7271EE609 +:10900000EF3F2A65ED18B779C0E15FE80438E6BCA8 +:1090100025EF45B46FDB775B36AE0BCE899E2E3DD8 +:10902000E2FBC61819F775D8058003F0F01482002A +:1090300070B663BCD0C89F4F80E7B315F4F4A14766 +:10904000462BF580C40C501FA7D4C5B85BB09E1347 +:1090500069AFE89D9C453FF9EBFF41FFA6534F796F +:109060000F520DDF07192DCA71A22C14A5A3E2819E +:10907000F21468BF643D1B2141FF418B947D9C9895 +:10908000E060F8DF019BE03DD44F3CC046A04C1CA3 +:1090900037CACD56E4C7E1CC8371626074E2CFF782 +:1090A000B3EC418C479C905833C591EFE67164EC6A +:1090B00083FB899E4540EB9168F29983180F7FB737 +:1090C000A9BD60B5314AFF016DBCC53CBCC2F19081 +:1090D000477ED15816F9C3799647F044723459D473 +:1090E000A7D4F138588C17F422AE4F1A7D6A61412B +:1090F0009799F0E5A63C0CFD14664378B32B42B07B +:109100005482BEF496925E1CC5FCAF774239C6BB52 +:109110004DE8C960334E91421839B8FEC906A4E73C +:1091200044B050B15EC15AA9BC96B55359C93AA9C9 +:10913000BC8E85A9F4319B11CB6D4EB7F0DF404F4B +:10914000A3BC1B648AF71D7FD3E6C1B8637585DFB6 +:1091500024F7625F2C3630BE0FC7FCD9281FCCE045 +:10916000CF9E15652F1C9F7DC33C2FF493C53E8A6F +:10917000F2FC4F4E6E0FEC127A738324F4C832293E +:10918000887EEF86D926CA9F39B44C6AC3F83BBCA7 +:10919000A7B86B60B699E2701B8C7216DA0F61A7E4 +:1091A000CCE3C775DB7ECE1270FF6E491ACAEB1195 +:1091B000C93FB916FA2DAEE47173660864CD8C927E +:1091C000F313F3395C4ABE81F2FCCF428EC3C8630D +:1091D00000D709809FF6DF94B8DA1C3BE9997258F2 +:1091E000F87F02E37E28F47C50E805457E6A153E50 +:1091F00030044CE9D06F96C74D789C13E471D97256 +:10920000030BA1BDDB0D7FCDE63B18F0C79CDA5DFB +:1092100086C579942F44F1CAC5227F48AA95D738CC +:10922000715FF12EBEBF12C90FE2FBC38BE76E9BCD +:1092300047718345310CE562F1C6073E4679BFA10F +:10924000768A8CF883EF515C74B299EFFF99E1FB59 +:10925000B85F36A556E465D4FEAA13F913DA79D1BE +:10926000DE9D0CED0D459877C3F3D962033C3F2892 +:109270007692921FD4B03719F38396334F003E7B1A +:10928000C3A6CD12E3F13FB287FAB3571EFFD5054F +:109290003BAE47B4AE0F00781AF5F2E723703E36C6 +:1092A000EA3FC7CCF1B7AEB699F8F03F6B6012F069 +:1092B000DD59ADF3D724D3BE9D906F067A0DEAE653 +:1092C0008A29328F038754DFD7311E87B81DF30AEE +:1092D000E8BDC6DE07FD86EB415F769202BFB9D1DD +:1092E000C4E1D3CC43D10FA847C2BDC8B554F106E1 +:1092F000B7AB44C98629F690DC8CF319D1E925FB7C +:10930000C7CC7C7AAE2FEFE2EB87E51909D769B3BA +:10931000337013B2D8893D83D658093DAD2CDACECF +:109320003797F96EF145C9D5DDA5BE79D1790E83A0 +:1093300092B97C0D4E16EBD35B816CB4E74FBECD7A +:10934000D783C02D3132C599FAC1034C3DA8CBB9A2 +:1093500084F92E12FA5B9411FB8FCF7774F240825E +:10936000676445951EED8A17378F7E770CEB49B7FA +:10937000BEF8468B9FF30EEF8464B2B3BCBA4BB118 +:1093800093CBF59937D601BF9C9B1B4372A4AC7B52 +:1093900045480494D34E160459C6F580D689B47551 +:1093A000CC26A18882196450C51FCDCCA08A3FDA93 +:1093B00054F58C5A97AA7D5683AC7A3FA03157F565 +:1093C000DE1DF0A8EA39EB4A54ED07B77A55F52BC4 +:1093D0003656A8DA0F0DFA54F52BB7D6A8DA9F83C4 +:1093E0002985603E230FEB3D01A46FC0DB99571C1C +:1093F00059C787B7FB55FD4777CDAF447D54D05152 +:10940000AB1A871D053BCC8C793A0D821E1E3DEAB6 +:10941000050F28DB47DD8842FE9EDA43DD73F49AB0 +:109420002F502FCFA93146EC37ECC5D6531CD1A312 +:10943000B1FBB47EEE92FD81BD56806FF65B81B5C7 +:10944000C8FFFF96ACF67BCBF5569AD7B9F7F494E4 +:1094500027528B9CE98CD0F11C0E84F3DEC5823C34 +:109460008F433D6FC52F9E8DF8817E73609C10BC2D +:109470008A71A9E96D91D5F48ECB55D33BDEA3A6B5 +:109480007762899ADE766F6EAFF84DAA50D35DC1D0 +:109490006F09FC83F8FD67E3F399646DDC602CE9E8 +:1094A000CFFFDC1843EB442F7A6086B9B8A71E5073 +:1094B000F0D6431F58B93FD2AD0F360A7DB051AB3D +:1094C0000FBCAFA7A1C9E1077F10C6FD60DEE80CA5 +:1094D000D46BE96C07F9296010F9311F06E4FB151C +:1094E00094EFB8464F5700F5FEA618B21BB7ED1D16 +:1094F0004276FDA1C16C1CB90715DCAE6F31713825 +:10950000F760F06914DAF3BE3DD8DFD8D810427B9B +:10951000F843F48F713347A32F9846DF69ED5E451A +:109520009F9C18C7F9E983B7597095847EF441D29E +:10953000DF97BB2EF4E73F77EBD1B97CDD182D4ADE +:10954000B62040F63ADA8B583697F8DD12E0B3C809 +:109550000CEB882EDA9FEEA2F564020B90DEBDBA0A +:10956000C2F3D80A86F6D10719681F69FD6AC0F3ED +:10957000498EE7EEFD52153EB5FBA5E16465BFD40B +:10958000174E8EDA2F7DC1C2D7E3C3B3B99F31F234 +:10959000E0A0662BF44BB9D5EDC17E2FD83DAF636B +:1095A000FDF032EEF78D7ACFABC7BCA39C0637E552 +:1095B0009FBDE0F64DC4FAE13BF8FBE2237ECA4BC7 +:1095C0001AD4C8DF17AD6A783D1EC69FF96FFCFD3F +:1095D0002B5FADD527C0FBE02AD1BFB47522D60FD3 +:1095E000AFE1EF471F0D36637DE83AF17DA9FDF548 +:1095F00004B423EF9578BE9CD6BF11FECC044187FE +:109600001E741476FF78D15EF15F26D470FA2C0AAE +:10961000FB26137B69E8A4B5CBCB999FEA5358800E +:10962000CA6B5890CAA92C44EFA7B12EAA5F0FAC01 +:109630008BF52A261B89AE29B984F7E9E0DA521C9A +:10964000A1C46346BBDBF9F99F7FC11222FBCFCADD +:10965000FADFEAF02D43FBC039D17707DA0563530F +:10966000B8BD1A29B97D90E208647BE0FD49A3D812 +:109670000FECDE472EA63C07F8E47AB4573D2926C6 +:10968000AAE4AC6F30A03C5E972979307F610ADA9A +:10969000B3809FD0AF0D76CC53435AF4E6F746E241 +:1096A0005B9AF8AD2140FE43915EBE128564E606EA +:1096B000F91EF4835F40814C0776DC306C6A809C35 +:1096C0002D6EBFF4D7EE3D91FFF282D84F9CE1732F +:1096D000EB883F0BD5F6D14C317FA51CF5DE3F77EB +:1096E0005E45AB02940F3DB32D86F1BC15968EF905 +:1096F000298B5903D1F5F8F000D155D13F3305DF5F +:10970000CD14FC747C730CD1E1C42D525002781638 +:109710006F7AE308F25B9FF651DE60D23333047F49 +:10972000CE3237CCAB43BE56ECA65F0FD35FBC92B4 +:10973000F0A8D67F7DD87FC9A2AE7C4F3F9E05D0D2 +:10974000FEFE681ED77F190189D6834BD57F4E8DCB +:10975000FE4B57BEE70596837AB6A2FFEAF8FC9364 +:10976000459951A75D3FFC2B91FF5DAC55C27A1620 +:109770000B532933DBAAE41C0C597974584FDDBB19 +:1097800067258E6F477D87F3BE7BF748D4774611F8 +:10979000DF359A61DD84F12D4E2F25611AF674C7ED +:1097A000C3EE4DC1C9FFC87818584AA3C92F660D2A +:1097B00005587E6EB4AEA3F8AC366ED223CEA28E20 +:1097C0002F8C6BE578905A9575C0EFC2F961BAA3FA +:1097D0006A3D18E391B19C20F9487F4C4EF23F8DD1 +:1097E000F398CC1A32B1BDCEDCA547FDDF22CED72F +:1097F000B40C51FC48A01E96361ECF2E10B45C9BB4 +:10980000625A8BF1B4B5B1E1961C9CD74E1D666AC5 +:109810003237F86C9DD6A87EB24CFDF26D1CFEFB73 +:10982000707CE817AB938B118E58BD3C04CB4F7501 +:10983000403580238979A86ED2DB9257F2B8E12BAC +:10984000846F168E95E03BEFBDAA93D09FCB1FF39C +:10985000A903FDDBE777B46D6D0396F9663F5F6E94 +:10986000EFDBAA0FC4C0F8F92F4D8A7B1BDAAF7863 +:1098700095CB6641898EF4DF9726B61EF361AACD9B +:109880007AB301EC882F7F26F2530C9EECAAA838FD +:10989000C014178F431CEA23AEE74928FD06E13ABE +:1098A00094C6FB6BDF7F98C2FB17CFE5797AEC6437 +:1098B0002AE1E17C3253E5517812AEA37194BAF1FA +:1098C0003B3BF3479D57321A7CCC66C5E74E7A9EE8 +:1098D00008F627C6E513ED2506E4B73266DBE30597 +:1098E0007CE0D1019C6872333F5F144EB306299E21 +:1098F00037D610EEB6FB06E23AC3ED468AB7BA7128 +:109900003F436D2F1630755D1B5F3D23F4A1F1BB06 +:109910000C1618D11B9CD9F4DC6BB686F4B8E08D1C +:10992000F4E4A25EF65AFF7C84E779813E8882E700 +:10993000670E6FB10BC6DB6EE279510B75DEA9A421 +:109940000C0EE91CE87F1A1CE600E6FF258E73501A +:109950003E5C37DE52397EB7836A47FAD874CCBF93 +:10996000CDDA73BEAB41AEDC785E2C95C3ADB45797 +:10997000F4D83C45AE0276B26BE60AB96A75D9A94D +:10998000FD3C1BDFEFF8F4EEAFD6E0F3F907634DD3 +:1099900088EC9BE7B284E1D0CFFF70D201AF8C7C22 +:1099A000ECD985F92AEC7E6E3FD8CA728B293ECC61 +:1099B00026D1BEA514C820FD7AA9EBC39D89F33F2B +:1099C0004985F9C52604651B8C133BEC24E5BD0DC8 +:1099D0004D6534EF896837E4F4424FEB373AE40BD6 +:1099E0002D5DF1034887FEE81BABE7F9118C750D7F +:1099F00089CEE7BA33B1F493D451947F1A7260FEE2 +:109A0000E2AB319CBFF60369A1BE7CE7508A7F6D53 +:109A100072F98F22DCA327097B714F7808C6D11613 +:109A200026887C3297575E09EDEF1FEB2C6C910571 +:109A3000B2A13ED16CA7BCB0EB045D95795C2EFF62 +:109A40003A71CD41FE97A4609BD4FF7C957C5A650A +:109A50009E47059F28A5320FEDF9B5A3A93AD12E4F +:109A600081CA4D2E1FCD7B7975F8133BC0B0D0C491 +:109A7000E39AFDCD77BE18E787CEF752E97A2685BF +:109A8000F3CDC2D84B836BC58FA4C3A5C2F557C114 +:109A9000CF0BF32F0DAE753F122E2FE3F4E90F2EEF +:109AA000A0E75F919E6C527808CE63A1E3D2E0FB01 +:109AB000DD8FA427C2E7B834F836A13CB210876F17 +:109AC00016F3185D7A014CD47912ED399259065883 +:109AD0005B8B22E74C74E6A01FBBCCC835333DD965 +:109AE000253FEC3C49371D5358C88EFEF8CE188AE6 +:109AF000D7334F7848F4BAFAA2C0CF2697B703F10C +:109B0000BB7088D00B15EA761D82CE4ABB9652B147 +:109B10004E57EA687D6BC91DD4C6F375F9942D992B +:109B200032ED0784522555BEAEB28F77BBBDB61657 +:109B3000F72F947569EDB0DA5CDCB7F0BA7A5F970D +:109B400014384E35EDB70D32F68D87A5FA178A1BFE +:109B50007AD9FF78C6E13F941A95AFB074EB9BB603 +:109B60004151F196E1AC4BC7EDFBB08EF29B95FCF9 +:109B700096D4CBC3FBDB68488F42FDEC23FDACAC35 +:109B800013F52FFF56C6F507EC0186F1DC707C2C2F +:109B9000E9EBE66125B9D1FB35DFA42AEBB9BE8F2D +:109BA000F5DCA47A1E6A32B340541E9EF7A46112FB +:109BB000DA61A5CCB6DA46651C0B44F16DC4AE91F2 +:109BC00058A057BBC640CF15BAF4652728F9A8A1FD +:109BD000A676F3E7E0BFAD6ECAB560B9BBC963F95D +:109BE0001CE8F3706269910BF74B7C1DE6CF55F1D1 +:109BF000D890AA9EE6DF6FFE5C158FED54D5B31AA0 +:109C00008EA8DA0F68EC52BD77074EAADEE7AC0BE0 +:109C1000ABEA835BBF53B55FA7E3E709CA469A295E +:109C20007FFE8A8DCC12FD5EC973353A953C571D77 +:109C3000B51F1A345BA2C72DF35A0376B4CB577203 +:109C400039B872AB4DF5BEF41FD3695F8839981DE2 +:109C5000F7C186B7BB54DF31DA725575AF99E7C3E8 +:109C60003C9C38BF08EDAF89E642D5FB52B64D3576 +:109C70008FEEBCE97EF2590C86BB29DE887B8F63B0 +:109C80008B7AE64F3F9CE8A5EF69F93FF0ABB162F4 +:109C9000DF87FBD1C0B7018C2B852533ADE392382C +:109CA00007AC7C67B28BF36D9D866FEB0C2113F2D2 +:109CB00055DD8FE4DB4712BDFBF07C6AF2C4DEEFBA +:109CC0003158EEE27AE64B53EFEFA78BF7C6EFC0C1 +:109CD00003EB95EFADF4FCCB32DE9F7642416FAFE4 +:109CE000B0ABF13B5FCCF33E11AF5811EF4D757C3B +:109CF0004F3E97F1BB3816EC558E13E8F99703BF2A +:109D0000FF7BCABC2EFD7BFA3EE667A2E740C75E3A +:109D1000F11310F3FAD2D1FBFBBB5C8A5E4A53E924 +:109D20008D804BE6CFBBBF9349EFD16FEA5D7F39A2 +:109D3000E9797F7E1333FB3DA487FFE9FE12FB41E7 +:109D4000F6FA82540E577FE3BFE4F29AC94EF981C6 +:109D5000EB762CAED16934CED328976B4DFC1C200A +:109D600068268A6F28FE10D3FA4BB93C4F6D9EEBE4 +:109D7000CF6447C462EC01D6E5D87FB3D07ECACDAC +:109D800092CD84F0DF640E7FFC18B43FFA6A8C89B0 +:109D9000C747147F284E8FFB74970AA7125751EEBE +:109DA00035C0B838EABB8209C3E83CCBFDE8E721FF +:109DB0000CE25CC2FD00431AE89FFC833313434866 +:109DC000278CEBC0FB049C2FC09DA8B3D2B9A3BEC7 +:109DD000BE9F080A2CA308CF77F0FD93C41D8653BD +:109DE000D174D0EE9F7CD3793E16D7DD775CF14EEF +:109DF000D263621FE53F59E53B5722BE4A9C84E788 +:109E0000FC9726A546DF23D29D7FA9E4F5F51177BF +:109E1000EE8E0769E23F4ADC67DC65C67FBACFEFAA +:109E20006BE23FFDC5ADCE3BFCA75DC46FEAF89584 +:109E300069376F17DE6C213B43896729F33C27E4C0 +:109E4000F92F49DE73C867875DDEF3581EB2F078DC +:109E5000D0A16BA624E2D4BE61DE44F477314F3743 +:109E6000C3D1932E18B7591DA50F0ED97BD71F71DB +:109E7000695C8F9DCDEA243E6C290D673F3A92FCC8 +:109E8000565B1BE071D90E1E2F5D867607DA1BDB51 +:109E9000D5F646691A87B7A5B2CD87F8795C27D37E +:109EA0007816738388F371BBB2CCE1B5A641BB933E +:109EB000789F0CC6C9634599C0F567AA18E7A2D078 +:109EC000AB7902AE9342BF9E74F0F6DDF08B76F96B +:109ED000A2DFE74D66F3EAC191F7F2AF631AD00F44 +:109EE0004DCE51CE5D81A4C0BCEA77A492FFB1A84B +:109EF000F59809CF3379D24A2F923D94C3F1B3C874 +:109F0000D0657240FBE576FFA034785E2F33EF0B0F +:109F1000149FEB324D87799C15F6D559238F779D89 +:109F2000B588B89780C793567511E975765C97091F +:109F3000F1A1D4EB59F826CCDFF4A4F9E87B507FEB +:109F40004253FFC400F5E52611DFD4EA91CC7895A1 +:109F50009E99B7E34DE2E39BCC6C6D06BCBF79479D +:109F6000AA099D97DA84C0109B2A9EF2C3F487D673 +:109F7000CEE84FDEA41D22FF4C946CE79B1948FFEE +:109F8000B13BDF4EC272ADD44071E7A87CD623AF9F +:109F9000001DF4BA7052B49C29FB3AE3CD206F0344 +:109FA000294EC1CFC3279BD6DA40CE56831C607999 +:109FB0004F1AF78F90E63C8E1AB4A19DA2C45F574A +:109FC00098395CF516EFFD65E8671DD46BE2AEFCD1 +:109FD0005EA0E4666F22C6CDC207F512C569441CB7 +:109FE000768588C3AED8569A8AE32E4FFBDFB5A399 +:109FF00094785BBDDDC09C89917ECA3CEBC5BD17E2 +:10A000005AFA29EF5FF987BED7F8EA49F1BE2FFB6C +:10A01000AC59C859FD774355F6493DC801C259FFAF +:10A020005DDEF7DA27F708BCD4A35DD16B7F273D4F +:10A030009FC6FCAFA23C55D9CD013DF2B7C19BC52F +:10A04000F522CF77AA157C54ABE899A05ACF28F710 +:10A050001AE13D3F788E18C6DB88FA4419EF3D239C +:10A06000DFC79DCF64D263F335F683720FD242EB24 +:10A070000C929385EB8C91BC00FAAFD78476CD2DF2 +:10A08000ADDAE7DA3C5A2E1FF0FD3FF7369F65B197 +:10A0900095FBBDD86C6427EDC7D5B356D203F5DB6D +:10A0A000418F26606909E1FE08EB50CFEFD6E8FC4E +:10A0B0005E80F736D66E724BE80FABE1A9639D3434 +:10A0C000DEB2F6EF8753F103F0BC08F79BC72A799D +:10A0D00001F4FED93499E8F6D5A8CE6742F01D7D8B +:10A0E000FC2433AECB673ABE789FF2175DDC6E611D +:10A0F000AC6BC3D5F0BFB51D7A1BC6716A3B5EA7BA +:10A10000F5A02F3A759FA367619ABFB26FA0E59B38 +:10A11000AD693C6E3122C3FB0ED2D138B09DEEEF5B +:10A120000ADFC1CFAB3BF560B900FCAE2EF0C074C6 +:10A13000917B6898C76BC638E984187E9FCEC7B6F6 +:10A1400032339EC74FB1EB7CA8EF57DB16D8F15ED8 +:10A150009234719F468AA4F3A1BE9E07B288F77A13 +:10A1600085671B9E463977FF2C2E94037478CDC4E7 +:10A17000CCC84FCE383FDDBF10B6EBE9FBA5B3BF6F +:10A1800019610678D22F588B307F50817BC2C4F082 +:10A19000088C63DC99E80F21FDB38E741D97303174 +:10A1A000C2EAA57DD567851C3FBB5F57D1D6CBBC26 +:10A1B00063D2F9BC87251B7CB8DF7165887937F7D6 +:10A1C00022574A3BE59C725F72B7BDACEB26944BBD +:10A1D0008CBFF6F6BD0BA2DD3D783707EE0338BA2B +:10A1E00016231EB75F0B3C02F33BF36A6ADBAAA897 +:10A1F000F9DD27F4C5996BF8BAF6EE4C2B437D5B7D +:10A200006C6890EC79117DB328D1F734D22D756E3E +:10A210004847F113A15F503FCB6417ABFD2605DE25 +:10A22000D5629F48F197B4FA580B7FFD77924A2F79 +:10A23000DD23F836A25F0CF4BE5C7F17E5357CD1D8 +:10A240002A515EDA17CCDF4CF5F512E5577E71889E +:10A25000DB691839918A513F707DB3F8E9E964F7F9 +:10A260002EF0F33CE6F95B96525E11D6EF72A05FDA +:10A27000C9CF3F2D58ADF62F16AD57CB1FEE03A318 +:10A28000DF740B5EDC00F2B9F82175FB5AC6F749A2 +:10A290006B35F9482942AF69EDE411E922CFA8985E +:10A2A000155FCEF9A4F5CC3B261DE83C4AE4157FAA +:10A2B000B12527754154BF199992EA3CCE2958A778 +:10A2C0000641BFD34D362A2BD3BDA5E980DF1BD372 +:10A2D000FD93709CB30705DE0CE121A4AF6BB81EA3 +:10A2E0008DC12022FC6FCC8D66B2777F85F75B0134 +:10A2F000FE6262B87E56D673BDFEA7FA049CE7DF05 +:10A3000046BA488EFF7D4A05E659B4947A0B51BE91 +:10A310005AAAAC747FC1661DBFC7CE1CC3EFD50956 +:10A320003E3B6637EE6D0F6A7FA02C03D5775788CA +:10A3300025C818F75949F92AEBC633BAA74CF94E84 +:10A3400049976F1BC2933DC34AF78D38F59B5D1843 +:10A3500017715E6912F723F075A65EE0F8B18E9C66 +:10A36000445C8FCFEDB882CA618CD35FC9BFC76F21 +:10A37000B2A87DB4D34D508F3ABF38AC5D0A197185 +:10A380007FBD7DE56CE497BA559D93F17E96F0EF25 +:10A3900018E5CD385F4B2B931322F0D56D7BDA4156 +:10A3A000E708845EBB11FD3EDC83117654F779012A +:10A3B000E1B7D408FE9CBD83FB2B37C671FC2E6031 +:10A3C0009E6CEC37C7CC127480B31B27B68F427DCE +:10A3D000C4961AED68C75D76DE8858CFB4ED4EE1BD +:10A3E0005906D4872FC5505CA9FE99788ACB2DD702 +:10A3F00085E9FB0FA40BBB618888F70F625ECC3345 +:10A40000AADF7905ED6FC5E0FD4845A4BFCC48D76C +:10A41000BDA86761DEB7BE62A1FBD9BAEF1FB1B1BB +:10A4200000CAE9F29DA9E49F3A73BC85B7E7E13D14 +:10A43000185DD924DFA0AF24B0C59E4DBF7E9A0120 +:10A44000F8AE3E1DF42DD40F3F3A771AE6ADD40F87 +:10A45000EC5A8C21ECFF797405AF0FEB3A8EF5982E +:10A46000C79A78BDA86BB11EEA031FBB97D73141CD +:10A470000C18ABE0B187A60560FC5376BEAE9C31EC +:10A48000F2F8EF999786B605A2E89E91C1F5F029FA +:10A490000B6F77CACD6EAE467CE7760D89CE7BBF5B +:10A4A00098AE9C57E2EB9F324FA51F8C4FFBB3DA5F +:10A4B000F15F127AFE56716FCC8438B68EEEBB32E5 +:10A4C000B000E659EDD97105E1E5897487B81F043C +:10A4D000F4F6C8C838DAF3E8CA776F437BD14AED9F +:10A4E0006BA2D78F7DE95C0FC37756D377F2BC851B +:10A4F0002827F5D599854837A09741D0CB60A6F39A +:10A50000A49B397C30AE1DF3B426F275634252D25F +:10A5100066947B056EB07FACB42E0BF83B057FDCF8 +:10A52000DA2CF00530635E5BFDCB7CFF13E98BEB2F +:10A53000C94081DF8C8C487B1A2F13F03BFCF2E77B +:10A54000F7E9FFD2FCA2E8E2453ED9D33194E8A274 +:10A55000C00F12A11AE7D44A4DBF1246F996F58EE4 +:10A560001CEAF72B0B33F37BCDDABAFBB9F3B97DD9 +:10A5700081FCAFDC07C6BC03689FAA4E6887EE7BF0 +:10A58000BCDAF939083608E68778ADAE1C29E667EB +:10A5900013F3B3F1F90555FCC8DE0B67CF88EFC99B +:10A5A000A7DD78EF1E2FAF488CA792DFDEC643BA37 +:10A5B000F7450FA7A0EB3F8D1E0A9CE05E45D3A197 +:10A5C0001BCF1AF8147CA2DC0A39A47B63B572187D +:10A5D00093D187FCBA7FE0F7C43EDCB25F001DF187 +:10A5E000DC83ACE6E765DBDDBA0579917E2D5B3572 +:10A5F000F193ED3F09A05FBF7C4715E5851A5781B0 +:10A600009EA47C023DE9E3B3F06E2DCCE3EC73EE47 +:10A6100020CE638DD0336BECE10489E2377A1DDA0A +:10A62000B961F09B71FD0E5BE0399E5780E74F47A3 +:10A63000CDFBAC2F9C608FA2D7C8D7F409B8EFD55B +:10A6400015043BB6177B43B9AFA98BF1F7E57A6BDD +:10A650007623E68FB7E614E116DB3933CB6E7462EE +:10A660007D7051803896C719FFC67CEF5F8D708B67 +:10A67000BC2916F01AD280AF170ABEAE7DB339815D +:10A68000FCB21D607F25F4625F59672486E49E76E4 +:10A69000D56DAC81D6D1DA4DDAE73C1E799B269F89 +:10A6A000DB2FE2B85A7B6B7E86B0B70A59215F1761 +:10A6B000B9BD70BB88232879F267459E3CCC93F0E6 +:10A6C0007FEE3989E7C533F91DF493EAF7EBE99E8C +:10A6D00029164826BB2E12B70C9BD07ED2DA11DA8F +:10A6E000F2F41F3E2EBE139AD4FDF1A3FCC7A03C8A +:10A6F000FDC70F87BC82F53F7D90FD11EBD97EE24F +:10A70000CEBFD3BD696777C630F453CEEE7C23FB52 +:10A710004EACBF1CE341B8CFAE8AA17DE0C0CE787D +:10A720003AEF77364B9CBF7DF5DBFC2E8A13ADE606 +:10A73000FB2619FC1EB4733BFEFB13E493733BC072 +:10A740008A76E3BA1C47BA7BF9CB16BA17F5ECAB9D +:10A75000DF1647DBA13F763EF5E25EC0B3F1AC8683 +:10A76000E26C8670B64476C4B82494B365DB7799FE +:10A77000D09F9BF8DAFFE47761BB177699D8705ABF +:10A780003F9EC0FCD547325EBED708F43C833A0DED +:10A79000D6F55199FF3D0DCF736AF102E39EB913CF +:10A7A000E7F15A1CD107F0528BFE575FF868CFE0F3 +:10A7B00079BAFF6AF8386BECA47BFFCE6E9346043F +:10A7C000E468BC48FCBEEC1DF141B344F3E7CF772D +:10A7D0007E9B8FF6ED97ED2BE91E85FEE6FDCEBF45 +:10A7E000281FFCF0794BA14B99F7997FD1792BFC6D +:10A7F000BF2283AF0B5A39E829FF7FFA19D57F1F93 +:10A80000EF21782F51FE1332FF35E7FF83E9FE82F7 +:10A810004471B6FEE83E3CF35F53CEFBA7FB9B8240 +:10A82000EEF136BCE7F0ECABFF93CDA2E6DFDFBC88 +:10A830002BFF45E9DDDFBCB571CC075F658FA23D1D +:10A84000619C6632E2F9DE593E897EE76026EE5869 +:10A850001461BE5767591CE67BCC95E8BC2B3C0FB6 +:10A86000C964B7F93A17C1F3F76B1E74E17A60C493 +:10A870004EB84F305FA2F3D1336DAE32B44392760F +:10A88000B04765DA8FE179AB3367A51561FB03CC7F +:10A890007FEF2894AB19467E0EC6956B88BE7F1459 +:10A8A000FE66EC2FA67326F4777B26BF6FE1FDB121 +:10A8B000B71CF6C2FBEB9A7D0D182FBB3EDB578E03 +:10A8C00074BC7E96BD10ED8899482068BA2293FB2F +:10A8D0003133B1B303E1F119C9CF57F675BCC37E6B +:10A8E000D0BE4E81297CF4A700B7ED008F731A8586 +:10A8F0003DA4C43DAAB11EB52F3EAD7144E524F080 +:10A90000439E14F0B0459BD73847D23C03F138CF73 +:10A91000BA5D74AEBABBBEE298FAFD5DD25A557DFF +:10A92000B55B5D5F5FBA36BA7F5FF3A9AE2894FC72 +:10A93000B0C6273D24A9F24B955281EFED956C36B8 +:10A94000D9EB4EAF8C79B90C3F9686EF75BDDE5BC7 +:10A95000A8E065B6C8E79D56C6E647C7AB7F2BC6DD +:10A96000FDADE8CF9C222EEEF1CAD1F75E68C7FBA1 +:10A9700070C90409E3A298B2D5DBBECD4B220EF715 +:10A9800061A25CAEDCFB8876FBA1D93C0ED2171E1F +:10A99000DEBFC69D3510E09CB503B802F8B2AC66C8 +:10A9A000BE11E57AD6A20912CAFDA1695D3A2C0B47 +:10A9B00006C23CA09C73D193561585AF3732B9BF00 +:10A9C000FAE0BD6A3F4D294F89F77FD1F1FDD6BF2F +:10A9D00024C859B3F3A2FB9B79BE7F3CD72B050655 +:10A9E00066D047C5CD6631CE3F37D5703AE1F7AB7B +:10A9F000A3BE7358CCFB41710FCC874B0A8CF3A3D9 +:10AA0000DE9BB2F8F7ABFBC09B298BF7077B9CE47E +:10AA1000F5C14A29C8EF51F65AD19F5822E4EF41B7 +:10AA2000711E753A9ED785474BC62E21BF826DE2B7 +:10AA30007E8519FEC1FD8AC29041B38FD249F717B6 +:10AA40004DD7F80DD3843F31AD9FF3A15F675A23F3 +:10AA5000E743414F4E1BC8F909FC5E99EE9D14FC7B +:10AA6000A8D0A12FFED19ECBED8B1F6C2E3DC3F342 +:10AA7000198A9F5150CAF7410A8C5CCE1FDCCFFD6A +:10AA8000B0072BCF39D0DF3CAC89FF4E6BCCA91C73 +:10AA900014B56FF9F634530DBF3793FB3F8784FF2E +:10AAA000F360C5084BA935429F072BCED3B9926EF0 +:10AAB0007960DF2F0F0526EEC74FAF88A1734FD304 +:10AAC0003DF2C74B79DD86EB7A59E5E66CE4E3723B +:10AAD0007DDEE3BF84E76F57C6D0D927453FBDFB76 +:10AAE000C853D9E8977AB62E29C7106921F3D33D08 +:10AAF00006D5959287FC42117F389EC9282E9D1459 +:10AB0000E4F7CEEB2BB95E4FDA64DF3C05E8352481 +:10AB10008BCBF1C44ADEEEC11A35FFDC2AF4F59284 +:10AB2000514F1D1804E56DD3168CC2F1F3B3641EAA +:10AB300097403EA273C707F7E0B2525B5348BF2B62 +:10AB4000A39C8B56FACF629EAA1152A4FDA98D4FE9 +:10AB50006D40342DA9983F2A14C5674A5CFFB62D75 +:10AB60006AFF3569A4DAFF5D1254BF9F057DF0FED0 +:10AB7000F759FDF0E3D82C353F2ADF53E8A6A59717 +:10AB800036CF46C17F4789BE02ED890287D71FBDF8 +:10AB90000FBC54E053293B76FCD75F96E2BA88E7B6 +:10ABA0008C655C84ED9370EB75766DE9485C86CAC4 +:10ABB000CC857BB07E6303D4E1FDCC2CA3383F72FF +:10ABC000AC1C7F42E26697B40FCBF9B27BB203CAEA +:10ABD0005AC43BBC5F985BBA0FC343959E2ABAF731 +:10ABE000B65CBF3E2E1FE56313BF8700F45040D70D +:10ABF0004B1E4C291831D1E7C3279A2DAA73E5E5DE +:10AC000036BBAA3EC595A66A7F8DEC56BD9F9A3B82 +:10AC100054F5BED253A87ADF96C5EFB17EFEF1138C +:10AC20006FFD02E6F9FC183DFE42063B8078714656 +:10AC3000F002F03E84F01E18F3F36CFCFD9B862CB2 +:10AC400003F57B77D3E8C3BF6011FDF67E25E3FCF7 +:10AC500069E0F192198CCBE3FB4CF0F53512C57F1E +:10AC60006608FD36DDA7E69BEAB1C66331A8B744A6 +:10AC7000FC645A8576DFB88BE09C55C2F777933435 +:10AC8000FB53B384DEEB8FCF9E7FFCDB7494CF96B7 +:10AC90002CF5F9F8E7257E6F42E030FF7D8DBEF49C +:10ACA00058B7FED2F0579BE02BA504FD90887AA2FE +:10ACB000C0A46EA7941F827D6A80713E6A3253F9E8 +:10ACC00071938DCABF36B9A83CD62453F959532E77 +:10ACD000956D597C7D4F6A043A46ED332655FA4C02 +:10ACE000DF27275AFD76A04B47F27160FC1D096EE5 +:10ACF0006B245FE1F759767A7FA2E433AB9417E1D6 +:10AD0000D38EAE4FAD681FCC66413ABF7A230BD1CC +:10AD100079D679AC8BEA37E311507D249F6121F31A +:10AD2000529C2BD1E6A3F2007E3A9DB1B71EFFE8FC +:10AD30003EDCC7C8C7F5D24A799AEBA2E5E09CC0D1 +:10AD40005B59967747D628C46FC327D3513F8E37B8 +:10AD500032B4FF98B8672989EF91B1138F8FB62C61 +:10AD6000E865DD8DCB5AB02F6B54347EFC266CF732 +:10AD7000BC726F8FB827CA90324865BF1C14EBF5C0 +:10AD8000AC4CEF5B59B4DFE314BF13E1737DEF7A92 +:10AD9000E1F090FDA2CC0734BF84F1D353825E4A28 +:10ADA000FB0213E851F8FE348FDF84794F651B0BEB +:10ADB0002D5DBDC2EFFF242B590D3FD7239C9FFA79 +:10ADC000A2AFC21797CB570AFFDC95E9FD12BF6B04 +:10ADD00010F737191C352EC41BB3CD20FE38A799A8 +:10ADE0008F160FF9259FAD1F817EC9487EDF577EE4 +:10ADF00047A715F5C5BBE8F714E03A79A26C04A0A3 +:10AE0000F45007B3A15E383032E76D5CD70E6C8A20 +:10AE100091F1BCF309497E1BE53BB0596F13F7FD77 +:10AE2000D0BD718B2BEC45F8BB0AD78F33D23A7863 +:10AE3000DCEFA6DF25C8CBE6F09C14F65300EC0F40 +:10AE4000EC77FDB49F7FB202E0385E39047F4101A8 +:10AE5000F86449C255685F3C92A3E3E1528F91ECDC +:10AE6000A68D7AD237EF554E3EBC284A8F1DD7E8C3 +:10AE7000B1599CDDD8711648C67DBE59629D9C5162 +:10AE8000A3D15F95EA7A8D463F25897D75ADDED2E7 +:10AE9000EAA7AC6C75BEA9D6BE3A690D877E817AE9 +:10AEA000AA42223C4D07BFCF5F807642A1F1B81580 +:10AEB000F940223E50F4D4F44AF0074762397F84C7 +:10AEC00019DA4F04FF04FDD4E9DB3DC6C5D6683E60 +:10AED0009B6F62E8B76C9C4FBF2B302BD3979F4D75 +:10AEE000FCE0B35D05F8787007A763C1A60FFE828A +:10AEF000F35FBCF1EBF70601DE8757E86DB83E1E45 +:10AF0000DA343A1EEDAC7783E79D2C2F9ADF1B28AD +:10AF1000FFA16CD3D7E9C8BF5A7D102863F47B57D3 +:10AF2000A72516C2DF1F3A5D9A5286E39FCE3219DB +:10AF3000783984D7D34ACCBC3EB902CB72FDD8D77E +:10AF4000F1FEB77395FC9EAC7744DEE9755D56BAA9 +:10AF5000CFAFAE4B772C06F368C3EAFB5D267CA728 +:10AF6000BEDFA594A9D7D58966F5BA7AFACDB9E43A +:10AF70005F97DBDC9AF577A866FD2D54D5AFEBD251 +:10AF80000590BFA6E68E51F5EB30B15CA447588A18 +:10AF9000A5DF5DAA627C3FFF7A28F1F76DAE63FC06 +:10AFA0001CC7344FA9AA5F1D38D4881F6C8FF91EA7 +:10AFB000D7975CA3FA5E1DF687E755669FBA5FE3F5 +:10AFC0007F113F5CDD7881ECEFC250BBEAFD88FD6C +:10AFD0001DAA713C9DB689E88E161DF1BC8EE56AEE +:10AFE000CC1B4B04D1E8F24D44B7A4F864C3EB5832 +:10AFF0006AF38A7FAE636B302EF373BDBF16F5FE26 +:10B00000B7BA602E9D07CF989C85FB2555F6B57481 +:10B010007C781AF3FF12F96ACC37C166AC4FB8D00E +:10B020004E79CACD78CE3B11E95A19F736C679DA8E +:10B0300025B2ABEBACE29CB7A33D3FFAF74BBACFDE +:10B0400079BBBCAEF9D07E8D7310C53B7C13E3BDDC +:10B05000B87FBBEC8F57D0F9B16A77694BF6A84837 +:10B06000DE1873AACF0354BBBDCF627E54EC443DBF +:10B070008FAB4C31525C2556E74B10F73550FCCE68 +:10B0800034C548F9B88903B8DE89FD0F2663FE6B25 +:10B090006C925F3F1CFB4D9518CAA3025F75253F5C +:10B0A00027DE962DFC71B1EE5425BFF71CEE272646 +:10B0B0000E88A7E7C595F25E231AE836830DF5667C +:10B0C000D2119F6D38C0B9DD3992E476FB91CE7113 +:10B0D000928CED656A9F5A51FAD352FCDE437AFA9C +:10B0E000FD9CEDB64971D89EE50EA13CA6DB453E20 +:10B0F00068D25CF903F4ABD87E23133F0F43F3B05F +:10B100000D8BFD1DCE23E9887729CD37D72AE3EFB4 +:10B11000B7007C6EFC3DA4CF9AF0CEB7BED799CFD6 +:10B12000D62727E3BE6E55A92D197F47A4EA01BD96 +:10B1300072990D6D2FE1CFF5513D30FF9D4900D73C +:10B1400056A58EBF7B9A2BEE9949E70059A05E2544 +:10B1500075B7BF7E521EC50394F7015642E797C5E7 +:10B16000FB05F4DEA6194F197FEF13F3DF5967458E +:10B170003CD904BE6DC9944F78E1A2149D671BAB06 +:10B18000978B913F17E8E47CCA7B4EF0BF85FC6843 +:10B19000D37986607DC5C1119FA09F04FAE5F8466A +:10B1A000D42F938CA47797E7F2FB9DB79BE43F1EC7 +:10B1B000C1FDCDE458CA9F31DE736B7B078CBBDCCD +:10B1C000F65F245FC0BF74DEFD5CA7CE81F1CE05C3 +:10B1D000FAEEF978F1AE954F75913ACADD82C87CE6 +:10B1E000BC789EB0256A7EF81B270B457BE393CB8A +:10B1F000AF5F8DFCBEC84CFEEE4F850CB738582BA8 +:10B20000E6759ECFBD6A167EF7FC7A23253F6FC791 +:10B2100097B82EBA62E9DCE6814E9D17E3360167E6 +:10B22000ECE6C1543F67C6F84C3BD0DB8B139487E8 +:10B23000A8C63D3F76CA7FE4E0789D3A1DE26D6185 +:10B240009789C9A83F0C2C14037AA878EC02FDC09A +:10B250003CBCA71CFA83BFB6C0ED3D9F4DFBD24A54 +:10B26000DCEF979715F75B2EF4D7F2929579A8DF6C +:10B27000974F92687D5EDEF80DE19519F8791E53BF +:10B280004C30B80AF9F6150B8F675ABDAA7B1ED64B +:10B29000CADCEFBF33D1BB564E46FD779EF49FD23A +:10B2A000FFB4C877C073E2986F5FF70FFDCD1877D2 +:10B2B00002FDB90EF56B1DDB6DBA3DCACE62ED5FC6 +:10B2C00077EBCB025DC40E333CA4A7F5453B2F833F +:10B2D000BF92BE5725D966E25DA2CB8387AFC77CFC +:10B2E000A02A8B6D26E6038D0DEEE2F52CDB4CCC0F +:10B2F000FFB961C0001FE6FB54A5D91ED679407F77 +:10B300000647F3BADB7618EB0D4F421DDB172A72A6 +:10B3100050E8F3A2DCC5F3FAC0270B7D01B20FADF4 +:10B32000745EF05C85857E27B22FBC4F6F7C45E54F +:10B330003FF4782F7ED78D12BB00CF5F5DC37FDFD8 +:10B3400045C9B758569D49F9162307484ADE272BA9 +:10B350007144F29DBFFA5BE762BC2766FAF6BBE96F +:10B360005EFAE98D3BE97B750CAC0A78BE34C77F89 +:10B37000D5008CCB495D9FA07E5D36EDDD21746FDD +:10B38000B02D4CF78F1BC5B92E9023D77C943FA7C7 +:10B3900081D6F7D9CC4FFEC60CEBE726BD0EE36E87 +:10B3A0001EF243B4FABC7EAC85FF9E1F93E87ED7A5 +:10B3B000F62658EF40245E68EAA0D2DBB18BF29B00 +:10B3C000676BF298FBB3E77AE4576BF48A57C9339B +:10B3D000D69C737D38D17701F9F09BCE89A9DC8F9B +:10B3E000E2F3E8F17DEB2023E2410BC7741622BFA4 +:10B3F000AA3F78CEC477DE64CAC1FBCF387D9739C7 +:10B40000DC83B11FE0BB76C028C437E05F8FE75212 +:10B410003B53B83FF19C8CFAE05CAE99F6E362874F +:10B420001DC9EFEDF790B5F87B1FE64AEB90A1CB75 +:10B4300084F748D51FE1F72894EBEB681D3CD7E172 +:10B4400066D171C05562BD4C14BF5305FCE2417E0C +:10B4500071E630BA67CCF9A7379FC3BCC755623DC8 +:10B4600054F873421C6BC7FC4A858F80BF3CC85F91 +:10B470000A3F45F26D5E7F0EF36DAE1EC0E1DA1E2F +:10B48000CBF55EF80FFCDC9216CE8D0394B8AC1AA7 +:10B49000DE5F8BE7FDC1F9EB01FCF78C7F2C9C8A0A +:10B4A0005E52F0A4E82526F4F6EC1A775B8B14A91B +:10B4B0005757BAC95F55E0ECC93F5BE4DEF8A73FD8 +:10B4C000BEB9982DCED50BFDA8C0A5E8B9ED91FB6E +:10B4D00055045CFC5EDC085CFC9E84C4C697484F47 +:10B4E000EBE3F9EF9DCDC875D1FD2E899DE718FAE4 +:10B4F00005FB060CE4F86DFF3BA58E2636EEA0F6A4 +:10B50000FDC9A1B22E68E7A1AC133DE723D377B400 +:10B51000EBC73826EEC9C43549423F407D0F662946 +:10B520009E6C50F9013FD1C4DF7EA16A3FC5B55280 +:10B53000F5FE1AF96ED5FBA9B90FA8EAD33C8FA87E +:10B54000DA5F5FB259F5BECABC55551FDBD549F667 +:10B55000F681A60AF2D3C79F0C93DD1D12FEFC6E86 +:10B56000E1CFEF417F1EE4721FFAF350EE6FF2D08D +:10B57000F33F379550F9569397CACE261F955A79BF +:10B58000BEEEC51B0CE8DF9474B692DDFF9B2C7FEA +:10B5900012EAABEB75C1E67837DEABC7ED73E6E2D6 +:10B5A000F6A5621FACD935E61DB42F93DED2338BDE +:10B5B000DCF77A92F89D9E79A3E2F689956186F789 +:10B5C00031278A38D07506B63A06FD16AB21940AA3 +:10B5D000F44A13EB37E515831CD59819ED97D6D4AB +:10B5E000F0DF7BAE61FCBCC8FF0300031CD500800C +:10B5F000000000001F8B080000000000000BB539A0 +:10B600000B7054D775E7ED7BFB9356D24AE88B0459 +:10B610007EBB0BB21C24F4F4B510C23C244490C38E +:10B6200067258823B088D75FC02024431BAB753AB9 +:10B63000FBE8128C193AA3341397B4A45D913175C9 +:10B640005B674671312353A06BC7B595C2248B51FC +:10B65000129C6A98356D293442BB7C6AA0F1583D32 +:10B66000E7DEF7D87D0B0A9899AE4673F6DE7BEEDF +:10B67000BDE79EFF390B007E4721C0D7817FBA010D +:10B6800022815A00BB049A3D0F405445780C21E4B6 +:10B69000CF90A011602D21C988EF027808F1D6BBA8 +:10B6A00086ADE0035837FAA7BD4FE33CECD21AFC55 +:10B6B0005984B4D47DA10240D07E63999A07304565 +:10B6C0009FC577420009088F3E532240099DD10053 +:10B6D000F01D4189AAF9005AAEA4BC8153ED626500 +:10B6E0004EAC32B96FF2210BC333C6AB032B409A79 +:10B6F00001B02AA489D9F50089D3A01CC4B3B60E21 +:10B700005CE3F312ECA1F7F4E159CD083BDD52E420 +:10B71000E16C5C87EFB611FED6315909E15A5FD36F +:10B72000CE4A984FFB3E63FBFA960A9FDA71DC37EC +:10B73000701DA43AA2E3AD10E15F3D0B8A1DF11F1D +:10B740009D08C7BE87F7342506DB7270BCF0F37026 +:10B7500088604D64182487FE2EFCAF1B1D01A922B2 +:10B760003936E83E16EC06C90A702218603012DC41 +:10B7700004D25C80F783FD6CFC4170808D3F0C6AC5 +:10B780000C8E06F730F8AFC141B67E2AB89F8D7F88 +:10B790001E0C33180DBEC9E6A766733E2E96DD0C4F +:10B7A000826389ECAF227673D84D84A0FCBA1DB2B7 +:10B7B00006C8E7EE6E81BD7F6BF13FB177E3BA0655 +:10B7C000798CDCBBEAC774FA001096053C6F7D8566 +:10B7D00003F67A009E8441EB4284DD1BB5AA9DC22C +:10B7E00083EBC53A08588141E97C0CE72D20C01451 +:10B7F0009EBBD635C78A0358DB6D3D1F4BE1F71A58 +:10B80000082884DFB5C23C0FFA7EE3DCA9D9487C66 +:10B8100001EA799B084DF85EBBF892D2EFFAF2F795 +:10B82000D9EC0AB3837BDFC7E5622D0618C0FBACF9 +:10B83000B9BF3A14411276B9C6BE295AEEC2877C06 +:10B8400029717BBF17E0EF4B80D1FB65E90350AC5A +:10B8500024F77BD1D7E251437201D1E966F718F2A0 +:10B86000B4CDE3F26C17270EFD15E9FFE14CC54E90 +:10B87000B6FAF99400A81F7FE0E07A703DDA56141A +:10B8800048B153C3FE8683C34C2FDF0E8E30D8E7FA +:10B89000BEC6EC6942B03CE5AFBCF3DD7D1608BC2A +:10B8A0008DF3B5767008C8A72FE4D6D789AE76B1E8 +:10B8B00025AAD2FD6E89D9DF74FAD33770859D3FF2 +:10B8C000ED3A9E3F8C72EE3BDEE07EC6959CFF9586 +:10B8D0002CE8EF96DC171C49BEDCAF9E2E4A749B09 +:10B8E000EC7EF1CD80C9EE97C066D37A9BE325D379 +:10B8F000B8DDFD4726FCAF16EF34AD77C8AF99D65B +:10B90000BF56F15DD378A5F20313FEEAA621D37AE0 +:10B91000A7FA77A6F55522A8C4DFD5810E26A7F58C +:10B9200068AFA4574F4284E9F30688B1F153A802E7 +:10B93000049F0699C16741B5D1FAF3A006083E51AC +:10B94000163825935E0B3117AD5F3EF2BB3901E42B +:10B95000AB983B36F93DB8D3CFDDAF5F33FC99E10F +:10B96000DF76DB60D330EAC5AE5C9B467A692DC8D2 +:10B970001B123D49799C93CD7121DD7EE235283043 +:10B98000A437FE4E2600EA513C2B232CA0C8D563D9 +:10B990001F9D15E69399945BC8AFEDD079A43A5CEE +:10B9A0001111E7EB7A945FEC407C3825C25CD27BC6 +:10B9B000B04EA49EDB2EA18B25FF2729151BAA9232 +:10B9C000F7872C482FF2E14D843F41BAB37B629256 +:10B9D0009CA26FB7747A97AC5B0A14DFA41E1500A3 +:10B9E000D7B3DDA08671DCEE807A279DFBF9B54ADE +:10B9F0003A77D54D1418EAF55E2B44486E454D351F +:10BA00000220DEF773D4FF25FE6BAFB6E45E40BFC5 +:10BA10000AE827A61EBA735C2B0A2ABD3BD1E10CAB +:10BA20001FF4DCA9CF191E0BD3FFADBA7DD4CE0015 +:10BA30004731DD1F205E22BF3A1E39B817F9E5F104 +:10BA4000E4F1B80289F22E8A2B182EA02019A7271C +:10BA50009CC0EC7ACD88130372F2FC024F2EC35BBC +:10BA6000E3B8CEF4CD98DF3670CB64AFDB2AF9FBB8 +:10BA70006B4372DD4B087750EC5800109CE92FF6B1 +:10BA8000E0BD9B4FBE652B95E9BE03DFFA0DF98340 +:10BA90005117F747A70AD85BE302740FA7F0798D17 +:10BAA000E30ABB0F6088DD6FCC9F59F9EBF9E4AF77 +:10BAB000D61CCED448CE065D1F0B7215E9B1E1BF8E +:10BAC0007A4F5C3A075EF25757CEBD42FC7BC7AE59 +:10BAD000E717B7D8FA165FA08AE87A7BD4C2F8DBFA +:10BAE000DB613F487A09925CD59595E44BFC9299CD +:10BAF000AE74FA8CFB0CBA2604C1E41F9B75F9BC2A +:10BB0000AEC7F5CBD9CA0692CBE523A5164D48CED4 +:10BB10009FC98DCECF75FDFFC5F9F5A0E77DC3A107 +:10BB20002A379204CF61DEC7F4E0C1E2BBA13FA097 +:10BB300082EC463A04FD3EC04749385EA48F435923 +:10BB400010B621BEE0FAF016D9EB221D021901E26F +:10BB5000B5E8F4EF16FA81E873C020837B0545262B +:10BB6000B858F04BC0EE0B333E2D83FE329A0F2DAA +:10BB70008985E852290F06C56A808BF95D053B89E6 +:10BB8000CA42D80D38966C9AB590ECBF2B477943D2 +:10BB90004EF26B8D7EDF26FC6F41BE48B9204B888C +:10BBA000BF09F34D2BF275EDC6757F5649F8EE16B9 +:10BBB000C6C72EFD1DB48FF8F8C4A9FE9514AFBFFB +:10BBC000F1DE9FFF5CC5F94B79838D44CF7F470F32 +:10BBD000CEFF31E2BC78E65836AD6F8D449721EB4D +:10BBE000611B2498DF35F8DF035106BF09090603FE +:10BBF000E066EBCF80C2E073E067F005E867F093A2 +:10BC00009203BD6801B0AE689FF53A24F9B025777C +:10BC10005723DDE36EDD3F97F44E6B850ACA83063A +:10BC20001CD9F30113DA1B4E0E3B735D9A98C3D6F1 +:10BC300099FFD4CE39C321D4F39510D8E741F98DBB +:10BC400059FB1FE5FCEDAF267D88E7DA4040FC7824 +:10BC500001F71FDA6508BF817C8E5BF5FD576436FE +:10BC6000AE6FAB65711D6EC82CDF5F487989239973 +:10BC7000D7D4CFB3B0FD30C5F1172524531E535F81 +:10BC80006D61E7C1EF70DD437157FABD79CE4A2F80 +:10BC9000F75F0B6802BFD6CFB0F4535C611FBC27BF +:10BCA000545C3844F98E31B6CBEE21F27B1F78B864 +:10BCB000BF8E675B989EE067ADA391E8E5725D7803 +:10BCC000ECA4AE8F58381592BCF47929F21ECD6FD2 +:10BCD000D3E3097A6196FFB5907E12BF46CCF1049A +:10BCE0008AE749B4BF5927C1A8C7043CAB278FF4E2 +:10BCF000392A923C1F8304832AB8595C6B0585C19D +:10BD0000A5E06710F59BC1E530C8E0E330CCE00A60 +:10BD10008832085F51945ABCDFE2888814AF01BEB4 +:10BD2000EDBE80A1113A365AA628447E03FA875DFB +:10BD3000F7E6CB85FBE60B1A74E3FDF025C0E94B73 +:10BD4000E74B5905B323832F063F9C102E263E2E2A +:10BD50008298487031F038BF04CD91C66DA0B271A1 +:10BD6000FB3DF9110901BEAF291690029577E14715 +:10BD70001BD713436FDA4517D3BBABAEC2213BEEE3 +:10BD80002BF15AF4B888AA8BF2DBEEE6EF6C848ACA +:10BD9000BF6841BC86512B66D40047832AFC3BDA3E +:10BDA000C055CC3822B47F4C5434446D7E2E1C7266 +:10BDB000E0B8640FB8E96DF6620BC8297AEC9433E9 +:10BDC000404EC9E7322BF24CE3E65191D5AB59CA4C +:10BDD0004CD3BE9C26AF090FED5324BA8FC600FE8C +:10BDE00012E93E4CF64D72D3D4686563D2DFE6AA01 +:10BDF0005F319DB328FAC20AC0783E6379AD691EEF +:10BE0000AE737B6BC23F92D342E8677ADD3C61B68A +:10BE1000433BECBB42F940536C1048DF9C632976EE +:10BE200049EBAE6597E87C3BA4EC43FA06C66B96FB +:10BE30007F9072CEBBDEAC7C26973228237B36E423 +:10BE400091EEF7D1BF15931FAACF6CBDC642E3C1D7 +:10BE5000BC4E09F383FABAD61D3E1C2FF1CEEE94E8 +:10BE60007073FDC2D67FF4E2B8CDEBE1EBD5AD75D2 +:10BE7000560560A7E0ED5C8AEBA1D3DCFF81A39CB3 +:10BE8000CB55AF77AEBABEA5B8497E652E85F4E630 +:10BE9000551BBE09E970D839147DBCAE3C1A44FC70 +:10BEA000879374DAED3C5F447C8DF2BB828BDA3A87 +:10BEB000EA3B7CE19599FECC5E1E79DF2A938DC921 +:10BEC00075D44F299A1958E02D489E8F749052418D +:10BED000A94E87B16F81CBA612FF20DF5347EFEE4B +:10BEE0009DE97F8CF6C5B31CCC6F1B786FEA79E9AE +:10BEF000026950DCE1A27960F1773AB8D5AB2EF354 +:10BF000036DC396FD8AB80CCEDA17CE145C5213161 +:10BF1000FFDFE2BE9D77A21C163CA78AE4F21BBBA2 +:10BF2000FB7F4AB04F4CBC40FAF1756F600D9DDB52 +:10BF3000EB9F9C5D43F9F97FE20389CF50C6ED0E7C +:10BF4000B8BF3E7EE267AF94F2A11F52FC4ADF8980 +:10BF50005B9FFD1BFAA1BEAB2E85D0E3D9FC9D0BE8 +:10BF60008FFD6007E303B84C7ED4F043CD23F60881 +:10BF7000E9E1C2638F3C4F788BCE8CFB28BF5B3CE2 +:10BF80001E0B51FB2A7EFCD7A5DCFEF57C46BD21AD +:10BF90003C483E83FE81D9F7F65F8AAC5EDD4E8970 +:10BFA0000D8D7F228435D497DE51EBA776BCFFBF81 +:10BFB000F4388B9EDC55D2C8F309F63E8866139F91 +:10BFC000361D787605E9078479FD2EE31FD9D9A3BC +:10BFD00067CDF6D53B6CAEEFFBC8DEA87F951AFFA8 +:10BFE000EE624F21C39E66C12C46BFD89313B84B57 +:10BFF0009E6AC01B4165F907588FED03F535D2AF36 +:10C00000060954F28BEDE2B7993D6C9F55596B6769 +:10C01000491CF7831B9DFC3D6BCB787DBDFD8722C2 +:10C02000B808EFB82D4C7633846EB389F4A7F83591 +:10C0300096C76DD46933EC67F31E0164AC0FE0C0A2 +:10C040000CA653D587EC4CCF870ED9F7105FAA0FFB +:10C0500015A90443DFC9D028FE54DB78FD117226F0 +:10C06000660A94671CB759282FA03441C07BAABD2B +:10C07000092FE537235E9E4F87F4FC06E47293DFB9 +:10C08000DE9E555E44F5D8EDF59864B2FF905E678C +:10C09000D4137D545FF45B59FDB8DDC9E97FEFF43B +:10C0A000139994F7BF23F933DD2EF2F3DE1CB84B5E +:10C0B000BFC3800D1164FEEFE95BD48FED8B92DE80 +:10C0C000D6EF97383FD2F48CE2881D927C4FC69F02 +:10C0D00039A6F87315B81E5E2D8330D50D863C8DBC +:10C0E000F851E037C79DA26E73DC290998E34EE949 +:10C0F0002673BC99D56F8E370F0D98E3884733C7E9 +:10C100000FDF9E6613FEDCC156D3F8E1FD8F9BF076 +:10C110001F097799C6F3DE5C6FC2AF1A7EC6B45EA4 +:10C120003DF2A269FD280CB33C61BAB85713D96E31 +:10C13000C237E25EDDE81FDF35EE69F8C7EC518FEC +:10C14000E74D2807EAEB4D17FF9C31A598F2ED0764 +:10C150008D7FB7C85EC9BFEAF1EF7FB0A223FF654C +:10C16000277D10293FE47965BABD4EA75786DF4584 +:10C170007FBC9CFC715FE6E7E5745EAF6372761D81 +:10C18000C255A3168DF46295CBF129D18FFA5621B1 +:10C19000E5931E652894F718F1C8AFDBC56A97C40C +:10C1A000FCDAAA4C6E37AB71BA99EC3BADBE135CAE +:10C1B000A3B7846CEA5309697D2AA7A94F75AF7E9E +:10C1C0007A4334621AD78C81487EBCE13FE4501632 +:10C1D000DE5337CEFBF3E9F5647D2C10A230F1E895 +:10C1E00004860D99EA494E4FF3CDE19F127E7AFD08 +:10C1F00003A7F631FF64D3ED2ABDEE7CD982F52981 +:10C20000C6BB97C500CB476F58EEA8438B259687D2 +:10C2100006585EDA5512A8F3A1FD7E74BB3EE575A3 +:10C2200028C03050DC8FD37716BCFEA65375513D25 +:10C23000855F6792711FE8D4283EE5833BD6C8DB53 +:10C2400033F479DC17584CE79D17783D38B9A07462 +:10C25000771DD2B99872219C2FEA198600EF17A991 +:10C26000BE823B7F574987E97DDBC3C1088399952F +:10C270000AAB17D2FB4BBF252216B07335E65F061B +:10C2800004DE97D1EBE50D3ADF6316E0F5E05E2BB7 +:10C29000ABD78C3E438FFE8EF3B8B409FDFE86917A +:10C2A0008F983CB6144FE8FD9B7EC58DFB9E2D7389 +:10C2B000D552DD016A9DD265EA3B948A5F264EDF46 +:10C2C000EBFD5B8A2F99FA54F0168F3FD39FAF3165 +:10C2D0003EA7F0819D7FBE83C7ABF31DA5AD909DAA +:10C2E0007AFE24EB7B6DE83F6DD2EFA7063E31E985 +:10C2F000F3D3DAA7A6F5587EC25A8AEF8F1D2959C3 +:10C30000F624F2F3F23BF6469207CAFF4F7C29FD72 +:10C31000AD58C7234B21FB7EDEF95B46C77830CA98 +:10C32000E46BBCF35CF02C1BC78231FEBB52DA3BE2 +:10C330008D3E81016DEF03F30B092143A1FE62BA2B +:10C34000FDBC6C51CF91DE17CCF1EA7D76AE072FA4 +:10C35000EFB0B23A123579FFD338BEF14466CD5E04 +:10C360001C8D2F296CA5B83E3ECB267158CEC72513 +:10C370004D0E3E5EB69C60DCEADA437D867181F745 +:10C38000B3DB4A027FED233FF662623ED9DB6441B4 +:10C39000E2330BDEDB9A1718A27901DD5D09EB7B36 +:10C3A00069E594275FB468F305B4E984EF26AB0729 +:10C3B0002E66689380E38B3FBAC6C7366E87677F69 +:10C3C0007486D9DD2FF13089F28AA302EB47F4E5B8 +:10C3D000067E4CE70E5A2142EF49BC2B0CD1FBC123 +:10C3E00015B3917E1AFDC8B81521F5019D1C8EF874 +:10C3F00004968FBFEBE37991017B1D311BC587BD8F +:10C40000070EFA895F3FB4C86CDE0A832AC97DDB58 +:10C41000C84BCC8ECFEA76DD2EEE2BA77EF8D51555 +:10C4200076207F8CF4A916B2AF1376665F85F85636 +:10C43000CAA3FEC5C6EB8EDA7FB64784947EE74971 +:10C440009F87D191EF430F8DFBF2BFE60C87481E0B +:10C45000B1E8ECCE2CF6AEA7FCD4071803D6DFBCAF +:10C460004C7D60DE07506D38EE3A52C4FA02277DEB +:10C470003C9FEAFDD9F97344FF165FE017A48FB71C +:10C48000FBA910BDE0F631FA58FD6117619790776E +:10C490006FFD34FAA3C6F8CCCA57CB49DF6B458190 +:10C4A000D1958E7F45A763DCCAF340D60835D1AD60 +:10C4B000D658A84FDB55C9FC886B0EE77B3A9FBE68 +:10C4C000F071BED762ED467D707B06C6ECDAE9F905 +:10C4D0007EF9F9E8EB950827B3E4B9E47F8D77237B +:10C4E0001F4EFB52FADE061F8C730C3AF1FE00FD64 +:10C4F0004E507BF294B508CFDDFC0F1E6ACFDC7E78 +:10C5000097416770A67A33D5CE51BF985CB40E2799 +:10C510009377EF894FCEBD82FB36FF6D551DE989BC +:10C52000B12F9D5EA47316D1F7B125C2FA8348A737 +:10C53000750EEB637F5C48FC35E87D50F9C46745B8 +:10C54000D9EF45F1A15BB365DCDFABFFCED2ABF732 +:10C550007BE0B0B9BF83FCD5A8BE4D8F2B402943EB +:10C5600021E5373C7ED88DFD659269FF1F66F8CBCB +:10C5700088FE23BA3F40FC30D93DE51D145F6EF7BD +:10C5800095F578D4A0BB20E12CEF233710A484A02C +:10C590003287C5A37AE33EA48BF461B7A0B1386EAD +:10C5A000F49B427ADC169FDDC1FA704D30C8A0C5FD +:10C5B000C1E35463994B11D9A57A1FE9B50F4D75A5 +:10C5C000E4FF01B40146A680210000000000000045 +:10C5D0001F8B080000000000000BFB51CFC0F003D0 +:10C5E000095FE142E55F1043E50BA0C9AFE444E514 +:10C5F000FF6147E5F7A0C9A3E36646FCF284F04972 +:10C60000A0FE4B407C1B889F1030CB8F08BB8E98C0 +:10C6100042E86C203D17888F0271BF2E03439D3E78 +:10C6200003C303203D4F9732F7A2E369DAD4356F95 +:10C630001493866758A0F20B1D1918663B3130DC45 +:10C640007386F02720C97F018A153942D8DDD60CC0 +:10C650000C65407E870576737B80F2E5407916177E +:10C66000081F005CE17B0F68030000000000000071 +:10C670001F8B080000000000000BED7D0B7855D5E6 +:10C6800095F03E8FFBCCCDCD4D484280249C9B87BE +:10C69000040878090944A4F602118306B90A56541D +:10C6A000A6737928C843E26334B4CEE4863CC180E3 +:10C6B000414153EAE0254407A9D3468BAFAAF305CD +:10C6C0006114476B638516ADED048A112DFAA11D27 +:10C6D000ABFF573BFC6BADBD7772CEC94D80B65FEB +:10C6E00067FEEFFBE38727FB9CFD587BBDF65A6B8B +:10C6F000AFBDE34A56181BCBD859FCF92663CD0EC3 +:10C70000F6BC7231636E77E8F0520665F8C72E61A9 +:10C71000AC099FA3E05F5CD5D934C63C8CFF68D9D7 +:10C72000EA71979FB14F1483B13278919546F575B0 +:10C730005F358B528D36FE9E19CE48B2B9DCAB44C4 +:10C740002631E670B268573163F5B27FFC4967CC99 +:10C750001508EDD90CA08D614EAAAFA7BB631A8C4A +:10C76000A307622C5A8CE345C7B00CA85BC52CF01C +:10C77000301666388E23B32805EB311F8747CE4F1E +:10C780003E77D5564FD61DA6B2832D4638608234EB +:10C790009EE33B2C3E623214BF5E685C0B70BA14A1 +:10C7A00096B09FC7B09D6F30DC8FED989BB51CFA9B +:10C7B0009B2AE0B7C329DBC33CA6E23CE4BC24FCD3 +:10C7C0008FEDB888C39F9D4E78B18F5BE0BE73B28A +:10C7D0003E62005EF9BE73DB3483F7031D653236BB +:10C7E000528CE755387E1FCC60310DE6F5707A7BB0 +:10C7F00016CB636C7B7A91AA03E9522B026A14E68A +:10C80000D1E7895E6EEE6FE412A6627F123F976BEE +:10C810004B3C27E0B963515ECA32A8BF9A41C719A1 +:10C8200083E16BAE8539017E77D6BA995EC8D89719 +:10C83000BF1E47F3B1D793CFC6DADE49667A3466B6 +:10C84000EB95719A4775CFAC74A47F41C96680930C +:10C85000AD52749C9707E703E525627CC0E3127C28 +:10C8600036E7DC4D7874A44B7C425B131E02E15822 +:10C870003800EF4746D418F26D2A8B3115FACFDC19 +:10C88000CB42DD8CE67F33F69367B057001C165C15 +:10C89000DCB6D16198F92332AF10EA3FF47A21C1B6 +:10C8A00023E17D82A904072B4A273E617A280BE900 +:10C8B000689F2783F1B05E2BE0A7B890E441C17A6E +:10C8C0008F60D934FF4216BD1BE9302AE4257A8DEA +:10C8D0005A11213A742A92DFB218F253433FDF779C +:10C8E00017ED21FECB9C82706D94F03CA20CC577B5 +:10C8F0001B13F19DBB3A14764169A2126DC2F15D22 +:10C900004A2895692046A12EAAE752B9BCC2347ABA +:10C91000B0DF2C4107C9FF69C546C7E620F017D232 +:10C9200005DA675535DDAE029E4766EB3117CC233D +:10C93000AB7769158372D2FBF33E6293E93DE98FD1 +:10C9400051D1EE6EEC27BB387600F19E36FF0853CE +:10C95000A13C46893E8CFD68D55DDDB368906AD206 +:10C960001B0F39622C007870CFEC0A478A91EED306 +:10C97000D852137FEDC5F9633B8385E3BE013E7852 +:10C9800058E3F06E8FDCE159E9C37A5EC2D30456F6 +:10C990001AC6FEC6231B9442BF03FCF02FD88FB1EA +:10C9A000C47805DB058D3615E102FE1F89F878C8CD +:10C9B000111D85ED1ECA712E8E73BC1C41FEF4A99B +:10C9C000022F06FC07784A56390CEB9983E0F209EE +:10C9D000BC24B11063F98C6DBAB527ACC1B819513C +:10C9E00016C2663E1B9EB4B5DD4C433E5DC142613E +:10C9F000A8A01557CF0234237E5E44F8D3584FD8F1 +:10CA0000012F928CEE980350DFA857FFE73F42FDBD +:10CA1000C6C35A286698F892015F4E1AC093331D18 +:10CA2000E4AE48F0061BE0CFA0D01701167D0DE163 +:10CA3000CDADA9E6729559341AF5846C2FF5376B94 +:10CA40005844F55DD9C6CE5530546E7AD6140DC70C +:10CA5000D5032AE2A3C36DE53FE450ECF7D1DA3801 +:10CA6000FBAD03E595F73FF6DE08C3FE736BCE28FA +:10CA7000C46FD9BD0A96E577478D669C44BDD7C083 +:10CA8000E7D3D8726D0AC3EF6E43453AE4B5053774 +:10CA9000BA4B8917438FD18811B6281997381524B6 +:10CAA00084B11FC0F36C70406FBA6ABCACDB3D3020 +:10CAB0007F478D93F71F0B1F2800B8E70BD69E2FDB +:10CAC000E8C14A1D277B25BEF288AB06CAC05B9F22 +:10CAD0006C80FFC1F8B1294AFC3165F0F72A41CFDB +:10CAE0002A7C2FC705787485EB3129D755E2DBC145 +:10CAF000677E79D15498EA5B218DA15C6E7CE6B5A6 +:10CB0000D6A9D0FFCF2E81B221E89589FD717EFB99 +:10CB10005990852BF07B99128F41BFF3CBB5E32859 +:10CB20007755339B3F433D5285F09BE6FBE9F3BFCE +:10CB3000D711AFEB675ADF0710765AA7B379FFE238 +:10CB4000DBBA128DFA7FAB5489A3881FFAF5875B95 +:10CB50002F05F8DE9CA98410BEB742BFF5213DE445 +:10CB6000B8FDF8325800F1651F47F21B108CF47ABB +:10CB70009AC077060B2B28174CAC6323C4FC3203F6 +:10CB8000D50AAE5B59E56D07343640C7D1E1AE59E1 +:10CB90003A9476245FF46E9CF0C20C7D1A41CF1853 +:10CBA000C99E1E13E32A675DA86758D8E3C7EFF054 +:10CBB0005ED207F095B542B7C097B6C4443FF8E7D8 +:10CBC0002BB57ED7CCF40D0ECC47F2B94FC8110B64 +:10CBD000B7D17A709FD2750C45BED5DD1EAE82F7F7 +:10CBE000D9BD8CF9019FC9D97A3C8E75439CAF732E +:10CBF00070DEF03E2DDB1DEF46B9CE65AC07F59833 +:10CC00000EDC8A7AAF3414D34DF36777A511DFA415 +:10CC1000B9399E5A2B4B52B19EEC0FF4A661967B0C +:10CC2000FB7AA4173BB97D55DCD2C39F3AD1CF051F +:10CC3000DF913561BD98A7209DDA9484F6961C6734 +:10CC4000A8F57D80CEAC488779DDC3BC21B4936A5A +:10CC500066EE3D1605780FB2E82205EDAE99BD757A +:10CC6000A837522EAB198B72EF9FC8AA51BF2CBEAA +:10CC70007409EB8367567A24D607EF37281A9FF793 +:10CC8000995C9AB726A07174DFC00CB4FF7CA170C8 +:10CC900018F5029B128E907E08D1738DC2D7C53BCA +:10CCA000C5738394BB30EB463E93FD80DEBF05E148 +:10CCB000C90B0766A37DA4F9AC76907D7EAB15BE4B +:10CCC000DE6DDEF0785694AF37A7B13FA7E86FF37B +:10CCD000F85BDC89EC9F54255AA798EC2D675688A1 +:10CCE000F4DFA52C7A0FBE67056166864BF371FDF4 +:10CCF000B8460910DC9B93F9783AE8399417FFA5F8 +:10CD00004B681C7DA6B497ABA5BDBC86E8B7D86AB6 +:10CD100087BAD3A17F90A764F648A02F8944A5E0E5 +:10CD20002C081BE20EF9EFF35277DC05FC97EC01BF +:10CD3000BE433B403949E3E0BA86EB690A7602ED2F +:10CD400037D7F690FD86AC500EAC981C32C9157FD3 +:10CD50001C298071A5A99C32208F24373E5F94EB5B +:10CD6000D710972737FC87FAE21E7835230DEB079B +:10CD70000EA880E29472ABFC058A42A40F52C3D67F +:10CD8000F7738160087FEAE56A9C6C7716AE2ACC5F +:10CD90001C18FF4B8F7F32028F7A2519FA4FCD80F6 +:10CDA000F51EEB1F85F592E17BAB7E36C17702E184 +:10CDB000C3651DE14B29EE8DA9541FB4A146F09D1A +:10CDC00030C33182B57E867400F82CEF715E979582 +:10CDD0000C8C0FE39D308F57E3E6F061BD99F0BDF9 +:10CDE000E6FDCF261D32B58FCD6645D530999F28FB +:10CDF000C9E97D131932808EEBCB17EC74B812D7CA +:10CE0000A5F66C920B7F80B7F1B97B888952114EE1 +:10CE1000A0DF97B567261D2A1CE03BA0D7E7167A4E +:10CE2000958BB201FA92E3D7FA9D6513BF5059234F +:10CE300078F8BAF71B4FBCDE04BFC4F33D5A5BA5BC +:10CE400082E3AA6D118443FA8B6E7738CC7BE17C48 +:10CE50007A1EFDB4FC95FA398C2AE45CFDD8DBD946 +:10CE6000FB857AD351AFC2F3627C6E2A80FEF2B1A9 +:10CE70009F6AD2C38A1EB6DA2DC21E720A3DED70B9 +:10CE8000475A82D09F76446368A7696D53C8FEEC09 +:10CE9000B75F0C3E9E339D756E96768B49DFB90B5E +:10CEA000B85D23E9A2677B2D65B638A6E078FF2040 +:10CEB00078A7DFBE61D16EB4D775E0A1CD8C9EDDC1 +:10CEC000B81EA2C6C2F628326769FDFD2E8D27DB8B +:10CED0006F2A286166FB4F3E756C0775500DF27521 +:10CEE000D0DA6EE875C136DE222BBCE7DDCEA71B9B +:10CEF0007DB24DDE70ED74D667B2C70C145ED4B34C +:10CF00005FC3778017631EDCEE8865233D4F805F2B +:10CF1000D60DF6C2177A6C09E2EB0B03564418F4EF +:10CF2000B023D094857CD0A81848A7A5ADD72CC035 +:10CF3000EF4B8F68E96A501007CA8783F3886E0544 +:10CF4000AA83AF337AAF8EEBE5D2F2E05CD4B19531 +:10CF5000FF04FD22BDF35CCA63506F5679DD0A6C95 +:10CF600077B5718303F5EE6B4FD6D3B8AB8D2B74C9 +:10CF7000D46317ABDC7FF864DF53D318C077F85F56 +:10CF8000935937DADF7ADCC9E0B97ABF16463F64D5 +:10CF9000CD8F92C97E58FDF4BA3D55D08FF25C32E8 +:10CFA000C153F9F4CAC75D045F3DC1B3FAD98529FD +:10CFB0000F209C4735E6065E3B5CC7D7B7752EB49D +:10CFC0003160790DBAF6740407F027F121CBCB5B01 +:10CFD000834D5908DFDEE014CD44AFD53AFB7BF436 +:10CFE000CB96C2F3DA04EBDE752AF7CF4E075DE489 +:10CFF00037297B0F7C9BE6D975BD03E7A934A43A9A +:10D000003F00FC5C29E60BF5683EB1279478217C53 +:10D010003FFD84C2E7D73569B72788E3EF762EA3B3 +:10D02000F8521DD507F8FF1ED7FBE57B834DA3A162 +:10D03000DEF2966010FDB6393FFA577F2F2D026160 +:10D040009F02F4BE4DC8D8FABD5A37DA3BB7ED5F40 +:10D05000477A1ECA64FFACF9D1CBCFC692B1BD6688 +:10D0600091ABDBBAEE23BDBEE6C72E5A373E3EA2D9 +:10D07000853CD8CFF30E8B9EFF386B9F1FE30DA529 +:10D080006F5AF53F8EFB551A8DB3D49932B81D6097 +:10D09000DE89FCB7BE6B138DB39EF17587BEC37C72 +:10D0A0003FC65F460D5E17EE55C57A309D4D47FE73 +:10D0B0005EAB4552D07E647B4724B4CFE43A20ED8A +:10D0C00033F00776C560DCD34FFF6E17CEFBF09FC1 +:10D0D0007EBFEBBB88F7973D01E4F3F5FB3ED8F547 +:10D0E0001D287FF2BC4B457E59BDEFA3DFE0F73F23 +:10D0F000BC302E0DEDB687546E077D1AFC3213ED51 +:10D10000B0BB5EBE7C24F2E55DCFCC19C912E80D40 +:10D11000F9FC14F82AEE32CB699CFA319E5778F06C +:10D12000E625F1B4D1EDE07EADDB077CF3C9311724 +:10D13000D929EBE15D0DACABB755AFAC423F0BCBA2 +:10D14000F7029E6F7B92FB3F83F11C1BA366E1B34A +:10D150007B0CBA5EB7ED5FB8E01BA5F874901FBEFC +:10D160009E9D6942BFD2DEAE9F7E47807E170FFE36 +:10D17000BE9E71BCAFC7F57FF260FA7D82BF5C32A4 +:10D18000987EFB917E4903F4FBC31337A474E3C775 +:10D19000FD2312C60125FDD63D735D4A22BD6CC636 +:10D1A0006FF779E0779588736E54C3875494BBA763 +:10D1B0007FF0F84EC0EFA7EFBA425580904FFFF5D1 +:10D1C0008B5C34F24E39CE7C1BE5EFCCCBAE400706 +:10D1D000B459FDF22F9D61A0F3A7CFBCED34683D9B +:10D1E000045311F4F8A7ACFFA707F5FA6D0A2FACAA +:10D1F000EF4CEEC6B88FA4D36DF16B2A0D3FBDA7DF +:10D2000078D06D71CEF7B7C50F2C5212D0ED6B35BB +:10D210008FEBD37806E1659DD1E30CF8ACF454CAEA +:10D22000918EC7E722DF0D454739FF00CE7FBA89CF +:10D23000AE9DC3CBE5A7BB5DBA923240DF4F451C24 +:10D24000787D5CF9254B20AF32DEC1B425C3D2C94D +:10D25000CE0F7FB0F1836C2FE77D2E793EF77C2EC9 +:10D260000C5F7DA8443306E3ADEE72AE9FDF0ABAD1 +:10D27000C8DE7EDB613C7C27F2C7EB0ED6014DAEEB +:10D28000CEFB503712F89F3F03BE34C60D9423E502 +:10D290009F358C80769199411E3FB2C5B7233335B7 +:10D2A0006698FDEFC09E08DA3343E153F3BB298E45 +:10D2B000C4C27A1FD243457B561DC08F8C6F44FB7E +:10D2C000D9344CE59BFBCB605883BE5989BF023CE7 +:10D2D0004BC3A54EB40F56B0A853077AAC626D5439 +:10D2E0005ECDBAE8B996F5D0D3956D38795CB522A4 +:10D2F000D04776CA5AED6CD2F9DB2512BEB714E3DB +:10D30000FE0AE01F4716A3F8E9C1512C8E72E11CFA +:10D31000F35236F201C69119E0AFA93680CE3A6BCE +:10D32000A9CDA267FF7E4AB848453BEC8E00879F97 +:10D33000EDDDB76F5FA63071000F8D60127499F844 +:10D34000F16D418F5FD6BA19983AECDAD62E07DA2A +:10D3500029CADAA71CB86E1E54BA2E4FC7F5609DB5 +:10D3600052C2E36BD5FF9E01FA21BF3540F1F03781 +:10D37000447C3A3F3A455D66EAF726D1CF4D6BA72C +:10D380008CC6F565CF9FB4847E74A3C6D78FBA2DA3 +:10D390004EB24F77D531D2EBBB2E71E570E72D8BB6 +:10D3A000ECE702613F1F9AE5CAB90BEABDBB4A0B25 +:10D3B000613CECDDB6079271BD7977C5C261E5AC21 +:10D3C00003F521CCB313E6897AF171C01F96F702F9 +:10D3D000FEF0B9AFD6A0E793B545F4FD87B5212A95 +:10D3E00077D59653F9E9DA3095F7D75652F9D9DA65 +:10D3F00008959FAF5D4CCF976A57D1FB031BE6AAF8 +:10D40000BD008F7FB33B8A76CEBFD556D3F7825807 +:10D4100048C5F5B1BBB686EA55696944EFFCD690BC +:10D420001A85F7460B6B41FD5213E3F1EB0E47EF04 +:10D430000D11D37CAA346E3FB58AE74125B491E83B +:10D44000328FDBA3F94BA6CC4E07BC5C5F11345482 +:10D450000B5DEA1CB38BCF9F1E0B351E27B9B6425E +:10D46000634526B95BBCC45A7E6B566F36EA8BB7F0 +:10D47000C0FC62A3C14ED41FAD8B41F9F133E01360 +:10D48000031CB12C07C5433B3CD1CDE301CE5DA3CA +:10D490001CA51D50B5634A60B4D93E7C47D07F7748 +:10D4A0002AB743A71FE4F1D4F8B68B3A36D2DAF1A3 +:10D4B000DF67CF02FD73F17760E209BA88DF1405F8 +:10D4C000BCE6FD96F806E7628AFB63900CDA776E9D +:10D4D00008C4D10E8F2B2AE1019E4C25FB5DED4047 +:10D4E000BB9B198A17F5FA6EF89682F06D543B30A3 +:10D4F0007E2AF75BE281801A32C199CBFAE3171AD0 +:10D50000E9778319CE69F89E513C447E87E1BBCF11 +:10D510008A350FE325F41DA694DBC0E38FA67E6851 +:10D520009D288A9BCAF06FE25E6B1C655297B57CA2 +:10D53000F1F3D6F2946E6B79EA616BB9ACC75A9E7F +:10D540007ECC5ABE5E17FB46317604E3DF6385DE90 +:10D5500063462FED538DC53838E8A1DC18DFF7CDD1 +:10D56000BD57B7C573ADF16E86219769628B08FE12 +:10D570007749AFB5BE21E2E1862DDEC29614A966D9 +:10D580003F708BCEC82FDE3293C7B5E1A7C2938E12 +:10D59000F16C25807AE7D5F6FF2ABE0B9EB9ED60C7 +:10D5A000A7C37AF02FFFFC6A36EADFB91BD408CA9A +:10D5B000DDDC60AF07E9ED36422224D78F67F5EC5A +:10D5C000F4A1E91706114678B6FC89CB5FDABCED09 +:10D5D000F3A7C1B89F1FC92FA1F549E0699CC2E715 +:10D5E000B756E7FC3B7FA6C382D7AA2C8785AEDF60 +:10D5F0003863C5FB37BFB2C7CB4C7CA05D78799C44 +:10D60000D8AFD80BFA0DD703DAAA001553C4B6CD9C +:10D61000F69622FD5808E3E4E3594CC5724103DF56 +:10D62000EF2AA8F162A501381E91F1B870C2FD0E73 +:10D630000F6213F0E1F90E23BA180D56FAE6227DB7 +:10D64000399F5BE2E4792DE0BF4FE56566C23B5B45 +:10D65000C4D72B49F7DC55733ED227537B76C2CC17 +:10D660001FE632C0F15EF7130EB42F72BFE2F4B7BB +:10D67000F773634DAF124BA0DF72BF72527D59DE5C +:10D6800005EBC209C7B9F5692D12BF6CB05E9DFCF0 +:10D690003238B650FE61AC57C1E7C51BC254EE6AC2 +:10D6A0000BA8B82E851A1995A7D4C17728FFB826DC +:10D6B0004CEFD9D7300B8057860EA66EE3F58C86DB +:10D6C0005E05F5742016A0752458C3A87E2016A602 +:10D6D000B2D1D6EBC17AA027BB9574D4936A7C23D0 +:10D6E000E9B9139BC6A1DEFD77B5EB3183D308FF03 +:10D6F00075D618718CBB4B3DC87AC29B49BF02DD01 +:10D70000F13DEA5BE487CE3A55E85BAEB7480F805F +:10D71000BE1D1B53C39EC916BDA5927EBB97F3AF1A +:10D720009BB5D4A17D75A17AA913E1293EB77E3AB4 +:10D7300028D623B088E8BDD7AD707B6E087D358BC9 +:10D7400059F5EBDF4A7FBD836D715FD661A4225D21 +:10D750003E8FA90CE5231EBB96DBEF22DE44F4D6F8 +:10D7600006F3E52E619FC8F2D8066E07D8EBBD23FD +:10D77000D73FF64D66E69FDC06E3FE99306EC11199 +:10D780002D64188897B0EA01BA06DB41CEA15C0887 +:10D79000DF2B0C8283DA45843D050C5189FC102C6B +:10D7A00055891F00AFBE5999FD2A01E5DD5B0ADFEF +:10D7B0003D4DBA1183F2D81A6BFCB148EE93C6B94D +:10D7C000FF23E3F885ED267F08E103FFB82888F002 +:10D7D0005AFD2493BEB0FA4F025FFDEB27EEE7BA85 +:10D7E000C91A388BFCF73FAD6FFBD7018127A977AA +:10D7F000A51E06BD3B7F1AEA5DA0479CA1DE6D23F6 +:10D800003D5C10E3F4B850BD1B8CF7D2BEC779EB7A +:10D810005BFC456EAE9AF4ADD4C352CF0ED2BF7F3F +:10D8200063BD9B8FF61AFAC95F9D253BAF40D2BB03 +:10D830008D85793E1013795681DDC89F5F1DFF30BD +:10D840005E8F71ECB44CF2173748FBA554E409899C +:10D8500026729C4F94E8063D41DECB06316EDABC61 +:10D860008261F3C69243AA954E328F00F3DE4C7468 +:10D87000F018A32DF5A43F06280CA3DECD9AC1FD18 +:10D8800001D9EFEF756EC76F70A85638845DE2104E +:10D89000F4B2C323FD3FE9F76DD17BDC3C0E62B5EA +:10D8A0006F1CCC6ACFC8F65BFE14594C764DBF9EF8 +:10D8B0004A53A49EC27C9A190E814F217F0E410FBC +:10D8C000D97E8F2DAE54902EE824E8D788F5F30743 +:10D8D000BE8F11FDE5A70FE4E50C474F597F187A7D +:10D8E0008E7124A0E7161DF41FDA8B4744FE8BD0FF +:10D8F0008F0ED13E3FFDCC2C5C47C7DE0BEB2F8C4F +:10D900007711FC1B8171FA56AB3E2B4C0782E7B1B5 +:10D910007E3DE9907AD2A617E331F54ADCC7F9A239 +:10D92000553710EEF3D583989F827E47BE6DFFCFAB +:10D9300021E4D831841E9474705CA01E6445A6EF67 +:10D9400079163E392F3D07EC787F85721EED62E136 +:10D95000A3A80FC7338EAF7DA80FC70DAC9713D800 +:10D9600053AF7801E78E3646FA70228B6FC4F2D837 +:10D97000EDDC0E6D56B8FF375EACD763D3BD16F93C +:10D980005AED10EB5E27D77F43E9C982EDF6F53DEE +:10D9900046F11DC907934A3F9F55913778FD76544C +:10D9A000B450FC716C25B7131C363BC1BDDF5ABEA9 +:10D9B000133BCCE0F31D9176E170D9C797F23F5449 +:10D9C000FCC2AE87A43E61BE12D23369F3EE7A2D5B +:10D9D00007E3272D06F75358CC950BE57B1A0C9ED1 +:10D9E00047893B5FC847FD891C7CDFA446E827D6F2 +:10D9F00015B47CCF1A2DF34FCE78506E1AEF55BD6B +:10DA0000F84CABCB4B4130868273A8F8D4C3637F0C +:10DA1000538972E7003B03E3850E3D1256407EBEFC +:10DA20003C0E8637B3F093C53F937AD0AECF06F461 +:10DA300018F3623F763DF68ED0AB7FAE1E7BD45698 +:10DA40007FBFD463F79EDFBAB4FFDC7A6CFFFFD7E9 +:10DA500063FF1BF518B7EBEC7A4CEAA573E931BB11 +:10DA6000DEBA60BD30847F6168E1AF905F3EAFBCDD +:10DA7000AB995E0B7B256DC3C62BDC6C683DB1ABEF +:10DA8000266F58BD62975719875E00F6911B54CBDD +:10DA90000210130386BA32BBE7A533F0F5133D9AA3 +:10DAA000E4C4784752CE46ACDEEC38934EC90961E7 +:10DAB000660432F9FE3CE24D79BE2982F370B06A09 +:10DAC000B207EA0DD6AB51107A4900F72B15D6CB29 +:10DAD000CE4E1CB093EC7035639C9AE4A29BFCE4A0 +:10DAE0005C116F51934E8F5A06EF739D4AC23C747E +:10DAF00056A39FEEC75B1EC11F433B987282D0277F +:10DB0000FE8687E29293F55ECA8BA9085C53910A60 +:10DB1000EFE786822532C782513995E4DAE18C8EAF +:10DB200077223E7C132A703E982742F96F43D88BA8 +:10DB3000FD70C8FD8630EB554CEB8F9C6F9F275ACC +:10DB40008A78CC0BA4CE4E3530DF95E79B5D2EF264 +:10DB5000983E6FE371F0A1FA3F28F2ECBB807EF8AB +:10DB6000EC00FA613ED60F41DF62B9C0E7A17CB09C +:10DB7000EE5A83CA2FD516D1735F6D88EA3D5E5B7E +:10DB80004EE55DB5612ABF561BA172218BCC45B80D +:10DB90000ADA78FE79BD93ADA2F31AB63CB8054E09 +:10DBA0001EF792CF88D3A0F976E244318EF29133FA +:10DBB0004E71563D3E06CF53E013F156F65237A64E +:10DBC000A0B02B5BC373F059C29E6A40723D3B49C3 +:10DBD00051D9C58CF98F78BB71FFCF5FF2E1AA2DC7 +:10DBE000D0E53393144A3A9BEADB56815B1AFB2754 +:10DBF000813E85B2BFA8F976D433FE23BFF82ED27A +:10DC0000C57FACEF1FF1E9323E6BABC27E55E3FB43 +:10DC10006B91DECB7C218C87ECFCB9334CF543DF78 +:10DC2000BF139F252CFCDE5AE8DA5FFCC43F90BE90 +:10DC3000D3BB358C03974402215C2F773A7BE66097 +:10DC40001CFB996FB110C6ADFDC52FDE43E31CEE82 +:10DC5000DE80F533F7561F0049672925DFFBFE03F9 +:10DC600050BF7DFCA624CC1DCEFA79BB673E94EF55 +:10DC70009FF4F255203EACADE0C1B7110D3BB34B64 +:10DC8000C7DC09EF3B9D41C2D3EB050F569540FF22 +:10DC90008FAC4DA3F5E2F58283A9B86E95166A1193 +:10DCA000B4939F9FC9CF43487C6F706AD4AEDEE9BE +:10DCB000E4F99B051A9D67907A589FC9F3EA1D3DC8 +:10DCC0004E3A3FE0E8E165777A35530C5A6FEA91B6 +:10DCD000AEACD3BA1EC975A7D919107185F008D496 +:10DCE000672F66AB018C9FBF98FD7412C69B5ECCFC +:10DCF000BE9692E91C053CDFA4F4EDAE372603BEC8 +:10DD00009AABEF985E47FD74255D0FFD3439797E3F +:10DD1000FDFD1827CC18A6FD67D01EC6695E0BED69 +:10DD20008D81F65BB13DC0F9F0B9DA079FE2EDAB4A +:10DD3000EFB28CFF9068FF28B62F1BBABD5D9E76B0 +:10DD400009B85F3CFD742A3F77D155C00025079A7A +:10DD500016D5EBA3302F257E12F37899F3D6398BA5 +:10DD600041EEABFAF373C35EDAA7BA2B8DE2D7E5C7 +:10DD700042F75CA586BD081FFB0F8D3DC686D313F9 +:10DD8000EAC07A410AC81417A0729AAD3CDA563F2D +:10DD9000CFF2FDA74EB14F0E2B95B55E89A57C55F0 +:10DDA000CF45A4CFAE3A96391BF97928F8DE38CAA8 +:10DDB000E5E60DD4793318576CE58CBDA0C8F2ADFB +:10DDC000732A005F2F88EF3F77AEAFAF2BA6EF141B +:10DDD0006F84F78BCDFB8D3F177AFB374E7E4E4A13 +:10DDE0007BD34DFC2AF9507BB3A907CBFA31CEC7C0 +:10DDF000DA49E7712A176FA2F7DA9126DA7F77FB03 +:10DE0000FAF9FA37A89F595762BE662B787CC2256B +:10DE1000E65EC342BF22BDB05DE5F9764FF27D07F5 +:10DE20001736243EE47672497FFDEAC354BF4A2781 +:10DE30003A4A3BB944D4FF31F0460FAE537A88F8E2 +:10DE4000AC86196F14637ED74995A1DE39B8FD8180 +:10DE5000AB900F9E39CCF72B59349FDA978AFE5935 +:10DE6000BC9097457F29B9B2BFEA24B4F37EA2B42F +:10DE700051FBD83C9DF4985CAF25BF4D13769D5C5B +:10DE8000BFEB5C7C5F71FF913BEE9B04ED1EACD061 +:10DE9000E97BD94B5D0D98BF537A284CEB36E69958 +:10DEA000FEA404B9277EC88DFB5E47BFB531C940CB +:10DEB0003A8747CC477873D410EEE39730D0BBF065 +:10DEC0009CDADE95340FDA8C7171FDD5D1D6F0DA9B +:10DED0003F22288F8435949783050B358C4F97B557 +:10DEE0002D9A938CF33FC6428506CAD3326DA5495D +:10DEF000DEA665AB247F05DBB693FE6B4CEF9CA1E1 +:10DF0000097ADD988CFDBBF8F9BF6CBEFF6DD25F5E +:10DF1000635CA8BF5A13D3B95063313C2FC3FE537F +:10DF2000E5EB4E6575D235A6FDC1E70E833E05FAD9 +:10DF300094BCBEE88ED7A15E4360C654EE278547E9 +:10DF4000DF4A76FCCCA9A8F727BAB87E658121ED17 +:10DF5000F6890887DD6EFFBCF2BF1414E5B14549B0 +:10DF6000B4EE8E3DCCF9F8B9AF635AFFE6BB49FE7B +:10DF70004ADFB4DA896A8B359E349699E249148770 +:10DF8000B3CA397B7FE240FD3CB20BF9B90761EFC0 +:10DF9000178A6F693B545A8FF7833DA1527C37EC47 +:10DFA0009B356DE09CCB6EC14F7161E73ED7323B34 +:10DFB00009E342CFF4EA4C81715F3DA252BE9BE37C +:10DFC00008E75F472C3487CE7B083FC1D5D0554F3B +:10DFD000FB19A50E8BBF70E9E9363A6732CF960779 +:10DFE0005720FC83729BDF5020F26A0A6C7E833DCF +:10DFF0003FE64697353F66EB7734822FF60B8DE48C +:10E00000B9F31216C3F3ACE828523EF8B2D1B4FF0C +:10E0100021E927F36556B9B87F76E8D7572421DF81 +:10E02000EE6F6B22F95D8F93349D83917907CFB7A3 +:10E03000E5D1BECBC11913A8BE3CB733557CDF0870 +:10E04000EF918F5E007C63178FBDF9C0183C67F8B5 +:10E0500040859B8280FE3D5D63D05F7D71B7385700 +:10E06000A873FEDAC4787B5A43A0BE3B9BFB933572 +:10E070002EEEBF7EA2446A90DF5437CF2BF6E7DF47 +:10E080009E85FD340795F3EAA76EA09F3A733FD2B1 +:10E090002E5EA04675CE9FDDA44F72055FE4BA7D6B +:10E0A0005C2FDBEDE9537CDD00BBB815FBAB42FB1D +:10E0B0009EE2F3BDB3A99FF3B78B6366BFD6641727 +:10E0C0003FECCA18C62EAE19DE2EDE2DECE147D18C +:10E0D0001E2E443B398BECDB0EB4971D74CE720FB1 +:10E0E000C29DDBC0D79DDC1A69E78616E3FAFE7A8B +:10E0F000F3C939FA2568C79E9982E51F349FAC772A +:10E10000035C79AA311AED81979B7F33C70DDFFD40 +:10E11000F50A2DC52F403906ACF2A8CAF92DF638FC +:10E12000E3E7C0F4D0CF2BA13C7E453AD99379EAFE +:10E1300099D7C7A15E5CAD921EF777723BD20E7F76 +:10E14000875837FDF5C76F473ABFECE2F6F5CB824B +:10E150008EB25CAA455F267DA8335D37D3AD26CA53 +:10E16000F87994B6D1A89712D059EBDF0F188ECE5C +:10E170009D40673FD1F90D49E7D4E0009DFFCD15E3 +:10E18000E072A2C33893CE9FEEB98CE7370DE5F766 +:10E19000B9BE9A8887A8FBCB40AF77911F72B39D19 +:10E1A000567AA9E097C03C35711ED1AF5D538DF909 +:10E1B000C7BF137892CF93025FCC673DC7047AFC48 +:10E1C00024CECBAD578BE428AEC7FDF5D08FCF84DE +:10E1D00057E177225ED1EF2CD5667F84F09C76499B +:10E1E0007BB99ACE79C17A4DE72CFF6C7C67F7E357 +:10E1F000FB4B8EEF5E95F2CA18F753CF17BF03E7BC +:10E20000168C8600F2E37758087C6F36C7778D2529 +:10E210008F5FAEFF83FC4A1675B94DF9775FFEBA82 +:10E22000D985ED1630980F2DD4DD94CF3E7B8451E7 +:10E23000AAA03D1CF356BC09F6E06C342A4663D90B +:10E240005381FBD7B39378F9CA96830D9817341B83 +:10E25000734EC95EBC887FCFE7DFAFC6EFB88FEEE5 +:10E260000CA7BBCB2CFA216E8EDB825E18ED1E4E06 +:10E270002FC418E5210E851F29FFBB847EB07F07C0 +:10E280003EBB08FB375AF8392A2336BCFF7BB19BCB +:10E29000DBB1F21942E3AACCE4FF3EE1147A203E5E +:10E2A000FADA64FE34F3C7AE7EBBD1F072BB91EBF9 +:10E2B0006D36D3C3ED17618706FBF769ADFA59DAFE +:10E2C000A1418F95AF06EC47E197D8F84CDA8DF96C +:10E2D000E2DD82BD9CEFFCFF5D7FBC19E09D0BF48D +:10E2E000453ABB04FFD5780C9ADFEE16959FF7DE12 +:10E2F000C0E81C68676B1A9D37EC7185AF32D36D2F +:10E300009B2B3CDF46C7A88D8E0BDDC3C53D041D8E +:10E310000D8C5F4C1EA083C4FB3B827E47053D0FE6 +:10E3200089B847210B2F71937F6C6CC3F3AAB1FF9F +:10E33000D048CF0EC50F43E6510A3A4BBDB2C6C313 +:10E34000F5C7C093EB957744BD60399B114831C93F +:10E35000959BD77BC793F8DCE0DD6E6E77F8EB23F7 +:10E36000A4AF64BEDAF80658AF4DEB5A8DE8070C3F +:10E3700051959F376A5351EE160AB8F2CAD94CF339 +:10E38000B84D820F177AF977FBB88D725CA127E53B +:10E39000B8F92DD6719BFBC735C4B8211A777CC359 +:10E3A000193A979D772FA37B238CD64818E9F2CE94 +:10E3B000FCE91F6C473B3EA348EC3B8419C67BDA63 +:10E3C000053C3B9DE12C1C4F033C617C2717E0C6BC +:10E3D000A7C3C7C8AF73D4C4B83F3760E7B7231D1E +:10E3E0005976623B5FE2DDAFB30A97497FE50BBA2E +:10E3F000C8B29CE7C2AA590ECC57BD687B80CEAB91 +:10E400005CB748213ECE0B67EFC6D4C33F0ABCECD5 +:10E410006BE1FE46A12BFA34FA078F3EE6A47D8914 +:10E420009DFFC4FDDF9D4E63331EA96F9CCDFDA2F1 +:10E43000CCC5B72BC8BFED3B9A9E7A1DEA1D770B62 +:10E44000BFA8258FEAC9B88E2C8FB93D9DCADFDBE6 +:10E45000FBC03C8CD9C75A54F28F3A6672BF44C293 +:10E46000FDAC9B9F73ED768B38CF5E35719CE75E7C +:10E4700011E759A1DAE33CDDEE61E23C87DC72DDB5 +:10E480006AF3609CA7C3C7E33C1DBE3CDADFE9F03A +:10E4900089384998FB69DFEB8179039FD457CB38E2 +:10E4A0008DE1BD1EE038E8E6F19237518F640CD360 +:10E4B000FE0CC75BFD5A1927E2EDDF70F338CD91F2 +:10E4C00073B53782BC3DC6794CE3BF23DABF8FED0D +:10E4D000CB866EDFD1F274EA4A137E7F25E0EED858 +:10E4E000BB8CFCA53DDF3B1642D7AA95B54557032B +:10E4F0003F3CAE180F5492FEE6F181BC4D2BE87CF8 +:10E50000ED1EC52ACFBF73737EFBA3E0F3832D0FEF +:10E51000507ED6F896EDB311AFD06108D3F2F7ED87 +:10E520002D51CDE3E7AF50691F3C6F5301E7279BA7 +:10E53000FFFB47B78BD37D05A7BB89AE7F24B918F6 +:10E54000C2FF957A01E4A2C12C171BEC7221F4CE14 +:10E55000B9E442EAB9BF542EAEF1FC75E462948787 +:10E56000C73F431E713FD085CB45C89331B45C484B +:10E570007D0D4D2A308482F61FAEAF71514BEA09F2 +:10E5800023C6EDEB7E3D8A3F0077DB62AE47C12EAE +:10E59000E77412EF474633C90FC31B22301E51EAFE +:10E5A0001176F35F287F533D9CFF677A86E7FFA1D2 +:10E5B000E4EF520F97838A73B51F42FEE688F65543 +:10E5C0009EE1E5D72E7F5709B8FF52F9BB49F0A766 +:10E5D0005C970FB69C50F0BC426ECBC93A17FA5903 +:10E5E00031297FAA45FE8C73C8DF1A8F883F0D96AC +:10E5F000BF359E61E24F9375B9BF787EF6BE7D9FB1 +:10E60000EE5CF944E807ECA0FDA87013C221D779AD +:10E6100000B141F02B9D5B91FC2AE5B79F5FA5BD42 +:10E6200031985FF9BC86E05769C7A539A3F779CA65 +:10E6300006E482B302F65F2DE260B121EE7B58253D +:10E64000EF7B7800E52FB73CD28DF2DE7FDFC3B8D9 +:10E650005016E6D9D7A7CAFB96381C7A7A680FC23B +:10E660009772D9A9AE8318AFCB28998A747A54C807 +:10E67000BFFD5E03495FA0D3A3388EA45B7F1C1847 +:10E68000548739DED034EA5B43DDCFF02F1E93BED2 +:10E6900074A4F3FB19ECF725807F25EC4C47087D2B +:10E6A000D95746B1FDE877BD22EF6B12F6D582ACA3 +:10E6B0006007ED23825F6B805FFB86D087F8930D48 +:10E6C0007C345FF897F7A4C7AE58CAD0EF8B93FDA0 +:10E6D000FD891E7D1EE7F1D3A47F5ACCEF33E1768E +:10E6E000E02B621F3396C1849FD04D712897A0C73D +:10E6F0006CF04454B4DF91EF503FCE64744E8B798C +:10E70000154ED76CE043D33EFA6C816F962DE2161E +:10E71000B67D5C979BB9BDB09E28EE03C7705FCEF7 +:10E72000A533B79FF20AADFBB8C0473FF3F079E9D4 +:10E73000BA09CF8E74CE7FBF65D17710AF5B677C8F +:10E740007C0CEF3DFAE4198FA105F1BC66EFD5F919 +:10E75000C6FFDE79C9F3A7325F82B1DB2DE7DC6546 +:10E76000BE84F45FC66EE7FECBB818BFFFAA28B61A +:10E77000F17695F637CE28646F6FD719F2357CA7FE +:10E78000F549B61F17775AF237822DD672BEB857A1 +:10E79000A2509CBBA7F7D04FBEC817C8B7BD97E71C +:10E7A0000687BAC7CE1E577578ADE788CF756E510C +:10E7B000C651FD2C9CE4257B3D9DE239F51B18D10B +:10E7C000C75E5FEA07CDCDCFEFC9FB2CA4BFC50A5A +:10E7D000447C46C80313F473671B243FA3BD8A8C93 +:10E7E000638EF692BE12726D3BEFB64989F2CB1280 +:10E7F0007C31FE5D9C7FA3AB2B408E1A6AF979B702 +:10E80000563CEF360EF54C35AD57AEECEA6E8CD774 +:10E810003A8A18E5C128457186EB89B7A82B0BCF3A +:10E820004BDD37C479A91BBDDCFEAB9BE42478EF3C +:10E83000FBB542F1C9FB0AEFCE329F5FD3841F7F45 +:10E8400028E76E77AF09AFCDBE3BDCB86E36675FA9 +:10E850003B2CBEB5368DF276CF59AF85D71BEABBC0 +:10E86000CBC7CF997D99137B0D51EDC2FC2FD2BB45 +:10E8700086659F4CEBCFFF0AD1FD4332DE20F7C9FE +:10E88000EADD21CA3BAD07785802BCF48FF7954208 +:10E8900079BF86168E20DD0E4C9A4678D58C2EBA1E +:10E8A000B727A918D68F64DC7F8977631E970EF887 +:10E8B000C7F316E7C2FB442FB7C71C01951599E4AF +:10E8C000C41968CBD2810ECE022743FD82EBACF98E +:10E8D000FB2671DF8153E4BDC9FE72457FB78A27ED +:10E8E000B2507909D2EDF108BF3FC3477A81FA816E +:10E8F0008F595A7835F1BDEDBD9A5CDA837C70474B +:10E900008ED3182E4EFD5E2D8B1438307FA6BA1D87 +:10E91000E3CC71EFA58D8DE594074971B1D6CD3764 +:10E920003662DCEC572A8F3F31BD2BE39A49E8670A +:10E930003F5BB63401FD7FE5EDFA07D29FB9CE000B +:10E94000EACFE61CCE8F375D9FDCA199E0784AF0D4 +:10E950006BB392383EF188983F107C128F6B46263D +:10E9600099CFD9D9CFE7DEB44A891498F4C87BFD92 +:10E97000EB5F3C19ED87C68CC70B13C1FB9E277E4E +:10E9800033C5C972ACF0DEF82D0E2FD8F565D8BEB0 +:10E99000DDCBED1809AF7C021C39E6FDBD26AF8C3E +:10E9A0005B00BC3C5E42653B7CBF92EDF5AE648192 +:10E9B000CFC2A509F0F02B4F5742F86E42F84C71C8 +:10E9C000C6576DF804BCE55C3369305CFFEC0D584C +:10E9D000E0233A63FFD725D37A27E9DEE8BDBA11F1 +:10E9E000E3A1EF89F836E03143E0B12C119CEF79D7 +:10E9F000E309E97EE3F556387F2AE030E16F5222E1 +:10EA0000FC9D079CC3CEF347981453365CBBC4E30C +:10EA10001EC27680C75FCCD4C97E8C81FD5888FB2E +:10EA20006623AAEF369F83DDE0E37EE0061FE78BD7 +:10EA30002FAA2AEEAF6068DF06C91E5BF986467E04 +:10EA400068D6C58CF4F9A978FEEE98090F9B6BF98E +:10EA5000391B8CFFC55C03FB0D9B4BD3FC068C73F1 +:10EA6000AAE14E3A57157B5F21FF6128F9AD797F06 +:10EA7000E5ABB8FFBD65B67795399FA42095C76F04 +:10EA80006E48E17C31D917BB3A88EB59583798C9A1 +:10EA9000FE581AA8E6FBB5B9A05FF3D15E0A6D9DDA +:10EAA00008F39DFCC222BFF51C79945DC839F2B40D +:10EAB00079056F23DEBF38AC31A4FF293D72F525FF +:10EAC000884F9F4EFE54637CE13A7E38245286F490 +:10EAD0004D6EE7FAB9A5962F066BBDB31D4900F739 +:10EAE0002FC539BF0F2F53E278DFC38169AB735154 +:10EAF0006FF76DE85985EFFF50E6A57B711640353D +:10EB0000771ACF13A4E7922906E5530149F09E81B5 +:10EB100005555755A27D929914147C15F6ABA0E7C4 +:10EB20008E5D9944FDAF6D0FEEE6F77545E99E8564 +:10EB3000B5321F598F3A179BF75358EF9C0DF8CCFD +:10EB400066E1EB302FB1FD9A2BB1DF058BD6515E1C +:10EB5000E68272A3849E95F745D09EBBA54AB9086C +:10EB6000E38C0B2A9F0AF0F7070214AF685DDE34CE +:10EB70000AF071AAC817C2756641E5DBF4FD964A32 +:10EB80004545FBFDD48A154DA390FEE55E8A432CD6 +:10EB9000AB04BB04FA5953A514F0FE8E53FD555532 +:10EBA0004A9E9182E5CFA8DFF90D4B711B8455CDAC +:10EBB000DBA3235DE7B118EDFF5CC1E2DF7E2688B1 +:10EBC000F789F1F9DFD2CEEFCFD93A614208D79871 +:10EBD00055F1A75E1D0D65EF6545211E3FEDCF4741 +:10EBE000759E1DC3B84F98C9DD09ECD7AB81950B55 +:10EBF000223AD6C7C215805FAF1AA7F2045F4763F7 +:10EC000003D85F292A7C87F5A412BF97E3775EEECD +:10EC1000DDCB9A0E5D32507EB67174D3A15158E6A9 +:10EC20007A27DD37692EAE372997B008CAA9CEF802 +:10EC300079297815A3F37EF0FBC6690370DCE9132C +:10EC4000F149510F5E3D85F57EB178F9163C77DBD1 +:10EC5000D7A205508F378C0FFBF1DE04160DF9712A +:10EC60001DB9FFC00D7E3C3F94B269E1D564BFEF92 +:10EC7000560228E7AB7A634EC4C3AD31A50BE5E37A +:10EC8000039DCDC5F2EF1A661975501E975248E3E1 +:10EC9000F5B58F70FAE17D6FA712C06E53BEB1BD9E +:10ECA00009FBE99B994CEB7D6F6B3EF5BBB45DA313 +:10ECB000BBA9FAE2757EBCA7E444CB8FFD33D2B189 +:10ECC000AC51BB0F581D95632D7C9F007D2F82A7F3 +:10ECD00045EBE0F778F2FB2493F0779097A40625B4 +:10ECE0003C1EE85E9CC2F5D56FB343B9A897925A13 +:10ECF0009FBB4701FA9F605C5E6211E16FE00FB459 +:10ED00004FC7DF810FD25B346A7F7B126F9F14B9CC +:10ED1000B0F368B7F672F8566E57E206CCF3647536 +:10ED2000642EDE23B9FC49853D90A0FDF24714AA6C +:10ED3000BFB48BD7B77F4F8A69E49F7CAC44B712CE +:10ED4000DC3B3426EE2FB5D4FB00E0C6EF494F295B +:10ED5000BB5982EF209D87F09EBF74267FACDFD326 +:10ED6000BB946E9E376B7B2FEFBB8D58F39F73AABE +:10ED7000966FC7EB2B7306DDB3C9CF65661265D8F6 +:10ED8000A0F3E26B1E7158EEEDCC147E51A62D8FD0 +:10ED9000BAEF343FEF182B5569BE99EDDC5EEE8378 +:10EDA00027E67BBE99E5789CEC8F33DDBE6F019F33 +:10EDB000CEBD41A57CCCB9C1A807D713799EDC9FF5 +:10EDC000CFD7A5D9EE298702F0FECA029E3F2CF3C9 +:10EDD000892BB37979CB9FAABFCDE32E89CF37D0CA +:10EDE0007C548293F8212CCE375C2CF8EC9D8DFC62 +:10EDF0003E8453B3400F0707E7C9438BB2A530DE0B +:10EE0000894D23D3F05EB7538A884BBCCEF9DA9E86 +:10EE100047BFB24A9940F9312CE6C84C47FD934AA6 +:10EE2000E743E61559EB451E51286E7585617BDF7A +:10EE3000D24CF785AE8D1FA77CA7B5615B9EBE9DAA +:10EE40003FCE5516E786E608BA1E16E728E7887C07 +:10EE5000FB4AB6AD220DE673EB627E7E1DF52A9667 +:10EE60006F5EC2F3ED6FEE4CB29ECFF33986CDB735 +:10EE7000CF5C92F87C50167FD57F9E32A76211E559 +:10EE800029D8CF556689734239784E08E0CBBACB82 +:10EE90007A5FEC51674F653EE23F57A1F5D69D6D15 +:10EEA000BDFF16FD11B35FFF7F9278BE1ECB3268A7 +:10EEB000DDBEF5F00866CE57BAD5C7EF65C5841438 +:10EEC000737CE3F3C3C3DF77E231ACE3D8EF6F1CAD +:10EED000A4DF01B71B4DEB8C49AFC7855E4F46FEE3 +:10EEE000977A3D82C982985F110E6D75E05EBE1102 +:10EEF000A6FC07FF1C2E17B7E0FA087CB650671572 +:10EF00007A1ADD574CCF526CC7E34414BF79B52849 +:10EF10008BE290B7B4EF36F0FE984170C1DAD63488 +:10EF20002D215C31A407C2A598E06A4885F5261F0B +:10EF3000E113766C255F7706F59B655DCF4CFDB6DA +:10EF4000C9754C294D385FBF03F9362B9C7521FDDF +:10EF500082D2D8366CBF9190DF993FB85F98459DBB +:10EF6000C4839A18DE7EFAD8F18070F6E36131E04E +:10EF700061D2403BBFC09F5D1EFB16E76F2D33ACD7 +:10EF8000F4E5E7368698EF39E893E3E3F41E8A4E1A +:10EF9000B27E9AEC6F087860F9F53B86A1EB50EDF4 +:10EFA00017FBF83CECFD9CEF3C9CE2FB65A29FA1AB +:10EFB000F02CEB679E2F5EA32037DA60BCC2D05DD9 +:10EFC000D87E41523FDE12DA53037ECFD25C5C5FC3 +:10EFD000FA84DF2DFD9EBE76EEF7487F07FD9CD8B4 +:10EFE0000893DF935D4D793D9B4BF3C8EF39D1AE6C +:10EFF000D17983C0F4D6DC82E281BC9FED017E1F13 +:10F00000E3A9A5FC7E1DBBBFF36F017ECFE5283FC2 +:10F01000F7776EF445AF9E05709D48DFE8540C36D7 +:10F02000C8EF81A17BF13ED77A717FF107AB466CC7 +:10F03000FD16D6FB33FD1DFA01BAADC3270CB2AEE7 +:10F040005CE4937F0DB5A7E1BD5D7CDC75BD7CDD27 +:10F05000FAAFCABB9C88E47501D3B976F8B7B24D54 +:10F06000E9C67B2E5642FF278AC47841BCD748FAAE +:10F070004F7C3F0AFDA518D80B5AE3C216B4F7D748 +:10F080007A97FDD007F8717C6F6119F9553AD8B1BC +:10F0900050FF681A3F477260DA84B7D1383AF553A7 +:10F0A00007C378D0ACE9C5DB50EF9D78DB41B1D91F +:10F0B00059D35B77B9D0CE7DD745E5132FB018D2A1 +:10F0C000FBEE4C671CE9F7BB03BCFC879D2EBA6FB7 +:10F0D000A5D1D1B5CB07E50FDF4DC65C41F2DBA270 +:10F0E0002ECC630145409711C454F4AF408D65F2B6 +:10F0F0007BDE8C91FCD945CF1D50EF04DD17D7ADD9 +:10F10000F2F73D99BC7E74247F9EA1679F87DB2D1B +:10F1100012EF8732785C289A26E3432C17F54923AF +:10F12000C603119EF96ADC7C6FA87CFE308DFBE97A +:10F130008DA9D20E0ADD40F7A65665AAB8CE1D8964 +:10F140002CF796E1FE627B9E8AFE4F7932E7A3B7E9 +:10F150002BF2739CD0EF730D2EDA273859A1C41D02 +:10F16000B09E1C0F1A1BC97EDBC4421857B8C801D9 +:10F17000760C942F5294500C7AEF7B9FC51DE0972C +:10F180009D6C7FF0727CFF81AE905F154FE3FED7E0 +:10F19000F4EDDA7107D0F9EAF2593FBD12BE973E9D +:10F1A000A9D3B83FC8B8A2EC28F6DBA891DFF7EFE7 +:10F1B000192E326A7FB0637A1CC7EF64612FDE6359 +:10F1C000158B27CE2BBA2A8DC39DB77BB9DF40792B +:10F1D000F4A9B47F7DFF814D6F190847DB6C1D5189 +:10F1E000F5012A18E8F796F8ACCE3A68F26B3F972B +:10F1F0009FA3CE6813DAF3B19D1ADD3F837C847937 +:10F20000637DE2BEB60FDAEBC93FEA6B1B174259CA +:10F210005A15AFCBC538414B32B713EB517E79BC91 +:10F22000B605F9F5D4A6A923CC7FAFA425D929E941 +:10F23000467E4DFFFD3BC27ECF61F2A75F6FF17B43 +:10F24000F3DBB99F90DBAED13D30397157B7B86F62 +:10F25000C272CF0AD4A3FD8C1C61D78F61F103A5C4 +:10F26000F8FE2EABBD35A681D71BBDD66E8771FBD0 +:10F270003E20E4F58438FF77E929DBFDDFC2AE0FDD +:10F28000D8ECFAA9C932FE679D5F5FC31CBAB7729A +:10F29000CC0ED04656BDCCE7D7C2CF51E5829F9366 +:10F2A000E87EAE9CEDDC7F817A6487D9E7D3778AEC +:10F2B000F3FF9ABDDCCFB2CF6BF5E9EE265C64D6E6 +:10F2C0003E69FB7B0B36F83B5B78BEC30C1FCFD788 +:10F2D0009FD1A6EE3614BC17BEAB1EE3EC8E8C7429 +:10F2E000BA5FB031C8E5286D5E458A39AE7A7F32A3 +:10F2F00097CBFC1695854DE314B67959D864078EE3 +:10F300006B4FB394C7C7475BEA4FDC9B67F93EA9D5 +:10F310006B82E5FBC5CF9758CA53BA6758EA4F3D91 +:10F320003CDB522EEBB9D2527FFAB16B2DE54B7A12 +:10F330006FB4D4BFF4D432CBF76F9C596DF97E54BF +:10F34000E4637EF3AB3B2CEF67B1EF5ADA6D167ACC +:10F35000C495A5B2B8A99E3F89DBA76887C72CFBD7 +:10F36000ED2A8B9AEA3589F6A9972F1AD6CEDE2494 +:10F37000D6D74671AFE07DE25EC166BC5710EFE7BD +:10F3800010F70AD6E3BD82F0BC5FDC2B987A79E9EE +:10F39000F7F0BCCA17E5F4376B18D03217F72DC059 +:10F3A000DB26F776C4658CF4444A4C8923DF460398 +:10F3B000E118EEB3780B54CBDF2F71A65BEFFFF6AD +:10F3C00015A759BEBBB3475BCAFED23CEBFDE1BEFD +:10F3D0000996726066C9B07E034BE6F6D709167DC2 +:10F3E0008BE20A596D14B71BCA4FF936EE21940D02 +:10F3F0007D2FE087782FA081F702B6E59AEF053CD4 +:10F400002AF0FF91ED5EC0BE1DE33A36921CF37BFD +:10F4100001F13A24DCACB92D8DCBFF4A16DA8AFB18 +:10F42000C4D2BF26BB0044A32F95DB2F7D8A1AE6EA +:10F43000F10ED76E84A30FEF05C4F2164DDC0BB8A6 +:10F4400094ECCADFFAF8BD801FEED4E85EC00F145A +:10F45000EB3936F9047B41FAE3742FE03A51B6DF19 +:10F4600003487080BDD317A87662BEC3BA4714D2D2 +:10F4700037EB06DAFFAFB80FF0FB62BD3EE77D80E9 +:10F48000ED5C1FFE0DEF0324FA6F09F1FB00C3DBF7 +:10F49000A30FCC03BACDCFD2428A3170FF9F8CE745 +:10F4A00048FA0C15BFF973E33297A7723E9B2FDA27 +:10F4B00069300B7CFFD7BE7F4A9E93F873E32732F7 +:10F4C0008E21E327CB16F3FB0A2A8D6D3AE271E415 +:10F4D000930ADD1B21E32C6B5AFEBA71949C8ABB04 +:10F4E0002AF2950B8F9FD8E325B8CE215D8F22D5C8 +:10F4F00046A35EFF5113C6A9B709797C303B9292AF +:10F50000867414F776AC11FA60BBF047241FD8EF6D +:10F5100057CB7D524978BFDA0AD16EDBA8D0EB0514 +:10F52000A8178EF27365DE29E937AC80F2F1B09747 +:10F53000EC2F799F05E5A7805C6F5163FE39C1818F +:10F5400071F03C1D3EF15C3EAE039DE29ED9C7C505 +:10F550007AB057AC07781E1FBF3F89F7CC8EC3F92E +:10F5600074BD82F7847DB1884D89013D27EC65B477 +:10F570000EA45764C6713FE77836B7079142788E7C +:10F58000EFB888DDB8188FF7C8FB34AEF33BE53D24 +:10F590004EE41FAD1038BD499CD75A2AE8EE12F24E +:10F5A000F7778B7A1DF877EF1E6CFB7106C6CB5987 +:10F5B00003BF073A2CE8FF77350ECBFD1FE9ACEE11 +:10F5C000AD5A8CD7B76A463C88FD5ACFF33123A297 +:10F5D00020DCDBC0C8DD09E5DFF6BE16A0FB574323 +:10F5E0003A433DEBB2D54FEFBC46C982F159566064 +:10F5F00014EE0F26F22303D3AC7E24FACFF5E108F4 +:10F60000CD27811FA960FECEF9FA913B11A76503B2 +:10F6100074BD85713E1ADB9E984F0AFDC20F8A5A4F +:10F62000F594BC4F5AE62DB191D55901DF603EB437 +:10F63000B77389FC1EC00BDD5B8DF3443AE6EABD6F +:10F640000AB6B7DFBB77A1F78AD7F9C5B9C9625641 +:10F650006CB9575CC8CD32C1C7F67E649E0FCA59DB +:10F660006098F106C9570BC79BC4E729814F3BFE41 +:10F67000C6C6153A17B47A6B5A734C4739AB20FF9C +:10F68000E9643F9F87E9BE9A4EB1964A7EFE58E4F0 +:10F69000A16CCEE0F98063055F3FB8979F071D0B13 +:10F6A000728BFB7B05F23E9B367EAE54F27346C4F2 +:10F6B0007A2E55CA413A3B109803ED573468146FBF +:10F6C0001E6BE35349A7E35FBBC86E3855E1A4FB4B +:10F6D00037EDFC9CC1BA89DF6F067EEF06D84FF587 +:10F6E0005EE11CC5F787C87FB4D3876545E6E2F7BE +:10F6F0006DD7F1B8C173367A6D1BC542DD09F4D1FF +:10F700008973E82349BF6D4AE4670509FC733BFD33 +:10F71000FE5A7AEB44767C239661BE53F8BDE156DF +:10F720007D95B128AC38D251AF4CA1BCCEEBFC9941 +:10F73000FC5E3D9B1E93F45EEBE6EDECFAEB72BFD4 +:10F74000C1ED7C41BF07BB407F615E52FB72FF0C85 +:10F7500018BFBE4D65A83FC00FF763BED129BD9B42 +:10F76000ECAF9F7405FD584FFA99A75AF2FD792620 +:10F77000FEFE58AC037D2D3C2ED6D752EFCF377D01 +:10F78000FF9D9FE7219C62C6D64B386F5AFD6A6683 +:10F79000F5335903F8D999037EF639FD4EC1B7D236 +:10F7A000EFFC4BFDE95317E84F67A724F6A74F9CE2 +:10F7B00032AE2E07BAAD58AB33C3183CCFECB89875 +:10F7C000577C8879E93C5F00EA25F4A7190B913F43 +:10F7D000619FCFF2D3D54DE8FFAC6CB3EEF30DE9EA +:10F7E00047B76B163FBA9E756964F79F66EC192898 +:10F7F00077B6A56DA53849433EB90B92AED385DFE8 +:10F80000D1891D8EC6B8CEDD4D988FB354C4631B0D +:10F81000BEA1D37ADCBBD745E7E07A5B352A2F8DD2 +:10F820006B713C2FBF26499CAFD1B91D29F30EFB4C +:10F83000EF5B04B830AED7D7BED0722F6C14EB6933 +:10F8400083E5F2A15AEB3D6523634AC2FB4B72028A +:10F850009C5E5F1CFEBDC2F9EF9B2437CB05BF65E4 +:10F86000B6BE4DF7AFAD295519FA6D2399D1447F36 +:10F870001777B16D5D11F2B64AE074248BDC4FFC52 +:10F880002DEE0D9379ED7DF13B53D14EC895FAB530 +:10F89000C67A5FD8B227ADF6C248DBB9FEB182EFB7 +:10F8A000ECFAF559B93F24F04276783E3EAD7A61E4 +:10F8B00028FB0FCF1060FD2329E7B0FFF626C663B3 +:10F8C000A7E0FBA1ECBF8F50DF1AEC7FCCFEFB283A +:10F8D0005BDE8B35BCFDB723C529ED19A2E7B2F37A +:10F8E000B5FF5A2ECCFE5BD90EF69F328CFDB78346 +:10F8F000DB7F7DE7B2FF1EB96616FD397061FF99A7 +:10F90000F3A6CC765F7FDED4B7436E7DF8BCA90B3F +:10F91000B2FFBE16796B92AE6B853C8EED4A6CFFE2 +:10F92000DD9CF2FF96FD77206578FB6FA9E0E3BFD1 +:10F930009AFDD730BCFD27F127EDBF7DF73FDD1CD9 +:10F940002B40392B20FBEFC439ECBF93E2E0477129 +:10F95000C066FFB5696427F5DB7FED7F9EFDB7AC20 +:10F9600093DFDB3C94FDF711DA7FA5E7B6FFD6A065 +:10F97000FD1744FB6F1CE57D0D6DFF75511E98B49E +:10F98000FFBE4C393FFBEF5CFEA8DDFEFBBF57A579 +:10F9900048990080000000001F8B08000000000054 +:10F9A000000BED7D7B5C54D7B5FF3E73E6C1631859 +:10F9B0000FAF61401C0F0F232A8641313E6A9A41E6 +:10F9C00089C1440D1A939A264D075144C15E92A6EF +:10F9D000ADF9B5BD1C050C41C021628BA9F10E0625 +:10F9E0005372636EE86DDA78FB69EF8568D2A44DD7 +:10F9F00072CDC3FCD2DCDCDF67788842B99F6BD262 +:10FA00003CFCC3D6DF5A7BEF0373CE30CCE0A33F80 +:10FA10003FB73FFC24877DF63EFBB9F65ADFB5F6CB +:10FA2000DA8BCB97E1E736422EEB9E476A08E999DD +:10FA30004D88AF268A3E8FD648A4C74248678D833B +:10FA4000A69FAD91E9B3AB26873EFFB1C645F38FC4 +:10FA5000D72CA1E903E9DDAFC41410F2F94692AF47 +:10FA6000C884F4A5FBF6605A2921F9C708FDB11630 +:10FA7000DE02EF05F80DF29337BA05531221DFD8F5 +:10FA800095BF50845707A7D9E125211662203D393B +:10FA900084FC05FB85652F5D2604BEF344B1EF1E93 +:10FAA00020D584C007A5FED235E46642EAA7C1CBC3 +:10FAB00045F0DDC7AB87317D40F979B2DB0A652FB0 +:10FAC000C2F750E50E6C19CADBBB04B7CFCA3A4285 +:10FAD000A05D8B24753442FD17FBCEF96A216D4C75 +:10FAE000B0E78B50D5F26906DA0F522018097C1F57 +:10FAF000CD3F51E7E9BF04CFF269906F9414E2C99A +:10FB0000C51C372989C3EF08ED872DB6FABB25D070 +:10FB1000CE0792624BC0F61E4D30603D5B7945C505 +:10FB20009240CB4D7312721ABF377A6C04CA0DB56E +:10FB300095D908A4DF35795A96427FCEBD21BA8E79 +:10FB4000427F86AC25D31272C7DBFF1A7E9F3C9E94 +:10FB50007E85AF1B9693A09E1546D9884FFDFAAEC1 +:10FB60008C12E9BCD2B1C07F43EDF74CF358D9F702 +:10FB700064F678B915BEAC22ECC74AE2AAC37AF49F +:10FB8000DFD51B61C0B8AE1B637DC784E076AA6277 +:10FB900056AC95A07F67CCA4A23B3738FFEFF8F8AE +:10FBA00089DB284BB0AEB8C4B8AE265CD72C426A0D +:10FBB0002B60A9B3F0E583D2D03C9A6FB80CCF7715 +:10FBC00057547F0BE7754882F90818DF0F797D419C +:10FBD000F301E5A4DC29CC47142BAF2F17542F2FAA +:10FBE000A79FA76249D6F4435F3F71F8CD4827DF4E +:10FBF000B21AFB2C36489F305DF047F1FC4CFCBF3D +:10FC000071D00FE50D30E2CB40AFEFAD5969C4F5CF +:10FC100029E2EF69B98CF172342D06A7D74B8C0E0F +:10FC2000557A083B1E5E6EA5D115D93C19239C2739 +:10FC3000E395CD53B8FDD3CDE97F7CFF4874DFF465 +:10FC4000E1FEB186DF3FF3E36FF8FDF30B69D1F816 +:10FC5000FE210EAF793DD08D18D7662FB5E2FA1A86 +:10FC600034FD579FA413E8496D07E8E9DB9C0EF6C5 +:10FC7000B916D864A867209D14637DB78BD6874FCB +:10FC800042FB9FBA972702FB26858BAB9C0350EF64 +:10FC9000F478332D2F899E23B1904FFEC342B07F5D +:10FCA00043BD9ED981FBED3D3EFF3002BB6109940F +:10FCB000B790EA6ECA577B048303F86A8540AC515B +:10FCC000E3E37D4F62F512E2B5633EAC9A80DFE973 +:10FCD000CB0143B016C23A17707E50C0F93B396D64 +:10FCE000ECC77DE2867F38AE3CCEFFED4470F5C0B8 +:10FCF0003A57BD2FBA7C502C65132BA7D697F7BA6D +:10FD000048F79985347D22DAF0BB80FC8C717961EB +:10FD1000D1BD4FC15FA0DE6D05565F0FA4777DFC9E +:10FD2000C9FC5301F536C93DE6E990DFB489B85006 +:10FD3000CE6D3BFCB08074F05F525CD2502C14C886 +:10FD400025B9B80F619E5D3D38CFD03F9C6729AB88 +:10FD500027CA00DF49CF8B9202F58E5CFAB1AD0461 +:10FD6000D663D86F29C6F9FBB2E6C2FC53B308F9D3 +:10FD700027A027233CBB410E1B4D84FC33C8614C9C +:10FD8000BF047218D3BF04398CCF132087F1F92B2D +:10FD900090C398FF6B90C398FED71A374DF7D414D1 +:10FDA000D37454BC81AD6B6C89D305EDF41EFCDAC1 +:10FDB000438F413FFA0AAD2E0BF4BFEF5F3C332770 +:10FDC000DBCFB0CE26B66E3D265CB7E6153115BE4C +:10FDD00089F83ADF575FB77AD61542E9FEA43D6647 +:10FDE0004126417CDE82A25C443E5F42D7F16C45F5 +:10FDF00062CB7D588E14494339E3FC3E747F8C649A +:10FE00002880DF3D652593CA5D4F48BEE1A67CE3AF +:10FE1000B024D1EF0715C63F42D55319CDFA1F2C98 +:10FE2000BFBDF4BB02AC07EA1F3ECEF9500879759E +:10FE30003C14FFF92BCBAB6EE4C3C9A1EB4F30C927 +:10FE4000F102D0C9A7ED225184717E0778ECF265EA +:10FE500058CFCD58302BB8DD1F61BB96F1744A03E3 +:10FE6000C35DFA7227F93C7CFEFA9F0442E5DF6D20 +:10FE700014E76D675D20F6CE778A711FEE2830108B +:10FE800059C07DE9DA8BFD4ED964D0CA558E0FB7C3 +:10FE9000F03D9A424AF62F45625308E5274E5EDF51 +:10FEA00090F7DBF16E18BF13F90ACADF5DB0EFA15E +:10FEB0009E28F8877CA5ACCBD4EF0FA8378518FB1C +:10FEC00003E5EE4CCE2F66EAF8C5701C9B47755EC5 +:10FED000EC7C5EEC3A1CDB2A904DB8CF0FA4337952 +:10FEE000A4E2D30AEC2BD0B121418B63543CAEA6E3 +:10FEF0009DBE89E7F15D3E8FADA9AE37B261BE947C +:10FF000033A20BF1764C7ED2FD5B203DE28E71D1A7 +:10FF10007DC8FB67E1FD6B3628B69519D71EF7CF74 +:10FF2000ED62FC33A9C8EE13A16B235CEE101DFE3D +:10FF3000D7E37C2B973FEA7A5685C0FB2ADFFEC6C3 +:10FF400046BFC904F907BA39DEAF3369E4C437766E +:10FF500069D73389EC7EBB06FAB5F9B828FB32B015 +:10FF60005EED3A12B944C07EB71E12C85390FEA38C +:10FF7000FFB712F26BC56524C73282E584359EADAA +:10FF80007B52C3FADDA9F8D221A5A29CBE517157BC +:10FF9000B8FDAED2E356C2E8D1DE1699BEB481CB2D +:10FFA0009749F4A50DF18B82F5A50DF144B36FCA05 +:10FFB00078BB339B26A6F3EFC773BDCC9343F9F10F +:10FFC00077F85A607D98A6748D749E52ED089C4F08 +:10FFD00095BEF5DFA9B800D675C8CFE40E413A74D6 +:10FFE0001AFD027E3F73978ECF880F52FE176AFE6E +:10FFF000F538E1BFE3B57840FD5E9D670F1FAFBEEA +:020000021000EC +:100000001E1507209F988C8E82F88302F3963B3E44 +:100010009FC37C9FEBE76F66270C328D900F5B7F51 +:10002000D3A064239FA8A3F8F03CEE53BADE0C875C +:10003000750A7C7AF97EECE30B7B2C81EDD3997CFD +:100040005F1EA813290E9B097CC700F39FADF257D2 +:100050002FE39FEA7E4C2ED1E233751F27915E6914 +:1000600025F08FAA2EC07172307F55D769E41270C7 +:100070000C28375C64F6ED1182F76332E991307F2A +:100080001BEC57C46DC3FEDF9AA733FB83EB981CB0 +:10009000BC3EC451FD5A2AEEF77B255723E4CF4AD4 +:1000A000D0AE576B2AA1E3D2F3537F187EAAAE5F7E +:1000B000AB50F2EFD919E1D7EF5AF15D3FDA5B921D +:1000C00022B7B758E327B7B7A8F254CF7F7F827C17 +:1000D0002FD0DEE205FE9B8BB8F265A71FE867B65E +:1000E000B9FB881DD7E1A3687214EA138EBC4EDFFA +:1000F0008F7E023833809EBF66CF50F5021BD70B30 +:100100006C882FE55423218B09319B4E5723DF390F +:100110005760258897CF5DFADE66540ECA0E4711E8 +:100120005CFFB28B5F7B882A0B6D16CA9F3BBD9B21 +:100130004F63FAFC615140B9336A9535F2F4DCE162 +:100140003209F94F7D46F54388BB5744E59F92A09D +:10015000FE9C4E89F2B122697D513CA4E71E67E9FD +:1001600037AC6CBFE43ADE790559D5CDF2272B12B6 +:10017000E0E9CA893F89CF05AEFC9589C8F696ACFF +:100180003F89CFDF617B50FE16F7C32B93D8D4395C +:100190004BE6E3C3FFEE3CE897B341208D90FAA70E +:1001A000869F99912FE7BDD04A9FDD9DBBCD8817D3 +:1001B0005D1DBDF499FFB30EFAFC795729CD87F583 +:1001C0001089CA1FE167E1A1429ABFA5E9E185CB89 +:1001D000A1A1ADED16D900E31F120C3D88D794669E +:1001E00091EA95925770637A5B9378D442F31F59E2 +:1001F00085F4AEBC2010DC0F03B0BE71D0AF234F2E +:10020000893E9C5FE9B840907E36B7B3F2950DAD5C +:10021000141FE38F1148E55B9CCE179F3CB06E190D +:100220007CF7C7570DDD7B7090C4A8F07D6840FA5D +:10023000F956BBE88E66F60D85E1AB86DD97612A3F +:10024000F34E189540799CDFA34D2F7C5D9BFEA358 +:1002500060A07869D169EDFBC51F6AD3AFC671F99B +:1002600043587B31518280ED158EF78BF2875741D1 +:10027000E6E0FAE4E7AD7D0BD783FC9B81CC827985 +:1002800038C7D7ADAFE41B4ED80AE4AEBC190BCBD0 +:100290007243EB016591EA134D4C0FB81BB2A212E9 +:1002A000E8B3079FFFDBEC8E5B8474DD28BA8E42D7 +:1002B000DEDD0FE6CBC82F3391552E80F49ABB8A32 +:1002C000715F9D2D79FA24F2D3989CD315B80F96BF +:1002D00014C41011E99C5467E27E5C4E4E8BB81E2C +:1002E000BD0994F991AF920B34FDE19DB1545E9735 +:1002F000B6677458A8BDC863463A2C85FABB99BD49 +:10030000D1BC693EED8F4268BFFC2B1FC3673A71B9 +:10031000DF8BEDB7AFBF13DBBF7BE34EBADFEF5E22 +:10032000222FA0CFE27D25023CCB8B41CE4FC3F4E0 +:10033000CF24F6BE57C2FE3F65DDBC3715F9734EBC +:100340008CCB80E32A7E87E6437903961FDEB28555 +:10035000E62B4B625C38EF956B849BF07DD51A21C0 +:100360009BD5D747CB6F5F2364CA7998FE84D6BBF1 +:1003700056F2BC89EC76CDEA678CB83E67EEABDC12 +:100380008B747C6E69CC02DCA783099974BE635EB2 +:10039000FC449E0EE5B67776C89B518F5BC9D6AFFD +:1003A0009CD7778F911419619C6B087B12C2EC303B +:1003B000AFE5383A1A619ECADBD977649C6ECC9758 +:1003C000B142FCDD8E5A275238B4230295C1127F08 +:1003D0002799B88B805FC5187C345D99FCFD27EAAE +:1003E00000084E3340BE8B90A7C7F2593AE91FFE72 +:1003F000ADF1542AA60995BF5DC9FF71A702EDB5FD +:10040000F03470E6BB10C7AAF92F1E2CBC4B81F547 +:100410009AB69494E0BA1909A37B28A2503E0D75B0 +:10042000225F88E5FD2A4F36533A8885FE7A13E825 +:100430007B771CAC672C74DCBE80BE57A62DA0EF6A +:100440007BACFC69C227881B3BCE472EAB3F86287E +:100450003EDC3F24C7D38CF2B4EE9028E1FC10B709 +:100460006443DC463C8A0DE9697FEFF666A4E361EC +:10047000B7D1150DEB30EDD08175487720F8A45930 +:10048000507E8BDF6DC675AAEC12BAB18B4346DF86 +:100490006B6950DF6853A1AC40FA9BC9B3E8BA95C9 +:1004A000F9BDEB701D2ABBC42401C65519E589436B +:1004B000FE72F77E2109CB8D7A0B6D6ECA877CB6F2 +:1004C000A5F87D2BF48720BE11A85E41F922B6EB7A +:1004D000158F1E63984536E2BCE0EF401AB18027C5 +:1004E000E7001DFD2991E957E7D31527D245ACEF69 +:1004F000E5EF213D0FF2EF416EFA8EA99807BE4F4E +:100500001218BF4BF28AEE39502E877F5FE967E5FC +:10051000CB3A051FEAA5B1255A7E041D596583FC17 +:10052000F3CF811E01F352D6B45E40B973DEA43816 +:1005300051FE9DCF607A60009D713BAE64B3C0F800 +:100540002A3AE3331067E72532F9B3BD29FFAD023C +:100550006CEF51E292A1BE8AAED2169C874A87C93F +:10056000E586AFCE613F715F7508B4FFB16EA382BF +:1005700076AFA12846DFE77C4207EAEFA342B50D3C +:10058000EDA2CA7CD067B039859CCABE854D1D9D41 +:10059000029FD083FB2D89E33718D760205E9B1123 +:1005A0006487065254F55DE8D78E8DDAF2768E0FA9 +:1005B000EC24E03D7CF7667BED4914F70F24B27D17 +:1005C0005B795C882F824E2C6D1317E034D4C77B87 +:1005D000E2305DFF4456422DA46D896C1F9B53DFB2 +:1005E000A778E07705B90694EF6653F5664C9B9FB4 +:1005F000CE31E0F89E327BDAD6235F78CA40F92A02 +:1006000074EA3B489FAB0E251A905EEA333CB63342 +:10061000381FA9A604CC1F582DEC95802F6CF2B47E +:10062000DE6E4F4233553C95FB89C96CDE074CF2B8 +:100630000A4A174F007ECCA0A4A454C03EC92CCEB9 +:10064000D883E3B22D5BB2DA0DF999EB0C04FB739E +:10065000378C310AF65376DC0603CEC94DA6EA3450 +:10066000A49F079318CEC9FCF88ED705948B97FEEC +:10067000944BF59FCCEA721CD7F49DA7E2EFC07AA9 +:100680009EC8CEC7F1371B4F47495AFA305C5E4CC3 +:10069000E75836ABF36DA0F3AA307C4D7A715E9BC0 +:1006A000FFCC708D1E677EC1E916F8EA5C01F8EC9C +:1006B0007B7B444A2F4385820FF15949A7A020BE76 +:1006C000869A1695E27E3E969280F3B576B94943B6 +:1006D000D7259D8F9F166F461C21B7E2FA286F8899 +:1006E0001457AF719894C075477B21CEE7F6CEF8CA +:1006F0000588AB494E403D99C1745FD5D947ED3F60 +:10070000556E7D3DFAFD1126AD90F7B3EDA8EF32A1 +:100710007A7C1D703582F3951CB71693D6A204DC43 +:100720005F9B08B517AF268A11D3DB1E049C0FE52B +:10073000B7F9802306EE63AB89D26D14D75FF4E777 +:100740002CF607B5F4EE447AB7513CA4D927B3F39D +:10075000B3F65BE07B31EA9992C1C4F175A9E5F685 +:10076000A01FD5282568AF6DAF69A0CF9713199E3C +:100770007188EE5F26A2BE6B7439905E064C25250B +:1007800085B8CFEB053AEFAAFE51C9C74B7F20BD14 +:100790000D9F017C8CDA9732B0FD6769FB29C74B4E +:1007A0007B510EA7C03C209B4FF5EDA6E9548F4C22 +:1007B000E93F6513F427605CA91EE857E0F945FCA2 +:1007C000C474E64962FB46C5D7FA7C39898D2BABE8 +:1007D000C140DC01F5CFF2C6107740FDB3DB133426 +:1007E000E939BE344DF9795D999AFCF9DD7335F933 +:1007F00079271668D2F93DCB34E517BEBE42935E29 +:1008000074FA4E4DF9C51F6ED0A497FABFAE29FFFA +:1008100095F39B35F9B75ED8A1C9BFEDE2239A7471 +:1008200021F9BEA67CC2EAA269280FCE80B846395B +:10083000DF18F7E25EC40199890C3782A0A7FB5C40 +:1008400095EBE1ECB0EAF9B67EBE83ECB05DCC3E50 +:10085000A02F979C1C991DB66ACC0EABEC45FB52A1 +:10086000283B6C65383BECF1C9EDB015DD268D9D5C +:1008700020523B6C4DA21C911D963CA8B5033D7BBC +:1008800001B00BF2338789CACF67DBDF2D46FEB894 +:100890006AD10ACAD7D579B2C3FCF72C1C4FAFBABC +:1008A000DF508276AA55199E68B41346C92E5CD1D2 +:1008B000313E3C55FE9D9DCCF8F40E1D9F1E50F917 +:1008C0007497964F8F3C17824F77313E3D10219F92 +:1008D000DED1C5F8F4AD17B438E6B68BDAB493F4CC +:1008E000EC4DCBB8167CDA7D66223EADF24F954FCB +:1008F0006FE67CBA586E35E23CA478059208ED9B11 +:100900006C329D2795AF6F69D0F2ED471359BE2A1F +:100910005F7F52F54AF4EC00F9DA4FE49639382F4C +:10092000ED06AA07C37C3A91BFAAEBFA2697979DDA +:10093000C41D3307F9AD8FCD9F7EDFFC258995CB94 +:10094000EC28A3F6B3A106B118F7D7FEDE39B665D9 +:1009500050FF8077851155C501541C205DEE2BECAE +:10096000DC0D9FFC3AC944E9F48CD9B78FEAE34F18 +:1009700089F231364DE60D683F26CC0E37D2D1EAEA +:1009800044B560A0BDCC9609F5FE3089EDD3FE7666 +:10099000D60E31CAF49C7BB8636122D281DAAFBF34 +:1009A0004F1219CE259E9625017898EEBF4C3286BF +:1009B000FB6610F5676C7D84CBB00EE9EDA2628119 +:1009C0007975A21E0FCF199D961E9CE7003D9FEEE4 +:1009D000372847CF5767F07D3C9DF87A0BF0FDA391 +:1009E0005AB938BD0DCAC1F76955DAF784E34789AA +:1009F000D3C179C2CE09BE725E5B4EE2FB5DD2E12D +:100A0000C89FF1F918820F913EAA8E031ECF081ECF +:100A1000EF50DBCF5F433C3EBD59606DE9C7EB1340 +:100A2000295E76FA98DD62C4D46D46BA091AAF8F92 +:100A30008D63C6718693F5E3D48FAFACDB3418B801 +:100A40007FF4FDEF6F28B3317BB84CF5A9CE868DCE +:100A5000743D953691DA2596B5B3FDBFCC6BE84071 +:100A6000BEFB15D25D8BB8B01F3F5986EBB8A01105 +:100A7000F5C57A1C3310CAE944A95149A77A990DE2 +:100A8000F5A701AF81DAE2FBDB1752FDAADF2748A9 +:100A9000A85FFDCAB79BEA537A7A56E77FC0574BE7 +:100AA000E94D7DFF7B4EE7433E467743BE85B6ACBE +:100AB00080FC3739BD0D10A565E904F3AF9F6F5277 +:100AC00007F4671FA73FFDFCEBE75DA52F75FEAFA1 +:100AD00096CE06F8FE8A94CE7ECEC7AF1FD7F9F326 +:100AE000CA3AAA875581C09627A0AB26BE8F9AD84E +:100AF0003E0A1A9791D985A01CDD47FAF1801E495C +:100B0000ED36FAF16C1FEDD98B4680AAE3266DFF16 +:100B100083FA4DE8FEE86D7DDCE9CF45BBACA2B3BE +:100B2000CB2EA176D9019D5D765D7206F7EF98DC3C +:100B30002E3B8A7659D42BD12E8B789FDB65B75FFD +:100B4000BCE321A68F33FF9131BB6CB728A0FD6AAF +:100B50004792AC39871AED6676D9D713D9F9792936 +:100B60009113D06EAE9E93946217508ED7F1F30D11 +:100B7000FC99E43C4A4C0AEBBF27264DE0BF2762B4 +:100B80009F1785C75B5B787FC2E22DEFC4E75825CE +:100B90005CCEEBF1D656DE4F7B9BFEDCBB7A52BCC3 +:100BA000B59D9F9386C45B9D80B7ACA1F1D6B6AED0 +:100BB0002BC35B05B88E8B4858BC1595CCD6D5E7B2 +:100BC00060F4A3AE6B1596473DAA3BB273C6FCE436 +:100BD000B0EB9A9F3CC1BAE627B375ADBBF5B3D372 +:100BE00068981F6C175D385F83DE95544E4BCD823D +:100BF00084F5A772FC784EE8798850DCE2A67C592F +:100C00006F4F231C5F203E47BB996A570BB2CFC181 +:100C1000DED973CBB8DD50CD0790D84AE785B7F75A +:100C2000019433A13E5E27FA76D3EFDC54DF8BB418 +:100C30003EF8D58BF9D1BC5F589F3169BCBEBA5420 +:100C4000C566CA9AA03E28BEC73E617D3ECCFF0065 +:100C5000F28D81FD92A15FF3B11DAEA76C52A83D4C +:100C600070EA7E372E6A1757EDE4030AF37B0DEA2C +:100C70001F64EF9D78FE687E4332A73FC9132704A7 +:100C8000DA294B24BA6E91D667C0FC8C09EAE1F6EA +:100C9000CEB1F1162B9A7AE1ED6EB55EC3C4F5D2F2 +:100CA000793C84F4973CF5FE3CA3FBCEAEF693680A +:100CB000F1B43A0F439B126D66CA4FB4F493A0B6D9 +:100CC000A7FBEE59FE5D9DE06959248CCFDBD1680E +:100CD000A6BF1CCD979C1B02F897D9CEF8565F3C57 +:100CE000B35B2C3EC9F0C970C7ECA37B68FD7FA144 +:100CF000FB1AE133EE9F065EDE9F536DC6F41C9F28 +:100D00006C03CA20C36BCD9B70BF0F0B0637B5AF0A +:100D100075583AD0BE066942FD2D768B4731ADEA53 +:100D20004B3BF9FCA0AC9A5640CF4D8E225F3E8FD4 +:100D3000F613E867BF24995D01FDDC46C6F4161181 +:100D4000E76B274FC33CF75CE676113CCFDAC9F975 +:100D5000D54E902B883B768E7F47F95B8ECFA8D1FE +:100D600073E67569F5A1F9DDDAF454CFB7C29D6B6E +:100D7000FDC2CEF91DB76BCD2484D97964BF80EB59 +:100D80003B93EB3FCE06861F9C3FD0E307BD9F30D1 +:100D9000C34132AF67A95F5B5EE67C5ED6E188FA4D +:100DA000391E6A2F1F8A66F31DEEDC34D13EB573FF +:100DB000D3C545A554F486D3CB9B8D9E46D4C79A04 +:100DC0001DA6028515298A86FC35058284FAABAA00 +:100DD0009FBFF97479D36AF9DAEBE7F7737A5ECBE0 +:100DE000BF1361D6F0BD5EAF0EA74787D38F3F2DEF +:100DF0001E1474B8794A7AB4DEDE59A9B37796A383 +:100E0000BD13D2E5C763D9D996DAAF29DA3B913061 +:100E100071B21CECD598FE3EA3E8D1A22C21D80ECD +:100E2000EA286AA07E1C338A0D14A73B1E356AF49B +:100E3000A3A8742D9EFD9D95E106D8B8543FBF37F9 +:100E4000418B23C2E134D58F292C4E6B9BD82ED6F3 +:100E50006B9FD82EB68DCFB7FDF03BD44EE489D032 +:100E60003FB1349C5DAC2E8C7FA27265FE893976D1 +:100E700039229C164E5EF4721C35E6CFE0E5FE0C7E +:100E8000DEF5D41F21EF6006F367E0FE0DE4347950 +:100E90000FCFFBFABBA19C8C7E0D0FD3F78B4F2E8F +:100EA000FC3DDA9B479F1308FA0F2C7C4EA07E0B6B +:100EB0009EC3A20FEDD4A378EE1FE0F7A0DA2125A0 +:100EC0004570A37C2E3BCCFC13A0DCAA34660FA794 +:100ED000F6937351AE550EA8E7C893025226FA3F17 +:100EE000507F868A06282F60BB2BCD587EE0A04815 +:100EF000F6C8ACCE40BF86016103D5E794570DDD3F +:100F000068EF09F26B68607ADCD5FA3584E3FB5F41 +:100F10002447E6CFF0850E1FD842E0031517223E86 +:100F2000301A50DE2B2D22F20F8EC3557DC6EE8D6A +:100F30004CBF2AB787F5F72BB74FE0EF576E67FD29 +:100F4000B5D5921CC495DBC418D7D10CB4870FBAA1 +:100F50001C90FEAC6E7626DA5B13D76E9CB619BE7B +:100F60005BE660FBAF8FCB79471EE9413EDE5797CA +:100F700045CF331B6B98FF94E5E23CA28020698249 +:100F8000B402FBDA925E6D413ED058906993D15E17 +:100F9000522716A31C90161F7766C3F3CBFF7C9CC9 +:100FA000E67BD2991D6EA414F0486EB05FFB4F53E0 +:100FB0004D749CDE34C6F7775A25EED77ED44CB7F5 +:100FC00087DB28E3F8E9EF3265BD7E01EF2F911250 +:100FD000464F2F1D58F7009D19D5AFDD432EC7068C +:100FE000F319F5A9F76BA73FEA39003412BB244A7D +:100FF00041BB2EEC8BDB02F5C558FFE3A791AF7E1A +:1010000056FCA819E556AC6424FD017C745B9BD0AA +:1010100083F8067011E9CFE1EDA1FDC9E87A7B09FB +:10102000D2BBD540FDDBE2DA61DF80FC148FDDD37B +:10103000B044C67B289BA353607E4CF5F72CC27A44 +:1010400089D1B717F7CF9904E62F971027B722FF5A +:10105000FBF63B26EA9F55B83897DA197A6F997BE9 +:101060002416EDD37F8826B8EF0A171F3F82E7DAF0 +:10107000FD7FB0D07403AC9307266B2F3C7DB07E10 +:10108000FDBD9E3CD46F0F42BA7F16FCF7866731D8 +:101090003BFF54EF8B2806B43F1C34337FFAD18DCD +:1010A00020C8A6D1494F61F9DDFC799ADE47C18D90 +:1010B000C39E9E147C6E72AAF68C0B343D7AE99E18 +:1010C00028ACA7FE9248ED40A7D05E80F68C25376D +:1010D000513E0194A6F1F77FDCC9E8F01EB1E76D3F +:1010E000B4AB917F10E9F9F9E78717FEFB52DA1CE0 +:1010F0003B67DED79145CF99CF97AC7D2B11D207B7 +:101100007E201BB0BAF262612FFA9F1CE5F4DA89E7 +:10111000FE7E16F4EF93B87F9F83FBF7317FBFE32A +:10112000E8EF67C17B202E9AEE467F3F0BDE03710E +:10113000D3F44B35C534FDCB9A129A3E51B3893E58 +:101140007F55E3A1CF5FD754D0FC7FADA9A6E99E20 +:101150009A5D34FDA3E96C1C2B9F286A461CB5DD03 +:101160002B12BCFF311BC015F2DF1D4BCC3EA4B3CC +:101170001D0EE6C74372A3A89FCEBAD39E860C4C21 +:1011800077090B31EDFF4F7202CF27766C14297E61 +:101190002FCB3577A05DB1FF76E18400E32CF38A95 +:1011A000CE5D08E8728DF47BE2928F60BAA570A3E1 +:1011B0000BE7E7A8491613F309F95FD3DF5E1B3588 +:1011C00007E8D54C6A135C98264A31D0E7C2824FB3 +:1011D00076FC33A43F4AFB4D7314D27D61C12B8949 +:1011E00034BDB3392A03CFD757C451DF17B2B3F98F +:1011F000143CF7097E631CCD7F695F12ACD9261CB5 +:10120000C432483F9533AD361BFB4FA87D74A9739C +:101210006733FABBCE9500974AD8DE6F687DB90E6A +:10122000C0A7AEF1F4CD32E0D4807C570EE0554833 +:10123000CF21BF692E86AADD9EC2B7B2A1BC2FF511 +:1012400097FB1A48707BEF675EE8B5A01F420BA1C1 +:10125000F7CFF0B802E7C9A6CCF6D50AA1F77F8B85 +:10126000C9DF5E86DFD55BE8777DA88705E8358E28 +:1012700019FC7C35953D5BA259BDE7EE35F8908FA2 +:10128000EAEB7B65262F17CFEA0105EF7EEA17B65A +:10129000D16E40BEFE7E49590CD26D6D7BA601F920 +:1012A000FAB914461FEF1465CD30C37ABF5C67915D +:1012B000D15E77B648F09960BDFB32E43DD4CF846F +:1012C000FB43DC64524C684FBC49105C0AD2FDC73A +:1012D000C46782F53FEB3B703BBE3F67145CC8C6FA +:1012E000EE4D65FB6FF161B1CF047C68DD92C2B752 +:1012F000EE84FC82E346DAEEF3C9772C42BF0CE5BC +:10130000A0E882ED4F5E4DB6D0713D7F6CB18FF994 +:10131000BBF17398BA89CF611E4965FC39B3FE19D8 +:101320007A0E336235507EBFBF37F56DB920F81C99 +:10133000A6B48B9DC3CC9FCEF8FB19B3B417CF07CF +:1013400094BDA24CCF838C3EF306D083FB547B78B4 +:10135000DD3394EFF5796753BFDF1D5D1D4E941F9C +:1013600077F0766BEBD4F31857F112E47B4F68CF2C +:1013700063EE483573FE33C573983A6E17AF6376E4 +:10138000F1195D9689CF61EAF8B9C4353A87E99FCA +:10139000E2394C3FA71BFDF8FAAA8AA87FEEF40EAB +:1013A00098352D9E64E36BE0E36B0861F7E7FE4838 +:1013B000E90DACDFFAF1F49D271A3FAC603B7909E7 +:1013C000B5936F6D9AFC1CA6B3C148E96519FAFB89 +:1013D0004E70DE624A4E32238E69C9D0EE47F5F96F +:1013E000E274B6CFFED6FD1ACE98E5D622DCA7EF82 +:1013F0004EBC4F4BF87EB18078F505D4A3DA0FE3ED +:101400005C06A204D4172D1B8827A0DC1207FB3E24 +:10141000FEF68D93DEC37882CBD97A2E67F77139C9 +:10142000FB38CA59483773395BCBFDEAF773390B80 +:10143000F51E4243C4E78011902F955A8913EDA8F9 +:1014400020E5A8CD24F9AB8CDEA62902D5533C9229 +:101450005B417D26261BF4A8807E9B936234FA9F15 +:10146000353741931F959EA649DB0A3235E58DD667 +:10147000B99AB4B47C81569F24E912BDA740184E96 +:10148000FC7C4DD1FE22ACA75670A25DC3CFFD8A75 +:1014900054BCEC5722C5CB09142FF7298C9F498BDC +:1014A000976BF0F24F6730BC3C10022F7F91CAF26D +:1014B00057A509FC1E28E065790A78B9E240CB7D82 +:1014C0007454578797A97E0B8DD87578790B6FD791 +:1014D000AEC3CB763D5EF6025EBEF98AF0F2DF392E +:1014E00026C1CB808BDF41FA1979CBC471712EC52F +:1014F000CFA3809F2D19C13879F45F00F842F9EF2E +:10150000CE35FB70FDFA7B210DF95FECB5D074A3ED +:10151000493E624539FB87387A9EA7C7D5B0DA467F +:10152000868B551CADC5CB2ADE8672062D7E66B82D +:1015300059C5CB7A1CB22F9DE97F4F721C42F83DF2 +:10154000874614B205A1F1C83E272BDF18AFDADFBA +:1015500026C72317F97ED7E3917EC42379E1F1C82A +:1015600000E211C02DFD4D0C8F0C231E817ABFAE01 +:10157000E2914EC023375F7B3CF2CDA9E2914E86CB +:1015800047FC69A1F088578347068F753C94262352 +:101590002E49A4E7F4AB53D97E0B874356A7AAF78D +:1015A000F0FF67E2903F3942E090B6950C87340B2C +:1015B00032D1DA4722C3214D021D6F381C5279788F +:1015C000621CB26DD4B717E5C48E30E7F591E29096 +:1015D00046EE5F897E84A501FBB27BC6DF867FA5D0 +:1015E0001A17231C1EB9EBFFE38D88F0C612874C37 +:1015F000C7190E77BC98C2ECEFFD447A1BE9B2C75D +:10160000A14D138742E3DB54A8F16D7CDAF8364E26 +:10161000BC248DFBD3E1A2E757896AB935464D3921 +:10162000C94126BCA7F5A31499BE3F5BF2B413F7DA +:10163000B57A4F4B5FAE8B8F475FAEF758A8FB89EB +:101640001F56E37E1B596435A0DC1DF984DD2BF8A1 +:10165000E2E92803DAB5CC262FE51FA39DB3695A2A +:1016600099AEDA93B4FE319DDE57E8FDF23E9F401D +:10167000E554C5450BBD6F658EEBB1C543BB2FF07F +:101680007EA97E34AADF4BEFB1C5DC3FC77504FDF0 +:1016900031F5FDEAC77EA1DCC37E1504F76B10FBB4 +:1016A00005E5F761BF164DD4AF156FD7A0FEDA0D73 +:1016B000FD827255D82F2BF6CB6D8B87767F92A249 +:1016C000EDD7A097F54BD577C29DF73D96C2F84E62 +:1016D000B8F3BEC7783BFA73BFC608EF63363A2249 +:1016E0006B47AD7F9F439EF03EE653669D7DC645AA +:1016F000A2962C20A49AF7EFFD4CB6EFCEEDB15098 +:101700001C6393FDE4915C8CA3F32495E7C321E370 +:10171000E8A43B07107FE7307D5F12256A0755E399 +:10172000E8F4611C9D00BC7C82F3A748E3E80CE769 +:10173000889CEEAE2C4E8EE73AC5C9D912324E0EB9 +:1017400031E3798C1A27678B97C5C9793735C23849 +:10175000393F667172CE5E5A4CE3E40C5CE738396F +:101760007A7DE64C0E5B9F4F6787B6FF4F16D726F4 +:10177000D8FE3FB5B8369FF3F3927DAE3D542F535C +:10178000EFE787A23B4F7A647467495371526474E0 +:10179000B73647E4747A6574B7E3AF1E9F09F4AEB9 +:1017A000A4E0F84C196911D2DD3EA03BD4B7303E1D +:1017B00093F5FAC767FA610E5B8F5071951A724202 +:1017C000EBD393D25F903E3D35FA7B80CBE15071F5 +:1017D0006B2AB161BCBF75933079DC9AE313FB418E +:1017E0002EE7DF858A5BD3877116B033BA380BAD2D +:1017F000C2E91C7CFEB5E355AAE7F803FC5C6877F8 +:101800009A9DE14BDD39BA1A2F2189E4BF817AD83C +:10181000D62A93EC93C7E327E8E3D4E8E36258FFC2 +:10182000CCE25C9CC7381719C1716AD47D914C4ACF +:1018300056E1394D7909F3E7381F265E0D7178F6C8 +:1018400006C6BB88809EFC26A42777287AF208D794 +:10185000839E06675D193DBD346B727A1A0E11B70F +:10186000E37AD1D37098781C2A3D9DE5F4F4FBB45B +:1018700089E37104D0D36ABC1F507E85F434189676 +:101880009E3CF4DCCFC3E969302C3D31F9AED25334 +:1018900004F2514B4FC1E7E353A227553EDA80864D +:1018A000B4F86DF2F3B7FDBDCFAD433B5E3FDE8FC5 +:1018B00080BCDAAE2C7A3FA2B64E900418D7AFEABD +:1018C000E227BC1FA1DA5FFAD1EE12407FF3F8B92C +:1018D000EA08B7BF8CD465D9B234F921EC2E24CCF8 +:1018E000BD089DDD25E4BD88BA6B732F62AAF6168C +:1018F00079BA30E1B8FACE4BD48FA60AEF4590E022 +:101900007186B5B7A8F72242D85B60A5A99E196C6D +:101910006771513B4BB87B376376962EEDFD9A5A33 +:10192000D22D527FD451427E21A0DEB4A105FDC349 +:10193000FBDAB2A85D505DCF2FB95DA0132B4C230D +:10194000E49B87EE6BC2FB9BFF9D36A60FB72CBBBB +:101950000E74B62B0C9DEDFA1F4A673BC3D059C8D5 +:10196000FB37574D673D13DEBFA9423A83792F8B72 +:10197000D49E7785743694A2A5B3470EBDB50FE902 +:101980006CF9742D9DD980D6972450BDB5E736E407 +:101990007B7603BD2FAAF2C3AC1F106A0751F5D89E +:1019A00050F7772AF0FE0EB55BFC98DDDFE9D4C670 +:1019B00055EAE3F777543B86EA87A9DA31D47A0708 +:1019C00079BCA6411EAFA98ADF0BAAC27A0B26A852 +:1019D000D7CBE235A97608B55ED50E618B6271155D +:1019E00088D14FE5987F2971A17FBE3A3E5B83D9AC +:1019F0008D7443493D81954779A09703EA794775EE +:101A00000AF3E7D7CB854A1F51A2311E4D94A0445B +:101A1000E7419ADF4B39DB41BA12A721EE13E8F315 +:101A2000A334768E71B6D942CFC1FC1DE4443CBCD0 +:101A30001F8C164EC4E78DE7FB5B2D74DDEE4B610A +:101A40007E277A7FE6A3D1CC9FF95CAAA900FB7719 +:101A500034DFE3DC10C00F3EE3743F14CFFCDF54EF +:101A60007FFBFE17661FC57552FDED8D1C377D99F6 +:101A70002DF07B29EE16431619F367A6FEAAD0A512 +:101A8000FE78766ED72F1858FCE11798DF7D3FFA65 +:101A9000DD63BA95C74F9133E83D80412BEBEF3EB4 +:101AA000EE6FFFC7317F7B97D915D0CF58A2F5B71E +:101AB00057FDEFF5FEF6B41F59188F4A70F3F3B5D2 +:101AC0001BCADF3E7B16F76BFC7FEC6FAFF7836FB3 +:101AD00036921E5CAFE6E5028DD345747EEFAFB55E +:101AE0007F5685AF55FFF79F3EFD5A3AEE9B6BED53 +:101AF000FFDE3D87C91FFD7DF31BDDFF7D07FABFBC +:101B0000CB13C4FBE8BA3EFEEFF5974437BD77FF31 +:101B1000288B2734553FF8FA9E3F1467A15C4BCFC2 +:101B200070A16AA0F78B8F758CC9434DFC27B21149 +:101B3000E8E69671BA894D5A316CB4D1FD49CFB1FE +:101B4000D5F67167F607CCE348126910816F192F3B +:101B500032FAD1D7D3DB754F71068CE7D3C3CC4EA5 +:101B6000522955BF8D865B6383201BA1BEC20681AF +:101B7000D2E7D64EC187F673E34533AD676B67ABEB +:101B800087DE7BCF8E22D102F33FE83701FCE0F104 +:101B90004E1A79BC9384D55BA85EFA994FE846F952 +:101BA0005791A498D1CFDB241119E39F99246D3C60 +:101BB000928A1CE535E45731B92C5FE5FBB139DA7F +:101BC0003825990D66E24E1C8FB351921A4571DA91 +:101BD000F87D359F8DEA9FBAF8F23F481774F7D524 +:101BE000D4BFCF90C8E3CB4BEB50AF57E3CBF75903 +:101BF000B5F19D3F98ADD55FD5B8AC586E2AF19D33 +:101C0000FBEA42C497EFCA2AC27E5C457CF9DDE953 +:101C1000C9A1FF3EC329DEFFA9FE7D86F17B632EAD +:101C20008D1C7B8BCFE7804E8E0D3FA795636ABCE2 +:101C3000AD52DEFE59FDBDB1F54C7E8DDD1B7B0E38 +:101C4000E49710706FECA0F6DE98CAC7CE5AB5F7CD +:101C5000C646B8FD412FC7F4F7C654FEA797636385 +:101C6000F727B81CB3931B4B8EB5CCBE31EE8D3528 +:101C7000CE91A83F525F349BEFE5174EAF443C71C5 +:101C80006776068DF3F5D58B174E62BA389DA58F12 +:101C9000AA747783DF03FBE0262E07C9E4F7C0565A +:101CA000E768D377C8538B9B72ADE5A04727074BF6 +:101CB000B91C2C556EEC7B60FB1CDA7B60E37C4628 +:101CC0008B97BF3E83AD8B1E2F0F3EA7BD9F1ACBB8 +:101CD000F1721EA7B7011D9F199CCFF8CCA08A9363 +:101CE000399F19547172B396CFA8F27720249FE9D7 +:101CF0009994CFA8F859CF6768BDC06762BB199F98 +:101D000009C0D937049F79F006E1332DC867AC913B +:101D1000F3993DB3AE8CCFDC6DED31D2732DCE5F38 +:101D2000DC6D9E275743F9B50E91DA9557DDBF81DB +:101D3000E224726B2CBDF73001BFF9683BD2473EFD +:101D4000F3EF9F2ADF99332B32FC7DA3F11D7DBC7D +:101D5000BDEDFCFEE976DF8DCD771EE37602BF890F +:101D6000D0B89DA170E3166EBF0FC68D3D142F56DF +:101D7000A433FE35EA4DA4710EA66A07F83C045F51 +:101D80001B3D38B11DE023AEA7A97C4DD5E747E345 +:101D9000D9BDFB51153F1D647C6D54C54FCD13E378 +:101DA000273D5F3B3BC6D7BC57879F3A6F4CFC64CF +:101DB000997B63F0B509EC0074DD9B5DCC0EA0E768 +:101DC0003FAADE7FBDE3D4FD598E0CFF5CAD1DC084 +:101DD00049E4FD4519E1CB451A4F4EB5038CC59337 +:101DE0006B1768AC0A955F95775D5DFC4F3D3FBA18 +:101DF000A3E0DDC222C3D5F3217DBCC8BB52F7539B +:101E00003DF69D8F13D6625C60F443463F65BD3E50 +:101E1000F711F7F358ED54EF136BFFBE5CCA9AC489 +:101E2000750532BD473EA5BF2F9719251BAAADF4F6 +:101E3000BE31B73B737DF8FFB0B8BBAA5D3633EA5D +:101E4000422FFAB3673611572D09B6B706F9615913 +:101E500023F3C37AB7D4BD08FDC407EA457A7F7C73 +:101E60002083F4DC86B82CD940F9697FB4D09595ED +:101E700047C8DE9BE639FB02F4ECBD4FCC76F62377 +:101E80004E6812F8DFA391CCF705C4FDAB709A350C +:101E900071A9FA36717F6A2847E35E1B25FA77D865 +:101EA000FAE3181FBEE7F187BF8B7195A20DC483BB +:101EB000FC7001B7BFEA9F89BB9E2F190CD88F8990 +:101EC0006BDC664F1CFA43AD772801EDEB9FF50AFA +:101ED0003B27A9BF74C083F45A915D61471C5BD155 +:101EE000134DF940F9E1D267D1AEB2209BFB85E9F1 +:101EF000EC36DBF8FD876DFCBE43F91A17F583D984 +:101F0000C6ED4289DC4EB34D77FF416F1FCA408753 +:101F10009B45E3F70AC6D6170B24A07CF4B71BC475 +:101F20002B8F733FC0E3DC379BD97A373F69A0F72B +:101F30001B661B7A683CFB23FCFEEEADC42F12F53A +:101F40009E0794BBAD4EA0F7D3D578F75BEB041F8B +:101F5000FA496EC538F756B65E9BE22689735FB7BD +:101F6000FE4EEC4FA838F7A518973E6FA238F70938 +:101F7000ABF0BEFAF0F228FAF74ED438F7A518E71E +:101F80003E0FE3DC27D17C35CEFD1635CEFD58DC87 +:101F9000FC48E3DC4FA7F10CD438F7FD596C1E6206 +:101FA0000E74E44C97C7E3DC07F0C349E3D53F392F +:101FB000571BAF7E65CED6FD754BC7E3D53F3A4F75 +:101FC0001BAF7ED1F1C683A7968EA79F9CF18F3C55 +:101FD000CDF8D003F35EBD17F950A4F1E9BF9A73B1 +:101FE0009DE2D3D78B12D201717B29CE211E1F8D8A +:101FF000DBA4C6A71F52E3D3D797D1F3D7B1F8F428 +:10200000DEC2D7D0DFBAA25BA07DACE85E6FC6FDB2 +:10201000FC5ED62CDACFAD6B3C2C2EBD4F4CC2F300 +:10202000DACA284F339ED3DDFD631697BE0FF01D2D +:10203000DAF3C6E3D32B34BEBA1A9F7E88C7A7DF74 +:10204000CAE935647CFA36169FFE7416E3D723E995 +:102050002CDE4E6CFBCBDFC378E191C6A7BFC4EF8B +:10206000A957AE61E5B7B6878A4FEFA1F1E9473AC4 +:10207000587CFAAD6D7DF45EC188C94771EE4806A3 +:10208000E36FC172D76B437EBDA33D3E03CFDFC478 +:10209000994CAE94B7B1F8F495189F1E4AEDF0092B +:1020A000943FED68137C6E01E3A949F41C5C49354B +:1020B000517F1C353E7D1F0A56A4EF36A103F14C1B +:1020C000D8F8F46DEC1EC695C6A7AF38A1F50B087D +:1020D000199FBEAEF624C65DCD9B99C9E2F176F19B +:1020E000F8F44D2C3E7D238F4FDF78ADE2D3D72718 +:1020F0001AD06ED59821D9CE248DC7A73F1B223E7A +:10210000FD9759FCFC316C7CFA4D2C3EFD7D93C74C +:10211000A71F41BEB2683C3E3D9E37DD46CF9BE6E1 +:10212000513E1C2A4EBD1E378EE1C930F87123A7DF +:10213000F3725D9CE33E8C730CF925EDDA38C743EE +:102140008742C4396E67718EFB047EEF344C9CE38A +:10215000F2F608E3D1B7FF75E3D15FAFF3A96B15D2 +:102160008F3E9FAFD7D92B8C3FBF4360E9A0B8F318 +:102170005DBB7BF1DC27D2B8F38D21E2CEFF7D265B +:10218000BF571822EE7C41F6DFC6BDA8A9C69D57F1 +:10219000F588ABC06DA28984FFFB44676632FEA25E +:1021A000FFFB445BEBD4BF4FC4F0F58D86DB2AAF59 +:1021B000116EFB88F3D79817AF0CB7C566032E7363 +:1021C0008CE336A193780371DBF363F92C3DFADBE2 +:1021D000982703715BC2F3B73F1988DBFE2FB59ECA +:1021E000051E0080000000001F8B0800000000009A +:1021F000000BED7D0F5C54D79DEFB973678601C767 +:1022000061F83F28E21D40051D601050346A062524 +:1022100006F3AC4E34AF215B931DFC8BCAB6646BE6 +:102220001ABBEDAE5741832EEAA0C49086D8D16088 +:1022300042FA4C766CB36D9A4D5A488C6B1A939057 +:102240003FE62579E92EA04625F4B3C624AFECABD2 +:102250005DDFEF77CEB930F7CE0C3328794DFB79BF +:10226000F8492EE79E3FF79CDFBFF3FDFDCEEF5E02 +:102270000EE47C7B856C26247E0E71FB1D84E88930 +:102280005EEEC925046EC9D705428813FE9B45C87A +:1022900038B8101D21D7B28D84A440D94488379115 +:1022A000DE778D9F09573D21A933E97D397E26BD13 +:1022B000DF69E657035E6DA43315DA13071B3F8E03 +:1022C000C8BEEB301EC9F5ECD59510D2B053B4EEB4 +:1022D000C1E7B9BC16773E5C3D3E8B7B3C21FBBB26 +:1022E00036EE2D4D26E41397DE192BC13C77AE59FF +:1022F00046A03D6916AC53EC84ACED7119D3A17EB8 +:10230000B34FF013A8EFD5CBA72640FD404BB9241F +:1023100043B3D7B2A710524AC8BA1E0FEDB7D92798 +:10232000260BD06FB3C9B3772EF45BFE88908CED8B +:1023300006BCE516970317295BE6C0FD8166980F7A +:10234000943E214225D2651D56C17DE2158F1EC3E4 +:10235000791222E9912EF87B165C5B04579E8590DA +:1023600053D9027D5E7F8627D30D441CD7FA8B0795 +:1023700005B87F9EF797DDC4C7FB53BA26E3EFD9B4 +:1023800070F58AAEBC02428A25D67F730F6BBFAE52 +:1023900055F0E1AD716E4637FCB94EFFEF596C81D7 +:1023A000FAFE2302F911AC7B5D4B91E08179F61BBB +:1023B0007C9956786EBF9D54F9E97AA09F89F713EE +:1023C000F1FF5E4B0CF4DBD49A60DF0374982BE9C9 +:1023D000E8F3D6B714BD518274DC429C301CD9E4BA +:1023E000838702BD36B5083E17FC7A51B02E2B8389 +:1023F000B29C6E701E83FA712EBD1C03EBEA351180 +:1024000017CEF3628B704486F106843A4A3F395FF7 +:102410004F8E5172929339B318E928095A844E02AB +:10242000EB4CEEA95E4A2C745DE787E607FF4D2270 +:102430005056D669A71733D22995529C909AA50178 +:10244000F5F05FEAC74B2EE378A924601CE877A675 +:10245000A1FE9509F0FB7A298BCAEBA60E21A102F9 +:102460002631A7499C8964D897E0195F01EBD9B759 +:102470003B3BB11EC6B524D57D0FF9654C7FAF0E31 +:1024800027FB9B12874E84751B0D75ABB16C7C3C92 +:10249000572743F947464FCB9DB8DE1FE99C479924 +:1024A000183C80F2B97867926E0F8CB3CF6EB59CF2 +:1024B00085712FA61B12B1FEC2126197B590902AAA +:1024C0004FF36DA9D0CEA54F2812A15D7E8E8ECE82 +:1024D000EB82415A48E56237711EB35351926B400B +:1024E0004FB22AED3B705D96B9554B5C509FF54D50 +:1024F0001DC1F92C87359A409F72C6AFD0214DA6D9 +:102500001AEA26A0FC4839763A5ED6C7B79F4679C4 +:10251000DBAB775755C33CF6CE9BE194E1792BB208 +:10252000EAD6E3FA26FECDC984DB71BCDD39455419 +:102530001C86E543777D36B4FF63DD7D6E07A5B568 +:102540006454E8AEA3F4A5F2E722A40BE99B91C57D +:10255000E474C35261BA00EB7B778748E5A5B75CAA +:10256000F01D857A779B208B05D8D9555A8DF47A42 +:102570003C2D11F5E91BF30C2A3976B73DD42DA279 +:102580001C095233F2437E4D741E83F92EB519E4B3 +:1025900040B9801A03D26F435BC24CA433C90D18F3 +:1025A000272B58CE6BDB7A059C77AD4B3B8E561FA5 +:1025B000229465F25E0E10611197BFD3DBA0320644 +:1025C000CA28BFB0BE4AD25C91887A52459C3EA8C8 +:1025D0005F42643D9637AF22CE4E286FEE000B1857 +:1025E000F87CB381CA29AA0D9FF7B03CC3F35257B8 +:1025F000A9F52113E51BE893A9D18B8BC9A411E997 +:102600002E9A9E709F4F02A6B4BD622E86E75E6D25 +:10261000D33B63E0B9F502F01FE56A670CA5E775E7 +:10262000FCB975F87A689BECD683696CDDD648AF47 +:10263000BFB7337EF6CE279DC8C70D607776C0AD95 +:10264000F2B63BDDE550AE6D109CB06C52DBDA6C3F +:1026500094C6A3DC7A17A39D958F087ED4F3DACEB7 +:10266000DDA70C48875544423BBDA9CA67344239AF +:10267000D543A89C6D5AEB1556835CA555C17303D1 +:10268000D697EE81E707C8C3BE04903F73F07C2B5A +:10269000EC4C5FF6D943D74F9CCEEC5876A38EB85E +:1026A00002C69FE28D23AE80F1A7B526AACA79BEE5 +:1026B00009AAF6333AB254F5F9FEE9AAFAC2E76775 +:1026C000AACA459D7355ED8B4F2F54954BBBEF50C8 +:1026D000B59FFDC10A55794ECF5FA9DADF7269B5A2 +:1026E000AA7EFE954DAAFA5B07FF56552E273F504E +:1026F000B54F5C52118FFBC059D8A609184077BA64 +:10270000A909F7F744839420803C5C6D1409DAE949 +:10271000BEC695F11EB84FAE01FD40CF37E1006255 +:102720002839810D3C66B89CD621B87C8EE076E3D2 +:10273000B83DF8F2F4E702A1727D2BDDDFD672BD61 +:1027400049F5DA9BD1FED69E16E9FEB2575F27A067 +:102750009CED6D1288D78E72A1239D81FBDBB5EBBA +:10276000B4FF66BEB634E2DE5F86FB814CCCE5A9E1 +:10277000A80FECA7EFF877135CB08E4CBE9F90AD1E +:10278000FA3ED41313FC43FD5AE337F405DA9B34C5 +:10279000A2EF0BD4A3C97CFF988CF703F60F852E0C +:1027A000D4FE65E395CDEFBF70BDB0D46F10662742 +:1027B000441815DB6BEDD5FC2BEAFDFAD641EDFE96 +:1027C0003D4A3BA42DCBAEB3A1EC12213D02E22742 +:1027D000AD5DAA949AF548EFB456812409C3F66B0F +:1027E0004AA644F9A6D899F568AF02E6D947A47D70 +:1027F0007968475A7504ED08D8F34CC4650ADFDFE1 +:102800004770027AD94E5C7179680FDA458A0FB445 +:10281000F2D16767EDB28E3D6191109F348A9528A1 +:1028200047FBBBF296CD857E17BC0BF5B1D0EF020E +:10283000E048DC0F37B497B76F872E3EBB81CEEFF1 +:10284000ACD1F77A3A8EFF1351C2F1FB09C31D7266 +:10285000BB7014F7CD0B1D4F58B260BC4F8E6DBFCF +:102860006F02CCB39ADBB3BE0EF61CA297F621DE44 +:10287000FBE4587112EE1FCABC56DB453AAFCBC41D +:10288000B7AF8CE10D8AEBA87C659121FC328928D9 +:102890003F437C10AE03BD333A443906E898D92152 +:1028A000BA62E13AA93586E29BCC407ED969BB5E2B +:1028B000C44B93B89C4E24BEAE12BCBF456DEF27EF +:1028C00036413BE83FA1567D9F701C64E5FCBE0C81 +:1028D0002CF59BD15EA8DB59B93C5B3578E8614E9D +:1028E000FFFE4B84EED3B52D0C576AD7DBDFB4F275 +:1028F0009405EA273E2310AB1462BDED7CBDED6C60 +:10290000BD970C6E23DAE3A0F5B6F3F572BCA75DB4 +:10291000A7767D9BFD06F53A34F3EF6B7CC2E2A10E +:102920007856A2FE417B6309E5A7DC24922930CFCB +:10293000B91D0C7FCCF5EA8EE0BA6E21FE7AC4C1D7 +:102940007DD8652EF2B1DD8BF87E9F9D953FF28D8F +:102950007F58CE40F97B7A198E73C1AB23287F7DD7 +:102960001D2BA99FD0D72E58D14F78A1BD99FA051C +:102970005A7956E87FA1FD20953BE5FE3F29746E0C +:1029800007B943396F5F69C90ED8AFFC5CDE2E1002 +:10299000EFBEB921E8AFA5376900F94B1D963F2D71 +:1029A000FDB57457E44BA1FFCDCAD98551CAD923CF +:1029B0005CEFB4EBBA7CC9FB26FA0FB5B57A42C519 +:1029C0004A2B572D7C5D2D61D60576C19448DBD10D +:1029D0007569D703FE9011E542BB9EF503FE5DC409 +:1029E0001159BE1E41B900BE7435FF22B307DA4F3C +:1029F00033FA0FA7220EFA28961C85250987AB32D9 +:102A00007B90DF9F79265B03F839218BE16EF4AB75 +:102A10007436BC765B7465B0F87498F06CF41FBAC9 +:102A2000A93FD15F6226E83FF45F7B90FA13356DD2 +:102A300026B203BAD60CDE7E1FF567BD3104FDC297 +:102A400076EFEA6E2C5FEE1005C4FBCBEC121D5F37 +:102A5000795E7FC71A2BEA814D740DDA4781D7441E +:102A6000984E596264DC269A9EA478321C7E7B477D +:102A700092287F23E1383208F34DE57E33E25AF0A5 +:102A80008F511FE80FAC3FC66A3D82FEFE60EF45E6 +:102A90005F3D94F589A9D42F8AE3388F94087ADCB6 +:102AA0007C63791765FDBF133C7176A8D75B65C25F +:102AB000EC818BE07E1487FC83790DD8ADF4EAB30A +:102AC00031FA0FE19E06867B7A1BD4B8A70687C829 +:102AD0008E02F7F8D8FCB5ED6ECB66FAAEC53DEBCD +:102AE000F9BC535B991F5DEB62F6368D4814076D98 +:102AF000021C84FE4114B8677928DCD37BFCDD4AD4 +:102B0000BA9F97EA88CE1E1EFF6CD2E01FC55F0BEE +:102B1000878314BF6DC89FFB3EA1FE5C247CA4F597 +:102B2000F382F05258BFAF93FA2DF2E3FA31F1FB82 +:102B30007A534E9D4A277F7E7E9FE2CF85F3FFBA70 +:102B4000DAB2E3D12E69FD40450E153F50EBD7D5E3 +:102B5000E31E3317FDBB6AAFEC888CE71E9B1C1D80 +:102B60009ECBC8BE313CF7519681F61B2D9E7B2C27 +:102B70002B3A3CD79625D2767FE978EEAD2C81EFC3 +:102B80003B5AFC567F1FD271E2C38244EC21D61718 +:102B9000093F2878AD3DF43EABE0C7F5C7C19ED9EB +:102BA00043E0B8814EBADFD6B61A5471BAB1C773D2 +:102BB000E5CD88CB3086897EEE8F274F3820CF1B1E +:102BC0007B3C7799CB5D383CD79FF5978DE7DE0E40 +:102BD00023670A9EDB8C784E0A2167378DE73A43DC +:102BE000E2B9DA01CF2E3C9C587F7C643CF736D2A8 +:102BF000BE14F1DC5314B74D33FA0ED37D24029E7C +:102C0000FBE76C3BC7AF23E3B9018EE706389E5B59 +:102C10008F780ECAEB11CFD173020D9EF3333CD7E0 +:102C20009825A9F0DC807F08CFCDCCA6F16037C510 +:102C30006FF24E81EE870A6E53F6DBCD9C8FF40760 +:102C4000CA1B28C587CB9B045656705CDAF1EA2E66 +:102C5000B4B369B04FE1714B7AC7F62E3C2F49F7F8 +:102C600048146F3D3299CD275A3CB7117F473CD766 +:102C70001E1D9ECBCB6271B911F05C5E5669309E11 +:102C8000CB43FEA57CF5F8ED17D9A1E3565F57FCC1 +:102C9000B61EF15BFC08F8AD15F09BE5C6F1DB272D +:102CA0008F4689DF5A01BF15448FDFD6B74687DFCD +:102CB000D6B7761991BF7F2AFCB681E3B70D6314AE +:102CC000B7275BA57894E71BC56D454FBCB21F7154 +:102CD000DBD46C2BD507C5AFB9517DACCE8EE85F88 +:102CE000556787F0AFAA5146404FF225E65F113D88 +:102CF0003B1F52CE851BE67FD1BD089E73BE41C4EB +:102D0000136372DEBB681FE240EBC382159F9BC357 +:102D1000FDC68B42E77D84F2CB45F7FDFF9DC9D60A +:102D200035DAF17E8771CB94E0F12C8BD8395EF5E2 +:102D300052214B023D59A927157AB09F4B09BB7E02 +:102D4000C6ED1D5D188C772AD77604314475C31102 +:102D500069B53972FF1778BC345C7F858E2BB2BAA7 +:102D60002B29EE9DA5A3FB8DF69C8D44385F7BAC93 +:102D7000F6E5D86901E7747BFF4828CEB9EB898E68 +:102D8000FD8873AA899488477E7B12D87DB05BCD7D +:102D9000AE79C17828E89C5E62EB473AE379BC7271 +:102DA0005E1F74EE0F7BDF8E59789FCD4FA93712CF +:102DB000D28CF5497C9CF7A11DC60F7ADB45DF76E6 +:102DC000DACF65437989763CF8D58BF5C95C3E70DE +:102DD0003C7DF2F0780DE93E8B410C311E34DF91E1 +:102DE0001A723C1FD6BF0FF5FAC0794930AF7C7C10 +:102DF0000E97DF2A1F9597AF9A5F195915DE407E0F +:102E0000ED4B607A4DC8512FF24B1B8FB4A7717DEB +:102E100020CE529A07B12A57870F7D80DB9627AFC5 +:102E200010128F38D966A079044FB6BE43F791C50A +:102E3000A50BE9F9B0B29ED4569174160F9717DF1F +:102E4000A373A37D586CF7C4EAA0BF4972E209D10D +:102E5000F079EF28D7FBD31C860BB5E7BF976EF050 +:102E6000FCF7D228CF7F239DAF8CDDF96FE8731676 +:102E7000ED3EB216F71132BC8FACE6FBC86AAFFA72 +:102E80003C65B4FB086E64C8041BBB35B4AFDC5EA4 +:102E9000F24E79852E785FB155347E86F49C54A924 +:102EA000A3FE806D8B3A5FC294A1C6CDB3109094FF +:102EB00086D02F10C35DA1F59FD667E6484C4EAD76 +:102EC0009EF1424940FE8EDB6B09D47F1866BB320F +:102ED0009E2EB4FE537D7D286774F3D061BD3DC442 +:102EE000F379FED0909E57FA54F34955FA69F8AC3D +:102EF000ACA7B7EAA0C548F9A2B66389CA7C34FD7D +:102F00001EC37EF09C06C1BAAFD41EBCFE68D7D1EA +:102F10008AEB4F897C4E4BCF53A3C1BBDED078F7F1 +:102F2000524EE878E5462E5FA9ED6F333B58A22359 +:102F3000E8DFA791CE5DE81F7D55E7B3B56D86BE8E +:102F400040798CF67CB65291BF08E7B491F8D7C1AE +:102F5000E9AEB4B384910F657F42F9D0233E117C72 +:102F6000FB44C4441C8729E7E7A91DD1E1B05FE712 +:102F700044F48B7E9D13C22FFA359F2F213DEFCC59 +:102F800000B9CF6C1308DAD567DB8E1851D80A9FC9 +:102F9000BE935EFD2DD5468CC3381FB5D372D1EEDE +:102FA000727A25DDCE71E80FF6F9583FA09F887C34 +:102FB000ACE5CF2F3E7282F6B31E3F619C08EDD682 +:102FC000B40912E693CC7E45EC44B91C7846F4E192 +:102FD000B9C58030F314FA91F2C302CDF3B2B6084A +:102FE0002ED4C34DC7C5A331B47EC52E7ACEF0A86A +:102FF00048E38C9F022DE3A07C788F78546671396A +:10300000A24F1DF6DF66BFB266DF1CA8EF7F55E753 +:10301000DF01ED6B1A83E2063ACA3F1FDB3F4CA487 +:10302000713BE60F163EAFB6FB459DEA72F169753E +:10303000B95FD0D1BCB8D26EF5FDD91FA8CBE727B8 +:10304000729C4CD8F3E24C8280CF2B0F940B3BB692 +:1030500023948F91FCD49BCDAF383625B49F4AFD85 +:103060007FA0576A1BCBAF58C7F32BD24060703F8D +:103070005DBB85F83A85F0FABBC6C4FA87F5539B69 +:10308000DEA5F620929FBAB6E5C6F438629E8506A4 +:103090002F6871C1925C75F976E926F77B6D39E28C +:1030A000FECFE203355B890F532697102FC5031B14 +:1030B000ABD8FEBFD1373A3F324DBABF02CD4AB48A +:1030C0003840BBFF0FEDFB1C0744DAFFBF9FC6F67D +:1030D000C91E03A179A3C178D3D390807AEE27F4D7 +:1030E0001C805CE9E6785347F650FCF9B23E09EAE9 +:1030F00017BFE67222B914DC593AEFED971324C4D6 +:103100009D3BF489180FFB2571825B4B0E498C3E69 +:10311000A6173D4EA2E64F48DCE9CC2D5A9424A1D7 +:10312000FF75E524B5AF448D43734DCD2F636C73AC +:10313000BAF5C44284D6458EF27A70A7C92CD7FD61 +:10314000E83E9253AD5B4E821B07B8B7A73E1E9F69 +:103150002B1539918F4BBEF0E9E3E1EA6AA9FB68D0 +:103160002334FC8633C689E66567F25507DA5B05CA +:10317000BFE74D79711FE277C5CE533B89F3F04726 +:1031800067E7674D8968E7674D0961E76721B10225 +:10319000F6B7D558058231B931B47D689BC09FE33D +:1031A00051F38F522A95A706C17C485A9D2D30DED7 +:1031B0007918EDCFB4E07E31A489CA4F0CD17F825B +:1031C000F446DA50DCA7EF11B0FFE4AD1A7B22AE73 +:1031D000A2F64E3B2FE5BAF5E3CFF24F06C8DDDB92 +:1031E00053C6277F824EA88338A89EF1FE0A9DAB66 +:1031F000F97AB5E3FC7EDB95FC93409B8319EE786E +:10320000EB08CF53D6A594331B38BF383DFB35E3CD +:103210002BF49BDC2150BEBF3065D95E19C05A5CCF +:10322000D1497ABE3590412A593EB58BDAC7762509 +:10323000E6CAEDE825CED893538D6C1C5247E5E4E1 +:10324000A04F7476823C4C3E2B3A7540FF1CC57EE5 +:103250007A997D74713B90E2D6ABEC670CB797C955 +:10326000A4CBBA08E4765DBB48E3545AFBA9F0E965 +:10327000F2B5188279F4FD15469A0710A3699742B2 +:103280003AAD58BFC6A927B81FF4F7DCBD989EBF5A +:10329000B909F5B7B4FC2136E7291BCCBBF9BF5BF4 +:1032A0009DE86FC54C057ECD18E657733AA1EB92A9 +:1032B000CFB2F3C1B8A2E47BD6A2DFEE8AA37AA490 +:1032C000D03986D3B959E8CEC5EB10FF96AE185168 +:1032D0005E14FEF9C0DEE2F5E8362BDD27DBB7D958 +:1032E00068F9C96D12BD766CCBA5D79F6C73D2FA05 +:1032F000E3DBCA68F96086FF65C41B5FDE458A644C +:10330000987F6F866F471C5B6FD131B64C73F92C79 +:103310008C5F72BDE07C1C8865E5D727A452FD8BCD +:10332000D1EC47DFE27C4D2645B1B7605CB3D620D7 +:10333000215FAAF97E401AD83E188EAFE63F323E92 +:103340009D473ED9713C0D3F39DF53886717F2C75F +:1033500003FCE984BAF33DFF6A45BF5D06FE1DB379 +:1033600007F3F7F5093C6E6023C640BE297CF05098 +:103370001D05F99143FB052B2670BCF367623FEEF8 +:10338000993AB2FD50ECF498D90F3FB3BBE1EC870A +:10339000423FC57E2C9C9AC7ED4709B51FE722D84E +:1033A0008FCB5CEEDED0DA0FD0FBCE929BB71F6BDB +:1033B0001A441A9F08673F7AD17E2447B61F6BD103 +:1033C0007ED8D17ECC3E651BD17EB0F7721439DC3D +:1033D0001FA5FD1840FB1120B75F17FB3180F623B6 +:1033E00039B2FDE8E3FBC076B41FA523DA8FDD78A0 +:1033F0007EBAEE06EDC7A588F6C34DEDFB7A6E3FAB +:103400002E45B01FDB27F078890DEC4E00DF2CE352 +:10341000583CFC7DABCF9288F2BB2591EAF96A2E2D +:10342000AF3FCC60F184787018BA695E86DF82FEA7 +:10343000634D06B3479F362659D0EF0C37CE7A4EF0 +:10344000AFE07164D538975A936839929F154EEF63 +:1034500083FC2C7F681C75705AA4F8889DC629B51A +:103460007E56CD4DFA597BF5D637CB605D7B57E95B +:103470002594B7707E56CD57E5679191F3D9BF2E4D +:103480007E9607FD2CFBB09F555DC5E4BB5AFE7AC6 +:10349000FB59FF681B3AE7A2F95643F11B1E8779D7 +:1034A000D6773F8DBB143ECEE236FE5616B771621C +:1034B000DC06CA45CD77D2EBCF5A8AE85589DB289E +:1034C000F900C57BBB58DCC6DF756A42327D7F4F91 +:1034D00015B739C7E336E784A346AC971FE5719B60 +:1034E0005616B7D980711B01EB57B3B8CE6E91D683 +:1034F0007F6A92F6A19D3A7C4AE707CAE078643C6D +:10350000C6F3778B749FB828E8481C6BAFBC17498B +:10351000E33A495CCEB4F19B241ED7214BF5371515 +:10352000C78914BFB96312F78722C46FEEC0449CE9 +:10353000C0789A97F3C3DBC5E2692704164F931549 +:103540007EB0F818E9B6BE8B74ECE3F1B7D9AF14CE +:10355000D37CB64F810818BF2A3E2650BAAF6F13EE +:103560007D9887F529C69DCCC37C5BC7E54BA17FC1 +:103570004D1BA3FFA7C2EAC594FE7B0509F7D58BB7 +:103580002699E2F0C30704944C6285F921BD3735D2 +:10359000B238DBEC5716EDC2795C3A21921D649883 +:1035A000FE69F88B88E72A2F5B10A7CAAFEAFC38C0 +:1035B0009E961F69C80FB433ABD8FDAF8A1F2F6525 +:1035C00044C78F9732383F388E53E2DDA95E8EBFF5 +:1035D000F067047FFBDCD488E7DBE7A68638DF3EB4 +:1035E0003795B0F98D51FC233FA35787693B8BEF8B +:1035F000395041E31F2F1127E6B51D927C0D34FE93 +:10360000D1E9A1718848F18FE2922E7DA8F3B770BD +:10361000718FD279D562328C3BBBA2BA6909946FA3 +:10362000BF2637609C63B1BD7B118D7FE414D1B898 +:10363000CBBC2BA42216E675478960C5793FF5F807 +:10364000A98CC0B8C7FB4F6EA1718F1A9BEB24E603 +:103650009BD598F5344F8BF80C5786F81560577545 +:10366000609FD1AE5604BDBFABB6BB4165975EB29D +:10367000CEE2294C304F03E223E0777D0DF19868CC +:103680005ECA2A2BE24601E903D77716D67D1B7165 +:103690000430D082FA75F6FD6C1DF241E16F469E52 +:1036A000A0CAAF7A99E3C05E2BC3FB0BF5923E1420 +:1036B000EE5F641255FB76AF6964FF60685CDE6E96 +:1036C00061477605DA879D7A277DCF4A360BE49FDE +:1036D00085F0E3D7C62DBC32AD74F83DBD934F2DB8 +:1036E000DC87791ECD02A17602FD138A93B81E6C89 +:1036F000460201BDCE4C6771E0B07ECAF1D0FE5DDE +:103700001BEFD79CEE7C2D2704EEBE1C0677EFD571 +:10371000F92C8B84B1C7D3D33B981E2757A4FAF05A +:10372000DCFAF2907FA4C6D55AFC7C31DDA8C4C572 +:1037300028AE5AC7719582AB151CADE0E07BEFEA6D +:103740003118A0FE60CBCF52F01C4A8BAF0187D35B +:10375000F727D63F27D0F8CABD5BD5F9565A7CDD8E +:103760007F4DEDBF6B71745F72E2B27232EC2F79F4 +:1037700078BCE57C4F8CCB847427261FE26FADDCD0 +:10378000D7D7B8B6A7C3FDCBCF952EBB056E6DB20C +:10379000D6D13C4B03710B366C64B3A6DF49714341 +:1037A00085F593DC617D08279F08343E09D0B32F4F +:1037B0005349C8EF36BC97298D493EC8C7384E6972 +:1037C000F87C10786A2ACFA714309F52F1834BF807 +:1037D000FA636A04620EC04B258A3FD4AD57F1EB01 +:1037E0004B724DC7ECA140E56753068BBBA755A9AB +:1037F000FDA4C2D32CAF54F16F0BC3F8495AFED1CC +:103800007D939E7F9A7DE8E76AFDDA26C947F7DB5C +:1038100026C09D28C71BDAEE17D0FFD89CAB8E4779 +:10382000DC269AA9DF7EF53D91BE8763CDEE34A1FB +:10383000FF65FD47D18A79A37DD71EB1A01DBBDCF2 +:103840001343F37115BFF659D033CCFFF2839EE9D1 +:103850000D84FC14F40CCBCF819E61F9E7A067784E +:103860007D1EF40CAF2F809E61FD8BA06758FED5A6 +:1038700036172D776EABA4E5621ED7DCBB30EE04A5 +:10388000CDAF3F1063C5A3A4AEE6DB33BF0FF31B80 +:103890002837D3F90DFC529D07ABBDCE9E90C5F7DE +:1038A0006FD9C0F8D869403E86B35735DC5E6DD01D +:1038B000D8E3207B15262F7336EF17CE5EF585896A +:1038C00033FEBFB2577D192C8F3A92BD9A3D81C508 +:1038D00073B4E7E511EDD571B0578EF0F6AAB64690 +:1038E000A0F19C68ED55B8B84E387BD58FF6AA6428 +:1038F000447B254C447B5553BA0F6EC3B86E4A7F48 +:103900008F2CC8B82FA754188F8876DCA67D349FDB +:10391000F346EDD6B76CCC6E59C7F9339D408FAEE8 +:10392000677EF16F7F370AB9D5CA2BE801CDB7BAE8 +:10393000FAD4E74D72CED8C525BE2AFBE6F98AEC4B +:10394000DBDAB0F68DC58F15FBB6D6CBEC5B4C9EA3 +:103950003A7E17D6BE3D02F60DC6BD706DB6C51DCA +:10396000105FF9AAECDBB99E1896FF286FBA0BF529 +:1039700045E1EFC5F4FF5C89FC05017C139970F605 +:103980007D9104E2C4B078CE0C780EC65904382E6E +:103990002A9CA88F1227EA6F182796E6A504E3440D +:1039A000C5EED13C758CEBB786B6A32DB97F5EE72B +:1039B000827769E44C1BD757DE27D58E73C371FD20 +:1039C00016755CFF328E9F1D4CBFC9ED2CAE3F3F7C +:1039D000EF8E96D1C4F595F3A49E5C865B87E2FAE0 +:1039E000FEB189EB6F6A1C39AEDFC7E3FA9723C4D7 +:1039F000F537F0B8FEE59EA758DE4ED8B87EDDA9B3 +:103A0000C0F8F09EBCE8E2FA1722F8170AFF9A0500 +:103A1000F75B98271B897F63B5AF5F8810D74FB9D5 +:103A2000CB251892719F2D2A46719C1DE65C501B78 +:103A3000E7D5EEEFCFE54AAC1FE7DFC126E68F44BE +:103A4000CAF7DBA09147E51A14CF6E0BADFF66EE07 +:103A5000F745CAF7AB19CAF773ED42FB172E8E5D17 +:103A60003B1CC70E9DEFE7FF6E02DAE1B07942BE64 +:103A70001BFB1E8B29438A2ADF6F288ED7211094C7 +:103A8000CF673B583CB510F3E030AEDAC8E2A9CEC0 +:103A9000E6ED2CAE7AE47E1AD7FB591B8BF729F1A1 +:103AA000B9357C3DC5274ED0FBD6E327E879D7C68C +:103AB000164142D91DCA87DBCBE2A003C201769E24 +:103AC000AE89AB6E6A6271BD016135D32B1E573D65 +:103AD0008771D5E4E0B86AFF6E16A7EDC7B86A49EA +:103AE000705C5589EBFDA9E27817A28CAB5E50E2C1 +:103AF000AA4AFC42E1D7F1E8E2782FE545CC9B7970 +:103B0000292F44DECC4B79FCB95FD3BC7969861090 +:103B1000F2BB69FF3F6F9EE5CDAF59C5CE73D67836 +:103B20006FEEFDAB70E7383BAF892ECC9394B7B006 +:103B3000EF308E367F7E67E78795D9182FCAB0D3CE +:103B4000EF516ACF79C6D904E5FD20D57733C95D39 +:103B5000208FB386E5715CF2C2CB7A0BD6EB499F1E +:103B60003A5E4AFA02E8D89F4C1A459013FD20931A +:103B70004BED385D1D2B2BEDB87F009EC0F39EF5FD +:103B8000D6CE3745D4A3E382A487F1CA8F0BD45F86 +:103B90005CE3157C785EA01F34D271D6789B3D78AB +:103BA0007F758E89C4C2FD3DB09FF4019E6EE0EF2B +:103BB000A1EDE1EFA1252EC9D985FEC017ED821F29 +:103BC000D9BA31D96B44BB66B01209718BC1AA7ED8 +:103BD0006F7463AEF714E2893807ABA7ACC2B85272 +:103BE000AEFA7DD2AC46237125057FA76CB4EF0DEC +:103BF000FD96C7AFC2BD37A4EC17D5D81FF3E71A9F +:103C0000429FFBFED7B43F2F9CFCCBE923E3642506 +:103C10005F70CC7072E3C8F9730AFD94FC97A3D36C +:103C2000AF1F643839D9223930FF4A89978C9C3FBD +:103C30001794FFF217923FF71FD3A3C3C991E25A1B +:103C40007F2A9CDC17217F4E8B932FA687CE7FD1B6 +:103C5000E2482D4ECED4E2643FC3C963F5FEDF6F68 +:103C600095F74DF9FB7F5FF5FB363F98218CF27D90 +:103C70001BCF88EFDBDC2CFE5E7F83EFDB144E97DF +:103C800046F5BECD109F22BD4736431AD3F7C8DC98 +:103C9000A86363F81ED990BC44FB1E195FCF68DF90 +:103CA000235B8BFDC6E03DB26A5C7F00EE1EED7BC0 +:103CB00049F933229E9FE7CF08717E9EAFA17BB862 +:103CC00075DEAF6917EE7D2B655FD7BE6F259A490C +:103CD0002EEAB58DC43931BEBCD5642920F16017F8 +:103CE00063D9F5419DC78372F9A0E837D9A1DE52A7 +:103CF000E2F9F10C78DEEF757E6B3994EB537FE3DC +:103D0000C6C7ADDAFA036705E0206B12F9EB50DFA6 +:103D1000935DA5231EDCAF7EC2F5F76343E7A404E1 +:103D2000586F79C9C29FCC4809D17EEB3FD0F116BC +:103D300088A4CE1F025F7471DCFF988ED4E0B87740 +:103D4000FFCD4F2F3F89384972CC4432C5E5762FDD +:103D50002D063E34BE954DBF4FFD4BDE1E165A82DA +:103D6000F47DD5E9797E46C0B9AF49B2EA595CDD48 +:103D70003F07EB17FCC171E22D18AFF1BF99E9FBCA +:103D8000F1AE6CE7F2E210F14E18A70BE76F1ADC08 +:103D9000F319FA19CA38BF8AED798C7EEB5DAEF85B +:103DA000E60765504EE8992840F9B5FF91F3CDE458 +:103DB0007428A7F44CC4FA93E4CB874FCE813260C9 +:103DC000458CB35A1C5F3E8CF1C805770C3CB11F83 +:103DD000F31CA61AE97B1EBBF9B990F2DC428748B6 +:103DE000D753E860F454E870A676643A7C184C87A0 +:103DF0000F03E9AFCCFFDD12D747481F98245D774A +:103E0000E336E25C0B7374A5F9638B81E1E992FF01 +:103E1000E9FD30CC841C99825218A70FDB9B061950 +:103E2000DE57C69951E23A87E39FA97D67297ED77D +:103E300022F68C48E356A61C228FB3D07E9719FD3C +:103E400058BF72896C11B286F9F07411D3BF4494D3 +:103E50000318AFDEE8B5DD89F1839C43DFB542FB93 +:103E60005D765F552879EB7330FC940053F687A894 +:103E70003771BAFD7CA6EBF7386FA340DCD8AEA152 +:103E8000AC9BCED372266926C5A739A46405D8ADEC +:103E900089F9AC3DCCF73A6D3FC74B8D486C0E5B52 +:103EA0006783E300415C166B6B2112BDDF43F5397C +:103EB00096F84DC86773BEFE504319AEC3998BE5A3 +:103EC00069CF1C3CA407BE1FC1A416C07776286327 +:103ED0007EC86130E4E8B7C9138CF49C483BEF9886 +:103EE0007CC6BF834ED7D345F89E5C4CCF13FBA155 +:103EF000FDEE3C233D5F58A0F356AD46B9B9C34C27 +:103F00007114DCAF0AC4E7F31CACFF3C07FB6ED8AE +:103F1000EEFF34D17A2D5DA395A76C4EC70079CA08 +:103F20007684D02B90A71C4728798A0F2B4F0E47F9 +:103F300068797ABA2865582E94ABDE66A47EBE7E78 +:103F4000705737BB9A7A693F93938EA7AF64B85482 +:103F50001C8CA3EDC4C126EAEFEBAD75944F6087CE +:103F6000DF9A41D7A1D3232E50ECB46876D1FAB7AB +:103F7000143B1BE93939BB223D27D531C273521D91 +:103F8000EC390BEE307B707F59807633807FE71DF4 +:103F90007A5AFF7307DB57C2C9BF2D9FD58793FF9E +:103FA000EB5C0E40FEEFC6F944927FE7B0FCFF35B4 +:103FB0006D1F56FEDBA9FCC7E532F98FE3F27FDD0A +:103FC00041E44A1BCE97C9FBB78F371DC2EF332898 +:103FD000FA30FF99C32A7D980565AC0FB7BEF47C13 +:103FE000A6DF165C1F3CE78D1251C678D2E724FF8E +:103FF00028C69F2C65563D7E5FF30187326FD7162A +:10400000078D23F4D0FDF508B9D215837A364FA079 +:10401000FEC278D9EF32E17A8997605EC8DF73FA21 +:104020001CD6B1FD5D9E4AD8B9ADDE4B901E5A3DFF +:104030008DCDE92CF104F0693CD7D3DBF3DD0D48DD +:10404000AFC33A6B1CEEA3E1F8D1CB9F575BCCF426 +:104050003A92FD7F1AED3FCA3FEF97F807535D286C +:104060003D5EF0ED172E3F39C2384F71FA1CE6570E +:10407000C54EC729763A77C84E1FA6FA58BB47B136 +:10408000D3CFA19D06BDFE7148BD4E02BD1642EACA +:10409000F553D1E8F518E8F3FE91F46CFF909E8D8E +:1040A0004CE7AB7C9FBDCAE973A3747E8FF3E9F53F +:1040B000C8747E3D0C9DCF8C92CEEF395242D2F91E +:1040C0002C8E33C27EFCBF683FCDF34DF85C3BAD18 +:1040D000FFF740FE41FD17820EF72142E3AE89DF74 +:1040E000B150FF50E1A3B24F8D215FAF503D0EC3E1 +:1040F000D7053A86A39639BE750871D4183CEFC52A +:1041000091E4E8452E4791F6ED046E3F811E86FC52 +:1041100094603B78847F47F0A0D363CE67766A09CA +:10412000DA9DC37F9728E03788325C9D02E265857F +:104130008E3B1C127DAED22FC3C5DA676C4D143096 +:104140001F2A60BC547C5EB8F1B4F380F9A5E75334 +:10415000BBE5EA453AF73A34F88BE3822389BE1A85 +:10416000B4CBD3F83E338DAF4F291714BBB2F2D97D +:104170007E3105AF9F97885B7459CC2E339CCDEC74 +:10418000B0399FD14FE7F611FC7E605C19A17ED556 +:10419000B03DBFF79862CFD799298E52EC79018E46 +:1041A0003B359FBF67C3C70B37CFF97CBF98CFEDB7 +:1041B000B2528679CEC6F5C23CE7E235DC3CB57436 +:1041C0008A76BE9BF87E0DF3ADE07C08399EC22F47 +:1041D000EC4BD2F1EFED30FD5C76267B26EAE77200 +:1041E0003EEF579DEE6538CFF232E13916FFB0C68B +:1041F000E1788F1961BD0EFC6ED2817223CCE3C8C9 +:104200000FADFCEFD1F8B663F9B17A6B11C6CDEE04 +:10421000E17CD2CAE7507FA33FAFD841E9712FCEEE +:10422000F7D6790CEFC59F61DF0D2B27A0EF22EAAF +:10423000BB6C73C27C1B05D9B61AE57E8999E57300 +:104240009BEFA2F30FC21BFC4A30AB3E406E89B914 +:104250002442FBEDB4BD759C5CE71E4DFB1899E252 +:1042600086613A2615211D97950932DAA97232E93D +:1042700008D2FAEFB9BC027FB652FE9861B17386DC +:10428000E91A3CBE4CDB97BBEB04A46B6C2E3C0ADA +:10429000EEC6BA658C45129DE425F85DE1B81CC2F6 +:1042A000CEE5CCEFD1F186E7515CAC9EC7FC27028E +:1042B000CFCB403294F9ECA17620CAF968FD76792B +:1042C00021B3C7F2BFC5FAEA99DF7E88D995BAD97A +:1042D000F43B58A4AE905D3B691CEC566ED76E352E +:1042E00099D979D935FD40605EBA00623C11B1D9E7 +:1042F00050FE788F707D5C54CF3D16EAB9D1C60B65 +:10430000FC5CEE03E205FEFCD210ED79BCC0427A03 +:10431000641193C4AC2C8E8CEA347126D33BC46DEB +:10432000FFC2F91D1F0687FD0BD70F453EEFDEB913 +:104330009064C135C644E4F189EC8AF9BCA01F9DA4 +:10434000F9548ED9BE586E25CF25EB86D7A3AC4F36 +:1043500019F70DBE8EA1F91A19AEFFD840AA4E98D2 +:10436000D9FA6606CCA7AAA4FC8DFC94E0F569E70F +:104370007B7ADB566705E080A4AD8BC8B924CC8F6F +:10438000F2D032CE337626E59B6CA0F9C7DDF7FD7F +:104390002D4CE11CF17C88F34ECAF5AE3D00744A09 +:1043A0007A2ED6091244BA4DD94D4E10B5EF3CCFF6 +:1043B000CEBDA2958BD1CA43D7F8EFCD66768BC917 +:1043C00041FD6D4555C9D4B24CBAFB0CF8C7F56F29 +:1043D000383F3043F94AFEA4BB6DA0E7F56F3BAB15 +:1043E00052C0C46715FCE15013E841FD9D45ADD8AE +:1043F0003EE996FF937A1B96EF11E87E6F2E987434 +:10440000379E77D577A971D7B09EECA47CB594B8C8 +:104410004B0B51CFF51E893EBF5C08D39ED9A9AD89 +:1044200008ED11D70DEA987D2B49A4C1CA5B152070 +:10443000F045022DBFC96952EFEA7B1DE3DF5DF352 +:1044400062A41826FF090554FEAD670AE1FE8185C6 +:104450003A1D9E3FBF323FAD09EDAA77A14EA07F26 +:104460005FEA1B6C1E86E41EB1DA1C3C0F4B89EB25 +:10447000011CA7FE5EA12A543C2CA0DD0A5C5F0C47 +:10448000F01DFF5E205E516E0DA0BF222F73F9B5A7 +:10449000E178BBEC4249327D2FC4AA0FFC7E9F22FB +:1044A000578A3CBD36E57F6622DE01F991B09F5602 +:1044B0005E964CFD702ADB2F35F2A0A55F10BDAED5 +:1044C0009A711F7DAB4C8C15CCC1F405FA15E0F345 +:1044D000DEBAC6E8EA2D9B46BFC3FDCA9C98BC1E47 +:1044E000BA4FB99D580FFB52C97831AAF9978D6E12 +:1044F000FECE0F3C38FF6B4615FF9785E1BF38FEB7 +:104500000B33CE0BD783FB01CCFFB602E08738A973 +:104510002703ED8232EF68ED9FBB20285EEA2E086C +:10452000B17F2BF601F8BAB280E1982FBE83626E9C +:104530006538269C5DF214A8F1401476C953501AD0 +:10454000BD5D0A41FF9AD1D05F392F367072435159 +:10455000B2427901FE2ED1F3BC9E98EC61F91606A9 +:1045600049E7780B9373FC1EF6AEA22293510C1E02 +:10457000375AFACB0541FB8F5C30C2FE739B384043 +:10458000BF8B73759E40D7E51A84A9537B072E54C1 +:10459000C0BC17989AA83F120F362FF01C3FC16578 +:1045A0002281E7FF4995565539C56D53B54FAB92FA +:1045B00088FA3BD3B9AAFA89354E5579525D99AA42 +:1045C000FDE4AD2E55D92E57AADA6737BA55E5293D +:1045D000DE2A55FB69AD1E557D9EAF46553FA3A310 +:1045E0004E55CEF76F55B52F7C5E56D5177536AA4A +:1045F000EA8B4F7B55E5D2EE5655FBD91FF854F5A3 +:10460000737A3A54F5B75CF2ABCAF3AF3CAF6ABF0A +:10461000800CE5EB08F47C4574C4E37EF5A5CBC0C3 +:10462000B0B84CBAF1EF1BAC24CA8F4ED22B7CD45D +:10463000A9FAD373BD95CA39E152F6BD7E19FEE1E0 +:104640003EE90E7A8F4F8A9740FE179C6679D42EEA +:10465000AB3A2F66013F375CA0F90E3B7D7911FB29 +:10466000B9049AC7BE6050A2F35D8AF3A5E38696AB +:10467000B3A075CAAE6ECC271A5E9730AA75297999 +:1046800002B053D3BCEB056502F99110BC4E651D19 +:104690008077F5A8FF2EA7FAEF182CE0F902DA755B +:1046A0006ACFFF7F57C0CFFB9DC4192A5F3EDCBA9B +:1046B000F5B289E28F72A4977DF8BCFF2A8C84FD45 +:1046C000DD67458A7F302F66484E605DB1925A0F94 +:1046D000C7E5AAF570BCD336B21C69E92B9351D15A +:1046E00057827F388FE5D800E6B97C90D0F70BC2AF +:1046F000D177B95E9D37152D5D6D85FC3D2B4ED76D +:104700002FC9BCE5C512F3F39247C87701FF24B364 +:10471000B034FCBE32A370D4787746E128F06E88BE +:104720007DA5B87014FB4AB4F6DF5518B4FFBA0A79 +:1047300047D87F87FC8F79ECEF0D28FB12FCB8304F +:104740003E64B14DF5A1BE2F2D1CD90F595AA8F5C5 +:1047500043AEEA03FD10574C5A1C8FF3FD06E3A647 +:104760008A5F523EAF6839A6B5FD86C789A25DE76C +:10477000BDC1EBBC77A475FE6A3B8B0BFCEA0D91C7 +:10478000FEDDDE5793C5CE1458DF01924FDFE752AE +:10479000CE2D2A3D84DAAB727D73073A6330DF0D8C +:1047A000C8A74AA95CD868C6FBF7D36B3839DA3298 +:1047B0007A39DA729372F443EC1F353E8CE0EF3CA9 +:1047C00028D67DE08125D4EF6474907F3B8EC607A8 +:1047D0001FDACDFE9EF443DB99BFF218A7FF1E7EC1 +:1047E0009DEF64F1A9724B19C59F3B85F1DCCEB9F1 +:1047F0006DFF80F4B419693E36D0B319E979327D82 +:1048000016FD7B469F9F79D71C780EF1315FE7FB41 +:104810007C9DBF7D60689D8F527DA95A43FF1EB865 +:10482000B2CE7BBFA7AC33C34AED02DA09B00B4668 +:10483000AB9FC64B178B66BABE861CE2C33C6C901E +:10484000C4A5B7A5F2D452E84FC4A5A731EFE34BF6 +:10485000879EEE4726E5BD2C89E5BF34C23F6A5FDF +:1048600079FEA8C1A657E5AFC7A2DD2AA0799CAA08 +:104870007C19A57DAC26BF466BCF7EAAD8332349D1 +:1048800063F6EC878D980A0248D716E8DF68ED9941 +:10489000523ED9939DD613424F946B7CD9A5EC1C04 +:1048A000155EBBA22A27550E66E7A8F01AC9092C87 +:1048B000A755997202DBA77BACAAF2C41A9BAAFD8A +:1048C000A43A49553F796BAEAADE2E3B55E5ECC6BE +:1048D0003255FB295E97AA3CADB552D53ECFE7567F +:1048E00095677454A9DAE7FB3DAAFA67F117FA7ED7 +:1048F00018A9C2BCA867317106FCEF9E7FFAE3DD00 +:10490000787EBDABF76E1B7D1F2BE59BA64039D48F +:104910005E4FA630790D57AFE867B8FA4A6EB774A4 +:104920002637CDD73559B366629EC6B3CF2FB4E2D2 +:10493000B9DF20D72392AC8EDB2BFD7F2778065181 +:10494000CF9538BF92775309EB990B767489F47D34 +:104950006745C0BAB767AC6E45B97F08F40EE5FE8F +:104960002142F8DF4D62747848CFE8F27F011B18CE +:1049700000440080000000001F8B080000000000C1 +:10498000000BCD7D097C54D5B9F8B973674B3293D0 +:104990004CF600012604344AC04932D948800961E6 +:1049A00089650B281A4C80099BEC098A3A2A3E0635 +:1049B000425834D4B855AC963750ECB3CFDA82D2E3 +:1049C000CA53C409601F2A6AA88A2816A358EB563E +:1049D0004D0574AAB4FEBFEF3BE7CCDC3BC908D65B +:1049E000F6F7FEE9CF1ECE3DE79EE5DBBFEF7CE7A5 +:1049F0004ED76FFE7EB5BF92B10D4AF3A6A10A63F2 +:104A0000BF66F0D717FEF3F7AFF3E443DD08FF1EF0 +:104A1000C1987957DF3AEAF7EE842C06CF0F259735 +:104A20002475D918FB16FF46F72C0FAFF1B9C69ABB +:104A3000183BB0C64BE5A1358B5C638730F6FB3580 +:104A4000CD543FACB0BA5DF07E8D997977E547DE05 +:104A50002B7219184B8F94CFB9BC99AE62C65E3ACF +:104A6000A29EF1E2DA98C3583B2CF63CCF0F796353 +:104A70008017C63BC5BC03F1BD4E6B6E9B2B8DB141 +:104A8000A6BDAACBE264ECF28BDEBCC80BF35EE6FB +:104A9000723006EDAD8A7F30CB8575980235B5361C +:104AA0001CDFC358066346852663ADE9E35D73E109 +:104AB000F9309742EB61EC166ABFC1CADB63EDDFE8 +:104AC000C8CC2C28FBE430A6E4CCA863B08E9A7442 +:104AD00033B340BD4661B5BB7A815F8ED8F7E5CE72 +:104AE0009B5D63E5FBF0DFDAECB95B999BB18D5917 +:104AF000F03E2C6523E3789178DA68E47893786265 +:104B00002CDBF14182785F65CC8AFB82D26833FB73 +:104B1000D5E1503A9A19C2E92F8A77AC0BF7956D17 +:104B200030E2BEE298FCF3B05A3B967EB16FFD785E +:104B30003EEC00EB613673E061D80FC3B542FD8BEC +:104B4000C3B9DB6F5762C365E31A47B6D114A93303 +:104B500016203C6C447AC8C7BA2B6BBA9DC667084E +:104B60002F9665A3F1717BAC0FFE9F376F1AB4CF00 +:104B70004638C17BEB0A3C3311CFCC01F82C8F3D7A +:104B8000AFDCC7BA825A2FEDD7E8CDA3FD5DE07B3D +:104B90003DCB769A1FD6EBD4C2290DFEDD89746415 +:104BA0008476D8CFBD36598776286B07B7B32E7871 +:104BB0001EE7E4EDAAC2F795E90D3033EC37C1CD1D +:104BC0001CF8C880FDA0BF23A1D3632860ECC7AE4A +:104BD0000975599740FB606F96C145F5E346982FDC +:104BE0004585BA03E79F70FC503663DB99E35205B5 +:104BF000DAADC6EAE387FB339628F999551FF7D853 +:104C0000B05DD65990E5413D3E5CF758B3A03E28D3 +:104C10005CF7637D9B81D3D98F5DD5C7D7E7233FF1 +:104C2000D66E26F8598393F260BD1E8BE2B8DD89FB +:104C3000749046708415C7233C62C251F43B1FBC7C +:104C4000B7E73F7E7810D0933FCBE81A02E36FC2FC +:104C500026CD7BBF7599A95F7AA1F7415C8F7D75E1 +:104C6000B71149F08EFC143BF277040F81283C7099 +:104C7000B8D7E605080FF183038497815967FC557F +:104C800030DF40E01DDC0E73A6105EB667AD52103B +:104C90002FDBF3055EF29801E9321E9699090F5A4F +:104CA000CC6C11D26D421EF304105F163607E5C8B6 +:104CB000AF057D3EE35245C9E54752D6BDCC09ED6F +:104CC000713506EA9F24CAC8FED78BFE461DBDBDBE +:104CD000EAF6FE0FEE13F0578372E3C87A03F1DBB6 +:104CE000F6F583B62B0AE2C131360FCAFF5CC35C0E +:104CF000F34D84A7ADD8FF882B35DECBF116243ECB +:104D000089C69BD8E7F9F0160B5FC784DC8DD57E8A +:104D1000D54CB516F767B07AEF9B01F32EDF9B5A9F +:104D2000A0C2BCC7EA547727D4573C9359001062FD +:104D3000C785DC6B327467A09CDA6CBBBB164BCBAF +:104D4000DEB59E7E0CE59493E022C76DDA5745F2FE +:104D50006B5D426225E23B7A1DC7CEBD91560BEDDD +:104D600093FF6621390B48751A41BECD2124D2B676 +:104D70005E1B0CF5D942CE9F13F8796D4D1D8D3316 +:104D8000BBAB71121BCE8871BBB81C56BEB5C0FB45 +:104D9000913AC975E633BD8F752BFCEF5BE09D63DF +:104DA0004610ADB0AF637EC50590638DC669669C45 +:104DB000AFD1CFFBD17BF0DFDCDA82F188DE799BEB +:104DC000F4CF17BC7DF947C8B40B98F1FDAEBCC851 +:104DD0003C57D73586F5C169FAFF00973F468FC922 +:104DE00000747064BAC250EECEA89DE91A9B1719E0 +:104DF000EF8DBFAB73100EC7F05D5C57C3C53BFCB6 +:104E00004A4F784C285068BCD7D6D4929E0EC387A0 +:104E100078E1FC7008C3EBFF081EE3D549048779ED +:104E2000D314D28FD170008A9F344EB39F3FC87D78 +:104E300032D7B10458DFA93613C18F0581784A18DB +:104E40009BC25FD5EEEB3D5C9703FE87FB82415A28 +:104E50005361BE05004CE4A32BFCD0AE996F016BEF +:104E6000FB2BEAD9B9AC3629A8D0BEDE8BB1AFF79F +:104E7000B4FB8A5E77F43E270B7DE17BFBAFC30E6C +:104E800069C663C6603EDA459505F634D2D3C39948 +:104E90000BF5F469F7154941C49F3BBD57B9FBD5E4 +:104EA0009AEE618786F4D4C7737CD374F687C2BC4C +:104EB000E1BA03ECA5EBB254E7FBA92053EB4CF7A6 +:104EC00021194EB3761919C2456D48427E9CC6AC75 +:104ED0004E1BF4BF1590FD2DAC798A27CE69D3EC1B +:104EE000EB8B76A506E5E675309CAF90F04376D562 +:104EF0001C01F7EBB2CC34FE1CE6EF403802BD9D3E +:104F0000D1D25B2C383444F63FFCFBECFF4DD099FA +:104F1000C8FF8E54165400AFDD8A35B003E668F042 +:104F2000DDEA1A5B84FB677E3388CA950539422E19 +:104F3000F3F59A98FC6B267BA941D8B36F9B58DD9B +:104F40006E1B96C1FE851AF95EE7AE5A59A091A76D +:104F50000DBEFFA0F1511D23DD49FA9C6DB505552D +:104F60004E779F86E983E8AEC1F1C150C207FB16B8 +:104F7000F6B9A1EF1217C25BEA47B06F56E3F81B10 +:104F8000E21387B3241696EF71885780475C9EF131 +:104F90006B2D9DF6D0CF87E63FB21DF8C16B33B2C3 +:104FA000DBA1EA55DE6FC5F7002226A4AF393ED358 +:104FB00017DAF7BD769022B0DFB95936B22B37F445 +:104FC0001DE1A03AB48D40BCFAA1BF35B27E2FA23C +:104FD0000D9E6FB894FDA42B97F75B0D4B649B342B +:104FE000E30E8A8C1B3D5F0FFD14357EF4381B0CDD +:104FF000A09F013EAA7DFE22B24FB3FA3AC8E6CA8C +:10500000E376E44305069D5E996B4DCD36A646EAF0 +:10501000EFF5B1D569F5B32CE57B126E113BEC5D74 +:105020009D1D7647EB09BD1DE63FF183ECB003BB48 +:105030004F901DC68CCDEFDC06FBB9FB0595F094B7 +:10504000EAAB66A760DD46301B9252C85EF6636924 +:10505000F5F5A3FD28468014C03DD5098A0EDE7FF4 +:10506000A1C049EB373A59D00E8B4B35BA14173CD7 +:10507000BF5BD833F4077470778A63FBED40F21698 +:105080002B5B1F9782EFF17DCBF9C2E3E6B91447A2 +:105090003EF10FD93F926FC2FAB840D1D91117C073 +:1050A00027C70A8A7BF2C91103DFB71FF6FD306CF0 +:1050B0006156D6CDF4FC2ADF3C2A67FA1653D9256F +:1050C000E6033FB00BF9A1B3EED55937A11FB8C71E +:1050D000E202F5C53EAB7B75E1FD4E840FE01BDFC0 +:1050E0009F79CF8C9234B43B8C64E76DEACFFD534B +:1050F00075AD42F6C366A7B9660F940B5C558985FA +:1051000088F7AC4403F2EB17F19C5F17B8C6D2F3F3 +:10511000AFFEB8316B2EDA8759F12851E0FD9C3B88 +:105120000DE8C73C0FEB65C8978CF4F106332F5997 +:10513000A191D35121876BA880DB419B4CDEBC66DB +:1051400068B78660351A7AB41AFDCC61C3E7467A2F +:10515000AE2AB03E1C2FDE9B7783D68E14E35A43D3 +:10516000C0BC45BDBD6FA6E7B82F7A3F85AF47F6F7 +:105170008B13EFC7897559430934DF861458974D4F +:105180003B4E227F2EF82C9A4F7C05D57684CB029D +:105190009727B190E4669709E5E4ECACC3C795C4E2 +:1051A0000B91735D0ACA39FB39253810F01E5FA5D3 +:1051B00006D6013DC62B8EC96EF43FAB4C2E846BD8 +:1051C000675E9A7D10CC7FD4E8B0A7C03E06167209 +:1051D000FCD78E03FB13EDFD2A13D1F3D1BCF9BF2D +:1051E00050B9CD67D5EA9B39567F40E899889DC371 +:1051F000FB398D25A21FAC6BCE58D51397D8D3FEA3 +:10520000399A9F32D90DE3FB57ABE4AFCC19A71EF7 +:105210001B838DEBD921AD9D09E2E2D06018EFA48C +:10522000A8763187B95A89D819737C7AFB87A17718 +:1052300052827602FFEB6137B95DBF4F75223C7633 +:10524000D5103C86191C088F0BB5A318BB8BE094B6 +:1052500030EE0907FA41E9854EAADBC7BEEA213FD5 +:1052600069DC6923C1AD5261C9B0CE369F817960D6 +:105270009E2D6E534081F7B7E4753D3F1AF9D16D0D +:1052800074521C20AFF3CA6A6A2F26FFE2159CA253 +:105290009CFA93BFE2B7D90243507F17BF6E9DA718 +:1052A000A1972DEEF72E413DB64DD0118841DBB8C8 +:1052B0009208DC103E4E12A26B891E0FDD124FF8D1 +:1052C0007CA74D0D58781F03E2D39EC5F9719C6AE7 +:1052D000A3F9E6DDA70430DE32AFF8589505FACF22 +:1052E0006B55882FE7AC56DFB57078EBEC326F73F7 +:1052F0002DD90B8DFE287B4DD87330B819E9F742B4 +:10530000EDB968FBA4B910EC93A1C89FAC506B9F9A +:10531000C4F29FA47D62639E1B917FE61A9987E089 +:10532000537905C1759CFAE9F3A3615F5FB8070D76 +:1053300042388C73713B7E8BEF2D2BE273CB39950A +:10534000F89B19BB1623BCD45B47A4A23CEFB8E57D +:10535000D2CC5328D70ACDD47F9BC1797F25D2EFF9 +:105360000B2692ABB1D663F5A96C30F07B9C4FA1B4 +:1053700052E2C3EE8B63468D9C01107970DE747728 +:10538000B732482357EE177C99BC9AFBCBE96EE6FF +:1053900071A21F3878D00EF4634121F9116F713971 +:1053A000CE42A41FD9FF2F0A8FD719C736FBFBC1E6 +:1053B000F381B00E9CCF09EB40FD96E34BA0FA20A1 +:1053C0005F2A95B9BE642A07FBFA51FB105F2E9540 +:1053D00017F972E8F9C5BEA154CFF315517989AF19 +:1053E00080CA4B7D15540E05FD86FDF27D55540E89 +:1053F000F34DA4E7C37D575079996F1A952E5F3D01 +:10540000B517F8E65159E86BA4E745BEA55477FBFC +:10541000AEA77AB16F259525BE5BA92CF5B550597D +:10542000E65B4BFDCA7D77507D84EF1E2A2B7C778F +:105430005159E97B90DAA59DF132FE13EC3955F50F +:105440003A306EB92D86DC7DBD90EB91F1859E677B +:105450000A8B23FD5495356BFBCB7E47859C4F66AD +:105460009CBE0CD6A03597FCF5DC42F4D7B701DF23 +:105470003B012F2B860CDA81F2F34821A7B3389336 +:10548000DFD32F27E29F278FF5905FBE62EF4A2A76 +:105490005959EA05C57BF609B9B3CDE867A82FB716 +:1054A0003533971F1EC50DEE54502E6CCF37D4A048 +:1054B0001CBF23FF8B0EE4E3C9C51E379AA577E412 +:1054C0001B0C56924F556E5CA7B1C824E2429EB7A2 +:1054D000915F06BAD37F7405B40F5C6F7040334B95 +:1054E000769B287E930CD3A23C93F194EDF17AFD48 +:1054F000F777011734C772703D7D0717DECE25F6AA +:10550000E59C8F0691BFB8CD1C548C28D7C09179EB +:1055100058CA78ECBF61EE2F90CF066D721DC0F5B2 +:105520000DF4BB8A70BD7F17FC96D3EE1C13070BDE +:10553000CADDEA398031D72101EF9878A85FFC886D +:10554000FF009697EC0A8C498072E8DEE0017467F0 +:105550008605BBC6D8A07ED9617610D9BFA0D35925 +:105560006D877AD171CF410C3F167779AB13114F0C +:10557000E6404B22AC67DB49E65A0BF5F26EFF4181 +:10558000129B020F613AB0B066B4BBACCE760FC2CC +:105590003B7B9583E23232AEB9CDD815979C8FF024 +:1055A00081FDE2FE00FF28DFB33DDD04FF6C372BF9 +:1055B0000410B2EDEB25FC73884EF28A14097F5B70 +:1055C00011C6ABE21D55186FEA1EC71C3BA07D7DBE +:1055D000BE81E0636E1D44FA43D21BC0F59269762A +:1055E0002DFCF938DBA2ECD15870CD2BFABF816BC2 +:1055F000343CF716723E8886AB846710F7417152CF +:10560000970BFDA958FC5B5E14E6DF628463AC7EF9 +:10561000B38B381F46C379BB811D061D03F8E2F426 +:105620009A0DF8C3B8CF4C31EE85C2F58AFF4FE032 +:10563000EA2AE2F221165CC908ED83EF39E2512E25 +:10564000C69233381EEEBB37F9C6281E99B3430500 +:10565000382C1270DD1CBAAB16C793F2CDB86FAD03 +:1056600007F58F946FEE22A7E09718720BA7A63864 +:10567000B62D80F2C126E216400993F2DCE8072835 +:1056800029A8E76E14F33DE7AA5D5544715AE64632 +:10569000FA602E7D5C7D92EAA84279C32A14B27B1F +:1056A000A7561EF5A8842F67A1CAB149E732EAAD13 +:1056B000F13B109F39602F18810EE09F412C93D849 +:1056C000AE20F923EB5921EA79E668CCD2F29DD4D9 +:1056D000E711BE94F491427E20D22DF67F4AAC377A +:1056E00049F643AF09FA6DB8B92F9DFFC8F7B6DB8D +:1056F000B2E9BDA78A9209FEE67ECBF21AF363D324 +:10570000F307929ED73F4EF04DA8E47642D2FA14AA +:10571000A2EFA4B1DE0C1C3E42D773CD48D77B8AE2 +:1057200054C1075C8E83FF3C671AC23F8597748023 +:10573000E4C6F9B37770B97D61F4DF52C4CF19FEC6 +:105740005DF4DF22E927061F0CAC7474A8782E31B3 +:1057500096399CC8D795A8C3F05CC24CF293A1DDE2 +:105760000BF52420EF9F2A04D720C641FD063BD12C +:105770009B6AE91A4BF4624926BFE03997F740D19A +:1057800077F0D106B3B38081A9F56ED187336D4030 +:10579000771B72809F00759D4F74CF6C2B4378767A +:1057A00031517F00DBFFD938068CFF26C6311C093A +:1057B0003C5E80E77AD33574F886D023C38B3CAF48 +:1057C0001771BE7817CB2AC6561972D90F8E7F442F +:1057D000C73D249F9DCF4E91F223C2EF8E02C9EFA9 +:1057E00048D720AF3F41F8CAF162D95DF70839FCCC +:1057F0004DD1F9ECAE942A23974B82BF397F6E6668 +:10580000FC7C24965CFAF83C72C96E6DDFBA934555 +:10581000E2B85601BFB0FF9FB5A113FD1DBB88E3E1 +:10582000AEC6382ED05BDC24467E9375307F8E7FEB +:10583000BDC77303BAB89A8CE732E1A75D2FDE6D5E +:105840005FE74A1A8C7EC7CB3C3E02D2CBE980F69A +:1058500049F86F58AFE252084FEDFFC1F974723644 +:105860000BAC03D298F4B5C23C30DE91AF552AA3FD +:10587000E3B193E13DB4538E28D68015FA771458DE +:105880009819CF49EC06E12F06B30760BDD042F16D +:10589000FB4305A594CF70FAC8AB366F7E4FFC5F13 +:1058A000ED6DD4C5B32274A1DFE7D5B39EB3217CDF +:1058B0001F74707BD52CE4BD6C2F73737D9A5EE8EA +:1058C0002D74A3DF34BF7BBD19C5B1839F5BB22CA0 +:1058D0004E377D1C8FC7A1DDD96719B75BFBB2C0FE +:1058E0005A87AD273DBEEAF6566268FB41792EB86D +:1058F0008C9F0B6E72F273C1AAA6BE95836080075F +:10590000C2E782DECB705E4FEAAE02A49F07BFDE25 +:105910001B87A472961D5945F1FBA23FA639318E13 +:105920005DFC5C3AC26172D4FA6529E371D1FEED87 +:1059300024B7F06F45FCFD2CAB9C8AE3C78ABFCB34 +:1059400038A1F473310EE8E8452F44C359CEDF0087 +:10595000644079022685E4DD11EC5A4EF262B69B72 +:10596000EB518FD58D72635800E5FE4BEE223A9FC6 +:1059700060AE54A987B3B5E79E723DF07C486FE7EF +:10598000A10D31F2366E707379D560E2F24C59F99F +:105990005C03E2A1A1C0A2587222F439879FBDB175 +:1059A000F9A2FF1CD7C6BFAA893DCF37E6BB1DD4DD +:1059B0007EC414CC7688F8A8AB17BA8C0597378DBF +:1059C000FE59089737BD16871FC67BC95B9AC97AEF +:1059D00059B72CDF42FA00F87B1066E91ABCA173B4 +:1059E000DE0BFE8F633E8FA9E7F951B8BD318EE221 +:1059F000E675082FCDBAB7897D9F70733DCF2CFE19 +:105A00003C8C1B6F9A7B9F9581BDB379F017C57E47 +:105A10003BCAB7EEE21D144FB3533C220CBF320E0B +:105A2000BFBAC6B3C56B357940730E6E7620DDD62E +:105A3000E5AC4FF7E7F784E70937DF579CA0671B12 +:105A40009815481FE178CAE02B393D1C8C7305611D +:105A50005EEBEBB985A8E7653C05C725BA613CEE6E +:105A6000BBCAC1D781B2454BD775BE153A3911179C +:105A70005258405B37B653DC342E64A4E7D1FCD3D4 +:105A800012C53FC7CE6D74203D59F11C3B3F728E4D +:105A90006ECF4BA173F363752AD97BF1431CDBD125 +:105AA0002FFFB39BEB1329D7E5795CF4F99A3C57A8 +:105AB000B3479DD3C5E559BFF39C4EEE37723EA761 +:105AC0008773F47E5E8EDA4FF83C2E065D497A923B +:105AD000F4158B5E257D453F97F475BC71739E135D +:105AE000E92ABE773BF333417FB21E9D3F20CFCDE5 +:105AF000A3DFDB23DE3BED2D277EAA33FB875C880B +:105B0000BC927471BE7C89ABF15CA497F1BAC4BE3F +:105B10004E7B1FA0738AEB8B0D0EA4BF2DF09F1F31 +:105B2000F9C46DA23CA937CF5918DA7FF662C3CF0A +:105B3000D7519C757DFF9FA0DE6CB4D0B94610F89C +:105B40007C19C077B3E0F7705CB64D0D0C417D0158 +:105B50001A577BEE3BB998C7CDB7DC5B1040BF2826 +:105B60007EB055D7BEB9787A52906AED93E7C238C5 +:105B7000739DFCDCB08EF1F33FEBDF37D622FD6E78 +:105B800036B56715D822703838E44B3BE6DF302550 +:105B900072AEEC04BB2ED8589AD145F49A45E7A1D1 +:105BA00056076F9B575C44E7815D983F48E7F622B4 +:105BB0003ECC381FCECB7167203E645C57134FD765 +:105BC000C56963C5752F349E2BE93F9ACE8716F7BA +:105BD0004EE7B1F0AC89EB16146BE590F34A9D3CAF +:105BE00091F247F2C35B62FFC787FC64329E331DAC +:105BF0005FC0ADC283437EF2D21A8C9B3A8D4ED4E5 +:105C000037D6BFFFD738A403B658E9359E7BAB948F +:105C1000BF78AE9F1781FF4CEFE2701DC9B87ED1EF +:105C20004A5D3E42B4FC8FCD9FDFCD7F5FBAB95F46 +:105C300025F503EA81141BD703067B84DE63E903A1 +:105C400029FFA3F542B41EA86B6C75F98751F908BA +:105C50008E63CD8D6F0EF4A21FA2E5BA9C3F7ADD54 +:105C60007121950552B57CE9E47A252CD7CDD40E67 +:105C70007F79E877F958BC0BED8E852ECF0AC4F3F7 +:105C8000B52E4F1396135C9EE6628D7C6831F1FC55 +:105C900047D5C0BCBBC92FADCDD2FA437716737CB4 +:105CA000B556F17E1DE925597F82B2E5DD822C13C0 +:105CB000CC7B5F31CF173B642F49EAEA456E85C73D +:105CC00011F47307CA21E47F8147E9C7C3F63D1881 +:105CD0006F6935D566A13F9858FE78E720807B8BA9 +:105CE000C3E05060AB378A75B43003E985F51E5BBD +:105CF000CD9E7CECCF488EB4DA3D0FFB85BD33C31F +:105D00008EFDF939A2D166FC5ACB5F3EA3DF82F04B +:105D1000F259F93941F43A1F14F32C17F688DC775D +:105D20008FFD14737DB7D8E5F96931F4BBC2E5B9CD +:105D3000B398E8DA46E787341FE6AB5A793EC45792 +:105D400071BCF48FE1EBF59F8C0BB4C07A13DDDEF0 +:105D50009DF8FE4DAA9FA15FDD9278E365680F4B29 +:105D60007B509E6B47CFDF60E0F2FA37C59C5ED078 +:105D70004E43B855B9C7FCA6B817FA91F619D8E141 +:105D80002FE0B97495939D09E0228D5E27C67B6450 +:105D90003E28D8AFBFC3F799B579466F7996779FFC +:105DA00027CE25E34CE03F3F83E3C078CF625955CF +:105DB00006FE33DAF92E394E17FBAE71004E74DE53 +:105DC0007B01F03B827037273697E2788C355F860F +:105DD000FBB950F8BDD1137E6F7C17FCBEFAE3C54A +:105DE00049A80FC0AF67FD527AF693E7FAB2BE2911 +:105DF000593FFF86425E7F4FCC3B579CBB7F29EAD1 +:105E0000D21FB658993F0EF5D8243018F323F91154 +:105E10006139566CE772A268CC97B8FF0D390AE574 +:105E20000D6C48E6A5ECF7787115B5778BF1BF449A +:105E30001A2DE6712AB433A4FF2FFB3F2DFA3F5DE4 +:105E4000CCC705A17409C2D3ACAABDC2F11BC1075E +:105E50002F14707E192FCF3FB7C8F3517DFEDBBCE6 +:105E60006718E9753C1F457E8D95E7E6CD73FC1EEE +:105E700043366759BECCDBFB41FA13E19990D2530C +:105E80007FA696F49EB7164B8E69F4679F12ADFEFF +:105E9000642E5D1C49EACFAEA8F31D59BA4A383EBC +:105EA000DA84FF8C7210E56F8ACA9A490E1BB97F9B +:105EB0007977228F6B22DD29188F2EE1F4121D775E +:105EC00092F126197F92F126197F8A8E3B7599BB34 +:105ED0005A33014FDD9730D70E86E7A22B3B4C7823 +:105EE0003E95C70A114F1B72586219B617185C18F5 +:105EF000D74FBED2B1C104F564274B41B49A605C60 +:105F00003B8C3BAF2487F6D9E6BFA22313FA35AE0C +:105F1000FF2BD9811995CE14B410B687F386D7B16B +:105F2000411AFAA911FB4F72F2382BB3FAE93D8FEF +:105F300025B9E076A6ED27EF63782694D0B9188FBF +:105F40004727334E47CCC5E38D535927E5996D302C +:105F5000EC22B9B2ACA87A32F6977CD362608B7629 +:105F60006BE2AED1F9455745C1353ABFE86E114FE6 +:105F7000DB00E3EDA6B8AE8C03A62AB85EE8BFDE70 +:105F80009482F0D08F13C64B547C30563C30BE8187 +:105F9000F37B34BDDC26E0B5C4E5598474C7CE7DFF +:105FA000FBAD5AC2AF3F20BEE03D867A3F2ECD4EBC +:105FB000F1D938273FCF660E85F242CC661E8F336B +:105FC0005FC48AD63A317FDCB649C13CBDF906864A +:105FD000F9B8D5621C4F1D533EC82350322E8F8D09 +:105FE000EC03C947AA001ECC3B4680D202A84F0052 +:105FF0003855DB5EF89B02FC983998C77733D3920B +:1060000028DFE1EE18F17699CF15C95F9B7C429F9E +:10601000BF36E1843E7F6DC2891F92BFF6D3DF4D4C +:1060200038F1EFCC5F93F2EFB8EA3D7E2BC07F06EC +:10603000082DF45B67C0880D1497E47EC59502CEE9 +:10604000FEAF01CED6089C67EC7B9EE077DC04EBCC +:1060500086F94D6338A84DB724919E937EDD55D6C1 +:10606000F671681F7C6EEE1E8EF32E7FF2B1DFA1FB +:106070009DB9E437F72562F2C347C6F60C7CBEEC47 +:10608000E1D644BC9FF3A1D19F88F6CE4701B5A6C7 +:1060900037BA7A4FD015FA350AAC6F8558DF8720AA +:1060A0007FF0FEC1E2372D81B5307FD32396A00566 +:1060B000F6BB62CF6292D7507F97D737921C6EDAC9 +:1060C000AB97C34BFEEBBE0C27BF9FD2CF9045E8EA +:1060D000EA872058B1D344718E15AFA92E98863522 +:1060E000B1EE0DB8BEE8F7711D218043D32EB5D1B6 +:1060F0009CD4B31D249319F55293D0034D51F27ED5 +:10610000510C7FE96889F0974A5929D233C0C515E7 +:10611000447B02D643EE5D209DEC97965F5A3C1877 +:10612000B7FDE8ADCCEDE8D77CBAF3C544253F22F6 +:10613000FF195B47F8F874576E526F715B597EB662 +:10614000863349C4BEE17874EE85056642751F2F1B +:106150009799828915009765DB4D2E3F3C5EF69836 +:10616000EA41938B01FCD13F5EFAD873C746C07AEF +:1061700096EE36A54DE2DBB12919117C35C17F4879 +:106180006F123F4B9E78CEEC1CC69F639EABC4D370 +:10619000D2DD1D668C7745C3B37A578799FBBF5113 +:1061A000F8DAF5EE78A4FB965F7E65467AFC68BF68 +:1061B000C232737ABEBFE8E11713B1DFF9F0F6E936 +:1061C000CE04B20F3EDDA7909C8A85BFC78116C959 +:1061D0000E7FF2B15F3F05F32E7ACBE2C27D2FFA3C +:1061E000F5F589B8FE3F1B9B399DFFAC3503E5C231 +:1061F00022933FC341257FBE68DB0D447FD71EBD80 +:1062000081FC77A0EF3E8632DA5F1FDCD78287669B +:10621000D0BE16FD6C1EED8B3DA0303491CE1A59C8 +:10622000CDEE5EF05957CAF9E4CF3B2CA4ACFF6C1D +:10623000E6FCE9FF831AE0F9172B89BFE5FD3C8AEC +:106240005C41FDAC95E36778A9CCDBE5F97F4DA215 +:1062500057D3CE8D74DEF1717F4F26EA1980832EDD +:106260000F503D3A2E93E385E703D27BC0FFD5F86C +:106270001CFB779A3C71C375EF09BF92CFBF4ACC24 +:106280000FEB8E572E8332237CFED889EB58A1F07A +:1062900077906E30CF6D83D86798DF776EE6F81110 +:1062A000FC7EE6352E475604A6D5901CE83405330F +:1062B000B15FA0E34A85E4802572FF50CBC73B4D18 +:1062C000821EF4EDB02EA3A285E77E85E2490BEF96 +:1062D000857E1AFFBF69CF1D14AF6EC2FB8DBA3C1D +:1062E00042CE8732DE786D545C5496D172607AA9C2 +:1062F0005E0E84E3950FA57F677C50FA27CB4C8117 +:106300005FFC14F9F54D0B9D6F2D7BCC44F99E9FDE +:10631000FCEAE0B16B80BE3FD925F9542F57A3F9B1 +:1063200074D1E333586F7CFA495A2DEB954FE179DC +:10633000AF7C9AC6488EFDCBE46A18DE7ABEBC36C6 +:10634000865C5D1D054FB0DB932AA0FAF17F2F1DFF +:1063500048F958517095F08C968F99A5CE5EE5233B +:10636000FCBDC6347094F093F4B9E4D1E5344F9891 +:106370006E257D4A3D15A6CFE8FDEAE118DD5E55A4 +:10638000CA08DF2683CB8AA1996BD277DAD11F693D +:1063900011762D18A08731A43CC3932BF2B4387F1B +:1063A0008BDC5076A054EA57CE6FF27E8FC5DA466A +:1063B0007C2FE3191606FCCBE14C7CFF72FAC24934 +:1063C000DCF8B92E4AAE18C82FE84C2BFB85C877ED +:1063D00020B960A126BCEFB285E031D5A3121C2CF8 +:1063E0001E9E37AC199FF0D8E239958DE7532D6585 +:1063F0001617CA61E84F709AE1E5F09CE199F8112F +:10640000C26F4ADAE13ACC979E5AA6E7DB6BA2F854 +:10641000F0EA3A7DFB556C473ADAA3572D32B1804A +:10642000827690BEFFD6527ECE74356B6E75707AD2 +:106430001670D2DF3361E2DC768A906332BFF69564 +:106440009D0AF997AF94CD6B2BC0FAAFC06A84F662 +:10645000B39545CC0A7078D9C4F6927DEBF1381D1E +:1064600025748F869FEB96FD2FD9594965069D7C33 +:1064700049F6C4EBD69F5A93A2ABA7D7F6D5F5CF72 +:10648000AC1BA46BEFE3BD54D7DE6F51A1AEDEBFF2 +:106490007984AEFF40DF185D3DC7FF235DFFDC4D13 +:1064A000D375F521EDD7E8FA5FBC75AEAEFD92C0AD +:1064B000125DFBD047AED3D587EDBA45D7FFB2BD4D +:1064C000EB74ED05C1DB75ED4587EFD6D58B3B7FD2 +:1064D000AAEB5F7A7C87AEBDBCEBBF75ED151F3EA6 +:1064E000AEAB8FEC7E4AD77F74E880AE5EC55ED4DB +:1064F000F5AFB6BEAAAB8F739CD0F59F90754AD707 +:106500007EB9F3135DBBC4FFC4BCD3BAE7E830F96E +:10651000811E96F0476CB2EB1BDD3846564BFEA34E +:1065200099355369C5BC4428E319F72B6DE86742D8 +:106530005956EDED5786F4BACDBF0189EBE5F2AFC0 +:1065400006A0FE78A5F20ADDB9D754FCA7134AAB22 +:10655000CD8FF254C67512432A0B16011D86142ADC +:106560001DA10416047F23391447654A28959EA768 +:106570008692A94C0BF5A3E7E9A13E54668472A963 +:10658000CC0CE55099151A4A659FD02554F60D1587 +:10659000D17BFD42055466872AE879FF503995037F +:1065A00042D5F47C60A88A4A6768229539A1CBA9B4 +:1065B0001C14BA82FAE586A6513938544FCF878425 +:1065C00066527951681E9517871AA9CC0B2DA5F232 +:1065D00092D0622A2F0D5D4FEF0D0DADA4323F74A6 +:1065E0002B3D1F16BA99CAE1A1162A2F0BADA5D2D1 +:1065F00015BA83FA158436535918BA879E1785EE53 +:10660000A2D21D7A909E17871EA0B224F4732A4B43 +:1066100043DBA92C0B3D4A6579E897548E083D4130 +:10662000EF5584765359197A9A9E8F0CFD0F95A3D6 +:106630004207E9F9E85007959ED08BF4BC2AF43C58 +:10664000956342AFD2F3EAD0512AC7864ED0F37198 +:10665000A137A91C1F3A45E584D0BB54D6843EA17E +:10666000F2F2D04754FE28749ADE9B18FA2B9593C9 +:1066700042DFD0F3C9A1BF5119F6072A63DEB33355 +:106680007C4B71E4AD44470D825EEF4F4824F937EF +:106690007535BF5FB0A1EAF4588A87AEB438451E9D +:1066A0007094BC3C67437BA1155BFAF03130CF6539 +:1066B00096A0CB57CA0EA6E3F9D586C2AE6518A739 +:1066C000DA92D3D580E5EA32AEB76E2AE371AC5BDD +:1066D000CA785CE3C572EF946AA82FE96FF0A3FD56 +:1066E000B024D19974357479AE94E7C9B3B4149ECB +:1066F0003768EB1E8076C40AC14F2BF6FDEF71940C +:10670000BB0AB0850FED1C79FF66AF7EFF0AACA90E +:106710002105F595CB6AC5786E36A3F874B45E385A +:106720005F5C784199F74EE24FD65CCADFE7716152 +:10673000A9672EE0FDFB7FE0FBFF59561CFBFD8D9A +:106740006937D63662D5E8314E067CD40B7CD43717 +:106750005F4B760DE839B2E7BAC09E43DD6E59A6AD +:10676000BFE76B71EC31A11F50BF8A9F3B46B7C397 +:106770005F22E66FD5671B18C6B9A0A47EF568CF67 +:10678000E9FC845D742FAA1EFDB0C49EED7363D82E +:106790007B4F9545D9CF82EEEAA59DA2AE3E8CE710 +:1067A000C5678FA814E338986E660AD4BB965B88D9 +:1067B0006ED9266E0F9E48FF5D7FA7C6AF6E047927 +:1067C000E8C173DAE5376521DD6E6CDD6DC2B84670 +:1067D00057FF9574B923DA8FEEEACFC8CFADF7AF84 +:1067E00034929D9907149321EC2127DA6DCE5D0830 +:1067F0004736C0EAC2F33BD5A03FE71E55CEFD3277 +:1068000059BE83F122F44356F0BC1E93A199EE6F5A +:10681000B201F106CE5FFE65589FDF76F120B4BF6E +:106820006A8CCC8AF9AD723C8D9D154FF0350260B3 +:1068300034F659B41DF65159B2F00BF93DDE53E26E +:10684000FB34F8A7C87D50DEA1C78CF9AF96342B76 +:10685000B7E7DAA72D45FBF09DF0BD25D81BCC533B +:106860008F6B0480D7AF4EF05C02ED9F09FE358937 +:10687000FC21A013BFD6BEAD473D07FDA796CB7345 +:1068800059BE3F6F9BC58974D3EB7A0C2C9CD7EA19 +:106890006D4B0E501C35CD48EB32F5F7CCC673026C +:1068A0008B1FD687FC6DECBEA111CF03FCC9FC5E2B +:1068B000EF7A653CCA1B4BDBDA95D80EF06346E4F1 +:1068C0007723339A018E8DCC313E0BE1DDC6F38CFC +:1068D00075FB427A6F53685FA9E1F57A6663EADA7D +:1068E0003C3FCFA7037AA0F95B6FB37BF8FA94ED36 +:1068F000A89F257EEAC5BCF5ED4FDE84F2C82BCEFD +:106900003FEAC5FC7344BE642C387922F39E7CC3F5 +:10691000DD735EB95E09A75685E745FBB728DB91B5 +:106920007E2CABEDE4AFCBFD5BC43A7E543E88E4F5 +:10693000828443D7DAABEB1A615FEF6FB918BFE41B +:10694000D1633D48DB4C431FD174653270FCB0010C +:106950008CFC6949F7925ECACBB93C976549B9F49A +:1069600053347104354297D1E34B393641DB1F9ED6 +:106970004FC8E679A0EF88B86B51F9830D7E98EF88 +:10698000D5326EEF3367731E9D378AF52020893F1D +:1069900004DD5A6C56CF2528FF049C5B955A8283F0 +:1069A0007F8B85E821DA2FBF288C0FE635970839D1 +:1069B0006AC0E74E7A5EDF6621784B7CBF17FEDE49 +:1069C0008F67C03494C70E0147415FAA80838AEF66 +:1069D000A713FE18DECBF7DF65217920F1F30E0E49 +:1069E00001F2CB5B5E5B5F9E4EFC399CE4FB6A7EF2 +:1069F000DFA5C1D03104CF2F1BD605A98CC82D0E21 +:106A0000B79ABEF2BB302ECA1F61D936CA0390F9BD +:106A1000A9A7DB8AE99CD19BC8FB29466F29D66BC5 +:106A2000FE31AF14E3B2EC2D3BDD8B9995CBE64CF8 +:106A3000CF17F97DB09E592D97D7E03EAF177079EB +:106A400005FC6BCFC58C1D5D63651E209657D7383E +:106A5000A8FEFA9A2CAABFB1C649E59B6BF2A87CA6 +:106A6000DFCCE96356AACC8F76D0BDC39B857CBCB6 +:106A7000390CEF5559E82FD7FCE355CC086269FE75 +:106A8000671AC6F5273F126570984EEBAE4C10871B +:106A900014BCDE585BA16BEF12F9072CAF28F27C17 +:106AA00010A70BA4DFB99B72E8FC6BE6A454DD7B56 +:106AB000576DEAA7ABB70B7C4DABC9D53DBFA661FF +:106AC000A8AEDE28EE1F336BBC411B1F0371CDF354 +:106AD0008345DECFF52B2724DD04F35F7F54A5F635 +:106AE000683CDC38CF3F1BD777E3CF2D2EBC073077 +:106AF0006FABC2FCA9043FAE3F8EA9C477F3B7AA1F +:106B0000CC0BF37D9CECC94C82A13E8CE3FBFAF0EC +:106B100075757B0BEA8F7FE472FDF40B0BE9A70F11 +:106B20004DCCEFC0EF12A0D082E71F1F1D42F72906 +:106B300066E506FBE33DF2EEDFC6D179DDBC2E3E15 +:106B40001F530A296EF16132F324035DFE6572FB67 +:106B500042CA53578FA4E339CC5F1E07FD0BEF2FBA +:106B60005EF97A8903E0BAE4F7BB8EA14A78BF5D8B +:106B7000650E8C533D62D9CEEF257B32911F22FBEF +:106B80000C0C47BA3495D63E89F4FDF1C2C070F2C0 +:106B9000D357A7137D47C3E37DB3B714E3E57EA4C2 +:106BA0004B18CF7BA3DD8AFED73C932BA380E888CC +:106BB000C7E9FCCCDD87511CF671A29FF7DB868C00 +:106BC00027F9B8496118E796E3033F4D4138BEDF26 +:106BD0009E6A40FCCF6D53E95C0CEFC112DFCAEF37 +:106BE000D0DCA57AC106C1F7BD3C4EA4C7237816F8 +:106BF0009908B78DE010A2FE991D233EF819F2B254 +:106C0000260EB5E419FEFD20E676DE5909EB9BB2AF +:106C1000B3BA98F220B2F8F8675224DDF0EF267D7F +:106C2000E1E129D46777DA03480F9F1A1E3F690410 +:106C30003C1C3078DF2D87F64553FCDB14C0FFE7A2 +:106C4000FB4EFD18E3FC1F3F6672E1F036E6798FDC +:106C5000E4878FDB43F23C79C97FC7119D7CD9FF64 +:106C6000D2ED88BF88FC58CBF72DFAE38A785C3BDD +:106C700098A1003CBD4E361EE3C8F56C9788AB70FA +:106C8000383971510027C7321E4F3B556CBF9D5D8F +:106C900006F889B2874E097EFC4AF0B99473A523A1 +:106CA000787D9ED42BFBB97D24BFD7B3887178C87B +:106CB00078BE6504D7678B843D4B7FB0EFA5406FEE +:106CC0009497E4485E85DF615AF6489C2B00EF8D6F +:106CD0001DE114FA012432F0E562F1CAB52CD05658 +:106CE00008F32D7FC4E40AD276E4777E8C24273E15 +:106CF0003681EF9782E32934FEB2762580F1A6A48F +:106D0000CA6633AE73E91E85A572BF88E272F23E91 +:106D1000FB12E3168ABF2DC953C82E668F98DED7A3 +:106D2000FA21CB77E9EFB13745DD5F5F80F13B9E1C +:106D300067A0BFB7DF6E223D6965D6B5384E6D825C +:106D40009DD6B5A49DFB6B91F5ABEC5B80E5426FE6 +:106D5000E0F753080E8A2BC07AAE635CDA4ADAC7D2 +:106D600012DC474ECF7545EFEB42D7B9D0D5417411 +:106D700012BD5E0D1E9C7A3C74523CF94FCD2686A6 +:106D80007EDF423FA78385FB00DE3944079DF87D07 +:106D90000149077F4A6BA673953F3DA4B0F69C0856 +:106DA0005D487A58BC3B60467DFF096B4FB4E17982 +:106DB000FDD6DD57A108BFF6A1A366B41F1A528203 +:106DC000430CC908BADC9FD5F48FD0E7E2807EFF80 +:106DD0004B1FD1D7FF55F06122AE4AEF015C16EC94 +:106DE00054C98ED0F4D3D9414C6D33E3FDADB3011A +:106DF000C585F274117E26A3F0FBAFB7297CDFFFB7 +:106E0000DFBBEE687F6ED508E1CFB9781ECC17CD19 +:106E100033787EEDEADEEF51479F8744EBD3B74DE1 +:106E2000E23B233DF5EA54A40BD0AB06BC1C184B47 +:106E30001E2F14FA7401EA4F283FD8FA4422C6D50F +:106E4000FE74EF131974CE83FA275FAB8F413FA214 +:106E50003E7E328ECE4F1B7E660962FCF9D33D9694 +:106E600000CBE939FE2F4BBCF78C40392AF4E7C739 +:106E7000CAD112FCBE9494ABB1CE73FF5DFB9D8B67 +:106E8000FB2D423B82EFF7BD4D7C9FA7DAF8BEE7B2 +:106E9000F7D8AFDEFEF8302E48FAFEC3DD2A43BB3A +:106EA00042DA11D22E90FB3CCBDAB7E177C1965F84 +:106EB000F7C64923D0C7E28B3A8707615D0D775942 +:106EC000C81E58FC5B3BC1EB63A52A13F9F3D376CC +:106ED0008BC786707C248E9E47D611B60F9E1EA14E +:106EE000B50F2E107E320EA4381D3C3FE22146DF46 +:106EF000B3C4F3113C97603603E997E8F7BF107A03 +:106F000068B96A20FB749999DBA99F0B3FB553B40C +:106F1000778EE0F6EAB111222EC5BAB721BC8E3EBB +:106F20006371A0FEE934F3F8F0519367EB6DB0AFF5 +:106F30009515DED7911E6A0DB659C837EB12869BA0 +:106F4000500EAD4F5E48E74AB359A709E131A56C31 +:106F50009A13E32A2733AC2E95F89FD5B29248FCBA +:106F6000E66513CFAB398978867DD58BF38693712F +:106F7000202E61FE937DCC141FF23F63213DBC3176 +:106F80009EC783595A127D07F51AC1EFB3C65A3C02 +:106F9000E8DFD78FDD588B258CE76700AF066B776E +:106FA0002BA6A0AC35707DB736850510DF6C7D57FC +:106FB00031C2EF32B6DE817925B0FB3DDFA67E1708 +:106FC0001EF4793DCB307E3582710495117C75F5C8 +:106FD0006566DE6EAD583DEBDE6CA8A38D8EF6E8DF +:106FE000E56A60470EC6B90D84CFA998EF42F66BEB +:106FF00096EE7B76D3E1BF4AD8E77423F31B52A801 +:10700000DC64837246190B26C1FE82CFEBF38EAE91 +:107010000E1A8217E3399631D84179312A6B45939C +:10702000783ACB315D87E7FEEB2E6CBD832A36F2D2 +:10703000F51AF83DEBEE9B15FABEDA6C233BA4C2C1 +:107040007A9A529C7E7ABE5221BBBA1E9809CF67AB +:10705000A17D536221BEA7107D217E791E0FCF7FB7 +:107060009278827ED67878EEACC8E1FEA658EF56CC +:10707000AF2103BFDFBB5CF851B3AD6C3DE6CB8104 +:10708000BF9788719C0258A6164F4D66E96FED3286 +:107090004F07FB76E9BEFF3D9E0370C9AFE0FEE8F7 +:1070A00052192FFD953E5E3AA5C249F32A68970111 +:1070B0003CEB45198B3F265670FE9858C1F9A3B496 +:1070C00042FAFDBBC8CF5B2AE2B4B1E65B6E614118 +:1070D00082D73316C2BB9C77AA282FAF18C4E120F1 +:1070E000EA92CE1732B00772B1E47ACC00C8A43C61 +:1070F0009DF69F537EE7A28734760FFD7F3B9D432D +:107100002FD919FD5CA307293EA18F972BE6EEF935 +:10711000B83E65549C0BF9A2DEBC8BFC6F051C0AC3 +:10712000A4AF8531DE33B5737FCBD4C6ED198AABFE +:10713000B8313EA304503E3666770FA37B8AC2DE89 +:107140005D28F03F37AD99F4EC42B46BE89C95C7ED +:1071500051D956BE6EA3B053E7B5EBF57CE3A6E874 +:107160007D717D2FEF915A709F1A7D6D12FAFE1D71 +:1071700073F73094B326A6D7FBEF18F8FAFD193C45 +:10718000DEC3D278BB51D87592EF1B2A4CBAEFBB45 +:107190009E65E78C087FD95E3B96B15185B1E5C607 +:1071A000544F4250A1F3E5098779B9B993CE874589 +:1071B0003EF454C1E7F09CEC98DA1AC58F47165399 +:1071C0003DA68FB5FB95DF678AB6435A2B62E4650F +:1071D00054A65E505E86CC1B6F40794DF9E03C2E84 +:1071E0007D5DE4FC380FE5778312EF427B5CC6F1EE +:1071F000BF68E6F78D1AFEC8F59C8CEB7F5E65F7DD +:107200001BA07C5BD41B12CD46B45F6725DD38051F +:10721000CB9BD42E9AE72B4337E987FD89BEB12853 +:107220008EBF687EDD8E68D85055B4156C2AF6D8AE +:10723000D3C76659FBD3A9A0C84F7CEF8F989F771F +:10724000E539D807D54FCDF2803FF6F973DDB3F1BC +:10725000EED1D1A74FCD32C27E3FBFAF7B1BD63F11 +:107260007AFA2FBCBEA57B401CD5CFCC3202FC3EA7 +:107270005F2BC6F39F998579509F3FC0EBCF42BBF0 +:107280009FE4497008EE774A739C0BE308321ED5E1 +:10729000603840253ADA2887245F7C39E4AFB3AF01 +:1072A000233BB2FB2294074DF1415326F2FB6E2E95 +:1072B0001F97AFAA4AAC62487FFC7C34384211FA6F +:1072C000DC4372D30263C5031D1C147E44B47E6785 +:1072D000F9B01E77643DBB85FC8A5ED7E98ADADDAA +:1072E00015C5F8FDC4F7E97EF2B9919EDD15FCFCE9 +:1072F000E9057CBE649AE23703BCD86B818B84DDE0 +:10730000407EF346833E4F7EB79073B23C51594B5B +:10731000E334AC1C42797B30DE6B3F64BCC551E387 +:1073200049782E10F084F1BBB0FD9F1D5FCA2D3946 +:107330005EC9480E17CDFA3FFD21E3FF7AA47EFD1A +:10734000D23E95FB18863618E0B96A14E3F814EBC0 +:1073500091CF5B9560FAD518EF7A5EA5F8556BFA78 +:107360000746FC1E017BDFC6EDE038CE7749959CD1 +:107370004E5A6F73515CCDFF12BF77DF9A7E551660 +:10738000DA7B9F3C766D2AC5A184FDF849C79B66D0 +:10739000CCDF5B11E2F7EC9B42FCDEFD8A3D1DE693 +:1073A000F198E70365B5266EB12CF23D1F23E6E1A7 +:1073B000CB7524551A84BCE371939398B793DF532C +:1073C0008EF4AF0CC7BF69DFC3C5FE3EF778322A23 +:1073D000357890CFE5BDA91E767C25D7AF6730F90B +:1073E000A93832DE650AC75F433CD7C7F34AEC567B +:1073F00027E0ABE4786DB51DE077ED56FE1DA3EEFA +:10740000F23183B5F3C9F722F1E2EEDEE3C5FB7892 +:10741000BC58CEE712EB6C48E95C05C6069BBBAFD7 +:10742000EF36EB48D0FBF7B370BE34C6656B2CB2B9 +:107430005E307B6C25C62355AA8FDB77E936BCC747 +:107440007658DC5F98553A2C1EE55D574E82C10197 +:1074500072B0AEBC716E653A3E1F391E9F5759EC33 +:107460001735F2783ED15F5D79ED28DC07F6C73835 +:1074700053C34AD34294AF5FF8E3281EE91D9EE050 +:10748000C578DE61031BCB34F7682A05BEE6567269 +:107490007A93F3CB79611E92D3DEBBFB515CCC5B5C +:1074A0005ED558991E99D75BEE9DA29D17B6399C63 +:1074B000BE8F1B63FE68FC4D14F3378AF96B2B817A +:1074C000FE34FA69FAD8045DFDCA49A9CCA38D4BF4 +:1074D0005FD94F57AF6BC8D5F5BF66FE505DFB64F3 +:1074E0004BA75B6B9F48BC5DA81F351EF83E09E0AB +:1074F000D2D9C186ED413ECCB1D339C9D24D9753D3 +:107500009C3B29544FE5B2F6CBE95345CB4357504A +:107510007D85F8AEE6E47EB3D6A1DD7238BE93E297 +:10752000B0877F974CFEE32B6AF0A207713C8B9DDE +:10753000F87AF26F26503EDD8A3D6B7F45F13F675A +:107540004211C66B27ABECB082F984A1383E9EFA9B +:1075500007F74A80EBC46AAE3727A30E87F61611E9 +:107560006F8CC5379B05DF98BAF8BAC785A6E9BE08 +:107570003F7A67E520DDBD4853FA4E23D9D7623FF5 +:10758000A62E85CA1F858652D9B4679A11CF955FFA +:10759000C8FB791AEA0FE84FDFC708CB25C937CDFA +:1075A000A549DFF57D028B903FF5E25CBAC1E37936 +:1075B00018E96BCAEA2E23C67B98CDEC403F754A8A +:1075C0005941D642CD382D1D339993CE6B9919F57B +:1075D000723D945A79E58DBA7725CB472B659E305D +:1075E0009757528EB3439FD139D56C19D716F4B142 +:1075F00055F497EF77A20C45BCFD969F57DDE0F15F +:10760000EEC7F57656B1BAC7497E740E40FFE35F08 +:10761000B57EC0AF15F19F68E4F32696E5ECC07B1C +:107620005D07C37297D3E9F9F6B14BECE31595F911 +:10763000903E5E193DBAD303E375DC5A54847291CF +:1076400039BACF21DD35EDAFC845FFFDD54A7E8F74 +:10765000B7693FCF276FDA6FA17CF2C9A9DD1F7030 +:10766000FF24CE89FE09BE8774FC393462FCFED249 +:107670002AEFAB088FA6FD1F15A1BEF3ECFBEAE4D1 +:10768000AD6ECCD2B5D37D95D3159ED7B03DD63A4D +:10769000CFC78F3DE9CB427C79DAC9C7F76EE27C70 +:1076A000E815FCD828E877AEE047C9CF26A4BB226E +:1076B000A43F4E77CB42C9BCBF80F39C3C7E7F6E1B +:1076C000792887DE977C3C77B572D156E44FA39D2D +:1076D000EEFDCC15FC20F974452855C7A7926F77AD +:1076E0007BBCEAC8620DDFB600BF275E089DFCCDFB +:1076F00088F917A64AC584746281B25AC3DFB502FD +:10770000EF8DF3B97FD208F4A13D8FB78ED4EBE7AC +:10771000F3D1C959A91F6CC121785FCC0476247EAE +:1077200097A721DD49F2EBBACD0A7D74EC3A13D765 +:10773000ABD73DC0BFFF8FFA16EDF792E3CD66EDF4 +:107740007D8D99A1E1CC09F0B9223498CAEE726F0F +:1077500006C2A1317495C0CBF00B3A2F3CD35C9A92 +:107760008976CD9923266A2FF6F0F89C2960716DF1 +:10777000CFC1F89C5745BC7DD89F39EED1C4E730C6 +:10778000DE87713F794E28E375963483EEDCF2ACE8 +:10779000B17D00DADB3DE27655DCFEFA74A789E7BD +:1077A000A177FCA104EFD97E9CE3A1F89DA9D4EBBD +:1077B000C2FD2C991EF8B509E3EDED4F1C2B734665 +:1077C000E0D930864D24BFE78081E4FEAE36B52691 +:1077D000C0F578C2344DBE92B42B9E67DC1E917406 +:1077E000BA24944BF091FA46CAEF27D76491132D2F +:1077F000E5782C3D14CD2F522F9D6E7E633CAEEB71 +:10780000F41E858E42257D47F490427C05428AE82D +:107810003CA27F389D4BB93D19E3428087C949039B +:1078200029EE26E578B47EAAF865EE9EA79C9847D7 +:107830003EAB16E71D3D54A13BD1CB1EEFE3F6F660 +:1078400022A7A5BE96F090F07941D4FB7A3C4B4636 +:107850005E909E88233BD7E29FC648CE42A995B34F +:10786000A628BB563E6F1AF9FDF4C42CC16772DD21 +:10787000729D9DF27BE062FD2F326E7FC8796EF0C3 +:107880004CDF30329DEB0D9CFF8E915C4FFFABF6D1 +:10789000154B7FDC11DEDF85E90FDF48BDBF24F724 +:1078A00021F77544ECF742F54B60E43FA75FC887CA +:1078B00041F91B9744719851CF969FB9D5897AC6E3 +:1078C00062443BE3734F7560A4669D725D729D2FA9 +:1078D0008975831E7A78A4065FF2F93FAB9724BFBF +:1078E00046F35B34FF46F36DB4BD28F9269A3F2575 +:1078F0005F4B3E9D7807B747592EB74725DF1E8E51 +:10790000E7F0397C6932C5AD57ECE1716C664B0A22 +:1079100068ED49A9FF26AB3B7E8CF7DE267F9EE60D +:107920006A61117D28F99679BC6F229CC63CFACD1C +:10793000136FB108BF9E9F3EFFC7447A6B9942F612 +:107940008D054AADDEF2C6E0BB93DF93EF8E8C0C63 +:10795000DB35DC2E4B32935D763EFAEBFEF7D15FE2 +:1079600037D25F2C3BFCACE06FA0BFB3C4F7FF3253 +:107970003BE80D377EC7F9B41BECA09C081D4D7C7D +:1079800011E8C41DA193307D98FB0B79CDE5F8C4B7 +:107990006F795E9E57C401243DBFE5F1F619551C71 +:1079A000A187C3F1FE7CB46B2ED4BEAD4F6B6618BD +:1079B00087F342A9954F16F11DF168FC0F18F5FDEC +:1079C000F06F1BF5FDECDAE1A3FE69BBB67CD47762 +:1079D000D8B5CC11AF8B17B84CAE24CC8B71BDA4ED +:1079E00022C662E253DDCAE11D865BD028ED8354D6 +:1079F000B40F804E468CFA2174C26AB330CE4FBFAA +:107A00004B40E737DD73101F075559E7718A0EACFD +:107A1000F765AC6654F73BEB3571CBBB457C64BF77 +:107A20008873617C67772FFA3A389AC7770E7EF3AE +:107A3000F1A3BFC1F8D34033D90D008173DD0087B6 +:107A4000F7FA9B29BF47F6EF1868F6E13E3B2C6B2F +:107A5000B21668F8E4E0C08C7398CF7A3093FF2EAA +:107A6000DBC15B8BE87D7F13BF3FBC7FC0075B4AF8 +:107A7000A1BE7F858A5F128DE8BB653C7FC994B645 +:107A8000CBBE40B3BE834D45954E8DFE3D2BFCFFD6 +:107A900013D937D2EFD9740C5CD589BF0FE7CFE487 +:107AA000BF4767F95B8303EF2157ABFC7BA02B0536 +:107AB0007D9D0C5DD3D909FD5A6D83F0E4059E735D +:107AC0003E6ECDBECA4AF777D30C8437937D96C3FA +:107AD000ACD98F27CDC8D795A3FF5E5E6814B717C2 +:107AE0000E8DE2DF8D3CA03A68DFB00E07C603E6DC +:107AF0007CD370BC13E6310D2871E2F9C1A951B9EC +:107B0000D4FF1D83A312EDD46AB5AB8869F4DA4CB7 +:107B100083D05F51F9D9F21E9C26BFD44A790CE775 +:107B2000C99B8ECE6FC53F252392470ABA6538960A +:107B3000F70838203FE3F71964FEF46161F78054D9 +:107B40001C8BCF651EB2CC9336F5672BA6139DF127 +:107B5000FCF8801847CE23F34CEB45DE73387F38B2 +:107B6000D33C7C2FE0BFCB66A67B98F2B99CAF5E7E +:107B7000CC172BCF58AE63D7289E17DE721B8F779A +:107B8000750D70D2B904FE69F38B653E71D700B6EE +:107B900082F2AEC57CADE2BCCF62FBDD4D783E1318 +:107BA000CE2B5E579185FAB155C609968B3C2E8037 +:107BB0008F394393679D66A63CEB7A783F67B8465A +:107BC0002E7ECF3CE41EF9C1517569DF48FAF0A062 +:107BD0006C4847BACF584D7C956925BADFFFF52D23 +:107BE000C7310FF89D0C2BC9CD309F666655E2EF6B +:107BF0001A7634A5AEEED6F0C9FEAFF7BD84F70F06 +:107C0000FC19C622E4CB51DF9C1B86BFFBD19199A6 +:107C100046FD47ADF9E49327D18FFE269EBE2FB5D2 +:107C2000FFEB114E949BAAA18BE403FB3A9EE8BCA8 +:107C30003AA92ECBA9E18B13820E02659E3751DE45 +:107C4000AA1940FFB6881C5333AEF222BFB6F42700 +:107C500036C4DF4BA578738BC0871CE794E0AF5325 +:107C6000A344DCD9E8A4FB3207544ED7FE8DFC1E9A +:107C7000B4297DAF5D1B9F3A23FA77242471F9D490 +:107C8000947A0EF7D998ED352B4E6D3FFE5D6A8BD9 +:107C90003589F8BBC332DA8BFCDB68BBCA447A0790 +:107CA000E69B81F27B14FF4E564B32B707DE31D490 +:107CB0003A118F2F96792B47C3F3F74C7CDD1E4783 +:107CC000A71DF3A03DAB529331DF6494903F1D0399 +:107CD0008D3E6D1CD526E4AC6DB441E0F146C29BEF +:107CE000C46387E559C28B29E34ACA6B1F85F21822 +:107CF000F1B026C185EBEFC8B4125D7664F2EF4CAB +:107D00007734A91C1E4956B20F4191115D8CCA34BB +:107D100092BC3E35CAA98B0B4AFC1E509B8F7379CF +:107D20006525BBE2C4B2D47388179329C981FB7F50 +:107D3000C7D05D8CF2E1D4A814DABF6AA8CD621A6C +:107D40007FE19A88BCCA6225DF29AFCC1772CFE3E6 +:107D50007CF2CA823F050CFC9927E0773E39857F8B +:107D6000A6925EE4909073D1F2267CCFE2DFC4BF8E +:107D7000D744F1AF7C2EF59984EB97E13AFF7D2152 +:107D80009937F39EB05BFDFD19C9A3FA6C0FDD3F77 +:107D900066EBB30E69CFDB4D280FA1DFC67BD500A4 +:107DA000FA1DF2DC7D63DA784715D0C5C6767E0F02 +:107DB00018FEDA300F6E9E786FA17BE54538DEF64F +:107DC000D13C8EECFDD0311EBF837E327B7AED5AE2 +:107DD000CCE7C93632A4BF67FFC1BF7355D9DD599F +:107DE0009D847CE5E7E73261BFE053237D37A291B4 +:107DF00039281FF29D445F0DBEDFF23345ECA3F935 +:107E0000F75EA4F79FF1EF1FB6DC604FC4B853458F +:107E1000FFD726A35D50715F3AD96327597327AE08 +:107E2000D7DFA6127D823D7EA80FEE5F4926B9F30B +:107E3000BCA9F325FC0EF3F337A4A2A5C9161AD9E1 +:107E40002103E6A308BEAA17F91908172B3C9F05C2 +:107E5000F8C5DF09047CB3BE8574CE4CF6EB610334 +:107E6000506621DA8F9C1EAE13EFC37856CC4F6458 +:107E7000EABE628CA34B39654C76937DFAD9DE0558 +:107E800025C89FA6F42BBDB8BFCFF72D2D4138DCF8 +:107E9000369ACB95CD6D77D3EF1358F6AEF5E37EDA +:107EA000E4F7C09B36F1EF0ACBDF49B588EF2C9E93 +:107EB0006FDC4D72DCF6F0EFAF7EF7B85BF5F914CE +:107EC0002D0FC459F1FB16F3EF8D7A2EFC9CE8DFE1 +:107ED000AFAA6FD3D71F1D6DD07D472296DD1A9DA7 +:107EE000AFF0E0685BAFF90AB1DE97F90A8F0A3E9E +:107EF000616F479DE335DFE440397B1AE891EBFB86 +:107F0000662BD64FE23D3EA5E7785D6B18DDDB982A +:107F100089E369E20A92CF0E0ABF03EFBDA05DFCC0 +:107F2000ACD9B90AE5EBB3F1FD153FC9D35DA9F4AE +:107F3000BB0A62FFCF867F9FC0557905E88767C57A +:107F40007DA1A7103FB0DEA73F2DA4DFBDDD1F2A16 +:107F5000AC9CABB58BD5AE474B494E1BE85C17BF0D +:107F60008FF0442F70982AF4925CA7B4DFA57CB8F8 +:107F700047AC5BD26BF4FB6F08F9D8B5C6C74E6946 +:107F8000BEFFEC157E983C4FB5A439757C3BBD62B5 +:107F9000CC2BA8CF245FB08333590EDDD729223FE5 +:107FA000E50DC117C0BBE3311EC0B2F4DFC1FCAAAE +:107FB000421F3FBB272CC7BE9FFFF25505F82F1A63 +:107FC0007BFF2EB1FFF0BACE410DE8411571E606F8 +:107FD0003C1F053E3D23F033DE6EA0EF8C4CBC3FD2 +:107FE000F830E993EBE30A519FD458F8EF4D60DE87 +:107FF000F4751AB89D19CDED958977727D3DB185DF +:108000009738CE765BA4BD610C7F4FD6E53EE5FA8E +:10801000BEAA10F7B762E4037FDFF2FF01F8B243B4 +:10802000C9008000000000001F8B08000000000055 +:10803000000BAD590D7014C7957EB3B3B33BFADD99 +:1080400045124820C0BBFC1829081884004988F252 +:10805000E80F8B04C9AB5018E1D33913B09110C6A7 +:10806000ACE11C1157EE76B000AB08E5921D97A36A +:108070004A1467AC02479538CE92E09412637B2194 +:10808000FE11C121722EA9E22AF6B10E1803964103 +:10809000962F855D47A2BCD73D236DAF2C1CAE4EFD +:1080A00014D57AF35E77BF9FEFBD7EDDAAAF8EFE5B +:1080B0008F3A052057570DF77480BB4B016006FEC1 +:1080C00087144B77037CE5DBF86B39D1A0830AF08A +:1080D0007BD9A153E33545C8FFCE18DF247E6D85DB +:1080E000CF9E0FBA04E3F2D3746FFC50117DEE0201 +:1080F000588E831177871625D025486724D0A54947 +:10810000740F97CF74C7C19F4EDF2DF6BD1ED79752 +:108110008A8976D61B5E33A504A0E198E43F180057 +:10812000B8A7E29A0770DFFAEAF81BF9686761CC32 +:108130006FA4A7E0F76312D3B32C9667996EAE3E97 +:108140004C037800F88F372AE9720ED2A5923527B2 +:1081500008304A3F778C8F65BA8BEB45F3A6F2392E +:108160006E713E784A6E6D3EACB0E7CF61F363DE70 +:108170005BD87F6305E856FA44B93B1DB91B483B01 +:10818000EBA3CFD6A37D56D144F9BB481ED71B74B1 +:10819000B97600FA6B63ACC85257635C81E36253F3 +:1081A0006CA161167175F5247B6FA6EF6A7BDD44C7 +:1081B0007B03E2FCD8CDFC553D61BE8D8B5611276B +:1081C000B515A33AE4D088B8C0751E0CA51C021FD3 +:1081D000C5DFC6B5B9C2D091379802633815706D46 +:1081E000AE346AD08F0F82235F66E948875C63F202 +:1081F0001CE7C7A5B1F905881F1FF0F9BB63A516D9 +:10820000F907E3C1F88C76DF04E7D124BA22292FDD +:108210006C5CB3BC2CA1BC90ACF9D244FF3C6EC7E3 +:10822000F923099AA2B8FF60157C2D44E31C3EBED9 +:1082300040D9887E7BDA967BC689736A821F668EF8 +:10824000C7197F625020D8CDFCB429C7B17BA3B138 +:108250006E1ECECF824512E2A44F5F6FED9B45F3B9 +:10826000436ED030176083F516D6934DB65F5ED05F +:10827000EF8E9B2C6F41A23CDBC10080713F2699A1 +:1082800032DAB583E2FE39763D32113766D27C5D53 +:10829000B9C97C73E27C3D693E2839B732DF8ECBA9 +:1082A000BAA4B8D525C5AD26896E76684BA85B4EB5 +:1082B0003DDBD41A3C908F7AB43D2FF949AABE3ADF +:1082C000EA919602FC266618E96584CF80928F9C1D +:1082D00037639BE32A62B791EA17C3EB164BC738A3 +:1082E000ACA7FC66F47D86BE84F012DE9F87F2BFE9 +:1082F0008BDD6FA99807F7EC7B4201A4DF8EB558A0 +:108300006E8CD7A6929FBD41EBB9F76E8BAF936E83 +:1083100082CFAE243B7A92683349FEA92FA8E3FBB3 +:1083200092E67F2B897F2889EE4EA23B93F3C3BF51 +:10833000661AD5FB7D121C842FCE93F3763C7F2FDB +:10834000474B54B4FFC3D837ACFD79788E75709C19 +:108350007FA4B71B89385580FFFC4B0E98741E28EC +:1083600093D4A77393E1A420F9DCE2FC9AB4BFFD97 +:108370006210D7DBDAE5F57B11871752408B216D50 +:10838000FE49D68EA0D408E2349BCE3535E0A37DDD +:108390002F9C5A0607D19E1D03F27BDE4C80D79E90 +:1083A000F0323BEF3F265B5E163F3DBD1EF56DB5DF +:1083B00071BDED29C9F42E463ADCB20E16339ACDC2 +:1083C000DBFA0EF7CFD6A8640570DE364BF94B5CAE +:1083D000E5368E92DB80F35B8E4B560CF92DDD2259 +:1083E0007F4754A477C2A18FE5C534BAFF122FB0DE +:1083F000BFA37FCED12F98FF7BDEF978D16B09F236 +:10840000005A1EF9634A6546CEC5854482364AB590 +:10841000576EF6199F737E39E3F5C8F0A2D7E603CD +:10842000A4839E5B49FEFD56361E82009BDDA0475D +:10843000C9AFEED8D48DA877C7A9EC62C2C1AB2E64 +:10844000504BB368BFBD36CEB8FC50C40058007066 +:1084500035D2CAC6F2634FC8F9E8AF6BD27B8FAF93 +:10846000C2F9C31FB9B45E20B9301607941B2AA9FC +:10847000081491FC1E46033C6AE38EE7F1EA632789 +:10848000E47CA4AEF69F4F23FDC19FEAA2737CB7A4 +:108490006DF327619C84F1FB64C86D4190BE201F81 +:1084A000E3B4DB6F030BB4DC76E4BF7A4601EA5732 +:1084B0001CBF5DF9264694F6BB81DEC1F556D9EBAB +:1084C000B574CB602C0338F193ECE3E58497349FCB +:1084D0001FDD0257FA64B6CF25D5F7DC3ADCE75248 +:1084E000CFFA69807973BF32ECD1502FEDE5C64CDD +:1084F0001DED781FE562CC5F964C7D51791DACA7D0 +:1085000079E531370470DEFB6E4DA2F85FBD80085F +:108510000E527EB8EBA84FB8FF5732CFAB13EE67C1 +:10852000E707C7F5AA2EB5CDB0FD1BAEE4E7CB0734 +:108530003DBF6820F9CB87153FE973F5B0C2E6B7B8 +:10854000215E5D88AB4B7D12C37BDB1F658D8EE2A8 +:10855000CB7D12E7232E55C2F9438AEEF14DC47547 +:10856000B52387F824DC3BF86ED3AD354076D97857 +:1085700056F1DF28F65153207AC08FFA6FEFFBBF18 +:10858000E13819BFAD84DB34FCA5188A09B723E1B3 +:108590000DBE5882FD93E17628020C6FCEF7EC6396 +:1085A00041291FC6EB8159050561D4BFC303056E80 +:1085B0008AAB2B553B42FBAB998BA9B9B89EC2C77E +:1085C0007697FF75C2513B9E07D4DF5CAD0C327FBE +:1085D0005F7769B544C3BC902EE1FC785950A33C49 +:1085E00090AB5DE128AF672AE16ED0F663483D3479 +:1085F000988DF6FEB4D2E92381E172979FF36BE583 +:1086000074E6E79126F433AEEB360BBF5B41F56FB2 +:1086100040018BE6E317DB7FD228AB3F011FC98700 +:10862000066438487AE80AE30740DD4B71D84075A4 +:108630000BF7F3E6B92090E0CF94402A040AC6E98C +:108640003F41C84775A7C3B6170FE0C179A8579334 +:10865000AD775A419620DF94BE95C53F439B21AC30 +:108660000B867281EF1F603868A06F39D4DFF2BAD1 +:10867000B6A109F909EB28151FD79019211B078806 +:10868000E43C3A77940ABE8E23179AB9E6326432F4 +:10869000FB2FDC0C270BAAECFA56088584930E8975 +:1086A000EF6F4E05EB08AB0361A0F51D3CBC5829EC +:1086B000B138745405D8282FC3B8216EE30ACC5EB4 +:1086C000CAE2E79F45F28D69597F0D608C4E549E3A +:1086D00063F7B5C655590FCFC57EEB54E5FB861B36 +:1086E000F1D7B82CEBC539489F3E719ED34BB2965B +:1086F0002B48EF952E1A35480F56EAAF52FDECA8DD +:10870000F23BE7275B17BF9FA4EFDF5F61BC4EE33F +:108710004E4F7AA7847DC4B5DB8767D37DC1918F27 +:10872000BF9C3F0B91324EA37E5A11D1C0703CD9F1 +:1087300078BD523F53F939DF77A4619C719F5D2F5B +:10874000BE9B19C075B7919FD02EC84B67787CD857 +:10875000F6E95043ECF618FAED8308E4CCC37C0A42 +:10876000BA8C3FD37A03C1376753DDFDA0A72393AB +:10877000EAE1472FC8DA3A947F40068EFB1B72EC81 +:108780000EFC5E3767412FE172E8E86333BF8EFA73 +:108790009EB7713F14E4FDF2D051AF2DB7E9B02C74 +:1087A000B173E602AD3F76BE1CDEC0F45A9B8EE785 +:1087B0000A9ECBBF59C9E3E575839991C546C8C4E4 +:1087C000EF0A8E32BB8F5A63FC4C3A87025BF27819 +:1087D0001F83D0C1BA79978DE7BBDCB11312E14D8D +:1087E000F3B9C9DE066E2EF14D37AEE3524121FBDF +:1087F0000AA1C74F7507B5EE19CD66F9A9C530DFD7 +:108800007661BF40C7C42EF21BD14725CB0C529FC7 +:10881000A0B0F3FE03BB7E24D7D19D309849716D83 +:10882000EDD9C2F2C7A99B63F9E277FFBFD4CBCCE5 +:108830002ABB5E2E85A5B778CEE75425F8BF566EC5 +:108840000EB8C9BEA905C5BCDFE1F5AA2585DBE3E5 +:10885000C463D70FE6E6B273A0D4CBFAB7165B17A2 +:10886000E8C966F13B109481FA82FAFE7C08E0A721 +:108870006DFD1204F03C5DD79FCDE8CC4FA733BA15 +:10888000FE47B95594E763FDFA8F1630FAF273A7E5 +:108890004B8CA271FF8FFC91FB1F92EA279EA6DFF3 +:1088A000AD40FEDD76BD1C011E9F113D8DC5C7B1DB +:1088B00073BF5DE77CA5625D9CA28B7531BB4EAC3E +:1088C0007B534362BDCB6D9A23F0A71B5F12F8F96F +:1088D000ADC5023D2B5C2EC8DFB6A74AA083E69744 +:1088E00005F9B99D5F15E8F95DF708F20BBA370B8A +:1088F000FC42AB4DE02FECDB25D08BA28F08F24B76 +:10890000FA1F15F84B630705FEB28127057AF9E0D7 +:10891000F704F995677B057E59FCC7027FD5A59FB3 +:108920000BF4EAE15F0BF2777C7A52A02BE1B420E2 +:108930005FADFEA740D7FAFF2CC8DF99775EE0AFA6 +:108940000D7C28F0BF52F08940D76BFF2BC88716EB +:1089500040868EF9F1F44AE31B555497E521379D83 +:10896000174DF74A908D78191958EF27DC7D51FE85 +:1089700024E7DF7F249D437F85F47B5DF4BE84651F +:1089800008E64E9E7F2135E0A177A8CDE69B67598A +:108990007DA24FD3C6EBD666353DC6CEC94E6568BF +:1089A0002CFF517E421DB3EB5B21ECF35F54C7EB10 +:1089B000D764FA53E65C74D6437DAF29780E617EA6 +:1089C000483ADA86792BE1E1D78C75513AFEE667B1 +:1089D0004CAF6734559D4BD2CD7EB25302C335BAEE +:1089E00090F2731D48946F5189E5E764EBF8B07F0E +:1089F0007527C4618AAE823BC17FD9757E819E1A7C +:108A0000CA13E4739B02027FBA5120F0F35B3581F5 +:108A10009E152E15E46FDBA30B74D0AC13E4E77640 +:108A200086047A7E579320BFA0DB10F88556ABC032 +:108A30005FD81716E845D13D82FC927E53E02F8D1A +:108A4000750AFC65035D02BD7CB05B905F79D61250 +:108A5000F865F13E81BFEA5254A0570FF70BF27749 +:108A60007C1A13E84A3825C857AB6F0B74ADFFBFAB +:108A700004F93BF3DE13F86B039705FE031F6A311D +:108A8000CA237849D28E04280F3F16F84A0EF6DB27 +:108A9000F47E04A91A9DFBC9FDB683B37AED336158 +:108AA0009F765798BDA3B6CB104F41FCDDA89AE343 +:108AB000F4E1AA2A7339DA57A98367A9EFF099126A +:108AC000C31D1DC5CD593613FB0076C4A05E3ECA3A +:108AD0001324B25C4193585955A075E0F7B4F1BC2A +:108AE0009939BAEC9FCF9B547AEFC4F3B3B4DA1838 +:108AF000A57AD2163DBA86EE1BAD6A17CBEB5AB9F2 +:108B0000C817C77A722685BF0F26AFB756453F26CE +:108B1000EC772AA56B66F14DEACE5A7588C98FAD00 +:108B2000ABF07525346657C2FA8FE33DC88D57C147 +:108B3000AE08E619D69927237E463F15C963F4D3BC +:108B400091001BBB23056CFC5E4463FC9E4829A37B +:108B50009F89E88CB622756CEC8D84D8F7C391267A +:108B6000463F87F77B1AFBF07E4FE38FF11E4FFCE9 +:108B7000E7F1FE4EF40B11938DD14827FBFEF3482D +:108B800017A38F45BA19FDCB88C5C6FE481F1B7FAA +:108B90001D8932FEF1483FA35F89C4181D8B0C303C +:108BA000FA646490D1AF45CE32FA8D489C8D039122 +:108BB0004B6CFC6D6498F1DF8A7CCAE82117B452D3 +:108BC0003FB3A29AF72B20A7EBECDE54B5A097F0A9 +:108BD000E77C7F6895B1A21AC7410FF453DD7A3460 +:108BE0006DB1C2EA7F529D4B8EC3157B7D05FBEBB9 +:108BF000125C5799717B6F07E26F2F5DBA11577B3B +:108C0000B302BD7417A9B4F7792C15CC14D6AFF202 +:108C1000BEB4C5C623E4F03ABED586728B9D07CBA1 +:108C2000098F050C8F6FDD4A1D77EEB9C3654623AA +:108C3000D9B5353DECE16D9C763BF5C5F55EFE7E24 +:108C4000337C4AD67A0393AFBBB36B2D16E59BF00A +:108C50005FB93C93CEC7BABFCB06F9E18C92D14441 +:108C6000EF175B6C7BB754BB84F191F2D0E66AD40A +:108C7000ABE5956FB273B1F9A1F93EF2F35DF4F48F +:108C80008779DD080185FDBD04F4D783746FC48B3B +:108C900025D11BC164635399B19DE66FC2069AE862 +:108CA000B804CFED96C81E8EFF643D7657F377F873 +:108CB000DDD52E61EC2E0FEDA675EE2BBFF35E1702 +:108CC0007E7A7155807D6F80E167488F9DB38D738B +:108CD000F973C7DF099A6190E9074EDFA982736FC4 +:108CE00067EF07CD52AA46F7F60395FCDDC67C3741 +:108CF000C53A825BBF63D7B591B0C2F0D0FC6E8637 +:108D0000856042FAE1255417FE15EF2B9EE2F13AF9 +:108D1000D88CB4AB98F6AB53A6E23ACDA5B2464F89 +:108D2000A54E7D4479F0603DFBF7D220D3B7192FD3 +:108D30001AFCFE03EC1DE26BC7BDACFE9D2E33BAE0 +:108D400028EE6D65B2E9C1FB5E5B16560954ED3144 +:108D5000178FBBF95B99D567B79FBF5F6CED99B271 +:108D6000540E707C342E02386BC7CB89FF839D383C +:108D700026D427C4550FF9EFEAAF561650FC77BE3C +:108D80005216A03876D0FA39E3EB935EE40FD95748 +:108D9000F4EC411E27E69FE1B20CAB17F53C21C372 +:108DA0009EA39F530F4FDA713B93A7B0F7B00E3BD2 +:108DB000CF1CFE4BB67E2FD938AB3F796A563BAEFF +:108DC000FBE080A2D1FB2E94C48B12EFFB6378DD15 +:108DD000737AFABC043B76F6BFB74667F7FD78D1E5 +:108DE0005733B8BA14DFFD765E3AFB28D47FD1E161 +:108DF00091E31E1ABB97CD213FF1BAEFE04EF66426 +:108E000018CFA627DAC1F186B83FC1709FB987E1B4 +:108E10007E24FCFEBF5152C7D185F43E62FCD0EFE8 +:108E2000217C6D068D8DF741888D2D080F8ADB36EC +:108E3000B0D8B81DE20796A17CC8FCFA6CC2CF4E30 +:108E400018AEC9433F6EE8DCFB7A1EAAB2BEEB89BE +:108E5000DAE9A8F7DD3D4165068E8D871FDA4F7F81 +:108E60003EC2BCF903E1E19EE72BF7D3FB2BE6CD35 +:108E700045BA1735D8F776C49D2E23AEE44C557706 +:108E800061FCEE7B92D7C7B3B67FBBCBF5B3A47FB3 +:108E9000F3A31C67C32F7B59FCC6F2A674FBB97CF5 +:108EA00017F57DC0FE1E78EDE5426B2FF2DBA8EFD3 +:108EB0009513FB40E73CE67DC076EC0308AF571402 +:108EC0008E8B2B9837543FAF48B84EF1C4FEC0E9A3 +:108ED0002BDBE530EBA7AFBBD01499EE99DF61FE39 +:108EE0006A55ADC5E4173C8747C85E8887D83DB64C +:108EF0002D57E5FB4C310E2DA57D7E2AB1BC4AA82D +:108F0000EF309A464588AFFBB8C2DF6392F54ED684 +:108F1000C7EB0153A5FEB8F48DCFA89F30ABB81DA9 +:108F2000E67F733BDA65236F85CCFB145A17CF8934 +:108F300018F5C98A4BB5D81B55D2FEFB26D957F276 +:108F4000F3F507FEC6DF9DCD59C0EA4BB23EC9FB23 +:108F50007B53B97ECEB9D32EF37838FAE4D7F0F745 +:108F60004C98AD33BB0782B9057E5CBFC1F325D6F3 +:108F70009FA5C8C68C1A8CEFDB29FCDDC879277247 +:108F8000EEDD70A36326FFFB508CF557CE3D0492B7 +:108F9000DE5D42AA5FA1B834387954AA087934F664 +:108FA0002E5321DE67D6D3793097EE33EF387E1219 +:108FB000EE33FF00A0DAF00F5021000000000000A7 +:108FC0001F8B080000000000000B3BCBC6C0F0A3C5 +:108FD0001E8159D851F9E8381D4D7E03337EF58442 +:108FE000F06AA0FE6540BC1088E700F174209E0482 +:108FF000C4BD40DC01C4AB5981F240BC1088E7001D +:10900000F174209E04C4BD40DCC18A30C706E80F5D +:109010005736FC76DD67C51473E344B0B713F0FB35 +:10902000281EFEF8183703C32E1E045F971755FE3F +:10903000383782CD2148995DE240FD00D6F21663B3 +:1090400080030000000000001F8B080000000000EB +:10905000000BDD7D097855D5B5F03EC39DEF4D4E33 +:10906000466E2638198020012E2160D0580F834883 +:1090700029AD1747B4BE7A9934CC91A252EB7BB993 +:109080001908A3362A58046A2FA9E2041A1595B6BE +:1090900081770954430B7DC1A245AB6DD4FE3EAC34 +:1090A0000A11ABD83E5FFDD75A7B9FDC7B4E06B0E2 +:1090B000EDFBBFFF7B41BF9D7DCE3E7BEF350F7B40 +:1090C0009D13574062F2A58C7D893FD0AE71B0BD33 +:1090D000D218C6DCEE50C71C067DF89F4D64AC0963 +:1090E000DB1CF83F26AB6C02635EC67F947CF96D97 +:1090F000570A63DF72EA8C65C185603A8D77F86B39 +:1091000058042E3DF13D65766B198E0C327C6E88CD +:10911000077E85EB071FBFF68DE1158CB53416C9A8 +:109120002EE8173389B1F18CE52ECC5C5F9A0943A8 +:10913000D6CA4C81A1F58F67E776C1F33B0A43B9E4 +:109140001ACDC36496CD58A19BCFC35894617F08B4 +:10915000E3FD96C62B53991FFA1B9B3E564627E00C +:1091600032DB615199C5DD7CEF5F327C4EFD735778 +:10917000A9E817325681BF201C2C9FCF2BC61E7A20 +:10918000EB3ADAEF4F605F2ED67B1FB90B4B7E595F +:109190005A91D8B7B90FDC9F3121B1BFAFBA1F8246 +:1091A0000FF7132F20FC397AE0D6AF2B043C55067D +:1091B00065B65EA796E8B0BE367671C9508043BDED +:1091C00046C18DAC57636E0DF711358E05E1F98BF5 +:1091D00099F93C6399D0BF54D0F1D252398ACFFB70 +:1091E0004AE1F9D2C47E7AF8A296316338630DB5AC +:1091F0006E6ACDEB8D8E70300CF35F9C79F34C066C +:10920000F86EF857A30B91B83AC7A9D7234983D36F +:10921000DEC7EBBF4CBBD9DD85FBF8507DA70B60EB +:1092200028857F5F16015FA9D333707F958C5F37E8 +:10923000E176E7433F691FE359521FEE5F9AE99CCD +:1092400023C3BCCAE008ADCF3A939E87792F0D5E49 +:10925000BB5882FBEC8BA4E78A12F86CADD5088E64 +:10926000786D29B5CF415FC7FE7F9BFCCAE99B2B78 +:10927000F875C5429998634797DEC260FD66E4576A +:1092800098E78083D1F5E8AB2CF608D1ABE6C41C97 +:10929000A04BCBBAEC72A24B23A74B8BC4FEC8E009 +:1092A0007A74B5537F041E7D4E0D5D85FD96B5E93C +:1092B0007254EA4D9F716BE5E820D8FFF8468E3F67 +:1092C000E8BF3D1CE6893B981186F5B61E63B17A6E +:1092D000586FDCE7D94CCF80E7AA01FF70FF97D227 +:1092E000CB1FB8709F2B9DBA4B4AE0DB807F087F75 +:1092F000D5106D4614D67DE498CA903E76BCDBF955 +:10930000626C3CE93EF2C95ACE27BDE8B192D3A3C4 +:10931000171D36011D52FAA783D9AEAE8DB17781E4 +:109320006FEFA90D123D36D4EACC00416B42FA40F2 +:109330007B370E9DD85B7ED6C8AC1AE9B5C6CBAAE2 +:109340009F45BA5594F739CE6C19AB233D730FD2B4 +:10935000ED22DA8E014860A9993DFDB8B704D64FD9 +:10936000BE0FAA600DE23297F10D037CFEC4F8A88F +:109370000FC6DFE3E1FDDF45B71AD1FC44FF0376FA +:10938000BF11ADEA7D7F83236E48698CFD347AA3DB +:1093900051E6B1CC6FE0FCC9FB7357F59E6F83E8D3 +:1093A000FF8DFD80FA4D1268E762D16A00043C37F8 +:1093B000B592E6CD6121C676A647A2872626D63984 +:1093C000C122D128C8CD4D2CDC8EF85F23C51B945B +:1093D000425CB77536837D75E0F330AFBF8AAFD39B +:1093E000115D6734A809BCFC863546110E53FF2A6F +:1093F000825F94C79C51D4BBF58F7F66488023253C +:109400008369A8DF59453AD90F593318EA01931EE9 +:109410008AA6BE972CE73D7C21C6F74F473EAE6734 +:10942000FF8EF84119606BC75BD09F7C51E57F547C +:10943000811C383B1D21D4D72988579832E50B85EC +:109440005D548E8322B4BFE64B404742EF672874D9 +:10945000C017A995B92C96BC1F15F44B20312FAC21 +:109460007712C799F83AD7FA2AAEAFF7B1BE6AD0E9 +:10947000FA4DB8BEDE7BDD0D9ED0EC30F0F3E4D1CA +:109480009557A09E503B87CA24CFE2B9E6B1BA8C6B +:10949000FB1E2571BBE913F39B70F8C43AFE32EB57 +:1094A000BCE67C8017E62A4C3CE7EBD917E0A50226 +:1094B000E7B7E2C53E0FE02F181E3510FD5FE2F45E +:1094C0009F62A3BF719EF4FF1F9AF7139591BE5E32 +:1094D00039C91943BDEBC35BE509F84D784DF8EC8C +:1094E000703749C66FAB24A2273D67D2F3137C2E99 +:1094F0002BB17E2F3E62A12B70DDE6630EB67E801F +:1095000075CDE7EDEBAE3CAAE4B0A2DEEBDAF76B8B +:109510005FB7E8F311CC00FB7001F20EC87FFD6667 +:109520002743FAAF59C962C84F6B3A2E233FA5456E +:10953000AEE9A842FBF48A833D0253B6A03E45BB88 +:10954000FA58053DF748A026786559FFFAB415FC8E +:10955000832808DA0E6863C349CF901D0D55ABD13F +:109560004129281FDA0CF4EBA2B7C9631F6174FD0F +:109570006DB46F6B3CDA95D393AE8FC5F1783DA097 +:10958000AF477FCABC5EB4EEB8678E9FEEBF8DF367 +:1095900099EB8F8DCB2C9A649F0A9CB139E13EF6F2 +:1095A000799724137DDAD0BEB8D0DEEB64670ABCAD +:1095B0009D73101FB9839D3AD868F6A3DB5EC89DE2 +:1095C0000BCFB7DFF69AF40EACB759C857ABB04F14 +:1095D000E67C05F14E09F1D6E6605352415FD6486C +:1095E000CCA801BC17FC39F46DD4B7B5D25EE682C5 +:1095F000F52A56F27EE53DFFCE5EA63E23FDBBADCD +:10960000EE38E9D335470F36E0FA2B3F8651B05498 +:10961000951A576A08EF997DEABF273F76CF8EC12A +:10962000FDAA5D4D9D57A1BD65310BDF5CD26DA5D7 +:109630007F9B80F3390177446216F9229303F4CEBD +:1096400045F94A41F97A6D920BF1719691DEAA7251 +:10965000B7BEB108E850B592851AF4DEFBC95D6962 +:10966000953380674A323CFF2C386E62C603D2F8CD +:10967000FEE7EB6D17220FE1F82AD46F2027052BA8 +:109680003B9548D94070BFF0C62284FB0E46F6A237 +:10969000BFF9EDF0A22CE3BE61BD5D5256EFF5FEC1 +:1096A000A7F001F31E243DF60FCE5B80F326C90F11 +:1096B0007AB65C9FC455B47B897E84A17E713A5989 +:1096C00004E55AC13573F873649FF2433F415C74FB +:1096D0004A4E1AAF06DD84D76F39239D44B799CC23 +:1096E0001237BAB530437DE6CC2D4D25BAA043D50F +:1096F00087DFB6B676CB2CD591D477805EF127E0A4 +:109700007016B15806F997F3F42B4725C6E5087D86 +:1097100067F6B7F63C67DD2FCCF3E0CDD077681362 +:10972000C6A1BD3B89FBCFEABD5F80E3A494A4DF63 +:10973000552DCA70DF5B170EE3FB9FDF37FE73DC2E +:10974000DB66A91909BE2C9CCEDA553EA5817C9812 +:109750002EE6BFCF7FF204C6CBB8079C67ADD4DD41 +:1097600081F6E96E57E42CAEEB6F6C2532A74F6F94 +:10977000661180A3C9C1F5EB658ADFF30EB4CD464F +:1097800051EA5CB89E2F4B163B64B6AB412FABA0A1 +:10979000BF1E82F80DF179F6ADE1B4EFFEF81CE2E0 +:1097A000BC596A92BE6BC854A7231F35F8AF0C4F43 +:1097B00042BF2558524EB6B95A52110EAFC4E529D0 +:1097C00045AC0FF84A91813EABB36E273C39583413 +:1097D0002A491C563509EE42A3C6C0F82FBD8AC7D8 +:1097E000153AAB89A3FF91D6C8427146F00FC279F2 +:1097F000FCF9CD5115E6F74D6593117F26FCF0E39A +:109800002981FDDC7B7868F9FA24B9BD5E9639DFE1 +:1098100096F27C045343E4C7F5A72F36007ECA1C9A +:10982000441609F97C1BF693E07F438A94CA302ED4 +:10983000B3CC4B7E48663826215C0F4ACC92DF6859 +:1098400014706D18ED253E6B2CD076A09F38CEDCC1 +:10985000CF76C9CE57E364D2C761922F93AF5C4BEA +:10986000229467D8EF885C88F03BA49886CE90AFAE +:109870008CD3DF21831C525CCF3A71BE0C815B9389 +:10988000BF03257ACB7A58F77299DBAF8CCAA65BF7 +:10989000313E4BCF5409CF195D73285EF7BCF9F503 +:1098A000F7D1A980EB6FBB10AE99F138897649A842 +:1098B0000EF1DCEA885C8EEB0746ECA130359DD5D5 +:1098C000184E98F75E470DC37C8CABAAD9C0F87BC5 +:1098D00075D6CD6C4E123FCD96B9BD75E63323E6F5 +:1098E0004FD0FD3E85F3C90FAA8A3CB7F8719C970B +:1098F000F657C8E61B389F0E7109D2DF85F4D78969 +:10990000FED7217E3CD3E3B4BE2F9FB5630BFC3E54 +:1099100008F174AF43CB41FEB937CB393B5646F81B +:10992000388EFCE893052E74F807F8F1CB7CDD4205 +:10993000D941FBF2097C7800EF88D7B5DF8B33057E +:10994000D6D566B2908E7C66C38FE3AED6B88C7CDB +:1099500019662103EE3B4AF403380EF0B318F717EB +:1099600080884B05BCB8325B0DC4DBD9B72E9C8E0A +:109970007438030B23FD4D3EB4F39FEA0739B3F867 +:1099800089A6BE0D913FE7B3E9B197A4C8F7E424D7 +:10999000F976E6760423497EAFA99F59D9D5F49C80 +:1099A0002B3F1E9C07FB70078363495E558DF21A9F +:1099B0001B4D9DDF2307F5B4EE3AE1E7388335C44C +:1099C000879E9208F19B5BE77CE7CAE7FC69DE773C +:1099D000AE52F43FA27E2BE3FAAF29C4F35E4E777A +:1099E0009C215DFCCD0708AF201EA14768C508BBC0 +:1099F0003A8078E779AF27A1E5798718ADEFD2BD36 +:109A00002C9E840FE72A279F9F354B28BF396FBABA +:109A1000B8FC09FBF38614DE8AF8C8992FE4D1D488 +:109A2000F3E1ABB97D3A5E4AF03E22F266BDE59FB6 +:109A3000C37D16E6EE44BCA9112F8376E7A6B95E76 +:109A40008463E7962B5393F16B6F1F043D1127BF7F +:109A5000D74DEDB65A8D5AF3FE36CC27F951ECB9F5 +:109A60009E30AF7B142E1FC7847CEE7487BD94A7F5 +:109A70003B78FD8C1180CA92E34A0843FCBC7B5BB7 +:109A8000D3065A3F7F896CC117536E1C70BFABDE83 +:109A9000CC997528697CBB1CC87C6F24FC7221BBE7 +:109AA000F04BE5DCCF9FAD0DCE3AE4F8C7F1B25DE7 +:109AB000E4213CCAF57551C47BFC52D29F45426CEF +:109AC00073D6328AD34A204ED171EC175FF2FB3D38 +:109AD000F94FC33F07FA43B98CB39D6BE7AE4779A3 +:109AE0002B78556132F0D35021BF6C13CF47B9E1C9 +:109AF0001FE69DC8EF83798BE7B3581CC615375B0B +:109B0000F35B396CE3C7E8B714D8F25B39A80746B2 +:109B1000E37D6BBE2C1F84BDB2FC1FA7C327480783 +:109B2000DFFF7B3A6C535B3D5AD2F379120B23BFB4 +:109B3000E62DFDA33437895FDD0AE753B6CACFDED1 +:109B40004DCAEFE549F11CD49F3B96C8E41F6C0356 +:109B50003C201D5C995D4FE123677FBF2187FCABF3 +:109B6000ECF7BEA6009DB2141F9F673AE37E03B3D5 +:109B7000EA21B087590AC8852393EB991D8D579226 +:109B8000DE4149C6FCA82EE8BDED8B06C909741C50 +:109B9000BA8A85EAA1AF0B7A4FDD5473C001D78B27 +:109BA00056F2F88545ADF42F9ACFE93F7423E7AB21 +:109BB0008255D63C33E8DD7A27EC7710A8E1ADD0AA +:109BC0002BD964E58F41C21E0CB2F1870E7C900147 +:109BD0007C50D21C598FF3E71C57B88F6C5B7FA861 +:109BE000DEFA75C44F09E02946363B691E05F92B9C +:109BF000548FF4B0F3E520E4CBD1BDD7FD47F96E27 +:109C0000B26295FF4FD9AE1B1E03BC3DB27AD7B1ED +:109C100061342A2227FB4D26DFF999311DE9C4C2A0 +:109C20007DFBED09FD1A15E717F9329DFF0898260F +:109C3000AD707B315FB3DDC97E391CE3FFD714867D +:109C4000F661FB0A6F6EB25F1A13FA3CE6E1ED1C97 +:109C5000C18737290E6AE729DCDFDC9EC2F3C0FD2D +:109C6000E977D3AE967EEE67F18CE4BED3D6575932 +:109C70007C5C723F85FA8D598CECCE13A235E75F80 +:109C80001D88929D038A929D51847E3A9836CD8D8F +:109C9000E7568DFEF25446FEA14EF09BF71BFD45A4 +:109CA0008358129D1AC539447F785C8D796EF4B360 +:109CB000445EE60987114CC3F9D3A605F1BC41798E +:109CC0002C7B2CCAD7BF0ABB82BFA3B26B6CD85304 +:109CD000570FBC792F33FE4D19CF9FC3FD3E9136F0 +:109CE00081CDD1691CF967F6F5162A5EE13FAB7F9D +:109CF000B5E6EDFD1AF18BE0D7054A6423F2417415 +:109D0000328B635E2E7A018B35205FD7803F1B48F4 +:109D1000D01FC6DD2BC6917FD7332EC2FDDEA471C6 +:109D20000FE03E619C611917EE356E9B988F59D6F6 +:109D3000357AAD1B13F3C559F27CA15EF33D22C603 +:109D40004559F27C7AAFF99E30F76719A7F51AF7F3 +:109D5000B418C72CEB32EBBA3DF78739C5FD1A8A28 +:109D600053D614DCEE26BD77B2C0C257763AB5178B +:109D70004CA373B54305D33A900FBE7BD84171C352 +:109D80000171DDE43F737C432DAB5C3214E3C1E829 +:109D9000C5250E8CE75ADC286FE6F59E71FE16ADE0 +:109DA000EFEBF5B4AF3EAE6BFCBA7B403E6E107C81 +:109DB000DC20F8D87E7FBCCAE57B7529B727F6FB87 +:109DC00086CAE59DA935E41FBB4BA31797F5715EC5 +:109DD000F9FF3B9C63051CAB4BAF6C9E1C62ECCF48 +:109DE000CA5FEBDCA0CF9BF4B91AF65F657FAD9B31 +:109DF0002AFDEF8333ADD15D9F0CE7CFA2EEFAFFD2 +:109E00008D708E560759E0FC311B543FB5B07F383A +:109E1000D7D8E203B39DA8F2BCC13A474D10E3E3A3 +:109E200035050F50BCB7469CC35DD1F87A5D9D1FC8 +:109E30008744AA54587F5D9619C7E8645FCEF59CA5 +:109E400063841A46396BD241DE92D6FFADB02366E9 +:109E50007B829C3788C70A555E2451E08C0D1574AF +:109E6000BB12F4D5A78A6691CB7455E3F643F4C7C9 +:109E7000A8D6FBF00BD9150DE12FEE6D57B6F66B9A +:109E80006FBB645E07C2ED6DAA696F17EEF4A0BDEB +:109E90003DF8F8CEC3C5B0BFC6230A23FFCF66770F +:109EA0000F3C3EAD43073DB9B583EB49D32F31E7B6 +:109EB000B90FFC65CC93AF16E7CE10B85AED7A1601 +:109EC000CC8F713DF877781BF4EB20D4AF4D823FF7 +:109ED0009AFAE18FFF12FC8175145867B01AF80DD9 +:109EE000DB03D08F0C47BFDCCD2230E14FC03FC732 +:109EF000FE63B5416A9FAED5A9FD01EC07DB676B38 +:109F00004334EEA1DA4A6AEF16FEFDA47CD940FA8A +:109F10003D807E3E8CDB590BAC03B4DE54EBA6B621 +:109F2000A156A376576D90DA1FD7EA1331BFB7A5B4 +:109F3000B694DAE6DA105DDF505B49FD2AE9CA26FD +:109F400015E83709F78D79F1CDC35AD0D5CACB576B +:109F5000699DBC2560FF2A12D74D38ABA4C91BF000 +:109F6000B9625D26BFA2782318BABEC735E3B852DE +:109F70009DCF571A03FB9CD9E7B8CD386E4C268786 +:109F80006F4C1BD8FBBEE7DB8AE35233555A37B51B +:109F90008AD139611FE37E8CE3CA837CBEF20EF066 +:109FA00047FA1EF730CAD3E0209F6FF02A16EF67FA +:109FB000DDC771BEF4F4CE395487C2F4A998EFC856 +:109FC000ADD6D2311F999ED1792BBF1EAF53302E03 +:109FD000CAE7D733703CF1B1518FF18A5B17D77163 +:109FE0003C5D6F6EC7EB810A318F93CFBF79212320 +:109FF0007AA456692D6ED8C783A29F5BADEFC07E51 +:10A00000BA8BAF9735B886492097A9F9DD4C827E87 +:10A010000EF465E867386307108E82454C6E814701 +:10A020003717459984E7863A1FF720F465E867B843 +:10A0300062928CF1F4621887A27F61278D5B2DCE2E +:10A0400091722EEC3610CE40952EA168EC10E74CA4 +:10A05000B915F01CCC33BC2AD28E2AA1DAC18C6B84 +:10A06000E0FEEA5B19F9A3C7D46593B16E2053D41F +:10A07000157CA9FE7C32261AD373793E333D2F74AA +:10A080002282B515DF708EC573C88CDC5017D6AB35 +:10A09000B0195E3A07CCC80B9D8CA1FEB9C2497DB0 +:10A0A00060D9A8960EF2995A3562CE00718FD97E8A +:10A0B00072640AE50D33A6CBCC488AAFECE39C99D9 +:10A0C000D67311BDBABBCE097A7C02C203FBDA217A +:10A0D000E0F940BD93E00956F37EC1EA4727D795E2 +:10A0E000001C83791E2E7D08CB995F9104CF6056AA +:10A0F000D8589104CF1036E2E1CC043C85021E6DA5 +:10A100000A87E713D518A4F56117ECFB2F6AB4EEA4 +:10A11000F709478CF2A24AF5CEAD37C3BACA5E8EB4 +:10A12000EFC6D523EB311E68C862AA940AAD87DB5F +:10A130001D879BADC575113F788EF0A6D0573D7435 +:10A140006975463352FAC76B7A1EABE1E3DC6FE305 +:10A15000B88C5C0E7F46AB379AD1471D5E0F1CF85A +:10A160001C8DF3BF9D3CBF1DBEDEF488D63981BF78 +:10A17000AE587D8FBC19E01B52CD44BDCCB6C993FF +:10A18000D4DEF4D9BA1AE01D03AD88230B4D780153 +:10A19000BFE9D0FFB309AF49B7B273C03B84EF3B0F +:10A1A000BD4CC03B98E329A3EC1CF00EE178CA2813 +:10A1B000B3C2FB5F2AB7AFE7A26BC36A413771FE38 +:10A1C00001E6786038A63A07DC4F0F1C53018ED1A8 +:10A1D00049704CF50E087F0F1C53FD6F27CF7FBED3 +:10A1E00070FC40C0F18380A0871FE0281F008ED044 +:10A1F00079C211B2C1113A4F38427F1F1C3D7224FF +:10A20000E8E110F430E7E925477906C5EB09FD667A +:10A21000E87549FAED4D73DD3CA37447929E5333C4 +:10A22000B83E68CCE27CDC1810EB09BCF5BF5EE7F9 +:10A230000D8B2DEB75CEDDD0E77A9D8B9E4C5A6F42 +:10A24000D48B7CBD73C5FF57A9918D0E115F2B1563 +:10A25000FDC7FF30EE5E312EAA64F61FFFC3B807BC +:10A260001C3C2E362CE3C2BDC66D13F331CBBA466F +:10A27000AF756362BEB89CD97FFC0FE31E11E3A2E9 +:10A280007245FFF13F8C7BC2DC9F659CD66BDCD3B3 +:10A29000621CB3AC6B8BFF19BB95F2DAB7D9CE63F6 +:10A2A0007AF169D869A9130E4CB7F67D216BDFC529 +:10A2B00092FA8589F5CCF9CC7325168952BE615D79 +:10A2C000A0F904D6A91C5DFDCEE44CB8BE2E8DEBE2 +:10A2D000CFA38EF7EB293F2FCE77F2D88A21687F64 +:10A2E000FDA52AE52FB10410E10B64AA944F77383D +:10A2F0006B78DE53E4CF0215FCFCC87C1EE0D70768 +:10A300003A87554B789D975AB2B693B72AD5CFB2B4 +:10A31000E65EE7A66F207E5D787E579C383735D79E +:10A32000E90F8F09BC0367031C77306F08EB0056F9 +:10A33000CA913FE27CABA6AE622812672FAB36B063 +:10A340000D62650FF0B93608FC12948F79EE10CAD1 +:10A3500011D8678AA740FE497F99F3173B79FEE23F +:10A36000CF0E85D6D17C5CBF3077346756527D42A4 +:10A370008A1807F76F45BC8F6D920EAEAD847E2AAA +:10A380001B2B815D4BBFD735653AC0A1158BE7F319 +:10A39000FB79BE983D83E38739FFD6AE02DDB42159 +:10A3A0008CECE0A8A66003D24D1BCEF522ABD07793 +:10A3B000A0DFB1E55FB2C762BD61C6B75615A27C2A +:10A3C000F7CC3392D37B0C3E87EB45C01F9F90A800 +:10A3D000BFBBDB15713BF11C7E7A6B1CCF3715BF01 +:10A3E000B50EC18E67BF93EBA1A6396ECA9305E780 +:10A3F0003A63C8179B65E3229C07E68FD9E6CF74C2 +:10A4000066F59EDF21CE332F53CA52DF49C2F36077 +:10A41000A7B5CEA111EB1A86F64FF7D5D977E6444A +:10A42000085E1E97C2BE486F98FB2A718AF8D41F37 +:10A43000CD21F9D4A00D24C6374FF937099F3F2508 +:10A44000452EA0FD07236A727D62C64C83F8CF1C9F +:10A45000DF00704B49F39BD75990CFDFD39FCEFBE2 +:10A46000AAE0636DCA8D94D750A7F2FA1936DB5A69 +:10A4700087A26AFCDC15EB2B9C49E72409BD92AF4F +:10A48000D13912E3FAB927BFF87B4FAC01E47395D9 +:10A490003B6534037B75D6C3DB3B94588704E3CE1E +:10A4A000CAB1300263BEC7E176870D7ED8C2D7B38A +:10A4B0003F679F17C65DC8D7AF1983EDFA1298AFF3 +:10A4C00018E7A9A1B85952C344CF9EF362710EADEB +:10A4D0000A1DE57447DCF83E8302717514C62BCD66 +:10A4E00063295FDB736E0C3E35D5ED04D9C3A26ED4 +:10A4F0008725F38FBBD47A0EE2C8F75AF4219B1D4F +:10A5000095703D53CF9AE7CAAA1F848FC761427FD7 +:10A510003B691E5C82E725BE6FD1CFAA9FC53DF87F +:10A520009E4569394B3E675185BEC51A17AE6FBF50 +:10A530007F5E7ABDD77A575BF779DECFF955FDBDDF +:10A54000A473B9FE9F53D97B49E74D5127237A2F36 +:10A55000DEFDE94351A0DB87CF7EF05014F0B0E47C +:10A560006F9F3CF47DF413F67B34D477CB9FF83F98 +:10A570000FDD09F4F868AF4B76437FD113EFFFFE90 +:10A58000FBD0FFECA7C3D33135B459C8E3A967FEAC +:10A5900092ADC33C2BF75D46799195CF4FB19C733B +:10A5A000D8DB53B5404957F2FE622417FA5E090F13 +:10A5B000BB186B132D33FC12E07319FE0AEB1DDC84 +:10A5C000A3300FECEFA313AE18D6312F876BABC0BF +:10A5D0000F5AD6BA94CE01B17F17F861CB76ADA1F0 +:10A5E00073B3E57B1D96F334803C4F0E621BCFC3E3 +:10A5F000D29D657BAEBAE2920A6C1D2164FBE5AC8C +:10A60000BB09E327FB73B8FEE730EFF2E3CA1CE7B0 +:10A6100098DEF797B3702ADAC1E5BBD6F1756DE71E +:10A62000751FE12F137B9FC33DE7B49EFF7EF6F8B5 +:10A63000F5A971BCB927A34F7B669EC32D7DFE9AF9 +:10A6400001CFFB4E89FCD0B9F0AB5D2287637DE87A +:10A6500071C636125D1F10F9C91F54C93958EAA6D0 +:10A660003DCECF9BB4C99F77603EEC918599D4379E +:10A67000CFDBFC4CE853717E68D71F0F14B0EDD8C8 +:10A680006ECE81764C6F7D72C019798DF4AC4DAF72 +:10A690003C208971692C86EFD180FE707BCBB14E56 +:10A6A000B7BB03F37ED15932D967B8BED69B9E346F +:10A6B0007E221FCF0C43D72670B9E1FA0D2E6553C9 +:10A6C0001E81FF5C108AA2527182DE23FD857E4CC2 +:10A6D00031EADF566ABB9D4502BE4EEAA7CC3A83FB +:10A6E0006F0A317AE362820019E6CD72FBB9FEBED1 +:10A6F0005AFD30D97FF6B0EDE43FE3235F9A7581D0 +:10A70000D9E77E0EF79B47EF2DF0F7D232CDFD82D1 +:10A71000DEC27E4E0F3C1A43F8F2C4DD412C4AFEE5 +:10A720004BAE119770BF05AC8BFA43700B0AE61B5A +:10A730002275987400BF99EADE3CEC4DB21F72544A +:10A7400096BE1C99A01713FE9253F84B263DEF902E +:10A750008DD7B1A6F80EA5666F5721F95101AC7BD4 +:10A760003E2BD774E3F5B36FDDA2A3FDD824FC84A0 +:10A770004D01ABBF147471FFC36C37A5097A5D231B +:10A78000E8A586A55949FE22E109FC943C57CB1463 +:10A79000F25354BE6FFB75733D47A641E783BE7C01 +:10A7A0008DD73F45000149757A17B8787EFB6E5703 +:10A7B000B818F7EDD178FD1BFA1B5D7DC883D9AEC3 +:10A7C0001775946B6B23D48EC764303CEFCBAC61B0 +:10A7D000924EFECC189CCFF47354419FAF3EBF46BF +:10A7E0007E0DDA6194A337A4C8449CD755CA9A91C8 +:10A7F0004F5CF9BCEE49117E92E92F99F34C7171CF +:10A80000BD6CB6667D94BB686D690BE0A57952504E +:10A81000C86D98FCCBA9820E8057F24B364B221E96 +:10A8200092DC427E98AE6527E44701F70EF9C80135 +:10A830008062EB427E56908F62D4FA502E80EF16E3 +:10A84000B88A68FD00EB4A186DAC23BD448B619D4E +:10A85000A20A0852D2A98D636BF2095E77A4F3FCB9 +:10A860007B0AB437B9D2799C807D947B397C836B29 +:10A870003CF1799D4CF31A0ACA43B6D85FB6294F0A +:10A88000B3ADF2D4C38F6956FF75BEC0D302173F74 +:10A8900077C1F5518FF496DB5EF1C312DC873D7E04 +:10A8A00040CC211E1B024D8548276D0CFB580EE144 +:10A8B000F57F9F722448FEF933D86F686CE3FEFE83 +:10A8C00038CEC72B5DF129E4BF5F28FCFF4AABFF00 +:10A8D0005F2FF67727F21DD2AB4AF8915A0DF9A9EE +:10A8E000E0676F403EB9D325F4B0C1FDD99EFE5458 +:10A8F0003EBEA75FC6EFFF1D7EE8F75DE7E1879AE2 +:10A90000F6BBA0476F59E3DE02ACDF49A17A66923D +:10A910007F57357F3F25BF448D625D6A4149FDAD5C +:10A92000720A9703BC1FA85619F24DBE880FCDE7D7 +:10A93000F3570E1C1707447D57AE2D3E0E88FAAE16 +:10A94000803D6E16F5340E64F83EECB0DD8EEF728D +:10A95000FD7D755C8724E359E41F96C9EB691CB93A +:10A96000D673AF843D8E12BDBEAA3FDE3069EC893E +:10A970004CE0B3CD7BFF30653ACC7FE09A6C3ABFB8 +:10A98000D9EAE775525B02FCBD6FBB7C435CFDE31B +:10A9900061B0A5BC5532AF2901FB82EF33FBC47D0A +:10A9A00029F2D25FE83D5BCDA893B2137A8E9573FE +:10A9B0003E72229D15B4A331EAF7D84DD64DADA213 +:10A9C00035C7D1756C5F35390DEB157C6CA345CE61 +:10A9D0004C7E3883EF2BA19E602353B11F5CC9F3DB +:10A9E0000F2C6A7406B3296F4E3F85820FD2402D1B +:10A9F00025D7D5664C77F7C41AD8CF0A6B96FEA038 +:10AA0000D941CBF89C08F871084723F7DFB08C9840 +:10AA1000E7BFC2A4B7824B007785BDEB0483A23E9B +:10AA20002C677E9CF4725E8DB58E2B28EAB882B6B8 +:10AA3000E7EC7CF4A9C94760CE918F000FA178059F +:10AA40009D3BD2FB296A978BF0920B78413C9C612D +:10AA50009CFE0573582C5AD81B2F269FC17FA13806 +:10AA6000EC7F30CC1387EBAEA0154F1EDD8A275F3D +:10AA7000A9154F8190154F26BE532B75CB38136FF8 +:10AA8000E67BDEFDE16970F5DF879F1CB7A85B13ED +:10AA9000F8F994B51DC07B5BC5F70B9050EE24BF51 +:10AAA0004851E392A427F090530D7C0BEB3FD40F59 +:10AAB000DF1764321D8FBE595980E2FCA0C0A3B4D9 +:10AAC0008AF37B7FFEA19DBF814BEB705207BEA630 +:10AAD000538CFCFDA6E0EF7719FA570E774AD4376E +:10AAE0001A5BAE97DCE0AF6011ACEAE77930D0AF2B +:10AAF000956ED40BF9B2A55ED225DE9F31F581A209 +:10AB0000325D4EF243878B71E8EFB224B886A33DE5 +:10AB1000C4F7F405DC925FC8EF76B08F49F1A36902 +:10AB200007CE174EA685C83F71A19DF425E477088E +:10AB3000C2477ADB388EFC384CEC63C8DA26827761 +:10AB400098A8DBD4EF02B7081FDA62ABD76C0CC948 +:10AB5000B8ADA28D563EC917FA7AF04A6BFD66BEB3 +:10AB6000D0EF4C699B8572FAE95DBCFE3EDF56B7BB +:10AB70005BD8D829A15F3362257F9729EF2EFE9EEF +:10AB8000FEE0954C9B9F345F5E24459B0F703C8C90 +:10AB900017727AF3E122B755DF7F77D6D5A4377ED7 +:10ABA0007C574B9F75DBDB6ADDDA7CF0E71EAD0D71 +:10ABB0006AF3810F9FACD5A83F22D619C778B63467 +:10ABC000CAF1A3CF8E17AE81BEFE983394CCB77E68 +:10ABD00016F91EF2C323B7DE4971F8B06864129A01 +:10ABE000996F2AC69D6EB4E3CDFC3D83D255F9B46E +:10ABF000EFE1AB066BF3C7F5B61F794BF71CAB85DE +:10AC0000F95BEE023E07F8877CEE32D00FC29A570E +:10AC10007CBEB05197B1FE77A39BFB4333DDE1359A +:10AC200038BF1ED564CAE756F3F76E4DFCF467A72C +:10AC3000CCBA7758EF30DA11352DDDF21E428BA0F9 +:10AC400049CCCDFD19333F64CED3B4D67C9F409719 +:10AC5000311E2F6A2EAC7727E785C4FB0432E3F957 +:10AC60009F3BF07D02D8F24477E4C724375A521E46 +:10AC7000A82891F7C95B5AE245FDDCE26E6DF7A2A8 +:10AC80007DBB8D8510F565BB80FEC97C06FF570234 +:10AC9000A8835BF5C9886F13DE99EEC813888F7C93 +:10ACA000B79FF0DB831751C73E44F0F9C8BB18E9E2 +:10ACB000E5A2663080C07723D776D7E13CD3843EC7 +:10ACC0006F11FA1CE463E69C247DDD1231D2F1DCC5 +:10ACD000D7D4AFA63E057527EC902EA35D2FBBCB36 +:10ACE000CAFF45427F96D8F46791D0B745B6EB6569 +:10ACF000BBB43EF9DD84CBCEEF1DA6DE1DC47230A1 +:10AD0000EFF429AB1A74999EE007B31EDEEEDFD88C +:10AD1000F30FE6FC63E3D6F525354AF962479069FF +:10AD2000C8975BB24CFD6C8DDB7BFC8E5024AA6215 +:10AD3000303C976998D70ECEE4EF0F05A7F3F7786C +:10AD4000D8717E6EB0DEC99F93DD5109EBBBDDF992 +:10AD50009D97201FBEEBF6D37EBEE50CBF8BFC9209 +:10AD60003193E72933505F2B03EBC1A892D083B511 +:10AD7000EEC887F8BCA90FF58826FBFBD0C7A6FE56 +:10AD8000B5EB5B9F4D6FB2F21A83F591AFB0CBD9A3 +:10AD90009A02A1C7F3B93DDBB64415E7E0F553F1DC +:10ADA00045A40DD73C13CCD26899B85609FDAF4BDA +:10ADB00074BFD8B3B511E3E40DB3787FECBAFB1BD5 +:10ADC00031DED870BD44F14785B80F90929C9ADF70 +:10ADD0009D399BB5C28D79BD35F903BF77D0807998 +:10ADE000A7E189718A1AE275D242EE5DB6FCA6EA45 +:10ADF000B7E66FD52532F9FDA63E5097703F7FC369 +:10AE0000A89B3B0A2B789E18E9E7748BF7D09A6FC2 +:10AE1000A5FAE3FEF4C2EDE23D23D00B5F209D14C2 +:10AE2000CD9A1F36F5C217780DE4BAB4A20689CBC5 +:10AE30005C7A54D6CB12F91753AFBAD5300B615C9C +:10AE400030BD86E9386E6698EA8D5CC8770CF92CBF +:10AE50007400F9D29DD919227D67E3C3728F5FBC5C +:10AE60002769947B603FC3F1651F68C77BCCBC59E1 +:10AE700048E2F9681EF7D7BAC3177A50FFE66BEDC0 +:10AE800073F5F3E72BFA9920F25B8508B7C106CA80 +:10AE90006F99FC9C8A717A716FBEBCC769A45D060C +:10AEA0007035FCDA11C2BAA073C5213FAA6564E708 +:10AEB0004CBB67DA3BD3FEDDEE2914F0F27885F85F +:10AEC00017E6DFF8E6C818E5D2057F6C9CCFA6F33D +:10AED000F72C393FBA446C79B660AED709A8BCCD1F +:10AEE000C3CFDBCCF7614C3EF3F653376DF2A73995 +:10AEF000DEE44FFBB8F3E54BA73BB2B608E01E2EED +:10AF0000CE2F8637DFDAEEE9C34E99F3F6C197B755 +:10AF10007906B057AFB88DDB91FEF79487AAC37D51 +:10AF2000EC738197E7B1B62DD9E4417E7D10F195A0 +:10AF300024BF5E9F90DF112B085FDB04BE1EDD6E19 +:10AF4000C557F01CF832C7FF13F0E51E86E7C802AC +:10AF50005FFDBD273800BEB60D84AFF5E196B5455F +:10AF600078EE1E91434361FE4D61397E29F41FAC9A +:10AF70009677A13FB829DCE21E8A7CB6A53DDF07A3 +:10AF8000F79BBD01CE3F5ABC03C7454B64FA4ED375 +:10AF90003A95D71BAED922FF249AC48F3BF3797D13 +:10AFA000FA9AFCB9DE794978D8B9A5DDF23EE6CE49 +:10AFB0007EEA7A6FF44A96F3CBADF3F97B533911FD +:10AFC00016C3F7D7A68AF794C027A43C88C7E0FD2C +:10AFD000E17EFEDED2A1B14D9350BFACCBE7697CE0 +:10AFE000D39FD862F327CC38DD5BC2DFAFDE12011E +:10AFF000130BE31C97707FC77CCF15EED3FBBFDE2E +:10B0000032AB9FAD08BFC1B5DD765DF8190E9B3F31 +:10B01000618E57CE11BFA54DEDA27CD12B9E1E7F18 +:10B020006208FA135BC332C1910370A0CED9B8A0F5 +:10B0300099BEB391F3856270F96F0EDE302AE15745 +:10B04000FCC9E3253C6E14F9BCB18798829F124875 +:10B05000A9D228AF69E2F7A487E37BA3A8771B7F77 +:10B06000DC5002038D13F9C7897F8C2A297D8CDB84 +:10B0700029E48DA9F1D948B775639D1AE6A3364A2C +:10B080005C3F468F3A041F33A2EBCE05DA0ECC1399 +:10B090003EDB51B4814A14227A39CEF7AC1E918B33 +:10B0A000FCFDEBC95D824F864D0F19FC7B72E67C7F +:10B0B000F15DFC1C341EBC11F0F1A297FB31CF7A7C +:10B0C000413F109E22B9C9F9C26BC57E4D3CBDA05F +:10B0D00047368C427B05FBC069D2F36B985C96586F +:10B0E000EFD97CBEDEB32764F2C77242AFED42FBFC +:10B0F00061CE67AEF782B76F7D34DBCBFD7913DFAE +:10B100003FD3631B4627ADE79A6E5DCF351FD683CD +:10B110007ECE4999EA85FB5BEF67FDAC7783099F9B +:10B12000A0DB7EBD6BC31898C78BEB21FFE37AFED3 +:10B130003ED6FBFC3E2990249F2F78B95DDE6FE25E +:10B14000518DE45E99A487868BE71F05FD310FE6DC +:10B150005D37B4C9837CBC538A913E8B8E95E9FBE5 +:10B16000391BB79F8963FDD2A306A36C6F5A657420 +:10B1700012C6EBB778D385DE9D4CCF496A731DCAE2 +:10B18000A3B285BFB3B506E3723C6FE9754ED54CEB +:10B19000FEC4E099FC1B11A6BF17DC52F3CB11A82B +:10B1A0002756C9211A0761B43A2191F7D8E210F362 +:10B1B000897326D35FC811FEF3007E438899E74860 +:10B1C000D4E7E74E661E84951B94CF30F3FE667E6F +:10B1D000CFCCF79B79FE54169F947CDE54CC0C198F +:10B1E000EF0F15799142439F8C79F2615B22939125 +:10B1F000CFD2311E2FC43C02F7BF7DC53F4AEBC9F9 +:10B20000075ECCD8DF3CE67B05915CFA3E93D77CA9 +:10B21000AF80F773BDD6FB6A84DB1F753ED76FEC3A +:10B2200048AF3AA279DEF154EFC0F32E22AFDD2A07 +:10B23000D6D914BECF83FAFC13B77127DADF3BD11E +:10B240004FCB227F7FB117D7BD1AE85241F58BF45F +:10B250001D2FC5CFE4AF42D7041D19D7F7AB789C9B +:10B2600068A7577F7435E967D2F3ABD2114CA5AE0E +:10B27000609CA385855F181D30CF93AF76D339A22C +:10B28000CE4244CF1216267AE6BA3519E95834551B +:10B29000AFF3203D85DD2C007B8576F3A1F00A22FB +:10B2A000A29D9E6AA9A04F98E75F58A764C9730141 +:10B2B0007D7EE8CDEA4D9FF5E1C91EB4DF3B4372C8 +:10B2C0002BCAB7DD6E33AD793AE273677E397DA361 +:10B2D000674BE97D1EF403C06E931F10AD96634368 +:10B2E0000BCFCB7E533C74A3F704C5471BD3C47B61 +:10B2F0007F439DF4BDC73F21B0C02755DD9D53F06E +:10B300001B82A995DC4E6C74C483211A1F9F3D17C4 +:10B31000F5C28FB85E78346CD70B31F73C6847784C +:10B32000D388AF366DAFFF3AF9F76A94FC7F73FDAF +:10B33000D0FA71ABA90ECF1FA7F76736CE5A41DFFF +:10B340002730F5887DDCE97DBF2DC07A8EB7167C6D +:10B35000120061647F50BB03B89F9377FD2660C0E5 +:10B36000736FDDA5D0FB3EDFC1E726327653ED7F5C +:10B370004FC07CCF11D3DEF88C4328176C551631A3 +:10B38000DDC29882C95CCE57F0FFE2C77C28F43D4D +:10B39000FDA5AD1996BE99FF59EAE2E7578B771DD7 +:10B3A00070E601DC0B1F4BA3FCCF49F11DB6937B6C +:10B3B0000A7660BE5AF6C962DDF0715C17F78374D5 +:10B3C000F8439B8BC5490F773AB8FD3366E23943A2 +:10B3D00044F0877D5F2FEDF7D1BC0B362BE437CDE2 +:10B3E000015CAE02951BA95E4C7914FBBE17BCD55F +:10B3F000FA522EEC6BC13A29847E288EBF0BE2BC38 +:10B40000C8AA359447B4C335276AADF798D73A8BA5 +:10B41000EA34E6AE94C82ECFDD2E91FCCE5B6B1DD8 +:10B42000F76CC71427F2EF8266EBF55BDA36D03A99 +:10B43000B7D8F293767FE9AC57E41927B00BD14F18 +:10B440003AD37125E519FB8BBF4DFFE824F8EDF8E1 +:10B45000A2D29F6ADDD47E58AB517BC8CBF976F17E +:10B46000DE032F916E503B27205F3DDBF1AEEF06F0 +:10B47000B8B522C8FDF5AFEDF8A4E10546791E8503 +:10B48000EB0F83F4C78D02FF9732B7EE877D3E2224 +:10B49000F26EE33E877E127C679A258ADB40FA359E +:10B4A000ACCFB911E11D8DF3733FFD46FCDEED001D +:10B4B0007067FBACEFA7FFA370F7F7DC5285D749A5 +:10B4C000DAAF9BF27048F8330DFB7E380DF9E5D406 +:10B4D000BD129D9B9D72C49AA8BF590AD5E9B4EDCF +:10B4E000E3A86F4DFEB4F31FC4B94E94EB1E3E6B40 +:10B4F000BB9BF061F201C84D50D42505E5CA3EF86A +:10B50000CDC657767E3AE5E81A8C726EE7A753FDF2 +:10B51000C42117F8783DCB7CDD98867994052CDC26 +:10B52000C4DF67375EFD67C2617E1FA99CE7A2B0DA +:10B530007ECB980A72FAEC173CBEA9DF537C3FFA27 +:10B54000C5637FA58AEF2B4789CFBE86BFC21A632A +:10B550008BF5AB7E5EC1EF47596FBC7CEDE52FEEFE +:10B560009FA99F1B3F76BCF4E8A10E7E6EF6B52F17 +:10B57000AC71CEC2B6352917A1DE3AC2F575F91104 +:10B58000D55E47C6F5DC8BBB5F407DBBE877F7A592 +:10B590003068DF579BB3910EBB1F5E9D62A0DE55E6 +:10B5A000A32988D7F7638AE53D4BB36DF149220F94 +:10B5B00062AD7383FD4531DFBDF07557AC0EF6B754 +:10B5C000FC31571CEDE4B2438B880ED027BBB96C1D +:10B5D0004FDF756E8B1EDD9CADF3BA746BBDDBC3A4 +:10B5E0000E3A075C067116B2ED39EBDD5A9539CE8D +:10B5F000D4BEEAE8BA9DA837968B78D05EEF562D78 +:10B60000EC8B5DAEEFB5C935E085E2BE28EC87CAAC +:10B610005D62DCEE343CEE8ABA619FEFBF316807B1 +:10B620009EFF7EF8F0AF52A4B2849C9BF5661FB6D5 +:10B63000160FF83DB353421F98FDFEEAE076033F34 +:10B6400020BE9700BED16F59728CD7C5BD70A23D88 +:10B650007B145C5FFC8C23732607C38F76C8A453CE +:10B660004FFDA1A0CBA2E77EE1C43AC89E3A444177 +:10B670009FC5CF1C70227FD8F138A5F58093BE8F6F +:10B680006DA753EBDBD3304E6978FCAC13EDCBFBED +:10B69000FB2536A8B0F7F3AD8017B48FE7A2D787A4 +:10B6A0000F73FBF8619B14930AFBA7DB0AB43559AF +:10B6B000BDCFF3A29359297E9FB2C1C94A311E89D9 +:10B6C000CADE10FA41F63C201E33E37EEF6867F4D1 +:10B6D0001DEC0BFD669E8FD763DDF132BFEEC09C83 +:10B6E0002DFC5FFEE6C818FAFDA12932F90B3DE7F3 +:10B6F000FEFEE00EFAEEADF81EF719A13FFE5BF874 +:10B700000B63BB4A7F88DFD9757438584C4F9C83D4 +:10B710009F39C9E5794287427EFF0B2CACA09FEA96 +:10B720000ACA4C4FC28747F7323D892F7DA5E9965B +:10B730007E23C283E70FE23C7D1CBFC502A15CCB28 +:10B740003CE334FEFDF3D4CA22CBF3EC88F51C9C19 +:10B7500029650AEEEFD338FF66DB84E3D6F39B8BD3 +:10B76000043D2ECC8C2A54F6F3A6EDBE7F3AE55765 +:10B770002E3A477E65A95FF80BB92C17E58BDE3DA5 +:10B78000417AA5A590DFEA10FE3D7E670CEBEB9EAB +:10B79000F373FB16F2C99FE880E30CBF639A0AF2C9 +:10B7A000171A277FB758C3F3576D1ABE5F10BA58E0 +:10B7B0007EAE08FA251BD3F8FD31F23807BEDF1E36 +:10B7C0004D9F3615EEABB2C4CAF19C2F977FCF6266 +:10B7D0008313E409E4A231851969F89D61178B7A16 +:10B7E000CA713D9D7FA718020E0FD67D89BCB19A04 +:10B7F000C29F6B74F0E7CE773E739E7255A7EF6DD4 +:10B80000BA4A00D6C2C43AE52A87BFCCEF24BE505C +:10B81000271B418C4FD47467A881C6717E3FDF1609 +:10B82000F4DE60D47B8A7286EAA0BBFFC547F9F0DC +:10B8300037BC9CFFAF4BDDE8B800FAE5EEC1DF4551 +:10B84000E17943DA751BB66FF923E57E7A9EBF4F27 +:10B850007CC3779416CAE3F86B024807C9E07656B2 +:10B860000222DC88F59E73436EB5185593B5FE4CE5 +:10B8700051CABBE3B46EC0B22E84776EB4B3D7E1C5 +:10B88000BB3D3ACE0B7DE0DBDF56F2FEEC58514378 +:10B89000974EFB98EC07BC8C75C50AB05EF906396B +:10B8A000761BAFCBB3D66D9DF20AFE17DFDBC21459 +:10B8B0002DCE53B177B159AF457A7BF9AB22EF2842 +:10B8C000BEFF6ED6CBE03656D1C71EBBB3F1E18BBF +:10B8D0008FC8148F951FB2F2F5C4233C3E9F68E3D6 +:10B8E000EB8BC579FEC5E7F08FBF6DE3F7F3ADBB1A +:10B8F0006A978C398887992A33C4F74149CFACF0CD +:10B90000F0B9CF1C294AC5BCD121619FCD3A45A7CA +:10B91000AED0B9F01E9B5D31F96DD4716D1EE2673A +:10B92000D4717613EA057BFD4ECF3A1AC7E7583635 +:10B93000FA87F8FDE5FEF498B95F539FA519563DC7 +:10B940009631DDAAC7B2C2563D3668B6555FE544AA +:10B95000AC7A2AAFFA02CBFD829A724B7FC8AA8BCF +:10B960002CE30BC11024F78BD7CEB08C1FDA7CA54B +:10B97000A53F7CCB0D96F12362732DF7473EB6C8E9 +:10B9800072DFD4D7FDE9DF51AD2B2CE34DFD3B66D3 +:10B99000EF9D96794DFD1B857FC88FE5689800AFB8 +:10B9A0002151FFD49FFE55E49A29681F43F1287D59 +:10B9B000C7F7EFD5C34FD9F8F25336B392D1792FE9 +:10B9C0003F57EE8F2FCDF749151FB7874AAA5CF373 +:10B9D0008C1FF3FFDCEE95FA45DE4BE37C727ADFD9 +:10B9E00070CA2F63DD1BFA21A71DFEB5981F4A03FD +:10B9F0005E423D62B7CF696D2F53DEC97E5E7787A9 +:10BA0000A2535EEEAC6C4CC4FD65B156CAF734CAA5 +:10BA1000E23DC6C96EB21FF7C8F24DC979D8A37E00 +:10BA200089F8FEA8B023DB404FA35ECEF381FF5A16 +:10BA3000CE9F4FFEFB0629198C9F53471736E1DF37 +:10BA400019684CEB2AD5D340AEB05F90D067A03FC9 +:10BA5000C721BE405F9D4039053D558005D4B333B5 +:10BA60006B1C12C096E76651AC03067CDD84F9DAE4 +:10BA7000349629AD28C3BC638FBED4BF04A639B8A1 +:10BA80006824D55B9FA91E41DF433A037BEFA47373 +:10BA90002F9DFF9D96E9FC9CEC7A71FE75667E31C8 +:10BAA0008D7BFD3B20ADC07FBFC69D83BD7BDDC9C7 +:10BAB000BF3376AEF8B27AC7FD013C177EBD949FC6 +:10BAC000C399D7FFE2E77AE42F7E85F0B47CBE8F7E +:10BAD000EA6B97C51C743EB31CD182FE628CCB39D5 +:10BAE000F631BE5ADFD8627D3FABA3268A71FBF2E6 +:10BAF000B65954AF70DD6F79FC7ADD7FF17C8BB97C +:10BB00009E3BC0BF93E60EF0F5AE8506DF17BE166E +:10BB1000F09F86EDCB55D3506EE07A5C82FE151D0A +:10BB2000E01A00BE67450A1D88BCDFB0D0ABCFC3AA +:10BB30009633027CDDAB59D881FCF01A8B7CF46A19 +:10BB400061D27CE63CB029B4CBBF4D8B3AB2815F69 +:10BB5000BA2F91C83EC17A6EBC1EBE316F35AA485D +:10BB6000733D739E2B5988E6BD8619D432C34BDFD3 +:10BB70006531F5E38A85BE7806CCB702FC72CCAF9E +:10BB80009CAEEB7EEA76D8D71F16FDE579FCB43B78 +:10BB90008B7415603C7AFD1685E940EF9F7B8DFC28 +:10BBA00000CA4765C6F97D9F0EC81845BBC9F87A1B +:10BBB0004705BD67B7658C1376BB14E77B63FFEE63 +:10BBC00002D41BBF1CF1E850AA77AE38CFF985BE6E +:10BBD0000F09FE027B40FEF369E60DB9FAF09F9F64 +:10BBE0001176F70ED9A0BCEC1D0ACFCF9E95B9DF18 +:10BBF000A6C8A1A00AFDD636C5877C9A82CE912917 +:10BC00005F60EB53B078D1FCFB2110478C14F277C6 +:10BC100069E0C9698D743E64B3E7226E31ED77182F +:10BC2000FEA1BEBC18DF6792507F5BE3DE8971998D +:10BC3000E28BBFD75ECF0A88F8EF2BDBEBC80D484D +:10BC400087D652AEB75AE35E5EEF0A2600FD31D3C7 +:10BC50008EDB9F8F04B87EBA196361D49F29BCF52F +:10BC600081FE08F0F70EA24A39F5993F9DEA988DBA +:10BC70002CDE8FA642FBB4C6C73BA553A56ED0539E +:10BC80008BEE7EBA696D3EB04D09C72BF61BF0777F +:10BC9000B78FDB75538F1CBA807FFFEF0B8012F1DB +:10BCA0002DE217FBFE2A806FC9B8997C2F9E8FBFAB +:10BCB000F4D7148C0B77A7EBFF7131FA7B871586CD +:10BCC000F2E451BB9C697DC0F902EAA5E1809700CE +:10BCD000B713EEBD127DE7C6ADF3B8CBA36963E938 +:10BCE000FDEC08F361BEE5A3678A290E2B4DE1F850 +:10BCF00059E80B3706A0FD93746C82564CFED16A4E +:10BD0000C4B789D7D638FFCEF82895AD55D3137868 +:10BD100035D75FBE651C1D2A2CDB9241ED088CAF28 +:10BD2000E1D2F23887EFD4DE86F4BEE2F4516DE35F +:10BD30006EA1F7F606757FF63B8C099F76D2F9293E +:10BD400096B0E3FB1F4F7C3E92E6FB51A090FB5761 +:10BD50002A531DE457C664FCEEFB7217D77FA73E3B +:10BD600057685CCFBC7B27291AD0BA2CDEDC8EFE4C +:10BD7000BFA7CDA523BF781EE6DF0DF4B4796268B6 +:10BD8000EF54ADFB3DF4E3D53697D600F8D8EDED92 +:10BD9000FE3DF257F73E17FD5D88DDCE661ADF3DAA +:10BDA00094C9D81F0194C2EF3C79B466969E048F63 +:10BDB000A7ED875437047C41DF0DF2A8CDEC922427 +:10BDC0003A95A60468FFFB051FEEF6C6653F9F97F0 +:10BDD000B5D0BE12FBC47DE13114DFE708CA47ECE1 +:10BDE00076C23E33695F1AF2C108C6F7C9DA86EB3C +:10BDF000689755D80FC535254C469560DFD7F2D1E9 +:10BE00002C86FAE59E7A66F9FB47CBBD89BE1B649A +:10BE10006B7791B0D7D13F927DEEE9A342AB4C3C1A +:10BE20007F3CF09F4D8D5549F2A37279BA09EDC55B +:10BE3000F8841C211E301FD6AFBCF9F9B8D21DEA18 +:10BE40002708FF33717F88BE9B2DBEFB6BE65956DA +:10BE50004AF1F72E453F2ADE3E5A873D2D79F96794 +:10BE600083F195BCC572DB03A3E07E9D33F27BE4D6 +:10BE7000D717DF94590AE0E14F8F7B6233619ED27E +:10BE80009FEEC8C6730FFB7C6B4ED4DF9787FED343 +:10BE90004F251DF3B9A71DDD943F5DD6F69F4ECC0F +:10BEA000DB5DBEF76D27FA0DB7A7444EE2BC957B6C +:10BEB000EBA6201E27B2E606CC978D14DF616F0D2E +:10BEC000727D74E6F8B0963A94AFEEC810E44B2D4C +:10BED00045B2D479B409F9DC8F7E03B4CF0BBFE54A +:10BEE000F903D717EB49E7F551D64EF99F7A762833 +:10BEF0000FF16D5E3F1DE3DFE11FF99AFB262389F9 +:10BF0000EFBC29DCEFF20A39DE9212F91BCAF1E22A +:10BF100003EF385300AE0FA4EE69780BE4F9CB4081 +:10BF200052BCD30AFE4F32FFF692679B3C2D57BBA3 +:10BF30009D94273CC948AF00BD1B53817E4FBEB6C0 +:10BF4000F702FA5E4877F8DB8887CF5E75D2FB3957 +:10BF5000CF0B3FB6EED5CF46A31EFB6CDFE22188A8 +:10BF6000BFEE80C3E4FFC95E94B36718E935534E52 +:10BF7000CB504E612B651A3F472C43FE2F44FEEFFA +:10BF80009C4172F9BCCCB81C727900FED7505F940A +:10BF900069200FF4FC7092F3DD9D323FAF033B81CB +:10BFA000E77DBB65402DF0598523DE8ECF55C0BAA5 +:10BFB000753ACA6BA717EB21D81E3913F38F15F802 +:10BFC0001DE424BCDC1448E1DF9D15F85921E4D7B9 +:10BFD0008787A74972916477795FD8E5DB5206AD10 +:10BFE000D984C5C49ACF12F7B1A08FF4FD7785AD7F +:10BFF0005CF18B8BAED805F0AD38AAD0FD0946CDEB +:10C00000144C5D544E6F3E88ED45E1D62998F644B8 +:10C010007B817FF76D3CB406E8D5AAD99D07F93B33 +:10C02000ACC648F483F6B47F7D249E3F9F7EDDC579 +:10C03000B0A4E5F4EE194FE2F9E4E9D73D4C96FAE5 +:10C04000F4532C7C666F4F4B5D299807FAE63DC38D +:10C050002E5721365E3691C339E39E923551B07B1F +:10C06000BF4A31BE990278E94A8D507BFAD85FB356 +:10C0700051773F7FFC9D14B4EB7B9CC6488D5AFEE4 +:10C080009D3CFBFC17A7703FB5429C17A23CA17FCB +:10C09000F4D1968C1D284F1FED518C6CD05BCB5288 +:10C0A00044DD8D88071770B4B1EA3DDC5FBED9E08E +:10C0B000F9D605E8CF607F93C312B755331E1F0D25 +:10C0C0008BB29EFC37C6DBD5367F85CEDD33318F14 +:10C0D0002AD1774DEC79D425224E5C728EF86F59B7 +:10C0E0008AF0738A5931FA39C00F147F76BFAA8457 +:10C0F0005A187D2FA8C305FB79527C3F10F421C943 +:10C10000534FBDBF663CAD01BC0B4C7B21E2B5EE8D +:10C11000DD528CF8FF3146EF715D7452DF417503DB +:10C120005183BE935D2DF4DB452A8F772F3A5E4C09 +:10C13000F55ED5C2CFAB34620D58D774F363522885 +:10C14000466694C30766B5276F83F0DFD206F04BCF +:10C15000786E6A837FCBB197B0166169ABFDFDF74E +:10C16000BEF3C9CFE22F7D9C03DC67E267301B9CE6 +:10C17000EC07B28EF401DF7B37FDEA0FC4FBACAFF6 +:10C1800088F9E1C78F756FEF0AF8770B7E596670F3 +:10C190007896C494580CF6334FF007DBC8F9C37C8B +:10C1A000DF64B9807BE9764E773B7CD5BB1CE4F736 +:10C1B00002C2E8DCA37ABB95BF1609F817D9E05F85 +:10C1C000862F4327AD6FFADFF304FFF6B79FC50E46 +:10C1D0004EBFC5C02F51FD7F6E7F76BAFC2245E46D +:10C1E0002D2E601758E8327DE0EF11F4C43B363F46 +:10C1F000D6F4834D3EB03F3F4DF8BF976FE1FEE26E +:10C200009ECEF6B5E8EF96EF53343CD7DBD37926D4 +:10C2100005CF5FC6EDE375DFA7DBC66DC0EF543C0D +:10C22000D7517215D6BB961F93490EC61D2D8F612F +:10C230004971F9D1725F319D7BE9198887D347B87D +:10C24000DD3C7DA4E43765A8173BA656A099AE3B1C +:10C2500052EE43FBFE1CE371BA74F4CFBFC675C740 +:10C260001D5627609EAE29A890BC5DFEE09C9D18DF +:10C27000A7BD95C2EB665FEA5C7135D1E188ACE1A0 +:10C28000F55347641AB7E4470AD56F32E5AECC6F71 +:10C29000C3FD4FDB1C1ADFAF83D65FBE6F68C63CA1 +:10C2A0007F82FE73059F96A7E9F7CF443F2EC747CD +:10C2B0007EEFE5050EB27B1FE6FA7E82FECB306391 +:10C2C000079DCF7EF8B3EFCAB8EEE9DD120B02008E +:10C2D0002F050F3E45DFED78E1189D2B4DD9738C6E +:10C2E000CE91E69AF19C380F35F9E9168CDB20AE39 +:10C2F000FCA8D32BEA2A9A9D4897A5C7CC7E971312 +:10C30000ED7358F83DCB1E7E9BFA8BD08F87FD2CAA +:10C310007A58A2FAD383FB5EA4F3A865BBF879D45C +:10C32000A2BD3BA6E1B8C5AC95CE11EDFAE2962DC3 +:10C33000D6FE42C1870BCFC187D9A9820F47B01162 +:10C34000F45D8C49FCFB1AADF1B94376C3FA674E34 +:10C35000B8881F06E047B26B4744BEE64C5C361017 +:10C360007E73DCA923679CE8174E6BFB98F036B30D +:10C37000EDC054C4C737596409C2F7CD369F86FA59 +:10C380006F661797BB196D2E7ADFF29BACB5919F44 +:10C3900093737D738BA0E32D02EFA7F7BBF879CBE6 +:10C3A0005312F91DB78062CD0095B644E46FD9767B +:10C3B0002B5D40A37F879FCBB9C86FFA46A9155F55 +:10C3C0003318D71F33F64AA43FBEC174FA3B8EDF41 +:10C3D000E8C0440AAC97E3A3BFF3B56497FDFC96AD +:10C3E000C7E3CB6CF6AD3495DBDBAFFAF702A6A75B +:10C3F0000A7D2DE831B39BEBA719C28E76C4EBCB37 +:10C40000307F64E2C74E8F0E7DE073DA5F0BFFD89A +:10C41000EC5F0182827E58ABC6F17FB8338BEA8530 +:10C42000164D54A2E80F3C95CAFDDE257FBBEA0AF3 +:10C430002C2CFD506EBF7D17DCFF604EEB30C40B23 +:10C44000C4039154B8FF72FEBC8D63E1F93FED76F1 +:10C4500084509F3063C730FACE7AF0FE9978BEB42C +:10C460007C17FF3B9DA72A9528E94FB57B1AAEF7AD +:10C47000C13E49C3BCEAF2BD9FF07800F904DA700E +:10C480009B7419F209F8D94B70FEB091E640FA2D71 +:10C490009B2AD1B9DEACA91F3B11AFE06F2F4D4DE8 +:10C4A000F2B70F971453FC7C58D5E93B87FDF9DBB5 +:10C4B000CB3EE7FE9D797D19C825E273599B4471F7 +:10C4C00065C2BF1B24917FB7EFC543E9A417D2C64D +:10C4D000A2B86C1378417F00F5F0CDC2CE30A9919F +:10C4E000E4614FFBFBD7227CDD3F75B0225484D042 +:10C4F000B20B015FAF78C92F3AF51A3FA7B845E3F1 +:10C50000E737A7E6C61AD3D1AF7F5C223FE2666168 +:10C51000AFF03EE6276F067FED6BE5F8D720EB45E1 +:10C52000DCD248AD5DEEABF7FE86EAA04C7F83AE71 +:10C5300017F5D6174B05DF2E3D471E69E4FE178B16 +:10C54000902E4FD9F404C0B101F5E7E9C38A86E71C +:10C55000C77BDAFFF2502EFA4DE00F17A17E16FED0 +:10C56000C59E760FC507A78FF96388C73F09FEFBF5 +:10C5700050E475EB2A15C28B3C91B7B81ED2F5F486 +:10C58000BEB38323A06F9FDCFFE20506E5D362BC48 +:10C590009EEA316B3DDAD2566BBD9989DFE502BF69 +:10C5A000B0AF61F83E9AB9AFE7D5AE94501F722391 +:10C5B00049ED443759B2C683CB7FAA58BEDB03F09E +:10C5C000DC84FA2C9E6AD6A77767A3FD3B94AAD396 +:10C5D000FEEADA389DE57DBC85F5AFE5790E07AD5D +:10C5E000DFEBFEE4E8128AE70A7D749EDA01717BD4 +:10C5F0002AF43B4E78281EBBFD9545C393FFBE0031 +:10C600009378DCBADCD19D4D71A2A89F98C13EA65B +:10C61000FA89196D8E4CC0147BA9E8E72A9D3B8CE2 +:10C6200096D87898278AEB0EC2FCDA217AFE5BA9AD +:10C63000223F3E913F5F2FF86ACF2B337C18A79D96 +:10C64000DE97457596BF11FE5D576AF877A959893F +:10C6500078A33FFF3129DEA1E796039C2847CF9DB1 +:10C6600070C5664A189F9E7DEDDB08EF6195EAA9CB +:10C67000EBF6B9A218372D7FC343DF1F6091C818AE +:10C68000D41BB7EFBF65389D1B48F5448FCFF61F0D +:10C690005E4BCFBDE0A00CDFD27DAF66935D7D7EAB +:10C6A000FCFDE8A7805FF20DF4539E6B73909F52E0 +:10C6B0007EB482F8EDB9231519C5F49D86900FE775 +:10C6C0005D7A987F8F7DE9E18A5FCD44FFE2E8647F +:10C6D000F253A4A31519A877C689BFCF231D2EC96D +:10C6E00048FE7ECC9954EE979C3EE0A1BC80C48A63 +:10C6F00038BFB0120BBF2CD9F30BB2E74BF62A149C +:10C70000BFFF5F7AFDC57200800000001F8B08002C +:10C7100000000000000B8D565B6C5455145DF7351E +:10C7200073DB990EA7AF0152C4DB227D683BDE1696 +:10C73000A1E5A5B7544C631086224294C888C60F61 +:10C7400095022646E223DC5A1B49E103FFFC30E652 +:10C750004AA2F103CDA095F051C854AB40494C1307 +:10C760003414A26620B16AA4B6921862A219F73EE8 +:10C77000F70ED39789D3347BCE3EFBB9F63AE74C1C +:10C780002E479F0780C9A1A2DD4E2310123AB01296 +:10C79000281696943D69C5412BA09EF4E50BA73F52 +:10C7A0008B5B64F7BC918E8B28ED9F30FCFD8F7DF9 +:10C7B000091C937EAEAD020B818BAC5A0C8C28DE2B +:10C7C00033D0481AD89926BF912BA93BCB58B6A78E +:10C7D000EA581E150A5009E4827A5C6CA8421BF9DB +:10C7E0002A5D5558044C0C189D5EB4B09F977D810E +:10C7F0005FAC1CBB93F3ECBF2254B9FF700829CE89 +:10C800000B38D1C5AB806FF82BB5B879F8B94D228C +:10C81000066C0CEC2E21B9204321D1665CCFD603E7 +:10C8200049FACBD50075EFE8D7B326E42747FFDBFD +:10C83000611958066CA3EF07CB8074BD5D69475939 +:10C840007FF40F2D51C8BFED11C309DD3BB7AEDB3F +:10C85000FB9DC6ACB8BACC2BD7D514FBFBC55B8708 +:10C86000EB0BFB6DA2A462FC1EFA528BDA1CE109F1 +:10C870002D1A512A803FCF1B42AB662BEFAE64D3FB +:10C88000DC3CB70E2DDA3A6C005F1FA2B6EB80F3EA +:10C89000874C29BF509C7641F3DAA4C349CF835F0C +:10C8A000AA44F179D0703991E5790D5DF9A4F43E8F +:10C8B00060EA4A116A18A7BFA90AC273AF086A9C46 +:10C8C000E5DF832E39C737F0A894797D7E9E13402B +:10C8D00067BA71EE3C9F08E6D15D1FBEC678766BE5 +:10C8E0005321C6BBFFF0F124F3C818EC7139DFE621 +:10C8F00090358337DDA70F20D5C8F58601C2656264 +:10C90000A3E2851559F7D2B0AC3B8C1A89D3E87BEA +:10C91000A5B4BF7DAC08FDB43FD4703994253F2247 +:10C92000DEB788535CBF1DECCD8C8604E9B798FE5A +:10C930009C992FA07A6A079EEA43A07FAD85F4C434 +:10C94000D1FB5BA6E111F06B4BDBCCF9F6A0CC651B +:10C950001C54A542CA3A8C3E544575EC7014DB2336 +:10C96000FBADCE4CFBAE9DCD5F517BF3F0C4E7D960 +:10C970006CBEBC2D52AF0B72981CBDF95813C51B71 +:10C9800069F87929E3D11DF0DFAEB34E67299F7DA9 +:10C990005134F792CFBE482C21889F6F31DE34E7A7 +:10C9A000EA92549FF4F7AE3F0BB5E01F1342E23C0E +:10C9B00062784BF8DCE7CF9BBD102B0E44A7CFCF9E +:10C9C0009F5B1FF381E2A1B11C58FDDFFC67C0D95A +:10C9D000BEA7E15C82F11F19BA90084D9BD38D1759 +:10C9E00053759C6FDF992FE356743AAFD48057BAD2 +:10C9F000948AE2F34C5566F2EC06F3AC91E577F1DC +:10CA0000B5CC87818E4AC52AECEFFBFC526CF9B499 +:10CA1000B813839AB4879EADDD5E32BDCE3E59E732 +:10CA200044DA8F47C375995FDDA79A57F5FBF0BBD2 +:10CA30002AAFEBF77CC87C027AA57D9E9FC586EB6A +:10CA400054513F06F6BB2CD321487FF76CD8FB80AE +:10CA5000D6937436417D4F5E13EFBB929F4BC03C23 +:10CA60003C15F0E842309F56BA9C9887AB91D6F8B7 +:10CA70003CB442C72E5EEBC8E824D7C1D3F87CB4DF +:10CA8000EA99212521F5AE4EBC5C8FACD4532B3AEC +:10CA9000FBB5C3D279DD01B71754EFE0C0A75A84C4 +:10CAA0005265E27AE938F18CAF96F9E655C043C792 +:10CAB000789E77646C87890F8D85BA57297EDDADA6 +:10CAC0000ECC8394FF6670AED76254D66147FC7E6D +:10CAD000A7FE82775C817C3A7691DD5A1D9D1AF51E +:10CAE000B15E87594CEB93C3AA3CC767B396C7F7AF +:10CAF0009B5D1EF8FD4A7ED5853ED790FD82325E55 +:10CB0000E3B021F1C9CCDBEF4FA2DAE725A69EE422 +:10CB1000381D8361F4934A355D8D79FE5BF0EE45F7 +:10CB200008B718C559734CC118D5612FF3FBCBC793 +:10CB30005F03CAD7C2F6FEFD486B8C913E62FA7E57 +:10CB4000C08382F15132713517F9FF384EC621EB9F +:10CB50008E3D3DF5FBABDCE799B0384E25D983E738 +:10CB6000C6147AA714C701E3699BD18C16E381E947 +:10CB7000376EDF0BF44EE5C49E7FF83E572C21F153 +:10CB8000440A56B2849FE27705BF1B2ADB95FB63FC +:10CB9000FA85E6B423E0D7D5E258020B808FBC2E8D +:10CBA0008B79BCB3C2B419EF1673E90A50DC1FA22B +:10CBB0002919F7AA7262B90CA27B2B39EE9B5A1A7B +:10CBC0008C2FFD3A90BC3C68FA716E15F992CF1A21 +:10CBD000F33342D7B149F51C21DE9BB47637F873A5 +:10CBE000747F2CF27A29CFCB5A5292EE966A9B1C14 +:10CBF0000F35A9B15692FA06C7DA4FE733CCF5479D +:10CC00000AF5CFCEC3FDACCBF7A316FA999BC73577 +:10CC1000EEAEE63C566F56917D2D2B255E3687BDD8 +:10CC20003B32A47F5CF55EE23A2270DA641DC88074 +:10CC3000EF7311E094EF5330FEC43B38847F7D01E5 +:10CC4000FF7CBF478AFD3E0D04FD583487A6B97DA1 +:10CC5000FC0BB3FC39DF800900000000000000007D +:10CC60001F8B080000000000000BEBE06760F8512C +:10CC70008FC09F3951F9E8783E072A7F11177EF55A +:10CC800084B00A03827D879D81E12D1304AF85E284 +:10CC900030207682625E6608566741E8716663609E +:10CCA000F001E250208E63C36F572B0BA6988B1CAC +:10CCB00003C3654504BF5092816115104B4B51E68B +:10CCC000AF513C34B08C212A7F91162A7FA20E03EB +:10CCD000C37224358BB548335FD28881410A8801FD +:10CCE000A968BD8B68030000000000000000000080 +:10CCF0001F8B080000000000000BC57D0F7815C5D4 +:10CD0000B5F8ECDEDDBD7F726FEE26DE849B107021 +:10CD100013128836E025060C1875C1A0D8FADA2B54 +:10CD2000528DD6D24B5012943FD1B692565FB390EB +:10CD3000BF4020A18D96A7682F207D54E5355AFF6E +:10CD4000B5CFD68BA2D2D6F6A5EFD9AFD80FFA02BF +:10CD50002AA5D662F459C57EB5FECE39339BBBBB3E +:10CD600024A0AFFD7D6FFD70323BB33367CE3973C6 +:10CD7000CE993367E6FA2312532E61EC237C20ED23 +:10CD800052D95352943195CDEE596A409EC153C445 +:10CD90005837A673E05F5A56D86CC6029887725F00 +:10CDA0005C3EE29FC15893069959F0AE249FEA2B4E +:10CDB000E194C5E8518C61AACCAC8FA6B8F2EC2303 +:10CDC000DFC7C9FF759A3B0FCD1660FA75C60A1901 +:10CDD000FBAA2883C7C47CBDC8D8E3B15396D058FA +:10CDE000A632DB4E3DE3794396D84712BE7597DBFA +:10CDF000FDB406726730C0C7FB419E5AF3A1A80676 +:10CE0000D2DF05D3EDA5F0B794FA1487A7E582E445 +:10CE1000744ACFC3B45D620D83E131E060EB094F2A +:10CE2000ED6DC9F35F53B3EF7D4A2283EDC2BFC4FA +:10CE30006E40250B3305C7D323713C333664FA6249 +:10CE400000652C71FE46C8CF0578B19D262D399717 +:10CE5000F76FB26484B14BB032E4F745661F4C41C2 +:10CE6000FD77125AC20FA54166FC26056D6D9EF531 +:10CE7000423C057005957EA6631A6626C2C9D83F56 +:10CE800033A4EB9F03BC3F1BAE2B984CFD64E177B2 +:10CE9000E3E979FC03CA37B61975E5158CF5AA469E +:10CEA0005F1DE2E717BEC46EAA9569C0716D9E55FD +:10CEB000286F84FE37AA80972AE0A736E37C05EA2C +:10CEC00077B655527A312B23B837CF9A3A2105E5F8 +:10CED000FB664D8D0E43DA59106A4857613BE9F401 +:10CEE0007A18CFDAE1472EC4F1D7173C4079EDD05C +:10CEF0009317FA0DFC3E97E0D81C84AAF0DE8AB0A6 +:10CF0000F46EA40FBB95C695E593A18665501EA946 +:10CF1000D1ABB11DADA4DF6434FE14E3F433C345DB +:10CF2000503F47F0B7520374B2C74B601411DF692A +:10CF30003A2FCF39D474259B41ED12FE5915E007E5 +:10CF4000FAD2E1BF8F6048EA07FFC564E88F012C81 +:10CF50008F43FD40392FB7DBD39CF8843A3ED6FB94 +:10CF6000B66F06A6EEF7EA875727098F35B785D63D +:10CF7000214FF86E88221DD51A987F30743535E31D +:10CF8000FCFAF3B3746A3DB4E3C2FD0EB8DB582477 +:10CF9000760C077501BB80F85B7CEFE54F3B7DBFEE +:10CFA0002D7DE17E95C62B3BF1375EFDF636A0F474 +:10CFB000B46CBEA3D48C030A581FFB27530194758D +:10CFC000A8665C4A40B753AE301742DE372D194F82 +:10CFD00040FF9D79D0683163F7B095190BE8EC6B91 +:10CFE000EF8F2720DDA07ADE5F9AA2F75D41CE3F6A +:10CFF000DEFE0F02C688FE6A7F9CF9B2F2C02FE8FF +:10D00000E8D75FF840023C6D96122787913F8B72FC +:10D01000699E41798F924FE942AD1A2B075CF2CDA0 +:10D02000AFB00EA59AD27A2D1FC7D5DFD088FC5598 +:10D0300014E6FCFDA6195F0AEDF5CC2C4C6C74CC03 +:10D040009B1F3189E0E950B91CE855DD70BF28CA43 +:10D050009F04494BF522BC9CE9EDF1AB2263B483FC +:10D06000789ACBD8CFAD660BF1B1195E4B0847A9C2 +:10D0700096DE8DFC605AF145C87F1EB9381EBDBCD6 +:10D08000F2D06F38F2F8BFB8235F86FF2FD1897FC7 +:10D0900044FD1F217266111C569E130E7D5D7C118E +:10D0A000CE230BFA01380271F87B8AAB3E1F67066C +:10D0B000CA11CF45C88BD07F38D7CA01BEF7977742 +:10D0C000BDED033A6979CB0F640C946FA91F915E93 +:10D0D000D1998B2E0A4B66249CDFD63CE6A4338C78 +:10D0E000DCAD172E310FFA70DE1468C67AA8EF8F08 +:10D0F000691969062F1A998DF38FCF4D7F4DD7107F +:10D10000F2878670E4627BBD04873FEE9EAF679A2C +:10D1100037DE797702E7DDA7B2F34E63C96806E12F +:10D120004EC665843322DAD6129A45E366BD43388B +:10D13000FF47E7DF058BA2289F345D3B42E5F134D2 +:10D1400073F6DF83F30E065F2E997F413C299A1513 +:10D150006F443D3255E37A840DC5AF9A9EADFF3CD6 +:10D16000CA7390B3F76211EA8D6D25F2C7E117EF2C +:10D17000FC86A170BD61C5882E8AC4EC87E69D2A15 +:10D18000F45699C4F997F57339926B8F17F5EB1430 +:10D19000D44B696A2C876528EF07398A795F49B2D1 +:10D1A0006F0ACDBFE11E947BFE5A1978EC54B8FA91 +:10D1B000DA0234FEF1E0EEBB88EB0F5FB885DDE20A +:10D1C000C0DB59486CD29B37E8481FC94AB18F90E1 +:10D1D0004EAC9FC3CB1271D4075D6DADEC55D04FF3 +:10D1E000A167AF63C674314EB083D4788B69D27CAB +:10D1F000ADE176118E1BFE54F5CA1DA8E75423B08D +:10D20000D49881A97E9541FCB68EDA552BCFBD49C5 +:10D21000A2F782CF632643922882FF153D49F40589 +:10D22000BEBF4042F8026EBEB7F53CD363646741AF +:10D23000DE484E1F637E8FDA49F678D21AD76FA385 +:10D2400079A1EF2CD7FCF1D771B8FC75210BF9D07F +:10D250006F2AC7869DFC2FDA6DC73F8B5C76239FB4 +:10D26000D7F8C4100F895D1B815E5D4597C597C1D6 +:10D27000FBC512B757D895EEF1D8DFC37817E3781E +:10D28000153D45E3B7C7D95534358AF6000BE7138A +:10D290009EBDE3EC02BB4351C78223CDEDAC629649 +:10D2A0003E0BC6C3FE7A7E25CAC7D5827EDE76DEF9 +:10D2B0001A07FEB77E7C39C1BF12E12F382DFC2B37 +:10D2C000A559A7C2FFD68FA771F89F2A70E1CB4E50 +:10D2D0005707A6D429E73BE9C5E74F5C80B28971BF +:10D2E00078B7858F1F4C19680F8E1CB0600CAB1778 +:10D2F0000F692AE48762A93B24877D164F3119FB09 +:10D30000B3EDAC05BE70F028A4FD6659B411E0FA87 +:10D310008E988F5E383A617EA31D762FCC27C4E7A6 +:10D32000FB8739DCE3CB037D8E13EFED3165611AAA +:10D33000DA6F0F2F4ACE03FC75C5CBAB490D374BC7 +:10D3400064C706847CD88AFD1790DDBA95E8CD9233 +:10D35000E65251A638C61D335B4CB44FE375B2E5B7 +:10D36000A7A9DA9291607EE5B532309469DCF7E0E6 +:10D37000B857953019971EABEB87E6294676DCF057 +:10D3800004CB018EAD3FADA8DEC8B270FE4EE2F612 +:10D390002CABE2EB14A6C03C8F8C3F7F7A012F555B +:10D3A00015C44F12D6FB0EE61DE35E22A51E4238C1 +:10D3B0008A137CBE14378F6848FF13B69EC31101D1 +:10D3C000BF7430FBC954EE22FE2A9C89703D69C3AC +:10D3D000B35D1A8FAF9E1C8BAF8A122D19B47B8B55 +:10D3E0006F4CB100A4D72AA9A7B19E2A0DEA2847FD +:10D3F0008B9BFBA9BE2AB31497D32058A1FDA2ACE6 +:10D400009C263E8F941B3B91CF5F127C5154DB7561 +:10D41000AB0CE388C714C27BD1F052B26F8387AEE6 +:10D42000F8039AD8F09ED67BC537663212F47B7625 +:10D43000793FCE0C364349BD84FD47A63F80EC09B9 +:10D44000A306F8A0DDAD6A0BD3AB509EF49B49B4A4 +:10D45000F70A96B3A50EBE3A2CC6AF9530331DCE53 +:10D46000F2C1361FC7435FDDFA605318EB85881E93 +:10D4700093D98D26B63789A52CB47FFCC80F7C1EA6 +:10D480001C427E3252435DD8FFEA92A17D081FF014 +:10D490003DAD27B6AA7A11F2D3D6028DAF272CF66E +:10D4A00032F26548E6FDC03F03F11316F907246E1A +:10D4B0009785101FB9A8A792A4977A566518DA1312 +:10D4C000FA8D2C6140BD10E227378B1FB5256DC941 +:10D4D000C8A7CD2C6142536AB9B50FEB017E46084F +:10D4E0003FA0E714B243D226F2EBFB872F58887493 +:10D4F00078073AF69566F9D2CB8F4A18E69B4B0E21 +:10D50000BBF594AD377C619391BC610992EF3E9D70 +:10D51000F5A33C0F08B977B99464327CB721AF39D1 +:10D52000C31CF3A25D63CDC4AFC662AAB7A1E23249 +:10D5300003E9040D937DB0C1631FD8EBD8AEB634B8 +:10D54000E94766707DA4C5139CEF629C5FBD70F9CE +:10D550005A7DC66B6739FA2DE7F68D2F20D6A3FDCD +:10D560005B4DC41FBC13EBC7045B1C417B41263BD6 +:10D57000EC21483FA2755D9AFA576221977DE66BD0 +:10D58000D55CEDDBE9C944228AED2F8BCF9B5B0E86 +:10D59000F27679EBAD9436B66E98A340FD63BD5F2D +:10D5A000CE75DA55BFDFF6D55C8EC7962D0D30B43B +:10D5B000E5DB7D64DFFFBE67197FFFD78F3EF20199 +:10D5C000BF3489F90AFFD3705E366E97488FEF3B00 +:10D5D000BC76F27018F3DDB7A2BE6FDCA69AA6D3B4 +:10D5E000BE16F265AD6CD27AA5B36DA8EE35C0A3B8 +:10D5F0000FE90478BC5036A85CB3ED2CC5A475C106 +:10D6000044393517E9D73ABCEEC54B00AEF723B223 +:10D61000817CF35CB86C02AE97D76A2DD374C7389F +:10D62000D6E66B299A57E101175FCD96556ADF2B35 +:10D63000EFACF9AC2184F67C2EAC44A0DDFA308846 +:10D640005BE4CF6189FC08ED82DE5EFCAAAD9B083D +:10D650008FA3F970821955593BD157C953BBFC2A86 +:10D660003944F45B2CF3755B424E2D960BA83E6B50 +:10D67000CD47BF52EF1CAE17C3649F11DE7C089FDD +:10D680007E10FD20D60CCD68075C6D9ACED7578CE6 +:10D690000D72BB481964A8E7BB114E18627DD560B6 +:10D6A00006F9C9867F3C7DB6A12D3907F55F7B5B06 +:10D6B00003E9B5F54AFF41942FA112C676723E3CAC +:10D6C000802CBEA92A9FFC06EB03699267EBF5C18B +:10D6D0000326D6AB92ABB15E6F5B8ADA596F0C064C +:10D6E0004A6BB2EFB7B435F3F7E660609EE33D2EC8 +:10D6F0006C707EF984485E6F0D06A638DAEB6C6BB1 +:10D70000E1F0B04702973ADEFB5BB7107ED6B34735 +:10D71000174E71B4678F673D7B6CE1A5F07E23BE29 +:10D72000379CEF9FEA9932D6FBF0600FB68FEF6916 +:10D73000B9874CED842B3C78C0FE8E979BA7945FF5 +:10D74000EA2AB7BCE50B4B5DE5B0B0F594CF739713 +:10D75000CB9EF21EE7F736DC9BE28F051AC7588F87 +:10D76000013FDD2F3BF83B07F9E92CB2A716A29C3D +:10D77000F3592CF07558D72BE5ACA3EC3C902B3229 +:10D78000B74B5A6D7E2D614A2D94FBCA997271BEBA +:10D7900063DD63B000BDAF6401D77B1DEC64D7FCD3 +:10D7A000F6F22DDB1644BECD8779055DD5EB2693C9 +:10D7B0003E065F76B75973B89FAC96F8C08FF08D70 +:10D7C00061973D2DCBC27E74F70BE3645FCFA771E9 +:10D7D00091BE678782B44E8739A4D4E6F3715E5C4C +:10D7E000ED18471CC697CFC7E97A1F73AF03B2760F +:10D7F000A05B1EF88C450183E4BD45F27E2DEAD383 +:10D8000062C6FE2037CDB3C2E3CBADF1C6BFA9AD32 +:10D81000766EB98AF3D39C8BFEC5F6447500E56A33 +:10D8200027E8CB0C978BA82B40EE99A437D6E612AD +:10D83000E731AD8AFB5381BE09F253EBDCBE50F4F5 +:10D840007ED604FD85849C09DAF2F5AF6DC4AF1B6A +:10D85000C39CF583AD97CD2D1F438F84E2F5A4378C +:10D86000BCE34AC8C93FA25C0EB4768C2DB7B6B2F1 +:10D870004AA506F9399458477295D3E31DA0875FEE +:10D88000227CF9C7F22B28AD9712DFDAFD85DAEF9B +:10D89000E078FC6BBB7F327CDF7EC89F586F201E18 +:10D8A0006F6BC2F1DE7638C8B0BDF1F0A9B67E99D3 +:10D8B000C6E56BFD826B7CBE5882F0E8D3851F3ACB +:10D8C000C6121506D7DF4D5C8EB33BABF1FBDBF91F +:10D8D000F7A9AFB8F060C39590CD1CDF187C68ED58 +:10D8E0006507434477A6A3FFF2B9C317503FB71D9E +:10D8F000E1FC0FF820FCBC03F841BB312CE8939D00 +:10D90000070B39FDDB52C40F1181173FACEBB1B2ED +:10D91000BF06D607C8DF610E77675B52F04D337DD7 +:10D9200017A9B1C85FE62B69A1B18CD6D7A13EC3B8 +:10D93000F2A4897E5A05CB0D4779396F2F5293B2E5 +:10D94000B03CE8FDBED22E4F139E9430C0E798271E +:10D95000A0AF13888F5079B3EB7D38CEF1E7C5D3F4 +:10D96000FE23D3A2C3A7F12FF5B5B5923CD88CFA0C +:10D970000AC6D7576A362471BD27F45697D03F3D63 +:10D9800042DFF40AFDB10A271BD245E1762EAE3DF7 +:10D99000B8DDA2B3C06CB1CE84678BCAF952A9526C +:10D9A000D23B4BD1FE6821BFCC4685BFDF6818B49F +:10D9B000EFB145F8D9617E513D5B8F2941DE6E4460 +:10D9C000F8736CB837EA3B038D00E7963C93F4E6B6 +:10D9D00096D274C0C2EF2B410F39FC3AB95A7A2162 +:10D9E000CD5BF13E37944EF2BC523D563FA7CCCFB3 +:10D9F000BC9D3AF6939B0FFD605A96D62DC7F776DD +:10DA0000BD2D1AB41BCBBEDF121AE4FDA25E94CE6C +:10DA1000DCCF26FD513E9E7C319EB2C180E5F87E72 +:10DA2000B49E3218B8ED34F22DA7B2C165D7FBE32E +:10DA3000403F971E49937D14349A5DF5228916570D +:10DA4000FEB9C3D35C7274FFF094D3F2D131C147F5 +:10DA5000A3F9606A09CB63EC85F667E775D4415E8C +:10DA60004D4D9620BFEB9BBF5FB7F022B497B9DC5A +:10DA7000686E9D47F26D79EF320DE57C53EB677868 +:10DA80003E2D917C5D2EE443A3C54A50EFFCC017A8 +:10DA900072E955D0D5A4571B636EBDD3A873BDD30F +:10DAA0001877EB9DC6EDAAC7FF644C463BAFA9F5BE +:10DAB000529A3F76BDA6DE2F7378847E6C42F94D74 +:10DAC000F32B35B901EAEFF605098FC7364C9B8C6D +:10DAD00072F6A864DCDF8AFB002B42E427F5E2C77C +:10DAE000F6D74D44F95690D50FCB3DFB63DE74B9A4 +:10DAF000D00F4C49119C9FB4BF077CBCBFE5B65EFC +:10DB000082F1364CCFF67F34C671F16D5F80AFFF86 +:10DB100014C0C718FEBF51FCA19C76C8F94F8AB744 +:10DB2000FB453FBB11AE591FFF7BBBFCA8C0BBC36D +:10DB3000EF780EE2E57FCB4F6F64F989DB33CD21BF +:10DB4000B267FE7EBEB2FE57749E28EB820E30AEE8 +:10DB5000E90EBA79E8657FF70B81CFE3A8640A4E36 +:10DB6000A593174F479B43B22F0AE98105B44E5E38 +:10DB700081F8827AF768C612943BCD025FC7402FC6 +:10DB800076A84EBA2C7BA116F8ADB1A7344F72F42B +:10DB90000FF9AE38AD67F3AA1184153D1CCF4DDBEC +:10DBA00096CEED70E003F05D8EF6B18E42662C7C71 +:10DBB000970B7C57B9EDE3C64A6E1F37263CF84EEB +:10DBC0008F8DEF46C13730CE8E6FD2382F8D06C382 +:10DBD000593C2D8BF375FA3DB9462ECAF363A0E785 +:10DBE0003A406E1D1576FC5125B1650ECEAB5EDF59 +:10DBF0004CE7BC3A1A486CB96EACF7E1C42FC7AA1F +:10DC0000FFEAF659B94BC790D35E3A2D1BD5DBDC42 +:10DC10005E791FEC15F49F7DCD97AA52104FE10756 +:10DC2000FF80FEA8F723737F695035B77EB7DB29E5 +:10DC30006A568E3AD70B9114E41DF80925DCE57E6F +:10DC4000E6282F75F02BF6301BE335EC272DF887EF +:10DC5000B137517F31CEC7EA70DE32F44FCDFB6C65 +:10DC6000ED914BD0CE8AC9867F8CFD94AC3C32CEF0 +:10DC70001FD543B408AB3C7F54DFA0BF22567606C5 +:10DC8000FFF053739DFAC5A72458C2E90F68FDC978 +:10DC90005CE4E3FD3199DBC1617D879FC6B5DE138E +:10DCA0006F9076E57DAD5DC4EF763E24FC25800F58 +:10DCB000F2E36E08F61F44D59D973B63FD1573682C +:10DCC0001F99FB612BB9FF039B23FF7E41C3031BFD +:10DCD000C7183F796AA1BFB333FBC8FF1C4EC03AD7 +:10DCE00014F79F6A70CF08F430E07488D61DE900FD +:10DCF000CE47B00BC9BFF56585F3097B8AC707D846 +:10DD0000FB7A1B6B1ED519F4FFFE24F777ACBC928F +:10DD1000FCC2D97A32CB05B8720A94346EF9B2CA11 +:10DD200018DF575292A7DDDF51CA35F23B2BE53D94 +:10DD3000433C55783C004B3174E93669290BF99224 +:10DD4000F54B63EF23897EC6E703DECF37DBCCF3E9 +:10DD50005FABC8F2FD5AE47B687FA06D21C5B114AA +:10DD6000B21609EDBD0FA4D46605FD720B1319E4BC +:10DD7000BDF7FFA9E745F47DE74F30664A409717A6 +:10DD8000559649D6423EC778045666EC179DAFCFEC +:10DD90000F03CAF2711100EB887FE978773DAE235B +:10DDA000F2A71833E504763732FFA538E4271A6F57 +:10DDB000E3F76ACF9BF3317E207F9AF10896976C48 +:10DDC0007D95F2B67DB109F8EE35B27B337311AEB5 +:10DDD000B4C2FDCB3B057D729441F233E600FFA156 +:10DDE0009F30AC64281F6E7D61EE6B38AFE360B886 +:10DDF000CECEFA1D8662A97F45FCAD4A0E5F86FB3A +:10DE00002DBEB0BDBF92DE86FBAC5644233FE5027B +:10DE100028403E79A7D2D8E99C57BF562497FCE802 +:10DE200006B580F678675B9C713B3E406947DB41F5 +:10DE3000F2FF05FC56E25994B39FE2ED028E781C86 +:10DE40009080E7FDC37EBECF18D777A049FF23455A +:10DE500016FB29E68F10EFEF0C5FCD585996BEA741 +:10DE6000D0B372B86E745E43BD6EB5A501E970445F +:10DE700059363F86715E68EFCE45B2B7CCC7FDCD4F +:10DE8000EE08A7CBAB1DCB892E4A89925181BF9456 +:10DE9000F8A1EB710BB58BA5C82F63E98AD86F5633 +:10DEA000FE86FBFA1D181F03FCA04EBC3E20413F1E +:10DEB00011B9E5BFFF19C7F5331E17D4894BE5FC2F +:10DEC000F1F94E8925EA9C7670B84AACF314A15F4B +:10DED00041AF239DBA055EFC25CCBA18DA8F9A8033 +:10DEE0001740B9AC72BA77B435BBE2AC4C29F547F0 +:10DEF000A4A71AE3716B6A6AE5F948F75F28BA903C +:10DF0000A7C900CD0B21576DF9A95C19A079E69836 +:10DF100057BFA079F530A78F775EFD190A4C002115 +:10DF200074E8F20388A74D6D07881FD9D393483E44 +:10DF30008474BB3EDFEF0B8A7104132C13C4FD16EF +:10DF4000110714AC54DE73EA016F7CC15F94B1E336 +:10DF50007ACA5BEFB8D0E90797FB4D19D703765C17 +:10DF60008182CCEC90ABE5ADDFA0FA0FB4B55E8852 +:10DF70007C380AAF580785047CEC4E0E7F5CD8478E +:10DF8000F6F89E3B7CF9B3AB00FFF7F4022D802F2F +:10DF9000EF49C9341F42158CE4993D3F83BD30BE23 +:10DFA000DC6CBFDEF11508BAA5DB8ED33C2E44181D +:10DFB0000A303F42F91010E447C0376CBF078FBEEC +:10DFC000925010FAFB739CCF5D636B86F865149FCB +:10DFD0009E7ED88133D021FEC9E8F029D51DE761A6 +:10DFE000D381B5C2339BA602EFE7AF506AC79DB09D +:10DFF0002C1E6CBAD87958CF454FE717EB683B49D0 +:10E00000FAF581367621CA930EFDB600DF6F61699D +:10E0100094FF4A09E76FA537B9B094FC1A720279E8 +:10E02000598DF172B544C48DF59AA1736A289F4049 +:10E030001159DECFCBCB45795CBF6DE139F05DC5C1 +:10E04000007F5FAC2B32AAE978DC7C36807EA27E32 +:10E0500066A25AA810FD319C0A855CCDE23359DFD7 +:10E060003F0FEB17C793BCFE00D437B2F5EE17781D +:10E0700029892793E8FF6525DC1F531293A5735860 +:10E08000B6DE76D19EDFAED7CCEBD9E5F788F2B21B +:10E09000FE0EFA4E8F273F8DE302D99670F6B74DEC +:10E0A000F4571637F3AF8811D55DEDF48B76A60CD7 +:10E0B000BC66623BE1383379FC212FDF6297C7935E +:10E0C0008BAE70B4DFD5B6ED429C2F3BDB7A68FE99 +:10E0D00074B4F553DE9E4FF6F7BDA3FDF37673746B +:10E0E0001E4762D3F51B2A97E7768AFC1E073BBAC8 +:10E0F000742BA3F954560EA82DE5F311FD71C19EA2 +:10E1000071F89BF1FC6478B8FDC6F7AF6DBEDA7F9D +:10E11000E4024ABD7E0366015FD9761EEA9156E0AD +:10E120002F671C584BC09D6FD6DDF954DC9D370D11 +:10E1300077BEB6F24257FB8984ABDC86A3ABAD75E4 +:10E140004E3DE06F1BFA7F017F5D05AC08EDFFFEE1 +:10E15000026ECFDD27FCC11DC22FD883FE3ED2FB4D +:10E160000D946E147EC27B85FF6F4B5B0BE5F35AFB +:10E17000DBE7D4839CFB97B65A6A7FB76AEBCFD4B0 +:10E180006E15E5799D5B9EDB71665DC116F2B31578 +:10E19000A78624D9E1577952E5FA3D6F749F4E97CF +:10E1A0009CF1564F8AF66DF907FC1DC3F6B37AABA6 +:10E1B0007F9EC6F5D64C5C6A3CA18A7829032C1157 +:10E1C000475C4EB484CDC3380753329F4438BB0AF2 +:10E1D000001EBEBF6AD23E559541EBB93CB08F716F +:10E1E0007C01A39FFC99135BF8FB9C4AB75FB22BA1 +:10E1F0008FEF6377CF61B46F54B212F0E4E09F5CAD +:10E200005C77835EACF62D7A41057826097F787BB2 +:10E21000647911DF17E5F1AE4BA4D43B084FE490CD +:10E220009FF463A486C73F5CAC982FE2772F0AF96E +:10E23000ADE0FE3908C1FCCFDC10C0EF6D7DCA6EC9 +:10E2400070E3DBC69BBD7F0C74F98D5A90DD47B639 +:10E25000F5EB8BAABDEE4E15A17D7C9B943C84FD15 +:10E26000B1CA78C0B96F64D7B3E1AED000AE822C2A +:10E270005C71CD3CC2F3A23D06ED41FB67B3942532 +:10E2800003BC670B38DF16FAD20BAF7AA749F6D674 +:10E2900029E36A183B4E68BC7DF12601D709112F8E +:10E2A0009A7F564B7CA6635E16685C2F76ABF67E33 +:10E2B000A758DF8938097A701D88798027AAF17DEF +:10E2C00055C08695731EDADF60C8A3BCFA328FD3BF +:10E2D0009C90E2F16AF7DCAA91BDAA36172EC338EA +:10E2E0000F989B991C8A63E8BA95E22185FF3780D5 +:10E2F00092710ACA9D414AC318A707692E1BA154EF +:10E30000673AD9FF6F2D1DBE1D91DFE74FC534E879 +:10E310007F652075368678DCFEE9A1DF49F03E8610 +:10E320008A0FDED72AA68EE5A7A9BF04DF879959F1 +:10E3300080EF2730B35023FAB8E350EDFD72785EDA +:10E340008A38E8CE1E905D74023E32F07BB4DF283E +:10E35000BED08E93087FBCF50F3CAF85679FAE7D26 +:10E36000CE1F9A8813B1DBFF76CE8C5CB4BB9EEBDC +:10E37000F151DAD53A85D2DFC96C4B2DEE07FECCD0 +:10E38000C7C6F207DAE930EA79E0D5B91A9723244B +:10E3900004205DAAE81AAEA7975A1FCC75FA819798 +:10E3A0005ADC9FB354E1F45DDA7AED03CEB8497BD1 +:10E3B0007DEBFD2EEB771A9E84FCEF3DE7E03D07F9 +:10E3C000B1D6672D447ABE2F5B49A4FBE8F803A6BB +:10E3D000C9F991F3F7C768A7E71FD4CE0169CA99B5 +:10E3E000DB39E3790ECF398E9E72DE9E1648129D80 +:10E3F00025C51DC762C7C7F8052EDB4B164519F9A1 +:10E400001B1234DFFCD027FA197CFD92C9E3C1440A +:10E410003C8B21BBE2ADBD712CACC1929C71B97635 +:10E420005C0B59560E3EC4F6B11F9FCEED6CFB7CC3 +:10E4300006F9FCC8E8BCC375FE410973FBBBC7A85D +:10E4400076C5112B8CC739E3DA86FB97DCDF8D3F6D +:10E450003F3CFD2D76C3FDB1BF0B2BC631875D3030 +:10E46000FE770A3BE6F04B6D4379427EDB8F289EB8 +:10E47000DCC4021A776622D2EFB9361E1FFD67256B +:10E48000F305F4FBFC79446318A0F6B4CAF663E81C +:10E49000AE254906AE474DFDAACF61B9F9B22F4668 +:10E4A000062E3E907FFAED85E427DAAEA942DF0C16 +:10E4B000F9B05DF35DBDDE04FCD57D03DA45B9FA44 +:10E4C0008E26E1799379EF669661FEA2910615F7A3 +:10E4D000615F7CF839EAF7E691CB14CCFFABC6E379 +:10E4E0006EFEF4E023B319B4F3F4DE08CB205F280A +:10E4F000690DF9E6E6C77C6417DEF2FD08CDDF9B07 +:10E500001F5DB5EB4A68577A3242F0D43DDAF45DCC +:10E51000EE276BA7766E7EE2EA681FC2F96B1FC515 +:10E52000013EBD8EDB47AB60CC686F8FBCADED723A +:10E53000EE7BD9F8B0F3F5FACCFD184A7CF39ED205 +:10E54000993E07BD6E56D897D0DE31215D34C63A6C +:10E55000E417421FBDF9368FA793F6EC5B42E31C2C +:10E56000BC96C62DC14C791DF0F3AC182FD4A3F185 +:10E5700058DF93D21550FEE6F7243EBEC1E93B8238 +:10E58000A5D8FF0EAD91D6DD7C1F04E0FF12DA376F +:10E59000F57B667614D7E0FE70692986445DFAFD46 +:10E5A000BD243FF19C8E04F45E8D7FC2FB357B7CE5 +:10E5B000195C7FAC7E6C15C5E3419ED623B77CFF0A +:10E5C000C74F5811FCDEE79A6FAB0737519CF32D0C +:10E5D0003FF02732D0FE1B2FFB12416CE729D5E517 +:10E5E000877D6368772ED2E592936EFF2CF67B329F +:10E5F0009FFA59AA454FFD0E304FF1D66B063750A2 +:10E600003F6B98C39F0BE37D03FF283A751DF9AE5E +:10E61000E65ECFAFF489F3027BCE1A534F8D9E1383 +:10E62000107AEA96BD7FBEDF827EDF7CF48FF7E34F +:10E63000B857FEED7FEEBF03D7393F09EAA867D68A +:10E640003CF8FAFD5F87F1FEE929BF8CFC72F38389 +:10E650007FF8DD1D907FEF87D3F2D14ECCF5737B31 +:10E66000F6C4231F1462BCFB577EBC60028EFF2BD6 +:10E670008F5F3A819D663FF104F055DAEF9CA76900 +:10E68000A2A3F1141A1B907D5AA41EBA3DF7D873A9 +:10E690009311BE3F1DF4531CC01A78D75A8DF459FC +:10E6A0004571A798BF13F0BCFAE16E5A879F8A673D +:10E6B0006BA21CE7F31D436D573F76F5E72EAAC109 +:10E6C000544D18D81E1BE942FF9EF7BB51FABD0CF2 +:10E6D000F43BEFD4F235E29CC69A8737F07E3DF4E6 +:10E6E000FB13FE31E754FA55F9DD7E80F7BE775D06 +:10E6F0003483858F9D35665CA74DBF558F7FFEB4F3 +:10E70000E74A4E78E6ED78F86D96385C7FD1CC3AE2 +:10E710003FCECF4773AC38E0E3C42BFEF495507680 +:10E72000A2F37F2633E08BE3EAC8129C7F233FF6F7 +:10E73000EBB85FBDF4C7BFD1509E9D78FC579A419E +:10E74000FA8F85A5423CBF32FA0CA15CA7F879C4C8 +:10E75000CF03910CFA0356DFD94C745A9DBE6AA1BF +:10E76000914BEFC96FB03ACDF97E757ADF62690CD3 +:10E77000BA7DD99FCFE569BAC0F6DF8FD251AA45DD +:10E78000FA1DB90CF96D3CFAD9E3D671DC1738E8FB +:10E7900069A9A79D8F2776F8153CDFBA46F8756CF6 +:10E7A0007B7B4D5AFA0D1B639EDAFB119FF4DCCF85 +:10E7B0002AFF38FE2031DE33CDE3338FE793E1EBE0 +:10E7C0008B182C5E702ADED675727FF2EF66FA29FE +:10E7D0000EE9886A7C7B2DCCC7919FAA0CE3039736 +:10E7E00054FF5E35C6F023FF37F0A3E1E0C754EBDA +:10E7F000DB9D13E0BBD49D5C8F78F76D5277FA9860 +:10E80000E1C0CF5B9360A0507FCDFDC134DAA7BEDD +:10E810009FBCB204E5C09A9F44480EACF68F7C972B +:10E82000F61BBFE367BB39CF915DD1A4F3369E7B66 +:10E830007C2DD53F01E558FFAD1FB61DFB1A8C633B +:10E84000C5365EF9AD47A33318CCEB5BE06FDCFF58 +:10E850006D7AE68ECF229F621EF72B8F15B43C8116 +:10E86000ED1FBB6FD24CECFFB9C7DFA7FE4E7C3F5C +:10E8700087FC97279EF9FDC588CF3F3EF1E40C94B5 +:10E880007F4DDB54C3E95F59E13CA7ECD0AFB70C37 +:10E890006E1E22BD82E5BCBEF4919833684F61FFC5 +:10E8A000689FDCF254D40CCE70D5A376D6F8476EB0 +:10E8B0004F907EB38AE55AA26F31D2F9963DEEFEB3 +:10E8C0001FF573FDBB461B59CEEBF717737E18A2DD +:10E8D000EF9E1172DC2EF77E6FD7FFB1BFCC55CF04 +:10E8E000FE7EB59FB58C757EF9677EEE9FB865CFCD +:10E8F00087D3DCED71BE3DB51FFEFE4488AF3F57A8 +:10E900003D11217AAF7A06EC9B19987F7132E2773C +:10E91000D5336B893EABFC9925E8CF1879C4CFD0AD +:10E920006E79F3919F52F99B6A66723ED67B3A7874 +:10E9300004E7AD17AE55837EB11873F78BFB90E8F3 +:10E9400087EBC0FDA00AB29B69FF0A7758D15E230E +:10E95000FF3EE60F15D17961EFFA80054AD958E7F5 +:10E96000BB3B715F01FD7A018BE98E7D5685F138E5 +:10E97000D0BF78F84253533AAED734892511AFAAA5 +:10E98000C2F74DD4786C2640CABAE28BC88FD35BED +:10E99000A5D3FCF99B9FAFF7FCD03ED9B3FB07286A +:10E9A0009E3F50A2BCE39CD7C1D7C2E40764E58E6A +:10E9B000F7653C7E0EDF87ABE0BD831E5A0CE07628 +:10E9C000E1C9BD3FFDEF12C78715F1F3F39CCCF20F +:10E9D000E1BCBBCE768C230A818F5FB1CF572A1D55 +:10E9E000BC3CCF2EEEE0E5629EAE69E4F3D04BAFC7 +:10E9F000EB9EEEA6F396D73D5D447E87EBC2D35ED9 +:10EA000047F9FBEF22FECCCAF3133DCE7B3A79F5F2 +:10EA10003F41FE8BCD15749EA86A30F999E990BFED +:10EA2000A1790AF9B54A039C1FBFB043B654A01799 +:10EA3000C95084FF6B12C1FF255C68C0874B99A148 +:10EA4000F145539AC715B0C108CF0F1660BCB8E3A3 +:10EA50007B5F18BFBF55A27DAAEB7FFDF202C4E524 +:10EA60006F5F3EDA89E9975E625A0EF4BBF431A318 +:10EA70008BBB21447B4F437B72B6BD2C1E357E0E73 +:10EA80005D09105EB2780A10DE6C3C414D3A1FE918 +:10EA9000C033AD2B6D3C8FE22DDAF0693606FF8F67 +:10EAA0009687A7BECECFA373B8BC787E8525E27CBF +:10EAB0007DD4CBFB13FB1FFF83AFC06E3898F36F81 +:10EAC0002AFA8F5E01F8318EE395DCA9FBE93B352C +:10EAD000DC837AFC0B2CA3E2F75F64C32AE2CF8BC2 +:10EAE000DF65CCD4B0FC2696E9C2C55D9F3FF5B981 +:10EAF00000C0B1DA973ABB10FB2D19A27825F6D2E7 +:10EB0000D8F650D6BEB1C4BC136920C00285142FFC +:10EB100042F0360EBFDD86703542F7A85782CCD65C +:10EB2000D7E21CC6A13F7CE82C67A3E5DC0F3FDAE7 +:10EB30004E809FB775D473C96BAA278DD50EE41D7F +:10EB4000F110A7E6391CDEF78D017EBE780CB8986F +:10EB50005588F8B31FFEFD6BD2E0B9786EFE1B81BD +:10EB60008BEA7B405E3F943F541C80BC1598D78154 +:10EB7000717A7B61B984FBB390AFB74A306F2EC115 +:10EB800075DB320558D9193F2BE6497780FB39A14F +:10EB9000DCC2F2F600DFF7C433ED787507DE8D5086 +:10EBA00002747FF5E1B25F9E6B8C4F9FC6DE8FFCD7 +:10EBB000C618721E16E0466C365FD793DFE5858473 +:10EBC000E5F765FDBF9FD49F98CF1294C658925227 +:10EBD0003BCE20CEFA292D66839496B0214A27B3E6 +:10EBE000114A0DA6CB9CCFF93C286309CA57E0AE69 +:10EBF0002CA47B4B410FC4302E2F94D83986DC9F38 +:10EC0000F04585E4D0BBA017D0C7F844A04CF8C7A6 +:10EC1000DC7AC017F84C5D87F33CD3F702B41EDEF4 +:10EC2000BBCE203AD8EF9F08707DFC4480CBF5BD69 +:10EC3000EB120753201F8E7E2F9040FFFBAB11A6D7 +:10EC4000E541BFAF6EFE4DD9D270B6DE43F9FC5C34 +:10EC5000D6C9234F9E8BF1A61B03E6930182234363 +:10EC6000FC69F3CBB24098FB9D7BD5379D7AE0F3EE +:10EC700081E4330168E7C0BF85C8CEBB6DAB447685 +:10EC80001E33249A4F370A3A3D943FF806EE075850 +:10EC90005BFC06CACD1B7BFD47E89C7CFF02D3D9F9 +:10ECA000DE7F083E62FDDFA6FDD31BCFE0E7B91192 +:10ECB000D0887CE66D87B14979B8CE259F83A37E45 +:10ECC00000F84816FB80B85ECD15EB99E69D1FC491 +:10ECD000313EEB6880DB3DCD5BF8B9C6E332C74F10 +:10ECE0009FB86FE5308855C49B5DEFA80DAFE9F67E +:10ECF000C73769A9A388472D7D9D2B5EE2B8D64F03 +:10ED0000F795F45DC7EF0B985E77CD2DA897A637E2 +:10ED1000DC4EF6C95D523A4EF72E7CCF4FF6C3BC9F +:10ED2000731BDEC67CB4413310AFD31B3413E52D07 +:10ED300043A706B43FF5CA163C69C5DEB8285D8C0A +:10ED40007EC3668C1F227F4F2A487EC2A7F8B9F87F +:10ED50009BC57EFADD7B2E8D9E6E9D8D6AC172C530 +:10ED6000658161E5923BF99E7CB1A77E99AB7C22DF +:10ED7000C05E04F37D6298652290EE5D6FCD43BE68 +:10ED8000DFD0C812B82E9C848A09E83711E405DE6A +:10ED90007F81EEB610A425900FE45339F389F22851 +:10EDA000A4BBE4C18548D49818BFAE8C5CD1598A05 +:10EDB000F3B5476A093BC73FC2E3A0C4F80B054C53 +:10EDC000D00EC376FB1AAA752C4F6BEC3684E7EE97 +:10EDD0008B383DAA1ADE5B42F4A8BB6C05A63B54F7 +:10EDE0008BE2B3DED8C18CF588FF3DD36EA2F79AD3 +:10EDF000DE88EFEDEF2A1BBA9248BFE9758514074C +:10EE000077E9701EB5FB06D28DCAEF5E84E57E966B +:10EE1000CEC57315AC4166A8FFF74E6A797112B67C +:10EE20006FB004AC04D165C782F9945A1148AB2A7B +:10EE3000591AE361A69724492F1729FC3D8CC35426 +:10EE4000A93C5386F368FAA1157FC27EE708BCC0CF +:10EE50008A68C35C68F7A15A9962F19F3FEC277BEF +:10EE6000E18DD2F234C2F3507EE2B79720BDFEBAF4 +:10EE70006B329E77DB79BD467EE47E7452017FDF84 +:10EE8000FD614B1CFD63E5255A06CFEBEE9D64F951 +:10EE900027C3F71B7EE5237982F40854139D582E6F +:10EEA000A43B775E70FDB3F0FE5B6DC3751DB4CE01 +:10EEB0004C142D72EC537E4B4D5C8771400B363CED +:10EEC000581F83F9F62D1107F495E0F31D78DF48FC +:10EED000DFE320D3C18EEB1B8DA71B0938F7393F29 +:10EEE0001B945C714E7DE29E16563E22E2694602FC +:10EEF000D8DFF387D7C671BFB9AFAEBA0CD7C3DDC1 +:10EF00009B9B8B90CE777F38124779B901C7370B1F +:10EF1000F1ABB0F90077791D8C0FF076973624A30A +:10EF20005CB09E6034EFA65FF39706BABFA5F5BF4D +:10EF3000EA307E6775304F9C6F18A1FB2EEEC2F34E +:10EF4000ACE12C1C7E9DEFBFAE0A727F647390CB48 +:10EF500087E5026E988B5EF9B03C58407E7FB31314 +:10EF6000AAACCFF92CF9FD5707C53E616024CEEF5E +:10EF7000FB39E5BB5541942B8BAF373B8DEC77309C +:10EF80007E3AA7DB77D16C1AF7F387DF8FA31FB325 +:10EF90006FF39EC9387E7BDC6F7C98A27DEEF20613 +:10EFA0004E577B1CD31596C17B6A58385186E74073 +:10EFB0003B04DC7639D0B3ECF30E7A7404B9BFFAB3 +:10EFC000AE9028AFE4DF65CBC5F7B9E2DC6FB9B727 +:10EFD0009CEB9FE70F5FBB6237CEA3C70309742189 +:10EFE000DCBDB9358EF076239CE12C9CA89F705C2B +:10EFF0007F10729861F031F05149807504AAC79270 +:10F0000063DCCFCB7013AC282B4FC6B503E3A0C88D +:10F010006767E37334D40B45149F772FE2DBDF304F +:10F02000A4A11BC9281FBE0CD305BE2B29BE61BCE1 +:10F03000F372C7DB608CB07EBBAB2D8077F4B00D74 +:10F040006D3AE5BFD516A734DD66D0FB1F04B9FEC7 +:10F05000088973F41B3DF77A3D28F064D753710794 +:10F06000620A9E2B09D07D2E4A6517F90394727EA1 +:10F070007F8B7D8E1FF8E40708374B8D1D3F0605FB +:10F0800092D85F7F12EB152EE6FBCA850D7C7F7D43 +:10F090008BA0BBEDBFB2E17946C0F18CE0EF5F051C +:10F0A000385FB138DFE7F497F0737976DE3EA7700A +:10F0B0001ABC0F4B63E3FD67383F56F51FB9ACC868 +:10F0C000C0CB16785CA41D07F96E1D4B9F2EBED8D1 +:10F0D000C6BB4D870D6D29CA7FABAD99D2E8628E54 +:10F0E000BF745B0BE59748C9DF201EA275A71FFF01 +:10F0F0002131FE23F6BCFE98E3BC3B98DD57A77395 +:10F1000041317EFFC7DDD75D135F06EFDF0C8AFB61 +:10F110003F5AA431E315809E6F227CF6FE3EEE3707 +:10F12000E27CFF55207902F104F6EEA337495978C5 +:10F13000CEB4EE398AF1B630EED730BEB6E2CCFBB3 +:10F14000966BBFB552433BE60329F521C2F1FE376A +:10F150003F6DA13B6859EF4C8207ECC6BFE1FBC68F +:10F16000A8F11ECA79300A16605C6DA3DF7882E2CE +:10F170003F6B7C0B16025C8D138CDB71BD71F94605 +:10F18000FF028C076D3C9BEB812F6CBCA013F5C07C +:10F19000FEA0E90FD1BA4CCDC3FD3AAFFD76EA78B7 +:10F1A000DCFB75B763E012E72BCB196F07FC140B80 +:10F1B000FD5DFC64F35140CC639D39CF43C03C32CC +:10F1C000B07D9BAFCEC4471521CE47D3429C8F2E36 +:10F1D0000989F850C14741210FBC709C27BEDB2034 +:10F1E000E404C8B51EA7FCB3E561A18FB5A05CDA45 +:10F1F00077FD83D7633CBE7FCFD4321C5FCC97FEB4 +:10F200002D9D2B7C48AB46FB6354CE7CB0AB785134 +:10F2100018E550BA7837963F08E506C621B7C4719D +:10F220007FAEAAE4BD2578CF5055394B57509A2967 +:10F230002B8571C6049C03A2DEF492C265E8A7FF89 +:10F240007BE97757307905E7032EA7FE01ED5D1DB9 +:10F25000A2FD55686FFADFDF1EE099F409DA939A90 +:10F26000B083F00A2196489CFB8F80F7FFEAFB28C9 +:10F270004B597160B128C65B011DFDBDEB18CE175F +:10F28000E0EF3B911EC1811D16EABF35758374AF57 +:10F2900094CDD7DAD99CDFEC7607425C3F0C087E30 +:10F2A000257106F371AA906BF8F4427E1AFE017282 +:10F2B000659A383F52C9FA69FD7C2E1BA4B48A0DA9 +:10F2C000513A838D509A60BA0FD36A96F08978A02C +:10F2D000D998AE0CA4BE832AA9CF9FDA8A70FE69A2 +:10F2E00052EA5F31EE637DCEEAB9380FEFB6E797A9 +:10F2F000675DCB84DFFF4CEBDC09CCBC87F3A33B21 +:10F300003E089FF1CEC7241CF1DDF6F9984F70CE70 +:10F31000E141ECEF94730EE7196FF3730BCD245FAB +:10F32000ED730A9B0B1A16D0B9850B18F96B5EDAD0 +:10F33000B8EA7994A7CA95498B607879EC38383B5C +:10F340005527F0F8B28EBC6B748A330BF0FD2B4559 +:10F35000F893EC7A3F0D1984476F9CD93FBA1F6F21 +:10F36000FB4D5AF2E7347FB3F64B114F4D3B4EF055 +:10F37000352CB7E3E3149DCBDFF1E05A9FB3A4D65D +:10F3800079BEC897377BE13E782FE7DC9070EEC3FB +:10F39000D9E31DAD17E6707DD2783CD0DF2F113D4B +:10F3A0003D71795EBD60A72742DCEEDB1E32FF8037 +:10F3B000E372C4B1FD09F363C4B19DC0F6814FDFB0 +:10F3C000E27872F3E9716DE8BA2690EBAFE78568F1 +:10F3D000FDB6EFA5FF2CC2FB21B4BC904CF11EC2C0 +:10F3E000DF12127E828E62EE9FDA94F6513CF0A616 +:10F3F000A1F9C63AC8EF8E6BC47DBB2BE7E74C473B +:10F40000FBA0C747F1CD39C28FA215EDA7F1754515 +:10F41000787CE0A693EDB3F13BAB96D17A777EADE5 +:10F4200069AC43FFC7398CECFDE6B34E6ECB81FC73 +:10F43000BDAF349153AF5A7C77EF0E718F123EB847 +:10F440008F362BB97B636936DF145BB41BE74D65E0 +:10F4500044A1FA5FDD3085E2DDFC95E8D0C3C7F258 +:10F46000F1FD2A3BCDF8F87E17CF7BF11D15FB2669 +:10F47000DEF76F47B87E8E5EB4F800DE5F725333FE +:10F48000DD5D81F37C5F11E4FBEBF0CC3A94F7F0A7 +:10F49000B89A7E65C4C2A5497F9D19B318C6D50E1A +:10F4A0003305DE9F97C3D74BB93DBB245CDF849AFD +:10F4B000F97D11A7E8F71C3EFE7E65D8F2513B2C82 +:10F4C0006141FBB9D00EFA73CEF4FDB41C6E47F661 +:10F4D0008BF38B4D034B296EA669DB0409F16BD7C7 +:10F4E000BB2487CBE5DDA67DCF4592DA3F3A9A6F04 +:10F4F000D1E8FC592C753FDE3F1A896BC417E1ED4A +:10F500005210FD0AE134177ED1BA14F9B33AA11CA6 +:10F51000FD984D2C3519E5D7A032F8CA72C417C032 +:10F520008F2EE4E88044F851F29BEFFF1AF2E19C41 +:10F53000FE3988C7AFEEF8909D03FD64C2018E6767 +:10F54000FD24DDEB13AD19A17353B975638FF3017E +:10F5500041179B6F73C5BC8B0CEC24FC14D7F2F8DD +:10F56000F77BD5C1A242C7F77F0CBBF9EB143EC8AD +:10F57000E1EBF7AEA2EF121F8714181FE2AF44634E +:10F5800078AF86BCFD57744F72B4464E5C8EB23F66 +:10F59000D142F77FF6D68AED1F36DC80E5DD2B34CD +:10F5A0005CCBB1E3825FAD3A1E17EBEDEFDFC37CBE +:10F5B0001C6FD4C80B119EBE152F1421BF6C8F8CED +:10F5C000C4635558CEF9A62F12E6F74C5EF2DDCF94 +:10F5D000E23D39BE8796154A86B31D3EAE72B0DF56 +:10F5E000F01CDBBA9C1F767694401E1D6A605F3F5C +:10F5F000B239D389E7ABEEDBE113F43528EEE8D975 +:10F60000F4948918A27A6C25F72F1E4FD9FEB30CFB +:10F61000F90FEF9D97E271A42B648AEFB9A7E63F3B +:10F6200003D3207F4FB94CF8DE916ECF457ED86171 +:10F63000C6AA315F1C5DB42E07C6734FF3FC6F4E34 +:10F6400045FEED2F9768BEC0DFCA6C3AED43DFD9A7 +:10F65000F73BE897B134C6CBE5D5F1FB49F312FC93 +:10F660009CC7A6933EBEFEA8E5FB5B7AFFC13B901C +:10F67000C87A1D5FE7EA25777F99139DEBDFA81015 +:10F680000DBAD8B7D1EB35573C0094879BE9FE5DA6 +:10F690007E5F9E0D477448CE2CC7FAF1D09165B9B4 +:10F6A000BC5E6135D137331BDEE7C5AF994CF1CE77 +:10F6B00055F2916533B2FEE0FB241EFF6ACDD17690 +:10F6C000227CF0DE243ACFE579286F7814F9F8C06F +:10F6D0004892E0549293D13F15AD3D7603C2171D79 +:10F6E000F80D8D278AFB48989A6E7843B9E69E1CE0 +:10F6F0006147980EFECEADE1F715D2BE0CF4FFFACD +:10F700005296463F6AAE38EF769F24F8ED2626F6ED +:10F7100057A1169E1715DFE343F72062994C7EB779 +:10F720008771D011B14FF5E6A08FBEDFD660D0BE95 +:10F73000C4718DB7F7FA15BC9F485DD7AD14875FCC +:10F74000EBD877827FCF0B79729F945DE7623F742D +:10F750001F6059364FE763A0DF47F6E77FA60AFB35 +:10F76000B9319FF6593B045EE901FAD0A1729023AA +:10F77000797AC83C07EDA6306FFF11516FCB01FDC0 +:10F78000598CB399F7F343745FCFBF84E3FCFEDF7A +:10F79000DA7702C8B77D3A87BBB885F357717C2406 +:10F7A00080FEBD9B7A247DA7D87FC3FD3043C04334 +:10F7B000861A9497F4E8699CB7468F64621C2B2ADA +:10F7C00074D93E5F85FB3E2DD6AD88ECDCBA77243C +:10F7D000C25F5CD0A199E3A7CF00790FFDDEDB23E8 +:10F7E000511CA8DD6E712DB40B7C712FC0817AF78E +:10F7F000F50199ED2CCD8E97EC4FC053E34A99F863 +:10F80000AAA496EDC07321CB5A18C571EC2E19FC31 +:10F81000297E77EC2E3FF9A1918111AEC9E2BB653B +:10F82000B50017D4EB33477AD0AEDCBD92DF673B2F +:10F83000B999BF5F36F0E45AF413EF0E70789A9AD4 +:10F84000395E266FE3EF9BC4386EAA15F7ADD4730B +:10F85000FA026AAD8F64EC9FF3F7B1156C07FABB3F +:10F86000B549A9A1A928DF5B988E713C65BD6EFEE4 +:10F87000B5C755318A5F0E7F6E5DA1817838DB7226 +:10F88000F38F8DE74651BF02C78DF86FE5F514BCC5 +:10F89000D119DE373673FC57D4F27499D8FF94B17E +:10F8A0005CC27BF0603C585EF704A5BDF11B872469 +:10F8B000D2DB9A81B1C78D039E7E81A42897C202B4 +:10F8C0008FBB7F0A64432130C0E9BF2E3FC4ED8F58 +:10F8D0008B34DAD70A37F3761F9193F7A01EB3362D +:10F8E000FA29BE1EEFBB361CEB85A31FF2F8D3CD61 +:10F8F00017697B105F300089F85AF4F388CCF16DFA +:10F900005573F9567D018F5FDD92D0F6A09ECEAB88 +:10F91000CD9FAFA13CACE3722E2F71EC9FB910705C +:10F92000EFF7860FF07B41E337BAF10FE331717DDA +:10F930003A2A474D7E5F7DA1675F18EBE5E13D0CFC +:10F940003585F351AECE72B60FE5F92FF1FB38C312 +:10F95000079265247F0F6C5F84FED87C4FBD81C801 +:10F9600014D263E1032D32D5C35D7DA8D72DEE29D6 +:10F9700045539C5553BA1F53D0ED560ECF5B523EA4 +:10F98000E24561F5B83F342F49F74ED87AAD77A6F6 +:10F9900036335525E8934F69869DE65C6FEFCCC200 +:10F9A00073506F870FA4CA7482DB3078AA536AC37E +:10F9B00063D7EFAF66843F5F441EF3DE5ABDFE6F30 +:10F9C000AE7DE83772ADDB7F8EF8BC58237BB65D29 +:10F9D0001DD986F651FBE361F438B307F3D2C5783D +:10F9E0001FCF7DC23EB1FB63558BC93EC6101B1CA9 +:10F9F0002F13F7399F1BA9DC81F361BA69919D3CF4 +:10FA0000BDBC446A27A1C4E3023B9969A09CB44AE7 +:10FA100064E2B3EE78D7EDC88F5B7AA47C940F5B79 +:10FA20006ACBBA50AE0DB63019E568979093F35B88 +:10FA300086E9DECFCDFB64BAAF6BF30F4DE3B79031 +:10FA40007F0F60407B727E6D7F0B96DF5B11A6F2AD +:10FA50007B7F989AA63BF08291D9DC5E668AB0A340 +:10FA600065112F268D653F870A166968B79D3DB0E1 +:10FA7000D442BF78DE40DE3C94C3463D88588C07B4 +:10FA80008C037A201F12E7A20D3C35016B55C02D67 +:10FA9000951B253CDFD996A27530ABE27EFB7377D0 +:10FAA0005C4DE74BCF3D471EC4DE3B87EACF427B30 +:10FAB000E358B34C62E5B1B4CF65BFDAEB6FF5E55F +:10FAC000F48632A8376B403650C8EFDE76E959C865 +:10FAD00047E3E98FFFC839C73E17477288E6A92F69 +:10FAE000AB4FB6E8428E0F087D52324CFAA4643B0D +:10FAF000E81321C7519F9489F90DF6D33AAC5FB151 +:10FB00002D8FECC0B2ED12C9F1B2012E8F97C787CD +:10FB10007B482EA11E90B2FA0AF413C5AFE17BCC4C +:10FB20004FDC2EA525921FC99F61FDC66D13487E2F +:10FB3000DE1437CFC2B8A59B1A94C44E232B6F0D89 +:10FB4000213FFBEA64E2AFDCED129D57B7E5EBD94C +:10FB5000A2DC58C9F5CAD93DEB488E1ADB794A0BAD +:10FB6000D8C2ACBE3B84C148C0C767B70C929E30B8 +:10FB7000847CB5E9C394C469EF8FE8DCBE631EAD35 +:10FB800023B6EFA3738D9B62B76932E07372447240 +:10FB9000EDF34F144328D97E84AF735672BBFF58E0 +:10FBA00051D767711C5D3B9669B80E2D4E703D14A0 +:10FBB0002E59FE5D94931562BD387AAEBEA599CEDE +:10FBC000694404FCB9352326B6171D5874ED396411 +:10FBD000B70F4E948C2C9C87C3B97CDD51336C528B +:10FBE000792D370D77D7257B701D77534C269C8652 +:10FBF0007BDA090E58F7E892C34FFCEB700E5FD723 +:10FC0000D5F275D0E601BE0EEA52F9F9C7DC844C94 +:10FC1000EB1FB936B56D29D20BD6A7B86EE8969210 +:10FC2000D7E3FA11EC47AE3F625C1EF44D9A4AF7F7 +:10FC3000256F9995A6FB8453C2AEA27504D8F137FF +:10FC40006DFAE265E8D7B1C7E917E38C9478C65935 +:10FC5000EB1EE7B539629CB5437C9C357C9C50DF3C +:10FC600035CEE34A86D6AFC7134C5F67E07A0ACA3F +:10FC700063B80E7C3407DBCBB6637D16E910057CD8 +:10FC8000201DA203CF5A58EF26F80EDBF1F2C33B3A +:10FC9000024FD7A24F62D6A9F6F999E29D1ECA6714 +:10FCA000425FDABFBBE2D183017EBF7DD8A397FE5E +:10FCB00016291DF5C7592E3B78F0D3C4470FCBB496 +:10FCC000EFFD462EF7D347623C4E09DE5B13D0CEE4 +:10FCD0008594F4DFA0624D73F8A7C2356EBD707DC8 +:10FCE00098B9F879743D2AD6A14C1932F979D8D44B +:10FCF0006CE7EF78FC32CCD7EBBF0CF37DDF6E699D +:10FD0000D824FE1977FD29915C88C6E4F4E5F067F4 +:10FD1000F7451C2F5B66C9743E2B85F315F7878B5F +:10FD20005EA375686FB3C6EF7D662DB49FDC7C560D +:10FD300080EAF7CDE2E7B906333BC98FB531FDDE86 +:10FD4000C165B4DEE2E7CDF7ECF86E4F197C1FAA6F +:10FD50003467F91CF0E6568EE377C08B66B87F4EA9 +:10FD6000E27AC24EB9BEB0F3DEEFFCE87771F87903 +:10FD7000545D277D98D8F7EE418C15EBD48B295E26 +:10FD800075714416FE5B71EF743AC2FD7C19FE7BFF +:10FD900002B69FCD77A89BDF5393FD9D83C511FCD1 +:10FDA000AECE7D3F8DED7FEB525B9288A7AE59249E +:10FDB000B15804FD3861F45FB01C14716AE5A259B2 +:10FDC000EB1CE3FF1AFA9BD0FF59A7115DFB66BA43 +:10FDD000FD77B744F8BDC32B843DE16349BA8F1268 +:10FDE000E0A5752BC047FE4E76A5E43D3FDA8C704A +:10FDF000760D352611DF4A3819A832B2F49915E18B +:10FE0000FCD1A78EC475D277A9A48FCF53F23F6DD2 +:10FE1000AA1922E3A84BE5FC923BE067D8AF5CCB84 +:10FE20007FD769A2F057BC8EF78BA3FD206EBF0968 +:10FE3000C5AF09A03EE856471AD05F6ECB1DAFBCD8 +:10FE400041BC60BB9D691FE9A34E96EA27BF00B481 +:10FE500082F26B50497E1AE54A638D9E70E2EBDABE +:10FE60001C4EB746C45798F375A3C3CE582DECA4C7 +:10FE7000062117D4213EDF682639EF97AAE2F7451D +:10FE800028037CFDABE17DA265597C3AE8FD4DA2DB +:10FE9000F7C2B1E9CD72381E1F1B2AA3FBB8C7B346 +:10FEA0004F6D3BD46B472E0A1B22EE08ECC6EAAC22 +:10FEB0005D69EBC36E29FDDB8B711E7D4F33785C72 +:10FEC0006E2A8E76976F6A98E2701E520643D5644A +:10FED000CC5AFCDC7A868FD7C7CCE4D74AF1FE2116 +:10FEE0001FE5D5ED12D94936DF38F8DB3BDE2BD1E3 +:10FEF000DFE2E5277BBC57DAF2F6642933CF72AC38 +:10FF000007EA47FD0312DA53AFCFE37776EA27CB50 +:10FF1000A9DE18FE9A52B40FBD7E1AC68649AEFC01 +:10FF20005FF967BA8A0A25C4C3FF817FE650E434CB +:10FF3000FE19E6F1BB78FD355EBFCB78FE1BDBDF3B +:10FF4000828FD36FE3F5BF1462C0E514F4DFB4070A +:10FF5000F1BEEAE3C2EFF7934D47175875D9B811D0 +:10FF600035C37F774159297EEF47CC235B8EDA7208 +:10FF7000750C395A94731A395A24F86CEF3A316F68 +:10FF8000624C413DFAD0C3CF0630DEB440C8EF51D9 +:10FF90003D8BFAD5A14F23A85F679C59BFF6D73395 +:10FFA0009A1FF9621C79233CCD1FE6F792E5319543 +:10FFB000D27E852DC47EF216BAF174DE535EBB6329 +:10FFC0001D6F3760C6AE427E5928535CFE0507DDC3 +:10FFD000F516963E1FBB1AE892BF40AEE6FE7FF1D3 +:10FFE0005D98152C467AD52BF4DD85C7DDDF65EDF0 +:10FFF00061515FE7705D72F20CF562DC7FEF85FFA7 +:020000022000DC +:10000000D2807F6CF8E366C1E76359F82F8FBBEBB2 +:10001000352C7DBEE0DAB1E02F61850D3559F83F12 +:1000200053E93F3D5C0687FF73B567A8573E36FC32 +:10003000572F1C07FE4A76059E5FB9B6E10CED0A04 +:10004000BA7EA1F9F4F5BED4EAEDC7E2EB91981CB3 +:10005000447EF623FFA09C652AA5FE1171AF9DAEDC +:10006000925CB3FB514BDC741A9F7FACD8A21A5A36 +:10007000A7535CB1970FAE9CA9129FF80B64FEBB0F +:1000800035A3FC23E816E3F83F235F08FEF1F2C135 +:1000900078FCE385DFCB1759FEB10AAE8965E1F73D +:1000A000F201D871C43F6A497962A3F33B9B7F6236 +:1000B0009CEFCEC817827FBC7C3006FF103F78E1F2 +:1000C000F7F2C7FF37BED055922B7EC6F94135FEF9 +:1000D000B77C91895DEDE00B2F7D93F31610FD4FFA +:1000E000E50B410FC11767A4B7E00B2F7D3F2E5FD3 +:1000F0009C4A6F9B2F38DD6DF8BDF44DADFBAACE49 +:10010000E3D146F9E1E3D1D700FA863FFE7C674EA2 +:1001100078CB4EA5F399E9CBEF2FD36DFA1A9CBE9D +:10012000BACEF5859AE069B74D5FF3E3D1B73B00EE +:10013000F29FFCAB1C3F5E3A2DBEAA93E8A87BE879 +:10014000DB1D167815F43D13DDBA057DCF249FBB6A +:100150006DFA7AE0F7D26DB43EAECD6259FFB0973A +:100160006EA9756AD049DFEE9296851F876EDD1FF6 +:10017000733E32D34DD7F1E8D7EC17F7E14FE0BF2C +:10018000DBE32FD125E77DBAD128B72F42687B6109 +:10019000FD9CB1CF97C644BD45580FFA6F8EBAE3A8 +:1001A00096ECB428CAD76F7789F67E25D2BDEB933B +:1001B000CD68DF3CBACF285A143E753CDF5C67FF40 +:1001C0002E97212D72C483CE88F275CEAB6D3A3353 +:1001D0001DBF73D8DF3BF332F4DBE4F7CFEBC2F49F +:1001E000C6DEB3983906BEF24E4E21BB3CDB5F9AA9 +:1001F000DBF50B74DAEFCE3B3995CA5F6D0B50FB24 +:10020000D83FAE934F6D3F679CF68BCED07E095F93 +:1002100017C083E77AEC78275FF4E937703DD95946 +:10022000A219E8B7B0CF1379F109F2869FF789D503 +:100230009BC30E7A5F11E5FE2D15CFF1E0EF3FEC89 +:10024000F171FBD953AF5DB6E3D05371275EAF12A6 +:10025000740AA415E16749C59DE70E3A04DEDBA5E3 +:1002600004FD5EB13589FF6E65F745EE7D801B4468 +:10027000BDD6E8A83F91FC0C6AF88583E8EF54ED01 +:10028000B8B098E28A0B6B97C5FCB98DDBEBDD1536 +:10029000EC01F93C8A0FA4B8CC2E5887D0794F29AD +:1002A00060AFB7E83CAFEDEFECDE07F62CFA372392 +:1002B000721AF7F5262A6CBF1FCF25C4F9B98451ED +:1002C000BFD7123E3FBBB6320B7F4FA60B4F8BA260 +:1002D000DF6229DFA7EDFA90C3D1759391A6FD26C1 +:1002E000D3346285D97372F85DFE791C7F48AFFB09 +:1002F000E2DA4CF44BDBE3B7FBF39E9BC2B819E6A2 +:10030000886F1B0F0F8C25E87793D4B0A6A3FFE668 +:100310004C78BB21CAE7DF5551839FC7D8A5F1FBB5 +:10032000BF276A747F8B4DC7B20D0AC5C9BDCB42CA +:10033000091C677B5E8B1F43AFDB6199B5C2E18708 +:10034000ED6833EA9CF1B81DE3C455ADCFE7F3FF88 +:10035000C13C7EBFDD5EE9D606E739BA8F74CE8F29 +:100360006F0ABE6235C9008F17EDF84FFC5D992EFC +:100370005D36106F3DE91B03B82FB12B2EEB928138 +:10038000E9A2C0CDB40E9075DCF3DC155F4FF52DFE +:10039000A88FE3D9AF37D279EC8E5EF97C8C7B02E3 +:1003A000025D39B330BB2EDE552F733A57B2740558 +:1003B0008C6B6B7D7531FE2EE4543D7F1EDFFC6A35 +:1003C00091296E7C80B17BA07CFF668DEE95E9D78C +:1003D000C3749F417860C8445FC92E8905CB69DD2D +:1003E000CBEDB1CB7C61CAEFAE5528DE6ADF8E6BF8 +:1003F0007EA6423B5B4D99EE21888ADF971B8A9649 +:10040000727F04FECE1CD06BD70EE50AFCAEF29CC8 +:1004100072E29F3D3B34BADF6ED78EAE62F2CFD729 +:10042000B9EFABD9376F7631EEFB846BDCEF775DDC +:10043000972C467F52E8947B2F80B36667CFC91E06 +:10044000B84B93F07BC5730FB9DE3393E2B4596FA9 +:1004500098EEBBF839CC53E49F3DB229D3EF1DFD94 +:100460008E9FA37E606B97EBF76D5E8C713A76B4CE +:10047000B10ADC4FAA2C9593281F3A457C821216AC +:10048000E73604BDBD69D986FAD3DE3FAE06A6D4F1 +:100490007538EE09EF14E796147D48C67B9FA63C9D +:1004A000A6CFCC01F8A7F41A4F0D039CBBA74F9E13 +:1004B00089AE239BFF5EB8EB9AEB57C0FBDBF6726D +:1004C000FA850EF9E9DE811C110FB97B1FFF3DD8BB +:1004D0009CD65805DE9318320A2BF07E44553779A6 +:1004E0005C64AB5681E7922EFB7ED5697FDF686343 +:1004F0009B5E81F7520EB40528B5CF977CEAFB5777 +:10050000469DBF6B25E9922BCE5169CD4938C7571F +:100510009007F8233E4CBB7E3FFA87E23BEFB915CC +:100520003BFD7F328441EA00800000001F8B080001 +:1005300000000000000BED7D0B74545596E8B9B730 +:100540006EFD924AA8AA5492CA8FDC0A09040D587B +:100550000901F9D95E4280F0B1BB025183A256F87D +:10056000060824A08DD88D43010102060818BE0F8D +:10057000B5428C8DB43AA1C70F4D63BF12D046C7A8 +:100580009E89766BAB8D4C408746548C9F6E993715 +:10059000DDEDDB7B9F73935B4522F89CB7D65B6FE9 +:1005A0004D5CAECBF99FB3CFFE9F7D4EFDD229317E +:1005B00096CC182BD6D22678186BDD69716E86E43E +:1005C000B8F2E2F445C58C9D6BB438AD2A636D5B1F +:1005D000066E9D05E9D01B269607E56D3B47A4CF27 +:1005E0002F60EC1BFCBB19DA49ACB2DD90D6BFAA78 +:1005F000E8FF605A689FE48786ECE2E4D7BD90B6D6 +:1006000087F6314C87CEF2345463A3B1FCC3C99A48 +:1006100003D266F8673A63594D4F4F0E41BF075DED +:10062000A13B6427635B37BDB5E9E42848E785DE75 +:100630009320FD6C128B948E84B48FD7DFFF706291 +:100640004308DB0FE1E996A40B9331DD2AD6E36979 +:10065000B1C0A420DD52EF66D06F73796E7F15BEF6 +:10066000E70AC35E06FDFD67D383A76C69504FE2BE +:10067000ED190B9669582ED2839CF794617FE3CADB +:100680007377CF02786DEF30FB113EE7CCCE4D98FB +:100690006E05F8AC81AAAD5981F4402FF0685CED8D +:1006A000CD6B84B5D5E337AF273FC1EFCD7B2A9F14 +:1006B000D1DF37F0BFD9199D6E9502E908AFFB6114 +:1006C0007C05D6DF660E10FC1634DD58A6C07CDB38 +:1006D0001202E9088FDB9B6EE0E96431FFD0A032A3 +:1006E00084675B1A4FDFEC1C5086F08C9D47ABD9BA +:1006F0009FEE2FB88679887AFFA7EBE80B0ED73AE2 +:10070000FEFFC7EDEFF03BAEDEFED7484FC3BFA5FF +:100710001FDFB5F5F37DF1F1BFDBFFDF6D7FBF3389 +:1007200087F8E6D5F18151BD389905DB61DF775651 +:1007300094D8AB1C3DFD3CED91095F9037E09731BB +:100740004D0A006F3CB769923D08F8BA9D55BC66EA +:100750001DC0587E4B6E6210DAE5974F8FCB033E7B +:1007600059EF416E0BDFBFAEB34DC174B3EC5CAB60 +:10077000427D2794039F6B8234B2C4264F891DEBC0 +:10078000871A653FCA85F51ED93EC7303ED42B0B6C +:1007900043BA499B1E252FDA84BC604C8958A1BFFF +:1007A0008DB9390736FB7ACAD77AB8DC686E98F10A +:1007B0005E3E94D737CAB4E6933B279EBA19C66B00 +:1007C00073CAAA15EA9F74166D1E89F3F3CACC0A80 +:1007D000E5039DD3A70C86B4AB4CF6ABD83B53CB0B +:1007E0000743BDEBADC15337433F4A86AC8620ED8E +:1007F0002AAD9319A4FB35339684B2A3D1CD580A00 +:10080000634E1B87ED061628B1E3BA46327F1BA460 +:100810005F0AC0F8C8EFFD2C8CE3C25F42E10868B4 +:100820008BFF828126FE63A63D17CADB4AF93C9402 +:10083000D3933F6243199BE2F1D13A923AABA6615E +:100840007A7B73D16BF9D0AFE356D98FEDDCD394BB +:10085000739DB69EFD4C1C1B9D664AA01CC7DD7C8B +:10086000ABC23603481C0CCAF5FDF7E1FA0CF50DD6 +:10087000F04B0ED8F2720DFDC4E73BA3D23F57EA0E +:10088000FEED41DCC70E933F84FBD8AED0FA5A9DF3 +:100890002C2C413FE75E668FB31B40DE36F2756F4E +:1008A000D46CE1413E2107112EDB9530EC216B7BAE +:1008B000991DC57ADB5F667EA91F019CCA9D1BDC62 +:1008C000619CEFE1A72DCC8DF5131CE13C487FBC6A +:1008D000DA3FB61E11A56937C17B918DC3CF24378E +:1008E000F919E0E126A6E5301363A79E59D4340E2A +:1008F000C65DFE5B931FE179F199295E2623DEDE5A +:100900007E07CEE7C2810466A27D70CE9C0B69A7EC +:10091000DBEB47BDA51EF506D223588841DF8BA12E +:100920002F2EC759C8067878CEAEDE8D72F384E7D5 +:10093000AE2928E79F8EE3E5479BAB368732416FB0 +:1009400068B9291FF580FB778CD9642F646CB0558A +:10095000EFCFB4791CE0EB6159D2FBD718E81DED5D +:10096000A84F50FA47AF95C2DA9DB2A81F2ADB8C78 +:100970007A43F5098B90C31971E3A0FC70897398D1 +:1009800017FA4DF578A6D8B2B03F7D7EFB6C25D81E +:10099000BF85B78FF7EC2B0B8D65AC7040FB999F33 +:1009A000C0FAACF75BFC0798181FF76385E5C00138 +:1009B000E94AFDE2CF499CDEDB8B5919D217CCAF57 +:1009C000326CA0BB5B924C848F33C5B73D7C93AC3B +:1009D000025C06284C43FE01304B9A86F4B5E5C014 +:1009E000E8CD063E35CD1547F5ABADAC0EEB1DE9B8 +:1009F000941F227C6976BA701FE4E6C0DAB390FFD8 +:100A000067B79BC6CF8B4C4F9750EF3AF8BBA2020B +:100A1000A8177AD6417AE3C58333F69970FE0D564E +:100A20006682F99F4B70543E01F5D687AF2F453C47 +:100A3000D2C7B388F96D6C2C6A5F09F3B9E87038D6 +:100A40002515F1D65F89F8F57387C5199268FFD32C +:100A5000909FE5CA61D27FAAB73FD3500FFB982B76 +:100A6000E0D899F46C03EA3B9B02FE3809F13D5350 +:100A700066D86EA367BA0D88893D326E397D377AA4 +:100A800072321C50BE49B3A80CCA9BC6017F82FCBF +:100A900016459BEE83FC96268F14527BE6674338FF +:100AA000C3FC5A5187C5F57918D1C32117E005CC8D +:100AB000EF50326B5D0770B13A5911AECB9C59A71C +:100AC000698E2BF72B55EC17031DD831824882E82D +:100AD00021A5F4ED9F22BFB860E998B900E1E58A4D +:100AE000F31F80FC367B479A04FDA7B8E3645C479C +:100AF0002AAE0640552FB3A938EEFA4CE65C83F9CE +:100B00000DD69009DAA73458CFE2773DD231EEEB1B +:100B10005C16C6F5A536CA67AD8950DEF9F96A1CC0 +:100B2000C7DB2C472C587F9685A906F9E23DFDD1FD +:100B3000DF58224E0FF20D7C262E31B0C905F3B6D8 +:100B4000663A25941BF8E785F9C7B1EE3F2F83B4C9 +:100B50004524E21AE59015FA7F7A0DE70F1BD7B00E +:100B600030E2EFB9E7D853081F8BADB1C39448ED1D +:100B70006D2B8B0C705D057085F12C0D1B97E13A88 +:100B80002CF98679C0FFEF26A5D03E64B24E09F954 +:100B9000C72312DF37629D50948D389283708C2466 +:100BA0008E41383E2817211CC9F680F921CBC2722C +:100BB0007D3F0EB9B8DC89ED4715FDE8E9C744BBB8 +:100BC000C327DD5311BF1F0BB98B90D5C03E5473A3 +:100BD000B9C6FB4FC67688CACE386D30CC7F6B1253 +:100BE000D7DF0EC7D555077AC1878745F9FA576110 +:100BF00063012E87D7AAF75621BC4A6486F4FF9278 +:100C0000C6F7F15C29C821849FC6E1D9D4CCC2289B +:100C1000D786FD56D924C37C32C7C96ECE1F018644 +:100C200030DF04FC07346DF20718E9871EA6D98768 +:100C3000223D042A711E4C714AE54388FE990CF34B +:100C40008E17F5134A43CB103F9A6C4EBB13F585B4 +:100C50004CFF945C1C6F93E43C40C008C8E5093D20 +:100C6000707108B8C437433BD84F478344E360BF33 +:100C700088DC89583E00F9DBF3F74B58AEF16FBFC3 +:100C80008A68BC4B1819BDCFDB053CD6B8E3082FEA +:100C90009A9670394CFC12F77511C7A7787F743F8C +:100CA000190A2BB31421BC9D6973118E9BAD0CF7EF +:100CB0003F3B14DD7F7A436A09E25F2633B487FE47 +:100CC000BB5C2EDA8FF453FBA7CBB08EB66A269BA3 +:100CD0000069325848AB2EE2FB83FAC6C61499FA73 +:100CE000CDF0B84B908E002E653EC84F4F558B8C83 +:100CF0007CD4EC09B0A202ACE72C1908F57EEEE634 +:100D0000FB077B44789E71AAEB5E84777A4DF43AB8 +:100D10009891FE4C574F9B6D89A178E8C71C43B74B +:100D20007F72FB841EC8F102C51BF21BC6020CF9C0 +:100D3000E8C544FF6BA86F855628FE36C847DD2CF2 +:100D400013E6687E4A0EA5427FD6A7381D9BDB9529 +:100D5000D0A04412F79A05CB33FF6E35CEF7E0737F +:100D600063D351AEB49A391D99847EDAADFFB92DA3 +:100D7000348F3637E7A32051885E5688B996BC90E9 +:100D8000391EF9715B1623FBFA821CD8178FF37A90 +:100D9000CF8ABA23F45FB00ECB5D1AE81D06F86E59 +:100DA00054EA6CAE025A5258F67EF7EF7AD47B6062 +:100DB0007F5B855EA3E7B745D62EAD62B89ED008AF +:100DC00027ACC3159175BD0229D2A817846C20B732 +:100DD000079B422B16823C3AB563F164E76094FBB3 +:100DE0004CE805774DD650AEAF9344FB5B3761BA04 +:100DF000470F00B2B3F5E8018C2D995C0DF2AC30D1 +:100E0000536F3F63B206406FB7E969F555D433EAD3 +:100E1000CDED23506F2976ED6BB08D8275D803959B +:100E2000C8E32E3DFCC564A39EF3EF495F6F423DCE +:100E30006788A9E33A1BD4DFD53478536916D2A763 +:100E40003F2E907075F8B42AFE385C7FAB58FF28AF +:100E5000B76FF21AE5EAFBFD23DC6FD867979BF3C7 +:100E6000D72126AE47C4F2BF797A79ABA50EF596A5 +:100E700092410EAE776FB9ED71E47780177B110F59 +:100E8000D6BF3BD38CE9396E45E04F600FE6B7BE65 +:100E90006B253D19ED719AE773B364644A79618BF0 +:100EA000867648EC7AEE740F263CBC629D790EA2E1 +:100EB000CB83CF39C20C48E6E9B5C0AF7BF1E7DCA4 +:100EC00027E6BB7E35200211935F4638E6260734BD +:100ED0001C77803718C2AF05EC30AD17FB4FB99CBB +:100EE000C1B4A49E748B5363E897522EF7A7FC07F6 +:100EF0004C81156E98DF07B907163E04EDF609F927 +:100F000032BA9FB6D20DE3AE93B56D65BE2BE7A5A1 +:100F10007FEB57AB635127EE4E8BFDB942EEF4E306 +:100F2000EBF81E768146F23A218EF8589F76C10E74 +:100F30004FB75D407C6FBD1CCEF37D8B5D30A05004 +:100F40004579613735D9F09B2BFBB78DF3A17D70C7 +:100F5000F4E221B40F9E8C27FBA05E0A3DB312ED94 +:100F60001133B707AA936C347FF8F3A17CEADB2E28 +:100F7000D8DE50567075BB20965E8A34A6217E2A34 +:100F80000A2B45FE7723F271809FF924D7AB141505 +:100F9000F86422E79BF8B578FC241775BEA2841587 +:100FA000AA673A0D7A1A7E1B3790FEA338030CF518 +:100FB000A90596E00BB8BFC0161584874DF069935C +:100FC0004363C182BEF9C57B3BD22737003F518EB8 +:100FD000F1714D27E3480F542296B334CEE98D1DAD +:100FE000940E6FF91CBF269C07EA5547024C5269C4 +:100FF000DC5768DC677B1F57E75B87767827235CC5 +:10100000DAC30934EE6B3B525E0D29BD8D2B93FE86 +:10101000790DE3BE8578CE227DAC57F0CF5FED48E9 +:1010200025FE052654C40A30AFDECDEDAF533B524A +:1010300026AFC9FD5EEBFE771AFFF53ED62DF8EF21 +:10104000CF76646C0AE5A21E5B57D91B3F90DD5C2E +:101050009F8F95A36694A3455C7EA61AF0C28A7200 +:101060007468DF72345EE055753CE797C7BAE4F800 +:10107000F7C8EE4A71210AB72B01B2879D9929D290 +:101080001AA08BBF0A7BC219BE8BA15F5BF6A81B9F +:101090003AD1BED9549ECE8CFE7AB4C390FEC00E17 +:1010A000CB233BEC34B7D39EAB61796A8F3D76F1AD +:1010B000E0BD36C4C70A17E7DFF16E27F56F3F5171 +:1010C0001464DC2543F0D2F588F47EC184A464D492 +:1010D0001BB89E60CD645290F4616EA77D5F7B6902 +:1010E00099D0CFDBECFE2993D00E2A919D48E7BA28 +:1010F000BD03F6851DF5D38D3B65B297BBED1C6135 +:1011000007E97655BDCCF9D1F666F900C2ED1CCCE5 +:10111000CB0E7C6A7B63D1EFD0FE5D5FA7907FE64C +:101120000A7BC8037612F4D7D4609A4A7209EC2D70 +:10113000B4A7BC73A3EBD9FB0587221C1CA532E91D +:10114000BF6DF907C8CE8CB55FAEA6F7C6EAB3B1DE +:101150007A6BE6CAE8F2EFAE3772BDEF5AF547FC9C +:10116000EB4D6F243D96F891B409F511B2F320FDD3 +:10117000B15B227A053E40F8A09C8CA37D504E6F57 +:10118000FC1CE9D2CC824C9288FE6E4D42FAAB91A7 +:1011900014D4036DDDFD6B0CE569AC1F43FF6A02DF +:1011A0002F63F973EB9681FD11EFCE99D5BBD1DE9C +:1011B000F985F0AF3E2BBE59C28FAE973F2FFCB0E2 +:1011C00047FA283F2ACA8F896F6CF9AF45BB481F81 +:1011D000ED8F8B7627FB68FF8A6877AA8FF2D7445A +:1011E000F9EB7DF4FF2FA25D471FEDDF14ED7EDFED +:1011F00047FBB745BB77AE28E7FAC27BA2FC744C2D +:10120000FF6744FD4E91AF3A55EE17E9E3BC4DB789 +:101210007B310FED4C52DD06F4ECE73FB9E46EFB99 +:10122000A47E448F3DA9F30D57310BA37F43B753E1 +:10123000757BF20D171FD7510A762D65B613DEB4F4 +:101240005E053EABD0813B9CCE0BC91F8D7833CF62 +:101250008067A124332F2FE470E859D740595F9756 +:101260000CF90DC26E57859FFDA0ABA7BF3986FE56 +:101270006A845FABF52A78552DE6D57A95FD5F999E +:10128000C4A2FAEB0B0F6B62EAF5850FA19871FB14 +:10129000A28BB931F59E11F5DAC57796904357C305 +:1012A0008758BC6A157A5A96F3E4263AB7BD0A7D88 +:1012B000DC27D6857F46FF83A351263C48665D51D7 +:1012C000F891C83AC81FA3E387F9B28F69C330CD3C +:1012D000E5536212AF6756020CED07F3E55C2A9FF7 +:1012E0007D9065A25C6A7A0E660F72627643B91CC5 +:1012F00084F6EB9F030609E93C2D4542BEE7F2ACBC +:10130000D0505ED69CECD07C893DFB5E2CF0FA6A16 +:10131000FEDC9AC7DFBB4332B41BE3E2EBECD61B27 +:10132000B7A648083717DA33BDF0C31FB96D54FFAD +:10133000F3386D32EA71D5FDB85F908D674ED4CB2E +:10134000415F93507F684B66E44F953DA03F40F965 +:10135000EC4C0B9B8476849BAF3FC2C63B0A51CFBB +:1013600068E47E2D5D7F186C727E89FE5B96645307 +:10137000517EA31E86FE15F89EB4C277A08BEFC7E0 +:10138000F7D0C38A5DDFA287158BFEFF0BF5EC5CFF +:10139000CF35E9D9BDFBE7BFC73A8779BE55CF76D0 +:1013A0005DCF60ADC5DBE337AB69578EABEBDDA33B +:1013B0003CBB4F7D4FBDBB94E6D1A7DEFDDDCE2B00 +:1013C0005A8B851D986F233B304961DE24C00B6624 +:1013D0009AE6C7F3BF2E27E77F573BF7BADA39D72C +:1013E000D5CEB7EEF22478CEA313D3CFFCA8CF4C42 +:1013F000FCC7821D6580E7CBDF30913F6965D30A6A +:10140000AB9D5D493F66DB80B1F540EFCDABA17F81 +:10141000E033EBCD9C8F6F5EEDA434E83B93915E9F +:10142000E2B6BA5D68C7BEECE1FEAB971AF9B9DE69 +:10143000B90A99C7839CDA5986E7A45F69FC1C75D1 +:1014400067C5DAE90897E606133FF76858D7301200 +:10145000D2F91364A74935DAEBDE3CA3BD3EC813CD +:10146000440E01FD9690FE58FFD7F136949F1B9DC8 +:10147000D3E350BFD7CF57DB9AF9B9EBF60AC87759 +:101480005CFDDC3576DDBF7772FED4CAF8B9D1F5E4 +:10149000276696633CD0EC4677A19DF4B000F987AF +:1014A000FFD3C9D7ABAC34E57D08704A46FD1AF0CE +:1014B00069B65363C8AF9595169ECF0CFB837C0528 +:1014C000E500F40F5D842437F1DBBC5C7D7F4D7D4E +:1014D000D3B34EBF3A5DEB746CA0DFFD84BFB3A203 +:1014E000F5461D7FF5F3B71B3DBBCBD03E7C5AE2E2 +:1014F000F66BD8B3B301F552B3CAF5525DCF340BD6 +:10150000FAE8D6574F5B899ECD9E208D6718F7E786 +:101510001EE453A758AFFAAA7E0EB8DDB38BE2855E +:10152000762AA1E9743E135618DA1B2F79A697E1A3 +:10153000B95293C097A65366B247BE02BA417F1311 +:101540009EE3077BD9271D3F24215763F14497531E +:101550006DDD72CA25058790DCB260BEABF93686B8 +:1015600076955903395570A59CCA71F1FDCD713935 +:10157000E9DB2D8F9CDCEE638A3F1FD777D01CA25E +:101580007897E32D2BBC645FFE3298EDEC65BEFAD4 +:10159000776F3F55C8E9901DFD6BC070ECF2488233 +:1015A000974302F8D530FD6F19F9817F2C70A7069B +:1015B000CFCD61FC0926EE8F8B7B5CA2738FC5219A +:1015C00085F0A326B476994CFB172639EA7BDCCC50 +:1015D000308E00CA691FF5F68BDBAD2C62E00F4B35 +:1015E0009F85B4C14EF2B146E28F0B014C1103DF6F +:1015F000F1E1397E229647E733D3AC7E8807760443 +:101600007ADA95EB5D79BA65CC4943FF9FE9FCE84E +:10161000467623D95DA27D5FF0FA7A7578CC49D8F9 +:10162000E71F48DA9F09BF31B86014635BAF63C43A +:10163000DF63EBA35B0BE13B67E578F601D0DFF3FB +:1016400016E73805EDFB4725F23FAC8DFFC1440599 +:10165000FD6217606848CF7960F130A4D3A51D4DB5 +:10166000E313519E374A85E87EDB79BCAED009E9A9 +:10167000AEBB1C37A13EC21C9A8AE7925502BF3FFF +:1016800031F3F2D05D8E4294FF5515DABB881FA965 +:10169000A665854D68E7FF155607F5E789DD7CA14E +:1016A000B9DCA202BE2C50222F4930EFAA59EA48D9 +:1016B000846755BB5DC36FAA852976900F5536A602 +:1016C000C4C137358ED928AD301BA647AC65F7208D +:1016D000BF4B1C19B05441FF55C77EF667AEF48767 +:1016E000091FAB8EBDFA1F68CFCFD30216D44FAE01 +:1016F0003F6811C4C8E13EA43D3A7DC391E87461DE +:10170000243A3DEC5474FA61843DFCFFABBFDDFB31 +:101710006F0F023CBB7E6B22BD6D31B0A31F001F5B +:101720007BFE3AB02970DD4AB83F8E0FE6308B035E +:10173000F85C3C9440F12C9756FBC79602608F5F93 +:1017400090C907B4F850420B9E5B3DFFF70FB6E21D +:101750007964D7D3F174AE3B7EF153CF3C00E98F6F +:101760009F8C7751BCC3DE171E457CBEF8F420B2B7 +:101770008F3F167EDF97DE3B7A7E1FE42F7A26BEF0 +:1017800010EB7DFCF40B03112E8B7EFE627F8CFB35 +:10179000B978E8E723287DE8C9A1F8BDF8E4CF06C9 +:1017A00062FEC7C2DF113A646DC17D5BFC94FD6CC3 +:1017B00012C0EDFCA70E87F1DC5DFF5E6BBF8BB145 +:1017C0005FC41FEC17E9EEA98D1D49486F0713424E +:1017D0004906BEB2E8E0439F1BD3B1DF4507F97C61 +:1017E000FA2EE7FD2E02488F04B89F177279F14157 +:1017F0006BD47E0DDA13BD7F83C3D1E9DA4B9553E9 +:101800005C304EFEA559535CD0DF2521EF62C79BAB +:101810009FCCF5EEDA23D1FD1F557AAF5F93CCE56F +:10182000673E9E781BF844BAB5F7738EE5A2FEA119 +:1018300043DDF54DDC1F0364067AD862416FBFEAD1 +:101840008E9362F765005D2D469ACCE9C95FCC0C9A +:10185000EB23FF8CBF1FFABBD393391FFFDA0CF4C5 +:1018600083FBB53A38EC43E027E757D70D2E35E830 +:10187000170BF6576D4883FDAB399C5788C3EBF9BE +:10188000D7B59B49EED63C792211E5C5C5832776AD +:10189000CD437C6C37B37895F25330FF93F69713B2 +:1018A000EF84FC057B7C85463D66C19E1F0F2E356F +:1018B000F0BFEF4A973A1FA9717238BC30B2636229 +:1018C00006E0EFE23D921FAB2D6EBF75C62D887707 +:1018D000FB4D7EF4578E5058C05484EB78EE9574CF +:1018E000C8AF7D71F8085C0F745181F99BE5C0D4D5 +:1018F00021C8B71E35533C17E49F92018F8EE7EF46 +:10190000B09C83753C21F67BF36D8E6AD49BA0BF9F +:101910009332B44B7C5CD244FA1DAC7FA1A43D1140 +:10192000EDC78FCC8E063CD7F828A1EE77388FD044 +:10193000D3BC5F16E1F35E28CE2FAA8F99498F782A +:10194000FEEF5FDE361AE9BDC5E443FEB1604F34F9 +:101950005E39B5260BCA836AE8DB0BE35E6C49A0EF +:10196000FE2F2687FBA35C7DFEEFAD6790CEBA9E6F +:10197000B4CAC6B89FEA83BFF90FE4AB0BC3D1FD6D +:10198000C5E2C53F274BBA9D9C6FC4AF2BF1872999 +:10199000CA889EF29A9520270CE753351F36595076 +:1019A0000F5D38CDF2ADE37D79FA8581AA4C781AC6 +:1019B000427B3174D844FEDE8F3FB510DF5F7C1D63 +:1019C0002B55619D4BBDC3C69642FF8BA7B3324CCE +:1019D000C39F6483F12FE2BF06F0349D0721DE939D +:1019E000BF39B2750CE0C1C7BF30B1CD30BF743C58 +:1019F0004704F81C65914419F95BBB49C6712E5E1A +:101A0000000510E0F2893392E8463AB9B099FC8DAE +:101A10006BDA4F247662BA3D89CEFBFBE237479FF3 +:101A2000B6CB32C0FF930B4FC4B35EE877D1057ECF +:101A3000CE1FCB7F74397C16FF09F2FA8B64EDD38D +:101A400064D49BEA93484F484DAA2BACEBA53FBD0D +:101A50005D95C4DBA59A9653BD2F53035F63FB844A +:101A6000E2900FE5B73B68F3A3FDF081C9BFC2392F +:101A700000E56CD042FE8CFA64EA7F0183FD81FCB4 +:101A8000390A8B2880AF73503E0FA534F1FF390718 +:101A9000A5301EE124345AA3CE23E73743DAB88EAB +:101AA000FD8672E0370B517E27D2B95C04FDC28BF4 +:101AB0001E8FAEBF984568DC9AA7BEB11AFB05CD54 +:101AC000538F3BB5A0DEF86701972F5335670A4C5B +:101AD000F95E29F0036C37CF7A98DA7B443C47D71C +:101AE00061297C00E589D01B6A1F7860F05CD057C3 +:101AF0003E5BF9D3C1E87B223F0FD2FF1E89ECCCBD +:101B0000C5A52C9205F3BB43E83F8B8F49912190EB +:101B10009E07EB463D62F453522801E4DC3C1B0B6C +:101B200025229EFD9EEF478D580FD6EB5784F00B74 +:101B3000113C17B20E9ACFE86AEE9F197D44A2B805 +:101B4000A9583855EF8F819B112E39088F68382F8F +:101B50007D16E013852F1C3EA0F7303BECD74EC11D +:101B6000D7CF801D61D42B19DE2A807A3BD7485409 +:101B7000BEF3560BF3C2BC76CD9CDF8A713EDBD040 +:101B80002F22E21C312E71B31E8708046383F1E219 +:101B900086B19EF3CF91A45751BA64973A750FD886 +:101BA000EDBBCCC134F477ED2A073D97EB3376D407 +:101BB00067767B83935260DC39A6C02B6860CC9536 +:101BC000B5FE0AE2DB4A0EBFDD457583EB7A9187ED +:101BD0003A3EEF923A343A677A5022FE187FEC7020 +:101BE0002403E6BDA44C25FF69F2EDA7F367C3B853 +:101BF000F7A470FEDBEF3897577B25568F76A21738 +:101C0000F041827D297E767B1AEA9D6CAEA508CFD5 +:101C1000ABB6B9B83CE87A83DD44E73CF1752D18E2 +:101C2000F7947A4F7E119E23C17AEF990EFDCC4D29 +:101C300051691E690EBEBFDEB521DF72C84F05981F +:101C400024B871BCC0B297B19F213CBE0EF21B50AC +:101C5000FFF4B23512D6DB90CCE1BDA18A55FEA2CD +:101C600080CEE9947E6EFE7D07BE6075D69BE19BBB +:101C7000AA80FECAF3EB719C9D897C1DC9B2E99EC6 +:101C800072DCAF229E76AF92B40384BCDB695EA99E +:101C9000565686EBC47CF4E7C1B4B4C3541EE67850 +:101CA00031BEAE90E63B807F5FEFB4854C80C7AF1E +:101CB0007B74BD33E220BDF3489A8C72E73E212F3E +:101CC0003F336BA9C390EFBE6166A8FF7BFAC7D410 +:101CD000CFCD9791AFDE27E4D457FEF1FD90A88ECB +:101CE00098B57F6504579374A097B8821D295C8EC0 +:101CF000D45ECE6061835CA8ADFC0BE9DFB597FBD9 +:101D000047E57FB21A5632C8203FAA8F4FC47A4B9C +:101D100058C706C4B725ED261636D0C7113BD7F7EE +:101D2000BF7EDF4A74776FDBA0033C8E4D4D9C9ED7 +:101D3000D04307B5974D2C04383DC62453FDDA4AED +:101D40000BF99D6A1B4C2D48A7B5972DBC3C9BF702 +:101D5000577B39897CDB634C129D37766D3291BF9E +:101D6000F52373D706D46B422FFA084EB59753B8B4 +:101D70000F1CC6433DAAF6B244E973A8F7413FE7FA +:101D8000C27228EF06D40BBF16EB55783974417830 +:101D90007E84CBB96920D7905F3105E60DF6F72533 +:101DA000FF078908DF7342DF4C377526623C2AFB48 +:101DB0001597579FAC06C60470BAA47692BCD2E1C0 +:101DC00075C9D9998870BA54A9D36544C17EF6F90A +:101DD0005F52D0FF53E37F692233E04B0F5CE3593E +:101DE000C800D794751D111978C4BFEE9AFF50C171 +:101DF00060D8C2E3821F84AA1FD232A1DC2447F13B +:101E000087F8E26E7E41EC6AA76C1271CC0B1F2A38 +:101E1000CD34A445FDEEF6A14553B1BCB880B77FE3 +:101E200077D7E27F5EAB18E480D2D53F906048DB85 +:101E300062D20E480F31A49D31E59E98726F4C3AE4 +:101E400093D7BFBB5FE77013D8681FEEAA9D8AF7D0 +:101E5000A1EECEE8FC31DE3F6B342D9F5A9A86F21C +:101E6000D43F11F7ABF688E4E46A3787DF523F23AB +:101E70007DCFE1EFB4E0B94D7CB1FF15D42B6AA062 +:101E80009E04F8115F1061C8BF6ADB25F2DB75B7ED +:101E90006BE77A624DFB596AD767FFF932D1F9E6F1 +:101EA000FC73546FC9CA4F2DA8D734D4AC0DA0DC35 +:101EB000596051A99EC2825A06E0FDD223E5E46F23 +:101EC000FAE390636F61F869FC7D9FAF51A0CAFB94 +:101ED0004BFE341CDBFD11BB1E857C363C18DBCF72 +:101EE000AA9E3D18F3DD051D6FDD06F5CE983B1F5C +:101EF000C1B896CCD4FAA9786FEC4C426716C649A3 +:101F0000F7DFBD95A7933B1F41B86CDFBD8DA7B32D +:101F10003AB364480FD87D8AA7F33A1FC1F4CCD4F2 +:101F2000A7797A486796C9896ED567088E6D4ECEB7 +:101F3000D71E05FB14F9E31F63E456522AE7EB6F43 +:101F4000E56A89A9A87FD670B9F108D82036E07B68 +:101F500077EFEB7CBA0DE074F74FE25162B0B64F09 +:101F6000664CA1F341160AA01E9ACA5198CB37E2DB +:101F7000D30AE9056928D3DC3D704DE8DFA1E23CD6 +:101F800062E5C0C7C9DA0E1C57FFAE55F97747AAFC +:101F90002AF492BA4215FA9D35CBE1477F2E533A87 +:101FA00087233E6DB3F375011DD07E3970DF605E0F +:101FB00083C57A06A772FB2D3165C28E54F8DEFB0D +:101FC000FEA4BD366E97713B7B8999F492E6722D23 +:101FD0000DFD01CDE52914AFFDFCDF4D5CBF69B3FC +:101FE000D23AEE403E0120692E6494DFBC7D30C5BC +:101FF000F1EA7A6DF3C2F169C867C6984AD2100F48 +:10200000BBCA2DA4FF035FE37C6C89B985D23A5F1C +:102010005B62167C0DE415C1B13D19F998BE1F77BE +:102020009A5900F9D89D2D9C8F75E74B904FFCA5D0 +:102030003D19F9D5B5E6EF2CD2D2908FE9F34A5D80 +:10204000D74EF348DDED7323FC4950A29EB27DD0FC +:102050000184EF6EEF74827F73F913F6D9053DF8B2 +:102060006BCED3A663FE1D222E50C713FC433FD672 +:102070009C87535BD09FB243C01DF490A1A89FDD05 +:10208000EBD5F793915CDA91CAFD94775B2366A454 +:1020900087FFDE97EFBD2FEBBFCFBE2C59F9A76BA3 +:1020A000E26F3ADDED9222E654DCA717B9BE88F95B +:1020B00028F7A7A504F7A41AFCDD77FF74491AC511 +:1020C0001589F9C4DFFF42D9ED903C73C7C5B62727 +:1020D000A0FD999FD849AF89D547CFBC676B447F96 +:1020E000577C41E712DC57F7CA7827EA1767847FE5 +:1020F000ED8C58F7889F2C7E1DEDC74BA9269A2F93 +:10210000E0519AF0BB846C38BF72CBB7E3D18B2619 +:102110008A47B7C7E251DB208147E1BDF351C6DEF4 +:10212000EE20FF6C739E4CFA4BF303F1646734FBB3 +:102130003A09BECDA3548A6F023D87E3D14C0BF51B +:102140000B000C61FDCF2AD3C3087FC03B3EEE4C91 +:102150001BE1AF1E6FF959750EC55B8E31713BA641 +:102160002B4F0E47E3615762B9017F3E13FEADCF9F +:1021700050CFE967C8675CFF01F94D7AD8B5E6A78B +:10218000ACD3E8BE8A8E873ADE7DB803F04622F5EE +:102190006220D2C11F53B9BF4AE7B7F77A837FC025 +:1021A000FDEED187395DCDD93684DA6D4CE0FC790E +:1021B000BF9D35D88A7AC6DD0F7603CA15B02F4F7A +:1021C000235FBE071A1E81F43DA9C15F77E2782B19 +:1021D00075FC0D5810DFE609BB96AD8AB6DB301EE4 +:1021E000AA3B6DBA323D5FE3FEDF2BEC66F6776B00 +:1021F000743BAE97C417749911CF77DB59C86E90B2 +:102200005B7BD0B90BEBDA03FB8E74A9D7FBF2939F +:102210003819EF3B9C7A7D583F3C5FF992F9FBA15E +:102220001FA816FA46FF676D9C4A7EA83126398A98 +:102230006F2DC5A5B87BF6FFDC9134C20F6C87F318 +:10224000ADCD656CAC1BF145ABA2766B12547D5FD6 +:10225000A8FE9E411C9F747C794E12F8D2F504F1C1 +:10226000CF5F0E6288F7979279FD4B9B4C2D88F7D4 +:10227000B50821EC3FF4B7D5E8DF39A78417A21CD5 +:102280000E55C7517DF4A31AED605D8FBE04FFC6E5 +:102290007B14E75870219D1B57F2FABADECC10056B +:1022A000527ACE8796CAFCFCD0A0470F24BBF057C9 +:1022B000F622D4A36BC43D228C8527BF113632D8B9 +:1022C00031089FB145F43D69A27DE81C1148B8D2A0 +:1022D000CE592A9F1BB8BC17BBB6BB7CCF9FE85E0C +:1022E000149E2319F7BFA6074FA46F241CDF803765 +:1022F000BE1E3E542BFC14A467E3FC4B19DD8F4C2F +:1023000010E9F8B28E30F2A5E4E39D13C97EB9005E +:102310007634D62B6045E8EF1C7DACE504EAA1EEEF +:10232000D28E2CDCBE5AE1A7D3F14A9FE7A863DB2B +:102330004D681FE87465A0271A675E753A9D53744F +:1023400022B31C85996BA93DDAADFC5E9096360FE1 +:10235000E6B46B610EDD63895738DF9FD734E8C080 +:102360001A41BF48F7BABD0B9AE108A4ABDDDE9273 +:10237000E95EE8A734ADE4162FE20A1A49A3FA860B +:10238000A70E17BD1EDABBDFE6275BFE29D007F0DC +:10239000A7B257F352913E964B6A2AD2C77953900F +:1023A000FC623D7E9C087D6B049DCF17FE9FF9BAB1 +:1023B000BF678F352A5E12FDA8C6F422E1076207C7 +:1023C000AD3D7190E8D729659104E86F09FA8FF067 +:1023D000DB1EDD6E29EBA276B547BE898AE765CDA7 +:1023E0007C7DF788FDDF6BE77E1FD7AA1613B7E366 +:1023F000F8FAFA1569BEF5C8375F35935FE2DFB1C9 +:1024000088F8963602F9F597A925B7235CE3D0FE44 +:1024100085757F08F20BF715F4E47BA6A3BDB83AE7 +:102420003898E215146DC4F45EF07BF3517B35E20D +:10243000C33AAF1C852F3779CD343EF98790FE37EC +:102440005989FE47E408BD6693F500F299B9569E96 +:10245000660FF1739FA5B73982D8DF39E1BFDAE69D +:10246000E57AF2362F8FCFD4D3FAFAF4733DF4D352 +:1024700018EFC1EDF4EA7E6AEE1F614A90E2B2768F +:1024800099C3F679C41F03E427FFE213BEFFA74EEA +:10249000CD21BEF105F00D3C179E2BFCA75F3095BA +:1024A000F865377F6C3145C9C50B8FA70AB9C9EFED +:1024B0003BE8E77ADDE51706EA7C3024933FD2AEAD +:1024C000CB4D0DE559E8B94124FF99904B178E6526 +:1024D00051FDF378DE0720BCA004F7CE237F343F04 +:1024E00017B8A0FB0D165D1C8AFAD00516B2F64788 +:1024F0007E77CC4AF2FF3C13713361D301CEFFC229 +:1025000019330CFB7654DC47BCC022F3A95EBB9D9B +:10251000FC067A79BA95E7B37F827C03BFFB9559B5 +:10252000D43F6C978CF9CF5B229C9FFF82E7FFD64C +:102530001A3CE935E857358991812EC7B5C00F1887 +:102540001DE2C58B09A29CF38B0B0D83FCE89FEF6A +:1025500096237BB97CFAC8CCDB877EE923F86D2B08 +:10256000E27876B4C5D4B216AA7E16B0507CF505D2 +:10257000E16FD1E1B6F6A327323A69FD9CEFEF3265 +:1025800073B8875A005EA87759B499B4CECDD624D3 +:102590009237C89FD16FDCC0E337FAE23BB507E65C +:1025A000D0BDFC3ECBABFF7A37F513730E78A9FA9A +:1025B0008BFEFC3EA8970E93963A45596C7B5D1EA8 +:1025C00079BA527A9333DDF52E6C5886F562C721BD +:1025D0007D690497AFC8C76A63CE1799316DBA3267 +:1025E0002DA7B9BAE369313E7234D3FFA2EBA18FB4 +:1025F00004EB8D8EE9FF43732891CEAD3E92890F97 +:102600002D69AEBA1BD79D971C8C4F83FA47776C08 +:102610001C4170107831FAE302AED735F1F3880F20 +:10262000CDDADD48DFAED28865B6419EE6A471BE44 +:1026300033C7CAED290C2334F229BD7C4449347FC9 +:10264000D0BFBE34CE4F123AB85C636C8615E5FD40 +:1026500051FCA76AACC7FBC94953E99B7D81FB7755 +:10266000B25785D761DC434D7BD530045BF6AA08B1 +:10267000F1950FCD2C82FAFD877B053EA33F03FA2F +:102680009D3F92F73BDF04FA25E2AC389F5C24A023 +:1026900039DF0A7A28F0F1170E8E332540BF8BF60A +:1026A0004B7E8C9B1A2DF83CEA2FD92877C4F975FC +:1026B00035EBD8D009FDCF6F64B69114E7103665BD +:1026C000109C19DDF39D63ED247F22FBB95488FC37 +:1026D00001E4557D22B45BA485C9EF187B7EC88CCC +:1026E000E77FB81F782E6538BF59D2B489CEBF7442 +:1026F0003988F28AC5E8ADD17814EA55CEEA724835 +:1027000097B7A0674F4E4BA67D8A3AB759C2EAF8F1 +:10271000B9949077DDE30A7979DEC4E5F37CEB7652 +:10272000FADE9DE6A3FD59C43AB9BC05F9897CFFE0 +:102730006AFB7B771AB71BF47DAD01067913F47F32 +:102740008FD8EF6E7EB68A45960CE5DF84A1044FE4 +:10275000AE07D8B81E80DFB86BD00762F58058B9D5 +:102760001F2BEF532D5CBEEB7860F4EBA37E337A26 +:1027700055D884FBF9CA6A8DCEE757DA128762DC36 +:10278000D6D776FE0D9570BA0A9DB1937D70BFC9FC +:10279000BFE70D40FD891B793EFBB778E2A3EB361E +:1027A00071F9B06E0D97BFDBD3B81CFD0741270749 +:1027B000049C8EE33879780FA18CC69B682B5490CB +:1027C0007E273B3FEFAF083A76009C2709BC5E6A44 +:1027D0008D6C407BF444DA92C75CE2FEBB13CA27DF +:1027E000E23F20FF5373F067E8E09CC0D47AD4B393 +:1027F000B759835B101F4A997FEE7209E38E968E5C +:1028000045BA72306D2BF28B54A66D4B23F99EE9BD +:10281000A47828816FFABCC6B32E3A5F9A683BBB96 +:1028200002E5A43ECFD879D5D8828F61A8DA89B4E1 +:10283000F7EF66BDCC0BE6F1288EB722CE57CFA2BC +:10284000E7F1989847386DF895F3B020BD03FE295D +:10285000B6041E47DB13EFF724D5CF94A3E264F54B +:10286000783F9D5E4E7CCA72D06E630D502705E1A5 +:10287000C2EB4D7058CF22FE1F37B323484FEB12E7 +:10288000583EEAD127589C7FAD8FBAC9F5A4D0D461 +:10289000A9FE09C6E92974DA4EFB2BD9F8393F6342 +:1028A0004115ED9D1376AB467C5655A3E2E5743E8B +:1028B0007CE2FD2CB2FB8FDBAD0EC423A84FF9C721 +:1028C000DF8F0FE7E0781E433C5CCE957887E2E02F +:1028D00002F2B90D75F4AE8297B5D33B13E7904E73 +:1028E00069FF3A249C5FE67D4CA5798CF4DBB81F28 +:1028F0009E9FD78FD7E11333BFF13607C56F32875D +:10290000F9934E037F624DBB3523BC8E231CFBF530 +:10291000C053875FECBCAF58FF1E80FB0803DC6D23 +:10292000D06E289DD3B10C772FED59A6EBFCF5FCAA +:102930004A00F289475383E7D3286EA68EC77B955A +:10294000DB48EEB9CBBAE81EDB999EF71D689D27E0 +:10295000C4B072FCD84C7A7749C89BD879E9EB8926 +:102960005D672C1CF4F95E6D9D27F5FE62D7EBECDC +:10297000A37DCC3A0B2C01291DFD61726702F15B2E +:1029800071EFB6569C07224662BFB345BFB33B25E5 +:10299000EA771FEBDA3A10F9D1319313E5D2EC6301 +:1029A000A608C609B186095A67D4781CFFF5F66CEB +:1029B0004F5722E287DECF67D5FF2B11E394FB6AE6 +:1029C0009F92CEF9D7F1997FA1788D7DC75AE93CC6 +:1029D0007A5739601ED9A57E3A4F7BC014B8231BA5 +:1029E000E0FD41B54CF8FD41751CC5CFEAFCF4553E +:1029F000E41F7957E7AB8CD5DDC8F1B7EE06FC4E86 +:102A0000FC51D5571E7A9FF0D7B7BC0EB27FE2A417 +:102A1000AAFB30BDE07FECBEC501C43171BC44E708 +:102A20005F37A4EFDF8AEFCB4CBCBDEABE64284F12 +:102A3000DD3FEE871E907713EF94C4F9D8E61F624E +:102A40009CD4C47B2452BE0E66F2FAF1C541339E7B +:102A5000DFDD86EFEE14503C83668C131B95CEE3CE +:102A6000E447A5737C1A9DAED29740847CBF92C781 +:102A70003D807D64E67E92A019E7FDE64DC035FB02 +:102A800061BFC1AC2683BEF5F664EB5D5A01AF674A +:102A9000F43BDF92CEE583EE1F88D5B3A6A573B9CC +:102AA000A19F7F60FB5B8718CBF9FDFB5BC4FC1C1F +:102AB0002A97C338AF8A21FC6BD47BDF9E396E0224 +:102AC00092E1ADF9C09719E2617046FA70E4E39FB4 +:102AD00026703DB27308AEE38CB993C70DB9B81F29 +:102AE00018F9C9516838A1CCFFF8FDF0EF07D3DD24 +:102AF00034EEDB667ACB849D48B4B6D4C3524E091B +:102B0000FE8A7F8DBABC10F888EFD3E8F2E137BEB9 +:102B1000DD0ACA9729AC5D41FC9FC63AE8FB43D663 +:102B200045DF00739AF13B9DF9E9FBD9B8CE11E47A +:102B300047107207E4CB22A49F4FB3B8FC2B63C1AC +:102B400063A8CFBD83E323FF6711A2D76E3E18C3EE +:102B5000DFFBE48338BD949E732F9D0F4B41E0FF54 +:102B6000587F4388F8712A0BFE04E196C12294CE67 +:102B7000027E4CFE9A6E3E1C4DEFDDE71F83253A28 +:102B80009FDE1D9F48F6E69B83A503E23D3313DEDF +:102B9000B7237841A349F95215DA3DBB053C279587 +:102BA000A5CEC1F4A4591B3A701E93F2DFB803D32B +:102BB0007DC1ED57E6C08464DCBF5BF8FEBDBBBAE7 +:102BC0009AE8D01F71D2BB1E530A5C142F5874CAE6 +:102BD0007F02D3D38A79BAA0BDA304DF71F8E1588C +:102BE0009E1E7AA4EB38A603A53C7DC3B1888CE970 +:102BF000A9F9BE224CBB667928CE995588F38298F4 +:102C00007D9ECC4215B7205EFC3EC78C62EB89F4FA +:102C10008184A7A3E64A6C22B41B55213D2119F4F7 +:102C200003167AD2847CB052EC932BC8CF752B83D9 +:102C3000E566BC5F0178B002D707FB7F08F75FC786 +:102C40008715716F9C91006ECF8B78D8D0740E670A +:102C500090C704E78A20F7ABE25F450AEA47FA9F8C +:102C600093F8AECED7DF9644FB2AFE1ECC1FDE05BE +:102C7000D10BF8541AF0953292FFA068E0394ED08B +:102C80004AE736A5B36E9F82F9A5C18D1D1417EDD5 +:102C900034C4B5233E7D68894A9F10F8E9AD90C8D9 +:102CA0007FC58C71ED268C7FE1F77EBD0EAE6FA4E3 +:102CB000062D5171F2682744D567DAABE9A447299C +:102CC000147F922FE24FE09F118C9F84AF86F19783 +:102CD000E6F40BE4F77FD72E39316E794C38504E3D +:102CE000F82CECA8DB05BC5FB0717F4185430AE39B +:102CF0003F2B02DBEFC2F526BEE350D11F8A786C72 +:102D000029EE810F1372F890905BD77B992D9BE48D +:102D1000BC1442BFC4F52FA4737BD4CBEFE05FB7E4 +:102D20005C25BDA86296C49C88378D71F4FE04CCE6 +:102D3000E39B6F0CF7516F9F25E6B1AA388C2E0CE0 +:102D400056DD5F36CADFE78BF4781AD58CCC7B7AF8 +:102D500020C822B82F5EE6477FF8EF2B64CDE6A1AE +:102D6000C726C8AF2BCFE27830C52151FC77C9E523 +:102D700078161986FB1DAE7763BD772D84BFC91504 +:102D8000557721BFD2F9588938E761953C6E3B0BE6 +:102D9000F02540719292A218F8442C7F41470CCE46 +:102DA00037AD3B0DDDA420BF60E40F67B64E827BDC +:102DB00082AE3709FB4A7F7F6C4CA76B0EEECF08C3 +:102DC00007A7737C2206FDE58919393C6EA9F23705 +:102DD000EF60BEA4723C79FB533602E7FBB6D4FB2E +:102DE000FB2249195C8EBDFCFE822CB423DF4E0809 +:102DF00064A1FDA866A8949F5B618DC830DEDB6985 +:102E000041CA7F5BC47763FDB3987605B2E85D9FE6 +:102E10000CAE7F627D378E9B15A4FC6EF962D7DB0A +:102E20000DCAC476C77DEA2CC483B707A74A78EEDB +:102E30009693C1E5596E3E8C67F0FBE4566EECC08C +:102E4000F1C10E611FD03DAF4814FFC62B2B0945C1 +:102E50007DF3ED31E8A7C1B831D82F8C0FDB6AF1D3 +:102E60003798803E4A4AC3C2AF1BCD8F533F695A41 +:102E70008FB995CC5FEAE171AE72434A0FFFFD83D3 +:102E8000A0D3DD3A3F28147C7B413FF27BFDBEAAF4 +:102E90009B6F47F1BB4941CEB72705747EBDB10397 +:102EA000F7E716D6A960BF3FC22BF7305E39F3575C +:102EB0001449C8A755C2AF909DF3CF4941BEDFA5C5 +:102EC0002C40FCBCECADFA69284E6630B55739A8E9 +:102ED000CBBF57163C4676E477E5EFC0476FCD1879 +:102EE0007E259F2F68E7E929059CCF039FB92D23F5 +:102EF000B9471E5DAB7C9566BDC2EDA698FDEAB1F3 +:102F00006FB83CED91A33C8E2BCB2187D7526775D0 +:102F1000526FF2F4AD1E3D23DADEB94639DF3D3E95 +:102F2000E37EB90C9D0C99E4443B3653B41F6163B6 +:102F3000A17894FF15C2FE13F618C8FF9F6610DF34 +:102F4000E5769817ED30C087D69442C2BBD8F9DE3B +:102F5000E0D5FE01EB4F3039FCC8A7BEF83D7F57E6 +:102F600073B2367302C68B4D61C1F5C6FB5B83C07D +:102F7000AE500C7C7F70D80636714FFAFA83CEA81B +:102F8000F490766F54FD1B8EA851E58520348CE5B6 +:102F9000C34EF9A3D2C33B4646D5BFF11D2D2A3DF2 +:102FA000AAB32CAAFE980B81A8F440169671B137EB +:102FB000755546B5FB8285DD4E92EB5A477E0ADD9C +:102FC0003FA4BF9B2F07A3DA0F11F7C4C6B18551E9 +:102FD000EDD9B3FC1E6A1DFC87FB765DCC3DD48128 +:102FE000E29DD7DB2ACC3DF755693E8DE46F1B1877 +:102FF000533FF65ED82F32123CB84F40D3C5284F0E +:10300000AFD81FC6EF058E3FC8C2611FAE87EAB2B8 +:10301000EBF6F2F7FE62D7A5DF1B9B82A408F5CA88 +:10302000A09F08E45BBDD1FB6957A3F7333E3F7A0D +:103030003F13FCD1FBD96F64F47EBAB4E8FD4C2A8F +:103040008BDECFE440F47EA65646EF675A307A3FD7 +:1030500033AAA3F733AB2E7A1FB35746EF972F54FB +:103060001D553EA0A12E1A1FC57EE635AD8C6AA760 +:10307000EF6708FEFBB6FD2C7398A3EE235FEB7E93 +:103080007E9221EEF989FDBCD67B7EC0DFBE40FA80 +:103090001CCF02F56E89F767B45F5E13F2E044DA85 +:1030A0002DA578451FFFA2EC99C11BC99ED1F5182B +:1030B000346F911EA6B208F1F12BF9BF4AF15133DA +:1030C000D0DF06E9A5A6C806D40BFE92C6F558E0E7 +:1030D000CB96CC64D46BB753FB2968DF483DFEAB7D +:1030E000DEF82F9E535C2BDFEBF667FDB08EFC4ABB +:1030F000BA7FA94FBF929AD5C3CF80598E5F393E10 +:1031000080F717BF16E7495D76EE771EFFC038CA15 +:103110001F6F5B46FE9B92D7F9FBFC250E89E2767A +:10312000C6975949AFECB6873E9249AEBE59AE66D6 +:10313000611CCF9B93537B8D073B9E70FBFB75D02F +:1031400064BC88EB7DB390B77FD3E50B63FDE312DE +:10315000D342284793B99C7E33C1A4E1786F4AFCDF +:103160003EEF9BE473836F954AF5BBCFD596B0A82D +:1031700073B5A3754E71AEC6E1D0F563A6C767906F +:103180003D7CD49123CE25CF923EDD358AD13B9C28 +:103190001F99DB2374FF65A78FCE13092DB0BF26BF +:1031A0007E4E3741DC633EAA8084C57916F07BA150 +:1031B00047459CCFDB625FC9BF8EFD3426E8F60B26 +:1031C0009F57D360D29B63E5DB51A6AEA17BA6AB34 +:1031D0009888D76A3FBD1CEB570EA4F798691E0666 +:1031E0003DF5286BFF704731C57950FD375DED5FC8 +:1031F000BD897059789D3FC47AF0C33374EA23F7D0 +:10320000A968F76CA4F3B3D20A7EEFBBD4B94641E8 +:103210007A922A39FEC4D2D36E6FF02EC4DB66DFF9 +:103220009385CBA1AF325F9B1DEB8F17FEE9D7BA19 +:10323000EDF368FA3A91F6E0FEE5BDD055B71EC44D +:103240009AE8FB3DE8A92E93FCD12DD45EB73781D7 +:10325000EE9761BEBE4E007016C6ED5D7299198F75 +:103260008F0A31A37ED1175DE9F02973169EC4E25F +:1032700058B8AC4809AEC9349CEF96B9FDA7EB3CF1 +:10328000E857B3FA43B4EE687DE1CD3EE07405DF64 +:10329000993C88FC38E32BC6D1BA26B0107D27B301 +:1032A000B0F2EDFCA74FBFCACE4C835F65BAE03BDE +:1032B00000A75D99C3AFE43BBA1ED60D97583BE813 +:1032C0005AFD2BDDFA55B43EC846021D02BEAED3F0 +:1032D000F9510C9C268A7BE9EF3A25F12EBC362D5C +:1032E0002D05D7CDFFDE6DE0F4530AFC09E5F5545A +:1032F00021975801D717FCF01FCEEBCFCC11B4A10A +:103300003F2A375A8F2811F7CF4B63DEC3E8B60F39 +:10331000C5BDF59298F25838E8EB8C9557BAFDA6E2 +:10332000BF23DDD7BA7F9329F414950DFA06CA415D +:1033300066917ED1F19689FCE32F27DF3E773BE053 +:10334000D3A0C7AEA3F7625E4EB9F3BE3730FDE837 +:1033500040D2DF27A62FDCBF0CD24FEC2BA0725D32 +:10336000EEBD91C9FD8FA5B2340FFD57F9C5EFDE53 +:10337000E183F99CB4B3BB30ED65D5CDE5308EB7B4 +:1033800020A7681DF2030BA37A536F5832CC789EA6 +:103390007C56F43355C4A966E1136F45F455D0FF4C +:1033A00090E50D2B4EE8D722EEE96428AC1EDF0F26 +:1033B000B4789B1C4E846F1CEFB7342792792FDAB8 +:1033C00021CF3BE89DE8EBFDF16707E07C2489E62F +:1033D000737DBE14C1779C4BDDA27E4924F761AC9E +:1033E0007FC852847CF87AFF2D1F61FD52F1FE697F +:1033F000A216340F463F81F0739C50F87EFC67A6FE +:103400008DECD0171CE3CC783FFEB600F733794340 +:103410009DF549B8DECA71C5B85E7D7DFF2B93C7A7 +:10342000E5548CE4F52A0255E6B986F5DFA675D198 +:10343000BBA1B7559E25FEF88718FA2DC77FC83D5A +:10344000F41BC07F009EBC7117D02FF295593EA28D +:10345000C7194CA3EFAD2C48FCAC923551FA0ED6EF +:103460004EDF59AC83D3EDD96EBACDF6E410DD3A18 +:10347000B286F7D0EDED8CBDD8E9BB925EFBE25F82 +:1034800040DFEEACE42BE9AB2F7E3DBE72D9FEE50A +:10349000BDD8BFE3F306D07A7AF8763BF19DEFEA28 +:1034A000DFD5D701EB1A84EBD2F51F067200FDD9E8 +:1034B00030DF7C3EDFE8F51DEF851F19F5A2EFAA8E +:1034C0000FA1DF05F580AC3AC6EDD1183DE85BCE23 +:1034D0002B6FA6F95DE5BC32F6FC3331453BA01AF3 +:1034E000E2706BDFB1D9548C972E0EB01C07DEA3AF +:1034F00018F79A0FE317C5B9457C07D35A20FF1177 +:1035000011D7FABC4F253AF45A789C04BEA355E86B +:10351000C0F8808E08C5512583BEA2F69CEB3F9271 +:1035200000ED8AB01DA7DFEEF636561F67685F72A2 +:1035300027E7B37FD962A1F73F9812CC463D26E535 +:103540008FFCBDDF735B2D14CF36C0C2E9CEA3C79D +:10355000ABB30DFC5E6D16F71B31E9B8179D392131 +:10356000B699BE7ABCE339718FE52F2E3FBDA7F91E +:10357000972D2912EA69E714ED954A1877C0C32EF2 +:10358000692DEBA93F334BA5FECEA9DAE7A7705D05 +:10359000E50E1E3FC68285189F6735154FB1E1398C +:1035A000B66955D72968BF24CB41BFA3559A7DFA88 +:1035B0006D7C27E8A367CDF486E2C2B619FD22D858 +:1035C0004CD1BC812157CAED85E1683B64F1C1E86B +:1035D000F492F6E8746D8C1C88E5F7A12C619FA825 +:1035E000CC8F7CFC5AED93B192B601F16991D877FA +:1035F000ABB5EE420BACDBBA2DBF680DE155D74B36 +:10360000F85678CAC3BE228CFBD2B2F87EDE9A1579 +:10361000D88AF463CD2E188AE7A725D9D3AA681FC4 +:10362000F7DAE9F75BFE820FA860FA452E1F9BFBD5 +:10363000F3F2E67D565512F274F8088C97E1F85BC8 +:10364000BB87CB43F8B3F17764341BEE63B345B368 +:10365000A461BB7F607E9C4FF59E0514D755C33A8D +:10366000284EFA77591CAF6A4D4F596CF0CF66B7A8 +:10367000B704FDB3CDCF48F4CEA7F2372580F88349 +:10368000611518AF22DB3427FEFEC892232E7A176D +:10369000E15016F71B368C8DBEC76079B63C84BEF0 +:1036A0009B9BFF564AEF0D2D587927BDABD27D8FDE +:1036B00059C4BD2D786026E59FD8FB7512F67B7E38 +:1036C0008B4C7EF0F38F8CEBC0DFB359D0E8506D9C +:1036D000BDAD97D5D1EFA2D44BFC7EF5A7ACEE5F84 +:1036E0001E0090FD49C4C131675D22D1B35A97686D +:1036F000BC07D2BADF44EF3FFD69FF307A87B67965 +:10370000FA94E128876F7615D3FB507AB9AEDF2B98 +:10371000EE914F201DDDFC3713D141E9B6B171E8C0 +:10372000A755408E615CA9DA584271968B02712EC2 +:103730009598198F1F6FDD6223FDA0B67122ED4BA6 +:10374000756335C17DC08C7419FB6D7D4A624E5C1A +:1037500097696CDC1AA85FBB8DDC34AC952965BD1C +:10376000F9891767F173CF93D3E3FC11A8FF91F0A8 +:10377000838CCBE6F399681A3B05EDAA255B648A36 +:10378000F75CB2E5CD147A8FE071D359FE8E933F8A +:103790001DE1114B37FAFC62E9C70AFD62FB583A9A +:1037A0006A0DF177CE63E909FF228673F1538D45E7 +:1037B00034AF583A9BDD9843EF24B006AE375D0234 +:1037C0007AF846FE4EF4F69591DE58E6F4A8F869CC +:1037D0009DBEF4B4CECFF5735A9B9F696D0EBA5F50 +:1037E000ACE1FDE9B4FE0AD54FEBCFE37195FF588C +:1037F0007EF0B730FF96ACA0A93FC64F31AD10F1B7 +:10380000CBF715C3670FE83C9ACE9973F93D975DE6 +:10381000E6804C7AA112FCA7DF42BEB9B17A18D279 +:10382000798AE8EFD6ACA0A33FF43F7755F0F39741 +:1038300018E2DB7544EF732F57C878CEED68D6EFEA +:1038400055064AEC1EFA1D8462C4479D4FE7C17CB1 +:103850005B7A397FBEB13FD77BF23C01EA27299BD7 +:10386000BF4BD59CCCE96BDF4A7EDEAFEB5789625C +:103870000F7D2AA3F7A16C23393C967B4D2AC6C73E +:10388000C33894EF1B298726C1D73192DFC78C2F0D +:103890008ED07BC979980F78E4F3337AFF442F8771 +:1038A000FA67315F6636D5016334C2BF101FF2F28A +:1038B000F9BB65BE669EAFEFFF174D12D127D8A0AA +:1038C0004EFC3D138CBB277959CCE5E572AF4535ED +:1038D000BEAB519A36AE08E1C7342DD7A3BF7B0AE1 +:1038E0007F129EABC35A814B51DCDA3D052C88F721 +:1038F000D9F4F58C6ED636201EC6C26DAE98E7168A +:103900009C27A0CA683FA4F3FB9E5F727F350A9F85 +:10391000F4F959963A14A4E747501F81FDB7A47BE8 +:103920001D4847B00E8A5F622CCE8FE75B7A7C45DC +:10393000567A3ED5D7E32C3C71F005FD01D8A7821D +:103940007868915929DEDFB85F0E90DE72BFA989D1 +:10395000FAFD5AE67A4FA63370783EC035C374B884 +:103960007019CCAFC2A6DDDA9FF41495EEF59EEB8C +:10397000E3FDFA0ADBB83B087E0DD1712729EB0481 +:103980001F5E28131FD6E34F62E34DF6C94D361C68 +:103990007F7D7FA127D8F8FDAB5DA319FD1EE6BA98 +:1039A00051DC2ED4F7A756DF9F6312ED0B8B89975E +:1039B000D1E369E2455CB03EEEEC022562ED657C48 +:1039C000FC33CE5BAF1FBFB7C387F3EAABDD7ED05E +:1039D000BB30EE946DF0AB58EF6335F820C22B632B +:1039E0005D95CAE3283B7C08B7694CDD2F0DC07894 +:1039F000303513DF6D9B66FBCD3BD8FF341B6B2747 +:103A00003DD51F6B2747EBE14B85BFAD5BAEBDC816 +:103A1000FD6D4B757FDB31EE6FAB15FEB6D87B725B +:103A2000B547C6A59921BD346091D0FFF691E48CCD +:103A3000C3F93DFFF7F1747F4EBF1FA60AFF5A730B +:103A400061E7A33F45B9B5B080FC1397C4BD82E6DA +:103A5000352569481C7DDEBB5C2FB71CF019EE5D77 +:103A6000AE970F88B87371DFCD1947BF7323F63156 +:103A70005BC0BB45DC7B6B11FE306915BFDFD1122B +:103A8000E3DF8A2FE0E3B8EB657A97208C07A8FD87 +:103A9000B01EE37E33874DC4E538E3F87B05FCFEBA +:103AA00052CA480EDB16FDBE9CC00F215258B34BC4 +:103AB0004BC37BFF0905019FC30FF07CE4897F891D +:103AC0004BFE2EF7F2B5A6D2B1DF722F9F6D0D60BF +:103AD000B90D639A44398A719017DDBF6382F1CAC8 +:103AE0001B137ACA15D0AB6CF5221D9A1198900B56 +:103AF000EB95F4F29A6D18D7B4CDCEA2C633CE4F63 +:103B000089E9DFAC527C9048B7FC10FBDB59A4A7D5 +:103B1000FFB6157F07659B39BA3F4275D11E13FA70 +:103B200078565F415363668FDC0239761AE95FEDA0 +:103B30007296D0CF4D08F916EF9C41CCD47CB98257 +:103B4000F8BBD9C3ED678C05C027F56AD51CFEBE4E +:103B500084A2525C852D4D25FDF57C7F2E5F175884 +:103B6000F87D62E558B98657D0CDCC7FE0B73E925C +:103B7000771791CE52B2A7BD82FA892EEF408FDF20 +:103B8000F023E877D34EE01BD08FAD59C42F8BFDC7 +:103B9000B6769FB787984CF502C391BF4CC80E7E8E +:103BA000D5DFE09FCB6B562DD89FFE7B2ACD0B73C4 +:103BB00064C9201FEDD9FC3C3D2F9FCBA7BCE6700C +:103BC000430EF4A7B82A48AEEAF5729CB9F4FB2775 +:103BD000399942CE811C45FD33A7394847FD394A02 +:103BE0007026AE3BA772BE05F56F7B36D7BF8A1B2A +:103BF000C2F671B897D532FD1EC0E7423E989D735C +:103C0000493F3757DA1C88BCFB024FD8E9F755F219 +:103C10000FD0F8CCA9D07B5C4CE1BF9FF8A85B1912 +:103C2000BED9309FCD4EA50CE731C2145C46710D54 +:103C300049A335A4972CF794327F22E7FBF73AF09B +:103C40001E70EFEF94CE51F9BED44B81D08F90DE31 +:103C50000A1943BAD4CBB3C5FB0D6A36FF7D2135B3 +:103C6000E4243D7FEC5701D27FD56C1EAFF66BA5E7 +:103C7000331EF5BB3CA62D9B8DEB0C3854EE376FF5 +:103C8000273BD5B35AA5FB2B364FE7433760B99F87 +:103C9000FFBEA5AE2F5FFA652AC5DFECC80E0EC9C0 +:103CA000C6F87753E7C3B8EFEC21FE7B0F977E6928 +:103CB000253EE1F96901C58F6CF2743E5CC6E8DD12 +:103CC00003B2936D9E886D00C2F1B2EC97104F6104 +:103CD0009BF03D1F8783BF33540C744AF1FF5E890C +:103CE000E2531CFEAEDF61FF53D4DFF9711DE3C563 +:103CF000BB48B1FA023167FDFC87E1FA42ECBC8DAA +:103D00005C3FF5DF24F5E811139846FE705DBFD8DF +:103D100085D714A1E92ED946E713C51D1C0E5356AD +:103D2000BD44E325F8DB35F44BCF457F26A473F281 +:103D3000A7D33D84794D9C9E660B3C640AE8DFC0A6 +:103D40005F6FC98E17F74EEAE94B720DD7D368A1A2 +:103D500073859C069FC5F8AE96FEAECBEC26FE0E94 +:103D60008E45DC0FCB2916F184EC212AAFC41F74D9 +:103D7000237D60ADE85F7F57848FDBFDDE5021E758 +:103D8000D7F7E44EA7F77DDCC5D715E1BCBD0AB374 +:103D9000611CCB52D14FEC7B43FA7C8ACB9AD22860 +:103DA0003EA8FBBD212E07FA7E6FA86B420E964FF0 +:103DB00056E977C0EECD56FFDF7A7708E802DF1DBF +:103DC000AACF7645BF3BE48FBE171AFBDED0E634A0 +:103DD000EEBFDFC7C27BF09D8E50BEC589709D9639 +:103DE000FFCAB7EA0F2B52666C41BAB834F3F21926 +:103DF000BC73BB734DF94CBA0F3784DF7767A1C32F +:103E0000FE19241FA3F58C9E7B7D03E8DE33F95455 +:103E1000D27AB9CF57A8848DF7961D6DA9FC9E7BE9 +:103E20001FF7F91CAE3EEFF345486E8BFB7C28175D +:103E3000B0FF9A42A505E9567FBFD321EE9BB1178B +:103E4000F9B998A385EB09BA3EF4D98B76F2CF394C +:103E500040EF41BD84FD92DFCBB824ECA8905F39E0 +:103E6000C0CFD334EF0C839D5E2FF89C438ACCA740 +:103E7000FE0FFF97DFEBFB9FD9C67B30B1F7FAFA55 +:103E800084238F33ECDA9210753EE9D83B28FA3D53 +:103E9000814DFC7EF807F9FCF7237BF4AC88D3F85E +:103EA000AE80C3CCDFA59823EEE5E9F09B13B0D03C +:103EB0003BE50E89BF7FC19488D3780F6C4ED15CEF +:103EC0003A2FE9CB5E9E23EEE7CD6988BECF741A08 +:103ED00015BBE1E85F1A47F78B56EC2827FFC97C32 +:103EE000BC973400FD2B4DE29E518F1F09DF235EEE +:103EF000C4DA295F6D50425E58AFFA4E7C18450E09 +:103F000068072ABB11F5B500F1415FA64C71154C4D +:103F10009225D45354F43AA7C2F4372904A796063D +:103F2000298C71A51BEB65719ECAF978A85ED6B085 +:103F30001F18CF8B7AF95F85BCF5A8DC8E56637E9F +:103F4000874CEFBFDECCF9E11A2647302D4BFCBB86 +:103F500011E5692FF690DE5FBDB9CE86F2BE2B4B20 +:103F600026BF6BBD39588BFB56FF6EBC8CF2FE7FB3 +:103F700003FB458624008000000000001F8B080022 +:103F800000000000000BCD7D0B7854D5B5F03EF35A +:103F900038334926C924E4C92399494808908449FB +:103FA00080888238240463453ABC0414710201F20B +:103FB0000643B5D18299900041430D352AF2A34CB6 +:103FC00080A056B0019152893ABC94D657DA6A7FE4 +:103FD000B4CA4D5011043504B5D47AEBBFD6DAFB20 +:103FE000CC9C339042BFFBDFEFDEF8E9763FCE7E1C +:103FF000ACB5F6DAEBB5F734862F6F2A8A61AC7769 +:10400000888E6D638C7D17E22B6290FF2E47C73C34 +:1040100012A3BFC4318CA57C10D2F610E4FB9275BC +:104020008CC532B6A8C9C49899D7FF08FF2E6ED1A7 +:10403000E6976ED2E6CBBCDAFC22E6FE4D829EB15C +:104040008A67B5E57DC956DE3FB3C92C95B146A355 +:10405000ED4F7618BF77BD816DB331563F58E76499 +:10406000D731A61BC2D394A8C97319D4B32899A574 +:10407000C1FC9A0DF0FF30FFE6A698369C7F6314D2 +:104080009BDB61F9AFCF37789E836DE9344FE89FB2 +:10409000C66B5C2F7905BC9C389F45BB4CDB1FB2BF +:1040A000431A6E8BC0759C937A33F450EED9106E20 +:1040B0006BA776B0CE38C6165A799F9F488E9D3E24 +:1040C00068AF7B64F7FA74FCFE617D2E8CC80A66CB +:1040D0005A9CD8FFCB5F58BC26F8AE146096180DDA +:1040E00079C77BAF637DF0BAE0CF66C8837EF1FF0E +:1040F00000550B639833241BFE5FDD2E05FF2B3329 +:104100009621F2D0675AAC6BB20DD6F3723E14C052 +:10411000F82F6F36791B60BCC7749FEC7903E1BF41 +:1041200027C481F0AF5ED9BB93C1F7DFC7B86FC5B5 +:10413000F6E7EFFF708A04E5CCC0BFFBFA95F86D97 +:104140004827631A4D81FEF13FCDAA3C8EDF048BD8 +:10415000B81ED2566D79E996A0EFD83F4DEA793274 +:10416000D6C2D858C61E97DDC3AD80D7CDAEBC3CF5 +:104170009CCFE3C6962206F54F24B8EFC2797D5A4C +:10418000E87A5D672774A4BBB2187BF58745A9065A +:1041900080A3E784D9D10EE5AF1ABAC3A23219CBF6 +:1041A00049B6111E13CCCC131ACDCBB15F7935BBF8 +:1041B000DB05E98FF87753202DB549D4BED6E68CC0 +:1041C0004F8694FD00B30278EB11B6D095D9B2D7E3 +:1041D000A9877158A7644D83A4DAC67A96463066DB +:1041E000E9B47B108FCB129803E1556DD1F55C07D4 +:1041F000E569169D3305E9D7A6F322FD56B732CF00 +:1042000052C097A1B3DE85EB82769EEB20BF54B6F9 +:10421000D1BA9579541F98CEDC30BFB018976E3163 +:10422000F46B2CD5118C1E37BA88FE1E87B97960C5 +:104230009D6300FF5E0BD678E9FB38D9951F02F528 +:1042400071713E8707F1C65C3A573863AB6DCEA7F4 +:104250006C50FF191625327631DED988F96FCF8779 +:10426000EAA4518C1D7F6F666437F4F32D73455AB1 +:10427000016EA7F5EEFBAC40D74B994746B8973196 +:104280002FA5AC7500E1758981F90C00CF25B39C91 +:104290001F48D97C7FF982F6973A5FC9BA68BF3365 +:1042A000D8673E153D541A7C872480539599F9C2EE +:1042B00030EDD07E57CD7AE9BB65077E34F934FB0B +:1042C00080D349BCBE266739AEDFE91C1A0378B239 +:1042D000F0264C1AC8F12E39982F1CE677772673F2 +:1042E0009B53AEBDDD595B4B9C0ED6DB24F1F1A791 +:1042F000E82D4E33C0B56A838EF6297434752CF4DC +:1043000053CA385D2CB34D39CB60FE31B0ED900E01 +:10431000CCFBF5DED5766AEFF041BEEA9570073644 +:104320002DB5954E65D9081FE3A96ED57ACAD99ED9 +:10433000295682932B12F944C5B3DAFAAA0E6D7E80 +:1043400019339CEA56E008ED6B3F6A1B7F54B5AF0A +:104350000ED9C2634E8FA4B9D97F44B8EBE747BAF0 +:10436000AF40EF4AFAB73AEFF8A346C62648CE3731 +:10437000902ECA0DCCD99179793BE71089E07EC4A3 +:104380007271805B559F9FE96136C8E7E55F795F91 +:10439000BD2FF6555817D02BB4331B3C2C4AF57D56 +:1043A0007FDF9DB4E9F87832AF7F243CCC89F04BB5 +:1043B0009059933937D02E41C71ACD408F85C9AE59 +:1043C0006E9CBFD96693717EDB8D1EA643BE10CB5B +:1043D0001CED0086A78CCC1302ED06E97584CF4155 +:1043E0007AF336E4832792F8FCAE461F6199BD4606 +:1043F00084E320FD1EA23B38563D0CFA9375702EC7 +:1044000060BF618C85C0BCB684300FCE07EA99C40A +:10441000EB19CBC5EF984F82341E701906E58FE07B +:10442000F982FC37CBE2DD0653488472E4538C7585 +:10443000754B50FE709ED986FC365EC7E7DD1FFEC9 +:10444000E20DCC6389A69485630A4B0EFF17ED1528 +:104450007E116FE2F38A0F5BDE86708ABF3B23B763 +:1044600001E829C2EE0AB1C7129D6723FF50E0524E +:104470002DE8DD0F9703922F3C22B06FC260CE066D +:10448000E4772D266F9A5D1C49944FF4E2B97812B7 +:10449000F3C03F5624B8E2EC6309C4FC3C7D248B96 +:1044A000E40F563B80F8D3BA70C07726C1518367BA +:1044B00065DF6F9138BEF3F2BBE8FCEC5DC518C256 +:1044C0004F69972CE82CD52E69F86ABD8DE74BEC27 +:1044D000CEA138FEF90FCC661609531CC3F76DB593 +:1044E000CBE295E85CE9967F0165C90724EB43C8F8 +:1044F000873274D45FDB107736C265DD87168F1E76 +:10450000BE7B28E3D4DA41C89F631C79C81E53B12F +:104510001CF8E9EC21EE5C6C57B2D27DE110B2CD13 +:104520001923B2911EF37E2C585BC4E76B45792C9E +:10453000C6C496ABF7D90C3BA77725FDA998FF79A0 +:10454000E08A93605EC931CE7948170CCE8334403F +:104550004198ADCB89F9EA7D5C38A149E0F9F48B4B +:10456000C104EFEA7D93728E61BE232407DBE7FD71 +:10457000D542F03E7FFF40AF1EEA7F95ECBE19E1C9 +:10458000103EA657C2F99DDF734B0EA697ED03416F +:10459000FFF1B06FB0FFF83BCD243F2874F0B811A5 +:1045A000F09F1AD81FD7DB7979B2389F9257BAD8C3 +:1045B000624B206F89E1F881721D8E576B2BBC1EF8 +:1045C000E771BDDD40DFD524E86D9F0E4052B3AEEC +:1045D00066F6CBE9D70E3BDC02FCEE6110827EC4AE +:1045E000A57B20AF927FFA5AA422846B0D0862B596 +:1045F000B981F928DFD724C8D47FD82503D1678AA9 +:104600005526BC8737097A5DC9887E27F47615441C +:10461000C27A87B6FA26E8A18B101C2B91E8E3E159 +:1046200051501E33C030E121287FBA36F7B019F25D +:1046300086F55D37220AECAD4C1702A9E13F0D2E3D +:104640005C27FD417D49AB95D3B96179C60CD8573C +:10465000BFB473BED336C4791FD24BFEFB461AFFDC +:10466000BB0D5C1EFC2E6AD2D94328AF6F3001A36C +:10467000E97F3F7BD861331B07EB684E915926AE2B +:104680004322F8B2A14018305FC3868F3C7C7EEF96 +:104690000DC1A93C6BB7D0B80B3D8E290836FC5E26 +:1046A0009700F06EB1E6E3BCC39B67E804F2132504 +:1046B000284F6B9AA5B3413EAD85F71B3CFE56B122 +:1046C0008ED77ED017A13CAE834E87E2B9678B6E42 +:1046D000D3D37A19D14D556A4C1BCACD9B047D1B8F +:1046E0005A5D2CD176B9FC53B5AF98E49FCBF88EC8 +:1046F000E0370ADDBD06FDE2BA5E636692CF15FAC9 +:104700006B3472787BFE5347FB2099F1F32CF591C3 +:104710001F1289BED96A1A4FE18306A36D6D02F29A +:10472000AEFAEE8908E745CD51BAEA4CECC75143E1 +:10473000FD6CB030EAA739E57006F285262B936C44 +:10474000D8DFD264DA8F7F3531A417C3068B0ECF42 +:1047500015C34627963243545C3EE51F833CB47F25 +:10476000C06EA4792FB7F3F5364ABD12C955CC995E +:1047700083726C89DD7D10E9204CF023561B4A7250 +:10478000233374D1BE7D3AAF6B08D2CFD3322BC561 +:10479000F5E43F923983E865BD413221FD1ADCC959 +:1047A00051900F3F114FF2E11B02CE57A097410CE1 +:1047B000F09AF28ADE85FBD160E4746F580F7A15A7 +:1047C0007C772ED6FD079CC7044F5701D2C7C4F58E +:1047D0009F864DB25DFB39C09C1E6AB74CE11F9DA0 +:1047E00012F18FB22446F3A935476423DFFD5B083D +:1047F0004F63422105BEF9D697208F42DE23F41481 +:10480000CFC9102F9E473FD7F7D61B60DD1F8B7D8A +:10481000FC371DE737CB214538CC32BBBB71BEB569 +:10482000DD390988FF831171F92857C22493F0FC00 +:104830003A65E47A62301C6699277D86DFBD25F4EF +:10484000481CDF0EF388AE2D70217F8891BD4F2E5E +:10485000417E3DDB42FA51F4FD93A87CC5C7CF48A9 +:10486000A87F159432DA57035DB217E17F5012F337 +:104870007E454F7437B0C89968847CB44B96CC5051 +:10488000AF4F183DA104BE6F6DE3F86D6D1FE64597 +:1048900078EFFFA79EF2BDC5CCBB0DF2AD39B627B0 +:1048A0004BB0BE2C93E4F85F49829E1733EAB735CC +:1048B0005C47E3B4560101637BF857C2F6F7D8684A +:1048C0001F8CD7EB787F77F1FE98A19BCEE5AFC721 +:1048D00059ADC8AFC627F3FE7AE7C92477F8F5BB10 +:1048E000B919DE87E87BC94372C9BC50AA3F2BE8DF +:1048F000C39396E26DB707F8D9D73F8BF6E27E6691 +:10490000C037CDA0EFE68BAAAF859EEE290DA5F6A8 +:104910005F7B759E34C06B7EB7D48378F99A89FE2D +:104920004AF9FE64860E9F0EC72FB239707ECC5CAA +:10493000E8EC56E909D0DE837A97C7A2E3E31B7A55 +:1049400023907F2A78847AE23B710DCE44DC8FBDC0 +:10495000D3659D5A1E50D277EDDCBE911BE71C9AA1 +:10496000121BA053859E0FE6C6E7A33ED31F5DFF33 +:104970009971FE7F578A2B0BBF2FB8FD96469AE49C +:1049800054AE171D91808E801E6599CB35F2ED8354 +:10499000B635D8D5F20BE73B0745BB91839819F59F +:1049A0007DD88B1EC4DF88FD23E87C189FA213FCF2 +:1049B000894968471821CEB61152474D14D0FDE100 +:1049C00053F624A43F85AE0F860E227A57D1B593B5 +:1049D000D617342F667065CDC8BA7C3EB7A638A707 +:1049E000A48C0DB4EF5F6EF4105C64B9E31EA28F6B +:1049F0002AD817B0BEF7B00ABEDB7EBBC9A747FCFA +:104A00001A2D4DB88F4F842D783DD686E7817B16C1 +:104A1000CE67EE9C5BD6625E3A3CC05603F3FEBAAC +:104A2000B83B0FF5AB474CEEB9585F697627C7C165 +:104A3000BAEEEBEB3A29215F740D10E7AD2BCB9565 +:104A4000D5FF7C0A243E7EA6EC2EC6751C91BAC307 +:104A50001DA944F7F41DB3C4523F2705BC0E199D90 +:104A6000132EC0FC0F6D4CCE6980F914447C70E7A6 +:104A7000323C9F9F88CFC1735E81CB11B1AEC53AE6 +:104A8000579C4FAF996F35CDD75A9C9C9842F35D98 +:104A9000407CDC22E66B700CFE57F36D50F6F32A77 +:104AA00089E8794B28907C6E605FB93FD2D1396933 +:104AB000D235B471BE6076203DBF2BE6037A0C433D +:104AC000F917BE23F9B89D3946200F1864E2FB6A36 +:104AD000D03A89F8E642E620FDB584B99250447C8C +:104AE00038C5BD16E7FD1F61FF1C6BE72685B1EFDA +:104AF00041FFFB57C73B50CE6513F8FCAF867FC61E +:104B00009A7568179921EC5B8B855C3493398D38E5 +:104B1000DE6CE636223CFEF495EC44BDF84F42FFD5 +:104B200099C33C543E8F7929BD93F9A8FD5DAC9B98 +:104B3000F27F0CCB1E520BF09FFEC4B034A46F1555 +:104B4000BCB7205E813EEE8E41FA78F08F9C3E5AD3 +:104B500063AF895EA70BFA807DBB03FB29882E68B3 +:104B600044BEC92673BA08EC8FEE864880DFF4385D +:104B70007B0EC2E3A61F383EA67C6AE5728C5F6E90 +:104B8000705A1261FD370B9475F5F1F3EBB8B33E33 +:104B90002606E655A8B7101EBA1C7A3A17DE9854B6 +:104BA0003115E1F0463DC7CF1B4FCA849F69CCDB6E +:104BB0001805E92D31D3237DD80F6A4C305E57A6F6 +:104BC00044E742D1606340CF877F7F32549B9FB6DA +:104BD00089DB1DA63AF53D264C33B5768269ACF9E2 +:104BE000823E1B53ADBDE010AE25FA72BBC1F194FD +:104BF000F098D361C868D808B2C75DBBDDE01DA4DA +:104C00002BC56EC0D03A097CEBA7219CAF764D38FE +:104C100032FE6B58F7C54E3B51F99A74A16FA7BA93 +:104C2000FE82F8A896BB17209E4FD501648731F607 +:104C3000699D993981964FD759297FA62E81D22F08 +:104C4000EA6C949EAFCBA0FAAFEA1C941F99EA3CA1 +:104C500089FDAC0BE17850C65F21E873DD90BC277D +:104C60005C30FEBAB78C942FED689982CB5C31E44E +:104C7000D4EA3080F78AE724B2CF54743A650BCC7B +:104C800077F151F75A143F97BED53D0DD947D52539 +:104C900089B9616B4C4C779DC7758E7DFFD3388485 +:104CA000CBE775E3681E67EB9C348F737545944EB4 +:104CB00049755DC076D54DD2D141D0DF6DBB7A0C40 +:104CC00098163A259283273A99D78B72B0D1ED4640 +:104CD0007AD8946876203D4CCA9AF1D4CF18F26302 +:104CE000F73FF0FBD9D18B0A0740F914D6DD380025 +:104CF000DADD345F72F86C01BABDFA3EE570A812D5 +:104D000034F1E5AB12C1E7CFFBF4348FBE13A15EE3 +:104D10008676FF7D6144777D4D2692270ECA1E530D +:104D200012E40F26853A903F1E4C1A48E7A249EC40 +:104D3000A373802706EB9EF9526A3CEA09E776FFE7 +:104D40003C416D0F3A17DDF1DD87C8B73ED639B665 +:104D5000D1C81DA73743FEB7831388CF7C25F870D1 +:104D6000B5CCF7033BA9DB867CF05C28DF6FBD1F69 +:104D7000846E437E774A91E33F086D433921EF8586 +:104D800041F94C7BCE0D498D0DACABE6A591F1A858 +:104D9000FFB0C131049F0CC9A0AB55D90F70DEB66E +:104DA0006181FCF0BD4B4F3D600BE40FEEBDCB8944 +:104DB000E7E8CEDD4FF6BD8C7016FAC1732F3C3597 +:104DC000F0FF40AE72CF9A505C27CA79E360FF1CB7 +:104DD000DC1846FCEDA0D171B216E7F99485EC4CD5 +:104DE000CFFCF2FE530730DD50957B3FA41353A355 +:104DF000B9DDE157F3A62442BB9DFB590E6EAF917E +:104E000030C74130BFCC4D170EA31E94ED8D2A182C +:104E100008E58E67738EA008F2FC6F251FDAF77322 +:104E20003BDAB649C8437FD83E10E5D9C9A9368DCB +:104E30005C3F7248D1713DC9BB5A7921B3F5423EFE +:104E4000F6B77B20971B407EF8A2DE8EFBE12FB9E0 +:104E5000A45F097BCAD85766BF399EE1BA3C89284E +:104E6000CF7A8A65B2A3E3F28D90FF725F2AC925DB +:104E7000FB751E3A8F3C0BCD0EC4C7972ECF93887F +:104E8000BF2A688F7267558E27E206D4F33E1EEA6A +:104E9000000A64439EBEB908E153BDEFB12903A1E6 +:104EA000DD9713B87DBCF4A58B5308EFA08DA27ECF +:104EB000F3E5BE86B83BE0BB8733F3C7E2F9EBD23C +:104EC00077D0386C191FE70971DEB1EE6CF2AB10C8 +:104ED00069DB50FF67662C8FEE8C3A348805F0B59D +:104EE000ACB3DE8EFE80316EB3434FFAA62711EDD0 +:104EF00075CAF909E7E012A49B4459F46B9D497AFD +:104F0000C2B59E7F8A3D4FE9EF0999DBE7147BDF4D +:104F100016999FE7EDC07F90FE94F31AC6BD2F75DA +:104F20006CC05EC8AC2FE658619E9F811C4576819F +:104F30006B1C5F91AF9609BD295F9CBF730734BCA2 +:104F4000D20DEB1D6976AFC671163327B7BB1B1C9C +:104F5000369447A2CDCE86543A477B93700D70AEFF +:104F6000AE433854EB41EE4A55C95DE66B3B571BE7 +:104F700084FE16CC6F1BC2F3E6A07DA401F9AD2D13 +:104F800000DF15E1B9B43F1B18BBE23A5F83FDE9CE +:104F900086FDF90AF07F4CD9515DE5EB70CEDEC895 +:104FA0004780BFAE23783E43DE196EC3F319154127 +:104FB0003E269E5FC1FD01BC77E07A277E13CADCE6 +:104FC000AA73EEC66FAC641F6696E86B5AE784D08E +:104FD0002B9F2B2BC20FA73E02F359F12D17A6567C +:104FE0007C9B4BFCB0BFF51DC1F501DF7C30DDB90A +:104FF0000FE10EF33B80E9E44B3ACDFCFCF4788DF5 +:10500000F3BB57621EB4DFB20B32E9539D425FEB34 +:105010002CCB247D70BFBCFC3F56A1BEF58E91F811 +:10502000536738D75B3BA7C7919C7150E1B3C57AF2 +:1050300092473B43C4F7EDF1543FD0C4EB593CE3F6 +:10504000F54AFFF3E2A87FE087749E78405F24FD75 +:1050500074BA333114F5D1E9713A1AFF9F4746FE0D +:1050600006F9FA7433E9D17E3D3887919ED95ACF3B +:10507000F5E081FAE56F66215F6808A379B6866F6F +:105080006B42FF59EB2ABD03E9A8D5EEBB13F5C06F +:10509000D60BE964DF003D97FC02A0CF92BED55B42 +:1050A000AC6FDBC6F55725BF4DE8AF73F712BFF302 +:1050B000844F07B87E20F073C2C0F5C613A89F8E38 +:1050C0000AF8074EA03E49F2A0271CF525F7B43098 +:1050D00003D27970B98207A5FC4323E89F0807D063 +:1050E0003FDB55FA676B544B2CFAD5FE99EAFE1656 +:1050F000F13D6F717B08E7BFDE10D463EFD7BBFED5 +:1051000086E59B431DD36E47BE5BC2F5B00F8D0293 +:10511000AE7FE77AEFAB25C716E1BA5EED4D606A68 +:10512000BBA842077EBD7F954EE8FD1C4F5B77C450 +:10513000939E3E3E19E800EBDFD6F37359A9B7A45E +:10514000F37AD0FB918E7AF784287A3FD9973D2F56 +:105150000DA3F18B6670F9B46FA5AE0D65015F9D6F +:1051600063C2E434F85ED8F73C9DE184FFAD029E53 +:10517000770BBEB455D8F93D1D46A1BFFB062DC324 +:10518000713B8793BEEF6382FE0E84517D1FE3FD6A +:10519000F559E4ED88E7AF059F6990B8DCB095F963 +:1051A0009650FB8E100D9C079A78397B11CA55F0EA +:1051B000396814EDF78448EAF2FDB26F27CD6B2F02 +:1051C0002F7FDBE41E3E546527AE8CF0A54759AE19 +:1051D00005AEC0F791DEEED7FBEB910EB62ECF52A7 +:1051E000E0CABF7FD244F57E7B4A955DD853BCEBC5 +:1051F000D3B17D672CC1E3AB959FE46DB2115CB375 +:105200000F60BB7D26DA0F0A5C95F96D1574E71601 +:10521000F606F62097A34E5ABBC3D5FEB593AED380 +:10522000E1C8973EAAD5FBE488FEF9C9FC4D9FFF73 +:1052300027FAD7E6BBE41ED41BFA6DF7E042F2630F +:10524000F65B5FFAC302EAA7521BBFF0F3A1CE9947 +:1052500043D5747A56A7B13FBD8CF09454F00CF747 +:10526000D7F3388933995AFBD4D950014F6E3FF2A6 +:10527000BC64273831414FA7CFEA486E51E6F5B2FA +:1052800081C3EB65618FF2970BFB911F8E5F001C52 +:10529000E1BB06ABC3AC86635AACBB0AE7BFDA928C +:1052A0006BEE86F2D2C8FCE3282F561BE03C06BC0E +:1052B0003C3AD45D3314F54321A728F6CFAA4CDF3E +:1052C000023ABF565EDBB95A11DA592DA5C0343AFD +:1052D000DBF7630AF32278B0BD9C3FBB75BE089133 +:1052E00097709E15F0BF13A3D18F0C675534CFA3D1 +:1052F0007C1A1CD7425B3E8ED7A35C50D1A1778627 +:1053000044605E0EB4B363DE4B7203E873E6712053 +:10531000BF54441DF8E578282FB758CC2BC93FA9B6 +:105320008D2F29DFB7AE2B35FBF2F2CBC7E7EB634E +:1053300016A70DED07C5E378DD0DB505EC93D1009B +:105340002761375CD8CCF55FF8AB477E5FD22A3156 +:10535000D41B8A3D737E8274553CABE82CEA23C58E +:105360008FD4AF457967A9B02F2F3D70E8EF880F34 +:10537000255EA1B8E3996F51FE5C1814AF52D21CA0 +:1053800034AFABC4A994EFF8D1A48D5BE172F30DF7 +:105390009D6D7ADC578BC5FC996722C375DDA090A3 +:1053A000A0901B3EC5CCF51877E1DA87F471432B4A +:1053B000FFAE8AF1380B25FE618909CE6580F7F1D1 +:1053C0007099E070715324D90F2E0A7ABEB885C344 +:1053D000A56A00CF576D97C80F5725F84BD533DC1A +:1053E000EEB304E01899CBE3329CAA79570AB8606F +:1053F0007C86BA9CB570B95389C7C0380DA7CA9FBF +:105400005609EB3A11CDE333D4DFA9E333D4E52ACF +:10541000FB94B06B79095E5B8DDEE776C23CF50FDD +:10542000862AF129A12897AEF8F8E627D1BEEAB777 +:105430009F9719FB9123849DBC9DF35163408EE09F +:10544000F6F48DC3851CE14C47B99A3D1A427A4C5B +:105450006BACCE1382F5655CDF6DB5737ED23A2FEF +:105460005DD8CBF7FAE8DC7B4CF29F8BC8BFEFD856 +:1054700018E0EF34EE8670C1DF9DE966AA1FEE10DA +:10548000FC88D7C73285BF0B79C31B3B1DD6F721DC +:10549000FE2FC0F70E237321FFB9A38DF31F45DE46 +:1054A000B84382726C6FF0C6A23CA0C02DB85CE11C +:1054B000134A796B9433313A93E2A2589A4A1F6C9B +:1054C0008DF286609C132BBD367B6EBBE0BFBD1B8F +:1054D0004368FE9F4A3CBEAA24D4F5D04DB8FF1EB7 +:1054E0004F4941BAB2A671BB4D5E3EC097B727FB8C +:1054F000AF82EF12C021EA5D25BF1A4674A9C475B8 +:105500009CCCE1F6B5B031DCEF9B28FA494CD3696D +:10551000D284501E37F16921B70B868F71C92827B5 +:10552000B5DB783C4089ECFAC38DAAF9C0B8668433 +:1055300053AAE84F815B894E72A2BFA3E45726DAD3 +:105540000F300FE2EB793512C57B7C2AEC7D0A5EC9 +:1055500018E372D11DEFC6E692FF81D52B767A0F44 +:10556000FAEF409E23BEDB2F3D02BDE23915154CFC +:105570008FED8A5CCBE98DDDC9E573106FE60D8593 +:105580007E17CD94198E87B6DBEF51CE2DB479AF4F +:1055900028D79619DBB6D955726D9971DB95E8CC91 +:1055A0004F1F4174164C37FDD1D335D0D96DFF8ACA +:1055B000CEE0FBB1AEF0FEE9ACEAB7BBF77B609E94 +:1055C000E5BF792C8241BBB386963807F45BD9BE20 +:1055D00026C209E919832702FB3BEBD5175DC9CF2A +:1055E000FC30E259D85F2595DFE68CC1FBC2CB00C9 +:1055F00097B20F4C0EC01C5BF6ACC96722BB4319B7 +:10560000C92990EFE1F975640F5D762028FEEA99CB +:10561000C7E26CE134CF41E807078994FCA3D53B8E +:105620008C14BF55FD9EDE8164B18CF5AEC5F905C5 +:105630007F8FF3B80474BBAC435F2C475E5E0F18DA +:105640009391CF2DDBF7F005B4D304C76F950ABB58 +:105650005AB03DF6813411C7751DBB0ECF53808BF8 +:10566000C387F408F349E36827FA6D78EE99175E6B +:1056700086799EFD303E0755B5F33BDE8C903203B4 +:10568000F659C56E7DBE2335D27D05B82AE957C2CD +:10569000AE17C01BE7DBB603120515B14E9E561AB6 +:1056A0007D11E361BCCA3623D9792A776FDFB91936 +:1056B000E511803FC69954EC3EF6971B205FB1C7B9 +:1056C0001833952FC722C505F0B5CCC6ED220A7E4A +:1056D000CA5F3C26DBB27839CA170A9E2AF61C92AA +:1056E00059D6E5F02CE83824775BAE80AF8E9E2942 +:1056F000645F78EE6F32EEB7B3AF4A2CDE7EF9F717 +:10570000A5ED6F4660BBABE1EDFC8E30E28BE73B75 +:10571000258A0FE90F7F772232C6227D87B32818AA +:10572000B7F44393772AE2F5972B88CE3F372CE7DF +:1057300074FED49A3827CCBBD4E889B352CACB4B79 +:105740009FBE57D09F33514732912711D7B378CBA3 +:105750006C5A4FE9538B683DEC49898D05147C0BDD +:1057600072EC9E2BE091A5F3FDF1F9364022ACE7F7 +:1057700073118FE8F9935EF09D7B483EB957AC9169 +:10578000226420FFAD886FFD8BE0C30CA52395FC40 +:10579000BA6CC7BA2EC4C717439CF1A8C7C2FA3D5A +:1057A000024E12C6DFE8FF5818CFF1C1E393E93B80 +:1057B000380B0AB01CDB7719294E59F51DC14D195C +:1057C000FF67627C987728CAD19FC7F1F806862EBA +:1057D00011A41B897F53BDB274AA0DE09F2DD6E999 +:1057E000DFE73BD6F37D2DF6F937EF71FE51ED9DE6 +:1057F0005E44FBBFCBE88BC776DE43B324DAFFC140 +:1058000071A6820E7618051D68EB615E06490DCF04 +:1058100057B9DF6E49AB2A9E15E124FC2DCB400E13 +:10582000F665A8D729FC46C29FB254ECF760FC0588 +:10583000EFFFEFD3843F46EC7FE57BB6E5CAF6FF8A +:10584000C07EF7101E2B41BE4039A8F20313C939A0 +:10585000951BF5148FF449F391B8EB81AECF752801 +:10586000FB53CB4FFDFB73258F572DDDDB2E217DA9 +:1058700006EFCF73A55EE98AFB13CAAFB83F4BD9D9 +:10588000FF5F7EEA87B7763F2EED879F0E4DD7C22A +:10589000F35B961989766F662D4E267B5B105C153F +:1058A0007806F3C5D790C9C55ECE1719BAC2557030 +:1058B00054E0A7D027686E348E9F6E15FA54CE2719 +:1058C0003F7D06AF570BC7E0FAB382FFB87EC7E350 +:1058D000C72A815FF13865CFEB83C6D07E74127B17 +:1058E000612DAF63BC6220EF0DCA7704B57706E582 +:1058F0005D41EDDD41F9E59AF695078EC83C8ECC09 +:10590000A76967AABD95F4A5CBE5042FDFD7FB2EC9 +:10591000C81EA48BC1BD14CF96AF771CCF01BCDECF +:105920001AFEA205F94A83D0D719731CB741BF5399 +:1059300006A70AB98DF38B02C12F56093E5160AEFE +:10594000203C34301DB7DF5DC60775249FBD61BEA6 +:105950007127CAFB058337109F9F3C58EF3365536F +:10596000DA83E91407A7FB86C1A307A3FCDF603134 +:10597000392409C7BFF5ACDA2FA5A405E6B7E7A21D +:105980003E35D9A2E527B706F1875B6CDAFA22B675 +:105990003706E5D7A24C23F362FFD85EC537EF4C3C +:1059A000E7F7686E612D8D56BECF287FA380EB6030 +:1059B0004B9401F9EE64CB1F8FA09D60E237CC665B +:1059C000B207E03BE91BAB01E13BD1D0A3277E62EC +:1059D0001B12857206B2981F073136AD63CF572868 +:1059E0004F4C9B1546FE9A69ACE31DF4EBB0597A17 +:1059F00007C8E2ACE7857019FD2DB7755C3020BE95 +:105A00006F9B20A15AC57A42AC49F7C0B8C57A1E2F +:105A1000D7FAA8807F430897538BD70E494F81F25E +:105A2000DB301EEF0A7EE5A3C22FDC3049DA82E7C5 +:105A3000577203D71F94F6D80FF6FB87741E1FF317 +:105A4000743A3FAF947C72016F5FD264EA498DC0B3 +:105A5000D4E81B06E94DC3F3B7A543BBA929EC75F0 +:105A6000AEE74836949F7B42849D69839DE47737F7 +:105A7000807A13AEB33695D13A273964BC1FD5B3BB +:105A8000D16E453F6858A693BE5FD222D9D0AFD41D +:105A9000338971F93F5C26BDE9A4D53714F9ED4986 +:105AA000C77007CAF1C98A5E98C5E3A8CC19EEFD94 +:105AB000388FE296E2B7901ED90FB0EE3CF4CB31AE +:105AC00002FEC37784321FC9E18E08DC37F7EB5D35 +:105AD00007D3615D9FD4EAE97EC927A5A1E49F4D64 +:105AE000D6733FD38574CE87A6A2DF2917E302BB06 +:105AF000E7613F5B47D8081E53A3AD79161C7F4D65 +:105B000008C3F915475B17E0FC8BD70E237FDDD464 +:105B1000D55CAF1A646066037CFF84E86F7E7D6BA2 +:105B200011D9C1EAA37518D738D8CC0C184F7E5BB1 +:105B3000470EEDE755C3DD4FE33ACEAC6237209E0A +:105B400016356F243DAD509F198974D7C76C748F7B +:105B5000A43F3973671D8F397CB6CE4CE9AFEBACEF +:105B6000CC003C6C575D02E55FA8B351DA51974118 +:105B7000E57BEB1C94DF57378EF2FBEB9C943F5098 +:105B80005744E9CB752E2A1F0A1B01ED1EB01E8F4C +:105B90002997E74378DE2947F33CAE03D6437A26BC +:105BA000862AA2BD6C0894EBA2A91DC5EF433B1643 +:105BB000974BD62C4F28A478A45ECAA5EF58A4F81A +:105BC0006E22E48718C47D02E81FE1A7E003BEF758 +:105BD000C5A9F051A83FBFE13A80675FA9CE81F225 +:105BE000791FEBDEFD5BCA5BC80E9224B30328F776 +:105BF000743F68612867E8758E0413C6C7806260C9 +:105C0000509D5F772D0F6106159FB8BB364A938F65 +:105C100079F0C4313C86BE8D73EB8601FE4FDEFF0A +:105C2000E567CF40FF5B579DCE42B91FE6D1FE042A +:105C30008EBB32D461B2919D9D4563BED1A8D8DBA5 +:105C4000288E8FEE97D9303E38AC07CFA3A765EBEF +:105C50005F9E41B967ADDE8AFBE243C41FC0FB23F0 +:105C600081BF858D9C4FB29627C8EE59ACF0D5A662 +:105C700042A7FF9C02A00D1E96C2E3C243B93DBFDE +:105C8000A7F4D4EEDF42BF3D2B658760D94E73DEAB +:105C9000E5E3FBFB0FEAEF542223FB1368C5AC16C8 +:105CA000ED929DB6934B916E1F3251DCBE0487C3BB +:105CB0007C287737BD7182E2FA6A8F937DD06DB60A +:105CC000509C1AF318CFABFB936A5FA776AC7B703E +:105CD00014CA09C40F6F42BB8553C6F867EC13E9B9 +:105CE0006661C661BA37C95A242B8A0225A2BC4410 +:105CF00089BB36B887CF8283EECE617A5A6FF9308E +:105D00001ED7EEE76763B81E5FE61DB64DAFB24F14 +:105D1000AF1A9E7FDD30351F9B2511FF82FD6EC6B9 +:105D2000FD7DD3F085370E8BA5F243C8DFA6E6FBD9 +:105D300086D6105E2B9913FD2509CC817C1EF18A35 +:105D4000FDF7351948EE53F6839A5EE5E8003D030A +:105D50009D3B757C1F303DD6438AEDFEBBF6E902C4 +:105D60001BDF3FCA3E54F619CE4F974BE33B0D2A3B +:105D7000FE666C9AA443FBB9B29FC8FE9A87F748A7 +:105D8000F95F49B344F70A4A5A72E425AA7365A138 +:105D9000285F84F73754E53F43BC8CC57B86DEFA29 +:105DA00004B4CF88FB1D984F01383E5EEE8CF1B0F5 +:105DB00040FBC5027F0D21AEAA9750FFDE1D46E7CE +:105DC00060F1DABB6E1B8BFCF4850144BF5F4CDBDA +:105DD00043F16A0B1BE7DDFB3E94BB9F0DA1F2BABA +:105DE00061EE75C8C7BF906C0B5E4239DC63BF7D46 +:105DF0002C7C9F8BC8247B86B789C67D68D2588A45 +:105E0000C3633619E54465DE0B3372D7A21F746194 +:105E1000F3A418BE49DD6588DF86797718D0FE586F +:105E20002BE6578E3E73F4EF8BF312E024A33DE78D +:105E30000C730A3B17B76B7DF1EBE74FE3F9FEDD1F +:105E400073E1560467F9287E5EB34C6FDE4CAE8773 +:105E50006AF481C9CF7F1C817C5D916797EDD37314 +:105E6000F9D5C1FD0E9027F935582E3DFAC25F23B2 +:105E7000AEA807ECE3768CABE9014A1CDDB2DF711A +:105E80007956C1C732E912E9CFCB5E591377A5F82D +:105E900034D43F911F04EB0557D31B82F5855F0F68 +:105EA000D3DA5FAE351E4EC997D666A77E3A1AE39F +:105EB000E3DCFB10D5E5B579A9183F5E5D3B915257 +:105EC000255EAEB47624B52BAF1D4DE5EF28F171FC +:105ED0000646719635423FEEF3A645B27F31FEB2DB +:105EE0004D3049F8BECF608B44BB821217CD0CBD3C +:105EF00024BF55BC961A8DF455D6F9A8AC83F27F11 +:105F00000EE3F2D99741FA4DF5AE4FC8EE50C5BA3F +:105F1000082F802F905D027059B649A671FA9B5FD9 +:105F2000C5F3E1CB916ECB3A24673BF45361B23DAC +:105F300082F24BC59B338D1E151E3F44BA1D7BF963 +:105F4000FCDF1D66D3DCD7C1F932EAA7E32B8C2B2B +:105F500063BF0923F9ECEB4E6E7FFD7C977E3BCA55 +:105F600063651D7BAAC94EB22B8C4CD55F18B9BC9A +:105F7000A8F4735A8C777A98125FDD41EDCFED0A61 +:105F8000630FD9F97C910F7C2169EF0B9C17DF9D82 +:105F900017F06AC07D161B685F66699151BFF9F200 +:105FA000E59931AB715E07FE1C3114CABF13FBF2D9 +:105FB000EB7D6145048F7DFF987610F5B37D05314B +:105FC000928ABFE8338C7C3E5EEE87F9B293DB2F7A +:105FD000AA10CE4017E784DDE1DC0B03DA3C2A3956 +:105FE0005EF9FEDCBE17237499013C2E337B9AF0D8 +:105FF000A855EED5988D6E0FCA8D86CEE91EE4EDBC +:10600000B4AF619CA60C8F0BF995D24E363B49B8C4 +:1060100051EE1F33257E50C4BB80FCF0B61BE65FFB +:10602000532633941F168CB2CDB913CFC1378D844C +:106030000F36D8F604FA5116BC3B80215FAAB13B5B +:10604000C85EB46034E72F3D761EE7DE7B7F38D92B +:10605000B32B9B24E644BF5942128FABF1EB638E06 +:1060600077D7A1DDE29D54B28F577AF5CC8DEDC67E +:10607000F9D2A7ABECCB49402FF87D5606D7034E9B +:10608000E2BD180B9E9787D3451C8384E3F8F12863 +:10609000F9D2293E638F363EA072862F1DEDFA9508 +:1060A0007B13C9AE7F5EDCAFC1729C7F652E8F0310 +:1060B000F0B77FE0703AD263E5C28E0C2BADCBFA1D +:1060C00015E9152F85D33D44DD6FC3853F2E641B35 +:1060D000E95D191C7F65117114D75D9821F417FFD4 +:1060E000FE742420DF1DB8CA12A18E731828B5F0E3 +:1060F0007886766D9CC34999977B766AD771DE085E +:10610000E5783EB56BE31CCECB2D3CCE61A7B6BC8B +:106110002CA285D6D583711E08AFE7B85F8D59BA1A +:10612000F663FFE5CF87D0BE28AFAB9D86FAED17AB +:1061300089DE2507A0FC8BE78633945B019F24A7AB +:10614000947924E2FFE5C026302E0ED2228C6F2BEC +:10615000FFF51349648F5DC5E5DAE3E18F93FED166 +:10616000B7C324213F3F1B6B8BC4FCD9DF0FA0F7C3 +:1061700028CE4A2D49389F72204D944FDCAC6501E2 +:10618000D995779818FAF5CB7798282EE16CFBDF34 +:1061900086ABEDD850AEF1D72AF3F29FDF199C9F62 +:1061A0002E16745296C1F5E78AE17FDA8F72458F19 +:1061B0009DE307F0477ADAE63D2194AFD81DBB0D89 +:1061C000F74D7947488F9EE4309D46DF2B030688C4 +:1061D00076B232C6E5992F761929BE02761CF1C532 +:1061E0004AC1170BF513E87EFDC58ED191088F7259 +:1061F0005DCE4F71DDE5EFA4D15D00803FCD17FF8F +:10620000505F3BBB7310BDB330359ADD3D03E151A8 +:10621000FB0F8AA7381BDD921D7D05BDAAFCB7E1E7 +:1062200014B75ABEEE3A1DD9D3F55C1F84D429F1B8 +:10623000FBC479284F54AD0B5BAEF6AB945B4E5369 +:10624000BC4730FC5ECAE0FCAE4AC47D55ECE4EFCE +:106250005F54C27EC338E88AB5DC2ECE7E2DD13D98 +:10626000C91521BE88F1905FD1AE277F4085DC91B2 +:106270001E0BF3F66670FE07EDDD38AEFF7BD9F13D +:1062800004F5FBCE6CC2BB372346F8271E8D43BCFA +:1062900006B75F11027CC4A26EB73D428D7FA59DFB +:1062A0007F5D1DDC5E739175DDF757F8E49B5D2122 +:1062B000342FE0F7145717BC5E982FD165C50B2615 +:1062C0008A2B3B27EE837D0EFCD4330CE773EB2344 +:1062D000B4DE3FCDA478D5A55EEDF7176D5D796886 +:1062E00047B8B8EF36037EDF2EF879D5BAF1846768 +:1062F000F6AE91BE0BC65B9368E7DF7FBBC378BC8D +:106300000BEB7801FB3BB73B4C87FBAF278AD3C72E +:10631000B949304F3C0776C7E7D21D1214A680CE8C +:10632000CAAD9CCECE45752459A97E588E86AE7CCA +:10633000D012E911BFC1B88E5A2EBF55989BC9AE75 +:106340008FF12079B994FA4C57881B413A243BC10C +:1063500070E17FC3F1308E04FBA3F3A84346FFA393 +:106360005BC89D95BB82E33E78FD87199272AFC9E9 +:1063700016A3C4A1C096AAF048E41FA868BCA70C45 +:10638000F94CC5F28D77225D2AF3AF30B022E407D5 +:106390003D929EE6D11302FB02E555F538293CB546 +:1063A000C605D6F9A9D8F767326CDC1E0EC52DD00C +:1063B0004F65A3D44CFD0B3E41F147AAEF000C32D0 +:1063C0009E333D93447DD07A7B44BC64EF6EA94DEF +:1063D0007DBE04AF7BC870CEE77BECB64726C40415 +:1063E000E2EE20FFEE4D63284FF7D41A1079D7D391 +:1063F00067440767E7F17302283E07E1861A923F78 +:106400001E434FEFC4181273B97E86F1ECA89F614A +:106410008AFA99CDC4F533CCA37E8629EA67588ED3 +:10642000FA19E6513FC33CEA679847FD0C53D4CFB5 +:10643000B0FCC6E19C4FBECCBC230D30DE69A96B1D +:106440006DA2447E69EE7F3E6B21FEE7F74F9FD53C +:1064500069FDD36775C1FEE930B57FFA6A71586985 +:10646000B1EE11C3C7129E35FDBD9CE21D89FAEE47 +:106470003BC8BF49CFE920FD3F7D8BAC817BC60E79 +:106480006D7EC42E6D3E739F369FDDA9CD3B8E6A17 +:10649000F31770AF23FDE48658309EA77BCDE76BE2 +:1064A000519DFA3EC63D0AE7F9B5B177278FB3F69D +:1064B000117FE9AE07FC727C73BB1BF486F4ABC49E +:1064C000F35EF5FD9CABBE9BA3A507251E69ABB192 +:1064D0003711F9E427CF999B719E9F087B299B6B0D +:1064E00026F9AAC67F1E71BDAA6683B40DCFE1DB73 +:1064F0008647D3FAFA8EA7D1F9D49F7EB1E8D26845 +:1065000092CFFDF966494771D1097174DE29F25BBA +:106510009204F21BF23D583FCA85C336E934F31F9B +:10652000EE0DD5C077E4B3D19A7C56C7404DFB51F0 +:10653000075234F539BE11DA78AE59F587F8FD0700 +:10654000310F21AFCE6C1EADF9AEC4355EF3DD8ADE +:106550005566A2AF15EFEBC9AE5A8A15183F827285 +:1065600025ACB314BF457FEE0E1E47C26AB5E77A6D +:10657000A98179AC30F545E2FC51E2BE4BADCC19B6 +:1065800005FD7C99D3B213DF9129FBFD9FF3AC1875 +:10659000CF274D8A47FBC50B69EE9F0F0778271958 +:1065A0009DD3C85FB3272DAA1EE5CEE3C7C82FAD84 +:1065B000D04992D11A8AF86C6BE1FA00DA71F4D101 +:1065C000017CB7B50C081D6A09AC3B80DF4C929F7B +:1065D0002F1ED7A33AC04A27491E795460FE35E2E0 +:1065E000BC50E6FBA9D01BD850DECFCF447D65EE72 +:1065F0001B4F4703EACEEB0E7FB70EE6772EA7239D +:10660000DD0769F9E6B6B83B001EDFCBEE165C4746 +:10661000CDDB0511E84FFC769791EE517DD6BAFDA2 +:10662000698CF358D7B25D46BB41B9C12B939FFB30 +:10663000B93619E33C6E7EB68DCA973C5B4C7AE660 +:1066400019E37299E4D3A724F6923DB0FED27C6997 +:106650008B15E6DD27F85169287377909D79C2B1D3 +:10666000183C6F9F9528DE61F6AC49C65894DF77D9 +:1066700045D1FDCD5F0BBE1B4CF77D6FE9B95D6C5D +:1066800016C7777FF74A675EB2139DCFBA3492F48C +:10669000AFD9BEE15CDFCDD4EABBA5B2ED5DE4EBE2 +:1066A000EC0F7A924FFD76078791E4618C67C4F80E +:1066B00049D704BD86EE964D0ED3D0E55CA6A27FE9 +:1066C00018FA763650939F353555D37ECEAC91412E +:1066D000FC2037504FFCE0064D1C260CA0D9175566 +:1066E000D882E2F2F235EDB09CC777FE44D3DF8A60 +:1066F000B747C7F378C51981F628FFEEE0FE8DAAEB +:106700007D51DB50FF2E15F7F1E7BA7979F5015E7F +:10671000CE58E0FE45A49EDB13D4F73698F0DBE1BB +:10672000F808D72A6167AACAE0F6A5E4822ED94CF8 +:10673000F2B944F760AB5B248233C0D730209AE7CC +:1067400057E6D2F7E601B9013AA9DEA7BD2F89FDC8 +:10675000A35FB9FAB8BE18F743703D9C536B07E2CC +:10676000BCA74A39A8772EDD14EC976E26BF60359A +:10677000DA8D54F8C9457F0BDA6B843F672E5600DB +:10678000CA2A3BF6BC8EFDCD7671BA0CA61F452FEA +:1067900058C2808ED0AF04FBD56BEB1F1E78970BD1 +:1067A000F50D052ED54E4E6FC1F43510E90FE3619E +:1067B00019C00DFA5DBA4F72E0BB52D81EE1341019 +:1067C000E92F082E04C72078287052E0C6C669E772 +:1067D0007F39FCF83AE03B7625F805AFAB3F782AE5 +:1067E000EB9D7189DB3F94F52E71733A5802EB41B2 +:1067F000BFE8EDF87ECB68A40FCE3F7A817FECC571 +:1068000075BA389C664DD5EE333FBDB8389D2BF434 +:1068100032FB521CF5F3EFD34B37D969AF954E14C9 +:10682000BBBEC277D19E584CFEE8D5577CA723D873 +:106830001E396184885F18CBC66AE241FAB9271411 +:106840001C0FA29CD3C1E744F1EFF939E13F4704A3 +:10685000FFAF599541FB5EE1A36E51EE16763A65A6 +:106860009C62C8DB54F9B58DA949DD2A39C2BDC681 +:106870001887FD24D50FA0B438C44A714FC5F53C24 +:106880001EE5D4FAF8B87180BF536B783CCAA9FBF7 +:10689000C724615CC9A93585947EB2D13497DE11D5 +:1068A0007AD0CC301EBC6A7F3CBF8FADB7C4CD451B +:1068B000BBDBDE01749FB274043F272AD7BC14816E +:1068C0006154156BF8B93B23CD5D3282ECEF6D3B23 +:1068D000C9E06D6DCB46BEAFB2CFDE3702E313D158 +:1068E0003E0B79777D1AC5C99DC13172F17CE2E713 +:1068F000FC9910EBED38DE99E78C742F16EA9DE8D1 +:1069000027F999E43B7D13DD9B93E2D0EE74FE7D85 +:106910003DD9BFCAF487B271BCCABA0349683A28E4 +:10692000CD85F313E8E00613CC07F5E235DB93C819 +:1069300099D8D446EF1806DB83FDF61EE147DF2920 +:10694000CE6994F73145799F0DE3F23EE651DEC7FB +:1069500014E57D2C5FB6492BAF29F6E064FD859CDC +:106960009ACC805F8859BB8F925FF851930DF58E5A +:10697000C106F17E99F01729FE19C56F54FCE85243 +:10698000862FDC140F620E89B7273F52B0FFA8187C +:10699000EF0662BB870DF41E1EFDE571FF2AAE5B9C +:1069A000F13BE1F711B92A3FACF0FF18993509EF37 +:1069B00023261758EF3BC1FDD8A43F4DCDE7FAA8D9 +:1069C000B2AED7441C80920E47FB31FA77748E0426 +:1069D000E4C3D31A8793FDD893CF329693FC60C952 +:1069E000C038E51552A803E5DF158867CC7F1CC2C7 +:1069F000FDA0DE44CD3E087EAFE6C65E901155FB9D +:106A0000F2A64B6656A2DAFF935894265F604ED4E6 +:106A1000B42FB4DA35F537270CD7D4DF62CBD1E405 +:106A20006FCDB85ED3FE36C7244DFEA7E36ED1B45A +:106A30009FEE9CAEC9CF2C9AA7693FDB55ACA99FAE +:106A400033B74C533FCF7D8F267F67E9FD9AF677AA +:106A50002DAFD7D4FF1CF451847327EAA3407FAF36 +:106A6000A23E6AC2777AAC0646F2439A05F7D3840F +:106A700002DDF22BC57DFCDF115C5EFBC74867734E +:106A8000E6587E8F16F7DD10E55D3D065227E9E5F5 +:106A90005D89B84F26841DBE6803DCDC3872ED6C5E +:106AA00003F0D109D71D1E9D0AF9FB46BE32DB005B +:106AB0007C70C2F8C32FA640FEC1E7BFE3F951873F +:106AC0002F62FD57230FF3FC4C4622D243CFD7CC85 +:106AD000F6E0BC6E4A6976703B8DB83FE4233AF528 +:106AE000C71D9A2DBE54557C0FAEAF240DEFBF5974 +:106AF000293D0CFB0FD3A3B0FF4A80DFBE0EFB0F76 +:106B0000D3E3A06F63F91F40DFC6F42DD0B7317D0A +:106B100007F46D4CBB40DFC6F44F7573297DAFCED3 +:106B20004DDFFDA5AE94D21375CBA9FCC3BA5A4A6A +:106B30003FAAF35039C219F33F8E10F69403C6F3FF +:106B4000EAF772147FB8E2FF66AF3ACC184FC0BACA +:106B50000D51A7CD01BF767F7A1E1A444EABE4C219 +:106B600078E60C1D4971A183AD74FE88F21129EEFF +:106B7000482C7FDF3E336D34E4E7FCE05E835BFE50 +:106B80007D1DB7C307F7FB99E0CF7F1EE98C19394C +:106B900056F51EA3E0435B8C9CEF287C86FE54FCDC +:106BA00042E12B379AF9BD1A15BF217EA1E243C4F9 +:106BB000470ABF61B4AF273619C87F186E603EF42C +:106BC0002F2BFC06005280F7C68C9718D9B9F1FD1F +:106BD000443997DA39F590EEF83BB4CF56F13F13CC +:106BE000F3D0FB8D822F423B1ABFF01B37F1C389D4 +:106BF000C2FF3E44860397B7A3B88070D4DBF0FB96 +:106C000001DD4770BC41FF001900DA81B842F1296B +:106C10000A1FC4F661BCBD0FFB1DFA3D8C1F8170BD +:106C2000B3F1FB0D93BAEC681FDA72AFD981F63D70 +:106C3000E51D4A327A019C660A7E45411C9817E799 +:106C40003C7B369EEC57F9A2BE2DC53D05E1EF32E7 +:106C5000593F0EA37D953A04E598E9427EFF1778E7 +:106C6000BBF57F03DE2662C708EF1846FCFA7F2BD0 +:106C7000DEC618F83B06A64A33C55B5D0D8F77F775 +:106C8000B22991D06461AAFB3394578A2FD95EC789 +:106C90007C89214746D429F515FDD4BBBFE935468B +:106CA000AAF07DA3E0D1CDFDB457DA29EF1B2BFD6F +:106CB0003F87ED632F6FBFA290C7EF16BDCFEDFCEE +:106CC0006FFAEFFF3B2D3980EF02C6FB29C85C4A03 +:106CD000F23BB370B9D806FF205FBAE9924123278F +:106CE000173111B7C3BC06A4BFA2207FFC4F841C80 +:106CF000FD9320393A582EDE3A52F8E9EDCCFE6F7A +:106D0000BE5BD38EF4ACC85D180787F49B6AD39B37 +:106D100027E4AADEA911EF1D4D16FBA790B9E95C87 +:106D2000BB997928BD05E68FE9517CEF281BE33B31 +:106D30007D741EDE060C17CB7F8AA20CE48F844D77 +:106D40009B8F31D405A30B8662B9EA1D8603388F69 +:106D50006ABDFB3FACAA77180E4FB691FFF4B0990D +:106D6000DFDBC0FD658C0EAC03DF13180AE7C03112 +:106D7000388F86C27ADE80F308F3BF87F30853A505 +:106D8000DD149B368EEC2719F50CFBBBD55A000A97 +:106D900051FF70BA35FB7783118E6F460D9B8C7651 +:106DA000F937A3AE9B8CEB7B332A5EC75393FCAFC2 +:106DB000EE012BF47E6B26BF3F70AB750A8D571525 +:106DC0001621DE6BF9382201E8A2CF7C245B0FE9A3 +:106DD000599C20EA454176A8CFEB5826AE6F62ED6C +:106DE00078FAFEA6DAEB29AD34F3F9B31DF13A7562 +:106DF0003CEF93B2FB133C973EDFA2277AFD726F04 +:106E000088632AF473C6FB6204AE07E4FDCFB1BE0B +:106E1000526F6B76A0FDE64D1ED7CA7E389284F184 +:106E200032FE778C76CCD4C4832BF45069E6EB50D9 +:106E3000F4AA5FA43A697F31F1FE8A123733D8C4CD +:106E4000EFA329EF81A01C4171E041E7755E28E7BF +:106E500027834D9C8FFAF984CCF3CCFD22BDB7B6C5 +:106E6000BDDAE2C0736A5482F307A417C58EDB371C +:106E7000388CEE894EF48D247F6A11DA1160AA876E +:106E8000459CDDCD23975B5280AEE6A5BBE54CBAB1 +:106E900087F0831EF9D25B69121B20A1DD77B485D0 +:106EA000F4C8ABEC9BE07D179129F65D36CBFE91E3 +:106EB000BF7B45713D7DEFE91D5C9FE4F1038A1CBA +:106EC0003D91A53F81F68182E3468C6008C4A925E7 +:106ED00070FFA2B22F0B8FF3782253828ED954FC0D +:106EE00022C416CA6CAAF1C332A235F970C7404D4C +:106EF000FBC871299AFA28E7084DFD80A25C4D3E37 +:106F0000D67583A67DFCDC7C4D3ED1FD134DFB4147 +:106F1000A53334F921CBEFD0B44FAE5DA8A9B77B30 +:106F2000CA35F5A0D1101E8E5925B6D9AE7A4FC5F7 +:106F3000E3ECCA88E3FC11FF529B6A34DF155996D3 +:106F4000D07B62692D0F68FA67366E9FF0C03F48AC +:106F500057DFE2C504480B13B4768B02EBA4A38879 +:106F60009241220E8A31870DF96F81556BC71864E3 +:106F700029A2B8F641578993FAE9BF4B07EE11579A +:106F8000A6834A7E9E07D301FA0FD4EB44FF811AF1 +:106F90001EE83F50E7D17FA06E8FFE03753DFA0FCC +:106FA000D4F5A38F6BE9606C97960EAE3BA1A583D9 +:106FB00063C8FF53FBC7D7F5DD5A3A51F035FECC15 +:106FC0008C2BE26B2EFC43E723E3E7EB64809B8F83 +:106FD0005D8E37055F0AFEFEAB785B1B84B76F5989 +:106FE000F3D81C7ACF10CE257DFFE7E64433E8695D +:106FF000B197EB690ADF0AD6D782F56725FEF7F26B +:10700000775EBBC3F15CFC9BAE3B0BBF4F64BDC75F +:10701000F01EF22B71EE2DC8B7E2315A00EA379715 +:10702000DD4EEF547F3DA4F724BED3EDB93F9CF372 +:10703000EF4CDEDF8206FE8E8432EF058378FC5152 +:107040007BA6D0971CDD63D11FF96C26976BC31DFF +:10705000568A6B2FCE64227E97252DC852F1D79584 +:1070600006E2AFB3CCEEDD388F06F16EB812E77EE4 +:107070000DEFCCEE4578F9DFBD28D3BE23B2D9FFA2 +:107080008E882F6418D63FA6D3BCCFB2B9D2E67F84 +:107090009F85EC9CABF8BBADC33631CDB9EE7F57C5 +:1070A000E41E1BDD4F1BEE356BE2C3F1BD19F46B23 +:1070B0008F7CD6AA29CFEA48D0F4B359BC8B33EAE7 +:1070C000804DD36EB3787F24C797A1693FFAB84348 +:1070D000FBBD7897646CD738CDF7DDCA7B3665FC8D +:1070E0007D0DD40350AEBFEE8453D32EB9A2661AE1 +:1070F000CA1543847C7D7D7791A6FFE4AF43751864 +:10710000A77D213385F039FE8C4B534F3A0FD2C106 +:10711000CFE3880E143D45A5B7909E2233FEFEB7FF +:107120000C7A06D29F120F1D6CC7F2DBA9CC01BBF3 +:10713000983A4E59D133FCF1CA06A70EE957895740 +:10714000F6D321BEF7CEE30D080E4F3F10A7799F6F +:10715000E492A0C70BE98CD6D56EE6762E8C9FC242 +:10716000778999A13B91DE1D1274BC7BA8F33F91F6 +:107170001E2F88FB404FCBBD1FE039BA60141F673C +:10718000BE4E77F7F44C1E4FB657A5D785667139BA +:10719000A62B9BF7B32052DC4FFF05BFE7AEAC2315 +:1071A00041668DF47E83A17B38D2F75DCD1D1BD067 +:1071B000B4365F6E31F2386CAF11F7F7D47C907350 +:1071C00073186B1C617FCC9288EFA11BC8BE12950F +:1071D000F5F4ED9EA181FB3BC9508C78401B2FEA52 +:1071E000558BB2F557B47B2BF7526CF7185DDB2C3F +:1071F00074BFA508F537A5FEBE6C6E2FF20ED591B3 +:107200005F54F9BD00A57E7D16AF9F95C5D757A8E1 +:10721000FFA118D7B7385CB6A13E39D1E97A1CED89 +:10722000DE0B5B8DAC0D6D3C1ED05FE2287E85FED3 +:107230008A6D5C2F710BBE8D79F49B147BB47C76C8 +:1072400029FE5E87447C9BF6F5228BECC5B735178B +:107250003569DB2D66BCBFA516FE5EE7E2E0FB8A62 +:1072600042CF597A153DE7812C61FF1FC546FDA825 +:107270007A67B40FF46011F7CFDF4DAA95E91C557A +:10728000E85E45D7A45FFF77C5F53371CE0F157063 +:1072900054F699424FCAFE51E809F18BF853F08B2E +:1072A000F7877A2C01FCFE4FDD23F2C3ED2A76F03E +:1072B000FEECDEC17C85FE54F690FEECDD0A9FF10B +:1072C000F31106FC2335002FC57F5F2A682458CEB2 +:1072D000EAF3A652FC35DE63D2F379523C97726E24 +:1072E000DBD06FA3F22BC0FE09C5F7EC3D8D06BACB +:1072F000B77FD9B925F64F7FF105E731BE0079ADEB +:10730000E21F12F5E73D177BA87E5F08BDDBF6653F +:107310004E5736FA3D14BF51B01FAA6FA59961DCD4 +:107320005ADFBE70F2CBA39F2612DF27AADF9E8D05 +:10733000FE1B653EEE6EADDF29389D91E6DE9615AB +:107340008BFE1BE3ED142767D159D1FFBCDE729889 +:10735000EEDD83BEBF3D4BA5EF4F85730EF1067C7E +:10736000A908F1ADF85982D7E3DF6713F83D843EF1 +:107370000F8F3BEF2B9268BEEF3317C92B53252B92 +:10738000E9F96AFAFC77FC35332FE5107E665D1A61 +:107390004FEB74375D4FF9F4648F0EE393D99D1270 +:1073A000D9A7E7EC606B426D186734672CEA6BEF86 +:1073B0000A7E9E2ECE9760B86464F37365A74E2252 +:1073C000FFE3CED53C7E6EE42EA70EDFC599BBCF82 +:1073D0002ADEBD5E9E8BF2C102B1FF94F6E906760D +:1073E000DC982BE818DA3F739D7D1BC5318BF3A326 +:1073F000718455D049B7C1A5929B6AEA25E24B3505 +:107400001253E28D882F29F98B2D225FC8F32BD6DA +:10741000F07CB778DF72A7B06F20FC3045F8A11D73 +:107420006097B06F20FC3045F86139EE6FCCE3FE19 +:10743000C63CEE6FCCE3FEC614F737962F64AE243D +:107440007418A21F67B28A4FA31F67B28ADFA21FF8 +:10745000479D473F8EBA3DFA71D4F5E8C751D7A38F +:107460001F479D473F8EBA3DFA71D47936EE96405C +:107470001EFD82CEE99AFC4CD01326ABCE07F4E376 +:10748000A8FB473F8EA63FF73D9AEFEF64B59AEF12 +:107490005397D76BDADF5D2B69FC3C25AC97E87915 +:1074A000D1A60144870FA7B82CD980E7BBE7F4D257 +:1074B0003BA385FACE32A4879AAA5007C7734B1113 +:1074C000C7BB8EE268B71A6DF1F44EDEDB7AC6F107 +:1074D000CCE37883E913FD19938DDCAF8229FA554B +:1074E0003045BF0AA6E857C17706D1AF8229FA55C1 +:1074F000B01CFD2A98A25F0553F4AB608A7E154C40 +:10750000D1AF8229FA55F03BF4AB608A7E152C4747 +:10751000BF0AA6E857C1F293E85781FC528CB984A0 +:10752000FD92D5E2398636A9695B4E1EC5343DB25F +:1075300078AF04A49E971D3F07FD48E961C5B95186 +:107540000EE0D3F583E74C86BC5BC4C765B35E929F +:10755000FFC85F0EEB77FB18C9EB597F4FA4FAC049 +:107560007EE1FB29EBA895E4D446716F57F93E07FD +:107570005D35A981F681FC95DB058FAFB4233EA66E +:107580009A87722F39F90D1B9D4FB00FE89E99F223 +:107590007B376ECF247A8777AACCE52AE00B37A019 +:1075A000BE34D22339B7A9F0F753B1FF47EE627268 +:1075B00002F285AD0BC6D077A1FEEFBE3F8BF10581 +:1075C000E3ECF4AEE1845DCCD906DFCF15FC654277 +:1075D0006FC761E46BC58DD3E93BA5DFE22D49742C +:1075E000DFB2982D7F007F97858D9128BE0AF8D055 +:1075F00051E443CABA94F6202E1F47BBE8B5DE6BB0 +:10760000B9714C5421C68FB14E46EFE8DC36E68F97 +:107610009A75135AF2A85FE2FFC33C12BDCF36CD74 +:1076200053BF1ACDC1B779EE3986F166EE1DCC6134 +:10763000B711EBA6F87F657E239C7B74707C803A43 +:10764000DAA5C3DF0C0255E5C800157E81C26721AB +:107650003E721C46F23B4D37588D748F3FE85C0CF0 +:107660008EC7088EEBAB5975A907E32C6B5EE2E77A +:10767000AC221F148B38AF8B8D468A97287EC94465 +:10768000EF9EB93749B48F95788D2F756FC5CDB101 +:10769000E1EFF278937418173EB02D3B5A4FE7E8AC +:1076A00043D9B0D0F38D3C8EA2A7F145BA6777B12C +:1076B0007136BD53AFD8FB4B047C4A44BC4E05B376 +:1076C000FE05E31D9577DC95F826D6C2E561C5CEAB +:1076D00051FC368F03099693CB1A8D1467531624E9 +:1076E0001F5708F9B8E22AF2B1375BD8331CCCF146 +:1076F0006FFA017666ABE402A6BCF32BDEAF2F7EF9 +:10770000FBC86C3AEF97A7E9F0BC57E484F9F55C45 +:107710000E607B18FD4ECFFCFA023A4FE7BFE4A49F +:107720007713DE15E7FF8C4B8308EE7F16E7FD6CC1 +:107730008C2B04F84FED0EA1F2DB2F25523AE71205 +:107740008F33C43B1F481FDDBF631437D1E731714E +:10775000F9A39389B8452D7DE6306B21D2FB08A7AC +:107760007404C5ABDB507E80FEE6A23C3100E9BD6F +:10777000784D2CD2BB97919C174CEF538DCB8F61DA +:10778000FDD476467E1D85DEDD1E7B21AE6F5A91CF +:10779000C49065CC75FFD180FB1CF88015BF730BBE +:1077A000BD4EA1EBE07DB0204CE8BB166E6FF1EB57 +:1077B000C138497A24F1DE39180FBA006D680339EF +:1077C0006161BC567826AF3F9F7DEF9C46C3FFFCAE +:1077D000BD7EE53E7F40CFE67A3DEAD72E8A27F987 +:1077E000A8309EE49BA85CB5BDF394D8B79B1DF967 +:1077F00039A3003E35EBD3E2FFD5FDCD458037DC24 +:10780000970B22BBEFC55F24308D62CEC9E3F0F742 +:10781000321478311FC6EDDD21F2F26F5AFF6F533B +:1078200026C199F2FADFD4CDC17886A695AB83F84C +:107830009FCB89DB212CD3497E9FFEF4F8BFC6394C +:107840006F1805EB5B94A9FCAE288FBF3FB5FEF324 +:10785000E7D5760AC5CEC5582FC9F98FCF48C811CC +:10786000EFAFD07ED85C3E98EC1A4347E9FC714BF1 +:10787000FF1DF71456DB5C49A3889FB698493FCAA1 +:10788000E87DB21DC65F50C7DFD553F4A8ADE5A1B2 +:10789000B48EAD0FC8C407157D6ABEDC750C7F972A +:1078A000491EC5E1F4D7DA5F19F13E0AE095D631F9 +:1078B000BF9CBFA7B9D9E11A897009CB74D03B1717 +:1078C000EE4CAF84BF7739D0CAE97F6A4A6F8E8E9B +:1078D000EC7296B19ADF21D4B3A368179D9FA2DC06 +:1078E000EFE2F7D615BEA9B4FBFB28CE4F7E10F30E +:1078F000B8A345B9CFDEB6260EED144D39F4D37ECC +:107900009B1DEE1B71BD8B3AEDAFE3EF49541F8811 +:10791000A277CC17C48BFBDBAC3749FD7EDFF4517B +:107920005C2FF81EA3B2E99E82B80F20EE9BCF8B8E +:10793000B112DE80CE1B514F9C3E8AEB098A7D2B13 +:10794000A0F71AC8AE20D7CAF4AE23EAAB72AECA0B +:107950001EC6B8FEABC05BD1630370B6F27757C2E8 +:10796000651BC2A7D8923E05F74B718B148D7CB274 +:10797000503FF575922337DA53508E6C10F356F45E +:10798000B0C5E23CAC792C55C6DF4FA8590F521850 +:10799000F2AD681BF5D3BB41B26E437A16F668654B +:1079A000FD259BAEA7FD54E285F40AEF0D29E947BA +:1079B0001B0FC65E8FF4EB73523C678915D88ACAD9 +:1079C000EEB048E02338BF6214B75FCD07F115E190 +:1079D00075D7CFECF242B4BB813882F1750DA36C40 +:1079E0009A7BCCD08EE21854EFD058D10E8CE3E5C0 +:1079F000AAFA5F18F43B7B5353B83CB56A54388DF0 +:107A0000B7B0254AC677818BAD569AE7657010F0FE +:107A10005FE4F31A1D381F8C9F80FC1D56AF319711 +:107A2000E8D03605F97849337F57D7DDCCC77337AF +:107A300045C959D83ED43A85ECD46BA4709CDFD4A8 +:107A400068A74CEFC86CB46B7E572B184EC562DE2E +:107A50002530BFC59AF28D46DC2FF3C479B1B071E1 +:107A600012DD3F2F31F075EF12F4EF1670FDEC9E32 +:107A70009087D0BE3E3FBAA5F07EDC874BA2A230F5 +:107A8000DEF269419FBBC43E51E032CFDA42EBF2F5 +:107A9000C3F531800374B9D8EAA2FEE78BDF692D04 +:107AA0006915FBAAB558CEB4E03BB96E79308DCFDD +:107AB000E13A6F139F67607CFE3ED0FCCDFCFEC7B1 +:107AC000E9C7E624D13A5A9F30325AC71F19FEEE51 +:107AD00037C211E951A10BE5BEB3B2FED74659A892 +:107AE000FFD782F657F0BB1C25CDC5F48EC722FC0C +:107AF0001D6929B0BF94FDA6ECB3603BD13C612762 +:107B00003236F79421FF52F8019CABCBF75EE1BC13 +:107B1000C911F3B843E003E0437C4AA93F23F0A135 +:107B2000F02DFFB91DC9FB7D4FA9CFF7A5E17B4F14 +:107B30004A7B65DCF9D1FC3BC40FCA32EF89730084 +:107B4000DBD7507BEDFD8C457E3BCBAE3571788E1F +:107B5000EE91C89E55B3E1C8909FE37EDF1D46F7C6 +:107B60004ACE55B657E3EF6D31833749FDCEE86213 +:107B70009073709F2F11E76789EFCAFBBD6E98FB6A +:107B8000B351AAFD58F2E8EE74E49FB07E1FF28D67 +:107B90008F761F7CFF065BE03C54D6B3B0A98DF80E +:107BA000E55DCD51B97ACE2F9B905FE6083EB5A832 +:107BB00091E38D01DE500E54F05BDCC8EFC32DAABB +:107BC000CDF3A21DCA2F5704F1CF607C2A7856F05E +:107BD00039CF7F1E6C2C549F077EF805F403FA1DE5 +:107BE000CBBE0E0EBFFF07FD9067B4008000000003 +:107BF0001F8B080000000000000BDD577B5054E78E +:107C0000153FF7DEDDBBBBB00BBB1B589097CB4BD2 +:107C1000D12E70EF6A4C8D99F64AD53A53EBACD61B +:107C200020240A6B15450504631B689D72711B2592 +:107C3000582B9DE2B3D52E549DB6433A6BC244A750 +:107C4000C5CE26364DD3D86AF58FDA38216BE918C0 +:107C5000B58DAC4C533593C69EF3DD7B5924D2E4ED +:107C6000AFFCD19D610EDFE3BC7FE77CE78E7ECF6A +:107C70000C900630DAEF08433EC03FB69EFA53A59B +:107C800017E026176E9A2200DCA7DF1701EAEECA7A +:107C900000B300D6DF9DC7E886E85C804712E706A0 +:107CA0006D9F1E74488F26D61B7EF2C2B4A00F6053 +:107CB0005541E4D6AF504FBCC522F501C05AFCFB7C +:107CC000BC1FF5F5FFD09C8DFB4FD7712E54079943 +:107CD000121A81FC4F457ACD0576BCD72C3B218505 +:107CE000F6D1A874DC075022B8BF8A87DF823BB187 +:107CF000AE467A12F56C6BB1A54039F1B9DCCE32E3 +:107D000080F912CFF89614406DC097B06BB865CD6E +:107D1000F701CF876D50BB1CF91B90FF45B293F75D +:107D2000E79966A39D7B2CFE3E0E0D4A8B9C045C5E +:107D3000D76CF1F9BBF299DEDF7368F76312C7EC19 +:107D40002C2A8A85C9BE6C13800DF7451E542BD290 +:107D50003E5EF3AF40D0E88F9222339AED1F8F97AB +:107D6000418B1A62B7C99E220095E41075A07FB5B9 +:107D7000BADFB8068FB61F259A6B0295F733BDAAF6 +:107D8000455FDBF07E57C9D741417BCD992009681B +:107D90006F8E15EDC1FD6CF44FF427E4E5A23C01B4 +:107DA000F745DCE7DDE4175F1B40FBB293233F2779 +:107DB0003C646F99E90FA18B621274923F2B26F1FC +:107DC0007732BB0D7B87F3B5B88FC5C382D49DF0E6 +:107DD000C3B0074AD00ED45BF3EDD2DE2E5435DCAF +:107DE00021E551BC26F373383F080AE1690A487D52 +:107DF0000FF173A27F50D2BDD043F233BC5217AA09 +:107E0000842A2B0F1E80755660BF85822F3586769B +:107E10008E7617A602EA1DE64005B2BFC5C6339CA2 +:107E2000E87E9C68C7CBE8C3CFDAAD8CFEA2DD0943 +:107E3000301DA0BF3D93AD7FD9EE6534D25EC2F652 +:107E4000B74B6ECD3F8839963B30CE49C0E20C51DE +:107E5000607537D45AC8FC35F697B8353CAE72C752 +:107E60001C1CE1B04DE009877F6FB675412AE134F3 +:107E7000E6A07A81D642388EAA86E7C71C738D7B2E +:107E8000DE049E869C31879BEAC1ACE90187183EDF +:107E90008E72566F5B26AEC1FDD5AD97CC1CD25D00 +:107EA0009457B46F6A6144C9A0783A4427C9093924 +:107EB000A44CB227E49232DDE3EA26D95E297A297E +:107EC0003EF9D12227DD976D2CFE43F6CA4553C8F3 +:107ED0009F832E9208DB3869A815ED82E72CD271BA +:107EE000244B78E8E4181EA26236D9DBC1B13E60AB +:107EF000EC5B4B82FB25B24338F9EFB748EE73C910 +:107F000012D9011FA2DE39003349A8C0EA4FA1BA35 +:107F1000BF3D4DC30DAE81C3F55131560DAC8178D7 +:107F200078C0FB5B29AFC40FFADAA9ADA78ADEF3EC +:107F3000BB48FE1B02907CCCFB5F685DF786192C6A +:107F4000E37051AFE3A2AEF76B1EC2C3BA8302EB7C +:107F50007B7548BD480FD321B6C09D3D5FF2106EC2 +:107F6000D6FD60E17EB514208F8300F5A33CB3B24B +:107F700094FAC6F5DEE9AE0E2E11BF2B61CBE2B04E +:107F80008FF64FFD710EEABD753A5D26B311E50A15 +:107F9000DDEFF4A6313C9CD2FBD606D1CBEACEB4C1 +:107FA0006D8D4AF6379D5E0641B2A777571EA0BE7B +:107FB000758DA16944AFF7DAAAC2B8BFC0B96C81A8 +:107FC0000BE5AEFFB14B16F0FE950681E57FD39F22 +:107FD0008BFBA81FBCA9D771C347678F3A0BD11F72 +:107FE000DC73A2DEF723C961158F1ADA4FE709A8FF +:107FF000FA0331F83BEAE39BF9C1CAB92867D3E138 +:10800000DE3C60F7BD19CEFFD1C7AE617D7811FFB0 +:108010008DDFB9CCE4BCC79F5B5A8DFC0D8D2FA5BD +:10802000909CCDFB2ECD71E2FEF2E2E045927F9373 +:10803000EB3DE1A4001CEC2D0BA01F4F70CA25C224 +:10804000C12613F675DFC7E5FFB54CB37F893B50FA +:10805000593D9BE5511A8FFB89B4FE34C7F266ACDB +:108060005787534540B9C128884ECA830022D59905 +:108070001AE2F8E3F9DA3B41F517748248B8BFA970 +:10808000C7EB7A6A771ED5C3C61307F208FF371C01 +:10809000DA7AD589957FA07E183C661109274113AD +:1080A0008812F2AD553985F20CF508CE2909FDFF8D +:1080B000929299BC8D07673DF07E0284D9FE0D1324 +:1080C0002C26BFA70AB7E516A4574CD13AC2C595CE +:1080D000669BA4B2FC6978B8D22D2CA27D751B07D3 +:1080E000C51CAD5F7214D91964197E9B9C637D2DEC +:1080F00083F05993EA3DF034F58137CDAC6F24FB22 +:108100002E2802AE1B07F219FE0C3B8203AFB0FA19 +:10811000DE84EFBC17ED6B304545CAF7A68193A20C +:1081200017E534F4A35FB8DEDCFF8A487DA8E9B424 +:108130003C87E117BA81EAAC11B43A6B1AD0FC6FF4 +:108140001CB82AAE1D97C73525EE9DD9124252EEB6 +:108150005DB90FEFADA1FC3C0E5051FE7C558789F7 +:10816000A893F907A6785EC041EFD94591E687C686 +:10817000EFEAF24A2EEE2C6076CB666E5CDED365BB +:1081800033E333F81B075C8CAFD59A52467DF38EF0 +:108190004DA36A05CAA6B80DD9C2218CE70A6BB0F7 +:1081A00050C6FBE99BBFF9181490F1CDE5844374E8 +:1081B00082E9FF9B19AA220FC1FB0AEBFC1219717D +:1081C0003AA8BF6BD1C6A44E9A3B9426BB8968A837 +:1081D000D1CEE610A5E5A20D330283B792782E85A5 +:1081E000A0103FCBA3DE339EA09FF83300AB0E035D +:1081F0009803118EEA6BE4CCBBB3C8EE91DCF810A7 +:10820000A02BE68EC3550B103F8FCB7A5C7CB15907 +:10821000645FFAABDA7B71C40C9DF4EE822900CB6B +:10822000713FCAE9FEDDE3C384E7412EFA53921F92 +:10823000B0D83BF3D19E6659EBF7CF1404E693DF39 +:108240008102A15426BD667B2787F1C9C5F985FA4D +:10825000AB989569275C738A02AD289FE75E5B4BFC +:108260007D6477DC0A16941BD2E3999BB598BD8F89 +:108270009C370DDF2C80577DBC6A41FDBBC11AA61F +:108280007B226F53D8F9E0EBF738A4D9C2EDB3A93C +:10829000789EFD2C2785D0D49AD16B1B293E43F7BD +:1082A000FA6D14FFF73DC14AB22B4B8895EE45534A +:1082B000773BA5CB419217B04A1D5E0DD356C477CC +:1082C00085F62F0CB6DD4B71237F453CE92AC57737 +:1082D000247EED8553B3895A25C247C5A010B594B5 +:1082E00011D3422556A2F1DC677906C53A2721074A +:1082F000BA0F00D5CD16FDDD30E44DC63F92E9350D +:1083000051BEC0174FD98BFA428382B30BE8FED916 +:10831000CBE46785D51E155288CFFCCF98759CDEBF +:108320000BB9AE6B9F634F19DCC761C513D2F2F86E +:108330008554681EDFEF76C83CCBF70E59EB3F46FD +:10834000BC99F30FBC6F5ABD6F195B7BCF53BCDE7A +:10835000C2F78DEC191DC479E6217DD4A097689EE3 +:10836000C139E54CA1B283F068E0C0C8BBA1D7C851 +:10837000AF9147F8D685D752F359FE4AF7027B7F73 +:108380008F9CE758FEF650FE0EDFED9329AF21C714 +:10839000A27CC2F3FF5BDE26F6956012D2F28FF765 +:1083A00097678540D274A477F86E56DFD86F4E5227 +:1083B0009C6B7DCD1CC5076F729FB2DFBC4C719D5D +:1083C000478F2A9BD3F830FB3E3169FA42C732C24D +:1083D0003437CC9B8A93049DB739F4736F077DCFF4 +:1083E00084B6E3DC0BC4CF69FC6DC9ECFC8659B7DD +:1083F000B7AD90CD87641093A76AF2688EA6F93B5B +:10840000447A904F5593D9BD5098578B53D9399B87 +:10841000AFA996999C06D0E41876357BC3F4DDE4C9 +:108420000969FCF16F88619A1783A95B97525F080D +:108430008E687DF16DD9A5CDC9A6D8A33427EFDE0E +:10844000E100C2A191EF2CD0F1ADE75BD0F39DE547 +:10845000D3F29D65E7A316CA5BFD02657CDEE81BCF +:1084600083EAE799B7BF7CC88AEB5F1BFDF18CC03C +:10847000ECEC59A64C494A23EAE169FE79F9236DEF +:108480005E8A1FB7303B85CC594FACC377B0470EDF +:108490001F5A4FF79EF4492AEA1DE275394F697356 +:1084A000758F835789AFA73A290CB4CED7CE7B36C8 +:1084B000CE6473D558DE8A1FCCDB487D0E8B0FE669 +:1084C0004D3BDFE3607A13E7055A5E058EF509CC74 +:1084D00057D58BEC9D8FA72C2B4DE063449F1B46FB +:1084E000F4BC8CED03EED37D533C85E2FA49FB7E70 +:1084F0004FD0EC4F4F9CF7B8942934074D8CFBBEFE +:108500000EB9731AE1C1C13B69BE9F2C5F467E92D2 +:10851000578A4769EE18CB93AAE13039348FF9BFF7 +:10852000DFC84B9BC0DEAD8979841C0D17C6DC3FCC +:1085300055BD7A487BAF6333A87EB0EE4AE87B71C5 +:1085400088FA577902B79C82B5EA4EE0D4E8631303 +:10855000EB976BC5BE96F2B0FA8DB0F7F90E1F35EA +:10856000EA77869FDEE1DFE02086EB239C94692991 +:10857000FC54F55B46713D9A119489A6E9FDE23001 +:108580001F96493EE2A93EA2F5498EE2FC8E1EBF2F +:108590005AEC478F609D7CC5AFBD07B07D425FD26E +:1085A000E35DA3DF7FE73DACA7F244BE6AF5EF9E33 +:1085B0009AED96ABD4DF6AB69BB5F8B72E5426C8B1 +:1085C00061FDD99003DEDBE9E48FC157BBF1837411 +:1085D0009A0B27E58FE5B8AE25EBFD11FDF58981F6 +:1085E000AF529C86F89843C2F89CFB8F5045FE5DC5 +:1085F000C5787B0927C732B4EF329726E349BFF627 +:10860000CEA996C00AE23B27BF5B4CDF39F0E1D927 +:108610001CB2638927B092F69F2F1A1569BF1662A4 +:108620004738943B547D3397ECAA6D7D9DF5EF5A06 +:10863000A37F7F429C26C6C7885BC2DFD1749A772E +:108640003FAB781938F92FAE7DF637901300000054 +:1086500000000000000000000000004000000000DA +:1086600000000000000000400000000000000000CA +:1086700000000028000000000000000000000010C2 +:1086800000000000000000000000004000000000AA +:1086900000000000000000100000000000000000CA +:1086A00000000008000000000000000000000000C2 +:1086B00000000000000000000000000000000000BA +:1086C00000000000000000000000000000000000AA +:1086D000000000000000000000000000000000009A +:1086E000000000000000000000000000000000008A +:1086F000000000000000000000000000000000007A +:108700000000000000000000000000000000000069 +:108710000000000000000000000000000000000059 +:108720000000000000000000000000000000000049 +:108730000000000000000000000000000000000039 +:108740000000000000000000000000000000000029 +:108750000000000000000000000000000000000019 +:108760000000000000000000000000000000000009 +:1087700000000000000000000000000000000000F9 +:1087800000000000000000000000000000000000E9 +:1087900000000000000000000000000000000000D9 +:1087A00000000000000000000000000000000000C9 +:1087B00000000000000000000000000000000000B9 +:1087C00000003320001000000000000800003328E3 +:1087D0000010000000000002000033200010000024 +:1087E00000000010800000000000000000000000F9 +:1087F0008000000000000000000000008000000079 +:1088000000000000000000008000000000000000E8 +:1088100000000000000033580001000400000001C7 +:108820000000336000000000000000020000336818 +:1088300000000000000000080000336C0000000091 +:1088400000000002000039200000000000000008C5 +:1088500000003AF8004000000000004000003938F5 +:10886000008000000000004800003A38004000008E +:108870000000000800003A48004000000000001816 +:1088800000003370002800000000002800003C2099 +:10889000000800000000000100003C21000800006A +:1088A0000000000100003C22000800000000000160 +:1088B0000000200800100000000000100000200050 +:1088C0000000000000000008800000000000000020 +:1088D0000000000000000000000000000000000098 +:1088E0000000000000000000000000000000000088 +:1088F0000000000000000000000000000000000078 +:108900000000000000000000000000000000000067 +:108910000000000000000000000000000000000057 +:108920000000000000000000000000000000000047 +:108930000000000000000000000000000000000037 +:108940000000000000000000000000000000000027 +:108950000000000000000000000000000000000017 +:108960000000000000000000000000000000000007 +:1089700000000000000000000000000000000000F7 +:108980000000000000000000800000000000000067 +:108990000000000080000000000000000000000057 +:1089A00080000000000000000000000080000000C7 +:1089B0000000000000000000800000000000000037 +:1089C0000000000080000000000000000000000027 +:1089D0008000000000000000000000008000000097 +:1089E0000000000000000000800000000000000007 +:1089F00000000000800000000000000000000000F7 +:108A00008000000000000000000000008000000066 +:108A10000000000000000000000000000000000056 +:108A20000000000000000000000000000000000046 +:108A30000000000000000000000000000000000036 +:108A40000000000000000000000000000000000026 +:108A50000000000080000000000000000000000096 +:108A60008000000000000000000000008000000006 +:108A700000000000000000000000000000000000F6 +:108A80000000000080000000000000000000000066 +:108A900080000000000000000000000080000000D6 +:108AA00000000000000000000000000000000000C6 +:108AB00000000000000000000000000000000000B6 +:108AC00000000000000000000000000000000000A6 +:108AD0000000000000000000000000000000000096 +:108AE0000000000000000000000000000000000086 +:108AF00080000000000000000000000000000000F6 +:108B00000000000000000000000019C80000000084 +:108B10000000000800002008001000000000001005 +:108B2000000020000000000000000008800000009D +:108B300000000000000000008000000000000000B5 +:108B40000000000000000000000000000000000025 +:108B5000000000000000000000000000000048705D +:108B6000000800000000000100004871000800003B +:108B70000000000100004872000800000000000131 +:108B80000000404000380000000000388000000075 +:108B90000000000000000000800000000000000055 +:108BA0000000000080000000000000000000000045 +:108BB00080000000000000000000000080000000B5 +:108BC0000000000000000000800000000000000025 +:108BD0000000000080000000000000000000000015 +:108BE0008000000000000000000000008000000085 +:108BF00000000000000000008000000000000000F5 +:108C000000000000800000000000000000000000E4 +:108C10000000000000000000000000000000000054 +:108C20000000000000000000000000000000000044 +:108C30000000000000000000000000000000000034 +:108C400000000000000000000000000080000000A4 +:108C50000000000000000000800000000000000094 +:108C60000000000000000000000000000000000004 +:108C700080000000000000000000000080000000F4 +:108C80000000000000000000800000000000000064 +:108C90000000000080000000000000000000000054 +:108CA00080000000000000000000000080000000C4 +:108CB0000000000000000000000040000040000034 +:108CC000000000400000480000400000000000409C +:108CD0000000482E00400000000000010000480095 +:108CE00000400002000000010000480100400002B6 +:108CF00000000000000030000040000000000040C4 +:108D000080000000000000000000000000003000B3 +:108D1000000800400000000400003004000800408B +:108D20000000000400003B80002800000000002834 +:108D300000003BD0001000000000001000003BDAF3 +:108D4000001000000000000100003800008000005A +:108D500000000080000038000008008000000002D1 +:108D60000000390000400000000000400000200822 +:108D700000100000000000100000200000000000B3 +:108D800000000008000051980008000000000001E9 +:108D90000000519900080000000000010000519AF5 +:108DA00000080000000000010000398000100004ED +:108DB00000000004000051A800300018000000105E +:108DC000000051B0003000180000000280000000D8 +:108DD0000000000000000000800000000000000013 +:108DE0000000000080000000000000000000000003 +:108DF0008000000000000000000000008000000073 +:108E000000000000000000008000000000000000E2 +:108E100000000000800000000000000000000000D2 +:108E20000000000000000000000000000000000042 +:108E30000000000000000000000000000000000032 +:108E40000000000000000000000000000000000022 +:108E50008000000000000000000000008000000012 +:108E60000000000000000000000000000000000002 +:108E70000000000080000000000000000000000072 +:108E800080000000000000000000000080000000E2 +:108E90000000000000000000800000000000000052 +:108EA0000000000080000000000000000000000042 +:108EB000000023E8008000000000008000000001A6 +:108EC000000000000000000000002008001000006A +:108ED000000000100000200000000000000000085A +:108EE00000002E70000800000000000100002E713C +:108EF000000800000000000100002E7200080000C1 +:108F000000000001000024E80038000000000038E4 +:108F100000002DD0000800000000000880000000C4 +:108F200000000000000000008000000000000000C1 +:108F300000000000800000000000000000000000B1 +:108F40008000000000000000000000008000000021 +:108F50000000000000000000800000000000000091 +:108F60000000000000000000000000000000000001 +:108F700000000000000000000000000000000000F1 +:108F800000000000000000000000000000000000E1 +:108F90000000000080000000000000000000000051 +:108FA0008000000000000000000000000000000041 +:108FB0000000000000000000800000000000000031 +:108FC0000000000080000000000000000000000021 +:108FD0008000000000000000000000008000000091 +:108FE0000000000000000000800000000000000001 +:108FF0000000000000002500004000000000000804 +:109000000000250800400000000000208000000053 +:1090100000000000000000008000000000000000D0 +:1090200000000000800000000000000000000000C0 +:109030008000000000000000000000008000000030 +:1090400000000000000000000000300000000000F0 +:1090500000001000000050A100000000000000010E +:10906000000050B80000000000000002000050C8DE +:1090700000900008000000088000000000000000D0 +:10908000000000000000296000080000000000014E +:1090900000002961000800000000000100002970A4 +:1090A0000008000400000002000029780008000405 +:1090B000000000048000000000000000000000002C +:1090C00000002FB0000800000000000400002FB4D2 +:1090D000000800000000000400002FC00000000095 +:1090E0000000000800002FC8000000000000000879 +:1090F00000003000000000000000001000005040A0 +:10910000000100010000000100005000000000000C +:10911000000000200000080800100000000000040B +:109120000000080C0010000000000001000008B75B +:109130000000000000000001000008B60000000070 +:1091400000000001000010000040002000000004AA +:10915000000010040040002000000004000010087F +:1091600000400020000000020000100A0040002023 +:10917000000000020000100C004000200000000170 +:109180000000100D00400020000000010000100E43 +:1091900000400020000000010000101000400020EE +:1091A0000000000400001014004000200000000433 +:1091B0000000101800400020000000040000101CF7 +:1091C000004000200000000400003000010000808A +:1091D00000080004000030040100008000080004C2 +:1091E0000000000A000000000000000000003068DD +:1091F00001000080000000010000306901000080D3 +:10920000000000010000306C01000080000000023E +:109210000000306E0100008000000002000030708D +:109220000100008000000004000030740100008094 +:109230000000000400003066010000800000000211 +:109240000000306401000080000000010000306078 +:109250000100008000000002000030620100008078 +:1092600000000002000030500100008000000004F7 +:10927000000030540100008000000004000030585D +:1092800001000080000000040000305C010000804C +:10929000000000040000307C01000080000000019C +:1092A0000000307D010000800000000100001C185B +:1092B000001000000000000400001C30001000003E +:1092C0000000000400001C38001000000000000432 +:1092D000800000000000000000000000800000008E +:1092E00000000000000000008000000000000000FE +:1092F00000000000800000000000000000000000EE +:1093000000004C10000800000000000200004C1299 +:10931000000800000000000200004C1400080000DB +:109320000000000200004C160008000000000002CF +:1093300000004C20000800000000000800004C0065 +:10934000000800000000000200004C0200080000BD +:109350000000000100004C040008000000000002B2 +:1093600000004C30000800000000000800004C40E5 +:10937000000800000000000400004C440008000049 +:109380000000000100004C50000800000000000236 +:1093900000004C54000800000000000200004C5285 +:1093A000000800000000000200004C6000080000FF +:1093B000000000040000140000080000000000028B +:1093C0000000140200080000000000010000140466 +:1093D0000008000000000002000014100008000057 +:1093E0000000000200001414000800000000000249 +:1093F000000014160008000000000002000019B868 +:109400000008000000000008000014200008000010 +:109410000000000200001424000800000000000208 +:10942000000019C8000800000000000800002C100F +:10943000000800000000000100002C1100080000DE +:109440000000000100002C120008000000000001D4 +:1094500000002C13000800000000000100002C0098 +:10946000000800000000000200002C0200080000BC +:109470000000000100002C040008000000000002B1 +:1094800000002C30000800000000000200002C3218 +:10949000000800000000000200002C34000800005A +:1094A0000000000200002C20000800000000000165 +:1094B00000002C21000800000000000100002C2208 +:1094C000000800000000000100002C23000800003C +:1094D0000000000100002C24000800000000000132 +:1094E00000002C25000800000000000100002C26D0 +:1094F00000080000000000010000148000080000C7 +:1095000000000002000014820008000000000001BA +:109510000000148400080000000000020000149203 +:1095200000C00018000000020000149000C00018E5 +:10953000000000020000149C00C000180000000899 +:109540000000149400C0001800000008000014A7D8 +:1095500000C0001800000001000014A400C00018A2 +:1095600000000002000014A600C000180000000166 +:10957000000016100008000000000008000016207F +:10958000000800000000000800001630000800007D +:109590000000000880000000000000000000000043 +:1095A00080000000000000000000000080000000BB +:1095B000000000000000000080000000000000002B +:1095C000000000008000000000000000000000001B +:1095D000800000000000000000000000800000008B +:1095E00000000000000000008000000000000000FB +:1095F00000000000800000000000000000000000EB +:10960000800000000000000000000000800000005A +:1096100000000000000000008000000000000000CA +:1096200000000000800000000000000000000000BA +:10963000800000000000000000000000800000002A +:10964000000000000000000080000000000000009A +:10965000000000008000000000000000000000008A +:1096600080000000000000000000000080000000FA +:10967000000000000000000080000000000000006A +:10968000000000008000000000000000000000005A +:1096900080000000000000000000000080000000CA +:1096A000000000000000000080000000000000003A +:1096B000000000008000000000000000000000002A +:1096C000800000000000000000000000800000009A +:1096D000000000000000000080000000000000000A +:1096E00000000000800000000000000000000000FA +:1096F000800000000000000000000000800000006A +:1097000000000000000000008000000000000000D9 +:1097100000000000800000000000000000000000C9 +:109720008000000000000000000000008000000039 +:1097300000000000000000008000000000000000A9 +:109740000000000080000000000000000000000099 +:109750008000000000000000000000008000000009 +:109760000000000000000000800000000000000079 +:109770000000000080000000000000000000000069 +:1097800080000000000000000000000080000000D9 +:109790000000000000000000800000000000000049 +:1097A0000000000080000000000000000000000039 +:1097B00080000000000000000000000080000000A9 +:1097C0000000000000000000800000000000000019 +:1097D0000000000080000000000000000000000009 +:1097E0008000000000000000000000008000000079 +:1097F00000000000000000008000000000000000E9 +:1098000000000000800000000000000000000000D8 +:109810008000000000000000000000008000000048 +:1098200000000000000000008000000000000000B8 +:1098300000000000800000000000000000000000A8 +:109840008000000000000000000000000000000098 +:109850000000000000000000800000000000000088 +:109860000000000000000000070D010000000000E3 +:00000001FF --- linux-4.8.0.orig/firmware/bnx2x/bnx2x-e1h-7.13.1.0.fw.ihex +++ linux-4.8.0/firmware/bnx2x/bnx2x-e1h-7.13.1.0.fw.ihex @@ -0,0 +1,11190 @@ +:10000000000021F800000068000005D80000226808 +:10001000000036EC000028480000007000005F3847 +:1000200000007A6400005FB00000009C0000DA1855 +:100030000000D2D80000DAB8000000840001AD98BA +:1000400000003CD00001AE20000000880001EAF86A +:100050000000BD880001EB880000120C0002A91806 +:10006000000000040002BB28020600DC00000001C2 +:100070000306100002000000010600D80000000086 +:100080000306020000030200020600DC000000007C +:10009000010600B800000000010600C800000000D2 +:1000A0000206016C00000000010600BC0000000018 +:1000B000010600CC000000000206017000000000F4 +:1000C000020D004400000032030D004C0004020346 +:1000D000040D005C00000004030D008C00110207F9 +:1000E000020D015C00000001030D01640002021812 +:1000F000020D020400000001030D020C0003021AAD +:10010000030D02200002021D040D028000000012F7 +:10011000030D03000018021F040D03600000000C13 +:10012000040D400000000A00030D0004000F023718 +:10013000020D01140000000D020D01180000002D39 +:10014000020D01140000001D020D01180000003D09 +:10015000020D01140000004D020D01180000006D99 +:10016000020D01140000005D020D01180000007D69 +:10017000031010000003024602101050000000019E +:10018000071011000010024908101140000000087B +:100190000710116000100259081011A0000000188B +:1001A000071018000200026904104C000000010052 +:1001B00002104028000000100310404000020469B3 +:1001C0000210405800280000021040840084924A27 +:1001D0000210405800000000030C20080003046BCC +:1001E000030C201C0004046E030C20380011047260 +:1001F000040C207C0000004F030C21B80011048384 +:10020000040C21FC0000000F030C223800040494AD +:10021000010C224800000000010C224C00000000EC +:10022000010C225000000000010C225400000000CC +:10023000010C225800000000010C225C00000000AC +:10024000010C226000000000010C2264000000008C +:10025000010C226800000000010C226C000000006C +:10026000010C227000000000010C2274000000004C +:10027000010C227800000000010C227C000000002C +:100280000A00000100000001020C2000000003E849 +:100290000A00000100000002020C20000000000A19 +:1002A0000A00000100000004020C20000000000110 +:1002B0000520040000840000062007800010049838 +:1002C000042200000000400004232400000000403D +:1002D000032212500010049A0422B14000000020B2 +:1002E0000422C800000000060322C818000404AA63 +:1002F0000422C8280000000C0322C858000404AEE1 +:100300000422C8680000000C0322C898000404B24C +:100310000422C8A80000000C0322C8D8000404B6B8 +:100320000422C8E80000000C0322C918000404BA23 +:100330000422C9280000000C0322C958000404BE8E +:100340000422C9680000000C0322C998000404C2FA +:100350000422C9A80000000C0322C9D8000404C666 +:100360000422C9E80000000C0322CA18000404CAD1 +:100370000422CA280000000C0322CA58000404CE3C +:100380000422CA680000000C0322CA98000404D2A8 +:100390000422CAA80000000C0322CAD8000404D614 +:1003A0000422CAE80000000C0322CB18000404DA7F +:1003B0000422CB280000000C0322CB58000404DEEA +:1003C0000422CB680000000C0322CB98000404E256 +:1003D0000422CBA80000000C0322CBD8000404E6C2 +:1003E0000422CBE80000000C0322CC18000404EA2D +:1003F0000422CC280000000C0322CC58000404EE98 +:100400000422CC680000000C0322CC98000404F203 +:100410000422CCA80000000C0322CCD8000404F66F +:100420000422CCE80000000C0322CD18000404FADA +:100430000422CD280000000C0322CD58000404FE45 +:100440000422CD680000000C0322CD9800040502B0 +:100450000422CDA80000000C0322CDD8000405061C +:100460000422CDE80000000C0322CE180004050A87 +:100470000422CE280000000C0322CE580004050EF2 +:100480000422CE680000000C0322CE98000405125E +:100490000422CEA80000000C0322CED800040516CA +:1004A0000422CEE80000000C0322CF180004051A35 +:1004B0000422CF280000000C0322CF580004051EA0 +:1004C0000422CF680000000C0322CF98000405220C +:1004D0000422CFA80000000C0322CFD80004052678 +:1004E0000422CFE800000006022380000000001074 +:1004F00002238040000000120223808000000030B0 +:10050000022380C00000000E022383800007A12088 +:10051000022383C0000001F402238BC0000000010D +:100520000A00000200000001022383000007A1204E +:1005300002238340000001F40A00000200000002D0 +:10054000022383000000138802238340000000057B +:100550000A000002000000040223830000000138AA +:1005600002238340000000000524000036680000DC +:100570000524800006680D9A06248B506CFC052A21 +:100580000A000001000000020223148000000000A5 +:100590000A00000100000004022314800000000093 +:1005A0000120000000000000012000040000000005 +:1005B00001200008000000000120000C00000000E5 +:1005C00001200010000000000120001400000000C5 +:1005D00003200020001A052C032000A40002054679 +:1005E000022002240000000002200234000000006B +:1005F0000220024C00000000022002E40000FFFF85 +:100600000820200000000800042211080000000259 +:1006100004221290000000060422340000000002B0 +:10062000042260400000003004228C000000001012 +:100630000422111000000002042212A8000000068B +:10064000042234080000000204226100000000308F +:1006500004228C4000000010042211180000000247 +:10066000042212C000000006042234100000000220 +:10067000042261C00000003004228C8000000010C1 +:100680000422112000000002042212D800000006FB +:1006900004223418000000020422628000000030AE +:1006A00004228CC000000010042211280000000267 +:1006B000042212F000000006042234200000000290 +:1006C000042263400000003004228D00000000106E +:1006D000042211300000000204221308000000066A +:1006E00004223428000000020422640000000030CC +:1006F00004228D4000000010042211380000000286 +:1007000004221320000000060422343000000002FE +:10071000042264C00000003004228D80000000101C +:1007200004221140000000020422133800000006D9 +:1007300004223438000000020422658000000030EA +:1007400004228DC00000001004102400000000E00E +:100750000310201C00020548021020C00000000207 +:10076000031020040002054A0217000800000002DE +:100770000217002C00000003031700380002054C8C +:10078000031700480005054E0317006000050553D8 +:100790000317007800020558021700040000000F3C +:1007A0000210800000001080041080400000000251 +:1007B000021080AC00000000021080380000001021 +:1007C00002108100000000000410812000000002DF +:1007D00002108008000002B5021080100000000026 +:1007E000021081080001FFFF041082000000004A8F +:1007F00004108140000000020210800000001A80F6 +:100800000410900000000024041091200000004A11 +:10081000041093700000004A041095C00000004AC4 +:1008200002108004000010800410804800000002C4 +:10083000021080B0000000010210803C0000001097 +:100840000210810400000000041081280000000252 +:100850000210800C000002B502108014000000009D +:100860000210810C0001FFFF041084000000004A08 +:1008700004108148000000020210800400001A8069 +:100880000410909000000024041092480000004AD8 +:10089000041094980000004A041096E80000004AF2 +:1008A0000210800000001080041080400000000250 +:1008B000021080AC0000000202108038000000101E +:1008C00002108100000000000410812000000002DE +:1008D00002108008000002B5021080100000000025 +:1008E000021081080001FFFF041082000000004A8E +:1008F00004108140000000020210800000001A80F5 +:100900000410900000000024041091200000004A10 +:10091000041093700000004A041095C00000004AC3 +:1009200002108004000010800410804800000002C3 +:10093000021080B0000000030210803C0000001094 +:100940000210810400000000041081280000000251 +:100950000210800C000002B502108014000000009C +:100960000210810C0001FFFF041084000000004A07 +:1009700004108148000000020210800400001A8068 +:100980000410909000000024041092480000004AD7 +:10099000041094980000004A041096E80000004AF1 +:1009A000021080000000108004108040000000024F +:1009B000021080AC0000000402108038000000101B +:1009C00002108100000000000410812000000002DD +:1009D00002108008000002B5021080100000000024 +:1009E000021081080001FFFF041082000000004A8D +:1009F00004108140000000020210800000001A80F4 +:100A00000410900000000024041091200000004A0F +:100A1000041093700000004A041095C00000004AC2 +:100A200002108004000010800410804800000002C2 +:100A3000021080B0000000050210803C0000001091 +:100A40000210810400000000041081280000000250 +:100A50000210800C000002B502108014000000009B +:100A60000210810C0001FFFF041084000000004A06 +:100A700004108148000000020210800400001A8067 +:100A80000410909000000024041092480000004AD6 +:100A9000041094980000004A041096E80000004AF0 +:100AA000021080000000108004108040000000024E +:100AB000021080AC00000006021080380000001018 +:100AC00002108100000000000410812000000002DC +:100AD00002108008000002B5021080100000000023 +:100AE000021081080001FFFF041082000000004A8C +:100AF00004108140000000020210800000001A80F3 +:100B00000410900000000024041091200000004A0E +:100B1000041093700000004A041095C00000004AC1 +:100B200002108004000010800410804800000002C1 +:100B3000021080B0000000070210803C000000108E +:100B4000021081040000000004108128000000024F +:100B50000210800C000002B502108014000000009A +:100B60000210810C0001FFFF041084000000004A05 +:100B700004108148000000020210800400001A8066 +:100B80000410909000000024041092480000004AD5 +:100B9000041094980000004A041096E80000004AEF +:100BA0000200A468000B01C80300A2940004055AC7 +:100BB0000A000001000000800200A5F8000000000B +:100BC0000A000001000001000200A5F80000000179 +:100BD0000200A270000000000200A27400000000E9 +:100BE0000200A270000000000200A27400000000D9 +:100BF0000200A270000000000200A27400000000C9 +:100C00000200A270000000000200A27400000000B8 +:100C1000030100B40002055E020100DC00000001D7 +:100C200003010100000205600201007C00300000A9 +:100C300002010084000000280201008C0000000076 +:100C4000020101300000000402010328000000003E +:100C50000201055400000030020160580000FFFF4F +:100C600002016070000000070201608000000001C6 +:100C7000020100C400000001020100CC00000001DC +:100C8000020100F800000001020100F00000000174 +:100C900002010080003000000201008800000028EE +:100CA0000201009000000000020101340000000475 +:100CB0000201032C00000000020105640000003066 +:100CC0000201605C0000FFFF020160740000000789 +:100CD0000201608400000001020100C80000000160 +:100CE000020100D000000001020100FC0000000130 +:100CF000020100F4000000010401013800000011AD +:100D00000401017C00000011040101380000001101 +:100D10000401017C000000110401013800000011F1 +:100D20000401017C000000110401013800000011E1 +:100D30000401017C00000011021400000000000109 +:100D40000214000C000000010314004000020562C0 +:100D50000214000C0000000002140000000000005B +:100D60000214006C000000000214000400000001E6 +:100D70000214003000000001021400040000000012 +:100D80000214005C000000000214000800000001D2 +:100D900002140034000000010214000800000000EA +:100DA0000214006000000000030400040012056447 +:100DB00002040054000000430204005C000000062E +:100DC00002040070000000040304007800040576AB +:100DD00004040088000000050304009C0003057A59 +:100DE000040400A800000004030400B80005057D09 +:100DF000040400CC00000004030400DC00040582AD +:100E0000040400EC000000040104012400000000C0 +:100E100001040128000000000104012C0000000072 +:100E20000104013000000000020401340000000F42 +:100E3000020401D000008906021205B00000000182 +:100E400003120490002205860312066C000205A816 +:100E500002120388000000640212039000000008E0 +:100E60000312039C000305AA031203BC000305AD93 +:100E7000021203D0000000000212036C0000000107 +:100E8000021203680000003F031201BC003C05B0E1 +:100E9000031202B0000205EC03120324000205EE67 +:100EA000021205B400000001021201B000000001AE +:100EB00007103800000505F007103820000505F57B +:100EC00007103C00000505FA03168030000805FFF6 +:100ED0000216805400000002031680600005060719 +:100EE0000416807400000007031680900002060CB0 +:100EF0000316809C0005060E041680B00000000753 +:100F0000031680CC00080613021680F000000007CC +:100F1000041680F40000000C031681240004061B54 +:100F2000041681340000000C031681640032061F91 +:100F30000316823400070651041682500000000494 +:100F4000031682600002065804168268000000083A +:100F5000031682880008065A041682A80000000AB8 +:100F600002168804000000040316880C00100662B4 +:100F70000316E000001006720416E40C0000000CDA +:100F80000316E43C000406820416E44C0000000C46 +:100F90000316E47C002E06860416E53400000004E7 +:100FA0000316E544000206B40416E54C00000008F0 +:100FB0000316E56C000606B60316E6BC000806BC80 +:100FC000021680EC000000FF03040408001406C4AD +:100FD000020404CC0000000103050044000206D80E +:100FE00003050050000406DA040500600000000458 +:100FF00003050090001306DE020501140000000145 +:101000000305011C000206F10205020400000001B4 +:101010000305020C000206F30305021C000306F59B +:10102000040502400000000A03050280002006F8C3 +:101030000405400000000D0003050004001007181F +:10104000020500E00000000E020500E40000002E92 +:10105000020500E00000001E020500E40000003E62 +:10106000020500E00000004E020500E40000006EF2 +:10107000020500E00000005E020500E40000007EC2 +:101080000416402400000002031640300003072825 +:101090000216404400000020021640700000001CB0 +:1010A0000216420800000001021642100000000172 +:1010B0000216422000000001021642280000000132 +:1010C0000216423000000001021642380000000102 +:1010D00002164260000000020A0000010000000148 +:1010E0000216401C0003D0900A000001000000021C +:1010F0000216401C000009C40A00000100000004A0 +:101100000216401C0000009C021640000000000176 +:10111000021640D800000001031640080003072B08 +:101120000216424000000000021642480000000083 +:101130000816427000000002021642500000000033 +:10114000021642580000000008164280000000020B +:10115000030420080004072E0304201C00040732A7 +:1011600002042038000000200404203C0000001F7E +:10117000020420B800000001040420BC0000005F4D +:10118000030422380004073601042248000000004E +:101190000104224C00000000010422500000000065 +:1011A0000104225400000000010422580000000045 +:1011B0000104225C00000000010422600000000025 +:1011C0000104226400000000010422680000000005 +:1011D0000104226C000000000104227000000000E5 +:1011E00001042274000000000104227800000000C5 +:1011F0000104227C000000000A0000010000000140 +:1012000002042000000003E80A00000100000002C0 +:10121000020420000000000A0A000001000000048F +:10122000020420000000000105180400006F000007 +:10123000061807600014073A041A00000000400076 +:10124000041B240000000040031A1EC80002073CD3 +:10125000031A40400004073E041A405000000006F4 +:10126000031A406800020742031A52C000020744F2 +:10127000031A800003F90746041A8FE400000007F0 +:10128000031AA08000100B3F021B800000000034F6 +:10129000021B804000000018021B80800000000C30 +:1012A000021B80C000000020021B83800007A120D9 +:1012B000021B83C0000001F4021B8BC00000000170 +:1012C0000A00000200000001021B83000007A120A9 +:1012D000021B8340000001F40A000002000000022B +:1012E000021B830000001388021B834000000005DE +:1012F0000A00000200000004021B83000000013805 +:10130000021B834000000000051C00003154000057 +:10131000051C800035A30C55051D0000136A19BE7D +:10132000061D2AE05AA40B4F0A000001000000022B +:10133000021B1480000000000A00000100000004ED +:10134000021B1480000000000118000000000000D3 +:10135000011800040000000001180008000000004F +:101360000118000C0000000001180010000000002F +:10137000011800140000000003180020001A0B518F +:10138000031800A400020B6B0218022400000000E6 +:1013900002180234000000000218024C0000000095 +:1013A000021802E4000000FF08181000000004000A +:1013B000041A300000000010041A308000000010F1 +:1013C000041A310000000010041A318000000010DF +:1013D000041A330000000012041A339000000012B7 +:1013E000041A342000000070041A90000000000667 +:1013F000041A304000000010041A30C00000001031 +:10140000041A314000000010041A31C0000000101E +:10141000041A334800000012041A33D800000012E6 +:10142000041A35E000000070041A9018000000064D +:10143000031A400000020B6D041A50000000000265 +:10144000041A508000000012031A614000020B6F62 +:10145000041A903000000002041AA00000000002EC +:10146000031A400800020B71041A50100000000219 +:10147000041A50C800000012031A614800020B73DE +:10148000041A903800000002041AA00800000002AC +:10149000031A401000020B75041A502000000002CD +:1014A000041A511000000012031A615000020B7759 +:1014B000041A904000000002041AA010000000026C +:1014C000031A401800020B79041A50300000000281 +:1014D000041A515800000012031A615800020B7BD5 +:1014E000041A904800000002041AA018000000022C +:1014F000031A402000020B7D041A50400000000235 +:10150000041A51A000000012031A616000020B7F50 +:10151000041A905000000002041AA02000000002EB +:10152000031A402800020B81041A505000000002E8 +:10153000041A51E800000012031A616800020B83CC +:10154000041A905800000002041AA02800000002AB +:10155000031A403000020B85041A5060000000029C +:10156000041A523000000012031A617000020B8747 +:10157000041A906000000002041AA030000000026B +:10158000031A403800020B89041A50700000000250 +:10159000041A527800000012031A617800020B8BC3 +:1015A000041A906800000002041AA038000000022B +:1015B000020E004C00000032030E005400040B8D9C +:1015C000040E006400000004030E009400130B914D +:1015D000020E014400000001030E014C00020BA4A6 +:1015E000020E020400000001030E020C00020BA612 +:1015F000030E021C00040BA8030E0280001B0BACA0 +:10160000040E02EC00000017040E20000000080089 +:10161000030E000400110BC7020E01100000000FA2 +:10162000020E01140000002F020E01100000001F26 +:10163000020E01140000003F020E01100000004FD6 +:10164000020E01140000006F020E01100000005F86 +:10165000020E01140000007F020C100000000028A0 +:10166000030C400800040BD8030C401C00040BDCE6 +:10167000030C403800050BE0040C404C0000005BFC +:10168000030C41B800050BE5040C41CC0000001B25 +:10169000030C423800040BEA010C42480000000031 +:1016A000010C424C00000000010C42500000000000 +:1016B000010C425400000000010C425800000000E0 +:1016C000010C425C00000000010C426000000000C0 +:1016D000010C426400000000010C426800000000A0 +:1016E000010C426C00000000010C42700000000080 +:1016F000010C427400000000010C42780000000060 +:10170000010C427C00000000010C4280000000003F +:101710000A00000100000001020C4000000003E884 +:101720000A00000100000002020C40000000000A54 +:101730000A00000100000004020C4000000000014B +:1017400005300400009C00000630076800130BEE13 +:101750000432000000004000043324000000004078 +:1017600004323E800000001003323EC000020BF045 +:10177000033274C000080BF20332850000100BFA2C +:10178000023380000000001A023380400000004E47 +:101790000233808000000010023380C0000000206F +:1017A000023383800007A120023383C0000001F4CC +:1017B00002338BC0000000010A000002000000019B +:1017C000023383000007A12002338340000001F4AC +:1017D0000A000002000000020233830000001388A8 +:1017E00002338340000000050A00000200000004EC +:1017F0000233830000000138023383400000000000 +:1018000005340000346800000534800028570D1AA4 +:101810000535000024A217300535800034BE20595C +:10182000053600001CB42D89063640B037EA0C0A94 +:101830000A000001000000020233148000000000D2 +:101840000A000001000000040233148000000000C0 +:101850000130000000000000013000040000000022 +:1018600001300008000000000130000C0000000002 +:1018700001300010000000000130001400000000E2 +:1018800003300020001A0C0C033000A400020C26C8 +:101890000230022400000000023002340000000088 +:1018A0000230024C00000000023002E40000FFFFA2 +:1018B000083020000000080004321000000001C0C1 +:1018C00004321E000000003804323000000001C065 +:1018D00004325000000000200432510000000020BB +:1018E00004325200000000200432530000000020A7 +:1018F0000432540000000020043255000000002093 +:10190000043256000000002004325700000000207E +:10191000043258000000002004325900000000206A +:1019200004325A000000002004325B000000002056 +:1019300004325C000000002004325D000000002042 +:1019400004325E000000002004325F00000000202E +:1019500004328450000000020332846000040C282A +:1019600004321700000001C004321EE000000038FD +:1019700004323700000001C0043250800000002013 +:101980000432518000000020043252800000002008 +:1019900004325380000000200432548000000020F4 +:1019A00004325580000000200432568000000020E0 +:1019B00004325780000000200432588000000020CC +:1019C000043259800000002004325A8000000020B8 +:1019D00004325B800000002004325C8000000020A4 +:1019E00004325D800000002004325E800000002090 +:1019F00004325F800000002004328458000000029E +:101A00000332847000040C2C0432401000000002E9 +:101A10000432841000000002043240200000000262 +:101A2000043284180000000204324030000000023A +:101A30000432842000000002043240400000000212 +:101A400004328428000000020432405000000002EA +:101A500004328430000000020432406000000002C2 +:101A6000043284380000000204324070000000029A +:101A70000432844000000002043240800000000272 +:101A800004328448000000020202005800000032C4 +:101A90000302006000040C30040200700000000427 +:101AA000030200A0000E0C34030200DC00070C420D +:101AB000020200FC000000060202012000000000FB +:101AC0000202013400000002020201B00000000125 +:101AD0000202020C000000010302021400020C4981 +:101AE00002020404000000010302040C00020C4B7B +:101AF0000302041C00040C4D0302048000200C515E +:101B00000402050000000012040280000000200012 +:101B10000302000400140C7102020108000000C856 +:101B20000202011800000002020201C400000000CD +:101B3000020201CC00000000020201D400000002F9 +:101B4000020201DC00000002020201E4000000FFCA +:101B5000020201EC000000FF0202010C000000C8BC +:101B60000202011C00000002020201C80000000085 +:101B7000020201D000000000020201D800000002B1 +:101B8000020201E000000002020201E8000000FF82 +:101B9000020201F0000000FF02020108000000C87C +:101BA0000202011800000002020201C4000000004D +:101BB000020201CC00000000020201D40000000279 +:101BC000020201DC00000002020201E4000000FF4A +:101BD000020201EC000000FF0202010C000000C83C +:101BE0000202011C00000002020201C80000000005 +:101BF000020201D000000000020201D80000000231 +:101C0000020201E000000002020201E8000000FF01 +:101C1000020201F0000000FF02020108000000C8FB +:101C20000202011800000002020201C400000000CC +:101C3000020201CC00000000020201D400000002F8 +:101C4000020201DC00000002020201E4000000FFC9 +:101C5000020201EC000000FF0202010C000000C8BB +:101C60000202011C00000002020201C80000000084 +:101C7000020201D000000000020201D800000002B0 +:101C8000020201E000000002020201E8000000FF81 +:101C9000020201F0000000FF02020108000000C87B +:101CA0000202011800000002020201C4000000004C +:101CB000020201CC00000000020201D40000000278 +:101CC000020201DC00000002020201E4000000FF49 +:101CD000020201EC000000FF0202010C000000C83B +:101CE0000202011C00000002020201C80000000004 +:101CF000020201D000000000020201D80000000230 +:101D0000020201E000000002020201E8000000FF00 +:101D1000020201F0000000FF02161000000000287F +:101D20000316600800030C850316601C00040C8871 +:101D300003166038000D0C8C0416606C0000001354 +:101D4000031660B800020C99041660C00000003E43 +:101D5000021661B800000001041661BC0000001FFB +:101D60000316623800040C9B011662480000000054 +:101D70000116624C000000000116625000000000D5 +:101D800001166254000000000116625800000000B5 +:101D90000116625C00000000011662600000000095 +:101DA0000116626400000000011662680000000075 +:101DB0000116626C00000000011662700000000055 +:101DC0000116627400000000011662780000000035 +:101DD0000116627C000000000A0000010000000102 +:101DE00002166000000003E80A0000010000000283 +:101DF000021660000000000A0A0000010000000452 +:101E000002166000000000010528040000860000A2 +:101E10000628076800130C9F042A000000004000F9 +:101E2000042B240000000040032A300000020CA113 +:101E3000032A400000100CA3032A840800080CB3F6 +:101E4000032A93C800040CBB032A96F000020CBFBF +:101E5000042A96F800000006032A994000020CC1EB +:101E6000022A9A2800000001032AC0C000100CC3F7 +:101E7000022B800000000000022B804000000018B0 +:101E8000022B80800000000C022B80C00000006646 +:101E9000022B83800007A120022B83C0000001F4E5 +:101EA000022B8BC0000000010A00000200000001AC +:101EB000022B83000007A120022B8340000001F4C5 +:101EC0000A00000200000002022B830000001388B9 +:101ED000022B8340000000050A00000200000004FD +:101EE000022B830000000138022B83400000000019 +:101EF0000A00000100000020022A9A2C00000000C5 +:101F0000052C000038650000052C80003B280E1AC7 +:101F1000052D00003C591CE4052D80000D9B2BFB7A +:101F2000062D9AA04CAC0CD30A0000010000000260 +:101F3000022B1480000000000A00000100000004D1 +:101F4000022B1480000000000128000000000000A7 +:101F50000128000400000000012800080000000023 +:101F60000128000C00000000012800100000000003 +:101F7000012800140000000003280020001A0CD5DE +:101F8000032800A400020CEF022802240000000035 +:101F900002280234000000000228024C0000000069 +:101FA000022802E40000FFFF0828200000000800CB +:101FB000042A500000000002042A50100000000211 +:101FC000042A502000000002042A503000000002C1 +:101FD000042A93E000000020042A94E00000000E90 +:101FE000032A951800020CF1042A95600000000EE7 +:101FF000032A959800020CF3042A95E00000000ED5 +:10200000032A961800020CF5042A96600000000EC0 +:10201000032A969800020CF7032A971000020CF985 +:10202000042A500800000002042A50180000000290 +:10203000042A502800000002042A50380000000240 +:10204000042A946000000020042A95200000000E5D +:10205000032A955800020CFB042A95A00000000EEC +:10206000032A95D800020CFD042A96200000000ED9 +:10207000032A965800020CFF042A96A00000000EC6 +:10208000032A96D800020D01032A971800020D03B7 +:10209000042A50480000000E032A972000100D0566 +:1020A000042A995000000002042AC0000000000227 +:1020B000042A50800000000E032A976000100D15BE +:1020C000042A995800000002042AC00800000002F7 +:1020D000042A50B80000000E032A97A000100D2516 +:1020E000042A996000000002042AC01000000002C7 +:1020F000042A50F00000000E032A97E000100D356E +:10210000042A996800000002042AC0180000000296 +:10211000042A51280000000E032A982000100D45C3 +:10212000042A997000000002042AC0200000000266 +:10213000042A51600000000E032A986000100D551B +:10214000042A997800000002042AC0280000000236 +:10215000042A51980000000E032A98A000100D6573 +:10216000042A998000000002042AC0300000000206 +:10217000042A51D00000000E032A98E000100D75CB +:10218000042A998800000002042AC03800000002D6 +:102190000400A0000000000C0400A0500000000299 +:1021A0000300A0EC00080D850300A18C00080D8D34 +:1021B0000200A45C00000C000200A61C000000034A +:1021C0000300A06C00060D950400A084000000052B +:1021D0000200A0980FE000000400A09C000000078F +:1021E0000300A0B8000D0D9B0400A22C0000000409 +:1021F0000300A10C00060DA80400A12400000005A6 +:102200000200A1380FE000000400A13C000000071C +:102210000300A158000D0DAE0400A23C0000000414 +:102220000200A030000000000200A0340000000006 +:102230000200A038000000000200A03C00000000E6 +:102240000200A040000000000200A04400000000C6 +:102250000200A048000000000200A04C00000000A6 +:10226000000000000000000000000000000000006E +:10227000000000000000000000000000000000005E +:10228000000000000000000000000000000000004E +:102290000000000000000005000500080008000B19 +:1022A000000000000000000000000000000000002E +:1022B000000000000000000000000000000000001E +:1022C000000B001900000000000000000019001AB7 +:1022D000001A001B001B001C001C001D001D001E1E +:1022E000001E001F001F00200020002100210028E8 +:1022F00000000000000000000000000000000000DE +:1023000000000000000000000000000000000000CD +:1023100000000000000000000028002E0000000067 +:1023200000000000000000000000000000000000AD +:10233000000000000000000000000000000000009D +:1023400000000000002E0049000000000000000016 +:10235000000000000000000000000000000000007D +:10236000000000000000000000000000000000006D +:10237000004900B4000000000000000000B400B9F3 +:1023800000B900BE00BE00C300C300C800C800CD35 +:1023900000CD00D200D200D700D700DC0000000042 +:1023A000000000000000000000000000000000002D +:1023B000000000000000000000000000000000001D +:1023C000000000000000000000DC00E00000000051 +:1023D00000000000000000000000000000000000FD +:1023E00000000000000000000000000000000000ED +:1023F0000000000000E000E7000000000000000016 +:1024000000000000000000000000000000000000CC +:1024100000000000000000000000000000000000BC +:1024200000000000000000000000000000E700F7CE +:1024300000F70107010701170117012701270137DD +:1024400001370147014701570157016700000000AC +:10245000000000000000000000000000000000007C +:10246000000000000000000000000000000000006C +:1024700000000000000000000167016D0000000086 +:1024800000000000016D016E016E016F016F0170AF +:1024900001700171017101720172017301730174A4 +:1024A000017401750175017801780185018501923A +:1024B0000192019301930194019401950195019674 +:1024C0000196019701970198019801990199019A44 +:1024D000019A01A001A001A401A401A8000000002C +:1024E00000000000000000000000000000000000EC +:1024F00000000000000000000000000000000000DC +:1025000000000000000000000000000000000000CB +:1025100000000000000000000000000000000000BB +:10252000000000000000000001A801BA0000000047 +:10253000000000000000000000000000000000009B +:10254000000000000000000000000000000000008B +:102550000000000001BA01C90000000000000000F6 +:10256000000000000000000000000000000000006B +:10257000000000000000000000000000000000005B +:1025800001C901CC000000000000000000000000B4 +:10259000000000000000000000000000000000003B +:1025A00000000000000000000000000001CC01EC71 +:1025B000000000000000000000000000000000001B +:1025C000000000000000000000000000000000000B +:1025D000000000000000000001EC01EE000000001F +:1025E00000000000000000000000000000000000EB +:1025F00000000000000000000000000000000000DB +:102600000000000001EE01FB0000000000000000DF +:1026100001FB01FC01FC01FD01FD01FE01FE01FFCA +:1026200001FF020002000201020102020202020393 +:10263000020302170217021A021A021D000000000C +:10264000000000000000000000000000000000008A +:10265000000000000000000000000000021D023821 +:10266000000000000000000000000000000000006A +:10267000000000000000000000000000000000005A +:1026800000000000000000000238026902690271C7 +:10269000027102790279027F027F02850285028B34 +:1026A000028B0291029102970297029D029D02A362 +:1026B00002A302A902A902B6000000000000000067 +:1026C00002B602B702B702B802B802B902B902BA3A +:1026D00002BA02BB02BB02BC02BC02BD02BD02BE0A +:1026E00002BE02BF00000000000000000000000069 +:1026F00000000000000000000000000000000000DA +:1027000000000000000000000000000002BF02DB2B +:1027100000000000000000000000000000000000B9 +:1027200000000000000000000000000000000000A9 +:10273000000000000000000002DB030A030A031F80 +:10274000031F033403340336033603380338033AD4 +:10275000033A033C033C033E033E03400340034271 +:10276000034203440344035600000000000000003D +:102770000356035E035E03660366036E036E037611 +:102780000376037E037E03860386038E038E039601 +:102790000396039700000000000000000000000006 +:1027A0000000000000000000000000000000000029 +:1027B000000000000000000000000000039703B4C8 +:1027C0000000000000000000000000000000000009 +:1027D00000000000000000000000000000000000F9 +:1027E000000000000000000003B403E903E903F760 +:1027F00003F70405040504090409040D040D04117C +:1028000004110415041504190419041D041D0421E0 +:10281000042104250425042B042B0431043104373E +:1028200004370438043804390439043A043A043BC0 +:10283000043B043C043C043D043D043E043E043F90 +:102840000000000000000000000020000000400028 +:1028500000006000000080000000A0000000C00038 +:102860000000E00000010000000120000001400025 +:1028700000016000000180000001A0000001C00014 +:102880000001E00000020000000220000002400001 +:1028900000026000000280000002A0000002C000F0 +:1028A0000002E000000300000003200000034000DD +:1028B00000036000000380000003A0000003C000CC +:1028C0000003E000000400000004200000044000B9 +:1028D00000046000000480000004A0000004C000A8 +:1028E0000004E00000050000000520000005400095 +:1028F00000056000000580000005A0000005C00084 +:102900000005E00000060000000620000006400070 +:1029100000066000000680000006A0000006C0005F +:102920000006E0000007000000072000000740004C +:1029300000076000000780000007A0000007C0003B +:102940000007E00000080000000820000008400028 +:1029500000086000000880000008A0000008C00017 +:102960000008E00000090000000920000009400004 +:1029700000096000000980000009A0000009C000F3 +:102980000009E000000A0000000A2000000A4000E0 +:10299000000A6000000A8000000AA000000AC000CF +:1029A000000AE000000B0000000B2000000B4000BC +:1029B000000B6000000B8000000BA000000BC000AB +:1029C000000BE000000C0000000C2000000C400098 +:1029D000000C6000000C8000000CA000000CC00087 +:1029E000000CE000000D0000000D2000000D400074 +:1029F000000D6000000D8000000DA000000DC00063 +:102A0000000DE000000E0000000E2000000E40004F +:102A1000000E6000000E8000000EA000000EC0003E +:102A2000000EE000000F0000000F2000000F40002B +:102A3000000F6000000F8000000FA000000FC0001A +:102A4000000FE00000100000001020000010400007 +:102A500000106000001080000010A0000010C000F6 +:102A60000010E000001100000011200000114000E3 +:102A700000116000001180000011A0000011C000D2 +:102A80000011E000001200000012200000124000BF +:102A900000126000001280000012A0000012C000AE +:102AA0000012E0000013000000132000001340009B +:102AB00000136000001380000013A0000013C0008A +:102AC0000013E00000140000001420000014400077 +:102AD00000146000001480000014A0000014C00066 +:102AE0000014E00000150000001520000015400053 +:102AF00000156000001580000015A0000015C00042 +:102B00000015E0000016000000162000001640002E +:102B100000166000001680000016A0000016C0001D +:102B20000016E0000017000000172000001740000A +:102B300000176000001780000017A0000017C000F9 +:102B40000017E000001800000018200000184000E6 +:102B500000186000001880000018A0000018C000D5 +:102B60000018E000001900000019200000194000C2 +:102B700000196000001980000019A0000019C000B1 +:102B80000019E000001A0000001A2000001A40009E +:102B9000001A6000001A8000001AA000001AC0008D +:102BA000001AE000001B0000001B2000001B40007A +:102BB000001B6000001B8000001BA000001BC00069 +:102BC000001BE000001C0000001C2000001C400056 +:102BD000001C6000001C8000001CA000001CC00045 +:102BE000001CE000001D0000001D2000001D400032 +:102BF000001D6000001D8000001DA000001DC00021 +:102C0000001DE000001E0000001E2000001E40000D +:102C1000001E6000001E8000001EA000001EC000FC +:102C2000001EE000001F0000001F2000001F4000E9 +:102C3000001F6000001F8000001FA000001FC000D8 +:102C4000001FE000002000000020200000204000C5 +:102C500000206000002080000020A0000020C000B4 +:102C60000020E000002100000021200000214000A1 +:102C700000216000002180000021A0000021C00090 +:102C80000021E0000022000000222000002240007D +:102C900000226000002280000022A0000022C0006C +:102CA0000022E00000230000002320000023400059 +:102CB00000236000002380000023A0000023C00048 +:102CC0000023E00000240000002420000024400035 +:102CD00000246000002480000024A0000024C00024 +:102CE0000024E00000250000002520000025400011 +:102CF00000256000002580000025A0000025C00000 +:102D00000025E000002600000026200000264000EC +:102D100000266000002680000026A0000026C000DB +:102D20000026E000002700000027200000274000C8 +:102D300000276000002780000027A0000027C000B7 +:102D40000027E000002800000028200000284000A4 +:102D500000286000002880000028A0000028C00093 +:102D60000028E00000290000002920000029400080 +:102D700000296000002980000029A0000029C0006F +:102D80000029E000002A0000002A2000002A40005C +:102D9000002A6000002A8000002AA000002AC0004B +:102DA000002AE000002B0000002B2000002B400038 +:102DB000002B6000002B8000002BA000002BC00027 +:102DC000002BE000002C0000002C2000002C400014 +:102DD000002C6000002C8000002CA000002CC00003 +:102DE000002CE000002D0000002D2000002D4000F0 +:102DF000002D6000002D8000002DA000002DC000DF +:102E0000002DE000002E0000002E2000002E4000CB +:102E1000002E6000002E8000002EA000002EC000BA +:102E2000002EE000002F0000002F2000002F4000A7 +:102E3000002F6000002F8000002FA000002FC00096 +:102E4000002FE00000300000003020000030400083 +:102E500000306000003080000030A0000030C00072 +:102E60000030E0000031000000312000003140005F +:102E700000316000003180000031A0000031C0004E +:102E80000031E0000032000000322000003240003B +:102E900000326000003280000032A0000032C0002A +:102EA0000032E00000330000003320000033400017 +:102EB00000336000003380000033A0000033C00006 +:102EC0000033E000003400000034200000344000F3 +:102ED00000346000003480000034A0000034C000E2 +:102EE0000034E000003500000035200000354000CF +:102EF00000356000003580000035A0000035C000BE +:102F00000035E000003600000036200000364000AA +:102F100000366000003680000036A0000036C00099 +:102F20000036E00000370000003720000037400086 +:102F300000376000003780000037A0000037C00075 +:102F40000037E00000380000003820000038400062 +:102F500000386000003880000038A0000038C00051 +:102F60000038E0000039000000392000003940003E +:102F700000396000003980000039A0000039C0002D +:102F80000039E000003A0000003A2000003A40001A +:102F9000003A6000003A8000003AA000003AC00009 +:102FA000003AE000003B0000003B2000003B4000F6 +:102FB000003B6000003B8000003BA000003BC000E5 +:102FC000003BE000003C0000003C2000003C4000D2 +:102FD000003C6000003C8000003CA000003CC000C1 +:102FE000003CE000003D0000003D2000003D4000AE +:102FF000003D6000003D8000003DA000003DC0009D +:10300000003DE000003E0000003E2000003E400089 +:10301000003E6000003E8000003EA000003EC00078 +:10302000003EE000003F0000003F2000003F400065 +:10303000003F6000003F8000003FA000003FC00054 +:10304000003FE000003FE00100000000000001FF41 +:10305000000002000000000100000002000000006B +:1030600000000008021500200215002008100000D2 +:103070000000003300000002000000000000000516 +:103080000000000500000000000000000000000239 +:103090000000000300000002000000010000000426 +:1030A0000000000200000002000000010000000219 +:1030B000000000200000004000000040000000036D +:1030C0000000001800002000000040C000006180E7 +:1030D000000082400000A3000000C3C00000E480A4 +:1030E0000001054000012600000146C00001678084 +:1030F000000188400001A9000001C9C00001EA8068 +:1031000000020B4000022C0000024CC000026D8047 +:1031100000028E400002AF000002CFC00002F0802B +:10312000000011400000000100000001000000014B +:10313000000000010000000100000001000000018B +:10314000000000010000000100000001000000017B +:10315000000000010000000100000001000000016B +:103160000003D0000000003D00000001000D000041 +:10317000000700D000028140000B8168000202209D +:1031800000010240000F025000010340000C00004B +:10319000000800C000028140000B8168000202208C +:1031A0000001024000070250000202C000100000AF +:1031B0000008010000028180000B81A8000202606B +:1031C00000018280000E8298000803800000000049 +:1031D000000000000002800000090028000200B882 +:1031E000000100D8000000E8000000E8FFFFFFF346 +:1031F00001AFFFFF00000000000000000000000021 +:10320000000000000000000000000000FFFFFFF1D0 +:1032100000EFFFFF000000000000000000000000C1 +:10322000000000000001000000000000FFFFFFF6AA +:10323000005FFFFF00000000000000000000000031 +:10324000000000000002000000000000FFFFF40684 +:103250001CBFFFFF0000000500000000000000147C +:10326000000000000004000000000000FFFFFFF26B +:10327000004FFFFF00000000000000000000000001 +:10328000000000000008000000000000FFFFFFFA3F +:10329000002FFFFF00000000000000000000000001 +:1032A000000000000010000000000000FFFFFFF71A +:1032B00001EFFFFF00000000000000000000000020 +:1032C000000000000020000000000000FFFFFFF5EC +:1032D000002FFFFF000000000000000000000000C1 +:1032E000000000000040000000000000FFFFFFF3AE +:1032F000018FFFFF00000000000000000000000040 +:10330000000000000000000000000000FFFFFFF1CF +:10331000010FFFFF0000000000000000000000009F +:10332000000000000001000000000000FFFFFFF6A9 +:10333000005FFFFF00000000000000000000000030 +:10334000000000000002000000000000FFFFF40683 +:103350001CBFFFFF0000000500000000000000147B +:10336000000000000004000000000000FFFFFFF26A +:10337000004FFFFF00000000000000000000000000 +:10338000000000000008000000000000FFFFFFFA3E +:10339000002FFFFF00000000000000000000000000 +:1033A000000000000010000000000000FFFFFFF719 +:1033B00000EFFFFF00000000000000000000000020 +:1033C000000000000020000000000000FFFFFFF5EB +:1033D000004FFFFF000000000000000000000000A0 +:1033E000000000000040000000000000FFFFFFFFA1 +:1033F00000CFFFFF0000000000000000000000CC34 +:10340000000000000000000000000000FFFFFFFFC0 +:1034100000CFFFFF0000000000000000000000CC13 +:10342000000000000001000000000000FFFFFFFF9F +:1034300000CFFFFF0000000000000000000000CCF3 +:10344000000000000002000000000000FFFFFFFF7E +:1034500000CFFFFF0000000000000000000000CCD3 +:10346000000000000004000000000000FFFFFFFF5C +:1034700000CFFFFF0000000000000000000000CCB3 +:10348000000000000008000000000000FFFFFFFF38 +:1034900000CFFFFF0000000000000000000000CC93 +:1034A000000000000010000000000000FFFFFFFF10 +:1034B00000CFFFFF0000000000000000000000CC73 +:1034C000000000000020000000000000FFFFFFFFE0 +:1034D00000CFFFFF0000000000000000000000CC53 +:1034E000000000000040000000000000FFFFFFF3AC +:1034F000020FFFFF000000000000000000000000BD +:10350000000000000000000000000000FFFFFFF1CD +:10351000010FFFFF0000000000000000000000009D +:10352000000000000001000000000000FFFFFFF6A7 +:10353000005FFFFF0000000000000000000000002E +:10354000000000000002000000000000FFFFF40681 +:103550001CBFFFFF00000005000000000000001479 +:10356000000000000004000000000000FFFFFFF268 +:10357000004FFFFF000000000000000000000000FE +:10358000000000000008000000000000FFFFFF8AAC +:10359000042FFFFF000000000000000000000000FA +:1035A000000000000010000000000000FFFFFF9777 +:1035B00005CFFFFF00000000000000000000000039 +:1035C000000000000020000000000000FFFFFFF5E9 +:1035D000010FFFFF000000000000000000000000DD +:1035E000000000000040000000000000FFFFFFF3AB +:1035F000000FFFFF000000000000000000000000BE +:10360000000000000000000000000000FFFFFFF1CC +:10361000000FFFFF0000000000000000000000009D +:10362000000000000001000000000000FFFFFFF6A6 +:10363000005FFFFF0000000000000000000000002D +:10364000000000000002000000000000FFFFFF0675 +:103650001CBFFFFF0000000000000000000000147D +:10366000000000000004000000000000FFFFFFF267 +:10367000004FFFFF000000000000000000000000FD +:10368000000000000008000000000000FFFFFFFA3B +:10369000002FFFFF000000000000000000000000FD +:1036A000000000000010000000000000FFFFFFF716 +:1036B000000FFFFF000000000000000000000000FD +:1036C000000000000020000000000000FFFFFFFFDE +:1036D00000CFFFFF0000000000000000000000CC51 +:1036E000000000000040000000000000FFFFFFFF9E +:1036F00000CFFFFF0000000000000000000000CC31 +:10370000000000000000000000000000FFFFFFFFBD +:1037100000CFFFFF0000000000000000000000CC10 +:10372000000000000001000000000000FFFFFFFF9C +:1037300000CFFFFF0000000000000000000000CCF0 +:10374000000000000002000000000000FFFFFFFF7B +:1037500000CFFFFF0000000000000000000000CCD0 +:10376000000000000004000000000000FFFFFFFF59 +:1037700000CFFFFF0000000000000000000000CCB0 +:10378000000000000008000000000000FFFFFFFF35 +:1037900000CFFFFF0000000000000000000000CC90 +:1037A000000000000010000000000000FFFFFFFF0D +:1037B00000CFFFFF0000000000000000000000CC70 +:1037C000000000000020000000000000FFFFFFFFDD +:1037D00000CFFFFF0000000000000000000000CC50 +:1037E000000000000040000000000000FFFFFFFF9D +:1037F00000CFFFFF0000000000000000000000CC30 +:10380000000000000000000000000000FFFFFFFFBC +:1038100000CFFFFF0000000000000000000000CC0F +:10382000000000000001000000000000FFFFFFFF9B +:1038300000CFFFFF0000000000000000000000CCEF +:10384000000000000002000000000000FFFFFFFF7A +:1038500000CFFFFF0000000000000000000000CCCF +:10386000000000000004000000000000FFFFFFFF58 +:1038700000CFFFFF0000000000000000000000CCAF +:10388000000000000008000000000000FFFFFFFF34 +:1038900000CFFFFF0000000000000000000000CC8F +:1038A000000000000010000000000000FFFFFFFF0C +:1038B00000CFFFFF0000000000000000000000CC6F +:1038C000000000000020000000000000FFFFFFFFDC +:1038D00000CFFFFF0000000000000000000000CC4F +:1038E000000000000040000000000000FFFFFFFF9C +:1038F00000CFFFFF0000000000000000000000CC2F +:10390000000000000000000000000000FFFFFFFFBB +:1039100000CFFFFF0000000000000000000000CC0E +:10392000000000000001000000000000FFFFFFFF9A +:1039300000CFFFFF0000000000000000000000CCEE +:10394000000000000002000000000000FFFFFFFF79 +:1039500000CFFFFF0000000000000000000000CCCE +:10396000000000000004000000000000FFFFFFFF57 +:1039700000CFFFFF0000000000000000000000CCAE +:10398000000000000008000000000000FFFFFFFF33 +:1039900000CFFFFF0000000000000000000000CC8E +:1039A000000000000010000000000000FFFFFFFF0B +:1039B00000CFFFFF0000000000000000000000CC6E +:1039C000000000000020000000000000FFFFFFFFDB +:1039D00000CFFFFF0000000000000000000000CC4E +:1039E0000000000000400000000000000000020095 +:1039F00000003DFF00000211000002000000020470 +:103A00000000FFFF0000FFFF0000FFFF0000FFFFBE +:103A10000000002000000021000000220000002320 +:103A20000000002400000025000000260000002700 +:103A300000000028000000290000002A0000002BE0 +:103A40000000002C0000002D0000002E0000002FC0 +:103A50000000001000000001000000010000000153 +:103A60000000000100000001000000010000000152 +:103A70000000000100000001000000010000000142 +:103A80000000000100000001000000010000000132 +:103A9000000000010000000107FFFFFF0000003FE1 +:103AA00007FFFFFF0000000F00007FF800007FF815 +:103AB0000000FF00000000000000FF000000000008 +:103AC0000000FF00000000000000FF0000000000F8 +:103AD0000000FF00000000000000FF0000000000E8 +:103AE0000000FF00000000000000FF0000000000D8 +:103AF0000000FF1C0FFFFFFF0000FF1C0FFFFFFF78 +:103B00000000FF1C0FFFFFFF0000FF1C0FFFFFFF67 +:103B10000000FF1C0FFFFFFF0000FF1C0FFFFFFF57 +:103B20000000FF1C0FFFFFFF0000FF1C0FFFFFFF47 +:103B30000000FF1C0FFFFFFF0000FF1C0FFFFFFF37 +:103B40000000FF1C0FFFFFFF0000FF1C0FFFFFFF27 +:103B50000000FF1C0FFFFFFF0000FF1C0FFFFFFF17 +:103B60000000FF1C0FFFFFFF0000FF1C0FFFFFFF07 +:103B70000000FF1C0FFFFFFF0000FF1C0FFFFFFFF7 +:103B80000000FF1C0FFFFFFF0000FF1C0FFFFFFFE7 +:103B90000000FF1C0FFFFFFF0000FF1C0FFFFFFFD7 +:103BA0000000FF1C0FFFFFFF0000FF1C0FFFFFFFC7 +:103BB0000000FF1C0FFFFFFF0000FF1C0FFFFFFFB7 +:103BC0000000FF1C0FFFFFFF0000FF1C0FFFFFFFA7 +:103BD0000000FF1C0FFFFFFF0000FF1C0FFFFFFF97 +:103BE0000000FF1C0FFFFFFF0000FF1C0FFFFFFF87 +:103BF0000000FF1C0FFFFFFF0000FF1C0FFFFFFF77 +:103C00000000FF1C0FFFFFFF0000FF1C0FFFFFFF66 +:103C10000000FF1C0FFFFFFF0000FF1C0FFFFFFF56 +:103C20000000FF1C0FFFFFFF0000FF1C0FFFFFFF46 +:103C30000000FF1C0FFFFFFF0000FF1C0FFFFFFF36 +:103C40000000FF1C0FFFFFFF0000FF1C0FFFFFFF26 +:103C50000000FF1C0FFFFFFF0000FF1C0FFFFFFF16 +:103C60000000FF1C0FFFFFFF0000FF1C0FFFFFFF06 +:103C70000000FF1C0FFFFFFF0000FF1C0FFFFFFFF6 +:103C80000000FF1C0FFFFFFF0000FF1C0FFFFFFFE6 +:103C90000000FF1C0FFFFFFF0000FF1C0FFFFFFFD6 +:103CA0000000FF1C0FFFFFFF0000FF1C0FFFFFFFC6 +:103CB0000000FF1C0FFFFFFF0000FF1C0FFFFFFFB6 +:103CC0000000FF1C0FFFFFFF0000FF1C0FFFFFFFA6 +:103CD0000000FF1C0FFFFFFF0000FF1C0FFFFFFF96 +:103CE0000000FF1C0FFFFFFF0000FF1C0FFFFFFF86 +:103CF00000000002000015000000000100000002AA +:103D000000000003000000000000000400000001AB +:103D1000000000000000000100000004000000009E +:103D2000000000010000000300000000000000018E +:103D3000000000040000000000000001000000037B +:103D4000000000000000000100000004000000006E +:103D5000000000040000000300000000000000005C +:103D600000003FFF000003FF000000000000000112 +:103D70000000000100000001007C100400000004AD +:103D80000000000200000090000000900080009001 +:103D9000081000000000008A000000800000008180 +:103DA0000000008000000006000007D00000076C43 +:103DB000071D291100000000009C042400000000E1 +:103DC00000000001000000010000000100000001EF +:103DD0000000000100007FFF000000FF000000FF66 +:103DE000000000FF000000FF0000007F000000FF57 +:103DF000000000FF000000FF0000003E0000000087 +:103E00000000003F0000003F0000003F0000003FB6 +:103E10000000003F0000003F0000003F0000000FD6 +:103E200000000000121700002217000032170000E7 +:103E300012150000221500003215000002100000CB +:103E400000100000101000002010000030100000D2 +:103E500000100000121400002214000032140000B0 +:103E600000E38340FFFFFFFFFFFFFFFFFFFFFFFFB8 +:103E7000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF52 +:103E8000FFFFFFFFF0005000F0001000FFFFFFFFFA +:103E9000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF32 +:103EA000FFFFFFFFFF809000FFFFFFFFFFFFFFFF0F +:103EB000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF12 +:103EC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF02 +:103ED000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2 +:103EE000FFFFFFFF00003C10000000010000000089 +:103EF00000000008000000080000000200000004AC +:103F00000000000500000004000000400000180848 +:103F10000000080300000803000000400000000348 +:103F2000000008030000080300000803000100036C +:103F30000000080300000803000000030000000365 +:103F40000000000300000003000000030000000365 +:103F50000000000300000003000000030000000355 +:103F60000000000300000003000000030000000345 +:103F700000000003000024030000002F00000009DF +:103F80000000001900000184000001830000030606 +:103F900000000019000000060000030600000306F0 +:103FA0000000030600000C86000003060000030664 +:103FB00000000006000000060000000600000006E9 +:103FC00000000006000000060000000600000006D9 +:103FD00000000006000000060000000600000006C9 +:103FE00000000006000000060000000600000306B6 +:103FF0000000001300000006000010040000100480 +:104000000010644000106440000000000000000048 +:104010000000000000000000000020000000000080 +:10402000000000000000000000000000040020006C +:104030000000000000000000000000000000000080 +:10404000000020000000007C0000003D0000003F58 +:104050000000009C00000006000000050000000AAF +:1040600000000005000001400000014000000000C9 +:1040700000000000000000C00000013F00007FFFC2 +:1040800000000048000000480000000000000000A0 +:1040900000000048000000040000000400000004CC +:1040A0000000000400000004000000040000000400 +:1040B0000000000400000004000000090000000BE4 +:1040C0000000000A00000004000000090000000BCE +:1040D0000000000A000000010000000100000001D3 +:1040E00000000001000000010000000100000001CC +:1040F00000000001000000010000000100000001BC +:104100000000000100000004000000090000000B96 +:104110000000000A00000001000000010000000192 +:10412000000000010000000100000001000000018B +:10413000000000010000000100000001000000017B +:104140000000000100000004000000090000000B56 +:104150000000000A0000000000000000000008004D +:1041600000000200000001FF000004000000000049 +:10417000000000001E491E491E491E490E490E49F5 +:104180000E490E49FFFFFFFF00000000000025E47C +:1041900000008000000000130FFF0FFF0000000070 +:1041A000000000000FFF0FFF1000100010001000B3 +:1041B000200020002000200080008000800080007F +:1041C00040004000400040000000000000000001EE +:1041D0000101010101200101200101010101100182 +:1041E0000101010101200101200101010101100172 +:1041F0002001010101011001010101010120010162 +:104200002001010101011001010101010120010151 +:104210000101010101200101200101010101100141 +:104220000101010101200101200101010101100131 +:104230000101010101200101200101010101100121 +:104240000101010101200101200101010101100111 +:1042500000000004000000090000000B0000000A3C +:1042600000000004000000090000000B0000000A2C +:10427000000000010000000100000001000000013A +:10428000000000010000000100000001000000012A +:10429000000000010000000100000001000000011A +:1042A00000000004000000090000000B0000000AEC +:1042B00000000001000000010000000100000001FA +:1042C00000000001000000010000000100000001EA +:1042D00000000001000000010000000100000001DA +:1042E00000000004000000090000000B0000000AAC +:1042F0001E491E491E491E490E490E490E490E49C6 +:10430000FFFFFFFF000000000FFF0FFF0000000095 +:10431000000000000FFF0FFF100010001000100041 +:10432000200020002000200080008000800080000D +:10433000400040004000400000000000000000027B +:10434000000000010000000300000004000000065F +:104350000000000500000007000001230000012309 +:1043600000000123000001230000012300000123BD +:1043700000000123000001230000012300000123AD +:10438000000001230000012300000123000001239D +:10439000000001230000012300000123000001238D +:1043A0000000012300000123000000200000003273 +:1043B00000000007000000070000000000000008E7 +:1043C0000215002002150020000000300810000037 +:1043D0000000003300000030000000310000000247 +:1043E00000000005000000060000000200000002BE +:1043F00000000000000000050000000200000002B4 +:1044000000000002000000010000000600000001A2 +:1044100000000002000000400000004000000020FA +:10442000000000130000002000010000000204C092 +:104430000003098000040E4000051300000617C0A9 +:1044400000071C800008214000092600000A2AC03D +:10445000000B2F80000C3440000D3900000E3DC0D1 +:10446000000F42800010474000114C00001250C065 +:104470000013558000145A4000155F00001663C0F9 +:104480000017688000186D4000197200001A76C08D +:10449000001B7B80001C8040001D8500001E89C021 +:1044A000001F8E800000934000000001000000010A +:1044B00000000001000000010000000100000001F8 +:1044C00000000001000000010000000100000001E8 +:1044D00000000001000000010000000100000001D8 +:1044E0000000000100000001000000080000000CB6 +:1044F00000000010000000010000000100000001A9 +:104500000000021100000200000002040000021975 +:104510000000FFFF0000FFFF0000FFFF0000FFFFA3 +:1045200007FFFFFF0000003F07FFFFFF0000000F35 +:1045300000007FF800007FF800000000000000018C +:1045400000201001000000000100900000000100A8 +:10455000000000010000000000000000140AFF003D +:1045600000009002000000000000000000000000B9 +:1045700000009004000000000000000000000000A7 +:104580000000900600000000000000000000000095 +:104590000000900800000000000000000000000083 +:1045A0000000900A00000000000000000000000071 +:1045B0000000900C0000000000000000000000005F +:1045C0000000900E0000000000000000000000004D +:1045D000000090100000000000000000000000003B +:1045E0000000901200000000000000000000000029 +:1045F0000000901400000000000000000000000017 +:104600000000901600000000000000000000000004 +:1046100000009018000000000000000000000000F2 +:104620000000901A000000000000000000000000E0 +:104630000000901C000000000000000000000000CE +:104640000000901E000000000000000000000000BC +:1046500000009020000000000000000000000000AA +:104660000000902200000000000000000000000098 +:104670000000902400000000000000000000000086 +:104680000000902600000000000000000000000074 +:104690000000902800000000000000000000000062 +:1046A0000000902A00000000000000000000000050 +:1046B0000000902C0000000000000000000000003E +:1046C0000000902E0000000000000000000000002C +:1046D000000090300000000000000000000000001A +:1046E0000000903200000000000000000000000008 +:1046F00000009034000000000000000000000000F6 +:1047000000009036000000000000000000000000E3 +:1047100000009038000000000000000000000000D1 +:104720000000903A000000000000000000000000BF +:104730000000903C000000000000000000000000AD +:104740000000903E0000000000000000000000009B +:104750000000904000000000000000000000000089 +:104760000000904200000000000000000000000077 +:104770000000904400000000000000000000000065 +:104780000000904600000000000000000000000053 +:104790000000904800000000000000000000000041 +:1047A0000000904A0000000000000000000000002F +:1047B0000000904C0000000000000000000000001D +:1047C0000000904E0000000000000000000000000B +:1047D00000009050000000000000000000000000F9 +:1047E00000009052000000000000000000000000E7 +:1047F00000009054000000000000000000000000D5 +:1048000000009056000000000000000000000000C2 +:1048100000009058000000000000000000000000B0 +:104820000000905A0000000000000000000000009E +:104830000000905C0000000000000000000000008C +:104840000000905E0000000000000000000000007A +:104850000000906000000000000000000000000068 +:104860000000906200000000000000000000000056 +:104870000000906400000000000000000000000044 +:104880000000906600000000000000000000000032 +:104890000000906800000000000000000000000020 +:1048A0000000906A0000000000000000000000000E +:1048B0000000906C000000000000000000000000FC +:1048C0000000906E000000000000000000000000EA +:1048D00000009070000000000000000000000000D8 +:1048E00000009072000000000000000000000000C6 +:1048F00000009074000000000000000000000000B4 +:1049000000009076000000000000000000000000A1 +:10491000000090780000000000000000000000008F +:104920000000907A0000000000000000000000007D +:104930000000907C0000000000000000000000006B +:104940000000907E00000000000000000000000059 +:104950000000908000000000000000000000000047 +:104960000000908200000000000000000000000035 +:104970000000908400000000000000000000000023 +:104980000000908600000000000000000000000011 +:1049900000009088000000000000000000000000FF +:1049A0000000908A000000000000000000000000ED +:1049B0000000908C000000000000000000000000DB +:1049C0000000908E000000000000000000000000C9 +:1049D00000009090000000000000000000000000B7 +:1049E00000009092000000000000000000000000A5 +:1049F0000000909400000000000000000000000093 +:104A00000000909600000000000000000000000080 +:104A1000000090980000000000000000000000006E +:104A20000000909A0000000000000000000000005C +:104A30000000909C0000000000000000000000004A +:104A40000000909E00000000000000000000000038 +:104A5000000090A000000000000000000000000026 +:104A6000000090A200000000000000000000000014 +:104A7000000090A400000000000000000000000002 +:104A8000000090A6000000000000000000000000F0 +:104A9000000090A8000000000000000000000000DE +:104AA000000090AA000000000000000000000000CC +:104AB000000090AC000000000000000000000000BA +:104AC000000090AE000000000000000000000000A8 +:104AD000000090B000000000000000000000000096 +:104AE000000090B200000000000000000000000084 +:104AF000000090B400000000000000000000000072 +:104B0000000090B60000000000000000000000005F +:104B1000000090B80000000000000000000000004D +:104B2000000090BA0000000000000000000000003B +:104B3000000090BC00000000000000000000000029 +:104B4000000090BE00000000000000000000000017 +:104B5000000090C000000000000000000000000005 +:104B6000000090C2000000000000000000000000F3 +:104B7000000090C4000000000000000000000000E1 +:104B8000000090C6000000000000000000000000CF +:104B9000000090C8000000000000000000000000BD +:104BA000000090CA000000000000000000000000AB +:104BB000000090CC00000000000000000000000099 +:104BC000000090CE00000000000000000000000087 +:104BD000000090D000000000000000000000000075 +:104BE000000090D200000000000000000000000063 +:104BF000000090D400000000000000000000000051 +:104C0000000090D60000000000000000000000003E +:104C1000000090D80000000000000000000000002C +:104C2000000090DA0000000000000000000000001A +:104C3000000090DC00000000000000000000000008 +:104C4000000090DE000000000000000000000000F6 +:104C5000000090E0000000000000000000000000E4 +:104C6000000090E2000000000000000000000000D2 +:104C7000000090E4000000000000000000000000C0 +:104C8000000090E6000000000000000000000000AE +:104C9000000090E80000000000000000000000009C +:104CA000000090EA0000000000000000000000008A +:104CB000000090EC00000000000000000000000078 +:104CC000000090EE00000000000000000000000066 +:104CD000000090F000000000000000000000000054 +:104CE000000090F200000000000000000000000042 +:104CF000000090F400000000000000000000000030 +:104D0000000090F60000000000000000000000001D +:104D1000000090F80000000000000000000000000B +:104D2000000090FA000000000000000000000000F9 +:104D3000000090FC000000000000000000000000E7 +:104D4000000090FE000000000000000000000000D5 +:104D500000009100000000000000000000000000C2 +:104D600000009102000000000000000000000000B0 +:104D7000000091040000000000000000000000009E +:104D8000000091060000000000000000000000008C +:104D9000000091080000000000000000000000007A +:104DA0000000910A00000000000000000000000068 +:104DB0000000910C00000000000000000000000056 +:104DC0000000910E00000000000000000000000044 +:104DD0000000911000000000000000000000000032 +:104DE0000000911200000000000000000000000020 +:104DF000000091140000000000000000000000000E +:104E000000009116000000000000000000000000FB +:104E100000009118000000000000000000000000E9 +:104E20000000911A000000000000000000000000D7 +:104E30000000911C000000000000000000000000C5 +:104E40000000911E000000000000000000000000B3 +:104E500000009120000000000000000000000000A1 +:104E6000000091220000000000000000000000008F +:104E7000000091240000000000000000000000007D +:104E8000000091260000000000000000000000006B +:104E90000000912800000000000000000000000059 +:104EA0000000912A00000000000000000000000047 +:104EB0000000912C00000000000000000000000035 +:104EC0000000912E00000000000000000000000023 +:104ED0000000913000000000000000000000000011 +:104EE00000009132000000000000000000000000FF +:104EF00000009134000000000000000000000000ED +:104F000000009136000000000000000000000000DA +:104F100000009138000000000000000000000000C8 +:104F20000000913A000000000000000000000000B6 +:104F30000000913C000000000000000000000000A4 +:104F40000000913E00000000000000000000000092 +:104F50000000914000000000000000000000000080 +:104F6000000091420000000000000000000000006E +:104F7000000091440000000000000000000000005C +:104F8000000091460000000000000000000000004A +:104F90000000914800000000000000000000000038 +:104FA0000000914A00000000000000000000000026 +:104FB0000000914C00000000000000000000000014 +:104FC0000000914E00000000000000000000000002 +:104FD00000009150000000000000000000000000F0 +:104FE00000009152000000000000000000000000DE +:104FF00000009154000000000000000000000000CC +:1050000000009156000000000000000000000000B9 +:1050100000009158000000000000000000000000A7 +:105020000000915A00000000000000000000000095 +:105030000000915C00000000000000000000000083 +:105040000000915E00000000000000000000000071 +:10505000000091600000000000000000000000005F +:10506000000091620000000000000000000000004D +:10507000000091640000000000000000000000003B +:105080000000916600000000000000000000000029 +:105090000000916800000000000000000000000017 +:1050A0000000916A00000000000000000000000005 +:1050B0000000916C000000000000000000000000F3 +:1050C0000000916E000000000000000000000000E1 +:1050D00000009170000000000000000000000000CF +:1050E00000009172000000000000000000000000BD +:1050F00000009174000000000000000000000000AB +:105100000000917600000000000000000000000098 +:105110000000917800000000000000000000000086 +:105120000000917A00000000000000000000000074 +:105130000000917C00000000000000000000000062 +:105140000000917E00000000000000000000000050 +:10515000000091800000000000000000000000003E +:10516000000091820000000000000000000000002C +:10517000000091840000000000000000000000001A +:105180000000918600000000000000000000000008 +:1051900000009188000000000000000000000000F6 +:1051A0000000918A000000000000000000000000E4 +:1051B0000000918C000000000000000000000000D2 +:1051C0000000918E000000000000000000000000C0 +:1051D00000009190000000000000000000000000AE +:1051E000000091920000000000000000000000009C +:1051F000000091940000000000000000000000008A +:105200000000919600000000000000000000000077 +:105210000000919800000000000000000000000065 +:105220000000919A00000000000000000000000053 +:105230000000919C00000000000000000000000041 +:105240000000919E0000000000000000000000002F +:10525000000091A00000000000000000000000001D +:10526000000091A20000000000000000000000000B +:10527000000091A4000000000000000000000000F9 +:10528000000091A6000000000000000000000000E7 +:10529000000091A8000000000000000000000000D5 +:1052A000000091AA000000000000000000000000C3 +:1052B000000091AC000000000000000000000000B1 +:1052C000000091AE0000000000000000000000009F +:1052D000000091B00000000000000000000000008D +:1052E000000091B20000000000000000000000007B +:1052F000000091B400000000000000000000000069 +:10530000000091B600000000000000000000000056 +:10531000000091B800000000000000000000000044 +:10532000000091BA00000000000000000000000032 +:10533000000091BC00000000000000000000000020 +:10534000000091BE0000000000000000000000000E +:10535000000091C0000000000000000000000000FC +:10536000000091C2000000000000000000000000EA +:10537000000091C4000000000000000000000000D8 +:10538000000091C6000000000000000000000000C6 +:10539000000091C8000000000000000000000000B4 +:1053A000000091CA000000000000000000000000A2 +:1053B000000091CC00000000000000000000000090 +:1053C000000091CE0000000000000000000000007E +:1053D000000091D00000000000000000000000006C +:1053E000000091D20000000000000000000000005A +:1053F000000091D400000000000000000000000048 +:10540000000091D600000000000000000000000035 +:10541000000091D800000000000000000000000023 +:10542000000091DA00000000000000000000000011 +:10543000000091DC000000000000000000000000FF +:10544000000091DE000000000000000000000000ED +:10545000000091E0000000000000000000000000DB +:10546000000091E2000000000000000000000000C9 +:10547000000091E4000000000000000000000000B7 +:10548000000091E6000000000000000000000000A5 +:10549000000091E800000000000000000000000093 +:1054A000000091EA00000000000000000000000081 +:1054B000000091EC0000000000000000000000006F +:1054C000000091EE0000000000000000000000005D +:1054D000000091F00000000000000000000000004B +:1054E000000091F200000000000000000000000039 +:1054F000000091F400000000000000000000000027 +:10550000000091F600000000000000000000000014 +:10551000000091F800000000000000000000000002 +:10552000000091FA000000000000000000000000F0 +:10553000000091FC000000000000000000000000DE +:10554000000091FE0000FF00000000000000FF00CE +:10555000000000000000FF00000000000000FF004D +:10556000000000000000FF00000000000000FF003D +:10557000000000000000FF00000000000000FF002D +:105580000000000000000002000015000000000103 +:105590000000000200000003000000000000000402 +:1055A00000000001000000000000000100000004F5 +:1055B00000000000000000010000000300000000E7 +:1055C00000000001000000040000000000000001D5 +:1055D00000000003000000000000000100000004C3 +:1055E00000000000000000040000000300000000B4 +:1055F0000000000000003FFF000003FF0000000368 +:1056000000BEBC20000000000000000500000003F8 +:1056100000BEBC20000000000000000500000003E8 +:1056200000BEBC20000000000000000500000003D8 +:1056300000BEBC20000000000000000500000003C8 +:1056400000BEBC20000000000000000500000003B8 +:1056500000BEBC20000000000000000500000003A8 +:1056600000BEBC2000000000000000050000000398 +:1056700000BEBC2000000000000000050000000D7E +:105680000000000C000000000000001002150020C7 +:105690000215002000000030081000000000003358 +:1056A0000000003000000031000000020000000493 +:1056B00000000000000000020000000200000000E6 +:1056C00000000002000000070000000200000002CD +:1056D00000000001000000030000000100000002C3 +:1056E0000000004000000040000000040000002016 +:1056F0000000000F0000001B00008000000103C03C +:105700000001878000020B4000028F00000312C0DE +:105710000003968000041A4000049E00000521C08A +:105720000005A580000629400006AD00000730C036 +:105730000007B480000838400008BC0000093FC0E2 +:105740000009C380000A4740000ACB00000B4EC08E +:10575000000BD280000C5640000CDA00000D5DC03A +:105760000000618000000001000000010000000155 +:105770000000000100000001000000010000000125 +:105780000000000100000001000000010000000115 +:105790000000000100000001000000010000000105 +:1057A00000000001000000010000101100001000C6 +:1057B00000001004000010210000FFFF0000FFFFA8 +:1057C0000000FFFF0000FFFF000000460000001087 +:1057D00000000000000000000000001800000001B0 +:1057E00000000000000000000000000000000001B8 +:1057F00007FFFFFF0000003F07FFFFFF0000000F53 +:1058000000007FF800007FF8000019000000000091 +:10581000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF98 +:10582000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF88 +:105830000000FF00000000000000FF00000000006A +:105840000000FF00000000000000FF00000000005A +:105850000000FF00000000000000FF00000000004A +:105860000000FF00000000000000FF00000000003A +:10587000000000020000150000000001000000020E +:105880000000000300000000000000040000000110 +:105890000000000000000001000000040000000003 +:1058A00000000001000000030000000000000001F3 +:1058B00000000004000000000000000100000003E0 +:1058C00000000000000000010000000400000000D3 +:1058D00000000004000000030000000000000000C1 +:1058E00000003FFF000003FF00000000039387005B +:1058F000000000000000000000000000039387008B +:1059000000000000000000000000000F0000000781 +:10591000000000000000000E031500200315002009 +:1059200001000030081000000000003300000030CB +:10593000000000310000000300000006000000032A +:105940000000000300000002000000000000000250 +:10595000000000000000000600000004000000023B +:10596000000000020000000100000004000000012F +:1059700000000002000000400000004000000004A1 +:1059800000000020000000020000002000001000C5 +:105990000000208000003100000041800000520023 +:1059A000000062800000730000008380000094000B +:1059B0000000A4800000B5000000C5800000D600F3 +:1059C0000000E6800000F7000001078000011800D9 +:1059D00000012880000139000001498000015A00BF +:1059E00000016A8000017B0000018B8000019C00A7 +:1059F0000001AC800001BD000001CD800001DE008F +:105A00000001EE800001FF0000000F800000000197 +:105A10000000000100000001000000010000000182 +:105A20000000000100000001000000010000000172 +:105A30000000000100000001000000010000000162 +:105A40000000000100000001000000010000000152 +:105A5000000000010000000100000001000012240D +:105A600000001210000012140000FFFF0000FFFFF2 +:105A70000000FFFF0000FFFF0000002000000020EA +:105A800000000000000000000000002300000024CF +:105A9000000000250000002600000027000000296B +:105AA0000000002A0000002B0000002C0000000174 +:105AB0000000000107FFFFFF0000003F07FFFFFF9E +:105AC0000000000F00007FF800007FF800000000D9 +:105AD00000000001CCCC0201CCCCCCCCCCCC02015F +:105AE000CCCCCCCCCCCC0201CCCCCCCCCCCC020120 +:105AF000CCCCCCCCCCCC0201CCCCCCCCCCCC020110 +:105B0000CCCCCCCCCCCC0201CCCCCCCCCCCC0201FF +:105B1000CCCCCCCCFFFFFFFFFFFFFFFFFFFFFFFF61 +:105B2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF85 +:105B3000FFFFFFFF000000000001000100010D0752 +:105B4000CCCCCCC510000000000028AD7058103C33 +:105B5000000000000000FF00000000000000FF0047 +:105B6000000000000000FF00000000000000FF0037 +:105B7000000000000000FF00000000000000FF0027 +:105B8000000000000000FF00000000000000FF0017 +:105B900000000000000000020000150000000001ED +:105BA00000000002000000030000000000000004EC +:105BB00000000001000000000000000100000004DF +:105BC00000000000000000010000000300000000D1 +:105BD00000000001000000040000000000000001BF +:105BE00000000003000000000000000100000004AD +:105BF000000000000000000400000003000000009E +:105C00000000000000003FFF000003FF002625A069 +:105C100000000000002625A000000000002625A0AE +:105C200000000000002625A000000000000E00007B +:105C3000011600D6002625A000000000002625A0A1 +:105C400000000000002625A000000000002625A07E +:105C50000000000000720000012300F30000FFFFBD +:105C6000000000000000FFFF000000000000FFFF38 +:105C7000000000000000FFFF000000000000FFFF28 +:105C8000000000000000FFFF000000000000000016 +:105C9000000000000000FFFF000000000000FFFF08 +:105CA000000000000000FFFF000000000000FFFFF8 +:105CB000000000000000FFFF000000000000FFFFE8 +:105CC000000000000000FFFF0000000000000000D6 +:105CD000000000000000FFFF000000000000FFFFC8 +:105CE000000000000000FFFF000000000000FFFFB8 +:105CF000000000000000FFFF000000000000FFFFA8 +:105D0000000000000000FFFF000000000000000095 +:105D1000000000000000FFFF000000000000FFFF87 +:105D2000000000000000FFFF000000000000FFFF77 +:105D3000000000000000FFFF000000000000FFFF67 +:105D4000000000000000FFFF000000000000000055 +:105D5000000000000000FFFF000000000000FFFF47 +:105D6000000000000000FFFF000000000000FFFF37 +:105D7000000000000000FFFF000000000000FFFF27 +:105D8000000000000000FFFF000000000000000015 +:105D9000000000000000FFFF000000000000FFFF07 +:105DA000000000000000FFFF000000000000FFFFF7 +:105DB000000000000000FFFF000000000000FFFFE7 +:105DC000000000000000FFFF0000000000000000D5 +:105DD000000000000000FFFF000000000000FFFFC7 +:105DE000000000000000FFFF000000000000FFFFB7 +:105DF000000000000000FFFF000000000000FFFFA7 +:105E0000000000000000FFFF000000000000000094 +:105E1000000000000000FFFF000000000000FFFF86 +:105E2000000000000000FFFF000000000000FFFF76 +:105E3000000000000000FFFF000000000000FFFF66 +:105E4000000000000000FFFF000000000000000054 +:105E5000000000000000FFFF00000000555400009B +:105E60005555555500005555F0000000555400009B +:105E70005555555500005555F0000000555400008B +:105E80005555555500005555F00000000000000024 +:105E9000000100000000501400000000FF5C000042 +:105EA000FFF55FFF0000FFFFF00003E000000000CF +:105EB0000000A0000000040000000000000000003E +:105EC00000000000000010000000000000000000C2 +:105ED0000000000000004000000000000000000082 +:105EE0000000000000010000FF5C0000FFF55FFF04 +:105EF0000000FFFFF00003E0000000000000A00031 +:105F00000000080000000000000000000000000089 +:105F10000000200000000000000000000000000061 +:105F200000008000000000000000000000000000F1 +:105F300000020000000000001F8B080000000000AD +:105F4000000BFB51CFC0F00309AFE540E50BB2A059 +:105F5000F2D171192B7E794298878132FDDACC0C0F +:105F60000CA6405C03C4F6CC04EC62C2147B2B8903 +:105F7000604F116760F82B0261EB8B52E6AE513C2B +:105F800034F0161554FE0A2568FC43C5B7A2C9AF04 +:105F900084CAC7C843E86D2AD8CD8D85CA030002DC +:105FA000FBE30560030000000000000000000000AB +:105FB0001F8B080000000000000BED7D7F7C54D596 +:105FC00095F87DF3DEBC79F32B7909214C48822FBB +:105FD000214080801308105ADCBE8420639BAD43AF +:105FE000008D8A3A08C5544083C535DBDA9D07F930 +:105FF00041F8A10DEADAD462BF03DA96ADDD36FAD4 +:106000008D1677FDBA83684BBB76BF9420454589D2 +:10601000D652B755BFE86AB1BB6EDD7BCEBD77E621 +:10602000BD974900B77E77FF58FAA9973BF7BD7B2C +:10603000CF3DBFCFB9E73E7C6189147F86908FE06A +:106040000F6DB779C901E96242025AF4F06A83F62A +:1060500009FDB390901E684BE8FF531E85CC2724A2 +:10606000087D3A2E97795EF5E51172994C3BF3E87D +:106070006F91427CDE1B6A2709FA13D990EF21C584 +:1060800084DCA611FC73D69F379BE413D2A1B1F632 +:10609000F640DE3E68BB9384A4A7C1F8A414A1F324 +:1060A000A984542B75F04620FAED0A68DB17C46703 +:1060B000617B31B4138987AD47CAF4D34136F747C2 +:1060C00032FCF72B04E013EB91938906585F26E22C +:1060D0004F8CC0FB32D9F58E3C9B10A53D9FDC3127 +:1060E00087F67595A4F93B1FC17FE455F9895016D1 +:1060F0002FEEB6E36443EA99EAECF33349B8E8F4E7 +:106100004CFA17852808077F9F108BC0FA3E8E2F08 +:10611000F73C679366EA19EF483C8DB6AEC0D38E64 +:10612000A446D274D2CEA48E6DA08C9829BA5E807B +:1061300010F3D11A982165798A08F11B958FEE200A +:106140003638FC0C8E189108190FBF271CF8EA2D61 +:10615000BB5B33C7D837A9A27812FBAE1CB93F4A44 +:106160000A7380AE1FA4F0ECC3FD0FA4C782E3AA9C +:106170000C1C6DC4BEFF0B87E34B8EF7BDD30939F2 +:1061800002EB2B743DDB3CC46074560CFEDE79E2FE +:106190005D2DF238F823581D70F49550A1937F4679 +:1061A000F0651FE7D7B8CCF858F42D120F537C4C8C +:1061B0002289010A6727FC54C25995E2CDAB471FDB +:1061C000DC51015CADE2F34A996601DF5E2627BE31 +:1061D00082786B260E79F49114912A60BEEAFC0451 +:1061E000F04188C9E3483EB2528AD7D6F792D60129 +:1061F000C6376C9D62921A47E5907CB8D868098FC3 +:106200008E97A172F65E0B2523AC23E056CA28DCDC +:10621000F4B7BB016E0AA7D2EC1370DF8DFB76C119 +:106220001DD0E304447AE8CFA731B863E3110FEE41 +:10623000F55AB4CE943297F311F20D31817EE57C9C +:10624000E9BBAA489F4CF54979BDC7F2D1F5BC120C +:10625000C3E79D53E64761FE9FA889BDB07E416BB1 +:106260003AEDA5EB966F1E20B05E2FEC9FE27F8982 +:10627000FCA1F61A6DBFB6A832FF06DAFE04F87369 +:10628000DE4838F6503904FCF5533984F6ECCB0C73 +:10629000EED1F0747F9238F07D7FBB120379BDBFE1 +:1062A000EDE982A5145FDD455573904DDA2405F6BE +:1062B0001394D87E9EE0EBEFD9F4170827C5DF13BF +:1062C000D0F716A508D32F71C2F8096996C143B15A +:1062D00069997A4D160F1328BE400EF55E124D1BBC +:1062E0008887A7110FC68009B21B3275AAD8B37868 +:1062F00020E4CCE1C9F4F9BE9F4E99B3C3C8C2AD46 +:10630000481E86F7A222466F255A1DCFC11F823E26 +:10631000BB299E6AA6403F2AC1733B783FC37724BE +:106320003104708C6B0A207F8C6B8E7A615F4725FD +:10633000C18F11D44F5D7C5FBB2F0D207F7595EB16 +:106340007B65CAE7AF100ECF1EC9C14F144FAF30E7 +:10635000FE60F8517486AF5F4A8957E177AD3ADA4B +:1063600000FB0D349B690F7DBED343DA70DF163915 +:1063700002F3144A6C1EC1CFA12A631FF0F3BB9C29 +:106380001E85753D9B3C543E0A228A05F6AF707807 +:10639000753361FD5701DFE3620304E6F59FBCEC52 +:1063A0009FE1F7C2A6747C31F2B9DE00BFFF93947F +:1063B0007817E02868B290AE943212C0D9E7B58859 +:1063C0004EE1D016F599F110D0FD52B2DAA6BF64B5 +:1063D00089D93DAABFCC544D96EE0FC80CDEBBEA5E +:1063E0008FFA6F0CC17301C44B25693261BE0A2A52 +:1063F0002612DD8796A5BF47A2E3C1CDBA045B0D87 +:1064000019BA87CE0C7C3F01E0E9F3921278AF6FA6 +:1064100093DA8AEB58E418F065C8C3F162D0FF0143 +:10642000BE3D0C86E78817E10A71BCF8E97A643250 +:1064300085630DD3FFF9311235E87B218E27811753 +:10644000656D9AC8C097CD246AD271A54ADF32958E +:10645000E1A758A2F30517A508D049D3D3B0197204 +:10646000BFD27EEAABD42FB8FFB01CB5888D0F0920 +:10647000E5C359593C95B65179B3D967C18FBE323E +:10648000866F6F513BB601AE1FC47B9B48628A6426 +:106490009377DFA40311BB5C2B2AD3D3A47A05BE68 +:1064A000B773D65F18AB013F8A8E7664A7461C7619 +:1064B0009E90AD8897EE648AFC6A0AAC9F403ED4F9 +:1064C0000CB6BED6211BAF833EAB66FBE8AD69C9F7 +:1064D000077BA56903C807C1BE47107F74CEE8B724 +:1064E0000DB68F15B340CF7BD0FE3D4CDB8FD03F38 +:1064F0004AE13ADE48206B17016F1D2ACE9F814783 +:1065000033AF25147F6D11D5007E5E2F937690B347 +:10651000B6C8D42662D397EBA412669FE466630BD9 +:106520005DFFFD5477543646D76F6D9448FA1CB022 +:10653000E2BB8EC8603752DE33C3C21E568EF4975C +:106540009649DC5F5A4016807D7C9FD4E46F1963C6 +:10655000FEDF260FEBCA94ACBFE41E17FB584FC8F2 +:10656000EBBE42D8A7A55E45F174B3A421DDC5FEFC +:1065700094C2DE62D49B9C6FD6EFFFA96EE793F5C1 +:106580000A75A7E68C843F636FC47BD40D8375D6F0 +:106590000F53B8EC767FC47BCCCE67E655885B4F53 +:1065A0007D09E430D0749B3591F6D77F7F19D3EB0A +:1065B000147EE0E751E116EBBBE03FD7FAEF36750A +:1065C000F780CA3CE635CAE340F7D8B42690436169 +:1065D000BF059E972DE92ECEE5FF66F84521860E74 +:1065E000789643D134F2C7F67A5041DF95FC39ED05 +:1065F000E5B9F8E11EE087A0831F2E5FF109F0C323 +:106600000F383F08FF42ECDF8DC7B6262FEAF15165 +:10661000F980BF7FFE74E0EF8DA4FFFFCE497F3E7F +:10662000BFE003B1CEC7869714A15F3191AF5B4E37 +:10663000D212E867C2FDA752F60A99547646023D87 +:106640006BC4F546084B2A5BA34F43FB40C1774A16 +:10665000F61AF044937E9AAE2B99E3A48F668EE1EE +:106660009FD36D9E16F0C959380A9B95D7866DF257 +:10667000126AA27DDB3E0235CE71EA5D65FB15D95B +:1066800079F284BF6944A376FF638737D54AA2D4E1 +:106690002FD8F2AE5944C777F85327884EF5AFFF8D +:1066A000F7668CF60393685C80FA7A4023B4FD5752 +:1066B000C9607AAE3E86F14388EBEF9D510FC9A3C6 +:1066C0007C1D2E515260F20F0ECB340620645744CD +:1066D00049F9D0378BA15F12E4B08979760DDF8359 +:1066E000F36EAF39AA3BE68FB0E7FD7CFEB3533CB7 +:1066F000E88F89F9CF4E1170F569A0FF89598DF0A7 +:1067000088F989B1FB7025D5DBEA3C85401CA50DD5 +:106710000FA07F47C5DAC2366AA11F43EA8B18DF94 +:106720009CC32FA3BC83FE96526D59A0AF697F0B0B +:10673000F24FDF083FCAE701BB49FD28E017E147F8 +:10674000897546A7BFE03B16C7DF4EE378B037E355 +:106750005553F2D27E4719896EA5F34F9212E3602A +:106760007EEF8AF6EBBB695FBAA263DA309DBF8326 +:106770006200ED9EE949B1F89FF2297DAF2F3E21DD +:1067800005F328E3CAC6031C7D26F35746836367D7 +:1067900092CCADB2F99B3B29DDC1AEEEAC99A3E53D +:1067A0007A2F1851E7568DA3F3C68C09FA18F1E732 +:1067B000E8F3B638E6FD2B297131ECCF3D3F218C53 +:1067C000EF3D94F8201F81D066F46F02C4260F15A8 +:1067D000D9E7B272E4ECF7AF5E17013C144D306BB1 +:1067E00025CAE727A85B10AFA7FDA0F908C8C13FDD +:1067F00079AE6F0851BE2FF2999B3C74FC775B2BEE +:106800001A7651BA155D4450199CF27C56DA02EFA3 +:10681000832DFE1421BFDE7ADB16AB86E11FFC9CC4 +:106820001DC974EA75AA007A9387B1FD9C87F99F08 +:106830009FF730BE0E50F6453FA59A3E67975B85A1 +:10684000F9B17E83BE67D78B119206FE52387F5115 +:106850003F74B9C7168F29BA3B1EABC97FCD468797 +:106860006B3C2C5F90917788C36C740868C727D9FC +:10687000FD9D3B932726BD3E05E01F9E04F0DFA94A +:106880000C231F592621C0573B926FE0EFBA398C79 +:10689000EBEA0ADB77E67DBE5FD12A64457E1AE823 +:1068A000A23F847A53E7FB5036E7933B0AA1BFEB44 +:1068B0001D90275D577E6FD76B6E7BB7C9E3B477AA +:1068C000818EDF21DC226F14E0F82727F7B175787D +:1068D0003C48ED6D2DC4A5C2EE6DE7F810EFE984DC +:1068E000AE4BE9004E3DE71F8443E6FC22F6E58609 +:1068F000A7D3E3F4C7CE95FF12EBDF09FE3F5D3F60 +:106900003C5DE8AF3304F41E59A49C1EB6E559F271 +:10691000EA281D6CEBF98D61473F584DE960E39F14 +:10692000FEF04DC8D7193D504DF500E220A52DB31E +:10693000F9F93BAA2F4CFE7729C40FFAB22FE4F1E4 +:1069400057011F443DD12914C64EE8D375E459556B +:10695000B5763FF716B5F1DB76F90DD5D0F96C7049 +:10696000EE003DF171D62F72AEDF5D34EAFA8F7919 +:10697000304F44DE043EF07336E829B90FF58C1B26 +:106980001EF1DEFF9112EFD9E1F65799C8DF1F0C17 +:106990004F1E334FD14BE5DD9EA700398ED600BD8B +:1069A000D28E782A2B7F27507E44FF5ED00B105763 +:1069B0002A03F85EB0FA8483AE211E177A495A7B07 +:1069C00016F4F80A96CF22AB08CB7B7079A276E753 +:1069D00038C0AFE82C4E0A4599DDB9179418FDBDB3 +:1069E000DF9B88B4837E2AA0BC9E0F76DF6A8DB3BE +:1069F00078B8A4C5C61F1199C947E6BD867518CFDA +:106A0000F593C4AF607E521309C1BA421F297A9F21 +:106A1000639D1ECE87816A06B780F75DBE4F37DC67 +:106A2000025E85DBCBA2E5AB904E997DB63AFD3F89 +:106A3000F1BCC8E75C26C7EFF5D8F21639ECA07FA9 +:106A400099CDAE5FA8FD73B72189C431EF189AA321 +:106A5000DF6093772FC7DB0CD5F4CAF346F2D985F4 +:106A6000DAC7D1D6ED2E72AE5B945DB728D7BAEEF9 +:106A7000BC6A5FB5BAEC0B80C7789E15047F26CE42 +:106A8000F4AFA2A7119F0A8FAF7593D155C4E93A0D +:106A90009FB3CB64F136514C0BFD0BCA4FE85FF44A +:106AA000494CFF527E85783B4458FE773C8FB75F58 +:106AB000E6F68F54051C796885C7DB5623FD01E493 +:106AC000FB9570AA531AFDDC439C779CF50CC424FB +:106AD000397B8E12F4A62C52817E9709737F8CF934 +:106AE0007AC79AEF5CEFBBD713E72E3BAB06E228E1 +:106AF000BF0A9D0FFFB8F2181CBF2226D6344BAB3D +:106B000000BD764C26160545EEAB4DC3BC997C46C0 +:106B1000195B87DA898776883CC6FCEC794DA0C67C +:106B2000E3C86778CB9C7977D26A49F6FCBDC87711 +:106B300028A128B343947EE007C38912CC035BF9F4 +:106B400008E31EE739911222697F1EFA85C46EF7A9 +:106B500014C2CE0BB2F6D4F9DE68FC3D62BD154E10 +:106B600038CFFBBD90629CB6C573A3BFE78CB7BEA0 +:106B700002089C373A9D9715507D747196DED44F6C +:106B8000ED067973D3FD98B7FD6220860FFC796C12 +:106B9000593C867E2BC5C72D4AA817F4AF3F3488D1 +:106BA000FEABDF70C66FB7C05FD07E13D45FC16A23 +:106BB000E7F8087F5696F8B9485A063C432A09F484 +:106BC000649E164AA3FEAC57DE1CB6C99BD8FFAD27 +:106BD00011CA7FE346C78F876806C4761A975F8914 +:106BE000F7051CEFF64931C817DC4A5543C71CFBB3 +:106BF000BC2ACEEBD63B19BD5C2FF472FB1B7B6924 +:106C0000FFAE487114E2B31D0527C9AB04F2B117FA +:106C1000EA9F581AF807BDA1AD5AA5C33FA1FDDCF4 +:106C2000FEC113F218FEC95D17A8A733EB1739D7B9 +:106C3000EF2E1A75FD9F02DF6CE3F9FA11FA5A0F75 +:106C4000A1BD9BC8FDD797B87E2F27E92D84D9B366 +:106C5000B866CF3FB49E3908F986F289C74B9EA526 +:106C6000EBE4932ECC375037B3EEA3B9E7CFFF3E1A +:106C70000F49E0F94194E73D84FF2CD6E3F9FDB7D5 +:106C8000B2F03C7203FDEB9E05C3122C46C3238F6A +:106C900097C257B1C2D88AF98F89F39F86F8E4E387 +:106CA000E63F32FC62087EB134BB1DEF353E193B36 +:106CB000FE472E4FD49EFE11F8C44D9FDE4FC88E66 +:106CC00087958C1D0F2BE761C7772FCF433DA19F81 +:106CD00094523E8A9FAF2FCF3B087A287CD26F40D8 +:106CE000DF6A6479036B1289C21969475DDC04BAF3 +:106CF0004C9212A5307FC32BFE12C81BF4CD6BBF84 +:106D000008EC7918F00D76A64AC40D2C7FB01DF260 +:106D10000715D9FCC1F6AA4F267FB0FD02E38231E8 +:106D2000F2070B94F3C81FC8E17BD16EF92F307FB7 +:106D30005034CEAC95A2D01B6C7C2E92CD1B7CB671 +:106D4000ABA791E50D08E6093EDFF5F8560BF20416 +:106D5000A5E623F0FC2F94C71A21BF5634998D570E +:106D600077D371F073351A5953BDBC1E8485D24553 +:106D70004BA8AF823F26CE3B68FC3F2CB9E27F2573 +:106D800047FCBF440EA11D7AD720986F1B0D8FDFE3 +:106D900080F3D729EC9C11DAED491DCF63EF4A4609 +:106DA000B0D5D632BF7B67D2C4F16E124FC07A9A8B +:106DB000C1CE19FBF9B977A74ADAA03DCAF30ECFC5 +:106DC000294C6EB22D8BFF0FBD3CE1AAB5005728B0 +:106DD0001005D48C06D7FDC9EA28ACDF938C466138 +:106DE000DD9DD28001C982DBBAEAB76A2574BFB2E1 +:106DF000510278EEE9BA646BD3423C47437D251BD0 +:106E0000B3A38A4DCFDDCED79FD8D4837EED4493F4 +:106E10008E8F83F749FB400EB9FD6AF6793C87995E +:106E2000A8B3E7EF96D8BEDCCF77F1E7771F7C8178 +:106E300018D4BF0B4712887FB5633EBEB7FBA05F77 +:106E400082DFB77BC941C87FF66E24D17D74DFA590 +:106E50001D3508E7EE834F90CA30D80D26EFC132BA +:106E600046675F471DBEBFDD9F89CB785D003B470E +:106E7000A592DA0AF4F5EA532BA1DFCFDFF75751D9 +:106E800096A67E098D76DD79C87E9003A5CA3AC2A2 +:106E9000FC7B162F7D03E602BDB091F917A5F52105 +:106EA00013CE4B4A17153782F350DA3403F3E5A5B6 +:106EB000D5A1D5D8D617AFC1F1FAEA2F30E782F9BC +:106EC000877FA754201E4AEB3F75238C775D1AEB12 +:106ED0006DA2EB164C72E565EB631E804BC40FDBB5 +:106EE000CDCA7C3286FE44CB25F41ECA5F007C21CD +:106EF0005BBFD0D59FE87ABED2353EC3353EC7D101 +:106F0000EFE07826552AB333FA44F4C7FB78DE99CC +:106F10009C99C8E0E7F53707F3FE4E7B35C45A7BF2 +:106F20009E6D27EC6B0CFDF57348EC507A9452770C +:106F30003F031FFC470B64E1A944BC4500BFA017F9 +:106F40004C8F4D2F548DD00B963D0EA77AE138D043 +:106F5000FBE3EA851EAE0F76F0FA0CF7783749BCF2 +:106F6000867A20A2590C0EA10FA26D20979AB7AB7A +:106F7000515988FA00F3A29423B69A74FD80879140 +:106F8000E80DE52F1B41DF1D7A79DA84E11A8C19AF +:106F900051BE7AA8BC803C405B118678646EB4CA4E +:106FA000E697EA0691C00FD00C7D0EE6C6F8EF1A00 +:106FB0009537784EE45DCF49B792E38C6EB405BA4D +:106FC000A95C1FDC790EBAF552BC40B196E8FB23F0 +:106FD00001D3989DF597FC65C58D469E6DDCCBE889 +:106FE000EC375C742694AEB31CF42566E5E8F4A592 +:106FF00078CA073C15A7A93EC9712EA1764C477DDA +:10700000A2507C41AB4728BF846C7AA348DF0B7643 +:10701000BBB8D55CF86BA8FF289A847EE8455E5E15 +:107020000738ECD417625EAA372EF2D2719F9E32D7 +:10703000991BC0F22A140E6216619D5ACA0F71493B +:107040004D1F49CC027CF41109CE5974EAA901DF25 +:10705000811E9C9BDD97CAF59E473305DF265CF9B0 +:10706000EC59DE1C7CEBB63302BE355EA6F7440B52 +:10707000F9EEE131E827F2DD029F81EAA894CB0F17 +:107080001176E71E6ECF7625EBD11EDDF3F40BA44F +:1070900082EE7331C75BB8EC08013C87956805F058 +:1070A000BDD5F5DD46B047F7F8D97BE27931EFE79A +:1070B000BCACDE265C46E99363DDCBBDCC9E8CE3A5 +:1070C000FCE41E6FE5E34AB3CACE9D9A7B993E2F3E +:1070D000A3FC02F99B28B373E4CC887C602BD0D14D +:1070E0004BDAD30F5564F5BFD8DF3D4F7F8380BCAB +:1070F000F9A9FD817A8C04C767761F7CBCAA8FAC86 +:10710000E6CF35D0DFD772BA0A7E1676EB7CF97AF5 +:10711000BD5767FBD1DA51BFD1169FFFAE6C6EF041 +:10712000E2BC16CB23C637C4314FA5F1BA532DCFDD +:107130000AC23E8F8DD8E76D7C9F58C7A746449DF5 +:107140009735CA795ABC01CFD38A48742B417FF84E +:10715000ABC07FBEF828E76986F33CADD7759E7655 +:10716000A171C8F9FAC3171A678CE10F7FC37B1EA0 +:10717000FE70D7EAFBD226F918FEF0C5E63B1EF0FA +:1071800087ADB3CC1F9E663E02FDD0BDBF6D84F3BC +:10719000E3A2B9DC1E58FFDE08FC5FB480D983EFA0 +:1071A00075FF11FDDF1A9FF930D0EF4F7F6E71C16F +:1071B000798127ED78FACF9F5B5C705EE039C6FF7E +:1071C000A40FF4A3CA557957C1BA739D5BA8AA0D41 +:1071D0006E35C2F4ACB2220E156623E4C50DB77746 +:1071E00002CBB777155CA1E37B2E797B93CBB13BC8 +:1071F000EFFEA79A3F473EFF61860766771E8645EA +:10720000C67FF2FB7904F870BC6DBD0B3C8FA07A91 +:1072100008E176D799FE57E53126A8997CC2043556 +:10722000473EE193CA634C5533F993A96A8EFC89B2 +:107230003B8F11AA88C6D1FF2EF1E0F9B2EC4F1CAA +:1072400096A9BC6C8BAC33AC8A6C7D9D98FF3A756B +:1072500032CEDF15513D9047ED3ABC6402C4133D78 +:10726000DEF618CCD359E0D1F7558C84B75965F6C2 +:107270005BEE08CE7D688CBC98AC323BDCA53F8DC4 +:1072800070056B8B0AA06EB6F3E05F1E86BA4B25C5 +:10729000525C01FECF4D2AAFA3A548FC952DBFBA85 +:1072A0000D1C1B803F44529604EBE5E17AE782AF68 +:1072B0009EE34DEEF0CF7D688CBCEC9F1A3E81C7FB +:1072C000A5AA81CFCB1D215C5FE055063900FB509C +:1072D000A3A4A16ED73BEC433F448E7AB08E37A374 +:1072E0000F6A3C584F45E5A00DF88DBCEE94539FB6 +:1072F0001E4FC35FE7AAEC9C50F6B7A37E14F57946 +:10730000A1848276299860F649EC57D8F1A0D7225B +:10731000F0BC1652B08E57E57C11F2468F00BF8448 +:107320001AA65602BF0C703CF69A745F342EEEE536 +:10733000FBE883F3CE50761D1AF07D7D551D9477C2 +:1073400056CE81FCF337F97B34684539D7000F738B +:10735000A16E6877BA9CC2BF45E5E7FD95A412F817 +:10736000F6D6865B9782BFAB19962FD7B9FF68E731 +:10737000D872033BC726B5CC1E9048DD39EA82B6E9 +:1073800030BEE07410F8576A581DB517EA4729BC9B +:10739000B2C9EAD6051D32FE7B84E13773DFE8A46B +:1073A000537FC9A138ABAF25CAF655927DFF79C886 +:1073B0000762FF7B555E7FF15FB4FFAFA94C2F934F +:1073C00043D3BFBE0AEEC7989E289EED5751FEB626 +:1073D000C5CF32F0CF5CA897DE4226D1F90FFC175B +:1073E000D32D03378D1A208F6770BC43E5B4FD5C45 +:1073F000CC803AEFD9D9783DB099C5EB17713A1BDB +:10740000355BB14E1CCFFBE8FE0B372B04E23B3A59 +:107410008EF416EF5F64A98EF3BF5093B35FC8EF8D +:10742000719513DBEF749E425177EFFA5DD4B5A8E6 +:107430002E3D2C5A775DCC69D559A773BE7531B7EF +:1074400010F34DD41B9C5F3B2B59BDDD48BC327DF6 +:10745000506CB0FB1AE29E86BA8844D3B8BF84252C +:10746000E139133B2F853499FD3ECFBF65E4FC3DE8 +:10747000ACF357C930D603BAE921E8D05B4D78FDAB +:10748000A2192AA1E3056C98F4C27FE83A8112AAF6 +:1074900047299E0A789D3E11F8968884753C8B9CFE +:1074A000F7E4548EFF429EB708B8F0AD723AA8AE2A +:1074B000DF27F9F839DF05DEB38BF8383DC224EC5D +:1074C000B867A7E7AE47CCDCAF13F1D305AE37D52D +:1074D000C7E52D44D79BFC31D673D1E1524E87EDE1 +:1074E00086A00369063A44381DB6D7313A6825CCE0 +:1074F0009E45041D120C7F1AFD1FD06142AB930EF6 +:107500001AB1F5C7C0BBCCF9FE1D1A37FAD02F351A +:10751000F0DE09591BC47C9396E197270FAA1496B5 +:107520001D6524EAA37CF730FC87EE67E7170F633D +:107530004A7362E5DD1A3B5F27F89ECAF3543B228B +:107540002D63E643FB93ECFEE29D707F71DAE8CF9A +:1075500085D54402F2C6256B8F98E00794B71B735C +:1075600040E523E7D2F5C6F1F33CCB2789B8D871C3 +:10757000BE5E3687E1B1A781A4B6D247C66D66F676 +:10758000A4077400C42F1504E3327DB392F6C27DC4 +:107590009D9A4BFF19FD61C522E0CF8E4B38F1ABB0 +:1075A000B7FFB85582713B3E65C8E79DB90EE963E8 +:1075B000DA9E1FE39CFE7CDBAF513CBD66CB5B6E6D +:1075C0008F32B8DF3708D60B6B7534EA843C449DA4 +:1075D0005E0C7A52AB8B86B01D6E88B17E7C078CB8 +:1075E000EF01BA817E58CBF46A9EE171DD5374E2FB +:1075F0004DE0371FFE42F7910F78B1E503F3DDFA56 +:10760000D4850F77FF3F8B873B010F36FB05195160 +:10761000F08FCA8FC9C47E2FCDDD967FA09034B580 +:107620009B3BB4741AF8873E8BFEB7B688DD4F0DCE +:1076300029A96FAC037F29A2D75A24FBDEDFF89873 +:107640005FAD1AEC3E2D510C6979D83ECEEE33BEBB +:10765000A39AFB417E96C8DFD7200FB7D39BC67C89 +:10766000CACE5AE42D126A53D9FBA17B1D7A22E6B9 +:10767000F33AEA57337A2242863DB63859E8F99F01 +:10768000A8891FF96CE7636A44E4C1599E50E49FDE +:10769000DDFB3F40F106F9BE549244C1FE3FCEF3FC +:1076A000E083703E3605EC6BC004FE30867583A027 +:1076B000BD35AA583F5A05FDEFF3F3B36F250D7E94 +:1076C0009E568DEDAE6494E7D5EBB1DFCBCFD57A86 +:1076D00092316CF724E3F8FBFDC956ECF72713D879 +:1076E000DE9D6CC3DFFB92EDD8FF5EB203FBFB9324 +:1076F00016B6DF49F662FB50B20FC7F725FBB1FFA4 +:10770000683285ED40723FB63F480E606B0CC76231 +:1077100012C0FB3ACBC75558749F76BE5EEBC77C50 +:10772000B9C17F7BE6E50901C883EDB55AC6CC8FA8 +:107730002F38E1AC379A77C4596F346BC079CFF7E3 +:10774000A28E898EE7F3EB2B1DE3E1E80CC778B03E +:107750007A8EA3EF373EE578DE176974F4CBDB3F12 +:10776000EB78BEB4ADC5D12F495CED787E5CEC06FC +:10777000C778817993637CE6FE5B1DFDE9A92F3B09 +:107780009E9F7D80C5FF07E6747E89505EF6F5CA30 +:107790005D5A39753F82D6647016FA4BF52EC80FC4 +:1077A0001BC3543B502551314CAAE0BC8E8633E8B4 +:1077B000DF78BB2CF4DFE9F80CF89D8ED7C073742A +:1077C0001CE944C7DFE1E353F9F86C6815781FE260 +:1077D000802E76BE570F87AB90E7CF63FA5B3EC92A +:1077E000E2844C3EE2C31179D3320DF21CC33D3822 +:1077F000BF88CFEA8389F6780E7AD769DC6E680A8B +:10780000CE53C1E52E737E1661E78924AA607C51B0 +:10781000C1EB45C4FB6A1749FB6783BCB2FA6AB87F +:107820006EF9117D665A3FABBF16F89CD2E7EC4F5C +:10783000EE75F6E71E76F66BD3CE7EFD2879F42B37 +:1078400039FCBDC9D402A8BF85BC8C69ABB3D228B2 +:107850007D74F4AFD9FD1EA157342AEF70BE43EA00 +:10786000D83D6383E34F1B36A6C2F3AAC5EAE034D2 +:10787000AA07F039518F7E72E961292FEBEFF90DDC +:10788000BAAE8D6FD46A67BDBB66303DE5AF71EEB1 +:10789000C7ED5FB5681FAFEE7C34FF6B845EFDF013 +:1078A00023AC23F3E91C011FD2F1F9581FC2EA905F +:1078B000CB9538C4DFD13A62EEA56D99929636D950 +:1078C000F0DDA6B1BC43A9DFC0B684EC6E6075A440 +:1078D0008912B8177F1F3F7F38FBF2D71B7C908738 +:1078E0005867D462AD3D7FFF6E4EA723110FF2554E +:1078F000384EB0BE452D39663640DC530767FE4032 +:107900000F03EB5BE84F16C0F6F4A40099483B5F09 +:107910007AC187CF1F9AC4EE3DDF5AA03ACE3D8B85 +:107920003EFC5214F8DB7BD11D11B0036F24C99CBF +:10793000B553E07E9C86ED9B491DDBB793116C7FB0 +:107940005FBEEE22D07FBE647B04DEF39933A35585 +:10795000F6FBA1C49469AC91E96F3B381DCFFFC31E +:10796000B123781EE73BE437711FBABACF6F83A308 +:10797000CB9B28590DC05FA5629CB2DBDFD7007698 +:10798000DAFA02A9FD369D755BA0BDBA80AEB7AD2F +:10799000925CBF2C073F6F14F24834592DC6780211 +:1079A000FF44637D0D79E013AF2551B846EEEDA697 +:1079B0006A00FAF3F40198B74CA3EBD075CBD6EA82 +:1079C00046A701CFB37BD1825E5E3F893F1282E73B +:1079D000185D237E96AF2989F74940C7CEC7D839AD +:1079E000DA332F5FA9837D78B7A80AEDC35B8FFBDD +:1079F0004CC823BD55C8EE85BFF5F8821F831EFB1A +:107A00005DF270A1FDBEC95B3FF8C57C2F25D85B38 +:107A10008FFE62BE824C9572DC7FDCF8D1D07CC8D0 +:107A2000D3588DA41AEAD56FD155AC57BF056482DF +:107A3000ED0BFDD0FB8AD51E98BF7882E72E6863D8 +:107A400001568F20EA3609D74BC53FF362FD44E764 +:107A50004F03384F87327008F1D144E343DADC3A00 +:107A6000C5E80CD1FEAD157A944A00E92CB07C93A0 +:107A7000800E2FFBD8F86544C6F1123A4E5154A03F +:107A80000DE1BD13DF33291206BA4914BF40C78583 +:107A90002CDE14F983B315A4BA02F4F4E28118C001 +:107AA0007D26EC21FB2438A7E95B0CEBEFA4F12A3F +:107AB000CCA7BFD17E31C407B7CBEDBB57D12D2C9E +:107AC0000F54E23EB6BC7CFB34C0B338AF19CD6F67 +:107AD00011ED53DC6F793AA9617B20A947ABA8DC93 +:107AE000A79311ECDF9334B00F7536D0DF998C6219 +:107AF000BB88DFC7A77C2C81DC2FD2997EBBA44832 +:107B000041FFBFD4F0982AD497F0FAD2F15C0F5C11 +:107B10001261DFB1D9CDCF694B4FFE04FDFD45EFBA +:107B200051FFD3A6BFC62B441B5788F58A563ED6B5 +:107B300089D2F16A0EB79CD53742BF8CDFE07C7FDB +:107B4000B77700E32AEB32462FF7FC613E7F2175C1 +:107B50005FE51CF38763CEE7FB0C8FE5BDF8C2FD44 +:107B6000EA6FBAE28BFB36522C517EBA8FD7717E08 +:107B700073E3FCFC1B6CF4D9E3F2C3F76C9A9F0F20 +:107B8000E7ACF76D22869E6F9B87BFBF2779B8B899 +:107B9000694A966FCBDBD9F9BD78AECC22D7C76DD9 +:107BA0007ABEAF5D89EDC3783281F737BA41C7E35A +:107BB00065D5D94D6619CE8BFD09FECB9BA00EADC8 +:107BC000643393DF466DF741300561AA1F8294CE7E +:107BD00025757D12D60D703D8F768FE2ED1FCCC2DC +:107BE000261DF05E4706002CB5CE34B6C039FF9195 +:107BF000C951C89F7DA661CE41FCDED03C311EED4F +:107C0000FC21E46106A741E5034969896A3F65965D +:107C1000A7240FC25D12E9931A697BFFD37F5041FD +:107C20003F76FD41D5401E4B9E7C558573C12E6924 +:107C30005885F3F498FFA126A823A1FA713AD47FBE +:107C4000C5B6CFEE56A8DDBA2F2FF137ECF2D843E8 +:107C50004DCFD0E0BFD837FC4D78BED14FAC18DD4A +:107C6000EF53DEE16BC0DF6A22A92EEDCF70BC14AA +:107C7000EAEE3E4DE7EB5D44C7C137C173C86F758F +:107C8000017E9E2A60FDD8F607BA2CDA5FEC67E722 +:107C9000D22494A880F83ED3D769DF16CF647E57EC +:107CA000D8EF4463ADD8D7C6437FF87129C5CBCD93 +:107CB0004F4A03909F2C7972B704FB2B39B01BEB12 +:107CC0000E0E240FEB5D82CE02DF54E417423D0F0F +:107CD000E03725A52A250C65F0FEB952D87F10F2B1 +:107CE0005B6D5F200688CB0F034CEF2F1CA6F3D8EB +:107CF000F87AA1C2EE3BBBEF33E3A771804EBBD84D +:107D0000F953C9DA6115CE6B0ED45BC1D9F4F7F51E +:107D1000ABABE66CA1F42CE7F376102BD8047E9184 +:107D2000AEEA206FA2AEE64D11EFF2BA9A0DFC62F8 +:107D300095772BE3CB6EFF4031C079E66FBD85F6BA +:107D4000F38DEE82816229C7EF54AEF1778BFE0E80 +:107D5000701DD0AD82423ACFCD07764F02837E337D +:107D6000E9BBEECB00F773320138FEF9E0C2FC4FFD +:107D7000D3FE46DA0753F5A072E452C0F3838315AD +:107D800003A0B72D3FCB8FDD3C48F92904F113D573 +:107D900068D4273E60F6CD54281F3C1558B5C47FE3 +:107DA00009214F549ABA87D2FEC5C0BA6E0DFAAAFD +:107DB0003E1DFCF617031BBB81EFD65FE6E172B4F4 +:107DC000F159B30AE0607264F91FEF82F3EABA5620 +:107DD0000DFDF2624F3C06F734C8510FEA7D608911 +:107DE0004514FF7241179EF7FEBF6E0FD63BC2715E +:107DF00037DC73AC53C86185B6F7A9267E1FC2EA8B +:107E000051F03DFA7BAFB710E8143D047686F432AA +:107E10003D37EF491FD6DFD5B59B5FC47C89BE08CF +:107E2000FDEA4924F307EBB22F224C5F2FD04983A0 +:107E3000429F9BCDED605DEB15EBE1BDC9AB57FCFF +:107E4000A349C7EB25F67D2BF202B3535D05DF197D +:107E5000D068BF2E5FD121C735E837671A40A75FCA +:107E6000046A814E8305511DE916560AC16E750DCF +:107E70007B2C1F95D7C74F6CF8DD2570CE345E3351 +:107E8000200890E97373E05C05F407CAD7DB4D2640 +:107E9000E83535B109E4F3E5ED6F77690B11EF9340 +:107EA000358AF793FEB7313E1ADC6296EAB6FE8257 +:107EB0007FA7DA1AEBC6DE46F9540AEE5E0FF24EE1 +:107EC000C79F8138E58942A1DFD8785DA5E8537F57 +:107ED0009DFA5FF2162EDF70C04AF57F9DEDF92600 +:107EE0002AFFDE4636FE045DCFC2BC2BE5F542D844 +:107EF000278DA3C03E4F5752B04FA019DC67B8542E +:107F00005EF5B959F477DF1496CF0B1430BD1C28F9 +:107F10003030DF3BE867F520679E0FA5005F818268 +:107F2000F63E1F8C975711C84306536C1E6881FE9E +:107F3000417E0F44D29761DCE3AF76DEE3F7B9EE22 +:107F4000ED2BFC5EACE2FAFD5B15E6C172FA7EC772 +:107F5000F032D427C7FC3C1E2867E71BB7C7ADA586 +:107F600090F7987166A011DCA09A0F8E3C0DED6C15 +:107F7000F24E23A8CFA8567008DA537EC6B473F425 +:107F8000DAC5B0B54F2F4A75623ACA182E017D3650 +:107F90004FA67DBA4EFEA20119D699706DD505D6B1 +:107FA0005FA4B11E6557C883DF6DEA0C3DAAAFB66A +:107FB000BD3F1810E7934CBF78B9DFD141FA1A548E +:107FC000D43FFCBE13D7375E9E7857F8F7D2143DE6 +:107FD000AA5B54DF3684EB589D5C809F9F1E5C78C3 +:107FE00039C4092AE809FAFC1E3F3B0F3853420600 +:107FF000F619703E6A12D0C7A22E75335F57E88B10 +:108000009EA446CC69843CF6F9A98D6436632FBCE6 +:10801000BF901E923EA2C1F3DD93C477D2CEA8E0FA +:10802000F73EF6F9E24688037F14F340D84DF59207 +:10803000F9CB5290EF235ED45BF71438EDF6837CD6 +:10804000DF67FC4CDF52BB7D3DC415DBE8FA29BA83 +:10805000BEFA4190A4A87FD9C9F7E34BAC453EF3E3 +:10806000519B67205F582CDEA6303F06716B9987C5 +:10807000DADA2C1FA91FE4E1FB67FC6C1D714E3F8F +:108080005AFDC8E381D1BE0B1843BA6CCED0859D92 +:10809000573CD168FE92A09EF07A729D63CFE0F3C8 +:1080A000A91F480887F87D76C04078542581F7DC01 +:1080B000D50F141C17FB15CF65C7D93EDED6D9BD29 +:1080C0002B35C2E4553D20A3DF4922CA19FBBDA6CA +:1080D00020C41193B37226EE5B8DDC47F408C6FD15 +:1080E000554CCF8E94430BFD9FCD617302D8239FD7 +:1080F000E11C77D73F65E0FE609C631F42BEB2FB88 +:1081000029C671B027A00F6E56C837203FB091D74F +:10811000A56C94293F51F877BE371087F5DF1671AB +:10812000CF93ECFB261B07F7F2FA18C3112FDD7C67 +:108130006013E60DDED3DB4AC08F08763CBC00EE50 +:108140005F9D7D757505F6F9FDFCDD7ED2FA680848 +:10815000E547C1EFEA10A6CF4235C63EF033FFAF88 +:10816000C6F82D064203F515613322B11C80A950D3 +:10817000DC778D17FAF4A12EB0AFF7A9597D0BF576 +:10818000CBF70558FFAB8187BABA6AC0EEB3E76395 +:10819000DB1776837FD5ED17FDBA6E6B11BC1F3DE3 +:1081A0000471A8F5B8CF00FB4FDF37D11FB8BA1A5A +:1081B000E3BBAE0A3211F6FF4C818AFE4BD763BE99 +:1081C0007D10D753BF72B1DFB6FFB70A8E4F0239A9 +:1081D000CC319FE598AFFCC2E6A3EB0F7A2ECE8E92 +:1081E0003F5330FF90CCDEC3FB356F15A869A87BE9 +:1081F0007DEB2A0DCF17F6789D722EDABFE67E55FD +:108200004F5247F9CEF00BC835D2A39DC9731993CD +:10821000675FA4D021CF59FE2A25295B5D4431D860 +:1082200079873C4DC2F1339C7E3D49E33CD7AB1C82 +:1082300065BD99E7586FB6633DD0C8997B97639C3D +:1082400063B8EF79B9F5A368857E0C04D8FC97482C +:10825000894703B4BD6978E0522C0395F4F15BE8DB +:108260002357F0FCC4C2EF6FE904F6BC458DFF163E +:10827000E20EA88702B998A1C64B03B6FE2DAF87C0 +:108280002C0FE5839BC19FA1F4DDF906BB9F2BE476 +:108290002AA0C5D3A54656AE72E841863F9E870008 +:1082A0007D0FFD078F783D5B72E8C32C3E9D7ACE33 +:1082B0001AA11F98BEFBD3AD273BE837723D15C707 +:1082C000B3F62CC1EEFFBAECE2E61213EB676CF2E8 +:1082D0006E82BCC3F50FEE7F59A01FEE11E3D65F8F +:1082E0007583BFF5849A1D07FFACD8977D1FBE8BA1 +:1082F000704F403CBFBDBBA92CC7F341D7F395E2FB +:10830000F97BF179373C42FF401FFC3FE5DF7D19E7 +:10831000FF10E0DBED71CD5728E6FB5F08AFF0FB07 +:10832000376CFFDEB35615F0655F03D8F13334EEDA +:1083300082FB3B0F2AD140D4E6BF6CE0FCA97EE073 +:1083400077E0398BDF10FE4E224E7A6E7E79E9841B +:10835000B1CE7B7FC3FD00D1BF31B1F952787E032E +:10836000CFCFB5D1C801E66FDB233BE4F67FE0FD5C +:10837000EF02EFF451FC991A26DFFFEDE02D19050D +:10838000DEB2FFAFF02ED1DB0F7A29BC4B0C09EF28 +:10839000AB2EA1637E2AA34B69ABD17609757C43D2 +:1083A000E8B7A4508F411FF21D4BFFF82FC73E4383 +:1083B000F5F77E7E4F64DA039B8F5E46E7198ACD20 +:1083C0009D8BE7048A396B398D137E1864E7D0D30F +:1083D000B83FEC86FB8741E6FF1C8D2DDE08FAF5E1 +:1083E000FD78106B3F8E79A23FAF833C588B8CFE9B +:1083F000A2FBBDA34982DF93BE335880F31F8BCB12 +:10840000A8AFDF8F4D49C9D2E8782231D9F53DE6D2 +:1084100080B32EA0CAF0D8EB608E12E3CE3AF0679C +:108420009A73C3F16692D5891C8B2F1FF33CE8B772 +:10843000FCB937783DC94D0332E67F37C465CCF7C8 +:10844000BAD775BFBFC19B2E1EAB6E78E380EC38E8 +:108450001F3D173C770459BE7BFD7EE77B5F4C05D3 +:108460005D75178CEE453C2F463131837DC7D7F0C3 +:1084700042BCDA72927D2FF997F0D342BCB7FAA3CF +:10848000207DBE2556CBBE8F2BBED34BFD6198649D +:10849000ED5DD3D1EF25AB96E3F3FF10941C750689 +:1084A000193AF173B1FDFC7BB71356595EFBF765C2 +:1084B000D590477C17BC1CE01954CD997F4BE73F02 +:1084C000FA791FDEFBF42D6FDE19A6FC736C658153 +:1084D00064BFFFFA225F6FFE2A76FE327822EEF545 +:1084E000D8E4F32C1FA7EF5F3B9C037FC7F9F8CAC2 +:1084F00084C4EB2ECC72FB77A721F0B38F8F9053FF +:10850000083AE6811FC5F2CFEEF1D7B83CB4AE18F9 +:10851000FB7DB26A1C4F329A53EDDF9375E3EF4B4C +:10852000C1C4EF82B43D2E251EB80DF8B841433EBC +:10853000268A311BE01678A072DF0B9FE01674BA12 +:10854000BCB406E924E011EB41AA0CF22B7526CB52 +:10855000BB15F2BAE605BBFCA92D18F7F1EF852B88 +:1085600014AE30AEFF6FC00FA3AD2FE62D52485AA8 +:10857000A5F3AEF5A4DAC12F74EF433C37F487C5F9 +:108580009F03F8068F7AF4AD1523F79FE11BAE9792 +:10859000A6F63BF9A694F34D11BF8748FDAFF256FE +:1085A000DBFBE3437E1CBF507EFA19F84DB49D7A85 +:1085B0006FC26BD075AF5058BE04E6B77FE7E910C5 +:1085C000C7675E887038ACC00CF0337FC9F4CBFE4F +:1085D0007D3795E792DBA35C6F3C13AC76C4A1CBEF +:1085E00063B5CF16D501BFED8E421E64F0E8A7F04B +:1085F000FD957CFD41D5BA09E873F46A5F01E40D8D +:10860000CE771F2017603F6A381FEEF5C4978C079E +:10861000FA3D4A2E01385FE5F29ED14F9CEFF7AB51 +:10862000894E7F9490865D653DBD1ACA2FFA7BAB5B +:1086300077193D90C7255D8C8E5357BCB319CEDF9B +:108640000655967F7F7E7B18EB27281F3AEC4DD18D +:108650008AB349C8A7AEF118EBD8C77698DEE926E9 +:108660008925A17959FD3342DF742D17DFFD9E9ACC +:10867000EBBBF0E27BC7824FF6A75AF2D7D8F0FEE9 +:10868000D590EAC0F371AEBF87F8BF67207E5F71F7 +:1086900082D55FD17D60BEE8C54BCAF7C23E8ADA9B +:1086A000CE26F5D9300FE3B7F753958FC37EC5FEBD +:1086B000C53EE9BEA67E8F3E7F65AB530F0B395A90 +:1086C000D91C74FECEDFAF96CDF5189F7C8EC5DD2C +:1086D00062BEA218C5D76CD8577C6BB8228B678155 +:1086E000CF1B7C148F9309BB084AE1ADFE5A09DE0B +:1086F000AB1BDF397C1BC483EF85E2F98536BDD423 +:108700001172EA676177E139B0472D8AE1CD65974B +:1087100096C7E49C70AFC94BB4931C716A46CE5D9A +:108720007650F7F479E1F956D28EEDF5C4BC04DA4F +:10873000939C1EE2FD93241D5E00FE424CC6FCE5A8 +:10874000C9F6E5782EB8CA3B109E43DBBB434CEE1E +:108750005EDA2C635EF40DBE0FF77AD76E90AD2B08 +:1087600029BFAD4A31BBBC6A03CB7B5DDBEEDCCFFE +:1087700010658FFA42C073FBD1CB60DDBF92F977F1 +:10878000AF99BF702A55580B757F43807B909B969D +:10879000A0F8BE077E073DC1FE4A5E88AD7916F29D +:1087A000C6DF0DB1387F28B6E65208ED6FEC274FD3 +:1087B0000D1BE0178D6DC71377C80E7B3DF55EE787 +:1087C00077B5E7B74AECFBEB4ABAFC3A9B1EF2E6F8 +:1087D0000771BD2B56B071F7BC4A7E88C1F347B90B +:1087E0002D97DF36319FE173657FEEF727E687D956 +:1087F000F89EDC766C4D5E90DB8901B4DF2B5B73F9 +:10880000CFD31566F6EEE4C6DF5C0BF9AF631EE767 +:10881000BDE4DBC30C8EABC22CFF39B4EFCB3D25DE +:10882000408F9B251DEE0BDC30CE980AFC72CD8666 +:108830005ACCDBB784193FAF0FC67F1EA2ED8D7BEC +:1088400056F7C079C384231E1DFCD6FDAE7BCFA294 +:108850007D3EC4E6177683DAABD7C15E15C1779B40 +:10886000F17BD9A9E855619CDACA2F04BA33BD6BF4 +:10887000ED0BE840F7A166EE9F5AB31CFEE9AB2E64 +:10888000F972D3F3C67E973FE6E2D753248A7EB3CC +:10889000D51CD4B10EECC37FF9F902F0C3D78D8B90 +:1088A000DAEB4E859F3AA432BF7AE8F864ACBB1885 +:1088B0008DAF46F5579B59FBA7F657879A199F9F8F +:1088C000BA636EF8861CEF05C315E7E5AF9EBA6381 +:1088D0006C7939C5F7759AEB71C14FE02FDBEB0866 +:1088E0008A385F897EEB5AE7BA57AC72AE2BE4E464 +:1088F00058BC3300FE062151F47F84FF4ABAE6E6F5 +:10890000FCF74DB2FA6F0BF30B393C20F737D4303C +:10891000750171E072D01D949E5338FF1E8DCD0DF0 +:10892000033FBBF733E43983F4B7BEC5CE39A7F4B0 +:10893000AF7EBAC418C97FB5E1DC7EF785F29FD05F +:10894000EBEE7932FCD6FC31E3A24F98CF46A74339 +:10895000EABCF84CE8816B9401EFC21AA65FBE48EE +:10896000DB9FC1C7DAC08F0A19D85EC3CFCD28F10B +:10897000E6C3BDEAA17D01FC6E83B5239C9A4259F2 +:10898000FA58CBCCA976786EE17C774DFFB267C1FF +:10899000BD3FE689DF857ED75FB0F3F8974F3CDABD +:1089A0000DFD5F537D2519C06F6BB0FFFE0903FFFE +:1089B000DD830D61160FAF5CB1DA6B9FD7CDBF2B96 +:1089C0005DFC7B1CE09D67F3BF943375A097C53EAB +:1089D000414F96D075566ED8BD10D6B9B1FFA0776D +:1089E0003AFDFDBA30DBEFF561F6FE2AE1F76A7475 +:1089F000BF94FF5F02BE85FDFEA5C4EC9F32ECB5BF +:108A0000DFC3BDAEFD374B72E9F507387FF672BDA7 +:108A1000BE3E98280ECFCBEAD7092B2AE6835F53B8 +:108A20000C31840DEE091C0ED517FD0EF373D83EE4 +:108A30003278BC99E1F1A5132DDDE3EB46C7E35F86 +:108A4000BBE4FF7CF1786C5F00E327EBCF187DB3CC +:108A5000FE6D796AABCD4F2B0E33FE00FF16FC4442 +:108A6000C1072F6DFACDB509168F75B178EC4C1D85 +:108A7000E0EB913C7E5E68188E7F07EA57E1DCDF11 +:108A80004B7A91CBD5B9E4E7EA9B7E8AF1C28B376A +:108A9000FD63399C138BF746938FAB791E67FFAD4F +:108AA000BEB67D39D67D87D36D849E204EBFE7C686 +:108AB00015AB7B00055B83797F06FB1DD59F5BC1F2 +:108AC000E2A2AC3F970A43DDC3739C3E2F823F571F +:108AD00033863FD746FDB9D9367FAE4DC6FB256EEE +:108AE0007FEE7912FFF37975D93CCF0B6B593EEAD3 +:108AF00054F34C0FE8CBE757DC8376E975BEEE10F4 +:108B0000D7EBCFAF70DA8D975C7C33429F9E70D6E7 +:108B1000E98F667F5EBF40FB43FDFD72D083CFEFE0 +:108B20005D752DC6D97B03785FD24D9F437932F3B3 +:108B3000EB804F6D7A68508DBE3558047C5A82DFC9 +:108B4000BB77F3E75033B36BFB5B826DE0CFEDE7B0 +:108B5000EFBFD658BD0FF003F113C0FF629EE48C47 +:108B6000AFB9FDBA065560964EC25E913C0DF779DD +:108B700063FFAB18375FC7CF4DF10F8547DF518AD1 +:108B8000F5782F79B81EF94E18EBA9C47A625F8187 +:108B90003C27BEBE9872E2EB5C76EC8514AB971076 +:108BA000EBAEDB53C1F254BCBF6A33EB0BBBB63F39 +:108BB000C5EAA4DFEFC8C7FD537E99F518ED9FEE17 +:108BC0009839C75E577D4E3B97F27C22760EF03384 +:108BD000969D5B9AC7E28D73D9B9D384C4901E1F4A +:108BE000AEB96B21DDDF2B5F1E87F7B64FF7337E03 +:108BF000ADE7F47E451D9E6587EF34DFEF494EE714 +:108C0000D319FC26F2ECDF17B9388FC5C7AF70391E +:108C100078A5C329074BF29C7ECA8DFD4E78AF6DB7 +:108C200077C2DB92C7CE255FE9E80C609D8EE09BA2 +:108C30007532DA9F63F1C5E17945188F47ED746AA3 +:108C400071AD732E79BB5AA2FE3DC4DF7B03E8777A +:108C500067F2A3D58C8EEF6B8CDFCBF23D39ED48FC +:108C6000463F573BE90EFE841D8F8F733914FD6B11 +:108C7000DA5C7175D4F9FE9087C9B1B52388FE9F7F +:108C8000AE3238751A87588C9FE7833DCCACEF7AAB +:108C9000FF6A25E558FF2B9C4F465BFF5CFED4FF27 +:108CA000C433B9E3996F9FA7FCFDA9E2991F5C202B +:108CB0007FFF90FBAFEEB8266337B87F23FC991B8C +:108CC000F28DD3837489A35C0FAFEB5F86FEE790D0 +:108CD00027DE1D067A1EF5E8C08F43CD6B3AA1FF53 +:108CE0007E7F85E3DFE92A76C523C2FE9CCB7EBA70 +:108CF000E5E7F995DBE6C0BACFAFBCD2E1FF5EF1A4 +:108D0000412949DBCE3345BE2123AF7E27DD7F1BC2 +:108D100066F9BFDFBAE46FE50793709E8C5FDCBF36 +:108D20001AF30DAB56EC5E28D9F6F3781EF38B7F61 +:108D3000946738FD6285F9C5A3E5DB4EBBE8F43CDA +:108D4000A7AFC8B7AD54E239F36D57AC905DFA895F +:108D5000F9696E7D249EFF7D9E532F8975DCF83C5A +:108D6000DFF52684597DB6C8EF911AE3BCFEBDD26B +:108D7000CCBAAEE7DDEBBE97E7A4837BFDBF87BD32 +:108D8000CE1B3D5F55C3F355F379BE6AE8F39FFEF2 +:108D900039E4E98EB51C5A047C78EA8E7F79FECAE4 +:108DA00022B0E3CF2E42F079FEEA1494C001BF272F +:108DB00024F40BAFEC5F8D71197D9EE9A56393F1EF +:108DC000BEF70C3E3FD5470E3BE896CFEFF2BCFF17 +:108DD00093215ECF4E06CAB19EFD3CF1F5E228F824 +:108DE000BA50BBF15DB1FE877367E1F79E32F0A424 +:108DF000593E6E31FB5EFAA01ABF0DEB6D5786F53A +:108E00007D2C7F89FE5C0B61FC34A8183B67D0F198 +:108E1000C1F864D3A2FD8ACF2EC3E75B560475F870 +:108E20001ECE32786721A55763C882F9EA869A1F59 +:108E300086F3875FB7FA0CF87ECE33F13532E4DF84 +:108E40008E354B04EA7D577E26FE16D493ADBC3298 +:108E500068401EBD3056817EE1F7603D5BDDDBB1D1 +:108E60004CFFD4B6263A3E63FCA007B6F054FEA9E8 +:108E70006D1A9DB77B4B3C0275CE37E50F6E837A3A +:108E8000F3E262F3C867A284DC9FFFF852AC83BEB2 +:108E90005FBCFFA36D50D7FCF79E4405DC5B18CA8E +:108EA0003FBE14EE3D2852532DD4AB3FFFB5AA5E12 +:108EB00078FF8A2B367EE1313AFEFBFC7F5B0A3578 +:108EC00038F35765E0892D560859BE48F4150DFA58 +:108ED00045C1B8E1A9A5FA2B7F60A902EB159A9BC1 +:108EE000A0DE5DD707B6E13DD5046175325620B6E8 +:108EF000B82A3BDF75F903DB2CFA7E49C762F22BF7 +:108F0000AA67EA872DBC3F72BCA17D31D4D337F567 +:108F1000857A6BA613B220D610843AEFCFF54D8E2A +:108F2000F90AF0BCAAD6A0F3FF79DFD45E987FFEE1 +:108F30002A6B068CAB64466FAC16E0E2E77265D133 +:108F4000A98E7FD7B79AE5A932FD08EB0F6ECD5DEC +:108F50001FF68ACEF4C66020F7F8BD42CEF8B9629B +:108F6000FE09627E9FB6CF06C8A046EDC4E53E521C +:108F70000779F3AF427E799E6D5D8DC125DE23D6E4 +:108F8000E585A0879A79CE1CC6E11CE76E3EFFE41A +:108F90002893E3F132F3C3CFD44A0F027F8E972593 +:108FA000BCB7571C208947607C1CBBC7D74C8809BD +:108FB000F7EBC4BCCFF169974C8E3F04FCBA644216 +:108FC000496D6705CE87FBA2F07669B673280AB7AC +:108FD00002708F975B6A37D5D8E0AE61700F16329A +:108FE0007C0CFE2BCBB30D1EADDC07FCDB9C6F387D +:108FF000F4ECFC2373F05C6DFC6242E0BBDF67EED7 +:10900000F463FD3BD1128E7F1FEEC17C660736B83C +:10901000EA7036286915E47C03AFC319DF999B0E0B +:10902000229FB8E183026239EE4DB2FD64E729C2A6 +:10903000710A0FABAB1F059EC738DE37B8EA6CB2BA +:10904000F3B03A9B4F1A9E4C9D9EF8200C9F57D42C +:10905000498BFAE1D1F4E706577D74765D56175DCA +:109060007191A8CB4BABECBB210CBE11F5798F34C1 +:10907000603D4EF6BC9BF381CAF60F74B6D715BCA3 +:10908000CEE9B95CF0373F675F33919DB30FFEEBDC +:10909000E299CB703E762E39A8B0B86BBE62E27909 +:1090A000F7FC23853ADC6F107C29F851F0D360611E +:1090B0007B03E26B9994F33B67BFE3EBCF8FB3F392 +:1090C0009809AB12B2FD5E80903BB79C12F200BFD4 +:1090D0007F1E9D7A2DE805880701FE289547C7B9B0 +:1090E0003B833B0E971EE6211F30FA95B07B1A0298 +:1090F0003F23F9A1F41CFC3009C7FF03D84D0FC56D +:10910000008000001F8B080000000000000BDD7DC8 +:109110000B7C54C5B9F89C7D27D9246737BB7927C8 +:109120009C25880142D8842404E5B149088412644E +:10913000131E86972E0F214A8851F11A6FFD371B97 +:109140000234A2D5F8C7A2B55CEF82D8725BAC013D +:10915000D146455C40105BC5808854D11B94F29287 +:10916000C2FAE6DE72F53FDF3733D93D278901DBEE +:10917000FE7EFDDFB43ACE393373BEF9DEF3CD3770 +:10918000B3459D7B4CC44A48DD3CE209E41092742F +:109190002C18370CCA793EFD325A1E91E308292457 +:1091A0006446BC8C65C1736531D71710F2E74E1D5C +:1091B0007D4048D118FAAFEBE0BF6E3B506AA0FD8E +:1091C000BAEBC44F144276D0672415EB418B25DCF3 +:1091D000FE75F9B68A5583689D7FD7A1A7CFED8428 +:1091E0007C077FE309B9295EC2EFF9E20996FBA289 +:1091F00089DF62876102589F6626A4389F562DEE4C +:10920000C1DEE1F43B7672B3D71A1E4F8C5320D3E4 +:10921000719C84E4F192F8A7D94911219530148505 +:109220002FCB2DF9099D0F79302A708D8B36D1EB1C +:1092300028308484F2A4A7364117BD7473151D2FFE +:10924000319AF8B6D1D29940B04EFB7BB659C3E300 +:10925000BD49D85F799677338C579E9492D7E26256 +:10926000FD012E0AFF2A4BBE0A7E43B11DDE57E5E3 +:10927000DD91137EBECF44A744DB2DB2FB1648140C +:1092800027870F945D4328487726EB959309940E22 +:10929000926F35A1702D32B957C7BAC2F39C452CD5 +:1092A0008A359B903B68E3EFE8FB199DD17E3D2515 +:1092B000DD746F9462B530D8BEA3FF7CDE2655B452 +:1092C000D3EFDD4988DC981FEE2FBE7F67B209BF60 +:1092D00073B8222BDE170917C7FFA2E8D00A02B421 +:1092E000226DF89C1818FE457DD1600A7756C47B24 +:1092F0002B7D1F4BC8F618CF0D32C5FF621DF1C183 +:10930000F7C9045A49097F7F493CA34F181E3FD62D +:1093100073AD9E997261CFF6DA52B4A7FF0F9A919E +:109320004F7CFAE1948E0B6F26642DAD25B553BEAC +:10933000B0025F07757540473DF14B74FE7F923375 +:1093400010CE7766D29723C2E3BD2379D325DADF27 +:10935000EF34BB9F96902E38FF72FD1DBB8D0EA083 +:10936000B3E46EA1E3DE2DDBD83C49A800E6E98C2E +:10937000617CB82F8A58A2E8F8AFD312E96E201E9C +:10938000E0ABB733876C5A4BC7DB6162ED047EC933 +:10939000657D707CC4FB7D5255BA4CEBFB9C49F952 +:1093A0002D128E47A222F89F8E4B009E49DF7E71C0 +:1093B0007E3CA58771201BCF41BF5F1D2107A32ADB +:1093C000D8BC5B38FFB7C8315896C7B0F1F6B9289A +:1093D0009BC077AEA1F3A1F2B03FDA97D38070FDC6 +:1093E0000CBF037CDF4EEB899C6E8926567FC1C67D +:1093F000E4F3222FEFB0B1F113E3583B2D7DF6F3E8 +:10940000F73A189A960F546EF712CA2793F50AF690 +:109410008FB6341032105E7A09F0D3DA123A9F5EBA +:10942000C67958D6313A97B1F9BA0610D209F01A6E +:10943000822682FCDA8CE3192CEF64021F3F54BCB5 +:1094400049063E5E652435EDBDB437C5745980CEFE +:10945000649841F7349527525CA10379BE9BCBCC2D +:1094600057ED55F1A01F7F2FB3799AF4A401C611CF +:10947000F0AC6A02862324EE520C09D2EF6D07F895 +:10948000E0FBD92791DE8662AA66685723F1FAE5E8 +:10949000087A1B69BB6076582EE32EC561FFBA4B74 +:1094A000234920A1A75CD65178A17FDDA5227C4F5E +:1094B00092299C8911701EBF11E1D4CE4F8BBF2021 +:1094C0008757D43DD986092402AE1222AF82EF9489 +:1094D00050218F848F9031F2A961B4A07CF79D1E3A +:1094E000F538B317B4DC68453D5F01FAB18ACE9513 +:1094F0008C66F22453DDBD502E790BE4B748D819A1 +:10950000DE4FC8F38EFFFEC21F4BF1B4E3F040FB09 +:109510004AFA7816D703B3B8DE177A1DF44C756C87 +:10952000186EA7D0E75CEE2B2C659E9311785B2814 +:109530002BF8FC80C4E84E883B03FA178D617A81D2 +:109540005448E41A5A8C9AC0E443F43B0B932F849A +:1095500092C98990A3EA79EA767F81764E2863AE34 +:10956000C83E75EBC744A61F0DD171B9241ECACCE5 +:1095700000A17A7AE3FF9429CD6077DE32BA3741D1 +:10958000F30E869F92D92B5A0CF4B9B15D92CD247B +:10959000FC7D6BA3E4594CE7FB578E873A0783B3F6 +:1095A000CE11340DA2A0A5D63178D3DB774B860837 +:1095B0003E48AF65ED0C3623F64BADA1069ADAAB0B +:1095C000D406CF6642F9DFC29F9B6C84EBB58094D2 +:1095D0005680FDC85A8AD254371BD7EA0E488BE80A +:1095E00038F59CDEADBAAA1CD057AD89316ED05784 +:1095F00093ECBE381BC0753C188C053C1FEF34F84B +:1096000068BFA5764FBCAD303C3F452FA7821E8872 +:1096100039CEE06AE3F40EF3FF031C8E4D4CEEF5F9 +:10962000E400413C9320C89732271BF5A5689F684A +:10963000E7FA2A91F8B65BB17D2B413A109C67E2BC +:10964000CAC19BD6BAC2740ADBEB21F960AFB31E64 +:109650000C1A16D27E2F6DD05544D25B94C3B91E1E +:10966000A3F3C88E9C477F7649B43346ABE7176EA9 +:10967000C7F4560CD7D725B31D73607E75AB5E88D3 +:1096800031D34FA6B66F946250BF3D84ED04DE29FE +:109690001CA3010E2D3FA5B69728CD40D7378D6E60 +:1096A00089F40D675DA3DEB37864447D9509E9B064 +:1096B000D1446A23F538212BF1BBD536A6DF9EB005 +:1096C0007B27037DEB3B1E31015D6FDD7CC2E4EB4C +:1096D00045DF74F7BF423C49943F811E75359600C3 +:1096E000CCBB6436E3CF65AB4C0133A54FDDD66D03 +:1096F000411DF86BF71137C86F5DFBB6FDA9144F1C +:1097000069759E4230258994D93A73C2FA2FB52ED5 +:1097100028815D496D5F50877C9E1CE3063E073FB4 +:109720000BECDFF912AB5FA276FFBCD19FADD0F797 +:10973000E75DD16E3F7DBF3F8AC9B3C0F3EBDB2647 +:109740001D90285E63B79B83502EB5FBEA60FE6BCD +:109750009B9512A0D3DA722203FF2866EF0EE4CBAA +:10976000A458B75FBAF2790B3B2D9E8FBA8FC9C34D +:1097700093B638CEFF241FFC8B35B6586697754CD0 +:10978000BFEC3732380D1CCE8B36CF8F912F41185E +:10979000E977D34960B7C9D5F3BB11FCD37C357CDD +:1097A0003CAAA2DDA450B896713D52327BB3F44975 +:1097B00004DDDB6C7A842F75EB4649413EDEDC5CD0 +:1097C000EEC0F6C40CFA63AB84FD96D1F7B744E85B +:1097D0000F318F5EF4C8638067EBF1CED7981E0916 +:1097E00022BF0978051D05BD9EB231BD3F91FA6BC0 +:1097F0005138DEC23AA0476B2A1B4FC8B5560E9FA0 +:10980000B2E9B83EDC2CE9D06FEAC4792EAF312042 +:109810005DF6DC78D3621867B923250FF8F0D1DF45 +:109820001F3249F4793B9787E56D9207ED4CDB21B8 +:10983000D34CD0F7FEFFD0837D9EC24C2859FFFC4D +:109840002193429F4FD921E178CB776C332CB2869C +:10985000F9CF756ECF4DC09FCBDBCD244A02BA281D +:10986000CCCFD3F01DD50F280FC46FE2EB154A18EB +:10987000E6EFBAC0BE09FD7991C345ACDE029D0397 +:10988000F4E1F03CD07B7BF93CC5F8E5D1EE3D1628 +:10989000D07FF9CC9F759D3B8C70EEE778A4E307F1 +:1098A000517F52EF0CEC9818BFA7DE1F867EEA05A9 +:1098B000AE1F29DD0EF6A6FFC5F8AE27AB89121B39 +:1098C000410FC073041F7D6833217C1FDA0C389E62 +:1098D000A194E1C96062F337ACB40440BE5EB755F1 +:1098E00030FCD82D889F7D9CDEFB38BD5B752BB38B +:1098F0001B98DDF908F87CCF8D7184E917A64F1EFF +:109900007D4E6275BF3500EBAA3ADF0CA43371447B +:10991000B9D11FF4BD669A191BE6372D5D95EDBBD5 +:109920004D308F29ED8CAFC3F862F645F021D55349 +:10993000486FA013E051C8BBC0A3C04B169777C9AE +:10994000EEB9281786D77DD679215C4F6BE5329E1C +:10995000AFFB1A60DD47E12D72B33AFCF5B6DE13BA +:109960007089FE62BDB7ACF18F9927A91DB82DF99A +:109970000D2C611D01FEB7585788F63176E6077F3A +:10998000C9FD7EBB9DF1C9B28276D4B7CB4E36A05D +:10999000DC582B987EB01E57EB35B1AEA00B6EDEB7 +:1099A0008FE9CBA58E58B724F5AD7F964AC48BEBD3 +:1099B000C6CBD4FBA4FE795D149F237F9F6567FC13 +:1099C0007E7A0B2500EAFF06F437FB1EAFE1E06864 +:1099D000A0F336BDFB69D2735C123C22019D9771E6 +:1099E000FFFAFCD6B2D17FA67CE2DF12EFBE864E34 +:1099F000F9D3ADD3EFFD33ED7F7EF378372C871DA0 +:109A00002D5EE49B9033CABDC985F18C0A585F3640 +:109A1000B7EF8D8378C9D9DF8EC807FD779D9DC9C3 +:109A2000DFB9E7F48D809773CFED7DE8BF69BFDACA +:109A3000405E22B0C2CA5FBF6AEAA2F0EB028F7C2E +:109A40000B76AD76733CFA7D2DBFFDF771505FB696 +:109A5000391EF5684BFB53ECFD16F6FEDC531BC7B5 +:109A600001FEF7FCFAD95D305E9D37CE0DCFCFFEFB +:109A7000FAD971E0BFFD9CF239C059E73378108FF5 +:109A800082AFB57A6ADB6EE443C12794AF311E42E0 +:109A90006A98BE117C7C18F416F537AA4BADAD5010 +:109AA0001E9E1C5583FCCCE5B37E8E6D23DA3FBF32 +:109AB000CB0FFDA77B6D79B00E5FCCE944D7E0C832 +:109AC00017AD946B609D1C931334A5D17637CEDB14 +:109AD000360EE06C8D26C551C8AFF421A54B350A72 +:109AE0001B1DA7EDF5FF9272A91F46D5DEA96C5C80 +:109AF0004F6EFE8EF2EB51235B0FB7723FFCC679BF +:109B00002724B413C4209F12F10FFDF7D937038E19 +:109B100027DA75FB6D1C0FAD7CFD4FC7477B53B437 +:109B200082F1F73E69610BAC5FF6DD1D1C03FAF3B1 +:109B3000A5337746D7E544F239EB9FBA83E987E549 +:109B40003B36369B68FB1F65E715C16796379691D4 +:109B50004F12805F2494B77ABF55A507EFE3F296C2 +:109B60002813C775107F301087154A428E18113F91 +:109B70004FF3380C15718AF78BCDF39CE00FAF379C +:109B8000FA520AE17BADDC8E6D66F0D2FEB2351F73 +:109B9000C793AFCBC7713A8D76F05B08C6C19457B7 +:109BA000276D6E96C270538ECE047B06E31558C1A6 +:109BB000FEF86BD0FE282637F0C339689282F8CAC7 +:109BC0009D3F3C3C6F6DBC00F45E552CF88D253FED +:109BD000B717864B115FD0D2E3187F6F4FF0604903 +:109BE000B624A09EECCF3FD973E305949F475F3E18 +:109BF00081FAA81EF81DBEEF3BA9B2CB829FD6BF4B +:109C00007802F9BDBA83D167BDD4B506E4C53F5922 +:109C10001AF934C87993877C421DCD7ACEE7CB2AD6 +:109C20004E2C81F90FEC4891415F5DE072503FAEE0 +:109C30006B30E8C90B2F3239D8A7D3213EF76D1A04 +:109C4000B611EC10F56B9195EB1B944D66C42FF398 +:109C5000F74B662F7EA41CEC7E2D71835CD7EFA89A +:109C60004A57D0FE9811BFAE273F5E037261A3DE54 +:109C70006B9402F3FB6822C0575F470A41BE53272B +:109C8000785E843AE960EBD9C4D98E1203F2D782A8 +:109C900091C05FEB33DAD7807DF753FF14E6B3DE74 +:109CA000D8566AA0F5F5E58A4C3146F143ED1DF42E +:109CB000EFB6773376A0FC3AE6BBD74ABDE8871704 +:109CC0003726C378F5D92637F829533A985F4DA837 +:109CD0005F0DF0D677346703FC5394EBDC7AFAFE21 +:109CE0002F1C3F024F5326503E85F9F9AD04DA5F31 +:109CF0003076DE04F50BCF530694505C4B00BE3338 +:109D0000B9D248D017AFBF48FD9FDC303FC6BE4038 +:109D1000FD205AB71B64C98D7236DD1C49CF36232E +:109D2000B357366E7FB22A185D3FB633BFE463AED9 +:109D30007F3FB69B387FF338A5ECCF05BBFC174EB1 +:109D40006F1C0EF43F1F77F9E220CA51DD56E6BFC3 +:109D500039CC9EBCBB22F8D651C6ECA588173BF582 +:109D60003A163786F58B03D6D7CA263DD2B31AE901 +:109D7000FB23C7B5F951B4AE4B6070A5664B7318A1 +:109D80005E4C88176782EF11F09B4343A4A24D4AB3 +:109D90004F7E3725303DEA4CF01640FCCA49D71BB0 +:109DA0002D18AF2ED145B1F8B51BFA39F5D5B8BE8F +:109DB0000D3953DC9B5472CDFCC23389B18CCE81FA +:109DC000B70DD5117A3FBC2E8E72C3BAE68C2E68C1 +:109DD000888A88678BF9059AA36B22F5953581E906 +:109DE000ABC0105203F24FFD732BC63F65EA17C19B +:109DF000FA7BD3F54FB1F5770BCEFB929DED2B940B +:109E0000D379809FE6CCF2AE60763416E175669128 +:109E100085D0CFD9922C011C617CCA1B019F4F7049 +:109E20007A0AFFBC9EF231F875C4C0E4427959C287 +:109E3000B8455F7A20CCD74C0F4CE960F48DA9600F +:109E40007A80E44823C1DE837EAB1ACEF4806B4473 +:109E5000587EEB4D5D83810FAF540F94C704507E45 +:109E6000CA870DC6788318E78291AE23E9F30B54B5 +:109E70004ED1AFE57C1FFB12E3774197FD263FCA29 +:109E8000D7FE81D1486F800BD685423FD6BF74FF85 +:109E9000605FAFF10561CFFC18973C339030BAF3A7 +:109EA00071616F26361F4B3FD8879846669F637255 +:109EB00014B4DFF5D99D63617D4D2A74D8FF819C70 +:109EC00023CF40FF29092C0E3659CFE8686C6CF07F +:109ED000A7118CC3B075CAA69800E815118FD1C21E +:109EE000358EF3BF887B88F505C491A1FDD2044669 +:109EF000DF399CAF1A1224955D16FE366D3F101C9B +:109F00009CBEEC89E8F7F78A0F89EF08BB16C633C9 +:109F1000A3A78883C37CAA72FA6ED7B69BE90DFC0F +:109F200003BABC94B2712DDA5505E9B986FB4B939F +:109F3000ECDED109147E7B055BFFFE4EC4357D430C +:109F400058BC3A8AE929EDF8A2FE30C47DAFEDDBBA +:109F50007ECADFEAD9BE0CF110900B8C2780D89610 +:109F600056B861BE6B13D4FB33A23410C3975DC2E5 +:109F70006F7245C0C37D2E08E38EEB659FA9FBBBC6 +:109F800063D471706DFFBEE06DD5C4B15BB3761163 +:109F9000883FC558E2908F604305C6B99F8F43F94B +:109FA000DE5D85FA8DC5B1FAFB8E16CE28450DE72C +:109FB00095E2BF55B7AD16F8791787976CB8B2F927 +:109FC000FD8ED3EBA1260B9664F11055BCDFEA564B +:109FD0009AC1CE8FD8A9E4A1BFAC63F1BAD871E41D +:109FE000333DE5D7B8E2B6EC95A0AFBD6AB8936A49 +:109FF000A24930623F30C56757D5D36A5355ED3318 +:10A000001A06AADE0F681CAA7AEFF2E7ABEA59AD8E +:10A01000D7A9DA5FD356AAAA5FFBF88F54ED87045D +:10A02000AA55F5615BE6A8DA0F6F5FA8E60F0DFE93 +:10A03000D636B7D780FC8CFFF68B52D4372F111B46 +:10A04000ECD7114BD74890B7111DEAF99F4DB023BB +:10A050005DE28BD578B85A7E187FE9FBF956C85176 +:10A060000C617C1173B9F5337D2ED435F2C2C71D56 +:10A07000676172D2DFB82B636E32009FEF824A8431 +:10A080003F7C58230FE515F14C0E2E55F7E337F3BF +:10A09000B8AE99ED6B55C7A8F7B7B21D4CEE1507D2 +:10A0A0008F275D21FFBECFF9F7585FFC5BBB6D5F6B +:10A0B00022EEC3105C4FCBBEE6CF207E33D71024F8 +:10A0C00079E0BFF3FEEB79FFC79B649CDF134DC9BA +:10A0D000586E6852F0F9934DD958069ADCF87C53C3 +:10A0E0005331969BA91F07E5AF9A2AB0DCD2E4C58D +:10A0F00076BF69AAC1726B938FC9A3966E97ECB8AD +:10A100009E017F725C443EC2F40AED7E989FD92185 +:10A110004DFFE9E4C14EA0B3161F3DFAEBE7C5F7CA +:10A1200066A745D978BC24F05A44FB518E58C729FC +:10A1300060A6516414AE4FFBE9FF4D9327F09AB12E +:10A140007FBED6F20FB93CF21A6F6CCFF7D5F0EDA7 +:10A15000EBA8DFE990D7FA737A8E4BF5E1AA2ECA05 +:10A160002AB9207B1171E4DD1ABBE331C4ABD6B749 +:10A17000A26CE7FC55027C0871E518568AF78F3807 +:10A1800098FDBFC3C1FC81FF6D7CB8272A16FDE88E +:10A190003D4625DD1941D73D5131F89C64136506D4 +:10A1A000B55F9287C82EAA275E75B07D3A09560C16 +:10A1B00018FF1D2463FC22EA2AE31C1A3C4AD4BD82 +:10A1C00076D1F14A0C8CFFE9F841038CEFD685F586 +:10A1D00025EED34787F959DF931FE8387E1385F3BF +:10A1E0007746A298E8FBA30E45A53F4B0DFAEFD5A5 +:10A1F000BFA57DC8518F7E5729470190A361FF38C5 +:10A200003912FC4E2E670DEA4D8E4A408E5209B926 +:10A21000F1D1629423C1EFA5E07F45C0F136D7BBF1 +:10A220006F737EDFC3FD0DE08FFC5EFC8ED7B97CC3 +:10A2300088FE578BEF12C2EC0F215DA9B00EBEDA7B +:10A24000FE54720CD0AFC412E78FC9BDFAFE7DE197 +:10A25000B347BF0EC715C581A8A69160FC251CBADF +:10A260002516AB1FF8893C6E3CDF15C1C777C57852 +:10A270003F7650383B8CA403F617A8D956E444E443 +:10A280007BC42BFDF35A683D8FD747F925E467332C +:10A29000AD34827C74EDFF2FD01779BC1CC54B0800 +:10A2A000832683DCE4C41A40DFB8059A783CB348BF +:10A2B000542750572551A4CCC1B8445A6187E5486A +:10A2C0001B817DF1B592BB554FBFA74F72B50050B2 +:10A2D000232B4AF404B7D8DAB01C433A5B20776EDC +:10A2E0001C09E9A17DB1A5BDC540E11C402ECB688C +:10A2F0002F927EB5FC3BBA34FC268AED0F375A58B4 +:10A30000794F74DC2628BF8962FBC5FE5282EB1FA1 +:10A31000FF47B1015857FE44F2999C142FDFE83CE7 +:10A32000F3E13B868474278FA77EDC85715709E5AE +:10A33000BED45A50730BCA2B7B8E787585DB615D5A +:10A34000DFB3FEF3D52C3ED0723FE3EB9666561F8B +:10A35000E0647CEFE465B65327F63F3D804733A7C2 +:10A360004314F1FB611F976453FC16317C23FEAC50 +:10A370000710FFD1A41DF11735EB71848F907998E8 +:10A38000BF2205BDE4BB989EE3F5358EC5D2E6B18C +:10A39000503E899917F01B7B19C700FE1BE473CC54 +:10A3A0003061BEDD64BD2F17F046D2758648FFCF01 +:10A3B0002C7B797E13E3CF1F408F62A7B37F7A187F +:10A3C0004BDD9D1ECA6233A325CC23B95ABA54393A +:10A3D000ED02DFC8AABB52C84658E7D73A4832E474 +:10A3E000C799AC1694A355192C2E601A4ADC2B0180 +:10A3F0007F5E1DE24FCC57E47109B9A478F1025E8B +:10A400004C01E904E0C994DC80EB3562E84A8376CC +:10A41000BB24467FAD3CCF714A1C9E74C6CFE4FB83 +:10A42000EDDBB6A9B60F1C206C7ED794378B69BDC7 +:10A43000C436D72153BE4ADCFE2303D51BDB0E11E5 +:10A4400014B6CB3FDFF700E8DF6D336DBF74D2F693 +:10A45000CB1EBBF90123BC9F2FE1FBF3EBE97B8A09 +:10A46000DF0F4A483BC475FE6F82AF16E09FF3A62C +:10A47000B20F72D8B6EDBF2D13F0EF287377E90154 +:10A48000DF73CD0AECFB90CB140E8A87A700500A2D +:10A49000673BC4138DECF978FA7CB690FB3EF4CCA4 +:10A4A0002851F74BC440EB63459D8FBB19EA59E136 +:10A4B000F6422F652DBEE33FFF0FAC7F3AF59817AC +:10A4C00021D5B07D9251BC1CCBCB3C5EDA2B1E2932 +:10A4D0004FA4ED973E48464AB4FFA0C5629FC71CF3 +:10A4E000B886FEE7800DF43DAD9F7E848C0419395B +:10A4F00065545AACC08FC3891BE2C8C4C0F8F36866 +:10A50000862D00F18AD31269C138F3FD2CCE0C7D63 +:10A5100060BFD1BD98D2BA005C424B00E2E5EF3497 +:10A5200011CFAA6B22F423A58DA788855F181E7210 +:10A5300070DD348684FF609EE5613CA15C4DE4F5EE +:10A5400049752C4E66F650BD09F64BA36FA3482003 +:10A55000D982F872619E867E129101DECC8A203506 +:10A56000A5549F7A4A506F1612DFDE4E5A8EF66C53 +:10A57000E37A34D00253C4104716D847C500F42CF0 +:10A58000A31E2CD42B481B963F22ED5856924E2CDE +:10A590006F20212CBD443642F982D3C5D777548F22 +:10A5A00083FC1B148C079E7A4376435CB2BAC26765 +:10A5B000527AF13F961808DBA723BE4CCC1F33F824 +:10A5C000326745F813A766DF38DF43FB293A75BECB +:10A5D000E54E27F317F673B9592F713DB25C0AC0E7 +:10A5E000BA78FD6C13E6D71C5E2E6D82F83C7D8F29 +:10A5F0007159FF6C0BC6E9D61B950CF02FBE722A61 +:10A600002CBE56B7ED1ED04787272F4D01793D262A +:10A61000F926D6D27E4B2A595C9D18FC193323E4C7 +:10A62000FCF4020697C847E8F667383C5F816DA6E0 +:10A63000FF9CA6F0A3FE1271B73936D433E5A4C649 +:10A6400000F9D01F71BD1FE07A41C84FADE0038310 +:10A65000DF944AFBCD72BB108F73022C6E5B6E20B1 +:10A6600041F087BBE1AFD97837A1FC31A776B7615C +:10A67000490EE61361FC7209CF2F926A95D50ED868 +:10A6800077BC8FEDBF84F387D8FEF19279DBE66368 +:10A690005C61B199805C2C79FC910F41DE6FAC9DBF +:10A6A000A400FEE8F7306E3AD1C2F6072DF4FBB0F5 +:10A6B0009F36A996E76DD4FEB413F893B6F3803FA6 +:10A6C0003C91B637E4435E0ECB7B8BF6B3FCA1E83E +:10A6D00009227FA8619F13F2876E276E3FFDEC8DE4 +:10A6E0001B364A2CAF95E0BAA53F7FE6DF7E7AD9CC +:10A6F00086FE2DD8FD01149E46BD02FBF9C42063E1 +:10A70000FF391686BFD6DA16E4C3AF6AE824E877C5 +:10A7100067B52D58EDC47D3D2EDF84EA355AB75418 +:10A720004C52589C38A8FABE8EB038C59D3CDFBC50 +:10A73000C77A80EA37B0077DF951027E4BA389C101 +:10A74000A79987D00FA04742BDC8B554F13AF3BBD3 +:10A750007849860A7F496981F98CECF4A07F6421ED +:10A760005E3DD397F731FB11F52B09ECB6C5E1BF80 +:10A77000095CEBD3AF0D5A6D45F4B491C87580A553 +:10A78000D47B4B64FEF1FD25DEF9917910431299DB +:10A790007F329497E44D7F26F8FB67DE62F6C07F38 +:10A7A0008B59C138543F78A0530FE8B2AE60BE8BCE +:10A7B000B9FEE665D83F64F31D933810E128A8A8D8 +:10A7C000D2839FF1DCC651EF8C263DE9D617DF68B6 +:10A7D000F1F36582674222DA5D8FEE4AFCE8727D12 +:10A7E000FADC3ACA2F9FCF33A31C09BB970F440052 +:10A7F00039ED24012ACB600FD04EA4B41259522057 +:10A800003E09B9D27C1C60DB1A0B31A8E293B2AAD4 +:10A810009E569BAC6A9FD1A0A8DE0F68CC56BD7730 +:10A82000F9DDAA7A566BB1AAFD356D1E55FDDAC762 +:10A830002B54ED8704BCAAFAB02D35AAF69FD32974 +:10A8400005E97C0ADED5BBFD405FBFA733A7286CB6 +:10A85000C787B7FB54FD47752DA8047D34A2A356C6 +:10A86000350E394EFD300BE4F134707AB8F5A0178F +:10A87000DC54D93EE10214B2F7D89ED6DDC7279F3B +:10A8800005BD3CA7C618F6DFA0177910E38C6E8DC6 +:10A89000DFA75D072F3DE0DF67A5F0CD7ED3BF06C4 +:10A8A000F8BF2551BD2E2ED75B715E9F1FD1631E51 +:10A8B000492D70A6234CC7CF612098F76E1260799E +:10A8C0001EEA798B75F36CC00FED37878E13A4AF3A +:10A8D000CCC96A7A47296A7AC764ABE91DEB56D3BB +:10A8E0003BBE584D6F9B27BB57FC2654A8E92EF062 +:10A8F0005B4CFF07F8FD7BE3F3B789DAB8C218D4E5 +:10A900009F5F3D6E463BD18B1E986129EAA90704E3 +:10A91000DE7AE8032B5B9F74EB83C7B93E785CABB0 +:10A920000F3C7B53C0E5F0D1F5221DF7BDF9A3D252 +:10A9300040AFA5929D227FDF07F93254BE8320DF0E +:10A94000318DEE2E3FE8FD0D66F41B0FEF5BB24F2D +:10A9500007F055307FFE01BE207A2351ECF3F9DE7B +:10A96000807ED196063FA8BDCC462FEACD3FC1FAE6 +:10A9700019367B34FA8268F49DD6EF15FAE4F45860 +:10A98000C64FEFBD45022B2558671F42FD7DB576AA +:10A99000A1BFF575B71E9DC7ECC6285E92857EF4F3 +:10A9A000D7C15F84B2A5D8E7823CFD7C0BB523BA42 +:10A9B000C8F57617DA93F1C48F7AF7FA0AF72F57AA +:10A9C00000DE26BF9706FE9176DD4DF1FC1786E787 +:10A9D0007696B75C21219EB5F8D559981F129DCE69 +:10A9E000F659BFEEC6B7F76BE82FF0BC3D8AD9E544 +:10A9F0007767B3F546C1A1412D56DA2FF156971B63 +:10AA0000FA6DB7B9F742FDDDE56CFD5778C4A38751 +:10AA1000FCA4AC0617E6A96D7779CBA0FEEEDDECC1 +:10AA20007DD1311FE62F0D6A64EFF35736EC8DA50B +:10AA3000E3CFFC097BFFF25FD6E0F9A0C04ADEBF9E +:10AA4000A4AD0CEAEFAE66EF471D0FB4407D482B76 +:10AA5000FFBED4BE370EFCC99F492CAF4EBBCEE122 +:10AA6000EB9AF19C1E3DE8C9FDFF71BCBD58C78C37 +:10AA7000AF61745A1CF24E4436D3D04BEB9F971300 +:10AA80001FD627113F96934900CB292488EFA79220 +:10AA90002EAC4F83A339B45E451423D44B93B2D16B +:10AAA0006F9C4E97B8185F28765BC0FF769CFCC3FE +:10AAB000BD242EBC4F2DFC8036BB7739F8098E3271 +:10AAC000EFDDE01F942631FF3B5C8A7D677FA69B0C +:10AAD000BE3FC3CF2185F79B8B301F82367910FC98 +:10AAE000D6A224969792F5608301E4F28674C90D8C +:10AAF000790E93C0AFA5F8093E66B0413E1BD0A2C7 +:10AB0000B7F56F380EA689F31AFCB88EC8D72BC3D9 +:10AB10004058E63EF6D40386144A2F10CC54FA9DD2 +:10AB2000C79E99E24F87D6CC8FE9AFDD119E27B340 +:10AB30009DEF3BCEF0BA74C89F796A3F696E12F3FD +:10AB4000FB455978E4EF3BAFFC957ECC9B9EB9C9A1 +:10AB50004C587E0B49853C9625A401E97A6AB8DFFA +:10AB6000C8CE2B323D3493F3DD4CCE4FA7369A91AD +:10AB70000EA76F9102128567C986D78F01BFF5E9CD +:10AB800027E55C83FA6606E7CF599686F975C0D744 +:10AB9000C27F7A6CA8FEBB618847B51EECC30F74F8 +:10ABA000F2BAF89E7E1CF1831FFEC17CA607D3FC7F +:10ABB00012DA852BD5830EF13DAE0753C5F73C94D1 +:10ABC000E5683D93BF95EAD8FC9DBC4CABD3DA1148 +:10ABD0005F33F07F326993A09E4142582A445EE978 +:10ABE000CC8250965B07F5A47DAF35C3F836D07B99 +:10ABF00030EFFBF71480DE33F238B0D142ED27C4DA +:10AC0000E31C1E4CD634BCD61D275B970493FF3B38 +:10AC1000C7C9A8073502F8FCA4D1DA8AF15C6D1C1B +:10AC2000A547DC451D6F18DBC6F021B509BBE04B1D +:10AC30008679427AA4CA3E8C762B508E97BC4CCF34 +:10AC4000387C5B930A212ED1900EED75962E3DD85F +:10AC500083B5FC5CCE5A7E2E67ED60B1BEA4D48471 +:10AC6000D2938D7C3282D3764DA2690DC4D9D6445D +:10AC700087D666C1BC76E920C333E25C1FEFC7CF3D +:10AC800029E6CA6C1E0FC17768BF689D5204F04464 +:10AC9000EB95C1507EACA354A4F0241037D64D7A66 +:10ACA000D9D9ECC278E25EC43F09454BF43B475E1C +:10ACB000D149B0CECB1DFDB11DD6BDCFEEDCB46504 +:10ACC0001365A12F0F3033FCD016BDDF4CC7CF7DED +:10ACD0007142CC5BB4FD8A5798AC8E28D6A13EFC5D +:10ACE000D4441E843C9A6A8BDE6BA0F4FFF45F7838 +:10ACF0005E8BC19D5915111F9896C2F4E2E13EE2A8 +:10AD00007DB9F12597018F87537A3FFF7982EB5503 +:10AD1000712E8F642B88872F9C44957F911B7F0316 +:10AD20008E23EAC64B36E28B381F683478091CE163 +:10AD3000335E72E0F378EA97423C3FDE566C00FEE9 +:10AD40002B25F26B1E098F04237D9D2DEC5C522870 +:10AD5000C51AC038DF1843A8DB1F1C087687F99393 +:10AD6000188775C13E88DA8F1C41D4756DDCF56B90 +:10AD70006E278C97D2887F646F7066E2738FC51AD6 +:10AD8000D483012C7067839EF658FF708CE5875141 +:10AD9000FD1001CF3D099E712985E173C68B749E1C +:10ADA00029A81C0EEBECB02E35D82D7EC81B8C1FAD +:10ADB0006BC73C3AF1BDE2641677D9413D14A08FD0 +:10ADC000AC233E3CE7AE99EF2A2A5F2E0AC7C06447 +:10ADD00006B7682FF4DA7C215F7E1BFA39F3B87C62 +:10ADE0003D9EC2CE4BCF97D93EC9C7F7FF65353CD4 +:10ADF0005F7028DA04C8BE791E891B4EFBF97E9E5F +:10AE000070D0A3001FBB77439E0B7998F91372692A +:10AE100076113B973E01F73B257F1AEADB2BB517EE +:10AE2000F7CA0B4E2583FF1A1750643A4EF4D033FD +:10AE3000982F9747E90FF328033F22AB177A5ABFA1 +:10AE4000D4015F68E90A1F003AF447DF687E6E9814 +:10AE500090AEC1917960F7CA25A7929D98B71AB4B0 +:10AE600043DEE32B66C65F07286969FDF65D433064 +:10AE70002EB639C57712E016E755C96B213C0FBBDA +:10AE8000288EE7A1257BF0FCE8C3631C796B158E47 +:10AE90006C5A2FB3D8309F6C5632931B318FABE571 +:10AEA0005F07D820E07F490A6C92FA9FAFC8C315AC +:10AEB000F33CC9F94494621EDA736F27399C2793D7 +:10AEC000E3B0DC9CE2C579DF5E1DFAC89605F71E8B +:10AED000F0FB03FA99EFAD7FE37CAF94AE5F2711EF +:10AEE00076AE37FACAE0BA8FCBD73F1AAED3C91CB9 +:10AEF000AEDC2B83ABED6FC4978730FAF40717A550 +:10AF0000E769A0279910C27B2116D9AF0CBEE7FFD5 +:10AF100046BC017CF62B836F33C8230932F86611D7 +:10AF2000B73159CF81893887A23D7F32CB406D6BD5 +:10AF30007EF87C8ACE12F0419719D91602FAF5876D +:10AF40009E43E9A6632209DA60FDB8CB8C717CE2EE +:10AF50000E0D8EB4AB2F73FA6D4EF10401FE4583D6 +:10AF6000B95EA850B70B6ADA897B1648A50EEDDBEF +:10AF7000033983F03CB5CEC2A61C9DAEE03EC18134 +:10AF800064E6BF8B3C5FB1BF77A7ADB616F63584DC +:10AF90005D5A33B4361BF6333CC9BDDB2501C7B956 +:10AFA000A603F22063DF7858A6DF5ED4D0CBBEC8FC +:10AFB000AF137CEF2747E4A12EDBF2863C28221E4C +:10AFC000349C74E998BF1FD2615EB4C88B49BA3A09 +:10AFD000BCFFCEC2F07EAFEC45FD2CEC44FD4BFF38 +:10AFE000A180FDA1FE0081386F28361AF575CBD0FF +:10AFF000E2ECC87D9CCBC9C29EEBFBB0E726D5F343 +:10B00000609385F823EF6538C3EE6508DFC710430A +:10B01000FC117C1BF66B24E2EFD5AF31E073419756 +:10B02000BEFC0491C71A6C0A569F34C27D16C5D364 +:10B03000A1DCD3E4997E92AEEFD6C925D7811FE17A +:10B04000F41EA83E1981E7A49A4E553DC577ACFA87 +:10B0500064047C69B55DAAF7190D6754EF0734865F +:10B06000547597FF92AA7D562B991E59BFA6CD32D3 +:10B070003DB27DAB8E9D43282DB060DEFDB58FCBFC +:10B08000AAF7223FD6E810F9B13A6C3F2490AC1AE7 +:10B09000B7D463F5DBC03F6F6672306C8BA21AA722 +:10B0A000E4DBE9B85F44ECC406FB63C3DBB355FDE6 +:10B0B0008D72B1AABDC7C2F268D6C90BAE4B017F73 +:10B0C000C252A21E8FEC56CDBB3BDFBA9F3C188309 +:10B0D000E17E8C43C29EE498FC9E79D7EB640F7EA0 +:10B0E0004FCBFFFE9F8EE1FB416C5D4DF9D60FE724 +:10B0F0003E429205EDB8C4CF0F8BEFDC90C2E4BCAA +:10B100004EC3B7E1FB47FE36BE7D4CF6EC8373AD14 +:10B11000E2FE16ED3CEFE1DFFFD4D4FBFBB92942A0 +:10B12000AEA254F7A484F9DE8ACF3F2D15F7EBB019 +:10B130007B5256D8D4F8BD957FE7211EBF5811EB3E +:10B1400049B27F4F1E98F1520C09F42AC771F8FCDE +:10B15000D381DFFFBD7BAEFA7BFA3EE667C2E794A0 +:10B160008EBDE2A755E0CFDEFBFB55FCBDF1528A58 +:10B170004A6FB4A628EC79F777D2F13DAC9B7AD729 +:10B180005F0E7CDEDFBA89587C6ED4C37FF7F51280 +:10B190004178AFD65F5F98C4E0EA6FFCDD291E19E5 +:10B1A000FD941F68B7A3C146A7E038CF805CAE31DD +:10B1B000B1F383543361BC43AC878876BD94CDF240 +:10B1C000DBE627FF01FD8868884150BB1CFD932802 +:10B1D000DC67B959924D00FF4D96D087BFA4ED8F23 +:10B1E000BF6236B17889580FC5E861FFEE4AE114B5 +:10B1F0007116711F02C4CB41DF8D183F14CFC13CC3 +:10B200000CEB3C80819F677898C29042F54FEEA18D +:10B2100099F141A013C479E8FB38982F853B5E670C +:10B22000C5F34A7D7D3F9E2AB0B47C3817C2F655DF +:10B23000E2771ACE45D241BBAFF265E717D160770E +:10B24000DF4B51E73F7F452ADF1E06F82A76209E16 +:10B25000735F9C901479FF4877DEA6C807EC230E35 +:10B26000DD1D17D2C48144FC67EC55C681BACFFD01 +:10B270006BE240FDC5B1BE4CF07D057CD2573CCBA6 +:10B28000B4873D0F6D8C427F43C4B7C47CFFCAF5C1 +:10B29000E2070ECF5F619C0F533C97A13C1CC5E2B7 +:10B2A0004287E13BB9B04F31291EA6FA25F1C4C34C +:10B2B000FA17F27DD3EC3DE904719C5511727FD8E9 +:10B2C000D6BB3E71A6B2EF5ECCE844BE5C5B12CA50 +:10B2D0007CA200D7B1F2268AD7E53B593C7539F8F4 +:10B2E00021E07FEC50FB1F5352993EEAEF3EB0B293 +:10B2F000044F622AFDCE19B89706E2E8D1BC8C63F0 +:10B30000FAD4C5C789E265112FCF707D7BC6CEDA2E +:10B310000BB845BB620EFFC9268B7755843FAA3C0C +:10B32000666E8075A9334B9CDFA29243E755BF330D +:10B3300009D7238BDB4E98E05CD475A92551A985EC +:10B34000AC1DE067B1A1CB64A7ED1BECBE5C785EE1 +:10B35000AF10CF76E8AF7499A6D3795CE4FED645FA +:10B36000238B7F5D8C62A580E7BAD4AA2898E7C5B5 +:10B37000B15D26C087A8D793D04D90077A5DAA17F4 +:10B38000BF47EB4F6AEA1F1968FD76138F7B6AF59A +:10B390004A7AAC4AEFCCDFF906F2F54D16B2268DAB +:10B3A000BEBF796792091633B571FEC1B22ABEF2EB +:10B3B000C3F489D6EFE84FFEA49D3C4F8D9764D728 +:10B3C0001B6940FF31BBDE4A80728DD48071E988F1 +:10B3D000BCD8632F533AE875A18448B913FB3EE308 +:10B3E0002C54FE0662DC829DAB779AD6C07D64AB9E +:10B3F000A83C40B93E95AD275771B9809C34165F83 +:10B400000DC8781F1A8FCBAEB030F8EAA33C0F9767 +:10B41000C2FAEB905E138F65F70C395B3CF1104F6D +:10B420000B1DD24B18BFE1F1D9153C3EBB625B4905 +:10B43000128CFBAF9CDFFE51FE9588C3D5DB0CC49C +:10B44000111FEE27E65BCFEFD1D0D251BC7FF95B65 +:10B450007DAF71D72FF8FBBEFCB68738FFD65F1AD9 +:10B46000A2F25BEAA93C009CF59772BED76F59DF48 +:10B47000DDDFA6F24BC2FD1DF8FC2792EF00C843AA +:10B4800095CDE2D7039F1B3C19EC7E35961F55CB1B +:10B49000F9A956E89B805ADF887B92C43D9B74BC17 +:10B4A000A7407EC478478C6CDF770151509F2DD028 +:10B4B000F815E25EA545D619282F8B5A8DE13C027E +:10B4C000FCB7C704FECE2D6DDAE7DABC5B2627F4A5 +:10B4D000FBEFF6369FE5D195073CD0ACA013F7ED16 +:10B4E000EA491BEA83FA1D549FC6411915847D144D +:10B4F000D2A19EDFAD91F9C014DEDB48BBC925C1E6 +:10B500003A590D4F1DE9C4F196B77F3F9C627D000B +:10B51000E74FD87A5A7D0FE0F3A90ABB07AFB0F323 +:10B520005741FA1D7DEC040BD8EB0B1D678F62BEF3 +:10B530006332F36708E95A7F3DFDCFDA0EBD0CF1A7 +:10B540009DDA8EBD6817FAA253F7B97C12C2F98B47 +:10B55000FD042DDF3C97CAF759D33DEF031D8D0342 +:10B56000DBF13EB0D0DDECFCBB434F3D1A0A7F72ED +:10B57000175D99E9C2F7DA10B7C702F1D3F1667621 +:10B580003FCF8772A905CEF727DA745ED0FBABE414 +:10B590008536B8E72485DFCF9128E9BCA0B7E7530B +:10B5A00059847BC242B30D4F839CBBFE2526984530 +:10B5B000E9F0AA89DDF3E988F1E17D0E219B1EBF48 +:10B5C0005F32FBCB91160A4FEA656B3EE41B0AB86B +:10B5D000C7978546427CE35ED9F747803BE358D75F +:10B5E0002909128BAD1EDC7FFD0D97E3DF1CD055C2 +:10B5F0006CEA65DEF63436EFA14E8317F641860518 +:10B60000D93D8C7DB513E79EFB92BB1DA55D3781AF +:10B610005C425CB6B7EF99D358BBF5B0A108F17E98 +:10B620007BD712C0E38E1F511EA1F3BBF04AD2A6F6 +:10B630009511F3FB05D717172633FB26EE832C3223 +:10B640003448B69CB0BE59287BDB61FE702F2BC6F8 +:10B6500055B87E013DADA0BFAC5E4F097857F1FDF6 +:10B6600023B18EEAEFDECBFA4B924A2FAD07BE2D07 +:10B670008CD42F067C5FAEB7A29F753620617EE822 +:10B6800059C2F221CEB64998DF75F630F3DF20A219 +:10B690002215817E60FA66C9D323D780782CF4B155 +:10B6A000BCE7059B97611E12D4EFA3FCB520999DC2 +:10B6B000A75AB84ABDEE10E3DD42BCF141F02B1EA3 +:10B6C00054CB632D61FBA7B08F0CEBACB38799BF54 +:10B6D000B8E451F538B59BA79C86EFD56AF29A126B +:10B6E000B9BED3FAD525693C5FA988145DCD39A8C8 +:10B6F000E5C433290DF6F1797EF2D9CD59490B23F2 +:10B70000FADD9221A9CE899FA3F66B10B5ADE79B18 +:10B71000642CE7A679A6A5817F7388CDFBB634DFBC +:10B720007418EFE221362F6208B1FB326B989E3518 +:10B7300043F091FEA779AE2500F9B13F85FBB4280F +:10B740007ECD66A6BF85DDD7EBEFD2C7C17CFF5C9F +:10B75000908C72FEDB4915B8DF5AE2C903F95B5BD6 +:10B7600065C5FB1236EAD8BD791633BBC727F09BF7 +:10B77000D17B80A507B53F520AF716C85D4112A7D5 +:10B7800040BCA819F35E5AC711BC174D7CA7B8CBB3 +:10B79000BB0DE0C99C61C5FB4D1CFA8DC9104F71F2 +:10B7A0000C33F1FB18981DAAE734F8654716DECB79 +:10B7B000FAF9CE6BB11C4A187F887C7EF82689D8AE +:10B7C0007F3BDF44EB11E72587B64B41236C85B403 +:10B7D00037CF06FAD6ADEC9C08F7C1849E21987F3E +:10B7E000E37835A554890BC357B7ED693B9E4BE011 +:10B7F0007A6F2EAC1761EF86FB5BDDE70FF87AA757 +:10B8000086F3EFEC9D6C9D333786E17721716742BB +:10B81000BF391612A7A3389B5BD65E88F7022F3379 +:10B82000DAC0DFBBEAFC136EEFB4EDCEC11A0DF443 +:10B83000E58B668C47D5FF2A16E379B7EB42F8FD16 +:10B84000401AE3A7FAC17C9F6010F140BE52FDAEE2 +:10B850006B715FCC0CF731E5A37EB3005DF7811E01 +:10B86000A6F3BEF5E528BC0FAEFBBE1399F8418EDA +:10B870006FDF9584EB5A479627EFCE1CB877A32B42 +:10B8800013E59FEA3389FA6A2FFEF2E8543827520B +:10B890009F4AF531AD9F4C3B3915F25FEA07762D93 +:10B8A000811BCFADE997D9FBA15DA7A09E986EBE85 +:10B8B00001EBF95D4B20349E97EE64754838A38CFC +:10B8C000352E3DFD06384772CEC6ECCE05238B1BC8 +:10B8D0005F7871C8267F04DD87A6333D7D2E8AB54B +:10B8E0003BE762F73893EC2ED5BDB771BC9DB08FA6 +:10B8F000629EA21F1D1FF775B5E31F4863FAF65637 +:10B900007E4FCDF818D21AC5EEA5F643BED66B3BD6 +:10B91000AF45BC3C038B41278313F202C438DAF3F2 +:10B92000EFE2BBB7813F69C5F63591F6E55D6E2F55 +:10B93000E87756E177723C792027F5D5E9794037E9 +:10B940004A2F03A79781DD9BBB11BF0BE3DA20DFF2 +:10B95000AB8CD995F109091B41EE05DCD43FB2A2AD +:10B96000DDE6F0FF27FFCEAD2D1C5F1466C88FAB60 +:10B970007F89ED9B027DC1DEE471BC0D4D67FC0447 +:10B98000ED71BC748ADFE1573FBFCFFE41F38BA05E +:10B990008B07F8E4B58E214897BC6EBA3FA21AE730 +:10B9A0005CB3A65F3161F7B5D8B3B0DF4FF93DE4C2 +:10B9B000E2FE5CE8E7CA65FE07F0BFB87F8C780658 +:10B9C000E0FE561DD70EDDF786B5B3731564109DE6 +:10B9D0001FE0B5BAB280CF4FE6F39323EF3DEE966A +:10B9E000BB23A1CC19B13DF9B41BEFDDE3E5E4F3D2 +:10B9F000F154F2DBDB7840F7BEE891C5E9FA77A3B2 +:10BA00008780932EBF22E9D08D670D7C029F20B7DF +:10BA10005C0E31DF532B87897DC9AFEB077E8FEF3B +:10BA2000DF2DBF97D211CE51286A7E5EBEC3A55BC3 +:10BA30009813EEF7C0164D9C65C71D7E58FFDFBEFC +:10BA4000B30AF34B8D2B09DEC71D7A458FFAF82216 +:10BA50007DB786CEE3E2565700E6B19AEB99D5B6AC +:10BA6000509C84711EBD0EFCE0105D5F833D0F4550 +:10BA7000D1E770FE813E7F3A62DE17BDA1385B04DC +:10BA8000BD0A5ED5C7C17E595780FAB9BDF81DE21F +:10BA90007EA82EC2DE53BF2CB311F2D1DBB2F2214D +:10BAA000E7ED730BC96C7440FD9A7C3F722C8B4F91 +:10BAB0005EE4F9567F26DEA3D7833DF67B0C2994FE +:10BAC000AF1771BEBEC8F3B06ADF6889C3F5DB4E3D +:10BAD000EAA7C5F5F4BB965837E3FA6E29F8655224 +:10BAE0004F7FEB361EBFACDDA079BE93FA61A03765 +:10BAF00034F9E23E1E0FD6FA6177A6F3B8661EC986 +:10BB0000637692F90F77F2B883C8C3BFC8F3F0E940 +:10BB1000BC911E9F6F9558DE3D51DE867555FD0127 +:10BB20003DDE7345202B7B7464FC3364027F4AEB5B +:10BB30005768CBF3CF7F58F463DAA4EE850F727F9A +:10BB400049CBF32FFC69F0CB50FFFD7B991F909EF2 +:10BB5000EDCB76FD17DEDB76719799809F7C71D7F0 +:10BB6000EB993F86FA4B6637C07D71A519F793FDB7 +:10BB7000BB62F13CE1C50C7EDEF7956F72BB30BE57 +:10BB8000B40AE9F5EFE926A4F3E73BFFFA11F0CD9B +:10BB9000E73BCD0AF843B7EF8A415D7EFB4B517816 +:10BBA0002FEBC557BE298AF44FFFD6F9D4F37B0992 +:10BBB0002FC6921A8CCF19429912FA15631340EED0 +:10BBC00096EFD86D82F55FD9ABFF93DB05EDB6EF4D +:10BBD0003691E1684F9E84BCD8DF6C287D08CE8BFF +:10BBE0005E001D47EDFCC47F6B413BAFC50B1DF7ED +:10BBF000C28F611EAFC6207D285E6A61BDD6173E2A +:10BC000076A7B3FCDF7F367C5C3476E2BD8317B762 +:10BC10004923611D14C68BC4EEEBDE191BB04838F6 +:10BC20007FF67CD737B9E0EF7EDADE8CF738F43771 +:10BC3000EFAEFF75F396825732EFEFFEC9F97F75CD +:10BC4000BAC2F2E23472D053FE7FFF2F58FF5DACD0 +:10BC50001BE1BD42F91F90F1CF39FF1F4CF7ED12E8 +:10BC6000C6E5FAA3FBB87FD279F74FF73738DD6323 +:10BC700065B867F1E22BFF934922E6DFDFBCE7FFFF +:10BC80007F3A6F6DDC73DD2BE409F0338C534D4646 +:10BC900038B733D52BE1EF2CCC849D8E7C385F12E6 +:10BCA0003A321DF2466AF4789E963E0F2AE8C7792A +:10BCB0003B17D3E76F15AC4B067B6094DC9D1ED819 +:10BCC00057986DC4FCD699727229F80F093BC913B5 +:10BCD0000AEEE3B0FCD799B352F2A1FD41D2591A52 +:10BCE0000372358F9FAF49CE3644DE7F4AFF661C14 +:10BCF00028C2F32BF8B72A83DDE730B3B0C508FEBE +:10BD0000CC0D2DDE0688AF4DCB0C0DB245C4C95A03 +:10BD1000335CAC9DC16B84F3D7338160BDEC0BCE3B +:10BD20008441ED00A7D788F100B14FE419FA83F6FA +:10BD300089469842C7EFA2F3910FB278A991FB49C7 +:10BD4000223E3215EA59E171121AF7FA26D0F5CAE5 +:10BD500073196CFD45166F2C4F00FCD30171B9515E +:10BD6000B7BB3CA120A2BEE284FAFD7DD244557D42 +:10BD7000954B5D7FB0646264FFBEE633B5C065F489 +:10BD8000D106D58F4AAAFC55510AF8D63593D9B8B1 +:10BD9000AFEEF02890F74B1C0538BFE73274AAF5D8 +:10BDA00066184F0C2FB379BE7042295910B95FF253 +:10BDB0000A8FAFBD92C1D7110E1E5F777B94C8FB6F +:10BDC00036B4E3FD69E90823C457299F60DC6EC6D9 +:10BDD0004E625722F68FDFE4E3FE29DE57CEF2589B +:10BDE000D8FAFF686192EAF755B4E55BB317640CC3 +:10BDF000A4ED4BBD870C202F53174F33821E385AAA +:10BE000075420721A6110319FC73BE5332AA22E61C +:10BE1000F13E9FFFE19FA9D771DD7067B2F9BDAF19 +:10BE200063FBB6EFC7F93266ABFA5BB0FFD158D609 +:10BE30007F848118F41171B5A93001C8932860F48A +:10BE400099F39D27A33AA2FF193EDF23FC1E1AC0D7 +:10BE5000CF8288F7E9990C3E812F2D7CE9998CBE21 +:10BE6000CD63D9B9D8A35309FE9E4042CD243C47A7 +:10BE70002AE2C8472B581C19E2C5B00E59CAE5F48E +:10BE8000283F375CCDCF0DBF6DF465009E96D62C54 +:10BE9000C5B831D9C0D62316FA3FD80FC90B1A54EA +:10BEA000EB936A4D9C3781C7891334CFB5EB0D7383 +:10BEB000A6357C4E95EAD3044E1FBA5E56F07E4CF2 +:10BEC000CE9FEFF7C39FDAF3C17DF1879CAC278645 +:10BED00091E1F5C88812B6BF32C2C8E4FEF001B6DF +:10BEE0007E3B5CF1851DD6A96734F1E384C616DF7D +:10BEF000A088FDD07593CDEC3E34BE4E3AC2D749F2 +:10BF000087BDEF584B72C2747BCBFB851DCFC90830 +:10BF1000F920DF2F1F234C6CFDBFACD28CE7AE960F +:10BF2000B9DD1F2E03BD50699601BED2820519608E +:10BF3000C7CAF563FEED6E807BAB19CF5E7DFA8BD1 +:10BF400077D2214EE22EB86722DE1721C9786E1B08 +:10BF500014D7F314FFD32B171C8471A76E9524C834 +:10BF60000316FA6D7C26D3CBFAAD77EC4FA1E3250F +:10BF700054DADC9348989F3EFD8584FCB4642BE33F +:10BF800027C13FB771BD5E56199A07EDD66D352BA7 +:10BF9000C05FB76D657CB36CEAF6838308EC03B8C9 +:10BFA0004B1268FF29990A8B73105F11EC2F4CAD6F +:10BFB0006C5E5F80D366E7B5C57894FF1E82DF4371 +:10BFC000F8F41923DEE723C66B1EBB149F1F7D46C2 +:10BFD0008FE7FA9710FF44B80A7609F0399CB32628 +:10BFE0006DFBE1BCF1543EFEE18A9136B0DBDAFD37 +:10BFF00046B1BFB084FE03F7D7271468F639366B15 +:10C00000D6DFFD9CB79E0D7C2CF281AE0D8F2FE804 +:10C01000ADA5B3361F48D0A1A3585F01FC34C2EED2 +:10C02000F145EAD956AE7F44D9B1F3EBF79781DDFC +:10C030002D60E7A43DC43601B68267D796148039D7 +:10C040002BB5E4BD06F5B90DB44EF17467A6919F0A +:10C050007339510E3FA57273B2843FA9B240714D3E +:10C06000849FCC580D74A1EF176597EC877054A589 +:10C07000BB0AEFF52DD73F18930B7245BF03FC4564 +:10C08000F59A5FD78B1D2EA14E52E4F9F6324B94F0 +:10C09000EA5C7CB96C53D52725A7A8DA4F565CAA71 +:10C0A000F753B287A8DE57BAF354EFF764B2BCEF88 +:10C0B000670B4F57DE45E7F9EC683DFCF21839088D +:10C0C000787184F142E17D14E03D38FABDF45BE81B +:10C0D0007C7E96C97EBF8518581CE6D66E7EEB9C8A +:10C0E00007E3ACDBA8477EBBB57209F25B6DE124C8 +:10C0F000F45384FE5CB781C9C13AC2EEB59AF10B24 +:10C10000B60FB7748CF18439B727DF54F3784DF349 +:10C11000580A27F4A770021E976CD0B4AB9C88FC19 +:10C120003B43A32FABB91ED5EA572DFF3D5BF84D1E +:10C130002AC8FD6F32D5E7FE9F95985EF7BFCB7E8C +:10C1400057A42FBDD8AD0F357CB787EB2F5196EB99 +:10C1500073E241EF8C30A9DB89F24FD42F3650C403 +:10C160007FD064C1F2C32619CBFF6C4AC6F2449358 +:10C1700082E5274DD958EEE1762BA191D237623F67 +:10C1800034A1D26BFA3EF9D1EACB835D3A949B831A +:10C19000E356C7B9ACE1BC8A8399367C7FA6F81315 +:10C1A000AB9413E6DF8EAE8FADE07FCC26013C8FE3 +:10C1B0003B9704F17CEE7CD285F59BE148AB3E9C3D +:10C1C00077B1887870DF2A5EF66279103E9D4AFD6D +:10C1D000FA27973D0CF776E5825DB6629E696BA4FF +:10C1E0007CD80730BCDD9CE9399E5908F8ED3C3E0F +:10C1F0001DF4EB382301FF92F0FBA312D85E1D79EA +:10C20000AB7054D4C25EECBB2B73E1A9CCC248FC2A +:10C21000F84CD0EE59711F11BFFFCA903808E3B433 +:10C22000A2DD671CBF4B333CE73381EF79BE08F5D5 +:10C23000FB93BFD7FED8DD6887C57CA84591208ECB +:10C240001B3D4052D9E111269F09E2AF4BDC0DB8EE +:10C250006F5DBA212FAAAB17BE7065FABECD74AA66 +:10C26000E167FA85F1535FF4157C71B57C25F8A779 +:10C270002DC31333807ED7C0EFA532D86B92016FE8 +:10C28000449E81FC61D7CC478B87DCE24F1E1C09A2 +:10C2900006AA5287F7B1E676B8A3408F1CE6EBAD4D +:10C2A00083951FEF1944DF1FEC60F7C7ACAB18157F +:10C2B00005767E9DD59F09783923B9A3FE15F4D163 +:10C2C000D37A19D74784D9C9A5958903814ED3C696 +:10C2D00016A21E395DE9CA07BD3D6D00F337CE12C7 +:10C2E000464FBF57C27BB0CE4CFE69268CF35661D9 +:10C2F000523E7C87E82F3FBA82BEFF6A83DE0EFD86 +:10C300008E162C9D79172D4F6FD6B3F3E315AE0023 +:10C31000AC63CBF5C7ADB8DEE5FAEE461897F67F0D +:10C320008B284EA0D78C0D7AD45B3782BEA37A6659 +:10C33000D63CB55E12F6FF34F89312FC6E8EFA7D91 +:10C34000C20666777FA8FFE719F0FDF7BC9CB5B27F +:10C35000787B355D7FC26F2F9755B88CA7601DD253 +:10C3600028215F08BD555DC9D6A5D5150B465AE8ED +:10C37000FCE203A324D08765954A39AC4FA7564801 +:10C3800045917EE1D48A3B701D3D75C31DF87B59F4 +:10C390004B33BC558C4FBCDEEB40BFD3EF01F38F6A +:10C3A00008BCF73ECC6FE986CF8E0CA2E30FAFD46A +:10C3B000C9604FD705AE8D053A1FDEFC8503D71542 +:10C3C000DD72D066827CC5D2CD9FA5821C68F584C3 +:10C3D000BF94E0EF7F9D9748107E8FE97C496229EA +:10C3E0008C7F3EC36460E560564F29B6B0FAC40A3C +:10C3F00028A99FB717EEBBFBBC92DD0B76439715C0 +:10C40000EF2DBCA14BE707FAD575E94E98213F38CF +:10C41000A4BECF66FC25F57D3625446D87DFE6F9A1 +:10C42000B86516B53D3EFFC63C5CF797CB6ABB7C52 +:10C43000434CDC26683F297988C67EE7A9EAD32CDD +:10C440002C8F714AF66855FF0E13C986BCD590141F +:10C450008DBF4B554558FEC1345AC2EFFF4C7597FE +:10C46000A8DAD7D1053DE009DA41DECAB4E2C9AAAB +:10C47000EFD4413FFABCCAE255F76BFC1AF9E3FA74 +:10C48000C6CBE8EFE705DB55EF471EE8508DE3EE3E +:10C4900094CB60399C7FCCBD174A911FBD0AF2E056 +:10C4A0006859D0E52D03B7B7E84CC35E28FBCA9B9B +:10C4B000BE474FF0F7B0BFD1F96A312F5417685F0C +:10C4C00040E77944929D50FE44F2FDFB00C8DB0832 +:10C4D000B59541DACEF597032D50B6C079F678A020 +:10C4E0007365CC5B10876A97D09FAFB3F2F3ECF61D +:10C4F000F6DCC8DF77E93ECF9EEC495E40DBAF76E5 +:10C500000CC2788CB72CD603FBCDCB5FB816CFC945 +:10C51000DD33B0E459E06B9107471CEA730FF70C69 +:10C52000F43C0FF97ED1654C6F904946D437D13A2F +:10C530006F1CBFA702E38BA64946CC332E50987ED2 +:10C540008AFE235120AF373AC1A71F0EFDA648042B +:10C55000E24A02BEEA4A761EFEF5013C2EC0ED53C9 +:10C5600095F3C85658BF1780D0D1E74595CA3EF815 +:10C57000FD6A221B64F0D7128E79E5E114CE1D8E80 +:10C5800082DDC0273B8E758E951468AF60FBA48A50 +:10C5900092BB4AE07B8FEAF1F78576C81362A03D33 +:10C5A00009B8D93E15CF6F4D98A7BC07FE16396064 +:10C5B00024FCE773701EF2D0E867601E09C73CCB0D +:10C5C00070BED956057EDF86C2E782DF8BFAA409EA +:10C5D000EEBCEBDB1E7DF2A0D3097AA5AA4476C29D +:10C5E000EFAC543DA2EFFE7D7930E1F073CBACFEB1 +:10C5F000E5DB13E8FB2DDD75122414EF6B4D44FCD5 +:10C60000FE3C89CAE6BF4FCCDA4F9B60C5F8847800 +:10C61000EF27C5784E9BBFFF6A1A8C276BC613E3C2 +:10C620009F1BF0E5DBAD39802799E35B76627EE402 +:10C63000E5EFF077E344DE70B45E2902BE5CA853F8 +:10C6400072A1CC8DF77D06FC28EBDC83A1BEE2D085 +:10C65000C88F204F99EA9B538F83BE9960443D7CDD +:10C660007B36BBFF7A874979E118ECC73AA331DF03 +:10C67000C7F8C0ADED1D74DCDBE5AF51CE28FFE29D +:10C68000B9FECF3B7576F09317EABBE7E3813B66D3 +:10C690003ED685EB207F0BC3F3F1C0B9C9FF074934 +:10C6A0001A667E00800000001F8B0800000000005A +:10C6B000000BCD3A0B70545596E7F57BFD4B3A498C +:10C6C000E74B20045FA7138C12A0C9CF10023C12C5 +:10C6D0004032C3A713508382348A029A400C5B1AFB +:10C6E000476BBB99464556AD38CE8C4E0D5BD55049 +:10C6F0002BC3946E55CB809B51605B65352AE5B6A4 +:10C70000823BE85254CB8E882390105C91D21AF66B +:10C710009C73DF23FD3A6482D66ED526953A39F7AD +:10C720009D7BEFB9E79EFF7BDB2C00500FF413736A +:10C730003800EE267C1CC08DAAC5BFA502FF5FE3B2 +:10C74000B04001C02607D3C0B61CE891A7025C2800 +:10C75000AFBF15F2103E65059000F6D243C4438585 +:10C7600069911711FF206ED1A46AC4F3D276943177 +:10C770003EE82871014483009A1D69433E0BD40EA4 +:10C78000AD7BA1E1E6F7BDB45EDC620115F948D8E6 +:10C7900040AD0298A640CC5E0950DB70975C82FCED +:10C7A0001CA3F9D7033C51A215AA353473AEFB5430 +:10C7B00039B2A0FD4CBE9C0E70997E660F87000AB0 +:10C7C000101DFD5C960136D2B17310D66DAE802976 +:10C7D00008E74A9FD909767F0D4A1591077CFE0C20 +:10C7E000009B3D12F9399E035E77FA5EA4C92E6D57 +:10C7F00042CBE4A1755FF2A0C0908F87DDDA4B1EBB +:10C8000084EDDD1740C91D9A7F6633ACF223DF3D0E +:10C810005658D582B0FDAFF2AA1694433BC056A934 +:10C8200092E09BB6AE8A243EA3E741D165321597CC +:10C830009E27576425F0B9F24BF9337BE6F0732954 +:10C840008185BC5F8BE4BE05DC00BFF4ACF32B63D9 +:10C850001177BA6F91105FED5926F062F72D16C46B +:10C860001F8DBCE257A6233ED6FD2B8B0F60BBE786 +:10C870003DF1DCE3FE98F05FA9EF89E7D30CBD380A +:10C88000E4D790DF960C81DFAC1EF2872A882F97C1 +:10C8900046F73DB8C019B17B4696FBD2EED799BF9B +:10C8A000119FCB12CB07DAF00FE57CB679EC8E6DD9 +:10C8B000B81E946AD32C8877B48EAFDC86FAB35C4A +:10C8C0009558CE05786775F8F76F360007CAEFEC14 +:10C8D000E7F17B2D5E5C67EF93E7A54CDAEF20EF85 +:10C8E000D70EEA64C0F1E74B03AB484F3E921227E4 +:10C8F00000EFBD63D19189403AEE1E28A5FBB11629 +:10C900000274E7D0791616AEC6FD06F3149F1DF526 +:10C910006F3904AC44BFCCF5679B8CF4ADE0B3D267 +:10C920007A90A70C240C3D2A01D8D0E064BE378051 +:10C93000149124D2EF282868127B82BD0CB5DE3713 +:10C940008E115FCB413949F32C682C97F17CCBDAFF +:10C95000AC2713FA3D5FC6BFD685661C747A435F69 +:10C96000E1FBCB12D9E1DF110DF2A7395C31790A75 +:10C970003DB59E49E6E739B7DF53920FF075BC69C4 +:10C980004CA062E81CC3F677955A490EA97C2C8509 +:10C99000988DE847E3E75C46FC4E1BCAC3AADF6FED +:10C9A000478EA78CE6A1BC9F16F246F9236ECD8B6D +:10C9B00017045C24DF9755F20783E50EB0A39CD2E1 +:10C9C0006E3C362550315C1F52E5F71DE9029E672B +:10C9D0008C92B0F9709D0DC7408BF07AEDF2645ADD +:10C9E000AFD703E44E8CF9BF233D41FAAC5E89E931 +:10C9F000505F7CA42F795E8859505FF3FEE5DD9788 +:10CA0000C312D165309DA19FB3D321EACC19D223A3 +:10CA1000D42F1FE997A14FB39BD0C7E0FCD9B96FC2 +:10CA2000BD1C469E02AAE06B6F9AF07B03FB9C91B3 +:10CA30009D9EE17C1ED0F53695DFFDD7C8E7FEFF51 +:10CA4000253E0DBF64C8C9F04BA0FBEDE56D9E9D72 +:10CA5000646706DEBA1071CF109FC3F5E79FD4ABB1 +:10CA6000E9CF687A53AABA591E867F34F832FC1C83 +:10CA7000C6910551135FD93BCC7C65B37FC8EAFEF4 +:10CA800023FB693943E1F165E5853B641A8F0FA209 +:10CA90008F06F84A2D11F28D5E02A820FAFD4C3F58 +:10CAA0009A1D1A7121F51C469C187E1E95CF931A6B +:10CAB0003F66A243633F4E3109F99FFD6D0094F23A +:10CAC000A1F5E6C0FA2B7E9EF026C703267C9EFBCE +:10CAD0006113FDCD859B4DCF9BD5274DCF7F5AFE52 +:10CAE000AC095FE4FB8D897E49DD0ED3F316C76E7A +:10CAF00013DE908837A13AC107C105A09401CC3A52 +:10CB00003DF016E1B1A09BF13783850C0F0555B6BA +:10CB1000CBB783E50CFB823E1E7F2F58C7F07050C9 +:10CB200063180FFA19A6DAF3E23FDCA6002E5C17B1 +:10CB3000EF69A290F2CE84401DC5CD2596483803FA +:10CB4000EFE3A6E35199FC02047CA6BCE3B137A64F +:10CB5000FFFB26B49FDCC33238D591E349D6B73208 +:10CB6000685549F8C201A0F895852E338A70B10244 +:10CB70005BEC78BF2D2E253606EF6B961EBF29FC89 +:10CB800000DA519B035D16EA535B9BE40B038F872E +:10CB9000208759F03B909F5B7455C4F15800E9ED34 +:10CBA0000A84683D59936116D1E5E52A94D72C2370 +:10CBB00022E4F316DCF33AA4BBDD15E5F8B1BCEFD3 +:10CBC000E71DAB711CB6846A48FFAFE42FA14F2D5F +:10CBD00097275D7BFE324BF78B8F49BEB84679575E +:10CBE000B6C2F9896147C6BC5CFD7C06BE44CF175E +:10CBF0001687437226CA73E043F0ED5487EC10E5C4 +:10CC0000B395CE63D8418B5B895D9F49F1F4D926FA +:10CC1000A26F3FAAB25C0C7B68EFFE86E7A5EA3FF5 +:10CC2000FAFB30D10F1E031FF9BB9BCE4412CFE19C +:10CC30003E75033D4D781730E3FB4898E0B458D477 +:10CC4000A4A7557DBD26BD34F8DE1F6C63FD3918E1 +:10CC50000C308C05D7E97AD9C9F8A16037E36F07A2 +:10CC6000430CFB825B75BDECE1E787832F30FE410F +:10CC700030A2EBE76E1E2F55851CD77874BFE49861 +:10CC8000A3FA2793B8051CD20B3504497AD15E2844 +:10CC9000FCF168FA31923E004454F2D3B7633C246D +:10CCA0007F760766883310B6AD0D4DDE2CFD78BD5E +:10CCB000F8E1F13EE0BB96786FF839B949E6FCCB74 +:10CCC0002E3FE0EB74FDF0FD6C7691478DBE9FB872 +:10CCD00017233FB366FFC7AE188E6D711DBD93F26B +:10CCE000B1617248C9CBF6610D43FCFE50FE00F302 +:10CCF0003CBAF7D1F85B5DA2EDF6E427C533FD3E03 +:10CD00006D93C47DCE93CFECFA2DE9FFDE74CE2770 +:10CD100053F337233F33F837EC2FD55F6E745F60E2 +:10CD20007B3A2359385EA79E7BA305027B70BCD259 +:10CD30000E0E09E5E42D697C9DF89A2737C435DA93 +:10CD4000DFADF892F3A361F3BBCFF3FA233EC7F54F +:10CD5000C96F6E3C50E3BECB3534FE9D47D2CFAD9C +:10CD6000B84F3986E472AD7A3A73A0CD64F7FFEF1D +:10CD7000E2A3F67BD3F3C5185648BE4B02CD7C4FD9 +:10CD8000B753452793DDC6589F574282F155A802F5 +:10CD9000045783CAF06ED06CF4FC1ED00204D71680 +:10CDA00007CE53BCB34A09173D3FFBEA77A5941F52 +:10CDB000CBD947CF3D07C3FDDCB5FA35C39F19FE7C +:10CDC000ED711BACA33C6A4BB62D447A69CDCFE123 +:10CDD000FCC8B80FB9C4C2F63592FDF44FC30B437B +:10CDE0007EFBF7A5737DD39F91C6F58DB6FF9D633E +:10CDF00012E54131737C36EA91AA153E8ED38071DB +:10CE0000BA8CF43EA53E99A788BA0D145FF9CAA45E +:10CE10003A3A6C417E510EBB11BE827C67AE482807 +:10CE20006A92BE4DD0F99DB37C2E703DBC42E33C6E +:10CE30002FD38D7936D5A30EA876D2BADF5FA8A0FE +:10CE40007517EB79C0362BC4E8DEC6D44D93280F96 +:10CE50007CCEAD5D47F551E88986EC53E857016B10 +:10CE6000DFCBD70DC72B6549A3730F348BBC3E5561 +:10CE70009FA79688B8DAAEDB47652E380A69FF00AF +:10CE8000703EDADF7C03E7D3F34B72986F5C696224 +:10CE90002BC5150C17903F14A7CF38451EBEB4D72D +:10CEA00089017968FDFA926C5E7FA9E36B53DEBE5F +:10CEB000A1FB92C95E375488F35786D5AA07106E36 +:10CEC000A2D881F5FB3345FE9974CEF5EFBF6C2BEC +:10CED0005269BFED0F7E4AFEA0CF25FCD1E17C3E1A +:10CEE0006BBF046DD124392F759C17FD0BD861D20F +:10CEF0008F238BFEC4F5DAD2BDE921BA67832FA355 +:10CF0000CE33FC57C7C12F4F4009F9ABF3271E2181 +:10CF1000F9EDB3EBF9C5257E8EF5616B099E6B4F7C +:10CF20009F85E5DBD16CDF497A098A3AB9356348D8 +:10CF30002EFD5F9AF94AE5CFD8CFE0EB8C2499FC1F +:10CF4000E32A5D5F5EA7B88EF06CA66F25DDCBD9B6 +:10CF5000578B2C216968FC48767C4AB6EBFF2ECEB5 +:10CF6000DF0E7ADE170D4F7653DF610DE67DAC07DD +:10CF70003F2EBE1BFA031AA8EE026EBDF17E80871B +:10CF8000520AA8EE107838032236A4975C6F5F220D +:10CF90007B9DA9432E8690AE41E7FF71A913883F80 +:10CFA00007F430DC26F95482B325BF02BC5F84F558 +:10CFB000703E748EA7F1F09C44983655F43EE0E93B +:10CFC000BCD6FCCDC465013C0E882BB690B580EC78 +:10CFD000BF35CBF7A23A24AFA5FA7EEBF0AF01E55F +:10CFE000A26483AA20FD3ACC37AD28D7656B973F62 +:10CFF0005D41F4EE069663AB7E0E9A4772BCF57007 +:10D00000E7228AD7B7BDF18B0F341CFF32A7A79652 +:10D01000F8F94B7CE7947F469AFB8EECCFA4E7EDC2 +:10D02000B1F87C143D6C8001F6BB86FC57409CE156 +:10D030009D30C030006E7E7E17F818AE013FC37B76 +:10D04000A193E12763B777A005C0F2314F59BF869E +:10D050002139DC9FBDA596F67137BE50467A176A16 +:10D060008472CA832E3A33A75091D1ED10F0A1B447 +:10D07000CC9D045BB25D21398B9E4F8850DDF3F768 +:10D0800052600FFB9F4660BF1A3A9111A13AFFA868 +:10D09000B5732AC9BB3FDB0612D2F7E70B3F123A42 +:10D0A0000BDC4FEDB7EAF4E755C6AB9B2A39BEC39C +:10D0B0004595F3FE19949F3886F29BEA49169E0F18 +:10D0C0009705FDCC01C594CF54537391E67F87CF6C +:10D0D0003D147F95BF99EF6CF2E6F0F9A7D300FEFF +:10D0E0005B9D6BE94CAED3C38505A26FA7E376D5F4 +:10D0F000CD75FB5F743FD99F69617DC19F658E5A75 +:10D10000E257DCEF8CFDEFEB7A89055401DD9B3EA5 +:10D11000AEC4DEA0F10D7A5C416FCC796003E929E1 +:10D12000E965AF39AE40E12485E6D7EB2C18759957 +:10D13000846BADC821BD8ECB74AFB36080A1066E89 +:10D140008E6F8DE0633817FC0C51CF192E801E8630 +:10D150003F8128C38510670837FA7C95B8BFC51191 +:10D1600093296E033CEA3E8521129AD75AA8FF5CA8 +:10D170007D1B74465DA3CBC5E5BD56B9A061D75EE6 +:10D180008B5C0282BF54B98C2F677B32E462C8C3C8 +:10D1900009914292E34C48C804A9954CF3E7A05981 +:10D1A00012DE041AE3F34695472C0C78BEBA4440CD +:10D1B000E1BA3D551E4D424F0CBD9927BB7C318ACB +:10D1C000434773A7515E3ACB6BD1E323703ED1E561 +:10D1D00016E7AC85F2E71B90AEA6CF8A9935C06BF7 +:10D1E000410DFE0B6D60103A65EE3B27007A70DF53 +:10D1F000FA3591B003E9C66E05379DCD5E680135FD +:10D20000498F9D6A1AA849795D7A798E09AFEF93A3 +:10D21000B96ECDF08D33CDCBAA2B31D1BD06519651 +:10D22000D35EB273BAAF9016AFA81DF2B7D9DA8D3C +:10D23000A6F933E3F72E247BCF5D50691A87AF85BB +:10D240009DD5E12FDD8F3381FE1761FD19B3FD857B +:10D250009DE83F701F3B3C759EF202E7D1247B2482 +:10D26000FD76CDFF92D6B743D23C9447F7F1399182 +:10D2700043497427BD19797C1FE3613CD9B1710F13 +:10D28000A97E1FFD5B21C5A5EAF4C60B54D2DCE1E3 +:10D290007DB185DE035457356EF222BED6FB8AC0BF +:10D2A0006734FEA104F1F5DEBD2DF4DEA07A6A63D9 +:10D2B00095D507B059DAD73217F1F087C2FF812A26 +:10D2C000DEEF74E9F54EF843E1FF065D0FFADC741A +:10D2D000FFE35D3ED29B276C7836E4C7611750F6BA +:10D2E0008AFAF2B520CEBB7E885FBB5DE48D481F15 +:10D2F000A23C2FFF746839F51FCAA95044FD99B0AC +:10D3000020F6A655251B53ABA8AF52521458E5CDB5 +:10D310001F5A1FF9E1B857A4F363CC9BEEB269C45E +:10D3200017E479AAE8FC8F16F9D7D0BCFE0C07FBEE +:10D330006D836EB79E9F4E577AE44D2E1A07B6DF67 +:10D3400091E02FBC5ABBF72AE386BD4A28E4159426 +:10D3500037DCE773281C671BDC57F24FBC8FE96B87 +:10D3600034995C7E6D5BE75B0437CA03F792FE3D40 +:10D37000E20D3C4CFC75F8CF4D984679FAE7366ED5 +:10D380006EE1050BBB03E1AF0F1C7CF7912281FA24 +:10D3900021C9AF6C3C78E99BFF44FBD938E8F21116 +:10D3A000797FA638E78CFDBFD9C4720097C98F1A60 +:10D3B0007EA8BED71E233D9CB1FF867B886EE6917A +:10D3C000E35ED2DBD9C713616A63F51FF85391B0EE +:10D3D0007FE37DDC45E9C7E435E81F382E751D90F5 +:10D3E000F8BD529704EC2FBA3E967D48015FE8F1F4 +:10D3F000B5A3CFCAEFC3D093BBC6D68ABC82CEF743 +:10D400008543E8593BC433495EEBB6DFBD90FBB6BC +:10D410001151CFABF84B7677D33125A5EF8B7686BC +:10D42000741DD194BEEFF6A62F68BD8DC9F1F02A08 +:10D4300076F612D919DD5F3114F379E4155981AB11 +:10D44000E4AF06BC18D42287F0623B407B85EEB384 +:10D4500046012DCAEFD51E65FBE82AAEA8B48BBEE7 +:10D4600037FBC5B54E71BE7B8A453FBEEB1F65706D +:10D47000B19C6C11B2A31DE846EB489FA24FB39E2E +:10D48000AFD5CF60D8D3FAAD12BF4F85EDB9AC633D +:10D490005377D959EF77ECB26F25F94CDD35462338 +:10D4A000187E2C2D44F168AA4DD42561E7C0387E42 +:10D4B0008F7BC066A13C81D2067A6F39B564A084A7 +:10D4C000F29ECFF43816D6F31FE3BDAEE1C7C37AA0 +:10D4D000DED39531710CD56B57E8DCE384BF37FCA4 +:10D4E000835E8754139F547F0C8C13EB38C539DE51 +:10D4F000F8F0D674AA0BF629FE74B78BE2474916EA +:10D500005CA51F62C09A185EC2DFE86B541F7D2ABB +:10D510004EFA5CFD8222E432A47F7A7C92B96F02DB +:10D52000C3E252A9292E0D1205FB3388505D61DC40 +:10D53000AB1157F2FDE67834A6CD1C8FC606CCF1B0 +:10D54000A8689D390E15779AE3D075DDE638E309B2 +:10D5500099E38B776BBD89BEACA7D1845FFFC24FC7 +:10D560004CF437445A4DF8A4DDB79BE82747EF3217 +:10D570003D9FDA7BDF0F8A8BD3625D267A232E569E +:10D58000F5FDECAA713184BF6C9F20ECBE0EEF81DB +:10D59000FA7EA3C5C7BA440F90BDFDD838E92D3532 +:10D5A000C7C9FFC6CA8FFC9B9DF442A6FC51E49DEF +:10D5B000A9F63B927E197E19FDF506B2EF8DE9DFE3 +:10D5C0004FA4F53A1CE72654215CDC6709917E2CB8 +:10D5D00076393E23FE51EFCA15CA6B20CD477ECF68 +:10D5E00088577EDD3E96B814F6778BD385FD2CC127 +:10D5F000E17AB2F7943AD0A84396D44929FD2CA7F2 +:10D60000A99F355ADFBD261E33E1D38E824C7EBEE4 +:10D61000E6CF6A3803F7A93A2EFAF8A9756775229A +:10D620001026B77CD3190C2B2AD59F7D97E83DE5B2 +:10D630004C1DD67F1B7D8BE6A5D649F0E8B3645C14 +:10D6400060731BE7107E23B55E7D481675ED454B74 +:10D6500080F357E37E8C7C363C47D4AD46BDBA623E +:10D660005C605529CA5FB688BA151D4BAE78EF12BB +:10D670000582FD34C6C1AEA695DE13F567037FFFB4 +:10D680006281CAD610E5F179E04ED48AB60EFD3C2F +:10D69000581AB8BF14FDDD4949D491E7A6173D5E7D +:10D6A00085FCDE4FF19DDE53AF884240F499DA4BA2 +:10D6B0006B86BF8F4985A9FDDEBDC118C3F40A1F63 +:10D6C000D717A97DA9AF8889E9BC6E88FD4EB7241C +:10D6D000FA397A9DBD52BF87840544FDB8CDCAF59D +:10D6E0009DD19F58A19FE3243E5A87716165EF3B0E +:10D6F0007C2FF7179ED1FB3E9D3E37CEBB7BBC8B6C +:10D70000BFBB00ADCAD76AEA5714C93F24AE8F76B3 +:10D71000FEFB0BBF34F5B7E065119F465E3FC47258 +:10D720004E9203AF7FB259C4B393CD458D9099BC4F +:10D73000FE39EE97ADECFCD0A4EFABBA3F31E9F780 +:10D74000EAD067A6E789BC016B119E3FF1EAD8F9E0 +:10D7500077A03CCFEEB3D7D27DE0FDFFBE34A92F3A +:10D760009668BE612E645ECB39BF623E8E07E37C55 +:10D77000BFC6394F048F319E082618A69ED3E82FC6 +:10D7800018D0F626B09F1890D27CD4971CA9EF60D1 +:10D79000D84F6399780FFE90AC9D1079BED08B8BDB +:10D7A0005D56AE438FCF2968A4B87FBCD8A6083891 +:10D7B00051E063EB1C029FBF8060BFD5B595FA12A4 +:10D7C000C725D107FF78DC37BB6CB8F4A27181F7AD +:10D7D00049CFFB1B07BEB150DE9397984076D59496 +:10D7E0001BF880E424A11B1CCB7DB3D044CAAF4FEF +:10D7F0005B4253E8BBA4E2179F69A57AE2745AE83A +:10D800001C7DB7945FB6AD95EA89D336618FD6B2E9 +:10D81000FB5AE93BA38F715185F28FD724EE6374D5 +:10D82000E6043EA5FD7AAC10E3EF2EFE28ED20398C +:10D83000802B61233D35FA99FD5684D447740AF84C +:10D8400079A9785F712A0576381236EAE7FCC3F6C3 +:10D850003D7EF21BCDB2CAE318DD35BAFF0DBD0F18 +:10D86000B03D5BCB40CF0F9E9A48FDF4C18576203A +:10D870003F8DFC69F4BD46E8A09DED2CF5FBA4CAE4 +:10D880007FB5C7A4A47EE9B7A51E5E27CF0BFCFD1C +:10D8900054DE4F9DDCFF81447C027D6345DF89F9C6 +:10D8A000C9EF1C054D7C0F75C34EBD7FA0D9106F0D +:10D8B0007D750CF713BE2D157957C7BB274F10FF89 +:10D8C000CF9706BE27795FE9C742FC94DBCBFC719A +:10D8D000DD6297618B9433BA9E1AFD55033FB2E81F +:10D8E0008989A4F795F49DD655F2D90965828FE30D +:10D8F0005648F98ECBE0DBF88EAB82FDC9F432E9F5 +:10D90000AADF714D2A1372AFC49A8FFAE8F634F485 +:10D91000E99523CBFDEC3DF15F5778E83B24B58CCE +:10D92000F4DA3837CAE1AFA5497D73430EC63A062B +:10D930009FB87F80DE3354BE7FD83A06D75DFF9212 +:10D9400087DA3A57CE65F0F94C9156569664EFA8AF +:10D950005F7C2FA16627DF77C7C14F4E3C82F3D68D +:10D96000FF6E7215E989312F955FE4B398F8FBC813 +:10D9700012B3E9DFA555D2BA7BFA3EE2EFA30C7EE3 +:10D980007FECFDF417C7F97D53FF8E4B13549CDFDA +:10D99000A1BFA7E930BE13DB6BEE0BA17C4354178C +:10D9A000A7C617A054A200F81B258A237663FE7829 +:10D9B000C5347F53BABFB90CCFF9AAEE17903EC257 +:10D9C000F68FF908C5992B7D693D2ED5E8AE473A0B +:10D9D00026FAD0350429BE5764715CAA36F643BED8 +:10D9E000481F1E9742DC97B812D7F5BEB47CF726C5 +:10D9F000EEDFD5410F438B43C4ABDAF12E9FCC9BB6 +:10DA0000EAFDA727DFE6FAF37F00E9721A81E02A30 +:10DA100000000000000000001F8B08000000000054 +:10DA2000000BFB51CFC0F00309BFE441E56748A2FA +:10DA3000F2F773A0F21DB951F9C6ACA8FC5A34F341 +:10DA40000861256ED2D4BF626460F802C4FF80987A +:10DA50008309BFDA758C84CD6BB584D05A403A0601 +:10DA600088DB80F8BD0103C34323060627430686EF +:10DA7000FF06A4B98F10FEA2475DF346316938D97D +:10DA80000695EFE7CAC050EFC6C070D41DC28F42E2 +:10DA900092BF0314F37785B063ED8172407EA00DD1 +:10DAA0007673E380F2D140F9B750730036070C88E3 +:10DAB00068030000000000001F8B08000000000049 +:10DAC000000BED7D0B7854E599F0776E73CB6432E3 +:10DAD00009090C10C2992440908B0324DC441D4298 +:10DAE000C4802823A222B27582A88820D1D21A2B02 +:10DAF000BB39B9122860A0761B588A138C08DE1A2D +:10DB0000152DAE6D9F70A94B2B6A74A1E2AD0D88E7 +:10DB100091B6D645B62AFFBF6BD9F77DBFEF4CCE85 +:10DB200099CC24D8A7CFEE3EFFF3A78F3D7CE77CAE +:10DB300097F77BEFEFFB5DC6992E31FF958C5DC0AB +:10DB40003F78AED3D87EE952C6DCAED0910A1DCA6A +:10DB50000CFEA631D688CFC1F05F4C56D964C63CC6 +:10DB60008CFF29B9F249A78FB12C192A97C08B4095 +:10DB700016D557BD952C4A359AF97BA63B22E9D696 +:10DB8000728445C631A6E5B168FB58C6EACCFEF101 +:10DB90002F9B31A73FF4D80689B1A1CC41F5D56CB4 +:10DBA00097A1C038AABF9945BD385E7428CB81BA09 +:10DBB000F3980D1EC6C20CC7D106166544A15FE6D8 +:10DBC000E5F098F3339F3BAB5983AA59CA1A5B849B +:10DBD00070C004693CED7B2C36603C14FFF3067D7D +:10DBE00001C22971F812FBD93D0CDA797BC3BD7BE8 +:10DBF000DBECC0EDD0DF24017F229C667B98C7243C +:10DC00009C87392F13FEDDDB4672F8B3B393C2AFA6 +:10DC1000B9940675400FBCE6FB869CC93AB5C38E25 +:10DC2000061248F4B74967CD0AD035BB58369C3048 +:10DC30002FA7C4E9BA3178A7CEF2197B342D5A86C2 +:10DC400070E487FDA52A90323BC264ECA741E0E571 +:10DC50002A65ACFB14C0B7B53C3F63293C5730E89C +:10DC600020A7375CDBAB612E80D77FAC76317504A3 +:10DC7000635F7D388AE69158CF7CB654FBEBAD7478 +:10DC800068595EEF1E59CC98912D8746001C43EED3 +:10DC90006EDB76274C421BA64F547022CB2515E72E +:10DCA000E541F8E1FB120107E07109F18349FF6CDE +:10DCB000139F008F050FFE7024ECF7F6E0219345CB +:10DCC000C2127C1CB087853A18E1E10EC24336933C +:10DCD00035E83F38AFF920E2A321CE1FFAFA42A877 +:10DCE000FF835F8D98B841EF817B2F93090E969B40 +:10DCF000CDF9580D05108EC4F9C2CCA8DE2380A73B +:10DD0000B123B0DC2EA11CAC1765B3DE0816FD2EC6 +:10DD1000D27568C4437C3F746594D34332F92DC0F7 +:10DD2000909FEA7BF87EF4E3C47F0327205CB5264E +:10DD30003C3BA4547C579B8CEF8646226168C9BE4D +:10DD40002F451B717CA5A8C38F5DB95676D2B3D180 +:10DD50001CDF609DD86F8EC47AFE60FC345DDF8569 +:10DD6000FCFF23A40BB4CF0935DE2703FCD921D552 +:10DD7000403D91D355318F01DE5D1FCCF93D3EE131 +:10DD8000FD49A4C3D085CD1D48CF5C3D2221DED303 +:10DD90004ADAC2D8F54352F4470447A5C166E904FC +:10DDA00027E1EB075A84F9011FDA0C231C0178B62E +:10DDB000DF3D995558F86C0F028BEDB2593836B6E5 +:10DDC000870F1E5138DF6C2A2E75DFE5C57A1EC21B +:10DDD000D325AC98F86234B201F09F86FCA0133FC3 +:10DDE0003C81FDE811FD20B60B6637974A3AC9C160 +:10DDF00020A4C70FB4D0606CF783BB1D8B681C8355 +:10DE00001D23FE94F938F09F8E78728BF26AA6116A +:10DE10005C1EC40BE28185182B60CCB1B8392C0391 +:10DE2000FEB216B21036F3209E7C3D785296C40C9A +:10DE3000FC3E60250B85E1BBA287A5911C3FAF206E +:10DE4000FC69ACB9430D427D3D66E0B345ADFCDDF8 +:10DE5000DF43FD96234AC8D02D7CC9802FC7F5E04B +:10DE6000697014E4CF257883F5F0A7A91FFC2CF284 +:10DE70002A961FCB71D53A2DFCAE39B8DE66B90BA8 +:10DE8000A9DE639B6ED22B902F54BF8CF37FCCC541 +:10DE9000E7DBC3F7B534EF9DD531F6D10894CFB3A6 +:10DEA00012E24FAB52F4D3037AE06BD8B82083E18F +:10DEB0007B574846FA16344F38E8CA26DE0A3D4EEC +:10DEC000F045D8C274EC5A661D458C3D05CF0BC198 +:10DED0001E3D98B7D6C33A2CF3D1AA1CBC7F237C35 +:10DEE000A010E0BA56B0EAB502BFAC583BDD5524ED +:10DEF000EAE71397F4948157FEF420FC1FEAA30984 +:10DF000052EC71A9F7F779823EF3F0BD392EC0F3D8 +:10DF100017C1FF2857888F79E2DBA117DF1939096C +:10DF2000E6F34648614EC4CA8BFFB27112F4FFE6B5 +:10DF30003428EB02FF589F71FCBD1964E132FC5E8E +:10DF400022C50CE8F7DAA90AC9CBBC19EB3E57F099 +:10DF500089F05BE6FBD9FE7F5711AFAB67D8DF9343 +:10DF6000BE24FD58467AC38467D54485FA7FA358FA +:10DF70008A21C8873FFC64F36500DFD1195208E1AC +:10DF80007B23F49197797BC68DE34B677EC457E280 +:10DF90003871FE591B747491DC7D9BE6F31D51A70B +:10DFA0008AE9AF0E82F15893C41E17F3F5033CB70C +:10DFB00009BADCA632D7D4898CC94DD01EC65DAA59 +:10DFC000EA0E94AFDB9A9C36BA9AE3B05029F1DBA3 +:10DFD0006D82DF0E74BD707C32C0FF5E9342F0BF75 +:10DFE000B75621BDF45E259FDF2916DB84DF8D63E4 +:10DFF0004A08C73FD574289DDB4B3D0FF5DF8DC226 +:10E00000CE77813EEE18C5D88760C7F0C9543D6F02 +:10E01000017CFF50EBFC3B1459C65AC3C740057F37 +:10E02000E8867F4E672C5AD36E18D0CF296C3F04F8 +:10E0300074794D7BD820BDBAB1F16ACBFC2AD64A9F +:10E04000E19897D898ECD806A13F2BEA2582D39D7A +:10E050001B7A4C817F4E961CC2AE45264B828FC8E0 +:10E060007F2A3424A49F89CF5476F577027EB39C0F +:10E070002645C3D80F8CEF40F9AAA8FF5C43BD5FCB +:10E0800021F9391ED5CE61A8174E49A69DEB1C7605 +:10E09000FD38CB786E8EDF0A29B9DD3F85E3397B09 +:10E0A000CAD1A6606300E95C2585C8CCB93A877DF2 +:10E0B000CB620FA3928FE4C3A8E0F6C4182CD1B8AA +:10E0C000E6F71B252E3F1592B0637FFDBC2B92CF48 +:10E0D0009B09F9EC4847BCBEB7FC860C6E07A3242D +:10E0E0001F263FFDEAE4131AF2215B98437AAEC281 +:10E0F0005048EF987CF8AD3569B6F2E2B537F4E9EF +:10E10000EFB04A674FFD7C0B1FB36CE2872CC12731 +:10E110003960E7D02E30E1C791AB07F00CF4574AD5 +:10E12000E8AF05A6361F207F48E8BD21E1F6992A11 +:10E13000947E983EF2DD18C915D35598472EFE0BF4 +:10E140006D0F530D21A7D20527DA591676FBF03B48 +:10E15000BC37E101FD92B352B5C9735AC45E76175C +:10E1600059F41FFCA758F561B0673EE67CDD429E7E +:10E170005838AA237F3549C609949F8DAE23E1798B +:10E18000F05EEB62CC978DF6508DC5B06E21F777BF +:10E19000159C37F04F5AC011EB80F7AE3CE048B207 +:10E1A0002FCD2ED4475A51A843D67BE6CFB05398F3 +:10E1B0006F9A8075FDD8B7FD486FB33FA0ABCDEE29 +:10E1C00025FA63A066787CA13775F227F74B9C107F +:10E1D000AF4841F297F6921C364B49E30D739C947D +:10E1E000748FD39915A930AF0760C628FB198ED05C +:10E1F000892834ADCA75846A75F467BA6A14781EC2 +:10E2000062D19770BC8C2BAA86235F4A57548D42EB +:10E210007DEA1BC32A514E165DB68475C333901D2B +:10E2200031BAE17B97A4703C9CCD233C28023AADE7 +:10E23000E316A6A33FEC0D85C388373681FC25B0D5 +:10E24000AFF47C5BE27ED27B42CEBA847CC3B43A2C +:10E2500090EFCC7EC00F3A2259E203C56BC60791FE +:10E260004515681FD35DA44F214EC8C038C19CF727 +:10E270005B428EE3F109C607163F5773F9EA4F4F29 +:10E28000823833BD2A20E2964F715C871877DDB063 +:10E290003B5DC9E4E93E297A46B2F4EB0884C88FB5 +:10E2A000BD8C457F4B742A0C332BFC8AD760D8CFAA +:10E2B000DBA8EF4A70BCEF06B0BE0A8A18E5CC773F +:10E2C000D9121A479D61C69995541FE8FE36F5B7D5 +:10E2D000C81EBFB9B3C32457E96C87BF3B8DFE5935 +:10E2E000780184D42865DC5FF86D7AAC0EA6FE95C3 +:10E2F000DB379E65007D5DFCF980C7B70B9F5FB97A +:10E30000F362E87F7C25C7CAA5829EF8D9A3351B96 +:10E3100068A79C2C1C4679FF2BFA6BFA1BF7770435 +:10E32000592B557FFDB54F1C0F14E0A528871B0AFC +:10E330006311C4BBAA427F24C71CDF717F50F891D0 +:10E340000EA1873557A42908FD28C71486FEACD234 +:10E350003C81FCF4B85FA8F3711CD9AC6D83E90F64 +:10E360005AE4C05D24DBFC0735D763D3DB6C11D8DE +:10E37000178B9F12F71B59B403EDB20ABCB281D1BF +:10E38000B303F5267228B6C7295D203DFD10B3DA28 +:10E39000A70D4513891F13F956C5765007C582EBA3 +:10E3A0004B7BBBD4FA2361BC8576782FBA9D57D5B9 +:10E3B000BBCD36F97DB55359B7C5CFBD0A6D08CA77 +:10E3C000C17FC27780B7023FD0BC8D5CF21B84FD59 +:10E3D000FF42359620BEBED09D0C20644732FDE43E +:10E3E00007180D928E74AAD8787D06C6DB15C794DF +:10E3F0006C39288803E523C13944B739328F8F98A7 +:10E40000DAA5A25EAD981A9C8D7AABFC1FA05FA422 +:10E4100077BE537A1CEACD9C5AB30CDB5DA7DFA212 +:10E4200039A1FC2F4FD7D1B82BF4AB558C5D168A90 +:10E430007EFEF4E4739319C077E49974D681FA45AB +:10E440008D911FB0629F4271E13D3F49273BB3E28E +:10E45000F9558FCD837EA49FA6133CE5CFDFB5DBB6 +:10E4600049F0D5913E5CF1D20D195B11CEE30AC49F +:10E4700058F0ACE17ED22A98B30BDA9F0D3A1FDB3D +:10E48000154CED0FDDBE11FC21846F4F708262A12F +:10E49000D70A95DD1641BF049E0B92E8B9EFC95C1F +:10E4A0002F7F1A74527C29ED39F02D9A67FBCD1A13 +:10E4B000CE53AACF747C0CF8598DF3E5F5683EC6AF +:10E4C0005E293602BE7FBA57E2F36B1FD7EA0EE22F +:10E4D000F8AD8EA59487AB21FC00FCB7A11DB87DDB +:10E4E0004FB07108D4BBBD291844519FF593677C88 +:10E4F0005D3C2FE09580DEF70A195BBD47E940BB24 +:10E5000078EFBE55143F4199ECE43D3FF9F94B4695 +:10E510003AB6B7FB47F7B67FFF73D4A7F7BCE00C5A +:10E520007540FF7F00BFDB8DFDECD74E59FD8A3F64 +:10E53000743EEE43BA141F556DEF71DCF359344E3F +:10E540008523A3773BC0BC03F96F75FB7A1A67F587 +:10E55000BE6B3FC1786C35837E2C7EC91FF01FE0F7 +:10E560006F547D50537FD802DF2E393DBB7B0CFCAE +:10E57000630A9B827CBE5289647420DDF70C486A72 +:10E58000CFBFAA36EA0F6BC4F7846F88B7761A300C +:10E59000FEA7CFFF7127CEFFC8D7FFBEF321C4FF70 +:10E5A000CFDD7EE4F7D54F7EBCF37B50FED37EA754 +:10E5B0008C7CB3E2C9DFFF16BF7FF9F2A82CB4F35D +:10E5C0003F93B9BDFD2CF8D540B4D36B7E7ED520EA +:10E5D000C4C39A17670D6249F487F9FC0CF82BE65F +:10E5E000B4CA6B8CE8A9EF87FE0641F167E2994057 +:10E5F000BF43FB940E2FF0CF9F4E3863C8DFABE1D3 +:10E600005D15C45BF756DE4579192CAF057CDFFB41 +:10E61000348F2F7BE3DB182A07F0D931145350F7DE +:10E62000EEBB61FEE5C5F8D4286FB19A9D6DC47844 +:10E630002DB15D9C8EC7808E97F6FEBE9A71BCAFE1 +:10E64000661BF9B895577F42FC9540C73FE13FA64E +:10E65000F5A6E3FB48C7B41E3A7EB9F7968C0EFCCC +:10E66000B86F40D2BCAD49C7552FDE98914C4F5B77 +:10E67000F1DC7111785E2EF2257BE4F01FE512E4E7 +:10E6800087A7766F073C7FF6AE33340F10F3D9338C +:10E690005FE481B3C0CE6867BF85F278F6E74EFFCE +:10E6A0002E68B3E2E7EF38C240EFCF5E7CCBA18F9C +:10E6B000A3E97825D0EB9FB1F85F27EAF97B459C69 +:10E6C000B8BA2DBD03F36826BDEE8D5D5FAEFBE8E5 +:10E6D0003DE5E1EF8D7139B8377660A194847E8590 +:10E6E0004A3ED7AFB11CC2CB2ABD93E26B2B5DA5CE +:10E6F000A948CF93B391FF52D1D39CBF1FE73FC529 +:10E7000042DFB6BEE5F4B356A72A65F4A6F3671A4E +:10E710008F0357C7A47792D1DDCC1F3165499FF491 +:10E720004AE48B3CC52EDF667B73FEFDC977FFF3A1 +:10E73000FA66784B47A12FE98DBF9AABB8DE7E23EE +:10E74000087209AFDED2F41F7D1BF9E4571ADB050E +:10E750004DAECBFF44D593C42F6F027FEA96783736 +:10E7600032F5F3FA01D02E3203EC8CDEC3AFF1EFB9 +:10E770003314A65BE051FC87AE40FF3B153E159F6E +:10E780008BF2742CAC76233DC0364817E41EFC5047 +:10E7900084399089B51EFC0B53F98E78596518871A +:10E7A000DE85FF04782AC2C50EF41B96B1A8438308 +:10E7B000E772D64CE515AC9D9E2B59273D9DB9BA05 +:10E7C00083C70365FE6EF25F562A17D22EDE5F31D5 +:10E7D000E17B43D21F2E03FED1028CF2FD8706B3EC +:10E7E00018CA8763E8CF72910F3602FE18E0AFB106 +:10E7F000DA8F4E2D6BAA0ED033BE1E151E4E7EE84C +:10E80000FD7E0E3FDBF3E4934F0E14AE0FE0A1014B +:10E810005C85760B3FBE87F480F6FF5AED22BADCAA +:10E82000BAB15943F996966DA13CC221A9B96120AC +:10E83000DA873BA4893CFF15FA252EF1146CF4D33A +:10E840007AC26B22BF5E1099202FB5F47B0BF603C2 +:10E85000E55B964D1882F6E6B1AF155BBEC47C3E13 +:10E86000A3F078AB669383FCD69D358CF4FCCE691F +:10E87000CE618CE43C42F329147EF5E199CE616BC4 +:10E88000A0DE3B512584F9C7779AEF4F47FBF3CEC3 +:10E89000921BFA94B35D22CFD286F93198EF6EC005 +:10E8A0001F96F700FEF0F964B54ECFA7AB8BE8FBDF +:10E8B000B3D5212AB7574FA5F2F3D5612AEFAB2E76 +:10E8C000A7F24BD5112AEFAF5E44CF9F552FA7F784 +:10E8D000071E9C2D53DCBBC11545FFE717D595F4EA +:10E8E000BDD008C9682F3BAAABA8DE1A258BE65D10 +:10E8F000B0312447313FDCC45C1497188CF26DBBF7 +:10E90000B4AE5B2296F9AC51B85FB54F3C0F49A14C +:10E9100083449755DC4F2D9837A17620E0E586E5B6 +:10E92000415DB6D165A6563AF6E2E9F190E8FFD628 +:10E93000E50A2BB2E8A585F3ECE5376676E5A2BEDD +:10E9400078030383218C15692FD460FE70F759C6B4 +:10E9500032305F19D028FFBCCB1DDD301AE0DC3926 +:10E96000582BDE05ED764DF00FB1FA8DFF21E8DF73 +:10E970009AC9FDD3298778FE3AB665E4AE5AB2212A +:10E980007FB97001E89F87FF2E40BF53C4FB457ECF +:10E990008F75BD2AF6A06311E52931A904EDDB1EB0 +:10E9A000F4C7D03F8F4932E1019E4C26BF5EDE8521 +:10E9B000FE38D3250FEAF756F89681F0D5CABB305A +:10E9C0005FDD26F016F3FBE59005CE3C16CF472918 +:10E9D000A4DF75A63B26E37BF8CBEFF90EC3775C8B +:10E9E00010B60FD76FE83B4C29AF9EE7AF2CFD90D8 +:10E9F0009D288A59CAF0DF983D96FC16FC37AEDD9B +:10EA00005EBE74BFBD3CA1C35E9E74C45E2EE9B4FD +:10EA100097A79CB09737AB3C9F82EB40B8DE305C49 +:10EA2000E83DA6774988DFE162FD2BCFE0EBE67990 +:10EA30006BD584FCB97D7D01FEBC181FEAA29F69DD +:10EA40005DF6FABA587FD013D61F5825D75B667C7F +:10EA5000B84965142F6F9AC1D711E0AFCC9D8DEBEB +:10EA600007921FF5CEAB2D7F1EBB069E792DE0BF12 +:10EA700083CBF4C48F5FCD45FD3BFB4139827237B8 +:10EA80003BD8E5467ABBF49048CDC4F12C5F989210 +:10EA90009A7E6110618467D3D75CFEB2E6AC79BD23 +:10EAA00004C63D77AC6022D92781A751129FDF634E +:10EAB0002AE7DF6B676836BCCE0B6836BA5E7ED657 +:10EAC0008EF72BCFDBCB16F8041EBF597994581F55 +:10EAD000DA03FA0DED01A56A41C514B12DA59E62B8 +:10EAE000A41F0B619E753433642C17D6F3F5E3C273 +:10EAF0002A0F56EA816307A7A70B30916C7DE9C402 +:10EB00005AC6F323558CE45BAFB7D3370FE9CBF983 +:10EB1000DC9667CD6F82B87E122F330BDED9323B85 +:10EB2000DDF3A2B37EAFF2F6EC94953FAC6584239F +:10EB30005A978EEB228BA21593101DC3CF2BBCFFCF +:10EB400084FE1675ACD730DE857A0330B7EB7634A9 +:10EB5000EBA8B7E0FD2F9DF87E6D6836C67779E7A4 +:10EB6000A5E4EDABBAA4BA247665F87947D2FAA940 +:10EB7000EC4FDE7995EA9BE59D608F4E69FDEBF1E8 +:10EB80002784FF95A8CFC7FF1C026D283F6B7449EF +:10EB9000F8BCF4C13095DB9BFD32DAC35003A3F21D +:10EBA000841AF80EE517AAC2F49EFD27600FF06FD5 +:10EBB000A632266DE1F5F4FA2E09ED83DFF093FD20 +:10EBC0000A5631AAEF37C254D69BBBDC580FF473F8 +:10EBD00007E643625BE4582DE9D753EB47A1BEFF3C +:10EBE000A5DC4EFE015FFB646D557A0CF3C5A6FEF5 +:10EBF000659DE10DA4D781DFF03DEA79E4C3B61A43 +:10EC000059E879AE2F49FF809E1F6EC861F7789B47 +:10EC1000BE9449AFAEE572E3624D35E8D77D537DD2 +:10EC2000D886F08CED5F2FFE51D841F0C4E8BDC707 +:10EC300025713F32859E9CC9EC7AFDBF4B6FFE0764 +:10EC4000B6C575374DCF44BA9C336486FA32662C0C +:10EC5000E07183C87F11BD95DE7CB9B3DABEFE34A6 +:10EC6000BC9EFB1F89F5066B9258B7B89259F927DD +:10EC7000AF5E7F78068C5B784C09E93AE2252CBBC5 +:10EC800081AEC116BE1F61047C2FD3090E6A171115 +:10EC90007E1C304439F243B058E66B8A06F3CE1C32 +:10ECA00018574520A7C01EF0DDDDA8EA0694875757 +:10ECB000C9B63C4D91B91E1EE371970BFE87FA6AE7 +:10ECC000448B250E43F8204E2F0A22BCF6F8CCA226 +:10ECD000A7EC719BC057DC6E339E87FD0BE241FAB7 +:10ECE0009FD7F371FB23F064EA7B53FF17B1FB5E00 +:10ECF0002F417D0FF48831D4F7CDA4FF0B0D4E8F3B +:10ED00006FAAEF83B12E5ABFBB683D8FFF30170546 +:10ED10002D7ADED4FFA67EEFA5F7FBD3F76B79DC67 +:10ED2000924ACFF7D8830993ADF9CA44FD9F52CFD9 +:10ED300027D88344BDFFB7D2F78BD13F45BD72FEC4 +:10ED400002F9B585269F35F7ECFBE1FBF2FCAD2817 +:10ED500017E74F7E12ABC37C7ED6408A8FDB55A16E +:10ED6000978AC5BE326687234B8EB6AB49F649B546 +:10ED7000E3B825E8CF14F6B9CF303D24DBF943C41E +:10ED8000E34EDC2769A1BF5B1F62AB6794EA5B704F +:10ED90005F86F16B2D84B1E8C1C16C1FC63307CD0E +:10EDA000FD57C22F9F1F08D27E2BEDFC18A6037EB5 +:10EDB0006ED28242AF40648EFB5D845FA5654716CC +:10EDC00061FD07BA241D43847920E888A7FBB4E8D5 +:10EDD0002C0DE6F77ADA3F2CE2EBC4BA8C7EFC41CC +:10EDE00089E3CDC801BF84F8A783F8CFC9787FA590 +:10EDF0002CE492A1BDD3E5A5F5323683AFD7328F8F +:10EE0000447866B9EAA7D67D35A5820E2C97FB39E2 +:10EE1000505BF70FE4EB12D89F13148E6722945DBA +:10EE2000074E60DECAA932978FF87E891FF337122A +:10EE3000EB6217E0B944892ED6F8FC54CC2B6882DB +:10EE40005E5A7694E8F3218B7E0BE7B379FA1F4E76 +:10EE50002898777DD1AD2B94E7ECBAAE40FFDF3B2D +:10EE60002F33DF005D8691BE81E93CDE35F9E80194 +:10EE70008DF3E905F18CF39DF0BB090F49D673CCF6 +:10EE8000FC8699D7D8A476BA78BECFEEBF6BCCEE0D +:10EE9000AF9BED377D1D59447EBB690FEBB3245CFE +:10EEA000D769AD5F9081FBED7E21E031F5BC8E3DF1 +:10EEB00016F4CE1398E50243C8A590D78684FA8F3E +:10EEC0008AFEF2B32F4E7ECDFA7DC8EFA35A12F917 +:10EED000DDA4829DC578E898D81F27ECB0C94FF90A +:10EEE000D96767326EEFE9BD99332B68B2DB4DF01D +:10EEF0000C65E40F80976D477E4AB0BBADC6B90381 +:10EF0000A807F3B741453DB59DFDA27E622985E482 +:10EF100009F6D6DC279D9F605735612FB414F6960D +:10EF2000E6A1E0F39BD95B5664F99E6FE3938BB245 +:10EF3000A771BEECAF9D113E8E767734BED0314FB7 +:10EF4000E4223E1D2DFCBCB1ECADD2B46CCAE35042 +:10EF50009C358E75C8581EBE91C759C30DBBDD5D6B +:10EF600087C8437D5923E228E1DF6D2A96697FDB5C +:10EF700098B5FA2ED47B673591EF68E3F637959D07 +:10EF8000CEDF98E85F1A94D734F923D16F1C5ECE98 +:10EF9000FD52ADAC89F2EF5A827FEA7ADA5EFE3F2B +:10EFA000D851099FFF80AC6F0E4FE2F826DE53D98F +:10EFB000CF443B64EA17E69D487A07E2F27F198660 +:10EFC000F9C247F83EEB594B9B9C7980B7D6667DDA +:10EFD00022E946E692510E868B7D60E6FA6115FEC7 +:10EFE00013F5DF0712D7A7461AD973B35E5CAEEBF1 +:10EFF00017D0BE9DAC9CFCF9582D159CA9F2B15BB5 +:10F0000086FFB61CC7190EFE2DE6337F34FC2F0792 +:10F01000B0AC7DE0D6315F3EF3B7B7D03EEED693CD +:10F0200012E5315B732A87B3247A2E515F26EABD3D +:10F03000FEF4DD12C7DF56DF5DEEE0F9A28BD57777 +:10F0400066FD3EF4DDE58E92FFAFEFFEF7E93B1E75 +:10F05000675CACBE1BDBDE29231F14AC05FD20F56D +:10F06000D677FDE90BF89391EEBDF4468AB8B75C0C +:10F0700009D73A80AFCF95AFB91AFD75D39FCD7A36 +:10F08000B0D689A29C4A8FECACCAEF53EF24CAB326 +:10F09000B92E331FFC5717A89EF9202E3A0C35378E +:10F0A000B7F3676719F9A33F44FEBD366D5C2D5673 +:10F0B0005FA79DCDA64D3C097E95B4BF3182F3D0AC +:10F0C0005825C9539DCEBA145A9449EE5725C2B556 +:10F0D0000ED76D886E1D94BFC9137EB29CF6E9E011 +:10F0E000A5F07E8F43B2AD9B994F5605FE9F89B721 +:10F0F0007C82DFC0F8CC29FC4A76B99BECCF78B58E +:10F100008BF66F96F9AF2FCB84F7B343C189E65ED8 +:10F110002446E54C92EF871DD11770BEF3BD97943E +:10F12000E17C701F14ED274C114FC4E130D7DFC2D2 +:10F13000AC4BB2D82573BE8FA6457F81F4CCF76760 +:10F140009666EAE81FF3FD7AB83FAFAB0F7AE17A33 +:10F150000E9EC73954CDCFF13C0774C3FD7A1DA074 +:10F1600087B1BCAB5AA7E7CEEA227AFFCBEA10956B +:10F170007F563D959ECF5487E9B9B7BA9C9E4F55AF +:10F1800047A8DE08167913E129DCBA7C08C251E7EA +:10F1900060CBE9DC973857638E7FC2C1EDB3F97C51 +:10F1A000D7A1131D1A708268DF7FEFE076468D0DC0 +:10F1B000C57359F8447C39D52D87FD5075C09190A1 +:10F1C00082FCBAE070A781FB2D5E9A23C91837F93B +:10F1D000723D1DB8E5D837F2933335C85773A07F19 +:10F1E00078FFE21CD0A3F02CF61FA0ED61BE798D54 +:10F1F000F7A19EF1E5FEE6217A9EE8FE7BA48BA3B3 +:10F20000DD786F237C4F9743EFAF443AEF74D07EA5 +:10F21000C7EDBF7184F1BBAFF09FBE8DF527B17014 +:10F220000DDA275FF9DEEF103DD5B3A40F272DF4DB +:10F230008730CFBEDD11217E7869310BE1FA8DAFC9 +:10F24000FC9507689CA31D0F62FD4181CFA35BE184 +:10F25000FDCBD736BD8B677B1E9EF37564163C03D2 +:10F260005366DF7A3FB4DFDF591FDC04CF6D9DFBAF +:10F27000D2309E690E6DDD82E8188F8302BE1C833A +:10F280000FBB0A503757CA642F36860E523977554E +:10F2900016958B27F07CFEFE196AB935BE509C0A84 +:10F2A000B54F778AF376217E3ECAD4C76A31DF0F25 +:10F2B000AB1DE3FB64B54E95FC1D777625C924D8BC +:10F2C0009D7427F95576BB64DA9F4CA7DF3C0F315C +:10F2D000C003F0BCD222FB713DE99596E7D3D0EE96 +:10F2E000BCD2B280D1BEDE904CF9B2E2B7DA5F1B7D +:10F2F0000F78DB5D79FF941AEAA73DED66E8C7EF6A +:10F30000F4503F83513994F4D1FE73680FE3EC5EFF +:10F3100009EDF59EF601273FEF13C4F6397DB40FD2 +:10F320003EC7DB57AEB18DAF8BF147F7337EA25CA2 +:10F330001589715FF9F4F94CE4FF27247D046E59B7 +:10F34000BE66DDB63A15E47C801C3A49E70A1CCF5C +:10F35000CE5A04F23B27BEDFB9D2C3FD9810F9554F +:10F360005385EE5920577A103FECD70A7B9CF5A5C0 +:10F3700027E49E3C0329208B1DA172564279484206 +:10F38000FD7CDBF79B9D62FF08BB24A1DE445B791B +:10F39000C1B191A4CF169C18588ACF54F0BD3D0C32 +:10F3A000E407F8E8ED743E3429B6A9880F46E72A49 +:10F3B000187B765619CC7F808F979738F7D5D578FC +:10F3C000E93B9D3F7A399DE743CCFE9638B9DE5E36 +:10F3D0002EF85889717E553A1B695FB7C98FCA3CB0 +:10F3E000D749DC7FA29E80EF78BE2AB791FC76B524 +:10F3F0007C3DD5737BE37CBD9CF8BA3D395F8312BD +:10F4000021BA5C26E65EC5C24357A17E382A937EA8 +:10F41000609519E4375F26FCE12A11DF1F3AFA7C78 +:10F420001AD65B374F15E77EB87F5D2CFA31FDE8C1 +:10F43000E2B8BF1DA07289CBEC27FC5A90FC6E99F4 +:10F44000E89FF561FE9BB47DC8184AFD94B87937F2 +:10F4500019C84768E7D466E2D37F9622AFE13E5AE7 +:10F46000E35ADECEB4CF267F4D16FD9BF6BACC957F +:10F47000457CFBF2898987FD305EE655D204FC3E6F +:10F4800047BDAF167151D456D981CF91FB753EBEA1 +:10F49000D0172FEF58BAF86D2815EF50498FCC6967 +:10F4A000E1E7FF26C5647A16E7727D3227C6F5C804 +:10F4B0006E71EE44CBE57A67D20E99BE1F14FC56EE +:10F4C0005C38C9962FD38E4EB7F921E7BB0AFAF400 +:10F4D000437657476CE74C9F10FB364CFA69025F46 +:10F4E000E6F7834E6E7F4C7A99744CACF756CE8219 +:10F4F0008CBEF6E9EDAEE6FBC7F6300B7FC33CF6FB +:10F50000B4C8BC6C7CA05CA58A73D6D37BBEAFDBD1 +:10F5100061FFFE72BCFDC959B8AEF4728B4AE59723 +:10F520009D2767D5C03F55815FAD85E34FCD653CD5 +:10F530001E1578B4E8E983C4CF2E3B3FCBAE30ED47 +:10F54000BF9E77B8FD10A2F901F8EF9F41A4A7363E +:10F550008566A5E9B43EA165C2FF1D4DE77AF9A510 +:10F560000FE510EE4BBAE6484C45BB5BF3E1A03229 +:10F570003FE61747F2F8EB774E9E87FC4A3386DE6C +:10F580000BEFAB8E3A42B5D067EBD17DAFE17EB8E1 +:10F59000431F2C60E8876847178625D46327189D8A +:10F5A000F77DE5D3A5CA5D163A4E0E6BA44F27BD75 +:10F5B000BEE6B571C07F0DD96DD315217F8BD37198 +:10F5C0001C273FBF11D68C8479FE8EE6B931B9DC99 +:10F5D000CE5598A1A0FCFC4EE6FE447965DAF5967E +:10F5E000FD0F3FED02FB08E34E3DD9B6EF6DA85786 +:10F5F000EF9F3E89EFA76A5E723FC5673326A13D44 +:10F60000FF37A167983F653CF66FCE24F9A773E5F5 +:10F61000A7691D206F6C1AE9A7BCA3A09FE8BC399D +:10F620008FBF8AE2EB3A76FD7DF9598F4D0EE47A71 +:10F630007B1E39CFAABF29BF69D7DFEC83313DDFFD +:10F64000F3C9DF7F2D83E2073DF31298D735C764F6 +:10F650001DE7C58CB07726C0713DE370BC88FB9F69 +:10F66000F0FB3616A37858E88D9D62BDE4A71027FD +:10F67000A27FD65028C5700BCBABD932EDF7751EE3 +:10F68000E3E7F0AE17718EB32A348BEC5919DF170C +:10F6900067C68323D786EBF07DE2FEDF39225EB9B1 +:10F6A0002621EE9B83FB077DF8B4D40F26D9FFE714 +:10F6B000B2EF0BDDFC3D85E0327EA3D0B98127A6F9 +:10F6C0003103EF3BC00400C29FB974488C9FC9E36B +:10F6D000E724F70B3A98FB02C7B878FC7DF8C39B88 +:10F6E000D3703FD744743281BE2FEEF82ED9E9276C +:10F6F000BAF2695DF7D0F4E96962FF34E58D4CBD7B +:10F700005E3B7DFA6B77C3382FB7CA140EEDE9DC88 +:10F710003A14CFF56E2D739190F91E6B1F8AF987FD +:10F72000575AC5393C95F3D5064107C25D369E133D +:10F73000F4B7A2FF74994B36CF095EE6CAE991632C +:10F740005F41C510EC677750BAA87ECAC4BCA09FC1 +:10F750003257494F3F667C335F8EAA7CD35B07E903 +:10F76000CB3CC1E779982747BE4D8C8BCE70FB0F01 +:10F77000F1CD7C846B1EC669B4FED7554AFD5C7C16 +:10F780007C6358F31496F86631C2D93BBEF1121D62 +:10F79000CF55F17D6FA9FA7F4CC4378F8A7B0A5A07 +:10F7A00031CEA1B887C7392358F44EEC3F6F233FC1 +:10F7B0000F9457159579DC125AC4CFAFCD2E43BFA5 +:10F7C000AD41F34F64201BF7BA66D7BBA03C5C3E4B +:10F7D0003B18CB862B5C86651F1E7A01915C0B65FE +:10F7E00063068C2373BC1BBBC57A81CAB2CA01DE17 +:10F7F000D1CBB2293E182EFBE716A15E5AC1FD07F8 +:10F800005F1BC405BEDEF03F2AECA5AFEEE47D48E9 +:10F8100067C3C5ED9521F8C12C2F51A2868BCE531D +:10F820003055B5D2AD2A2AF451F310D44749E8AC8B +:10F83000C4D71BFBA2731BD0D94774DE8CE3209D79 +:10F84000D14E9874AE7109BF5F8571C65D3CDDF322 +:10F8500018DFB7992A7E779E1F83C156BC0CF4DA55 +:10F8600041F4CAE5FE5C9C5E32C499304F459C571A +:10F87000F729D757E2798B67059ECCE713025FCC57 +:10F880006B3FDF07FAFB09E45FB75A290E1371FDDE +:10F89000EDAB837EBC16BC8AFC01E215F3074B94EA +:10F8A000D2A7B1DD4FCCF9B34ABA0F02FC793A873F +:10F8B000F857E33B378EEF7FE672D525D37E59C6E6 +:10F8C000F30D178B5FF3DC56CF392DBD1EEDB7F16D +:10F8D0003D16AA8379CCF25E6F3BBF64FA0389FDC3 +:10F8E0001D62D1A3088759AEF9F081DB90BF1F38A4 +:10F8F00025515E763E8BAA1C6F1D749EA774805E98 +:10F900002CD1F9E9556547C1CF2F4525487ECDCA91 +:10F9100032DC275B9AC6CBBEF59B1B70FF6329EEDA +:10F92000B127BFA8897F2FE0DFB3F03BC6B18EF0CF +:10F93000BBAE1C9BBE8859F3F4A0277EE74A9A070A +:10F94000B9383D1113FA01F3BAD6738B16BEFB23F7 +:10F95000F19D91A82792E737FE2CF8CC7C7E81F6AA +:10F96000C39ADFD8E4107A213464413A7F5AF925EA +:10F970009E6F9FE116EB973C6E08C6FD05BB7E3679 +:10F98000E388A0DBCE573D714198C797097C66C6D6 +:10F990000323C4BB43EB1D1D57027CBBA6BA085F03 +:10F9A000F337723E0C6C5EAEA28B61EAF70F3C7CC3 +:10F9B0003EE3911FA1DCDA543A17F7AB66A1130BB3 +:10F9C0007F3F708533DC253DF45AE80A67BAEDF4D1 +:10F9D0008B26D06F90FB22E897E775DBF06FE2FB98 +:10F9E000B8A0DB6191D77A4BE4B346B0B08EFDD6B8 +:10F9F00039CC75767E1F402A3E48B94F5CD0D7D4AB +:10FA00002F6F7A385D7B9E5CBF1C17F5F2A7B2E9B9 +:10FA1000FE8C9E7E2F73F378F5B89B25DD3F3CDD91 +:10FA2000CDDBFBEA22A4B7CC75FF60135F1F30EB80 +:10FA3000CD700BFD25D6EFC121A5E78D02AEC2A981 +:10FA40006C8675DCB962DC1B3DFC7BE2B873DCDCE8 +:10FA50001F30F5A539EE8866EE2F98F5AE898F1B1D +:10FA600016E34628EF1C6CE2F77B14AE057A01A979 +:10FA7000F44722612C1FBFF1E63B7E887E7C4E114D +:10FA8000DFFF0904C73CDE12D1CF76473880E3E5BB +:10FA9000019E18F8650AC08D4FAD8A51BCAE790D34 +:10FAA0003A3762F1F39710FFE426F7F34DBCFB54AD +:10FAB00056E6B4E8AFE11ED996DF35E779E3C28AAE +:10FAC000861C806FFC3E3F9DD32BF34B246FA3C35A +:10FAD000B9ADB88FE04B418FC7DA18C55BE39C9D89 +:10FAE0008BEFC17D780DFCFCF6F65A9ECFD8EEE880 +:10FAF0007AFE359CE70607C5496D2F7AE75C02FD63 +:10FB00000DCCBE6F6636945B5E6C7CEE3528EF766E +:10FB1000F338696FDBD6B9E87FEF58C9F3746679BB +:10FB2000E87DD954DEB671EB9C91E837B4C9749F77 +:10FB3000C2DE84FCDD436E85EB1137BF3742DDC882 +:10FB4000E3EC78FE6E068FB33583DB476D999C98A6 +:10FB5000BF6B20B94C91BF5BEF36ED58B31BF37709 +:10FB60007BBDB21FF96FAF77AB07F735EEF52E60AF +:10FB7000746F4B58A675AC6D9DCD732F01BCD455D9 +:10FB80009AF9B7660FE6CF9ADC3C7FB605F5518E41 +:10FB9000B5FD29DA579967B63FDB4CF3AF5B69E6F1 +:10FBA000FF78FB66D17E1BB62FE9637C7D0B6F8FE0 +:10FBB000F93BCBF82D6E9E876BED67FCBD6DCF6773 +:10FBC000DE65B17F3131EE6881D731FB2B4B51D5EA +:10FBD00039586748D86F9775FFFCA3CFB474FD1AE6 +:10FBE000BE3F2555BE3D07E9F6B84CF1C6A81F2F0C +:10FBF000A373E6A6FF66D67F41C8DB21210787767F +:10FC0000407C8CF9C41D223E5ECB38DDDBCE4956EC +:10FC1000B8862FE3F9C6513F5EF3EBD149E2E343E7 +:10FC20006E111F2FE3705BE87DC8DD477C7CAE7CE6 +:10FC3000592D9A9971F53C7F36AEB991E46EDC3E50 +:10FC400083CBF3F949E47F0D3F3F812EA7C83B7F6B +:10FC50001995B5F3D3A83CBC858FB747F85FE39BF4 +:10FC6000787BAD85E783861B136D71EB976E9EE7FE +:10FC7000D1AA12F33A1FD5E2BAD8B9A7FD21EB3EBB +:10FC8000B4C4E74ECCEF58ECF3A3F1F51D9EDFC9E9 +:10FC90004FC8DB7CE94E9EDF31EB8D945804DB3F8F +:10FCA000B581DF47947A5CBEDE6BF637F2EFE5088C +:10FCB0009D9BC03F5CB7CD0ED3B9E691DBFEFC2B1C +:10FCC000DCD7ABE69415A33C7FE916E79C5D29F3EE +:10FCD000065F227D4C7A99F198A9CF419FD55BF5BB +:10FCE000D987C2CEC4F599B017A63E1B13B3EBB3A8 +:10FCF00051A8CFA41EFBD4DACA88CE45CEF673BF76 +:10FD0000467DB63E519F19137F8DFCB595EBB3E64A +:10FD10001D4B67A23D1E54563378053CC7FC642D2D +:10FD2000F15FE0DB7CDDC1F0F0F5882776DC4FEF9A +:10FD3000FFA952E8B165BCBC7765212FEF90498FD0 +:10FD400025EAB31C0F5F8FB8CD23D6237624AC47AA +:10FD5000F4AFCF6EF3F4B11E61DA5B6852E6CCB259 +:10FD6000F245021E4DFB27E8D9BC88DB3FB33C2897 +:10FD70003A90ECF0ADC29E9C2B3F568BC38E2DAFBC +:10FD800099807ED18D0B4FCA563FBA5FB969E77231 +:10FD9000F38C901BAD3DB9BCDCEAE179D9DEF2D23F +:10FDA000771EB43F39D113F66DDCEA91CC7D1E3657 +:10FDB0003931EB8D1572F26C6DDF7950534ECCFEFC +:10FDC000C6A69093B1CFD9E5E4560F3FD7DE879C06 +:10FDD000DCEA29E92D2710F77EE91671AF2DAE1266 +:10FDE00071EFED1E71EF514A7B26ECC10EAE5F53F1 +:10FDF000D9B3A51E6E4FEE41C07292D823B37D0ACF +:10FE00007BB6C2C3EDCAB77BB54F183F853DBB5F1C +:10FE1000B47F08DB27B387A27DA23DFB9E807BF4E5 +:10FE20008EAE837DD9B158DBB96DDF87B7CF4ADCA1 +:10FE30009F3146F07B5EF6B62D2B9FABF7B6631B6A +:10FE4000851CEC10FEEF2143E479DB16D2FE9CFE0C +:10FE5000ECD8E8C7554F51123BB6C393D28EEDF0A4 +:10FE6000F469C70E931D2B1276AC48D8B1A258E79F +:10FE7000C5D9B104791C63DAB11472F9A627951DAE +:10FE80007BE120F2D9B9FD7F5B3B66C619A9EC582E +:10FE90005C3E2FD28E99FD3DDACEF3DF3DF219DDC7 +:10FEA0006D97CF6593513EDFF428FDD9B1373D49B9 +:10FEB000ECD878557FB88CF2AC1797F748DC77D23E +:10FEC000DFFE6927EBAAF96110F324E1DC344B9CD7 +:10FED00003A4ACB7EAFB3753D84D73DEA9F47D20F9 +:10FEE000CDD4F7F5A4EF47C6F5FD73DF4CDF27F857 +:10FEF00049A9FCA340DA7F8FBE0FA4F5ADEFE37EE6 +:10FF0000D145EA7BB3BF475BECFC347E1FF0137C2A +:10FF10007A74EDD2ADE81F8F7F71199D3308A42943 +:10FF200049F53DF05120CD929776EE6B36705D0A23 +:10FF3000F4FC9B1EAEE7E99C79EFFCA641FDED7059 +:10FF4000448369392C893DE0F70EF57B3F5780AF3C +:10FF50005FE54D8D7420DF1F62D14B109E5EF773FD +:10FF60008D0A05F09C6B5DA6798F9E293FA1C790F5 +:10FF70008F32AE38D37E08D7937226D239BB296927 +:10FF800062FD28E17E298BFC4C49B3C84FCFBA33C0 +:10FF90000B59F3E28D836F4A754FD69569963857A2 +:10FFA000CBE6F76425DE5BA5B8F83D0046292BAA11 +:10FFB000F4F6E43558A1C8878AFCA6391F77AEBE8F +:10FFC0000BE7738DA06F961CB926ADC4025FC2B952 +:10FFD000F9F55294E74FBD06FF2ECED1D3963000EF +:10FFE0006213F00B9E97AFC773F3F0327D6A88D629 +:10FFF00028146FA803E31FDF58A623DEA5B1ED1474 +:020000021000EC +:1000000017A58DAD0CE0B9EB7529CE5D6F1270D5DB +:100010000C7310BC1B3E94E85E850D232607ACE7ED +:10002000E09D42C60EA74F767559F8B92E7722ED9E +:1000300057ADF32EE8F31CBCB7999F9FE9B75E93C9 +:10004000623BBF92F85442AC09D7A1143544E7741F +:100050009D1F38C9FF76B24A9A3FEB92C4FDA73C78 +:10006000DF67C22D792B89EFCC3C9F53C8E9AC895F +:10007000535DF8BECE15A2FDFE75B97DEB7F279EC0 +:10008000E31940FB00EB90DF0E8CDE4D76DBA357CF +:10009000D2FD71CE5CE01BC0B752DC4EF70AA40360 +:1000A0003D7029A33F3A2C117AD2572CF3354DA13C +:1000B000B71CC5CD0115FA71143A18E65534BF6C5A +:1000C0003B0FBF5EE2EB560EA187CCFEE6A7717D2B +:1000D000BD43F48B2C85F7852AAE57897F01D3B4B5 +:1000E000FF8FFA818F6125FC63CE97F6F7E6BD3866 +:1000F000E6BE559014DB3D5CE6BE5533CF38FC11AF +:1001000046FC33CAE0FAB9C8A8A5FB7B193B2BE132 +:10011000F782475486F200DF290E31DB8F8A396C73 +:10012000FB67834DF6728158C71C21EE05A3F7D0FB +:100130004F8158F72C48786FDE5FB2135F24591750 +:10014000495CFFFC459A7DFDB3BFFB53CC754E1F48 +:100150000B1F26BC55F1F584BA1C1E1F26D637F599 +:10016000E6F99357F76987DE073B546FB1431F8861 +:10017000FD17EFE73E9FBE74ACB5BF1AA2EB07D5E3 +:1001800027AE383DA2C70EF90EEED582E3F8731004 +:10019000F0CDE2CAE00464F5C56BDED2ACEDFFAE93 +:1001A000F2DD2B4E5BE67F6BE0A6FA7ABAC74DFD17 +:1001B000BFB87E8C694CBC072D80FA2CA7679C26A3 +:1001C000800F9F4B2A797CBC79B423E6857F6EFE35 +:1001D0009ADF9F609CE4FBDB1BAB17513DD287800D +:1001E0007FBF97C7B91995352E7E582FEAE2FA9945 +:1001F000CBA912DFAF23ECA9905345F86787A6DDA2 +:10020000447AA78A85CA693FCF31BE9F6BF3817755 +:1002100049EE12F1D85CCDF793D4E37D1AA43CC526 +:10022000FE1533FF9FB04FE5FB78DFC628EC3FD2C9 +:1002300074BBA5FF75B95BCBF3C9CFCEB7DD47D68D +:10024000A072FFA0AEDABE8FFD16AFE967768669B1 +:10025000DF8497D1F9E48CE210C3FB7C332AA5201C +:10026000DD0B09F42885F964CCE822BDB039855E40 +:10027000F8A390DFBF5B23D1F9AACD805F8EEF7F1B +:10028000BD0AFB332EE7F7FA25B69BE135F3CDFF28 +:100290006FE1F71EAFE977FD6DF03BC82B8B7B4D0F +:1002A0000D27F265A25CB8F476CD2AAF01295AE693 +:1002B000CDA1FBE409BE0D5A2C703F3CD5807135B1 +:1002C000B67704ECF52DEDAE49D66E83E93F142DDB +:1002D000243971EB205F16FDEF0C801C59E0E99189 +:1002E000FF5AEE0F611038ADB7DCA6D23F75650B33 +:1002F0005C3AE0A5612CCF2729338B5D85163D77CD +:10030000A797E7DBEAC6F23C537D7881AB706CEFD0 +:10031000EF0D21B93CD9FE4D8757A571D2BCBAA0CB +:10032000D3D9309E2FC4F38148276DF0027F3E94CD +:100330001BF57CCA6BF5074F553FF054F503CF44CE +:100340008407BE4FB94878BAD222D54827D3BF4BCD +:10035000B487727A7127EABDFB8739F4BED643DFD2 +:10036000AB6657148EC07DF9952DB80FE2C58D5739 +:1003700035364C15E7AF86E0FD2F7734E2BAECFB5B +:10038000325FFF646A7B0EDE23DD90F352494592B3 +:1003900079BCEF69FF0EED87C873F851BFAE13FE4D +:1003A000DAAD37A7EF522C70BC2AE47E9D947C9D79 +:1003B000EC39C1EF8CB58FE3EBEC9171D63C46E2A2 +:1003C0003D58B72E97AE28B4F0DF7BF173B5B1740A +:1003D000DC07D690B37B443278DF73C7EE207B30E6 +:1003E000CC0EEFE29B38BCE0579660FB67BC5CBF6D +:1003F00099F0AE8BDFAB1D1B66DD67F64F42EEA1B9 +:10040000DD38BE7EC67F1F2511BEF7CDF66A7BBAEA +:10041000C0E7888A247878DFDD9E14BE5B113ECB6E +:100420007AE1FB09F804BCD17DDF89703DEF35F33B +:10043000641CBEF839BB1BD3C91E9A74DFBE715150 +:1004400023AED7BF27E258C0638EC063493238DF7E +:10045000F3C492D27DF1CD76384FF58233362E1922 +:10046000FE2E02CE3EE7791861CEE9AB5DF271DF78 +:1004700015ED7E3343A5B8D180B87104B4F30D30C7 +:10048000BE6BBD6FAAD9C7E3DA661FE78B2FE6956F +:100490003D5CC630DF10A4F5E7E5AF2994570F5C4B +:1004A000CA3A703FD8A9A68256C382870DC25EE0C1 +:1004B0003A3468F4F8FE970DC5593ED433A7EABF25 +:1004C0004DF788181FF0FBD653C9EF579AE1C4FCCB +:1004D000C6A652CF726BBE3D3D9BC3D790C9E735D0 +:1004E000DE6B5C17447B1706AB63397753E1AFE4EF +:1004F000F789E7855C982FD45868F31898EFF89738 +:10050000CB7C3CDE36EF6B8BB26F725F5BD69CC2EE +:10051000B710EF5F1C5118D2FF8C1A7A632AE2D30E +:10052000CBD7CD942D37B8701BC88D4A64158E9BE0 +:10053000DEC2E395A66A4641648DB77468BA258F1A +:100540007360B287E8D87DB944FB03DE7144773A23 +:10055000013F67DE73B25DB42F056C60163F7F44C8 +:10056000CF2513743AA70624C1FBFCE6CFBBA69C9B +:10057000CE65A507CD730B3E19F4DC26BCFD08FA49 +:10058000D9B45D22FA9C989B46E5E52D7C9CE5E874 +:1005900087909C461D8BACFB7C58D7AC07F199CB60 +:1005A000C237E2B9A796EBE762FFF317AEA27D91DF +:1005B000F3A7EA13E959FEFD8844CFE7FCBC7CC0F1 +:1005C0004FEB2FDE89848F530185CED5DD59CECFF9 +:1005D000B5CC2F7F8BEA9D5AB6AC7130D27FAA87FB +:1005E000F6D146E7492371DDFC8E795221D6BBBD99 +:1005F0009C9F73995F7E92EA2F9D27E5EB54FE9CAA +:10060000FABFB6FEC023C5D06E2E6BA6FD3AE5AC90 +:10061000929EC76FBA87FAFDC3340F9D5F2AF071AF +:100620007C78EA3E8F0E86FA4B9B26BC8AF7DA7AF4 +:100630002EB924C4F3B5F1736F8E0B4319CF610D3E +:10064000E4F61BF9C6A3803507519D0C01465900FD +:100650007F272546E599BE671AEB07A3B705DFC1DB +:10066000AEDC16FFCECB5D45DE7587A7F5945FD275 +:1006700046AE3B3C58FCCE0AE89F319BA75E8DFA04 +:1006800027631ACF4FA98CDF1302AF0CBAE706FE1F +:100690005D3BB9078E0D3EB1AE24EAC1ABE7B0DEDB +:1006A0006F16DDBE09EFB9EA6E52FCA8CFEB4747E3 +:1006B0007C2AE6C5A3211FDA93870FDCBD791ACC0B +:1006C000F7B4C1EFB1CD583FEB3ADA8FD32AF951E5 +:1006D000EE9777198E2150BEFB69A91D87CAB87C99 +:1006E000DF6CBC57B7BB5EA2FCC50D992348CE2A70 +:1006F000BAC2D7217FDED5A264E37ED9BB5CEC8D84 +:10070000A9D06EFE3A29DB807AA7D4661FFEFEC907 +:10071000EF63077CB8DFBBBBBDCEA78F45BD70BB09 +:100720000FFDB0D3ACC6371DE5A389EF5BA9605CB4 +:100730006FB1266517FF9D127EFF3FA641D07F4B0C +:10074000AB97C2A381EE8B847C7F941BCE433D90FC +:10075000D6FCD30790DF4E31CED74644EC4BC43F96 +:10076000689F8DFF86F9673729D47E5D3A6F9F16A3 +:10077000B1DFC37257176F0FF38EE9411B1F907CD7 +:100780007F5CD93EDB07F02D6B97D856D6FBFBB2CA +:10079000B68ACD08FF3D1B15A64BBDBFFF410ABD64 +:1007A0005E8CF07DC7FC1D18FBF7344311EB83A171 +:1007B000CD28272BC6423CAEF7AE0772B9791A7E18 +:1007C0000FE4843624E907A4F570E1E49EDF8B4A48 +:1007D000FC9EBD47EAE0E7F412DE8B783FF1F712AA +:1007E00086F5FA7D047E2FD140A210EB754FDBCA4F +:1007F00036CDF6FB0A03451E6060C279CDEE4FF997 +:100800007D3F46B1CC905E035B787EA91B9E785FEE +:10081000E0D180B69BFC91B31DDE9B400FCDBE8521 +:10082000AFB7CD0E46DD685FCC7BDC7C05DC4E953A +:10083000BA26D0F98EB985FC9CA2796EB13C979707 +:10084000377D6D7C8BE7C5939FA7A6F9C80427F178 +:1008500045589CA7BE55F0DBBFD6F238FACC4C29E0 +:1008600086F764279ECB8516251568F7D60FCA42F2 +:10087000BA9C91C4BEAC5F71FE4E3CB77BF73CE9BD +:1008800012BC47166A6878BFD7F25826DD9F39A791 +:10089000C85E2FD22651DEE26A3DE17DD33A3AE7C7 +:1008A000B332765242B8578613CE0527F2457F659C +:1008B000719FC12C41D723625FFC2CB1EFBD9C6DB1 +:1008C00029CB82F9542C62A118C37DEB868AE57B83 +:1008D00096F07B84EEA94FB39FEFF56A7D9EEF1DE6 +:1008E000B824F9FD0401FE2A7E9FD0B0B285B48FF2 +:1008F00036F15EA180B8A76058393F1F125863FFD8 +:100900005D8FE38ECEF202C47F1ECF3BBA72EDBF85 +:10091000F383EB31D63C96DFC7EFDF64019DECF843 +:100920005D470630EB3EB1BBBC3C2FC6766867AD79 +:10093000EB3AE78EF47DCFA85B4F3C7F9E4B796B03 +:10094000130FBDF43CE0B2D6626F2CFA3D26F47B67 +:100950003AF2BFA9DFEF4CD709EE8FC3A1CD1AD26F +:10096000510FD3FE5CDF2C2E1777A29D043B7A83B8 +:10097000CACAD42CFA5D267ACEC5767CBD80F21721 +:10098000AF1605689DE8CE96561DEF6DED0517D89C +:10099000B8C6C949E132901E08976481AB3E13EC9A +:1009A0008E82F0897D57E5DCFEF4EA3760B76B96FE +:1009B0007E9B4D7B2615279DAF0FEFDF658170E095 +:1009C0009BF40B4A634B9FFD46423E87D2BB5F9828 +:1009D000458D89073939BC71FA24E201E18CE36164 +:1009E00011E0615C4F3B9FC05FA23C762F2AD85C30 +:1009F000A2DBE9ABF0BC6FF2F9F6439F621FA77769 +:100A00002A3A99F5B3CCFE52C0532FC17CFAA06BA1 +:100A1000AAF6AB7D7C1E89FD5CEC3C1CE2FB8DA242 +:100A20009F547836EB0FBC58BC46416E0A7AE315EA +:100A3000866EC7F677A4C7C74BEA57F5C44115E4DD +:100A40008F748B38DC8C83BA5B781C64C63F18F7D4 +:100A500018032C71506EA513F5C786E27C1E07B5EE +:100A600028944FF14F999187F91633DEF96D16CF1F +:100A7000A77C54C17FA72F31FEF10FE0DF2FF5F3E4 +:100A80007873B1377ADD4C80EB5476AD43D259AFF1 +:100A900038C8892B3278EF80F8FD98D3CB076CBE2D +:100AA00089B0F4D7C53FF407745B854F1864D554FB +:100AB0009721CE835D89EF6F1755567571BBF5E7AA +:100AC000F2850EF4EB56F92DF7BAC17F776C943AA4 +:100AD000F09EC73B187F4FE305D19F0CFBA659E260 +:100AE000298C9F0CF01794861B9A20AC81F869E939 +:100AF0002F7DB86F61DB0D2594C756C18F85FAC76E +:100B0000B3F8B9F503932F790B9DA253AF6B74FF24 +:100B1000CACC2963B7507CF556BC4CF1D5A7EF3A47 +:100B2000A9CC8AA23B71DF5EC3BB6EBA8FF0D30340 +:100B30008C7EBFF0CBED4EBA7FB641EBD889BF4378 +:100B400070E6DD748AC7308E8B3A31BF0E8A80CE54 +:100B5000A31A32C65BA0C606F2FBD5F541FCD94EFE +:100B6000CF1F42BD53F4C3621D327FDF3990D78F50 +:100B70000EE2CFB3F4EC7673BFC5C47B690E8FBFB2 +:100B80008B73CC7C11CB437DD280F95CF44FAE9556 +:100B900063D6DFF1309FC745FD864CD30F0ADD8257 +:100BA000F8A8983750C6F91D8BDCEEC17B6DEB5A67 +:100BB000F265F4F3E76770BFE7ADB282610EE8F764 +:100BC000A7F54EBA87ECE33229A681DF7232A8D7A7 +:100BD00092FFB61EFC59783F52033FA618D7D7A5FF +:100BE0009001BD777FC0A8DEC72D3FB80AFD9BD31B +:100BF000AA44F1D57F64F3F58629CDCA490DF8E002 +:100C0000BAA9335F9F0BED8A9F5669DCA772AE2E9F +:100C1000398EFD36281407FE32C749CEEC535BA649 +:100C2000C430AE6E63610FEEC73762C9F7BB77673A +:100C300073B8F35B6FA778A3DBCBF38F0F1F58FF5D +:100C4000860EED4E3797AA18F79C16FBC1EF8CCD98 +:100C50006CAB8126EE4C2E3FC71DD146F4F38DEDD3 +:100C60000ADDBF8A7C84E718BAC57ACFE9963AE2F2 +:100C7000ABEE47468550AE96C76AF2683F6C069762 +:100C8000BB3A945FCA1F859A905FCFAC9F34C0FA7D +:100C90003BAB8F6638CCFBEDF4F87A3FF2ABF0DB80 +:100CA0008731F32FAEB7F8EF9DB5F0F820AF45A12F +:100CB0007B5087C59C1DE2BE45DB3DA3508FFC9455 +:100CC00061C29F1FCA62078AF1FD1ABBBF35B49E7D +:100CD000D71BB232D10FE3FEBD5FE88953222F7ECE +:100CE000D9197B3DBFF0EBFD097EFDDC0C29E9FC49 +:100CF000BAEB6FA0DF7D19BA05B066B70F7C7E4DE9 +:100D00000AED23C983382DD9BDD8C39A259A2FD48B +:100D1000237F2F713EDD67383DEFDE03F19BD47BEF +:100D20005E2B3EED68442393189F24C2DFD6C4F7A0 +:100D3000794CF7F2F3A0D39BE556ECEF32D65E8701 +:100D4000EBD05A4E36DDEBDF10E4729435A72CC39E +:100D50009A67DD9DC1E50CEF1D0A5BC61FD1EC61F2 +:100D600061CBB8A35AB26CE5D1B121B6FA63F6E40F +:100D7000DBBE8F6BBFC4F6FDD2FD136DE5091DD33D +:100D80006DF5271D29B5954B3AE7DAEA4F39B1C021 +:100D9000569ED6B5D856FFB2334B6DDF2F3FBBC240 +:100DA000F6FDB8381F74E5F9FB6DEF67B2876CED9F +:100DB0005A053F3803328B59EAF9D2B87F8A7EB898 +:100DC00061A98FFE72D452EFC7A27DE6550BFBF4EA +:100DD000B31F16F675BDB8CFFF1FC57DFE9BF03E55 +:100DE0007F3CE782F7F93B71BD8BDFE7DF20EEF355 +:100DF000CFBCAA7830FA115FF8F1376919FE06EF17 +:100E00004E2CA70578783B0003C36CDCA72BC5F0FC +:100E10007C6B34D461D03DC833EC7EBDA7D0FE7B63 +:100E20005C831665D97EAFCB573CC4FEFB5DDE7C90 +:100E30005BD93BF6125B7B47F6C484DF0BB5C70D6D +:100E4000833278BEF8148BBE41F98A4025FD3E7985 +:100E5000AA38E53B186BE6A4BE8FFF0CDEC7AFE3F4 +:100E60007DFC95790B2C78FEA3D06B9F6472BFC676 +:100E7000BC8FBF7BCB28DB7DFC78ED39E6DBE41C47 +:100E80005EFF0E16DA2CA35F25E26BF20B4034BA3C +:100E900033F9BDFCDD921CA67CCD16672BDA8F6E74 +:100EA000BC8F1FCB9B14711F7F05F9951F79F97DAE +:100EB000FC1F6F5776A11F755AE4B3BBFDED0EEB17 +:100EC0007DFCE02FD8EEE35FC5B81F9778FF3EC1E9 +:100ED0000170AD7A5A223D63D6233C05FFE7EFDF70 +:100EE000BFD4B4EBFDDDBFDFC2F5E07FE3FDFB4423 +:100EF000F74D217EFF7EF89128ED7BBB36A0901D3B +:100F000034EFDB37F338265D52E56DFEDA7CCC47F3 +:100F100003387F5D2BDAFD17541F7FD4008000005B +:100F20001F8B080000000000000BED7D0B7854D5EE +:100F3000BDEFDAB3E791E7B093492613924C7612EE +:100F40009480412690C843D40122060F8F80D48B11 +:100F5000AD7A2684C704A237546B39F7F4DE6C48A7 +:100F6000C000499848D46803774283C5D3D8C6DA0D +:100F70007B8A9EDEDE4438545BF580AFBE3CA7C959 +:100F8000E409E4F643AB96EF7CB4DCFF7FADB593A8 +:100F9000D93B339909C2577BEE899FDF66EDB5F6E1 +:100FA0007AFE1FBFF55FFFF51F915C255773085947 +:100FB000E53029BD3184FE5D85FFEFB864547AF3D6 +:100FC000C7D3775DD6A609318E971727A69D443ED5 +:100FD000549213B91C51DC1FCCB013B21C5FC884EF +:100FE000BC51039916F8FEA395E789959052D25CFF +:100FF000925C44C8A68DC4E58722A572B391403A9D +:10100000AD43203601BEEB2D5F456E25A4B23E9E5A +:1010100090A0FE9304D300B61343DCE46A2E6D77F0 +:1010200060ACFFD0AEFD41E340F078A123F0921018 +:10103000077B45B24A1E2FC913701C41DFC1781CC3 +:1010400025F51F8BD0AFAC52439F05DA753C1E943B +:101050000FFFC7649A34F526AF2C99E62920E403E4 +:101060003324A613D27EE8B5279504420E14E53644 +:101070000B29840CD58B44807A03F5F74DF3C0FB24 +:10108000ABF877D7C4E76F6A08E99E399E1EF28AEB +:10109000A57E281F5758679D11F4DD72C944483159 +:1010A00021235E53A91FDA3DE84AB6CE289898DF7F +:1010B00057C5BED7B773B7642424959037E3CBEEFA +:1010C00096E0F9B547BE1183FD6A16C8C62E781E94 +:1010D000CE2C9B960CF591CB501EE6AB0AE688E42D +:1010E00041DF2481D6ABD67354D75F6797E0F617FC +:1010F0004C6CCFC7BF6B4E77BD3903E643F94074E4 +:101100001D2738AE94073643BACF1DE7C226C8154F +:10111000287F1B250DDA5EA341B12ECF196FC70FB3 +:101120007483CF633512E986421D350E9A7EA1463F +:10113000A6CF1335F9F4F90F352E9ADF59B390A6DF +:101140000F6776BD1E07F4F4D90652A800FDCD3E08 +:1011500001F543BB292576BF080DF76592521C3770 +:1011600052D45268BF4F60746A2106D20DEBFE67FD +:101170001C07BCDB2D99E9BC413F0981721531ACDC +:10118000DCD7483521406FE59C4E2D48D7F07C6870 +:1011900043AFC904F9871B5E497563FD75A600D28C +:1011A0008D9BD3EB43BB201D44572964F73B35D0BF +:1011B0002F8F5F94FD02D66B0C8CD119F2995C26AF +:1011C00060BF9B9F16C8F3901EE9FD9964C0F97437 +:1011D00019C9F11CECAFB67C8AB26E693AB44F1CE7 +:1011E00052FABA4442BE9AE059B3149281943D66D1 +:1011F00001DFBB8DB204E310883A5ED26B8271D4FA +:10120000BACBE87806BCB6A6FB696D25D2503E96EF +:10121000F308576F094FBFC07F642888FF5E061E22 +:10122000E2F345D7B51233E07D7607D04908BA5CC2 +:10123000271958F95DD9069CDF6FF0B1E08C21DFEA +:101240005A783F495AB5430AFAFE7F227D58267ED6 +:1012500067210D948F615E867AF3D938711DB38D45 +:101260009704FC5EFE16AC6FB07C101F9C943F7719 +:101270007DB4BBEE74D07ABD2425A60CC17C90024F +:101280005240E51CFF5EE59BAD7CBCFA7AFE58A39C +:10129000D49D36313E9326696F027FB532FE52E708 +:1012A00033A0AB5F9DBFEC7A18E462429EF1E5D7B4 +:1012B0002B46E4B312AB0CDF0D8CD1B93B6129F4A2 +:1012C000AF43E0D3CBE979389625FB1C66CAAFD98A +:1012D0009CAE0FB789AE6EA0B36CE05B03CCFF0C85 +:1012E000A4735C5B9F91D2AF4ACFA96541F447C616 +:1012F000F92085F448CB81FF36FB45975FC67AB568 +:1013000074AAAED3C815E03868275062F6EF0941D9 +:10131000CFA920810C504F39D07B37CAD3DE7BCC8C +:10132000E948FF65C4755C9EB83E40F72B1CC82F8A +:101330005F915C0720BF5FB75ECDE9848E4B2F8F36 +:1013400086501EC9E1E591BA7ECD42D9BFCCC8898D +:10135000BC7ED74B6E0D65FAF7C4B1F1161E27138C +:10136000E555EA06B7604A41B952381FC971B764FA +:10137000A7EBA89763EA7AEFE073AB975F3B2599F9 +:101380007DC7D7EF7027C82FA09FDAD60AEB62E897 +:101390004FADCF40707E0EF5ECB7CA2057468CDDBE +:1013A0006617E4BFD695634539077459DA05E991A4 +:1013B000FA3C6B6E107DDB93981E007D48F5D6508D +:1013C0007DAD352F283F2D49647A8DC84D8B186D22 +:1013D000CAC6DB503FC31FD3EF2AAE10AEE2A2D481 +:1013E00091D3882BB2381967D68B8A05E8C8592F54 +:1013F000BA63AD54AF2BC1F493C5E916CA51BD9E73 +:1014000041FC3D45F03EF3712D4EC8A8837C283742 +:10141000BD4A8F1F4802CE9BC4E5D0081FE7ED23CD +:10142000DA72129F378904BD87764A71FCA913C707 +:10143000151891D72C8475DB5265A4E24D3FCE4C34 +:101440003F1F973FCCB880C7639269393A2EFD7829 +:10145000087199CBE64C1C4FC568D73EE005B2A396 +:10146000458B67F4FDEEA837521CB1B815D607D6E8 +:101470007FB1CFD02EC3506A499788FA481925E426 +:101480007F41BAC397DCB408F247EAF20C487FEA1E +:10149000BAAE99C6C6DD8115023E1A6AD9FDA4020C +:1014A000ED7E3391D159DD1D46AA8F7B4F58FC2824 +:1014B000A47B1B449A2EF78B7EC44DBB13255A0E7A +:1014C000D48B6C86798BC77A40D4259BE424C4578F +:1014D0009F40BF14F86EA895E12B956F3D582E8460 +:1014E000FC7D86EB8B31BA5342E396BF4D66FDFE21 +:1014F000EC8D3F088CFEEEA27CB399AFBFDD77AEDA +:1015000014E7A3AAC840703ED288BC4F827AD23674 +:10151000327E1B9B7FCE6F5E3EA769A4EC10A56F49 +:10152000855039ECE4F43BE47F2C09F9CCA9CAD707 +:101530005D4CBEC6C07F285F37759934F2358D1873 +:1015400003C1B8359BD39D5EBEBE8DF31CA487ED51 +:101550009891874FAD5CB87E78F5471ABCFA5C125B +:10156000C3A317C7F0EAFA90F983554C2EE8DBF9CC +:10157000769291E6035EFD76527164BCEA15D8BAA4 +:10158000DB9323E0557F681C329434395EBDF81735 +:10159000C6AB17A3C4ABBF4C627AFC46E3D52A05A1 +:1015A000F06ACE2478F54586577B11AF164D8257E9 +:1015B000BBD6ED9E8E0290E3D55B1394353998D659 +:1015C000E1D472A99AF23F79D8156384793711571B +:1015D000D32DF0FDADAF965829FF5F235E4D8236C7 +:1015E00083F964335FD76C5F68F9F0DD24039BDF18 +:1015F000BF12BC2A267FB9F0AA3A7F2A5E1D6D7EF3 +:10160000AF5E99817C566495A19DFE4CA65FC3E1B7 +:10161000D53E8E571F4D66FBB231BC5A777DF06ABE +:1016200045A748ED11E1F0EAC528F1EA16C4AB027E +:10163000E2D505671C93E2D5B215E941787551F200 +:10164000FF5F78F5974976BA8EE1F06A6518F9F58B +:10165000B324598B573BB8FCE274BD85D39DBD853F +:10166000C97BFA07ED5A24A9FD00D47FB96FD85F72 +:101670000B6963B2BD5084AABC2A5F170946E4E334 +:1016800038FE893A4FC9068F17F59051F211266F2F +:10169000DCA42C11BF63F2C312135F376023E4C3D1 +:1016A0008D1556B40B3D69627AEA43C9634D0E92BB +:1016B000234F70FDF46422E4231E7678AC85F0B4E9 +:1016C000C62B4F94D17A5D066C7F7BACB6FDA7F834 +:1016D00077D300389C2DA062CC0AC814F0531E7D2D +:1016E000BE6B929B104F8EBC29BA8EC1780209A0A6 +:1016F0001F83F8B65DA7175FE7EB8EE510BF2C33AD +:10170000CAC6507CBE3C46D4E01A151FE0F72488B8 +:10171000EF97B5E695603F9613571DD6A3FF6EAFC2 +:1017200011260CF5C08678FF7161623BBB13963DB4 +:101730009B9C4AED69DEAE1072F755DE7FBD5E30D0 +:10174000215D00DDD77A8927260F5F3E2821FF40E3 +:10175000BE01F5C0BBCB9447715E0312C30B6A7D1B +:101760003F0B371F12937751CF47CCE4F271AC5E39 +:101770005E4E3F4F4F25CB9A7EE8EB278E5E33D2ED +:10178000D9A30946BA3F21274D97C6E44D90FD13D2 +:101790007667549FBDB76AB911D7A74467DFD4DB1A +:1017A00049F5E96F27333A56E921E27878B9E546F9 +:1017B0005774F3648C729E8CD7364FD1F2DF5094FD +:1017C000FCB73996D197FA9DC1C6F605E3FC2759B7 +:1017D000711FD5E78B8EFF9E4DF9D2F39FC5563C06 +:1017E000CE7FC4516D5E07FB4731F1717B7901D229 +:1017F0008741D37FF549DAB4F4F8BF918E8A19DEB8 +:1018000047FBD320D7E7778B093B4F41FB9FB89726 +:10181000D850572D5D50E5ECC779B3313D2E899EE8 +:10182000A3F1904F7E6B21D8BFA11ECFCCE0F9BBB6 +:10183000C9A6EEA315BB612194B7906A8687BB0544 +:101840008303D61F360009417AFD261BC7C1C46732 +:101850003750E3FF5901BFD397537146119727457E +:101860005CBF90B3460D0E9ECBF58F9D08541F575D +:10187000BECF7042DA462D9E98FB06B323A878614E +:10188000AE1E47707DA5C70D69F80FC4D545097E0A +:10189000C40D7A9CD020FB564C87FC868DC4857A7B +:1018A000B6AA6BA7807470970DF0026E8E395E80B9 +:1018B000797675E33C43FF709EA5BCEE18C42BD22D +:1018C0000F4409F7CB17AF7CD78A747EA1D742F7B4 +:1018D000132A4EF83ED093F12642BA00071821FD94 +:1018E00043C00198FE11E0004CFF23E0007C9E0401 +:1018F0001C80CFD7000760FE4F000760FAA7356E47 +:101900009AEEAE29A5E9AFDA18BD48F16E27DA895B +:101910007A9AEF71FE1DF4AB6F6982CB02FDEF7B0B +:10192000D5933D999C817536B175EB36E1BA352E6C +:101930008BF322AE54F7ABFD2D790601C633D87276 +:10194000DFB44DF07EA74D08499FFAFD6AFFD87EAF +:10195000D5A8393FF9AF3613A5AF5EDCAF2620FD21 +:101960007E3D64FE7098F39553B6B1FDEA295BD0D5 +:101970007E55EDEF854EB6BFBED839B5FDF585B1C4 +:10198000FE9ED6F467AF8DED9F47C7FAFB94667F46 +:10199000ADE69F0FB3BF7E72BCBF4F06F737DCFECC +:1019A0007A13DF5FAF49617CA8D63301FFD787DEAA +:1019B0005F3BF977E1F6D7FD11F0EC8DDE5F8FEF3D +:1019C0003B26DF5F9FB269CF833CD1EEAF95A9ED97 +:1019D000AF77B445B7BF1E8E741ED409FB6B4C4461 +:1019E0007F1EE489C1F3206FB8F32086ABC2F36D8C +:1019F000E8F3A068F5F36FB89C8FA49FB745D4CFE8 +:101A00000C1FFF3E59627CDD9647F57524FBE126ED +:101A10004E77FA714DB01F86A1F31FA484B61F6ED6 +:101A2000E3F36B6F63F6C3ED63F643D73ED4D7E1C0 +:101A3000EC875B387D85B51FB63C96847415CE7EE9 +:101A40005871424B5FD1DA0FAF4E93A3B21F46BB22 +:101A5000AEA929D786BB26EE7B7C745DFF075FD7D6 +:101A6000F33EB6AE6A3FBDBC9FD9FED0F69BC3B66F +:101A7000BF2EFBCDED295AFDAEB7DF9487A1D76B02 +:101A8000B6DFD4F1FD329FCF01DAE789F397ED633A +:101A9000F69B192D6FEE67E78D9BA9FD662882FDE9 +:101AA0006694AFEF4F5374E78D5D22C52D5FD47EF2 +:101AB000E36998FCBCB11FED37506E204AFBCD4066 +:101AC000AFC53C15FBCDCE94E8EC3791FC1FFE5220 +:101AD000F69B3EB4DF14456FBF39659BFCBC716B50 +:101AE00018FDF88A8DC99731FB4D2BD38FE1F6EBAA +:101AF000FFA2C31D7FA9FDBA81F73B5CFD2A5FAA47 +:101B000076643BB723D3BF49EC4F976C11ED4F97E9 +:101B10006C21EC4F9740F64E45BF9E49894EBF7AE7 +:101B200023EA5799CA5D55BF06FC6C1FFC65B51FBB +:101B3000445AB79EE6679DBD506EA6D977D40EEB8A +:101B4000E2FD4D2C390643168EBE41DF8F7E0CFB25 +:101B500095A0F6496A0EDF8FFAAC7C7F69C57D8A55 +:101B60009C0EC270012166D3D96A5CEF8B45094493 +:101B700041DC7FE59B9B50EF57B4C5903D506FC54E +:101B8000E57B1EC67CE263FBDD0EDFA6B3983FD289 +:101B9000290A8847C569DAFE5EECAC90705D0BE7F8 +:101BA000AE7EFB16DCACFE1F03B9098AFCD9CACA9B +:101BB000F595AD7622DEF89BB959F32BA0DCA51480 +:101BC000B62E7E07EB0F20A077F13BC0E7E400A420 +:101BD000BE5FDF6CC6F9997B7CA719D7B1AB6D37B7 +:101BE0007DBADA7BE8FBC297DBE9F39513E566AED5 +:101BF0005F457A9EC4E972FE73EBE8FB2D0D3BE76F +:101C00002F413F8F568B6C403C2518BA115F298DB0 +:101C100022B533482D825B80FC1D0DE2314B0EE670 +:101C2000FFD09C8EF2053251BEF4837C4884F4D1FF +:101C3000E7453FCE93040A03E5CFA65656BEB27ED3 +:101C400027D3EF487240978F72BE5A70EAB177F08F +:101C5000DCF9FC3F1BBAF6C89AF37103CA9F475BD5 +:101C6000D9B939396952181EAADF7D15586CEE4969 +:101C7000ADBF6361B7363DFF0D6DFABC60A07C520D +:101C80007C56FB7EC1AFB4E9DF4EE37E4C84B517D2 +:101C9000172308D8DED2F17E51FDF2DB6984F2F918 +:101CA000DE1CE5E132B4FBC4149E9660BEF23B2418 +:101CB0002A074AA4752549909EDDC9D2BD56566FA4 +:101CC00081E3DCEB686ABE55FE78199A585CF949E5 +:101CD000A7F039CF55B81C4540D1C275A7F0D987B8 +:101CE000F400F5DFE6DEB93C8535EB443F8063B1B7 +:101CF000ACBD638592737D101DD7A5327CD597C48A +:101D0000E4C58253ECBC7FB871E6B13D5441FD9906 +:101D1000CA331BDFFFFDC0C1E4406F7E9919D76154 +:101D2000965FB6A2696878B57923CAB961C1C0EC7B +:101D30004C8D96765C7F48537DABEC168F1DA7FBD0 +:101D400017769EFF085D29A807DA9C06F98307C469 +:101D500063B8FEFD7CFF199024B32BA89F5BC6E7F8 +:101D600051C4797C84B0F907EAEEBE2A8CD3C7232C +:101D70009C3E1E011C83EBAF9653E73FDF6FD4F808 +:101D8000C3DE7242BB8E73BAB4E9A9D24B243AF9CE +:101D9000C8C1E5BC42DE473F966C4218DE947B0525 +:101DA00094E7D95C3F3AEB991DC9F92DBD5F87DEF9 +:101DB0008ECBFC53645ECFA25E6D7999EB5759E7E9 +:101DC000DFB17796C789F27E2896E9814874D89C5E +:101DD0003A353A5C50522E52FAABCEA6FA44C5CBF5 +:101DE0002F5C82F546F9E03051F9D068F41C980573 +:101DF000EBDFE8301529AC48492CE4AF2A1224C4A3 +:101E00005376D8A775CF27E4AD235B1B56427AC51E +:101E1000038632C4A72B723CB1B8EF8D915DE88187 +:101E20004B1AFFC4E83BC88FC67075C138BDD9399D +:101E3000BDD9393DB841E4E33C7CE260F4BF9A7F10 +:101E400027DE20BFE94F4A07049D3FD394FCA655E7 +:101E50007F68D56F7A3BFA4D43FE4AA21831BDF533 +:101E600041C099F0C9D613B05908EED717F4975668 +:101E7000FDB5AF97DF749F75CCAFC789F4BE9630C0 +:101E80003F267876E3F39766776231DAD10F88AE32 +:101E90006390B7F6C14219DBCFC5259B07E9557F93 +:101EA000538AF3305076E414BA03C4E59FF5A21EBA +:101EB0005D581447C41CF437AACE4539B5849C1527 +:101EC000510E8C703D7D27B944D3BFBA379EF919A6 +:101ED000B5E6B45BE8B98887FA49C13ECA4DF72D2B +:101EE000468F79E31CDA1F85D07EF52EFF3B7C669A +:101EF00012F757B0FDD675F762FB6B373C42D763DC +:101F0000ED42791E7D961E2C13E0B9B514F0DB343A +:101F10004CBF2CB1F73D12F6FFF9844DFB50EF0D8D +:101F2000E7C7D1FDCDDAD273341FCA1BB0FCF0E68F +:101F3000CDFBA85FE3C23817EAF5EDAB849BC95C23 +:101F400042AA560933587D7DB4FCB65542AE4CD3F7 +:101F50001FD37A574B9EB7A03859B5F23B46A4EF32 +:101F60000FEEDF41EBB9B8286E1EF26DBC3D97CE87 +:101F700077DCF73E963320BDADAD5DDE04FC635DDE +:101F8000CEF0DE56AC0FDAB9CF484A8C30CE55844D +:101F90003D0961E70567F21DED07609EB6B6B2EF39 +:101FA00082E8D57C358330DF7C3B95C394BFE24427 +:101FB000587D58E2E71DC45D027828CEE0A7695F2E +:101FC0006BE2C1BA45C0FB06C87701FFA6ABF92C8E +:101FD0007D79F5FA86D38BC6D34F651D6E389D8EFD +:101FE0006942FDC7E6A47F7F15FAD74F5B44CA70EC +:101FF0009D8C9C8FE19542E53F7C4382FCC40E7230 +:102000007FD678E89F2F99BE7727C2FAC54347ED60 +:10201000F3E87B65DA3CFABE3B813F4DF8846D9373 +:102020001DC75FC0EA8F238A1FF538C9F734A21E87 +:10203000AB7B4E94703E885BB222FD128F6245FAF4 +:1020400039D453D988743BEC36BA103A4F7BEEB191 +:1020500035F450E16941BA09FAB7A517F68990AE8F +:102060003C2174215F0F19FDD49E3FDAB054068ED7 +:1020700023196937513AADE8AD5E83F45979424C82 +:10208000417B71658C277131A4D71E1252B0DC6878 +:10209000CB3AAB9BCA39FF9A45F8FDD3229593C33F +:1020A00044A0F67C8ACF50F0B6707DCBFD0EE37174 +:1020B0008E8014E21B04F72CA01B471AD3E323994C +:1020C0000AD503F1FE1F7F13E97710BF60FB3F2A9B +:1020D0009FE91F7C8FDB06E49F9416917EBFDACECA +:1020E000E466652F2B5FD126F865682FBE4C2F174D +:1020F000AB575811D7A2BD12FA59D1B04E401C3B74 +:1021000062529C88A7477298BE9F281725AB05BED0 +:10211000F3B625E5E07C6FB033FDB3ADA1F0ED2261 +:102120006CEF71E292A13EEF8972EA7F58E930B913 +:10213000DC90BE28F0FEB70BB4FFF16E23F5A31CB4 +:102140008A61F47CD12FB4A3DD6F54E85A83DF2970 +:10215000738C148702B79F9E711B9B3A3A857EA1B0 +:102160001BF92B85DB21605C1A399635E17C95E9FA +:1021700061AA67907F3768CBDBB91EB6EBF4F05BE2 +:10218000ADB5A750D62A9C4F2B3B84A412E8C4229D +:102190009F48F9776F922711D37BF7E725D742390C +:1021A000AB8DF1AD39FD7DBABFF879518101F70BE7 +:1021B0006653F5264C9B8FE41B707CCF9B3D2DEB2B +:1021C000508E3E6FA072143AF50DA4CF15CFD90CE6 +:1021D00088FFF7E678AC1FE0BAA49B9231BF7FA5D9 +:1021E000B04F0239B0D1D37C37EE7FDCC624AAF7DA +:1021F000EF72B079EF37C9CBA8DFE77EE242BA824F +:10220000DE2A5EE093DCD29C3D382EEBE2852BDDAE +:10221000909FBBC640B03F6B51E7003FCD485C6F1D +:10222000C039B9D9543D1DE9A73E2D878E33F7A398 +:102230007BDE10109F5FF94301F2D1FA5C652B8EB3 +:102240002BE391D349F7603DFB67142219341ACF71 +:10225000C6485AFA884AAFAB7840BF4FCCE5740FF6 +:102260007274B600E37D6F0FC3BB434B053FEEF7BF +:10227000CADA0445BC958ABFE272E4E72369C9382B +:102280005FAB979834745DD6F6E459D47B4382DC17 +:102290008CEBA3BC2952FB901E37E03916CEE7B673 +:1022A000B6A479C8A7243FA89E1078A0AAAD4FC0B5 +:1022B000F154B9F5F544C00DFA34C797917084977D +:1022C000DFBF5271C40EC411507E87FF8BE1081529 +:1022D00037E8F1C2CCC2BC4316F85E8C3975E7C052 +:1022E000FCF175A9E5B8FF991AE54E3C3F6CADA924 +:1022F000A7CF8F38DFBB45F76FEDB8BF32BA1C48A8 +:102300002FFDA6B2B2A5C8BF7B053AEF9AFB26EA1D +:102310001FFABBE333488E513FD11C6CFF0C6D3F5D +:10232000ADA3BC07E570DA46347C1092EEDFDD33F6 +:102330001DEA4DF7C894FED336427F82E621DD03C5 +:10234000FD0A1AE7DEA4D074D69066D0ECF3F4F957 +:10235000AB787E5EBD81B883CFAD7D71C41DD4DE08 +:10236000CCD6644D7A967FBAA6FC2D277235F973C8 +:10237000BA666BF2E79E9CA74917762FD6949FFF0B +:10238000C6324DBAF8ECBD9AF20B7EB55E935ED4C0 +:10239000FB554DF9DB473669F2EFB8B45D937FD753 +:1023A000E5AF6BD24BC9DF6BCA87BB47778F3DB4B4 +:1023B000FF77DD1D9F9EC58DED60AB881A1FCF7F17 +:1023C000E9FD04A9519070BDEEB4CB945E2E0ADDF8 +:1023D0000F13CA1765544F473AF7D98E45A3F11B1F +:1023E0003F11FA5C61A923BA739F71BF716552BF37 +:1023F00071D5EF2DECB94FC7E4E73EDE6BF41BEF70 +:10240000E0F317E9DC27D2BEEE85D677E9785714DA +:102410002FA3FA409D27753FA7A6AFF77EAE8CAFDE +:10242000C37694EFD3C6E57BBF2ADF4F807CC7F924 +:10243000E2F2FDC28B61E4FB0990EFB7A23D223AC4 +:10244000F9BEFD0493EF91F6894ED2BD6F7ACEF5B9 +:1024500090EFD778BFB685DDAFCDE0F77D547DB086 +:102460004577CFF6393BCB57F5F2B7AB5E8F9D1969 +:10247000A49703446E9A85F3D26A2054FE92326A7E +:102480006752D7F563BBC0EF7FB8E3707FAFF8D971 +:10249000FCE9F96636DF7FE7B657507F21F59ED01D +:1024A000A19E5956C4BDFDBE6546C4D3FDB8C180CA +:1024B000F456FFD28EDDF0C9481AF36FF8C0EC3F36 +:1024C00048F74DCF8BF271364DE6F5C0EF4384F9F6 +:1024D000CB5F68DFE944FFF2FED60A6B2ED4FB2205 +:1024E000D7FF8156D60E31CA4D88A387DBE7DB0EB6 +:1024F00004F5EF1FD2D47B499EA6854C7F68EF255B +:1025000071BCA8DE439A707FA75554703FEC443BE2 +:10251000243CB3DA2CDD24C43D1E2847ED3CEA3DC3 +:10252000A5B0F7937C37E67ED2BFF2F918820FA9E7 +:102530007CEA001C1F62BC43BEC367AC304F198DE0 +:10254000026B4B3F5EDD7DA50B269F19F977C278A4 +:10255000F97DA5AC0EC0D721EE2D4DB8AFD465D214 +:10256000D813F4FD0FD4B3F30EE82EDD8775D4979E +:10257000D0FD80E21309ECA826DC5FBA9D74D52259 +:102580009EA47EE98B711DDF3888FBA9BD88E141DF +:10259000FF7C667FE1A0B284EEE7A85EE9F7190848 +:1025A000D25FA0753EDDCF05FC82847E47AFF97710 +:1025B000D37D989E9ED5F9EFF7D7527A53DFFF313E +:1025C0008DD1F9909FDF83F3CFB7E605E55F467ABB +:1025D000439C4D94A64541FBB6A8EFC145BA2FA632 +:1025E000DE83F347B80717259DF573FE8A96CE7EE6 +:1025F000C7C7AF1FD7C8886245FEAB0C770FAE8147 +:10260000F35103E3A3B0F7E01A58BF27DE83ABA66C +:10261000FEB3FAF16C1BEDA6F7E0AA3A26A7AFDFEE +:10262000A1631EAC4BCFD34FF2F321E5A8BD28F830 +:102630007C68217DDFAF3B1FFA6F8EE8CE8746F1C5 +:102640007C08F7A3783E44F7093104CFA5B75DFEB7 +:102650002FEC7CA8C542FD7AC6CE87BA4401ED5C5A +:10266000CFA4C99AF3A1D12E763EF47F396E2A27E2 +:1026700072329E1BEBFD04EC75D19D47CE4D8B78DD +:102680001E39372DC479E45C3E5F91F096EA9F1FB6 +:10269000116FB584C65BDFE27A23D23DBD713F9BEB +:1026A000AE49F1D636BEE661F156DBE4F7F4769C2E +:1026B000B836BCE5E1EB18096F1539D8BA8E9DE73D +:1026C000A9711AF83CDABBA2BBE7F09023E2BA3E4C +:1026D000E408B1AE0F39D8BAEAED693771BC88F8B1 +:1026E0001CED66AA5D6D827D0EBEDF73DBB89D506A +:1026F000CD07B0D78CF97338DEF810CA99703F5EF9 +:1027000027FA77D3EFDC74BF176D7DF04F1FE6DF3C +:102710001A549F3165BCBEBA74C56ACA0B511F14E6 +:10272000DF630F599F1FF33F847C6370BF64E8D75A +:102730001C6C87EF53362ACC1EA89EB3FAF839AB2F +:102740002F879E93CEDDDFCCCE593BDAD939EB8B88 +:102750003DF459F8F2CBF4B9E0D4FC5FE0BE73F479 +:102760008840F03C533D6FDDC2D767FE11A11BCFFF +:10277000513D9DA21FF7AF9222507BA2B74E9051C0 +:102780001D8C0A7B563850EF350B148F493EC18D96 +:10279000FC57D1C9CE51478565EC1ED27E91DABB7C +:1027A0002EC6C84D0BF1DCF58CA14B21ECDC2F11B2 +:1027B000ED45FB453F9EFB8D080612C7CA1F53ED32 +:1027C00080C1E7AF13CE5BEB997CFEA2E7AD91CE63 +:1027D000CF1E4FE5F41BE19CF5F1543225BF88F381 +:1027E0005C9E44F28BD8A2BB9733D12FC2A5F13B9C +:1027F000EC6F617E1137DAEF70757A687948ED1FFA +:10280000400FF64E260FBD280F73A8BFF9A47E8790 +:10281000E591E461DDE4F2D0E3BF3679F842AAAC99 +:10282000DE5F9D541E4EE05F98EE7DA1E50BCD7FEF +:10283000C9C1EB953C8942B01DBF4CA2B8512D0FC8 +:10284000D5EC56EB3384962F541EE4A633FA8AB6A1 +:102850001F06CCCF09D13E3F47189323A58AA63F38 +:1028600076F5BB60FA16C7C733B4D16635D3F5D653 +:10287000CAC964B53FBAEF6E4B67DFD5099EA66241 +:1028800061E2F8A31DC77C3EFE6BF577BACAEDCABC +:1028900093E8A1AB8ED4897AE82AEAA1E2C8E35C86 +:1028A0009EAE2D670D338FAA9EC07934A27D49500C +:1028B0009A44786FAD25F928EFB78971AE6339680E +:1028C000A71A70A17CFDB46E662EDA336CAB37D0DC +:1028D0007B07EF4D67FCDF2730B9E1984BBAD18E0B +:1028E000D1579747CF190ED430BF24CBE55B880270 +:1028F00072A801D20AF0B325B3DAC2EF0750BFC9FC +:10290000401DF3F39716B439D18FFF8F26C582FB94 +:10291000A76A27BB7770BE9CF957A8F720D479F235 +:1029200067B27C7726EBC7230912F7EFFEE1987FA9 +:1029300037CEAFC0E500C6FB11F0BE1C29A3EBD516 +:10294000FFA3C36BBE466763ECFE34B91A3F51BEAA +:10295000A84FBD7F37FD53ED73D048FCC218663FCA +:10296000BF02A583F0587C2FB3977F5A5A6746223F +:102970008A978C2410241FBC3EA11BF58717EA0FF1 +:10298000E4F3F6707F6774BD837A4A493050FFC91B +:10299000C4568128F301F21CBFAF7EA18CF7963696 +:1029A000B5A7C3B84D7BEF2BA6F7C38D5D67508FDE +:1029B0007E90CCFC319313E566947B8F9D33513F21 +:1029C000AC9EDBA63B7B0BF0FE51E6510BDA7F7E23 +:1029D0006D21A81F972EE8A4F78F02BF8EA5E97A74 +:1029E00058270F4CD63E78FAD1AFACC73317F1E376 +:1029F000D3900EC0C632F0A667013B97500C88EB0F +:102A0000D57B464F9BABA9FFE2F006A218E7D2C1E7 +:102A1000A731FCDFC59FC4C4CA9FB5B3A7270D9FCC +:102A20006F3973B85EBB44D3C357EE8BC1F5DF7B00 +:102A300045A4FBACD32906CA4F1716DE7CCC42173F +:102A4000B38CEAA34DDC4FEF7399C9FFFB443FD52C +:102A5000EBE41591E280CFBAE64FBB9D36CBCE7F3B +:102A60009A9ECF33E0BC0C95AD7EDB06E56C73A877 +:102A7000DB16F1960AFBF05CF918A7D70EF427B520 +:102A8000A0FFA8C4FD471DDC7F94F99376A23FA95F +:102A900005EF0DB968BA0BFD492D786FC84DD33FCE +:102AA000AA29A5E97FAC29A3E993351BE9F3B51A57 +:102AB0000F7DFEA4C64BF37F5A534DD3DD35BB6863 +:102AC000FADFF93896EF2F6944BBD18E1691E07D7D +:102AD000A1992F0904E566E542338D1752E9D863C1 +:102AE000C675264B625CB8CF5F73D6539F83E90EE1 +:102AF000613E9E9F0FFF2B3989E73B951B4437CEE4 +:102B00005BC5C2B876DCB7F7DE2D9C44BB6045CB15 +:102B100063FF86F791803FE8793B7111E72E9C9F18 +:102B2000D5EB5D88DB8E9964D15608FB87A30FAE89 +:102B30008D9905FADD4C6A51A56F7712A514E876D8 +:102B40007ED1C7DB7FE822E4E759C58762108FADED +:102B50009EF7BA8DA6079B303D237159226116EA74 +:102B6000A6D3F06C32F41A13693E694C8135DB88C8 +:102B700083580CE923BBA7D5CEC0FE136A7F88CB50 +:102B80001E6C427FEAD9D2B9D793687BACFE02C7EC +:102B9000C7CB925DE3E95BE5A453C941F9AEFCC242 +:102BA000E53648DF4F8A0F9542D56ECFD2B74BA09E +:102BB000FCA24C43633D99D8DEFBB95D544E0D3702 +:102BC000117A5F11DDC6709EACCA4C7FAD109EFFBE +:102BD000FB16116A3F55D34DA6EA8791DEFB62D9F9 +:102BE000537D9F9BCD709A33933D9B6259FDC35F8C +:102BF00031F8519E4E902B394C1F3425B17A80BE4E +:102C00001FA07E1A1BEC06D41FEF9755C421FDD6DA +:102C1000B6E61A507F285CEE9E2BC9CB32C33AFE33 +:102C2000B8CE22E3BE78A044F09B60DDFB72E43DA9 +:102C3000F41C989F57DE6C524CB86FBF59105C0A59 +:102C4000D43EFC11A1E506DA0ED3F3CE11A3E04287 +:102C500071F6FB0CC6870BFC629F09C6B966E1D210 +:102C6000B7EF85EF8A3A8DB4DDEFA5DE53FC01C5E1 +:102C7000D922A59B7F4EB5D0717DEF387C9113642E +:102C8000EFAC0B6DEF8CE7723A77EF2B54EE5F4CA5 +:102C900030707B67FA3B72D1447B6779E7D28EDD77 +:102CA00068E770AAF64E691FDAE1947DA24CEDAE9A +:102CB000C62E6AEFEC53ED4E75AF50F9D7D732936D +:102CC000FA97EFE87CD989B8B73783F1556D9D6ADB +:102CD000F77495E27DD58BFBB576CFDE0C73C878A3 +:102CE0004511ED9D75DCFE54C7EC4F599D61EC9D7F +:102CF00075DCFE779DEC9D8129DA3BFF7E7A683B8F +:102D0000545FD5066A6FC93822C8448B27D8F82289 +:102D1000C5996A63FE026A9C29FD78FA46D87A56FC +:102D200070FBAA7E5C95A36E6A8FDADC10655CA6E8 +:102D3000044348BBA62935C58CEBDD94A3E547F5D4 +:102D4000F972F67F9E3B62FA03B3DC5C827CFA6E1A +:102D5000683E3DCFF9C50238D51F548F35BE9AEE77 +:102D60000713613BA804D5172B1B8827A8DC394E15 +:102D70006749776F98F4BECF21AE6FF7737DFB0C78 +:102D8000D7B78DA86F215D8BFA169E07B9BEDDCB34 +:102D9000F52DD49B8EFBC9CF8011502E951790A393 +:102DA000988E77305FD0543BA3379322507B81C7F6 +:102DB000D5AD207D494BB4FBBDB819719A74DAC604 +:102DC00064CD7D256BD1744DDA9890AB492714CC36 +:102DD000D67C6F4E99A7BDEF4432257A7F8930BCEF +:102DE000F8D9AA924325586FADE0447CD3CBCFFDF0 +:102DF00055DCDCAB448B9B93A9FCEC53983C9316BD +:102E00002C09899BFBC3E0E62D594C9E9AB2983C55 +:102E1000FE2AE266790AB8D97B581F27F39A7033E5 +:102E2000DDDF4223761D6E56ED3E761D6EB6EB71EC +:102E3000730BE066EB35E1E6988CE2F0B8B9E7B6E3 +:102E4000D9E7E8FD85B74D1C1F17501C7DE19C9A02 +:102E5000FE09C5CF01C4CFD0FF0BAF021086F4131B +:102E6000B3CD7E5CBF400FA4A1FCE7FB2C347DC03A +:102E7000241F4D80F4F0AF13A9DD5C8FAF61B58DD9 +:102E80000C1FABF7F5B5B859C5DD50CEC0EDE91A4A +:102E9000FCACE2663D0E793C8FC9BB5B3255BB1181 +:102EA000F3873F804AB6283C1EB92397953F807828 +:102EB00084EE6727C723CD5C5EE8F148204A3CD208 +:102EC0008F78047069A001F008BC3F8F7804EAFD98 +:102ED000838A473A008FDC7AFDF1C865DEEFA8F1FE +:102EE00048073B7F3D9BC5F86B221EF199D7CF1950 +:102EF000C72383C75F7E989EBFD6D9E879582083C1 +:102F0000F15B241C12C83087D4D3FF51704843466C +:102F1000181CE2BBEF61A4938C4690425A7B457427 +:102F200038A4819FAB46C021DBFDCC5F533F2E2FE1 +:102F3000C6874CA0E719D705871CC861FC837E3E75 +:102F4000E5417CF988CCF0FE7F741CA2C6538984CD +:102F50004706385FFC27DE981C6F9C4361521C19A2 +:102F600077944E67F6D40091DE41BA7C2083DF531C +:102F7000E469E2E8A67EFF55185709F56E97E95215 +:102F8000B05FE68FD1B71DF9D3E1A2F7726C6AFC8E +:102F9000A555464DBC9B1731B842EAC47B7973B145 +:102FA0009FA9F49E8213F5AB7A2F4F5F6E6946E8B6 +:102FB000723DC7BF4BED5433CD7E7A1F71DBD8799C +:102FC000F3AFAAA91F73718201F5F0C58FABE9BDFC +:102FD000C2CF8FC418D0BE6536F9A8FC18ED984949 +:102FE000D3DF47BB528873E80EDFEB34CE445F9BE0 +:102FF00040F5D4B6CB167AFFC19CD86D4D427FAC5C +:103000000C36CFEA79B57ABEDC737C01EF972B647E +:10301000BF02BC5F8130FD1AE4FDFACE98BD4BDFE4 +:10302000AFF5AC5F5DD02FA8B70AFB9580FD2AA352 +:10303000FD2AE2F3AAF66BB085F54BDDEF44BAC783 +:10304000943C9DE9F548F79892399DE9EF33A9F250 +:103050002C523B7919D1B5A3D63F83D381FEDEDE56 +:10306000F3669D9DC6456216CE232486CFC3FBB969 +:103070008CEF86F758288EB1CABDE4EB05E3716783 +:103080007A5B4582762FF5BC299C5CD0C79DE91DF3 +:103090008B3BF3B826AECC864C869B87C7E2BAEE54 +:1030A000D1C4A551F347C2C4C9B93F732CEECCFDBE +:1030B00099C5D1C7759D7E8B704D715D3F99254C2B +:1030C0001A772610E61E7EB370361F9FD7FB7E7DD3 +:1030D00020C2FD7AF5FCAD9FDB759B33ED21E32328 +:1030E000AAF7E95348E19B2C8EB449F6CBE3F7EB02 +:1030F000F57166F4711312FEC4E2205CE47110F401 +:103100007166D47BF9A984DD5BD95CC6FCC22F460D +:103110008837431C6E73703C8450E71193FDFE406A +:1031200088F38829C5736DE4E752075DF3A83F6112 +:103130007FD8F86399CE7E78BF750EC39992281D0B +:103140008D47C6E3F1C7FA30FE58105DBF9CA9E277 +:10315000B5E8E28F7D738EC8CB5F5B7CB1AD37285D +:10316000BE98276C7C310FBD37A6C617F3282CBE3E +:10317000D82F32B5F12CC2C6177B569450AE0F5ED5 +:10318000B987C6171BC0F86205372EBE987E3FBFB1 +:1031900076265B9F1FCF664F55FE053A99FC9B6ACA +:1031A000DCAD8097ED4FE20A5B34F2ED532EDFCEBB +:1031B0008FC5DD9AA7918F6A7E7F98B85B9F8FCB72 +:1031C000BFCF83E55F147CA289CB34914FA61697BD +:1031D00049E5931B159F2C9DEF0FC7E3932587CCE3 +:1031E0000FF77B35195963BF579391951ABD9EF818 +:1031F000DBD9D7A6275A22E889D130F1C96E949E2F +:10320000188D104757D513835C4FDC9F15514FAC79 +:10321000443FCBADD7A827FA514F0893E9090FBD1A +:10322000DFBA8DEB89FE0871BF89A3FA4CB09E0806 +:10323000657F9B544F4CB4BF4D494F7C8AB8BD98B5 +:10324000C5F943BBC7308FAFFE45F5C4135953D3FF +:1032500013AF157C313DB1E37D16EFE87AEB092F12 +:10326000EA899C507AA2EB4C701C4AAF9FE9095F37 +:1032700056947AE2208B4319B8F22CD513E76F707D +:103280001C4ABD9EF841015B9F55058246FEF5B77D +:1032900031F937DC3635F9371E4F72B346BEBDCA39 +:1032A000E5DBD098FC5B16327F208CFCFBA771F924 +:1032B000F74FC1F22F0A3ED1EA89097C32353DA190 +:1032C000F28915FAAEDD774C7E7E7CA8E755FAFBD5 +:1032D0002601F49F87BCDACE3C7AAFB9B64E907027 +:1032E0009E5FAB4B0AE93FAFDA0D03682F0C9A974C +:1032F0000C275BAF8BDC4FE6625D9EC67F3EC31939 +:10330000C65E4822F8CDEBEC8561FDE6EBAE8FDFC3 +:10331000FC54ED8492338C9D7044A27EF355E1FC05 +:10332000E623D90955BFF9307642905F21FDE6BD0D +:10333000A32E7A4E19E95EC6987DB0932A9F497EE6 +:103340003F66D93B78CFA7CFA7FDFD181FB787A948 +:10335000BF1F7339E33B8D782FF07759E3769DC516 +:1033600039D79FCEBC7CBEC3D199D719E67CFCAFC0 +:103370009CCE1E8A4067DB6F189D7587FC9DA22A34 +:10338000A4B3041ABFF286D259CD742D9DC5674EE1 +:10339000A77456E0D4D29915FAB03099DA5BBAEF37 +:1033A00042B96737D0FB84AA3C041AA1F1B754FB99 +:1033B000CBB8DFB18DFE3EC9B8DFB1640D8E6BBDF9 +:1033C0008BCB35D5EFB8CF2171BFE3EA49FD8E5BDA +:1033D000F87A8DFB1D77533FE3D1166D3CF2E13057 +:1033E000F1C83FE478574D5FF778E47579252827D1 +:1033F000BE403CF2E79CC5E17F0FE034EFFF547F15 +:103400000F40BD7733C8EFDD0CF27B37553C2E5BA8 +:10341000D5E567A99D927468EFDDF4B5B07B37AA56 +:10342000FD51BD87A1DA1F23DFE77996DDE7D1D70C +:10343000CBEFF3A8F656B55ED5DE6A8D617A57AF4D +:103440006FD5F3D098E9CCAEADD7BF157EA2C4CE70 +:1034500005BE8D11E8B382DF5B1E6827276C737190 +:10346000DF209CB04D437F34760E33F0B46523F2F9 +:10347000D1703B399904F9BDB1C2C9A4A0FCE1DD0A +:1034800016CA1FBF4F67FE69EF96BB8BF1FCF3FCBA +:103490005E91EC81A6CFE7005FE07AA61AE87A0693 +:1034A000A0FE3CA867DFCDB738FB82E868DFFE9955 +:1034B000CE00A4FB1A041E275432DF9F389EFF1152 +:1034C00097AF63727A233F278472F47E855132630B +:1034D0001CE300E797FB9EDCF904DE838E35100FBA +:1034E000F2D7539C2EF4CFD45DBFB813F9D1B6EB0D +:1034F0004D7AEF3F754399D90372674BCB3A8702F8 +:10350000F5EDFD9348F9534F672B0AB47CA27FEE8B +:1035100025EB4A7350CED4B3F3D5BD294F79701D36 +:10352000866EF2DA715D518FE2F89E9AC5707EE088 +:10353000BF3339E0E5E7FD433D95CE98228C4754F3 +:103540006E8B85F25E7EDEBFB53B7D05C6D9DCBAEB +:10355000C1751BEA356FCAB2F3467CBFCA2554E079 +:10356000F73A3F80D45DEFD0F1217E1B7B0F4DBE3B +:103570009ACEE8C3B6EB2D3AEE09F6E484E8ECC93E +:10358000E73E4A5E5D94C2CE91F1185ECF973FE769 +:103590007E14D3B3B95FB7EE77291CAB6C6B8A642A +:1035A000BCB633B5DFA5C88D910DD509D47F9BCBB3 +:1035B0005F89EAFBE17F63714DD47EE7C6C0B860E6 +:1035C0001E731B888BC649D1F1C3B1D86A1EFF4E4A +:1035D000D1C4BFDB9CCDFA3DA28B7F37F89236FE7B +:1035E0005D3CB72F64CD64E587F3154DFCBBC13955 +:1035F00066CA3F838281FA9B2A2F59DA91CF07311D +:10360000FE1DA68FF07B34B2369EC17002BB373FE1 +:1036100082F1EF041ABF86D27540F2D3DF571CC384 +:103620001D64EC1E0C8D7F17CFD3FAF877B45EE8DB +:10363000573CF03BFA53C78F7FF7A5887F77EF4C55 +:10364000C39722FE5DD32CC9C9FC56D9BA2FB974D1 +:103650007639AEC3BD3372E661B5775EBE740AD308 +:10366000A5992CFDEF37737C34C578766B13BA8D32 +:1036700074BFCEE31EB85B3C4FAD84F2AB1D22B5E8 +:1036800027AD78603D951FE48E78EABF31310E4258 +:10369000F56F2AA1BEE1420BE5D7A9C643C8CF67A3 +:1036A000F4AA8F6FA08F63B0325F9BBE479E5A7C97 +:1036B00082EB1DDF6EAB2EBE5D258F6F57D9FAE50D +:1036C0008E6F97CCCF9D7B4D84C6B7D2D3C7B158F0 +:1036D000461FC3E9A6225CCF63851EE7FA203EFFA2 +:1036E0003C9BD1D950129303AA3C0ABCA8954746EB +:1036F0002E8FDEE376EF7852D644812DA7072FA7D1 +:10370000874012F37F0BA05C42FDFC228BCB19504B +:10371000E3723EADC6E5CCA1F7800613583CCE83DC +:103720005C1E5D188BC7E9D2C8A320B942E5912A77 +:103730009FF4F288F603E491B781C9A32039F6A576 +:103740009047249FEBABBFB03CD2CB954623E9C654 +:10375000F56A5C22D0B8B8441717F34CEBA755F8BC +:103760005A952BDF3D722613F1A21A4FE5FF01E9AE +:103770002A3A1F00800000001F8B08000000000094 +:10378000000BED7D0D5854D799FFB973EF0CC3872B +:10379000C380C88722DC811107451914FC8A318354 +:1037A000B20653A2A33191B4D60E88804AF2908D0E +:1037B0004DCDB6FF7554344804072586266A078A1E +:1037C00029E9D2ECE4A31F6977BB185DD7EC268604 +:1037D000A631FF6C37FB3C800445F83F8F49D3ADE1 +:1037E000FBACADFFF73DE75C98B9CC3003429BECF6 +:1037F0002E7D9AEBB9E7FB3DEFF99DDFFB9E73EE63 +:10380000AC3539C2357184E865AB8EC05FFD1FAA47 +:10381000B7D9B3F05F92B35B8F4FA2B9B314FE2B4D +:103820001359B7849078FA069F106F21C446C8B91F +:103830003B264212B20442F2087970A596BEC7BF79 +:103840003BF0FFA244AD520E0DDF7B53F289BFEF78 +:10385000966FD8AB5E72471C1DFEACB04F2069C19D +:10386000D311A7ED8A191ABB86D0B6934BFB203231 +:103870000CC2DD254564212185A4B120369790DD59 +:10388000C5C4EA8624EB8853C270E55662ED84F421 +:10389000951D918478B72B4ADB87E5EBA1C7775854 +:1038A000FD7DC3ED86FAE2B74A7DDEFD84065061F8 +:1038B00025B25724E5E37503C440C8A1DBA2AD00DF +:1038C000E4EDDC43DC67416429DEE5801C130B6A10 +:1038D0003F1521DDEC424D4F18B433718F573C8EAC +:1038E0004FEEA64213E4BFDF2D2E12A19DFA64AD68 +:1038F0004FBD6D33A1D019BC5218AF483E5EA42C09 +:103900005583EDF9264F1B19B77A403260BC447AD3 +:10391000BDEA2718F692E3A1EF904E82ED6D136891 +:103920007B236E89A473FAE8F20E753EAAD783FC56 +:103930004A6B4BA68743BAC138522B4643B833F380 +:1039400030EA57A9C5BA361C4BBF25F8CD7FAE2348 +:103950005D2740FECF8C640D0C13B9BED2E5C07A52 +:103960004BCD7A7200DA955F6B6A2C80F8B22ED15B +:103970001A26633B747ECB296B2BD1C90B08296FA8 +:103980007E42E7984698AAC462BD124D7F07FFEEBB +:1039900023A46E1F21BD5A426AF63957495A0CD7E3 +:1039A000D26785B17A2DB6438A23B206EAD11A21AD +:1039B000DE4BFE1559D58735101F6961F19116C888 +:1039C000E725FFB45A1DB1413D577036CD2464E060 +:1039D000C5CDF5CE28425EBA494834CA31514BE5CF +:1039E000D81AEEA8CB8472AE2569735BA19CD61C55 +:1039F00047CAA6AC91F6BD26B3F9D41F438A3DF061 +:103A00007EE979180C483FD438B7F58080B5FDF1D0 +:103A1000CE1DE8B784FF86A896B92CFD558B538739 +:103A200061229B0C7690C3508CAED80DF50F091A0D +:103A30001B1DC7C6B096B3261A26382ECE7AB115EE +:103A4000C3EAF97D15F244437DD7EBC45627140D24 +:103A5000B38EB6A3D7E8D259BDDA594986E7AF8805 +:103A6000FAA3E0824448E71D81C9458AE7E5A6C379 +:103A7000B34DB0852F1C49A7E89DC52DF9E0C4FCC6 +:103A8000765F5C58E0F10D67FFCC379CD3E91B5E95 +:103A90007CC9379CD7E51B5EFA916FF8F25C0D95F7 +:103AA0001F4CDB0F103752099509FCBF5BB0831E1A +:103AB000A572DC48A9157BC260DEA47C473DDF7D92 +:103AC000F100FEA270FEC9BC9CE5DDBEE965C483C1 +:103AD0008518E5F51EC7A1DA579FEB419038EEF542 +:103AE00056C1ED84785B93E3F83A18B7071345ABFA +:103AF00000E5FEE0F4C564078C477C33CCCBC523DE +:103B0000E3B2F6518D1DC77DED24E1FB57E7325C32 +:103B10007990E713A117F87EB2F13D85C8C70A4C2A +:103B2000C1D305C2770567D5F85E28374A28C78410 +:103B300066814C1746D68172C479EF71BC4B9CBF2D +:103B40003FF7FDFC02CDF8715D8DE3B1EB0AA27188 +:103B50005C151CE97BF1DF288E1C06DC72CF85F436 +:103B600033653A1E0ABE756BBB9B35D03E03B67DEE +:103B70001136BB9B204E752F27D63AD3487A43ADDA +:103B8000CE86FD56F26DC0BAD9B3139FFF57679B1F +:103B90009607FA72AD4EB4B642DC86AD3932CA33FE +:103BA0000D5501CADD50F49542CC7FD57E5A04B83C +:103BB000241196AE4AC49565B91144847ADA4875E1 +:103BC0001AE2CF4AD225E27C9F6E32D17A57919B7E +:103BD00034FCD103206F485F56636A09A3F860D4B0 +:103BE000E1FC2A83F2115F8864D4154FA3ED71B212 +:103BF000F675AF791A9FC9C4F630D65FB3F1016C80 +:103C0000CF86CD8FD1F1DBB04C5E449F85CFDA05F6 +:103C10007896140966928DE1578DECFD3923A67FC5 +:103C2000212A766D22E2E74ABD15717B43E1AF6838 +:103C30007C49210021A41F2A8BA3F1CE6511D6391E +:103C400010BFAB48C8C0F7E5858244A2317D0F4D57 +:103C50005F5524A4C9B4FC4F69B90F1A1DEF407217 +:103C600052B4EEFB12CE9B2B8FCC5A9B08FDBBBEF1 +:103C70003C82AECFE599ACFF117FD3D29E04E9AA76 +:103C80003C2D7269948F3EEBEECC224C07E3296EFB +:103C9000D2F9172182761809F93F99C45600CA153E +:103CA000A171D3F0932FBB5D355050B406E2AD84C3 +:103CB00064CD83F86518CFF4E499CC9887514F1AF6 +:103CC0007898908C876D5118CFD237B8663D7721A0 +:103CD0006924FDAA1F663EEC04B9472F277694BFDE +:103CE000C4E73D647152FC863CDE3CE2F14C1DC5EC +:103CF000C94868AF2B96BEB74D8371898486C72F9C +:103D0000A2EF9DD18BE8FBCE28FED4E2339174C69E +:103D1000437A92C5CA8F204EF71D6C83C5518F7AA6 +:103D20005A734834D6617D36175DB788C3439FC741 +:103D3000CEEDAC477DECB749D6709067F4A1EDEBC2 +:103D4000711E93E704E31C48BFA3DBBE3609C2BB68 +:103D50004E091E6C628F547D7826A41F72E5CB4EEF +:103D6000486FB2CCA1F22FEB76AC47BDDB754A8C25 +:103D70001320DF2EBDE3DD1510DE704288C37443CF +:103D80004D1B0D368A8BD5EB97A39E3C07ED81F733 +:103D9000FD442844B9946114D6DBC4D74B401D09B7 +:103DA000E5826D86C911E9126C99B83E58184E0E1D +:103DB000263B521067239B7FFA2D01F4E4139EDF0C +:103DC0006967BC8FFE41FE38FC37CC8BB826D19694 +:103DD00009E99E34B1757C57374B5FD62CB865A87E +:103DE0002FD2AEC651C75A03B47FF0B4405E8050A4 +:103DF000992B4740BC18D47A528C3078832658AF20 +:103E00007DF58CE3A8CB1006F97637C79850DE7F96 +:103E10006562EB5EB92BE7DD5C94E31E6295A1DF82 +:103E2000BB4F09749EEE76096E1BFCF3BA605CBF53 +:103E30000CDB9FA4B59E8552226D9213D7C11E0440 +:103E40004AD47797D0823C61487052F9391748E4D8 +:103E50002C83C70BE625B428FA17E7123A71DEC4A3 +:103E600021FE1A68BF7C706FB60A37095F47E9BA4E +:103E700004EDAA28F2C5CD78BE8EC6ABD6D1776A3E +:103E80000E1E44C87BC99446FBB7BB438841DEBDC8 +:103E9000FC28F06648D310E398867CB2E1487AECBF +:103EA000414867985EFD941DE4A54BFAA01A1BFBE0 +:103EB000CFB9591A11FAA3D35697625877DAA2C12B +:103EC000FEBDA073346D447C7C4143F1111AF54D65 +:103ED000D4CFB587A66B505F1A4C46C315C6EB62AC +:103EE00031BE6F9D70D808F851EC68FC8B7848673C +:103EF0009362721017DEB368A89EF469E5D5542F5B +:103F00008E102BEA15B4D65909F324ADD07400FBFA +:103F1000655851BCCE06F9D21ED1106CCF068EEF7B +:103F2000E6699B3428930C6DF54CD49FB72C0C6735 +:103F3000D23EBEFF12EA5BBD642F2E41DEB072BEE0 +:103F400015F57B535A7539F66FD6631762EEC7F2D3 +:103F50008E9873184DF1E501C3FC20081FD899C154 +:103F6000F4B4B2489827001EFEFA00E3A73DF98298 +:103F7000BB15E2ED6EC1292EC4CCB6BC12D48F960F +:103F800084D83A32DA3EB4BB9FE9C275B147902972 +:103F9000BF77BE2D5ACFCAA37905C468517E95EE6E +:103FA0009845286762F12AC78F3D58E5EE11B0DDCC +:103FB000553675394178853ACCF9E078EDC85D68B9 +:103FC000474278D75DF20B85CFA8F9C475B0AF50E2 +:103FD000EEA2FEFCAA3EE07DE7DCE7A316A3FD749B +:103FE0004AA2F6D14101C61FF9FDA1302A4F85171B +:103FF0002ACF93DCEE69E6764FEB1C865B3DF782B9 +:10400000BD877630E00EDA19F9EE8DF67C0857D5CB +:104010000856B4CBAA9A1B75F234D45BD75AC4594C +:10402000E769C183F3BCAAF3E98B5A94C35622A370 +:104030009DB7BBD8A3D34138DE41A89EED2E7309AE +:10404000B8EE2514FBDA53490E5FFBA92106F42FC5 +:104050006A747B7F3287CD970693FFF87717301C01 +:104060004BAFD5109B5779735C11C4E655DFDCE686 +:10407000589F70A67BA64FFAF9ED693EF10B3CF311 +:104080007CE2B37FB6C8279CD3B9C227FDE24BAB15 +:104090007DC2795D0FF8A45FFAD1269FF0F2EEAFF2 +:1040A000FAA4BFE77AA94FFCBD3777F9C4DF77EBF5 +:1040B0002F7DC2F9E4DB3EE9D5BC51B13FEF82E789 +:1040C0009D47BE548FE541FAFAE31A37E2E05C4DB2 +:1040D00027E573F6341395FBBDA45B240C5068BA36 +:1040E000FB6A84165C5F14BE575E23B8C32069392F +:1040F000F23C5C97A698E70D04E079032A9EB7830B +:10410000F3BC2A15CFDB394E9EB72D93C921E2F9B6 +:10411000160BD2B99D6DE3E379F6850A8F633CEF08 +:10412000AB0B5735D62C1FE179EF0FC7B3705EC7C5 +:10413000F2E72F2C1F091F9FFDE8F3DEBCEECD85B3 +:104140007BB68C87D7E567E9E8FCFAC2F0BAA68DA2 +:10415000172508577804DAC60A4FBE0EF95982C2ED +:10416000E78AC6E6733D52A7C1983579BC2EEE2E7C +:1041700079DD2B699CD7159171F2BA1EDD4478DD8B +:104180008FD3BE64BCEE67DA71F1BA9E34FFBCAE69 +:104190000E791D84EB90D791C9E37575C8EBE28267 +:1041A000F3BA4B7C1D9A2C5EF78B050C5746781D95 +:1041B000E9BC8FF13A8AC393CDEBF2E7303D2D474E +:1041C0005E17ED87D73503AF336066C6EBFABF1BCA +:1041D00080D73503AF5B183AAF2B6F0E91D735F709 +:1041E00050FFFF9F8BD74DD6FE40205E373727FD0F +:1041F0005858DA08AF53F8CD4181CD7B356F7BC37A +:104200002C703BC26ECFA77C4FA07226B7211F8CAB +:10421000F32EE2F5B704FDB5F0E78553BBF1DFB847 +:104220007FD35E22209F4B80FE227C2775EC176691 +:10423000E6223F93A95E07E36D75314CBFD4BC4CB9 +:1042400030B3F95067F21F7FC9FCBFBC6D2C7F5F94 +:104250006B38935B6B8ED5677FE027E96CDCAFAA88 +:10426000F607067EE4BB3FA0AC43FBF9FAD5CFF7D7 +:104270000732DDB22116443FB05157EC86FC03CA29 +:10428000FEC08FD8FEC080B23FF05DFFFB03FDAAE9 +:10429000FD81C1E1FD01EBDDED0F1CFD62EE0FBC08 +:1042A00062F962EC0FD4651A29FFE8096778B0F269 +:1042B00066D71ADC577AC06CA2EBDFAA5B37CF63F4 +:1042C000B83099851764323C57EF2BA8F7A3EA253D +:1042D000B61F559FA8CD75B22405E1105F942B50F1 +:1042E000BEA4EC2FBC73BAFCE83A79F2F7173EB0E3 +:1042F00084B6BFB0CEE21BBE5F1EDF3A30D9FBC72B +:104300000E5C1FE491F5A184AF0F25CEC9DD575097 +:10431000D68BD9057B0A70EADFEDFE82799691EDA6 +:10432000134B2405F5B797C80D99A80FCD1A42D79E +:104330000F624F419EAECCE307D3991EB5115B04CB +:10434000EA89B34DA47C518DE7DFE3EB51DAD9D78D +:104350000D32F2D65AB110F5E4D8B9CCF52B205F66 +:104360009F6BB5847CBF8FEF6B55B6E5B7ED872C9F +:104370005F376B69BE2B3A7724AE3BCE574419DBCF +:1043800031882A42EB13280EF575BC6E4883F2FA89 +:10439000CF3EB10D79600AAFAFB783D54324F93270 +:1043A000D6D37F76F174D45BA55DA96691A61B2058 +:1043B0009E86650C7728CF4FC17FA591613E3B9BC0 +:1043C000287FC3FA20DC81714FEE10292F4EE910AF +:1043D0006DE128E7E6B04E3ADFBDF5C644D351F9AA +:1043E000CFE63C7816719FCBC5F77B7CC777D6515B +:1043F000966E66957ADC192E18B9DE0D80AAE13C1E +:10440000BFE7BA6F3A23C707A30A1F3699F97C574B +:10441000F56FF0E893DB508EB31A0599ADFFAAFE55 +:10442000B541FFB03F6D22C55F75BF66737E0FE972 +:1044300028BEA9FB33789D303BBF1DEC1A6174BFC9 +:10444000760D751E46E3B3AAD997E7ABDBDF5BFBBE +:10445000BAC141ED1B99DA896DB5B9743C9D4745E8 +:1044600082F6FA8A0E91D6B3C2A569C17AEE219E70 +:10447000836817F5629615F81FF138EE77E09E17FE +:10448000AEA31BD3CB8E3B9351FFDEE4FAA721A84A +:104490007FBD1D6BA8BDD9DB26180548FBF3B646CA +:1044A0006A27AAF559917F5FDB09AA77CAFB2AAE72 +:1044B00077836DA077A8E76D6B0CE95EF18F717D56 +:1044C000EB23AECB2BFCE99B4AFEA406F42F7E44E3 +:1044D000FF828E07D72F653CEE56CFFAB09F59A1C9 +:1044E000EBD9E6007A3670DD7519EDC95D55125BC2 +:1044F000DBD47AE6E2F3C8C5E6D1A87E49CC4F0505 +:10450000E968BBD5FD01DAA043BD50F7A76AC841F1 +:10451000F5ABBC7D6CFDDA6C26745CCE3DF7D394B4 +:104520006E483F57E739138F7E86DF849356E892B3 +:1045300070A630A51BE4D0F7A923D5E8A50F33E674 +:1045400098787F5D060D05E52E836619743E091A7D +:10455000BC14EDC92E6A5F0EE546116A2FDFFE1608 +:10456000B52FCB4FE909F2B1F25B5BB6313F43188F +:10457000411C6B73957651BEE61105B4FF22CD3216 +:104580002D5FA96FC8B3DD887CD026DA7E6CF6C3B8 +:10459000EF45A87619FA5DC6C9F345FD456A57048B +:1045A000E3FBEBD2652AA760BC3F18AF78A9F9FD01 +:1045B00042ECE7DABCD5D4CE55FA37D5E71512E68A +:1045C000F8DF9FB836C1FD896BE3DC9F08760E6289 +:1045D000F2F62742E3293B543CA594F394D2A6A9D2 +:1045E000E12993750EE2B7D046D4C397CD8CAFB80E +:1045F00013D97C8BD5CA3102C8FBB35A9138E9BABA +:10460000F150345D37F87CD8810588A3F1FCE43E95 +:104610004090B0917042936073FBC1FD7FC960F818 +:10462000FEBB4BBFE57CF13E3A8F76F27EC6B7FD0E +:10463000AA10E77765AE86A01F2F81741E36D2FDC3 +:104640000D0DE9F4F60BDCBE43F3EDD2B3F14920D6 +:10465000F663CB4C546C51F9F11C37E1AFB7FDC98F +:10466000185C7F5238AE93BD522FCA450FFFC371FD +:10467000A8726B7BBDE5924058BC22D7548ED3A95B +:10468000F8DE0BEF3EE6B8A2C865D8CE22AC9D7F1F +:10469000C4FE0A5EF2AC61F2ECA9F1956705CF1792 +:1046A000549EA7409E7EF6670602C8B35C9167B32E +:1046B00040E767958DF1870402F30DFD949744BAA6 +:1046C0008F16825C37F8936B4FFBAFE93825E48196 +:1046D0003D6B0A2CDFDD1E5FF92AFEAF407256FCEF +:1046E00060C3FEB1A709C515B5FCD57257FBCDD483 +:1046F000E310D88FD649F7F79CA7A549F1A39537C2 +:104700009FD3E1F8FE77F1A391BD7234DA316ABC30 +:1047100051F44FF1A7A9FD6707715D04DEF846DB90 +:10472000A946275B6FBF3F671CFBA0CA3A1C6C3FC2 +:1047300054597703ED8BC6A6C921ADB7C1ECB4F8C7 +:10474000B4D0ECB4CD1913B3D362332666A7FD7A87 +:104750004E6876DA0773FE67D869615CFE8ADD54BD +:10476000E562FB41EAFE0E1E5D73D18076DBCB0273 +:10477000AB4BDD5F959D704D6BD3215F1AD55F6E9E +:10478000270CDB71AA7E8EB2D73C536CA739FFFD94 +:1047900038AE770D26169ED9DA7FD2B972F2ED3493 +:1047A000133FA712C84E4BCBF8EF6DA785678C6DF2 +:1047B000A7554D999DE6F06BA7950FB9A99D164C8D +:1047C000BFC23308B7D37E40EDB1B93AF7195CDF09 +:1047D00082D969B73242B3D306D14E83A48368A786 +:1047E000A1FD778ADD33A8403B0D3735D5765A07D2 +:1047F000D86910EE44E5F6B2D3063B989D36D5FC59 +:10480000E9375F32FEA4D85D01F913B7BF26CA9F0E +:10481000147B2D287F1A3E5F161A7F0AF57C59CF2C +:104820008C8B3A3C5EFB653B5FA69C1B0BC4A3CE06 +:10483000B9D3A3BBB326CEA35AE7089447915B77BD +:10484000E8FED36E3E6EF11DCCCEA27F20E730A3F2 +:10485000919E0FBAD573CD7D10C2526C3CF53B983A +:10486000E7F07D965C41C2418FE05994FA63350EC2 +:10487000F39C3C3C3EE4226CFDB111E47DE63984BE +:10488000F9B379BDD44E13D97D13CA3782D4FB5402 +:10489000063B5F3646BD4F65CC185DEF53885379B4 +:1048A00013AF777DF0FEAEF7D7DFF5BCBFDB327C10 +:1048B000EDE2D1FE18474D0CF2450FA13C90DCEC27 +:1048C000E2FE180DA9A3FE99B7A4E978CEE16D9B8D +:1048D00015D551F1CBE4ADFCD55B3132FA650E480C +:1048E000B188876F122B56795276517DD4FF9DC3C4 +:1048F0004A7CF5DDAF5FC66AC959331DCA29223724 +:104900002F50B9105F3F8D45DFF816AE6DF38CAFB9 +:10491000AE8E81674E56FE41BCD6B5C4F6C41AAC05 +:10492000F662F39E0B608691B5A6EE83B8DFA8977A +:1049300073AC384FD67DEE96A265BC0F53FD9B9DA0 +:1049400090F0416B981555F050DC675988C7F57F9A +:1049500020D4FF6BB19C3B86FE5F42BADF9F0FF90C +:10496000530027717EBF02F60F8174D9AFEEA74FB7 +:104970008FDB449FD623F9F499D3B8913E5F6F7AC9 +:104980004247188E8B8897DBF9F82C3EDD42DF1BFF +:10499000DB5B2EE279B2DDCD828CE72E979E173B52 +:1049A000711DB8562FBA713DB926BC7618CFA73BFA +:1049B0005B04CAD78D6EC186F15547C556BCFF70E2 +:1049C0004D38A09B45CF8988F45CCD55BDDCB00C3B +:1049D000E2CF5CD4789C84EDEB4E43BFE211561ECF +:1049E000DEDB8A60E95B95F346B87F3A9DCF33AF53 +:1049F000755A837838BD96F11252C4E4AE27B5FBE0 +:104A0000F17CD664EF8F6E4EE5F38730DC8CD00BF3 +:104A100002D6934F7C79C3E654365F8C91C614DC82 +:104A2000273E772861DB5EE8CF8DFC286A57DD786A +:104A300013D6733FEB9FF2449C66EB7AA716D7F52B +:104A4000FAD5111477BA4F7DED61A714DC2FA4E0DD +:104A500051D075B8C3FF3AACB5F85F877770BD88A1 +:104A60006F62F714AB60DD85E126F552B540EF6F5C +:104A70001D1588CB3475FEA1EDB8FE7A951BAA7F73 +:104A800028985F68AAEF7B4DD4BF09232E20BF0C66 +:104A9000F59E57AF2C53BD53D6B951F7BE147CE8E1 +:104AA000007C80D02B1D25747E677F97E182A776DE +:104AB000230D5B9F637890737A3F7DBEEE3EE71FC8 +:104AC0001F5E6DA1F9147CD8E9F2C58721C407DC0B +:104AD00027108EEB92E8390B81CE7F6333E003F62B +:104AE00007F181CEF7D28BD4AF10041F068FB0F23E +:104AF00006111FE246E34302FE431C8D0F09B58CED +:104B0000DF93ADECFD54E143AB1C1A3EE05D58C6AB +:104B1000DFF978B8F978B85F6578FDA37C2A6F8FE4 +:104B20008B8D8F15C707C7E308C36BD265FD0ACA13 +:104B3000B3F714CBA78C4B95322E23B84D7177BBAE +:104B40005B352E2F2BE3B24847E5DEC871DBC5701D +:104B50007B77BB322EAB2F52FFC777451A7F03FA04 +:104B600080723F83E7614C2372AFE2725F7A7E7B93 +:104B7000039E9F1CFC478DE700BCAAAA1D6557D168 +:104B8000F1201EED5D8D038C3F3D17126C3CFA4306 +:104B9000C4EB7E8ED70ABFA1E76511275CA1F1B9EE +:104BA0008AB941F94DC55C3FFCA6622EA1ED6B4F61 +:104BB00033B2FC12E315CA79E59A7B3FEF4282F0EB +:104BC000498D48F9C0274D0F51FF83B15130226CF8 +:104BD0007C8FFBD3AE0B9DDBD8B974BB01CB7DCCF6 +:104BE00034B1F2CA4C32CDA72E2F98DD77B7EBCD7A +:104BF000EB1666BFABD71B459FE33DFC5E3CAE3773 +:104C0000329DE7360CEFD843DC9D63AC37157C8CC6 +:104C100003DA7DA77E4D796230BB6F876B62FB1232 +:104C200041D79D20DF91B8DB734077BFAFC6ECED75 +:104C3000F2BDC4ED36A15DC678F1CE62E6D7DED90D +:104C40003C3EBF7682FC44019AB7A1EEAFA9EDB31A +:104C5000E1FD34BEBF16F47EF14C360FBAB5849E2A +:104C60002B1FC6DB26CE8F9B147ECCF0D2D32E30EA +:104C70007EBC5FC15BB6FE2D3DBF98FA817B61B102 +:104C80003900F9169F15288E96BB4537EE37F77217 +:104C90003C5270B88CCB5359E72ADC8C07F70AA535 +:104CA0003ACA93EB05EA4FBEAEAFBE88F72BCE9C57 +:104CB000148813D343BB709DDB5D2BD27B24C46D62 +:104CC000A7F8DBEB49A7EDA512F55AE7969E3F6FD3 +:104CD000B807F77B39DE4ED5BA772D44BC7D299DC8 +:104CE000E36010BC7D0995C0CB8EDDC5FB13DF1ED4 +:104CF0009A3D9967096AC7E659FCD8B179D8562F09 +:104D0000BFD6A6B42EEAF7A958A2A1FEB6F1EEBF0F +:104D1000BF58F556F8DCB891F3E88A3DB633A3CF17 +:104D2000857EDE1222C79A4D78DF8BF0733BFF76CB +:104D3000DCB672B43F3818BE2AEB6B507CF5F8DF56 +:104D4000E7DD90E99FCF8FECF3327C2DE77C5EC1ED +:104D5000D70AC4572130BE6E0FE257AB978C97919C +:104D6000C7D56F95E83DE540F85AD13C45F84AA6CD +:104D7000F69CE564E1AB4385AF25C5CCEF35DEF3AA +:104D8000957F6A7C559FAF9C2CBFCC82E41E0D1E84 +:104D9000FB59FBE8F102EA97F97B42EFB19D94DD04 +:104DA00035D42FD3E9B03287FED8F37571EE39C907 +:104DB000DFBC0DE48FC95B5922C641B94B0B4A8E4B +:104DC000AE437DB8EDAC41FFCB5A53D71AEA9731C9 +:104DD000E7507FD0CA9BECDCF003B98C3729DF2782 +:104DE00051E6FF07968146EA8FE1F8A69CD3886FCB +:104DF0000A0DDF7A82E35B8F3F7CEBE1F86658C3F4 +:104E0000EE0395E0FDBE68421E924881148BFE2998 +:104E1000F6ACE2BC91F0FDCC8B96C4163C4B5852DC +:104E2000C3EEF305CB9F6D9295FD16BFF9D5F7EB59 +:104E3000BE6262F5210FC57B74CA3DBB51F7F540D8 +:104E4000410F2C19B937A8C4EB0869C4F887783921 +:104E50001F423ADC77EE6913DDFB693E5B22F63FC9 +:104E6000D4F2E09F2E8CDFCCFB81E5497123E5D5A0 +:104E700024790CDA743FE541F203F17ECB7363FCD5 +:104E800087102F79B74B86762DC07A381F2FF650B2 +:104E90003EFD66129F37C49A47EF0B721C73703D3C +:104EA0004975FAE7C9736773BDD80BF36CC9C83C81 +:104EB000A39A1DCF5D06382F12AA13BDFD4BDFE369 +:104EC000EB843A5F18394AE7791891FAB11FD86430 +:104ED000EC47AA7453C0FCF277004FBD7144DC4A22 +:104EE000D7A5407EABBD1FEFAFB9E08517AF664ECB +:104EF0008BEBC741CF2259140F797EF5BAAF2EE75D +:104F0000F7FB9C3517B4849C48B6478FE5273B8355 +:104F1000FD9A3B124E69E7F61A97E7A0AA7C457EF8 +:104F2000A91D025D7F5F78F94403FAD3AA126D17B9 +:104F300072E155559444F10FECD39BAA7D913E3616 +:104F4000CE02C5D98251F7FCD4F71E54619B241BB5 +:104F500097F0A38A303E5A524DD7AB8395C4A1A790 +:104F6000FB3D5B8DFDF369BCE60E3CDF5F5DFDB88C +:104F70009D9D1F30202FB8F261BA067142E9C7C16A +:104F8000F9820F8F798BCBA1D7C8E4B55A92257FD0 +:104F9000725BA3177DD6F15EFDD8F21D2E97A75B3D +:104FA0005D935E80FCF89064A5FE276794407E2C9C +:104FB000042E7F7FD4EA9B993346EEFB5C7879FD23 +:104FC00031A7D7F828BC26D5E35FDF4B93BF5CFA47 +:104FD0001E3DEFCFABEF3DAAF215F9A5D6307DBF50 +:104FE0009599D3E034FBC13580A3C3FE7197C6BB4E +:104FF0003265865F46C734B46786EF3BDB5D06BF2C +:10500000B81BA03C0DC69BFC94C3EF4D0FE364217D +:10501000BB3FADE483B7FB957235FECBA5F86B992A +:1050200047687FC7DB9E45982F6FE47DBCD24EE278 +:10503000CBE71439F4149F30E8282EF8AE3BB14A80 +:105040007DAA7C79F358BE1AC1D890671A2DB74053 +:10505000F9ECAAFE1802B44B59C7B05D12FA7904F4 +:105060004F8308EF2372361B6410C227C9EC3C053E +:10507000B497F2F336EE3355787C5F380BFEE57C5F +:10508000F6DDA354C427C87FC2255A3B017F52AF27 +:1050900088F43B036685BFBB183FB7711E3AC32E29 +:1050A000F9F0F730CED7E3C839E31AF4D378447A6D +:1050B0002E57CDDF95F938743B8C7EC76BB04047D7 +:1050C000F77FC254E966904E23C69700ECA0BF67F5 +:1050D000B07BCB5AEA4FB613BACFAD9E8724D148E6 +:1050E000BF5BD0F8B0D18A76F301D5BC6C4C22B44A +:1050F0005FCE2BECDC58444EDCA36510BE618BA068 +:10510000DF9B53E613C517C0E746A1CB82CFE179F9 +:105110005AB4694C5C50E6A91BF83E3E5BF719296E +:105120001EB5ED4BA4E197F6C9F4D9BECF429F3F1F +:10513000DC67A5F11DFB96D1F08964CF5BB8FFF564 +:10514000BBCD2407EDA61BC9EE0311ACBF396759CF +:1051500037A3F271BE734EA28C632F1FC74766C779 +:1051600053BD0953D9435FE3E31A47728EE0B99800 +:10517000F22AAD8CE352C2ED1152C3ECB040E31AF7 +:10518000F507364E57719C6879AAF1E4E33E8338FF +:10519000E87E60859DF989AE76FF131D3F278CDF81 +:1051A000593FE3FBC86CCE8712AB2F26798D5B5D30 +:1051B0006E5A23AE7F7D4D22C173519F343D34A67C +:1051C000DC7FA3C2C7BE4A761E2A22473298BDECB6 +:1051D000E27F99A7657EA14A2D3DA7F7ACB5D460C3 +:1051E0008E1A1DDF5FC5F2ABEB79779E44DBFB7651 +:1051F000A4FDDD79F0FCDA63DFD463BB1AF9FD6549 +:10520000C4F158AFF301E502D3A3CBAA757B149E7A +:1052100037FBB7DFCFF07C8D49D6B7CDE3D0DB7A53 +:105220008DC7B0C634F9FA38AF9D50FB25AE20DEED +:105230008DF71D6E0CE38BAF5EAAF5EF3F92D9F7A9 +:1052400037147D2DE53AA0E8A5A2878A1E7D7D73DF +:10525000B7560BE59CA87D7D06FDBE854A3F418F74 +:10526000E9F9D5ED6F08145FBEBED7777F50AD9FCB +:1052700083B7B708F45C1400E07161B41E369AE499 +:10528000F5F829BF9EB882738932E2CCF3ECBCEB0F +:10529000666EBFAA785C9489D8F4101F25E8E97778 +:1052A0000A0E56325EA725D6F5F740F8B11F6B9D62 +:1052B000A8BF0305BA163C5725193DF43B17C0207B +:1052C0008DFD9611BE17489F11F9FBBD78643D7E98 +:1052D0005C6F068EFB058AEB434170BD3B9CB5734A +:1052E00014AE3B01D773EF1ED777D68A743F3210C6 +:1052F000AEF722AEA35D1504D777735CEF51E41DC2 +:1053000010D73D749F50C1877BE7FFCFC0F56B1C62 +:10531000D71B9383E2FADBB8FFB66382B8AEACBFAB +:1053200081719D7D87B08CE3FA20E27A5C605C6FCE +:105330004C5670DDA6F3C6F5307D644DDF74B09732 +:105340008BA7D3F3B5CF68196E7E68341A62BDE4BB +:10535000FF571CF79E99C6EEDDF7241A0D39F0347D +:105360004432FF04C16B5D20920AAEE74ABEA61428 +:10537000962F3A85902E9C1F92D540C9600AE397DC +:10538000574FA51BE83EAA245F46FCB8F2A148BCD3 +:10539000ED2BF573D80E8A027E0EF9D680FD13929E +:1053A0007D2585685F4913B6AF4ECDCF0B6C5F2965 +:1053B000E731534FF95F57FE75DE97CBBEFA05CE46 +:1053C000F7F924A07D55C9FBAB2E67C2F6959BFB70 +:1053D000EBB83C8754E52BF203FB95CABFED6FAAEF +:1053E0009E437F4244CE1E7ADFE05A323BAF1D8C93 +:1053F00077FF70C1D4F0EED2F6B1F1F906E7DD43E4 +:105400009CCF05E3DD43DD730FD3EF8A85C8BB3F37 +:105410000D119FAF233E131290BF28E3D728D8DF8A +:10542000C3FD943F153E5F477CCE0D8CCF3336DBFA +:10543000046D1CF28E9CC5A88EFF81F89C371A9FC4 +:1054400095F176F0FD1235DFF94F6E1F2AE377C232 +:10545000097C272AF839AF40FA3E6A5FC8EDDFBF02 +:1054600052B650F0BBEFAEBEFF57317CFFCF3EE6E9 +:10547000FDBFAA91FD20FFE7BB3C639FEFDA716A95 +:1054800062FB4011B21CD2FD3FB55FFA701ACBA788 +:10549000F64B4F2F72D2EFEA57BA4B529CF0BC91A9 +:1054A000C2D2F5FF617B0A7EFFDF394347D73B72EB +:1054B000FBA1C48DD346EC94815A66A728E3144817 +:1054C0004FD576CA4025BB2F149153E3638738B27A +:1054D000D83DA4EB68A764A19DF29A8F1DA3C40FC9 +:1054E00056B1FCEA7A4AB386ED94D2AC10EC147A49 +:1054F0007F1AF472F60281E60B888B01CE71FCBF35 +:10550000ACB1ED94AB7F663BE56A8876CA2F66EB5B +:10551000147D62F70F02CCDB51764A339BB781ECE6 +:1055200094D2CAF1D9297DDC4E89AB8D49D2A48DA4 +:10553000C6E79EB8CDF9783EBFAF7B0BFDBD0C67CB +:105540002DBBB71DDC4EB1362C81FCBB8DD5D409EB +:10555000F6D59DBE760A217642F7252668A77C8E71 +:105560008DA2E75FED29D628BCDFB265DBD378EEEC +:105570008C9F7F1D9AE0F9D7B3B3331E41FF25CC32 +:10558000E2787EEF45C078657DCDE5FD0DAB144832 +:1055900094178EE42A3CB84BF21997DF91DB1AB6C8 +:1055A0003F28B0EF0526B37DD88462DF7535FB1246 +:1055B000BBD7A4AC9BD901F8B17A7CE8398D38BC53 +:1055C0003F1D45CF29A9D7CBA332B3678E1613FA57 +:1055D000FDE24AF71302CECF8FB27CD7CDBF10A326 +:1055E000A8BDF6D90722959F31BD538FBCDBF8AC1F +:1055F00068C4F1ECBDFDBCC1FB7BB1CA7AF90ACC31 +:1056000027690E211E984F787FE135984F187E0349 +:10561000E613867F02F3099F3F83F984CF9FC37C03 +:10562000C2F8BF83F984E15FEEB3D170E7BE421ADE +:105630001EE80E63DF5B776E7904717CD4B884E872 +:10564000D77F3CEBCBC53B23168CCD3B4B388EA98B +:10565000CB9930EFACF1E59D9FA8CA57E497DAC427 +:1056600078E76FB3969E64BC53A27E81EE207E8164 +:10567000EB8178A77B727867F9D1B1FDBD5739EF1F +:10568000FC2408EFACE0BCF393EE0A76BF2020EFD9 +:10569000F4F51BDA1684C63B7BBEA0BCB3679CBC8A +:1056A000F31701FCBDEA73F7EAF5AB214BF6E59D74 +:1056B000ED6CFD0AD53E7F7C4168F6795950FBDCE4 +:1056C000E1639FF7BBB87D3E45385F8E382F4C3E77 +:1056D000CE3B10E7057F38EF389CE485F30E27C3F7 +:1056E000F9E754B81210E79F079CC77970FBFE3F9B +:1056F00009CEF721CED3FBCB3F78C81BE795FB271C +:10570000A1EAC76B9C4706D38F2A8E4781F5C3ED6C +:10571000A31F373CE934ACA49FAA737CF967F73721 +:105720007A9FE3AB8B217CFD23C76DC9A3BFBFF577 +:1057300045FD4ED05F2F64E3F0BFDF09F2FF9DA06F +:10574000EDFC9EE9F6A62FF8EFE179D8F79FA7FECA +:10575000F7F03A2F8B38BEED828C76EE9FEAF7F0A9 +:10576000F2DB05FA3B7CDB9B04379E97DEDED43808 +:10577000FCFB78E1A6C0BF8717BBCE7C18FD4E9F0F +:10578000B7091E940F1DAAD891F914EAEFE2ED347F +:10579000BAC6FC5DBC9D59AE09FD2EDE78CFA51DB5 +:1057A000E37E8990CFA5053937D7C0CFFB053A37BF +:1057B00037D173D8E6ACE0F798B3FCDD63460CF361 +:1057C000774E439ED8F9BA63CAFD197EBE6EAABF52 +:1057D0009BF5AF21FACD46BE9BE59852BF59F9041F +:1057E000BF9BD5B34056F663C7F49B8DF7BCD0770B +:1057F00016CA219D170AF55CCF2B0B03E8CB04CF0B +:10580000190DEB8BEA9C51A0733F4A7FC67BEEE7F4 +:105810002D9E2FD0B99F50FBF10FBCFF13FDDEC0B2 +:10582000B30B839E277E76A19FF3C4CF62BD79C15F +:10583000FBF99E2A5DA0734A0AAEA9CF29FD3EDC82 +:10584000B0107F97448C22169CDF8924C28A7EA8E0 +:10585000BD7AF6FE5B1186567CFE3E3CC58D857F8B +:105860004B743870FEFE5EE3D1E37EFDBB4B1D77CB +:1058700016A21F37E6821DAB3D14BFC282FDD8BA07 +:10588000F7DBF602E055C6E9E41BFE7E4F67AB8608 +:105890003890B74664B3F9FCB1B673760CCA73D9C5 +:1058A000EA88EC3C3FE9F7FE352D6F9548AA3D7E2E +:1058B00070C1C4CB7951432AB1DC2D8FBD36F05273 +:1058C0002EFAA7B316A1D8222C5D458B615C6ADF46 +:1058D0004BA7EB7852365FB713492ECADB99EB48DA +:1058E000CCF6F2BBEA65A3C4C6C3B31CE357FD57AD +:1058F000D6ABEF4179B55F8932E2B8DAD2AD1B168B +:105900000BA3DB01E598B01CFDADBA4F91D729E59B +:10591000FC32BCFB45FA9B28CECFB77C04F6D42FD3 +:1059200063BA670910CEFCDB0FB6C42D87F08CEE8E +:1059300059187F819CA5BFB3F24BFCF143E0FD8F6A +:10594000679F7D1ED7B1550F0C7DFF18B49F64E88B +:10595000E877128E703FB252EFB16C91F6FF18EFFC +:1059600097228777AAC696C3722E372F392CF7272E +:1059700087E3CB6C2B705CA091B4DFB5FB88BD0CCA +:10598000DA684BF0842F86814F923D2F1F83626629 +:105990009A9DECC728721DAB991C18BF52CAB9B1A9 +:1059A000D4B606DFBF53F57E117E2F25FC1DF63BD6 +:1059B000A37A3371461A68BE75588F922F5F267B83 +:1059C00084B49171A8CC63F33116F500CA3BA87377 +:1059D000256E84A7D17CF24923A43F6C7216FBFB91 +:1059E0001D80D556360FC18CB079FCE8632597DB56 +:1059F0003797D8B660FD3A81D8315DCDB22EDA4EF8 +:105A0000C33BD31751BF9899E46E02DCFAB695A553 +:105A100087F67E03FBA35BEEA2A0126E66FDACC907 +:105A20003A4E701F323CB189C8F47D37C1F327E18B +:105A3000C4A3C771AEB2BEF17CCD32EC8795FEBE79 +:105A4000CE339E35CD12E8410B5EBE00FEB21FC2C2 +:105A500068FF9C0160479EEC9CA9739FF5E307A932 +:105A6000B0B2F15B9F6BABCC43B984757FFF18A4D8 +:105A70003F92A9A3F6EE2A8DABB814F5E681286A09 +:105A80002FC0FB62EF75F5141FFF53D96C3FE3C8BD +:105A90007FEA69BC5AAEA1EAD3C1D1F3EAA0F77C90 +:105AA000F6D2A71ABFFA141D509F8E7AEB85973E47 +:105AB00055E6E58DE885F2941275D4AE926E1DEE32 +:105AC000624F7D0FE60BD75B19CE17323F83782BE1 +:105AD00082A6136F1DA5F69564ACA6E304B89C9D41 +:105AE0004DFBA191902728B82D46D9687C7636C702 +:105AF000DD00F5E00F20D1F5CD7CD86F3DE1FA6AED +:105B0000827A8FDF7D19AB9EA7783DAB1E8872200D +:105B10002F5C85B8E9357E0556B6CF146F657C30AD +:105B200090FEEF0DA2FFDFB00EEBFF4FA93E07D1B5 +:105B30007FD788FEFF039D2F01F5BF8DEA7F848507 +:105B4000E97F04D7FF6F5889B37019B697E9FBE571 +:105B5000BF5DD98C76BC321F4E7BD6FBCC879310B1 +:105B6000C6F840FD7B9AF7DF40D8EFBCBE9B2B3ACE +:105B7000D10EFA2D59D08AF6BE6199512A85F75770 +:105B8000B29576DB3EC07613D24DD7DB1672F35C4E +:105B900018CEB39502F5534E737A6C7AEC2F7111CF +:105BA000DC67FC773E4FCE68D87AEFCC20743E128B +:105BB000C945501EEA791A6EEECC7578B5F3313EC0 +:105BC0004F7F60B5F765D3728C11C823028D473EB5 +:105BD00097EFFCA56C5E07C3FF702BC3FF709E2F71 +:105BE000F6BFF4D5FEE6F1AAC77F3EF0D218E584F1 +:105BF000F176FE91CB49C1E90805A72DC338FD47D1 +:105C00003A1FABEA149C7E03711AE6F51DEF79FD8D +:105C1000FF018755719A0080000000001F8B08006B +:105C200000000000000BC57D0B7C94C5B5F87CFB23 +:105C30004EB249362FB240900D0109126093ECE646 +:105C40000111BEF0D0D8F258543498000B08F288F5 +:105C50001094EA5A69F9200F02863652B5A82DDD54 +:105C6000205ADA5B5B507ACB6DD5BB08B6584143FE +:105C700055C477145A9FAD29CA756F6BAFFF73CEA9 +:105C8000CC64F7FB9285706DFF177E3ACC37F3CD6D +:105C90009C73E69C33E79C39DF6CDB4616B8D1CAAF +:105CA000989AB52FA954616CB067DF4FBECB181B13 +:105CB0003252636C04639A2F68F7E630E688B6FDCB +:105CC000D59C06A5C765093A19FBB05C5DE1F733C1 +:105CD000B602FE63D06E71DB34F37828A3AD5DBCF1 +:105CE00074BC83FD931C5EC64C50AF69A7F7CDD141 +:105CF00064EA678EB67761DDE26A64C122C6324D1E +:105D0000C14F26C038CC6DB2B032C69219FF63764F +:105D1000AAD4FEC904A8C05C93BFF6F143DFCD86C8 +:105D20007F5F6AF38E8262ABC26AF7013C5FE29FDB +:105D3000298C5DED35133C577B15EA9FF977476356 +:105D400018DE6FB275B8E7423FD7C8FB6E75C1BCAD +:105D500093D7FCFA8347CE338E4FBC3F164B18EFD8 +:105D600058C31F6696FA00AE6366AFE2013A14327A +:105D70002D258DE833D60BFD1C0DDB08BF6A0F3BCC +:105D8000A000DD7654A845F87C28F3CE41BAB65D74 +:105D900098CEBE0474F67BE3E64F92F38FEC9D7FC2 +:105DA00012BD6798DF81F3E653FB14824F8C0BED35 +:105DB0009F29B01E9976981CC6CB5C9B16DEA4C4A6 +:105DC000D671B60FD635E79FBAAE01EF79D67532E8 +:105DD0008CC12632F6F309293BB5A27FCA7C7988AB +:105DE0006FA2F9F2BC1CAF5D36E80BF86B436CE1B7 +:105DF00087F363EB2ECB7562DD811ECB70BCD67C46 +:105E00005C2CC69EFF45D54E2D8FB14EC66A905F65 +:105E100066FB820D841FEBBE8A013FEDFA66A6B2D7 +:105E20000DFAE6A91125A32846C7772778889FE4AD +:105E30007B792AEF9F17CA54344537DE6D047F8281 +:105E4000F18C70007C77E0FC3FF6AAD5F85EB59740 +:105E5000CB49A69935E2784D26B602CBCE4C6D459E +:105E600000DEDFE235113C5B047EB2FEE7327533C3 +:105E70008E03FCD282E5A73EF37A13F0515A05E770 +:105E80004380870552196B10E39B0261D60DCF93B7 +:105E90002B981A86F2B8CFAC9900DE4FD98287CD05 +:105EA0000A7F6F9913FB5B687CCDA77E07C76DF5F2 +:105EB000BAE87D395E22387F8870F9B15444C9EB65 +:105EC00000E7F7114F80F3012C13C169A4D340E11F +:105ED000FDFD040BCD03F0EEF1FA138F27D70BDF96 +:105EE0006583413E9BB97CCE3E565082F2F90B4110 +:105EF0005FCD17F839E25D5DA11C4039070D948C28 +:105F0000E33D68037C01CF071B7654DB008ECE0D8A +:105F1000AE6233716A7813D61F6C72156F8371FE8F +:105F200043E06FE4CFDEF76DFBC69416113D9E444F +:105F300078A75475CD2C85F7D3414FE068D50CE494 +:105F4000DD8CF2AEB9BD006F9BA2B99720DF5FE593 +:105F5000F43E8C1D9CD712FCC6F165C9D8661DDFC6 +:105F600032A7EF02FD37517F578AD618B898FE76D0 +:105F7000AD16FBC7E898558C749C5DA168A8A7AACC +:105F8000D9B04EA4F59B825F617D4E91DC3901D979 +:105F9000CA185DFB8EAF51FFEA40A382744D2A847C +:105FA000A9E06952009E03DD4C9E0ED60D65F248B5 +:105FB000E08B221CEF251A2F064769A91E8ECB1FE6 +:105FC000423862E3B74A783E247E19203C9F27A5D9 +:105FD0008D67E98C851CBCBC3D396D37969F275D6C +:105FE0001266A0CF8E97073F27799CCAF5B4F65664 +:105FF0006AB809798D354E088CC332C250BF4D1135 +:10600000FA6D8AC349FA907D61F9B8DBC19F7D09B9 +:10601000FCA6003B0FCDC45ABDEB4F63A1CEBA9591 +:106020002F530634BFBDD89F78FEFAD09D81E9A5D5 +:106030008065165B1470F6C5B3DEC482C82F99C59F +:106040009C7FDFB04686A1FE621553338BFBE1E7F0 +:10605000FAD0B769BC34D6AD997D483EE67DD88389 +:10606000F002FC255C0EAF86798715733D00A0AA6F +:10607000FBFA997798984FF2EBF52D53D90828ED54 +:106080000EA6A566F232BD84E46544710EF6E3FB0C +:1060900064B58B1DC836C5F091F8C97127147379A2 +:1060A000EE85D706F815215EAC76BF93E35712074D +:1060B0004F6E45F584E29CBEF819E13DBA31149863 +:1060C0000E764156681A3B9DC5D8D31B835447387A +:1060D000934A68FD342B9416D6B5F016E47F169CCF +:1060E00084F4CB2AECB87107D029EB409217388A98 +:1060F00075390ADABDC07A6B0F9ABD76CFC0F9E365 +:1061000062F9C2C80F87526F9B807AAD6946716D84 +:10611000366A1CEDF9DA6315503FEE3DE584FA3539 +:10612000FB9FAF75833C349DF0D6E680EA6FD9FFC4 +:10613000B39DEDA00F9AE616EFC4FE59BFF937F7ED +:106140000CACCF57C80E580BFDD10E683AA4B7C798 +:1061500062F2D342EB70BC3CB0B304E5CD12F42044 +:106160003F36552B09FA73FD1502911F89F65ED44F +:10617000C4F5DE11D08C83802E498240CDD544AF4A +:10618000E7056D9AD4779F53A0FFA12ABBC79E4F06 +:10619000F2B0BE98F679D7B109F07CC75493691B69 +:1061A000D40E5F9EDB8EFAB663AA4941BA37CDE2C0 +:1061B0007058B3BBCD8B9D7DE1385EAE9EC2F56B52 +:1061C0005A00FD8A12C30BFD7E5902F3D961FD9D71 +:1061D00025BC44FEB5823C9B455DF0F19D08576BA4 +:1061E000BEE2CB2E20F82C480F237F49BE7A76D40E +:1061F0002B97A01D047CD4847018F9E6AA4B5FBDD0 +:1062000094EFA37ABEE843BF3EF43AEBC4FDF585B4 +:106210000A7392E2EC4B5FA0DFDD38DF0B5F70BAF0 +:1062200076548CF630A0EBE14AFB986EDABF02DFC1 +:10623000433CE02D5FAA7940F03F7871F07B4F0539 +:1062400011FE2F6CBAF59F9D60FDCDA99F39112ECF +:10625000C407F709807F2FCE671ED69D87FA41C2FB +:106260003D503DF8B8D01F717AF0F178FD60D4133D +:10627000B0AEFF5ECCED9BCFD6229BBBB87D9348E2 +:106280003F1D2ED6DB0903D04F87E3F5F085F4538D +:106290003FF47FEE62E80FEA9AE86D15E486AAC73C +:1062A00005F5C9F86F780FF6E46E7B418CBF952831 +:1062B0008BA4A6713E7700DFB716173B6CE6BEE3F2 +:1062C0000E94FEA7FBD2FFF4F9E83FC3FC71533AEA +:1062D000E8B9B3550AE1A5460174D297E05AC5C1A1 +:1062E0003DD9D14E7E4A3AE83C4BA1D0ABF05F8617 +:1062F000EA601647AC9E55E3D2D573026E5DFFDCB3 +:106300005A8FAE7D70B050D73E748557571FD65800 +:10631000A1EB3F3CA4EAEAF95A8DAE7F415B4057BE +:106320001FD551ABEB3F7A6750D73E26BC42D73ED4 +:10633000766FA3AE3E6E5F48D77FC2414DD75E1CDD +:1063400069D3B5971EEDD0D5FD5D3B75FDCB4F856F +:1063500075ED95DD7B75ED93DEDFA7AB5FDE7350EA +:10636000D77F32B368DDBCAE7C894683B9281DF780 +:10637000A973AA95DBE81AEB1A09F27D0D937F4CFD +:106380001E8B5C4793EE7DF625E8A56BBA17CFC44C +:10639000FD8ECDB49EC1E71AFCC5FD12A87826BEBD +:1063A0001F3041BA07F87FF25133DB06F3A8AEB8CD +:1063B0007684EB8DAB3E60E369FC33BDFB6E3EEE55 +:1063C000E73029BEA72AE130BC3739EA21786722B5 +:1063D000BC346EFF7CD6074F4DED1A39281E2FE5D1 +:1063E000A2F052E12FB7037A2C38FFE40A853DA0D2 +:1063F000F4C553E20176B005E55FF55AF57832EE63 +:10640000971BF10CBDB1A9F9485CBF40496AF69FE2 +:10641000501F7899F74B33CA99D31B41397B09F444 +:10642000074B8CB7457390DD518DF482713FDFA827 +:10643000351F0165721646C2F7032F9BC90E626EA7 +:1064400016E313C02BC9A397C39442BD1CA67ADDE3 +:10645000E7E723237D357651F4F5C05F84630E763C +:106460000038E7445938929F98BE732CD618FD2EF9 +:1064700082AE771AE87A8E55CD29F570FF0FED02BE +:10648000A39E93F403BF6513DA5189F695EF945CEC +:10649000F4BEF29D92AFB6AFDC8776CF40F7958120 +:1064A000EAFF874AFAF8210FC5C36984B7D70F01FD +:1064B000FD8F7E88DC97E08F8A71A334F7A5619405 +:1064C000F75F949CDF1FF94589D11F396B89F74726 +:1064D000547B6EB288FF6DC5B89BF44FAAAB8AE7B8 +:1064E00000186CAB881F0D14CF485F3C23E7C3F343 +:1064F000A94D3C5EF0D471B37737747F26DB1CC99D +:1065000001FC76B07161D49B934D7CBD6B828CF4A1 +:1065100055B5E5EEBDE89401BCBFC775AAF1542B93 +:106520002B9DF87C1D9589F8E8958BE7A357BE2233 +:106530001FBD5D7211F6C9C5FA3D9F9B1A4F05A19B +:106540006C6AE17ECA96AD8CECF92D9B84DF22F05B +:10655000FD8B28C3A53C6E519D564176688B922ACF +:10656000F45DC0FD6DA4ABDBC630DE03743D877403 +:106570003D32B82C1DEDCB4F8FBDE80CC6F9096F2D +:10658000087C4F0A7CDFFC462FBEFF207C6B976E99 +:10659000F7C7E1BBE036896F9E8BF403EA0BD00F9F +:1065A00036D73E8A3B5F6176125ECD2359D84EFEC8 +:1065B000BD3A73C62054C25CFF32F3CCA30AEEA3EB +:1065C0004516DA971CA8DFD08FF458DE457DD40637 +:1065D0007F49CFA2FE023A59DDF03C4E2F25A1FEA5 +:1065E00082FE298CF797FA4BF64F6271FDFBD16B57 +:1065F000834A855EB3B15CAED736B48D45B858D00A +:106600001DEFE718F59AAC1FE92EC8EDEE475E6462 +:10661000995EE1681A19A76F335497AE9E55E36EE1 +:106620001A19074F4EC0A36BCFAD2DD4B50F0E7AFC +:1066300075F5A12B2A74FD8735AABAFAF0508DAEF4 +:106640007FBE16D0D50BDA6A75FD47750475EDA3CC +:1066500077AED0B58F0937EAEA63F78674FDC7EDE8 +:10666000D374ED3FC77F0CC1FF3D365F053EFA395D +:10667000E839F4C3A797FE623EC6395BDFB9DECDC9 +:10668000807E2D39D739E2F9D0581EC9E1FC9AA88D +:106690005DCA69A2F61AA1BF5AB2DFDD3616F8B795 +:1066A000D935B284CCFD6C11C757383FD695727975 +:1066B00032393A18F275A6295857EA8FC5FFD1A288 +:1066C000C1B85B0DE03111F4E8559E3B02D3E3F015 +:1066D000DD94B76427F2FB169037E4F72D8CE32B9B +:1066E000F1DF62E1F4E8C55F696C1BABC4D3E90577 +:1066F0001D9D56961E1374BAD28D7EE2910CA0C3D6 +:1067000079F8CDA8AF8E6C5C11983E8AB1DF6E6CC3 +:10671000A4FA51710E5523F4A37CEF3EA13F640906 +:106720007AE29BA518073966FE2C48D80DD8EFDF12 +:106730005C7A1EBDB8A394C7E75B146D2403BBA1AC +:10674000C6AAD504045DD12EB3289C962D3957785E +:106750009740FF8E52EE5731F64D6AFF86A47502C0 +:10676000FC2D20C891383DA0E4CFABC57DA5260700 +:10677000D603EA350A0BF4B78F360BBC07BE9E2F43 +:10678000E8D653AE93510F26215E80A7C529CE9D32 +:1067900062E7483F463AB13CE0BF41B17324C95F6C +:1067A000328E6B1C2F841DD06E70F2732552A4683C +:1067B000DF1E2DE8DCA624A6CB968D2ED582F6AC66 +:1067C000CB93EEC2FD44E1FB091874EEAB53FFF529 +:1067D000FD641D762A5A7F63FF10C922FCE77612FA +:1067E0005E48568CEB831E2E9C0BED274BB91D3457 +:1067F000D9AF3E877C39D91F384EF473040B915EB4 +:10680000507F019F33576FFD04D5DD50C778B6CB5D +:106810004571F344F491F486F74ED17B96DE715EB8 +:10682000A3799C7C1CA8BF41F5ECDEFA5BD43F8FBA +:10683000F71FE83CBDF87699C30FC3BA7D6651D304 +:1068400033811ED78596921D323FB492CAB68DAE63 +:10685000EA3340BFD737069A9B418EAF9B5FEAF27F +:1068600000BDE72F5B4A65AFFD22F8DA966F09E0BD +:10687000398339DF14D843FB323FFF302B6141CFDE +:1068800066AAD701813780FEAA6F98DBDC1CC7EFB0 +:1068900049085F01FA3596BFC5FB096E45FD5B6986 +:1068A000DCF9C3C5E307BA08F8F433E7C8B046FE1D +:1068B000E754577FE71712CF44E3D727905F89A7A4 +:1068C000A4977CBE7564898BEBEDB0CE3E4C1A3537 +:1068D000DD85FAA85EE1F2C3521D5C9E44BF3A9882 +:1068E000E731A49FC5EB41FEC43AF2AB3C8FAB034A +:1068F000CEDB50129BD7AD043CBE9CBEF41C28BD21 +:10690000B2618E2E9AAF83CE8DEE71CA3AB443191E +:1069100018C9CF91923CBC5DC2911B0C333C774AA5 +:10692000F131173E32613FB49353BA545331E8B357 +:1069300003236F708F81F69141B7C94BF5D72C397E +:10694000782E0A75174E3FF2B52374DEE8BA4C81F3 +:106950007647B3E7B5A3C318B998B41F699ED75457 +:1069600027F917627F621106FB7D67726F5D758084 +:106970004FDC39A2B7AE617D973877BFEA80E7B5C3 +:10698000661E7F9D8EF4618EC8CCC26CF44B1417CA +:10699000DAA3033DCF1A281D3B8B1E3B3A02ED685C +:1069A000B7C53BCA83F623D3BDD7E8B3D17ABDE4DC +:1069B0000F5E87F0A46EE82177FDAEA2CC54E48789 +:1069C000D83A840DEBC0E91E280C8BF3BC30ADCB5C +:1069D00070F7675A35CC37BC8A9BB3CC9349EBD25E +:1069E000E95E4FE7819D45625D0AC19B877A3280EF +:1069F000998B76BD385F4D29E4E7C52E3BF76B5682 +:106A0000FAB89E0BF9789E49C8C7ED9174F73D0C12 +:106A1000E53DA9C644FDD34519C3BF59BC6711E77D +:106A2000DF9C1E3B2A82EB7D3931FFF058B389F899 +:106A3000BDB37944A782F124BB6B7A21943F12F94C +:106A400023B04ED760FF63DEACE4205FB73BFB5D55 +:106A50003781E785D62DD17A49FF2251FB75F3CDD9 +:106A600001C4CFE408DE3B0FE6BDF96056B119E67C +:106A70003D596BF675417DCD93B9749EFD3D41AF97 +:106A8000B5A69E410C1E6C73EE0E60693F78B73A56 +:106A9000D483FBAC4727F76B9FA8A6FD77734A5AB0 +:106AA00015AEB7118E935FBC928DF6C8ACFFB6934E +:106AB0009EC1000BC66316D122125A2F61BC66A17B +:106AC000B0537E25D6E7A58DB534CE42E9BF80E030 +:106AD0000AFDA97C098ED8A2589DC7F5423C0EE359 +:106AE00080BFE8DF9CB4806900789DD4148A332D80 +:106AF000B6CCB5E17C8B357DBC6649A0F80A5C8ECE +:106B0000A56DFAE7CB84BFB3CC10F7B9BE7671AFF1 +:106B10003DF3298BE9376651AD26E08363572B148B +:106B2000579C17981F981E67C7BFF20FF322A4C384 +:106B3000497C17E1AA1FBD5B53FAD2C3E497F8075B +:106B4000C8CEECA50FC9C285E9D04BAFFF237A5C54 +:106B5000619E4974583A5721FBCE4807E9AF4A7CF9 +:106B6000FE20F164DE932900DFE9762BD18F45A664 +:106B7000D0F9CE6CFE6A3C5EE497BAE02F8F837A40 +:106B80005AB260BE65404C94A36B34ABCE9F5D2679 +:106B9000FCD9252C901E5108AF7713E0A5F36B8D1F +:106BA000701BF19C25F60BA3FFCB2C9122B4633E06 +:106BB000F7811F3C16EAE3797CEF53DF35E9115C7E +:106BC0003F14FE7EF4AED10F967CB5283457673F54 +:106BD0002B2CD85B77815D718BDBEC39938571044D +:106BE000EBBDC886731DDD163AF730D7A7A33CCEA0 +:106BF000650E8F13FADF098B8DF1D1D96A92C7190F +:106C000007EFD90EA506F5E62D305C88F65F95FCFA +:106C1000824582EEB7B86D34FE22A61D423A02BF0D +:106C20007D16CF6F89E890EBEFC57FFCC5E07F0F45 +:106C3000DA0E3CBE19C138468FE208EF5662F129E0 +:106C40000C65D9405516F9F3853DAFEACFA9582315 +:106C5000D9FB03885715F9FB8957C97378C99F0B6E +:106C60001DCE8899F3DDC7BDFCA13B870F328C4751 +:106C7000B50E59E5457AB726F37894DC27C19EAD69 +:106C8000C0795A93795C4AEAF9245C5FF4670AC1D7 +:106C90002E8CA35B9F7DFAC88D7B3B412E824E0BD1 +:106CA000DB46BD0A09BEA04BC2D763C5711685ACD1 +:106CB00067E3C709A6825601FC97B8791E41EB909D +:106CC000892EAA33EE67330DFAC7C5DD83B88CF879 +:106CD000DCE1D18D8FFD37603E4A5BDCF823088C08 +:106CE000932AC0D5BAD94A7019E7EFB37F19E633B2 +:106CF0008ED72AF2C9CCA937AE20FFCB3DC445368A +:106D00005921F757EAFC26DDBEB3C491A55AB262F9 +:106D1000F577073B6BE3F76F59CAF7243D63765A63 +:106D20004467A7DD65FD8DDE4E63BFF94A76DA263E +:106D3000FF6FC84E6396C6B7BF85F1D9DF9B894EFA +:106D4000326FC40266457A26F9651A968ED050C213 +:106D500047E68F6479BC0AAED756BF87E0B778F8AC +:106D6000F96A96C5AB78E1F90E61EFD01FCC6FC818 +:106D7000747562DEA1DDC19A9332F13D8EB79CAF8E +:106D800077DC42AFE22A4A1CF7BDD77FD17933F7CF +:106D9000FAFBC99B3966E2786B8037C6E317B8EF18 +:106DA000A0E7467FEC4762BE3759F0477E8A87BE30 +:106DB000B8E0768C731CB053BCF52FB52F2EFFBEF8 +:106DC00007E903EB8DEFCFFFDEBC3268DFEAB4905A +:106DD0001DD8368CC75FCC9B14B22FB67A6C3507A2 +:106DE000F0FCB8B4FA388EC76A3C26E4E7B3C99C15 +:106DF0009F4F974EA7E79FBFB9C5BD04ED477732B8 +:106E0000E5DD9937E57F17F30BD9B3002F4379659B +:106E1000B45FB7DA78F99F7E6E07FEA7A0EBAFFCF0 +:106E20003CBED1660D16361661BE2E4013C78F0EBE +:106E30008BC6D08F77442DF4DCAC28E4EFB4260762 +:106E40000BBF11473F39AE230A425CDADFFB367ACB +:106E50008E78D1FB991C1ED9EFA878FFA880CB11A2 +:106E60004DA1F95A33012E67FC3869FCB99033A360 +:106E70009C94FAA71DC3753C5DAA1EF7935EEDB600 +:106E8000A21E5DE83E7A4A491B881EE471F9D42FA0 +:106E900094C870CCBBAE368737E7631CD035CB8740 +:106EA0003ABDDA4A791C5D85D9A9789E72C2E24A58 +:106EB00045FFFC2DB1FE811966F2B303D556E2E71A +:106EC0001385373E62E636A1237E3F5AE4D0C26284 +:106ED0001F8AD941BC9FC75226FA015C8BA69BD55D +:106EE000A4B4BEF6D189A2CC593E185FDB60267FE0 +:106EF00066D10CF3493C2A0073FF48BC1D0AEAE244 +:106F0000089E3FBF25AADDCC659BA6C4EC90452119 +:106F1000BD7DC4D07B29433B82FFE96357F9BCBFE9 +:106F2000CDF2203DF6D5103DC6995C488F81DA59E7 +:106F30008CDD4D744A99F1B80BFDA497502FA0BF7A +:106F400035FD4595FCA8199F5A886E550ACB003827 +:106F5000DB4326A6C23CDB7DD6B002EF6F2FEC7E72 +:106F6000760ACAA3CFE221BFBCB0EBDA69D4EE2720 +:106F7000FFE3059CA292FAF37313A7333C0AF77759 +:106F8000FFCB8EA571FCB2DDF7EE18DCE776093E8B +:106F90000235E89C5116A31BD2C7434A94FBF14724 +:106FA000BE994CEBF976BB599C57802102744E7503 +:106FB00073799C21CE3396DEAB84319EB8D47FB2F8 +:106FC000DA0EFD97B62824978B3698DFB1737AEBEB +:106FD000ECB6606380EC89C59AC19E13F61E0C6EF8 +:106FE00043FE1DA8BD67B45F269489738C125612A8 +:106FF0006FBF24F2AFA4FDE264AABF0CD6658985F9 +:107000009F2FB2AA6B88AE33CC1F3F3B05F03AEB03 +:107010001B3102E9B057C4C5B7875E73E07A6EFFD3 +:10702000C24CF2CD2CDD2B915EE63B2766A13E3FA4 +:10703000F4CDCB724F637CB98CFBD9BB4C9EEF5720 +:1070400021FFFEDE4A7A35113C8E90998D04794FEE +:107050000A2954CAF5480D25314B9C9E49C57350E9 +:107060009837C7D7A38C88D32BD79571B9CCD8C004 +:10707000FDE91C1F53316F624DE188DDE8E7C286F0 +:1070800044F9B5C9A33C25B8AFC9FE99261E8FB6F1 +:107090004C6FD4D05F1C0E70E07C1E8003F7B7FCF1 +:1070A000500AD54784B2A82C08655039323494DA96 +:1070B00047850AA8BC34944FCF4787C652BD305489 +:1070C0004AE598503195978526513916F637EC5791 +:1070D00014AAA6725CE8EBF47C7CE81A2A2784E602 +:1070E00052E90DD5517B7168299525A1C5F4BC34B1 +:1070F000B49AEABED0AD54F787D6515916BA93CA9E +:10710000F250139515A14DD4AF327417D52786BE12 +:1071100047E5A4D0DD5456851EA47669673C8FFFF1 +:10712000043BCF6C064BAA20262FC675BAA78CEB62 +:107130006D6B99BAA1CC1FEB671679F6C67E1D65FB +:107140007CDFC910E7D72647C45140FE7C4109FACD +:10715000F3BB40EE3DB02E6BC68CD88DFAF32EB14A +:107160002EC9D60E75A812F3DF33A6F3EF2BD61C6B +:107170005CC7CF612AB206140FBAB38CEB9D5D16C3 +:107180008DE17EB9AB9179350F261B7629A8173A88 +:107190008B4C35A8C7EF2A3A7B08E578965FC5C8BF +:1071A0000BD44D2607E9A76A1FC279B8CC2AE2465C +:1071B000EA8388F7705FCED7AE81F6E1CD2617342B +:1071C000B30C9F95E23B19302DEA33196FE94CD689 +:1071D000EF7F4F9449FB4E75E4233C434696703B4A +:1071E000997F8F61BE7304F993BB6C11C5827A0DD0 +:1071F0001C9D87A58EC7FEAD4B1E41391BD1E67D78 +:107200001AE11BAE794B11DE2750DE00CFFC0ECF0A +:10721000D42400A860A7FA34A61E8E0A07A7264326 +:107220007DF45EED692CC7EC0B4F4D8172ECC1C84B +:10723000D3A82EC645BAA73AA13EE1283B8CE25F0F +:10724000DCE599960AF5D253EA610C67FBBB83D360 +:10725000D2709D6CE1A6348067D75BCCBB09EA9500 +:107260003DDA61529B621D7AF9C0CE1AD1EE727876 +:107270003A54A477DE7A17C56D8013B83EB07427F0 +:1072800061DE4027E28BF8C1FAA37ECF537B88FEF4 +:10729000793E560224649DCD92FEF9C427EF09BEC3 +:1072A00000FA3F87F4EF4C7655633CAA670673ED0E +:1072B00086F6E6229EEF646B1941FB87E437A0EB6C +:1072C00098B9A9F1F4E77A6C97C11E4D44D7F784B9 +:1072D0001EFBFF4D57233D6F177C6CA4ABA46704C6 +:1072E000F1A038AAD78BFE7C22F98DC6E4F7B378DB +:1072F000F935F61B56CEE964A473A7891D853D2692 +:10730000EEFB2213C3B890BBDC745174CD2CFFBFCD +:10731000E157235D3F29E3FA25115DC9081D8CEF74 +:10732000B992593F794E52CFE07888777FFA8D51E4 +:10733000BC327F37E6378C1674DD16ED0CE07852E0 +:10734000BF599EB85B1DCA62FAEDD30BE92D9C9A1A +:10735000E2DC4E3A5F718AB80670C2CC421FFA0175 +:107360004A26DA497E319FE60B9496531C97F9E83A +:107370003CCCAB8FBBCF34BBAA51DFB0490AD9BDDF +:1073800073AA4EA8665A2F0F3F2717E78EE63B9346 +:1073900077E37AE683BD60013E807F46B04C67FBB1 +:1073A00022E48F34B312DCE7996BB13B5EEEE47EEE +:1073B0001E934BC91F99E40722DF62FF3BCAB99CA9 +:1073C000CB7C278A9EA3DF7EC7103ADF94EF753A05 +:1073D000F3E8BD3BCA33685CDBD086C2C54589F99A +:1073E000F961C9CFCD8F117D53AAB89D90DE9C491C +:1073F000FC9D3E3D3808878FF1F5121BF2F5ADE597 +:107400006621075C8F83FFBC08BFF3ECCCE4251D2D +:1074100054FA70FEBCDD5C6F0F8CFFA7FE8BF97F0A +:107420006AB947C863FF7230BCCA7508F3CF864F8C +:10743000672E0FCA7515EE61786E6123FDC9D0EE17 +:10744000857A3AB037E66B025D231827D54CA9C47C +:107450006F667BF774E2177B06F9059A2FB8A9FCD3 +:107460003CFAA9D5E62966606A857FF5BB3A6725AF +:107470007E4F00F2044BF7DDF2AEBAF60AA467378E +:1074800013F507B1FD7F1BC780F15FC738862B85D9 +:10749000C70BF0FC38FE3CFA3EC1077F2E53EF418C +:1074A00078412EC2585633B6DE84DF377CC5F88764 +:1074B00031EE21E5EC42768AD41F317977154B798C +:1074C00047BE067DFDD3727F6CBC4476D7D5E5DC24 +:1074D000DEFA75F985ECAECC6A0BD74B42BEB97CAF +:1074E0006E63FCFC24915EFA89E4AB047A29D5D161 +:1074F000B1730F8BC5791D827E12BE2437FFEE3625 +:1075000055C47937609C17F82D692623BFC931927D +:107510003FC73FFDC77BC3BAB89A8CF732E1A7DDFE +:107520002ADEEDD8EC4DC7EF49B4E7797C447E0FF5 +:107530003013FF0DF02A5E85D6A9E3DB5C4E67E5CC +:10754000B1F066608D997F53980AE31DFB9B994AC1 +:1075500063BC7616BC8776CA31C5117640FF43C539 +:107560007666C373945493F01723799760BDC44E25 +:10757000F1FD23C5E594AF63CCB393E5F5C1C5FD3B +:10758000E61D1AF1BC7EC1334EA4EF832E6EAFDA36 +:1075900084BEEFF5E7CA7BCF35FF8A7C927A634FD2 +:1075A000B30DD5B18B9F6B3237E79BC1AEC792D07D +:1075B000EE1CDCC0EDD6212CBCC9E5ECCB8F3B2A00 +:1075C000827FC7711E94E7860DFCDCB0CDC3CF0D62 +:1075D000ABD70EA91A0103DCDF7B6E18FC0BCA9136 +:1075E0009AB5AF18F9E7C1BF1D4CC2FCE073ECD8E7 +:1075F0007A8AEF97BE99EDC138B7FF991CA4C32CC6 +:1076000003FCB294F138A37F9B52A18FCFCBFCE354 +:1076100044F1791927947E2EC6015DFDEC0B463AA4 +:10762000CBF9EB810D287FC1AA90BE3B865D2B492B +:107630005F0CABE0FBA8EAF0A1DE184779BAC77D82 +:10764000A5747EC1BC59721FCE8B3F1795F0C0F355 +:1076500051FD9D9726CA6BF055F0FDB0DECAF59935 +:10766000B2EE997A5C87FA62BB62CF8FF1E7227E35 +:1076700036C70A44FF45DE2D94D76D3CFF28A8701D +:10768000F1FB06AC913C97888F7AFBE1CB4474798F +:10769000D5A22D40BABC1AB4BB308FE378B03C976A +:1076A000F503B72C5F43FEC07C0ED0F1386FEFBA04 +:1076B000A173DECFFA9FC27C356BDFF3A5DEF6C582 +:1076C000491437AF15F918F2F90281F703155CBFB9 +:1076D00033BB568871E3B625F73AD838CC0339EB7B +:1076E000D780EE5B598F7F37C5D352291ED14BBF50 +:1076F0000A4EBFDAC5E7FC9BE2F2DC161DDEEA4269 +:10770000BEADCD6FCEC1EF068DF47C40E09524F880 +:10771000D9C9D44515FEB878CAC86B393F1C4EF29A +:1077200046605EC7CB0525B8CFCB780A8ECBF36712 +:1077300079DC77BD38C740DD12CFD7B5A1353A3DEA +:107740009114555838BE6EE9A0B86952D442CF8D15 +:10775000F233B542C48784FC9CFC628B0BF9C9816F +:10776000E7DC45B173F6D4C24C3A573F596B5679B2 +:10777000BCC445DF453F52C1ED7BA9D7E5799DF1FA +:10778000FC4D9EBBA51ACEF1920A1DE73DC793F8AA +:10779000C6CEEFF47436E2B3DD804FEF795D02BE02 +:1077A00092FC24F92B11BF4AFE323E97FC756AF118 +:1077B000D6420FF25572FF76E6A315FAF308637E00 +:1077C000813C5737BE77AB78EFD36025C953AD4DB9 +:1077D0001B35107D25F9E242F914D7DB78FEABF1B9 +:1077E000F98F84BC7C1ABC9FCE296EF59B5CC87F48 +:1077F000DBE13F0DE5C467A5BCA857BFB033B4FFBC +:1078000052FDA68736539CB579D87DB86F2EB6D376 +:10781000B94604E4BC01E47CAB90F7DEB86CBB393C +:107820003C0AF70BA6E8CE8567F979DC7CFB3DC501 +:1078300061F48B92473A74ED5BFD57A747A8D631A8 +:107840000BEF1358E2E1E789B58C9F073AFEB125AB +:1078500080FCBBD5DAE12E76C6E87078D47FA562CD +:107860007E0E5362E7CE1EB0EB228BCB077513BFA3 +:10787000F2F348878BB72DF597D2B96337E6C7D2B5 +:10788000B9BE880F332E874BF37D83703D645C3720 +:107890002E9EAE8BD3268AEB0E349E2BF9DFC8E7E3 +:1078A0001F56F47F2E9D689DE3E2BA3D3A3DE4B950 +:1078B00056A74FA4FE91F2F09AC0FFD4A8FB66E150 +:1078C00039D3A965DC2A3C3CEABEE31B7D940F4812 +:1078D000DF293BFEF1E319C8076CA5D26F3C77A204 +:1078E000D4BF78EE5F18A3FFFCE0CADE3AB271DDC8 +:1078F0008A75BA7C05A3FE4F2C9FE797BF5F567031 +:107900003B48EE0FB80F643AF93E604A8DF17BA216 +:10791000FD40EA7FE3BE60DC076A17B778B57154B3 +:10792000EEC5711C05C9740F90516F19F5BA9CDF33 +:10793000087752D4CCC259F172E9A17E31BD6EA351 +:10794000766460F4BB422CD94BF9BEA5EAB84AD0A4 +:107950001BD93E757C25F4FF69A93AA1326EFC263D +:107960002BCFB3359B58703FF9A5015D7EEEEC4AF5 +:10797000AE775AAA79BF433965EE3F42D9F44EB18A +:10798000DB0AF35E5BC9CFEB8EA49E3FFFFEBB829A +:107990007FEE423D84F22FD651FAF180BE8AF196F5 +:1079A000166BC08DFE605AE5635D2380EE4D2E930D +:1079B0004B4154051C4D2E0BD9B7CD4E4BCD1EEA75 +:1079C000CF488FB4A4AA0F6BC2DE99978AFDF9BD88 +:1079D0002F16A73E4F3564D1EC48AF90839F131804 +:1079E000E1BC41CC5384B18F38BC8DFD665772FF2A +:1079F00069B04F9D8FF47DA6549D5D49E78C4E3A4A +:107A00003FA4F9CC17FF5DCFF1F2E0325C9FCF4D80 +:107A10001A433FBB29B5AC90F25007F8FD5563A55A +:107A200062FCFEAAB1B21F7E8AFBCE9BBEFBAAF609 +:107A3000B0CFC208B4B8CF40E68F823D7B3BBECF0B +:107A40001C8DF3FACBCBDC7181B8978C3B813FFD69 +:107A5000ED4AEE4F6B58565730BA3747FAAB3B4CAE +:107A6000DDEC7CE3009DE8FC7700F7867C07E135E0 +:107A7000D2D596D63801C71F281DEF177C1047C7EF +:107A8000FB2B7312D3F1F33747A7E33E21EF3B31D2 +:107A9000F693E7FDB2DE96A19FBFB584D7F788F5D0 +:107AA0001B26CEE30F0A38A49F2CEFE570CCE4F739 +:107AB000C5C8BC0939CEC1CA54EAFF54F9D48308F9 +:107AC0006F6B3EBF0FA235437F3FC5AD95D5D4FE4A +:107AD0009818FF20F2BB9FC7AFD0FE907101D97FED +:107AE00083E8BFA1928F0BCA6A0CF289CD6CEE9726 +:107AF0008E4F0AF990DF0FCAEFBC966E37EBBEF3DC +:107B0000EADD479F64B4DFE3B929CA71A2FCB8601B +:107B1000A1EBB718CA39C78A64BEDF57DA57919EFE +:107B200029997DF7D5972B7BED47EF45EEABAF5706 +:107B3000C69F9732AF2EBE24F7D56EC3B98F2CCF18 +:107B40008AF56F177E35EA47D4CB784F15E9670B76 +:107B5000F73B77A4F17827F21DDE7771B6529F1FAD +:107B600023E351320E25E352320ED57BAF8B211E1B +:107B7000D56DEB6EC98575EA19C3E87BCC8C0DEB2E +:107B80000E59F1DCAA9095E03AB5E6B3B40A6C2F31 +:107B9000367931DE9F71ADABD50AF50C0FCBC465DC +:107BA000B5E23D2130EEA889F9B4EEEDDA35877201 +:107BB000A1DFE2E6BF927D38A8CA93899643676F3A +:107BC000BEF166BA1F47E29F3C51C4773D3CFECAF6 +:107BD0001C1ABDA7DA338AB7B1F87EBDF730254D40 +:107BE000247EE471EA0CC6F98879791C720EEBA246 +:107BF000BCB456D33ED22F63CBA7A54FF4C7E4063F +:107C0000EFFDDA1F178F35E61DB9C53C89F28E7678 +:107C100088385B2B8CB79FE2BD323E98A520BCD044 +:107C2000BFD99A89F4D0AF4FEFBA18E28689E284BF +:107C3000C9F55CDE8DFC3245D06B944FBD0CF16212 +:107C40005F7CF9A5B92CF6FD24BCC7D01E48CA4EEE +:107C5000A5B86D92879F73339742F922361B8FD355 +:107C6000D92E65A59B3C9877EE6C5380E9D88D267C +:107C70008679BCD3C4386A2D53FE5448A4645C2F63 +:107C80005BD89FA4BC9805F160DEA982947658FA6F +:107C900014A0D334E7EFFF5B0179CC1DC9E3BEB973 +:107CA000D9E99407B123411C5EE679F5E6B5B1F157 +:107CB0006FEAF2DA5A0ADFD47F7F50F8E657C96BD1 +:107CC000ABFF75E19BFFCABC36A9FF4E9983A7EEB7 +:107CD00004FACF03A585FEEC3C18B19EE2956EA296 +:107CE000DBB582CEDADF80CE8E189DE73DF12CD158 +:107CF000EF9495DF43629DCA496DFD667AB889ECC1 +:107D00009D30CD7B9DA36306C6D13EB1F58CC7796E +:107D10006FFED5A3FF8EF6E7AA5FDC9B8649111F95 +:107D2000583A06E1F386875BD2F0BBB4F72D5A1AB6 +:107D3000DA411F84CD35FDF1D5C382AFD0DF5100CC +:107D4000BE3502BEF741FFE0770B2B5FB58737C129 +:107D5000FC6BF7DA2376C077CD8195A4AFA1FE0E38 +:107D6000AF6F213DBCF6A05E0FAFFAF1BD833CFCC6 +:107D7000FBB5A126372DD75024C19A3D568A7FAC3A +:107D800079C9EC8569D85AD6D38AF019DF4738A269 +:107D90004087B5FBCC8B6DE97DDB4133D9705F5AF1 +:107DA0002BF681B507AE7A0F9965AD41EFAF48E08C +:107DB0004FDD3351E8FD72568E7C0DF4A1FB1D346E +:107DC000808BDCBF700ED9334D3FB1AB18D7FDE0CF +:107DD000B5DC4EF47B3EDEF35C9A5214DB07E43DE7 +:107DE0004A1FEF2B483FDF77AB7FD9C8852566EF69 +:107DF000F0F5F41C040073A1FA042F1BAC91B449F4 +:107E0000409F864EAB5783C70D8F9A5534C118AC2F +:107E100003FACFAB1F7DE6E4448067F57E6BF64C3A +:107E20008E8E5319145BB7B5F01FF29D5CA7558F6A +:107E30003F63F38CE3CF311F56AED7EAFD876C1852 +:107E40000F33D275DABE4336EE1F1BD66DDF3B57BC +:107E500020FF37FDE4731BF2E5074F292C37BFEFF6 +:107E6000FB2B1E7E2E0DFB5D68FD3EDE934276C22F +:107E7000C74F28A4AF2EB48EEBF15B4B3FF1FBCF85 +:107E80007F0DF3AF78CDEE45FC57FCFCD634C4E350 +:107E90003D4B23E7FB1FB60C423DB1C2AA0D725108 +:107EA000C99FAFD8F50DE2C79B4E7C83FC7CE0F701 +:107EB000C1A60AC27330E2B7EC07F308BF153F5CF6 +:107EC0004AF8B1FB1586297EE72CAC667F3FEB3A7A +:107ED0006C12DFBFDFDB6DA7CDFB3D1B9757ED0FAE +:107EE000FC3B37C6D691BCCBEF5429C205F5730EC7 +:107EF000BE4E6727CAFC0F9E27B856F45ABB670BC5 +:107F00009D8B7C384CCDC57D07E8A0CB17349F985E +:107F100091CBD787E70DD27BA00FA6E173ECDF658D +:107F20005593C6EBDE13FE279F7FBD981FE04E568C +:107F3000264039A8F79CB20BE158A3F077907F3028 +:107F40001F6EE624AE1F7AE57FCF56BE4E42FE3F3F +:107F50007B89EB9535E1B935A417BAAC915CEC1788 +:107F60003E74AD427AC11EFB0E375EAEF758055F18 +:107F7000E8DB012E8B124FCFA7148A3BAD3D701763 +:107F8000C5B197DF03FDE3E438C62FB6D8F3FC98FC +:107F90005CCAF8E44D8638AA2CFBE4FF4FD2EB858F +:107FA000DEF8E60F72CE1B4F94FE4B8335FCC80300 +:107FB00028BFAFDAE93CACE1512BE5877EF4B3C3CF +:107FC000276F007EFF689F945BBDBE35CAED8AC7F0 +:107FD000E6B1FEE4F6A3EC00EB576EE179BF729BCD +:107FE000CDEFADF9A7E95BB10E89E4F4A604FA760A +:107FF000AA81AE60D7A74F82EA873F5D3D9CF2B869 +:108000000CF4957435EACDD7277A88CE46BD097F22 +:108010005E6271F4947494FCBAEADF6EA6797AF920 +:1080200058F2ABDCC77AF9D588B79E9EC6762B226C +:1080300001F0584D5E077E027643CE9E54F4579A67 +:10804000E43DA6CC7B1443D1F3D40291DFC5E55DBA +:10805000E494B2B649324EC6E54F7E376417F71145 +:10806000353113C5C7ED4C7F5FD0F339CBF9FD3FF8 +:1080700042AE637AC6447E435776C523224F82F4CC +:1080800004DD0162C2EF68B6133DE6A866A2835D17 +:10809000E5F9C671E3D33A36A9A7F3F05CABA9C200 +:1080A000EE45FD0CFD894EF3829C9EF3D4AFF37B2D +:1080B0009AB28FD6629EF59C0ABD1CDF6090C7EB1A +:1080C0006BF5EDD7B1DD3968AF5EB7C2CAF05EAA15 +:1080D0007986FE0B27F1F3A9EB59638B8BF3B5B0CF +:1080E00053F4DFAF3071DE3B5BE8359997FBC21E7E +:1080F00085FCCF172A96B61763FD67605542FBB91A +:10810000AA52E6003A3C6F6507C9FE55558FAB8C05 +:10811000DFFF89ED4AC5EFC80E4BAF30E9F44C865E +:108120009AAC833FAB265357CF090CD1F5CFAD1D89 +:10813000A16B1F1CBC4CD73E744589AE3EAC71A2EE +:10814000AEFFF0D0545D3D5FFB9AAE7F41DBD5BA08 +:10815000FAA88E1B74FD47EF5CA26B1F135EA56B24 +:108160001FBBF7165D7DDCBE6FEAFA4F38B859D7F2 +:108170005E1CD9A66B2F3DBA4357F7773DA0EB5F46 +:108180007E6AB7AEBDB2FBA7BAF649EF3FA6AB5FBA +:10819000DEF36B5DFF29D1A775F56AF69CAEFF345F +:1081A000C78BBAFA0CD7EBBAFE57BA4FEBDAAFF27D +:1081B0007CA46B97EBFFF5C24F75CFD1A1D2801F86 +:1081C00056F1476C96F7EFBA712C2C40FEA58D3511 +:1081D00052E9C07CC602BCB781FB9D4EF443A1CCE2 +:1081E000BB32F8CE2494EB5D5A2B32D7F3959F5FC8 +:1081F00082FBC80B55D7E8CECBE8BE2E0F94786F24 +:108200006A5A2CEE931635B34829F06154A1D21561 +:108210004D6111F04732A249546646B3E8795634AD +:1082200083CAECE8507A9E131D4CE5A0680195B90D +:10823000D17C2ADDD1B1540E8E8EA17248B494DE69 +:108240001B1A2DA6322F3A899E0F8B5652794974EC +:108250001A3D1F1EADA6D213FD3A95F9D1ABA81C4D +:1082600011BD86FA1544E75239325A47CF4745E7E0 +:10827000537969742995A3A38BA92C8CAEA6724C53 +:1082800074259597456FA5F7C646D7515914BD93E8 +:108290009E8F8BDE41E5F868139513A29BA8F446E8 +:1082A000EFA27EC5D1AD549644BF47CF4BA37753C1 +:1082B000E98B3E48CFFDD1FBA92C8B3E446579B4B8 +:1082C00093CA8AE8BF515919FD099513A38FD37B2F +:1082D00093A2FBA9AC8AFE869E5F1EFD0F2A27474C +:1082E0000FD3F329D14354AAD1E7E87975F4592A79 +:1082F000A7465FA4E7D3A227A89C1E7D9D9ECF889A +:10830000BE4AE515D1D3545E197D87CA9AE8475411 +:108310005E15FD80CAAF453FA5F7BE1EFD2B953308 +:10832000A37FA7E7B3A2FF4D65AF9F5095F0FB3D3C +:10833000D39750DE8D97F3837E9BBD81EBBBEFA778 +:10834000FCE508E9BF4ABB87EF313B89CFEA053F2F +:10835000B7E0FF609F3D54F95E1EDA8BADD5A7DF15 +:10836000B815EDAC75769E1FD3479F7EE114F626B7 +:10837000C3BC9905825F5FA8389C83E761AD25DDAA +:108380000D18DFDA9EDF5D8FE58C2ABE9FA9A29CC7 +:1083900056C5EDDC072E0F965C09E5AA61260DEDAA +:1083A0008B55699EF4EBA1CB5D93C43DEDD9993C0F +:1083B0000FD1D97309DA196B849CAD79E277A75094 +:1083C0001F2B202E21B483E4F73C07F5745100A63F +:1083D0007ABC7799791D0ECCDFCA631E7E7FB57E8D +:1083E000BFB8505C796C55707E553F71E5D87DD82B +:1083F000DA80EED586719654E5FC53C6593D9071EE +:10840000B664DF16588C558B6A993588EEA510F73F +:108410006A1D5B40F7536A760FC6FAEBB49BC82E11 +:10842000B237E8BF37AE037D560DFB6EDD7A7EBEF8 +:10843000696C97FB6A7703E7B36EB5D181FE495D3E +:108440009E89FAD719EEDDDA04FC84FD5FDFC4BF34 +:108450008F5922ECC260C395149F0D0A7F2F78813B +:10846000EF59B65619EC71C19F75D2DE316F388A5B +:10847000E7D5E78E9929967238C7C6F0DEDFEE9B06 +:10848000ED342F6BE376E5EB39FF3ECC13E7B72FE6 +:1084900006BDAAE239F1CDB7BB91BFB7B4ECB76264 +:1084A000FCA47BD83AFAB8C4E8A7770F63E447D7AF +:1084B00069EBE85E4A56081C3648D8551EB4FF3CA6 +:1084C000FBD0CE669738E81E3FB3497FCE9E7A39FF +:1084D0008F2FCAF26D8C4BA1DCADE1794556532349 +:1084E0007D3FCA2E493671FF516BC0FA8DEDA3470F +:1084F000A01D5763610ECCAF95E3C5D96BC9E4EFFE +:1085000058803071769ED19E3B589521EC4CFE9D53 +:10851000F16971FF13FE51241E94F7A8DA30FFD6DB +:108520009EEDE07661C7DCD5B85E6FF77E3705B8A3 +:1085300095D13D2814BCAADB90A28E81F627ABB85A +:108540009F6815F94BC03F5ABC9D8CFC85FD2FB927 +:108550005CDABB1CBF60BBDD8371D87EE131B1DE6C +:10856000BCDA607B4698E2B5D91682CB3A4C5D887E +:10857000E711760DE0437D60E9F9C6623C77D032C1 +:1085800028AE176C56AE40FD646FDFB40EDBF19E73 +:108590002E4B26DDF36BB1011D1733D7156EA47773 +:1085A0003BCF73D6E105FAA4AE5D21BCDEADEA8D0A +:1085B0008F2DC4D4B9A51ACFE7037EA0F95BBE9571 +:1085C000AA72F8944EDCE7E5FAD48979EB3A7E7525 +:1085D000BB427CCECF09EAC4FC8B44BE66223AA5DE +:1085E000F7D2497DEB155FDF7925BC924E2D0ACF7E +:1085F000CBD6B62B9DC83FF60DA9140790F8DB0526 +:108600001C832F1F41E34A3A746FBABE7631E0757E +:1086100066FB68FC459B3EF0900E89E30F235F5993 +:108620004D7C7DD8258CFC74C9F7925F1C82DF6578 +:1086300069EDC52B2E3E618EF1A5717CA9DFAE8C54 +:10864000EF0FCFAFCCE379A86F8BF8AEE9C9CD0BB4 +:10865000F13C7E7795D84F3C8D742F938407094960 +:10866000F221F8D6EE74A863801ED9029E1625402A +:1086700074D0B6DB891F8C7EFEB95E3E60415B998B +:10868000D0AF267CEEA1E775ED76A2B75CEF777BE5 +:10869000EFB5522F994BF74E093A0AFEFA8318EFBD +:1086A0000FE27D583F86F7066877DB491FC8F579EA +:1086B0001B8700FD35E1F2C06597FB493EC793DE9D +:1086C000DFC0BFB7A9371D1A85E7A5F59B2354C6A0 +:1086D000F416A75BCD10796F8D97F25758E344CA13 +:1086E0004390F9B19FB6FBE93C3398C6FB299660ED +:1086F00039D66BFE676939C67FD96BA9F45DCE8226 +:1087000002B6E8EA22915F08F02C68BAAA06F19C4A +:108710002AE8F702F8E9EA68C64E6C74301598E565 +:10872000C58D2EAABFBCD14DF557367AA87C75638E +:108730002195676C9C3F1664C9FC6C177DF75873D4 +:1087400039B7176A7AF964BD1BFDEE9AFF791133C8 +:108750009240653EBC70C630F247298547F269ED0C +:10876000B529E23084D7170726E9DABB45FE032B8B +:108770002C8D3D1FC1F902F977495B3E9DB3CD9F1A +:1087800099A57BEFBAB6A1BAFAA2CB3D04D7DC9A81 +:1087900002DDF31BEAC7EAEA8BC5F7CFCC5341FBF6 +:1087A000958CBB8125CAE92FF28E6E5D7765FAED57 +:1087B00030FFAD27CCD46E5C87DB966A0B11BEDB35 +:1087C0001EB27BF13B84A53B15A66511FDF8FE7139 +:1087D000D24C7277E34E330BC27C1F66A8B9E930E6 +:1087E000D4FB491CAFF75F3677A2BD50F33F057C41 +:1087F0007F7AC44EFBD3FB56A6B9E8F73A1492DF52 +:108800000F4F8CA2EF3916144486E177EC3DBF4C34 +:10881000A273C1A5DD7C3EA69450FCE3FD0CA666C8 +:10882000005FFE7956C772CA93371FCBC1F39E3FD4 +:108830003F66A67B3B57AE7BB9CC05745DF5DB7D0F +:108840002731C5E54C8799B930EEB5D7DEC9BF8B66 +:108850005673511E627886C7235F3E3B31D08AFC37 +:10886000FDE1F2F078F2F737E4707BC1408F33B668 +:108870006039C6E335E44B182F785BAA03FDB8A531 +:1088800056EFA062E2231EF7D3986F30A3F8EE6391 +:10889000C43F67DA475D41FAB14D61184797E383FA +:1088A0003CCD463A9EE9C832E1FA2F6937F3DF67DB +:1088B000611E1BC9ADBC27E76E73106C107C3FC8EE +:1088C000E34DFA75040F2517E9B6E5797EAFC4C20A +:1088D00004F1C6BF80EC04E3E259AB9EE4F71B3120 +:1088E0009FE7BB5568C7EF99E6A7BC8B201FFFB376 +:1088F0004CC937FC5EA7B32A4FE13EB727358CFC45 +:10890000F0B1E9B1B72CB00E1F9882FB907E2B66B8 +:108910006BBBF077783E79E2F477F01CE1C347ADAA +:108920005E1CDEC9D4FDA43F42DC1E92E7D6AB7EBE +:108930009A447CF25FC32EEBC4F58BE98F4D1C6F1C +:10894000D19FE12F5D113D238314A067D0C3AE20DA +:10895000FB8FED13F1194E270F0205747235F0B835 +:10896000DC697FEA363601D6C7600F9D16F2F85BE8 +:1089700021E752CFD92773BDB854EE2B4F71FB4876 +:10898000DE27B482717AC8F382158DDC9E7D05F7EF +:10899000358C53375EF91E8F8B71F9580D7C87EB40 +:1089A000BADC95B11EEF8B6AD89BE40DC3FB3993FB +:1089B0003D5C9F7B4033039D578A576E62E1F61200 +:1089C00098F7E6BD566F84D092F71159485F7C083E +:1089D000B66345268EA7D0F80D1DFC5EF5F4AA46B9 +:1089E0001BC2BBFA80C2B278DC8DE27CF2BBFA55C6 +:1089F00096ED14CF5B55A890BDCCF6C6DD6B0EE3AB +:108A0000DEBC4FFF3DFD5AC377F4CB1CFCF7C79685 +:108A100031C3FD011D56DA2F1DCCB189EE8D4F49B2 +:108A200025B8567570BB3B06BF997D09345D1E0C99 +:108A3000FF7636D141F186595F386664AF233C56E4 +:108A4000211EF97DE132E2355038977B0F11BF18B6 +:108A5000E18D5B078F7E1DBA284EFDC7462B437FF5 +:108A600071B9C6F961F913FC5E7679CFBE911FFE2C +:108A700098DD48E7377FFC81C23AF263FC21F96256 +:108A8000E5FEB00DF7FF8F58479A13E4A661E7FEA5 +:108A9000EB2AE1FD9B7E70C286F6447D66649409F4 +:108AA0004CE56C2DE54735C362FCBA32ACA7C3EA8E +:108AB000BDFAFA3F8B4E4CC46BE93DA0CFB23D6688 +:108AC000B22BE2FAE9EC22666EB7E1F764E7C28AFC +:108AD00017F5EB0ABCB6A3E4E2E15DDB7BFFC0BFA8 +:108AE000166EA37F3763B2C86B15F7C99F6D9CC71D +:108AF000F37D37F4FF5DB7F1BCC5B8BFBE61E5F9E2 +:108B000036FDECB373902F609F35E1C78A89F4F38B +:108B100072B1BF2EC3FD14CA3FED7C3C0DE3757FDF +:108B2000BCE7F141748E84FB5151FCFE0CFB25EE39 +:108B3000CFBFE2BF8F54FF437B04E3DA1F1FB08730 +:108B4000597EDFF1574F0CDE3819E116FBE987CA71 +:108B50008932BC0F4BEAD944E7C7FF2A7C9720BE75 +:108B6000A56857707CDF6DE3789E6EE778DFD807E5 +:108B70005FBD3DF27E5284F6FFF7F79B19DA19D2FA +:108B8000AE907682C4F31CEBD885F798DD7CCB2BB6 +:108B90006F59803F565EDA351E7F9FA0FE6E3BD92F +:108BA000072B7F994AF4FA50A9CE45F9FCB8C3AE19 +:108BB000E24FBA7DBC37899EC7E0E8B517DA27C710 +:108BC000DB0B03A49F8C23291E17CFCBF801F3A046 +:108BD000DD89E72E78DEC19C26DA6F8CEF1F9ECCF4 +:108BE000F7A99BCD26B2571B6CDC6EFD44F8AD9DFA +:108BF00062DFEA9CCCFD9C1F4F76097FA16717D2EC +:108C0000EBC4937617EE435D361E773E6155777E53 +:108C10000BF09A3625F808E211303917A0DC6C4EBB +:108C2000196F453DD49CB19CCEAB16B22EBA276BC2 +:108C300076C55C0F7EA7F7D6208757FC6E478095D8 +:108C4000C5E23CCF5B793ECF5BB8CE80579D38C73D +:108C5000782B09D426CCFFD6601BE591684FDA69E2 +:108C60005FDE92CCE3CC2C3B9DEE1DBE41C8FB8267 +:108C7000E97615F564DDF42D012C613C8D01BDEA2A +:108C80001D3D2DC530CF2613DFF73665321E876AAE +:108C9000EEF623FD26B06617E6B300F607BECC3A23 +:108CA000DF3AE8F3891A30AE45F728C33C15445F34 +:108CB0005DBDC1C6DB5F7DEAC645F7E4411D6D764B +:108CC000B44FAF328777E763FCDC44EB3907F36CD2 +:108CD000C89E75EBEEDFBB1AFEAB023CAFB630CDE3 +:108CE0009449659B13CA79152C920EF8459ED5E7D9 +:108CF0003B5D1F314546E3F998257288F271CCAC93 +:108D0000054DE4AB59BEF516CC2FD83C30783F7DED +:108D10006A2D87D7C4BFFBEEB943A1FBE0165AD832 +:108D200011FC7D87B5991E8D9EAF53C8CEAE0361F1 +:108D3000C2F35F686F4B2BC1F714E22F5C5F9E3F5D +:108D4000C4F3AEE43A413F47323CFFEBE47C718F21 +:108D50002F877767D03408EFCBBE59F8550B1DAC81 +:108D600019F3F4C0FF4BC3B84E318019BF4E6B6D81 +:108D7000D2FFDA67C3DFBD5BFDC4EF4EE5035DFEE6 +:108D800021F879B58CB7FE4C1F6F1D3EC543F3E249 +:108D90006FBC227FD48932917CE44DE1F293374558 +:108DA000DCF73445FA77FBC8EF5B2DE2BC89E6BB04 +:108DB000D9CE2244AF27EDB4EE72DE39A21C328543 +:108DC000DB7F120EC9E7CB19D8030558F27DCC041E +:108DD0008B4979411D0F515EE98A1FE87F5F060CC0 +:108DE000143AE75EB5C7F83C6E1FD4FD3E148FC33E +:108DF0002BB69E1B113E65729217E5A2CEB68FFC74 +:108E000071051C0CE4AFE509DEB37670FFCBDACE5A +:108E1000ED1A8AB3F8305EA3D0EFB72CCEEB1987EA +:108E20007A61497623EDABD20E5E2EF8C02E7EB766 +:108E30006539DA3918AF433B07E9B793C36F117649 +:108E4000EBD20EFD7EBFB8CD881FDFF7ADBDE3EAE4 +:108E50007F07C62AF6FDB76D3DE350DF5A997EFFC6 +:108E60007FDBC4F1D006F13810CBE6ED1661E7499F +:108E7000F91F3FC5AABBD7EE1CFB827EA248B607EE +:108E8000A63336B924B1FE98A3A644143ABFBEF265 +:108E9000282FB776D1F9B3C8C79E23E41D9E933D12 +:108EA00013A851E8F78BE7A8D60FE3F195F7461919 +:108EB000ED91EBA724C8FFA8CA1A50FE87CC5FAF7C +:108EC00047BD4DBF93C7E3D5B7C4CEA70B518FD7CE +:108ED0002BC95EB4CF65FCFF0D519E6DE4DF43D519 +:108EE000BF09FBA1D2F75CE093EA54CD04657D9AFB +:108EF000CD82EBBC20FDB6D958CAF3823744F9B90C +:108F0000A99BE65FC4BA3FC23CEB2BB3BB5271597D +:108F1000EAD78DA23CB5D6EAD29D6073B1CD530E8F +:108F20002D720CA3D348916779EC6DCC1BBCF60B6A +:108F3000C08FEAC717A9E0BF7DF24CCF42FC56EACA +:108F40009129CF2FB200DD3EB9B76717D69F9A722D +:108F50006A9105E8F2C9F69E4B92A8FE366FDF24AF +:108F6000C6636F2FC27CAC4FEEE7F57BA05D237B21 +:108F700025320AE930BB31C98B710719BFAA373DC9 +:108F80004D253AE6A8A7A4DCFCD7A8BFD2EF5282B1 +:108F900006B814F5C5DAE4883517F5C17EAE3F6F23 +:108FA0005E5F9D56CD902FF9B9ECDD427F29AA4A2C +:108FB0007AD50E6325037FDC23FC0DE3FECF8A0008 +:108FC0001E5F0C9E56A1DF8C701D9D12689DE2C72E +:108FD000FB1ECFD0F7D46F57ABAD5372E87CEB4795 +:108FE00058AE9AAB6836FC0DF197C2970ABB82FC6B +:108FF000EC2D267DFE7EABD083B27C4AE5E3CAF53C +:1090000081F17EF255C69B89E3E5C4C693F45C26E4 +:10901000E809E3FF12E7FBDF8E2FF59A1C6F7075EE +:109020001FF80F7D95F1EF368C27ED5789C738B4BF +:10903000D1609DB33071390E1EF9BC4589E45C8F57 +:10904000F1B167CD14EF6AC9F99305EF4F6081491B +:10905000DC4E4EE2F278660AE793966F79290EA706 +:109060001DE7F704B4E45CE7467BF0A3476FCAA2B0 +:10907000B895B02F3F3AF4AA0DF308D744F9BD00D4 +:109080006BA3FC9E8035070ED9AEC0FC2228A7C575 +:10909000C5391A62F70F59F0FB0009C799292661F3 +:1090A0001FF238CB5B982F54D48FBDA4F6C6CB09E2 +:1090B000EFF102BFDF4F573FC2F59578CBE7F23BA8 +:1090C0002FE33833548EE7B35358BFDF9DFDABCB4E +:1090D000FF071F764DC30080000000001F8B0800B3 +:1090E00000000000000BB55B0B7854D5B55E67CE71 +:1090F0009C994932C94C4842020930430442790DD7 +:10910000794080404E32498885E0003E78049DA039 +:109110003C0512230AADF49B818050CAF5C6C7AD49 +:10912000E8A57692A2C56A352A58B40849401A14AF +:10913000756AEB95DB5A18D02A2F25825E62A572DC +:10914000D7DAFBECCC9C49C2A38FF0F1EDACB35F56 +:109150006BAFF5AFC75EE704C0A87E6A01182501B2 +:109160005C96012A63E10E8F15E0CE31F116C72817 +:109170008031473CEEF86480455B9DD9B20360DFE7 +:10918000C462B39A0720D1BCACF0BCF2BE00419CD3 +:1091900007C6F6DE406DCD78038C01B817D7A69FC1 +:1091A0000B7BF26C309C7EE3FBB9685E26EED72B1E +:1091B000B812460394AAD6806522C094C771485F4E +:1091C0003645051C576ED668FF406F4906D2DFC989 +:1091D0008CCE5233027E5CAF8DF8C576DED811B1ED +:1091E000301220E48C33D86D0043265695129FF33D +:1091F000C64E2CA3E745E6F8C15556B6EE604F3C87 +:10920000F57B9CD44FE301CF59798FB210F09CE7E6 +:10921000FD31203B01BC23E3BC015ADF0025D00B0C +:1092200079A59F428001AA012085F8C595F2C2FB6D +:109230008B7D711FA075BC8FA437D03AA3261695DD +:10924000A829E17D474DF48E8EDC178F39929EF769 +:10925000B4BFD857B423697F9C5F42FBE3BA9E0238 +:1092600019544DC697F1FF8C92381D7DF3D42450CC +:10927000B3C2F4AD37A7EBE8599599BAF173EE1A7A +:10928000A6EBAF3007736BAC617D0BBDC16ADCBC74 +:109290004F57FE448B0A63FC954D97FC36944BB0B8 +:1092A0000546ECC4F3F99DF1AEA7B1F7EE4D3702D8 +:1092B000E400D83AE6B276593DD24900CB3B66325B +:1092C0007A45471CA32BD2E7AD83049273B00C728E +:1092D000B17D3511EA9087F7E4E6C1FF4DEB997156 +:1092E0003DC465C58B93CB49CF2B76AE7D9EC681A1 +:1092F000232E67108EAB90A14D42FD5577C4F0F53B +:10930000E4F773EF41B94E71C7FB0D36D60FA4DFFA +:10931000BABCF8CDA48F3A0566357523F765AAC4A3 +:10932000E4AE8438DFA51DD3D97AA2BF561DC8CEBE +:109330002B682565BB71BE357C1E2524B1F6FB1D4F +:10934000C3585BBD73BAD181FBBC95F58B64AF95F7 +:109350008DB7520B9E097ABBA9196B237BEA49CEC4 +:10936000E60ED43FF231B7430215D7F517AB9B0891 +:109370006FD3D6848C16940F584DF6A771EB69F90C +:10938000A3D31646AC53D7321B1C883B7332985478 +:109390007C3E175B7744BF1781D9D4CDBE0F69F8E7 +:1093A0000358CBDA69DA3848FB0EA037C0ED76CE29 +:1093B000B7C0C703DA78313F88BC10CEFDBBCC0103 +:1093C000E2EB89626F03D943B00866BDCCFC47B0BD +:1093D000FFF4F87F1DFFA85F0BE93FC1C8F74DC838 +:1093E0007736FAD1BE9EE93C07C7E9D5CEF1A8365B +:1093F000FE3D1956133EDE2B2C0CAAB85ECB03396A +:1094000039E417C1DE7E897057BD7742E666E4F71E +:1094100055D5C4C657EF451CB3E7E68084FB5624F8 +:10942000B57F4A7CB4BF11E36874F27984E373D8E2 +:10943000B919D731957A5F25FD55EF3D95E3C57D87 +:10944000D43D178F3E80F3556BBC8BD8692B547F6E +:10945000C3FC490F7C5ECD1EBBE2CBCCECF2828319 +:10946000AFEFDDC4EDD0ABD9639586DFF99A3D0A45 +:109470007B56087739843F8EBB651D897CBC26E707 +:109480003BB2A400C979798793CD17763C7F8D34A0 +:10949000782BD9A731DE35C841EB727B1076BAA2A2 +:1094A000234967A7C26E3F28F67E4AE7EEB4DB3A4F +:1094B000B4F7846BC1C93746C708E4B740520827E0 +:1094C000666CDD11F6EDD1F45E7597C4F45485F841 +:1094D0000029DC7FE63AF17E441B3FDFDA3CC8809E +:1094E000EB293531AE75B85E658A83F9AFDA1F2393 +:1094F0008122A955785CAD7D4272A16658BC051BDE +:10950000C5DB1A933782BFD91D23C181F299D97166 +:10951000036BF74DF47E4372A8EAB855D3CB48D617 +:109520008223DF40FCAC24BD121E219FEB59E3EFE8 +:10953000AB9AB1A9AB70FFAF0E2BAC3F4FF5DF4E2E +:10954000FC2801B3AB01F93919E395496F27FB8179 +:10955000FD5164F1A4027E3BEAE3CEAD32F871FD29 +:10956000BBB0F5627B3211D4C46CB23B3C67449C07 +:10957000F8DA58DF1F302E2CAFFDF0A8115DE19214 +:10958000C1C191CDB86E655173CA6DB8EED9ED8A7F +:10959000CB8FFB2E6B797F8C01FB4F3BD55440DF8B +:1095A0007B68BC37A908CFB37446E00505E933F5FD +:1095B000AFFC4FBE232CCFCA6298427C55B61A9896 +:1095C000DF6FDA229707781C8F9B3E2202D75A5E04 +:1095D0007108783E2270BAB42393C947C41BE1BF17 +:1095E0007FE34BC34384FD784F7128DA5E445CBA55 +:1095F00050F36119F17561A744C1B113DFE138245B +:1096000031BB4227C5701E8E3F1CE7C26F57C8068C +:1096100086BB0ADB80409D33ECC7A3E3D38467336A +:1096200077BE8EEB2C7D6E9E87F62D1C26818CFBE3 +:109630002E7BB94FAEB71B3F2DE2B5908790CF5B25 +:109640001A3DA958AD28CABB16FB8931313FEB9FA3 +:109650000ECCCF621BE96715610F1032CE880F3F29 +:109660009F51747D76A36AE305DF82CFA089E75717 +:1096700082FFB781E71F629F278A672C21FC50DC9D +:10968000A0FD5714F138FDAF3A574FF16345D1F5BE +:10969000C58FB951E713E710E73AAC9DF75AE34B92 +:1096A0005D9189ED7BBDF18530C3F2A3185BE06964 +:1096B000EC9FB46FDC570F3828CE988D9467BC555B +:1096C000E2AE2B8AE053F025F87C47E31BE3D0A6FB +:1096D000C871E2F93F1A9784BD46DB5BB4FD46DBF7 +:1096E0006D74BE28EC26DA3E855D0B3B9DF2139E21 +:1096F0008F4226CF4785DD623ECFE4D3F6BDC4005E +:10970000F99B15349FE1C81688CC2745FCAB901B0C +:109710001F1A4FF67B2ED95507E17828ECF68662A2 +:10972000EF1EC267F173DFBEF22708DBEBD5F1F95C +:109730009AC2E2D63289E537666C23E396B707BB57 +:109740006BB94EBB7BB188DF67DE9339BEFD361344 +:10975000CBCBAE86BF3FFCFBF0F707C2554F79F885 +:1097600011B2EF1486BF2334EE5F97077D98EB406C +:10977000BE2EE4621EE40CE368CADB8893DC304E44 +:109780003AF161EAA7F96BEEC7A75C861A92B39724 +:10979000F41F91277D57ECBD44FA1778688BF50FBD +:1097A000A7BCE65AF3DBB9C935A0E2782FB691FE23 +:1097B000C94C7A1DDE55FF52F1F5E9FF5CD1F5E5A4 +:1097C000B589C5FF705E9B519CD7735E0B2ACF5F36 +:1097D000843E5C8ACBB60AE7BBDE9149633DEA531F +:1097E000DECAE5DD29B766A3C80F92283F409CF486 +:1097F0002BFE277052E16EFACA82A9ED84E2BE55B3 +:10980000C671787FCE07AD3E91DEA0DEC0FC08C0F9 +:10981000787E02AA57303B6274C6F112BA673EDA0C +:10982000D9EFA7FED2025B677D834C418C1F5FDCC2 +:10983000E7F816C6773DD79F3764F48C88A07391FC +:109840008E8FA0F3A3E86D7C7C82310476B64E80C7 +:109850003D27DC49D91C277CBDF6B24494FBB49D5E +:10986000929DF432A7E09C89EA3215EED0C1743C97 +:109870006745EBC02A2BA62A73C8EF219FF35ABF76 +:10988000D7E0376AF240F92DD3C4676E925419F5C8 +:10989000B32C5F0A0C747695DFBC627D7CA41FA399 +:1098A0007E3E9872AF6F3ED92B9B3F90CD6F365F57 +:1098B000C7FEB715801AE8264FBA5B8CBB84B45834 +:1098C0001F653613CFD75DFDE55E6D7CD060580E09 +:1098D00028AF075A273558FAA15E81E3E247AD1356 +:1098E000ABFC1C7FA0469DF74AFC5675735E877ED5 +:1098F0007EF395E4B5A8CB7C0D178BF538292DB8F0 +:10990000AC929D9616202E288FF1C46CA17B4785C2 +:109910005BC3B5BFBC4ACDC0F3C580AE0ED7896B63 +:10992000FF8D5584EB1520C64F6920FFE431748EFE +:10993000E738DF2375CECF42FC5068A7F98FB77E9A +:10994000BF81EA76A80FD6CF68E31570DE144517FD +:1099500044D985866B6697E4A7513E83A4AEF2791D +:10996000B998C7B9CF251E5782C53CAF0C0EE4EDA0 +:10997000FBC53CAEBCAEC9B155E83936420E1961E3 +:109980003DE34F33DD7F22CECDE4343B599C7B4910 +:10999000D554F40FC15E3042429C1C2E5ED0B07E86 +:1099A00022CDF718013D9E1116351C46FF335B93FF +:1099B000CBFBC58B8F6BB891C8CE963300A0DE77FA +:1099C0004A7E19CFB59CF4DECDB99EEA8A1B7FD4BE +:1099D0007C55B9C2FCED5DE7AB51F34149BE9EF940 +:1099E0009A5EA646E9AD3C4A6F255174A5A0033A9C +:1099F000BF25FCD9ECC5CE07D3918FA5CF4BCC8327 +:109A0000A35F3649A3013E6BADADB28E237C3A9481 +:109A100074EC39D3BAF2B805B13B9DFC17C3EB7DAA +:109A2000CC4FCF24FB66F4FD55AA8DF052B3210D27 +:109A3000C77FD9BAAAC182763067FDC30A20FD75F7 +:109A4000EB0F1A8CA8AFD9B92F1EA4F58C6B1F3859 +:109A50003ED579057CD6479D635B14ED8F1AFFD800 +:109A600055FCF8FAA8F96BA2FAB744D15BA3E84D0C +:109A7000D1F6612FEB4DFE7EBD049BE1EA76627666 +:109A80008B7CB029D782E7B7EDDFD4B00153EE2944 +:109A9000751CE789EE1F5745E25401FE333719FC68 +:109AA000140F941EFC93ECEE012759D1714BF47BFB +:109AB000D2E8F951CD3E5023F3290FDEDF195FB90B +:109AC000BDB5C89CAFBEEED927D6B3F9FC9EF288CF +:109AD000F65E62AF011693BDE33AE52F75E3FF1F13 +:109AE00029E1F7C5FDDF9E7EEE45948B7F8089DD01 +:109AF000D731F3B8D48EE739D1CF944771528C6FF8 +:109B000019605A4D71A4C5EC4B5B10111FF60FE89C +:109B10007DA90AE7EF4F053BC5F5FD0FE4B0F9FE5F +:109B20006AD93508E9BDFD3FFD8FB148EF5D21E7FA +:109B300050BF98A72C93599C51929BE21744F0B7C1 +:109B4000BF3AA7C01171EFFD5AABBBFF39E37E3BB3 +:109B5000C5EB96012B8345C46FAA91F16BFEA6D28B +:109B60002EE173B78C7928B59A1E8F76CC090671D1 +:109B7000DC06EB40F254F89CFBB90D19B75A689D0E +:109B8000BA6403CB9794F8797653C479D46423E705 +:109B9000CB099EC83CFC2D4D8F3F75F3FCBF55B6DD +:109BA000B373231F76AAC3DFF16DE59120EEA3F412 +:109BB0001FE3001CBACB9DC9C61D33D80BA83EE4D9 +:109BC00096433910719F9C6DD0EE8D59E85D7BB343 +:109BD000BC96FB1DCB96A03C9268A33FC4EB4C9671 +:109BE000CB24388C158631DA3883AE1F2E23EE1441 +:109BF0008386EFFEC0EE170CA8B42ECDC57DF14EC6 +:109C00003792DA056EAE77CAA315AAC7245BD418BB +:109C10007ACFA0D51BF0365242CFCB713F23DDF770 +:109C2000249403C9A91FAC98C170D6A490DDD56A4D +:109C3000EB887DE66A7CCD45F9D17A738D6034A1DD +:109C40001FBB23D5347237EA3F6435B9085EE2B9E9 +:109C5000D86FAEB6DF1D32BF47989729FE50C47B40 +:109C600019C1C73A77229367DD8FF87BA6507F47EB +:109C700000B473CA91725913AFC6D0FBB0FE18E29C +:109C8000ADEC3C6CBF0D14FF88B6BEBA4A4A083F23 +:109C90000FAD9B9046F7D20DA23EBF5C62F740B27B +:109CA00033139D8B7E1F48E732A943E95C38DF39C7 +:109CB00032C26F44F1CB6A90429F995DF534996846 +:109CC0004BCFB4A82B087CF42A0126E79601BDD718 +:109CD00030BB4AB530DCEFFDDB0F8F54217DACB7D4 +:109CE00085DD573AED3435ADC041765A9DB4A63D79 +:109CF000C24EF6FE6DCF3B63687E6F630ED9E5A45E +:109D00006F2F8DB893C6A526B3F1937C67CEFC86E2 +:109D1000EAD7DFC6DA25367EBC83EE2BB221C4FC3F +:109D200003FC2D96E1DC6D9B95E688B08B5F6B762E +:109D3000B5AC407DCE8DADDC1BF16F0DFB31B9F7BD +:109D4000AD5EB2D7BA7ECC0C6123AA94ECAA4ED3F6 +:109D50008758679766B7BBB4F5C0E8E84FF35B6513 +:109D60008E6BFF4689E15A49D91D1FF95EE8A0862E +:109D7000C396381BF74FD54997E89C55195E93E475 +:109D8000881C27B375CD161BB3EF1673A197ECB7DC +:109D9000CA7AABC2EE7BB8DF2DB8DF9B6E235BAF18 +:109DA0002E91E74BC70C1E07E9F1C9026F4209CE9D +:109DB0003FA170BE557B305EA27BDCCAA4443FB29B +:109DC0003049F33F2D038CAB23F3E7A31A7F4735CC +:109DD000FFD132E07EA637A1C716F33EA617A5F73E +:109DE000CD2E99E905FD31E9C117E722FE5B522D21 +:109DF0000C972DA92676DF6CA996B93C6C1616C770 +:109E000030CE315C4C4A35327FBDCBEDD0BD8F13A7 +:109E1000FA6D956B8E707F6561F7F93F2F4BBA44F1 +:109E20007A51149B9DCE7FCCD09E47FE6197BB1785 +:109E3000E3533678D220A24E3727ECAFD260CC1550 +:109E4000FD958970FCCFFA2B9C57AEA07DFE4DF896 +:109E5000ABABF829FA51C674E387343F17ED6FC4F2 +:109E6000BC7F97FDCE89B25FF15CC43321D7FFEB95 +:109E7000A411D5827FE461ED3D66261FF3637280F5 +:109E8000643237433D45753A589F76E006E46F21CA +:109E9000DF124E489EE0878427B42FD2EBC29A454A +:109EA00053A9CEB731B9CC5E84CF37D64B2EFE5EE8 +:109EB00004B61871FD3BB5790B73EF194CEBDD5B04 +:109EC000C2DFDF7A4FDACB1270DCD18C199EB5C9B4 +:109ED000D41A81F0B7EF3B997D1751D01E74DBC8BF +:109EE000AEFCFC7B08812FEF596319C5D32AB03F24 +:109EF0004879CCB184D5E534BFEE67123BC709A9D8 +:109F0000E6A097F8439AFC47DD7DF10974299AD0C1 +:109F1000EF8F1594174CF8AF145607390A3541E204 +:109F2000D7BF4566F8AC53E0401FC2AB94C8FCCE27 +:109F30002125F88E13FB0FDD9744151E5868840306 +:109F400006C4C7A4126E57732DD666C221C9C58236 +:109F5000CFE7A17E4DBD98BEA16F36254DBC6ED416 +:109F60006640646653DD86E3A1A484FB1D5CCF924A +:109F700044F502794F1EBDBF167ECA9898CBEA42BF +:109F80005FEC5E3086EC5349B9D94BE73BB7E7EE5F +:109F90003124879B4AB85FD9BCA5D1C3F0B2FB611D +:109FA0003F9DBB97C1C1EB459B367E29A33EAAF7D7 +:109FB0001401F953B3C4F38AABAD3B87D6C5F99B03 +:109FC000EB715DF91AD6DDAA7C1289E3BA27622CFF +:109FD000D22880BB1E8B7AAED517ABFCFAE773B7DD +:109FE000E8E91F697201B9D2D6DD7B16D1AEFE68F1 +:109FF000EDFA0311EFC3969758933F1D86BF8C85EA +:10A00000B1AC7E7E95F9177DFEF50714DA8FDB097A +:10A01000B8A2EB93ABECE4672F201E79BCAFB11074 +:10A020007D34C3009BBBC9E3433E54349ACEB02871 +:10A03000BB1376B65FABF79DC0F84379F13E9363EF +:10A0400025F9D77DB1FD243FF3A74D49F41E7E8B42 +:10A0500086AB7D269E4723630533313EECA3BCDAF5 +:10A060004AFD5CEFBF3D9B5D40E7DBDB915D303F30 +:10A07000322F9643CF8D657E9ADB255E23CA5FE93A +:10A08000460E4E2D2E093E45FE2EFCC3A31ADF02BE +:10A09000AFD1F39F2DE1F132E45B0D1F0FEA5A2798 +:10A0A00017DF3199931D3ABBCD2C2C6E28C90BDBE1 +:10A0B00005EC9F0D4EBA3FADC961F5C16735FDA3F3 +:10A0C000ED96A9AC8EEA498BACB71E2E34E8F87E2B +:10A0D000B4D38F5DDFFDE570A1FEFEF2B076FE4EDB +:10A0E000BE2E21857890B5F7BB95F45D12DAE94173 +:10A0F0008DBFB2788387E2ED94C79B9F66F1E4DE63 +:10A10000986C8A27E566B863BA95BEB36A1E541B7D +:10A1100021B7839ABCA6FC278FD778BF632DADD318 +:10A12000600DF75716F3798216E714FC1D2EB473F1 +:10A13000FB58930480F7F092B8BFBF1244392FAC9C +:10A1400037DBCDC8E7275447227FF606CF5BCEE347 +:10A1500079987FB1386C745FFCE4500EC3EFF2362F +:10A16000F9B819EDF8C0C3DCDF2FD8C9FD3D55881B +:10A170002BD0CF2FD6E2C192C724BF19FDDB62F2EC +:10A18000EF2319CDE62DFC085CCD386FE11F6597F4 +:10A1900083C605941391764CD75E5A775193146811 +:10A1A00096E87B367D7F356CF992FCE6F2A6A8E74F +:10A1B00035933FA338520DC61391F1EF18FDD2A786 +:10A1C000ABDDA37D30BD7F5E12CFEDDF05AEEBB121 +:10A1D0007F2BA8174A22E439DFA8D5EF8DCD29B708 +:10A1E00051FE7828299BEEF1687F967C16EFD76A9E +:10A1F00075023EFEAC0F113F04FDA96F316BC7EF36 +:10A200007C584E77501DFEF84313707EFBE70657CF +:10A2100023D0B81A16DCBF389BCBEE995FA0DDF0D7 +:10A2200060BF4EBBCF04583B71678B9C0EE49F3FD1 +:10A230008E63DF2745D5E92FD498997E2F9C356A08 +:10A24000F710FD7707288054AAE3EF7B5761EF01F1 +:10A2500084DC4EFF80FB2781EB09DA7A8BB4EF0CAC +:10A260005A9E4BDA339E701367B3539E7E7A87CC27 +:10A27000F63969B13D43F59893DB66F606B4C3053C +:10A280004ABBC9857CB9DE989E4075C8BFE2B866F6 +:10A2900026AF804CF1787C39CCA479E39B8DE0C06B +:10A2A000797F35BA24C2C1179F00D4237D86DE177B +:10A2B000E0B805AFF17C125A8C0D839C61BEDCF9CD +:10A2C000DA3134F95694727FF8D9B657A6D1F853DB +:10A2D000DB153BF1F3C57685CD5F8AB83520BE4EE0 +:10A2E000EEE0EF0D97EE910231D87F6A87C4F0B9A6 +:10A2F00014F16941392CBF47514DB6AEF876D33CC5 +:10A300001A873825FC0B9C2F550365EC3EA1E1DA3A +:10A3100082FF2E63CA92084D0FDA91FFBB77FC7360 +:10A32000788EC67169A986DF6CC826FC9EAFB9C558 +:10A33000D61C21879EF07B16E30EE14E3C4FDAE9F6 +:10A3400094D2D9AA7EE627FCC59045DF13D6992082 +:10A35000CB48FA35C4BAC82F5C8C491849F9D06A81 +:10A360000B6F57C52634527B31A67F80F85D25DB05 +:10A37000DFA4F7B8EF953AD93A170D0E85EE013301 +:10A380009343252C55761B5403BD4FAB338B3CDADE +:10A3900042380D6A72F5607E9E84F2F849A9A8439E +:10A3A00001C371AD9DF797CA5626F7F3B350EE3847 +:10A3B000DFE81FFA7801DD47DA1408D07CE8CC6FBB +:10A3C00025568700878DC67BDA64D84CFBA93C7F75 +:10A3D0007680652DE9E516F267741F4833802342C5 +:10A3E000FE318E587044C8F903F0D8C81FD569E70C +:10A3F00007BF1AA4BC7696C6775C562FDDF859D6EF +:10A40000850C0FF1AEBEBA75C1CBF31607FEA3FDE6 +:10A41000A7D133E4FF2695FBBB5B66617FC43A1B83 +:10A4200063B87C95822F99FC3C1A5E94027DFEE312 +:10A43000C9283B45F2C7F37F7225BCC496215EE272 +:10A44000F097A130F432AFB370BF9F22EE3535E004 +:10A4500089889B8F96F2FBCCA23207D3A79C6360BE +:10A46000F127A440FFD12C0EDAFBD1F8E971BDBE73 +:10A4700076A08E7E5EFAEE7C7AFF367D42AFFB32AE +:10A480003153FE65E91F399DD36BD740A49F7DF3FF +:10A490007D4E8FEA95A720BD56FA607E09FA99177E +:10A4A0004AD59F95A6D03E5A9CD2D6C5E78152DCAC +:10A4B0007FDE78EF2FA8AD365937519E786E707BCE +:10A4C0007FCA33C5F8D01BE9FDE81ED549237FAE0E +:10A4D000E14483C67FF7ED9152F579BEAFFEF9F204 +:10A4E00038D4F3286A11D728EFDA5D7F4970E0FA93 +:10A4F0004B485E7D488FF9ECDEB552C32578C733F3 +:10A500009CDEA7E9E4331FD4DC407636AD79307D9C +:10A510005F5566F0EE2965FEA82EA316E5FDF9CB82 +:10A5200066D7541C7732F04A02F9EB655A3D092E82 +:10A53000C9CD85D85F3E704823E1F5EC4B1B33AAAB +:10A54000F01C074A79FE70D6C9F3E1B32F99B571B3 +:10A55000B3B7D3BB7A8C476FD2FA9D7168FB2D8C51 +:10A56000CF1BAD187F308EFF7802CF0BF01EEA8F25 +:10A57000EFC55A48C0E70AB6327BEF18E0F756EC51 +:10A580004FA078E5B8338DD7AB1152E85F6FD2702A +:10A590007E93B1B945A27B9DCB66A4F34EE3C7A5DC +:10A5A0007EBF11D7315840A1F30C856D76C2197268 +:10A5B000BDED7252D86E6BDFE0765B2BF13CA0F6FE +:10A5C00003D9E5277969FE64799BC2F284687FFB31 +:10A5D0009985FB9765104C20BD2FDE7627B32FE1C0 +:10A5E000673BEDC96EBC36FFBACD7D4DFEF54BE144 +:10A5F0005F47C3E8EBCC0F2E12AE843E4AE54A8794 +:10A6000091CE9B9295CDF325EED716C5F0F309FDBB +:10A61000D4FE2C3395C58FA6DEAC6EBF48E319B6C9 +:10A6200025317D3EE89481F2898ADDE9E0C0474B1F +:10A63000764BEC7BC3A9BB93189DD0D187D115BFB6 +:10A640004C2D8684B05E2B7E3984D1A79E793B97B2 +:10A65000EE5FA80F26FFF318E7CC10E647F8598CF9 +:10A66000C28F1760FFAD9A5FDDA0F93D713ECA0F42 +:10A67000E9BBC9F36A3CFB7ED496AFF79F89AADE9B +:10A680007F2695EBFD638A47EF1753670DD4F5F7E7 +:10A69000F17E4FD79FBE385B47F7AB19AF1B3F60CA +:10A6A00075B18E76FABFAF1B9FB969868E1E543F77 +:10A6B00047377EC8D6F9BAFEA181A5BAFE613B6ACA +:10A6C00075F488A61FEAC68FDABD4ED73FBA79B3B4 +:10A6D000AE3FA7ED111D9D177C52377EEC91465D74 +:10A6E000FFB8D0AF74FD134EBEACA327B6BFAE1BF0 +:10A6F0005FD8D1AAA38BE06DDD78B7E50F3ABAD465 +:10A70000FE67DDF8C9691FEBFA6F749CD1F54FC97C +:10A71000BAA0A38314F747112EB85D56B8BED5CDA5 +:10A72000AF9CE09D5346EF6561FD20F27FE7DB3E85 +:10A7300036529C51E64990C41281EBBBA7CF2FD370 +:10A74000EC508B5B5F83F576FA3ED54C5F066776FF +:10A750009D2F70EAB1384C540F9FEFFFDD11E6B723 +:10A76000E851EFB03F9BAFD561609372B6D30FE075 +:10A77000F82EFE4DF37B4361BD9DEE7DC2AFF5C467 +:10A780003F59D0A7623DE4F79C82710BED4752F12F +:10A790006C68BF1206CB4AF497D29EDF7DC3F87A6D +:10A7A000CA65B1B0FB68A59DCE2981D7707918D94B +:10A7B000E954A0FAC1F92689D969F43A221FB36194 +:10A7C000383246C82B51B58031425F49E5761D9D30 +:10A7D000E249D38D4F9DE5D0F5F7F166E9FAD3173D +:10A7E000BB7474BF9A7CDDF801AB551DEDF497EB9B +:10A7F000C6676EF2E8E841F5B374E3876CF5EAFAF0 +:10A80000870616EBFA87EDA8D1D1239A56EBC68FAF +:10A81000DAEDD7F58F6EDEA4EBCF69ABD7D179C176 +:10A82000ADBAF1638F0474FDE3423B74FD134E3601 +:10A83000E9E889EDBB75E30B3B9A7574111CD28D69 +:10A84000775B7EAFA34BEDFFAB1B3F39EDB8AEFF9F +:10A8500046C7295DFFB233AE66F67DE36F25F67716 +:10A8600034023F53B2BED48D5392315FA7EF08201C +:10A87000D64579414F79BAC05D85EB1BDDBEABE4AF +:10A880001A664FA1B2812C6E5C34402806E93ABFAB +:10A8900087D5B9ED168744F664F34B0C7F940A57BD +:10A8A000B2FB6D32FBEE87851CE4CF46F69240F595 +:10A8B0003FA793EE117161BBC9B89C73ED76F305A8 +:10A8C000E563181733267B3F2E4BA1FBD64B6574EF +:10A8D0004F596CA967765D2A0FB785309EBD1BD393 +:10A8E0007DBDE9460BCA3162BF4331F519D957F036 +:10A8F0003B375ACEB2F19DEB2A7C5D09CF175997B1 +:10A900007908EF4F46F42FF53EB433BCF83EE2B37E +:10A9100033FA315F1AA37FEA73B076AB2F8BB54F52 +:10A92000FA5CAC7F9B2F9FD14FF95446077CE5AC76 +:10A930006DF479D8F3EDBE598C7EC6E765ED0EDF78 +:10A9400062D6FECA57C3FA9FC7FB3FD12FF8FCACB3 +:10A950006DF26D62CF5FF6D5337AA76F2BA35FF5EB +:10A960000558BBDBB783B5AFFB9A58FF1EDF6E46B9 +:10A97000EFF53533BAD9D7C6E8565F90D1077C4793 +:10A98000187DD017626D9BEF246BDFF2B5B3FEC369 +:10A99000BE0E469FD5EA8A7D276BEF5565ABCAEEA2 +:10A9A00059C5431A0977E2B9BBD0DB77721EFB3E6B +:10A9B0007C37F9AD757123152FAB4FEAFD5CB41EE2 +:10A9C0004E6BEB2BC59836D27B9FBE831BE93BCEEB +:10A9D000B5067E5F5FDBCBD148779741DA3E1B63DC +:10A9E000C11FC3F2589EAF2ED27008C9DC8F8BF7FF +:10A9F0000F8B34DCE7111EB3181E0F5F8F1F17F784 +:10AA0000E37D13BD7974AE85D61A134FE75CECEF86 +:10AA1000062BCCBCFED37E4876353A7A5EB75AFB1D +:10AA2000CEB9C7FEBDA732283E967F277B490EEFE1 +:10AA30002AF1B3A8FE317932CF13274F36E8DA294D +:10AA4000933C65C4CFA2BD3F6071B1F29E41369286 +:10AA5000F34DF4E907DAEF747028EC7B39BC273842 +:10AA6000E99E891751A26F033F6B874CF4DE44F3D4 +:10AA70006763424D74488267EE95E83C1CFFD17CC9 +:10AA8000DCA6C9FDB6C9065DBB6492E7365AE7AEDF +:10AA9000F1936F37E0A3CD850EEDFBD6F6A7888F37 +:10AAA000EAFEDE63E999E1FA42250415FEDE4ECBAB +:10AAB0003FB5BA29E6A7ACEE5029C5BAE8BEF060AA +:10AAC00091F61EF12FF1EC9EFA9116F73ED2FCD9C9 +:10AAD000F91A85E1A2F22F7101AA3F9CAFF9AB955B +:10AAE000AE91223ECEC37B0DBD3FAFC496DEC354B4 +:10AAF000525117D7AB5C23B1EFC77BF293E2BD4C49 +:10AB00005901AF675462DECBEE4BC9FCFFB971E966 +:10AB10008D54177D72A277D564F24FE364BF89FE2E +:10AB20005ED41E184CF5C58D068E07FF5B32F3DB35 +:10AB300046BB4795A8EEBA2D71347B8F8BB8A1EF39 +:10AB40005FF769F213B858A17D472FF08078ABA367 +:10AB5000F5BF786D6C16E1A27AEF38F6BEBBCEC0B9 +:10AB6000FF6E47AC0F548AC6FD64DBF086CD5C7F78 +:10AB7000EC9CEDE3E203F4BD6F8B0CAB5FEAAE2E11 +:10AB8000AFE1EADD3485D5D9EA34FB13FD8D1A7FB8 +:10AB90008D9ADE2B5A0FF5A3BF535AD1A6B8A87EC3 +:10ABA0000CB9A1E19175834E1CAFFEC5FD3744E0A1 +:10ABB000BC7AF7715E9F87D0F019F19C5DD2FB06DD +:10ABC000CD5EC53E0AE565144C928D673BEF6D0383 +:10ABD000494E3C1E083CCAA6786F8335F21C9DF690 +:10ABE000B083D943C26A660F88879564EC2114212B +:10ABF000D559BC3FB79B0877F3C1C5DABBC0C3DAF0 +:10AC0000450813C2FF1208B0F66E083D481F0279CE +:10AC1000FC55FD29DE54437B491ACAF1964D6BDF82 +:10AC20004C435666D63F5CDA07F9BE759B53E98BF9 +:10AC3000EDF4EDF76CA0CF0AD19E5EA3FDE73C5F7B +:10AC4000B481EABA684F9FD23D699A76CF471CAA71 +:10AC500032E24A4EB0B07AD85D8F70BFB94F93EFF1 +:10AC60009249EA3ED277E53A6078697FC3CCF4D75F +:10AC7000694FF9771F4B37503E08EC3BD1736F0C8F +:10AC80000DACC5FEA5C0E37438CFE4F159D8C16955 +:10AC900085E3E1F4AF25F65DFC6909E767F78C7F92 +:10ACA000916FA2BD72FB3B1ACFECE5A281E709D000 +:10ACB000DF9B969D49F2F23F4875E5D386C09884A4 +:10ACC0004C16AFFF44E7578ABD5B4653DEFF82E474 +:10ACD000AA435E4E2706FAD75875FE1F2EC79193DA +:10ACE000E2EB3DA4F0FA4E747E2BCE11CDA7D90431 +:10ACF0007E7A7FDA99D7E41FFC86F28EAEFC7AD397 +:10AD0000E8C5651DA92293F8F238BAE3637DD4FE45 +:10AD1000625FC9CED76DFB3BAF6FFBFB01FBEEE67D +:10AD20006AF550732CE74FC4A7AE7C717D99CBB9FF +:10AD30007F11FCA103C9B2E33E4663AC8BECF8F78C +:10AD400031BC1E25EA4CE29E3E5AF69ACA53A89F91 +:10AD5000D7A9DA9C9FDDC0E2EBA5BA0CFE7D61337A +:10AD6000CBCBC43D669AB0AB7C4567571055E781A5 +:10AD700082EEEF3F1E8B5D213B9849F12493EE4319 +:10AD80001F09F9E9EE43FF0F3331389FB04000004F +:10AD900000000000000000001F8B08000000000001 +:10ADA000000BBBC3C6C0F0A31E8145D851F9E8B85B +:10ADB0001A4D7E23337EF584F01AA0FEE540BC08D0 +:10ADC00088E702F10C209E0CC47D40DC09C46B585E +:10ADD00081F240BC0888E702F10C209E0CC47D4043 +:10ADE000DCC98A30C703E88F2036FC763D66C5147F +:10ADF0008BE544B0CF12F0FB281EFEF8313703C3B9 +:10AE00003D1E043F981755FE0937826D2348995D12 +:10AE1000BE40FD00DD47E5C68003000000000000E5 +:10AE20001F8B080000000000000BDD7D0B7C54D55B +:10AE30009DF0B98F79666632793279DF3C20010264 +:10AE40000C216240A8574044A575446BD175EBF0C6 +:10AE500050C33B22AD69CB6E2624243C0246458B71 +:10AE6000807440455BA11B1495BAC10E8FD568B1A3 +:10AE70001B2C3E572B5A3F1715216215EBE757BF86 +:10AE8000FFFF7FCECDDC7B9300B5BBDFEFF72DD48A +:10AE90001ECEBDE79EC7FFFDBA775C7E89A5173140 +:10AEA000F60DFEB998B15607DB2B8D62CCED0E770F +:10AEB000CD62D087FFD838C65AB0CD81FFE2B2CA82 +:10AEC000C632E661FC8F922FBFEB0A3076A3536344 +:10AED0002C0B2E84D269BCC357C7A27069E74F946C +:10AEE000991D953852672C9BB1227C10AE1FDC7DDA +:10AEF000CB9BE5D58C6D6F2E915DD02F65126317BE +:10AF000030963B2F734D45260C5925330586AED818 +:10AF10009D9D7B0C9EDF561CCE0DD23C4CC6798A83 +:10AF2000DD7C1EC6627C5EC6FBDB9B67A4321FF421 +:10AF3000DB5A3E554626CF65B48363324BB8F9DE03 +:10AF4000BF61F89CFAE76315A25FCC5835FE03CFCA +:10AF5000C1A6303C6791187BE8ED5B69BF0FC2BEAC +:10AF60005CACEF3E72E795BD58519DDCB7B10FDC8C +:10AF70009F3E36B9BFBF753F743EDACF4C3AA7D279 +:10AF80007B6EED350DE0343628B3351AB58487B6BF +:10AF900006ADA3CCC158B97A810240656D6AC21D65 +:10AFA000C47DC4F423A1B1849ADE3F99D09F28F6D2 +:10AFB00035312CC75C002F7F189E37EDC7D8E7AA24 +:10AFC00006C06039D041839BDA24BD844311987F49 +:10AFD0009CEF96E90CD66FF9A7BA6308C4A634A70C +:10AFE000B602F63F2638F543BCFE62C15437E29103 +:10AFF000BDAFBE87E7AB80BFDF9430D6ACD6A7E34A +:10B00000FEC6327EDD38B74783BE691F636CF72703 +:10B01000FA9CB36498D759A8872238EF16D37D9845 +:10B020007762F0BA05129C87FDD9344F49129EBF52 +:10B030006D08D239F63754301D10BA03FA1AB4FB32 +:10B04000FF0FD0AB2F89DF5C41AF4BE7C9441C0F2A +:10B05000BCAE6D47526DC7FF83790E00ACF17AEC40 +:10B0600025167F98F055F7FA2CC0CBD69F64571160 +:10B070005E96015E601F5BA5E0FB34EE474EED611E +:10B080007874871A9DC1705C7DBA1C93FAE2674898 +:10B09000BD1C1B04E71BB30CE03792FAEF9643BBD1 +:10B0A000DFC1F4083CB7E901165F01CF0DF9329B0F +:10B0B0006963E0B95A803FDC7FD1F1C8C72EB8FF81 +:10B0C00040BB5373494978EBF017CF3FBEA8FBF262 +:10B0D00018DC7FF80195217EEC70B7D385FEB5159D +:10B0E0000F13EB399DF4C1473BC7471F3C6C383BFE +:10B0F0001E8C765D439CFD0960D9D410227CAC6F18 +:10B10000D0A85D8BF8013CADC2A1E3FAF24F9BCC15 +:10B110006A115F6D5E56FB38E24DABEA779CD13227 +:10B12000D64872A609F1964BDBD1590D632A32FE3F +:10B1300078EA27BC65B0BEA3B7AFB37C985FEAEDF1 +:10B14000C7189C23B5BAF7F9580A8C6FF2F0FE7F46 +:10B15000C436E9B1FC64FF63768F1E9BD0F7FE7A9C +:10B16000478FAE8C66EC37B11BF54A8F657E1DE7C5 +:10B1700037EFCF3DA1EF7CEB3D7CFC5FD99DD46FD9 +:10B18000953A422878A80DC321E0B92935382FF423 +:10B1900083406FE9D1D8A171C9755E67D1580CE0C1 +:10B1A00075138B1C40F8B74AF18348D24D8E633338 +:10B1B00019ECAB0B9F877953837CDDAED86ABD4910 +:10B1C0004DC2E50FAC3986E730E4AF22E856E970AE +:10B1D000C650EEAED83D555780CE943C162479A982 +:10B1E000A593FE90433A433960E04309AA1FF4D285 +:10B1F0000B33D185183F301EF9B8DEFD3BE24D0A16 +:10B20000ECFF00DE82FEA440CDBF4F80F55DDD8EF9 +:10B2100030EA1705E10AA4A17CADB0F1E9C4A7B4F6 +:10B22000BFB5698CE4E73348EC4017AA2F97C5CD2A +:10B23000FB51EB429111C97961BDE338CE80D7B99A +:10B24000D677E2FAAC9FF5D528ADDF2AD6B7AFBBEB +:10B25000DE139D89726DD2F89AAB18CD3358760102 +:10B260009F018B4DC37946485C5F0670BEAAE4FE21 +:10B270008D79D70203AF816E6A8D755E633E800B58 +:10B2800043F910C07DA527E781F3EA4A75F2796397 +:10B290005EFB3C00BF50C47F36FC7F41F328A30017 +:10B2A000FF9A09FF95807FDF79E0FFBF69DECF80DD +:10B2B00086510E2F1BE18CC7F8F919C2B30F1CC5BC +:10B2C000F9ECE76E95F4D726148B7DA527F1F919D3 +:10B2D0003E97955CBF0F1DB1F055B8EEDA230EB660 +:10B2E000E62CEB1ACFDBD75DF6D2132156D2775D71 +:10B2F000FB7EEDEB167E3994E9198C5522DF03FFB6 +:10B30000AFB8DFC910FFADED2C8EF86FEDBA94EC3D +:10B3100094AD725D17D26BEC65077B18A6DC6AC82A +:10B32000D38E6A7A6E87BF2E34A3726079FA00D802 +:10B33000073120F427A08D97239C18D97D05B52AC5 +:10B34000E931B0137E5789F3DF258F7E98D1F577E9 +:10B3500007013E5B3DE13F4C375D2F34C6FBF59462 +:10B3600011D5C9EBD547A67867F9E83E3D67AC5FD4 +:10B37000B84C6631D379CB9CF159917EF6B95C9289 +:10B38000093FCF08FDB243E89732AF3E1BE1915B26 +:10B39000E8D4B6033C1EBAEBD5DCD9A6E7EF157CA2 +:10B3A000F600EAA7C1C0DF4F7E20A1FC2A5C764CE4 +:10B3B00042B83DE3E8DE1F001EAE93985E07FB280F +:10B3C0003C11BD01E56D83B497B960BDF27AE883A5 +:10B3D0003CAE59FF5BF63CF519C9CFCD8D47499E70 +:10B3E000B6BEF46013AEBFEC4318054B8D57E34A6D +:10B3F0001DC13DB35FF9B7EB43F7CC38DC1FBFA7E6 +:10B40000A5FB1AD4AB2C6EA19B8B8E5BF1FF0C9E1F +:10B41000B31CCF1BA2362A310B7F918A017CE72215 +:10B420007F0590BF5EBD6101C2E30E4672ABB03EC8 +:10B43000DE84747BD1711646F966DF4FEE322B9FA6 +:10B44000C179269BCFF35F758E9B987E9F74C1C098 +:10B45000F3F5D50BD1AD387EBC90BB85F51D4AB454 +:10B46000F2FCCF3DD0FCF6F3222FE3BE61BD9D522E +:10B4700056DFF5FEBBE001F31E2439F677CE5B887C +:10B48000F39AEC3BB46CB93C49A85CBE1B7D9D6152 +:10B49000DF5DC8A2686F212D903F887F6069353FCE +:10B4A000FC20C2A25B72723DAAB17694D7373AA350 +:10B4B000DD84B7E9CCE237BA831186F2CC5D5291D4 +:10B4C0004A78F165F66BB7B53444D2D5C1A6BE83D0 +:10B4D000097F929FA32587C53350987E3D2734C3AB +:10B4E0009F1C9723E49DD1DF54C00CBBDEB25F9854 +:10B4F000E7FE5BA0EF088E1D83FAEE38EE3FABEF60 +:10B500007EE11CC725B37C0FC618EE7BD3BC217C23 +:10B51000FF73FB877F8EFB9A74352349970448A0FD +:10B52000BF5431EFDA10C0093AA995DCAE36FCED14 +:10B530003539CE15004356343DA28127C21E7445CD +:10B54000BFC4F503D3DA13A8C25227F0F59B1DFC44 +:10B550005C972A87DDEFA11D1C2E499D8D725296A6 +:10B560002C7836DACD209F119E77811FA7822D7708 +:10B57000E6ED72DAFF40F47E4F833BCD0CFF7B1685 +:10B58000AAD3E230FE9EE98F1F990A475E99595669 +:10B59000453AA95652F15C1E89F35550E6FED1E6B4 +:10B5A000453FA67D02FC8232ECC791C9F7CD588495 +:10B5B000A15D857F54133C345DD7D1CF37E0510472 +:10B5C000E09280CEFD31164E3082438E8C7008C6DC +:10B5D000120AACE3A9EEB9045B030E40B7EE52D8F1 +:10B5E000D7BA170693FF65ECFB1F642EFF593EB7D1 +:10B5F00017981A267D3990FC580F70AA7410FD4BCD +:10B60000386E95E81BE3DE94A2C3F03C39355E92B8 +:10B610001F3973E3129EEB7EC9A0CF10C50F9AC5E8 +:10B62000B9D68FF712DD351704B729603F5C80FB70 +:10B6300041BED822D9E9EC02392B091F83CE726AA8 +:10B64000742403F65B47741CAEAB94D505917F9CC4 +:10B6500073E3D4AE94C4F963AC1BE70B4A2CF9072F +:10B66000D60D84B4ED6B60DDCB055E82152DB7A1E0 +:10B67000BF969AAF129C83C76691FFE87CEB72F28B +:10B68000D7E13AC5137274F074018EB921B61FF177 +:10B69000BCDB11BD1CD70F0C6D467400DEF4981393 +:10B6A000E65DE7D019FAF1EA84A88EF180CD8BC669 +:10B6B000B25926BABA419C5701B73BEE4BE2FD4E58 +:10B6C00085D3CBDACAD3EE5B7D38CE4BFBD358B5EE +:10B6D0008EF31521DA01FF6A12FFD7E3FAEE09C7EC +:10B6E000687D4FB047C2FD01DD0F4238AD737487EE +:10B6F000F0B9758B9C24F7001E47892E65BE0EFCA1 +:10B70000A7217CDC32DF43A9ECA07D79101E787E76 +:10B7100054D6B027C7D41893615D9FCEC2F898075E +:10B72000E11348C24799D6AECB0057FF5C16D661ED +:10B730008012EA499471F82C22F880438F3252F536 +:10B74000B533A4CF7BD4BA77FE09E6BBA74B09C7B4 +:10B7500098890E5998FC0B034E99D381DF2CF298EF +:10B76000D3638A9067AEFC761635D9B9CE10A70F91 +:10B770003B1D3F2745FF5936F1BFBBA42B647EAE6E +:10B78000578E565E4BF3B68D6ED1105F407014F736 +:10B790006833F6D0CB172BB8BC157610ABE4F2CEDD +:10B7A00019AAA3F59DF58AF67E8669FE308F7F394A +:10B7B000DD09A20B5FFB7E86763BB045F8619A39C6 +:10B7C000CAAEF523DDF3F8D763D0F2F8439CD67107 +:10B7D000695E9630E93B67BD93E637F831E72D1790 +:10B7E000F90399420FBD294536133F1A7C68C88377 +:10B7F000C8B51CCED33C74AE8745FCAC2FDFF3F349 +:10B800009D81B9BB090E512F8376C786D95E3CC78F +:10B810008E8D3352CDF0B3B7F7837C4880E1B00D05 +:10B82000E42AB69B1B82D4F6CA5D1157DA22E48360 +:10B8300071DDAB70B9F4B290D73BDC112FC5EB0EC4 +:10B840005E7FC5500071D951258CB221EFAE8EB408 +:10B85000B3AD9FBF50B6C08B29379E75BFF56F1D26 +:10B86000493B641A7F50F6677E9002FFB8905DF8FE +:10B870008D72EEE7CF3474A71D72FCFD70D982F88B +:10B880000363CCDB747D23C62358E262929B25427E +:10B8900074E560E007E8A66C198B6B38F6EB6FF87F +:10B8A000FDDE38A8EE9B057D2449ECEF58357B0D75 +:10B8B000CABB82571426033D0D16728D6DE0F12729 +:10B8C00037FCC5F813D97F306FE95C164FC0B8D28A +:10B8D000766B9C2B87B57D8A72BDC016E7CA41FE88 +:10B8E0001F89F74DE3E17A3E28E59AAABF1F0F7F33 +:10B8F000463C0CFF7F8F87CD6A8727687A3E4F6270 +:10B9000011A4D7BC45EF4B667FC8A370FDC1EA7D8B +:10B91000EC4FA6785E9E94C841B9B96DA13C0DE587 +:10B92000EE668003C519328FFD1A1F39F3C7B5398A +:10B930006467657FF01D9487D94A0AD77FD318B70B +:10B940001B9855DE801ECC56B292F6C2B6E619247C +:10B95000F7E0CF518C936A02DF9BBF6E929C80C749 +:10B96000C1F52CBC02FA9AC0F7940D75FB1D70BD91 +:10B970006419A3F80F8B59F15F3297E37F701BA70F +:10B98000AB827A139EE9FFC32B9CB0DF4160FE6E51 +:10B99000825ED9062B7D0C127A60908D3E34A08396 +:10B9A0000CA083B2F6E81A9C3FE7A8C26D65DBFAEB +:10B9B00083B58ECB113E6500A738E96AD33C0AD225 +:10B9C000577805E2C34E9783902E47F65DF7EFA5B3 +:10B9D000BBC98A95FF3F67876F7814F969E5CE2365 +:10B9E0004368544436DB4B06DDF9987EB982788C87 +:10B9F000F46FBF27E56B4CD8BF97911C36F22A979E +:10BA00002C757B316EB3C5C95E2CC738C0AB0A43F9 +:10BA1000FDB065A937D7ACD7E2429EC73DBC9DAD0E +:10BA200070791955B8FE9E2BFA5B02ACD62C5FEDEF +:10BA3000F2DDF0672ABEF4B14486B9EFB4F555964D +:10BA40001863EE07A8DF9CC348EFEC14AD317F8B81 +:10BA50003FC2787E6AAE8CF2C9C8D31C4CE3798FA2 +:10BA6000665F552AA3FB51D99CC769F6950C62669F +:10BA7000BD2CF21103C1B155E6E76BC5F80CB43B20 +:10BA80001D7A280DE74F9B1AC2BC83D2913D1AF94B +:10BA9000EB9F855EC158203AA52B95271B578081C7 +:10BAA0007217D31B90AFF039A4AF9D6960A76934BA +:10BAB0004E8FF703B7F98A97C3AD42FDCA1CD7076B +:10BAC000CC07494E097ABD4589AE433A884D620993 +:10BAD00009F1388CC59B90AEEBA2AC374E9845E38C +:10BAE000EEC6F5615C0CEDFADE71D1A8F0077AC7FD +:10BAF000FD5C8CD32DE3227DC66D11EB32CBBA7A7F +:10BB00009F75B789F9C89EEC1D17EE33DF0E315FC4 +:10BB10008C99E7D3FACCF798B13FCBB8609F711DF1 +:10BB2000621CB3ACCBACEBF6DECF768AFB31F24FC6 +:10BB30005615B7B849EEC5675AE8CA8EA703C5407F +:10BB40006730EE10B4B3613FB7BFE0A03CE57E7153 +:10BB5000DDA03F637C53035BB5D081F4C63ACA4095 +:10BB60007936F9B6BB91DF8CEBBDE37CDB83FD5FFF +:10BB7000BF7B80F1778BF1D63CA1BD6D12799B26FE +:10BB80001167B4DF1FAB727E6EA9E0FAC47EFF12AC +:10BB9000719FA931B29F3D15ACA3D224CFFE7F394E +:10BBA0006795CAF5694BC5ECF649E07A7CDEF45539 +:10BBB000A31BE4796BD9D208F65F897DD538A5F847 +:10BBC0007FDE39D355CF0AF3399F619E1553A4FF09 +:10BBD00079E71CD53CC872CE5FC4069DF59CAB6C62 +:10BBE000FE81D18E57B9FFBCD2110BA19E59557C55 +:10BBF0001DF973AB0AB87C8FA86F3636FA7048749B +:10BC0000A28AE3B20C3F4623FD72AEE79C43D508FF +:10BC1000F2596B993CCDAC075E177AC468DF40E5FA +:10BC200082FED96095174B143BE383C57930FEF64D +:10BC30000538F8A4E7C5F932546B3F8C7D13DFC299 +:10BC40003F48AF609AF19BD2BE7A655396D0B75900 +:10BC5000567DBBD2CF14B3BE4D35F4EDBC1D1ED402 +:10BC6000B70777EF78A114F6D77C586164FFD9F451 +:10BC7000EEFEDD53BBB07E62539743D47370BBC4FA +:10BC800098E76EB097510FAF14FA187A56BD9E051B +:10BC9000F3C3F3A7C1BEC3DB205F07A17C6D11F422 +:10BCA000D132007D7C2DE4562BCCAF95E3FC6E6A3F +:10BCB000F7413F4A76B99BDAED609F63FBAB861094 +:10BCC000B5BB1B3416857177C27EB07DBC214CD7C5 +:10BCD0007FD15043FD75C2BE9F982F537CE53EB483 +:10BCE000F3E1FAA30DAC0DE37C1B1ADC6D18C76BF6 +:10BCF0006A0852FBEB86105D8F3768D46E6CA8A083 +:10BD0000B6BD214CF7D736D4507F8234A35505FCFD +:10BD10004DFC33237B3EF7FE21DBD1D4CACB57C980 +:10BD20005EC85B08FAAF3A79DD38E70469521B3E1A +:10BD300057A2C934AE641528BAFEC7DD85E386690B +:10BD40002AED7BD8A3A09F33FB1D771FD2F5E84CCB +:10BD50003EDFE8438CE282FD8CDB8CF3A566F2F9D2 +:10BD6000522780FDD0FF7C719CAF2AC4E7ABEA026A +:10BD70007BA4FF710FE3B8A2103F6FD172B06FFACE +:10BD80005FF757382E3DBD7B5684FC946393D1F604 +:10BD9000CAAD0DA6635C393DA3FB367E3DD188D785 +:10BDA0005DF9FC7A068E273A0EAF70C075B726AEE5 +:10BDB000E378BADE7100AFFBABC53C4E3EFFBDF38E +:10BDC000383E522704B7BB611FF78B7E6EADB60DB0 +:10BDD000FBE92EBE5E56611D93308F99DFC324E8C8 +:10BDE000E7405F867E8633BE1FCF51309FC9DBE1BF +:10BDF000D17B4B624C027E4CD5F8B8FBA12F23FFC0 +:10BE0000BAE212C6B90A16C038A0FBAC0BBB69DC9B +:10BE10004A9147CBB9B087F2B1FE099A84ACB155CB +:10BE2000E49B72ABE1399867E884D8011409F31CEC +:10BE30004CFF3E3CBFF23646CEF7CBCD8B2761DDC3 +:10BE400042E6042E87D8CA7F9DD40822253D97E775 +:10BE500017D2F3C2AF47D176BDD2391AF39119B9CF +:10BE6000E16358B7C2AEF0523E30232F7C3C8EF2D5 +:10BE7000E72A27F581546341CC8BA64E183AEB2C68 +:10BE80007E8FD17E767832C50B33A6C94CEFA7DE04 +:10BE9000C9689D99D6FC48712D5BE184F35C88E705 +:10BEA000C1F38AF39C68FEE924AC8708D5F27EA131 +:10BEB000E3517E1ECC97C03AE9452C676EB5E93C4C +:10BEC00085ACB8B9DA749E2236F4A1CCE4790AC5FF +:10BED000798293F9793E53F541C17EF4827DFF4525 +:10BEE000F5D63CD14E473C07ED7CA5F6B94DB7C021 +:10BEF000BA4A82C37BA5A37205FA034D594C9552E9 +:10BF0000A9BE84F48EC3CD56E1BA081FCC23BC2D44 +:10BF1000E4552F5EF63A6319FDD4D5196D7A1EAB40 +:10BF2000E3E3DCEFE2B88C5C7EFE8CBDDE18E669F4 +:10BF3000067A2E039FA371BE77CDF3DBCFD7171FF1 +:10BF4000B14627E8D588E34EF95E14CDB5829E62EE +:10BF50009B275D52D6173F9B7E02E71D05ADF02360 +:10BF60000B8DF3027CD3A1FFB9715E036F95CEB345 +:10BF7000EE1BF05AC7C7C179038457825346A5F711 +:10BF8000AC70CA28E270CAA8F4BD6B9EFF6B95EB3B +:10BF9000D773E1B5E927026F228E5BA89EE31C539D +:10BFA000CE8137E31C5304DE8C734C3907DE8C736F +:10BFB0004CB1E2ED7CCF71A738C79D7E810F1F9CED +:10BFC000A3EA2CE7089FE739C2B67384CFF31CE1DC +:10BFD0006F778E5E3E12F870087C18F3F4E1A33C94 +:10BFE0009DFCF5A47CD3B546937C7BDB58374FAFE3 +:10BFF000D86692736A069707CD599C8E9BFD623D69 +:10C0000001B781D7EB79738165BD9EF7D6F6BB5E2C +:10C01000CF478F99D61BF55BBEDEB9FCFF6BD5E829 +:10C020003A87F0FF15B39F5B17B1F8C330EE6E8708 +:10C03000F0FF15B3DF1C8D58FC6118F773314EB754 +:10C040008C8BF419B745ACCB2CEBEA7DD6DD26E61C +:10C050004BC8E6F9C27DE6DB21E68BC9E6F9B43EC2 +:10C06000F33D66ECCF322ED8675C8718C72CEB32D5 +:10C07000EBBA8CDD4671ED1FD9F22EF63638D76952 +:10C0800089F30526382DF5C3EE326B5F65A67E7108 +:10C09000723D633E23AF04F0D770DF2DFEE8EB98CE +:10C0A000023BE2F8D3A4CC1CE8A771F979C4F1F102 +:10C0B0008A18D923B9543FE116731A79A033C532CF +:10C0C000E5CBBC056A1CEB115426935DE8CE74C623 +:10C0D00031BEE9D6C23CEF0E323983F6C1E36A9E27 +:10C0E000B2308FEB8A79002E967C98D11AFB56439A +:10C0F000BC0E4C0DADEAE62DCF53B2F63E79D43FDF +:10C10000221E5D0067AC8336F2A8C63A03C1D794FD +:10C11000A7AFC09AD03B98378C7502694E26A9F01C +:10C12000687D3E8F33FF488E7E8478754EA9BBA90B +:10C1300019FAD2D4FA72F43B42580904FC101C04D8 +:10C14000F60BF2D11C7718F90DF438F95D20274869 +:10C15000CE19EB8D72723EFDCAA1501B4CE1728864 +:10C16000B96339579BE09023C6C1FDDB103F135BD9 +:10C17000D483AB6AA09FCA464B608FDC93E69F3C9A +:10C180000DF0182C15CFE70FF07C29DB8DE3AB9C6D +:10C19000D24115E0102C62A42FC7B51436217E833E +:10C1A000E55C7EB26A6D1BDA271BFF317B34E6D17A +:10C1B00033BE575F8C72A0779EE19C142EC2E7704D +:10C1C000BD28D8ED6393F57A0FBAA201E705C97AC5 +:10C1D00005C567D42B70B9172B70125C2E552A53E6 +:10C1E000DF33C1639053B2D0E7CA065EAF60F41D7F +:10C1F000EEDFA7BD3F06FCA7596EA2AFD06C671C4F +:10C20000EDF0FB647DAA338BF611B7EDA3E8ACFB30 +:10C21000C872523ED2BE8F614E6BFD448BA89718F8 +:10C22000886E5A0B7F9A1325F870FF76E52C37C974 +:10C2300023637F61A7F0837DB11CE2FB20B4FEE4A1 +:10C24000F8F6C9FF2CE1F327A5E8583A4728AA5A7F +:10C25000EA1F7D51669EBF09CE2F99E637AEB31017 +:10C260009FBFB73F8DF755C107C1C93752FC439DEA +:10C27000E2A6BA0536D35AE7A206EB8C7A8D1C6784 +:10C28000567FF51AF941CA13302EF77BE3967FF4F7 +:10C29000935C3BE3098CC4628E7A376FEFF006B68D +:10C2A000637BC65318C77CC919B9BD4B5292EF8B3B +:10C2B000781CB1182B263ED571CE733D6F5F0F14DD +:10C2C000CC28DCD7EAB2F6089ECFA1C27C1A5DB7B3 +:10C2D000E4A58DBCB6915B77BAA3EE628C9783FF21 +:10C2E0001E83F14AFB688A0BF7E6A731998FF22A81 +:10C2F000C41E127542CC4C57EE326BBEC591EFB5E1 +:10C30000C85D363326E17A863C37F2D7AA0F989774 +:10C31000E0A90B3DC1E5392EC1E31F3FB3E801D5CC +:10C32000C7129E009EAFCA92F737E43A962772B9B9 +:10C33000FEB3F3D21F7DD6BBD6BACFF37ECEA76AAB +:10C340001F98F27F033FA7B20F4C79ADF54E4674AC +:10C35000B960D7E75B6380B7138F7FBC3506705831 +:10C36000F8D7CFB6FE0CED91673D41940B4B7EF5AF +:10C37000BFB6FE14F0F1C95E97EC86FEFC5F7DF857 +:10C38000C79F41FF8BDF94A76308EA4121274EEE48 +:10C39000FE4BB606F32CDB7729C55F963D39D99263 +:10C3A0004FB1B727419EC45DE6FDC5693FDA5E091E +:10C3B000936A8C758A96E93E09E0B918FF09EB1D6E +:10C3C000DCA3300FECEF93D75D71ACC35E02D7EA0C +:10C3D000C1DE5ADCB188F28DD85F0EF6DEE29DAD8B +:10C3E000949F5BB2D761C9DB01C5E6C9216C1379A3 +:10C3F000581AB478CF35574DACC6D641F5254B58B1 +:10C400004F0BFA69F6E770FD2F61DE25479559CE8F +:10C41000517DEF2F619154CC5F2FD9B99AAFDBF1E9 +:10C42000DDFF443E5962CB0F7E82FF18D737EF778E +:10C43000C069CDFB7DF1CBEB531378734F46BF7AC8 +:10C44000D2C8FB2D7AF2FB67CD2F9E14F1A873C1E1 +:10C450003938518EF4977762AC8DF07B9F8887DEF8 +:10C460003941CEC112BBE06E9EDF0A4EFAB20BE339 +:10C470006F3BE66552DFC8EFF99890B3225F3990C1 +:10C480003CB9AF806DC1F6DE1C684725E54BB7337C +:10C49000FA81F38281E5CC7D92B89EC6E2F81E0F48 +:10C4A000C813B7B70AEB847BBA30DE18BB5A26BD77 +:10C4B00006D75779D34DE3C7F1F14CD7B5E058CE45 +:10C4C000475C4EC1A56C8A5FF03FC3C23114324E47 +:10C4D000905F28CFDC682741EB651DD43257099D5A +:10C4E000CFC7BAA91FB8FA34A3C2307CE363AC3813 +:10C4F0003ACC9BE5F671F97EAD7AC26CB77BD81663 +:10C50000B2DBF1916F8CBAC4EC733F87FBCDC3F7FC +:10C5100003F065986C128DE28F4EFD9CDEF30419DA +:10C520009E2F4FDC1DC462640FE54612D416B06323 +:10C53000D416E116A02D66D14694FF60AF4B140FC0 +:10C54000676F917E9163B2F4CDF024FE5CEE402CD7 +:10C550002590C41313F69953D86776FCBA7C2D54F2 +:10C56000BF01765A910BF07987A2BF1185759C7F28 +:10C57000BC63141E7E83F0D336F8ADF6D83017971F +:10C580002B46BB214DE0EFFB027F6A44BADA9407E9 +:10C5900027B8811D34C2B57332D9C72A3F87FDBA87 +:10C5A000B19E2353A73CA5470B72BA8D02404C7530 +:10C5B00082135D3CCE0E76CB58DCB75B3B467ACC23 +:10C5C000B05FD14E39D60FBFD8ED94D68628B59737 +:10C5D00063701AED6CD0E322ED48F6912AF005EB7A +:10C5E0004CC63AF56FBF4E90EC33A423E4B737A5A1 +:10C5F000E877693EAC6B0DE0BCBC1E4B7172FFDD91 +:10C60000F08F8D797E20E06CB446DD96ABB0FEF8FD +:10C61000368053FB2521C1DF11B267678A7100673D +:10C62000B26BEE95849F26B9057F312D989DE42F3E +:10C6300005CC44AAE7838363EB427A5790CEE2D4D9 +:10C64000A620DF001FFD04F90AE0E467C7924A1E36 +:10C65000D66F99188C63DDA40A0053D2A94D606B84 +:10C66000D00D5E77A4F3BC4000DADB5DE9BCFE19B7 +:10C67000FB5568974616233C800F1A659A575790CA +:10C680005FB2C5FEB20D7E9B69E5B75EFA4CB3C2E0 +:10C69000ABDEC5EDD29F083AC1F551CEF4E5EB73A0 +:10C6A000FA2F2B5CFDF82F0849846B93BFA518F176 +:10C6B000161CC53E95C378FDC5C9876BC83FD88D8C +:10C6C000FDA6E6E7274F43FF610CA7F335AEDF1168 +:10C6D0009D072F14FE478DD5FFD828F6DB8EF488F2 +:10C6E000F89B20ECD2601DD9BD60BF6F437A6F7795 +:10C6F00009BB55E7F6716F7F0A1FDFDBAFE4F7BFB9 +:10C70000855D7B17AE732EBBD6D0FF85BD72CEEA9A +:10C710009F178A7AD04B151FC907672D23BBA040EE +:10C72000E3F5B485DA0AAA274586A3387DAD4AEF3A +:10C730000AC07DF2578DE70BEAADFEBCA7C6EABF83 +:10C74000A78A7A9F5C9B1F9F6AD4E932D3F328475C +:10C7500045DD8F519F6FE7DB3EFADFF5EDEACD0E49 +:10C76000497A978BFC195EF7D39466CDCF25F5787F +:10C770008CF0FD6DEDFAA64B46BF9E09F4766FCDA9 +:10C78000C7E4DFEEFF7E36F97D9B7CBCAE6BA39FDA +:10C79000BFAF6EE77B9063BF18025BCBAB97199777 +:10C7A0001F417A0F3B45DC97A2CFFD85DE4B0DEA9A +:10C7B0008D5276521EB22A4E4F4EC4B782FA374E71 +:10C7C000FD5E7DCB7AA85582ED0934410FD44F4AE6 +:10C7D000C3FA8A14D666E13F832E4E2FE374A1B2CA +:10C7E000E1A9E4AF2E5379BD574CEF0EE1FBE38294 +:10C7F000BA8A053DA481B8524DF8C998E666E67A32 +:10C80000E0AC48D0D21F343364199F13057B10CF9E +:10C81000D1CCED3F2C77E6F1BA08D1616821C0AEEA +:10C82000B86F5D6348D053CEDC04C9EBBC3A6BDD16 +:10C830005948D061C8F69C9D9E7C6E614F821980DC +:10C84000F404700827AA294F4AEFD5A8C75C0497BB +:10C850005C800BC2E134E3782F98C5E2B1E2BE7090 +:10C8600031E80DFE174EC0FE0B619E045C7785AC6F +:10C8700070F2685638A55458E1E40F5BE164C03BA0 +:10C88000B546B38C33E066BC9F3E109C0A6BBF1D5F +:10C890007CC236F87CCE3AF7E3BD4DE2BB0B88286C +:10C8A000B7C99E52D48424694938E4D402DDC2FA5F +:10C8B0005B07A0FB824CA661AA9E55FA297E101246 +:10C8C0007094EA39BD0F6457DAE91BA8B4112775D3 +:10C8D000E0EB45A548DF6F09FAFE1343BBCC81F6B8 +:10C8E000D8486C799DAC1BEC1A2CDA557D3C3E0780 +:10C8F00072F62A37CAE97CD952DFE912EFFD1872C5 +:10C90000415199269BECD772310EED64663A573946 +:10C91000EAC991A897F8B9259FE0DF2DA0374D7E91 +:10C92000A8A10FCEF79C2C1826BBC585FA3325C9C4 +:10C93000BF45C2DE848D1C457A1C22F651B48ADBC9 +:10C940009543449DA9B61CEC5A7C68A3ADBEB4398E +:10C950002CE3B64ADAAC74922FEA870B9759EB4D69 +:10C96000F345BD31533AAF463EFD7C39C8AD62BC9C +:10C970006EAD332E6EEE96D0DE19BE8CD1FDBCE5C9 +:10C98000FCBB0F85CB5878AE699DBC68203C177402 +:10C99000F3437821A72F1D36BAAD7EDFED575F4BED +:10C9A00072E317CBB7F75B67BEB9C11D9E0BF4F7F7 +:10C9B0004843283C17ECBD5F3604A91D1EEF4E7896 +:10C9C000603F15310E1F6D66A2B815F6AF7538C3FE +:10C9D00066BAF5B168BB1BF0BDE3B69F923F3F3826 +:10C9E00016BD04D5CDF714FD2EBCCEDAF977432A57 +:10C9F000EAF369DFE5F585E1B9197DF548DEA23D89 +:10CA0000471A60FEEDCB81CE81388ABE74E9681F7B +:10CA1000618D2E3E5FDCACC958AFFCA09BDB497337 +:10CA2000DC91AD38BF160BCA1467AEE5EF5D18F0A8 +:10CA300019485F1975FAB0DE0BA847D4B4F4D16475 +:10CA4000168838D27601EBA7DDBC2EA7CFFB0FAB43 +:10CA50008CF71F3419FDFA92F6E2156E737C49BC0F +:10CA6000FF20331E47BA03DF7F9090F9A34F113C9C +:10CA700082A6785249327E94B7A8CC8BF279BBBBA0 +:10CA80007D9217F5DB8F5818413FEC212BFEF1D535 +:10CA9000FC1A386AE1A3DA2484B771DE39EEE87E45 +:10CAA0009C3FDFED23F8F6C245D4DD17093A1FBAE3 +:10CAB0009C91BE2869070508743674554F234E3F74 +:10CAC00055C8F3ED429E037F4C9F6592D7DBA37A56 +:10CAD0003AE6A90DF96AC8531077420F6932EAF5B0 +:10CAE00061CBADF45F22E467994D7E9608795B6275 +:10CAF000BB3EEC21A03FD3F3C6F98C73D9E9FD1DF1 +:10CB0000B7B07306B11C8C5F7DCE260CBA544BD2E5 +:10CB10008351BF6FB773ECF10B63FED189A005DEC3 +:10CB2000921AA33A50478805912E376619F2D9EA2E +:10CB3000EFF7DA1DE1680CED71369B0531BE1E9AE8 +:10CB40001EA57AD8D03416D6705F47793E63B59368 +:10CB50003F27BB6312D6A3BBF3BB27221D7EE5F69E +:10CB6000119DDEE88C7C85F8CC981EA1F86006CA81 +:10CB70006BE5EC7230A624E5E07DEEA8E2C94ACA76 +:10CB8000432D1A947DFDC86343FEDAE56D8A4D6E30 +:10CB9000B2AA3A9DF513E7B0F3596B8190E3F95CC3 +:10CBA0009F6D5EA88ABCFDBA297A19636BBFBF3B33 +:10CBB0009415A4651241F03BD65E2ED1FDF1AB1F5A +:10CBC0006EC67CC3DAAB797F9AE717CDE877ACBD48 +:10CBD0005E223FE44A711F3A54AFE510F55A67B23E +:10CBE00096BA313ED89A7FF6F7249A306E559E1C3D +:10CBF000A7A8617A7FC9E07B972D4EAAFAAC716035 +:10CC000075217F6FD19007EA426EEFAF1D714B57D0 +:10CC100071358F3723FE9CEE3AAA1777B5DF46F5BC +:10CC2000D203C9851F8BF7A2402E64782E40BBD358 +:10CC30001A6736E442062A58C06345751D2297B923 +:10CC4000B498AC5526E336865C75AB111686FB8E20 +:10CC500069754CC371D323541FE59AC6DF7393DD06 +:10CC6000E1FD4897EECCEE30C93B1B1D5EEE31E88E +:10CC70004EBF1CF7F31DB1EE748FF0CB5858E27124 +:10CC8000ED3AD2ABF7B923DF43FAD2F28307666BF2 +:10CC9000E74F57F467AC888B15E3B97576B6B8984B +:10CCA00041CFA9E8BF97F6A5CBF54E3DED523857D9 +:10CCB000D3EF1D61AC631AC81F79A081915E33F474 +:10CCC0009DA1E70CBD67F82BEB3DC5745EBBDF4251 +:10CCD000740CEBB4BD353C4EB17941276D73D9343A +:10CCE000FE5E28A74B97F035CF14CCF63A01A4EBA3 +:10CCF0003C3CFF67BCC763D09B77807A6F834E8DC7 +:10CD0000F1069DDAC79D2F7D3ADDD15525708E72D3 +:10CD1000910F296FBFED80A71F7D65CCDB0F7DAE26 +:10CD2000F39C456F7DE8D6D7E3FDF555E1DA483F42 +:10CD3000FBFC272F8F0F6C5EB8C183747B3FC2CB87 +:10CD4000C4C7DE14C1C7439712BC9E4078C1F847E0 +:10CD5000B658E1153A07BC8CF1FF05F0720F01F8E7 +:10CD6000F804BC067ABFF12CF07A02F9672078AD9E +:10CD7000896C5F5582F9C9A81C1E0CF36F88C8899D +:10CD80008BA17F7FADBC13EDBE0D91EDEEC1486769 +:10CD90001B0FE4A7C0FD47BD7E4E3FC144178E8BDD +:10CDA00095C9F49DA9D52AAF936CDD283F1833D1DE +:10CDB000E38E7C5E57DF9A3FDB3BC704871D1B0F6A +:10CDC00058DE13DD31403DF232AF64C9D36E9ACBE9 +:10CDD000DFF7CA89B238BE773745BC5FE5C9E4DF03 +:10CDE00019F1E8BC5FEEE3EF5B1D1ADD7209CA9929 +:10CDF000D5F93C1D60D8151B6D7685E1AF7BCB0066 +:10CE00000F00F78D5150B530CE3191DB3D29C20E68 +:10CE100087FBF49D2D6FA5D5DE5684FDE0DA62BB5D +:10CE20002EEC0D87CDAE30C62BE7F0E3D2A6F0781E +:10CE3000E9471E61470F624568576C8AC8748E1CAB +:10CE40003807CA9EB69BDBE93B21395F2B3AE7FFE7 +:10CE5000F6D00D2392F685ECE5EF3BB78978DFE855 +:10CE6000434CC1904A60028F0FF7DA1F02DE6DA2B9 +:10CE70004EEF82A3BAE23FDB38119F1CF77E4C09CC +:10CE8000F433EE59C16F4C4DCC44BCAD1EED0C6279 +:10CE90009CB34DE27232F69243D03123BCEEB839E6 +:10CEA000B80DE3578F7795ACA5128AA85685F33D48 +:10CEB000AE45E512DFC072F39097DBE143A68575BE +:10CEC000FE3D3C63BEC44E9E574D846E0478FCBB51 +:10CED000D747E31EF7827C20384573CDF1C3C55E8A +:10CEE0006E671B707A4A8BAE1D817A0BF681D3A4D4 +:10CEF000E7D731B932B9DEE3F97CBDC75F97C92EF8 +:10CF0000CB09BFBA13F588319FB1DE53DEFEE55180 +:10CF10009DB19E80F7335A7CED48D37AAE69D6F541 +:10CF20005C73613DE8E71C97A9CE79A0F59E196076 +:10CF3000BDA5021F06DE9ED58EAD1D85F534B81E3B +:10CF4000D23FAEE7EB67BD2FEF96FC26FEFCBD9708 +:10CF5000EBE7670D38AAD15CF377312E16F4F108B0 +:10CF6000C88F3930EFEAC12D1EA4E31D529CE4594D +:10CF70006CB44CDFFF69DB723A8175578FE88CA285 +:10CF8000BF6935B14BD06F6FC06033C9DD49F49CC8 +:10CF9000A4B637223F2A1B19C5D95AD13FC78F39AA +:10CFA000F4C973B5935D51389D7F57CAB0FB421BDE +:10CFB000EB5E1C8A72A25E0ED33870A7D5B1C9F899 +:10CFC000C74687984FE4A90CBB2147D8D167B11F4A +:10CFD000C2CCC843519FE7AD8C7808ABD229AE6173 +:10CFE000E4058C389F910F30F200A92C7189395FCC +:10CFF000558AEF0194E2FBC63C3E52AC6B93B07491 +:10D000006EC8C6E824A4B374E197BB841D9E52FA8F +:10D01000405A6F5CF022D882D778FF219A8B7E50DD +:10D0200099D7783F82F7AB6CF7D528D73FEA5C2ECB +:10D03000DFD8E13E754E3FF3629EC8CDE32A469CA1 +:10D04000BB4BD8631B22777B509E7B3DFADDA86FDC +:10D05000EE16F61AD8FD4DF81CBB16F002F02FF6AE +:10D06000F1EF90293E26FF2D784DE29171795FCF47 +:10D07000FD453BBE06C2AB813F039F7F2B1ED18582 +:10D0800055D0DFC1B812D987B1B3C67BF2D51E899E +:10D09000FC1C16267C96B108E133D71D94118F2510 +:10D0A00053B4460FE253E8CD02D057A837B746969F +:10D0B0001212EDF8542B047E223C0EC3BA254BBC51 +:10D0C0000BF0F32FFDE1674D649207F5F78EB0DCAE +:10D0D00081FC6DD7DB2CD83E0DE1B923BF8AF20667 +:10D0E0001B2BEEF6A01D007A9BEC8058AD1C1F5C3C +:10D0F0007C5EFA9BFCA265DEF7C94F6A4B13EF2BEF +:10D100000E76D2F72A65AF467432A1A77B722AE663 +:10D11000296AB89E68732442611A9F98391BE5C238 +:10D12000035C2E3C12B1CB85B87B0EB49778D33814 +:10D13000BD6D597139D9F96A8CFC0063FD696B2E9C +:10D140005E49F9515F82EAFBDAAE5E4ADF5530E4B0 +:10D15000887DDCA97DAF15607DC8DB377FE607667B +:10D1600064EFA83D7EDCCFF1E57FF0EBF0DCDBCBBC +:10D17000157A4FE987F8DC38C66E6AF83F6331EEFE +:10D18000F3BE906F17A7E86F7991AFEAB388E8E62E +:10D19000C5150CEA72BA82FF163C9A824CDFDB5F3F +:10D1A000D49161E91B71A0452E9ECF5AB073BF3355 +:10D1B0000FCE3DEFD1348A031D17DF913BBEA76030 +:10D1C0001BC6ADF352B8BEB838257202F18DFB41D3 +:10D1D0003CBCD3E9620992C3DD0EAEFFF4E9986F5F +:10D1E000880AFAB0EFEBB9675368DE9BEF55C86E5B +:10D1F0009A05B0AC07911BAD5D40F114FBBE6F7E8C +:10D20000BBE3B95CD8D7CDABA530DAA1387E39F80D +:10D210007BD1FA568A27DACF352B66AD1F99D371A9 +:10D220009B938859A99C3A08E38EAB24E2F739AB6B +:10D23000ACE36EED5C4BF33DDE35D989747C73BB9A +:10D24000ED7EED95FF8976D8ADB678A5DD6E0AA6A0 +:10D250008838CC587621DA4BA7BB6650DC71207F2A +:10D26000DCB0938E83FD8E2F5A7DD4E0A6F6444326 +:10D2700090DAB704FD2ED8BBFF3992116AF758A493 +:10D28000AFC7BBFE947203DC5A1AE276FB77B67D19 +:10D29000D6F414A3B88FC2E5884E72E44681878B1A +:10D2A000995BF3C13E1F1671B8315F42DF74BED384 +:10D2B000ED12F96F20058258F77323C26324CECF95 +:10D2C000EDF51BF1BBBD6739F7A8146B9EEDEF3D83 +:10D2D000F740CF2D5278FDA6FDBAC1176F09BBA646 +:10D2E00069DFCFA722DD9CBC4BA23CDA4947BC8555 +:10D2F000FAF74AE1468DB67D14E5AE41A7601139D3 +:10D30000919FEDF468D0452FDD75AE23B818F480F9 +:10D31000EF318BBAA7905CD30FFDD9E8CC4E5727DD +:10D320001DC70A91EFED74757200BF64720ACFE3F6 +:10D33000CFD5F4A9185FB99945A8AE0AF0FDCA7F08 +:10D34000C7790C3AAAE2B12AAC13D3A700FF3EFE7C +:10D3500035F77B56EC29BD07EDE5D1BF53C57B867C +:10D36000311AFF1DFC27AC31BA54BBE65FABF97D27 +:10D37000B8D3073EDF79FEEB7BA66BE786931D3EB5 +:10D38000BDF2A98BE7D5BE63FB8EEFBCCED6C078CD +:10D39000946787B91CAF3AACDAEBD5B8FC7B7AD787 +:10D3A000532887E7FFC7DD0106ED876A7B36E26316 +:10D3B000D7432B033ACA63351640F87E18572CEF33 +:10D3C0008DF6FA192992F1FD384B3D1DEC2F86F1AF +:10D3D000F0796FB8E28DB0BF258FBA12A83F171F42 +:10D3E0009A4F78803EE9D3C57BFAAFA79BFFC8BDB3 +:10D3F000D91AAFB3B7D6D53DE4A03CE162F0BF90F7 +:10D400008CCF5957D7A1CC72A6F657AFD7E3443982 +:10D41000B244F8894B0E5D41F8B7D7D5D50AFD6304 +:10D42000E7F75D367E07F8905F18837D51B94C9C15 +:10D43000EBA5A65FBA626ED8EF876F0EDA8679E247 +:10D44000130FFD2E205526F9DFA86B3BD1517AD65C +:10D45000EFB49D1472A2D70F1CA0DE6E17D005C2C8 +:10D460007D21C01DED9A854778FDDD53AF1FC8C6ED +:10D47000EF6D2ED8EDC89CCE8FE1433D65E0ABB794 +:10D48000DE51E067FE13FFE6C4BACBDEBA4781A7E0 +:10D4900005BBF73B914EECF09CDCB1DF79CCD70FAC +:10D4A000BE3ADE9D8A7E4CD32FCF38D12EF9F0596B +:10D4B000890D2AEEFB7C07C005F5E7B9F076E2217D +:10D4C000AE3F4F744A71A9F8DCF85B87BE7B56DF2C +:10D4D000FC5F6C12ABC0EF7036395905FA2D31D9AB +:10D4E0001B467BE95C750C337DC5A2F82B4CEFB174 +:10D4F000DE719055ADA1D578DDD799E7187D97CE2F +:10D5000091A929667C8627CB75FC3B7EA26EE078CC +:10D5100090E88189EF909F16F2A5C0C7FDC4D1C7DE +:10D520002A7E3E01E3205D0E16D79279F4D3473967 +:10D53000BF8FED52C85F780AEB4325CC97CB4C33B5 +:10D54000C1C9A3799966A2D7948A744BBF19CF89B0 +:10D55000F90B918F1FC36F317F38D732CF9820FFDF +:10D56000EE786A4D89E57976D89A47C7F3E2FE2EC0 +:10D570004CF0F73FC61EB5E67F1401C7F1025FE12C +:10D58000448CE053F39675DC78DF348ACF8C3F47C8 +:10D590007CE62E9F88CBE4B25CE43FAA29413CA6FE +:10D5A00005C8EE7518F5942C1CC27ABED7045CC36E +:10D5B00029F2671AC07A8C2F6B2ABE1F111E23DF37 +:10D5C0005E0AFD496DDA5415F83C7C91FC4409F47F +:10D5D000A7B415F3FBA3E4310E90A0DB622553A79B +:10D5E000405F95255685F9C25CFE1D8FB54EE0372C +:10D5F000E09BE600D3D3806E535C2CE6A9C2F534E1 +:10D60000FE5D3770583C585726E2C86A803FD7EC19 +:10D61000E0CF9DEF7CC63C55AA46DF1B7595C159EE +:10D620008B93EB54A9FCFC953E27D1873A490FA177 +:10D630007FA3A63BC34D348E91BC38DF16E4632133 +:10D64000CAC737BD9C0F14E534D567F7FC630AC51C +:10D65000D7DFF4727EF8416A9B6318F4ABDC85B7C0 +:10D660002373BD29EDFC11B68A3F7A8D8FF884BFF4 +:10D670004F7DC30F95ED140FF2D5F9111F92CEF522 +:10D68000B204C8B811EB4E6787DD6A298A306B9DFA +:10D690005B72FDAA9E04ADEFB7AC0FEEA21BF5FEC8 +:10D6A0000FC671390632C48DFCF45A0DEFCF8C973A +:10D6B000341DD3683F737D70AED1AE7801D653DF91 +:10D6C00020C77FC4EB00AD756127BD822FC477C72B +:10D6D00030E48BF39CC4F5806EABF72EB0D4852D6F +:10D6E000F984DB01AC9BEB57A31E07B783E763CA42 +:10D6F000D7D938EEF3C332D56C551DB2D2FB45A253 +:10D700002E60DC61EEFF8FB3D1FD457BAFA47AEFD5 +:10D710008BCE617737D8F8E17CEBBC0E48FA4A84AF +:10D72000CB7495E9E6DF45582A1CDCD3874B523190 +:10D730002EF5AED0F3469DA413D81DF3CF7B6C7AA3 +:10D74000C9A0C71147837370DF238EB29B106EF69A +:10D750003AA1DE75821CBEA3D9C89FE3F7A9FBC816 +:10D76000BBE35CDE19FB35E45E9A6E957719D3ACAA +:10D77000F22E2B62957783665AE55A4ED42ACFF261 +:10D780006A8759EE17D45559FA45F5E32DE38B41D5 +:10D790008198FBA5ABAEB08C1FDC3EC3D22FDF78E7 +:10D7A0008365FCD0F86CCBFDE18FCEB7DC07B94EBA +:10D7B000BFEF31909C1ED1B1D432DE90D3A3F6FEE0 +:10D7C000D432AF21A763F017E9B20A452FC0352C38 +:10D7D000EAACCE25A72FCC8C21A57F6B39FDB24FAB +:10D7E000D849822E3F67D36B18E59579FE7A20BA27 +:10D7F00034EA889514AE379554B96E37B497093921 +:10D800003ECD27E26A414E27A7F69553FC1AEBEB73 +:10D81000D08E31F4F829876F15C6A1D280A650CEDC +:10D820000CA4D7D33A9FA738579FF79D648DE28009 +:10D830001B9408D5B5830F5A2C235EC477BAD6CB78 +:10D84000F24DE678EF691FE793D33EEE876D0679D8 +:10D850008EF23B2F05ECE12A7A2EF9BB1480A7004B +:10D86000E6D4E9772196B7E0EF3134A71DABD0D2EB +:10D8700090A5A03F3129FF0C790772760C7D27DE39 +:10D880001FFD2BF22DC8B102D4FF3333EB1C129CC9 +:10D8900031CFCD6258970CF0BB09E3C3692C535AC2 +:10D8A0005A8971CE5EB9AA7D03447470FE70AAFFD6 +:10D8B0003E5D3B94BE1B751ACED04D79368DFFAEC2 +:10D8C0008D16A6BCDCF522DF767A6E298D7BE38788 +:10D8D000C0BD408FBFC72D833E7CC3C9E1702E3FC2 +:10D8E000B676DB3D7ECC47BF51C1F37EC6F5223F05 +:10D8F000F75B8BFC3C3FBA646E0AD5F72E8E3B2853 +:10D900001FB404C183F6679CF33DF6D16F5BDD7CE9 +:10D910007704F161BC67E6EEAA8B617C6049E7D5CC +:10D920005427F183D7B89FFC83FFCDE33BC67A230E +:10D93000FD0E1A3FD2CFF38BD74183EF555F0778A7 +:10D9400048C3F6F90953918FE07A4282FE555D6033 +:10D950004A00BCAF8E163B10787F60E1579E842D45 +:10D960008FF36BB4DF6B59C48174FC2A8B7EF24A4F +:10D97000B1693E631ED814EAF1D7D2628E6C906F03 +:10D980003D1325D25FB09E1BAF476ECC5B8922D37F +:10D9900058CF9867060BD3BCDF67BA43D8311679E6 +:10D9A000B9745E4A2203E65B0A763EC6634F35F6DB +:10D9B000FCFAC7B0AF77E6FFE549FC143E8B1E2B9F +:10D9C00040FFF7FA8D0AFD7ECC1FBCFA243FF24BD4 +:10D9D0004DC6F97DC70FD01843BDCAF87A2F097C10 +:10D9E000CFECCC1823F4FBF7FC70FE379FDD55809D +:10D9F00072E4C5A18F0CA67AEBEAF39BDFE0CFDDE2 +:10DA0000BDFA96EB83B0A037D01764979F62DE30E3 +:10DA1000DAC903F1ED6EA197EF5074922767E4889D +:10DA2000A8FB07F710DA8E4E857EFBA503EC22E4F7 +:10DA3000E30032B5E9776102584C297E97C50DFEA7 +:10DA4000CA70C19FB5FEC4D466CA5359ED806AE15D +:10DA50001F19FA3E027F51AE5E24ECF0F28D563F64 +:10DA60007B5C42263FA657CFDBF53BFA2DE7A1DFD3 +:10DA70007FE6FFB6FA3DDA8C78EFA8E072AD23E1DD +:10DA8000E575B8A032D0BE33F4BEFDF935822FDB88 +:10DA9000D1078776069E19F09D02F2C5CFDF9388E5 +:10DAA0002955D467BE74AAAFD6B3783F960AED7BEA +:10DAB00041FE9C533A59E10679B661DDA19655F9CC +:10DAC000F85E25872FF69BF0DFDA1892334B0D397D +:10DAD000736818FF8EE2D7704A84BBF08BECFBAB07 +:10DAE00006BAE6CA50F085783EF1DC5701F4437778 +:10DAF000A56BFF7E11DA8B2F280CF9CDA31E73A620 +:10DB0000F573CEA7506E95031DFBB95E71EF95E8D6 +:10DB10003B406E4DBCC7130C8EA65AFB284BC13838 +:10DB2000CF27BB4BC9BF9B11E0F0694E89FC1AE1BE +:10DB3000FB9174646CB094ECA97FF19BECA98E040A +:10DB4000FF5EFB0895AD52D3937035D65FB2710C72 +:10DB50002539166FCCA07628FAF3706949829FEFB9 +:10DB6000E4DEA6F4FEE202233AC7DC4AFEEEA09E03 +:10DB70002FFE03EB8BFE85BFE78CAF3AE0FB2ABF9D +:10DB8000FA7238CDF7BCBF98F006EBAB0EFA5D9C8D +:10DB9000B83C03FD7717978F27BF54685CEFBC7BB9 +:10DBA0002F518280EBCA44FB01F4273C9D2E0DE9E6 +:10DBB000C5F310FFFEA2A7D3C3DFFF0FF67C80FEE4 +:10DBC00080DAE90A36013C76797BFE88F4D5B3CF5A +:10DBD00045BFB3B1CBD94EE37B063319FB43813E3E +:10DBE000F07B599E603B4B379DC7D3F973AA670200 +:10DBF000BAA0EF3979D47636D184A719013FC1EBA9 +:10DC0000B8A0C35DDE84ECE3F3B2EDB4AFE43E71E3 +:10DC10005F9816E3FB1C4AF18F5D4ED86726ED2B0B +:10DC200088743094F17DB2CE720DFD4415F6437EBA +:10DC30005219935134D8F7B564248BA3BC59BF82D1 +:10DC4000F5CA09941B4BBCC9BE1B786B5789D0EB36 +:10DC5000B1BF901EEFEDA3C0AB493EFF57FFD72DDC +:10DC6000CDF926FE51393FADF6733D66F011C20184 +:10DC7000E37003F29B8F8FABD8A67E86E7DF9DF023 +:10DC800085312F697C3FD988EB2C93121F5C8C76F1 +:10DC900057E2C0480DF6B4F0F9670A9DD02E903BCC +:10DCA000EF1B01F7EF7446DD0158F7E9B764160082 +:10DCB000387CF44B4F7C3ACC53F19B6DD99887B1AB +:10DCC000CFD7FAFA8ABBF3D0DEFA8DA4615CF9945F +:10DCD000A387E2B78B3BFFD389F1C2CBF6BEEB44FF +:10DCE000BB625B209A8EF3D6EC6D9C8C701CC7DAFD +:10DCF0009B304E07F295BE57D21162229E31647B53 +:10DD000023F2574FB408E9727C40B2BC97DF29F880 +:10DD1000F359B42BA07D52D8354FEEBFBE5433D546 +:10DD20000FC4D8018A37AD6087F210DEC6F5537193 +:10DD300095EA6086BFEABE4937D15D7580F37BB551 +:10DD4000E0E343816805EE77C1FEF79C0138D7C751 +:10DD500052CF54BC05FC3C14AFF7F233D84766FAF7 +:10DD6000EDC3CF367E5AA2F638293E799C7F7F15C7 +:10DD7000F0DD9C0AF87BECD5BDC3E8BB2B3D917F61 +:10DD800040387CF18A93617DC693C2EE6D7CE58B51 +:10DD90009128C7BED8B7A008E1971BE0DFC105FAFC +:10DDA0009FE4453EDBCD48AE197C5A897C0A5BA9CD +:10DDB0000CF2BC6625D27F31D27FF715C4974FCACB +:10DDC0008CF321E707A0FF20CA8BCA20F0033D5F38 +:10DDD0004E7CBEAB5BE6F943D013987FDC2503682D +:10DDE00081CEAA1D8903F85C35ACDBA821BF767B08 +:10DDF000B13E83ED913331DE598DDF9336C165B588 +:10DE00003F4070592DE0B345F06F0A26734D7C6199 +:10DE1000D2BFBC2FF4733C50D9BA018B9C75A11FA3 +:10DE200084DDC3A26348DEDF2E74E5D27F1B7FD57D +:10DE30004E38DFD29714BA3F56AF9B8CA1909A69A7 +:10DE4000ED07B11D1FE9988C6156D4171AE0E50261 +:10DE5000687590AB1366761FE4EFE4EAC3D14EDA3F +:10DE600073E0F2E168279C7AC345BF71716AD715E8 +:10DE70008F61BEF4D41B1E264BFDDA31163AB3B7C0 +:10DE8000A7A463018C2BDDB1FEA2CB54F0A5178FA4 +:10DE9000E3E75CB67E5C6B0C36F697807E07D25566 +:10DEA0005A307A4700F07AEAC857D928BB9F3CFA23 +:10DEB0005E00F5FA1EA73E3C482DFFDEA07DFE9BCE +:10DEC00003DC8EAD16F94BE427B4973ED998B10D1B +:10DED000F9E9933D8A9E0D72EBFE00F7430CFFF1CA +:10DEE000660E3656BB87DBD3B7E83CBE7B33DA35EC +:10DEF000D8DFE0B0F879B58CFB5343628CE24B8BF2 +:10DF00003B247AAFA75CBCAFB344F891B536FB6550 +:10DF1000A11197B5C56F178A38EDC273F88DF70751 +:10DF200084BD53CA4AD1DE01BA20BFB5E71525BC6E +:10DF30009DD1F797BA5CB0AFC7C4F718412E125FF6 +:10DF40001976CFC4A0FE5EF002FAEE14E71BE1D70B +:10DF5000F5EC92E2C4078F327ACF6CFC716D1BD561 +:10DF600033C474FAEE78AD9073E3457E657C673117 +:10DF7000F151ADB0FB6A747EEE5BE0DC7152A7FC40 +:10DF80007CA05EF9EF2F1E6F57104EF3B7481407B1 +:10DF90005DF0A8FD7D7E0E97851B8F3C87B5128BAB +:10DFA0003A6CF70788633F8EFFE8270FF1AC01A7B3 +:10DFB000425668B60B5957FA59DFEF37ECF08FC568 +:10DFC000FBB82F8BF9E18F0FEBF2FE24E0F0A69067 +:10DFD000938B758EFF8571251E87FDCC11F4C2DAF7 +:10DFE00038BD18EFC5605E85CEBF47629BA4BEE713 +:10DFF000ABDDE9207B78BE808391A7ABDD62A5BB5A +:10E00000F9020EF36D70581C952CFB30ECF339823D +:10E01000AE07DE57C77588CFF93BF9EFB331E56B33 +:10E02000DAE7E77B389EECFB34F667ECF76FDDA7A9 +:10E030001D4F9F19781AC68659F034EDECDF614800 +:10E040007EAFC86AE71A76B24117F6E7A70AFBF86F +:10E05000B28DDC9EDCD37D6015DAC355FB9420E6DF +:10E060001BF7749F0E603E68CC3E5EAF7EAA73CCF9 +:10E070005AFC4EC7135D65D7607D6ED51199F86364 +:10E08000CC4B55712C85AE7AA92AA594F2715A060B +:10E09000FA0DA70E73BD7AEA70D91F2A516E764D1C +:10E0A000A946B0361EAE4A41FDFF04E37EBEF4D25F +:10E0B0009F7F8FEB8E79411D8B71BF9690427C754F +:10E0C000D9FDB376A05F9792CAFDF0E7BA975E8B51 +:10E0D000F85874580EE2F59387651AB7F00185EA8F +:10E0E0004D99B23CF31F105F9D8E20DFAF83D65F4A +:10E0F000B26F70C61C5F920E660BBAAD4AD3EE9932 +:10E100008E765E4E0AD9C5971538482F9EC84D7930 +:10E1100010ED9B21FA36CA1F9F78E67619D73DB5D8 +:10E120004B622138C073A183BFA6EF963C7584F281 +:10E130005C93F71CA1BCD66CC3EF13795A83AE6E07 +:10E1400045FF0EFCD74FBABDA20EA4DD89785974E5 +:10E15000C4E81F73A2FE8E08BB68F143EF527F3EF6 +:10E16000DAF9488F0F49542F7B70DFD3448F8B77B8 +:10E17000F2FCD8FCBDDBA6E2B805AC83F29B763995 +:10E18000324FD0E7AD1B6DD7053DCE3B073D5E9AC4 +:10E190002AE871281B4ADF05B9847F67A42331BBB5 +:10E1A0006817ECE3F4EB2EA28BB3D025E9BFC322B2 +:10E1B000EE733A21EB080763DCC9C3A79D683F4EA5 +:10E1C000EDFC94E037BD73FF1484CB775974219E26 +:10E1D000F3BB9D2941F497A71FE372E58A4E17E927 +:10E1E00095EFB28E669ECFE772E85681CF5B05FC55 +:10E1F0004F3DEBE2799E6724B24F6E05C19B01A2B1 +:10E200006EA1880BB32D56FC803CFA21CF17BAC8FB +:10E21000BEBAB2C20AAF2B18972757EC94489E2C6F +:10E22000167EFA954CA3DFD1BCB20B0333B06E4E11 +:10E230000AFDDED0C29DB63CB3F0DF17DBF4DF0F82 +:10E2400052B97EFE5B7FA7A13E55C44B055EA6F783 +:10E25000F078ED15A86F000E5D891595188F32E0E6 +:10E2600064C74B9776F63CF2EF853D6DF4AF02C67E +:10E2700041BBAD23C8F1F0427716D53BCD1FA7C4F3 +:10E28000D07E782795DB0F0BFF7ACD5558187B424F +:10E290003EF0E39D70FFE3591D43102EE03FB4A70D +:10E2A000C2399FCF9FD3361A9EFF6897238CF28581 +:10E2B000E9DB86A0BC6C0DDD331DF35B4B76F2DF32 +:10E2C000693D59A3C4489EAA3D5371BD8FF749418A +:10E2D00094C74BF67EC6FD07A41768239DD2A548B8 +:10E2E0002F60976F4985F5237A9A03F1B8780AC8A9 +:10E2F0006B187FF5944F9D0857B0CF1F4835F9DB59 +:10E300002F949592BFFD82AAD1F72507B2CF177F30 +:10E31000C9ED41E3FA62E05384E7E24E89FCD0A400 +:10E320003D3848227B70DFD387D2494EA48D46B654 +:10E33000399C2AEAABC16E40FBF416A17F98D44CFD +:10E340007CB1E7C087D7E1F97A7EE360252818A180 +:10E350006517827C7C99FF4ED8C9A724CA1BDD1A99 +:10E36000E479A293B3399EBF7885FF7ED42D428F86 +:10E37000E17D8C77DE02F6DD77AAF0D73857083FCB +:10E38000A7995A3BFFD7EE7DB085BBF9A6EB402F8E +:10E390008B045DDBE5C82241BF8BCE117F1AFEECFA +:10E3A000D325889F776C7203CEB316E5EAA917943C +:10E3B000209E67CF81BF6CCD453B0BECE81294DB10 +:10E3C000C20ED973C0437EC5A923BE38C2F3234110 +:10E3D000872744BCB8B14621F8C8E3788BEB217E8F +:10E3E0004FED3B53180539FCD8B34F0FD3291E17F7 +:10E3F000E7F5608F5AEBEA167558EBE6605FDC3E96 +:10E400007D95E79B605F43F0FD3A635F4FAAC702CB +:10E41000E17EF847920E10FE64C9EA472EF98D623C +:10E42000F98E119CE726946F9F0AFE007ACE46BDB6 +:10E43000F879AA4674D1D8C9F12DEFE32DAC7F1D30 +:10E440008F8F3868FD3EF727C516921F589C42797A +:10E45000DD2EF0F7F137A8BB5EF790FDF9E397E703 +:10E46000979B7FDF8149DCDF5DE2E8C926FF52D45C +:10E47000795CC13EA53A8F2B3A1D990029F67F01A0 +:10E480008934DAF8008000001F8B080000000000CB +:10E49000000B8D565B6C146514FE6677662FDDED00 +:10E4A00076B6970584D4A5F76ABB4C6FB450D0A557 +:10E4B0007869B0CA5AAC90D8C88A46A3D256306A96 +:10E4C000138D4CA924587820FAE283312389C6079A +:10E4D000D4C516D2685BB75A2E2DD65401298D317A +:10E4E000A50F45136AAB89342624F59C7F76D9DEC7 +:10E4F0008CEE6673F6BF9D73BEF37DE79F399BF587 +:10E50000958C72400F48A8584BB6470156003669A3 +:10E51000603556026FA658810AA0658325641401F0 +:10E52000077150CC77FDB8CD559C0E4CF7669458CA +:10E53000FD80946211FBBC6AC8AD923D7569C2133F +:10E540007603389F0AAC02E6F873EF524B11810C48 +:10E55000F2DFAB40A63C3A47ED469D04DCEC9DFD66 +:10E56000E9091ADF1C943590FFB65EBB9E42F15A52 +:10E57000C69C869DF24438BC2E940CBCDAF75C3EF7 +:10E58000388E447955D1FEBEC1C3E2DC694565EFE2 +:10E590004DBD977DA0BC9B4E55BCABD3FEB2E1D226 +:10E5A00087FC34EEEC51828CBB74B8DC7052BCCE6C +:10E5B000EFCAD3B28BF984E662BF4D8372C870B3E1 +:10E5C0002DBF5047719B866BCA250E335C9E364E1D +:10E5D000E7CB248422B42E0DE688711C4FB66AD690 +:10E5E0006BBADFB93B48F312B2445E16E4081BDF96 +:10E5F000B7B7EB8C8DF3DEDB6D0D1AF3CEC7CF55BD +:10E60000AAB2A84BB5EA17B62D220551497E4E9AFB +:10E61000766F77A78F71BCA8447C2AF9693BA198D3 +:10E62000EB9F9A163826F2D0358BE0F3024F110F8C +:10E630004392F10C28C52105BB38FFA1ABE13B5348 +:10E64000D96E09E7B3FD5A9544BC783E3A6A44DE78 +:10E6500090EA05EF535D4A2DD765318FDD7C8EE260 +:10E6600079D2B03BB4CCFA09D5D4C7361BC21C173B +:10E6700008BA57AD07BEE7BF04F1918117EA540FFE +:10E68000F1C9FB28FE45841464D35A9532315E00EB +:10E6900084E83B9705D4239412A550F9EFC913E3FE +:10E6A0000E88CF1CFD76D0AF95A41629D03234F257 +:10E6B000DF80A37F58036407B65D07D91D0F2B4188 +:10E6C000DBBA7FD7E18E5A6581BF06C822AE1893A8 +:10E6D000DE5A7FFEC13B5090587F5E4D4E9F74D1F5 +:10E6E0009F3CE4CD513D6175BB24D2C95FE715D590 +:10E6F000CAFA8491132A5E1A67F6C08877805AECAA +:10E70000EC01829D4FED71C021EC3752703FF74D07 +:10E710009D8C606499FA75249BBCB4155E098C339A +:10E720005FFD573FF3927E67AE3A91C5C2BC455933 +:10E73000503D9BD4588E8BCEB7A15EF078108F2DB4 +:10E74000D0619CCF29A03652B494CFA3313E9A0B0E +:10E75000ECD7B89ECDD6191BF3F2F6E17742AC2385 +:10E76000A5A74DE7788D36FF02DD3477EF43B888F3 +:10E77000F3B5035497A9FB25C32E89BC33ED226F53 +:10E780003BB2449D463EF0D27AC3A8131DB4DE5F6F +:10E7900078C5C6FD44C2BB041FE9C28483A6E888CD +:10E7A0004DA5F9ED0E9367D60BF39AD7F5D421C496 +:10E7B000E6DF28A579D2E83DA5F3EA11D3D7F6AA7A +:10E7C00085FCB62155177D29A50B9B8F91075653C4 +:10E7D0001E3B839266D0FE47838BF560EAA97E5785 +:10E7E000C9990C2CA39798CE16EB66400D7FAED23C +:10E7F00081E9913F1F2F26BF4385D733B92ECDB175 +:10E800003ED0F2FDDDE31457BBA096B4D399169722 +:10E8100027A0924EBF8CD5BDC5956980FAE2C1E4B0 +:10E820007037EB63DA9878962E93DB7EEE5555C100 +:10E83000D39062ACE17B20DE7FDA0A94ED73CFE700 +:10E84000D3ECBF6ED60703284A0336FCF7BDDC566F +:10E85000782EC07C0CF50F066CF378BBB13F9CCFD3 +:10E86000F15A7ABFF5F9DDF3756689E94C165692CF +:10E870004CDD59A485BABBC1BA2B627BD957CDFAFE +:10E88000E8DA9A21F913EB2DA72E7A72E7F99DEABF +:10E89000B18AFD90C7F31A92E7E77948E439153158 +:10E8A000FD11D93AEBADF974C9FA0E9306DDC2E356 +:10E8B0009C3D1FB3BE8076B13FAE57A7A20757134A +:10E8C0001E052FE96C233688F37A9FDDF888C6D3BE +:10E8D000D4ABFC9C98BEA67EA80BBDAE01EBF27437 +:10E8E0004C57B76275ADA44B8975B901112BF74729 +:10E8F000256434F258465426BB098695FBA5528EF2 +:10E90000F64B0131AFCBA4D3CD1817F30445E67312 +:10E910005BE09779BC157A3B3D3CD0D3F58595AF4C +:10E9200099A84FF64E92DEF8AA598EAF443D644C3A +:10E93000C6F5479B353BE9A12891F77AC9CCBB3294 +:10E9400008472BC5CFF59A7D5E8D119187E632F190 +:10E95000CEFC0DE3B804F12869A47DD5326AAD84FC +:10E9600063B30C47128D4F0E58445FF78DFB0DBEFD +:10E97000EFB4B4D8B9DFE8DCDA04CE8DB43F259526 +:10E98000C738AC88FA4497C5BBD2BB56E4411E9E3B +:10E99000643F5B7BECE8A0298B43B7B2CE33BD2646 +:10E9A0005F2EAA9B87FC6C3C266194F2D0B24D7C12 +:10E9B00071FF1B41F14A79BF795FD218A334EF721E +:10E9C00098E780FB54AE8F14F559E65CFFBF8ED3F9 +:10E9D0003E88BC3D4FCFFCFE3AE3ECB5ABC72925E2 +:10E9E000ADE7DCA844FD290583E07A6A0E77D4EA16 +:10E9F00061C2E41BB7EF077A6E957AF7685EC227AB +:10EA0000F955514F84E1E7F78C15785F9DBC9BDF8A +:10EA10000F681FD5702CC913408A49D7AFC4D7CE11 +:10EA200098CEC692CC7BE013A3DECF7ADE95EED0F3 +:10EA3000B8EEA58ECC32907F6B7258F312DE31E9BE +:10EA400044AE70261B15ECFF2D6B045CE759A7E95B +:10EA500097DE1E844E5B1DE6F8B524CF71B6B34E2B +:10EA6000D33FF720EBD645D7B683F23C42FDE0A07A +:10EA7000B15E63F2ABFF926CB45369672D212146FE +:10EA8000EA26BF85FCCB358856525EF21D36B16E44 +:10EA9000675CAE04AE78FC38BEC5F119EFA6385EEF +:10EAA0004B229F38EEA5F175E52E13FFCBBC9FF0EE +:10EAB00037C6F0BF2282C2C865FC2E04ABC47B04FB +:10EAC000A2E0E7811AAB67BC0E2AF3453A4590F8FD +:10EAD0002A48F015AFC3912413BF42CC0A3F7EE20F +:10EAE000AD7829BEB86EFE01659B0B29500B000066 +:10EAF00000000000000000001F8B08000000000064 +:10EB0000000B3BC3CFC0F0A31E8195B850F9E87845 +:10EB100001072AFF1101F584B00A03827D8F9D81D0 +:10EB2000E10E1304CF82623B20D682E27F502CCAD2 +:10EB300082D063C7C6C0E001C441401CC386DFAEBB +:10EB400062164CB15B720C0C794A08FE214906062C +:10EB5000362906860A29CAFC358A8706FE6288CAD3 +:10EB60000FD146E5A7E93230341B21F8A1DA24DAC7 +:10EB700001D4FB138801AD3C472568030000000069 +:10EB800000000000000000001F8B080000000000D3 +:10EB9000000BC57D0F7C14D5B5F09DDDD9D9D9CD3D +:10EBA000FE99844DD8C012272140B4419734606C3F +:10EBB000631D3068AC3CDF8A16A3B574090AF11FE7 +:10EBC000045B4BFA370309C90602AC121581DA055A +:10EBD0008B0F153EA39F5ADB6A5D84D762EBF7BEAD +:10EBE000B4CFB6DA87BE409552B418AD157CBF5A83 +:10EBF000BF73CEBD939D1D36A0EDFB7E6FFBAB9723 +:10EC00003B73E7DE73CF39F7FCBBE7DE7883128B0B +:10EC10009CC5D847F8BB88B15E0F7B5A3A8FB1AE1E +:10EC2000588FC9E0D78BFFB980B11E2CCBE1FF19FB +:10EC300097CC6631E667FCE78EB90E79438C2D518F +:10EC400074C64AE141B484DACB81044BEAD842D697 +:10EC500087556A6A7E3439AFCE3E727F9CFA5FA7D1 +:10EC6000E5D74D3E0EFB0663658CDD21DEC1CFC0CE +:10EC70007A93A858F3B14A165758B626D74F13E3DC +:10EC800075DD25B18F247C9AFFDE1AE7842F742E60 +:10EC90000B33D6A1F272A53FB403CB13BE8A0C830B +:10ECA00079CB52B216DB9973E0937A285F0B66BA80 +:10ECB000A8BFF6F312D3018F126B190C148087AD25 +:10ECC000666C2663A9CEC14DAF7B72CFD598C95C67 +:10ECD0001178DDC0E23B117F0126E3BCD64AD63471 +:10ECE000874D37BC5723F14FAF85DA67016E1C7F24 +:10ECF0008992F82CC78BC11241FCAF4EFDEFADECF1 +:10ED000089B6025CEFD62B71AF8E74D3C7B756327B +:10ED1000B6E182DF440172E697334C03F8FCD5CCB0 +:10ED2000403819FB3643FAFE05F1AAE7E0FA3C73D6 +:10ED3000517F39F8F3F1F502FE03DEF77666B3D5BD +:10ED400053185B3F49DFD808709AFFC71DDF49ADF4 +:10ED5000865A5804C72D73E15C80CF082F6B3A594F +:10ED60005A86F65D9D6A5A063C5CC4AAA89F0D1798 +:10ED70004C1D8FF0EDBD606A7818CAAEA0BF255358 +:10ED80004B784D229E57C6073FB516E6E1AD38C019 +:10ED9000101F270E3DF65924DB454814C0C30678E2 +:10EDA00087E399C52CB3937037BC7931D4430D5A9E +:10EDB000DD5AE2CB15344F8B7F7C0D40076B3E58FC +:10EDC0008F0C339C7253F06A86E37BAAD30683527E +:10EDD000AA386A4A383E80391EF9FF03378D036B23 +:10EDE000438C6304CAA1DF22C6F1C7862EA3711427 +:10EDF0008DD78BE2C979EC5CF8772DE00FC6D6E0B1 +:10EE00007F1F415F6A35AF5BE3CBACFF1D7708B175 +:10EE10006CC333CC493E78D91FF17B99D9DAC373DF +:10EE2000F7879F4E205E3634DCEE5F8570B8AF0FFB +:10EE30002701BFEE06BE3EDDC950BA695C8E7E81F9 +:10EE400083B3B3FB6DF3ED62C1C81104FA7C763E67 +:10EE5000F1BFF8DEC9B75679A2D3C8EEF7D0FC5C93 +:10EE6000F6753856FBAE4EC6B2D372F5EE4A230A9B +:10EE700053679BD83F1B32C8956E8F1195E230ECDB +:10EE8000E4CB8D66901FEE69D9681CC6EF2F864EC5 +:10EE90002730763F5B963501FFEEAE4C340EE55AD7 +:10EEA0008FE3F9C5097ABEC6077C557BEAF8079956 +:10EEB0009BF385271365EE9CBCF00A3A79B59F7EDB +:10EEC00020019E3648F193C3B88ECB43B4FEE07D5B +:10EED0004A2EA1B259A9C3C62AC93FD5FA4E66DD4A +:10EEE000721D954D4A09CE2BB3B915F9AE3CC0F948 +:10EEF000FE2D23BA08FA4BCD2C8BAFB5E1E7274C9A +:10EF00002278BAC53A58EFC99713BFC0F7B00E7E42 +:10EF1000CC3C547607F9BC98D615BD3258A01FC416 +:10EF2000D36718FBBFE6CD26E263033C96108E4AFA +:10EF300085F3A56146E70711A07CB93916BD9CF29F +:10EF4000D2ABDBEAF89FA8AD5E85FF8D69C43FA216 +:10EF5000FD4F1039A50487596C87435B159D0F72CF +:10EF600011B4C1471F011C6A14FE3D39AF3D9F67B4 +:10EF700016DE239E51E7407F3D815BB545D0C4F34B +:10EF8000A905278771108DE5E9A1254AF227882771 +:10EF90004BFE295193A1FC60E66C9AAF8759BF3BA9 +:10EFA000F2F5C645C6CB6E5C3733147D35AC234FC6 +:10EFB0005CC9221FE06F04D72DFE039F37F40C4974 +:10EFC000B0EE9440C82C0A617FB03EA1EE893AF0C1 +:10EFD000728675D3E15877EF3AD69DC212E12CCAFA +:10EFE000AE7433ADAB908053A9574C1C4F61FD43B9 +:10EFF000588EAEBFCFCE0F838E00F9A21C2279119E +:10F00000CD30FBF8295C77C0BC8A64FC0DF12B2B5A +:10F0100026E903768EC2F50B1B8E5E393DD7FE05C1 +:10F02000147AD0EE7BF88AF09916653C8AFAACA780 +:10F03000B383FD1EE4B5FFF96B993E1DF51F237DDB +:10F04000EF89260D03F587564F752204FCD3A3D50F +:10F050006C4779EFD1D5453AE24BD7AEC492B15562 +:10F06000D4AFA7E69C1B257A6E92BC5323064315AA +:10F0700020239E51CE69099A0FD0B75C4238D47CC8 +:10F08000BA5BF4665A84DB27CCD013D30BF0F3A819 +:10F09000DD60CD27A3603B5B9DF1BA49FCE113BD68 +:10F0A000FB8C1E82CB67F809FFBE26F9C8B04D4E17 +:10F0B0005BFD76E13F61FCDE626662FBEE497C3D12 +:10F0C000D32F8278883F80FAAA77D225D1C5C097FE +:10F0D000B324AEB7D9BCFCF958F0C27C6749482FBD +:10F0E0004DF0B1986777F1D430D503DCCE72CE13F2 +:10F0F000F5AF6CB3272C3D8BF3C3797655B0CC3884 +:10F10000C4FF5F3F5D83F26099A09FB39FB72789DB +:10F1100075E880FFED672F25F8AF3833FC57148270 +:10F12000FFED67A771F89F2E257C39C75DA6EECB52 +:10F13000CAE3ECF4E2723A2CFAEF8FB2B41BECD3D0 +:10F1400070DC65A25EB3ECD375E50B74E49BB2D2C0 +:10F15000E497904F6E4B0C5FE201FE0E37325792F0 +:10F16000EB0B9ACF5CF741F53094EBEBABC2AD0102 +:10F17000B4CFB8FC74C2B10DD60DE27173A74AE5E5 +:10F18000895739DC63ADEB2D9D2C0FEF5BDAE5E69B +:10F190000CF4BFA5EDF9E24B017F6B22D575A47687 +:10F1A000DA24B2E7FC887780EF0E31BE851FC0DB22 +:10F1B0001D08BF27C2F1B66DC502E27FFCC9363C0F +:10F1C000440CC340BBCDC243297C8F7649E85B2CFD +:10F1D0009E658487EF20FE6FD3D8F36E186759C3FE +:10F1E000F02A2C2D3C80E26E9E8CF6D80B53C81E64 +:10F1F000B2E0DE2BF1F5CF62257C3DC9B0EE836332 +:10F20000AFA78D80A7DA2958D7245C3F286F6A6D95 +:10F210007830A4E4469C4F71A39FD64571D3888271 +:10F22000F3396EC9791625FBA87B743D8F1C7D8050 +:10F23000F8AD6C06EACBAD163CDBA4B1F86C2BF64E +:10F24000EFE4B3E2460325199B2B27BF877870575D +:10F25000B76BC81F4AD320956B845D0ED318C27E4E +:10F26000B551FB9AF3BB3FAAEF40B9F5A8C4F5B07E +:10F2700056DBB3C205EB261C934D2F94DAF022B275 +:10F28000E314B4C742F49CECAC62238D1A994D8A06 +:10F29000B2BD88EF4972F25184CF3FBD1BC902F461 +:10F2A000330CAF8476884176B7DC98341201A4F32E +:10F2B0002CB6C8C65F5989DBDB6E8D19191BFD376B +:10F2C000BA39DFF4C7DF559706B09D9FF07316ABD0 +:10F2D000277EA840F203FC728E0F9EC3F1F5C6A1F3 +:10F2E0009F621FCBB46149D289FFC9BEDEE0198E8F +:10F2F000E2771B5628DCBE36D94B24FF5C7C1CF819 +:10F30000BF4EF68E8BC390923C349E0FF141F6694E +:10F310009CF4B3A715FC16E0BFA0C1E23A7CE7431A +:10F32000FC8472F871DF9036F07DA889C50DE8C7BE +:10F330001D1D31A732C2CFBF237DFCCC34DD68DF79 +:10F3400006D2064E718BDCFE9FDF86F65B0EB8E3BD +:10F3500026B3F1A3D043169E26B6C1BAB3EB5FC164 +:10F36000978A96C812FC001FB6071F218DF21B79E1 +:10F370000AFB395B4A1CC271FB4A9BB3767EEA5298 +:10F38000581BF165CD7C6AD7376581BE08F12F6BBC +:10F39000A48FFB1C7693E5C7757566482FB21A2EAD +:10F3A00097DD0183F8D1DDE1D65FB7D9DD5DD55CAE +:10F3B0005FBBD534D1DF97BE93F002CF849F146733 +:10F3C00057A3FD02DC8BF6FD2350A27D6FC96F3978 +:10F3D000E2CFF313DC1D4A5EFF567912C882FAF7BA +:10F3E000CF192963C2F78BA37F1CA8FE3463AD1D20 +:10F3F000E57763B9B463C6800CE5E1FEC921BB5C67 +:10F400003B9CBA91EA47B64DA1F28447FFB70BA0E7 +:10F410009F23DBDDF1D538E85F3FFAC80DFCD0CA89 +:10F42000387FECBDCF4BEBE5C877A58C17C6599A52 +:10F4300092486F9F28D62B90AF8FF42DAD6005E4D6 +:10F4400066EB4160F030BEAFAC6005ECA5A5A9DE6F +:10F450001568172CCD780CA380BE5DE98A47253747 +:10F46000FA8F355BD07F764B9CAE935D3AA73F1306 +:10F47000FEAC1A277B73F66B974587A1FE8194AC8F +:10F4800072A13D7DE8D2288EBBAFF892E82280FFC2 +:10F49000F657BD71F405562AEDD3341B3C2B434A75 +:10F4A00092D64560204F5F4D7279F2F48605973908 +:10F4B00087B5F8D1DE0D81A50EF8680AF0F5F8EEF3 +:10F4C000B044FD5B7CE29CAFA7E3D3448FD17A20AC +:10F4D000CEF45A5A5A340F770D2FADF717B8F8BA41 +:10F4E0006F7471BF66BC2BD988F3C2B5D35182EB60 +:10F4F000AB7E80EBD18076E453027F6E844F7B1924 +:10F50000FD6573AAA2237C7DD32D399CE6F68F9CE2 +:10F5100066882F0BCE26F07B5D36F8C7D27FEB3B9B +:10F520004F6E423FBEAF930DA01E5C1F1C469E66F1 +:10F53000ABE538C9B7D52AE74777B56BFB0E09E9C4 +:10F54000A60E60FBD55ABA790E7F5EB74347FB45DE +:10F55000A3EF57EBE95495EDF9BACE286F6FA4539A +:10F56000F6F6A18E5934CFD566BAB9D2F6DC826BE5 +:10F5700035BBB37976C1E777A50AB71F4861FB2E83 +:10F580007CCEECCF371FA88CE49EA30382F2C02D63 +:10F5900054465F6C406DB5F1F9EA40BCD9A8158BB3 +:10F5A000C4DE4EBF6B8C7686A3DD58FD99F9ED6AFB +:10F5B000C7EA0FD4505EBBB1FA63AEBC7671E82FD8 +:10F5C000706ABBBEF840DE73AB04BE5BE7B2C585B4 +:10F5D0007C82EFFAC05F26BE3599FA0DF08FE57A8E +:10F5E000D65D05EB7DB38BDB3B1D165FC798DC500A +:10F5F000877460F2E74A72FD80EE54E9790D53F3A7 +:10F600009E6B607FE7C97B277FB3CD3EE4EF2A582E +:10F610007F305493CEF5D299F837D55943FCB5B61F +:10F62000737813F29F8AF015905B0FB95CC25FC8C4 +:10F630001F17E6C9BE5142F3E2F1A0833EF27761A3 +:10F64000ADC90D257C9E9FABB3CD230AF32BE1F30F +:10F65000CC7B5E93EF5F58CFBB713DDAECAA97503D +:10F66000CEA13EA8AE5375B423B434D989B35FEBB1 +:10F670002339973AB4348A72775FF992CD187FB004 +:10F68000E4DB58F3EFED1C1EC0B85D77E7D1816A6B +:10F6900018A74BAFD328EE16905996F49F49EB79F3 +:10F6A000A562525C61E504E24456144B9A58573502 +:10F6B000340440EEEADC5E517583A17DE211F2482C +:10F6C00016F8647FED24FE5D13E04B43EE384E7A6E +:10F6D000E91479187D8B9EAF0CB164A1F8E98F5CB9 +:10F6E0000ACD7FBC2BF13B17DA231DB585E5DD9DE7 +:10F6F000AC46C675CEFCF155248F397DDE05FAA0E7 +:10F700001DE60E98DE42FEBADCF1E62694C727D04D +:10F71000EE998978BD208AF858A9C4A3DF89905E44 +:10F72000A0F9EF0BCE7A39F931F0EBE998487A1766 +:10F73000EC81BBEDF37547E28457B7067AA29E6071 +:10F740008B4FD1B9DFBB94CB7FF6AD3AFCBE827F45 +:10F750009F8CDD5D3D6E6CBCBC318A17E3AFAED2D1 +:10F7600002F8D8C35E46FD7422C8348C13EE7BF5D4 +:10F770007C1AF7F6437C7D007E085FEF02BE509F47 +:10F78000FB05FDACFE416EDF5D4DF1DA11E2972223 +:10F7900081A7D179D4E6CFA3BFF324F113C8F5BB79 +:10F7A000B12CAA35287EEA09B423EFE7DA4779FBC2 +:10F7B000A2DA6C16DF2BCEF731788FFC563B44F182 +:10F7C000712FBE67B6F7BAF5DE24BE532200A76DCF +:10F7D0001D81DEAF7497627C5DCB7BEE8F727C3ACD +:10F7E000F1B4FFD0B4F0F069E2381B3A75D253BDE2 +:10F7F000A8EFA660BC39D992A8A5F992FC48A37ECF +:10F80000F3E07AE2FAAC0FF517945F442317E9228C +:10F8100073BBBA97593F8DA9504F89DA7A0FE753D6 +:10F82000459733A82F35F45026437B584838DFDE00 +:10F83000889E41FDBDDE27DA55336A67E925D9C7C1 +:10F84000D7572F98ADF8BEB746CFA08DB4BE18FCE1 +:10F850000DF47F2BDB5513F11C037D56999B5750FC +:10F86000696FA6FEC4F3A0BF3DC1EB32D59DFD0775 +:10F870004BDAB5CA7AF1DEC6FFC1AA76CDB47D6790 +:10F880003D5FAFB4539CDA7ABEDE6F36535D7715B9 +:10F89000EC7F7D89A95646C47BC20CF7EFD65799F9 +:10F8A0001C7E3D1FFE946CAAB79FC64F5763402F26 +:10F8B0009BFE2836D4817CFF21C3E3529A96F7DC65 +:10F8C0005F1DCDABEF7B75DAF861DB38FB87279FD7 +:10F8D000965F8E20BFD8ECBE23BEE44256CCD81330 +:10F8E0005D3F9CDDDD08754FB24282FA0377BDB6FD +:10F8F000AAF942F06B85BC68EBF8E326946B4BFAEF +:10F90000172B28E79776FC99D6DB928C4472768980 +:10F91000900BE07EC550FF6C77FBF3F42BE86CD2C4 +:10F92000AFAD917CFDD3AA71FDD31ACDD73FADDB2E +:10F930003C8EF816D8F1411CF7CD3C39BDB4FF2BF5 +:10F940001C1E21D7970A39CE58B2A205DA6F72FB76 +:10F95000088F47FAA655A07C3D2CE9F777605CFD3F +:10F96000263FC51D9DF8B1E2811F200F97E6F4C424 +:10F9700012C73E94B35C22F404939304E7271DEF6F +:10F980002E371F6F89E52FC07C5BA6E7C63F1CE1C1 +:10F99000B858E356B9DE97011F05E28BA3F843F987 +:10F9A0006CC7D327C45BBF186713C235F3E37F6FFF +:10F9B000BD1F42BCE7C739CFA6B8D2DFC94F2F233E +:10F9C0003FCDB4D9356D7EB26BFE71BE32FF2E3A9B +:10F9D0007F2069820E30AFE936BA39E8657DF7637A +:10F9E000C4278CF31B5426334FA593134F87DBFC9E +:10F9F0002E37D8A9870FCC253FFD26C417B4DBA22C +:10FA0000E80BD18F6913F83A027AB07B8A9D2E8B6E +:10FA10007FDA00FCD69AAA2C966CE343BD270A3005 +:10FA20002DD9565C8720DC94E2785EBAD97777B717 +:10FA30004D9E00BEABD14EFE9BA0FF29F8AE16F83E +:10FA4000AECDB7935B6BB89DDC1A77E03B5318DF04 +:10FA5000AD826F609EDD77D13C2F0EFB02393C2DCD +:10FA60008E96933EDC12D243A8278E807EC3791EE9 +:10FA7000467B1EBF93E31B301E60F6BB67D8D7D50D +:10FA80006135BEE1DA42CF03F17F2BD4FEF7DB66AE +:10FA900086161590D34E3A2D16FAD99C133F9AA18B +:10FAA000FD756FBC0B9A2C752727CAD06E55E833AD +:10FAB0006D88A795B0E0D19EFB7D60C71FB33ACE9D +:10FAC000375F9F5BFD694DF2613B5EFC8D50B7D1A6 +:10FAD00041ADCE7F2F335BBDD2C6B738C22CFBBE43 +:10FAE0005246F011636F9591BD4BFCEC192E5E8C64 +:10FAF000F1AFD957342C22BB33E0D2BD9563F33933 +:10FB000032A49C97EFA0A647F58E1BEDF1AAD3C6B1 +:10FB1000A1BB3B87EFB1EB19593618EE8B5AF6B7FC +:10FB2000DC71E41E5CFFFBA19F43E4FFADB6F677FA +:10FB3000C4FE47260FFFEE8E73F3E212AAD82F60A1 +:10FB40002CA1E37AE9F1255F46955D1C9AB2FAB2E1 +:10FB500072A85BF1657D80B7CB703EF6962EF8FEFD +:10FB6000DA02F3A6C82FFA31D93B297EE9AB8E53CE +:10FB70007B9CF33868AF002E87B8FFA1A23FE3AFAC +:10FB800089939FB348D6051D12143FF60BF991AA2D +:10FB9000795CC3762726E57FC7AA6B1CED5C2C0435 +:10FBA000E3144D9233B8BFC774B17F24274E1BEFC7 +:10FBB00096A37C1F4E8EA68678C9E3BE1E782F556D +:10FBC000523C7A19F2254B4B85F7A9C43863D39F71 +:10FBD0008F73576786F242E047F6F84AB0C7311E86 +:10FBE0003DD0B96BD3EB5350D4B5933D2837C7B351 +:10FBF000C86BFF2125BF8DE38E53E287BAEB719F5F +:10FC0000D14BF13AE98A8E696897948CD767A0E85E +:10FC10007CD6C3B28928D48BF4C7D063DBB76678AF +:10FC20004E00E85482C63FF8747DF2DBAB4D6C3F6A +:10FC3000599FE1428FCE3C36E7456C3F517F07BF6D +:10FC4000EF491D9983FBF325D3F4C7F0FDD6F46B80 +:10FC5000739ACB73F6460FF01FC2B7AEF3289569BF +:10FC600099FBCB77097A297292E29E0AF021C62D80 +:10FC70008BE441AA17751CA73AF80159C49B158F4C +:10FC8000282B4DDE2BDBF673DC016B3F27B319F716 +:10FC900031CDA04271D3B9F002EDC877FBF51D2834 +:10FCA000072C7CFE4CCEDFDFE9073581EBA317F78D +:10FCB00075A6A0DF1F65F67D9BE0F98D13B0FF8070 +:10FCC0007AC57D08CF03D6FE7C677C0BCE0770C655 +:10FCD000F371C4FADE2DE60774DF2D237FD49B0673 +:10FCE000EE2F9C78F51AE2D37787AFA2FD4C8BFEFE +:10FCF000A7D0BBBF61CBE87A8776FD9E6C0BD2E5BF +:10FD0000DFE5EBE74400CFFD3E4E173064E6E0FE52 +:10FD10006A3FF2D06718FB75F797894E725CCE7A0E +:10FD2000900FAB0F5E87FBD67D2CDD8C7133539328 +:10FD3000C5FEAEFC37DC47EFC6FC13E017CFB4EBD3 +:10FD40005409C6F1BADAFFF3DBA85F7ECEF373D6AF +:10FD5000C0D2B6FB79CE528E24EEB3DBBF45D1AC18 +:10FD600084FA31260BFD0B7A1FE9D627F0E2AB6649 +:10FD7000E6E722286FB5EDE877BC27F37D9CEECE51 +:10FD80000379F94E5552F25599F6BB5C87705FC501 +:10FD9000937C71D3EB206F9E93356B7DABB46E84F7 +:10FDA000BCB5E4AA3C4FA575685B77CFD1BADBCD73 +:10FDB000E9E35C777F618D2E03E63DF9E0A507302E +:10FDC000AEBCB673E41E5A5FE97964374CD66C1F3B +:10FDD000D8E4B75CCBB2BE7373F93872BFFCBE5DBA +:10FDE0005F38F7F3DF928311D23B8E3C1AA563F2A2 +:10FDF0007DF638BD2B9A64B82EAD7DFCF7717DD8A9 +:10FE0000E4AED23195DAF774EAF7BD3EC506AFF03D +:10FE10008F260BF858FA72926B5EC143D6FCF6BD82 +:10FE2000BAD4EC073ED80CE60DEA9BCD3117AD8F66 +:10FE3000C9C52091A5DC7A95D330BF908DCE8EF9BF +:10FE4000793D9CBFBFDFA9DD8BE3AB084329D6A377 +:10FE5000F7225C9301513FC2BC98CDF3088E513C10 +:10FE6000BAAF5F8B71A1BFC428C6C5AACBB30CE5DE +:10FE7000B01CE7E339C761DBCE4087D827A3C32492 +:10FE80004F613AB00EF8019CD56210279F5BF4B029 +:10FE9000EAE0E785ED7EDEA9FA56BF17E547AAB38B +:10FEA000E65E9427DDDAED6A92E2712C837A418E68 +:10FEB00071BE96D3098A4F433D8E73F244F87B8F0F +:10FEC000C89FF4A44DB52A42F538B282AAF3F7AA26 +:10FED000F8BEB77AB554C9D7153DF789EFD85F6139 +:10FEE00076B372794C6ADAD0307EADB631EA271A31 +:10FEF00033541C97A5787C85616813F0BA43B4D756 +:10FF0000B5FDB3B1DF09B134C3B82920C698C272B8 +:10FF1000ED32024F4AE4F5D9A82663310E27502767 +:10FF20006E6F77BFE84F892512383E6BCF7FBF4D8C +:10FF3000F453A47F1FC50FD362A63607FB4972B8DE +:10FF4000BA3BE3C4E756FB2D56FB18C8336C17E7E2 +:10FF5000ED3CEAE5B42EAC769BC5B8D5D5F2EC2ADB +:10FF60002803B17402F707307FD23E7E5AF4571D42 +:10FF7000E3F1C9759D0DF7BD4E7433A8B4D699D57C +:10FF80007E83686FED13CB18D744FBA3366D603CBE +:10FF9000FCAB1E2ECF9C25AE074C819D82B604DAA9 +:10FFA00017C007685FE07AFD56894D9E38F99FF1CA +:10FFB0007A05FCB8DD9795506E59FCB7FFD0F9541F +:10FFC0003AE30E2C05FC67D31FCCACC9AF77C4EF66 +:10FFD0001D95DB586F6FC8AFB719F9F564737EDDF7 +:10FFE00048E4F7D7D092F7DE8223D5A90F344DC16C +:10FFF0003C081E474E95B272F497D2A5DC1EDCDC9D +:020000022000DC +:1000000019A5F8DF7731BE4C71E6118A0BAE15F1F8 +:1000100041D0CBF47E03C617891E1AC519B7760ED8 +:100020006FC27ECB3B3E35D0047A61AB6754DF6E46 +:10003000F5A07E68CC97F7324B18B8C590F2A52989 +:100040001E176B1B925C367CEDF1F0FDFC722B1ED3 +:100050002DA7257B3EDD1ED1BF251F590CA8586654 +:10006000D76B837B15AED766A05CDBED11F91B3A2D +:10007000582EB6BC21AD5ADB8B29D15592B107E180 +:100080004C95023C24171206CAC550A34EFE603997 +:10009000D8D7382F7FCD60D645F132FE3CDC0078D2 +:1000A000B0F147AA384B79AE7D8B18C5C1BC512D34 +:1000B000EF7D54F8ED93DDF39FC1F126615C601C88 +:1000C000E6CD2E29E77911433C2F584AFEC103F3B0 +:1000D0000B1EF492FE0CD6F37C8CE9B2F12C3E7F21 +:1000E00016E53BDAE32CEE4223ACE4F2463FC9339B +:1000F000A16F6DF958BF20FC5F9F8F7FB5DFA0BC5B +:10010000D9673D427FCBC972F42BAE9692BFC4FE35 +:10011000594D54B5EF37B90349EACF6A6FC13B4136 +:10012000C98727A818BFC1F146FB65D06F1053F3EC +:100130004CD3058BAB12E10B611C4DE7FE8C032EFB +:100140004F3787ABE4F2EB55ECDF9A0F6B299CBF7E +:1001500064E5DF58F3B5F6F397205C30FE71611764 +:10016000968C4B4667D8E27E7E85CB81513F8809CD +:100170007F50E46DD00FFD46AC639E9BC2F76F01CC +:100180002B66D17968A7834183F2EB2B3C5F727CAD +:1001900092E7D16D59A1EC403DEE692B5B4CF9BF64 +:1001A0002ACB521E627BCF0A89F230DA49C8A828CE +:1001B000E926E37C06A90C00DDB10CB1112AAD38AB +:1001C000F2DB8B86BF8644B8D39BF42980AF5BD526 +:1001D000E4599872F2B5CF0FBD86FBEA3E85E37D08 +:1001E0009A6C78F0FD69DA2FC4E70166F815DC87B0 +:1001F00066469142FE647E3EA8B53F0FBF17833628 +:10020000FAB3EFBBF2E8047C558AFDA05D87705A13 +:1002100078678148C13C35A7DF04BFD703B34ED709 +:10022000BF4EED54F41B6DFDDF591452D01EBBB709 +:1002300028F453C4F7E1555E8A27BCE6E2F920D6DC +:10024000387B57792B50FE0EF74DA3BC857D7DDEA4 +:10025000107ED7D33139648FFF0EA726870BE53583 +:100260008CBE47BB01E4DA4CC12F8D02AE45B2A66D +:10027000A0BFBEC8ACBCD76E6F2F3279DC6891CC02 +:10028000F96151C735DF372BEDF3E77EB4F3BB5C83 +:100290007C6B7812AE17E73985339D6F38E1CA342D +:1002A0004B937378F37B4C93F261996110D63F794D +:1002B0007FA9FFE6FE0E20BF8ED5DF99BE1FEBDCC7 +:1002C000C6DAEA4C82FC6B19FAA39F9003229FC7FF +:1002D000CA0752443CA12BCAF37A584D9CD6AF12A0 +:1002E000E06736DC6989EB1991D7A3D6B8F2F285BD +:1002F0009DF93CACC594ECF9C9567E0F596236BEE7 +:1003000056C43EA65BE3F6BC751E83628FE41C7C7C +:1003100033EF7C831CE076F7DA9ABABCFC60EB1C06 +:1003200001A6B9F1F856FE7763AF37C77857E7C330 +:10033000FDB1BF0BC8FA119B7D31F677323B628B62 +:1003400083DD8BF289E2C71F519E38119BE69D9D8C +:1003500088F4DBD7C9F39EFF2267BF8878FACB8881 +:10036000C20042F64C31DB8F29CAA624E9E8F71A0D +:10037000DA9561D4C7C64BEE88AB522017EACFBCE2 +:10038000D34CF1AAAD8A47E8B12137F66BBCA7354B +:10039000A11FDEF81DE817E5F4BB8AB413DACD7EA1 +:1003A0002FBB18EB178EB478506EFC6CF73E1AF723 +:1003B000E6914B64AC3FA8F03CFE3F3DFCD82C06D8 +:1003C000FD3CB327C8B2647F6414F48B6E7EC24DCB +:1003D000F6E52D8F06697DDFFCF86D0FCC837EA5D9 +:1003E0001F04099EC6C7973EE825F8BA089E9B9F42 +:1003F000BA2ABC11E1FCB51B7D05F6CC2AAE6F6EA6 +:100400008339ABF0FDC83BCA03F67D310B1F561D87 +:10041000CC97FD98327DF3AECA196E1BBD6E96D98E +:1004200097D16E32A09C5FC0EF7951C8ABB7DEE1C7 +:10043000F982D2AEBD0B699E83D7D0BC2526C96F89 +:10044000007EF60ABC413B9A8FF990949902EFDF47 +:100450007A48E2F31B9CBEDD5789E36F575AC9BF48 +:10046000E7FB3100FF97D14E6ADA35A37B423DEEC0 +:1004700047575662AAC3C58FEE21F98AE76B24A0BD +:10048000F732C6D7DDF25DEE2CFA47CB9EB88DF27F +:100490000DA14EFED22D8F3EFB9419C4EFDD79EBFA +:1004A0006DD9E03AF21F6FF9DFDE7816FA3FF69267 +:1004B0003BEEC37E9EF6E4C57D8F0DED0C215D2ED7 +:1004C0003A991F0FC6714F96D0388B94F0A9DF016F +:1004D000E629AF7CF9601F8DB3FC897FFA03EAEB54 +:1004E000E5CC166786791FC37F949FEAB7BEA7E461 +:1004F0009F07B8D52DCE03EC1A5750FF8D9E0310E1 +:10050000FAEF963D7FB9DF84F1DF7AFCCDFB71FE17 +:10051000B7FEEDCFF77F13FDA79FF8348C072D7F33 +:10052000F88DFBBF01F3FED3D35E17F2CDCD0FFFE5 +:10053000F1B56F42FDFD1F4E2B41BB33E4E5F6ECF8 +:10054000F1C73E28C3FCFEAF3E3B773CE2E1AB4F38 +:100550005E3CFE74FAEC38F057C66B5FAF19A2A789 +:10056000FEB4C40F4A3D234A07FDF63DB1AF02E198 +:10057000FBD3CB3C7F62393CEBA8433ADD46F9B56F +:100580005847BF69D9EE5E3A6F712ABECD89AE2851 +:100590005FF7984ABCEC89ABFEF9C27A2C3D711D1D +:1005A000FB63233D185F747E374AC797808EE79DB3 +:1005B000FA7EB93887B17C771F1F7710E8183A9513 +:1005C0008E7FC27F5C702A1DA77BF3E9F8FE43D7BC +:1005D00086B3F8F2897105E3BF161D6F7BF20BA796 +:1005E0003D3F72DCB18EC7C2739B88D3FF97625CBC +:1005F000E8C575F878911905BC1C7FC59B9907EF74 +:100600008EAFF9730503FE38EA195988EB71E45986 +:10061000AF86F9038B9EFDAD82F2EDF893BF547463 +:10062000DA0F600109E4FA7136FA1B42394FE70626 +:10063000104FDF0F66310EB1EC5B6D44AF65992B47 +:100640009BF5103DA7F8C4B20C5F07CB327BAF9689 +:100650000AD0EF0E6F09B74F32A5C23ECCD1536A14 +:10066000403A1EBA04F96E2C3A5AF3D670DEE7DB34 +:10067000E86A7A4EBB3E8F6FF7CA12BE17E77896CC +:100680007FAB99E86BD9F5CB33D26F0BD17B74BFBD +:10069000E4139EF359EE2D7CBECE9AF799D6F599C8 +:1006A000E7F5C9F0B6100F83969E8ABF556BBC2440 +:1006B0009F5F9BE1A5FCA8431EFDDE95B03E475E13 +:1006C000F030CC935C58F7078F5E208EFD9FC0976B +:1006D000BA8D2F931DEFAC190FDF25BFC5F58B73B6 +:1006E0005F29F92D37D36DF8797B124C14DA2FBFBF +:1006F000DF47F9CAEE9FBCB210E5C2F29F04492E53 +:100700002CF38E3C48FBA1DFF3327ECE92E7372EEE +:1007100015F1C27D4FAEA4F6C7E13DB67FFB879DC4 +:1007200047BE0EF3B869336FFCF6E3E17319ACF31F +:100730005BE0DFB83FBDF4B96F5E81FC8A75DC4FCA +:100740003D52DAFE14CF639E3403C7DFF7E4091A83 +:10075000EFF8A345143F3DFEDC1F3E87F87CF3A96C +:100760001F9C8BF270E9668F6E8FDFDC643FB76C85 +:10077000D3BBB70CAE1F227D83EF797BE923B17623 +:10078000D0CEC2F1D16EB9E5E9B0E13B37AF1DF58E +:10079000B3DC3BF2B538E93D7382AB81E83B01E95C +:1007A0007CCBAEFCF19FF0F2B8C5726564096F9F17 +:1007B0009EC0F96188BEDB2BE4BAF5DEF9BDD5FE3B +:1007C000396F95A31FFEFD322F6B2F946FF6A29702 +:1007D000C7536ED9F5E1B4FCFE38DF9E3A0E7F7E3A +:1007E000DCCFFDDCDB9E0A12BD6F7B0EEC9E73B18D +:1007F000FE33CA17BFEDB995449FDBBCD985689F0E +:100800008D3CE66568CFBCF5D80BF4FE2D4FB6A243 +:1008100004DB3DE33B84EBD709D76D835E7148333E +:100820007FDC2EB13FD52DF6A7DC627F0D3C8738EB +:10083000DA71146FC6FAC149E47F8FE53FB8D54A33 +:10084000713E9CFB1196DFB006F737308EA89A4CAC +:10085000B3C7AF19CF5BFD2F077F289EA486FE9EEE +:1008600022B104E2D72327292FD9138DCC00885930 +:100870004F743EC58BFA6B355A4792CAED2F2FF451 +:100880004FF6EEFE01DAB75563F2BBF6F5EDBB218C +:100890004C7A9355DB9E57518A1EE513066AE1B9DF +:1008A0008D2E4A04E0CEC357FEFEF98F47CFEB985A +:1008B0006E5C77D75A812E4421F0F12BD6794AB954 +:1008C0009BBF2FB65E77F3F7629D2E6FE5EB70DF6F +:1008D000A230E1D1C2C3B5CFF40E611CE3DA67CA1E +:1008E00029BE716D60DA1B88D71F8B3C38B3D89B4B +:1008F00041FA9CF74CE2AA7F82FA97DAA6D079AA4D +:10090000DAC1C4E5D3A17E7DDB648A9B4D56399F55 +:100910007F71BBCBF440FF2443D1FEFCBA44F4FC0E +:10092000323A20F0E122A62BDC99CA10FF2E668312 +:10093000415E1F2CC57371B6EFDD01FC7E8544FB63 +:1009400064D7FDFAA5B988C3DFBD74985258BFFCBF +:1009500022538A60DC454FE83D3CDC21FA7B06FAF5 +:1009600073E5FA1BC59FAC123E72F851095FAF8C5C +:10097000EE7B982E7A9FC32FF999167EBB7CC07FA1 +:1009800080BF6BC32D9F6705F87E149F81A96FD030 +:100990003973018F13BFAF30F3D9619243FD7C3CB3 +:1009A000713EDDEAFFCFF80AEC8757A00DE697BC51 +:1009B000129ABA9FBEF30452A8C7AF63831EE4BF66 +:1009C000EBD910950BD9089549A62958B6E20162D2 +:1009D000286F60092AEFF426136A29C68D8667619D +:1009E000DCEB4F9392679521BE5F2C6C0FE5EC1BFF +:1009F00053C47544A9AA4C2DCB9D3F691D7EA713F6 +:100A0000E16A05B2A23EF1314B4FEB0AC63B5A0FE9 +:100A1000FEF143FB7B36FA9EC7F947FB51F9B95A01 +:100A20005BBB3C394DEDA442FD403D2F5FC359E710 +:100A300070389FB7AAFC1C7101B8985986FC68FDF4 +:100A4000F8F7AF4B83E7E0F9F8CED4854D2990D382 +:100A50008F940C4D50A1BE2A35BB1BF307F780FBCA +:100A600084FBC4506F3263583716A21FB75806165E +:100A7000B6EDEBA6542EAF532ACFA382F726BEEFD6 +:100A800016753CBB8E47ADF0AE8418D0FDF7BBABFE +:100A9000FEED1C7D6CFAB4F67FE4D50BC87770C808 +:100AA000F5C82CEEE753DCF3A771D3EBA6F83CC9ED +:100AB000AD4F1AAF2C61712A232C41A595FF10650B +:100AC000692A27B0412A636C88CA0A3642A5CE3407 +:100AD000178F0BF0755085716DA84F6106957B2AB5 +:100AE00041FE47305FD01F47FD72A678D18F54AECC +:100AF0001FC77F4926B9F41EE80937D18DCB7F2760 +:100B00007EDCEA03F775DBCF7F3DA492DFBC6795FF +:100B10004EF4B19EFF48C8AD1F09F9BE67559CF25F +:100B2000CA0F3FA4C631DEFFFB20538A018EDFAF20 +:100B3000FF6D159E47B3DA3D52C2E393270FFDE0E8 +:100B40001C3CDFB14E357EACD27AC912DF5A7CB480 +:100B5000580DF07877BFE72DBB3E58A026F6A93098 +:100B60009F03FFCB4F76DFED774A64F7315DA275C7 +:100B70007683A0DF232583C7F09CBCB9C1ABA31C3F +:100B8000BDA1DF7B08E5004BCF35ECFDFDBB980731 +:100B90004BDF4BFBB9379C211E7403A011F9CFD951 +:100BA0000F63938AD15EA6D884ADBDCAF8790ECC06 +:100BB00007477F3624FC9CB61D1F44319FEC88C03C +:100BC0004BDB6B3C3FFEA888DF6E14FB7887541E1E +:100BD0006FB7DA1DB1E0354EB94FE008E245CD5CA4 +:100BE000CBB81CE779044795740BE269E3B5FCBE0A +:100BF00080E98D0B6E41BEB85B4ABC23519C83E3F8 +:100C0000677ACBD7C87E997DCEAE283E0FEFF652DD +:100C10003EFDF45D5E03F126FBB8FD30755E3B9E44 +:100C200024636F5E989980FE401BE63BF1B85088C4 +:100C300094354B90FCBF45E0E6D8EE8B4F1B5746F2 +:100C4000604D5B9C8C4E56E6C9A312477D82A37D06 +:100C500055DEFB8998AE0472606280658350EE5960 +:100C60006DCE46BEDF08021EFDC549A8B0807E13CA +:100C7000418EE0FD171896F397505E88A996D07BB9 +:100C8000E616EFC3503EE01A6C46A24671FE805F46 +:100C90004D1EB96C4D25AEE394D49E37FF11D53E61 +:100CA000FF320113F4C3B0DF8D2D751ABECF28ECCF +:100CB0007684E79E0B393D6A5BDE5F88F4A8AD6100 +:100CC000190F95D92AC4B75FEC1B6F57B4EBB0FD71 +:100CD000B13D5E41BF4B6EC2F635BB7A13584EDF55 +:100CE0003DED46A4DBDAA0D64A7607F48BF4AC449B +:100CF000A702E878CF43DECC6AA46F6319E5F5015B +:100D00009D2AF0FE84379F04C481DE7CF3A1132D5D +:100D1000B83F5CD372CF7CAE7F032427D488BE0358 +:100D2000E389F53E2E7F8F61FB30F159BD0FF96FDE +:100D30009794B74F917AE852DA1FBA7878C5CF26E0 +:100D4000C1B86FEA8CFC202F1B0C5520FFEF7233CB +:100D5000E4FF3D93385C6F66940CCD07AABE122A5F +:100D6000CD2096B104D909E532AF03FE0C5C6FD3F8 +:100D70000FDEF427847FBEE0C34798A9A13C3CB6B0 +:100D8000FB2B74EE764323ABC3757FC2C3EF11B95F +:100D900065B79FE65DD6C8E8DCE6ECDD52F6228C4E +:100DA000E3F52B74EEF3E696F6B3B09D77B7A49314 +:100DB000D0FFEB57B213A0BEE33A9E2BD5D492A935 +:100DC000C0F8DDB11923510DF0F31C06DD000F1B37 +:100DD0003F6C8FA21CAC8E29593C5FFDDEF08CEB82 +:100DE0009E67382FB302E3541BFB402EEB9C7FD44D +:100DF0003AE22B16AAC3F3140D5BBA69BF3E4DF756 +:100E00009A58FCDFE74953FED4C2BE1F3545F0FCBB +:100E1000AEC89FDAD677B01BEF45D9F824CC07E8E7 +:100E2000B4D1DA9FAB1951EDF75F2C15F4B1EA1B81 +:100E3000C57D32AC7A44E4218DA8783EF2846750B7 +:100E4000C138E5ECDDEF1C984C7850E97EA513AF76 +:100E5000AE3C8BAF774947BD60E10BF043ACE0DDC2 +:100E6000BD4842FF65141FEB4FD239540B0F4F237F +:100E70005E4A917E329B5397C3CBDDCA900BE59EB1 +:100E8000F914233F65FA82FF6AA1FB693A3EB50572 +:100E9000F97AA3AF58C4A947E83E8FBBF11C732071 +:100EA00007BF57E3FBD9EB7D3C0E9DF2897D4A31AC +:100EB0005F80C929FF7A902F553561E0FA5C5D7437 +:100EC00005ED936DF489FC6B7584F2240B7CB7DE21 +:100ED0008772F3EAEB8C352CF71DE02DEFDCF60979 +:100EE000CFC8CB8B613EB700DE56EB88C715C47701 +:100EF000373732C2A30D6F797C3516FE2CBC39F919 +:100F0000C9C2C3749965F11E1F168857E17EFF6E32 +:100F10001F97FBD67BC6E2555FB0C1B75BE0E96EB9 +:100F2000BF785FC3BFCBBD17DF87C479F16AE77BAA +:100F30008E5FE0872FE3FA2C437E90703ED6FAB99D +:100F4000F2A69DF0DCFB04E71BEFAEC7149CC7893B +:100F5000E28C82F0DFB26B05F14B532C598EFB8D86 +:100F6000F7ACDF457EEF31C7FC50EFA3DEF8A37589 +:100F70009F0126A1833E8CA960D2D515D20F3CCE0D +:100F8000CE1A781EAA25A7C7B4BBA36038CDCAE580 +:100F90003528621FB7AC34F973A4B3B76548C1B044 +:100FA0009D5E3D7C099673DDF3284FC53BC6F9C9AC +:100FB000A39D606BC2BABDBB53C5BB8F601D6B5494 +:100FC000DFD419A532D3A9D3F3C302BF7E17D7E369 +:100FD0006B1DF7A8BDE2E3F10EAB9D07778070BFF4 +:100FE000AE86E701C8353D147791ABF9BD38D6FD23 +:100FF00010C09F87116E70540AE609C20B49E4497C +:101000001C41FE2FBB9AE70994B5F03C890D825F25 +:101010008E3BEE6B3A2EE0382EE8FE6B5517F8E368 +:10102000FBD6DE98B89F42D4ADF32AA7C1FBB054DB +:1010300018EF1F20FCB7A50F5D52AE533E18E5C355 +:101040005AF9AFEF35B2CCE9F2CB2DBC5B74E8EBCB +:101050004C527D53671B95E1AB39FE329DED543701 +:10106000A484E29F89F7A89C7EFE457E2E473451DA +:101070007EDC79DEE3CBBF27478EF07B66EEB97668 +:101080004174313C9FE8E7E719C1DCCFA397D50F46 +:10109000D07322C267E56BE03E2DCA995FAB8949E8 +:1010A000F81CFC8BC76F9472F09CC9CF3C8C79D72D +:1010B00053727EC0EB986FED39DDFEB151F702DF60 +:1010C0003FA67309FF2125A7FB71DDDF75B382FA07 +:1010D000DBDD3FDBC4301CD8E5E7223CAD61FD7DA4 +:1010E0003A296B36CFC5BCEA56AFFE14D6DF699CF1 +:1010F0003817F3AA5BC7EB5F433FAF77ED597351E6 +:101100007FB59EC528DF77EBDA6BD6A0FEFAB3CFAA +:1011100038DF4FFBF99E62DC3775DAC7A7CE2B7F2D +:10112000DFF4294420E72FD39EAF047CD5E4FF876A +:10113000F88A89759CBFAEADF7B09E12C44782BFD6 +:10114000CEC44F5FF0F3F5B4D0E227C147FFE8BC4F +:10115000C7A13C2920979688F13689380DC8C594D7 +:101160005D7E5AF2B4CCCDDAF1FDDEEB1EBE0EEDA3 +:101170001FEFAEA955744ED69DF91DEA29F6885287 +:10118000B7D3C69F0F7FF0C084F96802BA325B768E +:10119000E0FB87E13DE077C0D31EC5FDD5DAD8FB83 +:1011A0000BF13EACDA792C3305EDD579D9AACA73A7 +:1011B0006D724FB49B1E2B5B8CFB2A0B049CFED1E3 +:1011C0003CC876D2C36B83621DC9ED743F5C9FB08F +:1011D0002FFB26BDDF22CEF9B32CE6976ADC0EC5C5 +:1011E000F7FA79B9FE404E8AFCAE5139B980F8CC95 +:1011F00061975A7272BF2FD1C7F990CBCB7F942ED3 +:10120000D0DF263FD92F49899F43F9C7FA037A9146 +:101210005E437F411176235E99C5E2F173FE3BE0A8 +:10122000FD9FFA3ECC9266144816C6FC3DE0076F5F +:10123000FF2A86EB15D6D733883FDFC07613F5F04B +:10124000F2C641F25BAD75A59CC5F9D6EAF7253F1C +:10125000D7532F09FAE34F073A4FA57FF07A3FD4CF +:10126000A7E13F408E4D13E7986A589AE226E7B00F +:10127000412A6BD91095E7B2112AE34C736359C721 +:10128000E26E9167360BCB5BD5E4F75035DEE94D66 +:10129000FE12F9E64F9392FF82793BAB8B967D0667 +:1012A000E5C06FFCC2AE74C42D98D8E739531C63F7 +:1012B0003C337EC7F9313FEF0C7F639DD3320A9CEC +:1012C000D3FA3BCEDDBC85E38E79EEE63CFD1D3ADC +:1012D00047C3FA48DE5BE766D6977E7D2E9E9B2944 +:1012E000399F917F125AB7E15FE93CC7BC8449300E +:1012F000BDC40AEA3BABF48CE7798CDDC50B34CA7C +:101300005354F93EA62CE28AA37A1983D3A5A7E603 +:1013100033FE778FE3EC7F89920816119E47EDAA82 +:10132000725E1A561EEA547C9FCB2BE5FA602CB8ED +:1013300056172D6CB09F7B7317CF6ADE0B53731556 +:101340005D1FB7EFC35AF31D6D17E0707DD2BC4F20 +:10135000907F2182CF91FFE9D45356192FE2F6E80E +:1013600041BFF1A9A2D2BC7CC9F3B09F02F992712E +:101370007C0E7C3BA3A8F454BE3DAA0C5DBB14E4D8 +:10138000F51BC57E8AFFED7DF157E5742F42B1DF75 +:1013900045794022BE669D67EB9EC0E391EB326EBD +:1013A000CA375F3734475F05F59D5185B86F67CD04 +:1013B0009CA2E968A7A4DCFC9E04113753CAF7D3AA +:1013C000FC7E1EE471B17527BB66E17766037C0382 +:1013D0004DE63418FA2AF4C3CFE67E59DBB8939B66 +:1013E0008BA0BEF595A514DCFDAAF86EEB76717F97 +:1013F00018FE701F756662E7DACA5C7D6964FE4E8E +:101400005C47370765C2D31D7D9337A00BE2ADC1A2 +:10141000C02EFE4C37DFAFB4CAAC9BEF77F2BA13E5 +:10142000DF61B15FE67C3E33C4ED85F085571FB8C0 +:1014300018FABFB18D9F3F8175BFB71CEAE946D04E +:1014400095500FA778BE555A1E31D1654A371A40BC +:1014500079BCC76D1873F4D98A229EBF144A3D40E7 +:10146000E79CFC6DFCDC8073BC15457CFE6979D87B +:1014700074533F2C6E42FF21E807FDB5337D7F5347 +:1014800011BF47312DCED72E1D5844F9544B378FFD +:101490009710BF56BB55457C5E3B0D97B88F2541D5 +:1014A000FD1F1EADB793FF188C24EFC7FB5E825162 +:1014B00085F822B04DF27D06EA810C1786E1C6243C +:1014C000C52FD7C07BF44797B26405CAB34179F002 +:1014D0009525882F801FB712C20312E1472E69BBE2 +:1014E000FFEBC88717A42F403CDEB1FD4376368C56 +:1014F000E30AF2F3C261ED24DD5315AE1FA1737C44 +:10150000A1C6C2F33C1A14769CE0DB9090BBC1816B +:101510001D849F090DFC7CC556CF607999EDFBE9D0 +:101520000EFE72F67B6511F7D37BCA1F243EF6CB05 +:1015300049BA677A694C6178DF8B6BDB2F0DCC9BE6 +:101540000FD7BBE297A22E88B7D37DAFFD0D62FB0C +:101550008F0DB7E0FBDE9B14CAD73C2AF8D56CE4AC +:10156000F9D7CEF13E0C88F85DBDAB19E1D978D33F +:101570004FCB915FB60547A2915A7CCFF966633095 +:1015800040F0BA2F7AF00A8C0FB91F595C26E9F6A1 +:101590007EF8BCAA5D990978AE725FD1EFD674C7A8 +:1015A000A08E0154B0F7FFB2FED01AD407DFDDEEF3 +:1015B00016F4D5291FEDF9CCE489980A7DE4568507 +:1015C000F2938F26AD7869D687EFB7CE4ED2BA3276 +:1015D0006F7251BED796FA5FA9D3A0BEA5DA45F8BF +:1015E000DE9EE90A213F6C372214DF5B189EBF0F95 +:1015F000E5CF96B639774D45FE4D574BB45EE0DFEB +:10160000F22C3A6D46DF6D10F78C6897B00CE651FE +:1016100016372AFC3EC7383F9FB4EEA49BEFB33683 +:1016200028B44FABA55FFE2612596BE4FEB716BB7C +:10163000E72B9CE85C1F5BF7586A62FF4E6B52F227 +:10164000F241E07DA08DEE5BE6F7435A7084875C43 +:10165000D925D83EEA3FB438C4DB95D5117DB3B364 +:10166000E07971744105DA2BE15AD7A1C5E7E6E2CA +:10167000FFDF9578DEB47981B203E183E706D1F923 +:1016800033BC0EEF5B1E473E3E3092E071DD4405F9 +:10169000C6F9C20D47AE47F8C203BFA5F984713F32 +:1016A000114B231FDE2B42C6B1229B5D61F177A84F +:1016B0009EDFCF49FB7330FE1B8BF83D2D2171DE81 +:1016C000F2BB92E0B71BADFBC3A1157C1F14DFE397 +:1016D0000FEF7D449B0FEDB98D4FB2DD38E9A0D8F7 +:1016E000AF7C6BD04DDF6F6EE1F7BB1C55787F6F21 +:1016F0005CC6C70936F6ACA0731E0DB6FD4786F76B +:10170000E7703EFEAE94F3BF719C721CA72A57A7E8 +:10171000F35530EE63FB4B2EAFC5716E28A17DF6FD +:101720006E8157FA017DE8D2039023C59ADF381BFA +:1017300026F75280DB958F89761B0E68CF63BED566 +:10174000EC5F1C54D12EFA8F4094C65FDFF02E9DC3 +:10175000CFDEA871B827B473FE9A101D5131DE791F +:10176000634AD276887D58DC17D5053C4CDC831360 +:101770004B69195CB77A4A3230BF19733E5CB34487 +:101780002A30EEFFB59B2B10D9A1C67725C25F5436 +:10179000D0A18DE367A30EF21EC6DD9A92283FD832 +:1017A000EA774203F40B7CB115E040BDFBC6808BA9 +:1017B000EDA8CCCD97EC51C053EBAD2EE2AB580366 +:1017C000DB8EE75017B733CAE3D9191B7C01BF3B47 +:1017D00072B757C7B8393230C25521BE5BDC0070D2 +:1017E00041BB8DC6480AEDCC9DB7BA18E6C154B4CA +:1017F000F1E78B077EB012F72D76AA1C9EA56D1C13 +:101800002F159BF9F3A5621E3736C03C10AE264E4D +:101810005F40ADF9910BC7E7FC7DE426B61DF705E7 +:101820009449C9A1A928DFDB9986F1F4AAFE7CFEC0 +:10183000B5E6356514BF1CFE5063998E7838CBCC65 +:10184000E71F0BCFADA2FD149C37E2BF83B793F126 +:10185000066F78DEDAC6F13FA581978BC53EB80BDF +:10186000DFE37E3ACE07DF373E45657FF486218988 +:10187000F4B6A2634E7AEB80635C2029CAA580C0CF +:10188000E3CE17806C28040638FD5795F8B9FD7132 +:10189000A142FB988136DEEF63AEC416D463E65AEC +:1018A0002FED9B607A826EF31F0E7FC8F392D75F95 +:1018B000A8EC427CC10424E26B31CE632E8E6FB360 +:1018C0008ECBB7BAF3795EF386B8B20BF574714379 +:1018D000C91C05E561239773C5F123DFE642207F2C +:1018E000DF3F7080DF231DBD211FFF301F03FDD5AB +:1018F00051396A301AA7CC911F80ED8AEBF09AED2E +:10190000B239285767DAFB87F7252FCA248F0307D8 +:101910001255247F0F6C9B8F71E21247BB97839304 +:1019200069FD050EB4BBA81D667740BB5E11FF4084 +:10193000539CD551B91F4BD0ED6611AF9B5209E2B4 +:1019400045664DB81F383B41F7A2587AAD7F8632C5 +:1019500023592BE8534265969DE65C79FF8CB2B320 +:10196000516F070E24AB34825BD779A95169C163EB +:10197000B54FD731C2DFDCA0ABE0BDCD5AD3DFF22B +:10198000F2118E85CCAFFD02F1F93985ECD92ECF5D +:1019900008DD87D7F5640023E1ECE1E2CC04BC2F3D +:1019A000EA90B04FACF158EDD5641F636A15CE973D +:1019B00089FBCCCF09D66CC7F530DD30C94E9E5EB1 +:1019C0001D93BA4828F1BCD035CCD0514E9A31176E +:1019D000F1596FB4E76BF4772F525209CA870D0D96 +:1019E000553D28D706DB990BE5E8012187E7B40FC1 +:1019F000D3BD5BEBF7BA18F2EDFA1F1AFAEFA0FEAF +:101A00003EC080F6E49C86743BBEDF3A2540EFB7CB +:101A1000FE30394DB3E10533F6B9BDCC646147BB47 +:101A200044BEA054C87EF697CE57D06E3B6B6091F3 +:101A300089F1FAE281E2D92887F52610B1980F1AC8 +:101A400005F440DD2FCEE5EB063C075F15704BEF4C +:101A5000F518AFAFE9CC727FB996EF279CB3FDAA1A +:101A600066BCAFEB9CB35D8338FA9AA1A671686F30 +:101A70001C697391587922E3CEB35F47EFDB7A2973 +:101A8000D387F716CC1C70E18DC36CE7E68BC721BA +:101A90001F8DA53F8A03675BE72E490ED13A75E794 +:101AA000F4C9064DC8F101A14F62C3A44F62DB40E7 +:101AB0009F08398EFAA44AAC6FB09F5661FB299BF0 +:101AC0008BC90EACDA26911CAF1AE0F27849743853 +:101AD000457209F58094D357A09F287F119F637D9D +:101AE000E236292391FC48FC1CDBB76E1E4FF2F353 +:101AF000C6A8310EF3D66E6C91693FD392B7BA90F7 +:101B00009F1B1B5DC45FA16D12DD9760C9D7B3C475 +:101B10007BFD56AE57CE4AAD2239AA6FE325E53894 +:101B200096E5F45D4540E7F741B70F929ED0857C7E +:101B3000B5E8C3E4F869EFC75FB36DFB6CF223B699 +:101B4000ED955C50AE8BDCAEE0F9D9A4C37E9F2846 +:101B5000A610DB7688FB39B772BBFF4879CF153802 +:101B60008F9EED8B15F44327C4B91E0AC4963C889A +:101B7000727229DAF36427897B1DDADBE8FC4E50A8 +:101B8000C01FAA1FA1BFB3121E987FCDD964B70F83 +:101B90004E94F41C9C670543DCEFA81F36E87D03D8 +:101BA000370D77362652E8C7DD1871114E03A92E7E +:101BB0008203FC1E4DB2C5ADC7078B68FC5003F70E +:101BC00083D60F703FA8C79365E81784E22EF27F93 +:101BD0005C0DC9CD782FF08DE09FA2DFD02B25AE14 +:101BE00043FF11EC47AE3F225C1E6C9C3495E2A98A +:101BF0001B6666CAD1FFD951C4ED1EF223C08EFF09 +:101C00009775DFB904E3F6D63CBD629EC198639E2A +:101C10000DF9F3BCAF28C4FDD886213ECF7A3E4FE4 +:101C2000689F37CFA37296FCD7A371A6ADD2D19F80 +:101C300082F711F4031F2FC2FE72FD9857201DC2B8 +:101C4000800FA44378E07913DBDD08DF613F4E7E2F +:101C5000A8473C95E2F78C4AA77D7EA6BCB7474AC9 +:101C600098D0975C8F9DA20755FEF71D020EBD34DC +:101C70002754391A8F34F3ECE0C1CF131FED7631BE +:101C8000C4F7B110DF37084678BE1A3C37C7A39DAA +:101C90000B25E9BF41D99C668B4F05EAF3F5C236A7 +:101CA000944185FC51E1873279C8407EE8BD2039F6 +:101CB000CB7E3FBE16E4FB515A909F43EE95860DB6 +:101CC000E29F31FD4F89E44238E2CA5C0AFFECBD75 +:101CD00090E365C34C179DDBDB21E2554AF9EBE449 +:101CE00087F6B7013F12BE785CBF6D9C4AED37CED8 +:101CF000E4E7FC06B33B288EB536F33EED9F9B0D23 +:101D0000FC5E845DDB1F4CE13D09FE1A63A6DB0629 +:101D10006FA8668CB803FAEF3C3E27713D61955C75 +:101D20005F5875E7775E8CBBD8E23C1E4D237D186B +:101D3000DFFBDECB9833B8469B4079CAF7045D7968 +:101D4000F74AB933411EE7CBF2BFA761C5D9DC071B +:101D50007B871CE7CAEF0922FD1BF3EF4FB2E26F4E +:101D60003D9EF604E2A96726492C16C4384E00E3CE +:101D700017AC08459CA766FECC55B6F93F2BE24D43 +:101D80009E4685E8BA71467EFCEED120BF2F718F4A +:101D9000B027DC2C41F7A22A439C8F006EFE7755BA +:101DA000EA19E9418097E29F6C9EE43CB7BC1BE1D5 +:101DB0005E935D6DE2BAB3E0B5E8B532C8E3DB1B14 +:101DC0003D2374DF3E939309375FB7148F5A573F13 +:101DD00044C6528F87F34F68C0CB100E17AC7F9C60 +:101DE000EF4411BF78E3367E0FC0067E3B13F34706 +:101DF00017A8A81F7A3D232D184FB7E49053FE2053 +:101E00009EB0DF351937E9A7352C99A63801F48241 +:101E1000F26C504E7C1EE54C6BBD16B7E3EF3E11E5 +:101E2000D76C45FC05389FDBEF917E5CE8852D4241 +:101E30004E7804DE6865D9E3EBB5FCBE127980FB11 +:101E4000C32ADE17EBCAE1D346FFDF04916F9A0B7A +:101E5000D37F4E11C7E3134355216C3F96BD6AD91A +:101E6000A54EBB7200F523AE5F19ECC8BA9C9D6904 +:101E7000E9C75E29F3BBCFE1BA7A48D1496EC9C937 +:101E800028DA61EEA901CA637A441EF4D791716B16 +:101E9000F27DB3ACE0136624BE0EED3D2937D53D8F +:101EA000DBA44376FEB1F1BB73BE1B28FEEBE0273B +:101EB0006BBE1B2CF97BB29219E36CFE41D368BC5C +:101EC0004042FBEA8DD93CCF4A3B594DED0AC46FE5 +:101ED0002AD15E74C66DF0EFFFA09CF99F8AD7F4FB +:101EE0009497498887FF81788D1E3A4DBC8639E2E8 +:101EF00030CEF88D330E33563CC78ABFE0CF1EC7B5 +:101F000071C663CA30E17632C673BA7C78CFFA51B3 +:101F1000110764FDEE4B309FDBCA6FF16465824FA1 +:101F2000BE95D3C95A47965CB5E46C01B9FA458AA7 +:101F30004F8D2157BF887C3613E729D64D84C9A819 +:101F4000571FD9FDBC8AF9C6D708F938AA7751DFDF +:101F5000DAF46B10F5EDB967D6B7E92646EBA34482 +:101F6000CCA378849725C3E2EFA7300F956999DF5A +:101F70001F5FDC9C8FA7F39E76DA21AB78BFAA1196 +:101F8000B912F9A5D945E734CE7F39BF5D73E5BFF6 +:101F900046AE02BA94CC75D5F1FD00F15D80955E38 +:101FA0008DF46A92E9BBCF1ECDFF2E671F8BF61A08 +:101FB00087EBA293676817E1F17C27FC17ABDEC2C1 +:101FC000F0478DD22F4472F05F1ACD6FD7B2E85F21 +:101FD0004BAF29047F8C95B5D4E7E0BFBCC67B7AB4 +:101FE000B8740EFF3F379CA15D7561F8AF6A1E03A0 +:101FF000FE1A76199E63BAA6E50CFD0ABA7EB1ED0B +:10200000F4EDBEDCE11CC7E4FE49C4E5437EF666A0 +:10201000F9DFE1F1300F95DE11710FA3E621B9660A +:102020008DE389E5D3696CFE3123F3EBC96FA7BC5F +:1020300072271FCC9BE1213EF196BAF8DF711AE5B9 +:102040001F41B708C7FF19F942F08F930FC6E21F6F +:1020500027FC4EBEC8F18F59BA209283DFC90760B2 +:10206000D711FF7862D5F477084FE19F08E7BB33BB +:10207000F285E01F271F14E01FE20727FC4EFEF841 +:10208000FFC6179A87E48A97717EF0E87F2F5F6416 +:102090002357D9F8C249DFC4ECB944FF53F942D001 +:1020A00043F0C519E92DF8C249DF8FCB17A7D2DB62 +:1020B000E20B4E770B7E277D93ABEED0E81C728E41 +:1020C0001F3E1E7D75A06FE0E3AF776687B7EA54C9 +:1020D0003A9F99BEFC5E3DCDA2AFCEE9AB695C5F95 +:1020E00078E2BCECB5E86B7C3CFAF6AA20FF29DE6E +:1020F000CAF1E3A4D3D557AE213A6A0EFAF6060424 +:102100005E057DCF44B75E41DF33C9E75E8BBE0E0F +:10211000F89D741B6D8FBE5A24172F76D22DB9CA25 +:10212000E3B3D3B737D6DEFC71E8D6FB31D7233320 +:10213000F2E93A16FDDABCED59CA8F1BCFFFCE95F6 +:1021400037A649F6FB9FAF0A73FBE20AB4BDB07D28 +:1021500051E1F3C62D61EE8FDC63B50BE7E735592E +:10216000E59744BB57B01D94A561DE7ECFEA441BC2 +:10217000DA378FEFD5CBE7074E9DCF5DABAC73AEB3 +:10218000BA643F57707B5812F9A11A336CE7DCD35D +:10219000A9CA4B308E53D23FA307CBC5A971CC2817 +:1021A00080AFE29393C92ECF8D97E17EC85C8DF608 +:1021B000BF8B4F4EA5F7873B55EA1FC747BFF9D4E2 +:1021C000FE8BC6E8BFFC0CFDC7B85F003F3CD7657F +:1021D000E543B9C3CF1C437F724D4CA1FC74EB3C6B +:1021E00099139F206FF879AF4893316CA3F77A81E8 +:1021F000170F9EE3C2BF53B2CBCDED6747BB2E97FF +:1022000095679FCC3BAF71B7A0BB9A9145DC254940 +:102210007FAFCB7A7F20CCFDCB2E29FE7212F97CCA +:1022200012FFBBA5BD17E6EF0B64041CCF84DDA332 +:10223000F74223FE3C819FBE8CF14F8F953716915C +:10224000F3F2C6BA5C62FDDCCEEDF5DE29ECFBAE46 +:10225000F3287F90F23F7BC00FA1F3BF926AF95B36 +:1022600074AEDB8A7FF6EE057B16E39D41179D8FEA +:102270009928B3FD5E3CB71155B2F8F7F146E3601B +:102280000BF9FAECB9939955D07F0F9E1EC638C64C +:1022900022BE6FDBF32187A3E7469DCEF130C3D08A +:1022A0002365B9F393F85DC9791C7F48AFEF469574 +:1022B0001918A7B6E66F8DE73C37877934CC96FFBF +:1022C00036161E188BD3DF05F304140DE33967C2ED +:1022D0005B26CCD7D5DD619D9F577940E1F7D54F7F +:1022E00054E89E1F8B8E557D32E5D1BDC7FC719C95 +:1022F000675771BBD7479332AE43BC741D9674FBCE +:10230000BDE0DD9DD9AC3D6FB87B8C7CAB03257CFB +:102310007D3F5CDC4EF72AEE9156B4D8CF53CE2DDC +:10232000E67C3343E3FCC5EA132ACF2BEDFED5450B +:102330008867CDA523FE52991BE8EF8BEC88BAE89D +:102340004F40EE88CE576F267BDAA54DA1FAEA5FA3 +:10235000619EAF09ED715EFBB5563A9FDF9D727DC0 +:102360009A962933E6CD28CBF9C73B9AF83E805997 +:10237000C33253605E7736554DC03CF6A95AC96CDE +:10238000BE29D6EEA23CF77EC6B6C0FBFD7D4A1C38 +:10239000F372D35A80CE7705FA870C8C99808FE937 +:1023A000ABA67833B7CB2E71077CD530EE030D3258 +:1023B000E561EDDD3EEBE71E787FA7E1A2FB29C2D8 +:1023C000E2EF2D966A95FCFE46F177C2776C972F67 +:1023D000C37E6ACEAE263EDAB5BDAC1CF541A891EF +:1023E000DF6BF4FF00E8DA90460080000000000098 +:1023F0001F8B080000000000000BED7D7D5C9455F4 +:10240000DAF0B9EFB9E70B06186080E14B661014FB +:102410000B6D40644D6DF7065111A91D100DCB6C6D +:10242000CC8F5051C8DAB2B67D1C15150C13124D65 +:102430007D7477806CCD3E167BCACC6C7F935A6BD3 +:102440006D3D0F65B5D5BA466E6B6A65F4B1E5EEC4 +:10245000BBD5735DD73937DC3342BACFBEEF3FEF20 +:10246000EFA19FDD9CEF73AE737D9FEB1C1863ECB7 +:102470007BF8F7C2A461298B1D8CB5B49B9819D247 +:10248000B602E5548F85D10F96B7CC72A5D87319D3 +:102490008B60909F23F2DDFC1B2C642C1B7F713121 +:1024A00076AC2951EA817A0AD3B5877AB16D4CF2BC +:1024B000D920A1DA1CA7AF64CC6E97D8F732637B22 +:1024C0006455B6C2B8FE93926737143F64F49BBD5F +:1024D000D0FE7BFCF9096351091263098C35AC64A9 +:1024E0009E0F61901CB7EC0D40F95A895577417FDA +:1024F0008A8DA95D909E140BF5C65CFCCD6C2A8973 +:10250000F1E9FA0BFF1A2D47820DF1FDE9B546E816 +:1025100017E76FEF96ED0530CFA7EC7991307FBBD1 +:10252000EA3AD003F3EC1C3924CF86EB8C93A9FF55 +:10253000973616BE5703F9CB1FB779106E1127CC0B +:102540001F184631166969FE1CBF9D2FCC62AE91E3 +:10255000905EE1F064C13811AE444FD66818D7AE32 +:10256000328487B2C2E4F910F227FF2637A9E707C1 +:10257000E6B961A5DD9305EB6F5B69A1EF06B1FEDE +:102580002B7F531E738BADBFDE643B8797965656E9 +:10259000DCD7A25F5F422CC00FF781059C1551FD6F +:1025A000F9DF89765ABFE1E36BE5AC404D9E04EB61 +:1025B000EDD868B26F003814556411DEEC6E34D972 +:1025C00071FD9D4D3337CCC6FD7CDD4038D1B971EE +:1025D00058CA425D7F1D83F4BFC0CEF76B4FB27FF8 +:1025E00087E4C1F94595BDEA84B4D5BF8361DAAF0C +:1025F00094BD3A16D2508D8DC37273990AF0DA6386 +:10260000845F5318BBA5A57BAA1FFADD13EBBF415E +:10261000B633767FD385A6A357433ADBFF9E04E902 +:10262000BFC7B36009B677F3FAA7E2F31AFDD87E05 +:10263000244F7F141F5986ED3B703DB0EF0EA00371 +:10264000C4E78EF6863806F96D1555292EA8BF3BCE +:102650002FE064D05F516BE0982519EA49BC3DF347 +:10266000AF2E55A1DE6E91AE6D59558AFD037C1ECD +:102670004478B4741B093F761B59D36CE8BF03E060 +:10268000B30AFB4FF7A478078047F34AA7A7391B83 +:10269000F11EBE461D3D789C9EC7747469B487A622 +:1026A0003B244F0ACEEF108CAFC0FA3B8D1E82DF69 +:1026B00063F61B783ACA9382F0D869AF2C5560FE56 +:1026C0009D0962FEAC8CE6DF99CCD30D2D934A11A7 +:1026D0001EE1F3E830BA523CB997310F51EF7FBA9F +:1026E0008EC1E070B9E3FF7FDCFE068FEDD2ED0D09 +:1026F000B1A17CE0A27EDC97D7CFBF8A8FFFDBFE43 +:10270000FF6DFB43F64CE29B97C60746F52264E655 +:1027100043FEBBA5AAD83A57C777BE74C8842F9387 +:10272000EDBC1E086AC90BBC71F796C956949FADE3 +:102730004C79D93C14E46F7B83A50CF8D7EE66D9AD +:102740006E7041BA42B66643BAC1815C17BEFF18CB +:102750001D4169285F0DE56DDE38AB1BF95D09AFE2 +:10276000DFEA904B51FEAC75C459E7E9E45D6B3389 +:10277000E4E33825F9290B75F99D1297C720C98222 +:1027800066E0A3EBB3323B36B8FBCB8F39B8DC68DD +:102790006BCBDF9183E336CAC4B78F6E9C7CEC278A +:1027A00090EEB4CB2E33D43F6ACF7F85CA4B65E21F +:1027B000C3C3443AB654F1B8084AAEB21190569C1D +:1027C0003243B9369C752D67901E6AB7B120EA2F47 +:1027D000253EEA2FC629BB0C907EC19B7FD802F311 +:1027E000691DCB3C66ECC006C20AF4A0A102E6EB70 +:1027F000F07F50DFEF61019209B04579501E4F43E1 +:10280000A1BC4F7B3907E542894CFA967262EA59BE +:1028100006FA428BC34DEB89EF995B8EE95635730F +:1028200003CED33643F660BBB8F250BD2C7A426873 +:102830009A29DE0A06FD6E98A1A02C07D115AAAF31 +:1028400085EB657D7A8117F48A9CFE7E2273EC21EC +:10285000E98E17D9432C86B14715D70ED4775A0283 +:10286000911E3FE47FF327B3751AA4BF6AE4FBAB64 +:1028700030E6668027F7E33EC0BCD7B72881E13059 +:102880008F33B280C73A99E0A158A66DFF10F4A02B +:10289000CE17D9417615ACF345E6916218751087CD +:1028A0007A57745A00F779DFE326DE2ECA12C886FB +:1028B000F4C72BBDDB1B50B1687990B144C6165BE1 +:1028C000383CAD86160B8E9B257B361541BD634F7C +:1028D0001C3CB717F5B2472269BF3B8DF659F3216F +:1028E0005D136FA179C38F1BF59F06D41F489F60AE +:1028F0007E067D2D3130210F99DF02787A26C2BF06 +:102900000CE5A735C15F6601F9F9788428DFD2B0FC +:10291000C13F01F487F66B7250DE3EFFC09C266B10 +:102920001E6323CC5A7FC3361441FB7DB2A4F5AF9E +:1029300032D03FBA50AFA0F4F2574AB2609DB2A86D +:10294000EF5FB201E56FCD1193D0277E1C5104E5F6 +:10295000FB8AEDA39DD0EF4D8E1F9559D2B13F6DEF +:102960007ECF5B8A812EF69978FB0AC7F3A5389F44 +:10297000BCA15D27EF81759AEF32793A98181FE96B +:10298000E64E5307E85E17E919E31D5C8FED2A60F8 +:10299000A5486730BFEA808EFE36C71B882FFC4AE9 +:1029A0007CBB022365D4833215AE7703CCE2CB9196 +:1029B000CE9A3AC621DD68ED1E888DA0FA3566569E +:1029C0008FFCE6408F7C1FCEA3A3D91E6B8079C8F5 +:1029D000CD9ED51F40FE84F838AA3734989F22A197 +:1029E000FEB5E7787E2EEEF75336D21FCFED19BD38 +:1029F000C380F36F33316CB73BCA56FD30F28FC0E2 +:102A000095258837DA78E5383F58C7FAC6FCFA4585 +:102A100050FF9CCD66975C88AF9E6AC49F476D2629 +:102A2000BB9FE8D09E8C7C2D4B0E901EF444EBEBAC +:102A30008D0D00B72C01C7618E3F34A2DED3E47543 +:102A40004548D0AE254D66D86EBDA3D2827AE0AEA1 +:102A5000A2E5F45DEFC84CB5C1384DAAC9C5A0BC0C +:102A6000A588EBB5ED8A5AE986FCF61687E4D7C14E +:102A7000E3BA780EE70E8FA00307E70B7B63012F05 +:102A800020BD378175AE01BC35DB593EAECB9856C3 +:102A9000AFAA03E88537C5733ECD80DDD80A890427 +:102AA00008FF134BDEFE39F28B33A6EE59B722BC7A +:102AB00062233C1D90DF69ED4EC67524C645C8B83B +:102AC0008E245C0D80AA4166D370DCB569CCBE0A49 +:102AD000F3DB4C7EB45712DB4C64BFAC45FA457B4C +:102AE000673E0BE0FA921AE50FCC58DEF3F94A1C68 +:102AF000C7D92C074D989E6D622E1D9F709E38FB86 +:102B00002D8BC6E941BE8ECF5C17EDFDAF5898B74F +:102B100039CDCEED40AC5B88F664DF8F13F9A74961 +:102B200024221A65BF19FA797C1587D7FA552C80AB +:102B3000F8BBFB69F618C2C76469EE3644537BCB19 +:102B40008A7C1D5CEF05B8C278A6B675B7E13A4C31 +:102B500039BA79C0BF0C4722ED431AEB91905FEC74 +:102B600012F608B14E28CA401CC9443806A3C72330 +:102B70001C7F21E7231CC90681F9218BC2726D3F9E +:102B80007A859E15DE8F4BF4A3A57F25DAED3B1ADF +:102B9000372D17FAFD953F2E1F590DEC430D976FFA +:102BA000BC7F3477717F12EC11EA0898FF9BF15CCF +:102BB000BEED8BA8AF19C84E78379E8FBFF665D88B +:102BC0005880CBBED5AEDBE722BC8A6586F4FF8297 +:102BD000CAF9F0EE12163023FC540EA7966616F0D2 +:102BE000039C46BFA634C9309FB42239CE20EC796D +:102BF0003FCC370A7F81A62D1E2F233DD1C1542BF8 +:102C0000CAA7346F35CE030C64A96224D13F936107 +:102C1000DE91A27E5489FF36926316BB15FD05AD89 +:102C200069AEB22C94175B98BD8380E1912BA2FA18 +:102C3000E1621370896C8676B09FB6363E0EF68BD5 +:102C4000C81D8DE5B04F918EFD774958AEF26F4C9F +:102C50005528DE458D0DDDE756018F55711184C76E +:102C60002D4B61FD6EC12F715F17737C8AF484F662 +:102C700093AAB052533EC2DB9E3C1FE1B8D5C4704C +:102C8000FF33FCA1FDA7B4251623FEA5315D7BE82B +:102C9000BF302E96F62BE5D8CE4A19EDFF1A261B2B +:102CA000006952995FADC9A7FDF912E5F9FA449997 +:102CB000FA4D75C415231D81DC2E453D2925C99586 +:102CC000BF81E9FC130E2FCBCFC57AF6E26150EF3E +:102CD000D13881E7891CCF538FF5DE8EF04EA90DD8 +:102CE0005D07D3D39FE1D269A325DA1F09FD18C37D +:102CF000E87654BC9BF31B811728DE90DF30E66535 +:102D0000C847CF45BB36A01EE3BF53F1EC867CD449 +:102D1000D1D2608EC6C7647F12F467862FF20D632E +:102D200097E21F1E4DE25D356179DA7766FD7CF72B +:102D30003C9D4BF67587F0BF18849EAAC1E193387D +:102D400013CDE313E177018942F472A7986BF13355 +:102D50006913911F77A6737DEC8CECD91189F37AF6 +:102D6000CF4C3639F4BF06CB6355D03374F05DAF2A +:102D7000D45B6273694901D9F9CF7FD70ABDA80333 +:102D8000F59898FEFCCEE0EA657319AEC75F8874CB +:102D9000101B9435BD022952AF17F82D207F46181D +:102DA000FC5FD7803C8A89DF34D56E45B9CF44F9C2 +:102DB000AAA92ACAF53592D00B5634A9697A3D00E2 +:102DC000C8CED2AF07307FCBD41A28CF4BD3DADFAF +:102DD0003555053DA2CBA2954F7C19FD260DC6AEFB +:102DE00042D45BEE897DBE11F59AB5566F35F2B8C7 +:102DF00082B68432F46B687ACE958E940D7EE86B41 +:102E0000A4A1FB0A0BD4DFDA52DE54928EF4E98AD5 +:102E1000C0FDBF147C3A1457841DE53AAE1FC65F4F +:102E20001957327555D6A5F77B0BEE37ECF3F571D4 +:102E30009CFF8D34703D229CFF3DAA95779AEA5104 +:102E40006F291E6E23FA6E6D9AF910D23BE0C5769B +:102E5000C483B5EFCE3222FF7B244E11F8ECDD8621 +:102E6000F91DEF9A19EA996897D33C9F9E2033E8A1 +:102E70006768C0A4A29D12BE9EF6B81134DE45EB71 +:102E8000CCE6E3EE79DA16000D983DBE1AF8F500AF +:102E9000FEBC8362BE6B570222706292491F49F0EA +:102EA000AAC80C339D3E3F8E6F02BD4CD5D187D64C +:102EB0005EB990CA549D3FAFDDAE32ACAF5C1842F4 +:102EC000F9B71ABC87E2A0FF3F67752CBA0FDAED9D +:102ED00010F2E5DF62D4DFC6C1BAD7C8EAA652F75E +:102EE000C5F3D2BE0D2B8341D4AFFBD2C681FD7595 +:102EF000EFC470B9F33FB00B54E2BFB688C070B7EF +:102F0000CE2E7840B9A45D80F5ECEBE20268D7A044 +:102F10005D104776812D902D0D6E1718E4160F8EDB +:102F2000DBC4D44C94ABC79E58DC528476C16B068C +:102F3000B20B1E7D62DC0D389F731D51A45FC20869 +:102F40006427D8E39C1EE4C383DB074F35965E8677 +:102F50007D104E37F92A53114F158595201FFC051A +:102F6000F273D82FE351D0AF903FBAB8DE83FC1391 +:102F7000BF168787E4AAC65F948042F50C27CC7EF3 +:102F8000943F86C675DDA8E728762FF993179A7CBB +:102F9000DFE13E037B54100E9A7E65B0A90CEDF87C +:102FA000C1F8867BF335531B61BECA213EAEE16892 +:102FB00004E9834A10F4411A6F3D1F27B091FCDAEF +:102FC000069C077C2D07BCA81EE2B851F1C8979F4C +:102FD0001A785C8D7F7DFEC0F8A9C84FBA025134C3 +:102FE0006EECE6AB5FF62B038D2B931E7A19E3A6EE +:102FF000D1B8C141D62BF8A8BC795C138E0BA6546E +:10300000D00C30AFD9C4EDB098CD574F5D35E0F856 +:1030100097BDEE5C1AFFD541D62DF8F0F9077EDC9E +:10302000E4CF427DB6BE7A20BE501AC7F5FA707959 +:103030006A44799ACFE568920E2FCC284F470D2E1F +:103040004F2B10AFD0FE8AE47CF350AF1CF91ED991 +:103050005F89B1488F5D8A87F03E3B2D515A857C50 +:1030600052F87FB20351920BEACBAAD7DF83764E98 +:10307000822785915DC6ED303FD861D964879DC8B0 +:10308000473DD6FF742DCB76F5DB63E7F6DC6E416A +:103090003CDC11CBF977459C9DBED623F93EC46339 +:1030A000A2649D1E3127C6371DE16776703DC19C25 +:1030B000C6241FE9C3DC4EFB57EDA567847EDE699D +:1030C00075954D81F92616CB76E44F9ABD03F685AA +:1030D000350BF5B18D32D9CB7D768EB08334BBAA5A +:1030E00041F0A9D666B903E1B51B691EE8B1B53157 +:1030F000FF7839CA977A85FC3317D9430EB09360AD +:10310000BF5ADAE4692497C0DE42C471CE0FAD77AE +:103110006D8CEF8E7898A7AD4426FDB733A783EC6E +:10312000CC70FBE5527A6FB83E1BAEB7A6AD082D4A +:10313000FFE7F546AEF75DAEFE883F03E98DA4C715 +:10314000121FCA6AC27D233B0FD2F9F1594DC8370D +:1031500081FE091F94A311B40FCA89F59F233D1A5C +:10316000810D4B6EA2BB7F27BAAB9514166247AA9E +:10317000CC1B75B11F43FBAE8BE57A64385FEE68FC +:103180009A998278B7DBE825BFF893C2CFFA94F812 +:10319000DE22CEBFB4F2FDC21F7B6090F283A2FCA0 +:1031A00090F88697FF56B40B0ED2FEB068777490F5 +:1031B000F62F8976C706297F4594BF3A48FFFF2935 +:1031C000DA750FD2FE0DD1EECD41DABF2DDABD7327 +:1031D0005139D717DE13E527C2FA3F29EAF788FCF1 +:1031E000057617F78B0C72EEA6D9BD98877626A9BF +:1031F0006E43FBF7F36FB1729F7DD250D86F4F6A69 +:103200007C23B68005D0BFA1D9A99A3D9914E7A225 +:1032100076B612B03729B38BF0A603D7973B387C2C +:103220000EA303770C9D1B92DE8A78B34087672F2D +:10323000C51BA9DE9E3C0E87FE750D93B575C9D8DA +:10324000BFB0DB17A0D71CEBC7F6F7A7F78B3F295A +:10325000FC6EDABC06C3AB27C4BCB47A83EDFF6F47 +:10326000E359487F83E1E19361F506C38797C2EA9A +:103270000D46177BC3EA3D21EA75896F87F06B5DC8 +:103280000A1FC2F1AA433BFFB57FD444E7B7A2FFB0 +:10329000C1E8E3A08013FEE8FD0FB646CE771358D1 +:1032A0006F087E44B36EF2C768F861BCE066EA68F6 +:1032B0004C73F95415CFEB19152F43FBC178218BB3 +:1032C000CAB3F7B034944B2D4FC3EC414E64B77979 +:1032D000641FB45FFB343048480F551325B4C362F4 +:1032E0001D77AA282F6B8F76ABEEE8FE7DBF279661 +:1032F000DBB997F2E7D63EF4DE0D92AEDD2A4DDE65 +:1033000009FD59B97FA68C8BCC16F64C383FDC12E0 +:1033100067A1FAA323D54DA837D6C470BF207B90F0 +:10332000D9D1BFD015B84946BDA1B388210499AC05 +:1033300072BDC198666253206392587F904DB4E588 +:10334000A17ED1C8FD5A9ADE30C260FF12F5061682 +:103350006F71A1FC46FD0BFD2BF03D6A866FAD3809 +:1033600097FA17F4AF7BD0AF3898FE754F2CC7BBD8 +:10337000FF8BFAF56207E2CF25F5EB81FDF3FFC283 +:103380003AEF76E03A07D5AF63AF64B0D67B5A47E1 +:103390006D705D7DF1B89ABEBDD271F018EAA1FFE3 +:1033A00082BEBD81E631A8BEFDCF9D577414707DED +:1033B000CE9F63217F56BCC29CF1F9D861B907CF7B +:1033C000010B63B95FFF52E75E973AE7BAD4F9564B +:1033D000A7238AE292C096F3A03E33F937B90F943F +:1033E000C2BC96BF6E207FD2434655B6427AC5090D +:1033F000C9B39A5D4C475A1C91169FA3C5116971B8 +:103400003B5B147F25F9DBDBE224944791099CDFC9 +:10341000BDE0A82CC5F3828E2A7E2ED9716C4B2973 +:103420009E9F7EA5F2F3D4C6B6CAB211A837061481 +:103430008FE4C2F35B752A9E836DA9CA8C4078E342 +:1034400079B0DE5E1FEEF0218760BBAB8A497F6CEE +:10345000F8C7440BCACFF5F6FC08F4B7B434F3F35D +:10346000D7CE66D93A0FBEAD55906FEBCF6F5107EF +:103470003E7F0D5F6FB2E04FC0934A290EE9C8ACA2 +:103480000A8C0BCA6E8CCBB31254BDE41F2E12F201 +:10349000595961A038A784464E87D9769521BFD661 +:1034A000E29F12986E7FDC18BFC5E50074E197E2D9 +:1034B00088DF7AB2F4FAE620F4ACD1AF46D71A1D11 +:1034C000EBE8F714D1EFEC50BD51C35FEDFCED1705 +:1034D0008E83A568173E2E71BBF5B4E34023E2ABA3 +:1034E000D1C5681C4DCF340AFAE8D35731FE0BE73B +:1034F000E3F0537FBA713F27BA39C606D457B57384 +:10350000C03F389EA5B89B3E7C09280CED0D0D4FA1 +:103510005A059EB41E33921CF80AE886B9F979FE62 +:1035200040716E1A7E4CB6BB42E241343CC944390C +:10353000057CAF53C8A9CC462FC9A9169453203F88 +:10354000B29B673294534615E454EEC572AA46E026 +:10355000414D2CB7F334793449A499E2C9C1F5ED52 +:1035600031FA29EEE570FB9D4EB22B9FF565D80729 +:1035700098AFF63D19E3127A9DDF8AFE3560385622 +:10358000792CC1CB2601FC6AFBE0771BF9817F26F1 +:1035900070A316CFCD717C838DF4BF8887243AF752 +:1035A00058E25768DF6AFDAB6F43BF3C6301829FFF +:1035B000FB2123F9FFA09CF6516BBFA4CBCC823A30 +:1035C000FEB2EC2948EBF8859BF1F8BE4500A6A0B9 +:1035D0000E6FDD788E1F8DE5A1F9CC303B06F1C072 +:1035E0008A404FBE78BD2B4E14058FEAFA1F930018 +:1035F000FC080F557EC47E447697683F18BCBE59C0 +:10360000A9068F1AF1DC491D9F8070C343179003F0 +:10361000F75FC188BF87D7477716C277DE8A89EC04 +:10362000CFA0AFEC37D98B14E4C3BF94C8EFB03A46 +:10363000F2C793153C2F3F0343437ADEDDBFDF8C97 +:103640007EB965DD2D13A3519E374B79E86EDB7291 +:10365000B83ECF0EE9DE9B6CD7A03EC26CAA0BCF62 +:1036600025D1F78D7ADB27465EEEBFC99687F27FBC +:103670006E95FA2EE24792E1B6BC16B4F3FF01ABA9 +:1036800083FA0BC46E3ED356617201BEDCAA045F9E +:103690009060DE7367BBC6223CE7765955FC2699DD +:1036A000986205F930D7C29408F82645300BA51565 +:1036B00066C174E16A7633F2BBE8B15ED35CE87F41 +:1036C000EEA15FFF952BFD01C2C7B9875EFE1BDA35 +:1036D000F30B54AF09FDA657EE31F1B32601F79174 +:1036E0005DA1E9AB0E84A6F382A1E9D1C742D3EF75 +:1036F00022EC619CE7BEBDFDFD5F003C7B5F33902B +:10370000DEB604D8D18F818FEDBF026C0A5CB71290 +:103710001882E38339CC22D0FFB8378AE25ACEAF81 +:10372000F46E2F01C01E3E2393EF67C9DEA876F426 +:1037300063EFFFEECFF7E37964EFE39174AE3B7193 +:10374000C9634FDC0DE98F1F898C457E706EFB339A +:10375000BF243FE6E3C319B2AC8F85DFF785F70ED0 +:103760009EDE01F98B9F88CCC37A1F3FFECC30844C +:10377000CBE2479F1F82F13FE7F63E5A48E9BD8FF3 +:103780008CC2EFB9477E3D0CF33FD6FCB27BCDED4A +:10379000B86F4B1EB37E100F703BFDA9CDA63F77CF +:1037A000D7BE97DBEF12EC17F107FB45BA7B6C7DB8 +:1037B000773CD2DB9E287FBC8EAF2CDE73DFE7FA2E +:1037C00074F877F11E3E9FC1CB79BF8B01D26301A4 +:1037D000EEA7853C5EB2C71CB25FC3B785EEDF883B +:1037E0004068BAEE7C75592C8C93737E76592CF414 +:1037F000779EF13889F0F11E4BE07EFDBA03A1FD02 +:103800001F5406AEFF6402E79B3978E2ADE313294B +:10381000E681CF390E88FA7BF7F6D537707F0C90AA +:1038200019E8614B04BD3DD7172FC5EE4805BA5ABC +:10383000424CBE3F7F09D3AD0FC6FBD212DD6107FC +:10384000BEEF13FD7F6304FAC1FD5A19DCFC21F0C1 +:1038500093D32B55B544176F76EBCEB9EB9261FF3E +:103860006AF765E7E1F05AFE155D4692BBB58F1C1D +:1038700089467FCEB93D47B62E407CEC32B2481720 +:10388000E52762FE275D2F46DF08F9B76E73E72153 +:103890005FE9EB77DB24B544C7FFFE59BAD4F8489B +:1038A000AD9DC3E199B1DD9353017F976C933C5873 +:1038B0006D49D78CE9D722DEED3478D05F59A83036 +:1038C000AF01ED8F7D4FBF9402F975CF8F29C4F5FD +:1038D00040175598BF41F64E1B897CEB97468A4BA3 +:1038E00087FC6332E0D1E19C074CA7701D222E7D3E +:1038F000C34C5B0DEA4DD0DF5119DA453F24A922B4 +:10390000FD0ED63F53DC158DF6E359A3AD11CF3133 +:10391000CE46D51FC779F81FE7FDB2209FF7227169 +:103920005E5173C8487AC4FEEFBE9C390EE9BDDD16 +:10393000E046FE71EBB650BCB2AB2D26940735D0F5 +:10394000B713C63DD71E45FD9F4B080C41B9BAFFC2 +:10395000BBCE934867BD8F98657DDC4FCD9EDFFD64 +:103960000DF9EAA240687FE178119B286976728E92 +:103970001EBFC2EB2127530AFBCB6B57809CD09D07 +:103980004FD57ED862423D7451B9E907C7FBF2C4F6 +:1039900033C35C32E1A99FFCCCFB0CE4EFFDF85390 +:1039A00013F1FD2557B01217AC739973FAF612E8AC +:1039B0007F49252BC534FC481618FF1CFE3694A7FA +:1039C000E9FC878C5502F0FDE3010F3E7ED2407189 +:1039D0007D29788E887E14168C9691BF7519641C8B +:1039E000E7DC195000012E9FD883D1714827673634 +:1039F00090BF7155D791688CCB5FD2154FE7FD838F +:103A0000F19B838F5B6519E0FFC9998723D900F487 +:103A1000BBF80C3FE70FE73F9A1CFE007F05793D9E +:103A200036511D9D8870476302F484A4F8FABCFAED +:103A300001FAD3DACD9578BB24C372AAA73ABDD7D1 +:103A400024427E5481DF8DF23BCE67F1E0B9D69FF0 +:103A50000D9E3BED4351CEFA4CE4CF6848A0FE6F7B +:103A600065B03F903F4F614105F0751ECAE7519424 +:103A700026FE3F6F8F14C0A39BA86673C879E4C26B +:103A80003648EBD7B153570EFC6611CAEF683A8738 +:103A90000BA25F78F143A1F597B0208D5BFBD8F7BF +:103AA000667DBFA0796AF1A726D41BFF2AE0A23A5F +:103AB000D599B82EA9D242F3BA7D4B0CC5732C30E0 +:103AC000EFA37E1C22AEA3779F14E840B922F487AF +:103AD000BABBE7AAF3416FF96CC53C757EBCF0F741 +:103AE000201FD82691BDB9A48405D3619E37083D17 +:103AF00068C921293812D20B60FDA84F8C7B4CF28B +:103B00004781BC5B6061FE68C4B737F9BED48A7573 +:103B100061BD987C84A39FE0BA8875D37CC6D570BC +:103B20003FCDB80312C54F85C3AB666718FCF4F0F0 +:103B3000C944B884C27BD95300A710BCE17002FD10 +:103B4000875961DFB608FE7E12EC09BD7E09184C6C +:103B5000F5B6AC92A87CCB0C1373C2BCB6CE5AD8C7 +:103B600089F13E9BD03F22E21D313E7183168F08C2 +:103B7000846381F12246B3FEF3CFB1A45F51BA2929 +:103B8000B164DAB634E8C7E84B46BFD7D60AD07777 +:103B9000B95E6345BDE623A7EF7EDCAF7906EF4B48 +:103BA0006868CC97D5210AE2DD0A0EBF07F3EB4720 +:103BB000D40F201735BCDE2A75AB06A4CF5FF07B8F +:103BC000419187F6055361DE4B4B5DE4474DB8FEEE +:103BD000440EDE7B7958F0A998C35C6E6D9758034C +:103BE000DA8B4EC00709F6A5E0A9D664D43FD97C8C +:103BF000533E9E5B6D8AE572A1F775760D9DF74485 +:103C0000D6B763FC53D2CD39F9789E04EBBDB91217 +:103C1000FA7934D145F348B6F1FD75AEF6BB97435A +:103C20007E12C0242A0EC7F3DEF622F63392C7D9DD +:103C3000417E23EAA14EB64AC27AEB1238BCD7CDF8 +:103C400065D54FE6D2399D1213C7BFEFC017ACCF71 +:103C500006237C9314D063797E038EB3259AAF2319 +:103C60004136DC5C81FB95CFD371F74A6A07216F3F +:103C70002BCD2BC9CC4A719D988FE71C302D751F19 +:103C80009507385E4CACCFA3F90EE5DF577B2C7E51 +:103C900003E0F1AB0E4DFF0CDA48FF645E19F9E565 +:103CA0001D426E7E6654934623FF7DDDC8D00E70A4 +:103CB0000C09AB9F95C3EB0B79F59567620C12D598 +:103CC00001A3FA5F8CE06A903A06882F783791CB8F +:103CD000CBBA0BA92CA0930F75D55F931E5E7761AD +:103CE0004848FE272B6125C37572A4E6F064ACB783 +:103CF0009475AF437C5BDA6560011D7D1CB072BDBD +:103D00009FB1FAF77F01F33FF56A76BE3E1E55A3D9 +:103D100083BA0B06E6079C1E6F90A97E5DB589E20B +:103D200011EA1A0DED48A775174CBC3C83F757777D +:103D3000219EF9E3B1BE447EAADE2603F95DFBE7CE +:103D40009D48E57DEBB92085A60F7C23EA2994CF19 +:103D5000C6F644235F5B84710E902E077986FCE9DA +:103D60002CE8A74FC278E73D06E21BE7C57C3E5929 +:103D7000098C07E0704AE17E965301D99FADD3BF0D +:103D80004F097D9429AEE8CA9117E7A7187AA225B2 +:103D9000C4FFE7B89CD3CACFBB7A48CEF5A5ED3DAA +:103DA000D108D7F3D51A1D0715DCD71D9E1714F4BB +:103DB0001BD57A5E98CC74F8D5BF0F91CCAFDB875A +:103DC000C435DD4119784A5AD2C6FB72ADB0E587D9 +:103DD00035FEB1E93E8C634A34C821FC24B2A08F81 +:103DE000BF107BDB221B043F6AB9AF64823ECDEB80 +:103DF000F7B76F9D5602FCA72097B71F96F4C0EF48 +:103E0000572B3AF9A1F40EF146E9D296B0B40DD28F +:103E10002375697B58B923ACDC19964EE3F5E7C4EA +:103E2000F48C31806D9797B4751ADEAF9A93DAF3FC +:103E300033BCBFD6BC66DBB4926494C39EC9C8C70A +:103E4000EA0E4876AEAE73F82DF330D2136D9E1E97 +:103E5000139EF74416785E427DA416EA4980B79116 +:103E6000B94186FCAEAE4BA2F899BE765D5CBFACA4 +:103E7000EDFA80DA0DDA7F8E4C7C6143CE29AAB749 +:103E800074C5A726D48736D47678514E2D3471FE6A +:103E90000658A9A6025E2C3B50417EAA3F8E3CF4F8 +:103EA0001686AD46DEF1F92A05AAFC69E94763B03A +:103EB000DD1FB1EBAB912F074660FBD935B78CC046 +:103EC000FCB8DCEEB76642BD93C69E5D1807B3E84A +:103ED000C1BD048793513DE9185FBD24E9E96978C4 +:103EE000CFEC6442CF2E84CBC9A4FDBC3CBD275D82 +:103EF00086747DD267BC3CBB6717A61F7EF0384F27 +:103F00008FEC4937407B8FFF4D82E36E3BE783BFE9 +:103F100004BB16F9E91FC3E49C2F89F3977FCB56A6 +:103F20006F4C421BBC96CB995D60BB58804FCED97D +:103F3000D1F3F86E80D39C7B2251C2B0DD9F4C2F11 +:103F4000E3FCC2EF45FD3589A3309787C4D715D26E +:103F500023925106C6F5C3356A48B70BE7112E37D1 +:103F6000F212D5F793C6F47FD3DCF08579BC9FE4D9 +:103F700012FA4C7D9E0BFA9D3DDBE6C1F825A6F4B6 +:103F80008C417CDA64E5EB023AA0FDB2E1BEC1BC33 +:103F9000EE4CE272EDCE246E9755254EA27E6FFF59 +:103FA000D394ED166ECF71FB7CA991F498B60A35C7 +:103FB00019FD086D158914E7BDFF3BCE477A5BAD4F +:103FC000B48E1B90CFC4233F5093115FD87413F16C +:103FD000038D0FB52D9A988C7C6ABCA13819F1B06D +:103FE000B7C2447603F041CEF7961ADB29ADF1C192 +:103FF000A546E2831ADF62AC2B417F9FF44623F390 +:1040000022BFBAB13D945FDD28413EF197AE043D39 +:10401000BFBA54FE967C3519F99836AFA4355D3495 +:104020008FA407DD71087F12ACA8D7B40EEF40F85B +:104030007EE4AC2478B5553C6CBD25B71F7F9FC886 +:10404000567F85FB72838827D4F0047FD0FF356FBD +:1040500073523BFA61DE177007BD6514EA73479C23 +:104060007C5FDF4744A17DE5FECD39E6A011E9E1A3 +:104070007FF7E55FDE9737FE957D59BAE2A3CBE285 +:104080006F1ADD6D9582C624DCA7E7B97E89F995A4 +:1040900000A7CD89BEBF607FDA3AE7FC7C6932C5F4 +:1040A0002389F944DEF54CE9F5903C79C3B9DD0F7D +:1040B00043FB93F758490F0AD75F4FBE6769463FE6 +:1040C00059646ECF52DCEFB8159176D4B74F0ABF62 +:1040D000DC49B1EEC27B96BC8A76E778273FE707DA +:1040E0003C4A16FE1ABF05E75761FA613C7ADE408A +:1040F00071EC5681476D7981ED0BB1DE8C5C8FDF01 +:1041000045F62EE937ECE791644FB7659F2278B604 +:104110005DCDE87CA9CDCDCBDB660D0BF8098F64B6 +:104120003FE1D1AC08EA57C3432DFEF2B36A27C57D +:104130005F02FEF1F117C984C77DE55999746F0BD1 +:10414000F091F4A77E3CEC8DAED0E1CF67C22FF6A4 +:1041500019EA3331BA7C719E04F23BBA32EAF2F3C7 +:1041600013D7A874CF45C3430DEF3E7C00F0462221 +:10417000F56218D2418E939F4769FCF688D397E584 +:104180001CA3D79F395DCDDB3492DAAD8FE2FC7989 +:10419000A795355AF2FBC7DD097606CA15B04B471D +:1041A00038A1BF9BA1E10148DF9CE4FB6D0F8EB7F6 +:1041B00042C35FAF09F16D81B087D9BDA1761EC63C +:1041C00051F5A50D17A717AADC6F7C91BDCDBE33A5 +:1041D00087B6E37A49646EAF11F1FC412BF35B754E +:1041E000726B1B3A85615DDBEE8E0C205D6AF5BE5D +:1041F000FC2442C67B12C75E1D1D83E7325F324F2F +:104200000CFA8FEAA06FF49B328B3A17DBD5AD8E98 +:1042100072213C96E112207F99EC22BFD67803BF31 +:1042200027D4FBB444F882ED70BE75598C4D8823B9 +:104230007B9DF0EB749381FCD8E333028B888F2D48 +:104240008A607C9F7C8BB0FF53D557D07DC5F186AB +:10425000CF1FA6FE9E3553F9F9841EF267D521645F +:10426000B05FFFB72BB93F1FB62CB1FF1C08FDAEE6 +:104270007A7BF93CFCC3FB161AFED68AFB42FDF89A +:10428000E88A467C5826F3F3C570FD9AA82391FC72 +:10429000C7789873397AF630B2339FB3E6EBF5EC12 +:1042A000F02FC26F423E7D8F1A687F7A0ABD51039C +:1042B000D4934F0D5B3E807DDC57BEED23BA6785FE +:1042C000E7527ABCA8EDC71FE97B09E7AFC32777A0 +:1042D0003F7FAA13FE0ED2BF71DE258CE2A8A34455 +:1042E0003AB2B43B80FC2AE170CF64B283CE803D09 +:1042F0008EF572593EFA4FC71D6A3F82FA695C49D2 +:10430000773A6E639DF0FB69F8A6CDF3EA43AD06FC +:10431000B41B347AD3D1198DB3A02685CE3D7A90C3 +:10432000895E8D99ABA93DDABFFC9E919ABC00E6EF +:10433000B4755126DD8B8954B83C58D032BC639596 +:10434000A06BE4079ADD0C1A6321D2DB47CEE20EA4 +:10435000A4CB2DC9C5BB90BEC9F8BA7A70786A7073 +:10436000D1EAA1DDFC437EB7E59F02DD00DF2A7DB7 +:10437000393B09E966B9E44A423C3D6DF0919FAD95 +:10438000DF1F14A46FADA0FF85C28FB450F31B6D67 +:104390003387C45FA25F569F5E2CFC496C8FB93F88 +:1043A000AE12FD43252C1805FD2D453F147EBB4262 +:1043B000DB2D63BDD4AEEEC0F72171C1AC8DAFEF84 +:1043C00066B1FFDBADDC7F147B6FBB81DB777C7D6F +:1043D00031F9AA7B2DD2E9CB46F26FFC058B889F81 +:1043E000A985C8C75567F1AF11AE116847C3BA3F79 +:1043F00004B986FB0AFAF3CD956847AE646A9691D4 +:10440000F6AFB07200FCDE70D05A83F870DC2987FA +:10441000E0CB46A791D2E467423ED06426BE5298D4 +:1044200029F49D267307CA9BF9669E66F7F173A46B +:1044300065336D3EECEF94F083BDEFE4FAF3FB4E91 +:104440001EEFA9A5B5F569E784E8EFD1DFABFB4B1B +:104450005F3DEE6701FE44715E5B8D01EB02E29B06 +:104460005EF2BB7FF109DFFF63C7E62DC2797E51A3 +:104470001DC1F09C79BEF0C77EC15CC447FBF863E8 +:10448000BB81E464BF3CADA7F3C133AFC6D33D836A +:104490003E797AD6A4C9533FF2C9335D23B8BC052F +:1044A000FD8EF4ACA7393C808F115FF53F3F52DCA5 +:1044B0002FF76DC7F396335D091EF47B9CC67344DA +:1044C00000E51925F008EA29FE4356D273CE08FE0E +:1044D000F6D9071F8C427DE98CE05FA799E82F6031 +:1044E000E8D84DE30752A7EBF6EDA0B8DF788605D4 +:1044F0001752BD2E6B883F21C5CCF3D97F40BECE6D +:10450000FFF39C51D4DF6795F4F9FB4DC187494F08 +:104510007E92E7FF97D9E748D6E1416D747058ACB9 +:10452000ED87E0070C0ED77B289DEB1B19C02738C1 +:10453000BE10BEF6C99D76438799EB23BC9F6725C5 +:1045400001BFDE1CF22F9E1DE6C2F1579FE5F7CC9E +:104550000FB67339F599D74471DB67845C3813E67D +:1045600077D1E0B6D528E297601C84C77E933A8B5A +:10457000D6BBC11C8FFDD6219F463F74238F0B19DC +:104580008CFFD475CCA3FBFE8396D7FC630EF5138A +:1045900076BE78BEE68B21FC9E297F7F60995D9474 +:1045A00085B717F28F397A130792377DF5CEACBBFA +:1045B0000DEB858F43FA542197C3C8CFEAC2CE2DA5 +:1045C000993E6DB8383D3D39B62F4E17E32EC731B1 +:1045D000ED27B4DE0CE43109581EDAFF87467F343C +:1045E0009D879D95697F97B6CD9D83EB5E92E09BFD +:1045F0009D8C719D0FAC2F2438083D74DCC7B95CCD +:10460000EF6BE1E71C1F1AD53948E7B12541D32DDF +:104610003AB97A7B32D707E799F9B9108627EAF9D0 +:1046200095565E581CCA27B4EFF264CE2FA2BAB9D1 +:104630007C83959A516F3888BFBAF4F5389FBB3D9B +:10464000D945FD659CE1FE9F8C7B036B309EA2B635 +:104650006BEE68045BC6BD41E22F1F1A5910F5FFCF +:104660000FB747717E80FE0EE877E158DEEF420318 +:10467000E89F781E21CE3D170B682E34839E0AFCDE +:10468000FC993D458628E877F14EC96385FAE30435 +:10469000BF477D2903E58F3817AF61DDEB7AA0FFB7 +:1046A00085CDCC3296E2270286548233C576015CF2 +:1046B0007AFC64973E2AE5A13F18E4564334B45B84 +:1046C000AC06C8AF197E2EC9F4E78AB81F78DEA5FC +:1046D0003B175ADAD244E76A9A3C44B9C5C2F4DAC5 +:1046E000503CF20F286F3579A4C95DD0C37724F30D +:1046F0007D0A39075ACAEAF97997907B7DE30AB9AE +:1047000079DAC0E5F442732B7D7F93ECA6F116B302 +:104710001E2E77418E22FFBFD4FEFE46ECAFB6AF11 +:10472000B5C028AF81FEBBC47EF7F1B57B5970E9F7 +:1047300028FE8D1A45F0E4FA8085EB03F88DB80C5D +:10474000BD205C1F0897FFE1723FC9C4E5BC860726 +:10475000FA7302D473C6DD1B30E07EBEB432B019EA +:10476000DF59FBC61A3D0AE3C15658F8F7AE88E890 +:104770000EFC7E631D1240BDD35FCCE9CC7F328A34 +:10478000CE07BF913DDB5E87EFE4F59C8ED634719A +:1047900079B1661597C767049D7427733FDD7782EB +:1047A000AE0EE37846BCE7B087C69D6CC953908EC9 +:1047B000A7D93F1FA260FC1EE84B91C0774116109D +:1047C0009F351C88A273BFC9A9D704719F8F4499D4 +:1047D000E83D16A47B1BECCB14D6FF6387F464FC86 +:1047E00005869C621BF617E49F93C5BED75A7CBF13 +:1047F000C2D0B54F8DBE5FA3E3B4D5ECFB10F1671B +:10480000127335A0BE3F71D4149A070CFB17CC4F1E +:1048100062EAE964E25F69768ACB12F8A9CD5F9B10 +:10482000A7367F945DA8A71A0E9929FE2C7C7E06D8 +:10483000B19E35CF46055643F991E4D7D6213E8542 +:10484000CF5B834BF8FC61BE7FC7F97C9DFCFA1CF3 +:10485000C4DB620BAC43A6F9FE1F31DF7F248FB9A6 +:1048600078BE16E42306BC6719E50F8B6B36A6E00D +:10487000FAD2E490B85E2D3E51A3C3239FB24CB44C +:10488000175923F49588F0E27430C966FE00E9EA0E +:10489000B0911D403A5D13C57270FD47588467B5ED +:1048A0009BBAC9C2A7172451FF08E374EA3F114518 +:1048B000FA8B64E17109A0C7B8D08E3A6235ABC4F7 +:1048C000BF5DAE90F83E8DBF1FF9532AE94587AD15 +:1048D000661BE225D6477E7958B20432A57EFC6578 +:1048E0000E5D1C5FE6C5F88CE2E64C7E3F5E6BEF2A +:1048F00063FC2485F3815416A47722D261AAC807E9 +:10490000D36D32ED1713710613C57AC2E739D16240 +:10491000A3B85366337ED2A3E37FACE541550FB70E +:10492000C308CF987EB86A700C9FF74570D806F020 +:104930002FD4C1DF02ED46D1B9224B8D1BA03D4BD8 +:104940008BC5F8668AD9013EF471926F620AC5FB85 +:10495000703DB4B7C2427235AEB497EEDF9DEC7FC6 +:104960009782D679440C2B474E48C338AED929E2FA +:104970001E7ED8BCB4F584AF331C0EDA7C2FB5CEC6 +:10498000A35A7FE1EBB50FD23E6C9D6E93770EAECE +:10499000F3A4DC1345FC5CDC0FAE13E7978899D8D1 +:1049A000EF2DA2DF5B7A24EA7707EBBD7F18E9CD14 +:1049B000063BCABD5B0E198214F7DB3849ED0919B5 +:1049C0008FD381D69E6DEB8D4679A1F5F359CDDF5E +:1049D000A331BE7AB0F6B7A7707E7878D6D71467C1 +:1049E000B2E350279D9F6FAD005E49F6AF271AEDE9 +:1049F000B25B0DDEAF32A0DE9F6B64C2FF3FD744D7 +:104A000050DC6F38BFFEBDE01797CBB719ABBF0ABC +:104A1000E73BF9A773BF72D0BB8BDF5D8BEF2C4EEA +:104A20009E32F70E4C9F4E7DEB5A1BC8CDC9132505 +:104A30003A87DB9872FA7E7CD770F2F573EF488084 +:104A4000F27FDFB9F63A0796DF288973BA37AEC32B +:104A500078E1C9374BA4E415A4F3FA91053E239EEF +:104A600023CE14EF06C192547D9CDB83293CCEFFFC +:104A7000C1142E17B6A5B8E84BA042FDA39AC76B88 +:104A8000803D66ACA473389F11E77DFC1AB062AE1E +:104A9000C27E7DE92D3ABDEEED6BCD37A9365E4F76 +:104AA000EFFF7E54C05BF34784EB737B055E6BE7DF +:104AB00030D87EC6487DB942E58F8AF9D95C5CDE84 +:104AC000E3BCAA46F2AF5EBF7E7B56D18B78956879 +:104AD00086C7DD80BDB94DBE7DC8678F247F1AC5EE +:104AE000F5D59E91B88E93C61E1EF714CBFDD1C886 +:104AF000570E021D4F2AF53C7417FCFE7E4A1C8D92 +:104B0000FBB691DE626147A2CDED0DB0946382DF0A +:104B1000E24FB3265FA0DFD6C8FBD39603DCCAD230 +:104B2000CC142F5E66E370FC7DB6A4F12F7A7F472C +:104B30009333E5AC5B41FA98923B9CE4CC75AC971F +:104B4000D25E6637E2B79279E8FB59514F21F933CB +:104B500034F999DE273F5FC57595B200B59BC67CD9 +:104B60008750AF7CB76F7E41A2EB3E7E19260F06C1 +:104B7000E59738BDC4FEF3398D5F4BF385BC58E72C +:104B800027FE9CC47C2790CEFBF975B744FEA3B1E9 +:104B90001E0B3FB70DE50B7DE7342324923F0F46F4 +:104BA0004693BD786C84D461E6F031E07D42822783 +:104BB000349A9223CDA5F7D850F842BB691E89F4E8 +:104BC0009029AEA4794857D3702C68FFC6180E5FA1 +:104BD0006DDD534A019E503E65FEFA6EE4EB537262 +:104BE0005EBF6120F83E67F44E4AC0FDBF96EF7F7E +:104BF000955732E07B25953912C549BEB9F218E9BF +:104C00001979475DF48EC9344F2CE58F7E3528E342 +:104C10003B16D78E8DA578CC914FF5ACC6F44F5589 +:104C20005E7ED5A1DEC398AEC88DCDC7746E97BD2C +:104C300008FDE265556E8C3460B1B3154E5F599234 +:104C4000F64E5D085E94BED5508EE08B4A1D46F848 +:104C500077B5576293A1FDD555D2C3E8525E1DB911 +:104C60006C029DABF81F31205FBD5EEC67EC6C7E83 +:104C70004E7DFDEC0A23DE3301BCB913D70978124F +:104C80009B3AA61F7FEE8C78FDA40413D92FE282F5 +:104C9000FDD76974CEFD11D3BDC3031BC4BCAAF4F8 +:104CA000F2161DB489FD72E26D49B49FCBDFC57960 +:104CB000E55D3088812F4C2C779730D22B189D6B77 +:104CC0002479CD740E3531E7FA32DC9789DEF5DDD3 +:104CD000546E0B93231FEAE2F721FD06EE27F4E75B +:104CE000AC92C8EFC6F4F1FD068CFFE1F79F9DA5DD +:104CF0001C2F937CA690FB0268D784D467AA2795C3 +:104D0000F449D07201DE3922FE067E0D621C297C38 +:104D1000558C4335A69CA1738C630B247A5F777CFA +:104D2000C05B41FA81B0FBA60BBA78663EF76F9480 +:104D300079A580057E2DCB59351BD71BFD8E8DF4B3 +:104D400063C47753413F7C9890EB7B851CBCD2C9F0 +:104D50002C19A437487E3C47B9F299146E3F3BF9B1 +:104D60001B04572C77D13E94954B8CFCDCCD11F471 +:104D70001E1FCCE3FBEF75F772A7978B79DC5B10F6 +:104D8000A0F7341CD7CAFA7DDA9FAFC513F98D2876 +:104D900004AABD3E16447A72320F9E3FBD5225AB27 +:104DA000F8AEA29F59C81F2DE74A8407955E89FC7B +:104DB00032C51722597034EEB76BAD03EBBD6B22D1 +:104DC0007A49A89A7B13D3ED5331D855E48FAAE6DC +:104DD000F1EBA819293A3E920EF8E345FB398C0F06 +:104DE000A1C312E19ADC97866E1291AF303A076048 +:104DF000961E827B94A687097B507B876D7C4FEC47 +:104E00003CDC9F422FA7F3A4EADFBD83DF9FA566AA +:104E10001290F0E91CF4FB4B882750EFED4F59211D +:104E2000F289B707791779552A97879A9E56E9E349 +:104E3000F7CFAEF74924F78A4A5729680F7F13EB5B +:104E40003F8AFCA3325762AB611ED34A5B8DA847F1 +:104E500094CC9F9B8E7AC5DB51DE74B49377A6BA4F +:104E6000A8BFAC2A7350C6F1937D94FFB6888FFF1C +:104E7000E64F77DD8C7853E98A7523DE14B96ECB63 +:104E8000407C98363FD68DF0DF94CAE56375291FC4 +:104E90007F9AAF82C699317F2EED6749757B1ACE16 +:104EA000471BE795F4401AFAE9401ED33B7A59E5CF +:104EB000625C6BE8783373613C282FCAE5E3CD2848 +:104EC000E7E3ED12E35556C37800A719625DB3CA54 +:104ED000DB155A5FCE6DB4BE3FB8EB6FC2766F4F35 +:104EE0008571A05D56298C0370CFAA5EDF8DE31D0E +:104EF0005EA9B23FA33F3A4C0EE1D5A2A8FCC1E5A2 +:104F0000CF78F47B615C1FE013C6EFDD6FF2341ADB +:104F1000D0DE2A09087F79A85C49FA445D8BFD96AA +:104F2000314F8983C723CB8D89FD7244930B0F6A60 +:104F3000FC2A4FC89FE93184E76FA0FC81F9B74E86 +:104F40008F21BE3CB380DF5FD2E4CF94529037F024 +:104F50009D29E4CDF1AB41DEA01C2AE7725B9333BF +:104F6000F8A3E7E39ADCF9293EA100F3AA609E3793 +:104F7000F3912F185D44277E2B973B25CC4B72690C +:104F80002AF3575D8BFAC59B5F901DBECC105C87E2 +:104F9000F80FF626F1EB3B23DCD4CF74E69BF057F9 +:104FA000C8F704EDF4FE56592E973BF9C73C47303D +:104FB0005D5EC0D3B95DDDC52887AE9BC0D3200739 +:104FC000DE443930EA00974FDE12AD1E4F97E5BA46 +:104FD000495E019F7C2B75CCC5FBF6A6A0F3BE7D78 +:104FE0000BA7E3B07DECD31BBC9CEED8BA7AD213EE +:104FF0009CAC4BE2F7BBBB258443DA1D8CCE390752 +:10500000D31B7EDFAF6F85DA7F97A9CF68F3204E81 +:10501000A3F115DE9D1DEDFE34D1BE10FD0938DF74 +:105020005C4DCFA9D7F49CBF7378F0F93A71BE00FC +:10503000FFCEC43CC2CBF0F9AE74AADFA29C996447 +:10504000B07990CF7EF1267FF7689ADA5482745F48 +:10505000CEFC6BED3ABE331CEC2C4527B746042C36 +:105060004CD1F9E7AEDC630F498FEC7286D4BFEA0E +:10507000802BA43C0F849EBE7CF4314F487A4CF7C1 +:10508000D890FA3F7A470D495FDD531A527FFC19D9 +:105090006F487A180BC8B8D86B7AAB43DA7DC10277 +:1050A0007176D24BD4EE9C44BA474A3F3FB9E00BED +:1050B000693F52DCF72B628B42DAB3A7F87DE27AC4 +:1050C000F80FF7ED8AB0FBC4C3C47BBDD52E63C80F +:1050D0003DE461782F301ABFA1F5C3EFF7E5A5894C +:1050E000FBC605AC00F5818BF687F1FB9D33F6B06E +:1050F0004040C2F5505D76C576FE6E63F8BAB4FBEB +:105100007FCCF0AA82F5FE0A72189F98303B43F7D5 +:10511000D3EA0ADDCFC89CD0FD8CF284EE67CCD8F0 +:10512000D0FD8C5543F733BE34743F13BCA1FB99BB +:10513000541DBA9FC9BED0FD4CAD09DDCFF4FAD0E5 +:105140007DCC5811BA5F6E7F4D48F9D0C6FA507CBD +:1051500014FB99DDB222A49DB69F7EF8EF87F6730B +:1051600046559111FD1FD3BDFFB37DAD4D13F736ED +:10517000C5BE5EEEBD4DE073CBD3C6F4EB2FF8A3F6 +:10518000B7E77E37F5470AB7EB963DF53AEC6FA9DE +:105190008DDB75F8A3E7F325B9150A1E8F950AF97B +:1051A000F04E36970F9A9E86E63FD9333E6E97941F +:1051B00009BB2FDC1E99CE7A87284307E7FBC0BFC7 +:1051C00037E07C5F8AFC2DCDAB9405A9FD9B7DF378 +:1051D0000F5E64EFE1F9D1E5F2C73E3E7D5D3DF142 +:1051E000E74BF269577A3FDF03A63A71C5442FDED9 +:1051F00057EDF36FBD66A47B9813EF2EA2FC557F8D +:1052000032537C557139F7CF4E44A519D36764B238 +:10521000EB8A6D3C3DD10EFA34D79F553FEACF095A +:105220005C5E1FAFF0A4633CD6F16B93B4782CD2D4 +:105230005B7B250B9D2F1E8EBAFE4FF5389E88EFA7 +:105240003E9EC7F7E3F85C17D1EF614DFE2FE5FAFC +:10525000F8F1281ECF75FC36FEDEEE7137AC13C6B2 +:105260003BFE33974B8BCB42FF636F941C1697D555 +:10527000437EE68363EDF4F738C6677405312EB5D7 +:10528000778B44EBD5CE490FB60CD7E2B2F8F9C80C +:10529000467EAE74D6C8B81DDC3A82D61557CAE72A +:1052A0009571466EC7AA93C47DF6830A48689CAF81 +:1052B0008BDF0F3E28E2B6DE16F2F0605F7C969F31 +:1052C000FC0E07AB87D1B976B85C3CC8FC590FE03F +:1052D00078D51122EECE5FF006D6AFB982D767A19E +:1052E000F63ED4CF7D12EB7B2D54FF78AC271DE327 +:1052F000D6353C397EED9474A4D712B0E3709E2568 +:1053000055FCBE7F89BD55C17CA99ACBCF70BAFB35 +:10531000C8E93B959680F1708FDCB61CFA9A9ABD6D +:10532000DB8A747A7C107FCAEFAE05FA93FBE9AF93 +:105330000CE9CF855F17D9956F80FE847A77383D69 +:105340006AF6BFA65795B216E11FE1F4722DEB5134 +:105350001069FBF5B25EBA277331DDE5519C29D0A7 +:10536000DDDF70DE65E85FE140257F13F08FBF234E +:105370003D6A707833B6EB089E2B96C0BCFC342B8C +:105380003FD3EB2B83D19F06BFA9F60FE85CF9B0A2 +:10539000F59B217AFEF57CA2CF9AAE3BCF9A1A17E5 +:1053A000B0DA07D0837F3FA85FEAB727103F2A858E +:1053B0005FAA52C0EFB895DB35E1F09B5855C4FDAC +:1053C0005242BF9DC4FC423F0D10DCCA07E15F3F63 +:1053D000E0A772A78F41F8BB34FD95FC5400BFCC09 +:1053E000F4848BF9D65B621D97AB6786E36F1F3F32 +:1053F000AB0AF557697E2A3696D3F91A8D9F85C177 +:10540000B1CFBF1736AEE4E2FD4D16EF1CBC62E72C +:105410007602542C4F4E443CE33FAF34727A063C44 +:1054200020BE532AE42343BD25879E3BA179FF95E7 +:10543000D97C168053796EA8DC2B16EF199484BDA5 +:10544000AF522CDE3F280ECBD7D61B2E17B5739547 +:10545000C1D63D3D5DE8432E36FC7B28079948FACE +:1054600050F75B063A977831E1FAF9ADB08EE1BFBB +:10547000BA82DE177A31F1C63B5EC7F42F87919D61 +:10548000303965D1CEDB20FDF08E5C2AD7E4EA4DC1 +:10549000189D8674214B0BD01F9853F0EE0D6E981B +:1054A000F7512BBB09D34E56D35601E3387333F370 +:1054B000D7403F252646F5A65DB574B43E4E60A99B +:1054C000E8679A884F4EC72701F3E9ABA09F26DD16 +:1054D0001950ECD0AF49DCE74A555803BE33697226 +:1054E000B6D8EC08BF08DE6F496630ED76B477F6C3 +:1054F000DBE85DF12B3D911F0CC5F94812CDE7CAE1 +:105500001C2988EF7E97C489FAC5C1ACCD587FAFFE +:10551000291FF9F9959E6BCF62FD12F15E6EB4EA18 +:10552000338E407F8AF007FD41E1F8B13EDD42F65F +:10553000F733B38B8CF89EC24C2FF7C739FD3D0D66 +:10554000F1B8DEEAA2025CAFB6BE75E9FCDDB2AA34 +:10555000B1BC5E9577AE71BE6EFD33D55E7A67766F +:1055600066F5070AF283B7C2E8BB027F21FE38E77F +:10557000A69F41FF55259C3F560DC21FBDF80BE06D +:10558000CBC4D99CAF559472FA9EC9EA892EAB5907 +:105590000B7D6F605DF49DCDBA395D7FD047D71923 +:1055A0008ECC10BADE89743D83A9C25FCD9EEF71A7 +:1055B0005F4CCF83F13DA0FF8EF43117D3DF2B83F7 +:1055C000E863AD914FEC443E362B8DAF9355B7BE9B +:1055D000887436B1D44CF6D8457C6CE450F2FF0F99 +:1055E000260F06E36383EB61ED8AD0C39E4BD7E9B8 +:1055F000613A7970287D00BBF9F800FC4CAF970D3B +:10560000AA8F950BFE15A68FA13F0BD79D5ECFF8F5 +:10561000B942981EF603E7CDC7D32FE3BC39FCFC93 +:10562000BA2A519DE0D69DDFD4BD63B1B830CEBE5D +:10563000C0CB326D78FFA6684126ACBB4E9C33458B +:105640007633B51DF2778978E88A4C17D1B1D3C487 +:10565000E367F0DDB63C1BC68D7473BD2981D9911B +:105660002EB5788F5D51D02E1FDB71FAEF6B6F6115 +:105670000D11BAF6C537723EFCF5469338EFF76563 +:10568000A0BE94F84733C5359FBADF44F18E434D31 +:105690009C6E1DDA3D07FC4B31B09EBFA6BBF9796D +:1056A000AA74D8894E293FDB405F2D1EF694B8FFBF +:1056B000F4752C7F7FEDEB8D8912EA85A714F5A593 +:1056C0006A1877E8E65889CB4F5EFFD37417F57BED +:1056D000CAA57E7E0CD75561E3FA20F3E561FCA6EE +:1056E000D950506631A0FCB8B7F75801F2379B1D6E +:1056F000F1B824E3C4DBF83EFDD9A78CF466E7A239 +:10570000DDD36382D84C519DDE9117EB518B02A102 +:10571000F262C99ED0F4D2AED0745D98BC089713E3 +:105720008E217D72C08372E072EDA721929A3204BD +:10573000E376C4BE9BCDF567DA61DDE64D39F9ABA2 +:1057400088EFF4BE806FD3276E76D3BDD037919F9C +:1057500043FDB3E9DE4C6C67CEC81D85FA62714625 +:1057600039C5BB7FBDDD4A7F37E86B2BB703BE7EF3 +:105770009ECBCFB621BCBC6D87D925119DABE5630F +:105780000A318E8AD34FDD362E2FE1C7C2DF2D526C +:105790002DB88F6D26D5948CEDFE8D79703E35DB5E +:1057A0006EA578BF5AD64D71F48B86F0FDAA333CB6 +:1057B00066B2C0AF6D71CE62B427DA9E90E85D59D3 +:1057C000E55B85FEEEE17AECF26A7CBB59B5E33B22 +:1057D000D64B0FF0739F1F0FE17ED20D1342EFBF28 +:1057E000589EAAF0A32BF627DF96D07B54B7AE784D +:1057F0008EE2B41DA6DEF822B42736CA84EFB7DEE7 +:10580000FD2CE54B95A5DDF8778E4E6FB4B9108F62 +:105810008F6C37D3FA4F3FCFF58BD3BB383C6E4DEF +:10582000B3D13943F8FA1BA4A0889BEAA673F08F82 +:1058300076DD158DFBF791163F6FAFA7FBAFCC550B +:105840001F1247DFB9D340EF8F7DB473F42BF8FEFE +:10585000715B65D91894EB3F892DA0F7C9B4722DFF +:10586000FE43891BFB30D2D54FBE35105D946C9A38 +:1058700010817E6705E422C621BB9A8B292E77B161 +:105880003722D625D1BA68DF3A375A685D75CD938D +:10589000699F6A9A6B681F864E4F91A9FC3189D91E +:1058A000715F0D13225641FBBA4DE45E629D4C2997 +:1058B0001DC83FFF7D3A3FB73E5A19E10942FDB38B +:1058C000C27F5394C1E733D930A10CEDCCA51B6541 +:1058D0008A0F5EBAF18D447A0FE32103BD37255557 +:1058E0008E4D41FF75381D69F30BA72733F48BEDFF +:1058F000C3E9AAD3EFA177F6C3E90B7F82BAF88692 +:1059000063CDF934AF70BABBA53993DEE9608D9CE5 +:10591000FE1A86F0BFCFF94FD0DF063DFDB1B4CA05 +:1059200090787B8DDEB4B4C6DFB573768B87A9BB68 +:105930006D74AF5DC57BFBBF19C2DFE9FFCD10FE03 +:105940008EB4F2B7E57B5E43D63BC4B77D08C6D9BB +:1059500031350FF1CCFD15C36737289E809F63F268 +:10596000FB525B8D5E99F050F1FDC76B906F6CAE92 +:10597000198D74FF98E8EF6CBAAF03FB997FAFEF16 +:10598000F31718E2DB1544FFF32F54D1DF37C2BF02 +:1059900043C2EFE77A8BF1EF931A1DDE02C4478D05 +:1059A0006F67C37CDB07881F786D08D7A3B21D5EC5 +:1059B000EAE7F10C3BA5DB5096413F3B56F0B80DB2 +:1059C0004D5F8B167BE816EFCA59C672782C771A92 +:1059D0005C488F300EE5BBC7CAFE29F0B58DE5F7F0 +:1059E0007A230B820CFBCFC67CC023B787D1FB3B4D +:1059F0005A39D4FF00F3656671D9608C66F80DF1F1 +:105A0000213B87BF9BE76EE3F9DAFE7FD122117D50 +:105A1000822D6CC7BFA76361427E1670F9B9DC693D +:105A200072E9DF75D9925C740CE1C75435CBA1BD26 +:105A3000BB0B3F73445C04702D8A6FBC3997F9F03F +:105A40005EA4B69E716D2AC5B985C36DBE98E74642 +:105A50009C27A0CA380FA473069FDFA3C82F75F137 +:105A6000E2DAFC4CCB6C0AD2F32ED44F60FF4D2906 +:105A70004E1BD291161FE388802FE80BE929395479 +:105A80000FD647716AA08178F0BC71B0B81947048D +:105A90007CA17EBACC14C44F93CC4AF0DED05D0614 +:105AA0002FE937DFC82DC23F1F94503F4B35B46FED +:105AB0005F08FDA65E9FE6413D7B86453D4FF06257 +:105AC0002EBA377E6A90BFAB30C352F425D29116FE +:105AD0005FA7D16DE21A1672DF4E8B2F0A8F27DA7D +:105AE00021B758703E4332DC5C7FB270FFD0D67174 +:105AF000CC8EFE95355773FB53DBB73AB16FD2218D +:105B000089F68B85C54369F1529122AE5C1BF796ED +:105B10005C25681E607CFCD1CF5BAB1FB9BDDB8D03 +:105B2000F31AACDD4ED0CF306E99ADF3B8B0DE3A9B +:105B3000B72F11E39D52D7CC750979E246B895335A +:105B4000D74E6928FA255C69F89E60B9E577EF6061 +:105B5000FFE516D645FAAC27DC1E0FD5E79709BF3F +:105B6000A0C3C4DF89D0FC82CB845F50AAB4905F0D +:105B7000B0CECBF5B88987B8BCAB6BE07E41ED1DEC +:105B8000ADBA0345C946C85FE6354928075DC2CFAF +:105B9000B7FFBB89744F53BB87D8778F37AFE79771 +:105BA0003F47B9B688DFCB3C2FFA695B559C8CC464 +:105BB00033E8FDDEB5727B875B77BF77ADDC21FC18 +:105BC00076E21E9B3D82FE0E93D8CF0C01F77671D4 +:105BD000BFB25DF8E9A47BF97DA176E65A45EFFCFA +:105BE000DDCBF8BB2AB97C9CB806B903CF7B037820 +:105BF000B01D83F518F70BDA2C221EC31E51C9FF06 +:105C00006E13DDBB4B1CCB61DCAEF9FD049E08912D +:105C1000C3DA62D564F4D345E57ADD360FD8A5BB87 +:105C20007AFF3362CC3FF1FE837F630BBEEF30E837 +:105C3000FB0FFE3F7AB1DC82316BA21CD51190279D +:105C40007D7F6707E3DED747F5972BA087591A4476 +:105C5000DA1FF04ECA82F54A5AF9B39B306E6D9343 +:105C600095858CA79F9F12D6BFD145F15F22FDF18C +:105C70007593147AAF45A44B37E17B179B8CA1FD3C +:105C800011CA8BF698D0C6EB70DFDDD29CD62FD729 +:105C900040CEDD9901F072F5DA8BE9CF9F08F91754 +:105CA000699F4ECCD678A18AF8BFD1C1ED758CD151 +:105CB000C0271FEB72323B28EE42E1767784DB454A +:105CC000FAAE3F83CBDF85262E8F9443152A3E758F +:105CD00060649E8ED7DC240F1B70BCC48CF297507E +:105CE0007FD1E421E8FDEB7E0AFD366D61E45FB60D +:105CF000B4893878B1DFE6BE38083F93A99E770CA7 +:105D0000F299F7337CF767E8E47D769BCB84FD75E9 +:105D10000ABED7B628539674F2B33383EBAFD939A2 +:105D20005C7E65B7051A33A13F25B68AE4AE562FCF +:105D3000D39E45EF5967A60939087216F5E0CC36AF +:105D40001F8560642ABE59B8EECCEA8526D4D73BBD +:105D5000330CB4DE82C68015F55D5623D3DFABB8B5 +:105D60002FC3C5FFEE8A7D3EE985C66A8B0D91770C +:105D700087F7612BBD979DD341E333BB42EFC5311C +:105D800005F400A8F7CB38658CFE5D990D7685FE8D +:105D90006E69A1C1771BC59BC48F53915ED2E3CAC4 +:105DA0004A3DD12807F6E5DD6EC3FBE603BFA3FB42 +:105DB000AD8BEF4B83E4F5FF14E92D8F31A44BAD90 +:105DC0003C43BC13723083EB2D2EBF9DEC82095FE8 +:105DD00079493F3E98C1F5A4DF2A3D91A8FF65337C +:105DE000F5B65B709D5E9B0BFDF48CF1F300C74A2A +:105DF00017DD0BB3387AEEBB0ACB3DB207DFEFD429 +:105E0000F4E9F3CF26515C54AECBF73BC483424355 +:105E1000CF66DC77761FFF3B24E79F35139F70FC2E +:105E20003C97E27A9A1C3D9BD1C7B8CBC8ED6A8BF0 +:105E30002368198A70BC20D33BC591B04DF8CE942D +:105E4000CDC6DFBF2A003AA57B244E89E2866C9E30 +:105E5000DEE3D87F99EBB807D73151BCD715AE4FE9 +:105E600090D0D3CEAD18AECFCF4E5BC8D5D4F07D99 +:105E70007CBF9E3189A914B7AFE91F5BF1DA2B34DF +:105E8000DD2A5BE85E7B41378743D9BD2FD078514F +:105E90009E2EBA4F371FFDA390CECCA9A4FB2C0B8E +:105EA0005A383DDD22F090299E14B2633222C5BDDE +:105EB000C006FA927CC3F5349BE8DC24B3D16DD2E2 +:105EC000BFFBA6BD37744B0B7F9FC924EE1B661624 +:105ED000887851761F957F21E852B3DBFBDFAFE175 +:105EE000E3F6BD8395C7F9F5CD5995F4EE545CC141 +:105EF00015F9386FA7C22C184F64117814FE0E964E +:105F0000369F82D29664FC7BF6FDEF607139F0DF3C +:105F10009102ADAC008000001F8B08000000000063 +:105F2000000BDD7D097C5445B677DDDE9374422796 +:105F30006425907427242490844E5844416C12C0E8 +:105F4000A888CD26E0821DD6900D8459A283A66331 +:105F5000C2A6F88C33A8E8A0761050674003A2329E +:105F60000A4E032ECCA8639CD179B80C93A0A3222F +:105F700020115C9819DFF33BFF53F7A6EF6D409DAE +:105F8000EFBDF77BDFEFCB8C9655B76EDD53A7CE19 +:105F90003975B6AAEE79535CBC49089116B7B4DDE1 +:105FA000944CE50D05652D1E216287F54CC8192E10 +:105FB00044CF656EB1C92D44BC9BFE9522448653E7 +:105FC000883E6542A4DF16F42C2BA2FE0E7A96447E +:105FD0006DFBFD37BE84FEC5B15EF4A7F63531E832 +:105FE000279A15F45B95A2CCEA40592566EDA4D218 +:105FF00042FFEF9324CB43542A16D16AA532CD2217 +:106000002CB1B2BD15DFB92741DCE0A7FE2926F38C +:106010000D53A8BCA74CD693BCC2B78960C97227E0 +:10602000325C697651A924C9F6103D27B07C3BE863 +:10603000795AC5D25286335796B767842D2257882E +:10604000074468C31682375860736DA1F94F2A78E8 +:10605000F9905242A543749813A8C16B3DDE5520B8 +:10606000F8EFDB1C21F6A64E1BE41E21C467B3CF5C +:106070001C6EA0B67B9AA7CC5E80F78B9DDE2D347C +:106080005F11DCE19D168FDEFD133F1A228419EFAC +:106090005D22C4A9E3B126A58F10070FE6F6E92219 +:1060A00078806B9141EDC2DDC745F08C369B842032 +:1060B000BCF7945A429B1421163BAEB8FFC3BED422 +:1060C000C7B2F4AFB7D0F8CED7FB7A6FA7F1476766 +:1060D0000BD92FD1C6FD084141139EEF280CDDEEF0 +:1060E000C1384A989F3F6DE7E747AD7E9F02F8763B +:1060F000E479B7F02CC2AE29C5047F93FFFEF17995 +:10610000F49E55F8043D177BE3435BA8BFB3DD1451 +:10611000CC2338936DF23B27F7C6846E43BB22BF76 +:10612000237E1317DA42DFF94CC8F7825ECBA62D27 +:106130000C872F7D1A8DFB2DFE68BEAD8AE075762B +:106140002AE1853CFE8E1813FA69CFFBD9A99DC6BA +:10615000174F51BB27D2FEBC55B60777C428FAF6B5 +:10616000676CE1ADFCBD9DB2FD0D7B6036D6417B19 +:106170005E9710CE4F747E171E4510EDCE3B078400 +:106180006E5774785CAB703F65AAC387FA47A596D3 +:106190004D7685F178839FC6FBA0C014B695008F1D +:1061A00044AFCE08FEB4EF12FEFC98E7BC0D1FFF13 +:1061B000872889E06F9EDFD66D2E61BCF93BF09E8B +:1061C00025EC9A1A1F796F5ED9FC492221528F2E35 +:1061D000E7557F3307E3CD5B63672266FAA37F7ED3 +:1061E000021AA3797F1533CE06E2FAC9CFA7D840A9 +:1061F000C70BC5522EAB451B97F4E730A5A3F0396A +:106200004CA384A8111DDCEE5E6309A6131EDD8776 +:10621000E2426E9AA73B28DCE202213C82E884E657 +:10622000EFE96FF286F19A625204BDE76EA5E76965 +:1062300004FE5AE2447AAF7D8D1252E8BDD5AD26F8 +:10624000AE07D729A13C5A8F60ABC98771E87BE9BB +:106250007E9AE7BD6E33F3E3136E1BC34B6087007A +:106260008F566AE3B75A05E3B95998C2A89B1459E7 +:10627000AE76592A43CEB3F1A28DD76A5DEA18876C +:10628000F51B607241CEB45A034BB07EADEFC4999A +:1062900082044F6BFCD23595F239F3DA5731E14A7B +:1062A0003CFFAAD424828AC46706C19FF34E4C3BAC +:1062B000E8619DDBC4F046E37B419BB1BE6883B1DE +:1062C000BE3864ACCF138127D369EAB58F19DBD709 +:1062D000B95D727CE1E67568B5BAFFE8819C24BCC3 +:1062E00002FEE6FE127FA601B2CC491C3F8BF926C6 +:1062F000D126F2009F45D2EBBA35C9ED80BF35916A +:10630000F8CBF95F87371ACE67DCF90C278DCFDF22 +:106310006B25FE50F1C5FC3E6F9BFD11C89979F1CC +:10632000EE04CCE398D25360061DDC19EF663920E9 +:10633000689EA942CC75C9313F50BC5BC3D4DF74A1 +:10634000D7F6B5F978FF0E73197D51544C7332BFEF +:106350003DF7A933047EAB269C6590DC7ECEFBD650 +:10636000CB781E3D2FFA735B46D2B8F82F5AAAB9E4 +:10637000C9C21743FC21F4FD72F06FA20F4D5E639A +:106380001D52FC87DD349FE7CA05D3EB730FD8435A +:106390002DF4BD7B4C1FEC7805F8DF11C3FB54C313 +:1063A0008A9EAD82DEF7A504FE06B972FCA67727A9 +:1063B0002A6E961BFCDEC9BD699B4027C35BED912D +:1063C000F1F1AF75BA3ABEBF8626712195EB8DED1E +:1063D000D51BA3DE13FF69D7C329441BD3F5BDB674 +:1063E00040A18BD6F501FFC89180E75E6B5B25F875 +:1063F000FCE3F4C0D780EBC309FE974D1E5E8E7C94 +:106400003FC9A117BE99976B81BC3CE4F0422EBEF8 +:1064100060E98A4B2479F46AB69BD731DD2182D8B2 +:1064200047D18E716DB7497E8BE62B9347E1EF27FD +:10643000797C3BB2A914DF1054846F33704B43391D +:106440009C3B7D66C8EB3D8A8BB60DD1E016DD8B9B +:10645000487E39F7283EE8074B0A4C2185BEDFE02D +:1064600034755F40ED794E93DC570A2C2C1F1AD6F9 +:106470008BE0225A2FCB9E66481CF40B5E40F585BC +:106480003609A70647C3EE292240F0C525FB4D0B70 +:10649000E87BD66A13E3E85EDAC730DEBDD417FCCA +:1064A0003D9CD63FC4F238C470A7DAFCE531F43C19 +:1064B0003535EC0D62DD84DF0439D4DFE3BBC04346 +:1064C000EFFC0D4D19904EBE2C0FF5FF12FBF15055 +:1064D000DA8FDF9AC6FBF197C2CFFBF047E6C04FD9 +:1064E0005C44D78B4490E5EB6211E252ACEFCBEB0E +:1064F000BAD022C216C2E7C2E9BE77A02780BFC2C7 +:1065000051FCA5AFD7894E298F89CFC23A7AA8B35B +:1065100084F72984A77A8708C7A1EC30BED7207AF0 +:10652000F8BD25BBBFB5870D7C20E924CDBCAC747C +:1065300029E6EFF30D4CA67572CA2E624E3F894FC5 +:10654000C52BC2F104DF0D4522E0C8F9E1FD8EBA8A +:10655000DB524D66DE0F99EED7EC554276C2F7441A +:10656000B3D3E7A07AFD9D26E6571A70D28891D85A +:106570006F247D2C714F3C8AFD4CD31B1CCF98435C +:10658000B779B8BF374CF5FABDF15E74AD76574FA9 +:10659000C2BEB638643DD2A59B578DD831D1C5F85F +:1065A000F2F781BCA87DCCF8BCBEC3585F222C4753 +:1065B0007AF532EADFF8FEB8F08B3AFEBACE139FD6 +:1065C0000CFD8B60F37C0BFC9BAFEB133807DD6B92 +:1065D000E5D74DBEF08B56D22315DF5CD04B8D45F1 +:1065E000F8B0AF47F77B6B80C2783BE03CDD37A06B +:1065F0007B5E5E44644DF591E5E7E6AFA52A7FC575 +:1066000075AA7AA925281275EF9FEFBD9B3C267EBF +:10661000EF804D3EBF2B3ECE07FCA5DBC41A475989 +:10662000A45FBA49B43A882EFF9AEDFF19E8DBE17E +:1066300076DB00DF23D6A0803E1F4C11ACFF3D6807 +:1066400015C118EA976936F17A669A1D9B200F9753 +:10665000654BF8BE8F4EE28A7AACC063A67907D349 +:106660001F6DAF4141E3D94CB43F60DC3821A0EF4E +:106670006F8C1141C043CF85229F0B5186F7445840 +:106680002993F6421CB5DF857D86ED0527EB611960 +:10669000D40E7925446717F4D63B463ADC90BB69A3 +:1066A0002609F7F9D68FEC85A053DA0D6C8790CACE +:1066B000128CFF8EFE9ADC48B34BB8A2ED9EC73D0C +:1066C000FECDA003424809E48886970695DE7BF15B +:1066D000B25B09C72744F8278E60B640EEB5D9599A +:1066E000EE31C9723D83F5EBC3A8931C3990EEDF00 +:1066F000817512DABE7A5731EB21A2B12FCBA9D521 +:10670000F1D2BE213C1AD659E3FF8D8A5CEF91E5A8 +:106710009DBC8FF6DC4236854EBFCE56E9EC058F28 +:106720006290AF995ADDE3FB2DBE7FFC1D8743903D +:10673000BE3A7CB8E4DB06BF93E5B8105DB69F5166 +:106740005BF66EC5753BE4518189C71B9115F81D39 +:10675000DE5BFDAE3368A6F76E2F38B22A13723AAD +:10676000D93B12623217ED24578F0E08BC8E7EF390 +:1067700057043EDF07F139757009E871E4B715ABCE +:106780002A25BC2EE865C976B154CF67273C520F45 +:10679000D3CA4F55BE394ED2711CC1959DEC9B0D8D +:1067A000BA10B42FE4D112C4B93BD9BE69D825952B +:1067B000140602FBD4CFFA33BE1B768D2B7D09F570 +:1067C0008E9852F41FF99E93F17DFCA67E21333DF5 +:1067D0002F72078E00CEF8E13D0AE03BBEE3B252D5 +:1067E00094D17CA0D17F1AF10DC64FBBD6C17A845B +:1067F0004607F75A69FD7323FCF19647B667ABFB72 +:1068000054F60ABF58E08CD49DC9727DA8DD84EF90 +:10681000257926BC057A7BCB63E1F796A59BDDB095 +:106820005BDCC2759BF09C4DBF1EE27027C9BB3B71 +:106830004819FA16530F525DA7079D6A532A81D74C +:1068400065A490359645E0D1DE5F966EE3F1E3CE28 +:1068500048BD3EC765E3758F5FA3D2EB0AC1F43B29 +:10686000A6A7B3A20FCD77E0FAF018330D11836F0E +:1068700065307DDC3194DA93FB5AC6C02E7DA8B119 +:106880006CBF23197642E7C55802CF7A618AA1D23C +:10689000F21F163FE6C97FF47CFE7A97A473CBD231 +:1068A00002D8438539727D4764F9127308BEF2B786 +:1068B000ADFCFDAFEE947AE15789E38EEE83DE7E88 +:1068C000A79D04CDF9F93928F63B6037E4ACCBB18C +:1068D0008922CC4361FC8A81441804AFE5CEF7835A +:1068E00012BEB70600948A1C27E3636ED03B116882 +:1068F000C3FB6C9FB4B9CA0177FCBAA92675F13302 +:10690000146ACF5B33DDE4A67A5E9B1C37FAFB1773 +:10691000E548BEFAED37E64AE8E5261A7420F6BDEA +:1069200082A47633F889F613CCBF7E4832CF7F58E5 +:106930008EA46FCB7ABFC8709FAD07D5EF6A167A69 +:106940003AD4E48E266F34BAFB2D8D8B79FD563800 +:10695000584FD7E88FEC2AC677F03F4CCC0764EE4F +:10696000F27E967BD737193CAEB84DCA7B550E5A8E +:10697000ACEE55B00B2DCD5D6381E779EB124D0D7B +:106980004518C7BB8CC7B9D329789C7539FB0B2038 +:1069900017D6B884E2C6788BB2991FDFB30BD08BC1 +:1069A000E54EA709FB8AE56E1F5A852531B59CEB9C +:1069B000F7501D20E75819EEB81CB7B4E3941E85B4 +:1069C000F52BE12B853EFBAD277075CE0829479945 +:1069D0008F1B6343794C2F9DCCB70F8DEC1C00FCB3 +:1069E0003D6413D5984FF95D4553995ED65A14E826 +:1069F00029F196407622D5E30FA5B19E383747EEB0 +:106A00009FE7A0974C41EB9AB3D7EC073F5AAC9263 +:106A1000EE2D6BC9BEA2F74A53030B00C7986067FF +:106A200005E863ECDA0FE3C6B97FF83E207C41EE5F +:106A3000B744931F7B14961F26F81D68DCAF6312C2 +:106A40004A20779363A92479D9E890F59FC6266CEC +:106A500042F9DA09E92FFA3A262BC47A552C95F433 +:106A60007E50B5638287E359FEFC2C477EFF6B5353 +:106A70004FB385EA4B4D921E8800D94F33C311B8EE +:106A8000157CD5D8559A0EBA783E21B51C7A2701C7 +:106A90009F857DED8855DA91D1F899E118D782F973 +:106AA000BFA6DA9980C74370263556F82137926D14 +:106AB000A1FB17428ECF70B2FD9474D3386E57A6E7 +:106AC00036B2BFAADF6B562FDB79D582F9AE9FDFD6 +:106AD000C67AE4F38A0AFF5E33D365BF4A5F8695C0 +:106AE000EA497E9BE2A0E7E6F469F7CFA771D6B743 +:106AF000CBF55F5FE50E613D9EF94FB3F4D72C10E7 +:106B0000AC27AC2F75DF3F1FCF1717B1BEFF734502 +:106B1000A5F77AC1F35E1F6F12F067ACBF91081C36 +:106B2000FD3DF2BBEBAF97E38D361F11B09B7A2E84 +:106B300094FB90CE4F24EDBD59A9D29FA6F989664A +:106B40003B429B241FB31FE9E4ACC19ABF4D3ECF2B +:106B500033A9FE36757E3FCE613834B977B2BA1F9D +:106B6000F717245F1D641F97AB8F4EAA767DB05A2E +:106B7000F2E9C990F41F957729DD58A793A2230C59 +:106B8000BF5BB05248FFE22829475AF69837F178A0 +:106B90008E093EBD7FF2A41095D2DFD493A0F737C3 +:106BA00069EDA92DBE0CF06BCF149B49AF2F686522 +:106BB0008D2A976E4AF51D00DD6874ACD1FBF36534 +:106BC00069E5B07BCE47F77F12727FF826C7FF1AC0 +:106BD000E8A7E2EACB5A19B849D27E3AA0FA056D85 +:106BE00036A9F7D8AECEDCD4E2D1EB37522E3DAF8A +:106BF000F61B92291CF00B10AF06B19E839F19CC97 +:106C0000F2F35D95AFC15AF0370C56F7BEC14AC7D3 +:106C1000B244DA87F71FF164C14FA0D1F7F3B199FD +:106C20004CF73AFAFE2BE08B864B58FCC5538BCFC2 +:106C300086E7D31CDFDF181F6AFFF3EB9541C68B95 +:106C4000CDD67123EBB5F5C41F34BFB7F088DE7B1A +:106C5000E46A7B187EE59356E71AF0F7A1B8392F5E +:106C6000A7102AAD8EC0698C3F6BE665AB5057F616 +:106C7000F7752F23B84F56758D841D78B73DF035C5 +:106C80009ED73902D9A934AF9F9CEA3CAC406EFA3A +:106C9000FBAAFBB1BFD85F7C7E782A14F97D8F2DCB +:106CA000207261BF285DF15ED845962E7E4F385325 +:106CB000789CC32ABEF6597D633E27F8F7DD9D5DBB +:106CC000DA42F05424BC73ED12ECDFF7A595420FC5 +:106CD000D0F072409DD702933F356C36C01B9F4B5E +:106CE000CFEB5C55D919390CEF1C96F34E155E8B22 +:106CF000B7FF77C1DBA2F1F32D0AF3D1C65822F515 +:106D0000B2083F05DE37B583FEEDA69676E6BF2ACC +:106D10008717F4FC860A0FD93902FA31BDC7FAF396 +:106D200016E11D0C19906997FC99B95A0981EEE694 +:106D30000A2FDBD9F3853F0B2AE4E0DC401EE0FE9E +:106D40006BDC7F8EF048D7C388B768FC676E4BF367 +:106D5000420F166324FCDFB7FE42AC33C17F3255CD +:106D6000F5832D50F5A669C267C5F766888015F8CA +:106D7000F8E367361FE4FB1F55FB68A60872FB6C3F +:106D800011E2F25A11E6FED78B2EAEBF195732A090 +:106D900091F03FE5BE4179A06F1DBE4733BE1D8116 +:106DA0001B92411FB7BE29E9637DCA0FA2D7292ACA +:106DB0007D10DF56609C8AA48A56E89D62BCA48B35 +:106DC000087F74B5F421FC4D49F594021F977C238C +:106DD000D763E287AE76B312A10B121CCE0C9AFFDA +:106DE000A5EA92759E92FBDC415F737232C135C198 +:106DF000ECE475E8F49A795F78655C2DFBC35F6914 +:106E000096EBF3CA850AEF6F5B3FA7FD90DEBB3CB4 +:106E1000FDEEF1301585D9191FA4EF7DE9330B7C08 +:106E2000AFB2BF35E207A07F2E1F68AC4FDE20FD5A +:106E300012937CE66E3BEF7B1D16D0DDA422A33FB0 +:106E400061B258F739FCF593A3FC0AFB30A7A4B351 +:106E5000FD0BD5B9AA7F61B018CCFEBB1FEE5F68F1 +:106E6000007E35FF82803793E4D755503A695D3B09 +:106E7000C71C187D92E67F7A8F87A9BD6C90D48F4E +:106E8000DB73FD3FC17B0DB6AE3958EF234D84E176 +:106E900041427CD8E4103EA2E98F9A5C5CFFA429B1 +:106EA0009DCB4F9BDC5C1E6F2AE0E79F3579B9FED6 +:106EB000875CDFAD1867758C5C0FEDFBCB553A5DD9 +:106EC0001D23F58CE5313F3E5445702C1F2099A0C1 +:106ED000BAA36D2299F6A26677C7CB28A9DD4C36F6 +:106EE0008C587E37594604F7821703ABB0ED2C7AE5 +:106EF000AD6B32C4C988B73F4C053EEACF2822406B +:106F00002C732CDF7727E4CEC74DA3189EA34D3EEC +:106F100086E7585325974773FD3FE7F9AD515ECC9F +:106F2000A4F1AEDCD66D4139C1A7F07E37D6274239 +:106F3000215A8F0DD64000F4B121C3E105FF8E2BFD +:106F40009EFAE08F04E4736023DE9F91346F425F0A +:106F5000F8AB44576B5FEA77C9758A37EC8ED0F18E +:106F6000F7F3ADC447BD4A1B275E50184F275E4854 +:106F700064BCFC699799E139752896F58A53BBE2A0 +:106F800098FE4FADB187C02FCFDB82F62CAA3F9F72 +:106F900015EB85DC7C3EAB1FEF977695BF8ED1BAA3 +:106FA000099AFFB4A773D3605F1CDBFED374BD1FC7 +:106FB000E95852C757EF429EFDC5E4E518A1E8F82D +:106FC000E801AA3FDB3F9DE5CF67AA7C6EB0493E52 +:106FD00011874D9B201F8FC54A3EEC79277613E41D +:106FE000E0114DFF7F27B61D7AC5C82732CB8571CA +:106FF000FFFB2DD6237A7ECB9E1E9206FB49F44FD3 +:10700000667C15281653A3CEFF00F8DD8322F5C257 +:107010009D8B8EDCECD6C5EF765EEFC33EBB75FB79 +:10702000FDA79E03DE55FBE2F1271EECF74BAAD528 +:10703000ED58198BF9420F1C457CF5FCDD712CFFD6 +:107040009EB77A0F3702DE079DECA77AF4DF6E3A1F +:10705000B21BE59DF5653751D99D9BC4EB33FFE726 +:10706000B3276650BFADCF8852B0DD10823193E0B8 +:107070002BDAF0F97ED85125A1C48A7ED4EE7DACFE +:10708000F40054945F3FAB84112728EB68DFA480A1 +:1070900094BF79A41FF4DE8F73DD06BB60C880CA7D +:1070A000831CEF8DD2278AD67F5E8EF1B6F7937A56 +:1070B00005E9179F3613BE570FF8735980ED43E962 +:1070C0008F19B177C6ABA305E615CC80BE1BACB259 +:1070D000B13F1ED3B752FDC4AE5CD65B9E3105797D +:1070E000BF0ACE7578B12E27FCC1FBB18EF5D41F37 +:1070F000F65B7D6930E122D8897F19E8258A14037F +:107100001EBAB412F869D875CFC47ED4EFC418E1A2 +:107110005508F4EAA74F4FE4F5276B16F6D1895DC1 +:107120002DA9D7D07B7714958FC0FEEC3777F077F9 +:10713000C412F99DFBD4FD507495707C8649DD0D19 +:10714000FF8170A03D694FE2BE4C1159AF257B9A7B +:107150003DD08F87071C5ED8AF1B3CC10CF8FBB439 +:10716000FD95F6C99881D42FC3A68EEB9AC6F6C4B6 +:107170000FDD1F357FA036DE7D36E9DFD3FC851BB2 +:107180006D72BFDF427209F4A7EDE7F4DD8C81294F +:10719000117FA3703D55EA2238FF467A16FB157E13 +:1071A000E0F735FD6B896A7F95ABFBF3ACBE2D7BB9 +:1071B000BB68BEC58E401EE6B740F8A4FFDEE27590 +:1071C00063DF4876F8F207B21ED6938539D0BE3B0E +:1071D00018F50633E965B93ABDCCF1C3F6DD16D52D +:1071E0000E8C96C32DAADDB7FCCBB24301C859B2B1 +:1071F00067B05E1A9EB57196C79731BFB60871CE5B +:1072000079FF96F83540FCBA97F60994E24553DDCC +:10721000CBB42F5F2CBF487F9D07B09F53DD17EF86 +:10722000C67E6E22455EC2807D2E7A3CC2FF659886 +:10723000EFD82F624540B71F5EFC858BFDCDC2990C +:10724000F483E63D26F6DCFBCF18D5CE1D736AD459 +:10725000BFBB09AEBDAF59B99DF0C0F2F27CF33CA3 +:107260008079925C1D32C8770DE02338E7A01C7F3F +:10727000C66480B3974E7F209C3F46DE03F8E873D8 +:107280001BDB677B54FB6ECFE222F6B73C6393F9BE +:1072900019C13F58596EED8997F6EE9E29A96C6782 +:1072A0003EAFC9E12A33EBB17B62D4F7535CFCBC3F +:1072B0009F5D3E17D7F68ECFFBCB9ED9FD78FCE7BE +:1072C00095F0902731FE1407DB7FEBA7F83262615F +:1072D000D74E4935F1F7FFD31C643BA3D9CEF669ED +:1072E000AFFD5CBAF4D562F46B1EC272A49F39B4D0 +:1072F00006713AD164E671F68CF0BDE3663889F127 +:10730000DCB063CB334C3ABB50B387C9FE653BADB1 +:10731000A7CADC8E76B277B5FA26D5DE55F322827F +:10732000F15308AFEFA8EB73C822EDCD43B06787E8 +:1073300046E20E876087B21E198C879D15981C67E0 +:1073400001FD47B76BEBA0B5BF6B25BB157824F8E3 +:10735000F47924EB13DB5210B7DB3C30F04BF0EB4D +:10736000EC055B62A45C0EC5C0FE5D64F63F88F66A +:107370000762BD93AF863C9E2FEDB777553C07FF64 +:107380006EE2757961FE4BF330AF177AD285DEDF9E +:10739000AAD1416F5EC92D26C673747ECEC3AFF5E8 +:1073A000E5FDB9D75F106FEBF51700AF0F7714CA83 +:1073B000BC13C21FE611C9CF51E1D85BCCEB5F898A +:1073C000B81BF48915A676E80C61354FE761D57FC7 +:1073D00018ECB032BC0FAB78BD41955B0F8B7026BB +:1073E000ECB3E09E1899E7A3FA311EDE3D84BF1B83 +:1073F00016EE3EEC97386816BC2F59BCE9C8533AD4 +:10740000A9CA9F1645EA15348ECCBFE9F86FCFD7CD +:107410007963A0CEBF7956BECE597815ECBF79B846 +:10742000B16FAF1F86FD1637C66B7895F3ABF3A827 +:10743000786D5F9B8F71F65AD91F75D4DAF3FA0510 +:10744000F8FE6F72A5DF4488FC0D186FF700CEA31D +:10745000D2FC6E84D792DDE8B7CBCE78D3F0AAF910 +:10746000DB1E56E9AF373FE816D326D82B019B0821 +:10747000A0FDB0AB2B5E1FC73BECFF281E72EAFDE0 +:107480004673D8F61DF93DD7A9F942D7A97942E745 +:10749000ED77EB5C8E979EF7B99A27745D9D315F0F +:1074A000223BCFF74FD07D2F7E8F9AA2F3A118BF3A +:1074B000CF399334FC4ABE3EEA34F8B99EFB64B03F +:1074C0008ADF1D6113D3ADA2E257E23F78FFA0909F +:1074D000CCFB08C5E9F3A29EB348BC3DA7FAB37A3A +:1074E000DB553F5440F5FF884F4D9C3FD6E2F23AC2 +:1074F000F478AC4D09A4E411FCB739CB1C5DD45E23 +:10750000DDA7FC20F4CA060BEDDBB43EA3F302FDBD +:10751000F05CD367343F6B7D51780EEF6B2B7ED8D8 +:10752000FE5B1BBBA741C92130F66C790625C1C59E +:107530007426764A791D308513D4BA02386BE93F38 +:10754000C726215E4D7B5492AC438F8DCEA361162E +:107550004C95CFA13FD476987D3109A8DB22FD3C24 +:10756000A88758BF207BD0318AF49CDAC4DDFF366F +:107570009ADA6B9C4EC70A8E831AF3596A76ADEE7F +:10758000CC2D39BBFDECEFCBF909A7CF0D3F44D58E +:1075900028F9ECA2C60AF1C130C293EA779CBB4E2F +:1075A000E17D88FE9A91DF317FBD2220C7AA823318 +:1075B0002F075D554DAF3C0AFBA5EAAEE655D08BD3 +:1075C00016A97EEC45BBF7FD1DEBA1E54754753CC4 +:1075D000FA25F495B951F931F3D745C1F53D793123 +:1075E000359BBFB51BF364A47E7DD19E7633F86ACC +:1075F000810ABFC6BF223856607E17A938FF10FF28 +:10760000BA10791E81EBF352227C7CD17AF97EBDCF +:1076100090F91D5ADEC5423BEDD784F783F136C69B +:10762000C7E90D7DD81F715A48FC9CDE28F153DF55 +:1076300057D6EB1F917E897AD5EF5BFFA8F4232DF7 +:10764000B4C87C58E483F874F0D7A9F8415E88BECA +:107650005DB4493D55CB03417E884F17BFABA3793D +:10766000211F167921FAF7F47921FA769DBF4BF59F +:107670009385186F0F5B438F6F2538CDB7C66A7936 +:1076800031B1D06397FFE5D2FBE1AFEDF5C72FB67F +:10769000321F9F43BF90F2E3EE18960BD65EFDC2F9 +:1076A00097EFA2F7D6DF5DE8653DC64CFB3BF6875A +:1076B000DA58394E8A89E5E5FAD936D5FF2EFDD854 +:1076C000EBEFF1B03E02B9C4F2FC6EFB597209F067 +:1076D0005CD39BA7E9CB7770BF18AF5EEE5F93E2F8 +:1076E000D6F653CE8B88E821A114C8A177F19F84E8 +:1076F000DF6BD4FCCC6BD4BC4C4D0FB9A6372F3309 +:1077000094023D41C35B74BB262FB4F6F589BE8C51 +:10771000A422CEC77A3C4FB79FAD4F0CC520BF4ABD +:1077200054FF30FFF016751E1A5E3F54645ED7FC9E +:1077300058FFED97800FEFCDC9015DFD06C65D0ACC +:10774000E2FC12DF1A1EB4F59E4F6B083B6DFECFB4 +:1077500007315D6A7924874BA5BF2E6EB88C33EF55 +:1077600057C7D99F673294E9B1324FE3C309D2CFEB +:10777000183FDC6F83FE447B26E71FCCB7F97F7F81 +:10778000B10E1EFAAE03787A2D4FFAA534BCCD3770 +:10779000293EE43DCCFFB99DF981E060F93E729944 +:1077A000C2F9251FAAFE436D5D8420BD89C6BDE6D2 +:1077B0008D94B2DB992E9B35BF7FD0C1FAAE4DC6FA +:1077C00071CE478F44AFA09BC45E7A94DF5B3F3B92 +:1077D0009FF5E67E66895F7157BC1C67427906ECAF +:1077E00024F880FF817E13B4389089F17596BEBB72 +:1077F000D8DABEC9A3D377175B37A11E4D67BDF496 +:10780000114567D174733E7AFA0174F6D577D119B0 +:10781000BD3F426F0F46D359FDB3DB9F09129C3524 +:107820004FDE9320A8DF514B5BAA97C6ADDBB23287 +:10783000C147E527966002C63B1A32579E2BAE3DE4 +:10784000225FE9F5E72ABA38D02796D013CF115E28 +:1078500016BF63F7C265BBE4317BD8CE7E8AC5AC68 +:10786000AF50BD5BD657B35F75C9EEA87CAF47EF8D +:107870004975739E7C3053E62987391EDBB0D9CA1F +:10788000F9620D6F99BD208B25A26715E08B7E1FD5 +:10789000709C21BA5DD261AEB2F539FB39AD980D5D +:1078A000726EC9AE3B3E875F67C9AECB3EC6FE1463 +:1078B0009D3756ADFAE5A2FDBB03F3E3933F82A3E8 +:1078C000F3027101F657C28F370CBA24B8F2E4F212 +:1078D000331DB73CFEE813CF11BC47DF4D2B852984 +:1078E000777CF3AB094A51C4DFABF9C38F77E4F679 +:1078F000099C03BF5AF999EA178CAC9F94DFEEDD1F +:107900000A2733893DB2ACB3861346D3F7EADAAD22 +:107910002C47EBB63FB2F501D039AD03F25B6AB745 +:10792000BFF4E78BA85EBBC39A3C494EC7A9A446E7 +:10793000D66D895BFA53B475AA79EA259BBB58B614 +:1079400043DFD0D6AB76C73E9B283E1BAF151DFB51 +:107950006C5DCE73AC5B47F744F6433CFEB50DFC63 +:1079600079F40545A479CE7EBF7ACBAB09E8F77DE3 +:10797000EB777C731CF3EFF13D0AE7A57CDF3A5A05 +:10798000F205E3ABFED9789148DFAF7ED71E9A842B +:10799000F5FDB7E54CF71F5B964ABA7F7065AA8F75 +:1079A000E0AFB606535D5CCAF6EA877EACD2A32F81 +:1079B000C3C4BA523003F35AB07106CFABFAC179DF +:1079C0003C2F71BF2246D0527C49FAED8E73ACE752 +:1079D00036955F3EDE448B49F3FA58CD870CFED1D5 +:1079E000ACEAC937B2BEF26375AE9CA143F52FD5A0 +:1079F0003CDBE6FCDEB8A643AFD72ED9BCBA13EB0E +:107A0000F2E9005F1AEC5D9A7F50C59782FC1FF384 +:107A10009B13D2E4BAC83C697E8FF6860AB4A37F72 +:107A2000A795F3A575EF31DEB4EFFF48FD3EC11D0C +:107A30000BFDFAE354995F417F9D80A34191EF34A0 +:107A4000ACA89EE426FCBFA7CEB397EF37AF957CDA +:107A5000AEF2FD176F4979D2109A52C9F2A0D31A2B +:107A60004E43BFD0BEE90ACB83E87C57951E365BF8 +:107A7000557A303E27B82C8A1E9F2FC8B8E01235A1 +:107A80006EB370BD2EBF16F85A51A9D2892DD2EE11 +:107A900089F0A316AF59A4F27FF43A46CB83AD51D7 +:107AA000F2407B5F6C3C775C21C2FF4196C375A4BA +:107AB00077C04F59F78E9DF7A7BABBCD9C17F5C17C +:107AC000BA03A917129D1FEBD0F8D528677BF9756B +:107AD00085CC9BADDEB945019D46F3EBB1EA9072D2 +:107AE0004E7EA5F673F26BB5F8EF95B3EA3A44F023 +:107AF0006EE4CF45E791B36F46E1F54B51D4077E75 +:107B000074E1AACA663F5D147E35BC46CBCB9A7C35 +:107B1000F739E5A540E85D874F0D8F1ABD9285C7FF +:107B2000DFE9A5638D5EB5FDAB975EA3E76DC46726 +:107B3000F4F3F5AA3CF2FF46E6B3D5911C9379D352 +:107B4000C1973387337FFA58DC88B697913F19A9DC +:107B500087A2EA1D51FD7D51757F54FF40547DA9D8 +:107B6000A17FDDEE033699D71636F4B3375EC176C2 +:107B7000D5D97A4448F2F9AECF6D41D047FF1ECE39 +:107B8000AF2B377B0F96D2BA5E11FF941372A645C6 +:107B9000CB3B11DE83F02B4EEC9FABEA75527E544B +:107BA000A8F263B01ACFAC70D4F23AB40893F4FBE5 +:107BB0009D25174D6C3FBCE2B8782BFC1315FDEFEB +:107BC00064F93FBEBF396C2FE1B21BE544AFA4FF9F +:107BD00096FEC3FAC3EFDAE2B47B713E6962FF2B13 +:107BE0008E9EEB7C5585E3F559B0B7C63B8DF2E52B +:107BF0008A28397199DBF8BC52EC4C867E5B59645B +:107C000015218C8FFE3A39EA18E4E2795D26DA5ABA +:107C10005D92DF98EF2F56F1DADF9968811C1EEF35 +:107C20007CF300EC9EB15F08B7DD13C1EFB82F5CA9 +:107C300016E077ACA5DBCC72C53D20727E30538850 +:107C4000C91D3B3E839E31797A1CC77F268B8E3FB0 +:107C5000204E24A64B7F6EF713F136C46FAEECF8BE +:107C6000DC82F5BE728C02B34B74C7B8B26EA4EF5F +:107C70005699659EAD4FC57F4B8CD463AB560DC8EE +:107C8000CFA1F62B911F788EF8F58D83A4DDD0322D +:107C90004ED988FD2CBB45DA175A7F8C83717F3A09 +:107CA00048DA1357A8A556CFAE90FDE7AFB177E7F6 +:107CB00026A0B4860751F95961F95583088E4939D0 +:107CC000E2656907296EE8D7DD31AA9FEF4E0FEB19 +:107CD000F7014235FC76A23157F03CC7796D38B7D1 +:107CE000D57DB7C785F86A5C918FDF5FD8A6B811DC +:107CF000A7EA1E270CFED7C3AEF040C8DDC35E69FD +:107D0000A7666BF95AC5B13CFEB305817980A3AA79 +:107D1000ADEA35D0A3F886E63D12713EC1C8BFE397 +:107D20009A5811663DDD9B00BE5964F657A3FF07C4 +:107D30008D66F68F7D501DCB71DF6CB38C5B3D344F +:107D400048CAA149886395214FB16B36C699324420 +:107D50006D4F728D44DCBC67658C007C5549AE3933 +:107D600080BF6AD5208EFF4DBA4DDA5D9916E1B01D +:107D7000D0FBE3311EE1F1BAE6F5956CCF342799DB +:107D80009067D9DF212CC86FBFB2A394F9B968708E +:107D9000E00AC0F5C92DE222ACD3BC7577B31D371C +:107DA000C15CD40774A79D333D9FFEB9B549E64039 +:107DB0003ED6E4E0F2574D2E612145775B533AD72A +:107DC0009F687273D9D154C0ED3B9BBC5CDFD53446 +:107DD0008AEBCF34F9B8BEBBA992CBE79AFCDC3E64 +:107DE0009018017E119A4FD05E26EB31B2EEB3258A +:107DF000C93AE641F3613B14A993F0AB0DA0765369 +:107E000012F7E3F304D44FA496B1D72B184B25B641 +:107E1000D63365FC9EE8A3BE3796EA032CEAF90642 +:107E20001A1FF8D3D683DE0FA7EAD66382F9F89D2E +:107E3000F00F9FAA36719EE229D1B5FD59AE3BD90C +:107E40004F926513BBA10775DDEA14D03BCC266FBA +:107E5000BA1DF93864305874FBD7F54B6384452755 +:107E6000276E684C34D4936F3DF412B6A1F2B4C0BF +:107E700093589FC3379DF8DBA334FEC3B77C540CE3 +:107E80007B80E0D8721FBEBB22D66B77030E219297 +:107E9000506FB56A7E39CE17E4736F6EE42BC775E9 +:107EA000633F7AC8E6FAF3A3D08356995DE08B77F7 +:107EB000B17E84EFF7D5F59BDB2AE56476AC1A5FDB +:107EC0006CBB8FFDA4559A7C5D33C1D7BB5F11F2AB +:107ED0007E3F2887F1941D2BE38EDDD547B63F4BBF +:107EE000E377AFB07955D1ED738C3C1B0EED3BD1F0 +:107EF000E31DC910ECA722EB5934C28FB9C77D78B6 +:107F000011E8F7763B9F27506893B88EDA036B5ED3 +:107F1000E1F3D64AE341F627061C4ECE8F1341EB20 +:107F200071FD784AA33C972DBAFA27425FD0CE550F +:107F3000C70DF7D990978D31413F730BF6F3B94ECA +:107F4000D1A6B8600FCD57DBE76BF9E09640E1743E +:107F5000DAF0620ACC3CDFF402996FDF2BD7864B54 +:107F60007B7F7168D026B32EFE5134B8FC6F83F44A +:107F7000F26CBAC2728CF8DE013EFFAC70EE31AC2E +:107F80002FB5EF839C9B541E1EB88CD7B74EF810AC +:107F9000CF49175EC87BAC2FC63FB5C6C27AA0C614 +:107FA000177ABAB52545E89AE8DD6792FC20CC78C7 +:107FB0004E25FAFD4FF1EB1CB7E4238D1F357E03F0 +:107FC0007CA632FEBECFA29373D635E34CF0B76BDE +:107FD0007CC5FEDA9138E72AFFE6AF53F8BCC3FC54 +:107FE000B652DB42DDFE32576D9F877325BAF61C11 +:107FF000755DEEB5859AD3E15754CF9DA09E437829 +:10800000BCB7C6971C1491FE7DB17EBC9FF9EB9F57 +:10801000867DBE3D8EF7C3AA55D75F390272F589BA +:10802000BE4CBF9F4EDEC17972735B67FFF86D6A0D +:108030000F3C16C3EDC50581E158D74F15F79CA736 +:10804000A197073D578FA0F7BBD0C87658680D7F22 +:10805000F7F6712338FF4FB86DD01735B8E716948F +:10806000AD425C75EE3A9C4606B10516637D5B66D3 +:108070005F63817F325F852F1D3203F979EABE4944 +:1080800078B2C1EFF389F0A9FE30E9FFFAF457BFE7 +:10809000FE08FBFC578FC7BB80CE9AA172DF164546 +:1080A000A191F25E01A37D30FED77F49807CD7F499 +:1080B000DA25BBCC528FF5CA3805D5598F8DD64FEE +:1080C0005F7CE2BD8473DA05BBA49FE3FBEC022D69 +:1080D0007F6FC96FA45EABADC712E50CDBD54BF665 +:1080E000AE4C3D573E1CEC52C88368FBE087DA116A +:1080F000D1F6C3EC02350F2FCA2E3BDF3EA7D90FB6 +:108100005ABDBAB124F7C361C8CB0BCC2BA025AFA5 +:10811000691C990B3F6043E3582EB53CBDEAC6216C +:10812000DCAFA67118B7FF4CD58B8445709EE73243 +:10813000D57E3E15CAEB23BEE3FB4B361090F4FE12 +:10814000298BBB0FFC0EBA7C6DD6E76A7F9B9B0424 +:108150003A5BBCE7173613B56F2F90FADA89287BA4 +:10816000A761DB07EC97A8179DBC3EB46EC2A1B710 +:108170007F37D8F83BE783AFF6D7F14B41BF8B3B56 +:1081800014DF161AA7D6EEBE0BFA4CEDABD3AC41FA +:10819000DD7AAE55E9371AFE5B0BDC86F32A805791 +:1081A000F0381D9F217F4D3C19C7FADAC93DD25FD7 +:1081B000FBF136F323D0CF1677EC68603FCAB638B0 +:1081C000175CC89F5AA5FEA88D738F2A8FEF2930A0 +:1081D000A9494A1DDCFFD8B63871BB47C20B79F0FC +:1081E000A9623CB7F04B15CE5FAAF82A052E5222A1 +:1081F000FD173BDB6CB0774E3C372DF936C0B5FB35 +:108200004F0903A97D8BFABD93BBE2F8BE81C5BBC4 +:10821000FE39F979D86BBB2A92159D9CD959609586 +:10822000F22024E33627F648FF463DF04C74714CAB +:10823000F54B1C7BA26F7B50A7D76BEF1FDBF55470 +:1082400082A928B28E4B1CA1355091B5733FB1D68F +:1082500060107AA465CF9420643CF37706CED7856E +:10826000FC7CBF83DACFE1F071DE8E764E5A68F97E +:108270008A6AFE0CE913AF0708FE658B6D02FAC42B +:108280009CA1EE99D7623F7CD5CAEB21FABBEF43A4 +:108290001C77CE1B7D05E4D3328F97FD4973864949 +:1082A00039D3ED9179F63D37C5B3FFBB6E8D227C96 +:1082B000343FF1D82499A7D36B9F79DF580D7FC63F +:1082C0001F7205ECBCBA905904D06F54387F8ACE27 +:1082D0001F9D45F482F7DF2F907EADC338B7E3C40E +:1082E000BEB93F9FE3C93B62147C47EB7F5C09E763 +:1082F000739EC70E639E41DDD4703EE200753B3332 +:10830000380E705C3DFF8376C05F5726F3097AFB19 +:10831000DFBC3F1FF45837B7A3C0C5F3727DC676E4 +:10832000C6D3F17C4ED2F46CBC1ABF8BE1783EC749 +:108330001CA9BE382195F3CABF50E17DA8973F65BF +:10834000BE44BF5B9C09FA7C897E4A9BCC8BD86279 +:10835000CC97386C93EDC1ADC6791CB7B6F17D28CA +:10836000C12DC67C89E3B636992FB1D5D8BE38A1C8 +:108370008DE7D56D15326FE47199E7239C9DCF6031 +:10838000FC9A5FC7305FD434354E86BCFC3423B4CE +:108390007037B57FFA7821E7F5D07ACAF84650E110 +:1083A0007DA086C404F2EEA8AC44FE5CCDAFEECB5B +:1083B00062BFED2D52CF3D187F2FDB23A736DB1593 +:1083C000C8F5A329326FE4E8EFFAF2BD194795B674 +:1083D0002CC053431A1FF49480689BC3FEE7CD76EC +:1083E00081FC899ACD76CE6738BAE5EB42BDBF9B5A +:1083F000DA0D715E0D2EED7972A1E4DBE44289F7AE +:10840000F442694FD716FEF119D07BB747AE0FADD6 +:108410001FDB6D0FEC88E17AEDF6944DE09B9A8EB0 +:10842000986E33EB636A3C87041FFC668B85D467C8 +:108430003EDD66E57C0C5C8B027958A7CA43E5D625 +:1084400051E95DACA78DE17B006A4CA57D46D37CEC +:108450006A88AE615F765BBD5731DDBC6E657B0DB2 +:108460007FB0DF8E6ECDE4FB202625891BA6E2BD02 +:10847000C67F721EC6D1A4B692A473D85935CFC692 +:10848000735E6CCDEA0B4CEC77374BFB904A9F2226 +:10849000CF3B8F845E51BF3A6EA93E0E53E3FC88FA +:1084A000F344A2F137BF50CAAD7A357FAC76ABBC8E +:1084B000A7A38EF80DF9D6B5ABA4FF5CFC4ADECFBE +:1084C000B23C269C80792DDF62E6B841ADAD233FFA +:1084D00085E0BE4A1D87FA07F0DDDEF76DDEFB782A +:1084E000DC3FCCE075BFAA30598D63FC2215EB1A36 +:1084F000DD7F790CC911A7BEDF2309FAF5D7FAF59C +:10850000CEAB43FA6F4E8BCE9FBC47AF7CB12D866E +:10851000E12279CFF979D1F32578992E6B9FB0F3C9 +:10852000B9BE63EAB9B48F499E0607019E2BEEE2FD +:10853000F9FE711AE7C32E0A19DF3FEDEE1C09BFE1 +:10854000C2E95D575AF0FEF44229CFEB578FE6F5AA +:10855000156F58F9BDE875BB40EDD7CB7FDBE3E481 +:10856000BD4BA2E3098C776C7B9C09FCD79D28E965 +:10857000F9D8388213FBC0F6B4323EC302A58AE8AC +:10858000ADC625E9ED586247968B9F0F2AC5F36E5D +:10859000F5FE1B11A69EA04BBC837C9046A9C7D5B7 +:1085A0003AD6B1DF1F792423CBB80CDBCF916F0211 +:1085B0003A84DFE0F72A1FE11A16C8EB5A8CC77419 +:1085C000DB6143BC32A0EA9F75DBA2F345E4F3B55F +:1085D000858A9607EF4ED6F25788FF6A830AC70F3F +:1085E0006A5B6F5C0C3953BBF4EE6B41971AFCB5B8 +:1085F00016510979D0AD98198EEE18E20BE8ADFA54 +:10860000EFE4C8D2951A99E72F5478EF2B94FB1B0F +:10861000E9C7A28DC6A96B55D6F1F8AA9CE0B8BFF0 +:10862000EE3D42830DFB4CF738F579D47CBBD5BCCD +:10863000CB9EED4ABB7E7F899EF76BAABCE9F6B85C +:10864000EF1A83FEAF9B39EF9EEA6F5CC27C6FE648 +:108650007CC8162CDE85724CFC73EFE2FE9CCF5D6D +:108660006D16960CCEB7B045F237CC46BF0AF2E590 +:1086700061A7A1849DE6B64B3B0D75D8692861A71B +:10868000A11D761AEAB0D350879D863AEC3494B097 +:10869000D3D07EBC50EA47CF89D0108B5917BFC6C4 +:1086A000F9F4E1913CAE485E97C918CF3E6A8A8ED4 +:1086B0006773FED6474AE7AA0CE5FBF3B76A530295 +:1086C000EF148EE075368CF75C4E6808ECDE5B5478 +:1086D000F95DA7DE3B95BFD166C07BC166637DF0C7 +:1086E0003663BD6897B15EB2C758F7BE68AC870AFB +:1086F00085A49FB21827F282BA567EBC0A66952FCF +:108700002570B890F3BD7BB6CA3CEE30CB97AE6611 +:108710005A5FB9DED20F47A3817EB5BCE0EFBDE75B +:10872000E77BEFF731D28396C7F4B0B5270372F237 +:1087300083C71DEB00E707AAFF54CC72B07EA5E902 +:10874000E99A7DB5EC4E85EF23FBA6509E7F3875E8 +:108750009056E33BFC78F3CE0C63FDBCB7BE4E31C4 +:10876000719E54C0C7FB9EA6BF6529A4BF41EED130 +:10877000FCA1170EDA6032C05F188A35E077C86353 +:1087800049867A71473F43FFA1BB730CCF4BC3832C +:108790008DFBD5F4E67DF27C850A87AAAF4E5B3768 +:1087A000CCF0DE7CFF68C37BCB6F71307D2D7FDB2F +:1087B000CC7ED66A3C40BE09F44A9A6735DE45BC99 +:1087C00077B3CC3B118DC6FDBDDA2282AE24DCCF5F +:1087D00026F71F2D7FBCDA257C8934CE89D2B6AD31 +:1087E000B8EF66F1EFFE34D2853C40655C1A9FBF5E +:1087F000CB0FE40F267C67597D93397EB3232FB1CD +:10880000197AE7C197387EADD14996D5158BF56CAD +:108810006F93F600FC39E6A4C87AB7B7F58D1DE86A +:108820008CCC3BB2BE45AC3F9F3E68863920AAC780 +:108830002941DBD008FCCBD4FD4283F743D56E1031 +:10884000AD729C1FA9CFEBCA5E79288996EEB869F4 +:10885000FF57AB09BE63A51DF9612A6B1E684FBDAA +:1088600086F0F10F5BE012CC63D9EB150988337EFB +:10887000B9CDCAF7F0FC6DFD230F212F6475DB2302 +:1088800036E83F3596908DE3E08FB7DB901772E9BD +:1088900063EDDCBEF0B12AB6333FB12EB5B17EFA3E +:1088A000A0229EF644E65F5DAE6C7411DC9B064B25 +:1088B00079541D2B021DEC771EF35232F6DBC714E0 +:1088C000CE8B98317D9C3505FAFBB6443E3F3A7B12 +:1088D000B01AE78EA2FB53AF99A57F6CBA5CEFF399 +:1088E0009D6B9D76C6C3743EFDCC10B6BF66840BEF +:1088F000A5BD5B64B477AB6DEE3720D7C5EFCDACCB +:108900009FF6FA1FBC56D687910789BC4BFF18B358 +:1089100081EE968C8F33D0E52CA1A37FFAF4D5A2FB +:108920009FA13E7D52AEA1FFCCE943A2E44159E4B0 +:1089300039CB838B0CF99BF401035FD4A307EF2B96 +:10894000E5867E689779A1971BC65BFEFAB03499DD +:10895000DF3835D21FF6F26619EFA8DF95B809F6B1 +:1089600077B549E62DCF0AC8F686DDB29D2CD0DE5C +:1089700073127DCCD29FA03F0722D4381EBE0FBCFD +:10898000D6ABFEA6FA02E967CAAEE8B43992D5FCC6 +:10899000601ABAA14D613C137E2D7D93647D45190B +:1089A000BFEFE85B16A193865DC6F39A181FF1E648 +:1089B0008683E62AF043F47392F4ABFA01EE494A57 +:1089C00029ECCE06F88B1290771915B786FF08713F +:1089D0005EF88F74EBF4E160B7A43B35CE330B0F38 +:1089E00068E9EA3A76BC8C7167F8257D46D39166D2 +:1089F0001F2C14444F883711DF86DCE7C70BCE8C61 +:108A0000C1FED0F0D3E09374174D67FD4087C8A72F +:108A100015843F1A77D12EC58BFBAFD01FF8EA071C +:108A20003A8CC20FE3F35FC5DBA8283F90C667BB53 +:108A300015E6B3F3E1317A7EE7C3AB36EFA967A45D +:108A40003F449BF7C280A48B85342FC44DAFC67DB5 +:108A500033C3402F529EF4903CD989EFFB25BEA62C +:108A60004F32F25D2FFDF825DD6BF433E34C2A8F96 +:108A7000F3AFD34F17FB6FFF55BAD1FCFE9A3C867C +:108A80009FB18AE3D6B79DF37E91683FE56783D5B2 +:108A90003C87116284217FE43CE790A2F347B4FD58 +:108AA0003B7AFFA8FA9DDC3F7AF717755F58764B43 +:108AB00001CB034DBE06D4F680EABFD3BE53457545 +:108AC000B7AEBEAA3537AB4BA75F04565A53314EEB +:108AD00056735F2EAB625C9C2F55D52CF3578EAC32 +:108AE0004D4B1D45EB7864A5CC5F3972D3F02CE477 +:108AF000A11C593981CB0FEEB6CFE2FB8F6E750802 +:108B0000E497D73F9326CF899B9DA9B3E08FDBD90C +:108B100097CF71F61B22F783BA954F2720FDAA76CF +:108B2000A5DC8FFF9917481DC2FEF9F6ADEC107752 +:108B3000B597603FD0F96D0BF0BC1E7E5BAA079A1B +:108B4000F338CFEE137CA30CFB96DCFF3F89715DFD +:108B50008DEF7DF2B895CFE5D2731FE2283F52C268 +:108B60001F5DC2E7F59454F8A38EBF6D66BFD8624F +:108B7000F3BE127CAFAE6977168E505497D1BE0A01 +:108B8000FDD92EE1A95DF94816071DD7B4F33D8C38 +:108B9000D17E620D7F77A87EE2ADEAFE0D3B002517 +:108BA000EC003148DA01A8C30E40093B00ED4B361A +:108BB00018F538CD4F9C6DFE9CEF2FD6E246C2D5FE +:108BC000F522C78F7F6177C30EED6F51EF5D53E3E1 +:108BD000495AFC468B2B55FD6291C0CD3C5599C23C +:108BE000ABC8FE1C678A8E2F552166887E7758F8A1 +:108BF0001E3FFE1B29E3B098B71697C2FB0965BA62 +:108C000078AD1A1FB20A5716CE416657B87E724821 +:108C1000C6BBD9AE9A542EEDD45E7B4CCD13D0CAD0 +:108C20007F57E3DDF79ABCE990CB935B0BD9AF1C80 +:108C30002C17054B59AF701620DF79B912EB855E02 +:108C4000BC1CEB8CFA5FE2E53DA59D97497D42A5F2 +:108C500077ED9E1DED7E9D8B7B4877D4F1E52567F2 +:108C60001C62BE8EFFC7894443BDC29161E83FC10B +:108C7000E5313CBF34BDD0F0FC3277A9A17E45C1BF +:108C80008586FE577AC719EA578DBACCD07F8A6F8E +:108C90008AA13EAD72B6A1FF0C7F95E1F9CC598B4C +:108CA0000DCF67076E34D4AFADBEC9D0FFFAA5CDE6 +:108CB00086E7DA7D437B60A712FDBD003BD51EB978 +:108CC00077E86B93E07BB2C754C87344C22EF3EECF +:108CD00096BF9EE7D4FB776E57F9F78D225F5571EB +:108CE0008A3CC70BFE1BA0DD0B28482B65BBBD33A0 +:108CF00003FC32266EFF695C89FBEDAFFF3AC3428D +:108D0000F274CC05FB87E552FDD26D79575B481EA6 +:108D10008E19BDFFA91CAA5FB52D20EB43F79FC696 +:108D2000F3FDDB065FCDFDA70956A1AE2D7A6D469A +:108D300090E0187349CE3AAFF4E368F75C33BDF6C0 +:108D4000E62D3A9CE15C5D3E10E6393F0FE7EB5CB7 +:108D50005CEE273E44F922F1E17C92BB2F131FA267 +:108D60003C48F638DA7F4FF638CAD7C81E47F907AD +:108D7000B2C75176923D8EF28F4DB3B87CAB29C00D +:108D8000EFFDB9A99ACB434D4BB9FDDDA6462EDFC9 +:108D90006F0A723BF08DFACE21AABF65B7F19E71C2 +:108DA0002D6EAEC5C9C50B5E07F20F449725F123A2 +:108DB0004724FE7D3E3B100E938F747A639AF0ED4C +:108DC0001DC27E9DFE2EDE87D4F6DFE504F6A3FDF0 +:108DD0006DCFB4BC61549FF94D602558FF6D93F47D +:108DE000D3478FBB415DE7AD45BE57F0DEC50E7979 +:108DF0000EE762873C6773B1A5B385EF27FABB70B6 +:108E0000436EEC53CFD5B4ACB5F0B91AE58CE4D7CA +:108E1000B1C982EB2D7FEF32F75EB2A7932F17BB5C +:108E2000BCE9BCDFAACFB5731BE3CF7456402E8DCF +:108E300075DADCE07F4D0E6EB44AB9B72FFEA30A97 +:108E40009C33A1EF0B8CAFC9BDCD7F176153494453 +:108E5000BE5DECE832430EE9E41ECB2DE54C9719DC +:108E60007A9E4E2EB25CD3E088B7D0386511B9A790 +:108E7000C1897B276D65FCDC67063CE3BC1B70AEDB +:108E80007A23C181FDA6570EDB4590EFBF54E53331 +:108E9000F5E7EF8F3F13E03C81B16A9EC0001B6D88 +:108EA000FCB21FE72FC4C3AEC4FB7DBB0E607E992E +:108EB000FFA471A91FA94F9C4FA3C963F48F93FD11 +:108EC000C31877839A7734F01F047702EEDF7CD3E0 +:108ED00003BF65E64FE5FD19C2E763BC4F53E5A547 +:108EE00070AB7555CF10C9E55C2F579FFB72038E91 +:108EF00022E435DA5D7F89637ECE1D007D6A8A6A51 +:108F0000577C07BDC4E3BDFF2ABD0CB748BCDAA936 +:108F10001DF18DFFD7E9263356C29BF90F4907FF94 +:108F2000BFD1CF0D3D62621FEA621D18D800795093 +:108F300075C6FD32EAF32DA536908CF63C01CF477D +:108F40009CFD3CF0458FB58F8ECE2E56F7A6A1E73F +:108F5000E9AFF5D3EEA5D6C69F7C9EEFBFAAEEFF84 +:108F6000CB27483AAA2CD4EE33F7394B699C0A2117 +:108F7000C77955DDEF2A8A16B11D239CD22E70D3F6 +:108F8000FFD8DFA7EAEB979CB118EC85CB553BA245 +:108F90005248795D1995AF7079D1A56C4F5C1E650B +:108FA0004F44DB07CB8A54FBC0233CFFE27D428D5C +:108FB000452911FD137983A0DB5CB7D931A62C724A +:108FC0007F90761FD578958F278880059BC8A5222E +:108FD000C8E56522C4E58BB88FAA04F9B061DEF755 +:108FE000AFA40D07ED5741A5A3FA81B8C9D721F762 +:108FF000BC6258C540B4EBEEC1B803703498037F2F +:1090000075E9EEC1D83FDECDF1E5FD0E79FE057CB8 +:1090100085DFF7D0E6817B1B06D23EF812EDC70351 +:10902000693EAFD07E8CFAEF683F46A9F59BE836E3 +:10903000E6DD5D5E20EFC7BCC2554106E2F9F17482 +:1090400045C96FFA038FAF260E1A8FF57D35F18271 +:10905000F198DFAB89692659DA6DDF75BE5AA3FF37 +:109060002B8AE4F98B2B5C13F97BF571528ED5C7F3 +:1090700065A9F7E6FC25219DE8E494E3408999CAB7 +:10908000A30014766294BFEEE32611C43CC7368E6B +:10909000E6712E69BC90CB3A879C87B0949BF4799B +:1090A000D01B6C816721373FDE68E67CFD133B6394 +:1090B000BC93689C4F424F25605E64FF3C8FE77510 +:1090C00066F73A2FF4B357653EB0F8E64016F28BD8 +:1090D0007AEF99DA3CCD9047AFD1459D43CE47B367 +:1090E00033B306FA98EF847A0F8E9667D4DF2ECFCB +:1090F000F969F7B2409FE2FCF928BD6564AC94279A +:10910000FDED52AE6AF8A3F7B82E024FF1BD788F8D +:109110003438BDB0579AD27D9D809FF47ABE27E146 +:1091200054FF7896F3FBD5BCC5B1E1211C7FAE841A +:10913000BF85407E2556DE07B65FCD53B40D0ABC11 +:1091400007BA7BC5BDBF3FECB353074F9BC1E707D1 +:10915000062A02F7407D1F1F45F3E107456A3E518D +:109160008928F956DE53C6F950A7DE327BA59D2D1E +:109170000CF6C558917F1FFC411507ADC8F888E46F +:10918000F7A54B39A3F1E98483320FCB9E6E126EA3 +:109190009DFC8871C70AB7EEFB710549867ABCB79A +:1091A0009FA17F9F513986E789BEC186E77D2BCB82 +:1091B0000CF514FF4586FE69B3CA0DF58CC0E58633 +:1091C000FE99D5530DF5014BAF31F4CF6E9C6B7802 +:1091D000EE09D6189E93A5C7F87FC9A588073CBAA3 +:1091E000FB6D82BECE82542927F197BB6699E1BD03 +:1091F0004AE742BEFF2DAFED66C3F8C22DFD3741F1 +:10920000FA1FE8EB4B1CECA07242BAD1AF6356EDEB +:10921000980AD7B817B134996A1E5985CBE8DFC9C7 +:109220007456F2B980CCEFC92B1B58FC2FD2416089 +:10923000F0B9E9A04E701E6F341D20DEA29F27E218 +:109240002D7A7C20DEA2AF23DEA2EF8F788BFE3951 +:10925000E22DFAE7C30E1AE96044A7910E2E386496 +:10926000A48397B01FE49E7FBD2EEC32D289B65EF8 +:10927000A33F997ACEF59A45FFC37A118BB1DC1AD8 +:109280004F780B8BF3AF5B64BDE4FAFDDFAEDBB56B +:10929000C5EA3EAAAEDB9762DD8852BE7F92F62910 +:1092A0005D5C367A1FBDC4716EBB55935FD1F6AB62 +:1092B000E657D0F2ABA3EFEFD5EC672D9F3AFADE7D +:1092C000DEAF4D5DF1D83F0F9BDAF8FEE3D8B4C0B6 +:1092D000727CFF86A2A50AE2ED29B5AB98CE4F0EAF +:1092E000E8398C7BD88337C54BB95E24C799D392B4 +:1092F000C6E7DFB579CCC994F95B2B8AD5FDDEDBF7 +:109300003502F1DCA662A97FC77B5D7C4EA0AA482E +:10931000A879D0226B4E7124CE786A85D4B767388D +:1093200002AD80A345BD175E3B37F003EE0B5E5BDD +:109330003C4277DFC8E2E8FB5CC23183E83B0FAC1C +:109340004F32DE93532F0CF78D3CB0225F3BD72F6B +:109350009FDF28EFFB1DB44118F67F2D6E5D18725C +:1093600018F2ED71EF0FF202863CE632B41777A4E3 +:109370001BDE7F40BD9F68E86EB7A1DF03EAFD2FCB +:10938000A5E10243FF6107BDC6F7D57B6146748E38 +:1093900032BCDFA5DDE7B358DE6B023B01FAFE0508 +:1093A000877C867ED9B5CB26436F18A0EADD177679 +:1093B000551AC6CF3E196B42BEFBC1E21C79FFD0E5 +:1093C000277EC373B6CD40073F4D657C69F64CEFF1 +:1093D000EF3BA8F68B4DC8FBDD6D6B2C1C1FD5F247 +:1093E000CAA3FD7DBDFE3C47C47FA8CFF7D6EC8F56 +:1093F000DEBC6F0BE935B991BCEF5E3AC47DFE323D +:109400005F83F1F0D0CDA9ED7A3A7DA358FAF91E29 +:10941000C25D64546E71487F20F2CF70BFB4B074E7 +:1094200065E0FEA73FAB743C23CFF716E8EA21F5D1 +:109430007CD543B69E77B0AFCE192ABF739DC9C401 +:10944000BF07877CBC9D3AFBB3BB58FA551E1B2A4D +:10945000CB397D243CE267F25E016D1EE936D1CA4C +:10946000F76558BA0A41DFD7AFEBB8138FAEB3B583 +:1094700059653E7BC8CAF78596931E5C4AFACD9023 +:109480009BEF7166E0BE7B0BFB9F3ED91E3393348E +:10949000E8DEF350D9F4DF5807F8C2616F5D34D4C9 +:1094A0006CC893D54AED9C8FFB46AB1FBF5F37C995 +:1094B000242A61D769CFAF1C2AF93634D0C471652C +:1094C000EDF7207AFDF225128F434AE4FC2698BF7F +:1094D000A9C2FC16C44BFB76ACCF7F2FE20373D737 +:1094E0005B453BEC9D20D93BA99CFFC37F556E6932 +:1094F000AF0454398E3AE24D5541A3DCA5FD80F509 +:10950000AD45F85D1605F2DCBB0AFEFF796B8CFDFC +:10951000160839DE22A7BC6F7541F4F94F2DDEF233 +:109520003D76D09412557E0F1543BFD5DD137B4A8F +:10953000B5FF4F09B98EA71A6DBCAF6A74AFA36BA4 +:10954000B6BBFFA7CE470875DF1FA8E251E3338DF6 +:109550009E34FED1E809EB8BF5D3D617E7B1BA9D5F +:1095600091F5FDDF3A97D58BB7EF89179C2F3E1009 +:109570002D57F84FE787395F5C409333BD724490B5 +:10958000FCC88DE04BCB7FA85669245AEF3A15CA28 +:10959000E5FC759C0B334B38391F4EDBC7DD886FFC +:1095A000E9E22FC43FB1F8BD8260AB85EF4788C6C2 +:1095B000AFC63FE7CBCF388EFC0CC85A2D8EA63EE7 +:1095C0003F1E3CDDCDCF77C5F0FDB7274A3B4B6052 +:1095D0007F68F1B5E878DDA9150E81BCBF53BBE209 +:1095E00039DE8A78561FDC0BD5FC4809E25CBD7C6D +:1095F000DD658CCF4597FFCC0BDC5492823897F514 +:109600006ACE33749A5C88DFAF75EEE77B0DB214D7 +:10961000DFCD253A7FC024DAE7B06E24972AB1DE89 +:109620005A3C2A7A3EBD7C36469EE738159479FB33 +:10963000A72A657CF86D415290E09DA4B8D80FA090 +:10964000A7CF7F25AE35ED4C29AFCFF433A3799E5C +:10965000813517723D3F3B68427EB7B85661FFFDCA +:10966000CCCD6265AC1B795A3347C07EDBAAAE53C2 +:10967000BEBABF9C851F551E6E35C9FB80B6DE265F +:10968000F30F876CF399702FD1AC5D2EF5DEF2A548 +:1096900065D00F46A8FCA7F5CFB78883D632958E44 +:1096A000A9FFA31778F87EFDFEEAFE3172884BA56C +:1096B000932EBE3FBA373FAB59FE3ED6324568F9CE +:1096C0005A2C97B4FAE936B53E41D697AF94F52EA9 +:1096D000F5FED1ADAAFF03F84309FCC13FB04DF53B +:1096E0007F007F28813FB483BF51077FA30EFE46D2 +:1096F0001DFC8D12FC8DF6B9C29F85C02AE25DE388 +:1097000075721AF1AEF13A798B7897BE8E7897BE62 +:109710003FE25DFAE78877E99F23DEA5AF23DEA568 +:10972000EF8F7897BE2E465D16A9C3AFE69B62A861 +:109730004F23BB61BC6E7F40BC4B3F3EE25D86F178 +:1097400002371ADEBF56341ADECF5DDA6CE87F438B +:10975000A3628887CD173D4CCFF336F4653A1C9C45 +:10976000EBFF00FC73C3CC1EBE07768279CF62D0BC +:10977000C3B2FA58AF5CE7B64AB9EE26CE437ED8FC +:10978000EA4EE37B085F370BB9CE320F3A9A3E11AF +:10979000EF196F95712794883BA144DC0925E24EAF +:1097A000B8E711712794883BA11D712794883BA1CC +:1097B00044DC0925E24E2811774289B813DE43DCE8 +:1097C0000925E24E6847DC0925E24E683F8CB81354 +:1097D000FC4FF0DDD03C8BDB822FC1573579E3E1C4 +:1097E0001751E6F7A9DAA910A9C73F79DB4CC4D90C +:1097F000F2E3AACA12BD24A7953533C713AB06D42A +:10980000FCC212D1C3FA1FE715D0FC0361A9A71748 +:10981000FF3D839F47F845F253F18B2ED65347C245 +:109820009E4A89BC5F8A50566EA47FA47EEE7ED18C +:10983000DFD7FAB11CD3C1A19DF3CE7EC5CDFB13FA +:10984000F1019FD7D37ECF28101CC7F7244FB24910 +:10985000BD8AE4C245B097860415FE3D616DDDF218 +:1098600055FE1FB24DD8D221171E9E339CDF8BEDC3 +:109870007DEF1F47918731CAC3F74A8ED9267CED09 +:10988000B02B864A7934A6A7633FE45A55EB147E81 +:109890004F1BB76A63169F5BAD124B6FC6EFEE8826 +:1098A000E10AE7A7911C7A1172489B572F1C4412BA +:1098B000F09BFED07341170F4F9C80FC3BB147F0EB +:1098C0007D45570E7FD3306F5E96913C2ECBFF4186 +:1098D0004185EFC39B1C6CBE0DCB7665F0C697909F +:1098E000AF17D82CBC1E378B6E3E47A1C137D8B7F7 +:1098F000C344DB0799A39D26FC261491D381BEBAED +:10990000F5250A9F8EF528F55AF97CCA148BCBCA27 +:10991000F72244ED8BD1792BD17991CB6E39D38D50 +:109920003CD5654FCB7D56D30FAAD43CB9D3AD56A9 +:10993000CE2BA97ADACEF7CC053628CCC75A5ECB27 +:1099400009D36BA933E9BDFADC50960979F5FDDA44 +:109950004B92CCBC8F560DC5398556996FD2DDFA26 +:10996000149F573CDDFAB44DDE8B2CE303F355FC1A +:10997000CC57F39BAA8AA51EACDDBFAFE58589361F +:10998000A90F6B7E8FAAD765BE4CB49E5CABEAC1B3 +:109990008B5BAD9C9FB4384A4FAE55F38F6ABF477F +:1099A0004F6E1CAAEAC95EE1FD17E305B70ED5E9C3 +:1099B0000742BB7F59FDFD81AAD70FCCE07D7F69AF +:1099C0009E09FBBEA62F5CD72CF501B143F0EF3109 +:1099D0005DD75CC1FBEA754FFBF83E8A37543D60AA +:1099E000EA994CC6FF9FD47D7F06F233691D267528 +:1099F000C570FBD56732B89C7946E66BE2EC0CE8A3 +:109A0000A4EB3782F34C4E05ED520FD923D4FC4F13 +:109A1000239D960AD704D0FD609F72006AD695D028 +:109A20002368BC59D02BFA82EEAB56A680EE438257 +:109A3000F5BD68BA9F645DFA129E4FDA22BC4111EF +:109A4000A1FB40D03301F39B5CA9F0EF4ACC0ABCE8 +:109A50006901BF933C70E1BD806ADF69F41DCD0FE1 +:109A600073E254BBD729FD2EBDF63080E4CB29BB71 +:109A700067423F9B03DF5A3F9E960F796EF145F296 +:109A8000F98B43BB67B65AFEF7EF4BE8BD27A1D76A +:109A9000DE96F63DEC6C3FE7DFBC3F218DF59CC4C4 +:109AA00032BD1FF4889677565A1EE345BEF1DABCE4 +:109AB000B4EF3A073B8FD60DFC39A74FD78F15DA95 +:109AC0005FFE3A54F8C68FC2EF9E68F81261E43D1B +:109AD0005EA3D60F3F290EAD71329EB9FEDE93C74D +:109AE00066E2BE94DB576C8A92837E1FD62BAEC88B +:109AF000C7F1A1F3D9F30569BE24C039AF48FB1DF6 +:109B000059798EE1C8DA8F7FADF75768FE2E217A3A +:109B100058DFBF776A7AA97AAF0DF3C30335F21C19 +:109B2000C8379A3ED9F43F73DEA3BFC7FFD5508E26 +:109B3000CBB439D84E2AE8B97F0B7D7F4E938DCFB9 +:109B40005F6AF6D4C335B13C8F876FB6B13CD4ECB5 +:109B5000AAEB6C9D2FE1F7B50E0F95FDDE6BFCB9FE +:109B600015728ED695E7F17F007DE034F30080001A +:109B7000000000001F8B080000000000000BDD59F2 +:109B80007B7054E5153FF7DEDDBB8FEC267797BC85 +:109B900043C2EE2640D00DDCDD203E9869D714A8E4 +:109BA0005333CEA2050986644336C82309216534A0 +:109BB000B45A365DC018B08431C8A3956E62615A3C +:109BC0000B9DA04C614A9C59A5BE5A5A11DBA92392 +:109BD000362E451145CD9219EBA3567BCEF7DD9B72 +:109BE0005D96A4F5AFFE5166982FDF77CF77DEE75D +:109BF00077CE97D4AF1562513740A72F28A97900A7 +:109C0000595E550ED90042DE98E0F202142B10186E +:109C1000C27DAD27E913E702241FB4DD3028007CA4 +:109C200045FFBE09304D82DF8113A0DE038D41A4C4 +:109C300003E803980710A61F5D29BA5755BC84FC9A +:109C4000FFACBAD8BABC4F08C4903EDC37B0353F41 +:109C50001760658F6F9E04A447284FBD01A079D877 +:109C6000FD420992B69F70C821D4A3A1003A86BCD8 +:109C7000C4345976A73DC57716F145FAB33E607CEA +:109C8000478DB08CD3C57A3CC8B72E57F1F5229FCB +:109C900012036C3139895E64F4A50688887EBE5A49 +:109CA000F05C064300905EEE92635164590210909E +:109CB000F1FB543344CCF8BD14394AB81E98E9621C +:109CC000F765FC2EE21E0C895941D4A75E565E0052 +:109CD000F28F5D76917F9A6C331615E0BEA94F70B6 +:109CE0000A7865A154FB02F1EFDCE5F698D0DFF7C6 +:109CF000687AC332B308F9002D66EEAFCEDDE572A7 +:109D000011D13D2C28B4AF75BA189FE42382328854 +:109D1000FB7A541FFC29FBC37B6F06D7145C63B826 +:109D200056A7CE33D737779DCCBB19EF433C209352 +:109D3000BE6125203BBDA9EFCD5A3C32F7B7AB122F +:109D4000D3B31E6001F96BC546B7BCD246FB978CF6 +:109D50009D5EB283FB43BF877471A2ABF500F7C76A +:109D60002ED4DBCDE5F9D3F8AF24FE69F26B297F61 +:109D700070BF44B5B338AEEC73C88207FDA7284C5A +:109D8000CF6BFCA0F9BF391E33AAA48F01E5E27E98 +:109D9000B91233FA591EBA1615A21FC33B04E8C5FF +:109DA0005D68079717EA71C855446F5516513C9284 +:109DB0005B053BE957EB0CC836DAEF728BE9F99D8E +:109DC000E9A7264DEF30EAD772D5F92E23D54B1DE2 +:109DD000F07A59B9E55659A4FC3670BBB768F91F3B +:109DE000D2FCFACE064B2FE4A01ECEBE859B506E51 +:109DF000FD2A87238A76DDA7E5E716AD4E74BFD42A +:109E0000297DCCAE71BFEE463F20CB1625C8F86346 +:109E10005E44A80EC3FD5A5DF537C95E5C57194212 +:109E2000F254269FFBB56E2FD733251F40407EF599 +:109E3000FB4D0C072EEEBEBB8CD9D1BFC708CC8E14 +:109E400057419ACBFD48F9A8E7454335AF47DDFEBA +:109E50003D14843C5AAFAE2FACBB8829ADCEC23B7B +:109E60009A2080F63617822A08A9FAD2EB4DAF3332 +:109E7000BDBEF47AAB83441D940318779C5F0362E4 +:109E80000A0F1A72A0E329DBB5F96E213D0867B409 +:109E900078A07F184EE9DFE35A3C74DCD2CF891FEB +:109EA000F13DAC7FAF894FDFE04DD1EB72D16FEC6C +:109EB0001EC5E74E1BD18BE3F49D8C9EEFF5FA6E29 +:109EC000D6EA7BA174786B3EFAB3F3A8A09A08EFA8 +:109ED0001E39557A3FD5FB912C95B2F672EBC1F63F +:109EE000220FE14AAC2C9886732D9FFA589DAFFA49 +:109EF000743EAFF7F8C4F55E55197A464DABC7F01E +:109F0000A34766107EA2FD71C28D378F9CFCCB2DBE +:109F10002E868FC66055CA9E953D030C2F57EC7058 +:109F2000F8258E973D849716CDEEE62D3C6E807118 +:109F30009B2EA4E2DBB44508503E3677CD8B49EE2C +:109F4000549C33F133339E7A9CF578D68DF7835D3C +:109F50000BD3FBC1B8FF14DD7FDE6D85286F6C88E5 +:109F6000FB6F6C8711A88EC70EDB6380F22F771E04 +:109F7000FFD352A47B5F88B5174957FB0FAAB9FFDF +:109F800068BD17FD075326F4DF3BD407F5FDBD3F41 +:109F9000D3FCE719FAE8B7840F1B4CEA20CA6DC658 +:109FA000FF37A17D970F3F6A2CC1F37B5A0407E965 +:109FB0009B54DDCCBEE54303460FDAD3DCE15320EE +:109FC0009BCE5D13E6A3BE27DC388A72366EB06482 +:109FD000C31CBAE7702AB3018A7CE25538A0EB753E +:109FE0006143D38F01BF5FB0F0FC6BC5FB4FB1384D +:109FF000FBCB0C0C274D7EC207C81D3A4AF16958AD +:10A00000EFF5F7BA99DC9704D43BC7C7FB4F45453A +:10A010002246FA61BCC182E732E28819D74191DB5E +:10A02000E791F8FA13EBD0AC8E09EA4C5F2B5A1388 +:10A0300057489F0AC0F8FBF96A47FB6EF471BB7181 +:10A040000FF9FC3C9EEF9F1C1F7A2B574200F53501 +:10A05000629E513E65E283CE2F1327EA4591D56378 +:10A0600049D6D02F291F4AD65FE7A73E2E5BA1878E +:10A07000ECF1FA781E67DA3B99DEBABE17DCDCEF4A +:10A08000E3FEC0A4BBC999B243D7072A510F94DBA2 +:10A09000F083AA815E1475A15B2D237F4D66E705D1 +:10A0A0007788D553B208D4C109ECCCB40F2AFB5839 +:10A0B0005D3414B8549A67F4BA0813AE00AB8B9CA5 +:10A0C00004EA39D6579E43B87D41C07E40FA6FB04E +:10A0D000882C4F343B0E6D4662B4E1179BCD6C7DEE +:10A0E000723316D64CC4AFCD856CFFEBCD2EB60EB9 +:10A0F0006DAE64E7DFF539F99C02093BCD5DF5569D +:10A100006DCE8B03ABBB91AE7266AF7E5EEBE4F9B6 +:10A1100058EF4CD8A9AF243749AC9FBEDDC1FB4DE9 +:10A120002BF2A17A81AE723888A22EDC9AB0DFAC15 +:10A13000D3A5CD8B234AC24E7D77A391CB01BB1C07 +:10A140003B28D0FCB1586EC2F3155DAF19055C1BFE +:10A15000B53C9E563E1428C865F3179B0FA276B5F2 +:10A1600090F4893AD4C2F4FE9D655B2ABBC83FEEE9 +:10A17000788542F43E0BF3FF886DE9229ABB46F6E0 +:10A180003A08F160A3A08E74A15EB0D5A41EC4A548 +:10A1900056841E81E5435C2E217DBB058603FAF9BA +:10A1A000F1CA50BB8FF4908EFEE30D365764A9A41C +:10A1B000077C8172711EBE8E984AACFE0290868327 +:10A1C00034CF09B497B1BF1180840222CDCF9D5AFC +:10A1D000BFA0F0B3BD867FD364D72B0F11FF9725A7 +:10A1E00018E478F857DAB7BC6C04535A5EACD6F270 +:10A1F000A265E0AE7CCA87F05E89E15E0BAED43723 +:10A20000F6D34784C06DFDDFCAA7BC09EF5AF858E2 +:10A2100004FB41990041C2A33263E00EC28D4B039F +:10A22000331DDD69F3D0B998E9369A7F2E0D1CFFF6 +:10A23000E33C94FBD1893C1FC3E988C8FA406F65B1 +:10A240002ECB879D1A6EAD92797D1836764788ACF5 +:10A25000FDC462A0F74578E0A1324079E1B6E80C90 +:10A260005A2F0D589611FE2F50162F7020DF553F94 +:10A2700075F8A80F9D6B9558FCD7BE3A7D90F0E01D +:10A28000092DDEAD5F9E3AA0E03CD082670ACAFD90 +:10A2900078282B16C14FAD9B4F944928FA73397417 +:10A2A00080E2B14E1C5E4A73EFDAFD0365C0E85DE3 +:10A2B00005CA7FC0B18B581F2ECCFFB61FBECEF88B +:10A2C0007C289EBEA30EEFB7B63D9D4D7CD6ED7E9D +:10A2D0006D9E82E7FF9C1E7AD297477D66E0904292 +:10A2E0000ED83B303BC8FC17F815C95D6B405CF7D6 +:10A2F0005ECBFFE81CAE7FAD33B8B46E2E8BA39A55 +:10A300009EF799EBEA13028B9BBE5F11CB9181E61E +:10A31000D838C80AC5410299EA2C1215C483EED474 +:10A320003C125280CDADCF69B87729A7AF8CEA61D6 +:10A33000CDA13D6594FFEFD9F9BEFED0DDBF273C2E +:10A340000CFDDC24539E840C20AB78AF39C2E75C53 +:10A35000588DC95994927FDA97C5F45FB3B7FAAABA +:10A36000FE89F3043B7FCF00B791DDD3A42B3E9A47 +:10A370009BCE19E22D9417E73A2C6A84C58FE7FD2E +:10A38000B93E69119D47360A40F3C4B9BEA7ED1521 +:10A390006C6E0796BFEDCA38AE1524D89CE7DA7309 +:10A3A0000FE1C01F8C0C37B2BC670212EEDB8EB916 +:10A3B00059FEE97A848E3DCBEA7BAD3627B51AE2A9 +:10A3C00032C57BEDB1A332CDB5AD87F99CB1EEF0CE +:10A3D000B332E150FB096DCED0DEAD6DC0EBACFD0C +:10A3E00018B7BFEDD879B9397DCEAF746E2BC1499E +:10A3F000ED039F7DD96E246DA2F8DC82EF64F5E356 +:10A4000065DD15B42A1C2F0D4936BFF5569E65EF44 +:10A41000D7B62D1ABFCAB3DB3C4C6F9F51488BFB9C +:10A42000873E238B937EBFED187FF77E62C99E4DDA +:10A43000B8D965E6EBFDD6EC415A3FB194B13EB6D2 +:10A44000C41CFA82F22D528332C99F2376F67ECD48 +:10A450005B77DF1CF03063981E7FA777F10479BF2C +:10A46000C47CABE047B9C35A7F8BB7597B68FE0801 +:10A47000B4DB0CB446DB6C6C1E096C386BA1396D17 +:10A48000F823AB2864534A244F89184F6B4128CBDB +:10A490008FF20B00AB0F1D39158604AAB3D167DE0E +:10A4A000AD26FD474B93238026190553DD021AB9CB +:10A4B000FC0AEF97DE4435D54BDE73BC6F3C6E84EF +:10A4C0001EEABF6008C29D781E17347B3E1363945A +:10A4D000D7C342FC09E21F34D97ADCA8CF77FC3C11 +:10A4E000AF9DE5C162D23FE891AA7C24D768EB1109 +:10A4F000D03FA5DA7B482E2EB4919FA29A1F8540AB +:10A5000000BA508E283CDF4CB8B23D69067A8F976E +:10A5100016DFC6FA6454F3ABE0CA656FA3E7BC620A +:10A52000C4847A6C07738CE864D112203A61F8C550 +:10A53000CF045C4BA42BA772F07BC9FD821A459512 +:10A540001BC62EB27976E4B3C316F27F4D4148257F +:10A55000FD8AA544D54E5479BBA2BE1E227E41B3CE +:10A56000DAEDE2396EC67CAFE13FC2F0A6CFB29D14 +:10A5700078BF26693D4F7E1E4D5E3C727C2EAD66D7 +:10A5800095F2A566588A9B66D3A585814425BFF3BD +:10A59000158B3304CCF3527CA06F0F501DADD7FA4E +:10A5A00088CE6FB2FBA3852E03C50DBCC9EC9D28D8 +:10A5B0002F3A2C29F46EAE193EF53AD95963B6C537 +:10A5C000A56CBA67FC20614E937BA6D471F17AD654 +:10A5D000DAE02B1C5EF2A33C9EDFC8B9FA7DB8C25C +:10A5E000CFFBC10A2D6E7A3CC01580F47EA7FB5FBD +:10A5F000C781F5E37DD0F50AF9ED0DEC7BA4D7D842 +:10A6000030CE3913E0ABBEBE46730ECE2FCD1581D2 +:10A6100015FEBC545E64E64166BCF5B8C2F7CF3C9B +:10A620009FE366F1ACDA09AC3F3FFE8AC0E2B9862F +:10A63000F8EDFF74D047718EDA17B943DEFFBF38EB +:10A64000EAB813B2E23A6772FC0959719D7D2DFE9A +:10A650007C2206AD33DD0C9F7692BF102F9E27BC67 +:10A6600028840E86135F0397FAE9DE7C6AC26CAE1B +:10A6700013633447AE31DFBEEFED29841338719098 +:10A680007D5DA5317AD7CC9FE6EA3610DD83C0E741 +:10A690002E03D727DA753DFF2E099CCF262946F3D6 +:10A6A000DE7B46C407DC47BA67B2B992FDC37D348E +:10A6B0005212A3F985E66F9ADBA3067E1E69054652 +:10A6C000178D8991E939EC3B9BCBA9E699DD1DC03B +:10A6D000706A5CEEC6198C8F5E0FA19CCE3BC84F92 +:10A6E000A1518E9F27FD0E8E8386C40D34576FFFB8 +:10A6F000911D283FF5F8178396F75AFC252DFEC5C6 +:10A700005E1EFF629B1837511C572F08A4C7F163C8 +:10A71000C250E4FBBDBF7D7B9F19F727751C7D46AA +:10A7200062FAF72F0E14597369CD17695EFACD9747 +:10A730004FEC5B457E5962637E930AEFDA1746FF62 +:10A74000F6FBB8DDFD7533D85C35226AFE5A6EE53E +:10A750007CEC22E3DBBFC61A03DABBB99CFEE91E20 +:10A76000468F719BB197F82E3633BE69716374A31F +:10A77000ABA76A71E372928FD8595C52DF3DCC7FF0 +:10A780001837E63F8CD7B2A7D87C90CC5E5C95CAD0 +:10A7900093516DDE18D5E2327E0E784EF4866476E3 +:10A7A000FAEF8B273BDF941F7A9BE184F6BDDF1124 +:10A7B00028A2F929D3FFBBBB7D3D33C80F7651A139 +:10A7C00077C16471D3E39475B77C80E695F17845E1 +:10A7D000781E6645E733FB1FD3E38379C9F227234D +:10A7E0009E3095E787FE5E981639BF8FF7F5C42C2B +:10A7F000EA9F587795F4CE1C217C9B93CA5B01613C +:10A80000B5CB99AA633D5F759C9BAC9E852EC4BF5A +:10A81000EC89EA7948EBEF90C82A67756DAD467F01 +:10A8200049A25A6862F57CA688F4F91A759D43F727 +:10A8300072355CB95C109AC2F71C47F68B311FC9A0 +:10A84000C17C5BCD7F8F8FD985FE7F4BF36B23E27D +:10A85000D714A4ABAAD67EBFF640068E697168D025 +:10A86000E8DFFA10EB6D4E2A8E8DDA3BAAE101D3B8 +:10A8700079C2C386078C3C2E5D0B03197C189EEBB6 +:10A880007CC075258FECD2EF35AEF93C8FE6CC4914 +:10A89000EF27A63A2E6669788A76BBE5E01CB2738C +:10A8A000444CD855F4DFE97F49ECEF14E7313EAE74 +:10A8B0001C5ACB622EE47353357F1FFCC814BAB107 +:10A8C0009ACD913557BDFF4EFBDE9D4EEF27F8E246 +:10A8D000D454D2E7D1FCE02DC4F7E18A31F6779B5E +:10A8E00046483C2E20FF91BAF74B49BFC6AE171918 +:10A8F000EE37EAB8FF5FFC95E927DD7F29BBC7F299 +:10A90000688EFE5FF9EDDF7C384A3BA01A0000003C +:10A9100000000000000000000000004000000000F7 +:10A9200000000000000000400000000000000000E7 +:10A9300000000028000000000000000000000010DF +:10A9400000000000000000000000004000000000C7 +:10A9500000000000000000100000000000000000E7 +:10A9600000000008000000000000000000000000DF +:10A9700000000000000000000000000000000000D7 +:10A9800000000000000000000000000000000000C7 +:10A9900000000000000000000000000000000000B7 +:10A9A00000000000000000000000000000000000A7 +:10A9B0000000000000000000000000000000000097 +:10A9C0000000000000000000000000000000000087 +:10A9D0000000000000000000000000000000000077 +:10A9E0000000000000000000000000000000000067 +:10A9F0000000000000000000000000000000000057 +:10AA00000000000000000000000000000000000046 +:10AA10000000000000000000000000000000000036 +:10AA20000000000000000000000000000000000026 +:10AA30000000000000000000000000000000000016 +:10AA40000000000000000000000000000000000006 +:10AA500000000000000000000000000000000000F6 +:10AA600000000000000000000000000000000000E6 +:10AA700000000000000000000000000000000000D6 +:10AA80000000900000100000000000080000900886 +:10AA90000010000000000002000090000010000004 +:10AAA0000000001080000000000000000000000016 +:10AAB0008000000000000000000000008000000096 +:10AAC0000000000000000000800000000000000006 +:10AAD00000000000000093B8000100040000000125 +:10AAE000000093C00000000000000002000093C8B6 +:10AAF0000000000000000008000093CC00000000EF +:10AB000000000002000093D00000000000000008D8 +:10AB1000000097200040000000000040000093E08B +:10AB20000080000000000048000094E000400000A9 +:10AB300000000008000094F0004000000000001831 +:10AB40000000A00000280000000000280000C0C095 +:10AB500000080000000000010000C0C10008000063 +:10AB6000000000010000C0C2000800000000000159 +:10AB7000000020080010000000000010000020006D +:10AB8000000000000000000880000000000000003D +:10AB900000000000000000000000000000000000B5 +:10ABA00000000000000000000000000000000000A5 +:10ABB0000000000000000000000000000000000095 +:10ABC0000000000000000000000000000000000085 +:10ABD0000000000000000000000000000000000075 +:10ABE0000000000000000000000000000000000065 +:10ABF0000000000000000000000000000000000055 +:10AC00000000000000000000000000000000000044 +:10AC10000000000000000000000000000000000034 +:10AC20000000000000000000000000000000000024 +:10AC30000000000000000000000000000000000014 +:10AC40000000000000000000800000000000000084 +:10AC50000000000080000000000000000000000074 +:10AC600080000000000000000000000080000000E4 +:10AC70000000000000000000800000000000000054 +:10AC80000000000080000000000000000000000044 +:10AC900080000000000000000000000080000000B4 +:10ACA0000000000000000000800000000000000024 +:10ACB0000000000080000000000000000000000014 +:10ACC0008000000000000000000000008000000084 +:10ACD0000000000000000000000000000000000074 +:10ACE0000000000000000000000000000000000064 +:10ACF0000000000000000000000000000000000054 +:10AD00000000000000000000000000000000000043 +:10AD100000000000800000000000000000000000B3 +:10AD20008000000000000000000000008000000023 +:10AD30000000000000000000000000000000000013 +:10AD40000000000080000000000000000000000083 +:10AD500080000000000000000000000080000000F3 +:10AD600000000000000000000000000000000000E3 +:10AD700000000000000000000000000000000000D3 +:10AD800000000000000000000000000000000000C3 +:10AD900000000000000000000000000000000000B3 +:10ADA00000000000000000000000000000000000A3 +:10ADB0008000000000000000000000000000000013 +:10ADC000000000000000000000001EC8000000009D +:10ADD0000000000800002008001000000000001023 +:10ADE00000002000000000000000000880000000BB +:10ADF00000000000000000008000000000000000D3 +:10AE00000000000000000000000000000000000042 +:10AE10000000000000000000000000000000A08012 +:10AE200000080000000000010000A08100080000F0 +:10AE3000000000010000A0820008000000000001E6 +:10AE400000009070003800000000003800001ED89C +:10AE5000000000000000000200001EDA00000000F8 +:10AE60000000000280000000000000000000000060 +:10AE700080000000000000000000000080000000D2 +:10AE80000000000000000000800000000000000042 +:10AE90000000000080000000000000000000000032 +:10AEA00080000000000000000000000080000000A2 +:10AEB0000000000000000000800000000000000012 +:10AEC0000000000080000000000000000000000002 +:10AED0000000000000000000000000000000000072 +:10AEE0000000000000000000000000000000000062 +:10AEF0000000000000000000000000000000000052 +:10AF000000000000000000000000000080000000C1 +:10AF100000000000000000008000000000000000B1 +:10AF20000000000000000000000000000000000021 +:10AF30008000000000000000000000008000000011 +:10AF40000000000000000000800000000000000081 +:10AF50000000000080000000000000000000000071 +:10AF600080000000000000000000000080000000E1 +:10AF700000000000000000000000C00000400000D1 +:10AF8000000000400000C800004000000000004039 +:10AF90000000C82E00400000000000010000C800B2 +:10AFA00000400002000000010000C8010040000253 +:10AFB0000000000000008000004000000000004091 +:10AFC0008000000000000000000000000000800081 +:10AFD0000008004000000004000080040008004059 +:10AFE000000000040000B00000280000000000285D +:10AFF0000000B14000100000000000100000B14A45 +:10B000000010000000000001000088000080000027 +:10B01000000000800000880000080080000000029E +:10B0200000008C00004000000000004000002008EC +:10B0300000100000000000100000200000000000D0 +:10B04000000000080000125000080000000000018D +:10B050000000125100080000000000010000125220 +:10B06000000800000000000100008E000010000435 +:10B0700000000004000012900030001800000010D2 +:10B08000000012980030001800000002800000004C +:10B090000000000000000000800000000000000030 +:10B0A0000000000080000000000000000000000020 +:10B0B0008000000000000000000000008000000090 +:10B0C0000000000000000000800000000000000000 +:10B0D00000000000800000000000000000000000F0 +:10B0E0000000000000000000000000000000000060 +:10B0F0000000000000000000000000000000000050 +:10B10000000000000000000000000000000000003F +:10B11000800000000000000000000000800000002F +:10B12000000000000000000000000000000000001F +:10B13000000000008000000000000000000000008F +:10B1400080000000000000000000000080000000FF +:10B15000000000000000000080000000000000006F +:10B16000000000008000000000000000000000005F +:10B170000000830800800000000000800000000143 +:10B180000000000000000000000020080010000087 +:10B190000000001000002000000000000000000877 +:10B1A000000085000008000000000001000085018B +:10B1B00000080000000000010000850200080000F7 +:10B1C00000000001000060000038000000000038AE +:10B1D0008000000000000000000000000000845417 +:10B1E0000008000000000002000084560008000073 +:10B1F0000000000200008464001000000000000451 +:10B20000800000000000000000000000800000003E +:10B2100000000000000000008000000000000000AE +:10B22000000000000000000000000000000000001E +:10B23000000000000000000000000000000000000E +:10B2400000000000000000000000000000000000FE +:10B25000000000008000000000000000000000006E +:10B26000800000000000000000000000000000005E +:10B27000000000000000000080000000000000004E +:10B28000000000008000000000000000000000003E +:10B2900080000000000000000000000080000000AE +:10B2A000000000000000000080000000000000001E +:10B2B0000000000000003000004000000000000816 +:10B2C00000003008004000000000002000003200B4 +:10B2D0000020000000000020000037A8000000004F +:10B2E00000000008800000000000000000000000D6 +:10B2F000800000000000000000000000800000004E +:10B3000000000000000000000000A000000000009D +:10B310000000200000003EC100000000000000010D +:10B3200000003EE0000000000000000200001E00DF +:10B3300000E000080000000880000000000000009D +:10B3400000000000000040000008000000000001B4 +:10B350000000400100080000000000010000404023 +:10B360000008000400000002000040600008000423 +:10B370000000000480000000000000000000000049 +:10B38000000040000008000000000004000040042D +:10B390000008000000000004000040400000000021 +:10B3A0000000000800004048000000000000000805 +:10B3B000000080000000000000000010000050406D +:10B3C0000001000400000001000050000000000027 +:10B3D00000000020000050080010000000000004E1 +:10B3E0000000500C0010000000000001000052C7D7 +:10B3F0000000000000000001000052C60000000034 +:10B4000000000001000030000040002000000004A7 +:10B41000000030040040002000000004000030085C +:10B4200000400020000000020000300A0040002020 +:10B43000000000020000300C00400020000000016D +:10B440000000300D00400020000000010000300E20 +:10B4500000400020000000010000301000400020EB +:10B460000000000400003014004000200000000430 +:10B470000000301800400020000000040000301CD4 +:10B480000040002000000004000050000100008087 +:10B4900000080004000050040100008000080004BF +:10B4A0000000000A000000000000000000005068DA +:10B4B00001000080000000010000506901000080D0 +:10B4C000000000010000506C01000080000000023C +:10B4D0000000506E0100008000000002000050706B +:10B4E0000100008000000004000050740100008092 +:10B4F000000000040000506601000080000000020F +:10B500000000506401000080000000010000506055 +:10B510000100008000000002000050620100008075 +:10B5200000000002000050500100008000000004F4 +:10B53000000050540100008000000004000050583A +:10B5400001000080000000040000505C0100008049 +:10B55000000000040000507C010000800000000199 +:10B560000000507D01000080000000010000401834 +:10B5700000100000000000040000409000100000D7 +:10B5800000000004000040980010000000000004CB +:10B590000000411000000000000000020000411205 +:10B5A0000000000000000002000041140000000044 +:10B5B0000000000200004116000000000000000230 +:10B5C000000060400008000000000002000060422F +:10B5D00000080000000000020000604400080000B5 +:10B5E00000000002000060460008000000000002A9 +:10B5F00000006080000800000000000800006000FB +:10B6000000080000000000020000600200080000C6 +:10B6100000000001000060040008000000000002BB +:10B62000000060C000080000000000080000610089 +:10B630000008000000000004000061040008000091 +:10B64000000000010000614000080000000000024E +:10B650000000614400080000000000020000614298 +:10B6600000080000000000020000618000080000E7 +:10B67000000000040000700000080000000000024C +:10B6800000007002000800000000000100007004CB +:10B6900000080000000000020000704000080000E8 +:10B6A00000000002000070440008000000000002DA +:10B6B00000007046000800000000000200007660F4 +:10B6C0000008000000000008000070800008000072 +:10B6D000000000020000708400080000000000026A +:10B6E000000076A000080000000000080000804074 +:10B6F0000008000000000001000080410008000078 +:10B70000000000010000804200080000000000016D +:10B7100000008043000800000000000100008000DD +:10B720000008000000000002000080020008000085 +:10B73000000000010000800400080000000000027A +:10B74000000080C00008000000000002000080C26D +:10B750000008000000000002000080C40008000093 +:10B7600000000002000080800008000000000001CE +:10B7700000008081000800000000000100008082BD +:10B7800000080000000000010000808300080000A5 +:10B79000000000010000808400080000000000019B +:10B7A0000000808500080000000000010000808685 +:10B7B0000008000000000001000060000008000018 +:10B7C000000000020000600200080000000000010C +:10B7D0000000600400080000000000020000604259 +:10B7E00000C00018000000020000604000C0001807 +:10B7F000000000020000604C00C0001800000008BB +:10B800000000604400C000180000000800006057FD +:10B8100000C00018000000010000605400C00018C3 +:10B82000000000020000605600C000180000000187 +:10B83000000066400008000000000008000066806C +:10B840000008000000000008000066C000080000BA +:10B850000000000880000000000000000000000060 +:10B8600080000000000000000000000080000000D8 +:10B870000000000000000000800000000000000048 +:10B880000000000080000000000000000000000038 +:10B8900080000000000000000000000080000000A8 +:10B8A0000000000000000000800000000000000018 +:10B8B0000000000080000000000000000000000008 +:10B8C0008000000000000000000000008000000078 +:10B8D00000000000000000008000000000000000E8 +:10B8E00000000000800000000000000000000000D8 +:10B8F0008000000000000000000000008000000048 +:10B9000000000000000000008000000000000000B7 +:10B9100000000000800000000000000000000000A7 +:10B920008000000000000000000000008000000017 +:10B930000000000000000000800000000000000087 +:10B940000000000080000000000000000000000077 +:10B9500080000000000000000000000080000000E7 +:10B960000000000000000000800000000000000057 +:10B970000000000080000000000000000000000047 +:10B9800080000000000000000000000080000000B7 +:10B990000000000000000000800000000000000027 +:10B9A0000000000080000000000000000000000017 +:10B9B0008000000000000000000000008000000087 +:10B9C00000000000000000008000000000000000F7 +:10B9D00000000000800000000000000000000000E7 +:10B9E0008000000000000000000000008000000057 +:10B9F00000000000000000008000000000000000C7 +:10BA000000000000800000000000000000000000B6 +:10BA10008000000000000000000000008000000026 +:10BA20000000000000000000800000000000000096 +:10BA30000000000080000000000000000000000086 +:10BA400080000000000000000000000080000000F6 +:10BA50000000000000000000800000000000000066 +:10BA60000000000080000000000000000000000056 +:10BA700080000000000000000000000080000000C6 +:10BA80000000000000000000800000000000000036 +:10BA90000000000080000000000000000000000026 +:10BAA0008000000000000000000000008000000096 +:10BAB0000000000000000000800000000000000006 +:10BAC00000000000800000000000000000000000F6 +:10BAD0008000000000000000000000008000000066 +:10BAE00000000000000000008000000000000000D6 +:10BAF00000000000800000000000000000000000C6 +:10BB000080000000000000000000000000000000B5 +:10BB100000000000000000008000000000000000A5 +:10BB20000000000000000000070D01000000000000 +:00000001FF --- linux-4.8.0.orig/firmware/bnx2x/bnx2x-e2-7.13.1.0.fw.ihex +++ linux-4.8.0/firmware/bnx2x/bnx2x-e2-7.13.1.0.fw.ihex @@ -0,0 +1,20064 @@ +:10000000000037E000000068000005D8000038500C +:100010000000556400003E300000009000009398FE +:100020000000F4B800009430000000C4000188F023 +:1000300000015DEC000189B8000000700002E7A833 +:10004000000055C40002E820000000AC00033DE8B9 +:10005000000194F000033E980000120C0004D390BD +:10006000000000040004E5A0021100B80000000137 +:10007000020600DC000000010206005000000180C2 +:100080000306100001FF00000A0000010000000844 +:10009000020617FC003FE0010A000001000000100A +:1000A000030617FC020101FF0A000001000000081E +:1000B00003060200000304000A0000010000001013 +:1000C00003060200000304030A00000100002000F0 +:1000D0000406024C000000020A0000040000202078 +:1000E000030601E000040406030602440002040AB9 +:1000F000030602540002040C030602640002040E0C +:100100000A00000300002040030601E00004041080 +:1001100003060240000304140206026400000028E3 +:10012000020600DC000000000A00000100000008D8 +:10013000030601D8000204170A0000020000202074 +:10014000030601C000020419030601D00004041BC9 +:100150000A00000200002040030601C00002041F44 +:10016000030601D0000404210A0000020000204020 +:1001700003060220000204250306023000040427BF +:10018000020D004400000032030D004C0004042B5B +:10019000040D005C00000004030D008C0004042F1B +:1001A000030D00A000050433020D00B8000000029A +:1001B000030D00C000040438020D015C00000001C2 +:1001C000030D01640002043C020D02040000000162 +:1001D000030D020C0003043E030D02200002044143 +:1001E000040D028000000012030D030000180443F8 +:1001F000040D400000000A000A0000010000000891 +:10020000040D03600000000C030D0004000F045BEC +:10021000020D01140000000D020D01180000002D58 +:10022000020D01140000001D020D01180000003D28 +:10023000020D01140000004D020D01180000006DB8 +:10024000020D01140000005D020D01180000007D88 +:10025000031010000003046A021010500000000197 +:10026000071011000010046D081011400000000874 +:10027000071011600010047D081011A00000001884 +:10028000071018000200048D04104C00000001004B +:1002900002107004000000010A00000100000008C4 +:1002A000031040D40002068D021040280000001008 +:1002B000031040400002068F021040580028000042 +:1002C000021040840084924A02104058000000004E +:1002D0000210413800000001021041380000000106 +:1002E00002104138000000010210413800000001F6 +:1002F00002104138000000010210413800000001E6 +:1003000002104138000000010210413800000001D5 +:10031000030C200800030691030C201C0004069423 +:10032000030C203800040698040C20480000001D2F +:10033000020C20BC00000001040C20C00000003FA3 +:10034000030C21BC0003069C040C21C80000001C07 +:10035000030C22380004069F010C22480000000014 +:10036000010C224C00000000010C22500000000093 +:10037000010C225400000000010C22580000000073 +:10038000010C225C00000000010C22600000000053 +:10039000010C226400000000010C22680000000033 +:1003A000010C226C00000000010C22700000000013 +:1003B000010C227400000000010C227800000000F3 +:1003C000010C227C00000000030C22D8000406A3CC +:1003D0000A00000100000009020C2000000003E8F0 +:1003E0000A0000010000000A020C200000000003C7 +:1003F0000A0000010000000C020C200000000001B7 +:100400000A00000100001001020C2000000005DCC1 +:100410000A00000100001002020C2000000000048D +:100420000A00000100001004020C2000000000017E +:100430000A00000100002001020C2000000005DC81 +:100440000A00000100002002020C2000000000044D +:100450000A00000100002004020C2000000000013E +:10046000052004000070000006200780001006A789 +:1004700004220000000040000423240000001600B5 +:1004800003221170000806A9032211A8009006B1EA +:100490000422C000000000060322C0180004074127 +:1004A0000422C0280000000C0322C05800040745A5 +:1004B0000422C0680000000C0322C0980004074911 +:1004C0000422C0A80000000C0322C0D80004074D7D +:1004D0000422C0E80000000C0322C11800040751E8 +:1004E0000422C1280000000C0322C1580004075553 +:1004F0000422C1680000000C0322C19800040759BF +:100500000422C1A80000000C0322C1D80004075D2A +:100510000422C1E80000000C0322C2180004076195 +:100520000422C2280000000C0322C2580004076500 +:100530000422C2680000000C0322C298000407696C +:100540000422C2A80000000C0322C2D80004076DD8 +:100550000422C2E80000000C0322C3180004077143 +:100560000422C3280000000C0322C35800040775AE +:100570000422C3680000000C0322C398000407791A +:100580000422C3A80000000C0322C3D80004077D86 +:100590000422C3E80000000C0322C41800040781F1 +:1005A0000422C4280000000C0322C458000407855C +:1005B0000422C4680000000C0322C49800040789C8 +:1005C0000422C4A80000000C0322C4D80004078D34 +:1005D0000422C4E80000000C0322C518000407919F +:1005E0000422C5280000000C0322C558000407950A +:1005F0000422C5680000000C0322C5980004079976 +:100600000422C5A80000000C0322C5D80004079DE1 +:100610000422C5E80000000C0322C618000407A14C +:100620000422C6280000000C0322C658000407A5B7 +:100630000422C6680000000C0322C698000407A923 +:100640000422C6A80000000C0322C6D8000407AD8F +:100650000422C6E80000000C0322C718000407B1FA +:100660000422C7280000000C0322C758000407B565 +:100670000422C7680000000C0322C798000407B9D1 +:100680000422C7A80000000C0322C7D8000407BD3D +:100690000422C7E80000000C0322C818000407C1A8 +:1006A0000422C8280000000C0322C858000407C513 +:1006B0000422C8680000000C0322C898000407C97F +:1006C0000422C8A80000000C0322C8D8000407CDEB +:1006D0000422C8E80000000C0322C918000407D156 +:1006E0000422C9280000000C0322C958000407D5C1 +:1006F0000422C9680000000C0322C998000407D92D +:100700000422C9A80000000C0322C9D8000407DD98 +:100710000422C9E80000000C0322CA18000407E103 +:100720000422CA280000000C0322CA58000407E56E +:100730000422CA680000000C0322CA98000407E9DA +:100740000422CAA80000000C0322CAD8000407ED46 +:100750000422CAE80000000C0322CB18000407F1B1 +:100760000422CB280000000C0322CB58000407F51C +:100770000422CB680000000C0322CB98000407F988 +:100780000422CBA80000000C0322CBD8000407FDF4 +:100790000422CBE80000000C0322CC18000408015E +:1007A0000422CC280000000C0322CC5800040805C9 +:1007B0000422CC680000000C0322CC980004080935 +:1007C0000422CCA80000000C0322CCD80004080DA1 +:1007D0000422CCE80000000C0322CD18000408110C +:1007E0000422CD280000000C0322CD580004081577 +:1007F0000422CD680000000C0322CD9800040819E3 +:100800000422CDA80000000C0322CDD80004081D4E +:100810000422CDE80000000C0322CE1800040821B9 +:100820000422CE280000000C0322CE580004082524 +:100830000422CE680000000C0322CE980004082990 +:100840000422CEA80000000C0322CED80004082DFC +:100850000422CEE80000000C0322CF180004083167 +:100860000422CF280000000C0322CF5800040835D2 +:100870000422CF680000000C0322CF98000408393E +:100880000422CFA80000000C0322CFD80004083DAA +:100890000422CFE80000000C0322D0180004084115 +:1008A0000422D0280000000C0322D0580004084580 +:1008B0000422D0680000000C0322D09800040849EC +:1008C0000422D0A80000000C0322D0D80004084D58 +:1008D0000422D0E80000000C0322D11800040851C3 +:1008E0000422D1280000000C0322D158000408552E +:1008F0000422D1680000000C0322D198000408599A +:100900000422D1A80000000C0322D1D80004085D05 +:100910000422D1E80000000C0322D2180004086170 +:100920000422D2280000000C0322D25800040865DB +:100930000422D2680000000C0322D2980004086947 +:100940000422D2A80000000C0322D2D80004086DB3 +:100950000422D2E80000000C0322D318000408711E +:100960000422D3280000000C0322D3580004087589 +:100970000422D3680000000C0322D39800040879F5 +:100980000422D3A80000000C0322D3D80004087D61 +:100990000422D3E80000000C0322D41800040881CC +:1009A0000422D4280000000C0322D4580004088537 +:1009B0000422D4680000000C0322D49800040889A3 +:1009C0000422D4A80000000C0322D4D80004088D0F +:1009D0000422D4E80000000C0322D518000408917A +:1009E0000422D5280000000C0322D55800040895E5 +:1009F0000422D5680000000C0322D5980004089951 +:100A00000422D5A80000000C0322D5D80004089DBC +:100A10000422D5E80000000C0322D618000408A127 +:100A20000422D6280000000C0322D658000408A592 +:100A30000422D6680000000C0322D698000408A9FE +:100A40000422D6A80000000C0322D6D8000408AD6A +:100A50000422D6E80000000C0322D718000408B1D5 +:100A60000422D7280000000C0322D758000408B540 +:100A70000422D7680000000C0322D798000408B9AC +:100A80000422D7A80000000C0322D7D8000408BD18 +:100A90000422D7E80000000C0322D818000408C183 +:100AA0000422D8280000000C0322D858000408C5EE +:100AB0000422D8680000000C0322D898000408C95A +:100AC0000422D8A80000000C0322D8D8000408CDC6 +:100AD0000422D8E80000000C0322D918000408D131 +:100AE0000422D9280000000C0322D958000408D59C +:100AF0000422D9680000000C0322D998000408D908 +:100B00000422D9A80000000C0322D9D8000408DD73 +:100B10000422D9E80000000C0322DA18000408E1DE +:100B20000422DA280000000C0322DA58000408E549 +:100B30000422DA680000000C0322DA98000408E9B5 +:100B40000422DAA80000000C0322DAD8000408ED21 +:100B50000422DAE80000000C0322DB18000408F18C +:100B60000422DB280000000C0322DB58000408F5F7 +:100B70000422DB680000000C0322DB98000408F963 +:100B80000422DBA80000000C0322DBD8000408FDCF +:100B90000422DBE80000000C0322DC180004090139 +:100BA0000422DC280000000C0322DC5800040905A4 +:100BB0000422DC680000000C0322DC980004090910 +:100BC0000422DCA80000000C0322DCD80004090D7C +:100BD0000422DCE80000000C0322DD1800040911E7 +:100BE0000422DD280000000C0322DD580004091552 +:100BF0000422DD680000000C0322DD9800040919BE +:100C00000422DDA80000000C0322DDD80004091D29 +:100C10000422DDE80000000C0322DE180004092194 +:100C20000422DE280000000C0322DE5800040925FF +:100C30000422DE680000000C0322DE98000409296B +:100C40000422DEA80000000C0322DED80004092DD7 +:100C50000422DEE80000000C0322DF180004093142 +:100C60000422DF280000000C0322DF5800040935AD +:100C70000422DF680000000C0322DF980004093919 +:100C80000422DFA80000000C0322DFD80004093D85 +:100C90000422DFE80000000C0322E01800040941F0 +:100CA0000422E0280000000C0322E058000409455B +:100CB0000422E0680000000C0322E09800040949C7 +:100CC0000422E0A80000000C0322E0D80004094D33 +:100CD0000422E0E80000000C0322E118000409519E +:100CE0000422E1280000000C0322E1580004095509 +:100CF0000422E1680000000C0322E1980004095975 +:100D00000422E1A80000000C0322E1D80004095DE0 +:100D10000422E1E8000000060422F6400000002062 +:100D20000223800000000010022380400000001217 +:100D30000223808000000030022380C00000000EEB +:100D400002238BC0000000010A000002000000081E +:100D50000223838000086470022383C000000226FF +:100D60000A000002000000090223830000086470EA +:100D700002238340000002260A0000020000000A4D +:100D8000022383000000055F02238340000000016E +:100D90000A0000020000000C02238300000001573B +:100DA00002238340000000000A000002000010003F +:100DB00002238380000C96A8022383C0000003391D +:100DC0000A0000020000100102238300000C96A814 +:100DD00002238340000003390A00000200001002D1 +:100DE000022383000000080E02238340000000025B +:100DF0000A00000200001004022383000000020326 +:100E000002238340000000000A00000200002000CE +:100E100002238380000CF850022383C00000035299 +:100E20000A0000020000200102238300000CF85099 +:100E300002238340000003520A0000020000200247 +:100E4000022383000000084D0223834000000002BB +:100E50000A000002000020040223830000000213A5 +:100E600002238340000000000524000033700000CE +:100E70000524800022510CDC0624C60065A6096109 +:100E80000A0000010000000202231480000000009C +:100E90000A0000010000000402231480000000008A +:100EA0000A0000010000001102231480000000006D +:100EB0000A00000100000008022000BC000000320F +:100EC0000A00000400000010022000BC0000000224 +:100ED00002238840000000010120013800000000CA +:100EE00002238840000000000A00000100000011F9 +:100EF0000223148000000001012000000000000017 +:100F00000120000400000000012000080000000093 +:100F10000120000C00000000012000100000000073 +:100F2000012000140000000003200020001A0963C3 +:100F3000032000A40002097D02200224000000001A +:100F400002200234000000000220024C00000000D9 +:100F5000022002E40000FFFF08202000000008003B +:100F60000A000001000000100820400000000200FC +:100F700004221108000000020422340000000002D4 +:100F800004225900000000060422604000000030E6 +:100F90000422F300000000100422111000000002DF +:100FA0000422340800000002042259180000000640 +:100FB00004226100000000300422F3400000001011 +:100FC0000422111800000002042234100000000264 +:100FD0000422593000000006042261C000000030E5 +:100FE0000422F380000000100422112000000002FF +:100FF00004223418000000020422594800000006B0 +:1010000004226280000000300422F3C000000010BF +:1010100004221128000000020422342000000002F3 +:1010200004225960000000060422634000000030E2 +:101030000422F4000000001004221130000000021D +:10104000042234280000000204225978000000061F +:1010500004226400000000300422F440000000106C +:101060000422113800000002042234300000000283 +:101070000422599000000006042264C000000030E1 +:101080000422F4800000001004221140000000023D +:101090000422343800000002042259A8000000068F +:1010A00004226580000000300422F4C0000000101B +:1010B00004102400000000E00310201C0002097F3F +:1010C000021020C000000002031020040002098169 +:1010D00002170008000000020217002C00000003A5 +:1010E00002170038007C100403170044000609832F +:1010F000021700700000000C031700780002098935 +:10110000021701C408100000021703440000000188 +:10111000031704000008098B031704300008099323 +:10112000031704800004099B0A0000010000000866 +:101130000217003C000000040A000001000000103B +:101140000217003C00000008021700040000000F16 +:10115000021701EC00000002021701F40000000277 +:10116000021701EC00000002021701F40000000267 +:10117000021701EC00000002021701F40000000257 +:10118000021701EC00000002021701F40000000247 +:10119000021701EC00000002021701F40000000237 +:1011A000021701EC00000002021701F40000000227 +:1011B000021701EC00000002021701F40000000217 +:1011C000021701EC00000002021701F40000000207 +:1011D0000A0000010000000802130078000000323D +:1011E0000213003C000061A8041301080000000382 +:1011F000021301040000000002130134000000008B +:1012000004130108000000030213010400000000A1 +:101210000213013400000000041301080000000361 +:10122000021301040000000002130134000000005A +:101230000413010800000003021301040000000071 +:101240000213013400000000041301080000000331 +:10125000021301040000000002130134000000002A +:101260000413010800000003021301040000000041 +:101270000213013400000000041301080000000301 +:1012800002130104000000000213013400000000FA +:101290000413010800000003021301040000000011 +:1012A00002130134000000000A0000010000008861 +:1012B0000200A5F8000000000A000001000001087B +:1012C0000200A5F8000000010A00000100000090E3 +:1012D0000200AA84000000000A00000100000110C2 +:1012E0000200AA84000000010A0000010000009032 +:1012F0000200AA88000000000A000001000001109E +:101300000200AA88000000010200A2700000000094 +:101310000200A274000000000200A27000000000A1 +:101320000200A274000000000200A2700000000091 +:101330000200A274000000000200A2700000000081 +:101340000200A2740000000002016204000000001C +:101350000A000001000022000401602C00000007C8 +:10136000030100B40002099F030100CC000209A19F +:10137000020100DC0000000103010100000209A3DA +:101380000201007C003000000201008400000028FF +:101390000201008C00000000020101300000000486 +:1013A0000201032800000000020105540000003083 +:1013B000020160580000FFFF0201606000000000B1 +:1013C0000201607000000007020160B00000000030 +:1013D000020160C000000001020160C800000000BE +:1013E00002016208000000000401805400000003B4 +:1013F0000201807800000000020180E80000000780 +:10140000030180F8000209A50301810C000209A76D +:1014100002018124000000000A0000020000000810 +:10142000020180E400004688030180EC000209A963 +:101430000A00000100000080020180380000000660 +:101440000A000001000002000201803800000007CD +:101450000A000001000004000201803800000006BC +:101460000A00000100000800020180380000000EA0 +:101470000A00000400002000020180EC0000003897 +:1014800002018100000025E40201811400004BC824 +:1014900003018680000409AB020100C400000001C2 +:1014A000020100F800000001020100F0000000014C +:1014B00002010080003000000201008800000028C6 +:1014C000020100900000000002010134000000044D +:1014D0000201032C0000000002010564000000303E +:1014E0000201605C0000FFFF020160640000000078 +:1014F0000201607400000007020160B400000000F7 +:10150000020160C400000001020160CC0000000084 +:101510000201620C00000000040181A80000000428 +:10152000020181D0000000000201823400000007A7 +:1015300003018244000209AF03018258000209B18D +:101540000A00000200000008020182300000468804 +:1015500003018238000209B30A0000010000008084 +:101560000201818C000000060A0000010000020058 +:101570000201818C000000070A0000010000040045 +:101580000201818C000000060A0000010000080032 +:101590000201818C0000000E0A00000400002000FF +:1015A00002018238000000380201824C000025E46C +:1015B0000201826000004BC8030186E0000409B507 +:1015C000020100C800000001020100FC000000014F +:1015D000020100F4000000010401013800000011C4 +:1015E0000401017C00000011040101380000001119 +:1015F0000401017C00000011040101380000001109 +:101600000401017C000000110401013800000011F8 +:101610000401017C000000110215C0900000892621 +:101620000215C09C000000040A0000010000220016 +:101630000415C07000000007021400000000000143 +:101640000215C024000000000315C0EC000209B917 +:101650000315C100000209BB0A00000100002000C0 +:101660000315C1F4000809BD03140030000209C5C8 +:1016700002140040000000010900000200001008F0 +:1016800003140004000309C7021400440000FFFF14 +:101690000A0000040000200003140038000209CAF8 +:1016A00002140044000FFFFF0315C160000709CCBE +:1016B0000315C198000209D30900000100001008B9 +:1016C00004140004000000030A00000100002000D0 +:1016D0000415C160000000070214000000000000B3 +:1016E000020090C40000E000020090CC0000F30073 +:1016F000030090D4000209D5020090E000007300BE +:10170000030090E8000209D7020090F40000730083 +:10171000030090FC000209D9020091080000530068 +:10172000020091100000000403009128000709DB6B +:101730000300916C000609E2040091840000000699 +:101740000300919C000509E80300942C000309EDB7 +:101750000300942C000309F00300942C000309F308 +:101760000300942C000309F60300942C000309F9EC +:101770000300942C000309FC0300942C000309FFD0 +:101780000300942C00030A020304000400120A055B +:1017900002040054000000430204005C0000000644 +:1017A00002040070000000040304007800040A171B +:1017B00004040088000000050304009C00030A1BC9 +:1017C000040400A800000004030400B800110A1E6D +:1017D00001040124000000000104012800000000B1 +:1017E0000104012C00000000010401300000000091 +:1017F000020401340000000F030401D000020A2F8C +:101800000204022C000000040304025800040A3100 +:101810000A00000100002200040401AC00000007DF +:101820000312049400210A350212038800000064A8 +:1018300002120390000000080312039C00030A56E2 +:10184000031203BC00030A59021203D00000000077 +:101850000212036C00000001031201BC003C0A5C90 +:10186000031202B000020A980312032400020A9A2B +:10187000021205B400000001031205F800030A9CDF +:101880000212066C00000001021201B0000000010B +:10189000021207D800000000021207D80000000062 +:1018A000021207D800000000021207D80000000052 +:1018B000021207D800000000021207D80000000042 +:1018C000021207D800000000021207D80000000032 +:1018D000021030D8000000010710380000050A9FF0 +:1018E0000710392000050AA407103B0000050AA9CB +:1018F00007103C0000050AAE0316803000080AB34A +:1019000002168054000000020416807C00000005CE +:101910000316809000020ABB0316809C00020ABDD9 +:10192000021680AC00000054041680B800000005C8 +:10193000031680CC00080ABF021680F000000007E2 +:101940000316810000060AC70316812800030ACD8A +:101950000316814000060AD00316816800030AD6E8 +:10196000031681A800030AD9031681E800030ADCE4 +:10197000031681F800030ADF0316820800070AE253 +:101980000316823400020AE904168278000000047B +:101990000316828800060AEB021688102020010137 +:1019A000021688202020010102168838202001011B +:1019B00002168848202001010316E6BC00020AF145 +:1019C0000A000014000000080316806000070AF3F4 +:1019D000041680A400000002041680B0000000027B +:1019E000031680F400030AFA0316811800040AFDA6 +:1019F0000316813400030B010316815800040B0405 +:101A000003168174000D0B08031681B4000D0B152D +:101A1000021681F4000001FC02168204000000039B +:101A20000316823C000B0B2204168268000000049F +:101A30000216880C010101010316881400030B2D06 +:101A40000316882400050B300316883C00030B3571 +:101A50000316E6C400020B380316E6E800050B3A4D +:101A60000216E794000000010A00001C00001000AC +:101A70000316806000070B3F041680A400000002DC +:101A8000041680B000000002031680F400030B4629 +:101A90000316811800040B490316813400030B4D13 +:101AA0000316815800040B500216817800000001D3 +:101AB00002168184000000010216819000000001DE +:101AC000021681A400000004021681B80000000183 +:101AD000021681C400000001021681D0000000013E +:101AE000021681E400000004021681F4000001FCEB +:101AF00002168204000000030316823C00020B540D +:101B0000021682480092009202168250012401249B +:101B10000316825800040B56041682680000000465 +:101B20000216880C010101010316881400030B5AE8 +:101B30000316882400050B5D0316883C00030B6226 +:101B40000316E6E800020B650216E6F80000020440 +:101B50000A00000E00001020021681740000000030 +:101B60000316817C00020B670316818800020B6953 +:101B70000316819400040B6B021681B40000000070 +:101B8000031681BC00020B6F031681C800020B71A3 +:101B9000031681D400040B73021682440E490E49C9 +:101BA0000216824C009200920216825401240124F3 +:101BB0000316E6C400020B770316E6F000020B7969 +:101BC0000216E794000000010A00000E0000104019 +:101BD00002168174000000010316817C00020B7B59 +:101BE0000316818800020B7D0316819400040B7F8D +:101BF000021681B400000001031681BC00020B83B1 +:101C0000031681C800020B85031681D400040B87DC +:101C100002168244000000000216824C0FFF0FFFE4 +:101C200002168254000000000316E6C400020B8B6B +:101C30000316E6F000020B8D0216E7940000000088 +:101C40000A000007000020000316806000070B8FC9 +:101C5000031680A400020B96031680B000020B98B6 +:101C6000021681F4000001C0021682040000003F49 +:101C70000216823C0000007F0316E7BC00080B9AA6 +:101C80000A00000F00004020031680F400030BA29E +:101C90000316811800040BA50316813400030BA959 +:101CA0000316815800040BAC03168174000D0BB0B1 +:101CB000031681B4000D0BBD0316824000060BCA4B +:101CC00004168258000000060316827000020BD032 +:101CD0000216880C010101010316881400030BD2BF +:101CE0000316882400050BD50316883C00030BDA85 +:101CF0000316E6C400020BDD0216E79400000001A3 +:101D00000A00000D00004040031680F400030BDFC2 +:101D10000316811800040BE20316813400030BE65E +:101D20000316815800040BE903168174000D0BEDB6 +:101D3000031681B4000D0BFA03168240000E0C0747 +:101D40000216880C010101010316881400030C150A +:101D50000316882400050C180316883C00030C1D8C +:101D60000316E6C400020C200216E79400000000EF +:101D70000A00000D00008000031680F400030C220E +:101D80000316811800040C250316813400030C2966 +:101D90000316815800040C2C03168174000D0C30BE +:101DA000031681B4000D0C3D03168240000E0C4A50 +:101DB0000216880C010101200316881400030C5838 +:101DC0000316882400050C5B0316883C00030C6096 +:101DD0000316E6C400020C630216E794000000013B +:101DE000021680EC000000FF0304040800140C65D8 +:101DF000020404CC000000010305004400020C7939 +:101E00000305005000080C7B0305009000070C83BD +:101E1000030500B000020C8A030500C000020C8C10 +:101E2000030500D400020C8E02050114000000011D +:101E30000305011C00020C900205020400000001D1 +:101E40000305020C00020C920205021C0000002097 +:101E5000040502400000000A0405400000000D00D7 +:101E60000A000002000000080305022000020C9492 +:101E70000305028000200C960A00000200000010FA +:101E80000305022000020CB603050280001D0CB8F9 +:101E90000305000400100CD5020500E00000000E50 +:101EA000020500E40000002E020500E00000001E14 +:101EB000020500E40000003E020500E00000004EC4 +:101EC000020500E40000006E020500E00000005E74 +:101ED000020500E40000007E041640240000000219 +:101EE0000316403000030CE50216404400000020B9 +:101EF000021640700000001C02164208000000019B +:101F000002164210000000010216422000000001EB +:101F100002164228000000010216423000000001B3 +:101F20000216423800000001021642600000000262 +:101F30000A000001000000090216401C0003D090B6 +:101F40000A0000010000000A0216401C0000027195 +:101F50000A0000010000000C0216401C0000009C5A +:101F60000A000001000010010216401C0005B8D84C +:101F70000A000001000010020216401C000003A924 +:101F80000A000001000010040216401C000000EAD4 +:101F90000A000001000020010216401C0005B8D80C +:101FA0000A000001000020020216401C000003A9E4 +:101FB0000A000001000020040216401C000000EA94 +:101FC0000216400000000001021640D80000000187 +:101FD0000316400800030CE802164240000000000F +:101FE000021642480000000008164270000000027D +:101FF0000216425000000000021642580000000085 +:1020000008164280000000020304200800040CEBC4 +:102010000304201C00040CEF0304203800020CF31E +:10202000040420400000001E030420B800020CF548 +:10203000040420C00000005E0304223800040CF7F2 +:1020400001042248000000000104224C00000000AE +:10205000010422500000000001042254000000008E +:1020600001042258000000000104225C000000006E +:10207000010422600000000001042264000000004E +:1020800001042268000000000104226C000000002E +:10209000010422700000000001042274000000000E +:1020A00001042278000000000104227C00000000EE +:1020B000030422C000040CFB0A0000010000000918 +:1020C00002042000000000FA0A0000010000000ADB +:1020D00002042000000000010A0000010000000CC2 +:1020E00002042000000000000A00000100001001AE +:1020F00002042000000001770A0000010000100225 +:1021000002042000000000010A0000010000100489 +:1021100002042000000000000A000001000020016D +:1021200002042000000001770A00000100002002E4 +:1021300002042000000000010A0000010000200449 +:1021400002042000000000000518040000900000B8 +:10215000061807B800090CFF041A00000000400030 +:10216000041B240000001600031A16C800020D010B +:10217000031A17E000900D03031A404000040D936A +:10218000041A405000000006031A406800020D9730 +:10219000031A52C000020D99031A800003F90D9B27 +:1021A000041A8FE400000007031B3D9000141194F3 +:1021B000021B800000000034021B80400000001859 +:1021C000021B80800000000C021B80C00000002069 +:1021D000021B8BC0000000010A0000030000000881 +:1021E000021A16D000000002021B838000086470EF +:1021F000021B83C0000002260A0000020000000942 +:10220000021B830000086470021B8340000002264A +:102210000A0000020000000A021B83000000055FA4 +:10222000021B8340000000010A0000020000000CB5 +:10223000021B830000000157021B834000000000C6 +:102240000A00000100000020021A16D4000000005D +:102250000A00000100000040021A16D4000000012C +:102260000A00000300001000021A16D0000000034C +:10227000021B8380000C96A8021B83C00000033958 +:102280000A00000200001001021B8300000C96A847 +:10229000021B8340000003390A0000020000100204 +:1022A000021B83000000080E021B83400000000296 +:1022B0000A00000200001004021B83000000020359 +:1022C000021B8340000000000A0000030000200001 +:1022D000021A16D000000004021B8380000CF85084 +:1022E000021B83C0000003520A000002000020010C +:1022F000021B8300000CF850021B834000000352B5 +:102300000A00000200002002021B83000000084DAA +:10231000021B8340000000020A00000200002004AB +:10232000021B830000000213021B83400000000018 +:102330000A00000100004000021A16D80000000048 +:102340000A00000100008000021A16D800000001F7 +:10235000041B944800000002051C000032E7000046 +:10236000051C800034E20CBA051D0000356219F32B +:10237000051D800035DB274C051E000021A934C354 +:10238000061E50A035EC11A80A0000010000000252 +:10239000021B1480000000000A000001000000047D +:1023A000021B1480000000000A0000010000001160 +:1023B000021B1480000000000A0000020000000858 +:1023C000021800BC00000032021B945C00000032C6 +:1023D0000A00000700000010021800BC0000000204 +:1023E000021B945C00000002021B884000000001F8 +:1023F000021B942C000000020118012800000000BC +:10240000021B884000000000021B942C000000000A +:10241000021B9440000000010A00000100000011AE +:10242000021B1480000000010118000000000000E1 +:10243000011800040000000001180008000000005E +:102440000118000C0000000001180010000000003E +:10245000011800140000000003180020001A11AA3F +:10246000031800A4000211C4021802240000000096 +:1024700002180234000000000218024C00000000A4 +:10248000021802E4000000FF081810000000040019 +:102490000A000001000000100818200000000600DB +:1024A000031A1A30000411C6041A3000000000128A +:1024B000041A309000000012041AD4C80000000270 +:1024C000041AD4D800000020041AD5D80000000255 +:1024D000031AD5F8000211CA041B440000000006CC +:1024E000031A1A40000411CC041A304800000012EC +:1024F000041A30D800000012041AD4D000000002E0 +:10250000041AD55800000020041AD5E0000000028B +:10251000031AD600000211D0041B44180000000664 +:10252000031A4000000211D2041A500000000002F9 +:10253000041A508000000012031A6140000211D4F6 +:10254000041AA00000000002041B44300000000236 +:10255000031A4008000211D6041A501000000002AD +:10256000041A50C800000012031A6148000211D872 +:10257000041AA00800000002041B443800000002F6 +:10258000031A4010000211DA041A50200000000261 +:10259000041A511000000012031A6150000211DCED +:1025A000041AA01000000002041B444000000002B6 +:1025B000031A4018000211DE041A50300000000215 +:1025C000041A515800000012031A6158000211E069 +:1025D000041AA01800000002041B44480000000276 +:1025E000031A4020000211E2041A504000000002C9 +:1025F000041A51A000000012031A6160000211E4E5 +:10260000041AA02000000002041B44500000000235 +:10261000031A4028000211E6041A5050000000027C +:10262000041A51E800000012031A6168000211E860 +:10263000041AA02800000002041B445800000002F5 +:10264000031A4030000211EA041A50600000000230 +:10265000041A523000000012031A6170000211ECDB +:10266000041AA03000000002041B446000000002B5 +:10267000031A4038000211EE041A507000000002E4 +:10268000041A527800000012031A6178000211F057 +:10269000041AA03800000002041B44680000000275 +:1026A000020E004C00000032030E0054000811F22C +:1026B000030E0094000711FA030E00B40002120189 +:1026C000020E00C400000000020E00CC0000000654 +:1026D000030E00D800021203020E014400000001A4 +:1026E000030E014C00021205020E0204000000015C +:1026F000030E020C00021207030E021C0004120952 +:10270000030E0280001B120D040E030000000012D5 +:10271000040E2000000008000A000001000000086C +:10272000040E02EC00000005030E00040011122844 +:10273000020E01100000000F020E01140000002F15 +:10274000020E01100000001F020E01140000003FE5 +:10275000020E01100000004F020E01140000006F75 +:10276000020E01100000005F020E01140000007F45 +:10277000020C100000000028030C4008000412396D +:10278000030C401C0004123D030C403800061241AB +:10279000040C40500000001F020C40CC000000015F +:1027A000040C40D00000003A030C41B80006124768 +:1027B000040C41D00000001A030C42380004124DF2 +:1027C000010C424800000000010C424C00000000D7 +:1027D000010C425000000000010C425400000000B7 +:1027E000010C425800000000010C425C0000000097 +:1027F000010C426000000000010C42640000000077 +:10280000010C426800000000010C426C0000000056 +:10281000010C427000000000010C42740000000036 +:10282000010C427800000000010C427C0000000016 +:10283000010C428000000000030C42D80004125139 +:102840000A00000100000009020C4000000003E83B +:102850000A0000010000000A020C40000000000312 +:102860000A0000010000000C020C40000000000102 +:102870000A00000100001001020C4000000005DC0D +:102880000A00000100001002020C400000000004D9 +:102890000A00000100001004020C400000000001CA +:1028A0000A00000100002001020C4000000005DCCD +:1028B0000A00000100002002020C40000000000499 +:1028C0000A00000100002004020C4000000000018A +:1028D0000530040000C20000063007E8000312556E +:1028E0000432000000004000043324000000160001 +:1028F00003322C7000901257033234C0000812E7E4 +:102900000432408000000010033240C0000212EF89 +:1029100003337400000412F1023380000000001A37 +:10292000023380400000004E02338080000000101F +:10293000023380C00000002002338BC00000000181 +:102940000A0000020000000802338380000864705F +:10295000023383C0000002260A00000200000009C2 +:1029600002338300000864700233834000000226B3 +:102970000A0000020000000A023383000000055F25 +:1029800002338340000000010A0000020000000C36 +:10299000023383000000015702338340000000002F +:1029A0000A0000020000100002338380000C96A889 +:1029B000023383C0000003390A0000020000100146 +:1029C00002338300000C96A80233834000000339D1 +:1029D0000A00000200001002023383000000080E0B +:1029E00002338340000000020A00000200001004CD +:1029F0000233830000000203023383400000000022 +:102A00000A0000020000200002338380000CF8500E +:102A1000023383C0000003520A00000200002001BC +:102A200002338300000CF85002338340000003524D +:102A30000A00000200002002023383000000084D5B +:102A400002338340000000020A000002000020045C +:102A500002338300000002130233834000000000B1 +:102A600005340000363900000534800034300D8F05 +:102A70000535000031581A9B05358000384B26F18A +:102A80000536000038BA35040536800034C74333B4 +:102A9000053700001C5550650637412017DC12F53C +:102AA0000A00000100000002023314800000000050 +:102AB0000A0000010000000402331480000000003E +:102AC0000A00000100000011023314800000000021 +:102AD0000A00000100000008023000BC00000032C3 +:102AE0000A00000400000010023000BC00000002D8 +:102AF000023388400000000101300138000000006E +:102B000002338840000000000A00000100000011AC +:102B100002331480000000010130000000000000BA +:102B20000130000400000000013000080000000037 +:102B30000130000C00000000013000100000000017 +:102B4000013000140000000003300020001A12F7CA +:102B5000033000A400021311023002240000000020 +:102B600002300234000000000230024C000000007D +:102B7000023002E40000FFFF0830200000000800DF +:102B80000A000001000000100830400000000200B0 +:102B900004322C400000000203322C5000041313B6 +:102BA000043293C0000000020432940000000010C0 +:102BB0000432C000000000200432C10000000020E8 +:102BC0000432C200000000200432C30000000020D4 +:102BD0000432C400000000200432C50000000020C0 +:102BE0000432C600000000200432C70000000020AC +:102BF0000432C800000000200432C9000000002098 +:102C00000432CA00000000200432CB000000002083 +:102C10000432CC00000000200432CD00000000206F +:102C20000432CE00000000200432CF00000000205B +:102C30000432DB800000000204322C480000000255 +:102C400003322C6000041317043293C80000000202 +:102C500004329440000000100432C08000000020C4 +:102C60000432C180000000200432C2800000002035 +:102C70000432C380000000200432C4800000002021 +:102C80000432C580000000200432C680000000200D +:102C90000432C780000000200432C88000000020F9 +:102CA0000432C980000000200432CA8000000020E5 +:102CB0000432CB80000000200432CC8000000020D1 +:102CC0000432CD80000000200432CE8000000020BD +:102CD0000432CF80000000200432DB8800000002B4 +:102CE000043210100000000204322C000000000228 +:102CF000043210200000000204322C080000000200 +:102D0000043210300000000204322C1000000002D7 +:102D1000043210400000000204322C1800000002AF +:102D2000043210500000000204322C200000000287 +:102D3000043210600000000204322C28000000025F +:102D4000043210700000000204322C300000000237 +:102D5000043210800000000204322C38000000020F +:102D60000202005800000032030200600008131B3A +:102D7000030200A0000B1323020200D00000000792 +:102D8000030200DC0003132E030200F000021331E3 +:102D9000020200FC0000000C020201200000000002 +:102DA0000202013400000002020201B00000000132 +:102DB0000202020C0000000103020214000213339D +:102DC00002020404000000010302040C0002133597 +:102DD0000302041C00041337030204800020133B89 +:102DE0000402050000000012040280000000200020 +:102DF000030200040014135B02020108000000C873 +:102E00000202011800000002020201C400000000DA +:102E1000020201CC00000000020201D40000000206 +:102E2000020201DC00000002020201E4000000FFD7 +:102E3000020201EC000000FF0202010C000000C8C9 +:102E40000202011C00000002020201C80000000092 +:102E5000020201D000000000020201D800000002BE +:102E6000020201E000000002020201E8000000FF8F +:102E7000020201F0000000FF02020108000000C889 +:102E80000202011800000002020201C4000000005A +:102E9000020201CC00000000020201D40000000286 +:102EA000020201DC00000002020201E4000000FF57 +:102EB000020201EC000000FF0202010C000000C849 +:102EC0000202011C00000002020201C80000000012 +:102ED000020201D000000000020201D8000000023E +:102EE000020201E000000002020201E8000000FF0F +:102EF000020201F0000000FF02020108000000C809 +:102F00000202011800000002020201C400000000D9 +:102F1000020201CC00000000020201D40000000205 +:102F2000020201DC00000002020201E4000000FFD6 +:102F3000020201EC000000FF0202010C000000C8C8 +:102F40000202011C00000002020201C80000000091 +:102F5000020201D000000000020201D800000002BD +:102F6000020201E000000002020201E8000000FF8E +:102F7000020201F0000000FF02020108000000C888 +:102F80000202011800000002020201C40000000059 +:102F9000020201CC00000000020201D40000000285 +:102FA000020201DC00000002020201E4000000FF56 +:102FB000020201EC000000FF0202010C000000C848 +:102FC0000202011C00000002020201C80000000011 +:102FD000020201D000000000020201D8000000023D +:102FE000020201E000000002020201E8000000FF0E +:102FF000020201F0000000FF02161000000000288D +:10300000031660080003136F0316601C000413729C +:103010000316603800121376041660800000000E5C +:10302000021660B800000001041660BC0000000831 +:10303000021660DC00000001041660E000000004DD +:10304000021660F000000001041660F40000003178 +:10305000031661B800021388041661C0000000075F +:10306000031661DC0006138A041661F400000011E7 +:103070000316623800041390011662480000000035 +:103080000116624C000000000116625000000000B2 +:103090000116625400000000011662580000000092 +:1030A0000116625C00000000011662600000000072 +:1030B0000116626400000000011662680000000052 +:1030C0000116626C00000000011662700000000032 +:1030D0000116627400000000011662780000000012 +:1030E0000116627C00000000011662D4000000009E +:1030F000031662D8000413940A00000100000009BE +:1031000002166000000003E80A0000010000000A47 +:1031100002166000000000030A0000010000000C1D +:1031200002166000000000010A000001000010010A +:1031300002166000000005DC0A0000010000100219 +:1031400002166000000000040A00000100001004E4 +:1031500002166000000000010A00000100002001CA +:1031600002166000000005DC0A00000100002002D9 +:1031700002166000000000040A00000100002004A4 +:1031800002166000000000010528040000AA0000EB +:10319000062807C800071398042A00000000400012 +:1031A000042B240000001600032A30000002139AAA +:1031B000032A40000010139C032A8408000813AC63 +:1031C000032A9348000413B4032A9668000813B82E +:1031D000032A98B8000213C0032A9950009013C222 +:1031E000032B4D9000141452022B800000000000AD +:1031F000022B804000000018022B80800000000C91 +:10320000022B80C000000066022B8BC00000000172 +:103210000A00000300000008022A9CA80000000227 +:10322000022B838000086470022B83C000000226FA +:103230000A00000200000009022B830000086470ED +:10324000022B8340000002260A0000020000000A50 +:10325000022B83000000055F022B83400000000169 +:103260000A0000020000000C022B8300000001573E +:10327000022B8340000000000A0000030000002031 +:10328000022A9CAC00000000032AC4E0000414667B +:10329000032AC5000002146A0A0000020000004070 +:1032A000022A9CAC00000001032AC4E0000A146C4E +:1032B0000A00000300001000022A9CA8000000037E +:1032C000022B8380000C96A8022B83C000000339D8 +:1032D0000A00000200001001022B8300000C96A8D7 +:1032E000022B8340000003390A0000020000100294 +:1032F000022B83000000080E022B83400000000216 +:103300000A00000200001004022B830000000203E8 +:10331000022B8340000000000A0000030000200090 +:10332000022A9CA800000004022B8380000CF850A5 +:10333000022B83C0000003520A000002000020019B +:10334000022B8300000CF850022B83400000035234 +:103350000A00000200002002022B83000000084D3A +:10336000022B8340000000020A000002000020043B +:10337000022B830000000213022B83400000000098 +:103380000A00000100004000022A9CB0000000007A +:103390000A00000100008000022A9CB00000000129 +:1033A000042B944800000002052C00003599000011 +:1033B000052C80003A650D67052D00002F6B1C0160 +:1033C000052D80003C0327DC052E0000401536DD6E +:1033D000052E80003C5B46E3052F0000347A55FA49 +:1033E000052F800008896319062F91C00DC8147637 +:1033F0000A00000100000002022B148000000000FF +:103400000A00000100000004022B148000000000EC +:103410000A00000100000011022B148000000000CF +:103420000A00000200000008022800BC0000003270 +:10343000022B945C000000320A000007000000101C +:10344000022800BC00000002022B945C0000000275 +:10345000022B884000000001022B942C0000000287 +:103460000128013800000000022B88400000000005 +:10347000022B942C00000000022B9440000000015D +:103480000A00000100000011022B1480000000015E +:1034900001280000000000000128000400000000D6 +:1034A00001280008000000000128000C00000000B6 +:1034B0000128001000000000012800140000000096 +:1034C00003280020001A1478032800A40002149294 +:1034D000022802240000000002280234000000003C +:1034E0000228024C00000000022802E40000FFFF56 +:1034F00008282000000008000A0000010000001059 +:103500000828400000000200042A500000000002C9 +:10351000042A501000000002042A5020000000027B +:10352000042A503000000002042A935800000020B2 +:10353000042A94580000000E032A94900002149468 +:10354000042A94D80000000E032A95100002149655 +:10355000042A95580000000E032A95900002149842 +:10356000042A95D80000000E032A96100002149A2F +:10357000032A96880002149C042ABC9800000002CA +:10358000042A500800000002042A5018000000021B +:10359000042A502800000002042A503800000002CB +:1035A000042A93D800000020042A94980000000EFA +:1035B000032A94D00002149E042A95180000000EDD +:1035C000032A9550000214A0042A95980000000ECA +:1035D000032A95D0000214A2042A96180000000EB7 +:1035E000032A9650000214A4032A9690000214A6FF +:1035F000042ABCA000000002042A50480000000E6B +:10360000032A9698001014A8042A98D000000002FB +:10361000042A991000000002042AC480000000025D +:10362000042A50800000000E032A96D8001014B817 +:10363000042A98D800000002042A99180000000209 +:10364000042AC48800000002042A50B80000000EBA +:10365000032A9718001014C8042A98E000000002FA +:10366000042A992000000002042AC49000000002ED +:10367000042A50F00000000E032A9758001014D8B6 +:10368000042A98E800000002042A99280000000299 +:10369000042AC49800000002042A51280000000EE9 +:1036A000032A9798001014E8042A98F000000002FA +:1036B000042A993000000002042AC4A0000000027D +:1036C000042A51600000000E032A97D8001014F855 +:1036D000042A98F800000002042A99380000000229 +:1036E000042AC4A800000002042A51980000000E19 +:1036F000032A981800101508042A990000000002F7 +:10370000042A994000000002042AC4B0000000020C +:10371000042A51D00000000E032A985800101518F2 +:10372000042A990800000002042A994800000002B7 +:10373000042AC4B8000000020400A0000000000C2D +:103740000400A050000000020300A0EC00081528AF +:103750000300A19C000415300200A45C00000C00D2 +:103760000400A6A8000000020200A6D0000000008D +:103770000200A61C000000030300A0700005153421 +:103780000400A084000000050200A0980FE00000E3 +:103790000400A09C000000070300A0B8000D15392C +:1037A0000400A22C000000040200A688000000FC17 +:1037B0000400A68C000000070200A6F40000000030 +:1037C0000300A10C000615460400A124000000051A +:1037D0000200A1380FE000000400A13C0000000737 +:1037E0000300A158000D154C0400A23C0000000489 +:1037F0000200A6B0000000FC0400A6B40000000710 +:103800000200A6F8000000000200A0300000000046 +:103810000200A034000000000200A03800000000F8 +:103820000200A03C000000000200A04000000000D8 +:103830000200A044000000000200A04800000000B8 +:103840000200A04C0000000000000000000000008A +:103850000000000100000000000000000000000067 +:103860000000000000000000000000000000000058 +:10387000000000000000000000000000000100182F +:1038800000180020002000230000000000000000BD +:103890000000000000000000000000000000000028 +:1038A00000000000000000000023003500000000C0 +:1038B00000000000003500360036003700370038C1 +:1038C000003800390039003A003A003B003B003C28 +:1038D000003C003D003D00440000000000000000EE +:1038E00000000000000000000000000000000000D8 +:1038F00000000000000000000000000000000000C8 +:103900000044004D0000000000000000004D004E8B +:10391000004E004F004F0050005000510051005227 +:103920000052005300530054005400550055007FCE +:103930000000000000000000000000000000000087 +:103940000000000000000000000000000000000077 +:103950000000000000000000007F01E10000000006 +:103960000000000001E101E601E601EB01EB01F0DE +:1039700001F001F501F501FA01FA01FF01FF02046E +:103980000204020900000000000000000000000026 +:103990000000000000000000000000000000000027 +:1039A0000000000000000000000000000000000017 +:1039B0000209020D000000000000000000000000ED +:1039C00000000000000000000000000000000000F7 +:1039D000000000000000000000000000020D021DB9 +:1039E0000000000000000000021D021F021F022153 +:1039F000022102230223022502250227022702298F +:103A00000229022B022B022D000000000000000002 +:103A100000000000000000000000000000000000A6 +:103A20000000000000000000000000000000000096 +:103A300000000000022D0230000000000000000025 +:103A40000230023302330236023602390239023CB6 +:103A5000023C023F023F0242024202450245024846 +:103A60000248024C024C02500250025402540255C9 +:103A7000025502560256025702570258025802597E +:103A80000259025A025A025B025B025C025C026348 +:103A900002630289028902AE02AE02AF02AF02B037 +:103AA00002B002B102B102B202B202B302B302B476 +:103AB00002B402B502B502B602B602CF00000000A1 +:103AC00000000000000000000000000000000000F6 +:103AD00000000000000000000000000000000000E6 +:103AE0000000000002CF02DC000000000000000027 +:103AF00002DC02DD02DD02DE02DE02DF02DF02E0C6 +:103B000002E002E102E102E202E202E302E302E495 +:103B100002E402F7000000000000000000000000C6 +:103B20000000000000000000000000000000000095 +:103B300000000000000000000000000002F7030584 +:103B40000000000000000000030503060306030751 +:103B500003070308030803090309030A030A030B05 +:103B6000030B030C030C030D030D031200000000F4 +:103B70000000000000000000000000000000000045 +:103B80000000000000000000000000000000000035 +:103B900000000000031203B000000000000000005D +:103BA0000000000000000000000000000000000015 +:103BB0000000000000000000000000000000000005 +:103BC00003B003B20000000000000000000000008D +:103BD00000000000000000000000000000000000E5 +:103BE00000000000000000000000000003B203C657 +:103BF000000000000000000003C603C703C703C89D +:103C000003C803C903C903CA03CA03CB03CB03CC4C +:103C100003CC03CD03CD03CE03CE03EE03EE03F1BD +:103C200003F103F4000000000000000000000000A9 +:103C30000000000000000000000000000000000084 +:103C40000000000003F4041C00000000000000005D +:103C50000000000000000000000000000000000064 +:103C60000000000000000000000000000000000054 +:103C7000041C04870487048F048F04970497049D11 +:103C8000049D04A304A304A904A904AF04AF04B5CC +:103C900004B504BB04BB04C104C104C704C704D9F0 +:103CA000000000000000000004D904DA04DA04DB9C +:103CB00004DB04DC04DC04DD04DD04DE04DE04DFFC +:103CC00004DF04E004E004E104E104E20000000099 +:103CD00000000000000000000000000000000000E4 +:103CE00000000000000000000000000000000000D4 +:103CF0000000000004E2050D0000000000000000CC +:103D000000000000000000000000000000000000B3 +:103D100000000000000000000000000000000000A3 +:103D2000050D05650565057A057A058F058F0591F1 +:103D300005910593059305950595059705970599B3 +:103D40000599059B059B059D059D059F059F05B252 +:103D5000000000000000000005B205BA05BA05C267 +:103D600005C205CA05CA05D205D205DA05DA05E29B +:103D700005E205EA05EA05F205F205F30000000098 +:103D80000000000000000000000000000000000033 +:103D90000000000000000000000000000000000023 +:103DA0000000000005F306240000000000000000F1 +:103DB0000000000000000000000000000000000003 +:103DC00000000000000000000000000000000000F3 +:103DD00006240694069406A306A306B206B206B706 +:103DE00006B706BC06BC06C106C106C606C606CB9B +:103DF00006CB06D006D006D506D506DA06DA06E2E8 +:103E000006E206EB06EB06F406F406F506F506F602 +:103E100006F606F706F706F806F806F906F906FAB2 +:103E200006FA06FB06FB06FC00000000000000008E +:103E30000000200000004000000060000000800042 +:103E40000000A0000000C0000000E0000001000031 +:103E5000000120000001400000016000000180001E +:103E60000001A0000001C0000001E000000200000D +:103E700000022000000240000002600000028000FA +:103E80000002A0000002C0000002E00000030000E9 +:103E900000032000000340000003600000038000D6 +:103EA0000003A0000003C0000003E00000040000C5 +:103EB00000042000000440000004600000048000B2 +:103EC0000004A0000004C0000004E00000050000A1 +:103ED000000520000005400000056000000580008E +:103EE0000005A0000005C0000005E000000600007D +:103EF000000620000006400000066000000680006A +:103F00000006A0000006C0000006E0000007000058 +:103F10000007200000074000000760000007800045 +:103F20000007A0000007C0000007E0000008000034 +:103F30000008200000084000000860000008800021 +:103F40000008A0000008C0000008E0000009000010 +:103F500000092000000940000009600000098000FD +:103F60000009A0000009C0000009E000000A0000EC +:103F7000000A2000000A4000000A6000000A8000D9 +:103F8000000AA000000AC000000AE000000B0000C8 +:103F9000000B2000000B4000000B6000000B8000B5 +:103FA000000BA000000BC000000BE000000C0000A4 +:103FB000000C2000000C4000000C6000000C800091 +:103FC000000CA000000CC000000CE000000D000080 +:103FD000000D2000000D4000000D6000000D80006D +:103FE000000DA000000DC000000DE000000E00005C +:103FF000000E2000000E4000000E6000000E800049 +:10400000000EA000000EC000000EE000000F000037 +:10401000000F2000000F4000000F6000000F800024 +:10402000000FA000000FC000000FE0000010000013 +:104030000010200000104000001060000010800000 +:104040000010A0000010C0000010E00000110000EF +:1040500000112000001140000011600000118000DC +:104060000011A0000011C0000011E00000120000CB +:1040700000122000001240000012600000128000B8 +:104080000012A0000012C0000012E00000130000A7 +:104090000013200000134000001360000013800094 +:1040A0000013A0000013C0000013E0000014000083 +:1040B0000014200000144000001460000014800070 +:1040C0000014A0000014C0000014E000001500005F +:1040D000001520000015400000156000001580004C +:1040E0000015A0000015C0000015E000001600003B +:1040F0000016200000164000001660000016800028 +:104100000016A0000016C0000016E0000017000016 +:104110000017200000174000001760000017800003 +:104120000017A0000017C0000017E00000180000F2 +:1041300000182000001840000018600000188000DF +:104140000018A0000018C0000018E00000190000CE +:1041500000192000001940000019600000198000BB +:104160000019A0000019C0000019E000001A0000AA +:10417000001A2000001A4000001A6000001A800097 +:10418000001AA000001AC000001AE000001B000086 +:10419000001B2000001B4000001B6000001B800073 +:1041A000001BA000001BC000001BE000001C000062 +:1041B000001C2000001C4000001C6000001C80004F +:1041C000001CA000001CC000001CE000001D00003E +:1041D000001D2000001D4000001D6000001D80002B +:1041E000001DA000001DC000001DE000001E00001A +:1041F000001E2000001E4000001E6000001E800007 +:10420000001EA000001EC000001EE000001F0000F5 +:10421000001F2000001F4000001F6000001F8000E2 +:10422000001FA000001FC000001FE00000200000D1 +:1042300000202000002040000020600000208000BE +:104240000020A0000020C0000020E00000210000AD +:10425000002120000021400000216000002180009A +:104260000021A0000021C0000021E0000022000089 +:104270000022200000224000002260000022800076 +:104280000022A0000022C0000022E0000023000065 +:104290000023200000234000002360000023800052 +:1042A0000023A0000023C0000023E0000024000041 +:1042B000002420000024400000246000002480002E +:1042C0000024A0000024C0000024E000002500001D +:1042D000002520000025400000256000002580000A +:1042E0000025A0000025C0000025E00000260000F9 +:1042F00000262000002640000026600000268000E6 +:104300000026A0000026C0000026E00000270000D4 +:1043100000272000002740000027600000278000C1 +:104320000027A0000027C0000027E00000280000B0 +:10433000002820000028400000286000002880009D +:104340000028A0000028C0000028E000002900008C +:104350000029200000294000002960000029800079 +:104360000029A0000029C0000029E000002A000068 +:10437000002A2000002A4000002A6000002A800055 +:10438000002AA000002AC000002AE000002B000044 +:10439000002B2000002B4000002B6000002B800031 +:1043A000002BA000002BC000002BE000002C000020 +:1043B000002C2000002C4000002C6000002C80000D +:1043C000002CA000002CC000002CE000002D0000FC +:1043D000002D2000002D4000002D6000002D8000E9 +:1043E000002DA000002DC000002DE000002E0000D8 +:1043F000002E2000002E4000002E6000002E8000C5 +:10440000002EA000002EC000002EE000002F0000B3 +:10441000002F2000002F4000002F6000002F8000A0 +:10442000002FA000002FC000002FE000003000008F +:10443000003020000030400000306000003080007C +:104440000030A0000030C0000030E000003100006B +:104450000031200000314000003160000031800058 +:104460000031A0000031C0000031E0000032000047 +:104470000032200000324000003260000032800034 +:104480000032A0000032C0000032E0000033000023 +:104490000033200000334000003360000033800010 +:1044A0000033A0000033C0000033E00000340000FF +:1044B00000342000003440000034600000348000EC +:1044C0000034A0000034C0000034E00000350000DB +:1044D00000352000003540000035600000358000C8 +:1044E0000035A0000035C0000035E00000360000B7 +:1044F00000362000003640000036600000368000A4 +:104500000036A0000036C0000036E0000037000092 +:10451000003720000037400000376000003780007F +:104520000037A0000037C0000037E000003800006E +:10453000003820000038400000386000003880005B +:104540000038A0000038C0000038E000003900004A +:104550000039200000394000003960000039800037 +:104560000039A0000039C0000039E000003A000026 +:10457000003A2000003A4000003A6000003A800013 +:10458000003AA000003AC000003AE000003B000002 +:10459000003B2000003B4000003B6000003B8000EF +:1045A000003BA000003BC000003BE000003C0000DE +:1045B000003C2000003C4000003C6000003C8000CB +:1045C000003CA000003CC000003CE000003D0000BA +:1045D000003D2000003D4000003D6000003D8000A7 +:1045E000003DA000003DC000003DE000003E000096 +:1045F000003E2000003E4000003E6000003E800083 +:10460000003EA000003EC000003EE000003F000071 +:10461000003F2000003F4000003F6000003F80005E +:10462000003FA000003FC000003FE000004000004D +:10463000004020000040400000406000004080003A +:104640000040A0000040C0000040E0000041000029 +:104650000041200000414000004160000041800016 +:104660000041A0000041C0000041E0000042000005 +:1046700000422000004240000042600000428000F2 +:104680000042A0000042C0000042E00000430000E1 +:1046900000432000004340000043600000438000CE +:1046A0000043A0000043C0000043E00000440000BD +:1046B00000442000004440000044600000448000AA +:1046C0000044A0000044C0000044E0000045000099 +:1046D0000045200000454000004560000045800086 +:1046E0000045A0000045C0000045E0000046000075 +:1046F0000046200000464000004660000046800062 +:104700000046A0000046C0000046E0000047000050 +:10471000004720000047400000476000004780003D +:104720000047A0000047C0000047E000004800002C +:104730000048200000484000004860000048800019 +:104740000048A0000048C0000048E0000049000008 +:1047500000492000004940000049600000498000F5 +:104760000049A0000049C0000049E000004A0000E4 +:10477000004A2000004A4000004A6000004A8000D1 +:10478000004AA000004AC000004AE000004B0000C0 +:10479000004B2000004B4000004B6000004B8000AD +:1047A000004BA000004BC000004BE000004C00009C +:1047B000004C2000004C4000004C6000004C800089 +:1047C000004CA000004CC000004CE000004D000078 +:1047D000004D2000004D4000004D6000004D800065 +:1047E000004DA000004DC000004DE000004E000054 +:1047F000004E2000004E4000004E6000004E800041 +:10480000004EA000004EC000004EE000004F00002F +:10481000004F2000004F4000004F6000004F80001C +:10482000004FA000004FC000004FE000005000000B +:1048300000502000005040000050600000508000F8 +:104840000050A0000050C0000050E00000510000E7 +:1048500000512000005140000051600000518000D4 +:104860000051A0000051C0000051E00000520000C3 +:1048700000522000005240000052600000528000B0 +:104880000052A0000052C0000052E000005300009F +:10489000005320000053400000536000005380008C +:1048A0000053A0000053C0000053E000005400007B +:1048B0000054200000544000005460000054800068 +:1048C0000054A0000054C0000054E0000055000057 +:1048D0000055200000554000005560000055800044 +:1048E0000055A0000055C0000055E0000056000033 +:1048F0000056200000564000005660000056800020 +:104900000056A0000056C0000056E000005700000E +:1049100000572000005740000057600000578000FB +:104920000057A0000057C0000057E00000580000EA +:1049300000582000005840000058600000588000D7 +:104940000058A0000058C0000058E00000590000C6 +:1049500000592000005940000059600000598000B3 +:104960000059A0000059C0000059E000005A0000A2 +:10497000005A2000005A4000005A6000005A80008F +:10498000005AA000005AC000005AE000005B00007E +:10499000005B2000005B4000005B6000005B80006B +:1049A000005BA000005BC000005BE000005C00005A +:1049B000005C2000005C4000005C6000005C800047 +:1049C000005CA000005CC000005CE000005D000036 +:1049D000005D2000005D4000005D6000005D800023 +:1049E000005DA000005DC000005DE000005E000012 +:1049F000005E2000005E4000005E6000005E8000FF +:104A0000005EA000005EC000005EE000005F0000ED +:104A1000005F2000005F4000005F6000005F8000DA +:104A2000005FA000005FC000005FE00000600000C9 +:104A300000602000006040000060600000608000B6 +:104A40000060A0000060C0000060E00000610000A5 +:104A50000061200000614000006160000061800092 +:104A60000061A0000061C0000061E0000062000081 +:104A7000006220000062400000626000006280006E +:104A80000062A0000062C0000062E000006300005D +:104A9000006320000063400000636000006380004A +:104AA0000063A0000063C0000063E0000064000039 +:104AB0000064200000644000006460000064800026 +:104AC0000064A0000064C0000064E0000065000015 +:104AD0000065200000654000006560000065800002 +:104AE0000065A0000065C0000065E00000660000F1 +:104AF00000662000006640000066600000668000DE +:104B00000066A0000066C0000066E00000670000CC +:104B100000672000006740000067600000678000B9 +:104B20000067A0000067C0000067E00000680000A8 +:104B30000068200000684000006860000068800095 +:104B40000068A0000068C0000068E0000069000084 +:104B50000069200000694000006960000069800071 +:104B60000069A0000069C0000069E000006A000060 +:104B7000006A2000006A4000006A6000006A80004D +:104B8000006AA000006AC000006AE000006B00003C +:104B9000006B2000006B4000006B6000006B800029 +:104BA000006BA000006BC000006BE000006C000018 +:104BB000006C2000006C4000006C6000006C800005 +:104BC000006CA000006CC000006CE000006D0000F4 +:104BD000006D2000006D4000006D6000006D8000E1 +:104BE000006DA000006DC000006DE000006E0000D0 +:104BF000006E2000006E4000006E6000006E8000BD +:104C0000006EA000006EC000006EE000006F0000AB +:104C1000006F2000006F4000006F6000006F800098 +:104C2000006FA000006FC000006FE0000070000087 +:104C30000070200000704000007060000070800074 +:104C40000070A0000070C0000070E0000071000063 +:104C50000071200000714000007160000071800050 +:104C60000071A0000071C0000071E000007200003F +:104C7000007220000072400000726000007280002C +:104C80000072A0000072C0000072E000007300001B +:104C90000073200000734000007360000073800008 +:104CA0000073A0000073C0000073E00000740000F7 +:104CB00000742000007440000074600000748000E4 +:104CC0000074A0000074C0000074E00000750000D3 +:104CD00000752000007540000075600000758000C0 +:104CE0000075A0000075C0000075E00000760000AF +:104CF000007620000076400000766000007680009C +:104D00000076A0000076C0000076E000007700008A +:104D10000077200000774000007760000077800077 +:104D20000077A0000077C0000077E0000078000066 +:104D30000078200000784000007860000078800053 +:104D40000078A0000078C0000078E0000079000042 +:104D5000007920000079400000796000007980002F +:104D60000079A0000079C0000079E000007A00001E +:104D7000007A2000007A4000007A6000007A80000B +:104D8000007AA000007AC000007AE000007B0000FA +:104D9000007B2000007B4000007B6000007B8000E7 +:104DA000007BA000007BC000007BE000007C0000D6 +:104DB000007C2000007C4000007C6000007C8000C3 +:104DC000007CA000007CC000007CE000007D0000B2 +:104DD000007D2000007D4000007D6000007D80009F +:104DE000007DA000007DC000007DE000007E00008E +:104DF000007E2000007E4000007E6000007E80007B +:104E0000007EA000007EC000007EE000007F000069 +:104E1000007F2000007F4000007F6000007F800056 +:104E2000007FA000007FC000007FE000007FE00165 +:104E300000000000000001FF000002000000000070 +:104E4000000003FF00000400000004010000040152 +:104E5000000002380000011C0000011C0000011CC1 +:104E60000000005000000050000000500000000151 +:104E700000000158000001A8000000C8000000A0C8 +:104E8000000000C800000000000000000000005A00 +:104E9000000000FA00000401000004010000000A04 +:104EA000000000320000040100000401000001586D +:104EB000000001A80000001800000068000000B811 +:104EC0000000010800000158000001A800000018BF +:104ED00000000068000000B80000010800000001A8 +:104EE0000000000200000000000000080215002081 +:104EF000021500200810000000000036000000002D +:104F00000000000400000004000000000000000099 +:104F10000000000100000004000000020000000288 +:104F2000000000010000000200000020000000401E +:104F300000000040000000030000001800002000F6 +:104F4000000040C000006180000082400000A3001B +:104F50000000C3C00000E4800001054000012600FD +:104F6000000146C000016780000188400001A900DF +:104F70000001C9C00001EA8000020B4000022C00C1 +:104F800000024CC000026D8000028E400002AF00A3 +:104F90000002CFC00002F0800000114000000001BC +:104FA00000000001000000010000000100000001FD +:104FB00000000001000000010000000100000001ED +:104FC00000000001000000010000000100000001DD +:104FD00000000001000000010003D0000000003DBF +:104FE00000000001000D0000000700D00002814019 +:104FF000000B81680002022000010240000F0250F5 +:1050000000010340000C0000000800C000028140C5 +:10501000000B8168000202200001024000070250DC +:10502000000202C0001000000008010000028180A0 +:10503000000B81A80002026000018280000E8298AD +:1050400000080380000F0000000100F00002810052 +:1050500000090128000201B8000101D8000E01E892 +:10506000000002C8FFFFFFF301AFFFFF00000000D8 +:105070000000000000000000000000000000000030 +:1050800000000000FFFFFFF100EFFFFF0000000045 +:10509000000000000000000000000000000100000F +:1050A00000000000FFFFFFF6005FFFFF00000000B0 +:1050B00000000000000000000000000000020000EE +:1050C00000000000FFFFF4061CBFFFFF000000050A +:1050D00000000000000000140000000000040000B8 +:1050E00000000000FFFFFFF2004FFFFF0000000084 +:1050F00000000000000000000000000000080000A8 +:1051000000000000FFFFFFFA002FFFFF000000007B +:10511000000000000000000000000000001000007F +:1051200000000000FFFFFFF701EFFFFF000000009D +:10513000000000000000000000000000002000004F +:1051400000000000FFFFFFF5002FFFFF0000000040 +:10515000000000000000000000000000004000000F +:1051600000000000FFFFFFF3018FFFFF00000000C1 +:10517000000000000000000000000000000000002F +:1051800000000000FFFFFFF1010FFFFF0000000023 +:10519000000000000000000000000000000100000E +:1051A00000000000FFFFFFF6005FFFFF00000000AF +:1051B00000000000000000000000000000020000ED +:1051C00000000000FFFFF4061CBFFFFF0000000509 +:1051D00000000000000000140000000000040000B7 +:1051E00000000000FFFFFFF2004FFFFF0000000083 +:1051F00000000000000000000000000000080000A7 +:1052000000000000FFFFFFFA002FFFFF000000007A +:10521000000000000000000000000000001000007E +:1052200000000000FFFFFFF700EFFFFF000000009D +:10523000000000000000000000000000002000004E +:1052400000000000FFFFFFF5004FFFFF000000001F +:10525000000000000000000000000000004000000E +:1052600000000000FFFFFFFF00CFFFFF0000000075 +:1052700000000000000000CC000000000000000062 +:1052800000000000FFFFFFFF00CFFFFF0000000055 +:1052900000000000000000CC000000000001000041 +:1052A00000000000FFFFFFFF00CFFFFF0000000035 +:1052B00000000000000000CC000000000002000020 +:1052C00000000000FFFFFFFF00CFFFFF0000000015 +:1052D00000000000000000CC0000000000040000FE +:1052E00000000000FFFFFFFF00CFFFFF00000000F5 +:1052F00000000000000000CC0000000000080000DA +:1053000000000000FFFFFFFF00CFFFFF00000000D4 +:1053100000000000000000CC0000000000100000B1 +:1053200000000000FFFFFFFF00CFFFFF00000000B4 +:1053300000000000000000CC000000000020000081 +:1053400000000000FFFFFFFF00CFFFFF0000000094 +:1053500000000000000000CC000000000040000041 +:1053600000000000FFFFFFF3020FFFFF000000003E +:10537000000000000000000000000000000000002D +:1053800000000000FFFFFFF1010FFFFF0000000021 +:10539000000000000000000000000000000100000C +:1053A00000000000FFFFFFF6005FFFFF00000000AD +:1053B00000000000000000000000000000020000EB +:1053C00000000000FFFFF4061CBFFFFF0000000507 +:1053D00000000000000000140000000000040000B5 +:1053E00000000000FFFFFFF2004FFFFF0000000081 +:1053F00000000000000000000000000000080000A5 +:1054000000000000FFFFFF8A042FFFFF00000000E4 +:10541000000000000000000000000000001000007C +:1054200000000000FFFFFF9705CFFFFF0000000016 +:10543000000000000000000000000000002000004C +:1054400000000000FFFFFFF5010FFFFF000000005C +:10545000000000000000000000000000004000000C +:1054600000000000FFFFFFF301EFFFFF000000005E +:10547000000000000000000000000000000000002C +:1054800000000000FFFFFFF1002FFFFF0000000001 +:10549000000000000000000000000000000100000B +:1054A00000000000FFFFFFF6005FFFFF00000000AC +:1054B00000000000000000000000000000020000EA +:1054C00000000000FFFFFF061CBFFFFF0000000000 +:1054D00000000000000000140000000000040000B4 +:1054E00000000000FFFFFFF2004FFFFF0000000080 +:1054F00000000000000000000000000000080000A4 +:1055000000000000FFFFFFFA002FFFFF0000000077 +:10551000000000000000000000000000001000007B +:1055200000000000FFFFFFF701CFFFFF00000000B9 +:10553000000000000000000000000000002000004B +:1055400000000000FFFFFFFF00CFFFFF0000000092 +:1055500000000000000000CC00000000004000003F +:1055600000000000FFFFFFFF00CFFFFF0000000072 +:1055700000000000000000CC00000000000000005F +:1055800000000000FFFFFFFF00CFFFFF0000000052 +:1055900000000000000000CC00000000000100003E +:1055A00000000000FFFFFFFF00CFFFFF0000000032 +:1055B00000000000000000CC00000000000200001D +:1055C00000000000FFFFFFFF00CFFFFF0000000012 +:1055D00000000000000000CC0000000000040000FB +:1055E00000000000FFFFFFFF00CFFFFF00000000F2 +:1055F00000000000000000CC0000000000080000D7 +:1056000000000000FFFFFFFF00CFFFFF00000000D1 +:1056100000000000000000CC0000000000100000AE +:1056200000000000FFFFFFFF00CFFFFF00000000B1 +:1056300000000000000000CC00000000002000007E +:1056400000000000FFFFFFFF00CFFFFF0000000091 +:1056500000000000000000CC00000000004000003E +:1056600000000000FFFFFFFF00CFFFFF0000000071 +:1056700000000000000000CC00000000000000005E +:1056800000000000FFFFFFFF00CFFFFF0000000051 +:1056900000000000000000CC00000000000100003D +:1056A00000000000FFFFFFFF00CFFFFF0000000031 +:1056B00000000000000000CC00000000000200001C +:1056C00000000000FFFFFFFF00CFFFFF0000000011 +:1056D00000000000000000CC0000000000040000FA +:1056E00000000000FFFFFFFF00CFFFFF00000000F1 +:1056F00000000000000000CC0000000000080000D6 +:1057000000000000FFFFFFFF00CFFFFF00000000D0 +:1057100000000000000000CC0000000000100000AD +:1057200000000000FFFFFFFF00CFFFFF00000000B0 +:1057300000000000000000CC00000000002000007D +:1057400000000000FFFFFFFF00CFFFFF0000000090 +:1057500000000000000000CC00000000004000003D +:1057600000000000FFFFFFFF00CFFFFF0000000070 +:1057700000000000000000CC00000000000000005D +:1057800000000000FFFFFFFF00CFFFFF0000000050 +:1057900000000000000000CC00000000000100003C +:1057A00000000000FFFFFFFF00CFFFFF0000000030 +:1057B00000000000000000CC00000000000200001B +:1057C00000000000FFFFFFFF00CFFFFF0000000010 +:1057D00000000000000000CC0000000000040000F9 +:1057E00000000000FFFFFFFF00CFFFFF00000000F0 +:1057F00000000000000000CC0000000000080000D5 +:1058000000000000FFFFFFFF00CFFFFF00000000CF +:1058100000000000000000CC0000000000100000AC +:1058200000000000FFFFFFFF00CFFFFF00000000AF +:1058300000000000000000CC00000000002000007C +:1058400000000000FFFFFFFF00CFFFFF000000008F +:1058500000000000000000CC00000000004000003C +:1058600000000000000000320000003200000200D2 +:1058700000003DFF000002110000020000000204D1 +:105880000000FFFF0000FFFF0000FFFF0000FFFF20 +:105890000000000000000037000000210000002090 +:1058A00000000001000000010000000107FFFFFFF1 +:1058B0000000007F07FFFFFF0000003F0000FFFF28 +:1058C0000000FFFF0000FFFF0000FFFF00007FF867 +:1058D00000007FF800000000000028AD000029183B +:1058E000000029190000000500000007000000006A +:1058F000000000000000FF00000000000000FF00AA +:10590000000000000000FF00000000000000FF0099 +:10591000000000000000FF00000000000000FF0089 +:10592000000000000000FF00000000000000FF0079 +:10593000000000000000FF00000000000000FF0069 +:10594000000000000000FF00000000000000FF0059 +:10595000000000000000FF00000000000000FF0049 +:10596000000000000000FF00000000000000FF0039 +:10597000000000000000FF00000000000000FF0029 +:10598000000000000000FF00000000000000FF0019 +:10599000000000000000FF00000000000000FF0009 +:1059A000000000000000FF00000000000000FF00F9 +:1059B000000000000000FF00000000000000FF00E9 +:1059C000000000000000FF00000000000000FF00D9 +:1059D000000000000000FF00000000000000FF00C9 +:1059E000000000000000FF00000000000000FF00B9 +:1059F000000000000000FF00000000000000FF00A9 +:105A0000000000000000FF00000000000000FF0098 +:105A1000000000000000FF00000000000000FF0088 +:105A2000000000000000FF00000000000000FF0078 +:105A3000000000000000FF00000000000000FF0068 +:105A4000000000000000FF00000000000000FF0058 +:105A5000000000000000FF00000000000000FF0048 +:105A6000000000000000FF00000000000000FF0038 +:105A7000000000000000FF00000000000000FF0028 +:105A8000000000000000FF00000000000000FF0018 +:105A9000000000000000FF00000000000000FF0008 +:105AA000000000000000FF00000000000000FF00F8 +:105AB000000000000000FF00000000000000FF00E8 +:105AC000000000000000FF00000000000000FF00D8 +:105AD000000000000000FF00000000000000FF00C8 +:105AE000000000000000FF00000000000000FF00B8 +:105AF000000000000000FF00000000000000FF00A8 +:105B0000000000000000FF00000000000000FF0097 +:105B1000000000000000FF00000000000000FF0087 +:105B2000000000000000FF00000000000000FF0077 +:105B3000000000000000FF1C0FFFFFFF0000FF1C23 +:105B40000FFFFFFF0000FF1C0FFFFFFF0000FF1C07 +:105B50000FFFFFFF0000FF1C0FFFFFFF0000FF1CF7 +:105B60000FFFFFFF0000FF1C0FFFFFFF0000FF1CE7 +:105B70000FFFFFFF0000FF1C0FFFFFFF0000FF1CD7 +:105B80000FFFFFFF0000FF1C0FFFFFFF0000FF1CC7 +:105B90000FFFFFFF0000FF1C0FFFFFFF0000FF1CB7 +:105BA0000FFFFFFF0000FF1C0FFFFFFF0000FF1CA7 +:105BB0000FFFFFFF0000FF1C0FFFFFFF0000FF1C97 +:105BC0000FFFFFFF0000FF1C0FFFFFFF0000FF1C87 +:105BD0000FFFFFFF0000FF1C0FFFFFFF0000FF1C77 +:105BE0000FFFFFFF0000FF1C0FFFFFFF0000FF1C67 +:105BF0000FFFFFFF0000FF1C0FFFFFFF0000FF1C57 +:105C00000FFFFFFF0000FF1C0FFFFFFF0000FF1C46 +:105C10000FFFFFFF0000FF1C0FFFFFFF0000FF1C36 +:105C20000FFFFFFF0000FF1C0FFFFFFF0000FF1C26 +:105C30000FFFFFFF0000FF1C0FFFFFFF0000FF1C16 +:105C40000FFFFFFF0000FF1C0FFFFFFF0000FF1C06 +:105C50000FFFFFFF0000FF1C0FFFFFFF0000FF1CF6 +:105C60000FFFFFFF0000FF1C0FFFFFFF0000FF1CE6 +:105C70000FFFFFFF0000FF1C0FFFFFFF0000FF1CD6 +:105C80000FFFFFFF0000FF1C0FFFFFFF0000FF1CC6 +:105C90000FFFFFFF0000FF1C0FFFFFFF0000FF1CB6 +:105CA0000FFFFFFF0000FF1C0FFFFFFF0000FF1CA6 +:105CB0000FFFFFFF0000FF1C0FFFFFFF0000FF1C96 +:105CC0000FFFFFFF0000FF1C0FFFFFFF0000FF1C86 +:105CD0000FFFFFFF0000FF1C0FFFFFFF0000FF1C76 +:105CE0000FFFFFFF0000FF1C0FFFFFFF0000FF1C66 +:105CF0000FFFFFFF0000FF1C0FFFFFFF0000FF1C56 +:105D00000FFFFFFF0000FF1C0FFFFFFF0000FF1C45 +:105D10000FFFFFFF0000FF1C0FFFFFFF0000FF1C35 +:105D20000FFFFFFF0000FF1C0FFFFFFF0000FF1C25 +:105D30000FFFFFFF0000FF1C0FFFFFFF0000FF1C15 +:105D40000FFFFFFF0000FF1C0FFFFFFF0000FF1C05 +:105D50000FFFFFFF0000FF1C0FFFFFFF0000FF1CF5 +:105D60000FFFFFFF0000FF1C0FFFFFFF0000FF1CE5 +:105D70000FFFFFFF0000FF1C0FFFFFFF0000FF1CD5 +:105D80000FFFFFFF0000FF1C0FFFFFFF0000FF1CC5 +:105D90000FFFFFFF0000FF1C0FFFFFFF0000FF1CB5 +:105DA0000FFFFFFF0000FF1C0FFFFFFF0000FF1CA5 +:105DB0000FFFFFFF0000FF1C0FFFFFFF0000FF1C95 +:105DC0000FFFFFFF0000FF1C0FFFFFFF0000FF1C85 +:105DD0000FFFFFFF0000FF1C0FFFFFFF0000FF1C75 +:105DE0000FFFFFFF0000FF1C0FFFFFFF0000FF1C65 +:105DF0000FFFFFFF0000FF1C0FFFFFFF0000FF1C55 +:105E00000FFFFFFF0000FF1C0FFFFFFF0000FF1C44 +:105E10000FFFFFFF0000FF1C0FFFFFFF0000FF1C34 +:105E20000FFFFFFF0000FF1C0FFFFFFF0000FF1C24 +:105E30000FFFFFFF0000FF1C0FFFFFFF0000FF1C14 +:105E40000FFFFFFF0000FF1C0FFFFFFF0000FF1C04 +:105E50000FFFFFFF0000FF1C0FFFFFFF0000FF1CF4 +:105E60000FFFFFFF0000FF1C0FFFFFFF0000FF1CE4 +:105E70000FFFFFFF0000FF1C0FFFFFFF0000FF1CD4 +:105E80000FFFFFFF0000FF1C0FFFFFFF0000FF1CC4 +:105E90000FFFFFFF0000FF1C0FFFFFFF0000FF1CB4 +:105EA0000FFFFFFF0000FF1C0FFFFFFF0000FF1CA4 +:105EB0000FFFFFFF0000FF1C0FFFFFFF0000FF1C94 +:105EC0000FFFFFFF0000FF1C0FFFFFFF0000FF1C84 +:105ED0000FFFFFFF0000FF1C0FFFFFFF0000FF1C74 +:105EE0000FFFFFFF0000FF1C0FFFFFFF0000FF1C64 +:105EF0000FFFFFFF0000FF1C0FFFFFFF0000FF1C54 +:105F00000FFFFFFF0000FF1C0FFFFFFF0000FF1C43 +:105F10000FFFFFFF0000FF1C0FFFFFFF0000FF1C33 +:105F20000FFFFFFF0000FF1C0FFFFFFF0000FF1C23 +:105F30000FFFFFFF0000FF1C0FFFFFFF0000FF1C13 +:105F40000FFFFFFF0000FF1C0FFFFFFF0000FF1C03 +:105F50000FFFFFFF0000FF1C0FFFFFFF0000FF1CF3 +:105F60000FFFFFFF0000FF1C0FFFFFFF0000FF1CE3 +:105F70000FFFFFFF0000FF1C0FFFFFFF0000FF1CD3 +:105F80000FFFFFFF0000FF1C0FFFFFFF0000FF1CC3 +:105F90000FFFFFFF0000FF1C0FFFFFFF0000FF1CB3 +:105FA0000FFFFFFF0000FF1C0FFFFFFF0000FF1CA3 +:105FB0000FFFFFFF0000FF1C0FFFFFFF0000FF1C93 +:105FC0000FFFFFFF0000FF1C0FFFFFFF0000FF1C83 +:105FD0000FFFFFFF0000FF1C0FFFFFFF0000FF1C73 +:105FE0000FFFFFFF0000FF1C0FFFFFFF0000FF1C63 +:105FF0000FFFFFFF0000FF1C0FFFFFFF0000FF1C53 +:106000000FFFFFFF0000FF1C0FFFFFFF0000FF1C42 +:106010000FFFFFFF0000FF1C0FFFFFFF0000FF1C32 +:106020000FFFFFFF0000FF1C0FFFFFFF0000FF1C22 +:106030000FFFFFFF0000FF1C0FFFFFFF0000FF1C12 +:106040000FFFFFFF0000FF1C0FFFFFFF0000FF1C02 +:106050000FFFFFFF0000FF1C0FFFFFFF0000FF1CF2 +:106060000FFFFFFF0000FF1C0FFFFFFF0000FF1CE2 +:106070000FFFFFFF0000FF1C0FFFFFFF0000FF1CD2 +:106080000FFFFFFF0000FF1C0FFFFFFF0000FF1CC2 +:106090000FFFFFFF0000FF1C0FFFFFFF0000FF1CB2 +:1060A0000FFFFFFF0000FF1C0FFFFFFF0000FF1CA2 +:1060B0000FFFFFFF0000FF1C0FFFFFFF0000FF1C92 +:1060C0000FFFFFFF0000FF1C0FFFFFFF0000FF1C82 +:1060D0000FFFFFFF0000FF1C0FFFFFFF0000FF1C72 +:1060E0000FFFFFFF0000FF1C0FFFFFFF0000FF1C62 +:1060F0000FFFFFFF0000FF1C0FFFFFFF0000FF1C52 +:106100000FFFFFFF0000FF1C0FFFFFFF0000FF1C41 +:106110000FFFFFFF0000FF1C0FFFFFFF0000FF1C31 +:106120000FFFFFFF0000FF1C0FFFFFFF0000FF1C21 +:106130000FFFFFFF0000FF1C0FFFFFFF0000FF1C11 +:106140000FFFFFFF0000FF1C0FFFFFFF0000FF1C01 +:106150000FFFFFFF0000FF1C0FFFFFFF0000FF1CF1 +:106160000FFFFFFF0000FF1C0FFFFFFF0000FF1CE1 +:106170000FFFFFFF0000FF1C0FFFFFFF0000FF1CD1 +:106180000FFFFFFF0000FF1C0FFFFFFF0000FF1CC1 +:106190000FFFFFFF0000FF1C0FFFFFFF0000FF1CB1 +:1061A0000FFFFFFF0000FF1C0FFFFFFF0000FF1CA1 +:1061B0000FFFFFFF0000FF1C0FFFFFFF0000FF1C91 +:1061C0000FFFFFFF0000FF1C0FFFFFFF0000FF1C81 +:1061D0000FFFFFFF0000FF1C0FFFFFFF0000FF1C71 +:1061E0000FFFFFFF0000FF1C0FFFFFFF0000FF1C61 +:1061F0000FFFFFFF0000FF1C0FFFFFFF0000FF1C51 +:106200000FFFFFFF0000FF1C0FFFFFFF0000FF1C40 +:106210000FFFFFFF0000FF1C0FFFFFFF0000FF1C30 +:106220000FFFFFFF0000FF1C0FFFFFFF0000FF1C20 +:106230000FFFFFFF0000FF1C0FFFFFFF0000FF1C10 +:106240000FFFFFFF0000FF1C0FFFFFFF0000FF1C00 +:106250000FFFFFFF0000FF1C0FFFFFFF0000FF1CF0 +:106260000FFFFFFF0000FF1C0FFFFFFF0000FF1CE0 +:106270000FFFFFFF0000FF1C0FFFFFFF0000FF1CD0 +:106280000FFFFFFF0000FF1C0FFFFFFF0000FF1CC0 +:106290000FFFFFFF0000FF1C0FFFFFFF0000FF1CB0 +:1062A0000FFFFFFF0000FF1C0FFFFFFF0000FF1CA0 +:1062B0000FFFFFFF0000FF1C0FFFFFFF0000FF1C90 +:1062C0000FFFFFFF0000FF1C0FFFFFFF0000FF1C80 +:1062D0000FFFFFFF0000FF1C0FFFFFFF0000FF1C70 +:1062E0000FFFFFFF0000FF1C0FFFFFFF0000FF1C60 +:1062F0000FFFFFFF0000FF1C0FFFFFFF0000FF1C50 +:106300000FFFFFFF0000FF1C0FFFFFFF0000FF1C3F +:106310000FFFFFFF0000FF1C0FFFFFFF0000FF1C2F +:106320000FFFFFFF0000FF1C0FFFFFFF0000FF1C1F +:106330000FFFFFFF0000FF1C0FFFFFFF0000FF1C0F +:106340000FFFFFFF0000FF1C0FFFFFFF0000FF1CFF +:106350000FFFFFFF0000FF1C0FFFFFFF0000FF1CEF +:106360000FFFFFFF0000FF1C0FFFFFFF0000FF1CDF +:106370000FFFFFFF0000FF1C0FFFFFFF0000FF1CCF +:106380000FFFFFFF0000FF1C0FFFFFFF0000FF1CBF +:106390000FFFFFFF0000FF1C0FFFFFFF0000FF1CAF +:1063A0000FFFFFFF0000FF1C0FFFFFFF0000FF1C9F +:1063B0000FFFFFFF000000020000150000000001B9 +:1063C00000000002000000030000000000000004C4 +:1063D00000000001000000000000000100000004B7 +:1063E00000000000000000010000000300000000A9 +:1063F0000000000100000004000000000000000197 +:106400000000000300000000000000010000000484 +:106410000000000000000004000000030000000075 +:106420000000000000007FFF000003FF00000000EC +:106430000000000100000001000000010000000059 +:10644000000000020000009000000090008000901A +:1064500008100000000009FF0000076C0000008A1F +:106460000000008000000081000000800000008A21 +:106470000000008000000081000000800000008A11 +:106480000000008000000081000000800000008A01 +:106490000000008000000081000000800000008AF1 +:1064A000000000800000008100000080000000016A +:1064B00000000001000000010000000100000001D8 +:1064C00000000001000025E4000025E400004BC8A6 +:1064D00000004BC8000000180000111A00543210D0 +:1064E000000000000021054300000000000025E43A +:1064F000000025E400004BC800004BC80000001855 +:106500000000111A00543210000000000021054361 +:106510000000000000000001000000010000000178 +:106520000000000000000000000000010000000268 +:10653000000000000000000600000003000000044E +:106540000000000500000001000000010000000143 +:106550000000000100000001000000010000000137 +:106560000000000100000001000000010000000127 +:106570000000000100000001000000010000000117 +:1065800000000001000000030000600000000003A4 +:106590000000600000000003000040000000030055 +:1065A00000000300000003000000030000000300DF +:1065B00000000300000003000003F00800000000DA +:1065C00000000000000000000000000100000001C9 +:1065D00000000001000000010000000100000001B7 +:1065E00000000001000000010000000100000001A7 +:1065F0000000000100000001000000010000000197 +:106600000000000100000001000000010000000186 +:106610000000000100000001000000010000000176 +:106620000000000100000001000000010000000166 +:106630000000000100000001000000010000000156 +:1066400000000001000000FF000000FF000000FF4C +:10665000000000FF0000007F000000FF000000FFBE +:10666000000000FF0000003E000000000000003FAE +:106670000000003F0000003F0000003F0000003F1E +:106680000000003F0000003F0000000F000000007D +:106690001217000022170000321700001215000028 +:1066A000221500003215000002100000001000004A +:1066B00010100000201000003010000040100000FA +:1066C00000000000000000000000000000100000BA +:1066D00012140000221400003214000042140000C2 +:1066E000000000000000000000000000000089061B +:1066F0000000892600000036000000360810000067 +:1067000008100000FFFFFFFFFFFFFFFFFFFFFFFF7D +:10671000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF89 +:10672000FFFFFFFFF000C000FFFFFFFFFFFFFFFFC5 +:10673000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF69 +:10674000FFFFFFFFF800C000FFFFFFFFFFFFFFFF9D +:10675000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF49 +:10676000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF39 +:10677000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF29 +:10678000FFFFFFFF00003C100000000800000008B1 +:1067900000000002000000040000000500000004EA +:1067A0000000004000001808000008030000080373 +:1067B0000000004000000003000008030000080380 +:1067C00000000803000100030000080300000803A4 +:1067D00000000003000000030000000300000003AD +:1067E000000000030000000300000003000000039D +:1067F000000000030000000300000003000000038D +:106800000000000300000003000000030000240358 +:106810000000002F000000090000001900000184A2 +:1068200000000183000003060000001900000006BC +:1068300000000306000003060000030600000C86AB +:10684000000003060000030600000006000000062A +:106850000000000600000006000000060000000620 +:106860000000000600000006000000060000000610 +:106870000000000600000006000000060000000600 +:1068800000000006000003060000001300000006E0 +:106890000000100400001004001064400010644068 +:1068A000000000400000001900000001000000008E +:1068B00000000000000000000000000000002000B8 +:1068C00000000000000000000000000000000000C8 +:1068D0000400200000000000000000000000000094 +:1068E0000000000041002000000000000000000047 +:1068F0000000000000000000000020000000007CFC +:106900000000003D0000003F0000009C0000000C63 +:10691000000000050000000A000000050000005310 +:10692000000025E3000000540000005400000004B3 +:106930000000000400000004000000040000000447 +:10694000000000040000000400000004000000003B +:106950000000000100000002000000000000000133 +:1069600000000002000000090000000B0000000A07 +:106970000000000000000001000000020000000014 +:106980000000000100000002000000090000000BF0 +:106990000000000A000000090000000B0000000ACF +:1069A000000000090000000B0000000A00000000C9 +:1069B00000000800000002000000040000000000C9 +:1069C000000000001FFF1FFF1FFF1FFF1FFF1FFF13 +:1069D0001FFF1FFF000025E40000800020002000B2 +:1069E00020002000800080008000800040004000E7 +:1069F000400040000000000000000002000001789C +:106A00000000017800000000000000000000017894 +:106A10000000000000000000000000000000000175 +:106A20000000000200000000000000000000000064 +:106A3000000000040000000000000001000000024F +:106A40000000000000000000000000000000000442 +:106A50000000000000000001000000020000000033 +:106A60000000000100000002000000000000000122 +:106A70000000000200000000000000000000000014 +:106A800000000004000000000000000100000002FF +:106A900000000000000000010000000200000000F3 +:106AA00000000001000000020000000000000000E3 +:106AB0000000000000000004000000130E490E4911 +:106AC0000E490E4900920092009200920124012486 +:106AD000012401240000000000000000100010004C +:106AE000100010002001012001011001010101012D +:106AF00020010120010110012001012001011001EC +:106B00000101010120010120010110010101010128 +:106B100000000004000000060200410402004104DD +:106B2000020041040200410400000204000002CE01 +:106B3000000002CE0000000000000000000002CCB7 +:106B40000000000000000000000000000000000144 +:106B50000000000200000000000000000000000033 +:106B6000000000040000000000000001000000021E +:106B70000000000000000000000000000000000411 +:106B8000000000130E490E49000000000000000044 +:106B90001000100010001000200101200101100160 +:106BA000010101012001012001011001200101204A +:106BB0000101100101010101200101200101100169 +:106BC0000101010102004104020041040000000231 +:106BD00000000000000000020000000000000002B1 +:106BE00000000000000000000000000000000002A3 +:106BF0000000000000000002000000000000000291 +:106C00000000000000000000000000000000000480 +:106C100000000006020041040200410400000001DF +:106C20000000000100000001000000010000000160 +:106C30000000000100000001000000010000000150 +:106C40000000000100000001000000010000000140 +:106C50000000000100000001000000010000000130 +:106C6000000000030255555502555555000002CE4F +:106C7000000002CE000002CE000002CE000002CED4 +:106C8000000002CE000002CC0000005400000054BE +:106C9000000000540000005400000000000000014B +:106CA00000000002000000000000000600000003D9 +:106CB00000000004000000050000000000000001CA +:106CC00000000002000000000000000000000000C2 +:106CD00000000006000000000000000100000002AB +:106CE000000000000000000000000000000000069E +:106CF0000000000000000001000000020000000091 +:106D0000000000010000000200000000000000017F +:106D10000000000200000000000000000000000071 +:106D2000000000060000000000000001000000025A +:106D30000000000000000001000000020000000050 +:106D40000000000100000002000000000000000040 +:106D500000000000000000060E490E490E490E49D1 +:106D60000092009200920092012401240124012447 +:106D7000100010001000100020010120010110017E +:106D80000101010120010120010110012001012068 +:106D90000101100101010101200101200101100187 +:106DA00001010101000000040000000600000000D5 +:106DB00000000001000000020000000000000000D0 +:106DC00000000000000000060000000000000001BC +:106DD00000000002000000000000000000000000B1 +:106DE0000000000600000003000000040000000591 +:106DF0000000000300000004000000050000000384 +:106E00000000000400000005000000030000000373 +:106E10000000000300000006000000030000000462 +:106E20000000000500000003000000040000000551 +:106E30000000000300000004000000050000000343 +:106E40000000000300000003000000060E490E4988 +:106E500000000000009200920000000001240124C4 +:106E600000000000000000000E490E490000000074 +:106E70000092009200000000012401241000100084 +:106E80001000100020010120010110010101010189 +:106E90002001012001011001200101200101100148 +:106EA0000101010120010120010110010101010185 +:106EB00000000001000000030000000400000003C7 +:106EC00000000004000000050000000300000006B0 +:106ED00000000005000000040000000300000004A2 +:106EE000000000050000000300000006000000058F +:106EF0000000000400000003000000040000000087 +:106F0000000000010000000200000000000000017D +:106F10000000000200000005000000030000000661 +:106F20000000000500000004000000030000000451 +:106F3000000000000000000100000002000000004E +:106F40000000000100000002000000050000000336 +:106F50000000000600000005004800480048004806 +:106F6000009000900090009001200120012001205D +:106F700004020402040204020005000500050005E5 +:106F80001200120012001200080008000800080099 +:106F90000120012001011020010101200120012018 +:106FA0000101102001200120010110200101012018 +:106FB0000120012001011020010101200000000436 +:106FC000000000060000012300000123000001234F +:106FD0000000012300000123000001230000012321 +:106FE0000000012300000123000001230000012311 +:106FF0000000012300000123000001230000012301 +:1070000000000123000001230000012300000123F0 +:1070100000000123000000200000003200000007F3 +:107020000000000700000000000000080000000150 +:107030000000000000000000000000000215002019 +:10704000021500200000003008100000000000368B +:1070500000000030000000310000000400000005C6 +:107060000000000000000004000000010000000615 +:10707000000000010000000200000040000000408D +:107080000000001C000000200001000000020700BA +:1070900000030E000004150000051C00000623007C +:1070A00000072A000008310000093800000A3F00EC +:1070B000000B4600000C4D00000D5400000E5B005C +:1070C000000F6200001069000011700000127700CC +:1070D00000137E000014850000158C00001693003C +:1070E00000179A000018A1000019A800001AAF00AC +:1070F000001BB600001CBD00001DC400001ECB001C +:10710000001FD2000000D9000000001E0000001D7A +:10711000000100000002078000030F000004168039 +:1071200000051E000006258000072D0000083480A1 +:1071300000093C00000A4380000B4B00000C528009 +:10714000000D5A00000E6180000F69000010708071 +:107150000011780000127F800013870000148E80D9 +:107160000015960000169D800017A5000018AC8041 +:107170000019B400001ABB80001BC300001CCA80A9 +:107180000000D2000000000100000001000000012A +:1071900000000001000000010000000100000001EB +:1071A00000000001000000010000000100000001DB +:1071B00000000001000000010000000100000001CB +:1071C00000000001000000280000002C000000303A +:1071D0000000000100000001000000010000021199 +:1071E0000000020000000204000002190000FFFF7E +:1071F0000000FFFF0000FFFF0000FFFF0000002075 +:1072000000000021000000010000000107FFFFFF57 +:107210000000007F07FFFFFF0000003F0000FFFFAE +:107220000000FFFF0000FFFF0000FFFF00007FF8ED +:1072300000007FF800000000000000010000FF00D7 +:10724000000000000000FF00000000000000FF0040 +:10725000000000000000FF00000000000000FF0030 +:10726000000000000000FF00000000000000FF0020 +:10727000000000000000FF00000000000000FF0010 +:10728000000000000000FF00000000000000FF0000 +:10729000000000000000FF00000000000000FF00F0 +:1072A000000000000000FF00000000000000FF00E0 +:1072B000000000000000FF00000000000000FF00D0 +:1072C000000000000000FF00000000000000FF00C0 +:1072D000000000000000FF00000000000000FF00B0 +:1072E000000000000000FF00000000000000FF00A0 +:1072F000000000000000FF00000000000000FF0090 +:10730000000000000000FF00000000000000FF007F +:10731000000000000000FF00000000000000FF006F +:10732000000000000000FF00000000000000FF005F +:10733000000000000000FF00000000000000FF004F +:10734000000000000000FF00000000000000FF003F +:10735000000000000000FF00000000000000FF002F +:10736000000000000000FF00000000000000FF001F +:10737000000000000000FF00000000000000FF000F +:10738000000000000000FF00000000000000FF00FF +:10739000000000000000FF00000000000000FF00EF +:1073A000000000000000FF00000000000000FF00DF +:1073B000000000000000FF00000000000000FF00CF +:1073C000000000000000FF00000000000000FF00BF +:1073D000000000000000FF00000000000000FF00AF +:1073E000000000000000FF00000000000000FF009F +:1073F000000000000000FF00000000000000FF008F +:10740000000000000000FF00000000000000FF007E +:10741000000000000000FF00000000000000FF006E +:10742000000000000000FF00000000000000FF005E +:10743000000000000000FF00000000000000FF004E +:10744000000000000000FF00000000000000FF003E +:10745000000000000000FF00000000000000FF002E +:10746000000000000000FF00000000000000FF001E +:10747000000000000000FF000000000000201001DC +:107480000000000001009000000001000000000169 +:107490000000000000000000140AFF00000090023D +:1074A0000000000000000000000000000000900448 +:1074B0000000000000000000000000000000900636 +:1074C0000000000000000000000000000000900824 +:1074D0000000000000000000000000000000900A12 +:1074E0000000000000000000000000000000900C00 +:1074F0000000000000000000000000000000900EEE +:1075000000000000000000000000000000009010DB +:1075100000000000000000000000000000009012C9 +:1075200000000000000000000000000000009014B7 +:1075300000000000000000000000000000009016A5 +:107540000000000000000000000000000000901893 +:107550000000000000000000000000000000901A81 +:107560000000000000000000000000000000901C6F +:107570000000000000000000000000000000901E5D +:10758000000000000000000000000000000090204B +:107590000000000000000000000000000000902239 +:1075A0000000000000000000000000000000902427 +:1075B0000000000000000000000000000000902615 +:1075C0000000000000000000000000000000902803 +:1075D0000000000000000000000000000000902AF1 +:1075E0000000000000000000000000000000902CDF +:1075F0000000000000000000000000000000902ECD +:1076000000000000000000000000000000009030BA +:1076100000000000000000000000000000009032A8 +:107620000000000000000000000000000000903496 +:107630000000000000000000000000000000903684 +:107640000000000000000000000000000000903872 +:107650000000000000000000000000000000903A60 +:107660000000000000000000000000000000903C4E +:107670000000000000000000000000000000903E3C +:10768000000000000000000000000000000090402A +:107690000000000000000000000000000000904218 +:1076A0000000000000000000000000000000904406 +:1076B00000000000000000000000000000009046F4 +:1076C00000000000000000000000000000009048E2 +:1076D0000000000000000000000000000000904AD0 +:1076E0000000000000000000000000000000904CBE +:1076F0000000000000000000000000000000904EAC +:107700000000000000000000000000000000905099 +:107710000000000000000000000000000000905287 +:107720000000000000000000000000000000905475 +:107730000000000000000000000000000000905663 +:107740000000000000000000000000000000905851 +:107750000000000000000000000000000000905A3F +:107760000000000000000000000000000000905C2D +:107770000000000000000000000000000000905E1B +:107780000000000000000000000000000000906009 +:1077900000000000000000000000000000009062F7 +:1077A00000000000000000000000000000009064E5 +:1077B00000000000000000000000000000009066D3 +:1077C00000000000000000000000000000009068C1 +:1077D0000000000000000000000000000000906AAF +:1077E0000000000000000000000000000000906C9D +:1077F0000000000000000000000000000000906E8B +:107800000000000000000000000000000000907078 +:107810000000000000000000000000000000907266 +:107820000000000000000000000000000000907454 +:107830000000000000000000000000000000907642 +:107840000000000000000000000000000000907830 +:107850000000000000000000000000000000907A1E +:107860000000000000000000000000000000907C0C +:107870000000000000000000000000000000907EFA +:1078800000000000000000000000000000009080E8 +:1078900000000000000000000000000000009082D6 +:1078A00000000000000000000000000000009084C4 +:1078B00000000000000000000000000000009086B2 +:1078C00000000000000000000000000000009088A0 +:1078D0000000000000000000000000000000908A8E +:1078E0000000000000000000000000000000908C7C +:1078F0000000000000000000000000000000908E6A +:107900000000000000000000000000000000909057 +:107910000000000000000000000000000000909245 +:107920000000000000000000000000000000909433 +:107930000000000000000000000000000000909621 +:10794000000000000000000000000000000090980F +:107950000000000000000000000000000000909AFD +:107960000000000000000000000000000000909CEB +:107970000000000000000000000000000000909ED9 +:10798000000000000000000000000000000090A0C7 +:10799000000000000000000000000000000090A2B5 +:1079A000000000000000000000000000000090A4A3 +:1079B000000000000000000000000000000090A691 +:1079C000000000000000000000000000000090A87F +:1079D000000000000000000000000000000090AA6D +:1079E000000000000000000000000000000090AC5B +:1079F000000000000000000000000000000090AE49 +:107A0000000000000000000000000000000090B036 +:107A1000000000000000000000000000000090B224 +:107A2000000000000000000000000000000090B412 +:107A3000000000000000000000000000000090B600 +:107A4000000000000000000000000000000090B8EE +:107A5000000000000000000000000000000090BADC +:107A6000000000000000000000000000000090BCCA +:107A7000000000000000000000000000000090BEB8 +:107A8000000000000000000000000000000090C0A6 +:107A9000000000000000000000000000000090C294 +:107AA000000000000000000000000000000090C482 +:107AB000000000000000000000000000000090C670 +:107AC000000000000000000000000000000090C85E +:107AD000000000000000000000000000000090CA4C +:107AE000000000000000000000000000000090CC3A +:107AF000000000000000000000000000000090CE28 +:107B0000000000000000000000000000000090D015 +:107B1000000000000000000000000000000090D203 +:107B2000000000000000000000000000000090D4F1 +:107B3000000000000000000000000000000090D6DF +:107B4000000000000000000000000000000090D8CD +:107B5000000000000000000000000000000090DABB +:107B6000000000000000000000000000000090DCA9 +:107B7000000000000000000000000000000090DE97 +:107B8000000000000000000000000000000090E085 +:107B9000000000000000000000000000000090E273 +:107BA000000000000000000000000000000090E461 +:107BB000000000000000000000000000000090E64F +:107BC000000000000000000000000000000090E83D +:107BD000000000000000000000000000000090EA2B +:107BE000000000000000000000000000000090EC19 +:107BF000000000000000000000000000000090EE07 +:107C0000000000000000000000000000000090F0F4 +:107C1000000000000000000000000000000090F2E2 +:107C2000000000000000000000000000000090F4D0 +:107C3000000000000000000000000000000090F6BE +:107C4000000000000000000000000000000090F8AC +:107C5000000000000000000000000000000090FA9A +:107C6000000000000000000000000000000090FC88 +:107C7000000000000000000000000000000090FE76 +:107C80000000000000000000000000000000910063 +:107C90000000000000000000000000000000910251 +:107CA000000000000000000000000000000091043F +:107CB000000000000000000000000000000091062D +:107CC000000000000000000000000000000091081B +:107CD0000000000000000000000000000000910A09 +:107CE0000000000000000000000000000000910CF7 +:107CF0000000000000000000000000000000910EE5 +:107D000000000000000000000000000000009110D2 +:107D100000000000000000000000000000009112C0 +:107D200000000000000000000000000000009114AE +:107D3000000000000000000000000000000091169C +:107D4000000000000000000000000000000091188A +:107D50000000000000000000000000000000911A78 +:107D60000000000000000000000000000000911C66 +:107D70000000000000000000000000000000911E54 +:107D80000000000000000000000000000000912042 +:107D90000000000000000000000000000000912230 +:107DA000000000000000000000000000000091241E +:107DB000000000000000000000000000000091260C +:107DC00000000000000000000000000000009128FA +:107DD0000000000000000000000000000000912AE8 +:107DE0000000000000000000000000000000912CD6 +:107DF0000000000000000000000000000000912EC4 +:107E000000000000000000000000000000009130B1 +:107E1000000000000000000000000000000091329F +:107E2000000000000000000000000000000091348D +:107E3000000000000000000000000000000091367B +:107E40000000000000000000000000000000913869 +:107E50000000000000000000000000000000913A57 +:107E60000000000000000000000000000000913C45 +:107E70000000000000000000000000000000913E33 +:107E80000000000000000000000000000000914021 +:107E9000000000000000000000000000000091420F +:107EA00000000000000000000000000000009144FD +:107EB00000000000000000000000000000009146EB +:107EC00000000000000000000000000000009148D9 +:107ED0000000000000000000000000000000914AC7 +:107EE0000000000000000000000000000000914CB5 +:107EF0000000000000000000000000000000914EA3 +:107F00000000000000000000000000000000915090 +:107F1000000000000000000000000000000091527E +:107F2000000000000000000000000000000091546C +:107F3000000000000000000000000000000091565A +:107F40000000000000000000000000000000915848 +:107F50000000000000000000000000000000915A36 +:107F60000000000000000000000000000000915C24 +:107F70000000000000000000000000000000915E12 +:107F80000000000000000000000000000000916000 +:107F900000000000000000000000000000009162EE +:107FA00000000000000000000000000000009164DC +:107FB00000000000000000000000000000009166CA +:107FC00000000000000000000000000000009168B8 +:107FD0000000000000000000000000000000916AA6 +:107FE0000000000000000000000000000000916C94 +:107FF0000000000000000000000000000000916E82 +:10800000000000000000000000000000000091706F +:10801000000000000000000000000000000091725D +:10802000000000000000000000000000000091744B +:108030000000000000000000000000000000917639 +:108040000000000000000000000000000000917827 +:108050000000000000000000000000000000917A15 +:108060000000000000000000000000000000917C03 +:108070000000000000000000000000000000917EF1 +:1080800000000000000000000000000000009180DF +:1080900000000000000000000000000000009182CD +:1080A00000000000000000000000000000009184BB +:1080B00000000000000000000000000000009186A9 +:1080C0000000000000000000000000000000918897 +:1080D0000000000000000000000000000000918A85 +:1080E0000000000000000000000000000000918C73 +:1080F0000000000000000000000000000000918E61 +:10810000000000000000000000000000000091904E +:10811000000000000000000000000000000091923C +:10812000000000000000000000000000000091942A +:108130000000000000000000000000000000919618 +:108140000000000000000000000000000000919806 +:108150000000000000000000000000000000919AF4 +:108160000000000000000000000000000000919CE2 +:108170000000000000000000000000000000919ED0 +:10818000000000000000000000000000000091A0BE +:10819000000000000000000000000000000091A2AC +:1081A000000000000000000000000000000091A49A +:1081B000000000000000000000000000000091A688 +:1081C000000000000000000000000000000091A876 +:1081D000000000000000000000000000000091AA64 +:1081E000000000000000000000000000000091AC52 +:1081F000000000000000000000000000000091AE40 +:10820000000000000000000000000000000091B02D +:10821000000000000000000000000000000091B21B +:10822000000000000000000000000000000091B409 +:10823000000000000000000000000000000091B6F7 +:10824000000000000000000000000000000091B8E5 +:10825000000000000000000000000000000091BAD3 +:10826000000000000000000000000000000091BCC1 +:10827000000000000000000000000000000091BEAF +:10828000000000000000000000000000000091C09D +:10829000000000000000000000000000000091C28B +:1082A000000000000000000000000000000091C479 +:1082B000000000000000000000000000000091C667 +:1082C000000000000000000000000000000091C855 +:1082D000000000000000000000000000000091CA43 +:1082E000000000000000000000000000000091CC31 +:1082F000000000000000000000000000000091CE1F +:10830000000000000000000000000000000091D00C +:10831000000000000000000000000000000091D2FA +:10832000000000000000000000000000000091D4E8 +:10833000000000000000000000000000000091D6D6 +:10834000000000000000000000000000000091D8C4 +:10835000000000000000000000000000000091DAB2 +:10836000000000000000000000000000000091DCA0 +:10837000000000000000000000000000000091DE8E +:10838000000000000000000000000000000091E07C +:10839000000000000000000000000000000091E26A +:1083A000000000000000000000000000000091E458 +:1083B000000000000000000000000000000091E646 +:1083C000000000000000000000000000000091E834 +:1083D000000000000000000000000000000091EA22 +:1083E000000000000000000000000000000091EC10 +:1083F000000000000000000000000000000091EEFE +:10840000000000000000000000000000000091F0EB +:10841000000000000000000000000000000091F2D9 +:10842000000000000000000000000000000091F4C7 +:10843000000000000000000000000000000091F6B5 +:10844000000000000000000000000000000091F8A3 +:10845000000000000000000000000000000091FA91 +:10846000000000000000000000000000000091FC7F +:10847000000000000000000000000000000091FE6D +:10848000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC +:10849000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEC +:1084A0000000FFFF00000000FFFFFFFFFFFFFFFFD6 +:1084B000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCC +:1084C000FFFFFFFFFFFFFFFF0000FFFF00000000B6 +:1084D0000000000200001500000000010000000282 +:1084E0000000000300000000000000040000000184 +:1084F0000000000000000001000000040000000077 +:108500000000000100000003000000000000000166 +:108510000000000400000000000000010000000353 +:108520000000000000000001000000040000000046 +:108530000000000400000003000000000000000034 +:1085400000007FFF000003FFFFFFFFFFFFFFFFFFB3 +:10855000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2B +:10856000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1B +:10857000FFFFFFFFFFFFFFFF0000000300BEBC2066 +:1085800000000000000000050000000300BEBC2049 +:1085900000000000000000050000000300BEBC2039 +:1085A00000000000000000050000000300BEBC2029 +:1085B00000000000000000050000000300BEBC2019 +:1085C00000000000000000050000000300BEBC2009 +:1085D00000000000000000050000000300BEBC20F9 +:1085E00000000000000000050000000300BEBC20E9 +:1085F00000000000000000050000000D0000000C5D +:1086000000000000000000100000000F000000004B +:1086100000000000000000000215002002150020EC +:10862000000000300810000000000036000000309C +:108630000000003100000003000000000000000105 +:1086400000000003000000010000000200000040E4 +:108650000000004000000004000000200000000FA7 +:108660000000001B00008000000103C000018780A3 +:1086700000020B4000028F00000312C0000396802E +:1086800000041A4000049E00000521C00005A580DA +:10869000000629400006AD00000730C00007B48086 +:1086A000000838400008BC0000093FC00009C38032 +:1086B000000A4740000ACB00000B4EC0000BD280DE +:1086C000000C5640000CDA00000D5DC00000618017 +:1086D0000000000100000001000000010000000196 +:1086E0000000000100000001000000010000000186 +:1086F0000000000100000001000000010000000176 +:108700000000000100000001000000010000000165 +:10871000000000010000050E000004FD000005013E +:108720000000051E0000FFFF0000FFFF0000FFFF2C +:108730000000FFFF000000460000000C00000000E9 +:10874000000000000000001C000000F40000000118 +:108750000000000000000000000000000000000118 +:108760000000000107FFFFFF0000007F07FFFFFF81 +:108770000000003F0000FFFF0000FFFF0000FFFFC0 +:108780000000FFFF00007FF800007FF80000FF00FE +:10879000000000000000FF00000000000000FF00DB +:1087A000000000000000FF00000000000000FF00CB +:1087B000000000000000FF00000000000000FF00BB +:1087C000000000000000FF00000000000000FF00AB +:1087D000000000000000FF00000000000000FF009B +:1087E000000000000000FF00000000000000FF008B +:1087F000000000000000FF00000000000000FF007B +:10880000000000000000FF00000000000000FF006A +:10881000000000000000FF00000000000000FF005A +:10882000000000000000FF00000000000000FF004A +:10883000000000000000FF00000000000000FF003A +:10884000000000000000FF00000000000000FF002A +:10885000000000000000FF00000000000000FF001A +:10886000000000000000FF00000000000000FF000A +:10887000000000000000FF00000000000000FF00FA +:10888000000000000000FF00000000000000FF00EA +:10889000000000000000FF00000000000000FF00DA +:1088A000000000000000FF00000000000000FF00CA +:1088B000000000000000FF00000000000000FF00BA +:1088C000000000000000FF00000000000000FF00AA +:1088D000000000000000FF00000000000000FF009A +:1088E000000000000000FF00000000000000FF008A +:1088F000000000000000FF00000000000000FF007A +:10890000000000000000FF00000000000000FF0069 +:10891000000000000000FF00000000000000FF0059 +:10892000000000000000FF00000000000000FF0049 +:10893000000000000000FF00000000000000FF0039 +:10894000000000000000FF00000000000000FF0029 +:10895000000000000000FF00000000000000FF0019 +:10896000000000000000FF00000000000000FF0009 +:10897000000000000000FF00000000000000FF00F9 +:10898000000000000000FF00000000000000FF00E9 +:10899000000000000000FF00000000000000FF00D9 +:1089A000000000000000FF00000000000000FF00C9 +:1089B000000000000000FF00000000000000FF00B9 +:1089C000000000000000FF0000000000FFFFFFFFAC +:1089D000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA7 +:1089E000FFFFFFFFFFFFFFFFFFFFFFFF000019007A +:1089F0000000000000000001000000000000000076 +:108A0000000000000000000200001500000000014E +:108A1000000000020000000300000000000000044D +:108A20000000000100000000000000010000000440 +:108A30000000000000000001000000030000000032 +:108A40000000000100000004000000000000000120 +:108A5000000000030000000000000001000000040E +:108A600000000000000000040000000300000000FF +:108A70000000000000007FFF000003FF0000000076 +:108A800003938700000000000000000000000000C9 +:108A90000393870000000000000000000000000FAA +:108AA00000000007000000000000000E0000000EA3 +:108AB000000000000000000000000000031500207E +:108AC00003150020010000300810000000000036EF +:108AD000000000300000003100000002000000052E +:108AE000000000020000000200000000000000057D +:108AF000000000030000000100000004000000016D +:108B000000000002000000400000004000000004DF +:108B10000000002000000002000000200000100003 +:108B20000000208000003100000041800000520061 +:108B30000000628000007300000083800000940049 +:108B40000000A4800000B5000000C5800000D60031 +:108B50000000E6800000F700000107800001180017 +:108B600000012880000139000001498000015A00FD +:108B700000016A8000017B0000018B8000019C00E5 +:108B80000001AC800001BD000001CD800001DE00CD +:108B90000001EE800001FF0000000F8000000001D6 +:108BA00000000001000000010000000100000001C1 +:108BB00000000001000000010000000100000001B1 +:108BC00000000001000000010000000100000001A1 +:108BD0000000000100000001000000010000000191 +:108BE000000000010000000100000001000012145C +:108BF00000001200000012040000FFFF0000FFFF51 +:108C00000000FFFF0000FFFF000000200000003810 +:108C1000000000000000000000000023000000240D +:108C20000000002500000026000000270000003999 +:108C30000000003A0000002B0000002C00000000A3 +:108C4000000000EC00000000000000290000002AE5 +:108C50000000000100000001000000010000000110 +:108C60000000000000000000000000000000000103 +:108C700007FFFFFF0000007F07FFFFFF0000003F2E +:108C80000000FFFF0000FFFF0000FFFF0000FFFFEC +:108C900000007FF800007FF80000000000000001E5 +:108CA000CCCC0201CCCCCCCCCCCC0201CCCCCCCC2E +:108CB000CCCC0201CCCCCCCCCCCC0201CCCCCCCC1E +:108CC000CCCC0201CCCCCCCCCCCC0201CCCCCCCC0E +:108CD000CCCC0201CCCCCCCCCCCC0201CCCCCCCCFE +:108CE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF94 +:108CF000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF84 +:108D0000000000000001000100010D07CCCCCCC91F +:108D100010000000000028AD0000291800002919EB +:108D20000000000000000000000000050000000638 +:108D30007058103C000000000000FF000000000020 +:108D40000000FF00000000000000FF000000000025 +:108D50000000FF00000000000000FF000000000015 +:108D60000000FF00000000000000FF000000000005 +:108D70000000FF00000000000000FF0000000000F5 +:108D80000000FF00000000000000FF0000000000E5 +:108D90000000FF00000000000000FF0000000000D5 +:108DA0000000FF00000000000000FF0000000000C5 +:108DB0000000FF00000000000000FF0000000000B5 +:108DC0000000FF00000000000000FF0000000000A5 +:108DD0000000FF00000000000000FF000000000095 +:108DE0000000FF00000000000000FF000000000085 +:108DF0000000FF00000000000000FF000000000075 +:108E00000000FF00000000000000FF000000000064 +:108E10000000FF00000000000000FF000000000054 +:108E20000000FF00000000000000FF000000000044 +:108E30000000FF00000000000000FF000000000034 +:108E40000000FF00000000000000FF000000000024 +:108E50000000FF00000000000000FF000000000014 +:108E60000000FF00000000000000FF000000000004 +:108E70000000FF00000000000000FF0000000000F4 +:108E80000000FF00000000000000FF0000000000E4 +:108E90000000FF00000000000000FF0000000000D4 +:108EA0000000FF00000000000000FF0000000000C4 +:108EB0000000FF00000000000000FF0000000000B4 +:108EC0000000FF00000000000000FF0000000000A4 +:108ED0000000FF00000000000000FF000000000094 +:108EE0000000FF00000000000000FF000000000084 +:108EF0000000FF00000000000000FF000000000074 +:108F00000000FF00000000000000FF000000000063 +:108F10000000FF00000000000000FF000000000053 +:108F20000000FF00000000000000FF000000000043 +:108F30000000FF00000000000000FF000000000033 +:108F40000000FF00000000000000FF000000000023 +:108F50000000FF00000000000000FF000000000013 +:108F60000000FF00000000000000FF000000000003 +:108F70000000FF0000000000FFFFFFFFFFFFFFFFFA +:108F8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1 +:108F9000FFFFFFFFFFFFFFFF0000FFFF00000000DB +:108FA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD1 +:108FB000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1 +:108FC0000000FFFF0000000003231303130323131B +:108FD00003030323A0B0904302000200060406042A +:108FE000032313031303231303030323A0B09043AA +:108FF000131313131313131313131313A0B090436A +:109000000301020000000000000000020000150043 +:10901000000000010000000200000003000000004A +:10902000000000040000000100000000000000013A +:109030000000000400000000000000010000000328 +:10904000000000000000000100000004000000001B +:10905000000000010000000300000000000000010B +:1090600000000004000000000000000400000003F5 +:10907000000000000000000000007FFF000003FF70 +:10908000002625A000000000002625A0000000000A +:10909000002625A000000000002625A000000000FA +:1090A000000E0000011600D6002625A000000000DA +:1090B000002625A000000000002625A000000000DA +:1090C000002625A00000000000720000012300F32C +:1090D0000000FFFF000000000000FFFF0000000094 +:1090E0000000FFFF000000000000FFFF0000000084 +:1090F0000000FFFF000000000000FFFF0000000074 +:1091000000000000000000000000FFFF0000000061 +:109110000000FFFF000000000000FFFF0000000053 +:109120000000FFFF000000000000FFFF0000000043 +:109130000000FFFF000000000000FFFF0000000033 +:1091400000000000000000000000FFFF0000000021 +:109150000000FFFF000000000000FFFF0000000013 +:109160000000FFFF000000000000FFFF0000000003 +:109170000000FFFF000000000000FFFF00000000F3 +:1091800000000000000000000000FFFF00000000E1 +:109190000000FFFF000000000000FFFF00000000D3 +:1091A0000000FFFF000000000000FFFF00000000C3 +:1091B0000000FFFF000000000000FFFF00000000B3 +:1091C00000000000000000000000FFFF00000000A1 +:1091D0000000FFFF000000000000FFFF0000000093 +:1091E0000000FFFF000000000000FFFF0000000083 +:1091F0000000FFFF000000000000FFFF0000000073 +:1092000000000000000000000000FFFF0000000060 +:109210000000FFFF000000000000FFFF0000000052 +:109220000000FFFF000000000000FFFF0000000042 +:109230000000FFFF000000000000FFFF0000000032 +:1092400000000000000000000000FFFF0000000020 +:109250000000FFFF000000000000FFFF0000000012 +:109260000000FFFF000000000000FFFF0000000002 +:109270000000FFFF000000000000FFFF00000000F2 +:1092800000000000000000000000FFFF00000000E0 +:109290000000FFFF000000000000FFFF00000000D2 +:1092A0000000FFFF000000000000FFFF00000000C2 +:1092B0000000FFFF000000000000FFFF00000000B2 +:1092C00000000000000000000000FFFF00000000A0 +:1092D000555400005555555500005555F0000000F7 +:1092E000555400005555555500005555F0000000E7 +:1092F0000000000000010000000050140000000009 +:10930000FFF55FFF0000FFFFF00003E0000000003A +:109310000000A000000004000000000000000000A9 +:10932000000000000000100000000000000000002D +:1093300000000000000040000000000000000000ED +:109340000000000000010000FF5C0000FFF55FFF6F +:109350000000FFFFF00003E0000000000000A0009C +:1093600000000800000000000000000000000000F5 +:1093700000002000000000000000000000000000CD +:10938000000080000000000000000000000000005D +:1093900000020000000000001F8B08000000000019 +:1093A000000BFB51CFC0F003095F9540E5FFE54599 +:1093B000E5A3E3D5FCF8E509611E0606867FDCE43B +:1093C000EB4F051A900FC42B7850C53F3342E8B3DA +:1093D000EC0C0CD56C0C0CB381F44616847C1A038F +:1093E000845634428855E933305CD381B0D975292D +:1093F000F3D7281E1AF89F0D2AFFBB1584AE818A69 +:10940000FF4793FF01955F6B0EA1196CB19BBBCE1B +:109410009C38FB595C50F9DDCEF8D5977B4068004D +:109420007FE954A8B803000000000000000000001D +:109430001F8B080000000000000BCD7D0D781CD5AF +:1094400075E89DD999DDD9DDD9DD91B49257B26423 +:109450006665D9964176C6B66C649061240C8856D0 +:10946000D0C5761C91D0BCC5B844699D54105A44EF +:1094700012D0E8D7B2E49FC540221B13D606927CD7 +:10948000FCA4829884E44BD3352189E923AD202EB6 +:109490008FA4265DC0212949BE3AB409E4D53CBF5A +:1094A0007BCEBD579A59EDCA98401A2530DCF9B9E0 +:1094B000F7DC73CFFF39F76E202291C51713721AAC +:1094C000FEE8D5CE6EE922CD8444896C8DD1EB6067 +:1094D000E2058798848C10FA574DC876B8AEA5FF80 +:1094E000D49663DB91BE47D23A21B7EAF4A5D5847E +:1094F000F812E4E540945EF534DE377B3F735F3E5F +:109500004EC86F1C85407F4E7BCF97A0ED0C048C1E +:10951000417AFD7CF8F6FBF2F47EAFA219010B3A1A +:10952000EF393FB58C90E13E42724BB0FD0168FBD4 +:10953000296893FA0C9CE23A9FC88454C27BB5C652 +:109540006B61827FA77DF0EF5E3249FB558EF9B2E9 +:109550006349DA3C9E6E2355142EF60ABD76E6BEAC +:109560004E9F272E2127036B67FAF3197E92D3783B +:109570003FF8E2B5B1749171C5B5F7F875D9A75D3B +:10958000EF3791481CE150880270D047568E8E13F9 +:1095900038E6B3C648E97EDEEC4B679F5E04F8FA16 +:1095A000480CE65BEA3D8197B13E8DE402747DFA9A +:1095B0000CBC866AE9D2513843144F8F37D16BA364 +:1095C00043601D476BEB0F8525C41F21B00E0DE6D0 +:1095D000A131DABE8C48B85EA3B57B357B8EF9919C +:1095E000068A8F463EBF7A42C2C4C17E482DC93E1C +:1095F00048BB08D3710FD1EFC34D85E369D816E39B +:109600006D7A97E305C8C6582A4288BA9490291DF6 +:10961000F04AC7717D4F4CB65E8AC9DE3F13FEFC2F +:1096200071D9B3BEE1C690A7ADE8E5DEF52FA4ABD6 +:10963000046954E8BC5412B2605ED748E96D407FBB +:10964000E6D31FB187285EDEB0C9C931DA56E38C94 +:10965000FE09E00BE993D8407FD81585B5ED2D05BF +:10966000F118B24816FA89903C12678C50442D24A8 +:10967000A48C981223564B82F913D26ABC761EFD35 +:109680002428E8FBF7EDEF5AEC4FB2EF20A7C3EF29 +:10969000A03F85F6B7F03DECEF0CF005C901EC8F6B +:1096A0007277FC7405213B28BD5362A0FF0F32BACC +:1096B0006A22C8D740FF707F7B5F02AF4479C296B1 +:1096C000E938BAE537C7A83CD18DC773F0BEF1EDD4 +:1096D000008925A07F465F32ACE742587FF2B2BCDA +:1096E0009C5E2D2FDF6BB52E3A2C4207C3958BE77E +:1096F000A59BE6A0632A0092DACCFBA5DE7BBFAF78 +:1097000083545E24D599B6A2D7A3502A352F5F2A59 +:109710004D483DB452C4CD478A4CD29374BE83FAAF +:10972000160DE64D4E9D3EED5BE392A77AAAA51875 +:109730003E9E2749E47BD1568D911B25AA1FD4C498 +:10974000563BEF82E318FCC76AB8BFCDCECF817716 +:109750009F92EABA8EAE275D53EB414A5777843F1A +:109760004A5E6E023DF2515CE791CAAA6400E43D94 +:1097700019C0FE88A6136DCD0C1D1EA9DC9CC8D394 +:10978000F787AB3727408E0CABA9448AB68F567E3D +:10979000CD867E474EC508E8A191447D0CE6337224 +:1097A0006AE1BC9E22F30A8344D550DE92D3494637 +:1097B00057A471064E87A44793B4BFF0512AF711FE +:1097C000CE6FDB3EDAF69B4A0FF4EFD7E9B874FCB4 +:1097D0008EE649FB3A4AAFFEB49E0E18B3FB11E386 +:1097E000D03FE934E51B02EF08BE923CCF8BC2515B +:1097F000D8F637C8C83F4A9C64078BBCAF6A51276C +:10980000BC1CE4DBF47D03C66D787619CA5578DF9D +:10981000D46068C906FE99A1F7AC679D8921CFF491 +:109820005B0FDCE04C48716051AD07F8B2109F232C +:109830007ED20DF445141BED8F21A97C25D80BA5F4 +:10984000E85A498CFEDAB7BCF4F380E1CF019D29D8 +:10985000EB7B1CC02F85C7BA1C45C4CE2969395E75 +:109860007FED8BC27BCAEB6E3A6C90B8FE3E9F9C3C +:109870000FF818D4191D941A07F4315952FAB9EA9D +:10988000B7D229D4033D2FC2FC15B21CE7A5D47E64 +:10989000EFC5248563B5C4F4A212F73B301F6228DC +:1098A000BFCCBBF0D6ECB3574BA04F42AC9FC2FE2F +:1098B0002FF5B5AF95E8F72F90D485F0DE68720DDF +:1098C000D73B5EBE316EB698D0237654AA6274CB75 +:1098D000FEB23919F4595AB7615DD4E643C447E181 +:1098E000346A7C4C5E362AAF003C36FD1FC0E3B3C1 +:1098F0007F7E9C5038E777D3FB2EBCF9EC10CA5121 +:1099000095B0F7053DFA00CFCBE1EABD7F35E0F930 +:109910003C179EFB9E24AF2E72D96125ECBD53727D +:10992000FB87A422F6DE6822332A815C20DAC9583C +:109930000BFD37F00AB5EB26F8FAECEF6B44FD703F +:10994000A0CFC2EB485F0B5E337D363EBFABAF03AB +:10995000AF3BFB5278257A16E5DF44B5B34F42BBE7 +:10996000F498FD2CFD6422E2FC8840DB79CE7E96E3 +:10997000E26782CA565243C84DFD3FB01D4A2713C5 +:1099800065ACFD19E987B643E19F58E45C23E3F732 +:10999000DF62EFD7B1E743D2BFB0E7CB583B23FD3F +:1099A00098B583A40BF9C0DC84F097A22B21DF22A9 +:1099B00092C9EC0B338EF6B8AF610BA531DA4F25A7 +:1099C000ED479FE987A253BB3A52BA9F472503FB55 +:1099D0001176E21B8682FA75227976F08494AC8D3A +:1099E000F8213FB58FD1F9863436BF6FF4E7717E29 +:1099F00028922E20E43BFDAF387CFEAC7FAA6F3E60 +:109A0000E8D2374F482AF637B1C23B8F338DFF7506 +:109A100058773A8F7552FA0BC017919E9C03B74640 +:109A2000CDC709EA2D8EA7D2FD38F8FD53A02C56DC +:109A3000CFBC5FB9C9C6EFFB014FF4FE4EAB5D036F +:109A40003E7B98E34DB401CFCC5F61F6AFC063C9F4 +:109A5000F10C97FCAE9F4DD744A17A98AEDB978866 +:109A6000E181E76E6278D63DA4337E79A7781A2F1C +:109A7000F8FE9682F6270AC64B3C22931670F9D25E +:109A80002EB94E66C3DB5FD04F05E743317ED587E5 +:109A9000D7A4711D3A9BF1FEDD9B641BF0B4F5C1A8 +:109AA00025877C45F0043D021CF7CAF60B8CEF9924 +:109AB0001C91E9AA82FEF99C94BAFA52F02BD75174 +:109AC0007B80803DE99533C4DDF6CD6EBF06F2178D +:109AD000FAED64F05E7CEA620DF01D8AC829F4A7F5 +:109AE000D4AC51DE34431755DC0E12F0B79293DF3D +:109AF000391D47BB0AFD9CCF7DF84F125BF4D9F0AE +:109B00008BFEC775B9230BDF17C8F9716552738FC8 +:109B1000B3C8EC394BBF3945408EDFF26732DAD734 +:109B20003B0BFCC451F0139780DC4BE0B57F1D412B +:109B3000FA8C1E0F6707E8FBD178DE06391797CF3E +:109B4000696BA4F38A26EC4482B6FFEE09B97F7DE7 +:109B50001D984E79C4CB9D2D1B62A4885C16D788B6 +:109B6000257BECE642FF2A687AFDAB40A2664E3BBD +:109B70003B4AFD0EAB09AE8CBE7DB15F266E70E92F +:109B80006355F621BE7CBEAB7B403FEE96983C1100 +:109B9000CF3B65161FD8216B786D9C5E2F86273DC5 +:109BA000D2EEE4C03E9048CF2263F6BAE86A0ED700 +:109BB000FF7F6AFEBBCBAC04E83567901A2B17D148 +:109BC000F9EAD44E00BBA6E25AE77A88CF507BD29E +:109BD000077A5BD35F86FB2AD7B7CF4AE94FCBCC56 +:109BE0000F9580DFA87DCEAEBE1527211EA15EE8B1 +:109BF000B70E91D9F8FA28C7970AF802BB04F0D536 +:109C00003C83AF319DE18B5269517C2D9219FF8FBE +:109C100029598DE18D7DBF1BBEA7FCB8535FB96389 +:109C2000217C7FCC47A8BA273B951CBEF787C2672B +:109C3000213C91088507EC867F61F044D429E30F2D +:109C4000094FC9F52DEF7A57EBFB3F45A7BE70AA28 +:109C50000BF86F06BF541E26191C7213D013B37372 +:109C60007771F9B74B99FA83AEFB1B99E111B07F7D +:109C7000FF5D4D2D007FAFFBAE25EBC18EDDC2F544 +:109C8000D3EB7D470D8512C0D63B86AB8AC5FBFE64 +:109C9000CA477A50EEFB765E867134E234FA56603B +:109CA0007B7137BDFF3D3988743F4B7F65D593D3BA +:109CB0007672FDEC78E1E3B2D7DFF80D698A5D6377 +:109CC00096C68B8053C40B4BC2A94DFA01CEEECF82 +:109CD0006682632BD87C3374BE3FE072908C56A2B0 +:109CE0003EFAAB2F3F63282EBC7567D49703CB6732 +:109CF000C33D1DC712DF51F512289FFD7DA9EF6EF0 +:109D0000D5D3CFC974FD6DC5AEBA86C215A5FE3BCD +:109D1000F8C5FE478E3835E64CBF33705319B26232 +:109D2000669DCE16CE10AC2BED6F93CF7E4976ADEF +:109D30008BE2A7FA1BECA4C64DF83CA9A41DE0BF1A +:109D4000F15A6305C467216E779D8B2E85BD34DA89 +:109D50009725AF82ADDF18477AD1CC14FA595AAFA4 +:109D6000CF3CB16AE6FDD126C6779A36490C888B7E +:109D7000661ECB413C8A3206C62B00BE4DCBC0F5D9 +:109D800060F4FD30BD323B25CBE31F210F1D6BBDC1 +:109D90007EEC7FACCF94DCFE51A8847FF41BCE67B1 +:109DA000020FB7003DD0F7DEBC7D4AD940AF57E681 +:109DB0007EA4D4D3F1133E66F73CDFF716FA5D6F4D +:109DC000DECEFCEF2B3B9F532E71CD7FBECF8FFDA0 +:109DD0005DC9C723644A71FB11C2BEB9F8542C0790 +:109DE000EBF683A33ED413A5E87743E292AC52315D +:109DF000D37EBED9C7EC21C5BC12BEBFB2C32717E4 +:109E0000B3970BE30B1B1297613F6FDE36A5003F44 +:109E10003FDFA749B03E303F3302FD3CA7409CF9ED +:109E20004C7007C1265C0D7E21FBFECDDB7204FA6F +:109E3000D373CF10E847EFC9D936C0077D805F6480 +:109E4000990701BE8B4FFDB3B661D94C3FA2DF8AA3 +:109E500082F9DD69717B4FB1AE80EF756A90BC937A +:109E6000F955F0F909BCEE39035E737D7656292267 +:109E70000FC4D55E47ED590A87AD927831B95B388A +:109E80007E1B69CB2A2E39F56EE138D24AE74F7135 +:109E9000774431F47733AEBA40427E1D248C9FE97B +:109EA000DFD30AD86F2DD6FD00C79F037D32F9F2AC +:109EB000E73EA47BDBEE8FE372619C2962A4319EB6 +:109EC000A95635621C87E8E545FDA3ED7DF9796E5D +:109ED000B8055CDB55EE7F9EBA240F7242911B6F72 +:109EE0001CA326CE589DD435175C3D3370F570B851 +:109EF0009C2DCDB3E11A5BBA784EB886012E75362B +:109F00005CC32AF79B4F5DD20D700DC94D08978039 +:109F1000474D10B423C477231CDE423809494F4013 +:109F20007C4C37D6AC02F9B79DF33BBD8FF10F0ADD +:109F3000FF769F5B7E1A53E8070F57DEE0F4837FBE +:109F40000B53B54AC3EFD75E9B07742CE4D110FCCA +:109F500027CA4F0ADF07206FC4F86AAC92649B28B7 +:109F60003CC106FAAC19DA538F429BBE470C575BD3 +:109F7000F43B56994DE82EF937BCF48B2F0620BEE2 +:109F80001A27E612FA9E9ABB06F9578D53390DFE31 +:109F9000B8326943FC8D349124C861BF96B1315EFB +:109FA000D440DBF432F6F620B69D247B4E8C959E91 +:109FB000F97CD9277BE39BD3791D1627571B99DDA5 +:109FC000F6695F7A0FACB75A3B3285F61ACF036D4C +:109FD00028F083C5F58725D6E5875706102F432B34 +:109FE000ACFB41547F93D3936B5DBEE95B3D7B5DDE +:109FF0007E78E512464F1D9545E31C1BB457E729B3 +:10A00000ABDCF0B33C0D2E119D7790EBCD3B136F85 +:10A010004D5C47DB0199ECE8A7F7EAAECDF7ABB4AE +:10A02000BD31997EC63D6E45670EEDCE9D9C1E2FBF +:10A03000F5D5065FA1F3B9637D7D0CFCE0FFF04927 +:10A040001EBC4DAF1FF54F81DFBE48FD53B4675EA8 +:10A050005A32679C755F1FC9BAF9605FA382727537 +:10A06000DFD64399768AA7E178C34A10E576F7C12F +:10A0700009E0B3A865AE047ACEF3F129BEF23E172B +:10A080005DAB71862FF8535CF3AFB2D3D97E26A7B0 +:10A090002DCA69641EC9613CB4DC20568E3E5F60E7 +:10A0A000590EC4D7281E5E07BE28EF9892607D0B1C +:10A0B000F14009E88A06FADDDE6716AD74E77D2F08 +:10A0C00056181D9106664750BD9048158DCBB1F5C9 +:10A0D000F902C553133826645202B877F2B678EF06 +:10A0E000515FFABF615EF37B43487FF3B7592AC0E3 +:10A0F000F33CF7EB24A23D5D8D74651C04BAFAC2F3 +:10A10000A7439CAE8C83801A55C0334357AA528410 +:10A11000AEFE46496B70DF6FA56C1FE0A17712EFB2 +:10A120006FE7E350709F073AAA93181EF18F8E9342 +:10A130006832D10F58A6B07588C6AD7E7CE5E4BF05 +:10A140001EB91ED60DE2CE546E2DA8CB5F9D04FE27 +:10A15000A47E18F05F6DED503FAC2BB1B593108726 +:10A160008EB6E48EB481FCA46D9037B53D4446397B +:10A17000D4C7E21C02FF911E4B023B5FC0AFFA59ED +:10A180009EA52E7E4327A1F891AA5E6C0339313C2F +:10A190004CAC001D27919EC4BC4F5D4BC0F0011C10 +:10A1A00049A35D03B83E41AC7E80D361CF13B69620 +:10A1B0008271A337A7581C5D49918DAE750BC7D32B +:10A1C0009F003B759B925E06780A3731FB50F0FF8B +:10A1D0005E3587F6A0DE3A69033C634B377BECCCF7 +:10A1E0008B14EE775BC4CEBAE8F24E9E60CBD82BD0 +:10A1F000831F6B82F742DC2FDF641B184F4DA15C7D +:10A20000D3397D52BA5C07E3D776E6DB00CF75968B +:10A21000853157CA8F98AFDCAB9AD5F0DDDEA5FE4D +:10A22000AE2C5BB71708E4C76432F30779DAB8FDE0 +:10A2300000D0CB7FF954842BDCFAC5DCBDB09E176F +:10A24000060C85AE47387F30F7F7142FDFA378214F +:10A250009057D99FCDBD44DB655D6162523CAA0732 +:10A2600026D1EE356A8965033DD467AE580CDF7799 +:10A2700012AC838892295B4922BE36225D35E630D6 +:10A28000871FA89D447EDAA7F4FCDB6DB4BF7D4731 +:10A290007D96435CFC4228BFB8E2C4355B89C75E4B +:10A2A000107CD3065170FA7DCDCD2C4FBC60342785 +:10A2B000B1FC079377F3F954CFA1ABA9D2E7C94D0D +:10A2C000D65360DEEF8FFCF8476990035DA6CCE2C1 +:10A2D000B9EB8DD71A21AF5D219D3EAFB47C8215BD +:10A2E00079CD1367647024B6B9E28D30EF4E6F5BA1 +:10A2F0006FF6E651FCB3E297AC1F9DCB6562F69812 +:10A300006E79311E9C9C60F1F64BDB213F312E4D66 +:10A31000764108D65F71717B07C41B2393090851EE +:10A3200007C397633BBC40D4514C69541792FB0060 +:10A33000E9C0FFF94C0EF29381B52CCEB3ABE5909A +:10A3400001CF8FE4EF447AD8DD2C670392EBFD74E4 +:10A350005EBB08DE5F211358CF9DCDF47DDDF5DCBB +:10A36000CCA05F459F23FEDF5CC19EBF4965D7142B +:10A37000DAC3D47BC77875920CC17BAB79DC92F7DA +:10A38000E3CF4F217D8BFE5492770C8823B4A46DCC +:10A3900040AFDF4E93EF34639C209B4DC273DA25B0 +:10A3A000C8FD5A259B83FA93E69403EF1D79E9676C +:10A3B0005ADEC567BB2DD63FB184FCED4914AB17FF +:10A3C0001178B7336DB92DE0AF82DD86F9593B378F +:10A3D0000072C854D08EA3F2F21185D977B976B045 +:10A3E0003FA87C82F784DC14E394A61B368E793276 +:10A3F0008C78DE775C423C542E485DB718EC93179E +:10A40000983C74DA5349E027E7276103F3B64ACF53 +:10A41000F96EF923E4603CC5E44DE138540EA641E1 +:10A42000AFF51E0F58D4A325FF2AA79F522A411E1D +:10A43000F62E01FC546E62F2AA974E04FDD5061961 +:10A44000EB7B905F281C3B1E98877029159D181F79 +:10A45000D9D1503F67FDC3EE3E6235B8F4D46E25C6 +:10A46000AFC17AEE6E19308AC1174DF8AD06A8F368 +:10A47000E830E719EFAE5FCDDDEFBD72FA274AE5B0 +:10A48000ECFE0BF30721BD4106B9103ACBBCC1C4A9 +:10A49000759F4BC078F179F60AE0AF263FC9A52831 +:10A4A000FFC5C3F663C08F3F554FB4EB94DFE201A5 +:10A4B000FB4608895EE8BFB57D27B4A9C0817CD87A +:10A4C000AA917F94FBE17BC8815E40C8F923758324 +:10A4D0000EC73FD883FBFBCC9A138BC04E6AC4EBEC +:10A4E000DB5C3FD4000040175BFDB83E3E30CAC085 +:10A4F0008E53B26D707FDFC70D02FC36BF9B7EEFBF +:10A50000922B98EF8DCF7C47204F07F4B694BE0F67 +:10A5100075048D741C771C27410D1F577D07D52BA3 +:10A520009A4AC759D035750486F4E9C2DEC9252098 +:10A530004EE92CD230BE71A94F6779AFB87988D572 +:10A540006138D51B289DEE51BD76E008B7FF7671C6 +:10A55000FB6FBCCFC0EB605F02AF6FE53762DE5EC2 +:10A56000F817236ACA01FA75924ACF83C0878A53C3 +:10A570007DB58B6F493C5FA5B8E240DB177C98E561 +:10A58000C1E3A9193CD0FBFBAEDBDC05F7C7977D27 +:10A590002D3F00F6D9DAC52BC19E195FFECD934F32 +:10A5A000013ED6B1F68738BC19EB26ED12FAED84E0 +:10A5B000C4F0E7503FE5C124C03B557502EDD6ED30 +:10A5C000B18BE2A85F5700AE86AB379BD7D3EFF7CE +:10A5D0004ACCFE739EF1215ECAA821D3C0F8F628AA +:10A5E000D48594190DA80745FC9DFA1136D8FF5162 +:10A5F0005B2363D60CDF95B510CC2BED13EF2954FC +:10A60000AED1F7CA9E6EC4F7F606193D386B09E75E +:10A6100057D64F794790801CDA1764FD38579083DE +:10A62000F09CCEC3E6EF1F8479A81DD6C740B8A919 +:10A630002DF6C7C17EF953B50CE7BD67DD666BAE7D +:10A64000BA473AC63E773C6E5062747CCDF03FB458 +:10A650003B45F8B7F0FD91A095003DA57DFECBED03 +:10A66000EBABE1B9B1CFADC795B859D0B68A8E473B +:10A670009C7F68CFB9E01CE1F6776F3E19BBCE75C1 +:10A680003FA7CA9EF8EC785FE30AB7BF3F3EBD0E16 +:10A690004E6001E68716A3DDFEE64B1F43FFD81789 +:10A6A0003D17E9A287D345DB724D09533C4E50BCA0 +:10A6B0000B3A87EFFC861FF5A1AF6904EB4B7C3AA0 +:10A6C000D3031007503D76750EE953D70FE37AD0C8 +:10A6D000BF9E73A89E081FDF3105F1FDB0AEBD0C13 +:10A6E00057BD89C2E9C2C35BF98573FA49837D14FA +:10A6F000CFEE3A0A6A0641DE56D1BDF8DFB556E81C +:10A7000061EA22503876A9A661035DD4313ADAB500 +:10A71000941C01FDBDAFCC82081709389F226B2025 +:10A720006EAF56211E77D539921FECB44A86377921 +:10A730009F69F8E9FBD55BAD2FBAE343BBFEC2C10D +:10A74000FE13C6A847BE84BA4D09EC8B72C8EB1540 +:10A7500099CF0F8DB6BB40DEEC58349180F94EEBAB +:10A76000A55A19F90F8B1CE878F317C807DDE36DBC +:10A77000AF3D3BBDB447C90441DFEC33EF42FBD4EE +:10A780006995AD45749DB5246BEF6D695801EB2E4D +:10A79000DE9F1769FF927B1D632DB43FD7FA6C07CC +:10A7A000FD3507DFCC1EDF09C2FB13E64010F4BD08 +:10A7B000187F14DAC5C7FFBACAFCF65F821DEBE743 +:10A7C000F279C7A21BB02EAF101EF1DD4794F47AC8 +:10A7D000BF0B6E7FC2E275424409A37FC8EA3241D3 +:10A7E000EC2C70C5A994E3DB318E41E9B70FE6ADDF +:10A7F00024FC9887F293292225CF4C8FC3548FB91C +:10A80000E951A57E13E473FD717AFFACE89AF281F9 +:10A81000CBFF1F94585C6E9ACE7F124C675DED3C67 +:10A82000E7D3BCCAFC5B90CD2D2B810FBCFCA44EA2 +:10A83000C7877B1ADDFA4409B69D003CDF0D8625EB +:10A84000D87709922DD087AFCFA90F237EAC47B818 +:10A85000D4D7147BC505D7B97EAF1E84FC3CCC6B26 +:10A8600004F49F3A7BDE6191CF214CFFA89DCC9FE1 +:10A870000ED4B17A5A659D897513A25F613F0C6948 +:10A88000AF569DA88079FCA20AF207425F0D958D14 +:10A8900054C3BA4F08382B99DE167A6C6F4739C605 +:10A8A000514624A7FA06D4776C1E43B5F57B1A10DF +:10A8B0000813E3107E99A0FD40FE841C027E1C91CB +:10A8C000B95EB98AB5D50E721DE815AA8F72609768 +:10A8D000973FADA13E127C5BDE6922BD8D0467F41B +:10A8E0001ABC17A34E0AD0DD4848D403A6D02FA91E +:10A8F00078B61ABF9FE0F25DED64FACA3FFF5AD402 +:10A9000053E7F8BDF1B973FDA6A75DA87F449D5537 +:10A91000E1FD99EF655E9777767AE96E95E5BF7709 +:10A9200044987DB88FAA53E903F4AAA6BA524CBF43 +:10A93000A03D24C6E9E6EB36FD1DB72B73BED46AF5 +:10A94000E0D7234DDD58FF53D8AF124CADF5A3DD52 +:10A95000D7D308EB31FD9CCB4B952E07D455C73789 +:10A9600076DAC310EFE07694DDC5E8289A607EB110 +:10A97000D04394BFEF565DFA51C4C766FB0319CDAF +:10A98000CD2767EB07145E63124901BD6AC986A033 +:10A99000BB6EE6837E9E9FD2ED0FC23C0BE5DAD9FB +:10A9A000FA09A5C61D35EB3DE36EE5EB41C7DD0AAF +:10A9B000F82F1C7756DE1BF27F159047CC5C730393 +:10A9C000C5F31E4346BBEEEE0FAE390A750ECABF85 +:10A9D000F85066F8B414F9691CE38C3D19BA0E15E9 +:10A9E00099ABC97701AF691DED595F67DA964C9055 +:10A9F000AB6C7F42E5745ED02610DFF1C56DEC973D +:10AA0000C4439EFD112B389DFB204F08FE0DB58BD6 +:10AA1000815EE229B6CE41936421CEA7E5AE6953AB +:10AA2000297C5A9C58F41ED021F22FFDDC7828C9CD +:10AA3000E2ECD0D61A08DBBFA1D8125B77161FAFA5 +:10AA4000E4CFD5B871BF9C84F879BA1FFA23B52C2E +:10AA5000AF59C59F076AD97388E3635CBF9AC5F590 +:10AA6000D5388FEB57B3387EA096C7F5799B10B6D3 +:10AA7000AF625C0A59409763D5DEF8FE5892C7C9A9 +:10AA80004FDD9FD8E4E29FB1B7BF8A76E4D2BA2BFC +:10AA900007D7AF9DC9A78CA9D944313D5C984F9980 +:10AAA000F55CA67207E32393890D88C72CE6152869 +:10AAB000CE4C90B385781C5E3A328DC725EF231EAD +:10AAC000070BF038588047D19ED68FD596077F83E5 +:10AAD000D3F85BE5C1DF60E48B284F06391E8FF9A0 +:10AAE000291E6B809E2D6DAE7D34D182BC7754CBF8 +:10AAF0001F35291CE1633E8868CCE4BD5B44DE3B26 +:10AB00008F796FF17E9CD3F912A0730A77D5266FE7 +:10AB1000DE3BCAF3DEF7CAA91780FFB7961DF828F7 +:10AB2000DB97E0F5DFE7116BCA768D1325AE78DA97 +:10AB30003BF0E3FF83CBF9DDBEF409E0F7702A6355 +:10AB400083CA0FE88E0326443CE5B4FD531CE3851D +:10AB5000277D65843164154FF9E1780E794DC390F6 +:10AB6000B005FB542A3739E887D752F10BEF5775F8 +:10AB7000B1FC40A1DC18E77A617C5A2F70BA300C26 +:10AB8000CC2F0F84BFFD22C49D862BCAD1FEFB951E +:10AB90005FEC7323EB8106FC2D4C7E53B9FD2BBF7C +:10ABA0004B6EEBC6940DECE4E3F1C2F22BD2528073 +:10ABB0003ECFAEB6BA7CDCCF0824E8B8CDD69F81B4 +:10ABC0001F89ED05B4DDB4B2E83EB7FFD361AB0138 +:10ABD0008A97AC446ABA41BFBF2CA13D30DF4FFE1B +:10ABE0004466C650C89D57CF3A676B7F4F6A20C7EF +:10ABF000C7CDC347EB3DF6376B17B17FE705E6B02E +:10AC0000BFB3676D7F8BF11FF78C3FCADB45C65F13 +:10AC10001258EDD28B4DDC1F2193585F5D08CF7821 +:10AC2000D3FBA31FD706A6F5D4DA40113D357E9697 +:10AC30007828356EA17EEC9819B703C6253A8B6F3C +:10AC400096F23BC455C439518751BA1CEA485D0D90 +:10AC5000DFFF6733717C318ACFE6111BE2261A6170 +:10AC6000FE20697034B6DFC441BC9246965FA6F000 +:10AC7000BC2F71C7D1B3C497E877F63CB31EBB5362 +:10AC8000F43F04FC08FCF3288B1FED8757D7825C48 +:10AC9000C9C960A7FD6D80D93B57055237235EA90E +:10ACA0007F057AFC61F3F08E85C0644B9F0EA1DDB9 +:10ACB00027EA8F9529E2B6236FE3EB7255C0FE0CAD +:10ACC000F0FB79C9C377F0EFCAE13B2A47FBA0DF6D +:10ACD00052727448A27294C585DE951CDDC5C7FF0B +:10ACE0006F7F7A178CA33D3A707431817D7E59E372 +:10ACF000BCA40BEE6E96573FEFD1C3CF5D06BA2CC6 +:10AD000059BF9275972BFF5388E73736AC1C33DD5C +:10AD1000F8ECE7FDDA9F837991EEF27754BFEFB458 +:10AD2000737C97CB59881505530ECAF5AAAE1EB48D +:10AD30006BA9DEC4FA83693B85D71F80FE76D71FD7 +:10AD40004CDB29BF77FD81B7DEC0AF39AC1EC164D3 +:10AD5000F506636F7F8AD51FD4B176E1BCBE1E6055 +:10AD60007AEA1301FBBB80DF8FF9EC27032EB93F92 +:10AD7000F4FF7CDDC5E22839BE2E437EAE6714E6C3 +:10AD8000B729E58B51CF4884ED2F10EF7FDA97BEBE +:10AD90000FFA17F50C33FB58BD7ACFFE398BF3262B +:10ADA000BA991E9A9FCAB531FC0A7DC7F78392579C +:10ADB00009E4CDE65DCBF5DBB43DBA43827891463C +:10ADC000ED9E20765FC21E8D0B3BAA87D9517186FE +:10ADD000BF84C9D657D8497E2DD306FD513F1DF5F6 +:10ADE0005335FFDE9F60CF55F62D1987754EB2752E +:10ADF00085751E877585EF136C9D459B707BF40EE2 +:10AE000089EDF31DAF9CF4ACF738D85380CF535F76 +:10AE10004DB8ED9AF1B72BAA993DFA5BB447C797A5 +:10AE2000317B745C9DFC3DED51A31AEACDE65D3BA0 +:10AE3000F96280E191DBA35E3C0E2F1B413F7C96C3 +:10AE40003DFA1EE351F08BC0A3E00F81C733F14BF5 +:10AE5000497B7EE9D7D07F1D033C523F69B1F65B49 +:10AE60006E8F66CFD61E1DAD87F839D8A3740E65D8 +:10AE700099B23658CF52F6E83C6E8F2EE67E577563 +:10AE8000DA5B6F2CEC516A272ED5C04EBC360338E6 +:10AE90002601CAC77EFA7EA82EDD04F7EBAFB524E3 +:10AEA000B8EFD7D9FD57AEB0976968B7191837F919 +:10AEB000FC9F7F11F9A9AC71D221B41D56B276AABC +:10AEC00008DF7E23D9DE0CDF9529860474536616CD +:10AED0008F932ED7A6E5C20530FE6793F6851AEA52 +:10AEE0008FAC7415D8A10E390975B4827F45DE9BED +:10AEF000FA356DB08E7536B515E9F3059B4E627D5A +:10AF00008F79AD2103FC0B89D9EE4FBAF898E7BFD2 +:10AF100017DDC5D6FF601BC96EA3EBBB78C2A88145 +:10AF2000F53F38FC82DE49DF6F9A64CF1F5EC69E14 +:10AF30002F3B3C89CF1F7E943D17701F7CB4AAC65F +:10AF4000A4F339789BF1E16EA61791DE0EF6F7C8EF +:10AF5000ABE8FD25B96FC80B295D7C4463F5684BF0 +:10AF60000EE7647319077E0DDBA2C7F4D8940C7842 +:10AF700085341AE403F68CAE1A823CDAC123B7CAD0 +:10AF8000207F0FF2382171A6DA215E5F3DC4EA828C +:10AF9000CE3B9C3912A2ED655BCD72E09BEA21436A +:10AFA00096A19FC949B99E7E977C24276F41393667 +:10AFB000E9E99F3897AFCF51F81A0E5B3298F3C981 +:10AFC000894C1BF8814D77B1BA8D855BD9B5618805 +:10AFD0005D6FD6D8FE94BFE6EB24DA8B0F4F3E05AB +:10AFE0007C58DD442C4073F5D6940C71D8C543C40D +:10AFF000A8A0FD25875258DF22D17933B88905DB17 +:10B00000DBFF178513F2B5D2239936A85339EF30F9 +:10B01000AB63912673725E9F8D87770AE70E800B74 +:10B02000F4048753B4171FEE91219F546D17C0F994 +:10B030000883F3BC47BC7026B77238B74E223CD2A7 +:10B0400001E329C0F39202389794A85FFEAC26FC76 +:10B050001CA6C7D594C3E2FC42CF74337945F938B6 +:10B06000BB88B69F237204E82DD6DDF310C8E9F93A +:10B07000AD93FD20BFE66FEB09819ED260AB093E28 +:10B0800067DFD7B4E6313F46FFACD596EBFB56FA07 +:10B090003D7DDEB66D5202FCCED7B247C03F6AE8B6 +:10B0A0004648485BB769839F59D3CAF23DB1E397DD +:10B0B0001F85FDC5D156E5B7EEFA8DF984B6A95DB9 +:10B0C0005497667653036FE373DABEDDDD06C3A7DC +:10B0D000DBF53DB3CBF039988B609781FA66750A42 +:10B0E000AB9EDCB086B090EA42B866B390D7CCE9AC +:10B0F0005F3986FBC2C997B3D3794E38574139813E +:10B10000EF1192A9F1DC3FFE338CB30ED1F957B4A5 +:10B11000CC86BF707C256EE0790CBB45FDBBAF765D +:10B1200005C8AF9A96542C4766AF5F19515E83FEEF +:10B13000F07B69F67E87294DF7EC77307A1FCE8257 +:10B140005C15E7AC1042E729E4143CDFC6CE3511AC +:10B15000E38B7D0FDFE774126DC93B7EF0CF5B8917 +:10B16000017E5A2CCEE3F9B5C7D05879F3A5EDE7A7 +:10B17000DC4E9F67DA5A56E1F35652763DD8D1F14C +:10B180009358BF8527DB54CEE88F98AF558210F5D2 +:10B19000FC6D04E3F949653208FCBF7BDB86189936 +:10B1A000C3EFA8E0F5FCB55C7F18DD05F10C2D8B35 +:10B1B00072BC2673B0DF3F475C44E819818F18C723 +:10B1C000A7CAE9A770DC42FC9E02FC8A7DD54BA091 +:10B1D000BF3B6BDCFD897D7485FD08BCFE27E7FF66 +:10B1E00027A04F883FE77D4CDE376858FFB35D36B8 +:10B1F0004250F7E3FC23AB4B11E701E924CD932345 +:10B20000E97EB011D45E827276B0AF0BF33F137D4E +:10B21000E91AB073C6FABAB17D5B90F93B1B93E9AA +:10B220007890E557503FA96C2AA436CEF22A85F5CE +:10B2300005A496F90F85799519FB9FF90BD45FC387 +:10B240007CCA4E9E5F11CFD5E634013A8886F2D98A +:10B2500041902337B1FC06103E9E13A25BF763BDFD +:10B26000D24B3F9BB8DE4537CB834C0FC55A2D07D9 +:10B27000EA8E203F06F582BE9631911F5B1EAC849C +:10B280003C10E9877EFDB686CF0D9B9ADEB49F0801 +:10B29000955760AFE95BA73067B75BCD77B1BAADC3 +:10B2A000EC7AD827BD1B941095DBAB777C1DE57637 +:10B2B0005466ED74F0096C8B7C17FEAD817DDF0464 +:10B2C000F5DFB4FD1FE4FC20FCAC5A6FFDF2678291 +:10B2D000DEFCF774FDEF5BA74F07687F0B78D73173 +:10B2E000E5A464413EA597F15DF4C2DA9A1B5C784F +:10B2F000EE0C32FD15ED63FB4A0ED6916BDCF68B3E +:10B3000078DE151475A50CAFAACEF28BEAF1F31115 +:10B310007F84C7A1D49635CEFDE8072AD88EB5A67E +:10B320001CD8DFAA73FC51BC76017D50BC221E21C3 +:10B33000EE8575ABAEFA5DC4075CB12E732A077259 +:10B340009BEA7D67BF01F92593C1A14CE1B8F7FDE8 +:10B3500094D59B465A5EBF8D09D3B3838FC2F397B2 +:10B36000B0CE7AEB942D99B3E112E3617D02C493E0 +:10B3700086FD3C5F6DBD98063BE9B6C5B8EFE93D7B +:10B38000C0CB6738BD15C5CB7090EFDF26460DC822 +:10B39000AF69FAE1745148475493A07F51C847D42C +:10B3A000EFA861E7FB9CACE67AA0E6848B9F44FDA6 +:10B3B0004A6F5EC2F9662E350F011CD10B7EFE6509 +:10B3C00080DF686775130F717E9FDFA23DF61D90C9 +:10B3D000AFF95FBF08FC45D6FB31DEB65B261EFF2A +:10B3E000F56EFEFE7E7EA5F37D08E66B53B98C7587 +:10B3F0007E62FF18C9611DE9434126AF88EF97E8D7 +:10B4000047FEC62627C1AE8DE67F4D60BF6BC2C723 +:10B41000F01A6BC97AEA104AC9D10783DEF329769C +:10B42000CB54DF49A5E5BF909F54BE92DE721897BA +:10B43000E5CD4B8D7747DF28D675DDA5D98FC1BC0B +:10B44000DE7AF9F239F3DF402EFD2E3D5EEABDF7DC +:10B45000FBFA152A57FB55D02B6103F24D59729216 +:10B46000380B211E7632778CE2793FC5BB0371F22F +:10B47000566647285B6CE9B44B4E89EFA6DBDDE5E9 +:10B4800035E02FFF36F8FA9046BF3B00F448FDBD8B +:10B490008F8FBF7A29D41165151202BD99D5FC1D75 +:10B4A0004CFEC5DB317EB1B3FC2097D3580F355429 +:10B4B00016C738ED0FB8DC11FA9CFE697ED7B96F5C +:10B4C000BB77BEE2207D741234522A326D985FA39E +:10B4D000F7500F54745A39B017A384D18FD8F71589 +:10B4E000BC803C00E3A9DC4F6CE0790B1F617A5E05 +:10B4F000D9C2F4B3D0DF605F20DFF84E617EBAD4EA +:10B50000397285FABD900E4F84BDFAFC5C62C76E3D +:10B5100047BF2C2B839DBB948A98FDD64CBB91DAF8 +:10B52000F520DFCE4DE7DB203F5E4837E7A64FB67C +:10B5300091E8FF1CFD0CC2449BF1BC06948B777014 +:10B540007A02431DCE698AC1FAC3796061B68E65FD +:10B550008D04E7B5987EB2825ECB9BD203417A5DC3 +:10B56000F400B1DAE8ABA6C6EB25AF9BAA86F7F2EA +:10B57000E4C6807211F8A5F96A908B154E4F00E869 +:10B58000E3FBA110ABB3FD8DC4EB9E26716DB3FF41 +:10B5900025DA860CF65D8A3AB060FF8787D8F37BA0 +:10B5A0006F6575F2B02712E8C0182207C10EAA6BAA +:10B5B000B2D00F6B0A313897874C26AFDAA6DAA1E2 +:10B5C0009FE4CEDC005C8DEE17DA4D1DA6941B8047 +:10B5D000BA9725DC1F3326266D1059D3FE5813BBAE +:10B5E0002EB199DE5D1362FE570BEFBF25C4F6FF47 +:10B5F0005C10E2E76B106A9752FABA4CB3D7862A0E +:10B60000617FC0E341901F8B08C30F39C0E879C93F +:10B610008198C7DEB3797F3B787F9769A9F6D06AB6 +:10B62000D8163525FF5F8A77C3A1F215F881FA9BFA +:10B6300020970BD76F73889DCB42DF4378013F077C +:10B6400069FFF7280C3FF70C19071D163F1B82787E +:10B65000A8D2C2CEFFDB1C6272BCA2D3865814A053 +:10B66000D6A9B0C03EB21DA833F19FD06DD06BCA31 +:10B67000CDAFDD06744BE5FD669897D2FBDB3E68E7 +:10B680008B7AEA7BBAA9C4D767D64FAC4FA869D2E8 +:10B69000017F3ADC644A920BEEF07A22811C316A17 +:10B6A000491B3B8769F219A8AB6AD8598F71E6B17B +:10B6B000A597C9109FB85F36072AE8F8B770384DCC +:10B6C000C51E807CBE49E1EAA770261DBBFD6380D4 +:10B6D000D7DE1881730FCAD6DB031FA3FD2C3C1DD8 +:10B6E0002300B718EF568E5F0157B8FB6B38BF22A7 +:10B6F00070C90097C9E1B23F6BCB41903BCD26C2E8 +:10B70000951CB29E023CF92D13E3E33B4212DFC7C6 +:10B7100064DF02EB351662FA3D39C4F6C1244BF8FA +:10B72000D30F9786A78C78E09992C0CEAC03789A15 +:10B73000CE0CCFD80C3C3B422C2F29333BE18F431E +:10B740004F3DC0E58A6837AC276D106F5AD49175AC +:10B75000E02AF64FCBF9AF48EEFCE59738BE8C6E89 +:10B7600046DF85FD3E16F28BFD647F07F3B61D466E +:10B77000F7D41E413B4EEC63F95B9007ABDD78E4F8 +:10B78000F6CA502E0731D96F84BCF699D47A31C6E7 +:10B79000998C9D7CFF8F6ED46C84789766D46C8E68 +:10B7A000C0FBCCAE36809F99BCC2FB02AE83C37E89 +:10B7B000D48B754D2CF71B1E7A0DEB2BC369DA1554 +:10B7C000ECB3A4F20DECFA053CDE5396B1A421D7FC +:10B7D000FC7EC1F9BA82D3639D42E1A6F4BE60BD8E +:10B7E000B9D271D1C9DB21D903B788AF25ACD1A7B4 +:10B7F00020BF9C24E6C07EDC27E13C0572D7DC6AD2 +:10B80000B6433D574598F195C1F5BFA8534B746BAE +:10B8100057803E48F6D613567F4875E11A76CC1D00 +:10B82000D0E7177AE536E0CF3A8857803F4558BCD5 +:10B83000429299BE147606D29BCBCE300AEC0CE332 +:10B840006626574D85C8EE7DC8022E53F3F33A4065 +:10B85000657DB07966BFDC9B2F05501E0AFBE2C7F1 +:10B860007CFEFED69C0D644EE9A022ECF2AB849CDB +:10B8700032791EB32C33290DE86EFC31BE99CFF915 +:10B880000CD2C8401F8ACEE411952B5837E193980B +:10B890003C12EFDB4336E4964814F4BB05FBD26858 +:10B8A0001BFC508A481FDB87F27608FD2476DFFFF9 +:10B8B00059827249C0134E5B327C9FA70B135F0005 +:10B8C000FC6FEC7796C13E3EE3C3DDF4FEFEBFF1B4 +:10B8D0005B60122DDC99BD06E4DC78BF9F74527862 +:10B8E000B2CBFC35A0BFB2DCCE7FB1DF8FF90563F0 +:10B8F000A8E721D08309DB18F8197D1E09B37D69FB +:10B90000C95C35C65DB3414617494A77F3E87731DC +:10B91000EA4FEA600F0F653E05E7C4C5C03E8136B9 +:10B92000D823B47D54F0C3B4BF61C82CFFFBC7213A +:10B930004FC60AE44959A385F252F00BCCB3CC456B +:10B940005716B75F92B6BF68DC3E3E6DDF4CA27EF5 +:10B9500012F460DF9C1D08A17F63AC007A68CC669E +:10B96000DA4328770DDC5FB0967F47E56E4B18F120 +:10B970009531516E4CF39523615C6388D95719C595 +:10B98000E91F01BB7C881CE27AD9C35FF40FF98BF5 +:10B99000FEA7B5BF087FE9CDDEF86049FEEA968BC9 +:10B9A000F25797E0AF6689C92D720CCFC1547476F7 +:10B9B000DE46217F5D1666710AFB2EB60F336AB133 +:10B9C000FD8210070857CE9C2B2DE8FA8064E540D5 +:10B9D0000F3B12C13ABA23F91FDA2077EE4BB37846 +:10B9E000B36E9D0C42BCAAFA28ABC32BB5BE8ADE4F +:10B9F00055E3AEE3FC7E388978D69BD39E3AE5705A +:10BA000063774DB17AD1E80CFEFB075CF84FA4DFF9 +:10BA10003A0DE7E1241D93D757FFBC03E3CD3B6507 +:10BA20008FBC8BF2F5483ACC8F3A87FA5132E66DEB +:10BA3000F239C8F765617DACD9F1DAC2F1A7DB3B19 +:10BA4000D97A80FFE45E8FF1309327D966A903D6B7 +:10BA500083DA0F04F2FEBAC1F603475B7AFEED36D5 +:10BA600090476555B81EBDE1E9384EB3E4AA7FA6FC +:10BA7000EB310EF467672C8417FCA5B132C87B4DFF +:10BA800061ECF7003F376167DF84275E30C1D7D7AD +:10BA90006FE56CD04F83520AE9C181986391F5C973 +:10BAA0000A78C34C9FFA1BB3F89D4AED3DB8EA896A +:10BAB0009C6D627C6C8AE5CF5713E309B3743FA198 +:10BAC0004416DF0FC7271DB80A3A26DC7EC928397D +:10BAD000ACC72FE413E3B324175C3E9B3F22D63B55 +:10BAE000E48F9EE2FCF1AD59FCF134998B3F1EE2EC +:10BAF000EB51843FBE558C3F283F0421DF726F7E9F +:10BB0000E19CF1EB42FAAF4EBF33BAF7417CD93535 +:10BB10004F5F89FD1CBF088ABCCE1F873C1FE4F223 +:10BB20009CE2ED1718571ACD0F845D71259DE21127 +:10BB3000E262671B3FFF159FE720C4C9BCE799F28B +:10BB4000FD07C5E341D370897C3F8FD30D1DB982BA +:10BB5000D417DD9FCAE373FC1C7ED85CFE6A113BE0 +:10BB600068E67D87D587F74D223F8AFDA683B0DF43 +:10BB7000340975085FC6FBDBFB9EC46B7041260F62 +:10BB800047388AFDA7BBFA72789F2E5F23D0E32D3A +:10BB9000BE0BB02E62879C31C5BE54A80F07BCE611 +:10BBA000E6380FF77A9DC9559FDFCA3BF199FDA88A +:10BBB0005294ED4385015EFE23A00F5F22DF06FB5A +:10BBC0005BEA12566A0B9DFF1E3AAF975D726C637B +:10BBD000327DAEEEB2FBC4FE8F3F16F80739BCA330 +:10BBE0008A83756A8ACDEC7E5FEB498C8F2B86F158 +:10BBF000B8E4A23F85DA8D32C26FE139104AF3947E +:10BC00000DFEF5766239289F5BA87C36617FD54AA8 +:10BC1000B2C5C5DF57EA4C7E515BD3CE16E18BAB84 +:10BC200074E62F29460FEECF0D405D6113EC5F697E +:10BC3000F6F4B3F90CFD7C4857443F58C737CACFD8 +:10BC4000FF984D5F0DF89E56FBA467FF6BB439E774 +:10BC5000698F2D15FBDF6C16E33394D7C08FF09BF3 +:10BC6000442A760EABD3DE83E76D3A030A01FBEA82 +:10BC7000F3E1DBF13CCE5E276004307EC8CEEBDC26 +:10BC8000AD6806D8E7B7F8F229886389DFC578532D +:10BC90009E72C049D749DA067D72A6FEDE0C2EC818 +:10BCA00032A380FD1E86F81D8CDD09D66F44CB21A2 +:10BCB0006C9292F69C4396546C3CFF4FD31C0DCE75 +:10BCC000D3F0F1FA175F66059E8F4EA6CF21233978 +:10BCD000D0979A6123FF87F8BA475ABCBF8FE0B765 +:10BCE000BC794C457730BF47FBCDC27CC4F964506A +:10BCF0005E02E32A3AD59308373B3F5FE49177B77A +:10BD0000DC4426F977C5CE799DA643C2CEE1876390 +:10BD10005941BF06C8DCBFE750384E62532A56EC83 +:10BD20003C9552EF135D315F73E5DF4B7FE73DDFFD +:10BD3000E14B403395B04E5755C1BE6493DA9F70C6 +:10BD40007EE399CE69BD574E3FA6AF8673087BCE82 +:10BD500067F979B6AED47CBA0C7F27846AF431BC1B +:10BD6000B2FA4BACCF94203C9AC9D949D887E03D70 +:10BD70002F220C9621EDE7AFB93F1D6EF43E2FAC9C +:10BD8000D3FC0EE7B356EA09029EA29A9EC373C77C +:10BD90005BBCE7788A79DF9460FB5B4AE145269AD1 +:10BDA000A943EC96E7BD25DE16E3BF916176E64D2B +:10BDB0006012AD74F7CBF7AB14F0592C69E2396916 +:10BDC000E4529980FDBC57339E01F97360FD0D2646 +:10BDD000F82F0AAF8710FDF8230BD93EEDF57E59F9 +:10BDE0008AD1EBD14BE7013FDFA1E6B09FC136D945 +:10BDF000385484DEFE4B677654A8376C3DB0AAF405 +:10BE0000FC427E964FCDD86FA430CEB32E5E06F4A2 +:10BE10003B76E49967F09CF4F555C9206D9747B8D7 +:10BE20009D6C7BF5F001BEDFED4023C9C241D4A17A +:10BE3000DE288E7726F8F23AB7577B83D60373E075 +:10BE4000FFBD864FE0F13FB8DC0AF5EA38BEC02BF3 +:10BE500044BC2E69C67CC5497E1E8603E7A7FAF856 +:10BE6000B9176AFEFC1C9EA74A9F075AD0BE322211 +:10BE7000605F9DB009C81B61AF523FC196E810FFDB +:10BE8000AAB378F65E2D87FB708911477B269656FC +:10BE9000B06E3A9A66F5D3337CE8B0F73B5E490161 +:10BEA000DC63547CC37C8D0E19F59B38F731A69A60 +:10BEB0004837B1658BEB816EAE8C307C669AE8FCBE +:10BEC00070DF05D9712DC4399E53C92173663C4278 +:10BED0004E605DF51511C62751A2E3B9FC51C003B0 +:10BEE0005DB7F9B2F979F88E2C97518E2E397ADD3B +:10BEF00053B5B4B968AAAC1D8E76DFC8C731F265F8 +:10BF000047EAE8F3E5117EBEE72AB20AE8FBA6039A +:10BF10003D9703CA6F5A361080EBA726ECCB2165FC +:10BF20007C706883273F546A9FC2DEA6C78F425D3C +:10BF3000A3D8A7401A9BCF500FCDEDC459EB962242 +:10BF40005017E313FB7C5B36609ED4A8577AE0FC65 +:10BF50007CFBB89583FD0FE8D7417E899F7B29F450 +:10BF6000D9F43E135DD4079F40FDB1386216E02D31 +:10BF70008AF443BEF3EF0E9C8710A3741284FE5A1A +:10BF8000291DBAE4EEE208A303B1DE94289D5740D0 +:10BF90004E4B2AFBFD028ECF52F37CB7D7BD7DC43A +:10BFA0007965119EB385D7DD7055E13C4876BD9F1C +:10BFB0005FC5FBDD119E17E6EB4915BFF30AE8AB41 +:10BFC0007398FC12EB5BD11147F8851C14EB7D4E86 +:10BFD000AFF77EACC5DBAEEBF1B61B767ADB825EEB +:10BFE000047D08BA11F431F62EE9631DC4DC56CF86 +:10BFF000DCCF717BC0176775E0BEF8283BCF8EF3AE +:10C00000D737E7A77644D0DFB4F19CA423958B63A0 +:10C01000E0679278BCE87937837D939EF316C43E3F +:10C0200009EA2FE654F48BE873D73C67EF3BB51B66 +:10C030000FD2F68E7815FA6701FD932FE608EC43D0 +:10C04000323F543F873DF11EEC377A30E2C2CBEFEE +:10C05000BB0FF55DEC377A02F03CC4E3AF85E3DB60 +:10C060004613E6B36B7A589EE6FB5C6ED5917CBFB7 +:10C07000CAE24B29CD7DDED5B553D5DF35E1FCC60F +:10C080001792785E0019C2F3ADA876683E3D871E10 +:10C090002CB47FC47E8EB6F4D609381FADA6A7692E +:10C0A00025AF6B61E3C1D8B4FDA3697872BF039B70 +:10C0B0006E013989BFF764A68C767027EBBBD8B9BF +:10C0C0005B149EA5BFCF795BA5F66389F7DFAF7DD3 +:10C0D00058AFF3F93DAFDBAFC33AFDA1F661FD8E7A +:10C0E000EB193AEEEF803ECFB44FF98E8D5156C723 +:10C0F0004FFD7D88DB7F7EE327F13CD7C0F1A009AF +:10C10000F5AC4E7B0AF7B53A55C41AA4EBD65B9B47 +:10C11000863D06704E54204AE7D5F6937F4F007F48 +:10C12000EFAEEB3907EC80697CEBDE73A2060BCE39 +:10C13000891AD4DF9FFD5A83EFDD39510BA3AB671A +:10C14000F75FB83FCA17B90BF55CF02CCF898A5757 +:10C15000D82BF0F7639C7FBA1C7EFF459C0FB56619 +:10C16000F7CECBD9F95004EB5D2E883EB71DF2090E +:10C17000F1F9F663F0FE2F76FFF3E5712A47E30B42 +:10C18000D9F3F6187D0EFEBB96B1212E958D9948F8 +:10C1900077C1B41FCF890936B0DF272109928738CC +:10C1A000AD38176463327D31AC9F38A7C29F607190 +:10C1B0008AE9739A1A583D73293CDEC3EB2721FEA6 +:10C1C00001F27B1F3FA7698C9FD314DCA6A19E1FA1 +:10C1D000EA33B1BDB7CFE675975D787DD497BA0ADB +:10C1E000F01B6C60E7528AF31BC4393DCFF338F182 +:10C1F000BF45191FCD5C591CAD5C66E7750F577DB7 +:10C2000038E68E177C94BF27DA837DD6854FBBF442 +:10C21000B4AF959FA3AFD3FB2EBE88F1F3B0F7DC8C +:10C220006648701E7659AE5A82F8DADFF2FE06FBD7 +:10C230007AD6419C6B78DDE76CA0F791BEDE751075 +:10C24000C70B2A968DFB4774B202ECBEA066B33AC8 +:10C250007283B6E925A8A7593BC19F1B3DAC5DCBB6 +:10C260009EEFEA73D6B9E3818A4EC771C115593F73 +:10C2700085E7410612743C77DD70B3E369279FEDD3 +:10C280003D0A76ED08891863B4FFED8937703FD019 +:10C290001BCD54DAD2294472BF7B310676B6EE3715 +:10C2A000C1EE1FBCCDFBFB0E70EE96FBF7AAA28978 +:10C2B0003CC601FCB569AC73DDCBF3B98184ECF904 +:10C2C0009D17759ECECEBF4EB0FABE9D1C5F7E8E72 +:10C2D000E769B99CC8AC9BD6E3F520A5A750DE2B37 +:10C2E0008DC7DBA0EE80DA978023728F64E3B97A82 +:10C2F000CE7735F220D89FAD3F6E83FCE486C570C3 +:10C3000060117DAF6DBDF33DC8E33C1BC4FCE6FC92 +:10C310004F76E0F9C9E76C0C615E33B640C46F2C10 +:10C320003C47509DD7E9C0795EF7BDC09E7F35CAB6 +:10C33000E28CB18B3A9C43F4BB7BAF09633F4B5B10 +:10C340002DDCA7BEE3E606CFEF710E36D4CF191F62 +:10C35000470DE98AEB61058187EFCB0BDA3505EFF5 +:10C36000D7173C3FB7E0F94A4FFBC83A664F65A67E +:10C37000CFA5BA8B407DE69E759F4B001F7C1BE6C8 +:10C3800047F17F8E31E939CFA64E7BD2D31E88A4E8 +:10C39000BECDF88F9DEF175252182F086DEBCA6D66 +:10C3A0008DB3DFC9023F2DD4BA19CF69819F238293 +:10C3B0003AC950233BB725A2B1FCB2DA69D990A79C +:10C3C000553B6D1BCF0BEB4C617BA03CFDBFA17FB0 +:10C3D000B533CD9EC7D9B9B03B0BCEE711D7E39C9F +:10C3E0006E86E13C1A775D36FFFDA2F99F1CC57A87 +:10C3F000FDA1B2EE35408F7BD66DC67D9243E5DB65 +:10C40000D6009A8E47595D94FDA4C4EA2EACE97D0E +:10C41000F0C7A3985F60E7D84E9FBFC8CF0B3D35EC +:10C420003FF5323CDFB3EE063CEFE0A5A8C837B3DA +:10C43000F3772384E1454D30795A61A65FC379C50E +:10C44000334CEE379CC4EBC5B5F6CF701CE52E1C03 +:10C45000675A0EEBEC3B1F950B50864C69DC719FC5 +:10C46000CF44E5F0C9DF470EEFE4F277ACA09E5D64 +:10C470005C1FF5A54FE13A5B4C1ECFC8DB34D69963 +:10C48000C76363972B6B41DE664D486AA9B1B1ED76 +:10C49000EBF130C10CCE2368313E0E368E4CB1EF3D +:10C4A00019BD0C446C3546FB3DB2C2CFF85FF72393 +:10C4B0009C3A97A385700C819DEF822F22DBE47E4E +:10C4C000909BED9A0C7C3E2DFF9AABAE37E93895E8 +:10C4D000803F97FE550DAF1F20D607E81FAEA5F091 +:10C4E0007DA44B7E477854EDC7562873C453281E4D +:10C4F00017C17C83719DE143E091D3B3D057E2FD36 +:10C500007531165711572A9F47213E3A239FB7FC92 +:10C5100008EAE066E4F3C77F148BBBE573DEE1F95C +:10C52000CF49D01339BE1E4320A7A96D10EC62BFBE +:10C530000B1831587E5389A717CA26F85FE90B11EB +:10C54000CE06E67FA986575E5F1413F5458CFEDFA5 +:10C55000291E29DDA689D77EB81CC629A4DB423D49 +:10C560002EF031116376A9B8C23E8DFC1C7275079E +:10C57000A76BD10E36B0FE4BBD7FE4A673B1BF03EF +:10C580006A71F932D4F7A4C7CF14D7BF8C25BD7414 +:10C59000E6CF90ABA19F60F17E3E1E63F687EAEF87 +:10C5A00049F37DD3485F9106763E8778EFAFF83C3C +:10C5B000051F897DFBB5FC7746A84E2B373E30F32F +:10C5C000FEADFCFDDA107B5E386EAF1837E41D3728 +:10C5D00090F08EFBE9E971D37CDC1E1C37D29041D0 +:10C5E000B9E76F6071197F6D8F8D7512377E2FB926 +:10C5F0001DE56A23D6E3D379213D0D0D9C2743BD6C +:10C60000C2688CC965FB97C423575DE7828FC6E873 +:10C6100073A5D6C1DF1F9AAEBFE0EBA0924DE446F2 +:10C62000D7BAEDE6FD09FCAAE03296CFE0857EE6BA +:10C6300079FFAE02BCD0F7D7CB5425EEE3742AE8DD +:10C640005835BCFAED9DD27536C6E24BD0B6EBF14B +:10C650004AE0C19D11FB600CFB77F0F9486A5BEA88 +:10C660002F6817F631DB81785834ADE3B9BF0AFC87 +:10C670002E6AD4735ED643F09D3F21F48C5807C7D1 +:10C68000739EAFC8AF562E48BDECCEA7BE0FE7F9DC +:10C690007E0BF8B4E479BEDBBC7EDA3D057EDA3D84 +:10C6A000DBDE1F3FED9EF7CE4F7B31F60EFCB4A0D4 +:10C6B0007EB8FA06F3ECFD34BA62586F16FF80FDBF +:10C6C0006BFCBD4EC7E8407F6D89FD18B407037A47 +:10C6D0004707F863ABEC1BC1BE5C9229EFE8B8A03A +:10C6E000F4BCA6F9B4DCFE15C03DCB5F16E7574697 +:10C6F000650F5F9FADBFBC47B1319E3464AEC77C50 +:10C70000DF4C3C8BB58BC4934EC75C7ED3FF0726B2 +:10C71000B53DC500800000001F8B08000000000030 +:10C72000000BCD7D0D7854E595F03BBF99BF247784 +:10C73000269364264CC89DF037C1094C4280608323 +:10C74000DE848041D10E946ADC8DDD01438D5DBFB6 +:10C75000768AD0E27EB07303814012608828E1A718 +:10C760007608606D57BB23AB40D576276815ABEBD9 +:10C77000464B5BB4B88D54DDEEB7DBA7D9565BDA18 +:10C78000C5E53BE7BCF726F74E12D076FB2C791EA9 +:10C790007D39F7FD3BEF79CF39EF39E7FD99FC5A49 +:10C7A00016996A63F47719FEDBD224160B61F83709 +:10C7B000FEDD3836DD9580F2D346E1DD66C986E5DB +:10C7C0003BC4065BD0CB985C678C4C1319DBAEC0C6 +:10C7D000BDB553AB4CE268F9E2DC867C612E75276F +:10C7E000B122C6ACBC6B76F0FF7CDE168376F2B36A +:10C7F000F051EBFDA53916110A4761AB2FC2622E2D +:10C80000C6260BD038B46772A5654B10DA6F49D1D4 +:10C8100077C9156BB7D4C0F7308B74B1D1EF6B44C7 +:10C82000A90CFBFF65BEC018B477D07FCA8FFDAAE4 +:10C83000EDC813D46B764BBFCCA77A8CCA59007D58 +:10C84000368531EF6796495BA1FC56C6E2A608F42F +:10C85000DB0CF930EE3C1F4B75013E662143F51FA2 +:10C8600070C57E99AFC1DFE21D64D8EF06A862846F +:10C87000F2EC3E63EA9801479DB62FAF1C2D77F08E +:10C88000BEF2E2D827988FEC34DFC0A269E8DF1649 +:10C890009C6A5FED1AFD5E2F18681C6FB8A47AA41D +:10C8A0004736DD0F7E423E98A8DFED62B9AEDFE885 +:10C8B00068BFD1F1FA652C20BCEF54601363C20B42 +:10C8C000B1D3C83F91CC30D1B1B78ED51A6643DA17 +:10C8D00074C1863063296AAFB78F19197DFFB5809F +:10C8E000F4F234A5D978747BD49D6A8EC2F719E12D +:10C8F000F80F8C306FCC187AD239195233FC07708C +:10C9000077B8FC709781B7BB3C77B4DE370EF5CBB8 +:10C9100076C877B74F3E6E82F95A164AB10BD08E61 +:10C92000E3508AAD0E8FE2F18D30BB01F1F8C6A164 +:10C930000B02C72F49DFDD8DA211E18187E6E50FEC +:10C94000B926A69B63C3B3558D05904A4F5635CE85 +:10C9500099B89CDADFBEEBBE9D3E0DF83805472442 +:10C9600007E8E4340F8BD12BCC9B9345EEE887F19D +:10C9700039A71AE59C5963DB1B29B7E17DFF9A8231 +:10C9800089DBD9316D5E71EC8AE3F8B97FCD1C6C1F +:10C990005726390B7FB4F9F475403FA7047281FD27 +:10C9A000EFB5D6DF0B78DFFF9A5DB6F9F0BB57BE67 +:10C9B000A0E183E021DFD27B713E58AED005A9779C +:10C9C000E3F2B772A0BC203311E56A4FD8588FF953 +:10C9D000BF7ED52EB3086A13A81F52EA9733266686 +:10C9E000EE7C2B1FCB3759453B94EFDDC40C6628FA +:10C9F0002FB7B3F43128D39580FFCD18C5570CB1AC +:10CA0000D3C80F8E706C8A51A4F2CD69A0A3336491 +:10CA1000642CA4C1EBB153B66825F65F9ECFAE304F +:10CA2000FE3FBAFDA7A0FDDC4FDEBE1062034AFB4D +:10CA3000734CD4BE60EC417D5C0F7A2538B69F3DC7 +:10CA4000D227C43FCC3663FBCE50643AE23F865FC8 +:10CA5000B2DAC77CA493A3C3F88E250FD2DA0F12E3 +:10CA60000C5356D73E324F41FC3F9FF71F951B4951 +:10CA7000DE557E41BD88FAA3C3F6F3A277810FCDC0 +:10CA8000F67F2F7A17F8690B16F1C3770BD08FE476 +:10CA90008B5DBA711E63B9F82F2342974D1980B789 +:10CAA000210C7C362CB8A93DF87EF9327CEFC0EF22 +:10CAB000C189C7DD61E0F3D26167CDC7C791A3FF2C +:10CAC00040FD05ED75E4F272F4077436FBC4FE2EEA +:10CAD0004DBBC38291E883F8489A750EF1481471F2 +:10CAE00075C3505E594692611DF98EE12996817693 +:10CAF0001C3157BC0BF8D975FEA48CF4067C2305B9 +:10CB0000B5502E62FEED90564F9A1E97515F7D08EC +:10CB1000B43405B17DC80F29FDD37CB38C3D6F6C57 +:10CB20003D872DC50417F6CFBF5FB5BC906628378B +:10CB30000E89C5E52AA4B3269FEA65241C3F8C25EF +:10CB4000BEC83F0E9E0A5EE58CEBF30DE757A55E6F +:10CB5000D0E47BDCB9DEF7AF837FCC67F369FE4DB1 +:10CB60002DF9A4375D1EC6168CA5FFEF12B1D40BAC +:10CB7000D346F9A45BA1BF9C64CAFA2919110EDA45 +:10CB8000D8405715C2424323E03F45B23D89749DCA +:10CB9000E1E6F367BAF4E906A4DF7E1BCB74018BF0 +:10CBA000385A8D0E09E6332803BF825E748598518A +:10CBB000ABA7C5D65EBB04F0D4D6EA17317F0A6BAB +:10CBC000A27E80C784013FC2D2E9CBD05E41267FDE +:10CBD00078FB42809B8A4E4FF1D2FC0D9B7C08373C +:10CBE00035204C7F043B8C53BDC48AC3C65A840392 +:10CBF0009BA7407D616D9EC8106E5C727A11E457F0 +:10CC00006D53CA37DA8C388EFB1B6CC336CC4F069B +:10CC1000F4FA5291AFA0ACFF3E864E2F30D207D02F +:10CC20009309C71F463AB911CE3434427E04E90451 +:10CC3000A6D132375FA74D97CA1661BD5EA413D047 +:10CC4000D3D1B4DA817408F771B97685623A3A4D76 +:10CC50006F2A273A5535713AEDAEF3503F8F63870F +:10CC600050FFC64BF98B685C0626E37CA872E9216D +:10CC70009E66ACB2FEAC632AFC335C7BFA0143DEF9 +:10CC8000A89E09D77A1721FD8847801E5575DE06B4 +:10CC90001C2FFC7BC8388FAAD2DF01FC1FF0CD67A8 +:10CCA00082B1CFB961DC939B07072C22DA87190385 +:10CCB000DA033D16456EDBAAA9DC625338FFC238A1 +:10CCC0007A90B176EAF77BA007CD16C69E49D828A0 +:10CCD000FD878440E937133E4A0F254466067EEC03 +:10CCE0004B8428ED4D44284D266A29DD959028ED8A +:10CCF000493451FA8D4494D26389664A8F2462D4B0 +:10CD00004E2AD146F0238938C14F263650FAF7090A +:10CD100099BE6F4B6CA7F4894492D2BF4BF451FE7D +:10CD2000738914C1A7128F51BA2591A6EF3738869F +:10CD30000E7E09ED9B1F9822B8DE7DAF2492C1794B +:10CD400038B12316D9CCC659CF13C985584F85079A +:10CD5000A64DBFA29D02FD549935F69FE9A24D361E +:10CD6000E5612A7BD92C4C93253C4D79187D4FFBEE +:10CD700010EE774FE17C75F1D56684CD2E6847B310 +:10CD80006E9C70F3F9F9DEE6E5935668FAEF57F812 +:10CD9000F1698381E7CF8C8D9B7F22A8D65F3B69A9 +:10CDA00045786CFE498391D68DECF19C721B494EFF +:10CDB000E65D8C6E41BB61C8900344043BFD5C9C06 +:10CDC00060265B584E1D6219957201368966D2D372 +:10CDD00096F3BCBCB0D94AF9F32F4A522ED059343D +:10CDE000B0382B81F19D8F6DC907D86680FA016834 +:10CDF000322722AD46BD6064F1CD58FF5C44DE0DA4 +:10CE0000B06F8A399E037C2D5D8A4A06289F57039E +:10CE1000FE07F16D4CF51F4E213F9B2F6EFB4FD34C +:10CE2000AC51BFC2CC62D4FFD3727E0CEDA479D2D8 +:10CE30005A13EAF786F371E778F377F2EC6A27D6AC +:10CE40001358D489EBF389B360075CC15EA4954B9A +:10CE50009D1F10B20F8DD24B88C70DCE681CEDCC34 +:10CE60002D09265F9886FCC3D35F2974369B413316 +:10CE7000023E4F9F3392BDF73D4BFC964AF493DE42 +:10CE80003646FA615C27CFAD96719CBF7631D2D21F +:10CE900003BFFF4A06E19302AB423BD66C8EC90644 +:10CEA0001CD754568D74387D7E2DE59F08B16ACA13 +:10CEB00077015E1A3D77D21CA3F64F9E3346645C21 +:10CEC000B7A65A75F6C8E9F34603EAB193678DA988 +:10CED0009CE0E8B8A11F27DA5B27CFAD756AFD8516 +:10CEE00085C3FAF6170C65F577F6CAF6D3ACA7F446 +:10CEF000FD871FD7D737B338F1C5D3729E84F33679 +:10CF00007FF0AFF9BC9D8B8D3B6F27CEAED5CDDBCF +:10CF1000C9B32BAE3A6F19FDBCFD37CEDBF74AE340 +:10CF2000E4E7CC87756773D5E8FCCD17B8BDB55578 +:10CF3000813B2F59499E276A3FE7625714E53AE73C +:10CF40006252E0698AE47EA2F2959E20F145E7C52F +:10CF50003495EB0CACB0AD728DF69B5D7EB227873D +:10CF6000E471BE8DE777061A6CABC2DAF60CD9F91C +:10CF7000C23DBA7CA53E1A5AD703FD3D853B64EC01 +:10CF8000CF07E5C3587E35F53FA6BD91FC15C2BD60 +:10CF9000BAF6EC84FFFC80DADF6A61BCFA951E1EEB +:10CFA00057E80C54533C0352F247CDE628F1D90917 +:10CFB00094BFF058F97BFEF79FA7793F31B8D68927 +:10CFC0007C70FA7C83C4383F13BFAAFC29085C8EAE +:10CFD0004E9C35318C4F64CB81D5ABE7BBA7C528C0 +:10CFE000B5F7A95F003F68CAD5BCAA874F9EE3FC8E +:10CFF00074428C5179D6E6213B5B1DDFCCA31A7EAF +:10D0000082FF4AE359F5157E54FBCB9E4F7F4C5F60 +:10D01000BEA0E9CAFD67D7774BFAF2F9B59FACFF1E +:10D02000DC88BE7CE8907E3C6AFF13F1EFF4BDFA29 +:10D03000F2537BC6EFFFC404FD07657DF9B20DE333 +:10D04000D79FA8FFEA17F4FD479ED3D757EDBCAD95 +:10D05000D196E81A11D691B3929CC17504FD0901CD +:10D06000F32579A886B479FC8080EB89C8F5B4B241 +:10D070008EA8F1A8FD95F29BE8770CA14105EBDFA6 +:10D08000D72B8708964CF9041FAA4CBD89F1AA1426 +:10D090002A078043CFBD41F9763997A11E0B5F3A2D +:10D0A0002E7D1EE35F60F8E2FAE88C3D4C306BB2F7 +:10D0B00093DDE6DCF83EFB3C947B5185373C2C1D30 +:10D0C00081FC06F4E36B71DD7B86DD8371815D0697 +:10D0D00086766EDE548D5FCF300EF0A48CEDD9C114 +:10D0E000BFC271D93716DD89F198159B013F585F92 +:10D0F000937393D211B47BB0BD129C284D5C019CFC +:10D1000090EEF5B7DF4C7609FA0AC0DFDDFEF4B920 +:10D11000D5507EC7ADD6483F7C7AD0926CD6C64FEC +:10D120004E2A72ADA6F0D7E8C3F5BF96C7F76026C2 +:10D13000582BD44791417C4C8D4564979A6AB60F21 +:10D14000E23A6DAA71BC63CAE3E510EF5C2036D207 +:10D15000C5D4FAF0FD84C78647D753F9F889AF12D2 +:10D16000DCF6E20394AEFBF1FFC5EFB0EE9FF4A056 +:10D17000BFB2F1FD4DF45DB1073630E1F40E1CA7EE +:10D18000C4FDFB470C83BFC0F544DE641511DEF916 +:10D19000B7434B91AE7E562A6C86F411E98D5FE45D +:10D1A000E07ADB08AE180CC59FB1D33AE06F140EDD +:10D1B000DB91168A1DEEC77FC3DCBB33FECD5D500D +:10D1C000CF1D2B4F61FC6487120FF8FAA664BD15C2 +:10D1D000FD8835ECC963C042EE90508FFCE06E8C48 +:10D1E000CC231BDCE525BBDADD2A50397B2836054C +:10D1F000DDF20306A1A19BEA717C1D538D3ABDF5BA +:10D20000480CF083FC5FB7814B04F925993709DF9F +:10D210009226A11CFB57F12B51F0F320FE5E8CF3FC +:10D220008987F5F8A5DA09BF7B397E9E9048F879A1 +:10D230009A387EEABC7ADAC4762D7E8714BF7F0CDA +:10D240005EAD0ADDE21CAF808257A00DF0D2D02D7A +:10D25000A0E055A2D0B5A42D1BAF8C01C7277F99A4 +:10D26000E355124A115E256D7ABC4AE2292AA7E2EB +:10D27000F5358360ECC179FDF204748B2BF8C91C81 +:10D280003F51C14F5CA7A79BA8E057AAD0AD745DE2 +:10D29000367ECC68F3527C8CF02B0D0D127EA5EB04 +:10D2A000F4F895CA83062CE7981A996E242C52BA82 +:10D2B0003850367E7B3EF3C86913C60F02B08E012C +:10D2C0000E0E57F475DC1778F8750B433F64E0CE0B +:10D2D000AFF88680EEFB3EF3C866B4EFBAEEE4E545 +:10D2E0003A2BBEE2477DF89E35FEE61AFC7E97910A +:10D2F000E4D3848114D427E5D67EF4F7B3F5A4589B +:10D30000C0ED8C7D7756937DC6CC7103C6D34D0E90 +:10D31000A5DEE7943881F2FD618189E6D990C29853 +:10D32000495FE0BE44ADD2CFF55CB1DA40FFF49680 +:10D33000ABF9E9A56DA06728467CBD521EFD4AEBFE +:10D34000487D19C7DFDBA0C2DF5ADA067E418F2392 +:10D350002B1FCC510E3F41ED15B3981DE3980B1ECA +:10D360003CB4D406F2F3AC51ACB0015C291FDAD165 +:10D37000583A71FEE71F3CB4A3E986D1F13F183358 +:10D3800037A5C6594728120174715CF4B3D41CE860 +:10D39000DF136F433DE730A7984753DE7131A0CBD1 +:10D3A000C738A004A65474EE3A03C6BB9715703D67 +:10D3B00028B4C465B457CA5A62ED98E6845212D2B2 +:10D3C000BB281C6F477A14B7F0F8FB368B94417E6C +:10D3D000DCB694A5DA9538A4A48DFFD4CCBBC78C59 +:10D3E000FAB149AFA7D5F5CC71D1CE520563F15D45 +:10D3F000542052FE28DE2E2AF7E72F5F312EFDC67D +:10D40000960F53B9812113F931DBBC8CEC388BBBFF +:10D410002F23C1E8AA4C31DB0DA8BF271919CADB9D +:10D4200098F9F29A8787425A7A982F206C940DECDB +:10D4300032B8D0152C4A7168BBF29DCA05B19F86DF +:10D4400062161E2D4FDF4D63615FCB3DECCE5CF469 +:10D45000C30B084FB5DF5D05211E1F3347284E68FB +:10D46000BA5844F91B98223F2E1E3FF2ADBB87AD40 +:10D47000D0EC53997C2C63C7F54989F7190C4C897A +:10D48000EF7218036588F744FB510F168CEC0B3DC7 +:10D4900058F031F68546F6CDC25C2F1E9FCCF1EBDD +:10D4A000AC341EDE0C70A79BC372AE95F29BE69D5A +:10D4B000DA8E71CC7D61A301F5CB604BC3399C97AB +:10D4C0001C9F5544B83BCCF7D97C8134F1F58C399D +:10D4D0004A5C9A19D965D08F5D963443FD24CF35C7 +:10D4E000336CEFFBE53CFFFB6E8E8F333C28A07F57 +:10D4F000B2CD1EEB33801DB0A470F12D669053F3B6 +:10D50000A2541FF770DF5A7A06F48AC3A8EA81B6DC +:10D510005B24974257D0237BFA96F7C8286F169E54 +:10D52000BFD7F72F3B101E78E7AB7ED28F6F3FE05F +:10D53000C375BFD31FF3E3BE9C608EB3A8667F2A7A +:10D54000A779DB20C5CB02FA7D909D0646F159D91B +:10D550006F23BDA7EEDBE51A251FEE5FEE52F6BD89 +:10D56000769DB7A46418D776438CBE876C43DB31B5 +:10D570001EF9B0E8A57DD0F78ACA757A3ECF678DCF +:10D580004C1D677FA84BF11FF7630A6319081DB78D +:10D5900021FE03ADC7B797E3FCB41819A813D665ED +:10D5A0008D374D87F63B671919EAF5EEE6B53BA6D0 +:10D5B00001FCC1AB168A8BABEDFDA888C765B65AD6 +:10D5C000E26497A9FB059F05BC919FD47277157201 +:10D5D000BDB4DF0A72E942F9733319F8D6BC493099 +:10D5E000209F1616F17C7708F40DF0A963727FCCAA +:10D5F000007337FFE15F2FB5817E7538147D2EFFF4 +:10D6000066A904FAB850D1EFF31FFE0DCD036BD419 +:10D61000EBA7620F872D38FF3330AEACC033F578FF +:10D62000F5266AABDEB5603C50AA7A17E8B22FD176 +:10D6300044E94476FEC74D553A4F989FC7E950518B +:10D64000C7E7DF3A37A4DB9F78AD50B56739DEFE18 +:10D65000497CFFE5E3F66FF65C3C341BE66B5D85C9 +:10D6600055C4FD872EC3DA978B91CF0CB6F43148A1 +:10D67000F79D3791FFDA295AB93C4A9CCFE4662ED0 +:10D680008FEF26CE084791D76DFC7BA16825FCCC97 +:10D690009E6637F279F6F8BA2E1DD95E0EE5BA6BA2 +:10D6A000AC91CDC01F03E17E823BBD7CDFB32B2F4D +:10D6B000D546FD7DD126F6A3DE31C7CF04917F5F2D +:10D6C0002F20FE5D630218F5C53F5B281E3AE98BEB +:10D6D0006D6FC620BFAFD01541F5E8AA3EE5437F88 +:10D6E0003F5D6423BAB88C2C46FB4B2B410FEBD625 +:10D6F000A55785A31A3D5A5CC8F779769BD3740E5B +:10D70000A25B7CEA0CF2B97A0EC216E4F038E7208C +:10D71000225EE8C7628ADFE947BC4C39EC18EAA709 +:10D72000BB96E43D8FF6D12AB380EA2E77CF96BE22 +:10D7300035E83704AD22F6B957918764225DD541AB +:10D74000FB20111FAE03BD00B702BC3771AAAAD5DA +:10D7500082EB6EDA46EB8EC126CBD0AECF109D05A4 +:10D760002A9D7DAE68EE2DB68520CFE5B21FF5D29D +:10D7700099BD8F7599FD688FA4EFBF1BF2BFEB0DAC +:10D780003BAD76B4BB22F625C0DBCFEEBDABCB5BA9 +:10D7900081E34A5FC71418F55A1FEA0928DF5228A7 +:10D7A000DD82F59316557E6ABB711FC535A2E780F1 +:10D7B000FF6CB80BA3C2EB6F467BC7648DFA04D035 +:10D7C000933FF332B9A94E633FC9E19B512FAAF6AB +:10D7D000D24FF77EA90BE5CFE4C8B431287FB8A8B3 +:10D7E0008AF055F32BF66DEB96691F5032201DBC65 +:10D7F0008D0E8A5B79D94AD28316655D646D9FD59B +:10D80000E9C5E6FB3EABF32B9919E808FA34C604E8 +:10D810002BF211A8367608FAC979294070E7AD6075 +:10D8200006C1F8B77A3D2FAEC2F870D4C14C82C69B +:10D830001EFD0B655F05EC4AA47B110BC9E80F7751 +:10D840000AC28B16CC3F6D65B6EB311E64DC86E7F1 +:10D850004BEEBED349F55B0D914109F3B79A22C750 +:10D860006886997515E4E740FBB43F62664BB620C5 +:10D870007CB684FCCB2D066630237F2D65C4C7B1F2 +:10D880008060BD1BE0DFFDD841FB46F017B51531C8 +:10D89000760B1F1AFA65E601C82F08195228A7FF50 +:10D8A00074E60D6F3B7CFFF4DC0F7A56413ABB887F +:10D8B000DBCB1706CB673D81EDCDD9B8244F44FEB5 +:10D8C000E2FA7BAF2287DB2C423DED9F2F3050BF29 +:10D8D00003CBAD56F4FBEFAF6711A44B6CA57515E8 +:10D8E000AE3FEAFAAEF2F959AF89DA7FCDCBE52443 +:10D8F0007B5DDFE63FE1C375F7E1A54077A4C31286 +:10D9000098E549981BDBDF0EF0AA32AB88F2ABF248 +:10D9100035F209D2579E9943EBD9CF97AD5E82FB82 +:10D92000D1AB9AC445E82F17FABD2F22FDD67D1F33 +:10D93000998EE42386E7733A4BA707B19D1E03DF58 +:10D940003706D8CFCF67C822FAC79DA5451467EE22 +:10D950001DC9B7321CDFEAEB72FA3156B03DB8CDC3 +:10D960009487F81C0C56D3FEBA479AF34FD86E57DB +:10D970006E35AE5FB0AE82818774B3B114AC07C7A9 +:10D98000BD5CBF46E79AEB917F8A40FFA19D2134A1 +:10D99000C7C95E2E6B06FB19EDE4DA21F21F72EAAD +:10D9A0008665B49FBB2D9201F945AE32103FE4D796 +:10D9B0001A594AC3A76EC9C1521AFA9D2F342A7A3E +:10D9C000BC45C07D5483B4C07419525781749317F9 +:10D9D000E87D13D2742EDA47713FAE07FBDCAA9CB8 +:10D9E00005BB32AEB1F6B9E73FEAC81E1F638F66CA +:10D9F000D9E76ABB1D2B7FD28CF356143032D4DFAB +:10DA000045816A6ECF37EBED907AA5FC1BAEE8201E +:10DA1000EA3DB4FF70DEF778C52BF245C7CA3B4834 +:10DA2000AFE780DD803E574E4B35ADDFD9764EBE39 +:10DA3000818FEB35EF4D37A3BE10AC9966D4573FBD +:10DA4000DB1BEEB2811C0B1E75DC9FEACE80BED9BB +:10DA50000274A6F35B8ABEC81EAFAA3FB0D9CB86BC +:10DA6000ABEB0FDCD3C179586CBA94C17DE0754B38 +:10DA7000B91F2BB2A9B4BEF585F83E4870DD41BB95 +:10DA8000D66E3B087C7394F6016D943E9C1028FD85 +:10DA90007AC2C78E92FC89947E2D11A2EF87131152 +:10DAA0004A5DD6CC8E72E26FC53F4D1EFFB21BF4AD +:10DAB000B9E8137A6C30EE2325912FA0BE17FBB680 +:10DAC000DE4CE3B766964EAF22B8AB03F4FBA198E9 +:10DAD00091E851EEABEA92C1969A5A22ADC6F22D68 +:10DAE0007D8165E85F0A8A7E05B847067AB91C52CF +:10DAF0003FDAB50BFA36DE8CFA7FEA12559FCFEA91 +:10DB0000417D9D5DDECBA2F506A06F51B3547F141D +:10DB1000E305783E0EEA7B57AED4EF4FCB2BF5767C +:10DB2000554B9CFCC69C90BEDC6AAFC0CF53287A94 +:10DB30001AE4240FE5562E350A2827B699B288F63E +:10DB40007977D8E3413BB653886F47F9ED0C94BB26 +:10DB5000117E376C6C4AA15CB7B0A6A748EEE34CC7 +:10DB600080FAAE37D61CE1E7BDB81EF7D44508AE43 +:10DB7000C0383AC6F187C401B43364C9367C0CE9B5 +:10DB80003D04FA1ADB6D8CD0FEDC245CE7D08F9B61 +:10DB9000C9E30A05817E8671571673C581A7D9DA54 +:10DBA000335503688704A03E8E7FB1A9EEA5400DD2 +:10DBB000E141764B272C2BA5D06FFE9D2C228BB8F4 +:10DBC000EE5849BE0DC97AE23B77935527FFEBCF5C +:10DBD0007EF9252C9FD3C6480FE5334D3EC687B24C +:10DBE000E03F14733DB461680FED7F4B85CA798BBC +:10DBF000396C0EDA2F6BE3F14E5CC236B4465EC26E +:10DC0000B5F2C3404327EE978FF8838ABF50A1F047 +:10DC1000776F229A427BF6C64B09F23F7B0346851B +:10DC20000F7EBC3403ACDE6B16EDE3C5BF1F2F10B7 +:10DC300075FE434113B4A399DF81A1078D74FEAE35 +:10DC400085EF77740FDD6D47BDF8700BF8B357D8CB +:10DC500067CBB968D2F9AF39E01761FF3917ADF476 +:10DC6000FDBE02E9AEC2B988EF3F12BE964A631408 +:10DC7000E32369E4074DDCE36EC58EFB7A21F743AD +:10DC8000938928D9EDFB12CD947AA548BD99330923 +:10DC9000F1A56132B7F30BA2FAF8B4AF457F8E6DF0 +:10DCA000306324BEC2736FA80F22032B07D16FF518 +:10DCB000A10D24A21E93693D17D05505F8A1448CEF +:10DCC000FA43BF05F9BC68A5BEBD64FD576CB80E2C +:10DCD000DFDF9E279988BF1BF2715E936EF08F5C29 +:10DCE000A3F851798D3D0FF6745F079D4F6049B4DD +:10DCF000131DA17406F1C80908D568FF3E5F7F8235 +:10DD0000E1BAE48CC50CD84E51206E6040AFE24BB6 +:10DD10004718C205CB989C3F1BE3A85C4EBA4B59F1 +:10DD20002A6CA0EFCC86F3563AF84458138FEB2EAA +:10DD30004DFB5C1AFA6EADFC8A84ED776F02BF155D +:10DD4000E53BF3001373B17F9077483D81C800CA6B +:10DD5000AF6799508EEB79F747268AC77607D33E8F +:10DD60008CAF7457CE2BC673964F2B7ECB183EB01C +:10DD7000CDF954AB860FDC0125AE94E5B76D2DE4EB +:10DD8000EB5044E1838A46C53F7217D1B9CF6C7E10 +:10DD9000E84DC88AFFB69D524F93648869E86C9934 +:10DDA0006C1C970F0449A4720F2592546F04AF2680 +:10DDB000FD7C66CF6FF6FC599475B3ABE2518AFBDC +:10DDC0003B424C36CDA6F96B96510F0E3CC0C20AB1 +:10DDD0001DEF43F8A32319B28F2A5878BCB8525DBF +:10DDE00011E7EFEECA47659CFF0F502F7B47DB1B07 +:10DDF0008FAE1D0563E99ADD6F369D1D81145BE6CC +:10DE0000A27924FDF08F85936FC17559F59B17E3B7 +:10DE10005E710EFAA7623BF2B375393F6F3D111D7B +:10DE2000B3E9962D6713D16D9762C782C4939DB2F3 +:10DE3000A5D22AE03C0FD456175FE97C8BEA4F8DC0 +:10DE4000C04A5C86C9CF77E37A97EDDF78D0BF21EF +:10DE5000FFE7C55B30DEABFA377F510CFE4D40EB80 +:10DE6000DFFCE166F48F54FFE533C54F90FFA2FA63 +:10DE70003777EFFB6FF2AFD4FCB5C5CF7623DD4625 +:10DE8000EC956560AFCCFA23FC1BD628BC1F1AB5F5 +:10DE90000F271A373A1CEF6BFCDB6EE59C6576B9F1 +:10DEA0006831B7EBB728F6F29C5719D9EFB749425A +:10DEB000159EF352CBEDF1AAFA54EF4FB81B19F9A6 +:10DEC0000FB7492C82E5C19F58B286FC099B981375 +:10DED000D1D6673CAEE3E0FA2D1B8F7F55E286DAA0 +:10DEE000784F3477941F7E34C744F2991DF7A92CDC +:10DEF000F6901F3C12F76105B74875A3719FCAE2FF +:10DF000002EE5766F1B5DA6FC816233B4E8D73A942 +:10DF1000DF075A8FDB48CFB5AEB5E1BAD5D9DC40C3 +:10DF2000FBBAFBF3F87CFA1FFECD5219F8E1B657A5 +:10DF300023C50BC791CF182E09D56897ABFCF58583 +:10DF40001F20BFA8F6ED2EEF3DE40FBB3166E3E1E5 +:10DF5000E9A4EA513CA7C11A7CD98874614A9CA003 +:10DF60004D893BC5C75DC72C4AFC72240E3499C746 +:10DF700081B2E5D0B235791AE594F9CDE4E73E9463 +:10DF8000D840ED59EC2C7ADC35561EAFAED7B8DF51 +:10DF90001261FCBC73F67AACA66A390BFA0958DE3A +:10DFA000608DF273BF3111F76FC6F82F13EC27A8FD +:10DFB000FE8A6A67742A7646E7D03FD8707EBAAF89 +:10DFC0006267382E3A7576C67D05B12F14CDE5F11E +:10DFD0007F81E28D79946FF6D83AF26AF8FE30FAD2 +:10DFE0008D0FB8625FC272B9B60C6E8B8EECDFF625 +:10DFF000297C7666AF48F399B483BF22A09D5BD598 +:10E0000085F6B7C9CA82686FFF6CEFA7BA3B805F1D +:10E010000465FF29775FB41BF9E74F8D77AC52E4B5 +:10E020004A8DB36D53E47820D44F71DAFBE75A235D +:10E0300018A7DD3977DE4F5A00DEFA4601C5AF1664 +:10E04000783D7C3DB2CA7E5CC7310E857EF902D533 +:10E050001F2C8DDF89F4ED60C6C86648CD77DD4E94 +:10E06000877FA50FA2F21094C9C3F30720DFB9DEA2 +:10E07000189DD706FA3C5EA0B10BD5F3088F2BFC98 +:10E08000ABCED7C3CAFEE17B0D31FB0DE8AF7FCE2F +:10E09000C8F01CD9BE40D6BC29EBDB08FF8C9DB76D +:10E0A000C345C84FE628CD9B4599B76C7F50A5A7BF +:10E0B000F563D2F3F6563DBCB2450FAF58F9D92CF3 +:10E0C0007F868F0FFC077E7E5AF11F1CEE33ED38E2 +:10E0D000BDC5AFAE3294B2B1F63EDAF1B86FE260D0 +:10E0E0003D74BE8085F4FB446D3E3EFEEF16819D7F +:10E0F0008F0144C5CE5FD72CE6E07C7EB54DBE09CE +:10E10000C7F461A0FA25AD9DAFC66327BAD7B3C6E1 +:10E11000C4E2E3AD03311F8F975E2D4E8AF1D5988F +:10E12000262E58FC90F76699F633B89EB9E7266E0E +:10E130004F7F5F89A3DF54CFEB3D57C0D4F583C534 +:10E14000600007C04F8ECDE07E32A6058D9201F5AE +:10E1500099C5CCDBB9238F8DABBF26B5E9E1ECF8CF +:10E1600044B67EDAAAE8DFB71EFCF6CDE8CF9647C4 +:10E17000D7D951DE96DEC5ED46556ED434506C507D +:10E18000ECC5F8426E2F6EA0F4A184BC10F5EF56DA +:10E190000BB7733AC1CEE9D7E8C3C513F8111575AB +:10E1A000FCBE8A75A9487EE627B51BAB157CB2E399 +:10E1B000FBAA5DA4AEDBD9F36953EA59947D518D76 +:10E1C000DCD88AE76AE586EF875A2E1AB2E52B5724 +:10E1D0005FCE7C45F94276F838F1953F56BE707DAA +:10E1E000423FC26A8EE9EED5FD3F258E9E6EE6EB7C +:10E1F0000EAC8ABAB8A59AAFA61E587910FF5F1662 +:10E2000089441F81090417B1A801CF55080E1E6F5C +:10E2100042FD4CF1962C7D7DB5F57A7A119F17F071 +:10E22000ABC9AEB0209F013EE9161EB750F1AA2D32 +:10E23000E67EC9D262D5AEE2EBFB7E5CDFA78D5DE8 +:10E24000DF275ACF4B5AF5FC53B12C2660BFEABAF0 +:10E25000AEF6F771FD9388826F45634CD0DE9B5319 +:10E26000F11DB1C7DC7A3E1CFDCEED349B42078F19 +:10E27000553CDC817A6F323F97A59EDBEF54FCDC86 +:10E280000F15FFEC2F8AF9FCA8F04476F2C78DE356 +:10E290007DA4F88713B5F3E75A0FD47E3DC84760D5 +:10E2A0000F7F65DF93C4471EE423F22B9EECCE0460 +:10E2B000C6E2952DBF7F6EB952F1EC457B05D6F1D4 +:10E2C0008F1EFA6FC55E11838608CEC313DDDBEBAC +:10E2D00046F1BEBBF8D95B90FF47E2A2F772BB4B99 +:10E2E0008D8BEEC7B86810E3A2DDA45FD571FC4F3B +:10E2F000C5450F605C14E4F299E2B7BBB571D16714 +:10E300008A7F720BE2EDB166EC181705B8BBA382E9 +:10E31000B143AD46C2FB39F0C3B471D10FF6FD1B5A +:10E320002FAFF80B00776BE3A23F2C7E8DF6C14632 +:10E33000E3A27FA07DB0ECF29AB8E8C0D19A3F3D4D +:10E340002EFA51213F6FACC645FFBE98C3D80FEAE5 +:10E35000A583A1FE974380FF45F44381E4538BBF1F +:10E36000FC4DC4F707C597BA11DF7D4B14FE6297C9 +:10E3700038BECAB9A78BC5EF91DE3A18ABEEC779A4 +:10E38000FD05FAA540BF2923E5FF8BFC60757CBF26 +:10E390002DFE40373E51BECAF836EAC777A298C76D +:10E3A000778B9AF9387D2CD98EED78A332B553A2AC +:10E3B000DCAFF6B5EADBF1AF4CB7A35DC3D6ADD4A5 +:10E3C000F1B9A3254EC763BDCDF200E68B7294E28E +:10E3D0009F25F7E9EB67B7978DE7D5E8ADE259BA26 +:10E3E0008EE3394919EF183CA3723D85213AF47840 +:10E3F000966C48C9F8FD5F8A456A37A7453260B513 +:10E40000B28D1CDFB3CA7C623F389FFFA6D049851E +:10E410005F516075BE41A8B8BE335848CFFA870E29 +:10E420000FA01D39915FF3C7A6AADDA3FAF55F53CC +:10E430006035DED29BB57F9FEFD3C79D47E2A865CD +:10E440007C1D7186F4EB935BD2C36A9C7AF23AFD31 +:10E450007A945FAB2F57D0A487D5B8F6681C9BD3AE +:10E460004B8D73BB0AF5F43B182A7F39049F6EF37A +:10E4700081BC9847E525E29BD1837199517999C177 +:10E48000F73D94B8CE6D3E1FED7B1C6CAD267D1024 +:10E49000F5557599ABB4F232BB07E54BDD27F99C16 +:10E4A0002FD483F2A591972BEF9364C94B81C28738 +:10E4B000E3C80BB573ADC84BF6BE4D954F4F6F8D8E +:10E4C000FC10DE7FACFC34FAC6979FEB7D7AF959DD +:10E4D000EED3CB0FF8EB8DE87F5946FDF5353E3C8A +:10E4E000FF915C25F9C5D173F1D9FECD2B8A9D72C0 +:10E4F000ADCADBA62C7953FDBF4F2A779F54DE545B +:10E50000FF32DB9FCCF637D798B85CC4FA5A6FD984 +:10E51000AC89A7AB7EA0EAF75D1C5A74C5F72FB68D +:10E520002542554735F6EAB62CBF669B91B521BC0E +:10E53000B494DBA78715FFF8511FDF4750D3E70AD4 +:10E54000F47A5DC5A773A91E9FADEE58AA1DFDB84C +:10E55000B7ED748FADBEE49C80FB16FBE69A0D68A8 +:10E56000D7588D72CE648C93CDE2E733F6BDF3A419 +:10E570008C47E27F6760C7691F281C75E33EC61998 +:10E58000058F6D6AFC4549E96F9E725F1CF8CC9A55 +:10E590005927D5D7D0D7E17C1FC0E7BFCAC2D0CE9C +:10E5A000A14536BA372C45D4FBBE267E2E7268951F +:10E5B000ECAAC1FD265B1AE5DF1AD0DF07B606EA32 +:10E5C00074F3151579BE815D4E60FDECF2D9E7203C +:10E5D000B3CF3DD687199D6FE8AEE0E75BBBDF7E2A +:10E5E00080CE55ECF3C77D14170B6C1B34509C4246 +:10E5F0001F8F53E939D13D6F3555CF017BCF08FBD4 +:10E60000918E29835564E033EF59CECF4924DF3111 +:10E6100044302EB275157B13F73DF6BC6E11F1BC7C +:10E62000D99E20F3E3BD0CF9ED1C9A87BD85C29BF2 +:10E630008535786FC55C65B881B1D38B97F8F15C8F +:10E64000D59E5C1FEDC3B6D7FF36EC80FCAFAEB0F5 +:10E650001A31CEB467A1F34E6C6F6F7B40C0F1816D +:10E66000FCED47FB52C6383FB65B6D4D810FCDECDC +:10E670002C23A23DEEBAF1A73EBAE4CE44E362C831 +:10E68000CF2DE176AD6DC58BA156D423C607F70615 +:10E6900081665FF03FDD63B633F6E9EFB1FD18EF59 +:10E6A000FBB0EF1F69BFFD2D96DE3E0FE66BFE81CE +:10E6B000BF5986F9CE7B4DCA7E41C732DC57FDA4D7 +:10E6C0007C219C89111F30E003E7F563F9E44FE5F5 +:10E6D0000B418AD239BD7D0592DD3F17EF774DA3FF +:10E6E0007DC15D617ECEE1BBB59E869348A780313A +:10E6F000350DE8B0F032A37BAD5BAAAC8737637E03 +:10E70000B8C14FE7891AAD0CF34FE75AE99C741270 +:10E71000F291FEDF0D34ECC7FD2919463C0D52DBAA +:10E72000B0343809CADB7D463AAFCB0282BF15BE92 +:10E73000F7047D740F6EA1E96E1BFADFBFDBFF5F8C +:10E740003D48CF9EC25408D7E19FEEFF658FB914B4 +:10E75000CFE146C9AF52E12D86E1FB91FE3FF5F3D3 +:10E76000F3677B0D118ABFB61E38DAD30176F11636 +:10E770007BE41C3F3FC42433D0778B3BD26CD0C2A8 +:10E78000FEC8391D1C8CAF437F08DBC7F3A47B9503 +:10E79000F8EEA603CB6FC53857232A5F9ACF5FF6F2 +:10E7A000E0F95235FF9D0309CA5F9CC3143F4F9F98 +:10E7B000FF8D0377DC8AF1E18609EAFF5D492BD5FD +:10E7C0005F34417DDFA424D59726C80F1C3C44F953 +:10E7D000F513B4BF62D213947FC304F56F3FF81DE5 +:10E7E000CACF6369BA5FD27971DDE06CE0F71B3F95 +:10E7F0006AA5FB8F792E7E6E1A6815D9897EE2A5EF +:10E800005FD13DF4A4C486F1DD81BCA9E90CF2CD51 +:10E81000CFAB59C40974DF21AD26F9DA0BF9467C78 +:10E820006FC014CB6CC258C1FD79229EBF70D60652 +:10E83000747C6A8D5E90D0AF144EE70F63FD6C3E22 +:10E8400065B51C8E3135CE3744F1D6C2052C82F227 +:10E85000995D3EEFD265C3C6EAD17A5191C767B2DE +:10E86000CBD9FCCAF959734644BF15E4E00B28071D +:10E87000B7374A7FED2FFCE4F29A2D9FD9F2FBA720 +:10E88000CAABCDCFD737556EFDB1C577E2BC74B2F8 +:10E890005C86F7BCDE0A94F3F3F2B55C5E83EB6E44 +:10E8A000F1E37E5CB768A57D596663FB8B50DEDAC9 +:10E8B00005BAE7F7566DC3FE22945F5817F0DC36B1 +:10E8C0007349A44F7B728BA8FC5B610FCF970D241B +:10E8D000BFD031C96F8FDF43EFF72495FB562DF181 +:10E8E000D717E3B9616F54AC4293608F41E07ABBB4 +:10E8F000DE4AF72292B94B0C785E72CB347AE58708 +:10E90000E17B4A185F7ACB28FB503E5579DFC6324F +:10E910007D58A2FD00C0C0075D0E2982F677FB017D +:10E92000E95694C7AD96888FCEE1CBD2AD780EFF75 +:10E93000AE9C08E983F6033F5CB61DEAB7E444FAEF +:10E94000507FB41F185AD601F096DCA1F5D89E531B +:10E950009676362D64ECAF14F978EF80B413ED762B +:10E9600091AD6377E0FA01F389E7343FB778AD34CE +:10E970001FC7596F1B9E16193BFF30913B709C7B44 +:10E9800099F824D2CFE6894977606A64C3B280FCE3 +:10E990009063473A1E32B1B4B16E941F8C8CC7C5D8 +:10E9A000922017F85E48613DACEBC2C7E70713F24F +:10E9B000C394B1E51D8AFDD5E6EF5886FA03C693E8 +:10E9C000B983F0E3E359B57C2D9B5F73C5F12CF55A +:10E9D00069C7531E237A5C2BE37128FB153D85DC48 +:10E9E0001EECF1F3F443C5DE9B52C253A792F6949A +:10E9F0006ADEF3F913E4D67A86B5A3DC0A46967686 +:10EA0000D6FD4FCA2D233D5958653B6C0A5EBB7835 +:10EA100016D6677CCC784DE39742FC1C13EC67A9B3 +:10EA2000FC710DE31F43FCCDDF35D0FD8AEE883548 +:10EA300085F62ED8477E3C4766176D8C9F3B7D97A9 +:10EA4000CEBB75B3C1394690DF5307CFEF342FC427 +:10EA50007D5BAE17CB0EE42B7A11EC20F728DC356A +:10EA600072CF71CA4E3C0F212DE0F1D09E8383B747 +:10EA7000CADC0EED413BCDAADC7F365DFA52E6D30F +:10EA800035A37A30E7E2BBFC5E568F338DE71F7704 +:10EA900034AEA6F53B19CF13110F755D95227C5D41 +:10EAA000CDB9C4F580D060A3F263E57A48BA8CEDA5 +:10EAB0003D9F3F7CCCCDC6ACE779B8D981FBCA2B52 +:10EAC000CDA92DE3ACE7CC3C94C1FAAED3B387E932 +:10EAD0003DA88FB9AEDF0B6B08A6A017651C9FAAD7 +:10EAE00017A5E56B33B3AFAC17ED82462F5A2F99BC +:10EAF000E59CBCFF7D7DA8DA67CB30A881E75A7D15 +:10EB0000EB07ABE09F3795AE213BED74EE363A3F15 +:10EB10009B5C6E65E8C7EDADDF26E2B9088709D6D4 +:10EB200055C0670AFA256857E732C50EB4DC9AD19A +:10EB3000F8E53DCABB3D2A7C41A19F4DF1976CD7BA +:10EB400033BA5FE664F1A66620F1B60DEB93F345A8 +:10EB50009CBF349DE757ED43B01749CF091116D933 +:10EB6000BD60ACBD47334F7482F9988B747DE90169 +:10EB7000F42FFF5CF44A9688FCDD922C7A8DA1A7D5 +:10EB8000B03E8AF98B0B27C8F7AE4F46E09F0D7653 +:10EB90009E8FF6C372CD7ABB64F95AA9EA2AF6832E +:10EBA0005BCB575E0BBDDFF8BFCD57300E69B94662 +:10EBB0003E6E5ABE568E5C791C2FBB6B34E3B05947 +:10EBC000AE4DF908AC17505D34BA47E64BBE43333F +:10EBD000CE18E881ABD87B769F669CB6EA58E65A99 +:10EBE000B3F7B4FCD704F6DE55F8CFEED1CE9B7068 +:10EBF0008DCE9B6DFD20CAD9A2DC09E4D0B55EC0E4 +:10EC0000E14986D1798D6AE8D008F31AB98A7ED7AE +:10EC1000F1AFEB9A91C34C54C39F8B613EAF2287F7 +:10EC20004B75FA845D1BE318335F6C7D14E7B3DE2C +:10EC300032C17C9AD72731DE70C3EF5B47F4AA96C6 +:10EC40000E0DA057AF42871D82763ECDD7065FA33B +:10EC50005ED5F2E522D0ABB3AFA2577576C745F3C8 +:10EC600035319FD978E65C6CCD7CDA4B5FC98ECEAE +:10EC7000C607EC41B217F11DCCF1ECC16C7CA83F8A +:10EC80006CEF0E7E2EF56AF88DDA77EABE148FDF10 +:10EC900064E369BD04769F064FB0F733B3C7B1F79D +:10ECA00055BC1DA618433E628B6CE9637F041D9919 +:10ECB0005930D07D24A398C678CC58BCDDCA3BD24D +:10ECC0003C7EA3DAA7BFC374EE68EAC0B89CE6DD59 +:10ECD0002E353DEA606D689FA9EFEAAADF5F9EC40A +:10ECE000CFCFBC3089EF47081BF83BBBDF9FC41474 +:10ECF00098BFBFFB4F9344DDB9CA64FD748ADF76C9 +:10ED00001B5CB4CF88EDD23DA8267EBFBB5B79B734 +:10ED1000D7A9BCDBABD6EBB6733FBC376B9FE657CE +:10ED200093F8F99D5F29784C55FCB3817766F8F12B +:10ED30007DCE5EBFE8F7B846F39D1B5ED7B5EB64AA +:10ED4000FCDD36664BD3BBC34C48539CE817934459 +:10ED5000DD7D1167D3097AACA97721CBE0BD873D72 +:10ED60005B19F94FBD16A101E34EBD6E6304D7E7F1 +:10ED700060E38BE7F03E6B30195A83EF2E0593FC6E +:10ED8000FC38EBD0EF63F42E2DE2F713C24CC2FD3A +:10ED90002516F21AB4F4FFD924BBAE7F753F63E0A9 +:10EDA0009D1CEA3FB995EF9B24DFF6D3BEC91E1820 +:10EDB00027DE23EF5D98F6E1F9DA6078C91965FF7F +:10EDC00084F6498261C06BD6D5F152FB19D9EFCBDD +:10EDD00067BA7709BA1249FF7B16C67627FAFCEFA5 +:10EDE0004D837E1329825389C7283D9A48D3F71152 +:10EDF000BA65ED130A757AD8D3A8DF270CCAFAFCD6 +:10EE000069C9ACF39759FB90237C9A38A5E09551DA +:10EE1000F0394369576250C1F31CC16AF9EC76B30B +:10EE2000F1CAC6237B1CD978AB74CB654257B901B4 +:10EE3000D79BC16479905E39E2EF5AE1FA03745CC2 +:10EE4000E88ECD0C605C860D13EC6043673605F1EF +:10EE5000FE011BA4FB3461EE1F1FBEF4131BBD4754 +:10EE600051735CC2F734D4F7CE073ADEA07731761F +:10EE700076781CC88F911736EAF008D906E95C7CD1 +:10EE8000F829FDF7C3350DF4AE91876DA471101DFF +:10EE9000301E24F3F7FA1CE16C3A2BEF705FF4D2CA +:10EEA000FD08757C06C35C25DE6061974178FE8EA7 +:10EEB00071BDF1A1515A1400F9DAA9EC2BEF56F605 +:10EEC00025F728E911E5FB3714F89B0AACEE4F1F34 +:10EED00053E0D099967CC4FF71054EA9F7701EE7E8 +:10EEE000FB7D793546DDFB75429D43077B1A3D5915 +:10EEF000EFED95E8E0D0A1723D7C9EF737D13EE280 +:10EF0000CCA3FAFE9C217D7FD3F7EAFB53DFB5AAA1 +:10EF10004CEBFB0DCAE5BA7A13F5975CC89AE6C2CA +:10EF20007CEFAAE4FAC559CBDF6771D672BDC2B4D3 +:10EF3000F354CEEF86235D80FEF723FD557AB28031 +:10EF400097E6C55E512D62DC67447EF3526DFC3D51 +:10EF500094A47ABE425C7185F10F84366F46FDBC85 +:10EF600033CCCFD17785DEA0F733BE03F380FBA788 +:10EF70003BC3FC9ECAD699CF48C8975D7F9BA27BB6 +:10EF80007A8ECC37E99EDEB713C03939784F2CC55D +:10EF90006295389F36829DE6A1CD14EF39C582B8BF +:10EFA000CFEAB40DD33BF1EC3980A15DA78BF17CA6 +:10EFB00059810581C31DBCFCB71202B5334519FF49 +:10EFC000CC50CA58EFC2EDF36123C61D5E39B4665A +:10EFD00017C6F7458CA469E0993874DAAF5AB30BB9 +:10EFE000E310F2CA4583780F4495BBEF5C3A49EFD2 +:10EFF00073EF945806DF39CD963F952ED9F202F47F +:10F000003F12281CFBFEC87742FC1C2EFD7951DF05 +:10F010000B87BB82A3B043E2F0D301BE9E827EF891 +:10F020007680F408D70FB9EF5D20BB225BCEB3E545 +:10F030003B5BAE5FC1CB007335725C6394E81E131B +:10F04000F82D23F58284F733C837271539CB55CEF1 +:10F0500027A79571A8FDABF2B8E0FC60030E677EB0 +:10F06000264DDF570AB117B0BE830D4B79D05EE451 +:10F0700029E1790CF52C744BDFC771445E68D1D15E +:10F0800029FC941EF6B016C267441FF570BE9D7D24 +:10F09000CAC864DDBAE060B2A6DE758F7974B0AA22 +:10F0A0009F26E4E31AE06368BA2BCCCF91EEACE97B +:10F0B0006FC2797DFC14E763C6867E807CED18E420 +:10F0C000EFA3AA7C95DDCE13C87733A0FEA57F758C +:10F0D000907E3E0574CD1B97AEEF215D1E55E83640 +:10F0E0006B11D80DD07ED56C630ADF9919D16B6195 +:10F0F00089DF8B0D95D3FEF78C8E413A84DB1D5A48 +:10F10000BD197F37A43BC3E89D991987F8BBC83365 +:10F1100043467A8FE3842AE7CA3B7DB4A53C05D7F2 +:10F1200099214A6FBCF4CF8EEBA0DDFC1A33DD03CE +:10F13000F84B21F67B9C8FE919B11D8F92417F74AA +:10F14000FF05E6E90FF89D2DE4F64FE4052BFEE6FA +:10F15000C4085D9DA7F8BB09E1A7F4DFD579421388 +:10F16000628307E711F235F3380BB78E3D63F595EF +:10F17000AA1F213F93530DA9B2BE3C96E8A3F3E327 +:10F180008F265294EE4C3C46E7D2432951B937CBF7 +:10F19000E87E9E747A7F83C34BBF5B11E1E7925890 +:10F1A000BD724F5AF89681F63B889E4213EB771A50 +:10F1B00050CFC846BA7FD6C4F5468592EF080947B6 +:10F1C0008CA85F6DB1CD76AE67E8DD8CE94ABE28CC +:10F1D0002BF9AEF8699C07D6C8CFE5CCC0FC1AB4B1 +:10F1E000A7957C61503271BD44F9B94AFD6007CFE3 +:10F1F00057EF3D1FABE4F79E1D217EEFF95825BF69 +:10F20000F72C02DB0A1AD8DDC898CF3B0A073BA0CF +:10F210008C26FF88FFB77DED8CDAE3ED56655278DA +:10F22000487D0B5202E6E3D82A7E6F5C9EA6BC2B7B +:10F2300073C9C4CB954AA4DF2CF88A1E9DA38CD138 +:10F240007C1F53EED932F6CFB765AE708F4D4DBFF0 +:10F25000284852299E67F2FCCD00EEAF82CD1901FD +:10F2600071608239358C7A94859848F791320B0613 +:10F27000CCDC9EA9B263BE8DE3CB92DCCEB78969AC +:10F28000A67D07D9194A4B782E9299A512EDFB70ED +:10F2900047157BFFD8A6145BA1AC2BE590BFB694B5 +:10F2A000FB63F9EA7B4B667E1FAAC3EDA3F7A0B60A +:10F2B0003E7482EE8D3BCD19BAAFCC22AC8AD6110A +:10F2C0005B92C35315D815E7700060E47721C661DF +:10F2D0001FCFDFFAD0EDF47B1A4E2FABC271221E86 +:10F2E00024F7CAFAA6AE6BC0677C7D4AA9EB599297 +:10F2F000AF6747D5F52CC6F3FBD4F52CCEE143BC64 +:10F300007C6E6890D5BBB87C90BEDE6BA573FA8E20 +:10F310001E2BBD03FBCCA4D8974B61BC8E3AFE8E4E +:10F32000BB2324D1EF02ED14A4B5381FC72CD11292 +:10F330003C37A5CACBB14D202F786E3403F252C3AF +:10F34000E5C54EE3B1D2B92B949719D7B0BC1C4593 +:10F3500079098ECACB51E4FFE0A8BCA8B02A2F2AB5 +:10F36000ACCA8B0A8FF051A554A27D57E0E82A233E +:10F37000DFB7BDB4A864A5C6FE39BAE7F6128C079C +:10F380001D45B9A0FD8AAFEDBA925C54A4406F69E7 +:10F39000D6A94B93628FE13CCDE8033DA6D1977986 +:10F3A000358FE9606898ECAA63497EDEEB68B23C71 +:10F3B000FF4AE7159F023B0A1FC03B0EF613BEBB78 +:10F3C000FAF7B00E697F67273B8D6C49C5F9BB0E14 +:10F3D000ECA72897BB2BC472ECC7154933BC07F8C0 +:10F3E0005A29F787B70EFC98ECB65C33F7EF1D99F6 +:10F3F000FDB40FA7CA6DAEF24E7AAE2B4EEFE88386 +:10F40000AD4772922BF077F655D8E29D489E877DE6 +:10F410005A79DEADC873C4938A69EF65ABF85C5462 +:10F42000D22981E86B48C7637BFB293E5713899A31 +:10F4300070FD9C779689B84D3C27203E8FF8CC19FB +:10F440000418F870B65734E139E9EA334C7682CFC4 +:10F450003AEF1CE7A3DD155CEFCE3DCBF9687705ED +:10F46000D7A335839C8F5478CEAB9C8F5418DA2168 +:10F470003E52E111FC2B867D2E0DDE5B17FEF61C45 +:10F48000D2D7097A6F46703CBD10DB42727E4ED5F2 +:10F490000B510E9F556097C4E141552F4438FC2A0B +:10F4A000CFDFFDD1942DA847E49779FE5157F4663C +:10F4B000928FBD1E83ACE1EF8F4A791CE498646E95 +:10F4C0004A8FC347DF2AE5F6E58D01E972A9D62EFA +:10F4D000DCCB7FCFEB878118D15BD5378E103FBF58 +:10F4E000FC3781E80FF17BD70D8F365540FFFD3B90 +:10F4F000A6F76F87FE8F2CB0A6F19AA8B3E7D14C80 +:10F500005B0DF119FD0E850ADB82661D2C34D87463 +:10F51000B0EF6E17C1FD5D338F9F81F6F2AE77A419 +:10F520009DD0FE83B7CE7B07EF6FE5CDE7ED3F784B +:10F53000DBF5FFF902C0B9F378FEF6A095E635F7E2 +:10F54000154B0AF5D534369C310647F5E13473D4B2 +:10F55000887A10DF2DC1F3C3D364CEBFF92149F9F6 +:10F560001D2DCE2F305F7D618DDC164CE6F49BC6E1 +:10F57000C4625C1FD576A6C18244EB8BAB9AD6578A +:10F58000683739551347084C2EE77E7F7888AF13CC +:10F59000A191F693E171ECD381F0F133686776F5D0 +:10F5A00018C97E017B94F4E3CE5771E540FF3DF22C +:10F5B0007C08F3A1027F7F7D90FC2DB762970E1C23 +:10F5C0007D83DE09D80929DA6F3B43FC1EF36C7C8E +:10F5D000C7A080CAD3FB9E76259E1784EF78DFF202 +:10F5E0009B47DFA0DF959B33D64EBD7EF2DC51FFFB +:10F5F0005CF55FA6F43013969F111207703CA1438F +:10F60000C3F42CB2EAA7AF14A20D58AF2AC5B6981E +:10F61000217FCE51EE5F8CD3FE92C98563DB57DB31 +:10F6200001BB7419E67BC2EC79AC16C9C48CC877EF +:10F630006097DE8AED079FE3EB60F0B9B484F1AB2D +:10F640006C7F8282D018DF7A6E3BFDAE44B67F11AC +:10F650007C2E29A1B139C6CF50ECD0E0734312FD06 +:10F66000FE11D8A148A71FCDE1F6AA05DFA2C8194F +:10F670007DEF1DC6F15793E78EF5EFB2D311FFDA98 +:10F68000B592EA413F742F5E0878AB71FEB2CB337E +:10F690007CCD1ADA6D0B487F3D99D2D817911EBBED +:10F6A00073FBE84805D835745F7FB781B723571AD5 +:10F6B00069DD3481DD739CFAA9A17E6EBC94A0FB48 +:10F6C000935DA1B5C2EAB0B6FD766A7FC664E9ABC8 +:10F6D000D8AEFACE3AAB4B139F388F2AEFAE8DB12E +:10F6E000D339BF3A1A23763CBE6156FC21A17EAFC6 +:10F6F0001DF9E22F27C7B64CD6C475BB667E8B7E3C +:10F700000F537D2F29A7929F9B27258BFDB1C8CB37 +:10F710003855A6255E7A2F6FF2036797CEC038A6BC +:10F720003495DE112A5DFFEE0E8477D77158C53B04 +:10F730008F0D4A4ADC6C0FF6D7DDDA9FC173D7B95B +:10F74000A5EF9ED904A5EA4B3B3673FF4979FF2903 +:10F75000B06E30817E5307702DCEB3394D7433BDFA +:10F7600001F22362BBE0BFCDA3FB32FCAF2E25E349 +:10F77000EF0A80AEA1DF3B7076F4D33EC2FDDFB668 +:10F7800088E8EF67F39B6319FF9DAF6C3E736CB81D +:10F79000D0321E9F395A2F6CA2DF9B12B8BFA4C66D +:10F7A000D3CC1BD5DFB9E3F41F1B7FE3F477D92259 +:10F7B00003666E57D3BC5B157EF4C55807AE57CEB3 +:10F7C0005A761879F414EA21A04F20CEB87E8C081E +:10F7D000F45DE53F6BAB87CE573EE0924E211D7343 +:10F7E000CDC3F518CF09C40733A45FF09D313CA702 +:10F7F000C2D299062FF993B47FB469726C00F926CE +:10F80000B7262DE1BBBB939572CEF020D99926D5B2 +:10F81000FEF6A9FC0E632B527E2F0FFEA48D03066D +:10F820005C1FF36A842A4E7F89CE6D58232ACCF957 +:10F830001FF07A85F8D3E7FD58E7FAF31AD319E4F5 +:10F8400013553E71FA50FFAA78ABE5419ECEE178A0 +:10F850001FAB5DF98372E8CF59D9EAD0E22D6D0C68 +:10F86000D2FDFA51FCF87E04E047EF3AFD4C5917FF +:10F8700000BF9F217E6A3C6C97120FB37FF4AFA448 +:10F880009FBF596BA477E9191BA2775BD5388243D8 +:10F89000D18BD9E32850F4F5088C23007FB9C0CC74 +:10F8A000FDE6DE9BAF2779CA8E2B8C69A7A677056C +:10F8B000F2DD87C6D887885FC1F993B7639CB0A093 +:10F8C000F65DE2C7235971D4E45EE39E0A684BC437 +:10F8D0003803B0CCB41EC16813F177C894F775D85B +:10F8E000F0990AE827FFF005922FD0CFAC0CE77F04 +:10F8F0005A6B03FA0FC10EEE5F807E3694CDBD7A4F +:10F900007C275BDF64CBC7C4FA87C7270B505E70C8 +:10F910003FC8A0DCC71FE57F9AA7FC1ACEE793CAB1 +:10F92000F83C0D4E8E1521BE9EB8504FBF6B1AE6A7 +:10F93000BFC3FB71F90AE64F5EA4E1A3407C88E2F5 +:10F940007FAA7C400F12E6978DCAC734A483B3F216 +:10F950002CC9515229575A33D44EFC99251F63E5BF +:10F960000134BC86DFB2D705E0BB59659F402E2627 +:10F97000CA071F706923AAA105C3DB4D64AFD986EE +:10F98000719F347FF1058A37B9411F206D1FA998F7 +:10F9900069908CA3FADE6F1B5C4E6FE084F9BA931A +:10F9A0006BE6FB158E3661F90CC0BFCCC5F7CFD422 +:10F9B0007E169771BF7C4919B7379957F4A39EF308 +:10F9C000B9A52F948DB37E76857E6DD3FA3D5D7992 +:10F9D000C97BB9DF12A1777AD4F56385D2DE44E31F +:10F9E00056DF0BEF8614E3D1215B8A9F630C355CF5 +:10F9F000F1F7B6D4F79F46FA7FC0DA8CEF3AECAE57 +:10FA0000EBD7FDCED31A85BFA604A4188E43D5E745 +:10FA1000266B8ACE15A87A3D1BAFDD66B9E9695C15 +:10FA2000D7C22C25A37F5DA7BC439AC5EF605FDCDE +:10FA30005446FA7E90DEE78331907FADEA37772334 +:10FA4000FF1D90BC1A46EFE9AC57E8F1802BB61EBB +:10FA5000EB49DB0DFC3C6344FD7D191EDF11CCA995 +:10FA60007A6B90D6057A8F3257794F52D5F3A5C865 +:10FA7000C700CF298BFD2D8E0BFC4319FD73BF52A0 +:10FA80002E2F2C18D0BE1BE163975ECF6FC57F88E9 +:10FA9000F82B41D97C1D95C6D7F3CAFEB94BCFCF01 +:10FAA000C93AF63AC50514BE742FEE588AEDE51B27 +:10FAB000B83CEDAEEDAFC797ACF39868904CA3FCA3 +:10FAC00099AB9CEB28456715EB57F0F770769D2FA7 +:10FAD000AE47BEEE73B126ED7EF1FE32EE5F1E50F4 +:10FAE000E69309C09FB9C49FCF948D13BFEF0ABDA1 +:10FAF00061D3FE5EB1CA9F927CB8DD7A8575E3D191 +:10FB0000B29175E3D1B2FF49FEBCD7D18C76D5D77F +:10FB1000181F97C3915C85F6E6D30A3F3CAB8CEF88 +:10FB200059A5FF9DC87FE85F8495739435E3EB5B2F +:10FB3000E0BF8365BAFD0246E759C02FCC20FE8E98 +:10FB400075669D5FA8F2FFD5F491AA7F553E1E33DE +:10FB50003EE5DDE7DC9A14C5DDF26B05E26F66CEAB +:10FB6000103F395B397DCF29E3D95116FB21E2598A +:10FB7000BA2ECD4C1ABDACDA23D97C35115E79B5DD +:10FB80004F498B88DFF8390DBCDF837ADE03ED91B6 +:10FB90001D182A6F6FA8A173D894EFAE4D1970BDD0 +:10FBA0000439B980FDFB23830CD797BCF060BB9967 +:10FBB0008D958FB1F270553DFFEF65851F1F7F95C5 +:10FBC000FF5F11A2BF21F96743346F308F1F68F5C3 +:10FBD000EC44F3D4658D885CCF8EBF6EE4B2C17601 +:10FBE000FCA999FCBAC10CD241C4DFA31546E7F1C8 +:10FBF000FF03B3C95A7B0080000000001F8B080080 +:10FC000000000000000BED7D0B5854D7B9E8DAF383 +:10FC1000626006D82020A0E21EDE20E806113535FD +:10FC2000712390904AD31134A221E9F82611BD63C3 +:10FC30008E4D4862EA006AD01A4B1A636C8FA60395 +:10FC400031C6D393071A7A3E9BF6F68E89A6C9E988 +:10FC50008B282626F124E4653C7995A6F5D6E6D8CE +:10FC6000E6FEFFBFD686BD87416C4F7ABEEFDE7BD6 +:10FC7000C8D76ED75EAF7FFDEFFF5F6BAF199CEC0F +:10FC8000B528C98CC596C9169F9B31AB85F97AE01A +:10FC9000A905248BB38CB1B832B96487C2E84F830D +:10FCA000B24395BB76488C452B16C6663076975B7B +:10FCB0008BA6FEF92C101507CF40CCDBD6A98CDD26 +:10FCC0003DD117A7407DECC6C0EFACF8BE2CC87084 +:10FCD0007CE64E626C36635FE0DFDC914FC6028CDF +:10FCE000C1783165EA312BCDDA69F1C6025C302783 +:10FCF0004B1B6E3738D93701C78F29D8DD360F86B1 +:10FD00007C1C5E5965C63C07BCAF1F50701DC18E80 +:10FD10004C8097755BD4C770181B9316C40EF7AF51 +:10FD200046F8619EA6899A07C7096FAF6D2A3966A2 +:10FD3000BBCCFA0B447F587F01F68FFE731463002F +:10FD400047573E0BB6417DCC168B668375C7B08D89 +:10FD500081779CBCFF171EC62E58B469D8FED1CD42 +:10FD60002CF08E9DB1FDF8CC81F176F6310643661C +:10FD70006F54DBA260BEBDE2BD861D118E2216C48B +:10FD80007913F6773396C9D842D97715E23DFE400C +:10FD90009F771E345177CAD668785E9DA07D05C7CF +:10FDA000578F3706DEC917F3C2FF8A7ACD65DBA607 +:10FDB0001E86784D648D041FE105E0736D295D6337 +:10FDC0009B8A1D9286DBC37CC78275AF47E1FA6AC6 +:10FDD000981205706C7D2825A610E08A0F5A581ECF +:10FDE000C09B18DADE8670266EB104A3A1FED09601 +:10FDF000CC7856343ABDEFDF0C7580B2CECD307979 +:10FE00001E8C63EB0BD89268AD2588FF78E7002F36 +:10FE1000CF1265376B457A004278599679B90ACA8C +:10FE200030FF8ECD328DA78F1F53D343788BD112E5 +:10FE300043D612A42320D739BC7ED73ECBDB765CD9 +:10FE4000270B121F276831E6FAFC4453D92EF86FAE +:10FE5000ABFBF6173598AFDEE35B8B787658068EF2 +:10FE600059006F2C3D18B0C07C13373275071477DA +:10FE7000DA59430FACBFDA3A27FE1DC4432AE03CEF +:10FE800005E440E263DEA34834AF4BE9D3ACB0CE27 +:10FE9000683F5383306E747690F82843656C1C3449 +:10FEA00069073C55D9713EEF9D486FB7DA27A11C11 +:10FEB000E9E387E33520F8922571BC339B4FF116B7 +:10FEC0008F2E67CDB2B71DC7ADB6D63209E0FF7D24 +:10FED000155391FFEE63AC26D2F8972654DC87EDDC +:10FEE00019F3BE3817DA6F2B61CA0E58FFD64B953F +:10FEF0004E2FB4DF16EB60EC2AAC7F4C3E963DBA39 +:10FF00009CEBCF7DB0BE5A58DF77F19983F80D2D69 +:10FF100061404AA78705AAE6001C367F0D035C04F2 +:10FF2000835BBD4980FFFB9026E9404FCF96CE0012 +:10FF3000E0612B96AFE2E289F4DA17AD97B778AFBC +:10FF4000A43F63B284F879D2EA3B80EB4AF03B03EA +:10FF5000A8AF12AA543BE2F924E259B443FDB1EF31 +:10FF6000F6F4B46545081FD77FFA3AB6C8BE271421 +:10FF70004339A1AA93F4DD8EFCCF24949BEDC0B14C +:10FF800048E7C94EA6E17893DDF0847126DB78F965 +:10FF9000B7C80F30FF25C117BF12E5C49AC134ECB2 +:10FFA0009FCAE29815F0FD8321784234AE5C03FAD3 +:10FFB00009572B9FACA072B55C827AF305A19F63B1 +:10FFC0006A079903E8D997E10B19E193B53EE62B4F +:10FFD00032F203C7434236E871908B7B649FD38330 +:10FFE00072E1077D1E37BC1E99C91528FF13FD4C11 +:10FFF000F2003C699A93F4EEF6C9303EEAA39A8186 +:020000021000EC +:10000000908DD1F8C4A721D49DC9D49ED6918EEBF2 +:100010008067A75847383F7CFFB6CFD310AEEDC8F6 +:100020007F86FA01C1D767C53346ED217DE96AE2D3 +:10003000F6E6F3C9BEB338BFAB48A679E3AB78FDAB +:1000400038C5FB26D9A7DAC100E221A4C88497ED00 +:10005000B64EA7ECA67EEF523F51EF56B99D82FAFD +:100060001A35027C2181D74B13B4F364DF18CC031B +:1000700008776D72101CE314DF27463812AA066950 +:10008000BCB91335C28F8E8FD1E83A69A3D28A7A70 +:100090000FED0ED2715C6D0F5B06EF2F8A75C74DA9 +:1000A000D6888EFA38272673BAC66D04FD29DA235E +:1000B000FEF4FA491BF93C6902EF3FB0F3F103CBC0 +:1000C00018D9B9F0F5D93D7C9E2733CCF0AE15F4A4 +:1000D0008DADE909D994E1F56DB3FB52118FBADC0E +:1000E0007FD573ADB715E4BE2DD1EBF4201E36F6E7 +:1000F00031D4274E0F1FC7206F899ECBC85B385C59 +:10010000BABC4D9CCCFC589FCD5E2C417DFB40760B +:10011000F938B48BFBAEFDCC6985754FF338689E1A +:100120007D09F2F5CBA1FE7E2956EE86F57EA7EA83 +:10013000BB67A2A0FCD926E681FFD8F67B3BCFC4E3 +:1001400043599E93ABA0BD9E1C8A267B315993BB1D +:10015000A211D64B306F3994515F5BD1BE30B25390 +:1001600072E84FC7701C799372381AD6F59D7BB927 +:100170001E968B582BC2236B6A39D2ED5A8F62D2EE +:100180000FF226760CE9E0CA57732D0AC23F311AE6 +:10019000CBDF0938B41DF0DC9721BF948572F19252 +:1001A00095B541FFE72BFE77DA801BD73198F673C0 +:1001B000787F7F85837543BFCE7BD96BD82F7A93A9 +:1001C0009CD9E619862B3A14FD1AAE275A4B51D00A +:1001D000FEEAF0D3BFB30CEBDBA4D0FA3AEFEDD4D8 +:1001E0002CC80739EC30F2C1E4A241827FF2260E1E +:1001F000BF0EF7E4ECC10A8B016E67D8BA5CF94018 +:1002000017835F319ADD983BB1E2068FC12E8DE5F1 +:10021000FF813A8F93C05EE6E03F1534ED0B2C1959 +:1002200000DF85542BDB21A3BD72D37AC66D61C17B +:1002300028584FB67FA1250FFD019F5B8B9F05EFCF +:100240009966B90ECA9E0AE76040257B45FD276383 +:100250007F2867EF76B090C1BE4F6A81B2611D936F +:10026000D94EF25B3DCCF01EE6997CF6DFCFB2A909 +:10027000586FE88FFC626D8C47FE7584F9A9FAB35C +:10028000E5ECB2E071C37C1B3CB149E7A6C03F6618 +:10029000B2995F5887FB8F86973F6EF6058F0332C2 +:1002A0003C56ED4EC2632AC7E3CE92D5A991FA0D12 +:1002B000E3312875C0BA27817FBC03FCA04EA41F80 +:1002C000BD675E27E077020789A583F2B095829F1C +:1002D00097501E3F701938AC2D3F29A91A6728BBCB +:1002E0004312EA1BF052E4738027497B977DE1BA01 +:1002F0001C7D6DEC9C8E4F58B73D89055CF1A8774D +:1003000019F93D5B6259B0C8837E10F05A1996FB0B +:100310009EC472D444902143D991CA51A097611CC4 +:10032000A618EA87EC72AC96EA36AC676BC2B5A445 +:1003300007AC0A53F2A09D33B49D2960D79D4A8033 +:10034000F930CEB08518F23BF80C1E940BABB3938A +:1003500097B345D9EDE7E5895006545A651F2FA795 +:10036000F2FA2D7FAEA772209997C3D7DF26F4ABA0 +:100370004E9F6AD9BF05F9B81A96D70EF419DFE86F +:10038000DD8278A801436B4D20FA91BCB14BF55545 +:10039000F8FEEBD7337947C270F9BABB4107242086 +:1003A00078034ED4ABBB66D55D968FBE03FA22941C +:1003B00087FE969385A246D6CB56D0AF40CF072A6C +:1003C0009F62E8B7C6B8FB52EB60BCDF78B83F72FB +:1003D0006CC6C154E48F872BDF4C1D80FA1D33B6E9 +:1003E000A5322877785E31F913B1554C0B468063FE +:1003F0007A261F27FBE27D1C5EC55213A91D63AD43 +:10040000B4EE5DCE01B2D37FAF757DE8E1FED67F5D +:10041000765DDB3225016F1FC17B7FD99705EF2EFB +:10042000F60EC1B52B84F4DEE1C9CD44FF4B12F3C7 +:10043000E9ED8F79B611DC1D05075331EEDA51B0C5 +:10044000CD04B77314B89F16F4D825FFD7C09D36D6 +:1004500026DC0759A4F96310FE0876E58C0E7F2A86 +:10046000C05FF4F787BFE44B86FF6631DEB31EEE54 +:1004700097EE52747EB748A8172EF8981FE3D7D18D +:10048000E4459E6331D9AD71353126BB9699ED8D2A +:100490008F14FFE9CF8F101F5163CBD727A2DD79CF +:1004A000C45B1E8EDBF7C255081FDA15007DED2CEC +:1004B0000BE57F46EBBFD6DE93225F66FCE627ACFA +:1004C000A6758C054FBF2793F0B5BED76A5AEFAD1E +:1004D0004197A9ACEBD9FBCBCCF8D4F13C82FE5FC1 +:1004E000123EC7E2C331F159F6E5E2732C789E451E +:1004F000BFE00AF019CE97A38DF7FF2B5F7E7885BA +:10050000780CE7C7BF371EFF6FE34729F3BFF1F849 +:1005100065E031ED0AF178C8C19AD0EEE5EDDF78FB +:10052000F27AB077A76AA64F071F19DC75ADB81E1F +:10053000F032278BC7D57912F3468ACFE764713B37 +:1005400076B2A6721DDACB0B5E17E5ECFB2DEAAF97 +:10055000CA60FD813A6BC47CC34981AF0959093433 +:100560007EBFD74A71C0859A9C20F61F6D5DACC6D0 +:1005700080874CFCFF98E1320C719229F3C80FEF91 +:10058000B7061F9310AEE9B1BE08F657A76BBFB709 +:10059000FE3F4757AFF54BA5EB58F0C4646512BE5C +:1005A000C6B67F9D3C7E609A84783DF42D1E2F4018 +:1005B000B464C7FC7FDDD9A800E6AD5EC557B33192 +:1005C0002FE3ADCA82F6753525E6FCA78D69D8FF05 +:1005D000DDED05DD986F618DF5D4BE368BFB5F23B5 +:1005E000E823ECEE210BF0951BE39A807D99613DA9 +:1005F000BBB3F438C83709E5AED7A14D7912C63F71 +:10060000794394DA0D6FA3EA6BBF1D0BF8ED5F948D +:10061000204519F8668D98AFBC91FB53BD67BC7639 +:100620008B81AE5B041F42FF9B23C5B12B44FD228F +:100630009F44FE30F0F7A43AC3BED0AEB0FAF0FE4D +:100640001BB3E2A8BE5F8A9C7FFF1FA27FC3C2CB01 +:10065000F7678DE3284F008166C6E5F2F35296AF47 +:10066000250B9EAF48BEFDDF447EDE1FA53E4672D1 +:10067000E9CFAD2B1EC603B379298EFCFA7C251178 +:10068000E37C589715E9E5B02A9F6159874B9F375E +:1006900011EA71FF64A6C6FCAD50FFAE5DC9C53C52 +:1006A0005184F93B2E37FFD03A6C5A05CEB7723DD4 +:1006B000F057C9C8750DE52344FB537FAA9C8FED05 +:1006C0007B4F5A64CC638DD65ED74BB97BCDFCF3A0 +:1006D0004F593C1F9864E5F94066F34D6A30F47F4A +:1006E000342B9AFAFFB57CB5187080E3E6EEF6D9A4 +:1006F0001598F7461BCFD3E3F87586F1BD029FFB33 +:10070000B07D32C2118829C43CC0AB5CCF1DEABEAB +:100710006D5224F93D29F4C782AC7C531C515F53C0 +:100720007222A90CF9EE0115C5ABF7E455D47F91FF +:1007300098BFD711B80DE97B72695442B7E7CAD7A1 +:1007400081F281716C91E0C72E8BB73A19E97884F8 +:100750005D8D70BE2DE45EEF7F49ACEB90C3D71E7C +:10076000AD32D6F7E8BB0F7438498E29BFFBBBAC5E +:10077000F30FD0BEC9164EC7450B1750BE22B78621 +:10078000E72B7A1DA02700AED357C7D23E28736A45 +:1007900015DF84F29A2FE229EFA6EBA3E516FF7A84 +:1007A000661DD6434F5A7DFDA477843E1AA17FB6BD +:1007B000D48BFD2C25B72EA2BCB409B839BF1C0AB6 +:1007C000D6C5AF30E03F36DB61D253AF6CE671E0A7 +:1007D000A9B03870E1191E27F73A781EE6F5EBE567 +:1007E00084362E4FAD77A07C7D3159C275C46673B7 +:1007F000FEBB10BCFD5F709F41C707AC6BEA0F0DDD +:10080000766B718359AFEBEB5F54EB32BF17FDF39F +:10081000ADDA5A9C97CD8F521E033A27D52C26B9B4 +:10082000FE623E93B1FE90C3DB160BEF7317FE6EB4 +:1008300023CD2BF2436BA2043E711300DAE77F3B1A +:100840002D88FB72C9ED03DFF4C27AFEE0F6C627FD +:100850001AF301D9E63856B7C3D80EED549D4DB101 +:1008600047B257F535D688702F8FF3F98DFA235C90 +:100870008E33B319B7EBFBA208AE252C60C7F68BFD +:100880009976353EC18CDA51FECF0ABAE8FDCFB277 +:1008900050EC4CF41F6AACA477CEFAEBE397C33A62 +:1008A0001AED3DB1A545382EE7F737365A292E3EC9 +:1008B0002FD601F6F94439B7CF17D03E3706ADB47D +:1008C000AFD5D86C7DDB68A76FF69BD793B7BF6CAD +:1008D0001DE2EF2D06FE6402F113E13350E7223FE3 +:1008E00002F8F5FE3258C75BC1443A1770CAC2CB52 +:1008F00081D51C3EFCC37D5E1FFF27BBB151BDBF30 +:100900000CDECFCAF6109CAB76FBB6E116E5C99AB1 +:10091000ACA303888FC034D5986F0F7FFA3699ED5A +:100920007BEEEE1813BCE50D92D0FFA149B718E499 +:10093000627BAE8BE6BB71A11431EFD091EBA6FACE +:10094000537FB13645F2E71EC9E5785DB43B72FFCF +:1009500047726379FDDEC8F59FE6B8B8BDB1F59082 +:100960007D5FD410B95D520EB78767D77D70B3E64F +:10097000467F91CBAF5EEFC8E17C7A3E9BFB0BA735 +:10098000BA6FBB360DF1BD5E927300AF6BC6F9A7AF +:1009900022FFDCD45C4279E8B7053FF478BCB76449 +:1009A00043BFD57B176C2B06FA8DEFB3C8E8CFEAAF +:1009B000FA211C8ED562FC617BA2DBB3CE68B467E2 +:1009C000F0CFF7A24AA949203E11E9CEF571A03B2C +:1009D0004646BE38552BFCD640B1C96FBD3DDBEC59 +:1009E0001F85D373F56EB31E780BFDD6B261BFF5CC +:1009F000AD4DD3891F5FAB75C956DA979A5E6C3CD3 +:100A0000C7A2FBAFA71CDCCF3EF54A961AB80C3F35 +:100A10008DE9C7D6723919ADFF5FEBC79EAAE57E97 +:100A20002CAC237679847EFF28E4622C3FF6AD4D12 +:100A300097F787DF127AE37DA1CF753E423F7AB9FF +:100A400081DE07C2F45EC34A33BC37369AE7D5E588 +:100A5000A3DFDB1E83FE07C87F2EF2B3EED7B22DD5 +:100A6000D3C7D8CFE2796C1D1E0DF507E0BBBE3FA2 +:100A7000AB14F507C62588971F85C115BE9E5396F2 +:100A8000C15FCD44BE7FC4467A2667F7B2B634361E +:100A900092EF8E858D73A57CA7C7BFBA3E0FEF3F3F +:100AA000C467B5FFC938E9EFC45FA3E33F7845F1F8 +:100AB000AF2EF737D97AECB38BB83EB9159FD94E24 +:100AC000EA7F53B6C29F4CF883CC5FBEA018F551A5 +:100AD0000C9D9B093C121BCC0156EEAFBB67AA31A3 +:100AE000CEFC8BA0C74DBB176C4D53900F829DE47D +:100AF0007FDD6165E87FFDDB99235BB11CF3B245C7 +:100B000096B0DEBB82CA17CE282AEAABFFC8E671D0 +:100B1000F1A285CBECC67586F3EDA230BE5D932DB8 +:100B20000BFDABC7054C263D26D6097A91F4E8A209 +:100B3000E60766E33CAB771FB31700DC9FE07A6102 +:100B4000BE4F71BDF06CD4FD5F27AC17F4CE1B68AF +:100B50000371BD7749DC1EDA06EC467D748BFF839A +:100B6000EA487ABC58E8F1D41CEE37F5787C07B334 +:100B700029FEF352FE66CD3D1CBE450B37D0B9822F +:100B800083E82F40BBC705DEF57538E6F3FDAFAF50 +:100B900047290751EF0FE1733DC7E71B67EAB62608 +:100BA000978D8ECF9C9CC8F1EA58F8ECEF5E4AF323 +:100BB00007BECAE41C939F3B2988F1CB41812F8358 +:100BC000BF2B21BFEBFCF0C6860F6EF699E23439DD +:100BD00001D79BA978E3918FAECAE578F930D67C2E +:100BE000FEE175A10746CB4F2DBDED258A135EBFF3 +:100BF000ED1793F05C92DE7E3479582AF237876ED7 +:100C00008F6AEA8E2037DF127482F9284EB8B05707 +:100C100052F5F38F46BF66C075CBB658C5E0A78DB9 +:100C2000E6B72DE4F1D0B0DF168C2D857997887961 +:100C30005E47BFADC8E4B76D2D4F8AE0B73581DFA1 +:100C400066D01BE17EDB69E6FDDA0C9CAF96CFF740 +:100C5000DA4A9E877AAB768A05F5E2E9850F929E9D +:100C6000DD20E63D25F4F7E98566FBD0943386BDAB +:100C70003E63F6BF46B333FA3C576A67C0AF9F8402 +:100C80007AEF7457E3CD146777C5A839CA48FAD408 +:100C9000E65A39FCDD31C47FBADED1F9AFD7A17E87 +:100CA000D20BFD4FEF9FA0B6917EACACC0F10E5DB4 +:100CB0009A2CE139AD4375AE26F4930F89FE6B1E75 +:100CC000C9EB46FC682C40E7396F42BB04FD960B2C +:100CD000FF4FD717FAFC3A9D74BB747F0ED78FABCA +:100CE00077BF6D57A0DD2DE23C1BFDC1BC1FEC4F53 +:100CF000EB427FFF0D8BD01B07638318D7607C66A8 +:100D0000C4D7C36178BF3568C657B8BD7A2D983946 +:100D100094DFCBF10CCFD7B8D1D3BDC3505EB5D7DC +:100D200043F9AAD756723B79B6651AAD7728EF57C3 +:100D3000F76D8ADBDF04BFE9727EF898762D68F9DB +:100D400052ED1AE2E7B2FB5F3957E6379D15E7E847 +:100D5000D8A5E763D17F78F3EE71445F5D1E4F083D +:100D60003E7DD331506C844F97679DCE67837CDF87 +:100D700011DEC62E30E8A19FE670BFF94D21076F46 +:100D8000B698E5E064981C84CBED08FF3747E6E3AE +:100D9000B5B4C7A0BEECD7F96635F787FBBD95B1F2 +:100DA00033503F04334DF47A2B8C7FC692B7A59213 +:100DB000467687DDCBD863A0CF33F3B93F7F219848 +:100DC0002EEF30F8EFC15CF339CF217D9CCFF531A8 +:100DD000FA0B46BC55E62826386E6A0AF3572C8A69 +:100DE00005CFE1055EB1921C9CBAE19E5B902FD7C6 +:100DF0003C12C5CFB8330E87EFD118798727C2BC14 +:100E00002A9F77A92D689AD79EEBB9FCBC63F84955 +:100E1000FF1D9798DB4FCDFDAF8D4B66E6FE75FC51 +:100E2000AB09BF283C3E39857E4AD2B09FF2F528F7 +:100E3000FFA7BDC8576E7F39E6D996E672795CB5D3 +:100E40007B01F993A72CDEADB1D8FEA445C6B8E26C +:100E500054ED8A762C5FD8ED217F4987E760581CD6 +:100E6000ABDB9BB1ECE3E945796DA8A7F35FB50671 +:100E7000914F4E2F5A6C8F84AF1B2F4E6021C3B9F8 +:100E8000323D5F8072566FD03777E6F03CDE9D3999 +:100E90008A492E175DCCA0FE43FEED6EEEDF362EA6 +:100EA0007C60B66458C7DC5C6EAFB45CC5ECDFDA5E +:100EB000B87F3B5ABE6C7D187D4E0BBAEAF9B2453D +:100EC000366FC47CD98D0BAD617A87FB5FB82EA3DA +:100ED000BC6CCAB5441C5FD733573AFEE3C2EFD7A8 +:100EE000F3719945D03F7674FE1C9A47B40B9FE787 +:100EF000EE5CB33E0B9FAF16FDF4CBE4919E1278EF +:100F00002B1779A453377CE557982FEBAF7B7E0ED8 +:100F1000F2D75B9B7E7F7A7112DAE71373509F3FA3 +:100F200025F24A6FE1113FD4373E89FCB9C5BB9722 +:100F300051FC04ED290E3E057E0AF67F42F033E8AF +:100F40001993FD0A97BB5902CEAF65CB62DFA96743 +:100F500012AE772CFCBC1E869FBF56DFCFD2E3308B +:100F6000D08F48C73943F387C4BE17FB06F25B0B2B +:100F7000D3E6933DEAB35850BF9E73BE9BF2DE7436 +:100F8000E0E3E88F52DE03BE5E8E323C1BDEC746D6 +:100F90003E1FFD7E01C733F871B9C7013F2B589C36 +:100FA0008AE78AB7260456A33E18EC8A96BBA18925 +:100FB00067572B955704A3643C075C766A6739B67C +:100FC0008F91988AE7D0CBFBE6FD33EE2BAC0ABAC3 +:100FD000143C27BD219F9FB349DCD97ACE4AFDA29C +:100FE0001509DE9FBF3A9081701F39B43C0EF7039C +:100FF0008EEF5D1187FB6D3FC4A5F1EF3102F83D27 +:10100000C639FC573A967EF86015D0BF30B9D7E2A2 +:1010100006142C7AFC870FE299F0ADADDE5419F47A +:10102000D41F0FDEFDA0F36AC65252B4BEB92A63C4 +:10103000258F6FAA774E826796182F706FBD36077F +:10104000F0F57D7DFCF607B1FC138BCF2341FB5BF4 +:101050001FEFAAB7A581184B552516186F6DDEE056 +:1010600083D8BFE9D1EDE577C37C3BF35EA8B779C0 +:1010700068BF4CF4FF457D25F0C4AA397AF937E3FF +:10108000B09CE4F22A1688CB3E397847BD0DFAF7BA +:10109000266A1B18940F3E7E07C137CBE77BDE0E16 +:1010A000E37D92FB4AFD7C40CDAC818074D9FDF795 +:1010B000964AF62ED0EFFC3C7FA50DFABD9E77E652 +:1010C000C1A268D0F73B2B5CF89DCB3B79BFAD8FBD +:1010D000A278522B51609EF7F23E23B8CB1B0385BA +:1010E000F8DD8A2370E1C11ADA4F13FBB813955C5F +:1010F000E4C3A1723ECF470D955379F9E5976E5B36 +:1011000049FCE464B2E52B504EF01549A8E7D35CE6 +:101110002AC5ED4EDF2DBF84F2CB92BC6107B6B37A +:10112000F9DEC4F62F7F2FCF83FECF2B42EE9FFB3D +:10113000DE9A8CB7DDF87E3CC597BD6D9C5FC3D74A +:1011400019C8E77E526F4CE4FA2979E67DDBF83363 +:101150004C7B02FDCF98C18DC88F16D6776F2BEED2 +:10116000EF3895DC9B01FEE43CB7E99CECD03EA750 +:10117000534BBC08702E2FE57EBE3E7E411ED7032A +:10118000592AD733C9560BF9FB8325D2A3C8F7C90F +:1011900056E91B0BE07D4A0CF31DC6FA718CCAB5EB +:1011A00020328761AAEA2CEF013A873B3EADA41DAD +:1011B0004DBF755EE245DEBFAB9BE289208D3F0CE3 +:1011C000AFBC01E14DB6D6956C2832E0BF88D3A7FD +:1011D0003791E3A1F7731E77F49ECCECC6FDB033D4 +:1011E000B966BB55DE57E7C0FDB9E44A1813E61FE0 +:1011F000DC1E1DA4F99C3ED5A897AE12F86BBE1854 +:10120000CD82063BD96C0B39501F355F74D3FBE49C +:10121000F6C8F8D7F390CD17135860BAF13D5FD7F1 +:10122000F03849540FF0507C381A3CB502DFCD1726 +:101230000B58707A24788AE8FDDF0B9E02640CC09C +:10124000EBC6B4A2A0D15FD7C76D613C0EDD18AB71 +:101250008D4FBC9C5F78511A057E1BBDF74C0695DF +:101260004CFB0121077DCF28E02B98A38D4739DB6C +:1012700078B8623C731BE86F13F4177A1DE96B3C76 +:101280009F70B7C0DBAAA17D7B7EAE62797A11C563 +:10129000A9BD9F574E5940E3F1FDCC5E1B8FDFCABD +:1012A0006D1AED9797F725CA0109FD3AEF13B44F70 +:1012B000E89413EE9B3DCC47BD89FE0AC2D3F724C8 +:1012C000D2F7E1EB6DD5E550ECDB8C6FF459971953 +:1012D000E0D3E56C34B984889FC325BEF360AA923D +:1012E0006B3C3FA1C37D3697D113E8CFE996E6E684 +:1012F0007C24F033920F268CC10719545FDEF71C53 +:10130000ADB359C039FE4C286E8A58C75A7836E7B3 +:10131000C7D1FA0672B99D2D7BA6D2F515910FC4DF +:1013200051CB87F47D79FF3CD0F7E387CAC04F0AE1 +:10133000E19BDB2B30D04EE770FB6FE4972FDC6234 +:1013400043FC68258477F8CB8970DEECBCF0473E1F +:10135000C965FAF717617A83F9757C1AF5848E7777 +:101360007D9C7F15747A413C87F59E44FBA75F9E68 +:101370009EABB8423DB740E8395ECF92BCCD589F96 +:101380006211DF23C87C3DCB5FAACFC5EF936F4FBF +:10139000B52AE8B7AC927CDBD08F58EE50B7C51AAF +:1013A000F8713520C00D7ED20698E10B78BFAA2FC8 +:1013B00086F6FD57EC8EA6F7BAFFF459A7447C7663 +:1013C0003BCCD0523A923F6E4F75D03CCBB7E7C47E +:1013D000FB8CF0D9403E30CFEA12F039C3ECA6CDF9 +:1013E0005C5E9EEB5B26590DF56E6E47E76669EF16 +:1013F000E701FEDF95C439848E64D3FEC8EF73CD58 +:10140000F90DDD5EFD344BFB386FC6C8F623F5A041 +:10141000B06F7D75948F18BF095EE177203D8CF227 +:101420001E6C1FCFEF8D6F0C599A0DFC714F7E31E2 +:10143000972F2B0B488097F7170170D30CFEA0C491 +:10144000E913886632E6374E2478CB64289F488EAD +:1014500055DB517F5803C7F19B66773EE7AF6417B2 +:10146000E7C313D1FE7D38AF8D2989C4A7423FFD64 +:1014700026839FFBD2F5DAF07729D6D05C43FD09AD +:1014800069C1443ECFF8D276C9C04F43E33219C791 +:10149000BDEE2FBFFF782E7EFF93C9C74B82F9EBBD +:1014A0000C7230B3869FC348CFE7F84DCFE7FBC936 +:1014B000273CDE5E84E7440293DB615D2F00DBC4E2 +:1014C00041F9855C496D5786F513F23FD22B05EF44 +:1014D00033407970F07283F0933B0BF8B8E34439F2 +:1014E000258EB70BA74F93A8A7A316F0DC55FB8E4C +:1014F00017E3AABBDCDC8EC73A43F43D3E66C691D7 +:101500005F7654C07A228C932BFC23B063B4DE91B7 +:101510007645B75B031DF81D20CBE7FB7CE17140EE +:1015200078BF73F6CEE7289F749AE79376C9DEF802 +:1015300009A8EF4E67B100F477B8F8F70CE1F0783E +:1015400005DD1D225EDE22F22F71175D1447CFCF1D +:10155000E7F1A82DFF3DA2BF6D1663F849B29D7952 +:1015600003B281FE76D97CAE36EE621CF56FBE38D2 +:10157000DDE4A78CD4E7E5545F90CAE3AA0B6717B4 +:10158000C7B3087809873B24E0D4CB5ABEAD8A198B +:10159000E0A960F2161CBF82859FBB9923D3F77622 +:1015A000E07BE3F950D0EBDC7EC0B3CBCDED2CEA91 +:1015B0004B3DCE427992E319FB3CAF6255FE0C8362 +:1015C000DD11FD74B9EEFDFCF78158EEDF2562BE3A +:1015D000FD1DA10FDE11FA5FD7EFE1E7969ED0F572 +:1015E000BA907FDD5F09A7B7DEFE9CD03F878FD71B +:1015F000A5223D8E386509CF3B6F8DF6A6A25E7E93 +:1016000051E40F5E1476B7C659A919FB7F8E973443 +:1016100060BDAEC7983703ED76F91C9FB518F96D1C +:10162000A7C430949D19F69DD0B7F3DD34DEB7F32F +:101630005D263F7C4598BDFA4E3EF7D7BF23E47444 +:101640002CBB37A47753B8DEEDFA736510CFC30C0B +:10165000B6DA187EAF3BB3460B0E9421BFC04221D1 +:101660000EAA5852A5B442D9FE4B3BDD4FC08E4660 +:10167000D6ABEE16495B09EB7E44E88DE6240E6797 +:101680007352C8918DFAA499AF6F62CF31C9668049 +:101690007F62136FF778BE9DD691DE6023FD9BEECF +:1016A000D70EA0FDFA67F1FE9FF299BE3E09E50C48 +:1016B000FA31DC1F4B57F9B86E3528AD8071D60B67 +:1016C0003EEAB02C28427DD891E222BDAB16FA0E3C +:1016D000E7A31F7F36144234CC3CDB67C3F8F1EB41 +:1016E00085DA117CAFAF4BB1CAE9A8675C67395C9A +:1016F0009D89663F1A2822E0E8E67CE4F69620BC45 +:1017000029718A859FBF649948DF9444A107539843 +:10171000EF08D2DDE925FF252506DA19BF2F64DEA3 +:1017200032CCD305938B4B518F67EDE47E426D52E3 +:101730004129E6A59FDD17F93BBDDF083D02F0FF1B +:10174000AB11FEB1EC9DDECE3E4ABCA8EB4397B098 +:1017500003154B929622DCCD5BFEC585DF61A5F7B4 +:1017600074492ED29BBBF8FEBEC037C0F106C291B1 +:10177000DE5341FC931EB0318C7B6D31194106AEB6 +:10178000A12D71D678BA876614389B5BACDA4A63B0 +:101790003CB0C541F8EF0A3B37A4FBB97F107A7D16 +:1017A0006BA1F723D413EB8F3EE0C0F16F3DF0B691 +:1017B00023D279F3A1FE578827A989DBF16699C95D +:1017C00051258887956447D7425C8F7983E6272423 +:1017D000D2CFACC119C42D90E69EC32FA443794249 +:1017E000B33603F36329C0037D45C3FA34BD19F84A +:1017F000CA82F8391CC278337D13A353993AFE404C +:10180000BB661C47BE0656C5FCD1C7765F33CEF714 +:10181000719A4B0D801CFCFCF0ABCA3DF07E0BD4E2 +:101820005B5391BFBB53F13BDD8E42878AFEE4D709 +:101830000B7D7105982FB2819D86F70949B16A2BFE +:101840008CAD44B152F932780F5FB76EFFF5F733C4 +:10185000377139D00AE2F473E31E5CB762659B907E +:10186000DFF30B62890E2FD859C099887920BE9E6C +:10187000CE026D5201B647214CC375058F393C230A +:10188000E735F04F56C15FC1C7336B7A1C784E788D +:10189000ADD01F154B0E48EF1AE85E5AC0F76BD358 +:1018A0009FE89214E2E303ADD549D49EEE45487F0C +:1018B00082FBF16BA17E95496F2C6BC4F575C470EA +:1018C0003F07F4C66CC4EB09CB86E7D1DE9C2865E4 +:1018D0006A3B433DD2779CD4A980F784C3B78FEC91 +:1018E00035F0472B94AB0BB8DE7FC1E1A37CD00B66 +:1018F000E9FC3BE30E4B5BBEDF3D2CD7E172585D4C +:1019000060117AF08064217FAC8FD6B9AEC1467485 +:10191000796EF12D2B719E75496925F8FDFD558174 +:10192000EBEF427D38BF3741C2FDC53AD17F5DA79D +:10193000C4F7833B5F762C32D8BF3D3F7AD9A114E0 +:10194000637B7E2E795DEF611B9ED7F57CF81CF1E1 +:10195000DF3A587234FAEF851CFE8FEDA10CE49F3C +:10196000D823774E44FE63B285F8CF55C3F519E608 +:101970001A7312B8BD27FDD6964B79015D6F7616A6 +:1019800058845FCFF55C4A4A7109C651ABC47B7D70 +:101990009EEA18F539E4E7EA5289F0EBF9F024C140 +:1019A000D954A0E76DB99E55E2F839777DFC91FADC +:1019B0007E0AF9BFDF11FE23D0CF5F1041EFEBE3CA +:1019C0007B1EA9A3EFD087E8817836F0D1E6020725 +:1019D000C1B9B9C026E0D014C49362013945BFDA59 +:1019E000E12DC2EFDF6D29424E13CE28AD26395DC1 +:1019F0004E7AA4239DDB21E0F300C2F3DCE2A7AC26 +:101A00007B51BF144941D4ABBB9F5940F86C469AF7 +:101A1000A17EF1AD243AB3548823D0AEF8B85D6C02 +:101A20006EB891E2D0217B754422BC3707DC74FF8D +:101A3000D3FC9E053CFF9814AD0ABD44F41DBE972F +:101A4000C0E7417F5997731D7F3A3E4E8838BEBB31 +:101A5000407B207FC6703CE96E1CA4383D5C1EE3D1 +:101A6000453CE9C77812F3BCAAF3B271A46EF7F44F +:101A7000FE7A1CB9B6E517E477DD96FA123D312EF1 +:101A8000417F5E8F5386FC37113F3C249ECF08393F +:101A90005B5BD6437A76ED7B7E9217770DD70BEEA4 +:101AA000B3667DA6C729E078897E3CAE5903FA5219 +:101AB0008A90B7D19F6B70FF08C69B7BE937714650 +:101AC0007FF239216F1F1C02BF97F4BD9FFCD5D157 +:101AD000C7F1FF7A36D2F5303F2FA38F372954351F +:101AE000FB7DA0DB4787E2E91EAB8F9FA8BF0BCB36 +:101AF0008103F1741E65526821F1C3C749B355A42F +:101B00007F523BC7CFC73D95C4371F8E572CE897F0 +:101B1000B6F63C780D7E3F7D46C8D787CF585B70C0 +:101B2000FD1F3EF3FCAECFA15D53B0240549DEF6A8 +:101B3000F8FF72E0F7D396E0037F41BBD574205ED7 +:101B4000C6EF19DAFFF907D76079ED8178D293ED06 +:101B50003D8FF2FA43BCFEC347BBAE413C3FF7F8B2 +:101B6000D3D6BD65C3FCFBE1335D3FFB1CCBDE3848 +:101B700015F9A4D9B7FB5B58660BE3F83D70BEE3DB +:101B80008E4586FCD39EC3C788DF747E98DFC3F979 +:101B900098353828EED6F9F6FD97629804F1C0FB27 +:101BA00009FCBB9F15560BAD7B8555A2E7B3629F21 +:101BB000EB2F42DE59215FF7F9CD6AFA7B76F4EF1D +:101BC000BDBF6EE079A3BEC7CAF07D05BD6797A60D +:101BD000D3772FE777F37350F81D0CEE0B363D6487 +:101BE000F562F9DF775BF9399F9D515D2847B73E74 +:101BF000640D905CDDCFCBE0706618F711DFFDB7A8 +:101C0000E886487E9A0EDF90DFEDF0F5E0F7022BD4 +:101C10002C161E9F5CAAFFF52C80EF7D8B7204EDC5 +:101C2000BEDE2FA590F71B5E078F5374F8F576C3C1 +:101C3000F07BA746847FB7CB0CFF432E013F6FAFED +:101C40008FF3FE9BD14D91E0D7F16A433C96615EE4 +:101C500089F5A1DE7B7FB79D9F4B59C9F314BB6605 +:101C6000551D40BDBF6227A763ACAA1D40FF552983 +:101C7000B4D3BAEF728BFD3811AFB7EFAEFF35FAC0 +:101C8000879FED8C56D08EAD4854CF117CBBF8F7B2 +:101C900017CFDF3F33C3F81DD9FB9B9966CF31E0E7 +:101CA000FB7B25B90CE07FF7A1925C3B3CFF786C95 +:101CB0007606EAF115BBA2BEA15D661DCF8A38ADDE +:101CC0006E5ED124D4E3012BE8E96B183B793DA784 +:101CD000DF7AF1DDC1FAA5095D98EFB53865A60197 +:101CE0009C0B6B12BA701FBDB690CB3BE684709F05 +:101CF00094D54AE4FF75380287C8FECB3D1968FFCA +:101D00005D4521C704282F6E3C7C0DA6B78A41FF94 +:101D1000E2FD2BD0FBC017E0E7D677AEB919DBEFB9 +:101D2000B332D99A86ED5AA97F8653BF7FC4269FC6 +:101D3000D3F77BAD97F387CCF7BA18EE9FA17576F2 +:101D400038B85F06FE0C8B8667F94691679696D386 +:101D5000798313DF0CCD417BFBECF9DB639A8B8C31 +:101D6000FA91F74FEFE57ED2BADEAE5607B4FF6ABE +:101D70007E09DD53B44EECAF2509395C1F709BEC36 +:101D8000E6AA42AE9F53642FDD97E2D4BCC9F7A107 +:101D9000BD8AF2DAC88E7FC36B6FA5EF7B06331660 +:101DA0009123F598C92EECB1FBD266E0BC1DC2FFB1 +:101DB00039C0E186FE349E52A925617F189FC67303 +:101DC000366AB6FBE8BB3E467CFEDBFFB9F88071A5 +:101DD0009F2ADCEEE0F8656EF463020DC4778A4357 +:101DE00045BDF32136A57102538D79F7F07C16DAE3 +:101DF00051949FAD851581C219C34F3DFF154EA764 +:101E0000E744FD7F80FD2F44FA1C1A7745F731E93E +:101E10007EC2FA1AE127FCE46DB273EB7D36EEDF89 +:101E2000F9DE23FFEEA3CD1A7B17E463CF8FDF2605 +:101E3000BD5A7794D36D8F34B00DFDC3C0F5D2F485 +:101E4000C70CF67BFDBC8F338CFCBFB6E6EDD588A6 +:101E500087CCA36932DAC1F5D70CE4A27EFAF4C7C5 +:101E60005C2E4E582C84D713DD53BAD08F919AB87C +:101E7000BFB7DEAF744751BE91C78D10273D508D5F +:101E80007E6413BFCF707D6F17D90956C4E5C4F3C4 +:101E9000C83BDB502E1220BAC17BBC9E5BFCE6B572 +:101EA00008DFFA663603ED4B7A95F6632CB3A3127E +:101EB000DD4195B224A9C2467CB76C3AF2DD9E4959 +:101EC0003DDBD04F0C54333A37B3C7DE390FBFA7D1 +:101ED000DC53ADC88031C04B7FC671AEEFD5C7F0C3 +:101EE000E95B3811FDB3F5498B55D44FD50E1E1F54 +:101EF00055A7C452DCB4E7C75D1447ADCF77A8E45B +:101F00003F1D5D4671174B75113FAC3FDA9AAFC06C +:101F100038F395AB543A2766035706ED489B9BE18F +:101F200078F3AB0686E6CB81F79FDAFBE85CD9A7AE +:101F30003F8A6201431E36A1CABFEF1EF4D3E552A9 +:101F4000D5AA629CD6E7437F1A438C5615EFE5F37A +:101F500046A9503F78BD14C4FD8404E1BF64D57028 +:101F60003AFE42D8835F08FDF38B42879053913746 +:101F700097035351AF7E22F800FF9414A02BFD036A +:101F8000E8B132447284712BD233294A2BF907030A +:101F90009F2655727F42DFC748063B4BFB194B6CAF +:101FA00044E774A033EA3FF09727223EBE9A945745 +:101FB0008AE7183E2AD4F3C412E50958C0C1E8885C +:101FC000E438DF03186F0D1648E5DDCA48FEFEADA4 +:101FD0005847F2386F19DA81E4F13C3F9E6CADB09E +:101FE0004427D1BE888AFD92AD75940F194C4E538B +:101FF000BB0DF8D4F326E7818EF45D74F037B63A62 +:10200000833F31BCDF124D743E6F09D9A23D7C7D08 +:10201000C8D7FAFA82AD310D46BD7541AC2758C01C +:10202000FD0D267B891F522CEA38CCDB548F63745C +:102030002F4DF5A36B1FE579F6765AC7DB858CAF7C +:1020400027CB4B79B7C1E4588237398B2DC7FEC9EE +:10205000EDA912C2318C4F99ECC9568187213947BD +:102060007FCA8372CEFDF8F5E0C73389CB3BF125FB +:10207000F8F9748E40C8FD903E13723FFF28A7AF59 +:10208000AB86CB3DC8DD74F41F519FE1F9D14F2BD6 +:102090003ECE45B9676C6A29CABD2EB7EB1D03B9A0 +:1020A0006AD1D8725FED0A92BC544FC92D6DF70CFE +:1020B000F7FFD4AED0FEE7A72097C8F73FFFF1ABFC +:1020C0004163BE42A7CB0B8E00C9D30B99312AC7FF +:1020D0001FF06DECB03E5CFFECF6DCCBDFAB162006 +:1020E0007FE37C26E37417E3E29E616C293D036E77 +:1020F00078BA5AB8DFCF6A2CC23FE97F7207D9F3AA +:102100009E9085FC93BEAB314F533685E74F75FFEC +:1021100024A3C547F708A580AD247C77BB28BFAFB3 +:10212000E7F1C2E1CA9BC2E552CF97E97129EE6B94 +:1021300060FB0553B83F5A25DA2D9D2299EC737840 +:102140005CCBDC3C3E1BCD8EE8FDBFACFCA23E8FE1 +:102150006ECF86F1CDE9AAEFCFE0BA16148DDEAED0 +:10216000F318D71FF487F479969F3FFF10950FD08F +:102170007583F0CBD5426FE69464BC873344F9BADB +:10218000A7445E3CD3B724BE2EC2B87A59BF3F6A7B +:10219000347B29FFC54A70E2B6198E23CFAB51F1CB +:1021A0007CE9ED025FE1ED6DCCF68701C3FD82991C +:1021B000BE3FF1EFB97CCC8FF81BC97F41133CE1E6 +:1021C000F79A20FC97BBC7A4236CFFA423EB67748A +:1021D0004F98CB19477C33178346987FBB3291EEDB +:1021E000B9C6F116905FD416B6CF698603EF0337F0 +:1021F000C231163E3B2C879B903F9F12F8CCDC7778 +:1022000079B87F24DAEDD2CF07AF7C89EE4DBD706F +:1022100086D179F60E8B42F741075EE7F741C75E3C +:10222000C37E87F571B33AF3E99ECCD69E06B22BF6 +:102230005E339CE31BCCF7C0A4F9124DE5094DE9D0 +:10224000A6F693FC99A6FAC92D85A67A4FA0D45478 +:10225000CEEAB8CAD43EA7739EA99CB7F7ABA6F640 +:1022600005C13A5379CAA1A5A6F6C53DCBCDF4DE8A +:10227000776B259D5BEF670948AF6982FF9873A074 +:10228000D4784EFFA529FC1C5F79BFC5345EFCAC39 +:10229000B07B7046E19F707A4F3B1ACE77D7939E02 +:1022A000BA80F79403BE5D3F3DDF867C94BA82F925 +:1022B000A340EE5C617C3ED6786DAEA9963D68DFAA +:1022C000FAADF45DE3CFB022829FAA7FB7AE97ABA1 +:1022D0006BE2B9BEBD5837865FCBF9B92E8AEF7F66 +:1022E000D6B9CCDFB9388AB8FDFD8BD09B63F1E756 +:1022F000079BCDDFC5B8F779E621FC0CBF4F9130C5 +:10230000DF2155A4017E127D6EF2BB9A6C215662CC +:10231000B0F7BB057FEF11FCBD77B34CE37C7F7357 +:102320002A3DF76D56E8FD239BF3E919DCACD2FB9F +:10233000EECDB3E87900FC2D7C1EDC5C43CF439BE3 +:10234000BDD4EE879B1BE8F9C4661FFFBECA576069 +:10235000D7EF4B22FD7C3131629E7BC477FEFA774A +:10236000FCBED9F610EA27C5E6C77B1046C3C7886E +:10237000FE63DC6F1A7E3F6A72D1DF763FEA58FA5D +:102380004FE71776697A4EA473BFC00774DEE7FD86 +:10239000295F3C1420FD55C0BFD377F2EFE0A6A221 +:1023A000ADA7B86C20DD384FF8BEF43C161FF17BAA +:1023B000F79D45DCCFD204DF69617CB7BE88DB893D +:1023C000AF15FDBFC577C7ECB1E4DF1EB3CB1393E8 +:1023D0000DEB3D6677D17B962F33BAEF3F51AB4281 +:1023E000BEC4D4BD03FCA7EF17D9859F924DF7CB90 +:1023F000EAFBF7A3CBB5390F91B92F8DFCAE0B32A9 +:10240000D3D0AFD1F0102EE023B596318AD37D32F0 +:10241000DF3FBB4DF83D36A02BDA3BD5A02723DCB0 +:102420002F351A9FF51429263B1F7E0E21D3976660 +:10243000BB12F919717EE1AF949F7B517E5C5FBE48 +:10244000FCE87CCE2E8DCB8E243F9A909FB22772D3 +:10245000F7048A86F9BC02ED9261FE1F0AFDFA4379 +:10246000C1E7C786FC85B446D24FB6BC4463DEA440 +:102470005BC8C5D8F88DB699F45B989C8ED51F774C +:1024800054507E34901F9C5F73C6055C717F0D7D38 +:102490002F8FBF11F31D4DBAA2FC4B120BDC847CB5 +:1024A000BA9A59685F76B5D34DE7E5D85EFBC703A6 +:1024B000063E95B2B49F14A1BFAD31454E2139A25D +:1024C000B89B89FB9E4BF4726003C9C14C26D1BDF9 +:1024D000D0D2408A753DE601FF218EE2A49903AB7C +:1024E00099C80BAA56DC17AE029722453F2A89727B +:1024F000E3E771C93CE700F67762FC9F053224A947 +:102500001D56E4B724E9F849E86F7D9EFF6E49A99E +:10251000536D4FB26017AF15DB498CC79FE5EFF1E4 +:10252000FA39ACAF3D09FA5DC306A97E96B3A71D83 +:10253000EF999FCC2EC9C4C7E30FAEFB0242B3C0D4 +:102540003CFF0F705F3FD06663EDF07CD8F5ADC700 +:10255000513FB704A264BC179DD978FDBFDB9D3203 +:10256000CAD77E8BEF2DC4C7CA844D33F9212EFF05 +:10257000347E5EDEF60EFA23160812BF80F9E6B945 +:10258000CB1A56E172C47BC2A767B89D2EF7E1E56E +:1025900087B6F2F8BC7D3BE7DFF6565EBE28F8F55D +:1025A00053C1E7AC58BFEF0C2893423F5522E8E2F5 +:1025B0000F0592F0F73FE254FCCE4DCB2FA673CD22 +:1025C0000E85FF8E480CFEBE00C0177DE35E828F35 +:1025D000B1463AC72485BC74CF76F8785AFEBD342C +:1025E0009E438CE774766A4EE00B576330608FDC55 +:1025F000FF38FE8E836D16A7C35D6E9FA398EF2FE5 +:102600006AAB303E0500711CB7EC1387E0383FFE23 +:102610000D749071DCB1E8608DAD3A83799879C121 +:102620002805F312E1F4388F3A1BE7FD9343DCC72A +:102630007379FA4C2BE6FA655ECBF541DCCF9B7BD8 +:1026400069731CCE5BD9323F683C1F356F3FDFAFEB +:10265000986757921223D8EDA1766E18C778BF9E5F +:102660006D60028EF7B351EE839B53ACC7D913391B +:102670001F0BB8ECF3BCABF8394ADFB5B85E074BBB +:1026800097703FC31A5743EBDF9696EAC1F51708D8 +:10269000F82D4E66CB417A009DAC06BDE8D82BD113 +:1026A000EF4E00DDF211BF8ED410FF9D25B1BF713A +:1026B000F86B096F24D1098FD4C5BF9C05E58A84C6 +:1026C0009B92809E7F2E7EF4461BC8F5E1971909E8 +:1026D000F5BF3D79F461D4D7871725FC6332B45F29 +:1026E000F8F4A287ED587FB344F5AF3EC5EBEF9EFB +:1026F000E2FB6A31C033FD97DA24B4D74B998DBE23 +:102700001B3A79E2AA13F8FB004995FEB7EE85F271 +:10271000A25356BA6F4DFF1D8247F1DF565E9E5B96 +:102720008E7A4CFC89FA03F86FA07FD65ECF31BC5D +:10273000078DAD94644C1FAEDECBF771B2F6CDA41D +:102740007567EF2D19C0F9982F4A41FF66F55EAE07 +:10275000C7B2993A88FB153D9877B4E3BD614A3B0F +:10276000FEF450A098D139CAC92BF9399973FBA34B +:10277000BA304F7C7A33D3B6E4B051F5E44CBD0C9B +:102780007C89F71E5C1D56AFEBD17392CCEEC079FD +:1027900036C4A98F01DE66FA5EB5DE61D0A378A3E8 +:1027A0003496AF13F2A876B04A07E6B75732BA9F0D +:1027B000C2C1FCDCEFD19C03EDA8675107948B9F4D +:1027C0001EE2F391DEADD6CB3EBF0DEF9760896080 +:1027D0000754748782A94EBA3FCB43F71559AF63AC +:1027E000F4DD70464DE8393BB49FAE55903E9DC137 +:1027F0007CCFF7C173B67658E8D7603B1E75B760DB +:10280000BC0FE3CDB9C4E55F63B20DEBE731D5C6CC +:10281000EFE562644FAB52F9B9F31AD649EFBFCA7C +:102820007AE859CBFAE879031BA4A797C974AFD704 +:10283000354EB003A077F6147B74FEA5BC61694DDC +:102840005417C6738B16827D80724388517C575F04 +:10285000A3D0FD013A5FD70DDD23A0D0777ACCA6B7 +:102860004CBAD160574FEE5F4CF7452916F3B9DDEE +:102870007D42CF3E5ECCF5EE1E49E88B5B25CA9FBC +:10288000ED59E22038FA6F95288F0CF521AA5FE206 +:10289000E4F5766F6B0AD67F52CC301FFE6AB162C8 +:1028A000B2F7FD0BD6D0EFD3746DCDB5E3B3CE2721 +:1028B000EEDF620101676092311F7A6E19C029F262 +:1028C00055C63CC861A1175E451D3803F972F1CDAC +:1028D00024B74E0E6FCA0D09947FA9660D363CDFF2 +:1028E0001912EB0A4ADE2A82771DFF6E5D97A72632 +:1028F0009D3F6C01473AD4D7AB1E8A5774F89706B0 +:10290000793E7669D30292AFDAA6750CEF83A858A8 +:10291000B290C66BF0F2F36552938FBE1F5EE2E495 +:10292000E5E1F363FC3C41C3CA8A9BC9EEEF8D62CB +:10293000287F0DBE656FE2F9E3258DD7294847A7AB +:102940008DEF8B8D5F0930E239EFC63534FE160D01 +:102950007893EE89EC0B21FFA664DA481E26D78215 +:10296000E747FE75907EEFA1AB80E75313C5FE46A7 +:10297000020461787E6CC9BE07AA912EE9CD8CF65F +:10298000F515E67320BE47F383F6DF772981E2472A +:10299000F41B26035C2D5605CFD57A6C210BC2F7AC +:1029A000EA5E89F8BDA3B19DECED855ADC14C2FD49 +:1029B000507E0F234C20EE73F36D0B952159343F5D +:1029C000BFBFD02CFF16C6F316B78BEF18C2E304B7 +:1029D000678B83E665F354D25B92378A7E2F2B1C7C +:1029E0005ED403845770581F4CC376E3ADDF34EADE +:1029F0009142EE5FC11FC9CD8E63437E9535D6E00F +:102A000057A17DE6E76B37717B137D50423B5F2911 +:102A1000076E4982794E1E5FB90D8FAEDB93149B12 +:102A2000311E783E76E659B43BA75645111D5F4BE3 +:102A3000E3FECCDC4B4F9BEE7B183795DBA352B407 +:102A4000A7B0AE92967AB2A36ACB02933D2DBD9504 +:102A5000DBD312BB3C2E923D4D9D6A962BF5B8D729 +:102A60006457E709FB78AAC27BB3F1DC4DEA542E28 +:102A7000376953855FF5CB4006AEF7FCAF9842F956 +:102A80003F3B137E81994EB4C700F51FFC8AFF3E81 +:102A9000DF087CEF1BFFFC5D267C07C85EA17EC5BE +:102AA000A756544CFB0FEA8BDC2F2B9CCAEFDF2D73 +:102AB000DBBBC08AFECC335D331FA46D8E31F83290 +:102AC0009C2EA7A668255393E9F7D72C38FE677B81 +:102AD000F9BECBE113AB89EFCE48CC8F717BF838D0 +:102AE000A50814D42FE963C1A0346CF73E0310B1DC +:102AF0005FD969AB1A40147BF10CFF305EC73738E1 +:102B0000F16CE050595DC9DA51EED23AB83D4AF362 +:102B1000C9A6FA094DA9A6FE93FC8AA97E724BBEEE +:102B2000A9DE13504DE5AC8E59A6F6399D9AA99CA5 +:102B3000B7B7C6D4BE20E83595A71C6A30B5670183 +:102B4000ED6491C13E17F7F84CEDF1DA46FC9D1F9C +:102B500055FC4ED0B4A34DE6FE67C13F74E2393157 +:102B60003FE1B18CF132D503DE81A59FDF0FFD97E8 +:102B7000CE8A9243D07FE94AFBB03FC9D0EF61567D +:102B80008CDFEB7D6E3FEA4F35CC3F0D8FC3D7BC5A +:102B9000187801E5ADF4451FED33F8A79AE3F26A22 +:102BA000AB9BE8F559BF55451F7E0D7AF249C374BA +:102BB000FD8C71BE2D0379A77DDCB0F5EB717B93A5 +:102BC000A0FB521827045551A966BA472B66BABB19 +:102BD000F2CD748E55CD748E9F65A6738266A6B3B2 +:102BE0007AF62E6B06C0F9EB342B93F0F7966ACC8D +:102BF00074D7F13C0BFE8B84E770BCAAF87B4B5377 +:102C0000C7C6E7DEA9E1790DB782FED3051BF7231E +:102C1000E06FA1B37CA4DCF78F22F73AFE46EADB33 +:102C20008059FEDDEBB6E17D126A1F97FF19B51ED4 +:102C30003CAEC2CE2C9B3901E99ACE7EAA7F5FE2E0 +:102C4000C3733520D74F4C9D81FB7FEA4080DB4B1F +:102C50003A3F77F884634B36EAD9D9EC49F43FC25E +:102C6000F7017F3455DF07F4FE68AA611FF0DCD559 +:102C70007E3AA77346B2A86D49E8EF32E293D5BF1A +:102C8000E4768085C7F7E17E6D6019E99399229E0D +:102C9000A39BBC92C8AF55294F12A65F4A7C7712FE +:102CA0009E20FE1F181721FE971AEF34FBB9CBCDDB +:102CB000F86A9FE5F3485923F5E6E8F1FF00BD9F68 +:102CC000CB02ED6887BF52A3BEB111E03EF5B55708 +:102CD00027A09F159E0700FC9EE1F8E5FB9D5A4D3D +:102CE00026D9F1B8B2BEABD1EFC968E17875205EE4 +:102CF000A1DB5B4378D5DE427D7B249ADBE3D3FB0B +:102D0000A314DC1F2F7B79253F372C292A9E5F3C9B +:102D100092C0F9E4B4C4068E4079463F8F27B29A38 +:102D20003C74EFD0118FFA3C964FAF9328CE293FD9 +:102D3000A359F11C53B69FDF9B52DAE6ADC47B1456 +:102D400016DDC1CF0FFCE493D574CE297837AF3FA1 +:102D500052E1A773DCA7EFE5F533CFF2EFD80A0213 +:102D6000627CA9B3320EEDD95689FB2123E8C9E371 +:102D700092B93A3DF6FDF1F9BBCA86E9B1FCBCFA5D +:102D8000421CBC5F39E8BD369E8DA48FEEF75F63B1 +:102D9000E37EBDEEEF57312F3DAF657E7A5EA9BF72 +:102DA0005F382D9FEFA73095CA9AF0FF5D355AC561 +:102DB00053C8FFFE3886573B85FB019D89DE75B8F9 +:102DC0002F9754E9A57B570AA7713F77F8A9EF33EE +:102DD0006B9354A8EFD7EF83767AE93EFB94DB54EC +:102DE0002BCFF3F96D2867C14925D329FE99C6EF8A +:102DF00089C9DAE927FFF38666583EB40B3D6C4B70 +:102E0000C0F36C74775484F87E38EF16769ECD1636 +:102E1000A0739AA556650A7E3151F5F4C30FE37D80 +:102E200013C81BF8BD70F9B4EEC501FC5698717F4C +:102E300064AC76FDE27CCC11711FD042AF877E7FFF +:102E4000F94889D9DFA99AC6FD1CFD39A39FAFF3C4 +:102E50008689928AFAE33A1B0B619EFC6F5D576983 +:102E60005BE016C4CFA2EE28C6CFB5B074E3B9625A +:102E70005DAF2C62FA9FF704F2D96A11CF7E50EC55 +:102E8000277A7FD09577BC0EDE9F5B2005F17E9080 +:102E90001B9DE08901FD5F3DB1879EFA78ABF7FE8F +:102EA000FC8C147705FED1C385D62FA6D04F0B928C +:102EB0007E5F6DE3FB8A3A3CC943FA1DFC73A83F71 +:102EC000097E529B8AFECD6129D53A72DC70BD0F16 +:102ED000F2C4D04E64E8F253B3B875A3519FE5F73E +:102EE000B46EC4F6B7C7519CADE73799EE7F2FE0BB +:102EF0007A2BC51910F10B3F9F99D6C4DF4F62831F +:102F000012B65798DC968CF7F0E086023CC79F38E3 +:102F1000DE8A7027A03E437BB1FDB932D467B0ACE6 +:102F200000E6CF402BFABF0FF3D99DB55A33CC033F +:102F30006BF1A32DBFCBEDBB6B1AEE1B4DB4F0DFD5 +:102F4000834EE5F870CB7D1A275B809012D5E21A8C +:102F50008F7E79787E2ECAE67F1CCB2C1025E3F974 +:102F6000E3875DDFA2FA169B538EA2B8C63F13F922 +:102F7000BB7B5AA238AFC1F37356A73CFE3D839D7D +:102F8000B6CBA9E38D7E7A494831D54F7F31DF54E6 +:102F90003FA34F3595679E99656A3F7B403395BF48 +:102FA00072BEC6D4FEEA41AFA93CF76283A97D0593 +:102FB0005B66AAAF74DE6AAAAF963798CAD7A5DE59 +:102FC000656A7FBDD26AAA673EED16E4276689A3CB +:102FD000EF2A46E47FC2F4F0D59DE399316E18CA1A +:102FE000A7A43A880FA2902E46BB385B55F03957FC +:102FF000023D0BCFEC22DF334857D0B713913F5639 +:10300000E4BFDD8EE3666AE70F217D9E0ED818C20D +:10301000B12B667DD3328C1FDBE26409F4C7AE5C52 +:10302000FD3B59E072D01F4FCFFAEE7368CF9E3E42 +:103030006A0B2270C3DFD1F2FA6D318CE7410A9D31 +:10304000141F3D8C9B1AC847536C749E738D55A3F7 +:10305000DF7FF8C0E2E74F499510BEE5169F8ACFA3 +:10306000FD16DF4BD3287FBB3703F9FD6979E0BB41 +:10307000F89DF2D34793E83BE3A77FFA4E07DED7EC +:10308000F607FC1D7678F6F67D7CE851784E7B914C +:1030900092B26CDAAC77BE3B1FF1D9675731EDF6CF +:1030A0009183ED6486EFF93FBA839FDBF139AD5E22 +:1030B0001BC6CBB66006C69D7796F07873408A7CB7 +:1030C000EF514F6E8555C5FAB4C8DF119E13764493 +:1030D000FF6E35335F1D7F53ACB1FF0DD45F2FDB27 +:1030E0002F26309F218EB5DBC0C2B9F17D12BD877E +:1030F000E505304EAEC47BE9C09EC427E4DB30FE5C +:10310000AB70FFC182784946AF10EA07257E7E92F8 +:10311000D9F8BD296C8E6D70C8AFCDC4FEDC1FA67A +:10312000BC37B4AB709AFDE169CC5C0ECF6B5F121B +:10313000F6C01E766FC630BCFCBE0CA0F116F4FBC8 +:10314000DA2DE0F7015CED85B3F231CFA6B9FFF5DA +:103150008C04FAF7FF0038DE99D2008000000000EE +:103160001F8B080000000000000BDD7D0D7C14D5D6 +:10317000B5F89D9DFD4AB24966934DD8F011670997 +:103180001F01024C924D482081C907186CA80BA85A +:103190000D8AB841CA87F2B1A2D558FBCC868414F7 +:1031A000A9D5B4D84A2BDA85BFB6B4F569B4D1A293 +:1031B000022E8A145BA41111D1A25DD122029215B4 +:1031C000B4D8575E7DE79C3B93EC6C1203DABE5F8C +:1031D000FF2FFEDACB9D7BE7CEB9E79EEF7BEE5D5E +:1031E000C62CA722B98CFE3E1FCE58FD3875717EC5 +:1031F00006631D56769DCFC1D84293FA35E685C643 +:1032000003A6B44704C6CC69F6A0E0622CB53C6DB9 +:10321000B3E88177F06F1A63D3141363F81E633534 +:10322000ED798C7D20B0BA27E07D56668EC68E5F24 +:1032300011ACA80BC3FBF3D98482F5508E5160D03A +:10324000A29EF7E0CF67CF64EC5AFC970CA5B4E7D9 +:103250006F420A63CFE70B34BEC92E65FE27C0B3A9 +:103260002098C24428AF9BCF52C6433FFF18D77E59 +:1032700015CAA30F8E3FF60C960F8DF9EBED502E6D +:103280003229BBCCF01D768FA03C22E3A0D5D231F1 +:103290008047080E113F1FD7037F7C093365C77431 +:1032A000B845C6A4DC7A27E2253125244B0067E225 +:1032B000D8E3A3FC30BF1285115C554C36B31C2CEF +:1032C000CD472376803328B0CF01E40AC72726866E +:1032D000F3B65B8E76E38117665F32631359FC7336 +:1032E000734F5D44F8999FE325326A76720F7C52E2 +:1032F0006E85331FF0D66661E134985F74872DB414 +:1033000005D683ED65AA03EAAB768ED9BC1EBEFF57 +:10331000877C7F2AC23DA99AA9215C8FDDD1517398 +:10332000609C8529DAB86E556E82FEF796B9F2D7A1 +:10333000CBFCBB0CEA5576E7E6F530DEB5B8AE451A +:103340003DF3885FCF5EF38D9BA70B7082F413155E +:1033500084D01661E0F9C27C88EEF479A6E673FAAF +:10336000D04B7D1E936A78D9D3CFA4F54BA1F20F31 +:10337000F93E9AF7AA39D1779C00C3422BCCD731BA +:10338000F07C035F71BE17BAAEE72772BA5998781E +:10339000617035FF2FC19596AFC135E1C2E0BAFF2C +:1033A0002BC2A532BE3E03C105EB9986EBC9AAA389 +:1033B000A3701E0BD32E0CBEE734B9F455E04BBB03 +:1033C00030F87EAD207C610EDF554CB1B8E1F97864 +:1033D00016243902503CFC79216373DB964C47F884 +:1033E000365DCF98580A72C42A07B19E384750827A +:1033F00000BFC04658F07D185F3A66EF19FF42E5FE +:1034000054F7FA65B2B013E5DE4E5B08E53653A219 +:10341000A3668FEF796F97B66E7FC857F720DC0BE6 +:103420004769F2A0C6D86F8F863FBDDFFA0AE04F2A +:10343000EC576B5291AFEF2919B105E58CC9CEF16C +:103440009EACC85B44A8EFD7E4FAED0E894A90D051 +:10345000CC07E3C23B2D6178AFD5C40228FF5BC720 +:10346000D6C84D58FFBD05DF60AAFBF7878509D890 +:10347000DFA89774784E34EE954658FAC7C78DE2A8 +:1034800093C50147EFE7DF1BE77F57298AE9B7F5C7 +:103490006569848E5F86EB143131116B5113C7FF60 +:1034A00008D2136CD0C5E1DFB6D7BFD101F309094B +:1034B00056996533D630341CFD0DB4B50EA3B9B39F +:1034C000EF165943A837011F75A84793D7A448881A +:1034D0000771F0AD7FAE87A74DC316D3F3DBD638A7 +:1034E000241BE227EBD6C358BFFB8045E6EFC15F44 +:1034F0003163562C919E5940ADC0768145D703AAC1 +:10350000ADE15B581EEA6BD51E4D75D377C2FF0146 +:10351000ED098114793DE82A55191A3C4AF3160938 +:103520005E680F22BCF64A7B3BB65B87EAED1C2F38 +:10353000D6A165C1A33174EF93793B704B23BE1FB5 +:10354000DF1FE009A2FE719858FB7A1837D12DFED3 +:10355000E4E1749013E9BE4E37D08F6DA8CF897A1D +:1035600053CAF591FED2F5E8CA677F29FB81AE32D6 +:103570009A0132D467C989A4CF9AC796E4CA31EBBD +:10358000395AD30396CF44162CEC796E31FB98E46C +:10359000C0E756C3F370A39D056D3D75F5B8B99AA4 +:1035A00041BF0A26B5485426B160CCFCBAC7FB4CD3 +:1035B00060C1F4BEC637D3F3C704A0638013C4460A +:1035C000E01198A7EAF862BA0D3786E7BC0F74DB02 +:1035D000D2583217CB171AD5B9EF8F646C6C6EC501 +:1035E00042946B19BEBD73DE8FC1E3A0BA4E433D5A +:1035F000CB7F78CEFB31700E591A31B40F0B1C37CC +:10360000B45FD21035D43DC1CF0CFD73D6B1B9B182 +:10361000F5916DF6B9B1FDD7993CD5CDB80E0253F1 +:10362000B640397AA3646877287213DA5516979CE6 +:103630002F527F530BF27FB49E05B6800C1A137283 +:103640001BC65FDF249B77F3F1F2B700BEC66D9512 +:103650000DE355FC63AE8AEFB334E67C04D67D7C83 +:103660007BAEE17D8B5462E83F36B77E21D24F9529 +:10367000BDC2380EDB6598B7192478431A94E6BBAF +:103680003E1627601D54400196E64FBAD7C983E322 +:10369000A9345EBC1C087EB7CC796C1CE372601A3E +:1036A000D2A7A4903D93C018CE93E532D917639763 +:1036B000DDAAD9A9CBE3E873B9396C45FA59FE15EF +:1036C000E97342AE7A6D2EC0995165B493F4F2411C +:1036D000EDFB27AD7DB7376BED96CF1258A84FFAAB +:1036E00076D0F39395FCFD314C1D3427667E6D1A20 +:1036F000FFA5882C80FAE2966475505A1FDFE9E135 +:10370000A32416EA934F53E8F9C9E17D7F479FC789 +:10371000857F47EC673E567A0E72A54F7C3CA6E348 +:103720002BADEFF65F75CB9B2C833C782C5FE67856 +:10373000ECFECE506AB77CE6EC472EB9E839500E65 +:10374000F94F55F08FF54EB0579DB966340E74FBA6 +:10375000C49A04A419A36F2ED65EB950BBF362FDC0 +:10376000952583385C038DFF41BE9A4976D097B486 +:103770005F12D108C8A2710EA25C54D9F2A5DC5F19 +:103780004C51504FB238FF90E5C243B4A3523AD7E0 +:103790006E463B6A758A12043D769D299A81F0D661 +:1037A000B3C85A5056ECCF3B12AC88E7AE1DBF1BD6 +:1037B00086FAA6C70F4C123F4FBA70F84022F07538 +:1037C0004FE4F402F6681DDA331345F06741FFA6B3 +:1037D0009ACEBBC95F96E402310BFB3711FD4C78E2 +:1037E000F5CAD430AE8F3D2598042E4A2A08A2216E +:1037F0002087527189D3B0BC9BE453EA76F3895891 +:10380000FCA6203E607E0D47EA43BB63E4E1279DB2 +:103810006713711EFF959FEC3A06F0B3496C12C214 +:103820007786CD4F0D235E4A5C84C7C7B757A6A2E3 +:103830005E9DF04CF5202C5F685C279941FF9C6BE6 +:10384000F487768FEC3DDFCA7EE486AD80F389573E +:10385000546D05309FCAC4BEFB390A38BF4C17559A +:10386000474146CF78D87F765E1FF2A880DB973A33 +:103870005E61C1652913ED0B6D7D812ECD502FD773 +:10388000EA42DB1BE2ED683FDF9CA28868DFF86557 +:1038900086F8878987D0DE6F15020CE9DACEDAA8C0 +:1038A0005C2F281B45284553349DCBF510878FF995 +:1038B000899EA7DA034391DE8395819F45609CE052 +:1038C0001A336B86F2FEA43B7F1181EF34046D64E2 +:1038D000879D4BC80E3158B7D7C6F9C71410BC81A5 +:1038E0004964CFB2C0442CAD2FA80BC2E4E7A62890 +:1038F000A8DF60A451BE183B7AA286BFA7F2D48984 +:10390000F87E5A81AA607920219BEC68399F296C46 +:1039100008D5430CE8E0C0CC4B5319E0EB13A6A646 +:103920004A7DE04D2FFD76D1D7122397224E6E9F10 +:10393000C7F7FB9AB62E5DC33AAD38EFF515D1EC5B +:103940009F7A296E206D413CD71ED87307DAF3CADF +:103950002805ED4066EE6CC5F9A4087200E99A7579 +:1039600018ED9AA602DDBE97A94CB687357B94DB8D +:10397000F979E3D45AA493E356B614FDB4E3895A13 +:10398000990225C0F70D0D1F53B572B936DE7113BC +:103990006F3F9EC6FBEBF0EBFD566AE5FB8D765F55 +:1039A0004B8C1F20DF6F0B603C202387D319712EB7 +:1039B000C0BF72FB20F20317B5BD6B5D08ED8182BD +:1039C0008AA90817F643BA5C648E58D3A07FDD58E5 +:1039D000FF227CBE5266EA93F8BE1CB1CE85797494 +:1039E00009AC0EE1E8B24009CFBB1278A9C3132895 +:1039F000983D15D7B1AB3C62457AD3EB2B59748116 +:103A00002862DD47DF83FA4371F577CC505787FE94 +:103A1000F762C4737FF2CD64EF7CE90178BE2000C9 +:103A2000F40EEBE0DFF6F14B77C0F3A5408B682F87 +:103A30002D6D154241CF579767F176CEF9899ADF00 +:103A400066F62BE40F0DC497DBDF78F18E58BEDCF1 +:103A5000F9F210A487B29DAFA463D9075F1E7ECE92 +:103A600033305FBA72383DAFCC98B111F933D4EC32 +:103A70001284A9406A6A0DD53F31BB9D489FFB0A5D +:103A8000B83FDB0232AD13E5B23924A11DB5324196 +:103A9000BDB712F9F155913D0285E712BD3D6C6548 +:103AA000E46FA8A9A88FA3AF8A02FA1B63CAD44106 +:103AB00048BFB73C513108DF6FD7E9F35F64CFE906 +:103AC00071CF954E3373A5F6BCA7CF67A5C07CED2B +:103AD0007DF0B3DEFEDC3FC43EF97D5C2197ABFD9B +:103AE000D989BB757EFA6C8CC16E5A09FC8070AEA8 +:103AF000FC2CEF0BEDA67D1ABFAE447BA7CFF75D84 +:103B0000F4FC4193EF1F0544476A26FAF91F0ADCCB +:103B1000EF97996F39CABDA5A029D7831DBDD45E83 +:103B20009BD9C4E93F602B437230CA1BB3A607611F +:103B3000BCC3C85F1F5AFC1E81F4BB6CE57ADE680B +:103B4000C73089EBBFEB1D5790DEBF7E9D85DA75D0 +:103B5000BCC3CA5891AEBFD916FFDC68CFE8FC01E0 +:103B6000DF4D2ACCE83D8F1589B57B55ECE6EDCCD1 +:103B700046BA59C9DA480E80249E81FC708362558A +:103B8000903E5BA4A3331E80F76E84F989285FB74B +:103B900019E7B74CFBAE0EFF8D5B8D702D679D3422 +:103BA000EE8AF601E0CDE5FE094B041E43FF849545 +:103BB00049C4D709BCFD44814CF3F9A8A8F3E761D7 +:103BC000F88E985C6D473BE2F4B60F0F8928BFDD95 +:103BD000DC9E02F87F3C05E5CB3651E271B560EB27 +:103BE0001418B72B9FCF67A9DD11467B257E9D74E6 +:103BF0007C9DBCB56F3D745CA3DB3BBCAA84F8B470 +:103C00000C6FDF3318F9EF5B82427A88A9F928D765 +:103C10005ACC4C40F84B22D19B713E6E379344A84E +:103C2000BB92B4F893A2DAD15FC86AA862EF019D93 +:103C3000BD2D55DA65789EE934F9500FB4480B9DD7 +:103C4000D7C7D06DA660F2A11CBF16785346BD370A +:103C5000CFFC08F2BBE7D6BFDF48F862729AAD141A +:103C6000C7F7FF603AB63B4582A762DE27857680BC +:103C700067F07947814DE8196F5A55B43040710C9F +:103C8000BF5008F3197638724C80A931879A8D7429 +:103C9000F52B8DAF7FB5D754B3A50F3C5C56C8F15B +:103CA0003036C3EC0B41FBB8305337F7C1677ABFEE +:103CB0004C2DDED91F1F76544616209F627CBCAF68 +:103CC000EF4D2BE4FCBE0F6C4EDAA7498B2C463C23 +:103CD000765C06B21BE6777AC7A02D6B62E6F747E3 +:103CE0006D9D4ECFE4FAAED8EC5BF0920BD58324F9 +:103CF00004013F83E6874DF58E1E39F45FA3D5BFDF +:103D000014C4C89BFB931E32D13ABE3A724B2CDED0 +:103D100074785B043EAEEED7C5CBE578F8577E26C7 +:103D200018E4D43EA4E3A2587963A6F6E9629ED5CE +:103D30000ADFFD1096D006FED5FDAF3D9482707C63 +:103D4000F87391D9484FAA294226CA0BAEB73E7CD8 +:103D5000387DC6B3309FC5592243FDBAD02FB52256 +:103D60003E243F0BDC0BF263614BBCBFD336E12337 +:103D7000E48BA09921FF2F3AA2B452B8505C6EC5D3 +:103D8000EF7C0ADF15E1BB8BEE36F2E98707EEB177 +:103D9000A29E17163A0202C5E582F4DD6F6EB34AA1 +:103DA000686F2DBECFF89DA59A3CA3BA07E997F599 +:103DB000E9077CBB50B3FF8B5931F2F7B38DDBD8E9 +:103DC0007B23119EF9A9C8D79361C21427679DE68A +:103DD000D8FD23DDFE3F6FAA6C423E9C65867E794E +:103DE000888F9C410B63E86C4B115F2FBD7E02F402 +:103DF000DB0878EF54A344E58F0AD5BB90FE1F2E55 +:103E0000F47F9FCBC768F64730AF556B387EBA5EFC +:103E1000E57633ABE3F2D826DEB414F1641BC2A41A +:103E200066924F8100D6334DA007006FA278B398F9 +:103E300042EBD4C6E9FE2F5E37CAEFF515EA13DF71 +:103E40008671D73B4DAC19D6C9D52C8D45BE758929 +:103E50002CD00CEFDDF0ABBB689C501A9713398F58 +:103E60005698C09C66633A04DC3E043912CC4595F2 +:103E7000E09013158C4FA74622F45CB73B32924278 +:103E80006E138C9731CEAA347B70DC8A7CE46F99F8 +:103E900085888E4FA3BF0EE33EB02D2715F5F99907 +:103EA000EDA3A964E7012FC50C4D7720E2DE747BFA +:103EB000AA119E8FEEA98F6D9F2D0C413DE7B7B2E1 +:103EC000A41290E71D4F98B83FCAE158BE269C79CE +:103ED0000DCAC35F9A952DF0D4F5FCCC7C9CA7C786 +:103EE0002C0B88BF6B0489EB17CDFE9AC7F4BFB6C5 +:103EF0009750DF2C043B11E9E93D21447EAF896DE9 +:103F00007F0ADFAF73733D7B4D153C83FA35CD627D +:103F1000A81969EA468B13ED41541D7DD98B03D94D +:103F20008DF1FD4E58228BDFF2F6C40D4F0BD151AF +:103F3000DCBE0B84108E2E274BC3757EAB50B31F97 +:103F4000F47D8711A0CFD15E37C9ABB19D1D04FBB5 +:103F500000E94790A8BF8E1F26B53D8D7A7495491C +:103F6000223D04F6613019E9E0F9D15B703EA72DDE +:103F7000916C920720DF04683FFB9BB3F3CCC03702 +:103F80002B07837C867A7607BBDA0C785C393CB2E7 +:103F9000D804F5E9DEACABA97D6CE418D62FEFC8E8 +:103FA000E1ED0591C5280F6EE8C8E7EDC0486C301B +:103FB00063B775945C1D84F14F687ED6690B8F578B +:103FC0009F7E66CC9660CCFA5FEFE572F14402EF1B +:103FD00077C2C3AE9B83EB9C1B19151BE7BA54EB4E +:103FE000A7D3FBB2E712C24898FA7B303EC58BE2FA +:103FF000C717BCDCBE5B56A5E94373F43788AFDD59 +:104000006E398DF4FE71EC03F883F7707FE683C29E +:10401000342ECF013F6979BDBF7703DA990EFA5E7E +:104020005DAC9E49F172BDC1F2F8F82B074B4E5CB6 +:104030008FCC346EBFC18238BF4B718ECDD4CF953B +:10404000C3D7C7254AF9C8A7D3AAB87E99969EBEFA +:1040500019F9AA3F78F5EF6569DF5BD6ACE10BC6CD +:10406000C27DFE95CFF2FD6C84DF09EFDFA0E1EDAC +:104070007A2FA723EC4FE30E05FC8EEFA1177DDC12 +:1040800081E6394E1BE75F3D4FE6E5EF019DE723F3 +:10409000FDDED0BDFE3C4E74A2497BAF4487432673 +:1040A000FA5FF6DCED1B293E2EC96922D9673FE491 +:1040B000EB628F16621C7EF7F9BC02F4735768F648 +:1040C00090A0FED18AF6E88A759D56B48B56B40B43 +:1040D0007CFFBF9BCFD45B62F9CA95C3E7E9125559 +:1040E0005733F11FC049FCA7F278401CBD74E33B75 +:1040F0009E6F7B8D27A719C79369BCFED661FE3FD3 +:104100007B1D9AFBC6A70E27F4A7FDD769E9395B8B +:10411000A8BFCE7F9E6EFE0BA3BC8CE7BFCBBD7A43 +:10412000DC2A8E6F3D5FF27BDABEEA8ADB61FD300E +:104130004E2C1BE9784587C7B430AFA7FF3D5B8F96 +:10414000FA500F74C75F3A760587C03F576DAF6767 +:10415000A84F2C6B402EA21ED92152DE4517B4B5B4 +:10416000A23C78D443F182B59A7C59EB8CA6081412 +:1041700007124D680F4733ACAD18948C26C0737886 +:104180003F08CF1F899977038BA658701DB68B0205 +:104190003E6FB1BF97F93ED09B39E164E6FB317EBB +:1041A000704BB2162F7147539C31EBEB7D5E4CC1C7 +:1041B000FDBC4808ECE33EEC59C69A09AF11C6DBDA +:1041C000A78BE71F433FFF4C708409E37067ECD176 +:1041D000C7302E77C69C9B16947AF8E6FDE0A59929 +:1041E0000D50FB0BF31D9A827A2DA85AB3403F5E07 +:1041F000AF69C7A52F37A7A01D21267BF73C07EF86 +:104200002F7683BDA7F4B6D36E60BED4B0A7B73DFA +:1042100006EB60C538F412BF83E2614B3719DB6FE0 +:10422000D87EF22D8CDBDD10EB8FC1387E2D9E1DEC +:104230006FB73DE1D5ECB67C968FFA14964741FBFB +:10424000F0CC415159CFC88EBD97F4E55EB05B0507 +:10425000B437445ABF338F0A21B433583083EC410A +:10426000DD8E5BC578FC29DEDEE8658F3CF576F1F6 +:104270001DD065F9D37F9AF00094A79E7E73D47306 +:1042800058FFED1BD97F62BDFB57EDFCDB02D2C3AB +:104290003B6D0447D7CEDF65A39DD1F5AC4D41A062 +:1042A000BBD6D8287E19DC991C1A89EDC3F8BA3719 +:1042B000EF383721427AA685D6E788D74AE599EDC7 +:1042C0007F7F07E9EACC769B8CF358B5338964FC91 +:1042D000AA67134268AF74ED3857EC8FA18BAF3AE1 +:1042E0009F955ADE4F17D0E3935C1E67E3F757EEB6 +:1042F0002C4F2779D9B1CB8A7E62D5F3FF3D21823D +:10430000FD9EDC6565E349CF3CC4803E3EF0D6FFB0 +:10431000D402783E9DCCF57F73D196AB8379BDF105 +:1043200002E39EC6F8E9AAE793D87A8E97A5E8D764 +:10433000F5878F7FFC9BE2A3CBD2396308D2DD13D4 +:104340004221E6A3F4E045A0755EBE3D39641770D6 +:10435000FECFA450BFE1E6005002E0E1DC04B487E8 +:10436000079AF7B0A2FF23F336B18B9A77D9BFE94A +:10437000BC75FA7FC12BF37DC1383EE8CDFFBFBDD0 +:1043800095EA8F252B04EF05F2FFFC7FD3F95FC47C +:10439000BA4F40BFED62D7FD8E7FD3790FBCEE2FB1 +:1043A0006BEB9E2C61DCA46BC77F67D37C2F70DE28 +:1043B0003FFDFF74DE5E165D807ADEA5EDC7B8ECCA +:1043C00043691F89613C89EC4E8999E0B958C9DA83 +:1043D000C9AEF3994F75DB0F14FF94C2A8079A6F0B +:1043E0004A21FF54CF0F898FC36ED8E1B3207EFDE1 +:1043F0008026610AD86BB3AEA2FA2C075305187752 +:1044000016F359281E0EE87C84EC6F5FE722A8BFE4 +:10441000E2DDE046FD6211E4166A9F29841EA17860 +:1044200089B22B09EA57AEC94A43B8D36B99C585FF +:10443000F5391E4584FEFB59F4E05CE4D33A51792A +:1044400084837BC5DE62C6E6F27FB3AB926F999E32 +:1044500004FD7E5FC4FDC42B8B9A2D682F7DBDD9D2 +:1044600017C078DEE5D9D111CE98B8DCFE220FE175 +:10447000EF4AB3CF72133CBF12214DEBBD5E57E242 +:10448000E0F0FC4AC96709509C43DBA752C77EA9EC +:104490007DAA89566EDFDF586B0B61BCF246457909 +:1044A000FB46C45BAD4D821EACD25B3F0CE970BADB +:1044B00058F6E0B760BE071E05B905CF4FFEE4B55C +:1044C000A1E80729DEDB6620FD2E162491FCA95900 +:1044D000027B0AA632B7B67E3F8E3BEB5141C03C11 +:1044E0003B8B66B77DAAE1437CF4A63D595EC4AB25 +:1044F00053B9149A9ACA6DB4FF76F2274208F9A309 +:10450000AAD6BF07E3531B4A6C928DD64B4D41FB95 +:10451000F3060DBF7FB4282F8FC0FEFF6951D6C8A8 +:10452000F82444FD97821D8AFED0C9DA1F5A71BF54 +:104530004B2896E97BE9DEFAE2B08CF36AFA319116 +:104540005F503D906718CF7F4F69CC784DE5BFA095 +:10455000F10E6581BD0874777263F30C30CBD962BC +:10456000A60868172ED954DFFA2DE8BF0CE0C3B8AF +:10457000C62CA6FCC08B74232E27FE8BDF6FD0E3E6 +:1045800087E95EE3F3A50F1BEB8BA14F52017EC7BA +:1045900068F7C6DBBBA9C58E9E3C85D13DE33324BD +:1045A000D2D2DEEBAFDBB5DDF916DA7A6C2B116B0C +:1045B00050EE4C4C53FDB1FB52538BB91FAD97DB02 +:1045C000B6FFF5AD1B91DEBD3605875199B31AE3F1 +:1045D0007FF3965678919C2AEDF9BBB17E4D00EAA7 +:1045E00080BFDC620BBD77ADF4EE7427D4AF730BE4 +:1045F0007BB0AC973D33D2A09CA2ADCBF5B9157B77 +:10460000802258AD32DBEAE7FE4925CAB333307762 +:104610008C376F8B1C181A2BCFF4B202849D39C6CD +:104620005FA8B22730730C7EA64B4E43FD5277969F +:10463000A1FF4CD96368FF5AEE18437BAD926F68B7 +:10464000BFBD98EFDF3E5EF441EDCD30CFC74B45A7 +:104650000951B81FF1E2EAC1CBFED2739548C7AF4A +:104660008CF159306EADC35B5D6CE6FEAD99FB51CC +:10467000CBBAE9AE733E8EB761B34874F74AD1FD49 +:104680007B16211D67717F6ABAE820F9BEC1C7F9A0 +:104690006209F3EF51A1DCC0027B50FE5C51618FD7 +:1046A000A2DF164F4773D0EF12908E015E7C1FE0A1 +:1046B00045BE5DBCC9D8EFF1A2D12FE1F71E2FB5E1 +:1046C0004918CFBB222E4E3E07F36852B0343E8FBE +:1046D000A7C7FA6263DECCE302F7BF82AF73F9D8F3 +:1046E0009F5CD2E9329EFE6ED7E84E2FC17F4B45CC +:1046F0003934D16AECA7976F829E33C3387F6AB48E +:1047000053F976A344E59F1BDD54BEDB2853F95EC5 +:10471000632E95B717F3B8487A03AC73CC3E487A4A +:10472000ADCFFA457CD4234F839AFC8C1E41FCA666 +:10473000EFE7FB5B3A5FE971EC74ACC7E46BCD6A01 +:1047400078D15F0D7EFD66EDFB6CD1E697501F02C0 +:1047500008C164789F2DDFF512C69FBAEBB7BC6B1A +:104760006CFF8EB0C7506FF118EB7757EC897DBFA7 +:104770003FF8D36B658B1FF4E89CFB04C3B90FBDF6 +:10478000D4E17BA5499947F117972AE37E0773790E +:10479000697E9BB575E90F2FF330CF10C69D55A9E3 +:1047A000D4C7EE5BFE5A1BF7D7DAFB3A9E99A2CA32 +:1047B000B1F93DF1E3BDB964A205F3ADE630BEAF9A +:1047C00072C57696264FECE9F7AC36EE9BA9FEE96A +:1047D0009447C678BCF6D0ACCC2DEBFBD847D0CBF9 +:1047E0000DF3EA870D87F12A7DF902D257FAA2CBA1 +:1047F0002DB85F7668F6BB262C270E07F861BCAB98 +:104800003F9787CD8EC1D35E0DFE03DF37C6DBF445 +:10481000F274318F67BD65E279376FA5F887CD33C4 +:10482000BC6FA7F70F25F3F7279A99592C88A11B7E +:104830009C00E89905B54C45F97CF5E7EAB03931BB +:10484000EF1FD2E67B702DB717113FF531EDD22463 +:10485000FE7D1D5FF1F04993785C58D7BB8766B148 +:1048600010DFCF539A50CFCF01BD86F616C81FE296 +:10487000E3430745C54658E57A7809FE13E8EB108F +:10488000E843B4EFE6D43B029827087A7418E26B49 +:1048900049DD925A8CDF304DDED8E13FB4E7F2C3F8 +:1048A000E6383965942BE903C8994FE3F4DEACE1AF +:1048B0009CBE581ED0E7F81EFADC3B007D1EC07D72 +:1048C0003D4BCFFCCE68F3EB0F5FBA9C92C0BE307D +:1048D00003FF8A9338FECF9BD4CF8B914FB47CA635 +:1048E000891696106BD78993381C132BF83EFA441F +:1048F0000B971707F68E2C0048D8819AB369188752 +:10490000D4D7B39B3F1B9AFD2362E27F1B66DAEA92 +:10491000900E64A626E33C0FF80A132A1C3DEBBC5C +:10492000C177368DC5C82D98C617F2D3FE8889F495 +:10493000FEFEA99F92BE3A9E2B9984FC9EBC90A13C +:10494000939C3C7FACE43D8790877AF8A803F96F8D +:104950001E0B59509E5DC3C216A4CF6B5984EAD773 +:10496000E1118A98FC91EB994AF1B354C947E57E6D +:10497000FCF460FCBF07AF09C7D0E9046D3F7522A6 +:10498000A6BCC7D8BBF5DABC328AD5719350CEA687 +:10499000751E417D973ED5C250CEAA4077B8EFF341 +:1049A0004AD1A484857DACD7A1A285DE49B1F8ACFB +:1049B000F55BB1DFE3DA3E3925AEC378E6CC11060C +:1049C000F9304D5BD7C78BD4C993687FCCC5E53927 +:1049D000F3B9BF089F13D3B89CC03C771C373D5731 +:1049E00036AD8FD1FFF32619D777A2D56F45BA5DC3 +:1049F000AC0468BFBD72537E42A40F3972A8C83F91 +:104A00002B7E1EDC4EE2FAB03FB9A6EBB58BD58B00 +:104A1000BAFEBBB358BD1ABF6BD6CE4B9AD3EADCF5 +:104A2000883F265D41F451AFC98FFEF031A1E4BD4E +:104A3000BB0BD1D0AE35292361BD266C93DF467FF9 +:104A40006A43709E84FB7B7AFFFDB5475F1801FDCA +:104A5000F66F639200FD36D44C4A40B9BBC111CC0D +:104A600046FC1C1794846FA37DF58828713F2B3A70 +:104A70001FE975496DE6705CB7CBCB8B3A55A87FC3 +:104A800050EB29403BF4671A9E3F647C7D833EEEE9 +:104A9000CF1D9FF9DD6C1CE795A24105F81D269EF0 +:104AA000BFEF1668FF74939886EF1DF22EB9F26679 +:104AB000283F7858A4F73EA8F1505C78BA78C441F2 +:104AC0007EB866B77D43937BAF30F525F417E66873 +:104AD000F65753F96D2FA13FF901FA0B2007AF9A52 +:104AE0001F9F57A408E8B7CEF5199FA76FFAE008F3 +:104AF00032416F39C8EDAE81E461DB24A3DD152FAF +:104B0000CF3E74F0B8FF9CEDECA7FE54B0936B3C25 +:104B10009663E8873408441FBA5C9B53CBCFF5CE2D +:104B2000A9A92FB4C3FC52439304F4EFAA6AE5E9A0 +:104B30004930DEAC1AA118C7D3D76D56CD4DE4DF8E +:104B4000CFDA7493554E467EF16DE6F4E2F34D46AE +:104B50003B7553FECBF8DEF86002ADF7E5B3CE98B7 +:104B600010FF1B3AAC9200F8D9101A9D8CEB7CE038 +:104B7000E1B3AED8FC941EBE68B3629E6EE5C31F5F +:104B80000F46BED0E5C7E4DFFEF0018C17072B59B6 +:104B90006E80F8605F36F90B43C15F00F9F5F5925E +:104BA0005DD968CF5E0F7E3EDACFA7861D33EF87D3 +:104BB000EF86ABEC0156C2EB13BC945A1B656EA892 +:104BC000677DB609F73F9A9B4120C018DBACE177BF +:104BD000EABD98AF64625BE0FDF22833F805D33E8E +:104BE000B31BFC820A66F43396478E76E078D21ABD +:104BF0009B943A14FD12A3DF315DF2C4F92546BF40 +:104C0000E3D4CBE75BF0FD9166BB84F0CD94F30D6C +:104C1000ED5FCB2D35BC3F9B45CDE477CB3CBF66EC +:104C200096526184874916C48F4595A24168BFBCDE +:104C300064A661BCC27D61CAB34987F731CF63B650 +:104C4000DD677CBFE1AF4427531ACE93DECB0FB7AD +:104C50001BDA0BF76E338CA7744A556826161C5660 +:104C60005EC4F25CC2D7DD98DF270B2CC0A6026BB6 +:104C7000457C559827527C3CF02296C1CA00E585B8 +:104C800007015F783EEAFEA43B296FBC01E68F7CFA +:104C9000749BC828EFE29CC9BF14F58864921FACCE +:104CA00017305F50CDC4F24193FF63A4BB92685BA1 +:104CB00015E6FE4F391F6AC6B2A3B36CDD648C37AC +:104CC000E23AC3B8CB1D26B273A78BDB27A05D7871 +:104CD000E6D1A4C2D83C2A3DBF8EB955773DF45FDA +:104CE000EB1A518071215F55B28AFBE52B9E1E4D58 +:104CF000E730F74CAE104A8A7AF2FC98CB789E6483 +:104D0000CF64F504E5A15788645705A75B48FE24E6 +:104D10009A4212CFDB601407B55E6AA13CEAD61254 +:104D20002E470FBC0C2802C00F38B93D58DC39DCC7 +:104D300012CB1773343B30AB44DB27D5F4D7EC8C64 +:104D4000838FE23E7E6B49323D2FAE955FB2203DB0 +:104D5000486609FDD1F4C33E693C8CD7E1F2EE42CE +:104D60003FA1E3706739CABFD61299FA0FAAA9B852 +:104D7000B902E574AE9961FF0EA93A09FBA7CF57B6 +:104D80004C8938CE5E4B6824C0B9BA9CC7A557572A +:104D9000D8FF13E562FA617E5EBC030F4E225FCF3F +:104DA000B253FC889915CFB5E3319F1CD6FC0BE2BA +:104DB0008EEFB76564A07C995D21652858FE48D4C4 +:104DC000EC03CCC481F131F70F734482438F544319 +:104DD000FB56BD0EACCC00DF9295E9FD5902D467BD +:104DE0000BDDFDE757A33D31BCBB3D887CBF41D007 +:104DF000EAC1ECF9385E7ADC78DDE307B38F1CC7D3 +:104E000075354B19B1E7D0F4B215C642FDB2C814DE +:104E100028467AFCC0141845A52053D93ECA5F5DC8 +:104E200082EBE388EEFA1CF075E25591CE515C728C +:104E3000FE72CA8306BDFDF38D487FD51692CF1D45 +:104E4000D6C05FDF74E13E7122E527597E7663F4B8 +:104E500027B0341DE6C03BB7E37AD58E529AE0F90D +:104E60002289F3A1AEF79788DDF353C1B4664B7A7C +:104E7000E6A3223F7E60EA69C773B952CC7CED7627 +:104E8000BC8742AF4F9DFF3EDA958BB6E662BCEE23 +:104E90002C73501EEED9DCCBAEC2F53EDB66A13CD6 +:104EA000AC0EC6D739E84EA4F3CFFB3B4D2AF251E6 +:104EB000D095B87924D5B748C3016FEDB0EE2A4C30 +:104EC0002C27A87E0FF3C4CF769A4CB8FF7AB66C25 +:104ED00050158DF71D867BB46C51C4CA64984F7110 +:104EE000EE2271780C9D1FC6F7816E0E4D566F2015 +:104EF0003C76C737BF7D71F14D73D44A7C96C302AF +:104F00009827B2AAA4290FF5ECAA6AE15D1B960DB9 +:104F10009F903CB3DA42A13548FFCF25F038AE432D +:104F2000CD8E3DAFFDF7526EBF4BB9EADF4B33502C +:104F30001E9EA575D0F3F84F69F92578CF029E9390 +:104F400058FE0FF13AF41341EEAC130AB07CC1BA2B +:104F50003A667EACFDE36EF939D134B01D97E8AF07 +:104F60002538670BD2950CEC8CF74AEF9D8FF954DE +:104F7000B313A42B315EF378E91DBC3E4CBA12F397 +:104F8000AD7EBFED30AF67493F32A1FE7BE6E3F96E +:104F9000986F35DB23BD8EF5F7B67DCCDBF3A5D757 +:104FA000713FF68D674ECEAF1E4C76039D173D5375 +:104FB00093407E607FF0CC6D78CE102FE9D52E0A1D +:104FC0005C8ED671F9F4D1CC2C92737A5ECB0A93B5 +:104FD00044792DBF2C11E2F25A9884792D1FFDA53A +:104FE00073B189F2BD95E998DFB2DCEFA0B8FFDCC0 +:104FF000869DF4DD03267918CAD14899BF1DE9635F +:105000008529F20EF2DD6BB5AF65923C96A2237056 +:105010005DA68BF38324E7B5BC558BF3C71654FA12 +:105020005781DD86F1B3958A4C7ECB5C249C9CDE57 +:1050300072FC92F35D7B36C0F76F794690907EDB11 +:105040001B41EF012B3C097E2396EAB65D87316F49 +:10505000645E5C9EF915757171B8DA2FCE2F57F525 +:10506000BCEFB873CE6373D555938B707C3FC1D9B9 +:10507000EB3B8E11B49F10FFBDB92C4CFED740DF27 +:105080003D9DDCB900788359B4F55C91E619A9E13E +:10509000F54FA8DF0E08F278AC5B5C9D99DCDF78F9 +:1050A00054267CE6DA69DF3271ECE109FE3EE8362F +:1050B0001E4F97A18C413D638E58151867A5A637E2 +:1050C000A68BCBC5F138DE360F8BB52B3FD5E8224A +:1050D000751B8F4BB972806E5C481FE1EF50DE5339 +:1050E0001EA79715A6F050A4A34F51EF15F5D02594 +:1050F000ACBF961F06EDF9981F047404FDA75DBFB1 +:105100004F698EA1A3274A385C1D895CAE459F4A32 +:10511000A0F3F1F17026950A5AFCD1086F6229D7E5 +:10512000DB170A676229D7CF5F164E5DEEE878D2AB +:10513000E50ED3E4F2BC3A0FE525EAF539B51EF2E7 +:105140006B75387BD3CFC3725FF43310DDDC5A222A +:1051500069F607977F3A5CBA1CEBE8B9774883CBCE +:10516000B9D90817BF4724B5E1191E474936D3F30B +:105170002B72DD74FF516AE719B24753657613EA63 +:1051800089D2D2E19C1EDAFFD69AEEC5E71601E578 +:10519000566AC3767AFFABF2DFAD9A1D14AF17CA19 +:1051A0004180919C469D23A0DDEF37D8B91578C288 +:1051B0002466DC2AFB4D71FB0FB71BFA5FEA6E32E7 +:1051C000B4CF94EF8AB3EB7F60A8CF527E62E87FC2 +:1051D00079C96643FB6CFB5643BD2CD24976F5FE7C +:1051E000C61AF2E3A71E8F927D1DD6FCFD17347FF1 +:1051F0007F37FAFBC0977BD0DF87726FA342CF7FE8 +:10520000DF5842E5BE4695CACE461F95F1FCECED4F +:105210008C78315FA9C4954AF9FD1993FC6B512F25 +:10522000961E8C8E40F93AE548A819EDFEB5BB4AAA +:105230004D568C83EC13430902EAFF49A97D9D4337 +:10524000D0CBD4CF44A6C6C4BB526BA34C75D07987 +:105250005E8A0FCD76BC5F4DF98A0D92900AFACC2A +:1052600066569817EAD97EE9A620D4BF57CAED62E0 +:105270009FDA44FECE55D015F75FEAEC60DF01BC43 +:10528000754B855033C53783D47E8D5D3FCFC3CFFB +:10529000075EA991681DF3BD4439B201A6DC0DE398 +:1052A0003EB937AD3A1FE9D82784D0FEAFFB6E7008 +:1052B000453D8DA39F0F7CCB7431F75E7D0F6373EB +:1052C00040CF6B0585E21641A799EC8E783BA0BED6 +:1052D000D418BFBC1CED8074DC3FE6764DD4C3020D +:1052E0005B9C3DFC375B02FCA0BDDE209B103FCBEE +:1052F00059939882FE4FA7AC34038997BE1F6D4D1A +:1053000087F622547B528F5F37F9787406864C8B70 +:10531000557B14FD659DFEC14F7A11DF3F738429D3 +:1053200036783F71EA5D22FA55A59F70FF6ADAF977 +:105330007611E5FF40FEA00EFFF6C63AA29F9D8DB6 +:105340007E2AC38D4B35BA0C507D776303D5F73475 +:1053500006A9DCDBB84EA3CB366ADFD7B891EAFBEF +:105360001B431A7D6EA5E7B76AF6F893A59A5CB25F +:105370005750DC93997969B207E3E981C5D2C372CA +:105380003797C78969BC5F22E883E005D0050870BC +:10539000A28B6B802E50BECD6B6F1E8F763A5B1446 +:1053A0002CE2E798BF1C7D5CACBE073B49413E0048 +:1053B0003B26807AE642E5B70D89D985E7461C840D +:1053C000878BFDAED5A650FC77E0EFF1F53125CD0A +:1053D000A7BCFB15267E9EE7A3229F847CA4FBD15D +:1053E000BDF012678F9D28E0E37C09FC58703D06F4 +:1053F00082B37DB2FA19CAB16EFDC64232C26B1DCC +:105400006767EB290E787ED7E7681F775A4268FFF7 +:10541000AC7CF6CD3EED1F9D1FE3E5E62AE92CF1BD +:10542000D529C1D4E739BE5526E6C7FC9A021BB37D +:105430000B698CDD34B9327132D91D659D2AF2A118 +:10544000645662EDA45EEF377C4CE3F7DB6EE279E5 +:105450003CAB761449B1E7912E9BACED437EC9FB82 +:1054600025CAA37506FEFFB7D393EA2F0DED60E1C1 +:105470007A91EEAF7671F97FB97F26ADD73CD64EE3 +:10548000F43C9F7552B98045A9F4337E3E682153A0 +:10549000A85CC4F87EC6E3457E7532D089D9EAA3FC +:1054A000B8CEE54F9F74A0FE139D074F6F60BDE51A +:1054B000DD85CA375DAEE972AED5CACFEFB738AD7C +:1054C000C43F960CE33D9173261BF5443CDF74E525 +:1054D00073FFA6EBA92926BC47AAEB153124707BE4 +:1054E0006C37E55515F0F3A785F3F9FD4BF0171868 +:1054F00049F936467FE46CD93748FF9EC5842D9420 +:105500008F6625F7DA183FB959DBE7DC0AE51300A7 +:105510006FCAFC8839F69EA9E593B57BE3E655335F +:10552000D473E6F92AC3FDAA1489C7B5A6DB993757 +:1055300081F63FCFE6E1B85FD7EC81F51616467EDF +:105540001854922FA0FD007ED10AC47BF7F97AF09F +:10555000653FBFA477BD40E4F986D199DCAE8FA743 +:10556000E3FFD0E059AEF105F3CB8588DF2E412E65 +:10557000D0EC02928FAB2E1B4376F48F261BEFD517 +:1055800000BE5CFB00F72F03981F742AA1EFF3B94C +:10559000774D7672BBDFFE89C17E5FD9F03703BFDE +:1055A000AECCE3782868960B31FFEB666D1F6E6F0B +:1055B000A1EF6E9403CBFEF0A815CF234C1737DD77 +:1055C0008AE7C1CEEC75905E66FB3268CEFABD0A02 +:1055D000FA7873ED1F733F433BD7A13F7F6DD61B16 +:1055E00024B7D0BF7ECE8B7E1EA3FC7B1DBE03A640 +:1055F000CE630F787AE418F889EFDCE141B9E5F978 +:105600001EDE83167DCA4271AAE5087F3AFA8BBE78 +:10561000CD081F5D0C05F83A70D968F243747BA67B +:10562000EBC3BEF7C775F8F4EFE8709D1204031ED4 +:105630001FD3E83B713297CB1FA528D7E2773E7A7C +:105640007A088AFEEEE7AF393B27E0B9880BD5F739 +:10565000176B0756B85E4CC1F3DB572C12E83C4180 +:10566000DD92E07889E2B95F4ECF5FE8FD2C604CB7 +:1056700087ACD05F701C7AD1EFEAB90FC284CC033B +:10568000F095B9AD647FD8703C11D321436E2CF5F1 +:105690007B20F4FB1FF4732FBF1322CD74DE415522 +:1056A000DCE8BFAD7555925F7F9C390218E7BED22A +:1056B00059530E9F67F316CFF4233F5CD19C42FBF6 +:1056C0003766AB62DE85F6F7657C3FEDC9BD6BC81A +:1056D0000E7D5DE5FB063AFEF4FC47B3333883EC00 +:1056E000F5AB614986E03E8342F99857013EB1FF30 +:1056F0001BE640469E07F7A7EE9B80E7BC9789A173 +:1057000094F1308F13077E55FC0ABC769285AD0E5E +:10571000CC2FDD1DA1FB06565DE4BEF337311354DB +:10572000C43C85B60777C1B86F66FEF45BBB580F03 +:105730001EEAD49FFD6511D46E74B614E3F8FA7EA8 +:10574000D2B984AF67EE8AD9AF18687FE241935F20 +:105750009882FB8D96C0247E4F01BFBF0638251B63 +:10576000F791A6C050786F5F5706A7C3E0C78CF0CB +:10577000D7655148AF073F95C9FEF75699683DD99F +:10578000E732C557A7C4DDBFE01D67A2F7D9DF65C3 +:105790007ABF3C6ACCA3F04EFCA148EF8B327B046D +:1057A000E3099F99BFD0DE094FE17CE54D370562E3 +:1057B000FDF56677268FD769759B2C91FF5E328544 +:1057C000CB3F2F8B9E965D782F832380F382BF2B58 +:1057D000ECC5344FA2D729DB4FD23D379B44A00BF9 +:1057E000B4FD587B158E5306EB8E7999821AE0F73B +:1057F000D2353086FB55F1F736E8F9C0092A6B47F8 +:10580000BE5C2F748A88D7A9603662A93289F459A0 +:105810002553A8AC663E2A67B0009535AC8DCACB3F +:10582000583B95B5AC93F7772705F1DCD96466A7AB +:10583000787C995D510AE87BDF9168FF74E612136A +:10584000C697BDDFE0794B03E1E36A0D7F6EC48745 +:10585000F7CBE303E78BFBAE33B4FBCBFE59F8B8D1 +:10586000940589EF67B210955F63611EE764F26E7D +:10587000CC739E759C91DC6063C3240F4A227E33F7 +:10588000D70B71F8A8D2E98AB1479CA4F736F2F396 +:1058900063839C362FF2430A9DE7EE78396333DA4F +:1058A000C5776B7452CC72EF2F83F6A2BD16B0A4ED +:1058B000F11CBD4AF9366762CE6581C462931785D3 +:1058C0009AED50CF5AC7F7FF6D6E139363E83641D8 +:1058D0004E64728C3D97949B66A84F62A1E6328C11 +:1058E0004780FF1A96F0BED4C186F7534B861BFA49 +:1058F0003FCBDA4592875AFEAF2E679DEA58C37BAD +:105900006089892B70BDB57CE2F49A0263FB279C09 +:10591000BF4AE03F5CA7C9A78CFC561209D03D5A8C +:10592000097E90AB0057C241B3E17C9BCD71EC087E +:105930009EE3B70DB0BF3FA12CD94576CD5036942C +:10594000EB8D36CAB36E15B8DED2E5FE7AA18D4A6C +:105950006F52E55919BEB775CABE6B31EEEF2DAC6B +:10596000BC3907EABF99F206AF4FA9FCCD70A83F3A +:1059700035E5AD6B711FC03BB1B2D002F36B12FEC7 +:10598000746D35B4E7C88A1BEF6338A3DDC7D0FC5C +:10599000EA9D74BF00D8609200FDCF386E55245C3C +:1059A000BFA10E05E9C66E033EF2D27664A0A9142B +:1059B0004D9600F507C690302E9356C3EF23C86668 +:1059C000FC1E81671B199D47B8A54C263A2918145F +:1059D0007EC102E3641C0FCEC3FD99AB0B7DBF46B5 +:1059E000792ACA300E8CFB80C4EF31B8A54CF3CBBA +:1059F0005C3F78D1EF45FB8ED1BA3C5DE86B9F925E +:105A000081E713EC410C50E8E36ED5ECD152739B67 +:105A100078B3039F33E2D7FECA3F4F51B74DE9E356 +:105A20003953253AAFD0ACF3E75289CEFBB31738E0 +:105A30003F769F4340BB13F8AB74912A0299B3E2BF +:105A4000BAC08B58AE12A38B715DF64EF1EF4138A0 +:105A500057F84E67E7A35DFE172BBFAC8E0DE5FC34 +:105A6000C6B85C5EB5F36FA7F13E901D269017DCBB +:105A70001EF7B11879B26A678219E96AD509164A20 +:105A8000F2A07CF96533DAF1A5205F18BFFFE0458D +:105A9000B4EBB6DFCCEFB75AF5FC8E17711FA5EC4F +:105AA0006B09940F51FEDA911CF453A61D89509C8A +:105AB000AE6BC71B4338DFEBFB6CE7842F63C74C2F +:105AC00017BF730FCA85D54D6686E74A570B015E2F +:105AD000B7D8257EAEB4B3753EDAD3C0A7748E4373 +:105AE000CB235CAACD0BC6D9530AFD3F427EC3F639 +:105AF00010F7D765F88FE4A0789ECE8B7EAAF1D3FD +:105B0000A4C3F1FA2DBA07F371966BF77FC4DFEBEC +:105B1000B36A807CFABF4DD1F26886B1615FF2DE74 +:105B20000F5696D173EFC774D1417271F583395B0B +:105B3000703F6DF5833713DFAC1E9657807CA3DF73 +:105B400003C2C2D258ECF7B8C0F72959E4346398BD +:105B50005FA9C1B66C9DC0648C93E788AC04FCA0BF +:105B6000CD3F3FB790F2A1D026043BB079ED7F51F5 +:105B70001D19D03699CE7390FDFCB8333A9CC6758A +:105B8000CA2C0874DB9C101D8E7A24B8C3AED0F9E1 +:105B9000964DE944B339416523DA37AB9B5C02F299 +:105BA000FBF8322EBF3D874BB89C073B07D7637588 +:105BB000F228BABFAB3FBAF0229C31FECDAE57AF50 +:105BC0004A42FBFF29B32F09F3DBCE1C1CFE85F1F3 +:105BD000DFA2304CE80BE217DE837777623E9477E2 +:105BE000A399F0D14377C67CA71E7DC4E334C56C6E +:105BF00084410F9DC157497EB110FA0F3DE7224005 +:105C00008FA0BD86F4A9E0FDC1463D34A8CEA8878B +:105C1000B2FC463D3464A951EF0C0B18F5CE250DAE +:105C200046FDE2091AF549CEBAC986FE23DB2A0DE4 +:105C3000F5D11B2F33F41F139A63A88FDB7AB5A11C +:105C4000FFF8F68586F689DB6E30B4E3B5598887B0 +:105C500067238CFD14E9214E1FE687571BFB8B47FA +:105C6000481F7EAA9DF32EDCFBED3EF56110FEEB96 +:105C70004B1F3627DC49FA3052EF080893493F861C +:105C8000518E2768E7677AE9C701F4E2AA38BDF8C0 +:105C900029787628D7E2F5613C9FF6475FA6A4F302 +:105CA0000B56A27C12F9FD2320AF9F457DB0CA148C +:105CB000C92E84676B92DEB1FA395FAFCDF36AFB10 +:105CC000CA80079FC3FD12DAF152A53D6A2B41FA43 +:105CD000CB263FC797C302988F762E618205F94E77 +:105CE0006E12A274A94D9CBF27381A7E817CB6A97A +:105CF00019F03014E355C6732D736B8CE75A068A7E +:105D0000B71775860DF5FC834C44395FF4BEDC9CF7 +:105D10000CDF2B3CC2F3A4E2FD4C6FC4DF8CFB45CF +:105D2000534E75BE1804782769F7239644F5787F9B +:105D3000E0672827A6803CA0FBD61E3D4372CA2AF6 +:105D4000F1F781EF72D18E6D60890AF2DD6D22F775 +:105D50005BCF99FCE48FC6FBA7CD153EB24BC16E5D +:105D60001F8A76E97D05FE5F97657060904E44ED71 +:105D7000FED169E8AF12B2DA19FAAB5D42341BF317 +:105D80001E4CC1AB17D4607E8B8B4991628CD3F1D2 +:105D9000BFA3028FDB9DAE1862F5CA31F2A84C7D1D +:105DA0001AC77F1AF53AEE47CF6F677E1E4FFA6D1E +:105DB00059D1C07918F1F1DC8EC6309549798A88BD +:105DC000FA213EFE74128129A5715348DED859A7E5 +:105DD0008DEEAD30DE47193175AEC5FDB4E0EA1485 +:105DE00005CF2556B872E83E8BF90D3CCE70A3FB6B +:105DF00014C52B160A0AF9B34CE57A44BC84DF4F6C +:105E0000F2657F7F65A0F9DEE8FED010AF628F7289 +:105E10007DD1FFF8417E4F5DCFBC1FBA85F309E508 +:105E2000C31E9D39A412EDDDDEDF394D71B06B0369 +:105E3000AF1AE8FABA86370D745C1F7CD7D01E7192 +:105E4000452D43802E224F67CDB806F0F8D153364A +:105E50003A77B7ABCC7FB62C26DE159939A61ABF98 +:105E60003BF07C4F121C471A3B695DF5F9BED378B5 +:105E700098EA91C60895F1F3D5E3067A697D81DF4A +:105E80007B1B053B08EF6B1A287E704FF9701AE7F1 +:105E900036517D87FB67E16198BF7AAE9509DC3F9B +:105EA0008CD23DB8F3851405FDCBD6AC3D6F635C59 +:105EB000E175532AC961B634FC36E62BAE5ACFEDF4 +:105EC00061A6861F44FFAE2B2585EA6B0BFC83CAB7 +:105ED00091AFF2B47EE9266E5FB9C2C3E81EAE0C84 +:105EE000BC030CEF97F50DA67E78531B8CBF340DC9 +:105EF000FC5327DE1F1B9C80FCB66C47C702F41FB7 +:105F00008E27064F631E527D79FB02F41F8E631E9F +:105F10001EE5CD6D7D288C76A41AA17B725E378933 +:105F2000647FE3EFE9507EC533C266FA3D1D47C486 +:105F30008AF7B0D48D5547E1F7FABB0F36BF9CE71F +:105F40002D14C4952BEC3C1E74CFA6A33EE407FD94 +:105F5000BE162BEB5487605ECFB65D745FCB6C14BE +:105F60006CC4D7778FA2F3D2B536BAAF0EE052C960 +:105F70000EC2DFF1F0C4DE83C324BC07C795239FA4 +:105F8000457E74898CF230AACB3D86F82D8BF03893 +:105F9000E74733B3C87FD67F5F871DE4799D1FCD68 +:105FA000E4F162C404EE7FCF799ADF975B5DCEE3C4 +:105FB000052B5E3EFA0EC21F29F3D794C7E4D92CF5 +:105FC000679DC7A49C1EBCD944D68271EF81E85658 +:105FD0008FA3EAF5D7667D977EFFA100F3B0FAB0F4 +:105FE000D76ED0E038626171795A3ADC7A9E16BF7A +:105FF0007F68AD86F7DBCA399E5FB2CA379B38BE71 +:1060000014F4F75C398110E2C395CEEF9FEB0FEFEC +:106010001F7DB3F3C718EF3B9D2C8F443AD7E70D94 +:1060200078B8AC3C06BF3A1EF4717438F1BE46DC59 +:106030005728F8C33ECB201877D9AF79BEBF3E2F83 +:106040001DCEBD85EA4DE531FC0FF4C5EF5398999F +:1060500040EBBD62E79BEFE079F765BF185F88F220 +:106060005F7F2F1E5E8093F2CC0E98C2144F0438CF +:10607000EFC4F57A72EF01CA87D2E1FDB2EBA3DF7C +:106080001BDDB5F9767E8F5B16F8D780EF15DB7FC9 +:1060900047BF7BB142CF0B8BBB273A5ECF48CC7F4B +:1060A0000DFA4536C6E5834D7F6FA8D9F09E90A3C3 +:1060B000DEC7F99BC9A8A76D662DFEA3E9A3224DF3 +:1060C0007F0A87AF6A5EE18DB977782CE86F1ED7BB +:1060D0002438ED76EE8F77EB714191A9DD2FEE3EFE +:1060E00003E38AAF71BD3D093D141155819FF4B79B +:1060F0004DBC49E1E7D5B5F8D25D7BC8CF443E4100 +:106100003B6298F6FD87924E3F118672B84FA944C4 +:10611000313CA2CEF782855A4204E4CFEAFFEA6915 +:1061200065F8BB67FCDCDAD0EF241AE6A187EAD673 +:106130002465BF807EF416CD0F1E9EB4DC84A26A57 +:10614000F4A2E01A2CC72C57062F917BC6CD595DBF +:1061500032B61EC76DB399507E5954EEC7ADEBBE33 +:10616000FF386047FFE577E5DC3F1A629FFA470F8B +:10617000EB7FDDEF6A741FAA8EB13713CD21FADDF4 +:1061800002FD7B890D430FE139D0210DA3A8B45442 +:1061900073FF724DD29D7B3D30AFD47D19F9B1F4C0 +:1061A0001DD1BEDBA37FA4438B62F66B19731F5A0C +:1061B00014A3DFC11B33D459596E4F9DE28A8AB1B3 +:1061C0009D95C48DA7C6D5431A91D4C4BDE733D4D9 +:1061D0002D35C67958F6A51BE6012D86FDCA7B1B19 +:1061E000730D7892CC4C88C593D49077A81A7F070A +:1061F000A2A1984A820CD6D9A9ADB3B356FD10FD21 +:106200004227D8374763FC05165B17792967D235D3 +:10621000BE648726F6B4AB185FEF6F1D2FB4FC7E0B +:1062200023D83831F34867B3893EBFE767812690AA +:106230008BBBF2B6D8514E7CBF517D0D7FA7667DDA +:106240005E01F9C3C9E64E86F9EF295E786EF0CF9C +:1062500042063C59D42B3A71FE56566747FACCCACF +:106260005C68477F5C06B2C77AAB6B0EDD9FA99F67 +:10627000DF8B876F2DC0178EC9C7B7E8F10C3426A6 +:106280004B7BF04ABF1781FF3BFFB9887E8A4DCF19 +:10629000DDD3F067D5DBB57BC292CA7E1EBC9EC73C +:1062A000A9023637D6B706D1CEB17BCC54B72EDA99 +:1062B00016FE7FF00977953D60A2767EAE29310FFC +:1062C000F06FF4F7A84EF0E1FAB9BBD7E78FB1BF92 +:1062D000FBF3AF2E114F47BFE0F7B0D65AFD4B513D +:1062E000AFAECD281662F3284E9557AA53913FB40E +:1062F000F382FDBDDFBDEFC79C59FC1E138EF75422 +:106300000DC7A9D5333EA4DFADB8007AC6B8E0BF4B +:106310008A9ED7C7E1E10716290BF9F2074D429F84 +:10632000FBB933A61AF7C7C76D62740ED2D2620AE0 +:106330007904F4A96513D27F9635D886F1FEB57736 +:1063400099D81A9975C71D26128141E95ACCCF0DEB +:1063500033F932FC2912CB4191EEFF1216BB07E351 +:10636000FB9696634778BB8FA1DEF3E0FD7160E793 +:106370004EE830B1708C7F80F7C2C7D6271D4E33F0 +:10638000D4ABEC4358D890779263689FF6D95843C2 +:10639000FB74A9D0502F8F4E36F4B731E79A5C9832 +:1063A000D7A75A7CB33F3E64DBADF41EA81792C357 +:1063B0001EE0E8EE71619DF31EB51AC6B5C4B5EBDB +:1063C000F1C8FED62D3E4E72DF542D4EA29D0FEC2D +:1063D000BE27A41F3A8DBF2704147BE526E86A7503 +:1063E0009948AF6765CE21B95555E363782E2F7E66 +:1063F000FD70E714E55108E58DAD070F9620ABC49D +:10640000F7AC2D9C2E3C309EEAE17152A487D675E4 +:106410008CE277BA1CCBB2FADC68F7E9F4202CAE38 +:1064200073E3FA2F0B898675B0314F05FA359FE279 +:106430007975857F1FE9C2A2D185C56DA2BCDE78C2 +:10644000FCEBE7D1E3F1EB5967358C9FF615F1BF13 +:10645000FB2BE2DF5AABEC4A25FC3319EDD2E98B7A +:106460003752FE8C75844278AA41D98BED2318C52A +:106470003BE3E90ED6211CAB5FADDA3A4C1737A9E6 +:1064800084F716C606C9B8746D5C8F8C9843760E77 +:106490000BB5D179E7B5B01E08EF5AA9AD6E217CD6 +:1064A00067ED611BFDAEE25D9E3637CA83BB360BDE +:1064B000E4AF098B37D6E3BADE9591E9E1F708B08E +:1064C000C126BA973B9C60A27DCF6002AF07EDBCAE +:1064D0001E36637D74DC7A42BB19DB876F4C34F067 +:1064E000011E6BC2E769B5463E7E6BEA70DD78A59A +:1064F000F1A4EAC171E30508D5D2417E0E0BD07A32 +:10650000200FE4E6288D5EA5118B2B917EF667891E +:106510004C20B89880FEB64E3F6C23A7173DAEA91D +:10652000D3532FBA091AF956E70BFD3B32FB21E191 +:10653000477659E59007EDF698FEDCEFAA44BF5E7A +:10654000D2F61B85C50D04F7DAD7455A57E85281B4 +:10655000ED1EA0F3B0D41BCE56D52791DD14076FE6 +:106560003C7D0D04772FB82E92DE874FFB6AF4DE58 +:106570009CDC6AC3FE0D9A7DD28CF7A1E2FE07DE99 +:10658000870AF60FA6ADE238CD5A9C80FE883FF808 +:10659000BE3C735CA19DD7974CB84F736FF95F23D6 +:1065A000688F6C5EEBCEC77B89EE9D3A786C3DBD03 +:1065B000C7ED50FDBE0D191FE5B05EF76FE038C89E +:1065C00027D0AE62FCD403E26B2AF8E59E45EB6E61 +:1065D0001263E259F20859688371D3CE8F16506E58 +:1065E000A5D530939F4AE50BF1D7D6C8DAABBFC02B +:1065F000DE90B4DF6B8B7FBE609A9DDBC72DACCF86 +:10660000FB5B164DE37EBE4DBBCF42C70B90CE6EFB +:106610005B415F7689860F4C122CC5FD70802B86FE +:106620008F7AF7E7EBA5E32B011FC17AA78FE0F084 +:10663000C841A982EEA1714984774F8B9F21DE9DCD +:10664000DABD30BDE808E703E3395B781E5C7CFB0C +:106650009DD3B87D113F1F27CEA78F7BD2FEF9F3C4 +:106660006102CDC7ADCFC747F34933CBE4AFA43107 +:106670003B870BF44FECFE605AB0EFF5A9D4E7630B +:10668000D6EC706D3EE9B54A6A7D1FF38F9F8FC5CA +:106690000DF3B10F3C9F81FC05FBC5FA0BB277806F +:1066A0007B91B85FD0A6F939DD74FC1DFE3EFA7708 +:1066B0009931F8D83F4DE4EBAE427F83BCE77631A9 +:1066C000AD8307CB787B18C6CAD47EB79561D9BB9A +:1066D0001DFD15B3C6C766D6ED6FFC53ECE30B2D5D +:1066E0005B1A8D7E61AF76ABB2543BC73534AB9845 +:1066F000F20CB8B07998E783A57835B9A66AF76146 +:10670000397C4CC578A7234C97184841E3BAC09F01 +:10671000DF8DF42BC48F23535E66C2084D5EE2EF1B +:106720000A7B7AD6EB7687FACB6945FF7B78F9BF8F +:106730005AFE0F4F373D9600800000001F8B080067 +:1067400000000000000BC57C0B745CD575E89E7BD7 +:10675000EF7C35D25C09C98C850C772479245B6386 +:1067600067FC17543657A39134729CBCB1438C43D9 +:1067700059CDD8083F4149AA90868AAEA41A7D2BEC +:10678000843F926307DB51DC912C1B0789200810A2 +:1067900058CFCD1AC9901AEA06251857A4ACF58C23 +:1067A0002169DA925505CC4BFBEAD4DDFB9C73A53D +:1067B0003BA3916CCC5AADB2C2F5BEE7BFFF7B9F45 +:1067C0007DA7D392DB76311FC006D0DC1F04A8F66C +:1067D000F6E9350877014CDB11A63F6511FE9FFEF7 +:1067E000A1E17BAF0E356B013EC276C076A5FC9170 +:1067F00038F55725EC5F09600DE4B525B11D62EE53 +:10680000660F830FEA25D41E724C7BBC7C3E1DE7CD +:1068100073F17F4256D5235042FD75071B0F617DF2 +:10682000325CCEDBAE1663BFCA17931DD4AE29CD42 +:10683000761C6F2F8DCCB603B5BF943C8EED8E6A5F +:10684000076BB7C1B3C933B85EF74E77739CF69741 +:106850001F4DEDEFADFB2779253E030A5C32BD6786 +:10686000C7C37D59E91F3E7C7715DB1DF4C43F1972 +:10687000DF37F67CCD82E3209FBFC7BF37687FAC90 +:10688000FDCE1B7F76B6025C5A3A0B83869B5F4C2B +:1068900048D7BDD11573FB03C4010A006A6577BBF5 +:1068A000845DF7954B09BB8F9EABA7628887BD01BE +:1068B00089516DEFDAA11EC0F68FCB25902D001DFA +:1068C000D9BFEA2926BA55224C78C77770FBECBCB1 +:1068D00005510992267CDCBCC30549C72CBCAF72AC +:1068E0009B27E69EFF1C8B63A9E36F694A1DDF1996 +:1068F000896DD3D7012C69CE4B797F5B4B61CAB8C8 +:10690000BC06FD0B3A9EEFF1C0EA8CEBFD7D44BF67 +:106910009BDAF7AEE5FB8100C7577ABF8388D7645F +:1069200019C0775A1DEC79ADFD1F16FD8F8AFE0345 +:10693000AD2A7B1E6BF5B2A781F74E5BD0B30B710E +:10694000F79934FC19CFAC96BF7D337C930946CEC2 +:106950001E0B60DFD36B597F04CBB766A46B1B00A3 +:10696000E267831EFD06E109E0EC9B337C8B04F3B8 +:106970005F7E70E20778D4FD4929D14BF41CFFD02B +:1069800005386FC7C60F5FAFC0A9C7CECB4192CF46 +:10699000F9CEB797CE67C77EC985F1D02BF060C01E +:1069A0003DCB6C3B1284E72B08AFC776DA50C96C3D +:1069B000FB1EDDC2F0D2B302FB0566FB3D4EFDE4DB +:1069C000D9F59682232B9A9D015FE5A97C73BDFBC7 +:1069D00033FA8D2990A59AFABBAEFE16A2B80F8F96 +:1069E00066D3D9BE616CFA36C49BAB4AD5086FB387 +:1069F000EF9161D792FEC94BF4FA66C78F554911E2 +:106A00006A4FDFD733A77FAE33795AABE6CAD8FFD8 +:106A1000802EB173670BFABE92BD3B74329FC6E7FE +:106A20000DDA719D9CB5520A9FBF2DFAFB1FBA6308 +:106A30008AF4E133E765E85D805E00A6F184C7D3A0 +:106A4000DB3C44EFEBED4F1A36596E86F3D2E0C2D1 +:106A5000B4FEC569EDCBD3DA57A7C177A4F50FA56E +:106A6000C19BD3FA6F4B83EF49EBBF2BADFDC1B494 +:106A7000F687D3E03F4FE9EF57FED09389BFD2F9B5 +:106A8000C6E8E75212100C303BA48F99F8279DEE10 +:106A9000B59BAA7F49F2E8BFD2EBDD457276CE1AEC +:106AA0002419E818E7F480D3425F0BBE67768DEDBA +:106AB0000F261B4DFB1DF7ADBFF9E2027C8DFC38A4 +:106AC000D59872FE04D307004D53E6795C82CE6CF4 +:106AD0001CF2A1FF15A7E4207BED05B6AF1A6FDF0E +:106AE0004E1FD973E42FBB46F64CE30A1FC624B2EF +:106AF0002778DCCF2FC67DAEE4534242E8053B6CDD +:106B0000F550BB2D8E84C4735976EFD069DE6E7458 +:106B1000046EC67E7572A07D279EBFABD2AEDA55DD +:106B20003CB22DEAC846B8FB6905DA2DC43D1FB456 +:106B3000EFC4FEDE5B705DB2E32FD9181E1DF83F77 +:106B4000B293BEB82D451E2AC0368B671F8D4F8568 +:106B500041BE97C9B7328F9E6D796767E215D37CC6 +:106B6000B75467E7FFAA02FFB106D65E2D991D0F45 +:106B70006A66FBF0BBD658E215B4BB2D0DC0E4121B +:106B8000CF0DA40F6CF99020F9ADDDDDC286E69E35 +:106B900097198CF4D115848BCF71B9457C8C7BB05F +:106BA0007FBF17346A8F78637031308BDFF259FC06 +:106BB00026C3B84E7F54CB5303F3E317200A847FD8 +:106BC000ABF757EF107110BF407E14F931ED88EF2D +:106BD00072EFEE2D9043130A3C59C09209AFE97849 +:106BE000B47E4ABCD6115ED188C14DB0E646F0DA1B +:106BF000E643CF92CEB994E3D50EFD71E2938F9127 +:106C00008F7A83CC8F6178EF0E80C0B39EB318FD6E +:106C1000303A2AD9B31EEBA4AE10DF5960BA1DFB7F +:106C200077C324A34356B5633A8E7871C2073AF10D +:106C3000A5C177D995B614F9F5E8A9F8C90213ECFE +:106C4000A3F19F0E3F0F1A7CB7013630B9FD84F8CF +:106C5000718875B654C7FEB41AE1DC38B459F1DD59 +:106C6000CDF74E03CD83F891087F7B859FB7B75C46 +:106C7000E89DB8FEF300E2C92DF8AC7AFB94C3ACF2 +:106C80005FBA85BE7B8CFC19926F3DBA93F06C2D78 +:106C9000B769090B9D3B19DF85F3CA5E19928857C6 +:106CA000CBF6CA24ADD3BB1882A43764E8E37A4C90 +:106CB000AE62FD885E32E2DB16BC57B750BF22D40D +:106CC000371AED6735E35327F229C50310542E5DBB +:106CD000447CAAF8BF4CFEB11378BB816F5B11C234 +:106CE000267CCA69EDE9F83E6CF0A3C0B73512F511 +:106CF000247D73D749C7F7CB1BF563D5A44FB5CC1B +:106D00007499D5C3714617F299A91FD2E5491A970C +:106D10009B80361BAE73CB43A974E9EF9418DFE276 +:106D200093F1F9C7A5A8B8B15F91CCF509D440E2B9 +:106D300084657E7BD42FE87352F89B09F23711CE1D +:106D40005E3144C20C8FFDE5584F29F1ED8AD20621 +:106D50009283BDE01893719D9CDA0FA71E40FCEF53 +:106D600039FC61B009DBCB8E1D4E5AB0DDF39F1E9E +:106D7000203AED3FF6D4D46BF87E5FDBAFB55334E9 +:106D8000BEE195BE52EC5F2643B3D9DE9DADB63071 +:106D90003B73B65A12F60646B31719260CE0517724 +:106DA000EC2C9D5F1F96D87972D602F33F6DEE24CE +:106DB000DB9F5F2974923D5D5C27F852D8C19B68C8 +:106DC00030E98BCAE924C92BC2F16C6D76DDDC7F1A +:106DD00043BEBB697E3AF44F2CB368386FFFE7B50A +:106DE0006AC2ABCF0BAA03F1EADBA25AE2B87F5F1B +:106DF00075EC17242FB630483AC279F1A0C581F35B +:106E00002F0AA9EC1C8316ED4BB4FE600148E41F69 +:106E1000D6C4B5C5A49F0F34ECBE2DB6A01FA55B8C +:106E2000A4CA4FFE4C1F9F3EAF1D9A751409C80996 +:106E3000811EC138D52A4783242FF92EF00D15A2C3 +:106E40007EBBF9560BF1556E690EF34F699F3B4DB2 +:106E500074CA0F71FFD180B52A2603A0D11ED0803D +:106E6000686BC53328DE07045CCE61774863E33581 +:106E70005DBC2FE5EFAF858F4FBA4EFAFC05821E41 +:106E8000F86631F73F60202795BFF24305F3F3170B +:106E900028380EF960D0AA16121D079770B98AB764 +:106EA000D9985C810285DB4DF1D481B6ED3B74A2AB +:106EB000B3057698F9FC1DC1DF1321CEEFB572C082 +:106EC000C9F801E22ACD6BD0E78BAFE7EE8CA0DCEE +:106ED00057EF6E0A0D91DD8A73BDDB1D5F3D4EF2EB +:106EE000D71F0116677D1C962CB4BF3F80844C7C55 +:106EF000763BC4D9731DE8EC79D68853847CAF0106 +:106F00008DBD2F838444CF7FD363ABE9DCCB20CE10 +:106F1000602D1264F3350D6FD5635CA9DF65453CC8 +:106F20007530D499F1A30E127EEE10FCF0A83B7AD6 +:106F300007CD63E06B5F245A15C2F305869F9590D9 +:106F4000ADD0CEE81BA9FD8CE74F98DEB209FE421A +:106F50000CDA0AF17C0706B555CC9FF1F6D711DCA7 +:106F600054AAAE9211FE8298FFE8A6681DCD575F25 +:106F7000D46FA3F15F11F4AC2FDDA9E4E12C378DC0 +:106F800082250BFBFFC1F3890E7ADE0E6D35D80327 +:106F9000D64DE967B249FF4462FF8BD65FE3F09DAF +:106FA000A1F781A267DB73F9BEA234EF198F4722E4 +:106FB000FED3685F014E6F8A8F13969897F062D068 +:106FC000B1AEC8C2E22FABD73658E2E374DF66F247 +:106FD000F7BBE7A17B449CA33134A3DF145B2AFFFA +:106FE000358616D06FE5A37D40E75AF1C1C5F61C82 +:106FF000A2C3FBAA42BEC9FAF3CD329D6FE7A6D861 +:107000001FD3F942E7829D2C1DA18F4D28844FED9F +:107010006B61C24FA0744C7269D44FFF2AAD1354F8 +:10702000D486525C2788F17A1CDF833B3FA39FE123 +:107030004CA4C68F40F618C7AF4AA6E655904FF548 +:10704000219C2FE1E57C8A53F692FF3F1891989F8F +:107050007AD316ADA19CFBB1ECCC0722AB9D99E293 +:10706000EBE78CFC80E057E37D50C447F877515E36 +:10707000801FF708FC223FEEA1731AF833F17B1F43 +:10708000BD37F83D17F536D1DDE0F7A604E7BF8A36 +:10709000316D35F1DFEAB3C133849AA6E15CC68F66 +:1070A000DF15F3233F1EA67972C31AD397C8EFC723 +:1070B00019BF9F1B6B779BF86B5F441F20BA209F03 +:1070C0007D8F9E75457C9D35E7B40E9AB7DECBE784 +:1070D00035CE7954F009D289CD8FE386699C461666 +:1070E0009CEC7C12543AE7B7C31F26653CF7C7CF28 +:1070F000336F0756564298E6A90EC6CE48F8DC50C4 +:10710000AE2918A2E1FC728A1F9A4E37E49BE76809 +:107110009D9AD298C2F41C342B4C3FCEC30FE9FE8B +:1071200009FE7D90B33E858FFF7A413D7A9DF3BE87 +:10713000BE493F43FBBADEFE869FB45BD75FA771B3 +:10714000E80635B17C977B6D8A9FF586C0EF978501 +:10715000DFFBF2C6E8CFD83A611EF77CD2F570FCAF +:10716000DB745ED0717C36F3D3DE617C71D1D26684 +:10717000F5CDF59F8FE8DC4FF32B479DA508EFA1D8 +:10718000FC0BCCBF5E17F963280747843FB6AF55A9 +:1071900063FA7C6F6B39830FB406857F5DC9E0BEEF +:1071A000D6087BFAA189F9817D8D3C4F5710CAFB27 +:1071B00012D1E3E3226425DC57ED76076F177126C1 +:1071C000F6730A273E87E2C65C414F2832E52190DC +:1071D0007E05AB395D719E04D0BCB6E6B80FE123E5 +:1071E0001417A9E4BFB7C429FFB487F2E0C899D641 +:1071F000E0A2EADDD8FED3C532582AE7CE67879FE2 +:10720000E9E4477E1CE47E3CC59F4984ED317773F9 +:10721000AF4A79854781F4D411DD31CDE061A79380 +:10722000D1299C1A7FBAAB52E32D7B5A7C951E7FE5 +:10723000FA4BEFF1D1BC06FEFD1FB89C99F2DC7948 +:1072400095A9799882DDE85FBA29CE39ECCC9447CC +:10725000716E49ED7F24C8FD51FFE53BBC8CDE8D8E +:10726000125BAF6315E23B30FF3A50EE4AC1D39157 +:10727000C685F3915DC2CEF7E9BC9FD5D097C20F0A +:107280007613BF9AF2A58F89FED5353E2EC7697950 +:10729000D582ED876127E5A582C0EC61C1F6530C6C +:1072A0004E9FAFBA86FB31CE997E8EF0728AC32A8A +:1072B000D5212623E879DBD70B79D166FBA39EA8DD +:1072C000AE594779CB249B4776C7989C58157012C6 +:1072D0005DACC22ECD775E5769AA5DBA167E6CF999 +:1072E000A9FDAF95A733F069F4B32A5150F9FE58C0 +:1072F0009E75291C766ECD9E3BEF7D35DC3EF8A158 +:10730000AFC18FE7E8C373105F1F51FA9C341EE5CD +:107310009FE57567F5496ABEF41E31BE76937E1F00 +:10732000E1A7508E858E21DF408D94384171EA159A +:10733000E45B93DE30E8C1EE8BE459D8A670FA74B2 +:10734000D494B3F934087A4B983E38C0ECB1352D5B +:107350007F7744E77C3D435F31DF1C3CA6C54B365D +:1073600041779248A2BB52A90DF5F23C559CE2F33D +:107370006CB57435EDB35DD01DFF4A1DA97E4F3B42 +:107380009DD3A0BFA226D9B3607B137BA2B6739016 +:107390005C1A72349F7E06AFE93CC5B37AFA486E38 +:1073A000F35FD1BD62BC4D8113F87C22EB2F9E248C +:1073B000B8226E57EDF43E84EDE4C7DB1C6A4790BB +:1073C000DA73987E6B79279BE9C5DF49F11DDDF8FB +:1073D0003C46724276C5A26B84D70A05CF8BE33B4D +:1073E0006E87A1761F3BCAA8643A971B2619FEF147 +:1073F0007CC76A4CF19271CE01F20F03663B69E0E3 +:107400000DC62493BC9C9C9197E8C91A933FF33D09 +:10741000297A8AE0C6DC813FE2769BE72BA4B80597 +:10742000283FE6FDC3E0A44E315205044F00E56B52 +:1074300053F3196086E5B9F019C1878BFD0093CC31 +:107440001F4EB07B1EAB63D3FEE530BFDC74B75676 +:107450005E085B4DF1A6D2CCE4C6DE527521BC06B7 +:10746000E078752C49F8B0B6D43118B09DE85B7E51 +:10747000A73E4EEF0FDCA94FD0B99ED9A8FF86607A +:10748000EF97799EA03DEB8F98FE31E6FDFB39FB2F +:107490001B7311D38E8C66BEAF9BDD9F3ECFFEC2A9 +:1074A000C6FECEF3FD7DFE4298250F9A995D776F5B +:1074B000D2DFAA61F762B83F6C9FA801B6BEF76E33 +:1074C000DC5F60EEFEFE711EFC3D75EA5AFB0B5E52 +:1074D000082F9DBBBF891A8DF1B3BD652DDB97B514 +:1074E0006513C71F728F92EA7FB1FDCDE77F79BF29 +:1074F0001CBC18277D32620B9ED0C84EEA627033E6 +:107500008F6BA290DBBB8AEEAFE38C7F9D94FF97DD +:10751000295FC9F574365C64B0872C2FD913613F9D +:107520007241B3D07B1982ECBD8117473ECE8BFBF5 +:10753000C86F512DED74EF3826B375E435DC5F87E5 +:1075400072D0282F830BB27D5A4EFDE4DF2D2CE93B +:10755000FA4D95E5D79C61CBD52C939CB62B40F783 +:10756000F0861CB70839463F84B577581D2AF921A3 +:107570007F26C7777459484E6239E10292633D46CF +:10758000FB9A4F5EE4EC6126979F544ED03FF786FE +:1075900091CE872DFAAA57499F2CB631794BA7EB8C +:1075A0009A30F73BF3EB393F7737F0F8B0BB9AEB03 +:1075B00081A5612EE765617E8FB92CCCF9E7424841 +:1075C0002FA5F94F6ED4753AC75901978639FF3503 +:1075D00057A7C2B37A98E3331B74F555AE574E598B +:1075E0004C7C62E821E497D2B0493F19FAD7982F32 +:1075F000BF86D391FC5BF37DF19D629FC679C87F06 +:10760000DE9A9DA1FDB3A23D92DA5E2AF0F1F24628 +:107610009DAD0F70AF4AF96B4BBCC472159F7F498B +:10762000AF6EA77BF8682D9DCFB8875FE03EBE8127 +:10763000FAF52C897B294FDCFD7772B01DA8DEC0DE +:10764000DF4179F996A84BA37C6477F66E2F8DEF16 +:107650005EFCC86DF46C5BFC4819E55F6C745F4EB2 +:10766000F25494C7FC7ADB4CBC39E9359FDBB02B74 +:107670004F64AD946A719D119FC2ECC48865EC178C +:107680000F12FDB339FD8F3ADE5BF43ECA69A1F3F8 +:107690005F16BD8FF3EE13E7396A01C6FFF1753C43 +:1076A0006F14BD33FA951710DEB7D9156CD768BFC4 +:1076B0002FB2797A56E4058956DBEB399E7A7CDD68 +:1076C00053644FBF7EC8A6D1BDEF8977CB6A1EC079 +:1076D000730D6FE5E73A786F6D2E91FF50F48B5B79 +:1076E000D769FC3C8DB8FE771AEFEFA7F74FECF89F +:1076F000C6CFE8FDE187BA72910DE048ECD0D6F52F +:10770000085F562BDF28A6FEA0173E4072F88E9D1C +:10771000EDBFAD9FE3A5C1A744CDFECAD7EA395D51 +:107720001F12CFC2261E3FCFA7CF1256CEE74A0D5B +:107730003C1C35CD130FCB6CFCC7E27C7EEFDF9E8B +:1077400027FC7FB7F5ACDA49CE8C12DB4C78D20E31 +:10775000A2BF8CE7751D928A93B84F25CF914774CD +:107760002B92395F2EF5FE948D33E6EDA8737239B6 +:10777000882BD333F97CCA4785C5FD08C61924B7C1 +:107780004A5EC4B3D0BE8D7D44D6FFBAFA7EDC0714 +:10779000E2A4D9A843A2BA214AFF511C75EB5D535C +:1077A00096AEB5ECFE84D5FDDC7AD72F2C2710568B +:1077B0008B799DD0E4C14B96FB112EC57886C62FE0 +:1077C0006999A9DBE17EFE95ABB2BAC8146F01AF2F +:1077D000FFF188F973C154FFE3A3BA811737131F70 +:1077E000783B3C20514EB42AB50EC8DB37F69A1FC1 +:1077F000DB3D5E29588FF89A18DDE5A0FE233D1287 +:10780000109F76E58EF552DE20F139098670BE9123 +:1078100048D099877818AAFAB94A39D417285B440E +:10782000F504B993EA6AC4F3D16CAE9F46A24167EE +:107830002E3E0776C18354D7F0EDE76367C94FF753 +:10784000F4E4A9281130F4929A1BC4FE3FACE3F48F +:10785000C4F5597EAFDB11742DC6FEC7B76C732D0E +:107860000B50BB83B59F502D91B1803830EEEFD6D1 +:107870008782C7B9FF137CAC1CE7B58FAE96C94FA2 +:107880007DAFDE26EA8C4EBB247CBFBF455129BFAD +:10789000D49FF59F0E1A57FC9002043B80DFDF58FF +:1078A000FAAAE1EA4DA4CF4B27A87DC91E2E2F8846 +:1078B000F759BD0D244F8F249BB0FD32DD27215D8C +:1078C0006E49D3FB76D8F35B39879EA67B21D3FD27 +:1078D0004EA21526893FE87EEB92C99FF887593E54 +:1078E0005B4576A5567EE78B77D3BE9BA42086E5C5 +:1078F000B01F127BD7237CB9490912DEBEDBF4C26C +:10790000CF480E07BEF96AEE0684BFD7FCD6D60D67 +:1079100008E7E93274E2398E75FEB29FDEDFF6AD1C +:107920008F1EBB1BDF775B9E3D4BF553C3A8DFDA91 +:10793000F0FD70B6E15FE8CC7FD7441D48B78DD32A +:107940006946DFD672FB623C4FB69E3D4F7E50A229 +:107950003522CE119DEC44BF436DA999A4754F9C6F +:107960001DBB87EE7120EE81AC5B67EB06F649B07C +:10797000B93A48F31C1872A0A869E379AE2DAA8021 +:10798000293F7D7E57F473C159D8B7F487BF1834A7 +:10799000C12396E8EB3E825F6DDD157191FE391CC7 +:1079A000B748248F4DDBC84F703E2D81CCFDE9A830 +:1079B000C32407A1849DE9CD9C888DD5C974B5C623 +:1079C000A61AE93EDBDDF8F3E51AC565937DB45FE1 +:1079D0002BCA1CC58DB67C531D03FB2FCAB3D98E91 +:1079E00097A27E30C5D723E50A8BCBCA2C1035E78A +:1079F0006DDF16FC5C58CB9F65A352DC8E7C517604 +:107A000018F19752B727EC57F2B740F66B64F46160 +:107A10005726FD62CC9F3EDE68B7D41BF9E1D4F94E +:107A20007A7CBB75D2231FA11E227D6F8F36E95D44 +:107A3000A4AF8D7AC4E8833AC53746FDA111C7F9D2 +:107A4000692AE4437BB211488FA9BB783DA4D69242 +:107A5000759EDBBB58DC99CFFAB17B31E3DE7B1935 +:107A60005344B8BEA2303F32EB7BDC9F484C7C498C +:107A7000A2FBB0C4D16888E8513ACAEFC35EF5D51D +:107A8000B53BB1DFD23DA0139F57EC9906BA0FB3B7 +:107A9000554D273D24A77DA0919C46FAB410F52BA7 +:107AA000392703F55B0AB109A277AD1C7091BD6956 +:107AB000F33DD24EF2BFBFDA314DF51D46DD828176 +:107AC0009F12AA5B6076391A72D03C9DA8A334BA83 +:107AD0009F0F4EDC87F089DBED2ADDCF97C0408811 +:107AE000ECE34C1DC8B090E3997A85D4FBDEB23448 +:107AF000F92F4993FBEDB5E2BE57D80F0DC65C14C4 +:107B0000B70C61BC41FB49B4BE04EF99F4802187F6 +:107B10004FA37E2084245B1DECF962AB0A7A19EA3C +:107B2000E5562F835F6B08C56AD791BC05EF213DF1 +:107B30006DC8DB198FE776B27335F264BB05F1309F +:107B4000F8EA64B10BE5ED0745D25D247F0833798F +:107B50004A262FE56D5167E117CFEFFAC2E74CEDEA +:107B6000E3A5EF958301A391F9D15E1B954CE13A12 +:107B70009343496576BF3F12F168F521293AE466DF +:107B80007696C5EF974BD5418A45953CDC2FC2CE02 +:107B900015F90C1E14F2A044B7F2BC69BA7C110BA3 +:107BA000AE677E14FBB3B9BFCCF27AC8AFC17AEF2F +:107BB0005CF9B392BE5D49F2ABFCB3992E5DB5A9F9 +:107BC00076FB3254317F25837EE0F18ED00F7276C2 +:107BD000BE93E4AFABB547ED34F14F57816D955986 +:107BE0002EAD39B0CBEC9718CF57855F92D7A01F39 +:107BF00024FA18FA6F3EFFD3D047B3FE68ECAF6AA1 +:107C0000C98E2E8EEAA29E87ED73AE5E4A95732DC5 +:107C10000E12E17DB88AE76D87AA9E6371E3505F1B +:107C2000317B8E8C867A2905F21145522427052056 +:107C3000C167E6EEE75A7C67F433F8CC800D7EFB33 +:107C4000D7577F97C26F08A7F09B011BFC66C00641 +:107C5000BF3198F86DA38D4AFC90DF7E9799DFFACB +:107C600091DF02D7E6B77FFD6FE2B737FF87F86D88 +:107C7000A08EEB7DE4B74BC43737C06FBFB9117E20 +:107C80001B51C75C945F40FF90D93FA30E6A7840B8 +:107C90001D247D3D4C43C8BFFDBE3A18A7B8A3962E +:107CA000EFB3E6702C34806B941CE4F77D3D87C401 +:107CB000BD400FAF3BA995F7EC2078A4CAC6EAD225 +:107CC0008CFAABE13660FDF14F22FDBC8CEAAF903F +:107CD0009F465BF9BD1FBDA73A9E72CAFF931E1F48 +:107CE0004B0A7DAF85B268BDE7B9BE1F01CDA506C1 +:107CF00066ED5585A07B49CF7313F7919D2B948139 +:107D0000D5F98F72BD6ED4FFAD184BD5FBE97A5E05 +:107D10004B830BEA52F9613E3D9F4E1FD4EBB7D423 +:107D2000B1BCABCEED441FCFAFCE176F8CB4A6D68F +:107D30003B578C412893FFF0F53A1E77ED8BE865B1 +:107D400034FF27D8CF8ABAEBB0335FADDB506296F1 +:107D50007B848F9BE5DE800DB9376043EE196CB6EE +:107D600033B0E1F8A7B1335FADFBEF91FB6D75FF69 +:107D70003372DF392BF73BEB6ECCCE3C547703727A +:107D80005F57B4B33317FB6BA310A4F2A8FAA2F1A8 +:107D90009438DE2FF0BE4FDCA3E2BE5C97288E53F2 +:107DA000823753BCF8AD3A1E47A4EFCFD672DF54EA +:107DB000A3F97E4089B1FCA5AD65377B1F0AEB7F37 +:107DC00041E784CABCEBAA7FFBB6C843596D704F2C +:107DD00026FC7D56D869AB0BF19B81EF6BE5D01E7D +:107DE000C2CF930DD17D752CCF3416A47C2EE27BAF +:107DF000FF0DE2FBE88DE07BBEFDFFB4EE9AFB1FBA +:107E000016FB9F32EFFF06F6FDEC8DEC7BDCB7DD59 +:107E100045EB0C84A29B695CE2A756963730E2DE04 +:107E20001E5C6392F4B3124CF92EC0D6B273AA71E1 +:107E30004D263E684C793FD8AAB27C7C7FAB97E553 +:107E4000BD078AB5105BA717A42164B15C45B510C6 +:107E5000BF85C2B1D768FFC59DD8DFFC9D4E18C74E +:107E600099F77F9D7CB556D6DFA8E378677649BB46 +:107E7000031274AE9CC0B929CA3FE7E4DBE2A42731 +:107E8000A052F9C0AC3F901E1732D103F9E924C1CA +:107E9000234A33CB5BF9D11EB691BDA4B83240DF83 +:107EA000659CFC35DD731FEF292E267B584617B4E1 +:107EB00078CEB2026D88ECEAED229F36B4470A9282 +:107EC000FDBB2CBEA3B1823B2E67883767CE933FA4 +:107ED00075BED3B4BFF43AD5DFD4B953F4DA4781D1 +:107EE0006D9E24CC8F1FA34ED5C80FCCD7CF6F8DDE +:107EF00032BFE144F95D9B97515EFEB0125CCA97B8 +:107F00003DEB5E347B7F957EBFB5A476E63E6B4944 +:107F1000ADE93E6B492DB0F3239EA284BF13A3129B +:107F2000CBEB8C54050B496E8E1F0A2D683F3B5AD4 +:107F3000110F0BEC57B6412C935D5C2DE2ED91D106 +:107F4000D58C0F9ED430BE5E45F41963742C7B9A99 +:107F5000D371A44A2B24F93CFE18FF0EA963FC013F +:107F6000A03818BC6E78CF9467F4D7F3FB10C58D9A +:107F7000FB31D16188F6BF40BEF13AF6CFECA95A89 +:107F80007FE4789CF94330999D7AEF13A85F37FF1F +:107F9000BDCFF5CE8F127D5F72013C5F2BEF016785 +:107FA0009C41B2BF747FEFA4E6FC54FC941D94E2A4 +:107FB000F69573E749E7DB70BD3B25DEFEA47CFB4D +:107FC000511D1872BEA5FEC6E4FC0BF519ECC63EA9 +:107FD00031EF5167E26DAAD3043877DF2B95A86F94 +:107FE000E9B018E7DC5BFF7F8EC78B10DF168ECF02 +:107FF00047FFE62D46AF8EECF5BC1E5FE465983F6B +:1080000091E97EBDE53FDE32E7B36D55FC7EDDE6EE +:10801000553F4B9F18F6BC56CCEAD2ACF93AA3F3C5 +:10802000BB5FD724D2778FD473B96A0C8B3A57359C +:10803000CADAB3F1DCBDB9D7AF178D7E74EF91A961 +:108040003EC2E8D718D6D83AC567A1DC828729EEA8 +:10805000897BC97F38D81A2C7C7F29E5D32C099BD2 +:1080600067F6BC4BC9172BA13C328F3346A20AA33B +:1080700047FCA06D7029C9D75D929E0A2B71330C05 +:10808000EE68A1F91EE671A12F4FFC5EDE9149AEAC +:10809000F70B7C7CBE041E26B91D3FB4BDF012E96F +:1080A000ABEC6EAF14A0FD73B9DF6B0DBE11F3CD59 +:1080B0008F1F5BCBD629F37794C6F750B3F6EC2E1F +:1080C000D66ED0773EFC7A5AFEE12DEA676FF9173B +:1080D000465F8F32CDEAF76094DFCFDB5AFE89BD71 +:1080E000B7174525AAB7FEB1F06B0CFC55087EB159 +:1080F0008F02CBABDBBC63D22ED3B99F4EA37F459F +:1081000051DCAB337AE885EFA33CFC793DA4CC5736 +:108110002AE6B3F5F13A0DDAC7526DEEBEBF6FEC49 +:10812000034300737D030A66D295CFBEC79EA6386F +:108130004D1F0EE994D7CBA13AAD20AF67A5FBB890 +:108140006C8825A94ECCB8576C0CF37D781C3C4E3E +:10815000A948FBEEEDFF0BBA1AF74CCFD7ABEC59A1 +:10816000E18D4E9048CDE747BD21FAA3BCBF5ECF5D +:10817000F2A717D9BDFDB5E47C01BFEB4D9A07E529 +:10818000FFADFA543B7FA1FEC6E2F37769BE4FEA2A +:108190007FB51F6C67F799C39332FB1E665899FC35 +:1081A000E2DD08279AA4E010C18EC4DEF5D4DE9487 +:1081B000CFEE030CBF6C581F3CB41DD7F97F5F9105 +:1081C000581D95715F71CB57CEBC7637F62BFADA16 +:1081D0009B4EBA4F4009734A289B4BBEF15EC30EBB +:1081E000846E7D94DF33FC52C8F7FFFDE647B97417 +:1081F0003EFFD1F2554C7F5DA71EE9F9FD7D4CDEB7 +:108200006DD12C86775B74EF24F931E97969DB5DF8 +:10821000F677195D201627FEC1F77A76063E349E62 +:10822000FED2A8D487FB587AE54712F141C5688C85 +:10823000C52D15A3C105E5EF602B8C99F3C8E9CFD7 +:108240007CF13D0AED4FC6FDED57384DF2AB825241 +:1082500003BE5F1C71307C9478B9FCE55F6DF36EF2 +:1082600035F1CDF20897BF02712F69CC332CE62986 +:10827000E8D3D83CC5117EFF55EC15F572348F7BE1 +:10828000EE3C1587F93A50B99ADD1B572863525EC8 +:10829000063E35BED7AE0007FFBE1BC624BA67EF49 +:1082A000F9BDCCEC5163586924FBD39F95A35C4185 +:1082B0003E9163BCDEF389AC4D49E2C363D936CD50 +:1082C0006EBA6F61AA9FD70B806511E54D80F97179 +:1082D000E3D97EA68F3B1E00768FD5F128CFE71C11 +:1082E0002BE0F91EBFE262708717585C6CA73AF169 +:1082F000129A5FE485CA79BF5B0393CC1FB995F0EE +:1083000082EFDD959020FFD7A827E96805F19DFB56 +:108310004556AF9A0B52B097E655748DBE7BE85028 +:108320002041FE5847408DFF6F84BFDB9C13A45F44 +:108330001AC8137527B05C17F52A41FEDDCF4C1D16 +:10834000C97B4075248807207D57FC4D49E061E5D5 +:1083500004ADD3F158063C68E23F8B80DD55105EDA +:10836000C61FF3BF447527430FE430791CCAF68F4C +:108370002519EC66FEFAD052E33E2EE8207FF5EB9D +:10838000D91F0E3669541FB4F21E5A47C6F390DE49 +:10839000BFD5FEDC62AE4C55E5513AC72EEEAF7547 +:1083A000B6462E90DE30EA6FAC024FD652C49385AB +:1083B000EA7EB65CA0385A6ED97EA191D5FF0459E9 +:1083C0009ECD25F004A1BE71FAFD050BE2A557DC98 +:1083D00057270C3F91AF176FA2FB1CD16ED4A9E5B4 +:1083E000C0347BAAA0323CA6E3D3F82E74169F3289 +:1083F000ABCBB14DF0BA1BB95D01FA4E251E6A66D2 +:108400007539F176BBDA91CFEA74587B8BE250E98B +:10841000FEBB3D522CEEB79A37F0F99A3F43CF405E +:10842000446F8BAC9BD51F9F8BE81D66788E1E100A +:10843000F502067C529976503E707FD5906ACE63E5 +:1084400018F67AC60E53BD00E2EF3835A15C7D66A2 +:108450001424FAAEC237A0B5D3F711CBC7B85C1657 +:10846000C7B9FCF94EF3E7B108AF577822C2FD0651 +:1084700003F60F6B12B996E563BC9F31CE7F9ACF9E +:10848000732C6265FD7E1291C45311E39C4C5E1205 +:1084900087B9BCB4F9BABD74EFF5CC5BFC5E8C292E +:1084A00090F5BC649EE39FE7398DEFA5FD9AF22E0F +:1084B000F9D14F1AF222BEF7AC1850431A3E030905 +:1084C000B59DEEC7B44ED0AA81CED7CCBEF7D5129B +:1084D0009C9F96774242A7BCAD559DF8638AB7C56D +:1084E000BDD9CAF822967FFD49CCDD0CECFB697141 +:1084F0002F26EECD960FA4E64FFD69F9525FDA3DC7 +:108500005AD9956F87882EE9FEFD72E4107A3F1ED6 +:1085100049FD8ED238C77C7ADAF0F32B0680FD6EE7 +:1085200082D623257C94878BC7FBE8FB12DF698901 +:108530007D6FFE4C6794D7B3EEC96CAF9E16784B37 +:108540008ADFD97851D4D94F88DFD9F889A8B3FF09 +:10855000B1A8B37F45D4D99F1675F6065F3E2EF8B5 +:10856000E85AF1729925B68DE80D471460DF8B0546 +:10857000B85E37E2DD1F9C2F96481FBD503559B8B5 +:108580002DC3FDB0A1E79F7E79E138F8D435E2BC78 +:108590007223CE8B770D2711FF2F9C6F9752E3DE4E +:1085A000E86759DCFB168F7B5F1071EFD00BFC770F +:1085B000354E8D3B597DD9F24A1874D2394E617CC3 +:1085C00067F2A7A4062EDFCB1269F1EFCBDC0E5CBD +:1085D0005E0B83A447D13F941AB85F596435F9956F +:1085E00046BCFAE9CFF7678DE63816029C0FE6CB5A +:1085F000A3A4FB2F867E486FBF765E24C1F2224F74 +:1086000089BCCF53A71E76ED647CC8E95DDC20A54C +:10861000E8A3B974E6EB3FA904A7624887A7CE593F +:1086200099FFF6D44C1EE911C6474F0D944ACC5E13 +:10863000A1BC501C70AA35CAFCCDDE4D7DAE6D08C4 +:10864000DFD9C0F310DF3FD5CEF26997131AF337A5 +:10865000CB5BB6B33C2C7D2143FE6CFAFAE522DFFE +:10866000048985F34A950D9F2E3E8F8AEF6F8C7C8F +:1086700041B9912F48A4E50B4E5D5FBE60F3A7DCC6 +:10868000CFFCF4EC63F4FCBEC0BF4147FCBB22AF9F +:108690009F3FCF45D76844275B501BE2F52C6D22E6 +:1086A000EF25E273A1971429735EEAFE068BB0935F +:1086B00045DCDED259645A2278314EEB446DEC77BA +:1086C000362074314EF8C3DEEC7B99F4F8862C3AF0 +:1086D000D58D28C2DE5B21C6E348E23339537DEFF6 +:1086E0007C7E80E14FF1B80AA08AC5293801DB57AA +:1086F00017DD4399FC6BE3FB939E6FC5A46D263990 +:10870000FC8E385757ABC342FDFDC90740A3DFFBC2 +:10871000C8D7248A578BC538AB06AC7E6BC85BCCF8 +:10872000F079E7953F71D17796C6787CCFEFC57B1E +:10873000AEEFBB18A35FD76189E7197A6C09CA2B22 +:108740007429514726BFFA89062DC5EF48FFCE038D +:10875000895E487E4B8FCFBF601DA1D5F1DECD8AEB +:10876000297FD0E58C15529DDC496BEAF7A133FADD +:10877000A581D7BB0D5932B71B7C647CBFF6B8F11D +:108780009D9B57D7DAF05CF6C992D55437A7E4B56C +:10879000A8A4179E6D48BDA799737F56945A279930 +:1087A000D710FD21E9E58FDC2F9E454E59A8DEF656 +:1087B000470D8C3F53EBA8B364F1DD4109B0FA7269 +:1087C000479A7F70AD7AEABF69B0887C435AFCAEA5 +:1087D0000BBD3487BF53E5E338F115DD4B7C6B1AD5 +:1087E000283EF424FF9DE5693D7B80F19726EE4706 +:1087F000357714E877CBF6C791BF7C73F19BA892CD +:10880000187FDD79C5E322BF623F7DC7B3803E316B +:10881000F82C11177C267EBF693EFE7AF21AFC65A1 +:10882000FC1E076E6DE27EFCB72FF9369393EC7851 +:1088300042A7BA2A5FA7CAF47A4FB6BF5836ED7F6F +:10884000B71EFA67A29F4F51D9EF0DF834F1BB5F05 +:10885000A409B0FF60953A683EEFFBC21E0D762E6C +:10886000FC5D426F6B7492E2E7BE567D32531C9DF5 +:1088700025E2DEFE9A1F03E5D99EA8F931FB1D8F84 +:10888000BD2BFCC564A7DC9B53F9707CC58B5EAA2D +:10889000F77A7CDD052FE179EFF8CB8C4E33F38945 +:1088A000737AAAE24CAFDE54C9F5A85AF3817797E0 +:1088B0007BEE7C33F44BE38F0F36EAEECDEB28DF13 +:1088C000A6BE4EFBF1744A40F1E660DC1261F13E57 +:1088D000FD9080C9CE4FA7D967C31EFF1706BC0DF8 +:1088E00008A0500000000000000000000000000090 +:1088F0001F8B080000000000000BFB51CFC0F003ED +:1089000009CFE240E51F9045E54F9246E533A2F1DD +:1089100035D0F86B2450F95A68E6A5A3A927156746 +:10892000B132309400711D2BAA782303849684D22F +:10893000DC405A1E498D103376F33C4D20F43B63E6 +:1089400006060520DB0B88DBB58176E83230DC02D9 +:10895000D2D3B429732F3AEED6A4AE79A398346C4F +:10896000658ECA0F7460606875646038ED04E11B41 +:1089700022C93F068A053940D8EA560C0C0940BE88 +:10898000863976733580F28940F92F4EF8ED2FF74E +:1089900040E57F7747E52B85A0F257A1C9CF4E422E +:1089A000E54BA5A2F293D32034002B39A306E803AC +:1089B00000000000000000001F8B08000000000005 +:1089C000000BED7D7B7C54D5B5F03EAF9949323339 +:1089D000390943984012CE2401620938910801F107 +:1089E000E74988087E8823A0C6D66B878788083A1F +:1089F0002A6DA317CD0949308487494B6DB44A07C6 +:108A0000044BAD6DA3B5D6F6D6DE4128EA2DB55898 +:108A1000AD55AF6D870402581F11EBE37E173FBEC3 +:108A2000B5D63E2739E72401ECE3F3FBE3C61F9EEE +:108A3000ECB31F67EDB5D77BAFBDE30D084CBB882A +:108A4000B153F8034F3D795B1D0B3196C1C4681BD0 +:108A50003C7DBEE8F38B1963F7C03F369DB1F5F856 +:108A6000CC877FE15C2AB72A1A632319930AC4438F +:108A7000DE2063B23FC1E2506DD44453AC129E532A +:108A800059B409CA921857D9F98CF9D52E5DC0315D +:108A9000D4248B05E0BD3F6EBC48DF637D520E568B +:108AA000309DE531E6C5DF6068598DEB384EA60E86 +:108AB0006D2B1853425D2C5E0E4FF6A0DA3B9131C0 +:108AC00011863C3582B16015B48771320B585282E1 +:108AD0000F7853FF9592A09FB7944533341C2CA177 +:108AE00063BDA780A98F46E07D016FEF2D633BB288 +:108AF000A0BD474EA70468CFCA5864173CB2B11E48 +:108B0000CA19A5EAC322B4F7F8982057124CD15DD0 +:108B1000309E6AF6F769BC3EB38C9737E5B364B90B +:108B200080FDA0AE12CB077F80651FF6B195F14B9B +:108B300038DE662133DA16C1F7A9B0DF3FB00E9BED +:108B400022425D1794D9C9BDE14501DBFB4F5F0EA1 +:108B50003395B1730A0B8C5A58874D15E3B3111F27 +:108B60009B945458B5F5B79EEB1B12E5F2B8C1EFD4 +:108B7000FBEB45B682BE231F0C2F08201E53AF7996 +:108B80002B098F9A14198CC7968AAFF6E371C23FEE +:108B9000118F1B118F91013C6E44BC4506F0689506 +:108BA000AD796CCCEF72E06F23E2AF1CF1F7E3F02C +:108BB000A249B6F793F687E3D06E23E231CAD86DA7 +:108BC0000CF03883B188DCE58B0586C793A75ED2AD +:108BD0000E8FB0957DF1E78B01CEC02B1233E033C1 +:108BE00081F6977429847C01F3A2E58D33FBBA05E5 +:108BF00081525330B7F1F03C0570AB333359CA475B +:108C00000DD92986E37B687CE093AF209F04AA52AC +:108C10002909DE67FABA980C78CD9EA909F361FCA0 +:108C20007CC3C927234C3E91FC5A35E27924F209D2 +:108C3000D4E7A9896A24B39FDC106F40FE0C572546 +:108C40000519DA6D99FE11C3F907907FB2887F4A42 +:108C5000917F22755FFB4E1AC6FFD090591B8CD3B3 +:108C60007861E2BB58960DAFBA2E84FC9CF84E1A80 +:108C7000F9D9E3539B006FDFCA0AD2BAD6BF1948AD +:108C80007AE1439B1A184B4D60ACADC1C752C0BCD2 +:108C9000AD0D2A95D73784E9093336BE02ED3F9EE4 +:108CA0002126DBA0BD1C623AAE4FFFB3943F5F6745 +:108CB0005009F3DFC93249AEEC33CB402EBE18ACBD +:108CC000E316FF826C563EFC3A05A21CCF165EB33B +:108CD000CA9C78CED0721D656F78B4A33D630584BD +:108CE000172AC302C8B2CEA2089F0CF001DEA4EC82 +:108CF00079E1E5B6EF7F9349049F24552762F0BEE2 +:108D000059604477567DBE20D23C260A3E6A1762DF +:108D10007D7B4F013E153FE001E8C01F5860A490E5 +:108D20001F049618A722EDCB6FA72DF88AA15E49E4 +:108D3000A9B9E59FDFFCAD795D74F222DF021B1F4C +:108D4000FD17AE0BCC2B3320C69280974C054809FB +:108D5000E546A03869443E0F382BFA108FF2084FD1 +:108D6000748736781D8E32BE0EDF643E7ACAB80E26 +:108D70009503EBD0E6E7EB00BC3CE43AFC04852E1F +:108D8000AC5F9B9CF4E59AF8407911C0F9433980B7 +:108D9000F3477980F3173E87F937D5D4C5FC38AF50 +:108DA00028E14151C79FD7C6F07D71570AE06A1A82 +:108DB00039FEBC750CE7CFD7ADA95124FD62C1E3E4 +:108DC0009EAF1B7F0B04DE4F1738FEACF96FF48BA0 +:108DD0007370FE1B653EFF8DFECF67FE163C9B1039 +:108DE0001E98D72699D3E326FFE7448F597ADD50A2 +:108DF0007C63E17FB389B7CD26DE367FCE78CB3278 +:108E0000E938CBA4E3ACCF898E2D785A4DFCB49AC7 +:108E1000F869FD9CF01341250A76D67F0AB1150248 +:108E2000AC5B51BDF64501ED1DE64F48D181EF2AFF +:108E30001E16277BA37911B5F716680FAC8076450F +:108E4000A17085A4A17DA1655E61B307185B47F29F +:108E5000E43B0D49D6A3A05D9B20BB76ECDA18E974 +:108E6000E7A2FA3E01CBDE82B48065AB5E31ED1045 +:108E7000D61C22FBBBA515F081F53E4D44FBAFB8D7 +:108E80003DB20EED25C0996987C4C80E196BDA1F73 +:108E9000DF37ED0FC692F47D6FBD133F8A69877C83 +:108EA0004D6209940F1FDFAD7B16C07797A5E67A58 +:108EB0008A818EBF23707DDCDDF009EB1987F560B8 +:108EC0003F62FDA66ACF2CDBBAEC103CD46E19E3EE +:108ED0007A1D3498E78A49F6F93752FD4527B3538E +:108EE000B8BEDDCF4B2487875BD7A5E11F4F96A780 +:108EF0000C947B5A25A20F2647E7239F2FD924895C +:108F000043F5B7E63930CE5334CEC777E91E949790 +:108F1000DD0D3E01F18FF3D3004FCB5AAB3DBAFFCD +:108F2000CC70B7235D8CC4F5E3FD3FBE2BC1703C14 +:108F30006FEA0E86E378D726741DFBFB692DD8896E +:108F4000026D3BDA3D179D6CF0A19D6D8D638D3BED +:108F500016E767B32FBF53C0E51893FBE6927DBDBC +:108F60005614B1FF99E63716E7376200AF1BCF8082 +:108F7000D7D686AEC9A7F30F7C93B87EF72906D95A +:108F80002167FA7E8606E3D9E8E96F85634339E70E +:108F9000FF0D72BBEF6FF9AE5224C4917ED1F7245E +:108FA0007F154C4919EDD9D2E8C308C711933E612A +:108FB00099F546E267966853D19F8D1F11CE47BF42 +:108FC000D3207E43331BE5919257467E16F373BF41 +:108FD000D70DCF36979F65C1B74D61A61FB23089B7 +:108FE0007E952296DDDA161DF0A3C1AF32A4C9B674 +:108FF00079179A7E1FE374E355015E58F70DE36617 +:109000008797C23827116ED4C3F3DA59CC4697003C +:10901000F749944F6EB8EF29BC4F5F07DF3D01F36E +:10902000437965F9ED6EF8337C5F2D47BE200B0860 +:10903000ED3A53EE6595037CE7825CE53285751465 +:1090400072BFCC1FE57E594721F7C3A01DF96556B5 +:10905000D91AB7A350CDF7DBD6AFE5E2BCD7110FD5 +:1090600019E05F92FF68F14B01C8377866C807B90D +:10907000FF5809FEA38670A552286FC157237FB2FF +:10908000E3D31F53D998C4EB595925C1698D5F2883 +:109090008A0EBAB0E603D3277C786B3D84EFF78461 +:1090A000B82CA2FC2B5B7F500AE2F7DB49EEA22F23 +:1090B00033147EBE3BB02E0E3A8271DFB891D66972 +:1090C000EA943680272AF2F51944DF4A3C2A0EB189 +:1090D0003EDF7D88FBEFAC20E49887F5F4FA6E2F35 +:1090E00097470CA6F77B0A6717F371B81F38CA2495 +:1090F000992C13FE6F1554BDBE18E0F189FA0B8D43 +:10910000F02E52AB89E8FFBD37265E2DDAC6197501 +:109110002D13719C7B904E617E174BD7667443F97B +:109120009B8B8AB3974079B92838BEDB4FA7E0EF15 +:1091300021BD7F0FFC3D7C7EFCC709348FE1F8FB2D +:10914000FE06E6E08FFB4B65E2EFFB977D3D5603A5 +:10915000536F09959E87FE2ED039C3EFD689DC4E1A +:1091600002BCD521BCFA8A6A2670BA89A25D2B336B +:109170004317227CCEB26DFEAA9E10C65592D8ED42 +:109180004B028DE6B01443BF3C0FF4618ACF7F31B0 +:10919000AE4371943D8BA1AB485DD400F1DD3F7FC0 +:1091A000D09773C741FBFB5E18771EAEA705EFD3C0 +:1091B000265DB172BE4EA077C243C50B2C7ADB068A +:1091C000F8291F87E52E01F9749359B6DA158BF14A +:1091D000DB705E63EA330DA4BF31AB1222D2DF3DF8 +:1091E000A6DD2D30DFBE7CA233753BA7B3F4F7BEFE +:1091F0004B7496578170DDE5A2731B9DDD35149D80 +:1092000079A3711DF1DB27C71BF1BB194234879588 +:10921000A09D9124BA6F35BF0BE0FF0EE9A910E9BC +:10922000481B9043E1326D07CAA1474C7AC80D270D +:10923000F60888BFAA57F72C83FAF571BF8EF2B3F0 +:10924000A830DD11417EFDBDC4903F0B4A9BF7D491 +:109250006259F7F56587A1DF9C5435AEB71FCA2860 +:109260008F80ED89FED637F0F8C1A86B5364F70400 +:10927000120981150FCCCBE3898751BF168697CF92 +:1092800063802F61F46BD52847D6B7B0A817BE13FB +:109290008E278DC5306E61955795108E885AE343A1 +:1092A000B856B368234EC5E0F561DD17C3EFE6AEEF +:1092B00089331C9FC971B6D0B68E99E1F86A1C3FFC +:1092C0002DC71F413C6696C5093F19E376D2F33E90 +:1092D00025C55480CF3F33A9A37DBF61DC72B6D8CA +:1092E00046F73F35D7C513657AB27C803EBF2571FE +:1092F0007C6E8DDD9671831FDBF1F886C296E938AE +:109300009EC4E206CA353FD229233A7D0ABFAF5D2B +:10931000ABAD233C47A3186940BE1C85F8B94F8903 +:10932000E7A3BD77DF384F1DD909067B954D05783A +:1093300045E7BA6584F59DB86E37890AC19539EF5E +:10934000BED44388870BBCAA0CEB9199EE483D0331 +:10935000E5FD80170665DF23EDA93F621CA92E8B72 +:10936000698027CFEEA4214239A4B1A88E6316B735 +:10937000CF1D8FFDAF053E84EFE4B283BA12217C8E +:109380001D4078FDB1B88E20646A5D02C6F3EE9789 +:10939000137FBE0BFADFFFBC1435988D7F18F08F5A +:1093A0004D7F8D5E06F2C161879B72DBD0F796C25E +:1093B000BC2E63D6CF41B9088698179618EA515645 +:1093C000A91C4E5BFD8A09DB036540D83B77ECDDC9 +:1093D000F710FAF5D3BDEA2E7570FD3C2C5B7603D1 +:1093E000C0FB5F267D3FFB933F8CC7F5F82D5017E0 +:1093F000EA8403C2C15E8A67574BDAAE0887CF376B +:1094000015FB3364564633C132E010F9EAB7BAA40B +:1094100023DD1FAC149258EF65879A2FC0F180EEC0 +:10942000914F0ECEEC69BE00C6BB4C607D185A98B9 +:109430007792C955E70DE063DE93DE43A8A7E6E126 +:10944000FC6C76CDFC5FD8E60BFF72902810DE3FF7 +:109450008EBAECDB383ECB8E215FB0DA35EC291CBE +:10946000BF8ADB5DAB837DF32AA13E365342CF83B7 +:10947000FDB6EAE5100AC96A5D20FB6CFE4C21E9E5 +:109480001D625EF05ED1609DE6E9EF13FC2842BCF0 +:109490005520EF0FF1F91C10595F23C03FFFE90F72 +:1094A000683EC075C4E76EB934681E339DE5FEF5AD +:1094B000AEE5717199F1B8B822C7C312BC8F3C7682 +:1094C00089310BEDE814EB6B23FB8CF3E5807EE731 +:1094D0007A905C37A0CBEA4F64BE1F1065146F0C06 +:1094E000B0343219CBC65995A05ED0046228161547 +:1094F00062648FCFA4FD845006A78BBF7FBC6B69CD +:109500003C41EF60A7B2CE623C394D74F30F1BEFC4 +:109510000CF0650CEC9F8430FEBB01F4381AC15E80 +:10952000DC8901FC7F58CE886E9A1A547A7F4F43AB +:10953000986FCAC83FD1459453518F86FCE7579F17 +:10954000A07D1EF5975E86EB0E1283FC4C9401A75E +:109550004AD0FF668744A0E3ACA8C7E167FA0A3C9B +:10956000A7F5BB5B468E1F753A7B022924E21B6878 +:109570003F5CBB7FF6B309F456441928CB7E1042FA +:10958000BEE1E725C5E25CEF805F6E977FB2C8E37E +:10959000074DFE253ED2DB274F9D92A632BE640CBE +:1095A000E3FBB1AAA1F071376ED2D8EC00455D7F24 +:1095B000AB00FA4B092FD3EDFC65E040A86FC2ABBE +:1095C000F4F469F02EC9B1BAC5DCFEA6FD998EACE3 +:1095D000EBD8A1728CF75F47EBBC7E645E84CB094D +:1095E0001EBF603E3FC90B8B0EF78CBC2A9C86F6D3 +:1095F0002DF9578551BEB428B130EAC9E7473EA5D9 +:10960000E3B8EB4F66832D02CF7031D98BEB4F96C9 +:109610008C4A0C31AF2CA023C463266366BCC28382 +:109620007B4AFD708275D31A81F1B240AFB4119CB0 +:10963000BFD4719FCAA3C9091CDFE38F91BD30A7B6 +:10964000B24B47BDEF89FBE35E75F038D677E04754 +:109650003885721CDB587C2538EA8784C35DF69414 +:109660008AC43FE023249B8668AFF88246D664D440 +:10967000FBFDEF55FC6EE98149D9480FD85EF3E157 +:10968000A7051DF96780DE934EBF461507C62D4618 +:109690006E4876A27DEC65BE445B74303ED77B7825 +:1096A0009C86C97A1DC2D72CE49E87FB3CC3D1B5EA +:1096B0001C6E7DDFEE97BA9F5ED593423A936B1393 +:1096C0006457013CD14B48446C3A284CA6E7FBE474 +:1096D00057A9F25B763A3C280542446FD3D834C48C +:1096E0004793BFF8B47E430BF0179B307CBDE289F3 +:1096F000C663A40712AFA1BE96D9649A975CB0FF67 +:10970000B508C07148E27E841CE27E1F53E5B7EDC8 +:10971000F6C2BF09FA2109F0AA64F271DCE31F1056 +:109720006A8E60FD3A2976149F6DE74C35F58E936D +:109730006FD435512EF4981E14F238DDF29F640A6E +:10974000ED2705ED6368A254EE207F441D2D71794D +:10975000592677233C3AFC87F048FAB13719C039CB +:109760006605BCB7E14DD233498E2A8CB7B7E851B4 +:10977000423C4FC6A7F3FDA76E3C373C4DF13A6B18 +:109780005E12E3FB5983E4995023C92307CFAF3519 +:10979000DCDE4A7E3903FD0EFADF67FA999DE6FAB0 +:1097A0003CD05046FAE1C186283DD73754D1B3BDED +:1097B00041A7FAAD0D73E8B9A921464FA467A4F7F4 +:1097C000CE7CE37E01ED38F6859A03D0A53360BCEC +:1097D0008EFBB2CC98C0CBE89C8D067BBEB9A4C6EC +:1097E00000783B737879827C4E8D0174D339CEB882 +:1097F00046A4FEB93507009F9D85BC3E2A4FE4ED87 +:1098000027F1F24C39CACB19A69FA32D1AD2CF1F2C +:10981000E0372EDF7E86C15B94731AB75BA5D22535 +:10982000406330CE48D35F34C74107E78A21FD410A +:109830003ECE3532DF3FF2E02BB4635499F46B67D0 +:10984000E4B3C193292775C20FBBA0E6952ADC1F9C +:10985000E6F3BBBE792AE18344D20CC66E69AE5AE8 +:1098600067CE9F8F0FFAE64A9BBE592C737FA0B339 +:10987000C2398F337D7F294E1EE8E3B814BF14E947 +:1098800024904861589EB56A4F707F531B3A8E31C1 +:10989000308E41FD6F76E175E4229DFA4F32F1B4CE +:1098A000295AE3433EBB1ACB2307CA8867A41B0F80 +:1098B0000AE5CA013C0EFB3DD526BF8B07D3359385 +:1098C00063E41F2F94F8772C78AA5DE54C3FE79767 +:1098D000B3C5D3344975CCAFC455CE7795C38F8902 +:1098E000AC2A177E8DDBE43A1B0CEF24175CDEB547 +:1098F000B7B228FCBAE41589ECF77AA6ED1F857C8F +:109900000A0E3DC5C700DF2AE8E72F9BD2486C7DD1 +:10991000FF628A9733769B17786989AC79D08FFC80 +:1099200072ABD7619F59EBB4273D62DD1218FFCDB2 +:10993000B512EDF3BFB9766F00F75FAEBB636F6032 +:109940001AC6ED5F91A288C66E93AE8D7A2189FE0C +:1099500051776B4F80AF975684F84D9BFEFD1B6689 +:109960007EC095667C91C95A11C6C3DF5092FFC272 +:10997000F97E51CD2BC0C76F646845586E3496D4BC +:1099800034CFC07136ADBFC4368FC56B051DFD5ECB +:109990003DA6CE0E635C488B4E6933EB100EB9804A +:1099A000C74DB7C93CCEDBAAE8DB905EC3A5B16C5E +:1099B000BBDDE57EFED984D32AD7CBF1EF623FF839 +:1099C0009E07E7BDB8F97D05E7B5DFA45326270B51 +:1099D000717EDD66FC245CCABFFFE18A09DBEDF124 +:1099E000FAFDB2338ED68DDFF10E94C19A598FF302 +:1099F00060AB8428858D7CC9C2EB6C70FE4A0E5228 +:109A00007FE356FE1D235F70ECCFFE9B39FE7E99EF +:109A1000C71FFE8679EE97CF1F6A9ECCF4AFD201A6 +:109A2000CE77295AF73FC3BA23BE5F38F49C92C65B +:109A3000755E34D2C1178BC1E0B4DBF75F5A91E594 +:109A4000A0AF6BD72E3CADDE67F5367A2C1EA0C7D3 +:109A50006A94BE80A7DC45DC3F61AE3C98108B0B5E +:109A600018171CC58C4654FDF93379DE8B653F8D84 +:109A7000A9D55E87DF5853E0AA7C337EAAC9405738 +:109A800005C41CF83FD9485BF620AC4F4119D333CD +:109A900026633DBCB7E9D7F02AD9E187E75EEB2C16 +:109AA000FB2B65877FEBB1C71D2203F3B1E61BB229 +:109AB000F8413734A4A7B640322C0089B56FB9738A +:109AC000DD5CC06B9BB58F10DBCADBA519CFAB8A01 +:109AD0005CB573E87DAF66BEBF973E48F1A54065B3 +:109AE0009CEF27801A1E81795645608B913D08585E +:109AF000F6635C8EFBD3010C8A423FF1312D83E289 +:109B00009673CECBC17AAF1167ADD03F30474C26AC +:109B1000235C8F61FCDF5F2A275318DF80F1510E31 +:109B20003CFBC7E77C699B5D61F567B110D793B2D9 +:109B3000111E8A2E2D7CE8EDD5C6924ACA07243B19 +:109B4000161182F9475EB0EB316E2297C99467D83F +:109B5000AAC4472B43C439ADEF9C49FF44AA3C84B7 +:109B6000BF963705A2A3ECA2BE38C52D5FE5714BA9 +:109B7000A326FA5A1CE33D933D94BF18ACEAD3D018 +:109B8000EF2D7A334B45BA6272621AC60D5B5C7C6C +:109B9000E47E2A9E581CF797EADFF44631EEB24C79 +:109BA000885720DC425EFD04F493B267F2FDDEE0EC +:109BB0004496C0F5ADBBA080BD17C2BC94F8232865 +:109BC0006FC3A198D18BF259E179464AEA1ADA2F8C +:109BD00051FC511DF7291556A1C768FF374ACF859B +:109BE0000ACF73F992C2E5C097156EFF027A52C888 +:109BF00027963FF9DE98780DC251ACAB35C81F925D +:109C0000DFBD0FE0E7FA35A4EDF0DAE86B81E2940E +:109C100063F7C0FCD194F8245D42FCAC14703B5B4C +:109C200029305276FF8185FA26CA367E6E2DFE22B5 +:109C3000B7A3435DE71EB6D9E31B3B9E0A73BDC1C4 +:109C4000DE46783D26BC1B272DF70D252F5E95E3BC +:109C50002B141B1F79C2511AB74A8CFD0BD14769CF +:109C600082ECCC850AD79B1B037C7C05108271910A +:109C7000E005F3524DB8FF60EE8FE9753A433FC2FD +:109C8000DA67B0E80AE86DA162F7B3439CEEDC79CD +:109C900074FD7972EB64D654897EF3DD9447576F77 +:109CA00078552FD257284179761B649F8AF4FC356A +:109CB000A93D868B62E5D17E2C1A06C37D31A6EBC9 +:109CC0004C3B8BF1C2FFD8F13ECE284A62FC1BD040 +:109CD000318DFBA38973F1B9A1808FEBF32548CEB9 +:109CE0000AB2EEC84788C871B2CB145F8CFC720907 +:109CF000F32291AEDA2B286E30908F00B8427F2885 +:109D0000AC13DF658292C77EBE5267DE865C90E947 +:109D10002887EBE234CE87B076E8EF5B790AD6FA93 +:109D2000C87E96CA20B8795C095914FDE70DA5B71D +:109D3000B1AE10C193944E6327CA8CC7A730BDE162 +:109D400014E1EB4BA7D59FEEEF841781BE3D4DFE8E +:109D5000A8BB3DF3CB5AAF8D1F86EF27B35E5BFCEC +:109D6000E029F487909F4F9EA278F362ACC0F1CCBB +:109D700078BA65577C2847298FFB43BF87A181DECE +:109D800094A3927D61B4081AAEC3E24D5764239D3B +:109D90002F7E450A89E63E1AB66F0ACC217DF27302 +:109DA00045E1DF91D332CE6B71556436CA1BE9EEC3 +:109DB00028C50F58D023A09D575D5511A7F8B1BFF6 +:109DC0004E4139F1DC6353E8BB2BFDB365945FBFB3 +:109DD00052B89FF1CEA38F4F65005FD30F022C4581 +:109DE0007A274976C6CA2725DA27B9E94701CAF38F +:109DF0005EF9C4EA87E7C138C24F03048FF4C40D8B +:109E00008FF0785313C1B3F2A985BF3510CEDF4B65 +:109E1000940BDCD4C8F5E26A2FD7477D01CFC33B52 +:109E20006CEBECB6B3966E023B0BE1DB1DA940591F +:109E300068BD5F29B32F639C6A313C170C2167FE14 +:109E400062CAD5B7039E3A8457D8BDE73A9A67D716 +:109E5000D50ACE5368CEF11C01FCA44DBC413B9AFF +:109E60008FF13D21390EEADFFE9EC0E7D735697BD1 +:109E70004604BFBFDDB3C4960702F07F19E5F7D2F1 +:109E8000DD91F5A3A1DDD2D6484484F9CDFAD10FF6 +:109E90008269EEF7505CE166FC15DEDFB2BB67F667 +:109EA0007FE23A84791CE1A61F7DBA7E06946F9A00 +:109EB000E5EB9B17C5FE4EFBEBA61F1FF5FC1BC079 +:109EC000FB56DC9FC880FA5B9E561CF185B70E1EC0 +:109ED000F1207C6F010A55F00B2A0F38E30F4C3A42 +:109EE00049E37FA8FB5218BF70F7876E1EA4BF5BC3 +:109EF000BA3650DCE79627DF7903E5C82DAEB8C443 +:109F00005BF84B3EEAC39726EFB3C137C2E38C57E9 +:109F1000AC9262D9295CF7DD2386D4E71F371C9CFD +:109F2000BC0F79C1D4E7EF3EFDC13603BEFFF61387 +:109F30007FD966005E9FFFF4836DFF8AF87F26431A +:109F4000457ABFE5D123DBEE84F23B4F7B45A49BF2 +:109F5000958F1EFF13D67FF4B309B9E88A4EF270CD +:109F60003DF96EE4E33CD4AF6B9EB97814D2E79A26 +:109F70009FCC1AC586889358CF7781BE925E3BBF2F +:109F80002679BEF2D302DF94FE85F974AD1F3BD073 +:109F9000E74139F891C0FADA00DF37273EF6A07DB5 +:109FA000B15F677D889FBD4FF6ECBF13CAEFC07AE3 +:109FB0007987582F98D91891E2EDA931B86F77F3C6 +:109FC000930B2FBFB0129F4A1487BF85F5AD47BFD3 +:109FD000CEDDEF96577A689D5591F5155C30443D7E +:109FE000E378BFC58C2BDD9238FA06C6A3DCEBF80C +:109FF0000EFE327DF03ACE73ADE347DFBB263B85E4 +:10A00000954F8E18322E60ADE3EA9F5C991D3F0399 +:10A010009E536781E715665C2ADFA35FEB391FE972 +:10A02000E1FB8F3C00787CF7756F741E20E6DD1F26 +:10A030007C58044A9B1D53FAAE433CF43DE35577EC +:10A04000409F95CFFCC183F95AEFFEE4258F467AF5 +:10A050008F050590AFEFB2FE9FDFE1FEEACD022F44 +:10A06000ACD6FA66BF01E3AE86210C5C9F9DEF780B +:10A07000BE563910D7BB3979C51C0DF5517224CDA8 +:10A08000FBE624E78B9B937B16617CD48DF7AD1E9A +:10A0900033BFC0B6AE4215AEE7A1D9487FC3ADA766 +:10A0A000357F15E73F0DE180F50D0DBFBEFD7C3A14 +:10A0B000B0BE4548673F14B2356126CC57E9F3A0DE +:10A0C000FC311E97D45DD1C1EBCEA46BB31793BD09 +:10A0D000BD6EC8FC03373D6C417A9838400FD89F5D +:10A0E000EC3B132F67E2EB33CFE7B3E1EB6E8F4628 +:10A0F000E3BAF1D678B197E4F38B112FC5395E52EC +:10A10000B46FDD8EF4F182C2309F7C7EF151591B19 +:10A11000C21EF82DD0A566B3FF6355EF378FA8C4D4 +:10A120007DD608E57DBAE3F6B8FFAAD9E3BAEA5EC0 +:10A13000FDF094E1E95E0ACEA1FC4F16937B711EFF +:10A14000A0138453E2007ED03E40FFF506FC554349 +:10A15000FBC2CF6AE1FBF166EED72C65BA07ED03CF +:10A1600074E315787F7DA740FB832B583BBD5FC907 +:10A17000BAE8B98A1DA4A7B740F3707FAA56ED25A7 +:10A180007B659584FB8D676B9F5870E5CE5D44F9C8 +:10A190000C27F05C17D8A57BF3BB1EA4F8B12827C9 +:10A1A000BC617B5E9E26E27EEF8B2F28042FE6C9E2 +:10A1B000303A37C2F71D5BCD7DC7974C3CB3DD8F7E +:10A1C0003EFA689E69F28868B76BBF42BD6F2CE3A8 +:10A1D000760DC697B09DB0AC83E2127B85F68B43BB +:10A1E0001897BA5E388FC7C3922D79502ED9A452D2 +:10A1F0007ECFAF05EEEF94ACAA1097D8E4CF359B95 +:10A20000DA15B477AE5956311AF5CAC39F4A8E781B +:10A210008BF51CE3E5FE50E3E6AB28DF7CFB719198 +:10A22000EFA3FBD5076E87EF68BA97A11FB1AFDA2E +:10A230005BB806CA7F884B94AFF28763B7511C6D39 +:10A240004FCB577F733EBC9FF10A7F3F1C9E779890 +:10A250007EE64E337EF68879BE66B779BEE6D106D5 +:10A260008D9E8F359451FD0F1BA254EE6AA8A2F269 +:10A27000130D3A959F6C9843E5A71A62547EBAA1D4 +:10A280008E9EBF685841EF836DBE38DA37BF6C4889 +:10A29000D0FB194654447D986AA8A7FA6E4F2ECD7C +:10A2A000B76413A33CE312109359211BFF1B8CE2EC +:10A2B000723B94F435F6FD946E0FB79F8ABD5CCE69 +:10A2C000ED15A2EB42B86E73F9BA95ACA8A8C1F22D +:10A2D000176B231A92F7C0BA3CAED4949FFD7A1C38 +:10A2E00037E5E8825A8995D9F8EC4B2BA06C934B53 +:10A2F0002F56A70B503EBC8806FF68C6EE6D5DD991 +:10A3000084F1F347FAC027477A092BC95D50B5237A +:10A3100023DE760EC0B52D1F776EA05CA18FB6DB55 +:10A32000872BCDF5DF99C3EDD0697B25F29B93C7D1 +:10A33000C7EF5847BAE2FF9C3A05F45A84BF03D1ED +:10A340001E30DBB3323DD3EE2F24EF30F378905143 +:10A35000A1FFCFEF50891F92023FA7014FF29B8CC4 +:10A360000E7107E59F684226CAF19D50978DF0ADAA +:10A370001377E039879F9B784BAABA18B5C159C4A7 +:10A38000FAE35A12C9718D699EA9F89ED17EB4551F +:10A390000F9F4F9D32751CE62D513D4CA9A89DE99C +:10A3A000E85FD9C6217D5096B495E1DFC4DDB638AB +:10A3B00019FC9BD4E52C9FFBB4B35C917296A73C2F +:10A3C000EF2C9F7FD0599EF69AB3FC895734E3E176 +:10A3D000699E2761B057315F68AC290FC7A60F0986 +:10A3E0009822BA5FF7F5A19D04A811B15DD15A6713 +:10A3F0007C4E7BF338EDBBB9F383B437B368DF6DC4 +:10A400007ADADD7EF56A6CAFB9F2878AEB0FCE217E +:10A410003FB5526428672FF7A764DA6CDB1AFFFA9E +:10A420005CA0ABCBC2525400B80E3CF451F91AE810 +:10A4300053D40976BA2DEF7BF61DFC1CC6EC483AC6 +:10A4400003D7DBA745CD10483F9EC553D3865F3F5A +:10A450001D440AC2B1F953CE7FB973795EC8897AB7 +:10A460006D07C5AD4CFC4C10387E823E6EF75E36F3 +:10A470005371E0755E5871ACEB857D4EBC5FF4891D +:10A48000B36C83CFD4039FAD3C217D680FE669EDAB +:10A49000AFF2AAAC0AE51ACF47F9C3B53D7B303F0E +:10A4A000ED43336FAF8C75D464A27E35583409F018 +:10A4B0009FC30C11CBA5CD3C6FAE54CF72EE9F3C29 +:10A4C000C8D7D367EEAF0E5ADF66E7BA16BD398933 +:10A4D000CE9BBC8A42683AE1D511B72D6E053F7E0E +:10A4E0000A2F331BFE8B97A585A9B8EEB1CC76CA8F +:10A4F00083044EEA76E40DD8CAF0DDD7D6B6C7C9D4 +:10A500003F2CF531E4E7B19F48346EF1322340E34C +:10A51000C485A9A837EA521B94F140AF756BFB8440 +:10A52000F5B09E7571C198960DE37F2250FB3A43BA +:10A53000ABF140FBBA57A62431CF17DB9760FBFA8B +:10A54000B4D06493BF633FF198E39F3E4E51F489CA +:10A550004CEDAC32E6B1762B6796D72351798D1C42 +:10A560002CB7C123FEDD4468576430D2833F34C02A +:10A570009283FA735B92123EBB8EE922EAC16807AE +:10A58000A3F7179D1C3BC2C7D793E23C3F6E86766C +:10A59000503FE538AFD7DA5511F5806AE822C64F4B +:10A5A000A11DF5578DA48465ED989A89ED400E5351 +:10A5B0009E7812F4F13A92A3B99796A15CFF95D8D0 +:10A5C000857600C8539DF2C88F9BF2F4202379CC86 +:10A5D00092C98DB8FEC9FA2F30737F81E420C993E8 +:10A5E000121CF70301C70139AB7D3D8A4F91E4BED0 +:10A5F0004D2E8A243FD772FEF0B1D646B4D7FED195 +:10A6000072EF1A538FF6CB3DC6F937D32770FBF0A4 +:10A610000C72B09A39E5F83F5B2EAEC4DC31B40B56 +:10A62000152D87EC424364A8AF92C602EE0F98F155 +:10A630002C42F910F95CDB1A9C71F6B1CDDCCE70BE +:10A64000B76BF471FD7AE2F929AC0FE5463BA3B88C +:10A650001FE82F9283339A59528326D92761950098 +:10A660001F3B75813DC0E562B07A6ABFE86063EB6D +:10A670009DF1C864FB3AB108DA47F22586F9064530 +:10A68000E0279721B049EE1FF9E03F942FB9730FEF +:10A69000931C3B8179C8D02E76CCE63F917C9928DB +:10A6A0009AFE0C53A6E37C9DFED56639BD07F36F79 +:10A6B00037D7653183CB11A7FF65E2A95F2FE3B9D7 +:10A6C0002E1F5919A790EE3E6F39DEAF5F4C3C5AF2 +:10A6D000729CB1848879BB4598B7AB229E41DE87D6 +:10A6E000D05FF2AA49BCCF80257E733EF23DD8C12F +:10A6F00029F6D9E5F8393BD3A42734D413387E1290 +:10A70000F018C2FCFE2C86EB3048CEFF8F5C27B9D8 +:10A71000FE2B932FD927A7C84E2DB5E8AABD3F7FA2 +:10A72000BD16FD59EB1C427046EBD8BB01AFCD39CD +:10A73000FC5CE3189F15B7E0E76BACF15B95F8188C +:10A74000DF10FB73637CCCF40F4B4F7B9E0ACF7101 +:10A750003AF320927C3F13CF2FD9D631431BED68BB +:10A76000F7EA4C99F2870D96191D87F08E487CD533 +:10A77000EE875C9D29D1F7AFCEE4707F38AFF6DE6F +:10A780005AE8176C8A74A0DF7CC3AF253A3F1E3E9F +:10A7900097A5301ED7DD5AB21DE3E756FF36530E9C +:10A7A000A19F6A60BEEC27134178C3FBCADCA006F8 +:10A7B000DFE96EBE9D9F4F7A93EFE30FB71E1F2B0D +:10A7C0008617E3CD9B6B3257246D76FAD25CBECFF1 +:10A7D00097C8E1726CB2BF7D3E9299AC320DE15BDD +:10A7E0002C7379069F4E0B25B88F15F5A15EEA797B +:10A7F0007AD196897CB94CBF3DCE3E8BDFFE728DFF +:10A8000046F33FFA2ACC1FDEE506F4F5984F79822D +:10A8100005458CB72FC3038F68177D71E276FC7EE8 +:10A82000F3740F950F5F39713BFABB814E81ECD801 +:10A83000C34AFBFC19F87E6471B459C372F4C52A8B +:10A8400028FF3E584AFB9FC7657536C6DF41B6D123 +:10A850007E502BFAFB241F18C55F94AB26517C62F7 +:10A860007261CD2B483F7BA666923FD47B21CF4FB0 +:10A87000EFBDA34F663C6EAA1A15601F7A78F9687F +:10A8800090A93BA0BCD9D3B76F248CBF39E823F97A +:10A89000C958DFBE27A17EB99A4BE7058EF822265C +:10A8A000BDC2C4286EA40745B0375FBB348BE6B386 +:10A8B000B8937F67B175FE538E7BEAC0CF7A60EBA9 +:10A8C0000732D6BF853118F8CE5BCBFE4A6523949C +:10A8D000DD370EC6BB69DEFBFB30BE91BC120875CE +:10A8E0000CD8FD9D1DEB31EEB00B33B06742B9EED5 +:10A8F000A6FD682FEDC7C916003C9DEF37631C3DD0 +:10A90000BB4D6228AF2E9F73D37AACF735663311F7 +:10A91000DBCFD9BE1FFB673581A29FC9DB53798A84 +:10A920009FDACB6A1F952FABE4E5235B3FA0F2FED5 +:10A930002A5EFEDD1C5E9E77A19FE4DFA5AC9DFC38 +:10A9400090392C41CFB7AF7CE618700E7B0B3723C4 +:10A9500000CF37EEDCBE7E348E3FD943E7B096772A +:10A960003E1E5DE277C877CF299817F15E1E7753B8 +:10A9700031FEB251EC8A629ECEA7194CAF057C6EB7 +:10A9800014BA34CCA1F565B63537035F679BF5E3A0 +:10A9900033FBEBA99CDEFD5EF3BEE903E5A75A326B +:10A9A0005A7899913F7E22A3E062CC5FCB9ECE6223 +:10A9B000743F08E37A0A5E19645FC1EFEBA60EC02C +:10A9C0007145A6C7BCD781B783578F63BB57EB963A +:10A9D0006E463FAAB75552896ECFD183324E301E94 +:10A9E0000BA23CBA77CFF420C6F5B2374CA173C4A2 +:10A9F0006C97A0E27ECD8DE9F6D918075D69085DF8 +:10AA0000683F75CB8CF665FED25CAD19D06C72CE0A +:10AA100038FADEE2747CCB74C0DB0A83FB752B7CD6 +:10AA20007D07F19CC2E5DF96A2B8FFD92377CD4719 +:10AA3000BCF63E28698DD02FBD75E98BD3918F77F9 +:10AA40004A2A4EA3BB756910E5600FEB20BE315A50 +:10AA500025CABBA67D3D84A755DAB18BFBE394A73D +:10AA600042E7326172470A923AEEE7F5085A31DA64 +:10AA7000A1D539DC8FCBDCF4D3AF617CB93F1FAB00 +:10AA80009C257759FB7B53CDF38198F7DC2AE9E7C6 +:10AA9000803F5F9D61F62BFF6C76C08A341F7FF18B +:10AAA0004E21A9C1F88713EDB38300CFD2AD02FBCD +:10AAB000BA36B8FDD2E6ED0CE5C04DC0905A7470C0 +:10AAC0003DED85227FC1786817BE2D24B754A11CA7 +:10AAD0003F4736F3D85CF0C829C2CF8D31D5CC03BF +:10AAE0001A6487EC2FB59D8F70D767EDAC26FB837A +:10AAF00081FD218407D7BF3CEFC70CEDBD42B057A5 +:10AB0000907F003F0EFBA1D06D3FD4EBFD7E2ADA93 +:10AB100009D7373BCFB7F476CE227B64F635DC1EFF +:10AB200009B9FAF7BECDE30646A5C870BD43665C19 +:10AB3000A0179E188F3A10561E41FA657D29FF55C1 +:10AB400040AFB3AFB0E204BA234E102CE1FAAEC668 +:10AB500057B14F857E979646889F6BD52B6A73A019 +:10AB60003CA78097377F9AB82E56EE98B723AE80D1 +:10AB7000A841FB27C49C71855A93CE5E5E27913C09 +:10AB80003BDAA8683B4283ED4EE8713EE685776F7D +:10AB900018958BF6CE51A43B9C5F35CF0F74DBA587 +:10ABA00050A3605CF6860773282E3BB7CC597FC351 +:10ABB0008382827A6315E669007E2FD19CF5B97392 +:10ABC000E5967AD4579A4C791CAB74F7F89FCD8EE2 +:10ABD000A55FB9DF4AF4F5BC69C7E688C2B3483758 +:10ABE000451778E91EA4394C7816D77D29AC7B929D +:10ABF000F217F53FA0FD7B091F8ACD05798B747490 +:10AC00003DD0510AEAB7DCD9233C8278105902CFF3 +:10AC1000A35DBFC965E716280E3BF7E3431DB5B931 +:10AC200030FEB6056AB491D3B1C3EE9DA309CFA29D +:10AC3000BF9087762E8C17AA73D169E56DD525B4A0 +:10AC400098EAFB946F5E7BB8F161288FD57DB7A140 +:10AC50003ECC9DBB86EA816E4F607FB7DF66F557BD +:10AC60006BC2D4DFA7F5359642B9502FA3B87E6EDC +:10AC700020515D427602B874EA60FFF14A2FCF6B33 +:10AC80001AB5C6991FE7BEA7E3D50CD38E0CC768CB +:10AC90007FEA7ABF7CC88B7EE756A5CF9EAFFF7B4D +:10ACA000F3BEB213CF2FCCB69FBB9C92233AF2E9EE +:10ACB0003234F1F4F73A31973E01DCAEB3E9359B1B +:10ACC0001E499A7A2480F6A0A547B40C8DE03DACCD +:10ACD000C7B628B819A1E9947F119CC5F96FF9BCD2 +:10ACE0000ACAB34D5F0CDE26E84DD96C0FD623D9C6 +:10ACF0002BFB6B55A1AD02F52CCF0BD838693CD995 +:10AD00005583E0029CAE9F3A245C06AE0FC225D864 +:10AD1000E06ACE01FD5682F099F9A973B89E1B3402 +:10AD20006ED8A93F6DE3B65B7A53A81C72BE414C46 +:10AD30004563613DFC59C605E1D471DA7163B1A088 +:10AD4000A764F0B8308B460B0FE2D0F0F6AF8F1B44 +:10AD50000F08673F1EEA000F9306FA054DFC0DD25F +:10AD60004375255BCED79CEB2BD166D330F33DC327 +:10AD7000FAFCB739CE70EB64B5CFB5C61B069E663C +:10AD800001E6739A751DAEFFD44C8DF8C23DCED945 +:10AD9000CEC363D617640E3F0FC5C64F79678BD7F6 +:10ADA00038F08D3418AFF0E92EEC3F76006F43DABF +:10ADB0006F037EDBE222D463BD66DCD1F2DB7A3B3B +:10ADC000B9DF66F96BE8A719236C7E5B41C28B7112 +:10ADD000A7B6CA62EEB775F2FB64D469D71695FAC6 +:10ADE00007FCB3582ECF5F3AB298E7FDB8FDB5F92E +:10ADF0007E5EFFEB115C2F7ED11F9F5F0D7075870C +:10AE0000BEEEA1E5A8E1F9CA42013F97C98AB8BFE1 +:10AE1000A63075CB55507E63C594A073BFF5B3FAC9 +:10AE20006D607FA21ECE93C96FA59FA9949740C95C +:10AE300066CBAB0EAEC7FC4643D21268572FEF7CF1 +:10AE4000C97337B47FB5B894F464EEDCBF9EC2FB1F +:10AE5000E8FE6A08746FA6E5D7F57644681F7CB5EE +:10AE60006A8B6FC0BF5E45F7A01EEE15B4E8D6280A +:10AE7000DE9303F565267C969D897EE2556328FF67 +:10AE8000BD57D1C88EFB7D5E31F97FDD32F883A8D6 +:10AE9000FFFC22F97FE8371AE03F4B2DB374F447EB +:10AEA00026172EF86626ED6BF7FB831477D833F55B +:10AEB0000B2FE1B8477EA3D01D1DD5D3CA3BB0BE32 +:10AEC000E7252847B07CED363CF7DCFDBA97EA7BF6 +:10AED0007E062A16DA7F35CF43F74675EF61748E0A +:10AEE000FDA307BC645FB628DA363FE2EDF500C388 +:10AEF000FC0FF443E35E7E0F4192825786887E21E9 +:10AF000088C33CEE276AA3F8B38B9EDFC0F80925FF +:10AF1000EAA744FEFE601E6F1F1FC59F7DF4ECCDA7 +:10AF2000E07696B57E1347703DF79E2A5AE7968BDA +:10AF3000502EB56430A293A39789497BFE9AF514ED +:10AF400083BC7D4B8E65B745AF21FB7B5E1EDD0B61 +:10AF5000F44A6C6926EE233775168B1897199BC532 +:10AF6000E9F1A5DA92428C23FDB4D94BF7791E8A18 +:10AF700074CDA738BEE0EBDA05ED8B7DF105384ED8 +:10AF800071A7CC9AA08B1ECFA9051E66F3ABB6BFE6 +:10AF900018082148BE2E8C0314FAB9DFFC97DDB3E4 +:10AFA0007E7329BC7FFB3199BEB368E15D129E03BD +:10AFB0003FA49775213D7D7FA497DB799BBD94F7D6 +:10AFC000F6AB913F1DBDD48FF739EA99B88F6AEC83 +:10AFD0009468DDDDF3D34672788B772D257EEC35D2 +:10AFE000EF71BB77CFFD2FE251979EF61A1951D41E +:10AFF0002373FA5AB5BB7A672380F4E75C9E6F77B8 +:10B00000A537B51EFD0FF66D89F6277A917E90EE75 +:10B01000770B14DFEFE95C1A2C06BC1DFF5EF5B65A +:10B02000D100F76D593CBED2847C4FFBAED156E4C3 +:10B03000A3E31BA68C68B3C1775B96C75A27EE7F44 +:10B04000E16F187F34FD8B4266FDB8CE0D743E6C07 +:10B05000E078D86F2CD047E1CEE71AD14FC47B30CF +:10B06000304F25D32E1F896F0E0A181F1D63C64748 +:10B07000FDACAB1AFD2515EF0BC07B32D638EDAA1F +:10B0800097E749E4BF8C36E3CCA35739EBC1FFDB2C +:10B09000F30CE21BEC52B4332F3826BBCEDB338AE1 +:10B0A00033AFAC9B487111D565F78D36E9C73DEFDD +:10B0B000DEE6BD8D08D718F3DE02F7BC0F2B49037F +:10B0C000EB9732BE3FE29E6741EBCB7BD06F05F240 +:10B0D00057F11CA17B5EBDC75294BFE39ECFCAB798 +:10B0E00063EBF1FDF55DCEFB0FDC70EF6C95693D18 +:10B0F00067F8F939DC19EDE2768CF75FC0BA9A701F +:10B10000BF5F1919A2FC969608E7A3DCB9B5D98BE5 +:10B110006DF1C1962CCE6725AD222CD5C077C6B572 +:10B120006732DDF6DD099DB98EF239C9D18EF6138D +:10B1300077173BEA27757DC1517FEED3E739CA15F2 +:10B14000A9198EF6539EAF7194CF3F78A9A3FDB491 +:10B15000D71638CAD3D35F74B4BFE0D81247FD8581 +:10B160007D2B1DF5177D729BA35CCDFED5D1DEB284 +:10B17000DB2D7BDBC24F8349176BB244331E2BB2EE +:10B18000A46D9C6016B77FD1BE371C715A91C56DF6 +:10B19000ED12E63839172F3A6DDEDFBDA6FEDE6010 +:10B1A000E6BDDC63E6BDB498792F1BCDBC9726CCF9 +:10B1B0007B81E766CC7B413FEDE2CA7C945B1F4616 +:10B1C000F9990758E36D186F93AA78386004D03462 +:10B1D000D247C0E0F773C455DDA07DC4994EBF21AE +:10B1E000B3D49987EE2BC875943DA1D18E734DFED3 +:10B1F000F2624759F67FC1D13E58799EEB9C9DD3B0 +:10B200002F3992C9EDBB6E167F11E32AF5CCD88396 +:10B21000F7E6B2AD8219C731AA31CF50D92AECB0C6 +:10B220009FFB81722A839F0FFE08F9C3CA6367667A +:10B23000198D01CC3B9F83DF42BE3EB39F45E7485B +:10B24000D764EDA438DC70793147312F46C3BC1880 +:10B25000A368816D1D7F6DAEEFB11C6E975979317A +:10B26000BD9B27EC584770F1BC18D98C473D11E2C3 +:10B27000ED97B1C41691FC291E87203B0660E9CDED +:10B28000E1F931BD82C8E5FA66EF7684A317F3626F +:10B29000B0FC901927D316935D7CD4CFE13DFC80A0 +:10B2A0004479313DA67DD8ABC63C511B9C60BF584C +:10B2B000710BCA8B596D96DD79300407C0B57AAB36 +:10B2C00040E7C1560FF4FBFF220FE64F21D39E70DB +:10B2D000EDFB32AD4FB0EFBBF959BA11F59266EA0A +:10B2E00095FF577930F0539B81F1E84A41C5F8CE7C +:10B2F0008187966F9AAB0DAC43C89D07334C7CEBAE +:10B300006F8D5B15FB397D5D66BE9700FA5343C4B4 +:10B31000A1FEDEFDD1137364D1758E70E87853AD54 +:10B32000FC2CEE138F05FD8DEB62C597DCF1232B12 +:10B33000BE74A3195F9A8BF995505E59CF9298A766 +:10B34000BD72A7337E74499AC783F6D765912FDE05 +:10B350003D7DE5FC12C0F3D8B935D5E023B22D7799 +:10B3600036C9B968177C91DFEF9123369EF308D276 +:10B37000C7BF7AA24D1AE2B9DD43FBF183E2502F39 +:10B3800011DD6C13D5F71BA383E9C31D771AD5799B +:10B39000BB69EF844F60DCA8A8F50F54566BCADE7A +:10B3A000F7560DA617ABBD2AAAD43E77EED6D9180C +:10B3B00037FFEB1A46F14A379DBAE3495722EED0E0 +:10B3C0008130FEFD62CC0FB1E4D79CAC9FB7A0FCEE +:10B3D000AA38F7B2DF601E0AFB77918D8379FEC62B +:10B3E000F4670FC52EC42D74F6BFCE2D9C82F72BAB +:10B3F000F6E727003DA2DFD0DBB9D0919F703D7EFC +:10B400007088FC84FB1A9CF9E9A3404ED8FD44EBFC +:10B41000D9992B38F31340AEA35D9EB7F5FD14DE2A +:10B42000477DD34E89F213AC7C842266FDA4898FBC +:10B43000C79AF75E8DAA73C7B7FAC81ECC33E9A9BD +:10B4400077E7ED02D249DE7681E12759BD334FA17E +:10B45000B7F303B20FADBCAA158F298E3C853C66AD +:10B460003BFF11C1BC843E8A5F5B7909635DF57F58 +:10B47000CAE2F8B4F01432F11472E5276C8CD6905D +:10B480007D7FB880CD31CF19DEBA17E387FACC11B2 +:10B49000B884D5D35615F5C0FB27FCFCDCB62AC50D +:10B4A000B765E1BAFDA797E2E2BD7BE213726DF2E8 +:10B4B0007BA9DFB2530DF2BF542FBFB716564340DE +:10B4C000BFCCBB42607E1BDD2CF55BF77E5A7EDD78 +:10B4D0004101FBB9DBE1BE20E29F4C788DCA12C668 +:10B4E00071BDD6BD632CC1F09EED73E37E3A97CA61 +:10B4F0000E727C58F77830692DDDB3F6A1791FDD27 +:10B50000A83AE7799A739FBF3D85F8576B7C31A4C1 +:10B51000F7735DF8CC63B7A6B87D9EC59274A58617 +:10B52000B39E8E9460BCBCD24F72C09D77BF494B16 +:10B53000D27EDEA63A46FB50373C782BE5911B7E47 +:10B54000F37C46392B47BE05FC47711E2730FF1898 +:10B550005EAB25291FEA53F547928AF4FF9793CFF4 +:10B5600005D19E7B3BEDA5F5B2F2F37F08F48EF793 +:10B570003976E1FD8F0AE617AB547E12EC322C3F90 +:10B580000576193E9F06BB0C9F3F07BB0CEB7FD196 +:10B590005045E55F36E8544E35CCA1F2B7FDDC9E50 +:10B5A00054B3F422CC5BDDD37149D11D00D7916A2D +:10B5B0003FC175E467F1B143FD7D8B81B888A198E7 +:10B5C000E700145C4F2B4ED35659DC81FC9C4E9601 +:10B5D00088782EFC587261F61278AF048421CF2F40 +:10B5E000BCD1E0CC334AAFE0FE6166C5BE60A98D38 +:10B5F0009FBBFCE639AF150AD56F8C3E3164FD5F09 +:10B6000056F1FEEEEF5C1D90A97E7C41ECEA00C095 +:10B61000F1A5D55FA1FB2DEA597C33FAF1AC93EF8C +:10B620000336F93E9888E703A48CFF9E68FFFB135E +:10B630004DE679F057D578D07E3FEE33263F34057E +:10B640004C7B271C0F56940FD8E5C58F19C105B642 +:10B650003C8DD7CCF6D9FDE7C15910FD2CC0571051 +:10B66000EDE1DF61FC06E039FA02CF8BE8F6C7B204 +:10B67000EDFCB7DC85C7674DFC613B3C775E236B17 +:10B68000F250EB36CBE73C9FD6DDCAE52CF6B7DFB0 +:10B69000F753D359528BF0CC62D1661CC7DDAF454E +:10B6A0008ED33EB9C13C6C5725C14FF6E195A37CC2 +:10B6B000745FE5F2CE2B26E1B8930B6BFEE43F7F7F +:10B6C000C0AF71C3F3918907B7BF633DFBCCFA7E6E +:10B6D0007BFC3121C9F7654D7BFC316187FDBE07DD +:10B6E00028D379D433D9E34C9735BC9F4330E58CCC +:10B6F000027205EDCCA6152CEEA3B8B379EF1BDAD8 +:10B700003998E07106BBDDD2CBA2C1C77F79DE2CB0 +:10B7100019E75F3BE8FE01A7FE76972DFDD9EBAF59 +:10B720009F6DD8F8E8E86E89211FBDB57BE169FD02 +:10B7300036371F1D5DC1E3AB9915CB1C7C921FE012 +:10B74000F1D3DE7E3E2A1EB2BE7B183E1A837C7485 +:10B750003EF1D198C0C8013EEA30EDFD6F1400BD46 +:10B76000225D9BF94DCB11D180971F0404C77E91B8 +:10B770003BBFB0A87368FD7DB749EF1DF9D11770C5 +:10B780001FCCF83D8F67655684AEC17B507BF44C6F +:10B79000CA03B0F420A5B694203C07CBF0697D27FE +:10B7A00089FEEC043CD7A192DDB0D3F4671F31FDD4 +:10B7B000D9DDA63FFBA8E9CF3E86E73826E07CBA74 +:10B7C0009EC57CE70F17B10A94EB3D05C975990832 +:10B7D000478C5598E7AB83D579682DF042F6C96C54 +:10B7E0001ECF5D5541F7A15C1DC8A3797BCDFBE061 +:10B7F0002DBDFC8D4EC983FAED4B98DF48719DD469 +:10B80000C106E8E7DD2A69B4BF6E288E7BAA42A094 +:10B810009FD07E8D9BF97B2363AEF3A25A82EE15F7 +:10B82000EDA8E6FBE15F72E9AF912C91427B6219D2 +:10B83000E8B714E6AFA49F53E97C4354A6BC39B7DC +:10B84000BE0B195708745C28ACE6E33D4B83E2EC71 +:10B850002E3E0294C54154001FC5C80EE9593162FD +:10B86000CB55B82EFD7176CE4FC3EB13679CBD1E32 +:10B870000360B0EEBFAB49DC4CF7C6AB9CAEFAE55B +:10B88000E8707210DAA1DC3A6B39E8E3ED8783AB3C +:10B890007F5CB39D5B3EBEE6D71C74ED1EDFA2CB82 +:10B8A00025265D8E6D1D9ACE2704B83E9699F62CFE +:10B8B000DE0BE07D85DF23CA462586FC3B53165D03 +:10B8C00017AF05BB08ED1EB48BB8DDD29B2E33CF6E +:10B8D000BDC3FF8AE4B460EFEFCEB3B5CE070E3739 +:10B8E0007FB79DF340C069CFF49F2F34F9FD461A0E +:10B8F00073F038961D83F2E174F81E241776727C7B +:10B9000059783CE41ADFC2DBD86681E467F3E66F5E +:10B91000AC374A513E6C25BBF738DABDE4BF72FB49 +:10B9200072A78B4FDF5ACBEF2D7A2FC0EDD46FEC7F +:10B93000E67193B1852C89E7F44BD3B7925D699D8D +:10B940009360EDCEFBE3D0EEB4DBF56EBEF457AC06 +:10B9500021BBB2C7CC1770DBF1C0D7B47ECB60FD82 +:10B96000D0EEEC39E9A57347876A3D9447EFE6CB03 +:10B9700091C0BD587F3DF02DDE0373287D89279F40 +:10B98000CB23B25FDCEB05FA6B36D6775CA9D2BD70 +:10B990008DBF1B66FD865B0F6BDD2660CEFBC8018D +:10B9A0003BE38CFC62B69B2547CF8E0FE5B3E443A7 +:10B9B000F96FE3C3BFD7CEFBDFA6BC19DECE634170 +:10B9C000FBDF9D196CE7E964DFEDF3F378E3618356 +:10B9D000DB7BFDF99422CFA7BC9C6974AE51023584 +:10B9E000DB988FFB4C1F507E6537384B483F8B16DA +:10B9F0007E4AF9953DAA48E5E9E546139A0E9B3142 +:10BA00005A83FEE2D745DA7F9B20A62494377941FA +:10BA1000BE8F74214B4BFD97D140BB8B3A05DAE7C3 +:10BA2000B3F23097997998FD7F87C3CAC3F49FA07A +:10BA3000BCCB634083620E3C310FB372200F732581 +:10BA4000E66186EC7998B7525EA52D0F93F232F736 +:10BA50001BD994877979558AECC76E332FF3F23965 +:10BA60001BF7F33C4CAF28DAF32ECFE57994FD7940 +:10BA700097515E6EF29FE0799795AEBCCBE9BC0C16 +:10BA80009623952F9DE927BFF12F573EB31BC31473 +:10BA90003382C5B41E59DBDED730AD727967A38718 +:10BAA000F22FCF1D4FF18EE1F248CE943F72B6F9DE +:10BAB0009AFFA13AF335EF55C7DFD39C3F90AFE92A +:10BAC000CD71E66BDE1FB9AD755FFE407E666E4ED2 +:10BAD000FB1CB40BB3245E666CCDA51877B1EAF3FA +:10BAE0003B6EBDF4B4F99BE843DBF695EE57F93EA7 +:10BAF0001BDE67D87E1EBDD703B978DF21809F4B40 +:10BB0000EF8D6C0C609525893E9A2F632ADE9BF0A1 +:10BB10002A9631AE7C2DD067058A5520379457ABD5 +:10BB20009886F5AC8CE3239319493A17136F37F3D2 +:10BB30003E6F24FE3BA6CB51DC57CCBEBF89E77FCE +:10BB400076082AE68D2F4BEB24C75676F1FCCF5EA4 +:10BB50003945FEF4D1ADD51ADA5DFF9E3D8EE8F889 +:10BB6000FAB4319FDF032285D02E5EE98B5F86F722 +:10BB7000645CFE2D2164C07047DBAB833A8F4704C1 +:10BB8000699FBE43A2F8E73126903F7DBD49FFACD7 +:10BB90007DE83CCFE305491DE13886799EB04EF340 +:10BBA000B3391F67267FFA35BC7FF5B0D97FD83C03 +:10BBB000CF769EE7797790CB8B956946F8BA3EC9E8 +:10BBC000F33607E77D1A94C779FC71813D00A5EB38 +:10BBD000B75E41F7F11F57DA8B50AE1DB7EEAB647D +:10BBE000EEF8A61AC4FDF71B933911D45F2DE67E3B +:10BBF000F58AADDBE93CFA4ACCFB04F86FEC5ABCA1 +:10BC000005E15DB155623AC617040E8FB18BEF6F37 +:10BC10001C0178E91EEB5DC2763A0CE4CAE3F4B38A +:10BC20002E1DF370314481FC9495E6799C963E7408 +:10BC3000E76982FF43799985A63E74E76D1E157406 +:10BC4000DA0735AEC96278DFC1AA45CEFEEE3CCD3B +:10BC5000D9F7EFDD84D79855EDEE9090EC1F37F9CA +:10BC600058AD5E16C079F6B49660063F6BC98985FB +:10BC70006F2B1F387FE0C97F258140FF4765B9885A +:10BC800079161E25B104CB9E87CAD055630F78E282 +:10BC90005BAF40FA7A40A4FC7B98EC57903E67DF9C +:10BCA0003F42C4FDE896483CF8FB4ADA6FC9C5FA42 +:10BCB000BAF815DB504EE946510EEE6B5DB3AC623F +:10BCC000AE0ECFEA79B902CA81FFC8E6F83FA26892 +:10BCD00035441F1B401F631C1CE41196A156DD3C1C +:10BCE0009DEEDFA5737DA51BB2691FB978469D98AF +:10BCF00007781EAF2446D321FB931F9423BFECCFBC +:10BD00008E38ECDBE2372F791EE96F41716239CE54 +:10BD10006FCCEA7D3997C0B8C51B4AE95E9DCDF26C +:10BD2000419FEA77D0C959C5E9ADF8BE5BDF5E91A6 +:10BD30002D58F763907C8E198A86F7FCBEBC4E5254 +:10BD4000902F8F0B2CB183E2723CEFF4D8769E7764 +:10BD5000EACE4B85760ADE03634464CABF1C2E0F0D +:10BD6000754592E7A1B2325BFFE2C174BF2A19B9EF +:10BD7000B756FBFBF34DAD7D1B2BEEFFFCC0B92985 +:10BD8000FA7B079A1977C4FD00F4BB6E40BF8BF6AF +:10BD90000318ED0F2C07FAC6FCD2E50F6639EF1F2A +:10BDA00077C5F107C5ED4B170B2856DDF17B3050F9 +:10BDB000681FE104D889F85D77BCFE40F4F65C9416 +:10BDC0000B928FDF5FD1D660E818CF6B32FDEEFBB0 +:10BDD0001A5A75FBDF7B51B3B95DDCE5D1B3B371A2 +:10BDE0001DCDBF9F724489C5AA713D5A04B2832CF0 +:10BDF000BB7A15B3FD58F75B080365F2E305FCFE5B +:10BE00007EFA7E56D7F614CAC9AC32862787D8A8E0 +:10BE1000CEC57BB03CAA4EA3734A5965009F8D0ED8 +:10BE200046D5017CB6F95A79356EBA3B60F29195E8 +:10BE30002FE0AEBF2BFB7FF205B08C7914480F6763 +:10BE4000DA87A90F9AF98B32970396FE3FD3BE0B80 +:10BE5000D1C3D9ECBB740DEDCFAE525DFB2EBBCD83 +:10BE60007D97DD7CDF6555F21FB4EF92BC9DCE95CA +:10BE7000E63D7476FB2E377439EFA7F9ACFB2EAF95 +:10BE80000635C77D7021134FEE7D97E27ABE1FFE07 +:10BE90006158A13CC447FA9CE70D1EE95C125A6642 +:10BEA000C3DB3F7B3F769B2A98E70896923C3F6630 +:10BEB0009E23A01F78C63679C91F5834C2D3827C0E +:10BEC000DC236809BC0FF54CE75B8F09EC57F536AE +:10BED000F9EEDECFB5E4FBD24D5CBEBBF777979EA3 +:10BEE000418EFFB3F6776FC0FD5D3C3785E7B4A0A8 +:10BEF0005CF4183F97ECDECFBDE941E77E6FF7F4C5 +:10BF0000073C22CCA3B7F244075D3D6CCA73C9F469 +:10BF10003FB7DC3922827F97CDB8D34FFABF73C9C0 +:10BF20005BF9C857CD17FE95CE291D06FF13EDAA64 +:10BF3000C3EDB3E6A3DDAA7E5350515EDE82748565 +:10BF4000F97E42E23A7ED98E4EF9D3BF36E9CDD2A0 +:10BF5000FBDF5EF56CC6049BDE8F64ABFC5C14D328 +:10BF6000724B23E857695BCE41FBA35334CFF1E812 +:10BF700045F673A2E34CBD7EA6FCC03B4D7AE9CFEB +:10BF80000F34FFFEE3BD7BCE21B88F98F98147CCFB +:10BF9000FCC0E53B797EE017541E3FBED29BDC8897 +:10BFA0007464E50732B9DD83FE712FE3FB906FEF18 +:10BFB0006ABC0EF3028F587982265C565E30933548 +:10BFC0003AE7756C97333FF0AD6C7E9EF4388B6F1B +:10BFD000A9E2F6F7DF9727987C8EF6D93F439EE0DB +:10BFE0001ECCA7FD5BF304FF2F1E8CDF56008000E4 +:10BFF000000000001F8B080000000000000BED7D1A +:10C000000B7854D5B9F6DA7BF65C729BEC2493304E +:10C0100009B9EC5C9020B74948E422A7DD091183F7 +:10C02000020E081651E980A848C50E14155B6A7601 +:10C03000C80402721904DB6851861814BC9C3FF5D1 +:10C04000D8563DF69C2120F5FE6345AB16DA4940F3 +:10C050000A887FA33D5A7A8E96FFFBBEB577327B66 +:10C06000329304EB799EFF3CCF8F0F6ED6ACBDD6DA +:10C070005EEBBB7FEF5A7BED338C1DF8B58B314DFA +:10C080007578F7CA8C5D7E5A3A197130FA73815F00 +:10C090000E1CAF626CF982D16C9387319945D5172C +:10C0A0003356240B8C655351912E632C19FF55C2C6 +:10C0B000D8A9CD076BA640BFC305D6038DE08FA4DA +:10C0C000E9ED840B76C6CE59432AD6DF02ED1EF089 +:10C0D00060BBDE7AEA37BFFD9D9A5CA8974526A72C +:10C0E0004F82F26AF3B84E9DD6A6B3318CE5DD617E +:10C0F000FE7DF939FF7AFCFDB690F564A4BCEFF73C +:10C10000D87177B7DCECF48DA1613BBD63196B6F1F +:10C11000A9DA3A19E9B0D9C246288C4D69B530067A +:10C12000F39E1214F72830C5CB5947939C0AEDB003 +:10C13000C914F8AB9DDEA042B919FA62798C8DDA88 +:10C14000F66F1BB47CC6B61DB87D36CEEBA3A0C877 +:10C1500092A0AABBF5DAD9D84F7787200B70EF8B66 +:10C160001DDB9D2A3CF70C63F51DD0FEA3F61DCE0A +:10C1700012285FC03FDF666CA24ECF53ED96FA5097 +:10C180002A5EAF7596A6F6D54F92615CD5D08E0526 +:10C19000B74E16FAD33D96CE2CC00E97417D019F27 +:10C1A0003AD0F531754A156F57E4EE4FF782C80162 +:10C1B000E2DB61D5D1C3DCF86B9831E4A3CA429BC2 +:10C1C0008AFBF361F866CB8147A03F798A9DF8F43A +:10C1D000CE4CCB815F43390FE4C922F7E7CF472824 +:10C1E0004F48E705292C9EBCC5F2A918E951DD7F0F +:10C1F0009E6740BE260F205FC93BDFA9C1716397D0 +:10C20000B5B9FDE779E674B866328CF30E98A722CB +:10C21000F79F1763211BCA457FF9D248BE96755810 +:10C22000071937E37A711EF896C3D862AC28652CDB +:10C230002720A821923B569705CF97CAE43D48573F +:10C24000E79496A2FB60BC810C778505E46F51BA38 +:10C25000A8CFDBCFBC697DFC6FB1FA16A543BF92B6 +:10C26000AC312EBF2AD52F4AE7CF3BB0FD57851101 +:10C27000F87DA4ADE3D11CE8FFB60F93581B905096 +:10C280007874416104E5ED535F911C254F47E562E9 +:10C290005D7F834E91F87DC429021F955C098491CE +:10C2A000319BF5881FE978B62A9569D0CFD92FEF51 +:10C2B0005982E5DB7739D83A28DF7EFECA4544E764 +:10C2C000A09DED85727B70C91194F733FB2C82051C +:10C2D000CAEFA52B340FE37967F7DD2CE3B825E42B +:10C2E00007E8270C45BB80720CCF5E7719FE0E7FE6 +:10C2F000C4BE7A1B63DBB17E9153A171BE07F759AF +:10C30000A1FF53014BA891DAA96E9C7F32D03E5811 +:10C3100049F2A1A66532769D933F17E525A792EADB +:10C32000B574F83DD3AA640830DECF40BF713EA794 +:10C330005AAF4DF7C120D897303E78FE529D4FC678 +:10C34000788DEB4F1A4013EC7DE56141E0636AFFA5 +:10C35000FBDED3F5F7B35726B01E78CEE79B85906A +:10C3600005489CB3F9D3F0852AA49B2584F68469FB +:10C37000CC5903CF2B64C69F885008F717B92D649A +:10C3800067872D105938CA7E31D673E011A8CF992E +:10C39000649737816C9DDAF50301E99CF3A0C03204 +:10C3A000D106AD91BA915E0EF8EF02DADFD6BF90FA +:10C3B0001E7E8E7A08FDDDD26EED8EB687390CEECC +:10C3C0008F92D72D520FE9E516D04B0DFA2F8AA97F +:10C3D0000FA673FA1B7422D5B2E015C609F7FD1D2E +:10C3E000E72F0C9DAFF0CF20D67F57E713F25572A1 +:10C3F000F5F135901B745AA1FF802C537DC8CDE513 +:10C40000D1D0A765863E8586A64F4F8123E172DE97 +:10C410004F9F9E92ABFBEBD353A8BFD571E6037D34 +:10C42000ADCB893B9F10D6BF07F552B47C2A209F25 +:10C4300063719E7C1E6C4190FC4D73B17F91179E81 +:10C4400057EBA83824C338CBDB651A679D3CA72E71 +:10C4500003CA973ECDCB1DC9DC0E8C71BFDD99019F +:10C46000CDC7299FD68218334F79C641BC567A2A48 +:10C47000A665C1B56AD29C8378FD7932E7D365EAB7 +:10C48000CA69DCFCB1427C5EBF79C070D6C7D737C1 +:10C49000AAFF44E67C61B22F4D80F9041EB2C84861 +:10C4A00057E6959D17D39F88F5C571FA51A19FB4A2 +:10C4B00028BAD407A96CB4835F1B8D7EC5F8FD1222 +:10C4C000BD2D1909F834C878D232B8BD347ECF31C9 +:10C4D000C6C9A2FC84A58F0EA71664396DE45FB9A6 +:10C4E000BD31DA651ACF8B692767F07601C1B7B520 +:10C4F0005AE8A35B4592FEFB3F49A444910E7B881A +:10C50000417D642729135BDC6E0909505EC3B403C7 +:10C5100077A19F6E11426857DDABED148F2C712906 +:10C52000A14D02DA176EB7AC2D4238C90957267DE6 +:10C5300081E3C1B6FA3CBEE0FA2EB00BA027494A0F +:10C54000AC3DC9974FA5F48DF7F2249D0F12536CA3 +:10C55000517E76307BB944D7C341ED654B7C7BF986 +:10C560004226F7EFBDF63200F652403F09F612CAF6 +:10C5700037EF047B89F3F947EDE54EB09758DE08B5 +:10C58000F612F93188BD5CB2D9DA1DEDDF2FD65E27 +:10C590006E485286642F3755956C47FA9E7EDA4274 +:10C5A000BCFBF8694EDF583A19D70F91AE23FBCA8E +:10C5B000A797419C087624B9A2CC5916D52E906134 +:10C5C00025BA762FB352FDFD9ECAB8F527EEE0EDF1 +:10C5D000639FB33E43A2FA4BF2BDEB33601E37AC10 +:10C5E000B8CB81E3DA2EB00518B7EEC8F7A667A27C +:10C5F000BDD4EDF12D0297034B26F77F463F8FC642 +:10C600008CB77027B7D7B1CF3B9AC1DB6DCFF5BCE4 +:10C610005A86F1E1BB16CF5E86F3725DBF14CA7F06 +:10C6200052933DA4663A3DEDBADC6D1183CE69426A +:10C63000DF73420D0EBAB635C8247FED0D6E2A3F6A +:10C64000DEA0D0755F43395D9F6CF050FDD30D9334 +:10C65000A8BC23BFA33319F93F8F5568C0BA4BF765 +:10C6600031629AAB2E87E4F14FF93C5E873FCE9A58 +:10C670001C943ECE6B3BE37267F0F3E50C9B1EB758 +:10C68000F590FCDA5B2DA4AFE077C2288F37E8F293 +:10C69000683F96622BC4B839CFC2ACE0FBB2E7F971 +:10C6A000C39867DD04F28471F38ED66902C6393708 +:10C6B000DC2B78446CAE71FFADC27F28AF37AD3153 +:10C6C000FB7317DBFE5603DA87768B1282E7DD10E9 +:10C6D000238F4CF192FC6F7F46600F43FD99C86F2A +:10C6E0006411EED73C12DB5B8CF330DFEF6A997399 +:10C6F000200FE8C0DC72EE1CB077E35283B3C9AC04 +:10C70000A892225F865685912F5C2CFBC9A8B24562 +:10C710001E87548A76C8BB7534DC38EE852A3DBF47 +:10C72000AA934FA15D623EE1C2E8C4728D86E79490 +:10C73000311FD093033896EA3E7EFB74FD29D2E286 +:10C74000DB91073244DD0F289D76A4FB510BE52BCE +:10C750006C98DF2DC7B9DF909792B57E1646BBE384 +:10C760004BF5A31D013A9C223B8AE380FF154A1139 +:10C7700021BA7DD19A183B63B971407D5D73ECEDB0 +:10C780007187A2EEEFC948739D023A400E3106E769 +:10C7900069B437F42851FCF9D78623E30E59B9DE82 +:10C7A000C59B4F427DD3E354838E5D3A1D63E956AA +:10C7B000141028AFFD30E3D516AD0CF56E9E53C1B5 +:10C7C0007C01E59EC745647FDB75B94FFF329DF460 +:10C7D000E3CC5ACF6328DF8F6772B9DFD1CEF3E69F +:10C7E000A202161281FE65919524F78741EE19E4A5 +:10C7F000152C2899E49859D686A3ED6EB65732D9F0 +:10C80000DDD48AD5A4171FE97A116B675D6C25F119 +:10C810006F29F02F04ED3FFA123412EE3F51670BEF +:10C82000617E122BD7D92C4C72EF03B90F43FD89CF +:10C83000C895B65CD4032FF3EC55FAF30BE2579B83 +:10C840001BF566BEECD904F5E59966FE6DCF659ED5 +:10C85000701C7BD53D88BD32F8B95DF0FEEFB2E2C9 +:10C86000C1F9F94DD9B5EEFCD0BA643EDF8ABDAC52 +:10C87000BF3DCB9EA70A5617DA978A09289E2F67D5 +:10C88000E4905D8EB573BDF66D737CFBF60B3DFEDB +:10C8900089B5733B36FF208C7EF386EB5398286373 +:10C8A0009CE3DB528DCEB1D542F46F72FC65F4C9C6 +:10C8B00009201649FF35FA64561F1D9AACE077C669 +:10C8C000607EE5736646F98F1BF4F8A1298DFBA500 +:10C8D000536E9FB302EA9D29FEBBBD502E79DAE369 +:10C8E0009C3BB6EFFEF753B99F498740E208CAB5B3 +:10C8F000243B319F3F94CAE39FAECDA554FE47C76A +:10C9000075E7A0E30A9AC6B551BFBF6F5C21270641 +:10C91000B367DB4BE9FA5BABB27512FAC1572D9ED8 +:10C9200036E4632AF8DF283BF01BBDBD51EED4E5A9 +:10C9300006EF9331CF9014299EDD98E6B098EC591C +:10C94000770B8F3FB03D8BB223B5ADA575388E699F +:10C95000CC13C07E62DB354BBEC32ED403C820F699 +:10C9600056913957D13ECC1FE66843F9B8B575CE1C +:10C9700058EC775C41EDB64CA0FF7C3BF3935D71C6 +:10C98000476C73800E96B493398BC7E0784553FC9F +:10C99000D0EB1F9EB7F6F4EA31D88DFF4CD5FD439E +:10C9A0008CDDCC090E2D1F1C9F9A105F199F1A0752 +:10C9B0005F198FCFCBFEC7E5E2E77A7C94582E54FF +:10C9C000E7DCB481E482913CDC95C9E53512E4F200 +:10C9D0006AD0C1F09339BA9F1C8C0E733212D261A7 +:10C9E0004E461C3ACCD1F3A6DFD6FAEFC4F176CB93 +:10C9F0003C0E34DA556727904399FBAD21CBA163F8 +:10CA0000603FD7DBAF7E5FAC7C6ECC544CE388EDEF +:10CA1000BFA9F566C2699B82221314C46D1F722AD6 +:10CA200020876724BFCD03F379715731E1B4DD8CE2 +:10CA3000FBBF332DA5269CF69CCE97532D3C7E3E06 +:10CA4000D5B2C3591A55FF4926C769CF3065EB6483 +:10CA50000A9C2E12A76D794C9B34304EDB88F5432F +:10CA6000C6690316CA87868AD39EB9489C56C98A66 +:10CA7000BF0ED01D18781D20B97D609CB6FB749840 +:10CA8000DA2F459CD6130FA7F5DB502E63C77FDB4B +:10CA9000392FE1B4B70407C669DB5B24C2D963F15F +:10CAA000FE26D661C17169E7C09711AE99B915F13B +:10CAB000E233815211F5A637BE4AE172D08E1DE6EF +:10CAC000C1E4B36F6FD6A0BFB6248EEFB455C8854E +:10CAD00073A3E4F84E9D4E5D195CFF271EE4CF3D25 +:10CAE000D738B26D1DC9C9DF498FF136D4E33FBBDA +:10CAF00078FF1F97AB36B46FA3428A331354F6DC2A +:10CB00002CDB021CF73941243BAB35DAF7204E0011 +:10CB1000652662F9194BDB5E8E57513EBF02BB861C +:10CB2000761F439B74A83FB9C9D286F97C44CFE7EE +:10CB3000BA65D9E6891AE752C6F10D1C05D2698596 +:10CB40005E86AC307C418F15A41CBD5F18D78A80EF +:10CB5000A0220EB1A2AF1DD1B73C14C54FF83B7A4D +:10CB60005F543DFC1DDB612E8F7FDE5CAE089BCBEE +:10CB7000135E3197AB8F98CB13DF37978767EBF650 +:10CB80004D63EFA17E159184E2DF1EC20F0A113FB3 +:10CB90009011378A34A27F5540CE300F285C6B96B7 +:10CBA00027E5D899636C1CCDBA6F5DC982BFA774A5 +:10CBB00089F0FBE448ECFD2B56E0FD4A8CBC358F38 +:10CBC000F215A2DD3C95C4FDC360F8DF8FB22E0ED6 +:10CBD000FF9B58B7D882EA54B286F3F973B795E24F +:10CBE000B3C77B8ED4A39C695522E1F48FB78A64C6 +:10CBF0002FA657D4103EADEEF43D3003CAB3DC1679 +:10CC00008F00CF75813E84A1C3271E399C8FF67F8C +:10CC1000FA1CD18B766E7AB19A84F1B343F1D87055 +:10CC20004E5BBEE2721EA5D7E285897D7247AA5D82 +:10CC300082575EAF825D413AACD7E57A96FEBB057E +:10CC4000A886BFCF745B4DF2F24F3D667E7EFBBC83 +:10CC5000B91C8BBBC59633670448BF3E5BC3288FA6 +:10CC60001FECFE0C51A0411736B150138CE715880C +:10CC7000BB2978D7D4DFA1FC5CC96F65F56CA584AE +:10CC800071ED6D203F21909F19A0498FE37A120624 +:10CC9000C250BE63570A824BBDE3DCFA434B27AE5A +:10CCA0009369607FD19EB27CBE3EE9D0F3A0BF768F +:10CCB000099D688F1FAD757B1BE5FE72E62A5B2C14 +:10CCC00020BF5D0BCC725650B5AAA694882C7F9AD3 +:10CCD0000E7EA070527227DA6D79E1686647BF5008 +:10CCE000B7BAA614F331D5F119CA79AC3C1AEDE5FF +:10CCF0005A37B577283D8D88BF14A8E53DE81798C9 +:10CD0000E4A7F660273E8BA717C3564BA675D69FA0 +:10CD1000A3E1AFEEC3B5BA211FC475CF33ED1787BA +:10CD20006B75F7E25A2E136EF5C72C8E5B7525C016 +:10CD3000B58CFA44B85657562FAED59535045C6B72 +:10CD4000B98E6BDDE032C735FDF2EC7DF171AD31AE +:10CD50007ABB44B85657823C71BB70A41CAFDF74D9 +:10CD6000FED73548FE67E4F567EFA8A0BCBEC01546 +:10CD70003FFFDBB1CF4279DD0DB916CAE35C88987D +:10CD80004079693E0B8508AF35E355A95FDD43F96E +:10CD9000E109C80FD7C5C9F399E20FE33E84ED3529 +:10CDA0000E2FCA692C7E950D6A85727D0BC4236196 +:10CDB0000FE6ED83E057C13935B958D0F1AB85A9FD +:10CDC000BED93550EC763D60A3A9C6E05840B20804 +:10CDD000AE3735A95EF2BB2796656DBD4EC1CAAFB1 +:10CDE000875FADD1F52016272F6A892F279F64FD15 +:10CDF000CFC0AFEA5D03E357B7529FDF207ED5AACD +:10CE0000E7733A1DCFE8748CA55B110253107F5570 +:10CE1000EEFC62E3C5E0577F42FC0AE8FCE7341D04 +:10CE2000BFDAC5D761BE69FCAA0BF12B4F62FCEAE1 +:10CE300016C4AF40EEBB10BF425C6D10FCEA661D2D +:10CE4000BF3A13F9CEF481F12BCFE168FC4A43FEDF +:10CE5000A5F4E75F227E187CFB04838BECC1D783AB +:10CE60007C09F8DF6F3D488BAF07B3B363D6837699 +:10CE7000EAEBE73BFF9BD6CFF70F6DFD7CF93FBA9E +:10CE80007E9EA598EC41A2F5A071BFFEEC20CE736A +:10CE9000C92E21C4281F886C42FE153E2DB04D506E +:10CEA0001AFF4CA30DF3DC8ED076BA7AF6EEB161A0 +:10CEB0009E53B1FF0095FFA5633195273C5443E590 +:10CEC000A5BB564E988AF2D26A57509EE5A010C66E +:10CED00075D85B808E76E49F30F7B01BE5E719814B +:10CEE000A1FCC84F0B2AF277C92E4B1BAF7F763DB2 +:10CEF000D5EFB130F4177F82B1A641FDA30F5B429D +:10CF00001A8E2FA439313F3B75A8A46393CE09CC68 +:10CF10000BEED4F574E2C113EB316FFA5860CA031B +:10CF200032F22B2A4E443E3E6FD538DD5B1A2F88F5 +:10CF3000171FFF7F2C88E4B707CB035E4C31D6FF69 +:10CF4000F9F3921D8280CFAB619229DF7C1175A32A +:10CF50007AF0F5DDD131EBCECE04EBC7C6FE065C30 +:10CF60003F96445C0F0E6EB594F6F179698710E236 +:10CF70004E28928CFBDD0A77029FA1C9F8072B3857 +:10CF80009F376F277E7AF61653B96223E7F7C4837B +:10CF900013EECFC3F8EA1181AD43BA3CC2F9FABD32 +:10CFA0007D16929B6EE159DB70E45BB3A020DF0C31 +:10CFB000BE2EDB077CA5FA75D351AEB4ED9CEF67AE +:10CFC00091AF187F6E02BE0A24272C19EA7D2DFC32 +:10CFD000FE8907A7110E7EFA410B3D2F96CF1FED5C +:10CFE0003CB11EF1889F83371DFEDFC0E7D343E4C9 +:10CFF000F34D5943E3F34D599C7F07B68CA47D5103 +:10D00000236DCA90F64BCDCC2ED6F1B281F74B9D55 +:10D01000C4FD5270EB49DC2F5515BD5F6AE2222C2E +:10D02000B3CD768A5B7AF74B052D02DAB9DFEAFBDE +:10D03000378CE79D0CF2FD52068E9BC84EC7E2BDB1 +:10D04000D324CFD070366988389BF4F570B64BB3D3 +:10D05000659A4FECFE9DC5BADC0C753FDC0E57C2DD +:10D06000FD3B3B5C71F6EFEC7071FE36E14FB9941D +:10D0700082AA283FEE290E5FB4DF5992CDFBFD5CFA +:10D08000C709326794A5533F7AFE6AC5F625FDE9C4 +:10D09000B219E882F8780BC4E1183C6E918E38E43E +:10D0A0005493FE531E6C65E6BCD768BFE52BEF02B8 +:10D0B000C4017AFD69205340BDDB13989B8E38F87C +:10D0C0007E03B7D0FD85A2D3CB68DF161327956A00 +:10D0D0008CD351A76F73CCFD1BF57996B8D890E827 +:10D0E0006DDC1F87DE1BB3E3D0BBD75FBB18F9EB4A +:10D0F0001217C71B8AAA4486FB374AC1FFDAA1ACC4 +:10D100000499274C93E1EB47D6B522E113A52D6690 +:10D110007FAD68DE30E6CBA5E0AFD1FF32E6A5FCFF +:10D1200040017F8CFEDDF0FF9730E215DBB376899E +:10D1300088FE5FD1F311D6CAFDAFE1CF4B83E6B8CD +:10D140000CE84CF9C4E77A5CA6C4F86B2B93FAFCA4 +:10D150007D711F1F481E2C7835FBED5953AD263BC2 +:10D16000148B63B0F2A87A33FE1B1787E88F63E84D +:10D170007239583B1DA718C97F624FE9F8C5C8C866 +:10D18000E299E8A446B303620AF2A18579420A86CD +:10D19000813C3FB46EE67CB16AC926DC6203DA6E7C +:10D1A000F4238D8CF621B13A89708CA2492365E471 +:10D1B00003DCDA897CB1AAE5C49753D91924B719DD +:10D1C000A2D08971AFF586D1ACC983F8C75F1ACBFD +:10D1D000B09F5A47CF5EE4DF2EC9847FC4E21D565C +:10D1E000DFD95A8E6BB04F11C7F86BD7DB546E1670 +:10D1F000E54F1BA17DC966330E31B6AABB96E31875 +:10D20000E58463C4E21CD6491FD6228E81F5F64917 +:10D21000887344C42563B09DA88DC4FD5331B8C63E +:10D22000D8E7CDB8C69F5117AA395DB32A071F7F2B +:10D23000ECF862C763F03391DD4DC35D1F51CF370A +:10D24000EC164BAD247B963963F56F0A300E6B57A5 +:10D250002A91EDD396B4D8311FDF1D522AED0AB6BC +:10D260000A8A5E28DFE32A69A33C9235D2F877BBAD +:10D27000C4648C1F321B4BD2B1FB44CF37ECDBFABA +:10D280000699E4C7B073DB8BFE504FF911E835C641 +:10D29000053F2DFAFB012C5B8F2529182FD6FCE1C9 +:10D2A0007A8A33425D8207B18C50B6BF880D800FF9 +:10D2B0001AF635D64E0E661F67E688A6FD5534E58C +:10D2C0008BB08FBBF1FEA83C656C0EB7B7256BD950 +:10D2D00090D6CD8CFBE3D8C7B13971D6CD86601F0F +:10D2E00029BF515C62284CF889D9BEF5B78F3E1131 +:10D2F000F95D0AF98E85703DB513F9B1279079551E +:10D30000313E4793140B11C5CB70DF61AC3DB422A5 +:10D310009EEDEC6F17AD88673BE3D843C4B39DFF28 +:10D3200093ED22C7FF876A17473F1D16913F685349 +:10D33000B28AFBDB459463E46BAC1D186C9DA09F27 +:10D340005D48B04EF0BC4D5D9D837970FDEA2B3198 +:10D350002464A990894C86F9DEBBCE8ED052223B44 +:10D36000F1E89A9201ED4AAC5E236108DFCBEFA9A8 +:10D37000433DBE0A4C24EEA9ED4CB920E1FCDF4C44 +:10D38000672A966FCCF6B5E07866A58C5D87CDAE42 +:10D3900011FC0B90DF306D45CEE9C3D1A0B9B61CAE +:10D3A000ED8122D1BA0AE26A16BC4FF138480ED993 +:10D3B0008D32E247028B30C4D38CF8CC18DF067D67 +:10D3C000BD752AE4F3B80E2EA69CCB453BFD708EAE +:10D3D000197F35AE90B79F8BDE1760177A68DCF83F +:10D3E000F2CD5E18F73562A896C6C95409D7550A1A +:10D3F000DD4225E65757B838CE3FD35DBC07F5B1BF +:10D4000031C7B737A75A170EC4DF3C02E9FD35A96B +:10D4100097D6113F75FA27A2AB4147A04744C8D120 +:10D42000F581F5CDEFCFC37D1D68174AE48C5ADC3A +:10D430001A6385C41FF97485654C7A64007EBD0C3F +:10D44000722A8DE0B8185E7F0D7CC3EB33608FF1DC +:10D45000BAB741A1EB6F1ACAE9BABFC1C32478F8C1 +:10D46000BF374CA26BA841A5DFFF57433D957FDE38 +:10D47000E0A5EBAB0D0BE8F712D1DB89E3BA22E7AD +:10D48000DE3CC4719A6C6C19D2BF5DDFBF608CE367 +:10D4900075A47F76DFF58D1C85F8B1C1CAE9A57D3D +:10D4A00062E3F181D4311CF98657E477FAF36A1309 +:10D4B000FAA3ACF39E2BF01582113B7DBFC77D22F2 +:10D4C000788B05EDDF5AFFEF5D70ADD6D2A93CA396 +:10D4D000AC2BFC5815ED43F7605CE6FCEDA9D34D91 +:10D4E000D0EE85B7BF50B6409B34D14BED99984EE6 +:10D4F000FB4C26B80E68F89E55E52B9130E2E97694 +:10D500009804DA43E7FB8FDFBE02CABF46DE83EB37 +:10D51000BA32BF2B8C65D79A748AF7EA952EF60C2F +:10D5200094B34FF2FB414CC33BA15CB52C8DF0236F +:10D530002645C2CF61F95C01C9F17A21588BF9B057 +:10D54000763DC7D92EDD17211C6498DF49FD65CDD6 +:10D550003EAD2D86F1BC98218AD8DFC3364F5700E7 +:10D56000EA7FB9C446FB75B6CDDAB2F266B8A65703 +:10D5700007166F81EB4347577F78075C839ECE94F5 +:10D5800052B8E616B4BD8AF8F4C8613CBFDCECE9D9 +:10D5900074A0EDD9754726F99BEA770F51F9397FC9 +:10D5A00059054EA9BA42F4A29F7A6EAA645AE7F8C6 +:10D5B00032C742FCB10D33F6A1AA64C3804D3D3899 +:10D5C0000FA96A9EBAA28ADEABF3E33E0049F6AA2F +:10D5D000B3A06C571DB4DE03FECB360CDAA9ED7395 +:10D5E00054C4139214E6E1B80EF763C9C3643D2F27 +:10D5F000F06661DCF852BE2863FCFE527E670AE6E4 +:10D60000852FE5CFC5A092593D22F9D1EAB7C329AC +:10D61000E3E1F91BFCAB2636523FE194EF805C243A +:10D620000D4BE6F9D63046D784ED3F85F6F09C0DDC +:10D6300077407BA5AF7D86DE3E0FDB670FD0BEF85F +:10D64000006FEF5F6D7A7E2EB6477D1CE4F9B1FA6C +:10D6500058AC3FF7A59E6733507F9F103C23705F07 +:10D66000C3B4613FB95F02FB90257ABA18CA8FED47 +:10D67000C9AB17E446EFDBF12763FFD78A0AC5DBA6 +:10D68000EC013184F9FF13C192743680FED3A2BD40 +:10D69000C9AF25F7D97B2A67C694F362EE2F31D53F +:10D6A0005F33AC44E7DFA531F7559ACAD71EBDA456 +:10D6B0000EFDE2B5C7726AD1FE251ADF3B1FD854B2 +:10D6C000BCEF1D54E8298C1BC2494807A3FCE4D5D4 +:10D6D0007530EF2C272FCF1BD6717F632AD5FBD057 +:10D6E000BEBCA8EF8332FA9B378CDB795FAFFC7A44 +:10D6F000C29BAB68DF811FE5D772723AE9B1436024 +:10D700007ECC0B2C33EB496FE51289CA92ECD156D3 +:10D71000703BE047BD0479F6913C775484591C79FD +:10D720003EF8D14F442FDCFF8B8818C2F8E95F0523 +:10D730006FCA38D4F30F44C2C53A672FBF7F2CB4E9 +:10D74000DBF78AC583762C6A7F1EC94B29D3284E06 +:10D75000F8976322ADD7943CEDBB7F2CB47FA15EDC +:10D7600022BC3DD6DF4E7097D0BCF6BD31F775ECCC +:10D77000376B16EDEE662F9EEC6EC2F5FA8C6AA141 +:10D7800002CBF6805F4C85F6573FAF75A6C0B5EC6F +:10D7900090B26D2CC93F8FE7AAF2E71D9CC1F3A39D +:10D7A0001ECC7726846A2D57A15C811E63F96A8B93 +:10D7B000D73203CBD378BE650D561E1CE5EAABAF5E +:10D7C0003E52698A1BF60EE3E3B2BE31C5F4FB8B11 +:10D7D000BB1E48014961E723A503C6154F34A86362 +:10D7E000D09F18E57DFAFBAD9D975D4EF4790EF262 +:10D7F00010A4EF73AEB9E9622A3E4F88BBCFEF09A0 +:10D800003D6E7F411765922790CB177689FA7BB7DB +:10D810006FA55C51D6B7DFC6A86F0F99EB5F64A107 +:10D82000D76700C9F7FEF4B757CF03959176CD0BB4 +:10D830008FAAEAA397149CCB2EA57C90D343925930 +:10D8400040463B58C6F709480E4D1514941F75EF16 +:10D850003018A7D7D55587AF585ED2EAB7A3BF9B7C +:10D86000AA307F16706A82060118906ECEDA230104 +:10D87000F46FDEC223B52948E74A81D67999C4ED11 +:10D88000D73D272A491EDE4A8BACC3FA5F8E15C8E6 +:10D890002F8CD8C946E07A4FCDB114199FDB78FCA4 +:10D8A0009EEF62FFF7740B944FBD3C8CE7D38FBDA6 +:10D8B00071E8F59970FFC1C8120BC60B97BDB1B4E2 +:10D8C00009F15AB8D783EF2BBFD43397DD16C51FA4 +:10D8D0006B9D95F29D096F06489E9B5DED53285CFC +:10D8E000DBCCD76993E4D09328AF2F0FB3F3F7A025 +:10D8F000EAAC9ADD49FAF232EA8BC3E56782D2A735 +:10D9000027332D4CA38D257F11B99FAF0FA7CC894D +:10D91000DABFFA9264A57D5435D697ABDEC13C4997 +:10D920009E3201FDD6EB63ED5206EAEF48CF633835 +:10D93000BFA3BD7ADD2F6F3A3A2C1EAE542F89F467 +:10D940007EC197ACF65FD0DFE87620FDCBF45A3F7E +:10D95000949F57245AF7840033631C94671D1595D0 +:10D960004D346EB3DD54BF34C7EFE2E64C939C2BCD +:10D97000284CD1794D8CDD64C746F7B52FC1713D78 +:10D9800027D13E3E4DA5F5F3B93404B02372C7212B +:10D99000C447664DB6CB1AC5158A15F3B489FABAD1 +:10D9A000D46EB40740F23D7AFEF192F6EC215C674A +:10D9B000FAA5EAF00A507FF87DD113AEA2F55FCA4E +:10D9C0009FED818E4388A34C5890C2F03D65566F01 +:10D9D00035E571135B3A24BCBF1CEC9D0AEDCBDF2F +:10D9E000904CEB54B362F2B5AB63CAB1EB85925B7A +:10D9F0005F1F9CC826E2BCB7FED042E3D1DEE3FB4A +:10DA0000165E9A1CFC19C9015864CBB7D0CEDE90C3 +:10DA1000F27DB47FAC286313CAA323FC7B94AF8C44 +:10DA2000537231C605C6FA618E9BE7CB9DC7ED6187 +:10DA300094EF7DA719D9DB9A93DA6B635CB8CE2A91 +:10DA400032B4AFA56E85EE2B3BAD5D8DF67164BD36 +:10DA500088369B8DDCA58DA27DC9535E1B8E7840D8 +:10DA600073AA8DF4A349F033DC3FA515707FFA52F9 +:10DA70009AF79562B437C744BE4E01B4F2E0789687 +:10DA800024D33EE4527726F77F617F0ADAE9D6ABEA +:10DA90003269BDE5057DFF07FB521B85F1ABF33114 +:10DAA000DF70DCD7F4CB3DFC77551274FFC1F10079 +:10DAB000D141BAC7A47C99F287D16E8E4780BD1838 +:10DAC000ED86ABB3F400B57FA9581852FB097DED84 +:10DAD0002760FB310CF218CC57E0BE4DB8D6C422FB +:10DAE0008DC8876B206E23798FC97BA6B3B08479EC +:10DAF0000EE431DF72E3BE7B06794F2999BB437791 +:10DB0000523F02C5B11791C768ECB2B879CC0CECA2 +:10DB1000BF7F1E93DABBCFCA5E9CB87F947FCC3F99 +:10DB2000701F0B5E0F621E63E5FB5B783EE29B8F0E +:10DB3000F32F5CEBD02C608F0AD7F8459E97A80B8B +:10DB400031AEBAB775EA4C8CB33658954A2C7FB7CC +:10DB500075EAE63AB0FBA358704E3D3CB70DD4BF12 +:10DB60001CE561B9A8DBDFA03827CACE38DBC3F7D4 +:10DB700062BC324D8F3F143112F6A33C678A22FA01 +:10DB8000C9D8F186049E07399BBA56221EB5C2CD6C +:10DB9000E39315BA3C1BE5D76DBE1548175C10C45E +:10DBA0007531635DBA708D8FD1FA380BE6A13D9B5C +:10DBB000CA787EFA35F8FA23A48B5DDE534BF690D3 +:10DBC000F5D42D8FE2EB9D6EE3FD4D78CED8A1F319 +:10DBD000B99029DBEA8AFBE7E1BD7EE43CD8BDAC25 +:10DBE000C4FD582DCC8FF2DD9C7D5D39EE4BD850B5 +:10DBF00090235AA2F80FFCDC867429CCB769967181 +:10DC000051FC1421CF846B998DF3C1B8FF673A5D45 +:10DC10008DABB3698E1FE9DE4B5781DB59A42BE234 +:10DC200002AFDB6A1F42BAEC721B79899FDECF8597 +:10DC3000789BDEBBFEBAF42E6410509412DD9FC0B8 +:10DC4000F15F93CFE361C36F0D95BED30AFDBB2394 +:10DC50006817D74994AF6AB5BCACD91C32E2E2D69A +:10DC6000D4AE467CC538B6FD3DD0E44508D1A69576 +:10DC7000F8C77B78FE30F15A78EE52C1F7A23B2A02 +:10DC80006E8A8D17AE613E89E31D6109C7599BA558 +:10DC90005409E41F97CE7C03E29C5A742A1437DDA2 +:10DCA0003C13CF2FA94DE1E52FDC0D5B70DF722D0A +:10DCB000E64314B7AF9D89FBDF6B4B79FD7FEAF537 +:10DCC0004FE6A8BF71679BEC448845E11D601FDEED +:10DCD0001CD03E688CF61D24A25B1BDA016B1FDE94 +:10DCE000115B0FF2F401F6AFB470FBA068867D887B +:10DCF0008F5B74BB799C695C4FE8FEA517B778D041 +:10DD0000C02DBC791CB7F092FE1CBCF70BB2BF6DE6 +:10DD1000E8A62922E778E0353F64B45E358A7DD4F1 +:10DD200088FB76F618F1486F5EE0217C3D56AE4ADE +:10DD30009EEEA9BB1DEE6F477D455CE3EF4D5DB8E0 +:10DD4000B662C89B1DE50DAEFF96C7C7D716E0FBB0 +:10DD50007333EF65B43FE0B1606606BDDCEE56FF9D +:10DD60001A4DFF696EF56F6477FAF8E18BE1C7052C +:10DD7000775CDCC9CC0F253589F4D3A0A741BF77E8 +:10DD8000753EBCA3F3E5906EB74B44D5918BEBABDE +:10DD900036657B1DCAF36BFC7D98447C4DB49E6058 +:10DDA000F0CBB0031D799C4F7D57EE17DFD5EF2BDD +:10DDB00099C4A6C8E951B87E2EBFEFDD2433DF7BBE +:10DDC000E525D7B0235E3FED53C6030160BCC52DEA +:10DDD000E087A3E4B02C57D0E35245E438A54CD7F4 +:10DDE000F9FAB84A27B1A9F2F8BEFB2BF5E7CE4FF6 +:10DDF00036DB2FE35A91CBC7EDB4CC313DB76C3352 +:10DE0000F7FFC67D137A9FEBE1783253E9B9C52D50 +:10DE10003D02F2A9742DE79712F4AAC89777E77F1D +:10DE2000E7960731FEC92EAFE4F87EA4117133499D +:10DE30002B1637C1EF757A7F0FDB3C1AFE1E1004DC +:10DE4000B60E7E57F3E768B8FE9AA43AC8EE595367 +:10DE5000B54F91DF56178FB721FEAECBA5750BBF1F +:10DE600029FE36E8EE94589DBDB26FDCB63CD184F5 +:10DE7000C71AF39C3F6F7173363C6FDC7332E15409 +:10DE8000D7CEE438EB28359FE29CE33A3FF6B6CB99 +:10DE90000B53783E4638D458FB9155AF4339B4C53F +:10DEA000E6C1B86D7F7BDBA865D02E08FFC63CFEBF +:10DEB000619B6AC57E9B210A6883DF86C98DD77FF7 +:10DEC0000FAEE3FE75D75597C2EFEE1F8884936DB2 +:10DED000CBE5F8D9FEF607E8F79FF95DF4FBFEF60F +:10DEE00067331603FD1EDAF9C08C4B50EFDB45CFCC +:10DEF000087C4E0C7EB63497BFB773676E2F7EA634 +:10DF000062DED88B9F4D9DC796C5E067D85F147EB3 +:10DF10007667EE00F8D9AA5CD9D83F928478E2FE01 +:10DF2000548E9FED4F7D80ECC6FE541D7F5245CA36 +:10DF3000DF1E3A12BC0AF3D426BF817F0593BF03CC +:10DF4000FDACCCE5F8D50F71936B7574FB6E01AF2A +:10DF50008546FB9E20D1A1E90E037FE3EDEFCDE5E1 +:10DF600038D63A6C9F3DC0F395EDBC3DE26751CF8A +:10DF70006FD49FBF6990E723DD6F8BB2271BF5E756 +:10DF80008E7B3E588B7485E8A207F93BB2DD4729AA +:10DF9000DB6676C413BD2EB7FB99D6C86BF0DCA741 +:10DFA00004FF6F11EFD0F6F2B86EE4234B1D28A7E3 +:10DFB000BB05B3DEEFD2E5EB295D3F0FEE9ACB70E8 +:10DFC0001F8F75D73CE2075BCB38DFDB3F13A2C75F +:10DFD00055B494E37D231F59FDDAA801F2E5A77239 +:10DFE000F57C79A968E4CB4FE5C6C99733671CADCA +:10DFF00045F9FD0CE41BE77785EBED4E949B4B74E4 +:10E000005C6AEC739AC9CE2AE727803180719CAF95 +:10E01000A078ABF0FCE554B69E9F4CE57D624F23A3 +:10E02000D24B1319C7735A25CD3E0EDF87AF34E5A7 +:10E03000B5C773797E635D63C67106C36F1E8DC1FC +:10E040006F76EBEB30A58CDBF7F6574A69DDC4A899 +:10E050003FAEDB994B04E6C5FB1E457B1EB5DEDA01 +:10E06000F9E34B9211A7680BCE4D677170D4BEE7F0 +:10E0700072BCA7B7BF1F735C9BFE206E2DABED4833 +:10E08000F7DD6B97D0FB29D68CBA2AD4E7E3B956D3 +:10E090009AA7EAD81E8B231C473B66F04374A864FA +:10E0A000CF0C3B0E762C106DC7FE5DF72FBD764C66 +:10E0B000F713861D1B1D32DBB19168C7843EBFB4C8 +:10E0C000678F278FF05C08D0705F41B99DBD9A546F +:10E0D000457943CF3A50F579DE3D64C772D08ED191 +:10E0E000BA005F876A5EC408FF69DDB3FED3D7A0BC +:10E0F000EE895DAB48EE0CBCFFE6BC0CEADFF83DF8 +:10E100007F05B7630FED02FB5595D87E7D99CBF166 +:10E11000FFDA3C9B1E0FAB616C7F11F6AB362F3BD9 +:10E12000B1FD32FC2C887E9D3D335A1EE2FB0383F9 +:10E130008FC105DCEF19E561BE1CF2BFAA4EC7CF47 +:10E14000EA8FAEC3E1BA2DE1DA8C38F9E360FAF177 +:10E150008CD8238C8ED68F8EF8FAA1E665729CF34C +:10E160001BD20F5C7F5E1225DFAA1EB78C89D18B74 +:10E1700052164942BFDEF9635B32DAA3D09AB90383 +:10E18000E2FE865EF4F697502F3A33AF8ED20B350F +:10E190008FBFFF12472FD4BCEAFE7AF1BACD7B9C29 +:10E1A000FC95E4235C797A9E91470DE29F76717B22 +:10E1B00099C83F5D91C7EDFCECBC58FFA2FB07A3DB +:10E1C0007D02FF342B8FFB97EBFAB58F797E02FF30 +:10E1D000345F6FBF282F817FD2DBC7FAA79BF47112 +:10E1E0008FDA15E9C475771BFA23C251C28E687A9B +:10E1F00086DA3F7BE87EF8F59F85C8B3AFA35F1A48 +:10E20000E1A0F8777FFBD2FAAB94FE7EE9FB7ABC03 +:10E21000745F1EB7730735F04B388FF679B45F66BD +:10E2200030BF346AAF945C3E805FBA2FCFCEF72305 +:10E23000F7F9A5FBF2B2E3F9A5408C5F6A24BF347D +:10E2400046F74BE5A12317E59786AA771DDFB0DED9 +:10E2500025F24B1D09F4EFEBFA25A3BFDD1DFC3DB4 +:10E26000E13EFDF33D6ED6BFA597A1FE75E45912C0 +:10E27000E95F473CFDCB9C7188DE33EE7D3F518AE0 +:10E28000505E79A99E57C6E691D72D3C23207F6228 +:10E29000F77DD811D78CA277929267AA37708BC678 +:10E2A0001CF52B1C8791B780A804A2ED7847027F4C +:10E2B00038981DFF9B2EDF9FD507743BEEFB5A76E7 +:10E2C0007CA871CEDFF2BED93827D68EFF2D2F7EE7 +:10E2D0007CF375EDB8D1DFEE56B31C8D7B0EE448B0 +:10E2E000E88B6FC6FD02E488E6C7FDB8E8E0EB52B4 +:10E2F00092BE2E0572F4B7BC28FED89FD33484702A +:10E300005EB7817C21E121CF948CFD700AED13D39F +:10E31000F1478DFA0BE678D970F4EF928E63E9BF7E +:10E32000174FB2913D597F4CA075CCF4C29E10EEB0 +:10E330002363EF59681D54AB8D503EA9FD90797051 +:10E340003F463AE25284CB715CAA599F6753DAADDB +:10E35000EE78EF13596D5E5FA30BD71BEC94DF2DA6 +:10E36000157C99C3811E42CE9A91A88FE953BD3482 +:10E370004EE7488F1BF1AEA60C6E3FFBF48DBFA796 +:10E38000E5BCFCCB4813DA41F9323A9FA67038CF8E +:10E39000D3D40541F25F51FA56383C4E5C4EFF88AB +:10E3A000C247D6E75EE788272FEF49BE4B8647D1A5 +:10E3B000D9EAF2D0F8D2D82E3A370FA4BDEC4216E3 +:10E3C000C9CD2EB4DFAB048B8CEB229D022BC7F39F +:10E3D0001F3521D983EB1146DE7F8DBBB88D9F930E +:10E3E00003B11C3C7F968E6322BEAA80FCCF1C5ECC +:10E3F0006C9C9FC0F72595F3FBAD2EEF026C7F4F11 +:10E40000445090FF3766FB26E3B8DE4CB96F01C776 +:10E4100081395ED12984399E55A0EFD3657E0DEDFB +:10E42000482DD3714E7D1CB52E99BF57980F762578 +:10E430006ADF5DADFE5C96AFB78FD9D72538566AD7 +:10E44000D87E7331CBB460CEA7F8552C37F9582657 +:10E45000E1AA5399C2E96BDEDF0572E91DCEE7251B +:10E460004951EB09561797CBA3A26F1EF269EB94A3 +:10E47000B3EFA37C7DF28B24057182EF2B91D9B889 +:10E480002FE6FFD5797D565FC70F93AC553594477E +:10E49000B0577EC4732599CB8921379B1ACAC96EA0 +:10E4A000FCB1E17DF524D89D630D11F5A415DF774E +:10E4B0003E4D6577BE7715D227B9DC8F5B97986F95 +:10E4C000ED07EAC9283B3723DF772FD6DFE4EF32A9 +:10E4D000FD7EC3B233EAC928BB67B4377072499F67 +:10E4E0009F24733A031FB4E151F1F95FAD9ADD4BFC +:10E4F00076CFC5100FFFCCC1CF5D04826936284F9F +:10E50000730984734E677E09E39F7A16A4EBC5FAFC +:10E510009DAB5807B59BC98ED07536E2F1A5E4FFD7 +:10E52000246E9774BAAA6BC40BA05716C74115CFB7 +:10E53000D3D16A59B93FB5EF1C1DB58CE75F498A45 +:10E54000D216ED7FA47C85F4E467C3B97D6DB1AAD2 +:10E550003FC37996A85C2E568DB0915C38527DB43D +:10E560003F98ED7BF2C927813E74F4A5D8478F6DA3 +:10E5700060BF1408A19A1A1C4C017EA5AB7E3A4CD0 +:10E58000D49EEF0FE3FABC5CCE14B437427988F026 +:10E5900084E4F20EB7067A77FF5796B8B8E3F1E154 +:10E5A0003C6E681C7B1DE1C6F7678B84B382875D78 +:10E5B000B004F539DF46EFF31D2AB8DB1189632F6C +:10E5C00037B85639D0AF144FBA9BD6339B8F5A28E1 +:10E5D0000F4BE4679C417E5EC386FCB903BECFE966 +:10E5E0006CE1F725AADF3089B508E9F87CEED7465B +:10E5F00039E69BE2DE0D93A17E3CAEF3F8DD74CEEE +:10E60000C8F11419F56AB36EFFA74D7190FE6C380E +:10E6100096F604AE031AFD18ED536D61A529CA0FD5 +:10E620000895DCFEDBCF0B34AEE76DEA3BC8BF03D9 +:10E6300063AFE3B88DD2C114787ECA183FF3C1D559 +:10E640003E3514467B9B0EFC10D9E07C787A388FDF +:10E6500067E4A9222B8F924BDBD4A01BEDB4ADCC89 +:10E66000C6D0DE48A9E6FA8D8240FDD9F4F7867A55 +:10E67000FDF9701EE79CD3AF2813932A516E0F93B8 +:10E68000DCC20C499EA91FA8ECB0A99F0CAFEEFFFD +:10E690003BBE8F8CFB44F547323B6BA4F7573ED70C +:10E6A000CF2331F0F9A29D1C9F1FA905448CFF4187 +:10E6B0009955CCDB8B985FAC87FA11358E1EBECF97 +:10E6C00040A3F6A5FA3E8391219B69BF78718BB96F +:10E6D0005CCA367F8AEB27236086E1A87DC7A5FA4E +:10E6E000FEE5D298DF8DF7841FC51FE2AC13C6EE9E +:10E6F0002348CBD7DF13D7F7110CF53DE37D829A82 +:10E70000958FFE620D5F5FDB50303D2F5E3B236EC9 +:10E71000694E9BAEA2FC34FDD8C3D09E59C293492A +:10E720005E2CA96087F19C62A9E765B2FF6B8562E8 +:10E73000C40D25073B4C654D2FA7865FA6FDC27E05 +:10E74000BD2C1FE1E5D55056F03941E2F3C2D4901B +:10E75000B506C671BEEBCA01E3CB3F407C19888A7F +:10E760002FFFA8EF8372DE177913F578F19AD2CADA +:10E7700075D0EFE270AEAD84D6191AA97FC33F58A9 +:10E78000A7AC5151EE0D3F61977AAE70136E2954CC +:10E79000E078EC0E369DCA9A5E4E0D5F81EF65C241 +:10E7A000F879593EC2CBAB053ADFC1F033C6786287 +:10E7B000FDCBC2C01E2BE2E283F99745EEE963026E +:10E7C000F8CE2493FE533F0788CE150EE03FB26982 +:10E7D0003F1EF12B919FFBEEDAC57A1CCAE330B5E0 +:10E7E0003389DE2795F29987BFAFA2AA3CCE63F2A8 +:10E7F00093C5B41F8BDB77376BC32396AC528F95D1 +:10E80000F26437233EF9646EDFEDF9F263F85EB32C +:10E81000D511B60E43BA9431C2876FD4EB93CAF4C4 +:10E82000FAD423570CC3F6A9BCFE26BD7F4BAA5EC3 +:10E830002F879AF1FD4FDC4F85F50BF5F65617AF94 +:10E84000B7B9F9FD5B325808724B782ECCB90ACBB8 +:10E85000479EC1725219D898A832AAAFDBD557C6C5 +:10E86000331595A8FA9F829C207DB664E8FD161F9B +:10E87000A6F7761F6CA8E7BF2FE6EB7FDA4DFA7E8E +:10E880002B30AFDF86F28355B6F6E875AB2D09EC79 +:10E89000DE5BF93AFE5DFD137A0F68A38BFB9F8D5B +:10E8A000AE81F3DEF5BA1DBF1FCF1919897E919F86 +:10E8B0003312D0CF15D9A19F2BF2D309DF22BFB6D7 +:10E8C000C6C5F74D76D6FCC4817AB88605EB296FAC +:10E8D00038CADF17FFC982754997106E514238AAAE +:10E8E000F19C6689E75D4D0DE6F774FE4F3EF7E358 +:10E8F000CDD5EFBD8FEB55522AB8E362D4EB0F169E +:10E9000010BFAA6C2C49F8E6F4DBD06B433EB7FC91 +:10E9100058253B2285413EABB87CE2FEF2E6EAE9AF +:10E92000E4D7503E47FE23F23986EF1F37E43365C4 +:10E93000CC372B9F1B513E8BFBE47323CA5B313ECC +:10E9400087CBA75136E4D3281BF269940D7E6CCC9B +:10E9500008BA53A3E46BE36291E7655FEE70CF8B77 +:10E960003EA7F0AB1D0B96A0BC56DBE2AE03AFCDCD +:10E97000E77E58BA51C3A364FAD9A1C1EC4F40F263 +:10E980007D807E21C0FC0770ACDA1ABEBFB2C5AA7A +:10E99000B95721BFE6695762BFD9F322D678F61975 +:10E9A000DA47787B2E7746BB16ABBEEF4B9947F61E +:10E9B000CB7D23E865D47373E6813E468DABCFFFF4 +:10E9C000ACE3EB788A8BFC61AC5D4CE4AF9AF2E788 +:10E9D0003A14786EF34C91707B4BEE3C4759D478E7 +:10E9E000FF2B9FE3B7CD3339AE1F70CF75449F6FB8 +:10E9F000D45BEF15EBE3ED4FDF91CFCF375AC38EEA +:10EA000090BE30D017B41FD6F9738F8C00FE3E78BD +:10EA10006309AD23FC7F79FF07E57DC47B6E94B36A +:10EA20008D5F5968BFCC5BF9DFDA8AFB6366E47BF4 +:10EA3000C71464F7E52FB1719F98B6BA15F3DC558A +:10EA40008293A17DB3A4858EE3FB2FBF176C6C5D11 +:10EA5000557F7E1E6B80D427CE3E98DF5B3B1EA188 +:10EA6000F70CF0A42588078F63300CA957CD236DD0 +:10EA70005B3518D771A1A300EBD714BC38BB05E4F4 +:10EA8000F318FA1018E7771E7986C6794CDF9FBF16 +:10EA9000FD91D7E8FE0F054679B076578AB11F661B +:10EAA00001BECF72FCEE02CA3B6EB27714202E7309 +:10EAB0003CB9E3F8DDA87F77A779787CC4F9F0EE5C +:10EAC000C2D16DD17EA9B980DBF19B2CFC9CD7D83B +:10EAD000F1FB0B8CF7278F8CE5FBB5BCD5D1790604 +:10EAE0006321D37AD24D7E412D8BD2CBDEF1AEB4F1 +:10EAF0008738CEC2C77B6C652EEDB3BED1C6C77B4F +:10EB00002C09C64BF7250D38DE3B0AB87DDAA0E3A9 +:10EB1000F6D09FAF11F9327F7425AD7F491D376163 +:10EB2000F9D8F5A333B16CDCFF7B81CBA5363F254B +:10EB3000148DF7BCBB7038E59D37E23E439283707D +:10EB400041F43EC4393A7D188379531CC8E3CC8420 +:10EB5000F3BCCB6EE6CB5D7C9E37E13CA1FFE34985 +:10EB60003A5FEE4AF2E8E77AC59D679BC1177DFFE1 +:10EB700023D0BF207A1FB731AE9505BDEFF9D0F88D +:10EB800006A3CBF185401718CF4C9DAF83D185EA02 +:10EB9000415EBD05CF9BE56F658A999FABB8FCDDF3 +:10EBA00068E7F33C96ACF37355DA80F3FC79018F98 +:10EBB0007F6ED4F72702FDC7C6A3FF45CFF37A3E89 +:10EBC000CF86A1CF73C140746EC2035F8722770BDB +:10EBD000B9DCED1AA2DCF53D37FEBC43F85CB87E2B +:10EBE0003EB36E5B1D237CD743E7C1ACB72B4D70A2 +:10EBF0004B97DEDE3D9E11FED11528DD83EF5F6F62 +:10EC0000D2E335FBF9D14CCBE2793F7874C44908A3 +:10EC10007FDA545542E76E7507F8F7CBE489330B7A +:10EC2000D1BF1978D3EF8AF8BAFDC9C5FCFCD22D43 +:10EC3000B5C9CBA2D7AFBFAFF07AA7C2F9B73055ED +:10EC40009E5DA3E0B96D6DFCDCB65A89E629E4F35C +:10EC50007D78ACD0E3405CC7CA7C5BAF83797FB87A +:10EC6000ECDAD8EF0E30C49512C5BB2CE6DCB677D3 +:10EC70006AE5D9788ECDE91C89D6E7E9CF65B43449 +:10EC800041A0E1E2499EC626A4BB45F1A3FC2E0E9D +:10EC90005408F741F9BD92325A3FCB9CF11F17F04F +:10ECA0005C8BFFD0389E16986C23F9ECDA5B4CF144 +:10ECB00077962CB1EEA878A2CB1AA43CA84B503C76 +:10ECC0003B41146F67BC9EC6178573BD77DD705AD4 +:10ECD00067E9D2CF017F37A784F0936EC93B1BCF82 +:10ECE00057D252F9BE98B45650243C8FFAA1691AF3 +:10ECF0006E251C5730F74201C75FB93FBF6E2CAD80 +:10ED0000DF64A629DBB1FC83B7AD744ECD81CBAEF9 +:10ED1000A2EF86D54C9CF9289E3FF7D107767ABFA3 +:10ED2000BF66E28D8FE23EADEE0F92A8DC02FCF6EC +:10ED3000D9799E10C2F305E1DA0DFEA9FB806F3C84 +:10ED40009E3BD3FDAAFC16E22A775B585043FFCEC8 +:10ED50003411CFC7D96193DFC2FCE5748EA8B4D15A +:10ED6000BC8239FCFC1C6518BF76E8D7B0A89FAB05 +:10ED70009383ED8E151BB8B86F189619EBA16BF342 +:10ED80009716CAAB0FB9E6521EF251B094DE2F02AD +:10ED90003D76223DB6EE2F15514F7F57CCE5E85A10 +:10EDA0004B682B9E53C57EC7DF6338BB8F9FF3F63E +:10EDB00097A98E36C47FE67EA7693DBE57FAB13665 +:10EDC0002E13FBFBD8BBC59607D79D759754A29809 +:10EDD00019E709B4E3398C763C7751D6CF5D74EBF3 +:10EDE000E72EF273189FC67318A1FE9F315FC2F51C +:10EDF00043CC97A0FC6C834AE5E71AEAA9FCCB0652 +:10EE00002F959F6F5840D7171B7C747DA96119D52A +:10EE1000FF5B839FCAE18635547E5B9FC7B48D75C7 +:10EE20005B707D6CF92E0BBD2F3172FF813FE07B53 +:10EE3000A8B732D183E3BED5FDC0227A3F16CA23DC +:10EE4000E0BADE2D32DCC771EBA4CB481E671F5140 +:10EE5000DFCCC2FA9988FDC0EFF32C9477DF3CD564 +:10EE6000B107BF3F73F3AE83853FC27A55A2F78ADD +:10EE70009827B8E88750DE3A671EF99B36AB62C127 +:10EE8000F79E0EEFFEC8EB804071BB953565E27BC7 +:10EE90002B454CAB073D9A50F5E9F267A1BCAAE8B7 +:10EEA000C43607D0559E53D5992563F9052A97A5F1 +:10EEB000D5A6F1B8E5856D8770DFAC1891D2E87EF4 +:10EEC000CF3617F4B700950CE29255BB57C94D6584 +:10EED000385EEE27CE292F6CD340F52F95DFEECC90 +:10EEE00090F179BCFF31EE4F6BF9F379799C927117 +:10EEF0003033AADE532EE8FB9D4F6C53251C1FEFC9 +:10EF0000FF77CA896D784EA0EAAB491B01F77FAF46 +:10EF1000A8725B0BEBFFFCA3259E03F85DB2D35BED +:10EF2000F97E1D3CCE0BE9E5D446869A84FEF6A414 +:10EF30006B32A37DC94679AB555B84FBD7BB92F896 +:10EF4000D5F87D7E29F71F8B8AB83DDF9AC4FB3D3B +:10EF50003D5F0CB515F7EF37AB84DFBF3583F703A3 +:10EF6000727E3DDEBF785E8E8876E1A8F7E6643C6F +:10EF700097BEA9B584CEA7FE6321B7F36FD79516C8 +:10EF8000209EFFAB809DD655BA8A95D9186F6A82AC +:10EF9000A3632FDC5FE2F0CDC57E4A5A2586F3518C +:10EFA0007D1975B85769F6A4ED6FA15C5531470717 +:10EFB000C6ABD38B8AA9BFEEF6696F5E85F6E169B1 +:10EFC000899E33EFDA1F4FC3EF309E54CB3BD0FE08 +:10EFD0003D956DE77EE9217B6804F4F772F6AFF2A8 +:10EFE0006E4EC5F7F5D4645AD70DC4DF277C751172 +:10EFF0001F6F49F3634ECC8FCEA6F2FC66DB81DC3B +:10F00000B714D2EF5A0949F491C4E9747B6B4D7B74 +:10F01000230CE91EDD9FCCB707D73B315FD8605189 +:10F02000B0FF2EDDDE69AD421BFAC78F0259747E38 +:10F03000FBD9872A1EC5746D82FEBCA6003F2796A9 +:10F04000499E7AB4AB67374EC88AC6D9271419FBD4 +:10F05000A862CE6FD7D8E1B29CBEF3DAA3CE9BA054 +:10F0600073CDF3038FA9D1E7B717ECFB4D0D955581 +:10F07000478F30A9FF39E760EFE8FCC2E1BDE751F7 +:10F0800077084857593F8F3AF6DC733CBF1DCF33A2 +:10F09000CCD3CF478A3DFFBC1BBFEB8AF31FE4BB39 +:10F0A000AEB726F8AEEB8785467C6A9E7757F02090 +:10F0B0009D3B9FE83CF713D6109D5B9FF0BBAE2DA8 +:10F0C000EFD4E0799589BEEBDA753A18F7BBAEB7A5 +:10F0D0009EEBA0F3DCBFD73EC4F3DCF1FB0E55FD85 +:10F0E000BFDF6ACD76D9303ED85A6CD647E36A295D +:10F0F000E6FA88E7ADA851CF19114C666A545C3E18 +:10F10000B235D3541E15CA33DD3F7A5F89A97E6CB0 +:10F11000C7A5A6FAF1CF579ACA15E129A6FB27BCC5 +:10F12000526B2A571FB9CA74FFC4F7E79ACA9323D0 +:10F130000B4DF75F7E7A89A9FE9F7A969BEABF7D89 +:10F140007E95A95CC37E64BA7FBE9DEFAF61EF7010 +:10F150007D7D577F5FC7A0935AC4FD517511B74B92 +:10F1600076F033A1A8FE9C291A7DCF02D70B35D3A8 +:10F17000FA20241E51F755E8FD645C316FC0F5811B +:10F180006DBAFFDDA8FBDF0DBAFF6DD6FDEFFDBA4E +:10F19000FF6DD2CF41DEA2E395D06F2EDAAFCF3D27 +:10F1A0007CAD66712A7B14D7E92D93F81E896C908B +:10F1B0006D9493348D9FC3E893550DE50CD78BA2C6 +:10F1C000D74B92CB924D65477EA6A96C73E5F5AD02 +:10F1D00097C0DFD43125A6B2947AA9E97E6755A5F8 +:10F1E000A93EF67B7C7B0B795ED2CDE4B7507E7B6B +:10F1F000BF07B853E0F13ED36AEEC1786EA7D016D0 +:10F20000FD3E0194C349E386F03DC022C6ED9A5B02 +:10F210001530EF71A54A5DB8CF8679A59EE8F5F364 +:10F2200077759CA07A77E01AC40D2AC6CF7A13F7B7 +:10F230007BB17F17E93BC95B0A151ECF7B571422B0 +:10F24000FE76F5F882093703FD0E3CF42BFD5C4594 +:10F25000FE1DDA65BDE72ABEEFA7EF1D54A78A1889 +:10F260000F9FFBD44FDF93FDE211878871A8CDEA91 +:10F27000A3F3114FB48EA4F21B4546FC673E6FB159 +:10F280003D58F95603C6CDFBF8BE88E5E7EDB44E10 +:10F29000674BF33833E0FA008EABBAEF5CC6139BD2 +:10F2A000F9398A86DE0F76EEFECA426E07063B7794 +:10F2B0007FA53EFFD8F3F71FB699E306C62274BEBA +:10F2C000494460AB3641FCB44C1FDFD1128DBEA364 +:10F2D000E254220CF1C8A32511CAB74E8BCCDF161D +:10F2E000755FE94C5688F6D7B86FDB81FD94A7743B +:10F2F00007F9FBB14DFB4AE93BD34D01FD3BD381FF +:10F300000CFA7E49BFF844C73FBBD11F46E9DB2159 +:10F310005D0FCFEAFEF06CA0D4F4DDE94345B6B84A +:10F32000FE20D6FEF7FB8E498C1F8CF7BDE98BFAC9 +:10F330008E49F0E2BE63D2ADFBB9A17EC7E4059D64 +:10F340000EB1F31CCCEF25835F637C9E71BF63D24B +:10F35000753A4CED9725FC8E4938EEF7A6EFC0EFD5 +:10F3600098001F6E090DD1EF615E5335D0774C6A5E +:10F37000B7E2F7BFBB82A562F47ACC1F0AF9BC8D55 +:10F380007315AE2E9AB10DF57D7D51AF1DDA3A455C +:10F3900020F9D4F03DCF58F96CFE7242A724F48FC7 +:10F3A0008F8DF3504FE8DF8F3EA17F3F7AB97E1EED +:10F3B000EAF2F3B7F1F3505BCDE7A1766DE6E7A192 +:10F3C0001A7A6C9C1F6AE871EF7798023C9F1BFCCD +:10F3D0003B4CB233FA7B59DD46FCA79F3FD2E59602 +:10F3E000F5EF3069FA7798BCA6EF737DA5CB45DFC2 +:10F3F0007B7E3EFA0ED3A99DE6EF739D4EF07DAE67 +:10F400006F8D124CFB2ABFF1EF73054AEBD06F25CD +:10F41000FE3E977C98E2FE98EF73FD5FD89BC27B1F +:10F42000008000001F8B080000000000000BED7D35 +:10F430000B7855D595F03EF79CFB4872B939797237 +:10F4400081104E1E24210F72038904443C8118034D +:10F4500045BC80606CA9DC00DA20B106D4364E9D34 +:10F46000E184040C0878A3D841457A83E8C4D6B671 +:10F4700069EBCC30F38F9D1BA094FE836DB40CDA46 +:10F4800096762E011194F926A08E4CC5E15F6BEDA6 +:10F4900073927B4E6E48B03AFFCCF74DF8F4649D02 +:10F4A000BDCFDE6BAFB5F67AED47968D75EDDB26F9 +:10F4B0003056DFB6B824E0666CEAC4B9A292C6D86A +:10F4C00032276BEA2E66EC9F6DACA11BDE5FC59FF9 +:10F4D0009B19FB613E5486F25FE4D918AB608CA99E +:10F4E0009222DFC018BC654C61CCCE9A18CB61ACBF +:10F4F000B581055C39F872857CB688CA6D57E1B96B +:10F50000AD3CBB434865ACAF4B64421663EF752D11 +:10F510004D0C44B56F7DFE762363E1FC41B8AF41ED +:10F52000AC0D015EF1656B3CB9C583EFB3153BE1F2 +:10F5300075B6C15E1B82F61EF72DF1E4BA8796BF41 +:10F54000D3C8BFB7F693AB48349EBC0C7F2E8EFF5A +:10F550002BF73FEC42BC3A045687E37F2AC39F98BF +:10F560000CDFB1CB503F9DB155386091B194299CCF +:10F570001E463B7B2DF866B60B6A28C6F8CE14F003 +:10F58000EF3AC6F97E910BF4D0FE59F4BDC8705C19 +:10F59000A977AD01F81D35DE27003DD915A80FF478 +:10F5A00075222973109FDE027C1AFD8436BAE8B9F1 +:10F5B0006FA3CCC25069FF462FC12F6D54E8D9B557 +:10F5C000B1809EDFDDE8A3F257365612FC5446F7B1 +:10F5D000C1F872C63EBA839569D0CF3B19A14DF1EF +:10F5E00088879F95211EF0E3A9827146040E245E50 +:10F5F00049640CF9D658F6C236E05B4049277A399F +:10F60000998D850B18FB4F1C17D47DAA5D7464423D +:10F61000BDAF8C13994DC62FC3BD1B0176064505A2 +:10F62000E58C69F6BE08D457E1DFD56C6C727DF8C5 +:10F6300079C02350E99443503FCD2FF5455CBCCFB2 +:10F64000AB24534DE1D7E0FB8E2A977F1B947F8537 +:10F6500045956721099BC2BF87F2D575092CEC033C +:10F66000BA467E2EDB701C3E89BD9885F899EBA7C3 +:10F670006A8B7BBC4857AF3C6EF118C6BEEC961740 +:10F680005501DC97BACF4143B5C833902C62073E91 +:10F69000B7AA7EE2F73B0DAB772EA7D6AAE5B30556 +:10F6A000582F20A05C0F27BF8C490CEB51FFF07D39 +:10F6B000DF4446747BDC37CDA3803C9DCE60B538FB +:10F6C000CF6E11DDEB0F011D2EA9B35390D755332B +:10F6D00032324FC3FB3F2F70507D5994F726C0B88C +:10F6E000D8EF9CEC4540EE544F203F394A8E35858B +:10F6F000CB13FC966EAB84FA387FDD447FC1E68580 +:10F70000713408CC1D45D7E70A44BDBEEAA982F191 +:10F7100096EBE30558CC04C0E915D9361FC24D2C31 +:10F720000C7069C0DD84F467BD9C9E06FF98F86884 +:10F73000F879C0EB23E09F08E563EBCCFC2B3DFAA6 +:10F7400060F835F85E9EEBF227021EA5167EA40334 +:10F75000FF7F0FE5EB807FC87F2BBFC6E22FD07EF7 +:10F7600043B93B1406B8F9E41B530F170CB6BF5D41 +:10F77000E93E321ECAB7D7311FCA714368BD80F354 +:10F78000F679654C2AEA1D56CC8A91EE405F1F8EB1 +:10F79000E3D271D187F49573C22E9413F927A2ACEA +:10F7A00041BB17AEFCA5C70FF43C1F71D622DD3E4E +:10F7B000DED83BF530A88C1FC03C932633D60DF322 +:10F7C0004C02F8C730CF107E15E619C27F03F30C48 +:10F7D0009F07609EE1F3EF619E61F93FC03C43F8F3 +:10F7E000A71B5582C31B6B09DE3137BE215AFF04AC +:10F7F000753DF06E9E407C36F463640FD78FEFEE5C +:10F80000B93EFD1841FDE8463DB2CBA41F8FE8FA92 +:10F81000EFFC807E3C68D28F46F98561F4E351D4D9 +:10F820008F69A41F8F2A1583FA7114F327E0C2F998 +:10F83000D330DCFCE176E17AE7CF3DAE2A473C09E4 +:10F840002DF32DCD646CCD2EAE674FC70999A4C79B +:10F8500084F4F5CECCC176364CE2F62AB2C3598791 +:10F86000E37B37AE2313BFD758729918A3DEF9E7AD +:10F8700001F3F18C2DCCFCBB27B45CC69E75F87AE5 +:10F880002468F7DC4EE6DB47F32412C64903FA711D +:10F89000C3B63290BB4C85BE3B9EAD7DDD0F787804 +:10F8A0009408DB00FDBC7132F9B672C4A74DF48137 +:10F8B000180CD8D5C1FE38DFAF28BA3D65D219D4AF +:10F8C0008F364D605741CF4F5C98B2A81C9A9EA8C6 +:10F8D000BF37E6058B86C5A170B64BB135B9119F10 +:10F8E000084DEE7336D6B40FF03CD596B309E1BFA0 +:10F8F0006D673E316B10EF9C852C93650FE2FD52D6 +:10F900003FE87CC4DB6B0FA1BED91717D83605DBE7 +:10F9100019672FC7F1EF2B6BCA5C12253FF3B3F8C1 +:10F9200038DE4DE2F672C62191FA3DDD99BF6F13C4 +:10F9300009C37F92DD9474BBB93B8FCBFDFB053EC1 +:10F9400001ED1953B23CFE12A89FE4A8233E0A36EB +:10F9500015E7BDD6E9EC443D0E3023BDFE7D711F99 +:10F96000E203B2A53840CED662D380F7FB6E8EEFAD +:10F9700053DBC47D403A760EED368CA34FF63B7CCC +:10F9800051F44E6192A6D349443AAE45D88552C649 +:10F99000C257755B27A5EBED029E6B41AEE23C833F +:10F9A000F50CFA1784A260F8AFA86BA05D824BBA81 +:10F9B000CD70E901335C1636C3D38F9AE18A5E338A +:10F9C0003CE36D337C18FD2FD4DF1A3B910B749808 +:10F9D000A4CF37A6F40B687F33517F833E75B348BD +:10F9E0004B25C08AEAEA477D9EF928C84914DECA39 +:10F9F000C9F327D9D4A1F2A39C4C386583F73323EC +:10FA0000D6FAF7DF8FF51516F51EE891DDDC5B8B76 +:10FA1000FCFEA8DCC6D0CEDFEE0E4B483F7557E0AB +:10FA2000C9F9D0FF6D5E91FC9963CFFF7B63163CF3 +:10FA300053778B2C9C32C8979AC5363FCECB9A2CE5 +:10FA400035CE06EDB8149F03DBDEF1A97637EA6503 +:10FA500036487FDBD51983FC4FD5F99FAA97AB8C2D +:10FA6000F5203E8DBA3EBD6DB6DD44B7855EBB89DF +:10FA70006F37F59BE97AF365331CD5AF31CF4C7006 +:10FA8000F2FC3692F34BCD2C240A23D74FB20984D3 +:10FA900074662B0BB5029E47C1AE9073A7A96F2168 +:10FAA0001F6FE555592D5B2FA11D6E003EA25D9C79 +:10FAB0000F9AE6A57292CBA630C06B430940A441D1 +:10FAC0003C77FE997810FD286D96537E11ED748673 +:10FAD0009DF8E9D2EDF4C7A784836887F7CEF5FADD +:10FAE0005BE4A1FC4ECDAD1792E1F7D43A33BF27CA +:10FAF000966FA8CA2122CB17D17E6756C61F447FB6 +:10FB00004BFE7211F808F0BAFAA1AA1C687792EAC3 +:10FB1000BA84F266950BE37B79AE97BE7729FD2D0B +:10FB2000E8EF4E540BFAD15FD87CE541FA5E031240 +:10FB3000BE18433EC73E148527FC27EAFA927E6E24 +:10FB4000C0F98C120122B0C6579585F2E78F0F22BB +:10FB50001E30CF599F595FB2BE283E6C7E545B84E5 +:10FB60007656639EA617E1BBF8CB5C1E3787A7CC01 +:10FB700075C0FB55C75787E2A0AB55057E970BCBE9 +:10FB8000DBEB535077AD0ADF558BFDACDA3FDD1769 +:10FB9000076DF5849EFAA508F52F75098A13CAA585 +:10FBA000CB02B593BD86917DF8282884D05FAEEA5C +:10FBB000CA72607F5F93D93C64F7D78259369483C9 +:10FBC000D5F07B5C123CB77704105E95EB620902BE +:10FBD000E2E3A07692E7E7CE75403B1F1E1749BED1 +:10FBE00086B393D265C9349FB6815FD00726BD6DB9 +:10FBF000A3A6A2DFB16D633B3D57C94A8D00ED81DD +:10FC00002D536C300FED329447D17755B1B205E7E3 +:10FC10005F42012F4F2880EFA2F891DDEE606A0A63 +:10FC2000D931B28F1081DCAEBA294E646C168CE5E6 +:10FC30003BCF3EA171BBA3E1780CBBB34BC7673888 +:10FC40007BC324A8CFEDA9BC2D89BF47FB65D4F7A2 +:10FC5000B43B54D43BE8723210D42DD05E287FB030 +:10FC60009C152844CF9D4023FC1ED89DE907FFFE2C +:10FC7000CD7AB5A202DEBFBB59649BA0EABB592C6A +:10FC80007C33F23DCD46766D4B5ED15E19E31A2191 +:10FC90007D83B37C907E5BB6E667F641FFA7B60B2B +:10FCA000E49F83043B968F192CBF90E530C57DA758 +:10FCB000EAB8DF84F5B05F26C90E8C2FFAC6703B18 +:10FCC000B4F4B1966F209DE26C2C80F6B146B77FFC +:10FCD000D6675AF33FA96780BEA9CDBFA067DA1DDA +:10FCE000614700EC6263F762AF06ED6DFE54AC8BCA +:10FCF0008EC78DA79A678E43ADCFCD6C716D168E72 +:10FD0000BB1DE24CA0C3E6D42749DECE4E6E481799 +:10FD1000697E041DCB4B100F91E8D9F7E7C12DADDB +:10FD2000E447B126D427677BD666E23CA8DF5D9F17 +:10FD30001207F5EBEF083AFE02CAD394354D22CCF8 +:10FD4000DB7BC3CFD4E0BCB8D73F2B1887B05F159F +:10FD500056039E6BE5A879C8707CBFA47159E7E390 +:10FD6000D84C99F04F6D3E46E56F39FA25DD6F911D +:10FD7000517E6E077144580443DD320EE4CBFFC15F +:10FD8000E134E41B0435A847EE58FAE9E157A1FC39 +:10FD90001DD946F0CC62AD154572075A11A8B7E3DC +:10FDA000495B08FD827C5B58447F233F3B8BC679CF +:10FDB000138B884CD4F509D4ABBF2287D07EBDBD50 +:10FDC00060822302F8D70369BB2D7CAD83E7B3EED5 +:10FDD0004B12D63F0F63B0017EE7D77C48B0969AAE +:10FDE000D83F19DABD6FE1C5C338DF43CB58884D22 +:10FDF00000FCDBAAB6A402FC2283387A36C0751355 +:10FE0000B6A402BE4734803300AEEC3E82701F1AA7 +:10FE100003846B9F3B82F55D2D4E9B6D36E6672E0E +:10FE2000B6219C50EA66486F49EE27F8361F875B7B +:10FE3000DD97083E52EEA6F1BF59FB01C10B677278 +:10FE400098315E7FC16C37C5751796BDD6351EE4F7 +:10FE5000E08FF99C0E094F5E8C205CDFD651339EFB +:10FE6000FAC99BC6C93260BF1C57611C6473D2C9F2 +:10FE70005F22BDFBB8ADDBC7A0BD3BF3985A0D7147 +:10FE8000E7E342B7C2A0BFDBF28A3ADA66824FA646 +:10FE900097FF3C1FCABD58CEF546FD4B7F588A7A66 +:10FEA0002241D4F588F6C1529C1FF03DD5DF299F31 +:10FEB0007FEAF0B8C1FABFC9FF78A9067C489CC99F +:10FEC000FCC80F89713B0D9F68E4B7F9B83D8847BE +:10FED000BC4049D4E6F1F9190FF806A7D17B750C9F +:10FEE000E88D78403C3D99DE6B8968F00A42C4F7A2 +:10FEF000B6DBB8DE398130F0E1D40A9033D4232A5E +:10FF0000880DC0671B99827E3E2BE0F488675AE813 +:10FF10002A0A5820E441B978A267ED0ED233AA44E8 +:10FF2000762171F3838BC839D921C89301BFD511CC +:10FF3000DF112FC6B9FB856E44F19414A4B8F55CAB +:10FF4000B04AD190AC799309DF3591A6458CEA8906 +:10FF5000A9027CB7CE15D8310BEADDFE94908AF168 +:10FF6000EDB9ED651E95E2FAE02FD1AF3BB74394B2 +:10FF7000B701F42E13286E5D834518176D073F995E +:10FF8000E6355324A48BC0F9F55E46888D83F2775D +:10FF90000525FB49E0D3C793B9DE88DFF3B7DF144B +:10FFA000C0CF3DAD7F0FB40EE9DF135D1374BF3DCD +:10FFB00061BBA84E013DDC9ECDBF5B17E1F366CD72 +:10FFC0001E21842988F862ABFFD454E381F6DE0356 +:10FFD00065FB2C406B8255149FBF670F65CAF8CC38 +:10FFE000E2FA71A8DF14F038A1DDFBF62465E17CAC +:10FFF0007C229BC7475F0B76B26A78BF0E045A011A +:020000022000DC +:100000009EDFB73F6927E2FBB5A0C8548CE3058E9D +:100010008FF6B240F89F017C118E7F59E864381E3C +:100020008D1DC905F94D20CA40557FB7361EBE1F2C +:100030008729161FCA533743BF2B55F79F613C26AC +:100040007FE4D70BE7F5A09F3551CF7758E3B27324 +:1000500082DA837E9656E5F2A33FB3768DF9FB53A1 +:100060006DF37AD07FAAB92B81E66DAAE5FB636DAB +:10007000AD87703ABC969DCDC7BB4748C2F1CEDC78 +:1000800025D27CDC991418530DEDEFDC9A93DC0A31 +:10009000F87B52B46F60BCE91877BC09C7F97FCB15 +:1000A0008B6DE82738EC4DAB10763C5F80A124C403 +:1000B000AF815D8B515E9EB5F9F671B17818E5B5EB +:1000C00066738A6D1BB4B3334BF6FC338FEF92B17A +:1000D000BC2E50B517F585AA6526A17F73D79AC5A2 +:1000E000F3557856DD912CA0BD787B32E7C719BB5C +:1000F0003297E4652BF321BDB341CF60BF502AEFA7 +:1001000098897A297B13EAB5DCAD8944DFEC59750F +:10011000B674E82FCFDE341EF5F00EC95F570FE539 +:100120003B661751FEE6F793B3785C63F8F7BADCE9 +:10013000669FBCF528CAE7926CED5E1C6FC6FA5745 +:10014000DFA8817EB2B7A6125D868B13AC71C14366 +:1001500093B9FFF8EB4DAB49DF9E6BB12BFB520718 +:10016000F5BF7F8FB313E5ED8E14C7E671A9344F49 +:100170009A04DFD03802E2CB9F3D82729625917DB2 +:10018000B4C61598E84C477F6F4FD234A42F2B8804 +:10019000FA3E7BA8BC37EEC97AA21AEA35AAD6760F +:1001A000AE1D4F0C81F578D0882306E20BD6246172 +:1001B0005CA8E879BD5A2650BCD0A8E75DE7337645 +:1001C00010F3ACF7AA2E3FE651EFED8619123D8FE2 +:1001D0002DF1C468E307E5E4F7C9CF3E61F3F8D039 +:1001E000AE59E3839EAE43EEE9E83FEF917C4E18B3 +:1001F000BFE83AA49E990EFE495A7A6600F8D9AA39 +:10020000E7DFB7A11F0B2AF2DBE8C7C2F3A55CAE9C +:100210007F4EDDC4FDEC7AD03F9BD0CF6EFB9123A7 +:1002200002DFADDBB3D85F85FAA34DF0C52928A75F +:10023000A12DA86FB517856EF47FD6859F3982F9F9 +:1002400084C662A6A0BE6E2C086FB1A39F5FC7CA0A +:10025000908C8D2B9A8455C5E8FF9AFDE3B17566A5 +:100260007F786712C85D0C7FEC620E8FCF7766C512 +:100270002EFFFB5C3E7F72DA6D4C8D6A6F72309E92 +:10028000A951FDE5EF4E36C15342E34DF58BBAB2AD +:100290004DE525DD85A6F2D203D34C70597896A999 +:1002A000FEF4A3734D7045EF0253FD196F2F31C15A +:1002B00033235F36D5BFF1DC2A53F94DFDF799CAD8 +:1002C0006FBEBCC10457B16F99EA27CFAF4E443E11 +:1002D0008F144FEC8BE3F37B5F9966CA3B3D93C36E +:1002E000E7F3394BDEA9EF6573DE2945B75F897AFD +:1002F0005EE0DD82A003E18250D086FDF7DDE6A05E +:10030000BC601FE69D509FBDECECC4F8A00FF34EFF +:10031000083F6FE49D789EEA5D3DDF741EF34D68F3 +:1003200057747D65C4A3EF098A07FD06AD4390515C +:100330002F1AF846E59128FF64E4A3ACF9276A0771 +:10034000F4634A90E79FA2F256FF2DF24F37FE3733 +:10035000CB3FED9C2267E23C3B15C7E560767FEF23 +:100360003CE4CF82DC2CB20F732EF71F42B83683E9 +:10037000C3B6022E07D9CD9C8F1F79EDE4F7BFD409 +:10038000CFF3585AB98DD6595EDA6D0BA35DA8B973 +:10039000A92AC4E324561D877E75B920A35E37F2CF +:1003A0005847767FD888C5358B37FC762DFA5F6540 +:1003B0004EDF64E5F3CB67CDCF1F5D3E6B7E8119C9 +:1003C000BE55B93E7BF245E7B3D659F2590D98CFE9 +:1003D00002B96878C56C6FFEA7E6B322F626FA3E2E +:1003E00022B04BDA28F259EB33198FB799B2730A5E +:1003F000DAA7DD20770A96FA3251CF187AA3388728 +:10040000DBBBFD4C8DC73CBCB69BAF175BED4A47D1 +:10041000AE2ED7CFBCE051D0BF6EE77989277AA640 +:10042000EC9C09DF9D09CE95C81E620007F07DBBDC +:10043000ABF6B7C0B86ECFE5EB3FCB9CA1C7D14EB2 +:10044000B2EF890AAD034B01C712C0E33D6021CE74 +:10045000ABF3CFACDF3B0EBFEF7AC1938DEB1C7AD1 +:100460007F7D5D7AFE43527662BCF2EE33D353B6A3 +:1004700045E19798CBF30A6759686765745CA2CB2E +:10048000BBE1974F64C6CF809C09573124EE7A4177 +:100490009B55CEBF9B04749FB8E7E72D04835E1184 +:1004A0002AB11D737E9EB15ED2431306F4507715B8 +:1004B0008E5FD6F550C64356BF5EECC175CCF1E8F1 +:1004C000D743F9F84673F9599887E81F69E01FA1E7 +:1004D0003CDE78CE5C0E3F3DB88ED9505744FDC906 +:1004E00016B9A9D6FD15EBB8DFDB75A86526E2299C +:1004F000B07E260F1DF7797B48C37288EB148CD72A +:10050000ACE3CCD8FD6B01E339D9C6E4C4CAA1E39E +:100510007AEF5C530D2B1E3A9E860BDD5B30785EC6 +:10052000B7C76E92472BDE7DED2F7802A4AF14B2D1 +:100530007BFBDBEF20FE6ABB4486FA6D5617B7B72C +:10054000B382B64E8CFF6E64DDAD18D7F5E127B3EC +:10055000F07F9F74A8C5E80771D897F3D527B5D960 +:10056000288F2FEFC4719D09DA18CA635FD73C8AC0 +:1005700097FBF60B32AE7BFEFDFE7A0F7E77569729 +:10058000BB33BB5793BC19F2B442A7E77BBBF97AE4 +:10059000E77BBBE77972A2D679BE9ACBD7B7CFB04B +:1005A000C0CE59B1E4CD4267D606F277C3A0FC6550 +:1005B000EC7E419B19256F56BA4F8CF410DF8E806C +:1005C0003C31D41BE08622FE135446F95E2B1F26D5 +:1005D000EC12296E94419F219F50DE507F8D077948 +:1005E00042BD61E5CF195D9EB4BA04164BDEAC7C0A +:1005F000AAC91DC88B9BC67976D72101C7319C7CBF +:10060000C5077F5DC517FF41A58D1B3ACEB3E7C275 +:10061000028E732D8C5391878E0B30A4BCD850F969 +:100620006A22F9FADA7EFB087833E253CF8EC732BA +:1006300031DF96EFD0F6A6E33CFA6D1CDB074312E0 +:10064000F6D666A23F7FE66260921CC5DF9AC95962 +:10065000FA78831E1BD1BFD783FB1E9471A0D86686 +:1006600060FCDB4BF1F0857237E630D9852BDFA4D7 +:100670007878DD1E17C33861DDE5197793B1DDEEBB +:10068000A47D22FB83AB7A910E67BB4501EDDE278B +:10069000398A299F7AA17BB58CF3A0DBA1FE556E28 +:1006A000CCB8A38CF20CEBC09E39CBAE3FFE105DF4 +:1006B0004728EE192E0E29407C2A468E4746F667BB +:1006C00056A5AE89A2E317BD0E573B106FB7523E39 +:1006D000F33CC6DBE5FA24C378BB7D20DEB6631E9F +:1006E000A66F9878DBEAE79C17D8E6E6F2C1F8DB5C +:1006F000BA8E67C4DFABDA79FC6D5DD75BA5DAAF84 +:10070000B9CEF745FB416B2C7ED0BDFABADEBDC138 +:10071000FF5DD7FBD3D6F5428B28EEFAACEB7A7BA4 +:10072000A6D37CEDE97A90AFEB6D1F615D6F3B5F07 +:10073000D7BB17D7F514E45F16AD53801E6071A8C0 +:10074000075EE1EB7A8DB8AE97F5C5ADEB35CAE142 +:100750006BAEEB3516873F9775BDE77265E253C800 +:10076000CBF56CB25D49C2F15F6A179946FE02DFB4 +:10077000AF64EC5BC4F54D8CB3ADE3FA368C03F794 +:10078000231AF0D8ED821A6BDFD1793D3F7DE9E87D +:1007900074D68F7A6D97407158FAAE8BE1AB386F93 +:1007A000BAC590C2F3BAB48F2D93193F11F2FF2648 +:1007B000E9F9AEB1757C9FE2E07CEF277F2F1DFC4D +:1007C0003D94ABBEEE0705E45BFAF705968CF3BDEE +:1007D00059EAE3F3CC45F3ACAFFD03B2D71FA1BD9B +:1007E00086F6D6EDB69BF6B9A55BF6ADED90FA2987 +:1007F000CFBB03ECB726637C6C2E7F3D57E1F2AE96 +:10080000D32955A7532AEEA7740DEEA71CA06F1B82 +:10081000A7EFA936337D8D7D2A23D2777F6CFAFE30 +:1008200051D7CF03F4DDAFD377BF4EDF3D22E5F5DF +:10083000FF54FA9EDA03F445B833367D4FB599E993 +:10084000DB30027D7FBDE903A2EFB9BB12D83EDFEA +:1008500050FA5AE9CA5880EC8F5FB32BDBC8FEA868 +:1008600015F518A73C3F3619E3142BDDCF817D41E8 +:10087000BFDA58FFB4DAA3E4F9D2CF1E41FBA04897 +:10088000B4FEF9A7E77F051BDACF2F2AFF7B6B4465 +:100890003888FC3802FC609568873A292FDBC83C11 +:1008A000BE50F91797FFEDE9120FA21F7B09E681F1 +:1008B000D337D48EEC90C2EEE950BE638FE4D3D828 +:1008C00060FED79AEF8DCA07933E7A29777B07AEF1 +:1008D00007D633253917F33F49FC3DD32E77A8B30C +:1008E00087C61B4BB2C10F82F135DC6023BFF27AA1 +:1008F000FD98E71A0FC6E5A7E27A436E195F6F60AD +:10090000A4271F7AF1810E6CDFD8177E9F2E6FE926 +:100910005D7C3F22FC54A7A05ECE953BD15E7866FD +:10092000B54FC275F3B6246F990872B16CB2B1EFCE +:10093000AF89F9A3F617B4DB03CB26A7E13AAFC61C +:1009400078FCA552F932DC4408EF3765F3F57230D4 +:100950007F84F7405CA3E371AF81C7EED1E1D13270 +:100960003C1E2DB1F068D1F168BBE9C3DE79D0CE71 +:10097000E9369805D0CEE9EDD3293E943B0419E938 +:10098000F448B642ED5E10B4BBF93CF4D17AE9D438 +:10099000D72E1D42FD72CF762144EB722CB200E7B8 +:1009A0005BE62B02C3F958FAFD1607C60FDDA11E40 +:1009B0007AFA7ED4E1C038B6ECC5F5F4FCC99E2CB9 +:1009C0007A4EDF5A45CF35DBD74F9F0DFDDED3EE94 +:1009D00054D01593834218EDE17DDBC59013ED9261 +:1009E000B0AF06D77334D03FE87FCB214145F95FE4 +:1009F000B75DDCC7CB37D17AACF62391CA4F03EF92 +:100A0000C7A05FB54DA47D032C14F6DC88F1E9E1A5 +:100A1000EC6E9ACF8CE7690DFD32E3D0BC964AA804 +:100A2000FFBEC0E3F4CC68F9C2EFFD1C76B1F61648 +:100A30005C37BEDE7CECFB828DF29A23E565DB73CE +:100A40000C3E727D13EF1204ECAF8A99E3BAF61CE8 +:100A5000CEBF54BFE2088C413FB93E13F797FC313B +:100A60004BE1E7283E5D4DFB3DB43407C547ECCA7A +:100A7000522FEE6731F66900472A301F605D5F0F25 +:100A800064F3EF511ED3A70DAEB30F59AF079F719B +:100A9000D30D83FB088C7208363AB0BC41979B1388 +:100AA000500FE3A153BBC5500B7DA77A517E46DBA7 +:100AB0001EFC1AC4F2B53A5ED81EEEE335DA6B1BA3 +:100AC00017F2E0FEFE21ED41F54DE931DB0B61F956 +:100AD000092897A2F15200AF12EC47A74F5D88F2A8 +:100AE0002523F947F7E8F233A2FDDE15DB7EFF266A +:100AF000EFDAFED1DAE0E763BFFB82BAFD7E19ECE4 +:100B000037CAC308FED17DFBF9390FA3BDEBF58FC2 +:100B100056E87238927F64E891B5DD837A04E3C8C1 +:100B2000CC2ED023D044E9CB5C3F7407B9DEF03D36 +:100B3000CFF546D9D6327AB25EDF3F79715EEB7A75 +:100B4000673AEA9D62D40F2D8E09A89FF683FFCFE6 +:100B5000685D298C7CBCD02952BC7F41585283FDF2 +:100B6000681DBA3E09727D725F88EB930BC25C1EF2 +:100B7000EF3F0FFA04BE3F0738C7737DC2D78B74AF +:100B8000FD817102AEF3BCBBE7275B507FFC0824FC +:100B900069828CFDBD9089F1F6103DF20A9FD79FC6 +:100BA000558FBC877AA478643D5299353A3D42B955 +:100BB0005CE05333D37A1E46BFAA8BEFBBF03EE412 +:100BC000E4F9E55485E224EBB900F4C4903E50CB3F +:100BD000F7AC8CE7C6A47FC77E70CF8B1ED7FD3BDA +:100BE000C787EF83675B7CED0E3A4FE66738AFACA3 +:100BF000E7CA0CBBD7A8CB497AF7E8ECDE23C63AA4 +:100C0000D650BBF7485EC550BBF7481E339DD3385E +:100C1000F78A4838BFFFCAF59DD33837708E2DD577 +:100C2000740EE3933C3BB57F0ACF6914E3398D6CB6 +:100C3000D3390EA3BCAF91E73DADFD7C9A37704E22 +:100C4000E3D3BC8A91CFB1D50B9C5E4BF4F530A3B6 +:100C50009D21E7D8DA629F63CBD1BFFB9F768EEDF3 +:100C6000947E8EED289E634B8B718EADCD7C8ECDA8 +:100C7000C9423F23E1B59C5F737FFA4D3AFF74068A +:100C8000F4E4A618E7D7F07C1BFAD501D08B21DF5E +:100C9000D0F36B78BE0DF56007C431DB629C7FEA50 +:100CA0004B4D5E5445534C65E8CFACEE127C6186EB +:100CB000E7DC9CAA0BC7C95C7C9F96757E35846572 +:100CC0008CF75B7D12EDC73FDBB06CE70D888FB60C +:100CD0009E8C989DF97BBC6437F939B83FF53CCEC2 +:100CE0004871EA1A9DEF23DAB9606C39BB7B8AC57B +:100CF000CE75E976AE8BDBB975DD9F539C6AE40156 +:100D0000461BA7BE726D3B973CFFC31E23FE1163BB +:100D1000D8B991ECDB17BDDE3B124CBFA23DD5F834 +:100D2000BA86114F26D9783C9979A3536ED5F7131B +:100D3000A19CAF4339C73CA425EF391FF71F95F39A +:100D4000F30C98E7DCF967A729EFA9D9787C6D5DEA +:100D5000FF1D9AE77C83F2D87B6F48662D3C7E1B93 +:100D6000E5FEA37F6D7901F03A31D7B5017D446B83 +:100D7000DE93551F37F29C1791FF6307F29A0554D3 +:100D80006E8D5727D5EAE5367609D77122768DF62E +:100D900087441E66D33436FAF5DEEA853FD922C091 +:100DA000B8D6B9A5534E0F43BBDE3FF05D547C6D02 +:100DB0009C03ABBECEF35F46DEEE1779925F8BB538 +:100DC0005F16C6BA25B6FF4DE5F7E529DCFECB81F7 +:100DD00031A877DA368B329DDFF5073C31FDEF61C4 +:100DE000DAB36179568C76D480C7E42FD7864CED80 +:100DF000C2DB16A35D5BEC76C90F3F94CFE979BDEA +:100E0000F8BC8EDFA50DBE4F37F0B4C8BF41875385 +:100E100075AB3D0EE28B39FE4836FAB37CD79BCFDB +:100E2000BF6B13E49D155943E936DC77EF5BC6E3EE +:100E300019062F239E41BC241BF613DA29829C78C5 +:100E4000E6F1FDA0F50BCB6E41A512B905B4E204A5 +:100E5000901FBD3E685BDA577FA45A16703F733D02 +:100E6000D875841F2FC9EB447D9ADD1C684B42FD69 +:100E7000DACD7CE80F5BCF01BEB4FB4D9A87351508 +:100E80007319E6ADA7F9161F4A5106D7914A324E9B +:100E9000D9701ED62C7EB23A19FDC1D718ED83D970 +:100EA000A584DA92A11D5738E0E3FEDFB5F32FD316 +:100EB000CB7B2464D6ED6E6D932C0CCDC74C717733 +:100EC000DA92A09DA2D4A443D85F7965BD980AF0B8 +:100ED0008CEAFAEDF301BEF58AD696A8E03A56EF11 +:100EE000BC44C0C3955B863BC4D9EC7EBE7F6741E2 +:100EF00039CF4FFC2AFDE0C9B5CA603E677EFEEFE0 +:100F00003AB40C36A09757E14740D749EDB1E3AF6B +:100F1000B87C9B2E47CA41DCAFEC3C2E727F776CCD +:100F200093578E61C70C7F27FBD12616463AE3B94B +:100F30006A1FD9FDB3116E7F19CA45A61411A2BF4D +:100F40009FD46CB15BE28A6BFA9BD673D237179849 +:100F5000CF431BDF5BF356D6768C73D0E837C61AC7 +:100F6000CFB0FE6217A79741C7B33A1DAD749BB4CB +:100F70005B20BA4FE96A7B4A93D06FDCCFF7ADE8CC +:100F8000E7E28DF3E9FB2DFEDBFB8FFAC87F7B43A5 +:100F90003F1FFFD42B643CD9A4892C6483F7B991FB +:100FA000F5E1E87C270B4A26BF0DCFAD47DB71ABDF +:100FB000DFE62E7B88CEA5BF338CDD06BF8EF8B76B +:100FC0001AF887F6EE9D2B4EB20367AB1D21DC7736 +:100FD00068F5E3D218F7C7D6803F86E7D8CF4666D4 +:100FE000D07900F053E93C8E955FCCAB3A305FD5B9 +:100FF000B14CF6611CFBCD61F8371C3F0CBEC5E956 +:10100000FAA49905E87C026BE3FE79ABEB8322CC72 +:10101000B38A719F149D895A5F6AB5F3FDF82764FE +:10102000D9931CD57EBB7E4EBD750C8F234E796542 +:101030004F19D4F324707D93FD4A93674954FCF40F +:10104000E9245E3F11EC5D2FED0B025586FB8726F0 +:10105000717D1FD993E3A1383BC197E973E3FAFF90 +:101060008C3F34A31F5DE5A67DC067FECEBCDE3F8E +:10107000D40FD5EC7CDD3F6CC775FF1D73E3C9DE73 +:10108000FD38F4E0523CAF0D0C4FD7F70508586E11 +:10109000BDFF60C47B0FC447E9DE039C9F747EC61E +:1010A0007AEF016B22F92AD5FD46EBBD07CE939F5F +:1010B0006C9A5D4EF71EF4DBFF0BEF3DF80794933F +:1010C0000476DDF71E58E5E6F3BEF7E07CC4A9AF71 +:1010D0002BD6DE81EB8A567EFDA9F279528F4387AB +:1010E000974FE65952722DF9F499E4F3B49643B050 +:1010F000A1BFEA0D3BD016DB0EF8F4F3FBFFDDEDEC +:10110000009B62968FFFDF76C0A09B6107DE2BF00D +:1011100006511EE2CBAAE97E9433197CFFD7FFDA91 +:10112000016E072AA77C363BE0431D0772FDE65C93 +:101130007E3F0593140FC6EBCBDECAB1A13F6ED440 +:101140006F9C62CE031DD4F9D92773BECF951429A5 +:1011500016FFE7B944935CF6B9AE2D2703EDEAF527 +:10116000E6B6E554A33D98C7645AA79D079108EADF +:10117000ADCD925C83F959ED8E04A28FB51F26F98F +:1011800015B43B5327CEFDF294B4A8FD0BDA5B4BAC +:10119000A3F72FB8426B9ED2A2F25EC6BE84F4EDD6 +:1011A000A3CB132ECF1F364FB83C3F469E70B96E6F +:1011B0007781CEBF4423B3EC2D9145D379587AB8CB +:1011C000811E4807C9373A3A4BA3A4B3F4B9D1F901 +:1011D000B1D1D05974377D2702ED79C1A9C37D34CF +:1011E000DADCA6BF4258DBE494F15CF15F26FCC573 +:1011F0007722E5985E71C9B82EFC4D3110407E7C97 +:101200006C0BC8789548C7B4C0B7B19F6DF2FE8625 +:101210004E05CF2B4FA3FD772B9ABF15AE06BB20F3 +:10122000A7B095B1CED5ACD0CF5777EAF9A293F657 +:10123000F0C424F82E3C6D6EE79418E7A35734FFF2 +:1012400005B5374734DFCB623C0FE8F3E139FD1ECB +:10125000B43BEFFFF179CC5B2428C5D304C02BA1AC +:10126000389CBA14C6D3FEAB1C3A57D0ADF7CBBCF2 +:10127000AC1CE5604969E087D1FDBA1459227DCBE9 +:10128000BA6762F99C4F8A7FF42B68AFFD4B6E19E9 +:10129000E54CCDF1252ECD1A8A07B47300DB715DC4 +:1012A000DE76519C3AD8CE4FE322CFD1D957A62E25 +:1012B0007B1BF4DB4F93221370FF5C788AB22C7592 +:1012C00026C0699109587E985DDC7518613BE793EB +:1012D000A3F0E22EDCCF3367C185179E40BB9BE7AE +:1012E000A0FB69B6EA7962A3DFFC42BE8F36BFD0AD +:1012F0004C87D71B810EA9C3D3A177281D7AA75489 +:101300000CA543DD74F50D1C172049E36EDFC8C240 +:101310006B0047756CF7FCE9D0C438A5FBE5275096 +:10132000D472358A0BA19DDF603BAECBED1745CF64 +:10133000603BDF9DA6FE16DFBFDE7890F0883BC6DF +:10134000EF1B61A99A8AFA5605FE3EEBA3EF4F7197 +:101350003A9ABF37F851E9E37A3259E4F7676D7387 +:1013600004BD8BE1B9258B55AD82761F7FC72DEC6F +:101370009387F2E76421D70F49785E3C865C329D03 +:101380007E33CAD47FC3FE13047E8EB9AD12E80645 +:10139000F8798EA54C233F349795A39F9252C4EBC6 +:1013A00003BE1FE3B812660651E7B3B85C8E6F9BAD +:1013B0007717C33829AE189EF43E42FA278E05648B +:1013C000CC7D4845ECE9B64A1C47A800F93FE97BCB +:1013D0004F3C2D01FF3B93F9BC1D0730EE5BD80B52 +:1013E0006613E3746DBC23F4620CB9BBAAE3AD943D +:1013F000AA953ECCF33A232F3C01F5B796387CC032 +:101400001136C716AC43BAB0056ED21BF0BE2E3AE9 +:101410007F3B5DFF7E7A213F5FB0F53F5C74CECAB3 +:10142000A02BC853D52AECFFAC5BC03CE04872351A +:10143000416F2F4AAE2614C6985F20571985153183 +:10144000E42A7158B9CA2D8C2117205795BEB44192 +:10145000B9309E783216CFAD024EE4B749976FD0BF +:101460007E8879068135E1FE49E972A5F62BF4B351 +:10147000B3258255EF5CED3094C7E97E1ED88D23ED +:101480002487AE26F2F544B74AFC3B32E5B3B56F8C +:1014900073A92AD2D185F10A6FDF83E3877E19DA37 +:1014A000F9B80C9ECF31FAF11472FB3467813B809E +:1014B000FC9A837A334AFFFDA190DF87F87D5DAE09 +:1014C000B76475D7F963E847B988FB6FC3C9FDC72F +:1014D000855C0F80DC2F427C4692FB82225E1FF8E7 +:1014E000B11CF931BCDCBF4ACF84622EF70928F762 +:1014F0003EEC8F69B595345F49CEEFF96EFBD3981A +:10150000CF31E641C5F79E35CD83A900E33C186E87 +:101510007C49457CFC1EFD1E888565760DE3A70F82 +:1015200058C93ECC7F792A6509F76737161AF355F3 +:101530005D5748FC8B901FD0C9FA7BF05E114D15AA +:10154000687EDCAEF5AA2E1C2F0B325C777948FF43 +:101550006E2FDA4FB48F79FAB97B29C8901ED6F96D +:1015600019971BF645FB7B769D5E3717F9BF85FD06 +:10157000EEB5C9F1E85F0FC78FDFE9FDFD6B199785 +:10158000EB91F47F67213FB7D3A9F331F913575398 +:10159000F4FC9DF3F5789ABF0CE6EF6498BFCF7D1D +:1015A000FD592FE2676DE73B7ABFDFD69F869E4EDF +:1015B000403D4D7EAE1646BA46E9E96FD37C6CDC01 +:1015C000669A8F30AFFF32E6BC4E81799D15735E0F +:1015D0007F6734F3FA7398CF5B102FEB7CDE3230E9 +:1015E000CFAE4DE7F7753BFBBE4E9FCF4AE763FAA0 +:1015F000F787464FE743C3D0F9F075D2F9D8307476 +:101600007EBD30965DF60EB1CBC763E1E1C2FE054B +:101610006EF7B11D96A16948477535BF8FD2A8975F +:101620008CFE28B497FC8087F6E3187C35ECD6E76F +:10163000C8E7F3B1F83C47F77F6FF9EEF2A735F74B +:10164000E7D2CF4F62F5F3135D9E46B2DB71BA5E0F +:1016500080F17F5A9836541F76EAE7AA94D28054D4 +:10166000C4F5D57CD43F7BFF2C59A0F34B6A58407E +:10167000BFD9A0DB23850A3D8DEF32545E3FA339ED +:1016800059C0FD7151ED79AED59E150FC02FA988B7 +:10169000F497FA3B1CEFEF0A2DFE97EE6F76267754 +:1016A00037A07E9EA4DB9B49BA7F64C03F2C53C702 +:1016B0001771BB31B108E00F7CF6876C36AE9FB96D +:1016C0007FC7F5B154C4DBB7F9BB199E2B4AA86498 +:1016D000949F18D4EB5F7DD1D0EBF7B8B1BE64E82E +:1016E000F53C6C37B3C8D8FFC6DB1B0ECF0ADD6EE6 +:1016F00054E87C3060C0B354C7731A3E87C3D34AE2 +:10170000A7D1E25B5F28E9F6539D5D94367C7B06AA +:10171000BFE8D2CE71303FDB0C3D91330D5FDD3A37 +:101720006087FD35D84E55317B15D7634062E3B1F4 +:10173000BDE71C30DE62DC17FB64159EABE87C5411 +:101740002EE3F705855A107EAE552EC37CC5E222E6 +:10175000733EC1780E7CEFE89E32BD98E8B10CE98B +:101760007BF36CEEEF251E1329AAA962EC4301CF8F +:10177000E338352FE689DB05CD4BFEE27C37E50902 +:1017800099F70EC27FB8F897B14DDC7EE9E3659812 +:101790006CB966FD167EDF6E82D6E4BF9EFA4EAD52 +:1017A0000EEB0FD231A50CE99850CCE85EB32A3687 +:1017B000B113F9F4B02EAFC09FA622F263A1F2CC10 +:1017C00041BA0E6D5F233E54F99B04A46B5C015E2D +:1017D000ED0B4FBF467E914D09925CC4E772B96034 +:1017E000DEE3D4DE201ED3A79BF1B8E985E8F3261B +:1017F000201986BC6C227919253E10CF53FCAE6DA2 +:1018000092586B39C5F314DF376B4E19F39F1FC71E +:101810006586D0698238FE092E874D33F8BEADA6A5 +:10182000527CBA994CE7E56EF6815F5A064F975B9A +:10183000C3B8965D912E98D7C18D7D5E11E16AC2C5 +:1018400075F5BB3756BFA3CD1FBC5C34247FF07247 +:10185000D135F2071E16D144B4CF32CFE3D10234D2 +:10186000FAB73E85C667D4FF6B9DFF89C3F8677FD3 +:10187000ADCF17435EEFDC3C9765935E68A2FBF447 +:101880003AEBF83D55305FFE0FCACFC2B287E9FD93 +:1018900007CD4C16A19F2A99BD9A6A1B1C9F315EE9 +:1018A000A3FDA396F9B8C2C1FDFE937656F7233780 +:1018B0001FEFB428BCDE9A5675B4A862E878AD78FC +:1018C0001FDDD81CAE06FF20A5791E3B9D8279A79F +:1018D00000C14E17E7B3A38EDFDB26B1DEBB3700B6 +:1018E0000AC76D81E348CF9482E09A27814E29AFE1 +:1018F000C6513CD9EBCAD9EE83FA0F1C10691DC83A +:10190000CDFA45E4DBE7251FAD63BE4179A91EBBD7 +:101910004BE6F7A299E5A3F596B2BA54D23CE39709 +:101920001F8338A2F575DFDB6E802F148D5FEEC547 +:10193000FB8CDEF0D5A5C177138BFFE3E9ED082F13 +:101940002EDB8DF593665E4EBB05C6D77A97C0F346 +:101950002BC5E397631EACB587C5BCAF0F6FE4A37F +:10196000FBDFA7F90B4B504EA58042FD5709C3D4AE +:10197000DFA4AFE34108807EE4651B5F2751FBFED7 +:1019800009E3BB9ED94E05F79D0A07D2B43B01FE81 +:10199000C7CA1C3A5709F320A118FDC19B9C145FCC +:1019A0000417C4D37EF89ECA9463A508ABC9A4D516 +:1019B0005B6FE3FDDA532362BD7B68BF1DD3D4FBAD +:1019C0008B01CFD6AF0A75B1F26451F56A713C4E06 +:1019D000C94FFB0A9281362DA84F94F524075BEE80 +:1019E00002F92D23F94D41BC98CADFABDFE2EF418C +:1019F00072A5E87B0F0CB932E4E91793DFA27320DC +:101A0000203F13F07BABBCCCCFFB4D1EB7A366B918 +:101A1000184AB764A2D3AF2AC54E3CDF271CF8682A +:101A20003BDE43F48F6AB68071F2AFAE70BA062B1C +:101A3000F315DC570C742C288E9AFF87663AA7445E +:101A4000C86EF90B110FB053E563C451E13D0DDBD6 +:101A5000193DDEBEB70388F71507E16DF0F7973A39 +:101A60007FC5311FBA110F18471CDA03C0F326C413 +:101A7000479C18C9C0F96FE0395ABD575BCCF54394 +:101A800094DEAB2D8E61BF0D3D007CFC5231F763BF +:101A90003E7C40C13C38F76386D33F75C582E95C24 +:101AA000F528F44F5D34DD47D23F31E81DB81E39CB +:101AB000612A53E474F0E7B188F4B84A7A1C7407D9 +:101AC000ADE709979B485E213091BF8472FDA89FC6 +:101AD000C3D3F8BDA35BCACA5C0E7168BBA3A57F64 +:101AE000F350FA375F8BFEB788175A717FCBA5D9B1 +:101AF000028D4BBDCCEC188F694C4944BCE6A876EE +:101B00005A7760508FD619F1BC1AE82FDCBB167DCE +:101B10003E344975B1E8F3A029B5B2094EF37B997B +:101B2000F9DCB9622A1F172830954F68F099E089CF +:101B30004D95A6FA939A55139CA5D59AEAE7B4FB5E +:101B40004DF0E4609DA97EFEEE80A97C4AA8C154B8 +:101B50005ED4D564824BBA9B4DF54B0F68A6F2B2AA +:101B600070BBA97CFAD1A009AEE8DD6DAA3FE3ED18 +:101B700090A97C66A4CB547EE3B96E137C53FF011D +:101B800053FD396C60BFBD40FBC034F626DE7FB22A +:101B900094193F364532E4D066AAAFEFFFF3D9710E +:101BA0005FEB1C63BFC242BE5F52837F6817FD9626 +:101BB000FD82AA6CDE877889F51DC275D14B954EE2 +:101BC00019CF5FCCB1EC73A4CD57243F422824E059 +:101BD000FD49204F2067B7813CA1FF783BCE00280C +:101BE0005F749985C2002FAA3C45F2A5EAE72187D8 +:101BF0008E4F7D13F7830E8E4FF84CE333D66DADC9 +:101C0000E39BA3DF23A5969BEF9B98C3B6533EC1EE +:101C10003A3EEB3AEBE9627D5D15FCD158FB263488 +:101C2000AC58CEE9817AE0128BB462B93F4B6AD2EC +:101C3000E4A1E333D65D25CD45ED54413B212CC0D5 +:101C4000D83FCA7F8953CCF32EA1C03CEFC6F8BC65 +:101C500023C9CD67A2A302FF62D1F176163984F7BA +:101C60000DDC0E7281E7406F973E1B3DC794E8FB89 +:101C70000C747A7EC46627226D309E4B8DB10FDCCA +:101C8000A017C421292515C3DB0FA5E4BAFD57A56C +:101C9000E43AFCD718F6A3A0E43AECF568F57C45E5 +:101CA000C990F8A2A26434F1C56C9E4766B98BB99D +:101CB0003F053E13F79B22942FAE2AE17986E1E29D +:101CC0008B2ABDDFC1F8E29284F1458FFD9B14475A +:101CD000A85FE17104D8F51598371B883B9AB97F46 +:101CE0005635BB2C7129F4BF0265A962F4E35D3A55 +:101CF00074BC4BAF35DE9FB6F03CC04F5F17E9BEFA +:101D0000D29FA58AE13418FF93AC84EE4B30D62BDA +:101D10006A038CF45495D4D1C5789EF0ABD86EADDF +:101D20005225AC75E3FBF5F41C4E9EEE2BB96E7F8D +:101D3000E4BE923FCD1FD9703DF234DA78E6318CA3 +:101D4000678027AD9B393DB4DF8FD1EFEFE571CDD3 +:101D5000635BF9BEA9C75AF47340FAB837E9CF19E3 +:101D600053795C5AE5A9247F73B33086F41E680862 +:101D70002FEE83A8F23AE83C1DD0772BE27F78DC87 +:101D80000D89E8577E70EC506AF47AC4497DDC27EF +:101D9000F471FFFEE1817177E03CECAD5B4DFBBC83 +:101DA0008C717FF51BC6B83364D217A83F405F38EB +:101DB000E46ECA2BD7886ED2BB6DB92CE4A404B6EE +:101DC000BAE8961BF47309F07D5B86C650BF258C7C +:101DD00013E91C216843DA6FD30EFFF8FE9E3DF431 +:101DE000F7A58CBF4F64F74AA6F31A71A8CFA6E2F5 +:101DF000FA91799F4E1CDA130F9647D58FA1E7BE53 +:101E00005BA2DB0D071B8B78B76D3CC04EE31ABBA2 +:101E1000BE2F47D2D78D86D3770774FAB70AEA8FD9 +:101E200091AE7DFADF2DB1D637EA59E97438727A6E +:101E30005B118C7FC3449BCEAF80373A7E329E8944 +:101E400095FD85B9267FEF7261AEC9DF6345D1701C +:101E50009ADF55145D7F6C9D6C82C705BCA6FA1392 +:101E60001A1453F9C4A60253F9A4669F09CED22AC4 +:101E70004DF573DA55133C39586BAA9FBFDB6F825F +:101E8000A784EA4CF58BBA02A6F292EE0653F90F3C +:101E9000586401A664FE58C2EEAC0663B9E5D49D51 +:101EA0005EDCDFB7396DB92B1083DEC6F3701A978D +:101EB000F3E1CA8D793E5C79ADAEFF6C2E3FDDBF9C +:101EC000EF92B3A7D13E8FD43EE25B9C9C4BF7438D +:101ED0007C6CB16BC6B3DD1EF818E542929B4CFBDF +:101EE0008B6A41B06641CC315F79245C1D35EE963A +:101EF0008C55BB71BE3C06F315E7CB635840F7B079 +:101F0000B13B719FCE637820623C63FF52F2E9726D +:101F1000CC036F119ADA312564D0A7F407E3EFAC54 +:101F2000CE44FADCEAC578F270128C3F865E1F4E12 +:101F3000CF1DDED810AE9ECCD8918D4D041FD5D7C5 +:101F4000A76A1DE6F5E592A9DC4E194FD02BA953DF +:101F5000319FF5BAF861404174479D07C8987A8D62 +:101F6000F86ECA547E5FCD6641CBC575D15A7BA849 +:101F700016ED80932D203DF991ACEC437F6E735AA2 +:101F80008D6F15BCCF9F6AB607C653C27D5251FAFA +:101F900041C85A5687DFD7A6019D01AEC575ED1819 +:101FA00074CAD4C7376A3E69E34D7C127F30F64E5F +:101FB0003A8F6099F7F07318EF2B9272795C0A727E +:101FC000110E94935EA47531909B395363C88D9123 +:101FD000BF6DC617E84FB8F9FA112954F4778FF29C +:101FE000BCC270FC7E6C2304F840FF4BB242FBC9BC +:101FF0001E138CFBDB7DDEE8FDDF5F543D03662CAA +:10200000447CB5D66FC65F311EF7BA695C74FE6753 +:102010001CFE2F5080EBEDEB743B37C6A706A6D213 +:10202000D3BF0A9FCC152840FA00BC86607900BE59 +:10203000772AE5C501C63CA12C537E7C38FA18F4FA +:1020400085EFEEA776A481761EA076DCBC1D80D736 +:10205000139C3A003F48F53378FDD1F63330DE5E0D +:1020600091CEE77C28A974BE7779F36AF24BEE6AC9 +:102070005E4BCFF68D72D219A0DF1F36AAC56D3028 +:102080003F97DF355DC6FD1377DDB39A9E46BB2BC8 +:102090007539766449740F9C9865F3EF27FBCCD7AC +:1020A000394421A4D3B34D3F1F1EA173462E95F58D +:1020B000A37FB8B2B9AAB8CDB4CF3E48E7B5E31410 +:1020C000E98FD171449BA40669BCEED4CF384E98F9 +:1020D0000020AF1FBA7343FC3CFD5C39D67A8531D2 +:1020E000DEE1DA5F39CCBC35C66BD0CD78BF359731 +:1020F000EF4334E4CF781F37B95A467DB352E0F34B +:10210000888DD1CFE5EAF5EE867E7E8C74947CB422 +:102110008FF26E7D1F8CA8AFBFDD0D247C74DA605A +:10212000BF6D92FF6F903E43E8394A7ABD8D7AD8F1 +:102130008E7E7E771CBF774516A2F5699D60FC1DDB +:102140000D46F724FE4B7EA10DF5C8D6557FEDB2A6 +:10215000017EBD53B93D7ABCF85205DE0BF238EB77 +:102160007F18EFC9D71E1D43F71DD4D57F54D11258 +:10217000D5DECA43CFC80AC07593DBD270FD7B257C +:10218000933E8CF6A7AC78D6357F9DE4526BE1790F +:1021900067A6F377A59644FAC78057B727D17EDCA8 +:1021A000153EAE4757EAFE189D8BA4FC67AA03F9BB +:1021B00051AF99EF8B5ADD6E8659B41F270EC62F8B +:1021C0001A6E16C0716DE67F0FE839A013DA894CDC +:1021D00016A6E70A5FF2E0BD74506FE2A302E113B6 +:1021E00060F211FC7B13567CAC78AC623E07B633D0 +:1021F0005A7C56F8F8FAB2D3C5B404E83A157941D6 +:1022000072C3F741ED721BB046871DFDB97CFD2FEF +:102210004EE1E5C67AEED84037C3FBE5E2CB61403C +:10222000C02F1BD6C33828A157C5BF5733E1873B02 +:10223000EEF44EC175C38017CFB703FC9644EBEEA6 +:102240001C66DA8EB70ECF46F9910B713FE9E3F6C3 +:10225000F6B78EDE44FBA0F4731CED6FE1FDAC9D80 +:1022600003300BE3F9DDCEF80158757901CE1E80FD +:102270003584F7EAFB24B0FD33388F5CBD0B0B00CF +:102280004FD5C9EFD31E4EAE9794AAE9A5D7B13E5C +:1022900069D41B699E747AD704F19E4E4DB1F17DCD +:1022A000398C99D67BE796F2BF23F3922F5080FDAD +:1022B0008F79B49FD2338E7167DC287783FCE92550 +:1022C0007E0CF2A79BF3A7BC97F833A6B897F83318 +:1022D00049B9C4B261BC9366EBE9E5DC64C2B353AF +:1022E000D92020BF3A2B05CEAF7246F7088E0134B5 +:1022F000C766E13E20BE5EBEA89CD17E75D9C9E30B +:10230000D91B4BF9BC5850CAF7692D28E5FE4BA2E2 +:10231000B289F6C7B96A6DB42E9C884FD3BA4E9B6A +:102320005E5FD2E30A4E8FBAE9819AD2A8FCC0EB75 +:102330006D3C0FE8CACAEDC47B2EAA14E9218CCBF0 +:10234000BEA3EF075A52EA9F5C0AEDBC5E9E121FC5 +:10235000E0EB21B7119F2C7C35C63912DF86E3975D +:10236000114F0E57BEFC2ED11F223F3BF0F432C05E +:10237000F7FE0329B46FFF449D58DE0BF0D75F1BB7 +:102380004BFB13EE29E5F6FF015B7F3AEAC5ADEEA4 +:1023900027FDF8741E6851F1CF1BB5DB15131E0F16 +:1023A000FC4315F94F9B123CB351BF5BF13871E50B +:1023B000E76EE4C3B1CB4E7E5E51E1F938B203362D +:1023C00036701FDBDDBA4EDBAAF3E7F8C63A1E27EC +:1023D0004B113B9E3B3BE185F895D61DCDF7F3AE07 +:1023E0006492E9BE15D6CCF371C67D040196548380 +:1023F000D315F48E294F770F531C69507FD91D8B4D +:102400008F60FCBB5A8F7F410F59EA99F37F77D6D3 +:10241000D50FF8A91FD0FF43FA3906D58EFBB58E2C +:102420002D16683D6199FFAE7075547CF5D6A7E214 +:102430004ADCF77202BF057A9F58914F7F87D34AD3 +:102440008FE3A5DCAE1CDFE8A73861803E8CE91382 +:10245000E2DAE31F42AFFF627AD4880B890EAB81C8 +:102460000ECE187430F213C678DE34C6C97C27F05D +:10247000EF379FDECED763C4F0BFD13816E9F793AC +:10248000C338C83EE0E66DBEAEAD6CC6F328F76853 +:10249000FC1EA3A59AF99E09D02C0ECCB7AFD2FF93 +:1024A0002EF310FB22AE38129DF7B8C792C7B0E2E8 +:1024B0006D1DE76DBA1D19721E490A67A01FF18BC9 +:1024C000523DBF3B95E7773FF02D4B0C6379795A2E +:1024D0004CBD6BE43B06E73B97AB95CD8B4D7191C3 +:1024E000C00203B00C7673835754F0FCDF9B7593E6 +:1024F0009F46315CEA8A48FC3C3FA3BCFACAE3220F +:102500009D8B5ACA5C8A1BF0FC1614A21D5E541BDC +:10251000A7449FF7BC14BC68273B1F604D781FED94 +:102520000668BE79DAE03837781DD48FD56FB18E62 +:10253000FFDCE0B8A75ECFB8EF2D6534EFE514BE41 +:102540002FA47F2DFE2D93C17C24CB50B97F9BCE31 +:10255000E3B92BA549A6F346A3C84B5E298D91E7A5 +:1025600076B3881DBFBFDBE50ED3FE8966FB85E829 +:102570007B28FF1F8C8B5DCE008000001F8B080026 +:1025800000000000000BED7D797C54D5F5F87DF35B +:10259000DE6CC92479D903049801A241204E920926 +:1025A00049C8009304102BE0002E810498B0192034 +:1025B000900151A74A65422002867EC1A5628BE93F +:1025C00040D12F5D6C03D28A2DE844D462550C6A49 +:1025D00015D0C228B8B054A3481DADCAF79C73DF0C +:1025E0004BDE4C1240DBFEBEBF3FBEE9A71EEE7DB8 +:1025F000773DF76CF7DC73EF3056257F30843181FF +:1026000079D88558C61A7B2FB47B2C0063E27358A7 +:1026100002636B19FC15331667771BED0598DF2FE6 +:10262000C0E221CF9AC4582FC6CC2CC09808305B8A +:10263000FA2A94CDE8EF02FE1FFF4663CACF582A5C +:1026400080E7E6EED89AC298C722B1F590D43193CC +:102650009F3920FD4321B05EC072D6C65648CF6276 +:10266000CCBBDE0ED0A7FF4CDB9E276E9081CADB71 +:102670009897E5E238AFA2B458CADA592214C8F6DE +:1026800064BB8769FAF5437D93527F00D403D82B4E +:102690000FFE6332A5B9E300AED5B43FA0BBFEA4E4 +:1026A0003436B4B3BD6818DD7E747B8D3A56D302E0 +:1026B0007814E3E6D6E0383FCBE82D8B021FE764C1 +:1026C000E87F885D477851DB9B6D4A96A5E4CEF4A0 +:1026D0007BBD2C15014BD77ED57A2A5E93444F865D +:1026E0004EC6E4E0C3CF6532B695C9570980BF0D29 +:1026F0008681870FF465B454AC37FE67E0619705B7 +:10270000BFAB69166430DEAD311D69972903D20372 +:102710003AD27E4C3743776C046FFF24D4FFE26FCC +:10272000D7B818ACE3675E26E33A484C76E1FCFA8A +:102730005530560FF4C024EB60C4AF3ADE645F3905 +:102740003B01F332F9FA44CCAFCA6EA5F1275B5DC9 +:102750004C07EDC1A71619E6912CD9053BE0FD3ECB +:1027600003E06F280EC3EBC7FEEEEB2D27AEC77557 +:10277000C6FE202D55C8C2FA5C6C87E343EDA7A3C3 +:10278000DF6CBB20437D3999CD72C3B8AB7C770534 +:10279000C7E4777EAFB1C3621468C663601EECEF16 +:1027A0001D3DABD8694118EC9BA7C1FF5B79A535EE +:1027B000766D79DFDDD4DECB82F7F88F60FEFE1711 +:1027C00045F6284C6946C60F29FF26DF1C82D37CBC +:1027D0000B082EC3FE609C6FE83CCBEC00DB2A5E4E +:1027E0009F7107CCA36EB7D16E84597D5CF1FAFC62 +:1027F00087AC8827A003AC3FEDFE1B87C3F7751697 +:102800004946B259DB9755103DD50B6E84EBAC862B +:10281000F1BB01FA724A7F8EE3B28EF71DFF11AE53 +:102820004BB65B8FFCE5CB1943F99F65FB33661311 +:10283000FDC5D899B5B37E630CE005E6DB68E070B2 +:10284000935D227C6C427C025CA7C0B57A4FB617C0 +:10285000BE9BC2022D923A7F93E467B205F325CA6C +:1028600017056817DB8BF164DFA6C19BDAAE290C74 +:102870004222BFBBFA06CAC7F950FD243E1EB5DC92 +:102880004FB17E2A42BECEA6702CF5D79804E3B293 +:1028900068DB89E7F90ADF45F38DCE5EDE8C78F7D9 +:1028A000E5B87E6E27FE09E9914E67661C382C401C +:1028B000D599264B50CC41C4E9CF6AF99875C8C761 +:1028C0009080F2F1608664427AF7AF10025936C602 +:1028D000D6677FB686CB25935744B9C524BF221748 +:1028E000840B24D798551A4E728D316AAF7D4D3EB8 +:1028F000940F41FE4F23CBB30BD0DEF1A2730FE652 +:102900006362357B6110D49BC9DB40767F61501ACE +:1029100063C79464B565D038C028BBDEF9AEBE1F6E +:10292000B43727436422979B273BDAC372FEC8B4AF +:10293000857936E6039DCCCB90E4F5400F73D646FF +:102940007E5F5F34F585471C088D3283F6E631E9FA +:1029500064073E6C9D72A7C9A7632E2817572C06E3 +:1029600004C88F1B1C7A7134A45981DEFA28C9B9B6 +:10297000D084A929F83D9FFAD980558BA93C437C86 +:10298000B15C33E1EF60D1EBF21CCD7AC5159C1C34 +:102990008CFAA7595947104BF163D334788075C32B +:1029A000F9CECB18A85B8F728FD5137D3D77678CDE +:1029B0000EDB3DEE880918A1EC58D142FDCCD920A0 +:1029C000527A4EC1D152238C67CE1A948EB05E5E7D +:1029D000774210C6356BC5544310CAC9B32DDE8487 +:1029E00022C2DF7B51F88B4833E626FCCC06FC6024 +:1029F000FF80BF88EF80AFF7B4F8F2BD7328E739E6 +:102A00008D5E69B7C7A5203DB13C96770150F1EACC +:102A1000CA3DEC849EB173F61B1382B89E30612EC2 +:102A2000F7AC86C91A7DF6C5CAB69CE7A05C835090 +:102A3000F605D2EF6C09CA217E1C5308AF63C5B3FB +:102A40002F8E46FE770C1880F30DE570F9B6C1772E +:102A5000D4048BCE367C2D127F3129B400E5E78477 +:102A60003B4724AF87F1B5DE7955FA09F81E936B21 +:102A7000A0756DD6591F72C277FF5FF424CF7AD24A +:102A80007F269FC80601BF997D0241751DE27C66C5 +:102A90002669F83C4E994FAAA35D18A0E1EB8C5C27 +:102AA0003EBEC415CC857A2ED5C15C56E877C9A048 +:102AB00001DB045C6BC94AF681D966CD43FA51CB80 +:102AC000AFD5CB344E698CD7DF07F2FBC338B03FAC +:102AD0002B8C03F58BCD174BE901BE6482037D89F6 +:102AE0000407F9FAD0F72CDF408257F86C947FA5E1 +:102AF0006F08A5B37DF90407FB72095EE52B213849 +:102B000004F40A961BEA2B2538CC771DE5E7F8A6D6 +:102B100012BCDA3799A0DD5749DF737D7308E6F9F7 +:102B2000AA293FDFB788D20EDFAD942EF02D2538CD +:102B3000DC7717C1425F03C1225F3D952BF6DD4B69 +:102B4000E911BEFB0996F8361174FA7E46DF55FE90 +:102B5000B3208E40DF4ED0B5C8687F35F720F76EC2 +:102B6000CAE572FCCF76D7A8DC82CE7213745CDF24 +:102B700045979B92CBE56C22E3F4A533054D0361A9 +:102B80005D16EF19982702BE9B81EFADB02E4BB2B8 +:102B9000066C437B66A2B22E66BDDFD5C786EB63AB +:102BA000E5F5C7B89807DA5FB2672941664F213A61 +:102BB000EDD19E52E6353297D76F96FC6417347B81 +:102BC00099DD0F59E6416D02CA85AD19D278A41777 +:102BD00043AFCF5B919F2716B81C28070DBD249DDE +:102BE00009D2079DA5945E93ABA7713D6677CDC8CA +:102BF00085F6FA3B527F80F2A8FF6A9D0CCDB14466 +:102C0000875E877C9008DD260A64178DC7F96E8D74 +:102C100089D43F772B7841F3C886E3C91944F40877 +:102C20001C762DE7A3010CEDD766435090502F2C56 +:102C300063EC51555661F9C6D98F219F0D586B7FB2 +:102C400016C7D7DF6FCFC7F1DDADF09B6DA3B5CC55 +:102C50000CED0DDCEC7AD60CF959014F590CA4AFF0 +:102C6000DCE17F16E1E09640592CC0217B82CF82C7 +:102C7000FA61C382A1320BA4AF3EC0F623FBE7B6D4 +:102C800059CBE3209D7FD8B51FCDDA8290A73C1E9B +:102C9000D7C910688887F1341F63F67A4817B7FBE5 +:102CA000F7932DA8AC43071D80DDB313F5BB75A3C7 +:102CB0000BF19DB95CCE15697E1B69DECD52C89CB7 +:102CC0003814F103F3C5F9C1FA3F0AF3C974B51317 +:102CD000FE331D2C0F50C8B6AED629F8B7E5E1FC7F +:102CE0007EA9D005E07F03D2DDD618B9341BBEB76C +:102CF0008F65F236687F758644F23976CD8000F2B2 +:102D0000BB4A6F80D7C193E3B4F8E7ED3477D8833B +:102D100017C7EB2FFF97F01A8DCF62A4E382AE782E +:102D200055F13949E15F30C307E1BEA527FEFDA398 +:102D3000C28FC0BF7FD0F26F74B9E3B9DCBE8CC65E +:102D400073B3245F45F8B2309D3F17D72D28A0BD3F +:102D5000745469F772F1FAC6FF2778DD7909BCB2BD +:102D6000A25485BEE51836B0673983EDF524DF102F +:102D70000F4BF6D9B6898087530A5ED78537B9B12C +:102D80003D55BE497BEB5DA87F54F9F6FB4BC92D41 +:102D9000EC1AF9678C3980F2C1D0B1FE6D1370BDA9 +:102DA0000EE98524B4DBBF50FA9B72B5FB3CCA2DFB +:102DB00006D626D207CBE07C0B964A0CDAAD16512C +:102DC0002E95208B0D61F64701B85D9F3E974CEB29 +:102DD0006525FE438185FD4DB833661BAEA70DEC1E +:102DE0000509F6BFF0CF20C204D6E612B1FE6A96FE +:102DF000877A9EC9D5195ABE53F579275FAAF491EF +:102E0000B475BD8DD32D962FC9E3E34D50CBE16E44 +:102E100005CA35FEB0F7D6F51A39B8D5DE8BEA9576 +:102E2000E42552BB93C7F5EA5B6DE9999E17E471FF +:102E3000BEDFBAFA35C26F9C93DB0909AB9388BE3B +:102E400013C678D2B0F94C1797C399BED9063F562E +:102E5000C1D9A776CA71D8CFCE9A8CF84FE2103676 +:102E6000ACB40ED0FF362EB72F8FFEA53C038DE7F6 +:102E70003F45FF529E423F3DF0417FA7DC2A427E04 +:102E8000FF314CB642FE5627EA30D48706B2BF194E +:102E9000BA54209D00E4FD5381F01AD421BDE9E22B +:102EA00088DE2618022ED44FCC9028E37A4FB9DA68 +:102EB000539E77113E3AA4B7E6A2FD3F7757F6340A +:102EC0000BD069A30DF809966E725EDEB426F4137A +:102ED000248598927E18BF7F6FBF02CB3B7252B39E +:102EE000FE722CDFAFC3BFFA4ED1D8BFD3147AF82D +:102EF0005DAEEB661C37F0C75C84A58C2DD70DEC5E +:102F0000EA9750FD013DF927A2FD113DF92154BE7C +:102F1000BB94DDA2CA934EFE977355FEAF1E4AF2D4 +:102F20007B098E576DAF273B2C258FDB1B772BB092 +:102F3000673B2C89F81FE494C2EF9C5FD7B1FBDCA0 +:102F4000680FF624A716AB74D6839C8A336DDCBC5D +:102F50001D5A5B96215A4F92DF26D2AF62CE686C23 +:102F6000C37D721C508E05F63D2B80EC709F639ED6 +:102F7000C0DE3542BE6910CFC73FDCEF7CB651A042 +:102F80007D079845B20FFD6FE82FD4F8519665186C +:102F9000A89F8DAB38FDFA0F8A01B42FCEB974A764 +:102FA000D0BE38E710AC4C20696695611F38019B94 +:102FB000B0127D30947746582FDC47B3BBED260323 +:102FC000D0C184AF04E682F65EFE4A24283137C3BE +:102FD000F59E686FCD64404FADB97FCE0CC1785E71 +:102FE0007E17D230DFE7720B134216F4E304DF7072 +:102FF0000A5DD7F7664F7584DFA873DD23E771F3A9 +:103000008CBF5A10BF3F9375E30343711DB87C57C3 +:10301000BF3F99C7F5E76376CFCE3C807173DB572E +:103020001B50FCCAEF513D362889E8A297BCCB8CD7 +:103030007666AF5A6EA7F666817AD9D295DE2AF205 +:103040003D7F427AFA9962B7BE52CBF596C936688F +:103050002BDA53A575BD9D65D0C0C32B5970AE9EAC +:10306000F8FDB758DE95DC928BF4F1B3AFF65C8BCC +:10307000DB89F3ECE5B90C7931FF488A15F053553B +:10308000F07C2A8E67A210397E15AA7EAFE87DED0E +:103090004B79CABE3687E5E0BEF63C73264CC58F39 +:1030A0008ED46EF947F5C7A9FB5AF4B7C9DDE8819C +:1030B000683CABFD57C132E37C995E20F9F68A8209 +:1030C0006F900B7FCBE37AD36572A07C1846FEE548 +:1030D000093A7BC25494938EE48B8E07C45796D6DC +:1030E0007FD9F15D60EEEEF4D439452E55E9B9DCB7 +:1030F00012963E3F17C755956B16701F2EB1763D41 +:10310000CAB1138A9E9C655FF729F2CF2C267DAE4B +:10311000F5FB9CC8931539121C242BFE477B37FE08 +:10312000E79EF07144F2CFC07E8F788CB21FDA9B9D +:10313000505D987E31FFF551A48B2CC69EC7391780 +:1031400068D66B50F7F2EEF0CA9AE0187DE77A7510 +:10315000F95E6D267F7505E249D36FFF7C8E1F4FA8 +:103160003E9F3F336ECCC6F9AD9BFD7B13F2E3BDB2 +:10317000433F2BF003BEEF65EDB76D43BFC38A3805 +:10318000F23B54549F2FA81FD6F3F867C1F2EFC942 +:10319000EB8AC7E8729E7C2EEF66ED7F5846FAAE4A +:1031A000C85A9DEA87FE0FA2DF250BFB6534DF4975 +:1031B0001D764EA4DFA54128CBCAD7FA5B86727F65 +:1031C0000BDB6FD6F961BCE64359DBCCD0EF9F72C5 +:1031D00094F9894D379601DD9DF7E8ED2897CD3DAF +:1031E000F051856F49845C890D0B2CA091B3B152CD +:1031F0000BF93563C312E547F39B900FFC16DBC94F +:103200006F6F7EFD908CF68EF94BA39BEB0BCF83FB +:1032100037C2F826399272711C6F5688A407E3866C +:10322000C95B71DFBE389FEB1755CE835964473FAA +:10323000D8AC37443BEE6F67317F2BD2A93AFE49B9 +:1032400028EFA1FFBB50DE435EAC83A77B92F3D196 +:10325000F23D7A9DA2E733353F527EA8FEB09EE84C +:1032600051A543952E7BA213952EA3F355BAEC2CB2 +:10327000F770B615E93286DB83D1E5972BF4ABA660 +:10328000DF5CE989E8F7AD6FC408BF810A8B957AE6 +:10329000E73CC5E9A86F2A0CFEACCB91732A7D44AC +:1032A000F7130D6F56EC8EE8FCF91DFD3E4CE70858 +:1032B000B7164832EACD38DBC657566AFDB4567F9A +:1032C000DF9FA09FB6BA50E67E0DC5DFAAE8D936CB +:1032D0009013B57AE4172E2FF0E00BE9E884957986 +:1032E000F13C66B24B088ED1E8FBEB8BCCC1319A36 +:1032F0007565EC237D3FF40B64880CCFF582D51FF8 +:10330000925F784EB128E3B9475C717E1AA6D90660 +:103310003DCBB2A23F58243D16F7606E00F75F2AFE +:103320001E620A6F207A38925D45FE5A73B5C58BCE +:10333000F6A9F91B239537AF1302DB603E31460F28 +:10334000D9F73157A604EA51DE0B9E8EF159C13EE2 +:10335000281FE2BC09F9F378939E19A1BFD04A6FE8 +:10336000700CCC6BDE3BA7DEC1C33295DE67AD10BF +:10337000C99EB9943FF8BBFA7F5BA2F85695432AE1 +:10338000BDF7248734FEDF27F30B34F268D00D3409 +:10339000DEF2217BD97B964E39A4F2C551657E873A +:1033A000076FD9F02CE0E9F03C6E2D4E1FCAE960A2 +:1033B000FA20C98A9B42C0A3BB3BBAFF52D16F20FF +:1033C000493BD615F138CDB3A0238DE45B59B33416 +:1033D00062DDA3F546CFFC7971BE5B91CFED26553A +:1033E000AF30A38BD67BDDDD576F433DB76EB69E06 +:1033F000E4F0BD6D59DB4CB64EBABF5CBD12AD17E3 +:103400002AAA1FB4633D803BFC906FBE32C68BF688 +:103410005C4F7A46ED2F362CB240BE36DFCAF33B06 +:10342000E4B881BEC35F36EEC37C2CC68E76C983FA +:1034300039AE4F713D7F95E3FA0CE1E81CD7B97CBA +:103440008D9C69D0B30A9CB7A8E3FE0FD8E9674CFE +:10345000D1D827490EBE3E6B4A79B9D6D4E119EFCF +:10346000036C783737430FFD6638F8F9DB7371C3A7 +:10347000134217B107FE4BA1937B51DE00DCA0ACD9 +:103480009BBAAF07EBC485E7A26BF4EE0CDC1FC65A +:1034900017EF6A1B00786D9075B20053FD52C1435F +:1034A000832C91FDBBDA228DDF4EE519F1E39A38CA +:1034B000D7A37EDAA7BAD88D71589E9FEB4916E93B +:1034C0002B2DFFF824BF11F1E533F17383E871F67A +:1034D00053E6DBAED82DEABCA3CB2539B87EFB5D25 +:1034E0008EABAF03E0F41C579283E8D842E779D45F +:1034F0001FB082BFCCFBF310EE3B5649AC01E0435A +:10350000B177FF7708E6E58361E0FE4392E13BDABD +:10351000D59249C6F3B54D799EC1D84E43FCED8591 +:10352000FC3CCF7B35FA6754FB513D6F8E1E4F95A7 +:103530008ECB698783E309ED3BC46330AFCCE148B0 +:10354000EDA6BC62D781DD5E85E7B8A556F67900A9 +:10355000BB933C56EC4F8DCB007BB784E665F2DE27 +:10356000887E119751E0725C89CFB8EF127E30F5FA +:103570001C01F6D5650EEE771A83B0B408F6D5387F +:103580003FC55F7C9F2EC42ED68EBF8CD179ECA513 +:10359000F0C92C1C9F068389CECF009F531D741E3B +:1035A000EB2D243FD777C4E7CCAEF89C79317C7EF5 +:1035B000F1B774EE27B083F6C8ED991FD473783550 +:1035C000BD3631721C8D793CBD50A1C78FAF56F608 +:1035D000ED4A5ADD371B4DCC6F067BC83481B9905C +:1035E0002FD4B806B59DBB1D71547E555ED9DDB88C +:1035F0008E8D3681CEF91B133954CB153A4AEFC65E +:1036000079F994F6EF461D9ECAFD5B6877A87E02A5 +:10361000B5BC4B29EF7294DDCDF16B1D8C783588EC +:1036200062B7F86C70707F70959DF3D5B8A8F353AE +:103630006869D2D8E19D76C19C7DFC1C764E2F91A5 +:10364000F9B18EA22765F81F9E9BCFC3A378E0F740 +:10365000EAA16ED26BDD9CA31A82B00EB33D166F49 +:10366000B7E7A8EFFC90CEFF0E163359E87569BD99 +:10367000FA334787FD68FF9EE7AADB1C5ABDCA8262 +:10368000D95A39FB99729E1A8A3A1F52E1530A1D80 +:103690003629FB71949B28AF9344E625B92DF1FDA3 +:1036A000EA7D79DC2FDA418715B2808BF7942332DB +:1036B0008E4502F19890D4E9A782A41FD33DF9A9C1 +:1036C0004286D09A74C057FB306647BF7FE28AA516 +:1036D000AD7A3CDF1ACAC8EBD26863F145F83D57B2 +:1036E000C7BFDF2037EA219D686549B8BC21FF5478 +:1036F000DA1F3455305904BEF8D891C8F74D2B3E27 +:1037000065E8474C75C254AC145F342E03F9BB8294 +:10371000FB9D5F59BD8A69CF755F53E833C1CAFD10 +:10372000B518E685F55DC6C4DCF54C5B4E396FBC5B +:10373000DA7588CB65EED7A6101F9413760BF98146 +:10374000DCAC5D42B9734868A338B3BFE796BF8568 +:10375000F4ACF251938ED570BDE8BD689CD0BB4AE5 +:103760007F3DC509DDA7F8E30E61FC0FAD178FEBB8 +:10377000B9EF2FC9028E5B92787B99D05E7D31E2E2 +:1037800027B2BDCB5DA7D82A8E9768FA311670BCD8 +:103790007D0EFA9FF8F5EB0B17C4E1E8C6E0FC16C6 +:1037A0005B65AF417E31B378BB80D02A53FC0533D3 +:1037B00009812C01FDB85EE25773913D59C4F9CFE0 +:1037C000D53109ECF872A5BEAB82091F64130A1942 +:1037D00097DB12FB40E51FCC74D99F0B40BB636F96 +:1037E0008DB7A39D0EFB470FCE774C06E83D58875B +:1037F000F441DC4F9C9E9240F113F7F5E0B757E39C +:10380000B13AE2D2D8FD479F736AE2D21A9B8E4644 +:10381000C4A5F99B8EFE4B7169D0FEC9A1FFEFE2F2 +:10382000D254F90894A9C773F0C3226B47FAFA641B +:10383000DFCD7A5C8FC652D682F8F77F05F83675F1 +:10384000E25B5FE67EFE67F05DBF2CDEDE4018E4E3 +:10385000FE9A63B14CC6FAEAFE4F60D944C73754AA +:103860000876A4BB4F0C5C6E7C325FA0FDCCE227D7 +:103870001FFF03DAA50B7FF7603C06579C9236A624 +:10388000E1B86A1F5D13EF02F891E48F47FBE9543A +:1038900040243B2C7A7DBC05AA3DEF8A17803E96DA +:1038A00028F4C1E6B637DE09E3FB8700F381F12D8A +:1038B000D9FD25A55F7099DA5906B61B1A7717A4AA +:1038C00017C0BEAB1EBED7ED8994D70BFFFBC1342A +:1038D0006B1CCDAB8F2E8396B10FD65BB25D6F475D +:1038E000BA5DF28688986575ACBD11C7175DBFAE2D +:1038F000E58401E729EB587B6649D7EF20B90CA88E +:10390000BFEA5813F9CFEA769F3ACA1046E9851AFA +:103910001466C55DF5C3AC02453F14B242A477C03E +:103920000FF93BFC302EDAD60652C90E6AF8A5D143 +:103930006580FC5347D3B71AA1BDB3DB5F8A1786F6 +:1039400076EA09D0D484BFB32D03133C17B1A73F47 +:103950005EC9C839DD6927F1F5B5EE8101A643726C +:103960002F87B5FA607C09CCBB76ABDEEE87ECDA4C +:10397000C7459705E5DF1123F175EDE3E70C4887AF +:10398000B582AB5D203A61F1C2F0CE755BF4F8FB15 +:10399000E390AE16811E9E0074BAF089F3BCBC8B16 +:1039A000B59BA1FCA29DEF8EBB0BD3A0674DDDACF8 +:1039B0005B794BAB2164E966DD5ADE1D87FEC38669 +:1039C0005F7E41EB72EA6981A5DBBAD6AF79F40C70 +:1039D000C5E19E85059213711DC56A4342D7726782 +:1039E000B7C7927C3ABB57A0F3AA4BADE3E802CE2F +:1039F0006740EFBFFD23F45F73D46847DF7FCD6F6F +:103A00006F8D47BFE1879297D3FD236BD2507ED451 +:103A1000E8FD6932419E5FD37C1BD1E32D876EA305 +:103A2000385EA0F75EBA229A672F9CDFBC2D37D292 +:103A3000FC6A1E9943F3630F0B0C59E3BCC4C6EF39 +:103A4000EC665DDF57F8C6C896E6DC9982FE52C682 +:103A5000D6C37C3E44273EEE2F5F13C90F6D64DB57 +:103A60008E09E8FF6B4B15F01C513CA4A778C1E50B +:103A7000FB12899E9E2AE07AA3FCD0F971C85FCB25 +:103A80006D92D728D3FCBB8D1BACC37F0DC0763F96 +:103A900033CC80F29F2B71839AF284AF0FB71963F6 +:103AA00084AB01A6759C67BEC6904E9433D8BA1DF0 +:103AB0001F129DB08C81BA04987FCA706EAF60FEF1 +:103AC0004F533AE3DF3E7FE384A137F2458A8E65A8 +:103AD000C1B896043EA57E2708EC53A40F151F75A8 +:103AE0007B8C2CA8E5DFEDEF47F16FE477903C8409 +:103AF000B73AB00CD6A720DEDAC7FD09FB817E1FDE +:103B0000857EE63F00E535FCDA491786CE7C5B27EB +:103B1000FF31B12A01CFAB6E51F83D7ABDA2F9FF5A +:103B20007881E27751F85FADCFB6A476EB9FEDE4F4 +:103B3000773FE1A9561F780CF1547BC448E765B57F +:103B40008F733E0381DD9E05747FE637FBDF9C0E9D +:103B5000F339D3A24FA133AA28F95AB30BF814CAE8 +:103B6000EB33446626F9FA8501EDA28C72D66E8499 +:103B7000F19F497133A4EB2EFC09F9DDF2670AF7D6 +:103B8000D7FEDBE4EAEE7B3F15E37BE6C75B7A908A +:103B9000AB31C323E5EA79363401BA61A77FB5A812 +:103BA0003F9D6B45E157C56BB47C7CACC04A788EB9 +:103BB000968FF0F726D3E071E1AFFF4E74FC0F90C3 +:103BC00077A2DC49BFCCC3E917D286DE38DF341DCB +:103BD000C3F49240EB0D424E77F38EC467F4F7576F +:103BE00090C6603C7A9DDD8426EDF4D4ED71784E6C +:103BF000D6A0D8F70D161DF1755BA695E244D0FE50 +:103C0000443D77A375D032D49F5315FE52F97012FC +:103C10006F1AEA2F6318E7087A479117C0C71C9FED +:103C20000ADFEB48DFB7A5143D86FB841B3DA7AA3E +:103C3000AA219DD1476446925F5C2E18A928EC6B9F +:103C40005CB732470ACFEF9F11D11EADDB24D737C7 +:103C5000127ECF2837B563FD06D754FD6EF4DB1412 +:103C6000196541EE4AF707EB4399DE6EEC3A154EC3 +:103C70004A395081F1D2D71745F2F7F4283EBDB941 +:103C800022F2FB4D6C5B2AFABD6EAAD1B300CE2B9B +:103C9000AAFC15C365E2EB9B99778D6CE9E4BBA1A7 +:103CA000AC7D26E2351EEC5E94B7F1A64C26F1F908 +:103CB000B61B297E46263B4D2C632D64F7174951D0 +:103CC000F1DB7210ED9686A5501FEDD14C66E57EB6 +:103CD00086C87B2F63450BC503BE5A04FB5D1B41A1 +:103CE000D257AF6E1702E81F3DEF7CA211437CD084 +:103CF00020F703FE172AEBC9FCA12AAC27329D1D31 +:103D0000E51A73B9ACF2704647D648AF0945BA0810 +:103D1000B996E88A89C04BF2F8A48874AABB7744A4 +:103D2000F9F48A0111DF7B79AE8AF8DEA7262F220B +:103D3000DDD73B22A27C7F5F5944DAE6FF4144F99C +:103D4000816BA744A4B3364E8F287FE5E6D911DFF7 +:103D5000070716467C1FB26359447A58CB9D11E57C +:103D6000AFDEB32AE27B6E707DC4F7FC03F745A497 +:103D70000BDA7E1A51BEF0F0B688EFC5A15F457C24 +:103D80002FF96857447A64FB1F23CA8F0E3F1B919B +:103D90002E652F45942F37BD1E911E2BBF1D51FE42 +:103DA0009A8C13517A4CF6DFEAC0ED21DF275D6B68 +:103DB0003D13511E76D25548377A851EAECB3E173D +:103DC000F17DA2FD9F11ED199897FC6A268CB7042E +:103DD00018C35A085A581BC181659E2787A31C69BE +:103DE000F63722511D2CFEA21FEAAD579DB7D23ED9 +:103DF000E17C06DFAF4BB04F46BABEDE64F1A31CD8 +:103E000057F9353E2CB2603ED0615820288763595F +:103E1000103635896133C1A47032E527871309A6AE +:103E200084FB507E6AB817C1B4F04082E9611BC1BF +:103E30008CF01082BDC28309F60EE753BD3EE15CF3 +:103E40008299E112CAEF1B2E26D82F5C4EF9FDC3D2 +:103E5000A504ADE1EB08DAC2D7121C109E4AE506B4 +:103E60008627131C14AEA4FCACF034825784E710F0 +:103E7000BC325C4D303BBC88E0E0F0028257856F7D +:103E8000A57A43C24B090E0DDF45F9C3C23F249802 +:103E9000136E207875B89EA03D7C2F95CB0DAF2377 +:103EA0009817BE9FF2F3C39B083AC23FA3FC82F06F +:103EB000C30487877F41B030BC956051F8D7048B2D +:103EC000C3BF243822FC04D52B09EF24E80CFF895A +:103ED000F247869F22382ABC9FF247875B09BAC205 +:103EE0002F517E69F8458265E1D729BF3C7C88E087 +:103EF00098F0DB943F367C84E0B8F00982D784DF09 +:103F000025383E7C86E0B5E153047F103E47F5AE90 +:103F10000B7F4A7042F89F943F31FC25C18EFD878C +:103F2000B3A77B2D1EDD05809B629B199EA34CF2DF +:103F30000AE4EF7B28F6E3E748FE151BAD985E83A5 +:103F4000557AF1FA18873303FF6165ACB5989FBFC6 +:103F50001DFC11AFD7587AE29D5B51BF2D3532F46D +:103F60000F45CB55753CAF16ED4FC5F3D0C6BC50D1 +:103F70002DFAD336D8425508FB14723B3BB590EB73 +:103F8000CF5E85DC9F5057E4292AC3388BA58FBEAE +:103F90006983717D062A92E2172D812B705F5FADD8 +:103FA000E80F96C2E36898A5BD1F97F332E90BB0FE +:103FB0001FDA513F2CD99B4EFEA826DCA7533C6547 +:103FC000A811F58B5EB977C8F644E2C9C8EC261390 +:103FD000F0614F7AE352FEEE2FCCFCBEA450E8B164 +:103FE0001776E3E7EEF49F5F763BC5FFA676CA2E11 +:103FF000D6CE3D29B7BBAB3129B90C13419F552A09 +:10400000EBCDC49767205D9CF71BAD184750E9BF07 +:104010006502DA8BC65A7DA7BDC8B0BC9795DA7029 +:10402000FDF78E2D847E432EB03FEC5DCBC15F3C0F +:10403000AE4F65A68EF1B8D296E7717D3D501EF564 +:104040007525DAA19A7D4EFDD227FBE239D66CC5E3 +:104050001EF5D47E48E7B61E653FE9B9849FD85364 +:1040600018BD0FB050DCD9F95A91CE9BF7A7DE7E70 +:104070006038A443AF88743ECCE496BE8497B5DC28 +:104080008E55EDD76A90A72EE0B7B753FFD0D70A69 +:10409000E3D9BFF88E0CB4D3EF59B3538F7E995048 +:1040A000DFA574F9257AFF1FEACB0C78DE58E95FAB +:1040B0002AA17DACD7B12DB48FE8C7C8DFA98B5D2D +:1040C0006145F92EEA22CFF54F16F27DA30A8FA3A0 +:1040D000FF0BF96C098F7FD2EBBC74CF94F58BD1B9 +:1040E000F1FB07FE5A4CCF6DBA7200DA91E32566F8 +:1040F000923471191A3B3186F65512F4ADB12BA3E7 +:10410000EDC81F17262AF6AC97E2E94E08FC3E22BE +:10411000FEE13E87EA219F485E573DF6CB64EB4FB8 +:1041200035F6A571E3E445B84EC73BEE75C11C9169 +:10413000AE70ACB00E952B625D83E1FBFD0AFFEB28 +:1041400095782BA017BFD62E47BAC2F2E70B553F82 +:10415000169FA7A7C96845FA3921F8C7501C6129DD +:10416000638FE6468D4FC7C7578AE5717C408FFA4B +:10417000BE1C8F273708816D84072F8568CE79A3F1 +:1041800037C52BCC4A3718504E79562F0D62BE07D3 +:1041900016C70AF3324A4C32003EAB157F386B1219 +:1041A000C81F1E312F901F27D7EC7C1EBF8704EB42 +:1041B0000019DADBA38C3B84FD62FE061EB7B0E675 +:1041C00047712E3E0F612BEA79156F954DF54B190E +:1041D000D1758BFE87482767E3ACB85FAE54FA9F72 +:1041E0002532EFC5F0F441A1BA0F711D7B0BDA9FA8 +:1041F000E337323C1F84FE67BA35EBA0C14FF02D88 +:104200009CBF829F35CA3A1B9571AC49BD9DE13870 +:104210004EFC3DCE8AFBAFF6C2246A3F547F07EDC9 +:104220005B4E565B055173AE163D2E92211A7A896C +:10423000A633BD8EE345E507950F54BA39AEE803C2 +:1042400015BED3313F8D3F44ECA4D3E8F655F97643 +:104250008DB63CE45F93C9E3638F2B7EE523851F16 +:1042600057623CC01D858A5EB17AE97EB93A1E4428 +:1042700028F18B42BF468BC93518F0734659DF359C +:1042800082BB02F76DFE0D46A28BE87DD4CB1DF4F8 +:10429000CB3C0655BEEA30DF4AF9954D469719DA10 +:1042A000ABDCF8E41DB87F7D4FE0E7DCD06D3F3C30 +:1042B000BFC20379C2A342673B143CECC0FAA9B465 +:1042C0006E0CFD50FE4D46BECF54E8E53836017207 +:1042D000CC50E416F0AA04C8F71C926F2B785C64EB +:1042E00095AE350BF77F55AB8259DA7DA08AB7F1D1 +:1042F000BD41F1E2FC257B1AF285CD3B2201F17C28 +:10430000AEA92001FD699E78FE5D903C85981EFF58 +:10431000ED9C4203D2EDD138BA373463209B35058A +:10432000E3299473E7190DD78EC7F96514717CBC26 +:10433000BA126678256387569A980B88E4F5953209 +:10434000A5FFBA3283D26FADB4123CB2329BE049C2 +:1043500003A78B19C91D71E3061C4FBF222E27FB33 +:1043600015A9785E9E81FBFCF1DFBE5E80E7120539 +:104370004572D5B5A33AE71752E22CAE77C1626A0F +:10438000F445C50DB1CA210C4F57BB4B22BEB3EC4F +:10439000FCCEF4004E1748BFB3D7DAE89C6FDA843E +:1043A000E488F237ADED13911E5EC4D77BF2F8813D +:1043B00011F9D3AB8644A4AB957BD23696A15B05AD +:1043C000EDDF7A480CA0BCBB75E9350977F034F114 +:1043D0005634FE6F9FE39F89E3B9FD17463BDE8F9E +:1043E00098B35960FE64C21BD71F6FF278EBB99B7C +:1043F00045E681F64F27BAD213A0A98FCC7C1E1FA9 +:10440000FD55DCDA80FAE3DB066A073628562E57BC +:1044100005E2D3D387B2E87EC98C81FE7E782ED5A3 +:104420009ECAACDBE0FB9C10EF870979E45F39653D +:104430007EE78A3B607C7F9FB8713EC6EB831D910F +:104440008A7AEFEFBB44867A77C1D2BF0E97017F9D +:104450000B5F68791397ECE44691C9E84FDB61A4E0 +:104460007845406B3AD27DE7FC0239487F0F14B89B +:10447000A71701FE4ECF0FE490DF60452AB70BA2CD +:10448000F000F39D8F72CDAF8BB73E8AF24DEF29CE +:10449000443FFF9C237D59BDA0A573C5BFA8B4E3CD +:1044A000678E5E8CFC2EBB887E4E36658D23FDB2FA +:1044B0005660E89F07FE9944726F63B20ED77B7611 +:1044C0009348E7FCEA39B3AAF7D926D1033607D6D1 +:1044D000F370BF96ACF3433BF71CD42BEB5848F179 +:1044E00081337BF0677E0CBCE2D1F8CB16EE13DD96 +:1044F00074BEEA90758D68B7B78D7D14FBFFECC074 +:10450000C004B4A74EBD3155CFF1B69AFA5FD0D0F2 +:104510009A83715B6726FA3F90004E37785621FFE9 +:104520007FD4ABE5272550EE93BDBFE887714F21BF +:10453000251E4DEDC7D3735CEC5A921F3E6E17A932 +:10454000E7E60B7F6526BAF947DFABB68A362D5E04 +:10455000EB391E94F2F097C1FDF1C13401F0EAB1DC +:10456000B271780E5BC95A14FF0FC79B158916F0FC +:1045700026D7727FE01C9D7DE6EB4887ABE2645C4A +:1045800047B5FD130AFF3E52C4E5A02AE78E28E98D +:1045900039AA5E799ADB4BB0B06FE2FDFA1A9A1A2B +:1045A0009D4718908F543FDB6F8A9214BDD26EC026 +:1045B000771A16ED3150BCCA7CE57E53ED0E6320B0 +:1045C000807E77857F171A1EFF091EB4DF820B0BD2 +:1045D000ED2CDE2E04820296DF4AF4520B0A29905B +:1045E0008BDF03E3DAF0BB15142DEE3702FCFEBDC2 +:1045F000090C30941F7E16684C82F6E729F62FDBF3 +:10460000A13FA9DD8F2C6E89BCAF5FD7E57EBEBB15 +:1046100011FDC273A17DAC3F8F459D2B6CD4933EA1 +:104620003431533DB6E78E8D233FE6C207F8FEAD29 +:10463000733C22BB00389BEF09BC3089E62BD803C2 +:10464000ACEB786EC1FE523AE773A9F1458F67BEB5 +:104650009DCB91DA8D4220D0CDF854FC26389915A7 +:10466000E5C522C02BD235F43B06EF3F2D86710500 +:10467000A1C87CBF3BFE6648CF07820A907FD03D31 +:1046800009F55FDD0322DF57F8D96BF87E82BADEC9 +:10469000B7C0BA229E6EF15868DC35DE2F68FD5F28 +:1046A0008075467E5FB0336040BD7E866D8CB700FE +:1046B000BFD46EDE795331D6DB72C8807642555254 +:1046C000304B0726F1377B966F19330A9B7793DEC1 +:1046D00099676A6AD3FA5F54B820108997453B22DC +:1046E000D3DF156F4CF103CFC37F61BCCD7691EC66 +:1046F000054DB9087BA7C6DF4EF1363530DF061908 +:1047000073FD4497F3ECCC8AFBE27F757C4CAC22C2 +:10471000BA3B0F74207647779739DEE8FD5A5AB1D5 +:10472000B25FB3F3B89ECFBC4A5CF88AEEEF714437 +:104730009FDBBCA397495FB683BE443BFB7389CB29 +:10474000DDCF5FCE0AA068E949EECE57F4E43CD451 +:104750008B003FD8FC443CEECBDE7FE089343A77D7 +:1047600042FD3254AB67837D917E6E7FD26C879E13 +:1047700059D523C620FABBCFEE3692FF387A9CC3B8 +:104780000B3C79C5285F14FD785A38345C46BDE887 +:10479000EBFE3C2ADA0EFBBEF39A8DF3CA473B8050 +:1047A000CFEBBDB57C3E279AF8FCE6769957A4FD81 +:1047B000F09139487AFBA39D226BE0FBCC99E4870A +:1047C00034011DE5E2FEB589EC80536007E03E4010 +:1047D0009DDFE2656F1D9360DD175CD19613047C4D +:1047E000546D32927E5FF0FB38C2CF69A1341DF95F +:1047F000EDEC46A3CB8278DB61A6FCCEF174E8FB3E +:104800008A62ADBEBF4C7CB12DDC0F043636F98117 +:1048100004D8C455E5F17319BC27C42C3AD20BD186 +:10482000F57F5CCCF5C7625147F665AD81DB999F9A +:1048300028FBA2C5C5DCBE5C5CCCEDCD5B8B95FDD9 +:10484000026B6F46BC1DDA6794E91EACC416239E4A +:104850000E093A3AC7B08CF02CC379AC3E62CC4218 +:10486000F935C5143F03F96275E27C3A379BC9DA22 +:10487000F4888F49454B77509C486F26535C0F86D0 +:104880004469FC3107F5EF8C5D8EF6089415C1364E +:10489000AF2CFAB02F96DF826958F763E696B1CB5A +:1048A000B1BE4D621877E2DF67243DAA2F831D2039 +:1048B000FAA9634097E37B5AA5FBD720BE5FC8489F +:1048C000CE96A1FC2C29C6CEED0736E653F477D759 +:1048D0000864A7B0D5A102947357B3D532C6B7C048 +:1048E000AC775F48BE18FE23E38C6ACB9812B703FF +:1048F0000B5344788D48D71AD4EFAF557D9E497835 +:1049000094F0BCEC35C6E36C6A07B44B2EB4334B61 +:1049100059CB36C0C78D455EFD5007D5FFEC7AA058 +:10492000B3E08B91714ED74B56BAAF90E9625E916E +:10493000EC0EEB58C4CF6130AFB13D8165537AD2F4 +:10494000789684E929CC467EF5292E9BBD01F05B43 +:10495000BBEA72C77BBCEA7327C2163DEEF7672A33 +:10496000FEC65ADD2EEA5F1D6FA514A2FE329D4CD5 +:10497000C0F5A94B82FD0DCE6701F73FE84CFC7BEB +:10498000550D4B42FEA9D509446F9B3DEF51BEC763 +:10499000664DD2EEAFF7AAF4A7EE7FA410BD477420 +:1049A000A282C7C1E5C230B5EB5467E8D82759B138 +:1049B000BD45A056B1DCA2BD4F6651FC9F60D5E15C +:1049C000B80E28ED2E52DF45FA4DA45FF434FA4EAE +:1049D0002FC2171F2A7CF36131DFA7BF5EACEEC385 +:1049E0005A484F2EDAFBE7C3B8EFEBA9FDC54616D0 +:1049F000C4F1B5EF33125E045DFB208AD36014C1AD +:104A000081ED64617A3E6C8471FCEF17737B4DA578 +:104A1000EFF98A7ED281D0BA40F682DF500CEDD415 +:104A20006CD1D82FF0FF058CEBF985DB23F3995679 +:104A3000BF913F21D25F2E18DAE99E9F30CA6C47A2 +:104A400039586968A1FDB2001B02A4BFF93DD4D357 +:104A50006FE4F68EBE4920FB91FC200EF48F81BDE1 +:104A600008E9EACCF661280766A778F97B518A9DA8 +:104A70003A9F0F85CDF7DEC150CFBE007A1CE9CF3B +:104A8000E8FDF02805D36DE6E397143B72CEC6A887 +:104A900077A0D646CEEFB8014C2C18FFF13446FA79 +:104AA000C288F3D5E8E1E3BAC9749EED1F20517CBA +:104AB000869E45EB733723BF410ACF97147BEDCB1E +:104AC00062BDEA978BB82F759E7D2D2111AA69F7DB +:104AD00018C646E5F52C37AE77C506913EAE775D34 +:104AE0007380C3756D74EE2C31D62789E2799933C2 +:104AF0008FF2C9EFEB1E2FF863F1BB4B7F5A3BCF10 +:104B000057F11FDDC42DD84644C62D74C483389395 +:104B10002F2B1E448D77AF42393DB0F39CA3EA455D +:104B20001E2FFD85F9DB7E6F40DA2A00A2FA915F25 +:104B30009EFCF0FE5546B92105ED98E71FC174555E +:104B40003D7F07E50BF3C1F73D0EA4F30426C0BA81 +:104B5000CE4878E111F4E37F2899C81E7D0827E745 +:104B6000C079C4F1F67521EA77160B9DC17B15D784 +:104B7000A4B4C5A178AE5A9A4571698DA5F99BF187 +:104B80007ED4757FCC9A61EA8B4E09A6C44FE6FEAF +:104B90000DE3A56EF81AE645E9BC19AEAB816F9F2F +:104BA0006F9F69C2788A3FE6CD90005F9F3CD8DE58 +:104BB0008CE97BFEE89C21013E3ED9D0DECF4CE95A +:104BC00072FEBD5E69CF5F3E03DBFBE4619E9E012A +:104BD000DFFDB4FF0D66A1BE9DE435DB516FA8FE7D +:104BE000A42ADDB30471E38C7249E5937F647D3AB6 +:104BF0007319D1553B9DE7D4C504F5E9C8FF3B05C2 +:104C0000FB36C85DBCBC34BE94211DF2F3D2198AB8 +:104C10003CF1A0510EEB21B8BC24B7FD5626FF177E +:104C2000CAA62D3C2E803DCB5A28BE72288CC7D1F7 +:104C3000399EEB4758F9BDDDA8716D1AE1BE7E447F +:104C400001BEDB78320EE961A3D345E9BA22770DC4 +:104C500042F646202D15DA5DA8636DA8C7D5FB5A2C +:104C6000F7E822E3FAAF1FC1ED0115DE5602EDA60B +:104C700076AE0FB4B70CD3DFB73D29AA3D159FF32D +:104C8000147C42FB77FF2BEDAB724C6DEF60D7F1DC +:104C9000AFFF57F031C619D99E6AA7AAF31886B696 +:104CA00018AC73D928AE67D4F1A8F96B8460EACD4B +:104CB00029F4EEA21DEF75D9DC9515D5D0FFB922E8 +:104CC0005B2EFAB7CF790B1374D0EEAF4728FED81E +:104CD0001F71FFC09AD49B32D0DE3BF3F82DC96818 +:104CE000DF2C09F37702EAC2FCDD8033AD470C18F4 +:104CF0003758B7FBDD717D705FDA927B05BA0E54D1 +:104D00003BB3B6F39D2209EF07AC49FD40AAA67E4E +:104D1000D477A2B89FE318C609751347F8D408558D +:104D20000FF279E628F3691DE9DA3542334F355F32 +:104D3000BDFF15DDCE374A3BF78D60AAFF9BDABB7E +:104D40005AE0EB5515C3F571C11BF6F9AFD3BE3868 +:104D50004787EF870C3FEC35CC86FC9F149505B553 +:104D6000FDA9F53AFDBBED91FEDDBDDCBFABF66301 +:104D700057C65795D4B61CE3ADBF1951F308CA996D +:104D8000EB1E621D71DBE8371D6F54E5C4DD33C6D1 +:104D900038D18F28523A34C2F708CA8903316DB727 +:104DA000BD8E7CBE2E8E6D03F912B2BD7D1B8E377B +:104DB000F45F896457951AE3AEC07762BE2D2CFD6F +:104DC00066048FA722F9F06DA1FB08A643B6581D13 +:104DD00018A34047FAF914FFED37933FD19313EB33 +:104DE000413FDC011D1BC3923AF1F6D6086E8F7C61 +:104DF000A3E0ED80729F03FEFAED423FDEAAFE02C1 +:104E0000D2B1DAAFA1A8F46B6DBF8622F7A9110564 +:104E1000DAF2091407DA53FFD1EBF68142275F6318 +:104E2000FF00DD4EA03F8D9E9E322636227DC3843C +:104E300064E6D2FA8F6FE81391AEA81A18517EFA81 +:104E4000DC2111DF271ADB1C5ABB445DB7CBDD37F1 +:104E5000B5B57A5252717F21B0F6DF3B105F2D8ECF +:104E60003710EA6437EAB1456BAF25BF7442B89298 +:104E700060EDC66B29687E71782AA59728EF75BE0C +:104E80002AB6ED3E84ED3C9420A33DB1586AFB1C4C +:104E9000E35F17CB3ABA3F04EB306C37B63B602484 +:104EA000D9DD4B76B75E81F1924C8AB3E3BDE089E0 +:104EB000E26B0ED47F13FBCBBA068C330E9BA9DDBD +:104EC00089A8BB617D1B0AE2D6231DF4C42F834A47 +:104ED00038BFE8437CBC63C39323DE33BDAA644080 +:104EE000C4FD6B7DEA7609F9449D873E2410FC41A0 +:104EF0007808C1BADD93253CF7FD4BF62F52504F91 +:104F000040790B429BBB84F30BC81F7691383AA3C0 +:104F100022772A957364FB48D7E812C0F7A41521BD +:104F200009DF1D6216838CFBD14945B919F335EDB4 +:104F300034B44E63289F8C29CC807AB71260B9E6CE +:104F4000BB27EA1E980AC796E81439C1E553C73D46 +:104F500063E7293A479A29739A51E9224F29AFD634 +:104F60006F43F98CF2F6F7FC3CE9DA919E8A1268FD +:104F7000A7AD9455EC2279D1D60FDF83FA778D1F38 +:104F80005A76D0BE4CE6FB937829C49200DF333AC0 +:104F9000E6C1E9F352F3F88152FE5591F9902E5E85 +:104FA0001D3DBA0DF75BAD77E5E7D33B7772FBD7D5 +:104FB0004857754F970CC47DFAE212FECE53DDD3ED +:104FC0003C5EBDEE6923C5AB4F4C6EFF80EF47CC16 +:104FD000563A27867A489F9FC047D437DF8EF42CF5 +:104FE0002EA17AA7F2519FB9F67E710CE30E5D9661 +:104FF00038BAEDB169846B097EEF699C97E2439BF7 +:105000007B510AEAD97330048C773DE77DD2F106F3 +:105010004FBB695FB896F39D47E1BF6A856E672B0A +:10502000FCA7477ACB47BAE3F4561B4EE4E524CEFF +:1050300097B31E4890FDC897611BAFB742207E848E +:10504000C522FE9BADD07D341F2E0927533B2A3F3E +:10505000AE1EE9D942F384F5F3C1B87E00FC8DE7BA +:10506000E89E55BD1CC81F97A68F2F258C8FD03B5F +:10507000053DD2871160B9869FDDCA7A57CFE5FB1F +:10508000A8EA22DB36ED79F9D6EF48E73F2EE1F2C8 +:1050900078B605F4640ADA97F10CFD6A55A956F260 +:1050A0008F2E5B27D0A369CBF4C12CB427972D3565 +:1050B000931FEC96C39E7171D6AEEB352D9CC3AC9D +:1050C00080A7A9E141047F52E4F91DE2A33A7C9351 +:1050D000B21E39FC1CCF9AA1F8EBF8F9CFE7DEC27B +:1050E000F43B789AFC3A052EEE77D3078CF6AD3672 +:1050F000F4BB79445CE78FFA32F97EF227F1EFAA2C +:10510000DF0DFD79E8D753CFF1806E3AFC70C83FD0 +:10511000C6145DC47962177F5C29B7A7CE6ED7F33A +:10512000F8F6D6D786E3FDDFD33617F9E51E28F06B +:105130001C40F9B4704AE0B77AF48B6F7CE24D748E +:10514000CDAB78AC2A63D7D1FEE7591DF9055B9A40 +:10515000447AA713FE62276BE28A54FBE145C6ED51 +:105160008D68BA5E181E48F851F58A2AAF9F5C49CF +:10517000C1CD1D72FB52FAE69CF72DA2EB7340D70E +:10518000B80F8AD6374B76EF24FE813F779643AB34 +:105190004F22E93B5A4EB795BD4D72693CFAD7E0B4 +:1051A000FB7EB1E57E34C5CA7EFDCF278E4263B556 +:1051B000BBA6113F960E1198D88D3F51D5C3EAFC7E +:1051C000557CFC45497FE2743167C1E5F08999EC73 +:1051D00054A37F3223390A502B47F551766A47BED4 +:1051E000F3BBF1C7B992C8FD803ACE36836A37F176 +:1051F000F1BFC4B85DA1F673EDC82999380FD40B7F +:10520000D8BFCDC9FD41FFBE7975AF1F6CCEEFA6EB +:105210001FE29D91F353E7A1CEEB6565BE97AB3FCF +:10522000863BBF9FFE205F2BCA5B73029DC78F7AB0 +:10523000A6F8F3BBACA8478C12DA11AD23CB873BA1 +:1052400035F6BA3A2E759CAF28E3063D53A22DA73A +:10525000E6FFA7F44E34BF46F369345FAAFC7ADD5B +:10526000BD5CEF30B407BBE1CF4E7BB0AFBD812159 +:10527000BFF2735796CDDF5D8FE6D368FDA6D2C728 +:105280007E91FB795F777A16233D96FC72E0EE3FC4 +:10529000025E4B9FF8F289A3D6CBA1C7A7F4A48FD7 +:1052A0006A05B2578C00B5FAC8D3039F2DFB8E7CDC +:1052B000E67176D829DCCE4A30909D75297A5BFD5F +:1052C0009FA3B7D548473DD9D3EB9CDC9E067A5BBC +:1052D00087E5BE3F7DFD89F613484FB88FBAEE25AE +:1052E0003BC5B32022306E6AA2B8EA37388F8903F3 +:1052F00063731B609CD75DE0FB11D049B41F899696 +:10530000C7958ABCF628FBF9C747BA7F83EB7E2096 +:1053100086CFF780A16F00DBB95C3BB532C5CBF01F +:105320005EAD07A0560E193BDE13885CF79DDF715A +:10533000DD7FEEFC6EF669AB93BF87F33DECD39750 +:105340009CA93DDBA776BDAC5B0DE5EDAF8801F414 +:10535000275E6AFF226EE6F8EDC0575052F57D32A7 +:10536000EA7BA08B979DFF82BD3BB1BCE5735322C6 +:10537000DE175D3613FD8D3761AC08F9116E6D7661 +:105380000D42F9C1D47318F23310DFD0EF942C3FE3 +:105390003606E677DDFDACF39C06BE8F752674F805 +:1053A0002504A62D7FDBB1B3B88E9E90A4FDFD9899 +:1053B000E8F1A8EF613307948BD3A48BA2D25B787A +:1053C0003BA88F781C8B92DFA1AF18E3EF13B48F4B +:1053D000C3F88549BBF97B2DD39D9F18D0BF32B14F +:1053E0003CF4421F8C2B70DE35D30226C974947BAB +:1053F00030EEB87DAB9AFDF476AD9FE4C3A416FE03 +:10540000BB39C696D671AE6EF8336E64A41E244DB9 +:105410009146FE2BFA33B6080CE39F6A8B84C0805A +:105420006ECEA7BBAB8FE78E547F00D50F623CF9E1 +:10543000E5D6BFD9D9FDBB077D462A7E33F447ABFD +:10544000EDC3DA4C6D115CDDF94F062AEDB6E97457 +:105450008BF1B18821FB7ED28C7EA7B18CD3C7B0F3 +:105460007D0FCEF4733A64AEA8F95E6CBC89EA385D +:1054700034F3B546D60F5E0C5FE95DEA2BEB5E13A5 +:10548000491F639D17284E76AC137434B4B3C46DB2 +:105490006EC2C7422696ABF41D98E9CA84F99959A1 +:1054A000841FAD935EB7CE44FA5EC2D4F2BF68C625 +:1054B000F577EB3ACA737ADF2B74D4CF96E83D12B6 +:1054C000AA7FCDBE6DCDE877BBD9C9CB535ABA08F8 +:1054D0007DB744A59D9CBE3BE99AA7893F512E17F5 +:1054E000F1F728A2F1335B59B7BF2B71AC6D65DCC6 +:1054F0007E6C53DEAFA91FC9F5C902058F4B15D8C5 +:10550000A67907826576AE3353DE89D0CC9BF03422 +:105510002D4599B73F387302CCAB2D890D13804EC2 +:10552000EEDAB7B77935D1895BC2FD80E47FBAF98D +:10553000659043D314BCD4EF7BE618D14D11984E3F +:1055400029C497B42F33EE3ED42D7F4DEA4A2F7EE7 +:1055500094738B8970B09EE0C2F7551623BD748397 +:105560008F1BBAF2972BAA3EC3F75B2EBFBEB21EAB +:1055700013A2D66B7CD47A8D894A5745A6E3252E93 +:10558000A7E2314608ECA66935B6C63E68E7FD4697 +:1055900020090E72D980EF10FC64E45F665A8A918C +:1055A0002EADFA3EF0E5A7235F3E66029A9D8CF28F +:1055B0008AE4EE2BCD2EC0FF54E46B4A1F9C89E792 +:1055C0004C371579D76440F9C0C8579B4D5074FAD1 +:1055D000EA4D7A8C65DE3EF250B304EB34CDF1BB7C +:1055E00017B03D4978FDD804DB45E87263D43CB67A +:1055F00044A5FD51E51FB884DC5E1D557F45D4F7F9 +:10560000A6A8F4E6A8F4DA68BE90C7A5A17C5F2D31 +:10561000D0EF9D5D8A3FFE3052B5035A1C78EEB63E +:105620006FDFF1E63550E7BA064EDFCF8C0CCDA424 +:105630007335953E5318C9FFCA14B7AB3BFADCD596 +:10564000933CCA8ED64FFCFBE8D8610938BE93055F +:10565000CC8AFC72D26C4DC0F302FA5D2B5498A632 +:10566000B646277E2F2DA2F741F07EFB444DFCE489 +:10567000739B8C34BF79BBF9F9E798D847C6F54AD4 +:10568000A1F3BD767CDFA0C6FBD0B85E8ECEF7441A +:10569000E6BFC3F1317FAF10B00A147F16793F5BCC +:1056A0006C12C9BFB14560C94007B76CEE7A6F1D77 +:1056B000CFA7F15D8BF53CEEB0CB778CDB6C78CA75 +:1056C00020AFB777BDCF7E1CFFD1ABEBB9F0C9914E +:1056D00091F1666A3CAC7A3EECB9F4FB8C674622E9 +:1056E000BE95F8B48EF7A4A4602AC62736BC989C51 +:1056F00087F4F08C8E9930C4B4232E56297F7625FA +:10570000F47025DE8FAF213862F72611DFEFFE44FB +:1057100078F7C72550BFFDEF3A3A0F3DBBD24B4655 +:10572000E8C7671D4EF4437FBCD2A7041328F1CB12 +:105730004AFCECC8DDAD621F487DBCE7442CF9A7EC +:10574000F1B000F76F6725A29F73DE2FF65FA0B45C +:105750008EE2AD6C2CBCFF02F4736B5C82F2BB7CFE +:10576000F674C4E33307F56447AA783BFD4346F17A +:10577000F7EAB86F51FC4EADBF4EDE3B02F72FB1DA +:105780000932A2EDF40EFE9EE747A684C7909F3F24 +:10579000DA32350DEF45CDD3B71BEC301EFBBEC959 +:1057A000F46ECDFB502E48780A8868078D18CFA676 +:1057B00062BD11418959A1DEFB925D407AF8F8245F +:1057C0005032A4CF04F93B83F39EE2F7B459ABB453 +:1057D00015F7851F6E796212A64F6D4F4DC4FE3EC0 +:1057E000DEFED734F46B2D64722BC6E5968EE27C18 +:1057F000F1D10EBE9F5C08F48AEFF79EDAC1FD89F5 +:105800000B811E4D4257FA2EDF514FF4B4304364E2 +:1058100048CF0B5DFCFD8585F8FE8215D1CDE9CF23 +:1058200004FFC3388844853E1729F1A58B76744F51 +:105830009FB57B387D46D36F34BD46D369F128854B +:105840004E95DF91BADCB8C8B32B19D1959A9FBC9D +:10585000DB26F4615A39E1CE40F940BF3346F646C3 +:105860006F0FAECF7ED5FE50F46CABC8143DDB3B62 +:10587000F4DC45F6099D7634F753DCA79C333EAD46 +:105880009C0FE339E9CE6EEAA7BAB8BF68FF3F4F75 +:10589000FFFA772887FA1BC80F0D14F3753BE0ED6C +:1058A000BDBE8602A447B57C6B7F830FEDCB56E36C +:1058B000CA8C791A79B8BF7FDAD7782EBC3F9D7E23 +:1058C0009982EDBF2B9FEAFBEBF8BB3F4FF7FB60E4 +:1058D00003DE4F7C7A89882F5876FA996A791CBF43 +:1058E0003EA5256E9E667CFBEBF289DFD4F99C57C2 +:1058F000CED3DECEBC5D46BA6DEDBFBC0DEF97F9E1 +:10590000D3251AAFF1CB2A19DF0F2AC77B5A006FB4 +:105910001FC5E5FCB1F0F4368C035F631940C7CBBB +:10592000B78FE2F35D93799389DEDD49D1D17E4A69 +:105930001F37433668E6E34A91F8B86C91EF6C5F25 +:1059400050E8FAA551DC1FF0AC28D3BC611CF47BF5 +:105950000FB3FE5975B80DFAD1F71B6EC5389CD33D +:10596000A306F238799DECC4788A723194CF34FE64 +:10597000A4693A3EAFE8FB89EA3B170D3689E4AEED +:10598000E67E9589E2822E718FF0A151367EFF4D21 +:10599000C7E338F04F50EF3189B83FE7F6E078C9F8 +:1059A0004BFC29DFC0E3BD8C292697399EEE318D53 +:1059B000D12775DE0FD4F7654BA6903C6EA1DFF3BF +:1059C0007B6C947ABECEDB55EF558556FD696C290C +:1059D0008E5B60D664BAD7F7078AA70B799860D533 +:1059E000C4D31D30B48CA578BD6A266CD3E4572A85 +:1059F000FDCE12F9FD427C580DEFC144DF6F6BF80C +:105A0000511C8D3BD4CF4AF2F449CD78B4F7EC4227 +:105A1000FDF83DBB908E5977C918CFE0A57D811F59 +:105A2000FA7D547B7FCEF2873B30EE29B4EA2EFA22 +:105A3000DE00DF31FE6F8D7A1EB758B9CF00A4614A +:105A400048EBBC77589962A0FB949550DF96A36908 +:105A5000EF3BDEC7EB724F2E2AADFA19557AB90625 +:105A600079BD00F9206D05F159BA89F8E0E9AFEE8A +:105A70003C8CF7E18EA799C8AFD1C1B7E9194E7C2C +:105A8000FFB7B52E7945BB866F9EFE6AEF2BF86E89 +:105A9000B53F4DCA473E1DF5CFAF87E1EF04B6A62F +:105AA000A750F9512BCF9C793205E93A4616A8FC4C +:105AB000082BFA35445D88E405FB2A86E8BE3CA144 +:105AC00022C3AAE193F794F5282F74854601FD8B34 +:105AD00069C00F964EB927A6DDE441FE6DE84B6C18 +:105AE000C9EE51E2381A94B846B59DD30A1F9F56A5 +:105AF000F8964956BA6FFE2CF210CEE31E81F84597 +:105B00009FBA274EEB47F9A752BE353681CBABBAC9 +:105B1000E4AF719ED5991E8360D59613F97B53A689 +:105B200004E2F756E3680FF273B5E5263DF985A068 +:105B3000BF1BA1BFAF46F1F77D1B12F9BEEAB8CE7D +:105B40006DC575F4167ACA47433FEFE9F9B85D723F +:105B50005B1CDE87702D4F4EC4F3AB518A3C6AED5F +:105B60002FF9B4FBECE4D11C3FC9A375CA3ADE4E51 +:105B7000EBA6AE63ABF1195A177DDA0DF4BEFD2822 +:105B800094CFB80E2B63ED38FED6746E5FB4A6F3D7 +:105B9000DFA569ADE3FAD99F6022BB17389AE862A6 +:105BA00054BA44F2FBF4286BC439B3BABECF8ADED0 +:105BB000C35C7E99E8FEE4DBB5C95FE3BAE8F509AA +:105BC00032CEFFB8AEBD00E5C5E95149344E51E7CC +:105BD000CE601ABFFDF44EF9B519F5BE2ABF8C7818 +:105BE0003F232782CE0D9773FF3967B44DE1637E63 +:105BF000AFF4FBCA2DFCD36BEE7BA2BCC179B5839D +:105C00005CDA65C7FA2D7A6D7D55EEFCA7F9777AD7 +:105C100014FFAAF9AA7E53F1FA0F255DBFF4CF3C19 +:105C20006EB596DF1B7A4F68799EEE9B161B29BED8 +:105C300083ADCE78411BB7AAFFD162BA5F730FD88C +:105C40004FB8FFBE2765FE38FCFD967BB618280DC1 +:105C50007F4D783F648E52FE7D1067F87EC063A34F +:105C6000795C86E723791CFE4ED2B1CC29EEFA147A +:105C70008412437A7BE65BFE9EADB3BDAD3C01F979 +:105C8000C86FCBD3CA17CF5989DE79AB6632BD8FC7 +:105C9000753CDE371EEB373C2210EEDE13BC2F784E +:105CA00090BE218DF2A2A4AFA302EF4997D467D290 +:105CB0003A1E636D13D13EF03FA0273A6CD07BB9FA +:105CC0007EDF904C69D79643AFE0EFB5B8968BF482 +:105CD000E64FA5A996CE8DD95059C077BD968EE6D0 +:105CE00072A252F2D03B5C8042B901D6F5457D1BD1 +:105CF000E99F17AB0197B9149F49FEE4033AA0C48A +:105D00003CF4E7727ABA43A9CF44DE6E65BE7500F3 +:105D1000FAB955B924253AC85FFCF19E79C3911FA1 +:105D2000F5A93778707E9FEC5D341CF1B06A34972A +:105D300023EB9AEEA3DF2F33EEA9F7237ED5DF07FF +:105D4000AA5B7B0F7FF76B6F29DD7F362AEFAC5F95 +:105D5000AADD0D6ABB1BF9EF0D5DB2DDCD91F1C877 +:105D60000D0F9B4DF85EDDDC07A2F295F386E8DFB0 +:105D7000ADAD6C8A4C33972EE21DB89EECCE68BB5D +:105D80003930DAD2ED3B703DD5EF88FB8505A2F3C3 +:105D90000AFB5D329EAB9F03FAE3FBA73B4C48F73F +:105DA000E732751427009A3AAE3B3F726825DF2F21 +:105DB000CD1CCD22E4DDFFC1FF83FF9BF07F00936C +:105DC0009D936E00800000001F8B08000000000003 +:105DD000000BD57D7B7C54D5B5F03A679E4926C92A +:105DE00024041C20D0930021E08087801894EAC905 +:105DF0000B4212600848834599601450AC11ED15B0 +:105E00005B6C06F230042E440A8A5EB403825A05A3 +:105E10000C4AEFC5D6F60E0F6954D468ADD55A2595 +:105E2000BE6BEB6D23964FFAFB6CF9D65A7B9FCC79 +:105E30009C4312F0DEFBCF87BFF6649FBDCF7EACE4 +:105E4000BDDE6BED3D0A388D4FF201FE8F0270769C +:105E500014C05107ACEE08027CA040CD011FC07FEA +:105E6000BAB53B200B9FC9239408B601E818342F1C +:105E70001520DD50012EA57A584EED01F4E9F327E7 +:105E80006059C5B28FEA1D0083017EF179C1F430FB +:105E9000967F75A660FA526C7796FE5D45E3743F77 +:105EA00079D9148048BA0A7BF0EB4680F2677CF11E +:105EB0007AF3B9E04A078FA3C8796EA1793A683CB2 +:105EC0002C7B017E2CE73D7B102C0905CFFD3E6825 +:105ED000283C8FEE86D5F0E198F8FB308041F39CAA +:105EE000FA56A82415D7E7C9D20A1C5ABCFE2FD3EC +:105EF0008A471BF89D41ED687D4717410EAE0FD6CE +:105F00004C06184AFDAADC6F380B6618D80F0442FD +:105F100081EAD4F8F7DB2E17F5E6BCCD79028402CE +:105F200021ECE73DFAF372FC5F6458D80832DC4597 +:105F30009986C4751DA6F230AAAF78F7A33EE06239 +:105F40007F9AF0B857C2C7809EA36711BEE053A3E3 +:105F50007BF0DD62154AA120DE7EB6DCBF19A96A9E +:105F6000288AE357DE1FDB03D4FEF6A4823D39B84E +:105F7000191E58320FC75D9C191BB32A98F89DC291 +:105F8000DF556E867A824B65A378523F3B7DF1FAEE +:105F9000C5C5E23BB36CC2C19CDFB6CBFD0C1F583C +:105FA0003308601A2EB318F2EBF1FB4677FD4FBAB7 +:105FB000092FD639614F16BDAF7FAC9B9EEB3CFEDF +:105FC000467CDE9FF223AE5FEDF4FA3D3AC09D0EB3 +:105FD000FFF3D839FCD6C8E171BE523597827FCE27 +:105FE000CFEA2E25747594A8869A4508E689D2BA18 +:105FF000CA1C3E2FE1F3292363A707CBB8E5CD31B7 +:106000002CAFCAC9BAAD0DA7B451EEEBFD2913EF01 +:106010009F8EE334BEE0020FED1A3823DD5EDE1FF3 +:10602000E52CD381964EF00A753AA02D8776CDC522 +:10603000F51A78D79ECDC5DD882C6AA6EF5D86B7A8 +:10604000278AF3F40454D0C4F77016FF97A425836D +:10605000961F2FFF16C22E20FC8818AF8F9E0A5065 +:10606000C34300A4E4675ADA8163E3F361ECF77495 +:10607000C0010EEC37551F66E917BBF948CC430346 +:106080009A0762BE93D61B9AAEC08338EFAB6BB053 +:106090003EA1BF10ACD94EF00C347AFC9EE938DF3B +:1060A000E95F30DC5CD3453FBDEDB23FF903A4317D +:1060B0001CE2DFE3BA57FFE1B589C712FAF317A56F +:1060C000667D92827F8C8371B4CF8DD419EDDF60B1 +:1060D00060F803D44328814EB64AFA5C59A4F1D340 +:1060E0003159657CEA76C1C8494457E01F41EDE764 +:1060F000A5649ED6707FA2B1396127D2DFBC2B3256 +:10610000BF3F0AD7FF53E3EAB013F167DEE4CC9F49 +:10611000E562F9C9D87C51BE24F3521796D72A0BF1 +:10612000C3A5D8BEC3301E36781C8977B25F7CBF4A +:1061300093DE8FBD34BCC7E0F73D37123EFC5549B6 +:10614000D3DB086F46F74C247A35BFEBFEE5F01140 +:10615000A02694719E7A90CAC0F8D7DFF35DC3D8A9 +:106160006FF4F15E09BFF5EF04FF3BD63A81C6CB71 +:1061700009FF9ECBA711BFDB70FEAB7EF66E9A8641 +:10618000E3AD2038E23A3E9F13CB8B211C3B737E5C +:106190003D92F8EAA70DA08F46BEF61FAEF02F691C +:1061A000FE265C3FDDD1987639F6F75FFB1D7A1548 +:1061B0007EBAD281744AF0FCDA11BB0ADF97E78E0F +:1061C000DD4578FBF9817BB26B71FECF4B7EF079B8 +:1061D0000ED410FC3F3FE091ED16ED76E0D8AF34E1 +:1061E0001CB2F0CF39927F22A6B9E74D88BF6F5419 +:1061F0008A5FA2752E75CAFADD57F3BC67F9EA0DFE +:10620000E62F355AE63DB83F0BA60ABEE07186F888 +:106210007D80F66A1AF5D7CEEF41BB9DDFB7AC00A3 +:106220007FDB2446AF10205DCC957461E8674BA9F5 +:106230007E4E3DE80427D5DBE3647A2C471CCA2058 +:10624000F4DBE1273CC455ED383B88E87ECD26825F +:10625000EB2A84B387E85DA9176597D71FF153A789 +:106260005D2D8BF1FDAD48AF6D5C36D266E378CB2A +:10627000E57888C1C7A761FBFF42BAE3FAA8EB0340 +:106280000B9D39BE7613DE9C0EFBEA1D583FC7EF0F +:10629000FC20917E10AF8E4FC3FA9587DCBCAFB760 +:1062A00074B82CF5B702B61F80AEBE3290AE2EC6C3 +:1062B0003F26C124A22B733FC0B1389DF0A0BFFD83 +:1062C000F8AAA16BE23117EFCB3F13F705F9A04A0B +:1062D00074B9EAA151BB880FAE7A68BEE624780C87 +:1062E000CE2F809CF8FEC0215521B82F9373851DB9 +:1062F00083783F671F1A0E1AFEB9E290021A8AC409 +:10630000AA4383B89C766628971140FCFDECC7969B +:10631000050AB0DF1C227CFCEEB347DFB9E3073887 +:106320006ED5069CBA9FE7A1C7B0FED41B0EDDC395 +:10633000A00E6D37F789E8C1091AF3E1859D2E8813 +:10634000E23E9C02D847F5A7221E7F644A7C7D303E +:106350001ABF233EE71174935E68E5B7198695DF8F +:106360000E2AB7F2D5C1212B1FBDA826D7523F3424 +:106370003CDE523F7C7981A53CA2FE724BFB6FADA7 +:106380002EB69473221596F6A35AAB2DE531EDD7B0 +:1063900058DA8FDDBED4523F2E7A93A5FEE2C7575E +:1063A00059CA133A7E60697FC9A17596FA49B13618 +:1063B0004BFDE4CE2D96F2A55D0F5ADA5FF6D62E90 +:1063C0004BFDB4EE272CF557FCF1694BF9DB3D3F53 +:1063D000B7B4BFEACC114BB9085EB2B42FF1FEC618 +:1063E000522EF3BF63693F33F0A1A57E96F6674B4B +:1063F0007D65FE9796F26CFDFF5ADA8F9E1A5E520B +:1064000084F8D7054D63885F9EEAFC90E5A0EB5ABF +:106410000506B16220E8A63F7DCA4E7FCB6C72EDC7 +:1064200034F8AE5391EE3DC896486EDBBFEFC54BD6 +:1064300044E12F114F97162A51E2B7AA5773AF269E +:106440003EA5BB7592DFF82FE41D12E76B739D5AD2 +:106450000BF1916CA4174700DFB5BA3EEFE50BB91D +:10646000347C939FF43C93AF0DA00FC227E677A432 +:106470004B467AAEA37E1B01E51AF1E11D7E7092B8 +:106480007C53A1A70DF9A582C27531EA87CA73BFF3 +:10649000FEBB3291BE5AEC277EA340583D7B31D1E2 +:1064A00069152844771D0AD3E95F5D6B849ED6E8A1 +:1064B00004C795084E9FE8EF7BC8E81CC8AF5D593C +:1064C0007E20BDEB961874103F4E2FC41925C033A3 +:1064D000C3F0823361FF0695FB2DE5C1A180A5FDC8 +:1064E00045359AA57E6838DF523F7CB96E298FA862 +:1064F0002FB4B4FFD66AC352CE89945BDA8F6A0D8B +:1065000059CA63DA6B2CEDC76E0F5BEAC745975B20 +:10651000EA2F7EBCDE529ED0B1DAD2FE9243114BFE +:10652000FDA458ABA57E7267BBA57C69D7764BFBF3 +:10653000CBDE8A5AEAA7753F6EA9BFE28F1D96F29D +:10654000B77B0E59DA5F7526662917C10B96F625BB +:10655000DED72CE532FFDB96F63303EF5BEA6769A3 +:106560009F59EA57FE19F574C22BD423F74C21FA30 +:10657000FCC252FF55D2C8D80FF1BDB22A4D570AFE +:10658000895EFF6EE9EFFE94B47CC29FD590AC7B30 +:1065900014D2EBEB99AE3E2DCA957A3D742761B9C2 +:1065A0003182F4C6F65F0F04B07D26FE41FA810207 +:1065B0007F633D33CD800EC267D407587FF0A37E42 +:1065C000407466D245A69A934376464A9C8EB2CFD3 +:1065D0004EBE703A3A2DF5B651C5E13F117FB9A9CB +:1065E000E3C08CE1F86AB9B7DD0DB94427C1F46E98 +:1065F000D49F5E49EADB1E9DE545B8258CF74252E3 +:106600007B76C1007C6896F7736EDFDBAF4BF4AB33 +:10661000E06213EDB24D0D3853E437ED0D4857A845 +:10662000176C69F073796B4380CBF73568FCDCDE5F +:1066300090CFCF071B74AEDFD150C8E5871B0C2E5F +:10664000471BCAF9B9AB21C4EF7737D470F9D186AB +:10665000303F1F6F58CECF271AEAB97E2FDAD554B4 +:10666000DEDF10E16747432BBF7FBAA19DCB071B3D +:10667000B673F9DF1BA2FC3CD4F0383F7FDED0C1FB +:10668000F5CFA11E43E55F35C4B81C6BE8E4F29179 +:10669000862E2E1F6B788BCBC71BBAF9D9D9F04742 +:1066A0007EBED8D0C3F5271ACE70F973E977C82912 +:1066B00016F6043224DEFF50F1D85DA4BF9AEF7DB8 +:1066C0009787728A71DFD6A5A4DD42F5D5A0EA0EC0 +:1066D000E283367E67DF873FC9FE5DC50053C8AEE3 +:1066E0001B96B7AB11F9F95A548F08EFD6666ABBFF +:1066F000C8D609160BBDE99E6488241530DAB0DED1 +:10670000BA8CFED25049CB6A38FE436C7F633DF2AF +:10671000613F35453CCC673C3CF18DF83944783DD0 +:10672000F71586AFA0F5DCE8AB77B3590A7A1ED926 +:1067300035B33DB1C1DFC179F6BCE0D07769FDF773 +:106740007B6BFB2C64BE03D4FFEAB36C9293E5FF32 +:10675000748469FDAFB8526BC85F305BC27376B1A9 +:106760006A79664F0B55D17C96FDEA2E968F8B6F1A +:106770001B931E0EB27C63FB761E682EA2DFF960AF +:106780003C9F43F628D9BD58FE0E44F8F9CFCBC242 +:1067900057D3F78B50C1A672B7028FDEAED07A0402 +:1067A000DEDBE771AD84F7B5C5AAE579D9B4D0B51C +:1067B000D44FDDE533AF53F1D5FCCB359EDF1CE87C +:1067C0007998E671EBC8F0C9E1A3E27E07A02D40FD +:1067D000782DEE74B09C46BD14B8FC7D254AFCA80B +:1067E000A5E87621EFD60ABFC49DC9EF95517DF784 +:1067F0000AC4196400A7EA9F7F88F4CFC558CFDF89 +:10680000DD26CAA7D08E23FEF35512B6C7B2B21446 +:10681000FF37B42F7ED7ED1BCCF6718CFBFD6A3CA5 +:1068200000F1B5ECCB845F63313985A8DF354A547C +:10683000D8D43117F5F7D74BFDDCEED6C2F0DDC565 +:106840006CBF46EF9B8CEF5F51A18BED577F348F70 +:10685000ECD77B54810F91171DFA1E0485D31F328C +:1068600014C2C31D1993C8EF45784376C3F3721F52 +:106870004DBCF85E2B3E13F815E2DB7A82EB5F9E8F +:10688000BD2C9FF0E2D65F4DD3687F1BA9FFAC788B +:10689000FF402E281CCF911EDCD926F68FE7DF3370 +:1068A0002D35BA2B87FD5BAB0FF4C11FF7CBFD7CF9 +:1068B00025E02A8F72BF82EECCFAC7E4FE3E26DBCB +:1068C000CD3EF2C2883BB1DFEF75BA740F8D3BA5A8 +:1068D0003B98E85FE8C5E3D58F4C1D9DB08E5B0FFC +:1068E000BDCF7E3B278879B90A87EFA279BABCBEB3 +:1068F000D8A089F17120CBF979AF9D964BF011FCAE +:10690000DFC443873B35BCD397387FF11DD2C13EEE +:10691000A683B4D54C07A7EA3FBE8388BC1B4117AA +:10692000C371C23FF1BB090F9782CECF3A08F17312 +:106930001944DC84F72B20CACF9BA1BB6532B60F6C +:10694000456A47927CB9157A4A0308BFAB5BD73ECC +:106950004FEAE1FCF67BCB86E2BA17EEC8710DC3B5 +:10696000E7BCDDB73593DB10E9E85734FE357B8BA8 +:106970009A876B4C479F44F0BB390E815F7019C0FA +:106980001EC41B479A97FD63755B049F34D7F1BC07 +:10699000A4EFCBA619CF533F8BD701E34BCF2F3DAD +:1069A000BC7FBDF45478F3C9E12AE983B8DF848F52 +:1069B000BF1C175DCB782CF4C19BA47CA6328DE361 +:1069C00022F9CCE5FA9F107DDC1C11769EDDCFF715 +:1069D0002797F003FE09EDF3469DFADF3B92E61D93 +:1069E000413C720C67FAE17D5BFD8754A6CFAF5442 +:1069F000A12FC0C870A06014C12FD24246E79FD417 +:106A0000E8D4B4512CAFDF27FA381E403B97C6CDEF +:106A1000F2EA0EAACF888E14F4DFCBFFE16C0A31C4 +:106A20002BD1DF26D273B3E27AEE9DC92381EC64C9 +:106A300084678F7205EB35BC2EA5183A88AE95C2D7 +:106A40007F09D3BC76A480DF31AD2F3A0F07A63A79 +:106A500068BEBA97FA47791223BDDAA57A055DDBDD +:106A6000E6816454437ABB47EAED9DFF18C4708DFC +:106A7000E0F87B32E2E36B45D0010817C5FF2FAC8D +:106A800087ED403DCC914DF53F8AD27C9464F0D3A4 +:106A9000FC10CE8F331C8781BF31A32F380AFD2A0B +:106AA000B544F09D465A2AFBADFDF97EB2C79DC99B +:106AB0003AD1C94E77D8577229F9AB863D9468AF61 +:106AC00077E65CC4E5396EC1F7E0EBC66CE23F3EA9 +:106AD000D022841F730C456F63FED0DD4476FF3CEB +:106AE0004404F6A714BA2C7406367F0FA251297DF0 +:106AF0005F4DFE1E6C6F4C4FE779CFA942BB4A2118 +:106B0000BBE80F26DCD82EDA2CF906CE9BFD21B58A +:106B10000B626F65B05DB38ED755EBF5451CB8744D +:106B200068B2DA57A65C450D99E5C1E30FA92C0FB1 +:106B3000782786C8A9E0FF69D1199FD1F7A855C168 +:106B400007097E1BE2281F98EB708827AD83D81FAA +:106B5000EDB727DEDE38ABF42F772FF4D9867ADF56 +:106B600007AE78F97157FD8BE368DEBF75E8119CBD +:106B7000E7E345B755B8085F1E52614F1FE391D850 +:106B80008B59E69B0C318B9E91692B0FB3B5CFB51A +:106B9000D58FB7D517D8CA97DBDA17DBCA15B6F683 +:106BA000D5B6F235B6F64B6DF537D9EA57D9CA3FA7 +:106BB000B0B55F67AB6FB3D56FB194C794087B0472 +:106BC0003568DB77BB6CDF45188FF68E03E8223C17 +:106BD00074A2C9C1F2C6CB78F5D44702AF3A9E3B46 +:106BE00032FE492CEF2F57D81BB0FFA30FDA2E2609 +:106BF0003F628793CBF3BC57BACA44B7D08DF847EE +:106C0000BE5C8A77547578DF27FCFB39EE7F6C2CED +:106C1000E9D15E8879487FF673F929D4FBA9FC0C89 +:106C2000EAFDF43C807A3F3D831F57A7431F72D78C +:106C30007C5EF14735BE2E203B3239BE2E20BB7123 +:106C400090A5AC3F37CCD27ECA895C4B7DC1B1F1F7 +:106C500096F2DE542B3CAAAB265BBECF33FE914CA2 +:106C6000F21B4AAF887F974B702AE079DBF1A58A47 +:106C7000F02581FECC759C44B8189E78B9FB2E4750 +:106C80000DF18323EFDE09FF8EF0DD7F307327F1F6 +:106C9000BBA722294D99C84A9E2811727BFF735BBE +:106CA000785EDD69ED95B40F977CA412C780A2E7EA +:106CB0002046FBA61F02E693074B346EAF1FEA5235 +:106CC000359CEF84835DC3C2FC5D3D109F7CF690D4 +:106CD0001A5D87F339B2F6FE0DD4CF3EEC87F493FC +:106CE000670FAA1389DF3FEB736BC0FC02E787FCD9 +:106CF00061020973112FA9117EFAAE6114678DC369 +:106D0000AB3B99E695075EA314BFEF9822FC49FBC5 +:106D100063AF974EC4F29786B7071863C2EA1BC4E5 +:106D20001763AAAC2F1670D340739B71255CEAFBE6 +:106D3000049FB184A6C6EF28DE74BDC431821BC98E +:106D4000D837109FE8F922E2133DBBEF3A7A0DC71E +:106D5000710EBBB53D2CA77AE361EAD94BA85F2C35 +:106D6000E7336B3C4CFB505DE58A24C699A034A107 +:106D70009C6BF95EEEA3335E8FDF37374D76AF2421 +:106D800038051CE0D1053D79A7C6F1FFA433567A3A +:106D900033C101E507F9EF6F8815BB83A4D780FFE6 +:106DA0008B7482E54611E7F24AFF7C5DAC9AEBFDFD +:106DB000C5F95CFFD5FB45EE20AEE784EA3FB5960A +:106DC000FDFD09712D9CCFDA0333B87E7F91F70B5F +:106DD0001AFF59672C5898C5E3ADA2F65787ACF156 +:106DE000B18E351F36DD4CFB5CE8F1ABE4FFB7C577 +:106DF000C9F6C5541107DBAAEC1A43F43BC5FA7D6A +:106E0000DD566BF9AB12A17FF94B059E2D881865F5 +:106E1000FE20D94BA1663FE241A5331A5987FD4DAB +:106E2000C07D26BD6E42FE6BC529B4FEA0A28FD1E7 +:106E3000A89718EF57E521BF46F2B1E890B06FA6CA +:106E40003DA732FEDAE9FEA5D8EBC98427D30E218F +:106E50001662FF7AC77D0E2A2B1F4163F700FCA242 +:106E6000236AC5CF7D87907EB0FDB3925EFBFBEEBB +:106E70000D897F279D3DA9FE01FC1FE1350E882469 +:106E8000E2918C2B5C1D4AB1BCAFCC1F6429AF3D95 +:106E9000E066781F7C16E995E94CC473264B3CDF0D +:106EA000EBEA566F41783C3DCDE35F47F15998D40A +:106EB00048F8765AC6774CFBEF604CD23B74ABA4D3 +:106EC00087E9B53EC6B78283481669FC7CDF837AC2 +:106ED00045C109B785CF79746B5907B7854F4DB454 +:106EE000954D7FF414A2AD69E7C2C1EE8F9E562A7C +:106EF000E34197C16584AF4F513CC815EFE71233AA +:106F00006FA16B0AF7B7F76ECD51ED8BFBA50B6246 +:106F10009FA9B9C467612DC3F3A906AFF261821EB0 +:106F200031F13970907DA4932785ECC8E740D8757E +:106F3000B23FA5C67384E0BBBF3397E388577DFD9E +:106F4000D736A2AF8ECE5CB50D9B3DDD599DBE34CC +:106F500018EF1FBAB2386E64F6BF4FCA2D6A47F3F6 +:106F600045FA288FD2D3D9959CD907DE98FBDE3B12 +:106F7000BF83AA05BE8DF407F63FBC347C6D29D2D1 +:106F8000CD04380283705EB3A7DC06649FF6C2C3EB +:106F900057CDED2A27CE52297EB46D64E64EB27BE2 +:106FA000D6A5CC511FC6F2201DCBF85D56C4C1FB3F +:106FB0009F553872A7D0CB85DE5839DE8AEFFBB3F8 +:106FC0005F4F26FDEA742495F1AD32CD5A5F39F159 +:106FD000D93A7AFFE402AF46FD2A13170D257ABA93 +:106FE0008FD68F7CF5D583AB92FBA2AF8B5CF51966 +:106FF00003D1C545DD4E8821320F3A930D31D47748 +:107000002B0B50AE0FD0DE73C6C1EDCDF23D49DD86 +:1070100001F2A77802FFF6CE4789EFB33393085EFB +:1070200079C6DD5E92C3FBB307D617B6C87D34CBF5 +:107030003F26391B2439EB8910FC363E9ECD72F673 +:107040009EAAE4A64CDC84EDA542CE6E44B8D17C69 +:10705000C157CFF2D8A3ABACC7EFD3D7311FFA716A +:107060005A974AF32B3AD8AD127C1E213E88FB3A40 +:10707000313B061AD9137A685298DBA1BCA571B2CC +:1070800051DEE2F747664F1D47F2755FC0ADD1B8DC +:10709000108B75E66079F06415C8EE685180E715CD +:1070A000F9A92F2AE49890BF83C926C52DDF78500F +:1070B0008C9F07B7A811E2E7D9428EE6C1B37517D6 +:1070C000D3386F207F8073F759F37709BDC597C90F +:1070D000F461C2C5849F196FDD8FFD7912F4942D80 +:1070E000154FE412FE9BF8B045EA71F72F7E3A93F4 +:1070F000D7A717BC309AF8D2621F4BC13247703DF8 +:107100009537EE76721CE6BE91F5E374DFB9FB911C +:1071100038AE8AEDEF3924C6CD8C6945845783405B +:107120005F4BCF07E5B8DBE5B8FF46FA233E1F22E9 +:10713000FD11FB7970F99172D25FB27EEB00F21310 +:107140000DAB0BB78DC5A7A6E37A13E2CCDBE5B890 +:1071500051EA672CF993453FBB653FF71CCA2CF6F3 +:10716000D23A5A859692D31E29420D088646F47566 +:10717000A4179539BE3EEC213D3802ECC7D92DE766 +:10718000F3B0FC7EFF4181DF3F59B33483E095D5F6 +:10719000EE33281F65E45DA54A12CEEF3EA793F3B8 +:1071A000617EF2A30A2EDFEF75727C39AB5DD79159 +:1071B000D9227F13EBCC6A3774FA6EB79C9FD97FC4 +:1071C0005ED7B5E97DF98DECFCAA43CE2BAFEB1F62 +:1071D000D7101E9D3EE883B601EC38936FD9F9D5E0 +:1071E000A49855AF6E8EF3AFD3A5D83E58D1A57AEB +:1071F000C95E2C8DB18FAA977F6509FE65E253A306 +:1072000096C9794C8D5A75BA42F828F3873680F9B9 +:107210006F9D856F36CA75B4CA7D4AEFE567BA9728 +:10722000ED9388C17CD1335A8D4673487FD2CB739E +:10723000B1EC46BC8F516F2957425F71D356095F3D +:1072400077A4D54B78B1DED9EE1D887F256D17FC6C +:10725000CB716624F3AFE22BBD5E82E77A9F90D7B5 +:10726000EBB58208C9DBF59AB39E851024E89B44F0 +:10727000B711D09C43642828D752CFF254B9F20CEE +:10728000FB615A53251F907231C5776315B01F40BB +:10729000079AA74313794D54A6F1BC619FF04704A8 +:1072A0009D963C2AEF68F57D92F75E707E94388E4D +:1072B0003BDB69D1DB1CE7C98FD2CB641C59CA6D9B +:1072C000735E9095D9A7DC8FC79123CCFFC67B0B4B +:1072D000D90E690B02FB511C3E3D42FBF352BEA08E +:1072E000CF17F3E7737F3BA06F3DC2DC7FB3EC3079 +:1072F000F346EA0BB83DE2EBC60284C38E370715AE +:10730000109F3B1C74B01FB7AD7EFC2E82631E3CE9 +:10731000DE49F5EBF347B19CEF95EF363F425E6CEB +:107320005F15CDAB2D5FF0CB14A7E877FD1B0E7D6D +:107330009D46DF3FEDED4B5E99F36B9674D62EEDD7 +:10734000D90DC1EA01E3F5F748FC33DB79086DFAA2 +:10735000905BDE6C2B1DE6750E4CF70FCBF998EDAC +:10736000463ABB15EA77A4849BD9EE5BABAD76F3C6 +:10737000AD6542CE8D2A316E29637F92C87BF3AC16 +:1073800076DFF7D120CA512A551FCEA27D147CD9B1 +:10739000031D2772057C185ECE8CDDE554DE10706F +:1073A000F2BE36F9777B13E5B01DDECE71AACC179D +:1073B0003D927B1819C6060D983F6C182DEC03F70B +:1073C00018C13FDDAEB0BF2FBAB4F7B721DFECEF85 +:1073D000974BA9BF23C1EBA13561BE1A443B697E1F +:1073E0002FF9559EEF48303A29CF0770FE94CFDB36 +:1073F0003F3F1CD8DFF493B25CE97F1BD8EF743EAB +:107400007E7DBE715ECC2F61FDEE34E52B64D0F63F +:1074100064325F45AB01D624E4C93A7DD67D35F9A7 +:10742000B93B2BD9F23EC3C8B4E0955D4F1C0DF9B2 +:1074300087C82FBAAF43D02DD47457903E016F8ABE +:10744000FD7EAA1F7ADD27E9C02CEFC7FE06E2AB5E +:1074500013B7FB989FEE77C121251D280AA3F98752 +:10746000B0C9CCC6F903E5E1C365245FCE4C64FE28 +:10747000AB1C3ACEF91E084FF6DF9FD645DC09A6B5 +:1074800087589F6D9C8D65824FC77CAE6FF93EF823 +:10749000B9EC8C0E23FEB957D29D39CFBD39B16BF3 +:1074A00042A417FFE23D3531DFFBF53211AF99E021 +:1074B0004D33A27DD0E56FCA84BDEB71422499E2C1 +:1074C000A6CF89FD0880DF4DFB7C5E7F6D4DAC86CD +:1074D000E607AA2AF25B6CEBDE47CFA1B4FE503779 +:1074E000AD5FD1C5BA37864211D28FC2A810C1157F +:1074F000D8E6A0E0C34108F17A6B75B1FE57F56A92 +:107500002EFB101E9E49349FC5329F11FC9EA1D4B4 +:107510008FC86F0CDF0C7EF2C39F3B4F8137BD706D +:1075200095707C5557E14A2C6F0CB8859D9AAFD762 +:1075300070BFFDAC63AB5CC77BE5A1BF135F517C43 +:10754000621D9B114DD9BF90E6E63CDBE125E1B31E +:1075500065CC97C170603F9B176A6CA74130A490BF +:107560005F09427DCB9B38FD48B8E61B03C2B531AD +:107570006D18D462FDE655699C679130BFD419043B +:10758000675F5B88E5AD1C0F7C31F64334360BFF3B +:10759000D5F9F635AE9F84BC8974D454837404E461 +:1075A0002F0B7949BF8FFC56F09D2D727C9C9B411F +:1075B000719AE603011EE75CBEA0C87C7C2B5F18B5 +:1075C000020974CC7E83FF5D7FF7353372247F1B05 +:1075D000D8EFED704398F5BD72A1EFE541B9775E44 +:1075E0001FFCCED4EFE27E4201A7667FB578660924 +:1075F0007908E57DEF778B4D1F6C947A7173D62AED +:107600000B7FEC0F4F28AFBD2FFE48F9ED89FCD062 +:10761000E9B3F2C7660574D2B770DFF43D20FF61AD +:10762000B96EC5D09D32DEB23205F1ECA4C433731D +:107630003C531F5A3443C8D70315C6A21908CF6656 +:1076400057284072D9DD758BFA2EE1D71B0ECBBEC1 +:10765000DB9FA6BEDA22F9566B925113EA83AFB6CE +:107660003CED5E1E4D78FFC319828FFD508E8F5307 +:10767000E3FCD5A680CAF8E8F5EB8C8F5E9483E432 +:1076800093E86FFC24CD0A374FC00AAF6F9A9F383A +:107690007786D51F34B52C7437D1DFDE03532171C3 +:1076A000FF77A8E2BC4E7FF44EBE106987B4D0F7D6 +:1076B000C1E22E75645F76886F81C50ED9922DEC7C +:1076C00010A63FD2FB56FA7792DED186FA16E35126 +:1076D0009D7F2724F8518651047314D15B3D3F37B9 +:1076E0004A3C6CB2D98FAD328ED1D660F0734F4325 +:1076F000393FA30D61B97FCBF9B951FFC0203EFEE0 +:10770000201A32C4EFD2622B985FA797833F09C734 +:10771000CDDCD11DE13C9F95C98C6F3B1AEA85FDFC +:10772000335DE0DDBF2D4F7A84FC338FCD704BBCD1 +:107730000A3F3683E914BA5D88874B4C1C05630801 +:10774000CB3D97F82EB914D8CF5F942FFCFE6988F3 +:10775000770487342C13FD25E7AF06F2536FC2710F +:1077600048EE2BD3A3916EF68B097FE46089DF6B23 +:107770000FFC4BA03B61BFDBA2263D6B49EC270110 +:107780006DFD28EC2779BAD0B7364FCF3C4C655FFA +:1077900091B787ECDCA381236C8F6E29447B07C7EC +:1077A0004FCE5EB8F67A2CBF32D401946F970C5F3F +:1077B00047C86F1070408FA790E0A2B2DF327D8182 +:1077C000D54F9913B196336C7ECAE47EFC96178A26 +:1077D000A75D363C05C21FC28F6C354AF04F8877D3 +:1077E000B0BEEB36845F6D7344C88B4DD355F7CC78 +:1077F000298C673D28697BF9816F84CA7878BA50F3 +:107800008D8AB80ACC5886E52586B79EF2C147C353 +:1078100019D758C24BCAEFD713E372F53CCE1B926F +:107820001F342A02CEA63CE96F5DE4974E8413F91B +:10783000A32DF41B48D05F73C96EFE51AB6947D3CB +:10784000B2F36277F7C9CF37DBECB3CDCE9E01ED53 +:10785000E807678A7864FA7637EB7DEE334358AFF2 +:107860007347FFC176F8DE6FE726D1FAB6140A7FB8 +:10787000D05E9796447EB52DD9A72CF6D798A0D583 +:107880002EDA3C7D607BCB941B663BB7330C7DCD01 +:10789000D32E1FCE676FB5CB7D30DBF99DA050BFD7 +:1078A0007EA7D5DECA30ACFD8E9A29F8B123F0E56B +:1078B000D88FFAC8E71C5512D666269C8F71041E15 +:1078C0007E87EC30F8FA2CFBFFDCCC73F149F6191B +:1078D0007E3FBA7BC583CCC7B24123BC4BF6763E14 +:1078E00048F6CE26B2CF905EF74E13F04BBAAA1BE5 +:1078F000089EF67E205BB5ECBF06F5EC4FDD2CFD57 +:1079000072BFD64F01F181B4E9F5E4AC064F76C7FA +:107910002CD60B0BC14F3C386D7AD4A07381BF2E8F +:107920005FC57C6CB34F5589AE4F101F677E2BEC43 +:10793000B08DD9A73A195FC32AC77DDC52BFE17564 +:10794000123F2EDFE5A5B8D4B0B5E937125F9C3100 +:10795000539CCB6C23BB2601FFDB74B32CE86EEE8B +:107960004C4E4E844DE5AB3A47D1F7B52AF3291575 +:10797000A28C571BF385BFDEFFF55FBD43F079BCDA +:107980007097F7131F7D27FAF7AF89F2779BC22A0A +:10799000491678A9F09497D6BBB97C5706DBA1901D +:1079A000CAF4BAB950F857F77EBB1828BFA8AD463D +:1079B000F807DB0A9742B1D43F645C3336338B4E11 +:1079C000390AFA756BB3612996EF91F4BD77C45209 +:1079D0006821B8E40BFA77DAF06E4BE1910789FE83 +:1079E0004EEB4E5E871B92041C03C0E36F2F3FC219 +:1079F000F1B2B6E9222E7BD4B73442FBBD05C7A352 +:107A0000F8DFC82C2B7DF8A649B9E6478587E51A2B +:107A1000A4CD1E4279C5829F27973F1DBB9EE40DD2 +:107A2000325C8A37AE3DF028F3DF4D45A23FBB7D87 +:107A3000EA81A2C8F5CCBF3C7C7EE5276B503FC4F1 +:107A4000F60FC8F34443C7AC2A22B47277BDEC27C3 +:107A50003C4A0E5AF9F490296ECB7ADD363EED049D +:107A6000B745AF3D9FFDDC64D38F9A5CD19A90906F +:107A70005BC20E74F827093B108CA1384F6766363D +:107A8000EB6D0FCE14F9831A840B49EE6DA1FDC185 +:107A9000F9FB66F5EA93F5FE01F44997FF3C7A910C +:107AA0003F02595365DE9E464FE7276437B4520EB6 +:107AB000AB92283FA24C9F380F203F3ECA0DDEE715 +:107AC000B6E9ABF8FD3D85C21F0214DCEA432F1E68 +:107AD000B6B26FBD3650679DCF90C556BDF65E7984 +:107AE0003E7542C409E4CFBE3FE5BD23B4EE677ED8 +:107AF00026E4F2F9CEB31EFE99885BEE7B57E46371 +:107B0000E16A7EBF12CB5F3DED66B9DF98DA750D95 +:107B1000EDC3132E7DF8247C3EF3F2A3C36A711DDE +:107B2000BF92707F46E60FD8D77364A662EA3547E6 +:107B3000660ABBF07347825E53A744C770FE5C8D34 +:107B4000FEDD447BEF81F27027F14DBBDDA79C1079 +:107B500076A7DB311F48EF9A80F6F32EC207A8E71D +:107B60003CAF09CBE5B93D6F88F77D4295C67E05F0 +:107B70008FB4AB47DE01FEB5A83FAE2C09BFC1FDF7 +:107B80003B571914BF0EFE209DF11FB16F3CE1A7BA +:107B90000FC2ACCFD74A7DDEDD3582CFC77498796E +:107BA0006336BBD15CEF0189BFFB25FE1EC8117097 +:107BB0007BEA3FAD7E89CF665AFD12F8954AF9629D +:107BC000078EBF985CDB879EFC7179ED6789722414 +:107BD000D8A13BA89D866C9BD64567D8992EA6EB6D +:107BE00081C4F848C78981E37305C7ACFCE59243BB +:107BF00036BCEFCD0B0C29949FFE5246BD251FF9D4 +:107C00007C78E52ACF917E5A60FCBAF3E624CE77E1 +:107C100035CB75EF5ECCF03D501172950BBDD7ABF7 +:107C20004E8DE3476F5E8AD97EC5B85DD24EF3A90B +:107C300084478AC00B5FB9F0E3A05DE62BC7F19ED5 +:107C40005C164EA76770FCCBE3C94F5F39F18561C5 +:107C5000E104B89AF6841D1E57950B7CAEF86EF4BD +:107C6000A08BF16150DD09E4A315DF89FECD85FB12 +:107C70007E7B795A5D13E24F8547F8296FEA9CB6FF +:107C80003B82FD6CA27960B9A8736C1D9517951A9B +:107C900023683D6F971923C5BA4A39DFDE84637FB5 +:107CA000FB61CFB7BFB21C783E71BF5E98F908C5C3 +:107CB0008D295EE2F409FDB5C537F03EB7D8FC79F1 +:107CC0002DD8CF40FA9D7346F8329AB77B7B1AEBDA +:107CD00075CE3379ACE7C5D7D1CE79A217BA8E95D8 +:107CE00025C655E58C07D97C3ED67C5F3271961A45 +:107CF0009D42F317F921E75B87E3CC159678B2C371 +:107D000029EDC2D23BEFBC73AA8CC7279C8B9B5B2F +:107D10002EF5B33357F277FDC1D14570BC80F11B0E +:107D20006D703C677E2EBD4F3FB7F93C55165E4ADD +:107D30007075740BB8BACE8CFE1FC1D5C48F27CB1B +:107D40008C9B057CFF7B787615F523F8F455920E15 +:107D5000573A12E8B06EDCBE31444748EFBDF72415 +:107D600034B29CF911D3FFEA88C74FE79BD3AE101A +:107D700079CB41CAC3F5331D46A8BF3B1DB1F1B451 +:107D80002F7BBFBDFA1248E09797801E207BAAA5E3 +:107D9000B372379D9F77B8BB75CA406CE92CDE5D26 +:107DA0004E710027F263E4676933BB3B8E921F700C +:107DB000909BF3419A6689F3E24D45823F6C2E1702 +:107DC000FCF45EF9FCB1A4E375338C4D0417C4BF19 +:107DD000FB691E59B2BC49AEF78B526B19D7BF492C +:107DE000AEBF55499453D3F6F2FAEDF80BABA55F4D +:107DF000D5E4BF20CA9E6CE9CF96F29B8E185D9E9B +:107E0000C94F282B4096951F49E5B84CEDFC3EF133 +:107E1000CD9E77E20D5AFDFEDB8698781C61BD7918 +:107E2000B4B182F5E3D6C0C079136D363BCF1C27C1 +:107E3000C5D9C17654CA1927E3637FDF17DDF6334E +:107E4000D6A737D45F3AE038271BBC5DA52ECEF706 +:107E5000E3A7BD3EEC8221E437FB43EBCFBC7DF5CD +:107E6000135E93D4559AB0DEC6E02AB6D7BBD73896 +:107E7000984F6CC88657E81E970DAF39384F72433C +:107E8000AAC007F8FA99B7483F0F07C3EC1733FBAE +:107E9000A3BCC308AEFBB7E5C24E28097600F93D86 +:107EA00052225FB828AFE39D728DDF2F59A3B8C36C +:107EB000580E3765B80DD11FDB07283BFC24B74AA5 +:107EC000823D2E5AFF92C801CE0749C132B55FD21A +:107ED0009A23DACB7B04963659F3C71C74A30BE5BF +:107EE000DDD30D30AC7747F89944F07724EC0345A7 +:107EF000BBD93FDC0503E9C9CFC45EE0FC4F40E4D9 +:107F0000FFB00FFFF5DA85C98C876D7729320FAD89 +:107F1000BB7929C509A49E6FFA81EAE84F5CFA365D +:107F2000777D17E513B5AD7501E5B35C07552D04F5 +:107F3000C7C0700790DF06DAC5BD015EFC8FC6C9F9 +:107F40008958EF1908DBEE11B80E12EA497F92FE4C +:107F50003D6596F4C3144001D18FB658D8759E7113 +:107F6000026FF970651F7A718ACC23B2D3C586E09F +:107F7000D2E4447F41BBA1723CFF4B0D989F6F73CD +:107F800047389EDF92E3AC5F477A9BCC53582AD7A1 +:107F90008DFFD7528BED97C8FC3BCA433612D645AE +:107FA00079C846C23E5E7526D3522E82E196F625EA +:107FB000DE5196FA32FFC596FA9981C996F22CEDF8 +:107FC0000A4B7B2FF4E6A38A7C035038DF803F51B5 +:107FD0002DF5C20FD62AF2370DFC8FF625D3E871A6 +:107FE000519EEE6279FF8B89072D3922BF61892D61 +:107FF0004F601044221447F92EE2450CDB7FB7DEB8 +:108000009A0FEA858D5F38FACA3F90FB79C52C9BA1 +:108010005FAD9FFD8BF31B819FFDF32F91BF99A750 +:10802000FD2BFB2D70BFDE1C8D6D67C8FD9AB16006 +:1080300039E751B8CF648041F8F0DC654FE5617DE8 +:1080400089848FE90F729FC9E2FA6DB92ADFBBF309 +:1080500025DADB645FBBBD1BBB683D6EB0E57568B0 +:1080600022AF83FD28B9967A5E2FDA039CB7518E32 +:108070007848FDCE3CA380417EAF05328F2320E0BF +:1080800066D2478984D7B2B2510A7D3F53B3DE7FAF +:10809000E326B84EE4712CFB712F08B8DE38CB967E +:1080A000AF517A6171B35475671DC513362E76943E +:1080B00027C63B4FCC1272F136F93C771FFC696240 +:1080C0001F3E63B9F4FEEABEE592F9AC3833CA222A +:1080D000275E74467D03E93D15527FDC96661D2FB1 +:1080E0000FCA33CA707FDEAA12E773DE0F8F3A44DD +:1080F000FAC397A58A4EFB9D477E58C4E7B70AC5C9 +:10810000799BF7C31F96DE80E5BF21BEB27FA6BF75 +:10811000FC725C602CE1DC427FF9E5F63CF4F3E5AF +:108120009743952B8E17C46FBF617EB917F419CD95 +:1081300038FF2AE2373AE5B73F5240FEFBC8A45465 +:108140009DF3026DF9E3CD4D5FCEA6F5FF3E8C7C2D +:1081500098F9B8355FFCF7CE58E9F3F8FD3B68971E +:10816000527EF857EFCF734FCDE2FCF22FFACA17C9 +:10817000AF0B97703D1881539CAF5E7A2C5888FDE9 +:10818000CF065845FCEF9D35F3DD53B1FC07C3FB2B +:10819000455FF9E4E6F77ED52FBE872EE7786C7F42 +:1081A0008391CFFEB177EA8F7AD92FB843F805CF04 +:1081B000976FFECA2C61B72D88F4CC263A5DB0C605 +:1081C0000194FF65E69BF7A717D9F3B3ED79D90DB5 +:1081D000B3C43D492EB40FD233296F3DB482E05869 +:1081E0007B87A2517CA8363F6306B12A336FBDE876 +:1081F0000E459C736D52386F3439BFB3EC22AC7F9F +:108200002FACB0FFA376756319DD2FF04E9D305E65 +:10821000953A85FD88D7D53BA233795F3A9C7DF9A5 +:10822000D5DFC3E976915C734653899E4E3A3BFE97 +:1082300095E07BF20E07FB27DFAD9F7C41F9EA71E9 +:10824000BDE8BF97979E07229EF1D20211CF7873A7 +:108250005DE833CA9B59FF8A03E89C36C29BCFF581 +:1082600002E4BFBF09F94CD1A4BF1D3D9B45FA8D67 +:10827000D01FAECEAF6EBE94EABD39075271DFBBE0 +:108280001AC43997087EE79A42F12117CBCF94E0C0 +:108290004E96B7159AB39EF027196C7C56F2F3DE12 +:1082A000F3755EC17793A98CF8BE00E148FA4F459B +:1082B000B8A7B419FB998F74A259FB11FCD8659427 +:1082C0007D9FF4BFB0AF3E82785759D77398E65B75 +:1082D0009DAF44E96A2F90F788A9F81FD1910F8CC0 +:1082E000B26D589F2CFDB61BF2771A3760B992CE4B +:1082F0004D6079C1022B5E561A8FB01F14B0FF314A +:108300003A9F2BB1D427DBE822B742E40F99727170 +:1083100043B09AF332286F83E2D82FCDC34FD2F106 +:10832000E9EA08B4231EBC3A61C661D2C77CDB54BB +:108330003E6732BA42F2FB2004BF891CF55C1B5B2E +:108340004B79A71BC0DB4D76ECEF6F03C6E34511FD +:10835000254AAE97923A81D7D9ABC579F26FD5C38A +:1083600071F22F2F42FD60268E9BBD3C560609718F +:1083700041532F5AB412E985F4827AB74657DCADDF +:108380005D38DE4D71ADB787221F223DAAD5AA0FF9 +:10839000A2DE60D107AFABFB94E5E2B97AA1D027AA +:1083A000ECFA61B2845B59855D3F6C4F65FDF086E8 +:1083B000F903D2C98E06E1773B69BB2F6C899967B7 +:1083C000983F45E467400754637FDB16FEDC9BE87B +:1083D0008F33F3098F2E0B2FAC48D02F53827E376B +:1083E000F98D20FF02F59AB87C4B15F26DB94A471A +:1083F000105E361C2CBFF220307B324EA54DE6DBE2 +:10840000C5DBC77CBC0F11783D913E9C04171CF75F +:1084100037D26EDB563CB05CEE92EDCA1C2736D2EA +:108420003EBF86E3505E73D776D03CE9F176BF99C4 +:1084300071B14B0BC6EDC1EAD8B8115A1FFCAB6D38 +:10844000C63B4E0DC79B1DFB29507DB2331A48CC4D +:108450006F7C59F6DB76E92340E7365E1B2FF86C1C +:10846000F2148F46F1EF6FE5C79AC8CECACEEF2956 +:10847000BD9DE84DD2F3085D61BDAC221FA202BFD5 +:108480009E8810BD9D403DDDD317DF88229F981A3E +:10849000E713767E400D084F92F54F655E6D94F3BD +:1084A0006AAB645EED6BF9B12C3AC764F2857CFC73 +:1084B0002FD16F6B3EAB6C7A6E457060BAFFD6D72A +:1084C0004FB526D1BC91FEC86FDD86FB4EE3BCA63E +:1084D0003FE2257884C62D5D47FB0045DEEE31384E +:1084E0008FD75D51EF0292CFE3D4216B715F4E14B1 +:1084F0005DCFF5AF15793F217EF97AD9D8115A624F +:108500003CFE01B8324CF01DF768E0C609F47D78F6 +:108510001DF18DC83FD2DD7B74DAC72747E424EC18 +:10852000C7B88AA2BD15E4BF20A502F17DBC3B9A65 +:10853000DB573EAA89AFD71CF929FBBFC8CF4DFB3B +:10854000D51F5E7D20E9EB2D992751DB9A31C3E8D9 +:10855000B35F4147D7E401DF535077AFCB9DE8CFFE +:108560007EAD42B5D86FDD6BA09CECF6BAC349EE88 +:10857000BC04FC7BB142D8E9E17006DF97601FE7DD +:10858000ED0A4526318875D4AD0537AD331C1BEA9D +:1085900026BBBCB6EEC2BEBB66BC9CE7E1A1EE9CAE +:1085A000D4C476C27F54BBB1EF7ECC7C126377B16A +:1085B0009BF03849DE37D0EAD2F83B2F18B18B4810 +:1085C0005F6A17E780E27AB6F03B7A7543DD4A7856 +:1085D0009125EE496DC92A1890AEDBA4BC6D46BD4D +:1085E00095F4016FECA71CCF70232E2611FF3CE3FE +:1085F00066BBC49D15E2BC1BD799216C9F1C5978A2 +:10860000934AF9B32D59D6F377173ADE4639DEFF90 +:10861000AD107E7CA47FC8C0F5A43ABBD8CEF27A58 +:10862000057F25FF5106CB11F00D4EF09BA5E45BB5 +:10863000EDE903151AF793AA5BEDE8BA9CE81E95DD +:10864000EF31F2ADA37B05CC7CDFB6E052F5F753FA +:10865000287EEA30F32B1462E5A152A1C798FC7181 +:108660005EA86701D9852F4A3CDD5630B0BCB0FB0F +:10867000C192511FE80B9F87550A7C45BD86EBE7E9 +:10868000D1F56199F1FAE195029FE6391116059449 +:108690004D27FCD195B63CEDD195029FCCE7818A60 +:1086A000F0E84AE1678CF9FB888799FA57B22EF413 +:1086B0002F7C96DD41FA18F233E21388BD655BA783 +:1086C000C4F5994030CA7AD77CD4BB34FD9BEB5DAE +:1086D000E7E85780FA17F56FDE3B69D3A742A55646 +:1086E000BE3814D938E953D5D28F70AEBE24EC5DB4 +:1086F0003BFF2CA9B4DAB979F07288FD56BAB8DF1D +:1087000076DBF85387E93EE1D34111EF3EA1CFB7C5 +:10871000E85527823127FBDD24BFEBB2ED6B95E1F5 +:10872000E0F8DA09D4BFFCC8474FB862D9F7E2BE17 +:1087300064E9DFA9400B144E4CFAB5AF3628E44586 +:10874000225F7A553FEA7F1FDF3FBA7D7784F031A1 +:10875000A201DB0949524F39BA5DDB417A17440265 +:108760004ADA95003F90789207BF643FC6B6890306 +:10877000FB61CD797E5E6E2C253CE8576FC179D1C7 +:10878000FDCEDB163EE15D8AE59512DFCC76A8AF23 +:10879000ACAC1C9C88C7425FD9F0008C247DF3C828 +:1087A00004774DB40F3ADFB0BDA395E70FDAFB694C +:1087B00023E3EF1FDDEEFC2F924791A05BA56B3EFC +:1087C00061B4D09B36FC343F9BD67324F5915CADED +:1087D0000FBDE9BB15C60F691E8E4A634DE5A5ECBA +:1087E000AF127119F9FD42271C73659E3B0FF3FB15 +:1087F0009BA5BD06A3859EB55E817514DF8DD43A19 +:1088000038AF58D3EBFD6C37BD318AF3603C774FFE +:108810004E57FB589729A7B6560A3F4765BEC3C2B5 +:108820007F66EB2916BE33B77090A57C3D687C1F30 +:108830004E827F2A55EAC72AD1DBFABB453CF8AD08 +:1088400035C26E4B1ABBD1151E609FDFBA5BC427C1 +:10885000928EFEDD45F20D9FCD01ECA7A6B5762ADE +:10886000CA0C78AC52C8B9456752985F9BDF3D553A +:1088700029E4480D0A50EA7FD19934AE4F6AEC7171 +:10888000919C5B125BCF7EEB45679298EF27354654 +:108890009E279361C946454788F6D6C7BFF771BB87 +:1088A000EB5B1D963882C98FF15FC89718EF19B33B +:1088B000F706BABFCAE4AF4D95C67FD0FE6AF91D70 +:1088C000EC97F34C90790C92EEECEBF6E6DBE3C818 +:1088D000112977C57D26146E11FC3C728CF06D1643 +:1088E000C94FBEB7E5EC598A3B559B7C0ADA9B28F9 +:1088F000DE3413A0FE414491F2D1AEF8BD2772AE32 +:108900001AF6C77755E05CCBBCB737654DE1F497F5 +:10891000FA4CF25B67BBF85E94B367C17916D70374 +:1089200059BDDFBF9AE82FD70865711EAF06455EB7 +:10893000CE0AA383F5D115C84FA37EBE4FE8655A72 +:10894000EA4DE0ED8961B944D5DFA0FBAEE81C0536 +:10895000C5A34CBB6F6DEAA7D989E76A6FDC6ACD06 +:10896000D7BBEE8E140BFCAF0E59EFB558BE63B8F3 +:10897000A55CE61F6529CF0C5C6CF97E9666BDC7C9 +:10898000627EF91596F629D0B73F994358AAA55E9D +:10899000F8A7AA32243EE88B091E65C13C3EC76F8A +:1089A000FACDCB25CCCB8CC663A487FA87893C2330 +:1089B00090FE4DD30F4D7616E149994D9F4E2914E7 +:1089C000FAF94DBBADFED0146917A6D8DA7BAAAC74 +:1089D000FEE50039F40643AF9D64CE87F088E65388 +:1089E00026FD6AE7CE27E49C42F253E671FD4FE78D +:1089F00075A1F6799156CBE7798F6689B8D5516D17 +:108A0000AD3393EC75BFB8776543D6A8131914AF8F +:108A100040BCA238681EDC756212F935B2148E5F54 +:108A20009976B1D96FA7D4CB5E473DDCE0CB7D8C86 +:108A3000B4B2214C3F967CF5CE91E16C3A9F7B7CA1 +:108A4000F0A426CAF3FB4DEAA4ECBEF4BDA3138444 +:108A5000BFFDF8E1694EB2EF4A9C6127F19719D941 +:108A6000CFB03DF7991C6F26F1409C5749B6D047CF +:108A70004A760BBFC20AA4172D87A2CE0722C3B025 +:108A80007CF4A70A5DDF062B62C0FE26AA8F2A743B +:108A90003FD4A4C5D4FED8600F9F8BBC09DA4B6FBE +:108AA000237AC2FD227D01460BFF4108FFA3FDC2D0 +:108AB0007DF8C0B20FFE3B9B746CFF4A91B787F202 +:108AC0008A67DAFC0A09FB64F12BCCB5E18F86DA00 +:108AD00031E1E59180D00FFBB3EB8F48F9FC67697A +:108AE000EF7C2CF3C2DF9579E16FD0FD3663E91E90 +:108AF0007471BFCDB1069DCBC71B0AF9D929F3C646 +:108B00005F9779E3263E98FD6F52C04D722072B791 +:108B1000C279E1BD7E23EFE48D21FCF36549874BEB +:108B2000D6280CC72385F99CE7F19F95C6F2AA4B7E +:108B3000FBC7BBFFEEF35883F53EA773EADDF03DBC +:108B40008A2B8C06239BCEBD9FF48DCD4C3CE7F049 +:108B50007295D04B8E5E6DFA3B3B38AEB361CD3330 +:108B6000E2192C1830AF37253A9FE5537FF51BE407 +:108B7000F90170F8F81CFDBB1382BB1C09E3DF5F31 +:108B800065D58B52620BB9BF6B5B17B0DC6CAF92D3 +:108B90007AA6F42BB51B4F33FE7E19867ABA37B806 +:108BA000DF79C97E12F182E8E1CF92FE3E96F6119E +:108BB000E1053D092FE83DE10595092FA84C7841D5 +:108BC0004FC20B7A4F78C1F79034D4F07393AABF99 +:108BD0009A2B5CCB2C1FE3F14921DF985FA35E72D7 +:108BE00053E4DEE317E19FB5ED03C3ABB6E5AE009A +:108BF000C9FD7B949CE314DF3B392F99E3034BCFF2 +:108C0000736F588AED9E3092C4BDFA91BC07CB4871 +:108C1000687FF2F0B31C070FAF76DC9798FF8C6388 +:108C2000B31E1A9679CDFF53FC3C69C3CF0BE5BF49 +:108C300023AAC2AF55311D1D88E9B8DFE5C8FFE999 +:108C4000BC584AB0DE49F8D8AFDE1D30FD85E016CD +:108C5000FA7772DA525F62FFA6BF5013F252CE2744 +:108C60001CC9E075B71BEBF8FCDA9774CF2B76D5EF +:108C70000282BEEDF98C47170EE37CE2F5F5693A06 +:108C8000FB8111BEF45DAB4FE48FACD7968AF391B4 +:108C900006D44306E5D72F647C56FC0BB99D778438 +:108CA000ECD7CC3BD1214C79285ECA932246BC55E7 +:108CB000E441E23646381F6575C410E7F781EF0FCF +:108CC000F0525E9425FFC850BF49FE119D37B89001 +:108CD0007D6852647E86792F9EF6CDEEC56394A39F +:108CE00075E42BEC2FD9E616F77CB68C5376D13988 +:108CF00018531F08894FA1225F69CEC4FAD726B93D +:108D00003587888337131DBC3854DCEBF49A22FA7C +:108D10008B0C15BF0FE2CE17F2DFD477C973CD717C +:108D20000CF35CBE61D327880962BB0AC3C9E7594B +:108D30002A6CFA813D8E6E8FF39AF8336AB6CDEFC6 +:108D4000DF8F3E6D87A799E7703A002C17328D3080 +:108D5000DBFF8BA5BE3A083A2CF1B3F3DDAF4679C1 +:108D60000D8965CA6B486C4F790D56BDD4AA8752E0 +:108D70005E83552FB5EAA1E7C4DB411930DE6EAE44 +:108D8000334F7B99F7696B96D0CBB755571B14FFC0 +:108D9000FD92E2BF9CCF016F925E9A2AE929025DA3 +:108DA00006C58D86F6EA81C2CF71911C6708C5EFB2 +:108DB00011DFB364FCDECC1F30FD209E50488F6174 +:108DC0003F5B95F69D745FEA56973194E0B8555134 +:108DD0006A12F345878255AFBEC83EFF294E4B3E0F +:108DE00080E9F730F3013C354E8B9EE9B2E1C7D5FF +:108DF000B3558B9F324FFB578ECB6F5B3A59DE4793 +:108E000087AB4FD0E31DB5C25EA9C1FDA77BA2CC45 +:108E1000792E96F90ADFA5F526F0E104BDDF49F3C6 +:108E2000AFC9EE3042EC6F8088C7BCC783F05CE905 +:108E30008021E41F067FCE8308CF1FCB7999DF3BCB +:108E400021B056ECA7CEF97FE12607F315965D0910 +:108E500072ABD157DD4AE7E096D075CBCAB9760739 +:108E6000446A8E27E6E52889F50EBEC793E3E62916 +:108E7000725F6B5BAD7A3AF66BD5DB292F63E2B993 +:108E80007468D7E79D38188D7F603698767094ECBB +:108E90004F13AEF1F58346EB4F58F74E81A7FF7F96 +:108EA000AFBBD72E97F35E22F7FDCDE4D0C383711D +:108EB000DC0F150F34E1F3E5D49EE757E33A3EA10A +:108EC0003BDAE9BCC0B6EF3C4C74F9E17A8FCC4B8D +:108ED000D0AEBB0BCBE1AD1EF6CF5C4799F238FFAD +:108EE00063B373B87F35653AB75FB22E95E1F0F1A1 +:108EF000B6AF2690FC7D33337C1DE1DDC72E7D248B +:108F0000E5D99D5C37418D28347E37DF17FC890A0F +:108F10007ECAEF7FB3E64317F9E1DED6414FD4D7DF +:108F200070FD91C47566CE117AE035AAF0EBE37658 +:108F3000EEA1B8F547378C52C5FDAF02BFC38AD842 +:108F4000DF4AD93EBC7C858BE54B2940F100F20C11 +:108F5000E7FBBDBECEEB5E24FB7933BBE7DA4159BC +:108F60000437F0AF63F8E9EFDD49FE348413DF63C3 +:108F7000460748F0BD7BF8B09D220F5EE375BB1B32 +:108F8000707E08AA4F678B7E4E525BFA2E902CEEB5 +:108F90008B7286F317A68A752A09FB84FBD27C297B +:108FA000C14901ED69A4FB25ED9F721CFF670837DD +:108FB00092236FFB7B9A0F63F9630436C5C997044C +:108FC000FEC4F781DF5E803B3E94F209ACF09B3C2F +:108FD0002793E9E0E3AD3F4EE5B8A71FC2EE21FCC1 +:108FE000BB753C5E78E37FDC49E72FC220F89D57D4 +:108FF000E6C5D8F17611EE17FB0792A13D1DC749D2 +:1090000059FE715915958B959EF46984D7DD658459 +:10901000D766DEDDA2D5567C6DF49D2A233E5F87A0 +:109020007C9EE4775DD0CA2FF1DF468A0786C5DFD4 +:10903000E7E0FB12F0B55C3A257EEED44E276F2FA9 +:10904000DF3358F05181FF6F668A7DF9649D12DD30 +:10905000C5FB628C4CCCBF7CA7971F83E64A80FF80 +:1090600012B94E04447BF150867F5915C11FD7C9F0 +:10907000FAA00DBE089732924FA6DFE4DC753F1DC3 +:109080005988F57586385FEB831E17F993CFB7FEC5 +:10909000250BDC2D84E7AFD0FDD085E7C2E3EDE5FD +:1090A000A75DA41F5C53EBE37B8DECF0C89803BC79 +:1090B000EF1F8CE8993D680AFF0EA37F17D9795BF3 +:1090C0004B6650F96DC204F61787DC341FFAE79837 +:1090D0001AC70B3AE83514EB6F003FF349136F7A68 +:1090E000E1D4EA9941E7B57E78BD0F549C5F3870B2 +:1090F000F932CE0F30F1C90627E2474ED31FE9E01F +:10910000BC45EB3D4B367CFBBA977F8719FFC3A567 +:1091100032FFDA89FB38A12F3A063EAFF1CECB29D8 +:10912000CB22D3490F4F4E22D773E309F17B50A3D3 +:10913000299243FA25EADDA44F3706ACE7029C5199 +:10914000AB5D78EEB9049DEF0132CF1DF47E1713AD +:10915000769BAB755E9FF69BD3217ED7B0F9F0224C +:10916000C89D40F3BADCFB01E3A9D0179D1EBD35B5 +:1091700087F6E155714E18B27CF0A1091784B373DC +:10918000D0F400F1D5C624B0E82B77CD11FEF01F46 +:10919000493EE54C17E39CAB5FAE93E725922CF379 +:1091A00033E323B42ED2871CD29FEC907A54FFED88 +:1091B0009C5CEFB0F9B7CF6D27FCDB5AA931E50015 +:1091C000F9BF0C8F9FFC5F5D49F01A9D9F34CF451E +:1091D0009BE75D1749BC30CBA6BCF597190769DF43 +:1091E0003E303C8328CF6B91ED5C6A0A245BCA8BCE +:1091F000E47D3F66F9E09C3CA9DF0CB3BC477D7B76 +:10920000C401B2C382EE4134AC9957DB5D2BFC61E3 +:109210001B5C9166CAA38B14797B282E7F6C821B02 +:10922000BC583FAFEC8647C479BA30DB2B29129F7C +:10923000B6B93B807E8FE903790F28FE4B2B1AC20B +:109240007A06E37EB874700BC95BF31CA73BBA4087 +:10925000DC571681190BA6F0F972CEEF0D3759F3D2 +:109260006E4A50EE129D5F87760BF9D5AE5B63AD0B +:10927000AFB1F9C7ECFE32931F925E3E3DF3DCFDC9 +:1092800032CBE67CDA0DE1D731ED263B3E7D03BFE4 +:109290000EDF2363F7EBBC3E6760BFCE4B73FE77F8 +:1092A000FC3A8ED6F916FC34CF9D1D5D58A146B30D +:1092B000285E9EBB2B317EFEA99CD7CFA5FFE73948 +:1092C000F2FF78E8F76484FF2726FD3F47A4FFE715 +:1092D00018F97FD83F68483F50393FCD38FC55FFDB +:1092E0005860B9DF2E7956F8D33909EB769DC9E37A +:1092F000F96D32E125EDCF7643DCEFFBA59EC3BFD0 +:10930000A340FFC87F5469EAA2CC23288F4593E786 +:10931000EED6C6CFE399F93439A2A89979E6484741 +:1093200095D3AB3EA3786DA56E8DB7A4E4BBE2FEEA +:1093300022A0388FD3168F19D85F94EE98C7F943BF +:109340000EE92F6A3EBC82F38A1C019DD7EFB0F96B +:109350008BCC7BE62FD42E7E768EE19B8BCF7F56F7 +:1093600085D2E6D23A7D118E433465CC584478716B +:109370009F227F77C77EAE34F409C369C728A81F30 +:1093800044FE149F3F42F16C87E664FDA4BF731B4B +:10939000E6790D1C22AAF27A0D1E2F7E6E529CE7F2 +:1093A0006A96BF030C479358CEB851CE50FCCFBC41 +:1093B0003FD69D1532F8F77C7D05C29FE3D4F5EAD0 +:1093C0003EE496B97FD57342E3699D8ED802C6E329 +:1093D000B2D9C6C554EEC5D7DEF37403E779344B72 +:1093E000BCBCCA15068A17B8CCF3747A0412C7FF3E +:1093F000F65C81EFEF5584A6115CDD6746F3B80893 +:10940000E72B12E17CCEF9A8A65FFCE21753C5B9A1 +:109410002782970BE521E1F17B15E1129AAFD90F75 +:109420008D47DF637F6503F587DF55CC4DA00B7754 +:1094300020C2F9359BA47FC95CFF7DA15CFE7DC97C +:10944000FB42D51C275E3457B1F0AF385D59E57645 +:10945000EFFA8FFDE52F7F1922EFC754E3F58BE676 +:109460008A38BF4BCAF5DFB9EB6F217DEA86579F7B +:109470005D9685F4F83BF261D1B935F8C563B49FC8 +:109480009BC9864CF87DE52605CCFBED1E5B4EF1B5 +:1094900063D52CFF7A19B537CF916E78F5D7CBE825 +:1094A0001C69D8AB776A88B7A9F9E2DE2920FF06E4 +:1094B000965D665EC69404BF53EEB9F915F67C71ED +:1094C000973CAF60F7375C4B8921B8AEEFCFB5C69C +:1094D0004BCCF7072AC2D7CE15FA6F604C1FF92A7A +:1094E00066BB843C27BEFF234995794ED52AFBD91C +:1094F000683F06CA8B6896BF1BD0BBBFBDE739C4A7 +:109500003949739FCDFACD122FCDE7A67EEE194AC9 +:10951000995BBC99F00AF1EBDE01F94231301F5042 +:109520007C207F7FC30F6487B8E4EF66D14500C419 +:1095300017DC922F0CC00FE4EF97D8F94198F9414E +:109540005B9C1FB0DCF32E4E89521E971907F2E682 +:1095500047043F907EE8FEF99EE00748FF4FD2BAED +:1095600066CE0DEDE37DD2C579950BF593539E390B +:10957000DFE37D54E67986D6F2F8E67C20B0809F62 +:10958000BF90744471B344BD334AFB8FFDFC72AE8F +:10959000CF92BF1B9DEBB7F8C7616BFD80F7CC3D49 +:1095A00020CFE129D9C7FFAEA4919FBB2544F86A1B +:1095B0009FB757EA1B4D95C68BB46E3BFDBFDD24AC +:1095C0007E5FF6EDA6F94CFF6FCFB5EA11E6B34624 +:1095D000FAC97BCBE6EF07373DF1C413C8B7DEA26B +:1095E0007925E489BE3D57D88135D26F9E177DA875 +:1095F000FE088EF7569D38BFB26D69DF79676FDF61 +:109600002DE647710C8A0F261D7D80F3413E9BEBB2 +:1096100060F82C5AA388DF73D7A69C67BFC47E7FEF +:1096200021E92DA931E222BE5D43798F745F614447 +:10963000E1BCCC0BEDC7E45F5FCDFD7A5916EEEFD0 +:10964000EF924D7EE5594EFD98FCECEF73BD8F47D0 +:10965000709C1B671B6708BF9E9E6BFC9D9ECE1275 +:1096600085ED08E46D7C3FAC7BF1F09D8971C1D440 +:1096700090C097A6DF5BE9F2FF01DAF7105B00808C +:10968000000000001F8B080000000000000BDD7DC3 +:109690000B7C54D599F8B9F3BCC94CC2101E0E0A04 +:1096A000781310231D60C25B047303892010337983 +:1096B00010272F3241C010838E2D5AEABACB0D8F5E +:1096C00018126BA31545B7B50382E525468A95B6F2 +:1096D000B60D905AB6150D8A0A556A7CAC0BAC6D66 +:1096E000E3A35DECAAFCBFEF3BE766EEBD99107407 +:1096F000BBDDDDFFF8939B73CF99F3F8CEF7FEBE89 +:1097000073E6FC79F86433E60E498C4D616CFD4FCD +:10971000596D5B8031E667ED6C3063AECAAF6D6D3D +:109720004E67ECBC689712B2513B875B8A623B87FD +:10973000873FF5FAC1D8CF90F8D3353CFA07666772 +:109740006C6E813A3804DF8B15A89F16C0FB4F0B57 +:1097500018D53F3D3FF26901BC874FAE772A63D5EC +:109760008C7F964AB12BD828C676CC538784A05DCF +:1097700052358BB679E1F92C8BEE338CA73F478AB3 +:10978000F1928A793B6B7D26CE1BEA0F95D6D99A4A +:10979000605D27D7DB63EE747C4E1AC012F4A73FDE +:1097A0005DE73C4C1D64283B22CCE7C5F7A9F43E9D +:1097B000C9C62238DE7D360E37BD5D9D984F99783B +:1097C000B6AA13074412CC4B7F7A62C54C9DD4775E +:1097D0007D8BE89FD9BDB42FA7C605B6DA0DFB92E5 +:1097E00027F6AFA7BFF652EAAFAAA984E6991D4AA9 +:1097F00019FCFED7E0FB13D9C4F3769CCF3EC626F6 +:1098000033F6718445ED59179897E8E7706972D27D +:109810006818F744A73DE8866E46B347534229BD12 +:10982000DBFF748D8F695732F6DC1A3FD3A0E12F2E +:10983000D628F46C5F9349EF0FAD0952B963CD742C +:109840002A3FBF46A5F29135F3E899FDF9FAFCA944 +:1098500030AFE44E3BB32BBDFB5F1A524CEB4C3E9A +:10986000379E69303FC5EB4BC5F9B837CCB9E07EC0 +:109870003EB7868979C9625E3E7A1E12F3EDC0F961 +:10988000D2BCF87C63F322B5887FD79E6BB74B3090 +:109890002F8FC25484D7CC59EB541FC021F97A754D +:1098A0004588F0B74B098D636CA38DD38DB6D81363 +:1098B000DB0E5B9267F71EB223DC968EDA8AF876AF +:1098C0006269F1001BE0C15D96FDD29FCD30BFF60D +:1098D0002B0DFB3E6EF95A1B8C3B7636EBB207190B +:1098E0001B93D99DC35219BB6A7EE42E9CD7984C1A +:1098F000A6BA53E9BDCAC633F6C466C7BC18F47F1E +:1099000072B3F6FD241897697E29F55AA867235289 +:109910000B013E5B05FD6E6A2CBE209C3AC53C3EA9 +:1099200098A76EC071DE5A7380BD7B45BC1EE8549B +:1099300045BC87015811AC7B5369B3BC04FAFB8E5C +:10994000655D876F8E7C276428CB8ACF1581766F03 +:109950003FC246B201008F0DEE702CC13CDEDEEC42 +:10996000BB8FE6CF94B75347C6DFC3FA564E47F8CE +:10997000AE77DBAEC0EA408415C2F86FEF6C1AC157 +:10998000BCB8BE34A2B713CB1ECF5002C477BE8F73 +:10999000F3670A7C6958DFEBC57510FF10F44C1FA4 +:1099A000F84AEA359926FEF7BCA0679DDEE14374CC +:1099B00071DF8BA32636B3F8F71666A66F6D96E2B5 +:1099C000EDF1A30E656C01337C80DF25E3339D1739 +:1099D00015A897F18F51F84F5BC761E8C7134A8EFE +:1099E0003603A22D083AD93B99BCDD79F8DF9309FB +:1099F00065395E96331DA67AC68A98AA97EDF86FE8 +:109A00003953E5787980BD614410F9D86AFB43EF9A +:109A100001FD9C38F888530138BA96D6B008BD7756 +:109A2000D17B235EBEE364AC62BEFA6BDC4FFB020B +:109A3000F5083E1F99A7FE0BC177B55685EB5EC7AB +:109A40006CC1E6C9B858A6F8603D122D8CB15BAE6A +:109A50008F1C233A79D0C7EEC4FAAFA7069B019FAB +:109A6000255F6308F1F98B85A157A81FAFC6908EBB +:109A700019ABF421BF92986A3BEF81F96047C38824 +:109A80001E4F923CB0B5061B2484571B43F9F27C51 +:109A9000818FF08EF9611257C7DB833C63EC52C6AD +:109AA00037582679D55396619DD9AECE800DE87989 +:109AB0006CE1F776384630963F4A6FFFDD1D2AD6B7 +:109AC000E7D97959BB6F87EA60EC3597A1BFE98C7C +:109AD000BDD4ED10F5CDB5B5A301EAEADBB93E98EA +:109AE000CAB9CE7B76C8B0AFF6329BA8DF701ABF7A +:109AF0003F2353DDE1817AC7B135991BB3707C7583 +:109B0000470A3CFFFDAAC76A8F5C8DE5EECB5E81FC +:109B1000F2C6631DB57212CE3727EA03383D752CA5 +:109B2000562B43FDD10C3EFE0F0A1FAFD586E3BA7C +:109B3000437F25B8855A83C87F60BC10D2D30CE020 +:109B40000B46BAF214DAB9DC2E74D233DBD96EC705 +:109B5000FDCA4E67AA3690B19C4CB6DE06FBF4D225 +:109B6000CCC383903E9F2FE4F219FA7715225CC391 +:109B7000D07F4AEFEFD90B393FEEF5FD82504A21F5 +:109B8000CEAB847F6F06E2E20CBEEE86D1543F90EE +:109B9000FA8DF2FA1B1C59AD57F8709E77EFF0A6BC +:109BA000C7DB9F0FADAD6D7050FB4BA87D1B6FDF0A +:109BB0003F9CCDDFD7F59A17189B87CF07076AE13F +:109BC000103CBF55C8F502EB93B1EE4138CE6BAEF9 +:109BD0006E6F01ACF36BEC8E1DB949348F4C9AC794 +:109BE000010E6F1D3F46147EA356E3EB0AD0BA6BFD +:109BF000F93CFBE2375FF5A9E3E798C2AFD76A5EAD +:109C00001A6F06CDA792CF47C78FB185B7EFD06641 +:109C100022FE7C6857918FDA99B61DF06AE1A4CFD5 +:109C20002F33EA218F167279703443AB457824675D +:109C300076D3FEAA8AC28C7AC1B3859CAF232DDB72 +:109C4000A60A3E057F17291CCF605E263DF047021D +:109C50008E3F13FDBFE6E2FDC39464FB448E274BA9 +:109C6000601E25A29DFEBD1E7A626F11BD6567BD97 +:109C70004BFB5C5EF84BCB3EFFD4B4CF3585CFD4E5 +:109C80000ABCAA2478F4430F77087AA8437A18828A +:109C9000EBEF2E467DA8E90B07DB4A4C8BE339C876 +:109CA000FB607316C205381AD4E704D816A3DE95F4 +:109CB0001D682B45B96BA0977A23BD7CD97E5708C8 +:109CC0007AEAD57F41E89BD4AF859EEA8EB5650AD6 +:109CD000FAF807AADFCFD7DD17FEF645070F8B7D11 +:109CE000B03EF57E74FABCA3F049137D1AE0DE4263 +:109CF000E347F8F8FDF12DE68F306C07F2F9FEC26C +:109D0000C47845FD33EDE40E75741CEFF38F9DDAD6 +:109D100021F07EBD71BDEB05FC75BB44C7671D8E90 +:109D20004F093CBCAE50D2F7690BD1E9520ECFAF10 +:109D300030FE4E23DD65330753D3E2F4D5DFFA5B03 +:109D4000C53E3BE6F0F9B2E1204FD0DEF22B5B4896 +:109D50006F28083D43F313FC511FFF67C79ED0E9EE +:109D6000FE27463E735DA18FD605F8E410FC37DF71 +:109D7000C8A7F2E3F8D96EE4A35F96BE74F9DA9F40 +:109D80001EE56A2F24BBA191B1847A97CBCEED3426 +:109D9000E69F48F5605F90DE74CC3F9AF4E4D12CE6 +:109DA00099E8A22553213DCA91E63F9A01F5AFBF3C +:109DB0003CCA46EA0C6B20F8FD18F41215F4F603C1 +:109DC000A0CFE313ED0F55D81FAAB03F54617FA871 +:109DD000C2FE5085FDA10AFB4315F6073EEDCEA756 +:109DE000D54183090F7CB41FED25B40E578C3F93EA +:109DF000CF4D257B430EC418EA974C39D261073DFD +:109E0000C723F0E6E8049F13F58642A58D45E1F9E6 +:109E10004628D24DFB24F02BC4F8A73038EA572847 +:109E20002FE1F35CF2D0B8DDFBF47C45E831690446 +:109E300067DD0E8EC3971DB2A31D92698B215CDC7A +:109E400057EDD392A0FC679575B12056B769A83736 +:109E5000CB7783CE86F274B3A6913E069894EA67D8 +:109E6000EC60E94FA97D2730627710D701068B415E +:109E70008F1CC3E4FCED681F2B3686FA6CD3D29B93 +:109E80006C9D6827AAF61829738ED05593A1BCF152 +:109E9000653BD59FC02F1AF0E10DDC8F2BB9FD80FB +:109EA000F6D4F068BB3391DD7BECD04F56EE473BE8 +:109EB000AFD6ED4B822557AC6A6B42789C5AF53889 +:109EC000E99FC7C66A1A03FC2C1DD53A023092B529 +:109ED000383486FAAABCEA472AC2F7B5B5ADA46FF2 +:109EE000B694A7D890AFC6ED838E75AFA27DE0B3D0 +:109EF000655C11EC3D6E79119763BF3BB8B309E126 +:109F0000D429C95DF81CBB4BAE223EBDCCED433E0F +:109F10007CF2AA0746E038A515295577427D730ED5 +:109F2000BC87F975EE94C95EE9CCB9C7BFDCC05FE8 +:109F30004A47B9A268771DCB589E87FD24CF0BBA3C +:109F40009206223D767EDB06DF7F6DD5A44188B781 +:109F50004DE94FF86FC276CB5FCF9F06EDE4B07D41 +:109F60002AB065B08B5A094E972B9AD605FDEECBD9 +:109F70008F4C2D42FF41F4601EDA6972FDD31BD075 +:109F8000BEB9FCB3EFD0BC4F32B9AB19E795BE56A2 +:109F9000C6F74D4BD7C938DF50FA121BD209CB9107 +:109FA000BB905F37A91BE431F07E8C62ABB939B549 +:109FB000373C9A1E61D74626E0BC1AFDCB53709DF4 +:109FC00037DB9620FC3E1FE0C2EF5BDB171671FE0D +:109FD0003976ECF267B0DDD80C974F02B834499A65 +:109FE0007F09AC472B4B096E67BDBFB74BC0BD6245 +:109FF00055BB13FD0760C7115F297F79C04E0DF572 +:10A00000EAB436E2D7A50E263BD3E2DFBB6A7ECEAA +:10A01000A2221AEF09B2E74ABFD6E85770BDE9CBD2 +:10A02000A720BC9A24CE1777155DB913F9E207F380 +:10A030004255D81ED6F56D8413A07117BBB66FFBC1 +:10A04000F524D8A1BE01F1F70F1671B907781026D3 +:10A050003B3AF000F11DAB1DDA027628FA29B4A5CF +:10A060006087221D232F988CFEB2CBB6A0BD7872DC +:10A0700067939F91FD59786B11ACBB2987DBA3FFD8 +:10A0800007F06E03CEF7EF8D776394BFAC89A4D24F +:10A090007A092F0A5F1E4578A1827D1722FFC24FE1 +:10A0A000E5447CE4F0CD917F2E32E88F9E00F72FBF +:10A0B000E0BEB209F17DB47EEFE4E6D66FF7E55F6E +:10A0C000B8C87DDD497826F6F5D622C6F97664D083 +:10A0D00045F919EEB3A9939FC67196B87D482F2113 +:10A0E00061AF2AB9D14E27CA3D759484E375087AC9 +:10A0F000F3E5C11623DE1CB7630F8C7D06FD813CA2 +:10A1000089E0DFF67899E490415E4418E7EF544E19 +:10A11000C7FA645339C2D2587BA6B1FE5253F984B0 +:10A12000531B8178A83D2307B7233CE0BB3294C77B +:10A130005D3AF9F16603DFFD43918BE6D920E4F83F +:10A1400089712CE6867A4F64DABA1C58CF8B12EBF1 +:10A1500096A6E3E4D4D49CA9045292899B5C41AABC +:10A160003F912377AFF551BD1DC79BE007F902FC76 +:10A170007B52A7E39D2E837C9A233B4D650FFBCC3E +:10A1800086F2C83F47EE7643FF1398A13DADC75C0A +:10A19000EE2A32FB41FBE20B0AEB4A41BF52E7EAEF +:10A1A000E20112943F2EB225F4D7ED157EB236D0DF +:10A1B0003FDA0175F781FE81E5FDA07F60D95ECCB5 +:10A1C000F1E284C4C2A8E775D4DC9C477A453E938B +:10A1D000DC0371B95368DF7F23FA5F9ECFDB5F0436 +:10A1E000DEFFB5684A6FBCC779A35E87F3BE907F78 +:10A1F000AFBF793375C845E979D99F0D20FF17E0C6 +:10A2000065B03901DF8F8FD724C66BA5E7BE359BBC +:10A21000C578311A4F6FF78C6A27FF65EEA09FF95A +:10A22000D303C6F1D6125C5A9C00472FEA8BF36D1C +:10A23000311C3730F171D417E139C00EED338A5D2E +:10A2400009F7C973CE6EF2E33F55C4F52C8FA38D89 +:10A25000FCF99E732EAA7F5AD845F1FE33B6EAFD6B +:10A26000DBBC71BDF3ABF69F6A6FCD1FC4ED71DF30 +:10A27000F6C942E9437ACAF4C590DE8F097D4A6681 +:10A280003E17D2755E713AC139CC625780CECCECA4 +:10A29000CBE678B3D0FFBFDF918572F7C994883FD2 +:10A2A00004FD1F1AE61A81FCBBF32791CB7D1788AA +:10A2B00033C0C6FA6D7E1A75A8780EB6115DB6DB8E +:10A2C000B06C6DDFB9FFF810E46F4F3E2313D16A15 +:10A2D000C36CB12BD27BB75B5FCCF9D4B867F613F4 +:10A2E000BEB6448E919CA90CDB83C8363A576D727A +:10A2F000022B02FD6E539E1FFBA997885D9E5AF5A7 +:10A300000AC9D793FB1DB83C5675C74D24C7AAAEE2 +:10A310008FB824B08F6B8A87121C1B553BC1A97163 +:10A32000D5A427500FADBA63590AE27BA397F3E790 +:10A33000C655520CF5C093EA2B298A016F6A8AB977 +:10A34000DEF1A493D39F75DE6F8AFAD770DF13C056 +:10A350006D5FFEEC65C5505F2575A6A07EBDE695D8 +:10A36000FD2B1CC3101EA733B1FC8BE5DB77E62267 +:10A370001DB3CE729CC738905FB88F9D39EE5338AD +:10A38000DF2797B9153B0C7168D9B3FE2E840BEE0D +:10A39000CF05E8F24BEF8FFACA1084F7818663E5A8 +:10A3A0002D300FDB71779DE32A802BCCA705F8E9D0 +:10A3B000FC577EB902FD88F7D9B89ED4F48AA74E1F +:10A3C000439996CBE554AA5B5DB820C17EC6E5945F +:10A3D00039AEA53F2F29E170EB2FAEE58A155E302F +:10A3E000AED588FD27F8FE43029FE4627513C27F55 +:10A3F000DD0DEAE6E2214857EAC3F8D4CBAF657039 +:10A40000BD91E516F7C3AF38FF08B5FB1A3D4837D5 +:10A4100092F62B4F8275770A3C00BC2F5A00FB57EF +:10A42000352E6322D2995E2F97F079358A763AFDE0 +:10A430004656A7539C0018B08C7E7D92E700F3052A +:10A44000621DAF25479E247B65BC4BDD0AED4201B2 +:10A45000D7755896D0CE84798764AF0BF535398B94 +:10A4600005DDC3D04E7468426ED9CE43A3778A0708 +:10A47000723AF07F44785F2EE214E597DA68FCB711 +:10A48000965EB9953BDBC1EC423D00FFCE60EC0B24 +:10A4900081DF9EDA154E6CC772199B7D35B5539CD2 +:10A4A00043853D0AED427E9B0BF579987DEB6C1C54 +:10A4B0007FA9FBBA85507E66B6D48DF3F3A84EAD66 +:10A4C000CB105FA8F6DBAEDB00F8EEBBD4CE060007 +:10A4D0005E566BCEF78CF5EBBCEF6C2885EF57AA78 +:10A4E0007237C6ADBC28CF402E55AE867606F90D24 +:10A4F0009F7B1D06BBD853E2DA906ED017E44C87E1 +:10A50000A9FD5BB5CFB076A82FAFF14691FE605E96 +:10A51000A6FA05C53E131F82CFB7D3D1DFA6DA7DD9 +:10A52000289F6A8A395FEE8C4A29A837240BFEE4FB +:10A53000A96FD098B77FB8443A1C04C7500963DFAD +:10A540004138225CF4F133FA878B9775115C3C003B +:10A5500017D46FD679F7A9CB104ED341CFF7F50FAB +:10A560001F2B3C3CCCBB01D707EA12E93F5678FCD5 +:10A57000AE98C7451A6BB70F417DE09762FDB012E8 +:10A580005A8707F0A119F997A37504EECF2921FF87 +:10A5900058EE24A22780D490C2047E6C5D0E2ECF8C +:10A5A0000F25970C21BBADDD9116E72B7DD321E75D +:10A5B0002BB355467C7BB6CF1E8B018ACE616A3D9C +:10A5C000CE678ECFC3DAA5BEF91768503BDB2FC02C +:10A5D0003FF527F089E12553FAE60F8F159BE394A9 +:10A5E000FABCC64464A2A7E65A89E4F1EE4CD09FB7 +:10A5F000A1FCF17046FE8F3C7B6513FA5FCED43A26 +:10A60000999BD35B13D27BA9D89FA6290DBF4F433B +:10A61000BB53B205D1EE5C7C4EE27EB07185D42F87 +:10A6200003FDCE7E19C6AB5B53891F0C7730D4A3D4 +:10A63000C3FE8FAF7C0F40A7CD0E71397B27F3ADE2 +:10A64000837DA962ED4ED4E72B5834650ECC27C923 +:10A65000B16A25EA05C9F23F4D5902DDDDB3E5E6F1 +:10A66000676AE0E91E377100E2EF8DF6EEE3F30171 +:10A67000AF0AC38FD4FB400EA4DAB4FCD100C7BF2D +:10A6800096326D152CED3EA9BB2417EA3B168DDAE8 +:10A69000B51EE07A22F71D9263DFF85DF54AD447D4 +:10A6A000EF13F6F47525EF909CD0E1DEF1B6FB696F +:10A6B0002C87315E08F3D4ED0D3D5E191671807064 +:10A6C00044E272FA24DBEAE5F0A1B8E720FC1BE6DD +:10A6D000FFEC22CE0F07CD5CB6AE4BF8A52EF7F3FC +:10A6E000FEECD05F2D5120FD23A1FE3BE88435AE6A +:10A6F000C9E3A464E7A07D513256BA7432E17F34D5 +:10A700000DE5E43C07C545CF9F678EF338F740CF92 +:10A71000F75F42FAEC0F6FFE56CF07D6F078699FCD +:10A72000F52E6D25E2E503D78F19E683F90F18356D +:10A73000260DED7F074A0D80DF69D03B112F9E5B10 +:10A74000C4F1B46911EAA044A7A9B8CFF748ADA9EC +:10A7500033D02EDB696768979D0DBCA3629CA7511F +:10A7600061DD0CF6B160D6BFAAD8CFC01A16B543CA +:10A77000D951CAF548DF4EFB4614538DFEBF513EFA +:10A780008ADC162C32F0075F29B76374FF6F5FDF36 +:10A79000D7FDBFD6F7DF17F255D7BF1B77D8C98EC5 +:10A7A0008427F9833F7913E890E2E55DA6F81A86DD +:10A7B00065EF9EC8D8B47301F2CF5AFDB67ABBBF1D +:10A7C000B5BFF88135617A3FEE5C0DE9F77BD7D4F0 +:10A7D00052B96D4D949EFBD6ACA6E7FE351AB59FD7 +:10A7E0007E1723FA38BBCC1D5B0BEB389BD4FE2EB7 +:10A7F000E68768C35CCA76F2AF46C60D80759E9444 +:10A80000C692FDDB28F1F65A8D9BF2491A53BADA4B +:10A810000E53FB4CF2B33187E61F80F67643264396 +:10A820003FEF6B2E6D642ADAD360AC6C85F7673E20 +:10A830008C5139620362BF96F8DC1B12BC4F1D9429 +:10A84000A9207F5B971A9DC240CF7EF5F587F7A0C0 +:10A850005EDBB4E587ED7F847103270B56CAA84FF2 +:10A860004BDA08D050D8C6D73B76631C63F17BC067 +:10A870007DA1FEB6F207EB3D8057473176328393D8 +:10A8800039C6C3F53807D396EFAE1D0EEBDBEE16D7 +:10A890007194A5B7601CC5911CF5939F5A7BA6FEC9 +:10A8A00008B42FBD3C720796EF0DD7D7E1F8A597F6 +:10A8B000F0FE92DF5CF814F29B7B92A27EE0A4ECA7 +:10A8C00093F2BB563A60FC7BB278FF2FDE78D74A12 +:10A8D000ACB7D7B010E291BD26627B19EDEACC256A +:10A8E0004F68B0AE4D63270E70C1FB70D82EE41DCB +:10A8F000AC42E71B80A21EF9DE4EFB7890B768B72A +:10A90000017E54083EDD83FF005821B71DA87FDD7E +:10A9100031AC8DFC8E2D23B4C521AE27909ED584FD +:10A920007FE19A254D43B816325FFAA330DFADE5DB +:10A930009C0E60D408CA6F97DE8E45D85DB01FA10B +:10A940000F5214DC5FD9EF30E955C4FB868AF676E6 +:10A950007C3A34A3FF8269E1E7474F457B90B7F526 +:10A96000322D0FF50D17FA4B7CC8120DFDA1BD78E5 +:10A970007B445D06F5C740BFD060BC3CEFD6F6A176 +:10A98000F0BD0DD3DB9D97A01E338E053505C7B9ED +:10A99000F7438487951E0B2366FD25CFA25F24070E +:10A9A000CCFA08CC97DA3B6072385F872BF8ABC1E2 +:10A9B000C8E7874A1C5FD99118C64B9259CF47C147 +:10A9C000B8C862B11E5BE9401E8FFD9A2F17F9626D +:10A9D000554CCA42363E1DF55D8CE39E8EAD4B85CF +:10A9E00079D7FA5BAF36E68749A532E73BB18613E4 +:10A9F00083110F6004CCD75AFF53B50DE370EDA55A +:10AA000011C2DF6C978EAFFFB05B9D09FDAF96441E +:10AA1000F95BBB31DE7574B68EBFAB6E51871BF22E +:10AA200041B45B7753DCA1CFFC8FFA5B6A295EAD42 +:10AA3000E78BD4EE467CB75705AF40FC9E7C32696D +:10AA40004F12E6A5B0E0082C3F5FBAB92E17DAE541 +:10AA5000CEBB3D7708ACA3245443713B2BFCA72EFF +:10AA6000F20E7E1F9156F8AB5E9BCDE3B5CDC0577D +:10AA7000D06FC50E6F7461DE0EBB91E35BF16C6D40 +:10AA80005928D0DB6ED3EBF5676D664CC3BCB23092 +:10AA90005063068C3FD3C6ED889933FC5B1A486E31 +:10AAA000476C9DC827760FA278A47423F78B87FD87 +:10AAB000FFFC06E605A5A9ED37213FAE642C1883FF +:10AAC0002D3BE1681F25A35ED42DAB1AB7831497E5 +:10AAD00011EF35F6FA68D8F71AB1CF9B760D223D03 +:10AAE000F963C05B84C70AFF636F905EC10C76CFC9 +:10AAF000B438FEAB8C1D447CBAE6B4995E66759B97 +:10AB0000CBD9E7CCE51C66B65BE6C8E672B1CFA050 +:10AB1000BFC3FF73FDE6FAEB157399ADE7F80FD2EB +:10AB200083F47D26F05DA7377AA3D32F7C06B10886 +:10AB3000E9F715407FEDB0CE8AA8997E72B21C0469 +:10AB4000F7E4F512E5A3BA8CFDA523D87CD7E5027E +:10AB50009CCA40FC23BF38B36D900BFDC3F7CF7484 +:10AB600032B4173A853CCBFEEC071BD02E72298EEF +:10AB700028B64B469D0AFA5D1160315B3A7EDF6C68 +:10AB80004F42C7AF211F5928F60316A4F4CC3BA3AC +:10AB900037DFF1ACFF752EEE97FF323B433B830569 +:10ABA000F93A6CF01F87439BBA19E30AAA4CF96A79 +:10ABB0002B22ED347EB59FC514D4D3D69BF988BC27 +:10ABC00094F3A508C04585F946EE36D75BE1E075FC +:10ABD000761F3C0FED9B613D9A84CF10E9032E5800 +:10ABE000800DF0CFA53EDE94817C26E808525EA061 +:10ABF00037E237EA25EF96723DEA50697398F25EC4 +:10AC0000992DE8467DFC41AE6F630E1AD94196BC82 +:10AC1000354929A5757CEF72A065904FEED5971D3B +:10AC2000431347F2F1F760AF47D0AE703B42547622 +:10AC30008798A66551BEDBDE4543B0FD486AEF66E6 +:10AC4000C12637E0C77AE10706C1E042FF728DFFF7 +:10AC5000F9130361EC671671BAAC91BD9A3D95F09A +:10AC6000EC839EF5137CCDF9707A1E8735FFFA3997 +:10AC7000D1CF46B15E43FE9B6ACE7F7BA72E97F471 +:10AC8000482E7F3B16BDB30BF963E32C26F8E1C0D9 +:10AC9000DD07A1FEE1439F1E2F467EBB4D0A629C4D +:10ACA000F6E1271AC86F21EF907CF3605F2E19D56B +:10ACB000FD20EADF8DE3B8D63E3710D95C03E515F9 +:10ACC0002FD8836E7AA3A6E60DD55504F4F773BC8E +:10ACD0003C7D8A91FE3323F6CDC339507E1EEC6154 +:10ACE000E627BDF9E55C2782BEFB7831C641721DBF +:10ACF000E4574E6B8F76623B597504630AD255B4A4 +:10AD000013F7DBA562C22DBCDF969E837A7143697F +:10AD10001DF5DF0476D625C8874E3BDE413886E038 +:10AD2000BFF342FE925D31CF1C577029EFBF8938C7 +:10AD300030CD122FD0E5A28BF17EF4F76716A57007 +:10AD4000BE3C8D4DE3F9D4EF90BEFD89C2A2839045 +:10AD50001F625CC1A0FF8731AE10E0FAA726F44F56 +:10AD6000CDFD5FCF97DE2BF4E5FEE2053D7A8D88C1 +:10AD7000131CBE59DD8BF6F1DE12467832F584469F +:10AD8000EF2F5DC4FD05334E47280E5FEA36E775A9 +:10AD9000E94FAD84CB838BB6131C663BA145F80FFE +:10ADA000AB18E0FBF8DEF9EA434A534C72AFD1FF2F +:10ADB000E5F2D57BEC82FEED1042CEEF1EBF81ECBA +:10ADC000DD8259CBFCA877AC98E965688F3DFC041F +:10ADD000B7673D607720BE3F7CE85B1FA2DCAC53C9 +:10ADE0005C0CE9A129FD89EB685E7EE6B31BECDD16 +:10ADF000A902DF0B867573FA39610B627EC35C743E +:10AE00007660FF2A237EAFE33B7E664E8DEB7D6945 +:10AE1000ED91C37AFE6F2C88F8CEE941067A407C2A +:10AE2000F76C4B3F80F673DA9BA9414541FEFF1D4D +:10AE3000EAD703FCF051C47B614FAF60F14F4F7E06 +:10AE4000314C61C5B60615F33C5A6FF22AF604710F +:10AE5000FEA96F9AED6E8FEA30E51B839C31D50F0A +:10AE6000B0E770BB26DD166B40BB06ED55D4931DD5 +:10AE7000118A132B2C22A39FBF25067AAA82F62DB6 +:10AE8000D737CE9CE07E9533DB6EA2F57E0CF20BBD +:10AE9000E773F660D90A8A93055C4A12D2A15F2350 +:10AEA0007B17E9DFC37AF3157642E43B634CD28625 +:10AEB000F45D1ECF7FA67F63879718F4E46A91F74D +:10AEC000FC6361A73794FED589FB7AFA1F2505F943 +:10AED00056B5C87F4EC43F507F9F06720BFBB1F240 +:10AEE0009169EA52F24FFA9678A303A627E2271651 +:10AEF0003EB2ED5D5585F6ADC83700AF57958AF87F +:10AF0000A4E02B7DC527CF6CE3F1908F7D7ECA1B1B +:10AF10003CB36DCE801A787FDD12733EA5A3B5C415 +:10AF20001497FADBF31FCE3F743921C7E504F143D0 +:10AF30000FD005C98909DD0FA23E7E768BC4E5449A +:10AF40006CCB63775D404E4CC3C8F628C49B28C9C0 +:10AF500087D3E82FF5C5E965E02CE7B11C85E482CD +:10AF60006F06F9536D0CE582675B9684E3A6ED905E +:10AF70005810ED4057CC457806F2E08174DCE75D6F +:10AF800073EE423C1C66A7FC27EBFEF6920B812F6A +:10AF90002717F658F6CF2A17FADACF8BDD17E4F326 +:10AFA000C847F5FD417E8FE72EFADBA7F38BD278F9 +:10AFB0001C00F83FE6DDEAFB36B720D2516ACC43ED +:10AFC0001C0C9AE1E4781EA26E2FFDA5B4B54EE4E8 +:10AFD0009B0751AF61019E3F185CC4FB79BE20F214 +:10AFE00022FA81532F5B3D0EED6BB687E71DBE58ED +:10AFF000D247FD0EFE7DBD3E415E6A15DA312F0A55 +:10B000003BDAFA0C0839A5E7A7C2BCDE28C579F5FA +:10B01000E435723BEC58E943751ACF8F7DABD49081 +:10B020000F19B7E336ED423B4FB7E34E966EAAC316 +:10B030003C6EE66DF3A39EDDD890427E95C716293F +:10B0400022FE1CF3B702FC5EBAEABA06E427DE4D24 +:10B0500036C2233D0F09B06C17FAA7D93C3E4E5FAC +:10B0600072E7F902B51BE7A3DB97A74ABF4BF207CC +:10B07000E6F909CD3357E4730B7BF44CE903BB04C9 +:10B08000FCCF51BDCAD7A9DBAF1F95DE4FEB54AF44 +:10B0900057FF13EBABD14E33D0FD5B770F4A42F92C +:10B0A0006EF5EF266772395F8BE7FDD01EACF4C4F6 +:10B0B0003212C4C57E5EC3E1DE24258EA35E357FD9 +:10B0C00076F28D43D0FE6C1F85476DC21FC93E913D +:10B0D000EF7C139DA3B1B320EAD733D772BB72E6DE +:10B0E00058DB16D085D94711DEAF6E575AEDC634FE +:10B0F00055CBC7EF5782DC8891FFC362478E4D3333 +:10B10000D991395993255C875C2F91FE578B762511 +:10B11000F6CBFEFFB22BAD762463DC9EAA1172A99A +:10B120003F3BF274ECE2EC4819ED4828D7A21D2908 +:10B13000FDFDECC8156847C2F8B568474EEEDB8EDA +:10B140005CB194DBD7176B475EFED94B2146FA9B67 +:10B150008DE22E4D3B0A2D76E43AF9427664AC5AE4 +:10B16000D2E3E23C4E33438E6D4F179B82787E4D87 +:10B1700032C5815B55AEDF7C1C4CDF8A7AE163C24D +:10B180008F8F9FAF720E6CBE3807C6441CF56F7F61 +:10B190001EEC693FE6D7D688F84ECBC19D0CFD4A20 +:10B1A0003599602FD07BD743467EA29F077B0CF951 +:10B1B0003FC6C387F1BC9CC671F753FC8B496959E4 +:10B1C00076435EDD73826F9F49E7FCA37160C49F85 +:10B1D00065B0538E88FA4691A7C132393C5D95D748 +:10B1E0003C6E3C7FF7C88D3CCF6C6E81BAF94682CD +:10B1F000A746E5E5F9EAA358D6ED615D9EE8DFFBD9 +:10B2000081F07B6DB95112DF0F6D417EC506737BF6 +:10B210009079DB63B6A1C6F813F74BEA7ECAA38F19 +:10B220006F71A9D05F9D3847C21E6C0D1619F8FBCF +:10B230006ED12FF0F5DD388F7D05EA1EEC7FA66D0F +:10B240002DF9DB6766B814F4AB3539BB8BC99FFFAA +:10B25000B9836D97E27833DB2FF2074479AEC2CF22 +:10B260000F02FF3C8C7AD3F58A42FCF3780D8FE312 +:10B270002C987094CE911C9AA2308CEF84D4837653 +:10B28000F4F3CFD93F8161BC3D333FF4731C3F6F72 +:10B290005E4EEE6005F3CD42BFD4E1C5CFD7713C21 +:10B2A000FAE3F591C3F8DE93EBD0DC6887056224FE +:10B2B0000F7AE3B739DEF247210F7E59A0FE0B7EED +:10B2C000FF96EBD5DFE0F38B85A11708AE7D9CE3FD +:10B2D00003F9D589F549FF1E1D87F8FDF4FCC871F7 +:10B2E0003E2FD63A22C1F96F7D7F5F1076E4D114EC +:10B2F000D00B0C78F36E05D777170BBDD75E139B79 +:10B3000087F9552DA0826BF0FC7361A40BC76BC944 +:10B310005CE2A43C21D03730AFE8947FEB15C89FA6 +:10B320006A03D20169003C9116284EF1E7DD6AA05C +:10B33000B7DF64FDEFF4F2ED2B6BBD063F8AF6F547 +:10B3400095D8DEE1E6E57F2DBFFD4994ABB58A389F +:10B350001FFBA6AA18F1E40B8127AF86D48FCBA7D9 +:10B36000903F776528B13CFD04E1F21ADABD36DA88 +:10B37000A773B80EEB3E01FC3F15F0FFAB80FF67F3 +:10B3800017827F5F7E237B98EFE73B911EFA78AFB1 +:10B39000DC401F179867527888699E29E1C4F34CF6 +:10B3A000C5F730CF01613ECF81E10BCCD333F9FE3D +:10B3B000DF53DC404B52A46B316D25EA40BBD81300 +:10B3C000E478E9F14BE4073C23E9FBF6E253B80FDC +:10B3D0001EEFE47F4579764378E01E794ADCDF3E54 +:10B3E00071517465D374D45F3AEBB17CFB9247EA38 +:10B3F000F0BCE783E97C5F972F7964179E972BCE8B +:10B40000085E21219D95FBF7C8B3841C9B11C7835F +:10B4100057F4F1D8CA274126B2623D9EA08DDC8345 +:10B42000F184E264CD8FF1B4EB4FA4EFC178D5D1B4 +:10B430001E3D737514EBF5F1DEEA1ABD07F5B9A2EE +:10B44000794F33E40FB918CB82BE8B4E6B8DA93088 +:10B45000BF1961D68E47DD5DF3747FDD883D189F8F +:10B46000284EE3E3BD5C3EB81EBF6F2DB34CAE3734 +:10B47000021FCA44F86686397F2E09F171AEC37186 +:10B48000600E253EF3BA4A145E3E1E1952DF046D6B +:10B490001695F0F673C5BC163158970FD7754B94B7 +:10B4A000AF4B1D86F2F2ADC8EA682EF0797BCA7AFE +:10B4B00086FAA51C309FB3D39F1375F9379DEBAD6A +:10B4C00030BF8968474C14F2E3D550A818F1C2F197 +:10B4D0003CF0053BF185BD682F20A3BA64686FBEC0 +:10B4E000A0DB2FC5A9DAB29031FE171BB445A378B3 +:10B4F0005DE8AA19188F383A4892606DFFA1C7E33A +:10B500002C71C03323DA34D4774EA73BA25B7DBDC8 +:10B51000E381CC12E7B3C605CF0AFE138FFF3105D6 +:10B52000E37FFFD371BF75DE25A40FE6615E11C610 +:10B5300003EA9F66185ADD303DE843BF7728CFCE37 +:10B5400034831D6BDDAFFF6ADCCF2BEC42878BE7CA +:10B55000A9010E519CF6404303D9758E4ABE1F4B7C +:10B56000AB395EEC582C89F386DAE24130EF628029 +:10B57000209E33B06F7956C67CCE96C0BE23280776 +:10B580005FF3BB14C4DFC661CBFD08CFA46FBAE97B +:10B590009E8853039514CCAB6CF1AD1BC9E3CBD3A0 +:10B5A000FE74448F9F035EC74E308A27BFAC70FA8B +:10B5B000CB5AFCDD3FE1791198AE8F19F6C925CF42 +:10B5C000A4FC2C3987E7931BF681F61B3F4E437B87 +:10B5D00080B3366532E909CA201CD7CFDBFB595747 +:10B5E00003E59F001EB88C7167B14FB2B03BECB75A +:10B5F000ABF74E4179E5B3FB3425BECF45629FAD35 +:10B60000FBEA658A69DF3DE19B283F49F73779E628 +:10B6100099F72D79A1B90C768A69DF66876F22FDCB +:10B620007936E08942E7C778BE992CC69FC3345A61 +:10B63000DF1C30B4DB61BC0EE417A8BF4CF7925E90 +:10B64000903B7051EE402877C803B3701FC06EB0B6 +:10B65000DA25EBB13E37656016FAFD3AC3E678A607 +:10B660007E7E4EB76B8E5ED646E7EF400FF3A13F6E +:10B67000EE18C6399D782EAFC185E564CC1EE0F189 +:10B6800045D3793A763889EEDDA803FB3509F6E92A +:10B6900085E0E3EDE4CFCB64747EA62E5797D75FA9 +:10B6A000ECC53C998BBD17A0B86ADF5EC72C631C44 +:10B6B000F8877B310E7CFA33FD9CF2D6BD17BC17A0 +:10B6C000803D762BC6855D785E1DE0FB9FE194365C +:10B6D000CCABE83967C91EF8C0782FC088B286C0E5 +:10B6E000C681F17B016C73F7EF3D322C7E2F4077E2 +:10B6F000D5B95B8DF7027C7AEAD95B8DE74BFF50B9 +:10B70000F5B35B859FE07392AFFD9C831E5DC6F32E +:10B710002346945DDCBD007FAFF8991E37033D548E +:10B7200073A31E9A6A8B717D394AFAC27A8B1FE223 +:10B730004084F3E1DF44743ED24BEFBCBC0CF97F94 +:10B740001FF718B8CA14FA5E827B0CC6D0F72CE734 +:10B75000AE719FF8B96B8B5FEB88D9AF057AD4F8DF +:10B7600032A87779B9BEABEBB3F03E0BFB75295C21 +:10B77000DEE9EFF796F8C4FC5B15ECA784C5B81EAC +:10B7800004948FFEFA125F8CF21B983696CA677784 +:10B790003EFC7B2CDFD390A4D8A95D1BDD87925D96 +:10B7A000C6E140721DDB83FDCEF38BB8FFF06CBEAB +:10B7B0009486F7AFC4F5274F1BE275B313F41F98B7 +:10B7C00042E9C97F5AC9F51FAE3F45CA989A0B781E +:10B7D0007D8F93E97A03D10DF135A28B89A4179F50 +:10B7E000759AE90AC500EF7FC29358AFEB5F876A8D +:10B7F000369BF5AFB2CDA47FF5D5FFB2F2EDF54D96 +:10B80000DEB87E04F3699FC7503FBA3D8C7AC9FC0D +:10B81000B2B63D804BA6F6943FD4D3DFF63DA41FCD +:10B820005AEA617F97D0FE0A7F667FEDD9C21EFD7E +:10B83000A5B68CF41785F6D99AC7A1CB3BAB5CFDB6 +:10B840006D399777E38BD5288EBBE0F0BA3B420980 +:10B85000DA7DAB8CCBC705D96D7E94972D23B87D4F +:10B860006D6DE710FD413F23B1DDE986C4ED1E2B70 +:10B87000D3DB3D4EE7459A0FF276D87FA1A1FD3D7F +:10B88000659C8E5A5212FBF914311EC06D23C1ED16 +:10B890005E0E0FB0779B111E60777EBBCCC84760F1 +:10B8A0004F88BEF243DFC17AE6D0C89E6871727AD3 +:10B8B00047196CBF2601DF0898F986955FF4F09D63 +:10B8C00022A6E13D0A5F2C8C7C0FC75DB73ACACF38 +:10B8D000C3F561572CC8E6E7651A53F8FAAD7E82C6 +:10B8E0007F12EB9F15E1EB04BB4FDC871661463FEF +:10B8F000D08FC5FEE87CB9ADEC44BD912FFFE8E4E4 +:10B90000E8A8912F332DA38DF289DCBCFCB393BF43 +:10B91000AF17E7F877115CEEE670DC55C62E782F8E +:10B92000C0DC02F5595C677E1F71D99F97E97E885C +:10B93000D0CFA9DF55BABF9BDB6FD6FB377E5D66E4 +:10B940003ED706726B1EF937DACCFE8D5F97E9FBA6 +:10B95000AEFE1AFBCDCEB28712E9F94F540B7D38FB +:10B9600070A4DDAE9F4754889E55933F6542CCEC52 +:10B970004F696A35C5875F8D8FF76A19B70354D44D +:10B980008FF578E6D11F36E421BF62B698CB38CF69 +:10B990008DE27B4777F3FA6C17CF87B2D60784DE48 +:10B9A0000E78FBB6C0D751884FD980AB287F66DAB6 +:10B9B0002676AAE4B791820D30FFF99907C98F3D29 +:10B9C0009BB120FA5BE604721C98AE9437B9663DD1 +:10B9D0003E33F3231FE03CE7CE7C3B887AE1CCB5D5 +:10B9E000EDA35A0384F77F2C33F85D747A473C2C1F +:10B9F00034CCEB2F02EF1A4724A6BB0915BA5CEB37 +:10BA0000F1DBFCB52C819DDDCB6FE3E5FCBFF1EAFA +:10BA1000E131E3794D25D2E3BF91CAB9FFA0BC6201 +:10BA20004A6F7AD1F3F574BF58F1C263332F85FEA4 +:10BA3000F2564B8A9DEF2BF9C9AA44BDDEFFE97C83 +:10BA4000C98FE76FF5FCBB7DD5279FA2FCD155922E +:10BA5000E0AFAF3F65CEB7FBE03673BEDDBF3D75EF +:10BA6000C17C3BF6EE6D78DF5276D6A44E27F45FAC +:10BA7000D075EA293FEC4B71CF39810F9FBAD0398D +:10BA8000812EA4B321BDE95F7F5E567161FA9F5A92 +:10BA9000CEF74BA7FF60B97FA591FE27FDEEFE957F +:10BAA00066FA6F79D2B8BE6B7E3772A5A0FFB10877 +:10BAB0007F9DFEC796F3795D80FEA7A15FC67ADF02 +:10BAC0008EFE9C15E7CFB3A8DF7EE87F6EB9395EA6 +:10BAD000DC17FDCF2DEFF16FCEC57EFBA2FF011568 +:10BAE000C2CE16F45FC77A3E44FF3DF4BBBB81E88B +:10BAF000BF769BA4E2794F2BFD2F8A8FB7A87C4A93 +:10BB00009CFE75BBE4E8282D0FBFCF6C9ACBF8BD27 +:10BB10001EFA7F5CE099D6518FF1753D8ED955F6AE +:10BB2000D093423FAEA17E2773B8F7A79740FB9B07 +:10BB3000A97D90C3F3BFAAE7F4D21BDBCDF1523D40 +:10BB40007ED73B1ED69D4F7997015BC278D820E601 +:10BB5000BB6E03E04B05D88768AFB504D228EEE78B +:10BB6000F91F8A83E5F9CCE5FFEE3898AB84C7EB83 +:10BB7000AD711F6BDC13FDFFB89F56BD1C3E31BB82 +:10BB80006EFFE2BEFC2FF7EB4842FFECCBBF03EBAE +:10BB9000FC05F20B97CF6C67245F1F398CEFDD2318 +:10BBA0001C36C4275FBA2D867E1577BA2D0965C667 +:10BBB000C5C68FA1FFDF50FFA3CD705C9EAFBE80D6 +:10BBC000EF171CB6135DAC3AF9DC1E41779D444774 +:10BBD000E2DE266B1CFF9AB0B07F841FB3B77F9460 +:10BBE000E974D78EFFD4F69407D71F01D1A0EBF1EB +:10BBF0007DF17DAB5FB4401F4F7CCFEAF706FDC0FF +:10BC000089ED757D8BBDA02A263D2534FB0CAD4703 +:10BC1000639A34D4C4EF3413BFD2F99D3827C58E4C +:10BC20009BFBF9B8DC1C178071BB6FE47ADC5F709A +:10BC30003E49FF6686EF9F0B235EF49FDA6BB41BD1 +:10BC4000D05F86F18E86C93CBFCA0BF03A559B1473 +:10BC5000930C7E38DD6E4AAAD0FDCA5964E725BD33 +:10BC6000B1FE49F493F767F714A745C378AE68FEB1 +:10BC700049687F75423BCA5361D8B7FEFAEB2BDFA8 +:10BC8000E32AA197599F0BCA75BB98E309D37AECB5 +:10BC9000B061A8B758E5AAAEF7B1D566B9A254F419 +:10BCA000C81505BF37B69CD38FF5FEAEA319DD7658 +:10BCB000A48B1340E35BF1CCC9FAD6A0F11CE434A9 +:10BCC000E14FF657305DDF1E42EB17783DA482C38B +:10BCD0005DCFD380F1BA505FD3F50E3D4F1FE3CB5C +:10BCE000C67E2B85FCFCB2F1E5921EFDF07F6B7CDD +:10BCF000B981E2CBFAF9C126115F0E676A74FF4C75 +:10BD0000B88FF8B241DF0D5724D077417F2DAB308B +:10BD1000E8AF5F2C0CD9905E1A8735523C6253AA6B +:10BD20009E8718A33CC4316CF3FCB1B0DEA66D5203 +:10BD300010FD91C0EE29DE3FFF38BFCF0AF3D0F2ED +:10BD4000A712BF27BA75576932FA95E72BB6B771B4 +:10BD50005CFD7E5E66AF4C787EAE393542F754B9F5 +:10BD6000B66D69C4FBABE6EC9044BC8AE77B5E1E13 +:10BD7000686DC47B003CAB3B7379BEF2A3CFA37F5D +:10BD8000EB6C96C42E51305F2DA2617EDA99ABDD4B +:10BD9000BEB594C7313CEF2E63BE442EBFFF448630 +:10BDA000FF503E2E9C6CBE0F657E3FF986ABDF3C9C +:10BDB00036BEC3B06F6B2BCC79B67A7E9ABEBEEA24 +:10BDC0009E7B7EDBC43DBF3CDFEC3FD6748EEF80B4 +:10BDD000FDB957E0DDE19B23F75618F4C8F87D2440 +:10BDE000B1D3748F9B9FF9106F9B021F1D3E8F7103 +:10BDF000D99844799FAEF62499F261974A31CCF3F1 +:10BE00005C11BB7F03FAB3EB144714CF7DD53942E5 +:10BE10002B087E3137C5CF5F40F8830DAD845B7F43 +:10BE200083FEDDB3A01FE1BECD51A2AD18EF498660 +:10BE30007DC47CC2E460433BE6232E0486817E6D94 +:10BE40007799D63E09CACDAADC8DE7A050AF32E67D +:10BE5000A9DCA0D8E8DE1B1D2ED63C17ABDCD6EF44 +:10BE6000B9691AC6F79569EACB28C775BA73293F2D +:10BE700076E03EBE38CCCEE81C3B6B7511BD05B8F4 +:10BE80003F5EDF3F66BF57C3BCD83F8B73F2323390 +:10BE9000F8CF111E936BC8BF9F1FF14631BF253FDE +:10BEA000E84C1877E96B7F7F61D9DF9D0E16C47867 +:10BEB00057CB713B9DFB6AD9B6FF088EAF6DB3F1CE +:10BEC0007C171621FF6E04EFF145BF613B682053DC +:10BED000F1FC31A78796C2B60D35F05EF9C6C820D1 +:10BEE000F2F796713F7662B9257D3043FF35B3A9ED +:10BEF00007F1BC7CD5F7EC12E7278CE0D4B27A606E +:10BF00008CE733C45CCEC1782EDECBB07F1D8F0AA8 +:10BF1000049DD4E23918F873090B12BC96B2103D97 +:10BF200097B3283D2516A0FCC4F228A7DF16914F31 +:10BF3000DDB5CD4679B0EA35CE81EFCBDC0594484E +:10BF4000FEEB4F8C54BD6FE057932A841E2247FCB2 +:10BF5000C86F5E0D45DEAF30E9E72ADDEF1D3FEF2C +:10BF6000F8875B309EABDB774B96FC6137EAF5ECEC +:10BF7000FF98FEA88515AE0FF6A13FE2FDBF95A87C +:10BF80007FDCC6F50FBBD0FF4043B90DE5FA810653 +:10BF90001E3779205C721BAEDF9EC5F2C83F7DBDA7 +:10BFA000C4E8BC9FF7C87B76B35E341AF36C747F29 +:10BFB000C1438BF97DDDD99F1F7F8ECE9108BFC213 +:10BFC000182585F6B505F802E2CDA6F14574EEFE1A +:10BFD000E3A54EE12434C7717538548A413CF20B15 +:10BFE000796807C9C338DF4C16715D59C475D779B4 +:10BFF000D73AC92E62E6782E6BE5FB678DD7399864 +:10C000007FCBF9F4F87EE8F76C19BE4FFB618537FA +:10C010008B727ACF841E301EA8DF83115E6AA663FE +:10C020000FDA2DE313DDEF70EF87781EC823F88257 +:10C030001E5FD5FD2AB1C521F2AB386C022FB5D1F8 +:10C040007B715FE27E9631149F227966B0570D7E38 +:10C05000151573FC42A7598FDF5DA6FB4EDBEF4D34 +:10C0600087FE5DAF5EB9775E1296232BD19E95ABAE +:10C070001AF6CA23E27E98ABABD6DF2AF26BAFA9E1 +:10C0800044FA19CCF59F6B7023B85E348BDE2B5CC1 +:10C090000F9A157F5F48EF453EEE0B7EDBBC44FEFA +:10C0A000844F2BB9FE3753035D2D0DF353BDA6FB13 +:10C0B000BBEE11F1413DFEE712F13FD7708DFC7FE1 +:10C0C000D6FE965472FF405EBE1AC1F141DF5F4258 +:10C0D000F308727D5FF1F2FB7A31BE87F2CAB74591 +:10C0E000E4D98FE6E7CE67CEFCAE8A79943E1BEBAF +:10C0F000C278AB0608837994AEE71C446F85B935E6 +:10C10000944F702D9E63007885BA6DA67308D9B9D7 +:10C110001E53D940CFA67C4A5DFFB0E653E24D7076 +:10C1200048DF6E713F9A951FE47C7F958A79C9C973 +:10C13000202F28BF3DD79A5F1955D70E8EE7572677 +:10C1400037B5D3FACA447EA57BB419FF56DCCBF3CE +:10C150002BC3985FE9EB8DB71AF02F5CAF07C64B86 +:10C160009477EA4BE2F9154D000F94BB067A11EB78 +:10C1700035CBCD86D2723AF771769C4BE1F76B489E +:10C18000A6F5A7A96D1D285F2A61FDB104EBF7880C +:10C190007303BA9C55851FC1A32CD190CFFA66B802 +:10C1A0007D1427B7C8D941621D15B08E44E734AD60 +:10C1B000EB0AA9C7ECC83F76558A7CFF000B203EEE +:10C1C0001E2ABDAB88E2A39936867A41F3B66D7418 +:10C1D0002E51FB9E2348F709B2D6C5587FA594C6B9 +:10C1E000E5AB26913F435F7F73615B2EEA0DAA901A +:10C1F000AFCD57355E86F765356FBF44C1107548C2 +:10C20000CD69C0F5CB7EBB84F8A5C753518EA05C29 +:10C210006D662348AE9E6960DC7E582409FB410DA3 +:10C22000235CAB408F42BC2EF04729EFD503363953 +:10C23000C1196DE7A1186F64C45F17E5EE27FDC54E +:10C2400097E160A9D3E3F1D8545B5710E19BCFBAD3 +:10C25000281FAB80F99CF82C6241BAA7A414181EC1 +:10C26000DD07C25AE959CEDAE859C9BA9CDCDE507A +:10C2700008CED599FC7E953395E944DF0B65E6C47D +:10C28000FD6D0E74A6D0BD9EFDC487D64B3CFEA3AB +:10C29000012FC27BCD7BE2CC9358C40EFC50FD94A1 +:10C2A00049463D408ADDC8E3478580B2C318FBB7E5 +:10C2B000CA0C2EEF1F0A36B94709790DFDD50CE7D8 +:10C2C000F7B0E9FCE262CF63CE38ADF07B22B7492C +:10C2D000E44799817ECD00E54FABC6FB275FA9B44B +:10C2E000D37A5F11F92FC58E10DD078817BE355C34 +:10C2F0008D792F45542EBE1B6414E6CB7F3899EE02 +:10C3000043FB7D98642B7C4FA1EFBDF9C9A121208F +:10C310002E5885B761834FE96D47EBE37D21C661F8 +:10C32000553D7E615665F0BF2CAA34DBD550EFA891 +:10C33000C2F201B3DFD8CA47A788FEB2B30E7B278B +:10C34000611C6E988DF0DBDA6E5C954DDCFF0E782B +:10C3500002EB195ED54AF90A21A66C48457EB1BEAA +:10C36000E9D630BF577F108D2B8BFBFD4F9BE1A68D +:10C370003F8755B9F4750CA3F65E3ECF52840BCAC5 +:10C3800009184E498BC75F80DEF47CB891D8DE3A3D +:10C390006E215E604C72F0419293079056F4F83330 +:10C3A000E0FDB11451AF6DBA15EFB34830EF0C8218 +:10C3B000A7182703151B18674495D0271D7C3DBA85 +:10C3C000BF43BF374CDFA7ED8B397CACCF942AF34A +:10C3D000BEE87E792B3CE4AA9E789F4CF010E75F84 +:10C3E000649C0787D3B5C6F7FDE7A1F0F5DB4EDE09 +:10C3F00057DF30BA6F3F4D4D1597CBD667FCDE79CE +:10C400001D6E77EE319EAF9979EACE7AF13B0985C0 +:10C41000463CD3F369724FADAA17FAC42282EB7F70 +:10C42000F3EF28149CFA86EEBF9A5F65F0DFCC8F9D +:10C43000C36F39CDC3F2FB0AC5A7BEAEFB33EB8C8D +:10C44000F5FDFDDEC269410F4733385DB15AEE6735 +:10C450004A1AE563CD8673AD77087802DEDE81FD8A +:10C46000EBF7BA23EFB319E22AAE1D9CCFE03DF102 +:10C47000C678CD3FF6D0BBFA8F55867811C2DBE87F +:10C480000F5B1B6FB716DBF51527DA58D52B4E243B +:10C49000F6F779A21BFD1EF9D6AA57F7F27BE4B78F +:10C4A000AEB3219D387EFBC710B723361AF17063F7 +:10C4B0001CBE0FD07B4B9E9275BF36C7E97E33B54D +:10C4C0008FE7E324CC377DACCAA1D3C563D4BEE7E4 +:10C4D000F718DA75BF5E10FD7AD9CE9886F7EE654B +:10C4E0003BA5A0C6D0BF7169612E943DE33226A260 +:10C4F000EC7846D097DEEFFE791117C58BF142C676 +:10C5000089E8E7E0F79BBB44DCBE2F7A7953C0CFC4 +:10C51000FAB4FEBEC2435547F6E2BD593A1D7EAF9E +:10C52000EAA5F1986714F763693223FF69C4A6A1ED +:10C53000FC1B6F23F9DE14F8680EE91DB8C7173825 +:10C540001FFD9B35FC7EF67BC4FD473DEFAB324CB7 +:10C55000EB5C90B794C6919D9AEF42F789CAC3935A +:10C56000E37E3EF87F9DFFEB747FD519FDDEA6E1EB +:10C57000ADF7E1F9CCC66376B6167077E39AD81BAF +:10C58000EF39E3F9178787B9DAB327E3B9D19A27E7 +:10C59000505FC2F9E1F9C5B7AA785E9ABCED698629 +:10C5A000A6A03CFA403BEE932B26B5E1BDD5B5994C +:10C5B0005B18DA39C9FE18D185AB8CF3CB059940ED +:10C5C0007886F9C0FEB719E9BA4DE01DFBEC263FAD +:10C5D000E693AED821915F6ACE8E0686F7A7F63530 +:10C5E000DEC92A2E5F6A0330AE17C76D73D0EF3CE9 +:10C5F000C47F6FC224273F15747E679C3FDF49F3D9 +:10C6000010BF3771671CFF3FA2F796DFCDE82BAF55 +:10C61000CFF0BB1977564D89F7F31F627E7DC58D2C +:10C62000C1DEF9A28ADB3B6F515EA0B077DE0A0B58 +:10C63000787CF93C584532FA312C79AEAEF08FD483 +:10C6400043C8073F485166A3DFD29217DB3B0F3642 +:10C650007804CF0DB664F2FB88FACB83ED088F2205 +:10C660003BA803EC00294876B58679B42E714EF8C4 +:10C670002BE4C1925E3A1BF4FFC479B0DC0E9A231E +:10C68000EE71E91079B1C033BAB7FB300FD649FA71 +:10C6900074C7F4E131F49158F3605F147E96BCC125 +:10C6A00035940F3BDBCBF365811A0763BE1E8C31DB +:10C6B0009819EC9C532322DC6E1279E906F8BBCE64 +:10C6C000A72780BF2342EB77D898F2A8AF37BC6189 +:10C6D000C337944E8EC3073F463F07E605A27DE46D +:10C6E000623EEEA7B2C0DFE357C89F827E68BCA758 +:10C6F000639D771FC37853F20B4974DE48DF7F7D5B +:10C700003E9ED1F50CED947FF8538A82F7D67A2CB1 +:10C710007EAD5E79CFF07F8F5F2C819FAB771EF46B +:10C72000FFEDFDEE107A60EEC065F212F1C4F3FB8E +:10C73000DF14FA5F6E1FF9833789F387F4BB2A3859 +:10C740009FFD3CAF735C725714E136417EFB106E67 +:10C750006F9B6FD29C810AE61946D62C86FE26FA7C +:10C76000735AD2717C476706C69BC6DDCEFDA6957F +:10C7700099DCEE672CD63E14CAB9F5127B54C1F38E +:10C78000BA8AE312783FA73E67E18D50BE67B1D900 +:10C79000EFF2F7CEDBFEFCD46DF5789E0BF8E534B6 +:10C7A000F4D7240DE2F1EC69717FD23F2F463FE5CB +:10C7B000BB3DE7477EB098F472161891E0FC483C08 +:10C7C0000F377275A5916F5ACEBF5F8DFD733E3DD9 +:10C7D000C968374D127AFEF86275E7E22986DF03F1 +:10C7E000D4D727F1BFEDCE1A15E3B3C968954C46EF +:10C7F000BC10713A01BF783E4B8CFCC47599E85A65 +:10C80000A2DF8D7916D703F020F815065810ED4AEF +:10C810004F4021BF65FFF72E179BEE7DB03EFBBA60 +:10C82000775911E7317E65D9EFBFE1EF9712DD58F7 +:10C830007FBFF4D462C9948768BD0FE6F5C5E638BA +:10C84000C697FDFDD2DF1686DE227C9055CAAB7EF0 +:10C8500073A17A45F5940B9D03F8C653B5DEB8FC79 +:10C86000BDA4FA67B7D1EF36A913559EFF7EE171DB +:10C87000ED4DA534EF69276C26FDE8EAAE6493FF21 +:10C88000EF9AD369A6F2ACEE4B4DEDB3CF6598EAC3 +:10C8900073D8D74CF573E449A6729EEF1A53FBB9CF +:10C8A000FE39A6F2F5CA0253FB71E796D23C271C6B +:10C8B000A833B5CB6AFFBAA95C744324B91AF071E6 +:10C8C000D291BB4CDF9FD2B9D6D4EE50E98C01187F +:10C8D000DFD4F3F3BDE29E2B9B67F848E46FBABF49 +:10C8E0004A87D3906AAE77BA1D51BA275FF733F5FE +:10C8F000F6B70CF7BDEF11653C0798FB895DE4B511 +:10C90000B301C3282EE94B849FA0AFBFBFD888577F +:10C91000425F7F7F31A76BC08B8C6AB2D37BF062A2 +:10C920001496AFA836E3FFC802B56B31D79312CA8D +:10C93000E96694D3C1DE721AB46C85F31B8BBC8597 +:10C940008F64F4EB0AF92BA3FC45791F9E44FA1778 +:10C9500000BB7B369EC1B7C8F38EF08F18EAA71DC7 +:10C96000B0182991FCF5D56AE807FEC61F5314F4E8 +:10C9700063E03DD387900F813E86E723ADF298397F +:10C98000823E8C43A74EB031718FF905E5717FFA75 +:10C990009947E867FA3DD85F5E3E1FE6F743FB75AF +:10C9A000F9D44B3E93FC9E23FCB5BDE5F3328A736C +:10C9B000754CBF84EED5FEB2F259BFCF7A79BEBABC +:10C9C0000CF1FEE6EAFF1DF2CF90CF40F7005BEDE1 +:10C9D000C0B368070EFEEA76604B7586890F7F55F7 +:10C9E0003BF04AB0C2E8F79085BDB7CEBF5546BE12 +:10C9F000D0389CE75BE8F6A0D50EACCB8C3C8176BA +:10CA0000635D661B1B332E6E0FD62EE1F6601DDABA +:10CA100065938D76E0FD9457B542D881EF2FEED324 +:10CA20000EBC94EC9ED15C7E5FAADB3DDED848F460 +:10CA30009BEBF7BCDC7C23C78BB34E8DDFF3927E80 +:10CA40009D64BCE7A52FFBFE80C87BB73E7F5B667D +:10CA5000CE6F437B94F88DE57E9793D54994970AE2 +:10CA6000FAC88FB1BE2F7D448FEBEDAD96570A3FCC +:10CA7000DA9E6A837DBBA79A5DD00FF1829897F505 +:10CA8000A9CFCF5EC5845FE7CAB61C6F3C9F7A789A +:10CA9000F9874F093FD9119A7FCF3D3B89F3AF0DFD +:10CAA000ED0F561BF4A683383FAEAF1DAB36F99998 +:10CAB000D957CAF3D6C739DD13974E7AF222EFDF82 +:10CAC000E9AA1E12F703BE549D4C7963254C13E767 +:10CAD000AB9219FE3E4B89AFED043F877E95C27F36 +:10CAE000AFA5F5F7FC7ED9E11467C1B80BFAD33EC8 +:10CAF000107A53897EEEDF11A17C996671CEAA452A +:10CB00009F9FF6059D536FC27356C8B7BB5C513CDF +:10CB10006775C6924FDC73EE5C0B47510F69EE33BD +:10CB2000DF78515B2DAD9FE71BEF8FA4AEC4F38A76 +:10CB30007ABE71722455CF77FE13ED83C0FF3F8913 +:10CB40007DF87F45A8DE1200800000001F8B0800E2 +:10CB500000000000000BE55B0D7454D5B5DEF767EF +:10CB6000666E3293708311070CF4260418ED046E80 +:10CB70004204E4472E24400241C2AF0942B9098170 +:10CB800044A5ABC35FCBEAD272210162422556AC09 +:10CB9000D5DAD78142D52E69474AD5B6B61DC0F23F +:10CBA0005C066AA468D56A1BA95069FBDAF890573D +:10CBB000ECA28FB7F739F766E64E26C1BEB66B75A5 +:10CBC000BD1757B89E7BCFD9E7ECBDBFB3FFCEC929 +:10CBD000A2F7A312A80072F7E53F29C5008B007FDA +:10CBE00086E1AF75F933F1003EC31D7A7516C05565 +:10CBF000FA99DEF7796281F1C1AAEB013E58857D91 +:10CC0000F10955BC3FBEEFAEC576772D7FBFC89EFC +:10CC1000E73A13E2E56AF23C1931230CB078B03EF2 +:10CC20004AC80128C0795B46E0FB10D229EA3B9F45 +:10CC3000C7C46FB710FDEA99441F0A79BF99B5BD03 +:10CC4000EFF34C7C4284AFE376B9B86314CE57F867 +:10CC5000E67D4F070480C921FC3619407CF38175BD +:10CC6000DB0A81FD184300E641D2CF04804C7AE60E +:10CC7000F3A686DF15FA9F91F44FECC5E3B9000FD8 +:10CC80002CCA8CB421DD8BC6311944003F44659019 +:10CC9000908EEE81B3213EEE2AFEFA43D856126DF5 +:10CCA0002524BBBE93240CA72DD1BFCBC15012EDC0 +:10CCB00041D2B6113AEAA1668BF4E5F7AE0378FFEC +:10CCC000E8A35E0DF9AD39B0CD63B2F75EF6DE9143 +:10CCD0004FDB5680B31E22A3727D04CC20C967BAF5 +:10CCE000D75A538D72862D1DFAA2247DCE3405D6D7 +:10CCF0000FF53593E4F6AD5A8DB5A7830CC6605495 +:10CD0000E7F8BFDE48F380D5ABD739D46FBE8FEBE1 +:10CD1000EF876FFE6A9D85DF4F15F448500AF04695 +:10CD200001C07EC411B474E80B93E679AE56647406 +:10CD3000679B1C0FDED2077F959BCBF4AF09B70131 +:10CD4000944384C9CFABE33B7CEF0D0A510BE57FE5 +:10CD500041E0FA02181B33701E6FA0F49C847D76AC +:10CD6000778F8B2948E77DA16B1D60FB29B3679DF9 +:10CD70003C0D606F3E5FD741B3E7692B8FE161994E +:10CD800099849365367E161770BC3DDA5D1A53861A +:10CD900063DB6BCF63DD1A3370DCE24C6B04201F66 +:10CDA000BBBAA7C6E4A1C89FD7C1EBE2087D77E66E +:10CDB000F9727759CC9A8A5AACA80301F92F0F025D +:10CDC00048F909BC3F9B8A77B8D3C63B9FAFCEBC1E +:10CDD000938D4F6D2FA9E6F466133D94C112D59142 +:10CDE000031804C6251A6F3FD05D1C69457A4B971E +:10CDF000F0FE73ECF99702AE5FA5F51B11F9D66B47 +:10CE0000AF1FE5D4CCF64D29D7F3FB02D4C4C27DC5 +:10CE1000F7DF83A6C8E42765B58089DF952018D1A0 +:10CE200040DF7EDDB502EB5774A7CA9E30C9C14F03 +:10CE3000F56AA60F9DEB63B5AD8F535EEBD384CF40 +:10CE4000BDF9D6CAEAA4799F30399D5DA6986A5F7C +:10CE50007699EC3D1FDF57FE8EBC210E8EE8987E42 +:10CE6000F5C84BE18F65D7EA689D75365E7BF9B0F2 +:10CE7000E77FC4B4DBE59C8FDEEF761BF93CE496DC +:10CE800027C7E91133FBD3C938CD34B30FD938BD27 +:10CE9000B42A492E975671BEFC29F3444D7B5FDBC3 +:10CEA000F6B1C3A83768DF5D448B2715F7CFCFB441 +:10CEB0009E6109BB82BFD32F1724EC0EFECE804F9C +:10CEC000BABE9729E35DED59EA1457FF39C13257CD +:10CED000DBDBBA0C0CB4432D366E02A07A17E2FAF3 +:10CEE000447FDE883AC4C7695B7FA9EB8216CF1FF7 +:10CEF000BA1D3A05F4EF0AF5FC27010430C4AB7EF5 +:10CF000026979B6B92E472730D3876FECD64F9B66A +:10CF1000DAF3A6E2A8B286DBB71EDBCE55D6F4C1A3 +:10CF20005165CD2DF49ED39D2F412446F6AECBD036 +:10CF30001625F99FD7AA679E67F3013408136C7F03 +:10CF4000807BF0D44828247B951986A898CF9E6CC6 +:10CF50003FC01B383E095F1797F3F95FAB362E2EA3 +:10CF6000BF85DA7CBEEE14FD86E61B17D9FEB0E065 +:10CF70007421FA9DF95C34F0B097DBC50B3709D109 +:10CF8000ED486AFE8127E472D4FB0943E901C4FC41 +:10CF9000C3D9B8649A57B614207C977ADE23B91A9D +:10CFA000F81FC975DBB24C36FE774321EAC3F1A303 +:10CFB000A1C9FA3CB6DB26F954F26373417EAFDBBC +:10CFC000D137F2D11AAA8738D2BF6406226447EE5D +:10CFD0008C7812DF49DFD43F94E8FFD48145771184 +:10CFE000FDA6277D1AED3FF243F131CC5C65CF47BA +:10CFF000792DB4E505A0EEF83CD29D1B94A08D6C74 +:10D000007DB9E72CD155F03F5A675B76A4CB43F648 +:10D010005F13611BD2F146059DD671D71949AF2028 +:10D020005C1ED82717E0773FF2EDC3F19F089B56AF +:10D0300037F2EDDFD2558EA0433EEF8EFBB0FFFB03 +:10D04000C502DCC0566702C9B5AA94CFD3BBFEE8BF +:10D050006FDF866CC6F7D964BEBDB0FB03692CE3F5 +:10D06000EF6C327F5BDE7E75EC8B4978BFA92E2B8F +:10D0700097700A2550427EFAD75B9F87DF8CC2B635 +:10D08000B46210F94BDCBE06C311C48070F4F0B278 +:10D090001F28F5A8973F6FED1AFB22FAE7F175DC20 +:10D0A000AE1D6F34C7D7DD92C0893FAC7AC9AE6A76 +:10D0B000D073FC2AF2F1BB2044DB707E5FADD53A21 +:10D0C00099F475464268909C2CD0C9FEC6EFF76A69 +:10D0D00088B3A6608797FCE35D326CF7E0387F5435 +:10D0E0008A6EC3294E921ED0573F158EA893F1FD2C +:10D0F000DD385E443D943D891F4B99FD8EFA90BE0C +:10D10000A20B0AB5AB10C71A7E52A67ECF22B983F6 +:10D110002647064D227FBD2D3E1EDBF351EE06E273 +:10D12000E176D44F3C39CE41E0D9F212AF92CFB67E +:10D130008CD3851392E22A0D290D21B9E24F4112B9 +:10D140009EF381E1D94BE393F430EFC02E8BF4ECE6 +:10D15000E01BC21CCF0E4E10CF7A9CF0FC9AA4FBB1 +:10D16000B4849E95141C7B9F443DA33EE7EBA9F835 +:10D17000EDD5F37B03E9792DE9D99FD0F353323014 +:10D180003CB6231E2D9CB7FDC09197689DD60151DA +:10D190001FC5465935C49709A2DE46F14D5C0019FA +:10D1A000E570A78DFFF685314F3D8ED7368ED0C9FD +:10D1B0001FB5173DEBA9C37EEDF9B9E0271F2F1A64 +:10D1C00047EBB1BDF27149A07DC97EE8FB969C6832 +:10D1D0009BC0E87B49BFAB30E822FA0E9E1644059F +:10D1E000D6EFAE1681E9B31E742FC5AB0D50CD9EA0 +:10D1F0006B21C29E02842DD2F3F288A0B7B1F5F361 +:10D2000071DD07C47DB46F8D299E9CF328270A45E4 +:10D21000D3F9915EBB8DF1E1F9A4B875346471FB6B +:10D22000620A6C9D0F7FAB7956792EF34B5D643F9C +:10D230006614B77868DDCA540FD0BE9D7E6510C3F2 +:10D240009B37CCF1AD04630C6F4D883711FB772110 +:10D250006E0D1FC3D1EB8549F1791F9C296E5CE1EE +:10D260007E2BDF81F3D6927D51FBE20A3DA6E7B328 +:10D27000644FD0AE31FB63E34AC4FF08574D668765 +:10D28000E7CB245F4389683AF9B18ED95E5AA72566 +:10D29000C063D8BDD674E3E813573E63AC21FB4F9F +:10D2A0007614FB9BF77A1278C2DF00262C84D356C3 +:10D2B0009CCFD2FBE2AD3554CDFCB7B70AD780F195 +:10D2C000A8D768560A68DFE932C3D3858590A98E4E +:10D2D000C3A727167C10F7FBF7EBB8FF7AA568F613 +:10D2E00051C251E06191C9F38729386DBCC38E13D7 +:10D2F000148CFF5135B3E61B3FAEC3F69C05D571C8 +:10D30000B237A0F3FDE2BD83FB9FD7675AC16AB471 +:10D310001F8DB56E7F34AD474C891B3253E286EBCF +:10D320005CED32E5C694B861A4EBBB6FB82C12BFBC +:10D33000EA3E294A789B1374C71DBE7D5206D9F177 +:10D340006F2F01B68EE9A33B46901FBF300AFD3B0D +:10D35000D9F972D9BA219BD953B52E4D7C7AA4A2A2 +:10D36000EE1DB73D8D7BA8DF4C3065C2FF1CB05869 +:10D370009E518902CECD277F6BFE86FA97972F6C40 +:10D38000C9C5FD306F5C511ED96FEFFCEA734C4E7E +:10D39000686D497E64C7E9F9C74AF302C991D6E1CD +:10D3A0001B4BF4A340FD1F40B5105FD664257A9057 +:10D3B000E1ACDB155FBE7407F7FFF4F3AF9D6FEED2 +:10D3C0001B417EC5C9377F77F42E20FF5213B40668 +:10D3D000CC377FB2C0C8AC4779DD5369F8EB91CF49 +:10D3E000FFAEAACEA236041CF9B9E3BA5D026414FA +:10D3F00092BC4E49FA41FCBACC877157923EAFAF0E +:10D40000E738BFB99ECBCD1F5D0CC6F8FEED51BB12 +:10D41000084D341EA400B36FEF1485F713BE9CEFC4 +:10D420000E9D5E5CC497317A2B5B97B0B87564BD76 +:10D43000DB9F771887993E2F9A03C7D50E1DA7ED5E +:10D440008D2F1C709D5E3BBE3CBE6CAE1825BB1E76 +:10D450002CD84FF6BA3D281A643F3F7C5BDB4F382F +:10D46000F8799D83178E23B26FF796004CBC1C068B +:10D470002B89FEB3B69D7C7EABC29E3FD8AA82812B +:10D4800071D70B5B83ACFDE3AD1A7BC6B786D8FBC7 +:10D49000635B75D67E71EB24D63EB1D560ED97B651 +:10D4A00056B0A743F7E7751ACFD3E34B183FDE28F2 +:10D4B0007F1AB40FEC78C64C93F7613C33BF3E4DF6 +:10D4C0003C73F140D982C91A790D4CC34AFA8E9344 +:10D4D0003BB81E92F9B26CBE2C9B2FCBE6CBB2F9B7 +:10D4E000B26CBE2C9B2FCBE6CBB2F9B26CBEE889F6 +:10D4F000E909CF330B787E903AFF5B7788767C6EB4 +:10D50000BE75073EB36FDC5244FB0C9E343492FF71 +:10D510005B77F0F10B6A5457FE0057560729EFCCA2 +:10D52000D44025BF57A645BDDD48FFEE500CA84EA0 +:10D530007377E1F371B194C5B1B10CECFED82A2E2A +:10D54000D7A6F0833C5E0BC66492632F5DDBEE1EB4 +:10D55000DF9CBF9BC66198D54371824CBE0EF3F829 +:10D56000F643DB5A458A2B248C8B307F6CCFF2D567 +:10D570004409F76A29FBBEF2B65870511ABD60C45F +:10D58000C4D6DFEEE176D4E97FDCD3358BE669CF14 +:10D59000D74A5AD0FFFC7E789787707F7C9A266E98 +:10D5A00047DCAF0CFFD7A7B4B189F1C7EDF14B470A +:10D5B000EB790B93E4F8503DAF0B1C1FC5F3B0564D +:10D5C0006D9187F0DC1656052987F0F22D95F24013 +:10D5D000A75FC25E9B0FD527EDCBCC509CD919CC51 +:10D5E0007419CE3297645A14A79D9E677E857095F4 +:10D5F000A948EF92DDCD0CE932E1EA8F951AF75791 +:10D600002A4E3694E6DDAFD0FB59D2BD5FEF463EE1 +:10D610004EA1B9F7E1A76CB19AC527703BC0C11CF8 +:10D62000A28F7E08DBBE90C4E28F531079A29BD6F6 +:10D630006BF954AB94ECDDC53164E79803407BBCD7 +:10D64000CC36D57FCEF814A3237C165401E5F78899 +:10D650003F3B24637B0B64EA94577D4E8A1491DD33 +:10D66000FEB3D8A1D1F35C7D3E5BDF2FF44D1D14DA +:10D670009EB485BED14AFEBDC39029FA8037CAC583 +:10D680008A681A3C3E5B1F60E3322B8D0BC4F78522 +:10D690007A8EBF071C3B87F1B417FDC64E2222B21B +:10D6A00055FE82E2A477ED755EB0EDE7EDC1AFFE09 +:10D6B00092F8186CA8B3292E5A8171511467BE0EC6 +:10D6C000BAAB48CF77EA1285A8FDDAABAAE0BFFD76 +:10D6D000F2BDF14C5E4E1C255E9D9888AB0C80A37C +:10D6E00014C74C79BF372E637E665A8FBB3DFDB29F +:10D6F000BB3D033CAE7699E26ECF52DDED3941770A +:10D70000BB5273B7A185C7658A9DEF42729C25F114 +:10D71000676F9C0869F2D925E7593E981A9F3972BC +:10D72000EF4F4F46E57CA61F47CE0F0891AE19E498 +:10D73000D7868AFA4184E6CF265D9761268DFBABBA +:10D74000ED877AED7F4864F17A7B68D1204843DF2A +:10D75000792A97A7403CC93E2AB29D5FCAE3C78F8A +:10D7600047BE5A69C152F23C5CFFCAE5DBD8B899A2 +:10D77000FB36B12D52754662F33979F96C6058EA7F +:10D78000CDC75E5ECFEB0B551D66CB06564F934063 +:10D79000A33C24E88378529EEEA72C54A23CECE5EF +:10D7A0005919D8AF330BF36DA453A6F27E8E5C9556 +:10D7B000F073F11948F76733941E61128DF326BE9A +:10D7C00053DC4F7958363DDDEF9D3CBA3F79A4E6F6 +:10D7D0006937AEB6FDF7449848FABE04535F990125 +:10D7E00089BCDC19E7E4E514B7947B12F9D3CDAB1F +:10D7F000736C7F1BB5C8BEFA354D6F8301FDDCCD60 +:10D80000ABD3F8B95555E6D8D5486767B020407412 +:10D81000660AD023A94427D34B74421E2EE7F6494B +:10D820004A14538A44FE18C5785F63EC3C9F3981E3 +:10D83000AD93FD3C33D79C44F3B4DAFA59FE250F7F +:10D84000AB8BE388C1545F6BCDB6DEA7BA2258AF6D +:10D85000AC3F39C9EEC78A9DDF584F7566A73D7347 +:10D86000F5BF7F60517B88D52460FF8C86291B72B1 +:10D87000D17EB5528D147FBFD4B0E2307D77E25CAB +:10D88000A941E3F5474DB47CD9893817F9ABA4F524 +:10D89000BCAC1D3B3503BB984B6E3E4372EE3C74F3 +:10D8A00074C50D94B734A31247E0FEFE9ACCEBF892 +:10D8B00085BCDED459FC0890DD439EBB47D1FCD526 +:10D8C0005D1E92CFB87C8CB86EA5FA21E7AF360FFB +:10D8D000A25A3EB01A07CB8B4260E7BD0D569CE9B9 +:10D8E000458EA4E47576BD015E2F4CAE33A5E4856C +:10D8F000A979A0AF70C82CB287C11B25F0A1DC109C +:10D900000CCC1E3879600022C6765A3FE68194D747 +:10D91000F90A6597BDF02FB9DB5843FC62DEE70BCF +:10D92000A29DDE1D8389E437A83E82FD6B1ADCF6DA +:10D93000C51FE6796019E681529A3CF0F43C630316 +:10D94000E1668CA76B05F1DD09A24E7EA8F3C091BC +:10D95000932524B7C77BF1C1E434E69C6ACB4564C8 +:10D96000F5858936DF9D0B23651BB1BF61D7173A5B +:10D970008B7CAC7FE70535EAE7FBFEE8066C4F09D8 +:10D98000DAF5050C1729FF301CB9A1DFA5FADB5425 +:10D99000CCE7A9BEB02064EBE1435E278A7B41A0BF +:10D9A000BCDFA90FDC86F0263FB7C9C68B00218BF0 +:10D9B000E69BD00D6CFF8C191ADD4DEB3F2A7B7472 +:10D9C0006E867BF3A82FAD4E832F5FAD398BC50DCF +:10D9D0002B90E71C86B74718FE156936E5096DA13F +:10D9E000825CDA677E0CFB68DCC67AF3AB2437A472 +:10D9F000F36E723ED68CE911AFF79B1B8C42B2CB13 +:10DA00001CE77F3AFB85F5745EA541D72CE2EBA4B9 +:10DA100086EBC4797CC51B3BA83ED1592AB13CECAE +:10DA200052F8F8177564E9F625CFFC14C30A581E9E +:10DA30007DD09383ED9ADC9C1D143E942992ABFE1D +:10DA4000B5EE69BFCBEEADDD7B9DEBFBA736DDE828 +:10DA5000FABEB47AA4ABDDF4F8275DED59EA78D7C5 +:10DA6000F839C129AEEF955A99ABBDB8629EAB7F2C +:10DA700075DE07F2608DC9EF2724BFB9070426BF02 +:10DA800099B71C6F19A6F13891E2E0F6AC5890CE28 +:10DA9000179DB8D089FFDAF3CD09DB7312F6ED3F9D +:10DAA000564BAEF831D51EFE7235F7374B0B62661A +:10DAB000BAF8BAD74E46046BCC589EBFD7A7CDDF75 +:10DAC000EB5F73DBD5B887FA2D9DB4FEC410D2434B +:10DAD000D342165736E13B8A2BCB1B16D23687D959 +:10DAE000E5EB290C830553B7C9662081333FC58F09 +:10DAF000D92C7EEC663829C5F891E18DC78F9DE160 +:10DB0000C503FA9973987750FDF41DCC3BE879066C +:10DB1000F30EAA6BFF16F38E38CB3774D63E81799D +:10DB2000073D5FC2BC83DE9FC6BC839E7F590D4C00 +:10DB30006EFFEC7956222FC34A585DC07B1DE277F9 +:10DB40006EE819E320D503E95C4865FC4303F19FC7 +:10DB500027DBFB84F3DF2BA7947DF8C74A436EC015 +:10DB6000752F9321EE29B9F67E429C05A87F1BF9FB +:10DB70000548F8859D9B5F7D7B582EE53101E617B2 +:10DB80004E0DF5F27CC5B6631979DA7E8ABF677CE3 +:10DB90006D2F901FF4827696EA59131B789CE46DE2 +:10DBA000ED60F6A8F60599C52116D8F6481758DC99 +:10DBB000FEAFEE17AAC82FE4F6EF17BCF0F62CCA9A +:10DBC0001F832341F7DD9ACE2F54D732BDD9FAAA4D +:10DBD0006D00A78EC4EBA779BC7EEAD536303950EC +:10DBE000BD3E9BEAE56032B9C92837B64EE8539F7F +:10DBF0006775D55B6D553872F1B11EAEFE6C1DB701 +:10DC00002EA9B0EA70BE13741E3489F4556E6DA34C +:10DC10007812E5E0233FF29EECAAA3B26357FC3EE4 +:10DC2000CF5E5F556B84C9650ACA85F42807DD722B +:10DC30009BB73BC2FCE364A44F729AFC07F7775F83 +:10DC40004A5DBFB6C1AE77DAF1DE184F7C25C9E375 +:10DC500094ED374F1D385335FE6FF09BA71646A441 +:10DC6000CF25F9CD53B770BF792AE137676C1CD047 +:10DC70006F9A6EBF19E438F57FC8E39FFEFC661FFC +:10DC80007F59146DA57DE0F8CB630D765D2037CA12 +:10DC9000EE71AC14454677E55860E73BC794EFB2A8 +:10DCA0007DAE087C9F3BFB1BF7FB179271B352E6DE +:10DCB000F621C9FF6E6F481FDFEDA071C7B442B6F1 +:10DCC0007F9DB8B56DF333AE7DDC7993B38FCFEC28 +:10DCD0001078BC5CD2564CF5DD2577D17AFC45A393 +:10DCE0004B24948BDCE0AEBBE1BA985D49D877BE9B +:10DCF0003EB981DB492A107D8872CDB0557672F32A +:10DD0000336F24CFDB5E3C51998BF838DA30FF302B +:10DD1000D54452EDD0CADBBAF2A88E7D2A4757E629 +:10DD2000A23C8EBEB7E0B07C53DF7EF77C3ECAEAF1 +:10DD3000DD6D43759BDEA2C37246DF7EADDAE99FDF +:10DD400092BC17E4834E7540869CA473D9B91063C6 +:10DD500075E52AE866CFEFCD330F91FC32ABB70102 +:10DD6000F3B39B2F05FAF14787D3D9E3A5F3AA8F25 +:10DD700034F03C84D53FAE6577F127E41FE2CA1743 +:10DD80007E44F25D2E1A43F6D3F982F69F5944F78A +:10DD90009A74821C5F5063B2F32B1045BD0DF97E5F +:10DDA000B4C27C89E821D0357508E195E35D089E11 +:10DDB000F848C075BF2E425CA2FC25DBCBEADEA989 +:10DDC0007EED9ECACA539C1FD54BFCD7854EBC41E5 +:10DDD000E3EA94009343FFE7FFD5C2557C16765FD4 +:10DDE00050284FD80DD04376ACB9E4346B5F04A50E +:10DDF00087CE959AB3FF02E9FCAA725972D513A98E +:10DE00005411B3FD0ED5DF738811FABD725522BED1 +:10DE1000FC02FF96B386E3356792C8EAFB3908C86F +:10DE2000B3497687B13FC4C6673E3B8F4AD4D7B16A +:10DE30009D31D55A4FFC4161EFB85788AFFEFCFECB +:10DE40003FFAD94AF5F851037CF75A4D84FB42B0AA +:10DE500082540F68D7470F6E4BD29BC3FFEEA5CEFF +:10DE60007D028C32F1B93B5C32607D22A363E0BA63 +:10DE700077860866BAB871C81A7E0EDE9CDD668D9C +:10DE800044BC55A09E293F1A5EA5B1F74A298FEBE5 +:10DE9000152DC2E2BADFDB75EE73769D9BE225831A +:10DEA000DD33B0D8BA4777DDC7EA7E972CF47B64C0 +:10DEB000FF67F2BA9EB5DDA736E752BDEE0BECFB6D +:10DEC0001659517DAC02179948B86FDFCACFC9B156 +:10DED0003D8EB53D560DC9C9072B0725DF630BAF36 +:10DEE000E1F54BBFFA4DBB2EE6657137A5F5BCCE0B +:10DEF00094A732BF64B7FD5ED5DA8CF3EEC917592B +:10DF0000BE0F2A9AFB09DC0FD0CF9EA22B6FACA6C6 +:10DF100075DEE4657E4A02F93CF9B956C22EF6D7A1 +:10DF200002265834DE9079BC2373BFD296358CB567 +:10DF30005BA79630FD686028B4BFD49C45836080A1 +:10DF40003873DF567E2FA305E548CFD4EF05F717CA +:10DF5000B655E07C0FA9225BA3073722E94DBA7FB3 +:10DF6000139B77C7D482FDE4CF764C153344C4C3EA +:10DF70003A1B2F2D556245BA7B60CE770D2CB6BE6D +:10DF80000E6DE0F5EDB4D7E7B4BD799641F6EB211F +:10DF90000D2AC92E3D640C16981CA13A48F76B2A2D +:10DFA0006DFCECC8E279892FCFB4C81FED993661BA +:10DFB00002AD5F099A701EDF2B7911F80DD9FB694C +:10DFC000DC6FEDF0E88CDE8EF905A29554FF5C6FF6 +:10DFD000AF77477EFAFB6FB56B4487DF4A76DE6723 +:10DFE00088302A8DDD9B6FF753B3F42676DE79BD3A +:10DFF000976A1FB0E3FA0921C2F18EE1DCFE2E3FE1 +:10E00000FFF8E16D61C2EDA7E11DC26D2ED7F343AC +:10E01000ADBC3E2D4F13A3421AFA0E5EBF68EBD182 +:10E02000AF54778D24BF7B468266A0FAF7DBF128D8 +:10E03000C30D8FCF52C707C229F7375499C5017B4B +:10E0400020A6AAB8BEECD24CD77767DC9906F3FEBF +:10E05000352EFF6D01BFAFC2F5EBC91FB88E99BA5F +:10E06000EE76013DCB607CE6F0FDD69C9DC9CE8767 +:10E07000F7E40FDE977C7EF7BC2DCF6BD14FE5AB7D +:10E080003F3EBE4375414FA23DCEF60FA9F4C6AC4C +:10E09000E5F3EED9BCED8D61A58938A49570C4E295 +:10E0A0008D9EE0A2A471311B8F7B048EC73D88CB6F +:10E0B000C369E89EB471D6DFBCEB6C7E13381539AA +:10E0C0007EF2396E1ACF3DDD5BAF237965A0CDA01E +:10E0D0003AC6B90AF3476B705C4629F75F1985BAEF +:10E0E00064BAE42AB273F77FA21CD9FAC69C3FBD7A +:10E0F00081D7596240E74BAD618C6FD9BC87599C81 +:10E100007F0971C9EE9D77745B1F9532FF1C794CB6 +:10E11000E7F4AF24C57F195FD903765EA3D3DDD6BC +:10E120006BADCB073B387DFB7E477FFC29855E5777 +:10E13000FDE46FAD375F58E3CE3FF227C9EC3E52A6 +:10E14000EB1989DDABE98F8E536F869103DBC1DD5F +:10E150002976B08F7EB27B440C4E20EBFC5F0FB76C +:10E16000603E16B0EBBCD3D7166CA4FBBCA9F6443A +:10E17000831E25DD7DFAD4FDE899C6CFBD2F91EF32 +:10E18000CFF9DFE3C3C1C1BA356F311C8094C7EF4B +:10E19000135603C31F0594940F0996C8E23C964892 +:10E1A0000DB1535B1E8B19D4A6DA1BC59BA9F2BF18 +:10E1B00081760373A22A5BEFB0753CCFCC836E816E +:10E1C000E2F04F5082C74A79E6F73F427AC3D586DC +:10E1D000E2D548475BEBD6DBB5F4EEE82B959FEF35 +:10E1E0006C5504C2FD9EFB7A80EA5D83E2F7B3F3CF +:10E1F0005EE5851EA0BAFB20E8617131BC00EC1C15 +:10E2000068FA95E92F690C1F234B92F171708D3BD1 +:10E210003F3A64EBBD39B088ADEB90C6CF9DC641A7 +:10E22000D75CE2138E8862BA38FBE09A7CD7B9EAF1 +:10E23000D823A20BDFA9EBFFA160186BE97C88E271 +:10E24000725C779DEE65E7ACA9F17820D34A5BCF8D +:10E250003B29CCAC587B7D5F9C01DD4EA1BAFE54BE +:10E2600091E5D9FF28BCF9D76A8CBF6BEFFF1F5926 +:10E27000742FEA12D583F4449C964AEF5A711BC658 +:10E280008D2C4EB4B6CBD05CCAE24616476EB17C3C +:10E290002A9D27078A377D9DDA55184752BCFA39DF +:10E2A00029925586FCFE428C8C23FC39F364894705 +:10E2B00095F1C897D53869630BCEB79BB27A762FA4 +:10E2C000FD81EFC63196EB14E279D4DF3B1E36B305 +:10E2D000BFCF90E379C9F16667B16F653A7CEE6DA7 +:10E2E000E4FE61961460F2EBCCB3CF59C014A9FEE2 +:10E2F000E1BB4962F166E25E307A237C7686167372 +:10E300007957E13BCC67C7003F177F7913A86DECC5 +:10E310005CDC7DDE4DF166CF90843D7EDAD65F7F9A +:10E320007A6A3BF2229BA759FF6E80EE419CCC8B10 +:10E33000ED2E41FA275F93607B12EE4F66F1F8EA0B +:10E3400078F173F2F97082EE90465E679E1743E9AA +:10E35000D0BD5D7D8646FCCB943FA4C1E1EFD7F2F2 +:10E36000FD934D8527DA1F632596873AE7F7BEA20E +:10E370008DEC3CD6396F1FD7C8FBF7779EFB5463F3 +:10E3800096FB9C3DE55CBD6E4953958A327DD58EEA +:10E390000BBCBDE7EBF1596A98CED5CD0A76AE1E1F +:10E3A00096209E0FBDE7F44EBD3175BE7974BECE8A +:10E3B000EE19FCFF3C5F77E4E0C8D1A937ED0C0E05 +:10E3C000769D9B7B43BC4EB5AACA7C73ED2D9417FA +:10E3D000C8AC8EEF0D6A2C2F54423CDE7978599BE5 +:10E3E0009A6EBF1CA930BBD726D95945E3F74C4ECE +:10E3F0006EDEE7AA6BBD5CCCEFD3ACBC2D96971C50 +:10E40000D73938EBB4E3BACE7EE2BA521B5FBD76A1 +:10E410003120DAFE37B682F6D949E75EB06168EAA4 +:10E4200084443D056AD4389DCBC1866C9DEC96939F +:10E430000705E5EA41E9FE4E65E7317E2F0F82DEF2 +:10E4400084FD2BA07957A6EDDF3BCEA6DB6ADBDF90 +:10E45000667DF5C7B2BF8F5698998DC8972FE8B6DD +:10E46000BF195AA6CBCFBC4EFB268DFCEFA9ACCC76 +:10E47000A6F10188B07A675D08ED0DD5D3A6AA3B59 +:10E48000296E6A1680DFC7BD463DE8644E54A6FB80 +:10E490008965A16764B22FF38EA09DC872D9091651 +:10E4A000073D7A7EF346F273BB1F3FC6EC9BD52235 +:10E4B00044470954773AC9F480DBACC497D777BE98 +:10E4C0006F34F2F81DF65633B91066995D4CD1974A +:10E4D000A0DFC1E83E8E81863494F8338B883FD824 +:10E4E000C2ED69B30EDA63CC9E46D2DE7F1CE03EFD +:10E4F000C978A2F3EA5A60EB680B9DF6503E9BA8E0 +:10E500003F56B3F3AFB938B62D4D3D721EC49D3A98 +:10E51000E46D44E7763460C3107FAF6C3A08D713DC +:10E52000CEECFBAC4AA20E59D6487516BB0EA968B4 +:10E53000BC0E796CD9DD622BE1352431BF82A86134 +:10E54000763CFB1509A84EDD1F4E62549F415C7D51 +:10E55000DBAECF14CBAA44F96471DC7D6FF8C90A35 +:10E560007331CD3B56EE16E9FBB8E707BBBE2F9DD6 +:10E5700057BDB431A90EFA7F703F6DFA3BF7D31641 +:10E5800092DFDFBB9F1E1EE2C40798CD86290E31A5 +:10E59000C4BDB8FEEA715294EAC72FA31F63FCE81A +:10E5A000BE2813AE0CEC9EEAC9A21B587CE741754D +:10E5B0000F1A9C88537C9747BAEE29A53E7D9E088A +:10E5C000AB2FA4BEDFB2D61DBFFA2E8F66745EF6E7 +:10E5D000F0FD447B599A42FCF2765D9E8DFF14BD9E +:10E5E000D7292BF83D3FDC7F370C4DC3FF5ED5A20A +:10E5F0007B4D0E2E7CA0B7FAA4BEFBF399B9E613AF +:10E600001C7FF0B490545F6F4033C2EF65BBE3C52D +:10E61000CC4AE355F24BCEBE1D07FAA07BD2C4E92B +:10E62000BDFE4CD9182E4F92D3CE8C083B8727BC09 +:10E63000B3BF7774EE69CA3DE232C4FF37E9133BDA +:10E64000ACEB12683F0C8FDFCAF02A4DD50DBA47EC +:10E650003A7C930EC9E7E91366CD7C81D63F5CEE28 +:10E660001248DEC335BBFEFD951246C7E9F75CA331 +:10E67000FB3EA653474D5DEFAF29DF198571D0BD35 +:10E6800031A03A8D3FFE7D36BFFF5E81DD63F5929E +:10E690000286D229987D2F2D58CADA5A80D73FDBBF +:10E6A000AD91EC9CB73B2C6653DD70FA9541D99344 +:10E6B000E8BD9D0F39F74B53E775F2A16E8B9F9F15 +:10E6C0001F0A73BB7948EECA1C3C40FD2235FFF19E +:10E6D0006546BA29557CF7B79736D2DFC3FAECBF47 +:10E6E000873DDF1838427594390BCC7324AF7745DA +:10E6F00030D879C630607164DDAEFB8AE82AE6AFB7 +:10E700002A8CBC26FC1E74CE31FA39BF38D7C8F526 +:10E710003FBA2B8BE541972C7EBFB4DD6332BB6DD6 +:10E72000ADE038EE63AF408DD3DFFD64132ED564CA +:10E730007B6572BB17E4760F6A404BCEE3771EAB66 +:10E740006479272E2BC1EFC7B05BCD36FD5DB6DDFA +:10E75000DA4997CA733F96DDF237217F72C06DB7F1 +:10E76000943C771E86F20A50BF01EC97DAF40F88CA +:10E7700007709F9EB3F7A9254C48B34FF3DCF26AAC +:10E78000F7C0F30225C33355E60785F0898F84EC83 +:10E7900064BA26D0FE77FAFF0F214BDCF12041004E +:10E7A00000000000000000001F8B080000000000B7 +:10E7B000000B93E06360F8518FC0C5BCA87C42F8A1 +:10E7C0002689EAD1F1352606062666CACC0061758F +:10E7D00034779C62676050E06660B8C4C6C0600170 +:10E7E000C49C40BC8107212FC001A16D0410621B95 +:10E7F000F92877C7281EDA58429881415804C19FEA +:10E8000020822A2F298C604F96A0CCAE2540FD0097 +:10E81000AC9D562D800300000000000000000000A9 +:10E820001F8B080000000000000BDD7D09781CC56F +:10E830009968F54CCF4CCF214DEBF48C2EF7C89254 +:10E840003DB66518196144D60E2D218CCC3AD9817C +:10E8500098442426191B87858D1306E21087006AC9 +:10E8600059B72DDB63E3435CCE5860C721979225EF +:10E8700059B281ECD8F058278FE429AC4380384155 +:10E8800004C24B76937D0AC4B1790BF1FBFFBFAA9A +:10E89000A5EED648E648DE7EBBE628575775D55F1D +:10E8A0007FFDF5DFD5E32B9058ED5CC6CEE29F4BA4 +:10E8B00018D3B3B774B052C602CC95D80A6577D5D1 +:10E8C0003E83698CF533F87331637D5846E1BF4868 +:10E8D00031D56FF543E3858C19D2B25C0CFA2BBAB3 +:10E8E00032E156197387922C1562ECD0E73EF0E1C5 +:10E8F0001B9BA0FDA03771085E3BB6F7F0AE9550AC +:10E900007FF0F6DAA53EA8D717A65D2AD40F0FD55B +:10E910008E6C8931F67E26315686CFF51FC4E139DB +:10E92000DBED62F8DE83C3B56106E31DB943777D95 +:10E93000A081B1A5CC4BFD7A0FFEB1651CEA15E3B1 +:10E940003263258CD5E556B9B40298B73377FA65AA +:10E950000F63239DC7A99C2B275D7E1C6F0F6BC483 +:10E96000F1E62A295E1F16F590C6EB03508725CDE8 +:10E970005513BC3EC4DBBFDA3946E3C04A98B20C3B +:10E98000DAF1AFD06FFE1E984761F4E72CFCB72494 +:10E9900033E65A07F0CC1B386E7B7EDEC3F07E7CFC +:10E9A000AA3E97C97F1837EBB0EE17F02FB09EB98B +:10E9B000C37C1D8BCEC0FA2EC0F5F53DEF0338E6C3 +:10E9C0006698B62036B52E739DFFD5D677ECE7173F +:10E9D0005D310874F2200B277D580E5DF54B86FBE8 +:10E9E0007F1FCC065BEF4B7D79D74A7C3E00F40756 +:10E9F000F357DCB8696E0DD4BF90F5AA6E685FA0BE +:10EA0000A4020B4B715D9C2E1684983E0A74B14093 +:10EA10008612E0BA53D0CF3F6109747940941A331B +:10EA20009EC7F9BE783BD3B6C610AFD7FF6021CCE6 +:10EA30005B77C2CD1620BCB9D725C4A7790ECCB25E +:10EA400076D8CB72255375275DD5C9C9633E0BDED9 +:10EA5000EB9414AF0BBCD785345E1778AF5313BC5F +:10EA6000EEC0BB39FE347CDF0EF80E4DC7B7739F86 +:10EA7000DE2AFE35A607924B00DF99ABC2AC01F14E +:10EA8000B0B2753C347DDD4887B8EE23774C48C979 +:10EA9000D0D4BA4D3CFDD75D3FA78307900E244EDE +:10EAA00007F1D273D341C538D0C105FF9DE8E09D81 +:10EAB0009D07E4B3FF1DCE03F6473C38D76796BBEE +:10EAC0003AB55375F5C08F8C004379B8ED04CB226D +:10EAD000BDEC92B59FD602BCBB122E6668388CFE88 +:10EAE0002F9172C69AC5BC8D2C59324F9A1AA7B86D +:10EAF0000DC6B1C0693EDFD909B21604E0F64E85F5 +:10EB00004AF3F90E4F3682E7AD397EFD6A761ED4A0 +:10EB1000FF343E8EFC716BA357DB02E336265E3971 +:10EB2000C90A192BF4A9DDEBE1F9508B92DC92C0F4 +:10EB3000E7D77F12FB87367FA4E865CBFE0C7958B8 +:10EB400007F245260352A17FE206F520EEB7C45E28 +:10EB50007E5682750DD595C7705D15928BF0C1C636 +:10EB6000E55F8E03BC71F8E76C2DB24EA85BF0B682 +:10EB7000BD71A405E74D003C2C81708CFF3A6C817F +:10EB80004F5DCEDF9FDA1740DF32AE32207E2AE2C1 +:10EB9000FB5AEAA0FFFF9158426D467C59FAC3F830 +:10EBA000053559E93A806B50ACAB22671F2F5AF7F5 +:10EBB000C14F48B07EB6C1F21CE04C489CAE7F709D +:10EBC000B1574F225E722CEB8B4D5FCF90FCECB3B4 +:10EBD000486F89855ECD90A6AFCF09AF733D0535EF +:10EBE00019827F4062135BD4E9F047E3DE752E841F +:10EBF0002F671917E68D6A00F779D3E136E9F068D7 +:10EC0000A7CA743878DFE98C133DDC0D750DCAEFA7 +:10EC1000BCE9EE40F986A486FB77D7096D04F76B53 +:10EC200092EE243ED64D129773FFE8E1FD8CFFC1B2 +:10EC3000B287E0517F0DA7DFE175F30FBA6353741C +:10EC4000312C311AF796F7ED5E45ED6B5D128ACAED +:10EC5000A827F311ACEF5F3D9FF0339CDA7DB41E23 +:10EC6000EA17B628AFBA613F2E2E341EDF00E30F3D +:10EC700047DD0CF727BAB6D87D3D9EDFE6396A3806 +:10EC800002EDBECCBF213D0CBF0FE801F171A69C87 +:10EC900069C0371B577B5F44BC34A6389D461C7443 +:10ECA0003A3C239DEEF99984E3AD063A857ADA4140 +:10ECB000A73AFC83787C6CFDC8D10DA55374E9DCC0 +:10ECC000D749B856713A6D953D53EDF9E834B5EF33 +:10ECD00068FD2C74BA626EB60BF1B00FE954CD43E7 +:10ECE000A71DB3EFB759FEE05740AF887F07BD4E71 +:10ECF000AEEB4E639501F3EC3E2AB32D6F815E9D22 +:10ED0000EB8AAE7519BEF3F2C19F21F8F7B7283A26 +:10ED1000C23F8D5ED7E63F6726DC5B3BB3ECA57A4E +:10ED2000E45F11A2DB814E8DE83683F40BF59DD8AC +:10ED3000359A87AFBAD80D4877BB02EC866F42C9C7 +:10ED4000962FCDDBCF2C19EB22BADE8E74FD1E027E +:10ED50004347665B88B056503D17A883F9ADED5523 +:10ED600030BE345907C1C0983F3E550F42FFED7E7B +:10ED70005EFFB9146931964FD54F4BE116A36A7AFD +:10ED8000FB802763B88A18FB7AD74FF506BF6D7CE6 +:10ED90001DC7B7C2A7E4196F40D4835B0234DE906D +:10EDA00004AB9E274AC0FFB725A6B735D3B8547F1A +:10EDB00034F233E389A8759EDFE939381FFDAEB11F +:10EDC0004BDDD2CCF86A94F4EF4A842FA38301BCC4 +:10EDD000FF13C785F9FDCD1C5F47BB7EC5BAE5298A +:10EDE0007CFD44FA8381F0219A42C04F8AF1AF48FA +:10EDF00057CBB97DE78F6B2D68BFA978F4E07F2EE4 +:10EE00009DD74B7425ED837AF16AF915FB399AA2E7 +:10EE1000EF7CE315E27840EF4173BC86B7389E780B +:10EE20007F663AE1FD1AA5E4772528FBBD636E17DE +:10EE3000CCFB5D21175A9735FFAFE5304F68CC9377 +:10EE400040BB33141F233E5308B8403C313696BBB9 +:10EE500004EA99184B6F85FAA8A4F179E55C2409B6 +:10EE60007A50615305CB5ACEB739EE9F1B6F00FF26 +:10EE70001F70FFCC7D3ED77A82B81E003588EB2903 +:10EE8000B5AC4786F5A07CC7F5344EE1C9B98E0113 +:10EE9000FF6807EA1BADB5CD7F83EF07C7EA5D3E8C +:10EEA0009C433668BC8C4773E1FB0B5C5CBE987876 +:10EEB00009C60D1A1FCCFF34CEE7D7605CCB7ACCE5 +:10EEC000F100DF0CF95A286E10BEFD085F238D4F4C +:10EED000EF4FC337037C2F993EDE6B029E4D0086B9 +:10EEE00041FB65D8F6CB7CCF1CC75CEFB4719EFAB2 +:10EEF000178203C771374EEDBB134FCCA5D17A678C +:10EF0000C2DBB9E031DF7BA7F09C6B5D4E784ACE67 +:10EF10002C643AC8D9BDF800E8CFB54F21F8863A3D +:10EF200040AEC0D843C72F237BEF2E57EEF8727840 +:10EF30006E3CED61A87FDF857C18E5EE9AA5F45E56 +:10EF40007D612E7255C3CC7C783FE8AD061CA0DDF8 +:10EF500050661710FF223D6277FB2D5D68B7EF63A7 +:10EF6000EAEF514F30F5CEE2559BF8733DC29FFB5F +:10EF7000F9F3BB566FB1F72FE0E394BCAFC7D6DF10 +:10EF80009C3FB216F46D0BDECCE7E55E6D5D320F93 +:10EF9000BC9F77B908DEC7847C1A46F904657920DE +:10EFA000B50EF1525C13D046802EF75D736BC57AB7 +:10EFB00078FFD8FDB73E8F7CA964585B8AE76997D4 +:10EFC0008BFB1146859C33C72DC981A609703EE68F +:10EFD00061DD61D8AF9B5C4C4F2B887FE31A3CEC22 +:10EFE000776EB948F2C17BD1D5BCFED5C025D23FE2 +:10EFF000539D11BFBD6BCBFB5B90FFF6FFE85FBA83 +:10F0000069DF4F81B682F2581E73A7511EAE29CE1A +:10F010002B0FBF784AE9C8029C2BEEEB1BFB00CA02 +:10F020006596B5D1E77BFF60A787C7843C1EC6F510 +:10F0300043F9514007F677F2AB150AE74B2B804FA7 +:10F040007503BC25AB79FDBDC0A710FFC5C3763ED7 +:10F0500005705F6A85FBCF056F2332C9B2A9F180C5 +:10F06000EFED7395213C636E9CEFBD803377D174D7 +:10F07000F88BF7780DF77954BEE82E9C0E6F9F58E9 +:10F08000378C97CD37DE5F6A3D30EEE3C41FDEE597 +:10F09000B8258E712FBDED06178E3B72BB8BF4C564 +:10F0A000035EED070BF03C3FE3267F582D9BF023DA +:10F0B000BF70CE539D5968B3DB9D65EBADF100FA8F +:10F0C00081466EE77EA103B72DAA4859FC4223E290 +:10F0D0003C8F88F3FBB49007632E0F952744FD40C7 +:10F0E00021D7EFA6F38F2D82FE3254369C09913F33 +:10F0F00065AAEE75D4B99F61AA5E4875A395493299 +:10F10000DA37152CD10DE7B4A82DCD52008FAF8A78 +:10F1100019EEF3D1EFCC88EF0DC658B601F02303FA +:10F1200059294D581FFB2AD63DD0A65AEA5EB05940 +:10F1300022A55375188769967613FEC1582612B218 +:10F14000F099DEFA7D64470634EE9755727777A022 +:10F150005DACECF12650D5533483A5406F08C80947 +:10F16000E6427F6588C5707F028ACE5C682FA95011 +:10F1700007F803A124AF978A7635C5FB47787DF061 +:10F18000CD4F53DDA8E6FD1FAFBF9EF67F50AB1DF0 +:10F19000C1FD1FD496865DB0E63F097ED52FA59EA2 +:10F1A000433A8F3343413A807E73905F3D3779FE17 +:10F1B000E5FF8BE7C38DF484FF6321F595C582BE1F +:10F1C000DCA8D7E74EBF5C8FFAFC712A87843FC664 +:10F1D00068CDE6C8AE2CE47807B934E57FA1718E1E +:10F1E0004FF95BA83E66AB075543473B4E2E65097A +:10F1F00037BC1F6ACB30DC475F84D771FF7CE1A945 +:10F20000FDDBEFD8BFFD8EFDDBEFD8BFFD8EFDDB54 +:10F21000EFD8BFFDB174D4B67FD7DEFA9C7DFF3E38 +:10F22000F7DCC7FF02FBB7DFB17FCE73F12399EFA5 +:10F23000DBA1EAF5B4AFC635AEEC2180E7F1BD7DC8 +:10F24000541F58CBCFF9B1BDB7BA54A8EFADE3F511 +:10F25000EBE479B49F031D5B8EA39DFADA710FD99D +:10F260007FB52CB90AFD533B9EFA38DB9A67BE87FF +:10F27000D0EFB400F7396EF33B3DBE707E78DC8290 +:10F280009F6D68A7417D9BD00F5ACF1B56B07DB0B4 +:10F2900099F3872237877B08C6433FC5D64E0510B2 +:10F2A000C9D81EA8A7A0BC1FEA29787EA453A5F23E +:10F2B000BB2087B07C00DA7350EE4DB8DA91EF7D59 +:10F2C00005FAE5A0FF3F75824A05F476B053790D43 +:10F2D0005D003B3A55AA0F7446A8FEB54E8DCA2F65 +:10F2E00074C6A9BCB73341ED99CE662A2F765DB5B9 +:10F2F000D60DF8D8BBC645F453B1373E82FE8EB268 +:10F3000085AE24CE5376B5CC90FECCE7E63A2F7688 +:10F31000B5AEC3F70E24E4F62CD0DE81CD2E9DE5EC +:10F32000EF77BD1BD65BB3504E62BF9ACFC9BA54BC +:10F330009AB7DF2770BC2F35B968BC2F3DE832661D +:10F34000182F8DFD162E71D1780B0FC9C60CE37DD9 +:10F3500006FB3DDA2413BE1E9D70E558FE7EB761A4 +:10F36000BFE54B645AEFF2DFCBB919D6DB89FD1646 +:10F370001573BD09A8E1289EAF396BD5E2AD505B8E +:10F3800054A2DDCC9F8F497ED48756F3E78BB17FA3 +:10F3900088E4AF2B08FD4B93E239F6A7E7A397E289 +:10F3A000F3B235621CA1978D5CCBCF7379873AA2FB +:10F3B00000C964B14EF36907B1BEC8C7E7AB7D7F32 +:10F3C0004292805F95AF4E4912FABBA0EE82F3B72E +:10F3D000D89B3E8A7CA2F8A3CC3502F43C72952ED1 +:10F3E00049F0BC3C09FDE0BD2CD45DF0DE625F5A03 +:10F3F000F260BF8F413F94831F4A52BF21A1FF6833 +:10F400001F4AB520EF28EBD02445437AE5FAE09C6B +:10F41000356909F967395B77340CBCE672103BA893 +:10F42000AA0DDDCCC85EFEA2FB59B2D7CB7B78DD3E +:10F43000D3B3E89801BAC3A28A1CAD8B05987608AD +:10F44000F4C04595E3C3D7211FF8B297FCD88B2BA6 +:10F45000C6B3DD587F28407EEEC595E3471EC0FE4B +:10F460005FF752BDF0AF1E5D8471B4D79EBA744E83 +:10F470002A8FFEBAF808289656BF63C26E37CC7939 +:10F4800034DD15447D0DE1C5F508781F73BF44F0E8 +:10F49000CEB99DD7FFADBBFC985107F0D56409EFFD +:10F4A00093F0CE1D7DEEFA520BBC35A32FF6955A84 +:10F4B000E09D3BFA9BC34D53F056DE24E095F539B1 +:10F4C000EA5B803718B7C3FBDF95BFFBB4346B69C9 +:10F4D000403EEF26FDFE473DC35D06D617325982FA +:10F4E000F5EE17FAD26B72D6207DD0AFD51A16FB87 +:10F4F000F049C14717D5B014EA4D8B74AF5172DE95 +:10F50000CC7ADAA2B92C8DFD16D7645D3D0857ABD5 +:10F5100072F321C0E1623D609414CEFCDE627CAFE8 +:10F5200001FB855EB48EFF4314BE179E7BFF061B56 +:10F53000F97A06C57A420A1B508B2D76AE9BEB7F7B +:10F540008B2A601D0D781E8CC87ADB7930B42D961D +:10F55000F3306ACE5B69C4472CE74299C7E96C0077 +:10F56000F1773EF9A9C82E04FCE96F097FE9B78E4F +:10F57000BF7E2BFED26F117FE97786BF7D623DFB98 +:10F580000A26E981F4A973AEA7CD3B2B5C96F5B4AE +:10F59000F6945AD6D31698150F93EB6983F514BEDB +:10F5A000FDF5EC6DE4EBD92BF627249F8B1E269EF0 +:10F5B000B5F3C789F1EEBCF430F16B2B9F0C5FC241 +:10F5C000E96187986F87C05F2804F32D9D6DBE4C5D +:10F5D000879DFE32A9FCF497B9C14A7FFE057CBE27 +:10F5E00005DA472A6AA0FF5ECDCB30EE30007B32D1 +:10F5F00086BC4BD6489F3E1AEB23FADE5115207F7E +:10F60000E2B1D8B239683FED58B394F254402F3A82 +:10F6100055678963825EFDC78D1ED467ECF13E6736 +:10F620003920F4AE01A17739DB27F5AE38D72F9C0E +:10F63000ED47853EC9E47414FD96C1383BD590C7AB +:10F640006F62C263C2F96EE1FA0799E37F287E2CEC +:10F65000D39A003CC8976F51305ED8F0F418D6BFEB +:10F66000C72EDFD216FBCF87EB604FD206D7978C21 +:10F67000E49636E93F1FAE87E50FDBE0DAC63E3C95 +:10F680002BBEF60BBFDB4CF431CE5245A8AFF6973C +:10F69000DBE9B6086D3398F75BB26AA39390D06B41 +:10F6A000B737D8E9EAF332F7A399E5EDB2C6FDBF63 +:10F6B00017CA5CFFB9D69BAD17705E057AD8886310 +:10F6C000DC9D8EBA697FA2397A761ED6EDF6A772D6 +:10F6D0002648F1C2D0193F9533E175A8D12BECFC37 +:10F6E000F923B864772847F678518356EBA6B81803 +:10F6F000F757F6361ED6F15C06447E10CA77D48BD7 +:10F70000591BCF3F08E6AE21BB3400754C659BC446 +:10F71000635C6DD1096F46E42A4B1EC480C4F98F27 +:10F72000A9C71469E507ADF19837651E9F0CB93973 +:10F730005F1EAACD448A2DFB3F784796A1BEDB5BB6 +:10F74000BF8FE0F20BB8FC0EB8020817FAD79D7015 +:10F75000D5CD0E97135F261ECCF842C199C54C2B10 +:10F7600041FC2EA47226FA1D1271BAED17723C6785 +:10F770005698781E7B16F3468ADA01CF9205CF178A +:10F78000BE42EB2994793E5621AEA7746A3DC5620C +:10F790003D85B81ECBB92A6A86F550DC7722729572 +:10F7A000C56FB553D0F7249E9797DBE2D78B3C9C6F +:10F7B0001E0BDC5C8E6DAF65512B9E7B5BBCA4FF8A +:10F7C00015B673FDEFCF0DD7CC78CE5209FA11855F +:10F7D00036434D8B986691A3C522EE1D46DC451934 +:10F7E000DB2DC66318CCB1F80797795C367FFFE450 +:10F7F000FEE15F914E928CFC0460BF7575A37D9510 +:10F80000F06A5B318E2B5FD685F2B3EC511FDB9A29 +:10F81000C0F8795BD7E3D07F97AE24B17E8DA75631 +:10F82000C0097BBA8C520D19C62199FBB71D7538DA +:10F83000CE876446FE1876B184783FB519733B10C5 +:10F84000BED2BCF1B772E66539459C675853E91AD8 +:10F850005E37D7CBB09DF3AD97F17CFBD835E16433 +:10F860009EBCA2B73CDE6A4BDD128F76C23B6D5C5C +:10F87000605795C56F7FFCEB3D05A5C49F2E6217B1 +:10F88000915F6B063C38F72976C64DFC4B3B235104 +:10F890003957F0B51AC1D7AACF94D0F9AB3A53442F +:10F8A00065E5994A7A5E71264A65F4CC3C2A23675D +:10F8B00062821F2EA63288E7164AAFA09FC0990B1E +:10F8C000A8EE3FD348E3987E1B16E1F4A49CF92BE5 +:10F8D0006AF79DB998DA19E37C72F7C55AED56EBD1 +:10F8E000F96D5C467E858236965800FB5F20CE4BD4 +:10F8F00081E3BC140A7E59E03C2F4DE679D1A2D6B3 +:10F90000F3B2DB798E9BEDFCF2B0C7C92F7311D433 +:10F910001377AF9ADF6858F85EEFAAF9749E0B92DE +:10F92000FC3CCF045FA938CF33C3376EE39B3B0465 +:10F93000DF34F135F3BE723C0D357E9BE8CCEBE550 +:10F94000F10375E9C6C803D05AB8F495F8E330FF5F +:10F95000799ED4573D744EC7130F009CF77EEA5F23 +:10F9600023299257FB248A377B799C6FC7D2DF26E5 +:10F970001E202A1B63781EE0BD873D16BFFF8E8FB9 +:10F9800007AE390CAD5A8FCBC63F6A6E0703DEA2B5 +:10F9900007546D2AB6D52B3656D8FA0719E74364B3 +:10F9A0004403DD4636D4DAFA071376FEE48F2FB52A +:10F9B000B59BFE779FF61E5BBF28D27709D2A7249E +:10F9C000E449904A932E8348E7D63C34214F4C3C7F +:10F9D00083064E726430C6E9D01D52A5F50DD3F1F1 +:10F9E000DDBBE456922B3EB1DF3EC77E2B821E7DEF +:10F9F000CEFDAE32F73B63E3DF834E7A74C8EF335C +:10FA000042AE04855CD9563BFAEC7A84B3DE418F72 +:10FA1000C2FF0FFF690BA499E12B38277CF9E5F8A9 +:10FA20005BA7C73E86E72523318AD76D5BD2974314 +:10FA300078BDB532D583E70FE58EA14FA555496353 +:10FA40005E3ED099CB0BF4B9EDBCAD39B47BFAD6A0 +:10FA500085E879A136C699A2A0131249C5482F7628 +:10FA6000FA0B26020EFAE0FCCE684DF0F8C0521EEA +:10FA70001F08948E623A190BC4795C2694E0F8DE74 +:10FA80001EE57E9F6003F7FB6C8F723F0EF423BF71 +:10FA90008F5937D709F548C8226F7B2F7C86F0EE47 +:10FAA0009FF4EB0C32CC5335FD397E39C7FD330959 +:10FAB000EE9FF12BA3DC7FD3C0FD39DBDF7C80FB25 +:10FAC000E317F2767788EF57A8416D44B9C7D4247D +:10FAD000ED973FAE36A2FF7CBE97D3C395017D99CB +:10FAE00017F3C84FF0B87ADF5A9645BB707BF4E93C +:10FAF000088E774AF3AA18E7DB5ECDD769FC5C2253 +:10FB0000F91CA94B49285FCB587A5D1720A4AF9305 +:10FB100091BF7B7FECD6F3D723FAE4F4451FB0EC1A +:10FB2000FF53C15408F7C7EB4D65BB609CCD277DE3 +:10FB3000892DD04DAAD8BC609CFCB255EA2B4181DE +:10FB40007FF7141D2B752C8B74ECCFADA2F5F8ABA1 +:10FB50005802F546A00CF2677BEB98FA10B6D7F185 +:10FB6000FED0361284BA574EE8841F8DE347C6761E +:10FB7000A4D72AF501CC37F12A1C1F2CC2E8FE8637 +:10FB800047BCEF8DF076F4A5529E81F0E7A17F0E81 +:10FB9000F775C8E2BF532D75F813477FEE4E2990D5 +:10FBA000C0733F14CBD9E26A433189EB436F3C1EEB +:10FBB0005963C1CBD09BAF4530AF6FE1FD8BBBDB51 +:10FBC000A248F7F3C3C4573DB9889A471FEBEB3CF3 +:10FBD00052247B663E3F7D263F12FA9D693F001E00 +:10FBE00035D4339D78EC6DDC3789C7057F413C6E99 +:10FBF000433C4A5378DC867893A6F068D6CD756C82 +:10FC00008B8DDAF0B70DF18774F2C6DF47D658F85E +:10FC1000DEB6254F46309EBB0DF108E77D571FE04D +:10FC2000B102F4147954994D1FF36D766B2F5BEC90 +:10FC3000309F923E5E0B70864FB829FF399CF97D4C +:10FC4000CE8DEB023C1D227A4B33EBBC6E602AA8B2 +:10FC50004F2D8012F52D8F1AB0E95BBECD5E1A3F95 +:10FC6000F3E6751A062555572A82E59581D43E3C60 +:10FC700007A110E723FE505697887E522EC4EBCE84 +:10FC8000E31ECAC7FE8447BF1BCFE52DB18976C4EA +:10FC9000DF2D2B5C0CF356776AAE76DA5F96767DB5 +:10FCA000B314FB971DDC6AC1DBB038D7FFECD10F72 +:10FCB000E23CB7F89DEFB3F67CF654D6CBF5950C45 +:10FCC000E6E5427BA6E57A3AA7FDD5F1A5C83FD483 +:10FCD000D61B86D761BDA66129AA8BDFF09AFE18D4 +:10FCE00090F34B88FF7EC36B91F3BEAA718A5F7F4E +:10FCF000C7AB113C5E399D63E4074FD0FDA99D2B36 +:10FD0000389DCFB43FDECD5F29924B880F109F45C1 +:10FD1000BAC175EC2CE37464FAD7779671BA417E58 +:10FD2000A15AEAE6383BCB26EC7C76C51FCFC167EB +:10FD3000D39CAF56717AF73BFCE63BDFBC80EA46CA +:10FD400001E7B34EB81F167874F2335517E72A0E41 +:10FD5000FC0CE5422EDA2297921F5FF0B32C9D43F4 +:10FD60005F1CF899901B745FAD0ECE618CE4701728 +:10FD7000C151C7E72D12ED8AC6CF994FD1BA703C59 +:10FD8000935E8B45BB794ECD733DB890E30FCF2585 +:10FD9000E50F2CE4F842FCAA96BAC9CFFA919FC5A8 +:10FDA000F079C686C7C1497E76978D9F0DBEF969E9 +:10FDB0003A870BEFDBDCDD7631E917B4CF839E4C5D +:10FDC0005E7EB6F51CFC6CEB243F4B933EA1EA191A +:10FDD000CECF1A809F49E8E7003C36911F89F3B3E4 +:10FDE000FA6F933FDDDF00FC4CC863CAFFD3381EB7 +:10FDF000FD323B6AE567450D9C9F05E2024F88474F +:10FE00008E67E267C5A2DD5F67E767034B381E7147 +:10FE10009F108F034B38DE10CFAAA53EA9FF2C31CF +:10FE20006CFC6C60929F75DBF8D9406C1FF1B301DC +:10FE3000C423CA857EC0E37B909F196F8B9FF56BAF +:10FE40005791BF16F81A43BCFB32922EF806F131D7 +:10FE500015F917C03E1FF9570CEF73044C7BD6C63B +:10FE6000BF805F35F8ACFC4A017E057FB9DCC7CFA7 +:10FE7000B5F9DC539AA573DD5F2DEC7E8DE32DB2D1 +:10FE800036F100B7C738DECAD7F0FAE53E7ECFB10B +:10FE90003FC65AB793BEECCA76219DD5DF1AC1384A +:10FEA000FFFE9FB8299783548972C63E2BFE0EED44 +:10FEB000E75BF377FA3B79DC7D46BCFCE9D3E3C82A +:10FEC000C7D82F7C742EA49ACD2984EBB3BF943469 +:10FED0009F657F9E0AB65EEEBB70BA5ED72FE49632 +:10FEE000A9D7F50B3965EA75FD0EB9D51F4BDBF3C4 +:10FEF00069AA6F7D577A5DBF43AF33E5443FF27D1A +:10FF00008B3E79BE8FF39D3FC97ACA477223DD8E3F +:10FF1000FD6EA906BE1F437A7011DF37E586F3FD3B +:10FF20008FF9B8DC785AD66FA0F7FDCEF799903BE1 +:10FF30001C2F619DDF63400A762F03FD5034FDAD19 +:10FF400080437BAA239C2F5FCB2C99909F267FC454 +:10FF5000002EA7BFB354D71E99FDFD7E915F31D807 +:10FF6000A9D2FE6B1B3E3C6BFF6D824E7CEC23D412 +:10FF70002F98C8E8295A4F0FE13B58C5966EE5E027 +:10FF8000E80CE8CD2FD6E3AF1A35864AE9E9C4A5D7 +:10FF900098FFCC867E8F7979FE06877FC5BD369C1B +:10FFA000CAC3DFCC72F3C9DF943C618D9BF90A4A66 +:10FFB000493E08FFCB29F628CBA19DC24673389F46 +:10FFC0001FE6B3E6DB9AE5E9CE5F973C812931C7AE +:10FFD0003B66F537F9C08EC5BC3373BDAE2A83A12D +:10FFE000BDA9C4D3640481FE97F3174E5FC776841E +:10FFF00081EE1F3C7F692E74EE7DDC29F4FEED62FC +:020000023000CC +:100000003F66EA3739AE71A21BC7F5B1EF129F3ECA +:1000100005948F7EAD708849A89782CD46795305A7 +:10002000A54966D50F9C709AEB9A693E39F4F6FAA9 +:100030007B4BBD36FEE794DFDA68E45937C2ABF29A +:10004000FB95B29CFEC278299AB920989BA8FEC560 +:10005000713CB7864F3D84FA412BB463E955D4EE29 +:10006000C4149FEA453C41F9828F8C27B63F58481B +:100070007C72F3C902CA673EEDCA28DBA0C91D5EC7 +:100080004DFE15B7BB318D792897BC718962B5F7E4 +:10009000FFD5C7F5AFFE10CF37EA97D30ACA2A8D2E +:1000A000E9242706559ECF34D37A952A970D3FDE53 +:1000B000D2C0ACEBEF11F67B8F3FD161CD4B7ED33D +:1000C000E727BEF182804763138F9F85F5F4845C38 +:1000D00064470E84762B787FDE00BDBA1EC61A00F8 +:1000E0003956FC6784EB9237FE86FC56DD2ABFC783 +:1000F000E82B683572B80F124BD7A3DF58957F6B8A +:10010000BDFFE3F330CA3FF315D5660D0BFFFB735C +:10011000E38BA5B8FE2433AE3FB9FDA97205EDEC23 +:10012000E62B748C67BF8AE7BB0CF5D814E37CC858 +:10013000107A23E73F34149C8396333C1E1548F015 +:10014000F515B0714A720CE30AE7E195084DE282B9 +:100150003221F138D4728A3B95FA4DBEFA6EC75BF4 +:100160004BE349FA2E7636F816C693C7C9EFFE67F9 +:100170001BEF1CF0F9D97D341E66C79D2D4179A077 +:10018000E061877FFD74AE4E35707F4637C8097CCD +:10019000DEDF19A192C9DFD251AE8630BE90C068B1 +:1001A000DD37C9CFA37ECFC7F0BE9FE9DF37E37944 +:1001B000A05FBEE83A0FE5869DAF2855B3F38DDE0C +:1001C000B2F979F3A0A6E4A0CC6216393853BFBFC8 +:1001D00074D90DFC2966D1C3E5101C1665E675B906 +:1001E00093294CCA6418B0B1F255D9C5F314BA4377 +:1001F000EB9514E9B767CFA27E60EA72EE50B23990 +:100200001F3E6EC720B1C57EF4A87D37E33D3D4F4C +:1002100064836EBD7F7827FEBD0C9F6FD4C767C116 +:10022000BB5B4E76AC433ED0C4EDA15DC18FB2172F +:100230001B90DF7E94F6B9AFAC3C46F712CDFC6D57 +:100240002544F7AC4D3A3C5AF6C108FAA57AA31FEB +:100250008CA0BCECF52423C8F78E977D5BC771FB9F +:10026000DE08331FD04D5FA496EC9BBE37E6CD4928 +:10027000E7595710BFE7A1A076C3C4BD462F26316A +:100280004FC2095AE0400CF58FE36EFA2EC4AEE07F +:10029000F774F43B7835398DE37B4349BA37DDDEBB +:1002A00034AAA3FDED4D855278CFCA398E390FFCA3 +:1002B00091D01F8136D8E4B9926CED79E170D6BD4A +:1002C000752E3A3F605366BBF3F4F728854610CE8F +:1002D0008367EAB98AF3D63DB584E42CF647FFAAD2 +:1002E00004271DCFCF14BD676DFBCC54D7D4B8B550 +:1002F000781A8C61D4037C4C496F4D4CC7679F576B +:10030000C48164BD03E1EB918A976E6D9A450F88B5 +:100310000C90BE3653BB4FF5E690CEE4B6B481F8F0 +:1003200005781297138B181AC37BAE3ED4F70AB127 +:100330009FFCAF563AFC91628F9F75876A67F5679D +:10034000F4C2F962B3E8471E6F22C5F34DD3747F40 +:100350005D66E7D1BAE4AA279F8D011C2F285CBEF9 +:10036000CAA5FC5E8853AEFD875F7F01E58B27C081 +:10037000C7718E1F0AB4BE84ED6045FE0ACB81D8DA +:100380003221771C7E8A4D09CEF4985E289573BA87 +:10039000E57FB239D4933DA9908EFBE2691A61A83A +:1003A0000FA9156ECE2FE3FC9EAD79BFD7ADFFFA36 +:1003B00024DE87AEBCC17E7FD8AD07888F7A1CF75C +:1003C0007DDD42AF763B9EFF8713CF9D8FD8EE2D0C +:1003D000C1233D5FDCFA717FABE4CFE3871988640A +:1003E00006C85FC994897033FC1FCFCAC5789F883F +:1003F000EFCF3D9D71920FF77526A8ECEB6CA632FE +:10040000D3A953FB9ECE762A873A935432394B7147 +:10041000AEE1A871B7843623FB52DB53808FE10233 +:10042000E339B4DF9971B8EDA966BA074EFA6FD512 +:10043000E0489B01F00E17F17ABDFF481BE6550E10 +:10044000D71BD7B8E8FD5DBC7F356F3FCFFF106F7E +:100450005FC2EBEFF17F9DD745BE22D3D69C236EC2 +:10046000CBF9DB3FA0E302F99C564AF11777DD7A1E +:1004700086571687CB4C7B9D8F83D77CAFCC635739 +:1004800098E37CC8AF727F1E3E423D469549BE0E42 +:10049000C7DE1E3C01CC7BA4F5FE63DB8966CC5F26 +:1004A000E1EBBB6EF05BB43E6249EF61EC9383FF1E +:1004B000D023D6CFC7077973B545DE7CCCCFEFE923 +:1004C0000C37DAD771AEF9D7A18107F4F1BF955493 +:1004D0003BD249413A87EE5136A07D93EC0E134F43 +:1004E000338F63D0FB1B1D782D5BA3D3FB8BFD3CAF +:1004F0003F6828D1AAE039BBDA51473C239FF42258 +:10050000536E9AC2E38CF3A916FE5D3B9DAE999C97 +:10051000243ABC52117949029E4B14D5065F407CA7 +:1005200057E8ADE2E942C7FB31477D8EA31EF98A49 +:100530008B35E395B09485AFB3E9F02E76BCE745F3 +:10054000FF5509FAB9B8FDE255526437B8853FDE68 +:100550009D6924B96DC6191081A8BF79559DF4C451 +:10056000001013DDAF8DDBF5748F66F7CBCB21A3C5 +:10057000CBC3C7CDA23FDA8B7E2ECA1FD0097F72B4 +:1005800088DBC5A6FE873481F26B6BFC16362ADE4B +:1005900073CFB24FB2C8C3401F19F2AF73D99DCE0B +:1005A00079226B92B3DAF5CEFE2C246BAF58E86259 +:1005B000E6F764F68A457E3F28E83F28F8DFA24048 +:1005C000F2881FCF75C5F188D58FE1F5727D8E3524 +:1005D000707AF155E522F81D1325126944B28BC9D2 +:1005E000391BBF30E96650DC2FF546F83D367F1DDC +:1005F000B773142D43A5AFCAA0E766BBB9FFAC81A2 +:10060000D3435F82FB2FBD4A8EFC97A1CC51E6B647 +:10061000ED7F8AAD21FD9FEFF797851FD3D42F7C07 +:100620009ADD3E33F7F9B3221FE3F49D3919EF0346 +:10063000AFCE7D5FAE85FD79C12F71FF57E719827F +:10064000FBF49D5CCF58BDFAA87CA945AEFFD2EF64 +:10065000A57EAB19CF6FC30F4C5CB9C4BA7E1EBF69 +:10066000BEE48D30F9F39F3AEE9EF55CBF2F721D0C +:10067000C539CCFA0F136EB2E7993CB61ADF5FDDCD +:10068000E476E57BDFA947BD2F723D8D73FA8E9C22 +:100690008CF2FFE94E457AC9C3D787FEC6D5ED4730 +:1006A00065CCAF3B17DC63822E06F17DC4C31D70A1 +:1006B0002E42F8B98055E4B794EB749DE7E931C157 +:1006C000B7348A3F811DAE5C5530358E39AE0FD7B9 +:1006D00067F54BAB3C0F93C9698A4BC9552E9735CB +:1006E0007E35D3FA7CB8BE0BA6F0DA8778CDF39EC0 +:1006F000597677A68AE4FA99DBDD517E3FC9ED4948 +:10070000A8F9FC11CEF9E5108C67A1A7770A474F2D +:1007100084FB6B7A80CFBD937951EEC4CB85FC45C9 +:100720007AEFD9743EF2415F24C0B83F567E755CC3 +:1007300099B25B7DCAFBD9ED967C726F15B4DBC6AE +:100740004B13DFF369A05722DFB3B65BF2D0BC35A1 +:1007500012E5ED536E24E5B9B02730DE24C7130F40 +:10076000E0BC1704F8B9B8D59FBA20407A976EA0BC +:10077000DF1D404963FE9E5F4D1250DE8A38E9C995 +:100780002C549A57FE0C603CA87E3A3ECCFB12ECEF +:100790008DEB34E2FBAEF8CDF9EC83C971AABB282E +:1007A0008FDDA8F692FDE7137CCE09F715011E87B1 +:1007B00000B8AF085CC8E500E6997810EE04C29F67 +:1007C00061189FEDAFEE639867FF2AE3F928AC2A22 +:1007D000BF7EA0285F233A35F1E617F89A962F528C +:1007E0006D8F2B6CAFB6C715CCBA392ED4ED710511 +:1007F000912FA254893C9DDCE7E87CFAAAD21457D9 +:1008000050E41CDD9333E30A8A329AA3FC9DA97C51 +:1008100011AA4FC615F0E34F96F57C22E0B2DB69D2 +:1008200093FE29412F4D9C5E5604525721DE7C7564 +:100830007D63642709BE6EBE17157837EBF7548BBE +:10084000B897631FEEB991E7E3F6C4120FA07CBD21 +:1008500043D093E95F80FDB92360C91B95552E47AE +:10086000EEB991C717D986FCFB1155BE6CDB8FA979 +:10087000F570BF1399D2808F8CFA48641DC3CFB72F +:1008800071786BDBD5639812EE71E5148C4B0D1407 +:10089000A6B6E3FCE1F66C0E9FAB3A9FBF47D0E5EE +:1008A00065EE93CA2F018EED4DB5E1F550FFFB804B +:1008B00064C39F59629E0CD2F7173A152A4FFF7CEA +:1008C000C1AC76E3EE4EC5161FDD1DE1F73977B7F3 +:1008D000AFCFB4C0927B4BEB281EDF17F5F6942305 +:1008E0003DC435CA673E14906CEB05FC1D42F83DD3 +:1008F000A51961F771BC12C7B0E0A15667D2BC263A +:100900008A7F4C6413C86232A467150EB0444E232C +:100910003C7C0DF73B5CA76E413FBD5FCF1A38BFF3 +:1009200089079020EDF3A0FF8EEFD72FB5DED3958A +:1009300083222EAEF1EF05303911C9A7E798FB7479 +:100940002FE0A9A19EB649A2FBDEA26EF64B07528C +:10095000FF8470946E0C101D9626B312E2F16EE1C6 +:10096000A79698F24494E88BC7A9EEFD5440D0971F +:100970004AF9D6DF0F9871FA49FAFA7E3EFA92EBFD +:1009800012067E32657B28F5436CF74A868A7EC85C +:10099000CA8D5C6FE935F39C0DF634D2538519EBA3 +:1009A00064FC9C1755692338FFAB821E28CE8168F2 +:1009B0003871E428F2996EB4A701F995D5A33F46A2 +:1009C0005598FDC44DDF2F89464AA5568A3B819D27 +:1009D0000AF6647879A6AB85E242CA04F29FE886FB +:1009E0003109E143BF1DC65D801E69FD810DB074F4 +:1009F0008B1EE8F626C87F5411E2DFDD930A8F7460 +:100A000079617FBB3FC7E8FB3A456DE95C0AEA15AF +:100A1000CD3E15C7AD8C8D7761FE62F7952C0192A6 +:100A20009C556FE2ED45A096637BF806E11F90139D +:100A3000CC9ADFE50BA5E8FB674628F52AF1832A67 +:100A40009EE781796808D70E4F86E1FD4AFFF2B430 +:100A50008EF0F44597B17516BA770739BF71D73163 +:100A60003DDB30459719E1381C4AB8FC7F8B766135 +:100A70003040FB56CB9A741C2F066449F17EA44F7C +:100A800046F4E90A629E725D564730FDFA440EE96B +:100A90001ACEE51C0EC738E521EC887A3BB27CDF24 +:100AA0009E61CBA09F8B898FD1F17DF385F4077177 +:100AB000DF1E0970FBD277F2EE1CCA931FAD0BE963 +:100AC00012EC87E7CE74EE31A817005E3440897FC0 +:100AD000FCE6DCCFA1FE6447107554E6363294374D +:100AE000154AB284AE517E05C92D771BCFFF50DB6E +:100AF0005F25FF29E02B12447BB82943F9E926BE84 +:100B000076CBE917EE80FEBB8FBB1368FF4C9E1BB4 +:100B1000968858ED899276E00F363F2D3F3F66FE6E +:100B20009C27C2E7F38ABC2FEF64BE498AE79B4447 +:100B300078BE09E66151DE56A9996F92A07BDBE68B +:100B4000FD5019DB9BA6F24D3CBC8DF546EDF9241A +:100B5000BD512EB78C5616C7EFBEF44693F6FC1B5C +:100B6000C9CC7BF8802D6FA4577C0FD0C90F9E088D +:100B7000723ED68B790230FEB6A82B8B863A94341F +:100B8000FFA99312D971DBAA931DE8BF337E1E24FF +:100B9000FBE0689997D6B7ED64C103D638BF99A733 +:100BA0003813BF9D293FB1D6B891ECF56D91630A1A +:100BB000DD8303FB64B678EFA098A74FC4FB26E75C +:100BC0009FE19EC5CD82FED1CFACD2B949927CF7D0 +:100BD00056F1BC3D1FEE1FEE17EE1FC3B8C2AD1499 +:100BE0003FF554F13C17333F0AF693F2F63C72821C +:100BF000CB7B719F5716EDE6FE99FB3D5466DFBF38 +:100C00002147FED45059CEB67F4393FBE7C8636CAF +:100C1000FC20D98D43E2BEF013C1FB7B0DC2DB2764 +:100C2000C89EEF8D7E53C1F8DAA986F544F7BDB1B1 +:100C300054DE7C20334E9A0E246FC373EC8D08BEB5 +:100C40002EE48B4FC417FA059FFF90902B47049D0D +:100C50001C11F56D0DB798F1E534E6A5CFC1EC3761 +:100C600000ADBC2ED98547FDA9606A00CFDDE95FE4 +:100C70007C3E4A76A923BE57EAE2F754011AB253E2 +:100C8000FA7E328FEC14DC9F629AD72E5FBD03FC94 +:100C90003B2FE6BEC13E68F9CE5D6FD9F544977033 +:100CA0002E29DF72F2DC554DEE9B417A9BC83F73D3 +:100CB0009E3B739FFFD2FB5619483E14A4FC3E8313 +:100CC000E4A3932EFFABAE8FB1FB7B79FEC1B56F72 +:100CD000CB2F33CDDFC632147F8C9EF4913FBE54B0 +:100CE000E8F940B73F46BA8A6EB0D32D4BAEA1F6B5 +:100CF0005A74FEC27A0E252323F9ED7AEE3F390DA0 +:100D0000638F911F2015C0737378CFFA00F29DC3D3 +:100D1000C3B3F39DBBC5F93928F8CEBD223FC66CDD +:100D2000BF57F0D9FB1CF7EADE1BE2FC4709713D17 +:100D3000E5B0920CE07EB3C7AFB902BF4B5E77C29D +:100D40004D7CA772D768D16CF3576D74D9E3A16F4E +:100D5000332FE6F5A03D2FE65CEF9BF930EF162F21 +:100D6000F7E1FE55001E86FE40F4EFCE85890E6B3E +:100D700037F138747420B595713C60049A85DFF8BA +:100D80003ADD7B1919021B84EC6EBD701DE82BA4A3 +:100D9000B202CD1E1EB8CA85DF77AF8EBA19F9F53B +:100DA000F7F0388802FF70BB3AD7C2B8C942DFE714 +:100DB0009B97717C6755C49DAA1DF190E8C9DF50CF +:100DC0005C25EAF8EEE9BBC57B3CE4B80FF6FF0909 +:100DD000EFF7CAA37EAB1CA8945812E9B3F2932F85 +:100DE000DBEECDAC1074C93687D84B167F67A5945F +:100DF0008B225F3FB851F895D0B582FC273EFE3577 +:100E0000DCB7E175B7FE9FC7504F29FBF57B51BF9B +:100E10005A150AD238F76EDC62B35341FF5F15BA38 +:100E200070CA3E3AD87395B093D833F83D624DEC12 +:100E3000EBBD6FB8695FEB236E86DF976DDB6348B0 +:100E4000A84FD76EE6FA3433ECFB5CBD36E1427D49 +:100E5000B97603E773F56B595683FDAADE2CDBBE2A +:100E6000673BEF86F4D1FBA1BD0EF4701DE8A56EC3 +:100E70008F9D1EE638E8A02EC35A897E12C0878B4C +:100E8000A6CF7B58195D45F90F1B79FE5EBD96967E +:100E90007248BFA9503A8B21820EFBFC5196D88232 +:100EA000FBE0A443E7BCEF96CE3E1372E6BDADFD7A +:100EB000F011C05B7DDF577E3C9F909C7559ED42E1 +:100EC00093CE424CFF7C08E55192FB8D98ACC7F263 +:100ED000F1EFA97B9357CECADF8B92F6BC8DB06E33 +:100EE000CFEBF0C7EDEDA65FDFC483398FE93F6735 +:100EF000A9A46685BBBF20FD2CC6B70E84AE585989 +:100F00000A87BC1FF708E4CF81A12BFB0CB24F036B +:100F100094D739189189BF987E6F26A73F86F7101E +:100F20007A63327DE74A66BB75DC177F5D82F81114 +:100F3000FA024B687E7E7F2D10E776D6E4FB2C19F3 +:100F4000990D2F7AA625877A7240F8B7E049AE8BC3 +:100F5000E4AF4C7E3A38075F0E713F58AE05CF11B3 +:100F6000D89BF8DCB487CD7966C2AB398F799FA85E +:100F700007F4735C5F518D1AC33C07F60CB76F27FB +:100F8000BF7757C312DD0CED5035467EBD9341FA55 +:100F90003D0CF3FE504FE7ECF9BD87FCA9A34817C1 +:100FA000B257D7701D937A7B31E8ED21547FD35C23 +:100FB000EF63492AD539ACF10984A384FB05BB0B47 +:100FC000FA62C8077ACAECF2305C20E20121379558 +:100FD0006A90C70D986244AD7EF3D7435C0F84F6E8 +:100FE0009B71BF2BB7A79F1C68867A987FFAF12E5A +:100FF000F58E95ED401FEA3CF17ED50CEFCF63DF17 +:10100000C0FEC5059F7C5206FCAA7339BDCCD9BE73 +:10101000BD0F55067501BFB7C79AB483F87D9CE133 +:101020006BCBE91E57C9FB37C7F0770326C7411EB4 +:101030000E722C8AEF61FF14CB314BFE0DD8C7AF77 +:10104000E0FE9A7E2C77C8F463E911B29F84BFF466 +:101050003277C8F4EF8F58EDA7D321BB5FAB57F8B9 +:10106000B3CE8CCF233F96999F20971A396BDE051C +:1010700018BC537E6CE04F7D1557F038AB7ABCF44A +:1010800065CBF3FE750AE98F91F55EBAF7F554501A +:10109000AF2FB890D69175ACE36CA86C967594F1AF +:1010A000DFE5B9CCDD10FEA5853F050AECF077A39E +:1010B0001F6E96FB073DC5B7917DF07A88C7557BBB +:1010C000D729148732E1530B44BC356444C99FA629 +:1010D0001AF43D08B37FE6D23BB99F26902CC57524 +:1010E000AC8CE8A44F9BEDDDB05EC9329EF99C4507 +:1010F000F87893F5765EF7309DF2EBD44B57531E9C +:1011000061AFF047CB2A2C1DEDBB38BF2FE75C0742 +:101110009CEBD74379FD7F76BD76326F758BCCF033 +:101120003B36FB83777E11F35C371B3E15FD42A7F0 +:10113000FD355946F1D1F445FCFDF4F9586EADCAC0 +:10114000267173CCDF4DF22B068D29C9FCF7923E38 +:10115000F1D553070CE8F7DB6FFEDB0103F0B3F1C9 +:101160004FAF1DF83CDAA7DFF3AB486F373DF4AB68 +:1011700003B7C17CBF7BC4E7429DFFEF1EFACD2FB2 +:101180003E0FF53F7E674131CAED95059CBEFFFDE0 +:101190001BAF976B30CEA6C72E9B837AF1A66F5DEF +:1011A0004ADFFF9869FFFE1DE833EBB3F2A72CFF7F +:1011B000DD9C4724146E8C3D2A4A91EFF229FC2BCA +:1011C000CAA1CC8417FD377F94781EF6A746DFF4BA +:1011D000227F7A526713C8FF1E7FF8A5276F83FA14 +:1011E000EF409E629ED64D8F781CBF0F6154BA2887 +:1011F0008F305789FEA04F3DFC81BF59D184A52770 +:1012000081C3DFC426FA90AF3BDFBBE9C44B5ECAA3 +:101210004374B189AABFCAD3CE92E11CF0FF9BBE32 +:101220003248F932378DFEEE79D4076F72C8E9DFA4 +:10123000312E979CF2F7E30576F9FBC72F5D13CEAD +:1012400061E3C32579F9BA297F3FF9ADAB6795F31F +:10125000FFEEE0D333E399E74D7B0D906F4DD3F371 +:10126000A49DF4F659B7FE5C2A467CFE8E8232CCF1 +:101270008F4E3F328E76E72F3E3B9182D1F688EF3C +:10128000B7EE29B0FB5506C43937CB3D287F719E98 +:10129000ABF9EF4730392959E3D6E40A06BEB96DF8 +:1012A000FBF32B896F423BD2B5F99C19CFAFCC59D8 +:1012B000E48339AFA794DFB30D54897BB629362E6A +:1012C0002DC35B05FCCFBD05DC1F315098DC83F0DE +:1012D000FBD5899C24F892F5BB94CEB24FF0A59E25 +:1012E000CE14958731B65A86F78FD3649302FFCB1D +:1012F0005AF9A22CE8F6ED8FAF12FF36E33AE94037 +:10130000EA211C17ECFB0C8FE7703BD62DF200BADC +:101310003D7639F9B0C0AF599AF6AE5CDC1E3F5845 +:101320008AF708231C2F2C4972EF5BE21C037E898D +:101330009FED959841F7E92485EF8BCE34B59CDB82 +:10134000DDB81E378803E42B1E5828A3EF6C185411 +:10135000FA91BE28EF3147FCF0A705B5E23B22E346 +:101360004248E8E4FF09279884E7774F4182BE5757 +:1013700069AC63EAA1C6A9F6BE15E23B20715E8F97 +:10138000245586FD7F5C502C365FA7EFDBCD49A945 +:101390002AF67B2A98FC21EE63194B913ED1042555 +:1013A000AEA35C09F1F869873D2F6F923E8BEC7814 +:1013B0007B46E0E1A705DCEEC6585845B12D9F9964 +:1013C000613EB3A947F5A21E15233D6A1DE6C5CCB3 +:1013D000A847D5A6CF4F207F17FA13CA67F4431644 +:1013E000B5F1FC8B3CFAD36F70BF3DDE64CAE6F703 +:1013F0002CE77ECF08E3F7BC23851FA4B8827A3E92 +:10140000FB3DCF53FBD34ACC7303BDE41B58EFEE37 +:10141000F98F95EDA8B75C20CE0B3B6B3B2FEA45CF +:1014200042FF69B6EB3FAC90AFFF0CD237D2F372FC +:101430002EE764354D7213E47FA0B00CDB851CD41D +:10144000B97C9DACB7F1FE93F506DEFE6EE464C197 +:1014500085E796936A01FFFEAAF37DFCC12792EB14 +:10146000E2DE6277C815C5D0A4BAB7BC91DFA36D20 +:101470003E8E719EFABF2B6DE4BA0CF7F78498800C +:101480005FD83F7BAB5377A35EA0BBFCAA5443E776 +:1014900084F3AF6BBD74FF7E9F941D9B47F45C4B40 +:1014A000F27338E522BDA97BAD97BE8B3A8CFE4E18 +:1014B0006C4FF2EFEEEE8C6F22BE3B6CEC217E05A2 +:1014C0007C97F8ACB1C5A7E27776F6A46EA1764317 +:1014D0005654BC3731FD5E4AF6FBF8FB4F5D85354F +:1014E00004E7DDF1B6E3E816DB29BE2F1B58D8A6CA +:1014F00058E3393716727E60B63BF1D45958C0F9BB +:10150000D9C5F9F168BE6FB60716CA747E7B524F13 +:101510007F15F76DE7F263EAA5B8AFA54F2C473CFE +:101520005E8EE341FF9EB89CC3DF85D1371FA47D4B +:1015300073EE23ECEF4AA427B9D9F522F693551E92 +:10154000AF1EC6AF02C2824285A92BB07D0F4B28C9 +:1015500031C0DBFE6B97C5F1FDBBE30F7E7F1EDF65 +:10156000FE562BBFDD2BE96C3EED4348C5EF133231 +:1015700045273861AF8B918FEC33F76DE1E4778DC0 +:10158000889F14C679FB7E29C1EAADEFEBBAA62E7F +:101590009BE27F1899D597513E02FFB32845743DD1 +:1015A000C50747A91E6263547EAA907F0729CCB263 +:1015B000EDF3257C9E1D9C0FF395359726ACF1D855 +:1015C00032935FADB1F32B27FFD9A31883384FA80F +:1015D00030B9B110C6EDFEE8322506E3FC7521CF27 +:1015E000DF33F1A220FDE23C0996C075496C6D170E +:1015F000DEC32935ED4CC73CB82E5C67A55896E98B +:101600009F47BCE2F76EA33770BF5B151B23FE53E9 +:10161000C326A8D45033C2AB537AAA0BE33E7E76DE +:1016200092CEA5CB70496701EEBF137001DC7EEC52 +:10163000D78D0629D275CA25F0CF08A83D29D71124 +:10164000E4A77F5DA8517FE8C7EF372ABABF83F2CE +:1016500098B83E58235EF1B11725F4FB9C8AB8195F +:10166000DAC3A67DE4DBC87FDFA8BAEEE516B4DBFB +:1016700081D8F430A50C8FB560FCB6B2459930889E +:101680005F8ED3FB517C3F81FE1FBB7F21B0DC5EB0 +:1016900037FD7F95CCF2DCE6FF73F823841FC6CCC0 +:1016A000CF719E27A71E78B8F09DF9597FEDD7BF5F +:1016B000827460E6EFF4142D8BE47B6FEAFB29EF74 +:1016C000CC9EE86E697CB614F0B4B7F9DACBD17E63 +:1016D0003E7A7539F1B77B42DCCF06E7F639DCC7D5 +:1016E0004AE64A505EA0436F38736331C3DFEF3A76 +:1016F000902E4CF0E4067E8ECCFB1D4CD5BB707F4B +:10170000CD73CC9626E9FC78C18C473A5450BFB0D3 +:101710009CAB4250FBB174AB991C7EFAE0D8E6D684 +:1017200022F42F04D990EDBC4CDACD9B385DC86C07 +:101730007198ECD94D32CB227086FE7464194FDD5E +:10174000C23F9194EA32E902BF5753A4731F8FB985 +:101750004F25EDA0A759F4FF32D04FACF5391D113C +:101760005B7FD6C3ED000DFEC173760A7FC9A476F8 +:10177000BA1FD9C30CF2375636FBD49C8AF10A83C0 +:10178000FC835560CF501E40DAEE078C38DE77D2EE +:10179000D384494F70AC919E000F093CFFAF9E70FF +:1017A000D37744E5711FE1A502F0827878155F8454 +:1017B0007AF53A46F7F09C7831E90DFE4D205C351C +:1017C000304E8E915E6A5BAF5FB3E32718B7E3A735 +:1017D0002061C74FE464D485DF3FFD51D4CD243868 +:1017E000A7E166CDD6DFC49FF9BB7A4EBCD5DCE05D +:1017F000C40BBFB7702EFC9486857F5DE0E7147B39 +:10180000F428B64972F61AA463B749C720A894F21F +:10181000A9DF3D3B5090E9C2EF591B40C7EE8A2932 +:10182000BC38E9BD4A1D6B21F5B9A1DAF85BD46378 +:10183000A13F7D376F69CA212FB236BD79EA7E1D7F +:1018400028CA50AF407D9BEE7F70791944FE4AF460 +:10185000FD123B4BDFB34C1A74EF150EEA3D780FC7 +:1018600044599D4BE17C6E96C6BDC1FCBF30F91951 +:10187000D813E8EF33BF7701F4C6248BDF5492739B +:10188000C487DDF7F176B935BD05F75912F982EC59 +:101890003E9017D67CF75A9D7FCF8F259EA5B8B76F +:1018A000F81D674028E5A778C57ACFB54EB73A212D +:1018B000F0711F971B8C9FDB7943B92EE453F361C2 +:1018C000FE12E217FA33488F663CA76A7392CE691C +:1018D000A4D2CD7C4037B543E312D2B533AE53C961 +:1018E000125B505FAA1D72FC5EA4FB513A6FA730D9 +:1018F000CF06C68F19F6F66ACF289DBF2FC0F943D1 +:101900007951E9A0274D1B3B8ABF87A2E95C9EC4A1 +:101910000C96D860A1AFEA54616203E8DE5FC207AB +:1019200079ECFE0D613BBFFFF4956BC23958D717B8 +:101930006E1FC91BCFBBBF53496C003AFB726724B3 +:10194000B1A19EE236549F3F3A960BC03A1A063830 +:101950005E6A3BC60FE2F7A66BF778E9A72AA7FCF9 +:10196000F5A94F231DD4DFF68F5B70998B06522D9E +:10197000A8FF7EDBA56FC2E7EC419ECFD2B0B92AAB +:10198000B101F0BF78730D954EF951FD99133FEEFB +:101990002CC5DFD5E6DFFB987BC647F9CBF788750A +:1019A000CE837DC038515F98EB8B2BC3C92E1CBFF3 +:1019B0007620E122FFE20D7C1E133F33C9A90322EA +:1019C0002FE3FE4D4F5F7939FAADD55291DFAE0767 +:1019D000D04F707798DBF1669EFAA41D9D31F3D449 +:1019E0007517FA73EA322DFCF7A71D79EA2EF1BDBF +:1019F0008DCF8AEF05358553C36194A3D6EF06D505 +:101A00004EE5A9577FA62D80F03FA88CD3FDE66A4E +:101A100089A58D468CBFD8F73D9666C73017D88408 +:101A2000C75C678D12A2726538F520CE8378C27DBF +:101A300036F162C637E70E733D0BE913E3FAA732BE +:101A4000DC7C9E9B1995D095B7D2BD3AC0BFCFA57F +:101A5000BF7FDD327104E1F983A9049D87F9C04796 +:101A60000D3C2F82DE81BD09FD4E7721FFA8BADD36 +:101A70001E67AA13FC72BE237E59877A4D21B63B9E +:101A8000E34D4077D673E2589F93CE8F9A743E878A +:101A900045316E7F8A2D9F739936450735C0B89AB8 +:101AA0002DDFF336E9D5E9B732C76FCCD9E79764B4 +:101AB000431779553C4E9130AEA13C1B17F023D211 +:101AC00043ECFABB947AF275BC47E86D37240DED10 +:101AD000E9D529CA7F88B4B38406EDFA8998C1BFD5 +:101AE000F333B682FCF9AB0DC98BE36B632BF0BC0F +:101AF000FC2C1C1279D5FACF701F4B904F939E6C23 +:101B0000EA2B692A314F19CB00D803989069EA2D46 +:101B10009F0BA75EC6F360EA2FB5B06F18EA0FB14E +:101B200034EDCF02B403F03EA183DF061DFC912DFE +:101B30004DEBB428C7FA9CE7A9BF9A3D82DF3397E3 +:101B4000AA60DD85789E649E7761BC79B90E7FDDE1 +:101B500076F5372265C45F590E7F7F74DB2A89DAF8 +:101B6000A36AD900C639B65DC9EB0B3285BC7E8D40 +:101B700044FE8445A23DC63E4CF944A7CB6EA17CF1 +:101B8000A2FEAAFCF1E7FF072AB268C500800000A8 +:101B90001F8B080000000000000BE57C7B7C54D507 +:101BA000BDEF6F3FE69584644F324926BCDC498027 +:101BB0000408382480BC2C9B804829D501A952DB1D +:101BC0008F0E08CA3389D122B7F51C76088D18BC50 +:101BD00012ABAD698BBD0347D15E8977808051031D +:101BE00077081403421B14453DDA46EDF1A0063296 +:101BF000C622D6E3BDDCDFEFB7F626339320F473BD +:101C0000EFF9EB261F3E2B6BD6EBB77EEBFB7BAEE3 +:101C1000355CBC883FD3016AD703448B001E1ABCD5 +:101C20002023940690AF060CF0611DFFAE97002EA6 +:101C30005AFDEC524D93215A0CFC7311FF6D1E336B +:101C4000DB28C2FE0A404C090038D729FA5FB3B03E +:101C5000DFFDEA07AE74803A9C174AF07377156887 +:101C600058BA1AEE8D4AD81FFC1078866709C1C28F +:101C70000100328879D76279311F607C46E88B8C0D +:101C80006C9C574B81A8BB773DE73A27CFFF4506B1 +:101C9000562600948CD7B033CE1B80008CC3528F55 +:101CA000CA3AD25EB26E706029F673AB410860DD4D +:101CB00031A70AE873D7BCA041EBBBE64040C72977 +:101CC000B2E6E926EDD7310CAE57F003D760983570 +:101CD00004EBEEE28E2605F75FACE120A463ADC70E +:101CE00028D6B01C82CB517DB4A6F1FA0001293868 +:101CF00080CA2AA0F2BF6404C768F879C1E040DB5B +:101D0000129C0F478384F415A54198F889FD364449 +:101D1000B1AEE21FF534D756B5ABD3DE5F81286193 +:101D200022D24325F2C189F34221D2030D5CA640A1 +:101D300084CB34E8E032033AB94C85ADDAC7A9C4A4 +:101D4000479C07F7FDA8D3F0DE80FBA8FBA323B0D8 +:101D50001DE930CBABFE5B27AE6B6E50A116CB27D7 +:101D600053FFF9D94E6C5F67BA341796173C43C3DB +:101D700080E7155E0F81A5B8F853EBDD5CFE76BDFC +:101D8000C6E5F3EBFD81A5C301566BF9BC7F24FFCB +:101D9000BAE018EC773FEE04C76F796F74588AC3C6 +:101DA000CB96A53027524278D2E430AEB7B978C985 +:101DB0008E7A1C7A61E49214277EBE4A53987F3B48 +:101DC0001A05EE92717631099F763F450D80D64F08 +:101DD000FF645CAAF7CBA66B6C5F3C3ADDA1F60210 +:101DE000A4B7E8940226F2A5A8E1DE36CFF8BE78C3 +:101DF000B4E7ED0797AB0807108FCB825E5CBE9609 +:101E000061ACA6F6474B43CB83FDD0B9C12B33FF62 +:101E10009EBAFF098F8E7CF835F129AD974F8D253D +:101E2000169FC654339F1A884FD8FFD9AD57C7277E +:101E3000BBDFFF033EB947203D19169F321A3E8F84 +:101E40002AFF189F1A480E2EC7A7FAE0F64D740E07 +:101E500066480E0CC7F99F08CAD1E958FFF5727998 +:101E6000A7924FF5EDEEE184ABC6B6C1A9D8BED3BB +:101E70003B80F9B0438BB5533F7398AC3F83787B7D +:101E80005815F255DF28FF8B99DF4BCF8E62794EC4 +:101E900018F9575FBC24E5AE383EEC68ECF1C7F3A7 +:101EA0007187048B08A7C97C5AE895189FBF592AE7 +:101EB00033BE3D2108CBF8D1AC61C0F5BCC1107672 +:101EC000613DCF1075D481611DEB87AFAF9BA162DF +:101ED000BD7E29402E36CD568E9BB4CF46D48FA8DA +:101EE000A3F0C7B86931CA773AFD89FB6A0C45B9D6 +:101EF000DD35C31D33511FA477CE8F3E85F5239367 +:101F00005C1A4C42399FA47ED819A7FF40F931448E +:101F1000B1FD7C28AD4AC1FE795B13DB5D105747EC +:101F20007E684630FA14E91B9C8FF4B383DA8B7B0E +:101F3000DBD7BDF749D6E1383C78670580F87344B4 +:101F40001BE0237D829BB8E622EA979FAF6F818FCB +:101F500086F3FA8C2F540946A41F7C5D587F26EB2C +:101F60003036BE6DE1FC37C10D9281FDB62C6E900E +:101F7000C80EE47DA318C46F44B6FFF631BDE3FE7E +:101F80008A38A1FE5B1CE23CC61D06258DEC8AA6A4 +:101F90008D23BD6CF7FB5013E7B2C523FA4D3865AE +:101FA0002803BEADDF00EC87EB4FFEABA9A4F7D34F +:101FB000EF904527A8B145748E0F5FEFD448FEB669 +:101FC00048427F9A271C16DEC539EF58A66D233D7F +:101FD000BEBBBD607309E120A497D27CBBF5905CC9 +:101FE000907679FD7994F084EB8C981332D8285C44 +:101FF0009A2FBA53D88598FFC7C88F53DE34A67B73 +:10200000770AEA0FE65368E0FC383EDD64D16BF3F3 +:10201000699F1EDA3C06E749413A24A423B3380CF1 +:102020007249EF7ABB8B713DACEF7E5B66BB9E372E +:10203000EDAD9D102727F67AFB52FAD757417B3D2D +:102040008BDF2FEBE1CD63E3D64B9993B85ECA5299 +:10205000B1BFBC33B24976F972EBBD7C99F516D0AD +:102060007A71E77640EFDC7C2DCE934AEB21375234 +:1020700069BDB47ED6FBEA17D28038397EC32BEC1B +:10208000F6019B8F6A68E082387D956F8D7F36B848 +:10209000BBFD2E6C7E78789D275442FA20E21E41CB +:1020A000E77EBD0CCFE0FEB66C2D07F2179E3580A3 +:1020B000A5D79B66CE2023BBD19BC9743EBBB59CE4 +:1020C000C7496A438D8A742A28E8840744C2DBC45E +:1020D000EFA12007EAC9DF310C5D43B9972CB9CFD6 +:1020E0009BA7994BB07F56553A2A6A54AB8D55C77A +:1020F0004662DDB34E0E503B442550B17F9ED5DF86 +:102100000DE60F59CF58F3E585D66E203DB05581C9 +:102110002A05F5443F7E4480FC8841F417D54B0DD9 +:10212000900A496E43ECACB9C0E43215A2EC3F0C06 +:10213000203F42217F223A83CA6B48A52BD464C832 +:10214000D43E1CC235447CBEA197AB48CF88C65054 +:1021500039D193793F0ECB27B90AF33C123CC2FE2A +:10216000506AE153DE8F475BFEC85480AFC85FCA38 +:1021700016E7407E83D39B58F725D58DE33380CE79 +:1021800001B5428CFCA4B59ED0ED5E6C97DD864116 +:1021900076C963B8D9DF746B41DEDF6F8232FB81B1 +:1021A000FFBFE9E99F79514F8FEED5D3B67EB6F5E3 +:1021B000F5E5F433FB9753504F3F76F71C13FB7F45 +:1021C0009A615491BDAE229F7402F9B1A14DC46FC2 +:1021D00058D87090705D48F1004D9FA6CB347F3287 +:1021E000DEFD8D8877E23FE293CA64BCBB01F14E0D +:1021F000FC47BCB3DF9B84EF464715E3195159A553 +:102200004C61FB20DD8DF30CB5FB5F01DFE852E88C +:102210000AE255253C28F17E7384EBB6BF9C0E3153 +:102220002E07AB31894A1D028CF36110649C0F7438 +:102230006B32E1BB60965EE3219C5BFEC510F4DF70 +:102240004DDE8C06E4BFA784843FFF44F04396FF35 +:1022500064BC234E192F1E2B2E42FCEEF172BC6083 +:1022600000F9350EC42FED4BD5401D329EE20D080E +:1022700053BC511F2CF750FB8E697284F4EB0E2D6A +:10228000BCA960BCF093C80E6DF946617DF430FACC +:102290003B1BD8FF31B87FFD523980BC23BF273AA2 +:1022A0009DFA2F97C3C3F3AFCAFFC14DE3313FB6C9 +:1022B0006013E1608B17D84E98C39DE167F2C92E79 +:1022C000EB8C8769B18E99193EF21F85FDDCE2889F +:1022D000F90325D43FB688F498F994D097CF0693A4 +:1022E000F56584F56BA1D7CBF2FDC4D60DDFA5B89B +:1022F000085493F584BDFE286FDB2693F4745ACC02 +:102300004FF2BF657E750AE9755BBF26F73BE43186 +:10231000DE217E1EBF8CFFF6676FF9FBD47EC2C242 +:10232000B3A44659FE9559C867DC975AAED510DE5E +:10233000243B0E9B95842F1D9B486F67DA715B8051 +:10234000F5B9C3D6E7A04543B86FA7854F5B9F7A21 +:1023500020DCAF5E550877AC7713E3B4EEFDA787BA +:1023600098B8DFF7977D31003BC35FD4D800E2EB2C +:102370009907DF18407ED3FB0F2AECC7DE41344CAF +:1023800006B873FDFF9AB804EB72A6F06FEEC8347E +:10239000BE665CADCB66615A11C645E2F4C4AAE7DD +:1023A0005249082ED5D744B212EA2C7138748D0BDD +:1023B000AAC8DEAEDA79D03908F7B7E239EF389C2F +:1023C00009CE20FE499ECF340FD946FEF5944CE14C +:1023D0000FDC91194CC9CC16F4109EFED2EA82286B +:1023E000DBD90E87F06F8C9BA4891425889F64BA73 +:1023F0008E1C18E49471DE6512EA5B2F7F5CB70FC8 +:10240000D7FD37BF02F581BE742F7B5F73CAD8BE7C +:102410006C06C4CC7144A754F7008E5F42FA35D0E5 +:10242000775F8B4D4782BEBD2B72AF9399AE94CC34 +:10243000CE25BDBC4962BD75D7A6C47E088723AF33 +:10244000E0BC4B715E3AD7650D89ED3DEDF7D5EDFA +:10245000C3F6DD2D4E8DF4FA3D497A3C594F5F9B12 +:1024600069F9D113E13AD2CF3DED0B32A2FAE5E39F +:10247000385B3F9FC1780EC1029FAE7773D9B59E7E +:1024800041065F7B75E6FFAA96834758F7A91D139F +:10249000495E76B77F947A3B3655FB451CF79D6DB8 +:1024A0005FD4EEC3E63208664409EF107590BC4D68 +:1024B00007B79E86F43D43711A42A8EC2BACC7EFD8 +:1024C000AFE1E01F5EE1B82CADEA19E46B35027DA7 +:1024D0005D692F7DD57E11BFFD18D4BF7DDBBE6F3A +:1024E000CAB4ECD275B86FE5FF7EDF971BB706FD67 +:1024F0009FFEE4DF968FAF2DFFB576FF93B307E223 +:10250000BECE3D26055C48C73947B88EEBBF940266 +:10251000353A93FD16E4F4E215B7CD78BB87FC0F8E +:10252000C46768F9CF181747902F64EF43AD43B8DD +:10253000DD3F13F18B7279CFF2CFDE15CE82E997B2 +:10254000FD5446FDF2A47E709884B7647C9D73743C +:102550000E25F94FC6D5B9CBE8B9259905BCBFA55D +:10256000BA319BF26BCB2058A709F93BFD9FB19F75 +:10257000B6E6FB4023FCB7ABEC57951E15F171E9AD +:10258000096798FCFCB338268DDA0FA785C93EEDA4 +:1025900071E88F97907D38AA02C751DF00C705E325 +:1025A000FEE40F539C7536D364FDB2FB2B086FCF4E +:1025B000A70E65851ACE37EE3F4A02DCBE4E316665 +:1025C000D1F86F204CF1FEB8571FB989FA1FD8A671 +:1025D00000D9CB64FE961EBDFF1AB2BBD3FF9E226C +:1025E000517B32BFCBC28A3A85FD13772C03F75556 +:1025F0001AFE68D554D6E7504DF5E4F3B0FB6B32C4 +:10260000707F7233A85E6614C7484F259FD38A56E1 +:10261000974AF4AF688752FAEC3BDF24FA7DA5C7EE +:1026200093FC445BFFBED8B48FECC0CA7FFD453A33 +:1026300060F989DA904338687AFAE7E906D903D570 +:102640004CA773FD242CEC41320EBA2CBCE3C6D24D +:10265000253CF70A2615FF6D8AD5FD14E9F912F518 +:102660002CD15B71F86BAE1FC1FD839FE6ED9CFD25 +:1026700033DCCF8AC5695535D85ED992B8FF95CF7E +:10268000FE3247E7FCA639C8C2C1201A57F1B4236D +:1026900040F6B3E294C279D44A8831EE92C75746E5 +:1026A0003E72123E887F83A7F66D47383A497F55C0 +:1026B000C2239F2B63B13CFC29E3AE32C9FF5D6EA0 +:1026C000D9BF643DF3AF497A06F91320FFCC44BA71 +:1026D000285D016161176B7FEF32DD48C727EFE6A8 +:1026E0006E73E17C5D4FBF962E95F4EA1D800DCC94 +:1026F000BFAE486146A81FFEDAE5394B3FD97520C9 +:102700007B8FE3F416490412ADA26C42BBE9463A52 +:1027100056BFE362BF71F5C91E962FF42A62C351FA +:10272000FEF6BDDD963306DB57ED72F8E689EDA4C3 +:1027300093BDB4CF6DE59E7F9BBD93C6A33DF4D002 +:10274000B9355F607B69CBE7AA5D079D8493647EA2 +:10275000CE8C1C7476A6F5735E910F66531EA0F6A0 +:10276000F717F83C3E3920416E7EDFF191A73FE339 +:10277000F62E3C18CD4BE7A72C7666F4EDD7F57412 +:102780002ACB6D57AB1496F2AF7C7EAF60B82CF0BD +:1027900019BB83CE4791D16F2239447F9AE2B05A58 +:1027A000C2E738DABB06B44F288708E929A9F5D56E +:1027B000BF4B63FBFA4D66391457E13E6B9DBD7903 +:1027C000ED677C9CE7E6BCB6B9C1A5D5FA38CFCD9C +:1027D000EDEB54B74671DD7FCDB2F3D78128EDF331 +:1027E0008143505ACF541AECB75E388275E4BFC3A8 +:1027F000A72BF13808CC94D93FBA419916A6F97B9A +:10280000CC5CAF6B3CCD9F2ED33C1B8F666F237D82 +:10281000383F4BD89B719DC54F4EC37647BB0303D2 +:102820004EEC4F4B60BDE70CC611ACE742B5D43E51 +:10283000C18A03F6919DC6F12EBF0C7A1C9F3D7A8A +:102840000AE871784F2DCE4CA88369BCEE9F48767C +:102850005EFC0C080C4C185F0A016531D217401C55 +:102860004571FF19930A12C71F17E7548CBFE4F78D +:102870004E3C15776E407C082B24E7D7597E5620B6 +:102880001A3E6422DD93AC3875D27B89FDA75C21AA +:102890006E3D9265F943036120C96B2DC9359D9743 +:1028A000379DE30D8775BF4114CF47BD93E613FCF9 +:1028B0000CA4CA5FE8E46F65FD8FEFAA88FF40991A +:1028C0007C5F21E5051E7F59D4A7CA7B0AB0BEEE06 +:1028D000F15744FD5AB9CC81F485CDD6EFCE42F9FB +:1028E00057E55DCB89FFAA0C5A2DE26A637AA48A68 +:1028F000EA0E3F681BF2681D5DE042DF13227AEAB0 +:10290000F24023FCA9E5E2DCD47467986855E51928 +:102910008BE2E7D9EC34CE70BCEB03BD06E749751A +:1029200045425477E2BC5407BD7026D5EB86602C37 +:1029300086FB2B55F5999C4FC66D120E2EAD0B865E +:102940009FF057EB75B2DD53CB0D9DF04D39509292 +:102950009BAB2D51BE86923E5594ED4D84FB588D18 +:102960000ADB7D14673CDB44B83DED74F3B9DD96BA +:10297000F18863142E5DEA1E7A1F09D5BBD2CE9F63 +:102980005039D9177A288BE9C1081DC7DF7E87B275 +:102990009DE39FB4AA01741E60A0BCE2E7B5961F38 +:1029A000012194575ABB0DE5751CA93E94D3D1BDA6 +:1029B000729A4C8792B193E9B8CD25E858142EA8A5 +:1029C000ED443AC6B9C243C84FC5F59FCCC27DDCC1 +:1029D000EE0A0FA7780963D276A2E3F49DD7083AEE +:1029E0006030EB01C69342F2D8F502CD5789F3BBB4 +:1029F000D88E1BE98B73F8C8588F9E4BF99D4215F2 +:102A000009ED8FC4C906A396FCDBA9569C011DC223 +:102A10001EEBF8CB719FF24D0EF53F7F5C66FFA277 +:102A2000F47022BE271FDFCDF2A02D49ABCA984417 +:102A3000262911EF535BD06F427D35F50A71C1EE47 +:102A400024398824E5D703567E1D8F418DCFFFDAC8 +:102A5000F6EA90A7FC25E2D33C55F4D3C13058BF29 +:102A6000047499CEA5E7F81228A53AE8D580F58C2C +:102A70002CE11F24DBB3E6247B66E371CC29ED2E29 +:102A8000D2E3634EC19DB49F1B9434B6AB3D6857EF +:102A9000B17B9CDE73B01F380EC63E39CD77797D91 +:102AA000D76B6713F59ED748D477597312F55D76C7 +:102AB0003051DFE52E4AD46F79A1447D3668F9A8FC +:102AC00084F62155A509F56BD64D49E89F8F8624DC +:102AD000BE5EB8696E42FFE10D0B12EA458DB72765 +:102AE000F41F195E92D03EFAB99589FA15FD45E2B8 +:102AF000C3BE28C06F08BF49FA7A4CA43AB1BF32AE +:102B00004D594CF8437C927C5CDBF2D384F96D7DAB +:102B10006DE26F7FFA5A497941A173EA447F4E9A78 +:102B2000827ADB672A04A33E7A3AEDCC7B74BE57E7 +:102B3000D2D72E5F224ECFC3BC49946F4B8520EB7A +:102B4000E9CBC571B5D6FD84922AECA6922157ED4A +:102B5000A27C6596C8EF3F9865E57B358193EEFDD5 +:102B6000457CAF72C1335422FDA2A33F40C9BD6E64 +:102B7000C76089F48B3913220AFA8F0FA40C3D48E1 +:102B8000FE6AE7BDE9016960DCBD36EAB5DA00E35B +:102B900092E75BF7DE00C6E50559E7BCF5134A503E +:102BA000227D8253E6CB48F7461996137D8FCAF2F1 +:102BB0009DF1F710453E712F5064D99D41A99115A3 +:102BC00084735913FA7CA3CCBCA01F83F20DE9597E +:102BD000C079543073EA670DA67B81CE621DE56D26 +:102BE000C21339F573BE835E65EA0BACEF4A4D152F +:102BF000F8FE14C25C1F87FA8FF07FBB8C7A0F97A8 +:102C00005CE4AB72483AE93F63BC0FF933C80D6628 +:102C10007A29F3F14EBABFF0824FAA2EA1FCFC250F +:102C2000FDAA5F2CEBCBFF432BA7CAE43FF52C5545 +:102C300078FF3DCB7F7DF6BC2F4E1E71AF1D040883 +:102C400055CFA03CCD3B4EFDE689C4BF630AE7EFFC +:102C5000FE48FDF2FACE7BA5B87CF9B6C707D0FBDB +:102C60008A778AC57DB6FDF9229FD03B8B7CE21E18 +:102C7000BB72E967CEDB990FE8C7A2FEAC087FE123 +:102C800024BAB402A8CA40BB0D1B7BB85E6F087F94 +:102C9000702D2561717C8AA3C14CC3A91CAD35265A +:102CA000E53D6E3B2DE2FEDBFE43E4ADECF556F870 +:102CB0001CDC7F854FBC2F286D0F4DA0F3BB990402 +:102CC00091F34CA109644F821AE834FFA2D0E29F2D +:102CD0001CC7FAFC47101E9A68A7FE0BF02CA9FD32 +:102CE0000D08BCB917D75DEB13742C84A08370FF5B +:102CF0001684CEBE89F272DA2BFAC724D0B7C7CDBC +:102D000077B335DFE93B56ED25BB4EEBD1FA440FE7 +:102D1000AD3F5F8302AADBF324AF7B0B180EE10704 +:102D2000051D64CFF1CF6816B657633C417252BDA2 +:102D30002215289EA9DEEF0A13BEBB575E68FA155E +:102D400092F8E7C5B1BD529C5CFEB051011D71F215 +:102D5000B9D758EF23799B94C571D4E5E21B3B1E8C +:102D6000256C9BA8A76E63150670C2C2C5A2D6AC1F +:102D700032CB4FD84C387DF740D310546D706CE493 +:102D8000B3C3C95F86F157373FCAF9F324B73ADABC +:102D90006D18CAF685ED49775466DCA29C3F4F72E8 +:102DA000D2E9706BA4C7AE2CE70633C9F61F1539FC +:102DB000E057C9AEB62AA914F7A493F366CB2DE267 +:102DC0002E5D9185DC522600E3A3D1B65C9B77CCC7 +:102DD0003D2CF227097E04D667EE8CF71B94AD0AD2 +:102DE000E535CE1BEEA8429F53FC43F912CB9F085A +:102DF000E22FE9E7A2C6C478BF8FBF40F1D255F8F1 +:102E00000B2D3E2BCEB5F4B0ED275C299FB69BFC75 +:102E10000A2C23C542FE23D114B6C7A5963E80686E +:102E20001AFBDDC97E06FA177FF0C5F917C9F3BF93 +:102E300066C9F549CBEFFC6DB6285535C2EFA9D26E +:102E40001781664EA6BC6384F33DD986F0B3535117 +:102E5000AF65E0E253FCA2BF533A57EC463978D352 +:102E6000B7AC7ED33484DD305BBF2EAB3F84D098CB +:102E7000FECD74B914E71B7F54E17C51CFE151FCC6 +:102E80009EEC72FB1E8F7827E31A3D324566BBD25B +:102E90002EF46053A6FEA7A9E4871E5580DE437971 +:102EA000D44EA7B79F7DED233D57847E42B6D0FF19 +:102EB000EE16C9A07C8B5B17F1A187DE0F901D0F6A +:102EC000412ADDFF9FDD55C8F1E26FB3ADFBF6CCC3 +:102ED000E059E2DBA7D2C9895A612FFFEDF94BC94E +:102EE000AF2BE997DF5FC4F33B127DBD9CF5F51C6A +:102EF0005D56C6F5E5BB5DAF6C2CE3CBAF8AC62C47 +:102F00002E47521E023FAA8C0A3E9C6BA9CDEC2F85 +:102F10009F5199DBD146FC803F7980F2BC95FFF34D +:102F20007D96BFE7E723B4F03CFEFB57A379BEB420 +:102F30006CAF159F74303DA382BA44FE65A54BE883 +:102F4000DF735F29DCCF9E774CCB0C454339288952 +:102F500036B4719CD3EAD2096F9EA741F0AFD5C3B6 +:102F6000FA4AD5621F931D575B314E47FE35A5C403 +:102F7000FE4CF3C7F6BBF4ED745ECE06EE1F1B0EDF +:102F800032D54722DF76A711FF1B20336E3F9ED636 +:102F900027F9911DE2C60853BBDA00D7C79DEB6F36 +:102FA000B3C5BBA131B4876C5A272AA78979613B85 +:102FB000D3D54B27D1E5D16C3A4772DEA6C98974C7 +:102FC000FA982E8D703312049DD05AA493DCA84831 +:102FD0000FE9737518C8A46292E9AA1C0B6134DA70 +:102FE000F0E806B8A46F48FF54A6F4D6DD289B4D40 +:102FF0000536EEB7B21FD15B478539A977FCCC5FA8 +:10300000FEAE7E23B61FB3FC749437235EDE3CAA6B +:1030100021DE2B2D44D5EA257933B83D07E7A89961 +:10302000CCF528DBDB85225E2DDEA67E41EDBBA242 +:103030006901BA17CBF82683C7577438D8CEACFECF +:10304000DFB7649450BE4C6E5BBB13CBCF164746C4 +:1030500090BF523A20F4FD6C5CFFC5F796F0FB93ED +:103060004F9B1C81794852F14B12A4E3FC2B7FEF5C +:10307000E17BF887DEEE895E24397C490A53DEADB8 +:10308000DB61FE6290A8A36386EBB4FEBB93F29B68 +:1030900037B67CE0ECC4B22B3B742BCD3BA9A566C4 +:1030A00026F16F3234D4525E11F57388E5C26FF9A0 +:1030B00031A7466CAF21398C85AE598072546BC9EB +:1030C0009FCDFF564B8E0F90BF82E55ECB8FDA7B94 +:1030D000F087857A9CDC99D0C6F9B10D707810F133 +:1030E000D9FEBC3BACCE213C8D7ECB7DA71187B7F2 +:1030F0007FCA16FEEB3F650B394CCF09AD267A57D8 +:103100001DFCD0998EFBFF4C8ACD4E97FE21B9AFA6 +:10311000A6F197E41EFDB2787CF791F72479AB54C1 +:10312000634ECEBB9E01D653CFBFD5C271E0F33FF5 +:10313000D5BCA4372016FC11D5BF7CD3C9F987BDF7 +:10314000965F5EF3E69763294FF8E5FE55D7109F2B +:10315000EFC8167E13CA47790AC9E12E603D69CBD4 +:103160007109C9319252A289FBF012928F7C928F21 +:103170008EB92CB77B6510722AE405E543A37C7FEA +:103180008986F2C2E38B580F3475BC3E8AFA9B786D +:103190002CC3893ED5B885DA23AFABFCEEAAA4F5E3 +:1031A000740AE1A9A499B30A97E47ABC04C1F8FBB4 +:1031B0008F63BE743EEF6396BFFE9E4FC8772A3D75 +:1031C0000288939B383B2FEAB61F609EAFFF1BCA55 +:1031D00051A1512693FF5B7D42D897EA3F4CB979C4 +:1031E000A7A8B3DD9F6854CDA42BD049731AC81C7F +:1031F000C19460642685B16467743C8709581AA835 +:1032000067A72DEA38E410E23C9AEED99ADBBE3B80 +:103210009AE298EE775CE021FFAC69EEF3747FDE12 +:10322000FD8E0764A9AF3EA67C6D3CFE92CB6EA9D5 +:10323000339DF25D6DD91FCC553D283793AD7D99F7 +:103240007F991B552F3FCE2E67E6186D84B3506EC5 +:10325000A82D1BCFB9FBE4D7390843D87BEAC37448 +:10326000F2239A9DC6688D4B8C8BFAB18B3B091F5C +:10327000387EBC754F4C724879DBB38D59DB580EE4 +:103280008D8E9BC89EDC2D6907E97EFC23CB7EDA00 +:10329000F1EE32E1CAC0F2E65B66931FA50D5480E1 +:1032A000EE53EE7EC29110978E304DF6FF2B1052EA +:1032B00061C4C76AEBFE7279927F54045127E561BD +:1032C0002A43695551AD6F7E7AB595875E7D85F845 +:1032D000F6A36CCBAF2A8442F2AB101F9CE788BDEB +:1032E000A904B6E3C7CFCB419627F39F417E86F56D +:1032F000296CCCC8ECEB673D926B4CF1235F3B2C07 +:103300001C365979C358931466B9780E789E29678C +:10331000F46D744F867C79CB9F43FB02C6D914D5DC +:10332000E47CFF147F2198945745354E727177AB3A +:10333000140E53FFB0D89F8ABFE4579E879D75E453 +:103340006E4E8618F3E11EE203DF9B27F1A1F1E444 +:10335000114A7BAD8924DDCB5C264FBF1BA0DF7BF0 +:1033600016778EC5A7A13034DEFF84F6CC7EE3C588 +:10337000DE7C8FC9FCF8CC21DEF3BD6ECD8F3FE93A +:10338000F4BEEA236BFFC37264FB3D3DF3E10CF92D +:10339000D978AE15161F563F67F1E111811737FE38 +:1033A000121F2A21CCFB5F63ED3F799FB8FE118A83 +:1033B00037EF413F9D70B97C6B22DE565A7C58999D +:1033C000C4878A9024D60D2B625D2B1EB80BEC1F90 +:1033D00041E74A8BCE64BA56398071B40A7164EA07 +:1033E000FF7974269FD3F5F6398D825109E734278A +:1033F000EBAACEA910F40C8A376D3FDBC643F2B8B6 +:10340000D9969F7D63A3F0379B3BDA3691FC97EE0C +:103410005734F2039A3B7AD2E97EAB6CBF4269170C +:10342000E86E2DDB6CA25EDCD33EEC167AF75E7A9A +:10343000526679283B511AF6503C72A234B590EF8F +:1034400019F52C5ABFFBB8B0BFDDC787BD51C27E8E +:10345000FCACF1A4666A8E97A6929FB007449E4189 +:103460003AF1B73FD2BA6547D5899497ACC3F3A078 +:10347000796FFCF5E21DE46F2CCC117980231DD50A +:103480000BE93CD71C9735FAFCDC71F15E70F55303 +:103490004A58A6F3551EF4FD08DBCFB73A3441AFC6 +:1034A00083D7AFDC3F3CEBAEB878708985D752AF9D +:1034B000FEF83CF203F352F95DD68D431C6C17BB4A +:1034C00006A6FECB3C9C6F84917F091F613CEFAE4A +:1034D00097EF13F16D93047EDCC811FF7D4E8A1FB8 +:1034E000BACADD519AA76BDF49BECF9BD97C52DCAB +:1034F000DF59F7D6369E92F97FB623C57A6FD3E0AF +:10350000A4735A73D2AE773AC99E072D7FAAE2E917 +:103510000FB8BE92E202A2E76989DF3F1EDAFF22FE +:10352000DFF355EC14F7802B5B1E73125E57223EBF +:1035300075D223D0C07A7A558B53EB4FAFDCD3983A +:10354000585F71055C36E45879C491309270F9E5A2 +:103550000CA1D723D125D734517EEA6D17E3E45B64 +:10356000F0C9F6F1B89587EA89CA86F3DADE7EE714 +:103570008EF738E9BDD4ECD6CF997FF35A0FCE221F +:10358000BE7C1F42AB699FDF6F4DD5C86F9DD729A9 +:10359000F4C9DC5657382C517B64A3782F21F4D121 +:1035A0003DD6F9761F7880F76FA29D1A8EF2BDBACC +:1035B000FDBED9EC3797423EE5A9BA00F94C046F3D +:1035C0004D3CA7EF1527F2652E7C7E078DC3F520B5 +:1035D000CCF7179DCCE755D6FBA2EF4127AFF33DC3 +:1035E000E233D6BBF346DFCCF606E3547ABFB77AB4 +:1035F00067E27C154976707B8EF0DBAE940F483E17 +:103600008F365B4F58E7312F26F4D5DC534A80F2D2 +:10361000F7EDD10D2594E7B5F9937C1EEDFAB7DFF0 +:1036200093FFD1F2BFEDFACD96FF1BD1C2BF2AC3E3 +:10363000FD1E05EDA4C91E1EF0F73EEEDF95C7F98D +:10364000DFB1B9C26F383FECD0581DFF5CFDEACB4B +:10365000439D051C6FBC9B83FB5C25B7FE8ADCC6C3 +:1036600057072BE0A3B803E30C92B787FC1F3D5A22 +:10367000369EF42C74D03D50A5DA308FEE3F2A7779 +:103680003A021467801AAB233DF1D97E49A778FD31 +:1036900046C209D2136C956EE0FC504EE8639A3F27 +:1036A00068781DEC7FCC9280AE4CE6CFFADC497C8A +:1036B0003D9EE4CFCFBBBC3FDF951317C71F1D5600 +:1036C00098B1844A55CFCD4CBBBC3F5FF195F027F4 +:1036D000EDCF2B508E89EF15AD12FBBFBDFE64AE52 +:1036E000C4FEE4FE079C14A7764BDAE7A9C8904114 +:1036F000B997FC2D7EC774B76DA6A48D2C37CD6D00 +:103700009FDCCA79CA971C504038C412AE437DFA78 +:10371000FA4AD653E710E7743F7E8F16AAA379B50D +:1037200010546D417B718E141EC50F7B258E8793BF +:10373000E51E94F718CFF63BE75525DBEAE8AABF6C +:1037400006365871D5462E471F38CDEB8C7ED9A949 +:10375000C91AE7259C9C2F0CC7CD57D057CFACB9C1 +:10376000425E6C6C6E228E6B5E4FD94C7AB8FBA8B1 +:10377000A251DEA7B9EDEFBF1B487E18FAE105A400 +:10378000E72D7FA5B9CDC37171F7C9B430F1F353FB +:103790000BAF5D567EBB6692C2FC91278B72F481A3 +:1037A000170B0807DDFB2F0C0DE1793F7FE0C551BA +:1037B000069F7F98CF73D57389EF1BD74412DF2FF5 +:1037C000225DFC5EA6F22D717F86748D70FA7AE917 +:1037D000DAAB76A607FA9133496AE3F393A5C4F806 +:1037E000B4F2252518FF0E08F77327E93F23D7F217 +:1037F000A3D4580ED9D159B93AE3A2A6559CB7BC67 +:103800005F94B8FEAD22DFE2E0F5FBB4979BABF925 +:10381000DCF353F99EBA5D053303EBED6F7B38EEB5 +:103820005BFBFACAA2F83C1C48228EAE74C4723804 +:103830001E3D29337DA8FFF89DCBDC56870F390547 +:10384000470A5E5159BF8D956002CE63D2BAB994D2 +:10385000073CCCE3DB2D7B5D39598CDF60E1A8F9B7 +:10386000F5B9A9141776EFCFE6F7C7737304DE43F3 +:10387000B9C11FE566F7C63197F347E3E22C710F34 +:1038800081FB2479DAF3B62B3C4FA238F8C25B3FB8 +:10389000A2FD1E55F9FB1735FB5D26C56B95EF7A2A +:1038A000386F01A1D0B514D7AD3D704F91F852E7F4 +:1038B000063E8F2F0F1CDDC4E3F639F8F660CDFE0F +:1038C0003773D81EEF9DF038F93BE8DF7C8FFC9D05 +:1038D0003DAD0EF6774A4F8C67BCED393E3EAB905E +:1038E000023008A4D2BC6B8EAA4192F33547C7BF01 +:1038F000368FFC9413E5ECEF4827C667919E2AA308 +:10390000F897FC9DA3C3B86EEFA73A57F0ABFBA0A6 +:1039100087F314121408BCC0B004BCAC6EFE03FBE9 +:1039200001AB5B14231E37F6B8BA5C95E7A927BC38 +:10393000605913910CC6C32E51AE6ED99343FB58F8 +:10394000E588F0F9D6EC7488F62651027D3F15C75C +:10395000990199CFF335FA08CFE198145E4A76F2CF +:1039600098E5FF1F7B27740DE9C16333424554E698 +:10397000FA13F336269433DD202DE0733FDB2CFC65 +:10398000B0E473D4FC56FE250B12EEEFEC52F10BB3 +:103990007CCC758ABC11F96F7939D6FD96CE7678D4 +:1039A00016E9A305FE2C89F2F9272CB979C3BADFF1 +:1039B0008149C2FFB6F3F8685F1DF1DFE748CEEB3F +:1039C000FFE0F014B61B2F48E29D41A438901DE89B +:1039D00087AE5BBEEF48F05BFAB4CF49D47F3FB807 +:1039E000825FF58AADFF46C008E1EFA7A592FE3ED3 +:1039F000DF8E7E2CC72DE161C1317DD7B1F5CB11B2 +:103A0000D47B3AEABD76D47B54FE0379ABA3B95795 +:103A1000713F5033F234E7998E1D7CE7052FEB613F +:103A20000FDB9FE9DFFC25A73FBA6A60019FFF0615 +:103A30005898805F1B0767417CAF3819071FD97AF8 +:103A40000F3AEBAA496E0D7715BF7754C29B8A0BCC +:103A5000C5FD21E5772B5BE7F3F766EC7BC54BF6FD +:103A6000B6A506C81ED58CBCB091ECC259EB5D3A28 +:103A7000D23DD415673FCEE67DCEED6BCB2166629D +:103A8000FBC1912EB68F6B66497CCF80007E8BBECA +:103A9000977293657ED744116724CF1807505C3F17 +:103AA000A2F9838D743EB7A27D35BCC407916F5DCA +:103AB000B350E2FCD3CD9312CFBF06324DA1FF7DB0 +:103AC0005C1641C76C7A9F7F9B21B19F36DF48EC23 +:103AD0007FEBA2F98CD305D67BADDB7E3CFF06C223 +:103AE000F92DD67BF52BE16BB03FE4F4A3DC7477C2 +:103AF000F4DC3A46A77BBD7F1F4A7CA9B0E428507E +:103B0000A4B7D0BD5CE0356D5C2D8E792EDCB38F13 +:103B1000EADDA64FA2FBED4C4BEE36FA421ACD83FE +:103B200076681FDDDB5538DD1A9D873DDFA3B9E2DE +:103B3000FEFF98233C98F4892DC7815C28BB372D64 +:103B4000FE7CC5B96A94F7A5F94AAEEE7EB166E48B +:103B5000AB63494F1E3B7874AC33EEFCBAAA4345C5 +:103B60006C9FF61FCAD1D3E271275BB853B994A4F6 +:103B70000596DD4DC46117E190F2D4CD6FE6D0BB60 +:103B8000E1B3CD33B3253DCE2EEF7D237D78DCBC74 +:103B9000675BC57B5D8CCB46FC60403C9D3F673AD4 +:103BA000CF46C47C28857C6F56B16FDC44F11E1172 +:103BB0004CCA8056D0F7E6396EA8B5FE1F02DDBEAE +:103BC0000F37064974DF699A83288E72028F370F88 +:103BD000B8F83EAF1BCD5194F38DDA36F1BDA52A6E +:103BE0006530D62781F639DDDFFCC03A27FADCC024 +:103BF000CF271BE2FD16EA717EAF36759EB887C6E9 +:103C0000767EAF36AD0A027CEF69B54F9923DAAF05 +:103C1000874E0EF0A7536A0AE56C06E82AD567823C +:103C2000594BF2D6DABC5BA1B02F9AA37A3F7683C8 +:103C300088F1BE254F49D37C6CE3113BA3B3C47913 +:103C40007B091E54C85E4F04BDC7A28BDFD54C3222 +:103C5000F4DDB49F072D3D30153A989E002D4AE7BC +:103C6000FE77E0FCDB54B583F73140D733E99E643F +:103C7000D7E16AAE1FC06897DF356659FD3F11EF87 +:103C8000D0AF53C3BCCF9C2AD17F3244FBDD67A5A4 +:103C90003F9FD7B5F7DBED88B09DEF5E81828B74D7 +:103CA000FDC42FFE9F88290D12BC8DCA345028F602 +:103CB00083F32B7C2F63CD9FEA16F581A0EF7E2C3A +:103CC0008FC649963E9BA5113FA4688E7C31F5EACC +:103CD000F9D69D034C6FFA5DB1733F1BDF7B7F15F7 +:103CE00068CDE5BCED23921C53709D807BB0786F4E +:103CF0001B8508BD2B46359FF03DA887FD0B1EA2F6 +:103D0000BC268440273F25F97DDF73E1EDFC9E65ED +:103D100091FDBE6530C0999CDE77038E02F1DEC551 +:103D200041F7F61ABF372CA3B892DE19D2BCEF4A7E +:103D30003B87F3646A7802CDBF5111F7F7173C4314 +:103D4000994EFB1DD003294399CECE191091A6F6AA +:103D50007D0F90EA8A2CE7EF6BB941A37BAEBEEFF3 +:103D600003C4F702518A747AFFA39643F43AECAF86 +:103D70000E14EF3A93DF175FF088773BF6FB84076A +:103D8000525EE0778CF67B04DAE7347B9FF2D5BC99 +:103D90004F301DA3F27BDF5BE2FEF7907EB4DF5D68 +:103DA000A29D1E2EFE1F9128DB8354437CEF4CC343 +:103DB000F351459C1C735122D7C0F329EE3D1F7A65 +:103DC00040457A62E34C5B7E23CFF1F7D4900F5CE1 +:103DD0002F08B8899FC9FBFB3FF4B9A02500460016 +:103DE00000000000000000001F8B08000000000021 +:103DF000000B63906760F8518FC099C2A87C74ACC7 +:103E0000238ACA9F25825F3D213C8305C1DE2DC0E8 +:103E1000C060C001C11FD921782A10374271300714 +:103E200004C77322F468F133309800B11D3FAAB97A +:103E30004E4C10DA9B9181A18B81814115884F20D6 +:103E4000E9936686D0D31D81E6B921C483AD807E17 +:103E500002E2B9D694F96B140F0DCC128ECA770F0B +:103E600040E547063130AC4452E311409AF9E6117F +:103E70000C0C1611B8E5E7C5A0F2D5D350F9A2682D +:103E8000F2B505A8FCE458080D00EC97F1E1C80371 +:103E900000000000000000001F8B08000000000070 +:103EA000000BC57D0F7C15D595F09D37F3E6CD4B06 +:103EB000E62593F080171A705E4848B4010608881A +:103EC0008A75087FA4AD5FF749AD8DAEB503B49890 +:103ED000FA079FAEABF95AED9BFC258901C34269F5 +:103EE000A4A80F148B56DB68B56B7FDBF6F7104A7E +:103EF00069EBB75FB6EBBA768BDDA0D6AA6BDBD4E5 +:103F00005D8BDD4FD7EF9C73EF24339317905D7774 +:103F10009BFE19EECC9D3BE79E7BFE9F73EF8B25AE +:103F200024567B1663EFE1DF458CD9F98D2DAC89E2 +:103F3000B1188B58FD708DB265BD1B4CC67A18FC4C +:103F40005531D68BD7F3E07F6625B5D795C3C3E946 +:103F50008CC9A9C889D802C614DD7119FD650B3852 +:103F6000CE39F08F3D497EE7E5658C35B0893F65F8 +:103F7000066367E33F228CCDAC769FC6FE5B259639 +:103F80009D6931A64AFC7B8C0D3EBD01DEFFF01120 +:103F90008DF51B8C35B291089BCBD8023646578BDA +:103FA00019325E17338BAE4D2C43D7DFAD1CBD15D8 +:103FB000AF3718CE5908DFF5BA7356097CE7D61724 +:103FC000477E29C1FD76C536F13E4B25693EDEFCB4 +:103FD000C357C65C9A5FAD76B52D41D7B78699D5E4 +:103FE0008F779B2D9A9FFB30B33AA1ADE9C31104A3 +:103FF000D97BAF27C758A11EE6686499D30870A77C +:10400000DC11B90CAEC30E7374985F8AB9F24278B2 +:104010000FD0C760DCCE0A966F4C03DEABE15E13B7 +:10402000B6471EC536F46386AFED8DDF5961A5F442 +:10403000C689767762D9F3315C2F8399F5D04F2901 +:104040007C949909FCBECD1CB8461597494DB86EB5 +:104050002C7D00BE19D5B2BC5DCDDB9DEF6EA2B646 +:104060005B056D36190FD7E322011ECE39C8E15525 +:1040700074969761C272E1BB4F972471FD9915A7A1 +:1040800055B56CC44B5467C6C3F85CE7FD6583ED5A +:104090002F95108EFCD3D86606FFEE87C573356565 +:1040A000DC1F49235C85486913DDB3108E467C8E86 +:1040B000E325F973C508E20BF1E3C75734F9FEF0C5 +:1040C000D599965A8671EC7796A42E4BF8EEBF2BB5 +:1040D000F3FBF0F72AD2AB4438A33F1DDA674BFC61 +:1040E000DF1D4C227CF8E8AC9D2D453C019D41FB39 +:1040F000D68747AEC6FBC0512C03E3EF529D2C3E42 +:104100005774D595914F8C3115E9E0B7158CBE17D2 +:10411000C6F79705BEBB136BED5180BBF30E8B65E5 +:104120001A11DFE7D1BACABAC59CF9300EE213F111 +:104130007590E353D186397E1FE1EBB810108DDF07 +:104140006DD40B9195F09DCFAACE421C5742B8E09A +:10415000FDCEC4DA14D227F04307F68BB1CF94E337 +:10416000FDA9F941650560E212A41199B062BCF2A3 +:10417000618E136C2FD7F3AB2493D6A9416942D635 +:104180002AB1E4F4041DA84837D806FA447E929375 +:1041900041BA51906E7CFD81AEF697E2BA2BEE618A +:1041A0009A678ACFEB3CF17C9C2EB47C6719A72BD5 +:1041B0000BF170BE78AE18FC39D209B67B124037CD +:1041C00012A713A49B9E04D089C4E9CAF0B5A155D7 +:1041D0008578E8493829DDB73E3DE374B329403797 +:1041E0003DEF4EAB0261C486F39F7257833CE9A951 +:1041F0009A57EE344E8DC7AE5CE66E25EA6B4B40A7 +:1042000007D0BF2BCE5A1E87ABFD803384722F960A +:104210003217A3BCE9AAB89C6D84FBDF45BA5B8A60 +:104220007237F35D925F82BEBA224E0BCECF9DA550 +:10423000B2036914AE46D57A807FF9A8437221A6ED +:104240003393E3FDEE55653EBC77572D1BC77BBD11 +:104250001FEFD59C5FC7F12EE4C499E21DE519B6A6 +:10426000FB4278EF0BE1DD6B7BF8E84B0C06F0DEF0 +:10427000378EF79D01BCF7D56D4E211FF509FCBFA8 +:10428000E102FE673196565C2D93981AFF729B6C83 +:10429000BE3CCDD7D62CAD0660AB7856662ECCA3EF +:1042A00062B06225D22FD3B91C424DE3FFEE72E01B +:1042B0004FE4837AB8BE07709FFF7209B5890F1863 +:1042C0008EAFD2F81780DC2D033CFCA5EA8CE17A96 +:1042D000C55E76DC3294277A86F88F1610F4A0C279 +:1042E000B89C51A4759C4F922CDF0FE3AE912F71B7 +:1042F000914F40C75833015733907581CF14F97AE5 +:104300008DD5E0FD8C613422DFFE79806F3583B975 +:1043100071D42FB621E17325097CAB4DC0A7AC66E3 +:104320008538E8A388944812FF9ECBCEE5FC6C4804 +:10433000384E8562D0FCE5DA88B59F832661BBB331 +:10434000650ED1A3F79D4A2942F4184D7468802B5D +:10435000D65EBB584379D5ABAF2F67A7A07FF96D69 +:104360009915003FC6DB125D65DD390FD77177CC3B +:10437000F9EEAFF0BB26A3EF822C3191FE34DDDCE9 +:104380007FB184D741D60CE32E94B8FC5D5DCBE5BC +:10439000461CE83796C6E72EB3E179DCB448EF5601 +:1043A000E8CE217A9F71BB62A6EE92DEEE4BAB6641 +:1043B0004C9A0CD7A1744F8AE0AF5B9642F83B0F42 +:1043C000C5393F986A3E5EA43FC83B1BBFC7143740 +:1043D000B5DE471FBD829F67B458C4B7DEFD52D615 +:1043E000BC509A4EF8950C986F85CD6CECD7A338DD +:1043F0005A85AF9F2CF0DA63B375C345F0F847A137 +:104400001F06A7DBE749D3F9BAA27DB58C4DFCA105 +:10441000BE3A57D0D5056C6C8E02EBBB2556E889A9 +:104420004AA4AF9AF1BD3FFC5CE8A951A71EF9056B +:10443000F4C02AE90CF4407C5C0F541BAF944EE8A6 +:1044400081B07DF461A3D08C6275BE3E1A41FDD06F +:10445000971E6B9660BD3EAEDA97221CE3FAF750CA +:104460005FCA84EFF63EB4ACC506FCF43EB6BCC5EC +:10447000F6CDBF45E2F376242E07BBEB76937C03A3 +:10448000F945768FA71F156584EBC127D822AE1793 +:104490004779FB29DE5EA88F4536C0B87DD1C114AF +:1044A000AEC3B87C616EEA52DFBC33621DE63F11D9 +:1044B000D65FAF75949E91FE12F008FDB560921C18 +:1044C0001D7BBAD42747170ABB27ACBFFEDBE4E845 +:1044D000BB9D2934150E3D74C85D5D8572F50CF5E4 +:1044E0005794DB317DB339DD7BF7F70B3EDD29A92E +:1044F00074ED12F60EEABBC78BD83D5E7F4F3EA728 +:1045000095C1968DE8173472BBBBB37AB18B7878BE +:104510000BF1817819DCE04A01396DA7506FCA0DA3 +:10452000B6E59753A5425E370879CD1A7CF2BA6694 +:10453000425E774506B91E9DE7E951CED7F39F1835 +:10454000243A53518F4A93D7BFBB6E0A3DFA01AF4D +:10455000FFFBB55FBC79BF6FFBA56A37E9D11E4190 +:1045600007CFB51F127A14E042FC037EFB012E79BF +:10457000B87704ED5759B7999F3E8AE8D36369E449 +:1045800017A14F27AF53509FCEC7F501213D0FD73D +:1045900007F1F15449405F79EB037AF4E7282FB42F +:1045A00027B22E8A9BA8E61410BF47A6DBFF84F72C +:1045B000CFB9D9FE05C9C383161BD511CEC11617B5 +:1045C000F8B94F1A4C5537FAF980D3E9643E00E147 +:1045D000753E8A817FB70B45E8337CBD239E791DEC +:1045E000E5655F5D0FE1635C9E3C04CA86EC74B7D1 +:1045F000C54DA03EE909AC436F9A8975E84C5D361C +:10460000DF7F9FAF432FC2310B67FFA65B10FEC851 +:10461000E88CA0FF4CFE8890EFBFDB007E883CE179 +:104620007FDC6064DE45B83C3F04E4FA7F9C895C33 +:10463000275F96FC97A07D3FCFDDF83CD2E55B4C31 +:1046400073FA911E2FCC6A191DF9723DE9FDADD5A3 +:10465000D0467D96523509EC8F1E1DF417D2556A4F +:10466000632FD143CA5982EAA253F8C7AB520EF95D +:1046700001707F5ACCE7AFE1FD97D04F369C940C88 +:10468000F853B3CD1AC2DD6DAC273BC3EBA7EA4E9E +:104690004A9D4FF4497AB2279A3D96463EA8664B0A +:1046A0003AE03B31F0BF97C0FD43A96682AFDBB86B +:1046B000B98074D803AA0FE7B1AA1A080EEDE3E493 +:1046C000C63CDA033D49B05B74BC9FA5EF87F1E3BC +:1046D000C1EDB5637A96A93E7CE2F7641F3DC594AF +:1046E0006C4112FEF17E582736F8555B83758C0AB3 +:1046F000BF326266C8BE7BCB9EB7B81F48E6DC08F7 +:10470000977F93D625A906E4554FDC6A41BC838286 +:1047100062DAB2A9C7839527FD75BAF1BC38C73CE8 +:10472000E7E6FB46F17D576118FF69BF30FB756C0A +:104730002B6ECCE840B9D89CBD6F14F5BAAA199D70 +:1047400030FE574BCB484EB51D4F10FEB6237E6250 +:104750008C0DE434BAF6E70CBAF6E6527405CDCD0A +:10476000E641FF93CD11B26F9524B77FC6AFB5FC7C +:104770007A8FC0C3E7232574BD2DC2F53D988544CB +:104780000783A7B12FCB974702F678C20ACA93D204 +:1047900086CA403B6ECE0AF40FDB338A62330BE1EC +:1047A00053003E942BE597A436FBBE7F7944E67A0E +:1047B0004BBE349BD127FC39EFF9F108B75B7E176C +:1047C000D1E86AB1B1C3EFA1FCD7010F40F7658909 +:1047D000F56E01E5BFC4B27514E350DE18F5E08351 +:1047E000F5512399D108BC57161D352A310E202FBB +:1047F0001A2B605C649A4A767257FB7AA207EF7BA9 +:104800003F8970BBE57281373966590D4D184F509D +:10481000CDFD69FCBE2DE22AE63E5C87CEF6C5637F +:10482000F87DB74225FDE38D1305831AE57D189EBB +:10483000F0FCE2325FAF93627E17BD7311F95FDB6C +:10484000F4C8BA3CF4DBA6009F25B15D9377A5FFC1 +:10485000F9F59B84AF10FC4F8DE34BA3AB82EBD3F8 +:1048600034B13E033AAC4F137109ADCF80C2E5C6F7 +:1048700000CE273D319F309EFEBBE7E5E1B93C11FC +:10488000C9E461FDCBA31CAEF24410AEFF293C7B12 +:10489000F0E8021E5DC0A3FF89E151230EF1CF763F +:1048A000418FDB95510DF9E84F254FE4D20CF12BE8 +:1048B000C2B7DEA73F3C7EF5E0BD0BE1857E7729E0 +:1048C0006304EF2890293EF7E695403CC3FD4494ED +:1048D000F35722F1A7E12F0F9E7E016FBFE08F7E7D +:1048E000FD4FB3EEF0ED0605E52B2BB150BE95293B +:1048F0004E5A06BCD53EF319D60DF7DFB42363FD3F +:1049000018B748F278BCA7FF9888C7D05026632B09 +:10491000DF56C8EE2EB1783C26C14619DA59E52893 +:10492000A9C13EAA6026C56340A24A387FC65690F8 +:10493000BD948C7B7EF17F75BCAB683CC9DEC1DE6B +:104940002B7D1FE32930DEDC0F70BCD3C017677BE3 +:10495000693C20CBE47B609FF781DE072313FE1BBD +:1049600027FDF2562323F9D9097600DEDF0A760007 +:104970005E99F2A41D81EFE8966AA29DA21B8F5357 +:10498000BCC0F8418C95A3AF23EC502477B4434BC3 +:104990001BD88908E8A1522B18C7D2AAD553D241F7 +:1049A000F7F479334FE5C7A2A44F6B13FDA7EAF7DD +:1049B000DF7D45BB32EDF3A715BD86825653CD4B47 +:1049C000CE388C91DDC6E388E3EF4598837AAD530A +:1049D000DFA839E4DFBCF79EBC8CF12563E88F6467 +:1049E0009617C3C7560C6AF8ECC4A8D1739304A6F3 +:1049F0005D34F5397BD407471F0E341DEF5F6F8F91 +:104A00009E4ABE2999960D4DC487644FEC28BD9AE5 +:104A10009D68447BF16A5AE79EE933D268EF6326CA +:104A200005BFCB349DEC588F0E0F4DBF9CE270DD5F +:104A30005597A7D01EEF8E6652E8571C9BFE1D1B94 +:104A4000C7ED79A79CC52CF42B6A284ED1F3CEDC98 +:104A500099D922F32A053A423C52BE22CDE9CA73C3 +:104A6000A2284EC59C5EF4174A8FC9E4DFEE28FDEC +:104A7000812DA39F6F2A591C5FD5E1BBF0FD754DB9 +:104A8000C336C61554477762C6E471BCEFC09F4475 +:104A9000F105ECE3F19514785E148E705BAD8D70CA +:104AA000FF3FC9F29D45FA47B532B77401CAB7F165 +:104AB000FB067EB7F699F9E53CAEAC3253C34F4BDB +:104AC00036F2CF04BDE703EBCC8CC8C4B835C80DB3 +:104AD00083BDE83FC4989645BE0CE3B34765ADE49B +:104AE000372B36E589BBA4CAC5E8274C45D74AAA67 +:104AF000F7F7683F4EF53C66A805A4336575D6DD2B +:104B000040F18F8875318988811169015D7F8F79C6 +:104B1000D398A1BCEEA7C39FCB8924D19B885B7798 +:104B2000EA35A78C5775037FB1FAA99F4755CB216A +:104B30007F8A659FC7F92B6C01CD4BA93EFA7C1A81 +:104B4000E0785DE67A5949F2FC1D33C0CEF3E1ED21 +:104B5000BDA8FD3AEA9768091F273CBEA136FF565B +:104B600006BEB953CE8CC9142F5826F44E906F8CC4 +:104B70005B2C2EF4985D26CDE074CBFFF28508DA2D +:104B8000A38E6EE3BA449BF663EC8919B3642E2FAF +:104B90001B9417111E1BFE43F12CFBD5E30CE0FC0C +:104BA000502BDCF7C751EC1292A351C6FB7BF428C3 +:104BB000239E31AE13BAAF2A213CE79E622FD54D1A +:104BC000CC0B6ED9C5F2973F8A36EBCAD2C9F3EB4C +:104BD0004D017DA15C60DA58F972F87FE495F31815 +:104BE0001B12EBB327D740FA616FCEA26B4F6E3921 +:104BF0005D0773363DDF955B47D7815C86AE4CCB56 +:104C000053FE6BA8CABD5B427FD75DD0FC0CBC32A3 +:104C100094707FCEC8FF6DE46D90AD184FA9571A00 +:104C20009A5D8077A882B7ADAEF9CD2ED0CD509DDC +:104C30007B4584DE9FD1FC0CE07368367F7E5ED7B7 +:104C400042DE7F3E6FAFE96AE2FDE3227E645E767C +:104C50009AFA012EDF9E964D2EE7CC24D535C8B5A5 +:104C60001B29E733345DC481C438804EEDD22279EC +:104C70002B6F9C8D18E89B4ED280F4F49B8642FAF1 +:104C800075287D66F09428799BF0E35ED4FC2CE0D7 +:104C9000A744E3F3DBA25C40F32591743EF8F5CA28 +:104CA000851D34DFF9627CD0379FF2E99B6B3108B8 +:104CB0000CF00C2D0ACEE374DFBF1E270FEFBD29C9 +:104CC0003B9F443A49640B68B6B25EF3718AA3799C +:104CD000789A7A1C97C70510AFD327FA4FBF8CC7B5 +:104CE0002597293CEF3D60356BC8674EA88D784607 +:104CF00039A9A2506E9AC0E394DF337CF2BB6632CE +:104D00005D3325437478956C04E0F9986C04D6BD46 +:104D100044E7FCF27EF16487DE6F0CB56B42DF4B3B +:104D20003D1261CBB134C7F1C9753619DE65A1F703 +:104D30006002A690132E8FFB8DB7857E3A5DFB9D9A +:104D4000FA609BAF4F8C5D59CEED4E6E677E9689B3 +:104D50003EE1F95A3E3B4EC67EBC6D823F44FA941A +:104D6000059F7BE38FC7A33A14D6D984F6C597294C +:104D70005ED5E6C68C185C4FC6E7E419E80F37EA43 +:104D8000E4B93CCA9ECBF5637621D53F48C5EB2FED +:104D90003CFC6FCD593B5FF6C9BB58F54D143F64E1 +:104DA000CBB95D638B387D2C65DDDF4F7A7AD445D6 +:104DB000B9AC24AD25987FF8A6A28A7CBDFD4D052F +:104DC000E03D34FBD6E7D17E7973B96AC5E0FD27B3 +:104DD00014937F6736B753012EA2A36D4B5FA1BA20 +:104DE0008C989265184F8ED54A443718BFF5CB87FB +:104DF000EF2B91A03E0FE16905CA3DD437B9CCDD58 +:104E0000B5F0EFEDB3D377AD407CFD1F59C4E1475A +:104E100029DFB16DE98C08DAFB7D51CEE7A02F0BBD +:104E20004A1DCA7BAD802CFE6DA586C6D9B694C33B +:104E30007968E9BC72AA4B4994B4A0FF199F37E482 +:104E4000E03827170D7F1855E5F67481F4D3C9179C +:104E50001FBBA09DE1FB65B45EDBD237519EC2FD56 +:104E600007394FF91536D2B209FDD6266331DA5F1C +:104E7000DB51EE621C6A36CB1FC07C6F13E0DF474C +:104E8000C7AB13DC3F519A18C51B9932C23E49EBA0 +:104E9000699755F9FC98522B7B317EFFA8A3676177 +:104EA000AD9834AFAD7E94E28C8336E37A9EF211F6 +:104EB00088FE3D823C31BE03F61DD93DAC91FB1905 +:104EC00006FC87ECA2E35F6077C3787FBB323226B3 +:104ED00001BF68B5413F44FEE3AAC2F7912E566A6E +:104EE000990306AE826F1D309FD1E4DC8074A83038 +:104EF000DF7BA877DF5D9241FAD9D67473493BCE48 +:104F000047BEAA1CE593DC14391183FEB2535658F0 +:104F1000EDCBABE8C7E33F3CE2C3C7BF4FA19FC7A0 +:104F2000C799423F9FCC693F3C02EB9A89F2B8DDBA +:104F30008FA276240AD7D7A3C1B89877CD4479FC3D +:104F40007240B157603F8FAEE2F5859405E30F08DC +:104F50007D3A2DFAE8D3A83FE29D560AE3A59DD1FC +:104F6000D0FD5536F5C73A9762705D199569DCED4D +:104F7000D16C8AD74F71B911157263BB9471311F0F +:104F8000E8DE54661D403B886528EF56B9CE94DCB8 +:104F90002AEC3CD4F622DAE94619D9F3DEF3AACF9B +:104FA000F1E7FDE92CF19F5BA113FFB237F2433823 +:104FB0005ECFD219D4DF83637194DB7BFD021FDBEC +:104FC000A241783F229E2F8C72FDD79F10FACFD836 +:104FD00014C81F8F8F23F0D31C7DA003F1B01D6E6A +:104FE000A39DE956A99C0F6C278571204F5E4EA9A1 +:104FF000174272329A0AF9BF868FBE8AE8A9C55154 +:105000002E6FE0FB6E85FFFBC606CA7382F47FEF4E +:10501000BD1922DF18ECCFF57F019E839FA6A2CE9B +:1050200080F5E9AEBD6A7023B2612DF74794EA1EA0 +:10503000B2236D83CB312FBEB2AEDC598C74A31872 +:105040001961F7F2BAA5DAC12B4E998FEACB05F3B5 +:105050002DFDE93CE527B5EEBE66E53C5C9F7C0A8C +:10506000EDBEB2EEEE66CC57F65F68B35413AF0FE9 +:10507000EC90109F6B0A0EE6330073583FCA2E2A3D +:10508000A432229F36B64CD015CC3F5AFB0986720B +:1050900088990AF91F8AF03BC275331E5F4D056F70 +:1050A0005B883FB74483FC599BD12C94335B9F951D +:1050B00003F436157FB2B3783E6AAA7EDD023F1D47 +:1050C00051FB8BD1A5C86FDCEF7667F3383EC8F78C +:1050D000003DAE107C9C14FC0B96B5B85A295C07B9 +:1050E000CF0FA27C92CFFEDA2DDE3B857FD38FDF00 +:1050F0008F96C1738A833771BB42B102DF9FD05351 +:105100003C2F05F26407BEC7924961FF723826F74B +:1051100077E9FB294137A7F0C3BE163DB51F761FBF +:10512000D2E199C23928F0E5D1AF97FFC64C0AC247 +:105130000BE6D420D28BE7CF34A99947118EBE8AD3 +:10514000D602C126C6EBF4FC6761FFF5D5AD35B1DB +:105150000E25AD0C06EC7ECFFEE8C9E5B93C17760E +:105160009A9AB2E8FB1E5F85E109E7E13B6B39FDE6 +:10517000C8DA20D911F1C11D76A4481E5E15F9F7D1 +:105180006F88FCBB17275092C5F3F0B7C92C8BF280 +:10519000EEE497F3EA7AB85E5B7848AD013CBC2454 +:1051A000E4DD6F726F13DC27BFCCE77BED53FBD4DC +:1051B00055BEF57825CAEB41AE15FA09BEA706E73C +:1051C000DF2EE2DCE505D4F7AF1F93291E39151F4A +:1051D000B4A60E1F517CF37EF5A04C717EA6B89F3D +:1051E000C0F7AFCDCB9162F67D381ED29A3A4AE332 +:1051F0009CBC23AF227DFC26A7492F45F9FCB0AE0D +:10520000E8DA27F6A968F39D0EEE6705BDE4C5FB55 +:1052100027EF18A3FADDF2C21FA93EA9DC1DE37532 +:10522000633806FA712BCC7D08DF45EFBC47F98067 +:1052300070DE368EF35BE2938B2B789C9D2983EB9B +:1052400028DF531B8914C34F787E719CDF9209BC01 +:10525000F6225E4FE1F70CE40A47FC753EE1AB9E97 +:10526000E6F9073D5AA0BCE4E9BE9FB0603C1F3D93 +:10527000FD67E1D866F2F96F5346B4FFCC77519ED3 +:1052800034CC4079C2E53FEBBA6521C6A3AB9C1292 +:10529000C6ED78E54DF467BCF87395F60976FBE248 +:1052A00089F1529F83E701FF6A90E2E1552D209733 +:1052B000400E30FF735F7E5D4379817521A827D151 +:1052C000BEAB2E2139269BCA2BC1F1787FAC9DF352 +:1052D000CBE19ED95E9D1A3B82F90DA51AFC0EF218 +:1052E0008F78BD70D458467EC74A552D9AF7073D32 +:1052F000BC522539E604F4B057AFCCF4CAA27E699B +:105300000FD67BD54DC66F4FD4ABA3597290EA54DC +:10531000230D37A19EED1370CA428F84E1FD948066 +:105320000FBE6FA3FD054B4B7637C0F7A962F0792E +:10533000F5684C4F16852F5C8FE6C1E7D5A5619DBA +:105340003FDAFB9D52E34DFEB8A61CD2735DB35706 +:10535000A6487F2654211F39DCD16ACFBFB39E7780 +:10536000C8BFE378DEA2AA45EB35601E5BD4E9FE38 +:10537000FC52C6ABB767EDE8FFC17C656BEAF92864 +:10538000DAE577A31CF2E8C0D3C7E17D235E3DA038 +:10539000B76FC4ABFFF3F68D9CAE1E70AAFAC98935 +:1053A000FD05BC5E9699DEFE02BEAFC7AB07EF7B84 +:1053B0007713F1AFB76FC4D3A7DEF877A961FFD435 +:1053C000157936A1376B39BF7C56756E457CC9C9D6 +:1053D0009E407DD916A14FC3F8F9DD947C30F6CB01 +:1053E0002FF9F860FFD4EBB35F9D3E99CE7EF7FDB9 +:1053F0007A4E674F4D2F1A7FDAA27D32B02E13F30B +:10540000E27E4A39A7197657EAD5A10D809F7EC161 +:10541000BFB108EB43FFEEBE05CE6348DF5B2E1B3A +:1054200051D1B42E5FC122F8BDBB041FAD91ABE3D7 +:105430002F023C3B56D7946F84EBF36AF17AA05E5F +:10544000B0FB90DEF7E734BA9E7CA1FE94F1EF3D0D +:105450003937203FF7980AC9CF3DAD1D4633E0AB41 +:105460003B59BB58E488BA6650DCDBDC8FF8FC7132 +:10547000E8FB80B71FABBEBC696FFA72813FBE9F6D +:10548000CB9B7FD276F248E7A52B221670220C31F7 +:105490004CF1EB94C1AC02CCFB86468B6298808FBA +:1054A000BFC7754839A32AC21FC60750F1476B0111 +:1054B000BEA11FD705EACECF89717B94357079855F +:1054C000F65B31BFC95BA7FB005F8D64EC17484EEC +:1054D000DF29DA5EBF5DAAF332C2517D7B09D16359 +:1054E0007556ECCF117E8FC4B423554467C63E4138 +:1054F00067AF7D9DE86CC62284EB77213AF7E1EB3C +:1055000077C5E84C6DCC608D3BFB4ADCF957C4A7EE +:1055100026E50DF4A7CEBA7D90FA6DF5FC2D97FD2A +:105520000CE96A8EA8EFE2C80592AA85F5017E4DC6 +:10553000C5B8BD95488EB9123CAF3DF8463BFA312F +:10554000DD982700397CD6ECB14BB1EE8EFD83CCD3 +:10555000905F679BBBDA71BD99AD8D61DE20D13460 +:105560002261BB14DA18129C7D8B11C1EF7B7E4542 +:10557000F98A1109DBFA2D63946FF4E61555795E0B +:105580006C4E72F32518D79066BCDA8E72A47B0736 +:10559000A3B856D5E706295F366779CCC071CF4AE4 +:1055A000DB91383EBF8959EDF03CDDC59F57D95A94 +:1055B000069F27DA325CD92A19F649DF3AC6933CAE +:1055C0006EB225EEA462186FA8CD04ECDFA1E8301E +:1055D000C3FD0DA52B06ED8CA0C70D3E3E385BD05C +:1055E00049B491D9791F9DDE25737C0EDA6F6AD795 +:1055F000E8D8AF44D4FD5C661B1437C9D07EBF52D7 +:10560000A4574EA70D3118C75C31B21697624BA351 +:10561000558898C4A7140F1B8ABA55F8DE505A6DE6 +:10562000A1EFB8EC392CC68F4782EBA625ED0770A9 +:10563000DD5E50A33C7EB2BCA7700FF2C5053143BE +:1056400081F5888FB6531CE928E0058D9358BF5B20 +:105650007801DA152DA5CC043C450706C97E37AA8A +:105660009965E3B835F9BE7988C715BC3E3AC10AD9 +:10567000B62211BE3E82F0AAE630C5B862D5050951 +:10568000E1DCA364FFF90E787FCF31D972998F7F67 +:10569000427ED7875A415E14B147807014ECB75AE6 +:1056A0002B253E39CCB87CDEA5663E8EEBB3DAF80E +:1056B0003DF10DD3A7BDAFF87DF8FEDB96558E7892 +:1056C000DC94DAB0AB16ECD48D6D3B76D5C250AD20 +:1056D0006D0FED44BBF5C5814D657EFFFB95DEBFCB +:1056E0002C1371D3B22B010F1B87B85F7D32EA9464 +:1056F0009D0FED5FF7C95607E249E4C1378BA53826 +:10570000744F8CE2B6BFDE27511CB1754872B1945C +:10571000F164853307EDF45FDF7DDB9C627EF7E6A5 +:10572000E352842DC4E71BE614AB67691DDA4A799E +:10573000F3D6DEA86D6B93F1775BC44A4958979016 +:105740003BB817E3CA9EFDF145641A9ED7E17E85FA +:1057500066513C68E52F3F9AC23AE64CCCF9DFB877 +:105760009E5D272EA67CF8E18AB554E77EF30B31C7 +:105770000BCB296E53B3F5860FDEDBCA5487FC1FB3 +:105780007D57601D6E8945437ACB157174D682FBB7 +:1057900038DD326660BE79B56E915E7F7354A2F1DA +:1057A0003B851F1A9E6FB4ED1B3BFD7E4914EC0632 +:1057B000B37122EE283704E38F83315ECFB933C64D +:1057C000EB25B7C49C9D382F64C7B64AAC937D6463 +:1057D00027D7AFC1BA63B7D9781EE3B96E8D6A76A1 +:1057E00002CE7AE7336FBF06C953A6B80CE3571E43 +:1057F0009CAB4D97219F78F04F458777E5B23B51A1 +:105800002FDE996BA3EB5D892C6E32661D8A65F3E2 +:1058100038D1F031DC17D66B56527CBA43E3F73BF4 +:105820000CF7587313DAED91C5584FD89773E9FD0B +:105830000ED3D5E62627EE6FCBF5F2FBB6ABADF275 +:10584000DDEFCE0DEE447BBAC375D7D5F8EEC7DADF +:10585000BE49F3EF60EDEB9A7DF73D783B58476F1B +:105860004DD1FB5DBDD8BF13EF9BFEFBBDEBE63614 +:105870004DDC9784FFD1DBD4A5F9F72575E8D63A3E +:10588000F4477B97D7105FF4EA26EDEF0DE36BA2A8 +:10589000DFEAF7D72FD94172EFF4FD406ABD9F7E52 +:1058A000A948E4FDF583F915E15FA0B713311FFDA9 +:1058B0006B486F4B685F3BD58F2B2B2C90D1A0FB97 +:1058C000E69A6F462FF0D99B316E07B579746D5A01 +:1058D00054D70DC2FDA6AD3EFE92575B989B007B50 +:1058E0002674DF08FB7761FA664371A4EF4AE03F54 +:1058F00009E5A84DFBB14F47BF7DB93CD1D19DB95A +:1059000016BAC6A788F7332D22FCADE077DB801EE0 +:10591000346EDF8F1D5884F6B7E5F27919376F259D +:10592000BF2D4BFBC2BCF94E9A5763705EDEFDB0D3 +:10593000BC6840876529CA83F51AC9073D4FFADB61 +:10594000936F5D27CEA5FD768713CB9E779A26E4CD +:10595000DA54F3EECDB5ECAAAD43BFD4A16B27EE7C +:105960003B44BB458F30DA2FA1D8145B515259BE4E +:105970000F070C365601B74CBE2F0D74AD857A5902 +:1059800036B2D7903F733CCEEAD2DC4EBBC6C717C7 +:105990009E3C8EBD93AB45F9A4B66D267D144B7D20 +:1059A0008EAEB79531A718BE0D8DFBB75B6299051A +:1059B0001AD04D49DB03446793D67D07DF272DB30B +:1059C00012AB9DE42EB713DE3C1E27BD24EB6EAC5C +:1059D00058BC5969DB44E35D823A6629E2F13CAA8E +:1059E00097BA4DB5525F4E92FC47C9FEBEF1196D94 +:1059F000DB49F391DBBE44D7F1F54D5A8447D9E03A +:105A000078C37DF97526E2C9E2FB97ECEC985CE17E +:105A10001F67371FC7D945FA7B2AFC9CA7A942FEFE +:105A2000DB976AD38BE0E551F63CEAA3930966A0C5 +:105A3000DF74F88573E9FB379FE0FCB05A7779DEB5 +:105A40001ED6355641FCD390F57DE7CE5C2BA78B57 +:105A50009CBB0BF39E0981AF523D4BF38935F17D21 +:105A6000191807C5F9F4E5B2D4AF3BD74BEF259A27 +:105A70000AC47F72759674D3787FB007311C9B6817 +:105A80001A24FB50C1E7A6EFB9C04FA2294F7C14DE +:105A90000DBF9FF29E733A537480CF6727809EBFDD +:105AA00015F1A1267B03F7B5D42EC26B184F474ED4 +:105AB000D4978F9E223FB0353744726110F51C5C3D +:105AC000B7A6AD16B46FB6097DE7E9AD3B859EBAC2 +:105AD0004BE8A5612D2DE485417579DB99F85339A3 +:105AE0007D269627C9FFD8813E15E2A996E5F74B9A +:105AF00058AF344C79211DD80D27BE4DE1CFB7D911 +:105B0000661EE5DA8E38D79FA087B4F545FCB56DE3 +:105B1000FACF486EEFA8E0FD76A447343749F9D0B4 +:105B2000C5FB7DF1C10A7584E29EDEFD8A92910C6F +:105B30006F2BD49E6AFC44E267068E5F5109E30333 +:105B40001E2A6A460CD7F79ED76F870AE32527EEF1 +:105B5000EF28195D47EDE591538EBF5D7F91C35FDF +:105B600029E0AF19E5F02F0FC28FF5E7379FC25F2D +:105B70002F6B82F5F1AD7F492DAC53407FE4697DF9 +:105B8000F4C6DEC07D63C560A07DF885FA99A3BE2A +:105B9000EF1C199D7B4A7A7905E9C5E717BF127793 +:105BA000AE46B919897F6E75D70A8CDB3B732468C2 +:105BB000CF19ECEE5A7721D8C3426E5CD3B681EC94 +:105BC00096CD039B545347BBFD3ADEDE2B91DFB5E8 +:105BD00059C805C61C15F5CD6BE9EC49CC89BEA9A1 +:105BE00071BFCBD3AB9B0DE728C999905EDD9C724A +:105BF000D616D33F9B7BA345F5CFC6B64D247FC6B3 +:105C0000DB0373395C8CEF2FDA88729CE4B139A71F +:105C100005ECECD7B438C1F1E281AFCE417FE2357B +:105C200069F0EA2FA23EFE4249603F8C77F5E2F32D +:105C300019144628BF14E728EE1779B15D1EEB5FF3 +:105C400034F5389B516F2C993CCEAB1A1F67F3B8D3 +:105C5000BE2927BED978E0AB0729EEA80CCEB90241 +:105C6000E8ED9F342D60BF6F747605E4F599CEFBA7 +:105C7000458DEF77794DE891F7FBBEF77C4E3C1EE2 +:105C8000CA23E6CF467BE13F4B177B6A802E007F1D +:105C900035F10F962E3C3F67F33B39D6B678621D3F +:105CA0003231514FA500DCF3FDF85F38E30A7F1C69 +:105CB00022CEF16EC6CD409CC7C37F78FEAFB596AD +:105CC00044304EFBDAB135B4EFA155E0618F3A783C +:105CD00075A671020FAF807EEAF2F1DB35039B8E71 +:105CE0002E87797EE1817485E4A3E72F3CB063EDD4 +:105CF000AC24E2AD6231EA9BD60738FEAE196ADF0A +:105D0000D515F0333D3C0EFE11F178B1807B1C8F30 +:105D10000DCEDA4811BB75B3E51C8D14B15BA7C27B +:105D2000E317C4787BCA06B73F08EFBDC4EEBBA239 +:105D300003F9FAD8AAF278E304BE36A6B8FFFE1239 +:105D4000E3FB405F01BDE39FEF4B8AB9FD3C8CB79D +:105D5000F7CA8BFCE70EBDA499DBAF28765F37FF4F +:105D6000B658FF17F7D6956D28224F27AD97D0A3C9 +:105D70006EB3F56A1EC7F965CCEA842EDFD39CCFDB +:105D8000C7A15F7BD9F9AD28E76F7B51A2F3215EF4 +:105D9000D2F7BF86F1CAB0DE3D9833A5807D3B8542 +:105DA000DD7D4D5C1274C1F15695F5D5D7C2FF1259 +:105DB0002B82F5B9A556B0AD86EA717DFB5468FF1C +:105DC000AF5717E3E903FC7BC3779E4874B46213B3 +:105DD000C6CF569A2ED5C1BCA9474CFF3EDBC9722F +:105DE0008D15C6F50E0584B5C2B83E791F75D65D12 +:105DF000B996DDFE3CD1F8BE49213F94B6AB77237E +:105E0000DD1F81714E50DCA6C3AB3F10E7A1E40358 +:105E1000EB25B73D487C522AF200E08F98FE3855BA +:105E20005F7CF079AC077924FEB75D513CB740D474 +:105E3000D93CDEF74217D6D978F56CAC71177F1FC5 +:105E400086A738DCECCB1F289E2FEDE2FBAF0A873C +:105E50006C8C2BEA56869FFB00B89B06788B036EF2 +:105E600047C8BF18D690AF134D3C1EF91D4167714E +:105E7000ED79AA2BBDB369BF81CF4FCE0EF6F7FAED +:105E8000B151D3467ED196F27DB05EFF432F7C1A8E +:105E90007C61685B913CAE135C710F002B492B79E0 +:105EA000DA94DD9814F50AD953D649D8832B29AF53 +:105EB00016C3BC1AED57B06DDCBF1B3515CAB3292C +:105EC000B50AD597AD2B770EC78BE4DBBCEF4C4DF5 +:105ED00027FC3B7F9533A93EB2F6A04EFAAAF3B851 +:105EE0004479DC5DB9869D2F47C92EA7FBEE957CD2 +:105EF0001FC3B439D6092C6560CFF17834AC7B1A56 +:105F0000E5CECCE3A506D773D973FDF15F6FBF75FE +:105F1000E5BAE07903E3F4A15AA3685FB51D8F5990 +:105F2000B8DFFBC1A8F302CE472AE3F57ED32EE10A +:105F3000F5129533CD4512E0E12BA5AC90590EED4D +:105F400052F331AC7FDE7BE7336B749867658CD39B +:105F5000CDBFC4533D48379573CD45540FCE8CB556 +:105F6000580F5EF921F3F7F8BE529A58BB0EE8A815 +:105F7000126BCFE99C809FACC17843E587797BAEFB +:105F80000EEF374EC8DB6DC00F8887AD396737E23B +:105F9000E95FE33C1E9D502C8A5BFF01E901E35F52 +:105FA000C0172FD33938238CD77DF2E772DBE6DDBB +:105FB0002F2FC1FBFC1C39F01F0ACCC7F7F72D703F +:105FC000FE5F1CDEBF2133BA16F349D1A4973F19F7 +:105FD0007B7E53D3C47EDE357263F98B3EF9D45396 +:105FE000C2E592AC70BEEC073C733F41A32BEED7E9 +:105FF000463B707BCEA47677AE81AEE5251C7E9DB8 +:1060000099E59893D01B78FE4E6FE8A5F3EDC6E9AD +:10601000C32A0C8DCB8D1A5EEF86F83DBBFFEC35A5 +:106020007EFC84D773BA804B6FFBE910CE3B851B97 +:1060300020A87D78C85FD712BE0E9C7D34DF01EBAF +:1060400035BBBFAC1B5D97F0F714A457DCC77D4987 +:106050002FD509A32089619D97D5E3221F1A350A00 +:10606000B5ED476C7723D0530CEB400DE28FFA125D +:10607000CC77990EB19FC71FDEF8CC3D7B4DA111A7 +:10608000FDB3822D99E4AF16AD6BECCEBD4DF1DEC4 +:106090004F9454D07CCACE6FB1505F4DD5FFC21221 +:1060A0001E1F3D29E417F43737F8FA7DA2440A3F52 +:1060B0006FD81478CEEB283F2EF07752EC3300F5F2 +:1060C000567C9C89E7A9CF079EF33CC5C9AAF1E796 +:1060D0000D7E3D3BFEBED82FF1BF4AEABB917F3E0D +:1060E00051C2EBCB012E3ACF02DEB3FC718C4F973D +:1060F000980139AF26013F013B46D150BFE99E7A56 +:106100003392A9EA65A2041F5E3D3CFA1794C73892 +:10611000704CA67840949911BE69C17CFAE9267248 +:106120005303FB9734EBA9BD7EBFE800F841A7AA53 +:10613000AB8B1AF3F6A2DE8171CB3F722A7DD9CBED +:10614000EEF1D3797F34DF82726547C9F23549AC0D +:10615000378D7B74B28EE4447F82CB899DFD1776A8 +:10616000F33AD08C8B715B5762C358375C366770DB +:106170008CEA2812F3D258BFD8C7449D682A4275CA +:106180009A7DF3AEA47A46F5AF5513F3667DB5EB71 +:106190000D9EFF50FE03EB32BB51D6E33EA248F604 +:1061A0009FEF4039FB135EE7DD0328C0F8D594F379 +:1061B0004D8D0CF9FDCD3B175CC9F541F2EDAFBD3E +:1061C000EC9B5FAC49C48384DC700DE67E04F9C5AA +:1061D000E479516FBC67859CE8CEAD233DE0DD5F7F +:1061E000A03A7B909F54715EA8EA5CB213F9FA4B17 +:1061F000825EC07ED5C47E01B26F3C3B06F8B2D051 +:10620000959CD067C0975F22BE64C097D2045FDEC2 +:10621000996B2579CB443E3E2DC8A7865D565E908E +:10622000109E2CC9E16D3997FAD51C9F19C1BC028B +:10623000687D6BDA72ECDFF8F411B4835745C662FF +:10624000B07EE95EE50F7E7B2D5CDFF97049E8FCEE +:1062500034B931F2C3249EBF11A1B8D8D61CE0AF27 +:106260006E323C31D36A46FC7A759ED1A443F1224A +:106270005937781E5ED499A67556882FC0F7F8FE58 +:10628000ACD3C1F3BD9260BDE95BACB1D986758B6F +:10629000B7DD4FF2B3BEED6B245723B58CF472BC5F +:1062A0008BD7D17B7044F68ED0BEDC7ADC8665E27B +:1062B0007B0FD27B80A78E880F4FF56DF7D23861A8 +:1062C00078CA6A4705D3F2FBE4C3CC857ECBF97963 +:1062D00073E1FE5EBF239F9B41FDAE5A68FF23AE74 +:1062E000EB3F0AB9F5F5DCD0D0CB14A7CA0FBD5CE3 +:1062F00037B1BE875F98C9CF01B518D949CA253FC4 +:106300002DA03C78D088509D6FE7D05F31DA5FBC1C +:10631000034F1A257D43FD8196F8BE82410ECF843E +:106320007C00387CF4FF4A098F9777E77AE97BBFD6 +:1063300016F074E706397DC9CF903DFD96C9B2D3FA +:10634000C0CFEAD95BB071DDE7C2BAB3453EBEBA91 +:10635000C789203EB421BE8EE1EF7874E1C9356D66 +:10636000A0E0FE10F5138CB30AF719883AE4F07B2D +:10637000E175FF7FA175BFE89D720BCFF3988B7518 +:10638000C6D8A90DFE7CFB80C3FCEFADBFD73EFC99 +:10639000427DB93F6E14BEC2BAEC56C8AEC9D3F541 +:1063A000EB7BD7D37EE3FABDB01E006F7D92F3770F +:1063B000BDEE969C93A4B685BCDC90E7CF1BC4F3DE +:1063C000063D4BE7443588E7F5F7DC4271D212C64B +:1063D000EB11BEBEF7661B9FD7607D828579B89BA7 +:1063E000290EDC5DCD6CF483EBEFE9A27536197FE5 +:1063F0007E30DF41FDCB6CEFFD0EEA0FB6918D7361 +:106400008F0EB8951F43FCD6F238ACCB003E68D750 +:10641000B41984A712EF7996C7795DC6CF133207F6 +:106420000DCA2B970D644756221DED0A3E9FD3CA15 +:106430009FC7F139BEEF8C8FAFD540BB7A888F5F95 +:106440003BE01A9837F4E2CEDEF359367F5E87CF11 +:1064500071FCE57CFC790340027CBC7D989F90B187 +:106460009D24AAD95727115DF3E7CBD93ED40F9DC0 +:106470001AB793E438B79F3CFED99A1B26FE399091 +:106480007B8ADAF7E70E52DBDBFF347717B3315F35 +:106490005C5A6D35A39ECA9472FA0F5FD57B0A369B +:1064A0007EBF0E1DB645484905EE4FD98CE25E30E1 +:1064B000231BF358D5F07C8F518CDE39BFCF813F41 +:1064C000A4538FCE8E9C3897AEE17825EB053AF336 +:1064D000D751BAF960BBED60B09D1DDE3DAEC7B0CF +:1064E000DDFA54F0B953083EB78F05DBCB4702ED18 +:1064F00009FB6D68E76A8C9F8BBC53F7747B16C6EB +:10650000771F107653BFC843EDC9B5511E6100F324 +:106510000F518ABBD3FDED9887A8C37DAE8374ED80 +:10652000CDB5EC5C0DCF4BDBEEDF89FB7BBE26F2FD +:106530000E6D1E9E53EC08EE43D7AAF97983A0EFA7 +:10654000DA4AB18E883936EA3BCDE47E6777DCBA29 +:1065500012E349F1EA3C8BF8EC99EE526E97950AFA +:10656000BF1BFC4FE6AF53EE2E8D04E242F6EC2C3F +:106570003D77D359CAA37795723B7C816A77E377DD +:10658000BBA7C37774F487476CD497652B4C8A43B9 +:1065900095827F8EF01BB6B112FDD40F65F9FDF226 +:1065A000E5C1BC467745BE1D7DE8FB3730CA435781 +:1065B0005F0FF3F5C9AF948803B669EB77952EC5E5 +:1065C0007C19CFB375556CAEE2F68DEB9DA37C9E26 +:1065D0000EF068C7635437AB99BC4EEB8E78E62B50 +:1065E00008E7C917B6929FF4159485684FA4C0E3D5 +:1065F0000FFA4BFB70FCC9FE92577F17F493527A47 +:1066000030EFDB27FCA4ADC24FEA127ED236E12781 +:10661000797578613EF4E21077E6C0CE8AA27D7784 +:1066200039D9C55BD56117F3F96EB3F6D88122FB72 +:10663000EDBF2FE82116E3F5F69D8D9CDF58C4F8D9 +:10664000BBD20B603D14A013B0EB743D5298E1DB5C +:10665000678F2AA7B592AEC7E4C5787E42F17D5D0B +:1066600023820EBC3A59A5F218DB07EB54FAD73354 +:10667000D2284F15F15D2556B049AEC98CE0DCD665 +:10668000F4B4E1F723BC71B6893CBA678F0E087B7E +:10669000742A3DA2378E0CF9EDF2B81AB45BA77AD2 +:1066A000AF2B6704EA91FB54DB45B9EA46D8EFD13A +:1066B0008EF6EEC7637681CEA158A5DDE4C76FD410 +:1066C00080F77DF4F936F803A78A6BDD99033BBFA9 +:1066D0000EF387623D1688FA1A968D60FEA8F3EED7 +:1066E0009AFD7EFBB754E7FCF3E0D0E9E2658C8CC1 +:1066F0005AEFDC946E714ECA389F0AF9FCD569BF17 +:1067000065277CF88EEA1CDF65A33C0E5CF217D689 +:10671000CD99C6C9CFA3827E1596A1BC5CB491EF7A +:106720009B8956F3731CEDFCA5E44FC46CCDB3AB51 +:10673000A3BAAFBED3AB5B7E50B7E8BC8707751575 +:106740007D15D6B92142F4149BF354CA4F076F0844 +:106750003AE895DCF28FE07AFC58A6F88356B3CE7F +:10676000DA18E0AB74C0FFD31B01BFBEF5385D3D46 +:10677000AB62F3FAE8AF94F2F8FD5D17723971502D +:10678000CD5423FCED0DAD242FBCE79D09FEFC8903 +:10679000329BE484271FAE4CD869EC1FEEE7D56727 +:1067A0004DE0D3DBEFC188FF6ABA9C0771BD2B3F78 +:1067B000BEE204FA25FBBB362FA37ACE52D98BCF8B +:1067C0001E8936617E989FA3B35C3783E7AB74392B +:1067D0002E4EB7F2E39714BAD09E11F5E0760BDF98 +:1067E00037179EEF54FB7DD695C37C60DCDF0AFE35 +:1067F000AD9C96492DF2E1F933825EBBC7EB69454A +:106800007C58D43FD21FCA476C83BEFBB4CEE1AFE5 +:106810009CE974909C9159F649B8CE1C6274EEEADA +:10682000FD0995EC6DA6640AAD687FFFB081F17338 +:10683000066D7A8E7EF71E8A3766385D39BA89749E +:10684000A5617E64AE3F3F3C42D732CC13CFA57DDD +:10685000B674BE90778EE50D867315AECBF59A7340 +:10686000161EC17BEBC7467E89757357E11AC0FDC2 +:10687000DBE2760B3E3F45FFABF17EBB627F06F568 +:10688000C580625FAD539C39B81F326FBD5D85F125 +:10689000FF7C752185F1B29E3695EA057BF442C3F3 +:1068A000FD48BF59BE0F606051CFE5E5E817A6B8B7 +:1068B0003E66CA11E28BFBAA0AE477CC02BF83CE04 +:1068C0007C01438DCE1568E5FE856A85FC1DC7D722 +:1068D000067CEF950A57E07B5BF58FAC55C0DEDF99 +:1068E0001B2FFC1CDBF7E81F5D8BFB1BF75614AE60 +:1068F000C0B8E3B7F5CBA87DAF344AFD8FEA9FE57A +:10690000EDF828F57F4EBF86B72B46A97F6FEC4682 +:106910008A53DE7707A78BFB0EFDB10AF342D559E8 +:10692000679AFF1CEBEAC28FA518DDB72834EDDDAE +:10693000BF55D06B7543819E97649D6F63BD6B752A +:10694000E330C37D5CFFE571AB615CA40F1C17579E +:10695000C5743F98719FE1F02EF1E00573E50319CE +:10696000F70887779107EF31F3831937CFE16DF09F +:10697000E07D6030F2818CDBCBC7ADF1C61DB08A03 +:106980008E6BBAC1717F83EF639EB310277FDF6C7C +:10699000B096E1F826ACFBA6C6337AFF69AC9F310E +:1069A000ABE17D1435B0BE67FA3E6E8D319F11DFCD +:1069B00087753CC3F79B757C7E447C1FD6EB0CDF50 +:1069C0008F60FD919917DF8775793FEF23DEB07EE9 +:1069D000D0EC15EF01DEF1BD2A83EB8F4377FCA1EC +:1069E000CA6F5F7AF9FF7BA73887424F70F93DF194 +:1069F000DD78645E02BFCB229B294EB69B9F8B3A0B +:106A0000E444D6E2F377B99CBFAFBD202D6B443A86 +:106A1000794D9A07F2484AC85E7E9AAE73DAC62468 +:106A2000FC5D98B3F6662336D18524DEFB7D15EE3A +:106A30001B9AD56ACD68F7CD6B56E12109BF3BABF8 +:106A4000352FE17767E916C3EFE1FDB9898971F167 +:106A5000F9267C6ED8217E1670039C9B490FF5F0B9 +:106A60007D19E3F0B208C28B789FE79F17C0B7B9D2 +:106A700071327C6A2A089F5AF802C3F754806BB3BC +:106A80003E010FDE47F85480675311FC1E1E952906 +:106A90000ED66DF23858F76827C3BAEAEE01C9C4BA +:106AA000386ED78C0E6FBF166F475C1BF59E3B4B45 +:106AB00066684FEEEBEE6187B0FF3D3243FDDD1DB2 +:106AC0005AC74F8AF5F3AE9D220F3055DCFFB20452 +:106AD000CF0FC8E503E6A9F2032B13C1FC805CD6F7 +:106AE0006BFAE3F2972582F981CEB27ED33FFFCBDA +:106AF000043DFC598205F2034AE514E388E75D157D +:106B00003DE6E703E304F3035D95FDC5DF17F98177 +:106B10004B130F537EEDB2048FF776267A4CC7D70E +:106B200056A60D50DBBB1F9EF7A4F3CB4C736FC072 +:106B30007F0FE5C7EEC1FFAB22BFCF4914CD93094C +:106B4000BBE896C5D46F0D1A5649CC93CFDB877638 +:106B50000ED207E617BF516DEE47FA5823DF5E40AD +:106B6000FFE451A36671CC77BE329E7B8C7EDDD76D +:106B7000C47EAC7DE80F52DC92E7CDBE31FAF7253A +:106B8000947FAF5628287A37DA97F0BC7565C7EE40 +:106B90005AB8BFF0A0F77B1F0333EA60FC479E1092 +:106BA000F4986BD8CBF372265D1FC859745D8307C8 +:106BB000CC63FE23C5FBAD91AF2FE0F9F1C3E277C3 +:106BC00042D4EA60DC25C65AC90F8B1DBFC62DF121 +:106BD000C571D7C8577D8CCE7F01B8709C2AC3DDA4 +:106BE0005DC7E35B14275D23BF51E28FC784C755A0 +:106BF0005996B9785EDD1359B283F0FCB65530EE84 +:106C0000235AD6C0FD08AD1B9E8E14CB534F39CEF0 +:106C1000AE2CE1D71B675817E37C21229FD138C3E4 +:106C2000C171B6197C9CF0FB538D035F64A83F6271 +:106C3000228E359CE0E7DF00FE883EBA32EC311947 +:106C4000EB09E4373E867A4E3D2BC98AD5A34F35F2 +:106C5000FE4F90EFA6137E776F81F71FFD9EB78ED4 +:106C60006FCCB811D7F5208F6B8FBF0FDD3FB3F816 +:106C700014F3FD5E70BE8FA6CE74BE6D64B7C68E73 +:106C80005F7C0CCFDD3B50CDDF67223EAD0A7E52EC +:106C90000F0ABB56E423268D7386E763FC2C118C08 +:106CA0005B035DD3F9186F3ECBF37A9EDE0C8FE366 +:106CB000C5ABBDBCB5178FF936F8CFC8778F89B88B +:106CC000CC41C187FB051F9E4808BF3C67D1FDCE64 +:106CD000DC72BAAE1C6D8FCD01FC3D0CFE2AE63D88 +:106CE00066B1FC2C6CB382CAD0FEFFA6949F85FED1 +:106CF00007D3F2B3303E3680F1005FBC7C60D177C1 +:106D000066E1BCBF11CDCCC27A6EB7BDCC3C00D71A +:106D100043DF55BFD609E37CEB3195F229C35FF918 +:106D2000C32CACCF7EF4FB2AF95F6F0BF9D8FEFDC4 +:106D3000A3B3AE83FB0716A934EF4327FEF14A6CD9 +:106D40006F5B54426D4777DE4E00DC07963E47E7A7 +:106D5000421D597AD444BE3CDD7B5E7F789F954DC1 +:106D6000C7F79EA33AF16D898289F505874EFC68C5 +:106D700016EFCFDF7FF4C9CBAFC4FD83038FAB1613 +:106D8000FAB378DC65197CF7C863E2BD2AEFBDD899 +:106D90002F308FFEC822958E733DF0D873347FE874 +:106DA0005F4EDF79F2E895C817DB000F68876E3B0E +:106DB0009B7D08BFA32F2EA1BA74807316C689BD10 +:106DC000E70796AABFE8C17E802744F391A5EA9F12 +:106DD0005F87ED27F9F8306E0AC71D78EC68EB7510 +:106DE00000D7B6BAD3C0FF8371F8CF22F8014F089D +:106DF000FF23F3E13D80F39BD1D159747D48ECD75B +:106E0000537A67E03E53B5603F20F6D3133F458D7C +:106E1000E626F45F5F177ACED232241760286B1013 +:106E2000F7E3A582FE9DAAB4909C2D6D08F1E9F1CF +:106E30004F33FC1D0D4FEE86DF6BD4C081C6B83AD0 +:106E4000C87337EDFF3ECF6769D5C1FE755AC6C618 +:106E5000FD94E79C068EA66726C1E1969C028E7380 +:106E6000041C0B100E69321C8B8F04FB57191997E9 +:106E70007EB704C67BB2081C4C79B503F5945A0062 +:106E80005E85F1CECE07E1B9B2AC92EF7B03FCE8B0 +:106E90003EBD140535F9994AD4E35CCE84C79DDB29 +:106EA0001B1CE7663C7301C6D9F2DAE5149FA9CB37 +:106EB000B061CC474C8597F0FBF07DC2E754786118 +:106EC000A173A898D242F1119087745E4418AFF56F +:106ED00043C1F1A79A87A2FFD7E4E717CB82F9E76E +:106EE000B7D83314C7D9D77DD445B9A378E70CB048 +:106EF000828BF10D55D47FA9B547ED8349622CAA49 +:106F00007BF1E4A977BE0CD83DA5C82FC3582771E3 +:106F10008A38DC9C8433807CC98CD45E7F9E45B7E4 +:106F2000BCF3710004FCAE384F5AAD3D56E8E4F4B2 +:106F300042DF55538502F2AB0C7061BE0EC6FB0AF0 +:106F4000F2ABDED54FF8F28DA305C7F94901E5850F +:106F50007F9CCDC171EE45B8C2E31C417B9FEC3BE9 +:106F6000AE5FE536752FD557C14078BEC79698738A +:106F700000DFF3E6273B7C3FA257DFB60DEBDB24B7 +:106F8000AA63DB80FBEAC6EBD86EE1FB68A7D56499 +:106F90001762BDA357C7E6D5AF4D7DAE519EDBFB53 +:106FA000A13A36AF7EEDC8E89202FE4EC49B059929 +:106FB000F6B97876632FBE7A1EC1FB37A782D7ABAE +:106FC000C70BD7DD85E1F4DE0FFFBE49F83A159C0B +:106FD0004C11E79A087CB6B1D1E76EC4EF55733B0C +:106FE00092880090BCE5D18B499EC48C1A92279E52 +:106FF000BEEF14FA1EEC6BCAAB77E3DE67CC6732E8 +:107000003B60C7C8D5C1BCBD6C04F947C61370F15D +:10701000FCE9941DB047C1CEA5FD223D8642E3C6E2 +:10702000408E1B45E83A3C1E63ABC92E52845DD4AA +:10703000A3D9F47B7B9E3C183F573BC9F3FBE3E7A6 +:10704000E886C609F3EDEF437C1BB67BA6C27FA79B +:10705000B0777A849F61E27991F327F8B70BED9FBF +:107060003AC213E5055471F5DEFF69198FCF7B57DE +:10707000A59AE77D99B9F834E791723FA74A17F9C5 +:1070800044F36781FAD09F96C945CFF9D8515AA6E3 +:10709000E27E93AF969651FDFE8BED31AAAB3E1189 +:1070A000FAFD8D43607E211D8DF6D5D3BEEBC37DE9 +:1070B000B1327CAFE7F6B9657EFF63B4F7D4755B98 +:1070C000FF2CEA12CC72EE6F3788DF277614101D82 +:1070D0006807DD7EF76E7FBEC9B95DA2F9C373B2E2 +:1070E000EB9DDB3FFD809BF6CFA32B30AFF0FB1376 +:1070F00075FF63B3711D4E771E294B66E9F775B6B0 +:107100002A9A8172F836399BC1B8B7F73BCA272350 +:107110008E8BFE6194D93661F174E3A53ED8F1BC43 +:10712000F352C3E7A46EAD8671D1CF00BE41BB550B +:107130005282E78DA5C5EF6D769AE277501A2C97AB +:10714000FF6E23D78FF2A0C4E9C63B6FAC3AF87B41 +:107150000FE173C6D082A6FCC9B3FC5C28EFDCB19A +:10716000125127AEE9161961E1DFAB8AB18F17F82A +:10717000EF5381DF6621DC8B59D1FD93E21C4ECCAD +:10718000A5635D7DF8F73327D37FF03BA9CB32A70A +:107190003EA731FC3B5ABA62BE52A4AE60F27B0AF3 +:1071A0007BC5576F7F0B1EA882F4F5CE7B74EE2251 +:1071B0002DE2DC097D7238C77F6FE92DC5A2735CB3 +:1071C000DFF2F27315EC089DB32A4926FA2FB67147 +:1071D0006939D6D5D8CFCAC988578496C438CB3A2E +:1071E0003A8FA2AD3C2AF6C18C909F6DFF9BB11ADD +:1071F000E382F29779DE8F95A912D697ACFC37CB54 +:10720000C1F6857A4B14F9F8478F2CA1EF5EABAF2E +:1072100055B0DD89E300DDFDE6E1C796313CEFE8DE +:10722000D1042B907EC8ABB85ED73E2113BF5DF76B +:10723000AD04C9F96B1FBFE1FE4B605CE9AF137C85 +:107240009FEEE3D73CC87F17A0939F0FF79D4FFE9B +:107250005FD4379DFF20D399479DED5C6EDC10E332 +:10726000E71D8D25D4FBFDFBEA3C7C78EDD5C6A25D +:107270002306C27730BD48F6C9D56B15F659CC97B1 +:10728000DA705D5F440F3C54CEE5E31B0995CEB741 +:10729000950E1EBA9AE639FC699AB7041CF02BC009 +:1072A000CFBD62BED08FE6E33E24E5B12EE78D87E9 +:1072B000243EBFE1F9FBE269FCFE3E756362428E4B +:1072C00002FC9FC57A8AD5071775CD6AC2FDACE965 +:1072D00034C6E9577DEB51927BDEF9EF5BF09F708E +:1072E000FFC6832FADFD05AE438A9FF77EDDB7DE77 +:1072F000ED391FDAD7ADD2C62EB1F07D39C04FD7E8 +:107300007DFBD7EADF00BCAF837D1787E7373E15EB +:107310000DEC2B797DE4572AC2F73AA0D000BBE2EE +:10732000A2B783FB4E98FC0E8DFF96AD15B0DE2301 +:10733000FC3EBCA6229DDC38DC47F569373EF19B5C +:107340007F42B9716368BFCAEBF88FAAC9FAEFEF41 +:10735000CA83FAEF7A39535EC0753F38ADA81E1A5A +:107360003F0F53E895EB1E7DEB5EFC5DBF371EFFC4 +:10737000977BF1F7F5AEFF8F7FBD17CF7D623F881A +:107380001B68DFDCF8F0AFEEFD22C0FF9BA76211A7 +:10739000A49B6B1F7EED975F82F61FBE5B5F897EAD +:1073A000E1BF9473BFFBB78FFD7106FEDEE82DDFF2 +:1073B0005F3313E9F3962757CD3C957EF92DD057CF +:1073C0003EE6E7D73C8F533F05E3CD84E6F7C4356F +:1073D000B47E6F3C7652C57D0E7F90D8980C7EC9E6 +:1073E00096E17755CCAF1CB5D918E2E7F0132F1D05 +:1073F000C57D82BF417BBCC87AC1BC3F14A1C3EA32 +:107400000A1FC27361B63CF1C93FBBB009AF510B53 +:107410008607BC8FF5A09D147EEFC6675FA2753608 +:10742000226CACFA82C9CFFF3F5BB399F5008000B4 +:10743000000000001F8B080000000000000BE57D2D +:107440007B7C54D5B9E8DA7B5E7B924966274C8613 +:107450004932093B2181882013088A6DB493483151 +:1074600058AC23A0060FD221BC8282460F47D363BB +:107470006D76121E214C608410DE3880B151A44616 +:10748000AB96B67AEF8048D5D3D35FB45E9596DAE3 +:10749000905A6B7B7D4CADB5F6FCF478BFEF5B6B1F +:1074A000277B260358DBFBCFBDF9FDF82DD6DE6B1D +:1074B000AFC7F75ADF6BADB98385DCF112C6EE7842 +:1074C00074D39F2C9740D9FFDE2F1996CC3A3458AD +:1074D000C1E8EF7378FF1EFEE772C69ACF389F3F70 +:1074E000693C877F196A96E7ED4CF8CF65ECB2CF1F +:1074F0002D8C7DFCF042771C5F3E3986B17C688321 +:107500007F5F1B29FFDAA23C7FD2C6D89AA76E7094 +:10751000875DA3DF1BE5FB2D8CC51D2375C6628C23 +:10752000CD604C3B26313616AACFF0B251E2F37A49 +:10753000DD1D2C50F3187BF7894CDD5705DF9F7656 +:10754000C4E6C2BBF7D7FFB9986531F68E2DB19866 +:10755000C1F3C4B30EF5103C5FF2ECEBF6208CFFE8 +:10756000FE532FDBB529B49C6CE952A8B3E1BF5799 +:1075700018D46F9778E58E07B3E28E6C2CDF3BB59D +:1075800011FA510B2CCCED83F7B1EBEBB46C9C5E94 +:107590001EADF7F618C0311BCBE30B2484E331DBBF +:1075A000D0A03202AFEB5599B13CACE985B20FCB1C +:1075B00078A13413DA3F7976367321DC131B54D764 +:1075C000E8EF8C75ABB8EECBE0BDFE3B3BF3405D26 +:1075D0006609FF5747B78795DA4353B0BF08C7EB33 +:1075E00077DE29FE7768FF7DC9AD49D5B04E5BC215 +:1075F0005E00EBD01FB7A8BD81D1F8669645EE2599 +:1076000093B1D646704FC54F2A1D7C23850EF07B63 +:10761000C4AF019773D101CC80E071E1F5FC7DF03E +:10762000FAAAAA51BFA9706B5DEF08221DBC59E9E7 +:107630008839E0D1599BB6F31E1837F1A28D1D820F +:107640004F164FFBBD4DCB1A3DDFDF003D6A267A5A +:107650000C37FF69FD58F82EFC9D924A0B1BA1CFF9 +:10766000E1F7DFB130CD049F0F8A9884EBBBE38054 +:107670002DA6037C2DFFC319E77567CC01F59D3F4F +:10768000F8FC21AC7F70C0C1B0FEFBA77E68C77953 +:10769000FE5E624D2C87B19507EEF9F827F07EC5A6 +:1076A0003E180DF075BBA39FDEB3A5ACA9B712DEE3 +:1076B0006726E8FB958F15B276F8FEB9A75E5F7C6A +:1076C0002FD4DFFF9F590107ACEB831FDDB1588238 +:1076D000FAAA5DB06A09DFFFF0767AFF5826836563 +:1076E00041BBDF5FC94CFCB872974D1B34CD7F1591 +:1076F000B36AC3F045FA30D7614AB7F5770D20DD9C +:10770000DF86CFF977D2E78277908F6EC3723C9491 +:10771000C7DC41E72549EDA8BF3B1C89BB032EC24E +:1077200073813C93F05C80F8BEAD2F791EF70BFEA1 +:10773000B9C39E58C1DB470B385D0CD0770754297D +:10774000E97DEAF746FB7D6A694A3FFCFBDB1DAC3D +:10775000A93F8D5C7A18FB9D81FD7D3631B93F4E86 +:10776000BFA3C7E1CFDFCF86FF009CD73C9D457804 +:107770005FF3F4EB1FFF0AEAEF226C008FEFE60DD8 +:107780007C7C2FE0F1DDFD16A6ABF0DE112FDE8B49 +:1077900072EA71073B044DDEB5C58B73278FCC634E +:1077A000CD33CEB3C8CFC3F57EC09E327ADCF69619 +:1077B000FA9EB7CA195BD712A6D2C29A1E18F4E075 +:1077C0006B2BEB85D2CA9ABEC7EB6355ACEBB5F019 +:1077D0001EE5815D51DB615E3B33019955C8E75978 +:1077E000C427836A0EAD9FB1A6A92857D6B7D46D1A +:1077F0007F0BF957D199EAC5FEE04FC3D2FA36C2E2 +:10780000E1BF045E8D79DA6D613500EBB04B2C84FD +:10781000F0B559C31D25D0BFCDE7A98419B30DBE5E +:107820007941A4CFC86495F8E94DC4338CE780FE54 +:10783000916ED8C96E86E32A7EEB87663E77B16883 +:10784000F069941B4196D80A72869599DE038A5D89 +:1078500093A16EC28BDD03F34EC2934B7DFBE2110D +:107860003AFE8914F07D8C706875A8BD502E645165 +:107870001BE28F592AFEB415D6B173E9E713062728 +:10788000E3F3EEAF07711FB8CAFFE1D67123EB5CDB +:10789000F8CCC601291BCBFCA5B88F2E744DF81D62 +:1078A00096806C2503DA3F27B1FE4E2867297FDEDC +:1078B000FBD674A8DB583DC2E324D6C78CF4731200 +:1078C0009FC338ED8CD53D0EE54F6CD1F5880F7D0B +:1078D000B954D90BF898FA4C68FEB530AF5B1ACBA7 +:1078E000A721BC26F787BE3105EA8B1AC74FB32004 +:1078F0001E7238BD9EB4F5E74D42FCC2B8B89EC5B5 +:107900002C61437886996A27B80AB9D5C002A20EBD +:107910007FD0FE5FD68C8F75968CFE7E513C76C3F1 +:10792000B5D0E49693B16B71DB5CFC42E279649F65 +:1079300070BF3A3B9399FA3B163895C946F707F062 +:10794000DD35980EBECCF321C237C094AB747CBE3B +:107950003CEF50A7746EFD60A1BBFE1A76C979DEBC +:107960000FC39DCF27152F3003390EE39E5E668B24 +:10797000E1386D9957EE427E78A3DDA15A60FC3F55 +:107980006313D02B6E66FD04AFD3D93D4538CF5A73 +:107990006000E9729223B7C4111E2C3BD009FC721F +:1079A0000B1BB40193B16F018961B98469542E65D1 +:1079B0004182EB7216DF8072778D1AAECC01FEBC6D +:1079C000DD121EE74578FB078A91AED9CFD2EB4B8B +:1079D00023FA0FE76BA3DE2EE88329C14BAFCF421A +:1079E000DE9B5AE30239BB4BF0E1F11ACE3FBEB841 +:1079F0007216F590E5D1FBF726D17D785670982F59 +:107A00004A114C3273011FFB04CA8CEF52DB19E39D +:107A1000FB9AAF62BF05FA6DCA09CEC94933AFD42C +:107A2000F92FC8E1F369C0EF4C74DE10D6EC1AB43C +:107A30006FF8D41DC4EF8ED7D8689D75206EB8BC82 +:107A4000099E42BA6F08B3A6CE4A04FBCE20AED33D +:107A50009867EABA1ABA374A11A4A7A0122857BFE2 +:107A6000FC3A97E758691EC67C59FFA91AE5D20B64 +:107A70007FC78236F645DA1DAF61D47F8F1CF521B2 +:107A80007D3434B7D338010013EDEBD9F6586F1AB3 +:107A9000FA1FB26B97C8B0BE9E09DE9236E027E0AF +:107AA000DA30C26D2843BBC46A7E9E2B9EE76A977C +:107AB00028A6E7463F9B242E770CFEE89159E31356 +:107AC00058B7067CF3901E3DDA9B3F87EF96C95965 +:107AD000AC13CA2121A72ADE9FB4F8DF516EEB97C1 +:107AE00068B21FF6072B23BCBDD7D2B78FF603169B +:107AF0009C302F0BE91C9E43FB659D574F60F0BEE9 +:107B0000B9E3EA090DA6F18C79FC645B7E2DF26580 +:107B100033E3ED8794E776A15C6C70FEC72EB33C2F +:107B20001CCAE274F5D75F5FED9D44FCA93E8E7CD4 +:107B30006ABCFF9EA0AF65B8BF40BB3FB4A8BB679F +:107B4000C1BEF7935AF6AD79C827D6E0045A47EB81 +:107B5000945294BFCB3A37D6A2FE3B24698F3B8127 +:107B60007F877A37F37AA526C950AF78F0F18B1169 +:107B70000F59AA2AC9F9D88ED5237C2A1E7C399898 +:107B800073C9687E54A02E23DEFC2CD0ABA131C17A +:107B9000E547DE8D7D3ED4A38FE570BD25EF1299BC +:107BA000F0B203E08D65A7C0C39339169ABFD1EE3A +:107BB000580ED763EADCE16339F03C180C2D590FFD +:107BC000F377F858A01397C342B42FEEB08388829E +:107BD000E75B2FB26B6D12E275E0C45294D7FF2BB6 +:107BE00083A15EEF1C37D0D680F610E8176DC00F6A +:107BF000351B7C0512D433AAED01DCD75FCB29A15C +:107C0000711A632FB7A11E3201A4872580FD456735 +:107C100017403F8FEC6701DC4FF2806706088E83C8 +:107C2000D988CF8B943E05E5D6FB15B56EB3DE380B +:107C30005A6EC94C37E89E14E50CA62BE67A6E4ABC +:107C4000BD20A57D69D2FB42CF00E9D15668D30E95 +:107C5000F0F559FB8F239E7C8B98DA0E32E3685B3C +:107C60007F0DC1E356C60EE5A0308E535D5198DA04 +:107C70000A782C62F01EDABB9A99AAC3F787E5FE50 +:107C80003A94D37F107050AD893908471F3B46DFC7 +:107C9000011FE7B6579AD79F5070BD1729EF648729 +:107CA00080CEB71E9BAE627D8C23B00ADBBF8F787F +:107CB00080AEBA6DF1B6069CC7B30ED61640FA1E5A +:107CC00020F8B210C74BB71DF004F5CE394E7AEF4D +:107CD000B1EBBC7D8995EA9B900F80FE9DC807C0E3 +:107CE0000F53AA4FD52AD0BE5256FA71521E47AC36 +:107CF0003E13F1DA0AFD4339799DDE86FAFCBBBDFD +:107D000056867A6CA714ADC7FEF4123BD163475672 +:107D1000B25C5672B97EA0E4CA42CE7E5A9F09ED8B +:107D20001B7507F17BB0AFF514D21168974D9D2AF2 +:107D3000D1A1920BF0B1B120D15D636C0943FBEE90 +:107D4000B9C17FFD6911AE43636467388B63CA951F +:107D5000287F7F6C6138EED1A228C1BBB39EA96D8C +:107D600095482FAFC858DFA23215ED1A80AA8C7043 +:107D7000BB1DDE7762DD3A7002F5C0DBBBA731DCEC +:107D800057A79CF911E1E1B51BC1A0007CDDCE062F +:107D90003714221C3517ADCB59DAF49BFB10EEBD1E +:107DA000A5815646F3E5F23306F213F07084E97DBF +:107DB000F74A2837EEF9163E77FBB5520B3C9F2A5F +:107DC000D65FE31F3C6581EF337437736079EC381D +:107DD000CDD701F4C260BE7F8539D17C1ECD88210C +:107DE0005D388E49F1AF61BB883D86FB399BE9A1C7 +:107DF0007D7B5605A3E75B376590BEBCB572B018B6 +:107E0000EDD2F73F6BF285B89D42E395F9ED71191C +:107E1000E4C74783D30B5E60081F41AF4EA61E82A6 +:107E2000F176DC708AEA871A986AA91CC157AC857A +:107E3000ED5F47F29515A07C1E7E6E03FE07385558 +:107E40006FBB688E07E61173428BAF80DEBF6DC1DA +:107E5000261DC6ED7C0AE63F154A435FA88829D750 +:107E60009BBEFFBA808351EF748A76653105E91BAA +:107E70007A5470BCBFDA00CE0097DBAB59A00DE09E +:107E8000DE097844FD773CB0A705605473EC201BF5 +:107E900074D17B99B9118E77A2720EF08BB110F468 +:107EA000E7A84830941BB3AA9B7CD86E63579F0FFA +:107EB000EBF7E46AC4779D9F25084E65D5001FD86F +:107EC0000F36D90764DCE7F4A7419E02BEA64C78C2 +:107ED000A41EED7347F3917DC80FB7E60A7BC41A61 +:107EE000F3E17A36D9853C15F37788FD6755AE8D79 +:107EF000DA2DCFE5727569EEB05C5D9A8B727532E2 +:107F000008EE2A92ABA49F5A95C5C13686FDABDC1C +:107F10004FA3C47C080768BF8AB78F361E32CB6177 +:107F2000D11EE0E44379D879D1DD4467E37F2C6941 +:107F3000486735C7EE24B8655473FEB8307C62BE1E +:107F400041139F76767DE2C3765B918E268FD04F6C +:107F5000D9822D8E6298C75F2A601ED0EF94A79BAE +:107F60007DE1347A57E32716169F6EAA0BB8D40E1C +:107F7000BE5C5A8CF2E368C134B2FFCF1EF449F004 +:107F8000FC6101A7BE5CAE9F001E6A911EF56F32B8 +:107F9000867E06E60A945E6FF28FEC10F034E00FF6 +:107FA0009A47E90D53CCEF39FC376588F715E7F8A8 +:107FB0003E1BDE239F94A5BEE7F331F837C3CF08FD +:107FC000AE650BDEDF80FBED5F806F515ED5F801A3 +:107FD0002FC8DF4F2A015C8F7B18BE0982AF0107D3 +:107FE00047F5A01D9FCF3A7690E8B0518DBDD18165 +:107FF000F2AADACE7A19C25927B86E3C9A310DF13D +:10800000DA3C587362098E0B921BF745033EB58329 +:1080100077723ABEA87F12E2AD47E274E7B7C65B5B +:10802000115EB2A2E5E07ED320FC093B604D03A4C3 +:108030005F0569BF7C51F453BEEBAD6F2E47FE0761 +:108040004D03D7F17EB54CF2EBC327A5188375EE2F +:10805000B82F74DA8DF459C1F795F7EA5FBD1DE7C3 +:10806000E5883BA99DA34F8A3925920F24FC3AEF5E +:10807000E3F24F3F2891FEE8D09B82B86F68EBC2D5 +:10808000D3711F478AB57A859C447E5AF0DAA9FDE0 +:10809000B8FEB04B059A66253A8C9FE4F789931D8C +:1080A00073726AF80F28FF6F63B1C527B05FFFA036 +:1080B0001DE9ED0F824E36DC7063DB1C9CFF153230 +:1080C000C9BF1DF70DBE391EF9E418E81D384E7CF6 +:1080D000E16937D6ABED9AD3A487BE7F6CBC3B1D5C +:1080E000DD9AE41E4D76EB7DA41AC0C2D6BC1837CB +:1080F000E91B0E3D110C9AEA67C47C1CEBE039D1F8 +:108100006382F812F66D9F596E6E157A57B04A3B2E +:108110003648FCAC56223F376CBE6521E2C3EA51BB +:108120002B115E6F8BFDB1CE1D7C1BF9FF9D16964A +:1081300058077AE5BB2D0A957F6C51A934E85F5644 +:10814000066623FE57AD5625948B6BAC6C9D631A67 +:10815000639F08399BDAAEB1316413ED163872B102 +:108160001DB77F0C7E31DAAD6E82FE2AA9DD49DEB5 +:108170004EECDB62FF59159312EB4C7E9135FDCE30 +:10818000C43A131E6FEBCB49AA1BFA2BE81231F449 +:10819000CF39F92BF4CF507F0F5C12B68F41385690 +:1081A0000FD8F3010E5AD9E06C74AF7CDD32D78D55 +:1081B000F2C9C1B8DE9F8AAF1D802F82478B42650E +:1081C000AC4565B86FBDD3E2A3FAF6168DEAC56378 +:1081D000383C4A64B053000F07053E8C7EF2C670EF +:1081E000FE30DA2106ED40C7563F237B1D3562E4A1 +:1081F0005B1BEA27C097D6751BC8FF68D5EDE41F47 +:1082000003795D8CF3B7AA61D253A03D13FB19F932 +:10821000C5BBEDE1D231D0EFAD658A8EED6FEDFBE0 +:10822000931DDB6DB17339F4BE2D793E93C6703961 +:108230003549CCAB2F47E3F3F27948CF77F8758611 +:10824000746CD499355C1C4AE34736C17D10E30D4C +:108250009ED1709F81F35E133D3B1BE1EE09311906 +:10826000FBFDBAC5457CFD5135237FF1B9F8C580CA +:10827000BB8187584B98CA775A1A09EE6EB1DEED6A +:108280002D4D54EFB6876A110EEEEAC479D77FB54B +:10829000C0C35C01872FBACE617D025A8E45BBD127 +:1082A0001F38DC49FEE3D8AE06E2B34BA723DFDD7F +:1082B00034C69E36CE0078BC09E767F318780C9177 +:1082C0001FB02F27B4109F2B2CFA4403F4E7516200 +:1082D000A4977ACAFAE2CB50DF5F0F38013DD8B3DA +:1082E000E0A138DAC5EA3609F76C80672C6E85792B +:1082F000ACEE9618CAF38CB9E1D9E80F2A9D1A5E44 +:108300008670CFA8084808EF3173FBED667C9EDBD2 +:10831000BEE1EB1C6AD1C81F3AEC476DB3B27628B8 +:10832000DF6AA9D88EFED79D99DF257F6BB3EE500B +:108330001D8474EE8F5D615554A4DF876CE1B53800 +:10834000FE3DDBE7EAE83BB044EE9CFA309463F391 +:108350004277E3F383EB3714E37C1ADCDAC7A8EF48 +:1083600031FDC3393F9B49FB0BE97B8CC5E7A01C62 +:108370006CC8E4F52C4F5527EA7F0D63B5BB256823 +:10838000FFABED2F927ED8308EBFFF600CBC87FE16 +:10839000A68E09B68E21FEB2E5BCADA09F18D6967A +:1083A000669D23EBB5B2B74DF699BDE3CE38CED777 +:1083B0001E0847081FD1FB83282732594CCF07528C +:1083C000C9467B01DA593B32CE227FFED7F4F0FD5D +:1083D000D8CEAA72BAD67446F0BE3A10BCCB03EB24 +:1083E000BC0B61437C0580857DCA2DF803F86217BC +:1083F0007E67F085BB3A852F7446FBCEB9E69D2A91 +:1084000097B60BB964BC0779F020C2595BC0F94339 +:10841000D3CFCF0F0F0B7E78C2904F820FBE2C1C94 +:10842000EF10EB760A7998DAFE4782EF0CBF8D5F8A +:10843000E176ADACA8B9A867782DA067A0FFECE6FF +:10844000476EFE1AC0634CDF845294131E4BEC97A8 +:1084500048FFEC887D1AEA37467F8FFCED70C13CFF +:10846000E827438E15A0FF9F3D02EF35B41302F9B4 +:10847000E82F993CF7E3C51AC06172198B9543E95F +:1084800091E3B5A88FB3271CA5BD2ADAB7B09FBA70 +:10849000D02EF52EC5768F083834B3E042B42319B8 +:1084A000D891D86FAA1DDB2DE6BFA9FC6ED2573735 +:1084B000A6D8A5463F8F8C31ECD27D64975A87EDC4 +:1084C000D29A6043B25DFAC818B24BC34C924C7258 +:1084D0007E4CE8D79CAE13242FFE51BC407FBFA733 +:1084E000FEAC09F6CFC0F33B29FAE0143BC727AB3B +:1084F000652AE9D901EEA738DC0038C931D1A9D005 +:108500003B644F4992FF09FE7BD29E8BFD70BF5F9B +:108510001E9274EEC87BD9C3F58A2919C3EFADA8A2 +:10852000978CBCE7F0F62B4C57E0BBBC9092A22F87 +:10853000FC63EBBD073FC4FFB733D24B419F9F8A1B +:10854000FAFBF66BBDB2A524890FF33C18E79F6BCD +:10855000D7515E187C68F01FC0CB9E0FDFBD7DED4C +:1085600004D2D7ECD1CAD30EA86FBA422D417A0FEC +:108570007BF8FEEC8E2F6C9B43F6BE1C437D735341 +:10858000D13605F5F4ED9F45EB4AE1F9C6172D818B +:108590003676EE75187AE7C6FB0CF99AF752DC448A +:1085A000A76E9DEB9746FD62B14EF73AAE8F020281 +:1085B000F3894EACC04FA6FD71BBB01346EB9DD7FF +:1085C000DAF34D7AE70CB10ED03B6778C84EF84825 +:1085D000C1756F1276C25BF725EA4AF1FB172C8C46 +:1085E000DB0373DE44FDDA5306FAB584FB5C130B40 +:1085F000C3B89BEEE3E375E37A26125A14EBA5A405 +:10860000FA73FD3FD414B455E13E191E2F435D8B20 +:108610003A08EEA0EF5F8D78C80B25DB039ACEF504 +:10862000FEB752E8F75C70DC8EF46A92B35BAF0F72 +:10863000E4E37871B4338AE1FD15B3A9BE49E2766B +:10864000CFA6EBEF26BFC0465BAA7EAE4D4B86930E +:108650004671AE9B3D863D1FBCD94379156C846E37 +:10866000C97FA88CE8C5545753EAFFA05CF807F708 +:10867000CDD4FD12FE64A41BE083BB890FCE3892DB +:10868000F623830FECE3B8BC37FAEF12F4D225E0FF +:1086900041E8F5923F57209BB188579000C6295872 +:1086A000938C766EC54985A11CBD08032330AF8B22 +:1086B000595C463D6A0A1BA4FA545C1AD42BC1ECDF +:1086C000C6FA749628B65B307E15DF80F6E91A3557 +:1086D000BC19E7F9F1EE81372578FE50E6EDDF931E +:1086E000A0FF2D1EEE3F71B100E9DB2A96B0AEA5CA +:1086F0008A8BD6C322B677CD71DA8835B8CD43F0F0 +:10870000F4AB6F679AF1037D5C4A7ABEF88B19F679 +:10871000000B9AE2CEB6C19CA5A06CB06DA8878173 +:108720007C2CEBE37A41FB1989FC3ADDA887917E2A +:10873000C6B87D7C338B619EC498E2C0590D71F937 +:108740001AF75702DF96A05C1A7B2653253DD5DA2F +:1087500074D97C13FFB6031FC50188B9754196CE45 +:108760006EB5D803833AEA79671C245F40AF7B0C6F +:10877000D72565374F1C24BD32407A6CEE54ED4F3F +:1087800032E971E16B7E864EE689DAE358B774DC34 +:108790007C4D1D1044EE658CECDD67BB1B5E423DDD +:1087A000ED271E8DE069013DD786285E10A57E82EB +:1087B0004A50B279303CCDFD40C6F33955C167709F +:1087C0005C7B41633EE9B1AC8909BAFA393E77086E +:1087D000BA72F8395D19FDEBE7E82FF71B73E3EB8D +:1087E000002EA05637A1DE1CACE7FDA5AEDFD0D32E +:1087F000615F7ED6437A5E88EA16178757AA1E65A0 +:10880000946F08FAEDF6047F817CFCC192C1BB91A4 +:10881000DE80BE5EC77E562BE1712822EEBE66600A +:10882000313E6FB506DFC0E74037A7D3D1CD30DF8B +:10883000292E8AC72D1DA69F6976F47B2DFBD44D6A +:10884000FEE5A5CCCE3485FC3B22AF2578EAD92ABB +:108850006A1F42BE587A66CEA95F033CDE2CB43054 +:10886000CC3B32DA33D15E67C1D9A89F2C9DEB2077 +:108870003E5AAACC3DB51FBE576A14F2A7B0A863F2 +:10888000240FA834E9FBA4FC189A5FC9E8FE99B943 +:108890006E4957E7FC95FA7CA992AD675E92AE3FB0 +:1088A0009833F0CDB261B9C0BF1F92FA27A19D9055 +:1088B000B9A3FD9A0E58E791DC810205EA593B36CF +:1088C00076AEAB66EC682BA747A85FA3FBB1AE2DD5 +:1088D00046BFDA322B3B6933E9119E3CAEBF79F2D9 +:1088E000541E8FB3321DDFAB795C1E604CC10F7517 +:1088F000B4D1FCA067BCF5E8B49F4FD2CE2D37971A +:10890000463F7768E9FC1641A679006E92B18E5316 +:1089100001DD6119898BD981DEB154D0EF3E1EF1A2 +:10892000DB4FA58B0D50990D7A21962A53252C7378 +:1089300059804A0F0B51E9654D54FA5894CA02D632 +:108940004FA59F0D5059CC12546A98B166CAA328FE +:10895000C5082ED4CB5990CAA325DC1E1C6AB5329B +:10896000F41B837D4876A0DEE650DB3D6417D2FB26 +:1089700066B0031D00EFF9793C2F69EC2D56D297B4 +:108980003E3A5314B310DE78DECD2879A38CDFB7DE +:10899000CEE4DF6D7F58A98F4D1EC18FF17CBEC024 +:1089A000CBFC3CAEE71D6D0DBC11C6793DAC04306F +:1089B000CFE8482EF7378DB4E7EDAECFE3FB49D9CA +:1089C000822BDFC4F9FC45CFD650FF3817BECEED61 +:1089D0006FAE2CC6FD6648F89B87CED6144BA847D1 +:1089E00074FD7012FA9D419FB04B60ECBD75FFEBBA +:1089F000A524AFE276867E4A03BF16661DB4229C8C +:108A000035D86F2BC47E5BF8C5F7DBB179C1C5796A +:108A1000B09E17BE9F41F1A7BBBA24F2A3807EB6D9 +:108A200001F3401A843D91BA2FFDCA135C8EDF1901 +:108A3000F0295B90CD307EFA97470B92F253FE35CA +:108A40008FCBAFA3A5DAED667FF394A715C2E36FD2 +:108A5000BBC61E423C5E081EBFBD9FC3E3579EF0CF +:108A6000DD79646F68C49F2F7C7FD258F4375F68CC +:108A70001EEB0CFCFE93E681EC80F2D3901747AE20 +:108A80000C14639C6659C4C1F31AA25F0F9AE1B536 +:108A90002CBA9335E712DF335BEEE8F78C15E5A0CF +:108AA0009C36F4A5DDF888F269C2146FFAC877889D +:108AB0006573B9E44B47EFEB843EB913FDB0B6D113 +:108AC000EFD77B6F7E07ED01C5CFB489122ABBA11A +:108AD000C683B8BF7BEC01B47F1DF1DD5765933FC2 +:108AE0009D55A2CF5351381CBEF24E8C2D31D17FF3 +:108AF000863FC6FDC7221F6298BF84FDBABE28D933 +:108B00006E7D56F0D70FF3EC4407B6F64013C269FA +:108B1000ECA2006B30B5CB64B58F215E6D964A7ABE +:108B2000EF0B8F7AFF833CFCDEC2E3065635C0565E +:108B3000B9CCEFE7FC30EF4BE8B91B5C61458571C0 +:108B400036688E3AB2A3964D4BF26B6D13F43BC26E +:108B50003F5CCE6E6C6101CA1F14FE49C013E16513 +:108B600043511095449C5FBD0E657BFEA53E976901 +:108B70009EED39C2EFF7E974DF02B3FEF4D9F437A2 +:108B8000C228FFF2393E4E65CD760F717BC98776DC +:108B9000D24742DE8CE05B0D209E3B5B9400DABD49 +:108BA000539E8C3173DEF8BAEF8618C2717DEE35B4 +:108BB00041E40FAB95E3D3AA0CB6911F02F08C7A77 +:108BC0009D2DFEB713E44710781FC6B37A7E3C6F25 +:108BD00038FEA3815AFCCE553A0DBFB3A28CC0FA21 +:108BE00064ED50264CF503315F87DA1F473DD21103 +:108BF0005412A8C7653298AF399F9AC13ACCF8B0E1 +:108C0000857D181FDEF09925AD3EF453810FA0E35A +:108C10008039BFC95519FE1BD28FFDC9909E49F4FA +:108C20003B2B8EF360AE2FE6A7CCBBB1FE9A2C682F +:108C3000BA456631CC9FF13806EAB2A0ECD9941956 +:108C4000C0F8D9F1EE7925948739334346F9785441 +:108C50001A50C6A3BEFC7599F4E30C41075B660F7E +:108C6000511EC4549F93FA75467F3807FBDDCC94A0 +:108C700001CCAFD9B23A774E1994D16AF256B2E824 +:108C80006499E0A62F9263E5D0C798EB3ECD37EB11 +:108C9000CF593E0BF5B3E5933F2F5C8EE335331A86 +:108CA000AFB63940F3DD2F29AF215FEFB8EFB5DD67 +:108CB00088C77DA75792BE14F2F3EFF61DB4D7C74D +:108CC0005C1C4E38CEFE35A1DE4E69A45E5C31AF31 +:108CD00017F5F90C1FCFEB8A06E7BD5E01CFB5C9CA +:108CE0004CE571B1A085E7110F974E733D159EE5D8 +:108CF00022CF28F5F97B859C1E7633BD660E8CD776 +:108D0000D9BD40463895370F503C322B2207719E13 +:108D1000BBAD03711C7F7755D0A3C3F8599343B201 +:108D200015F5792F8F9796474A294ED920DAA78EC5 +:108D300063B4DB6D0DD53AABB01F16000CB372E80F +:108D400007EDE70B7D3FD36B15F36475B88EFDB669 +:108D50004109E32BFBBFAD4A349FAA9882F95A21FF +:108D60002F976BD165328B93BD1F96B0DFC3C3F5D0 +:108D70004109C77BE0DF3ED6113F0F5CC1F789DDBB +:108D80008B9E68453B62E76A5E7FC0C6F1F0C0BF5C +:108D9000D9290F9AB14109E548BF359EBF129E6798 +:108DA0007533CADF28AF6241D45FFEED86D716AEB9 +:108DB000ACC2E7D1CB259CCFDC33EC2218EF9EB1BF +:108DC0000ACD3BAB6A8021FF18ED53D7F74C219FAA +:108DD00037D0A5847408ED304705C7A1F6FB6CF1C8 +:108DE0007CAF092E87C7F2FC2B838E52FB2BF172CE +:108DF000FF59E1EA011EE761FD941780C9CAE4CF7B +:108E0000FF579EAF076BD4D14F1AB9D3DE87F4B7A3 +:108E100059F87B76E22748D701FB41CC67D8E87F39 +:108E2000258879274355A594BF6B8C73D7584E3F3F +:108E30001BABE43A9CC703B6C442845B79F36C6B0A +:108E40002BBC92BB036D6FB9B01DC7FF81AE500143 +:108E5000E2A33787E5233CA2779ECA477CECAB3C74 +:108E6000457E9448968BF441CBF4BBEB301E6B19D6 +:108E7000D78018358DC7D7DD2DC70A50FFDFD153F6 +:108E8000BB19F5FD6ED8C650DFFFF5DE6B36A3FDCE +:108E900099B718F04D725277E2782716CD9B1E8055 +:108EA000FE6241BB867EF7A824654CC0F56DB2A872 +:108EB000C8B74355D332B09D3722EB13414FD81971 +:108EC00036FC4503F4FDF648C3F172F87E7BD0F71B +:108ED000214A88778A1A7678611EB9B7BC52371151 +:108EE000FAC99D934B74E3AD675283E06BD407518D +:108EF000FCE27380BB84F48689EDE42F059310EDCA +:108F00007668D28CFED2DEACB084B60668E74D3A05 +:108F1000F4BFD9163E8EF2AEB74649601EDCBEEAFB +:108F2000C1D39652EA87FC28D0B184FEEA037FD9E8 +:108F30004276E1964F2CF4BD1E549A7A4982B19A3A +:108F40005588D7DFB9C8CE5307FFD4827123B5DE69 +:108F5000645F097183FE0A236E81FE673AD7C2D827 +:108F60002F307F556DFE98E84059C2C65B408EAAEF +:108F7000B33E0EA27C55E5F02F1C2639E37E95C545 +:108F8000565C82F34BE8F89E5DA5DC8D7E77E0B7FA +:108F9000DD28AF0FB47639510FF7083D8159133AE8 +:108FA000F24BE4D98934FF3C99FB79E13D9D77612F +:108FB000D3ED87903EF139E631BA036F2F427F0936 +:108FC00028DAB49F57623BCF48BBE179045EBB17F8 +:108FD000DBB9CFFCE1332A83F6A4732D57E53B853B +:108FE0003F46267E56CF64527E8A7A66CD5C82CF1B +:108FF00093815BA83CE33C4B79D7E6EF01FEA7FDEC +:10900000A157BC40EF0FDC67A73890C7F0135FC5CE +:10901000FDC4F8174882A7A0037C578A59DCBCBD61 +:1090200077A68BE2C25B9E4A103C8312186840BF51 +:109030008F9F6C6845FD3EAA9591DF02D4A2601F08 +:10904000BCCFBEAA82E2C647A5702BE179892B8CE2 +:1090500078F65627AFAF18ED3D9853913FDFF03BC0 +:10906000917FCE9329E806701687F9AD607C3E5853 +:1090700097BDC29E87EF26F94BC477AA13E96F59B3 +:10908000C7F85CDA97D401D2770C3C01492BBBA618 +:1090900051593705CAFF1ECBE597E662BA3B97E206 +:1090A00052746E26DBC2285F8ECD279EA7F950BE74 +:1090B000D16A4DEBCC110082F9AC94F8F8FF29FA93 +:1090C000B9DFDFB4E139F8AE07BA7A421D69E73695 +:1090D000E60DF43313FB61AAB607DFEF72105D8370 +:1090E00018D03F97D10E7724C165DFAC0FE39857B6 +:1090F000DC00CA18CA0D6D9F23850F1241CC6F7416 +:10910000BD9BA5219CDD69FC1056EFC8F8F7FB1349 +:10911000746EAF4B62DA3618DF5D75AA0EF7FD7B11 +:109120002DCA00E619637E8E96644724FB3B8A9A1B +:1091300093F9D0A626E35165A63A8CFFB8C8B3D6FA +:10914000EFE2723BD26715F28DD1FE469C61C0877B +:10915000ECC404C338DA3E490FED81F5CC9063DBF3 +:10916000AE41BE9A26931EEB6EDA7027D2B7BBFBD8 +:10917000E97BB034E4BEC1476BFD5C4FFAC1586E69 +:109180009FB9AAFFDB619EAF273BB4F03F10AF6DE4 +:109190003C0FA9DDC67E89FCDCFE948BE1BEF8485D +:1091A0004EACE02EE86FAA9FEF0F46FFAC6281D075 +:1091B000CB791EE5A41C4DE67994A1D327E17BE78A +:1091C00004BF847EF331CFBD2263DC7BF3936A2539 +:1091D000AD479CEBEB64FD2FE0FEAB57C92A8EDB5D +:1091E00055358FF69BFE6E968B766297357402E747 +:1091F000D11FD164D40B160B7AAA8D04EE443D6DB9 +:10920000E80A9E4B545BAD1DC07CD4AED30E86FBEA +:1092100081D331B00BF534E7AF9C7876249D3E9A2C +:10922000A26FC565513AD2E95B9917C9129E13180E +:1092300017ECD731EE51087AF6D58087ECE0601054 +:10924000F1A5CD04D6B90CF6F7D5033AEE7B5A1545 +:10925000AFC337BCFC0E2F27DD722897A5D1178628 +:10926000F7810A8F84F09C79CB10E9B30FB05DA72A +:10927000591A7F07631D0487AE96203F0755C1F535 +:10928000EF038B0CBD284EF97C5D55AF28DF84576A +:109290009D6B65CD7C3EC6F5566213C6A12E9F29F7 +:1092A0006BC8F45BD6B68D094F1EE98759A35A3AAD +:1092B000FB7738AFA2599B9D6E1DB28FE3C7584F05 +:1092C000A1C8AB37DEEBA83F619CDEC7E9B078F5FB +:1092D0006007CEC33F99D3A27F72947D1BF52E9D6C +:1092E00051FE1994A42FEDBFEFEE39C82F0FDCD239 +:1092F00060C7E70DD57CBF704F5EF1103A6914A1CD +:10930000BF63BE28C5BD9A1A3FFFFC521A9FE450A6 +:10931000D6EA502DE9A5C17963491F5BDD5F286955 +:10932000263F91379BE7C3817E55E6217D4D45B8A9 +:1093300094070FBD8020F156C84C83FA4E6B82F41F +:10934000E69DD54C45BEC812EFB32A9EC8C4FE4662 +:10935000FA69A2F9962F92559C5F79F0C37805EAD5 +:1093600007F09DA68D86DBB6B199048F46904924FF +:10937000AFC5FC49548E477A13F3D74363319FAE90 +:10938000BCE3F142B31EB502C79D41CF25A56A6477 +:10939000FE5A77EC051AF75CF3AFEA976E837E57B7 +:1093A0008A793F329609F990AA579CDF0F7C24579F +:1093B000C8B3698CF29E47BDB7C675F43B1E819554 +:1093C0004503688A24CBE31C7FC970DC08FDC31405 +:1093D000E2D6881F297EEEC91EA0F379AC960570EF +:1093E000DF713D7A827D03E51F533FC473D0598FEF +:1093F000CABA03E49EABEABF93FCB595B89E3C9411 +:10940000EF8CF6E99E088B1D12F2FF9FBAFF08F958 +:10941000AE303DCEF797FFB7F79F490F9F54505E90 +:10942000A4EE3B33B05FCC93645FF966AD8BF60975 +:10943000AA4FDD797A33E603210DA29EF1B157E3FD +:10944000FA85CA82A86F187A8633FA3AE1BB10ED22 +:109450002A9263FDC7D12EDC3C237C69A7896F3635 +:109460008FE5F95A9BC7AA623F1A88DBD1AF88FD06 +:10947000523DA690938F0D509CE81ECB00C19301E6 +:109480003C51CFFE6B29CF278F544EA8C47DE528D1 +:10949000B79D983E6558EF8BEEF4923E4F74E8BB53 +:1094A000BC6D0EBA7F870A7D346EE6F415CE327835 +:1094B0005E628D29E9E4A4B73E4E7E226FB3457B00 +:1094C000CBE48FEEA998E74E27378DD207EA541CDC +:1094D000F0380F4AC453662083EA061E5955B895E2 +:1094E000CE9B04E8EC0E73458F33D4EB583D3FF729 +:1094F000C358585A00F3F9AFE270AED7E4C7F2365A +:10950000DB691EB95ECE0F476BC20BD13F1B386EB5 +:10951000D511AF918ADC83B8DF9EB8E135DF599869 +:10952000B7D3CBE5F3C16CE3DC098FB37B320776AD +:10953000B970BC5F3918C1692697C39D551328CEF1 +:10954000D9752DB7F7C6F99C8975A6F3538DE8F741 +:10955000E0FAAB3565BFB588F3D672BA7DD72D2555 +:1095600006AEC2F176C8627D1C4FDEA07A10D71F0E +:1095700038FE6A3DE6CBF6040B24F4A334887D65FF +:1095800038DFE36B5C1E19F81EDA3491F0EDAD4F55 +:1095900004517FF0613C511DC1931AFF506FC6E723 +:1095A000E3AD4D948F6CD5E89C4D4FC77C5ABF57A7 +:1095B000D1ECAA693F6B88966CC0143D03FE06FE91 +:1095C000AE13F8A3B3D1D85F3D7B10E70B7869F0F9 +:1095D000617E483019AF067EBA6CF1BA8B500E54DA +:1095E000CA0CE709F01C839BC06ADFB8B936907BD0 +:1095F000915932E5836CF6CD9FAB97318C1A85D2A9 +:10960000F9EF36FAB8FF6E180E5345DE8B8043D75C +:109610000C4EF7A05905117E5E117FC8AC5A214D42 +:10962000F6A07DE8A2F57BEBD55A3A87D62C531CE1 +:10963000C88013537489E0D27C7E7A66667858B00D +:109640007F58B7492E7915EE47C98ABE4CFE88343B +:1096500074BCD13763341D031CEAD2F9491EF249A8 +:1096600062DDFD82DF61DDC4EF897829C9572D8174 +:10967000E7DCFFFA6B07C1A56B8A1A43DFB2377EBE +:109680007221DAB54CCF08B841DE66CE5D2DA1BFA0 +:1096900082819E87799C25D67E92E711CD4A70CA39 +:1096A000AA4FA82B99091E3E9DEC4FAF1276923D12 +:1096B000FDAA053525A64625C99A665DC3F42DE0A9 +:1096C00073BDA01758EF43B8DE517012EB46BBDCF8 +:1096D0000E42F9FE6AE1CFAB38813A26737D474EE0 +:1096E000EB87FAD0E7207E88E07753A1447F9B0B7D +:1096F000FDA732F935DD92EF65C46F4CE7FED1ADC1 +:10970000935592033F1FE6238E7F768F9C443F86BE +:10971000DC4C9593ACAA9F62ACBEB08BECDB73CAF9 +:10972000C1B5E7A71BF705E4A05789338C279C47F1 +:10973000FEFDDC9746FE197AE9D0F36C21DA0B9A2C +:10974000BECF897940439B6E6ACBC0F5B73E407669 +:10975000B2D3CBF55463DEC370586AC0211174A232 +:10976000DC2C296BE2F4B4D289FEA7C8FF1AC3C867 +:109770009F3B334131665F502138B8031BE81E140C +:10978000439F31D6779B589F2B66D5F17E171630B5 +:10979000E1BDF40BADF37FA7E38FFB673D3107E934 +:1097A000D9CD9401E4AB9D2C71FA24FA27566F634E +:1097B000DFF6903F9CF46BF28B63BEAECFB9B9D5A8 +:1097C0008A7A9C2A915E702B3F6FE3C90DAE42FDF1 +:1097D000D3E8FFA8D0EF2F1407B4E51B71C0F02A1F +:1097E000DC67DC18071C3312078C547A290EE85604 +:1097F000791EFF89B33FF57D17F951C401BBCEBE79 +:10980000EEC3386064C6D31407DC28F7BF84E76E64 +:10981000F527AC64EFBEF0FD0CF22BDD559471D052 +:109820009C8F3E5D8CEBC3735A30DEEE169DFDB609 +:109830001CEA6AFAF30297E57379714416E77F58D8 +:10984000BCFE21C463EB255227E997513A5709F230 +:10985000B204F7B723E2FCC4EE152F51BCAEAB92B5 +:10986000C9EAD4D1FD1EC98DFB105FBA9C4D7E3D67 +:10987000A37D6A3BF8DE8ADF472A5986B99FAECAC4 +:10988000150B83A678C206BF9FF63B8C87E2F97161 +:10989000B7C4F96D7ABEC0C795DC6EEACC97E99C77 +:1098A000200BFD49C773B78EAB14BA1F8055279F95 +:1098B000FF76639C14F42E37C649A78D7EFF40D6F1 +:1098C00099174A34C4B746FD5BC67DA703B7334733 +:1098D000CB8ABAF19A195E7C7E9119130E217C769F +:1098E000DBA24B18ED5FFCBCB701AFAEE5F17AD45B +:1098F000E306DBC16CB91254DE7C2D898E22CB07C6 +:10990000E8BD2E17D3FBA7AF04BAE1F8D885724A99 +:109910006515D33A49EED867E1BD37D1228DE8E726 +:109920005AB17E23EFA2CE1DBE36DFC4F76A90E7A0 +:1099300003791CA125EB119F3BF979D4543CFC58C9 +:10994000F8EB3D6EE1CF043E35E74D1AEF01B0254F +:10995000C84F6A33FA2E18939AD9F1673D248A4387 +:10996000E80FB8E73759C77F8D7A46BE85A15EA15B +:1099700006F4109E27BC901FF28DA2D0D27C931FBC +:1099800012FF3A92FD8E4DCC2467A3297E46AFF29A +:1099900069B0CF43793FB46FA37C40F9931F7685BC +:1099A0003BD3F815AB1C6C0FCA07AF8505302FA44D +:1099B000EDE98C20A773F510FA4F8EB7DA496FD90D +:1099C0003FD34579EDFB158EE7C3BBA418FA539638 +:1099D000636AC478D457F8F3AE2BD4D8BA92917A8C +:1099E000D65A3586F81FF60F336EEFE40BBF2953B6 +:1099F000D56F4C86FEB35796525EE55111EFACA978 +:109A00001A50308E7AB8EA04E5CB56163A8DF32A0E +:109A1000648F90E893D9B09F93966A31F94341AA35 +:109A200022DF15A19F13C68F0419C9A7A16EEF21CC +:109A30008C5F6CCB17F75F016E365C8AE7B1C57C33 +:109A400058A82064F287BAD11F9A4B65DD14287F8D +:109A500020F0EF463B05F906FDA1D9E80F4DF0F3E4 +:109A6000BEC21FAA32515FAD69CF5D4EC3903FF5B4 +:109A700031119753859DA3CE74D1F71161977AD197 +:109A80002E15FE66F29F1AEBB4F27B9BC6875446F6 +:109A9000F74FE81C8F865DBAB2C342EFD96AA6D5EC +:109AA000E6033CD626DB8147739B4EA13FA0A7C1AE +:109AB000C50E0546FBCF2381BB66635C210BEC54CE +:109AC000F44FAF4CB113F78A754704FE7D6B19E173 +:109AD000DFE70F1510FDC004316ECBACF11710CECF +:109AE00045555EAD53E8BDF2A5382D0EDF5E293E2B +:109AF0001BE325FA1217E3F18CF86CD4A75609FB87 +:109B0000B89135D139BF9EC25CC167F10E8A9B0600 +:109B10006446785478DDBD16F4E2128E67F407A827 +:109B2000DDFCBDDB3FB009E1EE0D33C6EDFB502798 +:109B3000E9AD1D12D94994A8897A59B34A7E7A9F12 +:109B40009FCFD7ABDBB543869EEEC5F386821EACB6 +:109B5000513BEA6D59613FC55B1A0C3C05059EAC53 +:109B6000A19770FCE26A58AF34F27DA3C05BC4AF2A +:109B70006FC0F5F680F039A4F2FE1A71BEEF16D16F +:109B80007A0DF80CE359D48BC5F8115FD36C8A17A2 +:109B9000C1F7A85FECF70F4AE83F3D0CF0C3F8515E +:109BA000AF5FA7F3F1B1F7B2B4B6C0C8F8B70A7E99 +:109BB00030EA067FAC8CBC2D35C2F7F77E90A5A1AC +:109BC0009D15D1E20AEADDAC9FFB39600A71A4A7BA +:109BD000557DC97EF495B1E4BA2FC5CF1009BC42BA +:109BE000F1C8A705FF1E7F3383E03C541D7D18E5B7 +:109BF00046C4AF65239CA33BB639715FDA5AC8F5FA +:109C0000AADE809C01363F8B05E46B509E469AB9D4 +:109C10005C2BF6035E93F098C20F8CC793B2AAD95F +:109C2000418EC7267B05B75FB42702237498B556CB +:109C3000D0A1CAE16AC88D95D5AC16E1EA5BEA22EB +:109C4000E044D4263BCAC908D021C2991C6E061E26 +:109C5000C7E3FAE45A8A030BFE785CE6FDEB77DB98 +:109C600035D4030DB9D9BB437F18F590E3AF4CCA87 +:109C700046F935A40C3A516F3B10909DA89FF7DA36 +:109C80004272BD6B343C6BBA130AE6E546ABA7657E +:109C9000A0BC3B1C98C6E111E6F0F0F939DD7AABC7 +:109CA00092E583C96F457EC52CE1B73A9A2BF4AD96 +:109CB000AAD0CD68A7FBDAAD12C33E5822887EF643 +:109CC00055487FD04E4BD90FEE2DE4727198CF617D +:109CD0003CE4B3613E590B7C62E2A3AC584EEC5CB1 +:109CE0007C8EF337F3398EBB12F95C1DCDD7771715 +:109CF000CA42BE88E7E164FE767758887F8BFD3ADA +:109D0000E76F1DE882E0A06DA17974B324FE764769 +:109D1000387F6B386FE257C1DF56EDE758CF6AE600 +:109D20007451EED75FA4F7C6BA46F3FF29A493F1A6 +:109D300082FFD3F0F729BAD7C6E06F16B52FC3F16B +:109D4000853C63567D03AEDB2DE0FD45F93D2AF8E9 +:109D50003DEA1FA478714CF0FB05F97B2DF0B7E7C5 +:109D60009FCFDF8C71BF59D13A1643FDAB4BE5F461 +:109D7000D00B7606E2A937C0CF4D1CAE66313CFF52 +:109D80001489F03AD20F934CF4BB4F4AA25F835E22 +:109D9000805F4F21FD1621FD0638CDE3BA6E1BE62C +:109DA00077D83760FCA5611EF7863AC1B548C0F97F +:109DB000706088E2F907D44127E2B341E7F4D3E0C9 +:109DC0001F243BCE0BF3E1F86724AFDDDD1CFF3130 +:109DD0007FA093FCC161414F065DEB6ACC2C376ECE +:109DE00015F3BCAD2A46F7741872E3B6EE8F296FEF +:109DF000E9DECD9901B91AD799E8C0FDC2DB2DD3B0 +:109E0000FD9E07667239B56B2D3BA89BD6AD8A7552 +:109E1000EDEA1E7A91E414D027C229CB1F7889F885 +:109E2000ACC321E855A7F75A80CF5705F37D99C7F2 +:109E3000445F827E0C7A55BBB7D1FE8ACA6E2DCCA8 +:109E40004FD5A31BC88F05F4C06622BC395EAD4850 +:109E50000712EAA513BE49F317FEE55B1F4DF66F27 +:109E6000E39FD5D03765F477B7CDB908E512ECBFDD +:109E700012E2E8C164BA8A742C95284F0BA63C23E1 +:109E800030DADFBCDF1F27781D969457DBA09F9A3E +:109E9000DFAC3E8EFBD101588F0380726CF044C75B +:109EA00044D4EBAB649689FDD727EBC7D1EAC473E2 +:109EB0009FC37B2DCCE92AD5FFDDA533B277FD18F2 +:109EC000E08272F9AE64BA569BE2945F54BE966922 +:109ED000780F46AA7FBCAB4A7EF128BC5FD92A53D3 +:109EE0003E56F95A9DE26F0D1D9901A493FC94F51D +:109EF0001C15F18E9E87248A271CD739DD772DE328 +:109F0000E7A3D58E9715F4078C6F92293ED910D10F +:109F1000C7601CEEC0326B00697C5561C9F0391214 +:109F2000A48BE558C2A303CD27C87FB4B4D746702D +:109F300048D5C796A7C4110CFB2435CF7E554A3DA2 +:109F400075FE785E378BDB2DC4D797A7B43F9A1B7D +:109F50006753707DB54AE2509A784DEB5732B8DDC1 +:109F600057C3441E3360C5B8770CF0B504D787FBE0 +:109F7000C9CB2FF9309F66680629D96CE8B3D61A89 +:109F8000F4AB6D5DAFC551AE0DDBBBD5F6E3E45F61 +:109F90005B0F860B3CEF7A9E4958D77AAD418C1FF8 +:109FA0008CB29BA5787C8D87EE056CEAE57281E624 +:109FB0005364652AE9C918FF44B9E25135AC6FF919 +:109FC000E4B938AE57EF76D3BE047A6C0DEA4F97FA +:109FD000A32C8549BBDED06B50CE4C6C7653FDA6CE +:109FE000428B11E73E4E7181CB998AFABD8F9DE479 +:109FF0007A2498151D97A31F9D8FD393C5A443A6BC +:10A00000FB725C38B5DCD1F3364AB0632B516F225A +:10A01000D32897CA383B6FFB0D17A11DEB3A139657 +:10A02000D56C2CB5A08AF1AE332A95463C3E3A8DCC +:10A03000E9E6FB39AF10FBEBB03D1C4E1F1FC335EB +:10A040009FF026DB57C3F80450ACF8CF05D953E096 +:10A0500065D5CB0BBCC37932782E51EFBBD67C1FB4 +:10A0600086618719F54ECC0D9881E3DA53E4CB0570 +:10A07000E289288F01EE47024CE4EB25BF7789F394 +:10A0800025A974897FE9E287149FA4FB3B8636A348 +:10A090005FC5384F92B76F68B30EF21BE5699B77C7 +:10A0A000C41EDC86FE09840BE825B88F646FB6A851 +:10A0B000A857F4E647AF9F2C11BCE97C2CDEE18564 +:10A0C0007E321772C0B4F3D083C0DB45851A8FAFE0 +:10A0D000A6E06F147DBF3CB89BFCD7120BA03FE4F9 +:10A0E00040E5A505A81F3AC4F76AC45B8BE724D5F1 +:10A0F00037A2B5729AEF53F93D551E5C48AEA4CA1B +:10A10000930F0A381E5717F0F18DFDC7AC8FC82684 +:10A110007A01E02FC6946055B7F2FBFB8C7C11A14D +:10A12000B76CC526E347BE8B0AB86F4FD1438BBAD5 +:10A1300039FE8B0C3D34C2F539784FFB6BA41BF60E +:10A1400057931C54BBF53B314F4C8D3C7D0F9E0FFC +:10A1500048B577D716707AF71668C37E001CDFD033 +:10A16000F7356187460AD5A475BAC5BA12F95F7486 +:10A17000FD601FE3FA812C50BEF67EC1F5FF30650D +:10A18000FDE33BB8BF65BCA1CF36737D7578FD1D7F +:10A1900012ADDFB0C3D48E56BEFE66587F9A7CB92E +:10A1A000BFE5F3F5E3F5D418878D89F5A8220E6B8A +:10A1B000F827DCF81ECA5D820FD04F8B7E10C3FFDC +:10A1C000F168A1713F55327C6ECC177053E322EEDB +:10A1D000CAD7C1FE257DFCE9A8147809ED377D15A5 +:10A1E000CF632AF8762863323C2FBF76F5AAE55074 +:10A1F000BE23E2ADCC3F508FFB81AF7E1FDD7B5590 +:10A20000621D50D29DFFF3D66B743E7854BCA16A98 +:10A21000DE79CF0917A03FBE02DD383243FDA8A189 +:10A220003B354EC5E37EA9F13E931F7E51BA78EBD4 +:10A2300022116F553F2961C1318CED5C544AF3DB2B +:10A2400021E2DFEA2299F297D54FCAE8BD2FCCD69A +:10A2500079A07FBB9F515CAACE9D1CC7B54E0EE96D +:10A26000366D248E0BEF69DCE0DC83ADA8DF0CDFFC +:10A270000B561F0A3AB591F187F1B034391E3A8274 +:10A2800007FE5E5FCEF1E465BA13EFAFDF7D574F97 +:10A2900025926DA69FE3A1E786154B966A2371D19F +:10A2A000D1F08F49E9E0EF55C29BF0AAA02C11171D +:10A2B0003B57BCCF689F1A472D58968C0F80F7C527 +:10A2C000B86E03CE463CF262B1DE6075AB64F78CCB +:10A2D000C003E044EDF397F1F3A0DE7A7E1ED4686C +:10A2E0007FB495C7C353D7F3FC58CE8F9EEC78103C +:10A2F000E58F917F92F5E82B49F9272ECC3FC93E97 +:10A3000077FE89C712F8C55C5CEFBD56BE5EB1DF53 +:10A310009AF33687CF6102AEEEF5E7D077452FBFCF +:10A32000EAA4EB5087FD9BE9F33813225E9F10747B +:10A3300065F837E9DC94CCBF43FBA46B13DFC78E11 +:10A34000E4C67E7925EE5F8FD835CAD7B126E8DC22 +:10A350008373828BFCDAA9719DA0DF385FC6FD0B89 +:10A36000A3E23822BE63C0ED9F15D7A13FC463614D +:10A370002EF97BEAFC7C9D465CC7C8577BC07FE812 +:10A380008D38C37D99DFEBAD177179E218F7CC35C5 +:10A39000F8BDE5313997CE10897B101D17AF7801D4 +:10A3A000CFA2EFB8EF21B24B7A256580E469FC15A6 +:10A3B0006EDFC76EBC7915F6D32105CA01A47D07EF +:10A3C0004F29A8B7BA02C119681F18EB6C08B0B4BE +:10A3D000E71B327C8A91CF24F21B8C326E37D75325 +:10A3E000BF2B3C473CFF299177F980ADFF7AE49B76 +:10A3F00007600DC8B759153CEEDB6F659918B7F7C4 +:10A4000007E6CD40D5C6F8AECFCFCF59F8BBEDD4D7 +:10A410000E7495A4BCD07DFE0C7ADFEAE77EDEF9EF +:10A420007E2EBF7B6DA1029477AD5FF923D955FBDA +:10A4300025D0F3B1FCF6877146F63FBF9FD2D52DEC +:10A440002FB1678FCEF331F42983FE86E95251375D +:10A4500099F5A9AE7C46FAD43D96011A27353FC737 +:10A46000C8D718964F955C7EF966849DB84F78AF33 +:10A470008DCC9908E541219F5C9B7FDAB8DCB4FE66 +:10A480008270B415E5A5218F4AACBAD388D3A37DD9 +:10A49000568CF208DE1747CFB692FD6CC823E1B7A1 +:10A4A00030F236CEB54F60BCDE0FF0732D4B9FCF30 +:10A4B000E1AE12798A8B64B25B87F3936C3105F756 +:10A4C000FF2D553C8E1F9CDB2A99E537C82BEAD718 +:10A4D0005BCFE515D01DC9ABBB047EFAE32728FF8F +:10A4E0000AF3D6301F7567358F4765551C52D0AFBC +:10A4F0000AFF77629EA35EC5880FFAAD21B9D244E8 +:10A50000572BBD9C9FCB3B24A20B66EDF7D13DDEC4 +:10A51000AC9FCEA1357A39BD19F988C3FBC74A96DD +:10A52000360F60183FAB8CFD23EA9C0B78DAD3F32F +:10A5300010ED1FBF18D93F4A48C6292ADDEBE8D3E2 +:10A54000E558BA7BD6BDF5F173ED234E647997C01B +:10A55000DBB9E2E2237A30C797B18F00BE56205CA8 +:10A56000FD8DE9F32B56F88DFDE3FE9A94FD83BE35 +:10A570002B684CDE3F8CF6DEF8470AE57900A9E34C +:10A580007EA0269649DFC4790515AA6F05FB3854CD +:10A5900045E7391268AFA69EDB987A2CD53E6A252E +:10A5A000786D55829EEB11AEF53CFFE9B23792DB38 +:10A5B000D5953CEF998F7A618D3C8D9F2313DFB940 +:10A5C00058DE021A8FEF375F7D27F93B033EC3ED5C +:10A5D000557E0EEB6B9F5CA09D87E78FA4CEFF2A74 +:10A5E00025D57F24DAFB827937548DCCFF6A5F72E0 +:10A5F000BBFA25CFE7DD946EFE7E00B16764FEDF17 +:10A60000A8709C7F5E1A9FFF75332FD0AE2CFDFC87 +:10A61000E7D79D63FE15893AFCDD889BEA2FD0AF12 +:10A62000958FFF2F8DE76FF7ADE6D47174711EB073 +:10A630004142FD00EC8204C58DD972E9BA14FA21B9 +:10A640003AF8BBE947F7CC33D14F2A1DCCADB4E57E +:10A650002D484B3F026F02FE17A40B413FA974F037 +:10A6600045E927952E46E847CFBBD1443FA9740062 +:10A67000FB29D18F5A5F46F7858CA61FFEDD05E9C1 +:10A6800042D04F2A1D8CA61F4E0FA9F34FA58FFF56 +:10A690006B74A12E273962A68B795F8A2EE224374C +:10A6A0000CB8A6E23754F3F5BC1BD2D285C087A004 +:10A6B0008B0BE25BD0452A7EBF285D8CC6B7411765 +:10A6C0008077135DA4E237DCBA3C87DFD7384C0FC4 +:10A6D0005F0CBF1AE0D7F5C5F93DD54F9D8AE7BF9E +:10A6E0001BBFDA72E273337EE77FA97D83115F1BA4 +:10A6F000F049C5D382EBD7E7DD9816BF02AE02BFA3 +:10A7000017C49BC0EF05E5F339F09B8AB711FC3203 +:10A710009E9F5ECFF5BD54BC017E9DC9F8FDFBF048 +:10A7200076217E4CC5EBB9F0B7E31CF709FDBA887A +:10A73000EB57A7513F80FE7638D3B71B12ED4A8AFC +:10A7400044BB94FB088DF2F7A2DD326C07654CB474 +:10A750003FDAD6DF88F6D80C4B3BDD9B98BA8E5D8E +:10A76000922CEE3FD525733ED3A7455CBFDBDF02BD +:10A7700086DAC491E7D1B50335E88FF0350FB662BC +:10A7800059BC36174871349CBC9F8C67C1E9E6F10F +:10A7900062DC9FB1909FCFF67E3281DEEF6F51A8D1 +:10A7A0007F1C1FF5EED1FD679CA3FFFC0BF4EF4F60 +:10A7B0007E6F994BF738E37508E9EE21D8D5128BF7 +:10A7C000A6BBAFC3287D1F2E5D1212794A8A57DCC3 +:10A7D0000BC2E8BE91049EDFDCB33CB7B20DF8E1DA +:10A7E0009362915F98CDFD05BE0CEE87F366671C02 +:10A7F00042BF647BD6AED615506FAFF10528D8B7EF +:10A800006C56D2FD231B65FE7B04FA3CE3FC64F42A +:10A8100038DAAB16992528AE97D2FEC762BC76917E +:10A820006FE76BB6D0FDF3150797494BA0BEA7584D +:10A83000DCD310B38A7B028130619E530EDB45FD71 +:10A84000DAAD8D6578BF9D8E9E64B6B6F82BD7D5F0 +:10A85000A589A78C865740FAAD095EBE94735C4605 +:10A86000B9568CFF45F32D1F299692F22D7B96DF6A +:10A870004AF9A6318B7A17FB2AC183F22DF7AC4A2D +:10A88000CDB7BC95AF77219355F7E87E8FE48677F7 +:10A89000E33D7E23F996BC7D6A3BF8DE8ADFF72C28 +:10A8A0004CCEB71CDD2EBC309866FE6BC5FC8D3CD3 +:10A8B0004C3AFAA8219DB000D249CFCBFC5E4707A5 +:10A8C000DBD18AFE94BF049540671A3A607551093E +:10A8D000F3707B5AAD093C2FD993D54374B1E77A15 +:10A8E000C6A49C34ED3FFD9CCE83513C96EE87027E +:10A8F0007A56C4BCD04F82C21E2663B9D54E769814 +:10A90000E5667E7E0EFF12865F1AED66E5F6D615C9 +:10A91000B8BFA872E06ACCEF679101F4937BC3F6ED +:10A92000E4732642BEEDB1854F03C70DDF47D273F6 +:10A9300045B27C6A29E67E83FDC5C6F93B7E3FB2FF +:10A94000ADFED41BD8AFCDB86FCF634DBAD7A85DDD +:10A950009C9BD6EFE2F6624F799CCEB5C49D2CD776 +:10A960005608E34A2C88F1035D5286CF61E3EFBCC1 +:10A97000150ABEEC39CE7FB762CF7D4CC2DFF53809 +:10A98000921B6CC375E9320B617C6FCFFDB17C27E4 +:10A99000D963DAF5364CB20806358FE93EA73DEBB0 +:10A9A0001FCDB7703AAB44FF557B33BF6F6BCF679A +:10A9B0008CF69D3D4B34CA5FDC8FF76FC1D2CA1A4B +:10A9C000F9EF1EA4DE1F944A1F3D590FE5A33FAFC8 +:10A9D0005D0ABC81F942FF7EE06BD7D5031FB65FED +:10A9E00011B7E07CDBF358ACB564042EA9DFA7C235 +:10A9F00069189E2E8067F6B9E1D9826BCC33E7E502 +:10AA00008689AFF648DA5D18FF34F272F72CF496B7 +:10AA1000601E96C1577B96737E02FE5948F9B76D4A +:10AA20009912FE2E1A3C57884F96032B9F974F186A +:10AA3000C9999B40AEE0EFA619F9BC4CED9F346F6D +:10AA4000CA883C15774BB29F0B7A718C7BE68F08D6 +:10AA5000FFDD8D76FA3D85D4EF8CFEF31BED67713B +:10AA6000DDA9FC902FEE77CAF7F1737FA9EFDF1114 +:10AA70007C5A5ECCFD25C6FD55474B83B5BF837917 +:10AA8000F6BC66A1B8BDE1C7EC59C8FD98C3F31583 +:10AA900074E218B78FF40C5F8A7FD337ECDF5C99D0 +:10AAA000FF5D8497F06FEE39FBBD7CF46FF6AC7AF6 +:10AAB0007A9234D92C9FFAFF48F9E0B70A7FAB1A93 +:10AAC000A57DE2486D45209DDCBFD0FA7E566CF82E +:10AAD00063CFBF9E51FBDC975C4779B19614473634 +:10AAE000E069ECABD982FE8CFD779C3DF45931EEE8 +:10AAF00093E130F97114F1BD21A798355041E77405 +:10AB00002DDF6168CF7CF4AA85E21DA9722E557EE7 +:10AB1000E9B57A2BDD6F2EB3A6EDEA6839E865B5A5 +:10AB20005BEB10BE1561097F1FAFBDC44AF23755FC +:10AB3000BE6DB23539F09EDA752DA1DD78AFD383C5 +:10AB400036BC8398B1669742F9F3EB441EB39E95E9 +:10AB500041FA672A1CBF51CAE1FF484E7421EA0D31 +:10AB600047A5FB93E2075D1AA7F37BC6F1FD9B5552 +:10AB7000859DFCDEE675AFE0EFF46CA89629AFA7E3 +:10AB800023B6EC05CCF7D8EB93E94A89BDBE06E7BE +:10AB9000AD38EE5A592DA73A3F97A3AB8CEE2DDA7C +:10ABA000E06B7B05EFD7DEBB6C1AF1CDC965720097 +:10ABB000D7B95B75D1EF8EEC5D2BDAFB79FBD996BB +:10ABC000337330FF62DF6AFB74CC7B0141F8CD4AFE +:10ABD000535EF9C935B3E3F8FB1B87673AE8FEBF5C +:10ABE000AEC82B03A8E64E58561BC7BCF6F141254C +:10ABF000A405F0DED604C37BDA7C3EA01FA8EF9547 +:10AC0000022714EE8F25FFE2F1831B28DE727832D3 +:10AC1000A379EC5B148C631EFCAEFA4C86F79FDCC8 +:10AC2000348EFF5ECEDE83EB5E44FF5D4551198DB1 +:10AC3000DF77F0D202A48FBD0737D03D3259D5D689 +:10AC4000A4DFD13DDEF5743ED2596620F9F9DE85E8 +:10AC5000F17CCCAF7430D373C1BF98275E20F8F776 +:10AC6000853B5F93E85EAE9476458D0199EC8788CD +:10AC7000CB83BFBF396F9CC4308FA94F0ECAB86F4A +:10AC8000E86F4AB4AE076DBAC38CD7099770BCAEF3 +:10AC900013F7925594C821F49FAE17FBA3D5C5F9BD +:10ACA000C9C07F6A59BA69D6797F6F245F99BFDBC3 +:10ACB0007C9FE26E615F58D501590578163EA95612 +:10ACC000E27D5B85ABF9BDC4FB661457BAB4117A5B +:10ACD000DC77FCC57CCC57F53EEA0A60FCEFD49DDE +:10ACE0002B248C1BDF95C37FFFE71ECB808E7A0A57 +:10ACF0005BEAA2BC19E31E6C901749F76067357BCD +:10AD0000026520275CF576BA37DFA5790365302F19 +:10AD10006BB33D807ADEECC7268F1D3CCF3A222DE7 +:10AD20006AA08C7EFF550994012F45047C2E7E6C11 +:10AD3000AEBBC1A49745C64949F7AD399A33A3E6DE +:10AD4000F5DB8A387CF19E18F3EFF2CC12F08C48D8 +:10AD5000E9ED2AE33DAB0AFA6A60BD7BEFB4ABE8EC +:10AD60001FAAC97932FF568C63ACB6AB088F7D6BD6 +:10AD70005EDBB408E5C9CB1686FCB6EFCEA7F35769 +:10AD800098FADB7B8EFE8F8879F7E5EB7B24CA731C +:10AD9000DD3D1FEFD1ED73EA7BF8EF23ECE575891C +:10ADA000093DFCC07CCC3BE943B902C4D937EE6B0A +:10ADB000F3F15EA3BE1CFD6659C5DF6FEBDA7E12B0 +:10ADC000E4625FB9FE4BCC7F1A3F91C567CD847AB0 +:10ADD000096F9F39F1D5ADD47E0AAFAB130FD1F710 +:10ADE0007B713DB03EEB413BD136F0572EF2D1BAEC +:10ADF0009C07F331EF784F65DC87764887366B40E8 +:10AE000081FEAD522C1FEB7362E5A1595F4178942E +:10AE1000EDC4F5EF1FB0117DECB10D6C5A84F0025A +:10AE200078B4427D6FD1407EBAB868678B2F10012D +:10AE3000806DC1D264276456F8028F9AF8D43D33EE +:10AE4000B9BE571AC847F8C8B1B290F572BCF76BD3 +:10AE50006037D63F1CF7D9755698DFFEAC817C5C15 +:10AE6000FFD0B8BFF07ADEC06E84EFCBE3DEBB0E5E +:10AE7000E7BBD7D69F1F380FDD7DE979897EBFEC10 +:10AE8000F7E71ADFE8F7FFE3EF17A25FE65CDFFF03 +:10AE90001F5F66A6EF008000000000001F8B080007 +:10AEA00000000000000BED7D0B7854D5B5FF3E6728 +:10AEB000DEC364E62426D39910C899BC082189937F +:10AEC0008834D8A893486D7CF47640D044DB7B87E7 +:10AED000879860B04143C156CB4908283685014365 +:10AEE0004C32C9ED90000D02EDC0DF77EDED04C1ED +:10AEF000A2D536A257C5620BF6F16F7B7B6FA3A27A +:10AF0000566BDBFF5E6BEF338F930C01B1F5FA7D6F +:10AF1000FF7C9F1EF6D9FBECE7DA6BFDD663EF21D1 +:10AF20008490BFD3FFAE920542B2E8BFE1EF724218 +:10AF3000EE5BE7F2761612B2199E0642429E4883F5 +:10AF4000D746C8946297779F99E01F7CE7A84A4E3E +:10AF5000A7FA5E7DFFFFBFFF64BF17E53C422E9E50 +:10AF6000BC9EAB6482E56C220944E8BA6FC8AC357C +:10AF70002F2E8DD793562E627E672E2B47888FF803 +:10AF8000D308E96BBAD21CA0E5FBC94BCF98F209F4 +:10AF900029DEB1D302E98EF04B164F2621BDF5A272 +:10AFA0004468DDBD1FAE3763BA5394DA69BA7F597E +:10AFB000A5F5EAD9F4D92A4A02A4EB6B315F6916E8 +:10AFC000BD8534DD5D7FC8B2D4166F9F96AB0BD3C1 +:10AFD000FEF4B71C732F4F783F20907AE82F21FAA8 +:10AFE000A8897EBF399037789F279EBFB794D179C3 +:10AFF00047E3B1E345B4BD2DCD221B34193B7A396B +:10B000004D9BAA4519CA1F5EFDC8ED84A607726C48 +:10B01000C4443F395C7DECAA19B4BE2D75A2D74457 +:10B02000FB53C4D339757AAF4CD3A1C6DB4528BFD7 +:10B03000B19510897E9FD312C0FAD25DA2ACA3E96C +:10B0400069AD2DD1015A5EAA32493A2F21235246C9 +:10B050005461E30D9B68FE46D212FD218CD767F642 +:10B06000EF92B0438E0A272117C0BF68FD577E9F1D +:10B070000E8A961F2A2558BEBFF5F6E8EB99304F89 +:10B080005308A1F5B5967A705CA1E64A613A2DB7EE +:10B09000C1A5233A5A4F7FE74189D04F33AED5BF80 +:10B0A0007132617DA579C969A2F7FBA1FECE2C3D65 +:10B0B00081F14F2109F9346DD2A4D5F93448666F76 +:10B0C0004171BC9E34AF949456CBA9CF8E758F91AD +:10B0D0005F25D0A39E124EA4747C3923D05716D47A +:10B0E0001271FBCB08594B5A7E79371D2F19D57930 +:10B0F00077D1F9E8303FD5F3EB8BE8F7969FF4FC76 +:10B100009A4E927BED947E4877A4CFF9DD725AAEC9 +:10B110002BCDEAD511686FB4A783EE83D35F9EDD94 +:10B12000B49CA6F7D3BEC3387BBF288607E1DF24D3 +:10B1300048EEA4E98C696218C6ADBB6EAB4CE887DB +:10B1400059527E7F07ADD7A26B2926948EB711DFA7 +:10B150004C787E1FF60FED573AF16EA9A17471F489 +:10B160007B259F3949E737CBCCCAABFDDFBEC75C37 +:10B170001FB68D1FD737CAD8B8F6EAA30D36DACF77 +:10B180006E6292800EBA230F35D8E8B38FE86581DE +:10B190003E33EF98F326F47773232D8FFBC6189E6A +:10B1A0002110B6D1687EA8C138781F4D67C22061D2 +:10B1B0005E6E35867741BEDE7B23D4136A4B97EEF5 +:10B1C000A3CF03FBAF5FBC813E955D566F217E1E12 +:10B1D000F9C383B47C68BECB7B1F9DC7FD82F74655 +:10B1E000F85E596424ECFBB0BB3E2DDEDF50D3F596 +:10B1F0001E1F1D47175D33928D152884D2815E175F +:10B200004F9B697EE614DF2AA0C3D5651F5C6F9E45 +:10B210004BEBB5B2FCD3FB9FE856AA09195E34A7E5 +:10B2200098507AF4E5C95B2D1574BC42F07648AFAE +:10B23000DE7341B78B963F20D2C62FE1E3ABA2BDB0 +:10B24000DC61E4E91FBE34AF804E196C53482B0714 +:10B25000BA7C945E2AE2ED1391F6E7418B9A1F5E69 +:10B26000D89843E77FC4C8F29577326B28911DA820 +:10B27000E5F9E4670B7DD5D05EF2F7078CEAF7FFBE +:10B28000755D23CDAFB8424DAF0942F952B57D5E31 +:10B29000BE225F4D47BAA1BC3A5EB5FF99269E56C5 +:10B2A000F6773796023D86F3243ADE27F61817D54F +:10B2B0005D06747ABD07F862457E70951FF995DFCB +:10B2C000B3206D3CBD3C98AEB6337C0CD661EF022A +:10B2D00033AF77E5365F01CEDB353A5AA672D7D663 +:10B2E0006D3677E2BC7DF718E4EF17D8F7E20ECBA6 +:10B2F00075ED364C237FD4B673419105F9389D57CF +:10B300009F2E919E6472CDCD40972B15E93E9A9C5D +:10B31000AA67FBB5AFC978C1B5B4DCD695E2253ACA +:10B320004A47C41C75DF48F769BAC78AF56C37B05D +:10B33000761E3B297E0BE82BD422A5EB687D624B61 +:10B34000B4ED147D7F4B510696CB891E720B341DD4 +:10B35000CA196C10810E1B8DA49096EB5BB5DC7244 +:10B3600084A6FB2C02EED7BEB41395A590FF7033D4 +:10B370000179704FCE1B2867D4FEDF59A4C3FA367B +:10B3800037574660FFDF63B349D0FDF586C8D5F077 +:10B39000FDFAFD2269A32FBAC470B640E9B4DCB34C +:10B3A00035D841E9A4CBC8D669CF8C07820AF443CB +:10B3B000922D065ABEA753240AE5073DF50B4E15FC +:10B3C000C3FEAC62726273FD828BBCB4FE6D9D469F +:10B3D0009908F1F6870401C79B61F06E2AA4F91958 +:10B3E0005FCC109404FEB72C4FE47292CAD4398417 +:10B3F00058D93F49D6F5C3BE6520A744D202722171 +:10B40000D31426BB803FBD63278334DD9FE6F70856 +:10B4100034DF7A895554905F9DAC07BE3185560E56 +:10B42000FB7BF3BF3CA1C078FB0969817111127DE0 +:10B4300006E49AAD5524B05ED6C647A290966ACD72 +:10B4400063A62A783F48403E900F1D248DA6370BF7 +:10B4500051944BCA9D0E09E48EB5D448E404FE6DA8 +:10B4600023349DC0F73BF232F838E83CD2EFD28665 +:10B470008D5EE04311BAC7645AAFCB47C230CFD21A +:10B48000892951B11C9E2BAF25F07CC8FB157C9EF1 +:10B49000B09C8227F125B44359EAF11CFF751E5A6E +:10B4A000AF2B408440297B2F53F9E7E0F344C4706D +:10B4B000C314DA9E934A1C18B7A379495B14C621BA +:10B4C000EB5B1C741C8E8E156D300FD2125B00C6A8 +:10B4D000E9AC4E1E478C4F5E4EC2BB3CECBD1EEA33 +:10B4E0000722C1A595AE01FAB25F2E56DE874982CA +:10B4F0007467BF4346B910F2B2B4B28C7DAFDD3F82 +:10B50000D7CF30E2BCA8FB8BB8E84AD0755E42E7E3 +:10B5100085E4B1B4E884EED27FD3BED4CD60FB2DF8 +:10B52000730A6989E07823161DAD3FBF392F03DA0E +:10B530002352D80DFC607E9E80E5B244FFE20DD020 +:10B54000FFAF1951FE69DBBF8197C33FDAEE74C2CA +:10B55000DAB1EB4ED6DC321BFF2D3F4CC760FFDC6F +:10B560000977E2BEF98AE63B807320E7725B8D3E85 +:10B570004B797C9EA611368E69CD22BE9FD6F8C827 +:10B580001AC14EDFDD6BC279A6A357FE4EE751EE1E +:10B590004CA017FADFF4BB92D7619A869EDC2DC9C6 +:10B5A000E50D52727987A6FC012B5BC7DE5A121E8D +:10B5B00064F2B006F6832340710B1D9FA427F73A6F +:10B5C0002889863D0CE75DCCF1AB76BE4498FFAC94 +:10B5D000F1744812DBD38D4FEFCDE074700961FC3C +:10B5E00051936F37DB9529745EEC24A15EDAEF6B23 +:10B5F0000B3C1CCFD06F13E99A9C44DC9C691FF371 +:10B6000081DC27B5C4BB8BF273FBBE37C835B39161 +:10B6100010DF72B8303F5A9289B43A06FBD45EFD0F +:10B6200037933C01CEBA219F8D7BF8E127DD32A50F +:10B63000AB10F061FAB468E6C19967C4724ECE9758 +:10B64000B61ECE987984D255EDA34F1205F8EE714F +:10B650001DE2CCBEC7E5F58027DEAD215E85E63B69 +:10B660009E3B49687769FD3935F03E272010418AB5 +:10B67000D74B8B8445D7E4CFEE2311C43B018A7F9F +:10B6800084CB26C837448EC37EDE3EDFE65548FCB9 +:10B690007D247AD002FC21272AC6F0026CDF04FC4C +:10B6A000A098A93C9E19C307972D38335E285B806C +:10B6B0007861A58A17BE925153908017942F2D3828 +:10B6C000235E20B50B92F002E0A39C33E005E5EB8E +:10B6D000F7437B29F10259797F23E0AD34B5FC6D46 +:10B6E000D741FF4B44E15B84E226DD60FDFDB6B946 +:10B6F00080C77C5EC05B7F0AAF0902DE52F1977D96 +:10B70000B028097F7DB1D4B415F057C43C5A09F96B +:10B710009D5BFF127C86E284FDED2CDF3B386DBE25 +:10B720009203F96A7B7F098E003F32472C80BBB5BC +:10B73000FBE66CD739A48F582490A77C9DDEF38854 +:10B74000F3DB28EFDBB3FB0937C33D3ED762BABE5C +:10B75000EE1BCCDE419C8664FC63687EF946A13C0E +:10B760008E7FFC85DF08B6D17E95E928BF9C603FBF +:10B7700097723E5636646C01BDB076860DF944F77B +:10B78000CAEB7782FE56FB6873EF14C0C5C71B0C6B +:10B79000902EC9D363F9D0E3815C09F117D333420A +:10B7A00086881BFBFD70B5484AC78F2B3F6CF401A0 +:10B7B000AED7BECFCB63FC3C54C8DA1D7ED816266C +:10B7C0001E98E760937F02FDE673BCBF1DEB280166 +:10B7D000CC80F6470568FF7EC9E78376A765FA1532 +:10B7E000781A2491F826D0EFF57F9E4A7C09FA4614 +:10B7F00046BA8F4079FD9FA7E3FB27CDFE4BF3E8C8 +:10B80000FEFE55DD60D3B7E8777D22E75B4546262F +:10B81000FFF441D77CDA9E79BAAF268FF663BDE894 +:10B82000DB5237815C8BEB6DFE5ED0A36269C3C4D3 +:10B8300038D295AB8E8BE979541F2906FE06628FAC +:10B84000D1F7D57EC0B1EBF9FEB0965F8DB82B4B2A +:10B850008C58F4C0DF6E1325E4AB94A76C9C83A2D4 +:10B8600008E5F3C0A261373CBFEE61FC8ACAB5C8E7 +:10B8700053C01FD750794818831013E49EDA9F36BF +:10B880008F18E3BB13C9B17B3D32CBE7DFABF24F7F +:10B89000956F3EA208D0FFDF4D0B34C27CBAEA455B +:10B8A000C5541EC7295D0B5E437A86BF49709DEF64 +:10B8B00096FFC5B8EE2A4F3A9FA7645C47F952CB72 +:10B8C00044FA79E30CB6CE990EB61F513FCB04FC77 +:10B8D000270FC278840019017B463E91177C418A6C +:10B8E000978F2C348EBC0E38D1A543B921752A7E92 +:10B8F000F12CF0E1ABD3FC0FE0FC27E0C3AA043944 +:10B90000EAD39D191FCE368DF98681DF5C616E19F1 +:10B91000A4ED3A1B37AED2D9C7E3C4B6198C5E8A00 +:10B92000ADC1C5B06F494BD8B220810FB6CD60F222 +:10B930003586DB02343FED3CF0E57A862F514F83AC +:10B94000F5BA9BE18A42E215818E5D99270581D285 +:10B95000E6031CAFC4DAE5F8F2664ECF2ABE5CC23D +:10B96000E977E70C156F842DA0CF2D6D5171E5A8F7 +:10B970001BC6930578A0148B9A7B2AF15957469FD2 +:10B980003FE4E3CBB711057054FE4233EE13BB8E98 +:10B99000F607C6771D21804FB07F906E96E5A7E62B +:10B9A000429A7DFF385FE742FE7D6195CD67B1F336 +:10B9B00045A2FD5DCEFBDB971330CEA0E3A7A248E6 +:10B9C0003E88F4ED47FB598E9FD23FF07CBD1FEBC4 +:10B9D000CF6996644C7799905E559CB9A4D394B482 +:10B9E0006EB34D01A309EA5B6AC3FD95DF958C2B0D +:10B9F00097B7D2FD5C0EED27D3BDBACEEAFA1EE4AE +:10BA0000EB7F90CF039DBF4DD0AF69F504ED62CEC3 +:10BA10009C600DE8EB1487A21DA6F76B6407E2504B +:10BA200033E31F4BF9F896B606AE4A83FDA0238395 +:10BA30008007882BFC0CE0BBA1D62219F6559FD9B4 +:10BA40007B25F083BE3FA6C90AEDEF07791E86C3AA +:10BA5000A16F09EB3872EC350BE8CB07408ED0E7CD +:10BA600048BD48804F0E748A3B408E0D341EB2C8CC +:10BA7000606FED3C6601FEDF97C3E86A681509B7A1 +:10BA8000037E6B5D2280FDCF9933BA09F885BB51E7 +:10BA9000248324BE1E68131271BE6B613D7288241C +:10BAA000F749303ED65E618BB28A825952D8C9E6D8 +:10BAB000AFD8983C5FDFE3EBAD3E63F3D5C2E62B36 +:10BAC00087CF17D18F0A206FD47952F97A7E2BADA8 +:10BAD000BF1CFA3DEAC6FDC6C7BF8C8F9FCE53ED93 +:10BAE0002D99F17952F7955BED3789E0B89CCD221D +:10BAF000DA27B474D197131C81FC3E81C8DBE8B807 +:10BB00000A83A624BA703ED7C5F4C6FF4993814F75 +:10BB1000E42F4BA69B5C2539ED5A9B9C4EA99F5C5C +:10BB200046D0BEE8D4E8018E51F194C93EC17746B3 +:10BB300036DFEABC5E9CCFE45C37D763DA2E79103F +:10BB4000E9292490B009F582486F11E83D743DC1A0 +:10BB50008E47C89802697B0789821E147AE1031F09 +:10BB6000C893FEC7ED681FEEFFEB294C0F5110D6AE +:10BB70004EE7C171F864B491D6F3A57B2804A7E31E +:10BB8000EEEB7C17F3BB7FA347BE6CAFEF5E007C90 +:10BB9000D9AEE18F93E947AA3E73B67A11FC4DA462 +:10BBA0000FA19E8578FCD520E085FD6D2CEDDFF999 +:10BBB0006A10F0AC569F519F3FE0F29E7EDF08FC7A +:10BBC000AD60A19DC0BE7B675F36DA4BD5724D7C00 +:10BBD0007EF7E7317CE6FAB38E44296E2A7BC48C6B +:10BBE000EB175AE91C04BBBD4B62F6AE43A71E75AA +:10BBF0007F13E8707F762540F5BE53DF750BA05F9D +:10BC0000353D5202F6AB7BC4C8B32580AF0EEA11B6 +:10BC10008F1CFD9E15F9C3EDD3AC3B4C09B8EA81EE +:10BC20007CD63FD7DABDFD60B7EE5DA7905F15C645 +:10BC3000DBD18E6773395BFFBD221D0FC3A90DBB1E +:10BC4000D1BE5B2EDC8774106C82FEF635157960F0 +:10BC5000BFED35B271F72E7F42007F4DDF4A224A99 +:10BC6000178EAF776F46E4B811FA2BDA855D99F13C +:10BC7000F2DA72F47B3D7C1F5A49AC89F5F4ADECE5 +:10BC80006EF071DC03ED6FCCC9D901F34BFC94DD90 +:10BC9000C0FE64BA391D2FEFFF65CCCEBED92D2270 +:10BCA0005F22FEAD6D4B69DA7485D90BF44A96CDEF +:10BCB000F3C5FC0B947FBA830F90B59406DC14385F +:10BCC0001A32C6E747167EED28F887A6368A5E4107 +:10BCD00006BBA4770CE57D80E1C16ED7A1E323F418 +:10BCE000FD3DAECAB1119AFE6E7E09F6C33BA25766 +:10BCF000D07EDEBAFB41B0479A962EBFB7884C6023 +:10BD0000AF6CE4F6CAC6D1B653745E0ECFCAC0EFAC +:10BD1000A7458FA1BDB2BB99F99FB4F3F5A359060E +:10BD20002CB7B5308C7A44DFEADD6EE0BFFD4DC63E +:10BD30007A28DFDD7CA877F96CB04F5E9BC9EC9365 +:10BD4000CC5EBFBECDA76F9B1DFF1EFECEC54E387D +:10BD5000007872761C4F4E2151E49F2A8E1C001CE5 +:10BD600049F7F540F3C128F0897E9F790CF882B538 +:10BD7000F169027C9FAA19A32617D831C38823959D +:10BD8000BF3AC82EEF78DC4851477480E6A7AD75FE +:10BD900048F749E371E4B3256C5F7D0CF6C0FFCC36 +:10BDA000FF14D903F3C9984018FF433DEE50C978FA +:10BDB0007B6092BCD5D80723254C7F8CD909A15C28 +:10BDC000FEE4F6C1BF727EA2D597A03CE084BE958A +:10BDD000542E7AE2786F3AE0BD0C7CD695D1E7BE5E +:10BDE0001226B7A7035EA3F86D3AE03D3BEA57027F +:10BDF0008C4FC57BB984A739DECBE5782FCCBFCF7C +:10BE0000E5782F3701EF25EB5B6F0938DF14DFD5BD +:10BE1000CE05FDEA5D4C7FE3AB4416013FDE9B2C73 +:10BE200097FFB7D811BD05C976C4B64BAC6DC86FC6 +:10BE3000EF0CBA4D15C0771FB92A0DF00509EE01B8 +:10BE40009CED2D3027C551C4F9E5120BF00147BD1B +:10BE5000B8D808F2FFF0E87CC0550EDFB9C9D78F1B +:10BE60006A7FDC59E289D979CFC6FEB877DFC1672E +:10BE7000C1DEB8A54A44D3D9DE7D6F98974CC0EF98 +:10BE8000D4A7D61EF903A051A0FFB660C344F68F15 +:10BE9000035C4E67DA4FFA40DF54DB75EC7B2BC94D +:10BEA000EE69DFC7F46D6DFD994063880F5E477CD6 +:10BEB00060E1F6B99B865E477BC21A1DF3AF92F52F +:10BEC00004F9E47B792DBFBC1BF8FECAA20AB0635B +:10BED000EE1728FF80796CB3613E5DB9762BE07573 +:10BEE000C541EE03BA58D5FDE6725A6E6569318ECA +:10BEF000A37745F729334D7BF44A06C4298402DB36 +:10BF0000D07FAA1D977B5914F9957BAD4E067F749F +:10BF1000ECBD3988FABBF3251D51686BCEE0E236E3 +:10BF200003F46F19417B3E95E3C2C2043D33876E33 +:10BF3000E2286DFA56FA449C14B0621AC74FF7D340 +:10BF400007D3035F2FC882768CD80EA962760AD5F4 +:10BF5000EFF9839D6FFADB0A08980CA3A68CD4EB4B +:10BF600016B38B2A6352AD2D6E17BD69E7981FEC8F +:10BF7000826B7463CFCE827EDE24A25C1D3F8FD2A3 +:10BF8000ADFB406FBD99F925BA0F2D59053AA97B34 +:10BF900047D72998BFBE72B61F48A9548BF6816651 +:10BFA000E6678FCFD74901EC27DAF9EA6D5EE0004A +:10BFB0007DC66D8E08127D4E0D1E1801BCA29DAF70 +:10BFC000729827DAC445304F02CECBEF3DB4BDE9BD +:10BFD000F5567CAFD28B3A4FBF87B9CC4A18D752AF +:10BFE00011EB4B39AE0636AE9E43ED382EE78E652B +:10BFF00038AE1FCF30235DA8FDF6E8A316987FBAB0 +:10C00000CE16880B990AEB2CA7EEB73A4EB5FF6512 +:10C01000BCFFCE4072BFE9781E2DB838619D0B146D +:10C02000942F317BB4725AAA2D8DDBA33B769EC62A +:10C03000758B2CE47E60E5CDD12895313D4F2E697E +:10C04000D827C3B8C994521CB735C57AFA1B6E8677 +:10C05000712FB661BEF3B6E5E95727D0F93B33D867 +:10C060007AAAE3760522B87E745FA0BDB837C0D641 +:10C070008DC88C1EB5F4A68ED7AB8EB759B34E9330 +:10C08000AC379D8FE30509FC559D17D55EFF9D9D3F +:10C090006F0561FC31FE40EEF24713F8CF647AC1C0 +:10C0A0001F0B3E19BD20BBF0DCF482AE924FB75E91 +:10C0B000905D98AC1784402FC0725B4700B77D54E9 +:10C0C000BD2094B6EF19D8E2BADCBBEE85A7E9AB88 +:10C0D0000CDF9F6B9C44F711F204A1E3BAE0A6DDEC +:10C0E00002D07336B7FB6BE7C199C7F8C0DFB27CEB +:10C0F000258567E177F31632BFDB8887FB2B74A3B6 +:10C1000025668ADDBAA5B4ADF32E4DD89F974FC2F0 +:10C11000972E65FB97D2632DD093E30E710FD02538 +:10C12000C9518406BAEF7EA6D9A78E6A86A3CF9599 +:10C130003F495C0EDDC4E510DD7F5717228E489025 +:10C1400047BAF83EA4F35A3F915EF437D938E17804 +:10C15000BB44A902F4925B4BBF11D4D3F4D605368D +:10C16000CEB72EEE8675419CAEC60599C14F297299 +:10C17000BE77F1F58D345F3A3A16B5513AF972E16E +:10C18000F7B69969FFECA36AF96FF8A3349FE82327 +:10C190006EC4373AA50DE75547C676A11D89E1FB68 +:10C1A000BEC68C4A663F2188CF9DF0A44D389E5F65 +:10C1B000D606F29AD4982385602F7EAEBD0DE25D3F +:10C1C00008D59B0097F87C39CA1B387E3A3EC46973 +:10C1D0008191BBD1EE6697412FB28F8637819E4504 +:10C1E000E66560FCA23340CB27C5DB1166A76B92E6 +:10C1F000501EFAFDAC3E01EACB1F5F3EF4ED97DB2B +:10C20000009FF4B639481EE83D816ADE7E727DD912 +:10C21000F54EAC6FCB7387B0BC425F433C8A74343D +:10C220005C8376A356A70CFD21FA807B3EDA693247 +:10C23000B19DFF84F5D5415C99BA7F232867E8FC5E +:10C24000A1DDEE483A2B77C33C566E6A4BD80D7E83 +:10C25000C9BED5DD0D4057C566B31EDAEFF6C94934 +:10C26000F1969770FD2015FE38D767681D51DEC026 +:10C27000B856FAA4AAF24873BB05E2EF7A9A2BAD3E +:10C2800080AF4346A51DE2E97A978888EB47AA2A42 +:10C29000ADB00EA1E70C04F873A8EA20E2F0CF9746 +:10C2A000B03896507DED6720DD27B0FDAACE8730EF +:10C2B00085D1B5DAEE07856C1C17EB9E423B653FD6 +:10C2C0008FF7D1F6EFFF1433F9B1D9AECA8F7412DC +:10C2D000C620CE9302E86B470A93E7C335BD7DB114 +:10C2E00000F66DF2CB0547A9DC725913E89DEAAD63 +:10C2F0005B0989C5D915D37EF56CB0F2FCCBB74389 +:10C300005CDC665EFEC8AEF2ED20F712F37DFAF15A +:10C31000F9D3EFF221FF9CAE27CAB5A0EF05E6DC0A +:10C32000A207FD7B6D669CDEF2E2DF11A57C7B340B +:10C3300027DEDF91533FAE037D2774270983FD5924 +:10C34000AA3E701CEC01CE4E23E2E12177A006FC50 +:10C350002C3DCF5B14B0D71AAECE443A3550200AEC +:10C36000743D3DB07114FC6ACEB59949F43B72EA54 +:10C370001637AC63F7EB8FA33F2D9879A05740BBDE +:10C38000AE9124D293B3997E5F7EF6F4A2D249CACD +:10C390007CBE4E74FFE07E50DFD7973079EC2409E5 +:10C3A000FD3C837FF4E37A9E6D7FB5EFD5FEAAF165 +:10C3B000CF4191C97B359F14B3FCCF1533FAEB13F2 +:10C3C00018BF50E65BD17E2171FB805A5E2A62F273 +:10C3D000F96DFE5DC1C27F759C291E40C549B174CF +:10C3E0000C1FBD92F74DD08FE7BB2A216E5AC5476F +:10C3F0007D0FD779001FA5533A3466C4E31A7F5ED8 +:10C4000070975FA174BD83D2C828AE8BCF01FBF3B8 +:10C41000D0A2EB1BA0BF3DAB8D188F9D3945E945E0 +:10C42000FDEEE7268C5BDD5CA75C750B8CA98A5C56 +:10C43000702DD8199BF3901E7BA222C6292AF522C3 +:10C44000C6BF4E7759C63AA89CEA8B1EB25C0B5306 +:10C4500050A457ED6D66F0E383BAC49E8A019EDB5B +:10C460000DA30DE07FC8EE64F12FF98DC41766F6B9 +:10C4700028A3580571E907377D9EB6D7DF9C81E672 +:10C480001FA740FC30EE48F418F6B7AFB54804B922 +:10C490003CB07AB905F4E715DC9EDB1D9DD87EE83B +:10C4A0002932703BE5328C9BEF26A40EEADB6E60EE +:10C4B000F2645AA75CA99078F9ABCBD97AE6B7C6F3 +:10C4C000F904A806A116554E7EE68646E003CD6A1D +:10C4D000BAE765D007281F14C06F3475AD3821AE98 +:10C4E000F97DA989E9E729E22D9E2E15D478D10995 +:10C4F000FDC3A287E1A2FE234CAF96A95E0D46279D +:10C50000A96523DAED0855D24DD5887746CC90CE73 +:10C51000D7B7809F5AC52BEFE511017060A8A6B868 +:10C52000459140BF6038A8A7D95801EBDA1BD8D68F +:10C5300006F3FB0E5D03C230E508D8551D015B0B09 +:10C54000E0467BF094A24BD2AFC708E8ED6EE21B49 +:10C5500003F92C69F5EBEA71FAB5E89940BF16B911 +:10C56000FEB8DDC2F6D99363E235A02F85AA9CE917 +:10C5700010071BD19FAC47BF65BD5368A3659F2CB7 +:10C5800065FB2767E11C11E65BEC3CA99C043BF0D2 +:10C59000DCA81B70E5F9C6BD667B189EB43CB52DC2 +:10C5A00000B86532BB4868E56E37C8EB3E4318CF2C +:10C5B000F31CE4E7431EE2CFE15C469F6AFE23FCE6 +:10C5C0001CC96329F29FE0F94FF2A736FF3FF877C5 +:10C5D000D114DF1FE2DF1D4EF1FDD3FCBBA329F216 +:10C5E0009FE5F9CFA5A8FFA7FCBBD114DF1FE3DFB0 +:10C5F000BD94E2FB97F977AF8ECB67EBFF1ACF3F85 +:10C60000A1A9FF17BCFC49FE7E6FAECCCE67A43F4C +:10C61000E45E41D7530FFA07ECD31D1D19C0DF129A +:10C62000702EC6FD24C4DB23EE8DC79B139FDE95C1 +:10C6300094C678B792E9E13C30F6BCB0BBF17E1904 +:10C64000E2C174BE06B009BF52447C7589E595FF0E +:10C65000DEEEAB8EC77BE906FF126CB341DA570101 +:10C66000FE00486F7043FBD24522FDFEE77B6FBDA5 +:10C67000DF7CE944E593D3E7DE9EE67B8734253112 +:10C680006E47FBACB0518E41E5C433456CFF550C91 +:10C690008F5E0D38425B0F9D9E0A9053F1F8B90FE3 +:10C6A00082A0FFBFF7FA171C40F72A3F2336E9297B +:10C6B000D85F99D748E9105FA0B6D3B34EC23827E8 +:10C6C00021CF9364C7ED09644C49D483070E8B5185 +:10C6D000C385E857A983FA2A02249A95804BF20F62 +:10C6E000936C81B2BCFCE8E3824CFBD3735BB00972 +:10C6F000F0F2FEDA64F9FD1697B3028F07AB088CEF +:10C70000FA00DF8C9FDF89F9F02F6671FBBF4DD2F5 +:10C71000E178A87E735F457CBE2A22246A2887E7D9 +:10C72000682DD41B8B3B54DEF7C3BAA87187AFEDDD +:10C730007E1FF943DB25CF26F99943AB44B4770F2D +:10C74000ADA5AB4BEB75749ED97E3DC8F96308F679 +:10C750004F69EAFDF71DBE8EC3650C77035FBA39DA +:10C76000615E86B81C1CAE60FB2CBE6F8A4475DF10 +:10C7700088B4FC5E3E7F7B7309CEDF707ABCBEA5B9 +:10C7800009F56DE1E703D47EA5E25BDF2A4AEE7F7F +:10C790002AFE122A2249F5A5E223439AFA52F1C34E +:10C7A0002D9AFA52F1BD0734E552F1E77B34ED7E64 +:10C7B0008F978BF0E7BA22EE279F842F69F95B8869 +:10C7C000F3A5E1EF2CBA5F41BAF4BE887AF11DCC33 +:10C7D000BE05FEAB436AFC0AF773815E8D2218E248 +:10C7E0005966303F6AEFE8B6F42F22EA22A4DD1939 +:10C7F000F75BADF6C83C0E26B209FC5DF6AF32FF22 +:10C80000559F7BCC5F8A7EBAC9E20F92FD4EDAFC5F +:10C8100058FCBAC61FA42D3799FFA89BFB37B2B8A6 +:10C820003F06FC9CC9716FC40F716FE711EFB67AB8 +:10C83000C63F21DE6D288FD18B1AEF3372EC92AB9D +:10C84000993F4B1A84FD3FD2292A02E2D8BC41B05D +:10C8500057EE51CB43FC70663CCE854A299C8781BC +:10C86000AA1CB43FC4FCABEB553F95C6BF2A49D7C1 +:10C8700094C2FA5E9E57C9CEA19109E3DFA64B4A46 +:10C880008D40F31FC97331FDA67110E39C6274B72C +:10C890003E99EE12E3E180EED438AA7BCBD3999F88 +:10C8A000F285D316306BC4FDAA13C7C7FD88C7C570 +:10C8B000FF288FD323F7AFAAF15DF09D1EC6BB8A78 +:10C8C000D1A7F5CF1EE2BB281E0FDA94C7F6955507 +:10C8D0001F26100760FD7301E63BF3D97B350E4A36 +:10C8E0008D73A2885FC4B819FE5EED379D07233CA7 +:10C8F0000FC4EC02AF5CE7CB81382C96B6E6BF7272 +:10C900001DC4C300368438BEE7797F0BA9FE05FE3F +:10C9100059350E2F9FE71FE1FDCAE7F96A9CDF64D6 +:10C920007EE6D53CEE763E8C9D7E5FE708FC04E813 +:10C93000D3F7D0C976F0A3995CC40B7E727DBD1F7E +:10C9400062F426F54FD0EF5FC4EF9BDF8CC2FCC7CB +:10C95000BE070771FEE4F6D98FECBFE1FE8CBF681D +:10C96000FC37AA1FC359AF707F4600FD39BDF50BD8 +:10C9700050FF4C854BB4FE275773821E01FF2B0DD1 +:10C98000A29EE26A2604ECE067F06BFC4A4EB00B14 +:10C99000A97AC7AF64C667E87CBD3F833E7DD114EA +:10C9A000F3ADF17FD0F2589FEFB989CBABF552BD13 +:10C9B000280AFA32650D63A03799C9295F01F0157D +:10C9C0009F39C2EC98A74919F457B57BCA5ABB27BF +:10C9D000F9F0EF73D876C3F346276EA9017F6EFF97 +:10C9E0000594A0E782DF36D98EE9D20746D00FE85A +:10C9F00025DEF515E3ED9CDAF2CAC2B709E0394746 +:10CA0000C725CC4E55CDEC549FA5FB13F8E4D9DADD +:10CA100055CEF579D6762312E176D408EE93B2623C +:10CA2000C61F377758EB40AF06FB33D84FD5FA8A8D +:10CA3000CD8DE8271BA93A66013D70A0AAD20AFC59 +:10CA40006CA8BE16FD66A9DA73FE399D2809F69515 +:10CA5000CDC64003C54664EBF0B4851DE6447BDDDE +:10CA6000BF7445ABA15D09E335BA56F0785AC9E702 +:10CA70003993FD26166F0776735BD2FB33FACB161C +:10CA8000147F32FE3285B77BB6FEB20DDCEEF5695F +:10CA9000F597296AFFB9BFAC2F218E0EEC1E1FB788 +:10CAA000BF4CA507B4C7D912E78DF533D4548476AB +:10CAB000FE5E437031DA29563A3DED09F3D67773BD +:10CAC000A401E6E5E4FAA902B98C90AF16CB49714E +:10CAD00099A19BC30D6CDEA663BED349E2FA2FE594 +:10CAE0005FCEF8F928456307F741888D8A4389327C +:10CAF000AD6B1EB37762FAEFBBA62D5426486BF7D9 +:10CB00004FCCEF91A743BB74F706EB84E7F5CF97C3 +:10CB10007FBCC7D76DA4AA1DF77B4FD521C42FC5F5 +:10CB2000E67B51BEF4076A51BE6CE6769B01BA9F64 +:10CB300015DCBFFE8BBC747E820D46BC8FA25BD021 +:10CB4000A15E3372EA0B75C05F872E95118FF99F36 +:10CB500099FD1ADADF5B8AD0BE9A3193B5D7EF56CA +:10CB600030FED0C1EDED2ADF54D75D1D7FD66522A2 +:10CB70008E3FA1DF7B7E5D087AB0199FF6AA31C493 +:10CB80009FA175124B0748AD91B6E3B82BD97E2F04 +:10CB9000576526F1ED9CE6E47C37953380DF0FD6B0 +:10CBA00047D09F4A9AC77C46B4C711254D8EF707D8 +:10CBB000CB4F6007E8BDF9E9AB8CB85FED3EC0270D +:10CBC000A75B2A6F80B304BDE9C106C0AD3DDC2F71 +:10CBD000A496FFF77564B883F989C2CBE83AF42CC0 +:10CBE000F96004EE03E95E452AC14ED7633DD906DC +:10CBF000F8B6F7765201F1F0DD06568FFABD6926D8 +:10CC0000D38F7433199FD1D6AF7DF658952642F94C +:10CC1000EC9F8A4BB783BD644088D173976F027ACB +:10CC2000ECE978CD8D3185503E7D7CBE54C4F64B09 +:10CC300050205166A737331C4DF938C89B8FBE5F13 +:10CC4000AE3FABFDD203F26B023EF61B4ECF4FADB3 +:10CC50009C23023DE753DC047C7F6A4BD44DCAC061 +:10CC60002FC6F46F3BBFD7C3014F180F9F4FF5A9D5 +:10CC7000D6F39B6289E1103DF1C07EE859E7DAF313 +:10CC80006B03AC9B8C4F57608CEB3F8C3E0C9457E6 +:10CC900000BDCAD54A0DE098D0BA622C67FB700C73 +:10CCA0007182EB1CE932E6CF9ACBEE5509BDFEBE90 +:10CCB0006F18FCB2CF5B1488B31D72B3F3805AFABD +:10CCC000B4733F94BD3AB9BE8F8B7F7C547E933250 +:10CCD000DF3EEA06FB0DD2DBDCF1EBFD51E3E59C28 +:10CCE000102F0776F9551B315EEE81992C5EAE67E9 +:10CCF000C5468C972BDEC1FC18DAF82E5780C5C9C3 +:10CD000039EB258C5F981A10C3106F1D8B1FAA9AE0 +:10CD1000387E685C5C5C73B2DDFE2CE28716CF9CCB +:10CD20000067AB7173FFB5E7363F9C535DA3F3FB20 +:10CD3000305EE00A33C60BE8657FB404C74D1007C8 +:10CD40006BE70714E0AB69791DC5C9809B0D99DEBF +:10CD500028F82F68AD2D700F0FC5E3AB6682BEF3C8 +:10CD6000E51A02FC9BF222C4E33A9B8FC03CC4E369 +:10CD7000F056A2BEA4C6E1D5EC59E957F03CB3F495 +:10CD800036FA33BE6493C15F07717DC64A7C1E3696 +:10CD9000D1E70BD0872C582781D7B322087E5B17A9 +:10CDA000095AE068F41A9D9201FD23B7E853C47D47 +:10CDB000B1B8136531D3A7422B37CE647A50B00691 +:10CDC000F9EE5DC1B9A0A79B4AB4F15F01B63F730C +:10CDD00082CF807FCAF5920ECFA34CB60EB97C1DD0 +:10CDE0002BE37125DB617E4862DC5E5E7C7DD4FBDB +:10CDF0005F96EEB915F188BA7E745EFB715EF7B589 +:10CE000009C6643D523178265AD7F38BFB2BD58C5B +:10CE1000DFA31F453CEF3607AF8238FA8F31EEEFC4 +:10CE20009199678CFB5B85F19AAA5EFDCA775721C1 +:10CE30009D7C5C7E84D199BFEB4AF4231CDFB3C692 +:10CE40000F7C432DFFDB3D7FEC62ED9D673EB7FB22 +:10CE5000A7B26FAB76EC2E1E4FA5BEFF13BFAFEE91 +:10CE60000D8E773AD29DEB811F653D22CAC0B75324 +:10CE7000F141ED7D3BDAF3E56ABEF6BBE35C6EA5FE +:10CE80003AB7AEAD271E7F79DBC7127FE9D1472CB9 +:10CE90000D74FD676BE82F868FCE315ED69B9AEEC0 +:10CEA0000C25897E4F1EC7A9DA17FE7DCF57F1FCEE +:10CEB00015DD77534AC0BE7094F2078DFDC6288CED +:10CEC000DFAF993A7E7FD78BECFEAE54FE97189E6B +:10CED000E27E983FC99EA47819AD1F6608FC301405 +:10CEE000640C713FB9D60F3315FC3054DF9A0A7EBB +:10CEF00098B4D47E987C1E4FA9D215A5271DCC5F6F +:10CF0000D61C725EF444E7C95B725676B289F73379 +:10CF1000FDBEAAE42CEC3EEABA9C2F7E509FDA7844 +:10CF20000C15FF3C6A2749FA02C5C52430037098E6 +:10CF300099044C80BB257CC6E46B20191F69F197CE +:10CF400036EE488BB3FA84518E935FDC66768FC7DA +:10CF50002D2A6E9C0C6F8F54F338B16A1627A6EAFF +:10CF60005F430116FFA59EDBD1CE8B1ABFA5A6633A +:10CF70007AE33C5DD23CA8715C5B1E9CB3C83C0D5F +:10CF8000E2B8240BF0D16964EEA2BAB9671F77A5A5 +:10CF9000DE43916A7DE2F6A343389EFE2A369E2147 +:10CFA00088632B053B50C40D7AC8E292CB1775B845 +:10CFB000D08FC7F9D01B0BA2DC1E05742DB55B65A5 +:10CFC000C06D6D2B1F398EFAE40B3A19F06F59E7DB +:10CFD000F2FF06F03EBEFDE4FB1FB44FBB89FB55DC +:10CFE0002954017BD7A4FA0FE8DBA5AC3F89E7EB16 +:10CFF000EFE0714CB797104D7C33F94876070B186A +:10D00000C62F4E6D7700F717D8C5A714B072B9DCDC +:10D010002EAE9E6752CFAFD833893EA7929D830133 +:10D02000FE5353C0FA7925FF2ED3CEE27C63E76628 +:10D03000AAF310D24D87FA693D3A289705FE0C5A9B +:10D040007F46FCBCD564FEB29CE7BB2C6532C44F66 +:10D05000F5A77F514E94EFFFBA2831AE5DB5DFAB37 +:10D06000E977F249CCCF90E85FFB6BCCFF90CABF69 +:10D07000A6F59F8DE2F969DA3FB9CF1BF7CBA4F390 +:10D08000F1C89A736F99263FDE37A8DECBA1A5932E +:10D0900017670949F74610121612D75FCDA71C74FF +:10D0A00007D26927413C297492911FCEC6E9F17FCE +:10D0B00081F6E3BD5F4C41BF5ABF9BDD7329051468 +:10D0C000BF6847B95B037CD275AD89F9DB52FBD7EA +:10D0D0004E959C877F6DB2F385B34D4C2E68EF174C +:10D0E0007888FBEB1F9A25A8F739802E40151A91F6 +:10D0F0009D43FC07DD27B114EE5748F0330DCFE216 +:10D10000F75F4D728F442A3F599F8FA01ED3DFEAED +:10D110001C8438A7B459620A3FD928F2B354F74D9A +:10D12000ECE4EBFD51EF9B08F379FCB4DE37D1CB97 +:10D13000E9A1978FE39F75DF44DD2CCFA7F2BE896D +:10D14000ED7C9ED4679F99B5EF6C216105F06C0E64 +:10D150001BB7BBD5280FE2B8E9BC815DBF85EC5099 +:10D1600012E62D76FF046F4F7BEF447E2BBFDF8EE0 +:10D170007CB2F74D9CF539D6F3BC6F623DDFBFB989 +:10D18000056C3FAAF74D74431C10EC3B12E8857107 +:10D19000A5BA6FA21BEE9B983DFEBE8901B86FC277 +:10D1A0008BF74DF8208E3676DF44EBBB587E48BDBA +:10D1B0006FA273E2FB262A017BD2755E364B8ED1BD +:10D1C000EB47F29B2BCF2E827827D56F5EBFF7D926 +:10D1D00045E02755FDE653A1FEACD47EF30B78FB6A +:10D1E0005ABFF9647107F2F3A7517E0FCCFF10E329 +:10D1F0005D62F25BF9C3A2443F9B567E1B66116CD5 +:10D20000EF6CE332DEE6E72CD47D4B7CA316B01343 +:10D21000BF5D2227E94F6AFCC40F3C6CBC7BF54C18 +:10D220001FDD5B60F3B6C1BAEAC3AF5D46EBB53C48 +:10D23000C8FC0EF138D78396C509FDFD09E7DBDB95 +:10D24000D3985E7E58D2D9E05ED45033C33D540E9D +:10D250005F037439D0442430490D18C235708FEC07 +:10D26000C0B789047AAED8196E43FF67D328C6C108 +:10D2700076F3F8E4BD43BF5C04E7565F2C91F8B940 +:10D28000F6303B87C2718CCAEFD262F410DE0472B2 +:10D29000C97E07DD8FD00EE01821757C600C77C445 +:10D2A000FCA3B2A8FA4741EEBE5F2424E1452D7EDF +:10D2B000D1E6A7F28BBEC3F9FA3FDB2F9A5F7A6EF5 +:10D2C000E708FFADF4D3ED17CDE7F7B9FFA3FCA254 +:10D2D000EF17313AD3FA477F9EE99F598A3855367E +:10D2E000F2FB6ACE480F9F2DFD78E9E1E799814B6B +:10D2F0004AB3E2EDABF7904FD68FBAD28FD75FBF6C +:10D30000775F650FD061699A5102FBBDDA8F99266C +:10D31000B6EF56EF691C057D2F7BD87B23E0721F8B +:10D320005C8649F5AEECC628FA139C8A9D20CEEEA9 +:10D33000DC2DC07A67B774D780DD79CFCE43E88F14 +:10D3400038ADCCCC033DA53F6D5480A381761E271C +:10D35000DBCFF94ECFBAC7FA3BA85E7C456B5800CD +:10D360007EE20A307BD4D4E6C045C0871C3CDE494F +:10D370001D7F767344800B4CCF57AFCC2895CFA838 +:10D38000577EA590F32FAECFD3BFC3D9B41D7D0E6A +:10D390000927AD87839FE35F1620306E57C08FCF7C +:10D3A000AF73B9179ACD709FE235333D40575D0397 +:10D3B000FD355D1428D225D8CDEE9675587EB27B0A +:10D3C000FE27BBD77FB2FBFCEF2D4DCBFCED14103D +:10D3D000BBC40BF6992BBF5FBAAD0EF8D00B3AFC6D +:10D3E0005D849D069F68A1E9B527042F84086AF72C +:10D3F000BBDB7C5D2F9CBFE95847DB31C07C33F938 +:10D40000D2B98EB683E0D05F07E3B3DD98910EF317 +:10D41000F404DF3723F5ED78AF765FA728211D1ED2 +:10D42000BD7953216DE774A68868BED81060F9CD28 +:10D43000A25781FCFAF67B019FF4B6A8BF37B1145E +:10D44000F37B2511FBD5D7F8461DE417AF1625F061 +:10D45000070FF1DF931868ADB4C2EF4CF4D71F4348 +:10D460009CABBE1FEA64BF3301BFAB01F4A69EB301 +:10D470009A511A681713C6F96F32DB5F211E176EB7 +:10D48000C87A09F58A219724C07ACD7ACA82F436FF +:10D490003553DA61A1F37D2F2F6F5AABF302BF36FC +:10D4A0007432BC3635A78528A5F0DE88EFBF2D3352 +:10D4B0007A3310335E31A2AE175DE1785A07E55436 +:10D4C0007F2ABB775395C39B5751390CF23CED64CF +:10D4D0003DD25303BBEF3F67A111E5767EB3580100 +:10D4E0002CB585FB9DC54E9FAD02E46AB358F90586 +:10D4F000397E5E45262FA1DDEC009F973C399A745A +:10D500003FE2CFB83C39D022D64D144F5157C4C654 +:10D51000BB46476A20FE533D8F3BDE9F466AC00FE5 +:10D52000E3F099F13C8F6AEF969ADF453F1BD57384 +:10D53000F0DE4B8F7E8C1C81EFA01CE8C099EC9E26 +:10D540000DAD1F4A6D5F6B1757CF01D5ABFEC4B849 +:10D550009FF0FF227FD59C0B52EDE2AABFEEDAA22C +:10D5600036A9BD14F800C313CA0AAAAF56D06E6418 +:10D57000F89A48827D70DE59E2860F3F66FE7CB6DF +:10D58000B8A1A4ECDCE2A9BE54F6E9C60D256AFFF9 +:10D590003FE67BC94269D5CF229B8EE385A3403EFF +:10D5A00071BBDDD2EB13EFA356E947A5EF351ABBEC +:10D5B0008F47DF72219C0F1B6A348A308EF75E7FA3 +:10D5C000CF87BFC72048E857EEED5C22401CF43BF4 +:10D5D00070C00D39E19802B84792F5B81FDCE6C07B +:10D5E00008F0B96C9F790CF4FEECA0D0968FEBC3D9 +:10D5F000F65D76231100FFBB0336BC57CCC9F7C3D9 +:10D6000042753FD8587F5CCBC84E681FCEFF9765E8 +:10D61000C1BE9CF87E95F8B9C2DA0AB0053DBDAF2F +:10D62000F56538FB3B6EBF9CA7FC7597C96794BF37 +:10D63000E3CF011917015D9488CC3FFE27F975EE01 +:10D640009F9CD8EFB897EF87733E5793F2F73FCE82 +:10D65000DC0FBDCE7700D6EFF4FEE541BD1BBE1F4B +:10D660007D90A59FE89E7759FCDE6C6D3F9F97E506 +:10D67000247CA3DE9BADDAADB72FDA9D97B87FBED1 +:10D68000CFE58D9AAFD573B6F17107CB047EEEF777 +:10D690003F1AE0F730DE51EC32DC8BA46D5F7DA6E3 +:10D6A0003EFF3B317FEA5BC9F8D3D0226204FFDC46 +:10D6B000D0B75FCE033BEC27F5BB38942F62F9DB84 +:10D6C000571AD1CEB55F60BF93A3CC37A39C183255 +:10D6D000B0FAB73719879504BEA9FD7D9C5574FD36 +:10D6E00094B3D03397950967D433B5F9A9E4C5A1AC +:10D6F000B24F465E8C959D9B9E995DFEE9961763A1 +:10D7000065FF183D7319E763AABCA0F5913B01DFE3 +:10D710004F15514FC81F8EA01F42D59BF23B47317A +:10D720009DCDF5A6EC66AA37D1F166B752BDA91416 +:10D73000F4A663B85F54BD69202D8A7AD36A4E4F30 +:10D7400003690CB7C6F4A616AA37D9C6EB4D5FE33A +:10D75000FD8AAD1FD79BD6F3F5D3CE6F97CCE8E10A +:10D76000C706DF9472B0CF721CFA873D8F22DFDAD2 +:10D77000A05716E07DFC613DFE0E0FD895D16E4C92 +:10D78000F51AA0AB210D9EEFAEAF354FC4EF54FCA0 +:10D79000DD999BCCF7541C7EBE72E59793C89561CA +:10D7A00083920DE7E90EEDD8E8C6785EFEFB01A98D +:10D7B000F8E2F45C99FBB3140BBF5FC002F706A854 +:10D7C000F21E6E70877E4901B6DEBD0111EDC7AA5B +:10D7D0003CA77880DD43B3D4D6C27E172E80F2DE1C +:10D7E00001E73550BE537C301BD6DF282A880F6EE8 +:10D7F00011C0AE3E50E31A037C90DD388678C14DEF +:10D80000D8BDA1D9C137D10E0B7E2CA84F95F77E7C +:10D810001E0F42B83D3D41DED7955F9C5ADEABF707 +:10D820000A54ECCFBD1FE2ABE27151AC9E211F4107 +:10D830007F546FA788E37887E20CC005319C73930F +:10D840007A3E2C88E74C1D8DCCEFA1EA0303AB99FF +:10D850003EE06C79CB0771319248D0FF961DDCD148 +:10D8600006F4AAE278751C5F8AE1F8311CA75B9E7A +:10D8700087FA83B6FF745C4BCA13E35CCC2CCEA54D +:10D880002F5A29826ABFDD308A7AC3D9DEAB70F99C +:10D89000EE9E9715FDF9E0B876E1DAD967C2718A94 +:10D8A000302319C7B1DFF5A17ACF2E693C8E73F111 +:10D8B000389FD87C8C5FD7F5E567C071F1FB2B8C66 +:10D8C00044BDBF02EFA388B2F15EB45BBA0ED65B73 +:10D8D0006B978D9D974B61973DDFFDB991FBAF53E2 +:10D8E000EDCF3A07BBFF6FDCB9A7657EC520C7EF58 +:10D8F000FFA325EC02ED7733EF8A898C18A7038EFE +:10D90000A68A25CCF7E775369C2FC74E01EFB9B92B +:10D9100055396C84DF0123019B0FFDBF246204BBDA +:10D9200047530D5B0F08C784EF3DFCFB5B23A6A4A8 +:10D9300079BDED2153D2B9300FE97C5347715A13A9 +:10D9400031C6DF039D9CF8FD09F0477934EF89EE7D +:10D95000CB0E987FB8160236B396CFAC3D613972C4 +:10D9600038A1FE1F96A765FE167C089F259FC573EC +:10D970005AFCFB547CEABD75E62387295FFDA3C1F1 +:10D98000F714EC770287C0E612B2E5D2DF1607265D +:10D9900090A778B3149D479B6FCC0771BEA9EA95F9 +:10D9A0002ED53F036E9A4EEF5B66E6670F237D74BC +:10D9B0007A4915E0BE4E2FBBCF227D5E949CA97F95 +:10D9C000B4FC65C0F4687969A27209F5860D586FD8 +:10D9D000463A6B8FF5F31EBAB747118FF9CE789E92 +:10D9E000CF24B3FB61D4EF52958BD7E7FDCC99CE12 +:10D9F0006D6D5A278DC1F98349EBB39F5D7D9DBC49 +:10DA00003EEDB86D39CC6E94E6A5F90974A7FDBE5C +:10DA1000F4C3F64310FF6A296676484BCEEE28C45D +:10DA200033DEF1538B6276C1FBE478F97BEE1E3B6B +:10DA30000AF9169226B5C3337AE7AB0E4AF756BFFA +:10DA400051065A2C54762A207F36159308D85BBA93 +:10DA5000EE6676D92D0579188F58D8D9659E289EFF +:10DA6000A96F1D6EBA58DADA188EC23ECE6E0EE479 +:10DA70008B09F54C059C9F40D76ABDA9E6675CBD44 +:10DA8000CD6105EA9DDAE82D827AD5F952F3B5F534 +:10DA90003B22ABA2C0DEFF304D7A0DE21B4EEAD234 +:10DAA000F0DE9AE227454C5BE8E6043D282C04951D +:10DAB000AF03DFB9CA82F7646F99168C0ED174E098 +:10DAC000671605F863E9876FFD0EFC74A66101F126 +:10DAD000ACA9C3F82CE42F10D32442F5BD2DDF6C84 +:10DAE000890ED17A9A9E9BA9807FD454901C17B737 +:10DAF00022DA20027F599193118679DEF237C62F00 +:10DB000077EC1276C03D89E19CC18D604F7E6B58E9 +:10DB10003800F64DF2211DCF1C5A1EF803DD704D62 +:10DB2000D18643C89FC2F9F8FD0E3E9F9B607E667A +:10DB3000C4C7DF541CBC12E452D3CE8A39BA047A6B +:10DB4000691ADE8AF55B8A0370C334D9C2ED9D562B +:10DB5000887B4AA08F70F86D1C27ED8707EEE1598E +:10DB6000117D1FD32B76A6E721AF1AD72F66FF6C46 +:10DB7000DAE941FBA7DA9F1D77873766C37CEE1190 +:10DB80000E80DE3159BFAC055E761184663DB5FD71 +:10DB90005BCBCF9F6C80DF8B05FB2AFC5EEC45786E +:10DBA000CC01F9E88614BF87B9EA42869737F0B806 +:10DBB000633A0E1DC4C960AC4DC2B836F0F4EA0B2E +:10DBC0008509F7F7068B7AAF1C5B3F43B19CA4BF76 +:10DBD000ADBE90E166A8DFE78CDFF70EF5AF73828C +:10DBE000BD97FD9988E253E8443C2EB69228AD27B4 +:10DBF0000DEE39A272C67C620D9E87EA20C47B417D +:10DC000015F02FFDBB2713E32B75271468F71D5A5A +:10DC100006FC3356C2F2B17DA0CBD91490968FFF8B +:10DC20002ECDD542E07C7B9A8FB428E9D00FED77DA +:10DC30000AC65550DA6BB9C23D41BBBC3CB8C441C1 +:10DC4000FE68E5D3D60B27964F048C2B7353CB2756 +:10DC5000958F52798BE77D6C1DE22903E57BB6AA8F +:10DC6000D3EB406EDA48755BE27D6DF1737E22BFC7 +:10DC70001F827D6F264C3FCE2D66F83437B03B9A1D +:10DC80009F89F338A673417AD8378FE1AB08D873F0 +:10DC90007203CF9282D92097C99888E97D0AD8D19A +:10DCA000A4DBED32E4137E0E1A590CA5F3DC79C621 +:10DCB0005AA8AF82C7F4E5CE3B4AE6019FAD358F47 +:10DCC00099E17B252769BF5B79FFADDEE4F75AB99F +:10DCD000910B0898D61FF4BD5503F58569FF003FE9 +:10DCE0006EA9CEA8BD82A6BF433FD049F1FE6055C4 +:10DCF000BA38BDDA785AAAE9C0FE41B8B3CE1BDF04 +:10DD000047B95587EE04BF792EF467827BF6000B86 +:10DD1000C1FAFC8F95E138757FA9F92F727AFE2937 +:10DD2000DF0F8EB56CBFFD8CCA649666FBF0950B59 +:10DD3000E5A47DBBE5D2E5C7818E370936C4C36B48 +:10DD4000B93D87D433FBCD26BE7F2D7CFFC6E42BA7 +:10DD5000DF5FDD42F2F980F72F647691F7F93EBE7E +:10DD60008DDF5306F70CBE01E5DD0177862D9E6F32 +:10DD70005DBBA73FB15E2B1F17C5B1ECF74CA430BC +:10DD800081B8D6B7A0DF09EB61ADDF8DBFBBD67D13 +:10DD9000298942FFBB36B038A86E832482BED29D4B +:10DDA0002E7A011F7AFC4FBF0AF3EA796CE6CD8820 +:10DDB000EF1EFBEC2D7A882FEA488EFFED6EB8122D +:10DDC000EF1FC82CE6F7CCE5640A89FBE1F7175A88 +:10DDD00092E64DA58F915326BC4761CB06762FE383 +:10DDE00096D7AFC27BBEBAE838413FEDBE34EC02F5 +:10DDF000FB90A7F8CAA318D7949389FCEFFF01C939 +:10DE000012CB7300800000001F8B08000000000090 +:10DE1000000BED7D7B7C54D5B5F03EF39EC94C7272 +:10DE20001212924012664202090D70F2202410F084 +:10DE3000E40104C5EB8088E1E9441E460830206A0D +:10DE4000BCC5CB10DE34C2607905A90E0816517B23 +:10DE500003B54211DB2120C5C7ED8D16C1076A400D +:10DE6000A45429A6F6A1B71FD56FADB5CFC99C3371 +:10DE70002488F7DEFE7EDF1FDFF86B0FEBEC7DF60C +:10DE80005E7BBDD7DAFB9C78724EBE2BC432E6397E +:10DE90009C3B9BD175E87D26B8B29589810B3646AF +:10DEA000BF6F33F1FF038C2531D6B42C98FBA999B1 +:10DEB000B1E0B2ED74DDB12C94FB6936633B97EDB4 +:10DEC00023F8C9652D047F8BBF5BF0393E8E1007A8 +:10DED000F7FA32E69200CE51C685FFC5CB7AB87705 +:10DEE0009D1E4EF7EBE13E0D7AB873FC3E001B23FE +:10DEF000F33EB9ECB0826758C1EF14C14DCBDA08DC +:10DF0000DEB1EC5D1D9ED1E346E3158D47F43AA2E8 +:10DF1000F156E915CBDA1803BC4C02DC2A65EC8912 +:10DF2000AC0481013D7F31D8572041BBC83A18432A +:10DF3000BA645F38F5A81BE81F5AAA5F6F400F3B11 +:10DF40001987096F0F8CFB286B33263266CF61A1CE +:10DF5000F530C713D77E63F3E6012CED667DE1FE55 +:10DF600003BFB5076C298C1DAB6FB5B53B61FDF5E3 +:10DF700007ED0CDA736CA76C5E17F4972AE2106653 +:10DF800022744EC571347CA7FF0F32EF40B8FF7585 +:10DF9000220B1446D625084338DD99997D1B135969 +:10DFA000DF7D76F9366908631B96B1C005A23FBFD5 +:10DFB000EE50AE4FE215E8BE5BB9EE51AE4DCA353C +:10DFC000A4F4CB3D35310EF17B4681772A5715CF2E +:10DFD000B812030BEBF8E560610DDEBDEB12747057 +:10DFE0009F865EBAFE7DD766EADA73CFF1F954797F +:10DFF00088BE6607F5F3B924FD7C9E807E3E5809F5 +:10E00000634087FEDBF5F3A6FBF5F37637DFA61159 +:10E01000AC7A082C7563290B35026D63CB56B709B2 +:10E0200083F00AFA0A5756A2913790A738A47F2A9C +:10E03000D1FF8748FFC7547A9525125F1893DCDA21 +:10E04000F53D16DB56877282FC453C9949724FB804 +:10E05000C1FA8F498D8D01186A4396216405B9DB99 +:10E0600020B5DAFA16C1F59441C25156157C569D79 +:10E0700009B0ABCDC8FA03DCF46F6186E33BC3AFF4 +:10E0800031378CEB94C2CC3790F8C902D061DD32C5 +:10E090001B5D5D269FC108CFB1EDCCB317E4DF65F2 +:10E0A000F31B509ED94E8091CECE20A3F62C0516A0 +:10E0B000438CDA7338BC7B9948E3A8F29729B90DF1 +:10E0C000E520E7FD98DF00CAC5DE6AA9DB6E83FBA9 +:10E0D00076E4871481C9A40D4371AEDB1E063C03B0 +:10E0E000132BDBAC308FB308F408D677F0DA50038B +:10E0F000C3F5CA2CDC980FF74BDE0EE07A557D5243 +:10E10000E9E22CD2EB3DD0FF39292922CF6ABF8327 +:10E1100092A13A94C7FBE1B8F1B2B80BE751E1B86C +:10E12000120EBF221948BFC03EBC84E330B01FC8E6 +:10E13000B783A7DE167DCEEF6F1FDE42EE207F593C +:10E1400098F4D85962904D83B0DF92889E7B08EF97 +:10E15000569CAF45C17B9F7275315140FB2485DAD7 +:10E16000193344F4F5D420DFEB64BFF6B4057159DC +:10E17000525834207EBF182CBF81F2E7094DD3D905 +:10E18000913E013DEC641C56F154F5BAFF76030B49 +:10E1900068FA39B21C3AB8EFDA0416E8C2CE1ECBE0 +:10E1A000E2F2D954C4E5735D566B7526C0A1B5067D +:10E1B0006674633FF7ADC83F3BC8E77A169197682E +:10E1C00039DFA5C853E85A7F8717D6635F0BF48AF7 +:10E1D00045F9B98E5E97719D99952C8CF2993BD437 +:10E1E00010DA8DEBC893899F8F4999648F55BBB71F +:10E1F0004EA1DB63C85FE8FF58090B1905B4FFA106 +:10E2000080A108ED329310AFC7A483C72C002F7EE6 +:10E2100010A495F0EE38FE2D8CE72AE372F95365D1 +:10E220009CB706F9FE0FC9C735C0BB18C761DC8FA4 +:10E230002C4F28B732E2C3356A1F1122F9F1842C22 +:10E24000CCADA5EBDA02F2F37D02FAFB2A1F503FB8 +:10E250001A12904FBC5DE513DC97AD09A87FD1F190 +:10E260004188E40CFE19B616C055F1173B9749CF0B +:10E270005ECC463F50F2EC45F2BF32C1697E594058 +:10E2800079C1E7502EE5D6F7CAAD30B5238D495692 +:10E290001A3524239DC0AF89FB814E8E1CAE270EFC +:10E2A0002FDB1D0378D84DE1E506B4035E6E07D27F +:10E2B00095766B9AF8B401DB6D4C30A1DDA8611244 +:10E2C000DA1511DB01EE59A3B43BC572133E5F06AC +:10E2D000ED7089579E8F2B53DAC530B73B3EDEEE8B +:10E2E00054DA537CBC3DD1CBE1E66C16CAF3E0BCFA +:10E2F0008CD98A106E7B01E19E3530A7068E2B8368 +:10E30000671323708A0F2452D3BECD7329A591D1F0 +:10E31000788467F35DE11083FB2B9014C08FE65A7D +:10E3200003CD17B89D85F6A2EC5E33F2F9C7CA2477 +:10E330006731ACDD8DFC477D407E37FF03DA7B2102 +:10E34000D8561356EC3CF9F159968011F4DF9EE54E +:10E3500067BEBC88DC7F3848AEC807FEADCA78BF50 +:10E360002206E68FCB6112DAF13893FFB295DB5FBC +:10E3700037CE6B0F4F96051E6FE4DB81AE71368E84 +:10E380002F4BB3105E26B0CFB59A711D5921594657 +:10E390003E9BFC295AFFB24660352DD0AFF9513F64 +:10E3A0009B00EDD6F0232C13F07B305FE07193815E +:10E3B000F9B07DD5ECAD723BC63326EF3101E7995C +:10E3C000C8F2911F769BC4E1710AEC7473B81A60AD +:10E3D00037F2AF254C701E6F5F357B35C180733EC1 +:10E3E000AE0BE745FF84F3A27FB2A6013D5C245744 +:10E3F0007C1C3FF747765BDB315C2F5BC2E5CCEEE4 +:10E40000641C96957651E470156F77A6717A38B3CF +:10E41000C410C9914AEF6996F3783D31D8B7281FE7 +:10E42000D6672F59FD2723DA95AC768B4FC39F6BA8 +:10E43000837C0F221FA2F9D46C0EA68ACE88DE340C +:10E440003F0A7A03574758D19B2C26D9699DCFC8DC +:10E45000A407A037FD3DD7EB8D15F5A6E87ABDB131 +:10E460006771B9B6A2DE2476AF3756D49BA2EEF51B +:10E47000C68A7A93F8DD7AB32697EB8D3D8BEBCD88 +:10E480009A5CBDDEA8B0AA372AACEA8D0A77CA53D7 +:10E49000AE3FC5E9D4C0B5869A1694BB6B0FA44CA9 +:10E4A0001CA8B99FBE3515E9B9A6533F9E24FF1F8E +:10E4B000ED07D2FD60B73476315E06FBA5F13B1661 +:10E4C000C9BB1FF9E89264DD7D1890FC50739A81F6 +:10E4D000F4724D5A669CAF8BF1D52BF85B8601D355 +:10E4E0005E8887F0FA34F81FBC76D73F6B45D0EFD3 +:10E4F00025BB29BF8F7AB921DB9D89F3244D0CB14F +:10E500007B619E36457F566D3A2963BCEF343119E5 +:10E51000F5C81E2E3D66D2E8ADD3C6EF3B9DEEE5B5 +:10E52000261E4F91DE38416F483E14D8E6EE4E9FCE +:10E53000DB75FABC41D1E7AC84A0CFABE1838ACFD5 +:10E54000DFF10A729D2779DB906ECDB31EB7215D96 +:10E55000A48962A519E64BAB676E03CC975DED6BA2 +:10E56000447C7AD5008C2ECD2D0B721EC94D2026F1 +:10E570000EE59FCBCF06C5EEF6AEE7F2B341B1A3F1 +:10E58000BDEAB8FC6CD0D8E194C4088CF2E7D6B4EC +:10E5900077E29FDDAE939F55A597DE45FA825EB97F +:10E5A000FB93DD6B263B61CF0A521CEB3085CBC958 +:10E5B000FF2876C2616B2927BAD573BD7238431C18 +:10E5C000AE53DA451FEF5FC3E10DFFA8A4F6C07894 +:10E5D000DE7F8D333816F56CCDAC04212044F0B8C5 +:10E5E000966F20BA35CBA6EA962EE4E879A57D8C05 +:10E5F000240B0540D7F7A2E86B9F650858D18E948D +:10E6000080FD017BD328F9DE21FB320DEC0FD917F9 +:10E6100088CB61DDAB53E78496037EDBB22D2D9072 +:10E62000CEB1D5BDE6B61C4379E9E76889017C57D0 +:10E630002559B89D78C31C423B92CA02EFCE86ABE7 +:10E640006DC6EACBB3514EEE79E8DDD9F09C75C6C4 +:10E6500043046F9B3EC987E3597B5B5A8C68977A6A +:10E660004EF1E378965E7CBC95F17324A4E3CA6511 +:10E670006C5F16C405A9A6A080F62D351060644F06 +:10E6800045F037A44F60F0802EA989A21BE323B385 +:10E69000C8F6E569F4522CE0F132703519FD5EE7F9 +:10E6A00038CC2493FE3B0BC87FC23CA12C4D3CDEF2 +:10E6B000AB2093E866490C321C1FC625F9836B28F2 +:10E6C000AFABF8B2E4C2DABE14A719242BF46B2A5C +:10E6D000E171DC8630233F9D63B31DEF87EDF0C011 +:10E6E0007A0AC6DA293FC27C683DF43FD654F07AF4 +:10E6F0000EF62F32D1F31B9A207A72621E55918C3E +:10E70000D7C15FC7B3400FA063545C9A01F7433D84 +:10E7100022B0747D1C5A8A7C7F4A89339F50E2C3A1 +:10E720005D9138FD96025867BCBFE39805E9552511 +:10E73000B6627C2535F13CA08BF12AB17F77E3BD31 +:10E7400035C85B8DF3A5F9454189F7C7229C7194C3 +:10E75000FBAB8CA32D32E6A7D1F13F73F3B832E3C4 +:10E76000E85A2F8BBD3E1FC8381A94D9A02EF2024A +:10E7700025AECC38DA2EE373191057223DDE29E49A +:10E7800079971972B36F6141C648FE3BB54093FF5C +:10E790007667473BF35FE7447A0E2C5535D64BE25C +:10E7A000D3120B905FD1FD4173080FBF24DF574098 +:10E7B00057DF5CBC065D25B752D865120594BFA033 +:10E7C00000E3A05E971AC8FF19218E3948F314D1CF +:10E7D0003CB75C5B268E877E8F152D16EFCDD38ED2 +:10E7E000BF9CC6CF2E901F407A32A792B797B553E1 +:10E7F0003C17DBC4E3F5E8BC5F95CFEED6E9945B4C +:10E800005EEFEB8EE43B71234E3BD02EDC5DE06B84 +:10E810002CD03CD754F0592FE4E72DD73EB6611CDD +:10E82000621D62F086507FD09852FDA0E5F5018010 +:10E83000927134A78F237733E5574139AB00F5DB6D +:10E840009E6D22FBB0B1C4BDDBE889AC07F2D88D68 +:10E8500048A70DE7CECA981C58D34F2B79ECF7CCBC +:10E860000FC120048A310FE3BFF2F4CD81799847BC +:10E87000012BAC12EADFBBA7CA79FEC7781EF57878 +:10E88000F85168FFCBF36637E6FDD67F6C0B23FEAD +:10E890004FC8B69646CC894DC100E26F1C6665EB49 +:10E8A000112E0BCA3F407BDF10C7487FD57A989264 +:10E8B000C7989686C2A8DFF637ED01EC6FAFE7FC8C +:10E8C000B8BE5EC6F9E168088651CF63D0CFC27A80 +:10E8D0002D8A7CCA6B37955BD02EA688F988E74BCA +:10E8E0008A1DDA9173705D851BF3561EE7EF4C6449 +:10E8F000BB50A6ABE3BC2F1550FE2E931C384CC169 +:10E9000053FDE0FE2305BE97917FF64586720B3CD2 +:10E91000B7A3CE60427BE418C1F34A943BB27F298F +:10E92000AA7CC31A7A821D54E8272F053C8A2278D4 +:10E9300098442FF97955CE61DE57490E9579C989EA +:10E9400076912F47E497AF5B942507C67FF0488701 +:10E95000518CE8A5337FE27AF47F7B94FBA03F6F74 +:10E96000F37581DE80BCB986CC72A05C180D5C7F2B +:10E97000D87E03C59FF2D2E582164F42086053222B +:10E98000AF97BCAFD8FFEA38F97DC4F758D1EED7BE +:10E9900097A1BFDF69705B05B4B7DCCE827C905C69 +:10E9A0006F28E2F5CEEED6E1403B5CA88161427F64 +:10E9B00001D21DF25EB86EBF777F8ACF7983E7B34D +:10E9C0001E9F80760CEC56F851F497207F282F8EEE +:10E9D000ED8F877301EFDF0A40A8922EEB095F22CB +:10E9E0003D543BABDA5FA0E36B3902EA078BCF758E +:10E9F00047EA0990FFFF1DD7BB7133AF1BC72F6DCF +:10EA00000B0E70933DFE3F78FF7BEB57A7BD51EA9D +:10EA1000443B157B2345E7F9BC5EE850F4C2213046 +:10EA2000AF56BE41AF48AEEC3EE017E09354C8E3AA +:10EA300093D70B7C62215C457F3880FEA7CFD21034 +:10EA4000C51D372B57609FE54ACC4B417E503FD7C1 +:10EA5000E7BC4DF56D7BB98DE409F421AD10E9916A +:10EA6000632A473FE7280ADA2ADDD7EB41B4DC23E3 +:10EA7000C65A798AB6F72057D988F7CDE2D969778F +:10EA8000253696E26DC6F1134BBF5C8BF8C49BDA5A +:10EA9000693F40A557464E40900D183F32CADB00F3 +:10EAA00017CAA3E31771BEAEEBF77E2AD229C3C9FA +:10EAB000ED883A7E69218FAB87152AF14F622015C8 +:10EAC000F9F6D4607906D2615D54FD715DD6973652 +:10EAD0006D1EB22E36A8D47F25F7F881B83EEE9F82 +:10EAE000462BFCEA6E7DC7B2DEB6613EFE185CF9CD +:10EAF0003EC276DA47782C0BF4EA067A618FD2AB05 +:10EB0000750F5A6AB01EBAB1EC715BADE6B9C9CAED +:10EB10007AF2247922AE43A5BBD11224BAA9F638E1 +:10EB20001AAF8DA640F52FD0FFE4B05000F3DE32CF +:10EB3000457EA3EA54A067C371DC185BFB722BCF40 +:10EB40007BB89F56F8D167295B8953BAD2B8FDAD1F +:10EB500053E8511DE7ABC3E72CB3BC540755ED6236 +:10EB60009C292C5B3C0875903F49936D1DA8EF7163 +:10EB700065A1400590341EED1DEA7F91E1BC15F0C2 +:10EB80001950E85B84E33872DA29AF8FC9E37AD091 +:10EB900029A74A3C923A8B999025963491F050EDF2 +:10EBA000F72AFC879BCF4F7CEB945391CB81A2C774 +:10EBB0000EF06758F74CF3B553514E95B72796248E +:10EBC0009623FEE9E84871FD4340DE30AF66174FFB +:10EBD0003D0A7D8239864D152C222F4F3859B55666 +:10EBE000EED62A72B74EA10B1341EE5C2477CFA26A +:10EBF0009E5C2F77AD5DCA9D1C3826586F60D7B7D5 +:10EC00001476DAF52D852477BB69FF6A3D5CB57211 +:10EC1000B73EEBC6F6FC3AB95BE4A8C1B8E6278C70 +:10EC2000AFCBEEE0F9EA1E653DFB95F5ED57E66FDB +:10EC300052E4AA49952BA95BB95A5FC8F3AFE7F133 +:10EC4000DA24F1FCEB66ED469FA5412E070A9FAE44 +:10EC50005B8762675367751C43B94D2912F391BFF7 +:10EC6000190D9C6E7139202780DF7105EF1F16FA90 +:10EC70007E85FC70E4B1F398FF3972DA78BDD579FE +:10EC8000B3F636C42A15F9457BEB2ADA236752DD41 +:10EC9000CBD6119702F7B34E33F2D30A1C9B132E37 +:10ECA000870810E5FB3F705EE7AC5018D5C455C42B +:10ECB000F38468F99603DFDB0E9F213B7C93F8AB6E +:10ECC000F1EEB6C1DE8FF03999B5935F033E7D5CFE +:10ECD000A8D99F51E3BC26E96D9BD6AF375924379D +:10ECE000AFB304BA8CAFDD2561D22B678E29807A51 +:10ECF000ADF2ED8342EF151CDF29F1FD1075DD72D9 +:10ED00004030D8F4EB65B266BD7F8EC8FB9FF1F949 +:10ED100046C9FB57C4BBA9F1F56ACA2F6E72DDCE96 +:10ED200092906072772F471F14FA84221877EFFDB4 +:10ED3000731DE88F9CF989940F180D61CA57D993F8 +:10ED40003C6FC17C66BCA66E965BC4F183FCC78A2F +:10ED5000CF77C6694A7F79E9AEE5961BAC2FAE48FE +:10ED6000B5A3721C3EFFD36B56B23F7B24BEBFE9F6 +:10ED70000CF27D962EF6A592B0BFBA5FDCB90FAC4F +:10ED8000C88BAB84EF7B67FADBCB31DE56E323C85D +:10ED90007B33F0B9F8E6B7DB7291CD0D62A3CD4DB0 +:10EDA000F1519FA29B888F4C4BF9BE5B749CE40A87 +:10EDB00082FE637C57A4CFC38EED9CF03EEAE59EB5 +:10EDC0002A4671E7AA2DA35FC7784FDC69A0FDD062 +:10EDD000F8F03AAA0BC6070D21D065F6D36026DFFE +:10EDE00077EF86AF1BB02E68C5F5F0BAA0686A97BA +:10EDF000A9EE5AC2EBD9A2AD4356F62FA84E273A38 +:10EE0000437C3FA34E69175B385CCFDB9BB0AE6899 +:10EE1000D5C427556DBC4E2D27848DF97C3F9D6947 +:10EE2000F7B7B71BCE9B63B91D40BEF5AE834858FC +:10EE3000431F9794A083AD39DE536E37C6BF81530D +:10EE4000325CCD8AFC3D35C8E72D227BC242586733 +:10EE5000B134727E2DC8693B2940BF8D665E371C78 +:10EE6000652C8BBB40F692FB39DACF86765F11AF0B +:10EE70001B5ADD1D61CC2BAC01268570BEB410C9B8 +:10EE8000CF7C78A607745901F4AA32E37CDE693896 +:10EE90005F4C1EAFABABE347D377B6228F2C5189C3 +:10EEA0007B4D3EB77760F77A756E90F73E1C17F191 +:10EEB000443FB416FD4717E35AA4F2794594D77836 +:10EEC0004FDD02EB5D3D90B971BDABAE55D2B98C53 +:10EED000D52E0BDF77669B7B1D3375AFCFEAB51957 +:10EEE000D6358E9F9B60E340FE5739839371B3EF15 +:10EEF00052110B54A5011EE09F30BF5DF9E292292B +:10EF000089B08EB5C8935E8C5D297A604700F05C4D +:10EF100085F030AE8EC8AF66BB0A3F30E5669E57BF +:10EF2000F79F375B7C6B715DAE5936AAF3B88A3AAE +:10EF30002C68DFAE227D957E682F9AE7BC9F82F118 +:10EF4000DC25C55EA8EBB838C8172CD2C0AE22BEEF +:10EF5000AF61CFDE5381F9F01A1627E27EDB002580 +:10EF60005F1EE0E4F5E901260EBFADC8C147CAB592 +:10EF7000A588FBE95E75A129F87C1A8BA57D87FD24 +:10EF80000A3E10C7F17D8F2AEE17578A8F53DE1D78 +:10EF90005FCBFDE67E85FFCE0626603E02F9C91EE8 +:10EFA0002D7EF155DC1F47E480D301E242AAA75E23 +:10EFB0001DE4BBC4E9E138CFE9C1D7130F7120EEDE +:10EFC0003F83FFDD83EDA9B344C183FE1AFC24C651 +:10EFD00081E9556D619C6F0FEA32B577D4A0DD4CA5 +:10EFE00047FC8B505EC1BF63FDE87EBEFF122D0F54 +:10EFF0003F79687F2FDABF8892BF130ABDC3AA5C2E +:10F000002BFBAA8E251CBF4F0B7D61C407E200C2FB +:10F0100033B62844FEEBEF85DE56BC1F5BC7C87EC7 +:10F02000EE29E271E41A93DF8675D44F0BBD27A950 +:10F030007D4988F086FBD5521771FE1E657E8B24B4 +:10F04000BF81748C45BB018ECBB18FD79DFF5EE82D +:10F050006BD3CEEF2A62025EC74832D15DA547F777 +:10F06000FC0C0BB4CFD519F784A95EF181B25E5BBD +:10F07000A14CF456C73950E825D8D9D0C6B4F4DE2F +:10F080003F1BB4607064DCE8757CAAACE3B9023D58 +:10F090005EF7147278B5D997827451F5386748C90C +:10F0A00094E5A0C79983BD97B07D5E5D7834D66343 +:10F0B0002E29CF69F4A7E346FA138D87AA3FA97DCD +:10F0C000981FDBB359301FF70B8269C53DD09E34C2 +:10F0D000575CB019918E432CD4AF399EBD560BEDC1 +:10F0E000EB0497B81BEBCCF2E277915E5FEE631E08 +:10F0F000AC4FAF79D4FF6E1CC68925FDDCE86F07E5 +:10F1000084ED64FF079489BBECB49FFC2D9D23180C +:10F1100080FF36521C4F7E272EFC6CA303C689DB72 +:10F12000E73E80A663C3A31CDFB89C0E19EB3971C0 +:10F13000655231D6FFB286B875FA1EB7AF2380CFBD +:10F1400039B2A47E18076633D35894F30D018BBCF3 +:10F150001EAECD196C1DE6EF1B5F33B24678F4F896 +:10F1600088677A615ED91C1F9A7212EEAF1B6161CB +:10F17000BBD13F3CDA41EBB0EE1333116F152F6B6F +:10F18000F8BF683DD6B29E6E2DFE5605FFCEF5ED5A +:10F1900073EFB27B701C3FEDFF06D2D901D4AB01F7 +:10F1A00039A10AC47FC03E8EBF8AF780B450ABA09D +:10F1B000C1FB52917E5D0EACCF69FC5E777E608CA8 +:10F1C000549E372429E25FBE2B6E9BD950C93E81E5 +:10F1D0003CE5254BC7F16F11CFAD02E5658736E7FA +:10F1E0008F463F3EFB32AF7DCE7CE4B61F5FEC0125 +:10F1F000435EE4E71766EE8C9710FF056DFED19431 +:10F20000CFF999940D7626D9E839DC0EE3243FFD39 +:10F2100096B40296B0A595DD83FEE78AD99F8F212B +:10F220006F60BA339FCE113865B713E856CBB8BFBD +:10F230004D36C68FC6FDB8E43B2DD24AA97BBC6BC8 +:10F24000A7B94BB01E5FDBF2482DCD2B82E9037FBF +:10F250005F6B1257236C73BBE397035CDCE8DF85BD +:10F2600070473C4BD80D71466C8978F28730FEECC4 +:10F27000BA74D12845E28BDAA3AFFD17D6CD66CBA1 +:10F280005E0BC6453FD867D1D179608B1E1E7C5876 +:10F290000FE787F570E1293DDC86BA08746E60FEE1 +:10F2A0008FB12EC7DE3452DCFAF23F7E6E413BD383 +:10F2B00051CBFC88DF4B03A02FC621A65006C567A3 +:10F2C00090EEA31C7FB6DFB51BE3D8ABCBDAB65705 +:10F2D000811F6EBD6C6066B83F6FBF6B17DAFB971E +:10F2E000BEF964C3701CE7851809E5B672DEF33F0A +:10F2F0007B04E0CF9F8D8947FBF359F3A127910E43 +:10F300009FBDD09F0940F7CF0DBE8F7E8B7C30B85C +:10F31000D85EA0C7B1F78F5CDA01F0DC9FC5E4636B +:10F32000FFCF5F38D40FEDDBDCE75EC9407FFAD951 +:10F33000FEE78A09DEFFEC20BC7EF6EC4FFBE1FD28 +:10F34000CF5148515EF65B77213FE73D6F3FDF636A +:10F3500050F77CBBD971E719B8FF6438AE07C75DB9 +:10F36000D3D603F83D6F9F2B805775BCB9FB7EF455 +:10F37000272D1C7D9DBBEFC6F8CCDDC7C7BD640E35 +:10F3800059681D025BB41792CE85576B6E8D1F8432 +:10F39000F359757CECBF5DCFD7DC901E3E02E1FFD8 +:10F3A0006F719CCD999EBD205F5759C7A50D082749 +:10F3B0000A997BBB90E7A787F03862E161FD3C4783 +:10F3C0004C5DEBF5B343B85DCE619648BC8CFBCE8B +:10F3D000566EA7A3FBFFBBD27FFFFECEFE463CA727 +:10F3E0004CEA0671EE3C45EF5E56F6CFE1B7A43726 +:10F3F000E8E33CD4CDCCC8FD794CB34ECC176DB10D +:10F40000BBC538C6EE54C6FFCACCF5FBB365F28F58 +:10F41000F17CD5A565B25CA5D9FFBA6F67EDEA545A +:10F42000E067FD81EC7CADBDAB7FF669C354B87F6E +:10F4300005E2133CC9F9D9BEE35B67A39CB69819F2 +:10F44000EED3D63F7BBC27EEF75F69793516FBDD3F +:10F45000B7DD43FEB773DCEDA3E42A4DDEF07DF5A6 +:10F46000F65009B777F35ACC21DCFB9CD7F2CEE8F3 +:10F47000DE2877DB05291BE62936F98C94E715C9C8 +:10F48000E64029EE4FFDFA642F685FF8CA9062AC3F +:10F490002FAF3778EFBC1DF5E849AECFBF387DAF51 +:10F4A00011E5F6BE81CC6004396ACD79DC7201F0D9 +:10F4B000FF64088F1BD74F72D661FD27764F6D25ED +:10F4C000C9771E13B2F323EB2936B1770D78BE4D01 +:10F4D0000ECE0843FB6543AC84FEEA0F2EAE0F81CF +:10F4E000178C6497877EF817E335D4FFBD46DA6F33 +:10F4F000B96FBB5E7EEA8E9A294E7CE99B3F4F1A1C +:10F50000867601A2D0DD6826E5A0451B57D60133DB +:10F51000520A80DEBB5C6BF18CFC6749A10C310F99 +:10F520009F7BFA23B29BCF5A0DBB35E701EAF6FD6C +:10F53000E6BF707FF5FE907EBE68F9B0170B4A1DDE +:10F5400087E568E52CBA1F5A3A5371A4BDBE01FC89 +:10F550008BA65E567F3168C1BAEEFDE32C379CEF77 +:10F56000CFE70EF5C3031B20AF01B4A7810346AA62 +:10F57000637FFEC7979EA1730F2656AEEC430936F4 +:10F5800098EF33FC17C4870B527EB7BDAA07022D34 +:10F59000FDD09E7E6E6115EBF3793F0678CF453D39 +:10F5A00080717B19C3645FD9CF8D0CFDF711168E66 +:10F5B000A5F3132D4603D9BDCB4D749EEA8A18DA04 +:10F5C000F033B87F0516131023EB58DE723C16E3B8 +:10F5D0008B792D3D2A8C37B057475EB01B0CC08706 +:10F5E0002B979F89E9AA9E3DF7724285A50BBBA484 +:10F5F000FAF1F3F84F90D3FC6239AF18E9BFB207C4 +:10F60000E5C1C93DFCF9FE2EC6539F4BB0FDF8097C +:10F61000A47BAD52B77A1CFCB49BFB6969AFE7FAD7 +:10F62000E74A8A79DC7B47897738CEE32A0A783043 +:10F630001E48F0D92494C74F8CD24322D07736F39A +:10F6400059301E622B93F8FE38037E5241491A8DC1 +:10F650007A35771CE804E8C9CC89418A1F362F62C5 +:10F6600092B104605388FCF84C88287E8CF5BF2644 +:10F670002B93357A3E6733C0DAF5EFD4B483DD9A45 +:10F68000BB47DF3E8F8569DEFAE7BFB56AC7E93C55 +:10F690007FCE640BC6C97F55E87747893CB118EE29 +:10F6A0000B136CE4DF1E7841A073BD899616C2B3BC +:10F6B00003F0DC0D784D51E2A64F8D5E5AEFC24744 +:10F6C0006AE559007FD130539ED503EB375C6F5903 +:10F6D0000B8FA7E655B59C24FBC2C4835353001F70 +:10F6E0009B97C74D6E268E8179873D3F9ED6CDEA8A +:10F6F00098785B6F80EBC6139D86F929C26153141D +:10F700003EB1D39CAFEF632D0AE5B0998F7F1F0BFD +:10F7100010BDEF676DB4DE45C509B4BE53C7F8F937 +:10F72000993F1F8E0F5935FAFC6726C5A1BE273BAE +:10F73000406713AEE773349DEB7646D15D4BE74CE3 +:10F74000A4AF9E4F0B5E047A7721A75B14BFF21122 +:10F750009375754275DF7ECB7281DAB7DC65A112D5 +:10F76000F6D6C9739EC63C7A23D080CECD31BE8FEB +:10F77000B91EE3045E5F08DB601E4761274CEDC5E0 +:10F780008D0A1C1833F5EB3418C7ECA3738CEA7C94 +:10F790005BC75B5898C75BF45ECA9C52DF16E4FBFC +:10F7A0004CA3F7A401E834CB206798507E1B38BDEA +:10F7B000B715F873FD5DF865755D5B853619F3E87F +:10F7C000C0A302F98398A307C2C8EFF9D5609DC012 +:10F7D0006E24DDDD544EE7AF0BDC06AC7BBD50CCB8 +:10F7E000FD429C121F370B9B52E9FC6DAA5B58012E +:10F7F0006B2D7A5190699F2ABE6D746FB8DFF11638 +:10F800001B81763C39C6BF0BED5AF23D39052B8082 +:10F810002E078BDD7CDFBF30780C9FEF58E416316C +:10F820009E4C690C7816E7E1F8FEE524B7E319DD94 +:10F830004FBA7BE972ECF7A35E2C01F14861CB056E +:10F84000ECB73A89D37D752DABC1732326F018D858 +:10F850002FAD461496837C269B6492231B130F00C6 +:10F86000A66C4B2C873B1E61F1BB01DF2483F19E0C +:10F87000F1C8B702BE9E84A582BC9B946013E19739 +:10F880006C65D54202BF8FEB0296C907A83D447450 +:10F8900048AEF4E7231EC97DF935D776CA89F1D37E +:10F8A0001281F9D10FBE99A8C6C76127F2EB0BB33D +:10F8B0009C5C8876EA2D33D9E5C40C7D7B66567551 +:10F8C0001CD621FE2255D2FEE061B3FC9F449FB7B7 +:10F8D0008CC2EE2EECDA478ADF5AF8756FDDB9A7D5 +:10F8E00085357FA3BC60E1D719BAFB57201F0C698F +:10F8F000CE4BD6D7B58EC67EF359DB6A94B3F92DBD +:10F900004616D2E8C3613BD085D6CBF3800B6F6639 +:10F91000EBCEFBA8F2BFF06B23ED1B35305E7F8A88 +:10F92000CC6FD1ED272DFCBA079DDBBA1ECF9EFA16 +:10F93000FB5F0B7AF8F0574A3F13DD6725EDB1689E +:10F94000FFFE603BBE1DF3BBFBED6F6C473B33DC42 +:10F9500068207C87F7E1FB3C1DEB8CBB301E186EEA +:10F9600014547837C27F3083BCD0BADCB178BE681B +:10F970001CF855B483174C7C9FEBAAD43776401102 +:10F98000C6C3EC20CACB15E5FD9B0B4AFECA4CEE64 +:10F99000D8099AFAA77ABF97B13D96CEE3BDCCFDC0 +:10F9A000ACDA7ED5DD1E9BA0D1C3AB627B2CD2FB33 +:10F9B0006A8DAACF6113F27B8774CCE406B85E3AF5 +:10F9C000369A69E42CC29F18DDFB1C3D57B4850DA7 +:10F9D00020C75943373D9107096F52AB6A4F7EFCF0 +:10F9E000845C06ED4683CEBEE05975B5BE89666E71 +:10F9F0008B4139D7CB363F5155A68579FFC8F35B8C +:10FA0000A662FDB3288F3F3F68E8D60F1A4D1A7FD4 +:10FA100064EAC8A0732F2A6C8B829D000FD4C06249 +:10FA2000547B62547B4A149CC6FBCF886B1F82793F +:10FA300070E9D01D534DA0CF337AB73F2800DCB416 +:10FA400062E7D4AA54F4EBD268B4670B0F0B224FD1 +:10FA50001B38FD16484CC638D629B55B66E6211D15 +:10FA6000A493180FD5433FC18DF5EF3043BBB7B01A +:10FA7000059E736B9E6B11E8B9FA96F3F45CB7E3DD +:10FA8000E718C83EACCFB940FDE637FCD18271D84B +:10FA90009AFAC55EF46FD571DCDE99984FEE0D7A57 +:10FAA000BCE0F078AA977E30F0E83B784C2466C939 +:10FAB0009F96E33ED487F37F3F049FFB00872E454C +:10FAC000FB1CCAC5E7A7D5DD9B8BF713F2DADE99DD +:10FAD00004FD3E32B7FF04EBD08B0FFD8CE8F091B4 +:10FAE000AB3D5D00FFBEE4D02F399CD4FE13A4CB08 +:10FAF0001F0F1DE1707A7B3AE62B8F1CFA1B87B330 +:10FB0000DB7F82F0C143EF7178607B3A9EBB280CAB +:10FB1000BC4F74DC2B727BF8A481D5A15DFD20CA9B +:10FB2000EFD50DE57667CAADF2CCA118B7D5737FD6 +:10FB3000336347DB64D49719062606402EF75EF937 +:10FB4000E405CCD7F736C4B0DD5CACBC183F2773F6 +:10FB500011063F1124BBDEE1013B0FFD5D600F2963 +:10FB60007F19640A356ACE33AAF346FB9101C5F2C8 +:10FB7000559C5FBD7E51C5AF5787BA953809E242A3 +:10FB8000186FDA34A7847540666A1F8272B5D1CEC9 +:10FB9000D707FA407C7322FF801FCB94752D1BCAB8 +:10FBA000F3C409C5A368BC073E1CD36CE3F9258FD9 +:10FBB0005FE69B297ED93C5E4EC57AC7E6F13D0DD6 +:10FBC000780EF9A56FF87B261D9BECF47ED314B458 +:10FBD0002B3DD02EC8A9F47ECC9D169D5DD87C7F90 +:10FBE000652ADAB50626A7F2F70C78FB77DAB5F9BD +:10FBF00066BD5D9B6F8EB26B2D49E335E7CDA79A4D +:10FC0000F97EF8D45D8640F660CD7DDC2727FBD3F6 +:10FC100092A4B567DF757F4B819C2A907FB650BE5A +:10FC200095BCA285F048DEE64940BE80A0338CAF8B +:10FC3000B76EEABF1BE93EA774C2D5A143904ECF71 +:10FC4000D8EFCD8BC8F7865BE5E7F0FE1423AF074E +:10FC5000A872843FDCBF9BF9E364DA0FBD3A94C716 +:10FC6000EF10DF0CC238B1A254A6F1AE0E65C4A7E6 +:10FC7000AB43456A9F610D9B515FFE3FBFFE69FC30 +:10FC80003A8FFAF0DFE5D7FC86DFDF945D54F57438 +:10FC9000AB10362723FF5E11947DF6F621F81EC5C2 +:10FCA0008E62DF5F866AECC28C1FCEA7F754547C4D +:10FCB000621E3E547D37801F4DF96CEF33F0FC47D8 +:10FCC000FF6AA77C3D3AFE8DC96B7FE131CC039979 +:10FCD0004BC43CFC234BFB4009E37C83EFE94338F6 +:10FCE0006F2FA308B610E27EA6EC7BB6D33A3F2E68 +:10FCF000F5F5C438E8B612238D03F296AAD49F0214 +:10FD0000786E2130DE7263797BC518423ED8157952 +:10FD1000DB9C1F6A9E83FDEECA93026E943FE57CD6 +:10FD2000DB54FE9ED8E66C4380F2CDC98E1043D8DA +:10FD3000C3E57AF3E41C3A67D380F8511E66A079D4 +:10FD4000BB90473E6FB681E6ED94CB57203EF268FC +:10FD5000E4F215888F3C5AB9EC88D59E6BF842A91D +:10FD6000F37D1102B98CD3DC57CE07411C10AB7D5B +:10FD7000CFE5BBEEF75C01725914914B550E2F3E47 +:10FD80000E72245098D20FF5A2A484DB63D55E577F +:10FD900094FA86942469E371BE9E991B07D2736B13 +:10FDA0005CDCBEEF14C2CD78DF601313B0BE0E79F9 +:10FDB000726909C84D634CAC05E9F17B90E31EE024 +:10FDC00077E630F690A0C99B62F27C94C7CEF043F0 +:10FDD0007E0F7EF23E707F230B506CF4F923639606 +:10FDE000086CBC1EC63A973E7FFFC6AAEF1FE83CD0 +:10FDF0003F84FAB25D58D48C786D4F6522E6533358 +:10FE0000F23AD251AEEEC53C1A50FBF315874100D1 +:10FE10007B7041D9073BF56621EDAFAB79F1DD0A87 +:10FE20009D4E1D2B8EC3FA8D7A7FA1AD9DD68B077B +:10FE3000EFD6C0FA16C6B6F743BD043BC6F7230299 +:10FE40002E7A5F51AD1F5C5A67A4BC9B21898B3011 +:10FE5000EE14E87DDA7ADB35BE5F51CBFC56D087F5 +:10FE60001DFD3A46A31DDC51C1FCE8EFE9C55AACC3 +:10FE700043E193D07FABC597ABCD5F173ADA332818 +:10FE8000EE4DEAA0FAF5D55A981AEBD7817F2C638C +:10FE90005DD499B0CEACA5DF5514F182EEED2DE81E +:10FEA000673F1CF7428A48751A90736E87BF23FE1E +:10FEB000EF8CE395F8FF42486F776F22EEEF275201 +:10FEC000DC6F2FD0FA8BE8EB02E8525640D713468E +:10FED000AC9BB2F6E2AEBEA3B0C070A1DFE22EF2E0 +:10FEE000F6CEF6EDBFFF07D26BC18B51F58D28F929 +:10FEF000AB8FC0C2B702F245D3EE89C8DF42A52E50 +:10FF000044F901AEA38A85B205DA772638A6BA2D60 +:10FF100084F58CA4D6F6D148CF8597DB6423AF0750 +:10FF20001760DD79D8D15DC7317E4EA86A4B47B1E5 +:10FF300059A8D445A3E3B7D2A39B8C3CAF69F90180 +:10FF4000FAA30A0B73239F2A12F8FBABE58EDCBCE5 +:10FF50004FE1DA7AC19367867EBF2A31D1F3A3AD30 +:10FF6000720BEA7B77FBBF4715B9AFF8C8EEC33811 +:10FF7000AEC261273BBDF1F1FEBBADB4CE16B2A758 +:10FF8000B3B67A12508E8F96F0386F4EA9F7680983 +:10FF9000C5895231FA9BE74AF87E7E85C59D8572F8 +:10FFA000FAB2635B15CA8D07EC802105C9559E9591 +:10FFB00008F25D91C2945F70A51FDAC7C3043B24A9 +:10FFC000DC676E4BC1F8B4B9D822AD802926302940 +:10FFD0001DF5EC3621B412EDB689ED5C82E3556770 +:10FFE000B924C4E32D213E1DEB9CEC7E73FC251B44 +:10FFF0006DC5B21B9D6FC1112EA9FA009DB73ADAEB +:020000024000BC +:100000005270BCAD16400DEBC012875B612E5E17BF +:10001000E6F0381B875B27BF9F827468059A0B1830 +:100020006F1B783BD5EA53B1DFC3BB106E129868E3 +:100030004C8DB40B29F88E0EB607C93EB17826A2B6 +:10004000FE33C97CA55D53C74C76B4B9B1DD00F36E +:1000500061FDE53181850592F3B4F84B3F88AC2F03 +:1000600046A9DBDE51E2BD82F4C76D2A3BE9856F0C +:100070002475329D273B33E76126A27C44EA842124 +:100080005E9FCD4BE4F5D928FB7A158B60D074F5D3 +:10009000A010C2B806EBFE7AFB1B26BB3E1FF84938 +:1000A000EFADEC8BB6E76D34EF42481C768868F70D +:1000B000F4CF2F3CDC753DF665ACEB1544FC93C6E4 +:1000C0002F113EB3EB7AD17E683B0621F47E103FC0 +:1000D000A789F5276EB7E4D4D9C8C7FB330BF03C2A +:1000E000608C89C753B383FD772F57FC20FACF2D3F +:1000F000B1DCAFA9F23AA7B422B514E4D53DAC22E5 +:1001000011AF541CB999F3AA4A3FAC5BDDA8CE3EAF +:100110004CA9DF2EFE23F81DF0F74794F361D5AF0D +:100120006527A3DF592CB893D1BFF42B352875DB95 +:100130007EBAFB978C3EAA3347F817E6FC53F8309B +:1001400017F940FBDABED5C4973ACEEFFA2AEE7F14 +:10015000999F89B795723EBB357447BE6A61E4A327 +:10016000BB0B3E2E403E4A9C8F6E3DDF488E178A69 +:10017000305F3EE7ABAE7D33A74F2DDA454D1D2AEC +:100180007EE52E23ED732BF4892B903DABD0AFBCD5 +:1001900066A67DEC4FB189E261B918E3A63B4A2A15 +:1001A000324AF11C0FFA2778EE22E4D328171BE31A +:1001B000D93DF81EFFD5654CC6F73981FFC55D7D79 +:1001C0004F66FD117B1DCAD38452FD7B06A65233B8 +:1001D000CD4FF5628CEBD65929AE2BCE54EB5E5643 +:1001E0008AE3665939CC7EC4F7A5174C72FA70BC05 +:1001F0000B4A3D7B4629AFE7CE28E5E76254585DC0 +:100200001F8C4FF2E928E45775FE599DFD789D94A7 +:10021000997CF43EC55673C88EEFB9C6E47969DFA0 +:100220004E959FAD16F77FFE0CF38BC638379EEBCD +:1002300054E5E8D4A9BE14BFCC52EC81BF3481C6CA +:10024000FB92B9296E0179A27615EE8C732F1B42B1 +:100250005DE75D8BA94ED9F11F4689EA0D58A3824F +:10026000F51FB9DC8BCE51423C1040FBDC71C01E47 +:1002700052E24D7A5FF6C88BFD29BE89C4C1AE102B +:100280008F837DCDA8978103D93CFF60A1679F41F3 +:10029000FC8FA6D2F7472EE1F90633ED7F731B7A68 +:1002A0003886E2EF86F65D31F8FEDC17023B887E89 +:1002B00052A5DB1125EEBDC4787C1FB86CD84DE784 +:1002C0004A4CA11FDCA9E1FF119013EC778485E76C +:1002D00050FEDA62D7E5A1BDAC701FE9F073B8AF8C +:1002E000A90BBF6CE6F70307EC82F6FE4B96F033E2 +:1002F00034CE417EFF79D1B7B354734EA73E36DC7E +:100300002FDE7933F4FD3216E9D121B036DC4F42CD +:10031000FA0A448F7485BE60C7B83C923E403C499F +:10032000EBBCF407C36E2BCF7FB9BCFE5208F1388B +:10033000AC63F52388D72383C5BD64073A72905E0A +:10034000C02F37F2A3F13307E7DF3302C5A3474CD1 +:10035000C1933FC1FEB24DC2BCEC88928710AB7B0B +:10036000521C4F3F95CE5BCD5CFE03303FAEFB256C +:100370008B4CF5A9C07A6B0F2D7D16AEB59EBFD103 +:100380003EE7C2CFEE1DD7557CDAD95E776D069E6B +:10039000C7893E1771B5EECB0CFA38CC1E6BE4FC66 +:1003A000436617CFDBAE580280A7ED18EBB0A2FD75 +:1003B00048ECE879A3EF6B2DBCBC7E11E21B3D1F1E +:1003C000E54FC5E4BFC8D92E8C3A77C1B4B0F17AF5 +:1003D000B8BD53AFF5F72FA0CF1A82F4D58F77D1E0 +:1003E000EC1D8DE7243A7E2110BF2F9943858FC0E5 +:1003F000FD19437C7F281DA23003DAEB3E77F07CA9 +:100400000EE41CE36716E4FBAB17CDF20CB42BF142 +:1004100055618BF6FDDE6F4B793C3713CF8990BD6C +:100420000D5B74F651692FAED0DB25F5FA8DB20E57 +:10043000571BF7C70FB2A78DDA3CF61BD59E96BAAD +:10044000F9FB2497797DB8CF52AF552AC27A6F2D28 +:10045000EDDFF5591A263B76D1ECA3FCE9A260F05A +:100460001FC4B8AA899FC398F39C40727F685FB984 +:10047000D105ED73770A127E2F6298124FCF01FFDC +:10048000A7CD3F711D440FF47B30CEB016CFE1767F +:100490008087BD28D0F78BEA4D6D96E6447C0FC966 +:1004A000E937A620BD7D27B19E0089D5E235A91187 +:1004B0007B3CD3DA1EA0FAD473029D579F63622B54 +:1004C00063C174CE9543B44F127DBE8269CF3FA005 +:1004D0003CEED3CB23FA47FDFEFC3756BD9C046EA1 +:1004E0002A1E50FD5FEE306EC7D538203A2E803C74 +:1004F0007CC0B021C43F6E0F0E08FC7B50D1F19937 +:10050000E287557F7E9FE2CF2F19793C31C7BA89A8 +:10051000AE23877968BEB9AC5DD9AFEFB0D07BB2FE +:10052000DDF07FE430CEFF5B86E9F95FBF34BC3A93 +:1005300096E8EDFB39ED772F6561D720A4AFBF16A4 +:10054000F1EA05F102F231B9D247F8243F00793AD5 +:10055000F0710EEEE5167CFF38253A2E898E435455 +:100560007C55798ACEA7862D0D513C727299FBC7B6 +:10057000F8BDA84085FF293CC7186834B11570DD67 +:1005800016F36F3F45F96A0858453C17FA953D2325 +:100590008476EC61A3B4FD2D90DBD16B18FF1ED1E6 +:1005A000C7DC6FAD58C7F3AB15CB395FFF7518D7F4 +:1005B000A35AE5FAB842B7569C2F1B92D865393436 +:1005C0006F852D3F80E38C06FEF4C07C43CC37A1C1 +:1005D000DD439F8271ACF1A895D713C03E39C14E5F +:1005E0008F514CC3E8DE23C248C7E32E8B9BBF0765 +:1005F0000F92DE93C6C1132D6C8C73CE4A6C9F6034 +:1006000060FEF812885FACE1D578FF6FA96FCD402E +:10061000BE3FE4186F427ECF177D0F0DC3BCCD26C1 +:100620009BB0BEF866FED02CD4DBE526F96194B30E +:100630002693DC308CEA2C69E2A598885CABEB80D1 +:10064000789AF0AF44F94A44BCDD2B319F37A608B5 +:10065000FCFB5A51781B9575AD78C54AFB142A1DD1 +:1006600046F77EF4840FD733D6AE9CD7D4AF07E2DB +:10067000A49538CF022397E37A9BEFA97803E1BFD3 +:1006800001F1FCA3D9F753DC5832D8DC2605FF8DE5 +:100690008837E01FEC0A7FF89DF0C078A634FE9EF4 +:1006A00008BE39D55644D6DB8F7175759CAF19C716 +:1006B000C5F7D5F9F7C394F7D3157DDE16139B83E1 +:1006C000F5B606E690903F59E2BF3D85F2F26AC06A +:1006D000C470FFFA6147EC6E7C8958959BAFB3D527 +:1006E000FD6A1FED579F4CE4F5CC93E75CF45D0F7A +:1006F00058AD5406CF7DD5D34AEF71BC5ADE75BED6 +:10070000FEEFC378FEFDEA31F51C9FAF89F2D65E9D +:100710007D85F59A38E7A82A6F06EFC67CCFF5E30A +:10072000A8D76DCBC07268F6B587DF63F1D3F71831 +:100730004CFEF7305E69BD9A47795577CF0F9FB66B +:10074000D6EB89C57978DC953571C1B95858D75F32 +:10075000039999EB35F1DB1B8A1E0C377A96603CC6 +:100760003FE66B230B8389CAB9D226C6C3F3634421 +:10077000FE1E46457B6D5A06CC7BDC9E5C80F27388 +:10078000FCBC274D80715B53FBD3B5735E5BF24CB1 +:10079000FC9E6CD6A9DBCFA1DDF96B00E886F26385 +:1007A0000E0A14B700B97B0C27B651DD81580C2610 +:1007B0008BAD14C37E8CD316C752FEF41B65FDF8B7 +:1007C0004D16E4C75FA77179F88DC0E1402D7F6FAA +:1007D000556AB5117C62BE9BCEE1B1C360F635723D +:1007E000DDC0FCA645382EC65728BF69D6C8F738E5 +:1007F00029AF92CFE1F369C068948F56253EAC5083 +:10080000E24356D24678AF58C2DFE3697571FE679E +:10081000ADAD77621DFC38130FE0FABE72DD19270B +:10082000009DAE0DE37EFC64D4B970753D2F57B8C2 +:10083000EBBD9AFB5F2AF4FF4A918B9CB40374DEF4 +:1008400011CF1DC7A4E278DC9EE7A41DA3EF9FE4AF +:10085000A4BD25237D7F9331CFE440FD0ED8DDE894 +:1008600037473B3D2BF1630115267715FA53EC878B +:10087000E76723F2ED76629D2A4B1CE9443FD2EAFA +:100880009C49F22E1C2F4CD3C61BC7BB91EF98E19D +:100890005CBE8F7F877CA70CE7EB38997267DC8D95 +:1008A000BE93D0AAD003989F87F80C8FB12AF2ED9F +:1008B000DEE9BF19F9B6AD8B92EF915DCA77FFE122 +:1008C000372BDFF924DFADA95CBE5BCFD7925C9FED +:1008D00074DDA797EF14906FFC8E9BCBE7467BDA15 +:1008E0009A6A95777321DEB9089E3F21B818CE0F1A +:1008F000F96F9AD63F9FB0F79F86E76873F03C0F79 +:10090000B4574AEE02AC0B1862F2484F8E2FEF9F9D +:100910008979C27885CED1FAA38EC39CFAFA947AEB +:10092000FF55A4A715F5C54BE76D5E55F261A935D6 +:10093000270DE35016DC26A35E8C52F46D94CD7A1D +:100940009EBE239B688D7C8F3613E79D1ED7D57B7B +:1009500070DF3D4F359F673BE85FB1661EB1EB79B5 +:10096000A2EB677F1FEABB6B38EA81D9FF317EB704 +:10097000A563BC8DE2EF84EA0E7A4FE86381CB6514 +:100980000E931BCF21FD4EF7A07D3943CC38857ED9 +:10099000C91EA45FC3707D5DA13BBA1DFF23CBC4FC +:1009A0007D87EED7539276AFB30BBA39613DB1FF75 +:1009B000EFD0CD19E7FD57A4DB79A1C385371DEA38 +:1009C000F944B47830DEBDCA78EBCD4186EF23041C +:1009D0005EE1E772BFA8FB3216CFE538AEF2B8573A +:1009E0006ADDE7D67E87E1DE1C1BADD37175C04999 +:1009F0003C77DB6E641D063C37B37694DCAEC38770 +:100A0000DB5B759ECEF9B777C4E23AD79B3B36E005 +:100A10007E25CC2B62BD6107637D9B108F1C5BBE66 +:100A2000F6FD3675BE7B8F1AC3F83E75F43CDB15B8 +:100A3000BD689DFC373AC7BBE3E8D3745E70EB78C2 +:100A4000B06F6437A458B46F476DDEFD95D0EF9357 +:100A50003A03C5819FD439C88F77174FBE89714E2D +:100A600076F77125841D43F9B91DFF60BC8EBEA3C6 +:100A7000F62F8914070DB9E74D88A7478FA95D8226 +:100A8000F05D23CDF738F1FB1995029D373AF872E6 +:100A90006508DF9F1C7D77ED922468B7FDFACC3D99 +:100AA00089D83E5550CE23493EFCAEDDE87B043A62 +:100AB0007F74E6D7BC7F4C91CF8C7C99A47CB7CF58 +:100AC000C9F4DFFD383ADC48F27D7438F733AF0CF7 +:100AD00077F3F7DF7048F41B35FC1C2AC43366CA71 +:100AE0004B99CF8C789F1D0151641C8EEB4B0F6A84 +:100AF000FCCF99E9D6E932B7E766EDBE519B426F6C +:100B0000B5FE1B2DCFFFA9E8997ACE049FBF6BA03D +:100B1000B69DEF73B40DE7FECBE9E6F908E285DF99 +:100B200063C4ABB61E7076F278331E83ABB0493B1C +:100B3000DF72A35CFBCEA05C7FCCC419180FDF5E14 +:100B4000546B467FF2B1593291FFF730FF2F204F9F +:100B5000A92AF1AEC452D5C78F3E3C9DEC6A6C8C7D +:100B60008C71B7A98CE3B729E667D3902E9399418E +:100B7000A2EF7DC0AF498D0F40AE5ECFDDF62A3EBD +:100B8000F79BFBAD6EF53B1B29C591F8F6F85B10A2 +:100B90003802C9C7B21613CFC3FC2B1F82FEE3AACB +:100BA000ED22E673B7B3766ABF833133B68F676ED3 +:100BB0003AAF7127EBC830E1F97623C4F71E8AEF0C +:100BC0003FC2FD58888BFF84EB7AC8B18BC66B8C13 +:100BD000595086EB72B296693C5E37D0FB06D1F174 +:100BE00051A56D27C521F06B4B4EBDDE9E11BA3D60 +:100BF00023E790309E5A8CFD9578AAC9E413CA92D7 +:100C0000F09C698B80F8A5639F44FCCE257FFF9EF6 +:100C10009548362EE77AFBF2B220377E8CFAF20E38 +:100C20007FEF01E26B92B3F7E6F3F3D89B6262C900 +:100C30009FDD562FEC56F6578D2B8B15FAC220A749 +:100C4000143F7F9BD37FA2273C77BADCC61A816E04 +:100C50006366AD217EE51B0C12065FD510A73D88AB +:100C6000F8025DF78AD7F301E86E7A08F330B749E6 +:100C7000A9AFF3F16E7FD142DFEBFA17D641F4F45E +:100C80003291F89059E6E1FB113507840437D1D948 +:100C900085F1D249A3BE7E7946A9AB8DB1419C981E +:100CA00087F546FE5E5D60BC40EFDF4A61B1125FD2 +:100CB000D1BF352F9EDE7B2938251D47785C1187F3 +:100CC000F35ADA2A6200FE97320E0F3ADCD18AB06C +:100CD000B78AC3838F860D08DF96E32940B837E3D0 +:100CE000EFAB8098D0F83003E13556100FA29F7F0C +:100CF000775935D9A3DF8DBBF3B681008FF5F4A505 +:100D0000F7FBE2A799B87E67713EDC35719311D786 +:100D10003FE122A3737B4913815600DFE9159E4111 +:100D200039BEA5CC42EB1F16F825E97F7C3D3FF785 +:100D3000372C30D67C27C05F94B73FA4E499952820 +:100D4000176ADEF69083CBE94BCAFB5F8129AA3D87 +:100D5000E1F5DD4975BCAE8CBF893D29BF24F93C66 +:100D60008B87F5122372F2CE7BD2CA24941B07B76D +:100D70006FCC26553D08EDEF6FC9E4DF5B63D2749D +:100D80005C4F0ACA3BEA6DDD1A212991BE7FD882E9 +:100D900079317346F9BD8B96A8B83D706C09D62B96 +:100DA000FCB1BCAEC234ED807FB22D361003FE33F1 +:100DB000D967D17D7F1FEB40DA7E9087D696019D63 +:100DC000CCBD6C0619C67B639789E4FA0DB3AFD02E +:100DD000DB85DD1B1E0A10BF92004F4319F04B89C3 +:100DE000F3BFFAF03E33E6035F067233311E57FB62 +:100DF0006F2E1374F148CF8697779AC03F2635FC43 +:100E000072A7090CDE24D16716881EA3679C837520 +:100E10004F52DEBF7FA86CD40CF40793705F16E8C6 +:100E2000F768D9180E2BDF6DED39B53EFD3E0D7E0E +:100E30008F975975F34C32F171D696553E19C8A368 +:100E400071C88F244DAA4BBFDFA97DCEAE7BBF7585 +:100E5000521A1F3F7ADD9B94756C2CE3E7D2B64E95 +:100E60009E948E76EB7105EE39A58EE0CEF6295371 +:100E700074F096BB78FF2D93F8FDCDCAFDE1130FFA +:100E80004D42BF9F74773DDD1F5EC3E1EEE2A89740 +:100E9000057E5E2970BB20A2FEDC72ED8E8A4F813A +:100EA000EE934F1B79DD72DC8146ACDFDFE6670530 +:100EB000B67C3ABE21C703BCFFF9345EAF4D610179 +:100EC0006C7F617F0A9D0BBB6DD6811309A88F25AE +:100ED0004CA2B289F21E319526FAE2F87124D7B7F6 +:100EE000F9F249EED5FCE1A582CEBA8119E310C82A +:100EF000AFE9BDB3BFE6F1F769DE9868E0FB21D545 +:100F0000563A7730C9CBEBF677F9845D786EEAAC68 +:100F1000C0DF6B0B000DF6029E8689029D879A52F8 +:100F20006DDD8576748C289B517FD844FE1D808AA8 +:100F3000AF6358B810F3945DAB7A42BFB3EFF5A43A +:100F4000EF889E3D5FFE21C6BFAF2F072B87F6F5CA +:100F5000FC01D2ABD7854C89EAA94C3099347EE1AB +:100F6000F5F167059CE7F5E56288E563BE18FA9040 +:100F7000F78B637B13AFF73B98C8B062650B90604B +:100F800040B327DA3146E7618A7D8B96A31EBE9077 +:100F90006F11F17CF5F01C3E7E3ED0C7800FF9C486 +:100FA00030FACB14454FD3BCD200DC3FB5B02B2B6D +:100FB000B09FA5C810C273051F96652A757A5EAFEB +:100FC000EE33997FEF9EADF4D1FA58A3C1A3CD8340 +:100FD000CE08BEE9C8DCCF8E2E9881E77DCFD87DC4 +:100FE000D3D1041946FC7086A914E054DF8708FFAA +:100FF0002866CD8CEA52D4CF87EF41BAD4D40854B6 +:1010000097FB2A5E32231DA706E258A366DCF29AFC +:101010004D668C2F278F2B27BE4EACF7D0B5AA7A02 +:10102000513ADECF1AE1263CCFA6FA3F44FCCFE48A +:101030005A3116615939D6B061D0F5F394D7E49B93 +:10104000D14E4F867930FE983C6E511FDC9F9B58E5 +:101050002FB891C8DD8E9FEE4F17FE99E37BFCD32E +:10106000B1DF3F6DFC5C3FC961B7E38F53C61FB76B +:1010700089C69F88E3E375168C8F7CA9E6E34FADA4 +:10108000863809C7CFA94DC77ABB3AFE19BB3F1DA9 +:10109000EBEE59D3FE77C63D930DE3E1355F6EC5A8 +:1010A00038E48CC0BCF8FE6056CD9A3603D6B3C483 +:1010B0000CAA039EF5F23AA0A66EE8C220FD74B910 +:1010C000EF3F86A03E4FE6EF2746DBADC211DC7E48 +:1010D0009E8ED44F1EA3732B53FA0ADAEF5DC923F9 +:1010E000785C8FF5C12142F776508DAB3AFD525FA7 +:1010F000B57E1248C3B8EF3BEB27EEE8FAC9AF3E26 +:10110000ECAA7E72C7089E070C370A0FDEB87E7203 +:10111000201DEB2767C7261770BBE449C77AD8DBC9 +:10112000F3FBA7EBEA27D5BC7EF295D96DC038EB6F +:101130003DAF91E2CFF7BC2B28BEFD2B04702CBF36 +:101140007BBC5BA3D65DA1E447C359A01CE929364B +:10115000B8130264AC5A9623BF372C7617E0BED47E +:1011600002651DEF0B7E3A9F1FC86722DADDE4C4DB +:1011700036B257091013ACC07D105390DE0F4B11DF +:10118000F1CB76F4F768E8EF4CB8DCAC00CF2F4237 +:101190003441EF71D96C7CDF249D050986FC86FA09 +:1011A0002F52E433D9D4467E2335CF2D2BF888181F +:1011B00087A5985A2A71FC0C9931DA3F33B5E7E0DC +:1011C000FDEFAA1F44AFBB55E8BA4E278CE4EB9461 +:1011D00062D88358D753F562F2384F26C685E5E3C7 +:1011E000768D42BB373130D8807AF198229713EB55 +:1011F000B87ED4287ABDFCC335AFA2FEFC6EAC40ED +:10120000DF4FA9AADE9586FADD7AFB4FD3D05FBC0B +:1012100033DDCA304E7AC7EEFF300EE93CC5EA46F0 +:10122000BF268C74F3FA550DE8656C447FA41E6CE0 +:10123000BA97E46C469C76DF53C5B7939F5F0BE487 +:10124000E75A1CEC397C1FA4F995333352C07EB7A2 +:10125000F4629FA33DBF38E253B2EF2D3D795CF4B9 +:10126000EFAFB0A730BE6951E418E330EDF7EA5FA5 +:1012700054D687AFA1F3EFFDB3A7C2795ABA086E6F +:101280004E97F251B8DE298A9D9BE2D5D3A3A6BE24 +:10129000D68C7A5E55E3217B81576C7F2797D3816B +:1012A0008DE47C7F273D740EE9017935D143B54F3C +:1012B0007F18C1CFE1217E18E75498789D0BF27515 +:1012C0003A8711CDC75F2B76609229B00AE362B4EA +:1012D000BF8DD0BF7C56AD19EDEFD41CC18DF34E40 +:1012E000F571FB3B216711B7C3D3B83D53F139E327 +:1012F000F2929D3C932A5760FCADDAB5AFCCA19534 +:1013000038EE04C5FF9557F3F5DE0D761FE38FBB6E +:1013100073C6D37AEF02FB4FEB1EB78BECBB3AEEF2 +:10132000FBB9216EDFC72BF6DDCBD719BDAEAFCC35 +:1013300032E17F77A08F40F34CE3F3DC5517EF41A8 +:10134000FCDF1DC1F3F4BBBCF984FF9D759BF87CE9 +:10135000B396D33ADE8D6F21BBACCEFBC13F7CE9A7 +:10136000688754F9FACA2CADC238E92E953E13B9F4 +:101370007F9AE2E3EB98328E8F37D957CBE95373DC +:1013800040E1DF819F90FF1ECBF9F797115C6EDF84 +:10139000FEAF501A8D9FD3F57AA2F9F43705FF49B5 +:1013A000A620E13145C5A38EF3A946A167CDAC03C4 +:1013B00084C7D49A457C7DD33C444FB84E477A9C31 +:1013C0004639827EA73D72E3628DFF6123799C7C62 +:1013D00006D78DF26D6E217AD6A87CF3717A4E987D +:1013E000C6E561423DF76BB74EE3F14B95379FD6AB +:1013F000FBBB7C693ADAB133775919C9E544BD7E44 +:10140000B62E93D927786E0BBF6B08F3AF70F273CB +:10141000001555D24AFC0EC2303AB9C6BAA83BE80C +:10142000EB05C95702AB304ECCFADAC5F76D6A044A +:10143000651F8F19D6F68CD40558D5265EAF51EAB4 +:101440001DDB84B093DE23759989CEDB66C651FC23 +:101450007C7A32AF2BA8FE6ED3CC659457DE29DBA5 +:101460009815F0B9D3C9EB06EFBF6A63F85DEF6A70 +:10147000A53ED35D1DC160F357617B85DB24F1FD83 +:101480004C3FE94195524718C5DAA88E105D4FC808 +:101490001BC9EB09E3588B9000E3BC3B73990BF33A +:1014A000BDE87AC259251F8CD41394EF5378CCFF32 +:1014B000AC7A02D50998DBA8D413DC84D76B8C1DD9 +:1014C00044BABE5DCDF733C7DEEEA1FD31C8FB8B5C +:1014D00091FE9A7DDAAA9120F77F4CE7FBB4F443A2 +:1014E00079CA3253BE04F9F1286C77B2D0342DBFDB +:1014F000BE777D6AA518588C782AF5A86494422393 +:10150000E21FA6BF2F16BDCF162D5722F34DFF1F8A +:10151000CDCFF879AADE4CFD0922EE63A729CF0BC7 +:1015200035F7513EB27338138D783E63B59FF06A3C +:1015300032F9EA46525EC2E38414C40F44E1E99EE4 +:10154000F96B8DC6EBF17CA2449E87F41A65744A50 +:1015500061C0E7CBD346DA6F1F273F3B0AEDD8EDDA +:101560002CB84AFBFE40FFED8097A63E911BB2319E +:1015700093E6DCCA0FF6893A78604B8AAEFFE0C387 +:101580006E5D7B7E3847D75E784AD2C143DA4A74B3 +:10159000FD87BE2BEBE0D2F66A5DFFE197BD3AB85E +:1015A0001F0B1970B1233A6A74CF7DC97CAD788E58 +:1015B0006D40A9550CA05E05E4B77340EF062AD430 +:1015C000BEE56B5FD438E70C182FA6F436322BE457 +:1015D0008DE5EC7EDD78EC45D305E49F1FFE43FEF0 +:1015E0000D60006BCEF94FAE335F68D78DA76F6F7C +:1015F00038677FF584A6FDA991AE443A6750C48A46 +:10160000B0EE731D7F9899ECDED47D2C14F2E07A55 +:1016100018FF7E5833FFEE6FF47ABE5A667BF5846E +:1016200019F9092A8DFA02E384DDF8FD533D3FEDF7 +:101630006E3D3F6372F4FC74497A7EC695E8F919F1 +:101640002FEBF9D9A35ACFCF24AF9E9FC9357A7E0D +:10165000A6FAF4FCEC5DA7E767BA5FCFC73E0D7A48 +:101660003E790275BAF6BE6BFD3AB8DFB9F70C19D0 +:10167000B0FEDFA61A9950827F27B341F7BCCAC7D4 +:1016800000FCD7151F27D447F3917FC7E5BBF8F9B6 +:101690001EF2F307117E32E3B41BEE37ABFC027B84 +:1016A000F6F1482AEE78A7EBEAED4CBF2FB0296699 +:1016B000C674F42B77A659A9CE723CF576530F3732 +:1016C000EFA7F527B717E5D3FEC1A83A2B3FEFA345 +:1016D000D48FF018183F17CEFD5135EE1748B88F4C +:1016E00010A2FD82DBBAD93788B6CFAA5D063BFDD2 +:1016F000F548F23FBEA3ED02EE2FB4D1F34E16D45F +:10170000AF03EC229E97BC69BB384E941FFA3E761D +:10171000D99D1EB177BD2379F1E98956B28B91BC71 +:1017200058A2BCF89D72C9857FC7B4BBBCB8E72D71 +:101730003C3E7FE798FA1DD1AEF3E2BEB744CECD72 +:10174000DC282FFEDF3F37F3B32ECF151428787F28 +:10175000775EBC8BCE159C9ECEF3E2D3E717515E2D +:101760007C36F7617D5E3C8DE7C5CB3F1CD3780EA0 +:10177000FA579CE6EFAB55DA1651FC59F1A699D70A +:10178000FBD68562F8FB2475C4F7510ADF8F2BFB6B +:10179000CB950D955EDC7F1D756E1BF92BD1C0F9C5 +:1017A0003E3651F0D980845595A433CC3B93F1F368 +:1017B000E22CE0882F427EDB0E22FFBF52BE67D3B1 +:1017C00011CFCF2F563E524EE375BE77BC88FF7DBA +:1017D000820AE7A274FC5E53E534AB60F3B0EBFC25 +:1017E000F1D95D6200F38DB38B064918C7BEF4CD05 +:1017F000EF089F8E07991BE76D75DDFD21FE29AF70 +:101800004AE53B1567F3F977A3CEBA32C9DEB66273 +:101810009D3791DED1A17DE3B3AE9FD3DF253BBBE6 +:10182000859F2B3D0B7D30BE3EBBA9BFFE7DD126E3 +:10183000D78DDF1755DE8B6626F772AC231F592A2A +:10184000D2B9F7E17D82D3303EE9986CA17307CC21 +:10185000149CF538B6D70CE0EDC64D4BDEC6F6FB52 +:101860001DD4FE0773B0FE20D2637C8E7A8E3E6656 +:10187000BCE21CB4FB70EA77E4D473DD2ABF8F743A +:10188000BE471A8AD1E6C3DF75FF6CBC3F5DFBDD46 +:101890008DB3D3C7A4FB28CE5FD38676B36AA235B7 +:1018A000405771B9E946F6704EA9AFF19621F8DEBE +:1018B000EDB3F98B61BA6ACF5E3B3F4F17B50F7935 +:1018C0009D5DFCD539CC4F6AD02E323C1FF8D8AB89 +:1018D000D8FFF8FCAEF74FD5F38BB85F87FB77A343 +:1018E000947DD36A16A4F8FA5616263BF6DFD8473D +:1018F000DD710BEDA31EA0E7D47D54B0EF4FE0FDEA +:10190000E15764CA0B20CEF7E377204EC707487E25 +:10191000AB5C42284078F2BCE62A7ED7A68BBCA6F8 +:10192000D5FE55068EF75DF43C51EC7BEE16CDBE30 +:101930004B7542C82E527D4F1F176E8A7992E2D79F +:10194000DBBAD9877E6FF6A113B40F3DDDDA796E6D +:10195000544F47A92A29135F63F4AAFBD027707D4F +:10196000D17E655C37F9CB0426D1B58BF8FF38E220 +:10197000AFFA999331BFA273AE40C71378DF19ED68 +:1019800027FFE7FBD232EDF32AFE46DD8F56E3EB6D +:1019900034D5CF74B31F3D1A0FAAC2F3BF13F9FE9B +:1019A0003320F42FA9C5B87E8ECFEFD6064D188F01 +:1019B00054413C4271689699E20809FE437C2A989A +:1019C000372E0CCFDD2E9923F105FCAFE25C2EAD56 +:1019D000F3B7824112CA90CEA6485CE2C1E7F83A5A +:1019E000538C7C9D1551EDD174898E5730FF59F27F +:1019F0007DFCACACC4AB6ED6FFDBBEDDEBF1FFF41F +:101A0000FA7F0156F0E23700800000001F8B0800CB +:101A100000000000000BDD7D0B7854D5F5EF3E7320 +:101A2000CEBC92497212421E10C849781820EA248E +:101A300040E4A54E9E440938202A688B93103481D7 +:101A40002444686D6C5126248687A0A146040B3A75 +:101A50008982DAAA1D302A55B44344A4ADDA58DB92 +:101A6000FFB5D6D20414411E0EA0685B5BEFFEAD3D +:101A70007D4E323304B1FF7BEFF7FDBF9BEFD3C345 +:101A80003E673FD65E7BADB5D76BEFE95AB99B1D7C +:101A90001EC51893BF17E7713056C098CBCF9FDF94 +:101AA000E0EFEAFEE7972B6D6FEC333336C8253154 +:101AB0003698B137CD2E9B6B22639F4A6C1EEAABE2 +:101AC000CCA9CC8961CC143D2DADC2D15F2FB21F02 +:101AD000E6309FE8C962F4F74D2663EB15573CFAF0 +:101AE000612C2DFEC8380E06DEF37A7CACEFBB7994 +:101AF0003F6F0CBEA972632263973C363617DFDE58 +:101B000048BAE507EFA2FCE8E85C59636C883ECE72 +:101B10008E21D5BBEEE0E52293B408EDF6D9BD05E4 +:101B20000FF27ADD2F58323B54C6525855DBEC0980 +:101B3000FC999D99DB847A1646F5665C5E3BBE2275 +:101B4000BB1FBEB17A7F3364568F790D55BA25C657 +:101B5000DB0DCF52256F2A63C31853E45CFE4CF1B2 +:101B600029EA658C5914A64425F0674AAB438DE5F4 +:101B7000FD46897E8B320369CBF9F8EE171DB91D3E +:101B80007CBC7DD24ED3F38027DFB60CF018E31572 +:101B900025F85725F0FEDD2696BBCBC9CB058191F4 +:101BA00080DBFD734B6E07C37CFCA6F77899CD896B +:101BB0005AB69DB7BBFAEBCF98C2CBB7CCDB98BA7D +:101BC0008EF7FB524DBE790CC77B91CBC618C7E38D +:101BD0008D6EC9E5E3E3A7787B9A0761BEF3F22730 +:101BE00060BEC678852E33D59B3B49D49BEB2E3700 +:101BF0005786CCFF465790315EBE715EAF027AD8F1 +:101C000018BDE0FB8C8F3797999CD60962DDD627EB +:101C100031361BFF3031F6A71BA6BF01FCBC5B6E43 +:101C2000D564497C4FC9E3F0E31F199C9E6CCE7DBF +:101C30008379BD39CC696623F05235DFC9FBBBB16E +:101C4000D4AEAEE3F3BD89B5D2FB9B999F9EDF6313 +:101C5000DDF4FCACB7270FC45063F3A427723A3904 +:101C600039CCF3A4CACBB5AA67BE8BAFCF0DCC4598 +:101C7000F5E631F66A0F1FC7C1E9CFCDF1506873A1 +:101C800078E5D801E96C01DA45D2D9C6E8AB687EBF +:101C900037637E89FDF39B8E7FF0766FCEBCA219F1 +:101CA000F0DFEC0838C6F3EFBF8B313B57B1FE795C +:101CB00096E01F12E6E952800FC6EAF72DE3F58A97 +:101CC000313FBE5EA5AC55019CD7B26E7ACE624163 +:101CD0007ABA391EF09CC382C3150E4C9D1C680154 +:101CE000BECEA5BE7B50E2E53BA372CC4CCCF74701 +:101CF00080BB8C79F6F4107EFD8AFB529A4F03F874 +:101D0000C6C1EA09FE420EFF3AAC8F8B8D54F20831 +:101D100024C634E0632BD12FFFEB4E4E3D1F2FAC7A +:101D20004C0DFC10DF97C53AB11EC9CC2B61DCA16C +:101D30002C2001BE61AC5B023D336D583FDE865204 +:101D4000F37D19BC9D92C67CEB683097B79B972DAD +:101D50001C01E8A734CE733FE0565437031D013011 +:101D6000AC0F635EE2AF73F98CE8D078CEC973250F +:101D700015F367F404E6F265E3196CD9C0FB33B3DD +:101D8000CB4C129FDF363B5B63E77C37362F7F56A9 +:101D900009AFB754E1728AD79B52A251FBE86EE6B5 +:101DA0006AE7E398156F39E66BB6A9F18DF18CE51A +:101DB0001574074CBC7D703053C18731DDA2FF6DB7 +:101DC00031CC8BFEA69448D47E4A894A4FDEBE11A0 +:101DD000F83467F1F6397C5D6FE19DF2FECEADB56A +:101DE000FAAC98A7E2498FE7DF93FE626598F7E1C6 +:101DF00075D62AF051858579202F1275B9C1580BF7 +:101E0000CDD3EFCAA07EBDAC20950B21BE30EB52E6 +:101E1000E8C956D1FB8A7876AB9BC3732E5E5B8094 +:101E200071CFAD4D96F80AB00AB3AB64321FF7F02C +:101E3000C6786995D65FFF299746FD5664B84E3738 +:101E4000F0EFC1D90E67072D87276736A70BAB3C8C +:101E500072968D2F5289BCC2BF9B7FAF1DE650ADDD +:101E60009077E91F6E9AC4CBC73ACDCCCA6B576F37 +:101E7000BF3E2E80668A2B05F41429A7AB7DE6436E +:101E80003D369D4EF87F4B9E0A2FD7FAC3CB4B9918 +:101E900072A88FAEF8941B3EB4BFB12FABFFFBEF1F +:101EA0005D318947A289269DDF70BAFA08FB0E17BB +:101EB00045C6BE53C9C47A32E6B3CC8E397FDF79CA +:101EC000D35CF05FA0A7C5FABA5BADF547DB39BEBE +:101ED000ACF78DC96D24FC04F7827F931ECCC885B6 +:101EE0005C6C7589757DC2E53E8876D6F46997D1BC +:101EF000FE965E46F4716E8B5DB382DFEC9258DF26 +:101F000057259F9797DB867FDDB285F7D336C5AA25 +:101F10004A4EA2DB5913B93CA8D2F929D1E2AA460C +:101F2000FD23B3A3D45542DED94CB49E5C00F367C5 +:101F3000656B63CB5DFC7B7A8ACC644E5235AC3BDF +:101F4000164C332A5FD02993CBC634F2FE975E1F1E +:101F500045BCB4A4D967011A957F296ED0E56A748F +:101F600035998B569B4BCDE7F56A77C7E7A0DE3FE7 +:101F70005C266ABF7ADA32371A96C6093AB074CE4E +:101F8000F6821DAFFE5711F3F0F6B7374C7DF0A384 +:101F9000F1803338281FF4B15626BABFFDAEC9F41C +:101FA0005E9A53DA7D35E05F1BAD819E5FDF62A5EF +:101FB000F91FE1F347F9C836818FDBD31C3E9B74D0 +:101FC000FEFC9BA58045C8F1EE58D0CD27DB7E14E2 +:101FD0000BBC7EC241A2F553EB6389CFB5FAD83969 +:101FE00021747568AB5C0A3EF964EB88FB2701BF7E +:101FF00073AE9D88FDFBEAF891B19AA3FF3B53189D +:102000008DAF244CDA01FEBAFA5F32F1C7BE75E338 +:10201000627BF877C5C43C3BF9535B53580D7E593E +:10202000EC8E8AD7249A17ADEBA1B5769AD7D23524 +:10203000AB5B36F3EFEFA4CA4C9AC4DFCF1962A2B0 +:10204000EFCF484CCDC03A7C9D07B80FA959B10CD1 +:102050004FA6940EA4F7BCEC9209EFFBE6443903BB +:10206000BCBF637F949DE09FFCF415C1BDE86FBDCC +:102070004CFC542267CFB281DFD6F232E482B77BC8 +:1020800013E67998F39B176C3F6773C9145E3E940F +:102090006F0B5A9DFF397F1D587FB605FC7E7892E5 +:1020A00055B5AAE7F31BFE025CEE57E8EB14C97FB7 +:1020B00015EB4758B0AFB3359C0FB91C77E54B24EF +:1020C000FFFF1B7C383D3F840F59DA1CA257A39EAB +:1020D000C1777DFA9E2EEF1D5926D2376C4EE6DA77 +:1020E000CE9FC956E692B8FCADC957E87B4DBE8578 +:1020F000DA297F5FF6D4DB1CFED32ECF8DF9BC9C92 +:10210000CE5C39A0B78CCF99298E61BFE31B09F64D +:10211000AB9116DF763EEF4D66AE39811E15CFF3DB +:102120006F43EEAFA91E0FFEAFD6FB7BC2E5B9151C +:10213000FD54AEF09CDECB407753480E547E35D72D +:10214000A471F81D6D8CE07238DD0576C8FD44F78A +:1021500004D0A521C7477178DBB3CFA78B75F9668B +:10216000827B54A29BFA595428F68F36E818BC9FFC +:10217000471AA27CD8CFAFFE3ADD64E270DDCF59BA +:1021800011FA806DD21C932CF48CE0285E5E9622AE +:102190006B1F0DE2E34F4AE8FA06EFBD719F8F1AFD +:1021A0008CFDCFDDF50D6FE7E06569307D17ED5CE7 +:1021B000366A372A4BD457BBE23E8FBB12AA984DE2 +:1021C00073707A59CFFF057AC868136563FDCFB481 +:1021D0004AC49F36A659757DE0F3ED3962BFC5BE8E +:1021E000B92CC5427018F3D3A6E437639D99CB355B +:1021F00032318FF04E7F3F9E2AE40E6B56998C7ED3 +:102200004CCCFF08A7E7E8EC1E33E48F319F296D23 +:10221000AE16D06124DE2A753837004E4E2A539C04 +:10222000BC9C753E9CCBF8D41A387D54E972D368B7 +:102230006FC0C9F7BB9EFD7CFC6D2C8EAD2339EDC4 +:10224000F141AE0E556218F02CDB1EFC19E45DF472 +:1022500084FAC77A08AF0A1BC5EB0F1B52DADEC33C +:102260009F5D4D9CEED278D9E4D1B05E4A22D7EF83 +:10227000391D0F95EF7812F5873625AB4DBC5E936F +:1022800099B7E74F2F5728A07F7B0B5CEDF8EEB591 +:10229000D8D4263EEEC3D1B124AF1A3E8C21F9F931 +:1022A000A5C94D4AD2DEFC4CC2532AAB273D6AF089 +:1022B00092FD92C45F394788FD3E122FBBF385DD46 +:1022C000F1D1CAD69F7D64EE7F5F1FEFC98BE7EF28 +:1022D0002B39B857717C2C6ADDF8B38F42F0E52CAE +:1022E00014FDAD969C340FBE72A6469AC71C826B35 +:1022F000A8AC9D79301EF008BE04A3F4C90D0EE70A +:10230000362E9EEC09E78F1BF95CA48F93D526F936 +:1023100046C5F6BFFF8D0EF7C678D76FC16723D5C8 +:10232000ABE605F8B8CB25AE4F72781A7479CED6E5 +:10233000587DDB25E0D37913F8C1FBB65942D9E8C3 +:10234000A729C6990CF823DF2FB73B93E307C057A3 +:102350009F9EB246661EBECED5ADE279A17A539F4E +:10236000B4D68BFDC5BFF011C86149CB049D1CDB01 +:10237000FED278D8AB87CCC28E8D6CD7149FFF313C +:10238000E695A2D313C7F8FBCF71F81FF1C669D049 +:10239000B7379BC5FCBCD551343F67978DF8BF69F3 +:1023A00054824F865CDECD792EA95F2E273569FBDE +:1023B0003DD897F36DCE0ED0ED9A62579F9C873E25 +:1023C0006EEB610AFFBE690A53D7F1627A413CE1C4 +:1023D000B769B297E8C8E0C7A53A3F4A7BA440CCAA +:1023E00065B03F047CF6D6DB7B005F74A380AFCB87 +:1023F00080EF87361DBE035B009F254A55E578EACE +:10240000C2650BD93758B3D6023E82E106BEAAC8D0 +:10241000AEA4FEB85CD2E2A60D002F0B9F9F014731 +:10242000F4164E8F32C6F7B7EEC0BA5EAAA8DB35F7 +:10243000819F148C5F9726F0C3BA33A02F54A4D881 +:102440007AA558EA647F01EC0813979703E0A7BCCC +:10245000D8955C40F6909626737C74CD1F9B06FD44 +:10246000A1CCF6E6FBD26578323FD97FCE083B2778 +:10247000C2EEAB6B28740B3DA9FE6F77C33E78DBD1 +:102480004C7A74DD5DF96EA127D9BCD8CF97BA2DEF +:10249000C4D7857B324CB0BB97BE250B3B405F0752 +:1024A00063DEAF48AA3705789698FF050EF7D2DDB0 +:1024B000F9A9665EAE735B24E8511529EF6DAEE4B1 +:1024C000FDB6B58BFDA16DED28D2375FFCF7F507A2 +:1024D000BDA0075EA703EF73B4468CD376B7E6F4CE +:1024E000F27E4F495C64037FF36369BF6B5B7BF8EB +:1024F000D19FE07BB5C38971DB32C4FAB6C564F9FC +:10250000603734303FD93BDCF0746EE78F63B6D769 +:1025100037435E56DB7FB719F39A2A9B6E853D37AA +:10252000355DECA3C1B5E6F60E09EF25A3DC81F21B +:1025300031CE0FBB48E86B49A17A408599B9C127D4 +:1025400015ED26EFA8CB43DE4BFC3DF401454B0ACD +:10255000D5FB2EF6BE2DBE95DD45F8C810F0EB7A02 +:10256000C559C519F76D7C5FF995CC5C21FB55A564 +:1025700022FC560FC43AF36687B433170ABD79A11B +:10258000BE9FDB5B9FFCCB737CBC82C6F48C7589E1 +:10259000FDF47F48E7A79602513F0974CCFB2F3822 +:1025A00095FD21E8DFD714A799AE82BEC1883FBD53 +:1025B0001BAD61FCFEF2C6541FFC1FD18A58DF45DB +:1025C000EB637C8D7C6D2A8E5A7A41972F9F1CDBA2 +:1025D000E2E6ED7A6416344DB9381F19E3B3CD5AEB +:1025E00022F4EC4DBA7CE2E3D13ABD3C3F89F8C716 +:1025F000C097314E85CD1CB0C60ED07FA23601FDEE +:102600009C5CF9D456C8793EC804F8EB6A5581B78A +:1026100082E83113A01F36D8C64C803CBC6DB2E7AF +:10262000E94921FEBB57A28615803F5FB130A21F4A +:102630007BEB251F012F17C2E3573A1E0D7960F47B +:10264000D3857964631E5923CB43E46D85CD4EFC5D +:102650005F708AE329F1BBE3C9E8DFC0D3C5FABFE5 +:10266000107EEE29767540AE70FBAE1DEBD765B7D8 +:102670006BAB387EF7DAA7EBE518B217A5283BF16C +:102680005B4154B48FCAD1976E6D053D45DBC90ED1 +:1026900058687565489097D1560DF4D165FF550E71 +:1026A000FC1705759C5F25F807AF29477F05515634 +:1026B000B253F6DADF4C05BF77DD6171A2BF2EFBA6 +:1026C000A51F51FFBC3FD44F4C703DD20A392EB1EB +:1026D000D9AB54F1FD1DB46F8ACD403F7F2B107AEA +:1026E0004651740CD15D41B4F053140C15745870FC +:1026F0009FB55DF095ABA35BAC937BBB13FB74AC58 +:102700000B702DB7C790FFE6A274A17857639ECCDB +:1027100016930B39BE7C9456097B68B934DC09F9F1 +:102720005560F1FF02FE1FC6B53EF45F10CBF77394 +:1027300094DFE1FB79C6FFA8FDFC6F059007D1DDB2 +:1027400029A42FF145831EBC41EAD6002FF607F8D5 +:10275000793748FE71B48E0ACB805E98C578FD0942 +:10276000B4BFB07521F51545D42FB37D48DFD1A78F +:1027700095DAB76E41D9A23215DF23F7A327EC33E0 +:102780003AEA490F57679B53188B3189FE4D69A26E +:10279000BF2D05DE312A2F6FA98872366580EFFCC8 +:1027A000E3EA1DE7EF630BADCE8390678CCBA7ED1B +:1027B000B037E305FD1BF3FDB7CE8772A1D0FF163E +:1027C000467339987D7E3D434E9AF57AC726B9FE09 +:1027D0000EFDFFEFBA7F2E26DB9DC12998FDD43573 +:1027E000AB278ABF4F9279FD29341D2F9B447684F5 +:1027F0005186279A3D64E2100E41F1471D4569A1BB +:102800006551BFAFBDB7BB02DF6DD8EBF5EFD85E4A +:10281000B9BD68945D764E6FAB63FABF2B1C5FB693 +:1028200035923EDEFD15C52319FB58D2C7F73ED4BD +:10283000EEE2F37AC0CEC2C60B854F89E8DFCCFB4F +:1028400077687A7D6FA907FD3D946B9477F85C5C9F +:10285000EF79C01CDE1F890EBD3D0AC678F7BDB1F9 +:10286000B063FDB47EBB95DBB1971772FC6941B5CF +:1028700000F6AB61DF46ABD7935165FE6A2E83FD50 +:10288000684E14FE78335FC391D033D2323B483F59 +:1028900052342FE8C29AAA915F6BB2BE3EA5712A4C +:1028A000F1BDB267B60B6A9C99693BDECE207BF71F +:1028B0004A8C97945EB61FF2A8DFDE555CA0CD511E +:1028C000DC6E96783D5B1BDF77819334936F9424A5 +:1028D000A605BD61ED43EE89D03B1F2AF494148612 +:1028E000C8FF516D2E0BECBBC3BA7C6DABCE344927 +:1028F00021F4730BE807F630ECFC6CD4F7ADC98417 +:102900005D153F97EC69A35EA63AD2847967A689E4 +:102910007AD1DC7E869F2BB3CD9304283215CF7CF1 +:10292000CC3773DE6D16E847B7140AFFCB84353E0B +:102930003BFC59ACCAC446F1FE0A0B351ACFAC5663 +:102940000A7FEF3C9B03F6F623EE1D76F43F2AAB9D +:1029500083C667AAE2447DA670FB9ED77B3441996B +:10296000B82E049E75AA520A38F264CF1D240F06B1 +:102970004D71415E0D95DFCD6887FD3428576EE2BD +:10298000A8DE2485F38BF17CAF48AC47B3E4F65E58 +:1029900007BD80CB06E85DC6F774A7F02F2C2BB4DB +:1029A00010BC9A572DB0F171A67DEE26FFD7B2422A +:1029B00085DABFA6F444AB809BB9EEA8C03CDD0E1F +:1029C0000D7296E9FA5CE24ACD09B86D893DF75D72 +:1029D0008EEF4E9313613BC35F76EA57C91D90E3B8 +:1029E000870A3D2BB16E7972CF83D7613EF7294EAE +:1029F000F473EA5756D21B127F924D7A8A39B19BF3 +:102A0000F0BC3685911D70D5DA8FA2615ED812DDDB +:102A10000CFA74345F26E8E90E87E4C33E34C1E95A +:102A20002C22F956CF9CA39CF097F00D827FBFD645 +:102A3000F6AED0E323FC04A3383D1DB15188A8F9BC +:102A40001BE8314EE12F2861C25F70E0EBB9142F13 +:102A500031D93CE4C72B9A17C500579F7FA1A5E742 +:102A60000D13C6EDF629351CEF314E3FED578BC0E7 +:102A7000F7BC4A4556850583DDD626111D55EA74F7 +:102A8000C714E770D813DB0AA3453FAC99F05BC9C4 +:102A9000049ED87A2BE9D115ADF9E40F33D689B16C +:102AA0004651AF4DF0A16595D0732AF4780447A440 +:102AB000F0BF174A7ABFAB747BBA553CF571374902 +:102AC000DD2E59D001E9DF0B46CEB9E30D0E77C2FA +:102AD00084B1B9803B45613699DBDBAFEA7C1CD71A +:102AE00025ECEA2DD2C654C0B72555939AF87A4CF6 +:102AF000281574F3403CB707A097BFCBAE847D92F6 +:102B00001C5DDF0E7A48BE352B17FB4297CE07516E +:102B1000E35BF792FE7E87A676701A4C59D5530C6C +:102B2000FA4FB9566388FFC575D5535C23389BD1DE +:102B3000F7C137AD6844FDFB86B00419F559A3B45D +:102B40008CC3D13258223A6F29E7FA7F36C84B2519 +:102B5000BA499BA74AF02B247331827E6C4CDDC9A5 +:102B600021660FC58A72F02E16DF0153D524DF0AC5 +:102B7000FD9BCB4F9A5702A7FF0E3E8FF70AE369E2 +:102B8000BEC956562A2588F73EF2473117FCB9C907 +:102B900085F539183F798478AECB09509CEC11E665 +:102BA000DBBC1DF8CCB2A8C0E72B27F737833F3E2C +:102BB000CBB138654E4749371F68C6F8A724A51E14 +:102BC000FEF6C87D765F5EE15FC10F0F35CE9EBF1A +:102BD00008FD5CEA207E60DE9DCEEB291E15BE9FBF +:102BE0002ABADE7DE6449449E202BB59D7230E1C83 +:102BF000181107FF33C55AF8BC8F172610DECF30E7 +:102C00002D4EE5F01ED83B9ABE1BE506D403FF39D6 +:102C100015B213CEB7C396E976A72CE2373A1F3B1D +:102C2000E2937CEB32C83EF352DC6AA7DDD74171F8 +:102C30002716A0EF2F5C22BECBB3891F823BB9DDE4 +:102C4000AA85DA6B011571A0532BBB37178D42B8DB +:102C50004FF797BE1A4370245A02EA58DEEE3389C2 +:102C6000ED5A05BC8D0D8EC6E41D92B0EB4EE9FE0B +:102C700055AF53E9D84EE3BA52AE0FB1DB9A75396E +:102C8000E89002B751BF3BEDA6507FCD102B7F8F50 +:102C9000793FCFDF87E87DAF98C57BEF4E7B983ECD +:102CA000F8A225B083C6DB25DE3FA37A061785F898 +:102CB000FB6A6203A3E31DDF059FB9F783DEB91D3D +:102CC000DD8DF83AC79717F51D1B86917ECBF1294C +:102CD000E874AD44F8E4F63DED874772940EABB06E +:102CE0007F89DF8F999D14BFF1DE75B9BA9DFC8A8B +:102CF0004ECB22F4939F42714D032E8759D8AF0ECD +:102D0000D8C17121EF753C3225A0CE09B19B17E6E1 +:102D10005696B1D80BEBB30BABBE5EC0B8FDB67028 +:102D20008D55572E847FCFF86ED065DF3AE874C991 +:102D3000E54F989F3EBF48ECC3BE087F5EB597ED58 +:102D400025FFCA135628B37DFC515CC47479D66A3A +:102D500081FD54FDA19DECC8C87AE7EC5C5E222E93 +:102D6000FDD3D914FFB98DD5D3B38AB713F1A0FE23 +:102D7000389889EB478B999FDE6B6B14F28B68EF69 +:102D800047FB10A7E1DA8CC6AE406A809BE8372388 +:102D9000CDE40CA099C4A53D6FA735F3EFC97CBE67 +:102DA0006B15E287F635924FE2ED56379B841F6B29 +:102DB000BDE41BC5E9C4DB6C72A11F3E5E0AE4EEF4 +:102DC000A222A127DC5D24FCFE9C257C80C7781A0A +:102DD000FD73BCD13A373253006593249EABA107F3 +:102DE0000C602F18FD359BEB6DD05382C34C144FF4 +:102DF0006B367B96827E9AFF1C6D829ED21C53BFDF +:102E0000A6547C271971CE1E28A5786E8E4928B449 +:102E1000101BD06BFE6C6F073DDE52A4FB2522D643 +:102E20007B516B78F9F6CDE1E56A5F787921F3FCA7 +:102E3000324546FC28FCFD2D45221EB19069B40E9A +:102E4000CD66ED0F19E4DF5118E06F4C13F8330D28 +:102E500013CFCCF8A279C4CFF116067D70BDEEC7B2 +:102E600058BF2691ECC7E678416FFFA7F046C279BC +:102E70006FD16881DF78315E33E74F1D5F2487169D +:102E80003E637D1CF24ED3E9FFB824E4A477AD4C39 +:102E9000FB3873F8D68EE6ED16AE95493FF699836A +:102EA0005988937837C490FD7D5872EE08C04E67FC +:102EB0005A12E8E4F1A2041ACFF4C0957990D76FC2 +:102EC00045F04985537A57E6F45F78FDFA3CC03304 +:102ED0006510735A396C2F5B7CD1D8B223E7CFFFD2 +:102EE00034C5F003F2254D5FA195C06EACE5EF0748 +:102EF000410E85D627FF85A59FAFF8BA2D98E87EAD +:102F00001EF26E4AA198D7949F597D4D12ECA5C32D +:102F10003BDF9C40F29FE47BDD8AE00EE4A3E44CBF +:102F2000F4BC8CFA27EEFAA044D258DFBEF1D9AB3C +:102F300042FF9BD01CC2B7F8DFFA703E666B1228C6 +:102F40005EC7DAC2DF576D8D68C7FE6D0D85D3D0C1 +:102F50007336593C63A0A73EE2CECB033C9BCCAD7D +:102F6000A5900BB74DF6BC05B83E2A76EF37915FBA +:102F7000D7351AF2E4B5AF9B48CFF06631753BE523 +:102F800063F4CC4039EF1F2609F36CD2F51703FF29 +:102F9000861E6CE85F91FCF87E91D0BF3E2E725584 +:102FA000635FBFFAEB5FBBB0DE4D7B2495F46347F4 +:102FB000576028F6095E867E5CA7F5EC471C4DED50 +:102FC0005A7A366E18D74B1D26576688DD53D7269A +:102FD000BE332FFF7E657F5CDD6AF678614F9877A0 +:102FE000E707E04A819D827DC05C45493E883B12EF +:102FF0007D6EE275C1FF131285BEC62950F80F2DF4 +:10300000C2DE484A0A901F17195EA0BFCF8A5C2A09 +:10301000F25C3EC62BAE475C37C9751A78F3E87E82 +:10302000AC2FA0775CCE588F6E671DF8E3F5A457E0 +:103030007CC1DCA457FC5D97EF07F6DE18D793DD63 +:10304000FFFE88ECB953E57C7E3BF3929CAE663E76 +:103050007AB2B64162BD99A704F0D69471DD2A5EBA +:1030600094E19FAE755BC8CF0FBE0D44F06D6899BB +:1030700071BE0D84D04B8DD2DD427A21B708064D4A +:1030800042BC3ABC7E1D0B92DC59BAFB1B6B583F0D +:103090003A1D25CBCB72C89FF11FC617FFD3FAC7C5 +:1030A000B4D624B81EF87E4F7CD2A5E73994C80E5A +:1030B000971EAF17FEFCF3F23C822DF57CBD0BA6EC +:1030C00058D555A4078878FEC94E33039D31797DC4 +:1030D0000BFC614B87CA4C1E209EBF98ED444611E5 +:1030E000ABE1EB03F9F37F9A3F7345B188DB73D80B +:1030F00032FE9BF933571587C4ED23F9EA013DEF02 +:10310000F175C7D9419E90EF05D95EF24FE4150CD9 +:10311000CC8F65C5A25DB49E576553BC2CD4BF77D8 +:10312000A176738B051DBF6E09BEEF9FA0C73F3808 +:103130001E534C227FCB6453131A615F14BA6F0481 +:10314000BFD834C3FFC0EDD644F291A9F0DBD93427 +:103150007F8E06FBBFC6E1841D1A9DCD1510FE7D36 +:1031600001CB22FFC938DDCEEAA39308FA919C8CEB +:10317000E267B0F7D1EFD068F808117FF2EF445959 +:1031800082FF8EF3CF567B7706C1C51755C4573DD6 +:10319000E4FF838F05DF1F88D7EDAB1C615F713AB9 +:1031A000A73237AA55C16FDD3DD817EECBB369EB17 +:1031B00042F4E5649388BF5E482F4CE67AAC2381E5 +:1031C0009E2C064F3E5CCCB7D437E44FF2D87AF24F +:1031D00067249BB8FD97437623D95543E53BF269B5 +:1031E0009E0B19BD1F96E0BF03F31896C0549A7743 +:1031F0005460BE880F8A72AA529F8FEF3627531BE6 +:1032000027F7F71F73E8F91CBC8F19AEE3CBD29DEB +:10321000013FB6E54E9B1372FDC162F78662B28F25 +:103220005D97513E908EF73A9DBF42F8D64BF23AE9 +:10323000826FE1AF83DDCB5AADA4EF11AB5039956E +:10324000F4FF832873780A26BB7F26C6D1F585074D +:103250002E25FD8A350C22F9BA3A46D8A15BA5C0C5 +:103260009650BAEAC79797E0C82BE8267B207837B4 +:10327000A7C390F549D7E9FA299DCE8DF7A7F47D2C +:10328000E868B1EB69F0D58409814791AF58C795DB +:103290007CAC739DFF474FBD9D48F3ADA732FC8DBD +:1032A00098A7DB41FBCE6997E77901774F0BE69F43 +:1032B0009EC8F2E0775B9735872D74901FEF25F459 +:1032C000CBF5891DE887F3773DF6B9C37316531E16 +:1032D0004BDE37852DA5025E15FA66A255F8750DF1 +:1032E000F8FE4BE72FE3F99E0EFF092EA5F33330CE +:1032F0009E6B3EF9B7757F5AB4D6ED22383B85F206 +:103300009587BD03F0FE248DF05DD7999F033F069E +:10331000F3DB73503FEF2F0EC2F789BB86903FE976 +:1033200050A1E72DCC27664250C2FA9DD8794DCEE8 +:1033300040F23A594E609847B2CCFC0FAAFD749007 +:1033400064F1CCC77EB1209B6F851CE4D78A35A27F +:10335000B3747D5F4D5FE1668B1CFD6547A2581716 +:10336000FEDE84713E2E2A7E0DF87AAD58F8D38C9D +:103370003C148DA9AB58C6F97C92C144DEC97D7A54 +:103380001E0AF386E4CB649E9F8762C063B437F263 +:1033900050A2BF12764AA62AFCAA316B743A5DC1CC +:1033A000886EA705BB0BE3F87C47B605A6C1DF878F +:1033B0007443D0255FF7FB2EE7EF130729D3B09FA7 +:1033C0003CDA90DB05B9A5ACEDBE12A8CF68632648 +:1033D000B8948DBC40FA4B84BF2B5ED0B7529F058A +:1033E000FB72508958D7D32ED73F80FF823F994533 +:1033F0003EE306119F3A179F7F6C2FEC900D31949E +:10340000877621B9E1655D94979A893C3107E62179 +:10341000FC6A6C2427080EAFB2E12F140F57D6FEBA +:10342000711840C92E71E879AD5D29B0F762D6CB2D +:1034300026C0BF688D4471694868E4DD2D5A9358F1 +:1034400080768B5A2527C05EB439DF843C2BDE9012 +:10345000FC97A3DA549327647F18A1CFE7D75FCBFB +:10346000948F67B2097F786D5A42BB2CFC20C4A7A9 +:10347000B5E989EDB00B8695083B4A699BED4DD5C2 +:10348000FAF537A3BFDACE72917F7C01F9F36B4571 +:10349000C89F5F73CA6E75F6D35FB359E0DBFB2F2D +:1034A00013D17FBABEBF1EBEFF9FA944D77DFE3F8A +:1034B000210F15B3D6023B5769ECB90A78AE6C8D73 +:1034C00037D565A31F671DE9BF1BA219EC95F4F55D +:1034D00023BA90879BBE46659286FE6AD361077BBE +:1034E0003FB032D08BB2219AF0A86C74818A9812C6 +:1034F0009F44F8531EE2655EFFDFC5227FFFF36243 +:10350000017FB314A47C6D0E5E0EF4EDA3C59EABDB +:10351000911F4DF10EE0B9214AF8F7956EE2D747B9 +:10352000F3BA87817E1EB5B02ACCA7EBFE71734437 +:10353000DEB122815E6290DF0CB9FE7E32E9B533E6 +:1035400074FC0E402F43895E5E95DDE04745CF3326 +:1035500051D6727B310379DA1ECAD39EE6ED2E0472 +:103560005BC1BF9CAFFDE7FB405F7CD7E50DCB7B2C +:10357000E932ABA4E71BF91691F02D281172CF693F +:103580001279D97C9DECE017239EF530ECBE51C832 +:10359000E7D2F3BB56290CF95E0F47DF43F95F0D05 +:1035A0005EAB8A7CE22FEDC37DF0DBA4E8F659F038 +:1035B000AF31BE0EB26FBC260BBE9B6CBB42FD4250 +:1035C0004B74FA6D5034CA17616F093BF5AC22FC9D +:1035D000B86757A8640F2446BD4379055A2327D8F6 +:1035E000E198BF8BF2D298C546E7068CFE1290E7B1 +:1035F0001012074DD0F5B7571258919ADBFFFE27EE +:10360000FA3A3DAEE7B3232F80E4BB43E4FDF4C7B1 +:10361000779DEFBFC3DFCBAB2ED310B737E2BC72C1 +:103620006C9E06BE6F70E469889F6E8CF7B49484BC +:10363000C6FF63530AE017FAFF30BFAB1DF37C4BA4 +:10364000F76FBC7532CA94C1EDAF04E4070D821D5B +:10365000E0DB721BF6D91B1C648727203F6810EC47 +:103660008986BFDDCDE739E42D33E5031756F11D1B +:1036700084D71B827CA10CE40309BC785F95092FD9 +:10368000434A5D940F94807C20FE5D463ED020E44A +:103690000305288FA2ADF172CD9B887CA01126F284 +:1036A000F7BF2D139DB5E5685B2A13116FCB26BAC2 +:1036B000F9A9A4CBA57226F28162845FAC6D11A337 +:1036C000384D5F3E50AD46F945F09B121DD4B30B0B +:1036D000F84D855E12FC3E1374AD88FCB3CF26A96D +:1036E000644FF7F94DE75B0C3FB4F037CCCB127E5B +:1036F0005559A2F864707E944FCF1B12F31E952982 +:10370000FC33FABEF5D90F12C86F6DF0F367BA7FBC +:10371000C95B15A5D70BC6C22FFD0863BB90B7D6F2 +:103720003449DB8BF8CF67C82BA7750DC686FA53D3 +:103730002FF6BECBEC4A25B93ADB42FE694EA723F1 +:10374000D6030F4E7B0EF9FFF5BCBC021D44CE9F85 +:10375000CA83E04F578AD30B7BCF56EC0A8D2344A4 +:10376000D2CDCC08BE9CA9F36564FE91757A78FE33 +:1037700091913F637C774C17F2C2782ED4F5388351 +:103780001E8D7A5FEAF2ACAF5EF4C0F5BED6E5807E +:1037900063BA49EF8FD317E4909E1F509620E4A19F +:1037A00051DFA4C3973A5D0ACB0F88AC67EDABA796 +:1037B000E747355DC0AED3E15C99E79A3C9DD7DB26 +:1037C00090D14D79A91B246127187913A023D84DD6 +:1037D0001BA4D6F9BA5DA58AB29E576133F2204484 +:1037E0005EC49624A33D17F9B9F40C208EB4C1DE53 +:1037F0009D023F427FFEE31524570BFBF21F9D34D1 +:103800007F6FA398BFB36BF7389CCB7BFD5E55A34E +:1038100078919EB764D04116D3F6212FA3CC25F220 +:103820001FD9666D1FF2B65E97F47CC408BA30F6F5 +:10383000A5C87C2469CDDE66E4C780F3664C0ACD5A +:103840004B9A34B25CD7E742E9AFC0A1E73F39AC4D +:1038500001EB65038C73917C46038EC87DF595DC86 +:1038600064DA57398BF91326F5EB37EFA11EC7EF52 +:10387000B6E9EE82E9BC5EC14D939B496F2B13FE06 +:10388000A22E13D70FE087B308BBCA72E3D08EA66F +:10389000103DDAD07F5ED1E3412CC5BF0BFC36363C +:1038A00041CB85BD8B5469C89D9F770E217DF53A2C +:1038B0009D6EC64AFE65F123FE93FDC965EAA57DAE +:1038C000D4ACCB09670FF2670FC5D8C80FD3A07867 +:1038D000DFF4887E72111F5C3ECAA9EF4F222FA928 +:1038E000C9EC3F8EA7F75EA6217FFB7FF03EB40CAC +:1038F000EBD0E43379CD7CFF69D2E5D8977FBD4921 +:10390000011ECE782FCD84DDD4A77FE9FC5AACEF21 +:10391000DFAFAFDCBD5509F163173AF215D84BC5DF +:103920000EA7023E2D74CC56E0472C567314C6F5F4 +:10393000C4A9B13925140F8A586FA6B82F0DCDD35D +:1039400034D6F9BEE9AE16F0B351FF42F337EC6955 +:103950008BC5B918E70AB9765A8F78DC1FF1097E52 +:10396000136B7001F862A81CEB6CE2CFF7A317ECA5 +:103970001FACE11C8EA70DFDCFBBE99A1694A5AE36 +:1039800041DA320ECF67E53D79B00B6B55CF66E07B +:1039900007E741933829DD79A69BCE4932F720DD30 +:1039A0009E725F3AD03936039E7D3ABD3BE23CEDD4 +:1039B000E8A7CB148C71D2B9117538DA3155CCEB3C +:1039C0006F3A9FEE353BBF0E72F8F76E4CCF41FC5D +:1039D000BC20FAAFB72C851DFE70720EEC38032F99 +:1039E00005BA3DB7C8E44E0AC861F03E47F03ACA8E +:1039F000D35305BC0B88596D83853F56D1B2DD3159 +:103A00001786B7490A3CCD847E4B7EAE5B113820C9 +:103A10003D5FE46DBCC4F8FECCDF5B4D4D949F1858 +:103A20002CB739B1FFFE5EC73363A2FD761B4B0096 +:103A30003FBA0B7E457E9EC7EB1C4ED851E5880BE6 +:103A4000C9880FB9C84FFB71FE3F5FEDE1F3FAED96 +:103A500074CF1B58875B079986FF91F8CD330EFE14 +:103A600044364DE0F962EB9E0525928F3B67A644F4 +:103A7000FAC1221D3F73999BCEBBDEC8EAF573C025 +:103A8000DAC9BA443ABFAB9FDFD02E057CF399C8A0 +:103A9000AF8B3C0FBC80A9AFE2FCEB1F1A937F7881 +:103AA00017AF33C7141C6E093937CBF1FD21F07DF8 +:103AB000AE589C9F652BCA2FA1756D1BFC9DE875A8 +:103AC000B624F0C6E5E147240F078D6FA643B44541 +:103AD0008309FE7EFEE8698AE370CE4ECAC881BFC4 +:103AE000E6EAAFD534CCB784A9929CD34F175C20BB +:103AF000C7A61AE788F9DFC367635922AFD79D29A4 +:103B0000937E589ABFD7817915CB35433EE3FD7537 +:103B1000C3DE208BAF3EAD93D79B9522D33996372A +:103B20001B3DCDB0C7DE1C2339B94C60D724CEA6CF +:103B3000739BDDEC687335DA4DB2AA5EDAC702CA50 +:103B400004DE6E86CB46E78C4AD3CCFDFE64FEDFF6 +:103B5000B523C3CB65D9E1FE67C67A14F0E5648F5F +:103B600083E2DCB32EE28FB697EAFEE8B16C2CE27A +:103B700043AF47F8A30B2FEE8F564B27869C23535A +:103B8000B9E5C7C7DF71E5A00EE889DDD35E9F0AFE +:103B9000BC9CDD93814C3C36A84CE83D85A5EE9459 +:103BA00052FEACB3F42C00FE0EADE4035D027FB810 +:103BB0008DB9B8227E64A54AE5A32B53E8F9E94AFA +:103BC0008D9E275666D1F7532B9D54DE56EAD2D0F0 +:103BD0008FC6EA37C3DE5BDEA830E80BCB6396897D +:103BE000B2D9A662135B3D6CBF299A9757FB845FDD +:103BF000A3BAD3D78263AC4BF6B82CC8195C3E2C61 +:103C0000A1D081FA0F89D3A2B71DA8DF0F32A9FB7B +:103C1000D347B3407EC6BC6BBF929887B3D06F6763 +:103C2000B82EC7BC3F593989E039B6D245F01C5F80 +:103C3000594ACF974BDD13F0BD6E8DB46F28EF7FDF +:103C4000E633BD0A9EC52E89FC1E57B998CF9781D1 +:103C500073271E0FF86573AA8DF243F32F9DB3ED02 +:103C6000070C72DA7315E67543C2C2E24119A04B24 +:103C7000710FC0D5DF939C01AD9F9E2FC60F1AEB2D +:103C80003E05BDE1A457E0E5BDCEF7A87C46E1784E +:103C9000E1333DD3194D7AC199F7A3C8EE6089CEBF +:103CA0001BA6F2B2F577223E3252BDE7E83B84D73D +:103CB00058DAC7B9DE4B72E1957522BE799CAF1B0D +:103CC0009CE7C6B8C79FFD514A68DCE17882FFDCFB +:103CD00007906B7F3519E79B0FBFCCCB2F35AB24FB +:103CE0002F4E99FD47B0BF7A87D928CFAA0EFD8302 +:103CF0007F0E9A3AA0271C8F12E305FF1C45E71997 +:103D0000FAECD4F7A3DAC3F58D7A27F63BC30EB6E7 +:103D1000A6FFD8A9E73BBFD90EBD23CDA1EB15F572 +:103D200055A1F9CEAB2DFEE3F0AB795B845EB15AC1 +:103D3000CF77F6BE23F40AAB2E4FFE07E815778344 +:103D40001E1AB09E983F5F4FE8C1275F6B4C80877B +:103D50004932F12DFA4AC696BD302E99CE87A62556 +:103D60000E481F582FED92FEF2985DB71FFAB1165C +:103D7000621FEC7C61DC5F1209E75AF414CC5FAC83 +:103D80000FDB62A1F519F3CB9F7DFA017F3EBD7376 +:103D90006DD42DFCB9B554F0F3977F4D96C6828E45 +:103DA000BC760DF1BB78F502F129E837A3FACB71A7 +:103DB000D398B488D78B770419E937D35409FA4DCF +:103DC0003CEEAFE0F266EA55CE12CA63D1E9F9F0F3 +:103DD000869786627D2EE17618E4F4C2FB7F35F487 +:103DE000571CBE27F9DE8CF8DD2B66E7A9DD58CF1E +:103DF0006D36CA0F7B72436D2EF699CA9FCE2F493E +:103E0000855C7A91D139ECE74B851E7BDBE69D3FE3 +:103E100085FE9AED644EF477F9D65ED310DE2EE778 +:103E200009A909CFF1CF64C8744D428AFFC7E09B4E +:103E3000B126E6845F8B7DFDF890D07D7F77A91653 +:103E4000E6AF1C37ACF400CE2F65B79D2E18C242EA +:103E5000F5E828DA4FC725B72740EE5D9AFEE2A7BE +:103E60008DE0673D9E3AF1D51B7E3795411FF7A641 +:103E7000DAC83FC0F18EFDDB27728A4F768E203D77 +:103E8000FC459397F4056F059F27F8C0EDA5B8484A +:103E90002DAF8FBC8BDA9CEE5E9CC7A98DCF64B032 +:103EA000838FFA9693BE7105D74330CFBACE874A37 +:103EB00086F0F2C969CC29F1F1AB5E384B71655CD3 +:103EC0008C023FE3C9CEA6A49B79FBFBB20B28BFB3 +:103ED000D52DFB693CB6548CB774CF4E3ACF8414C1 +:103EE00040E49DC6EFC97F7D28CDC327F2327AEE2C +:103EF000CF80FF61B087DB5FBCFEE60C6F2AEC3B36 +:103F000043AFF9ED74F79F41CF4C7D90CE517C2C9F +:103F1000E9F1B5EFA89F584CF5946FCA5284BD697A +:103F2000F43BCC14A073FD5C4C50BEFE7655C41916 +:103F300031D20334AEE718C61D2A97933D3BD42AED +:103F4000EC51A65E4F799FDF75FC87A3FF4DFAEF1A +:103F500052532CDDA762E88FF30635D13D26B1F12F +:103F60009E2F30CE225D2F638A53A3733BAAEB1C96 +:103F7000F6851A1BD77B4CA4EFFC83F60999EBC39B +:103F80002342F461DB77D37734E6DC0C7F63DFBE5A +:103F9000F7456ED8BEC7D4F1EFC3AEFA38C6C4D663 +:103FA000B1F3FB591E934BF2023AC940F3FE359729 +:103FB000171E2E2F5EE5FB329E6C9FA9663FB74F02 +:103FC000AF447D4AA1E87E1D7A142FBB6234E851CC +:103FD000266E98F6EB1791FD71FCA75EC3E77BD5C3 +:103FE000E751CC13A2875CF9B94A7161E648F88EB3 +:103FF000F30E3C1EBEDF773D1E3AEF6967DE8F860B +:104000000ACBF1918CE785E6F73AE6C769C051E63D +:104010001A03B8387C975EC3FB2FFACA14065F1FD9 +:104020007D7C47F87E2889BC4F76DA4276F11EDD2A +:104030009FB6A73A9BF2A25EC47945B1CF905CDDF2 +:104040001323FC8E7B662791BFEF15236E512EFC48 +:10405000CE7BEC828EF7A4AA2A72D38758D9914ED0 +:10406000F0AB1C47FB405FFF8355D1DEF05BCE1702 +:10407000E3B7CD76A54625E29964A2F1FF2DBB42B8 +:10408000FD7D7D7ECC9CC0B85F52BD2CF2530E915D +:1040900045FE256BB2EA7ECA65BFBB7402FC9CD1AB +:1040A000A427B565F8D6200FA7EDEE1154BF810502 +:1040B0007E46F91B410BC5492E7A6EB15C0E3FB7A7 +:1040C000582E479C5BF4C640EFFCB3BE7EEF2BC27C +:1040D0009E7EDF177E6EF17DE3DE0AC51B136AF755 +:1040E0005EECFD0711FE45E37B5B7CEB60E4E3FCEB +:1040F000E81A4F1DE861FEA2ED764F48FC618FCDB6 +:104100005D0F7A7924CA39EB46C8E74A61777E6049 +:1041100016712DEFDF4D84AFD72ADF588879BD1691 +:104120004C61A1F14B834EFAF2615788FADF35BF3B +:10413000F831C7C0F9C5A573C4B9C2332B4C463E8C +:10414000ACC82F7EC16AF875057CAF5E4A74C1F4B5 +:1041500078FB63FEC1B42F05F47CE3C794C0D0A5FF +:10416000A09F3D76A24FDE831DFBFB2913DB053D9F +:10417000F0565DDE3DC6B438A2B30332ADF7C3D10D +:10418000B1D4FF6777F3F17939D0877F67CAF5211A +:10419000FB65937EDFD8634CCF27F6FF5FCF3FDE12 +:1041A0007E4D48BCEBBCFCE30BE2DB447EF6E05DFD +:1041B000B2EE47E7BA15AFFF58FD301DDF22BE1340 +:1041C000E47207E77C9922EE11784CC9A278CF54AB +:1041D00018E5C077ADA4E3DBB77634E07A7514E177 +:1041E000D1C85F3A72B7A91DF839B5E270DE660D25 +:1041F000EDD965B8E7C7DB69A57A8F45D0F7633A93 +:104200001E3DBA1F8FDD23F4E3836A4F4CA85E7A0C +:10421000D07D2406F2EEC3063960F9963CE5EF6DD9 +:10422000FEE45FC853FE9EDBD28B3CC90BD6BBA716 +:10423000A28C7DDB773DDFF97B3591F994E1F99133 +:10424000FFB8C6F527AC471FFE8F9A2E18C720FC73 +:10425000C7988C3805D1D3CB478718F9DF224E7128 +:10426000CCA1AF8F3F8038D5CB9D194EEC6F7DF838 +:10427000DF62A5EFFD72C4173D3B84FF5F56043E2D +:104280005FF685E77DBFACFBEBFAF0FCA989F2E7AE +:104290009B54A72D14CF0B267A4E432EAC72E4DA32 +:1042A00090BF57155770007EB8E46B3D5F5C43FAD2 +:1042B000CFA912F82F9732115FABCD0E2CA0FD7253 +:1042C000C577DBD79744EDA9C33D139FEED9FE22F6 +:1042D0009E1C1E11FFD925F6038F2910AB97C94EDE +:1042E00059C2FF7955029E3E0BC1ED62F5AB279F87 +:1042F0009FA74B222449D417FE1BBF656A22F2DC1C +:1043000098F6888AF796FEFAE437F2915EC8EB2FAA +:10431000837EB6247EF7FD53F9FBC50E876D45C23B +:10432000F9EBBCB87375F788CBCE7F7F3E1C629EDD +:104330004A6C7709D6ABF73E8981BFA63414B2C365 +:10434000E3FBFD59EAA4FAFDB07716714055BEE3D0 +:10435000947B7FD482F2F6FA5827E2D6ABA28797F5 +:10436000DCCBCB55EE2827E200E50F6CA47653F6A4 +:10437000083A98F294E41B286FA4DCFFE41788073E +:104380005744E4D956AE8F80F322F9B58B9FF8C617 +:104390001A9E6F2BE6B5489F87EC9D45F2628A6EA8 +:1043A0007F7F842A93912FEA9E7CED60DCAF922F71 +:1043B000BE2B426FA96522FFB3D6E6B993D6D1C60C +:1043C000D4E9BCFE81180BCDE7ECE638F23B9DD575 +:1043D000F9E8EC5671DF9591BF5F3B48BCAF7D5E5D +:1043E000F2C19F502B97D3FAD52E177960C80F755D +:1043F00085C08BFCD0D0326B35FCB0016AB7B89E5B +:1044000089F8095F3F5758FE73C072948F53E79540 +:10441000FC8FC48BBCD1B07E74FFE65226F47AE4E4 +:104420008F867FF7919DF09859F83739DBABE2CC56 +:104430005DF0E91D1CEEE57F9DBEC59619A2C7542F +:104440009B2FA4C7087EDF68277E37F7E931AED1FE +:104450003877DBB6718C13F81922EB76C050E18700 +:104460006D1BDCF534C557B9DDC17228DEEA453E67 +:104470004B5BF558FDFE059DFFE7592E20A7768979 +:10448000FBE81E92FAF665EC13376F4C36F66501C1 +:10449000D7063DCF40718DB6D1F7314E3DDE2ABEF5 +:1044A0000F6691726A30E4146C6CACC3CDFAF99467 +:1044B0009B23CEA7DCDC773EC53738346E7AB1F764 +:1044C0006DF1AED4846CCAF35E7B6DC8FED816EF76 +:1044D000B3235F9B557DB7B8C0765D0F31F0FE9179 +:1044E00024F2C52BA3DCEBAEE6F3AADC949909FA1F +:1044F000DB72AD886FE41588F5E0F59D840F975861 +:104500008F8F60F771FC5766BA4623AFD1C8333D31 +:104510009823FCF7C63D821DD70A3F43C7B5A6B016 +:10452000272B1276F0477641678B2604CC90B3DCBC +:10453000F6A77CC14A8BFBB75786C0B30DF48675CE +:10454000651AE50F3EA3C35769925CB0572B7F6A8B +:1045500025BEE170D0FAE72D933AE0E7FA488F8F55 +:1045600019EBC298B86FE4E6DF0FA6F30AC6B943A9 +:104570004EAF945FC5F549A12F5F885E393D637FDB +:104580008BEFA357315EDBFCD1447F4364815FF640 +:10459000408CE8A7B82015761AF202FE817AC57D14 +:1045A0007901E4EFBAA89E5D6D6E07DEFBF4EC6A5C +:1045B00073C74074D7472FFFEFE8EEFD6B075F9896 +:1045C000EE78FB89DF164FA97DE9D917BD1CCEC552 +:1045D000BF7C2816FEA1634A6B9293F75BB3FDDEA6 +:1045E000589C173FAA7863D1DF319F4CE78123FBAA +:1045F000499E21E9E7A45CB152527F9CF5D39FFF0D +:10460000B3E5C77C5DCE492C887DA4AEF3EF2D3F8A +:10461000E678DAEFB205B1CF1C557A4A7EC2CBD527 +:10462000E58EFA46BA1726224FFCC9879234712FBD +:10463000E650717E2A407955754F98E9BEB9BA3F68 +:10464000CA4E90C952166C017C91ED97FA0F5B40EF +:1046500017AA8905D3A69EFF1D0615FC074B3BEF45 +:104660003B0DBFD2D2CE631F40EF8ACC37AFD2FD15 +:1046700095917E7ECB0CDDCF7F05BB02FB31C78FD2 +:1046800013FA8997C3354A2C3FD175D3D34F3E07D0 +:10469000FFECB10F9273900F73E289DFC5E27CB833 +:1046A000E1EF37E22227FC23E23C03E0D7789E8A41 +:1046B000F00B1BF25EDB2D51F233DB239E35E6401F +:1046C0002CF48F9A76B393AF30AB79F6F11D8F80CF +:1046D000EEFF6CA5F3DE35CF9EB540CED648AEA03A +:1046E000447119162B85C4C7973CFB71C9CFA09F95 +:1046F000A4CAAC8CAFDBE2E7BF10F55DDC60E1F58E +:1047000097ECEC2DC13D3B351E47BD6D80752BF4FC +:10471000EFB5F4380658377F6F09F9459EFE92D6FB +:10472000E5D86B124BCE38BF7DD5F6E3A46F9DE084 +:104730000BA4629FF3CBE596B8F3EB9D78229AF831 +:10474000F9C41E89F24B2FB68E47AE6584AFDA9757 +:104750006218EE29ADFAC0EA2BC3FADEBF9CE8FE70 +:1047600013A55ED0FDB67B935C1CFE2AB33749A52A +:10477000A7785FF5E80F757A74A522AF93B230F889 +:10478000BC166DBD81E655B56D21CD8B6D91D844BC +:10479000BE145F707D78E700EB799FCE2F5676C709 +:1047A00065E08F2F7813E8319FE87100EF1F445EBA +:1047B0009495751C843EFA45F76009FB9FFCAED9C1 +:1047C00086F9FEE0D578B2736E9D21E475E1BB5F9A +:1047D0009480AF7E90A1D4EBF71F7A753C49DF0837 +:1047E0007B94CE61517E6026FA3D63F93EAFFF397E +:1047F000F45367587DC2D3271DD6289CB3F92449AA +:10480000E441F2BF3F30D087E88B2D7DEA93FDABCA +:10481000414F29234C717CFE2FCF10F29EBF2F8178 +:104820005F5BAD70D4C771FC7CFEC7C316F843BD97 +:104830008926867BF9EA7CA769DC32899D065D18AA +:10484000F858BA3BFC7CCCD2273E8EE0DB88F336AE +:10485000AC9EF0B694C551FCE4134BD00279E0E570 +:10486000E322DE705B5BC8791CF4B7E2A84E0F96BA +:10487000FEF719FD7C67C4E56ED7F93C72BD22F9DD +:10488000FEDE19FA7DAD3ADF1BEDD9D681E347FD97 +:104890007CEE15F7399A995705FFFCD94AFB52CDA2 +:1048A00046C18F8CCBC9519CDE0FAF7F3D09F7DB32 +:1048B0001EF79B13CB68D470B95AB5EBE3FDAB7907 +:1048C000FD212932B3935CFDD2027B2DA59005AD6D +:1048D0001CFEE3553E09790CE7F1257F3F205F562A +:1048E000B1FFBBF294AD3F0DFBB71FEFE17C78FB4E +:1048F00005E4A93F02AF5FB0EC38F8ED995A9E4E3F +:104900007EC208FC1A788D948B6533B401E522FFD2 +:10491000FB2F168247C67A888ECF7139077DDCA0BF +:104920005FE611F4CBCB9621986F9289A15CE7DB0F +:104930003B177193F3E71D8ECFC8EFCB67305A77E3 +:10494000F7AF44FE79CD1E493F57E5253B6C29FC66 +:10495000BC54BB75FFD0C4D0B22FA2EC8FA8EF8A95 +:1049600028BB23EA7B22CAF561F56B76BF6E1187FF +:104970000F0261F5AC0D33C8CE3A5F5FF0093EEF30 +:104980003C6DF1823ED282744F4481EC3C90C3D79F +:104990007546CCF30EC817233FA7C921F227DF4C79 +:1049A000C910F7B5E872A4509723D17ADCBA89E52B +:1049B00036E39C9397D333F8D78A13A9907B693257 +:1049C0009D6F658A4759CECB050B6B28FE5E94B66A +:1049D00070DF4EACD324AB8A75294C9BB92F2711BD +:1049E000F46F0B5A79B9296DBC4D1B20DEF77AA301 +:1049F00033AD7E80F7C6B3D0F6F63CF81B8A1CE1D7 +:104A0000F2664684DCB8460BFF5ECA762542CF2D9F +:104A1000CD3633CE79AC04F543E5E90C711FCD35C5 +:104A2000ACB55915FC47E52B753CA739E215F83BA9 +:104A30008A1CEFBE0E797FD5E78CEED332F09DFF56 +:104A4000B9AA00DF5729BDB2F097061740CF904DA5 +:104A5000B1E25E736E6E219FBA09797839389FECA6 +:104A6000195A067D8C6FDE05C05301F3438F97F60C +:104A7000BCF97711F7AB37814F2FD9BC9FEE05BC3E +:104A8000C4E608D0BD805B951361F78945DC6B3EB9 +:104A9000CBBFF314F4985973A329BE358BF9DFC14A +:104AA000BDBD6CAE4C71C1DEE7622C88EBCDF49FCE +:104AB00056406733A74914FEEEB5ABC3EFE0F32BC6 +:104AC0009745FEE4656562BF68B20B3DB9BC65D829 +:104AD000E84CFE7EE6057E5FE156BD7E7A933305A7 +:104AE000792241C9AE764CE8AF8F7ED0EFA2321169 +:104AF0007F9CAC3F8D727AA1B07F2AD7587B47C488 +:104B0000E2690E5CC29F9FCE2AB812782ACB64FB62 +:104B100085DD2569D0DF7BEDC22F14DC9041F68462 +:104B2000872F29EE4B660D2318CD33DF69C179F548 +:104B3000DE8D192AF29FA2B35DD4FEB65649039DBD +:104B4000F7E633618FC458C88E3BA8AAC351FF60F3 +:104B5000CA08CA474997F78E24BB2D47D86D4FCF57 +:104B6000F4CC2EC33EF4359F6F1EF20099403AF309 +:104B70006741EEDD7773140B901DE0A4FB98F7D826 +:104B8000DC3702EEC30D32C5110E5789FB74379422 +:104B900009B9972E074652BC4E1579A28F5A7AE66C +:104BA000A3BF896E8DE8AE2C41CD435E46F05E3BDF +:104BB000C3F8E509EA02D42F6FB984E29C65AB849F +:104BC0009DB756F1D3F9369F4B337939FDE4968979 +:104BD000F6DF6B54DCB81737CDC6149CB71B719D3C +:104BE0006732E099E96F3C8873010BBDC20E5FB874 +:104BF0007EA305F45A2C67D3795CE3FE8F0BF1DFBB +:104C00008E95E2ACC4532B6DF4FCF94A4ED75C91FF +:104C10007E66650A959F5BA9D1D3BF328BDEEF5AC2 +:104C2000E9A472E7CA49547E71A58BCABB5796D2D4 +:104C3000F3E5956E7A3F9289790C6F10E7138DB288 +:104C4000A5929753510ED079C4241B5351CE64DDE5 +:104C500012ED739CE757A7E2DE5C17DD8FAD789805 +:104C600086F616FC8203FF1E059249051E34CACF44 +:104C700049F3B07A7C1F06BCF1B2A5488C67AC0B37 +:104C8000D3FB79B496691497557AC6607D8BE5138A +:104C90001BAEE0EFCF5499285FFE0CEB79F6252A86 +:104CA0003B28FE33DCC24EE1BC3B971A9A3C1C7C8D +:104CB000EF4CB1F2F54CBFA73403F6C22DDC4051E6 +:104CC00042F6D1EFD7DB2947D828DFDA101F56BECE +:104CD000F60ACFA3A0B7EFAFE8DDF6BF78FF07EF86 +:104CE00039F2F1931AC1B1FD618CBB22CA897BF103 +:104CF000CF60DBE2F338D36C26BB187FA1F70B96AD +:104D0000DF3DD682BC805E97CD29A9A033AD04E7F4 +:104D100080BD5C3FC0FD201F603D39FE3FD4D7D32E +:104D2000DEFA25F9E57A75BF5DE43D83BB39238260 +:104D3000BE0EFEF89FC2FF6FB6A9C83FE8AD4A8815 +:104D4000D5841E1A761F6B85375ADCEBD82C8BBCAA +:104D5000E0C8FB109D422E1E825C8C177212F7A7D2 +:104D60007A02421E1EBA3BC90B3DEAD01DB14E6409 +:104D70002879D6247B6FE7E5F5B83F07FBF91ED607 +:104D80004279CA26568F3804F39AC3E5634F5A3CDA +:104D9000F41523CF387A828FF4734E562AECAA8A00 +:104DA000AC2EBAD782B54A2AEC2EDCB3644B80FC19 +:104DB000D1CF8F299E3173F9FA7F5526EEE7B0CC1B +:104DC00014F77DA7EBF9E3332708BF42B5EF920E46 +:104DD00039248E33E2BA823F82DFFAE4DADCD33957 +:104DE0006477A89A290EF7ED15B84AB06E6505DA12 +:104DF00032DCCFC5E5DC07A85F2CEF21BA3CC3F954 +:104E000000F7369C61DDA29C22FC8416D629E8B608 +:104E100052C4EFD36C820FD29C824F864212F2B200 +:104E2000325294FF5FF1EB024DF0630AE7C7D5827F +:104E30009FE8773AA28A843C633A1C9963849FCBAB +:104E4000E02FF39A7C13FC5486BCB33327E9A39577 +:104E5000EBC5BD5595AD3996DB42F6970AFDFDC20F +:104E60002C71FFBAF15E9D29D33A6CB2F81A53E067 +:104E7000E7D4EFCF4219F7E86C5AEC4AF4B2FEFAE5 +:104E8000D24C45DFCFDCB52F804F9F8DA6FDB0BC47 +:104E9000E5FB332742AE3E3788CEF77D3A6B27E5F8 +:104EA000BF5634CFFFE19F40874FD9E9FDD0999E8F +:104EB0004CACCFA792B6E005D803DE8C1B27F2F6E8 +:104EC000BFC74BCA9714F7C56D5A974FF7CF71E21A +:104ED000B7406E18705764E5B6205E5CB13E3F5136 +:104EE00030A987F2359AE6DFACC02F9AA8D3958512 +:104EF0006F98E8AF46DF3771AF0DFC4A47994BF723 +:104F0000BF097FDBA73FFFC511ECF3E79E8EC1CF42 +:104F1000CAB0C5978B7D9B65FBF2C4BD50E1F648D6 +:104F2000D12F4E921E7D92EB6F647F761EB650BCE1 +:104F30009ACB43D0E3D24EB917F78A46EAC5FB9E17 +:104F4000FB4BEC80F648A7F0A35CCC1E29961DA471 +:104F50004F2FFD95D0A7FBEC49E92BB2DB97BE7A2A +:104F60006F9267007D02767043C240BF13F0DDECA4 +:104F70009748BB65FACC703F90610F5E689F33EC39 +:104F800016A35CD570D908F8171737E48D80BFB128 +:104F9000AEE1AA11A1F7199DD4F3478D72ED05F288 +:104FA00047DF3417DC3433246FB4AA619CDEEF781A +:104FB000EAAF5AD7A334458B03FD9CF18D8A63DF9A +:104FC00002E7D2CD7C32B8EF8BD787FF23E45C11A8 +:104FD000E97D4B7E3D2201F458BDE7418B0971E725 +:104FE00099429F3F19618FD53D7398FC23B5AC9BC7 +:104FF000D691AF2FB385DAE79B2D344E245C4B7EE0 +:105000001143797DD57EC9B59DB75F62D51E00DF9E +:105010002FF9DDF5666FC87AFF44A7EF48B8EB6754 +:105020006A61E7330127A37EFCA7903FC97E194D33 +:10503000FADC677B84FFF89367E4C7A1BF55FB7771 +:10504000D6913C7D265A45DED6A7E6F0FB0D57EB00 +:10505000E3AD9EA9FBCB999FEA1F7F269AE26D8064 +:1050600017F2C2F8FD2FA3DD06BDDD061D4FE9E0F6 +:10507000C7C1FDF5AB1DAD16CA2B7DF9FAC455802D +:105080006BF77BB123F9FB8775F9F2596734DDC300 +:1050900054DDF9CF59AFC08EEC2C4C9442E4D013C0 +:1050A00033C5EF2E309F88379DDC23FCB5B5C02F6C +:1050B000A783E3BA7FE9F87383DABD21F685D1FED1 +:1050C00078E7F3B1A6ECFEF55B6AAB5F7349E6F9EE +:1050D000F7BE287BC4EFAA10FFE31E81AC7A37E449 +:1050E0005ADFEFAED85CE467AADB3D9B09FDCF41F8 +:1050F000FAD1B217CC14675B70B976D32D900FBF7D +:105100003313FE978D6101C479CE36C4D07D4A0732 +:105110001DA393E10F79E46D33DDF3BB60BC903FD9 +:105120000DC8F7233D3CA61DFEFB9A35129D33EBBF +:10513000CD70ADC2EF1D18E702F9C6FF7BECEB3571 +:10514000EF8CA07CDB1A9FC81F659302A343F9650F +:10515000F866714EEDED99C24E38681179ECE9723E +:10516000D7683DFF43EA0889739E9002A329AF6583 +:105170006778FE44CD9CC068C4236A76A5523CE2A1 +:10518000847E7E18EFA1EFD6E48A3C89BEFA3FEE1A +:105190001A0D3AACA9F067E17B6F867A8AEC8F171B +:1051A00062E87E05D34BE2BEE2DA27ED1DBA1DF8B8 +:1051B0002EF4BFA6C63409FEAE233ABC8F42D5C238 +:1051C0007EF3845D9CFFB9403EC810A955E47D6C18 +:1051D0000FCF07396811EFBD3BC2E773C2DC4AF756 +:1051E000D779B787E7839CB0B48A7C901DE1EFAB99 +:1051F000635B697EBD6626F2629E167902CCD17D24 +:105200008EE29DBFB0135F7C9AEA3B8775F974DB31 +:1052100008CA9FECCD68B5E01ECD60BE2D88FB4D61 +:1052200016B7FC82EE955A8C5D9CEB1F8B7FFE645B +:105230001EDA1F338B72D3DD0E867B070FC46C2200 +:105240007BE5CC13560972FF0C6B5D20E965E0FF2E +:1052500098E413FEE56A95EC168F11CFD9BE653838 +:10526000F07E6CFB9325F01F3E5660AB9707381F0E +:10527000BDF889F078746F46F8793EEB2C2147AD84 +:10528000B3C43A44CF12F7892D19F38717A17FF4DD +:1052900066083EE3EB49F6E3233BED545EF2ECE0B7 +:1052A0000EF04FBADC61817F9DCF9BCEFF48F76C3B +:1052B000B620DF18F6BB3507FCB295FCDF67F9FEB8 +:1052C000093D4D6307E87783CEFA1F7F07F9A3678F +:1052D00071C441A57BE093D501E477AFD9375AA5D6 +:1052E00075B0E776E87A3BECBD633B86D23D586506 +:1052F00009ECD639C04742EB65881F2D6EF8E7826E +:105300006FCB4759FC528C4BFCFE80EF4EFCCE4ECF +:10531000ED037174FEA276B5582FC85AF82D177395 +:105320007692BEE5FE95C58E23941F1389DFC8BC17 +:1053300086EFCF12F2AED62AF0B86487B8F7AC8603 +:10534000F32BCE092C69117E7FF67371DFDD727B42 +:105350002016F9F5CBB7CB4E2F7FBDC4E21F3D9889 +:10536000CFAF749690B7BCBE0772B0AFBDC5F93071 +:10537000F5FBCE0D74FF5CE9AC443DFEF26012EC2F +:10538000A9C8FAC853571DA1F51E8F0D8DD318F566 +:10539000FAE6E9E7FACE6558A7EE3B91F7FDF93357 +:1053A00076828BEF1394EF18397F0E2FD1F392E7AB +:1053B000AC74AFC071FDDCEA275C0E7B2F013C337F +:1053C0001EA0F9FEE17ACA23BEDD17DEFEACD69D33 +:1053D00007FA3FDB395341FB99B3C43D08B5ABA78E +:1053E0005E47ED7E6FA67691EBE1D4EBF5F1EDB380 +:1053F000D1223F88F99F437FC79F8D36816F7BE322 +:105400007D16E4F507F7B220EE313D6EF60F875DAD +:1054100075FCD94B7210C75DDC20D3BDF1C7E3FD2D +:10542000C3D590F7BDFA7D824858C3EF01D6A0EFEF +:1054300011FDE32FB1ADEF869E85BC99BC5C7A0669 +:10544000AC09E7E7B5805EE18FD83F4B8F33C216DA +:1054500043BE0DFA23FAF65B106735F8BCE699C82F +:10546000BC18F17D95D19EB354A291AF037E35FB5C +:105470002DB89F2228310DBF33B9A4F98E6AE4B14B +:105480002CA9DF780BE87589C24A2D1CAE5E49FC59 +:10549000DE56AF9DF30FF4AFD07132C5534DEA9F86 +:1054A000E77A5D4EB4CE12FB22D7BB592BEFA7A6ED +:1054B000595A8F7E0DB942F98721ED9007827DAA56 +:1054C000375FFF1E31DF5E3D8F35F8ACD41EBA3F2B +:1054D00045CEFB802E9F7A33B407A625F6E73BF234 +:1054E000F2EFAF16FBA509EBDD04257EB2E813FF52 +:1054F0006DAA4EA37CF82A9929A9B9823FFBF254E0 +:10550000E4707F0DCE3DC0FEC313F69F6615F61FF7 +:10551000CAB0FFF084FD87F7B0FF5086FD8732ECFC +:105520003F9461FFE109FB0FEF8FCE3285E7717E7B +:105530004B5E1BDD07D097B7765E5E9B88D71BF16D +:10554000F963A6C8F83CE5AF1D91BA5B52A58BE79D +:10555000AF2D98E8F9D3AC89B4FE61FD4D19E11B7C +:105560008F3C8B3BF57DA046BFDF73F4564BD87A5A +:10557000643D115E1EFB4C7839BB33BC7CD99EF078 +:10558000B2735F7879CB2C26D6F7DE3747E37C7E83 +:105590008F1443F7BCE54CF47C0038EB369F5E007B +:1055A0003DEC8439B803F0F434F275177420FC7EB6 +:1055B000BC37D0B5917F7DD1FB112F7A2F62389DFA +:1055C00018E72F1E33075355D203A73D0ABFCF322A +:1055D0002986EE0F396C67ABEE85FEF11B11EF3CAF +:1055E00073C04CEB7D66BDD4119A5F764EA707A3BE +:1055F000BCF0ABF1B4E7F495D74B267639FCD9A6CD +:105600003078C6F8A2C2F035EEA984B0F2A5FE212A +:1056100061F52FDF9D19F67DA4C7553258DF87113C +:1056200077C8098C0D97BB2BD6887D1A2FB85CBC28 +:105630007EFDF8F0F63801C5E7B3BC5D72428E56C8 +:10564000BAA786B55F7EF71ACAD35B6EE70CC8DBD4 +:10565000576E16BFDB325C62AB28BEBA53E4251A24 +:1056600079F60BF57D86295E0BC58513851FF198AC +:10567000D43D1CBFF7533DB675D33409F969EDC36A +:1056800091EF36758667D875E43F70CDA2B8F14EBC +:10569000733CF8E2C4818F6763DC137E7302C94FE9 +:1056A0007DFD879B855FB47D12A3BBDADB5B85FD47 +:1056B000D0DE3A286A6448DC82CF2B097EF8335C5E +:1056C0000FC17A16CBD9A46F9F3D207EEF4F6B2878 +:1056D000A57BDC97BD6B263E34E0AFC97DF3D104DA +:1056E00013CE2332B22F4E98BACEADE6DF8FE7F855 +:1056F0004707B08F3CD29E743387E77FC579C65F7A +:10570000C7C759F676612CE2A05F3C63A6BCF88F50 +:10571000DB1E7F14792AAB5B1FB7C09FBC58F159C1 +:10572000282EFF74BB05792AD39F6AA7F7B73D558A +:105730004EF6E651733DAD8F779BC45E089967B115 +:10574000BC7E7422AD5B6A3CE8F0C1EB849CAC8A01 +:1057500012F73A5C5F966F86FF6CF133F1749EF935 +:1057600086B9D22AE443D61C1844F72C955D27E865 +:10577000F1CC5B32E92167E6CA3EB10F0D7CCEFA6F +:10578000FAAF32885EE77E358EECB01B026384BDD3 +:105790009B1D243DF50C13FEC9336F9DB55C8FFE38 +:1057A000901FC34589364FE4712E9738FDF1EFCB3A +:1057B000DF7E8FE6B33C83D5835EAA2CDD22DFA09B +:1057C0008005717FA87B9A1C465F4B8BA2C3E87152 +:1057D0001E4B08CB43BD113FCA10529E5B3622AC14 +:1057E000FE4D73C745F0776EFF77E2EF29617A1BB4 +:1057F000DDD81056BE36AC7E2D9BD3FF1D76F2133E +:10580000224E50DB194FF1C12ADC47C4D76D9E47A9 +:10581000BCAFDB1DAFC70DFBCFB5C4C9C27F107ACB +:105820001E86E971C55AFC4B835FB49BFC51C15481 +:1058300099EE4DAC6B7DB7C5A4FBA3705EA9D6DB1A +:1058400063C1B9B55A170BE29EBF5AA59BF0EA7027 +:10585000AA99AB52FBE9A0AE33FC5C70DD01817FFD +:1058600023FE1DF99DEF272D8817D7954939B03BA9 +:10587000973CD36B811F6BAE278DEE5FBF7D73B8F6 +:10588000FFAAC6DF4B70DEB03B89FCDC75F03385C8 +:10589000ACC77BD789B8A11117C27970712EDAD144 +:1058A00085F9707E237BFACC5B8F4B061DB19CF390 +:1058B000F151BBE2A805FBE47E7CE7F31FE2FC5359 +:1058C0000BEC5BB542F8E722E906F85142F03304ED +:1058D0007414F2FD3626F0751BDFCE7D39FF399E3C +:1058E00034E4CE00DEDDE21CFC99B70E53FEC6198F +:1058F0008FA31EE7676F475C9E976FDF6D5103CEE6 +:10590000F3F11639BF48BCDDE611EB7F5B8ACC7C36 +:10591000BCFD9CAF84FFE376D64DF3BE9DD34180A2 +:10592000F3CB8DB89F6E3CD18BC546F69A44F704F5 +:10593000D4B9BBC5B93D27CB7800E7F3CBC2F98812 +:105940007F1779104E96097ABAE1AB24EAE73FA7B0 +:10595000971EF2E3D6C1DF187BFE3CEBE07F8C3D67 +:105960007F7E86DFDF90ABF0378A7B53560D781F42 +:1059700059A4BFF2AFD7E9791613D9C4B0FC950B7F +:105980009CC38ACC5F2996CB4C163EAFF2DF08FA57 +:10599000D3E66591FCF7FC46267F8BE7DE628A73CF +:1059A000797E6326B9B8ECEEACE4503FA347F7CF5D +:1059B000F5F9611A0725E17B397FAF85BC6F691E58 +:1059C00031BC27C4CE2AB7AB948755DE28D3BD7F20 +:1059D00087D62627E1BEB843F78A3C9943774D180E +:1059E0008EBC9743F716D3F3F046EB3CBA1FF11E7B +:1059F0001BDDAB58FB62B2B8274F7624CDE3E593AD +:105A0000BB06D1B9D5496E21FF6BEE7D2116A4B935 +:105A1000E4DEF7F254AE0AFC6FC79765C100800060 +:105A2000000000001F8B080000000000000BED7D4F +:105A30000B7854D5B5F03EE7CC3399242721810467 +:105A40004238794180214C420850220C498020D1B3 +:105A50003B84000984308180806043A435586C4EBB +:105A6000488008C14605054A65828AB6A57644ABDA +:105A700068D10E8848452B5AA9D82204E8F5594B1D +:105A8000C452623F6FFDD75AFB9CCC9C2140BDFFA6 +:105A9000E3DEEF7E7FFAD9CD3E7B9FFD58EFB5F672 +:105AA000DA673EB8D92B791218FB54E8D82B4B8C07 +:105AB00031B923DB3382B1A50DD9E97F1EC5D8CA20 +:105AC000867C2ABD4D99315E27639D8D07D8854C14 +:105AD000C6BEC1BF89F09C31B7DF01EF319F65467B +:105AE00054F0F96BE642078EBBDC04ED4E1C6F38B8 +:105AF0008DA3B7AF29151883F6BD8DF0AA95B127F0 +:105B00001B6D54FEAC51666C0863FB1A13A9FE545E +:105B1000A342A5BF318B9E7F773B0CD22738CE4561 +:105B2000C64A70FE41D21739F54E5CBF7F128B67B3 +:105B3000ACE6078C6D8A65EC564780EA7FB6337910 +:105B40005D0E63034DB0E23CC62C594C6E4A827E1A +:105B50000F3E3F09EB35B73126407BB2E98480FD2B +:105B6000935D8C61BB853D2B507F99C9CDD05E1371 +:105B700013E0FD17C178B18CFFE5339681651A8C6F +:105B8000CFFCF47E4431636A123E84F9A09E96C92C +:105B9000D76366728A00701E54247FFF143CEF5A4C +:105BA0006F77ED815EA5856C81C719DCD7DC5291DA +:105BB000B1D1C1F268A942E543A22B91A5C3BE5A57 +:105BC000865A18F4AF59BF3E05D7B31CC029E5E08B +:105BD0007C6A35CEB7DACE149CEF633B0B4C84FA6B +:105BE000C74FDB7DCDD087D99AA8FF5F12988CED87 +:105BF000DE540019D42F3F16E553A1FD2FE2A1BFBB +:105C00006F84F2B31C75B004F324CA9C3E6E170F68 +:105C1000CE1E0BAF2FDFD491C260FD6A21CBAA0349 +:105C2000B84F964AC51DF0FE9DBF35FBAC30D69DE2 +:105C300042DDEE4E98EFCE261353F3B05FDD1358DE +:105C400057D759E566281F8EFCE1EE4E78DE60B22C +:105C5000C95617AEB76E0CD2DB4D5D8CD566717030 +:105C60007E03FF4DECB6B15A5BB03E89C51AEA45DA +:105C7000B62443FFC972AAA17D6AE25043FB3425D2 +:105C8000C7509F9E35CED0FF16D72443FDDFC64EAA +:105C900033F49FE19E61A8CF2CA934F49FE5A9318C +:105CA000B4CFA9586668AFF4AE32D4E72D5D63E88F +:105CB0003FBFAEC9D07E456426C4F341E00F05E87E +:105CC000FF65E00F2C0FBF91606262904E0A8AC49C +:105CD0003AA47FBDAE97F77844E2AFC333DC33CB51 +:105CE00046E3A8275211EF03E05F9B7282F56453ED +:105CF0004F3D09F1501079F84B0558F00B4FE55224 +:105D000013D06FC198C3A3D2A13EFAED5D4B4DE312 +:105D1000A03EFEF0336950BFE9ED3FF2FAC8C35F21 +:105D200062FB73333A78FF9930D477900C1F7D3241 +:105D300000EB3A6C1BD5CF0B65C1445827D0AB8321 +:105D4000755ACA609E3B6C8E407A34DF572DF04600 +:105D500000F81ECBC3C0F7581E01BEAF3503DD03EC +:105D6000DF6379ACD145CF5F6F1C4BE51B8D6E2A8D +:105D70007FD75842E589460F95EF345650F96EA308 +:105D800097DEFB43E3522A4F35D6D1F33F363650E8 +:105D900079BA51A5E7085FAC3FE61188BFD801F397 +:105DA0005F3A75BCA42179CACC04706A0656457E58 +:105DB000610765560874CC0E333FC1ADD314FB2187 +:105DC000E00D456728FCC34B06E8FC501F173AB7A7 +:105DD00099DC7E0FE12559FE3032F87CE254EFAFBA +:105DE00090DF4EA6CECC1C05F5395F7BD7C740DBD4 +:105DF00049912DED0DCF6D1E2E1F1E9AE17E11DFF4 +:105E0000BBC976A612F95F4962321B8FF59749FE2E +:105E10000977C37F809F9B4C279AB1DEFC1553D630 +:105E200001BF1E8A3A4AFD9B413E5A613F42B79FDD +:105E3000E4DB845A10BB39D8CF4FF26F02C83F96CB +:105E4000C3D7192AEF6E92B9BC44D988F2B0A73FE4 +:105E5000C83FEC5FDC7DA288EA0E8B621570BE0F36 +:105E60008BC43C9A9FA1BC78EC2B2E4F591D93CD2F +:105E7000E370BD7CBC0900AB75B49E136EAA3BF504 +:105E8000F5F0FE13BCB09E589CBF8EEACD35FAFCEF +:105E9000D01FDB71CC5894DFFE55588F0075D204AB +:105EA000E3F733F1768B8BD7617D35D4DFC6C7D767 +:105EB000DBD9D81EF99F23C0FC96150E17CACF094F +:105EC000CE1349B49E4426AB21FD1D057CBC8C7FBE +:105ED0007849DE2380703F698287211FB77914C219 +:105EE000D3AE49275271BC5DDFB3D17803A4A77349 +:105EF000508E9ADC6E26C2F399B748BE4DF0FCDC9A +:105F000054EF15C4A7295EA4F19BDD51BE4D00AF2F +:105F100077843E1F44C2783344E6F53BAF4B0F5FB6 +:105F2000237DFD7F7AF8EF490F79267F073EB7AED4 +:105F3000B0B950EFDE883E1674B12931D0E56489DE +:105F4000B70DF15AD3AD1CC57AAD29074C9360FB50 +:105F5000196C4FB8BADDFBB72E33D6F5E7DF68FD15 +:105F600016B14953B0DD14FF4E24CA7F7D1CBD5FBE +:105F7000CA343E5FB05FAECD0376DE9D93FDBB506D +:105F8000AF97A09EC7FD3177744E5FD0CBF84F0519 +:105F9000FF8FB7DF0C7A7E13BE28151CA9473B2361 +:105FA000516212EA7D87F97CA70DBB2A2467277608 +:105FB0009BA8AEEBBF9B4142221CA17B9715E05EE4 +:105FC000C2A05D979F4027373B3FFA238BC67E21B7 +:105FD000EFC1F386D3F6578F84E8D5EA1951F11F44 +:105FE0000E877FA4B25494AFAFA0FD6AC6F554C526 +:105FF000A05E2A62DC3E0DB75FAF34DA5E3D6226FA +:106000003B76F18CD1413B56B72FF7D6C822E90336 +:10601000E61273A13ED9ADD463BD8F66D76681A663 +:10602000C37EC54902F1F354A69A50494C633E2AF7 +:10603000A7B300E97798FE2F77C03E6F41BD0C7083 +:10604000BA9575D1730F731DEC84FD1CB99C9F37F5 +:106050000AE0532C0636C01ED8C59ACE7C6C5F2948 +:106060007BEFC675FD3DEAED33684FB22EEF10C4ED +:10607000DFE162BEBEFA59A0827350FFA693DD1E17 +:106080002E275E01BD97017AEF55D0BF19B84FD0CA +:10609000BF58FF2DE8DF8C10FB7E8A223053083C6E +:1060A0006FCE6A6238DE74B98899FA5C5BDF4DCFD7 +:1060B0007E2119E17B3C764831E2E978EC986296E2 +:1060C0008D653F9197560B96D77A5FE787E9CE8D1E +:1060D00027A46C9C6F0ACD77D8F6FBE7D07EBC84F2 +:1060E000E08432A3E504D5579B399DAD7CFE9642F2 +:1060F00005F77F52F24900F74F70E1403F131AC68F +:10610000D3FB131BC651F951235371DF2B6C7C1F3A +:106110009FAB87B22580E3F762BC7B11AE1FED9287 +:106120005C0118E7F3FD76179ADE1FFB9E89C6FD1A +:10613000E8F4B34252DA5C48F7C725D7E30AD151F5 +:106140006022CA09BF75CFE3C2D5F40474F4D48CBD +:10615000107F8839BCFD6700BED86333697D3ADDA6 +:10616000ACB04D31C015B048CFFF5AE2263E94592D +:1061700080E4D71DF04FB43FEEB0BDB18CE40BD43A +:10618000ADE3AEB65FF223A03FCA2B1BF83BE38220 +:10619000701D600D2C237B3092FB35CC3B6A18F2CE +:1061A000F58FC7BA5FC1FD4F969CFB74385B51BE3B +:1061B0000586C760FF926312F3C1525F8BC8DE870A +:1061C000FCDD097017C0DE9B3ABCCE910674F9EF76 +:1061D000D3BDBFC37D32E96B09E77D2353607DA04A +:1061E000FFA563A31C083F9DEFAE85F770FEFD83FE +:1061F000CEBFD92C1BF977B2E47005705DEF4A2E43 +:106200003087C19F881649DF68FEC70436F8E1026F +:10621000682F3A66663E68BF840361FF4481FC1BB9 +:106220009DAF27324F4B01F2A7DBD6150079644DA5 +:10623000149912227FEC4A045342D611991567A88B +:1062400047B9FA1BFAC78C4D33B4C7BA8719DAFBC2 +:1062500094E41AEA099EEF18FAF7AB2834D493BCF9 +:10626000371BFA0F585A66A80FAC9B6BE83FA86122 +:10627000A1A13D555D6E687F95796202A9484EEEF9 +:1062800077B2F2519EF2BFF4D67A433FE870C40B66 +:106290007019008217F929B3FD6EC3B84C31931CF5 +:1062A00056E17F485F9313CD41B98CEB64053EA462 +:1062B0009BC466AB6C051D58244F3A82E2BF48363A +:1062C0001BE4FB00C7C7A7512E0C0893EBE1F8EFC6 +:1062D0005BF62DF1EF1DD63BFE57309F9A1AC43F57 +:1062E000D3F03F05F0BF09F03F64BB11FF437D468B +:1062F000FC0F7FD288FF117E23FE471E30E23F272E +:1063000060C4FFA86346FC8F3E61C4FF985385615B +:1063100078E822FE795516D8CE5EF036AED3481F07 +:106320004C6A23BCE9FA75FCC765BDE2AD02FEF715 +:10633000FF026FB720DE228378BBCCDA46E7C0BC11 +:10634000DFBFD4956291AEE67B1D2F8362C15F45AE +:10635000F911E6AFEA72EB5A7EEB15FB3F3B501E9C +:1063600029608FB014C6EE8A807A5E503EA985758A +:106370001477502D36B9D945744374D1703ACA8711 +:1063800076E815B1330AF5F219B15DC0326E8C773B +:1063900009FACD0B9C7502FADB09B76F10D0BEBDB0 +:1063A00038B0EBCC0F709C355124F7310683E354A1 +:1063B00037F7233DAFEFA77A00237FF7BB659A5FDE +:1063C000E9EA1C8DF2BEBE8CDBE7512ED982264253 +:1063D0008D93B97D388689A55443FBFDB1DEBBCAD8 +:1063E00048FE166CDF128FF41BCDAC792174BCD63D +:1063F00044749C214FF0A27EBA5388766D8AC77888 +:106400000A6F67AD561FEA1FC9E29A83FE04FB9D1F +:1064100059783C35B82E29DAD58FFA853DBFD3EEB1 +:10642000EA17DB8B9DA097CB5A25501150B6F3F29B +:106430005AFDC63F61ADF3A19C37F917ED84F9CF42 +:106440000B4A1ACA914F1E7F7ED442787EDECC2A38 +:106450007AF3639B63273D80786FC07DE2BA978AA9 +:106460003E5CDF27B657B6FF19F4E132FBF1ED18B9 +:106470003F1C2FBD43FE4017B4ED41FC63BC0EF63C +:10648000B33343A6F8DAF84101FB106CDF26525C07 +:106490008D6970D9B94221FF69BC24A858EFBAC7E9 +:1064A000E2DB2320DF33837DF38999F757BF3798E9 +:1064B000E038D46763A6503ED2D697BC54EC407CFB +:1064C0000F7F5236B48FF0271AC6DB69E2F1C9910B +:1064D000071443BF9D3E51CD1C897222CBD07FD47F +:1064E0003197F17D8C6F3A515E8C35BCDF6966E483 +:1064F00007A9CB44B237C69C721BD7A9743D3D187F +:10650000DAAB77F721393EAEB3C430EEEFCBD288A9 +:106510000E075D7C91FCA5CE1F30414C42B9E131A4 +:10652000F41B603A41F66412FA37E4FF1C69227FDB +:10653000A98EDB0D0318F7CF4C3DF1D24013D6EDF9 +:1065400036DE1FDA69FCD8ACB078E8506EBF6CD18B +:10655000E29A66935B44BBF6114B6725F25FB595F3 +:10656000515C0BF047FB7CE4EEBE1DA1FCF57E19EF +:106570008F6F6D2965543E6EE3F15358C8A9D7B0AB +:106580003FD25D7CB0FF398D0F736F769F2DA3F7DF +:1065900064AA3F62E97A1FED82EA917CBE2A515CCF +:1065A0003003C601DFAB627F083FFCA58CDB67FBD5 +:1065B000CBF938FABAAB63F8FAD80F2C44AFCCA4B5 +:1065C00092FFF848048B457A9CDFE6DF3204BA5626 +:1065D00059DACD1424623E33CAABD2C24E13FAC389 +:1065E000FD4F7CF18403ECB2479081316EC67EB4DE +:1065F0000C3C0356CABA086E8E3A80DB38F20FDCC8 +:10660000BDF1CD947289D651BA8EEF5F5965F6EC23 +:10661000817EA5222B117283FD2ACBB9DCF165881E +:1066200025286F364619E3CDCB6772788E9EC9F761 +:1066300039594AB6A05FBE5800FF0BF6B1784D3706 +:10664000ED6B7194454178813E8ACEC9276CD29F0B +:10665000D7D1D782F2E6A89B7591BDED766D4779CB +:10666000BC50B5CA1DF05E8D6AD423B7A13D2290FF +:106670001D6641F82D02963C04F058D41AD6CFF18D +:1066800021E99BC561FAE636D6F685148DE5F5FD60 +:10669000BFB93335FB61241BC9ED878344CF9740D5 +:1066A000D0E0BE2E21BDA25C057A5663297E4F70D4 +:1066B0008FA8E570671A3D9B6D9C5E019584EF8CF9 +:1066C000060BC97B3CBF3099F9F90596787E61CA03 +:1066D000E4E71758C7F30B2CF1FC029FEF6F7451DE +:1066E000FDD9C6B1547FAED14DF5038D2554BED82A +:1066F000E8A1E73A7D3253E750B4CB11AF88B7C970 +:10670000D21B19B4DE7859E4EB5762621D41FC8656 +:10671000D3C7FFADF50D30F1B84B8AC6E7E1E72AE4 +:106720007A7B12C2755CF05CC421F7C8116AB77835 +:10673000418EFC27CE517AE4060379911E8413938F +:106740001CEB36A21DE403FF2F3504DF2E0DDFBE48 +:1067500067787D2DA37850B8FDA1D795ED402C2109 +:106760007A0EF826220BF5428BC995A95C0D679D20 +:106770006F60FDEBD693DFC4E378E047BD85EBF9AE +:106780000BF84D5678EF2FEA97E7A8FEACDD85C4ED +:10679000F479CE896CB4CB574A1D2932ECC38BF304 +:1067A00082BECBF0323506C779D24EE35C5A0B80FD +:1067B000C6753F19E96350EF549FE9DB9B1FE5ED78 +:1067C000940CE763E1E507377BD7CD4CC0F33CF38E +:1067D0006C84C3670E514638DDEB38DCD7EDF856D4 +:1067E000E77BAD3343FCD9525317C1356AB522223A +:1067F000BEC14E5FB71ED7ABA6EF41FB4A3FEF03CA +:10680000B8101E2F15083E8C6794310FD95D2745AF +:10681000D9CCE3218178948FDFF65C7066770EE146 +:10682000ABBC7B3CEDDFDB3A8EEA8307A96204CA8E +:10683000E77982EB7128E63CC6D647C0AB9D4D7325 +:106840004623FCF66B781BACE99B70783934BEDAD2 +:106850002B0A0B3CD0BE17E46C19EC77F83EB768F6 +:1068600087712B9E95732405D75D978BF09914D66D +:106870001F565288FB7D6281A2C58B18EDFFD6BCE6 +:10688000D43D88D7A1E57CFEFE1EA6C95D07F15167 +:106890007D9340FE4C3DCA5AAC6F11C8EED3EB5FFE +:1068A000B66BF5C9BC7EE77A5E87BF6AF48F163295 +:1068B000B00BF3381C319E8370C412E188718F7D58 +:1068C0005A9C07E18825C2119F23FF631DF91FEB26 +:1068D000C8FF5847FEC712F91F9FD7324F4A8EC4D0 +:1068E000CFED8A43E4359EDB1587C85F3CB70BAD1F +:1068F000E3B95D687F3CB70B6DC773BBD0763CB71F +:106900000BADE3B95D687F3CB70BADB3B1D3827516 +:106910003CBF71CF30D46782FF531CA22FF0DC2E16 +:10692000747C3CB7338CE75D65787F1E58A8A1EF77 +:10693000A7D73519FA2F68100CE77AA0D648DF2FB1 +:10694000DADE87E8F1F5A99EAE99E857CCE97AA995 +:1069500093CB278ADFD4AF8C70717CB79770FC8B98 +:106960000CF1B9DBAC90BDBEFB4D89717CBBFAC9A3 +:10697000BDD0299E63159BF9791A96789E86259E2F +:10698000A76189E769C599FC3C0D4B3C4FC3E7788B +:106990009E86259EA76189E76958E2791A96789EB6 +:1069A00086259EA7E17B789E86259EA7E1733C4FB6 +:1069B000C312CFD3F0F91958079EAB4DC57340D819 +:1069C000E78876F5558CC1DDBAEBCC112C07C7D41E +:1069D000EC178095FB97DB97E379E1E0C89ADC58E8 +:1069E00090CDE6A6E8E5C550F776F3F3FD6CD64505 +:1069F000F6A057E6F4ED0D30B2D7477C9544EDFD97 +:106A00003D9A7ED4F869C41199E4647FCD4FD4DFF8 +:106A1000CFC1A3B9F460FF60BDF77EE1F3EBFDBC2D +:106A200036E33A06617011E61DF49AE26B4E253E9C +:106A300070A3DF53D075A228069E7BD549A3512EA3 +:106A4000945A34BB94D57D07FDBFE1AAE0DE1382E2 +:106A5000BF519A3D397C1FB324A29CD85D9D47EF5E +:106A600045F4BCF78F4FE079CDD854D726785EB087 +:106A70008FB93B701E4DCE1474F90FA37CAB69998E +:106A800041EFE9E3D6EC4AB1288EE0FA6B58DDDD40 +:106A900089E8F7E5090CE5E060944B50EF57A5084D +:106AA000A85FEFC0A9A0DC9855E7C17D9760F03FD3 +:106AB00001E3866ED2C7771C98C1505EDE94173B07 +:106AC000391EC739C85C99C87F796F1BF64BE8C877 +:106AD000C7F119194B5E759588FBBA1536D207F0C8 +:106AE0007C0BD4116E5E2FAB4B05A0CFAEA821F965 +:106AF0009855C504CC5F185AD521C6C37BC3BD8742 +:106B0000449C77447B2795FA3E5C05B112D6679882 +:106B100002E5B8FE192E33F105E84BD2FB975ACCAB +:106B2000E4E7615E02C9C9633C2E7469EDD87FABAE +:106B3000C8A3765A57FD3DDDE736229FFDCAA887D8 +:106B400057AC3A992FA6A11E16885F6B401F2B40A9 +:106B50000F9FA6FAF6C6025C3E4D7B3A7AAC407AAD +:106B6000747939ACE75C0BD7C335EB5F8DC6B8F8E9 +:106B7000972DBFB260BC403F0FA9D5E0C09CEEA3EB +:106B8000B8BE9A241E5763D2410BCAE9CB5E479D1B +:106B900004F5F3C037EE21240FA8DF97072C3C3F04 +:106BA000A29DDBC37ADCA6E6CD3E7D316E106E275A +:106BB0002F6B31D758C09F5C166627DF7E03FB78AA +:106BC0005DB916A7713117DAC7E7C3CE4716DEF8ED +:106BD0007CE4DEF2103B4061815904F7BA4C11F1BC +:106BE00050F3A6A6EFFDCA1ED4F7BA1D50D55444E3 +:106BF000FA93FD8AD3515513EF57F582DB2740975F +:106C0000B734FD5FD63D80F0F07B4DDFCFEA1E4EFE +:106C1000FC59DA69A7E7B3BB93A89CD33D949E9730 +:106C200039389F76BEC47CEBD06E52AD3C6E728418 +:106C300091BD114E9F334C3E315E40BA6A5A970067 +:106C4000F55BD07E80F12AD09EE883F47EA89CFC80 +:106C50003BA0B34CE16A7A9F53953A19DB879608BB +:106C60000CEDA8EBD1BB101B224F986AEE8BE3EE24 +:106C70006364970C36B12366F0D7AA2335BFD7C11A +:106C8000E3453DF124580BF70F972C773BC9EF8470 +:106C9000C1683B6E06F88D72F2F6DF952F59DE92D1 +:106CA000817628F763521AB47348AD6EA9E57E7AEF +:106CB00086E6D7F4B5717B3D4DF3E365A08D8D6419 +:106CC000BFBB897FC0AC57F07D0BF3107E2240A183 +:106CD000DD0FEDC93685F6950CFBC2F681267EEEFA +:106CE0006429D6E76381BEB9A17E36F7EBD1BF46F2 +:106CF000BB68FE6A81C65FD49AD9C1ED7467BF7361 +:106D0000F0FC9ED98571B3A07FFDBD99FDD875CEED +:106D10000916019E902FAB633ABF27009C3F2E6758 +:106D2000EE62300D2B990E271660B097B95AFDA36D +:106D3000F2F59FB63A09BE5A7BFDCF303F65E3DAE4 +:106D40007A9277169BC78DEE79A4D34DE75B2531F8 +:106D50005C7F5DCB7F778D710FC0752E7272B94FDE +:106D60007880FD9CBFF7A39F87C629F47817808D94 +:106D7000ECFE87CA1273362941BDB5737932C53529 +:106D8000CCB3C49E7C386508B7D7B0447B0DF37E86 +:106D9000D05EC33ADA6B58A2BD86CFD15EC33ADA71 +:106DA0006B58477B0DEB68AF6189F61A3EBF58EC14 +:106DB000F9A69CF4653B9DDFB2ACAE1D8F637CA849 +:106DC000D1C2703DBA3FB57B7904ED63F7DD16F2B1 +:106DD0003374BFAACA72E2555B2AC291F7FB53C350 +:106DE00003669473804FCEB7CB05D283F7CCF638C9 +:106DF000102E914E9705E587D7E9131480677F9988 +:106E0000FB11A5695D3922C5DF1CA3F784C0699019 +:106E1000C48EB0381827AD9DC6EBBA5FF085B6F7C3 +:106E2000C47D66717D797A165FC7DC7681E06F6715 +:106E3000BEF5C84F0B5B73F2713FF7CCF6A6107E20 +:106E40000EA61E1DA0A0FE8AB5205EABFBF1B82CDD +:106E5000CC90521622CF72B471CFCDE678BF88782D +:106E6000A37E9C6F2A1B6461534E309E9594250B24 +:106E7000E8E7E4CCE27AD8C2DEE5F49FC8FDD96445 +:106E80002D6F41D4E2623A7C37652DA4FD99814192 +:106E9000A4D810BEB0C847292E19655170DF358EB1 +:106EA000C153FA61DCA45D8813E0D55A07237FAA99 +:106EB000766BFA1ECCD358A8AD17F8C692847AEC3C +:106EC0005E41C6F390D23865CE381CE7B766B60788 +:106ED000DE5BB8FA5026F119E3F98DE1F0ACDD3E46 +:106EE0008EF8A8D607E575E2BAA7EFFF75C238A4F9 +:106EF000DB80DB82F4502BBB2D7121F1A3451A1EE0 +:106F0000C2EB65B3242EEFD93133AEA32A4311303F +:106F10006EB850C3DFFCD5A9168C0B57C1C8622EC2 +:106F2000D207E370B85F90F7A4F2797243C65D8828 +:106F3000E386CC0BFDC94EAA9A1545F32C6C8FB590 +:106F400008A8276599D607FB37537C2983EFBF3400 +:106F5000CE6571E0F8CB607C00E15C3940F27BAE3D +:106F600053614DE49F2953507ED7B6096C13D4BCAE +:106F70006D7C3E6F6BAC6504AE33429E42F4B95EED +:106F800088C2F595C6B92D0EA2D75431945EC3E1DF +:106F900053A3ADBB16D6B7D8F0FC7E33F247A5E6B7 +:106FA000672F6C9991F230ACAF561D1187F3D49ACC +:106FB000F8FEB7CCE27AD3ABC1B52AAE7DF21AE4C3 +:106FC000BB25B1B1CD4A70BC1F6A7264CB2C6EBFB9 +:106FD000E9F0A994DBCDB98E10F86EE3FB5F2C07C6 +:106FE00032719EC536BEFF9EF56FE5F3D46EADB12E +:106FF00038A15C62F2A43C0CFD96A86F2663BEC764 +:10700000160DDEB08EF549B40E41C67530D99B829F +:10701000F4F1E1B63929B4AFAD0F9B19EDEB6D3A40 +:10702000AF47B8A2DED5E9A37A14E7477DDE8E59D3 +:107030000E1AB743E32B5DAF4434F038506DDBDB01 +:10704000545F047C26C486C4A36DC67874924B8FAB +:10705000DF7989DF2A33F87991CE878F983B9721A2 +:10706000DF2D6AE376AD2E1740AFD6EDEF45EFC4C6 +:1070700069709DABE1A94AE4F24A6F3FA6F163153E +:10708000C23BE47D1C0FC77D4E6F2F0C64AE7206B1 +:10709000FBEBF356C5F1F7105F68C33CA7ED1FFB90 +:1070A000D7537F51E3771E57A9DF22D1B955FD96FB +:1070B0004749EED53F2D901DFB59FDF3BF9B0DE5D4 +:1070C000A766DF1D49E9C1752C067B06F97C89A6F8 +:1070D000376B03BDF3FB805BBCAFCE0A8923D63E82 +:1070E000F88BC128373F7BEA38C991D3515C6ECD0C +:1070F00065FE93DF490DAE7F616B476B5A3CEACB6F +:10710000D85CB48BF47383942C4544BCC569F4BB40 +:10711000A885E38F01FE3263D16FA9616E944F8918 +:107120002E17DA010334BB24C9A6C70D39FE1C197A +:107130001CFFD7C25F658F1E689F1CAA077AE250AA +:107140006D6682D7A5B6CC0D89648F7278DD2EF975 +:10715000B3EF82793F5BF1F81D4969A4DF5350BF5B +:107160002FD6E2494B347BF03680576F713580D78C +:1071700067A1F0BA6D378757559AFFAF2FA25C58B9 +:1071800065A573A8CFF68DA238F73C81D5A19F33B2 +:10719000D77FBF7900CA9DDAD45854B35766A51279 +:1071A0007C7AE4675D8E8C71EF2BBA9E0BA33BBD9E +:1071B0005EC9DCFD902F999ACC509F07DF8F8D938D +:1071C000B3C10E9B2D1AE480DE7E6155CD7D987F84 +:1071D00073C1CEE96D058C87E71D55626E0AE6BB6B +:1071E000766DB1E6A27C60F101C27BF5204524FDFD +:1071F00017E955701F03229538E4B7FEB3391D67B0 +:107200006428C3F079B408762EE6B9016EC6E6228A +:107210001D004E72AFAD577E1CE11F5A771D3B2FEC +:107220006345E717B84E443F8E836514ECBF70B6D4 +:10723000A2C75B59DFDCA0BD192E2FAED6CB3CAE6A +:107240002CD6723B551F279CCE366595115DE9F60D +:107250002AECDBC7F365F8BE61DD9427F9E3385EFD +:107260001FA3C1E142AABB90EC9B7136790F98BE77 +:107270007B44A59ECE5BC11F40BB9A65B90F5BD016 +:10728000EEFA8153C6BC0396E1263BBA7A804CF9EC +:10729000F8179AB8DD7DA192CBB37F759F1752394D +:1072A000BF75253119CF456F24172B6B6B0C7608F2 +:1072B000CBEA1C8D79D93DFCD22E71BFB97D14DD8E +:1072C00017B8843E24AE6F959DF2B72EA4EAF1095B +:1072D0007734EAAB33EA88583C6FFBB671DBEAD906 +:1072E0009A9C8BE0F20FAC765AD7998674B28BF5E4 +:1072F000E7A5719C4EABE23AA30484EF1A89F4AD82 +:107300004EB767FCE7A250CF5C98D419354E6F0F8B +:10731000D18B67E4CE28D4C7ABCD7C7C1665A1F3B6 +:10732000DDF9AB67586AE0F9FC86DF9B052897CD4D +:10733000E6726A50BADFDD2F9EEC3119C7698E7292 +:1073400025E23A9A635D89A17A3DD2319BE22C17FE +:10735000520319189FEFCAB1BBD02E38E3983D05F0 +:10736000F5E299EDB12E64A3D582EB4C03D2C17A3C +:107370002BF97B2BFC8732C82F4C6422CA830BA9C4 +:10738000FEBFFF11D7BD3ED285F3FDF4166FC36C6F +:107390003C9F95783FC0AB48E7DD5FC3BCE0BF0EC4 +:1073A000C341A5A03C6426AEC71F31F3F3919E7A7A +:1073B0001CAF0FB2B8450BD98512D9D5FA39457D26 +:1073C00087A4C54BF839C5E2DFF2738AC51DE9EF22 +:1073D000F13A25CB60FE3BC5878276233F1F598C4F +:1073E000F191103DB2616B51DF4EB473EE9FFC9092 +:1073F0000AF49422300FCAA914B3FB56A4A38F3BFE +:1074000086C43685D8497FF259E93CF2E38EE7DF3E +:10741000CC87F9FE7A202187DC2C55243F646372E7 +:107420003CD1C10E4D8EE97129D3EA1A9529C1B814 +:10743000546DC7C61406F3D5AE6C1E8CE5C71DF699 +:107440000AD407C5F28CE258B45B76C5529CFE4F55 +:107450002B789C61F9DB997B50DFFC42E3DB15FF65 +:107460007CE5113C7F599CAADD87F14752BED88A42 +:10747000C60329124CFD5E8CF7C9D909FC1E0CDA33 +:10748000C1CB7776A430EAAFF41A8FD5CB0F1BF9B6 +:10749000FD8D953F3C45E37C2EBE716B25BCBF62E4 +:1074A000E533D138CEEDDB7E9F2F8B144F7A16C794 +:1074B000EFB987B59DDFC3FA34EC3C66F9B5CF630D +:1074C0005E9C1D92A71ABE8E5F6B71C6D238CFEC40 +:1074D0004A4E07AE50FE082F971E100CE75FF37D53 +:1074E0003174DFC81B601619F125310BF2A1DA2CBB +:1074F0008878EEADDB2D5E9991DDFBB6C6471FC7E0 +:10750000B4A720DF2CDBFB700AF2C92751BCEE7D4B +:10751000ECB5C577C3FBDEAD22669233AF89595C0B +:10752000F0DE2295DBC9CC01843B2E844E6647D227 +:1075300078CBC2EE7F31CCF2827D7D62E279127827 +:107540000F0CEDAB3F99028B917EFE546777A984B7 +:1075500067CD6F6D97A6507EC76A81E2397F6A7FDB +:10756000262AC341728FE470FD0B3C5E581DA33C7C +:107570003C0FE5C47133C33C9F48E709B704F59558 +:10758000CFA6127DEAF37B9F3D44FCBF5CB3AB56B4 +:10759000980216A487E5CF3E6D41FB77C5BEFB7907 +:1075A0005ECEB3822F13E371FB0E5950EFDF7120D3 +:1075B000273F749C3B9EE5FBB6B34ECBCC10BCD6AC +:1075C00064C56D180032FBEB3FDCBF7C1BF4AF41A0 +:1075D000BCD0FD9AFB871D42A560EA227B3B1C7F45 +:1075E000E9B318C16B53D63BE4F7AE6CE1E3AFCC23 +:1075F0007A67431AED23C72C84E0FF3F669BA97F7F +:10760000FA2C1EAF59F92CF7977BF2A6D69958732E +:107610001EDDDFA2FB5C0DAA55C6BCD09DCBBE4FC4 +:10762000F7BD12AC3619F3CEEE8FF546CDA1FC2D89 +:107630007EAF0BCA915866C8132A30DE79AD7CA59F +:1076400066B36B0EEA4DF54DB3F078887C00B9DB7C +:107650008FF25CC29EFF37C857CA9A03700AAC7C8F +:107660007D38D19304760F988AEE3B0A4E1D8571C2 +:1076700002CD0E4C4665BBEA0E7FF614B4BB9B628E +:107680001484CF4F18CF2F9BA8E595C58DF18EC2DE +:107690007112F1BC9B045F40407C5E7CE9A3510801 +:1076A0007FCC3743FE300B3FBE1DCF47C6CF91097D +:1076B0004FCCD9390AE19A7058D39BA613648F989E +:1076C00013953894F701ED9C50FD8AE7511D140283 +:1076D0008FD2F8B2F43DCC1B3B2166E7221EEAE7CD +:1076E00070B9F0CC544F11E14D913271DC8BE6D37F +:1076F000A90477603B6900D811FDC7523EC7A46654 +:10770000405C01D84F420233417D3313293F64A0CE +:10771000D6FE67A003BC2B5160915921CC5F7098B5 +:10772000F9290FDDB95069A7FEA0FE31FEDD200763 +:10773000308F8ED5033DB8F09EC317AFE079F78048 +:10774000BB0417EA9AEA4B1F2E43F89CF96A9F1D67 +:10775000E3FD378FF156E2FAFA4BEE73786771B3B7 +:107760001C48FF11F4DFDC10E96A524845315B5FC9 +:10777000B097F83FD9C1355F452760BE5ED760D36B +:107780002FA1DF45B7CD8571C233770F3F321ED7AA +:1077900025B22E8CBB33DB64B7E1BE17A0CA961F9F +:1077A0001CC7DE3EA4E77DB2D79CCA91F1F1DA7D19 +:1077B00030D7D5EF17B2AE68BC3779B1AB3B1AE51D +:1077C00042E1C1574E09602F15DA1C01CC576136D2 +:1077D000F35F7AE2F138DF8981B1989F42B200E02D +:1077E000DCB799E373428CD12F6E9EC3F55FF31C17 +:1077F0002E574D0ACFAFC1FC6CC4A3C2A08EEBD4F0 +:10780000EF5B30E52D2FD4FF08FA1CE318970EA686 +:10781000C7B0EBF0CBEFD16E037B2C779ABB19E1AD +:107820007CD15C40E3A9806F6902DE074A217C0BB2 +:10783000A2D885F63DE08FF0ABDF839BF835C7E734 +:10784000FCBA6817C215F037E2478CE25B3F794B10 +:1078500020FCB5E3B83BBBC18A1191AFA7A47A9DC8 +:10786000FF73F076C51EBD17E115CC3F857AFCB7D6 +:10787000C93FF5440C4925F9F92B845312EB7A558D +:107880004C45B9504772E17FA0FC3C312734DFD32F +:1078900021D23EFED57CCF66CCF7CCC17C4FB01454 +:1078A000B17D4D14D9B5C0184D745F73ADE242BAC5 +:1078B0001FAF9DD376AD89A4F69EFCCE35E93E7E02 +:1078C0004F83513E68B3CAF3773B452E8751CC11A5 +:1078D000DCEA18CFEB632EDB30A8FF4460FB31AF4E +:1078E000A2671FDAFD73E05B378FDF8A7BD0FE670C +:1078F00026F0A7408E7B63EA6F457FA97B4E2CC99B +:10790000597BBBF5EF4F211DAA231584D3E6755192 +:107910004C8809D22F1DE9803CEBEF8C3827008979 +:10792000F47788012BD2DFD2627728FDE555301A33 +:10793000EFCE0FA6EEB041FDD7BABC7F49A27D6D58 +:107940009DE14EC273E1AD33FA8A68C73EF7CF4777 +:10795000772C4138CC7290DD2725FE7E7B2DC079B7 +:107960006B0EDFE7D6CAC164EF9E11011EB8EFB9F6 +:10797000117C9C2891C6DDBA2C82CE03B6A6F27982 +:10798000B666A6517FC0DFE0ED883F8F8DF2A1AFD4 +:10799000C61F3F1FE85AE6D0F0C3DFBFD83690E0DD +:1079A0000DF8D3DA451FC20DF0C5E1F8924470041A +:1079B0007C55ECE7E727D1A1E76117357BEF22E69D +:1079C000D1C6843CD7F001765174687CFF5ACF1B36 +:1079D000F3BDE91509C1F6ADB1EE24B45FEDEDCF0D +:1079E000679DE2F242417C6F6BCA69C57C5A354A99 +:1079F000941F6757E36BDBACBD87F6407B64918DCA +:107A0000E41F533B0EE13DA448C945F2E621C1FB0A +:107A1000D3C7113F4DDCFF0BC767A7967FCE9239C6 +:107A2000DDE8EBD3FDBB41EAB91D8CE45CE750D443 +:107A3000CFFAFDFB33E6D3C41F6A3AD7D3573439A4 +:107A4000AD08AC0B93E707322EA7ED01D0C3E3508E +:107A50002EA5A87741BD7355B44BE8FFAFC825CE1E +:107A60000FC9F00ADE3B05F9340DE12589AE442B40 +:107A7000D92B3CFF3E43CEAEBC9E7C7AE01AF2E9A5 +:107A800081FFBEF2A916F7F98F31DE6515746EE637 +:107A9000A6FB04FD9BB9BED5EB3B2D5CDFEAEF9D59 +:107AA00015F87859ACCB8CFED902D01F7D80FFD75A +:107AB00055F038075B1BA647343AAAD6E8C8DE7EE5 +:107AC000E503940F0BC05EC479AAD75ACFA11EAAB2 +:107AD0005E6BE672A061B23BEC7DD29FFAFBCC7389 +:107AE000EED5BBF0FD495CEF2D58F68F04D467D777 +:107AF0007CBF333916CFFFF5FBEB8E184F0BEEFB37 +:107B00009CD015E582876FFC8744E76019A6B847CB +:107B100070BFF54D1922AEEB8D9C7E54AFB664C597 +:107B200021BDB75570BBA45A766F26787DFD4A32C9 +:107B3000DAB13BF33DF7E178F7665CA2F3C005AC40 +:107B40007320EAD933959F0EC4752D68788DF4ECB7 +:107B5000025DCFDE183E09744F75D9A51E3809FFA6 +:107B600005702A1A0C94EF24794271A7CC8A971DCC +:107B7000B8AEB3CE9931582F8A0E6B67071CA17E21 +:107B8000DAB946170B58812E22B3C9CFAA31C9E4FE +:107B900037D674E7B300D0F3C2EE3C16E8131CEFFF +:107BA0005AF47D0EEC361C27FCB9EE17EBF59A8DD6 +:107BB0002BF3709EE0BABD361CD7247BD6FD3BE08C +:107BC00031295EA47CD924B7B72415E9FB5D89F27D +:107BD00084AE35EF8F1A659AB7B5516101B01BDFDE +:107BE000D2E87B5DE43F497ECBE0234842701D3103 +:107BF000DD7D695F72773C9549C53C4EB12EF23E02 +:107C0000A12684CF3FACE0762E78182CA0C39FE449 +:107C10004C040B6485D6E30CF54490C4D81FA7FC34 +:107C200086E64D0BEB3F2C6CBCDCB0BA4FCB27FB90 +:107C30004ED87B85867A5249CFBA290FDCAEC882EE +:107C40002484C27D9D360E1FCFD63D98F068EFCEBE +:107C5000A012FFDAFAE2FD5F5A227B256A2AE9DBED +:107C6000E302ABEB0365AC96EF667209247FF1AFDC +:107C70003D1FEF3933BA376E72F85AB0BD05FA3F7F +:107C80002007E3728CF94D35F0FC96123BC59583C5 +:107C9000F788795E6D1926B04059CE3C54CE667592 +:107CA000545E6CEACC47A25E297B4D950978FFD4DF +:107CB000BB3B0E50F0FD08ED5E71581CE66A3A536E +:107CC0000DE7167A49B84FE2EB57FB06D78F7F8E48 +:107CD0007C6DFF8CE6FFBE769F39BE72B461FE6A92 +:107CE000EE0F9B148D0FD56FD20D758E1F3C7C1D32 +:107CF000D7CBF3ABEA5F0F31D6F9BA331B260610A8 +:107D00009EAD198CF2EB24878B617C6413D07F6865 +:107D10003EDD55FA01F96E48C87E7BE272EDFC7BD0 +:107D20000D99716968DF649656DB509F33D6A4D1F4 +:107D30008591AEEF8D2FBB2E7F5F358FC9C5304E3D +:107D400066728841BA84FF32CBAB637A8B03DD68FD +:107D50001C7DDD578D77A42A06F5D7F44AB157FC70 +:107D6000DE883F0F659589784EBC3143A478DA6090 +:107D7000D6D09A067059AF88E48FB666ACB3A13FEF +:107D8000DAAA945DF73EB0BEEEFB1A6D546E46B9AA +:107D900013BA8FD86279521ECD43F74137223C6126 +:107DA000DC167935976F03452DDFE719E721B049D8 +:107DB000EE55DA6DA1F1DAF07D5C36796242DBEFE7 +:107DC0004D163523EF972BF0FD56A590F8F3325E54 +:107DD000D08CE5FB6C85FA26909FD65EF255C2E109 +:107DE0001A333622381F92AF33CE5067265F492AA6 +:107DF000D2CF4989F272AECD77BE5EE9291C0F421F +:107E0000B49DECEB5FEE609A3CF11EBE1DEA43C7E9 +:107E10005AC96E992CADA578F72FDF95B4769EB729 +:107E2000E8D2F8F39719AE5ADCEFD0A7F9BD9F5FFF +:107E3000EE63D2ED68D7254A2C2611F1CAEFE16432 +:107E400069FCAEAF6FE43E76CE0AFA7864C062D8C1 +:107E5000DF64D96AA80F6521ED4427C6FAB7BD2FA4 +:107E6000BEAB52BBEF33868DC1FDEF0DCB671CACB3 +:107E7000E733FAF268BD453F0C8898CF1F7EFF4379 +:107E8000E7D7BD8D3601DF7706D688CA08BC2F58E4 +:107E900027E23D8921ACEE30E52F6E67FC1EA83647 +:107EA0009EE2F032F413F6ED4ADB83E72A4FF80F37 +:107EB00047880E8C8FBC15311C9E3FF16E7AEE26E2 +:107EC00016220F7CF106F9FA534D9FEFF373BEF8BB +:107ED000E92E7E5FEBA7A6F688D073A7703AD0EBA9 +:107EE000C31E130DF06D631C2F6B2B3DBF41F9CAF0 +:107EF00054BF8872A2070EAE3203DE8E54F278E0D1 +:107F0000DBAB989E6F5088FE758B83F3718BA3EC6F +:107F1000BA71249D5F376AFCFA7285F72DD42B263F +:107F2000D92DE07E4C25AE4398DFA9DF67A64F1F11 +:107F300001FC8A2C8CF8AA3981F930BF6952F40B04 +:107F400001BCCFDC027486F1429D8E9B33353A969C +:107F5000AAA8FD32D031DA9F66B582615CB3D9EB55 +:107F6000A8A3F89793E7BDE2E102DA6F2D0ED09651 +:107F7000D7A1237B58DE6C1F8FF17B24E61BDC77B7 +:107F8000FE2C8CEE747A63AEDEF5A74E6FF64A0EC9 +:107F9000E71BD99337E39E7B19E76CA35BB323A35D +:107FA000B97D6DEA32A3FC7A7EB9F79F08F705DD4B +:107FB00053C8DEF2761793FDB1318A7F8FE738C65A +:107FC0005328DF899F874F77F1FC98014CA57AB43D +:107FD0009BE75F0CC07835DA734B797DBA8DBF9F14 +:107FE00058CEF344A76BF971895E99EA6DB77BA30C +:107FF000E7A2FDE67B86C679F4877CDCE94E81D674 +:10800000877AC533E2DA7838ABD14F27D20FECEB61 +:108010006CAABF0AE3A1E736FEC6B43084EE52E68E +:10802000727F63BA2D9A9F17658DBE819DA2F15B09 +:108030001605D7E8FEB823AEB77E2A8FB306F966D9 +:10804000F05C92B3FB0D7C13FEDE87AB0A8761BF49 +:10805000FB235F16DC08CF15CC8574FA70E4CB47A0 +:10806000103E67475815E49FB3F7F0EF0D668FE2B7 +:10807000E7EE0AE3E7F8A963F939EDA111CF9FAE66 +:10808000C7B8E14B16D26741BA002D0D70E8D4DEB7 +:108090007F0A039D00D7432FCE25FBBDE21E7E5EE7 +:1080A0007F7CED859FFD1CF9C22BE9229CEED52932 +:1080B0005C55B06C7515E5BB65BBD1C785F10EA8E5 +:1080C00034BFB708186500DAF359047766B3D94CA2 +:1080D0002179D26FA9CD64D71C877FE3BE6CDDD92F +:1080E0004457EB221FA1F7ED401F12BFDF24B2BEA1 +:1080F0009427CC78BC82D3C7B0457C7FF66E27BD71 +:10810000377C806BD8B874A2979908B7D411D2EB9A +:10811000B90A069318D14951F438D23BD3D70A0A89 +:10812000DA9293D60A47E3D05F5363E87B24457124 +:108130005DE644DE8E16375BE03C7798F6710054BE +:1081400017C0A1589D41F6C7710D2E89AE4E3ADF7A +:108150004B94F9BE8F0FE5F5CE8180F1D8507F8D1D +:10816000C3F9F8DA22B1219EF4BC0795A12E07CFFE +:10817000AA5C4F26BA39DE124BF8B7AE924D1A1FE1 +:108180002CE5F99E0F6A72BC55938367B57B6F9798 +:108190005B458AA34D96DA6C680F9DF59B08CF4A24 +:1081A0009EEB8B23B81EA795E296C70555C6EFCC6C +:1081B000A92F99285ED4AA8DB7AD67BC07DDB89EFC +:1081C000CB1EAEAA717DA690F5898870A89F5ECD62 +:1081D000BF3F94C89A048C17BDA8F1975FE3AFBD69 +:1081E0009A3D75567D7473368EE717693CC003BDA2 +:1081F000DF67AD95CEC9738E7885D0EF08E9E3ECE3 +:10820000D5D6D3AA8D93BDBDEB27A8174D4DB0CBC6 +:1082100002DC87FFCBDFE13EE6F3EF25D814755D86 +:10822000743CD9177E94DBBFFE7C03D57F86177024 +:10823000A09EFDEB36AA37E4313A2F9BB3F60973C3 +:1082400004C029679D5D814DC01F8C8F706B5204E7 +:108250008A3331DFAB09688F38ECEC71E8DF8AF1E3 +:1082600047A02F1BC61F41DEFD7CC7DEF3F7C1BC54 +:10827000AD66FF67182F507F1A41EBC8C9F0EFB900 +:10828000175EFBF9CED72FDF05F5B7E7C6917C382F +:108290006B561317C27855BF4974A98487DEE34330 +:1082A0002FCCE57A72B0A4E713FBDBA2913F98FADA +:1082B00002AE4B7F3ED7299D3347537B7245887D65 +:1082C0003E58F2EFC2FEACD93E34346F6BAEF3BD14 +:1082D0001F601C03BF9F154D7EE126FB2643FB6BF1 +:1082E0006B302FEC3D6430B06B5F99BB74A59ACCBA +:1082F00058C6D283A42F9ECA9E795DFDACD3915EF1 +:10830000BF37634F02E2551F8FB1A52B0380B72BF8 +:108310001F5C3163FCF84BD5AEE0B9F70247D7AB31 +:1083200014A7570505E37445EA17E64E47E8B80772 +:10833000761587E429D89476A2CFE9CE8E31A17E36 +:10834000D402D003989F31577D9BF63977E9A45C1E +:108350008C7323FD9A117E6B39FD8E8CF6BF31062E +:10836000E7FB8344E7EFD9438CFCA9B0670FD1BD8D +:10837000A159FC3BA6FAF81734BA3CABD1F78B3DB8 +:10838000718A442A338F7CFD01C67D2E6FB7109F02 +:10839000ED5D77DBF987A11CD278CFA7CF63B9EE6B +:1083A0009EFE07500E35EFE8BF8605F5D18537DD17 +:1083B000F9EF231C9E70105D0C7D60C7B017D8D5F7 +:1083C000F0F5AE950CF6D7532FDE7C18E36497D505 +:1083D0003E145F39AE8EBA613CC74DEB97A994E766 +:1083E000A519ECBBB3F7DC9589F2F17CE389ED6864 +:1083F0003FBC17D149F2FEF81F783E4736DBDF86D7 +:1084000072319B25FAF17BABC79D77F2FCE6C94C34 +:1084100090785E10DD2B39DF28EF3802F88AC0F142 +:1084200043FCBBACD6B7DD8817346DBC7108E7964A +:10843000B8EBF99559AD4200E93BABF5901BCF394C +:108440006A98579D8C745D6BA6B8EFB0798A16CF89 +:10845000F11FC17CAAD3EB52E8BB0CD39D8746A089 +:108460003EAFE9B95FC4CE50BB2853FB5C75E361F6 +:10847000ACBFF4FCE03411F83E6D1EE7B79116E690 +:10848000ED8D1F07CDE3F6C07B11FE15989796C5BD +:10849000EA68DFAC5816DAD02E6747BE87F2396B30 +:1084A000D54001ED72FD3DD01F1661245F0FE5FB45 +:1084B0004981CBF45EA3C0F0DCA710F40BE6EBBD62 +:1084C000BF24AA03F508AB6DA73CB961DA7C555609 +:1084D0008DFFBDEDA3D15F7E6DB97BF83C78FE5476 +:1084E00058FCEF58FD3CAE8F34F97C567DE60DFC10 +:1084F0006EDC97B512E5A1EA7196F70B9F7E03BF7C +:1085000023366FA544DF057C3FC56F427B0EE9D063 +:108510006D45FAB051D9A94A09FCFCD44770919C29 +:10852000A9F78D45FD576A764D55F0DE45D7E7CF63 +:10853000C338EF2DB3BB54A8976A787890713B92FB +:10854000299E44C4EB7A81D177CED493924B3BD70A +:10855000B045E6F338A7F6573C0CC6B12433CAC37E +:10856000C2EBC9081F53BCDC817A59B763A7CFE3BC +:10857000F1BF9218F7F47950AE377B1231BE7023F9 +:108580007B4FF7173668FCDA6C572B3CBDC8AF0D34 +:10859000C3EC4B43F3FE9769F4B04C9B1774077D13 +:1085A000174A4A14297F20DCEF0E1FCF9A68F4C3C4 +:1085B000BFAD9FE99E67B4F7954ACFED8877B05B72 +:1085C000281FAD59D31BAC34D76097D6CDE3F11437 +:1085D000DDBF7AB9C2538FF062C56EBC090FFE8051 +:1085E00096DF511A47F667881D7A17F5EB7C5A44D7 +:1085F000785ECB0E7D7B55E10F701D30EE3DD8DFF0 +:10860000E40E103275FBA57D2C8F53649646DF9BDC +:108610008E71C477AF1F67D8A8E98B4D1A7EDA3503 +:108620003DFF00CAD321E4B7D9115FEDF2F5E3585D +:108630005BC3E24FF1263FC33CB2489B3F40DF297A +:10864000F2F07B70CCE451AFC0BA8E16E4EE453E3A +:10865000ED3391919DB6217FE15EF40B63AA2482F4 +:108660005B82D3E8E7164D282BFC77E8B7F95D89E4 +:10867000EEF9F599D8C57AA3A39630FD673281A3A8 +:1086800003EB36CB467AD998BCBF241DC65BAFC579 +:1086900001F5BC4B3CD6C278E56BC9975EF906D6AE +:1086A0001999C70C711FFC38338E43755CAFD3CD5D +:1086B00050DFDD27D7C9E8C2C504A605D04E8B011F +:1086C0002582768CA58FF718F25A4C5E17C3B882B4 +:1086D000C0BA28AEBC051C57E43793B3DD8DCF5F1D +:1086E000739F2FC1E79B934D22CAA18D79FB8F61A8 +:1086F0009C527589F43D8A37DC85C730BFA65D8DF5 +:108700005982F671BBBB4C46F970641E87570B3813 +:108710003C019E274471B7966451AB7752FDCD79E9 +:108720009CEEEE73BF43E39A73E8122BECA693EE34 +:108730008B6D1C2B96E0395AFC5AF721DCF78FC65B +:108740002EB4605EDDD1B1EFD83EA4F7F93C5B9C5E +:108750008769BCE305FB6D9807BA19D681F5A07D42 +:108760000DAEB613FD691BE175738148F9A7EDCE17 +:10877000427706D4EF03030F8DC3FB0A0A0358BFE9 +:10878000ECB651DDA678581BCC6B77F2738AA281C8 +:108790008FD1B9FF168591FD2C44FFF618DAD3ED81 +:1087A000E3444C2F66E644237D38E4307E0782DBC9 +:1087B00080F09745B28F2332E20CF82F8ADBE34634 +:1087C000FC4B788E0AA0916EE2757D3DF047DFBFCD +:1087D000098F5FFC2896DF3B8D2C58A2227F1DC598 +:1087E000FE891C92A1713A2B9BC46AB5F805C6EBB1 +:1087F0004D5A1C2D9C5E239CC6F8992DC358B7601A +:10880000BC2C242E610A8B9FDD48FEEAFCA0CBDF46 +:1088100016737B8596D74D74B8419273783E310BB1 +:1088200064A2DC8F4BEED8447CC8E518C2FA4048FD +:108830007EFFDCDBBD31550957F353B8BCB557BAE1 +:10884000E52A9467FFE2F9C28DF210AFD8537C6835 +:108850001707ED445734E5836B791C5F9EE6DFB75D +:10886000D7F311C3E7A96E48DF551C728E7C663EB4 +:10887000CF1F0EEFB7F3F6C221B83FFD3B4A8F344E +:1088800098882FB67A78394A834B7839E8EB98087C +:10889000A4D7856D821BE5EDA2D6D429EE5EC61F56 +:1088A000572568F6127BD2DC37A8874B62BCE310F1 +:1088B0005EEEC7783E86359111DF981C1EF2EB1FE5 +:1088C0008E7CE4967C787EFE24FF2E22B339B2F0B3 +:1088D000DC7489F6FEFBB58B3660FEF9A5AF63C884 +:1088E000CFBA5F3BE75FA8F2EF8C2CD1E82842A318 +:1088F0009BF76BD3E99ED8E556AB2251FE0BA3BC88 +:10890000D925758CCE4B97B48EA1DF193823892ECB +:10891000A180C73D683C857F377949185DBE5F2BD4 +:10892000D968BCED02F1EF42877703DA1DE7534DBA +:1089300075EB889F2CDCE8D4F86349EBF33CCE342C +:108940001E5A920CE30978BEF77EED2B9F4BF12166 +:10895000EBC3985F5F6DBF7CBDCCDD17CF9BF9DFAC +:1089600002DB7D148F6220EEA78EEB6D7D0FD27C33 +:1089700097F5384696C0107EB769FC7D1BAE07DEC2 +:10898000970B012749348E82F7C805AD9D85AE2F20 +:10899000DD50D7E2F2C6FA02D56AE08FF7BFEE13D8 +:1089A000A078435DB4AB19F772102CB45EE8347C48 +:1089B0001C51F15C97BFD9AE90787B5AB03F6B7F6A +:1089C000D88DE7E1C1FD5929DFE85AEF3DBFDCBD95 +:1089D00001E9AFED76CFBD55449FFC9E96D70BF4D1 +:1089E000908372A694E4F9E51681E8B2C6E650E9F0 +:1089F0003CBFC5F83DDA1EFED2E48E1EE73B93AACB +:108A000054F338DF48BA0FAAF7DBA1F1C3428CF365 +:108A100039280FD05213D22EAD98B403D7558D37C5 +:108A20004772319F4032C035FCDC5ECFF33EB396D7 +:108A3000C785A0E4E7390EFE7D801BC919901F94FD +:108A4000EF6CD2F22C8B6CC6F926CB9106393735F8 +:108A5000B18FA13E4D1960E83F3D2BDDD09ED1CEB8 +:108A6000E3DC97415E6DA2FC1B0F2DDEC2EAC8EE6F +:108A7000B0B1762A0F6BF6D4110D7E11CC4FCF1DFD +:108A8000EC0495971C9F50FC2D0649341DAFEE2831 +:108A900094C7D387B9A92ED966EE308D42D07A79A2 +:108AA000BE1B4C4B71CAF9CCD784714A3D4FAE8680 +:108AB000E7BF25E1577F25BA9F47EF0F649D541FFD +:108AC00084D247429653A84C67FC3B7E1FAE5AF2B5 +:108AD0003BC44B2666F6C3F333F65F9CC6F514CE53 +:108AE000539E3523BFAB7577BC3116EA7394BF999B +:108AF000018EBBADCBEF38027C5568E5E7755DA70D +:108B0000D73CA5029ED3E7BA4F727AEB9A8FEBA9B6 +:108B100061227DD788D5C91BF07BE2CD2E0BCFEF2C +:108B20000CE3C71A5B72E02EEA17EDB28EBD9A0E07 +:108B3000DB4C9EAF48FF687CF64405CC03F59355AB +:108B40008CE8ED46F1F86BF1DBD9C6B1BDC6E34F59 +:108B50005629641F2DE89EA0C5E30B281EFF45A5DE +:108B6000FB0BDCDFC92A9E77FFBAD9972CD33932A9 +:108B7000FB58CA37C87F82C3B5E43FDAF79807735A +:108B8000D6A9F997DA3A757AD79F87AFF746F4CB2B +:108B900042E997E2B9FD0D76CC8DE0114EA747353D +:108BA000FFE198E63FBCAEE58FF4C89DFFE4EF69B6 +:108BB00084EFFFCCACAE37D1BF3E7352624D0AD2C8 +:108BC0005FEF71BC1BADEFAF155332E753FCDFF81D +:108BD0003B1D3D7C9AC8E59DFE7D7710ACA6D07804 +:108BE00049F8F8E1F3DF1C3DF4AD76E5DAFBD4F9A2 +:108BF00054AF37DBDD892E079273EFFB797BD59479 +:108C0000F1F3C90F9D76F8D9F87FFDDC6E03C6FD40 +:108C100043F060E9C967004310C6399A94DE111A1F +:108C200037092F8F0ACA6A1390F09C0F9E780A7F2B +:108C300017A610133CE89ECABE3BF07B2585454431 +:108C40003A6CD607BF784A75D2B9E04C842B3CE722 +:108C5000F1936246BFB36292158A33807D588EFBD2 +:108C60006833B96BB05C3D0FEAD0BF7C3E233EB9A0 +:108C7000691E6FD7EB072B8DEDA8C144A3FD44ED12 +:108C8000D7E29F70FC3ED0A83CF8E74CC0F3930EAF +:108C90007E2E799AE359CFBBD4F7DD27C5754E09EF +:108CA0008953F649AB1BE922B9513726F41E8F1EB2 +:108CB000E7882BE1DF17B90ACF165727C6871A4E68 +:108CC0005B5D789EB1D7ECFD3EAE57886E18827E14 +:108CD000549F5217C515E28A5C145769B6F3EF53D7 +:108CE000848F73CF7C89E4D790F9EEB59C6E55AA3A +:108CF000C74D2F0DB4C03ED68344C4B8BABBA28EB4 +:108D0000F516D733C77B691E80D7067CDF247BA886 +:108D10002E39F8BAF5F1F00FED079B266F992795DC +:108D2000617E27F8CB04A7F5F2030CBF4FD09A2C35 +:108D3000D2F77C4E4FF05720BFAC1744D7BA3CA2B5 +:108D40002A25BE6F505E8FB4C8018CBBE37D90C7EF +:108D5000818E0AA35BDD98CFB4D96D73D17D11C527 +:108D6000122687785EA03EFF464706CDDF0AF3E372 +:108D70007C9B1DA64024FA97CC46E72DD90E3FF9DF +:108D8000B5D90E13C5874ED7FF7C28DA19B6780BF4 +:108D9000E50D868FFFF27C1E5FCA543FDE7F1CF715 +:108DA000D52950BCF8A91737CDC2FC8C2B6F4A448B +:108DB0005B5219E809F2A3EBC8EFDDE8C88B0E950A +:108DC000870F68713BBD7ED0E67D06E12ADDEC3A77 +:108DD00081F41E57CAD7DFA744840D05E5EEE6A14E +:108DE000B20527D81C758CCE99B6D8F9F70E6AF261 +:108DF0009E233BB46DB16687821EC4B817EC899F71 +:108E00007B87E9B970FB6762D7C5FDC7E383FB9138 +:108E1000FAEA7100BEFE4CF5C031DCDF7A8789E2E8 +:108E2000421509E77FF6F33CF49FF8AF755DBDDFAF +:108E3000232330CE78616904B55F67DFEF20BFFE82 +:108E400057ED5BB2F0DFCB013E5342BF27F2918674 +:108E5000E78DF3DDE7717DF491CDA46BCB399DFEF9 +:108E60005F1FC8EF1D6C5E1349F90A9BD16788A785 +:108E7000EF82FB1EEF45CF5E9ACFFDC0EF7ED77D20 +:108E800011E7F96ABEA2C92999BEA752D370FC1492 +:108E9000DADF9B137AE7EB7F6AEF8FA8735F99DFC6 +:108EA000CB7BD7B2B7C3E5DAFBEFF892F1FB078FC4 +:108EB0007A2C0AC66F466EB9247D03F58DA59C4FAA +:108EC00037FAEB8F61FEA79A6CA2EF72EDF39F2742 +:108ED000FBC16A77D1EFCB6D6DF23E84F747D58148 +:108EE000FC772FACB794D13DE72D8AE0C233C7475A +:108EF000DB1E98D21FE9CB25D07720BEA98ED3E404 +:108F0000C5098AA7BD999C41797687F2D2043C3F76 +:108F10005A56C2BF7FBEEC31FE3DA8D2E4DCBD187C +:108F2000573E937C58C2EF6CFD2DC39BCF681C2E1F +:108F3000D732BDDDAFE07A77E771F97D6A6DD91C74 +:108F40009CEFCB128B8CFD0EC53F3005BF33B2AD0D +:108F50008D29788FF9D0FC39D3FAA31C19CDE342BF +:108F6000056D278AF09E5981C25C28B64CDD1273CC +:108F7000831D26750B549A4C0AFD0E531F9023082F +:108F80001FFC8C5C287DCE2FF51F812EEC8128FFE5 +:108F9000299CE7C17B2C0CF1BFA5F42192775BDA09 +:108FA00044FD3B63249F4C9A7CDAA29CA0EFF96FAE +:108FB000FC1BF8CAD0FE200A3E84E3087E0FFDD1D8 +:108FC0006491CED75B9C963D5C5E764EC77D3DFA44 +:108FD0009528A33ED83D626F06E6696D1B6A77D37C +:108FE000F89EFB4D38DE6EBCCF047859B6755260E2 +:108FF00029D44B405E527C4ABE4A5E92BCD6D7B35F +:10900000BB7C30C9CB164D5EEAF938B76BED4F59D2 +:10901000EA8EE27785763F2DB8D621A098FFE86DDD +:1090200030FE4AFC5D088C57B5FD61C3983CF4875F +:109030006D5D52E2D5F3DDD4253235046E13BB23CA +:10904000981A62674E024F24B45E641B60E83F5971 +:109050004E37B44F4D1C6E689FA68C32D4E7678D97 +:1090600037D4D93EFE7D3C37FC0FD7D3F46204C120 +:109070007BDB4F785EEDCAB0EFE22DF5AD9AB2180A +:10908000F6B744CB275AE237FE3EC283B77C9FBE79 +:10909000D7F7007EAFCF75F577A76FAF369E07582D +:1090A00013B89DB12DD142F4F0DEFCBBE6E37DE9BF +:1090B0000DFD1DF49DB8014BBDF5D514972DCE4285 +:1090C000FB639BEC915DDCDE4ACCC8EF4981A63F97 +:1090D00053DFE03D13C67C87F01E520AE29D42B684 +:1090E00016E60E89633C78CB874DD8BE41605D9211 +:1090F000165741FA451587EBEABFEFD3A69F511CDF +:10910000C35667A5B8A4FFD4F7A0DE772DFF0ED80D +:1091100027C9E5365CE7A3A5A22CC078FD1B42C693 +:1091200087FFA4E4454D9B514F031C62C0AF7AB04A +:109130002D579DC5F5348F8B56F0FE30A50DE16E91 +:10914000CDF4B76640BB3DDE44CB97B65A0DFC84E8 +:109150000F95103ED1F74BFB27E3C0737412AC2F71 +:109160004E6594378AFB5543F6BBFB9EBFEF108DCF +:1091700070FD4935BCDCD256B814FDCD3845559943 +:109180003308577473F1B95D838B3E8E3BCD4BF939 +:109190001B7DF4DFF9D3DAF335B86D10BCA7506F3F +:1091A000A9B378BE5F385C4CE54C8D04209B2A2C1B +:1091B00086FD49AAB1DF33D5B13DDF2D457EA4AF91 +:1091C0002BA406E763DA7C16EF931E5CCFA3E5229F +:1091D000A3EFC385AD17FF549D9FA1FDA9FB2E51A1 +:1091E0005C7E7309CF2F091FEF1527BF87D5A230EB +:1091F000F207C2DB01CEF7229ECC8926857F9FCE67 +:10920000D86E3379548C7B24E3770D01EFCEA43FE5 +:10921000CFA5781AC83FBC476F568CFBDC1DC5F341 +:10922000631E9CC67FB76D3EC88750FECC2E7D88DE +:10923000FFCEDB52D0EFA06FFF54CDCFA1D32C8156 +:10924000C5F85E5ABD9D611C621BEC1FF11BB1CAC3 +:10925000DEC1EF13B87644423D4D8C62180778D0DA +:10926000AC24B503DFBC35EDC375B5D82F496268B2 +:10927000A9341CA8DB8DF61F1380CEBFC3EDBD50F3 +:10928000BB3BDBD295847EF6EEF9FFF13ECA35F5A5 +:10929000051BE9BB915A1C9FBD68EB40B9BC31F975 +:1092A0001D5B0DD9450D740EB2C5A79E44FD78E136 +:1092B0000D092D816BDA09BDD83F9790DFE36C274C +:1092C0008EE1F90FDA3FF87EB8FDA33037DDE3EE2B +:1092D000897384D9C935B637F8F7936C4CC6DF4526 +:1092E0000BD7F782E7398A63EEBA8DDB49CD75ACCF +:1092F0003312F11B660F3DB914EC08B4C7EE30B35E +:1093000000F92B3ECA97AE8CB169750FD5753A0D31 +:10931000B7F3516F205DB6C41BEDFC9196C0E7A872 +:1093200017599C85F2440AA33F26FB613DE3BF2702 +:1093300078BA3E3280F8DB2966D1EF73D9640BC569 +:109340001D6F68DF67A519ECFBF559E7C98EDDD401 +:1093500089BF728076F9DD8342F303AF356E389EA4 +:109360005ACDEC009EFFDFB420950B9D30780BCAE0 +:10937000D1AF709C4CB595F05F919A4BF18E703BDC +:10938000785372EE8DECFEDC0564FFFA8E5DCFFE45 +:109390006DD1ECDF16CDFEDD84F66F0E7E0782E325 +:1093A000F5FFBCDDAFF2F52BDCCEDF8476BE827834 +:1093B0009A4779ED3BD344C2D3FFC6BE67FC57EE54 +:1093C0003B4D0C3C8EDFFB637FB4523E8709113B63 +:1093D0000ECF637E63C33C98B35E2E773639CBECF9 +:1093E00093F8B99720827C8B18B1DF86E733DB9C3A +:1093F000FCDCD339A2ECB7E83F6E7696C50B4A7019 +:109400007F9BCBF939ECB6F2B23C16F27C9BF6BBF3 +:109410002FE1F4F6672F8F67FF70A97735C2657368 +:1094200006F74B81BCF8F9B7C2E566DACD6ECA9B88 +:10943000AD7ADD3BE87ADF97D1D7BB391EECDD187A +:109440005CDFC28450393737C5BB6D168CB77504E5 +:1094500073352958BA9316033CACC9565709D4330F +:1094600003633F477DBFCDC3F5FF6B87A655E23948 +:109470005F24C8373BD423B5F3336B378F0BCF1E34 +:10948000C8EB095DCC87F7D3A7967379199FCCF504 +:10949000CA478D3C7F09EF118CCE0FFE1E64FCAED7 +:1094A00073CD98CF751BD8090A7E13F3C5BB19DAA3 +:1094B000E5DB3A04D60FF9D7122842FB6BE338AB51 +:1094C0008CE74105ACE0480DD41307803CC7F8ADEC +:1094D000C3F81DE4A5BB8CF6D984307BAC202C5F8F +:1094E0007BF702CD3ECB67F9A8CFF4EFEAB0F68761 +:1094F0003DFF918FBF2FC28868F4EFEB84C3F9CB97 +:1095000055857B178CC6EF528DBA6E9E88FE3D75D1 +:10951000FD7BECAFFF6452129E6B6C6DE27EDDB79B +:10952000FD3EFB9286E90CCF2597354C63C5609CC8 +:109530002C6E9849F588853CEFE5FD77BA24D4FB7D +:109540005BCB45F25746CE28B467A21D102FD277C9 +:10955000A736FBB53C816BF873255B57B5610ABA3A +:109560007556A11DE97D9947A47316850524F493CA +:10957000B682FF85F2E28CE71DF29BFEA678D1242D +:1095800082F9B93F36F1EB05E47F25382D32F65BE1 +:1095900056EE3F85E3C73B2D8A080B28F0F84F2D88 +:1095A000847A412238DE486FDE5312DD1F073F0800 +:1095B0007FD76CB3D03E05FD0C35957F97FC946743 +:1095C0000F7D47EBCB2CF073E0FD971F1388DE5E19 +:1095D000CEE0723F1CDEFD35FFAD2FFA6F0097FE27 +:1095E000268F80FCD217EC86507B647AF989C96695 +:1095F00005E3521E3BDAD9DB1E9B6167C4DFB379FA +:109600003EC2ACFD896817360BFC1E3FF8657B50E7 +:109610005E888ACB83F0BCECC810707F9BE74F4D0F +:10962000C2F7042FD7175B674CD981FEE2866C0B1B +:10963000DD79DB3CE2B9448C9F58FA8802E58D84E1 +:10964000DD133F3DA19DAD41FCCC10296EB0B57C32 +:109650008F1DEF9D32CF0C7B6FF1B8FE4E4D8F2DDD +:10966000EDDD9FD3C71515CFBD87E2F1FC52243C39 +:109670005C8B3EC3C7FB5F57FB098A00800000007C +:109680001F8B080000000000000BDD7D0B5C54D731 +:109690009DFFB977EEDC9991012FCF00A25E0412F5 +:1096A000D2208E8A56D33C2EF8081A9A8E462D6602 +:1096B000350E0F01F185A6496D16D78B20A0424AC1 +:1096C0007430E8A67114E976D3D60F49D3BCEA66A4 +:1096D00041539B77499A6DB47575D448EA3EBA24D4 +:1096E000C62ED94D9BFFEFF73BF7C2CC05D4984D62 +:1096F00077FF259FF67AEE39F73C7FE7F7FBFE1EF2 +:10970000E70C638C7D3681B1DBFB44A63B19FD7D04 +:1097100006FFBBB37F14D33307D3B92C362C3DCB14 +:109720003926ACFC1C252D2CFFAEC45BC2F299AED1 +:10973000BD93399DB1D5F86F95B179EAD4B0FCC32A +:1097400072D5F1A41CC65A9F123C5B217F79E6D7E3 +:10975000C2BF679D7357C631B636D1C6767820F939 +:1097600023FBB920E46BF01FF6BFE6C5DFD47F15FD +:10977000F277E63AFB1C905F16D8203378BF964903 +:10978000548EEA4965AC3CABF714CB86FC4EF83EF0 +:10979000A4BFE5ACE9435B143EC3CBDFE88B8CEBA5 +:1097A0008D80C457D9573FB3E1DB38E64CC0FFE7A3 +:1097B0007F274B67D51C80C425C6AA6C0ABED16A18 +:1097C0005E8774FCA7A3A99FF18766D574435AC925 +:1097D00073568D9E81E5EFADE986717E84E5213F6C +:1097E0006E91CCB4907ED40BD404D317B04007B4A0 +:1097F000FFDB35B37273A1FCC78CF550F923BD7F35 +:1098000064515804BE0BE927833433EBC17E1E72CA +:109810000CE6C33C38D3C3DBA13F580F2A22F2A485 +:109820000AE3721959AEB83A1DC7059550BF9DCECF +:10983000A61E5BF655EA49E3D5C499F540BBAE4395 +:1098400035DAB339FCFDC2442CC7BF87A9EAFA0C4C +:10985000C79ACEC70159C7B19FE77CF0329E57AB7C +:10986000240CD6EB4C943557F6E0F703E3C63937B2 +:10987000CB0983F99251FFA4979E67BE2CC66E6AEE +:109880000BEF77849B699DF03E4282A71BDEE1DFF0 +:109890009D505D316F7F7CB148CFF746695B8F4348 +:1098A000FF1B168A8183907578E1C2D12C6BB0BC06 +:1098B000F5D9BB051ABE69305D5661D71DB05E652E +:1098C0008F0B5D767ADACF62FAE63647587FBE654F +:1098D0008C3BF3F19075E58FC4F4E906BD4DE02FA4 +:1098E000A40463AA55FC3FCFD1AF406606637D4810 +:1098F0006F56BAD02678B7627EBC91CF8CFC6C9341 +:109900004E8C751F672C65DA8FEEDBFA640EA75755 +:109910004722BEF115DA213D3E8B7976407B69FE08 +:10992000F0FE25A45CAAD9899DF3B9894EEA856029 +:10993000B708E5758155FD14DA1B571D3EEF098503 +:109940007CFC09FEF0F1EFF14533368DA79D21EB4C +:10995000C942C703FD957DBFBB0F27C39F25B31D1C +:10996000027FAF9BF4968AEB03EB867CA48205F022 +:10997000FB638B3EEAFE0CD2DBBD62C0210CA59FCF +:109980009D918C975FCA025B5387B637CA1EC8C5C4 +:10999000F67656318FEE199ABFD35B5C13847C192F +:1099A000C61B334C7E56D233F43D9B076B04434CAD +:1099B000A8089FBFE540FFA17C337BD19E5CEC0FE4 +:1099C000AB608A90C4D8E5A2545ABC0972D74AAC9D +:1099D00067C24617ABC17E671D5490AEB3E5CE4457 +:1099E00005E877E7F27F38518C7CE305A7076881AB +:1099F000D59A7CE405E7810EDA2750E9CC91E91687 +:109A00003828CD7F865EE8457EE3CF123D3BE0ED12 +:109A100024598FCFC0FEBF65631DB0FEF6E8E0D3CA +:109A2000C8DFEC67058FCEB01FE79EFC21A6FFF9CB +:109A3000060F92D3A98D3FBC19FBB50BF681E680CA +:109A4000F70B3C510AA48F387DEFF8A0FE18C9DB54 +:109A50002341FD3105D037281F9B2F86CD473AABD8 +:109A60002AC47E1731681FE741D3889F0806BD17B7 +:109A700039DFE0F3E9648A03E687D5D9FF6D808F8B +:109A8000C3FE10529E1530FFF172C66C905F5BC52D +:109A90008211D8B1604A34F271FC278EB77A854AB8 +:109AA000E36D8D63AA63343C1715C763BF97F81441 +:109AB00083FFE8CC0BB46193990FF904933AA9DDC5 +:109AC000DA798AB06332A6613D72703D92A277C0A6 +:109AD000FCAE5FC1F94594A86DB761FF4416EC4038 +:109AE0003AF51EBC20C073C96239C926607AA1D874 +:109AF00004E9B8945D7F6F4BC57E38793F16A80C9A +:109B0000F74DC4BBB6403E946BED9EF9EF22EE5B81 +:109B1000AFCC5CD055FFD885D4FEA52CE078F0DD25 +:109B200092899007E51D8BC48008E9BB52381DC798 +:109B300065B18003D227DF098A986E80EA75A0BBE1 +:109B40000F703D802F35A41C7C7916D4B30DF8011D +:109B5000CAABB8C70FD461B9F2194C51A15C4440EB +:109B600020BAA970B38006F54C1AFBD12B6948FFC7 +:109B700087048F00FDD8D9B950AC47BA4A110319F0 +:109B8000907F2265E17B6939D82F99A4DF77E33E86 +:109B90007A13E570430A482B281F99D37902EB7793 +:109BA00066C92A8E7FA7D079A218F94392ECE98082 +:109BB000F2C9FD36A6C5C2BEE817983615D2922660 +:109BC00020BD2478C3E9E26E6F8FDD0EF535289A4B +:109BD000CBE346FA7CC8C9E0691F9B9784F2AB3C93 +:109BE000084000C7E1950F06681FC3E7C037930D13 +:109BF000BAA960DAC907715CC037BAE095ABE5B9BC +:109C0000369C5F7FA29BE1FAED9C38F7D554F8BEF5 +:109C1000BE52546C2AE291AE7FB7E13E182BABC81E +:109C200017ACFB2539453E2B44E13E85FA42E4ACB6 +:109C3000C9BFCC7645D5BB1DE5FFE50A51D94164C6 +:109C4000A5FD3A33C1203115D7B7AC0099F155EBDA +:109C50005DC4718913FEE378E7E1C46016E2A47085 +:109C60001C634B017C03DF573C6E798FF8261B9FEA +:109C7000D2E07B18575ED15F08BEF1FCFF816F9C7C +:109C8000C5FFD3F8A650180EDFC41BF826DE826F7E +:109C90002660FBC06F0AFFCCF8A6A588B77B357C91 +:109CA0003374DDAF8C774C7C13876985D3C9E7C4E7 +:109CB000378976F878FCA211F04DF5107C936BBFD4 +:109CC000167C6359C7A78BA207D6FD9AF04DCAFF31 +:109CD0000CBE69B8467CD33002BE69F892F1CDE47F +:109CE000E254A20B2BBE694859E8CD85F4A805E2E1 +:109CF00014E4C719FAEF8A691C382F905FB878E32B +:109D00008922E44BCF3B49CE342C5FAEA09CD58159 +:109D1000E033689C1CA7649F8BA6759D24079FFC5D +:109D200021B67BDAE1411C63E293531BEF7621BE3F +:109D3000D997204DC676622455403C0578E5774595 +:109D4000F1885F385E398F78451D0EAF747E31BC67 +:109D500092756D7885A9DADE08A87F9918C9A81DC3 +:109D6000A62D25FCB144D6703E7EB9B8376F25A428 +:109D70004725D918EABF23EDDFEBC58B477D22AD20 +:109D8000D3205ED4899E371629066EE778E99F971F +:109D90006B11C59856A0B2A42BE14DDDD80FBEB90A +:109DA0009528B7415EE0FE2D0FF8E6E2F8940952DF +:109DB0005544224F3F0955A5C07E653378FA354892 +:109DC0008F2D765789902E1BA0C71BB723BDABAC38 +:109DD00054F64E24BE7496F323AB9EC5A8BF370736 +:109DE000E461DFFFB9FBD352C4681E964D502720B3 +:109DF0009333F1B3394FFE1700E5003EF5DBBD4963 +:109E00002DEEA1EB6C8F5F2436224E011C88F8CA20 +:109E10001EED55707D0B174F198DF8285BE6FBA0E2 +:109E2000C1C0EB0DCB37D3BE31D71D088DF07BF60B +:109E3000E91B8C7D0278D73DB83F00AF2A45EEB0D4 +:109E40007D7177F1FFA17D615D47733EBBF58F8E1C +:109E5000215FD4FA381E863F6934A4EF900415C7F9 +:109E6000A94802F1C5B990AFA6229E4A1630DD1569 +:109E70002FB01B203DD7F686AD0ADAEF9EE1501CCD +:109E80001CF7DC3319E4D42CA3FF8765E50D37E418 +:109E9000777D22B1AD50D56DEC3609CB278E81751B +:109EA000013A606E6E9F52E03F1CCF9CC4703C76BE +:109EB00087C5CE749B0597BD8CFF80713F540CF80D +:109EC000EC16F8F7149683FCF65FB63CCFCEE3C2EF +:109ED000B53CE6FD23F467259683F7952C5CCE9B75 +:109EE000CF4B1BF236E37A8DFFF41F69BEBBF3192B +:109EF000DB017C3AD56E9BEF81F13EFD86A88A2A74 +:109F00003D693EF42A07E17AA6C4D2FE7FFA8DA30A +:109F1000EF64C1774FBF322501D7EE99C7EF7D7D42 +:109F2000299657D59D5958BE51267EFA6CE08188F6 +:109F3000FBE0F9FCA1DD77E3938178C2FD54B6D74D +:109F40004E7ACD4F1AE576A4CFDEB6B4089F7B508B +:109F5000AFBA1F2B9D89698F3A05DEB71AF884AD19 +:109F600030F4B04DF1340FAF8D653AE2F5159B2218 +:109F70000238DF2B943EBB80F2485FB8E114CCF787 +:109F80000A67DF1C013E89DA76CFE4E3507E05CA1A +:109F9000F65B19FBFB738B9FD2A19D7BD76B4F1494 +:109FA00013BF5164E453459B5E3F8138BBC8E9D67B +:109FB000D1EE67A53FD8E10AE162C6E5DC5BF83D7A +:109FC000F4EB8962CE270AAB787D66FABF2DF9F0F3 +:109FD000D7E59ACEE914FFF247FB285F3BC4E719A7 +:109FE000B04700F9B6E4F6123E3D28747DCF8DF3FC +:109FF00079D2C13A607C678CF537D7B1B294DB0176 +:10A0000006F9271B8DFCE6BE712D5148D7170416A3 +:10A01000AC8167C9A192C5B7C2FC5F685E407A6631 +:10A0200099CEF5C90BDD337F9C04E995809B114BDC +:10A030005CACB9772EE9934D306B90BFA499EF8754 +:10A0400032BF1010E19F77B5713DD0D76FEE1F2D55 +:10A050006A5A08FD9BFA64CD8BA3E8BBF31F32C29A +:10A060001FBEC7CFD6A2FE57AE39FB540FEE13AFBB +:10A070009C0CE9E00181ED824F6F6BFAAAB409CA2A +:10A08000BF05FC4B08D92785F01FCEBB556F19BA09 +:10A090004FB81E63DD2FBF2D36F498E96CFA75EECC +:10A0A0009373B89EB582E7BB5F1D46DF339FAF6DEC +:10A0B00099C166DB810FC2F8F1F9DAD896FBBD4091 +:10A0C0005F17EDA07F225F8D940FE0FABDB4C54904 +:10A0D000F95D5B147A1EDD9248CF97B7A86C36F411 +:10A0E000EBF8964C7ABEB2C543EF2B37CD62B36125 +:10A0F000CB956DBA9BCD063D7843A98DD63BC3E782 +:10A100007C2202EA3D0F4A11F2D1A0A0BF3903E937 +:10A11000E44D1B43FD79FEF35573515F32FBE72B92 +:10A12000B4EB37C1FC941A7AF57C03F7CCDF6A9F55 +:10A130005207E54B50CF86F7A5924F463DBBA4CDC5 +:10A14000166E175D5D6C2F817697B73D559704EBC2 +:10A15000ECD327CBC559382F2DB363707CDB04DAE1 +:10A16000EFF3C51A2906EBDD2178EA5483C8719D07 +:10A17000D36303885B7F59C2F58B4B9B8E1DC77AD7 +:10A18000ACF6FF01BAF9A960D0574FFD577338DD1F +:10A1900020AE2FCB9CC96687F40BFD039BA0FEDE8F +:10A1A000990E65AB827013E62DD4AECF8ED47F2787 +:10A1B00094FF5AFC03563F4045A048463E34D40F16 +:10A1C00060B1FF9784EBC793A2D4FA44945B13F871 +:10A1D0003CCCAB2B7AE275DC4FA553BF311DD2F6D8 +:10A1E000528EF341AF1D8D727C99A36BDA7B28FFF1 +:10A1F000BEEB207BC779811586D2DFFC52AE0F26DD +:10A2000096727CC534B70FED16C5C63C5D3C9456BE +:10A21000FF1DD4A741DF26FDBB2A5A46BB4409E4F3 +:10A22000EE9B8CE5B8FC4B34FA5B62E8CF2543F536 +:10A23000280DF548AA97F4E1707DBAD8D07FCDFA01 +:10A24000964101FC6ED24B8932AED3AA025B976D68 +:10A2500032CA738B7E1B84B613A83FB4BFCC764141 +:10A260003FD542F5576A376DB07EB35F56BD7595E1 +:10A270009BEFCF5512D75FCD79FA7629970BC78C14 +:10A280007932F5D6E01E5BE020EA457BEEFD52F424 +:10A29000D6F2922BEBAD34EE09C3CDF7103DF4109E +:10A2A000CE43191BFC43BDB4C8586798A87AF47F05 +:10A2B000C13C55ED03FABFE507E1F372E7A793EA66 +:10A2C000510F2D013D14F74751A323AC3FD9B2A73D +:10A2D0007E317C7F31D7D9A72B43FB33CB193EAEE0 +:10A2E000394A78FAAEC4F0F43CD531C40EE234D722 +:10A2F000397568FDB2AFBFFB33E4536DB640A8DEDD +:10A300004AEB8E76854776DFFF30CA29D4D7D8E06E +:10A31000FC98F477CC6F9B8FFCE35C13ECDF61F46B +:10A32000D48BCB6F7F6426F2BDCD7635431D9ACF9B +:10A330005827E995D9790AE19BACCD3F0DD34BADB8 +:10A34000E597C3FC85FA179797723DF4945D25FD58 +:10A35000FBD47659D1E1D5F926DB28E413B5C6BE86 +:10A3600065D553AFA2D7703BFA24B9E57E6A5F1476 +:10A370003D1D64670AC7BF7951BF1319F175C0BF8E +:10A38000B0AF6E31E43B3BA2680F63F98D511E5CA8 +:10A39000E760D3BD84EF83876C07F1E34DCF57EFC0 +:10A3A000FF21433D61E7E25BE1FDBEB76C0CF55672 +:10A3B000DB42E0A0D83FC91B85B83FE89F1A15BA19 +:10A3C0001F4C3C6FA601C7BF8C7C1E66FD2DD31EA3 +:10A3D0008FFDB2E2F8DE9B1519F76D6FE42B34BFE9 +:10A3E0004117E8EDC807F4E7082F37ADE4F89C55AE +:10A3F00029F55D90AE35F4A62178CA82DB6DEBECD1 +:10A40000AC8BECEA8CFABB74B4D3487B286DD25B7E +:10A41000A9B93FBCA984237BDFB5116EEA6D3AF67A +:10A42000EF68677FDFEF508554B4E77ED08CF2E3AE +:10A43000E21B368F61670D9337A67FB917FDCBF00E +:10A44000AAD4FF1CC90B2519E60F99678BC36AC7ED +:10A4500025FBB1D9FE453D8D21FE7C1FDA1784AB6B +:10A46000CBAF8AC086E38873CA407F40BE5DCE0A08 +:10A47000E6927C9AE5F4907CB2B4B71CE55DC8BC6A +:10A480005BE5DBD5E4D9D5E4D86725861E718D72EE +:10A490002CAB24264C8EB1D9EED22BCAA5B6E87AC5 +:10A4A000B4A359E5129206CA892BC8A5D96CFAB58E +:10A4B000CBA532432ECD464634EDEAFDB2F683B548 +:10A4C00044CBD8CF62EC27F08562EC57F650B964E4 +:10A4D000F6CBE4EFD67E9560BF42C6538AFD1206E6 +:10A4E000FB7567DF7F90DE7D3E28103DDA1EB1B13F +:10A4F0002EDA9F2D7C7F1E3A4F7A77F09483EC57AB +:10A50000A736FE15EDF37DDFB705D02F54D8319572 +:10A51000E4D975ECEB3B4BFF17F7F5D5F08B15AF96 +:10A52000303D5A96AE6D3D08BF5CEB7AF82C740254 +:10A53000B89E70B45E13C9901F9F07CC8DFBF9C203 +:10A540000647A08EDB0BF3707F1E6C15198EF38708 +:10A5500006FDFFB2D5312A487C3FF62AFE539DCA3C +:10A56000FF55B1B61AE7FFD4ABBEF1CA3078E4F9B3 +:10A5700062D56247E37ADC778BB58DA5D3AEBD1D7E +:10A58000AB9DAAECD0267914A49DB9CE4EB46B979E +:10A590001D7A581E85FC6DA393F070D9A16A4A27D5 +:10A5A0007EDBA93A86B5534984DFCB1A05E2AF6555 +:10A5B0001519F53BD1EE55EC26BB97D56EC53E3F40 +:10A5C000FEB1E09D703C3414EF8C273C54827848F7 +:10A5D000F9BF88779E277C715E638CFCC1CC8A773B +:10A5E0002E111EBA0078880D83678EF9391E3A073E +:10A5F00078C8C186E65F2D7D717924E125BDD946F5 +:10A60000F66E2B9E3965E7FEEA53807F74E8DF41E2 +:10A61000A077DCD7075F701E40FBFAF9B6A96FCDB3 +:10A62000407B4A8DE841B69BB5D94E4ECBE5EFBF96 +:10A63000F3949E3ED4AE761DEBFD178E77FFB2D716 +:10A64000FF30F0D21EC263D06A16FADBFAC9CFD44B +:10A65000982512BEAF53CFBD3D01D297E3445ACDEA +:10A660002CBB371FFDE7B1F9CC53036F9EC8E276D0 +:10A670002EFB5246F6A49A17FFE54DE4B7ED1345BD +:10A68000C2F70DA88FC1C01DEC6C2596BBACCA2AC1 +:10A69000D62B19F6C0039BA45D37413D0D512DCC3F +:10A6A00003EDBBF23D3A8B8467815A4FCFAE794EB2 +:10A6B000159E7592110F10B7D0A5A19D62BB83DBCB +:10A6C0003117B04006D495159F979F01E93A25268A +:10A6D00006AB3EB628AF7B02F4A348E37182756EE9 +:10A6E000CD998AF3E816493FDF1627312187D2ED4D +:10A6F000F8BD3D7EA17237A49B738A6D823AC887EC +:10A700009BE3DE71A685E8F1CD6E313F00ED177554 +:10A71000F5E4633C84CB2D4EA78961BE5CB413473E +:10A72000A6806CC7F6DDEF745540FEAE41BB72D417 +:10A73000E4045291695F44E4170BE8976189363667 +:10A740001AF86E243BA2A7E7106EEC43BE1D5128F9 +:10A75000B3AE103A75A487C40930EE3F1DC84FC58B +:10A76000EF43F221ADADFCC276B2BB56829C3A39C2 +:10A77000AE6522DA2BE37264867A92CDCB8EE2FA52 +:10A78000C636DA0277C1BCC566727ADB99210674D7 +:10A790004837086A523CD4DB3C6D0F433CD0ECE5B3 +:10A7A000FE8AD89C6033D2E1EEA522C503352CBDCC +:10A7B000B2FF795C3FE02810919F54FAEE5B1922BA +:10A7C000479FD8C4E3772E95B60B5D840F0235AF53 +:10A7D000433BE3304E01E63939ABB7BB3487A68142 +:10A7E000FCBE278F06BA4B51DFCC755621FF48DEE1 +:10A7F00014CE7FCE35FE9D60C6DB254E1FF41F9F15 +:10A800002C6DAF41FBDB4746BCC26FD7B477AF8638 +:10A810007A3EDE345AC174B205B79C96D5D37742DE +:10A82000F9D30F8B6A8DA11733332E45C47EC967C8 +:10A8300011DF5AF14CB2817BADFD0AFB1EF05B7259 +:10A840006904C50D98ED0ED8657CBCDF03E506E311 +:10A8500006C2EC32D67CB3DF3F5BE3DDB6321EEDE1 +:10A860003F3FA0F8021F033601E5D42C568FFEF6B9 +:10A87000F6017F3B970BE38DF18CB78EBF49AC4758 +:10A880007FFB39CD59856D366C9F4A7AEF65F89E0E +:10A8900085E8E5A138C10DF5AD30869AF67CFFCF8D +:10A8A000BF9243DB81E8FFACC13768BB2418EDC21F +:10A8B000BE59F1A32773715D943CBE4F92EB402FBC +:10A8C0008BA262A52C44EEACD0C3E5C8F83A418F08 +:10A8D00080C6C73785DB77922DF206FF06E27A0441 +:10A8E0003E5F7AC83857ACD69E447A6CB0AB27919D +:10A8F000CE1AE6C98A0EED358C9D3B0FF9C1782F33 +:10A900008F2B1AEFDE45FC81A58B8CFBDFB89EB93F +:10A91000D368C3EF3D4A7AEDCE4509A9A8072C5C60 +:10A92000C9ED5DB5EE0984572341FFC47D63D27D37 +:10A93000C4221E2F34800FB3868F478A30C62FAAB9 +:10A94000EA5EA4FBCB18DFA78EBCCFCC7AADF5BDF9 +:10A950005FA9FD6225D9373CAFDC49FAA3A8A2BFA5 +:10A96000F8A8FA910DE5C39E7CF100FA01B617EE46 +:10A97000A2F8AC1EA3FF8DA07F70FDBE87E4C9F6D0 +:10A980001C9EFF1F95DADB585FA3D7943755940FB1 +:10A990007ACC7BF8DEB4776C4F393AF139D4B72BE7 +:10A9A0004691FDA836EE69D25BB6A12E0D74B4AD0A +:10A9B0005322FEBBADB3EE04C6C56D63F912F2F1CE +:10A9C000C6D4FAC4D289505ED93891E2CEA0850CA3 +:10A9D00065509EF9F395038877DF83ED8774199BA3 +:10A9E000C20EA07F29AE6C02F5FB1B05FCBDCBCDD2 +:10A9F0000EA0DCAA79F1BE7C5C87FDDB62486E0F9D +:10AA0000CA498F0BFBBDDB1BB303F599CB8B0C94B1 +:10AA10006BF0F718637D0FCB9EAE72C8AF433B3629 +:10AA20008C24467948477FC9719047A814ED1E9041 +:10AA30008B935917D663E01FEBFAEC8EEA6128F787 +:10AA40002217F96A188C6F56A12AA39E32BE71F2A2 +:10AA5000568C0B2B6EE9D4B03F2C9FCB03336E2C5E +:10AA6000CDDFA2E37B5756B8DC7058E484CD224793 +:10AA70001C65E17243651E27FAB54FBB39BFC6BFDF +:10AA80004F43E487B5BF9D86FDD59437E6FB2BC8C1 +:10AA900099B832A40B7B17E118C0368AED6B6C882D +:10AAA0001D4D5047F2134BD1BDCE41BD74647D4A5C +:10AAB00062BD217CF75AE316E6D8D69C96117F3208 +:10AAC0005971D09391BC3BBD8671791719D4D14E81 +:10AAD0007FF176E63908FD1C2375925EEDF6A882BB +:10AAE0000EF537AAE2A84C682A755BFA646C36D179 +:10AAF000C7ED972BAA99688B46FB4CD5DB73707F0B +:10AB0000DD2A927D46CF6BA171EA22EBD98D785375 +:10AB1000E9A1FA52BEC50837EDF01E54E6C0EBFFBE +:10AB200028E376C483BA341FB7FF0D18A9040D6457 +:10AB3000DF64D229B73F5C943CA387D34FCD67D164 +:10AB4000A6B4C7D10F65A6CF2E7715068659A77D67 +:10AB5000ABF3E6E13AB1CC16D2AF4F8B4C413F5547 +:10AB6000AF104C467F6C59B9FF27CEB1289FFDA787 +:10AB700019EDDC969FBC02CFD48C3CD71C7876FFB5 +:10AB8000E3577E323B15F99E44FE5AC6FEE1275A32 +:10AB90003AE68B947EB6BCF201C4A34F157BBF4945 +:10ABA000ED481E15E92EB546F4E27E47BF714CC84C +:10ABB00038C694737BFD53C5DA322C7F0DE58ACA03 +:10ABC00060BE1E5C3991DB03D0BE07FDB950FA268A +:10ABD000C57F5E38E4500561908F9A722977EDE267 +:10ABE00028E433BD7E1B437E77A174ED5B4BE0FB15 +:10ABF000336D36A049B24752FCED055829D40F26D3 +:10AC0000C95D3CEE6914533A70FD8E707A40058937 +:10AC1000F487AABE39A80FD46A4EB2FBB26AC7E065 +:10AC2000FE0BB1479AED5F68E3F6C833467F7B3D84 +:10AC30005EB237F7B2091E3D6EE83E39B5718C86BB +:10AC4000B86BDFC6280FDA61B27FF6E91CB4336F48 +:10AC500082F610B764E8BF233FE1C5530EB257F543 +:10AC6000F6E98B6F45FDE60D1BE1326B7FAC74306E +:10AC70008C1DAA05E73FC6ED7B0BF9E148F1DE2903 +:10AC8000E88F9F78053FBCD5BE24F1B8669BC8E726 +:10AC900075D90ADFDF9671BFADC2830435E24B3B45 +:10ACA00032411EB887AEFB6765028FB759A105F028 +:10ACB000BB6B28D7511612B767CEBF698FBE68D855 +:10ACC000A32F2A47895ECEB4717A81F53F4A76B5C3 +:10ACD000E79907F3ADEB7FD1CED75F2F85B6C720BD +:10ACE0003DF46DC3F56179D7B6FE41777AD8FA673E +:10ACF000008374C4E17BAE9F15D61C23797909E5E6 +:10AD0000A53A941E56B4DDA021BD29480F8943DB26 +:10AD1000EB75D735A03DF8F08BB72A38AEFF8C9491 +:10AD200018E20E739D7BDBA6F2B820B72A18F1FD5E +:10AD30006FE13CD93EF45C312EE8F3AEB7A8761152 +:10AD40001EBA0CFB10E711F4142D741D561C72DC96 +:10AD50008FF3A888A2C79682109ACB8B229017E80F +:10AD600007B28E4B5495FA2E8E3F49AE32AFC04299 +:10AD7000E775C5A1E788CF2A6586FDD3326F43D634 +:10AD8000C5DAFF230A433FB5E9BF61555C4E5AC798 +:10AD90007558E07157FA9B36D23B47E2C3C12D3D4F +:10ADA0006D181F00EB301AFD50177421609F044F7F +:10ADB0007F7B7C689C58708BB27776885CCDD4DFC3 +:10ADC000D610BFDD5EA672FFA52E74B566E3B35B39 +:10ADD0000309C01A966BAC3CFE2F777ED90A2DA5CD +:10ADE0003C7EE87CC27E27B9B2A78CCB15DB4A2D0E +:10ADF000B59CE275AE2F2EE8F3CA55C92257EB4633 +:10AE000096AB39D8FF8C97D7B42EC6F9F473BF969A +:10AE10006EE7FBC75ABE764BB87FDB7CCE5CE3BBEC +:10AE200033741EA4E852A29BA0BD4BB812AE1AC345 +:10AE3000BA6A303F49638A3E13E92D96A13F6BC938 +:10AE4000062E3FBE28CEB22B92EEC846BABE4FF1B8 +:10AE50000D335F11AB7D4B42FB6D8FF350BC866DA4 +:10AE60008DB710D7AB36EA2B327EE758A32D2DFFD6 +:10AE70001C715D83F3D5F8C2FB21FB05BAD4852094 +:10AE80005D72C3FB307D3B7CBD3FA9D4CAB1BDD749 +:10AE9000C6FA28EEE7CEBEFD132311071C8A1590D3 +:10AEA000EF4EEAD87D0FFA652FC4C54C16601E3FE1 +:10AEB0002EE77130173A17DE43FEEB1489E22E7F3E +:10AEC000D4B9512981F1FCA0C2F74079881DC3B1E2 +:10AED000F70145735F3F3D823CDC8CFD037996882A +:10AEE00083AA635C2E8E24E73E357010C8B9ADD8B6 +:10AEF0008F6B28D7501E724ECF2A0F07FCB3A63C8B +:10AF00003C746DF2B077A83C243CF4679387876E5D +:10AF1000D0BF73057978F12AF2F0E2A121F2B013E3 +:10AF2000E7E97F5A1E020E7E81E85D0AD27CDA5E76 +:10AF3000E4F33912CEFD6C10E7BE84DF5D43B963E4 +:10AF4000E57F01783843AF8842B976A1CD26D27922 +:10AF500081D6F0F537ED0ABD7DBC9DF3D08E3E4C19 +:10AF60003B17EDEC7961F4E03A5BE9A6B740ED26DA +:10AF7000BB413EA397B0EEBFC7F9130EFDE213210C +:10AF8000FB8BAF77AFCB370EEDDFBD7656D8390CE4 +:10AF90009F64EBE77E8274F660B96AF805C3F90630 +:10AFA000C8F93F96733D888C57A63E05F291554CE3 +:10AFB000FBCB95FF02F37F7D3A948B37E341A023CF +:10AFC00078DE6BFCFB6E7E6E2DF1BF8454D293B89D +:10AFD000BD30FEF94FE91C1BF0508AEB1F38C7A6A5 +:10AFE00039E91C5B7C75B87D309EF509A9A9781EEE +:10AFF000C89B8BE75440CBEEE950D01E7C6F983D48 +:10B00000387E881FDB728E2DF4FC9061AF43FB2EDF +:10B010002D65C8B935D3CE393E6E51CD811C3678F9 +:10B020006ECD725E2DDEB01B5BFB1B566FC839B652 +:10B0300001BBADB230F7D938FE1ECFB1C55BEDC94B +:10B04000D5037E7B3AC75659210C9CD7561206EB86 +:10B050008D37CEB10D19B7616FA672C260FEE039AF +:10B06000B619E270E7D8D28C736C6996736C6B8CEE +:10B07000F6FFBA223C1EB06E89C8E301972CA4F3F8 +:10B080000F23E191EB8D0734E3BB86C603EA34B8A6 +:10B09000BB2BCCF3305E01F7E19FFB3C89D98FA13C +:10B0A000FE5BFE3EF7E68F8FA15FD29EC2E3BAED54 +:10B0B000C6B9615721A373C4AEFC20F9E3225264E0 +:10B0C00015CF45CCB5B9297FBBCAE3BBCD7310A65C +:10B0D0003F64FB1BC16E3C4F92906463E847619BE9 +:10B0E000785CB679EEC18C93DAB6807FEF2CD072A3 +:10B0F000B1BC738643D1143C172C85C52D2558E26D +:10B1000096E28C78EF384BBCB78C7D01FEB1AFC2B4 +:10B11000B04B5EFFF98803C80719064301CE9DB204 +:10B1200077EA6E3CDF90F3BD7B7F85CFE9071E8811 +:10B130000D3DCF30A363F7BD3CDD9581EBFB5ACDD0 +:10B1400087495EA8777F0D8F0FB419FD32EB6FAA88 +:10B15000E474FAA7B5DAE10AC48D35B949881BFD54 +:10B1600035C3F3F3BC4A6E77A8B3F7D5E079AF5691 +:10B17000369AD5C4E1B937C9881F0A0848D72E7551 +:10B180008313FD53052C20605C36CE31DA091BD3C6 +:10B190001F3881622A3F47EF41315A58C9ED817506 +:10B1A00019C7A45828F36A3523F9E798A64B229EBD +:10B1B0000F7AB190E21DEFB7017F47FEC8B87D0559 +:10B1C0000F28925CB6F2E7238AB60AF30DFE7BBA2B +:10B1D00082C7C9642BDCDF9C9DAF0AB593F15C612B +:10B1E0001FD9D79B017FA17FB0D9BD8BE4BDBC0A1D +:10B1F0004409C66726A5D3793EB6DDA9A0FFFAB0FB +:10B200009D9FA7DFB7C185BC9435E71C3C89E951F8 +:10B21000DF9155F4833C56C9E3AAB337C95DA1E772 +:10B22000A5ADCF6CD9938CE794DA97DFFE9B8AB8F3 +:10B23000B0734E1316C0BE49413B2CBC170167D6F4 +:10B24000C07A0FCA8FEBD3632E95CEFA2590197B67 +:10B250006FF90791887F7747735CD8CC824958593A +:10B26000ADA026F143205A12B6736CC1927168A743 +:10B270003F1CEDBD0FE9E0C2442D09CF739D696508 +:10B28000939D2AAE7B550FCA93647FACA706D29FCD +:10B2900018FC2DA382698161E84530E80BE882EA59 +:10B2A000DF867B10BEEFC86401F4F377F8DBB59955 +:10B2B000906E47FF02ACD79948233F89D1BAEC1270 +:10B2C0007C3AFA83F40B6ED601F9BB5BCBBAD07F24 +:10B2D000B55F003908E951D565DA2AA42F5522BF98 +:10B2E000E9FE789F8E7ED51D7F9CC4102FB5BBF7DD +:10B2F000909C6D7F859FF76F6E7A87FC3A678440DC +:10B300001B9D2FDC2C4F41FBC619BB37790AF4FF7C +:10B3100089CD65E4FF782297FB03E54C2B1FF5FEF2 +:10B3200086E8C42F4FD841FCCED79589FD616A0FBE +:10B33000F24F697371D76A485FDE3449C1FEC9575D +:10B3400039275EBC8ACFCF23865F85499A17C73FCE +:10B350005E91E81CE9E819E17C12FB89F5CE59F50C +:10B36000D4B724A08F0EBB771FA63DABBEF7ADD9D7 +:10B37000C9D89F3E17EE7B6933972FCC195E9F7516 +:10B380007DCC76CDB4B5BDF112A3FD36DECFF78905 +:10B39000D4CAEB95EC1A9DE3FBB2EA3BB35926BB4A +:10B3A000C3D5EA33E76FBC727DF59AE5ACF55ABFB9 +:10B3B000FB73951F699C73568903780671D2287CAC +:10B3C0001A780CF1976C648D2A28237A5444EE8FF6 +:10B3D000AE15023AC647EAA95215E2BF5189C3E346 +:10B3E0002EFA9EFBB7899F9AF5CBA53FD4D02EC0ED +:10B3F0000CDC65D2F300EECA0CBF3F20C2DCEF8C40 +:10B40000E32EB3DEDAC8B22E1FF16FA6C62AC3EC54 +:10B410000B037F51F9D4C1FC41FCD56F47FB8A1562 +:10B420007FAD30CE63ACB09CC7F881D18F8ECAF0AF +:10B430007B043AF03C86F0E59DC7D8BB4A18F69EDF +:10B44000A4069C2B5C879BF9BD1220AFF5C838F48D +:10B450007F01EE8A1E5CC7D1C692DCF083837A043A +:10B46000C7BB1B46C33EDF677E9F0BDF73FD96E2C3 +:10B470001ADC217480F710449B6BAAB274D437BFD6 +:10B480007B67F601B42FB82DF31DFDA38D354F72E8 +:10B49000FD82703A0BE573509FA2C6743F1982E398 +:10B4A00019EBEB3E0FE5E50A46FA4AF4B2F0F1B9C2 +:10B4B00055A9E63DACCFB88780491FEAE87F946D77 +:10B4C0002AC5CF3167B78EF170F2AC448A3FAF1511 +:10B4D0005A34EC9F3E9391FF70B416BEAE6E0BFDD6 +:10B4E0001F5FC5EF5F7264F07B545C297260B8FB2C +:10B4F000097619E7201A256D29F2BD466F8280F280 +:10B50000DA5CC7C84ABE8FFCD19C0F209DE921F3AD +:10B510006296FB7D853DEC3E84783EA70376A43D94 +:10B52000EFF273247B361D27FDB4B54026BBC32440 +:10B53000B985619C2E7B58A4753E1ABD446C84B4B9 +:10B54000DF6F3BE8203DFFFCD3289F2E0553A7600B +:10B5500095875FBC8FE27CFE333793EC966CD1907D +:10B56000F808B22398ED3F913381DA6F35E2FC4F52 +:10B570006DFCAD13E3C7F64D9FC0B181858EE30B23 +:10B580008C38094BBD371AFB23CE386F57B7C08CA8 +:10B59000E3EE8B44A23AE2F45D5A05F9CDD5BF72D1 +:10B5A000E27D12E7BDBCFDB87E89CA67E833089723 +:10B5B00014464EB9E23E8A37CEF90DA4952502967F +:10B5C0008FEF97E93D73C75D533CF183F112D17F53 +:10B5D000ED3C99C65D1BE9A5FB176A5B6D9E837CFC +:10B5E000584417FBE6C9077784ACF77F55A834CEDB +:10B5F000DDF3A627E1B81CE33293908FFCF52A7E99 +:10B600007E773C0622A561BCA49363D419FCDCEBD5 +:10B6100050B9CDE327892F221EDC23124ED9EF61CA +:10B62000C3C74F569FA3F3963B00A53894A1F9D604 +:10B63000B4DFDEA507A17D3FE09A166528FD2FCF78 +:10B640000CBFA7A251D29D283F808EC96ED2B3EA0B +:10B65000DBDFAA91D0DEBB82E2F477F9397DD6CD6B +:10B66000130D5CEEA5F88FC2D65F51BCE1A51CAEF0 +:10B67000BC5BD7DDB43B35571F0B8B6731E9C49CEE +:10B6800057A08FE995481F5E8DF0FE17A58B4F5789 +:10B69000A9B41E56FAE832F4D502CF8714E75567ED +:10B6A000571F9984FBADD1A6D4A843F58E975A04B1 +:10B6B0005AC7D27C7E6E3E5FFD90F414177056BA66 +:10B6C000F70AF5114837204684544CD3A30553E0BC +:10B6D0007D892A7A3415F595BE6E8C976029FCDC3D +:10B6E000787E4EDF2C34B76A7A0DE92BB7B59CAD66 +:10B6F0004D54B15F13A8BF254DB98553A0FCEDE9AA +:10B70000FC9C93635A17E931F9D52ACD5B86CFC9E2 +:10B71000ED8A0522D1D5097F7B3A86705CCA7469AF +:10B72000C8BFECA98F4A4827F966BCD908E782CE82 +:10B7300018E782CC7933D7235EEA3CFE6DC88F4987 +:10B74000E4FA6D1CDAF342E8E47401A7D34BCF08A6 +:10B75000C42FCD7B28DB8D7B28CB994F4E46FA95A5 +:10B76000AA8E63DCA7E3568782FC19EFDB0CE5EFBA +:10B7700078DF6668BD78DF66681AEFDB0C2D8FF71F +:10B780006D86C733DF12968FF76B86A66332BF16BE +:10B790006E0FF89CE78962F2AB64C439CB41FED8E6 +:10B7A0003C43CF17C5E4774AB8EFB5CAF0F3B23DD2 +:10B7B000FD13EA47AB544C92A6E3796E3EEF5F6708 +:10B7C0001F4BA3E1BB7B3ED66494C97F5AEBF35772 +:10B7D000E27A7FAC1CC7342C1EF97B42F465DA8711 +:10B7E00079FFB2F4191DE951EDDB8BF27BF03E9449 +:10B7F0003E92479FFF3E14AE2F9E36F8D8487AA35C +:10B80000D59EB27715FB5FB92FC46CF76F05DD4588 +:10B81000763C85C7053DCE580B9E9F01EE46E9DA82 +:10B820002A6E9F1D4BCC059ECBF8FD3F898CEBBF4C +:10B8300031E94C6D4E427B34B7BBE39EC5F418D85A +:10B840007AB6187A6A1205AD05A83D7C9F6EBCCF0A +:10B8500006C99ABEE8FED1C3F921CD6731C6E98693 +:10B86000F8398B158E23F37EF6C68FF15CD4EB1B73 +:10B87000C64C71A883F5BFFEC2911401D6F954F6E7 +:10B880002F26E2D3B41F6C53B8BEB14D799AEC0B9E +:10B8900075B091456014759D7E1E1756C1143CDF2E +:10B8A000B94C568B31BD6C8793CE6D6E8B13498E20 +:10B8B0008FDAE03A403619B6D5B4CBB521DD4C1855 +:10B8C000A01BDEFE36BB9648F7AB44F78A452174D1 +:10B8D000D3FDE27DC4EF77A6F0FB9576A64CB9A226 +:10B8E0005DD161E1BB66FD8E9C2A867CD761F0DD6F +:10B8F0000C7D9313F5C8C2B157AB8FDF8B37A4BE55 +:10B90000F48D467D12E52F59DA41F70CAE38E4503C +:10B9100070BC173BBE998DFBE7E2E647295EDEFC73 +:10B92000FE57DFFF702CB697D1D51685ED9F31CE2F +:10B93000995D38BA575643CAAD925A64F43B98F7AA +:10B940003C2CE9F8D08E7EC9BBAA1F95835983FD94 +:10B9500058F5389707E5D502C98315819A7A7E5E36 +:10B96000A090EAB78E27B7393E0ABF3FDB9441E784 +:10B97000D8CEF9A75E518E9D35DA0F1AFEDA1B5923 +:10B98000625428DD9D6FE4F5D436DE4BF59E4BF115 +:10B99000DE83F1E4E7DEB6E18A0F943B17C9ED6D73 +:10B9A000ECD3B427D07F50D45844F1AFE7A17E1D2B +:10B9B000F4C29B57DB683CB31A53298EB2B82E5A97 +:10B9C00056A19D623D692E9A068BEB844E17949F7B +:10B9D000BC5A25B954D4142DE37983A2C6C9C4A78F +:10B9E000A05E59A07A0505F9CFD5EA296A81EFDD75 +:10B9F000583E97FCD8B07DA9FDD2265BD8398E0C75 +:10BA000096E91A761E17BCEBC4F1367B730877DC17 +:10BA1000C8666CC77302CD6FD8D895E27A1B8CF9D3 +:10BA20001C29DFAFF2FA6A0B26B8B0FEDD29EA3C2A +:10BA3000BCFF71B7653E770FCCE7D49388AF630A3C +:10BA40007CA4B760FD3AD4BFC09CCF028F80F310B6 +:10BA50009BDFC390BEBE69CC5F648E47F04562BC7D +:10BA60006D15237FF7A7530581EA01BE25E0773DD9 +:10BA70000CBF8BCCF708F85D2CA4B17CA4AAF3F220 +:10BA8000C67C3953C430DCC6B274362381F45A9272 +:10BA90003312937A518E35E29E243EA0733BA21C52 +:10BAA0004852DC8374BC6FF98FF7960DC3F7EDAC89 +:10BAB000CAF097F07275F64E4A9F7C27B896ECDA7A +:10BAC0009B2288DF34D88314D70EB52BE4BFB6D8B9 +:10BAD0004D4DBBF07395DE0DAB51D938A274219F4B +:10BAE00031EDA8A7EE50C97FD9F04F36BADFC6F4C2 +:10BAF000C3D9F9D0981DEF850CB17BB238D9E27764 +:10BB0000F3123F36FD6DD7FADD75C7C95EA35E013E +:10BB10001341F3B22291CBA374D407201D95C9140D +:10BB2000B4BFA61BE7F6134A19DB9E84F79B682275 +:10BB3000EE4FFD3BA315B4A7304913DBF0FB1937DB +:10BB400028FCBC015F8774FD75E1047CF7D7118286 +:10BB500022829CCDAE9E4CF7A00CC6E37888AF8CB9 +:10BB600024A7825B121FC7B8AAF35B32E969CAAB8C +:10BB7000A22641467F6FB1A2D07E655511149F6504 +:10BB8000CAADB328B742F6C1D91752C691DCAA078D +:10BB9000B915C2C75FD93886F3B94F63891FFDB69F +:10BBA000D4E6A965788EA2EF1CDA137FBEFAE4838F +:10BBB0007520FFBF8987A300D7BCF4AFE71ED46F01 +:10BBC000632CB3E9EF7EDE06E3FAF1E52815C765DD +:10BBD000DEC7F5DEA8BEB5DE103EF9F3D55CBFFCCE +:10BBE000F96AD178AADC2FC5AAE6D0BD03B3196BD8 +:10BBF0004A42D27BF9419CDFCC0D918CC75DE85B5A +:10BC00001F42BA7B5656D1DE7B5FC5DB0FA0FEFA22 +:10BC1000CD0AE1890478FF764D14820216ACF9C58D +:10BC200034E46B417BD7B4E82C8C47F69C26BFEB01 +:10BC3000FD2EC2ED2CD87599F4C59A5411F76B9E60 +:10BC40001E3DEE1CF131EE1F5B66F324CA58BED6D2 +:10BC500046F7199DDDE660983E5916C9E57129BB86 +:10BC600007E38996AECF203DE15D633CCB1CAC8AF7 +:10BC7000F88AAF65DA82483C67C4E4D07D6AD3A312 +:10BC8000EB715E8BB2AAC6E2FB80D447E7EC9AD395 +:10BC90000D3F433AC709522EEC09A037E9A967784E +:10BCA0009C81710F84F57E87E61C8E1302550E0B66 +:10BCB0004EE86943BDE6604D384E68B6B7709C905B +:10BCC000D19B87E709027E91A1FE7918F003C67D1A +:10BCD000D4456A89E80FDAC6F87E3FB1DAFBFBD5B6 +:10BCE000D3D03F2277217DFEAAD2F00FC6C5D0FE69 +:10BCF000D96EE7FE9691F806FA5BE83C98C1274CAE +:10BD0000BF57B61C3C88E723B77F27D203DF423BEF +:10BD1000BE3F225FD9BEFC7B8574CEC1C2C74CFF3B +:10BD2000D648FE0FEBBE2DEEBA99F0006B8C64E79F +:10BD3000C3FCD33CFF52691ADD13C09CEE4CE437C0 +:10BD4000B1467F4F7E3A95EE87FDF8D3D1ACD683CE +:10BD50006EA42A622EB186BF17F57BAEEF737E17F5 +:10BD60006BC40BC51EA9277DFEF403CC23240E96BD +:10BD70006746799D55E9780F65AC715ED46AE73FF7 +:10BD80007587A706E30EEA52A52A3C5711F2BD407B +:10BD90007CDFB07F523F85A1F54F34703864E57E7B +:10BDA000368CDDCB9A76A8163B6F26E7BB71CCFCB0 +:10BDB0000BB17BD9F01C982620BF3F9DE7F4D460DF +:10BDC0005FBC23F06F83EF9BF5C42916FE6DF9CE9F +:10BDD0005C0FE7523BE1B0DECD02E1D42CBBEF09B2 +:10BDE0008C672AA98EF0A0EA54F20CA34A8B7581C5 +:10BDF000FCBC798D1CB79535F1F265BFF3519C61A0 +:10BE00007175A40797B5E4DF94258590BFAEDA4538 +:10BE10007AFB59BC3519F9329427FBA8CE7E8D7A6E +:10BE2000F45A63DD4B8EFCBA1ED7DDBCD7ABD6A06F +:10BE3000FF656B5289DE8385F67585F8CE768AEECE +:10BE40001D2B99CA26E0398781713DC3F55190D7E2 +:10BE500034AE157AB8FEB9AE313C5D62F107FFD55C +:10BE60009A70BDB36C0D0B3B678FFD8C8DF9E2EDC5 +:10BE70003037DFB713A51E7138FF8CB91EA6DFBBA4 +:10BE8000759AE937EFD1F0F72B6267380C39C6EFB6 +:10BE90005333FDE887654F0DDA0D5A739D7D78BFEA +:10BEA0005524FBB75C2C3F709F95E1571FE99EB46A +:10BEB000588B3E1E69499B7C435F137E8EE7F4A638 +:10BEC000A914576CF207EB78CC7BCE3EEF7D66E68B +:10BED0003D69E67D66E6BC206DE1BC9C35EE193817 +:10BEE0005D779EE20D2E55833648F69387C91E7303 +:10BEF00076AFC0CF451BF61A9F314FBEEA9BE6A234 +:10BF00001C3A0EF388FAF49FDB8E72B7D58EC254BA +:10BF1000B28B14E1392D5C57839E4CBB4AD126DB92 +:10BF2000598C732DB2DE3FD6661F4C333C371E9EB4 +:10BF30006FEE9F672D746DD2DFD57057B2113763E6 +:10BF4000F5E7FC7DC79EE21D307FBD7B93E8BEDB3D +:10BF5000B7D6987EAF2A8A1B2B0F30B23B7C597123 +:10BF600029C9D2F07118FFB44618F65E56F33BD3D8 +:10BF7000BF54FFB011DFF3F097734FF5D5E27B4E5E +:10BF80008E6BF9FA74E8C70D6FD83C3ACC9F6D59A7 +:10BF9000E79BE8FF4EE8B179EE6283EB765AE574F1 +:10BFA0002E453BE93C582BEB49E47A84AF9BEE9D50 +:10BFB0005FCAEF31867937E3029211D71C8E0E2EBD +:10BFC00045FCD0817101506E5FB310161710E38FDE +:10BFD000F1D440DABD96AF5B493E8F0B78307E11CD +:10BFE000FD6E436F2B8F3BEE8DAC4A5A903558CE89 +:10BFF000219ABF63A00A0B2762FCB24AF97623DFBD +:10C000009CA75D2E43AF63AA40F2C828FF18F20F29 +:10C01000E4FFCD0EF2BBC4E4737F80F488E320E23A +:10C02000A6C8B5AAE944A1F1EC692E277F007C9F40 +:10C03000847465C6259C6FE27109809C28BE631CD0 +:10C04000CC3FE2C7F3FE297937A39E69C429ECD916 +:10C05000FB8180F7599EBF0095405A12833568CF07 +:10C060006322AB42DC7ABEF9831AF403B583BC4782 +:10C070007BE4F9F820E18E768C4B50307E6FEAAB92 +:10C08000387F1F158864370609D48DF6D712CD493D +:10C090007189AD05EF9C403B5F6B8E4C4C695C93A6 +:10C0A00095EE8234FE710562970CFB779C717FD10F +:10C0B000B8ABC41BEC6B761887841F7FA80B94D099 +:10C0C00012F4C7C7D13D8BDC6FBE97FB4547F2EF3B +:10C0D0009FB1D0ADAF3AFC1CF260FD7B9EED92F8B3 +:10C0E000FBD0FBCDE92FE47CF9B8828335380F8390 +:10C0F0007E469E4F3808E8B10396037193AE4A34EA +:10C10000AFD6F3E6B1C6F972132F997EE982B5DC9A +:10C110000FFB755C77EE8F26DC3A70AEDD2FD277A1 +:10C12000E80FC0F57FCCBC3FAD223C8E10FFD08F16 +:10C130001D8BF405F3B7782DE7034BD6729C1CBB1F +:10C140004C36EAF1503D56DC3612AE33FDDA3F5B39 +:10C15000E3BD7FEDB4C173ECD09F536867486E7246 +:10C16000D0B9C9062150837E62D8A35518EF74DE7A +:10C1700015A841FB20609C0D35FC5E0FF203D3FC3B +:10C18000427F3B5CC63E6815681F0CA1878AF07829 +:10C19000CE52900F38AE22241498EF07D7A6D1BC08 +:10C1A000ADC0DF39215CA9D6A1BF629C5F988E76B5 +:10C1B0009B5277AA1C0DCFA238A11E9F77A57C4861 +:10C1C0007EF9D7C6EA4EBCB7A263BB8D7E1FAB23F8 +:10C1D00032F853BC5752DF1E49FA98958EB6ADE53A +:10C1E0007E79D35F8B1420C2383284012AF18930E2 +:10C1F0006FBB8DC4636BB9FF37B6C09BE7423DB7D9 +:10C2000061FC14ECDEA3089CA6D1B80B87E3DBBB72 +:10C210000DFE11D20EDDFBD24B43033EDB167D47F4 +:10C220005116D62F98FE5E9D859C878EC957EEC00D +:10C23000F1B5ADE5FE42269D9D8CFBAE239AD7A7B6 +:10C2400089CA1D0B42EC5F6DC6B89893977B4CA8CA +:10C250005ADA8FEB017801F5F452CBEF0A15B509E4 +:10C260007A44D4D0FB63ACF7001C1AE85F38CE9751 +:10C270004CBEC9F8BA17D7A51E34EF37C474728103 +:10C280004AE9570DBA35E92BA689C7539F37F8E914 +:10C2900050BEA1120E1ED7284CC1EF7F6AB62F9D4B +:10C2A000257DB518F420C41345CF045E08AA21FCEF +:10C2B0009B713F29ED17C475BE192EE4CF2F19EDE0 +:10C2C0009BF374F89E0964C73B963FC58576B4E539 +:10C2D000DF4A157CEEA1F370353DC7CA0F620AC272 +:10C2E000FDA4AF1BF431CEE2E71F8C0F90299ECF47 +:10C2F0008C0730FDFBFBDF9D75C89C47D4771C463F +:10C30000ACF3876B785CC0FE9C3DE4E76F00BD5EDC +:10C3100020BB05FF3D16365D5651FF381AFD07BAA2 +:10C320006FC0DF66A373F9E6B81D39863F3E6578B6 +:10C330003FBFC3A04B516D213FEDE514FEBB2CADBB +:10C34000DE85AEE1F0C448F5FDAB41F7757BCD7BF2 +:10C35000DD7CF47D6B21D4E3A6F3B41487B00FEF3A +:10C360007F83F60A57F1DF49BA84F7BDB150BF7039 +:10C3700015956F5D167EBF81D9BE7DA85FF893B518 +:10C38000F1F8BB455E0A4EB11B7EE16BC585DDD37E +:10C390001EA3FB57F62C1629FE77CFB46F923DA053 +:10C3A0007DAC48FECBF6991B7A1047FC215E227CBF +:10C3B000E36AF960E72448A7E5D8691CCCB817CF31 +:10C3C000D44F0B9ABA6CA33151C00C7B83EE104949 +:10C3D000CEE8B248BFAFA1DBF159E011F45894B7F1 +:10C3E0002915DFB785E05BC7E27766D1F7F3F8F789 +:10C3F00091FD3AC90F17D30CBC14A4B8CA0823BEC8 +:10C40000AE7551F176F44FDB174CA1FB34DE9CC6C0 +:10C41000CFCFD9E31745FB42F8D3B7D7F1FDD060B2 +:10C42000D75651DCC1664E878EBFF9C3C972A4A32B +:10C4300085A3A8BD8ED6871243CF9FBDB24EE6FC22 +:10C440006E39DFB7A74556D11996EFA0797C659D67 +:10C4500021FF56713E301E708D8A74BE28672B9E58 +:10C460003BD20B393B50256DDE1C68AFDD2BC6215E +:10C470009DC54F5B3C0F71DCD717E7D1144ACD4700 +:10C480006763BAC3035C03C6D3E12DA0FE5EF68EDC +:10C4900092703D4ECBFCF7B04E8F9B2BD584D0F9DC +:10C4A0009BEB32C2EE034FA816C3EF0172681B6804 +:10C4B00091B630BA9F6376354FA701B8C4754F5B0C +:10C4C000349BD2097E99B920ED2C6CD1310EC599DF +:10C4D000EE9B8AF37A2C5A26BB545A21A7133F5657 +:10C4E0008CF2C6EB26FD3FCD3FB7057F3723ED5DD0 +:10C4F0001B437F469DDD9B8C7453172DD139EFB4C0 +:10C500002C3E2F1139F603388E97E49E65F8FD4BCB +:10C510008FF078A19275DCBFEF52C5B0FB8C9C68A0 +:10C52000D78775EF6E9EFE1BC46B1DD31CA407DE60 +:10C53000A679297D5BA10C130D7A1FF3ED457ABA1C +:10C54000FD848375A55E91EE87A5C791CAEF29CCBE +:10C5500073213D005E5F742FAE633FBF7FE1B6BEC7 +:10C560001EA2D3D87C957E8FC43FD79B8CE7A7FEB5 +:10C57000DBA083D6B8F76BF11E763D07E818D7B17C +:10C5800075C93C9C1F7F82340DCB3FB858D4512EC7 +:10C59000EC6F5ED281F13589EB242290FD91DE793A +:10C5A000C887F62F96789C4D9C277941883DAEBD73 +:10C5B00075EECDB8CF81CE0D7015F51CE2BE3BFEF9 +:10C5C0007B14CD6FFB2A46F13AED2E0FF75B4FE35C +:10C5D000F659B43FE0FD4CFB93A476B43FBCDCFCC1 +:10C5E000FD6EA47B796639BF776A8C6927E77CCBBF +:10C5F000B4472C30F8A3FD8D4FEB902ECD7B7E0EF3 +:10C60000CB7D75B8BEFB0DFBC49EA6989F631CEF47 +:10C610009E441BE1F36FCC0EB74720EE43BD38CDEF +:10C62000D08B6FEF93C2F45DE6F66CC5717F3D6F02 +:10C6300006C5ABA559F4DF644BFAB175C6FDA5D7A5 +:10C640007F6FD513EB384E25BA7E73333F17B8DFB3 +:10C65000E97BF526DC9F7E91CEE7ED695A381FF520 +:10C6600090F6776D617CD8FA7CCBC0E91DFE8564BD +:10C670003F5195601DD263C726FE3B42DFB8AD68CF +:10C680001ED6935CCDF58F06D81F88F7E3DA22C853 +:10C69000CFD0D0BAE497385D5EAF487AA9572B1255 +:10C6A00042F9D0DB5B78BC6A7B13AF7FA47E98F540 +:10C6B000EDAFE6E5FCDE2991C39DA77DD7A86FA06D +:10C6C0009CDC9784F66A2B3FB4D66BA6D3D671DC7C +:10C6D000EAF71653FD7B72E6B8D4AC41B9735B41FF +:10C6E0004F2DAA236FB2E0ACD0FB894CB933C08F79 +:10C6F000BE6BF0A3269E1E0FFB19E973BC77613455 +:10C70000D243C622494188EDF4B768AE107EB42703 +:10C71000D2B717F5BFFD0BDCB44FF6187C7DCF8286 +:10C720006401F5AA63D10F119F1C9F9220607D1FA9 +:10C73000ACE3F219EAE77CCC2F065C02C60BF37877 +:10C740009DCBC0C7103FED89CE398AF2459AC8E922 +:10C75000DE3A6F56FEE4C2F1A4213F027E1667F076 +:10C7600023A8B77B6919F5CFE4571DA0DFD3FE9C42 +:10C7700066A776DA679E5D8DFDF8C327A3480EDDB8 +:10C78000CE7A6A47B01F5E17BF32F9C3B7D7453DAF +:10C79000A74B83EBF260FCADC92AB4D31ED9B734E2 +:10C7A000D47F64AE4B01E37622EBB99594F57CFE21 +:10C7B0004A576BF6F554AE45477F0846D0E2FDA9CF +:10C7C0000D4CCF9F02E372A56B149FD590C1E3B3CC +:10C7D000C6ACE7F8FCB5B12DE407D96EE0DF0C9FDD +:10C7E00093EC05DB5312E9BEA5F9E281F44721FF82 +:10C7F00046A39D13E9578E6773635C05D0E3280356 +:10C800000FB9A51686F3372A3D3C1EEBEEF49E3990 +:10C810007823E1236BB49CF5D3D04FDBE2443ADFBD +:10C820009EBED089F33429639713E9767BE7AE7C0B +:10C83000BCBFD03C8F7D67DF2F47DD1287FD93A6FD +:10C84000A29CFED35A9F7D7D089E76646CA473D90A +:10C85000DB234D3D27508AE329CA4CCA0D8D87CC76 +:10C8600036C63F738D770C7E3F3F0180CC149C17FA +:10C8700066EAC95562F8EF8250B9917E17A4C0727A +:10C880001EC73A2F5F33E6AF6FB5361BEB996DB419 +:10C8900093ADB4D07EC866A2A796F4FF70BFD21045 +:10C8A0003F90C5CF74FFCF66381D5FC03FDCBB46ED +:10C8B0002B40BA79BFD27B0FF6AB2EFAD7F43BBC34 +:10C8C000D7EA377E6DAC9688F46AE2C43A43FF3CFF +:10C8D0009CAB1586D2718531FE8AF51CEF498576B1 +:10C8E000E35E81F9CA707C3362B5AF687D086E92F1 +:10C8F000147EAFC07C99CFB30063AD4D1ADC3FAF5F +:10C90000B2AAA6A5A8AFAD57F97EF9C1DB6EB403F4 +:10C91000CC9703E92D59576F2F67487B1AE9616A55 +:10C9200016F7B7D42AFC7756357BF04D15D24580E3 +:10C93000A7E8BE68CB7E349F68EF0EE54768EF0E30 +:10C94000C57D68EF0E4DA3BD3BB43CDABB43F3D1CC +:10C95000DE1D9A3F738DAF01D70BEDDEA1EFD1EE57 +:10C960001DFADD2795DEED38AEBBC6AEA4FB24561E +:10C97000AFD17660FA3AE4F2A3F85DD91D5E5AEFC2 +:10C980006DF1C63ABF5849F3638F8F991C1A777DB2 +:10C99000C4586F98D77DA1FBD31EC7E7B54E11E9E8 +:10C9A0001ECA259122DDA36DDE4F3612BDDD66DC89 +:10C9B00027793BF0157CDED11F41CF3BFB5DF4D4E2 +:10C9C000FA63E999DB1F4DCFBCFE31F49CD59F443F +:10C9D000CFD9FD692427E7F4A7D2736EFF2DF4BCED +:10C9E000ABFF667AE6F74FA572F3FA27D3737EFFA3 +:10C9F000D7E87977FF4C7A96AEF63E8DE328DBFBDD +:10CA0000A01BE7B1778DF7199C8F0601B4E934DAE2 +:10CA10003FCFAE27BB400F237BEC11AD90F881C810 +:10CA20007F57EBB94ADF3FE0F743EE45538E7F82F5 +:10CA30007AAB638D46DF37ADF675533D4EA7530A8B +:10CA40008D0F896344FF17576B47A99E2F391EE44A +:10CA5000706ADF72940B178C7D9D51F837AE85F8A4 +:10CA6000BB71EB398E3E7CA3894B79BCF49965C6CA +:10CA7000392BFFF0F762DB8CF533D3AB8C38089B96 +:10CA8000E421F960EB9729FFAEB11DC4AF5FC97413 +:10CA900069B661F4854F2A7DEF87D2D37C9569C949 +:10CAA0003124472EE07BE0E71FD0FCD8F9F9FA33B8 +:10CAB00016BF3DACC3EF875B078CF3F976085F8543 +:10CAC00075F888D6011722F49C7D358F77BDDEF985 +:10CAD00077AC31E20A8C7932F907F4FB4FD85E97D4 +:10CAE000C4EF1DA8557FAAA1EDCDD5A76B1867FB94 +:10CAF000FF002ABF0E840080000000001F8B08008A +:10CB000000000000000BA5586F6C14D7119FFD7337 +:10CB10007B6B7C77DE737C70AEEDB08731B88D9D1A +:10CB2000ACC1767CAA0B8B710A89DC76EBD2E888E3 +:10CB3000885843491BCEAAEE5095BA2DC54B0C061A +:10CB40001CDB39A742907CC90925699152E4FE910A +:10CB50000C51AA6E2869483F599555F543D41C09D4 +:10CB6000B5941824A39416A454EECCDBDDDCF97C38 +:10CB7000366D7A08CDCDBD37F3667E33F3669EEF12 +:10CB80001E34855404C07FC7B02B00E0F1D8765026 +:10CB90009026FB7531D506F0F1E045F8B0017FC86D +:10CBA0009C31FEDD0E7000BF82007010409F0C00B3 +:10CBB0002CD0676B9E7E92EE2A27B9A7B64C470D04 +:10CBC0005C1F0B4E4735A23E48D0FE3FD54D278C0B +:10CBD00002B9B5295486FBD7A47846DF0D3C7B0506 +:10CBE000BF41E7FA6981E878BFB986ECDB523BBF09 +:10CBF0009D435E5440349B002E6C433D48C584CF1A +:10CC0000DA1842FE8DC7947D4D4BED294FEE5B4BFC +:10CC1000F21E2F2A9A44FBE693BA4A76424E0CCF74 +:10CC2000CACC2528942BA62809B38DC03E0BB8D9B1 +:10CC3000DFAF37925E085401C45792B300709F4033 +:10CC4000C657E3D67EA385CEB5442BB00945FB1469 +:10CC50005E1BC1A5BB078DCDA4EFAABA3F42FE2142 +:10CC6000FEAD9F13FF2F3BF86B51C2672886B82398 +:10CC7000F529BCB586E1F484D25742AE35D9D74DFB +:10CC8000721EEFABD2B93E948337F504B422E5D1DE +:10CC90004EA45307CDC7186EBAAE56AD0620B740A6 +:10CCA00045AAFCF12E87FA4793E6D7192EB22C8BB2 +:10CCB00068AFCF810CF58164E2B91F25F56FB0F53F +:10CCC000CF8DBBC2F2C4C3FD426CFE49CAA7BFD11F +:10CCD00006E41B1247CA7A8300DF4D710CF70B1B69 +:10CCE00000A6C90F713E08B8EFFD3DBD154461E0D7 +:10CCF0003E168FE2F3843B1CD89BF3FCD349959DF1 +:10CD000027881A28015A17D93AC6F169F24317152C +:10CD1000C9C0F3DEF7E578C209A3AD08350CA75406 +:10CD2000299CE04DC5FE219A0E8742DA88C6F0FAAA +:10CD300001C38300C37D7B5DBCF61EE6185EFF3732 +:10CD40004EAE9F0D570EBF9CC3736F5B22501CAD40 +:10CD5000AED4CF89B79EF52B4348CF941F7939873E +:10CD6000BF0F88B2E2D7484BEA61A319E0F42080F4 +:10CD7000ED67FC438CF759AC7EFDF064C53783F951 +:10CD8000F39FA7FA453F22CAF8A5EBF7D17E096CBD +:10CD9000B42744F6D4135FABCC96E7ED7B22A967AA +:10CDA000C8EF8864C2063C7FA299CF5A08921A50F5 +:10CDB000767F07ED381195595D44763C0E16E155A6 +:10CDC000C1671B62243D793586FC70330F2384A72D +:10CDD00068AA64C7701D7EFF02AD5FBF6337D1E9EB +:10CDE000320FA4B796CF8EA0DC502DC6BDC4FDE097 +:10CDF000D163AE9FCBAD0B915DC636D49709881A2F +:10CE0000C191E9EEDDB90DED14C3BC93DF44D9F94E +:10CE1000B9015BA450E764CA0B31EEE4DB727A4FD0 +:10CE2000D1B91BF37C59A3A5B3B883A6F078DEF182 +:10CE3000E07A8EECF7D67F9776F2FA78D0B94F5732 +:10CE4000356674DA77A2AEBD9D72445E9F8159FC4F +:10CE50005D6ECCC287484F54CB892CFAFD88D069CF +:10CE600090BD13D1AA300B279819F247EE545A08F7 +:10CE7000E7A9B413BFD383272F5DC7A21D1BCC30F6 +:10CE80001A910D2E857A8251E99A80C15CBD0BD72B +:10CE900065378EF83FD49A59C40F07BD7ACBC98441 +:10CEA000B70FFECA70186FFD40261C54987679B7EC +:10CEB0000E410FB5E13D51E5E67D313EA32E3E2FFB +:10CEC0000CCA6E1EAA1CE56165377FCDFF20AEDF60 +:10CED000EFF697AF4C27F6A37FA12A59DB49F1B0B3 +:10CEE0003B5E14901FEB9060A484DEF1B60F987D3A +:10CEF000C5F6F82E7F042AF22131071AAE87A2FF69 +:10CF000000BD295F073B3A53A0A0B1A11921EBC78F +:10CF1000B8847601333ED2095915F9A3D5FFB4F090 +:10CF2000AE83F1DDD8D3080FDF3CBB87E58ED9F7A0 +:10CF300000ED95A1E72DB2335A2380BF0337184E79 +:10CF40009D24F0DFC23AC2D7E13D3C2BA1808F91F6 +:10CF50003CF2729E07614F85B9427E0DBC57F6F6D2 +:10CF600095027D900E56CD3E80B41DDAA90EEF25B8 +:10CF7000FFAF41F9ED2B980713AD2BD7CFE8600732 +:10CF8000C3E76783BA1BAF9D8CBE46FDCB97DFB767 +:10CF900081FA16EA19FEE93CF4E2B915F68F601D34 +:10CFA000E2BD81F2BA8DF6CB5CE17EFF59E074DC24 +:10CFB00087B71927521F3A0BDAAB58F75B3FFDFDD5 +:10CFC000D57554DF33F59B0AE3EBE9F1F8F36EDC3A +:10CFD0009E6BEA657E9EEFE677523D9C1733AB2A47 +:10CFE00057F0E74BAFF0799C0BF417D7C7690E7475 +:10CFF0000C129C0E3BF7E2987D6A1BF50179A6FEA8 +:10D000005C1997976B71ED8A508BA8A4342E88E336 +:10D01000BA7BD7D5C4A3B928E5B3CAE321F7637EA9 +:10D020003DF2D5F8DFE91EAF038DC683CA2D4A75E0 +:10D030006F411C4FBAF7C444D8E9FFA37550DDDB3C +:10D04000B4743D1376EE914C19247E5D028F936982 +:10D05000673E1BE59C7D5EFCF2EB32D373D2BD3F95 +:10D06000226A0A0CB42B82F581B307AC8EEEE26C17 +:10D07000E4952E395581F92E66724076A354EA253F +:10D08000CDF1EF53AC7F7615C496E21030C6C1A641 +:10D09000CB4115B51DD1A5B8C8307A8BEE25599373 +:10D0A00016C5EB7FAD8BFD5E5D94419953173DFC3A +:10D0B00071B4F376279F65B31B98BC115CBE3E60CC +:10D0C000EBCAF5317E8FFE120AE54C6801F8F1AD2E +:10D0D00037068ED5329C593F19BAF5CE80457EF879 +:10D0E000F467D26DE42FCE1B78FFF5754816F90D65 +:10D0F000C77C37729E1F9847A155966994F05B9143 +:10D10000BA8EA423AC5FF2245F1C478F3EEFE6A9E2 +:10D1100097E7DEEF286AC3A6A5F1F147458BEEE15C +:10D12000E1EA67945278B726CDDFA40BE66F7FADB6 +:10D13000CEB1FE26F400E5C56D03B202C6DDBACC61 +:10D14000719FCD3935D416D0D476762E1B9ED6005D +:10D150004E07C2D2B8554396FD5E0336073867D4F2 +:10D16000418EF16B7162251AC38A215A0F3A4FEB37 +:10D170000D1847E23782C5E81721CBE80360B3F505 +:10D1800066C8319E90A23A7EC806363FB4802AD047 +:10D19000EF9B4117685F1B988C7F182C46E360DE7D +:10D1A000E5D0CEF1F8532D34BFFF92F2A9BC309FE9 +:10D1B000FEBB7B762A0D0CFFE5E263BB7526F80CFF +:10D1C00036970B11092CB4EFB83BE717EF9F72DFCE +:10D1D00055A24F57D8FCEACD29D6B72FD29CB29C86 +:10D1E0003D1E1DF66957A9BF0D077976CE67739668 +:10D1F000F5B58B6F15F843F320E59544F3DFE6A50D +:10D200007AEE350F8E8AFA9F597E16FDFE1A7D89B9 +:10D21000D33CADFF85F2BF86F280E6161D142B4E7F +:10D220007C86231C02DF43BE9AE5C1515A0F99A0A8 +:10D23000D13ACED7D7480EE7462637847935D292F1 +:10D24000E74DD3E5CF56967C0FE4EDB79C64EC49EF +:10D25000ED66C38AFB1E9A499B3798DD3ADE5085FE +:10D26000EFA13DF81E7A90F97593D615AF6EE540A3 +:10D27000C9BA05B52E4CF78F97FF1F531FC48BFDFE +:10D28000C2115BA2F9A1DF7E57A2B9A4FF17BF921A +:10D29000A81FEE75DF9349374FE0701BE32593BF5E +:10D2A0004CF6CD4DD69FA3BC9D9B448D68E7DCB169 +:10D2B000D839326EEEF54FFEB040EF005C77EEB538 +:10D2C000A3CE3B01F5C8ED94F48EFDD0A3EB71F62F +:10D2D000EE83797AA7787D74EEF56F397D7452709C +:10D2E000FBA87D93FAD2F9C98D2ACDEF0716B6C3F4 +:10D2F0004F486EBBACBD8A7207CEDC6CDE57902700 +:10D30000C57D955795E129B24793B411258FCF126A +:10D31000FC95C5FD923EF45EF2ECE555E3FB9748C3 +:10D320000FBDA7D5E5E3284EFAAF515C6EF8E022B9 +:10D330005751426F511C8BE33493361A0F215EDC38 +:10D34000E43B2CBEC5711B73F31515B339356CC79F +:10D35000D93C29FCB65DA7B885BB3528FC3B85BA0E +:10D36000BBAB85F4854585A3FA0CAB6E3C5B372DD2 +:10D37000FABB42D3217ED15CE3E5E37F0098C7028C +:10D3800097C0110000000000000000000000000035 +:10D39000000000400000000000000000000000400D +:10D3A0000000000000000000000000280000000055 +:10D3B000000000000000001000000000000000005D +:10D3C000000000400000000000000000000000100D +:10D3D0000000000000000000000000080000000045 +:10D3E000000000000000000000000000000000003D +:10D3F0000000003D00000000000000000000003CB4 +:10D40000000000000000000000000000000000001C +:10D410000000000000000008000000000000000004 +:10D420000000000000000000000000000000000CF0 +:10D4300000000000000000000000000E00000000DE +:10D4400000000000000000040000000000000000D8 +:10D450000000001800000000000000000000001C98 +:10D4600000000000000000000000001C00000000A0 +:10D470000000000000000013000000000000000099 +:10D480000000003E0000000000000000000000015D +:10D49000000000000000000000000002000000008A +:10D4A000000000000000000100000000000000007B +:10D4B000000000100000000000000000000000500C +:10D4C000000000000000000000000000000000005C +:10D4D0000000000000000003000000000000000049 +:10D4E000000000AB00000000000000000000000889 +:10D4F00000000000000000000000C000001000005C +:10D50000000000080000C008001000000000000239 +:10D510000000C000001000000000001000009C0887 +:10D5200000040000000000040000C08000100000A3 +:10D53000000000040000C08800100000000000028D +:10D540000000C080001000000000001000009338B0 +:10D5500000010004000000010000934000000000F2 +:10D5600000000002000093480000000000000008D6 +:10D570000000934C000000000000000200009350E7 +:10D580000000000000000008000096980040000025 +:10D590000000004000009358008000000000004898 +:10D5A000000094580040000000000008000094684B +:10D5B00000400000000000180006301000280000A5 +:10D5C0000000002800009950000800000000000141 +:10D5D000000099510008000000000001000099526D +:10D5E00000080000000000010000200800100000FA +:10D5F00000000010000020000000000000000008F3 +:10D6000000009BB8000000000000000800000001BE +:10D610000000000000000000000000020000000008 +:10D6200000000000000000030000000000000000F7 +:10D6300000000004000000000000000000000005E1 +:10D6400000000000000000000000000600000000D4 +:10D6500000000000000000070000000000000000C3 +:10D6600000000008000000000000000000000009A9 +:10D6700000000000000000000000000A00000000A0 +:10D68000000000000000000B00000000000000008F +:10D690000000000C0000000000000000000000017D +:10D6A0000000000000000000000000090000000071 +:10D6B0000000000000000002000000000000000068 +:10D6C0000000C4C000000000000000200000C4E60C +:10D6D00000000000000000010000600000200000C9 +:10D6E0000000002000007300000800000000000897 +:10D6F00000009BF0000000000000000100009B9073 +:10D70000000000000000000800009B9300000000E3 +:10D710000000000100009B910000000000000001DB +:10D7200000009B96000000000000000100009B9795 +:10D730000000000000000000800000000000000069 +:10D740000000000080000000000000000000000059 +:10D7500000000000000000000000000000000000C9 +:10D7600000000000000000000000000000000000B9 +:10D7700000000000000000000000000000000000A9 +:10D780000000000000000000000000000006000093 +:10D79000000000000000002000009B980000000036 +:10D7A0000000000100009BD80000000000000008FD +:10D7B00000000053000000000000000000009BE09B +:10D7C000000000000000000200009BE400000000D8 +:10D7D0000000000100009BE50000000000000001C7 +:10D7E000000000090000000000000000000000012F +:10D7F00000000000000000000000004400000000E5 +:10D800000000000000000001000000000000000017 +:10D81000000000500000000000000000000000892F +:10D820000000000000000000800000000000000078 +:10D8300000000000000000000000000000000000E8 +:10D84000000016C8000000000000000800002008CA +:10D850000010000000000010000020000000000088 +:10D860000000000800001AA80000000000000010DE +:10D8700000001AB8000000000000001000000001C5 +:10D880000000000000000000000000020000000096 +:10D8900000000000000017E0000800000000000188 +:10D8A000000017E10008000000000001000017E27E +:10D8B0000008000000000001000620780038000089 +:10D8C00000000038000016F0000000000000000218 +:10D8D000000016F200000000000000020000A0405E +:10D8E0000000000000000020800000000000000098 +:10D8F000000000000000E000002000000000002008 +:10D900000000F300000800000000000800001708F5 +:10D9100000000000000000D80000174F00000000C9 +:10D9200000000001000017270000000000000001B7 +:10D9300080000000000000000000000080000000E7 +:10D9400000000000000000000000000000000000D7 +:10D9500000000000000000000000000000000000C7 +:10D9600000000000000000000000000000000000B7 +:10D9700000000000000000000000000000000000A7 +:10D9800000000000000017880000000000000001F7 +:10D99000000017C80000000000000008000000514F +:10D9A0000000000000000000000017B000000000B0 +:10D9B00000000004000017B4000000000000000494 +:10D9C000000017B80000000000000004000017BCB1 +:10D9D0000000000000000008000017A80000000080 +:10D9E00000000008000017D800000000000000023E +:10D9F0000006000000400000000000400000C000E1 +:10DA000000400000000000400000C02E0040000068 +:10DA1000000000010000C000004000020000000102 +:10DA20000000C00100400002000000000000E20011 +:10DA300000200000000000200000E20400020008B6 +:10DA40000020000280000000000000000000000034 +:10DA50000000E20000080020000000040000F500C3 +:10DA600000280000000000280000F6400010000020 +:10DA7000000000100000F64A001000000000000145 +:10DA80000000F6C000200000000000200000F6C0EA +:10DA900000020020000000020000F300004000002F +:10DAA00000000040000020080010000000000010EE +:10DAB000000020000000000000000008000011A885 +:10DAC0000008000000000001000011A9000800008B +:10DAD00000000001000011AA000800000000000181 +:10DAE0000000400000200004000000100000590069 +:10DAF0000030001800000010000059080030001825 +:10DB000000000002000057000008000000000001B3 +:10DB1000000057010008000000000001000011583B +:10DB20000000000000000001000011600000000083 +:10DB300000000010000011AC00080000000000040C +:10DB40000000400000200000000000200000530002 +:10DB500000100000000000100000000000000000A5 +:10DB600000000000000000000000000000000000B5 +:10DB700000000000000000000000000000000000A5 +:10DB80000000000000000000000014700000000011 +:10DB900000000001000014B00000000000000008B8 +:10DBA0000000005000000000000000000000147899 +:10DBB00000000000000000040000147C00000000D1 +:10DBC00000000004000014800000000000000004B9 +:10DBD000000014840000000000000004000014880D +:10DBE000000000000000000800002AF00080000093 +:10DBF00000000080000000010000000000000000A4 +:10DC000000002008001000000000001000002000AC +:10DC1000000000000000000800002C700008000058 +:10DC20000000000100002C7100080000000000014D +:10DC300000002C72000800000000000100004158A4 +:10DC400000380000000000388000000000000000E4 +:10DC50000000000000002C4400080000000000024A +:10DC600000002C46000800000000000200002C54B8 +:10DC7000001000000000000400002EB000000000B2 +:10DC800000000020000060000020000000000020D4 +:10DC90000000730000080000000000080000000001 +:10DCA0000000000000000000000000000000000074 +:10DCB0000000000000000000000000000000000064 +:10DCC00000000000000000000000000000002F58CD +:10DCD000000000000000000100002F98000000007C +:10DCE00000000008000000500000000000000000DC +:10DCF00000002F80000000000000000400002F84BE +:10DD0000000000000000000400002F880000000058 +:10DD10000000000400002F8C00000000000000083C +:10DD200000002FA80000000000000002800000009A +:10DD30000000000000000000800000000000000063 +:10DD40000000000080000000000000000000000053 +:10DD500080000000000000000000000000003128EA +:10DD60000008000000000001000031290008000048 +:10DD70000000000100062A202600004000000008E4 +:10DD80000000A0000000000000002000000040C1D2 +:10DD90000000000000000001000040F00000000052 +:10DDA00000000002800000000000000000000000F1 +:10DDB000000060000020000000000008000040009B +:10DDC0000008000000000001000040010008000001 +:10DDD00000000001000040400008000400000002B4 +:10DDE00000004060000800040000000400004080C3 +:10DDF00000080000000000040000400000080000CF +:10DE000000000004000040040008000000000004BE +:10DE100000004040000000000000000800004048F2 +:10DE2000000000000000000800008000000000006A +:10DE3000000000100000504000010004000000013C +:10DE4000000050000000000000000020000050080A +:10DE500000100000000000040000500C0010000042 +:10DE600000000001000052C7000000000000000197 +:10DE7000000052C600000000000000010000300059 +:10DE8000004000200000000400003004004000209A +:10DE900000000004000030080040002000000002E4 +:10DEA0000000300A00400020000000020000300C9A +:10DEB00000400020000000010000300D0040002064 +:10DEC000000000010000300E0040002000000001B2 +:10DED000000030100040002000000004000030145A +:10DEE0000040002000000004000030180040002026 +:10DEF000000000040000301C00400020000000046E +:10DF00000000C00001000080000800040000C00400 +:10DF100001000080000800040000000A000000006A +:10DF2000000000000000C068010000800000000147 +:10DF30000000C06901000080000000010000C06C0A +:10DF400001000080000000020000C06E010000809F +:10DF5000000000020000C07001000080000000040A +:10DF60000000C07401000080000000040000C066D2 +:10DF700001000080000000020000C0640100008079 +:10DF8000000000010000C0600100008000000002ED +:10DF90000000C06201000080000000020000C050CC +:10DFA00001000080000000040000C0540100008057 +:10DFB000000000040000C0580100008000000004C0 +:10DFC0000000C05C01000080000000040000C07C74 +:10DFD00001000080000000010000C07D0100008001 +:10DFE00000000001000010180010000000000004F4 +:10DFF00000001090001000000000000400001098C5 +:10E0000000100000000000040000111000000000DB +:10E0100000000002000011120000000000000002D9 +:10E0200000001114000000000000000200001116A2 +:10E030000000000000000002000060400008000036 +:10E040000000000200006042000800000000000222 +:10E05000000060440008000000000002000060466C +:10E0600000080000000000020000608000080000BE +:10E07000000000080000600000080000000000022E +:10E0800000006002000800000000000100006004C1 +:10E090000008000000000002000060C0000800004E +:10E0A00000000008000061000008000000000004FB +:10E0B0000000610400080000000000010000614051 +:10E0C0000008000000000002000061440008000099 +:10E0D0000000000200006142000800000000000291 +:10E0E0000000618000080000000000040000300013 +:10E0F00000080000000000020000300200080000DC +:10E1000000000001000030040008000000000002D0 +:10E110000000304000080000000000020000304411 +:10E120000008000000000002000030460008000067 +:10E130000000000200003660000800000000000837 +:10E140000000308000080000000000020000308461 +:10E150000008000000000002000036A000080000D7 +:10E1600000000008000080400008000000000001DE +:10E170000000804100080000000000010000804213 +:10E1800000080000000000010000804300080000BB +:10E1900000000001000080000008000000000002F4 +:10E1A0000000800200080000000000010000800460 +:10E1B0000008000000000002000080C0000800000D +:10E1C00000000002000080C2000800000000000201 +:10E1D000000080C4000800000000000200008080F1 +:10E1E000000800000000000100008081000800001D +:10E1F0000000000100008082000800000000000113 +:10E2000000008083000800000000000100008084FE +:10E2100000080000000000010000808500080000E8 +:10E2200000000001000080860008000000000001DE +:10E230000000600000080000000000020000600212 +:10E240000008000000000001000060040008000059 +:10E25000000000020000604200C000180000000240 +:10E260000000604000C00018000000020000604C88 +:10E2700000C00018000000080000604400C0001842 +:10E28000000000080000605700C0001800000001F6 +:10E290000000605400C0001800000002000060563A +:10E2A00000C00018000000010000664000080000E7 +:10E2B0000000000800006680000800000000000860 +:10E2C000000066C000080000000000080000DA82BC +:10E2D00000180000000000020000DBA000000000A9 +:10E2E000000000000000E00000000000000000044A +:10E2F0000000D10000000000000000040000D10474 +:10E3000000000000000000040000D1080000000030 +:10E31000000000040000D10C000000000000000418 +:10E320000000D11000000000000000040000D11423 +:10E3300000000000000000040000D11800000000F0 +:10E34000000000040000D1000000000000000020D8 +:10E350000000928000000000000000040000928095 +:10E3600000000000000000280000805000A800000D +:10E37000000000010000805400A80000000000011F +:10E3800000008000000000000000005000008050ED +:10E3900000000000000000100000960000000000D7 +:10E3A00000000004000094000000000000000004D1 +:10E3B0000000940400000000000000040000940825 +:10E3C00000000000000000040000940C00000000A9 +:10E3D0000000000400009410000000000000000491 +:10E3E00000009414000000000000000400009418D5 +:10E3F0000000000000000004000094000000000085 +:10E400000000004000009420000000000000000414 +:10E410000000942400000000000000040000942884 +:10E4200000000000000000040000941C0000000038 +:10E430000000000400009430000000000000000410 +:10E440000000942C00000000000000040000943440 +:10E4500000000000000000040000928400000000A2 +:10E460000000000400009280000000000000000492 +:10E47000000092900000000000000004000092A440 +:10E4800000000000000000040000943800000000BC +:10E49000000000040000943C0000000000000004A4 +:10E4A0000000B98800000000000000000000D0005B +:10E4B00000000000000000040000B10000000000A7 +:10E4C000000000040000B10400000000000000048F +:10E4D0000000B10800000000000000040000B100CE +:10E4E00000000000000000100000BCB000000000B0 +:10E4F000000000040000BCB40000000000000004A4 +:10E500000000BCB000000000000000480000D86817 +:10E5100000000000000000040000D86000000000BF +:10E52000000000040000D8640000000000000004A7 +:10E530000000D86C00000000000000040000D8605B +:10E5400000000000000000100000D8500000000093 +:10E55000000000040000D854000000000000000487 +:10E560000000D85000000000000000080000D4C8DF +:10E5700000000000000000080000D4D800000000E7 +:10E5800000000080000000100000000000000000FB +:10E590000000D4D8000000000000000800000000C7 +:08E5A000070D0100000000005E +:00000001FF --- linux-4.8.0.orig/fs/9p/acl.c +++ linux-4.8.0/fs/9p/acl.c @@ -276,32 +276,26 @@ switch (handler->flags) { case ACL_TYPE_ACCESS: if (acl) { - umode_t mode = inode->i_mode; - retval = posix_acl_equiv_mode(acl, &mode); - if (retval < 0) + struct iattr iattr; + + retval = posix_acl_update_mode(inode, &iattr.ia_mode, &acl); + if (retval) goto err_out; - else { - struct iattr iattr; - if (retval == 0) { - /* - * ACL can be represented - * by the mode bits. So don't - * update ACL. - */ - acl = NULL; - value = NULL; - size = 0; - } - /* Updte the mode bits */ - iattr.ia_mode = ((mode & S_IALLUGO) | - (inode->i_mode & ~S_IALLUGO)); - iattr.ia_valid = ATTR_MODE; - /* FIXME should we update ctime ? - * What is the following setxattr update the - * mode ? + if (!acl) { + /* + * ACL can be represented + * by the mode bits. So don't + * update ACL. */ - v9fs_vfs_setattr_dotl(dentry, &iattr); + value = NULL; + size = 0; } + iattr.ia_valid = ATTR_MODE; + /* FIXME should we update ctime ? + * What is the following setxattr update the + * mode ? + */ + v9fs_vfs_setattr_dotl(dentry, &iattr); } break; case ACL_TYPE_DEFAULT: --- linux-4.8.0.orig/fs/Kconfig +++ linux-4.8.0/fs/Kconfig @@ -245,6 +245,7 @@ source "fs/sysv/Kconfig" source "fs/ufs/Kconfig" source "fs/exofs/Kconfig" +source "fs/aufs/Kconfig" endif # MISC_FILESYSTEMS --- linux-4.8.0.orig/fs/Makefile +++ linux-4.8.0/fs/Makefile @@ -129,3 +129,4 @@ obj-$(CONFIG_CEPH_FS) += ceph/ obj-$(CONFIG_PSTORE) += pstore/ obj-$(CONFIG_EFIVAR_FS) += efivarfs/ +obj-$(CONFIG_AUFS_FS) += aufs/ --- linux-4.8.0.orig/fs/afs/mntpt.c +++ linux-4.8.0/fs/afs/mntpt.c @@ -202,7 +202,7 @@ /* try and do the mount */ _debug("--- attempting mount %s -o %s ---", devname, options); - mnt = vfs_kern_mount(&afs_fs_type, 0, devname, options); + mnt = vfs_submount(mntpt, &afs_fs_type, devname, options); _debug("--- mount result %p ---", mnt); free_page((unsigned long) devname); --- linux-4.8.0.orig/fs/attr.c +++ linux-4.8.0/fs/attr.c @@ -16,6 +16,30 @@ #include #include +static bool chown_ok(const struct inode *inode, kuid_t uid) +{ + if (uid_eq(current_fsuid(), inode->i_uid) && + uid_eq(uid, inode->i_uid)) + return true; + if (capable_wrt_inode_uidgid(inode, CAP_CHOWN)) + return true; + if (ns_capable(inode->i_sb->s_user_ns, CAP_CHOWN)) + return true; + return false; +} + +static bool chgrp_ok(const struct inode *inode, kgid_t gid) +{ + if (uid_eq(current_fsuid(), inode->i_uid) && + (in_group_p(gid) || gid_eq(gid, inode->i_gid))) + return true; + if (capable_wrt_inode_uidgid(inode, CAP_CHOWN)) + return true; + if (ns_capable(inode->i_sb->s_user_ns, CAP_CHOWN)) + return true; + return false; +} + /** * inode_change_ok - check if attribute changes to an inode are allowed * @inode: inode to check @@ -47,17 +71,11 @@ return 0; /* Make sure a caller can chown. */ - if ((ia_valid & ATTR_UID) && - (!uid_eq(current_fsuid(), inode->i_uid) || - !uid_eq(attr->ia_uid, inode->i_uid)) && - !capable_wrt_inode_uidgid(inode, CAP_CHOWN)) + if ((ia_valid & ATTR_UID) && !chown_ok(inode, attr->ia_uid)) return -EPERM; /* Make sure caller can chgrp. */ - if ((ia_valid & ATTR_GID) && - (!uid_eq(current_fsuid(), inode->i_uid) || - (!in_group_p(attr->ia_gid) && !gid_eq(attr->ia_gid, inode->i_gid))) && - !capable_wrt_inode_uidgid(inode, CAP_CHOWN)) + if ((ia_valid & ATTR_GID) && !chgrp_ok(inode, attr->ia_gid)) return -EPERM; /* Make sure a caller can chmod. */ @@ -202,6 +220,21 @@ return -EPERM; } + /* + * If utimes(2) and friends are called with times == NULL (or both + * times are UTIME_NOW), then we need to check for write permission + */ + if (ia_valid & ATTR_TOUCH) { + if (IS_IMMUTABLE(inode)) + return -EPERM; + + if (!inode_owner_or_capable(inode)) { + error = inode_permission(inode, MAY_WRITE); + if (error) + return error; + } + } + if ((ia_valid & ATTR_MODE)) { umode_t amode = attr->ia_mode; /* Flag setting protected by i_mutex */ --- linux-4.8.0.orig/fs/aufs/Kconfig +++ linux-4.8.0/fs/aufs/Kconfig @@ -0,0 +1,185 @@ +config AUFS_FS + tristate "Aufs (Advanced multi layered unification filesystem) support" + help + Aufs is a stackable unification filesystem such as Unionfs, + which unifies several directories and provides a merged single + directory. + In the early days, aufs was entirely re-designed and + re-implemented Unionfs Version 1.x series. Introducing many + original ideas, approaches and improvements, it becomes totally + different from Unionfs while keeping the basic features. + +if AUFS_FS +choice + prompt "Maximum number of branches" + default AUFS_BRANCH_MAX_127 + help + Specifies the maximum number of branches (or member directories) + in a single aufs. The larger value consumes more system + resources and has a minor impact to performance. +config AUFS_BRANCH_MAX_127 + bool "127" + help + Specifies the maximum number of branches (or member directories) + in a single aufs. The larger value consumes more system + resources and has a minor impact to performance. +config AUFS_BRANCH_MAX_511 + bool "511" + help + Specifies the maximum number of branches (or member directories) + in a single aufs. The larger value consumes more system + resources and has a minor impact to performance. +config AUFS_BRANCH_MAX_1023 + bool "1023" + help + Specifies the maximum number of branches (or member directories) + in a single aufs. The larger value consumes more system + resources and has a minor impact to performance. +config AUFS_BRANCH_MAX_32767 + bool "32767" + help + Specifies the maximum number of branches (or member directories) + in a single aufs. The larger value consumes more system + resources and has a minor impact to performance. +endchoice + +config AUFS_SBILIST + bool + depends on AUFS_MAGIC_SYSRQ || PROC_FS + default y + help + Automatic configuration for internal use. + When aufs supports Magic SysRq or /proc, enabled automatically. + +config AUFS_HNOTIFY + bool "Detect direct branch access (bypassing aufs)" + help + If you want to modify files on branches directly, eg. bypassing aufs, + and want aufs to detect the changes of them fully, then enable this + option and use 'udba=notify' mount option. + Currently there is only one available configuration, "fsnotify". + It will have a negative impact to the performance. + See detail in aufs.5. + +choice + prompt "method" if AUFS_HNOTIFY + default AUFS_HFSNOTIFY +config AUFS_HFSNOTIFY + bool "fsnotify" + select FSNOTIFY +endchoice + +config AUFS_EXPORT + bool "NFS-exportable aufs" + depends on EXPORTFS + help + If you want to export your mounted aufs via NFS, then enable this + option. There are several requirements for this configuration. + See detail in aufs.5. + +config AUFS_INO_T_64 + bool + depends on AUFS_EXPORT + depends on 64BIT && !(ALPHA || S390) + default y + help + Automatic configuration for internal use. + /* typedef unsigned long/int __kernel_ino_t */ + /* alpha and s390x are int */ + +config AUFS_XATTR + bool "support for XATTR/EA (including Security Labels)" + help + If your branch fs supports XATTR/EA and you want to make them + available in aufs too, then enable this opsion and specify the + branch attributes for EA. + See detail in aufs.5. + +config AUFS_FHSM + bool "File-based Hierarchical Storage Management" + help + Hierarchical Storage Management (or HSM) is a well-known feature + in the storage world. Aufs provides this feature as file-based. + with multiple branches. + These multiple branches are prioritized, ie. the topmost one + should be the fastest drive and be used heavily. + +config AUFS_RDU + bool "Readdir in userspace" + help + Aufs has two methods to provide a merged view for a directory, + by a user-space library and by kernel-space natively. The latter + is always enabled but sometimes large and slow. + If you enable this option, install the library in aufs2-util + package, and set some environment variables for your readdir(3), + then the work will be handled in user-space which generally + shows better performance in most cases. + See detail in aufs.5. + +config AUFS_SHWH + bool "Show whiteouts" + help + If you want to make the whiteouts in aufs visible, then enable + this option and specify 'shwh' mount option. Although it may + sounds like philosophy or something, but in technically it + simply shows the name of whiteout with keeping its behaviour. + +config AUFS_BR_RAMFS + bool "Ramfs (initramfs/rootfs) as an aufs branch" + help + If you want to use ramfs as an aufs branch fs, then enable this + option. Generally tmpfs is recommended. + Aufs prohibited them to be a branch fs by default, because + initramfs becomes unusable after switch_root or something + generally. If you sets initramfs as an aufs branch and boot your + system by switch_root, you will meet a problem easily since the + files in initramfs may be inaccessible. + Unless you are going to use ramfs as an aufs branch fs without + switch_root or something, leave it N. + +config AUFS_BR_FUSE + bool "Fuse fs as an aufs branch" + depends on FUSE_FS + select AUFS_POLL + help + If you want to use fuse-based userspace filesystem as an aufs + branch fs, then enable this option. + It implements the internal poll(2) operation which is + implemented by fuse only (curretnly). + +config AUFS_POLL + bool + help + Automatic configuration for internal use. + +config AUFS_BR_HFSPLUS + bool "Hfsplus as an aufs branch" + depends on HFSPLUS_FS + default y + help + If you want to use hfsplus fs as an aufs branch fs, then enable + this option. This option introduces a small overhead at + copying-up a file on hfsplus. + +config AUFS_BDEV_LOOP + bool + depends on BLK_DEV_LOOP + default y + help + Automatic configuration for internal use. + Convert =[ym] into =y. + +config AUFS_DEBUG + bool "Debug aufs" + help + Enable this to compile aufs internal debug code. + It will have a negative impact to the performance. + +config AUFS_MAGIC_SYSRQ + bool + depends on AUFS_DEBUG && MAGIC_SYSRQ + default y + help + Automatic configuration for internal use. + When aufs supports Magic SysRq, enabled automatically. +endif --- linux-4.8.0.orig/fs/aufs/Makefile +++ linux-4.8.0/fs/aufs/Makefile @@ -0,0 +1,44 @@ + +include ${src}/magic.mk +ifeq (${CONFIG_AUFS_FS},m) +include ${src}/conf.mk +endif +-include ${src}/priv_def.mk + +# cf. include/linux/kernel.h +# enable pr_debug +ccflags-y += -DDEBUG +# sparse requires the full pathname +ifdef M +ccflags-y += -include ${M}/../../include/uapi/linux/aufs_type.h +else +ccflags-y += -include ${srctree}/include/uapi/linux/aufs_type.h +endif + +obj-$(CONFIG_AUFS_FS) += aufs.o +aufs-y := module.o sbinfo.o super.o branch.o xino.o sysaufs.o opts.o \ + wkq.o vfsub.o dcsub.o \ + cpup.o whout.o wbr_policy.o \ + dinfo.o dentry.o \ + dynop.o \ + finfo.o file.o f_op.o \ + dir.o vdir.o \ + iinfo.o inode.o i_op.o i_op_add.o i_op_del.o i_op_ren.o \ + mvdown.o ioctl.o + +# all are boolean +aufs-$(CONFIG_PROC_FS) += procfs.o plink.o +aufs-$(CONFIG_SYSFS) += sysfs.o +aufs-$(CONFIG_DEBUG_FS) += dbgaufs.o +aufs-$(CONFIG_AUFS_BDEV_LOOP) += loop.o +aufs-$(CONFIG_AUFS_HNOTIFY) += hnotify.o +aufs-$(CONFIG_AUFS_HFSNOTIFY) += hfsnotify.o +aufs-$(CONFIG_AUFS_EXPORT) += export.o +aufs-$(CONFIG_AUFS_XATTR) += xattr.o +aufs-$(CONFIG_FS_POSIX_ACL) += posix_acl.o +aufs-$(CONFIG_AUFS_FHSM) += fhsm.o +aufs-$(CONFIG_AUFS_POLL) += poll.o +aufs-$(CONFIG_AUFS_RDU) += rdu.o +aufs-$(CONFIG_AUFS_BR_HFSPLUS) += hfsplus.o +aufs-$(CONFIG_AUFS_DEBUG) += debug.o +aufs-$(CONFIG_AUFS_MAGIC_SYSRQ) += sysrq.o --- linux-4.8.0.orig/fs/aufs/aufs.h +++ linux-4.8.0/fs/aufs/aufs.h @@ -0,0 +1,59 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * all header files + */ + +#ifndef __AUFS_H__ +#define __AUFS_H__ + +#ifdef __KERNEL__ + +#define AuStub(type, name, body, ...) \ + static inline type name(__VA_ARGS__) { body; } + +#define AuStubVoid(name, ...) \ + AuStub(void, name, , __VA_ARGS__) +#define AuStubInt0(name, ...) \ + AuStub(int, name, return 0, __VA_ARGS__) + +#include "debug.h" + +#include "branch.h" +#include "cpup.h" +#include "dcsub.h" +#include "dbgaufs.h" +#include "dentry.h" +#include "dir.h" +#include "dynop.h" +#include "file.h" +#include "fstype.h" +#include "inode.h" +#include "loop.h" +#include "module.h" +#include "opts.h" +#include "rwsem.h" +#include "spl.h" +#include "super.h" +#include "sysaufs.h" +#include "vfsub.h" +#include "whout.h" +#include "wkq.h" + +#endif /* __KERNEL__ */ +#endif /* __AUFS_H__ */ --- linux-4.8.0.orig/fs/aufs/branch.c +++ linux-4.8.0/fs/aufs/branch.c @@ -0,0 +1,1412 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * branch management + */ + +#include +#include +#include "aufs.h" + +/* + * free a single branch + */ +static void au_br_do_free(struct au_branch *br) +{ + int i; + struct au_wbr *wbr; + struct au_dykey **key; + + au_hnotify_fin_br(br); + + if (br->br_xino.xi_file) + fput(br->br_xino.xi_file); + mutex_destroy(&br->br_xino.xi_nondir_mtx); + + AuDebugOn(au_br_count(br)); + au_br_count_fin(br); + + wbr = br->br_wbr; + if (wbr) { + for (i = 0; i < AuBrWh_Last; i++) + dput(wbr->wbr_wh[i]); + AuDebugOn(atomic_read(&wbr->wbr_wh_running)); + AuRwDestroy(&wbr->wbr_wh_rwsem); + } + + if (br->br_fhsm) { + au_br_fhsm_fin(br->br_fhsm); + au_delayed_kfree(br->br_fhsm); + } + + key = br->br_dykey; + for (i = 0; i < AuBrDynOp; i++, key++) + if (*key) + au_dy_put(*key); + else + break; + + /* recursive lock, s_umount of branch's */ + lockdep_off(); + path_put(&br->br_path); + lockdep_on(); + if (wbr) + au_delayed_kfree(wbr); + au_delayed_kfree(br); +} + +/* + * frees all branches + */ +void au_br_free(struct au_sbinfo *sbinfo) +{ + aufs_bindex_t bmax; + struct au_branch **br; + + AuRwMustWriteLock(&sbinfo->si_rwsem); + + bmax = sbinfo->si_bbot + 1; + br = sbinfo->si_branch; + while (bmax--) + au_br_do_free(*br++); +} + +/* + * find the index of a branch which is specified by @br_id. + */ +int au_br_index(struct super_block *sb, aufs_bindex_t br_id) +{ + aufs_bindex_t bindex, bbot; + + bbot = au_sbbot(sb); + for (bindex = 0; bindex <= bbot; bindex++) + if (au_sbr_id(sb, bindex) == br_id) + return bindex; + return -1; +} + +/* ---------------------------------------------------------------------- */ + +/* + * add a branch + */ + +static int test_overlap(struct super_block *sb, struct dentry *h_adding, + struct dentry *h_root) +{ + if (unlikely(h_adding == h_root + || au_test_loopback_overlap(sb, h_adding))) + return 1; + if (h_adding->d_sb != h_root->d_sb) + return 0; + return au_test_subdir(h_adding, h_root) + || au_test_subdir(h_root, h_adding); +} + +/* + * returns a newly allocated branch. @new_nbranch is a number of branches + * after adding a branch. + */ +static struct au_branch *au_br_alloc(struct super_block *sb, int new_nbranch, + int perm) +{ + struct au_branch *add_branch; + struct dentry *root; + struct inode *inode; + int err; + + err = -ENOMEM; + root = sb->s_root; + add_branch = kzalloc(sizeof(*add_branch), GFP_NOFS); + if (unlikely(!add_branch)) + goto out; + + err = au_hnotify_init_br(add_branch, perm); + if (unlikely(err)) + goto out_br; + + if (au_br_writable(perm)) { + /* may be freed separately at changing the branch permission */ + add_branch->br_wbr = kzalloc(sizeof(*add_branch->br_wbr), + GFP_NOFS); + if (unlikely(!add_branch->br_wbr)) + goto out_hnotify; + } + + if (au_br_fhsm(perm)) { + err = au_fhsm_br_alloc(add_branch); + if (unlikely(err)) + goto out_wbr; + } + + err = au_sbr_realloc(au_sbi(sb), new_nbranch, /*may_shrink*/0); + if (!err) + err = au_di_realloc(au_di(root), new_nbranch, /*may_shrink*/0); + if (!err) { + inode = d_inode(root); + err = au_hinode_realloc(au_ii(inode), new_nbranch, /*may_shrink*/0); + } + if (!err) + return add_branch; /* success */ + +out_wbr: + if (add_branch->br_wbr) + au_delayed_kfree(add_branch->br_wbr); +out_hnotify: + au_hnotify_fin_br(add_branch); +out_br: + au_delayed_kfree(add_branch); +out: + return ERR_PTR(err); +} + +/* + * test if the branch permission is legal or not. + */ +static int test_br(struct inode *inode, int brperm, char *path) +{ + int err; + + err = (au_br_writable(brperm) && IS_RDONLY(inode)); + if (!err) + goto out; + + err = -EINVAL; + pr_err("write permission for readonly mount or inode, %s\n", path); + +out: + return err; +} + +/* + * returns: + * 0: success, the caller will add it + * plus: success, it is already unified, the caller should ignore it + * minus: error + */ +static int test_add(struct super_block *sb, struct au_opt_add *add, int remount) +{ + int err; + aufs_bindex_t bbot, bindex; + struct dentry *root, *h_dentry; + struct inode *inode, *h_inode; + + root = sb->s_root; + bbot = au_sbbot(sb); + if (unlikely(bbot >= 0 + && au_find_dbindex(root, add->path.dentry) >= 0)) { + err = 1; + if (!remount) { + err = -EINVAL; + pr_err("%s duplicated\n", add->pathname); + } + goto out; + } + + err = -ENOSPC; /* -E2BIG; */ + if (unlikely(AUFS_BRANCH_MAX <= add->bindex + || AUFS_BRANCH_MAX - 1 <= bbot)) { + pr_err("number of branches exceeded %s\n", add->pathname); + goto out; + } + + err = -EDOM; + if (unlikely(add->bindex < 0 || bbot + 1 < add->bindex)) { + pr_err("bad index %d\n", add->bindex); + goto out; + } + + inode = d_inode(add->path.dentry); + err = -ENOENT; + if (unlikely(!inode->i_nlink)) { + pr_err("no existence %s\n", add->pathname); + goto out; + } + + err = -EINVAL; + if (unlikely(inode->i_sb == sb)) { + pr_err("%s must be outside\n", add->pathname); + goto out; + } + + if (unlikely(au_test_fs_unsuppoted(inode->i_sb))) { + pr_err("unsupported filesystem, %s (%s)\n", + add->pathname, au_sbtype(inode->i_sb)); + goto out; + } + + if (unlikely(inode->i_sb->s_stack_depth)) { + pr_err("already stacked, %s (%s)\n", + add->pathname, au_sbtype(inode->i_sb)); + goto out; + } + + err = test_br(d_inode(add->path.dentry), add->perm, add->pathname); + if (unlikely(err)) + goto out; + + if (bbot < 0) + return 0; /* success */ + + err = -EINVAL; + for (bindex = 0; bindex <= bbot; bindex++) + if (unlikely(test_overlap(sb, add->path.dentry, + au_h_dptr(root, bindex)))) { + pr_err("%s is overlapped\n", add->pathname); + goto out; + } + + err = 0; + if (au_opt_test(au_mntflags(sb), WARN_PERM)) { + h_dentry = au_h_dptr(root, 0); + h_inode = d_inode(h_dentry); + if ((h_inode->i_mode & S_IALLUGO) != (inode->i_mode & S_IALLUGO) + || !uid_eq(h_inode->i_uid, inode->i_uid) + || !gid_eq(h_inode->i_gid, inode->i_gid)) + pr_warn("uid/gid/perm %s %u/%u/0%o, %u/%u/0%o\n", + add->pathname, + i_uid_read(inode), i_gid_read(inode), + (inode->i_mode & S_IALLUGO), + i_uid_read(h_inode), i_gid_read(h_inode), + (h_inode->i_mode & S_IALLUGO)); + } + +out: + return err; +} + +/* + * initialize or clean the whiteouts for an adding branch + */ +static int au_br_init_wh(struct super_block *sb, struct au_branch *br, + int new_perm) +{ + int err, old_perm; + aufs_bindex_t bindex; + struct inode *h_inode; + struct au_wbr *wbr; + struct au_hinode *hdir; + struct dentry *h_dentry; + + err = vfsub_mnt_want_write(au_br_mnt(br)); + if (unlikely(err)) + goto out; + + wbr = br->br_wbr; + old_perm = br->br_perm; + br->br_perm = new_perm; + hdir = NULL; + h_inode = NULL; + bindex = au_br_index(sb, br->br_id); + if (0 <= bindex) { + hdir = au_hi(d_inode(sb->s_root), bindex); + au_hn_inode_lock_nested(hdir, AuLsc_I_PARENT); + } else { + h_dentry = au_br_dentry(br); + h_inode = d_inode(h_dentry); + inode_lock_nested(h_inode, AuLsc_I_PARENT); + } + if (!wbr) + err = au_wh_init(br, sb); + else { + wbr_wh_write_lock(wbr); + err = au_wh_init(br, sb); + wbr_wh_write_unlock(wbr); + } + if (hdir) + au_hn_inode_unlock(hdir); + else + inode_unlock(h_inode); + vfsub_mnt_drop_write(au_br_mnt(br)); + br->br_perm = old_perm; + + if (!err && wbr && !au_br_writable(new_perm)) { + au_delayed_kfree(wbr); + br->br_wbr = NULL; + } + +out: + return err; +} + +static int au_wbr_init(struct au_branch *br, struct super_block *sb, + int perm) +{ + int err; + struct kstatfs kst; + struct au_wbr *wbr; + + wbr = br->br_wbr; + au_rw_init(&wbr->wbr_wh_rwsem); + atomic_set(&wbr->wbr_wh_running, 0); + + /* + * a limit for rmdir/rename a dir + * cf. AUFS_MAX_NAMELEN in include/uapi/linux/aufs_type.h + */ + err = vfs_statfs(&br->br_path, &kst); + if (unlikely(err)) + goto out; + err = -EINVAL; + if (kst.f_namelen >= NAME_MAX) + err = au_br_init_wh(sb, br, perm); + else + pr_err("%pd(%s), unsupported namelen %ld\n", + au_br_dentry(br), + au_sbtype(au_br_dentry(br)->d_sb), kst.f_namelen); + +out: + return err; +} + +/* initialize a new branch */ +static int au_br_init(struct au_branch *br, struct super_block *sb, + struct au_opt_add *add) +{ + int err; + struct inode *h_inode; + + err = 0; + mutex_init(&br->br_xino.xi_nondir_mtx); + br->br_perm = add->perm; + br->br_path = add->path; /* set first, path_get() later */ + spin_lock_init(&br->br_dykey_lock); + au_br_count_init(br); + atomic_set(&br->br_xino_running, 0); + br->br_id = au_new_br_id(sb); + AuDebugOn(br->br_id < 0); + + if (au_br_writable(add->perm)) { + err = au_wbr_init(br, sb, add->perm); + if (unlikely(err)) + goto out_err; + } + + if (au_opt_test(au_mntflags(sb), XINO)) { + h_inode = d_inode(add->path.dentry); + err = au_xino_br(sb, br, h_inode->i_ino, + au_sbr(sb, 0)->br_xino.xi_file, /*do_test*/1); + if (unlikely(err)) { + AuDebugOn(br->br_xino.xi_file); + goto out_err; + } + } + + sysaufs_br_init(br); + path_get(&br->br_path); + goto out; /* success */ + +out_err: + memset(&br->br_path, 0, sizeof(br->br_path)); +out: + return err; +} + +static void au_br_do_add_brp(struct au_sbinfo *sbinfo, aufs_bindex_t bindex, + struct au_branch *br, aufs_bindex_t bbot, + aufs_bindex_t amount) +{ + struct au_branch **brp; + + AuRwMustWriteLock(&sbinfo->si_rwsem); + + brp = sbinfo->si_branch + bindex; + memmove(brp + 1, brp, sizeof(*brp) * amount); + *brp = br; + sbinfo->si_bbot++; + if (unlikely(bbot < 0)) + sbinfo->si_bbot = 0; +} + +static void au_br_do_add_hdp(struct au_dinfo *dinfo, aufs_bindex_t bindex, + aufs_bindex_t bbot, aufs_bindex_t amount) +{ + struct au_hdentry *hdp; + + AuRwMustWriteLock(&dinfo->di_rwsem); + + hdp = au_hdentry(dinfo, bindex); + memmove(hdp + 1, hdp, sizeof(*hdp) * amount); + au_h_dentry_init(hdp); + dinfo->di_bbot++; + if (unlikely(bbot < 0)) + dinfo->di_btop = 0; +} + +static void au_br_do_add_hip(struct au_iinfo *iinfo, aufs_bindex_t bindex, + aufs_bindex_t bbot, aufs_bindex_t amount) +{ + struct au_hinode *hip; + + AuRwMustWriteLock(&iinfo->ii_rwsem); + + hip = au_hinode(iinfo, bindex); + memmove(hip + 1, hip, sizeof(*hip) * amount); + au_hinode_init(hip); + iinfo->ii_bbot++; + if (unlikely(bbot < 0)) + iinfo->ii_btop = 0; +} + +static void au_br_do_add(struct super_block *sb, struct au_branch *br, + aufs_bindex_t bindex) +{ + struct dentry *root, *h_dentry; + struct inode *root_inode, *h_inode; + aufs_bindex_t bbot, amount; + + root = sb->s_root; + root_inode = d_inode(root); + bbot = au_sbbot(sb); + amount = bbot + 1 - bindex; + h_dentry = au_br_dentry(br); + au_sbilist_lock(); + au_br_do_add_brp(au_sbi(sb), bindex, br, bbot, amount); + au_br_do_add_hdp(au_di(root), bindex, bbot, amount); + au_br_do_add_hip(au_ii(root_inode), bindex, bbot, amount); + au_set_h_dptr(root, bindex, dget(h_dentry)); + h_inode = d_inode(h_dentry); + au_set_h_iptr(root_inode, bindex, au_igrab(h_inode), /*flags*/0); + au_sbilist_unlock(); +} + +int au_br_add(struct super_block *sb, struct au_opt_add *add, int remount) +{ + int err; + aufs_bindex_t bbot, add_bindex; + struct dentry *root, *h_dentry; + struct inode *root_inode; + struct au_branch *add_branch; + + root = sb->s_root; + root_inode = d_inode(root); + IMustLock(root_inode); + IiMustWriteLock(root_inode); + err = test_add(sb, add, remount); + if (unlikely(err < 0)) + goto out; + if (err) { + err = 0; + goto out; /* success */ + } + + bbot = au_sbbot(sb); + add_branch = au_br_alloc(sb, bbot + 2, add->perm); + err = PTR_ERR(add_branch); + if (IS_ERR(add_branch)) + goto out; + + err = au_br_init(add_branch, sb, add); + if (unlikely(err)) { + au_br_do_free(add_branch); + goto out; + } + + add_bindex = add->bindex; + if (!remount) + au_br_do_add(sb, add_branch, add_bindex); + else { + sysaufs_brs_del(sb, add_bindex); + au_br_do_add(sb, add_branch, add_bindex); + sysaufs_brs_add(sb, add_bindex); + } + + h_dentry = add->path.dentry; + if (!add_bindex) { + au_cpup_attr_all(root_inode, /*force*/1); + sb->s_maxbytes = h_dentry->d_sb->s_maxbytes; + } else + au_add_nlink(root_inode, d_inode(h_dentry)); + + /* + * this test/set prevents aufs from handling unnecesary notify events + * of xino files, in case of re-adding a writable branch which was + * once detached from aufs. + */ + if (au_xino_brid(sb) < 0 + && au_br_writable(add_branch->br_perm) + && !au_test_fs_bad_xino(h_dentry->d_sb) + && add_branch->br_xino.xi_file + && add_branch->br_xino.xi_file->f_path.dentry->d_parent == h_dentry) + au_xino_brid_set(sb, add_branch->br_id); + +out: + return err; +} + +/* ---------------------------------------------------------------------- */ + +static unsigned long long au_farray_cb(struct super_block *sb, void *a, + unsigned long long max __maybe_unused, + void *arg) +{ + unsigned long long n; + struct file **p, *f; + struct au_sphlhead *files; + struct au_finfo *finfo; + + n = 0; + p = a; + files = &au_sbi(sb)->si_files; + spin_lock(&files->spin); + hlist_for_each_entry(finfo, &files->head, fi_hlist) { + f = finfo->fi_file; + if (file_count(f) + && !special_file(file_inode(f)->i_mode)) { + get_file(f); + *p++ = f; + n++; + AuDebugOn(n > max); + } + } + spin_unlock(&files->spin); + + return n; +} + +static struct file **au_farray_alloc(struct super_block *sb, + unsigned long long *max) +{ + *max = au_nfiles(sb); + return au_array_alloc(max, au_farray_cb, sb, /*arg*/NULL); +} + +static void au_farray_free(struct file **a, unsigned long long max) +{ + unsigned long long ull; + + for (ull = 0; ull < max; ull++) + if (a[ull]) + fput(a[ull]); + kvfree(a); +} + +/* ---------------------------------------------------------------------- */ + +/* + * delete a branch + */ + +/* to show the line number, do not make it inlined function */ +#define AuVerbose(do_info, fmt, ...) do { \ + if (do_info) \ + pr_info(fmt, ##__VA_ARGS__); \ +} while (0) + +static int au_test_ibusy(struct inode *inode, aufs_bindex_t btop, + aufs_bindex_t bbot) +{ + return (inode && !S_ISDIR(inode->i_mode)) || btop == bbot; +} + +static int au_test_dbusy(struct dentry *dentry, aufs_bindex_t btop, + aufs_bindex_t bbot) +{ + return au_test_ibusy(d_inode(dentry), btop, bbot); +} + +/* + * test if the branch is deletable or not. + */ +static int test_dentry_busy(struct dentry *root, aufs_bindex_t bindex, + unsigned int sigen, const unsigned int verbose) +{ + int err, i, j, ndentry; + aufs_bindex_t btop, bbot; + struct au_dcsub_pages dpages; + struct au_dpage *dpage; + struct dentry *d; + + err = au_dpages_init(&dpages, GFP_NOFS); + if (unlikely(err)) + goto out; + err = au_dcsub_pages(&dpages, root, NULL, NULL); + if (unlikely(err)) + goto out_dpages; + + for (i = 0; !err && i < dpages.ndpage; i++) { + dpage = dpages.dpages + i; + ndentry = dpage->ndentry; + for (j = 0; !err && j < ndentry; j++) { + d = dpage->dentries[j]; + AuDebugOn(au_dcount(d) <= 0); + if (!au_digen_test(d, sigen)) { + di_read_lock_child(d, AuLock_IR); + if (unlikely(au_dbrange_test(d))) { + di_read_unlock(d, AuLock_IR); + continue; + } + } else { + di_write_lock_child(d); + if (unlikely(au_dbrange_test(d))) { + di_write_unlock(d); + continue; + } + err = au_reval_dpath(d, sigen); + if (!err) + di_downgrade_lock(d, AuLock_IR); + else { + di_write_unlock(d); + break; + } + } + + /* AuDbgDentry(d); */ + btop = au_dbtop(d); + bbot = au_dbbot(d); + if (btop <= bindex + && bindex <= bbot + && au_h_dptr(d, bindex) + && au_test_dbusy(d, btop, bbot)) { + err = -EBUSY; + AuVerbose(verbose, "busy %pd\n", d); + AuDbgDentry(d); + } + di_read_unlock(d, AuLock_IR); + } + } + +out_dpages: + au_dpages_free(&dpages); +out: + return err; +} + +static int test_inode_busy(struct super_block *sb, aufs_bindex_t bindex, + unsigned int sigen, const unsigned int verbose) +{ + int err; + unsigned long long max, ull; + struct inode *i, **array; + aufs_bindex_t btop, bbot; + + array = au_iarray_alloc(sb, &max); + err = PTR_ERR(array); + if (IS_ERR(array)) + goto out; + + err = 0; + AuDbg("b%d\n", bindex); + for (ull = 0; !err && ull < max; ull++) { + i = array[ull]; + if (unlikely(!i)) + break; + if (i->i_ino == AUFS_ROOT_INO) + continue; + + /* AuDbgInode(i); */ + if (au_iigen(i, NULL) == sigen) + ii_read_lock_child(i); + else { + ii_write_lock_child(i); + err = au_refresh_hinode_self(i); + au_iigen_dec(i); + if (!err) + ii_downgrade_lock(i); + else { + ii_write_unlock(i); + break; + } + } + + btop = au_ibtop(i); + bbot = au_ibbot(i); + if (btop <= bindex + && bindex <= bbot + && au_h_iptr(i, bindex) + && au_test_ibusy(i, btop, bbot)) { + err = -EBUSY; + AuVerbose(verbose, "busy i%lu\n", i->i_ino); + AuDbgInode(i); + } + ii_read_unlock(i); + } + au_iarray_free(array, max); + +out: + return err; +} + +static int test_children_busy(struct dentry *root, aufs_bindex_t bindex, + const unsigned int verbose) +{ + int err; + unsigned int sigen; + + sigen = au_sigen(root->d_sb); + DiMustNoWaiters(root); + IiMustNoWaiters(d_inode(root)); + di_write_unlock(root); + err = test_dentry_busy(root, bindex, sigen, verbose); + if (!err) + err = test_inode_busy(root->d_sb, bindex, sigen, verbose); + di_write_lock_child(root); /* aufs_write_lock() calls ..._child() */ + + return err; +} + +static int test_dir_busy(struct file *file, aufs_bindex_t br_id, + struct file **to_free, int *idx) +{ + int err; + unsigned char matched, root; + aufs_bindex_t bindex, bbot; + struct au_fidir *fidir; + struct au_hfile *hfile; + + err = 0; + root = IS_ROOT(file->f_path.dentry); + if (root) { + get_file(file); + to_free[*idx] = file; + (*idx)++; + goto out; + } + + matched = 0; + fidir = au_fi(file)->fi_hdir; + AuDebugOn(!fidir); + bbot = au_fbbot_dir(file); + for (bindex = au_fbtop(file); bindex <= bbot; bindex++) { + hfile = fidir->fd_hfile + bindex; + if (!hfile->hf_file) + continue; + + if (hfile->hf_br->br_id == br_id) { + matched = 1; + break; + } + } + if (matched) + err = -EBUSY; + +out: + return err; +} + +static int test_file_busy(struct super_block *sb, aufs_bindex_t br_id, + struct file **to_free, int opened) +{ + int err, idx; + unsigned long long ull, max; + aufs_bindex_t btop; + struct file *file, **array; + struct dentry *root; + struct au_hfile *hfile; + + array = au_farray_alloc(sb, &max); + err = PTR_ERR(array); + if (IS_ERR(array)) + goto out; + + err = 0; + idx = 0; + root = sb->s_root; + di_write_unlock(root); + for (ull = 0; ull < max; ull++) { + file = array[ull]; + if (unlikely(!file)) + break; + + /* AuDbg("%pD\n", file); */ + fi_read_lock(file); + btop = au_fbtop(file); + if (!d_is_dir(file->f_path.dentry)) { + hfile = &au_fi(file)->fi_htop; + if (hfile->hf_br->br_id == br_id) + err = -EBUSY; + } else + err = test_dir_busy(file, br_id, to_free, &idx); + fi_read_unlock(file); + if (unlikely(err)) + break; + } + di_write_lock_child(root); + au_farray_free(array, max); + AuDebugOn(idx > opened); + +out: + return err; +} + +static void br_del_file(struct file **to_free, unsigned long long opened, + aufs_bindex_t br_id) +{ + unsigned long long ull; + aufs_bindex_t bindex, btop, bbot, bfound; + struct file *file; + struct au_fidir *fidir; + struct au_hfile *hfile; + + for (ull = 0; ull < opened; ull++) { + file = to_free[ull]; + if (unlikely(!file)) + break; + + /* AuDbg("%pD\n", file); */ + AuDebugOn(!d_is_dir(file->f_path.dentry)); + bfound = -1; + fidir = au_fi(file)->fi_hdir; + AuDebugOn(!fidir); + fi_write_lock(file); + btop = au_fbtop(file); + bbot = au_fbbot_dir(file); + for (bindex = btop; bindex <= bbot; bindex++) { + hfile = fidir->fd_hfile + bindex; + if (!hfile->hf_file) + continue; + + if (hfile->hf_br->br_id == br_id) { + bfound = bindex; + break; + } + } + AuDebugOn(bfound < 0); + au_set_h_fptr(file, bfound, NULL); + if (bfound == btop) { + for (btop++; btop <= bbot; btop++) + if (au_hf_dir(file, btop)) { + au_set_fbtop(file, btop); + break; + } + } + fi_write_unlock(file); + } +} + +static void au_br_do_del_brp(struct au_sbinfo *sbinfo, + const aufs_bindex_t bindex, + const aufs_bindex_t bbot) +{ + struct au_branch **brp, **p; + + AuRwMustWriteLock(&sbinfo->si_rwsem); + + brp = sbinfo->si_branch + bindex; + if (bindex < bbot) + memmove(brp, brp + 1, sizeof(*brp) * (bbot - bindex)); + sbinfo->si_branch[0 + bbot] = NULL; + sbinfo->si_bbot--; + + p = au_krealloc(sbinfo->si_branch, sizeof(*p) * bbot, AuGFP_SBILIST, + /*may_shrink*/1); + if (p) + sbinfo->si_branch = p; + /* harmless error */ +} + +static void au_br_do_del_hdp(struct au_dinfo *dinfo, const aufs_bindex_t bindex, + const aufs_bindex_t bbot) +{ + struct au_hdentry *hdp, *p; + + AuRwMustWriteLock(&dinfo->di_rwsem); + + hdp = au_hdentry(dinfo, bindex); + if (bindex < bbot) + memmove(hdp, hdp + 1, sizeof(*hdp) * (bbot - bindex)); + /* au_h_dentry_init(au_hdentry(dinfo, bbot); */ + dinfo->di_bbot--; + + p = au_krealloc(dinfo->di_hdentry, sizeof(*p) * bbot, AuGFP_SBILIST, + /*may_shrink*/1); + if (p) + dinfo->di_hdentry = p; + /* harmless error */ +} + +static void au_br_do_del_hip(struct au_iinfo *iinfo, const aufs_bindex_t bindex, + const aufs_bindex_t bbot) +{ + struct au_hinode *hip, *p; + + AuRwMustWriteLock(&iinfo->ii_rwsem); + + hip = au_hinode(iinfo, bindex); + if (bindex < bbot) + memmove(hip, hip + 1, sizeof(*hip) * (bbot - bindex)); + /* au_hinode_init(au_hinode(iinfo, bbot)); */ + iinfo->ii_bbot--; + + p = au_krealloc(iinfo->ii_hinode, sizeof(*p) * bbot, AuGFP_SBILIST, + /*may_shrink*/1); + if (p) + iinfo->ii_hinode = p; + /* harmless error */ +} + +static void au_br_do_del(struct super_block *sb, aufs_bindex_t bindex, + struct au_branch *br) +{ + aufs_bindex_t bbot; + struct au_sbinfo *sbinfo; + struct dentry *root, *h_root; + struct inode *inode, *h_inode; + struct au_hinode *hinode; + + SiMustWriteLock(sb); + + root = sb->s_root; + inode = d_inode(root); + sbinfo = au_sbi(sb); + bbot = sbinfo->si_bbot; + + h_root = au_h_dptr(root, bindex); + hinode = au_hi(inode, bindex); + h_inode = au_igrab(hinode->hi_inode); + au_hiput(hinode); + + au_sbilist_lock(); + au_br_do_del_brp(sbinfo, bindex, bbot); + au_br_do_del_hdp(au_di(root), bindex, bbot); + au_br_do_del_hip(au_ii(inode), bindex, bbot); + au_sbilist_unlock(); + + dput(h_root); + iput(h_inode); + au_br_do_free(br); +} + +static unsigned long long empty_cb(struct super_block *sb, void *array, + unsigned long long max, void *arg) +{ + return max; +} + +int au_br_del(struct super_block *sb, struct au_opt_del *del, int remount) +{ + int err, rerr, i; + unsigned long long opened; + unsigned int mnt_flags; + aufs_bindex_t bindex, bbot, br_id; + unsigned char do_wh, verbose; + struct au_branch *br; + struct au_wbr *wbr; + struct dentry *root; + struct file **to_free; + + err = 0; + opened = 0; + to_free = NULL; + root = sb->s_root; + bindex = au_find_dbindex(root, del->h_path.dentry); + if (bindex < 0) { + if (remount) + goto out; /* success */ + err = -ENOENT; + pr_err("%s no such branch\n", del->pathname); + goto out; + } + AuDbg("bindex b%d\n", bindex); + + err = -EBUSY; + mnt_flags = au_mntflags(sb); + verbose = !!au_opt_test(mnt_flags, VERBOSE); + bbot = au_sbbot(sb); + if (unlikely(!bbot)) { + AuVerbose(verbose, "no more branches left\n"); + goto out; + } + br = au_sbr(sb, bindex); + AuDebugOn(!path_equal(&br->br_path, &del->h_path)); + + br_id = br->br_id; + opened = au_br_count(br); + if (unlikely(opened)) { + to_free = au_array_alloc(&opened, empty_cb, sb, NULL); + err = PTR_ERR(to_free); + if (IS_ERR(to_free)) + goto out; + + err = test_file_busy(sb, br_id, to_free, opened); + if (unlikely(err)) { + AuVerbose(verbose, "%llu file(s) opened\n", opened); + goto out; + } + } + + wbr = br->br_wbr; + do_wh = wbr && (wbr->wbr_whbase || wbr->wbr_plink || wbr->wbr_orph); + if (do_wh) { + /* instead of WbrWhMustWriteLock(wbr) */ + SiMustWriteLock(sb); + for (i = 0; i < AuBrWh_Last; i++) { + dput(wbr->wbr_wh[i]); + wbr->wbr_wh[i] = NULL; + } + } + + err = test_children_busy(root, bindex, verbose); + if (unlikely(err)) { + if (do_wh) + goto out_wh; + goto out; + } + + err = 0; + if (to_free) { + /* + * now we confirmed the branch is deletable. + * let's free the remaining opened dirs on the branch. + */ + di_write_unlock(root); + br_del_file(to_free, opened, br_id); + di_write_lock_child(root); + } + + if (!remount) + au_br_do_del(sb, bindex, br); + else { + sysaufs_brs_del(sb, bindex); + au_br_do_del(sb, bindex, br); + sysaufs_brs_add(sb, bindex); + } + + if (!bindex) { + au_cpup_attr_all(d_inode(root), /*force*/1); + sb->s_maxbytes = au_sbr_sb(sb, 0)->s_maxbytes; + } else + au_sub_nlink(d_inode(root), d_inode(del->h_path.dentry)); + if (au_opt_test(mnt_flags, PLINK)) + au_plink_half_refresh(sb, br_id); + + if (au_xino_brid(sb) == br_id) + au_xino_brid_set(sb, -1); + goto out; /* success */ + +out_wh: + /* revert */ + rerr = au_br_init_wh(sb, br, br->br_perm); + if (rerr) + pr_warn("failed re-creating base whiteout, %s. (%d)\n", + del->pathname, rerr); +out: + if (to_free) + au_farray_free(to_free, opened); + return err; +} + +/* ---------------------------------------------------------------------- */ + +static int au_ibusy(struct super_block *sb, struct aufs_ibusy __user *arg) +{ + int err; + aufs_bindex_t btop, bbot; + struct aufs_ibusy ibusy; + struct inode *inode, *h_inode; + + err = -EPERM; + if (unlikely(!capable(CAP_SYS_ADMIN))) + goto out; + + err = copy_from_user(&ibusy, arg, sizeof(ibusy)); + if (!err) + err = !access_ok(VERIFY_WRITE, &arg->h_ino, sizeof(arg->h_ino)); + if (unlikely(err)) { + err = -EFAULT; + AuTraceErr(err); + goto out; + } + + err = -EINVAL; + si_read_lock(sb, AuLock_FLUSH); + if (unlikely(ibusy.bindex < 0 || ibusy.bindex > au_sbbot(sb))) + goto out_unlock; + + err = 0; + ibusy.h_ino = 0; /* invalid */ + inode = ilookup(sb, ibusy.ino); + if (!inode + || inode->i_ino == AUFS_ROOT_INO + || au_is_bad_inode(inode)) + goto out_unlock; + + ii_read_lock_child(inode); + btop = au_ibtop(inode); + bbot = au_ibbot(inode); + if (btop <= ibusy.bindex && ibusy.bindex <= bbot) { + h_inode = au_h_iptr(inode, ibusy.bindex); + if (h_inode && au_test_ibusy(inode, btop, bbot)) + ibusy.h_ino = h_inode->i_ino; + } + ii_read_unlock(inode); + iput(inode); + +out_unlock: + si_read_unlock(sb); + if (!err) { + err = __put_user(ibusy.h_ino, &arg->h_ino); + if (unlikely(err)) { + err = -EFAULT; + AuTraceErr(err); + } + } +out: + return err; +} + +long au_ibusy_ioctl(struct file *file, unsigned long arg) +{ + return au_ibusy(file->f_path.dentry->d_sb, (void __user *)arg); +} + +#ifdef CONFIG_COMPAT +long au_ibusy_compat_ioctl(struct file *file, unsigned long arg) +{ + return au_ibusy(file->f_path.dentry->d_sb, compat_ptr(arg)); +} +#endif + +/* ---------------------------------------------------------------------- */ + +/* + * change a branch permission + */ + +static void au_warn_ima(void) +{ +#ifdef CONFIG_IMA + /* since it doesn't support mark_files_ro() */ + AuWarn1("RW -> RO makes IMA to produce wrong message\n"); +#endif +} + +static int do_need_sigen_inc(int a, int b) +{ + return au_br_whable(a) && !au_br_whable(b); +} + +static int need_sigen_inc(int old, int new) +{ + return do_need_sigen_inc(old, new) + || do_need_sigen_inc(new, old); +} + +static int au_br_mod_files_ro(struct super_block *sb, aufs_bindex_t bindex) +{ + int err, do_warn; + unsigned int mnt_flags; + unsigned long long ull, max; + aufs_bindex_t br_id; + unsigned char verbose, writer; + struct file *file, *hf, **array; + struct au_hfile *hfile; + + mnt_flags = au_mntflags(sb); + verbose = !!au_opt_test(mnt_flags, VERBOSE); + + array = au_farray_alloc(sb, &max); + err = PTR_ERR(array); + if (IS_ERR(array)) + goto out; + + do_warn = 0; + br_id = au_sbr_id(sb, bindex); + for (ull = 0; ull < max; ull++) { + file = array[ull]; + if (unlikely(!file)) + break; + + /* AuDbg("%pD\n", file); */ + fi_read_lock(file); + if (unlikely(au_test_mmapped(file))) { + err = -EBUSY; + AuVerbose(verbose, "mmapped %pD\n", file); + AuDbgFile(file); + FiMustNoWaiters(file); + fi_read_unlock(file); + goto out_array; + } + + hfile = &au_fi(file)->fi_htop; + hf = hfile->hf_file; + if (!d_is_reg(file->f_path.dentry) + || !(file->f_mode & FMODE_WRITE) + || hfile->hf_br->br_id != br_id + || !(hf->f_mode & FMODE_WRITE)) + array[ull] = NULL; + else { + do_warn = 1; + get_file(file); + } + + FiMustNoWaiters(file); + fi_read_unlock(file); + fput(file); + } + + err = 0; + if (do_warn) + au_warn_ima(); + + for (ull = 0; ull < max; ull++) { + file = array[ull]; + if (!file) + continue; + + /* todo: already flushed? */ + /* + * fs/super.c:mark_files_ro() is gone, but aufs keeps its + * approach which resets f_mode and calls mnt_drop_write() and + * file_release_write() for each file, because the branch + * attribute in aufs world is totally different from the native + * fs rw/ro mode. + */ + /* fi_read_lock(file); */ + hfile = &au_fi(file)->fi_htop; + hf = hfile->hf_file; + /* fi_read_unlock(file); */ + spin_lock(&hf->f_lock); + writer = !!(hf->f_mode & FMODE_WRITER); + hf->f_mode &= ~(FMODE_WRITE | FMODE_WRITER); + spin_unlock(&hf->f_lock); + if (writer) { + put_write_access(file_inode(hf)); + __mnt_drop_write(hf->f_path.mnt); + } + } + +out_array: + au_farray_free(array, max); +out: + AuTraceErr(err); + return err; +} + +int au_br_mod(struct super_block *sb, struct au_opt_mod *mod, int remount, + int *do_refresh) +{ + int err, rerr; + aufs_bindex_t bindex; + struct dentry *root; + struct au_branch *br; + struct au_br_fhsm *bf; + + root = sb->s_root; + bindex = au_find_dbindex(root, mod->h_root); + if (bindex < 0) { + if (remount) + return 0; /* success */ + err = -ENOENT; + pr_err("%s no such branch\n", mod->path); + goto out; + } + AuDbg("bindex b%d\n", bindex); + + err = test_br(d_inode(mod->h_root), mod->perm, mod->path); + if (unlikely(err)) + goto out; + + br = au_sbr(sb, bindex); + AuDebugOn(mod->h_root != au_br_dentry(br)); + if (br->br_perm == mod->perm) + return 0; /* success */ + + /* pre-allocate for non-fhsm --> fhsm */ + bf = NULL; + if (!au_br_fhsm(br->br_perm) && au_br_fhsm(mod->perm)) { + err = au_fhsm_br_alloc(br); + if (unlikely(err)) + goto out; + bf = br->br_fhsm; + br->br_fhsm = NULL; + } + + if (au_br_writable(br->br_perm)) { + /* remove whiteout base */ + err = au_br_init_wh(sb, br, mod->perm); + if (unlikely(err)) + goto out_bf; + + if (!au_br_writable(mod->perm)) { + /* rw --> ro, file might be mmapped */ + DiMustNoWaiters(root); + IiMustNoWaiters(d_inode(root)); + di_write_unlock(root); + err = au_br_mod_files_ro(sb, bindex); + /* aufs_write_lock() calls ..._child() */ + di_write_lock_child(root); + + if (unlikely(err)) { + rerr = -ENOMEM; + br->br_wbr = kzalloc(sizeof(*br->br_wbr), + GFP_NOFS); + if (br->br_wbr) + rerr = au_wbr_init(br, sb, br->br_perm); + if (unlikely(rerr)) { + AuIOErr("nested error %d (%d)\n", + rerr, err); + br->br_perm = mod->perm; + } + } + } + } else if (au_br_writable(mod->perm)) { + /* ro --> rw */ + err = -ENOMEM; + br->br_wbr = kzalloc(sizeof(*br->br_wbr), GFP_NOFS); + if (br->br_wbr) { + err = au_wbr_init(br, sb, mod->perm); + if (unlikely(err)) { + au_delayed_kfree(br->br_wbr); + br->br_wbr = NULL; + } + } + } + if (unlikely(err)) + goto out_bf; + + if (au_br_fhsm(br->br_perm)) { + if (!au_br_fhsm(mod->perm)) { + /* fhsm --> non-fhsm */ + au_br_fhsm_fin(br->br_fhsm); + au_delayed_kfree(br->br_fhsm); + br->br_fhsm = NULL; + } + } else if (au_br_fhsm(mod->perm)) + /* non-fhsm --> fhsm */ + br->br_fhsm = bf; + + *do_refresh |= need_sigen_inc(br->br_perm, mod->perm); + br->br_perm = mod->perm; + goto out; /* success */ + +out_bf: + if (bf) + au_delayed_kfree(bf); +out: + AuTraceErr(err); + return err; +} + +/* ---------------------------------------------------------------------- */ + +int au_br_stfs(struct au_branch *br, struct aufs_stfs *stfs) +{ + int err; + struct kstatfs kstfs; + + err = vfs_statfs(&br->br_path, &kstfs); + if (!err) { + stfs->f_blocks = kstfs.f_blocks; + stfs->f_bavail = kstfs.f_bavail; + stfs->f_files = kstfs.f_files; + stfs->f_ffree = kstfs.f_ffree; + } + + return err; +} --- linux-4.8.0.orig/fs/aufs/branch.h +++ linux-4.8.0/fs/aufs/branch.h @@ -0,0 +1,309 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * branch filesystems and xino for them + */ + +#ifndef __AUFS_BRANCH_H__ +#define __AUFS_BRANCH_H__ + +#ifdef __KERNEL__ + +#include +#include "dynop.h" +#include "rwsem.h" +#include "super.h" + +/* ---------------------------------------------------------------------- */ + +/* a xino file */ +struct au_xino_file { + struct file *xi_file; + struct mutex xi_nondir_mtx; + + /* todo: make xino files an array to support huge inode number */ + +#ifdef CONFIG_DEBUG_FS + struct dentry *xi_dbgaufs; +#endif +}; + +/* File-based Hierarchical Storage Management */ +struct au_br_fhsm { +#ifdef CONFIG_AUFS_FHSM + struct mutex bf_lock; + unsigned long bf_jiffy; + struct aufs_stfs bf_stfs; + int bf_readable; +#endif +}; + +/* members for writable branch only */ +enum {AuBrWh_BASE, AuBrWh_PLINK, AuBrWh_ORPH, AuBrWh_Last}; +struct au_wbr { + struct au_rwsem wbr_wh_rwsem; + struct dentry *wbr_wh[AuBrWh_Last]; + atomic_t wbr_wh_running; +#define wbr_whbase wbr_wh[AuBrWh_BASE] /* whiteout base */ +#define wbr_plink wbr_wh[AuBrWh_PLINK] /* pseudo-link dir */ +#define wbr_orph wbr_wh[AuBrWh_ORPH] /* dir for orphans */ + + /* mfs mode */ + unsigned long long wbr_bytes; +}; + +/* ext2 has 3 types of operations at least, ext3 has 4 */ +#define AuBrDynOp (AuDyLast * 4) + +#ifdef CONFIG_AUFS_HFSNOTIFY +/* support for asynchronous destruction */ +struct au_br_hfsnotify { + struct fsnotify_group *hfsn_group; +}; +#endif + +/* sysfs entries */ +struct au_brsysfs { + char name[16]; + struct attribute attr; +}; + +enum { + AuBrSysfs_BR, + AuBrSysfs_BRID, + AuBrSysfs_Last +}; + +/* protected by superblock rwsem */ +struct au_branch { + struct au_xino_file br_xino; + + aufs_bindex_t br_id; + + int br_perm; + struct path br_path; + spinlock_t br_dykey_lock; + struct au_dykey *br_dykey[AuBrDynOp]; + struct percpu_counter br_count; + + struct au_wbr *br_wbr; + struct au_br_fhsm *br_fhsm; + + /* xino truncation */ + atomic_t br_xino_running; + +#ifdef CONFIG_AUFS_HFSNOTIFY + struct au_br_hfsnotify *br_hfsn; +#endif + +#ifdef CONFIG_SYSFS + /* entries under sysfs per mount-point */ + struct au_brsysfs br_sysfs[AuBrSysfs_Last]; +#endif +}; + +/* ---------------------------------------------------------------------- */ + +static inline struct vfsmount *au_br_mnt(struct au_branch *br) +{ + return br->br_path.mnt; +} + +static inline struct dentry *au_br_dentry(struct au_branch *br) +{ + return br->br_path.dentry; +} + +static inline struct super_block *au_br_sb(struct au_branch *br) +{ + return au_br_mnt(br)->mnt_sb; +} + +static inline void au_br_get(struct au_branch *br) +{ + percpu_counter_inc(&br->br_count); +} + +static inline void au_br_put(struct au_branch *br) +{ + percpu_counter_dec(&br->br_count); +} + +static inline s64 au_br_count(struct au_branch *br) +{ + return percpu_counter_sum(&br->br_count); +} + +static inline void au_br_count_init(struct au_branch *br) +{ + percpu_counter_init(&br->br_count, 0, GFP_NOFS); +} + +static inline void au_br_count_fin(struct au_branch *br) +{ + percpu_counter_destroy(&br->br_count); +} + +static inline int au_br_rdonly(struct au_branch *br) +{ + return ((au_br_sb(br)->s_flags & MS_RDONLY) + || !au_br_writable(br->br_perm)) + ? -EROFS : 0; +} + +static inline int au_br_hnotifyable(int brperm __maybe_unused) +{ +#ifdef CONFIG_AUFS_HNOTIFY + return !(brperm & AuBrPerm_RR); +#else + return 0; +#endif +} + +static inline int au_br_test_oflag(int oflag, struct au_branch *br) +{ + int err, exec_flag; + + err = 0; + exec_flag = oflag & __FMODE_EXEC; + if (unlikely(exec_flag && path_noexec(&br->br_path))) + err = -EACCES; + + return err; +} + +/* ---------------------------------------------------------------------- */ + +/* branch.c */ +struct au_sbinfo; +void au_br_free(struct au_sbinfo *sinfo); +int au_br_index(struct super_block *sb, aufs_bindex_t br_id); +struct au_opt_add; +int au_br_add(struct super_block *sb, struct au_opt_add *add, int remount); +struct au_opt_del; +int au_br_del(struct super_block *sb, struct au_opt_del *del, int remount); +long au_ibusy_ioctl(struct file *file, unsigned long arg); +#ifdef CONFIG_COMPAT +long au_ibusy_compat_ioctl(struct file *file, unsigned long arg); +#endif +struct au_opt_mod; +int au_br_mod(struct super_block *sb, struct au_opt_mod *mod, int remount, + int *do_refresh); +struct aufs_stfs; +int au_br_stfs(struct au_branch *br, struct aufs_stfs *stfs); + +/* xino.c */ +static const loff_t au_loff_max = LLONG_MAX; + +int au_xib_trunc(struct super_block *sb); +ssize_t xino_fread(vfs_readf_t func, struct file *file, void *buf, size_t size, + loff_t *pos); +ssize_t xino_fwrite(vfs_writef_t func, struct file *file, void *buf, + size_t size, loff_t *pos); +struct file *au_xino_create2(struct file *base_file, struct file *copy_src); +struct file *au_xino_create(struct super_block *sb, char *fname, int silent); +ino_t au_xino_new_ino(struct super_block *sb); +void au_xino_delete_inode(struct inode *inode, const int unlinked); +int au_xino_write(struct super_block *sb, aufs_bindex_t bindex, ino_t h_ino, + ino_t ino); +int au_xino_read(struct super_block *sb, aufs_bindex_t bindex, ino_t h_ino, + ino_t *ino); +int au_xino_br(struct super_block *sb, struct au_branch *br, ino_t hino, + struct file *base_file, int do_test); +int au_xino_trunc(struct super_block *sb, aufs_bindex_t bindex); + +struct au_opt_xino; +int au_xino_set(struct super_block *sb, struct au_opt_xino *xino, int remount); +void au_xino_clr(struct super_block *sb); +struct file *au_xino_def(struct super_block *sb); +int au_xino_path(struct seq_file *seq, struct file *file); + +/* ---------------------------------------------------------------------- */ + +/* Superblock to branch */ +static inline +aufs_bindex_t au_sbr_id(struct super_block *sb, aufs_bindex_t bindex) +{ + return au_sbr(sb, bindex)->br_id; +} + +static inline +struct vfsmount *au_sbr_mnt(struct super_block *sb, aufs_bindex_t bindex) +{ + return au_br_mnt(au_sbr(sb, bindex)); +} + +static inline +struct super_block *au_sbr_sb(struct super_block *sb, aufs_bindex_t bindex) +{ + return au_br_sb(au_sbr(sb, bindex)); +} + +static inline void au_sbr_get(struct super_block *sb, aufs_bindex_t bindex) +{ + au_br_get(au_sbr(sb, bindex)); +} + +static inline void au_sbr_put(struct super_block *sb, aufs_bindex_t bindex) +{ + au_br_put(au_sbr(sb, bindex)); +} + +static inline int au_sbr_perm(struct super_block *sb, aufs_bindex_t bindex) +{ + return au_sbr(sb, bindex)->br_perm; +} + +static inline int au_sbr_whable(struct super_block *sb, aufs_bindex_t bindex) +{ + return au_br_whable(au_sbr_perm(sb, bindex)); +} + +/* ---------------------------------------------------------------------- */ + +/* + * wbr_wh_read_lock, wbr_wh_write_lock + * wbr_wh_read_unlock, wbr_wh_write_unlock, wbr_wh_downgrade_lock + */ +AuSimpleRwsemFuncs(wbr_wh, struct au_wbr *wbr, &wbr->wbr_wh_rwsem); + +#define WbrWhMustNoWaiters(wbr) AuRwMustNoWaiters(&wbr->wbr_wh_rwsem) +#define WbrWhMustAnyLock(wbr) AuRwMustAnyLock(&wbr->wbr_wh_rwsem) +#define WbrWhMustWriteLock(wbr) AuRwMustWriteLock(&wbr->wbr_wh_rwsem) + +/* ---------------------------------------------------------------------- */ + +#ifdef CONFIG_AUFS_FHSM +static inline void au_br_fhsm_init(struct au_br_fhsm *brfhsm) +{ + mutex_init(&brfhsm->bf_lock); + brfhsm->bf_jiffy = 0; + brfhsm->bf_readable = 0; +} + +static inline void au_br_fhsm_fin(struct au_br_fhsm *brfhsm) +{ + mutex_destroy(&brfhsm->bf_lock); +} +#else +AuStubVoid(au_br_fhsm_init, struct au_br_fhsm *brfhsm) +AuStubVoid(au_br_fhsm_fin, struct au_br_fhsm *brfhsm) +#endif + +#endif /* __KERNEL__ */ +#endif /* __AUFS_BRANCH_H__ */ --- linux-4.8.0.orig/fs/aufs/conf.mk +++ linux-4.8.0/fs/aufs/conf.mk @@ -0,0 +1,38 @@ + +AuConfStr = CONFIG_AUFS_FS=${CONFIG_AUFS_FS} + +define AuConf +ifdef ${1} +AuConfStr += ${1}=${${1}} +endif +endef + +AuConfAll = BRANCH_MAX_127 BRANCH_MAX_511 BRANCH_MAX_1023 BRANCH_MAX_32767 \ + SBILIST \ + HNOTIFY HFSNOTIFY \ + EXPORT INO_T_64 \ + XATTR \ + FHSM \ + RDU \ + SHWH \ + BR_RAMFS \ + BR_FUSE POLL \ + BR_HFSPLUS \ + BDEV_LOOP \ + DEBUG MAGIC_SYSRQ +$(foreach i, ${AuConfAll}, \ + $(eval $(call AuConf,CONFIG_AUFS_${i}))) + +AuConfName = ${obj}/conf.str +${AuConfName}.tmp: FORCE + @echo ${AuConfStr} | tr ' ' '\n' | sed -e 's/^/"/' -e 's/$$/\\n"/' > $@ +${AuConfName}: ${AuConfName}.tmp + @diff -q $< $@ > /dev/null 2>&1 || { \ + echo ' GEN ' $@; \ + cp -p $< $@; \ + } +FORCE: +clean-files += ${AuConfName} ${AuConfName}.tmp +${obj}/sysfs.o: ${AuConfName} + +-include ${srctree}/${src}/conf_priv.mk --- linux-4.8.0.orig/fs/aufs/cpup.c +++ linux-4.8.0/fs/aufs/cpup.c @@ -0,0 +1,1391 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * copy-up functions, see wbr_policy.c for copy-down + */ + +#include +#include +#include +#include "aufs.h" + +void au_cpup_attr_flags(struct inode *dst, unsigned int iflags) +{ + const unsigned int mask = S_DEAD | S_SWAPFILE | S_PRIVATE + | S_NOATIME | S_NOCMTIME | S_AUTOMOUNT; + + BUILD_BUG_ON(sizeof(iflags) != sizeof(dst->i_flags)); + + dst->i_flags |= iflags & ~mask; + if (au_test_fs_notime(dst->i_sb)) + dst->i_flags |= S_NOATIME | S_NOCMTIME; +} + +void au_cpup_attr_timesizes(struct inode *inode) +{ + struct inode *h_inode; + + h_inode = au_h_iptr(inode, au_ibtop(inode)); + fsstack_copy_attr_times(inode, h_inode); + fsstack_copy_inode_size(inode, h_inode); +} + +void au_cpup_attr_nlink(struct inode *inode, int force) +{ + struct inode *h_inode; + struct super_block *sb; + aufs_bindex_t bindex, bbot; + + sb = inode->i_sb; + bindex = au_ibtop(inode); + h_inode = au_h_iptr(inode, bindex); + if (!force + && !S_ISDIR(h_inode->i_mode) + && au_opt_test(au_mntflags(sb), PLINK) + && au_plink_test(inode)) + return; + + /* + * 0 can happen in revalidating. + * h_inode->i_mutex may not be held here, but it is harmless since once + * i_nlink reaches 0, it will never become positive except O_TMPFILE + * case. + * todo: O_TMPFILE+linkat(AT_SYMLINK_FOLLOW) bypassing aufs may cause + * the incorrect link count. + */ + set_nlink(inode, h_inode->i_nlink); + + /* + * fewer nlink makes find(1) noisy, but larger nlink doesn't. + * it may includes whplink directory. + */ + if (S_ISDIR(h_inode->i_mode)) { + bbot = au_ibbot(inode); + for (bindex++; bindex <= bbot; bindex++) { + h_inode = au_h_iptr(inode, bindex); + if (h_inode) + au_add_nlink(inode, h_inode); + } + } +} + +void au_cpup_attr_changeable(struct inode *inode) +{ + struct inode *h_inode; + + h_inode = au_h_iptr(inode, au_ibtop(inode)); + inode->i_mode = h_inode->i_mode; + inode->i_uid = h_inode->i_uid; + inode->i_gid = h_inode->i_gid; + au_cpup_attr_timesizes(inode); + au_cpup_attr_flags(inode, h_inode->i_flags); +} + +void au_cpup_igen(struct inode *inode, struct inode *h_inode) +{ + struct au_iinfo *iinfo = au_ii(inode); + + IiMustWriteLock(inode); + + iinfo->ii_higen = h_inode->i_generation; + iinfo->ii_hsb1 = h_inode->i_sb; +} + +void au_cpup_attr_all(struct inode *inode, int force) +{ + struct inode *h_inode; + + h_inode = au_h_iptr(inode, au_ibtop(inode)); + au_cpup_attr_changeable(inode); + if (inode->i_nlink > 0) + au_cpup_attr_nlink(inode, force); + inode->i_rdev = h_inode->i_rdev; + inode->i_blkbits = h_inode->i_blkbits; + au_cpup_igen(inode, h_inode); +} + +/* ---------------------------------------------------------------------- */ + +/* Note: dt_dentry and dt_h_dentry are not dget/dput-ed */ + +/* keep the timestamps of the parent dir when cpup */ +void au_dtime_store(struct au_dtime *dt, struct dentry *dentry, + struct path *h_path) +{ + struct inode *h_inode; + + dt->dt_dentry = dentry; + dt->dt_h_path = *h_path; + h_inode = d_inode(h_path->dentry); + dt->dt_atime = h_inode->i_atime; + dt->dt_mtime = h_inode->i_mtime; + /* smp_mb(); */ +} + +void au_dtime_revert(struct au_dtime *dt) +{ + struct iattr attr; + int err; + + attr.ia_atime = dt->dt_atime; + attr.ia_mtime = dt->dt_mtime; + attr.ia_valid = ATTR_FORCE | ATTR_MTIME | ATTR_MTIME_SET + | ATTR_ATIME | ATTR_ATIME_SET; + + /* no delegation since this is a directory */ + err = vfsub_notify_change(&dt->dt_h_path, &attr, /*delegated*/NULL); + if (unlikely(err)) + pr_warn("restoring timestamps failed(%d). ignored\n", err); +} + +/* ---------------------------------------------------------------------- */ + +/* internal use only */ +struct au_cpup_reg_attr { + int valid; + struct kstat st; + unsigned int iflags; /* inode->i_flags */ +}; + +static noinline_for_stack +int cpup_iattr(struct dentry *dst, aufs_bindex_t bindex, struct dentry *h_src, + struct au_cpup_reg_attr *h_src_attr) +{ + int err, sbits, icex; + unsigned int mnt_flags; + unsigned char verbose; + struct iattr ia; + struct path h_path; + struct inode *h_isrc, *h_idst; + struct kstat *h_st; + struct au_branch *br; + + h_path.dentry = au_h_dptr(dst, bindex); + h_idst = d_inode(h_path.dentry); + br = au_sbr(dst->d_sb, bindex); + h_path.mnt = au_br_mnt(br); + h_isrc = d_inode(h_src); + ia.ia_valid = ATTR_FORCE | ATTR_UID | ATTR_GID + | ATTR_ATIME | ATTR_MTIME + | ATTR_ATIME_SET | ATTR_MTIME_SET; + if (h_src_attr && h_src_attr->valid) { + h_st = &h_src_attr->st; + ia.ia_uid = h_st->uid; + ia.ia_gid = h_st->gid; + ia.ia_atime = h_st->atime; + ia.ia_mtime = h_st->mtime; + if (h_idst->i_mode != h_st->mode + && !S_ISLNK(h_idst->i_mode)) { + ia.ia_valid |= ATTR_MODE; + ia.ia_mode = h_st->mode; + } + sbits = !!(h_st->mode & (S_ISUID | S_ISGID)); + au_cpup_attr_flags(h_idst, h_src_attr->iflags); + } else { + ia.ia_uid = h_isrc->i_uid; + ia.ia_gid = h_isrc->i_gid; + ia.ia_atime = h_isrc->i_atime; + ia.ia_mtime = h_isrc->i_mtime; + if (h_idst->i_mode != h_isrc->i_mode + && !S_ISLNK(h_idst->i_mode)) { + ia.ia_valid |= ATTR_MODE; + ia.ia_mode = h_isrc->i_mode; + } + sbits = !!(h_isrc->i_mode & (S_ISUID | S_ISGID)); + au_cpup_attr_flags(h_idst, h_isrc->i_flags); + } + /* no delegation since it is just created */ + err = vfsub_notify_change(&h_path, &ia, /*delegated*/NULL); + + /* is this nfs only? */ + if (!err && sbits && au_test_nfs(h_path.dentry->d_sb)) { + ia.ia_valid = ATTR_FORCE | ATTR_MODE; + ia.ia_mode = h_isrc->i_mode; + err = vfsub_notify_change(&h_path, &ia, /*delegated*/NULL); + } + + icex = br->br_perm & AuBrAttr_ICEX; + if (!err) { + mnt_flags = au_mntflags(dst->d_sb); + verbose = !!au_opt_test(mnt_flags, VERBOSE); + err = au_cpup_xattr(h_path.dentry, h_src, icex, verbose); + } + + return err; +} + +/* ---------------------------------------------------------------------- */ + +static int au_do_copy_file(struct file *dst, struct file *src, loff_t len, + char *buf, unsigned long blksize) +{ + int err; + size_t sz, rbytes, wbytes; + unsigned char all_zero; + char *p, *zp; + struct inode *h_inode; + /* reduce stack usage */ + struct iattr *ia; + + zp = page_address(ZERO_PAGE(0)); + if (unlikely(!zp)) + return -ENOMEM; /* possible? */ + + err = 0; + all_zero = 0; + while (len) { + AuDbg("len %lld\n", len); + sz = blksize; + if (len < blksize) + sz = len; + + rbytes = 0; + /* todo: signal_pending? */ + while (!rbytes || err == -EAGAIN || err == -EINTR) { + rbytes = vfsub_read_k(src, buf, sz, &src->f_pos); + err = rbytes; + } + if (unlikely(err < 0)) + break; + + all_zero = 0; + if (len >= rbytes && rbytes == blksize) + all_zero = !memcmp(buf, zp, rbytes); + if (!all_zero) { + wbytes = rbytes; + p = buf; + while (wbytes) { + size_t b; + + b = vfsub_write_k(dst, p, wbytes, &dst->f_pos); + err = b; + /* todo: signal_pending? */ + if (unlikely(err == -EAGAIN || err == -EINTR)) + continue; + if (unlikely(err < 0)) + break; + wbytes -= b; + p += b; + } + if (unlikely(err < 0)) + break; + } else { + loff_t res; + + AuLabel(hole); + res = vfsub_llseek(dst, rbytes, SEEK_CUR); + err = res; + if (unlikely(res < 0)) + break; + } + len -= rbytes; + err = 0; + } + + /* the last block may be a hole */ + if (!err && all_zero) { + AuLabel(last hole); + + err = 1; + if (au_test_nfs(dst->f_path.dentry->d_sb)) { + /* nfs requires this step to make last hole */ + /* is this only nfs? */ + do { + /* todo: signal_pending? */ + err = vfsub_write_k(dst, "\0", 1, &dst->f_pos); + } while (err == -EAGAIN || err == -EINTR); + if (err == 1) + dst->f_pos--; + } + + if (err == 1) { + ia = (void *)buf; + ia->ia_size = dst->f_pos; + ia->ia_valid = ATTR_SIZE | ATTR_FILE; + ia->ia_file = dst; + h_inode = file_inode(dst); + inode_lock_nested(h_inode, AuLsc_I_CHILD2); + /* no delegation since it is just created */ + err = vfsub_notify_change(&dst->f_path, ia, + /*delegated*/NULL); + inode_unlock(h_inode); + } + } + + return err; +} + +int au_copy_file(struct file *dst, struct file *src, loff_t len) +{ + int err; + unsigned long blksize; + unsigned char do_kfree; + char *buf; + + err = -ENOMEM; + blksize = dst->f_path.dentry->d_sb->s_blocksize; + if (!blksize || PAGE_SIZE < blksize) + blksize = PAGE_SIZE; + AuDbg("blksize %lu\n", blksize); + do_kfree = (blksize != PAGE_SIZE && blksize >= sizeof(struct iattr *)); + if (do_kfree) + buf = kmalloc(blksize, GFP_NOFS); + else + buf = (void *)__get_free_page(GFP_NOFS); + if (unlikely(!buf)) + goto out; + + if (len > (1 << 22)) + AuDbg("copying a large file %lld\n", (long long)len); + + src->f_pos = 0; + dst->f_pos = 0; + err = au_do_copy_file(dst, src, len, buf, blksize); + if (do_kfree) + au_delayed_kfree(buf); + else + au_delayed_free_page((unsigned long)buf); + +out: + return err; +} + +/* + * to support a sparse file which is opened with O_APPEND, + * we need to close the file. + */ +static int au_cp_regular(struct au_cp_generic *cpg) +{ + int err, i; + enum { SRC, DST }; + struct { + aufs_bindex_t bindex; + unsigned int flags; + struct dentry *dentry; + int force_wr; + struct file *file; + void *label; + } *f, file[] = { + { + .bindex = cpg->bsrc, + .flags = O_RDONLY | O_NOATIME | O_LARGEFILE, + .label = &&out + }, + { + .bindex = cpg->bdst, + .flags = O_WRONLY | O_NOATIME | O_LARGEFILE, + .force_wr = !!au_ftest_cpup(cpg->flags, RWDST), + .label = &&out_src + } + }; + struct super_block *sb; + struct inode *h_src_inode; + struct task_struct *tsk = current; + + /* bsrc branch can be ro/rw. */ + sb = cpg->dentry->d_sb; + f = file; + for (i = 0; i < 2; i++, f++) { + f->dentry = au_h_dptr(cpg->dentry, f->bindex); + f->file = au_h_open(cpg->dentry, f->bindex, f->flags, + /*file*/NULL, f->force_wr); + err = PTR_ERR(f->file); + if (IS_ERR(f->file)) + goto *f->label; + } + + /* try stopping to update while we copyup */ + h_src_inode = d_inode(file[SRC].dentry); + if (!au_test_nfs(h_src_inode->i_sb)) + IMustLock(h_src_inode); + err = au_copy_file(file[DST].file, file[SRC].file, cpg->len); + + /* i wonder if we had O_NO_DELAY_FPUT flag */ + if (tsk->flags & PF_KTHREAD) + __fput_sync(file[DST].file); + else { + WARN(1, "%pD\nPlease report this warning to aufs-users ML", + file[DST].file); + fput(file[DST].file); + /* + * too bad. + * we have to call both since we don't know which place the file + * was added to. + */ + task_work_run(); + flush_delayed_fput(); + } + au_sbr_put(sb, file[DST].bindex); + +out_src: + fput(file[SRC].file); + au_sbr_put(sb, file[SRC].bindex); +out: + return err; +} + +static int au_do_cpup_regular(struct au_cp_generic *cpg, + struct au_cpup_reg_attr *h_src_attr) +{ + int err, rerr; + loff_t l; + struct path h_path; + struct inode *h_src_inode, *h_dst_inode; + + err = 0; + h_src_inode = au_h_iptr(d_inode(cpg->dentry), cpg->bsrc); + l = i_size_read(h_src_inode); + if (cpg->len == -1 || l < cpg->len) + cpg->len = l; + if (cpg->len) { + /* try stopping to update while we are referencing */ + inode_lock_nested(h_src_inode, AuLsc_I_CHILD); + au_pin_hdir_unlock(cpg->pin); + + h_path.dentry = au_h_dptr(cpg->dentry, cpg->bsrc); + h_path.mnt = au_sbr_mnt(cpg->dentry->d_sb, cpg->bsrc); + h_src_attr->iflags = h_src_inode->i_flags; + if (!au_test_nfs(h_src_inode->i_sb)) + err = vfs_getattr(&h_path, &h_src_attr->st); + else { + inode_unlock(h_src_inode); + err = vfs_getattr(&h_path, &h_src_attr->st); + inode_lock_nested(h_src_inode, AuLsc_I_CHILD); + } + if (unlikely(err)) { + inode_unlock(h_src_inode); + goto out; + } + h_src_attr->valid = 1; + if (!au_test_nfs(h_src_inode->i_sb)) { + err = au_cp_regular(cpg); + inode_unlock(h_src_inode); + } else { + inode_unlock(h_src_inode); + err = au_cp_regular(cpg); + } + rerr = au_pin_hdir_relock(cpg->pin); + if (!err && rerr) + err = rerr; + } + if (!err && (h_src_inode->i_state & I_LINKABLE)) { + h_path.dentry = au_h_dptr(cpg->dentry, cpg->bdst); + h_dst_inode = d_inode(h_path.dentry); + spin_lock(&h_dst_inode->i_lock); + h_dst_inode->i_state |= I_LINKABLE; + spin_unlock(&h_dst_inode->i_lock); + } + +out: + return err; +} + +static int au_do_cpup_symlink(struct path *h_path, struct dentry *h_src, + struct inode *h_dir) +{ + int err, symlen; + mm_segment_t old_fs; + union { + char *k; + char __user *u; + } sym; + struct inode *h_inode = d_inode(h_src); + const struct inode_operations *h_iop = h_inode->i_op; + + err = -ENOSYS; + if (unlikely(!h_iop->readlink)) + goto out; + + err = -ENOMEM; + sym.k = (void *)__get_free_page(GFP_NOFS); + if (unlikely(!sym.k)) + goto out; + + /* unnecessary to support mmap_sem since symlink is not mmap-able */ + old_fs = get_fs(); + set_fs(KERNEL_DS); + symlen = h_iop->readlink(h_src, sym.u, PATH_MAX); + err = symlen; + set_fs(old_fs); + + if (symlen > 0) { + sym.k[symlen] = 0; + err = vfsub_symlink(h_dir, h_path, sym.k); + } + au_delayed_free_page((unsigned long)sym.k); + +out: + return err; +} + +/* + * regardless 'acl' option, reset all ACL. + * All ACL will be copied up later from the original entry on the lower branch. + */ +static int au_reset_acl(struct inode *h_dir, struct path *h_path, umode_t mode) +{ + int err; + struct dentry *h_dentry; + struct inode *h_inode; + + h_dentry = h_path->dentry; + h_inode = d_inode(h_dentry); + /* forget_all_cached_acls(h_inode)); */ + err = vfsub_removexattr(h_dentry, XATTR_NAME_POSIX_ACL_ACCESS); + AuTraceErr(err); + if (err == -EOPNOTSUPP) + err = 0; + if (!err) + err = vfsub_acl_chmod(h_inode, mode); + + AuTraceErr(err); + return err; +} + +static int au_do_cpup_dir(struct au_cp_generic *cpg, struct dentry *dst_parent, + struct inode *h_dir, struct path *h_path) +{ + int err; + struct inode *dir, *inode; + + err = vfsub_removexattr(h_path->dentry, XATTR_NAME_POSIX_ACL_DEFAULT); + AuTraceErr(err); + if (err == -EOPNOTSUPP) + err = 0; + if (unlikely(err)) + goto out; + + /* + * strange behaviour from the users view, + * particularry setattr case + */ + dir = d_inode(dst_parent); + if (au_ibtop(dir) == cpg->bdst) + au_cpup_attr_nlink(dir, /*force*/1); + inode = d_inode(cpg->dentry); + au_cpup_attr_nlink(inode, /*force*/1); + +out: + return err; +} + +static noinline_for_stack +int cpup_entry(struct au_cp_generic *cpg, struct dentry *dst_parent, + struct au_cpup_reg_attr *h_src_attr) +{ + int err; + umode_t mode; + unsigned int mnt_flags; + unsigned char isdir, isreg, force; + const unsigned char do_dt = !!au_ftest_cpup(cpg->flags, DTIME); + struct au_dtime dt; + struct path h_path; + struct dentry *h_src, *h_dst, *h_parent; + struct inode *h_inode, *h_dir; + struct super_block *sb; + + /* bsrc branch can be ro/rw. */ + h_src = au_h_dptr(cpg->dentry, cpg->bsrc); + h_inode = d_inode(h_src); + AuDebugOn(h_inode != au_h_iptr(d_inode(cpg->dentry), cpg->bsrc)); + + /* try stopping to be referenced while we are creating */ + h_dst = au_h_dptr(cpg->dentry, cpg->bdst); + if (au_ftest_cpup(cpg->flags, RENAME)) + AuDebugOn(strncmp(h_dst->d_name.name, AUFS_WH_PFX, + AUFS_WH_PFX_LEN)); + h_parent = h_dst->d_parent; /* dir inode is locked */ + h_dir = d_inode(h_parent); + IMustLock(h_dir); + AuDebugOn(h_parent != h_dst->d_parent); + + sb = cpg->dentry->d_sb; + h_path.mnt = au_sbr_mnt(sb, cpg->bdst); + if (do_dt) { + h_path.dentry = h_parent; + au_dtime_store(&dt, dst_parent, &h_path); + } + h_path.dentry = h_dst; + + isreg = 0; + isdir = 0; + mode = h_inode->i_mode; + switch (mode & S_IFMT) { + case S_IFREG: + isreg = 1; + err = vfsub_create(h_dir, &h_path, S_IRUSR | S_IWUSR, + /*want_excl*/true); + if (!err) + err = au_do_cpup_regular(cpg, h_src_attr); + break; + case S_IFDIR: + isdir = 1; + err = vfsub_mkdir(h_dir, &h_path, mode); + if (!err) + err = au_do_cpup_dir(cpg, dst_parent, h_dir, &h_path); + break; + case S_IFLNK: + err = au_do_cpup_symlink(&h_path, h_src, h_dir); + break; + case S_IFCHR: + case S_IFBLK: + AuDebugOn(!capable(CAP_MKNOD)); + /*FALLTHROUGH*/ + case S_IFIFO: + case S_IFSOCK: + err = vfsub_mknod(h_dir, &h_path, mode, h_inode->i_rdev); + break; + default: + AuIOErr("Unknown inode type 0%o\n", mode); + err = -EIO; + } + if (!err) + err = au_reset_acl(h_dir, &h_path, mode); + + mnt_flags = au_mntflags(sb); + if (!au_opt_test(mnt_flags, UDBA_NONE) + && !isdir + && au_opt_test(mnt_flags, XINO) + && (h_inode->i_nlink == 1 + || (h_inode->i_state & I_LINKABLE)) + /* todo: unnecessary? */ + /* && d_inode(cpg->dentry)->i_nlink == 1 */ + && cpg->bdst < cpg->bsrc + && !au_ftest_cpup(cpg->flags, KEEPLINO)) + au_xino_write(sb, cpg->bsrc, h_inode->i_ino, /*ino*/0); + /* ignore this error */ + + if (!err) { + force = 0; + if (isreg) { + force = !!cpg->len; + if (cpg->len == -1) + force = !!i_size_read(h_inode); + } + au_fhsm_wrote(sb, cpg->bdst, force); + } + + if (do_dt) + au_dtime_revert(&dt); + return err; +} + +static int au_do_ren_after_cpup(struct au_cp_generic *cpg, struct path *h_path) +{ + int err; + struct dentry *dentry, *h_dentry, *h_parent, *parent; + struct inode *h_dir; + aufs_bindex_t bdst; + + dentry = cpg->dentry; + bdst = cpg->bdst; + h_dentry = au_h_dptr(dentry, bdst); + if (!au_ftest_cpup(cpg->flags, OVERWRITE)) { + dget(h_dentry); + au_set_h_dptr(dentry, bdst, NULL); + err = au_lkup_neg(dentry, bdst, /*wh*/0); + if (!err) + h_path->dentry = dget(au_h_dptr(dentry, bdst)); + au_set_h_dptr(dentry, bdst, h_dentry); + } else { + err = 0; + parent = dget_parent(dentry); + h_parent = au_h_dptr(parent, bdst); + dput(parent); + h_path->dentry = vfsub_lkup_one(&dentry->d_name, h_parent); + if (IS_ERR(h_path->dentry)) + err = PTR_ERR(h_path->dentry); + } + if (unlikely(err)) + goto out; + + h_parent = h_dentry->d_parent; /* dir inode is locked */ + h_dir = d_inode(h_parent); + IMustLock(h_dir); + AuDbg("%pd %pd\n", h_dentry, h_path->dentry); + /* no delegation since it is just created */ + err = vfsub_rename(h_dir, h_dentry, h_dir, h_path, /*delegated*/NULL); + dput(h_path->dentry); + +out: + return err; +} + +/* + * copyup the @dentry from @bsrc to @bdst. + * the caller must set the both of lower dentries. + * @len is for truncating when it is -1 copyup the entire file. + * in link/rename cases, @dst_parent may be different from the real one. + * basic->bsrc can be larger than basic->bdst. + */ +static int au_cpup_single(struct au_cp_generic *cpg, struct dentry *dst_parent) +{ + int err, rerr; + aufs_bindex_t old_ibtop; + unsigned char isdir, plink; + struct dentry *h_src, *h_dst, *h_parent; + struct inode *dst_inode, *h_dir, *inode, *delegated, *src_inode; + struct super_block *sb; + struct au_branch *br; + /* to reuduce stack size */ + struct { + struct au_dtime dt; + struct path h_path; + struct au_cpup_reg_attr h_src_attr; + } *a; + + err = -ENOMEM; + a = kmalloc(sizeof(*a), GFP_NOFS); + if (unlikely(!a)) + goto out; + a->h_src_attr.valid = 0; + + sb = cpg->dentry->d_sb; + br = au_sbr(sb, cpg->bdst); + a->h_path.mnt = au_br_mnt(br); + h_dst = au_h_dptr(cpg->dentry, cpg->bdst); + h_parent = h_dst->d_parent; /* dir inode is locked */ + h_dir = d_inode(h_parent); + IMustLock(h_dir); + + h_src = au_h_dptr(cpg->dentry, cpg->bsrc); + inode = d_inode(cpg->dentry); + + if (!dst_parent) + dst_parent = dget_parent(cpg->dentry); + else + dget(dst_parent); + + plink = !!au_opt_test(au_mntflags(sb), PLINK); + dst_inode = au_h_iptr(inode, cpg->bdst); + if (dst_inode) { + if (unlikely(!plink)) { + err = -EIO; + AuIOErr("hi%lu(i%lu) exists on b%d " + "but plink is disabled\n", + dst_inode->i_ino, inode->i_ino, cpg->bdst); + goto out_parent; + } + + if (dst_inode->i_nlink) { + const int do_dt = au_ftest_cpup(cpg->flags, DTIME); + + h_src = au_plink_lkup(inode, cpg->bdst); + err = PTR_ERR(h_src); + if (IS_ERR(h_src)) + goto out_parent; + if (unlikely(d_is_negative(h_src))) { + err = -EIO; + AuIOErr("i%lu exists on b%d " + "but not pseudo-linked\n", + inode->i_ino, cpg->bdst); + dput(h_src); + goto out_parent; + } + + if (do_dt) { + a->h_path.dentry = h_parent; + au_dtime_store(&a->dt, dst_parent, &a->h_path); + } + + a->h_path.dentry = h_dst; + delegated = NULL; + err = vfsub_link(h_src, h_dir, &a->h_path, &delegated); + if (!err && au_ftest_cpup(cpg->flags, RENAME)) + err = au_do_ren_after_cpup(cpg, &a->h_path); + if (do_dt) + au_dtime_revert(&a->dt); + if (unlikely(err == -EWOULDBLOCK)) { + pr_warn("cannot retry for NFSv4 delegation" + " for an internal link\n"); + iput(delegated); + } + dput(h_src); + goto out_parent; + } else + /* todo: cpup_wh_file? */ + /* udba work */ + au_update_ibrange(inode, /*do_put_zero*/1); + } + + isdir = S_ISDIR(inode->i_mode); + old_ibtop = au_ibtop(inode); + err = cpup_entry(cpg, dst_parent, &a->h_src_attr); + if (unlikely(err)) + goto out_rev; + dst_inode = d_inode(h_dst); + inode_lock_nested(dst_inode, AuLsc_I_CHILD2); + /* todo: necessary? */ + /* au_pin_hdir_unlock(cpg->pin); */ + + err = cpup_iattr(cpg->dentry, cpg->bdst, h_src, &a->h_src_attr); + if (unlikely(err)) { + /* todo: necessary? */ + /* au_pin_hdir_relock(cpg->pin); */ /* ignore an error */ + inode_unlock(dst_inode); + goto out_rev; + } + + if (cpg->bdst < old_ibtop) { + if (S_ISREG(inode->i_mode)) { + err = au_dy_iaop(inode, cpg->bdst, dst_inode); + if (unlikely(err)) { + /* ignore an error */ + /* au_pin_hdir_relock(cpg->pin); */ + inode_unlock(dst_inode); + goto out_rev; + } + } + au_set_ibtop(inode, cpg->bdst); + } else + au_set_ibbot(inode, cpg->bdst); + au_set_h_iptr(inode, cpg->bdst, au_igrab(dst_inode), + au_hi_flags(inode, isdir)); + + /* todo: necessary? */ + /* err = au_pin_hdir_relock(cpg->pin); */ + inode_unlock(dst_inode); + if (unlikely(err)) + goto out_rev; + + src_inode = d_inode(h_src); + if (!isdir + && (src_inode->i_nlink > 1 + || src_inode->i_state & I_LINKABLE) + && plink) + au_plink_append(inode, cpg->bdst, h_dst); + + if (au_ftest_cpup(cpg->flags, RENAME)) { + a->h_path.dentry = h_dst; + err = au_do_ren_after_cpup(cpg, &a->h_path); + } + if (!err) + goto out_parent; /* success */ + + /* revert */ +out_rev: + a->h_path.dentry = h_parent; + au_dtime_store(&a->dt, dst_parent, &a->h_path); + a->h_path.dentry = h_dst; + rerr = 0; + if (d_is_positive(h_dst)) { + if (!isdir) { + /* no delegation since it is just created */ + rerr = vfsub_unlink(h_dir, &a->h_path, + /*delegated*/NULL, /*force*/0); + } else + rerr = vfsub_rmdir(h_dir, &a->h_path); + } + au_dtime_revert(&a->dt); + if (rerr) { + AuIOErr("failed removing broken entry(%d, %d)\n", err, rerr); + err = -EIO; + } +out_parent: + dput(dst_parent); + au_delayed_kfree(a); +out: + return err; +} + +#if 0 /* reserved */ +struct au_cpup_single_args { + int *errp; + struct au_cp_generic *cpg; + struct dentry *dst_parent; +}; + +static void au_call_cpup_single(void *args) +{ + struct au_cpup_single_args *a = args; + + au_pin_hdir_acquire_nest(a->cpg->pin); + *a->errp = au_cpup_single(a->cpg, a->dst_parent); + au_pin_hdir_release(a->cpg->pin); +} +#endif + +/* + * prevent SIGXFSZ in copy-up. + * testing CAP_MKNOD is for generic fs, + * but CAP_FSETID is for xfs only, currently. + */ +static int au_cpup_sio_test(struct au_pin *pin, umode_t mode) +{ + int do_sio; + struct super_block *sb; + struct inode *h_dir; + + do_sio = 0; + sb = au_pinned_parent(pin)->d_sb; + if (!au_wkq_test() + && (!au_sbi(sb)->si_plink_maint_pid + || au_plink_maint(sb, AuLock_NOPLM))) { + switch (mode & S_IFMT) { + case S_IFREG: + /* no condition about RLIMIT_FSIZE and the file size */ + do_sio = 1; + break; + case S_IFCHR: + case S_IFBLK: + do_sio = !capable(CAP_MKNOD); + break; + } + if (!do_sio) + do_sio = ((mode & (S_ISUID | S_ISGID)) + && !capable(CAP_FSETID)); + /* this workaround may be removed in the future */ + if (!do_sio) { + h_dir = au_pinned_h_dir(pin); + do_sio = h_dir->i_mode & S_ISVTX; + } + } + + return do_sio; +} + +#if 0 /* reserved */ +int au_sio_cpup_single(struct au_cp_generic *cpg, struct dentry *dst_parent) +{ + int err, wkq_err; + struct dentry *h_dentry; + + h_dentry = au_h_dptr(cpg->dentry, cpg->bsrc); + if (!au_cpup_sio_test(pin, d_inode(h_dentry)->i_mode)) + err = au_cpup_single(cpg, dst_parent); + else { + struct au_cpup_single_args args = { + .errp = &err, + .cpg = cpg, + .dst_parent = dst_parent + }; + wkq_err = au_wkq_wait(au_call_cpup_single, &args); + if (unlikely(wkq_err)) + err = wkq_err; + } + + return err; +} +#endif + +/* + * copyup the @dentry from the first active lower branch to @bdst, + * using au_cpup_single(). + */ +static int au_cpup_simple(struct au_cp_generic *cpg) +{ + int err; + unsigned int flags_orig; + struct dentry *dentry; + + AuDebugOn(cpg->bsrc < 0); + + dentry = cpg->dentry; + DiMustWriteLock(dentry); + + err = au_lkup_neg(dentry, cpg->bdst, /*wh*/1); + if (!err) { + flags_orig = cpg->flags; + au_fset_cpup(cpg->flags, RENAME); + err = au_cpup_single(cpg, NULL); + cpg->flags = flags_orig; + if (!err) + return 0; /* success */ + + /* revert */ + au_set_h_dptr(dentry, cpg->bdst, NULL); + au_set_dbtop(dentry, cpg->bsrc); + } + + return err; +} + +struct au_cpup_simple_args { + int *errp; + struct au_cp_generic *cpg; +}; + +static void au_call_cpup_simple(void *args) +{ + struct au_cpup_simple_args *a = args; + + au_pin_hdir_acquire_nest(a->cpg->pin); + *a->errp = au_cpup_simple(a->cpg); + au_pin_hdir_release(a->cpg->pin); +} + +static int au_do_sio_cpup_simple(struct au_cp_generic *cpg) +{ + int err, wkq_err; + struct dentry *dentry, *parent; + struct file *h_file; + struct inode *h_dir; + + dentry = cpg->dentry; + h_file = NULL; + if (au_ftest_cpup(cpg->flags, HOPEN)) { + AuDebugOn(cpg->bsrc < 0); + h_file = au_h_open_pre(dentry, cpg->bsrc, /*force_wr*/0); + err = PTR_ERR(h_file); + if (IS_ERR(h_file)) + goto out; + } + + parent = dget_parent(dentry); + h_dir = au_h_iptr(d_inode(parent), cpg->bdst); + if (!au_test_h_perm_sio(h_dir, MAY_EXEC | MAY_WRITE) + && !au_cpup_sio_test(cpg->pin, d_inode(dentry)->i_mode)) + err = au_cpup_simple(cpg); + else { + struct au_cpup_simple_args args = { + .errp = &err, + .cpg = cpg + }; + wkq_err = au_wkq_wait(au_call_cpup_simple, &args); + if (unlikely(wkq_err)) + err = wkq_err; + } + + dput(parent); + if (h_file) + au_h_open_post(dentry, cpg->bsrc, h_file); + +out: + return err; +} + +int au_sio_cpup_simple(struct au_cp_generic *cpg) +{ + aufs_bindex_t bsrc, bbot; + struct dentry *dentry, *h_dentry; + + if (cpg->bsrc < 0) { + dentry = cpg->dentry; + bbot = au_dbbot(dentry); + for (bsrc = cpg->bdst + 1; bsrc <= bbot; bsrc++) { + h_dentry = au_h_dptr(dentry, bsrc); + if (h_dentry) { + AuDebugOn(d_is_negative(h_dentry)); + break; + } + } + AuDebugOn(bsrc > bbot); + cpg->bsrc = bsrc; + } + AuDebugOn(cpg->bsrc <= cpg->bdst); + return au_do_sio_cpup_simple(cpg); +} + +int au_sio_cpdown_simple(struct au_cp_generic *cpg) +{ + AuDebugOn(cpg->bdst <= cpg->bsrc); + return au_do_sio_cpup_simple(cpg); +} + +/* ---------------------------------------------------------------------- */ + +/* + * copyup the deleted file for writing. + */ +static int au_do_cpup_wh(struct au_cp_generic *cpg, struct dentry *wh_dentry, + struct file *file) +{ + int err; + unsigned int flags_orig; + aufs_bindex_t bsrc_orig; + struct au_dinfo *dinfo; + struct { + struct au_hdentry *hd; + struct dentry *h_dentry; + } hdst, hsrc; + + dinfo = au_di(cpg->dentry); + AuRwMustWriteLock(&dinfo->di_rwsem); + + bsrc_orig = cpg->bsrc; + cpg->bsrc = dinfo->di_btop; + hdst.hd = au_hdentry(dinfo, cpg->bdst); + hdst.h_dentry = hdst.hd->hd_dentry; + hdst.hd->hd_dentry = wh_dentry; + dinfo->di_btop = cpg->bdst; + + hsrc.h_dentry = NULL; + if (file) { + hsrc.hd = au_hdentry(dinfo, cpg->bsrc); + hsrc.h_dentry = hsrc.hd->hd_dentry; + hsrc.hd->hd_dentry = au_hf_top(file)->f_path.dentry; + } + flags_orig = cpg->flags; + cpg->flags = !AuCpup_DTIME; + err = au_cpup_single(cpg, /*h_parent*/NULL); + cpg->flags = flags_orig; + if (file) { + if (!err) + err = au_reopen_nondir(file); + hsrc.hd->hd_dentry = hsrc.h_dentry; + } + hdst.hd->hd_dentry = hdst.h_dentry; + dinfo->di_btop = cpg->bsrc; + cpg->bsrc = bsrc_orig; + + return err; +} + +static int au_cpup_wh(struct au_cp_generic *cpg, struct file *file) +{ + int err; + aufs_bindex_t bdst; + struct au_dtime dt; + struct dentry *dentry, *parent, *h_parent, *wh_dentry; + struct au_branch *br; + struct path h_path; + + dentry = cpg->dentry; + bdst = cpg->bdst; + br = au_sbr(dentry->d_sb, bdst); + parent = dget_parent(dentry); + h_parent = au_h_dptr(parent, bdst); + wh_dentry = au_whtmp_lkup(h_parent, br, &dentry->d_name); + err = PTR_ERR(wh_dentry); + if (IS_ERR(wh_dentry)) + goto out; + + h_path.dentry = h_parent; + h_path.mnt = au_br_mnt(br); + au_dtime_store(&dt, parent, &h_path); + err = au_do_cpup_wh(cpg, wh_dentry, file); + if (unlikely(err)) + goto out_wh; + + dget(wh_dentry); + h_path.dentry = wh_dentry; + if (!d_is_dir(wh_dentry)) { + /* no delegation since it is just created */ + err = vfsub_unlink(d_inode(h_parent), &h_path, + /*delegated*/NULL, /*force*/0); + } else + err = vfsub_rmdir(d_inode(h_parent), &h_path); + if (unlikely(err)) { + AuIOErr("failed remove copied-up tmp file %pd(%d)\n", + wh_dentry, err); + err = -EIO; + } + au_dtime_revert(&dt); + au_set_hi_wh(d_inode(dentry), bdst, wh_dentry); + +out_wh: + dput(wh_dentry); +out: + dput(parent); + return err; +} + +struct au_cpup_wh_args { + int *errp; + struct au_cp_generic *cpg; + struct file *file; +}; + +static void au_call_cpup_wh(void *args) +{ + struct au_cpup_wh_args *a = args; + + au_pin_hdir_acquire_nest(a->cpg->pin); + *a->errp = au_cpup_wh(a->cpg, a->file); + au_pin_hdir_release(a->cpg->pin); +} + +int au_sio_cpup_wh(struct au_cp_generic *cpg, struct file *file) +{ + int err, wkq_err; + aufs_bindex_t bdst; + struct dentry *dentry, *parent, *h_orph, *h_parent; + struct inode *dir, *h_dir, *h_tmpdir; + struct au_wbr *wbr; + struct au_pin wh_pin, *pin_orig; + + dentry = cpg->dentry; + bdst = cpg->bdst; + parent = dget_parent(dentry); + dir = d_inode(parent); + h_orph = NULL; + h_parent = NULL; + h_dir = au_igrab(au_h_iptr(dir, bdst)); + h_tmpdir = h_dir; + pin_orig = NULL; + if (!h_dir->i_nlink) { + wbr = au_sbr(dentry->d_sb, bdst)->br_wbr; + h_orph = wbr->wbr_orph; + + h_parent = dget(au_h_dptr(parent, bdst)); + au_set_h_dptr(parent, bdst, dget(h_orph)); + h_tmpdir = d_inode(h_orph); + au_set_h_iptr(dir, bdst, au_igrab(h_tmpdir), /*flags*/0); + + inode_lock_nested(h_tmpdir, AuLsc_I_PARENT3); + /* todo: au_h_open_pre()? */ + + pin_orig = cpg->pin; + au_pin_init(&wh_pin, dentry, bdst, AuLsc_DI_PARENT, + AuLsc_I_PARENT3, cpg->pin->udba, AuPin_DI_LOCKED); + cpg->pin = &wh_pin; + } + + if (!au_test_h_perm_sio(h_tmpdir, MAY_EXEC | MAY_WRITE) + && !au_cpup_sio_test(cpg->pin, d_inode(dentry)->i_mode)) + err = au_cpup_wh(cpg, file); + else { + struct au_cpup_wh_args args = { + .errp = &err, + .cpg = cpg, + .file = file + }; + wkq_err = au_wkq_wait(au_call_cpup_wh, &args); + if (unlikely(wkq_err)) + err = wkq_err; + } + + if (h_orph) { + inode_unlock(h_tmpdir); + /* todo: au_h_open_post()? */ + au_set_h_iptr(dir, bdst, au_igrab(h_dir), /*flags*/0); + au_set_h_dptr(parent, bdst, h_parent); + AuDebugOn(!pin_orig); + cpg->pin = pin_orig; + } + iput(h_dir); + dput(parent); + + return err; +} + +/* ---------------------------------------------------------------------- */ + +/* + * generic routine for both of copy-up and copy-down. + */ +/* cf. revalidate function in file.c */ +int au_cp_dirs(struct dentry *dentry, aufs_bindex_t bdst, + int (*cp)(struct dentry *dentry, aufs_bindex_t bdst, + struct au_pin *pin, + struct dentry *h_parent, void *arg), + void *arg) +{ + int err; + struct au_pin pin; + struct dentry *d, *parent, *h_parent, *real_parent, *h_dentry; + + err = 0; + parent = dget_parent(dentry); + if (IS_ROOT(parent)) + goto out; + + au_pin_init(&pin, dentry, bdst, AuLsc_DI_PARENT2, AuLsc_I_PARENT2, + au_opt_udba(dentry->d_sb), AuPin_MNT_WRITE); + + /* do not use au_dpage */ + real_parent = parent; + while (1) { + dput(parent); + parent = dget_parent(dentry); + h_parent = au_h_dptr(parent, bdst); + if (h_parent) + goto out; /* success */ + + /* find top dir which is necessary to cpup */ + do { + d = parent; + dput(parent); + parent = dget_parent(d); + di_read_lock_parent3(parent, !AuLock_IR); + h_parent = au_h_dptr(parent, bdst); + di_read_unlock(parent, !AuLock_IR); + } while (!h_parent); + + if (d != real_parent) + di_write_lock_child3(d); + + /* somebody else might create while we were sleeping */ + h_dentry = au_h_dptr(d, bdst); + if (!h_dentry || d_is_negative(h_dentry)) { + if (h_dentry) + au_update_dbtop(d); + + au_pin_set_dentry(&pin, d); + err = au_do_pin(&pin); + if (!err) { + err = cp(d, bdst, &pin, h_parent, arg); + au_unpin(&pin); + } + } + + if (d != real_parent) + di_write_unlock(d); + if (unlikely(err)) + break; + } + +out: + dput(parent); + return err; +} + +static int au_cpup_dir(struct dentry *dentry, aufs_bindex_t bdst, + struct au_pin *pin, + struct dentry *h_parent __maybe_unused, + void *arg __maybe_unused) +{ + struct au_cp_generic cpg = { + .dentry = dentry, + .bdst = bdst, + .bsrc = -1, + .len = 0, + .pin = pin, + .flags = AuCpup_DTIME + }; + return au_sio_cpup_simple(&cpg); +} + +int au_cpup_dirs(struct dentry *dentry, aufs_bindex_t bdst) +{ + return au_cp_dirs(dentry, bdst, au_cpup_dir, NULL); +} + +int au_test_and_cpup_dirs(struct dentry *dentry, aufs_bindex_t bdst) +{ + int err; + struct dentry *parent; + struct inode *dir; + + parent = dget_parent(dentry); + dir = d_inode(parent); + err = 0; + if (au_h_iptr(dir, bdst)) + goto out; + + di_read_unlock(parent, AuLock_IR); + di_write_lock_parent(parent); + /* someone else might change our inode while we were sleeping */ + if (!au_h_iptr(dir, bdst)) + err = au_cpup_dirs(dentry, bdst); + di_downgrade_lock(parent, AuLock_IR); + +out: + dput(parent); + return err; +} --- linux-4.8.0.orig/fs/aufs/cpup.h +++ linux-4.8.0/fs/aufs/cpup.h @@ -0,0 +1,94 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * copy-up/down functions + */ + +#ifndef __AUFS_CPUP_H__ +#define __AUFS_CPUP_H__ + +#ifdef __KERNEL__ + +#include + +struct inode; +struct file; +struct au_pin; + +void au_cpup_attr_flags(struct inode *dst, unsigned int iflags); +void au_cpup_attr_timesizes(struct inode *inode); +void au_cpup_attr_nlink(struct inode *inode, int force); +void au_cpup_attr_changeable(struct inode *inode); +void au_cpup_igen(struct inode *inode, struct inode *h_inode); +void au_cpup_attr_all(struct inode *inode, int force); + +/* ---------------------------------------------------------------------- */ + +struct au_cp_generic { + struct dentry *dentry; + aufs_bindex_t bdst, bsrc; + loff_t len; + struct au_pin *pin; + unsigned int flags; +}; + +/* cpup flags */ +#define AuCpup_DTIME 1 /* do dtime_store/revert */ +#define AuCpup_KEEPLINO (1 << 1) /* do not clear the lower xino, + for link(2) */ +#define AuCpup_RENAME (1 << 2) /* rename after cpup */ +#define AuCpup_HOPEN (1 << 3) /* call h_open_pre/post() in + cpup */ +#define AuCpup_OVERWRITE (1 << 4) /* allow overwriting the + existing entry */ +#define AuCpup_RWDST (1 << 5) /* force write target even if + the branch is marked as RO */ + +#define au_ftest_cpup(flags, name) ((flags) & AuCpup_##name) +#define au_fset_cpup(flags, name) \ + do { (flags) |= AuCpup_##name; } while (0) +#define au_fclr_cpup(flags, name) \ + do { (flags) &= ~AuCpup_##name; } while (0) + +int au_copy_file(struct file *dst, struct file *src, loff_t len); +int au_sio_cpup_simple(struct au_cp_generic *cpg); +int au_sio_cpdown_simple(struct au_cp_generic *cpg); +int au_sio_cpup_wh(struct au_cp_generic *cpg, struct file *file); + +int au_cp_dirs(struct dentry *dentry, aufs_bindex_t bdst, + int (*cp)(struct dentry *dentry, aufs_bindex_t bdst, + struct au_pin *pin, + struct dentry *h_parent, void *arg), + void *arg); +int au_cpup_dirs(struct dentry *dentry, aufs_bindex_t bdst); +int au_test_and_cpup_dirs(struct dentry *dentry, aufs_bindex_t bdst); + +/* ---------------------------------------------------------------------- */ + +/* keep timestamps when copyup */ +struct au_dtime { + struct dentry *dt_dentry; + struct path dt_h_path; + struct timespec dt_atime, dt_mtime; +}; +void au_dtime_store(struct au_dtime *dt, struct dentry *dentry, + struct path *h_path); +void au_dtime_revert(struct au_dtime *dt); + +#endif /* __KERNEL__ */ +#endif /* __AUFS_CPUP_H__ */ --- linux-4.8.0.orig/fs/aufs/dbgaufs.c +++ linux-4.8.0/fs/aufs/dbgaufs.c @@ -0,0 +1,438 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * debugfs interface + */ + +#include +#include "aufs.h" + +#ifndef CONFIG_SYSFS +#error DEBUG_FS depends upon SYSFS +#endif + +static struct dentry *dbgaufs; +static const mode_t dbgaufs_mode = S_IRUSR | S_IRGRP | S_IROTH; + +/* 20 is max digits length of ulong 64 */ +struct dbgaufs_arg { + int n; + char a[20 * 4]; +}; + +/* + * common function for all XINO files + */ +static int dbgaufs_xi_release(struct inode *inode __maybe_unused, + struct file *file) +{ + au_delayed_kfree(file->private_data); + return 0; +} + +static int dbgaufs_xi_open(struct file *xf, struct file *file, int do_fcnt) +{ + int err; + struct kstat st; + struct dbgaufs_arg *p; + + err = -ENOMEM; + p = kmalloc(sizeof(*p), GFP_NOFS); + if (unlikely(!p)) + goto out; + + err = 0; + p->n = 0; + file->private_data = p; + if (!xf) + goto out; + + err = vfs_getattr(&xf->f_path, &st); + if (!err) { + if (do_fcnt) + p->n = snprintf + (p->a, sizeof(p->a), "%ld, %llux%lu %lld\n", + (long)file_count(xf), st.blocks, st.blksize, + (long long)st.size); + else + p->n = snprintf(p->a, sizeof(p->a), "%llux%lu %lld\n", + st.blocks, st.blksize, + (long long)st.size); + AuDebugOn(p->n >= sizeof(p->a)); + } else { + p->n = snprintf(p->a, sizeof(p->a), "err %d\n", err); + err = 0; + } + +out: + return err; + +} + +static ssize_t dbgaufs_xi_read(struct file *file, char __user *buf, + size_t count, loff_t *ppos) +{ + struct dbgaufs_arg *p; + + p = file->private_data; + return simple_read_from_buffer(buf, count, ppos, p->a, p->n); +} + +/* ---------------------------------------------------------------------- */ + +struct dbgaufs_plink_arg { + int n; + char a[]; +}; + +static int dbgaufs_plink_release(struct inode *inode __maybe_unused, + struct file *file) +{ + au_delayed_free_page((unsigned long)file->private_data); + return 0; +} + +static int dbgaufs_plink_open(struct inode *inode, struct file *file) +{ + int err, i, limit; + unsigned long n, sum; + struct dbgaufs_plink_arg *p; + struct au_sbinfo *sbinfo; + struct super_block *sb; + struct au_sphlhead *sphl; + + err = -ENOMEM; + p = (void *)get_zeroed_page(GFP_NOFS); + if (unlikely(!p)) + goto out; + + err = -EFBIG; + sbinfo = inode->i_private; + sb = sbinfo->si_sb; + si_noflush_read_lock(sb); + if (au_opt_test(au_mntflags(sb), PLINK)) { + limit = PAGE_SIZE - sizeof(p->n); + + /* the number of buckets */ + n = snprintf(p->a + p->n, limit, "%d\n", AuPlink_NHASH); + p->n += n; + limit -= n; + + sum = 0; + for (i = 0, sphl = sbinfo->si_plink; + i < AuPlink_NHASH; + i++, sphl++) { + n = au_sphl_count(sphl); + sum += n; + + n = snprintf(p->a + p->n, limit, "%lu ", n); + p->n += n; + limit -= n; + if (unlikely(limit <= 0)) + goto out_free; + } + p->a[p->n - 1] = '\n'; + + /* the sum of plinks */ + n = snprintf(p->a + p->n, limit, "%lu\n", sum); + p->n += n; + limit -= n; + if (unlikely(limit <= 0)) + goto out_free; + } else { +#define str "1\n0\n0\n" + p->n = sizeof(str) - 1; + strcpy(p->a, str); +#undef str + } + si_read_unlock(sb); + + err = 0; + file->private_data = p; + goto out; /* success */ + +out_free: + au_delayed_free_page((unsigned long)p); +out: + return err; +} + +static ssize_t dbgaufs_plink_read(struct file *file, char __user *buf, + size_t count, loff_t *ppos) +{ + struct dbgaufs_plink_arg *p; + + p = file->private_data; + return simple_read_from_buffer(buf, count, ppos, p->a, p->n); +} + +static const struct file_operations dbgaufs_plink_fop = { + .owner = THIS_MODULE, + .open = dbgaufs_plink_open, + .release = dbgaufs_plink_release, + .read = dbgaufs_plink_read +}; + +/* ---------------------------------------------------------------------- */ + +static int dbgaufs_xib_open(struct inode *inode, struct file *file) +{ + int err; + struct au_sbinfo *sbinfo; + struct super_block *sb; + + sbinfo = inode->i_private; + sb = sbinfo->si_sb; + si_noflush_read_lock(sb); + err = dbgaufs_xi_open(sbinfo->si_xib, file, /*do_fcnt*/0); + si_read_unlock(sb); + return err; +} + +static const struct file_operations dbgaufs_xib_fop = { + .owner = THIS_MODULE, + .open = dbgaufs_xib_open, + .release = dbgaufs_xi_release, + .read = dbgaufs_xi_read +}; + +/* ---------------------------------------------------------------------- */ + +#define DbgaufsXi_PREFIX "xi" + +static int dbgaufs_xino_open(struct inode *inode, struct file *file) +{ + int err; + long l; + struct au_sbinfo *sbinfo; + struct super_block *sb; + struct file *xf; + struct qstr *name; + + err = -ENOENT; + xf = NULL; + name = &file->f_path.dentry->d_name; + if (unlikely(name->len < sizeof(DbgaufsXi_PREFIX) + || memcmp(name->name, DbgaufsXi_PREFIX, + sizeof(DbgaufsXi_PREFIX) - 1))) + goto out; + err = kstrtol(name->name + sizeof(DbgaufsXi_PREFIX) - 1, 10, &l); + if (unlikely(err)) + goto out; + + sbinfo = inode->i_private; + sb = sbinfo->si_sb; + si_noflush_read_lock(sb); + if (l <= au_sbbot(sb)) { + xf = au_sbr(sb, (aufs_bindex_t)l)->br_xino.xi_file; + err = dbgaufs_xi_open(xf, file, /*do_fcnt*/1); + } else + err = -ENOENT; + si_read_unlock(sb); + +out: + return err; +} + +static const struct file_operations dbgaufs_xino_fop = { + .owner = THIS_MODULE, + .open = dbgaufs_xino_open, + .release = dbgaufs_xi_release, + .read = dbgaufs_xi_read +}; + +void dbgaufs_brs_del(struct super_block *sb, aufs_bindex_t bindex) +{ + aufs_bindex_t bbot; + struct au_branch *br; + struct au_xino_file *xi; + + if (!au_sbi(sb)->si_dbgaufs) + return; + + bbot = au_sbbot(sb); + for (; bindex <= bbot; bindex++) { + br = au_sbr(sb, bindex); + xi = &br->br_xino; + /* debugfs acquires the parent i_mutex */ + lockdep_off(); + debugfs_remove(xi->xi_dbgaufs); + lockdep_on(); + xi->xi_dbgaufs = NULL; + } +} + +void dbgaufs_brs_add(struct super_block *sb, aufs_bindex_t bindex) +{ + struct au_sbinfo *sbinfo; + struct dentry *parent; + struct au_branch *br; + struct au_xino_file *xi; + aufs_bindex_t bbot; + char name[sizeof(DbgaufsXi_PREFIX) + 5]; /* "xi" bindex NULL */ + + sbinfo = au_sbi(sb); + parent = sbinfo->si_dbgaufs; + if (!parent) + return; + + bbot = au_sbbot(sb); + for (; bindex <= bbot; bindex++) { + snprintf(name, sizeof(name), DbgaufsXi_PREFIX "%d", bindex); + br = au_sbr(sb, bindex); + xi = &br->br_xino; + AuDebugOn(xi->xi_dbgaufs); + /* debugfs acquires the parent i_mutex */ + lockdep_off(); + xi->xi_dbgaufs = debugfs_create_file(name, dbgaufs_mode, parent, + sbinfo, &dbgaufs_xino_fop); + lockdep_on(); + /* ignore an error */ + if (unlikely(!xi->xi_dbgaufs)) + AuWarn1("failed %s under debugfs\n", name); + } +} + +/* ---------------------------------------------------------------------- */ + +#ifdef CONFIG_AUFS_EXPORT +static int dbgaufs_xigen_open(struct inode *inode, struct file *file) +{ + int err; + struct au_sbinfo *sbinfo; + struct super_block *sb; + + sbinfo = inode->i_private; + sb = sbinfo->si_sb; + si_noflush_read_lock(sb); + err = dbgaufs_xi_open(sbinfo->si_xigen, file, /*do_fcnt*/0); + si_read_unlock(sb); + return err; +} + +static const struct file_operations dbgaufs_xigen_fop = { + .owner = THIS_MODULE, + .open = dbgaufs_xigen_open, + .release = dbgaufs_xi_release, + .read = dbgaufs_xi_read +}; + +static int dbgaufs_xigen_init(struct au_sbinfo *sbinfo) +{ + int err; + + /* + * This function is a dynamic '__init' function actually, + * so the tiny check for si_rwsem is unnecessary. + */ + /* AuRwMustWriteLock(&sbinfo->si_rwsem); */ + + err = -EIO; + sbinfo->si_dbgaufs_xigen = debugfs_create_file + ("xigen", dbgaufs_mode, sbinfo->si_dbgaufs, sbinfo, + &dbgaufs_xigen_fop); + if (sbinfo->si_dbgaufs_xigen) + err = 0; + + return err; +} +#else +static int dbgaufs_xigen_init(struct au_sbinfo *sbinfo) +{ + return 0; +} +#endif /* CONFIG_AUFS_EXPORT */ + +/* ---------------------------------------------------------------------- */ + +void dbgaufs_si_fin(struct au_sbinfo *sbinfo) +{ + /* + * This function is a dynamic '__fin' function actually, + * so the tiny check for si_rwsem is unnecessary. + */ + /* AuRwMustWriteLock(&sbinfo->si_rwsem); */ + + debugfs_remove_recursive(sbinfo->si_dbgaufs); + sbinfo->si_dbgaufs = NULL; + kobject_put(&sbinfo->si_kobj); +} + +int dbgaufs_si_init(struct au_sbinfo *sbinfo) +{ + int err; + char name[SysaufsSiNameLen]; + + /* + * This function is a dynamic '__init' function actually, + * so the tiny check for si_rwsem is unnecessary. + */ + /* AuRwMustWriteLock(&sbinfo->si_rwsem); */ + + err = -ENOENT; + if (!dbgaufs) { + AuErr1("/debug/aufs is uninitialized\n"); + goto out; + } + + err = -EIO; + sysaufs_name(sbinfo, name); + sbinfo->si_dbgaufs = debugfs_create_dir(name, dbgaufs); + if (unlikely(!sbinfo->si_dbgaufs)) + goto out; + kobject_get(&sbinfo->si_kobj); + + sbinfo->si_dbgaufs_xib = debugfs_create_file + ("xib", dbgaufs_mode, sbinfo->si_dbgaufs, sbinfo, + &dbgaufs_xib_fop); + if (unlikely(!sbinfo->si_dbgaufs_xib)) + goto out_dir; + + sbinfo->si_dbgaufs_plink = debugfs_create_file + ("plink", dbgaufs_mode, sbinfo->si_dbgaufs, sbinfo, + &dbgaufs_plink_fop); + if (unlikely(!sbinfo->si_dbgaufs_plink)) + goto out_dir; + + err = dbgaufs_xigen_init(sbinfo); + if (!err) + goto out; /* success */ + +out_dir: + dbgaufs_si_fin(sbinfo); +out: + return err; +} + +/* ---------------------------------------------------------------------- */ + +void dbgaufs_fin(void) +{ + debugfs_remove(dbgaufs); +} + +int __init dbgaufs_init(void) +{ + int err; + + err = -EIO; + dbgaufs = debugfs_create_dir(AUFS_NAME, NULL); + if (dbgaufs) + err = 0; + return err; +} --- linux-4.8.0.orig/fs/aufs/dbgaufs.h +++ linux-4.8.0/fs/aufs/dbgaufs.h @@ -0,0 +1,48 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * debugfs interface + */ + +#ifndef __DBGAUFS_H__ +#define __DBGAUFS_H__ + +#ifdef __KERNEL__ + +struct super_block; +struct au_sbinfo; + +#ifdef CONFIG_DEBUG_FS +/* dbgaufs.c */ +void dbgaufs_brs_del(struct super_block *sb, aufs_bindex_t bindex); +void dbgaufs_brs_add(struct super_block *sb, aufs_bindex_t bindex); +void dbgaufs_si_fin(struct au_sbinfo *sbinfo); +int dbgaufs_si_init(struct au_sbinfo *sbinfo); +void dbgaufs_fin(void); +int __init dbgaufs_init(void); +#else +AuStubVoid(dbgaufs_brs_del, struct super_block *sb, aufs_bindex_t bindex) +AuStubVoid(dbgaufs_brs_add, struct super_block *sb, aufs_bindex_t bindex) +AuStubVoid(dbgaufs_si_fin, struct au_sbinfo *sbinfo) +AuStubInt0(dbgaufs_si_init, struct au_sbinfo *sbinfo) +AuStubVoid(dbgaufs_fin, void) +AuStubInt0(__init dbgaufs_init, void) +#endif /* CONFIG_DEBUG_FS */ + +#endif /* __KERNEL__ */ +#endif /* __DBGAUFS_H__ */ --- linux-4.8.0.orig/fs/aufs/dcsub.c +++ linux-4.8.0/fs/aufs/dcsub.c @@ -0,0 +1,225 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * sub-routines for dentry cache + */ + +#include "aufs.h" + +static void au_dpage_free(struct au_dpage *dpage) +{ + int i; + struct dentry **p; + + p = dpage->dentries; + for (i = 0; i < dpage->ndentry; i++) + dput(*p++); + au_delayed_free_page((unsigned long)dpage->dentries); +} + +int au_dpages_init(struct au_dcsub_pages *dpages, gfp_t gfp) +{ + int err; + void *p; + + err = -ENOMEM; + dpages->dpages = kmalloc(sizeof(*dpages->dpages), gfp); + if (unlikely(!dpages->dpages)) + goto out; + + p = (void *)__get_free_page(gfp); + if (unlikely(!p)) + goto out_dpages; + + dpages->dpages[0].ndentry = 0; + dpages->dpages[0].dentries = p; + dpages->ndpage = 1; + return 0; /* success */ + +out_dpages: + au_delayed_kfree(dpages->dpages); +out: + return err; +} + +void au_dpages_free(struct au_dcsub_pages *dpages) +{ + int i; + struct au_dpage *p; + + p = dpages->dpages; + for (i = 0; i < dpages->ndpage; i++) + au_dpage_free(p++); + au_delayed_kfree(dpages->dpages); +} + +static int au_dpages_append(struct au_dcsub_pages *dpages, + struct dentry *dentry, gfp_t gfp) +{ + int err, sz; + struct au_dpage *dpage; + void *p; + + dpage = dpages->dpages + dpages->ndpage - 1; + sz = PAGE_SIZE / sizeof(dentry); + if (unlikely(dpage->ndentry >= sz)) { + AuLabel(new dpage); + err = -ENOMEM; + sz = dpages->ndpage * sizeof(*dpages->dpages); + p = au_kzrealloc(dpages->dpages, sz, + sz + sizeof(*dpages->dpages), gfp, + /*may_shrink*/0); + if (unlikely(!p)) + goto out; + + dpages->dpages = p; + dpage = dpages->dpages + dpages->ndpage; + p = (void *)__get_free_page(gfp); + if (unlikely(!p)) + goto out; + + dpage->ndentry = 0; + dpage->dentries = p; + dpages->ndpage++; + } + + AuDebugOn(au_dcount(dentry) <= 0); + dpage->dentries[dpage->ndentry++] = dget_dlock(dentry); + return 0; /* success */ + +out: + return err; +} + +/* todo: BAD approach */ +/* copied from linux/fs/dcache.c */ +enum d_walk_ret { + D_WALK_CONTINUE, + D_WALK_QUIT, + D_WALK_NORETRY, + D_WALK_SKIP, +}; + +extern void d_walk(struct dentry *parent, void *data, + enum d_walk_ret (*enter)(void *, struct dentry *), + void (*finish)(void *)); + +struct ac_dpages_arg { + int err; + struct au_dcsub_pages *dpages; + struct super_block *sb; + au_dpages_test test; + void *arg; +}; + +static enum d_walk_ret au_call_dpages_append(void *_arg, struct dentry *dentry) +{ + enum d_walk_ret ret; + struct ac_dpages_arg *arg = _arg; + + ret = D_WALK_CONTINUE; + if (dentry->d_sb == arg->sb + && !IS_ROOT(dentry) + && au_dcount(dentry) > 0 + && au_di(dentry) + && (!arg->test || arg->test(dentry, arg->arg))) { + arg->err = au_dpages_append(arg->dpages, dentry, GFP_ATOMIC); + if (unlikely(arg->err)) + ret = D_WALK_QUIT; + } + + return ret; +} + +int au_dcsub_pages(struct au_dcsub_pages *dpages, struct dentry *root, + au_dpages_test test, void *arg) +{ + struct ac_dpages_arg args = { + .err = 0, + .dpages = dpages, + .sb = root->d_sb, + .test = test, + .arg = arg + }; + + d_walk(root, &args, au_call_dpages_append, NULL); + + return args.err; +} + +int au_dcsub_pages_rev(struct au_dcsub_pages *dpages, struct dentry *dentry, + int do_include, au_dpages_test test, void *arg) +{ + int err; + + err = 0; + write_seqlock(&rename_lock); + spin_lock(&dentry->d_lock); + if (do_include + && au_dcount(dentry) > 0 + && (!test || test(dentry, arg))) + err = au_dpages_append(dpages, dentry, GFP_ATOMIC); + spin_unlock(&dentry->d_lock); + if (unlikely(err)) + goto out; + + /* + * RCU for vfsmount is unnecessary since this is a traverse in a single + * mount + */ + while (!IS_ROOT(dentry)) { + dentry = dentry->d_parent; /* rename_lock is locked */ + spin_lock(&dentry->d_lock); + if (au_dcount(dentry) > 0 + && (!test || test(dentry, arg))) + err = au_dpages_append(dpages, dentry, GFP_ATOMIC); + spin_unlock(&dentry->d_lock); + if (unlikely(err)) + break; + } + +out: + write_sequnlock(&rename_lock); + return err; +} + +static inline int au_dcsub_dpages_aufs(struct dentry *dentry, void *arg) +{ + return au_di(dentry) && dentry->d_sb == arg; +} + +int au_dcsub_pages_rev_aufs(struct au_dcsub_pages *dpages, + struct dentry *dentry, int do_include) +{ + return au_dcsub_pages_rev(dpages, dentry, do_include, + au_dcsub_dpages_aufs, dentry->d_sb); +} + +int au_test_subdir(struct dentry *d1, struct dentry *d2) +{ + struct path path[2] = { + { + .dentry = d1 + }, + { + .dentry = d2 + } + }; + + return path_is_under(path + 0, path + 1); +} --- linux-4.8.0.orig/fs/aufs/dcsub.h +++ linux-4.8.0/fs/aufs/dcsub.h @@ -0,0 +1,136 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * sub-routines for dentry cache + */ + +#ifndef __AUFS_DCSUB_H__ +#define __AUFS_DCSUB_H__ + +#ifdef __KERNEL__ + +#include +#include + +struct au_dpage { + int ndentry; + struct dentry **dentries; +}; + +struct au_dcsub_pages { + int ndpage; + struct au_dpage *dpages; +}; + +/* ---------------------------------------------------------------------- */ + +/* dcsub.c */ +int au_dpages_init(struct au_dcsub_pages *dpages, gfp_t gfp); +void au_dpages_free(struct au_dcsub_pages *dpages); +typedef int (*au_dpages_test)(struct dentry *dentry, void *arg); +int au_dcsub_pages(struct au_dcsub_pages *dpages, struct dentry *root, + au_dpages_test test, void *arg); +int au_dcsub_pages_rev(struct au_dcsub_pages *dpages, struct dentry *dentry, + int do_include, au_dpages_test test, void *arg); +int au_dcsub_pages_rev_aufs(struct au_dcsub_pages *dpages, + struct dentry *dentry, int do_include); +int au_test_subdir(struct dentry *d1, struct dentry *d2); + +/* ---------------------------------------------------------------------- */ + +/* + * todo: in linux-3.13, several similar (but faster) helpers are added to + * include/linux/dcache.h. Try them (in the future). + */ + +static inline int au_d_hashed_positive(struct dentry *d) +{ + int err; + struct inode *inode = d_inode(d); + + err = 0; + if (unlikely(d_unhashed(d) + || d_is_negative(d) + || !inode->i_nlink)) + err = -ENOENT; + return err; +} + +static inline int au_d_linkable(struct dentry *d) +{ + int err; + struct inode *inode = d_inode(d); + + err = au_d_hashed_positive(d); + if (err + && d_is_positive(d) + && (inode->i_state & I_LINKABLE)) + err = 0; + return err; +} + +static inline int au_d_alive(struct dentry *d) +{ + int err; + struct inode *inode; + + err = 0; + if (!IS_ROOT(d)) + err = au_d_hashed_positive(d); + else { + inode = d_inode(d); + if (unlikely(d_unlinked(d) + || d_is_negative(d) + || !inode->i_nlink)) + err = -ENOENT; + } + return err; +} + +static inline int au_alive_dir(struct dentry *d) +{ + int err; + + err = au_d_alive(d); + if (unlikely(err || IS_DEADDIR(d_inode(d)))) + err = -ENOENT; + return err; +} + +static inline int au_qstreq(struct qstr *a, struct qstr *b) +{ + return a->len == b->len + && !memcmp(a->name, b->name, a->len); +} + +/* + * by the commit + * 360f547 2015-01-25 dcache: let the dentry count go down to zero without + * taking d_lock + * the type of d_lockref.count became int, but the inlined function d_count() + * still returns unsigned int. + * I don't know why. Maybe it is for every d_count() users? + * Anyway au_dcount() lives on. + */ +static inline int au_dcount(struct dentry *d) +{ + return (int)d_count(d); +} + +#endif /* __KERNEL__ */ +#endif /* __AUFS_DCSUB_H__ */ --- linux-4.8.0.orig/fs/aufs/debug.c +++ linux-4.8.0/fs/aufs/debug.c @@ -0,0 +1,440 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * debug print functions + */ + +#include "aufs.h" + +/* Returns 0, or -errno. arg is in kp->arg. */ +static int param_atomic_t_set(const char *val, const struct kernel_param *kp) +{ + int err, n; + + err = kstrtoint(val, 0, &n); + if (!err) { + if (n > 0) + au_debug_on(); + else + au_debug_off(); + } + return err; +} + +/* Returns length written or -errno. Buffer is 4k (ie. be short!) */ +static int param_atomic_t_get(char *buffer, const struct kernel_param *kp) +{ + atomic_t *a; + + a = kp->arg; + return sprintf(buffer, "%d", atomic_read(a)); +} + +static struct kernel_param_ops param_ops_atomic_t = { + .set = param_atomic_t_set, + .get = param_atomic_t_get + /* void (*free)(void *arg) */ +}; + +atomic_t aufs_debug = ATOMIC_INIT(0); +MODULE_PARM_DESC(debug, "debug print"); +module_param_named(debug, aufs_debug, atomic_t, S_IRUGO | S_IWUSR | S_IWGRP); + +DEFINE_MUTEX(au_dbg_mtx); /* just to serialize the dbg msgs */ +char *au_plevel = KERN_DEBUG; +#define dpri(fmt, ...) do { \ + if ((au_plevel \ + && strcmp(au_plevel, KERN_DEBUG)) \ + || au_debug_test()) \ + printk("%s" fmt, au_plevel, ##__VA_ARGS__); \ +} while (0) + +/* ---------------------------------------------------------------------- */ + +void au_dpri_whlist(struct au_nhash *whlist) +{ + unsigned long ul, n; + struct hlist_head *head; + struct au_vdir_wh *pos; + + n = whlist->nh_num; + head = whlist->nh_head; + for (ul = 0; ul < n; ul++) { + hlist_for_each_entry(pos, head, wh_hash) + dpri("b%d, %.*s, %d\n", + pos->wh_bindex, + pos->wh_str.len, pos->wh_str.name, + pos->wh_str.len); + head++; + } +} + +void au_dpri_vdir(struct au_vdir *vdir) +{ + unsigned long ul; + union au_vdir_deblk_p p; + unsigned char *o; + + if (!vdir || IS_ERR(vdir)) { + dpri("err %ld\n", PTR_ERR(vdir)); + return; + } + + dpri("deblk %u, nblk %lu, deblk %p, last{%lu, %p}, ver %lu\n", + vdir->vd_deblk_sz, vdir->vd_nblk, vdir->vd_deblk, + vdir->vd_last.ul, vdir->vd_last.p.deblk, vdir->vd_version); + for (ul = 0; ul < vdir->vd_nblk; ul++) { + p.deblk = vdir->vd_deblk[ul]; + o = p.deblk; + dpri("[%lu]: %p\n", ul, o); + } +} + +static int do_pri_inode(aufs_bindex_t bindex, struct inode *inode, int hn, + struct dentry *wh) +{ + char *n = NULL; + int l = 0; + + if (!inode || IS_ERR(inode)) { + dpri("i%d: err %ld\n", bindex, PTR_ERR(inode)); + return -1; + } + + /* the type of i_blocks depends upon CONFIG_LBDAF */ + BUILD_BUG_ON(sizeof(inode->i_blocks) != sizeof(unsigned long) + && sizeof(inode->i_blocks) != sizeof(u64)); + if (wh) { + n = (void *)wh->d_name.name; + l = wh->d_name.len; + } + + dpri("i%d: %p, i%lu, %s, cnt %d, nl %u, 0%o, sz %llu, blk %llu," + " hn %d, ct %lld, np %lu, st 0x%lx, f 0x%x, v %llu, g %x%s%.*s\n", + bindex, inode, + inode->i_ino, inode->i_sb ? au_sbtype(inode->i_sb) : "??", + atomic_read(&inode->i_count), inode->i_nlink, inode->i_mode, + i_size_read(inode), (unsigned long long)inode->i_blocks, + hn, (long long)timespec_to_ns(&inode->i_ctime) & 0x0ffff, + inode->i_mapping ? inode->i_mapping->nrpages : 0, + inode->i_state, inode->i_flags, inode->i_version, + inode->i_generation, + l ? ", wh " : "", l, n); + return 0; +} + +void au_dpri_inode(struct inode *inode) +{ + struct au_iinfo *iinfo; + struct au_hinode *hi; + aufs_bindex_t bindex; + int err, hn; + + err = do_pri_inode(-1, inode, -1, NULL); + if (err || !au_test_aufs(inode->i_sb) || au_is_bad_inode(inode)) + return; + + iinfo = au_ii(inode); + dpri("i-1: btop %d, bbot %d, gen %d\n", + iinfo->ii_btop, iinfo->ii_bbot, au_iigen(inode, NULL)); + if (iinfo->ii_btop < 0) + return; + hn = 0; + for (bindex = iinfo->ii_btop; bindex <= iinfo->ii_bbot; bindex++) { + hi = au_hinode(iinfo, bindex); + hn = !!au_hn(hi); + do_pri_inode(bindex, hi->hi_inode, hn, hi->hi_whdentry); + } +} + +void au_dpri_dalias(struct inode *inode) +{ + struct dentry *d; + + spin_lock(&inode->i_lock); + hlist_for_each_entry(d, &inode->i_dentry, d_u.d_alias) + au_dpri_dentry(d); + spin_unlock(&inode->i_lock); +} + +static int do_pri_dentry(aufs_bindex_t bindex, struct dentry *dentry) +{ + struct dentry *wh = NULL; + int hn; + struct inode *inode; + struct au_iinfo *iinfo; + struct au_hinode *hi; + + if (!dentry || IS_ERR(dentry)) { + dpri("d%d: err %ld\n", bindex, PTR_ERR(dentry)); + return -1; + } + /* do not call dget_parent() here */ + /* note: access d_xxx without d_lock */ + dpri("d%d: %p, %pd2?, %s, cnt %d, flags 0x%x, %shashed\n", + bindex, dentry, dentry, + dentry->d_sb ? au_sbtype(dentry->d_sb) : "??", + au_dcount(dentry), dentry->d_flags, + d_unhashed(dentry) ? "un" : ""); + hn = -1; + inode = NULL; + if (d_is_positive(dentry)) + inode = d_inode(dentry); + if (inode + && au_test_aufs(dentry->d_sb) + && bindex >= 0 + && !au_is_bad_inode(inode)) { + iinfo = au_ii(inode); + hi = au_hinode(iinfo, bindex); + hn = !!au_hn(hi); + wh = hi->hi_whdentry; + } + do_pri_inode(bindex, inode, hn, wh); + return 0; +} + +void au_dpri_dentry(struct dentry *dentry) +{ + struct au_dinfo *dinfo; + aufs_bindex_t bindex; + int err; + + err = do_pri_dentry(-1, dentry); + if (err || !au_test_aufs(dentry->d_sb)) + return; + + dinfo = au_di(dentry); + if (!dinfo) + return; + dpri("d-1: btop %d, bbot %d, bwh %d, bdiropq %d, gen %d, tmp %d\n", + dinfo->di_btop, dinfo->di_bbot, + dinfo->di_bwh, dinfo->di_bdiropq, au_digen(dentry), + dinfo->di_tmpfile); + if (dinfo->di_btop < 0) + return; + for (bindex = dinfo->di_btop; bindex <= dinfo->di_bbot; bindex++) + do_pri_dentry(bindex, au_hdentry(dinfo, bindex)->hd_dentry); +} + +static int do_pri_file(aufs_bindex_t bindex, struct file *file) +{ + char a[32]; + + if (!file || IS_ERR(file)) { + dpri("f%d: err %ld\n", bindex, PTR_ERR(file)); + return -1; + } + a[0] = 0; + if (bindex < 0 + && !IS_ERR_OR_NULL(file->f_path.dentry) + && au_test_aufs(file->f_path.dentry->d_sb) + && au_fi(file)) + snprintf(a, sizeof(a), ", gen %d, mmapped %d", + au_figen(file), atomic_read(&au_fi(file)->fi_mmapped)); + dpri("f%d: mode 0x%x, flags 0%o, cnt %ld, v %llu, pos %llu%s\n", + bindex, file->f_mode, file->f_flags, (long)file_count(file), + file->f_version, file->f_pos, a); + if (!IS_ERR_OR_NULL(file->f_path.dentry)) + do_pri_dentry(bindex, file->f_path.dentry); + return 0; +} + +void au_dpri_file(struct file *file) +{ + struct au_finfo *finfo; + struct au_fidir *fidir; + struct au_hfile *hfile; + aufs_bindex_t bindex; + int err; + + err = do_pri_file(-1, file); + if (err + || IS_ERR_OR_NULL(file->f_path.dentry) + || !au_test_aufs(file->f_path.dentry->d_sb)) + return; + + finfo = au_fi(file); + if (!finfo) + return; + if (finfo->fi_btop < 0) + return; + fidir = finfo->fi_hdir; + if (!fidir) + do_pri_file(finfo->fi_btop, finfo->fi_htop.hf_file); + else + for (bindex = finfo->fi_btop; + bindex >= 0 && bindex <= fidir->fd_bbot; + bindex++) { + hfile = fidir->fd_hfile + bindex; + do_pri_file(bindex, hfile ? hfile->hf_file : NULL); + } +} + +static int do_pri_br(aufs_bindex_t bindex, struct au_branch *br) +{ + struct vfsmount *mnt; + struct super_block *sb; + + if (!br || IS_ERR(br)) + goto out; + mnt = au_br_mnt(br); + if (!mnt || IS_ERR(mnt)) + goto out; + sb = mnt->mnt_sb; + if (!sb || IS_ERR(sb)) + goto out; + + dpri("s%d: {perm 0x%x, id %d, cnt %lld, wbr %p}, " + "%s, dev 0x%02x%02x, flags 0x%lx, cnt %d, active %d, " + "xino %d\n", + bindex, br->br_perm, br->br_id, au_br_count(br), + br->br_wbr, au_sbtype(sb), MAJOR(sb->s_dev), MINOR(sb->s_dev), + sb->s_flags, sb->s_count, + atomic_read(&sb->s_active), !!br->br_xino.xi_file); + return 0; + +out: + dpri("s%d: err %ld\n", bindex, PTR_ERR(br)); + return -1; +} + +void au_dpri_sb(struct super_block *sb) +{ + struct au_sbinfo *sbinfo; + aufs_bindex_t bindex; + int err; + /* to reuduce stack size */ + struct { + struct vfsmount mnt; + struct au_branch fake; + } *a; + + /* this function can be called from magic sysrq */ + a = kzalloc(sizeof(*a), GFP_ATOMIC); + if (unlikely(!a)) { + dpri("no memory\n"); + return; + } + + a->mnt.mnt_sb = sb; + a->fake.br_path.mnt = &a->mnt; + au_br_count_init(&a->fake); + err = do_pri_br(-1, &a->fake); + au_br_count_fin(&a->fake); + au_delayed_kfree(a); + dpri("dev 0x%x\n", sb->s_dev); + if (err || !au_test_aufs(sb)) + return; + + sbinfo = au_sbi(sb); + if (!sbinfo) + return; + dpri("nw %d, gen %u, kobj %d\n", + atomic_read(&sbinfo->si_nowait.nw_len), sbinfo->si_generation, + atomic_read(&sbinfo->si_kobj.kref.refcount)); + for (bindex = 0; bindex <= sbinfo->si_bbot; bindex++) + do_pri_br(bindex, sbinfo->si_branch[0 + bindex]); +} + +/* ---------------------------------------------------------------------- */ + +void __au_dbg_verify_dinode(struct dentry *dentry, const char *func, int line) +{ + struct inode *h_inode, *inode = d_inode(dentry); + struct dentry *h_dentry; + aufs_bindex_t bindex, bbot, bi; + + if (!inode /* || au_di(dentry)->di_lsc == AuLsc_DI_TMP */) + return; + + bbot = au_dbbot(dentry); + bi = au_ibbot(inode); + if (bi < bbot) + bbot = bi; + bindex = au_dbtop(dentry); + bi = au_ibtop(inode); + if (bi > bindex) + bindex = bi; + + for (; bindex <= bbot; bindex++) { + h_dentry = au_h_dptr(dentry, bindex); + if (!h_dentry) + continue; + h_inode = au_h_iptr(inode, bindex); + if (unlikely(h_inode != d_inode(h_dentry))) { + au_debug_on(); + AuDbg("b%d, %s:%d\n", bindex, func, line); + AuDbgDentry(dentry); + AuDbgInode(inode); + au_debug_off(); + BUG(); + } + } +} + +void au_dbg_verify_gen(struct dentry *parent, unsigned int sigen) +{ + int err, i, j; + struct au_dcsub_pages dpages; + struct au_dpage *dpage; + struct dentry **dentries; + + err = au_dpages_init(&dpages, GFP_NOFS); + AuDebugOn(err); + err = au_dcsub_pages_rev_aufs(&dpages, parent, /*do_include*/1); + AuDebugOn(err); + for (i = dpages.ndpage - 1; !err && i >= 0; i--) { + dpage = dpages.dpages + i; + dentries = dpage->dentries; + for (j = dpage->ndentry - 1; !err && j >= 0; j--) + AuDebugOn(au_digen_test(dentries[j], sigen)); + } + au_dpages_free(&dpages); +} + +void au_dbg_verify_kthread(void) +{ + if (au_wkq_test()) { + au_dbg_blocked(); + /* + * It may be recursive, but udba=notify between two aufs mounts, + * where a single ro branch is shared, is not a problem. + */ + /* WARN_ON(1); */ + } +} + +/* ---------------------------------------------------------------------- */ + +int __init au_debug_init(void) +{ + aufs_bindex_t bindex; + struct au_vdir_destr destr; + + bindex = -1; + AuDebugOn(bindex >= 0); + + destr.len = -1; + AuDebugOn(destr.len < NAME_MAX); + +#ifdef CONFIG_4KSTACKS + pr_warn("CONFIG_4KSTACKS is defined.\n"); +#endif + + return 0; +} --- linux-4.8.0.orig/fs/aufs/debug.h +++ linux-4.8.0/fs/aufs/debug.h @@ -0,0 +1,225 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * debug print functions + */ + +#ifndef __AUFS_DEBUG_H__ +#define __AUFS_DEBUG_H__ + +#ifdef __KERNEL__ + +#include +#include +#include +#include + +#ifdef CONFIG_AUFS_DEBUG +#define AuDebugOn(a) BUG_ON(a) + +/* module parameter */ +extern atomic_t aufs_debug; +static inline void au_debug_on(void) +{ + atomic_inc(&aufs_debug); +} +static inline void au_debug_off(void) +{ + atomic_dec_if_positive(&aufs_debug); +} + +static inline int au_debug_test(void) +{ + return atomic_read(&aufs_debug) > 0; +} +#else +#define AuDebugOn(a) do {} while (0) +AuStubVoid(au_debug_on, void) +AuStubVoid(au_debug_off, void) +AuStubInt0(au_debug_test, void) +#endif /* CONFIG_AUFS_DEBUG */ + +#define param_check_atomic_t(name, p) __param_check(name, p, atomic_t) + +/* ---------------------------------------------------------------------- */ + +/* debug print */ + +#define AuDbg(fmt, ...) do { \ + if (au_debug_test()) \ + pr_debug("DEBUG: " fmt, ##__VA_ARGS__); \ +} while (0) +#define AuLabel(l) AuDbg(#l "\n") +#define AuIOErr(fmt, ...) pr_err("I/O Error, " fmt, ##__VA_ARGS__) +#define AuWarn1(fmt, ...) do { \ + static unsigned char _c; \ + if (!_c++) \ + pr_warn(fmt, ##__VA_ARGS__); \ +} while (0) + +#define AuErr1(fmt, ...) do { \ + static unsigned char _c; \ + if (!_c++) \ + pr_err(fmt, ##__VA_ARGS__); \ +} while (0) + +#define AuIOErr1(fmt, ...) do { \ + static unsigned char _c; \ + if (!_c++) \ + AuIOErr(fmt, ##__VA_ARGS__); \ +} while (0) + +#define AuUnsupportMsg "This operation is not supported." \ + " Please report this application to aufs-users ML." +#define AuUnsupport(fmt, ...) do { \ + pr_err(AuUnsupportMsg "\n" fmt, ##__VA_ARGS__); \ + dump_stack(); \ +} while (0) + +#define AuTraceErr(e) do { \ + if (unlikely((e) < 0)) \ + AuDbg("err %d\n", (int)(e)); \ +} while (0) + +#define AuTraceErrPtr(p) do { \ + if (IS_ERR(p)) \ + AuDbg("err %ld\n", PTR_ERR(p)); \ +} while (0) + +/* dirty macros for debug print, use with "%.*s" and caution */ +#define AuLNPair(qstr) (qstr)->len, (qstr)->name + +/* ---------------------------------------------------------------------- */ + +struct dentry; +#ifdef CONFIG_AUFS_DEBUG +extern struct mutex au_dbg_mtx; +extern char *au_plevel; +struct au_nhash; +void au_dpri_whlist(struct au_nhash *whlist); +struct au_vdir; +void au_dpri_vdir(struct au_vdir *vdir); +struct inode; +void au_dpri_inode(struct inode *inode); +void au_dpri_dalias(struct inode *inode); +void au_dpri_dentry(struct dentry *dentry); +struct file; +void au_dpri_file(struct file *filp); +struct super_block; +void au_dpri_sb(struct super_block *sb); + +#define au_dbg_verify_dinode(d) __au_dbg_verify_dinode(d, __func__, __LINE__) +void __au_dbg_verify_dinode(struct dentry *dentry, const char *func, int line); +void au_dbg_verify_gen(struct dentry *parent, unsigned int sigen); +void au_dbg_verify_kthread(void); + +int __init au_debug_init(void); + +#define AuDbgWhlist(w) do { \ + mutex_lock(&au_dbg_mtx); \ + AuDbg(#w "\n"); \ + au_dpri_whlist(w); \ + mutex_unlock(&au_dbg_mtx); \ +} while (0) + +#define AuDbgVdir(v) do { \ + mutex_lock(&au_dbg_mtx); \ + AuDbg(#v "\n"); \ + au_dpri_vdir(v); \ + mutex_unlock(&au_dbg_mtx); \ +} while (0) + +#define AuDbgInode(i) do { \ + mutex_lock(&au_dbg_mtx); \ + AuDbg(#i "\n"); \ + au_dpri_inode(i); \ + mutex_unlock(&au_dbg_mtx); \ +} while (0) + +#define AuDbgDAlias(i) do { \ + mutex_lock(&au_dbg_mtx); \ + AuDbg(#i "\n"); \ + au_dpri_dalias(i); \ + mutex_unlock(&au_dbg_mtx); \ +} while (0) + +#define AuDbgDentry(d) do { \ + mutex_lock(&au_dbg_mtx); \ + AuDbg(#d "\n"); \ + au_dpri_dentry(d); \ + mutex_unlock(&au_dbg_mtx); \ +} while (0) + +#define AuDbgFile(f) do { \ + mutex_lock(&au_dbg_mtx); \ + AuDbg(#f "\n"); \ + au_dpri_file(f); \ + mutex_unlock(&au_dbg_mtx); \ +} while (0) + +#define AuDbgSb(sb) do { \ + mutex_lock(&au_dbg_mtx); \ + AuDbg(#sb "\n"); \ + au_dpri_sb(sb); \ + mutex_unlock(&au_dbg_mtx); \ +} while (0) + +#define AuDbgSym(addr) do { \ + char sym[KSYM_SYMBOL_LEN]; \ + sprint_symbol(sym, (unsigned long)addr); \ + AuDbg("%s\n", sym); \ +} while (0) +#else +AuStubVoid(au_dbg_verify_dinode, struct dentry *dentry) +AuStubVoid(au_dbg_verify_gen, struct dentry *parent, unsigned int sigen) +AuStubVoid(au_dbg_verify_kthread, void) +AuStubInt0(__init au_debug_init, void) + +#define AuDbgWhlist(w) do {} while (0) +#define AuDbgVdir(v) do {} while (0) +#define AuDbgInode(i) do {} while (0) +#define AuDbgDAlias(i) do {} while (0) +#define AuDbgDentry(d) do {} while (0) +#define AuDbgFile(f) do {} while (0) +#define AuDbgSb(sb) do {} while (0) +#define AuDbgSym(addr) do {} while (0) +#endif /* CONFIG_AUFS_DEBUG */ + +/* ---------------------------------------------------------------------- */ + +#ifdef CONFIG_AUFS_MAGIC_SYSRQ +int __init au_sysrq_init(void); +void au_sysrq_fin(void); + +#ifdef CONFIG_HW_CONSOLE +#define au_dbg_blocked() do { \ + WARN_ON(1); \ + handle_sysrq('w'); \ +} while (0) +#else +AuStubVoid(au_dbg_blocked, void) +#endif + +#else +AuStubInt0(__init au_sysrq_init, void) +AuStubVoid(au_sysrq_fin, void) +AuStubVoid(au_dbg_blocked, void) +#endif /* CONFIG_AUFS_MAGIC_SYSRQ */ + +#endif /* __KERNEL__ */ +#endif /* __AUFS_DEBUG_H__ */ --- linux-4.8.0.orig/fs/aufs/dentry.c +++ linux-4.8.0/fs/aufs/dentry.c @@ -0,0 +1,1130 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * lookup and dentry operations + */ + +#include +#include "aufs.h" + +struct au_do_lookup_args { + unsigned int flags; + mode_t type; +}; + +/* + * returns positive/negative dentry, NULL or an error. + * NULL means whiteout-ed or not-found. + */ +static struct dentry* +au_do_lookup(struct dentry *h_parent, struct dentry *dentry, + aufs_bindex_t bindex, struct qstr *wh_name, + struct au_do_lookup_args *args) +{ + struct dentry *h_dentry; + struct inode *h_inode; + struct au_branch *br; + int wh_found, opq; + unsigned char wh_able; + const unsigned char allow_neg = !!au_ftest_lkup(args->flags, ALLOW_NEG); + const unsigned char ignore_perm = !!au_ftest_lkup(args->flags, + IGNORE_PERM); + + wh_found = 0; + br = au_sbr(dentry->d_sb, bindex); + wh_able = !!au_br_whable(br->br_perm); + if (wh_able) + wh_found = au_wh_test(h_parent, wh_name, ignore_perm); + h_dentry = ERR_PTR(wh_found); + if (!wh_found) + goto real_lookup; + if (unlikely(wh_found < 0)) + goto out; + + /* We found a whiteout */ + /* au_set_dbbot(dentry, bindex); */ + au_set_dbwh(dentry, bindex); + if (!allow_neg) + return NULL; /* success */ + +real_lookup: + if (!ignore_perm) + h_dentry = vfsub_lkup_one(&dentry->d_name, h_parent); + else + h_dentry = au_sio_lkup_one(&dentry->d_name, h_parent); + if (IS_ERR(h_dentry)) { + if (PTR_ERR(h_dentry) == -ENAMETOOLONG + && !allow_neg) + h_dentry = NULL; + goto out; + } + + h_inode = d_inode(h_dentry); + if (d_is_negative(h_dentry)) { + if (!allow_neg) + goto out_neg; + } else if (wh_found + || (args->type && args->type != (h_inode->i_mode & S_IFMT))) + goto out_neg; + + if (au_dbbot(dentry) <= bindex) + au_set_dbbot(dentry, bindex); + if (au_dbtop(dentry) < 0 || bindex < au_dbtop(dentry)) + au_set_dbtop(dentry, bindex); + au_set_h_dptr(dentry, bindex, h_dentry); + + if (!d_is_dir(h_dentry) + || !wh_able + || (d_really_is_positive(dentry) && !d_is_dir(dentry))) + goto out; /* success */ + + inode_lock_nested(h_inode, AuLsc_I_CHILD); + opq = au_diropq_test(h_dentry); + inode_unlock(h_inode); + if (opq > 0) + au_set_dbdiropq(dentry, bindex); + else if (unlikely(opq < 0)) { + au_set_h_dptr(dentry, bindex, NULL); + h_dentry = ERR_PTR(opq); + } + goto out; + +out_neg: + dput(h_dentry); + h_dentry = NULL; +out: + return h_dentry; +} + +static int au_test_shwh(struct super_block *sb, const struct qstr *name) +{ + if (unlikely(!au_opt_test(au_mntflags(sb), SHWH) + && !strncmp(name->name, AUFS_WH_PFX, AUFS_WH_PFX_LEN))) + return -EPERM; + return 0; +} + +/* + * returns the number of lower positive dentries, + * otherwise an error. + * can be called at unlinking with @type is zero. + */ +int au_lkup_dentry(struct dentry *dentry, aufs_bindex_t btop, + unsigned int flags) +{ + int npositive, err; + aufs_bindex_t bindex, btail, bdiropq; + unsigned char isdir, dirperm1; + struct qstr whname; + struct au_do_lookup_args args = { + .flags = flags + }; + const struct qstr *name = &dentry->d_name; + struct dentry *parent; + struct super_block *sb; + + sb = dentry->d_sb; + err = au_test_shwh(sb, name); + if (unlikely(err)) + goto out; + + err = au_wh_name_alloc(&whname, name); + if (unlikely(err)) + goto out; + + isdir = !!d_is_dir(dentry); + dirperm1 = !!au_opt_test(au_mntflags(sb), DIRPERM1); + + npositive = 0; + parent = dget_parent(dentry); + btail = au_dbtaildir(parent); + for (bindex = btop; bindex <= btail; bindex++) { + struct dentry *h_parent, *h_dentry; + struct inode *h_inode, *h_dir; + + h_dentry = au_h_dptr(dentry, bindex); + if (h_dentry) { + if (d_is_positive(h_dentry)) + npositive++; + break; + } + h_parent = au_h_dptr(parent, bindex); + if (!h_parent || !d_is_dir(h_parent)) + continue; + + h_dir = d_inode(h_parent); + inode_lock_nested(h_dir, AuLsc_I_PARENT); + h_dentry = au_do_lookup(h_parent, dentry, bindex, &whname, + &args); + inode_unlock(h_dir); + err = PTR_ERR(h_dentry); + if (IS_ERR(h_dentry)) + goto out_parent; + if (h_dentry) + au_fclr_lkup(args.flags, ALLOW_NEG); + if (dirperm1) + au_fset_lkup(args.flags, IGNORE_PERM); + + if (au_dbwh(dentry) == bindex) + break; + if (!h_dentry) + continue; + if (d_is_negative(h_dentry)) + continue; + h_inode = d_inode(h_dentry); + npositive++; + if (!args.type) + args.type = h_inode->i_mode & S_IFMT; + if (args.type != S_IFDIR) + break; + else if (isdir) { + /* the type of lower may be different */ + bdiropq = au_dbdiropq(dentry); + if (bdiropq >= 0 && bdiropq <= bindex) + break; + } + } + + if (npositive) { + AuLabel(positive); + au_update_dbtop(dentry); + } + err = npositive; + if (unlikely(!au_opt_test(au_mntflags(sb), UDBA_NONE) + && au_dbtop(dentry) < 0)) { + err = -EIO; + AuIOErr("both of real entry and whiteout found, %pd, err %d\n", + dentry, err); + } + +out_parent: + dput(parent); + au_delayed_kfree(whname.name); +out: + return err; +} + +struct dentry *au_sio_lkup_one(struct qstr *name, struct dentry *parent) +{ + struct dentry *dentry; + int wkq_err; + + if (!au_test_h_perm_sio(d_inode(parent), MAY_EXEC)) + dentry = vfsub_lkup_one(name, parent); + else { + struct vfsub_lkup_one_args args = { + .errp = &dentry, + .name = name, + .parent = parent + }; + + wkq_err = au_wkq_wait(vfsub_call_lkup_one, &args); + if (unlikely(wkq_err)) + dentry = ERR_PTR(wkq_err); + } + + return dentry; +} + +/* + * lookup @dentry on @bindex which should be negative. + */ +int au_lkup_neg(struct dentry *dentry, aufs_bindex_t bindex, int wh) +{ + int err; + struct dentry *parent, *h_parent, *h_dentry; + struct au_branch *br; + + parent = dget_parent(dentry); + h_parent = au_h_dptr(parent, bindex); + br = au_sbr(dentry->d_sb, bindex); + if (wh) + h_dentry = au_whtmp_lkup(h_parent, br, &dentry->d_name); + else + h_dentry = au_sio_lkup_one(&dentry->d_name, h_parent); + err = PTR_ERR(h_dentry); + if (IS_ERR(h_dentry)) + goto out; + if (unlikely(d_is_positive(h_dentry))) { + err = -EIO; + AuIOErr("%pd should be negative on b%d.\n", h_dentry, bindex); + dput(h_dentry); + goto out; + } + + err = 0; + if (bindex < au_dbtop(dentry)) + au_set_dbtop(dentry, bindex); + if (au_dbbot(dentry) < bindex) + au_set_dbbot(dentry, bindex); + au_set_h_dptr(dentry, bindex, h_dentry); + +out: + dput(parent); + return err; +} + +/* ---------------------------------------------------------------------- */ + +/* subset of struct inode */ +struct au_iattr { + unsigned long i_ino; + /* unsigned int i_nlink; */ + kuid_t i_uid; + kgid_t i_gid; + u64 i_version; +/* + loff_t i_size; + blkcnt_t i_blocks; +*/ + umode_t i_mode; +}; + +static void au_iattr_save(struct au_iattr *ia, struct inode *h_inode) +{ + ia->i_ino = h_inode->i_ino; + /* ia->i_nlink = h_inode->i_nlink; */ + ia->i_uid = h_inode->i_uid; + ia->i_gid = h_inode->i_gid; + ia->i_version = h_inode->i_version; +/* + ia->i_size = h_inode->i_size; + ia->i_blocks = h_inode->i_blocks; +*/ + ia->i_mode = (h_inode->i_mode & S_IFMT); +} + +static int au_iattr_test(struct au_iattr *ia, struct inode *h_inode) +{ + return ia->i_ino != h_inode->i_ino + /* || ia->i_nlink != h_inode->i_nlink */ + || !uid_eq(ia->i_uid, h_inode->i_uid) + || !gid_eq(ia->i_gid, h_inode->i_gid) + || ia->i_version != h_inode->i_version +/* + || ia->i_size != h_inode->i_size + || ia->i_blocks != h_inode->i_blocks +*/ + || ia->i_mode != (h_inode->i_mode & S_IFMT); +} + +static int au_h_verify_dentry(struct dentry *h_dentry, struct dentry *h_parent, + struct au_branch *br) +{ + int err; + struct au_iattr ia; + struct inode *h_inode; + struct dentry *h_d; + struct super_block *h_sb; + + err = 0; + memset(&ia, -1, sizeof(ia)); + h_sb = h_dentry->d_sb; + h_inode = NULL; + if (d_is_positive(h_dentry)) { + h_inode = d_inode(h_dentry); + au_iattr_save(&ia, h_inode); + } else if (au_test_nfs(h_sb) || au_test_fuse(h_sb)) + /* nfs d_revalidate may return 0 for negative dentry */ + /* fuse d_revalidate always return 0 for negative dentry */ + goto out; + + /* main purpose is namei.c:cached_lookup() and d_revalidate */ + h_d = vfsub_lkup_one(&h_dentry->d_name, h_parent); + err = PTR_ERR(h_d); + if (IS_ERR(h_d)) + goto out; + + err = 0; + if (unlikely(h_d != h_dentry + || d_inode(h_d) != h_inode + || (h_inode && au_iattr_test(&ia, h_inode)))) + err = au_busy_or_stale(); + dput(h_d); + +out: + AuTraceErr(err); + return err; +} + +int au_h_verify(struct dentry *h_dentry, unsigned int udba, struct inode *h_dir, + struct dentry *h_parent, struct au_branch *br) +{ + int err; + + err = 0; + if (udba == AuOpt_UDBA_REVAL + && !au_test_fs_remote(h_dentry->d_sb)) { + IMustLock(h_dir); + err = (d_inode(h_dentry->d_parent) != h_dir); + } else if (udba != AuOpt_UDBA_NONE) + err = au_h_verify_dentry(h_dentry, h_parent, br); + + return err; +} + +/* ---------------------------------------------------------------------- */ + +static int au_do_refresh_hdentry(struct dentry *dentry, struct dentry *parent) +{ + int err; + aufs_bindex_t new_bindex, bindex, bbot, bwh, bdiropq; + struct au_hdentry tmp, *p, *q; + struct au_dinfo *dinfo; + struct super_block *sb; + + DiMustWriteLock(dentry); + + sb = dentry->d_sb; + dinfo = au_di(dentry); + bbot = dinfo->di_bbot; + bwh = dinfo->di_bwh; + bdiropq = dinfo->di_bdiropq; + bindex = dinfo->di_btop; + p = au_hdentry(dinfo, bindex); + for (; bindex <= bbot; bindex++, p++) { + if (!p->hd_dentry) + continue; + + new_bindex = au_br_index(sb, p->hd_id); + if (new_bindex == bindex) + continue; + + if (dinfo->di_bwh == bindex) + bwh = new_bindex; + if (dinfo->di_bdiropq == bindex) + bdiropq = new_bindex; + if (new_bindex < 0) { + au_hdput(p); + p->hd_dentry = NULL; + continue; + } + + /* swap two lower dentries, and loop again */ + q = au_hdentry(dinfo, new_bindex); + tmp = *q; + *q = *p; + *p = tmp; + if (tmp.hd_dentry) { + bindex--; + p--; + } + } + + dinfo->di_bwh = -1; + if (bwh >= 0 && bwh <= au_sbbot(sb) && au_sbr_whable(sb, bwh)) + dinfo->di_bwh = bwh; + + dinfo->di_bdiropq = -1; + if (bdiropq >= 0 + && bdiropq <= au_sbbot(sb) + && au_sbr_whable(sb, bdiropq)) + dinfo->di_bdiropq = bdiropq; + + err = -EIO; + dinfo->di_btop = -1; + dinfo->di_bbot = -1; + bbot = au_dbbot(parent); + bindex = 0; + p = au_hdentry(dinfo, bindex); + for (; bindex <= bbot; bindex++, p++) + if (p->hd_dentry) { + dinfo->di_btop = bindex; + break; + } + + if (dinfo->di_btop >= 0) { + bindex = bbot; + p = au_hdentry(dinfo, bindex); + for (; bindex >= 0; bindex--, p--) + if (p->hd_dentry) { + dinfo->di_bbot = bindex; + err = 0; + break; + } + } + + return err; +} + +static void au_do_hide(struct dentry *dentry) +{ + struct inode *inode; + + if (d_really_is_positive(dentry)) { + inode = d_inode(dentry); + if (!d_is_dir(dentry)) { + if (inode->i_nlink && !d_unhashed(dentry)) + drop_nlink(inode); + } else { + clear_nlink(inode); + /* stop next lookup */ + inode->i_flags |= S_DEAD; + } + smp_mb(); /* necessary? */ + } + d_drop(dentry); +} + +static int au_hide_children(struct dentry *parent) +{ + int err, i, j, ndentry; + struct au_dcsub_pages dpages; + struct au_dpage *dpage; + struct dentry *dentry; + + err = au_dpages_init(&dpages, GFP_NOFS); + if (unlikely(err)) + goto out; + err = au_dcsub_pages(&dpages, parent, NULL, NULL); + if (unlikely(err)) + goto out_dpages; + + /* in reverse order */ + for (i = dpages.ndpage - 1; i >= 0; i--) { + dpage = dpages.dpages + i; + ndentry = dpage->ndentry; + for (j = ndentry - 1; j >= 0; j--) { + dentry = dpage->dentries[j]; + if (dentry != parent) + au_do_hide(dentry); + } + } + +out_dpages: + au_dpages_free(&dpages); +out: + return err; +} + +static void au_hide(struct dentry *dentry) +{ + int err; + + AuDbgDentry(dentry); + if (d_is_dir(dentry)) { + /* shrink_dcache_parent(dentry); */ + err = au_hide_children(dentry); + if (unlikely(err)) + AuIOErr("%pd, failed hiding children, ignored %d\n", + dentry, err); + } + au_do_hide(dentry); +} + +/* + * By adding a dirty branch, a cached dentry may be affected in various ways. + * + * a dirty branch is added + * - on the top of layers + * - in the middle of layers + * - to the bottom of layers + * + * on the added branch there exists + * - a whiteout + * - a diropq + * - a same named entry + * + exist + * * negative --> positive + * * positive --> positive + * - type is unchanged + * - type is changed + * + doesn't exist + * * negative --> negative + * * positive --> negative (rejected by au_br_del() for non-dir case) + * - none + */ +static int au_refresh_by_dinfo(struct dentry *dentry, struct au_dinfo *dinfo, + struct au_dinfo *tmp) +{ + int err; + aufs_bindex_t bindex, bbot; + struct { + struct dentry *dentry; + struct inode *inode; + mode_t mode; + } orig_h, tmp_h = { + .dentry = NULL + }; + struct au_hdentry *hd; + struct inode *inode, *h_inode; + struct dentry *h_dentry; + + err = 0; + AuDebugOn(dinfo->di_btop < 0); + orig_h.mode = 0; + orig_h.dentry = au_hdentry(dinfo, dinfo->di_btop)->hd_dentry; + orig_h.inode = NULL; + if (d_is_positive(orig_h.dentry)) { + orig_h.inode = d_inode(orig_h.dentry); + orig_h.mode = orig_h.inode->i_mode & S_IFMT; + } + if (tmp->di_btop >= 0) { + tmp_h.dentry = au_hdentry(tmp, tmp->di_btop)->hd_dentry; + if (d_is_positive(tmp_h.dentry)) { + tmp_h.inode = d_inode(tmp_h.dentry); + tmp_h.mode = tmp_h.inode->i_mode & S_IFMT; + } + } + + inode = NULL; + if (d_really_is_positive(dentry)) + inode = d_inode(dentry); + if (!orig_h.inode) { + AuDbg("nagative originally\n"); + if (inode) { + au_hide(dentry); + goto out; + } + AuDebugOn(inode); + AuDebugOn(dinfo->di_btop != dinfo->di_bbot); + AuDebugOn(dinfo->di_bdiropq != -1); + + if (!tmp_h.inode) { + AuDbg("negative --> negative\n"); + /* should have only one negative lower */ + if (tmp->di_btop >= 0 + && tmp->di_btop < dinfo->di_btop) { + AuDebugOn(tmp->di_btop != tmp->di_bbot); + AuDebugOn(dinfo->di_btop != dinfo->di_bbot); + au_set_h_dptr(dentry, dinfo->di_btop, NULL); + au_di_cp(dinfo, tmp); + hd = au_hdentry(tmp, tmp->di_btop); + au_set_h_dptr(dentry, tmp->di_btop, + dget(hd->hd_dentry)); + } + au_dbg_verify_dinode(dentry); + } else { + AuDbg("negative --> positive\n"); + /* + * similar to the behaviour of creating with bypassing + * aufs. + * unhash it in order to force an error in the + * succeeding create operation. + * we should not set S_DEAD here. + */ + d_drop(dentry); + /* au_di_swap(tmp, dinfo); */ + au_dbg_verify_dinode(dentry); + } + } else { + AuDbg("positive originally\n"); + /* inode may be NULL */ + AuDebugOn(inode && (inode->i_mode & S_IFMT) != orig_h.mode); + if (!tmp_h.inode) { + AuDbg("positive --> negative\n"); + /* or bypassing aufs */ + au_hide(dentry); + if (tmp->di_bwh >= 0 && tmp->di_bwh <= dinfo->di_btop) + dinfo->di_bwh = tmp->di_bwh; + if (inode) + err = au_refresh_hinode_self(inode); + au_dbg_verify_dinode(dentry); + } else if (orig_h.mode == tmp_h.mode) { + AuDbg("positive --> positive, same type\n"); + if (!S_ISDIR(orig_h.mode) + && dinfo->di_btop > tmp->di_btop) { + /* + * similar to the behaviour of removing and + * creating. + */ + au_hide(dentry); + if (inode) + err = au_refresh_hinode_self(inode); + au_dbg_verify_dinode(dentry); + } else { + /* fill empty slots */ + if (dinfo->di_btop > tmp->di_btop) + dinfo->di_btop = tmp->di_btop; + if (dinfo->di_bbot < tmp->di_bbot) + dinfo->di_bbot = tmp->di_bbot; + dinfo->di_bwh = tmp->di_bwh; + dinfo->di_bdiropq = tmp->di_bdiropq; + bbot = dinfo->di_bbot; + bindex = tmp->di_btop; + hd = au_hdentry(tmp, bindex); + for (; bindex <= bbot; bindex++, hd++) { + if (au_h_dptr(dentry, bindex)) + continue; + h_dentry = hd->hd_dentry; + if (!h_dentry) + continue; + AuDebugOn(d_is_negative(h_dentry)); + h_inode = d_inode(h_dentry); + AuDebugOn(orig_h.mode + != (h_inode->i_mode + & S_IFMT)); + au_set_h_dptr(dentry, bindex, + dget(h_dentry)); + } + if (inode) + err = au_refresh_hinode(inode, dentry); + au_dbg_verify_dinode(dentry); + } + } else { + AuDbg("positive --> positive, different type\n"); + /* similar to the behaviour of removing and creating */ + au_hide(dentry); + if (inode) + err = au_refresh_hinode_self(inode); + au_dbg_verify_dinode(dentry); + } + } + +out: + return err; +} + +void au_refresh_dop(struct dentry *dentry, int force_reval) +{ + const struct dentry_operations *dop + = force_reval ? &aufs_dop : dentry->d_sb->s_d_op; + static const unsigned int mask + = DCACHE_OP_REVALIDATE | DCACHE_OP_WEAK_REVALIDATE; + + BUILD_BUG_ON(sizeof(mask) != sizeof(dentry->d_flags)); + + if (dentry->d_op == dop) + return; + + AuDbg("%pd\n", dentry); + spin_lock(&dentry->d_lock); + if (dop == &aufs_dop) + dentry->d_flags |= mask; + else + dentry->d_flags &= ~mask; + dentry->d_op = dop; + spin_unlock(&dentry->d_lock); +} + +int au_refresh_dentry(struct dentry *dentry, struct dentry *parent) +{ + int err, ebrange, nbr; + unsigned int sigen; + struct au_dinfo *dinfo, *tmp; + struct super_block *sb; + struct inode *inode; + + DiMustWriteLock(dentry); + AuDebugOn(IS_ROOT(dentry)); + AuDebugOn(d_really_is_negative(parent)); + + sb = dentry->d_sb; + sigen = au_sigen(sb); + err = au_digen_test(parent, sigen); + if (unlikely(err)) + goto out; + + nbr = au_sbbot(sb) + 1; + dinfo = au_di(dentry); + err = au_di_realloc(dinfo, nbr, /*may_shrink*/0); + if (unlikely(err)) + goto out; + ebrange = au_dbrange_test(dentry); + if (!ebrange) + ebrange = au_do_refresh_hdentry(dentry, parent); + + if (d_unhashed(dentry) || ebrange /* || dinfo->di_tmpfile */) { + AuDebugOn(au_dbtop(dentry) < 0 && au_dbbot(dentry) >= 0); + if (d_really_is_positive(dentry)) { + inode = d_inode(dentry); + err = au_refresh_hinode_self(inode); + } + au_dbg_verify_dinode(dentry); + if (!err) + goto out_dgen; /* success */ + goto out; + } + + /* temporary dinfo */ + AuDbgDentry(dentry); + err = -ENOMEM; + tmp = au_di_alloc(sb, AuLsc_DI_TMP); + if (unlikely(!tmp)) + goto out; + au_di_swap(tmp, dinfo); + /* returns the number of positive dentries */ + /* + * if current working dir is removed, it returns an error. + * but the dentry is legal. + */ + err = au_lkup_dentry(dentry, /*btop*/0, AuLkup_ALLOW_NEG); + AuDbgDentry(dentry); + au_di_swap(tmp, dinfo); + if (err == -ENOENT) + err = 0; + if (err >= 0) { + /* compare/refresh by dinfo */ + AuDbgDentry(dentry); + err = au_refresh_by_dinfo(dentry, dinfo, tmp); + au_dbg_verify_dinode(dentry); + AuTraceErr(err); + } + au_di_realloc(dinfo, nbr, /*may_shrink*/1); /* harmless if err */ + au_rw_write_unlock(&tmp->di_rwsem); + au_di_free(tmp); + if (unlikely(err)) + goto out; + +out_dgen: + au_update_digen(dentry); +out: + if (unlikely(err && !(dentry->d_flags & DCACHE_NFSFS_RENAMED))) { + AuIOErr("failed refreshing %pd, %d\n", dentry, err); + AuDbgDentry(dentry); + } + AuTraceErr(err); + return err; +} + +static int au_do_h_d_reval(struct dentry *h_dentry, unsigned int flags, + struct dentry *dentry, aufs_bindex_t bindex) +{ + int err, valid; + + err = 0; + if (!(h_dentry->d_flags & DCACHE_OP_REVALIDATE)) + goto out; + + AuDbg("b%d\n", bindex); + /* + * gave up supporting LOOKUP_CREATE/OPEN for lower fs, + * due to whiteout and branch permission. + */ + flags &= ~(/*LOOKUP_PARENT |*/ LOOKUP_OPEN | LOOKUP_CREATE + | LOOKUP_FOLLOW | LOOKUP_EXCL); + /* it may return tri-state */ + valid = h_dentry->d_op->d_revalidate(h_dentry, flags); + + if (unlikely(valid < 0)) + err = valid; + else if (!valid) + err = -EINVAL; + +out: + AuTraceErr(err); + return err; +} + +/* todo: remove this */ +static int h_d_revalidate(struct dentry *dentry, struct inode *inode, + unsigned int flags, int do_udba) +{ + int err; + umode_t mode, h_mode; + aufs_bindex_t bindex, btail, btop, ibs, ibe; + unsigned char plus, unhashed, is_root, h_plus, h_nfs, tmpfile; + struct inode *h_inode, *h_cached_inode; + struct dentry *h_dentry; + struct qstr *name, *h_name; + + err = 0; + plus = 0; + mode = 0; + ibs = -1; + ibe = -1; + unhashed = !!d_unhashed(dentry); + is_root = !!IS_ROOT(dentry); + name = &dentry->d_name; + tmpfile = au_di(dentry)->di_tmpfile; + + /* + * Theoretically, REVAL test should be unnecessary in case of + * {FS,I}NOTIFY. + * But {fs,i}notify doesn't fire some necessary events, + * IN_ATTRIB for atime/nlink/pageio + * Let's do REVAL test too. + */ + if (do_udba && inode) { + mode = (inode->i_mode & S_IFMT); + plus = (inode->i_nlink > 0); + ibs = au_ibtop(inode); + ibe = au_ibbot(inode); + } + + btop = au_dbtop(dentry); + btail = btop; + if (inode && S_ISDIR(inode->i_mode)) + btail = au_dbtaildir(dentry); + for (bindex = btop; bindex <= btail; bindex++) { + h_dentry = au_h_dptr(dentry, bindex); + if (!h_dentry) + continue; + + AuDbg("b%d, %pd\n", bindex, h_dentry); + h_nfs = !!au_test_nfs(h_dentry->d_sb); + spin_lock(&h_dentry->d_lock); + h_name = &h_dentry->d_name; + if (unlikely(do_udba + && !is_root + && ((!h_nfs + && (unhashed != !!d_unhashed(h_dentry) + || (!tmpfile + && !au_qstreq(name, h_name)) + )) + || (h_nfs + && !(flags & LOOKUP_OPEN) + && (h_dentry->d_flags + & DCACHE_NFSFS_RENAMED))) + )) { + int h_unhashed; + + h_unhashed = d_unhashed(h_dentry); + spin_unlock(&h_dentry->d_lock); + AuDbg("unhash 0x%x 0x%x, %pd %pd\n", + unhashed, h_unhashed, dentry, h_dentry); + goto err; + } + spin_unlock(&h_dentry->d_lock); + + err = au_do_h_d_reval(h_dentry, flags, dentry, bindex); + if (unlikely(err)) + /* do not goto err, to keep the errno */ + break; + + /* todo: plink too? */ + if (!do_udba) + continue; + + /* UDBA tests */ + if (unlikely(!!inode != d_is_positive(h_dentry))) + goto err; + + h_inode = NULL; + if (d_is_positive(h_dentry)) + h_inode = d_inode(h_dentry); + h_plus = plus; + h_mode = mode; + h_cached_inode = h_inode; + if (h_inode) { + h_mode = (h_inode->i_mode & S_IFMT); + h_plus = (h_inode->i_nlink > 0); + } + if (inode && ibs <= bindex && bindex <= ibe) + h_cached_inode = au_h_iptr(inode, bindex); + + if (!h_nfs) { + if (unlikely(plus != h_plus && !tmpfile)) + goto err; + } else { + if (unlikely(!(h_dentry->d_flags & DCACHE_NFSFS_RENAMED) + && !is_root + && !IS_ROOT(h_dentry) + && unhashed != d_unhashed(h_dentry))) + goto err; + } + if (unlikely(mode != h_mode + || h_cached_inode != h_inode)) + goto err; + continue; + +err: + err = -EINVAL; + break; + } + + AuTraceErr(err); + return err; +} + +/* todo: consolidate with do_refresh() and au_reval_for_attr() */ +static int simple_reval_dpath(struct dentry *dentry, unsigned int sigen) +{ + int err; + struct dentry *parent; + + if (!au_digen_test(dentry, sigen)) + return 0; + + parent = dget_parent(dentry); + di_read_lock_parent(parent, AuLock_IR); + AuDebugOn(au_digen_test(parent, sigen)); + au_dbg_verify_gen(parent, sigen); + err = au_refresh_dentry(dentry, parent); + di_read_unlock(parent, AuLock_IR); + dput(parent); + AuTraceErr(err); + return err; +} + +int au_reval_dpath(struct dentry *dentry, unsigned int sigen) +{ + int err; + struct dentry *d, *parent; + + if (!au_ftest_si(au_sbi(dentry->d_sb), FAILED_REFRESH_DIR)) + return simple_reval_dpath(dentry, sigen); + + /* slow loop, keep it simple and stupid */ + /* cf: au_cpup_dirs() */ + err = 0; + parent = NULL; + while (au_digen_test(dentry, sigen)) { + d = dentry; + while (1) { + dput(parent); + parent = dget_parent(d); + if (!au_digen_test(parent, sigen)) + break; + d = parent; + } + + if (d != dentry) + di_write_lock_child2(d); + + /* someone might update our dentry while we were sleeping */ + if (au_digen_test(d, sigen)) { + /* + * todo: consolidate with simple_reval_dpath(), + * do_refresh() and au_reval_for_attr(). + */ + di_read_lock_parent(parent, AuLock_IR); + err = au_refresh_dentry(d, parent); + di_read_unlock(parent, AuLock_IR); + } + + if (d != dentry) + di_write_unlock(d); + dput(parent); + if (unlikely(err)) + break; + } + + return err; +} + +/* + * if valid returns 1, otherwise 0. + */ +static int aufs_d_revalidate(struct dentry *dentry, unsigned int flags) +{ + int valid, err; + unsigned int sigen; + unsigned char do_udba; + struct super_block *sb; + struct inode *inode; + + /* todo: support rcu-walk? */ + if (flags & LOOKUP_RCU) + return -ECHILD; + + valid = 0; + if (unlikely(!au_di(dentry))) + goto out; + + valid = 1; + sb = dentry->d_sb; + /* + * todo: very ugly + * i_mutex of parent dir may be held, + * but we should not return 'invalid' due to busy. + */ + err = aufs_read_lock(dentry, AuLock_FLUSH | AuLock_DW | AuLock_NOPLM); + if (unlikely(err)) { + valid = err; + AuTraceErr(err); + goto out; + } + inode = NULL; + if (d_really_is_positive(dentry)) + inode = d_inode(dentry); + if (unlikely(inode && au_is_bad_inode(inode))) { + err = -EINVAL; + AuTraceErr(err); + goto out_dgrade; + } + if (unlikely(au_dbrange_test(dentry))) { + err = -EINVAL; + AuTraceErr(err); + goto out_dgrade; + } + + sigen = au_sigen(sb); + if (au_digen_test(dentry, sigen)) { + AuDebugOn(IS_ROOT(dentry)); + err = au_reval_dpath(dentry, sigen); + if (unlikely(err)) { + AuTraceErr(err); + goto out_dgrade; + } + } + di_downgrade_lock(dentry, AuLock_IR); + + err = -EINVAL; + if (!(flags & (LOOKUP_OPEN | LOOKUP_EMPTY)) + && inode + && !(inode->i_state && I_LINKABLE) + && (IS_DEADDIR(inode) || !inode->i_nlink)) { + AuTraceErr(err); + goto out_inval; + } + + do_udba = !au_opt_test(au_mntflags(sb), UDBA_NONE); + if (do_udba && inode) { + aufs_bindex_t btop = au_ibtop(inode); + struct inode *h_inode; + + if (btop >= 0) { + h_inode = au_h_iptr(inode, btop); + if (h_inode && au_test_higen(inode, h_inode)) { + AuTraceErr(err); + goto out_inval; + } + } + } + + err = h_d_revalidate(dentry, inode, flags, do_udba); + if (unlikely(!err && do_udba && au_dbtop(dentry) < 0)) { + err = -EIO; + AuDbg("both of real entry and whiteout found, %p, err %d\n", + dentry, err); + } + goto out_inval; + +out_dgrade: + di_downgrade_lock(dentry, AuLock_IR); +out_inval: + aufs_read_unlock(dentry, AuLock_IR); + AuTraceErr(err); + valid = !err; +out: + if (!valid) { + AuDbg("%pd invalid, %d\n", dentry, valid); + d_drop(dentry); + } + return valid; +} + +static void aufs_d_release(struct dentry *dentry) +{ + if (au_di(dentry)) { + au_di_fin(dentry); + au_hn_di_reinit(dentry); + } +} + +const struct dentry_operations aufs_dop = { + .d_revalidate = aufs_d_revalidate, + .d_weak_revalidate = aufs_d_revalidate, + .d_release = aufs_d_release +}; + +/* aufs_dop without d_revalidate */ +const struct dentry_operations aufs_dop_noreval = { + .d_release = aufs_d_release +}; --- linux-4.8.0.orig/fs/aufs/dentry.h +++ linux-4.8.0/fs/aufs/dentry.h @@ -0,0 +1,255 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * lookup and dentry operations + */ + +#ifndef __AUFS_DENTRY_H__ +#define __AUFS_DENTRY_H__ + +#ifdef __KERNEL__ + +#include +#include "rwsem.h" + +struct au_hdentry { + struct dentry *hd_dentry; + aufs_bindex_t hd_id; +}; + +struct au_dinfo { + atomic_t di_generation; + + struct au_rwsem di_rwsem; + aufs_bindex_t di_btop, di_bbot, di_bwh, di_bdiropq; + unsigned char di_tmpfile; /* to allow the different name */ + union { + struct au_hdentry *di_hdentry; + struct llist_node di_lnode; /* delayed free */ + }; +} ____cacheline_aligned_in_smp; + +/* ---------------------------------------------------------------------- */ + +/* flags for au_lkup_dentry() */ +#define AuLkup_ALLOW_NEG 1 +#define AuLkup_IGNORE_PERM (1 << 1) +#define au_ftest_lkup(flags, name) ((flags) & AuLkup_##name) +#define au_fset_lkup(flags, name) \ + do { (flags) |= AuLkup_##name; } while (0) +#define au_fclr_lkup(flags, name) \ + do { (flags) &= ~AuLkup_##name; } while (0) + +/* ---------------------------------------------------------------------- */ + +/* dentry.c */ +extern const struct dentry_operations aufs_dop, aufs_dop_noreval; +struct au_branch; +struct dentry *au_sio_lkup_one(struct qstr *name, struct dentry *parent); +int au_h_verify(struct dentry *h_dentry, unsigned int udba, struct inode *h_dir, + struct dentry *h_parent, struct au_branch *br); + +int au_lkup_dentry(struct dentry *dentry, aufs_bindex_t btop, + unsigned int flags); +int au_lkup_neg(struct dentry *dentry, aufs_bindex_t bindex, int wh); +int au_refresh_dentry(struct dentry *dentry, struct dentry *parent); +int au_reval_dpath(struct dentry *dentry, unsigned int sigen); +void au_refresh_dop(struct dentry *dentry, int force_reval); + +/* dinfo.c */ +void au_di_init_once(void *_di); +struct au_dinfo *au_di_alloc(struct super_block *sb, unsigned int lsc); +void au_di_free(struct au_dinfo *dinfo); +void au_di_swap(struct au_dinfo *a, struct au_dinfo *b); +void au_di_cp(struct au_dinfo *dst, struct au_dinfo *src); +int au_di_init(struct dentry *dentry); +void au_di_fin(struct dentry *dentry); +int au_di_realloc(struct au_dinfo *dinfo, int nbr, int may_shrink); + +void di_read_lock(struct dentry *d, int flags, unsigned int lsc); +void di_read_unlock(struct dentry *d, int flags); +void di_downgrade_lock(struct dentry *d, int flags); +void di_write_lock(struct dentry *d, unsigned int lsc); +void di_write_unlock(struct dentry *d); +void di_write_lock2_child(struct dentry *d1, struct dentry *d2, int isdir); +void di_write_lock2_parent(struct dentry *d1, struct dentry *d2, int isdir); +void di_write_unlock2(struct dentry *d1, struct dentry *d2); + +struct dentry *au_h_dptr(struct dentry *dentry, aufs_bindex_t bindex); +struct dentry *au_h_d_alias(struct dentry *dentry, aufs_bindex_t bindex); +aufs_bindex_t au_dbtail(struct dentry *dentry); +aufs_bindex_t au_dbtaildir(struct dentry *dentry); + +void au_set_h_dptr(struct dentry *dentry, aufs_bindex_t bindex, + struct dentry *h_dentry); +int au_digen_test(struct dentry *dentry, unsigned int sigen); +int au_dbrange_test(struct dentry *dentry); +void au_update_digen(struct dentry *dentry); +void au_update_dbrange(struct dentry *dentry, int do_put_zero); +void au_update_dbtop(struct dentry *dentry); +void au_update_dbbot(struct dentry *dentry); +int au_find_dbindex(struct dentry *dentry, struct dentry *h_dentry); + +/* ---------------------------------------------------------------------- */ + +static inline struct au_dinfo *au_di(struct dentry *dentry) +{ + return dentry->d_fsdata; +} + +/* ---------------------------------------------------------------------- */ + +/* lock subclass for dinfo */ +enum { + AuLsc_DI_CHILD, /* child first */ + AuLsc_DI_CHILD2, /* rename(2), link(2), and cpup at hnotify */ + AuLsc_DI_CHILD3, /* copyup dirs */ + AuLsc_DI_PARENT, + AuLsc_DI_PARENT2, + AuLsc_DI_PARENT3, + AuLsc_DI_TMP /* temp for replacing dinfo */ +}; + +/* + * di_read_lock_child, di_write_lock_child, + * di_read_lock_child2, di_write_lock_child2, + * di_read_lock_child3, di_write_lock_child3, + * di_read_lock_parent, di_write_lock_parent, + * di_read_lock_parent2, di_write_lock_parent2, + * di_read_lock_parent3, di_write_lock_parent3, + */ +#define AuReadLockFunc(name, lsc) \ +static inline void di_read_lock_##name(struct dentry *d, int flags) \ +{ di_read_lock(d, flags, AuLsc_DI_##lsc); } + +#define AuWriteLockFunc(name, lsc) \ +static inline void di_write_lock_##name(struct dentry *d) \ +{ di_write_lock(d, AuLsc_DI_##lsc); } + +#define AuRWLockFuncs(name, lsc) \ + AuReadLockFunc(name, lsc) \ + AuWriteLockFunc(name, lsc) + +AuRWLockFuncs(child, CHILD); +AuRWLockFuncs(child2, CHILD2); +AuRWLockFuncs(child3, CHILD3); +AuRWLockFuncs(parent, PARENT); +AuRWLockFuncs(parent2, PARENT2); +AuRWLockFuncs(parent3, PARENT3); + +#undef AuReadLockFunc +#undef AuWriteLockFunc +#undef AuRWLockFuncs + +#define DiMustNoWaiters(d) AuRwMustNoWaiters(&au_di(d)->di_rwsem) +#define DiMustAnyLock(d) AuRwMustAnyLock(&au_di(d)->di_rwsem) +#define DiMustWriteLock(d) AuRwMustWriteLock(&au_di(d)->di_rwsem) + +/* ---------------------------------------------------------------------- */ + +/* todo: memory barrier? */ +static inline unsigned int au_digen(struct dentry *d) +{ + return atomic_read(&au_di(d)->di_generation); +} + +static inline void au_h_dentry_init(struct au_hdentry *hdentry) +{ + hdentry->hd_dentry = NULL; +} + +static inline struct au_hdentry *au_hdentry(struct au_dinfo *di, + aufs_bindex_t bindex) +{ + return di->di_hdentry + bindex; +} + +static inline void au_hdput(struct au_hdentry *hd) +{ + if (hd) + dput(hd->hd_dentry); +} + +static inline aufs_bindex_t au_dbtop(struct dentry *dentry) +{ + DiMustAnyLock(dentry); + return au_di(dentry)->di_btop; +} + +static inline aufs_bindex_t au_dbbot(struct dentry *dentry) +{ + DiMustAnyLock(dentry); + return au_di(dentry)->di_bbot; +} + +static inline aufs_bindex_t au_dbwh(struct dentry *dentry) +{ + DiMustAnyLock(dentry); + return au_di(dentry)->di_bwh; +} + +static inline aufs_bindex_t au_dbdiropq(struct dentry *dentry) +{ + DiMustAnyLock(dentry); + return au_di(dentry)->di_bdiropq; +} + +/* todo: hard/soft set? */ +static inline void au_set_dbtop(struct dentry *dentry, aufs_bindex_t bindex) +{ + DiMustWriteLock(dentry); + au_di(dentry)->di_btop = bindex; +} + +static inline void au_set_dbbot(struct dentry *dentry, aufs_bindex_t bindex) +{ + DiMustWriteLock(dentry); + au_di(dentry)->di_bbot = bindex; +} + +static inline void au_set_dbwh(struct dentry *dentry, aufs_bindex_t bindex) +{ + DiMustWriteLock(dentry); + /* dbwh can be outside of btop - bbot range */ + au_di(dentry)->di_bwh = bindex; +} + +static inline void au_set_dbdiropq(struct dentry *dentry, aufs_bindex_t bindex) +{ + DiMustWriteLock(dentry); + au_di(dentry)->di_bdiropq = bindex; +} + +/* ---------------------------------------------------------------------- */ + +#ifdef CONFIG_AUFS_HNOTIFY +static inline void au_digen_dec(struct dentry *d) +{ + atomic_dec(&au_di(d)->di_generation); +} + +static inline void au_hn_di_reinit(struct dentry *dentry) +{ + dentry->d_fsdata = NULL; +} +#else +AuStubVoid(au_hn_di_reinit, struct dentry *dentry __maybe_unused) +#endif /* CONFIG_AUFS_HNOTIFY */ + +#endif /* __KERNEL__ */ +#endif /* __AUFS_DENTRY_H__ */ --- linux-4.8.0.orig/fs/aufs/dinfo.c +++ linux-4.8.0/fs/aufs/dinfo.c @@ -0,0 +1,553 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * dentry private data + */ + +#include "aufs.h" + +void au_di_init_once(void *_dinfo) +{ + struct au_dinfo *dinfo = _dinfo; + + au_rw_init(&dinfo->di_rwsem); +} + +struct au_dinfo *au_di_alloc(struct super_block *sb, unsigned int lsc) +{ + struct au_dinfo *dinfo; + int nbr, i; + + dinfo = au_cache_alloc_dinfo(); + if (unlikely(!dinfo)) + goto out; + + nbr = au_sbbot(sb) + 1; + if (nbr <= 0) + nbr = 1; + dinfo->di_hdentry = kcalloc(nbr, sizeof(*dinfo->di_hdentry), GFP_NOFS); + if (dinfo->di_hdentry) { + au_rw_write_lock_nested(&dinfo->di_rwsem, lsc); + dinfo->di_btop = -1; + dinfo->di_bbot = -1; + dinfo->di_bwh = -1; + dinfo->di_bdiropq = -1; + dinfo->di_tmpfile = 0; + for (i = 0; i < nbr; i++) + dinfo->di_hdentry[i].hd_id = -1; + goto out; + } + + au_cache_dfree_dinfo(dinfo); + dinfo = NULL; + +out: + return dinfo; +} + +void au_di_free(struct au_dinfo *dinfo) +{ + struct au_hdentry *p; + aufs_bindex_t bbot, bindex; + + /* dentry may not be revalidated */ + bindex = dinfo->di_btop; + if (bindex >= 0) { + bbot = dinfo->di_bbot; + p = au_hdentry(dinfo, bindex); + while (bindex++ <= bbot) + au_hdput(p++); + } + au_delayed_kfree(dinfo->di_hdentry); + au_cache_dfree_dinfo(dinfo); +} + +void au_di_swap(struct au_dinfo *a, struct au_dinfo *b) +{ + struct au_hdentry *p; + aufs_bindex_t bi; + + AuRwMustWriteLock(&a->di_rwsem); + AuRwMustWriteLock(&b->di_rwsem); + +#define DiSwap(v, name) \ + do { \ + v = a->di_##name; \ + a->di_##name = b->di_##name; \ + b->di_##name = v; \ + } while (0) + + DiSwap(p, hdentry); + DiSwap(bi, btop); + DiSwap(bi, bbot); + DiSwap(bi, bwh); + DiSwap(bi, bdiropq); + /* smp_mb(); */ + +#undef DiSwap +} + +void au_di_cp(struct au_dinfo *dst, struct au_dinfo *src) +{ + AuRwMustWriteLock(&dst->di_rwsem); + AuRwMustWriteLock(&src->di_rwsem); + + dst->di_btop = src->di_btop; + dst->di_bbot = src->di_bbot; + dst->di_bwh = src->di_bwh; + dst->di_bdiropq = src->di_bdiropq; + /* smp_mb(); */ +} + +int au_di_init(struct dentry *dentry) +{ + int err; + struct super_block *sb; + struct au_dinfo *dinfo; + + err = 0; + sb = dentry->d_sb; + dinfo = au_di_alloc(sb, AuLsc_DI_CHILD); + if (dinfo) { + atomic_set(&dinfo->di_generation, au_sigen(sb)); + /* smp_mb(); */ /* atomic_set */ + dentry->d_fsdata = dinfo; + } else + err = -ENOMEM; + + return err; +} + +void au_di_fin(struct dentry *dentry) +{ + struct au_dinfo *dinfo; + + dinfo = au_di(dentry); + AuRwDestroy(&dinfo->di_rwsem); + au_di_free(dinfo); +} + +int au_di_realloc(struct au_dinfo *dinfo, int nbr, int may_shrink) +{ + int err, sz; + struct au_hdentry *hdp; + + AuRwMustWriteLock(&dinfo->di_rwsem); + + err = -ENOMEM; + sz = sizeof(*hdp) * (dinfo->di_bbot + 1); + if (!sz) + sz = sizeof(*hdp); + hdp = au_kzrealloc(dinfo->di_hdentry, sz, sizeof(*hdp) * nbr, GFP_NOFS, + may_shrink); + if (hdp) { + dinfo->di_hdentry = hdp; + err = 0; + } + + return err; +} + +/* ---------------------------------------------------------------------- */ + +static void do_ii_write_lock(struct inode *inode, unsigned int lsc) +{ + switch (lsc) { + case AuLsc_DI_CHILD: + ii_write_lock_child(inode); + break; + case AuLsc_DI_CHILD2: + ii_write_lock_child2(inode); + break; + case AuLsc_DI_CHILD3: + ii_write_lock_child3(inode); + break; + case AuLsc_DI_PARENT: + ii_write_lock_parent(inode); + break; + case AuLsc_DI_PARENT2: + ii_write_lock_parent2(inode); + break; + case AuLsc_DI_PARENT3: + ii_write_lock_parent3(inode); + break; + default: + BUG(); + } +} + +static void do_ii_read_lock(struct inode *inode, unsigned int lsc) +{ + switch (lsc) { + case AuLsc_DI_CHILD: + ii_read_lock_child(inode); + break; + case AuLsc_DI_CHILD2: + ii_read_lock_child2(inode); + break; + case AuLsc_DI_CHILD3: + ii_read_lock_child3(inode); + break; + case AuLsc_DI_PARENT: + ii_read_lock_parent(inode); + break; + case AuLsc_DI_PARENT2: + ii_read_lock_parent2(inode); + break; + case AuLsc_DI_PARENT3: + ii_read_lock_parent3(inode); + break; + default: + BUG(); + } +} + +void di_read_lock(struct dentry *d, int flags, unsigned int lsc) +{ + struct inode *inode; + + au_rw_read_lock_nested(&au_di(d)->di_rwsem, lsc); + if (d_really_is_positive(d)) { + inode = d_inode(d); + if (au_ftest_lock(flags, IW)) + do_ii_write_lock(inode, lsc); + else if (au_ftest_lock(flags, IR)) + do_ii_read_lock(inode, lsc); + } +} + +void di_read_unlock(struct dentry *d, int flags) +{ + struct inode *inode; + + if (d_really_is_positive(d)) { + inode = d_inode(d); + if (au_ftest_lock(flags, IW)) { + au_dbg_verify_dinode(d); + ii_write_unlock(inode); + } else if (au_ftest_lock(flags, IR)) { + au_dbg_verify_dinode(d); + ii_read_unlock(inode); + } + } + au_rw_read_unlock(&au_di(d)->di_rwsem); +} + +void di_downgrade_lock(struct dentry *d, int flags) +{ + if (d_really_is_positive(d) && au_ftest_lock(flags, IR)) + ii_downgrade_lock(d_inode(d)); + au_rw_dgrade_lock(&au_di(d)->di_rwsem); +} + +void di_write_lock(struct dentry *d, unsigned int lsc) +{ + au_rw_write_lock_nested(&au_di(d)->di_rwsem, lsc); + if (d_really_is_positive(d)) + do_ii_write_lock(d_inode(d), lsc); +} + +void di_write_unlock(struct dentry *d) +{ + au_dbg_verify_dinode(d); + if (d_really_is_positive(d)) + ii_write_unlock(d_inode(d)); + au_rw_write_unlock(&au_di(d)->di_rwsem); +} + +void di_write_lock2_child(struct dentry *d1, struct dentry *d2, int isdir) +{ + AuDebugOn(d1 == d2 + || d_inode(d1) == d_inode(d2) + || d1->d_sb != d2->d_sb); + + if (isdir && au_test_subdir(d1, d2)) { + di_write_lock_child(d1); + di_write_lock_child2(d2); + } else { + /* there should be no races */ + di_write_lock_child(d2); + di_write_lock_child2(d1); + } +} + +void di_write_lock2_parent(struct dentry *d1, struct dentry *d2, int isdir) +{ + AuDebugOn(d1 == d2 + || d_inode(d1) == d_inode(d2) + || d1->d_sb != d2->d_sb); + + if (isdir && au_test_subdir(d1, d2)) { + di_write_lock_parent(d1); + di_write_lock_parent2(d2); + } else { + /* there should be no races */ + di_write_lock_parent(d2); + di_write_lock_parent2(d1); + } +} + +void di_write_unlock2(struct dentry *d1, struct dentry *d2) +{ + di_write_unlock(d1); + if (d_inode(d1) == d_inode(d2)) + au_rw_write_unlock(&au_di(d2)->di_rwsem); + else + di_write_unlock(d2); +} + +/* ---------------------------------------------------------------------- */ + +struct dentry *au_h_dptr(struct dentry *dentry, aufs_bindex_t bindex) +{ + struct dentry *d; + + DiMustAnyLock(dentry); + + if (au_dbtop(dentry) < 0 || bindex < au_dbtop(dentry)) + return NULL; + AuDebugOn(bindex < 0); + d = au_hdentry(au_di(dentry), bindex)->hd_dentry; + AuDebugOn(d && au_dcount(d) <= 0); + return d; +} + +/* + * extended version of au_h_dptr(). + * returns a hashed and positive (or linkable) h_dentry in bindex, NULL, or + * error. + */ +struct dentry *au_h_d_alias(struct dentry *dentry, aufs_bindex_t bindex) +{ + struct dentry *h_dentry; + struct inode *inode, *h_inode; + + AuDebugOn(d_really_is_negative(dentry)); + + h_dentry = NULL; + if (au_dbtop(dentry) <= bindex + && bindex <= au_dbbot(dentry)) + h_dentry = au_h_dptr(dentry, bindex); + if (h_dentry && !au_d_linkable(h_dentry)) { + dget(h_dentry); + goto out; /* success */ + } + + inode = d_inode(dentry); + AuDebugOn(bindex < au_ibtop(inode)); + AuDebugOn(au_ibbot(inode) < bindex); + h_inode = au_h_iptr(inode, bindex); + h_dentry = d_find_alias(h_inode); + if (h_dentry) { + if (!IS_ERR(h_dentry)) { + if (!au_d_linkable(h_dentry)) + goto out; /* success */ + dput(h_dentry); + } else + goto out; + } + + if (au_opt_test(au_mntflags(dentry->d_sb), PLINK)) { + h_dentry = au_plink_lkup(inode, bindex); + AuDebugOn(!h_dentry); + if (!IS_ERR(h_dentry)) { + if (!au_d_hashed_positive(h_dentry)) + goto out; /* success */ + dput(h_dentry); + h_dentry = NULL; + } + } + +out: + AuDbgDentry(h_dentry); + return h_dentry; +} + +aufs_bindex_t au_dbtail(struct dentry *dentry) +{ + aufs_bindex_t bbot, bwh; + + bbot = au_dbbot(dentry); + if (0 <= bbot) { + bwh = au_dbwh(dentry); + if (!bwh) + return bwh; + if (0 < bwh && bwh < bbot) + return bwh - 1; + } + return bbot; +} + +aufs_bindex_t au_dbtaildir(struct dentry *dentry) +{ + aufs_bindex_t bbot, bopq; + + bbot = au_dbtail(dentry); + if (0 <= bbot) { + bopq = au_dbdiropq(dentry); + if (0 <= bopq && bopq < bbot) + bbot = bopq; + } + return bbot; +} + +/* ---------------------------------------------------------------------- */ + +void au_set_h_dptr(struct dentry *dentry, aufs_bindex_t bindex, + struct dentry *h_dentry) +{ + struct au_dinfo *dinfo; + struct au_hdentry *hd; + struct au_branch *br; + + DiMustWriteLock(dentry); + + dinfo = au_di(dentry); + hd = au_hdentry(dinfo, bindex); + au_hdput(hd); + hd->hd_dentry = h_dentry; + if (h_dentry) { + br = au_sbr(dentry->d_sb, bindex); + hd->hd_id = br->br_id; + } +} + +int au_dbrange_test(struct dentry *dentry) +{ + int err; + aufs_bindex_t btop, bbot; + + err = 0; + btop = au_dbtop(dentry); + bbot = au_dbbot(dentry); + if (btop >= 0) + AuDebugOn(bbot < 0 && btop > bbot); + else { + err = -EIO; + AuDebugOn(bbot >= 0); + } + + return err; +} + +int au_digen_test(struct dentry *dentry, unsigned int sigen) +{ + int err; + + err = 0; + if (unlikely(au_digen(dentry) != sigen + || au_iigen_test(d_inode(dentry), sigen))) + err = -EIO; + + return err; +} + +void au_update_digen(struct dentry *dentry) +{ + atomic_set(&au_di(dentry)->di_generation, au_sigen(dentry->d_sb)); + /* smp_mb(); */ /* atomic_set */ +} + +void au_update_dbrange(struct dentry *dentry, int do_put_zero) +{ + struct au_dinfo *dinfo; + struct dentry *h_d; + struct au_hdentry *hdp; + aufs_bindex_t bindex, bbot; + + DiMustWriteLock(dentry); + + dinfo = au_di(dentry); + if (!dinfo || dinfo->di_btop < 0) + return; + + if (do_put_zero) { + bbot = dinfo->di_bbot; + bindex = dinfo->di_btop; + hdp = au_hdentry(dinfo, bindex); + for (; bindex <= bbot; bindex++, hdp++) { + h_d = hdp->hd_dentry; + if (h_d && d_is_negative(h_d)) + au_set_h_dptr(dentry, bindex, NULL); + } + } + + dinfo->di_btop = 0; + hdp = au_hdentry(dinfo, dinfo->di_btop); + for (; dinfo->di_btop <= dinfo->di_bbot; dinfo->di_btop++, hdp++) + if (hdp->hd_dentry) + break; + if (dinfo->di_btop > dinfo->di_bbot) { + dinfo->di_btop = -1; + dinfo->di_bbot = -1; + return; + } + + hdp = au_hdentry(dinfo, dinfo->di_bbot); + for (; dinfo->di_bbot >= 0; dinfo->di_bbot--, hdp--) + if (hdp->hd_dentry) + break; + AuDebugOn(dinfo->di_btop > dinfo->di_bbot || dinfo->di_bbot < 0); +} + +void au_update_dbtop(struct dentry *dentry) +{ + aufs_bindex_t bindex, bbot; + struct dentry *h_dentry; + + bbot = au_dbbot(dentry); + for (bindex = au_dbtop(dentry); bindex <= bbot; bindex++) { + h_dentry = au_h_dptr(dentry, bindex); + if (!h_dentry) + continue; + if (d_is_positive(h_dentry)) { + au_set_dbtop(dentry, bindex); + return; + } + au_set_h_dptr(dentry, bindex, NULL); + } +} + +void au_update_dbbot(struct dentry *dentry) +{ + aufs_bindex_t bindex, btop; + struct dentry *h_dentry; + + btop = au_dbtop(dentry); + for (bindex = au_dbbot(dentry); bindex >= btop; bindex--) { + h_dentry = au_h_dptr(dentry, bindex); + if (!h_dentry) + continue; + if (d_is_positive(h_dentry)) { + au_set_dbbot(dentry, bindex); + return; + } + au_set_h_dptr(dentry, bindex, NULL); + } +} + +int au_find_dbindex(struct dentry *dentry, struct dentry *h_dentry) +{ + aufs_bindex_t bindex, bbot; + + bbot = au_dbbot(dentry); + for (bindex = au_dbtop(dentry); bindex <= bbot; bindex++) + if (au_h_dptr(dentry, bindex) == h_dentry) + return bindex; + return -1; +} --- linux-4.8.0.orig/fs/aufs/dir.c +++ linux-4.8.0/fs/aufs/dir.c @@ -0,0 +1,762 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * directory operations + */ + +#include +#include "aufs.h" + +void au_add_nlink(struct inode *dir, struct inode *h_dir) +{ + unsigned int nlink; + + AuDebugOn(!S_ISDIR(dir->i_mode) || !S_ISDIR(h_dir->i_mode)); + + nlink = dir->i_nlink; + nlink += h_dir->i_nlink - 2; + if (h_dir->i_nlink < 2) + nlink += 2; + smp_mb(); /* for i_nlink */ + /* 0 can happen in revaliding */ + set_nlink(dir, nlink); +} + +void au_sub_nlink(struct inode *dir, struct inode *h_dir) +{ + unsigned int nlink; + + AuDebugOn(!S_ISDIR(dir->i_mode) || !S_ISDIR(h_dir->i_mode)); + + nlink = dir->i_nlink; + nlink -= h_dir->i_nlink - 2; + if (h_dir->i_nlink < 2) + nlink -= 2; + smp_mb(); /* for i_nlink */ + /* nlink == 0 means the branch-fs is broken */ + set_nlink(dir, nlink); +} + +loff_t au_dir_size(struct file *file, struct dentry *dentry) +{ + loff_t sz; + aufs_bindex_t bindex, bbot; + struct file *h_file; + struct dentry *h_dentry; + + sz = 0; + if (file) { + AuDebugOn(!d_is_dir(file->f_path.dentry)); + + bbot = au_fbbot_dir(file); + for (bindex = au_fbtop(file); + bindex <= bbot && sz < KMALLOC_MAX_SIZE; + bindex++) { + h_file = au_hf_dir(file, bindex); + if (h_file && file_inode(h_file)) + sz += vfsub_f_size_read(h_file); + } + } else { + AuDebugOn(!dentry); + AuDebugOn(!d_is_dir(dentry)); + + bbot = au_dbtaildir(dentry); + for (bindex = au_dbtop(dentry); + bindex <= bbot && sz < KMALLOC_MAX_SIZE; + bindex++) { + h_dentry = au_h_dptr(dentry, bindex); + if (h_dentry && d_is_positive(h_dentry)) + sz += i_size_read(d_inode(h_dentry)); + } + } + if (sz < KMALLOC_MAX_SIZE) + sz = roundup_pow_of_two(sz); + if (sz > KMALLOC_MAX_SIZE) + sz = KMALLOC_MAX_SIZE; + else if (sz < NAME_MAX) { + BUILD_BUG_ON(AUFS_RDBLK_DEF < NAME_MAX); + sz = AUFS_RDBLK_DEF; + } + return sz; +} + +struct au_dir_ts_arg { + struct dentry *dentry; + aufs_bindex_t brid; +}; + +static void au_do_dir_ts(void *arg) +{ + struct au_dir_ts_arg *a = arg; + struct au_dtime dt; + struct path h_path; + struct inode *dir, *h_dir; + struct super_block *sb; + struct au_branch *br; + struct au_hinode *hdir; + int err; + aufs_bindex_t btop, bindex; + + sb = a->dentry->d_sb; + if (d_really_is_negative(a->dentry)) + goto out; + /* no dir->i_mutex lock */ + aufs_read_lock(a->dentry, AuLock_DW); /* noflush */ + + dir = d_inode(a->dentry); + btop = au_ibtop(dir); + bindex = au_br_index(sb, a->brid); + if (bindex < btop) + goto out_unlock; + + br = au_sbr(sb, bindex); + h_path.dentry = au_h_dptr(a->dentry, bindex); + if (!h_path.dentry) + goto out_unlock; + h_path.mnt = au_br_mnt(br); + au_dtime_store(&dt, a->dentry, &h_path); + + br = au_sbr(sb, btop); + if (!au_br_writable(br->br_perm)) + goto out_unlock; + h_path.dentry = au_h_dptr(a->dentry, btop); + h_path.mnt = au_br_mnt(br); + err = vfsub_mnt_want_write(h_path.mnt); + if (err) + goto out_unlock; + hdir = au_hi(dir, btop); + au_hn_inode_lock_nested(hdir, AuLsc_I_PARENT); + h_dir = au_h_iptr(dir, btop); + if (h_dir->i_nlink + && timespec_compare(&h_dir->i_mtime, &dt.dt_mtime) < 0) { + dt.dt_h_path = h_path; + au_dtime_revert(&dt); + } + au_hn_inode_unlock(hdir); + vfsub_mnt_drop_write(h_path.mnt); + au_cpup_attr_timesizes(dir); + +out_unlock: + aufs_read_unlock(a->dentry, AuLock_DW); +out: + dput(a->dentry); + au_nwt_done(&au_sbi(sb)->si_nowait); + au_delayed_kfree(arg); +} + +void au_dir_ts(struct inode *dir, aufs_bindex_t bindex) +{ + int perm, wkq_err; + aufs_bindex_t btop; + struct au_dir_ts_arg *arg; + struct dentry *dentry; + struct super_block *sb; + + IMustLock(dir); + + dentry = d_find_any_alias(dir); + AuDebugOn(!dentry); + sb = dentry->d_sb; + btop = au_ibtop(dir); + if (btop == bindex) { + au_cpup_attr_timesizes(dir); + goto out; + } + + perm = au_sbr_perm(sb, btop); + if (!au_br_writable(perm)) + goto out; + + arg = kmalloc(sizeof(*arg), GFP_NOFS); + if (!arg) + goto out; + + arg->dentry = dget(dentry); /* will be dput-ted by au_do_dir_ts() */ + arg->brid = au_sbr_id(sb, bindex); + wkq_err = au_wkq_nowait(au_do_dir_ts, arg, sb, /*flags*/0); + if (unlikely(wkq_err)) { + pr_err("wkq %d\n", wkq_err); + dput(dentry); + au_delayed_kfree(arg); + } + +out: + dput(dentry); +} + +/* ---------------------------------------------------------------------- */ + +static int reopen_dir(struct file *file) +{ + int err; + unsigned int flags; + aufs_bindex_t bindex, btail, btop; + struct dentry *dentry, *h_dentry; + struct file *h_file; + + /* open all lower dirs */ + dentry = file->f_path.dentry; + btop = au_dbtop(dentry); + for (bindex = au_fbtop(file); bindex < btop; bindex++) + au_set_h_fptr(file, bindex, NULL); + au_set_fbtop(file, btop); + + btail = au_dbtaildir(dentry); + for (bindex = au_fbbot_dir(file); btail < bindex; bindex--) + au_set_h_fptr(file, bindex, NULL); + au_set_fbbot_dir(file, btail); + + flags = vfsub_file_flags(file); + for (bindex = btop; bindex <= btail; bindex++) { + h_dentry = au_h_dptr(dentry, bindex); + if (!h_dentry) + continue; + h_file = au_hf_dir(file, bindex); + if (h_file) + continue; + + h_file = au_h_open(dentry, bindex, flags, file, /*force_wr*/0); + err = PTR_ERR(h_file); + if (IS_ERR(h_file)) + goto out; /* close all? */ + au_set_h_fptr(file, bindex, h_file); + } + au_update_figen(file); + /* todo: necessary? */ + /* file->f_ra = h_file->f_ra; */ + err = 0; + +out: + return err; +} + +static int do_open_dir(struct file *file, int flags, struct file *h_file) +{ + int err; + aufs_bindex_t bindex, btail; + struct dentry *dentry, *h_dentry; + struct vfsmount *mnt; + + FiMustWriteLock(file); + AuDebugOn(h_file); + + err = 0; + mnt = file->f_path.mnt; + dentry = file->f_path.dentry; + file->f_version = d_inode(dentry)->i_version; + bindex = au_dbtop(dentry); + au_set_fbtop(file, bindex); + btail = au_dbtaildir(dentry); + au_set_fbbot_dir(file, btail); + for (; !err && bindex <= btail; bindex++) { + h_dentry = au_h_dptr(dentry, bindex); + if (!h_dentry) + continue; + + err = vfsub_test_mntns(mnt, h_dentry->d_sb); + if (unlikely(err)) + break; + h_file = au_h_open(dentry, bindex, flags, file, /*force_wr*/0); + if (IS_ERR(h_file)) { + err = PTR_ERR(h_file); + break; + } + au_set_h_fptr(file, bindex, h_file); + } + au_update_figen(file); + /* todo: necessary? */ + /* file->f_ra = h_file->f_ra; */ + if (!err) + return 0; /* success */ + + /* close all */ + for (bindex = au_fbtop(file); bindex <= btail; bindex++) + au_set_h_fptr(file, bindex, NULL); + au_set_fbtop(file, -1); + au_set_fbbot_dir(file, -1); + + return err; +} + +static int aufs_open_dir(struct inode *inode __maybe_unused, + struct file *file) +{ + int err; + struct super_block *sb; + struct au_fidir *fidir; + + err = -ENOMEM; + sb = file->f_path.dentry->d_sb; + si_read_lock(sb, AuLock_FLUSH); + fidir = au_fidir_alloc(sb); + if (fidir) { + struct au_do_open_args args = { + .open = do_open_dir, + .fidir = fidir + }; + err = au_do_open(file, &args); + if (unlikely(err)) + au_delayed_kfree(fidir); + } + si_read_unlock(sb); + return err; +} + +static int aufs_release_dir(struct inode *inode __maybe_unused, + struct file *file) +{ + struct au_vdir *vdir_cache; + struct au_finfo *finfo; + struct au_fidir *fidir; + struct au_hfile *hf; + aufs_bindex_t bindex, bbot; + int execed, delayed; + + delayed = (current->flags & PF_KTHREAD) || in_interrupt(); + finfo = au_fi(file); + fidir = finfo->fi_hdir; + if (fidir) { + au_sphl_del(&finfo->fi_hlist, + &au_sbi(file->f_path.dentry->d_sb)->si_files); + vdir_cache = fidir->fd_vdir_cache; /* lock-free */ + if (vdir_cache) + au_vdir_free(vdir_cache, delayed); + + bindex = finfo->fi_btop; + if (bindex >= 0) { + execed = vfsub_file_execed(file); + hf = fidir->fd_hfile + bindex; + /* + * calls fput() instead of filp_close(), + * since no dnotify or lock for the lower file. + */ + bbot = fidir->fd_bbot; + for (; bindex <= bbot; bindex++, hf++) + if (hf->hf_file) + au_hfput(hf, execed); + } + au_delayed_kfree(fidir); + finfo->fi_hdir = NULL; + } + au_finfo_fin(file, delayed); + return 0; +} + +/* ---------------------------------------------------------------------- */ + +static int au_do_flush_dir(struct file *file, fl_owner_t id) +{ + int err; + aufs_bindex_t bindex, bbot; + struct file *h_file; + + err = 0; + bbot = au_fbbot_dir(file); + for (bindex = au_fbtop(file); !err && bindex <= bbot; bindex++) { + h_file = au_hf_dir(file, bindex); + if (h_file) + err = vfsub_flush(h_file, id); + } + return err; +} + +static int aufs_flush_dir(struct file *file, fl_owner_t id) +{ + return au_do_flush(file, id, au_do_flush_dir); +} + +/* ---------------------------------------------------------------------- */ + +static int au_do_fsync_dir_no_file(struct dentry *dentry, int datasync) +{ + int err; + aufs_bindex_t bbot, bindex; + struct inode *inode; + struct super_block *sb; + + err = 0; + sb = dentry->d_sb; + inode = d_inode(dentry); + IMustLock(inode); + bbot = au_dbbot(dentry); + for (bindex = au_dbtop(dentry); !err && bindex <= bbot; bindex++) { + struct path h_path; + + if (au_test_ro(sb, bindex, inode)) + continue; + h_path.dentry = au_h_dptr(dentry, bindex); + if (!h_path.dentry) + continue; + + h_path.mnt = au_sbr_mnt(sb, bindex); + err = vfsub_fsync(NULL, &h_path, datasync); + } + + return err; +} + +static int au_do_fsync_dir(struct file *file, int datasync) +{ + int err; + aufs_bindex_t bbot, bindex; + struct file *h_file; + struct super_block *sb; + struct inode *inode; + + err = au_reval_and_lock_fdi(file, reopen_dir, /*wlock*/1); + if (unlikely(err)) + goto out; + + inode = file_inode(file); + sb = inode->i_sb; + bbot = au_fbbot_dir(file); + for (bindex = au_fbtop(file); !err && bindex <= bbot; bindex++) { + h_file = au_hf_dir(file, bindex); + if (!h_file || au_test_ro(sb, bindex, inode)) + continue; + + err = vfsub_fsync(h_file, &h_file->f_path, datasync); + } + +out: + return err; +} + +/* + * @file may be NULL + */ +static int aufs_fsync_dir(struct file *file, loff_t start, loff_t end, + int datasync) +{ + int err; + struct dentry *dentry; + struct inode *inode; + struct super_block *sb; + + err = 0; + dentry = file->f_path.dentry; + inode = d_inode(dentry); + inode_lock(inode); + sb = dentry->d_sb; + si_noflush_read_lock(sb); + if (file) + err = au_do_fsync_dir(file, datasync); + else { + di_write_lock_child(dentry); + err = au_do_fsync_dir_no_file(dentry, datasync); + } + au_cpup_attr_timesizes(inode); + di_write_unlock(dentry); + if (file) + fi_write_unlock(file); + + si_read_unlock(sb); + inode_unlock(inode); + return err; +} + +/* ---------------------------------------------------------------------- */ + +static int aufs_iterate_shared(struct file *file, struct dir_context *ctx) +{ + int err; + struct dentry *dentry; + struct inode *inode, *h_inode; + struct super_block *sb; + + AuDbg("%pD, ctx{%pf, %llu}\n", file, ctx->actor, ctx->pos); + + dentry = file->f_path.dentry; + inode = d_inode(dentry); + IMustLock(inode); + + sb = dentry->d_sb; + si_read_lock(sb, AuLock_FLUSH); + err = au_reval_and_lock_fdi(file, reopen_dir, /*wlock*/1); + if (unlikely(err)) + goto out; + err = au_alive_dir(dentry); + if (!err) + err = au_vdir_init(file); + di_downgrade_lock(dentry, AuLock_IR); + if (unlikely(err)) + goto out_unlock; + + h_inode = au_h_iptr(inode, au_ibtop(inode)); + if (!au_test_nfsd()) { + err = au_vdir_fill_de(file, ctx); + fsstack_copy_attr_atime(inode, h_inode); + } else { + /* + * nfsd filldir may call lookup_one_len(), vfs_getattr(), + * encode_fh() and others. + */ + atomic_inc(&h_inode->i_count); + di_read_unlock(dentry, AuLock_IR); + si_read_unlock(sb); + err = au_vdir_fill_de(file, ctx); + fsstack_copy_attr_atime(inode, h_inode); + fi_write_unlock(file); + iput(h_inode); + + AuTraceErr(err); + return err; + } + +out_unlock: + di_read_unlock(dentry, AuLock_IR); + fi_write_unlock(file); +out: + si_read_unlock(sb); + return err; +} + +/* ---------------------------------------------------------------------- */ + +#define AuTestEmpty_WHONLY 1 +#define AuTestEmpty_CALLED (1 << 1) +#define AuTestEmpty_SHWH (1 << 2) +#define au_ftest_testempty(flags, name) ((flags) & AuTestEmpty_##name) +#define au_fset_testempty(flags, name) \ + do { (flags) |= AuTestEmpty_##name; } while (0) +#define au_fclr_testempty(flags, name) \ + do { (flags) &= ~AuTestEmpty_##name; } while (0) + +#ifndef CONFIG_AUFS_SHWH +#undef AuTestEmpty_SHWH +#define AuTestEmpty_SHWH 0 +#endif + +struct test_empty_arg { + struct dir_context ctx; + struct au_nhash *whlist; + unsigned int flags; + int err; + aufs_bindex_t bindex; +}; + +static int test_empty_cb(struct dir_context *ctx, const char *__name, + int namelen, loff_t offset __maybe_unused, u64 ino, + unsigned int d_type) +{ + struct test_empty_arg *arg = container_of(ctx, struct test_empty_arg, + ctx); + char *name = (void *)__name; + + arg->err = 0; + au_fset_testempty(arg->flags, CALLED); + /* smp_mb(); */ + if (name[0] == '.' + && (namelen == 1 || (name[1] == '.' && namelen == 2))) + goto out; /* success */ + + if (namelen <= AUFS_WH_PFX_LEN + || memcmp(name, AUFS_WH_PFX, AUFS_WH_PFX_LEN)) { + if (au_ftest_testempty(arg->flags, WHONLY) + && !au_nhash_test_known_wh(arg->whlist, name, namelen)) + arg->err = -ENOTEMPTY; + goto out; + } + + name += AUFS_WH_PFX_LEN; + namelen -= AUFS_WH_PFX_LEN; + if (!au_nhash_test_known_wh(arg->whlist, name, namelen)) + arg->err = au_nhash_append_wh + (arg->whlist, name, namelen, ino, d_type, arg->bindex, + au_ftest_testempty(arg->flags, SHWH)); + +out: + /* smp_mb(); */ + AuTraceErr(arg->err); + return arg->err; +} + +static int do_test_empty(struct dentry *dentry, struct test_empty_arg *arg) +{ + int err; + struct file *h_file; + + h_file = au_h_open(dentry, arg->bindex, + O_RDONLY | O_NONBLOCK | O_DIRECTORY | O_LARGEFILE, + /*file*/NULL, /*force_wr*/0); + err = PTR_ERR(h_file); + if (IS_ERR(h_file)) + goto out; + + err = 0; + if (!au_opt_test(au_mntflags(dentry->d_sb), UDBA_NONE) + && !file_inode(h_file)->i_nlink) + goto out_put; + + do { + arg->err = 0; + au_fclr_testempty(arg->flags, CALLED); + /* smp_mb(); */ + err = vfsub_iterate_dir(h_file, &arg->ctx); + if (err >= 0) + err = arg->err; + } while (!err && au_ftest_testempty(arg->flags, CALLED)); + +out_put: + fput(h_file); + au_sbr_put(dentry->d_sb, arg->bindex); +out: + return err; +} + +struct do_test_empty_args { + int *errp; + struct dentry *dentry; + struct test_empty_arg *arg; +}; + +static void call_do_test_empty(void *args) +{ + struct do_test_empty_args *a = args; + *a->errp = do_test_empty(a->dentry, a->arg); +} + +static int sio_test_empty(struct dentry *dentry, struct test_empty_arg *arg) +{ + int err, wkq_err; + struct dentry *h_dentry; + struct inode *h_inode; + + h_dentry = au_h_dptr(dentry, arg->bindex); + h_inode = d_inode(h_dentry); + /* todo: i_mode changes anytime? */ + inode_lock_nested(h_inode, AuLsc_I_CHILD); + err = au_test_h_perm_sio(h_inode, MAY_EXEC | MAY_READ); + inode_unlock(h_inode); + if (!err) + err = do_test_empty(dentry, arg); + else { + struct do_test_empty_args args = { + .errp = &err, + .dentry = dentry, + .arg = arg + }; + unsigned int flags = arg->flags; + + wkq_err = au_wkq_wait(call_do_test_empty, &args); + if (unlikely(wkq_err)) + err = wkq_err; + arg->flags = flags; + } + + return err; +} + +int au_test_empty_lower(struct dentry *dentry) +{ + int err; + unsigned int rdhash; + aufs_bindex_t bindex, btop, btail; + struct au_nhash whlist; + struct test_empty_arg arg = { + .ctx = { + .actor = test_empty_cb + } + }; + int (*test_empty)(struct dentry *dentry, struct test_empty_arg *arg); + + SiMustAnyLock(dentry->d_sb); + + rdhash = au_sbi(dentry->d_sb)->si_rdhash; + if (!rdhash) + rdhash = au_rdhash_est(au_dir_size(/*file*/NULL, dentry)); + err = au_nhash_alloc(&whlist, rdhash, GFP_NOFS); + if (unlikely(err)) + goto out; + + arg.flags = 0; + arg.whlist = &whlist; + btop = au_dbtop(dentry); + if (au_opt_test(au_mntflags(dentry->d_sb), SHWH)) + au_fset_testempty(arg.flags, SHWH); + test_empty = do_test_empty; + if (au_opt_test(au_mntflags(dentry->d_sb), DIRPERM1)) + test_empty = sio_test_empty; + arg.bindex = btop; + err = test_empty(dentry, &arg); + if (unlikely(err)) + goto out_whlist; + + au_fset_testempty(arg.flags, WHONLY); + btail = au_dbtaildir(dentry); + for (bindex = btop + 1; !err && bindex <= btail; bindex++) { + struct dentry *h_dentry; + + h_dentry = au_h_dptr(dentry, bindex); + if (h_dentry && d_is_positive(h_dentry)) { + arg.bindex = bindex; + err = test_empty(dentry, &arg); + } + } + +out_whlist: + au_nhash_wh_free(&whlist); +out: + return err; +} + +int au_test_empty(struct dentry *dentry, struct au_nhash *whlist) +{ + int err; + struct test_empty_arg arg = { + .ctx = { + .actor = test_empty_cb + } + }; + aufs_bindex_t bindex, btail; + + err = 0; + arg.whlist = whlist; + arg.flags = AuTestEmpty_WHONLY; + if (au_opt_test(au_mntflags(dentry->d_sb), SHWH)) + au_fset_testempty(arg.flags, SHWH); + btail = au_dbtaildir(dentry); + for (bindex = au_dbtop(dentry); !err && bindex <= btail; bindex++) { + struct dentry *h_dentry; + + h_dentry = au_h_dptr(dentry, bindex); + if (h_dentry && d_is_positive(h_dentry)) { + arg.bindex = bindex; + err = sio_test_empty(dentry, &arg); + } + } + + return err; +} + +/* ---------------------------------------------------------------------- */ + +const struct file_operations aufs_dir_fop = { + .owner = THIS_MODULE, + .llseek = default_llseek, + .read = generic_read_dir, + .iterate_shared = aufs_iterate_shared, + .unlocked_ioctl = aufs_ioctl_dir, +#ifdef CONFIG_COMPAT + .compat_ioctl = aufs_compat_ioctl_dir, +#endif + .open = aufs_open_dir, + .release = aufs_release_dir, + .flush = aufs_flush_dir, + .fsync = aufs_fsync_dir +}; --- linux-4.8.0.orig/fs/aufs/dir.h +++ linux-4.8.0/fs/aufs/dir.h @@ -0,0 +1,137 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * directory operations + */ + +#ifndef __AUFS_DIR_H__ +#define __AUFS_DIR_H__ + +#ifdef __KERNEL__ + +#include + +/* ---------------------------------------------------------------------- */ + +/* need to be faster and smaller */ + +struct au_nhash { + unsigned int nh_num; + struct hlist_head *nh_head; +}; + +struct au_vdir_destr { + unsigned char len; + unsigned char name[0]; +} __packed; + +struct au_vdir_dehstr { + struct hlist_node hash; + union { + struct au_vdir_destr *str; + struct llist_node lnode; /* delayed free */ + }; +} ____cacheline_aligned_in_smp; + +struct au_vdir_de { + ino_t de_ino; + unsigned char de_type; + /* caution: packed */ + struct au_vdir_destr de_str; +} __packed; + +struct au_vdir_wh { + struct hlist_node wh_hash; +#ifdef CONFIG_AUFS_SHWH + ino_t wh_ino; + aufs_bindex_t wh_bindex; + unsigned char wh_type; +#else + aufs_bindex_t wh_bindex; +#endif + /* caution: packed */ + struct au_vdir_destr wh_str; +} __packed; + +union au_vdir_deblk_p { + unsigned char *deblk; + struct au_vdir_de *de; +}; + +struct au_vdir { + unsigned char **vd_deblk; + unsigned long vd_nblk; + struct { + unsigned long ul; + union au_vdir_deblk_p p; + } vd_last; + + unsigned long vd_version; + unsigned int vd_deblk_sz; + union { + unsigned long vd_jiffy; + struct llist_node vd_lnode; /* delayed free */ + }; +} ____cacheline_aligned_in_smp; + +/* ---------------------------------------------------------------------- */ + +/* dir.c */ +extern const struct file_operations aufs_dir_fop; +void au_add_nlink(struct inode *dir, struct inode *h_dir); +void au_sub_nlink(struct inode *dir, struct inode *h_dir); +loff_t au_dir_size(struct file *file, struct dentry *dentry); +void au_dir_ts(struct inode *dir, aufs_bindex_t bsrc); +int au_test_empty_lower(struct dentry *dentry); +int au_test_empty(struct dentry *dentry, struct au_nhash *whlist); + +/* vdir.c */ +unsigned int au_rdhash_est(loff_t sz); +int au_nhash_alloc(struct au_nhash *nhash, unsigned int num_hash, gfp_t gfp); +void au_nhash_wh_free(struct au_nhash *whlist); +int au_nhash_test_longer_wh(struct au_nhash *whlist, aufs_bindex_t btgt, + int limit); +int au_nhash_test_known_wh(struct au_nhash *whlist, char *name, int nlen); +int au_nhash_append_wh(struct au_nhash *whlist, char *name, int nlen, ino_t ino, + unsigned int d_type, aufs_bindex_t bindex, + unsigned char shwh); +void au_vdir_free(struct au_vdir *vdir, int atonce); +int au_vdir_init(struct file *file); +int au_vdir_fill_de(struct file *file, struct dir_context *ctx); + +/* ioctl.c */ +long aufs_ioctl_dir(struct file *file, unsigned int cmd, unsigned long arg); + +#ifdef CONFIG_AUFS_RDU +/* rdu.c */ +long au_rdu_ioctl(struct file *file, unsigned int cmd, unsigned long arg); +#ifdef CONFIG_COMPAT +long au_rdu_compat_ioctl(struct file *file, unsigned int cmd, + unsigned long arg); +#endif +#else +AuStub(long, au_rdu_ioctl, return -EINVAL, struct file *file, + unsigned int cmd, unsigned long arg) +#ifdef CONFIG_COMPAT +AuStub(long, au_rdu_compat_ioctl, return -EINVAL, struct file *file, + unsigned int cmd, unsigned long arg) +#endif +#endif + +#endif /* __KERNEL__ */ +#endif /* __AUFS_DIR_H__ */ --- linux-4.8.0.orig/fs/aufs/dynop.c +++ linux-4.8.0/fs/aufs/dynop.c @@ -0,0 +1,371 @@ +/* + * Copyright (C) 2010-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * dynamically customizable operations for regular files + */ + +#include "aufs.h" + +#define DyPrSym(key) AuDbgSym(key->dk_op.dy_hop) + +/* + * How large will these lists be? + * Usually just a few elements, 20-30 at most for each, I guess. + */ +static struct au_sphlhead dynop[AuDyLast]; + +static struct au_dykey *dy_gfind_get(struct au_sphlhead *sphl, const void *h_op) +{ + struct au_dykey *key, *tmp; + struct hlist_head *head; + + key = NULL; + head = &sphl->head; + rcu_read_lock(); + hlist_for_each_entry_rcu(tmp, head, dk_hnode) + if (tmp->dk_op.dy_hop == h_op) { + key = tmp; + kref_get(&key->dk_kref); + break; + } + rcu_read_unlock(); + + return key; +} + +static struct au_dykey *dy_bradd(struct au_branch *br, struct au_dykey *key) +{ + struct au_dykey **k, *found; + const void *h_op = key->dk_op.dy_hop; + int i; + + found = NULL; + k = br->br_dykey; + for (i = 0; i < AuBrDynOp; i++) + if (k[i]) { + if (k[i]->dk_op.dy_hop == h_op) { + found = k[i]; + break; + } + } else + break; + if (!found) { + spin_lock(&br->br_dykey_lock); + for (; i < AuBrDynOp; i++) + if (k[i]) { + if (k[i]->dk_op.dy_hop == h_op) { + found = k[i]; + break; + } + } else { + k[i] = key; + break; + } + spin_unlock(&br->br_dykey_lock); + BUG_ON(i == AuBrDynOp); /* expand the array */ + } + + return found; +} + +/* kref_get() if @key is already added */ +static struct au_dykey *dy_gadd(struct au_sphlhead *sphl, struct au_dykey *key) +{ + struct au_dykey *tmp, *found; + struct hlist_head *head; + const void *h_op = key->dk_op.dy_hop; + + found = NULL; + head = &sphl->head; + spin_lock(&sphl->spin); + hlist_for_each_entry(tmp, head, dk_hnode) + if (tmp->dk_op.dy_hop == h_op) { + kref_get(&tmp->dk_kref); + found = tmp; + break; + } + if (!found) + hlist_add_head_rcu(&key->dk_hnode, head); + spin_unlock(&sphl->spin); + + if (!found) + DyPrSym(key); + return found; +} + +static void dy_free_rcu(struct rcu_head *rcu) +{ + struct au_dykey *key; + + key = container_of(rcu, struct au_dykey, dk_rcu); + DyPrSym(key); + kfree(key); /* not delayed */ +} + +static void dy_free(struct kref *kref) +{ + struct au_dykey *key; + struct au_sphlhead *sphl; + + key = container_of(kref, struct au_dykey, dk_kref); + sphl = dynop + key->dk_op.dy_type; + au_sphl_del_rcu(&key->dk_hnode, sphl); + call_rcu(&key->dk_rcu, dy_free_rcu); +} + +void au_dy_put(struct au_dykey *key) +{ + kref_put(&key->dk_kref, dy_free); +} + +/* ---------------------------------------------------------------------- */ + +#define DyDbgSize(cnt, op) AuDebugOn(cnt != sizeof(op)/sizeof(void *)) + +#ifdef CONFIG_AUFS_DEBUG +#define DyDbgDeclare(cnt) unsigned int cnt = 0 +#define DyDbgInc(cnt) do { cnt++; } while (0) +#else +#define DyDbgDeclare(cnt) do {} while (0) +#define DyDbgInc(cnt) do {} while (0) +#endif + +#define DySet(func, dst, src, h_op, h_sb) do { \ + DyDbgInc(cnt); \ + if (h_op->func) { \ + if (src.func) \ + dst.func = src.func; \ + else \ + AuDbg("%s %s\n", au_sbtype(h_sb), #func); \ + } \ +} while (0) + +#define DySetForce(func, dst, src) do { \ + AuDebugOn(!src.func); \ + DyDbgInc(cnt); \ + dst.func = src.func; \ +} while (0) + +#define DySetAop(func) \ + DySet(func, dyaop->da_op, aufs_aop, h_aop, h_sb) +#define DySetAopForce(func) \ + DySetForce(func, dyaop->da_op, aufs_aop) + +static void dy_aop(struct au_dykey *key, const void *h_op, + struct super_block *h_sb __maybe_unused) +{ + struct au_dyaop *dyaop = (void *)key; + const struct address_space_operations *h_aop = h_op; + DyDbgDeclare(cnt); + + AuDbg("%s\n", au_sbtype(h_sb)); + + DySetAop(writepage); + DySetAopForce(readpage); /* force */ + DySetAop(writepages); + DySetAop(set_page_dirty); + DySetAop(readpages); + DySetAop(write_begin); + DySetAop(write_end); + DySetAop(bmap); + DySetAop(invalidatepage); + DySetAop(releasepage); + DySetAop(freepage); + /* this one will be changed according to an aufs mount option */ + DySetAop(direct_IO); + DySetAop(migratepage); + DySetAop(isolate_page); + DySetAop(putback_page); + DySetAop(launder_page); + DySetAop(is_partially_uptodate); + DySetAop(is_dirty_writeback); + DySetAop(error_remove_page); + DySetAop(swap_activate); + DySetAop(swap_deactivate); + + DyDbgSize(cnt, *h_aop); +} + +/* ---------------------------------------------------------------------- */ + +static void dy_bug(struct kref *kref) +{ + BUG(); +} + +static struct au_dykey *dy_get(struct au_dynop *op, struct au_branch *br) +{ + struct au_dykey *key, *old; + struct au_sphlhead *sphl; + struct op { + unsigned int sz; + void (*set)(struct au_dykey *key, const void *h_op, + struct super_block *h_sb __maybe_unused); + }; + static const struct op a[] = { + [AuDy_AOP] = { + .sz = sizeof(struct au_dyaop), + .set = dy_aop + } + }; + const struct op *p; + + sphl = dynop + op->dy_type; + key = dy_gfind_get(sphl, op->dy_hop); + if (key) + goto out_add; /* success */ + + p = a + op->dy_type; + key = kzalloc(p->sz, GFP_NOFS); + if (unlikely(!key)) { + key = ERR_PTR(-ENOMEM); + goto out; + } + + key->dk_op.dy_hop = op->dy_hop; + kref_init(&key->dk_kref); + p->set(key, op->dy_hop, au_br_sb(br)); + old = dy_gadd(sphl, key); + if (old) { + au_delayed_kfree(key); + key = old; + } + +out_add: + old = dy_bradd(br, key); + if (old) + /* its ref-count should never be zero here */ + kref_put(&key->dk_kref, dy_bug); +out: + return key; +} + +/* ---------------------------------------------------------------------- */ +/* + * Aufs prohibits O_DIRECT by defaut even if the branch supports it. + * This behaviour is necessary to return an error from open(O_DIRECT) instead + * of the succeeding I/O. The dio mount option enables O_DIRECT and makes + * open(O_DIRECT) always succeed, but the succeeding I/O may return an error. + * See the aufs manual in detail. + */ +static void dy_adx(struct au_dyaop *dyaop, int do_dx) +{ + if (!do_dx) + dyaop->da_op.direct_IO = NULL; + else + dyaop->da_op.direct_IO = aufs_aop.direct_IO; +} + +static struct au_dyaop *dy_aget(struct au_branch *br, + const struct address_space_operations *h_aop, + int do_dx) +{ + struct au_dyaop *dyaop; + struct au_dynop op; + + op.dy_type = AuDy_AOP; + op.dy_haop = h_aop; + dyaop = (void *)dy_get(&op, br); + if (IS_ERR(dyaop)) + goto out; + dy_adx(dyaop, do_dx); + +out: + return dyaop; +} + +int au_dy_iaop(struct inode *inode, aufs_bindex_t bindex, + struct inode *h_inode) +{ + int err, do_dx; + struct super_block *sb; + struct au_branch *br; + struct au_dyaop *dyaop; + + AuDebugOn(!S_ISREG(h_inode->i_mode)); + IiMustWriteLock(inode); + + sb = inode->i_sb; + br = au_sbr(sb, bindex); + do_dx = !!au_opt_test(au_mntflags(sb), DIO); + dyaop = dy_aget(br, h_inode->i_mapping->a_ops, do_dx); + err = PTR_ERR(dyaop); + if (IS_ERR(dyaop)) + /* unnecessary to call dy_fput() */ + goto out; + + err = 0; + inode->i_mapping->a_ops = &dyaop->da_op; + +out: + return err; +} + +/* + * Is it safe to replace a_ops during the inode/file is in operation? + * Yes, I hope so. + */ +int au_dy_irefresh(struct inode *inode) +{ + int err; + aufs_bindex_t btop; + struct inode *h_inode; + + err = 0; + if (S_ISREG(inode->i_mode)) { + btop = au_ibtop(inode); + h_inode = au_h_iptr(inode, btop); + err = au_dy_iaop(inode, btop, h_inode); + } + return err; +} + +void au_dy_arefresh(int do_dx) +{ + struct au_sphlhead *sphl; + struct hlist_head *head; + struct au_dykey *key; + + sphl = dynop + AuDy_AOP; + head = &sphl->head; + spin_lock(&sphl->spin); + hlist_for_each_entry(key, head, dk_hnode) + dy_adx((void *)key, do_dx); + spin_unlock(&sphl->spin); +} + +/* ---------------------------------------------------------------------- */ + +void __init au_dy_init(void) +{ + int i; + + /* make sure that 'struct au_dykey *' can be any type */ + BUILD_BUG_ON(offsetof(struct au_dyaop, da_key)); + + for (i = 0; i < AuDyLast; i++) + au_sphl_init(dynop + i); +} + +void au_dy_fin(void) +{ + int i; + + for (i = 0; i < AuDyLast; i++) + WARN_ON(!hlist_empty(&dynop[i].head)); +} --- linux-4.8.0.orig/fs/aufs/dynop.h +++ linux-4.8.0/fs/aufs/dynop.h @@ -0,0 +1,74 @@ +/* + * Copyright (C) 2010-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * dynamically customizable operations (for regular files only) + */ + +#ifndef __AUFS_DYNOP_H__ +#define __AUFS_DYNOP_H__ + +#ifdef __KERNEL__ + +#include +#include + +enum {AuDy_AOP, AuDyLast}; + +struct au_dynop { + int dy_type; + union { + const void *dy_hop; + const struct address_space_operations *dy_haop; + }; +}; + +struct au_dykey { + union { + struct hlist_node dk_hnode; + struct rcu_head dk_rcu; + }; + struct au_dynop dk_op; + + /* + * during I am in the branch local array, kref is gotten. when the + * branch is removed, kref is put. + */ + struct kref dk_kref; +}; + +/* stop unioning since their sizes are very different from each other */ +struct au_dyaop { + struct au_dykey da_key; + struct address_space_operations da_op; /* not const */ +}; + +/* ---------------------------------------------------------------------- */ + +/* dynop.c */ +struct au_branch; +void au_dy_put(struct au_dykey *key); +int au_dy_iaop(struct inode *inode, aufs_bindex_t bindex, + struct inode *h_inode); +int au_dy_irefresh(struct inode *inode); +void au_dy_arefresh(int do_dio); + +void __init au_dy_init(void); +void au_dy_fin(void); + +#endif /* __KERNEL__ */ +#endif /* __AUFS_DYNOP_H__ */ --- linux-4.8.0.orig/fs/aufs/export.c +++ linux-4.8.0/fs/aufs/export.c @@ -0,0 +1,837 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * export via nfs + */ + +#include +#include +#include +#include +#include +#include +#include "../fs/mount.h" +#include "aufs.h" + +union conv { +#ifdef CONFIG_AUFS_INO_T_64 + __u32 a[2]; +#else + __u32 a[1]; +#endif + ino_t ino; +}; + +static ino_t decode_ino(__u32 *a) +{ + union conv u; + + BUILD_BUG_ON(sizeof(u.ino) != sizeof(u.a)); + u.a[0] = a[0]; +#ifdef CONFIG_AUFS_INO_T_64 + u.a[1] = a[1]; +#endif + return u.ino; +} + +static void encode_ino(__u32 *a, ino_t ino) +{ + union conv u; + + u.ino = ino; + a[0] = u.a[0]; +#ifdef CONFIG_AUFS_INO_T_64 + a[1] = u.a[1]; +#endif +} + +/* NFS file handle */ +enum { + Fh_br_id, + Fh_sigen, +#ifdef CONFIG_AUFS_INO_T_64 + /* support 64bit inode number */ + Fh_ino1, + Fh_ino2, + Fh_dir_ino1, + Fh_dir_ino2, +#else + Fh_ino1, + Fh_dir_ino1, +#endif + Fh_igen, + Fh_h_type, + Fh_tail, + + Fh_ino = Fh_ino1, + Fh_dir_ino = Fh_dir_ino1 +}; + +static int au_test_anon(struct dentry *dentry) +{ + /* note: read d_flags without d_lock */ + return !!(dentry->d_flags & DCACHE_DISCONNECTED); +} + +int au_test_nfsd(void) +{ + int ret; + struct task_struct *tsk = current; + char comm[sizeof(tsk->comm)]; + + ret = 0; + if (tsk->flags & PF_KTHREAD) { + get_task_comm(comm, tsk); + ret = !strcmp(comm, "nfsd"); + } + + return ret; +} + +/* ---------------------------------------------------------------------- */ +/* inode generation external table */ + +void au_xigen_inc(struct inode *inode) +{ + loff_t pos; + ssize_t sz; + __u32 igen; + struct super_block *sb; + struct au_sbinfo *sbinfo; + + sb = inode->i_sb; + AuDebugOn(!au_opt_test(au_mntflags(sb), XINO)); + + sbinfo = au_sbi(sb); + pos = inode->i_ino; + pos *= sizeof(igen); + igen = inode->i_generation + 1; + sz = xino_fwrite(sbinfo->si_xwrite, sbinfo->si_xigen, &igen, + sizeof(igen), &pos); + if (sz == sizeof(igen)) + return; /* success */ + + if (unlikely(sz >= 0)) + AuIOErr("xigen error (%zd)\n", sz); +} + +int au_xigen_new(struct inode *inode) +{ + int err; + loff_t pos; + ssize_t sz; + struct super_block *sb; + struct au_sbinfo *sbinfo; + struct file *file; + + err = 0; + /* todo: dirty, at mount time */ + if (inode->i_ino == AUFS_ROOT_INO) + goto out; + sb = inode->i_sb; + SiMustAnyLock(sb); + if (unlikely(!au_opt_test(au_mntflags(sb), XINO))) + goto out; + + err = -EFBIG; + pos = inode->i_ino; + if (unlikely(au_loff_max / sizeof(inode->i_generation) - 1 < pos)) { + AuIOErr1("too large i%lld\n", pos); + goto out; + } + pos *= sizeof(inode->i_generation); + + err = 0; + sbinfo = au_sbi(sb); + file = sbinfo->si_xigen; + BUG_ON(!file); + + if (vfsub_f_size_read(file) + < pos + sizeof(inode->i_generation)) { + inode->i_generation = atomic_inc_return(&sbinfo->si_xigen_next); + sz = xino_fwrite(sbinfo->si_xwrite, file, &inode->i_generation, + sizeof(inode->i_generation), &pos); + } else + sz = xino_fread(sbinfo->si_xread, file, &inode->i_generation, + sizeof(inode->i_generation), &pos); + if (sz == sizeof(inode->i_generation)) + goto out; /* success */ + + err = sz; + if (unlikely(sz >= 0)) { + err = -EIO; + AuIOErr("xigen error (%zd)\n", sz); + } + +out: + return err; +} + +int au_xigen_set(struct super_block *sb, struct file *base) +{ + int err; + struct au_sbinfo *sbinfo; + struct file *file; + + SiMustWriteLock(sb); + + sbinfo = au_sbi(sb); + file = au_xino_create2(base, sbinfo->si_xigen); + err = PTR_ERR(file); + if (IS_ERR(file)) + goto out; + err = 0; + if (sbinfo->si_xigen) + fput(sbinfo->si_xigen); + sbinfo->si_xigen = file; + +out: + return err; +} + +void au_xigen_clr(struct super_block *sb) +{ + struct au_sbinfo *sbinfo; + + SiMustWriteLock(sb); + + sbinfo = au_sbi(sb); + if (sbinfo->si_xigen) { + fput(sbinfo->si_xigen); + sbinfo->si_xigen = NULL; + } +} + +/* ---------------------------------------------------------------------- */ + +static struct dentry *decode_by_ino(struct super_block *sb, ino_t ino, + ino_t dir_ino) +{ + struct dentry *dentry, *d; + struct inode *inode; + unsigned int sigen; + + dentry = NULL; + inode = ilookup(sb, ino); + if (!inode) + goto out; + + dentry = ERR_PTR(-ESTALE); + sigen = au_sigen(sb); + if (unlikely(au_is_bad_inode(inode) + || IS_DEADDIR(inode) + || sigen != au_iigen(inode, NULL))) + goto out_iput; + + dentry = NULL; + if (!dir_ino || S_ISDIR(inode->i_mode)) + dentry = d_find_alias(inode); + else { + spin_lock(&inode->i_lock); + hlist_for_each_entry(d, &inode->i_dentry, d_u.d_alias) { + spin_lock(&d->d_lock); + if (!au_test_anon(d) + && d_inode(d->d_parent)->i_ino == dir_ino) { + dentry = dget_dlock(d); + spin_unlock(&d->d_lock); + break; + } + spin_unlock(&d->d_lock); + } + spin_unlock(&inode->i_lock); + } + if (unlikely(dentry && au_digen_test(dentry, sigen))) { + /* need to refresh */ + dput(dentry); + dentry = NULL; + } + +out_iput: + iput(inode); +out: + AuTraceErrPtr(dentry); + return dentry; +} + +/* ---------------------------------------------------------------------- */ + +/* todo: dirty? */ +/* if exportfs_decode_fh() passed vfsmount*, we could be happy */ + +struct au_compare_mnt_args { + /* input */ + struct super_block *sb; + + /* output */ + struct vfsmount *mnt; +}; + +static int au_compare_mnt(struct vfsmount *mnt, void *arg) +{ + struct au_compare_mnt_args *a = arg; + + if (mnt->mnt_sb != a->sb) + return 0; + a->mnt = mntget(mnt); + return 1; +} + +static struct vfsmount *au_mnt_get(struct super_block *sb) +{ + int err; + struct path root; + struct au_compare_mnt_args args = { + .sb = sb + }; + + get_fs_root(current->fs, &root); + rcu_read_lock(); + err = iterate_mounts(au_compare_mnt, &args, root.mnt); + rcu_read_unlock(); + path_put(&root); + AuDebugOn(!err); + AuDebugOn(!args.mnt); + return args.mnt; +} + +struct au_nfsd_si_lock { + unsigned int sigen; + aufs_bindex_t bindex, br_id; + unsigned char force_lock; +}; + +static int si_nfsd_read_lock(struct super_block *sb, + struct au_nfsd_si_lock *nsi_lock) +{ + int err; + aufs_bindex_t bindex; + + si_read_lock(sb, AuLock_FLUSH); + + /* branch id may be wrapped around */ + err = 0; + bindex = au_br_index(sb, nsi_lock->br_id); + if (bindex >= 0 && nsi_lock->sigen + AUFS_BRANCH_MAX > au_sigen(sb)) + goto out; /* success */ + + err = -ESTALE; + bindex = -1; + if (!nsi_lock->force_lock) + si_read_unlock(sb); + +out: + nsi_lock->bindex = bindex; + return err; +} + +struct find_name_by_ino { + struct dir_context ctx; + int called, found; + ino_t ino; + char *name; + int namelen; +}; + +static int +find_name_by_ino(struct dir_context *ctx, const char *name, int namelen, + loff_t offset, u64 ino, unsigned int d_type) +{ + struct find_name_by_ino *a = container_of(ctx, struct find_name_by_ino, + ctx); + + a->called++; + if (a->ino != ino) + return 0; + + memcpy(a->name, name, namelen); + a->namelen = namelen; + a->found = 1; + return 1; +} + +static struct dentry *au_lkup_by_ino(struct path *path, ino_t ino, + struct au_nfsd_si_lock *nsi_lock) +{ + struct dentry *dentry, *parent; + struct file *file; + struct inode *dir; + struct find_name_by_ino arg = { + .ctx = { + .actor = find_name_by_ino + } + }; + int err; + + parent = path->dentry; + if (nsi_lock) + si_read_unlock(parent->d_sb); + file = vfsub_dentry_open(path, au_dir_roflags); + dentry = (void *)file; + if (IS_ERR(file)) + goto out; + + dentry = ERR_PTR(-ENOMEM); + arg.name = (void *)__get_free_page(GFP_NOFS); + if (unlikely(!arg.name)) + goto out_file; + arg.ino = ino; + arg.found = 0; + do { + arg.called = 0; + /* smp_mb(); */ + err = vfsub_iterate_dir(file, &arg.ctx); + } while (!err && !arg.found && arg.called); + dentry = ERR_PTR(err); + if (unlikely(err)) + goto out_name; + /* instead of ENOENT */ + dentry = ERR_PTR(-ESTALE); + if (!arg.found) + goto out_name; + + /* do not call vfsub_lkup_one() */ + dir = d_inode(parent); + dentry = vfsub_lookup_one_len_unlocked(arg.name, parent, arg.namelen); + AuTraceErrPtr(dentry); + if (IS_ERR(dentry)) + goto out_name; + AuDebugOn(au_test_anon(dentry)); + if (unlikely(d_really_is_negative(dentry))) { + dput(dentry); + dentry = ERR_PTR(-ENOENT); + } + +out_name: + au_delayed_free_page((unsigned long)arg.name); +out_file: + fput(file); +out: + if (unlikely(nsi_lock + && si_nfsd_read_lock(parent->d_sb, nsi_lock) < 0)) + if (!IS_ERR(dentry)) { + dput(dentry); + dentry = ERR_PTR(-ESTALE); + } + AuTraceErrPtr(dentry); + return dentry; +} + +static struct dentry *decode_by_dir_ino(struct super_block *sb, ino_t ino, + ino_t dir_ino, + struct au_nfsd_si_lock *nsi_lock) +{ + struct dentry *dentry; + struct path path; + + if (dir_ino != AUFS_ROOT_INO) { + path.dentry = decode_by_ino(sb, dir_ino, 0); + dentry = path.dentry; + if (!path.dentry || IS_ERR(path.dentry)) + goto out; + AuDebugOn(au_test_anon(path.dentry)); + } else + path.dentry = dget(sb->s_root); + + path.mnt = au_mnt_get(sb); + dentry = au_lkup_by_ino(&path, ino, nsi_lock); + path_put(&path); + +out: + AuTraceErrPtr(dentry); + return dentry; +} + +/* ---------------------------------------------------------------------- */ + +static int h_acceptable(void *expv, struct dentry *dentry) +{ + return 1; +} + +static char *au_build_path(struct dentry *h_parent, struct path *h_rootpath, + char *buf, int len, struct super_block *sb) +{ + char *p; + int n; + struct path path; + + p = d_path(h_rootpath, buf, len); + if (IS_ERR(p)) + goto out; + n = strlen(p); + + path.mnt = h_rootpath->mnt; + path.dentry = h_parent; + p = d_path(&path, buf, len); + if (IS_ERR(p)) + goto out; + if (n != 1) + p += n; + + path.mnt = au_mnt_get(sb); + path.dentry = sb->s_root; + p = d_path(&path, buf, len - strlen(p)); + mntput(path.mnt); + if (IS_ERR(p)) + goto out; + if (n != 1) + p[strlen(p)] = '/'; + +out: + AuTraceErrPtr(p); + return p; +} + +static +struct dentry *decode_by_path(struct super_block *sb, ino_t ino, __u32 *fh, + int fh_len, struct au_nfsd_si_lock *nsi_lock) +{ + struct dentry *dentry, *h_parent, *root; + struct super_block *h_sb; + char *pathname, *p; + struct vfsmount *h_mnt; + struct au_branch *br; + int err; + struct path path; + + br = au_sbr(sb, nsi_lock->bindex); + h_mnt = au_br_mnt(br); + h_sb = h_mnt->mnt_sb; + /* todo: call lower fh_to_dentry()? fh_to_parent()? */ + lockdep_off(); + h_parent = exportfs_decode_fh(h_mnt, (void *)(fh + Fh_tail), + fh_len - Fh_tail, fh[Fh_h_type], + h_acceptable, /*context*/NULL); + lockdep_on(); + dentry = h_parent; + if (unlikely(!h_parent || IS_ERR(h_parent))) { + AuWarn1("%s decode_fh failed, %ld\n", + au_sbtype(h_sb), PTR_ERR(h_parent)); + goto out; + } + dentry = NULL; + if (unlikely(au_test_anon(h_parent))) { + AuWarn1("%s decode_fh returned a disconnected dentry\n", + au_sbtype(h_sb)); + goto out_h_parent; + } + + dentry = ERR_PTR(-ENOMEM); + pathname = (void *)__get_free_page(GFP_NOFS); + if (unlikely(!pathname)) + goto out_h_parent; + + root = sb->s_root; + path.mnt = h_mnt; + di_read_lock_parent(root, !AuLock_IR); + path.dentry = au_h_dptr(root, nsi_lock->bindex); + di_read_unlock(root, !AuLock_IR); + p = au_build_path(h_parent, &path, pathname, PAGE_SIZE, sb); + dentry = (void *)p; + if (IS_ERR(p)) + goto out_pathname; + + si_read_unlock(sb); + err = vfsub_kern_path(p, LOOKUP_FOLLOW | LOOKUP_DIRECTORY, &path); + dentry = ERR_PTR(err); + if (unlikely(err)) + goto out_relock; + + dentry = ERR_PTR(-ENOENT); + AuDebugOn(au_test_anon(path.dentry)); + if (unlikely(d_really_is_negative(path.dentry))) + goto out_path; + + if (ino != d_inode(path.dentry)->i_ino) + dentry = au_lkup_by_ino(&path, ino, /*nsi_lock*/NULL); + else + dentry = dget(path.dentry); + +out_path: + path_put(&path); +out_relock: + if (unlikely(si_nfsd_read_lock(sb, nsi_lock) < 0)) + if (!IS_ERR(dentry)) { + dput(dentry); + dentry = ERR_PTR(-ESTALE); + } +out_pathname: + au_delayed_free_page((unsigned long)pathname); +out_h_parent: + dput(h_parent); +out: + AuTraceErrPtr(dentry); + return dentry; +} + +/* ---------------------------------------------------------------------- */ + +static struct dentry * +aufs_fh_to_dentry(struct super_block *sb, struct fid *fid, int fh_len, + int fh_type) +{ + struct dentry *dentry; + __u32 *fh = fid->raw; + struct au_branch *br; + ino_t ino, dir_ino; + struct au_nfsd_si_lock nsi_lock = { + .force_lock = 0 + }; + + dentry = ERR_PTR(-ESTALE); + /* it should never happen, but the file handle is unreliable */ + if (unlikely(fh_len < Fh_tail)) + goto out; + nsi_lock.sigen = fh[Fh_sigen]; + nsi_lock.br_id = fh[Fh_br_id]; + + /* branch id may be wrapped around */ + br = NULL; + if (unlikely(si_nfsd_read_lock(sb, &nsi_lock))) + goto out; + nsi_lock.force_lock = 1; + + /* is this inode still cached? */ + ino = decode_ino(fh + Fh_ino); + /* it should never happen */ + if (unlikely(ino == AUFS_ROOT_INO)) + goto out_unlock; + + dir_ino = decode_ino(fh + Fh_dir_ino); + dentry = decode_by_ino(sb, ino, dir_ino); + if (IS_ERR(dentry)) + goto out_unlock; + if (dentry) + goto accept; + + /* is the parent dir cached? */ + br = au_sbr(sb, nsi_lock.bindex); + au_br_get(br); + dentry = decode_by_dir_ino(sb, ino, dir_ino, &nsi_lock); + if (IS_ERR(dentry)) + goto out_unlock; + if (dentry) + goto accept; + + /* lookup path */ + dentry = decode_by_path(sb, ino, fh, fh_len, &nsi_lock); + if (IS_ERR(dentry)) + goto out_unlock; + if (unlikely(!dentry)) + /* todo?: make it ESTALE */ + goto out_unlock; + +accept: + if (!au_digen_test(dentry, au_sigen(sb)) + && d_inode(dentry)->i_generation == fh[Fh_igen]) + goto out_unlock; /* success */ + + dput(dentry); + dentry = ERR_PTR(-ESTALE); +out_unlock: + if (br) + au_br_put(br); + si_read_unlock(sb); +out: + AuTraceErrPtr(dentry); + return dentry; +} + +#if 0 /* reserved for future use */ +/* support subtreecheck option */ +static struct dentry *aufs_fh_to_parent(struct super_block *sb, struct fid *fid, + int fh_len, int fh_type) +{ + struct dentry *parent; + __u32 *fh = fid->raw; + ino_t dir_ino; + + dir_ino = decode_ino(fh + Fh_dir_ino); + parent = decode_by_ino(sb, dir_ino, 0); + if (IS_ERR(parent)) + goto out; + if (!parent) + parent = decode_by_path(sb, au_br_index(sb, fh[Fh_br_id]), + dir_ino, fh, fh_len); + +out: + AuTraceErrPtr(parent); + return parent; +} +#endif + +/* ---------------------------------------------------------------------- */ + +static int aufs_encode_fh(struct inode *inode, __u32 *fh, int *max_len, + struct inode *dir) +{ + int err; + aufs_bindex_t bindex; + struct super_block *sb, *h_sb; + struct dentry *dentry, *parent, *h_parent; + struct inode *h_dir; + struct au_branch *br; + + err = -ENOSPC; + if (unlikely(*max_len <= Fh_tail)) { + AuWarn1("NFSv2 client (max_len %d)?\n", *max_len); + goto out; + } + + err = FILEID_ROOT; + if (inode->i_ino == AUFS_ROOT_INO) { + AuDebugOn(inode->i_ino != AUFS_ROOT_INO); + goto out; + } + + h_parent = NULL; + sb = inode->i_sb; + err = si_read_lock(sb, AuLock_FLUSH); + if (unlikely(err)) + goto out; + +#ifdef CONFIG_AUFS_DEBUG + if (unlikely(!au_opt_test(au_mntflags(sb), XINO))) + AuWarn1("NFS-exporting requires xino\n"); +#endif + err = -EIO; + parent = NULL; + ii_read_lock_child(inode); + bindex = au_ibtop(inode); + if (!dir) { + dentry = d_find_any_alias(inode); + if (unlikely(!dentry)) + goto out_unlock; + AuDebugOn(au_test_anon(dentry)); + parent = dget_parent(dentry); + dput(dentry); + if (unlikely(!parent)) + goto out_unlock; + if (d_really_is_positive(parent)) + dir = d_inode(parent); + } + + ii_read_lock_parent(dir); + h_dir = au_h_iptr(dir, bindex); + ii_read_unlock(dir); + if (unlikely(!h_dir)) + goto out_parent; + h_parent = d_find_any_alias(h_dir); + if (unlikely(!h_parent)) + goto out_hparent; + + err = -EPERM; + br = au_sbr(sb, bindex); + h_sb = au_br_sb(br); + if (unlikely(!h_sb->s_export_op)) { + AuErr1("%s branch is not exportable\n", au_sbtype(h_sb)); + goto out_hparent; + } + + fh[Fh_br_id] = br->br_id; + fh[Fh_sigen] = au_sigen(sb); + encode_ino(fh + Fh_ino, inode->i_ino); + encode_ino(fh + Fh_dir_ino, dir->i_ino); + fh[Fh_igen] = inode->i_generation; + + *max_len -= Fh_tail; + fh[Fh_h_type] = exportfs_encode_fh(h_parent, (void *)(fh + Fh_tail), + max_len, + /*connectable or subtreecheck*/0); + err = fh[Fh_h_type]; + *max_len += Fh_tail; + /* todo: macros? */ + if (err != FILEID_INVALID) + err = 99; + else + AuWarn1("%s encode_fh failed\n", au_sbtype(h_sb)); + +out_hparent: + dput(h_parent); +out_parent: + dput(parent); +out_unlock: + ii_read_unlock(inode); + si_read_unlock(sb); +out: + if (unlikely(err < 0)) + err = FILEID_INVALID; + return err; +} + +/* ---------------------------------------------------------------------- */ + +static int aufs_commit_metadata(struct inode *inode) +{ + int err; + aufs_bindex_t bindex; + struct super_block *sb; + struct inode *h_inode; + int (*f)(struct inode *inode); + + sb = inode->i_sb; + si_read_lock(sb, AuLock_FLUSH | AuLock_NOPLMW); + ii_write_lock_child(inode); + bindex = au_ibtop(inode); + AuDebugOn(bindex < 0); + h_inode = au_h_iptr(inode, bindex); + + f = h_inode->i_sb->s_export_op->commit_metadata; + if (f) + err = f(h_inode); + else { + struct writeback_control wbc = { + .sync_mode = WB_SYNC_ALL, + .nr_to_write = 0 /* metadata only */ + }; + + err = sync_inode(h_inode, &wbc); + } + + au_cpup_attr_timesizes(inode); + ii_write_unlock(inode); + si_read_unlock(sb); + return err; +} + +/* ---------------------------------------------------------------------- */ + +static struct export_operations aufs_export_op = { + .fh_to_dentry = aufs_fh_to_dentry, + /* .fh_to_parent = aufs_fh_to_parent, */ + .encode_fh = aufs_encode_fh, + .commit_metadata = aufs_commit_metadata +}; + +void au_export_init(struct super_block *sb) +{ + struct au_sbinfo *sbinfo; + __u32 u; + + BUILD_BUG_ON_MSG(IS_BUILTIN(CONFIG_AUFS_FS) + && IS_MODULE(CONFIG_EXPORTFS), + AUFS_NAME ": unsupported configuration " + "CONFIG_EXPORTFS=m and CONFIG_AUFS_FS=y"); + + sb->s_export_op = &aufs_export_op; + sbinfo = au_sbi(sb); + sbinfo->si_xigen = NULL; + get_random_bytes(&u, sizeof(u)); + BUILD_BUG_ON(sizeof(u) != sizeof(int)); + atomic_set(&sbinfo->si_xigen_next, u); +} --- linux-4.8.0.orig/fs/aufs/f_op.c +++ linux-4.8.0/fs/aufs/f_op.c @@ -0,0 +1,772 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * file and vm operations + */ + +#include +#include +#include +#include +#include "aufs.h" + +int au_do_open_nondir(struct file *file, int flags, struct file *h_file) +{ + int err; + aufs_bindex_t bindex; + struct dentry *dentry, *h_dentry; + struct au_finfo *finfo; + struct inode *h_inode; + + FiMustWriteLock(file); + + err = 0; + dentry = file->f_path.dentry; + AuDebugOn(IS_ERR_OR_NULL(dentry)); + finfo = au_fi(file); + memset(&finfo->fi_htop, 0, sizeof(finfo->fi_htop)); + atomic_set(&finfo->fi_mmapped, 0); + bindex = au_dbtop(dentry); + if (!h_file) { + h_dentry = au_h_dptr(dentry, bindex); + err = vfsub_test_mntns(file->f_path.mnt, h_dentry->d_sb); + if (unlikely(err)) + goto out; + h_file = au_h_open(dentry, bindex, flags, file, /*force_wr*/0); + } else { + h_dentry = h_file->f_path.dentry; + err = vfsub_test_mntns(file->f_path.mnt, h_dentry->d_sb); + if (unlikely(err)) + goto out; + get_file(h_file); + } + if (IS_ERR(h_file)) + err = PTR_ERR(h_file); + else { + if ((flags & __O_TMPFILE) + && !(flags & O_EXCL)) { + h_inode = file_inode(h_file); + spin_lock(&h_inode->i_lock); + h_inode->i_state |= I_LINKABLE; + spin_unlock(&h_inode->i_lock); + } + au_set_fbtop(file, bindex); + au_set_h_fptr(file, bindex, h_file); + au_update_figen(file); + /* todo: necessary? */ + /* file->f_ra = h_file->f_ra; */ + } + +out: + return err; +} + +static int aufs_open_nondir(struct inode *inode __maybe_unused, + struct file *file) +{ + int err; + struct super_block *sb; + struct au_do_open_args args = { + .open = au_do_open_nondir + }; + + AuDbg("%pD, f_flags 0x%x, f_mode 0x%x\n", + file, vfsub_file_flags(file), file->f_mode); + + sb = file->f_path.dentry->d_sb; + si_read_lock(sb, AuLock_FLUSH); + err = au_do_open(file, &args); + si_read_unlock(sb); + return err; +} + +int aufs_release_nondir(struct inode *inode __maybe_unused, struct file *file) +{ + struct au_finfo *finfo; + aufs_bindex_t bindex; + int delayed; + + finfo = au_fi(file); + au_sphl_del(&finfo->fi_hlist, + &au_sbi(file->f_path.dentry->d_sb)->si_files); + bindex = finfo->fi_btop; + if (bindex >= 0) + au_set_h_fptr(file, bindex, NULL); + + delayed = (current->flags & PF_KTHREAD) || in_interrupt(); + au_finfo_fin(file, delayed); + return 0; +} + +/* ---------------------------------------------------------------------- */ + +static int au_do_flush_nondir(struct file *file, fl_owner_t id) +{ + int err; + struct file *h_file; + + err = 0; + h_file = au_hf_top(file); + if (h_file) + err = vfsub_flush(h_file, id); + return err; +} + +static int aufs_flush_nondir(struct file *file, fl_owner_t id) +{ + return au_do_flush(file, id, au_do_flush_nondir); +} + +/* ---------------------------------------------------------------------- */ +/* + * read and write functions acquire [fdi]_rwsem once, but release before + * mmap_sem. This is because to stop a race condition between mmap(2). + * Releasing these aufs-rwsem should be safe, no branch-mamagement (by keeping + * si_rwsem), no harmful copy-up should happen. Actually copy-up may happen in + * read functions after [fdi]_rwsem are released, but it should be harmless. + */ + +/* Callers should call au_read_post() or fput() in the end */ +struct file *au_read_pre(struct file *file, int keep_fi) +{ + struct file *h_file; + int err; + + err = au_reval_and_lock_fdi(file, au_reopen_nondir, /*wlock*/0); + if (!err) { + di_read_unlock(file->f_path.dentry, AuLock_IR); + h_file = au_hf_top(file); + get_file(h_file); + if (!keep_fi) + fi_read_unlock(file); + } else + h_file = ERR_PTR(err); + + return h_file; +} + +static void au_read_post(struct inode *inode, struct file *h_file) +{ + /* update without lock, I don't think it a problem */ + fsstack_copy_attr_atime(inode, file_inode(h_file)); + fput(h_file); +} + +struct au_write_pre { + blkcnt_t blks; + aufs_bindex_t btop; +}; + +/* + * return with iinfo is write-locked + * callers should call au_write_post() or iinfo_write_unlock() + fput() in the + * end + */ +static struct file *au_write_pre(struct file *file, int do_ready, + struct au_write_pre *wpre) +{ + struct file *h_file; + struct dentry *dentry; + int err; + struct au_pin pin; + + err = au_reval_and_lock_fdi(file, au_reopen_nondir, /*wlock*/1); + h_file = ERR_PTR(err); + if (unlikely(err)) + goto out; + + dentry = file->f_path.dentry; + if (do_ready) { + err = au_ready_to_write(file, -1, &pin); + if (unlikely(err)) { + h_file = ERR_PTR(err); + di_write_unlock(dentry); + goto out_fi; + } + } + + di_downgrade_lock(dentry, /*flags*/0); + if (wpre) + wpre->btop = au_fbtop(file); + h_file = au_hf_top(file); + get_file(h_file); + if (wpre) + wpre->blks = file_inode(h_file)->i_blocks; + if (do_ready) + au_unpin(&pin); + di_read_unlock(dentry, /*flags*/0); + +out_fi: + fi_write_unlock(file); +out: + return h_file; +} + +static void au_write_post(struct inode *inode, struct file *h_file, + struct au_write_pre *wpre, ssize_t written) +{ + struct inode *h_inode; + + au_cpup_attr_timesizes(inode); + AuDebugOn(au_ibtop(inode) != wpre->btop); + h_inode = file_inode(h_file); + inode->i_mode = h_inode->i_mode; + ii_write_unlock(inode); + fput(h_file); + + /* AuDbg("blks %llu, %llu\n", (u64)blks, (u64)h_inode->i_blocks); */ + if (written > 0) + au_fhsm_wrote(inode->i_sb, wpre->btop, + /*force*/h_inode->i_blocks > wpre->blks); +} + +static ssize_t aufs_read(struct file *file, char __user *buf, size_t count, + loff_t *ppos) +{ + ssize_t err; + struct inode *inode; + struct file *h_file; + struct super_block *sb; + + inode = file_inode(file); + sb = inode->i_sb; + si_read_lock(sb, AuLock_FLUSH | AuLock_NOPLMW); + + h_file = au_read_pre(file, /*keep_fi*/0); + err = PTR_ERR(h_file); + if (IS_ERR(h_file)) + goto out; + + /* filedata may be obsoleted by concurrent copyup, but no problem */ + err = vfsub_read_u(h_file, buf, count, ppos); + /* todo: necessary? */ + /* file->f_ra = h_file->f_ra; */ + au_read_post(inode, h_file); + +out: + si_read_unlock(sb); + return err; +} + +/* + * todo: very ugly + * it locks both of i_mutex and si_rwsem for read in safe. + * if the plink maintenance mode continues forever (that is the problem), + * may loop forever. + */ +static void au_mtx_and_read_lock(struct inode *inode) +{ + int err; + struct super_block *sb = inode->i_sb; + + while (1) { + inode_lock(inode); + err = si_read_lock(sb, AuLock_FLUSH | AuLock_NOPLM); + if (!err) + break; + inode_unlock(inode); + si_read_lock(sb, AuLock_NOPLMW); + si_read_unlock(sb); + } +} + +static ssize_t aufs_write(struct file *file, const char __user *ubuf, + size_t count, loff_t *ppos) +{ + ssize_t err; + struct au_write_pre wpre; + struct inode *inode; + struct file *h_file; + char __user *buf = (char __user *)ubuf; + + inode = file_inode(file); + au_mtx_and_read_lock(inode); + + h_file = au_write_pre(file, /*do_ready*/1, &wpre); + err = PTR_ERR(h_file); + if (IS_ERR(h_file)) + goto out; + + err = vfsub_write_u(h_file, buf, count, ppos); + au_write_post(inode, h_file, &wpre, err); + +out: + si_read_unlock(inode->i_sb); + inode_unlock(inode); + return err; +} + +static ssize_t au_do_iter(struct file *h_file, int rw, struct kiocb *kio, + struct iov_iter *iov_iter) +{ + ssize_t err; + struct file *file; + ssize_t (*iter)(struct kiocb *, struct iov_iter *); + + err = security_file_permission(h_file, rw); + if (unlikely(err)) + goto out; + + err = -ENOSYS; + iter = NULL; + if (rw == MAY_READ) + iter = h_file->f_op->read_iter; + else if (rw == MAY_WRITE) + iter = h_file->f_op->write_iter; + + file = kio->ki_filp; + kio->ki_filp = h_file; + if (iter) { + lockdep_off(); + err = iter(kio, iov_iter); + lockdep_on(); + } else + /* currently there is no such fs */ + WARN_ON_ONCE(1); + kio->ki_filp = file; + +out: + return err; +} + +static ssize_t aufs_read_iter(struct kiocb *kio, struct iov_iter *iov_iter) +{ + ssize_t err; + struct file *file, *h_file; + struct inode *inode; + struct super_block *sb; + + file = kio->ki_filp; + inode = file_inode(file); + sb = inode->i_sb; + si_read_lock(sb, AuLock_FLUSH | AuLock_NOPLMW); + + h_file = au_read_pre(file, /*keep_fi*/1); + err = PTR_ERR(h_file); + if (IS_ERR(h_file)) + goto out; + + if (0 && au_test_loopback_kthread()) { + au_warn_loopback(h_file->f_path.dentry->d_sb); + if (file->f_mapping != h_file->f_mapping) { + file->f_mapping = h_file->f_mapping; + smp_mb(); /* unnecessary? */ + } + } + fi_read_unlock(file); + + err = au_do_iter(h_file, MAY_READ, kio, iov_iter); + /* todo: necessary? */ + /* file->f_ra = h_file->f_ra; */ + au_read_post(inode, h_file); + +out: + si_read_unlock(sb); + return err; +} + +static ssize_t aufs_write_iter(struct kiocb *kio, struct iov_iter *iov_iter) +{ + ssize_t err; + struct au_write_pre wpre; + struct inode *inode; + struct file *file, *h_file; + + file = kio->ki_filp; + inode = file_inode(file); + au_mtx_and_read_lock(inode); + + h_file = au_write_pre(file, /*do_ready*/1, &wpre); + err = PTR_ERR(h_file); + if (IS_ERR(h_file)) + goto out; + + err = au_do_iter(h_file, MAY_WRITE, kio, iov_iter); + au_write_post(inode, h_file, &wpre, err); + +out: + si_read_unlock(inode->i_sb); + inode_unlock(inode); + return err; +} + +static ssize_t aufs_splice_read(struct file *file, loff_t *ppos, + struct pipe_inode_info *pipe, size_t len, + unsigned int flags) +{ + ssize_t err; + struct file *h_file; + struct inode *inode; + struct super_block *sb; + + inode = file_inode(file); + sb = inode->i_sb; + si_read_lock(sb, AuLock_FLUSH | AuLock_NOPLMW); + + h_file = au_read_pre(file, /*keep_fi*/0); + err = PTR_ERR(h_file); + if (IS_ERR(h_file)) + goto out; + + err = vfsub_splice_to(h_file, ppos, pipe, len, flags); + /* todo: necessasry? */ + /* file->f_ra = h_file->f_ra; */ + au_read_post(inode, h_file); + +out: + si_read_unlock(sb); + return err; +} + +static ssize_t +aufs_splice_write(struct pipe_inode_info *pipe, struct file *file, loff_t *ppos, + size_t len, unsigned int flags) +{ + ssize_t err; + struct au_write_pre wpre; + struct inode *inode; + struct file *h_file; + + inode = file_inode(file); + au_mtx_and_read_lock(inode); + + h_file = au_write_pre(file, /*do_ready*/1, &wpre); + err = PTR_ERR(h_file); + if (IS_ERR(h_file)) + goto out; + + err = vfsub_splice_from(pipe, h_file, ppos, len, flags); + au_write_post(inode, h_file, &wpre, err); + +out: + si_read_unlock(inode->i_sb); + inode_unlock(inode); + return err; +} + +static long aufs_fallocate(struct file *file, int mode, loff_t offset, + loff_t len) +{ + long err; + struct au_write_pre wpre; + struct inode *inode; + struct file *h_file; + + inode = file_inode(file); + au_mtx_and_read_lock(inode); + + h_file = au_write_pre(file, /*do_ready*/1, &wpre); + err = PTR_ERR(h_file); + if (IS_ERR(h_file)) + goto out; + + lockdep_off(); + err = vfs_fallocate(h_file, mode, offset, len); + lockdep_on(); + au_write_post(inode, h_file, &wpre, /*written*/1); + +out: + si_read_unlock(inode->i_sb); + inode_unlock(inode); + return err; +} + +/* ---------------------------------------------------------------------- */ + +/* + * The locking order around current->mmap_sem. + * - in most and regular cases + * file I/O syscall -- aufs_read() or something + * -- si_rwsem for read -- mmap_sem + * (Note that [fdi]i_rwsem are released before mmap_sem). + * - in mmap case + * mmap(2) -- mmap_sem -- aufs_mmap() -- si_rwsem for read -- [fdi]i_rwsem + * This AB-BA order is definitly bad, but is not a problem since "si_rwsem for + * read" allows muliple processes to acquire it and [fdi]i_rwsem are not held in + * file I/O. Aufs needs to stop lockdep in aufs_mmap() though. + * It means that when aufs acquires si_rwsem for write, the process should never + * acquire mmap_sem. + * + * Actually aufs_iterate() holds [fdi]i_rwsem before mmap_sem, but this is not a + * problem either since any directory is not able to be mmap-ed. + * The similar scenario is applied to aufs_readlink() too. + */ + +#if 0 /* stop calling security_file_mmap() */ +/* cf. linux/include/linux/mman.h: calc_vm_prot_bits() */ +#define AuConv_VM_PROT(f, b) _calc_vm_trans(f, VM_##b, PROT_##b) + +static unsigned long au_arch_prot_conv(unsigned long flags) +{ + /* currently ppc64 only */ +#ifdef CONFIG_PPC64 + /* cf. linux/arch/powerpc/include/asm/mman.h */ + AuDebugOn(arch_calc_vm_prot_bits(-1) != VM_SAO); + return AuConv_VM_PROT(flags, SAO); +#else + AuDebugOn(arch_calc_vm_prot_bits(-1)); + return 0; +#endif +} + +static unsigned long au_prot_conv(unsigned long flags) +{ + return AuConv_VM_PROT(flags, READ) + | AuConv_VM_PROT(flags, WRITE) + | AuConv_VM_PROT(flags, EXEC) + | au_arch_prot_conv(flags); +} + +/* cf. linux/include/linux/mman.h: calc_vm_flag_bits() */ +#define AuConv_VM_MAP(f, b) _calc_vm_trans(f, VM_##b, MAP_##b) + +static unsigned long au_flag_conv(unsigned long flags) +{ + return AuConv_VM_MAP(flags, GROWSDOWN) + | AuConv_VM_MAP(flags, DENYWRITE) + | AuConv_VM_MAP(flags, LOCKED); +} +#endif + +static int aufs_mmap(struct file *file, struct vm_area_struct *vma) +{ + int err; + const unsigned char wlock + = (file->f_mode & FMODE_WRITE) && (vma->vm_flags & VM_SHARED); + struct super_block *sb; + struct file *h_file; + struct inode *inode; + + AuDbgVmRegion(file, vma); + + inode = file_inode(file); + sb = inode->i_sb; + lockdep_off(); + si_read_lock(sb, AuLock_NOPLMW); + + h_file = au_write_pre(file, wlock, /*wpre*/NULL); + lockdep_on(); + err = PTR_ERR(h_file); + if (IS_ERR(h_file)) + goto out; + + err = 0; + au_set_mmapped(file); + au_vm_file_reset(vma, h_file); + /* + * we cannot call security_mmap_file() here since it may acquire + * mmap_sem or i_mutex. + * + * err = security_mmap_file(h_file, au_prot_conv(vma->vm_flags), + * au_flag_conv(vma->vm_flags)); + */ + if (!err) + err = h_file->f_op->mmap(h_file, vma); + if (!err) { + au_vm_prfile_set(vma, file); + fsstack_copy_attr_atime(inode, file_inode(h_file)); + goto out_fput; /* success */ + } + au_unset_mmapped(file); + au_vm_file_reset(vma, file); + +out_fput: + lockdep_off(); + ii_write_unlock(inode); + lockdep_on(); + fput(h_file); +out: + lockdep_off(); + si_read_unlock(sb); + lockdep_on(); + AuTraceErr(err); + return err; +} + +/* ---------------------------------------------------------------------- */ + +static int aufs_fsync_nondir(struct file *file, loff_t start, loff_t end, + int datasync) +{ + int err; + struct au_write_pre wpre; + struct inode *inode; + struct file *h_file; + + err = 0; /* -EBADF; */ /* posix? */ + if (unlikely(!(file->f_mode & FMODE_WRITE))) + goto out; + + inode = file_inode(file); + au_mtx_and_read_lock(inode); + + h_file = au_write_pre(file, /*do_ready*/1, &wpre); + err = PTR_ERR(h_file); + if (IS_ERR(h_file)) + goto out_unlock; + + err = vfsub_fsync(h_file, &h_file->f_path, datasync); + au_write_post(inode, h_file, &wpre, /*written*/0); + +out_unlock: + si_read_unlock(inode->i_sb); + inode_unlock(inode); +out: + return err; +} + +/* no one supports this operation, currently */ +#if 0 +static int aufs_aio_fsync_nondir(struct kiocb *kio, int datasync) +{ + int err; + struct au_write_pre wpre; + struct inode *inode, *h_inode; + struct file *file, *h_file; + + err = 0; /* -EBADF; */ /* posix? */ + if (unlikely(!(file->f_mode & FMODE_WRITE))) + goto out; + + file = kio->ki_filp; + inode = file_inode(file); + au_mtx_and_read_lock(inode); + + h_file = au_write_pre(file, /*do_ready*/1, &wpre); + err = PTR_ERR(h_file); + if (IS_ERR(h_file)) + goto out_unlock; + + err = -ENOSYS; + h_file = au_hf_top(file); + if (h_file->f_op->aio_fsync) { + h_inode = file_inode(h_file); + if (!is_sync_kiocb(kio)) { + get_file(h_file); + fput(file); + } + kio->ki_filp = h_file; + err = h_file->f_op->aio_fsync(kio, datasync); + inode_lock_nested(h_inode, AuLsc_I_CHILD); + if (!err) + vfsub_update_h_iattr(&h_file->f_path, /*did*/NULL); + /*ignore*/ + inode_unlock(h_inode); + } + au_write_post(inode, h_file, &wpre, /*written*/0); + +out_unlock: + si_read_unlock(inode->sb); + inode_unlock(inode); +out: + return err; +} +#endif + +static int aufs_fasync(int fd, struct file *file, int flag) +{ + int err; + struct file *h_file; + struct super_block *sb; + + sb = file->f_path.dentry->d_sb; + si_read_lock(sb, AuLock_FLUSH | AuLock_NOPLMW); + + h_file = au_read_pre(file, /*keep_fi*/0); + err = PTR_ERR(h_file); + if (IS_ERR(h_file)) + goto out; + + if (h_file->f_op->fasync) + err = h_file->f_op->fasync(fd, h_file, flag); + fput(h_file); /* instead of au_read_post() */ + +out: + si_read_unlock(sb); + return err; +} + +static int aufs_setfl(struct file *file, unsigned long arg) +{ + int err; + struct file *h_file; + struct super_block *sb; + + sb = file->f_path.dentry->d_sb; + si_read_lock(sb, AuLock_FLUSH | AuLock_NOPLMW); + + h_file = au_read_pre(file, /*keep_fi*/0); + err = PTR_ERR(h_file); + if (IS_ERR(h_file)) + goto out; + + arg |= vfsub_file_flags(file) & FASYNC; /* stop calling h_file->fasync */ + err = setfl(/*unused fd*/-1, h_file, arg); + fput(h_file); /* instead of au_read_post() */ + +out: + si_read_unlock(sb); + return err; +} + +/* ---------------------------------------------------------------------- */ + +/* no one supports this operation, currently */ +#if 0 +static ssize_t aufs_sendpage(struct file *file, struct page *page, int offset, + size_t len, loff_t *pos, int more) +{ +} +#endif + +/* ---------------------------------------------------------------------- */ + +const struct file_operations aufs_file_fop = { + .owner = THIS_MODULE, + + .llseek = default_llseek, + + .read = aufs_read, + .write = aufs_write, + .read_iter = aufs_read_iter, + .write_iter = aufs_write_iter, + +#ifdef CONFIG_AUFS_POLL + .poll = aufs_poll, +#endif + .unlocked_ioctl = aufs_ioctl_nondir, +#ifdef CONFIG_COMPAT + .compat_ioctl = aufs_compat_ioctl_nondir, +#endif + .mmap = aufs_mmap, + .open = aufs_open_nondir, + .flush = aufs_flush_nondir, + .release = aufs_release_nondir, + .fsync = aufs_fsync_nondir, + /* .aio_fsync = aufs_aio_fsync_nondir, */ + .fasync = aufs_fasync, + /* .sendpage = aufs_sendpage, */ + .setfl = aufs_setfl, + .splice_write = aufs_splice_write, + .splice_read = aufs_splice_read, +#if 0 + .aio_splice_write = aufs_aio_splice_write, + .aio_splice_read = aufs_aio_splice_read, +#endif + .fallocate = aufs_fallocate +}; --- linux-4.8.0.orig/fs/aufs/fhsm.c +++ linux-4.8.0/fs/aufs/fhsm.c @@ -0,0 +1,426 @@ +/* + * Copyright (C) 2011-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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 + */ + +/* + * File-based Hierarchy Storage Management + */ + +#include +#include +#include +#include +#include "aufs.h" + +static aufs_bindex_t au_fhsm_bottom(struct super_block *sb) +{ + struct au_sbinfo *sbinfo; + struct au_fhsm *fhsm; + + SiMustAnyLock(sb); + + sbinfo = au_sbi(sb); + fhsm = &sbinfo->si_fhsm; + AuDebugOn(!fhsm); + return fhsm->fhsm_bottom; +} + +void au_fhsm_set_bottom(struct super_block *sb, aufs_bindex_t bindex) +{ + struct au_sbinfo *sbinfo; + struct au_fhsm *fhsm; + + SiMustWriteLock(sb); + + sbinfo = au_sbi(sb); + fhsm = &sbinfo->si_fhsm; + AuDebugOn(!fhsm); + fhsm->fhsm_bottom = bindex; +} + +/* ---------------------------------------------------------------------- */ + +static int au_fhsm_test_jiffy(struct au_sbinfo *sbinfo, struct au_branch *br) +{ + struct au_br_fhsm *bf; + + bf = br->br_fhsm; + MtxMustLock(&bf->bf_lock); + + return !bf->bf_readable + || time_after(jiffies, + bf->bf_jiffy + sbinfo->si_fhsm.fhsm_expire); +} + +/* ---------------------------------------------------------------------- */ + +static void au_fhsm_notify(struct super_block *sb, int val) +{ + struct au_sbinfo *sbinfo; + struct au_fhsm *fhsm; + + SiMustAnyLock(sb); + + sbinfo = au_sbi(sb); + fhsm = &sbinfo->si_fhsm; + if (au_fhsm_pid(fhsm) + && atomic_read(&fhsm->fhsm_readable) != -1) { + atomic_set(&fhsm->fhsm_readable, val); + if (val) + wake_up(&fhsm->fhsm_wqh); + } +} + +static int au_fhsm_stfs(struct super_block *sb, aufs_bindex_t bindex, + struct aufs_stfs *rstfs, int do_lock, int do_notify) +{ + int err; + struct au_branch *br; + struct au_br_fhsm *bf; + + br = au_sbr(sb, bindex); + AuDebugOn(au_br_rdonly(br)); + bf = br->br_fhsm; + AuDebugOn(!bf); + + if (do_lock) + mutex_lock(&bf->bf_lock); + else + MtxMustLock(&bf->bf_lock); + + /* sb->s_root for NFS is unreliable */ + err = au_br_stfs(br, &bf->bf_stfs); + if (unlikely(err)) { + AuErr1("FHSM failed (%d), b%d, ignored.\n", bindex, err); + goto out; + } + + bf->bf_jiffy = jiffies; + bf->bf_readable = 1; + if (do_notify) + au_fhsm_notify(sb, /*val*/1); + if (rstfs) + *rstfs = bf->bf_stfs; + +out: + if (do_lock) + mutex_unlock(&bf->bf_lock); + au_fhsm_notify(sb, /*val*/1); + + return err; +} + +void au_fhsm_wrote(struct super_block *sb, aufs_bindex_t bindex, int force) +{ + int err; + struct au_sbinfo *sbinfo; + struct au_fhsm *fhsm; + struct au_branch *br; + struct au_br_fhsm *bf; + + AuDbg("b%d, force %d\n", bindex, force); + SiMustAnyLock(sb); + + sbinfo = au_sbi(sb); + fhsm = &sbinfo->si_fhsm; + if (!au_ftest_si(sbinfo, FHSM) + || fhsm->fhsm_bottom == bindex) + return; + + br = au_sbr(sb, bindex); + bf = br->br_fhsm; + AuDebugOn(!bf); + mutex_lock(&bf->bf_lock); + if (force + || au_fhsm_pid(fhsm) + || au_fhsm_test_jiffy(sbinfo, br)) + err = au_fhsm_stfs(sb, bindex, /*rstfs*/NULL, /*do_lock*/0, + /*do_notify*/1); + mutex_unlock(&bf->bf_lock); +} + +void au_fhsm_wrote_all(struct super_block *sb, int force) +{ + aufs_bindex_t bindex, bbot; + struct au_branch *br; + + /* exclude the bottom */ + bbot = au_fhsm_bottom(sb); + for (bindex = 0; bindex < bbot; bindex++) { + br = au_sbr(sb, bindex); + if (au_br_fhsm(br->br_perm)) + au_fhsm_wrote(sb, bindex, force); + } +} + +/* ---------------------------------------------------------------------- */ + +static unsigned int au_fhsm_poll(struct file *file, + struct poll_table_struct *wait) +{ + unsigned int mask; + struct au_sbinfo *sbinfo; + struct au_fhsm *fhsm; + + mask = 0; + sbinfo = file->private_data; + fhsm = &sbinfo->si_fhsm; + poll_wait(file, &fhsm->fhsm_wqh, wait); + if (atomic_read(&fhsm->fhsm_readable)) + mask = POLLIN /* | POLLRDNORM */; + + AuTraceErr((int)mask); + return mask; +} + +static int au_fhsm_do_read_one(struct aufs_stbr __user *stbr, + struct aufs_stfs *stfs, __s16 brid) +{ + int err; + + err = copy_to_user(&stbr->stfs, stfs, sizeof(*stfs)); + if (!err) + err = __put_user(brid, &stbr->brid); + if (unlikely(err)) + err = -EFAULT; + + return err; +} + +static ssize_t au_fhsm_do_read(struct super_block *sb, + struct aufs_stbr __user *stbr, size_t count) +{ + ssize_t err; + int nstbr; + aufs_bindex_t bindex, bbot; + struct au_branch *br; + struct au_br_fhsm *bf; + + /* except the bottom branch */ + err = 0; + nstbr = 0; + bbot = au_fhsm_bottom(sb); + for (bindex = 0; !err && bindex < bbot; bindex++) { + br = au_sbr(sb, bindex); + if (!au_br_fhsm(br->br_perm)) + continue; + + bf = br->br_fhsm; + mutex_lock(&bf->bf_lock); + if (bf->bf_readable) { + err = -EFAULT; + if (count >= sizeof(*stbr)) + err = au_fhsm_do_read_one(stbr++, &bf->bf_stfs, + br->br_id); + if (!err) { + bf->bf_readable = 0; + count -= sizeof(*stbr); + nstbr++; + } + } + mutex_unlock(&bf->bf_lock); + } + if (!err) + err = sizeof(*stbr) * nstbr; + + return err; +} + +static ssize_t au_fhsm_read(struct file *file, char __user *buf, size_t count, + loff_t *pos) +{ + ssize_t err; + int readable; + aufs_bindex_t nfhsm, bindex, bbot; + struct au_sbinfo *sbinfo; + struct au_fhsm *fhsm; + struct au_branch *br; + struct super_block *sb; + + err = 0; + sbinfo = file->private_data; + fhsm = &sbinfo->si_fhsm; +need_data: + spin_lock_irq(&fhsm->fhsm_wqh.lock); + if (!atomic_read(&fhsm->fhsm_readable)) { + if (vfsub_file_flags(file) & O_NONBLOCK) + err = -EAGAIN; + else + err = wait_event_interruptible_locked_irq + (fhsm->fhsm_wqh, + atomic_read(&fhsm->fhsm_readable)); + } + spin_unlock_irq(&fhsm->fhsm_wqh.lock); + if (unlikely(err)) + goto out; + + /* sb may already be dead */ + au_rw_read_lock(&sbinfo->si_rwsem); + readable = atomic_read(&fhsm->fhsm_readable); + if (readable > 0) { + sb = sbinfo->si_sb; + AuDebugOn(!sb); + /* exclude the bottom branch */ + nfhsm = 0; + bbot = au_fhsm_bottom(sb); + for (bindex = 0; bindex < bbot; bindex++) { + br = au_sbr(sb, bindex); + if (au_br_fhsm(br->br_perm)) + nfhsm++; + } + err = -EMSGSIZE; + if (nfhsm * sizeof(struct aufs_stbr) <= count) { + atomic_set(&fhsm->fhsm_readable, 0); + err = au_fhsm_do_read(sbinfo->si_sb, (void __user *)buf, + count); + } + } + au_rw_read_unlock(&sbinfo->si_rwsem); + if (!readable) + goto need_data; + +out: + return err; +} + +static int au_fhsm_release(struct inode *inode, struct file *file) +{ + struct au_sbinfo *sbinfo; + struct au_fhsm *fhsm; + + /* sb may already be dead */ + sbinfo = file->private_data; + fhsm = &sbinfo->si_fhsm; + spin_lock(&fhsm->fhsm_spin); + fhsm->fhsm_pid = 0; + spin_unlock(&fhsm->fhsm_spin); + kobject_put(&sbinfo->si_kobj); + + return 0; +} + +static const struct file_operations au_fhsm_fops = { + .owner = THIS_MODULE, + .llseek = noop_llseek, + .read = au_fhsm_read, + .poll = au_fhsm_poll, + .release = au_fhsm_release +}; + +int au_fhsm_fd(struct super_block *sb, int oflags) +{ + int err, fd; + struct au_sbinfo *sbinfo; + struct au_fhsm *fhsm; + + err = -EPERM; + if (unlikely(!capable(CAP_SYS_ADMIN))) + goto out; + + err = -EINVAL; + if (unlikely(oflags & ~(O_CLOEXEC | O_NONBLOCK))) + goto out; + + err = 0; + sbinfo = au_sbi(sb); + fhsm = &sbinfo->si_fhsm; + spin_lock(&fhsm->fhsm_spin); + if (!fhsm->fhsm_pid) + fhsm->fhsm_pid = current->pid; + else + err = -EBUSY; + spin_unlock(&fhsm->fhsm_spin); + if (unlikely(err)) + goto out; + + oflags |= O_RDONLY; + /* oflags |= FMODE_NONOTIFY; */ + fd = anon_inode_getfd("[aufs_fhsm]", &au_fhsm_fops, sbinfo, oflags); + err = fd; + if (unlikely(fd < 0)) + goto out_pid; + + /* succeed reglardless 'fhsm' status */ + kobject_get(&sbinfo->si_kobj); + si_noflush_read_lock(sb); + if (au_ftest_si(sbinfo, FHSM)) + au_fhsm_wrote_all(sb, /*force*/0); + si_read_unlock(sb); + goto out; /* success */ + +out_pid: + spin_lock(&fhsm->fhsm_spin); + fhsm->fhsm_pid = 0; + spin_unlock(&fhsm->fhsm_spin); +out: + AuTraceErr(err); + return err; +} + +/* ---------------------------------------------------------------------- */ + +int au_fhsm_br_alloc(struct au_branch *br) +{ + int err; + + err = 0; + br->br_fhsm = kmalloc(sizeof(*br->br_fhsm), GFP_NOFS); + if (br->br_fhsm) + au_br_fhsm_init(br->br_fhsm); + else + err = -ENOMEM; + + return err; +} + +/* ---------------------------------------------------------------------- */ + +void au_fhsm_fin(struct super_block *sb) +{ + au_fhsm_notify(sb, /*val*/-1); +} + +void au_fhsm_init(struct au_sbinfo *sbinfo) +{ + struct au_fhsm *fhsm; + + fhsm = &sbinfo->si_fhsm; + spin_lock_init(&fhsm->fhsm_spin); + init_waitqueue_head(&fhsm->fhsm_wqh); + atomic_set(&fhsm->fhsm_readable, 0); + fhsm->fhsm_expire + = msecs_to_jiffies(AUFS_FHSM_CACHE_DEF_SEC * MSEC_PER_SEC); + fhsm->fhsm_bottom = -1; +} + +void au_fhsm_set(struct au_sbinfo *sbinfo, unsigned int sec) +{ + sbinfo->si_fhsm.fhsm_expire + = msecs_to_jiffies(sec * MSEC_PER_SEC); +} + +void au_fhsm_show(struct seq_file *seq, struct au_sbinfo *sbinfo) +{ + unsigned int u; + + if (!au_ftest_si(sbinfo, FHSM)) + return; + + u = jiffies_to_msecs(sbinfo->si_fhsm.fhsm_expire) / MSEC_PER_SEC; + if (u != AUFS_FHSM_CACHE_DEF_SEC) + seq_printf(seq, ",fhsm_sec=%u", u); +} --- linux-4.8.0.orig/fs/aufs/file.c +++ linux-4.8.0/fs/aufs/file.c @@ -0,0 +1,857 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * handling file/dir, and address_space operation + */ + +#ifdef CONFIG_AUFS_DEBUG +#include +#endif +#include +#include "aufs.h" + +/* drop flags for writing */ +unsigned int au_file_roflags(unsigned int flags) +{ + flags &= ~(O_WRONLY | O_RDWR | O_APPEND | O_CREAT | O_TRUNC); + flags |= O_RDONLY | O_NOATIME; + return flags; +} + +/* common functions to regular file and dir */ +struct file *au_h_open(struct dentry *dentry, aufs_bindex_t bindex, int flags, + struct file *file, int force_wr) +{ + struct file *h_file; + struct dentry *h_dentry; + struct inode *h_inode; + struct super_block *sb; + struct au_branch *br; + struct path h_path; + int err; + + /* a race condition can happen between open and unlink/rmdir */ + h_file = ERR_PTR(-ENOENT); + h_dentry = au_h_dptr(dentry, bindex); + if (au_test_nfsd() && (!h_dentry || d_is_negative(h_dentry))) + goto out; + h_inode = d_inode(h_dentry); + spin_lock(&h_dentry->d_lock); + err = (!d_unhashed(dentry) && d_unlinked(h_dentry)) + /* || !d_inode(dentry)->i_nlink */ + ; + spin_unlock(&h_dentry->d_lock); + if (unlikely(err)) + goto out; + + sb = dentry->d_sb; + br = au_sbr(sb, bindex); + err = au_br_test_oflag(flags, br); + h_file = ERR_PTR(err); + if (unlikely(err)) + goto out; + + /* drop flags for writing */ + if (au_test_ro(sb, bindex, d_inode(dentry))) { + if (force_wr && !(flags & O_WRONLY)) + force_wr = 0; + flags = au_file_roflags(flags); + if (force_wr) { + h_file = ERR_PTR(-EROFS); + flags = au_file_roflags(flags); + if (unlikely(vfsub_native_ro(h_inode) + || IS_APPEND(h_inode))) + goto out; + flags &= ~O_ACCMODE; + flags |= O_WRONLY; + } + } + flags &= ~O_CREAT; + au_br_get(br); + h_path.dentry = h_dentry; + h_path.mnt = au_br_mnt(br); + h_file = vfsub_dentry_open(&h_path, flags); + if (IS_ERR(h_file)) + goto out_br; + + if (flags & __FMODE_EXEC) { + err = deny_write_access(h_file); + if (unlikely(err)) { + fput(h_file); + h_file = ERR_PTR(err); + goto out_br; + } + } + fsnotify_open(h_file); + goto out; /* success */ + +out_br: + au_br_put(br); +out: + return h_file; +} + +static int au_cmoo(struct dentry *dentry) +{ + int err, cmoo; + unsigned int udba; + struct path h_path; + struct au_pin pin; + struct au_cp_generic cpg = { + .dentry = dentry, + .bdst = -1, + .bsrc = -1, + .len = -1, + .pin = &pin, + .flags = AuCpup_DTIME | AuCpup_HOPEN + }; + struct inode *delegated; + struct super_block *sb; + struct au_sbinfo *sbinfo; + struct au_fhsm *fhsm; + pid_t pid; + struct au_branch *br; + struct dentry *parent; + struct au_hinode *hdir; + + DiMustWriteLock(dentry); + IiMustWriteLock(d_inode(dentry)); + + err = 0; + if (IS_ROOT(dentry)) + goto out; + cpg.bsrc = au_dbtop(dentry); + if (!cpg.bsrc) + goto out; + + sb = dentry->d_sb; + sbinfo = au_sbi(sb); + fhsm = &sbinfo->si_fhsm; + pid = au_fhsm_pid(fhsm); + if (pid + && (current->pid == pid + || current->real_parent->pid == pid)) + goto out; + + br = au_sbr(sb, cpg.bsrc); + cmoo = au_br_cmoo(br->br_perm); + if (!cmoo) + goto out; + if (!d_is_reg(dentry)) + cmoo &= AuBrAttr_COO_ALL; + if (!cmoo) + goto out; + + parent = dget_parent(dentry); + di_write_lock_parent(parent); + err = au_wbr_do_copyup_bu(dentry, cpg.bsrc - 1); + cpg.bdst = err; + if (unlikely(err < 0)) { + err = 0; /* there is no upper writable branch */ + goto out_dgrade; + } + AuDbg("bsrc %d, bdst %d\n", cpg.bsrc, cpg.bdst); + + /* do not respect the coo attrib for the target branch */ + err = au_cpup_dirs(dentry, cpg.bdst); + if (unlikely(err)) + goto out_dgrade; + + di_downgrade_lock(parent, AuLock_IR); + udba = au_opt_udba(sb); + err = au_pin(&pin, dentry, cpg.bdst, udba, + AuPin_DI_LOCKED | AuPin_MNT_WRITE); + if (unlikely(err)) + goto out_parent; + + err = au_sio_cpup_simple(&cpg); + au_unpin(&pin); + if (unlikely(err)) + goto out_parent; + if (!(cmoo & AuBrWAttr_MOO)) + goto out_parent; /* success */ + + err = au_pin(&pin, dentry, cpg.bsrc, udba, + AuPin_DI_LOCKED | AuPin_MNT_WRITE); + if (unlikely(err)) + goto out_parent; + + h_path.mnt = au_br_mnt(br); + h_path.dentry = au_h_dptr(dentry, cpg.bsrc); + hdir = au_hi(d_inode(parent), cpg.bsrc); + delegated = NULL; + err = vfsub_unlink(hdir->hi_inode, &h_path, &delegated, /*force*/1); + au_unpin(&pin); + /* todo: keep h_dentry or not? */ + if (unlikely(err == -EWOULDBLOCK)) { + pr_warn("cannot retry for NFSv4 delegation" + " for an internal unlink\n"); + iput(delegated); + } + if (unlikely(err)) { + pr_err("unlink %pd after coo failed (%d), ignored\n", + dentry, err); + err = 0; + } + goto out_parent; /* success */ + +out_dgrade: + di_downgrade_lock(parent, AuLock_IR); +out_parent: + di_read_unlock(parent, AuLock_IR); + dput(parent); +out: + AuTraceErr(err); + return err; +} + +int au_do_open(struct file *file, struct au_do_open_args *args) +{ + int err, no_lock = args->no_lock; + struct dentry *dentry; + struct au_finfo *finfo; + + if (!no_lock) + err = au_finfo_init(file, args->fidir); + else { + lockdep_off(); + err = au_finfo_init(file, args->fidir); + lockdep_on(); + } + if (unlikely(err)) + goto out; + + dentry = file->f_path.dentry; + AuDebugOn(IS_ERR_OR_NULL(dentry)); + if (!no_lock) { + di_write_lock_child(dentry); + err = au_cmoo(dentry); + di_downgrade_lock(dentry, AuLock_IR); + if (!err) + err = args->open(file, vfsub_file_flags(file), NULL); + di_read_unlock(dentry, AuLock_IR); + } else { + err = au_cmoo(dentry); + if (!err) + err = args->open(file, vfsub_file_flags(file), + args->h_file); + if (!err && au_fbtop(file) != au_dbtop(dentry)) + /* + * cmoo happens after h_file was opened. + * need to refresh file later. + */ + atomic_dec(&au_fi(file)->fi_generation); + } + + finfo = au_fi(file); + if (!err) { + finfo->fi_file = file; + au_sphl_add(&finfo->fi_hlist, + &au_sbi(file->f_path.dentry->d_sb)->si_files); + } + if (!no_lock) + fi_write_unlock(file); + else { + lockdep_off(); + fi_write_unlock(file); + lockdep_on(); + } + if (unlikely(err)) { + finfo->fi_hdir = NULL; + au_finfo_fin(file, /*atonce*/0); + } + +out: + return err; +} + +int au_reopen_nondir(struct file *file) +{ + int err; + aufs_bindex_t btop; + struct dentry *dentry; + struct file *h_file, *h_file_tmp; + + dentry = file->f_path.dentry; + btop = au_dbtop(dentry); + h_file_tmp = NULL; + if (au_fbtop(file) == btop) { + h_file = au_hf_top(file); + if (file->f_mode == h_file->f_mode) + return 0; /* success */ + h_file_tmp = h_file; + get_file(h_file_tmp); + au_set_h_fptr(file, btop, NULL); + } + AuDebugOn(au_fi(file)->fi_hdir); + /* + * it can happen + * file exists on both of rw and ro + * open --> dbtop and fbtop are both 0 + * prepend a branch as rw, "rw" become ro + * remove rw/file + * delete the top branch, "rw" becomes rw again + * --> dbtop is 1, fbtop is still 0 + * write --> fbtop is 0 but dbtop is 1 + */ + /* AuDebugOn(au_fbtop(file) < btop); */ + + h_file = au_h_open(dentry, btop, vfsub_file_flags(file) & ~O_TRUNC, + file, /*force_wr*/0); + err = PTR_ERR(h_file); + if (IS_ERR(h_file)) { + if (h_file_tmp) { + au_sbr_get(dentry->d_sb, btop); + au_set_h_fptr(file, btop, h_file_tmp); + h_file_tmp = NULL; + } + goto out; /* todo: close all? */ + } + + err = 0; + au_set_fbtop(file, btop); + au_set_h_fptr(file, btop, h_file); + au_update_figen(file); + /* todo: necessary? */ + /* file->f_ra = h_file->f_ra; */ + +out: + if (h_file_tmp) + fput(h_file_tmp); + return err; +} + +/* ---------------------------------------------------------------------- */ + +static int au_reopen_wh(struct file *file, aufs_bindex_t btgt, + struct dentry *hi_wh) +{ + int err; + aufs_bindex_t btop; + struct au_dinfo *dinfo; + struct dentry *h_dentry; + struct au_hdentry *hdp; + + dinfo = au_di(file->f_path.dentry); + AuRwMustWriteLock(&dinfo->di_rwsem); + + btop = dinfo->di_btop; + dinfo->di_btop = btgt; + hdp = au_hdentry(dinfo, btgt); + h_dentry = hdp->hd_dentry; + hdp->hd_dentry = hi_wh; + err = au_reopen_nondir(file); + hdp->hd_dentry = h_dentry; + dinfo->di_btop = btop; + + return err; +} + +static int au_ready_to_write_wh(struct file *file, loff_t len, + aufs_bindex_t bcpup, struct au_pin *pin) +{ + int err; + struct inode *inode, *h_inode; + struct dentry *h_dentry, *hi_wh; + struct au_cp_generic cpg = { + .dentry = file->f_path.dentry, + .bdst = bcpup, + .bsrc = -1, + .len = len, + .pin = pin + }; + + au_update_dbtop(cpg.dentry); + inode = d_inode(cpg.dentry); + h_inode = NULL; + if (au_dbtop(cpg.dentry) <= bcpup + && au_dbbot(cpg.dentry) >= bcpup) { + h_dentry = au_h_dptr(cpg.dentry, bcpup); + if (h_dentry && d_is_positive(h_dentry)) + h_inode = d_inode(h_dentry); + } + hi_wh = au_hi_wh(inode, bcpup); + if (!hi_wh && !h_inode) + err = au_sio_cpup_wh(&cpg, file); + else + /* already copied-up after unlink */ + err = au_reopen_wh(file, bcpup, hi_wh); + + if (!err + && (inode->i_nlink > 1 + || (inode->i_state & I_LINKABLE)) + && au_opt_test(au_mntflags(cpg.dentry->d_sb), PLINK)) + au_plink_append(inode, bcpup, au_h_dptr(cpg.dentry, bcpup)); + + return err; +} + +/* + * prepare the @file for writing. + */ +int au_ready_to_write(struct file *file, loff_t len, struct au_pin *pin) +{ + int err; + aufs_bindex_t dbtop; + struct dentry *parent; + struct inode *inode; + struct super_block *sb; + struct file *h_file; + struct au_cp_generic cpg = { + .dentry = file->f_path.dentry, + .bdst = -1, + .bsrc = -1, + .len = len, + .pin = pin, + .flags = AuCpup_DTIME + }; + + sb = cpg.dentry->d_sb; + inode = d_inode(cpg.dentry); + cpg.bsrc = au_fbtop(file); + err = au_test_ro(sb, cpg.bsrc, inode); + if (!err && (au_hf_top(file)->f_mode & FMODE_WRITE)) { + err = au_pin(pin, cpg.dentry, cpg.bsrc, AuOpt_UDBA_NONE, + /*flags*/0); + goto out; + } + + /* need to cpup or reopen */ + parent = dget_parent(cpg.dentry); + di_write_lock_parent(parent); + err = AuWbrCopyup(au_sbi(sb), cpg.dentry); + cpg.bdst = err; + if (unlikely(err < 0)) + goto out_dgrade; + err = 0; + + if (!d_unhashed(cpg.dentry) && !au_h_dptr(parent, cpg.bdst)) { + err = au_cpup_dirs(cpg.dentry, cpg.bdst); + if (unlikely(err)) + goto out_dgrade; + } + + err = au_pin(pin, cpg.dentry, cpg.bdst, AuOpt_UDBA_NONE, + AuPin_DI_LOCKED | AuPin_MNT_WRITE); + if (unlikely(err)) + goto out_dgrade; + + dbtop = au_dbtop(cpg.dentry); + if (dbtop <= cpg.bdst) + cpg.bsrc = cpg.bdst; + + if (dbtop <= cpg.bdst /* just reopen */ + || !d_unhashed(cpg.dentry) /* copyup and reopen */ + ) { + h_file = au_h_open_pre(cpg.dentry, cpg.bsrc, /*force_wr*/0); + if (IS_ERR(h_file)) + err = PTR_ERR(h_file); + else { + di_downgrade_lock(parent, AuLock_IR); + if (dbtop > cpg.bdst) + err = au_sio_cpup_simple(&cpg); + if (!err) + err = au_reopen_nondir(file); + au_h_open_post(cpg.dentry, cpg.bsrc, h_file); + } + } else { /* copyup as wh and reopen */ + /* + * since writable hfsplus branch is not supported, + * h_open_pre/post() are unnecessary. + */ + err = au_ready_to_write_wh(file, len, cpg.bdst, pin); + di_downgrade_lock(parent, AuLock_IR); + } + + if (!err) { + au_pin_set_parent_lflag(pin, /*lflag*/0); + goto out_dput; /* success */ + } + au_unpin(pin); + goto out_unlock; + +out_dgrade: + di_downgrade_lock(parent, AuLock_IR); +out_unlock: + di_read_unlock(parent, AuLock_IR); +out_dput: + dput(parent); +out: + return err; +} + +/* ---------------------------------------------------------------------- */ + +int au_do_flush(struct file *file, fl_owner_t id, + int (*flush)(struct file *file, fl_owner_t id)) +{ + int err; + struct super_block *sb; + struct inode *inode; + + inode = file_inode(file); + sb = inode->i_sb; + si_noflush_read_lock(sb); + fi_read_lock(file); + ii_read_lock_child(inode); + + err = flush(file, id); + au_cpup_attr_timesizes(inode); + + ii_read_unlock(inode); + fi_read_unlock(file); + si_read_unlock(sb); + return err; +} + +/* ---------------------------------------------------------------------- */ + +static int au_file_refresh_by_inode(struct file *file, int *need_reopen) +{ + int err; + struct au_pin pin; + struct au_finfo *finfo; + struct dentry *parent, *hi_wh; + struct inode *inode; + struct super_block *sb; + struct au_cp_generic cpg = { + .dentry = file->f_path.dentry, + .bdst = -1, + .bsrc = -1, + .len = -1, + .pin = &pin, + .flags = AuCpup_DTIME + }; + + FiMustWriteLock(file); + + err = 0; + finfo = au_fi(file); + sb = cpg.dentry->d_sb; + inode = d_inode(cpg.dentry); + cpg.bdst = au_ibtop(inode); + if (cpg.bdst == finfo->fi_btop || IS_ROOT(cpg.dentry)) + goto out; + + parent = dget_parent(cpg.dentry); + if (au_test_ro(sb, cpg.bdst, inode)) { + di_read_lock_parent(parent, !AuLock_IR); + err = AuWbrCopyup(au_sbi(sb), cpg.dentry); + cpg.bdst = err; + di_read_unlock(parent, !AuLock_IR); + if (unlikely(err < 0)) + goto out_parent; + err = 0; + } + + di_read_lock_parent(parent, AuLock_IR); + hi_wh = au_hi_wh(inode, cpg.bdst); + if (!S_ISDIR(inode->i_mode) + && au_opt_test(au_mntflags(sb), PLINK) + && au_plink_test(inode) + && !d_unhashed(cpg.dentry) + && cpg.bdst < au_dbtop(cpg.dentry)) { + err = au_test_and_cpup_dirs(cpg.dentry, cpg.bdst); + if (unlikely(err)) + goto out_unlock; + + /* always superio. */ + err = au_pin(&pin, cpg.dentry, cpg.bdst, AuOpt_UDBA_NONE, + AuPin_DI_LOCKED | AuPin_MNT_WRITE); + if (!err) { + err = au_sio_cpup_simple(&cpg); + au_unpin(&pin); + } + } else if (hi_wh) { + /* already copied-up after unlink */ + err = au_reopen_wh(file, cpg.bdst, hi_wh); + *need_reopen = 0; + } + +out_unlock: + di_read_unlock(parent, AuLock_IR); +out_parent: + dput(parent); +out: + return err; +} + +static void au_do_refresh_dir(struct file *file) +{ + int execed; + aufs_bindex_t bindex, bbot, new_bindex, brid; + struct au_hfile *p, tmp, *q; + struct au_finfo *finfo; + struct super_block *sb; + struct au_fidir *fidir; + + FiMustWriteLock(file); + + sb = file->f_path.dentry->d_sb; + finfo = au_fi(file); + fidir = finfo->fi_hdir; + AuDebugOn(!fidir); + p = fidir->fd_hfile + finfo->fi_btop; + brid = p->hf_br->br_id; + bbot = fidir->fd_bbot; + for (bindex = finfo->fi_btop; bindex <= bbot; bindex++, p++) { + if (!p->hf_file) + continue; + + new_bindex = au_br_index(sb, p->hf_br->br_id); + if (new_bindex == bindex) + continue; + if (new_bindex < 0) { + au_set_h_fptr(file, bindex, NULL); + continue; + } + + /* swap two lower inode, and loop again */ + q = fidir->fd_hfile + new_bindex; + tmp = *q; + *q = *p; + *p = tmp; + if (tmp.hf_file) { + bindex--; + p--; + } + } + + execed = vfsub_file_execed(file); + p = fidir->fd_hfile; + if (!au_test_mmapped(file) && !d_unlinked(file->f_path.dentry)) { + bbot = au_sbbot(sb); + for (finfo->fi_btop = 0; finfo->fi_btop <= bbot; + finfo->fi_btop++, p++) + if (p->hf_file) { + if (file_inode(p->hf_file)) + break; + au_hfput(p, execed); + } + } else { + bbot = au_br_index(sb, brid); + for (finfo->fi_btop = 0; finfo->fi_btop < bbot; + finfo->fi_btop++, p++) + if (p->hf_file) + au_hfput(p, execed); + bbot = au_sbbot(sb); + } + + p = fidir->fd_hfile + bbot; + for (fidir->fd_bbot = bbot; fidir->fd_bbot >= finfo->fi_btop; + fidir->fd_bbot--, p--) + if (p->hf_file) { + if (file_inode(p->hf_file)) + break; + au_hfput(p, execed); + } + AuDebugOn(fidir->fd_bbot < finfo->fi_btop); +} + +/* + * after branch manipulating, refresh the file. + */ +static int refresh_file(struct file *file, int (*reopen)(struct file *file)) +{ + int err, need_reopen, nbr; + aufs_bindex_t bbot, bindex; + struct dentry *dentry; + struct super_block *sb; + struct au_finfo *finfo; + struct au_hfile *hfile; + + dentry = file->f_path.dentry; + sb = dentry->d_sb; + nbr = au_sbbot(sb) + 1; + finfo = au_fi(file); + if (!finfo->fi_hdir) { + hfile = &finfo->fi_htop; + AuDebugOn(!hfile->hf_file); + bindex = au_br_index(sb, hfile->hf_br->br_id); + AuDebugOn(bindex < 0); + if (bindex != finfo->fi_btop) + au_set_fbtop(file, bindex); + } else { + err = au_fidir_realloc(finfo, nbr, /*may_shrink*/0); + if (unlikely(err)) + goto out; + au_do_refresh_dir(file); + } + + err = 0; + need_reopen = 1; + if (!au_test_mmapped(file)) + err = au_file_refresh_by_inode(file, &need_reopen); + if (finfo->fi_hdir) + /* harmless if err */ + au_fidir_realloc(finfo, nbr, /*may_shrink*/1); + if (!err && need_reopen && !d_unlinked(dentry)) + err = reopen(file); + if (!err) { + au_update_figen(file); + goto out; /* success */ + } + + /* error, close all lower files */ + if (finfo->fi_hdir) { + bbot = au_fbbot_dir(file); + for (bindex = au_fbtop(file); bindex <= bbot; bindex++) + au_set_h_fptr(file, bindex, NULL); + } + +out: + return err; +} + +/* common function to regular file and dir */ +int au_reval_and_lock_fdi(struct file *file, int (*reopen)(struct file *file), + int wlock) +{ + int err; + unsigned int sigen, figen; + aufs_bindex_t btop; + unsigned char pseudo_link; + struct dentry *dentry; + struct inode *inode; + + err = 0; + dentry = file->f_path.dentry; + inode = d_inode(dentry); + sigen = au_sigen(dentry->d_sb); + fi_write_lock(file); + figen = au_figen(file); + di_write_lock_child(dentry); + btop = au_dbtop(dentry); + pseudo_link = (btop != au_ibtop(inode)); + if (sigen == figen && !pseudo_link && au_fbtop(file) == btop) { + if (!wlock) { + di_downgrade_lock(dentry, AuLock_IR); + fi_downgrade_lock(file); + } + goto out; /* success */ + } + + AuDbg("sigen %d, figen %d\n", sigen, figen); + if (au_digen_test(dentry, sigen)) { + err = au_reval_dpath(dentry, sigen); + AuDebugOn(!err && au_digen_test(dentry, sigen)); + } + + if (!err) + err = refresh_file(file, reopen); + if (!err) { + if (!wlock) { + di_downgrade_lock(dentry, AuLock_IR); + fi_downgrade_lock(file); + } + } else { + di_write_unlock(dentry); + fi_write_unlock(file); + } + +out: + return err; +} + +/* ---------------------------------------------------------------------- */ + +/* cf. aufs_nopage() */ +/* for madvise(2) */ +static int aufs_readpage(struct file *file __maybe_unused, struct page *page) +{ + unlock_page(page); + return 0; +} + +/* it will never be called, but necessary to support O_DIRECT */ +static ssize_t aufs_direct_IO(struct kiocb *iocb, struct iov_iter *iter) +{ BUG(); return 0; } + +/* they will never be called. */ +#ifdef CONFIG_AUFS_DEBUG +static int aufs_write_begin(struct file *file, struct address_space *mapping, + loff_t pos, unsigned len, unsigned flags, + struct page **pagep, void **fsdata) +{ AuUnsupport(); return 0; } +static int aufs_write_end(struct file *file, struct address_space *mapping, + loff_t pos, unsigned len, unsigned copied, + struct page *page, void *fsdata) +{ AuUnsupport(); return 0; } +static int aufs_writepage(struct page *page, struct writeback_control *wbc) +{ AuUnsupport(); return 0; } + +static int aufs_set_page_dirty(struct page *page) +{ AuUnsupport(); return 0; } +static void aufs_invalidatepage(struct page *page, unsigned int offset, + unsigned int length) +{ AuUnsupport(); } +static int aufs_releasepage(struct page *page, gfp_t gfp) +{ AuUnsupport(); return 0; } +#if 0 /* called by memory compaction regardless file */ +static int aufs_migratepage(struct address_space *mapping, struct page *newpage, + struct page *page, enum migrate_mode mode) +{ AuUnsupport(); return 0; } +#endif +static bool aufs_isolate_page(struct page *page, isolate_mode_t mode) +{ AuUnsupport(); return true; } +static void aufs_putback_page(struct page *page) +{ AuUnsupport(); } +static int aufs_launder_page(struct page *page) +{ AuUnsupport(); return 0; } +static int aufs_is_partially_uptodate(struct page *page, + unsigned long from, + unsigned long count) +{ AuUnsupport(); return 0; } +static void aufs_is_dirty_writeback(struct page *page, bool *dirty, + bool *writeback) +{ AuUnsupport(); } +static int aufs_error_remove_page(struct address_space *mapping, + struct page *page) +{ AuUnsupport(); return 0; } +static int aufs_swap_activate(struct swap_info_struct *sis, struct file *file, + sector_t *span) +{ AuUnsupport(); return 0; } +static void aufs_swap_deactivate(struct file *file) +{ AuUnsupport(); } +#endif /* CONFIG_AUFS_DEBUG */ + +const struct address_space_operations aufs_aop = { + .readpage = aufs_readpage, + .direct_IO = aufs_direct_IO, +#ifdef CONFIG_AUFS_DEBUG + .writepage = aufs_writepage, + /* no writepages, because of writepage */ + .set_page_dirty = aufs_set_page_dirty, + /* no readpages, because of readpage */ + .write_begin = aufs_write_begin, + .write_end = aufs_write_end, + /* no bmap, no block device */ + .invalidatepage = aufs_invalidatepage, + .releasepage = aufs_releasepage, + /* is fallback_migrate_page ok? */ + /* .migratepage = aufs_migratepage, */ + .isolate_page = aufs_isolate_page, + .putback_page = aufs_putback_page, + .launder_page = aufs_launder_page, + .is_partially_uptodate = aufs_is_partially_uptodate, + .is_dirty_writeback = aufs_is_dirty_writeback, + .error_remove_page = aufs_error_remove_page, + .swap_activate = aufs_swap_activate, + .swap_deactivate = aufs_swap_deactivate +#endif /* CONFIG_AUFS_DEBUG */ +}; --- linux-4.8.0.orig/fs/aufs/file.h +++ linux-4.8.0/fs/aufs/file.h @@ -0,0 +1,294 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * file operations + */ + +#ifndef __AUFS_FILE_H__ +#define __AUFS_FILE_H__ + +#ifdef __KERNEL__ + +#include +#include +#include +#include "rwsem.h" + +struct au_branch; +struct au_hfile { + struct file *hf_file; + struct au_branch *hf_br; +}; + +struct au_vdir; +struct au_fidir { + aufs_bindex_t fd_bbot; + aufs_bindex_t fd_nent; + struct au_vdir *fd_vdir_cache; + struct au_hfile fd_hfile[]; +}; + +static inline int au_fidir_sz(int nent) +{ + AuDebugOn(nent < 0); + return sizeof(struct au_fidir) + sizeof(struct au_hfile) * nent; +} + +struct au_finfo { + atomic_t fi_generation; + + struct au_rwsem fi_rwsem; + aufs_bindex_t fi_btop; + + /* do not union them */ + struct { /* for non-dir */ + struct au_hfile fi_htop; + atomic_t fi_mmapped; + }; + struct au_fidir *fi_hdir; /* for dir only */ + + struct hlist_node fi_hlist; + union { + struct file *fi_file; /* very ugly */ + struct llist_node fi_lnode; /* delayed free */ + }; +} ____cacheline_aligned_in_smp; + +/* ---------------------------------------------------------------------- */ + +/* file.c */ +extern const struct address_space_operations aufs_aop; +unsigned int au_file_roflags(unsigned int flags); +struct file *au_h_open(struct dentry *dentry, aufs_bindex_t bindex, int flags, + struct file *file, int force_wr); +struct au_do_open_args { + int no_lock; + int (*open)(struct file *file, int flags, + struct file *h_file); + struct au_fidir *fidir; + struct file *h_file; +}; +int au_do_open(struct file *file, struct au_do_open_args *args); +int au_reopen_nondir(struct file *file); +struct au_pin; +int au_ready_to_write(struct file *file, loff_t len, struct au_pin *pin); +int au_reval_and_lock_fdi(struct file *file, int (*reopen)(struct file *file), + int wlock); +int au_do_flush(struct file *file, fl_owner_t id, + int (*flush)(struct file *file, fl_owner_t id)); + +/* poll.c */ +#ifdef CONFIG_AUFS_POLL +unsigned int aufs_poll(struct file *file, poll_table *wait); +#endif + +#ifdef CONFIG_AUFS_BR_HFSPLUS +/* hfsplus.c */ +struct file *au_h_open_pre(struct dentry *dentry, aufs_bindex_t bindex, + int force_wr); +void au_h_open_post(struct dentry *dentry, aufs_bindex_t bindex, + struct file *h_file); +#else +AuStub(struct file *, au_h_open_pre, return NULL, struct dentry *dentry, + aufs_bindex_t bindex, int force_wr) +AuStubVoid(au_h_open_post, struct dentry *dentry, aufs_bindex_t bindex, + struct file *h_file); +#endif + +/* f_op.c */ +extern const struct file_operations aufs_file_fop; +int au_do_open_nondir(struct file *file, int flags, struct file *h_file); +int aufs_release_nondir(struct inode *inode __maybe_unused, struct file *file); +struct file *au_read_pre(struct file *file, int keep_fi); + +/* finfo.c */ +void au_hfput(struct au_hfile *hf, int execed); +void au_set_h_fptr(struct file *file, aufs_bindex_t bindex, + struct file *h_file); + +void au_update_figen(struct file *file); +struct au_fidir *au_fidir_alloc(struct super_block *sb); +int au_fidir_realloc(struct au_finfo *finfo, int nbr, int may_shrink); + +void au_fi_init_once(void *_fi); +void au_finfo_fin(struct file *file, int atonce); +int au_finfo_init(struct file *file, struct au_fidir *fidir); + +/* ioctl.c */ +long aufs_ioctl_nondir(struct file *file, unsigned int cmd, unsigned long arg); +#ifdef CONFIG_COMPAT +long aufs_compat_ioctl_dir(struct file *file, unsigned int cmd, + unsigned long arg); +long aufs_compat_ioctl_nondir(struct file *file, unsigned int cmd, + unsigned long arg); +#endif + +/* ---------------------------------------------------------------------- */ + +static inline struct au_finfo *au_fi(struct file *file) +{ + return file->private_data; +} + +/* ---------------------------------------------------------------------- */ + +/* + * fi_read_lock, fi_write_lock, + * fi_read_unlock, fi_write_unlock, fi_downgrade_lock + */ +AuSimpleRwsemFuncs(fi, struct file *f, &au_fi(f)->fi_rwsem); + +#define FiMustNoWaiters(f) AuRwMustNoWaiters(&au_fi(f)->fi_rwsem) +#define FiMustAnyLock(f) AuRwMustAnyLock(&au_fi(f)->fi_rwsem) +#define FiMustWriteLock(f) AuRwMustWriteLock(&au_fi(f)->fi_rwsem) + +/* ---------------------------------------------------------------------- */ + +/* todo: hard/soft set? */ +static inline aufs_bindex_t au_fbtop(struct file *file) +{ + FiMustAnyLock(file); + return au_fi(file)->fi_btop; +} + +static inline aufs_bindex_t au_fbbot_dir(struct file *file) +{ + FiMustAnyLock(file); + AuDebugOn(!au_fi(file)->fi_hdir); + return au_fi(file)->fi_hdir->fd_bbot; +} + +static inline struct au_vdir *au_fvdir_cache(struct file *file) +{ + FiMustAnyLock(file); + AuDebugOn(!au_fi(file)->fi_hdir); + return au_fi(file)->fi_hdir->fd_vdir_cache; +} + +static inline void au_set_fbtop(struct file *file, aufs_bindex_t bindex) +{ + FiMustWriteLock(file); + au_fi(file)->fi_btop = bindex; +} + +static inline void au_set_fbbot_dir(struct file *file, aufs_bindex_t bindex) +{ + FiMustWriteLock(file); + AuDebugOn(!au_fi(file)->fi_hdir); + au_fi(file)->fi_hdir->fd_bbot = bindex; +} + +static inline void au_set_fvdir_cache(struct file *file, + struct au_vdir *vdir_cache) +{ + FiMustWriteLock(file); + AuDebugOn(!au_fi(file)->fi_hdir); + au_fi(file)->fi_hdir->fd_vdir_cache = vdir_cache; +} + +static inline struct file *au_hf_top(struct file *file) +{ + FiMustAnyLock(file); + AuDebugOn(au_fi(file)->fi_hdir); + return au_fi(file)->fi_htop.hf_file; +} + +static inline struct file *au_hf_dir(struct file *file, aufs_bindex_t bindex) +{ + FiMustAnyLock(file); + AuDebugOn(!au_fi(file)->fi_hdir); + return au_fi(file)->fi_hdir->fd_hfile[0 + bindex].hf_file; +} + +/* todo: memory barrier? */ +static inline unsigned int au_figen(struct file *f) +{ + return atomic_read(&au_fi(f)->fi_generation); +} + +static inline void au_set_mmapped(struct file *f) +{ + if (atomic_inc_return(&au_fi(f)->fi_mmapped)) + return; + pr_warn("fi_mmapped wrapped around\n"); + while (!atomic_inc_return(&au_fi(f)->fi_mmapped)) + ; +} + +static inline void au_unset_mmapped(struct file *f) +{ + atomic_dec(&au_fi(f)->fi_mmapped); +} + +static inline int au_test_mmapped(struct file *f) +{ + return atomic_read(&au_fi(f)->fi_mmapped); +} + +/* customize vma->vm_file */ + +static inline void au_do_vm_file_reset(struct vm_area_struct *vma, + struct file *file) +{ + struct file *f; + + f = vma->vm_file; + get_file(file); + vma->vm_file = file; + fput(f); +} + +#ifdef CONFIG_MMU +#define AuDbgVmRegion(file, vma) do {} while (0) + +static inline void au_vm_file_reset(struct vm_area_struct *vma, + struct file *file) +{ + au_do_vm_file_reset(vma, file); +} +#else +#define AuDbgVmRegion(file, vma) \ + AuDebugOn((vma)->vm_region && (vma)->vm_region->vm_file != (file)) + +static inline void au_vm_file_reset(struct vm_area_struct *vma, + struct file *file) +{ + struct file *f; + + au_do_vm_file_reset(vma, file); + f = vma->vm_region->vm_file; + get_file(file); + vma->vm_region->vm_file = file; + fput(f); +} +#endif /* CONFIG_MMU */ + +/* handle vma->vm_prfile */ +static inline void au_vm_prfile_set(struct vm_area_struct *vma, + struct file *file) +{ + get_file(file); + vma->vm_prfile = file; +#ifndef CONFIG_MMU + get_file(file); + vma->vm_region->vm_prfile = file; +#endif +} + +#endif /* __KERNEL__ */ +#endif /* __AUFS_FILE_H__ */ --- linux-4.8.0.orig/fs/aufs/finfo.c +++ linux-4.8.0/fs/aufs/finfo.c @@ -0,0 +1,151 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * file private data + */ + +#include "aufs.h" + +void au_hfput(struct au_hfile *hf, int execed) +{ + if (execed) + allow_write_access(hf->hf_file); + fput(hf->hf_file); + hf->hf_file = NULL; + au_br_put(hf->hf_br); + hf->hf_br = NULL; +} + +void au_set_h_fptr(struct file *file, aufs_bindex_t bindex, struct file *val) +{ + struct au_finfo *finfo = au_fi(file); + struct au_hfile *hf; + struct au_fidir *fidir; + + fidir = finfo->fi_hdir; + if (!fidir) { + AuDebugOn(finfo->fi_btop != bindex); + hf = &finfo->fi_htop; + } else + hf = fidir->fd_hfile + bindex; + + if (hf && hf->hf_file) + au_hfput(hf, vfsub_file_execed(file)); + if (val) { + FiMustWriteLock(file); + AuDebugOn(IS_ERR_OR_NULL(file->f_path.dentry)); + hf->hf_file = val; + hf->hf_br = au_sbr(file->f_path.dentry->d_sb, bindex); + } +} + +void au_update_figen(struct file *file) +{ + atomic_set(&au_fi(file)->fi_generation, au_digen(file->f_path.dentry)); + /* smp_mb(); */ /* atomic_set */ +} + +/* ---------------------------------------------------------------------- */ + +struct au_fidir *au_fidir_alloc(struct super_block *sb) +{ + struct au_fidir *fidir; + int nbr; + + nbr = au_sbbot(sb) + 1; + if (nbr < 2) + nbr = 2; /* initial allocate for 2 branches */ + fidir = kzalloc(au_fidir_sz(nbr), GFP_NOFS); + if (fidir) { + fidir->fd_bbot = -1; + fidir->fd_nent = nbr; + } + + return fidir; +} + +int au_fidir_realloc(struct au_finfo *finfo, int nbr, int may_shrink) +{ + int err; + struct au_fidir *fidir, *p; + + AuRwMustWriteLock(&finfo->fi_rwsem); + fidir = finfo->fi_hdir; + AuDebugOn(!fidir); + + err = -ENOMEM; + p = au_kzrealloc(fidir, au_fidir_sz(fidir->fd_nent), au_fidir_sz(nbr), + GFP_NOFS, may_shrink); + if (p) { + p->fd_nent = nbr; + finfo->fi_hdir = p; + err = 0; + } + + return err; +} + +/* ---------------------------------------------------------------------- */ + +void au_finfo_fin(struct file *file, int atonce) +{ + struct au_finfo *finfo; + + au_nfiles_dec(file->f_path.dentry->d_sb); + + finfo = au_fi(file); + AuDebugOn(finfo->fi_hdir); + AuRwDestroy(&finfo->fi_rwsem); + if (!atonce) + au_cache_dfree_finfo(finfo); + else + au_cache_free_finfo(finfo); +} + +void au_fi_init_once(void *_finfo) +{ + struct au_finfo *finfo = _finfo; + + au_rw_init(&finfo->fi_rwsem); +} + +int au_finfo_init(struct file *file, struct au_fidir *fidir) +{ + int err; + struct au_finfo *finfo; + struct dentry *dentry; + + err = -ENOMEM; + dentry = file->f_path.dentry; + finfo = au_cache_alloc_finfo(); + if (unlikely(!finfo)) + goto out; + + err = 0; + au_nfiles_inc(dentry->d_sb); + au_rw_write_lock(&finfo->fi_rwsem); + finfo->fi_btop = -1; + finfo->fi_hdir = fidir; + atomic_set(&finfo->fi_generation, au_digen(dentry)); + /* smp_mb(); */ /* atomic_set */ + + file->private_data = finfo; + +out: + return err; +} --- linux-4.8.0.orig/fs/aufs/fstype.h +++ linux-4.8.0/fs/aufs/fstype.h @@ -0,0 +1,400 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * judging filesystem type + */ + +#ifndef __AUFS_FSTYPE_H__ +#define __AUFS_FSTYPE_H__ + +#ifdef __KERNEL__ + +#include +#include +#include +#include + +static inline int au_test_aufs(struct super_block *sb) +{ + return sb->s_magic == AUFS_SUPER_MAGIC; +} + +static inline const char *au_sbtype(struct super_block *sb) +{ + return sb->s_type->name; +} + +static inline int au_test_iso9660(struct super_block *sb __maybe_unused) +{ +#if IS_ENABLED(CONFIG_ISO9660_FS) + return sb->s_magic == ISOFS_SUPER_MAGIC; +#else + return 0; +#endif +} + +static inline int au_test_romfs(struct super_block *sb __maybe_unused) +{ +#if IS_ENABLED(CONFIG_ROMFS_FS) + return sb->s_magic == ROMFS_MAGIC; +#else + return 0; +#endif +} + +static inline int au_test_cramfs(struct super_block *sb __maybe_unused) +{ +#if IS_ENABLED(CONFIG_CRAMFS) + return sb->s_magic == CRAMFS_MAGIC; +#endif + return 0; +} + +static inline int au_test_nfs(struct super_block *sb __maybe_unused) +{ +#if IS_ENABLED(CONFIG_NFS_FS) + return sb->s_magic == NFS_SUPER_MAGIC; +#else + return 0; +#endif +} + +static inline int au_test_fuse(struct super_block *sb __maybe_unused) +{ +#if IS_ENABLED(CONFIG_FUSE_FS) + return sb->s_magic == FUSE_SUPER_MAGIC; +#else + return 0; +#endif +} + +static inline int au_test_xfs(struct super_block *sb __maybe_unused) +{ +#if IS_ENABLED(CONFIG_XFS_FS) + return sb->s_magic == XFS_SB_MAGIC; +#else + return 0; +#endif +} + +static inline int au_test_tmpfs(struct super_block *sb __maybe_unused) +{ +#ifdef CONFIG_TMPFS + return sb->s_magic == TMPFS_MAGIC; +#else + return 0; +#endif +} + +static inline int au_test_ecryptfs(struct super_block *sb __maybe_unused) +{ +#if IS_ENABLED(CONFIG_ECRYPT_FS) + return !strcmp(au_sbtype(sb), "ecryptfs"); +#else + return 0; +#endif +} + +static inline int au_test_ramfs(struct super_block *sb) +{ + return sb->s_magic == RAMFS_MAGIC; +} + +static inline int au_test_ubifs(struct super_block *sb __maybe_unused) +{ +#if IS_ENABLED(CONFIG_UBIFS_FS) + return sb->s_magic == UBIFS_SUPER_MAGIC; +#else + return 0; +#endif +} + +static inline int au_test_procfs(struct super_block *sb __maybe_unused) +{ +#ifdef CONFIG_PROC_FS + return sb->s_magic == PROC_SUPER_MAGIC; +#else + return 0; +#endif +} + +static inline int au_test_sysfs(struct super_block *sb __maybe_unused) +{ +#ifdef CONFIG_SYSFS + return sb->s_magic == SYSFS_MAGIC; +#else + return 0; +#endif +} + +static inline int au_test_configfs(struct super_block *sb __maybe_unused) +{ +#if IS_ENABLED(CONFIG_CONFIGFS_FS) + return sb->s_magic == CONFIGFS_MAGIC; +#else + return 0; +#endif +} + +static inline int au_test_minix(struct super_block *sb __maybe_unused) +{ +#if IS_ENABLED(CONFIG_MINIX_FS) + return sb->s_magic == MINIX3_SUPER_MAGIC + || sb->s_magic == MINIX2_SUPER_MAGIC + || sb->s_magic == MINIX2_SUPER_MAGIC2 + || sb->s_magic == MINIX_SUPER_MAGIC + || sb->s_magic == MINIX_SUPER_MAGIC2; +#else + return 0; +#endif +} + +static inline int au_test_fat(struct super_block *sb __maybe_unused) +{ +#if IS_ENABLED(CONFIG_FAT_FS) + return sb->s_magic == MSDOS_SUPER_MAGIC; +#else + return 0; +#endif +} + +static inline int au_test_msdos(struct super_block *sb) +{ + return au_test_fat(sb); +} + +static inline int au_test_vfat(struct super_block *sb) +{ + return au_test_fat(sb); +} + +static inline int au_test_securityfs(struct super_block *sb __maybe_unused) +{ +#ifdef CONFIG_SECURITYFS + return sb->s_magic == SECURITYFS_MAGIC; +#else + return 0; +#endif +} + +static inline int au_test_squashfs(struct super_block *sb __maybe_unused) +{ +#if IS_ENABLED(CONFIG_SQUASHFS) + return sb->s_magic == SQUASHFS_MAGIC; +#else + return 0; +#endif +} + +static inline int au_test_btrfs(struct super_block *sb __maybe_unused) +{ +#if IS_ENABLED(CONFIG_BTRFS_FS) + return sb->s_magic == BTRFS_SUPER_MAGIC; +#else + return 0; +#endif +} + +static inline int au_test_xenfs(struct super_block *sb __maybe_unused) +{ +#if IS_ENABLED(CONFIG_XENFS) + return sb->s_magic == XENFS_SUPER_MAGIC; +#else + return 0; +#endif +} + +static inline int au_test_debugfs(struct super_block *sb __maybe_unused) +{ +#ifdef CONFIG_DEBUG_FS + return sb->s_magic == DEBUGFS_MAGIC; +#else + return 0; +#endif +} + +static inline int au_test_nilfs(struct super_block *sb __maybe_unused) +{ +#if IS_ENABLED(CONFIG_NILFS) + return sb->s_magic == NILFS_SUPER_MAGIC; +#else + return 0; +#endif +} + +static inline int au_test_hfsplus(struct super_block *sb __maybe_unused) +{ +#if IS_ENABLED(CONFIG_HFSPLUS_FS) + return sb->s_magic == HFSPLUS_SUPER_MAGIC; +#else + return 0; +#endif +} + +/* ---------------------------------------------------------------------- */ +/* + * they can't be an aufs branch. + */ +static inline int au_test_fs_unsuppoted(struct super_block *sb) +{ + return +#ifndef CONFIG_AUFS_BR_RAMFS + au_test_ramfs(sb) || +#endif + au_test_procfs(sb) + || au_test_sysfs(sb) + || au_test_configfs(sb) + || au_test_debugfs(sb) + || au_test_securityfs(sb) + || au_test_xenfs(sb) + || au_test_ecryptfs(sb) + /* || !strcmp(au_sbtype(sb), "unionfs") */ + || au_test_aufs(sb); /* will be supported in next version */ +} + +static inline int au_test_fs_remote(struct super_block *sb) +{ + return !au_test_tmpfs(sb) +#ifdef CONFIG_AUFS_BR_RAMFS + && !au_test_ramfs(sb) +#endif + && !(sb->s_type->fs_flags & FS_REQUIRES_DEV); +} + +/* ---------------------------------------------------------------------- */ + +/* + * Note: these functions (below) are created after reading ->getattr() in all + * filesystems under linux/fs. it means we have to do so in every update... + */ + +/* + * some filesystems require getattr to refresh the inode attributes before + * referencing. + * in most cases, we can rely on the inode attribute in NFS (or every remote fs) + * and leave the work for d_revalidate() + */ +static inline int au_test_fs_refresh_iattr(struct super_block *sb) +{ + return au_test_nfs(sb) + || au_test_fuse(sb) + /* || au_test_btrfs(sb) */ /* untested */ + ; +} + +/* + * filesystems which don't maintain i_size or i_blocks. + */ +static inline int au_test_fs_bad_iattr_size(struct super_block *sb) +{ + return au_test_xfs(sb) + || au_test_btrfs(sb) + || au_test_ubifs(sb) + || au_test_hfsplus(sb) /* maintained, but incorrect */ + /* || au_test_minix(sb) */ /* untested */ + ; +} + +/* + * filesystems which don't store the correct value in some of their inode + * attributes. + */ +static inline int au_test_fs_bad_iattr(struct super_block *sb) +{ + return au_test_fs_bad_iattr_size(sb) + || au_test_fat(sb) + || au_test_msdos(sb) + || au_test_vfat(sb); +} + +/* they don't check i_nlink in link(2) */ +static inline int au_test_fs_no_limit_nlink(struct super_block *sb) +{ + return au_test_tmpfs(sb) +#ifdef CONFIG_AUFS_BR_RAMFS + || au_test_ramfs(sb) +#endif + || au_test_ubifs(sb) + || au_test_hfsplus(sb); +} + +/* + * filesystems which sets S_NOATIME and S_NOCMTIME. + */ +static inline int au_test_fs_notime(struct super_block *sb) +{ + return au_test_nfs(sb) + || au_test_fuse(sb) + || au_test_ubifs(sb) + ; +} + +/* temporary support for i#1 in cramfs */ +static inline int au_test_fs_unique_ino(struct inode *inode) +{ + if (au_test_cramfs(inode->i_sb)) + return inode->i_ino != 1; + return 1; +} + +/* ---------------------------------------------------------------------- */ + +/* + * the filesystem where the xino files placed must support i/o after unlink and + * maintain i_size and i_blocks. + */ +static inline int au_test_fs_bad_xino(struct super_block *sb) +{ + return au_test_fs_remote(sb) + || au_test_fs_bad_iattr_size(sb) + /* don't want unnecessary work for xino */ + || au_test_aufs(sb) + || au_test_ecryptfs(sb) + || au_test_nilfs(sb); +} + +static inline int au_test_fs_trunc_xino(struct super_block *sb) +{ + return au_test_tmpfs(sb) + || au_test_ramfs(sb); +} + +/* + * test if the @sb is real-readonly. + */ +static inline int au_test_fs_rr(struct super_block *sb) +{ + return au_test_squashfs(sb) + || au_test_iso9660(sb) + || au_test_cramfs(sb) + || au_test_romfs(sb); +} + +/* + * test if the @inode is nfs with 'noacl' option + * NFS always sets MS_POSIXACL regardless its mount option 'noacl.' + */ +static inline int au_test_nfs_noacl(struct inode *inode) +{ + return au_test_nfs(inode->i_sb) + /* && IS_POSIXACL(inode) */ + && !nfs_server_capable(inode, NFS_CAP_ACLS); +} + +#endif /* __KERNEL__ */ +#endif /* __AUFS_FSTYPE_H__ */ --- linux-4.8.0.orig/fs/aufs/hfsnotify.c +++ linux-4.8.0/fs/aufs/hfsnotify.c @@ -0,0 +1,287 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * fsnotify for the lower directories + */ + +#include "aufs.h" + +/* FS_IN_IGNORED is unnecessary */ +static const __u32 AuHfsnMask = (FS_MOVED_TO | FS_MOVED_FROM | FS_DELETE + | FS_CREATE | FS_EVENT_ON_CHILD); +static DECLARE_WAIT_QUEUE_HEAD(au_hfsn_wq); +static __cacheline_aligned_in_smp atomic64_t au_hfsn_ifree = ATOMIC64_INIT(0); + +static void au_hfsn_free_mark(struct fsnotify_mark *mark) +{ + struct au_hnotify *hn = container_of(mark, struct au_hnotify, + hn_mark); + /* AuDbg("here\n"); */ + au_cache_dfree_hnotify(hn); + smp_mb__before_atomic(); + if (atomic64_dec_and_test(&au_hfsn_ifree)) + wake_up(&au_hfsn_wq); +} + +static int au_hfsn_alloc(struct au_hinode *hinode) +{ + int err; + struct au_hnotify *hn; + struct super_block *sb; + struct au_branch *br; + struct fsnotify_mark *mark; + aufs_bindex_t bindex; + + hn = hinode->hi_notify; + sb = hn->hn_aufs_inode->i_sb; + bindex = au_br_index(sb, hinode->hi_id); + br = au_sbr(sb, bindex); + AuDebugOn(!br->br_hfsn); + + mark = &hn->hn_mark; + fsnotify_init_mark(mark, au_hfsn_free_mark); + mark->mask = AuHfsnMask; + /* + * by udba rename or rmdir, aufs assign a new inode to the known + * h_inode, so specify 1 to allow dups. + */ + lockdep_off(); + err = fsnotify_add_mark(mark, br->br_hfsn->hfsn_group, hinode->hi_inode, + /*mnt*/NULL, /*allow_dups*/1); + lockdep_on(); + + return err; +} + +static int au_hfsn_free(struct au_hinode *hinode, struct au_hnotify *hn) +{ + struct fsnotify_mark *mark; + unsigned long long ull; + struct fsnotify_group *group; + + ull = atomic64_inc_return(&au_hfsn_ifree); + BUG_ON(!ull); + + mark = &hn->hn_mark; + spin_lock(&mark->lock); + group = mark->group; + fsnotify_get_group(group); + spin_unlock(&mark->lock); + lockdep_off(); + fsnotify_destroy_mark(mark, group); + fsnotify_put_mark(mark); + fsnotify_put_group(group); + lockdep_on(); + + /* free hn by myself */ + return 0; +} + +/* ---------------------------------------------------------------------- */ + +static void au_hfsn_ctl(struct au_hinode *hinode, int do_set) +{ + struct fsnotify_mark *mark; + + mark = &hinode->hi_notify->hn_mark; + spin_lock(&mark->lock); + if (do_set) { + AuDebugOn(mark->mask & AuHfsnMask); + mark->mask |= AuHfsnMask; + } else { + AuDebugOn(!(mark->mask & AuHfsnMask)); + mark->mask &= ~AuHfsnMask; + } + spin_unlock(&mark->lock); + /* fsnotify_recalc_inode_mask(hinode->hi_inode); */ +} + +/* ---------------------------------------------------------------------- */ + +/* #define AuDbgHnotify */ +#ifdef AuDbgHnotify +static char *au_hfsn_name(u32 mask) +{ +#ifdef CONFIG_AUFS_DEBUG +#define test_ret(flag) \ + do { \ + if (mask & flag) \ + return #flag; \ + } while (0) + test_ret(FS_ACCESS); + test_ret(FS_MODIFY); + test_ret(FS_ATTRIB); + test_ret(FS_CLOSE_WRITE); + test_ret(FS_CLOSE_NOWRITE); + test_ret(FS_OPEN); + test_ret(FS_MOVED_FROM); + test_ret(FS_MOVED_TO); + test_ret(FS_CREATE); + test_ret(FS_DELETE); + test_ret(FS_DELETE_SELF); + test_ret(FS_MOVE_SELF); + test_ret(FS_UNMOUNT); + test_ret(FS_Q_OVERFLOW); + test_ret(FS_IN_IGNORED); + test_ret(FS_ISDIR); + test_ret(FS_IN_ONESHOT); + test_ret(FS_EVENT_ON_CHILD); + return ""; +#undef test_ret +#else + return "??"; +#endif +} +#endif + +/* ---------------------------------------------------------------------- */ + +static void au_hfsn_free_group(struct fsnotify_group *group) +{ + struct au_br_hfsnotify *hfsn = group->private; + + /* AuDbg("here\n"); */ + au_delayed_kfree(hfsn); +} + +static int au_hfsn_handle_event(struct fsnotify_group *group, + struct inode *inode, + struct fsnotify_mark *inode_mark, + struct fsnotify_mark *vfsmount_mark, + u32 mask, void *data, int data_type, + const unsigned char *file_name, u32 cookie) +{ + int err; + struct au_hnotify *hnotify; + struct inode *h_dir, *h_inode; + struct qstr h_child_qstr = QSTR_INIT(file_name, strlen(file_name)); + + AuDebugOn(data_type != FSNOTIFY_EVENT_INODE); + + err = 0; + /* if FS_UNMOUNT happens, there must be another bug */ + AuDebugOn(mask & FS_UNMOUNT); + if (mask & (FS_IN_IGNORED | FS_UNMOUNT)) + goto out; + + h_dir = inode; + h_inode = NULL; +#ifdef AuDbgHnotify + au_debug_on(); + if (1 || h_child_qstr.len != sizeof(AUFS_XINO_FNAME) - 1 + || strncmp(h_child_qstr.name, AUFS_XINO_FNAME, h_child_qstr.len)) { + AuDbg("i%lu, mask 0x%x %s, hcname %.*s, hi%lu\n", + h_dir->i_ino, mask, au_hfsn_name(mask), + AuLNPair(&h_child_qstr), h_inode ? h_inode->i_ino : 0); + /* WARN_ON(1); */ + } + au_debug_off(); +#endif + + AuDebugOn(!inode_mark); + hnotify = container_of(inode_mark, struct au_hnotify, hn_mark); + err = au_hnotify(h_dir, hnotify, mask, &h_child_qstr, h_inode); + +out: + return err; +} + +static struct fsnotify_ops au_hfsn_ops = { + .handle_event = au_hfsn_handle_event, + .free_group_priv = au_hfsn_free_group +}; + +/* ---------------------------------------------------------------------- */ + +static void au_hfsn_fin_br(struct au_branch *br) +{ + struct au_br_hfsnotify *hfsn; + + hfsn = br->br_hfsn; + if (hfsn) { + lockdep_off(); + fsnotify_put_group(hfsn->hfsn_group); + lockdep_on(); + } +} + +static int au_hfsn_init_br(struct au_branch *br, int perm) +{ + int err; + struct fsnotify_group *group; + struct au_br_hfsnotify *hfsn; + + err = 0; + br->br_hfsn = NULL; + if (!au_br_hnotifyable(perm)) + goto out; + + err = -ENOMEM; + hfsn = kmalloc(sizeof(*hfsn), GFP_NOFS); + if (unlikely(!hfsn)) + goto out; + + err = 0; + group = fsnotify_alloc_group(&au_hfsn_ops); + if (IS_ERR(group)) { + err = PTR_ERR(group); + pr_err("fsnotify_alloc_group() failed, %d\n", err); + goto out_hfsn; + } + + group->private = hfsn; + hfsn->hfsn_group = group; + br->br_hfsn = hfsn; + goto out; /* success */ + +out_hfsn: + au_delayed_kfree(hfsn); +out: + return err; +} + +static int au_hfsn_reset_br(unsigned int udba, struct au_branch *br, int perm) +{ + int err; + + err = 0; + if (!br->br_hfsn) + err = au_hfsn_init_br(br, perm); + + return err; +} + +/* ---------------------------------------------------------------------- */ + +static void au_hfsn_fin(void) +{ + AuDbg("au_hfsn_ifree %lld\n", (long long)atomic64_read(&au_hfsn_ifree)); + wait_event(au_hfsn_wq, !atomic64_read(&au_hfsn_ifree)); +} + +const struct au_hnotify_op au_hnotify_op = { + .ctl = au_hfsn_ctl, + .alloc = au_hfsn_alloc, + .free = au_hfsn_free, + + .fin = au_hfsn_fin, + + .reset_br = au_hfsn_reset_br, + .fin_br = au_hfsn_fin_br, + .init_br = au_hfsn_init_br +}; --- linux-4.8.0.orig/fs/aufs/hfsplus.c +++ linux-4.8.0/fs/aufs/hfsplus.c @@ -0,0 +1,56 @@ +/* + * Copyright (C) 2010-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * special support for filesystems which aqucires an inode mutex + * at final closing a file, eg, hfsplus. + * + * This trick is very simple and stupid, just to open the file before really + * neceeary open to tell hfsplus that this is not the final closing. + * The caller should call au_h_open_pre() after acquiring the inode mutex, + * and au_h_open_post() after releasing it. + */ + +#include "aufs.h" + +struct file *au_h_open_pre(struct dentry *dentry, aufs_bindex_t bindex, + int force_wr) +{ + struct file *h_file; + struct dentry *h_dentry; + + h_dentry = au_h_dptr(dentry, bindex); + AuDebugOn(!h_dentry); + AuDebugOn(d_is_negative(h_dentry)); + + h_file = NULL; + if (au_test_hfsplus(h_dentry->d_sb) + && d_is_reg(h_dentry)) + h_file = au_h_open(dentry, bindex, + O_RDONLY | O_NOATIME | O_LARGEFILE, + /*file*/NULL, force_wr); + return h_file; +} + +void au_h_open_post(struct dentry *dentry, aufs_bindex_t bindex, + struct file *h_file) +{ + if (h_file) { + fput(h_file); + au_sbr_put(dentry->d_sb, bindex); + } +} --- linux-4.8.0.orig/fs/aufs/hnotify.c +++ linux-4.8.0/fs/aufs/hnotify.c @@ -0,0 +1,723 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * abstraction to notify the direct changes on lower directories + */ + +#include "aufs.h" + +int au_hn_alloc(struct au_hinode *hinode, struct inode *inode) +{ + int err; + struct au_hnotify *hn; + + err = -ENOMEM; + hn = au_cache_alloc_hnotify(); + if (hn) { + hn->hn_aufs_inode = inode; + hinode->hi_notify = hn; + err = au_hnotify_op.alloc(hinode); + AuTraceErr(err); + if (unlikely(err)) { + hinode->hi_notify = NULL; + au_cache_dfree_hnotify(hn); + /* + * The upper dir was removed by udba, but the same named + * dir left. In this case, aufs assignes a new inode + * number and set the monitor again. + * For the lower dir, the old monitnor is still left. + */ + if (err == -EEXIST) + err = 0; + } + } + + AuTraceErr(err); + return err; +} + +void au_hn_free(struct au_hinode *hinode) +{ + struct au_hnotify *hn; + + hn = hinode->hi_notify; + if (hn) { + hinode->hi_notify = NULL; + if (au_hnotify_op.free(hinode, hn)) + au_cache_dfree_hnotify(hn); + } +} + +/* ---------------------------------------------------------------------- */ + +void au_hn_ctl(struct au_hinode *hinode, int do_set) +{ + if (hinode->hi_notify) + au_hnotify_op.ctl(hinode, do_set); +} + +void au_hn_reset(struct inode *inode, unsigned int flags) +{ + aufs_bindex_t bindex, bbot; + struct inode *hi; + struct dentry *iwhdentry; + + bbot = au_ibbot(inode); + for (bindex = au_ibtop(inode); bindex <= bbot; bindex++) { + hi = au_h_iptr(inode, bindex); + if (!hi) + continue; + + /* inode_lock_nested(hi, AuLsc_I_CHILD); */ + iwhdentry = au_hi_wh(inode, bindex); + if (iwhdentry) + dget(iwhdentry); + au_igrab(hi); + au_set_h_iptr(inode, bindex, NULL, 0); + au_set_h_iptr(inode, bindex, au_igrab(hi), + flags & ~AuHi_XINO); + iput(hi); + dput(iwhdentry); + /* inode_unlock(hi); */ + } +} + +/* ---------------------------------------------------------------------- */ + +static int hn_xino(struct inode *inode, struct inode *h_inode) +{ + int err; + aufs_bindex_t bindex, bbot, bfound, btop; + struct inode *h_i; + + err = 0; + if (unlikely(inode->i_ino == AUFS_ROOT_INO)) { + pr_warn("branch root dir was changed\n"); + goto out; + } + + bfound = -1; + bbot = au_ibbot(inode); + btop = au_ibtop(inode); +#if 0 /* reserved for future use */ + if (bindex == bbot) { + /* keep this ino in rename case */ + goto out; + } +#endif + for (bindex = btop; bindex <= bbot; bindex++) + if (au_h_iptr(inode, bindex) == h_inode) { + bfound = bindex; + break; + } + if (bfound < 0) + goto out; + + for (bindex = btop; bindex <= bbot; bindex++) { + h_i = au_h_iptr(inode, bindex); + if (!h_i) + continue; + + err = au_xino_write(inode->i_sb, bindex, h_i->i_ino, /*ino*/0); + /* ignore this error */ + /* bad action? */ + } + + /* children inode number will be broken */ + +out: + AuTraceErr(err); + return err; +} + +static int hn_gen_tree(struct dentry *dentry) +{ + int err, i, j, ndentry; + struct au_dcsub_pages dpages; + struct au_dpage *dpage; + struct dentry **dentries; + + err = au_dpages_init(&dpages, GFP_NOFS); + if (unlikely(err)) + goto out; + err = au_dcsub_pages(&dpages, dentry, NULL, NULL); + if (unlikely(err)) + goto out_dpages; + + for (i = 0; i < dpages.ndpage; i++) { + dpage = dpages.dpages + i; + dentries = dpage->dentries; + ndentry = dpage->ndentry; + for (j = 0; j < ndentry; j++) { + struct dentry *d; + + d = dentries[j]; + if (IS_ROOT(d)) + continue; + + au_digen_dec(d); + if (d_really_is_positive(d)) + /* todo: reset children xino? + cached children only? */ + au_iigen_dec(d_inode(d)); + } + } + +out_dpages: + au_dpages_free(&dpages); + +#if 0 + /* discard children */ + dentry_unhash(dentry); + dput(dentry); +#endif +out: + return err; +} + +/* + * return 0 if processed. + */ +static int hn_gen_by_inode(char *name, unsigned int nlen, struct inode *inode, + const unsigned int isdir) +{ + int err; + struct dentry *d; + struct qstr *dname; + + err = 1; + if (unlikely(inode->i_ino == AUFS_ROOT_INO)) { + pr_warn("branch root dir was changed\n"); + err = 0; + goto out; + } + + if (!isdir) { + AuDebugOn(!name); + au_iigen_dec(inode); + spin_lock(&inode->i_lock); + hlist_for_each_entry(d, &inode->i_dentry, d_u.d_alias) { + spin_lock(&d->d_lock); + dname = &d->d_name; + if (dname->len != nlen + && memcmp(dname->name, name, nlen)) { + spin_unlock(&d->d_lock); + continue; + } + err = 0; + au_digen_dec(d); + spin_unlock(&d->d_lock); + break; + } + spin_unlock(&inode->i_lock); + } else { + au_fset_si(au_sbi(inode->i_sb), FAILED_REFRESH_DIR); + d = d_find_any_alias(inode); + if (!d) { + au_iigen_dec(inode); + goto out; + } + + spin_lock(&d->d_lock); + dname = &d->d_name; + if (dname->len == nlen && !memcmp(dname->name, name, nlen)) { + spin_unlock(&d->d_lock); + err = hn_gen_tree(d); + spin_lock(&d->d_lock); + } + spin_unlock(&d->d_lock); + dput(d); + } + +out: + AuTraceErr(err); + return err; +} + +static int hn_gen_by_name(struct dentry *dentry, const unsigned int isdir) +{ + int err; + + if (IS_ROOT(dentry)) { + pr_warn("branch root dir was changed\n"); + return 0; + } + + err = 0; + if (!isdir) { + au_digen_dec(dentry); + if (d_really_is_positive(dentry)) + au_iigen_dec(d_inode(dentry)); + } else { + au_fset_si(au_sbi(dentry->d_sb), FAILED_REFRESH_DIR); + if (d_really_is_positive(dentry)) + err = hn_gen_tree(dentry); + } + + AuTraceErr(err); + return err; +} + +/* ---------------------------------------------------------------------- */ + +/* hnotify job flags */ +#define AuHnJob_XINO0 1 +#define AuHnJob_GEN (1 << 1) +#define AuHnJob_DIRENT (1 << 2) +#define AuHnJob_ISDIR (1 << 3) +#define AuHnJob_TRYXINO0 (1 << 4) +#define AuHnJob_MNTPNT (1 << 5) +#define au_ftest_hnjob(flags, name) ((flags) & AuHnJob_##name) +#define au_fset_hnjob(flags, name) \ + do { (flags) |= AuHnJob_##name; } while (0) +#define au_fclr_hnjob(flags, name) \ + do { (flags) &= ~AuHnJob_##name; } while (0) + +enum { + AuHn_CHILD, + AuHn_PARENT, + AuHnLast +}; + +struct au_hnotify_args { + struct inode *h_dir, *dir, *h_child_inode; + u32 mask; + unsigned int flags[AuHnLast]; + unsigned int h_child_nlen; + char h_child_name[]; +}; + +struct hn_job_args { + unsigned int flags; + struct inode *inode, *h_inode, *dir, *h_dir; + struct dentry *dentry; + char *h_name; + int h_nlen; +}; + +static int hn_job(struct hn_job_args *a) +{ + const unsigned int isdir = au_ftest_hnjob(a->flags, ISDIR); + int e; + + /* reset xino */ + if (au_ftest_hnjob(a->flags, XINO0) && a->inode) + hn_xino(a->inode, a->h_inode); /* ignore this error */ + + if (au_ftest_hnjob(a->flags, TRYXINO0) + && a->inode + && a->h_inode) { + inode_lock_nested(a->h_inode, AuLsc_I_CHILD); + if (!a->h_inode->i_nlink + && !(a->h_inode->i_state & I_LINKABLE)) + hn_xino(a->inode, a->h_inode); /* ignore this error */ + inode_unlock(a->h_inode); + } + + /* make the generation obsolete */ + if (au_ftest_hnjob(a->flags, GEN)) { + e = -1; + if (a->inode) + e = hn_gen_by_inode(a->h_name, a->h_nlen, a->inode, + isdir); + if (e && a->dentry) + hn_gen_by_name(a->dentry, isdir); + /* ignore this error */ + } + + /* make dir entries obsolete */ + if (au_ftest_hnjob(a->flags, DIRENT) && a->inode) { + struct au_vdir *vdir; + + vdir = au_ivdir(a->inode); + if (vdir) + vdir->vd_jiffy = 0; + /* IMustLock(a->inode); */ + /* a->inode->i_version++; */ + } + + /* can do nothing but warn */ + if (au_ftest_hnjob(a->flags, MNTPNT) + && a->dentry + && d_mountpoint(a->dentry)) + pr_warn("mount-point %pd is removed or renamed\n", a->dentry); + + return 0; +} + +/* ---------------------------------------------------------------------- */ + +static struct dentry *lookup_wlock_by_name(char *name, unsigned int nlen, + struct inode *dir) +{ + struct dentry *dentry, *d, *parent; + struct qstr *dname; + + parent = d_find_any_alias(dir); + if (!parent) + return NULL; + + dentry = NULL; + spin_lock(&parent->d_lock); + list_for_each_entry(d, &parent->d_subdirs, d_child) { + /* AuDbg("%pd\n", d); */ + spin_lock_nested(&d->d_lock, DENTRY_D_LOCK_NESTED); + dname = &d->d_name; + if (dname->len != nlen || memcmp(dname->name, name, nlen)) + goto cont_unlock; + if (au_di(d)) + au_digen_dec(d); + else + goto cont_unlock; + if (au_dcount(d) > 0) { + dentry = dget_dlock(d); + spin_unlock(&d->d_lock); + break; + } + +cont_unlock: + spin_unlock(&d->d_lock); + } + spin_unlock(&parent->d_lock); + dput(parent); + + if (dentry) + di_write_lock_child(dentry); + + return dentry; +} + +static struct inode *lookup_wlock_by_ino(struct super_block *sb, + aufs_bindex_t bindex, ino_t h_ino) +{ + struct inode *inode; + ino_t ino; + int err; + + inode = NULL; + err = au_xino_read(sb, bindex, h_ino, &ino); + if (!err && ino) + inode = ilookup(sb, ino); + if (!inode) + goto out; + + if (unlikely(inode->i_ino == AUFS_ROOT_INO)) { + pr_warn("wrong root branch\n"); + iput(inode); + inode = NULL; + goto out; + } + + ii_write_lock_child(inode); + +out: + return inode; +} + +static void au_hn_bh(void *_args) +{ + struct au_hnotify_args *a = _args; + struct super_block *sb; + aufs_bindex_t bindex, bbot, bfound; + unsigned char xino, try_iput; + int err; + struct inode *inode; + ino_t h_ino; + struct hn_job_args args; + struct dentry *dentry; + struct au_sbinfo *sbinfo; + + AuDebugOn(!_args); + AuDebugOn(!a->h_dir); + AuDebugOn(!a->dir); + AuDebugOn(!a->mask); + AuDbg("mask 0x%x, i%lu, hi%lu, hci%lu\n", + a->mask, a->dir->i_ino, a->h_dir->i_ino, + a->h_child_inode ? a->h_child_inode->i_ino : 0); + + inode = NULL; + dentry = NULL; + /* + * do not lock a->dir->i_mutex here + * because of d_revalidate() may cause a deadlock. + */ + sb = a->dir->i_sb; + AuDebugOn(!sb); + sbinfo = au_sbi(sb); + AuDebugOn(!sbinfo); + si_write_lock(sb, AuLock_NOPLMW); + + ii_read_lock_parent(a->dir); + bfound = -1; + bbot = au_ibbot(a->dir); + for (bindex = au_ibtop(a->dir); bindex <= bbot; bindex++) + if (au_h_iptr(a->dir, bindex) == a->h_dir) { + bfound = bindex; + break; + } + ii_read_unlock(a->dir); + if (unlikely(bfound < 0)) + goto out; + + xino = !!au_opt_test(au_mntflags(sb), XINO); + h_ino = 0; + if (a->h_child_inode) + h_ino = a->h_child_inode->i_ino; + + if (a->h_child_nlen + && (au_ftest_hnjob(a->flags[AuHn_CHILD], GEN) + || au_ftest_hnjob(a->flags[AuHn_CHILD], MNTPNT))) + dentry = lookup_wlock_by_name(a->h_child_name, a->h_child_nlen, + a->dir); + try_iput = 0; + if (dentry && d_really_is_positive(dentry)) + inode = d_inode(dentry); + if (xino && !inode && h_ino + && (au_ftest_hnjob(a->flags[AuHn_CHILD], XINO0) + || au_ftest_hnjob(a->flags[AuHn_CHILD], TRYXINO0) + || au_ftest_hnjob(a->flags[AuHn_CHILD], GEN))) { + inode = lookup_wlock_by_ino(sb, bfound, h_ino); + try_iput = 1; + } + + args.flags = a->flags[AuHn_CHILD]; + args.dentry = dentry; + args.inode = inode; + args.h_inode = a->h_child_inode; + args.dir = a->dir; + args.h_dir = a->h_dir; + args.h_name = a->h_child_name; + args.h_nlen = a->h_child_nlen; + err = hn_job(&args); + if (dentry) { + if (au_di(dentry)) + di_write_unlock(dentry); + dput(dentry); + } + if (inode && try_iput) { + ii_write_unlock(inode); + iput(inode); + } + + ii_write_lock_parent(a->dir); + args.flags = a->flags[AuHn_PARENT]; + args.dentry = NULL; + args.inode = a->dir; + args.h_inode = a->h_dir; + args.dir = NULL; + args.h_dir = NULL; + args.h_name = NULL; + args.h_nlen = 0; + err = hn_job(&args); + ii_write_unlock(a->dir); + +out: + iput(a->h_child_inode); + iput(a->h_dir); + iput(a->dir); + si_write_unlock(sb); + au_nwt_done(&sbinfo->si_nowait); + au_delayed_kfree(a); +} + +/* ---------------------------------------------------------------------- */ + +int au_hnotify(struct inode *h_dir, struct au_hnotify *hnotify, u32 mask, + struct qstr *h_child_qstr, struct inode *h_child_inode) +{ + int err, len; + unsigned int flags[AuHnLast], f; + unsigned char isdir, isroot, wh; + struct inode *dir; + struct au_hnotify_args *args; + char *p, *h_child_name; + + err = 0; + AuDebugOn(!hnotify || !hnotify->hn_aufs_inode); + dir = igrab(hnotify->hn_aufs_inode); + if (!dir) + goto out; + + isroot = (dir->i_ino == AUFS_ROOT_INO); + wh = 0; + h_child_name = (void *)h_child_qstr->name; + len = h_child_qstr->len; + if (h_child_name) { + if (len > AUFS_WH_PFX_LEN + && !memcmp(h_child_name, AUFS_WH_PFX, AUFS_WH_PFX_LEN)) { + h_child_name += AUFS_WH_PFX_LEN; + len -= AUFS_WH_PFX_LEN; + wh = 1; + } + } + + isdir = 0; + if (h_child_inode) + isdir = !!S_ISDIR(h_child_inode->i_mode); + flags[AuHn_PARENT] = AuHnJob_ISDIR; + flags[AuHn_CHILD] = 0; + if (isdir) + flags[AuHn_CHILD] = AuHnJob_ISDIR; + au_fset_hnjob(flags[AuHn_PARENT], DIRENT); + au_fset_hnjob(flags[AuHn_CHILD], GEN); + switch (mask & FS_EVENTS_POSS_ON_CHILD) { + case FS_MOVED_FROM: + case FS_MOVED_TO: + au_fset_hnjob(flags[AuHn_CHILD], XINO0); + au_fset_hnjob(flags[AuHn_CHILD], MNTPNT); + /*FALLTHROUGH*/ + case FS_CREATE: + AuDebugOn(!h_child_name); + break; + + case FS_DELETE: + /* + * aufs never be able to get this child inode. + * revalidation should be in d_revalidate() + * by checking i_nlink, i_generation or d_unhashed(). + */ + AuDebugOn(!h_child_name); + au_fset_hnjob(flags[AuHn_CHILD], TRYXINO0); + au_fset_hnjob(flags[AuHn_CHILD], MNTPNT); + break; + + default: + AuDebugOn(1); + } + + if (wh) + h_child_inode = NULL; + + err = -ENOMEM; + /* iput() and kfree() will be called in au_hnotify() */ + args = kmalloc(sizeof(*args) + len + 1, GFP_NOFS); + if (unlikely(!args)) { + AuErr1("no memory\n"); + iput(dir); + goto out; + } + args->flags[AuHn_PARENT] = flags[AuHn_PARENT]; + args->flags[AuHn_CHILD] = flags[AuHn_CHILD]; + args->mask = mask; + args->dir = dir; + args->h_dir = igrab(h_dir); + if (h_child_inode) + h_child_inode = igrab(h_child_inode); /* can be NULL */ + args->h_child_inode = h_child_inode; + args->h_child_nlen = len; + if (len) { + p = (void *)args; + p += sizeof(*args); + memcpy(p, h_child_name, len); + p[len] = 0; + } + + /* NFS fires the event for silly-renamed one from kworker */ + f = 0; + if (!dir->i_nlink + || (au_test_nfs(h_dir->i_sb) && (mask & FS_DELETE))) + f = AuWkq_NEST; + err = au_wkq_nowait(au_hn_bh, args, dir->i_sb, f); + if (unlikely(err)) { + pr_err("wkq %d\n", err); + iput(args->h_child_inode); + iput(args->h_dir); + iput(args->dir); + au_delayed_kfree(args); + } + +out: + return err; +} + +/* ---------------------------------------------------------------------- */ + +int au_hnotify_reset_br(unsigned int udba, struct au_branch *br, int perm) +{ + int err; + + AuDebugOn(!(udba & AuOptMask_UDBA)); + + err = 0; + if (au_hnotify_op.reset_br) + err = au_hnotify_op.reset_br(udba, br, perm); + + return err; +} + +int au_hnotify_init_br(struct au_branch *br, int perm) +{ + int err; + + err = 0; + if (au_hnotify_op.init_br) + err = au_hnotify_op.init_br(br, perm); + + return err; +} + +void au_hnotify_fin_br(struct au_branch *br) +{ + if (au_hnotify_op.fin_br) + au_hnotify_op.fin_br(br); +} + +static void au_hn_destroy_cache(void) +{ + struct au_cache *cp; + + flush_delayed_work(&au_dfree.dwork); + cp = au_dfree.cache + AuCache_HNOTIFY; + AuDebugOn(!llist_empty(&cp->llist)); + kmem_cache_destroy(cp->cache); + cp->cache = NULL; +} + +AU_CACHE_DFREE_FUNC(hnotify, HNOTIFY, hn_lnode); + +int __init au_hnotify_init(void) +{ + int err; + struct au_cache *cp; + + err = -ENOMEM; + cp = au_dfree.cache + AuCache_HNOTIFY; + cp->cache = AuCache(au_hnotify); + if (cp->cache) { + err = 0; + if (au_hnotify_op.init) + err = au_hnotify_op.init(); + if (unlikely(err)) + au_hn_destroy_cache(); + } + AuTraceErr(err); + return err; +} + +void au_hnotify_fin(void) +{ + struct au_cache *cp; + + if (au_hnotify_op.fin) + au_hnotify_op.fin(); + + /* cf. au_cache_fin() */ + cp = au_dfree.cache + AuCache_HNOTIFY; + if (cp->cache) + au_hn_destroy_cache(); +} --- linux-4.8.0.orig/fs/aufs/i_op.c +++ linux-4.8.0/fs/aufs/i_op.c @@ -0,0 +1,1451 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * inode operations (except add/del/rename) + */ + +#include +#include +#include +#include +#include "aufs.h" + +static int h_permission(struct inode *h_inode, int mask, + struct path *h_path, int brperm) +{ + int err; + const unsigned char write_mask = !!(mask & (MAY_WRITE | MAY_APPEND)); + + err = -EPERM; + if (write_mask && IS_IMMUTABLE(h_inode)) + goto out; + + err = -EACCES; + if (((mask & MAY_EXEC) + && S_ISREG(h_inode->i_mode) + && (path_noexec(h_path) + || !(h_inode->i_mode & S_IXUGO)))) + goto out; + + /* + * - skip the lower fs test in the case of write to ro branch. + * - nfs dir permission write check is optimized, but a policy for + * link/rename requires a real check. + * - nfs always sets MS_POSIXACL regardless its mount option 'noacl.' + * in this case, generic_permission() returns -EOPNOTSUPP. + */ + if ((write_mask && !au_br_writable(brperm)) + || (au_test_nfs(h_inode->i_sb) && S_ISDIR(h_inode->i_mode) + && write_mask && !(mask & MAY_READ)) + || !h_inode->i_op->permission) { + /* AuLabel(generic_permission); */ + /* AuDbg("get_acl %pf\n", h_inode->i_op->get_acl); */ + err = generic_permission(h_inode, mask); + if (err == -EOPNOTSUPP && au_test_nfs_noacl(h_inode)) + err = h_inode->i_op->permission(h_inode, mask); + AuTraceErr(err); + } else { + /* AuLabel(h_inode->permission); */ + err = h_inode->i_op->permission(h_inode, mask); + AuTraceErr(err); + } + + if (!err) + err = devcgroup_inode_permission(h_inode, mask); + if (!err) + err = security_inode_permission(h_inode, mask); + +#if 0 + if (!err) { + /* todo: do we need to call ima_path_check()? */ + struct path h_path = { + .dentry = + .mnt = h_mnt + }; + err = ima_path_check(&h_path, + mask & (MAY_READ | MAY_WRITE | MAY_EXEC), + IMA_COUNT_LEAVE); + } +#endif + +out: + return err; +} + +static int aufs_permission(struct inode *inode, int mask) +{ + int err; + aufs_bindex_t bindex, bbot; + const unsigned char isdir = !!S_ISDIR(inode->i_mode), + write_mask = !!(mask & (MAY_WRITE | MAY_APPEND)); + struct inode *h_inode; + struct super_block *sb; + struct au_branch *br; + + /* todo: support rcu-walk? */ + if (mask & MAY_NOT_BLOCK) + return -ECHILD; + + sb = inode->i_sb; + si_read_lock(sb, AuLock_FLUSH); + ii_read_lock_child(inode); +#if 0 + err = au_iigen_test(inode, au_sigen(sb)); + if (unlikely(err)) + goto out; +#endif + + if (!isdir + || write_mask + || au_opt_test(au_mntflags(sb), DIRPERM1)) { + err = au_busy_or_stale(); + h_inode = au_h_iptr(inode, au_ibtop(inode)); + if (unlikely(!h_inode + || (h_inode->i_mode & S_IFMT) + != (inode->i_mode & S_IFMT))) + goto out; + + err = 0; + bindex = au_ibtop(inode); + br = au_sbr(sb, bindex); + err = h_permission(h_inode, mask, &br->br_path, br->br_perm); + if (write_mask + && !err + && !special_file(h_inode->i_mode)) { + /* test whether the upper writable branch exists */ + err = -EROFS; + for (; bindex >= 0; bindex--) + if (!au_br_rdonly(au_sbr(sb, bindex))) { + err = 0; + break; + } + } + goto out; + } + + /* non-write to dir */ + err = 0; + bbot = au_ibbot(inode); + for (bindex = au_ibtop(inode); !err && bindex <= bbot; bindex++) { + h_inode = au_h_iptr(inode, bindex); + if (h_inode) { + err = au_busy_or_stale(); + if (unlikely(!S_ISDIR(h_inode->i_mode))) + break; + + br = au_sbr(sb, bindex); + err = h_permission(h_inode, mask, &br->br_path, + br->br_perm); + } + } + +out: + ii_read_unlock(inode); + si_read_unlock(sb); + return err; +} + +/* ---------------------------------------------------------------------- */ + +static struct dentry *aufs_lookup(struct inode *dir, struct dentry *dentry, + unsigned int flags) +{ + struct dentry *ret, *parent; + struct inode *inode; + struct super_block *sb; + int err, npositive; + + IMustLock(dir); + + /* todo: support rcu-walk? */ + ret = ERR_PTR(-ECHILD); + if (flags & LOOKUP_RCU) + goto out; + + ret = ERR_PTR(-ENAMETOOLONG); + if (unlikely(dentry->d_name.len > AUFS_MAX_NAMELEN)) + goto out; + + sb = dir->i_sb; + err = si_read_lock(sb, AuLock_FLUSH | AuLock_NOPLM); + ret = ERR_PTR(err); + if (unlikely(err)) + goto out; + + err = au_di_init(dentry); + ret = ERR_PTR(err); + if (unlikely(err)) + goto out_si; + + inode = NULL; + npositive = 0; /* suppress a warning */ + parent = dentry->d_parent; /* dir inode is locked */ + di_read_lock_parent(parent, AuLock_IR); + err = au_alive_dir(parent); + if (!err) + err = au_digen_test(parent, au_sigen(sb)); + if (!err) { + /* regardless LOOKUP_CREATE, always ALLOW_NEG */ + npositive = au_lkup_dentry(dentry, au_dbtop(parent), + AuLkup_ALLOW_NEG); + err = npositive; + } + di_read_unlock(parent, AuLock_IR); + ret = ERR_PTR(err); + if (unlikely(err < 0)) + goto out_unlock; + + if (npositive) { + inode = au_new_inode(dentry, /*must_new*/0); + if (IS_ERR(inode)) { + ret = (void *)inode; + inode = NULL; + goto out_unlock; + } + } + + if (inode) + atomic_inc(&inode->i_count); + ret = d_splice_alias(inode, dentry); +#if 0 + if (unlikely(d_need_lookup(dentry))) { + spin_lock(&dentry->d_lock); + dentry->d_flags &= ~DCACHE_NEED_LOOKUP; + spin_unlock(&dentry->d_lock); + } else +#endif + if (inode) { + if (!IS_ERR(ret)) { + iput(inode); + if (ret && ret != dentry) + ii_write_unlock(inode); + } else { + ii_write_unlock(inode); + iput(inode); + inode = NULL; + } + } + +out_unlock: + di_write_unlock(dentry); +out_si: + si_read_unlock(sb); +out: + return ret; +} + +/* ---------------------------------------------------------------------- */ + +struct aopen_node { + struct hlist_node hlist; + struct file *file, *h_file; +}; + +static int au_do_aopen(struct inode *inode, struct file *file) +{ + struct au_sphlhead *aopen; + struct aopen_node *node; + struct au_do_open_args args = { + .no_lock = 1, + .open = au_do_open_nondir + }; + + aopen = &au_sbi(inode->i_sb)->si_aopen; + spin_lock(&aopen->spin); + hlist_for_each_entry(node, &aopen->head, hlist) + if (node->file == file) { + args.h_file = node->h_file; + break; + } + spin_unlock(&aopen->spin); + /* AuDebugOn(!args.h_file); */ + + return au_do_open(file, &args); +} + +static int aufs_atomic_open(struct inode *dir, struct dentry *dentry, + struct file *file, unsigned int open_flag, + umode_t create_mode, int *opened) +{ + int err, h_opened = *opened; + unsigned int lkup_flags; + struct dentry *parent, *d; + struct au_sphlhead *aopen; + struct vfsub_aopen_args args = { + .open_flag = open_flag, + .create_mode = create_mode, + .opened = &h_opened + }; + struct aopen_node aopen_node = { + .file = file + }; + + IMustLock(dir); + AuDbg("open_flag 0%o\n", open_flag); + AuDbgDentry(dentry); + + err = 0; + if (!au_di(dentry)) { + lkup_flags = LOOKUP_OPEN; + if (open_flag & O_CREAT) + lkup_flags |= LOOKUP_CREATE; + d = aufs_lookup(dir, dentry, lkup_flags); + if (IS_ERR(d)) { + err = PTR_ERR(d); + AuTraceErr(err); + goto out; + } else if (d) { + /* + * obsoleted dentry found. + * another error will be returned later. + */ + d_drop(d); + AuDbgDentry(d); + dput(d); + } + AuDbgDentry(dentry); + } + + if (d_is_positive(dentry) + || d_unhashed(dentry) + || d_unlinked(dentry) + || !(open_flag & O_CREAT)) + goto out_no_open; + + err = aufs_read_lock(dentry, AuLock_DW | AuLock_FLUSH | AuLock_GEN); + if (unlikely(err)) + goto out; + + parent = dentry->d_parent; /* dir is locked */ + di_write_lock_parent(parent); + err = au_lkup_dentry(dentry, /*btop*/0, AuLkup_ALLOW_NEG); + if (unlikely(err)) + goto out_unlock; + + AuDbgDentry(dentry); + if (d_is_positive(dentry)) + goto out_unlock; + + args.file = get_empty_filp(); + err = PTR_ERR(args.file); + if (IS_ERR(args.file)) + goto out_unlock; + + args.file->f_flags = file->f_flags; + err = au_aopen_or_create(dir, dentry, &args); + AuTraceErr(err); + AuDbgFile(args.file); + if (unlikely(err < 0)) { + if (h_opened & FILE_OPENED) + fput(args.file); + else + put_filp(args.file); + goto out_unlock; + } + + /* some filesystems don't set FILE_CREATED while succeeded? */ + *opened |= FILE_CREATED; + if (h_opened & FILE_OPENED) + aopen_node.h_file = args.file; + else { + put_filp(args.file); + args.file = NULL; + } + aopen = &au_sbi(dir->i_sb)->si_aopen; + au_sphl_add(&aopen_node.hlist, aopen); + err = finish_open(file, dentry, au_do_aopen, opened); + au_sphl_del(&aopen_node.hlist, aopen); + AuTraceErr(err); + AuDbgFile(file); + if (aopen_node.h_file) + fput(aopen_node.h_file); + +out_unlock: + di_write_unlock(parent); + aufs_read_unlock(dentry, AuLock_DW); + AuDbgDentry(dentry); + if (unlikely(err < 0)) + goto out; +out_no_open: + if (err >= 0 && !(*opened & FILE_CREATED)) { + AuLabel(out_no_open); + dget(dentry); + err = finish_no_open(file, dentry); + } +out: + AuDbg("%pd%s%s\n", dentry, + (*opened & FILE_CREATED) ? " created" : "", + (*opened & FILE_OPENED) ? " opened" : ""); + AuTraceErr(err); + return err; +} + + +/* ---------------------------------------------------------------------- */ + +static int au_wr_dir_cpup(struct dentry *dentry, struct dentry *parent, + const unsigned char add_entry, aufs_bindex_t bcpup, + aufs_bindex_t btop) +{ + int err; + struct dentry *h_parent; + struct inode *h_dir; + + if (add_entry) + IMustLock(d_inode(parent)); + else + di_write_lock_parent(parent); + + err = 0; + if (!au_h_dptr(parent, bcpup)) { + if (btop > bcpup) + err = au_cpup_dirs(dentry, bcpup); + else if (btop < bcpup) + err = au_cpdown_dirs(dentry, bcpup); + else + BUG(); + } + if (!err && add_entry && !au_ftest_wrdir(add_entry, TMPFILE)) { + h_parent = au_h_dptr(parent, bcpup); + h_dir = d_inode(h_parent); + inode_lock_nested(h_dir, AuLsc_I_PARENT); + err = au_lkup_neg(dentry, bcpup, /*wh*/0); + /* todo: no unlock here */ + inode_unlock(h_dir); + + AuDbg("bcpup %d\n", bcpup); + if (!err) { + if (d_really_is_negative(dentry)) + au_set_h_dptr(dentry, btop, NULL); + au_update_dbrange(dentry, /*do_put_zero*/0); + } + } + + if (!add_entry) + di_write_unlock(parent); + if (!err) + err = bcpup; /* success */ + + AuTraceErr(err); + return err; +} + +/* + * decide the branch and the parent dir where we will create a new entry. + * returns new bindex or an error. + * copyup the parent dir if needed. + */ +int au_wr_dir(struct dentry *dentry, struct dentry *src_dentry, + struct au_wr_dir_args *args) +{ + int err; + unsigned int flags; + aufs_bindex_t bcpup, btop, src_btop; + const unsigned char add_entry + = au_ftest_wrdir(args->flags, ADD_ENTRY) + | au_ftest_wrdir(args->flags, TMPFILE); + struct super_block *sb; + struct dentry *parent; + struct au_sbinfo *sbinfo; + + sb = dentry->d_sb; + sbinfo = au_sbi(sb); + parent = dget_parent(dentry); + btop = au_dbtop(dentry); + bcpup = btop; + if (args->force_btgt < 0) { + if (src_dentry) { + src_btop = au_dbtop(src_dentry); + if (src_btop < btop) + bcpup = src_btop; + } else if (add_entry) { + flags = 0; + if (au_ftest_wrdir(args->flags, ISDIR)) + au_fset_wbr(flags, DIR); + err = AuWbrCreate(sbinfo, dentry, flags); + bcpup = err; + } + + if (bcpup < 0 || au_test_ro(sb, bcpup, d_inode(dentry))) { + if (add_entry) + err = AuWbrCopyup(sbinfo, dentry); + else { + if (!IS_ROOT(dentry)) { + di_read_lock_parent(parent, !AuLock_IR); + err = AuWbrCopyup(sbinfo, dentry); + di_read_unlock(parent, !AuLock_IR); + } else + err = AuWbrCopyup(sbinfo, dentry); + } + bcpup = err; + if (unlikely(err < 0)) + goto out; + } + } else { + bcpup = args->force_btgt; + AuDebugOn(au_test_ro(sb, bcpup, d_inode(dentry))); + } + + AuDbg("btop %d, bcpup %d\n", btop, bcpup); + err = bcpup; + if (bcpup == btop) + goto out; /* success */ + + /* copyup the new parent into the branch we process */ + err = au_wr_dir_cpup(dentry, parent, add_entry, bcpup, btop); + if (err >= 0) { + if (d_really_is_negative(dentry)) { + au_set_h_dptr(dentry, btop, NULL); + au_set_dbtop(dentry, bcpup); + au_set_dbbot(dentry, bcpup); + } + AuDebugOn(add_entry + && !au_ftest_wrdir(args->flags, TMPFILE) + && !au_h_dptr(dentry, bcpup)); + } + +out: + dput(parent); + return err; +} + +/* ---------------------------------------------------------------------- */ + +void au_pin_hdir_unlock(struct au_pin *p) +{ + if (p->hdir) + au_hn_inode_unlock(p->hdir); +} + +int au_pin_hdir_lock(struct au_pin *p) +{ + int err; + + err = 0; + if (!p->hdir) + goto out; + + /* even if an error happens later, keep this lock */ + au_hn_inode_lock_nested(p->hdir, p->lsc_hi); + + err = -EBUSY; + if (unlikely(p->hdir->hi_inode != d_inode(p->h_parent))) + goto out; + + err = 0; + if (p->h_dentry) + err = au_h_verify(p->h_dentry, p->udba, p->hdir->hi_inode, + p->h_parent, p->br); + +out: + return err; +} + +int au_pin_hdir_relock(struct au_pin *p) +{ + int err, i; + struct inode *h_i; + struct dentry *h_d[] = { + p->h_dentry, + p->h_parent + }; + + err = au_pin_hdir_lock(p); + if (unlikely(err)) + goto out; + + for (i = 0; !err && i < sizeof(h_d)/sizeof(*h_d); i++) { + if (!h_d[i]) + continue; + if (d_is_positive(h_d[i])) { + h_i = d_inode(h_d[i]); + err = !h_i->i_nlink; + } + } + +out: + return err; +} + +static void au_pin_hdir_set_owner(struct au_pin *p, struct task_struct *task) +{ +#if !defined(CONFIG_RWSEM_GENERIC_SPINLOCK) && defined(CONFIG_RWSEM_SPIN_ON_OWNER) + p->hdir->hi_inode->i_rwsem.owner = task; +#endif +} + +void au_pin_hdir_acquire_nest(struct au_pin *p) +{ + if (p->hdir) { + rwsem_acquire_nest(&p->hdir->hi_inode->i_rwsem.dep_map, + p->lsc_hi, 0, NULL, _RET_IP_); + au_pin_hdir_set_owner(p, current); + } +} + +void au_pin_hdir_release(struct au_pin *p) +{ + if (p->hdir) { + au_pin_hdir_set_owner(p, p->task); + rwsem_release(&p->hdir->hi_inode->i_rwsem.dep_map, 1, _RET_IP_); + } +} + +struct dentry *au_pinned_h_parent(struct au_pin *pin) +{ + if (pin && pin->parent) + return au_h_dptr(pin->parent, pin->bindex); + return NULL; +} + +void au_unpin(struct au_pin *p) +{ + if (p->hdir) + au_pin_hdir_unlock(p); + if (p->h_mnt && au_ftest_pin(p->flags, MNT_WRITE)) + vfsub_mnt_drop_write(p->h_mnt); + if (!p->hdir) + return; + + if (!au_ftest_pin(p->flags, DI_LOCKED)) + di_read_unlock(p->parent, AuLock_IR); + iput(p->hdir->hi_inode); + dput(p->parent); + p->parent = NULL; + p->hdir = NULL; + p->h_mnt = NULL; + /* do not clear p->task */ +} + +int au_do_pin(struct au_pin *p) +{ + int err; + struct super_block *sb; + struct inode *h_dir; + + err = 0; + sb = p->dentry->d_sb; + p->br = au_sbr(sb, p->bindex); + if (IS_ROOT(p->dentry)) { + if (au_ftest_pin(p->flags, MNT_WRITE)) { + p->h_mnt = au_br_mnt(p->br); + err = vfsub_mnt_want_write(p->h_mnt); + if (unlikely(err)) { + au_fclr_pin(p->flags, MNT_WRITE); + goto out_err; + } + } + goto out; + } + + p->h_dentry = NULL; + if (p->bindex <= au_dbbot(p->dentry)) + p->h_dentry = au_h_dptr(p->dentry, p->bindex); + + p->parent = dget_parent(p->dentry); + if (!au_ftest_pin(p->flags, DI_LOCKED)) + di_read_lock(p->parent, AuLock_IR, p->lsc_di); + + h_dir = NULL; + p->h_parent = au_h_dptr(p->parent, p->bindex); + p->hdir = au_hi(d_inode(p->parent), p->bindex); + if (p->hdir) + h_dir = p->hdir->hi_inode; + + /* + * udba case, or + * if DI_LOCKED is not set, then p->parent may be different + * and h_parent can be NULL. + */ + if (unlikely(!p->hdir || !h_dir || !p->h_parent)) { + err = -EBUSY; + if (!au_ftest_pin(p->flags, DI_LOCKED)) + di_read_unlock(p->parent, AuLock_IR); + dput(p->parent); + p->parent = NULL; + goto out_err; + } + + if (au_ftest_pin(p->flags, MNT_WRITE)) { + p->h_mnt = au_br_mnt(p->br); + err = vfsub_mnt_want_write(p->h_mnt); + if (unlikely(err)) { + au_fclr_pin(p->flags, MNT_WRITE); + if (!au_ftest_pin(p->flags, DI_LOCKED)) + di_read_unlock(p->parent, AuLock_IR); + dput(p->parent); + p->parent = NULL; + goto out_err; + } + } + + au_igrab(h_dir); + err = au_pin_hdir_lock(p); + if (!err) + goto out; /* success */ + + au_unpin(p); + +out_err: + pr_err("err %d\n", err); + err = au_busy_or_stale(); +out: + return err; +} + +void au_pin_init(struct au_pin *p, struct dentry *dentry, + aufs_bindex_t bindex, int lsc_di, int lsc_hi, + unsigned int udba, unsigned char flags) +{ + p->dentry = dentry; + p->udba = udba; + p->lsc_di = lsc_di; + p->lsc_hi = lsc_hi; + p->flags = flags; + p->bindex = bindex; + + p->parent = NULL; + p->hdir = NULL; + p->h_mnt = NULL; + + p->h_dentry = NULL; + p->h_parent = NULL; + p->br = NULL; + p->task = current; +} + +int au_pin(struct au_pin *pin, struct dentry *dentry, aufs_bindex_t bindex, + unsigned int udba, unsigned char flags) +{ + au_pin_init(pin, dentry, bindex, AuLsc_DI_PARENT, AuLsc_I_PARENT2, + udba, flags); + return au_do_pin(pin); +} + +/* ---------------------------------------------------------------------- */ + +/* + * ->setattr() and ->getattr() are called in various cases. + * chmod, stat: dentry is revalidated. + * fchmod, fstat: file and dentry are not revalidated, additionally they may be + * unhashed. + * for ->setattr(), ia->ia_file is passed from ftruncate only. + */ +/* todo: consolidate with do_refresh() and simple_reval_dpath() */ +int au_reval_for_attr(struct dentry *dentry, unsigned int sigen) +{ + int err; + struct dentry *parent; + + err = 0; + if (au_digen_test(dentry, sigen)) { + parent = dget_parent(dentry); + di_read_lock_parent(parent, AuLock_IR); + err = au_refresh_dentry(dentry, parent); + di_read_unlock(parent, AuLock_IR); + dput(parent); + } + + AuTraceErr(err); + return err; +} + +int au_pin_and_icpup(struct dentry *dentry, struct iattr *ia, + struct au_icpup_args *a) +{ + int err; + loff_t sz; + aufs_bindex_t btop, ibtop; + struct dentry *hi_wh, *parent; + struct inode *inode; + struct au_wr_dir_args wr_dir_args = { + .force_btgt = -1, + .flags = 0 + }; + + if (d_is_dir(dentry)) + au_fset_wrdir(wr_dir_args.flags, ISDIR); + /* plink or hi_wh() case */ + btop = au_dbtop(dentry); + inode = d_inode(dentry); + ibtop = au_ibtop(inode); + if (btop != ibtop && !au_test_ro(inode->i_sb, ibtop, inode)) + wr_dir_args.force_btgt = ibtop; + err = au_wr_dir(dentry, /*src_dentry*/NULL, &wr_dir_args); + if (unlikely(err < 0)) + goto out; + a->btgt = err; + if (err != btop) + au_fset_icpup(a->flags, DID_CPUP); + + err = 0; + a->pin_flags = AuPin_MNT_WRITE; + parent = NULL; + if (!IS_ROOT(dentry)) { + au_fset_pin(a->pin_flags, DI_LOCKED); + parent = dget_parent(dentry); + di_write_lock_parent(parent); + } + + err = au_pin(&a->pin, dentry, a->btgt, a->udba, a->pin_flags); + if (unlikely(err)) + goto out_parent; + + sz = -1; + a->h_path.dentry = au_h_dptr(dentry, btop); + a->h_inode = d_inode(a->h_path.dentry); + if (ia && (ia->ia_valid & ATTR_SIZE)) { + inode_lock_nested(a->h_inode, AuLsc_I_CHILD); + if (ia->ia_size < i_size_read(a->h_inode)) + sz = ia->ia_size; + inode_unlock(a->h_inode); + } + + hi_wh = NULL; + if (au_ftest_icpup(a->flags, DID_CPUP) && d_unlinked(dentry)) { + hi_wh = au_hi_wh(inode, a->btgt); + if (!hi_wh) { + struct au_cp_generic cpg = { + .dentry = dentry, + .bdst = a->btgt, + .bsrc = -1, + .len = sz, + .pin = &a->pin + }; + err = au_sio_cpup_wh(&cpg, /*file*/NULL); + if (unlikely(err)) + goto out_unlock; + hi_wh = au_hi_wh(inode, a->btgt); + /* todo: revalidate hi_wh? */ + } + } + + if (parent) { + au_pin_set_parent_lflag(&a->pin, /*lflag*/0); + di_downgrade_lock(parent, AuLock_IR); + dput(parent); + parent = NULL; + } + if (!au_ftest_icpup(a->flags, DID_CPUP)) + goto out; /* success */ + + if (!d_unhashed(dentry)) { + struct au_cp_generic cpg = { + .dentry = dentry, + .bdst = a->btgt, + .bsrc = btop, + .len = sz, + .pin = &a->pin, + .flags = AuCpup_DTIME | AuCpup_HOPEN + }; + err = au_sio_cpup_simple(&cpg); + if (!err) + a->h_path.dentry = au_h_dptr(dentry, a->btgt); + } else if (!hi_wh) + a->h_path.dentry = au_h_dptr(dentry, a->btgt); + else + a->h_path.dentry = hi_wh; /* do not dget here */ + +out_unlock: + a->h_inode = d_inode(a->h_path.dentry); + if (!err) + goto out; /* success */ + au_unpin(&a->pin); +out_parent: + if (parent) { + di_write_unlock(parent); + dput(parent); + } +out: + if (!err) + inode_lock_nested(a->h_inode, AuLsc_I_CHILD); + return err; +} + +static int aufs_setattr(struct dentry *dentry, struct iattr *ia) +{ + int err; + struct inode *inode, *delegated; + struct super_block *sb; + struct file *file; + struct au_icpup_args *a; + + inode = d_inode(dentry); + IMustLock(inode); + + err = -ENOMEM; + a = kzalloc(sizeof(*a), GFP_NOFS); + if (unlikely(!a)) + goto out; + + if (ia->ia_valid & (ATTR_KILL_SUID | ATTR_KILL_SGID)) + ia->ia_valid &= ~ATTR_MODE; + + file = NULL; + sb = dentry->d_sb; + err = si_read_lock(sb, AuLock_FLUSH | AuLock_NOPLM); + if (unlikely(err)) + goto out_kfree; + + if (ia->ia_valid & ATTR_FILE) { + /* currently ftruncate(2) only */ + AuDebugOn(!d_is_reg(dentry)); + file = ia->ia_file; + err = au_reval_and_lock_fdi(file, au_reopen_nondir, /*wlock*/1); + if (unlikely(err)) + goto out_si; + ia->ia_file = au_hf_top(file); + a->udba = AuOpt_UDBA_NONE; + } else { + /* fchmod() doesn't pass ia_file */ + a->udba = au_opt_udba(sb); + di_write_lock_child(dentry); + /* no d_unlinked(), to set UDBA_NONE for root */ + if (d_unhashed(dentry)) + a->udba = AuOpt_UDBA_NONE; + if (a->udba != AuOpt_UDBA_NONE) { + AuDebugOn(IS_ROOT(dentry)); + err = au_reval_for_attr(dentry, au_sigen(sb)); + if (unlikely(err)) + goto out_dentry; + } + } + + err = au_pin_and_icpup(dentry, ia, a); + if (unlikely(err < 0)) + goto out_dentry; + if (au_ftest_icpup(a->flags, DID_CPUP)) { + ia->ia_file = NULL; + ia->ia_valid &= ~ATTR_FILE; + } + + a->h_path.mnt = au_sbr_mnt(sb, a->btgt); + if ((ia->ia_valid & (ATTR_MODE | ATTR_CTIME)) + == (ATTR_MODE | ATTR_CTIME)) { + err = security_path_chmod(&a->h_path, ia->ia_mode); + if (unlikely(err)) + goto out_unlock; + } else if ((ia->ia_valid & (ATTR_UID | ATTR_GID)) + && (ia->ia_valid & ATTR_CTIME)) { + err = security_path_chown(&a->h_path, ia->ia_uid, ia->ia_gid); + if (unlikely(err)) + goto out_unlock; + } + + if (ia->ia_valid & ATTR_SIZE) { + struct file *f; + + if (ia->ia_size < i_size_read(inode)) + /* unmap only */ + truncate_setsize(inode, ia->ia_size); + + f = NULL; + if (ia->ia_valid & ATTR_FILE) + f = ia->ia_file; + inode_unlock(a->h_inode); + err = vfsub_trunc(&a->h_path, ia->ia_size, ia->ia_valid, f); + inode_lock_nested(a->h_inode, AuLsc_I_CHILD); + } else { + delegated = NULL; + while (1) { + err = vfsub_notify_change(&a->h_path, ia, &delegated); + if (delegated) { + err = break_deleg_wait(&delegated); + if (!err) + continue; + } + break; + } + } + /* + * regardless aufs 'acl' option setting. + * why don't all acl-aware fs call this func from their ->setattr()? + */ + if (!err && (ia->ia_valid & ATTR_MODE)) + err = vfsub_acl_chmod(a->h_inode, ia->ia_mode); + if (!err) + au_cpup_attr_changeable(inode); + +out_unlock: + inode_unlock(a->h_inode); + au_unpin(&a->pin); + if (unlikely(err)) + au_update_dbtop(dentry); +out_dentry: + di_write_unlock(dentry); + if (file) { + fi_write_unlock(file); + ia->ia_file = file; + ia->ia_valid |= ATTR_FILE; + } +out_si: + si_read_unlock(sb); +out_kfree: + au_delayed_kfree(a); +out: + AuTraceErr(err); + return err; +} + +#if IS_ENABLED(CONFIG_AUFS_XATTR) || IS_ENABLED(CONFIG_FS_POSIX_ACL) +static int au_h_path_to_set_attr(struct dentry *dentry, + struct au_icpup_args *a, struct path *h_path) +{ + int err; + struct super_block *sb; + + sb = dentry->d_sb; + a->udba = au_opt_udba(sb); + /* no d_unlinked(), to set UDBA_NONE for root */ + if (d_unhashed(dentry)) + a->udba = AuOpt_UDBA_NONE; + if (a->udba != AuOpt_UDBA_NONE) { + AuDebugOn(IS_ROOT(dentry)); + err = au_reval_for_attr(dentry, au_sigen(sb)); + if (unlikely(err)) + goto out; + } + err = au_pin_and_icpup(dentry, /*ia*/NULL, a); + if (unlikely(err < 0)) + goto out; + + h_path->dentry = a->h_path.dentry; + h_path->mnt = au_sbr_mnt(sb, a->btgt); + +out: + return err; +} + +ssize_t au_srxattr(struct dentry *dentry, struct inode *inode, + struct au_srxattr *arg) +{ + int err; + struct path h_path; + struct super_block *sb; + struct au_icpup_args *a; + struct inode *h_inode; + + IMustLock(inode); + + err = -ENOMEM; + a = kzalloc(sizeof(*a), GFP_NOFS); + if (unlikely(!a)) + goto out; + + sb = dentry->d_sb; + err = si_read_lock(sb, AuLock_FLUSH | AuLock_NOPLM); + if (unlikely(err)) + goto out_kfree; + + h_path.dentry = NULL; /* silence gcc */ + di_write_lock_child(dentry); + err = au_h_path_to_set_attr(dentry, a, &h_path); + if (unlikely(err)) + goto out_di; + + inode_unlock(a->h_inode); + switch (arg->type) { + case AU_XATTR_SET: + AuDebugOn(d_is_negative(h_path.dentry)); + err = vfsub_setxattr(h_path.dentry, + arg->u.set.name, arg->u.set.value, + arg->u.set.size, arg->u.set.flags); + break; + case AU_XATTR_REMOVE: + err = vfsub_removexattr(h_path.dentry, arg->u.remove.name); + break; + case AU_ACL_SET: + err = -EOPNOTSUPP; + h_inode = d_inode(h_path.dentry); + if (h_inode->i_op->set_acl) + err = h_inode->i_op->set_acl(h_inode, + arg->u.acl_set.acl, + arg->u.acl_set.type); + break; + } + if (!err) + au_cpup_attr_timesizes(inode); + + au_unpin(&a->pin); + if (unlikely(err)) + au_update_dbtop(dentry); + +out_di: + di_write_unlock(dentry); + si_read_unlock(sb); +out_kfree: + au_delayed_kfree(a); +out: + AuTraceErr(err); + return err; +} +#endif + +static void au_refresh_iattr(struct inode *inode, struct kstat *st, + unsigned int nlink) +{ + unsigned int n; + + inode->i_mode = st->mode; + /* don't i_[ug]id_write() here */ + inode->i_uid = st->uid; + inode->i_gid = st->gid; + inode->i_atime = st->atime; + inode->i_mtime = st->mtime; + inode->i_ctime = st->ctime; + + au_cpup_attr_nlink(inode, /*force*/0); + if (S_ISDIR(inode->i_mode)) { + n = inode->i_nlink; + n -= nlink; + n += st->nlink; + smp_mb(); /* for i_nlink */ + /* 0 can happen */ + set_nlink(inode, n); + } + + spin_lock(&inode->i_lock); + inode->i_blocks = st->blocks; + i_size_write(inode, st->size); + spin_unlock(&inode->i_lock); +} + +/* + * common routine for aufs_getattr() and aufs_getxattr(). + * returns zero or negative (an error). + * @dentry will be read-locked in success. + */ +int au_h_path_getattr(struct dentry *dentry, int force, struct path *h_path) +{ + int err; + unsigned int mnt_flags, sigen; + unsigned char udba_none; + aufs_bindex_t bindex; + struct super_block *sb, *h_sb; + struct inode *inode; + + h_path->mnt = NULL; + h_path->dentry = NULL; + + err = 0; + sb = dentry->d_sb; + mnt_flags = au_mntflags(sb); + udba_none = !!au_opt_test(mnt_flags, UDBA_NONE); + + /* support fstat(2) */ + if (!d_unlinked(dentry) && !udba_none) { + sigen = au_sigen(sb); + err = au_digen_test(dentry, sigen); + if (!err) { + di_read_lock_child(dentry, AuLock_IR); + err = au_dbrange_test(dentry); + if (unlikely(err)) { + di_read_unlock(dentry, AuLock_IR); + goto out; + } + } else { + AuDebugOn(IS_ROOT(dentry)); + di_write_lock_child(dentry); + err = au_dbrange_test(dentry); + if (!err) + err = au_reval_for_attr(dentry, sigen); + if (!err) + di_downgrade_lock(dentry, AuLock_IR); + else { + di_write_unlock(dentry); + goto out; + } + } + } else + di_read_lock_child(dentry, AuLock_IR); + + inode = d_inode(dentry); + bindex = au_ibtop(inode); + h_path->mnt = au_sbr_mnt(sb, bindex); + h_sb = h_path->mnt->mnt_sb; + if (!force + && !au_test_fs_bad_iattr(h_sb) + && udba_none) + goto out; /* success */ + + if (au_dbtop(dentry) == bindex) + h_path->dentry = au_h_dptr(dentry, bindex); + else if (au_opt_test(mnt_flags, PLINK) && au_plink_test(inode)) { + h_path->dentry = au_plink_lkup(inode, bindex); + if (IS_ERR(h_path->dentry)) + /* pretending success */ + h_path->dentry = NULL; + else + dput(h_path->dentry); + } + +out: + return err; +} + +static int aufs_getattr(struct vfsmount *mnt __maybe_unused, + struct dentry *dentry, struct kstat *st) +{ + int err; + unsigned char positive; + struct path h_path; + struct inode *inode; + struct super_block *sb; + + inode = d_inode(dentry); + sb = dentry->d_sb; + err = si_read_lock(sb, AuLock_FLUSH | AuLock_NOPLM); + if (unlikely(err)) + goto out; + err = au_h_path_getattr(dentry, /*force*/0, &h_path); + if (unlikely(err)) + goto out_si; + if (unlikely(!h_path.dentry)) + /* illegally overlapped or something */ + goto out_fill; /* pretending success */ + + positive = d_is_positive(h_path.dentry); + if (positive) + err = vfs_getattr(&h_path, st); + if (!err) { + if (positive) + au_refresh_iattr(inode, st, + d_inode(h_path.dentry)->i_nlink); + goto out_fill; /* success */ + } + AuTraceErr(err); + goto out_di; + +out_fill: + generic_fillattr(inode, st); +out_di: + di_read_unlock(dentry, AuLock_IR); +out_si: + si_read_unlock(sb); +out: + AuTraceErr(err); + return err; +} + +/* ---------------------------------------------------------------------- */ + +static const char *aufs_get_link(struct dentry *dentry, struct inode *inode, + struct delayed_call *done) +{ + const char *ret; + struct dentry *h_dentry; + struct inode *h_inode; + int err; + aufs_bindex_t bindex; + + ret = NULL; /* suppress a warning */ + err = -ECHILD; + if (!dentry) + goto out; + + err = aufs_read_lock(dentry, AuLock_IR | AuLock_GEN); + if (unlikely(err)) + goto out; + + err = au_d_hashed_positive(dentry); + if (unlikely(err)) + goto out_unlock; + + err = -EINVAL; + inode = d_inode(dentry); + bindex = au_ibtop(inode); + h_inode = au_h_iptr(inode, bindex); + if (unlikely(!h_inode->i_op->get_link)) + goto out_unlock; + + err = -EBUSY; + h_dentry = NULL; + if (au_dbtop(dentry) <= bindex) { + h_dentry = au_h_dptr(dentry, bindex); + if (h_dentry) + dget(h_dentry); + } + if (!h_dentry) { + h_dentry = d_find_any_alias(h_inode); + if (IS_ERR(h_dentry)) { + err = PTR_ERR(h_dentry); + goto out_unlock; + } + } + if (unlikely(!h_dentry)) + goto out_unlock; + + err = 0; + AuDbg("%pf\n", h_inode->i_op->get_link); + AuDbgDentry(h_dentry); + ret = h_inode->i_op->get_link(h_dentry, h_inode, done); + dput(h_dentry); + if (IS_ERR(ret)) + err = PTR_ERR(ret); + +out_unlock: + aufs_read_unlock(dentry, AuLock_IR); +out: + if (unlikely(err)) + ret = ERR_PTR(err); + AuTraceErrPtr(ret); + return ret; +} + +/* ---------------------------------------------------------------------- */ + +static int au_is_special(struct inode *inode) +{ + return (inode->i_mode & (S_IFBLK | S_IFCHR | S_IFIFO | S_IFSOCK)); +} + +static int aufs_update_time(struct inode *inode, struct timespec *ts, int flags) +{ + int err; + aufs_bindex_t bindex; + struct super_block *sb; + struct inode *h_inode; + struct vfsmount *h_mnt; + + sb = inode->i_sb; + WARN_ONCE((flags & S_ATIME) && !IS_NOATIME(inode), + "unexpected s_flags 0x%lx", sb->s_flags); + + /* mmap_sem might be acquired already, cf. aufs_mmap() */ + lockdep_off(); + si_read_lock(sb, AuLock_FLUSH); + ii_write_lock_child(inode); + lockdep_on(); + + err = 0; + bindex = au_ibtop(inode); + h_inode = au_h_iptr(inode, bindex); + if (!au_test_ro(sb, bindex, inode)) { + h_mnt = au_sbr_mnt(sb, bindex); + err = vfsub_mnt_want_write(h_mnt); + if (!err) { + err = vfsub_update_time(h_inode, ts, flags); + vfsub_mnt_drop_write(h_mnt); + } + } else if (au_is_special(h_inode)) { + /* + * Never copy-up here. + * These special files may already be opened and used for + * communicating. If we copied it up, then the communication + * would be corrupted. + */ + AuWarn1("timestamps for i%lu are ignored " + "since it is on readonly branch (hi%lu).\n", + inode->i_ino, h_inode->i_ino); + } else if (flags & ~S_ATIME) { + err = -EIO; + AuIOErr1("unexpected flags 0x%x\n", flags); + AuDebugOn(1); + } + + lockdep_off(); + if (!err) + au_cpup_attr_timesizes(inode); + ii_write_unlock(inode); + si_read_unlock(sb); + lockdep_on(); + + if (!err && (flags & S_VERSION)) + inode_inc_iversion(inode); + + return err; +} + +/* ---------------------------------------------------------------------- */ + +/* no getattr version will be set by module.c:aufs_init() */ +struct inode_operations aufs_iop_nogetattr[AuIop_Last], + aufs_iop[] = { + [AuIop_SYMLINK] = { + .permission = aufs_permission, +#ifdef CONFIG_FS_POSIX_ACL + .get_acl = aufs_get_acl, + .set_acl = aufs_set_acl, /* unsupport for symlink? */ +#endif + + .setattr = aufs_setattr, + .getattr = aufs_getattr, + +#ifdef CONFIG_AUFS_XATTR + .setxattr = aufs_setxattr, + .getxattr = aufs_getxattr, + .listxattr = aufs_listxattr, + .removexattr = aufs_removexattr, +#endif + + .readlink = generic_readlink, + .get_link = aufs_get_link, + + /* .update_time = aufs_update_time */ + }, + [AuIop_DIR] = { + .create = aufs_create, + .lookup = aufs_lookup, + .link = aufs_link, + .unlink = aufs_unlink, + .symlink = aufs_symlink, + .mkdir = aufs_mkdir, + .rmdir = aufs_rmdir, + .mknod = aufs_mknod, + .rename = aufs_rename, + + .permission = aufs_permission, +#ifdef CONFIG_FS_POSIX_ACL + .get_acl = aufs_get_acl, + .set_acl = aufs_set_acl, +#endif + + .setattr = aufs_setattr, + .getattr = aufs_getattr, + +#ifdef CONFIG_AUFS_XATTR + .setxattr = aufs_setxattr, + .getxattr = aufs_getxattr, + .listxattr = aufs_listxattr, + .removexattr = aufs_removexattr, +#endif + + .update_time = aufs_update_time, + .atomic_open = aufs_atomic_open, + .tmpfile = aufs_tmpfile + }, + [AuIop_OTHER] = { + .permission = aufs_permission, +#ifdef CONFIG_FS_POSIX_ACL + .get_acl = aufs_get_acl, + .set_acl = aufs_set_acl, +#endif + + .setattr = aufs_setattr, + .getattr = aufs_getattr, + +#ifdef CONFIG_AUFS_XATTR + .setxattr = aufs_setxattr, + .getxattr = aufs_getxattr, + .listxattr = aufs_listxattr, + .removexattr = aufs_removexattr, +#endif + + .update_time = aufs_update_time + } +}; --- linux-4.8.0.orig/fs/aufs/i_op_add.c +++ linux-4.8.0/fs/aufs/i_op_add.c @@ -0,0 +1,924 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * inode operations (add entry) + */ + +#include "aufs.h" + +/* + * final procedure of adding a new entry, except link(2). + * remove whiteout, instantiate, copyup the parent dir's times and size + * and update version. + * if it failed, re-create the removed whiteout. + */ +static int epilog(struct inode *dir, aufs_bindex_t bindex, + struct dentry *wh_dentry, struct dentry *dentry) +{ + int err, rerr; + aufs_bindex_t bwh; + struct path h_path; + struct super_block *sb; + struct inode *inode, *h_dir; + struct dentry *wh; + + bwh = -1; + sb = dir->i_sb; + if (wh_dentry) { + h_dir = d_inode(wh_dentry->d_parent); /* dir inode is locked */ + IMustLock(h_dir); + AuDebugOn(au_h_iptr(dir, bindex) != h_dir); + bwh = au_dbwh(dentry); + h_path.dentry = wh_dentry; + h_path.mnt = au_sbr_mnt(sb, bindex); + err = au_wh_unlink_dentry(au_h_iptr(dir, bindex), &h_path, + dentry); + if (unlikely(err)) + goto out; + } + + inode = au_new_inode(dentry, /*must_new*/1); + if (!IS_ERR(inode)) { + d_instantiate(dentry, inode); + dir = d_inode(dentry->d_parent); /* dir inode is locked */ + IMustLock(dir); + au_dir_ts(dir, bindex); + dir->i_version++; + au_fhsm_wrote(sb, bindex, /*force*/0); + return 0; /* success */ + } + + err = PTR_ERR(inode); + if (!wh_dentry) + goto out; + + /* revert */ + /* dir inode is locked */ + wh = au_wh_create(dentry, bwh, wh_dentry->d_parent); + rerr = PTR_ERR(wh); + if (IS_ERR(wh)) { + AuIOErr("%pd reverting whiteout failed(%d, %d)\n", + dentry, err, rerr); + err = -EIO; + } else + dput(wh); + +out: + return err; +} + +static int au_d_may_add(struct dentry *dentry) +{ + int err; + + err = 0; + if (unlikely(d_unhashed(dentry))) + err = -ENOENT; + if (unlikely(d_really_is_positive(dentry))) + err = -EEXIST; + return err; +} + +/* + * simple tests for the adding inode operations. + * following the checks in vfs, plus the parent-child relationship. + */ +int au_may_add(struct dentry *dentry, aufs_bindex_t bindex, + struct dentry *h_parent, int isdir) +{ + int err; + umode_t h_mode; + struct dentry *h_dentry; + struct inode *h_inode; + + err = -ENAMETOOLONG; + if (unlikely(dentry->d_name.len > AUFS_MAX_NAMELEN)) + goto out; + + h_dentry = au_h_dptr(dentry, bindex); + if (d_really_is_negative(dentry)) { + err = -EEXIST; + if (unlikely(d_is_positive(h_dentry))) + goto out; + } else { + /* rename(2) case */ + err = -EIO; + if (unlikely(d_is_negative(h_dentry))) + goto out; + h_inode = d_inode(h_dentry); + if (unlikely(!h_inode->i_nlink)) + goto out; + + h_mode = h_inode->i_mode; + if (!isdir) { + err = -EISDIR; + if (unlikely(S_ISDIR(h_mode))) + goto out; + } else if (unlikely(!S_ISDIR(h_mode))) { + err = -ENOTDIR; + goto out; + } + } + + err = 0; + /* expected parent dir is locked */ + if (unlikely(h_parent != h_dentry->d_parent)) + err = -EIO; + +out: + AuTraceErr(err); + return err; +} + +/* + * initial procedure of adding a new entry. + * prepare writable branch and the parent dir, lock it, + * and lookup whiteout for the new entry. + */ +static struct dentry* +lock_hdir_lkup_wh(struct dentry *dentry, struct au_dtime *dt, + struct dentry *src_dentry, struct au_pin *pin, + struct au_wr_dir_args *wr_dir_args) +{ + struct dentry *wh_dentry, *h_parent; + struct super_block *sb; + struct au_branch *br; + int err; + unsigned int udba; + aufs_bindex_t bcpup; + + AuDbg("%pd\n", dentry); + + err = au_wr_dir(dentry, src_dentry, wr_dir_args); + bcpup = err; + wh_dentry = ERR_PTR(err); + if (unlikely(err < 0)) + goto out; + + sb = dentry->d_sb; + udba = au_opt_udba(sb); + err = au_pin(pin, dentry, bcpup, udba, + AuPin_DI_LOCKED | AuPin_MNT_WRITE); + wh_dentry = ERR_PTR(err); + if (unlikely(err)) + goto out; + + h_parent = au_pinned_h_parent(pin); + if (udba != AuOpt_UDBA_NONE + && au_dbtop(dentry) == bcpup) + err = au_may_add(dentry, bcpup, h_parent, + au_ftest_wrdir(wr_dir_args->flags, ISDIR)); + else if (unlikely(dentry->d_name.len > AUFS_MAX_NAMELEN)) + err = -ENAMETOOLONG; + wh_dentry = ERR_PTR(err); + if (unlikely(err)) + goto out_unpin; + + br = au_sbr(sb, bcpup); + if (dt) { + struct path tmp = { + .dentry = h_parent, + .mnt = au_br_mnt(br) + }; + au_dtime_store(dt, au_pinned_parent(pin), &tmp); + } + + wh_dentry = NULL; + if (bcpup != au_dbwh(dentry)) + goto out; /* success */ + + /* + * ENAMETOOLONG here means that if we allowed create such name, then it + * would not be able to removed in the future. So we don't allow such + * name here and we don't handle ENAMETOOLONG differently here. + */ + wh_dentry = au_wh_lkup(h_parent, &dentry->d_name, br); + +out_unpin: + if (IS_ERR(wh_dentry)) + au_unpin(pin); +out: + return wh_dentry; +} + +/* ---------------------------------------------------------------------- */ + +enum { Mknod, Symlink, Creat }; +struct simple_arg { + int type; + union { + struct { + umode_t mode; + bool want_excl; + bool try_aopen; + struct vfsub_aopen_args *aopen; + } c; + struct { + const char *symname; + } s; + struct { + umode_t mode; + dev_t dev; + } m; + } u; +}; + +static int add_simple(struct inode *dir, struct dentry *dentry, + struct simple_arg *arg) +{ + int err, rerr; + aufs_bindex_t btop; + unsigned char created; + const unsigned char try_aopen + = (arg->type == Creat && arg->u.c.try_aopen); + struct dentry *wh_dentry, *parent; + struct inode *h_dir; + struct super_block *sb; + struct au_branch *br; + /* to reuduce stack size */ + struct { + struct au_dtime dt; + struct au_pin pin; + struct path h_path; + struct au_wr_dir_args wr_dir_args; + } *a; + + AuDbg("%pd\n", dentry); + IMustLock(dir); + + err = -ENOMEM; + a = kmalloc(sizeof(*a), GFP_NOFS); + if (unlikely(!a)) + goto out; + a->wr_dir_args.force_btgt = -1; + a->wr_dir_args.flags = AuWrDir_ADD_ENTRY; + + parent = dentry->d_parent; /* dir inode is locked */ + if (!try_aopen) { + err = aufs_read_lock(dentry, AuLock_DW | AuLock_GEN); + if (unlikely(err)) + goto out_free; + } + err = au_d_may_add(dentry); + if (unlikely(err)) + goto out_unlock; + if (!try_aopen) + di_write_lock_parent(parent); + wh_dentry = lock_hdir_lkup_wh(dentry, &a->dt, /*src_dentry*/NULL, + &a->pin, &a->wr_dir_args); + err = PTR_ERR(wh_dentry); + if (IS_ERR(wh_dentry)) + goto out_parent; + + btop = au_dbtop(dentry); + sb = dentry->d_sb; + br = au_sbr(sb, btop); + a->h_path.dentry = au_h_dptr(dentry, btop); + a->h_path.mnt = au_br_mnt(br); + h_dir = au_pinned_h_dir(&a->pin); + switch (arg->type) { + case Creat: + err = 0; + if (!try_aopen || !h_dir->i_op->atomic_open) + err = vfsub_create(h_dir, &a->h_path, arg->u.c.mode, + arg->u.c.want_excl); + else + err = vfsub_atomic_open(h_dir, a->h_path.dentry, + arg->u.c.aopen, br); + break; + case Symlink: + err = vfsub_symlink(h_dir, &a->h_path, arg->u.s.symname); + break; + case Mknod: + err = vfsub_mknod(h_dir, &a->h_path, arg->u.m.mode, + arg->u.m.dev); + break; + default: + BUG(); + } + created = !err; + if (!err) + err = epilog(dir, btop, wh_dentry, dentry); + + /* revert */ + if (unlikely(created && err && d_is_positive(a->h_path.dentry))) { + /* no delegation since it is just created */ + rerr = vfsub_unlink(h_dir, &a->h_path, /*delegated*/NULL, + /*force*/0); + if (rerr) { + AuIOErr("%pd revert failure(%d, %d)\n", + dentry, err, rerr); + err = -EIO; + } + au_dtime_revert(&a->dt); + } + + if (!err && try_aopen && !h_dir->i_op->atomic_open) + *arg->u.c.aopen->opened |= FILE_CREATED; + + au_unpin(&a->pin); + dput(wh_dentry); + +out_parent: + if (!try_aopen) + di_write_unlock(parent); +out_unlock: + if (unlikely(err)) { + au_update_dbtop(dentry); + d_drop(dentry); + } + if (!try_aopen) + aufs_read_unlock(dentry, AuLock_DW); +out_free: + au_delayed_kfree(a); +out: + return err; +} + +int aufs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, + dev_t dev) +{ + struct simple_arg arg = { + .type = Mknod, + .u.m = { + .mode = mode, + .dev = dev + } + }; + return add_simple(dir, dentry, &arg); +} + +int aufs_symlink(struct inode *dir, struct dentry *dentry, const char *symname) +{ + struct simple_arg arg = { + .type = Symlink, + .u.s.symname = symname + }; + return add_simple(dir, dentry, &arg); +} + +int aufs_create(struct inode *dir, struct dentry *dentry, umode_t mode, + bool want_excl) +{ + struct simple_arg arg = { + .type = Creat, + .u.c = { + .mode = mode, + .want_excl = want_excl + } + }; + return add_simple(dir, dentry, &arg); +} + +int au_aopen_or_create(struct inode *dir, struct dentry *dentry, + struct vfsub_aopen_args *aopen_args) +{ + struct simple_arg arg = { + .type = Creat, + .u.c = { + .mode = aopen_args->create_mode, + .want_excl = aopen_args->open_flag & O_EXCL, + .try_aopen = true, + .aopen = aopen_args + } + }; + return add_simple(dir, dentry, &arg); +} + +int aufs_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode) +{ + int err; + aufs_bindex_t bindex; + struct super_block *sb; + struct dentry *parent, *h_parent, *h_dentry; + struct inode *h_dir, *inode; + struct vfsmount *h_mnt; + struct au_wr_dir_args wr_dir_args = { + .force_btgt = -1, + .flags = AuWrDir_TMPFILE + }; + + /* copy-up may happen */ + inode_lock(dir); + + sb = dir->i_sb; + err = si_read_lock(sb, AuLock_FLUSH | AuLock_NOPLM); + if (unlikely(err)) + goto out; + + err = au_di_init(dentry); + if (unlikely(err)) + goto out_si; + + err = -EBUSY; + parent = d_find_any_alias(dir); + AuDebugOn(!parent); + di_write_lock_parent(parent); + if (unlikely(d_inode(parent) != dir)) + goto out_parent; + + err = au_digen_test(parent, au_sigen(sb)); + if (unlikely(err)) + goto out_parent; + + bindex = au_dbtop(parent); + au_set_dbtop(dentry, bindex); + au_set_dbbot(dentry, bindex); + err = au_wr_dir(dentry, /*src_dentry*/NULL, &wr_dir_args); + bindex = err; + if (unlikely(err < 0)) + goto out_parent; + + err = -EOPNOTSUPP; + h_dir = au_h_iptr(dir, bindex); + if (unlikely(!h_dir->i_op->tmpfile)) + goto out_parent; + + h_mnt = au_sbr_mnt(sb, bindex); + err = vfsub_mnt_want_write(h_mnt); + if (unlikely(err)) + goto out_parent; + + h_parent = au_h_dptr(parent, bindex); + err = inode_permission(d_inode(h_parent), MAY_WRITE | MAY_EXEC); + if (unlikely(err)) + goto out_mnt; + + err = -ENOMEM; + h_dentry = d_alloc(h_parent, &dentry->d_name); + if (unlikely(!h_dentry)) + goto out_mnt; + + err = h_dir->i_op->tmpfile(h_dir, h_dentry, mode); + if (unlikely(err)) + goto out_dentry; + + au_set_dbtop(dentry, bindex); + au_set_dbbot(dentry, bindex); + au_set_h_dptr(dentry, bindex, dget(h_dentry)); + inode = au_new_inode(dentry, /*must_new*/1); + if (IS_ERR(inode)) { + err = PTR_ERR(inode); + au_set_h_dptr(dentry, bindex, NULL); + au_set_dbtop(dentry, -1); + au_set_dbbot(dentry, -1); + } else { + if (!inode->i_nlink) + set_nlink(inode, 1); + d_tmpfile(dentry, inode); + au_di(dentry)->di_tmpfile = 1; + + /* update without i_mutex */ + if (au_ibtop(dir) == au_dbtop(dentry)) + au_cpup_attr_timesizes(dir); + } + +out_dentry: + dput(h_dentry); +out_mnt: + vfsub_mnt_drop_write(h_mnt); +out_parent: + di_write_unlock(parent); + dput(parent); + di_write_unlock(dentry); + if (unlikely(err)) { + au_di_fin(dentry); + dentry->d_fsdata = NULL; + } +out_si: + si_read_unlock(sb); +out: + inode_unlock(dir); + return err; +} + +/* ---------------------------------------------------------------------- */ + +struct au_link_args { + aufs_bindex_t bdst, bsrc; + struct au_pin pin; + struct path h_path; + struct dentry *src_parent, *parent; +}; + +static int au_cpup_before_link(struct dentry *src_dentry, + struct au_link_args *a) +{ + int err; + struct dentry *h_src_dentry; + struct au_cp_generic cpg = { + .dentry = src_dentry, + .bdst = a->bdst, + .bsrc = a->bsrc, + .len = -1, + .pin = &a->pin, + .flags = AuCpup_DTIME | AuCpup_HOPEN /* | AuCpup_KEEPLINO */ + }; + + di_read_lock_parent(a->src_parent, AuLock_IR); + err = au_test_and_cpup_dirs(src_dentry, a->bdst); + if (unlikely(err)) + goto out; + + h_src_dentry = au_h_dptr(src_dentry, a->bsrc); + err = au_pin(&a->pin, src_dentry, a->bdst, + au_opt_udba(src_dentry->d_sb), + AuPin_DI_LOCKED | AuPin_MNT_WRITE); + if (unlikely(err)) + goto out; + + err = au_sio_cpup_simple(&cpg); + au_unpin(&a->pin); + +out: + di_read_unlock(a->src_parent, AuLock_IR); + return err; +} + +static int au_cpup_or_link(struct dentry *src_dentry, struct dentry *dentry, + struct au_link_args *a) +{ + int err; + unsigned char plink; + aufs_bindex_t bbot; + struct dentry *h_src_dentry; + struct inode *h_inode, *inode, *delegated; + struct super_block *sb; + struct file *h_file; + + plink = 0; + h_inode = NULL; + sb = src_dentry->d_sb; + inode = d_inode(src_dentry); + if (au_ibtop(inode) <= a->bdst) + h_inode = au_h_iptr(inode, a->bdst); + if (!h_inode || !h_inode->i_nlink) { + /* copyup src_dentry as the name of dentry. */ + bbot = au_dbbot(dentry); + if (bbot < a->bsrc) + au_set_dbbot(dentry, a->bsrc); + au_set_h_dptr(dentry, a->bsrc, + dget(au_h_dptr(src_dentry, a->bsrc))); + dget(a->h_path.dentry); + au_set_h_dptr(dentry, a->bdst, NULL); + AuDbg("temporary d_inode...\n"); + spin_lock(&dentry->d_lock); + dentry->d_inode = d_inode(src_dentry); /* tmp */ + spin_unlock(&dentry->d_lock); + h_file = au_h_open_pre(dentry, a->bsrc, /*force_wr*/0); + if (IS_ERR(h_file)) + err = PTR_ERR(h_file); + else { + struct au_cp_generic cpg = { + .dentry = dentry, + .bdst = a->bdst, + .bsrc = -1, + .len = -1, + .pin = &a->pin, + .flags = AuCpup_KEEPLINO + }; + err = au_sio_cpup_simple(&cpg); + au_h_open_post(dentry, a->bsrc, h_file); + if (!err) { + dput(a->h_path.dentry); + a->h_path.dentry = au_h_dptr(dentry, a->bdst); + } else + au_set_h_dptr(dentry, a->bdst, + a->h_path.dentry); + } + spin_lock(&dentry->d_lock); + dentry->d_inode = NULL; /* restore */ + spin_unlock(&dentry->d_lock); + AuDbg("temporary d_inode...done\n"); + au_set_h_dptr(dentry, a->bsrc, NULL); + au_set_dbbot(dentry, bbot); + } else { + /* the inode of src_dentry already exists on a.bdst branch */ + h_src_dentry = d_find_alias(h_inode); + if (!h_src_dentry && au_plink_test(inode)) { + plink = 1; + h_src_dentry = au_plink_lkup(inode, a->bdst); + err = PTR_ERR(h_src_dentry); + if (IS_ERR(h_src_dentry)) + goto out; + + if (unlikely(d_is_negative(h_src_dentry))) { + dput(h_src_dentry); + h_src_dentry = NULL; + } + + } + if (h_src_dentry) { + delegated = NULL; + err = vfsub_link(h_src_dentry, au_pinned_h_dir(&a->pin), + &a->h_path, &delegated); + if (unlikely(err == -EWOULDBLOCK)) { + pr_warn("cannot retry for NFSv4 delegation" + " for an internal link\n"); + iput(delegated); + } + dput(h_src_dentry); + } else { + AuIOErr("no dentry found for hi%lu on b%d\n", + h_inode->i_ino, a->bdst); + err = -EIO; + } + } + + if (!err && !plink) + au_plink_append(inode, a->bdst, a->h_path.dentry); + +out: + AuTraceErr(err); + return err; +} + +int aufs_link(struct dentry *src_dentry, struct inode *dir, + struct dentry *dentry) +{ + int err, rerr; + struct au_dtime dt; + struct au_link_args *a; + struct dentry *wh_dentry, *h_src_dentry; + struct inode *inode, *delegated; + struct super_block *sb; + struct au_wr_dir_args wr_dir_args = { + /* .force_btgt = -1, */ + .flags = AuWrDir_ADD_ENTRY + }; + + IMustLock(dir); + inode = d_inode(src_dentry); + IMustLock(inode); + + err = -ENOMEM; + a = kzalloc(sizeof(*a), GFP_NOFS); + if (unlikely(!a)) + goto out; + + a->parent = dentry->d_parent; /* dir inode is locked */ + err = aufs_read_and_write_lock2(dentry, src_dentry, + AuLock_NOPLM | AuLock_GEN); + if (unlikely(err)) + goto out_kfree; + err = au_d_linkable(src_dentry); + if (unlikely(err)) + goto out_unlock; + err = au_d_may_add(dentry); + if (unlikely(err)) + goto out_unlock; + + a->src_parent = dget_parent(src_dentry); + wr_dir_args.force_btgt = au_ibtop(inode); + + di_write_lock_parent(a->parent); + wr_dir_args.force_btgt = au_wbr(dentry, wr_dir_args.force_btgt); + wh_dentry = lock_hdir_lkup_wh(dentry, &dt, src_dentry, &a->pin, + &wr_dir_args); + err = PTR_ERR(wh_dentry); + if (IS_ERR(wh_dentry)) + goto out_parent; + + err = 0; + sb = dentry->d_sb; + a->bdst = au_dbtop(dentry); + a->h_path.dentry = au_h_dptr(dentry, a->bdst); + a->h_path.mnt = au_sbr_mnt(sb, a->bdst); + a->bsrc = au_ibtop(inode); + h_src_dentry = au_h_d_alias(src_dentry, a->bsrc); + if (!h_src_dentry && au_di(src_dentry)->di_tmpfile) + h_src_dentry = dget(au_hi_wh(inode, a->bsrc)); + if (!h_src_dentry) { + a->bsrc = au_dbtop(src_dentry); + h_src_dentry = au_h_d_alias(src_dentry, a->bsrc); + AuDebugOn(!h_src_dentry); + } else if (IS_ERR(h_src_dentry)) { + err = PTR_ERR(h_src_dentry); + goto out_parent; + } + + if (au_opt_test(au_mntflags(sb), PLINK)) { + if (a->bdst < a->bsrc + /* && h_src_dentry->d_sb != a->h_path.dentry->d_sb */) + err = au_cpup_or_link(src_dentry, dentry, a); + else { + delegated = NULL; + err = vfsub_link(h_src_dentry, au_pinned_h_dir(&a->pin), + &a->h_path, &delegated); + if (unlikely(err == -EWOULDBLOCK)) { + pr_warn("cannot retry for NFSv4 delegation" + " for an internal link\n"); + iput(delegated); + } + } + dput(h_src_dentry); + } else { + /* + * copyup src_dentry to the branch we process, + * and then link(2) to it. + */ + dput(h_src_dentry); + if (a->bdst < a->bsrc + /* && h_src_dentry->d_sb != a->h_path.dentry->d_sb */) { + au_unpin(&a->pin); + di_write_unlock(a->parent); + err = au_cpup_before_link(src_dentry, a); + di_write_lock_parent(a->parent); + if (!err) + err = au_pin(&a->pin, dentry, a->bdst, + au_opt_udba(sb), + AuPin_DI_LOCKED | AuPin_MNT_WRITE); + if (unlikely(err)) + goto out_wh; + } + if (!err) { + h_src_dentry = au_h_dptr(src_dentry, a->bdst); + err = -ENOENT; + if (h_src_dentry && d_is_positive(h_src_dentry)) { + delegated = NULL; + err = vfsub_link(h_src_dentry, + au_pinned_h_dir(&a->pin), + &a->h_path, &delegated); + if (unlikely(err == -EWOULDBLOCK)) { + pr_warn("cannot retry" + " for NFSv4 delegation" + " for an internal link\n"); + iput(delegated); + } + } + } + } + if (unlikely(err)) + goto out_unpin; + + if (wh_dentry) { + a->h_path.dentry = wh_dentry; + err = au_wh_unlink_dentry(au_pinned_h_dir(&a->pin), &a->h_path, + dentry); + if (unlikely(err)) + goto out_revert; + } + + au_dir_ts(dir, a->bdst); + dir->i_version++; + inc_nlink(inode); + inode->i_ctime = dir->i_ctime; + d_instantiate(dentry, au_igrab(inode)); + if (d_unhashed(a->h_path.dentry)) + /* some filesystem calls d_drop() */ + d_drop(dentry); + /* some filesystems consume an inode even hardlink */ + au_fhsm_wrote(sb, a->bdst, /*force*/0); + goto out_unpin; /* success */ + +out_revert: + /* no delegation since it is just created */ + rerr = vfsub_unlink(au_pinned_h_dir(&a->pin), &a->h_path, + /*delegated*/NULL, /*force*/0); + if (unlikely(rerr)) { + AuIOErr("%pd reverting failed(%d, %d)\n", dentry, err, rerr); + err = -EIO; + } + au_dtime_revert(&dt); +out_unpin: + au_unpin(&a->pin); +out_wh: + dput(wh_dentry); +out_parent: + di_write_unlock(a->parent); + dput(a->src_parent); +out_unlock: + if (unlikely(err)) { + au_update_dbtop(dentry); + d_drop(dentry); + } + aufs_read_and_write_unlock2(dentry, src_dentry); +out_kfree: + au_delayed_kfree(a); +out: + AuTraceErr(err); + return err; +} + +int aufs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode) +{ + int err, rerr; + aufs_bindex_t bindex; + unsigned char diropq; + struct path h_path; + struct dentry *wh_dentry, *parent, *opq_dentry; + struct inode *h_inode; + struct super_block *sb; + struct { + struct au_pin pin; + struct au_dtime dt; + } *a; /* reduce the stack usage */ + struct au_wr_dir_args wr_dir_args = { + .force_btgt = -1, + .flags = AuWrDir_ADD_ENTRY | AuWrDir_ISDIR + }; + + IMustLock(dir); + + err = -ENOMEM; + a = kmalloc(sizeof(*a), GFP_NOFS); + if (unlikely(!a)) + goto out; + + err = aufs_read_lock(dentry, AuLock_DW | AuLock_GEN); + if (unlikely(err)) + goto out_free; + err = au_d_may_add(dentry); + if (unlikely(err)) + goto out_unlock; + + parent = dentry->d_parent; /* dir inode is locked */ + di_write_lock_parent(parent); + wh_dentry = lock_hdir_lkup_wh(dentry, &a->dt, /*src_dentry*/NULL, + &a->pin, &wr_dir_args); + err = PTR_ERR(wh_dentry); + if (IS_ERR(wh_dentry)) + goto out_parent; + + sb = dentry->d_sb; + bindex = au_dbtop(dentry); + h_path.dentry = au_h_dptr(dentry, bindex); + h_path.mnt = au_sbr_mnt(sb, bindex); + err = vfsub_mkdir(au_pinned_h_dir(&a->pin), &h_path, mode); + if (unlikely(err)) + goto out_unpin; + + /* make the dir opaque */ + diropq = 0; + h_inode = d_inode(h_path.dentry); + if (wh_dentry + || au_opt_test(au_mntflags(sb), ALWAYS_DIROPQ)) { + inode_lock_nested(h_inode, AuLsc_I_CHILD); + opq_dentry = au_diropq_create(dentry, bindex); + inode_unlock(h_inode); + err = PTR_ERR(opq_dentry); + if (IS_ERR(opq_dentry)) + goto out_dir; + dput(opq_dentry); + diropq = 1; + } + + err = epilog(dir, bindex, wh_dentry, dentry); + if (!err) { + inc_nlink(dir); + goto out_unpin; /* success */ + } + + /* revert */ + if (diropq) { + AuLabel(revert opq); + inode_lock_nested(h_inode, AuLsc_I_CHILD); + rerr = au_diropq_remove(dentry, bindex); + inode_unlock(h_inode); + if (rerr) { + AuIOErr("%pd reverting diropq failed(%d, %d)\n", + dentry, err, rerr); + err = -EIO; + } + } + +out_dir: + AuLabel(revert dir); + rerr = vfsub_rmdir(au_pinned_h_dir(&a->pin), &h_path); + if (rerr) { + AuIOErr("%pd reverting dir failed(%d, %d)\n", + dentry, err, rerr); + err = -EIO; + } + au_dtime_revert(&a->dt); +out_unpin: + au_unpin(&a->pin); + dput(wh_dentry); +out_parent: + di_write_unlock(parent); +out_unlock: + if (unlikely(err)) { + au_update_dbtop(dentry); + d_drop(dentry); + } + aufs_read_unlock(dentry, AuLock_DW); +out_free: + au_delayed_kfree(a); +out: + return err; +} --- linux-4.8.0.orig/fs/aufs/i_op_del.c +++ linux-4.8.0/fs/aufs/i_op_del.c @@ -0,0 +1,511 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * inode operations (del entry) + */ + +#include "aufs.h" + +/* + * decide if a new whiteout for @dentry is necessary or not. + * when it is necessary, prepare the parent dir for the upper branch whose + * branch index is @bcpup for creation. the actual creation of the whiteout will + * be done by caller. + * return value: + * 0: wh is unnecessary + * plus: wh is necessary + * minus: error + */ +int au_wr_dir_need_wh(struct dentry *dentry, int isdir, aufs_bindex_t *bcpup) +{ + int need_wh, err; + aufs_bindex_t btop; + struct super_block *sb; + + sb = dentry->d_sb; + btop = au_dbtop(dentry); + if (*bcpup < 0) { + *bcpup = btop; + if (au_test_ro(sb, btop, d_inode(dentry))) { + err = AuWbrCopyup(au_sbi(sb), dentry); + *bcpup = err; + if (unlikely(err < 0)) + goto out; + } + } else + AuDebugOn(btop < *bcpup + || au_test_ro(sb, *bcpup, d_inode(dentry))); + AuDbg("bcpup %d, btop %d\n", *bcpup, btop); + + if (*bcpup != btop) { + err = au_cpup_dirs(dentry, *bcpup); + if (unlikely(err)) + goto out; + need_wh = 1; + } else { + struct au_dinfo *dinfo, *tmp; + + need_wh = -ENOMEM; + dinfo = au_di(dentry); + tmp = au_di_alloc(sb, AuLsc_DI_TMP); + if (tmp) { + au_di_cp(tmp, dinfo); + au_di_swap(tmp, dinfo); + /* returns the number of positive dentries */ + need_wh = au_lkup_dentry(dentry, btop + 1, + /* AuLkup_IGNORE_PERM */ 0); + au_di_swap(tmp, dinfo); + au_rw_write_unlock(&tmp->di_rwsem); + au_di_free(tmp); + } + } + AuDbg("need_wh %d\n", need_wh); + err = need_wh; + +out: + return err; +} + +/* + * simple tests for the del-entry operations. + * following the checks in vfs, plus the parent-child relationship. + */ +int au_may_del(struct dentry *dentry, aufs_bindex_t bindex, + struct dentry *h_parent, int isdir) +{ + int err; + umode_t h_mode; + struct dentry *h_dentry, *h_latest; + struct inode *h_inode; + + h_dentry = au_h_dptr(dentry, bindex); + if (d_really_is_positive(dentry)) { + err = -ENOENT; + if (unlikely(d_is_negative(h_dentry))) + goto out; + h_inode = d_inode(h_dentry); + if (unlikely(!h_inode->i_nlink)) + goto out; + + h_mode = h_inode->i_mode; + if (!isdir) { + err = -EISDIR; + if (unlikely(S_ISDIR(h_mode))) + goto out; + } else if (unlikely(!S_ISDIR(h_mode))) { + err = -ENOTDIR; + goto out; + } + } else { + /* rename(2) case */ + err = -EIO; + if (unlikely(d_is_positive(h_dentry))) + goto out; + } + + err = -ENOENT; + /* expected parent dir is locked */ + if (unlikely(h_parent != h_dentry->d_parent)) + goto out; + err = 0; + + /* + * rmdir a dir may break the consistency on some filesystem. + * let's try heavy test. + */ + err = -EACCES; + if (unlikely(!au_opt_test(au_mntflags(dentry->d_sb), DIRPERM1) + && au_test_h_perm(d_inode(h_parent), + MAY_EXEC | MAY_WRITE))) + goto out; + + h_latest = au_sio_lkup_one(&dentry->d_name, h_parent); + err = -EIO; + if (IS_ERR(h_latest)) + goto out; + if (h_latest == h_dentry) + err = 0; + dput(h_latest); + +out: + return err; +} + +/* + * decide the branch where we operate for @dentry. the branch index will be set + * @rbcpup. after diciding it, 'pin' it and store the timestamps of the parent + * dir for reverting. + * when a new whiteout is necessary, create it. + */ +static struct dentry* +lock_hdir_create_wh(struct dentry *dentry, int isdir, aufs_bindex_t *rbcpup, + struct au_dtime *dt, struct au_pin *pin) +{ + struct dentry *wh_dentry; + struct super_block *sb; + struct path h_path; + int err, need_wh; + unsigned int udba; + aufs_bindex_t bcpup; + + need_wh = au_wr_dir_need_wh(dentry, isdir, rbcpup); + wh_dentry = ERR_PTR(need_wh); + if (unlikely(need_wh < 0)) + goto out; + + sb = dentry->d_sb; + udba = au_opt_udba(sb); + bcpup = *rbcpup; + err = au_pin(pin, dentry, bcpup, udba, + AuPin_DI_LOCKED | AuPin_MNT_WRITE); + wh_dentry = ERR_PTR(err); + if (unlikely(err)) + goto out; + + h_path.dentry = au_pinned_h_parent(pin); + if (udba != AuOpt_UDBA_NONE + && au_dbtop(dentry) == bcpup) { + err = au_may_del(dentry, bcpup, h_path.dentry, isdir); + wh_dentry = ERR_PTR(err); + if (unlikely(err)) + goto out_unpin; + } + + h_path.mnt = au_sbr_mnt(sb, bcpup); + au_dtime_store(dt, au_pinned_parent(pin), &h_path); + wh_dentry = NULL; + if (!need_wh) + goto out; /* success, no need to create whiteout */ + + wh_dentry = au_wh_create(dentry, bcpup, h_path.dentry); + if (IS_ERR(wh_dentry)) + goto out_unpin; + + /* returns with the parent is locked and wh_dentry is dget-ed */ + goto out; /* success */ + +out_unpin: + au_unpin(pin); +out: + return wh_dentry; +} + +/* + * when removing a dir, rename it to a unique temporary whiteout-ed name first + * in order to be revertible and save time for removing many child whiteouts + * under the dir. + * returns 1 when there are too many child whiteout and caller should remove + * them asynchronously. returns 0 when the number of children is enough small to + * remove now or the branch fs is a remote fs. + * otherwise return an error. + */ +static int renwh_and_rmdir(struct dentry *dentry, aufs_bindex_t bindex, + struct au_nhash *whlist, struct inode *dir) +{ + int rmdir_later, err, dirwh; + struct dentry *h_dentry; + struct super_block *sb; + struct inode *inode; + + sb = dentry->d_sb; + SiMustAnyLock(sb); + h_dentry = au_h_dptr(dentry, bindex); + err = au_whtmp_ren(h_dentry, au_sbr(sb, bindex)); + if (unlikely(err)) + goto out; + + /* stop monitoring */ + inode = d_inode(dentry); + au_hn_free(au_hi(inode, bindex)); + + if (!au_test_fs_remote(h_dentry->d_sb)) { + dirwh = au_sbi(sb)->si_dirwh; + rmdir_later = (dirwh <= 1); + if (!rmdir_later) + rmdir_later = au_nhash_test_longer_wh(whlist, bindex, + dirwh); + if (rmdir_later) + return rmdir_later; + } + + err = au_whtmp_rmdir(dir, bindex, h_dentry, whlist); + if (unlikely(err)) { + AuIOErr("rmdir %pd, b%d failed, %d. ignored\n", + h_dentry, bindex, err); + err = 0; + } + +out: + AuTraceErr(err); + return err; +} + +/* + * final procedure for deleting a entry. + * maintain dentry and iattr. + */ +static void epilog(struct inode *dir, struct dentry *dentry, + aufs_bindex_t bindex) +{ + struct inode *inode; + + inode = d_inode(dentry); + d_drop(dentry); + inode->i_ctime = dir->i_ctime; + + au_dir_ts(dir, bindex); + dir->i_version++; +} + +/* + * when an error happened, remove the created whiteout and revert everything. + */ +static int do_revert(int err, struct inode *dir, aufs_bindex_t bindex, + aufs_bindex_t bwh, struct dentry *wh_dentry, + struct dentry *dentry, struct au_dtime *dt) +{ + int rerr; + struct path h_path = { + .dentry = wh_dentry, + .mnt = au_sbr_mnt(dir->i_sb, bindex) + }; + + rerr = au_wh_unlink_dentry(au_h_iptr(dir, bindex), &h_path, dentry); + if (!rerr) { + au_set_dbwh(dentry, bwh); + au_dtime_revert(dt); + return 0; + } + + AuIOErr("%pd reverting whiteout failed(%d, %d)\n", dentry, err, rerr); + return -EIO; +} + +/* ---------------------------------------------------------------------- */ + +int aufs_unlink(struct inode *dir, struct dentry *dentry) +{ + int err; + aufs_bindex_t bwh, bindex, btop; + struct inode *inode, *h_dir, *delegated; + struct dentry *parent, *wh_dentry; + /* to reuduce stack size */ + struct { + struct au_dtime dt; + struct au_pin pin; + struct path h_path; + } *a; + + IMustLock(dir); + + err = -ENOMEM; + a = kmalloc(sizeof(*a), GFP_NOFS); + if (unlikely(!a)) + goto out; + + err = aufs_read_lock(dentry, AuLock_DW | AuLock_GEN); + if (unlikely(err)) + goto out_free; + err = au_d_hashed_positive(dentry); + if (unlikely(err)) + goto out_unlock; + inode = d_inode(dentry); + IMustLock(inode); + err = -EISDIR; + if (unlikely(d_is_dir(dentry))) + goto out_unlock; /* possible? */ + + btop = au_dbtop(dentry); + bwh = au_dbwh(dentry); + bindex = -1; + parent = dentry->d_parent; /* dir inode is locked */ + di_write_lock_parent(parent); + wh_dentry = lock_hdir_create_wh(dentry, /*isdir*/0, &bindex, &a->dt, + &a->pin); + err = PTR_ERR(wh_dentry); + if (IS_ERR(wh_dentry)) + goto out_parent; + + a->h_path.mnt = au_sbr_mnt(dentry->d_sb, btop); + a->h_path.dentry = au_h_dptr(dentry, btop); + dget(a->h_path.dentry); + if (bindex == btop) { + h_dir = au_pinned_h_dir(&a->pin); + delegated = NULL; + err = vfsub_unlink(h_dir, &a->h_path, &delegated, /*force*/0); + if (unlikely(err == -EWOULDBLOCK)) { + pr_warn("cannot retry for NFSv4 delegation" + " for an internal unlink\n"); + iput(delegated); + } + } else { + /* dir inode is locked */ + h_dir = d_inode(wh_dentry->d_parent); + IMustLock(h_dir); + err = 0; + } + + if (!err) { + vfsub_drop_nlink(inode); + epilog(dir, dentry, bindex); + + /* update target timestamps */ + if (bindex == btop) { + vfsub_update_h_iattr(&a->h_path, /*did*/NULL); + /*ignore*/ + inode->i_ctime = d_inode(a->h_path.dentry)->i_ctime; + } else + /* todo: this timestamp may be reverted later */ + inode->i_ctime = h_dir->i_ctime; + goto out_unpin; /* success */ + } + + /* revert */ + if (wh_dentry) { + int rerr; + + rerr = do_revert(err, dir, bindex, bwh, wh_dentry, dentry, + &a->dt); + if (rerr) + err = rerr; + } + +out_unpin: + au_unpin(&a->pin); + dput(wh_dentry); + dput(a->h_path.dentry); +out_parent: + di_write_unlock(parent); +out_unlock: + aufs_read_unlock(dentry, AuLock_DW); +out_free: + au_delayed_kfree(a); +out: + return err; +} + +int aufs_rmdir(struct inode *dir, struct dentry *dentry) +{ + int err, rmdir_later; + aufs_bindex_t bwh, bindex, btop; + struct inode *inode; + struct dentry *parent, *wh_dentry, *h_dentry; + struct au_whtmp_rmdir *args; + /* to reuduce stack size */ + struct { + struct au_dtime dt; + struct au_pin pin; + } *a; + + IMustLock(dir); + + err = -ENOMEM; + a = kmalloc(sizeof(*a), GFP_NOFS); + if (unlikely(!a)) + goto out; + + err = aufs_read_lock(dentry, AuLock_DW | AuLock_FLUSH | AuLock_GEN); + if (unlikely(err)) + goto out_free; + err = au_alive_dir(dentry); + if (unlikely(err)) + goto out_unlock; + inode = d_inode(dentry); + IMustLock(inode); + err = -ENOTDIR; + if (unlikely(!d_is_dir(dentry))) + goto out_unlock; /* possible? */ + + err = -ENOMEM; + args = au_whtmp_rmdir_alloc(dir->i_sb, GFP_NOFS); + if (unlikely(!args)) + goto out_unlock; + + parent = dentry->d_parent; /* dir inode is locked */ + di_write_lock_parent(parent); + err = au_test_empty(dentry, &args->whlist); + if (unlikely(err)) + goto out_parent; + + btop = au_dbtop(dentry); + bwh = au_dbwh(dentry); + bindex = -1; + wh_dentry = lock_hdir_create_wh(dentry, /*isdir*/1, &bindex, &a->dt, + &a->pin); + err = PTR_ERR(wh_dentry); + if (IS_ERR(wh_dentry)) + goto out_parent; + + h_dentry = au_h_dptr(dentry, btop); + dget(h_dentry); + rmdir_later = 0; + if (bindex == btop) { + err = renwh_and_rmdir(dentry, btop, &args->whlist, dir); + if (err > 0) { + rmdir_later = err; + err = 0; + } + } else { + /* stop monitoring */ + au_hn_free(au_hi(inode, btop)); + + /* dir inode is locked */ + IMustLock(d_inode(wh_dentry->d_parent)); + err = 0; + } + + if (!err) { + vfsub_dead_dir(inode); + au_set_dbdiropq(dentry, -1); + epilog(dir, dentry, bindex); + + if (rmdir_later) { + au_whtmp_kick_rmdir(dir, btop, h_dentry, args); + args = NULL; + } + + goto out_unpin; /* success */ + } + + /* revert */ + AuLabel(revert); + if (wh_dentry) { + int rerr; + + rerr = do_revert(err, dir, bindex, bwh, wh_dentry, dentry, + &a->dt); + if (rerr) + err = rerr; + } + +out_unpin: + au_unpin(&a->pin); + dput(wh_dentry); + dput(h_dentry); +out_parent: + di_write_unlock(parent); + if (args) + au_whtmp_rmdir_free(args); +out_unlock: + aufs_read_unlock(dentry, AuLock_DW); +out_free: + au_delayed_kfree(a); +out: + AuTraceErr(err); + return err; +} --- linux-4.8.0.orig/fs/aufs/i_op_ren.c +++ linux-4.8.0/fs/aufs/i_op_ren.c @@ -0,0 +1,1015 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * inode operation (rename entry) + * todo: this is crazy monster + */ + +#include "aufs.h" + +enum { AuSRC, AuDST, AuSrcDst }; +enum { AuPARENT, AuCHILD, AuParentChild }; + +#define AuRen_ISDIR 1 +#define AuRen_ISSAMEDIR (1 << 1) +#define AuRen_WHSRC (1 << 2) +#define AuRen_WHDST (1 << 3) +#define AuRen_MNT_WRITE (1 << 4) +#define AuRen_DT_DSTDIR (1 << 5) +#define AuRen_DIROPQ (1 << 6) +#define au_ftest_ren(flags, name) ((flags) & AuRen_##name) +#define au_fset_ren(flags, name) \ + do { (flags) |= AuRen_##name; } while (0) +#define au_fclr_ren(flags, name) \ + do { (flags) &= ~AuRen_##name; } while (0) + +struct au_ren_args { + struct { + struct dentry *dentry, *h_dentry, *parent, *h_parent, + *wh_dentry; + struct inode *dir, *inode; + struct au_hinode *hdir; + struct au_dtime dt[AuParentChild]; + aufs_bindex_t btop; + } sd[AuSrcDst]; + +#define src_dentry sd[AuSRC].dentry +#define src_dir sd[AuSRC].dir +#define src_inode sd[AuSRC].inode +#define src_h_dentry sd[AuSRC].h_dentry +#define src_parent sd[AuSRC].parent +#define src_h_parent sd[AuSRC].h_parent +#define src_wh_dentry sd[AuSRC].wh_dentry +#define src_hdir sd[AuSRC].hdir +#define src_h_dir sd[AuSRC].hdir->hi_inode +#define src_dt sd[AuSRC].dt +#define src_btop sd[AuSRC].btop + +#define dst_dentry sd[AuDST].dentry +#define dst_dir sd[AuDST].dir +#define dst_inode sd[AuDST].inode +#define dst_h_dentry sd[AuDST].h_dentry +#define dst_parent sd[AuDST].parent +#define dst_h_parent sd[AuDST].h_parent +#define dst_wh_dentry sd[AuDST].wh_dentry +#define dst_hdir sd[AuDST].hdir +#define dst_h_dir sd[AuDST].hdir->hi_inode +#define dst_dt sd[AuDST].dt +#define dst_btop sd[AuDST].btop + + struct dentry *h_trap; + struct au_branch *br; + struct au_hinode *src_hinode; + struct path h_path; + struct au_nhash whlist; + aufs_bindex_t btgt, src_bwh, src_bdiropq; + + unsigned int flags; + + struct au_whtmp_rmdir *thargs; + struct dentry *h_dst; +}; + +/* ---------------------------------------------------------------------- */ + +/* + * functions for reverting. + * when an error happened in a single rename systemcall, we should revert + * everything as if nothing happened. + * we don't need to revert the copied-up/down the parent dir since they are + * harmless. + */ + +#define RevertFailure(fmt, ...) do { \ + AuIOErr("revert failure: " fmt " (%d, %d)\n", \ + ##__VA_ARGS__, err, rerr); \ + err = -EIO; \ +} while (0) + +static void au_ren_rev_diropq(int err, struct au_ren_args *a) +{ + int rerr; + + au_hn_inode_lock_nested(a->src_hinode, AuLsc_I_CHILD); + rerr = au_diropq_remove(a->src_dentry, a->btgt); + au_hn_inode_unlock(a->src_hinode); + au_set_dbdiropq(a->src_dentry, a->src_bdiropq); + if (rerr) + RevertFailure("remove diropq %pd", a->src_dentry); +} + +static void au_ren_rev_rename(int err, struct au_ren_args *a) +{ + int rerr; + struct inode *delegated; + + a->h_path.dentry = vfsub_lkup_one(&a->src_dentry->d_name, + a->src_h_parent); + rerr = PTR_ERR(a->h_path.dentry); + if (IS_ERR(a->h_path.dentry)) { + RevertFailure("lkup one %pd", a->src_dentry); + return; + } + + delegated = NULL; + rerr = vfsub_rename(a->dst_h_dir, + au_h_dptr(a->src_dentry, a->btgt), + a->src_h_dir, &a->h_path, &delegated); + if (unlikely(rerr == -EWOULDBLOCK)) { + pr_warn("cannot retry for NFSv4 delegation" + " for an internal rename\n"); + iput(delegated); + } + d_drop(a->h_path.dentry); + dput(a->h_path.dentry); + /* au_set_h_dptr(a->src_dentry, a->btgt, NULL); */ + if (rerr) + RevertFailure("rename %pd", a->src_dentry); +} + +static void au_ren_rev_whtmp(int err, struct au_ren_args *a) +{ + int rerr; + struct inode *delegated; + + a->h_path.dentry = vfsub_lkup_one(&a->dst_dentry->d_name, + a->dst_h_parent); + rerr = PTR_ERR(a->h_path.dentry); + if (IS_ERR(a->h_path.dentry)) { + RevertFailure("lkup one %pd", a->dst_dentry); + return; + } + if (d_is_positive(a->h_path.dentry)) { + d_drop(a->h_path.dentry); + dput(a->h_path.dentry); + return; + } + + delegated = NULL; + rerr = vfsub_rename(a->dst_h_dir, a->h_dst, a->dst_h_dir, &a->h_path, + &delegated); + if (unlikely(rerr == -EWOULDBLOCK)) { + pr_warn("cannot retry for NFSv4 delegation" + " for an internal rename\n"); + iput(delegated); + } + d_drop(a->h_path.dentry); + dput(a->h_path.dentry); + if (!rerr) + au_set_h_dptr(a->dst_dentry, a->btgt, dget(a->h_dst)); + else + RevertFailure("rename %pd", a->h_dst); +} + +static void au_ren_rev_whsrc(int err, struct au_ren_args *a) +{ + int rerr; + + a->h_path.dentry = a->src_wh_dentry; + rerr = au_wh_unlink_dentry(a->src_h_dir, &a->h_path, a->src_dentry); + au_set_dbwh(a->src_dentry, a->src_bwh); + if (rerr) + RevertFailure("unlink %pd", a->src_wh_dentry); +} +#undef RevertFailure + +/* ---------------------------------------------------------------------- */ + +/* + * when we have to copyup the renaming entry, do it with the rename-target name + * in order to minimize the cost (the later actual rename is unnecessary). + * otherwise rename it on the target branch. + */ +static int au_ren_or_cpup(struct au_ren_args *a) +{ + int err; + struct dentry *d; + struct inode *delegated; + + d = a->src_dentry; + if (au_dbtop(d) == a->btgt) { + a->h_path.dentry = a->dst_h_dentry; + if (au_ftest_ren(a->flags, DIROPQ) + && au_dbdiropq(d) == a->btgt) + au_fclr_ren(a->flags, DIROPQ); + AuDebugOn(au_dbtop(d) != a->btgt); + delegated = NULL; + err = vfsub_rename(a->src_h_dir, au_h_dptr(d, a->btgt), + a->dst_h_dir, &a->h_path, &delegated); + if (unlikely(err == -EWOULDBLOCK)) { + pr_warn("cannot retry for NFSv4 delegation" + " for an internal rename\n"); + iput(delegated); + } + } else + BUG(); + + if (!err && a->h_dst) + /* it will be set to dinfo later */ + dget(a->h_dst); + + return err; +} + +/* cf. aufs_rmdir() */ +static int au_ren_del_whtmp(struct au_ren_args *a) +{ + int err; + struct inode *dir; + + dir = a->dst_dir; + SiMustAnyLock(dir->i_sb); + if (!au_nhash_test_longer_wh(&a->whlist, a->btgt, + au_sbi(dir->i_sb)->si_dirwh) + || au_test_fs_remote(a->h_dst->d_sb)) { + err = au_whtmp_rmdir(dir, a->btgt, a->h_dst, &a->whlist); + if (unlikely(err)) + pr_warn("failed removing whtmp dir %pd (%d), " + "ignored.\n", a->h_dst, err); + } else { + au_nhash_wh_free(&a->thargs->whlist); + a->thargs->whlist = a->whlist; + a->whlist.nh_num = 0; + au_whtmp_kick_rmdir(dir, a->btgt, a->h_dst, a->thargs); + dput(a->h_dst); + a->thargs = NULL; + } + + return 0; +} + +/* make it 'opaque' dir. */ +static int au_ren_diropq(struct au_ren_args *a) +{ + int err; + struct dentry *diropq; + + err = 0; + a->src_bdiropq = au_dbdiropq(a->src_dentry); + a->src_hinode = au_hi(a->src_inode, a->btgt); + au_hn_inode_lock_nested(a->src_hinode, AuLsc_I_CHILD); + diropq = au_diropq_create(a->src_dentry, a->btgt); + au_hn_inode_unlock(a->src_hinode); + if (IS_ERR(diropq)) + err = PTR_ERR(diropq); + else + dput(diropq); + + return err; +} + +static int do_rename(struct au_ren_args *a) +{ + int err; + struct dentry *d, *h_d; + + /* prepare workqueue args for asynchronous rmdir */ + h_d = a->dst_h_dentry; + if (au_ftest_ren(a->flags, ISDIR) && d_is_positive(h_d)) { + err = -ENOMEM; + a->thargs = au_whtmp_rmdir_alloc(a->src_dentry->d_sb, GFP_NOFS); + if (unlikely(!a->thargs)) + goto out; + a->h_dst = dget(h_d); + } + + /* create whiteout for src_dentry */ + if (au_ftest_ren(a->flags, WHSRC)) { + a->src_bwh = au_dbwh(a->src_dentry); + AuDebugOn(a->src_bwh >= 0); + a->src_wh_dentry + = au_wh_create(a->src_dentry, a->btgt, a->src_h_parent); + err = PTR_ERR(a->src_wh_dentry); + if (IS_ERR(a->src_wh_dentry)) + goto out_thargs; + } + + /* lookup whiteout for dentry */ + if (au_ftest_ren(a->flags, WHDST)) { + h_d = au_wh_lkup(a->dst_h_parent, &a->dst_dentry->d_name, + a->br); + err = PTR_ERR(h_d); + if (IS_ERR(h_d)) + goto out_whsrc; + if (d_is_negative(h_d)) + dput(h_d); + else + a->dst_wh_dentry = h_d; + } + + /* rename dentry to tmpwh */ + if (a->thargs) { + err = au_whtmp_ren(a->dst_h_dentry, a->br); + if (unlikely(err)) + goto out_whdst; + + d = a->dst_dentry; + au_set_h_dptr(d, a->btgt, NULL); + err = au_lkup_neg(d, a->btgt, /*wh*/0); + if (unlikely(err)) + goto out_whtmp; + a->dst_h_dentry = au_h_dptr(d, a->btgt); + } + + BUG_ON(d_is_positive(a->dst_h_dentry) && a->src_btop != a->btgt); + + /* rename by vfs_rename or cpup */ + d = a->dst_dentry; + if (au_ftest_ren(a->flags, ISDIR) + && (a->dst_wh_dentry + || au_dbdiropq(d) == a->btgt + /* hide the lower to keep xino */ + || a->btgt < au_dbbot(d) + || au_opt_test(au_mntflags(d->d_sb), ALWAYS_DIROPQ))) + au_fset_ren(a->flags, DIROPQ); + err = au_ren_or_cpup(a); + if (unlikely(err)) + /* leave the copied-up one */ + goto out_whtmp; + + /* make dir opaque */ + if (au_ftest_ren(a->flags, DIROPQ)) { + err = au_ren_diropq(a); + if (unlikely(err)) + goto out_rename; + } + + /* update target timestamps */ + AuDebugOn(au_dbtop(a->src_dentry) != a->btgt); + a->h_path.dentry = au_h_dptr(a->src_dentry, a->btgt); + vfsub_update_h_iattr(&a->h_path, /*did*/NULL); /*ignore*/ + a->src_inode->i_ctime = d_inode(a->h_path.dentry)->i_ctime; + + /* remove whiteout for dentry */ + if (a->dst_wh_dentry) { + a->h_path.dentry = a->dst_wh_dentry; + err = au_wh_unlink_dentry(a->dst_h_dir, &a->h_path, + a->dst_dentry); + if (unlikely(err)) + goto out_diropq; + } + + /* remove whtmp */ + if (a->thargs) + au_ren_del_whtmp(a); /* ignore this error */ + + au_fhsm_wrote(a->src_dentry->d_sb, a->btgt, /*force*/0); + err = 0; + goto out_success; + +out_diropq: + if (au_ftest_ren(a->flags, DIROPQ)) + au_ren_rev_diropq(err, a); +out_rename: + au_ren_rev_rename(err, a); + dput(a->h_dst); +out_whtmp: + if (a->thargs) + au_ren_rev_whtmp(err, a); +out_whdst: + dput(a->dst_wh_dentry); + a->dst_wh_dentry = NULL; +out_whsrc: + if (a->src_wh_dentry) + au_ren_rev_whsrc(err, a); +out_success: + dput(a->src_wh_dentry); + dput(a->dst_wh_dentry); +out_thargs: + if (a->thargs) { + dput(a->h_dst); + au_whtmp_rmdir_free(a->thargs); + a->thargs = NULL; + } +out: + return err; +} + +/* ---------------------------------------------------------------------- */ + +/* + * test if @dentry dir can be rename destination or not. + * success means, it is a logically empty dir. + */ +static int may_rename_dstdir(struct dentry *dentry, struct au_nhash *whlist) +{ + return au_test_empty(dentry, whlist); +} + +/* + * test if @dentry dir can be rename source or not. + * if it can, return 0 and @children is filled. + * success means, + * - it is a logically empty dir. + * - or, it exists on writable branch and has no children including whiteouts + * on the lower branch. + */ +static int may_rename_srcdir(struct dentry *dentry, aufs_bindex_t btgt) +{ + int err; + unsigned int rdhash; + aufs_bindex_t btop; + + btop = au_dbtop(dentry); + if (btop != btgt) { + struct au_nhash whlist; + + SiMustAnyLock(dentry->d_sb); + rdhash = au_sbi(dentry->d_sb)->si_rdhash; + if (!rdhash) + rdhash = au_rdhash_est(au_dir_size(/*file*/NULL, + dentry)); + err = au_nhash_alloc(&whlist, rdhash, GFP_NOFS); + if (unlikely(err)) + goto out; + err = au_test_empty(dentry, &whlist); + au_nhash_wh_free(&whlist); + goto out; + } + + if (btop == au_dbtaildir(dentry)) + return 0; /* success */ + + err = au_test_empty_lower(dentry); + +out: + if (err == -ENOTEMPTY) { + AuWarn1("renaming dir who has child(ren) on multiple branches," + " is not supported\n"); + err = -EXDEV; + } + return err; +} + +/* side effect: sets whlist and h_dentry */ +static int au_ren_may_dir(struct au_ren_args *a) +{ + int err; + unsigned int rdhash; + struct dentry *d; + + d = a->dst_dentry; + SiMustAnyLock(d->d_sb); + + err = 0; + if (au_ftest_ren(a->flags, ISDIR) && a->dst_inode) { + rdhash = au_sbi(d->d_sb)->si_rdhash; + if (!rdhash) + rdhash = au_rdhash_est(au_dir_size(/*file*/NULL, d)); + err = au_nhash_alloc(&a->whlist, rdhash, GFP_NOFS); + if (unlikely(err)) + goto out; + + au_set_dbtop(d, a->dst_btop); + err = may_rename_dstdir(d, &a->whlist); + au_set_dbtop(d, a->btgt); + } + a->dst_h_dentry = au_h_dptr(d, au_dbtop(d)); + if (unlikely(err)) + goto out; + + d = a->src_dentry; + a->src_h_dentry = au_h_dptr(d, au_dbtop(d)); + if (au_ftest_ren(a->flags, ISDIR)) { + err = may_rename_srcdir(d, a->btgt); + if (unlikely(err)) { + au_nhash_wh_free(&a->whlist); + a->whlist.nh_num = 0; + } + } +out: + return err; +} + +/* ---------------------------------------------------------------------- */ + +/* + * simple tests for rename. + * following the checks in vfs, plus the parent-child relationship. + */ +static int au_may_ren(struct au_ren_args *a) +{ + int err, isdir; + struct inode *h_inode; + + if (a->src_btop == a->btgt) { + err = au_may_del(a->src_dentry, a->btgt, a->src_h_parent, + au_ftest_ren(a->flags, ISDIR)); + if (unlikely(err)) + goto out; + err = -EINVAL; + if (unlikely(a->src_h_dentry == a->h_trap)) + goto out; + } + + err = 0; + if (a->dst_btop != a->btgt) + goto out; + + err = -ENOTEMPTY; + if (unlikely(a->dst_h_dentry == a->h_trap)) + goto out; + + err = -EIO; + isdir = !!au_ftest_ren(a->flags, ISDIR); + if (d_really_is_negative(a->dst_dentry)) { + if (d_is_negative(a->dst_h_dentry)) + err = au_may_add(a->dst_dentry, a->btgt, + a->dst_h_parent, isdir); + } else { + if (unlikely(d_is_negative(a->dst_h_dentry))) + goto out; + h_inode = d_inode(a->dst_h_dentry); + if (h_inode->i_nlink) + err = au_may_del(a->dst_dentry, a->btgt, + a->dst_h_parent, isdir); + } + +out: + if (unlikely(err == -ENOENT || err == -EEXIST)) + err = -EIO; + AuTraceErr(err); + return err; +} + +/* ---------------------------------------------------------------------- */ + +/* + * locking order + * (VFS) + * - src_dir and dir by lock_rename() + * - inode if exitsts + * (aufs) + * - lock all + * + src_dentry and dentry by aufs_read_and_write_lock2() which calls, + * + si_read_lock + * + di_write_lock2_child() + * + di_write_lock_child() + * + ii_write_lock_child() + * + di_write_lock_child2() + * + ii_write_lock_child2() + * + src_parent and parent + * + di_write_lock_parent() + * + ii_write_lock_parent() + * + di_write_lock_parent2() + * + ii_write_lock_parent2() + * + lower src_dir and dir by vfsub_lock_rename() + * + verify the every relationships between child and parent. if any + * of them failed, unlock all and return -EBUSY. + */ +static void au_ren_unlock(struct au_ren_args *a) +{ + vfsub_unlock_rename(a->src_h_parent, a->src_hdir, + a->dst_h_parent, a->dst_hdir); + if (au_ftest_ren(a->flags, MNT_WRITE)) + vfsub_mnt_drop_write(au_br_mnt(a->br)); +} + +static int au_ren_lock(struct au_ren_args *a) +{ + int err; + unsigned int udba; + + err = 0; + a->src_h_parent = au_h_dptr(a->src_parent, a->btgt); + a->src_hdir = au_hi(a->src_dir, a->btgt); + a->dst_h_parent = au_h_dptr(a->dst_parent, a->btgt); + a->dst_hdir = au_hi(a->dst_dir, a->btgt); + + err = vfsub_mnt_want_write(au_br_mnt(a->br)); + if (unlikely(err)) + goto out; + au_fset_ren(a->flags, MNT_WRITE); + a->h_trap = vfsub_lock_rename(a->src_h_parent, a->src_hdir, + a->dst_h_parent, a->dst_hdir); + udba = au_opt_udba(a->src_dentry->d_sb); + if (unlikely(a->src_hdir->hi_inode != d_inode(a->src_h_parent) + || a->dst_hdir->hi_inode != d_inode(a->dst_h_parent))) + err = au_busy_or_stale(); + if (!err && au_dbtop(a->src_dentry) == a->btgt) + err = au_h_verify(a->src_h_dentry, udba, + d_inode(a->src_h_parent), a->src_h_parent, + a->br); + if (!err && au_dbtop(a->dst_dentry) == a->btgt) + err = au_h_verify(a->dst_h_dentry, udba, + d_inode(a->dst_h_parent), a->dst_h_parent, + a->br); + if (!err) + goto out; /* success */ + + err = au_busy_or_stale(); + au_ren_unlock(a); + +out: + return err; +} + +/* ---------------------------------------------------------------------- */ + +static void au_ren_refresh_dir(struct au_ren_args *a) +{ + struct inode *dir; + + dir = a->dst_dir; + dir->i_version++; + if (au_ftest_ren(a->flags, ISDIR)) { + /* is this updating defined in POSIX? */ + au_cpup_attr_timesizes(a->src_inode); + au_cpup_attr_nlink(dir, /*force*/1); + } + + au_dir_ts(dir, a->btgt); + + if (au_ftest_ren(a->flags, ISSAMEDIR)) + return; + + dir = a->src_dir; + dir->i_version++; + if (au_ftest_ren(a->flags, ISDIR)) + au_cpup_attr_nlink(dir, /*force*/1); + au_dir_ts(dir, a->btgt); +} + +static void au_ren_refresh(struct au_ren_args *a) +{ + aufs_bindex_t bbot, bindex; + struct dentry *d, *h_d; + struct inode *i, *h_i; + struct super_block *sb; + + d = a->dst_dentry; + d_drop(d); + if (a->h_dst) + /* already dget-ed by au_ren_or_cpup() */ + au_set_h_dptr(d, a->btgt, a->h_dst); + + i = a->dst_inode; + if (i) { + if (!au_ftest_ren(a->flags, ISDIR)) + vfsub_drop_nlink(i); + else { + vfsub_dead_dir(i); + au_cpup_attr_timesizes(i); + } + au_update_dbrange(d, /*do_put_zero*/1); + } else { + bbot = a->btgt; + for (bindex = au_dbtop(d); bindex < bbot; bindex++) + au_set_h_dptr(d, bindex, NULL); + bbot = au_dbbot(d); + for (bindex = a->btgt + 1; bindex <= bbot; bindex++) + au_set_h_dptr(d, bindex, NULL); + au_update_dbrange(d, /*do_put_zero*/0); + } + + d = a->src_dentry; + au_set_dbwh(d, -1); + bbot = au_dbbot(d); + for (bindex = a->btgt + 1; bindex <= bbot; bindex++) { + h_d = au_h_dptr(d, bindex); + if (h_d) + au_set_h_dptr(d, bindex, NULL); + } + au_set_dbbot(d, a->btgt); + + sb = d->d_sb; + i = a->src_inode; + if (au_opt_test(au_mntflags(sb), PLINK) && au_plink_test(i)) + return; /* success */ + + bbot = au_ibbot(i); + for (bindex = a->btgt + 1; bindex <= bbot; bindex++) { + h_i = au_h_iptr(i, bindex); + if (h_i) { + au_xino_write(sb, bindex, h_i->i_ino, /*ino*/0); + /* ignore this error */ + au_set_h_iptr(i, bindex, NULL, 0); + } + } + au_set_ibbot(i, a->btgt); +} + +/* ---------------------------------------------------------------------- */ + +/* mainly for link(2) and rename(2) */ +int au_wbr(struct dentry *dentry, aufs_bindex_t btgt) +{ + aufs_bindex_t bdiropq, bwh; + struct dentry *parent; + struct au_branch *br; + + parent = dentry->d_parent; + IMustLock(d_inode(parent)); /* dir is locked */ + + bdiropq = au_dbdiropq(parent); + bwh = au_dbwh(dentry); + br = au_sbr(dentry->d_sb, btgt); + if (au_br_rdonly(br) + || (0 <= bdiropq && bdiropq < btgt) + || (0 <= bwh && bwh < btgt)) + btgt = -1; + + AuDbg("btgt %d\n", btgt); + return btgt; +} + +/* sets src_btop, dst_btop and btgt */ +static int au_ren_wbr(struct au_ren_args *a) +{ + int err; + struct au_wr_dir_args wr_dir_args = { + /* .force_btgt = -1, */ + .flags = AuWrDir_ADD_ENTRY + }; + + a->src_btop = au_dbtop(a->src_dentry); + a->dst_btop = au_dbtop(a->dst_dentry); + if (au_ftest_ren(a->flags, ISDIR)) + au_fset_wrdir(wr_dir_args.flags, ISDIR); + wr_dir_args.force_btgt = a->src_btop; + if (a->dst_inode && a->dst_btop < a->src_btop) + wr_dir_args.force_btgt = a->dst_btop; + wr_dir_args.force_btgt = au_wbr(a->dst_dentry, wr_dir_args.force_btgt); + err = au_wr_dir(a->dst_dentry, a->src_dentry, &wr_dir_args); + a->btgt = err; + + return err; +} + +static void au_ren_dt(struct au_ren_args *a) +{ + a->h_path.dentry = a->src_h_parent; + au_dtime_store(a->src_dt + AuPARENT, a->src_parent, &a->h_path); + if (!au_ftest_ren(a->flags, ISSAMEDIR)) { + a->h_path.dentry = a->dst_h_parent; + au_dtime_store(a->dst_dt + AuPARENT, a->dst_parent, &a->h_path); + } + + au_fclr_ren(a->flags, DT_DSTDIR); + if (!au_ftest_ren(a->flags, ISDIR)) + return; + + a->h_path.dentry = a->src_h_dentry; + au_dtime_store(a->src_dt + AuCHILD, a->src_dentry, &a->h_path); + if (d_is_positive(a->dst_h_dentry)) { + au_fset_ren(a->flags, DT_DSTDIR); + a->h_path.dentry = a->dst_h_dentry; + au_dtime_store(a->dst_dt + AuCHILD, a->dst_dentry, &a->h_path); + } +} + +static void au_ren_rev_dt(int err, struct au_ren_args *a) +{ + struct dentry *h_d; + struct inode *h_inode; + + au_dtime_revert(a->src_dt + AuPARENT); + if (!au_ftest_ren(a->flags, ISSAMEDIR)) + au_dtime_revert(a->dst_dt + AuPARENT); + + if (au_ftest_ren(a->flags, ISDIR) && err != -EIO) { + h_d = a->src_dt[AuCHILD].dt_h_path.dentry; + h_inode = d_inode(h_d); + inode_lock_nested(h_inode, AuLsc_I_CHILD); + au_dtime_revert(a->src_dt + AuCHILD); + inode_unlock(h_inode); + + if (au_ftest_ren(a->flags, DT_DSTDIR)) { + h_d = a->dst_dt[AuCHILD].dt_h_path.dentry; + h_inode = d_inode(h_d); + inode_lock_nested(h_inode, AuLsc_I_CHILD); + au_dtime_revert(a->dst_dt + AuCHILD); + inode_unlock(h_inode); + } + } +} + +/* ---------------------------------------------------------------------- */ + +int aufs_rename(struct inode *_src_dir, struct dentry *_src_dentry, + struct inode *_dst_dir, struct dentry *_dst_dentry) +{ + int err, flags; + /* reduce stack space */ + struct au_ren_args *a; + + AuDbg("%pd, %pd\n", _src_dentry, _dst_dentry); + IMustLock(_src_dir); + IMustLock(_dst_dir); + + err = -ENOMEM; + BUILD_BUG_ON(sizeof(*a) > PAGE_SIZE); + a = kzalloc(sizeof(*a), GFP_NOFS); + if (unlikely(!a)) + goto out; + + a->src_dir = _src_dir; + a->src_dentry = _src_dentry; + a->src_inode = NULL; + if (d_really_is_positive(a->src_dentry)) + a->src_inode = d_inode(a->src_dentry); + a->src_parent = a->src_dentry->d_parent; /* dir inode is locked */ + a->dst_dir = _dst_dir; + a->dst_dentry = _dst_dentry; + a->dst_inode = NULL; + if (d_really_is_positive(a->dst_dentry)) + a->dst_inode = d_inode(a->dst_dentry); + a->dst_parent = a->dst_dentry->d_parent; /* dir inode is locked */ + if (a->dst_inode) { + IMustLock(a->dst_inode); + au_igrab(a->dst_inode); + } + + err = -ENOTDIR; + flags = AuLock_FLUSH | AuLock_NOPLM | AuLock_GEN; + if (d_is_dir(a->src_dentry)) { + au_fset_ren(a->flags, ISDIR); + if (unlikely(d_really_is_positive(a->dst_dentry) + && !d_is_dir(a->dst_dentry))) + goto out_free; + flags |= AuLock_DIRS; + } + err = aufs_read_and_write_lock2(a->dst_dentry, a->src_dentry, flags); + if (unlikely(err)) + goto out_free; + + err = au_d_hashed_positive(a->src_dentry); + if (unlikely(err)) + goto out_unlock; + err = -ENOENT; + if (a->dst_inode) { + /* + * If it is a dir, VFS unhash dst_dentry before this + * function. It means we cannot rely upon d_unhashed(). + */ + if (unlikely(!a->dst_inode->i_nlink)) + goto out_unlock; + if (!S_ISDIR(a->dst_inode->i_mode)) { + err = au_d_hashed_positive(a->dst_dentry); + if (unlikely(err)) + goto out_unlock; + } else if (unlikely(IS_DEADDIR(a->dst_inode))) + goto out_unlock; + } else if (unlikely(d_unhashed(a->dst_dentry))) + goto out_unlock; + + /* + * is it possible? + * yes, it happened (in linux-3.3-rcN) but I don't know why. + * there may exist a problem somewhere else. + */ + err = -EINVAL; + if (unlikely(d_inode(a->dst_parent) == d_inode(a->src_dentry))) + goto out_unlock; + + au_fset_ren(a->flags, ISSAMEDIR); /* temporary */ + di_write_lock_parent(a->dst_parent); + + /* which branch we process */ + err = au_ren_wbr(a); + if (unlikely(err < 0)) + goto out_parent; + a->br = au_sbr(a->dst_dentry->d_sb, a->btgt); + a->h_path.mnt = au_br_mnt(a->br); + + /* are they available to be renamed */ + err = au_ren_may_dir(a); + if (unlikely(err)) + goto out_children; + + /* prepare the writable parent dir on the same branch */ + if (a->dst_btop == a->btgt) { + au_fset_ren(a->flags, WHDST); + } else { + err = au_cpup_dirs(a->dst_dentry, a->btgt); + if (unlikely(err)) + goto out_children; + } + + if (a->src_dir != a->dst_dir) { + /* + * this temporary unlock is safe, + * because both dir->i_mutex are locked. + */ + di_write_unlock(a->dst_parent); + di_write_lock_parent(a->src_parent); + err = au_wr_dir_need_wh(a->src_dentry, + au_ftest_ren(a->flags, ISDIR), + &a->btgt); + di_write_unlock(a->src_parent); + di_write_lock2_parent(a->src_parent, a->dst_parent, /*isdir*/1); + au_fclr_ren(a->flags, ISSAMEDIR); + } else + err = au_wr_dir_need_wh(a->src_dentry, + au_ftest_ren(a->flags, ISDIR), + &a->btgt); + if (unlikely(err < 0)) + goto out_children; + if (err) + au_fset_ren(a->flags, WHSRC); + + /* cpup src */ + if (a->src_btop != a->btgt) { + struct au_pin pin; + + err = au_pin(&pin, a->src_dentry, a->btgt, + au_opt_udba(a->src_dentry->d_sb), + AuPin_DI_LOCKED | AuPin_MNT_WRITE); + if (!err) { + struct au_cp_generic cpg = { + .dentry = a->src_dentry, + .bdst = a->btgt, + .bsrc = a->src_btop, + .len = -1, + .pin = &pin, + .flags = AuCpup_DTIME | AuCpup_HOPEN + }; + AuDebugOn(au_dbtop(a->src_dentry) != a->src_btop); + err = au_sio_cpup_simple(&cpg); + au_unpin(&pin); + } + if (unlikely(err)) + goto out_children; + a->src_btop = a->btgt; + a->src_h_dentry = au_h_dptr(a->src_dentry, a->btgt); + au_fset_ren(a->flags, WHSRC); + } + + /* lock them all */ + err = au_ren_lock(a); + if (unlikely(err)) + /* leave the copied-up one */ + goto out_children; + + if (!au_opt_test(au_mntflags(a->dst_dir->i_sb), UDBA_NONE)) + err = au_may_ren(a); + else if (unlikely(a->dst_dentry->d_name.len > AUFS_MAX_NAMELEN)) + err = -ENAMETOOLONG; + if (unlikely(err)) + goto out_hdir; + + /* store timestamps to be revertible */ + au_ren_dt(a); + + /* here we go */ + err = do_rename(a); + if (unlikely(err)) + goto out_dt; + + /* update dir attributes */ + au_ren_refresh_dir(a); + + /* dput/iput all lower dentries */ + au_ren_refresh(a); + + goto out_hdir; /* success */ + +out_dt: + au_ren_rev_dt(err, a); +out_hdir: + au_ren_unlock(a); +out_children: + au_nhash_wh_free(&a->whlist); + if (err && a->dst_inode && a->dst_btop != a->btgt) { + AuDbg("btop %d, btgt %d\n", a->dst_btop, a->btgt); + au_set_h_dptr(a->dst_dentry, a->btgt, NULL); + au_set_dbtop(a->dst_dentry, a->dst_btop); + } +out_parent: + if (!err) + d_move(a->src_dentry, a->dst_dentry); + else { + au_update_dbtop(a->dst_dentry); + if (!a->dst_inode) + d_drop(a->dst_dentry); + } + if (au_ftest_ren(a->flags, ISSAMEDIR)) + di_write_unlock(a->dst_parent); + else + di_write_unlock2(a->src_parent, a->dst_parent); +out_unlock: + aufs_read_and_write_unlock2(a->dst_dentry, a->src_dentry); +out_free: + iput(a->dst_inode); + if (a->thargs) + au_whtmp_rmdir_free(a->thargs); + au_delayed_kfree(a); +out: + AuTraceErr(err); + return err; +} --- linux-4.8.0.orig/fs/aufs/iinfo.c +++ linux-4.8.0/fs/aufs/iinfo.c @@ -0,0 +1,285 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * inode private data + */ + +#include "aufs.h" + +struct inode *au_h_iptr(struct inode *inode, aufs_bindex_t bindex) +{ + struct inode *h_inode; + struct au_hinode *hinode; + + IiMustAnyLock(inode); + + hinode = au_hinode(au_ii(inode), bindex); + h_inode = hinode->hi_inode; + AuDebugOn(h_inode && atomic_read(&h_inode->i_count) <= 0); + return h_inode; +} + +/* todo: hard/soft set? */ +void au_hiput(struct au_hinode *hinode) +{ + au_hn_free(hinode); + dput(hinode->hi_whdentry); + iput(hinode->hi_inode); +} + +unsigned int au_hi_flags(struct inode *inode, int isdir) +{ + unsigned int flags; + const unsigned int mnt_flags = au_mntflags(inode->i_sb); + + flags = 0; + if (au_opt_test(mnt_flags, XINO)) + au_fset_hi(flags, XINO); + if (isdir && au_opt_test(mnt_flags, UDBA_HNOTIFY)) + au_fset_hi(flags, HNOTIFY); + return flags; +} + +void au_set_h_iptr(struct inode *inode, aufs_bindex_t bindex, + struct inode *h_inode, unsigned int flags) +{ + struct au_hinode *hinode; + struct inode *hi; + struct au_iinfo *iinfo = au_ii(inode); + + IiMustWriteLock(inode); + + hinode = au_hinode(iinfo, bindex); + hi = hinode->hi_inode; + AuDebugOn(h_inode && atomic_read(&h_inode->i_count) <= 0); + + if (hi) + au_hiput(hinode); + hinode->hi_inode = h_inode; + if (h_inode) { + int err; + struct super_block *sb = inode->i_sb; + struct au_branch *br; + + AuDebugOn(inode->i_mode + && (h_inode->i_mode & S_IFMT) + != (inode->i_mode & S_IFMT)); + if (bindex == iinfo->ii_btop) + au_cpup_igen(inode, h_inode); + br = au_sbr(sb, bindex); + hinode->hi_id = br->br_id; + if (au_ftest_hi(flags, XINO)) { + err = au_xino_write(sb, bindex, h_inode->i_ino, + inode->i_ino); + if (unlikely(err)) + AuIOErr1("failed au_xino_write() %d\n", err); + } + + if (au_ftest_hi(flags, HNOTIFY) + && au_br_hnotifyable(br->br_perm)) { + err = au_hn_alloc(hinode, inode); + if (unlikely(err)) + AuIOErr1("au_hn_alloc() %d\n", err); + } + } +} + +void au_set_hi_wh(struct inode *inode, aufs_bindex_t bindex, + struct dentry *h_wh) +{ + struct au_hinode *hinode; + + IiMustWriteLock(inode); + + hinode = au_hinode(au_ii(inode), bindex); + AuDebugOn(hinode->hi_whdentry); + hinode->hi_whdentry = h_wh; +} + +void au_update_iigen(struct inode *inode, int half) +{ + struct au_iinfo *iinfo; + struct au_iigen *iigen; + unsigned int sigen; + + sigen = au_sigen(inode->i_sb); + iinfo = au_ii(inode); + iigen = &iinfo->ii_generation; + spin_lock(&iigen->ig_spin); + iigen->ig_generation = sigen; + if (half) + au_ig_fset(iigen->ig_flags, HALF_REFRESHED); + else + au_ig_fclr(iigen->ig_flags, HALF_REFRESHED); + spin_unlock(&iigen->ig_spin); +} + +/* it may be called at remount time, too */ +void au_update_ibrange(struct inode *inode, int do_put_zero) +{ + struct au_iinfo *iinfo; + aufs_bindex_t bindex, bbot; + + AuDebugOn(au_is_bad_inode(inode)); + IiMustWriteLock(inode); + + iinfo = au_ii(inode); + if (do_put_zero && iinfo->ii_btop >= 0) { + for (bindex = iinfo->ii_btop; bindex <= iinfo->ii_bbot; + bindex++) { + struct inode *h_i; + + h_i = au_hinode(iinfo, bindex)->hi_inode; + if (h_i + && !h_i->i_nlink + && !(h_i->i_state & I_LINKABLE)) + au_set_h_iptr(inode, bindex, NULL, 0); + } + } + + iinfo->ii_btop = -1; + iinfo->ii_bbot = -1; + bbot = au_sbbot(inode->i_sb); + for (bindex = 0; bindex <= bbot; bindex++) + if (au_hinode(iinfo, bindex)->hi_inode) { + iinfo->ii_btop = bindex; + break; + } + if (iinfo->ii_btop >= 0) + for (bindex = bbot; bindex >= iinfo->ii_btop; bindex--) + if (au_hinode(iinfo, bindex)->hi_inode) { + iinfo->ii_bbot = bindex; + break; + } + AuDebugOn(iinfo->ii_btop > iinfo->ii_bbot); +} + +/* ---------------------------------------------------------------------- */ + +void au_icntnr_init_once(void *_c) +{ + struct au_icntnr *c = _c; + struct au_iinfo *iinfo = &c->iinfo; + + spin_lock_init(&iinfo->ii_generation.ig_spin); + au_rw_init(&iinfo->ii_rwsem); + inode_init_once(&c->vfs_inode); +} + +void au_hinode_init(struct au_hinode *hinode) +{ + hinode->hi_inode = NULL; + hinode->hi_id = -1; + au_hn_init(hinode); + hinode->hi_whdentry = NULL; +} + +int au_iinfo_init(struct inode *inode) +{ + struct au_iinfo *iinfo; + struct super_block *sb; + struct au_hinode *hi; + int nbr, i; + + sb = inode->i_sb; + iinfo = &(container_of(inode, struct au_icntnr, vfs_inode)->iinfo); + nbr = au_sbbot(sb) + 1; + if (unlikely(nbr <= 0)) + nbr = 1; + hi = kmalloc_array(nbr, sizeof(*iinfo->ii_hinode), GFP_NOFS); + if (hi) { + au_ninodes_inc(sb); + + iinfo->ii_hinode = hi; + for (i = 0; i < nbr; i++, hi++) + au_hinode_init(hi); + + iinfo->ii_generation.ig_generation = au_sigen(sb); + iinfo->ii_btop = -1; + iinfo->ii_bbot = -1; + iinfo->ii_vdir = NULL; + return 0; + } + return -ENOMEM; +} + +int au_hinode_realloc(struct au_iinfo *iinfo, int nbr, int may_shrink) +{ + int err, i; + struct au_hinode *hip; + + AuRwMustWriteLock(&iinfo->ii_rwsem); + + err = -ENOMEM; + hip = au_krealloc(iinfo->ii_hinode, sizeof(*hip) * nbr, GFP_NOFS, + may_shrink); + if (hip) { + iinfo->ii_hinode = hip; + i = iinfo->ii_bbot + 1; + hip += i; + for (; i < nbr; i++, hip++) + au_hinode_init(hip); + err = 0; + } + + return err; +} + +void au_iinfo_fin(struct inode *inode) +{ + struct au_iinfo *iinfo; + struct au_hinode *hi; + struct super_block *sb; + aufs_bindex_t bindex, bbot; + const unsigned char unlinked = !inode->i_nlink; + + AuDebugOn(au_is_bad_inode(inode)); + + sb = inode->i_sb; + au_ninodes_dec(sb); + if (si_pid_test(sb)) + au_xino_delete_inode(inode, unlinked); + else { + /* + * it is safe to hide the dependency between sbinfo and + * sb->s_umount. + */ + lockdep_off(); + si_noflush_read_lock(sb); + au_xino_delete_inode(inode, unlinked); + si_read_unlock(sb); + lockdep_on(); + } + + iinfo = au_ii(inode); + if (iinfo->ii_vdir) + au_vdir_free(iinfo->ii_vdir, /*atonce*/0); + + bindex = iinfo->ii_btop; + if (bindex >= 0) { + hi = au_hinode(iinfo, bindex); + bbot = iinfo->ii_bbot; + while (bindex++ <= bbot) { + if (hi->hi_inode) + au_hiput(hi); + hi++; + } + } + au_delayed_kfree(iinfo->ii_hinode); + AuRwDestroy(&iinfo->ii_rwsem); +} --- linux-4.8.0.orig/fs/aufs/inode.c +++ linux-4.8.0/fs/aufs/inode.c @@ -0,0 +1,519 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * inode functions + */ + +#include "aufs.h" + +struct inode *au_igrab(struct inode *inode) +{ + if (inode) { + AuDebugOn(!atomic_read(&inode->i_count)); + ihold(inode); + } + return inode; +} + +static void au_refresh_hinode_attr(struct inode *inode, int do_version) +{ + au_cpup_attr_all(inode, /*force*/0); + au_update_iigen(inode, /*half*/1); + if (do_version) + inode->i_version++; +} + +static int au_ii_refresh(struct inode *inode, int *update) +{ + int err, e, nbr; + umode_t type; + aufs_bindex_t bindex, new_bindex; + struct super_block *sb; + struct au_iinfo *iinfo; + struct au_hinode *p, *q, tmp; + + AuDebugOn(au_is_bad_inode(inode)); + IiMustWriteLock(inode); + + *update = 0; + sb = inode->i_sb; + nbr = au_sbbot(sb) + 1; + type = inode->i_mode & S_IFMT; + iinfo = au_ii(inode); + err = au_hinode_realloc(iinfo, nbr, /*may_shrink*/0); + if (unlikely(err)) + goto out; + + AuDebugOn(iinfo->ii_btop < 0); + p = au_hinode(iinfo, iinfo->ii_btop); + for (bindex = iinfo->ii_btop; bindex <= iinfo->ii_bbot; + bindex++, p++) { + if (!p->hi_inode) + continue; + + AuDebugOn(type != (p->hi_inode->i_mode & S_IFMT)); + new_bindex = au_br_index(sb, p->hi_id); + if (new_bindex == bindex) + continue; + + if (new_bindex < 0) { + *update = 1; + au_hiput(p); + p->hi_inode = NULL; + continue; + } + + if (new_bindex < iinfo->ii_btop) + iinfo->ii_btop = new_bindex; + if (iinfo->ii_bbot < new_bindex) + iinfo->ii_bbot = new_bindex; + /* swap two lower inode, and loop again */ + q = au_hinode(iinfo, new_bindex); + tmp = *q; + *q = *p; + *p = tmp; + if (tmp.hi_inode) { + bindex--; + p--; + } + } + au_update_ibrange(inode, /*do_put_zero*/0); + au_hinode_realloc(iinfo, nbr, /*may_shrink*/1); /* harmless if err */ + e = au_dy_irefresh(inode); + if (unlikely(e && !err)) + err = e; + +out: + AuTraceErr(err); + return err; +} + +void au_refresh_iop(struct inode *inode, int force_getattr) +{ + int type; + struct au_sbinfo *sbi = au_sbi(inode->i_sb); + const struct inode_operations *iop + = force_getattr ? aufs_iop : sbi->si_iop_array; + + if (inode->i_op == iop) + return; + + switch (inode->i_mode & S_IFMT) { + case S_IFDIR: + type = AuIop_DIR; + break; + case S_IFLNK: + type = AuIop_SYMLINK; + break; + default: + type = AuIop_OTHER; + break; + } + + inode->i_op = iop + type; + /* unnecessary smp_wmb() */ +} + +int au_refresh_hinode_self(struct inode *inode) +{ + int err, update; + + err = au_ii_refresh(inode, &update); + if (!err) + au_refresh_hinode_attr(inode, update && S_ISDIR(inode->i_mode)); + + AuTraceErr(err); + return err; +} + +int au_refresh_hinode(struct inode *inode, struct dentry *dentry) +{ + int err, e, update; + unsigned int flags; + umode_t mode; + aufs_bindex_t bindex, bbot; + unsigned char isdir; + struct au_hinode *p; + struct au_iinfo *iinfo; + + err = au_ii_refresh(inode, &update); + if (unlikely(err)) + goto out; + + update = 0; + iinfo = au_ii(inode); + p = au_hinode(iinfo, iinfo->ii_btop); + mode = (inode->i_mode & S_IFMT); + isdir = S_ISDIR(mode); + flags = au_hi_flags(inode, isdir); + bbot = au_dbbot(dentry); + for (bindex = au_dbtop(dentry); bindex <= bbot; bindex++) { + struct inode *h_i, *h_inode; + struct dentry *h_d; + + h_d = au_h_dptr(dentry, bindex); + if (!h_d || d_is_negative(h_d)) + continue; + + h_inode = d_inode(h_d); + AuDebugOn(mode != (h_inode->i_mode & S_IFMT)); + if (iinfo->ii_btop <= bindex && bindex <= iinfo->ii_bbot) { + h_i = au_h_iptr(inode, bindex); + if (h_i) { + if (h_i == h_inode) + continue; + err = -EIO; + break; + } + } + if (bindex < iinfo->ii_btop) + iinfo->ii_btop = bindex; + if (iinfo->ii_bbot < bindex) + iinfo->ii_bbot = bindex; + au_set_h_iptr(inode, bindex, au_igrab(h_inode), flags); + update = 1; + } + au_update_ibrange(inode, /*do_put_zero*/0); + e = au_dy_irefresh(inode); + if (unlikely(e && !err)) + err = e; + if (!err) + au_refresh_hinode_attr(inode, update && isdir); + +out: + AuTraceErr(err); + return err; +} + +static int set_inode(struct inode *inode, struct dentry *dentry) +{ + int err; + unsigned int flags; + umode_t mode; + aufs_bindex_t bindex, btop, btail; + unsigned char isdir; + struct dentry *h_dentry; + struct inode *h_inode; + struct au_iinfo *iinfo; + struct inode_operations *iop; + + IiMustWriteLock(inode); + + err = 0; + isdir = 0; + iop = au_sbi(inode->i_sb)->si_iop_array; + btop = au_dbtop(dentry); + h_dentry = au_h_dptr(dentry, btop); + h_inode = d_inode(h_dentry); + mode = h_inode->i_mode; + switch (mode & S_IFMT) { + case S_IFREG: + btail = au_dbtail(dentry); + inode->i_op = iop + AuIop_OTHER; + inode->i_fop = &aufs_file_fop; + err = au_dy_iaop(inode, btop, h_inode); + if (unlikely(err)) + goto out; + break; + case S_IFDIR: + isdir = 1; + btail = au_dbtaildir(dentry); + inode->i_op = iop + AuIop_DIR; + inode->i_fop = &aufs_dir_fop; + break; + case S_IFLNK: + btail = au_dbtail(dentry); + inode->i_op = iop + AuIop_SYMLINK; + break; + case S_IFBLK: + case S_IFCHR: + case S_IFIFO: + case S_IFSOCK: + btail = au_dbtail(dentry); + inode->i_op = iop + AuIop_OTHER; + init_special_inode(inode, mode, h_inode->i_rdev); + break; + default: + AuIOErr("Unknown file type 0%o\n", mode); + err = -EIO; + goto out; + } + + /* do not set hnotify for whiteouted dirs (SHWH mode) */ + flags = au_hi_flags(inode, isdir); + if (au_opt_test(au_mntflags(dentry->d_sb), SHWH) + && au_ftest_hi(flags, HNOTIFY) + && dentry->d_name.len > AUFS_WH_PFX_LEN + && !memcmp(dentry->d_name.name, AUFS_WH_PFX, AUFS_WH_PFX_LEN)) + au_fclr_hi(flags, HNOTIFY); + iinfo = au_ii(inode); + iinfo->ii_btop = btop; + iinfo->ii_bbot = btail; + for (bindex = btop; bindex <= btail; bindex++) { + h_dentry = au_h_dptr(dentry, bindex); + if (h_dentry) + au_set_h_iptr(inode, bindex, + au_igrab(d_inode(h_dentry)), flags); + } + au_cpup_attr_all(inode, /*force*/1); + /* + * to force calling aufs_get_acl() every time, + * do not call cache_no_acl() for aufs inode. + */ + +out: + return err; +} + +/* + * successful returns with iinfo write_locked + * minus: errno + * zero: success, matched + * plus: no error, but unmatched + */ +static int reval_inode(struct inode *inode, struct dentry *dentry) +{ + int err; + unsigned int gen, igflags; + aufs_bindex_t bindex, bbot; + struct inode *h_inode, *h_dinode; + struct dentry *h_dentry; + + /* + * before this function, if aufs got any iinfo lock, it must be only + * one, the parent dir. + * it can happen by UDBA and the obsoleted inode number. + */ + err = -EIO; + if (unlikely(inode->i_ino == parent_ino(dentry))) + goto out; + + err = 1; + ii_write_lock_new_child(inode); + h_dentry = au_h_dptr(dentry, au_dbtop(dentry)); + h_dinode = d_inode(h_dentry); + bbot = au_ibbot(inode); + for (bindex = au_ibtop(inode); bindex <= bbot; bindex++) { + h_inode = au_h_iptr(inode, bindex); + if (!h_inode || h_inode != h_dinode) + continue; + + err = 0; + gen = au_iigen(inode, &igflags); + if (gen == au_digen(dentry) + && !au_ig_ftest(igflags, HALF_REFRESHED)) + break; + + /* fully refresh inode using dentry */ + err = au_refresh_hinode(inode, dentry); + if (!err) + au_update_iigen(inode, /*half*/0); + break; + } + + if (unlikely(err)) + ii_write_unlock(inode); +out: + return err; +} + +int au_ino(struct super_block *sb, aufs_bindex_t bindex, ino_t h_ino, + unsigned int d_type, ino_t *ino) +{ + int err; + struct mutex *mtx; + + /* prevent hardlinked inode number from race condition */ + mtx = NULL; + if (d_type != DT_DIR) { + mtx = &au_sbr(sb, bindex)->br_xino.xi_nondir_mtx; + mutex_lock(mtx); + } + err = au_xino_read(sb, bindex, h_ino, ino); + if (unlikely(err)) + goto out; + + if (!*ino) { + err = -EIO; + *ino = au_xino_new_ino(sb); + if (unlikely(!*ino)) + goto out; + err = au_xino_write(sb, bindex, h_ino, *ino); + if (unlikely(err)) + goto out; + } + +out: + if (mtx) + mutex_unlock(mtx); + return err; +} + +/* successful returns with iinfo write_locked */ +/* todo: return with unlocked? */ +struct inode *au_new_inode(struct dentry *dentry, int must_new) +{ + struct inode *inode, *h_inode; + struct dentry *h_dentry; + struct super_block *sb; + struct mutex *mtx; + ino_t h_ino, ino; + int err; + aufs_bindex_t btop; + + sb = dentry->d_sb; + btop = au_dbtop(dentry); + h_dentry = au_h_dptr(dentry, btop); + h_inode = d_inode(h_dentry); + h_ino = h_inode->i_ino; + + /* + * stop 'race'-ing between hardlinks under different + * parents. + */ + mtx = NULL; + if (!d_is_dir(h_dentry)) + mtx = &au_sbr(sb, btop)->br_xino.xi_nondir_mtx; + +new_ino: + if (mtx) + mutex_lock(mtx); + err = au_xino_read(sb, btop, h_ino, &ino); + inode = ERR_PTR(err); + if (unlikely(err)) + goto out; + + if (!ino) { + ino = au_xino_new_ino(sb); + if (unlikely(!ino)) { + inode = ERR_PTR(-EIO); + goto out; + } + } + + AuDbg("i%lu\n", (unsigned long)ino); + inode = au_iget_locked(sb, ino); + err = PTR_ERR(inode); + if (IS_ERR(inode)) + goto out; + + AuDbg("%lx, new %d\n", inode->i_state, !!(inode->i_state & I_NEW)); + if (inode->i_state & I_NEW) { + ii_write_lock_new_child(inode); + err = set_inode(inode, dentry); + if (!err) { + unlock_new_inode(inode); + goto out; /* success */ + } + + /* + * iget_failed() calls iput(), but we need to call + * ii_write_unlock() after iget_failed(). so dirty hack for + * i_count. + */ + atomic_inc(&inode->i_count); + iget_failed(inode); + ii_write_unlock(inode); + au_xino_write(sb, btop, h_ino, /*ino*/0); + /* ignore this error */ + goto out_iput; + } else if (!must_new && !IS_DEADDIR(inode) && inode->i_nlink) { + /* + * horrible race condition between lookup, readdir and copyup + * (or something). + */ + if (mtx) + mutex_unlock(mtx); + err = reval_inode(inode, dentry); + if (unlikely(err < 0)) { + mtx = NULL; + goto out_iput; + } + + if (!err) { + mtx = NULL; + goto out; /* success */ + } else if (mtx) + mutex_lock(mtx); + } + + if (unlikely(au_test_fs_unique_ino(h_inode))) + AuWarn1("Warning: Un-notified UDBA or repeatedly renamed dir," + " b%d, %s, %pd, hi%lu, i%lu.\n", + btop, au_sbtype(h_dentry->d_sb), dentry, + (unsigned long)h_ino, (unsigned long)ino); + ino = 0; + err = au_xino_write(sb, btop, h_ino, /*ino*/0); + if (!err) { + iput(inode); + if (mtx) + mutex_unlock(mtx); + goto new_ino; + } + +out_iput: + iput(inode); + inode = ERR_PTR(err); +out: + if (mtx) + mutex_unlock(mtx); + return inode; +} + +/* ---------------------------------------------------------------------- */ + +int au_test_ro(struct super_block *sb, aufs_bindex_t bindex, + struct inode *inode) +{ + int err; + struct inode *hi; + + err = au_br_rdonly(au_sbr(sb, bindex)); + + /* pseudo-link after flushed may happen out of bounds */ + if (!err + && inode + && au_ibtop(inode) <= bindex + && bindex <= au_ibbot(inode)) { + /* + * permission check is unnecessary since vfsub routine + * will be called later + */ + hi = au_h_iptr(inode, bindex); + if (hi) + err = IS_IMMUTABLE(hi) ? -EROFS : 0; + } + + return err; +} + +int au_test_h_perm(struct inode *h_inode, int mask) +{ + if (uid_eq(current_fsuid(), GLOBAL_ROOT_UID)) + return 0; + return inode_permission(h_inode, mask); +} + +int au_test_h_perm_sio(struct inode *h_inode, int mask) +{ + if (au_test_nfs(h_inode->i_sb) + && (mask & MAY_WRITE) + && S_ISDIR(h_inode->i_mode)) + mask |= MAY_READ; /* force permission check */ + return au_test_h_perm(h_inode, mask); +} --- linux-4.8.0.orig/fs/aufs/inode.h +++ linux-4.8.0/fs/aufs/inode.h @@ -0,0 +1,700 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * inode operations + */ + +#ifndef __AUFS_INODE_H__ +#define __AUFS_INODE_H__ + +#ifdef __KERNEL__ + +#include +#include "rwsem.h" + +struct vfsmount; + +struct au_hnotify { +#ifdef CONFIG_AUFS_HNOTIFY +#ifdef CONFIG_AUFS_HFSNOTIFY + /* never use fsnotify_add_vfsmount_mark() */ + struct fsnotify_mark hn_mark; +#endif + union { + struct inode *hn_aufs_inode; /* no get/put */ + struct llist_node hn_lnode; /* delayed free */ + }; +#endif +} ____cacheline_aligned_in_smp; + +struct au_hinode { + struct inode *hi_inode; + aufs_bindex_t hi_id; +#ifdef CONFIG_AUFS_HNOTIFY + struct au_hnotify *hi_notify; +#endif + + /* reference to the copied-up whiteout with get/put */ + struct dentry *hi_whdentry; +}; + +/* ig_flags */ +#define AuIG_HALF_REFRESHED 1 +#define au_ig_ftest(flags, name) ((flags) & AuIG_##name) +#define au_ig_fset(flags, name) \ + do { (flags) |= AuIG_##name; } while (0) +#define au_ig_fclr(flags, name) \ + do { (flags) &= ~AuIG_##name; } while (0) + +struct au_iigen { + spinlock_t ig_spin; + __u32 ig_generation, ig_flags; +}; + +struct au_vdir; +struct au_iinfo { + struct au_iigen ii_generation; + struct super_block *ii_hsb1; /* no get/put */ + + struct au_rwsem ii_rwsem; + aufs_bindex_t ii_btop, ii_bbot; + __u32 ii_higen; + struct au_hinode *ii_hinode; + struct au_vdir *ii_vdir; +}; + +struct au_icntnr { + struct au_iinfo iinfo; + struct inode vfs_inode; + union { + struct hlist_node plink; + struct llist_node lnode; /* delayed free */ + }; +} ____cacheline_aligned_in_smp; + +/* au_pin flags */ +#define AuPin_DI_LOCKED 1 +#define AuPin_MNT_WRITE (1 << 1) +#define au_ftest_pin(flags, name) ((flags) & AuPin_##name) +#define au_fset_pin(flags, name) \ + do { (flags) |= AuPin_##name; } while (0) +#define au_fclr_pin(flags, name) \ + do { (flags) &= ~AuPin_##name; } while (0) + +struct au_pin { + /* input */ + struct dentry *dentry; + unsigned int udba; + unsigned char lsc_di, lsc_hi, flags; + aufs_bindex_t bindex; + + /* output */ + struct dentry *parent; + struct au_hinode *hdir; + struct vfsmount *h_mnt; + + /* temporary unlock/relock for copyup */ + struct dentry *h_dentry, *h_parent; + struct au_branch *br; + struct task_struct *task; +}; + +void au_pin_hdir_unlock(struct au_pin *p); +int au_pin_hdir_lock(struct au_pin *p); +int au_pin_hdir_relock(struct au_pin *p); +void au_pin_hdir_acquire_nest(struct au_pin *p); +void au_pin_hdir_release(struct au_pin *p); + +/* ---------------------------------------------------------------------- */ + +static inline struct au_iinfo *au_ii(struct inode *inode) +{ + BUG_ON(is_bad_inode(inode)); + return &(container_of(inode, struct au_icntnr, vfs_inode)->iinfo); +} + +/* ---------------------------------------------------------------------- */ + +/* inode.c */ +struct inode *au_igrab(struct inode *inode); +void au_refresh_iop(struct inode *inode, int force_getattr); +int au_refresh_hinode_self(struct inode *inode); +int au_refresh_hinode(struct inode *inode, struct dentry *dentry); +int au_ino(struct super_block *sb, aufs_bindex_t bindex, ino_t h_ino, + unsigned int d_type, ino_t *ino); +struct inode *au_new_inode(struct dentry *dentry, int must_new); +int au_test_ro(struct super_block *sb, aufs_bindex_t bindex, + struct inode *inode); +int au_test_h_perm(struct inode *h_inode, int mask); +int au_test_h_perm_sio(struct inode *h_inode, int mask); + +static inline int au_wh_ino(struct super_block *sb, aufs_bindex_t bindex, + ino_t h_ino, unsigned int d_type, ino_t *ino) +{ +#ifdef CONFIG_AUFS_SHWH + return au_ino(sb, bindex, h_ino, d_type, ino); +#else + return 0; +#endif +} + +/* i_op.c */ +enum { + AuIop_SYMLINK, + AuIop_DIR, + AuIop_OTHER, + AuIop_Last +}; +extern struct inode_operations aufs_iop[AuIop_Last], + aufs_iop_nogetattr[AuIop_Last]; + +/* au_wr_dir flags */ +#define AuWrDir_ADD_ENTRY 1 +#define AuWrDir_ISDIR (1 << 1) +#define AuWrDir_TMPFILE (1 << 2) +#define au_ftest_wrdir(flags, name) ((flags) & AuWrDir_##name) +#define au_fset_wrdir(flags, name) \ + do { (flags) |= AuWrDir_##name; } while (0) +#define au_fclr_wrdir(flags, name) \ + do { (flags) &= ~AuWrDir_##name; } while (0) + +struct au_wr_dir_args { + aufs_bindex_t force_btgt; + unsigned char flags; +}; +int au_wr_dir(struct dentry *dentry, struct dentry *src_dentry, + struct au_wr_dir_args *args); + +struct dentry *au_pinned_h_parent(struct au_pin *pin); +void au_pin_init(struct au_pin *pin, struct dentry *dentry, + aufs_bindex_t bindex, int lsc_di, int lsc_hi, + unsigned int udba, unsigned char flags); +int au_pin(struct au_pin *pin, struct dentry *dentry, aufs_bindex_t bindex, + unsigned int udba, unsigned char flags) __must_check; +int au_do_pin(struct au_pin *pin) __must_check; +void au_unpin(struct au_pin *pin); +int au_reval_for_attr(struct dentry *dentry, unsigned int sigen); + +#define AuIcpup_DID_CPUP 1 +#define au_ftest_icpup(flags, name) ((flags) & AuIcpup_##name) +#define au_fset_icpup(flags, name) \ + do { (flags) |= AuIcpup_##name; } while (0) +#define au_fclr_icpup(flags, name) \ + do { (flags) &= ~AuIcpup_##name; } while (0) + +struct au_icpup_args { + unsigned char flags; + unsigned char pin_flags; + aufs_bindex_t btgt; + unsigned int udba; + struct au_pin pin; + struct path h_path; + struct inode *h_inode; +}; + +int au_pin_and_icpup(struct dentry *dentry, struct iattr *ia, + struct au_icpup_args *a); + +int au_h_path_getattr(struct dentry *dentry, int force, struct path *h_path); + +/* i_op_add.c */ +int au_may_add(struct dentry *dentry, aufs_bindex_t bindex, + struct dentry *h_parent, int isdir); +int aufs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, + dev_t dev); +int aufs_symlink(struct inode *dir, struct dentry *dentry, const char *symname); +int aufs_create(struct inode *dir, struct dentry *dentry, umode_t mode, + bool want_excl); +struct vfsub_aopen_args; +int au_aopen_or_create(struct inode *dir, struct dentry *dentry, + struct vfsub_aopen_args *args); +int aufs_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode); +int aufs_link(struct dentry *src_dentry, struct inode *dir, + struct dentry *dentry); +int aufs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode); + +/* i_op_del.c */ +int au_wr_dir_need_wh(struct dentry *dentry, int isdir, aufs_bindex_t *bcpup); +int au_may_del(struct dentry *dentry, aufs_bindex_t bindex, + struct dentry *h_parent, int isdir); +int aufs_unlink(struct inode *dir, struct dentry *dentry); +int aufs_rmdir(struct inode *dir, struct dentry *dentry); + +/* i_op_ren.c */ +int au_wbr(struct dentry *dentry, aufs_bindex_t btgt); +int aufs_rename(struct inode *src_dir, struct dentry *src_dentry, + struct inode *dir, struct dentry *dentry); + +/* iinfo.c */ +struct inode *au_h_iptr(struct inode *inode, aufs_bindex_t bindex); +void au_hiput(struct au_hinode *hinode); +void au_set_hi_wh(struct inode *inode, aufs_bindex_t bindex, + struct dentry *h_wh); +unsigned int au_hi_flags(struct inode *inode, int isdir); + +/* hinode flags */ +#define AuHi_XINO 1 +#define AuHi_HNOTIFY (1 << 1) +#define au_ftest_hi(flags, name) ((flags) & AuHi_##name) +#define au_fset_hi(flags, name) \ + do { (flags) |= AuHi_##name; } while (0) +#define au_fclr_hi(flags, name) \ + do { (flags) &= ~AuHi_##name; } while (0) + +#ifndef CONFIG_AUFS_HNOTIFY +#undef AuHi_HNOTIFY +#define AuHi_HNOTIFY 0 +#endif + +void au_set_h_iptr(struct inode *inode, aufs_bindex_t bindex, + struct inode *h_inode, unsigned int flags); + +void au_update_iigen(struct inode *inode, int half); +void au_update_ibrange(struct inode *inode, int do_put_zero); + +void au_icntnr_init_once(void *_c); +void au_hinode_init(struct au_hinode *hinode); +int au_iinfo_init(struct inode *inode); +void au_iinfo_fin(struct inode *inode); +int au_hinode_realloc(struct au_iinfo *iinfo, int nbr, int may_shrink); + +#ifdef CONFIG_PROC_FS +/* plink.c */ +int au_plink_maint(struct super_block *sb, int flags); +struct au_sbinfo; +void au_plink_maint_leave(struct au_sbinfo *sbinfo); +int au_plink_maint_enter(struct super_block *sb); +#ifdef CONFIG_AUFS_DEBUG +void au_plink_list(struct super_block *sb); +#else +AuStubVoid(au_plink_list, struct super_block *sb) +#endif +int au_plink_test(struct inode *inode); +struct dentry *au_plink_lkup(struct inode *inode, aufs_bindex_t bindex); +void au_plink_append(struct inode *inode, aufs_bindex_t bindex, + struct dentry *h_dentry); +void au_plink_put(struct super_block *sb, int verbose); +void au_plink_clean(struct super_block *sb, int verbose); +void au_plink_half_refresh(struct super_block *sb, aufs_bindex_t br_id); +#else +AuStubInt0(au_plink_maint, struct super_block *sb, int flags); +AuStubVoid(au_plink_maint_leave, struct au_sbinfo *sbinfo); +AuStubInt0(au_plink_maint_enter, struct super_block *sb); +AuStubVoid(au_plink_list, struct super_block *sb); +AuStubInt0(au_plink_test, struct inode *inode); +AuStub(struct dentry *, au_plink_lkup, return NULL, + struct inode *inode, aufs_bindex_t bindex); +AuStubVoid(au_plink_append, struct inode *inode, aufs_bindex_t bindex, + struct dentry *h_dentry); +AuStubVoid(au_plink_put, struct super_block *sb, int verbose); +AuStubVoid(au_plink_clean, struct super_block *sb, int verbose); +AuStubVoid(au_plink_half_refresh, struct super_block *sb, aufs_bindex_t br_id); +#endif /* CONFIG_PROC_FS */ + +#ifdef CONFIG_AUFS_XATTR +/* xattr.c */ +int au_cpup_xattr(struct dentry *h_dst, struct dentry *h_src, int ignore_flags, + unsigned int verbose); +ssize_t aufs_listxattr(struct dentry *dentry, char *list, size_t size); +ssize_t aufs_getxattr(struct dentry *dentry, struct inode *inode, + const char *name, void *value, size_t size); +int aufs_setxattr(struct dentry *dentry, struct inode *inode, const char *name, + const void *value, size_t size, int flags); +int aufs_removexattr(struct dentry *dentry, const char *name); + +/* void au_xattr_init(struct super_block *sb); */ +#else +AuStubInt0(au_cpup_xattr, struct dentry *h_dst, struct dentry *h_src, + int ignore_flags, unsigned int verbose); +/* AuStubVoid(au_xattr_init, struct super_block *sb); */ +#endif + +#ifdef CONFIG_FS_POSIX_ACL +struct posix_acl *aufs_get_acl(struct inode *inode, int type); +int aufs_set_acl(struct inode *inode, struct posix_acl *acl, int type); +#endif + +#if IS_ENABLED(CONFIG_AUFS_XATTR) || IS_ENABLED(CONFIG_FS_POSIX_ACL) +enum { + AU_XATTR_SET, + AU_XATTR_REMOVE, + AU_ACL_SET +}; + +struct au_srxattr { + int type; + union { + struct { + const char *name; + const void *value; + size_t size; + int flags; + } set; + struct { + const char *name; + } remove; + struct { + struct posix_acl *acl; + int type; + } acl_set; + } u; +}; +ssize_t au_srxattr(struct dentry *dentry, struct inode *inode, + struct au_srxattr *arg); +#endif + +/* ---------------------------------------------------------------------- */ + +/* lock subclass for iinfo */ +enum { + AuLsc_II_CHILD, /* child first */ + AuLsc_II_CHILD2, /* rename(2), link(2), and cpup at hnotify */ + AuLsc_II_CHILD3, /* copyup dirs */ + AuLsc_II_PARENT, /* see AuLsc_I_PARENT in vfsub.h */ + AuLsc_II_PARENT2, + AuLsc_II_PARENT3, /* copyup dirs */ + AuLsc_II_NEW_CHILD +}; + +/* + * ii_read_lock_child, ii_write_lock_child, + * ii_read_lock_child2, ii_write_lock_child2, + * ii_read_lock_child3, ii_write_lock_child3, + * ii_read_lock_parent, ii_write_lock_parent, + * ii_read_lock_parent2, ii_write_lock_parent2, + * ii_read_lock_parent3, ii_write_lock_parent3, + * ii_read_lock_new_child, ii_write_lock_new_child, + */ +#define AuReadLockFunc(name, lsc) \ +static inline void ii_read_lock_##name(struct inode *i) \ +{ \ + au_rw_read_lock_nested(&au_ii(i)->ii_rwsem, AuLsc_II_##lsc); \ +} + +#define AuWriteLockFunc(name, lsc) \ +static inline void ii_write_lock_##name(struct inode *i) \ +{ \ + au_rw_write_lock_nested(&au_ii(i)->ii_rwsem, AuLsc_II_##lsc); \ +} + +#define AuRWLockFuncs(name, lsc) \ + AuReadLockFunc(name, lsc) \ + AuWriteLockFunc(name, lsc) + +AuRWLockFuncs(child, CHILD); +AuRWLockFuncs(child2, CHILD2); +AuRWLockFuncs(child3, CHILD3); +AuRWLockFuncs(parent, PARENT); +AuRWLockFuncs(parent2, PARENT2); +AuRWLockFuncs(parent3, PARENT3); +AuRWLockFuncs(new_child, NEW_CHILD); + +#undef AuReadLockFunc +#undef AuWriteLockFunc +#undef AuRWLockFuncs + +/* + * ii_read_unlock, ii_write_unlock, ii_downgrade_lock + */ +AuSimpleUnlockRwsemFuncs(ii, struct inode *i, &au_ii(i)->ii_rwsem); + +#define IiMustNoWaiters(i) AuRwMustNoWaiters(&au_ii(i)->ii_rwsem) +#define IiMustAnyLock(i) AuRwMustAnyLock(&au_ii(i)->ii_rwsem) +#define IiMustWriteLock(i) AuRwMustWriteLock(&au_ii(i)->ii_rwsem) + +/* ---------------------------------------------------------------------- */ + +static inline void au_icntnr_init(struct au_icntnr *c) +{ +#ifdef CONFIG_AUFS_DEBUG + c->vfs_inode.i_mode = 0; +#endif +} + +static inline unsigned int au_iigen(struct inode *inode, unsigned int *igflags) +{ + unsigned int gen; + struct au_iinfo *iinfo; + struct au_iigen *iigen; + + iinfo = au_ii(inode); + iigen = &iinfo->ii_generation; + spin_lock(&iigen->ig_spin); + if (igflags) + *igflags = iigen->ig_flags; + gen = iigen->ig_generation; + spin_unlock(&iigen->ig_spin); + + return gen; +} + +/* tiny test for inode number */ +/* tmpfs generation is too rough */ +static inline int au_test_higen(struct inode *inode, struct inode *h_inode) +{ + struct au_iinfo *iinfo; + + iinfo = au_ii(inode); + AuRwMustAnyLock(&iinfo->ii_rwsem); + return !(iinfo->ii_hsb1 == h_inode->i_sb + && iinfo->ii_higen == h_inode->i_generation); +} + +static inline void au_iigen_dec(struct inode *inode) +{ + struct au_iinfo *iinfo; + struct au_iigen *iigen; + + iinfo = au_ii(inode); + iigen = &iinfo->ii_generation; + spin_lock(&iigen->ig_spin); + iigen->ig_generation--; + spin_unlock(&iigen->ig_spin); +} + +static inline int au_iigen_test(struct inode *inode, unsigned int sigen) +{ + int err; + + err = 0; + if (unlikely(inode && au_iigen(inode, NULL) != sigen)) + err = -EIO; + + return err; +} + +/* ---------------------------------------------------------------------- */ + +static inline struct au_hinode *au_hinode(struct au_iinfo *iinfo, + aufs_bindex_t bindex) +{ + return iinfo->ii_hinode + bindex; +} + +static inline int au_is_bad_inode(struct inode *inode) +{ + return !!(is_bad_inode(inode) || !au_hinode(au_ii(inode), 0)); +} + +static inline aufs_bindex_t au_ii_br_id(struct inode *inode, + aufs_bindex_t bindex) +{ + IiMustAnyLock(inode); + return au_hinode(au_ii(inode), bindex)->hi_id; +} + +static inline aufs_bindex_t au_ibtop(struct inode *inode) +{ + IiMustAnyLock(inode); + return au_ii(inode)->ii_btop; +} + +static inline aufs_bindex_t au_ibbot(struct inode *inode) +{ + IiMustAnyLock(inode); + return au_ii(inode)->ii_bbot; +} + +static inline struct au_vdir *au_ivdir(struct inode *inode) +{ + IiMustAnyLock(inode); + return au_ii(inode)->ii_vdir; +} + +static inline struct dentry *au_hi_wh(struct inode *inode, aufs_bindex_t bindex) +{ + IiMustAnyLock(inode); + return au_hinode(au_ii(inode), bindex)->hi_whdentry; +} + +static inline void au_set_ibtop(struct inode *inode, aufs_bindex_t bindex) +{ + IiMustWriteLock(inode); + au_ii(inode)->ii_btop = bindex; +} + +static inline void au_set_ibbot(struct inode *inode, aufs_bindex_t bindex) +{ + IiMustWriteLock(inode); + au_ii(inode)->ii_bbot = bindex; +} + +static inline void au_set_ivdir(struct inode *inode, struct au_vdir *vdir) +{ + IiMustWriteLock(inode); + au_ii(inode)->ii_vdir = vdir; +} + +static inline struct au_hinode *au_hi(struct inode *inode, aufs_bindex_t bindex) +{ + IiMustAnyLock(inode); + return au_hinode(au_ii(inode), bindex); +} + +/* ---------------------------------------------------------------------- */ + +static inline struct dentry *au_pinned_parent(struct au_pin *pin) +{ + if (pin) + return pin->parent; + return NULL; +} + +static inline struct inode *au_pinned_h_dir(struct au_pin *pin) +{ + if (pin && pin->hdir) + return pin->hdir->hi_inode; + return NULL; +} + +static inline struct au_hinode *au_pinned_hdir(struct au_pin *pin) +{ + if (pin) + return pin->hdir; + return NULL; +} + +static inline void au_pin_set_dentry(struct au_pin *pin, struct dentry *dentry) +{ + if (pin) + pin->dentry = dentry; +} + +static inline void au_pin_set_parent_lflag(struct au_pin *pin, + unsigned char lflag) +{ + if (pin) { + if (lflag) + au_fset_pin(pin->flags, DI_LOCKED); + else + au_fclr_pin(pin->flags, DI_LOCKED); + } +} + +#if 0 /* reserved */ +static inline void au_pin_set_parent(struct au_pin *pin, struct dentry *parent) +{ + if (pin) { + dput(pin->parent); + pin->parent = dget(parent); + } +} +#endif + +/* ---------------------------------------------------------------------- */ + +struct au_branch; +#ifdef CONFIG_AUFS_HNOTIFY +struct au_hnotify_op { + void (*ctl)(struct au_hinode *hinode, int do_set); + int (*alloc)(struct au_hinode *hinode); + + /* + * if it returns true, the the caller should free hinode->hi_notify, + * otherwise ->free() frees it. + */ + int (*free)(struct au_hinode *hinode, + struct au_hnotify *hn) __must_check; + + void (*fin)(void); + int (*init)(void); + + int (*reset_br)(unsigned int udba, struct au_branch *br, int perm); + void (*fin_br)(struct au_branch *br); + int (*init_br)(struct au_branch *br, int perm); +}; + +/* hnotify.c */ +int au_hn_alloc(struct au_hinode *hinode, struct inode *inode); +void au_hn_free(struct au_hinode *hinode); +void au_hn_ctl(struct au_hinode *hinode, int do_set); +void au_hn_reset(struct inode *inode, unsigned int flags); +int au_hnotify(struct inode *h_dir, struct au_hnotify *hnotify, u32 mask, + struct qstr *h_child_qstr, struct inode *h_child_inode); +int au_hnotify_reset_br(unsigned int udba, struct au_branch *br, int perm); +int au_hnotify_init_br(struct au_branch *br, int perm); +void au_hnotify_fin_br(struct au_branch *br); +int __init au_hnotify_init(void); +void au_hnotify_fin(void); + +/* hfsnotify.c */ +extern const struct au_hnotify_op au_hnotify_op; + +static inline +void au_hn_init(struct au_hinode *hinode) +{ + hinode->hi_notify = NULL; +} + +static inline struct au_hnotify *au_hn(struct au_hinode *hinode) +{ + return hinode->hi_notify; +} + +#else +AuStub(int, au_hn_alloc, return -EOPNOTSUPP, + struct au_hinode *hinode __maybe_unused, + struct inode *inode __maybe_unused) +AuStub(struct au_hnotify *, au_hn, return NULL, struct au_hinode *hinode) +AuStubVoid(au_hn_free, struct au_hinode *hinode __maybe_unused) +AuStubVoid(au_hn_ctl, struct au_hinode *hinode __maybe_unused, + int do_set __maybe_unused) +AuStubVoid(au_hn_reset, struct inode *inode __maybe_unused, + unsigned int flags __maybe_unused) +AuStubInt0(au_hnotify_reset_br, unsigned int udba __maybe_unused, + struct au_branch *br __maybe_unused, + int perm __maybe_unused) +AuStubInt0(au_hnotify_init_br, struct au_branch *br __maybe_unused, + int perm __maybe_unused) +AuStubVoid(au_hnotify_fin_br, struct au_branch *br __maybe_unused) +AuStubInt0(__init au_hnotify_init, void) +AuStubVoid(au_hnotify_fin, void) +AuStubVoid(au_hn_init, struct au_hinode *hinode __maybe_unused) +#endif /* CONFIG_AUFS_HNOTIFY */ + +static inline void au_hn_suspend(struct au_hinode *hdir) +{ + au_hn_ctl(hdir, /*do_set*/0); +} + +static inline void au_hn_resume(struct au_hinode *hdir) +{ + au_hn_ctl(hdir, /*do_set*/1); +} + +static inline void au_hn_inode_lock(struct au_hinode *hdir) +{ + inode_lock(hdir->hi_inode); + au_hn_suspend(hdir); +} + +static inline void au_hn_inode_lock_nested(struct au_hinode *hdir, + unsigned int sc __maybe_unused) +{ + inode_lock_nested(hdir->hi_inode, sc); + au_hn_suspend(hdir); +} + +static inline void au_hn_inode_unlock(struct au_hinode *hdir) +{ + au_hn_resume(hdir); + inode_unlock(hdir->hi_inode); +} + +#endif /* __KERNEL__ */ +#endif /* __AUFS_INODE_H__ */ --- linux-4.8.0.orig/fs/aufs/ioctl.c +++ linux-4.8.0/fs/aufs/ioctl.c @@ -0,0 +1,219 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * ioctl + * plink-management and readdir in userspace. + * assist the pathconf(3) wrapper library. + * move-down + * File-based Hierarchical Storage Management. + */ + +#include +#include +#include "aufs.h" + +static int au_wbr_fd(struct path *path, struct aufs_wbr_fd __user *arg) +{ + int err, fd; + aufs_bindex_t wbi, bindex, bbot; + struct file *h_file; + struct super_block *sb; + struct dentry *root; + struct au_branch *br; + struct aufs_wbr_fd wbrfd = { + .oflags = au_dir_roflags, + .brid = -1 + }; + const int valid = O_RDONLY | O_NONBLOCK | O_LARGEFILE | O_DIRECTORY + | O_NOATIME | O_CLOEXEC; + + AuDebugOn(wbrfd.oflags & ~valid); + + if (arg) { + err = copy_from_user(&wbrfd, arg, sizeof(wbrfd)); + if (unlikely(err)) { + err = -EFAULT; + goto out; + } + + err = -EINVAL; + AuDbg("wbrfd{0%o, %d}\n", wbrfd.oflags, wbrfd.brid); + wbrfd.oflags |= au_dir_roflags; + AuDbg("0%o\n", wbrfd.oflags); + if (unlikely(wbrfd.oflags & ~valid)) + goto out; + } + + fd = get_unused_fd_flags(0); + err = fd; + if (unlikely(fd < 0)) + goto out; + + h_file = ERR_PTR(-EINVAL); + wbi = 0; + br = NULL; + sb = path->dentry->d_sb; + root = sb->s_root; + aufs_read_lock(root, AuLock_IR); + bbot = au_sbbot(sb); + if (wbrfd.brid >= 0) { + wbi = au_br_index(sb, wbrfd.brid); + if (unlikely(wbi < 0 || wbi > bbot)) + goto out_unlock; + } + + h_file = ERR_PTR(-ENOENT); + br = au_sbr(sb, wbi); + if (!au_br_writable(br->br_perm)) { + if (arg) + goto out_unlock; + + bindex = wbi + 1; + wbi = -1; + for (; bindex <= bbot; bindex++) { + br = au_sbr(sb, bindex); + if (au_br_writable(br->br_perm)) { + wbi = bindex; + br = au_sbr(sb, wbi); + break; + } + } + } + AuDbg("wbi %d\n", wbi); + if (wbi >= 0) + h_file = au_h_open(root, wbi, wbrfd.oflags, NULL, + /*force_wr*/0); + +out_unlock: + aufs_read_unlock(root, AuLock_IR); + err = PTR_ERR(h_file); + if (IS_ERR(h_file)) + goto out_fd; + + au_br_put(br); /* cf. au_h_open() */ + fd_install(fd, h_file); + err = fd; + goto out; /* success */ + +out_fd: + put_unused_fd(fd); +out: + AuTraceErr(err); + return err; +} + +/* ---------------------------------------------------------------------- */ + +long aufs_ioctl_dir(struct file *file, unsigned int cmd, unsigned long arg) +{ + long err; + struct dentry *dentry; + + switch (cmd) { + case AUFS_CTL_RDU: + case AUFS_CTL_RDU_INO: + err = au_rdu_ioctl(file, cmd, arg); + break; + + case AUFS_CTL_WBR_FD: + err = au_wbr_fd(&file->f_path, (void __user *)arg); + break; + + case AUFS_CTL_IBUSY: + err = au_ibusy_ioctl(file, arg); + break; + + case AUFS_CTL_BRINFO: + err = au_brinfo_ioctl(file, arg); + break; + + case AUFS_CTL_FHSM_FD: + dentry = file->f_path.dentry; + if (IS_ROOT(dentry)) + err = au_fhsm_fd(dentry->d_sb, arg); + else + err = -ENOTTY; + break; + + default: + /* do not call the lower */ + AuDbg("0x%x\n", cmd); + err = -ENOTTY; + } + + AuTraceErr(err); + return err; +} + +long aufs_ioctl_nondir(struct file *file, unsigned int cmd, unsigned long arg) +{ + long err; + + switch (cmd) { + case AUFS_CTL_MVDOWN: + err = au_mvdown(file->f_path.dentry, (void __user *)arg); + break; + + case AUFS_CTL_WBR_FD: + err = au_wbr_fd(&file->f_path, (void __user *)arg); + break; + + default: + /* do not call the lower */ + AuDbg("0x%x\n", cmd); + err = -ENOTTY; + } + + AuTraceErr(err); + return err; +} + +#ifdef CONFIG_COMPAT +long aufs_compat_ioctl_dir(struct file *file, unsigned int cmd, + unsigned long arg) +{ + long err; + + switch (cmd) { + case AUFS_CTL_RDU: + case AUFS_CTL_RDU_INO: + err = au_rdu_compat_ioctl(file, cmd, arg); + break; + + case AUFS_CTL_IBUSY: + err = au_ibusy_compat_ioctl(file, arg); + break; + + case AUFS_CTL_BRINFO: + err = au_brinfo_compat_ioctl(file, arg); + break; + + default: + err = aufs_ioctl_dir(file, cmd, arg); + } + + AuTraceErr(err); + return err; +} + +long aufs_compat_ioctl_nondir(struct file *file, unsigned int cmd, + unsigned long arg) +{ + return aufs_ioctl_nondir(file, cmd, (unsigned long)compat_ptr(arg)); +} +#endif --- linux-4.8.0.orig/fs/aufs/loop.c +++ linux-4.8.0/fs/aufs/loop.c @@ -0,0 +1,163 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * support for loopback block device as a branch + */ + +#include "aufs.h" + +/* added into drivers/block/loop.c */ +static struct file *(*backing_file_func)(struct super_block *sb); + +/* + * test if two lower dentries have overlapping branches. + */ +int au_test_loopback_overlap(struct super_block *sb, struct dentry *h_adding) +{ + struct super_block *h_sb; + struct file *backing_file; + + if (unlikely(!backing_file_func)) { + /* don't load "loop" module here */ + backing_file_func = symbol_get(loop_backing_file); + if (unlikely(!backing_file_func)) + /* "loop" module is not loaded */ + return 0; + } + + h_sb = h_adding->d_sb; + backing_file = backing_file_func(h_sb); + if (!backing_file) + return 0; + + h_adding = backing_file->f_path.dentry; + /* + * h_adding can be local NFS. + * in this case aufs cannot detect the loop. + */ + if (unlikely(h_adding->d_sb == sb)) + return 1; + return !!au_test_subdir(h_adding, sb->s_root); +} + +/* true if a kernel thread named 'loop[0-9].*' accesses a file */ +int au_test_loopback_kthread(void) +{ + int ret; + struct task_struct *tsk = current; + char c, comm[sizeof(tsk->comm)]; + + ret = 0; + if (tsk->flags & PF_KTHREAD) { + get_task_comm(comm, tsk); + c = comm[4]; + ret = ('0' <= c && c <= '9' + && !strncmp(comm, "loop", 4)); + } + + return ret; +} + +/* ---------------------------------------------------------------------- */ + +#define au_warn_loopback_step 16 +static int au_warn_loopback_nelem = au_warn_loopback_step; +static unsigned long *au_warn_loopback_array; + +void au_warn_loopback(struct super_block *h_sb) +{ + int i, new_nelem; + unsigned long *a, magic; + static DEFINE_SPINLOCK(spin); + + magic = h_sb->s_magic; + spin_lock(&spin); + a = au_warn_loopback_array; + for (i = 0; i < au_warn_loopback_nelem && *a; i++) + if (a[i] == magic) { + spin_unlock(&spin); + return; + } + + /* h_sb is new to us, print it */ + if (i < au_warn_loopback_nelem) { + a[i] = magic; + goto pr; + } + + /* expand the array */ + new_nelem = au_warn_loopback_nelem + au_warn_loopback_step; + a = au_kzrealloc(au_warn_loopback_array, + au_warn_loopback_nelem * sizeof(unsigned long), + new_nelem * sizeof(unsigned long), GFP_ATOMIC, + /*may_shrink*/0); + if (a) { + au_warn_loopback_nelem = new_nelem; + au_warn_loopback_array = a; + a[i] = magic; + goto pr; + } + + spin_unlock(&spin); + AuWarn1("realloc failed, ignored\n"); + return; + +pr: + spin_unlock(&spin); + pr_warn("you may want to try another patch for loopback file " + "on %s(0x%lx) branch\n", au_sbtype(h_sb), magic); +} + +int au_loopback_init(void) +{ + int err; + struct super_block *sb __maybe_unused; + + BUILD_BUG_ON(sizeof(sb->s_magic) != sizeof(unsigned long)); + + err = 0; + au_warn_loopback_array = kcalloc(au_warn_loopback_step, + sizeof(unsigned long), GFP_NOFS); + if (unlikely(!au_warn_loopback_array)) + err = -ENOMEM; + + return err; +} + +void au_loopback_fin(void) +{ + if (backing_file_func) + symbol_put(loop_backing_file); + au_delayed_kfree(au_warn_loopback_array); +} + +/* ---------------------------------------------------------------------- */ + +/* support the loopback block device insude aufs */ + +struct file *aufs_real_loop(struct file *file) +{ + struct file *f; + + BUG_ON(!au_test_aufs(file->f_path.dentry->d_sb)); + fi_read_lock(file); + f = au_hf_top(file); + fi_read_unlock(file); + AuDebugOn(!f); + return f; +} --- linux-4.8.0.orig/fs/aufs/loop.h +++ linux-4.8.0/fs/aufs/loop.h @@ -0,0 +1,58 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * support for loopback mount as a branch + */ + +#ifndef __AUFS_LOOP_H__ +#define __AUFS_LOOP_H__ + +#ifdef __KERNEL__ + +struct dentry; +struct super_block; + +#ifdef CONFIG_AUFS_BDEV_LOOP +/* drivers/block/loop.c */ +struct file *loop_backing_file(struct super_block *sb); + +/* loop.c */ +int au_test_loopback_overlap(struct super_block *sb, struct dentry *h_adding); +int au_test_loopback_kthread(void); +void au_warn_loopback(struct super_block *h_sb); + +int au_loopback_init(void); +void au_loopback_fin(void); + +struct file *aufs_real_loop(struct file *file); +#else +AuStub(struct file *, loop_backing_file, return NULL) + +AuStubInt0(au_test_loopback_overlap, struct super_block *sb, + struct dentry *h_adding) +AuStubInt0(au_test_loopback_kthread, void) +AuStubVoid(au_warn_loopback, struct super_block *h_sb) + +AuStubInt0(au_loopback_init, void) +AuStubVoid(au_loopback_fin, void) + +AuStub(struct file *, aufs_real_loop, return NULL, struct file *file) +#endif /* BLK_DEV_LOOP */ + +#endif /* __KERNEL__ */ +#endif /* __AUFS_LOOP_H__ */ --- linux-4.8.0.orig/fs/aufs/magic.mk +++ linux-4.8.0/fs/aufs/magic.mk @@ -0,0 +1,30 @@ + +# defined in ${srctree}/fs/fuse/inode.c +# tristate +ifdef CONFIG_FUSE_FS +ccflags-y += -DFUSE_SUPER_MAGIC=0x65735546 +endif + +# defined in ${srctree}/fs/xfs/xfs_sb.h +# tristate +ifdef CONFIG_XFS_FS +ccflags-y += -DXFS_SB_MAGIC=0x58465342 +endif + +# defined in ${srctree}/fs/configfs/mount.c +# tristate +ifdef CONFIG_CONFIGFS_FS +ccflags-y += -DCONFIGFS_MAGIC=0x62656570 +endif + +# defined in ${srctree}/fs/ubifs/ubifs.h +# tristate +ifdef CONFIG_UBIFS_FS +ccflags-y += -DUBIFS_SUPER_MAGIC=0x24051905 +endif + +# defined in ${srctree}/fs/hfsplus/hfsplus_raw.h +# tristate +ifdef CONFIG_HFSPLUS_FS +ccflags-y += -DHFSPLUS_SUPER_MAGIC=0x482b +endif --- linux-4.8.0.orig/fs/aufs/module.c +++ linux-4.8.0/fs/aufs/module.c @@ -0,0 +1,333 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * module global variables and operations + */ + +#include +#include +#include "aufs.h" + +/* shrinkable realloc */ +void *au_krealloc(void *p, unsigned int new_sz, gfp_t gfp, int may_shrink) +{ + size_t sz; + int diff; + + sz = 0; + diff = -1; + if (p) { +#if 0 /* unused */ + if (!new_sz) { + au_delayed_kfree(p); + p = NULL; + goto out; + } +#else + AuDebugOn(!new_sz); +#endif + sz = ksize(p); + diff = au_kmidx_sub(sz, new_sz); + } + if (sz && !diff) + goto out; + + if (sz < new_sz) + /* expand or SLOB */ + p = krealloc(p, new_sz, gfp); + else if (new_sz < sz && may_shrink) { + /* shrink */ + void *q; + + q = kmalloc(new_sz, gfp); + if (q) { + if (p) { + memcpy(q, p, new_sz); + au_delayed_kfree(p); + } + p = q; + } else + p = NULL; + } + +out: + return p; +} + +void *au_kzrealloc(void *p, unsigned int nused, unsigned int new_sz, gfp_t gfp, + int may_shrink) +{ + p = au_krealloc(p, new_sz, gfp, may_shrink); + if (p && new_sz > nused) + memset(p + nused, 0, new_sz - nused); + return p; +} + +/* ---------------------------------------------------------------------- */ +/* + * aufs caches + */ + +struct au_dfree au_dfree; + +/* delayed free */ +static void au_do_dfree(struct work_struct *work __maybe_unused) +{ + struct llist_head *head; + struct llist_node *node, *next; + +#define AU_CACHE_DFREE_DO_BODY(name, idx, lnode) do { \ + head = &au_dfree.cache[AuCache_##idx].llist; \ + node = llist_del_all(head); \ + for (; node; node = next) { \ + struct au_##name *p \ + = llist_entry(node, struct au_##name, \ + lnode); \ + next = llist_next(node); \ + au_cache_free_##name(p); \ + } \ + } while (0) + + AU_CACHE_DFREE_DO_BODY(dinfo, DINFO, di_lnode); + AU_CACHE_DFREE_DO_BODY(icntnr, ICNTNR, lnode); + AU_CACHE_DFREE_DO_BODY(finfo, FINFO, fi_lnode); + AU_CACHE_DFREE_DO_BODY(vdir, VDIR, vd_lnode); + AU_CACHE_DFREE_DO_BODY(vdir_dehstr, DEHSTR, lnode); +#ifdef CONFIG_AUFS_HNOTIFY + AU_CACHE_DFREE_DO_BODY(hnotify, HNOTIFY, hn_lnode); +#endif + +#define AU_DFREE_DO_BODY(llist, func) do { \ + node = llist_del_all(llist); \ + for (; node; node = next) { \ + next = llist_next(node); \ + func(node); \ + } \ + } while (0) + + AU_DFREE_DO_BODY(au_dfree.llist + AU_DFREE_KFREE, kfree); + AU_DFREE_DO_BODY(au_dfree.llist + AU_DFREE_FREE_PAGE, au_free_page); + +#undef AU_CACHE_DFREE_DO_BODY +#undef AU_DFREE_DO_BODY +} + +AU_CACHE_DFREE_FUNC(dinfo, DINFO, di_lnode); +AU_CACHE_DFREE_FUNC(icntnr, ICNTNR, lnode); +AU_CACHE_DFREE_FUNC(finfo, FINFO, fi_lnode); +AU_CACHE_DFREE_FUNC(vdir, VDIR, vd_lnode); +AU_CACHE_DFREE_FUNC(vdir_dehstr, DEHSTR, lnode); + +static void au_cache_fin(void) +{ + int i; + struct au_cache *cp; + + /* + * Make sure all delayed rcu free inodes are flushed before we + * destroy cache. + */ + rcu_barrier(); + + /* excluding AuCache_HNOTIFY */ + BUILD_BUG_ON(AuCache_HNOTIFY + 1 != AuCache_Last); + flush_delayed_work(&au_dfree.dwork); + for (i = 0; i < AuCache_HNOTIFY; i++) { + cp = au_dfree.cache + i; + AuDebugOn(!llist_empty(&cp->llist)); + kmem_cache_destroy(cp->cache); + cp->cache = NULL; + } +} + +static int __init au_cache_init(void) +{ + struct au_cache *cp; + + cp = au_dfree.cache; + cp[AuCache_DINFO].cache = AuCacheCtor(au_dinfo, au_di_init_once); + if (cp[AuCache_DINFO].cache) + /* SLAB_DESTROY_BY_RCU */ + cp[AuCache_ICNTNR].cache = AuCacheCtor(au_icntnr, + au_icntnr_init_once); + if (cp[AuCache_ICNTNR].cache) + cp[AuCache_FINFO].cache = AuCacheCtor(au_finfo, + au_fi_init_once); + if (cp[AuCache_FINFO].cache) + cp[AuCache_VDIR].cache = AuCache(au_vdir); + if (cp[AuCache_VDIR].cache) + cp[AuCache_DEHSTR].cache = AuCache(au_vdir_dehstr); + if (cp[AuCache_DEHSTR].cache) + return 0; + + au_cache_fin(); + return -ENOMEM; +} + +/* ---------------------------------------------------------------------- */ + +int au_dir_roflags; + +#ifdef CONFIG_AUFS_SBILIST +/* + * iterate_supers_type() doesn't protect us from + * remounting (branch management) + */ +struct au_sphlhead au_sbilist; +#endif + +/* + * functions for module interface. + */ +MODULE_LICENSE("GPL"); +/* MODULE_LICENSE("GPL v2"); */ +MODULE_AUTHOR("Junjiro R. Okajima "); +MODULE_DESCRIPTION(AUFS_NAME + " -- Advanced multi layered unification filesystem"); +MODULE_VERSION(AUFS_VERSION); +MODULE_ALIAS_FS(AUFS_NAME); + +/* this module parameter has no meaning when SYSFS is disabled */ +int sysaufs_brs = 1; +MODULE_PARM_DESC(brs, "use /fs/aufs/si_*/brN"); +module_param_named(brs, sysaufs_brs, int, S_IRUGO); + +/* this module parameter has no meaning when USER_NS is disabled */ +bool au_userns; +MODULE_PARM_DESC(allow_userns, "allow unprivileged to mount under userns"); +module_param_named(allow_userns, au_userns, bool, S_IRUGO); + +/* ---------------------------------------------------------------------- */ + +static char au_esc_chars[0x20 + 3]; /* 0x01-0x20, backslash, del, and NULL */ + +int au_seq_path(struct seq_file *seq, struct path *path) +{ + int err; + + err = seq_path(seq, path, au_esc_chars); + if (err > 0) + err = 0; + else if (err < 0) + err = -ENOMEM; + + return err; +} + +/* ---------------------------------------------------------------------- */ + +static int __init aufs_init(void) +{ + int err, i; + char *p; + struct au_cache *cp; + + p = au_esc_chars; + for (i = 1; i <= ' '; i++) + *p++ = i; + *p++ = '\\'; + *p++ = '\x7f'; + *p = 0; + + au_dir_roflags = au_file_roflags(O_DIRECTORY | O_LARGEFILE); + + memcpy(aufs_iop_nogetattr, aufs_iop, sizeof(aufs_iop)); + for (i = 0; i < AuIop_Last; i++) + aufs_iop_nogetattr[i].getattr = NULL; + + /* First, initialize au_dfree */ + for (i = 0; i < AuCache_Last; i++) { /* including hnotify */ + cp = au_dfree.cache + i; + cp->cache = NULL; + init_llist_head(&cp->llist); + } + for (i = 0; i < AU_DFREE_Last; i++) + init_llist_head(au_dfree.llist + i); + INIT_DELAYED_WORK(&au_dfree.dwork, au_do_dfree); + + au_sbilist_init(); + sysaufs_brs_init(); + au_debug_init(); + au_dy_init(); + err = sysaufs_init(); + if (unlikely(err)) + goto out; + err = au_procfs_init(); + if (unlikely(err)) + goto out_sysaufs; + err = au_wkq_init(); + if (unlikely(err)) + goto out_procfs; + err = au_loopback_init(); + if (unlikely(err)) + goto out_wkq; + err = au_hnotify_init(); + if (unlikely(err)) + goto out_loopback; + err = au_sysrq_init(); + if (unlikely(err)) + goto out_hin; + err = au_cache_init(); + if (unlikely(err)) + goto out_sysrq; + + aufs_fs_type.fs_flags |= au_userns ? FS_USERNS_MOUNT : 0; + err = register_filesystem(&aufs_fs_type); + if (unlikely(err)) + goto out_cache; + + /* since we define pr_fmt, call printk directly */ + printk(KERN_INFO AUFS_NAME " " AUFS_VERSION "\n"); + goto out; /* success */ + +out_cache: + au_cache_fin(); +out_sysrq: + au_sysrq_fin(); +out_hin: + au_hnotify_fin(); +out_loopback: + au_loopback_fin(); +out_wkq: + au_wkq_fin(); +out_procfs: + au_procfs_fin(); +out_sysaufs: + sysaufs_fin(); + au_dy_fin(); + flush_delayed_work(&au_dfree.dwork); +out: + return err; +} + +static void __exit aufs_exit(void) +{ + unregister_filesystem(&aufs_fs_type); + au_cache_fin(); + au_sysrq_fin(); + au_hnotify_fin(); + au_loopback_fin(); + au_wkq_fin(); + au_procfs_fin(); + sysaufs_fin(); + au_dy_fin(); + flush_delayed_work(&au_dfree.dwork); +} + +module_init(aufs_init); +module_exit(aufs_exit); --- linux-4.8.0.orig/fs/aufs/module.h +++ linux-4.8.0/fs/aufs/module.h @@ -0,0 +1,156 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * module initialization and module-global + */ + +#ifndef __AUFS_MODULE_H__ +#define __AUFS_MODULE_H__ + +#ifdef __KERNEL__ + +#include +#include "debug.h" + +struct path; +struct seq_file; + +/* module parameters */ +extern int sysaufs_brs; +extern bool au_userns; + +/* ---------------------------------------------------------------------- */ + +extern int au_dir_roflags; + +void *au_krealloc(void *p, unsigned int new_sz, gfp_t gfp, int may_shrink); +void *au_kzrealloc(void *p, unsigned int nused, unsigned int new_sz, gfp_t gfp, + int may_shrink); + +static inline int au_kmidx_sub(size_t sz, size_t new_sz) +{ +#ifndef CONFIG_SLOB + return kmalloc_index(sz) - kmalloc_index(new_sz); +#else + return -1; /* SLOB is untested */ +#endif +} + +int au_seq_path(struct seq_file *seq, struct path *path); + +#ifdef CONFIG_PROC_FS +/* procfs.c */ +int __init au_procfs_init(void); +void au_procfs_fin(void); +#else +AuStubInt0(au_procfs_init, void); +AuStubVoid(au_procfs_fin, void); +#endif + +/* ---------------------------------------------------------------------- */ + +/* kmem cache and delayed free */ +enum { + AuCache_DINFO, + AuCache_ICNTNR, + AuCache_FINFO, + AuCache_VDIR, + AuCache_DEHSTR, + AuCache_HNOTIFY, /* must be last */ + AuCache_Last +}; + +enum { + AU_DFREE_KFREE, + AU_DFREE_FREE_PAGE, + AU_DFREE_Last +}; + +struct au_cache { + struct kmem_cache *cache; + struct llist_head llist; /* delayed free */ +}; + +/* + * in order to reduce the cost of the internal timer, consolidate all the + * delayed free works into a single delayed_work. + */ +struct au_dfree { + struct au_cache cache[AuCache_Last]; + struct llist_head llist[AU_DFREE_Last]; + struct delayed_work dwork; +}; + +extern struct au_dfree au_dfree; + +#define AuCacheFlags (SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD) +#define AuCache(type) KMEM_CACHE(type, AuCacheFlags) +#define AuCacheCtor(type, ctor) \ + kmem_cache_create(#type, sizeof(struct type), \ + __alignof__(struct type), AuCacheFlags, ctor) + +#define AU_DFREE_DELAY msecs_to_jiffies(10) +#define AU_DFREE_BODY(lnode, llist) do { \ + if (llist_add(lnode, llist)) \ + schedule_delayed_work(&au_dfree.dwork, \ + AU_DFREE_DELAY); \ + } while (0) +#define AU_CACHE_DFREE_FUNC(name, idx, lnode) \ + void au_cache_dfree_##name(struct au_##name *p) \ + { \ + struct au_cache *cp = au_dfree.cache + AuCache_##idx; \ + AU_DFREE_BODY(&p->lnode, &cp->llist); \ + } + +#define AuCacheFuncs(name, index) \ +static inline struct au_##name *au_cache_alloc_##name(void) \ +{ return kmem_cache_alloc(au_dfree.cache[AuCache_##index].cache, GFP_NOFS); } \ +static inline void au_cache_free_##name(struct au_##name *p) \ +{ kmem_cache_free(au_dfree.cache[AuCache_##index].cache, p); } \ +void au_cache_dfree_##name(struct au_##name *p) + +AuCacheFuncs(dinfo, DINFO); +AuCacheFuncs(icntnr, ICNTNR); +AuCacheFuncs(finfo, FINFO); +AuCacheFuncs(vdir, VDIR); +AuCacheFuncs(vdir_dehstr, DEHSTR); +#ifdef CONFIG_AUFS_HNOTIFY +AuCacheFuncs(hnotify, HNOTIFY); +#endif + +static inline void au_delayed_kfree(const void *p) +{ + AuDebugOn(!p); + AuDebugOn(ksize(p) < sizeof(struct llist_node)); + + AU_DFREE_BODY((void *)p, au_dfree.llist + AU_DFREE_KFREE); +} + +/* cast only */ +static inline void au_free_page(void *p) +{ + free_page((unsigned long)p); +} + +static inline void au_delayed_free_page(unsigned long addr) +{ + AU_DFREE_BODY((void *)addr, au_dfree.llist + AU_DFREE_FREE_PAGE); +} + +#endif /* __KERNEL__ */ +#endif /* __AUFS_MODULE_H__ */ --- linux-4.8.0.orig/fs/aufs/mvdown.c +++ linux-4.8.0/fs/aufs/mvdown.c @@ -0,0 +1,704 @@ +/* + * Copyright (C) 2011-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * move-down, opposite of copy-up + */ + +#include "aufs.h" + +struct au_mvd_args { + struct { + struct super_block *h_sb; + struct dentry *h_parent; + struct au_hinode *hdir; + struct inode *h_dir, *h_inode; + struct au_pin pin; + } info[AUFS_MVDOWN_NARRAY]; + + struct aufs_mvdown mvdown; + struct dentry *dentry, *parent; + struct inode *inode, *dir; + struct super_block *sb; + aufs_bindex_t bopq, bwh, bfound; + unsigned char rename_lock; +}; + +#define mvd_errno mvdown.au_errno +#define mvd_bsrc mvdown.stbr[AUFS_MVDOWN_UPPER].bindex +#define mvd_src_brid mvdown.stbr[AUFS_MVDOWN_UPPER].brid +#define mvd_bdst mvdown.stbr[AUFS_MVDOWN_LOWER].bindex +#define mvd_dst_brid mvdown.stbr[AUFS_MVDOWN_LOWER].brid + +#define mvd_h_src_sb info[AUFS_MVDOWN_UPPER].h_sb +#define mvd_h_src_parent info[AUFS_MVDOWN_UPPER].h_parent +#define mvd_hdir_src info[AUFS_MVDOWN_UPPER].hdir +#define mvd_h_src_dir info[AUFS_MVDOWN_UPPER].h_dir +#define mvd_h_src_inode info[AUFS_MVDOWN_UPPER].h_inode +#define mvd_pin_src info[AUFS_MVDOWN_UPPER].pin + +#define mvd_h_dst_sb info[AUFS_MVDOWN_LOWER].h_sb +#define mvd_h_dst_parent info[AUFS_MVDOWN_LOWER].h_parent +#define mvd_hdir_dst info[AUFS_MVDOWN_LOWER].hdir +#define mvd_h_dst_dir info[AUFS_MVDOWN_LOWER].h_dir +#define mvd_h_dst_inode info[AUFS_MVDOWN_LOWER].h_inode +#define mvd_pin_dst info[AUFS_MVDOWN_LOWER].pin + +#define AU_MVD_PR(flag, ...) do { \ + if (flag) \ + pr_err(__VA_ARGS__); \ + } while (0) + +static int find_lower_writable(struct au_mvd_args *a) +{ + struct super_block *sb; + aufs_bindex_t bindex, bbot; + struct au_branch *br; + + sb = a->sb; + bindex = a->mvd_bsrc; + bbot = au_sbbot(sb); + if (a->mvdown.flags & AUFS_MVDOWN_FHSM_LOWER) + for (bindex++; bindex <= bbot; bindex++) { + br = au_sbr(sb, bindex); + if (au_br_fhsm(br->br_perm) + && (!(au_br_sb(br)->s_flags & MS_RDONLY))) + return bindex; + } + else if (!(a->mvdown.flags & AUFS_MVDOWN_ROLOWER)) + for (bindex++; bindex <= bbot; bindex++) { + br = au_sbr(sb, bindex); + if (!au_br_rdonly(br)) + return bindex; + } + else + for (bindex++; bindex <= bbot; bindex++) { + br = au_sbr(sb, bindex); + if (!(au_br_sb(br)->s_flags & MS_RDONLY)) { + if (au_br_rdonly(br)) + a->mvdown.flags + |= AUFS_MVDOWN_ROLOWER_R; + return bindex; + } + } + + return -1; +} + +/* make the parent dir on bdst */ +static int au_do_mkdir(const unsigned char dmsg, struct au_mvd_args *a) +{ + int err; + + err = 0; + a->mvd_hdir_src = au_hi(a->dir, a->mvd_bsrc); + a->mvd_hdir_dst = au_hi(a->dir, a->mvd_bdst); + a->mvd_h_src_parent = au_h_dptr(a->parent, a->mvd_bsrc); + a->mvd_h_dst_parent = NULL; + if (au_dbbot(a->parent) >= a->mvd_bdst) + a->mvd_h_dst_parent = au_h_dptr(a->parent, a->mvd_bdst); + if (!a->mvd_h_dst_parent) { + err = au_cpdown_dirs(a->dentry, a->mvd_bdst); + if (unlikely(err)) { + AU_MVD_PR(dmsg, "cpdown_dirs failed\n"); + goto out; + } + a->mvd_h_dst_parent = au_h_dptr(a->parent, a->mvd_bdst); + } + +out: + AuTraceErr(err); + return err; +} + +/* lock them all */ +static int au_do_lock(const unsigned char dmsg, struct au_mvd_args *a) +{ + int err; + struct dentry *h_trap; + + a->mvd_h_src_sb = au_sbr_sb(a->sb, a->mvd_bsrc); + a->mvd_h_dst_sb = au_sbr_sb(a->sb, a->mvd_bdst); + err = au_pin(&a->mvd_pin_dst, a->dentry, a->mvd_bdst, + au_opt_udba(a->sb), + AuPin_MNT_WRITE | AuPin_DI_LOCKED); + AuTraceErr(err); + if (unlikely(err)) { + AU_MVD_PR(dmsg, "pin_dst failed\n"); + goto out; + } + + if (a->mvd_h_src_sb != a->mvd_h_dst_sb) { + a->rename_lock = 0; + au_pin_init(&a->mvd_pin_src, a->dentry, a->mvd_bsrc, + AuLsc_DI_PARENT, AuLsc_I_PARENT3, + au_opt_udba(a->sb), + AuPin_MNT_WRITE | AuPin_DI_LOCKED); + err = au_do_pin(&a->mvd_pin_src); + AuTraceErr(err); + a->mvd_h_src_dir = d_inode(a->mvd_h_src_parent); + if (unlikely(err)) { + AU_MVD_PR(dmsg, "pin_src failed\n"); + goto out_dst; + } + goto out; /* success */ + } + + a->rename_lock = 1; + au_pin_hdir_unlock(&a->mvd_pin_dst); + err = au_pin(&a->mvd_pin_src, a->dentry, a->mvd_bsrc, + au_opt_udba(a->sb), + AuPin_MNT_WRITE | AuPin_DI_LOCKED); + AuTraceErr(err); + a->mvd_h_src_dir = d_inode(a->mvd_h_src_parent); + if (unlikely(err)) { + AU_MVD_PR(dmsg, "pin_src failed\n"); + au_pin_hdir_lock(&a->mvd_pin_dst); + goto out_dst; + } + au_pin_hdir_unlock(&a->mvd_pin_src); + h_trap = vfsub_lock_rename(a->mvd_h_src_parent, a->mvd_hdir_src, + a->mvd_h_dst_parent, a->mvd_hdir_dst); + if (h_trap) { + err = (h_trap != a->mvd_h_src_parent); + if (err) + err = (h_trap != a->mvd_h_dst_parent); + } + BUG_ON(err); /* it should never happen */ + if (unlikely(a->mvd_h_src_dir != au_pinned_h_dir(&a->mvd_pin_src))) { + err = -EBUSY; + AuTraceErr(err); + vfsub_unlock_rename(a->mvd_h_src_parent, a->mvd_hdir_src, + a->mvd_h_dst_parent, a->mvd_hdir_dst); + au_pin_hdir_lock(&a->mvd_pin_src); + au_unpin(&a->mvd_pin_src); + au_pin_hdir_lock(&a->mvd_pin_dst); + goto out_dst; + } + goto out; /* success */ + +out_dst: + au_unpin(&a->mvd_pin_dst); +out: + AuTraceErr(err); + return err; +} + +static void au_do_unlock(const unsigned char dmsg, struct au_mvd_args *a) +{ + if (!a->rename_lock) + au_unpin(&a->mvd_pin_src); + else { + vfsub_unlock_rename(a->mvd_h_src_parent, a->mvd_hdir_src, + a->mvd_h_dst_parent, a->mvd_hdir_dst); + au_pin_hdir_lock(&a->mvd_pin_src); + au_unpin(&a->mvd_pin_src); + au_pin_hdir_lock(&a->mvd_pin_dst); + } + au_unpin(&a->mvd_pin_dst); +} + +/* copy-down the file */ +static int au_do_cpdown(const unsigned char dmsg, struct au_mvd_args *a) +{ + int err; + struct au_cp_generic cpg = { + .dentry = a->dentry, + .bdst = a->mvd_bdst, + .bsrc = a->mvd_bsrc, + .len = -1, + .pin = &a->mvd_pin_dst, + .flags = AuCpup_DTIME | AuCpup_HOPEN + }; + + AuDbg("b%d, b%d\n", cpg.bsrc, cpg.bdst); + if (a->mvdown.flags & AUFS_MVDOWN_OWLOWER) + au_fset_cpup(cpg.flags, OVERWRITE); + if (a->mvdown.flags & AUFS_MVDOWN_ROLOWER) + au_fset_cpup(cpg.flags, RWDST); + err = au_sio_cpdown_simple(&cpg); + if (unlikely(err)) + AU_MVD_PR(dmsg, "cpdown failed\n"); + + AuTraceErr(err); + return err; +} + +/* + * unlink the whiteout on bdst if exist which may be created by UDBA while we + * were sleeping + */ +static int au_do_unlink_wh(const unsigned char dmsg, struct au_mvd_args *a) +{ + int err; + struct path h_path; + struct au_branch *br; + struct inode *delegated; + + br = au_sbr(a->sb, a->mvd_bdst); + h_path.dentry = au_wh_lkup(a->mvd_h_dst_parent, &a->dentry->d_name, br); + err = PTR_ERR(h_path.dentry); + if (IS_ERR(h_path.dentry)) { + AU_MVD_PR(dmsg, "wh_lkup failed\n"); + goto out; + } + + err = 0; + if (d_is_positive(h_path.dentry)) { + h_path.mnt = au_br_mnt(br); + delegated = NULL; + err = vfsub_unlink(d_inode(a->mvd_h_dst_parent), &h_path, + &delegated, /*force*/0); + if (unlikely(err == -EWOULDBLOCK)) { + pr_warn("cannot retry for NFSv4 delegation" + " for an internal unlink\n"); + iput(delegated); + } + if (unlikely(err)) + AU_MVD_PR(dmsg, "wh_unlink failed\n"); + } + dput(h_path.dentry); + +out: + AuTraceErr(err); + return err; +} + +/* + * unlink the topmost h_dentry + */ +static int au_do_unlink(const unsigned char dmsg, struct au_mvd_args *a) +{ + int err; + struct path h_path; + struct inode *delegated; + + h_path.mnt = au_sbr_mnt(a->sb, a->mvd_bsrc); + h_path.dentry = au_h_dptr(a->dentry, a->mvd_bsrc); + delegated = NULL; + err = vfsub_unlink(a->mvd_h_src_dir, &h_path, &delegated, /*force*/0); + if (unlikely(err == -EWOULDBLOCK)) { + pr_warn("cannot retry for NFSv4 delegation" + " for an internal unlink\n"); + iput(delegated); + } + if (unlikely(err)) + AU_MVD_PR(dmsg, "unlink failed\n"); + + AuTraceErr(err); + return err; +} + +/* Since mvdown succeeded, we ignore an error of this function */ +static void au_do_stfs(const unsigned char dmsg, struct au_mvd_args *a) +{ + int err; + struct au_branch *br; + + a->mvdown.flags |= AUFS_MVDOWN_STFS_FAILED; + br = au_sbr(a->sb, a->mvd_bsrc); + err = au_br_stfs(br, &a->mvdown.stbr[AUFS_MVDOWN_UPPER].stfs); + if (!err) { + br = au_sbr(a->sb, a->mvd_bdst); + a->mvdown.stbr[AUFS_MVDOWN_LOWER].brid = br->br_id; + err = au_br_stfs(br, &a->mvdown.stbr[AUFS_MVDOWN_LOWER].stfs); + } + if (!err) + a->mvdown.flags &= ~AUFS_MVDOWN_STFS_FAILED; + else + AU_MVD_PR(dmsg, "statfs failed (%d), ignored\n", err); +} + +/* + * copy-down the file and unlink the bsrc file. + * - unlink the bdst whout if exist + * - copy-down the file (with whtmp name and rename) + * - unlink the bsrc file + */ +static int au_do_mvdown(const unsigned char dmsg, struct au_mvd_args *a) +{ + int err; + + err = au_do_mkdir(dmsg, a); + if (!err) + err = au_do_lock(dmsg, a); + if (unlikely(err)) + goto out; + + /* + * do not revert the activities we made on bdst since they should be + * harmless in aufs. + */ + + err = au_do_cpdown(dmsg, a); + if (!err) + err = au_do_unlink_wh(dmsg, a); + if (!err && !(a->mvdown.flags & AUFS_MVDOWN_KUPPER)) + err = au_do_unlink(dmsg, a); + if (unlikely(err)) + goto out_unlock; + + AuDbg("%pd2, 0x%x, %d --> %d\n", + a->dentry, a->mvdown.flags, a->mvd_bsrc, a->mvd_bdst); + if (find_lower_writable(a) < 0) + a->mvdown.flags |= AUFS_MVDOWN_BOTTOM; + + if (a->mvdown.flags & AUFS_MVDOWN_STFS) + au_do_stfs(dmsg, a); + + /* maintain internal array */ + if (!(a->mvdown.flags & AUFS_MVDOWN_KUPPER)) { + au_set_h_dptr(a->dentry, a->mvd_bsrc, NULL); + au_set_dbtop(a->dentry, a->mvd_bdst); + au_set_h_iptr(a->inode, a->mvd_bsrc, NULL, /*flags*/0); + au_set_ibtop(a->inode, a->mvd_bdst); + } else { + /* hide the lower */ + au_set_h_dptr(a->dentry, a->mvd_bdst, NULL); + au_set_dbbot(a->dentry, a->mvd_bsrc); + au_set_h_iptr(a->inode, a->mvd_bdst, NULL, /*flags*/0); + au_set_ibbot(a->inode, a->mvd_bsrc); + } + if (au_dbbot(a->dentry) < a->mvd_bdst) + au_set_dbbot(a->dentry, a->mvd_bdst); + if (au_ibbot(a->inode) < a->mvd_bdst) + au_set_ibbot(a->inode, a->mvd_bdst); + +out_unlock: + au_do_unlock(dmsg, a); +out: + AuTraceErr(err); + return err; +} + +/* ---------------------------------------------------------------------- */ + +/* make sure the file is idle */ +static int au_mvd_args_busy(const unsigned char dmsg, struct au_mvd_args *a) +{ + int err, plinked; + + err = 0; + plinked = !!au_opt_test(au_mntflags(a->sb), PLINK); + if (au_dbtop(a->dentry) == a->mvd_bsrc + && au_dcount(a->dentry) == 1 + && atomic_read(&a->inode->i_count) == 1 + /* && a->mvd_h_src_inode->i_nlink == 1 */ + && (!plinked || !au_plink_test(a->inode)) + && a->inode->i_nlink == 1) + goto out; + + err = -EBUSY; + AU_MVD_PR(dmsg, + "b%d, d{b%d, c%d?}, i{c%d?, l%u}, hi{l%u}, p{%d, %d}\n", + a->mvd_bsrc, au_dbtop(a->dentry), au_dcount(a->dentry), + atomic_read(&a->inode->i_count), a->inode->i_nlink, + a->mvd_h_src_inode->i_nlink, + plinked, plinked ? au_plink_test(a->inode) : 0); + +out: + AuTraceErr(err); + return err; +} + +/* make sure the parent dir is fine */ +static int au_mvd_args_parent(const unsigned char dmsg, + struct au_mvd_args *a) +{ + int err; + aufs_bindex_t bindex; + + err = 0; + if (unlikely(au_alive_dir(a->parent))) { + err = -ENOENT; + AU_MVD_PR(dmsg, "parent dir is dead\n"); + goto out; + } + + a->bopq = au_dbdiropq(a->parent); + bindex = au_wbr_nonopq(a->dentry, a->mvd_bdst); + AuDbg("b%d\n", bindex); + if (unlikely((bindex >= 0 && bindex < a->mvd_bdst) + || (a->bopq != -1 && a->bopq < a->mvd_bdst))) { + err = -EINVAL; + a->mvd_errno = EAU_MVDOWN_OPAQUE; + AU_MVD_PR(dmsg, "ancestor is opaque b%d, b%d\n", + a->bopq, a->mvd_bdst); + } + +out: + AuTraceErr(err); + return err; +} + +static int au_mvd_args_intermediate(const unsigned char dmsg, + struct au_mvd_args *a) +{ + int err; + struct au_dinfo *dinfo, *tmp; + + /* lookup the next lower positive entry */ + err = -ENOMEM; + tmp = au_di_alloc(a->sb, AuLsc_DI_TMP); + if (unlikely(!tmp)) + goto out; + + a->bfound = -1; + a->bwh = -1; + dinfo = au_di(a->dentry); + au_di_cp(tmp, dinfo); + au_di_swap(tmp, dinfo); + + /* returns the number of positive dentries */ + err = au_lkup_dentry(a->dentry, a->mvd_bsrc + 1, + /* AuLkup_IGNORE_PERM */ 0); + if (!err) + a->bwh = au_dbwh(a->dentry); + else if (err > 0) + a->bfound = au_dbtop(a->dentry); + + au_di_swap(tmp, dinfo); + au_rw_write_unlock(&tmp->di_rwsem); + au_di_free(tmp); + if (unlikely(err < 0)) + AU_MVD_PR(dmsg, "failed look-up lower\n"); + + /* + * here, we have these cases. + * bfound == -1 + * no positive dentry under bsrc. there are more sub-cases. + * bwh < 0 + * there no whiteout, we can safely move-down. + * bwh <= bsrc + * impossible + * bsrc < bwh && bwh < bdst + * there is a whiteout on RO branch. cannot proceed. + * bwh == bdst + * there is a whiteout on the RW target branch. it should + * be removed. + * bdst < bwh + * there is a whiteout somewhere unrelated branch. + * -1 < bfound && bfound <= bsrc + * impossible. + * bfound < bdst + * found, but it is on RO branch between bsrc and bdst. cannot + * proceed. + * bfound == bdst + * found, replace it if AUFS_MVDOWN_FORCE is set. otherwise return + * error. + * bdst < bfound + * found, after we create the file on bdst, it will be hidden. + */ + + AuDebugOn(a->bfound == -1 + && a->bwh != -1 + && a->bwh <= a->mvd_bsrc); + AuDebugOn(-1 < a->bfound + && a->bfound <= a->mvd_bsrc); + + err = -EINVAL; + if (a->bfound == -1 + && a->mvd_bsrc < a->bwh + && a->bwh != -1 + && a->bwh < a->mvd_bdst) { + a->mvd_errno = EAU_MVDOWN_WHITEOUT; + AU_MVD_PR(dmsg, "bsrc %d, bdst %d, bfound %d, bwh %d\n", + a->mvd_bsrc, a->mvd_bdst, a->bfound, a->bwh); + goto out; + } else if (a->bfound != -1 && a->bfound < a->mvd_bdst) { + a->mvd_errno = EAU_MVDOWN_UPPER; + AU_MVD_PR(dmsg, "bdst %d, bfound %d\n", + a->mvd_bdst, a->bfound); + goto out; + } + + err = 0; /* success */ + +out: + AuTraceErr(err); + return err; +} + +static int au_mvd_args_exist(const unsigned char dmsg, struct au_mvd_args *a) +{ + int err; + + err = 0; + if (!(a->mvdown.flags & AUFS_MVDOWN_OWLOWER) + && a->bfound == a->mvd_bdst) + err = -EEXIST; + AuTraceErr(err); + return err; +} + +static int au_mvd_args(const unsigned char dmsg, struct au_mvd_args *a) +{ + int err; + struct au_branch *br; + + err = -EISDIR; + if (unlikely(S_ISDIR(a->inode->i_mode))) + goto out; + + err = -EINVAL; + if (!(a->mvdown.flags & AUFS_MVDOWN_BRID_UPPER)) + a->mvd_bsrc = au_ibtop(a->inode); + else { + a->mvd_bsrc = au_br_index(a->sb, a->mvd_src_brid); + if (unlikely(a->mvd_bsrc < 0 + || (a->mvd_bsrc < au_dbtop(a->dentry) + || au_dbbot(a->dentry) < a->mvd_bsrc + || !au_h_dptr(a->dentry, a->mvd_bsrc)) + || (a->mvd_bsrc < au_ibtop(a->inode) + || au_ibbot(a->inode) < a->mvd_bsrc + || !au_h_iptr(a->inode, a->mvd_bsrc)))) { + a->mvd_errno = EAU_MVDOWN_NOUPPER; + AU_MVD_PR(dmsg, "no upper\n"); + goto out; + } + } + if (unlikely(a->mvd_bsrc == au_sbbot(a->sb))) { + a->mvd_errno = EAU_MVDOWN_BOTTOM; + AU_MVD_PR(dmsg, "on the bottom\n"); + goto out; + } + a->mvd_h_src_inode = au_h_iptr(a->inode, a->mvd_bsrc); + br = au_sbr(a->sb, a->mvd_bsrc); + err = au_br_rdonly(br); + if (!(a->mvdown.flags & AUFS_MVDOWN_ROUPPER)) { + if (unlikely(err)) + goto out; + } else if (!(vfsub_native_ro(a->mvd_h_src_inode) + || IS_APPEND(a->mvd_h_src_inode))) { + if (err) + a->mvdown.flags |= AUFS_MVDOWN_ROUPPER_R; + /* go on */ + } else + goto out; + + err = -EINVAL; + if (!(a->mvdown.flags & AUFS_MVDOWN_BRID_LOWER)) { + a->mvd_bdst = find_lower_writable(a); + if (unlikely(a->mvd_bdst < 0)) { + a->mvd_errno = EAU_MVDOWN_BOTTOM; + AU_MVD_PR(dmsg, "no writable lower branch\n"); + goto out; + } + } else { + a->mvd_bdst = au_br_index(a->sb, a->mvd_dst_brid); + if (unlikely(a->mvd_bdst < 0 + || au_sbbot(a->sb) < a->mvd_bdst)) { + a->mvd_errno = EAU_MVDOWN_NOLOWERBR; + AU_MVD_PR(dmsg, "no lower brid\n"); + goto out; + } + } + + err = au_mvd_args_busy(dmsg, a); + if (!err) + err = au_mvd_args_parent(dmsg, a); + if (!err) + err = au_mvd_args_intermediate(dmsg, a); + if (!err) + err = au_mvd_args_exist(dmsg, a); + if (!err) + AuDbg("b%d, b%d\n", a->mvd_bsrc, a->mvd_bdst); + +out: + AuTraceErr(err); + return err; +} + +int au_mvdown(struct dentry *dentry, struct aufs_mvdown __user *uarg) +{ + int err, e; + unsigned char dmsg; + struct au_mvd_args *args; + struct inode *inode; + + inode = d_inode(dentry); + err = -EPERM; + if (unlikely(!capable(CAP_SYS_ADMIN))) + goto out; + + err = -ENOMEM; + args = kmalloc(sizeof(*args), GFP_NOFS); + if (unlikely(!args)) + goto out; + + err = copy_from_user(&args->mvdown, uarg, sizeof(args->mvdown)); + if (!err) + err = !access_ok(VERIFY_WRITE, uarg, sizeof(*uarg)); + if (unlikely(err)) { + err = -EFAULT; + AuTraceErr(err); + goto out_free; + } + AuDbg("flags 0x%x\n", args->mvdown.flags); + args->mvdown.flags &= ~(AUFS_MVDOWN_ROLOWER_R | AUFS_MVDOWN_ROUPPER_R); + args->mvdown.au_errno = 0; + args->dentry = dentry; + args->inode = inode; + args->sb = dentry->d_sb; + + err = -ENOENT; + dmsg = !!(args->mvdown.flags & AUFS_MVDOWN_DMSG); + args->parent = dget_parent(dentry); + args->dir = d_inode(args->parent); + inode_lock_nested(args->dir, I_MUTEX_PARENT); + dput(args->parent); + if (unlikely(args->parent != dentry->d_parent)) { + AU_MVD_PR(dmsg, "parent dir is moved\n"); + goto out_dir; + } + + inode_lock_nested(inode, I_MUTEX_CHILD); + err = aufs_read_lock(dentry, AuLock_DW | AuLock_FLUSH | AuLock_NOPLMW); + if (unlikely(err)) + goto out_inode; + + di_write_lock_parent(args->parent); + err = au_mvd_args(dmsg, args); + if (unlikely(err)) + goto out_parent; + + err = au_do_mvdown(dmsg, args); + if (unlikely(err)) + goto out_parent; + + au_cpup_attr_timesizes(args->dir); + au_cpup_attr_timesizes(inode); + if (!(args->mvdown.flags & AUFS_MVDOWN_KUPPER)) + au_cpup_igen(inode, au_h_iptr(inode, args->mvd_bdst)); + /* au_digen_dec(dentry); */ + +out_parent: + di_write_unlock(args->parent); + aufs_read_unlock(dentry, AuLock_DW); +out_inode: + inode_unlock(inode); +out_dir: + inode_unlock(args->dir); +out_free: + e = copy_to_user(uarg, &args->mvdown, sizeof(args->mvdown)); + if (unlikely(e)) + err = -EFAULT; + au_delayed_kfree(args); +out: + AuTraceErr(err); + return err; +} --- linux-4.8.0.orig/fs/aufs/opts.c +++ linux-4.8.0/fs/aufs/opts.c @@ -0,0 +1,1860 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * mount options/flags + */ + +#include +#include /* a distribution requires */ +#include +#include "aufs.h" + +/* ---------------------------------------------------------------------- */ + +enum { + Opt_br, + Opt_add, Opt_del, Opt_mod, Opt_append, Opt_prepend, + Opt_idel, Opt_imod, + Opt_dirwh, Opt_rdcache, Opt_rdblk, Opt_rdhash, + Opt_rdblk_def, Opt_rdhash_def, + Opt_xino, Opt_noxino, + Opt_trunc_xino, Opt_trunc_xino_v, Opt_notrunc_xino, + Opt_trunc_xino_path, Opt_itrunc_xino, + Opt_trunc_xib, Opt_notrunc_xib, + Opt_shwh, Opt_noshwh, + Opt_plink, Opt_noplink, Opt_list_plink, + Opt_udba, + Opt_dio, Opt_nodio, + Opt_diropq_a, Opt_diropq_w, + Opt_warn_perm, Opt_nowarn_perm, + Opt_wbr_copyup, Opt_wbr_create, + Opt_fhsm_sec, + Opt_verbose, Opt_noverbose, + Opt_sum, Opt_nosum, Opt_wsum, + Opt_dirperm1, Opt_nodirperm1, + Opt_acl, Opt_noacl, + Opt_tail, Opt_ignore, Opt_ignore_silent, Opt_err +}; + +static match_table_t options = { + {Opt_br, "br=%s"}, + {Opt_br, "br:%s"}, + + {Opt_add, "add=%d:%s"}, + {Opt_add, "add:%d:%s"}, + {Opt_add, "ins=%d:%s"}, + {Opt_add, "ins:%d:%s"}, + {Opt_append, "append=%s"}, + {Opt_append, "append:%s"}, + {Opt_prepend, "prepend=%s"}, + {Opt_prepend, "prepend:%s"}, + + {Opt_del, "del=%s"}, + {Opt_del, "del:%s"}, + /* {Opt_idel, "idel:%d"}, */ + {Opt_mod, "mod=%s"}, + {Opt_mod, "mod:%s"}, + /* {Opt_imod, "imod:%d:%s"}, */ + + {Opt_dirwh, "dirwh=%d"}, + + {Opt_xino, "xino=%s"}, + {Opt_noxino, "noxino"}, + {Opt_trunc_xino, "trunc_xino"}, + {Opt_trunc_xino_v, "trunc_xino_v=%d:%d"}, + {Opt_notrunc_xino, "notrunc_xino"}, + {Opt_trunc_xino_path, "trunc_xino=%s"}, + {Opt_itrunc_xino, "itrunc_xino=%d"}, + /* {Opt_zxino, "zxino=%s"}, */ + {Opt_trunc_xib, "trunc_xib"}, + {Opt_notrunc_xib, "notrunc_xib"}, + +#ifdef CONFIG_PROC_FS + {Opt_plink, "plink"}, +#else + {Opt_ignore_silent, "plink"}, +#endif + + {Opt_noplink, "noplink"}, + +#ifdef CONFIG_AUFS_DEBUG + {Opt_list_plink, "list_plink"}, +#endif + + {Opt_udba, "udba=%s"}, + + {Opt_dio, "dio"}, + {Opt_nodio, "nodio"}, + +#ifdef CONFIG_AUFS_FHSM + {Opt_fhsm_sec, "fhsm_sec=%d"}, +#else + {Opt_ignore_silent, "fhsm_sec=%d"}, +#endif + + {Opt_diropq_a, "diropq=always"}, + {Opt_diropq_a, "diropq=a"}, + {Opt_diropq_w, "diropq=whiteouted"}, + {Opt_diropq_w, "diropq=w"}, + + {Opt_warn_perm, "warn_perm"}, + {Opt_nowarn_perm, "nowarn_perm"}, + + /* keep them temporary */ + {Opt_ignore_silent, "nodlgt"}, + {Opt_ignore_silent, "clean_plink"}, + +#ifdef CONFIG_AUFS_SHWH + {Opt_shwh, "shwh"}, +#endif + {Opt_noshwh, "noshwh"}, + + {Opt_dirperm1, "dirperm1"}, + {Opt_nodirperm1, "nodirperm1"}, + + {Opt_verbose, "verbose"}, + {Opt_verbose, "v"}, + {Opt_noverbose, "noverbose"}, + {Opt_noverbose, "quiet"}, + {Opt_noverbose, "q"}, + {Opt_noverbose, "silent"}, + + {Opt_sum, "sum"}, + {Opt_nosum, "nosum"}, + {Opt_wsum, "wsum"}, + + {Opt_rdcache, "rdcache=%d"}, + {Opt_rdblk, "rdblk=%d"}, + {Opt_rdblk_def, "rdblk=def"}, + {Opt_rdhash, "rdhash=%d"}, + {Opt_rdhash_def, "rdhash=def"}, + + {Opt_wbr_create, "create=%s"}, + {Opt_wbr_create, "create_policy=%s"}, + {Opt_wbr_copyup, "cpup=%s"}, + {Opt_wbr_copyup, "copyup=%s"}, + {Opt_wbr_copyup, "copyup_policy=%s"}, + + /* generic VFS flag */ +#ifdef CONFIG_FS_POSIX_ACL + {Opt_acl, "acl"}, + {Opt_noacl, "noacl"}, +#else + {Opt_ignore_silent, "acl"}, + {Opt_ignore_silent, "noacl"}, +#endif + + /* internal use for the scripts */ + {Opt_ignore_silent, "si=%s"}, + + {Opt_br, "dirs=%s"}, + {Opt_ignore, "debug=%d"}, + {Opt_ignore, "delete=whiteout"}, + {Opt_ignore, "delete=all"}, + {Opt_ignore, "imap=%s"}, + + /* temporary workaround, due to old mount(8)? */ + {Opt_ignore_silent, "relatime"}, + + {Opt_err, NULL} +}; + +/* ---------------------------------------------------------------------- */ + +static const char *au_parser_pattern(int val, match_table_t tbl) +{ + struct match_token *p; + + p = tbl; + while (p->pattern) { + if (p->token == val) + return p->pattern; + p++; + } + BUG(); + return "??"; +} + +static const char *au_optstr(int *val, match_table_t tbl) +{ + struct match_token *p; + int v; + + v = *val; + if (!v) + goto out; + p = tbl; + while (p->pattern) { + if (p->token + && (v & p->token) == p->token) { + *val &= ~p->token; + return p->pattern; + } + p++; + } + +out: + return NULL; +} + +/* ---------------------------------------------------------------------- */ + +static match_table_t brperm = { + {AuBrPerm_RO, AUFS_BRPERM_RO}, + {AuBrPerm_RR, AUFS_BRPERM_RR}, + {AuBrPerm_RW, AUFS_BRPERM_RW}, + {0, NULL} +}; + +static match_table_t brattr = { + /* general */ + {AuBrAttr_COO_REG, AUFS_BRATTR_COO_REG}, + {AuBrAttr_COO_ALL, AUFS_BRATTR_COO_ALL}, + /* 'unpin' attrib is meaningless since linux-3.18-rc1 */ + {AuBrAttr_UNPIN, AUFS_BRATTR_UNPIN}, +#ifdef CONFIG_AUFS_FHSM + {AuBrAttr_FHSM, AUFS_BRATTR_FHSM}, +#endif +#ifdef CONFIG_AUFS_XATTR + {AuBrAttr_ICEX, AUFS_BRATTR_ICEX}, + {AuBrAttr_ICEX_SEC, AUFS_BRATTR_ICEX_SEC}, + {AuBrAttr_ICEX_SYS, AUFS_BRATTR_ICEX_SYS}, + {AuBrAttr_ICEX_TR, AUFS_BRATTR_ICEX_TR}, + {AuBrAttr_ICEX_USR, AUFS_BRATTR_ICEX_USR}, + {AuBrAttr_ICEX_OTH, AUFS_BRATTR_ICEX_OTH}, +#endif + + /* ro/rr branch */ + {AuBrRAttr_WH, AUFS_BRRATTR_WH}, + + /* rw branch */ + {AuBrWAttr_MOO, AUFS_BRWATTR_MOO}, + {AuBrWAttr_NoLinkWH, AUFS_BRWATTR_NLWH}, + + {0, NULL} +}; + +static int br_attr_val(char *str, match_table_t table, substring_t args[]) +{ + int attr, v; + char *p; + + attr = 0; + do { + p = strchr(str, '+'); + if (p) + *p = 0; + v = match_token(str, table, args); + if (v) { + if (v & AuBrAttr_CMOO_Mask) + attr &= ~AuBrAttr_CMOO_Mask; + attr |= v; + } else { + if (p) + *p = '+'; + pr_warn("ignored branch attribute %s\n", str); + break; + } + if (p) + str = p + 1; + } while (p); + + return attr; +} + +static int au_do_optstr_br_attr(au_br_perm_str_t *str, int perm) +{ + int sz; + const char *p; + char *q; + + q = str->a; + *q = 0; + p = au_optstr(&perm, brattr); + if (p) { + sz = strlen(p); + memcpy(q, p, sz + 1); + q += sz; + } else + goto out; + + do { + p = au_optstr(&perm, brattr); + if (p) { + *q++ = '+'; + sz = strlen(p); + memcpy(q, p, sz + 1); + q += sz; + } + } while (p); + +out: + return q - str->a; +} + +static int noinline_for_stack br_perm_val(char *perm) +{ + int val, bad, sz; + char *p; + substring_t args[MAX_OPT_ARGS]; + au_br_perm_str_t attr; + + p = strchr(perm, '+'); + if (p) + *p = 0; + val = match_token(perm, brperm, args); + if (!val) { + if (p) + *p = '+'; + pr_warn("ignored branch permission %s\n", perm); + val = AuBrPerm_RO; + goto out; + } + if (!p) + goto out; + + val |= br_attr_val(p + 1, brattr, args); + + bad = 0; + switch (val & AuBrPerm_Mask) { + case AuBrPerm_RO: + case AuBrPerm_RR: + bad = val & AuBrWAttr_Mask; + val &= ~AuBrWAttr_Mask; + break; + case AuBrPerm_RW: + bad = val & AuBrRAttr_Mask; + val &= ~AuBrRAttr_Mask; + break; + } + + /* + * 'unpin' attrib becomes meaningless since linux-3.18-rc1, but aufs + * does not treat it as an error, just warning. + * this is a tiny guard for the user operation. + */ + if (val & AuBrAttr_UNPIN) { + bad |= AuBrAttr_UNPIN; + val &= ~AuBrAttr_UNPIN; + } + + if (unlikely(bad)) { + sz = au_do_optstr_br_attr(&attr, bad); + AuDebugOn(!sz); + pr_warn("ignored branch attribute %s\n", attr.a); + } + +out: + return val; +} + +void au_optstr_br_perm(au_br_perm_str_t *str, int perm) +{ + au_br_perm_str_t attr; + const char *p; + char *q; + int sz; + + q = str->a; + p = au_optstr(&perm, brperm); + AuDebugOn(!p || !*p); + sz = strlen(p); + memcpy(q, p, sz + 1); + q += sz; + + sz = au_do_optstr_br_attr(&attr, perm); + if (sz) { + *q++ = '+'; + memcpy(q, attr.a, sz + 1); + } + + AuDebugOn(strlen(str->a) >= sizeof(str->a)); +} + +/* ---------------------------------------------------------------------- */ + +static match_table_t udbalevel = { + {AuOpt_UDBA_REVAL, "reval"}, + {AuOpt_UDBA_NONE, "none"}, +#ifdef CONFIG_AUFS_HNOTIFY + {AuOpt_UDBA_HNOTIFY, "notify"}, /* abstraction */ +#ifdef CONFIG_AUFS_HFSNOTIFY + {AuOpt_UDBA_HNOTIFY, "fsnotify"}, +#endif +#endif + {-1, NULL} +}; + +static int noinline_for_stack udba_val(char *str) +{ + substring_t args[MAX_OPT_ARGS]; + + return match_token(str, udbalevel, args); +} + +const char *au_optstr_udba(int udba) +{ + return au_parser_pattern(udba, udbalevel); +} + +/* ---------------------------------------------------------------------- */ + +static match_table_t au_wbr_create_policy = { + {AuWbrCreate_TDP, "tdp"}, + {AuWbrCreate_TDP, "top-down-parent"}, + {AuWbrCreate_RR, "rr"}, + {AuWbrCreate_RR, "round-robin"}, + {AuWbrCreate_MFS, "mfs"}, + {AuWbrCreate_MFS, "most-free-space"}, + {AuWbrCreate_MFSV, "mfs:%d"}, + {AuWbrCreate_MFSV, "most-free-space:%d"}, + + {AuWbrCreate_MFSRR, "mfsrr:%d"}, + {AuWbrCreate_MFSRRV, "mfsrr:%d:%d"}, + {AuWbrCreate_PMFS, "pmfs"}, + {AuWbrCreate_PMFSV, "pmfs:%d"}, + {AuWbrCreate_PMFSRR, "pmfsrr:%d"}, + {AuWbrCreate_PMFSRRV, "pmfsrr:%d:%d"}, + + {-1, NULL} +}; + +/* + * cf. linux/lib/parser.c and cmdline.c + * gave up calling memparse() since it uses simple_strtoull() instead of + * kstrto...(). + */ +static int noinline_for_stack +au_match_ull(substring_t *s, unsigned long long *result) +{ + int err; + unsigned int len; + char a[32]; + + err = -ERANGE; + len = s->to - s->from; + if (len + 1 <= sizeof(a)) { + memcpy(a, s->from, len); + a[len] = '\0'; + err = kstrtoull(a, 0, result); + } + return err; +} + +static int au_wbr_mfs_wmark(substring_t *arg, char *str, + struct au_opt_wbr_create *create) +{ + int err; + unsigned long long ull; + + err = 0; + if (!au_match_ull(arg, &ull)) + create->mfsrr_watermark = ull; + else { + pr_err("bad integer in %s\n", str); + err = -EINVAL; + } + + return err; +} + +static int au_wbr_mfs_sec(substring_t *arg, char *str, + struct au_opt_wbr_create *create) +{ + int n, err; + + err = 0; + if (!match_int(arg, &n) && 0 <= n && n <= AUFS_MFS_MAX_SEC) + create->mfs_second = n; + else { + pr_err("bad integer in %s\n", str); + err = -EINVAL; + } + + return err; +} + +static int noinline_for_stack +au_wbr_create_val(char *str, struct au_opt_wbr_create *create) +{ + int err, e; + substring_t args[MAX_OPT_ARGS]; + + err = match_token(str, au_wbr_create_policy, args); + create->wbr_create = err; + switch (err) { + case AuWbrCreate_MFSRRV: + case AuWbrCreate_PMFSRRV: + e = au_wbr_mfs_wmark(&args[0], str, create); + if (!e) + e = au_wbr_mfs_sec(&args[1], str, create); + if (unlikely(e)) + err = e; + break; + case AuWbrCreate_MFSRR: + case AuWbrCreate_PMFSRR: + e = au_wbr_mfs_wmark(&args[0], str, create); + if (unlikely(e)) { + err = e; + break; + } + /*FALLTHROUGH*/ + case AuWbrCreate_MFS: + case AuWbrCreate_PMFS: + create->mfs_second = AUFS_MFS_DEF_SEC; + break; + case AuWbrCreate_MFSV: + case AuWbrCreate_PMFSV: + e = au_wbr_mfs_sec(&args[0], str, create); + if (unlikely(e)) + err = e; + break; + } + + return err; +} + +const char *au_optstr_wbr_create(int wbr_create) +{ + return au_parser_pattern(wbr_create, au_wbr_create_policy); +} + +static match_table_t au_wbr_copyup_policy = { + {AuWbrCopyup_TDP, "tdp"}, + {AuWbrCopyup_TDP, "top-down-parent"}, + {AuWbrCopyup_BUP, "bup"}, + {AuWbrCopyup_BUP, "bottom-up-parent"}, + {AuWbrCopyup_BU, "bu"}, + {AuWbrCopyup_BU, "bottom-up"}, + {-1, NULL} +}; + +static int noinline_for_stack au_wbr_copyup_val(char *str) +{ + substring_t args[MAX_OPT_ARGS]; + + return match_token(str, au_wbr_copyup_policy, args); +} + +const char *au_optstr_wbr_copyup(int wbr_copyup) +{ + return au_parser_pattern(wbr_copyup, au_wbr_copyup_policy); +} + +/* ---------------------------------------------------------------------- */ + +static const int lkup_dirflags = LOOKUP_FOLLOW | LOOKUP_DIRECTORY; + +static void dump_opts(struct au_opts *opts) +{ +#ifdef CONFIG_AUFS_DEBUG + /* reduce stack space */ + union { + struct au_opt_add *add; + struct au_opt_del *del; + struct au_opt_mod *mod; + struct au_opt_xino *xino; + struct au_opt_xino_itrunc *xino_itrunc; + struct au_opt_wbr_create *create; + } u; + struct au_opt *opt; + + opt = opts->opt; + while (opt->type != Opt_tail) { + switch (opt->type) { + case Opt_add: + u.add = &opt->add; + AuDbg("add {b%d, %s, 0x%x, %p}\n", + u.add->bindex, u.add->pathname, u.add->perm, + u.add->path.dentry); + break; + case Opt_del: + case Opt_idel: + u.del = &opt->del; + AuDbg("del {%s, %p}\n", + u.del->pathname, u.del->h_path.dentry); + break; + case Opt_mod: + case Opt_imod: + u.mod = &opt->mod; + AuDbg("mod {%s, 0x%x, %p}\n", + u.mod->path, u.mod->perm, u.mod->h_root); + break; + case Opt_append: + u.add = &opt->add; + AuDbg("append {b%d, %s, 0x%x, %p}\n", + u.add->bindex, u.add->pathname, u.add->perm, + u.add->path.dentry); + break; + case Opt_prepend: + u.add = &opt->add; + AuDbg("prepend {b%d, %s, 0x%x, %p}\n", + u.add->bindex, u.add->pathname, u.add->perm, + u.add->path.dentry); + break; + case Opt_dirwh: + AuDbg("dirwh %d\n", opt->dirwh); + break; + case Opt_rdcache: + AuDbg("rdcache %d\n", opt->rdcache); + break; + case Opt_rdblk: + AuDbg("rdblk %u\n", opt->rdblk); + break; + case Opt_rdblk_def: + AuDbg("rdblk_def\n"); + break; + case Opt_rdhash: + AuDbg("rdhash %u\n", opt->rdhash); + break; + case Opt_rdhash_def: + AuDbg("rdhash_def\n"); + break; + case Opt_xino: + u.xino = &opt->xino; + AuDbg("xino {%s %pD}\n", u.xino->path, u.xino->file); + break; + case Opt_trunc_xino: + AuLabel(trunc_xino); + break; + case Opt_notrunc_xino: + AuLabel(notrunc_xino); + break; + case Opt_trunc_xino_path: + case Opt_itrunc_xino: + u.xino_itrunc = &opt->xino_itrunc; + AuDbg("trunc_xino %d\n", u.xino_itrunc->bindex); + break; + case Opt_noxino: + AuLabel(noxino); + break; + case Opt_trunc_xib: + AuLabel(trunc_xib); + break; + case Opt_notrunc_xib: + AuLabel(notrunc_xib); + break; + case Opt_shwh: + AuLabel(shwh); + break; + case Opt_noshwh: + AuLabel(noshwh); + break; + case Opt_dirperm1: + AuLabel(dirperm1); + break; + case Opt_nodirperm1: + AuLabel(nodirperm1); + break; + case Opt_plink: + AuLabel(plink); + break; + case Opt_noplink: + AuLabel(noplink); + break; + case Opt_list_plink: + AuLabel(list_plink); + break; + case Opt_udba: + AuDbg("udba %d, %s\n", + opt->udba, au_optstr_udba(opt->udba)); + break; + case Opt_dio: + AuLabel(dio); + break; + case Opt_nodio: + AuLabel(nodio); + break; + case Opt_diropq_a: + AuLabel(diropq_a); + break; + case Opt_diropq_w: + AuLabel(diropq_w); + break; + case Opt_warn_perm: + AuLabel(warn_perm); + break; + case Opt_nowarn_perm: + AuLabel(nowarn_perm); + break; + case Opt_verbose: + AuLabel(verbose); + break; + case Opt_noverbose: + AuLabel(noverbose); + break; + case Opt_sum: + AuLabel(sum); + break; + case Opt_nosum: + AuLabel(nosum); + break; + case Opt_wsum: + AuLabel(wsum); + break; + case Opt_wbr_create: + u.create = &opt->wbr_create; + AuDbg("create %d, %s\n", u.create->wbr_create, + au_optstr_wbr_create(u.create->wbr_create)); + switch (u.create->wbr_create) { + case AuWbrCreate_MFSV: + case AuWbrCreate_PMFSV: + AuDbg("%d sec\n", u.create->mfs_second); + break; + case AuWbrCreate_MFSRR: + AuDbg("%llu watermark\n", + u.create->mfsrr_watermark); + break; + case AuWbrCreate_MFSRRV: + case AuWbrCreate_PMFSRRV: + AuDbg("%llu watermark, %d sec\n", + u.create->mfsrr_watermark, + u.create->mfs_second); + break; + } + break; + case Opt_wbr_copyup: + AuDbg("copyup %d, %s\n", opt->wbr_copyup, + au_optstr_wbr_copyup(opt->wbr_copyup)); + break; + case Opt_fhsm_sec: + AuDbg("fhsm_sec %u\n", opt->fhsm_second); + break; + case Opt_acl: + AuLabel(acl); + break; + case Opt_noacl: + AuLabel(noacl); + break; + default: + BUG(); + } + opt++; + } +#endif +} + +void au_opts_free(struct au_opts *opts) +{ + struct au_opt *opt; + + opt = opts->opt; + while (opt->type != Opt_tail) { + switch (opt->type) { + case Opt_add: + case Opt_append: + case Opt_prepend: + path_put(&opt->add.path); + break; + case Opt_del: + case Opt_idel: + path_put(&opt->del.h_path); + break; + case Opt_mod: + case Opt_imod: + dput(opt->mod.h_root); + break; + case Opt_xino: + fput(opt->xino.file); + break; + } + opt++; + } +} + +static int opt_add(struct au_opt *opt, char *opt_str, unsigned long sb_flags, + aufs_bindex_t bindex) +{ + int err; + struct au_opt_add *add = &opt->add; + char *p; + + add->bindex = bindex; + add->perm = AuBrPerm_RO; + add->pathname = opt_str; + p = strchr(opt_str, '='); + if (p) { + *p++ = 0; + if (*p) + add->perm = br_perm_val(p); + } + + err = vfsub_kern_path(add->pathname, lkup_dirflags, &add->path); + if (!err) { + if (!p) { + add->perm = AuBrPerm_RO; + if (au_test_fs_rr(add->path.dentry->d_sb)) + add->perm = AuBrPerm_RR; + else if (!bindex && !(sb_flags & MS_RDONLY)) + add->perm = AuBrPerm_RW; + } + opt->type = Opt_add; + goto out; + } + pr_err("lookup failed %s (%d)\n", add->pathname, err); + err = -EINVAL; + +out: + return err; +} + +static int au_opts_parse_del(struct au_opt_del *del, substring_t args[]) +{ + int err; + + del->pathname = args[0].from; + AuDbg("del path %s\n", del->pathname); + + err = vfsub_kern_path(del->pathname, lkup_dirflags, &del->h_path); + if (unlikely(err)) + pr_err("lookup failed %s (%d)\n", del->pathname, err); + + return err; +} + +#if 0 /* reserved for future use */ +static int au_opts_parse_idel(struct super_block *sb, aufs_bindex_t bindex, + struct au_opt_del *del, substring_t args[]) +{ + int err; + struct dentry *root; + + err = -EINVAL; + root = sb->s_root; + aufs_read_lock(root, AuLock_FLUSH); + if (bindex < 0 || au_sbbot(sb) < bindex) { + pr_err("out of bounds, %d\n", bindex); + goto out; + } + + err = 0; + del->h_path.dentry = dget(au_h_dptr(root, bindex)); + del->h_path.mnt = mntget(au_sbr_mnt(sb, bindex)); + +out: + aufs_read_unlock(root, !AuLock_IR); + return err; +} +#endif + +static int noinline_for_stack +au_opts_parse_mod(struct au_opt_mod *mod, substring_t args[]) +{ + int err; + struct path path; + char *p; + + err = -EINVAL; + mod->path = args[0].from; + p = strchr(mod->path, '='); + if (unlikely(!p)) { + pr_err("no permssion %s\n", args[0].from); + goto out; + } + + *p++ = 0; + err = vfsub_kern_path(mod->path, lkup_dirflags, &path); + if (unlikely(err)) { + pr_err("lookup failed %s (%d)\n", mod->path, err); + goto out; + } + + mod->perm = br_perm_val(p); + AuDbg("mod path %s, perm 0x%x, %s\n", mod->path, mod->perm, p); + mod->h_root = dget(path.dentry); + path_put(&path); + +out: + return err; +} + +#if 0 /* reserved for future use */ +static int au_opts_parse_imod(struct super_block *sb, aufs_bindex_t bindex, + struct au_opt_mod *mod, substring_t args[]) +{ + int err; + struct dentry *root; + + err = -EINVAL; + root = sb->s_root; + aufs_read_lock(root, AuLock_FLUSH); + if (bindex < 0 || au_sbbot(sb) < bindex) { + pr_err("out of bounds, %d\n", bindex); + goto out; + } + + err = 0; + mod->perm = br_perm_val(args[1].from); + AuDbg("mod path %s, perm 0x%x, %s\n", + mod->path, mod->perm, args[1].from); + mod->h_root = dget(au_h_dptr(root, bindex)); + +out: + aufs_read_unlock(root, !AuLock_IR); + return err; +} +#endif + +static int au_opts_parse_xino(struct super_block *sb, struct au_opt_xino *xino, + substring_t args[]) +{ + int err; + struct file *file; + + file = au_xino_create(sb, args[0].from, /*silent*/0); + err = PTR_ERR(file); + if (IS_ERR(file)) + goto out; + + err = -EINVAL; + if (unlikely(file->f_path.dentry->d_sb == sb)) { + fput(file); + pr_err("%s must be outside\n", args[0].from); + goto out; + } + + err = 0; + xino->file = file; + xino->path = args[0].from; + +out: + return err; +} + +static int noinline_for_stack +au_opts_parse_xino_itrunc_path(struct super_block *sb, + struct au_opt_xino_itrunc *xino_itrunc, + substring_t args[]) +{ + int err; + aufs_bindex_t bbot, bindex; + struct path path; + struct dentry *root; + + err = vfsub_kern_path(args[0].from, lkup_dirflags, &path); + if (unlikely(err)) { + pr_err("lookup failed %s (%d)\n", args[0].from, err); + goto out; + } + + xino_itrunc->bindex = -1; + root = sb->s_root; + aufs_read_lock(root, AuLock_FLUSH); + bbot = au_sbbot(sb); + for (bindex = 0; bindex <= bbot; bindex++) { + if (au_h_dptr(root, bindex) == path.dentry) { + xino_itrunc->bindex = bindex; + break; + } + } + aufs_read_unlock(root, !AuLock_IR); + path_put(&path); + + if (unlikely(xino_itrunc->bindex < 0)) { + pr_err("no such branch %s\n", args[0].from); + err = -EINVAL; + } + +out: + return err; +} + +/* called without aufs lock */ +int au_opts_parse(struct super_block *sb, char *str, struct au_opts *opts) +{ + int err, n, token; + aufs_bindex_t bindex; + unsigned char skipped; + struct dentry *root; + struct au_opt *opt, *opt_tail; + char *opt_str; + /* reduce the stack space */ + union { + struct au_opt_xino_itrunc *xino_itrunc; + struct au_opt_wbr_create *create; + } u; + struct { + substring_t args[MAX_OPT_ARGS]; + } *a; + + err = -ENOMEM; + a = kmalloc(sizeof(*a), GFP_NOFS); + if (unlikely(!a)) + goto out; + + root = sb->s_root; + err = 0; + bindex = 0; + opt = opts->opt; + opt_tail = opt + opts->max_opt - 1; + opt->type = Opt_tail; + while (!err && (opt_str = strsep(&str, ",")) && *opt_str) { + err = -EINVAL; + skipped = 0; + token = match_token(opt_str, options, a->args); + switch (token) { + case Opt_br: + err = 0; + while (!err && (opt_str = strsep(&a->args[0].from, ":")) + && *opt_str) { + err = opt_add(opt, opt_str, opts->sb_flags, + bindex++); + if (unlikely(!err && ++opt > opt_tail)) { + err = -E2BIG; + break; + } + opt->type = Opt_tail; + skipped = 1; + } + break; + case Opt_add: + if (unlikely(match_int(&a->args[0], &n))) { + pr_err("bad integer in %s\n", opt_str); + break; + } + bindex = n; + err = opt_add(opt, a->args[1].from, opts->sb_flags, + bindex); + if (!err) + opt->type = token; + break; + case Opt_append: + err = opt_add(opt, a->args[0].from, opts->sb_flags, + /*dummy bindex*/1); + if (!err) + opt->type = token; + break; + case Opt_prepend: + err = opt_add(opt, a->args[0].from, opts->sb_flags, + /*bindex*/0); + if (!err) + opt->type = token; + break; + case Opt_del: + err = au_opts_parse_del(&opt->del, a->args); + if (!err) + opt->type = token; + break; +#if 0 /* reserved for future use */ + case Opt_idel: + del->pathname = "(indexed)"; + if (unlikely(match_int(&args[0], &n))) { + pr_err("bad integer in %s\n", opt_str); + break; + } + err = au_opts_parse_idel(sb, n, &opt->del, a->args); + if (!err) + opt->type = token; + break; +#endif + case Opt_mod: + err = au_opts_parse_mod(&opt->mod, a->args); + if (!err) + opt->type = token; + break; +#ifdef IMOD /* reserved for future use */ + case Opt_imod: + u.mod->path = "(indexed)"; + if (unlikely(match_int(&a->args[0], &n))) { + pr_err("bad integer in %s\n", opt_str); + break; + } + err = au_opts_parse_imod(sb, n, &opt->mod, a->args); + if (!err) + opt->type = token; + break; +#endif + case Opt_xino: + err = au_opts_parse_xino(sb, &opt->xino, a->args); + if (!err) + opt->type = token; + break; + + case Opt_trunc_xino_path: + err = au_opts_parse_xino_itrunc_path + (sb, &opt->xino_itrunc, a->args); + if (!err) + opt->type = token; + break; + + case Opt_itrunc_xino: + u.xino_itrunc = &opt->xino_itrunc; + if (unlikely(match_int(&a->args[0], &n))) { + pr_err("bad integer in %s\n", opt_str); + break; + } + u.xino_itrunc->bindex = n; + aufs_read_lock(root, AuLock_FLUSH); + if (n < 0 || au_sbbot(sb) < n) { + pr_err("out of bounds, %d\n", n); + aufs_read_unlock(root, !AuLock_IR); + break; + } + aufs_read_unlock(root, !AuLock_IR); + err = 0; + opt->type = token; + break; + + case Opt_dirwh: + if (unlikely(match_int(&a->args[0], &opt->dirwh))) + break; + err = 0; + opt->type = token; + break; + + case Opt_rdcache: + if (unlikely(match_int(&a->args[0], &n))) { + pr_err("bad integer in %s\n", opt_str); + break; + } + if (unlikely(n > AUFS_RDCACHE_MAX)) { + pr_err("rdcache must be smaller than %d\n", + AUFS_RDCACHE_MAX); + break; + } + opt->rdcache = n; + err = 0; + opt->type = token; + break; + case Opt_rdblk: + if (unlikely(match_int(&a->args[0], &n) + || n < 0 + || n > KMALLOC_MAX_SIZE)) { + pr_err("bad integer in %s\n", opt_str); + break; + } + if (unlikely(n && n < NAME_MAX)) { + pr_err("rdblk must be larger than %d\n", + NAME_MAX); + break; + } + opt->rdblk = n; + err = 0; + opt->type = token; + break; + case Opt_rdhash: + if (unlikely(match_int(&a->args[0], &n) + || n < 0 + || n * sizeof(struct hlist_head) + > KMALLOC_MAX_SIZE)) { + pr_err("bad integer in %s\n", opt_str); + break; + } + opt->rdhash = n; + err = 0; + opt->type = token; + break; + + case Opt_trunc_xino: + case Opt_notrunc_xino: + case Opt_noxino: + case Opt_trunc_xib: + case Opt_notrunc_xib: + case Opt_shwh: + case Opt_noshwh: + case Opt_dirperm1: + case Opt_nodirperm1: + case Opt_plink: + case Opt_noplink: + case Opt_list_plink: + case Opt_dio: + case Opt_nodio: + case Opt_diropq_a: + case Opt_diropq_w: + case Opt_warn_perm: + case Opt_nowarn_perm: + case Opt_verbose: + case Opt_noverbose: + case Opt_sum: + case Opt_nosum: + case Opt_wsum: + case Opt_rdblk_def: + case Opt_rdhash_def: + case Opt_acl: + case Opt_noacl: + err = 0; + opt->type = token; + break; + + case Opt_udba: + opt->udba = udba_val(a->args[0].from); + if (opt->udba >= 0) { + err = 0; + opt->type = token; + } else + pr_err("wrong value, %s\n", opt_str); + break; + + case Opt_wbr_create: + u.create = &opt->wbr_create; + u.create->wbr_create + = au_wbr_create_val(a->args[0].from, u.create); + if (u.create->wbr_create >= 0) { + err = 0; + opt->type = token; + } else + pr_err("wrong value, %s\n", opt_str); + break; + case Opt_wbr_copyup: + opt->wbr_copyup = au_wbr_copyup_val(a->args[0].from); + if (opt->wbr_copyup >= 0) { + err = 0; + opt->type = token; + } else + pr_err("wrong value, %s\n", opt_str); + break; + + case Opt_fhsm_sec: + if (unlikely(match_int(&a->args[0], &n) + || n < 0)) { + pr_err("bad integer in %s\n", opt_str); + break; + } + if (sysaufs_brs) { + opt->fhsm_second = n; + opt->type = token; + } else + pr_warn("ignored %s\n", opt_str); + err = 0; + break; + + case Opt_ignore: + pr_warn("ignored %s\n", opt_str); + /*FALLTHROUGH*/ + case Opt_ignore_silent: + skipped = 1; + err = 0; + break; + case Opt_err: + pr_err("unknown option %s\n", opt_str); + break; + } + + if (!err && !skipped) { + if (unlikely(++opt > opt_tail)) { + err = -E2BIG; + opt--; + opt->type = Opt_tail; + break; + } + opt->type = Opt_tail; + } + } + + au_delayed_kfree(a); + dump_opts(opts); + if (unlikely(err)) + au_opts_free(opts); + +out: + return err; +} + +static int au_opt_wbr_create(struct super_block *sb, + struct au_opt_wbr_create *create) +{ + int err; + struct au_sbinfo *sbinfo; + + SiMustWriteLock(sb); + + err = 1; /* handled */ + sbinfo = au_sbi(sb); + if (sbinfo->si_wbr_create_ops->fin) { + err = sbinfo->si_wbr_create_ops->fin(sb); + if (!err) + err = 1; + } + + sbinfo->si_wbr_create = create->wbr_create; + sbinfo->si_wbr_create_ops = au_wbr_create_ops + create->wbr_create; + switch (create->wbr_create) { + case AuWbrCreate_MFSRRV: + case AuWbrCreate_MFSRR: + case AuWbrCreate_PMFSRR: + case AuWbrCreate_PMFSRRV: + sbinfo->si_wbr_mfs.mfsrr_watermark = create->mfsrr_watermark; + /*FALLTHROUGH*/ + case AuWbrCreate_MFS: + case AuWbrCreate_MFSV: + case AuWbrCreate_PMFS: + case AuWbrCreate_PMFSV: + sbinfo->si_wbr_mfs.mfs_expire + = msecs_to_jiffies(create->mfs_second * MSEC_PER_SEC); + break; + } + + if (sbinfo->si_wbr_create_ops->init) + sbinfo->si_wbr_create_ops->init(sb); /* ignore */ + + return err; +} + +/* + * returns, + * plus: processed without an error + * zero: unprocessed + */ +static int au_opt_simple(struct super_block *sb, struct au_opt *opt, + struct au_opts *opts) +{ + int err; + struct au_sbinfo *sbinfo; + + SiMustWriteLock(sb); + + err = 1; /* handled */ + sbinfo = au_sbi(sb); + switch (opt->type) { + case Opt_udba: + sbinfo->si_mntflags &= ~AuOptMask_UDBA; + sbinfo->si_mntflags |= opt->udba; + opts->given_udba |= opt->udba; + break; + + case Opt_plink: + au_opt_set(sbinfo->si_mntflags, PLINK); + break; + case Opt_noplink: + if (au_opt_test(sbinfo->si_mntflags, PLINK)) + au_plink_put(sb, /*verbose*/1); + au_opt_clr(sbinfo->si_mntflags, PLINK); + break; + case Opt_list_plink: + if (au_opt_test(sbinfo->si_mntflags, PLINK)) + au_plink_list(sb); + break; + + case Opt_dio: + au_opt_set(sbinfo->si_mntflags, DIO); + au_fset_opts(opts->flags, REFRESH_DYAOP); + break; + case Opt_nodio: + au_opt_clr(sbinfo->si_mntflags, DIO); + au_fset_opts(opts->flags, REFRESH_DYAOP); + break; + + case Opt_fhsm_sec: + au_fhsm_set(sbinfo, opt->fhsm_second); + break; + + case Opt_diropq_a: + au_opt_set(sbinfo->si_mntflags, ALWAYS_DIROPQ); + break; + case Opt_diropq_w: + au_opt_clr(sbinfo->si_mntflags, ALWAYS_DIROPQ); + break; + + case Opt_warn_perm: + au_opt_set(sbinfo->si_mntflags, WARN_PERM); + break; + case Opt_nowarn_perm: + au_opt_clr(sbinfo->si_mntflags, WARN_PERM); + break; + + case Opt_verbose: + au_opt_set(sbinfo->si_mntflags, VERBOSE); + break; + case Opt_noverbose: + au_opt_clr(sbinfo->si_mntflags, VERBOSE); + break; + + case Opt_sum: + au_opt_set(sbinfo->si_mntflags, SUM); + break; + case Opt_wsum: + au_opt_clr(sbinfo->si_mntflags, SUM); + au_opt_set(sbinfo->si_mntflags, SUM_W); + case Opt_nosum: + au_opt_clr(sbinfo->si_mntflags, SUM); + au_opt_clr(sbinfo->si_mntflags, SUM_W); + break; + + case Opt_wbr_create: + err = au_opt_wbr_create(sb, &opt->wbr_create); + break; + case Opt_wbr_copyup: + sbinfo->si_wbr_copyup = opt->wbr_copyup; + sbinfo->si_wbr_copyup_ops = au_wbr_copyup_ops + opt->wbr_copyup; + break; + + case Opt_dirwh: + sbinfo->si_dirwh = opt->dirwh; + break; + + case Opt_rdcache: + sbinfo->si_rdcache + = msecs_to_jiffies(opt->rdcache * MSEC_PER_SEC); + break; + case Opt_rdblk: + sbinfo->si_rdblk = opt->rdblk; + break; + case Opt_rdblk_def: + sbinfo->si_rdblk = AUFS_RDBLK_DEF; + break; + case Opt_rdhash: + sbinfo->si_rdhash = opt->rdhash; + break; + case Opt_rdhash_def: + sbinfo->si_rdhash = AUFS_RDHASH_DEF; + break; + + case Opt_shwh: + au_opt_set(sbinfo->si_mntflags, SHWH); + break; + case Opt_noshwh: + au_opt_clr(sbinfo->si_mntflags, SHWH); + break; + + case Opt_dirperm1: + au_opt_set(sbinfo->si_mntflags, DIRPERM1); + break; + case Opt_nodirperm1: + au_opt_clr(sbinfo->si_mntflags, DIRPERM1); + break; + + case Opt_trunc_xino: + au_opt_set(sbinfo->si_mntflags, TRUNC_XINO); + break; + case Opt_notrunc_xino: + au_opt_clr(sbinfo->si_mntflags, TRUNC_XINO); + break; + + case Opt_trunc_xino_path: + case Opt_itrunc_xino: + err = au_xino_trunc(sb, opt->xino_itrunc.bindex); + if (!err) + err = 1; + break; + + case Opt_trunc_xib: + au_fset_opts(opts->flags, TRUNC_XIB); + break; + case Opt_notrunc_xib: + au_fclr_opts(opts->flags, TRUNC_XIB); + break; + + case Opt_acl: + sb->s_flags |= MS_POSIXACL; + break; + case Opt_noacl: + sb->s_flags &= ~MS_POSIXACL; + break; + + default: + err = 0; + break; + } + + return err; +} + +/* + * returns tri-state. + * plus: processed without an error + * zero: unprocessed + * minus: error + */ +static int au_opt_br(struct super_block *sb, struct au_opt *opt, + struct au_opts *opts) +{ + int err, do_refresh; + + err = 0; + switch (opt->type) { + case Opt_append: + opt->add.bindex = au_sbbot(sb) + 1; + if (opt->add.bindex < 0) + opt->add.bindex = 0; + goto add; + case Opt_prepend: + opt->add.bindex = 0; + add: /* indented label */ + case Opt_add: + err = au_br_add(sb, &opt->add, + au_ftest_opts(opts->flags, REMOUNT)); + if (!err) { + err = 1; + au_fset_opts(opts->flags, REFRESH); + } + break; + + case Opt_del: + case Opt_idel: + err = au_br_del(sb, &opt->del, + au_ftest_opts(opts->flags, REMOUNT)); + if (!err) { + err = 1; + au_fset_opts(opts->flags, TRUNC_XIB); + au_fset_opts(opts->flags, REFRESH); + } + break; + + case Opt_mod: + case Opt_imod: + err = au_br_mod(sb, &opt->mod, + au_ftest_opts(opts->flags, REMOUNT), + &do_refresh); + if (!err) { + err = 1; + if (do_refresh) + au_fset_opts(opts->flags, REFRESH); + } + break; + } + + return err; +} + +static int au_opt_xino(struct super_block *sb, struct au_opt *opt, + struct au_opt_xino **opt_xino, + struct au_opts *opts) +{ + int err; + aufs_bindex_t bbot, bindex; + struct dentry *root, *parent, *h_root; + + err = 0; + switch (opt->type) { + case Opt_xino: + err = au_xino_set(sb, &opt->xino, + !!au_ftest_opts(opts->flags, REMOUNT)); + if (unlikely(err)) + break; + + *opt_xino = &opt->xino; + au_xino_brid_set(sb, -1); + + /* safe d_parent access */ + parent = opt->xino.file->f_path.dentry->d_parent; + root = sb->s_root; + bbot = au_sbbot(sb); + for (bindex = 0; bindex <= bbot; bindex++) { + h_root = au_h_dptr(root, bindex); + if (h_root == parent) { + au_xino_brid_set(sb, au_sbr_id(sb, bindex)); + break; + } + } + break; + + case Opt_noxino: + au_xino_clr(sb); + au_xino_brid_set(sb, -1); + *opt_xino = (void *)-1; + break; + } + + return err; +} + +int au_opts_verify(struct super_block *sb, unsigned long sb_flags, + unsigned int pending) +{ + int err, fhsm; + aufs_bindex_t bindex, bbot; + unsigned char do_plink, skip, do_free, can_no_dreval; + struct au_branch *br; + struct au_wbr *wbr; + struct dentry *root, *dentry; + struct inode *dir, *h_dir; + struct au_sbinfo *sbinfo; + struct au_hinode *hdir; + + SiMustAnyLock(sb); + + sbinfo = au_sbi(sb); + AuDebugOn(!(sbinfo->si_mntflags & AuOptMask_UDBA)); + + if (!(sb_flags & MS_RDONLY)) { + if (unlikely(!au_br_writable(au_sbr_perm(sb, 0)))) + pr_warn("first branch should be rw\n"); + if (unlikely(au_opt_test(sbinfo->si_mntflags, SHWH))) + pr_warn_once("shwh should be used with ro\n"); + } + + if (au_opt_test((sbinfo->si_mntflags | pending), UDBA_HNOTIFY) + && !au_opt_test(sbinfo->si_mntflags, XINO)) + pr_warn_once("udba=*notify requires xino\n"); + + if (au_opt_test(sbinfo->si_mntflags, DIRPERM1)) + pr_warn_once("dirperm1 breaks the protection" + " by the permission bits on the lower branch\n"); + + err = 0; + fhsm = 0; + root = sb->s_root; + dir = d_inode(root); + do_plink = !!au_opt_test(sbinfo->si_mntflags, PLINK); + can_no_dreval = !!au_opt_test((sbinfo->si_mntflags | pending), + UDBA_NONE); + bbot = au_sbbot(sb); + for (bindex = 0; !err && bindex <= bbot; bindex++) { + skip = 0; + h_dir = au_h_iptr(dir, bindex); + br = au_sbr(sb, bindex); + + if ((br->br_perm & AuBrAttr_ICEX) + && !h_dir->i_op->listxattr) + br->br_perm &= ~AuBrAttr_ICEX; +#if 0 + if ((br->br_perm & AuBrAttr_ICEX_SEC) + && (au_br_sb(br)->s_flags & MS_NOSEC)) + br->br_perm &= ~AuBrAttr_ICEX_SEC; +#endif + + do_free = 0; + wbr = br->br_wbr; + if (wbr) + wbr_wh_read_lock(wbr); + + if (!au_br_writable(br->br_perm)) { + do_free = !!wbr; + skip = (!wbr + || (!wbr->wbr_whbase + && !wbr->wbr_plink + && !wbr->wbr_orph)); + } else if (!au_br_wh_linkable(br->br_perm)) { + /* skip = (!br->br_whbase && !br->br_orph); */ + skip = (!wbr || !wbr->wbr_whbase); + if (skip && wbr) { + if (do_plink) + skip = !!wbr->wbr_plink; + else + skip = !wbr->wbr_plink; + } + } else { + /* skip = (br->br_whbase && br->br_ohph); */ + skip = (wbr && wbr->wbr_whbase); + if (skip) { + if (do_plink) + skip = !!wbr->wbr_plink; + else + skip = !wbr->wbr_plink; + } + } + if (wbr) + wbr_wh_read_unlock(wbr); + + if (can_no_dreval) { + dentry = br->br_path.dentry; + spin_lock(&dentry->d_lock); + if (dentry->d_flags & + (DCACHE_OP_REVALIDATE | DCACHE_OP_WEAK_REVALIDATE)) + can_no_dreval = 0; + spin_unlock(&dentry->d_lock); + } + + if (au_br_fhsm(br->br_perm)) { + fhsm++; + AuDebugOn(!br->br_fhsm); + } + + if (skip) + continue; + + hdir = au_hi(dir, bindex); + au_hn_inode_lock_nested(hdir, AuLsc_I_PARENT); + if (wbr) + wbr_wh_write_lock(wbr); + err = au_wh_init(br, sb); + if (wbr) + wbr_wh_write_unlock(wbr); + au_hn_inode_unlock(hdir); + + if (!err && do_free) { + if (wbr) + au_delayed_kfree(wbr); + br->br_wbr = NULL; + } + } + + if (can_no_dreval) + au_fset_si(sbinfo, NO_DREVAL); + else + au_fclr_si(sbinfo, NO_DREVAL); + + if (fhsm >= 2) { + au_fset_si(sbinfo, FHSM); + for (bindex = bbot; bindex >= 0; bindex--) { + br = au_sbr(sb, bindex); + if (au_br_fhsm(br->br_perm)) { + au_fhsm_set_bottom(sb, bindex); + break; + } + } + } else { + au_fclr_si(sbinfo, FHSM); + au_fhsm_set_bottom(sb, -1); + } + + return err; +} + +int au_opts_mount(struct super_block *sb, struct au_opts *opts) +{ + int err; + unsigned int tmp; + aufs_bindex_t bindex, bbot; + struct au_opt *opt; + struct au_opt_xino *opt_xino, xino; + struct au_sbinfo *sbinfo; + struct au_branch *br; + struct inode *dir; + + SiMustWriteLock(sb); + + err = 0; + opt_xino = NULL; + opt = opts->opt; + while (err >= 0 && opt->type != Opt_tail) + err = au_opt_simple(sb, opt++, opts); + if (err > 0) + err = 0; + else if (unlikely(err < 0)) + goto out; + + /* disable xino and udba temporary */ + sbinfo = au_sbi(sb); + tmp = sbinfo->si_mntflags; + au_opt_clr(sbinfo->si_mntflags, XINO); + au_opt_set_udba(sbinfo->si_mntflags, UDBA_REVAL); + + opt = opts->opt; + while (err >= 0 && opt->type != Opt_tail) + err = au_opt_br(sb, opt++, opts); + if (err > 0) + err = 0; + else if (unlikely(err < 0)) + goto out; + + bbot = au_sbbot(sb); + if (unlikely(bbot < 0)) { + err = -EINVAL; + pr_err("no branches\n"); + goto out; + } + + if (au_opt_test(tmp, XINO)) + au_opt_set(sbinfo->si_mntflags, XINO); + opt = opts->opt; + while (!err && opt->type != Opt_tail) + err = au_opt_xino(sb, opt++, &opt_xino, opts); + if (unlikely(err)) + goto out; + + err = au_opts_verify(sb, sb->s_flags, tmp); + if (unlikely(err)) + goto out; + + /* restore xino */ + if (au_opt_test(tmp, XINO) && !opt_xino) { + xino.file = au_xino_def(sb); + err = PTR_ERR(xino.file); + if (IS_ERR(xino.file)) + goto out; + + err = au_xino_set(sb, &xino, /*remount*/0); + fput(xino.file); + if (unlikely(err)) + goto out; + } + + /* restore udba */ + tmp &= AuOptMask_UDBA; + sbinfo->si_mntflags &= ~AuOptMask_UDBA; + sbinfo->si_mntflags |= tmp; + bbot = au_sbbot(sb); + for (bindex = 0; bindex <= bbot; bindex++) { + br = au_sbr(sb, bindex); + err = au_hnotify_reset_br(tmp, br, br->br_perm); + if (unlikely(err)) + AuIOErr("hnotify failed on br %d, %d, ignored\n", + bindex, err); + /* go on even if err */ + } + if (au_opt_test(tmp, UDBA_HNOTIFY)) { + dir = d_inode(sb->s_root); + au_hn_reset(dir, au_hi_flags(dir, /*isdir*/1) & ~AuHi_XINO); + } + +out: + return err; +} + +int au_opts_remount(struct super_block *sb, struct au_opts *opts) +{ + int err, rerr; + unsigned char no_dreval; + struct inode *dir; + struct au_opt_xino *opt_xino; + struct au_opt *opt; + struct au_sbinfo *sbinfo; + + SiMustWriteLock(sb); + + err = 0; + dir = d_inode(sb->s_root); + sbinfo = au_sbi(sb); + opt_xino = NULL; + opt = opts->opt; + while (err >= 0 && opt->type != Opt_tail) { + err = au_opt_simple(sb, opt, opts); + if (!err) + err = au_opt_br(sb, opt, opts); + if (!err) + err = au_opt_xino(sb, opt, &opt_xino, opts); + opt++; + } + if (err > 0) + err = 0; + AuTraceErr(err); + /* go on even err */ + + no_dreval = !!au_ftest_si(sbinfo, NO_DREVAL); + rerr = au_opts_verify(sb, opts->sb_flags, /*pending*/0); + if (unlikely(rerr && !err)) + err = rerr; + + if (no_dreval != !!au_ftest_si(sbinfo, NO_DREVAL)) + au_fset_opts(opts->flags, REFRESH_IDOP); + + if (au_ftest_opts(opts->flags, TRUNC_XIB)) { + rerr = au_xib_trunc(sb); + if (unlikely(rerr && !err)) + err = rerr; + } + + /* will be handled by the caller */ + if (!au_ftest_opts(opts->flags, REFRESH) + && (opts->given_udba + || au_opt_test(sbinfo->si_mntflags, XINO) + || au_ftest_opts(opts->flags, REFRESH_IDOP) + )) + au_fset_opts(opts->flags, REFRESH); + + AuDbg("status 0x%x\n", opts->flags); + return err; +} + +/* ---------------------------------------------------------------------- */ + +unsigned int au_opt_udba(struct super_block *sb) +{ + return au_mntflags(sb) & AuOptMask_UDBA; +} --- linux-4.8.0.orig/fs/aufs/opts.h +++ linux-4.8.0/fs/aufs/opts.h @@ -0,0 +1,211 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * mount options/flags + */ + +#ifndef __AUFS_OPTS_H__ +#define __AUFS_OPTS_H__ + +#ifdef __KERNEL__ + +#include + +struct file; +struct super_block; + +/* ---------------------------------------------------------------------- */ + +/* mount flags */ +#define AuOpt_XINO 1 /* external inode number bitmap + and translation table */ +#define AuOpt_TRUNC_XINO (1 << 1) /* truncate xino files */ +#define AuOpt_UDBA_NONE (1 << 2) /* users direct branch access */ +#define AuOpt_UDBA_REVAL (1 << 3) +#define AuOpt_UDBA_HNOTIFY (1 << 4) +#define AuOpt_SHWH (1 << 5) /* show whiteout */ +#define AuOpt_PLINK (1 << 6) /* pseudo-link */ +#define AuOpt_DIRPERM1 (1 << 7) /* ignore the lower dir's perm + bits */ +#define AuOpt_ALWAYS_DIROPQ (1 << 9) /* policy to creating diropq */ +#define AuOpt_SUM (1 << 10) /* summation for statfs(2) */ +#define AuOpt_SUM_W (1 << 11) /* unimplemented */ +#define AuOpt_WARN_PERM (1 << 12) /* warn when add-branch */ +#define AuOpt_VERBOSE (1 << 13) /* busy inode when del-branch */ +#define AuOpt_DIO (1 << 14) /* direct io */ + +#ifndef CONFIG_AUFS_HNOTIFY +#undef AuOpt_UDBA_HNOTIFY +#define AuOpt_UDBA_HNOTIFY 0 +#endif +#ifndef CONFIG_AUFS_SHWH +#undef AuOpt_SHWH +#define AuOpt_SHWH 0 +#endif + +#define AuOpt_Def (AuOpt_XINO \ + | AuOpt_UDBA_REVAL \ + | AuOpt_PLINK \ + /* | AuOpt_DIRPERM1 */ \ + | AuOpt_WARN_PERM) +#define AuOptMask_UDBA (AuOpt_UDBA_NONE \ + | AuOpt_UDBA_REVAL \ + | AuOpt_UDBA_HNOTIFY) + +#define au_opt_test(flags, name) (flags & AuOpt_##name) +#define au_opt_set(flags, name) do { \ + BUILD_BUG_ON(AuOpt_##name & AuOptMask_UDBA); \ + ((flags) |= AuOpt_##name); \ +} while (0) +#define au_opt_set_udba(flags, name) do { \ + (flags) &= ~AuOptMask_UDBA; \ + ((flags) |= AuOpt_##name); \ +} while (0) +#define au_opt_clr(flags, name) do { \ + ((flags) &= ~AuOpt_##name); \ +} while (0) + +static inline unsigned int au_opts_plink(unsigned int mntflags) +{ +#ifdef CONFIG_PROC_FS + return mntflags; +#else + return mntflags & ~AuOpt_PLINK; +#endif +} + +/* ---------------------------------------------------------------------- */ + +/* policies to select one among multiple writable branches */ +enum { + AuWbrCreate_TDP, /* top down parent */ + AuWbrCreate_RR, /* round robin */ + AuWbrCreate_MFS, /* most free space */ + AuWbrCreate_MFSV, /* mfs with seconds */ + AuWbrCreate_MFSRR, /* mfs then rr */ + AuWbrCreate_MFSRRV, /* mfs then rr with seconds */ + AuWbrCreate_PMFS, /* parent and mfs */ + AuWbrCreate_PMFSV, /* parent and mfs with seconds */ + AuWbrCreate_PMFSRR, /* parent, mfs and round-robin */ + AuWbrCreate_PMFSRRV, /* plus seconds */ + + AuWbrCreate_Def = AuWbrCreate_TDP +}; + +enum { + AuWbrCopyup_TDP, /* top down parent */ + AuWbrCopyup_BUP, /* bottom up parent */ + AuWbrCopyup_BU, /* bottom up */ + + AuWbrCopyup_Def = AuWbrCopyup_TDP +}; + +/* ---------------------------------------------------------------------- */ + +struct au_opt_add { + aufs_bindex_t bindex; + char *pathname; + int perm; + struct path path; +}; + +struct au_opt_del { + char *pathname; + struct path h_path; +}; + +struct au_opt_mod { + char *path; + int perm; + struct dentry *h_root; +}; + +struct au_opt_xino { + char *path; + struct file *file; +}; + +struct au_opt_xino_itrunc { + aufs_bindex_t bindex; +}; + +struct au_opt_wbr_create { + int wbr_create; + int mfs_second; + unsigned long long mfsrr_watermark; +}; + +struct au_opt { + int type; + union { + struct au_opt_xino xino; + struct au_opt_xino_itrunc xino_itrunc; + struct au_opt_add add; + struct au_opt_del del; + struct au_opt_mod mod; + int dirwh; + int rdcache; + unsigned int rdblk; + unsigned int rdhash; + int udba; + struct au_opt_wbr_create wbr_create; + int wbr_copyup; + unsigned int fhsm_second; + }; +}; + +/* opts flags */ +#define AuOpts_REMOUNT 1 +#define AuOpts_REFRESH (1 << 1) +#define AuOpts_TRUNC_XIB (1 << 2) +#define AuOpts_REFRESH_DYAOP (1 << 3) +#define AuOpts_REFRESH_IDOP (1 << 4) +#define au_ftest_opts(flags, name) ((flags) & AuOpts_##name) +#define au_fset_opts(flags, name) \ + do { (flags) |= AuOpts_##name; } while (0) +#define au_fclr_opts(flags, name) \ + do { (flags) &= ~AuOpts_##name; } while (0) + +struct au_opts { + struct au_opt *opt; + int max_opt; + + unsigned int given_udba; + unsigned int flags; + unsigned long sb_flags; +}; + +/* ---------------------------------------------------------------------- */ + +/* opts.c */ +void au_optstr_br_perm(au_br_perm_str_t *str, int perm); +const char *au_optstr_udba(int udba); +const char *au_optstr_wbr_copyup(int wbr_copyup); +const char *au_optstr_wbr_create(int wbr_create); + +void au_opts_free(struct au_opts *opts); +int au_opts_parse(struct super_block *sb, char *str, struct au_opts *opts); +int au_opts_verify(struct super_block *sb, unsigned long sb_flags, + unsigned int pending); +int au_opts_mount(struct super_block *sb, struct au_opts *opts); +int au_opts_remount(struct super_block *sb, struct au_opts *opts); + +unsigned int au_opt_udba(struct super_block *sb); + +#endif /* __KERNEL__ */ +#endif /* __AUFS_OPTS_H__ */ --- linux-4.8.0.orig/fs/aufs/plink.c +++ linux-4.8.0/fs/aufs/plink.c @@ -0,0 +1,514 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * pseudo-link + */ + +#include "aufs.h" + +/* + * the pseudo-link maintenance mode. + * during a user process maintains the pseudo-links, + * prohibit adding a new plink and branch manipulation. + * + * Flags + * NOPLM: + * For entry functions which will handle plink, and i_mutex is already held + * in VFS. + * They cannot wait and should return an error at once. + * Callers has to check the error. + * NOPLMW: + * For entry functions which will handle plink, but i_mutex is not held + * in VFS. + * They can wait the plink maintenance mode to finish. + * + * They behave like F_SETLK and F_SETLKW. + * If the caller never handle plink, then both flags are unnecessary. + */ + +int au_plink_maint(struct super_block *sb, int flags) +{ + int err; + pid_t pid, ppid; + struct task_struct *parent, *prev; + struct au_sbinfo *sbi; + + SiMustAnyLock(sb); + + err = 0; + if (!au_opt_test(au_mntflags(sb), PLINK)) + goto out; + + sbi = au_sbi(sb); + pid = sbi->si_plink_maint_pid; + if (!pid || pid == current->pid) + goto out; + + /* todo: it highly depends upon /sbin/mount.aufs */ + prev = NULL; + parent = current; + ppid = 0; + rcu_read_lock(); + while (1) { + parent = rcu_dereference(parent->real_parent); + if (parent == prev) + break; + ppid = task_pid_vnr(parent); + if (pid == ppid) { + rcu_read_unlock(); + goto out; + } + prev = parent; + } + rcu_read_unlock(); + + if (au_ftest_lock(flags, NOPLMW)) { + /* if there is no i_mutex lock in VFS, we don't need to wait */ + /* AuDebugOn(!lockdep_depth(current)); */ + while (sbi->si_plink_maint_pid) { + si_read_unlock(sb); + /* gave up wake_up_bit() */ + wait_event(sbi->si_plink_wq, !sbi->si_plink_maint_pid); + + if (au_ftest_lock(flags, FLUSH)) + au_nwt_flush(&sbi->si_nowait); + si_noflush_read_lock(sb); + } + } else if (au_ftest_lock(flags, NOPLM)) { + AuDbg("ppid %d, pid %d\n", ppid, pid); + err = -EAGAIN; + } + +out: + return err; +} + +void au_plink_maint_leave(struct au_sbinfo *sbinfo) +{ + spin_lock(&sbinfo->si_plink_maint_lock); + sbinfo->si_plink_maint_pid = 0; + spin_unlock(&sbinfo->si_plink_maint_lock); + wake_up_all(&sbinfo->si_plink_wq); +} + +int au_plink_maint_enter(struct super_block *sb) +{ + int err; + struct au_sbinfo *sbinfo; + + err = 0; + sbinfo = au_sbi(sb); + /* make sure i am the only one in this fs */ + si_write_lock(sb, AuLock_FLUSH); + if (au_opt_test(au_mntflags(sb), PLINK)) { + spin_lock(&sbinfo->si_plink_maint_lock); + if (!sbinfo->si_plink_maint_pid) + sbinfo->si_plink_maint_pid = current->pid; + else + err = -EBUSY; + spin_unlock(&sbinfo->si_plink_maint_lock); + } + si_write_unlock(sb); + + return err; +} + +/* ---------------------------------------------------------------------- */ + +#ifdef CONFIG_AUFS_DEBUG +void au_plink_list(struct super_block *sb) +{ + int i; + struct au_sbinfo *sbinfo; + struct hlist_head *plink_hlist; + struct au_icntnr *icntnr; + + SiMustAnyLock(sb); + + sbinfo = au_sbi(sb); + AuDebugOn(!au_opt_test(au_mntflags(sb), PLINK)); + AuDebugOn(au_plink_maint(sb, AuLock_NOPLM)); + + for (i = 0; i < AuPlink_NHASH; i++) { + plink_hlist = &sbinfo->si_plink[i].head; + rcu_read_lock(); + hlist_for_each_entry_rcu(icntnr, plink_hlist, plink) + AuDbg("%lu\n", icntnr->vfs_inode.i_ino); + rcu_read_unlock(); + } +} +#endif + +/* is the inode pseudo-linked? */ +int au_plink_test(struct inode *inode) +{ + int found, i; + struct au_sbinfo *sbinfo; + struct hlist_head *plink_hlist; + struct au_icntnr *icntnr; + + sbinfo = au_sbi(inode->i_sb); + AuRwMustAnyLock(&sbinfo->si_rwsem); + AuDebugOn(!au_opt_test(au_mntflags(inode->i_sb), PLINK)); + AuDebugOn(au_plink_maint(inode->i_sb, AuLock_NOPLM)); + + found = 0; + i = au_plink_hash(inode->i_ino); + plink_hlist = &sbinfo->si_plink[i].head; + rcu_read_lock(); + hlist_for_each_entry_rcu(icntnr, plink_hlist, plink) + if (&icntnr->vfs_inode == inode) { + found = 1; + break; + } + rcu_read_unlock(); + return found; +} + +/* ---------------------------------------------------------------------- */ + +/* + * generate a name for plink. + * the file will be stored under AUFS_WH_PLINKDIR. + */ +/* 20 is max digits length of ulong 64 */ +#define PLINK_NAME_LEN ((20 + 1) * 2) + +static int plink_name(char *name, int len, struct inode *inode, + aufs_bindex_t bindex) +{ + int rlen; + struct inode *h_inode; + + h_inode = au_h_iptr(inode, bindex); + rlen = snprintf(name, len, "%lu.%lu", inode->i_ino, h_inode->i_ino); + return rlen; +} + +struct au_do_plink_lkup_args { + struct dentry **errp; + struct qstr *tgtname; + struct dentry *h_parent; + struct au_branch *br; +}; + +static struct dentry *au_do_plink_lkup(struct qstr *tgtname, + struct dentry *h_parent, + struct au_branch *br) +{ + struct dentry *h_dentry; + struct inode *h_inode; + + h_inode = d_inode(h_parent); + inode_lock_nested(h_inode, AuLsc_I_CHILD2); + h_dentry = vfsub_lkup_one(tgtname, h_parent); + inode_unlock(h_inode); + return h_dentry; +} + +static void au_call_do_plink_lkup(void *args) +{ + struct au_do_plink_lkup_args *a = args; + *a->errp = au_do_plink_lkup(a->tgtname, a->h_parent, a->br); +} + +/* lookup the plink-ed @inode under the branch at @bindex */ +struct dentry *au_plink_lkup(struct inode *inode, aufs_bindex_t bindex) +{ + struct dentry *h_dentry, *h_parent; + struct au_branch *br; + int wkq_err; + char a[PLINK_NAME_LEN]; + struct qstr tgtname = QSTR_INIT(a, 0); + + AuDebugOn(au_plink_maint(inode->i_sb, AuLock_NOPLM)); + + br = au_sbr(inode->i_sb, bindex); + h_parent = br->br_wbr->wbr_plink; + tgtname.len = plink_name(a, sizeof(a), inode, bindex); + + if (!uid_eq(current_fsuid(), GLOBAL_ROOT_UID)) { + struct au_do_plink_lkup_args args = { + .errp = &h_dentry, + .tgtname = &tgtname, + .h_parent = h_parent, + .br = br + }; + + wkq_err = au_wkq_wait(au_call_do_plink_lkup, &args); + if (unlikely(wkq_err)) + h_dentry = ERR_PTR(wkq_err); + } else + h_dentry = au_do_plink_lkup(&tgtname, h_parent, br); + + return h_dentry; +} + +/* create a pseudo-link */ +static int do_whplink(struct qstr *tgt, struct dentry *h_parent, + struct dentry *h_dentry, struct au_branch *br) +{ + int err; + struct path h_path = { + .mnt = au_br_mnt(br) + }; + struct inode *h_dir, *delegated; + + h_dir = d_inode(h_parent); + inode_lock_nested(h_dir, AuLsc_I_CHILD2); +again: + h_path.dentry = vfsub_lkup_one(tgt, h_parent); + err = PTR_ERR(h_path.dentry); + if (IS_ERR(h_path.dentry)) + goto out; + + err = 0; + /* wh.plink dir is not monitored */ + /* todo: is it really safe? */ + if (d_is_positive(h_path.dentry) + && d_inode(h_path.dentry) != d_inode(h_dentry)) { + delegated = NULL; + err = vfsub_unlink(h_dir, &h_path, &delegated, /*force*/0); + if (unlikely(err == -EWOULDBLOCK)) { + pr_warn("cannot retry for NFSv4 delegation" + " for an internal unlink\n"); + iput(delegated); + } + dput(h_path.dentry); + h_path.dentry = NULL; + if (!err) + goto again; + } + if (!err && d_is_negative(h_path.dentry)) { + delegated = NULL; + err = vfsub_link(h_dentry, h_dir, &h_path, &delegated); + if (unlikely(err == -EWOULDBLOCK)) { + pr_warn("cannot retry for NFSv4 delegation" + " for an internal link\n"); + iput(delegated); + } + } + dput(h_path.dentry); + +out: + inode_unlock(h_dir); + return err; +} + +struct do_whplink_args { + int *errp; + struct qstr *tgt; + struct dentry *h_parent; + struct dentry *h_dentry; + struct au_branch *br; +}; + +static void call_do_whplink(void *args) +{ + struct do_whplink_args *a = args; + *a->errp = do_whplink(a->tgt, a->h_parent, a->h_dentry, a->br); +} + +static int whplink(struct dentry *h_dentry, struct inode *inode, + aufs_bindex_t bindex, struct au_branch *br) +{ + int err, wkq_err; + struct au_wbr *wbr; + struct dentry *h_parent; + char a[PLINK_NAME_LEN]; + struct qstr tgtname = QSTR_INIT(a, 0); + + wbr = au_sbr(inode->i_sb, bindex)->br_wbr; + h_parent = wbr->wbr_plink; + tgtname.len = plink_name(a, sizeof(a), inode, bindex); + + /* always superio. */ + if (!uid_eq(current_fsuid(), GLOBAL_ROOT_UID)) { + struct do_whplink_args args = { + .errp = &err, + .tgt = &tgtname, + .h_parent = h_parent, + .h_dentry = h_dentry, + .br = br + }; + wkq_err = au_wkq_wait(call_do_whplink, &args); + if (unlikely(wkq_err)) + err = wkq_err; + } else + err = do_whplink(&tgtname, h_parent, h_dentry, br); + + return err; +} + +/* + * create a new pseudo-link for @h_dentry on @bindex. + * the linked inode is held in aufs @inode. + */ +void au_plink_append(struct inode *inode, aufs_bindex_t bindex, + struct dentry *h_dentry) +{ + struct super_block *sb; + struct au_sbinfo *sbinfo; + struct hlist_head *plink_hlist; + struct au_icntnr *icntnr; + struct au_sphlhead *sphl; + int found, err, cnt, i; + + sb = inode->i_sb; + sbinfo = au_sbi(sb); + AuDebugOn(!au_opt_test(au_mntflags(sb), PLINK)); + AuDebugOn(au_plink_maint(sb, AuLock_NOPLM)); + + found = au_plink_test(inode); + if (found) + return; + + i = au_plink_hash(inode->i_ino); + sphl = sbinfo->si_plink + i; + plink_hlist = &sphl->head; + au_igrab(inode); + + spin_lock(&sphl->spin); + hlist_for_each_entry(icntnr, plink_hlist, plink) { + if (&icntnr->vfs_inode == inode) { + found = 1; + break; + } + } + if (!found) { + icntnr = container_of(inode, struct au_icntnr, vfs_inode); + hlist_add_head_rcu(&icntnr->plink, plink_hlist); + } + spin_unlock(&sphl->spin); + if (!found) { + cnt = au_sphl_count(sphl); +#define msg "unexpectedly unblanced or too many pseudo-links" + if (cnt > AUFS_PLINK_WARN) + AuWarn1(msg ", %d\n", cnt); +#undef msg + err = whplink(h_dentry, inode, bindex, au_sbr(sb, bindex)); + if (unlikely(err)) { + pr_warn("err %d, damaged pseudo link.\n", err); + au_sphl_del_rcu(&icntnr->plink, sphl); + iput(&icntnr->vfs_inode); + } + } else + iput(&icntnr->vfs_inode); +} + +/* free all plinks */ +void au_plink_put(struct super_block *sb, int verbose) +{ + int i, warned; + struct au_sbinfo *sbinfo; + struct hlist_head *plink_hlist; + struct hlist_node *tmp; + struct au_icntnr *icntnr; + + SiMustWriteLock(sb); + + sbinfo = au_sbi(sb); + AuDebugOn(!au_opt_test(au_mntflags(sb), PLINK)); + AuDebugOn(au_plink_maint(sb, AuLock_NOPLM)); + + /* no spin_lock since sbinfo is write-locked */ + warned = 0; + for (i = 0; i < AuPlink_NHASH; i++) { + plink_hlist = &sbinfo->si_plink[i].head; + if (!warned && verbose && !hlist_empty(plink_hlist)) { + pr_warn("pseudo-link is not flushed"); + warned = 1; + } + hlist_for_each_entry_safe(icntnr, tmp, plink_hlist, plink) + iput(&icntnr->vfs_inode); + INIT_HLIST_HEAD(plink_hlist); + } +} + +void au_plink_clean(struct super_block *sb, int verbose) +{ + struct dentry *root; + + root = sb->s_root; + aufs_write_lock(root); + if (au_opt_test(au_mntflags(sb), PLINK)) + au_plink_put(sb, verbose); + aufs_write_unlock(root); +} + +static int au_plink_do_half_refresh(struct inode *inode, aufs_bindex_t br_id) +{ + int do_put; + aufs_bindex_t btop, bbot, bindex; + + do_put = 0; + btop = au_ibtop(inode); + bbot = au_ibbot(inode); + if (btop >= 0) { + for (bindex = btop; bindex <= bbot; bindex++) { + if (!au_h_iptr(inode, bindex) + || au_ii_br_id(inode, bindex) != br_id) + continue; + au_set_h_iptr(inode, bindex, NULL, 0); + do_put = 1; + break; + } + if (do_put) + for (bindex = btop; bindex <= bbot; bindex++) + if (au_h_iptr(inode, bindex)) { + do_put = 0; + break; + } + } else + do_put = 1; + + return do_put; +} + +/* free the plinks on a branch specified by @br_id */ +void au_plink_half_refresh(struct super_block *sb, aufs_bindex_t br_id) +{ + struct au_sbinfo *sbinfo; + struct hlist_head *plink_hlist; + struct hlist_node *tmp; + struct au_icntnr *icntnr; + struct inode *inode; + int i, do_put; + + SiMustWriteLock(sb); + + sbinfo = au_sbi(sb); + AuDebugOn(!au_opt_test(au_mntflags(sb), PLINK)); + AuDebugOn(au_plink_maint(sb, AuLock_NOPLM)); + + /* no spin_lock since sbinfo is write-locked */ + for (i = 0; i < AuPlink_NHASH; i++) { + plink_hlist = &sbinfo->si_plink[i].head; + hlist_for_each_entry_safe(icntnr, tmp, plink_hlist, plink) { + inode = au_igrab(&icntnr->vfs_inode); + ii_write_lock_child(inode); + do_put = au_plink_do_half_refresh(inode, br_id); + if (do_put) { + hlist_del(&icntnr->plink); + iput(inode); + } + ii_write_unlock(inode); + iput(inode); + } + } +} --- linux-4.8.0.orig/fs/aufs/poll.c +++ linux-4.8.0/fs/aufs/poll.c @@ -0,0 +1,52 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * poll operation + * There is only one filesystem which implements ->poll operation, currently. + */ + +#include "aufs.h" + +unsigned int aufs_poll(struct file *file, poll_table *wait) +{ + unsigned int mask; + int err; + struct file *h_file; + struct super_block *sb; + + /* We should pretend an error happened. */ + mask = POLLERR /* | POLLIN | POLLOUT */; + sb = file->f_path.dentry->d_sb; + si_read_lock(sb, AuLock_FLUSH | AuLock_NOPLMW); + + h_file = au_read_pre(file, /*keep_fi*/0); + err = PTR_ERR(h_file); + if (IS_ERR(h_file)) + goto out; + + /* it is not an error if h_file has no operation */ + mask = DEFAULT_POLLMASK; + if (h_file->f_op->poll) + mask = h_file->f_op->poll(h_file, wait); + fput(h_file); /* instead of au_read_post() */ + +out: + si_read_unlock(sb); + AuTraceErr((int)mask); + return mask; +} --- linux-4.8.0.orig/fs/aufs/posix_acl.c +++ linux-4.8.0/fs/aufs/posix_acl.c @@ -0,0 +1,98 @@ +/* + * Copyright (C) 2014-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * posix acl operations + */ + +#include +#include "aufs.h" + +struct posix_acl *aufs_get_acl(struct inode *inode, int type) +{ + struct posix_acl *acl; + int err; + aufs_bindex_t bindex; + struct inode *h_inode; + struct super_block *sb; + + acl = NULL; + sb = inode->i_sb; + si_read_lock(sb, AuLock_FLUSH); + ii_read_lock_child(inode); + if (!(sb->s_flags & MS_POSIXACL)) + goto out; + + bindex = au_ibtop(inode); + h_inode = au_h_iptr(inode, bindex); + if (unlikely(!h_inode + || ((h_inode->i_mode & S_IFMT) + != (inode->i_mode & S_IFMT)))) { + err = au_busy_or_stale(); + acl = ERR_PTR(err); + goto out; + } + + /* always topmost only */ + acl = get_acl(h_inode, type); + +out: + ii_read_unlock(inode); + si_read_unlock(sb); + + AuTraceErrPtr(acl); + return acl; +} + +int aufs_set_acl(struct inode *inode, struct posix_acl *acl, int type) +{ + int err; + ssize_t ssz; + struct dentry *dentry; + struct au_srxattr arg = { + .type = AU_ACL_SET, + .u.acl_set = { + .acl = acl, + .type = type + }, + }; + + IMustLock(inode); + + if (inode->i_ino == AUFS_ROOT_INO) + dentry = dget(inode->i_sb->s_root); + else { + dentry = d_find_alias(inode); + if (!dentry) + dentry = d_find_any_alias(inode); + if (!dentry) { + pr_warn("cannot handle this inode, " + "please report to aufs-users ML\n"); + err = -ENOENT; + goto out; + } + } + + ssz = au_srxattr(dentry, inode, &arg); + dput(dentry); + err = ssz; + if (ssz >= 0) + err = 0; + +out: + return err; +} --- linux-4.8.0.orig/fs/aufs/procfs.c +++ linux-4.8.0/fs/aufs/procfs.c @@ -0,0 +1,169 @@ +/* + * Copyright (C) 2010-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * procfs interfaces + */ + +#include +#include "aufs.h" + +static int au_procfs_plm_release(struct inode *inode, struct file *file) +{ + struct au_sbinfo *sbinfo; + + sbinfo = file->private_data; + if (sbinfo) { + au_plink_maint_leave(sbinfo); + kobject_put(&sbinfo->si_kobj); + } + + return 0; +} + +static void au_procfs_plm_write_clean(struct file *file) +{ + struct au_sbinfo *sbinfo; + + sbinfo = file->private_data; + if (sbinfo) + au_plink_clean(sbinfo->si_sb, /*verbose*/0); +} + +static int au_procfs_plm_write_si(struct file *file, unsigned long id) +{ + int err; + struct super_block *sb; + struct au_sbinfo *sbinfo; + + err = -EBUSY; + if (unlikely(file->private_data)) + goto out; + + sb = NULL; + /* don't use au_sbilist_lock() here */ + spin_lock(&au_sbilist.spin); + hlist_for_each_entry(sbinfo, &au_sbilist.head, si_list) + if (id == sysaufs_si_id(sbinfo)) { + kobject_get(&sbinfo->si_kobj); + sb = sbinfo->si_sb; + break; + } + spin_unlock(&au_sbilist.spin); + + err = -EINVAL; + if (unlikely(!sb)) + goto out; + + err = au_plink_maint_enter(sb); + if (!err) + /* keep kobject_get() */ + file->private_data = sbinfo; + else + kobject_put(&sbinfo->si_kobj); +out: + return err; +} + +/* + * Accept a valid "si=xxxx" only. + * Once it is accepted successfully, accept "clean" too. + */ +static ssize_t au_procfs_plm_write(struct file *file, const char __user *ubuf, + size_t count, loff_t *ppos) +{ + ssize_t err; + unsigned long id; + /* last newline is allowed */ + char buf[3 + sizeof(unsigned long) * 2 + 1]; + + err = -EACCES; + if (unlikely(!capable(CAP_SYS_ADMIN))) + goto out; + + err = -EINVAL; + if (unlikely(count > sizeof(buf))) + goto out; + + err = copy_from_user(buf, ubuf, count); + if (unlikely(err)) { + err = -EFAULT; + goto out; + } + buf[count] = 0; + + err = -EINVAL; + if (!strcmp("clean", buf)) { + au_procfs_plm_write_clean(file); + goto out_success; + } else if (unlikely(strncmp("si=", buf, 3))) + goto out; + + err = kstrtoul(buf + 3, 16, &id); + if (unlikely(err)) + goto out; + + err = au_procfs_plm_write_si(file, id); + if (unlikely(err)) + goto out; + +out_success: + err = count; /* success */ +out: + return err; +} + +static const struct file_operations au_procfs_plm_fop = { + .write = au_procfs_plm_write, + .release = au_procfs_plm_release, + .owner = THIS_MODULE +}; + +/* ---------------------------------------------------------------------- */ + +static struct proc_dir_entry *au_procfs_dir; + +void au_procfs_fin(void) +{ + remove_proc_entry(AUFS_PLINK_MAINT_NAME, au_procfs_dir); + remove_proc_entry(AUFS_PLINK_MAINT_DIR, NULL); +} + +int __init au_procfs_init(void) +{ + int err; + struct proc_dir_entry *entry; + + err = -ENOMEM; + au_procfs_dir = proc_mkdir(AUFS_PLINK_MAINT_DIR, NULL); + if (unlikely(!au_procfs_dir)) + goto out; + + entry = proc_create(AUFS_PLINK_MAINT_NAME, S_IFREG | S_IWUSR, + au_procfs_dir, &au_procfs_plm_fop); + if (unlikely(!entry)) + goto out_dir; + + err = 0; + goto out; /* success */ + + +out_dir: + remove_proc_entry(AUFS_PLINK_MAINT_DIR, NULL); +out: + return err; +} --- linux-4.8.0.orig/fs/aufs/rdu.c +++ linux-4.8.0/fs/aufs/rdu.c @@ -0,0 +1,381 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * readdir in userspace. + */ + +#include +#include +#include +#include "aufs.h" + +/* bits for struct aufs_rdu.flags */ +#define AuRdu_CALLED 1 +#define AuRdu_CONT (1 << 1) +#define AuRdu_FULL (1 << 2) +#define au_ftest_rdu(flags, name) ((flags) & AuRdu_##name) +#define au_fset_rdu(flags, name) \ + do { (flags) |= AuRdu_##name; } while (0) +#define au_fclr_rdu(flags, name) \ + do { (flags) &= ~AuRdu_##name; } while (0) + +struct au_rdu_arg { + struct dir_context ctx; + struct aufs_rdu *rdu; + union au_rdu_ent_ul ent; + unsigned long end; + + struct super_block *sb; + int err; +}; + +static int au_rdu_fill(struct dir_context *ctx, const char *name, int nlen, + loff_t offset, u64 h_ino, unsigned int d_type) +{ + int err, len; + struct au_rdu_arg *arg = container_of(ctx, struct au_rdu_arg, ctx); + struct aufs_rdu *rdu = arg->rdu; + struct au_rdu_ent ent; + + err = 0; + arg->err = 0; + au_fset_rdu(rdu->cookie.flags, CALLED); + len = au_rdu_len(nlen); + if (arg->ent.ul + len < arg->end) { + ent.ino = h_ino; + ent.bindex = rdu->cookie.bindex; + ent.type = d_type; + ent.nlen = nlen; + if (unlikely(nlen > AUFS_MAX_NAMELEN)) + ent.type = DT_UNKNOWN; + + /* unnecessary to support mmap_sem since this is a dir */ + err = -EFAULT; + if (copy_to_user(arg->ent.e, &ent, sizeof(ent))) + goto out; + if (copy_to_user(arg->ent.e->name, name, nlen)) + goto out; + /* the terminating NULL */ + if (__put_user(0, arg->ent.e->name + nlen)) + goto out; + err = 0; + /* AuDbg("%p, %.*s\n", arg->ent.p, nlen, name); */ + arg->ent.ul += len; + rdu->rent++; + } else { + err = -EFAULT; + au_fset_rdu(rdu->cookie.flags, FULL); + rdu->full = 1; + rdu->tail = arg->ent; + } + +out: + /* AuTraceErr(err); */ + return err; +} + +static int au_rdu_do(struct file *h_file, struct au_rdu_arg *arg) +{ + int err; + loff_t offset; + struct au_rdu_cookie *cookie = &arg->rdu->cookie; + + /* we don't have to care (FMODE_32BITHASH | FMODE_64BITHASH) for ext4 */ + offset = vfsub_llseek(h_file, cookie->h_pos, SEEK_SET); + err = offset; + if (unlikely(offset != cookie->h_pos)) + goto out; + + err = 0; + do { + arg->err = 0; + au_fclr_rdu(cookie->flags, CALLED); + /* smp_mb(); */ + err = vfsub_iterate_dir(h_file, &arg->ctx); + if (err >= 0) + err = arg->err; + } while (!err + && au_ftest_rdu(cookie->flags, CALLED) + && !au_ftest_rdu(cookie->flags, FULL)); + cookie->h_pos = h_file->f_pos; + +out: + AuTraceErr(err); + return err; +} + +static int au_rdu(struct file *file, struct aufs_rdu *rdu) +{ + int err; + aufs_bindex_t bbot; + struct au_rdu_arg arg = { + .ctx = { + .actor = au_rdu_fill + } + }; + struct dentry *dentry; + struct inode *inode; + struct file *h_file; + struct au_rdu_cookie *cookie = &rdu->cookie; + + err = !access_ok(VERIFY_WRITE, rdu->ent.e, rdu->sz); + if (unlikely(err)) { + err = -EFAULT; + AuTraceErr(err); + goto out; + } + rdu->rent = 0; + rdu->tail = rdu->ent; + rdu->full = 0; + arg.rdu = rdu; + arg.ent = rdu->ent; + arg.end = arg.ent.ul; + arg.end += rdu->sz; + + err = -ENOTDIR; + if (unlikely(!file->f_op->iterate && !file->f_op->iterate_shared)) + goto out; + + err = security_file_permission(file, MAY_READ); + AuTraceErr(err); + if (unlikely(err)) + goto out; + + dentry = file->f_path.dentry; + inode = d_inode(dentry); + inode_lock_shared(inode); + + arg.sb = inode->i_sb; + err = si_read_lock(arg.sb, AuLock_FLUSH | AuLock_NOPLM); + if (unlikely(err)) + goto out_mtx; + err = au_alive_dir(dentry); + if (unlikely(err)) + goto out_si; + /* todo: reval? */ + fi_read_lock(file); + + err = -EAGAIN; + if (unlikely(au_ftest_rdu(cookie->flags, CONT) + && cookie->generation != au_figen(file))) + goto out_unlock; + + err = 0; + if (!rdu->blk) { + rdu->blk = au_sbi(arg.sb)->si_rdblk; + if (!rdu->blk) + rdu->blk = au_dir_size(file, /*dentry*/NULL); + } + bbot = au_fbtop(file); + if (cookie->bindex < bbot) + cookie->bindex = bbot; + bbot = au_fbbot_dir(file); + /* AuDbg("b%d, b%d\n", cookie->bindex, bbot); */ + for (; !err && cookie->bindex <= bbot; + cookie->bindex++, cookie->h_pos = 0) { + h_file = au_hf_dir(file, cookie->bindex); + if (!h_file) + continue; + + au_fclr_rdu(cookie->flags, FULL); + err = au_rdu_do(h_file, &arg); + AuTraceErr(err); + if (unlikely(au_ftest_rdu(cookie->flags, FULL) || err)) + break; + } + AuDbg("rent %llu\n", rdu->rent); + + if (!err && !au_ftest_rdu(cookie->flags, CONT)) { + rdu->shwh = !!au_opt_test(au_sbi(arg.sb)->si_mntflags, SHWH); + au_fset_rdu(cookie->flags, CONT); + cookie->generation = au_figen(file); + } + + ii_read_lock_child(inode); + fsstack_copy_attr_atime(inode, au_h_iptr(inode, au_ibtop(inode))); + ii_read_unlock(inode); + +out_unlock: + fi_read_unlock(file); +out_si: + si_read_unlock(arg.sb); +out_mtx: + inode_unlock_shared(inode); +out: + AuTraceErr(err); + return err; +} + +static int au_rdu_ino(struct file *file, struct aufs_rdu *rdu) +{ + int err; + ino_t ino; + unsigned long long nent; + union au_rdu_ent_ul *u; + struct au_rdu_ent ent; + struct super_block *sb; + + err = 0; + nent = rdu->nent; + u = &rdu->ent; + sb = file->f_path.dentry->d_sb; + si_read_lock(sb, AuLock_FLUSH); + while (nent-- > 0) { + /* unnecessary to support mmap_sem since this is a dir */ + err = copy_from_user(&ent, u->e, sizeof(ent)); + if (!err) + err = !access_ok(VERIFY_WRITE, &u->e->ino, sizeof(ino)); + if (unlikely(err)) { + err = -EFAULT; + AuTraceErr(err); + break; + } + + /* AuDbg("b%d, i%llu\n", ent.bindex, ent.ino); */ + if (!ent.wh) + err = au_ino(sb, ent.bindex, ent.ino, ent.type, &ino); + else + err = au_wh_ino(sb, ent.bindex, ent.ino, ent.type, + &ino); + if (unlikely(err)) { + AuTraceErr(err); + break; + } + + err = __put_user(ino, &u->e->ino); + if (unlikely(err)) { + err = -EFAULT; + AuTraceErr(err); + break; + } + u->ul += au_rdu_len(ent.nlen); + } + si_read_unlock(sb); + + return err; +} + +/* ---------------------------------------------------------------------- */ + +static int au_rdu_verify(struct aufs_rdu *rdu) +{ + AuDbg("rdu{%llu, %p, %u | %u | %llu, %u, %u | " + "%llu, b%d, 0x%x, g%u}\n", + rdu->sz, rdu->ent.e, rdu->verify[AufsCtlRduV_SZ], + rdu->blk, + rdu->rent, rdu->shwh, rdu->full, + rdu->cookie.h_pos, rdu->cookie.bindex, rdu->cookie.flags, + rdu->cookie.generation); + + if (rdu->verify[AufsCtlRduV_SZ] == sizeof(*rdu)) + return 0; + + AuDbg("%u:%u\n", + rdu->verify[AufsCtlRduV_SZ], (unsigned int)sizeof(*rdu)); + return -EINVAL; +} + +long au_rdu_ioctl(struct file *file, unsigned int cmd, unsigned long arg) +{ + long err, e; + struct aufs_rdu rdu; + void __user *p = (void __user *)arg; + + err = copy_from_user(&rdu, p, sizeof(rdu)); + if (unlikely(err)) { + err = -EFAULT; + AuTraceErr(err); + goto out; + } + err = au_rdu_verify(&rdu); + if (unlikely(err)) + goto out; + + switch (cmd) { + case AUFS_CTL_RDU: + err = au_rdu(file, &rdu); + if (unlikely(err)) + break; + + e = copy_to_user(p, &rdu, sizeof(rdu)); + if (unlikely(e)) { + err = -EFAULT; + AuTraceErr(err); + } + break; + case AUFS_CTL_RDU_INO: + err = au_rdu_ino(file, &rdu); + break; + + default: + /* err = -ENOTTY; */ + err = -EINVAL; + } + +out: + AuTraceErr(err); + return err; +} + +#ifdef CONFIG_COMPAT +long au_rdu_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg) +{ + long err, e; + struct aufs_rdu rdu; + void __user *p = compat_ptr(arg); + + /* todo: get_user()? */ + err = copy_from_user(&rdu, p, sizeof(rdu)); + if (unlikely(err)) { + err = -EFAULT; + AuTraceErr(err); + goto out; + } + rdu.ent.e = compat_ptr(rdu.ent.ul); + err = au_rdu_verify(&rdu); + if (unlikely(err)) + goto out; + + switch (cmd) { + case AUFS_CTL_RDU: + err = au_rdu(file, &rdu); + if (unlikely(err)) + break; + + rdu.ent.ul = ptr_to_compat(rdu.ent.e); + rdu.tail.ul = ptr_to_compat(rdu.tail.e); + e = copy_to_user(p, &rdu, sizeof(rdu)); + if (unlikely(e)) { + err = -EFAULT; + AuTraceErr(err); + } + break; + case AUFS_CTL_RDU_INO: + err = au_rdu_ino(file, &rdu); + break; + + default: + /* err = -ENOTTY; */ + err = -EINVAL; + } + +out: + AuTraceErr(err); + return err; +} +#endif --- linux-4.8.0.orig/fs/aufs/rwsem.h +++ linux-4.8.0/fs/aufs/rwsem.h @@ -0,0 +1,198 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * simple read-write semaphore wrappers + */ + +#ifndef __AUFS_RWSEM_H__ +#define __AUFS_RWSEM_H__ + +#ifdef __KERNEL__ + +#include "debug.h" + +struct au_rwsem { + struct rw_semaphore rwsem; +#ifdef CONFIG_AUFS_DEBUG + /* just for debugging, not almighty counter */ + atomic_t rcnt, wcnt; +#endif +}; + +#ifdef CONFIG_LOCKDEP +#define au_lockdep_set_name(rw) \ + lockdep_set_class_and_name(&(rw)->rwsem, \ + /*original key*/(rw)->rwsem.dep_map.key, \ + /*name*/#rw) +#else +#define au_lockdep_set_name(rw) do {} while (0) +#endif + +#ifdef CONFIG_AUFS_DEBUG +#define AuDbgCntInit(rw) do { \ + atomic_set(&(rw)->rcnt, 0); \ + atomic_set(&(rw)->wcnt, 0); \ + smp_mb(); /* atomic set */ \ +} while (0) + +#define AuDbgCnt(rw, cnt) atomic_read(&(rw)->cnt) +#define AuDbgCntInc(rw, cnt) atomic_inc(&(rw)->cnt) +#define AuDbgCntDec(rw, cnt) WARN_ON(atomic_dec_return(&(rw)->cnt) < 0) +#define AuDbgRcntInc(rw) AuDbgCntInc(rw, rcnt) +#define AuDbgRcntDec(rw) AuDbgCntDec(rw, rcnt) +#define AuDbgWcntInc(rw) AuDbgCntInc(rw, wcnt) +#define AuDbgWcntDec(rw) AuDbgCntDec(rw, wcnt) +#else +#define AuDbgCnt(rw, cnt) 0 +#define AuDbgCntInit(rw) do {} while (0) +#define AuDbgRcntInc(rw) do {} while (0) +#define AuDbgRcntDec(rw) do {} while (0) +#define AuDbgWcntInc(rw) do {} while (0) +#define AuDbgWcntDec(rw) do {} while (0) +#endif /* CONFIG_AUFS_DEBUG */ + +/* to debug easier, do not make them inlined functions */ +#define AuRwMustNoWaiters(rw) AuDebugOn(rwsem_is_contended(&(rw)->rwsem)) +/* rwsem_is_locked() is unusable */ +#define AuRwMustReadLock(rw) AuDebugOn(AuDbgCnt(rw, rcnt) <= 0) +#define AuRwMustWriteLock(rw) AuDebugOn(AuDbgCnt(rw, wcnt) <= 0) +#define AuRwMustAnyLock(rw) AuDebugOn(AuDbgCnt(rw, rcnt) <= 0 \ + && AuDbgCnt(rw, wcnt) <= 0) +#define AuRwDestroy(rw) AuDebugOn(AuDbgCnt(rw, rcnt) \ + || AuDbgCnt(rw, wcnt)) + +#define au_rw_init(rw) do { \ + AuDbgCntInit(rw); \ + init_rwsem(&(rw)->rwsem); \ + au_lockdep_set_name(rw); \ + } while (0) + +#define au_rw_init_wlock(rw) do { \ + au_rw_init(rw); \ + down_write(&(rw)->rwsem); \ + AuDbgWcntInc(rw); \ + } while (0) + +#define au_rw_init_wlock_nested(rw, lsc) do { \ + au_rw_init(rw); \ + down_write_nested(&(rw)->rwsem, lsc); \ + AuDbgWcntInc(rw); \ + } while (0) + +static inline void au_rw_read_lock(struct au_rwsem *rw) +{ + down_read(&rw->rwsem); + AuDbgRcntInc(rw); +} + +static inline void au_rw_read_lock_nested(struct au_rwsem *rw, unsigned int lsc) +{ + down_read_nested(&rw->rwsem, lsc); + AuDbgRcntInc(rw); +} + +static inline void au_rw_read_unlock(struct au_rwsem *rw) +{ + AuRwMustReadLock(rw); + AuDbgRcntDec(rw); + up_read(&rw->rwsem); +} + +static inline void au_rw_dgrade_lock(struct au_rwsem *rw) +{ + AuRwMustWriteLock(rw); + AuDbgRcntInc(rw); + AuDbgWcntDec(rw); + downgrade_write(&rw->rwsem); +} + +static inline void au_rw_write_lock(struct au_rwsem *rw) +{ + down_write(&rw->rwsem); + AuDbgWcntInc(rw); +} + +static inline void au_rw_write_lock_nested(struct au_rwsem *rw, + unsigned int lsc) +{ + down_write_nested(&rw->rwsem, lsc); + AuDbgWcntInc(rw); +} + +static inline void au_rw_write_unlock(struct au_rwsem *rw) +{ + AuRwMustWriteLock(rw); + AuDbgWcntDec(rw); + up_write(&rw->rwsem); +} + +/* why is not _nested version defined */ +static inline int au_rw_read_trylock(struct au_rwsem *rw) +{ + int ret; + + ret = down_read_trylock(&rw->rwsem); + if (ret) + AuDbgRcntInc(rw); + return ret; +} + +static inline int au_rw_write_trylock(struct au_rwsem *rw) +{ + int ret; + + ret = down_write_trylock(&rw->rwsem); + if (ret) + AuDbgWcntInc(rw); + return ret; +} + +#undef AuDbgCntDec +#undef AuDbgRcntInc +#undef AuDbgRcntDec +#undef AuDbgWcntDec + +#define AuSimpleLockRwsemFuncs(prefix, param, rwsem) \ +static inline void prefix##_read_lock(param) \ +{ au_rw_read_lock(rwsem); } \ +static inline void prefix##_write_lock(param) \ +{ au_rw_write_lock(rwsem); } \ +static inline int prefix##_read_trylock(param) \ +{ return au_rw_read_trylock(rwsem); } \ +static inline int prefix##_write_trylock(param) \ +{ return au_rw_write_trylock(rwsem); } +/* why is not _nested version defined */ +/* static inline void prefix##_read_trylock_nested(param, lsc) +{ au_rw_read_trylock_nested(rwsem, lsc)); } +static inline void prefix##_write_trylock_nestd(param, lsc) +{ au_rw_write_trylock_nested(rwsem, lsc); } */ + +#define AuSimpleUnlockRwsemFuncs(prefix, param, rwsem) \ +static inline void prefix##_read_unlock(param) \ +{ au_rw_read_unlock(rwsem); } \ +static inline void prefix##_write_unlock(param) \ +{ au_rw_write_unlock(rwsem); } \ +static inline void prefix##_downgrade_lock(param) \ +{ au_rw_dgrade_lock(rwsem); } + +#define AuSimpleRwsemFuncs(prefix, param, rwsem) \ + AuSimpleLockRwsemFuncs(prefix, param, rwsem) \ + AuSimpleUnlockRwsemFuncs(prefix, param, rwsem) + +#endif /* __KERNEL__ */ +#endif /* __AUFS_RWSEM_H__ */ --- linux-4.8.0.orig/fs/aufs/sbinfo.c +++ linux-4.8.0/fs/aufs/sbinfo.c @@ -0,0 +1,355 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * superblock private data + */ + +#include "aufs.h" + +/* + * they are necessary regardless sysfs is disabled. + */ +void au_si_free(struct kobject *kobj) +{ + int i; + struct au_sbinfo *sbinfo; + char *locked __maybe_unused; /* debug only */ + + sbinfo = container_of(kobj, struct au_sbinfo, si_kobj); + for (i = 0; i < AuPlink_NHASH; i++) + AuDebugOn(!hlist_empty(&sbinfo->si_plink[i].head)); + AuDebugOn(atomic_read(&sbinfo->si_nowait.nw_len)); + + AuDebugOn(percpu_counter_sum(&sbinfo->si_ninodes)); + percpu_counter_destroy(&sbinfo->si_ninodes); + AuDebugOn(percpu_counter_sum(&sbinfo->si_nfiles)); + percpu_counter_destroy(&sbinfo->si_nfiles); + + au_rw_write_lock(&sbinfo->si_rwsem); + au_br_free(sbinfo); + au_rw_write_unlock(&sbinfo->si_rwsem); + + au_delayed_kfree(sbinfo->si_branch); + for (i = 0; i < AU_NPIDMAP; i++) + if (sbinfo->au_si_pid.pid_bitmap[i]) + au_delayed_kfree(sbinfo->au_si_pid.pid_bitmap[i]); + mutex_destroy(&sbinfo->au_si_pid.pid_mtx); + mutex_destroy(&sbinfo->si_xib_mtx); + AuRwDestroy(&sbinfo->si_rwsem); + + au_delayed_kfree(sbinfo); +} + +int au_si_alloc(struct super_block *sb) +{ + int err, i; + struct au_sbinfo *sbinfo; + + err = -ENOMEM; + sbinfo = kzalloc(sizeof(*sbinfo), GFP_NOFS); + if (unlikely(!sbinfo)) + goto out; + + /* will be reallocated separately */ + sbinfo->si_branch = kzalloc(sizeof(*sbinfo->si_branch), GFP_NOFS); + if (unlikely(!sbinfo->si_branch)) + goto out_sbinfo; + + err = sysaufs_si_init(sbinfo); + if (unlikely(err)) + goto out_br; + + au_nwt_init(&sbinfo->si_nowait); + au_rw_init_wlock(&sbinfo->si_rwsem); + mutex_init(&sbinfo->au_si_pid.pid_mtx); + + percpu_counter_init(&sbinfo->si_ninodes, 0, GFP_NOFS); + percpu_counter_init(&sbinfo->si_nfiles, 0, GFP_NOFS); + + sbinfo->si_bbot = -1; + sbinfo->si_last_br_id = AUFS_BRANCH_MAX / 2; + + sbinfo->si_wbr_copyup = AuWbrCopyup_Def; + sbinfo->si_wbr_create = AuWbrCreate_Def; + sbinfo->si_wbr_copyup_ops = au_wbr_copyup_ops + sbinfo->si_wbr_copyup; + sbinfo->si_wbr_create_ops = au_wbr_create_ops + sbinfo->si_wbr_create; + + au_fhsm_init(sbinfo); + + sbinfo->si_mntflags = au_opts_plink(AuOpt_Def); + + sbinfo->si_xino_jiffy = jiffies; + sbinfo->si_xino_expire + = msecs_to_jiffies(AUFS_XINO_DEF_SEC * MSEC_PER_SEC); + mutex_init(&sbinfo->si_xib_mtx); + sbinfo->si_xino_brid = -1; + /* leave si_xib_last_pindex and si_xib_next_bit */ + + au_sphl_init(&sbinfo->si_aopen); + + sbinfo->si_rdcache = msecs_to_jiffies(AUFS_RDCACHE_DEF * MSEC_PER_SEC); + sbinfo->si_rdblk = AUFS_RDBLK_DEF; + sbinfo->si_rdhash = AUFS_RDHASH_DEF; + sbinfo->si_dirwh = AUFS_DIRWH_DEF; + + for (i = 0; i < AuPlink_NHASH; i++) + au_sphl_init(sbinfo->si_plink + i); + init_waitqueue_head(&sbinfo->si_plink_wq); + spin_lock_init(&sbinfo->si_plink_maint_lock); + + au_sphl_init(&sbinfo->si_files); + + /* with getattr by default */ + sbinfo->si_iop_array = aufs_iop; + + /* leave other members for sysaufs and si_mnt. */ + sbinfo->si_sb = sb; + sb->s_fs_info = sbinfo; + si_pid_set(sb); + return 0; /* success */ + +out_br: + au_delayed_kfree(sbinfo->si_branch); +out_sbinfo: + au_delayed_kfree(sbinfo); +out: + return err; +} + +int au_sbr_realloc(struct au_sbinfo *sbinfo, int nbr, int may_shrink) +{ + int err, sz; + struct au_branch **brp; + + AuRwMustWriteLock(&sbinfo->si_rwsem); + + err = -ENOMEM; + sz = sizeof(*brp) * (sbinfo->si_bbot + 1); + if (unlikely(!sz)) + sz = sizeof(*brp); + brp = au_kzrealloc(sbinfo->si_branch, sz, sizeof(*brp) * nbr, GFP_NOFS, + may_shrink); + if (brp) { + sbinfo->si_branch = brp; + err = 0; + } + + return err; +} + +/* ---------------------------------------------------------------------- */ + +unsigned int au_sigen_inc(struct super_block *sb) +{ + unsigned int gen; + struct inode *inode; + + SiMustWriteLock(sb); + + gen = ++au_sbi(sb)->si_generation; + au_update_digen(sb->s_root); + inode = d_inode(sb->s_root); + au_update_iigen(inode, /*half*/0); + inode->i_version++; + return gen; +} + +aufs_bindex_t au_new_br_id(struct super_block *sb) +{ + aufs_bindex_t br_id; + int i; + struct au_sbinfo *sbinfo; + + SiMustWriteLock(sb); + + sbinfo = au_sbi(sb); + for (i = 0; i <= AUFS_BRANCH_MAX; i++) { + br_id = ++sbinfo->si_last_br_id; + AuDebugOn(br_id < 0); + if (br_id && au_br_index(sb, br_id) < 0) + return br_id; + } + + return -1; +} + +/* ---------------------------------------------------------------------- */ + +/* it is ok that new 'nwt' tasks are appended while we are sleeping */ +int si_read_lock(struct super_block *sb, int flags) +{ + int err; + + err = 0; + if (au_ftest_lock(flags, FLUSH)) + au_nwt_flush(&au_sbi(sb)->si_nowait); + + si_noflush_read_lock(sb); + err = au_plink_maint(sb, flags); + if (unlikely(err)) + si_read_unlock(sb); + + return err; +} + +int si_write_lock(struct super_block *sb, int flags) +{ + int err; + + if (au_ftest_lock(flags, FLUSH)) + au_nwt_flush(&au_sbi(sb)->si_nowait); + + si_noflush_write_lock(sb); + err = au_plink_maint(sb, flags); + if (unlikely(err)) + si_write_unlock(sb); + + return err; +} + +/* dentry and super_block lock. call at entry point */ +int aufs_read_lock(struct dentry *dentry, int flags) +{ + int err; + struct super_block *sb; + + sb = dentry->d_sb; + err = si_read_lock(sb, flags); + if (unlikely(err)) + goto out; + + if (au_ftest_lock(flags, DW)) + di_write_lock_child(dentry); + else + di_read_lock_child(dentry, flags); + + if (au_ftest_lock(flags, GEN)) { + err = au_digen_test(dentry, au_sigen(sb)); + if (!au_opt_test(au_mntflags(sb), UDBA_NONE)) + AuDebugOn(!err && au_dbrange_test(dentry)); + else if (!err) + err = au_dbrange_test(dentry); + if (unlikely(err)) + aufs_read_unlock(dentry, flags); + } + +out: + return err; +} + +void aufs_read_unlock(struct dentry *dentry, int flags) +{ + if (au_ftest_lock(flags, DW)) + di_write_unlock(dentry); + else + di_read_unlock(dentry, flags); + si_read_unlock(dentry->d_sb); +} + +void aufs_write_lock(struct dentry *dentry) +{ + si_write_lock(dentry->d_sb, AuLock_FLUSH | AuLock_NOPLMW); + di_write_lock_child(dentry); +} + +void aufs_write_unlock(struct dentry *dentry) +{ + di_write_unlock(dentry); + si_write_unlock(dentry->d_sb); +} + +int aufs_read_and_write_lock2(struct dentry *d1, struct dentry *d2, int flags) +{ + int err; + unsigned int sigen; + struct super_block *sb; + + sb = d1->d_sb; + err = si_read_lock(sb, flags); + if (unlikely(err)) + goto out; + + di_write_lock2_child(d1, d2, au_ftest_lock(flags, DIRS)); + + if (au_ftest_lock(flags, GEN)) { + sigen = au_sigen(sb); + err = au_digen_test(d1, sigen); + AuDebugOn(!err && au_dbrange_test(d1)); + if (!err) { + err = au_digen_test(d2, sigen); + AuDebugOn(!err && au_dbrange_test(d2)); + } + if (unlikely(err)) + aufs_read_and_write_unlock2(d1, d2); + } + +out: + return err; +} + +void aufs_read_and_write_unlock2(struct dentry *d1, struct dentry *d2) +{ + di_write_unlock2(d1, d2); + si_read_unlock(d1->d_sb); +} + +/* ---------------------------------------------------------------------- */ + +static void si_pid_alloc(struct au_si_pid *au_si_pid, int idx) +{ + unsigned long *p; + + BUILD_BUG_ON(sizeof(unsigned long) != + sizeof(*au_si_pid->pid_bitmap)); + + mutex_lock(&au_si_pid->pid_mtx); + p = au_si_pid->pid_bitmap[idx]; + while (!p) { + /* + * bad approach. + * but keeping 'si_pid_set()' void is more important. + */ + p = kcalloc(BITS_TO_LONGS(AU_PIDSTEP), + sizeof(*au_si_pid->pid_bitmap), + GFP_NOFS); + if (p) + break; + cond_resched(); + } + au_si_pid->pid_bitmap[idx] = p; + mutex_unlock(&au_si_pid->pid_mtx); +} + +void si_pid_set(struct super_block *sb) +{ + pid_t bit; + int idx; + unsigned long *bitmap; + struct au_si_pid *au_si_pid; + + si_pid_idx_bit(&idx, &bit); + au_si_pid = &au_sbi(sb)->au_si_pid; + bitmap = au_si_pid->pid_bitmap[idx]; + if (!bitmap) { + si_pid_alloc(au_si_pid, idx); + bitmap = au_si_pid->pid_bitmap[idx]; + } + AuDebugOn(test_bit(bit, bitmap)); + set_bit(bit, bitmap); + /* smp_mb(); */ +} --- linux-4.8.0.orig/fs/aufs/spl.h +++ linux-4.8.0/fs/aufs/spl.h @@ -0,0 +1,113 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * simple list protected by a spinlock + */ + +#ifndef __AUFS_SPL_H__ +#define __AUFS_SPL_H__ + +#ifdef __KERNEL__ + +#if 0 +struct au_splhead { + spinlock_t spin; + struct list_head head; +}; + +static inline void au_spl_init(struct au_splhead *spl) +{ + spin_lock_init(&spl->spin); + INIT_LIST_HEAD(&spl->head); +} + +static inline void au_spl_add(struct list_head *list, struct au_splhead *spl) +{ + spin_lock(&spl->spin); + list_add(list, &spl->head); + spin_unlock(&spl->spin); +} + +static inline void au_spl_del(struct list_head *list, struct au_splhead *spl) +{ + spin_lock(&spl->spin); + list_del(list); + spin_unlock(&spl->spin); +} + +static inline void au_spl_del_rcu(struct list_head *list, + struct au_splhead *spl) +{ + spin_lock(&spl->spin); + list_del_rcu(list); + spin_unlock(&spl->spin); +} +#endif + +/* ---------------------------------------------------------------------- */ + +struct au_sphlhead { + spinlock_t spin; + struct hlist_head head; +}; + +static inline void au_sphl_init(struct au_sphlhead *sphl) +{ + spin_lock_init(&sphl->spin); + INIT_HLIST_HEAD(&sphl->head); +} + +static inline void au_sphl_add(struct hlist_node *hlist, + struct au_sphlhead *sphl) +{ + spin_lock(&sphl->spin); + hlist_add_head(hlist, &sphl->head); + spin_unlock(&sphl->spin); +} + +static inline void au_sphl_del(struct hlist_node *hlist, + struct au_sphlhead *sphl) +{ + spin_lock(&sphl->spin); + hlist_del(hlist); + spin_unlock(&sphl->spin); +} + +static inline void au_sphl_del_rcu(struct hlist_node *hlist, + struct au_sphlhead *sphl) +{ + spin_lock(&sphl->spin); + hlist_del_rcu(hlist); + spin_unlock(&sphl->spin); +} + +static inline unsigned long au_sphl_count(struct au_sphlhead *sphl) +{ + unsigned long cnt; + struct hlist_node *pos; + + cnt = 0; + spin_lock(&sphl->spin); + hlist_for_each(pos, &sphl->head) + cnt++; + spin_unlock(&sphl->spin); + return cnt; +} + +#endif /* __KERNEL__ */ +#endif /* __AUFS_SPL_H__ */ --- linux-4.8.0.orig/fs/aufs/super.c +++ linux-4.8.0/fs/aufs/super.c @@ -0,0 +1,1041 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * mount and super_block operations + */ + +#include +#include +#include +#include +#include "aufs.h" + +/* + * super_operations + */ +static struct inode *aufs_alloc_inode(struct super_block *sb __maybe_unused) +{ + struct au_icntnr *c; + + c = au_cache_alloc_icntnr(); + if (c) { + au_icntnr_init(c); + c->vfs_inode.i_version = 1; /* sigen(sb); */ + c->iinfo.ii_hinode = NULL; + return &c->vfs_inode; + } + return NULL; +} + +static void aufs_destroy_inode_cb(struct rcu_head *head) +{ + struct inode *inode = container_of(head, struct inode, i_rcu); + + au_cache_dfree_icntnr(container_of(inode, struct au_icntnr, vfs_inode)); +} + +static void aufs_destroy_inode(struct inode *inode) +{ + if (!au_is_bad_inode(inode)) + au_iinfo_fin(inode); + call_rcu(&inode->i_rcu, aufs_destroy_inode_cb); +} + +struct inode *au_iget_locked(struct super_block *sb, ino_t ino) +{ + struct inode *inode; + int err; + + inode = iget_locked(sb, ino); + if (unlikely(!inode)) { + inode = ERR_PTR(-ENOMEM); + goto out; + } + if (!(inode->i_state & I_NEW)) + goto out; + + err = au_xigen_new(inode); + if (!err) + err = au_iinfo_init(inode); + if (!err) + inode->i_version++; + else { + iget_failed(inode); + inode = ERR_PTR(err); + } + +out: + /* never return NULL */ + AuDebugOn(!inode); + AuTraceErrPtr(inode); + return inode; +} + +/* lock free root dinfo */ +static int au_show_brs(struct seq_file *seq, struct super_block *sb) +{ + int err; + aufs_bindex_t bindex, bbot; + struct path path; + struct au_hdentry *hdp; + struct au_branch *br; + au_br_perm_str_t perm; + + err = 0; + bbot = au_sbbot(sb); + bindex = 0; + hdp = au_hdentry(au_di(sb->s_root), bindex); + for (; !err && bindex <= bbot; bindex++, hdp++) { + br = au_sbr(sb, bindex); + path.mnt = au_br_mnt(br); + path.dentry = hdp->hd_dentry; + err = au_seq_path(seq, &path); + if (!err) { + au_optstr_br_perm(&perm, br->br_perm); + seq_printf(seq, "=%s", perm.a); + if (bindex != bbot) + seq_putc(seq, ':'); + } + } + if (unlikely(err || seq_has_overflowed(seq))) + err = -E2BIG; + + return err; +} + +static void au_show_wbr_create(struct seq_file *m, int v, + struct au_sbinfo *sbinfo) +{ + const char *pat; + + AuRwMustAnyLock(&sbinfo->si_rwsem); + + seq_puts(m, ",create="); + pat = au_optstr_wbr_create(v); + switch (v) { + case AuWbrCreate_TDP: + case AuWbrCreate_RR: + case AuWbrCreate_MFS: + case AuWbrCreate_PMFS: + seq_puts(m, pat); + break; + case AuWbrCreate_MFSV: + seq_printf(m, /*pat*/"mfs:%lu", + jiffies_to_msecs(sbinfo->si_wbr_mfs.mfs_expire) + / MSEC_PER_SEC); + break; + case AuWbrCreate_PMFSV: + seq_printf(m, /*pat*/"pmfs:%lu", + jiffies_to_msecs(sbinfo->si_wbr_mfs.mfs_expire) + / MSEC_PER_SEC); + break; + case AuWbrCreate_MFSRR: + seq_printf(m, /*pat*/"mfsrr:%llu", + sbinfo->si_wbr_mfs.mfsrr_watermark); + break; + case AuWbrCreate_MFSRRV: + seq_printf(m, /*pat*/"mfsrr:%llu:%lu", + sbinfo->si_wbr_mfs.mfsrr_watermark, + jiffies_to_msecs(sbinfo->si_wbr_mfs.mfs_expire) + / MSEC_PER_SEC); + break; + case AuWbrCreate_PMFSRR: + seq_printf(m, /*pat*/"pmfsrr:%llu", + sbinfo->si_wbr_mfs.mfsrr_watermark); + break; + case AuWbrCreate_PMFSRRV: + seq_printf(m, /*pat*/"pmfsrr:%llu:%lu", + sbinfo->si_wbr_mfs.mfsrr_watermark, + jiffies_to_msecs(sbinfo->si_wbr_mfs.mfs_expire) + / MSEC_PER_SEC); + break; + } +} + +static int au_show_xino(struct seq_file *seq, struct super_block *sb) +{ +#ifdef CONFIG_SYSFS + return 0; +#else + int err; + const int len = sizeof(AUFS_XINO_FNAME) - 1; + aufs_bindex_t bindex, brid; + struct qstr *name; + struct file *f; + struct dentry *d, *h_root; + + AuRwMustAnyLock(&sbinfo->si_rwsem); + + err = 0; + f = au_sbi(sb)->si_xib; + if (!f) + goto out; + + /* stop printing the default xino path on the first writable branch */ + h_root = NULL; + brid = au_xino_brid(sb); + if (brid >= 0) { + bindex = au_br_index(sb, brid); + h_root = au_hdentry(au_di(sb->s_root), bindex)->hd_dentry; + } + d = f->f_path.dentry; + name = &d->d_name; + /* safe ->d_parent because the file is unlinked */ + if (d->d_parent == h_root + && name->len == len + && !memcmp(name->name, AUFS_XINO_FNAME, len)) + goto out; + + seq_puts(seq, ",xino="); + err = au_xino_path(seq, f); + +out: + return err; +#endif +} + +/* seq_file will re-call me in case of too long string */ +static int aufs_show_options(struct seq_file *m, struct dentry *dentry) +{ + int err; + unsigned int mnt_flags, v; + struct super_block *sb; + struct au_sbinfo *sbinfo; + +#define AuBool(name, str) do { \ + v = au_opt_test(mnt_flags, name); \ + if (v != au_opt_test(AuOpt_Def, name)) \ + seq_printf(m, ",%s" #str, v ? "" : "no"); \ +} while (0) + +#define AuStr(name, str) do { \ + v = mnt_flags & AuOptMask_##name; \ + if (v != (AuOpt_Def & AuOptMask_##name)) \ + seq_printf(m, "," #str "=%s", au_optstr_##str(v)); \ +} while (0) + +#define AuUInt(name, str, val) do { \ + if (val != AUFS_##name##_DEF) \ + seq_printf(m, "," #str "=%u", val); \ +} while (0) + + sb = dentry->d_sb; + if (sb->s_flags & MS_POSIXACL) + seq_puts(m, ",acl"); + + /* lock free root dinfo */ + si_noflush_read_lock(sb); + sbinfo = au_sbi(sb); + seq_printf(m, ",si=%lx", sysaufs_si_id(sbinfo)); + + mnt_flags = au_mntflags(sb); + if (au_opt_test(mnt_flags, XINO)) { + err = au_show_xino(m, sb); + if (unlikely(err)) + goto out; + } else + seq_puts(m, ",noxino"); + + AuBool(TRUNC_XINO, trunc_xino); + AuStr(UDBA, udba); + AuBool(SHWH, shwh); + AuBool(PLINK, plink); + AuBool(DIO, dio); + AuBool(DIRPERM1, dirperm1); + + v = sbinfo->si_wbr_create; + if (v != AuWbrCreate_Def) + au_show_wbr_create(m, v, sbinfo); + + v = sbinfo->si_wbr_copyup; + if (v != AuWbrCopyup_Def) + seq_printf(m, ",cpup=%s", au_optstr_wbr_copyup(v)); + + v = au_opt_test(mnt_flags, ALWAYS_DIROPQ); + if (v != au_opt_test(AuOpt_Def, ALWAYS_DIROPQ)) + seq_printf(m, ",diropq=%c", v ? 'a' : 'w'); + + AuUInt(DIRWH, dirwh, sbinfo->si_dirwh); + + v = jiffies_to_msecs(sbinfo->si_rdcache) / MSEC_PER_SEC; + AuUInt(RDCACHE, rdcache, v); + + AuUInt(RDBLK, rdblk, sbinfo->si_rdblk); + AuUInt(RDHASH, rdhash, sbinfo->si_rdhash); + + au_fhsm_show(m, sbinfo); + + AuBool(SUM, sum); + /* AuBool(SUM_W, wsum); */ + AuBool(WARN_PERM, warn_perm); + AuBool(VERBOSE, verbose); + +out: + /* be sure to print "br:" last */ + if (!sysaufs_brs) { + seq_puts(m, ",br:"); + au_show_brs(m, sb); + } + si_read_unlock(sb); + return 0; + +#undef AuBool +#undef AuStr +#undef AuUInt +} + +/* ---------------------------------------------------------------------- */ + +/* sum mode which returns the summation for statfs(2) */ + +static u64 au_add_till_max(u64 a, u64 b) +{ + u64 old; + + old = a; + a += b; + if (old <= a) + return a; + return ULLONG_MAX; +} + +static u64 au_mul_till_max(u64 a, long mul) +{ + u64 old; + + old = a; + a *= mul; + if (old <= a) + return a; + return ULLONG_MAX; +} + +static int au_statfs_sum(struct super_block *sb, struct kstatfs *buf) +{ + int err; + long bsize, factor; + u64 blocks, bfree, bavail, files, ffree; + aufs_bindex_t bbot, bindex, i; + unsigned char shared; + struct path h_path; + struct super_block *h_sb; + + err = 0; + bsize = LONG_MAX; + files = 0; + ffree = 0; + blocks = 0; + bfree = 0; + bavail = 0; + bbot = au_sbbot(sb); + for (bindex = 0; bindex <= bbot; bindex++) { + h_path.mnt = au_sbr_mnt(sb, bindex); + h_sb = h_path.mnt->mnt_sb; + shared = 0; + for (i = 0; !shared && i < bindex; i++) + shared = (au_sbr_sb(sb, i) == h_sb); + if (shared) + continue; + + /* sb->s_root for NFS is unreliable */ + h_path.dentry = h_path.mnt->mnt_root; + err = vfs_statfs(&h_path, buf); + if (unlikely(err)) + goto out; + + if (bsize > buf->f_bsize) { + /* + * we will reduce bsize, so we have to expand blocks + * etc. to match them again + */ + factor = (bsize / buf->f_bsize); + blocks = au_mul_till_max(blocks, factor); + bfree = au_mul_till_max(bfree, factor); + bavail = au_mul_till_max(bavail, factor); + bsize = buf->f_bsize; + } + + factor = (buf->f_bsize / bsize); + blocks = au_add_till_max(blocks, + au_mul_till_max(buf->f_blocks, factor)); + bfree = au_add_till_max(bfree, + au_mul_till_max(buf->f_bfree, factor)); + bavail = au_add_till_max(bavail, + au_mul_till_max(buf->f_bavail, factor)); + files = au_add_till_max(files, buf->f_files); + ffree = au_add_till_max(ffree, buf->f_ffree); + } + + buf->f_bsize = bsize; + buf->f_blocks = blocks; + buf->f_bfree = bfree; + buf->f_bavail = bavail; + buf->f_files = files; + buf->f_ffree = ffree; + buf->f_frsize = 0; + +out: + return err; +} + +static int aufs_statfs(struct dentry *dentry, struct kstatfs *buf) +{ + int err; + struct path h_path; + struct super_block *sb; + + /* lock free root dinfo */ + sb = dentry->d_sb; + si_noflush_read_lock(sb); + if (!au_opt_test(au_mntflags(sb), SUM)) { + /* sb->s_root for NFS is unreliable */ + h_path.mnt = au_sbr_mnt(sb, 0); + h_path.dentry = h_path.mnt->mnt_root; + err = vfs_statfs(&h_path, buf); + } else + err = au_statfs_sum(sb, buf); + si_read_unlock(sb); + + if (!err) { + buf->f_type = AUFS_SUPER_MAGIC; + buf->f_namelen = AUFS_MAX_NAMELEN; + memset(&buf->f_fsid, 0, sizeof(buf->f_fsid)); + } + /* buf->f_bsize = buf->f_blocks = buf->f_bfree = buf->f_bavail = -1; */ + + return err; +} + +/* ---------------------------------------------------------------------- */ + +static int aufs_sync_fs(struct super_block *sb, int wait) +{ + int err, e; + aufs_bindex_t bbot, bindex; + struct au_branch *br; + struct super_block *h_sb; + + err = 0; + si_noflush_read_lock(sb); + bbot = au_sbbot(sb); + for (bindex = 0; bindex <= bbot; bindex++) { + br = au_sbr(sb, bindex); + if (!au_br_writable(br->br_perm)) + continue; + + h_sb = au_sbr_sb(sb, bindex); + if (h_sb->s_op->sync_fs) { + e = h_sb->s_op->sync_fs(h_sb, wait); + if (unlikely(e && !err)) + err = e; + /* go on even if an error happens */ + } + } + si_read_unlock(sb); + + return err; +} + +/* ---------------------------------------------------------------------- */ + +/* final actions when unmounting a file system */ +static void aufs_put_super(struct super_block *sb) +{ + struct au_sbinfo *sbinfo; + + sbinfo = au_sbi(sb); + if (!sbinfo) + return; + + dbgaufs_si_fin(sbinfo); + kobject_put(&sbinfo->si_kobj); +} + +/* ---------------------------------------------------------------------- */ + +void *au_array_alloc(unsigned long long *hint, au_arraycb_t cb, + struct super_block *sb, void *arg) +{ + void *array; + unsigned long long n, sz; + + array = NULL; + n = 0; + if (!*hint) + goto out; + + if (*hint > ULLONG_MAX / sizeof(array)) { + array = ERR_PTR(-EMFILE); + pr_err("hint %llu\n", *hint); + goto out; + } + + sz = sizeof(array) * *hint; + array = kzalloc(sz, GFP_NOFS); + if (unlikely(!array)) + array = vzalloc(sz); + if (unlikely(!array)) { + array = ERR_PTR(-ENOMEM); + goto out; + } + + n = cb(sb, array, *hint, arg); + AuDebugOn(n > *hint); + +out: + *hint = n; + return array; +} + +static unsigned long long au_iarray_cb(struct super_block *sb, void *a, + unsigned long long max __maybe_unused, + void *arg) +{ + unsigned long long n; + struct inode **p, *inode; + struct list_head *head; + + n = 0; + p = a; + head = arg; + spin_lock(&sb->s_inode_list_lock); + list_for_each_entry(inode, head, i_sb_list) { + if (!au_is_bad_inode(inode) + && au_ii(inode)->ii_btop >= 0) { + spin_lock(&inode->i_lock); + if (atomic_read(&inode->i_count)) { + au_igrab(inode); + *p++ = inode; + n++; + AuDebugOn(n > max); + } + spin_unlock(&inode->i_lock); + } + } + spin_unlock(&sb->s_inode_list_lock); + + return n; +} + +struct inode **au_iarray_alloc(struct super_block *sb, unsigned long long *max) +{ + *max = au_ninodes(sb); + return au_array_alloc(max, au_iarray_cb, sb, &sb->s_inodes); +} + +void au_iarray_free(struct inode **a, unsigned long long max) +{ + unsigned long long ull; + + for (ull = 0; ull < max; ull++) + iput(a[ull]); + kvfree(a); +} + +/* ---------------------------------------------------------------------- */ + +/* + * refresh dentry and inode at remount time. + */ +/* todo: consolidate with simple_reval_dpath() and au_reval_for_attr() */ +static int au_do_refresh(struct dentry *dentry, unsigned int dir_flags, + struct dentry *parent) +{ + int err; + + di_write_lock_child(dentry); + di_read_lock_parent(parent, AuLock_IR); + err = au_refresh_dentry(dentry, parent); + if (!err && dir_flags) + au_hn_reset(d_inode(dentry), dir_flags); + di_read_unlock(parent, AuLock_IR); + di_write_unlock(dentry); + + return err; +} + +static int au_do_refresh_d(struct dentry *dentry, unsigned int sigen, + struct au_sbinfo *sbinfo, + const unsigned int dir_flags, unsigned int do_idop) +{ + int err; + struct dentry *parent; + + err = 0; + parent = dget_parent(dentry); + if (!au_digen_test(parent, sigen) && au_digen_test(dentry, sigen)) { + if (d_really_is_positive(dentry)) { + if (!d_is_dir(dentry)) + err = au_do_refresh(dentry, /*dir_flags*/0, + parent); + else { + err = au_do_refresh(dentry, dir_flags, parent); + if (unlikely(err)) + au_fset_si(sbinfo, FAILED_REFRESH_DIR); + } + } else + err = au_do_refresh(dentry, /*dir_flags*/0, parent); + AuDbgDentry(dentry); + } + dput(parent); + + if (!err) { + if (do_idop) + au_refresh_dop(dentry, /*force_reval*/0); + } else + au_refresh_dop(dentry, /*force_reval*/1); + + AuTraceErr(err); + return err; +} + +static int au_refresh_d(struct super_block *sb, unsigned int do_idop) +{ + int err, i, j, ndentry, e; + unsigned int sigen; + struct au_dcsub_pages dpages; + struct au_dpage *dpage; + struct dentry **dentries, *d; + struct au_sbinfo *sbinfo; + struct dentry *root = sb->s_root; + const unsigned int dir_flags = au_hi_flags(d_inode(root), /*isdir*/1); + + if (do_idop) + au_refresh_dop(root, /*force_reval*/0); + + err = au_dpages_init(&dpages, GFP_NOFS); + if (unlikely(err)) + goto out; + err = au_dcsub_pages(&dpages, root, NULL, NULL); + if (unlikely(err)) + goto out_dpages; + + sigen = au_sigen(sb); + sbinfo = au_sbi(sb); + for (i = 0; i < dpages.ndpage; i++) { + dpage = dpages.dpages + i; + dentries = dpage->dentries; + ndentry = dpage->ndentry; + for (j = 0; j < ndentry; j++) { + d = dentries[j]; + e = au_do_refresh_d(d, sigen, sbinfo, dir_flags, + do_idop); + if (unlikely(e && !err)) + err = e; + /* go on even err */ + } + } + +out_dpages: + au_dpages_free(&dpages); +out: + return err; +} + +static int au_refresh_i(struct super_block *sb, unsigned int do_idop) +{ + int err, e; + unsigned int sigen; + unsigned long long max, ull; + struct inode *inode, **array; + + array = au_iarray_alloc(sb, &max); + err = PTR_ERR(array); + if (IS_ERR(array)) + goto out; + + err = 0; + sigen = au_sigen(sb); + for (ull = 0; ull < max; ull++) { + inode = array[ull]; + if (unlikely(!inode)) + break; + + e = 0; + ii_write_lock_child(inode); + if (au_iigen(inode, NULL) != sigen) { + e = au_refresh_hinode_self(inode); + if (unlikely(e)) { + au_refresh_iop(inode, /*force_getattr*/1); + pr_err("error %d, i%lu\n", e, inode->i_ino); + if (!err) + err = e; + /* go on even if err */ + } + } + if (!e && do_idop) + au_refresh_iop(inode, /*force_getattr*/0); + ii_write_unlock(inode); + } + + au_iarray_free(array, max); + +out: + return err; +} + +static void au_remount_refresh(struct super_block *sb, unsigned int do_idop) +{ + int err, e; + unsigned int udba; + aufs_bindex_t bindex, bbot; + struct dentry *root; + struct inode *inode; + struct au_branch *br; + struct au_sbinfo *sbi; + + au_sigen_inc(sb); + sbi = au_sbi(sb); + au_fclr_si(sbi, FAILED_REFRESH_DIR); + + root = sb->s_root; + DiMustNoWaiters(root); + inode = d_inode(root); + IiMustNoWaiters(inode); + + udba = au_opt_udba(sb); + bbot = au_sbbot(sb); + for (bindex = 0; bindex <= bbot; bindex++) { + br = au_sbr(sb, bindex); + err = au_hnotify_reset_br(udba, br, br->br_perm); + if (unlikely(err)) + AuIOErr("hnotify failed on br %d, %d, ignored\n", + bindex, err); + /* go on even if err */ + } + au_hn_reset(inode, au_hi_flags(inode, /*isdir*/1)); + + if (do_idop) { + if (au_ftest_si(sbi, NO_DREVAL)) { + AuDebugOn(sb->s_d_op == &aufs_dop_noreval); + sb->s_d_op = &aufs_dop_noreval; + AuDebugOn(sbi->si_iop_array == aufs_iop_nogetattr); + sbi->si_iop_array = aufs_iop_nogetattr; + } else { + AuDebugOn(sb->s_d_op == &aufs_dop); + sb->s_d_op = &aufs_dop; + AuDebugOn(sbi->si_iop_array == aufs_iop); + sbi->si_iop_array = aufs_iop; + } + pr_info("reset to %pf and %pf\n", + sb->s_d_op, sbi->si_iop_array); + } + + di_write_unlock(root); + err = au_refresh_d(sb, do_idop); + e = au_refresh_i(sb, do_idop); + if (unlikely(e && !err)) + err = e; + /* aufs_write_lock() calls ..._child() */ + di_write_lock_child(root); + + au_cpup_attr_all(inode, /*force*/1); + + if (unlikely(err)) + AuIOErr("refresh failed, ignored, %d\n", err); +} + +/* stop extra interpretation of errno in mount(8), and strange error messages */ +static int cvt_err(int err) +{ + AuTraceErr(err); + + switch (err) { + case -ENOENT: + case -ENOTDIR: + case -EEXIST: + case -EIO: + err = -EINVAL; + } + return err; +} + +static int aufs_remount_fs(struct super_block *sb, int *flags, char *data) +{ + int err, do_dx; + unsigned int mntflags; + struct au_opts opts = { + .opt = NULL + }; + struct dentry *root; + struct inode *inode; + struct au_sbinfo *sbinfo; + + err = 0; + root = sb->s_root; + if (!data || !*data) { + err = si_write_lock(sb, AuLock_FLUSH | AuLock_NOPLM); + if (!err) { + di_write_lock_child(root); + err = au_opts_verify(sb, *flags, /*pending*/0); + aufs_write_unlock(root); + } + goto out; + } + + err = -ENOMEM; + opts.opt = (void *)__get_free_page(GFP_NOFS); + if (unlikely(!opts.opt)) + goto out; + opts.max_opt = PAGE_SIZE / sizeof(*opts.opt); + opts.flags = AuOpts_REMOUNT; + opts.sb_flags = *flags; + + /* parse it before aufs lock */ + err = au_opts_parse(sb, data, &opts); + if (unlikely(err)) + goto out_opts; + + sbinfo = au_sbi(sb); + inode = d_inode(root); + inode_lock(inode); + err = si_write_lock(sb, AuLock_FLUSH | AuLock_NOPLM); + if (unlikely(err)) + goto out_mtx; + di_write_lock_child(root); + + /* au_opts_remount() may return an error */ + err = au_opts_remount(sb, &opts); + au_opts_free(&opts); + + if (au_ftest_opts(opts.flags, REFRESH)) + au_remount_refresh(sb, au_ftest_opts(opts.flags, REFRESH_IDOP)); + + if (au_ftest_opts(opts.flags, REFRESH_DYAOP)) { + mntflags = au_mntflags(sb); + do_dx = !!au_opt_test(mntflags, DIO); + au_dy_arefresh(do_dx); + } + + au_fhsm_wrote_all(sb, /*force*/1); /* ?? */ + aufs_write_unlock(root); + +out_mtx: + inode_unlock(inode); +out_opts: + au_delayed_free_page((unsigned long)opts.opt); +out: + err = cvt_err(err); + AuTraceErr(err); + return err; +} + +static const struct super_operations aufs_sop = { + .alloc_inode = aufs_alloc_inode, + .destroy_inode = aufs_destroy_inode, + /* always deleting, no clearing */ + .drop_inode = generic_delete_inode, + .show_options = aufs_show_options, + .statfs = aufs_statfs, + .put_super = aufs_put_super, + .sync_fs = aufs_sync_fs, + .remount_fs = aufs_remount_fs, +#ifdef CONFIG_AUFS_BDEV_LOOP + .real_loop = aufs_real_loop +#endif +}; + +/* ---------------------------------------------------------------------- */ + +static int alloc_root(struct super_block *sb) +{ + int err; + struct inode *inode; + struct dentry *root; + + err = -ENOMEM; + inode = au_iget_locked(sb, AUFS_ROOT_INO); + err = PTR_ERR(inode); + if (IS_ERR(inode)) + goto out; + + inode->i_op = aufs_iop + AuIop_DIR; /* with getattr by default */ + inode->i_fop = &aufs_dir_fop; + inode->i_mode = S_IFDIR; + set_nlink(inode, 2); + unlock_new_inode(inode); + + root = d_make_root(inode); + if (unlikely(!root)) + goto out; + err = PTR_ERR(root); + if (IS_ERR(root)) + goto out; + + err = au_di_init(root); + if (!err) { + sb->s_root = root; + return 0; /* success */ + } + dput(root); + +out: + return err; +} + +static int aufs_fill_super(struct super_block *sb, void *raw_data, + int silent __maybe_unused) +{ + int err; + struct au_opts opts = { + .opt = NULL + }; + struct au_sbinfo *sbinfo; + struct dentry *root; + struct inode *inode; + char *arg = raw_data; + + if (unlikely(!arg || !*arg)) { + err = -EINVAL; + pr_err("no arg\n"); + goto out; + } + + err = -ENOMEM; + opts.opt = (void *)__get_free_page(GFP_NOFS); + if (unlikely(!opts.opt)) + goto out; + opts.max_opt = PAGE_SIZE / sizeof(*opts.opt); + opts.sb_flags = sb->s_flags; + + err = au_si_alloc(sb); + if (unlikely(err)) + goto out_opts; + sbinfo = au_sbi(sb); + + /* all timestamps always follow the ones on the branch */ + sb->s_flags |= MS_NOATIME | MS_NODIRATIME; + sb->s_op = &aufs_sop; + sb->s_d_op = &aufs_dop; + sb->s_magic = AUFS_SUPER_MAGIC; + sb->s_maxbytes = 0; + sb->s_stack_depth = 1; + au_export_init(sb); + /* au_xattr_init(sb); */ + + err = alloc_root(sb); + if (unlikely(err)) { + si_write_unlock(sb); + goto out_info; + } + root = sb->s_root; + inode = d_inode(root); + + /* + * actually we can parse options regardless aufs lock here. + * but at remount time, parsing must be done before aufs lock. + * so we follow the same rule. + */ + ii_write_lock_parent(inode); + aufs_write_unlock(root); + err = au_opts_parse(sb, arg, &opts); + if (unlikely(err)) + goto out_root; + + /* lock vfs_inode first, then aufs. */ + inode_lock(inode); + aufs_write_lock(root); + err = au_opts_mount(sb, &opts); + au_opts_free(&opts); + if (!err && au_ftest_si(sbinfo, NO_DREVAL)) { + sb->s_d_op = &aufs_dop_noreval; + pr_info("%pf\n", sb->s_d_op); + au_refresh_dop(root, /*force_reval*/0); + sbinfo->si_iop_array = aufs_iop_nogetattr; + au_refresh_iop(inode, /*force_getattr*/0); + } + aufs_write_unlock(root); + inode_unlock(inode); + if (!err) + goto out_opts; /* success */ + +out_root: + dput(root); + sb->s_root = NULL; +out_info: + dbgaufs_si_fin(sbinfo); + kobject_put(&sbinfo->si_kobj); + sb->s_fs_info = NULL; +out_opts: + au_delayed_free_page((unsigned long)opts.opt); +out: + AuTraceErr(err); + err = cvt_err(err); + AuTraceErr(err); + return err; +} + +/* ---------------------------------------------------------------------- */ + +static struct dentry *aufs_mount(struct file_system_type *fs_type, int flags, + const char *dev_name __maybe_unused, + void *raw_data) +{ + struct dentry *root; + struct super_block *sb; + + /* all timestamps always follow the ones on the branch */ + /* mnt->mnt_flags |= MNT_NOATIME | MNT_NODIRATIME; */ + root = mount_nodev(fs_type, flags, raw_data, aufs_fill_super); + if (IS_ERR(root)) + goto out; + + sb = root->d_sb; + si_write_lock(sb, !AuLock_FLUSH); + sysaufs_brs_add(sb, 0); + si_write_unlock(sb); + au_sbilist_add(sb); + +out: + return root; +} + +static void aufs_kill_sb(struct super_block *sb) +{ + struct au_sbinfo *sbinfo; + + sbinfo = au_sbi(sb); + if (sbinfo) { + au_sbilist_del(sb); + aufs_write_lock(sb->s_root); + au_fhsm_fin(sb); + if (sbinfo->si_wbr_create_ops->fin) + sbinfo->si_wbr_create_ops->fin(sb); + if (au_opt_test(sbinfo->si_mntflags, UDBA_HNOTIFY)) { + au_opt_set_udba(sbinfo->si_mntflags, UDBA_NONE); + au_remount_refresh(sb, /*do_idop*/0); + } + if (au_opt_test(sbinfo->si_mntflags, PLINK)) + au_plink_put(sb, /*verbose*/1); + au_xino_clr(sb); + sbinfo->si_sb = NULL; + aufs_write_unlock(sb->s_root); + au_nwt_flush(&sbinfo->si_nowait); + } + kill_anon_super(sb); +} + +struct file_system_type aufs_fs_type = { + .name = AUFS_FSTYPE, + /* a race between rename and others */ + .fs_flags = FS_RENAME_DOES_D_MOVE, + .mount = aufs_mount, + .kill_sb = aufs_kill_sb, + /* no need to __module_get() and module_put(). */ + .owner = THIS_MODULE, +}; --- linux-4.8.0.orig/fs/aufs/super.h +++ linux-4.8.0/fs/aufs/super.h @@ -0,0 +1,638 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * super_block operations + */ + +#ifndef __AUFS_SUPER_H__ +#define __AUFS_SUPER_H__ + +#ifdef __KERNEL__ + +#include +#include +#include "rwsem.h" +#include "spl.h" +#include "wkq.h" + +/* policies to select one among multiple writable branches */ +struct au_wbr_copyup_operations { + int (*copyup)(struct dentry *dentry); +}; + +#define AuWbr_DIR 1 /* target is a dir */ +#define AuWbr_PARENT (1 << 1) /* always require a parent */ + +#define au_ftest_wbr(flags, name) ((flags) & AuWbr_##name) +#define au_fset_wbr(flags, name) { (flags) |= AuWbr_##name; } +#define au_fclr_wbr(flags, name) { (flags) &= ~AuWbr_##name; } + +struct au_wbr_create_operations { + int (*create)(struct dentry *dentry, unsigned int flags); + int (*init)(struct super_block *sb); + int (*fin)(struct super_block *sb); +}; + +struct au_wbr_mfs { + struct mutex mfs_lock; /* protect this structure */ + unsigned long mfs_jiffy; + unsigned long mfs_expire; + aufs_bindex_t mfs_bindex; + + unsigned long long mfsrr_bytes; + unsigned long long mfsrr_watermark; +}; + +#define AuPlink_NHASH 100 +static inline int au_plink_hash(ino_t ino) +{ + return ino % AuPlink_NHASH; +} + +/* File-based Hierarchical Storage Management */ +struct au_fhsm { +#ifdef CONFIG_AUFS_FHSM + /* allow only one process who can receive the notification */ + spinlock_t fhsm_spin; + pid_t fhsm_pid; + wait_queue_head_t fhsm_wqh; + atomic_t fhsm_readable; + + /* these are protected by si_rwsem */ + unsigned long fhsm_expire; + aufs_bindex_t fhsm_bottom; +#endif +}; + +#define AU_PIDSTEP (int)(BITS_TO_LONGS(PID_MAX_DEFAULT) * BITS_PER_LONG) +#define AU_NPIDMAP (int)DIV_ROUND_UP(PID_MAX_LIMIT, AU_PIDSTEP) +struct au_si_pid { + unsigned long *pid_bitmap[AU_NPIDMAP]; + struct mutex pid_mtx; +}; + +struct au_branch; +struct au_sbinfo { + /* nowait tasks in the system-wide workqueue */ + struct au_nowait_tasks si_nowait; + + /* + * tried sb->s_umount, but failed due to the dependecy between i_mutex. + * rwsem for au_sbinfo is necessary. + */ + struct au_rwsem si_rwsem; + + /* prevent recursive locking in deleting inode */ + struct au_si_pid au_si_pid; + + /* + * dirty approach to protect sb->sb_inodes and ->s_files (gone) from + * remount. + */ + struct percpu_counter si_ninodes, si_nfiles; + + /* branch management */ + unsigned int si_generation; + + /* see AuSi_ flags */ + unsigned char au_si_status; + + aufs_bindex_t si_bbot; + + /* dirty trick to keep br_id plus */ + unsigned int si_last_br_id : + sizeof(aufs_bindex_t) * BITS_PER_BYTE - 1; + struct au_branch **si_branch; + + /* policy to select a writable branch */ + unsigned char si_wbr_copyup; + unsigned char si_wbr_create; + struct au_wbr_copyup_operations *si_wbr_copyup_ops; + struct au_wbr_create_operations *si_wbr_create_ops; + + /* round robin */ + atomic_t si_wbr_rr_next; + + /* most free space */ + struct au_wbr_mfs si_wbr_mfs; + + /* File-based Hierarchical Storage Management */ + struct au_fhsm si_fhsm; + + /* mount flags */ + /* include/asm-ia64/siginfo.h defines a macro named si_flags */ + unsigned int si_mntflags; + + /* external inode number (bitmap and translation table) */ + vfs_readf_t si_xread; + vfs_writef_t si_xwrite; + struct file *si_xib; + struct mutex si_xib_mtx; /* protect xib members */ + unsigned long *si_xib_buf; + unsigned long si_xib_last_pindex; + int si_xib_next_bit; + aufs_bindex_t si_xino_brid; + unsigned long si_xino_jiffy; + unsigned long si_xino_expire; + /* reserved for future use */ + /* unsigned long long si_xib_limit; */ /* Max xib file size */ + +#ifdef CONFIG_AUFS_EXPORT + /* i_generation */ + struct file *si_xigen; + atomic_t si_xigen_next; +#endif + + /* dirty trick to suppoer atomic_open */ + struct au_sphlhead si_aopen; + + /* vdir parameters */ + unsigned long si_rdcache; /* max cache time in jiffies */ + unsigned int si_rdblk; /* deblk size */ + unsigned int si_rdhash; /* hash size */ + + /* + * If the number of whiteouts are larger than si_dirwh, leave all of + * them after au_whtmp_ren to reduce the cost of rmdir(2). + * future fsck.aufs or kernel thread will remove them later. + * Otherwise, remove all whiteouts and the dir in rmdir(2). + */ + unsigned int si_dirwh; + + /* pseudo_link list */ + struct au_sphlhead si_plink[AuPlink_NHASH]; + wait_queue_head_t si_plink_wq; + spinlock_t si_plink_maint_lock; + pid_t si_plink_maint_pid; + + /* file list */ + struct au_sphlhead si_files; + + /* with/without getattr, brother of sb->s_d_op */ + struct inode_operations *si_iop_array; + + /* + * sysfs and lifetime management. + * this is not a small structure and it may be a waste of memory in case + * of sysfs is disabled, particulary when many aufs-es are mounted. + * but using sysfs is majority. + */ + struct kobject si_kobj; +#ifdef CONFIG_DEBUG_FS + struct dentry *si_dbgaufs; + struct dentry *si_dbgaufs_plink; + struct dentry *si_dbgaufs_xib; +#ifdef CONFIG_AUFS_EXPORT + struct dentry *si_dbgaufs_xigen; +#endif +#endif + +#ifdef CONFIG_AUFS_SBILIST + struct hlist_node si_list; +#endif + + /* dirty, necessary for unmounting, sysfs and sysrq */ + struct super_block *si_sb; +}; + +/* sbinfo status flags */ +/* + * set true when refresh_dirs() failed at remount time. + * then try refreshing dirs at access time again. + * if it is false, refreshing dirs at access time is unnecesary + */ +#define AuSi_FAILED_REFRESH_DIR 1 +#define AuSi_FHSM (1 << 1) /* fhsm is active now */ +#define AuSi_NO_DREVAL (1 << 2) /* disable all d_revalidate */ + +#ifndef CONFIG_AUFS_FHSM +#undef AuSi_FHSM +#define AuSi_FHSM 0 +#endif + +static inline unsigned char au_do_ftest_si(struct au_sbinfo *sbi, + unsigned int flag) +{ + AuRwMustAnyLock(&sbi->si_rwsem); + return sbi->au_si_status & flag; +} +#define au_ftest_si(sbinfo, name) au_do_ftest_si(sbinfo, AuSi_##name) +#define au_fset_si(sbinfo, name) do { \ + AuRwMustWriteLock(&(sbinfo)->si_rwsem); \ + (sbinfo)->au_si_status |= AuSi_##name; \ +} while (0) +#define au_fclr_si(sbinfo, name) do { \ + AuRwMustWriteLock(&(sbinfo)->si_rwsem); \ + (sbinfo)->au_si_status &= ~AuSi_##name; \ +} while (0) + +/* ---------------------------------------------------------------------- */ + +/* policy to select one among writable branches */ +#define AuWbrCopyup(sbinfo, ...) \ + ((sbinfo)->si_wbr_copyup_ops->copyup(__VA_ARGS__)) +#define AuWbrCreate(sbinfo, ...) \ + ((sbinfo)->si_wbr_create_ops->create(__VA_ARGS__)) + +/* flags for si_read_lock()/aufs_read_lock()/di_read_lock() */ +#define AuLock_DW 1 /* write-lock dentry */ +#define AuLock_IR (1 << 1) /* read-lock inode */ +#define AuLock_IW (1 << 2) /* write-lock inode */ +#define AuLock_FLUSH (1 << 3) /* wait for 'nowait' tasks */ +#define AuLock_DIRS (1 << 4) /* target is a pair of dirs */ +#define AuLock_NOPLM (1 << 5) /* return err in plm mode */ +#define AuLock_NOPLMW (1 << 6) /* wait for plm mode ends */ +#define AuLock_GEN (1 << 7) /* test digen/iigen */ +#define au_ftest_lock(flags, name) ((flags) & AuLock_##name) +#define au_fset_lock(flags, name) \ + do { (flags) |= AuLock_##name; } while (0) +#define au_fclr_lock(flags, name) \ + do { (flags) &= ~AuLock_##name; } while (0) + +/* ---------------------------------------------------------------------- */ + +/* super.c */ +extern struct file_system_type aufs_fs_type; +struct inode *au_iget_locked(struct super_block *sb, ino_t ino); +typedef unsigned long long (*au_arraycb_t)(struct super_block *sb, void *array, + unsigned long long max, void *arg); +void *au_array_alloc(unsigned long long *hint, au_arraycb_t cb, + struct super_block *sb, void *arg); +struct inode **au_iarray_alloc(struct super_block *sb, unsigned long long *max); +void au_iarray_free(struct inode **a, unsigned long long max); + +/* sbinfo.c */ +void au_si_free(struct kobject *kobj); +int au_si_alloc(struct super_block *sb); +int au_sbr_realloc(struct au_sbinfo *sbinfo, int nbr, int may_shrink); + +unsigned int au_sigen_inc(struct super_block *sb); +aufs_bindex_t au_new_br_id(struct super_block *sb); + +int si_read_lock(struct super_block *sb, int flags); +int si_write_lock(struct super_block *sb, int flags); +int aufs_read_lock(struct dentry *dentry, int flags); +void aufs_read_unlock(struct dentry *dentry, int flags); +void aufs_write_lock(struct dentry *dentry); +void aufs_write_unlock(struct dentry *dentry); +int aufs_read_and_write_lock2(struct dentry *d1, struct dentry *d2, int flags); +void aufs_read_and_write_unlock2(struct dentry *d1, struct dentry *d2); + +/* wbr_policy.c */ +extern struct au_wbr_copyup_operations au_wbr_copyup_ops[]; +extern struct au_wbr_create_operations au_wbr_create_ops[]; +int au_cpdown_dirs(struct dentry *dentry, aufs_bindex_t bdst); +int au_wbr_nonopq(struct dentry *dentry, aufs_bindex_t bindex); +int au_wbr_do_copyup_bu(struct dentry *dentry, aufs_bindex_t btop); + +/* mvdown.c */ +int au_mvdown(struct dentry *dentry, struct aufs_mvdown __user *arg); + +#ifdef CONFIG_AUFS_FHSM +/* fhsm.c */ + +static inline pid_t au_fhsm_pid(struct au_fhsm *fhsm) +{ + pid_t pid; + + spin_lock(&fhsm->fhsm_spin); + pid = fhsm->fhsm_pid; + spin_unlock(&fhsm->fhsm_spin); + + return pid; +} + +void au_fhsm_wrote(struct super_block *sb, aufs_bindex_t bindex, int force); +void au_fhsm_wrote_all(struct super_block *sb, int force); +int au_fhsm_fd(struct super_block *sb, int oflags); +int au_fhsm_br_alloc(struct au_branch *br); +void au_fhsm_set_bottom(struct super_block *sb, aufs_bindex_t bindex); +void au_fhsm_fin(struct super_block *sb); +void au_fhsm_init(struct au_sbinfo *sbinfo); +void au_fhsm_set(struct au_sbinfo *sbinfo, unsigned int sec); +void au_fhsm_show(struct seq_file *seq, struct au_sbinfo *sbinfo); +#else +AuStubVoid(au_fhsm_wrote, struct super_block *sb, aufs_bindex_t bindex, + int force) +AuStubVoid(au_fhsm_wrote_all, struct super_block *sb, int force) +AuStub(int, au_fhsm_fd, return -EOPNOTSUPP, struct super_block *sb, int oflags) +AuStub(pid_t, au_fhsm_pid, return 0, struct au_fhsm *fhsm) +AuStubInt0(au_fhsm_br_alloc, struct au_branch *br) +AuStubVoid(au_fhsm_set_bottom, struct super_block *sb, aufs_bindex_t bindex) +AuStubVoid(au_fhsm_fin, struct super_block *sb) +AuStubVoid(au_fhsm_init, struct au_sbinfo *sbinfo) +AuStubVoid(au_fhsm_set, struct au_sbinfo *sbinfo, unsigned int sec) +AuStubVoid(au_fhsm_show, struct seq_file *seq, struct au_sbinfo *sbinfo) +#endif + +/* ---------------------------------------------------------------------- */ + +static inline struct au_sbinfo *au_sbi(struct super_block *sb) +{ + return sb->s_fs_info; +} + +/* ---------------------------------------------------------------------- */ + +#ifdef CONFIG_AUFS_EXPORT +int au_test_nfsd(void); +void au_export_init(struct super_block *sb); +void au_xigen_inc(struct inode *inode); +int au_xigen_new(struct inode *inode); +int au_xigen_set(struct super_block *sb, struct file *base); +void au_xigen_clr(struct super_block *sb); + +static inline int au_busy_or_stale(void) +{ + if (!au_test_nfsd()) + return -EBUSY; + return -ESTALE; +} +#else +AuStubInt0(au_test_nfsd, void) +AuStubVoid(au_export_init, struct super_block *sb) +AuStubVoid(au_xigen_inc, struct inode *inode) +AuStubInt0(au_xigen_new, struct inode *inode) +AuStubInt0(au_xigen_set, struct super_block *sb, struct file *base) +AuStubVoid(au_xigen_clr, struct super_block *sb) +AuStub(int, au_busy_or_stale, return -EBUSY, void) +#endif /* CONFIG_AUFS_EXPORT */ + +/* ---------------------------------------------------------------------- */ + +#ifdef CONFIG_AUFS_SBILIST +/* module.c */ +extern struct au_sphlhead au_sbilist; + +static inline void au_sbilist_init(void) +{ + au_sphl_init(&au_sbilist); +} + +static inline void au_sbilist_add(struct super_block *sb) +{ + au_sphl_add(&au_sbi(sb)->si_list, &au_sbilist); +} + +static inline void au_sbilist_del(struct super_block *sb) +{ + au_sphl_del(&au_sbi(sb)->si_list, &au_sbilist); +} + +#ifdef CONFIG_AUFS_MAGIC_SYSRQ +static inline void au_sbilist_lock(void) +{ + spin_lock(&au_sbilist.spin); +} + +static inline void au_sbilist_unlock(void) +{ + spin_unlock(&au_sbilist.spin); +} +#define AuGFP_SBILIST GFP_ATOMIC +#else +AuStubVoid(au_sbilist_lock, void) +AuStubVoid(au_sbilist_unlock, void) +#define AuGFP_SBILIST GFP_NOFS +#endif /* CONFIG_AUFS_MAGIC_SYSRQ */ +#else +AuStubVoid(au_sbilist_init, void) +AuStubVoid(au_sbilist_add, struct super_block *sb) +AuStubVoid(au_sbilist_del, struct super_block *sb) +AuStubVoid(au_sbilist_lock, void) +AuStubVoid(au_sbilist_unlock, void) +#define AuGFP_SBILIST GFP_NOFS +#endif + +/* ---------------------------------------------------------------------- */ + +static inline void dbgaufs_si_null(struct au_sbinfo *sbinfo) +{ + /* + * This function is a dynamic '__init' function actually, + * so the tiny check for si_rwsem is unnecessary. + */ + /* AuRwMustWriteLock(&sbinfo->si_rwsem); */ +#ifdef CONFIG_DEBUG_FS + sbinfo->si_dbgaufs = NULL; + sbinfo->si_dbgaufs_plink = NULL; + sbinfo->si_dbgaufs_xib = NULL; +#ifdef CONFIG_AUFS_EXPORT + sbinfo->si_dbgaufs_xigen = NULL; +#endif +#endif +} + +/* ---------------------------------------------------------------------- */ + +static inline void si_pid_idx_bit(int *idx, pid_t *bit) +{ + /* the origin of pid is 1, but the bitmap's is 0 */ + *bit = current->pid - 1; + *idx = *bit / AU_PIDSTEP; + *bit %= AU_PIDSTEP; +} + +static inline int si_pid_test(struct super_block *sb) +{ + pid_t bit; + int idx; + unsigned long *bitmap; + + si_pid_idx_bit(&idx, &bit); + bitmap = au_sbi(sb)->au_si_pid.pid_bitmap[idx]; + if (bitmap) + return test_bit(bit, bitmap); + return 0; +} + +static inline void si_pid_clr(struct super_block *sb) +{ + pid_t bit; + int idx; + unsigned long *bitmap; + + si_pid_idx_bit(&idx, &bit); + bitmap = au_sbi(sb)->au_si_pid.pid_bitmap[idx]; + BUG_ON(!bitmap); + AuDebugOn(!test_bit(bit, bitmap)); + clear_bit(bit, bitmap); + /* smp_mb(); */ +} + +void si_pid_set(struct super_block *sb); + +/* ---------------------------------------------------------------------- */ + +/* lock superblock. mainly for entry point functions */ +/* + * __si_read_lock, __si_write_lock, + * __si_read_unlock, __si_write_unlock, __si_downgrade_lock + */ +AuSimpleRwsemFuncs(__si, struct super_block *sb, &au_sbi(sb)->si_rwsem); + +#define SiMustNoWaiters(sb) AuRwMustNoWaiters(&au_sbi(sb)->si_rwsem) +#define SiMustAnyLock(sb) AuRwMustAnyLock(&au_sbi(sb)->si_rwsem) +#define SiMustWriteLock(sb) AuRwMustWriteLock(&au_sbi(sb)->si_rwsem) + +static inline void si_noflush_read_lock(struct super_block *sb) +{ + __si_read_lock(sb); + si_pid_set(sb); +} + +static inline int si_noflush_read_trylock(struct super_block *sb) +{ + int locked; + + locked = __si_read_trylock(sb); + if (locked) + si_pid_set(sb); + return locked; +} + +static inline void si_noflush_write_lock(struct super_block *sb) +{ + __si_write_lock(sb); + si_pid_set(sb); +} + +static inline int si_noflush_write_trylock(struct super_block *sb) +{ + int locked; + + locked = __si_write_trylock(sb); + if (locked) + si_pid_set(sb); + return locked; +} + +#if 0 /* reserved */ +static inline int si_read_trylock(struct super_block *sb, int flags) +{ + if (au_ftest_lock(flags, FLUSH)) + au_nwt_flush(&au_sbi(sb)->si_nowait); + return si_noflush_read_trylock(sb); +} +#endif + +static inline void si_read_unlock(struct super_block *sb) +{ + si_pid_clr(sb); + __si_read_unlock(sb); +} + +#if 0 /* reserved */ +static inline int si_write_trylock(struct super_block *sb, int flags) +{ + if (au_ftest_lock(flags, FLUSH)) + au_nwt_flush(&au_sbi(sb)->si_nowait); + return si_noflush_write_trylock(sb); +} +#endif + +static inline void si_write_unlock(struct super_block *sb) +{ + si_pid_clr(sb); + __si_write_unlock(sb); +} + +#if 0 /* reserved */ +static inline void si_downgrade_lock(struct super_block *sb) +{ + __si_downgrade_lock(sb); +} +#endif + +/* ---------------------------------------------------------------------- */ + +static inline aufs_bindex_t au_sbbot(struct super_block *sb) +{ + SiMustAnyLock(sb); + return au_sbi(sb)->si_bbot; +} + +static inline unsigned int au_mntflags(struct super_block *sb) +{ + SiMustAnyLock(sb); + return au_sbi(sb)->si_mntflags; +} + +static inline unsigned int au_sigen(struct super_block *sb) +{ + SiMustAnyLock(sb); + return au_sbi(sb)->si_generation; +} + +static inline unsigned long long au_ninodes(struct super_block *sb) +{ + s64 n = percpu_counter_sum(&au_sbi(sb)->si_ninodes); + + BUG_ON(n < 0); + return n; +} + +static inline void au_ninodes_inc(struct super_block *sb) +{ + percpu_counter_inc(&au_sbi(sb)->si_ninodes); +} + +static inline void au_ninodes_dec(struct super_block *sb) +{ + percpu_counter_dec(&au_sbi(sb)->si_ninodes); +} + +static inline unsigned long long au_nfiles(struct super_block *sb) +{ + s64 n = percpu_counter_sum(&au_sbi(sb)->si_nfiles); + + BUG_ON(n < 0); + return n; +} + +static inline void au_nfiles_inc(struct super_block *sb) +{ + percpu_counter_inc(&au_sbi(sb)->si_nfiles); +} + +static inline void au_nfiles_dec(struct super_block *sb) +{ + percpu_counter_dec(&au_sbi(sb)->si_nfiles); +} + +static inline struct au_branch *au_sbr(struct super_block *sb, + aufs_bindex_t bindex) +{ + SiMustAnyLock(sb); + return au_sbi(sb)->si_branch[0 + bindex]; +} + +static inline void au_xino_brid_set(struct super_block *sb, aufs_bindex_t brid) +{ + SiMustWriteLock(sb); + au_sbi(sb)->si_xino_brid = brid; +} + +static inline aufs_bindex_t au_xino_brid(struct super_block *sb) +{ + SiMustAnyLock(sb); + return au_sbi(sb)->si_xino_brid; +} + +#endif /* __KERNEL__ */ +#endif /* __AUFS_SUPER_H__ */ --- linux-4.8.0.orig/fs/aufs/sysaufs.c +++ linux-4.8.0/fs/aufs/sysaufs.c @@ -0,0 +1,104 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * sysfs interface and lifetime management + * they are necessary regardless sysfs is disabled. + */ + +#include +#include "aufs.h" + +unsigned long sysaufs_si_mask; +struct kset *sysaufs_kset; + +#define AuSiAttr(_name) { \ + .attr = { .name = __stringify(_name), .mode = 0444 }, \ + .show = sysaufs_si_##_name, \ +} + +static struct sysaufs_si_attr sysaufs_si_attr_xi_path = AuSiAttr(xi_path); +struct attribute *sysaufs_si_attrs[] = { + &sysaufs_si_attr_xi_path.attr, + NULL, +}; + +static const struct sysfs_ops au_sbi_ops = { + .show = sysaufs_si_show +}; + +static struct kobj_type au_sbi_ktype = { + .release = au_si_free, + .sysfs_ops = &au_sbi_ops, + .default_attrs = sysaufs_si_attrs +}; + +/* ---------------------------------------------------------------------- */ + +int sysaufs_si_init(struct au_sbinfo *sbinfo) +{ + int err; + + sbinfo->si_kobj.kset = sysaufs_kset; + /* cf. sysaufs_name() */ + err = kobject_init_and_add + (&sbinfo->si_kobj, &au_sbi_ktype, /*&sysaufs_kset->kobj*/NULL, + SysaufsSiNamePrefix "%lx", sysaufs_si_id(sbinfo)); + + dbgaufs_si_null(sbinfo); + if (!err) { + err = dbgaufs_si_init(sbinfo); + if (unlikely(err)) + kobject_put(&sbinfo->si_kobj); + } + return err; +} + +void sysaufs_fin(void) +{ + dbgaufs_fin(); + sysfs_remove_group(&sysaufs_kset->kobj, sysaufs_attr_group); + kset_unregister(sysaufs_kset); +} + +int __init sysaufs_init(void) +{ + int err; + + do { + get_random_bytes(&sysaufs_si_mask, sizeof(sysaufs_si_mask)); + } while (!sysaufs_si_mask); + + err = -EINVAL; + sysaufs_kset = kset_create_and_add(AUFS_NAME, NULL, fs_kobj); + if (unlikely(!sysaufs_kset)) + goto out; + err = PTR_ERR(sysaufs_kset); + if (IS_ERR(sysaufs_kset)) + goto out; + err = sysfs_create_group(&sysaufs_kset->kobj, sysaufs_attr_group); + if (unlikely(err)) { + kset_unregister(sysaufs_kset); + goto out; + } + + err = dbgaufs_init(); + if (unlikely(err)) + sysaufs_fin(); +out: + return err; +} --- linux-4.8.0.orig/fs/aufs/sysaufs.h +++ linux-4.8.0/fs/aufs/sysaufs.h @@ -0,0 +1,101 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * sysfs interface and mount lifetime management + */ + +#ifndef __SYSAUFS_H__ +#define __SYSAUFS_H__ + +#ifdef __KERNEL__ + +#include +#include "module.h" + +struct super_block; +struct au_sbinfo; + +struct sysaufs_si_attr { + struct attribute attr; + int (*show)(struct seq_file *seq, struct super_block *sb); +}; + +/* ---------------------------------------------------------------------- */ + +/* sysaufs.c */ +extern unsigned long sysaufs_si_mask; +extern struct kset *sysaufs_kset; +extern struct attribute *sysaufs_si_attrs[]; +int sysaufs_si_init(struct au_sbinfo *sbinfo); +int __init sysaufs_init(void); +void sysaufs_fin(void); + +/* ---------------------------------------------------------------------- */ + +/* some people doesn't like to show a pointer in kernel */ +static inline unsigned long sysaufs_si_id(struct au_sbinfo *sbinfo) +{ + return sysaufs_si_mask ^ (unsigned long)sbinfo; +} + +#define SysaufsSiNamePrefix "si_" +#define SysaufsSiNameLen (sizeof(SysaufsSiNamePrefix) + 16) +static inline void sysaufs_name(struct au_sbinfo *sbinfo, char *name) +{ + snprintf(name, SysaufsSiNameLen, SysaufsSiNamePrefix "%lx", + sysaufs_si_id(sbinfo)); +} + +struct au_branch; +#ifdef CONFIG_SYSFS +/* sysfs.c */ +extern struct attribute_group *sysaufs_attr_group; + +int sysaufs_si_xi_path(struct seq_file *seq, struct super_block *sb); +ssize_t sysaufs_si_show(struct kobject *kobj, struct attribute *attr, + char *buf); +long au_brinfo_ioctl(struct file *file, unsigned long arg); +#ifdef CONFIG_COMPAT +long au_brinfo_compat_ioctl(struct file *file, unsigned long arg); +#endif + +void sysaufs_br_init(struct au_branch *br); +void sysaufs_brs_add(struct super_block *sb, aufs_bindex_t bindex); +void sysaufs_brs_del(struct super_block *sb, aufs_bindex_t bindex); + +#define sysaufs_brs_init() do {} while (0) + +#else +#define sysaufs_attr_group NULL + +AuStubInt0(sysaufs_si_xi_path, struct seq_file *seq, struct super_block *sb) +AuStub(ssize_t, sysaufs_si_show, return 0, struct kobject *kobj, + struct attribute *attr, char *buf) +AuStubVoid(sysaufs_br_init, struct au_branch *br) +AuStubVoid(sysaufs_brs_add, struct super_block *sb, aufs_bindex_t bindex) +AuStubVoid(sysaufs_brs_del, struct super_block *sb, aufs_bindex_t bindex) + +static inline void sysaufs_brs_init(void) +{ + sysaufs_brs = 0; +} + +#endif /* CONFIG_SYSFS */ + +#endif /* __KERNEL__ */ +#endif /* __SYSAUFS_H__ */ --- linux-4.8.0.orig/fs/aufs/sysfs.c +++ linux-4.8.0/fs/aufs/sysfs.c @@ -0,0 +1,376 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * sysfs interface + */ + +#include +#include +#include "aufs.h" + +#ifdef CONFIG_AUFS_FS_MODULE +/* this entry violates the "one line per file" policy of sysfs */ +static ssize_t config_show(struct kobject *kobj, struct kobj_attribute *attr, + char *buf) +{ + ssize_t err; + static char *conf = +/* this file is generated at compiling */ +#include "conf.str" + ; + + err = snprintf(buf, PAGE_SIZE, conf); + if (unlikely(err >= PAGE_SIZE)) + err = -EFBIG; + return err; +} + +static struct kobj_attribute au_config_attr = __ATTR_RO(config); +#endif + +static struct attribute *au_attr[] = { +#ifdef CONFIG_AUFS_FS_MODULE + &au_config_attr.attr, +#endif + NULL, /* need to NULL terminate the list of attributes */ +}; + +static struct attribute_group sysaufs_attr_group_body = { + .attrs = au_attr +}; + +struct attribute_group *sysaufs_attr_group = &sysaufs_attr_group_body; + +/* ---------------------------------------------------------------------- */ + +int sysaufs_si_xi_path(struct seq_file *seq, struct super_block *sb) +{ + int err; + + SiMustAnyLock(sb); + + err = 0; + if (au_opt_test(au_mntflags(sb), XINO)) { + err = au_xino_path(seq, au_sbi(sb)->si_xib); + seq_putc(seq, '\n'); + } + return err; +} + +/* + * the lifetime of branch is independent from the entry under sysfs. + * sysfs handles the lifetime of the entry, and never call ->show() after it is + * unlinked. + */ +static int sysaufs_si_br(struct seq_file *seq, struct super_block *sb, + aufs_bindex_t bindex, int idx) +{ + int err; + struct path path; + struct dentry *root; + struct au_branch *br; + au_br_perm_str_t perm; + + AuDbg("b%d\n", bindex); + + err = 0; + root = sb->s_root; + di_read_lock_parent(root, !AuLock_IR); + br = au_sbr(sb, bindex); + + switch (idx) { + case AuBrSysfs_BR: + path.mnt = au_br_mnt(br); + path.dentry = au_h_dptr(root, bindex); + err = au_seq_path(seq, &path); + if (!err) { + au_optstr_br_perm(&perm, br->br_perm); + seq_printf(seq, "=%s\n", perm.a); + } + break; + case AuBrSysfs_BRID: + seq_printf(seq, "%d\n", br->br_id); + break; + } + di_read_unlock(root, !AuLock_IR); + if (unlikely(err || seq_has_overflowed(seq))) + err = -E2BIG; + + return err; +} + +/* ---------------------------------------------------------------------- */ + +static struct seq_file *au_seq(char *p, ssize_t len) +{ + struct seq_file *seq; + + seq = kzalloc(sizeof(*seq), GFP_NOFS); + if (seq) { + /* mutex_init(&seq.lock); */ + seq->buf = p; + seq->size = len; + return seq; /* success */ + } + + seq = ERR_PTR(-ENOMEM); + return seq; +} + +#define SysaufsBr_PREFIX "br" +#define SysaufsBrid_PREFIX "brid" + +/* todo: file size may exceed PAGE_SIZE */ +ssize_t sysaufs_si_show(struct kobject *kobj, struct attribute *attr, + char *buf) +{ + ssize_t err; + int idx; + long l; + aufs_bindex_t bbot; + struct au_sbinfo *sbinfo; + struct super_block *sb; + struct seq_file *seq; + char *name; + struct attribute **cattr; + + sbinfo = container_of(kobj, struct au_sbinfo, si_kobj); + sb = sbinfo->si_sb; + + /* + * prevent a race condition between sysfs and aufs. + * for instance, sysfs_file_read() calls sysfs_get_active_two() which + * prohibits maintaining the sysfs entries. + * hew we acquire read lock after sysfs_get_active_two(). + * on the other hand, the remount process may maintain the sysfs/aufs + * entries after acquiring write lock. + * it can cause a deadlock. + * simply we gave up processing read here. + */ + err = -EBUSY; + if (unlikely(!si_noflush_read_trylock(sb))) + goto out; + + seq = au_seq(buf, PAGE_SIZE); + err = PTR_ERR(seq); + if (IS_ERR(seq)) + goto out_unlock; + + name = (void *)attr->name; + cattr = sysaufs_si_attrs; + while (*cattr) { + if (!strcmp(name, (*cattr)->name)) { + err = container_of(*cattr, struct sysaufs_si_attr, attr) + ->show(seq, sb); + goto out_seq; + } + cattr++; + } + + if (!strncmp(name, SysaufsBrid_PREFIX, + sizeof(SysaufsBrid_PREFIX) - 1)) { + idx = AuBrSysfs_BRID; + name += sizeof(SysaufsBrid_PREFIX) - 1; + } else if (!strncmp(name, SysaufsBr_PREFIX, + sizeof(SysaufsBr_PREFIX) - 1)) { + idx = AuBrSysfs_BR; + name += sizeof(SysaufsBr_PREFIX) - 1; + } else + BUG(); + + err = kstrtol(name, 10, &l); + if (!err) { + bbot = au_sbbot(sb); + if (l <= bbot) + err = sysaufs_si_br(seq, sb, (aufs_bindex_t)l, idx); + else + err = -ENOENT; + } + +out_seq: + if (!err) { + err = seq->count; + /* sysfs limit */ + if (unlikely(err == PAGE_SIZE)) + err = -EFBIG; + } + au_delayed_kfree(seq); +out_unlock: + si_read_unlock(sb); +out: + return err; +} + +/* ---------------------------------------------------------------------- */ + +static int au_brinfo(struct super_block *sb, union aufs_brinfo __user *arg) +{ + int err; + int16_t brid; + aufs_bindex_t bindex, bbot; + size_t sz; + char *buf; + struct seq_file *seq; + struct au_branch *br; + + si_read_lock(sb, AuLock_FLUSH); + bbot = au_sbbot(sb); + err = bbot + 1; + if (!arg) + goto out; + + err = -ENOMEM; + buf = (void *)__get_free_page(GFP_NOFS); + if (unlikely(!buf)) + goto out; + + seq = au_seq(buf, PAGE_SIZE); + err = PTR_ERR(seq); + if (IS_ERR(seq)) + goto out_buf; + + sz = sizeof(*arg) - offsetof(union aufs_brinfo, path); + for (bindex = 0; bindex <= bbot; bindex++, arg++) { + err = !access_ok(VERIFY_WRITE, arg, sizeof(*arg)); + if (unlikely(err)) + break; + + br = au_sbr(sb, bindex); + brid = br->br_id; + BUILD_BUG_ON(sizeof(brid) != sizeof(arg->id)); + err = __put_user(brid, &arg->id); + if (unlikely(err)) + break; + + BUILD_BUG_ON(sizeof(br->br_perm) != sizeof(arg->perm)); + err = __put_user(br->br_perm, &arg->perm); + if (unlikely(err)) + break; + + err = au_seq_path(seq, &br->br_path); + if (unlikely(err)) + break; + seq_putc(seq, '\0'); + if (!seq_has_overflowed(seq)) { + err = copy_to_user(arg->path, seq->buf, seq->count); + seq->count = 0; + if (unlikely(err)) + break; + } else { + err = -E2BIG; + goto out_seq; + } + } + if (unlikely(err)) + err = -EFAULT; + +out_seq: + au_delayed_kfree(seq); +out_buf: + au_delayed_free_page((unsigned long)buf); +out: + si_read_unlock(sb); + return err; +} + +long au_brinfo_ioctl(struct file *file, unsigned long arg) +{ + return au_brinfo(file->f_path.dentry->d_sb, (void __user *)arg); +} + +#ifdef CONFIG_COMPAT +long au_brinfo_compat_ioctl(struct file *file, unsigned long arg) +{ + return au_brinfo(file->f_path.dentry->d_sb, compat_ptr(arg)); +} +#endif + +/* ---------------------------------------------------------------------- */ + +void sysaufs_br_init(struct au_branch *br) +{ + int i; + struct au_brsysfs *br_sysfs; + struct attribute *attr; + + br_sysfs = br->br_sysfs; + for (i = 0; i < ARRAY_SIZE(br->br_sysfs); i++) { + attr = &br_sysfs->attr; + sysfs_attr_init(attr); + attr->name = br_sysfs->name; + attr->mode = S_IRUGO; + br_sysfs++; + } +} + +void sysaufs_brs_del(struct super_block *sb, aufs_bindex_t bindex) +{ + struct au_branch *br; + struct kobject *kobj; + struct au_brsysfs *br_sysfs; + int i; + aufs_bindex_t bbot; + + dbgaufs_brs_del(sb, bindex); + + if (!sysaufs_brs) + return; + + kobj = &au_sbi(sb)->si_kobj; + bbot = au_sbbot(sb); + for (; bindex <= bbot; bindex++) { + br = au_sbr(sb, bindex); + br_sysfs = br->br_sysfs; + for (i = 0; i < ARRAY_SIZE(br->br_sysfs); i++) { + sysfs_remove_file(kobj, &br_sysfs->attr); + br_sysfs++; + } + } +} + +void sysaufs_brs_add(struct super_block *sb, aufs_bindex_t bindex) +{ + int err, i; + aufs_bindex_t bbot; + struct kobject *kobj; + struct au_branch *br; + struct au_brsysfs *br_sysfs; + + dbgaufs_brs_add(sb, bindex); + + if (!sysaufs_brs) + return; + + kobj = &au_sbi(sb)->si_kobj; + bbot = au_sbbot(sb); + for (; bindex <= bbot; bindex++) { + br = au_sbr(sb, bindex); + br_sysfs = br->br_sysfs; + snprintf(br_sysfs[AuBrSysfs_BR].name, sizeof(br_sysfs->name), + SysaufsBr_PREFIX "%d", bindex); + snprintf(br_sysfs[AuBrSysfs_BRID].name, sizeof(br_sysfs->name), + SysaufsBrid_PREFIX "%d", bindex); + for (i = 0; i < ARRAY_SIZE(br->br_sysfs); i++) { + err = sysfs_create_file(kobj, &br_sysfs->attr); + if (unlikely(err)) + pr_warn("failed %s under sysfs(%d)\n", + br_sysfs->name, err); + br_sysfs++; + } + } +} --- linux-4.8.0.orig/fs/aufs/sysrq.c +++ linux-4.8.0/fs/aufs/sysrq.c @@ -0,0 +1,157 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * magic sysrq hanlder + */ + +/* #include */ +#include +#include "aufs.h" + +/* ---------------------------------------------------------------------- */ + +static void sysrq_sb(struct super_block *sb) +{ + char *plevel; + struct au_sbinfo *sbinfo; + struct file *file; + struct au_sphlhead *files; + struct au_finfo *finfo; + + plevel = au_plevel; + au_plevel = KERN_WARNING; + + /* since we define pr_fmt, call printk directly */ +#define pr(str) printk(KERN_WARNING AUFS_NAME ": " str) + + sbinfo = au_sbi(sb); + printk(KERN_WARNING "si=%lx\n", sysaufs_si_id(sbinfo)); + pr("superblock\n"); + au_dpri_sb(sb); + +#if 0 + pr("root dentry\n"); + au_dpri_dentry(sb->s_root); + pr("root inode\n"); + au_dpri_inode(d_inode(sb->s_root)); +#endif + +#if 0 + do { + int err, i, j, ndentry; + struct au_dcsub_pages dpages; + struct au_dpage *dpage; + + err = au_dpages_init(&dpages, GFP_ATOMIC); + if (unlikely(err)) + break; + err = au_dcsub_pages(&dpages, sb->s_root, NULL, NULL); + if (!err) + for (i = 0; i < dpages.ndpage; i++) { + dpage = dpages.dpages + i; + ndentry = dpage->ndentry; + for (j = 0; j < ndentry; j++) + au_dpri_dentry(dpage->dentries[j]); + } + au_dpages_free(&dpages); + } while (0); +#endif + +#if 1 + { + struct inode *i; + + pr("isolated inode\n"); + spin_lock(&sb->s_inode_list_lock); + list_for_each_entry(i, &sb->s_inodes, i_sb_list) { + spin_lock(&i->i_lock); + if (1 || hlist_empty(&i->i_dentry)) + au_dpri_inode(i); + spin_unlock(&i->i_lock); + } + spin_unlock(&sb->s_inode_list_lock); + } +#endif + pr("files\n"); + files = &au_sbi(sb)->si_files; + spin_lock(&files->spin); + hlist_for_each_entry(finfo, &files->head, fi_hlist) { + umode_t mode; + + file = finfo->fi_file; + mode = file_inode(file)->i_mode; + if (!special_file(mode)) + au_dpri_file(file); + } + spin_unlock(&files->spin); + pr("done\n"); + +#undef pr + au_plevel = plevel; +} + +/* ---------------------------------------------------------------------- */ + +/* module parameter */ +static char *aufs_sysrq_key = "a"; +module_param_named(sysrq, aufs_sysrq_key, charp, S_IRUGO); +MODULE_PARM_DESC(sysrq, "MagicSysRq key for " AUFS_NAME); + +static void au_sysrq(int key __maybe_unused) +{ + struct au_sbinfo *sbinfo; + + lockdep_off(); + au_sbilist_lock(); + hlist_for_each_entry(sbinfo, &au_sbilist.head, si_list) + sysrq_sb(sbinfo->si_sb); + au_sbilist_unlock(); + lockdep_on(); +} + +static struct sysrq_key_op au_sysrq_op = { + .handler = au_sysrq, + .help_msg = "Aufs", + .action_msg = "Aufs", + .enable_mask = SYSRQ_ENABLE_DUMP +}; + +/* ---------------------------------------------------------------------- */ + +int __init au_sysrq_init(void) +{ + int err; + char key; + + err = -1; + key = *aufs_sysrq_key; + if ('a' <= key && key <= 'z') + err = register_sysrq_key(key, &au_sysrq_op); + if (unlikely(err)) + pr_err("err %d, sysrq=%c\n", err, key); + return err; +} + +void au_sysrq_fin(void) +{ + int err; + + err = unregister_sysrq_key(*aufs_sysrq_key, &au_sysrq_op); + if (unlikely(err)) + pr_err("err %d (ignored)\n", err); +} --- linux-4.8.0.orig/fs/aufs/vdir.c +++ linux-4.8.0/fs/aufs/vdir.c @@ -0,0 +1,900 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * virtual or vertical directory + */ + +#include "aufs.h" + +static unsigned int calc_size(int nlen) +{ + return ALIGN(sizeof(struct au_vdir_de) + nlen, sizeof(ino_t)); +} + +static int set_deblk_end(union au_vdir_deblk_p *p, + union au_vdir_deblk_p *deblk_end) +{ + if (calc_size(0) <= deblk_end->deblk - p->deblk) { + p->de->de_str.len = 0; + /* smp_mb(); */ + return 0; + } + return -1; /* error */ +} + +/* returns true or false */ +static int is_deblk_end(union au_vdir_deblk_p *p, + union au_vdir_deblk_p *deblk_end) +{ + if (calc_size(0) <= deblk_end->deblk - p->deblk) + return !p->de->de_str.len; + return 1; +} + +static unsigned char *last_deblk(struct au_vdir *vdir) +{ + return vdir->vd_deblk[vdir->vd_nblk - 1]; +} + +/* ---------------------------------------------------------------------- */ + +/* estimate the appropriate size for name hash table */ +unsigned int au_rdhash_est(loff_t sz) +{ + unsigned int n; + + n = UINT_MAX; + sz >>= 10; + if (sz < n) + n = sz; + if (sz < AUFS_RDHASH_DEF) + n = AUFS_RDHASH_DEF; + /* pr_info("n %u\n", n); */ + return n; +} + +/* + * the allocated memory has to be freed by + * au_nhash_wh_free() or au_nhash_de_free(). + */ +int au_nhash_alloc(struct au_nhash *nhash, unsigned int num_hash, gfp_t gfp) +{ + struct hlist_head *head; + unsigned int u; + size_t sz; + + sz = sizeof(*nhash->nh_head) * num_hash; + head = kmalloc(sz, gfp); + if (head) { + nhash->nh_num = num_hash; + nhash->nh_head = head; + for (u = 0; u < num_hash; u++) + INIT_HLIST_HEAD(head++); + return 0; /* success */ + } + + return -ENOMEM; +} + +static void nhash_count(struct hlist_head *head) +{ +#if 0 + unsigned long n; + struct hlist_node *pos; + + n = 0; + hlist_for_each(pos, head) + n++; + pr_info("%lu\n", n); +#endif +} + +static void au_nhash_wh_do_free(struct hlist_head *head) +{ + struct au_vdir_wh *pos; + struct hlist_node *node; + + hlist_for_each_entry_safe(pos, node, head, wh_hash) + au_delayed_kfree(pos); +} + +static void au_nhash_de_do_free(struct hlist_head *head) +{ + struct au_vdir_dehstr *pos; + struct hlist_node *node; + + hlist_for_each_entry_safe(pos, node, head, hash) + au_cache_dfree_vdir_dehstr(pos); +} + +static void au_nhash_do_free(struct au_nhash *nhash, + void (*free)(struct hlist_head *head)) +{ + unsigned int n; + struct hlist_head *head; + + n = nhash->nh_num; + if (!n) + return; + + head = nhash->nh_head; + while (n-- > 0) { + nhash_count(head); + free(head++); + } + au_delayed_kfree(nhash->nh_head); +} + +void au_nhash_wh_free(struct au_nhash *whlist) +{ + au_nhash_do_free(whlist, au_nhash_wh_do_free); +} + +static void au_nhash_de_free(struct au_nhash *delist) +{ + au_nhash_do_free(delist, au_nhash_de_do_free); +} + +/* ---------------------------------------------------------------------- */ + +int au_nhash_test_longer_wh(struct au_nhash *whlist, aufs_bindex_t btgt, + int limit) +{ + int num; + unsigned int u, n; + struct hlist_head *head; + struct au_vdir_wh *pos; + + num = 0; + n = whlist->nh_num; + head = whlist->nh_head; + for (u = 0; u < n; u++, head++) + hlist_for_each_entry(pos, head, wh_hash) + if (pos->wh_bindex == btgt && ++num > limit) + return 1; + return 0; +} + +static struct hlist_head *au_name_hash(struct au_nhash *nhash, + unsigned char *name, + unsigned int len) +{ + unsigned int v; + /* const unsigned int magic_bit = 12; */ + + AuDebugOn(!nhash->nh_num || !nhash->nh_head); + + v = 0; + if (len > 8) + len = 8; + while (len--) + v += *name++; + /* v = hash_long(v, magic_bit); */ + v %= nhash->nh_num; + return nhash->nh_head + v; +} + +static int au_nhash_test_name(struct au_vdir_destr *str, const char *name, + int nlen) +{ + return str->len == nlen && !memcmp(str->name, name, nlen); +} + +/* returns found or not */ +int au_nhash_test_known_wh(struct au_nhash *whlist, char *name, int nlen) +{ + struct hlist_head *head; + struct au_vdir_wh *pos; + struct au_vdir_destr *str; + + head = au_name_hash(whlist, name, nlen); + hlist_for_each_entry(pos, head, wh_hash) { + str = &pos->wh_str; + AuDbg("%.*s\n", str->len, str->name); + if (au_nhash_test_name(str, name, nlen)) + return 1; + } + return 0; +} + +/* returns found(true) or not */ +static int test_known(struct au_nhash *delist, char *name, int nlen) +{ + struct hlist_head *head; + struct au_vdir_dehstr *pos; + struct au_vdir_destr *str; + + head = au_name_hash(delist, name, nlen); + hlist_for_each_entry(pos, head, hash) { + str = pos->str; + AuDbg("%.*s\n", str->len, str->name); + if (au_nhash_test_name(str, name, nlen)) + return 1; + } + return 0; +} + +static void au_shwh_init_wh(struct au_vdir_wh *wh, ino_t ino, + unsigned char d_type) +{ +#ifdef CONFIG_AUFS_SHWH + wh->wh_ino = ino; + wh->wh_type = d_type; +#endif +} + +/* ---------------------------------------------------------------------- */ + +int au_nhash_append_wh(struct au_nhash *whlist, char *name, int nlen, ino_t ino, + unsigned int d_type, aufs_bindex_t bindex, + unsigned char shwh) +{ + int err; + struct au_vdir_destr *str; + struct au_vdir_wh *wh; + + AuDbg("%.*s\n", nlen, name); + AuDebugOn(!whlist->nh_num || !whlist->nh_head); + + err = -ENOMEM; + wh = kmalloc(sizeof(*wh) + nlen, GFP_NOFS); + if (unlikely(!wh)) + goto out; + + err = 0; + wh->wh_bindex = bindex; + if (shwh) + au_shwh_init_wh(wh, ino, d_type); + str = &wh->wh_str; + str->len = nlen; + memcpy(str->name, name, nlen); + hlist_add_head(&wh->wh_hash, au_name_hash(whlist, name, nlen)); + /* smp_mb(); */ + +out: + return err; +} + +static int append_deblk(struct au_vdir *vdir) +{ + int err; + unsigned long ul; + const unsigned int deblk_sz = vdir->vd_deblk_sz; + union au_vdir_deblk_p p, deblk_end; + unsigned char **o; + + err = -ENOMEM; + o = au_krealloc(vdir->vd_deblk, sizeof(*o) * (vdir->vd_nblk + 1), + GFP_NOFS, /*may_shrink*/0); + if (unlikely(!o)) + goto out; + + vdir->vd_deblk = o; + p.deblk = kmalloc(deblk_sz, GFP_NOFS); + if (p.deblk) { + ul = vdir->vd_nblk++; + vdir->vd_deblk[ul] = p.deblk; + vdir->vd_last.ul = ul; + vdir->vd_last.p.deblk = p.deblk; + deblk_end.deblk = p.deblk + deblk_sz; + err = set_deblk_end(&p, &deblk_end); + } + +out: + return err; +} + +static int append_de(struct au_vdir *vdir, char *name, int nlen, ino_t ino, + unsigned int d_type, struct au_nhash *delist) +{ + int err; + unsigned int sz; + const unsigned int deblk_sz = vdir->vd_deblk_sz; + union au_vdir_deblk_p p, *room, deblk_end; + struct au_vdir_dehstr *dehstr; + + p.deblk = last_deblk(vdir); + deblk_end.deblk = p.deblk + deblk_sz; + room = &vdir->vd_last.p; + AuDebugOn(room->deblk < p.deblk || deblk_end.deblk <= room->deblk + || !is_deblk_end(room, &deblk_end)); + + sz = calc_size(nlen); + if (unlikely(sz > deblk_end.deblk - room->deblk)) { + err = append_deblk(vdir); + if (unlikely(err)) + goto out; + + p.deblk = last_deblk(vdir); + deblk_end.deblk = p.deblk + deblk_sz; + /* smp_mb(); */ + AuDebugOn(room->deblk != p.deblk); + } + + err = -ENOMEM; + dehstr = au_cache_alloc_vdir_dehstr(); + if (unlikely(!dehstr)) + goto out; + + dehstr->str = &room->de->de_str; + hlist_add_head(&dehstr->hash, au_name_hash(delist, name, nlen)); + room->de->de_ino = ino; + room->de->de_type = d_type; + room->de->de_str.len = nlen; + memcpy(room->de->de_str.name, name, nlen); + + err = 0; + room->deblk += sz; + if (unlikely(set_deblk_end(room, &deblk_end))) + err = append_deblk(vdir); + /* smp_mb(); */ + +out: + return err; +} + +/* ---------------------------------------------------------------------- */ + +void au_vdir_free(struct au_vdir *vdir, int atonce) +{ + unsigned char **deblk; + + deblk = vdir->vd_deblk; + if (!atonce) { + while (vdir->vd_nblk--) + au_delayed_kfree(*deblk++); + au_delayed_kfree(vdir->vd_deblk); + au_cache_dfree_vdir(vdir); + } else { + /* not delayed */ + while (vdir->vd_nblk--) + kfree(*deblk++); + kfree(vdir->vd_deblk); + au_cache_free_vdir(vdir); + } +} + +static struct au_vdir *alloc_vdir(struct file *file) +{ + struct au_vdir *vdir; + struct super_block *sb; + int err; + + sb = file->f_path.dentry->d_sb; + SiMustAnyLock(sb); + + err = -ENOMEM; + vdir = au_cache_alloc_vdir(); + if (unlikely(!vdir)) + goto out; + + vdir->vd_deblk = kzalloc(sizeof(*vdir->vd_deblk), GFP_NOFS); + if (unlikely(!vdir->vd_deblk)) + goto out_free; + + vdir->vd_deblk_sz = au_sbi(sb)->si_rdblk; + if (!vdir->vd_deblk_sz) { + /* estimate the appropriate size for deblk */ + vdir->vd_deblk_sz = au_dir_size(file, /*dentry*/NULL); + /* pr_info("vd_deblk_sz %u\n", vdir->vd_deblk_sz); */ + } + vdir->vd_nblk = 0; + vdir->vd_version = 0; + vdir->vd_jiffy = 0; + err = append_deblk(vdir); + if (!err) + return vdir; /* success */ + + au_delayed_kfree(vdir->vd_deblk); + +out_free: + au_cache_dfree_vdir(vdir); +out: + vdir = ERR_PTR(err); + return vdir; +} + +static int reinit_vdir(struct au_vdir *vdir) +{ + int err; + union au_vdir_deblk_p p, deblk_end; + + while (vdir->vd_nblk > 1) { + au_delayed_kfree(vdir->vd_deblk[vdir->vd_nblk - 1]); + /* vdir->vd_deblk[vdir->vd_nblk - 1] = NULL; */ + vdir->vd_nblk--; + } + p.deblk = vdir->vd_deblk[0]; + deblk_end.deblk = p.deblk + vdir->vd_deblk_sz; + err = set_deblk_end(&p, &deblk_end); + /* keep vd_dblk_sz */ + vdir->vd_last.ul = 0; + vdir->vd_last.p.deblk = vdir->vd_deblk[0]; + vdir->vd_version = 0; + vdir->vd_jiffy = 0; + /* smp_mb(); */ + return err; +} + +/* ---------------------------------------------------------------------- */ + +#define AuFillVdir_CALLED 1 +#define AuFillVdir_WHABLE (1 << 1) +#define AuFillVdir_SHWH (1 << 2) +#define au_ftest_fillvdir(flags, name) ((flags) & AuFillVdir_##name) +#define au_fset_fillvdir(flags, name) \ + do { (flags) |= AuFillVdir_##name; } while (0) +#define au_fclr_fillvdir(flags, name) \ + do { (flags) &= ~AuFillVdir_##name; } while (0) + +#ifndef CONFIG_AUFS_SHWH +#undef AuFillVdir_SHWH +#define AuFillVdir_SHWH 0 +#endif + +struct fillvdir_arg { + struct dir_context ctx; + struct file *file; + struct au_vdir *vdir; + struct au_nhash delist; + struct au_nhash whlist; + aufs_bindex_t bindex; + unsigned int flags; + int err; +}; + +static int fillvdir(struct dir_context *ctx, const char *__name, int nlen, + loff_t offset __maybe_unused, u64 h_ino, + unsigned int d_type) +{ + struct fillvdir_arg *arg = container_of(ctx, struct fillvdir_arg, ctx); + char *name = (void *)__name; + struct super_block *sb; + ino_t ino; + const unsigned char shwh = !!au_ftest_fillvdir(arg->flags, SHWH); + + arg->err = 0; + sb = arg->file->f_path.dentry->d_sb; + au_fset_fillvdir(arg->flags, CALLED); + /* smp_mb(); */ + if (nlen <= AUFS_WH_PFX_LEN + || memcmp(name, AUFS_WH_PFX, AUFS_WH_PFX_LEN)) { + if (test_known(&arg->delist, name, nlen) + || au_nhash_test_known_wh(&arg->whlist, name, nlen)) + goto out; /* already exists or whiteouted */ + + arg->err = au_ino(sb, arg->bindex, h_ino, d_type, &ino); + if (!arg->err) { + if (unlikely(nlen > AUFS_MAX_NAMELEN)) + d_type = DT_UNKNOWN; + arg->err = append_de(arg->vdir, name, nlen, ino, + d_type, &arg->delist); + } + } else if (au_ftest_fillvdir(arg->flags, WHABLE)) { + name += AUFS_WH_PFX_LEN; + nlen -= AUFS_WH_PFX_LEN; + if (au_nhash_test_known_wh(&arg->whlist, name, nlen)) + goto out; /* already whiteouted */ + + if (shwh) + arg->err = au_wh_ino(sb, arg->bindex, h_ino, d_type, + &ino); + if (!arg->err) { + if (nlen <= AUFS_MAX_NAMELEN + AUFS_WH_PFX_LEN) + d_type = DT_UNKNOWN; + arg->err = au_nhash_append_wh + (&arg->whlist, name, nlen, ino, d_type, + arg->bindex, shwh); + } + } + +out: + if (!arg->err) + arg->vdir->vd_jiffy = jiffies; + /* smp_mb(); */ + AuTraceErr(arg->err); + return arg->err; +} + +static int au_handle_shwh(struct super_block *sb, struct au_vdir *vdir, + struct au_nhash *whlist, struct au_nhash *delist) +{ +#ifdef CONFIG_AUFS_SHWH + int err; + unsigned int nh, u; + struct hlist_head *head; + struct au_vdir_wh *pos; + struct hlist_node *n; + char *p, *o; + struct au_vdir_destr *destr; + + AuDebugOn(!au_opt_test(au_mntflags(sb), SHWH)); + + err = -ENOMEM; + o = p = (void *)__get_free_page(GFP_NOFS); + if (unlikely(!p)) + goto out; + + err = 0; + nh = whlist->nh_num; + memcpy(p, AUFS_WH_PFX, AUFS_WH_PFX_LEN); + p += AUFS_WH_PFX_LEN; + for (u = 0; u < nh; u++) { + head = whlist->nh_head + u; + hlist_for_each_entry_safe(pos, n, head, wh_hash) { + destr = &pos->wh_str; + memcpy(p, destr->name, destr->len); + err = append_de(vdir, o, destr->len + AUFS_WH_PFX_LEN, + pos->wh_ino, pos->wh_type, delist); + if (unlikely(err)) + break; + } + } + + au_delayed_free_page((unsigned long)o); + +out: + AuTraceErr(err); + return err; +#else + return 0; +#endif +} + +static int au_do_read_vdir(struct fillvdir_arg *arg) +{ + int err; + unsigned int rdhash; + loff_t offset; + aufs_bindex_t bbot, bindex, btop; + unsigned char shwh; + struct file *hf, *file; + struct super_block *sb; + + file = arg->file; + sb = file->f_path.dentry->d_sb; + SiMustAnyLock(sb); + + rdhash = au_sbi(sb)->si_rdhash; + if (!rdhash) + rdhash = au_rdhash_est(au_dir_size(file, /*dentry*/NULL)); + err = au_nhash_alloc(&arg->delist, rdhash, GFP_NOFS); + if (unlikely(err)) + goto out; + err = au_nhash_alloc(&arg->whlist, rdhash, GFP_NOFS); + if (unlikely(err)) + goto out_delist; + + err = 0; + arg->flags = 0; + shwh = 0; + if (au_opt_test(au_mntflags(sb), SHWH)) { + shwh = 1; + au_fset_fillvdir(arg->flags, SHWH); + } + btop = au_fbtop(file); + bbot = au_fbbot_dir(file); + for (bindex = btop; !err && bindex <= bbot; bindex++) { + hf = au_hf_dir(file, bindex); + if (!hf) + continue; + + offset = vfsub_llseek(hf, 0, SEEK_SET); + err = offset; + if (unlikely(offset)) + break; + + arg->bindex = bindex; + au_fclr_fillvdir(arg->flags, WHABLE); + if (shwh + || (bindex != bbot + && au_br_whable(au_sbr_perm(sb, bindex)))) + au_fset_fillvdir(arg->flags, WHABLE); + do { + arg->err = 0; + au_fclr_fillvdir(arg->flags, CALLED); + /* smp_mb(); */ + err = vfsub_iterate_dir(hf, &arg->ctx); + if (err >= 0) + err = arg->err; + } while (!err && au_ftest_fillvdir(arg->flags, CALLED)); + + /* + * dir_relax() may be good for concurrency, but aufs should not + * use it since it will cause a lockdep problem. + */ + } + + if (!err && shwh) + err = au_handle_shwh(sb, arg->vdir, &arg->whlist, &arg->delist); + + au_nhash_wh_free(&arg->whlist); + +out_delist: + au_nhash_de_free(&arg->delist); +out: + return err; +} + +static int read_vdir(struct file *file, int may_read) +{ + int err; + unsigned long expire; + unsigned char do_read; + struct fillvdir_arg arg = { + .ctx = { + .actor = fillvdir + } + }; + struct inode *inode; + struct au_vdir *vdir, *allocated; + + err = 0; + inode = file_inode(file); + IMustLock(inode); + IiMustWriteLock(inode); + SiMustAnyLock(inode->i_sb); + + allocated = NULL; + do_read = 0; + expire = au_sbi(inode->i_sb)->si_rdcache; + vdir = au_ivdir(inode); + if (!vdir) { + do_read = 1; + vdir = alloc_vdir(file); + err = PTR_ERR(vdir); + if (IS_ERR(vdir)) + goto out; + err = 0; + allocated = vdir; + } else if (may_read + && (inode->i_version != vdir->vd_version + || time_after(jiffies, vdir->vd_jiffy + expire))) { + do_read = 1; + err = reinit_vdir(vdir); + if (unlikely(err)) + goto out; + } + + if (!do_read) + return 0; /* success */ + + arg.file = file; + arg.vdir = vdir; + err = au_do_read_vdir(&arg); + if (!err) { + /* file->f_pos = 0; */ /* todo: ctx->pos? */ + vdir->vd_version = inode->i_version; + vdir->vd_last.ul = 0; + vdir->vd_last.p.deblk = vdir->vd_deblk[0]; + if (allocated) + au_set_ivdir(inode, allocated); + } else if (allocated) + au_vdir_free(allocated, /*atonce*/0); + +out: + return err; +} + +static int copy_vdir(struct au_vdir *tgt, struct au_vdir *src) +{ + int err, rerr; + unsigned long ul, n; + const unsigned int deblk_sz = src->vd_deblk_sz; + + AuDebugOn(tgt->vd_nblk != 1); + + err = -ENOMEM; + if (tgt->vd_nblk < src->vd_nblk) { + unsigned char **p; + + p = au_krealloc(tgt->vd_deblk, sizeof(*p) * src->vd_nblk, + GFP_NOFS, /*may_shrink*/0); + if (unlikely(!p)) + goto out; + tgt->vd_deblk = p; + } + + if (tgt->vd_deblk_sz != deblk_sz) { + unsigned char *p; + + tgt->vd_deblk_sz = deblk_sz; + p = au_krealloc(tgt->vd_deblk[0], deblk_sz, GFP_NOFS, + /*may_shrink*/1); + if (unlikely(!p)) + goto out; + tgt->vd_deblk[0] = p; + } + memcpy(tgt->vd_deblk[0], src->vd_deblk[0], deblk_sz); + tgt->vd_version = src->vd_version; + tgt->vd_jiffy = src->vd_jiffy; + + n = src->vd_nblk; + for (ul = 1; ul < n; ul++) { + tgt->vd_deblk[ul] = kmemdup(src->vd_deblk[ul], deblk_sz, + GFP_NOFS); + if (unlikely(!tgt->vd_deblk[ul])) + goto out; + tgt->vd_nblk++; + } + tgt->vd_nblk = n; + tgt->vd_last.ul = tgt->vd_last.ul; + tgt->vd_last.p.deblk = tgt->vd_deblk[tgt->vd_last.ul]; + tgt->vd_last.p.deblk += src->vd_last.p.deblk + - src->vd_deblk[src->vd_last.ul]; + /* smp_mb(); */ + return 0; /* success */ + +out: + rerr = reinit_vdir(tgt); + BUG_ON(rerr); + return err; +} + +int au_vdir_init(struct file *file) +{ + int err; + struct inode *inode; + struct au_vdir *vdir_cache, *allocated; + + /* test file->f_pos here instead of ctx->pos */ + err = read_vdir(file, !file->f_pos); + if (unlikely(err)) + goto out; + + allocated = NULL; + vdir_cache = au_fvdir_cache(file); + if (!vdir_cache) { + vdir_cache = alloc_vdir(file); + err = PTR_ERR(vdir_cache); + if (IS_ERR(vdir_cache)) + goto out; + allocated = vdir_cache; + } else if (!file->f_pos && vdir_cache->vd_version != file->f_version) { + /* test file->f_pos here instead of ctx->pos */ + err = reinit_vdir(vdir_cache); + if (unlikely(err)) + goto out; + } else + return 0; /* success */ + + inode = file_inode(file); + err = copy_vdir(vdir_cache, au_ivdir(inode)); + if (!err) { + file->f_version = inode->i_version; + if (allocated) + au_set_fvdir_cache(file, allocated); + } else if (allocated) + au_vdir_free(allocated, /*atonce*/0); + +out: + return err; +} + +static loff_t calc_offset(struct au_vdir *vdir) +{ + loff_t offset; + union au_vdir_deblk_p p; + + p.deblk = vdir->vd_deblk[vdir->vd_last.ul]; + offset = vdir->vd_last.p.deblk - p.deblk; + offset += vdir->vd_deblk_sz * vdir->vd_last.ul; + return offset; +} + +/* returns true or false */ +static int seek_vdir(struct file *file, struct dir_context *ctx) +{ + int valid; + unsigned int deblk_sz; + unsigned long ul, n; + loff_t offset; + union au_vdir_deblk_p p, deblk_end; + struct au_vdir *vdir_cache; + + valid = 1; + vdir_cache = au_fvdir_cache(file); + offset = calc_offset(vdir_cache); + AuDbg("offset %lld\n", offset); + if (ctx->pos == offset) + goto out; + + vdir_cache->vd_last.ul = 0; + vdir_cache->vd_last.p.deblk = vdir_cache->vd_deblk[0]; + if (!ctx->pos) + goto out; + + valid = 0; + deblk_sz = vdir_cache->vd_deblk_sz; + ul = div64_u64(ctx->pos, deblk_sz); + AuDbg("ul %lu\n", ul); + if (ul >= vdir_cache->vd_nblk) + goto out; + + n = vdir_cache->vd_nblk; + for (; ul < n; ul++) { + p.deblk = vdir_cache->vd_deblk[ul]; + deblk_end.deblk = p.deblk + deblk_sz; + offset = ul; + offset *= deblk_sz; + while (!is_deblk_end(&p, &deblk_end) && offset < ctx->pos) { + unsigned int l; + + l = calc_size(p.de->de_str.len); + offset += l; + p.deblk += l; + } + if (!is_deblk_end(&p, &deblk_end)) { + valid = 1; + vdir_cache->vd_last.ul = ul; + vdir_cache->vd_last.p = p; + break; + } + } + +out: + /* smp_mb(); */ + AuTraceErr(!valid); + return valid; +} + +int au_vdir_fill_de(struct file *file, struct dir_context *ctx) +{ + unsigned int l, deblk_sz; + union au_vdir_deblk_p deblk_end; + struct au_vdir *vdir_cache; + struct au_vdir_de *de; + + vdir_cache = au_fvdir_cache(file); + if (!seek_vdir(file, ctx)) + return 0; + + deblk_sz = vdir_cache->vd_deblk_sz; + while (1) { + deblk_end.deblk = vdir_cache->vd_deblk[vdir_cache->vd_last.ul]; + deblk_end.deblk += deblk_sz; + while (!is_deblk_end(&vdir_cache->vd_last.p, &deblk_end)) { + de = vdir_cache->vd_last.p.de; + AuDbg("%.*s, off%lld, i%lu, dt%d\n", + de->de_str.len, de->de_str.name, ctx->pos, + (unsigned long)de->de_ino, de->de_type); + if (unlikely(!dir_emit(ctx, de->de_str.name, + de->de_str.len, de->de_ino, + de->de_type))) { + /* todo: ignore the error caused by udba? */ + /* return err; */ + return 0; + } + + l = calc_size(de->de_str.len); + vdir_cache->vd_last.p.deblk += l; + ctx->pos += l; + } + if (vdir_cache->vd_last.ul < vdir_cache->vd_nblk - 1) { + vdir_cache->vd_last.ul++; + vdir_cache->vd_last.p.deblk + = vdir_cache->vd_deblk[vdir_cache->vd_last.ul]; + ctx->pos = deblk_sz * vdir_cache->vd_last.ul; + continue; + } + break; + } + + /* smp_mb(); */ + return 0; +} --- linux-4.8.0.orig/fs/aufs/vfsub.c +++ linux-4.8.0/fs/aufs/vfsub.c @@ -0,0 +1,884 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * sub-routines for VFS + */ + +#include +#include +#include +#include +#include "../fs/mount.h" +#include "aufs.h" + +#ifdef CONFIG_AUFS_BR_FUSE +int vfsub_test_mntns(struct vfsmount *mnt, struct super_block *h_sb) +{ + struct nsproxy *ns; + + if (!au_test_fuse(h_sb) || !au_userns) + return 0; + + ns = current->nsproxy; + /* no {get,put}_nsproxy(ns) */ + return real_mount(mnt)->mnt_ns == ns->mnt_ns ? 0 : -EACCES; +} +#endif + +/* ---------------------------------------------------------------------- */ + +int vfsub_update_h_iattr(struct path *h_path, int *did) +{ + int err; + struct kstat st; + struct super_block *h_sb; + + /* for remote fs, leave work for its getattr or d_revalidate */ + /* for bad i_attr fs, handle them in aufs_getattr() */ + /* still some fs may acquire i_mutex. we need to skip them */ + err = 0; + if (!did) + did = &err; + h_sb = h_path->dentry->d_sb; + *did = (!au_test_fs_remote(h_sb) && au_test_fs_refresh_iattr(h_sb)); + if (*did) + err = vfs_getattr(h_path, &st); + + return err; +} + +/* ---------------------------------------------------------------------- */ + +struct file *vfsub_dentry_open(struct path *path, int flags) +{ + struct file *file; + + file = dentry_open(path, flags /* | __FMODE_NONOTIFY */, + current_cred()); + if (!IS_ERR_OR_NULL(file) + && (file->f_mode & (FMODE_READ | FMODE_WRITE)) == FMODE_READ) + i_readcount_inc(d_inode(path->dentry)); + + return file; +} + +struct file *vfsub_filp_open(const char *path, int oflags, int mode) +{ + struct file *file; + + lockdep_off(); + file = filp_open(path, + oflags /* | __FMODE_NONOTIFY */, + mode); + lockdep_on(); + if (IS_ERR(file)) + goto out; + vfsub_update_h_iattr(&file->f_path, /*did*/NULL); /*ignore*/ + +out: + return file; +} + +/* + * Ideally this function should call VFS:do_last() in order to keep all its + * checkings. But it is very hard for aufs to regenerate several VFS internal + * structure such as nameidata. This is a second (or third) best approach. + * cf. linux/fs/namei.c:do_last(), lookup_open() and atomic_open(). + */ +int vfsub_atomic_open(struct inode *dir, struct dentry *dentry, + struct vfsub_aopen_args *args, struct au_branch *br) +{ + int err; + struct file *file = args->file; + /* copied from linux/fs/namei.c:atomic_open() */ + struct dentry *const DENTRY_NOT_SET = (void *)-1UL; + + IMustLock(dir); + AuDebugOn(!dir->i_op->atomic_open); + + err = au_br_test_oflag(args->open_flag, br); + if (unlikely(err)) + goto out; + + args->file->f_path.dentry = DENTRY_NOT_SET; + args->file->f_path.mnt = au_br_mnt(br); + err = dir->i_op->atomic_open(dir, dentry, file, args->open_flag, + args->create_mode, args->opened); + if (err >= 0) { + /* some filesystems don't set FILE_CREATED while succeeded? */ + if (*args->opened & FILE_CREATED) + fsnotify_create(dir, dentry); + } else + goto out; + + + if (!err) { + /* todo: call VFS:may_open() here */ + err = open_check_o_direct(file); + /* todo: ima_file_check() too? */ + if (!err && (args->open_flag & __FMODE_EXEC)) + err = deny_write_access(file); + if (unlikely(err)) + /* note that the file is created and still opened */ + goto out; + } + + au_br_get(br); + fsnotify_open(file); + +out: + return err; +} + +int vfsub_kern_path(const char *name, unsigned int flags, struct path *path) +{ + int err; + + err = kern_path(name, flags, path); + if (!err && d_is_positive(path->dentry)) + vfsub_update_h_iattr(path, /*did*/NULL); /*ignore*/ + return err; +} + +struct dentry *vfsub_lookup_one_len_unlocked(const char *name, + struct dentry *parent, int len) +{ + struct path path = { + .mnt = NULL + }; + + path.dentry = lookup_one_len_unlocked(name, parent, len); + if (IS_ERR(path.dentry)) + goto out; + if (d_is_positive(path.dentry)) + vfsub_update_h_iattr(&path, /*did*/NULL); /*ignore*/ + +out: + AuTraceErrPtr(path.dentry); + return path.dentry; +} + +struct dentry *vfsub_lookup_one_len(const char *name, struct dentry *parent, + int len) +{ + struct path path = { + .mnt = NULL + }; + + /* VFS checks it too, but by WARN_ON_ONCE() */ + IMustLock(d_inode(parent)); + + path.dentry = lookup_one_len(name, parent, len); + if (IS_ERR(path.dentry)) + goto out; + if (d_is_positive(path.dentry)) + vfsub_update_h_iattr(&path, /*did*/NULL); /*ignore*/ + +out: + AuTraceErrPtr(path.dentry); + return path.dentry; +} + +void vfsub_call_lkup_one(void *args) +{ + struct vfsub_lkup_one_args *a = args; + *a->errp = vfsub_lkup_one(a->name, a->parent); +} + +/* ---------------------------------------------------------------------- */ + +struct dentry *vfsub_lock_rename(struct dentry *d1, struct au_hinode *hdir1, + struct dentry *d2, struct au_hinode *hdir2) +{ + struct dentry *d; + + lockdep_off(); + d = lock_rename(d1, d2); + lockdep_on(); + au_hn_suspend(hdir1); + if (hdir1 != hdir2) + au_hn_suspend(hdir2); + + return d; +} + +void vfsub_unlock_rename(struct dentry *d1, struct au_hinode *hdir1, + struct dentry *d2, struct au_hinode *hdir2) +{ + au_hn_resume(hdir1); + if (hdir1 != hdir2) + au_hn_resume(hdir2); + lockdep_off(); + unlock_rename(d1, d2); + lockdep_on(); +} + +/* ---------------------------------------------------------------------- */ + +int vfsub_create(struct inode *dir, struct path *path, int mode, bool want_excl) +{ + int err; + struct dentry *d; + + IMustLock(dir); + + d = path->dentry; + path->dentry = d->d_parent; + err = security_path_mknod(path, d, mode, 0); + path->dentry = d; + if (unlikely(err)) + goto out; + + lockdep_off(); + err = vfs_create(dir, path->dentry, mode, want_excl); + lockdep_on(); + if (!err) { + struct path tmp = *path; + int did; + + vfsub_update_h_iattr(&tmp, &did); + if (did) { + tmp.dentry = path->dentry->d_parent; + vfsub_update_h_iattr(&tmp, /*did*/NULL); + } + /*ignore*/ + } + +out: + return err; +} + +int vfsub_symlink(struct inode *dir, struct path *path, const char *symname) +{ + int err; + struct dentry *d; + + IMustLock(dir); + + d = path->dentry; + path->dentry = d->d_parent; + err = security_path_symlink(path, d, symname); + path->dentry = d; + if (unlikely(err)) + goto out; + + lockdep_off(); + err = vfs_symlink(dir, path->dentry, symname); + lockdep_on(); + if (!err) { + struct path tmp = *path; + int did; + + vfsub_update_h_iattr(&tmp, &did); + if (did) { + tmp.dentry = path->dentry->d_parent; + vfsub_update_h_iattr(&tmp, /*did*/NULL); + } + /*ignore*/ + } + +out: + return err; +} + +int vfsub_mknod(struct inode *dir, struct path *path, int mode, dev_t dev) +{ + int err; + struct dentry *d; + + IMustLock(dir); + + d = path->dentry; + path->dentry = d->d_parent; + err = security_path_mknod(path, d, mode, new_encode_dev(dev)); + path->dentry = d; + if (unlikely(err)) + goto out; + + lockdep_off(); + err = vfs_mknod(dir, path->dentry, mode, dev); + lockdep_on(); + if (!err) { + struct path tmp = *path; + int did; + + vfsub_update_h_iattr(&tmp, &did); + if (did) { + tmp.dentry = path->dentry->d_parent; + vfsub_update_h_iattr(&tmp, /*did*/NULL); + } + /*ignore*/ + } + +out: + return err; +} + +static int au_test_nlink(struct inode *inode) +{ + const unsigned int link_max = UINT_MAX >> 1; /* rough margin */ + + if (!au_test_fs_no_limit_nlink(inode->i_sb) + || inode->i_nlink < link_max) + return 0; + return -EMLINK; +} + +int vfsub_link(struct dentry *src_dentry, struct inode *dir, struct path *path, + struct inode **delegated_inode) +{ + int err; + struct dentry *d; + + IMustLock(dir); + + err = au_test_nlink(d_inode(src_dentry)); + if (unlikely(err)) + return err; + + /* we don't call may_linkat() */ + d = path->dentry; + path->dentry = d->d_parent; + err = security_path_link(src_dentry, path, d); + path->dentry = d; + if (unlikely(err)) + goto out; + + lockdep_off(); + err = vfs_link(src_dentry, dir, path->dentry, delegated_inode); + lockdep_on(); + if (!err) { + struct path tmp = *path; + int did; + + /* fuse has different memory inode for the same inumber */ + vfsub_update_h_iattr(&tmp, &did); + if (did) { + tmp.dentry = path->dentry->d_parent; + vfsub_update_h_iattr(&tmp, /*did*/NULL); + tmp.dentry = src_dentry; + vfsub_update_h_iattr(&tmp, /*did*/NULL); + } + /*ignore*/ + } + +out: + return err; +} + +int vfsub_rename(struct inode *src_dir, struct dentry *src_dentry, + struct inode *dir, struct path *path, + struct inode **delegated_inode) +{ + int err; + struct path tmp = { + .mnt = path->mnt + }; + struct dentry *d; + + IMustLock(dir); + IMustLock(src_dir); + + d = path->dentry; + path->dentry = d->d_parent; + tmp.dentry = src_dentry->d_parent; + err = security_path_rename(&tmp, src_dentry, path, d, /*flags*/0); + path->dentry = d; + if (unlikely(err)) + goto out; + + lockdep_off(); + err = vfs_rename(src_dir, src_dentry, dir, path->dentry, + delegated_inode, /*flags*/0); + lockdep_on(); + if (!err) { + int did; + + tmp.dentry = d->d_parent; + vfsub_update_h_iattr(&tmp, &did); + if (did) { + tmp.dentry = src_dentry; + vfsub_update_h_iattr(&tmp, /*did*/NULL); + tmp.dentry = src_dentry->d_parent; + vfsub_update_h_iattr(&tmp, /*did*/NULL); + } + /*ignore*/ + } + +out: + return err; +} + +int vfsub_mkdir(struct inode *dir, struct path *path, int mode) +{ + int err; + struct dentry *d; + + IMustLock(dir); + + d = path->dentry; + path->dentry = d->d_parent; + err = security_path_mkdir(path, d, mode); + path->dentry = d; + if (unlikely(err)) + goto out; + + lockdep_off(); + err = vfs_mkdir(dir, path->dentry, mode); + lockdep_on(); + if (!err) { + struct path tmp = *path; + int did; + + vfsub_update_h_iattr(&tmp, &did); + if (did) { + tmp.dentry = path->dentry->d_parent; + vfsub_update_h_iattr(&tmp, /*did*/NULL); + } + /*ignore*/ + } + +out: + return err; +} + +int vfsub_rmdir(struct inode *dir, struct path *path) +{ + int err; + struct dentry *d; + + IMustLock(dir); + + d = path->dentry; + path->dentry = d->d_parent; + err = security_path_rmdir(path, d); + path->dentry = d; + if (unlikely(err)) + goto out; + + lockdep_off(); + err = vfs_rmdir(dir, path->dentry); + lockdep_on(); + if (!err) { + struct path tmp = { + .dentry = path->dentry->d_parent, + .mnt = path->mnt + }; + + vfsub_update_h_iattr(&tmp, /*did*/NULL); /*ignore*/ + } + +out: + return err; +} + +/* ---------------------------------------------------------------------- */ + +/* todo: support mmap_sem? */ +ssize_t vfsub_read_u(struct file *file, char __user *ubuf, size_t count, + loff_t *ppos) +{ + ssize_t err; + + lockdep_off(); + err = vfs_read(file, ubuf, count, ppos); + lockdep_on(); + if (err >= 0) + vfsub_update_h_iattr(&file->f_path, /*did*/NULL); /*ignore*/ + return err; +} + +/* todo: kernel_read()? */ +ssize_t vfsub_read_k(struct file *file, void *kbuf, size_t count, + loff_t *ppos) +{ + ssize_t err; + mm_segment_t oldfs; + union { + void *k; + char __user *u; + } buf; + + buf.k = kbuf; + oldfs = get_fs(); + set_fs(KERNEL_DS); + err = vfsub_read_u(file, buf.u, count, ppos); + set_fs(oldfs); + return err; +} + +ssize_t vfsub_write_u(struct file *file, const char __user *ubuf, size_t count, + loff_t *ppos) +{ + ssize_t err; + + lockdep_off(); + err = vfs_write(file, ubuf, count, ppos); + lockdep_on(); + if (err >= 0) + vfsub_update_h_iattr(&file->f_path, /*did*/NULL); /*ignore*/ + return err; +} + +ssize_t vfsub_write_k(struct file *file, void *kbuf, size_t count, loff_t *ppos) +{ + ssize_t err; + mm_segment_t oldfs; + union { + void *k; + const char __user *u; + } buf; + + buf.k = kbuf; + oldfs = get_fs(); + set_fs(KERNEL_DS); + err = vfsub_write_u(file, buf.u, count, ppos); + set_fs(oldfs); + return err; +} + +int vfsub_flush(struct file *file, fl_owner_t id) +{ + int err; + + err = 0; + if (file->f_op->flush) { + if (!au_test_nfs(file->f_path.dentry->d_sb)) + err = file->f_op->flush(file, id); + else { + lockdep_off(); + err = file->f_op->flush(file, id); + lockdep_on(); + } + if (!err) + vfsub_update_h_iattr(&file->f_path, /*did*/NULL); + /*ignore*/ + } + return err; +} + +int vfsub_iterate_dir(struct file *file, struct dir_context *ctx) +{ + int err; + + AuDbg("%pD, ctx{%pf, %llu}\n", file, ctx->actor, ctx->pos); + + lockdep_off(); + err = iterate_dir(file, ctx); + lockdep_on(); + if (err >= 0) + vfsub_update_h_iattr(&file->f_path, /*did*/NULL); /*ignore*/ + return err; +} + +long vfsub_splice_to(struct file *in, loff_t *ppos, + struct pipe_inode_info *pipe, size_t len, + unsigned int flags) +{ + long err; + + lockdep_off(); + err = do_splice_to(in, ppos, pipe, len, flags); + lockdep_on(); + file_accessed(in); + if (err >= 0) + vfsub_update_h_iattr(&in->f_path, /*did*/NULL); /*ignore*/ + return err; +} + +long vfsub_splice_from(struct pipe_inode_info *pipe, struct file *out, + loff_t *ppos, size_t len, unsigned int flags) +{ + long err; + + lockdep_off(); + err = do_splice_from(pipe, out, ppos, len, flags); + lockdep_on(); + if (err >= 0) + vfsub_update_h_iattr(&out->f_path, /*did*/NULL); /*ignore*/ + return err; +} + +int vfsub_fsync(struct file *file, struct path *path, int datasync) +{ + int err; + + /* file can be NULL */ + lockdep_off(); + err = vfs_fsync(file, datasync); + lockdep_on(); + if (!err) { + if (!path) { + AuDebugOn(!file); + path = &file->f_path; + } + vfsub_update_h_iattr(path, /*did*/NULL); /*ignore*/ + } + return err; +} + +/* cf. open.c:do_sys_truncate() and do_sys_ftruncate() */ +int vfsub_trunc(struct path *h_path, loff_t length, unsigned int attr, + struct file *h_file) +{ + int err; + struct inode *h_inode; + struct super_block *h_sb; + + if (!h_file) { + err = vfsub_truncate(h_path, length); + goto out; + } + + h_inode = d_inode(h_path->dentry); + h_sb = h_inode->i_sb; + lockdep_off(); + sb_start_write(h_sb); + lockdep_on(); + err = locks_verify_truncate(h_inode, h_file, length); + if (!err) + err = security_path_truncate(h_path); + if (!err) { + lockdep_off(); + err = do_truncate(h_path->dentry, length, attr, h_file); + lockdep_on(); + } + lockdep_off(); + sb_end_write(h_sb); + lockdep_on(); + +out: + return err; +} + +/* ---------------------------------------------------------------------- */ + +struct au_vfsub_mkdir_args { + int *errp; + struct inode *dir; + struct path *path; + int mode; +}; + +static void au_call_vfsub_mkdir(void *args) +{ + struct au_vfsub_mkdir_args *a = args; + *a->errp = vfsub_mkdir(a->dir, a->path, a->mode); +} + +int vfsub_sio_mkdir(struct inode *dir, struct path *path, int mode) +{ + int err, do_sio, wkq_err; + + do_sio = au_test_h_perm_sio(dir, MAY_EXEC | MAY_WRITE); + if (!do_sio) { + lockdep_off(); + err = vfsub_mkdir(dir, path, mode); + lockdep_on(); + } else { + struct au_vfsub_mkdir_args args = { + .errp = &err, + .dir = dir, + .path = path, + .mode = mode + }; + wkq_err = au_wkq_wait(au_call_vfsub_mkdir, &args); + if (unlikely(wkq_err)) + err = wkq_err; + } + + return err; +} + +struct au_vfsub_rmdir_args { + int *errp; + struct inode *dir; + struct path *path; +}; + +static void au_call_vfsub_rmdir(void *args) +{ + struct au_vfsub_rmdir_args *a = args; + *a->errp = vfsub_rmdir(a->dir, a->path); +} + +int vfsub_sio_rmdir(struct inode *dir, struct path *path) +{ + int err, do_sio, wkq_err; + + do_sio = au_test_h_perm_sio(dir, MAY_EXEC | MAY_WRITE); + if (!do_sio) { + lockdep_off(); + err = vfsub_rmdir(dir, path); + lockdep_on(); + } else { + struct au_vfsub_rmdir_args args = { + .errp = &err, + .dir = dir, + .path = path + }; + wkq_err = au_wkq_wait(au_call_vfsub_rmdir, &args); + if (unlikely(wkq_err)) + err = wkq_err; + } + + return err; +} + +/* ---------------------------------------------------------------------- */ + +struct notify_change_args { + int *errp; + struct path *path; + struct iattr *ia; + struct inode **delegated_inode; +}; + +static void call_notify_change(void *args) +{ + struct notify_change_args *a = args; + struct inode *h_inode; + + h_inode = d_inode(a->path->dentry); + IMustLock(h_inode); + + *a->errp = -EPERM; + if (!IS_IMMUTABLE(h_inode) && !IS_APPEND(h_inode)) { + lockdep_off(); + *a->errp = notify_change(a->path->dentry, a->ia, + a->delegated_inode); + lockdep_on(); + if (!*a->errp) + vfsub_update_h_iattr(a->path, /*did*/NULL); /*ignore*/ + } + AuTraceErr(*a->errp); +} + +int vfsub_notify_change(struct path *path, struct iattr *ia, + struct inode **delegated_inode) +{ + int err; + struct notify_change_args args = { + .errp = &err, + .path = path, + .ia = ia, + .delegated_inode = delegated_inode + }; + + call_notify_change(&args); + + return err; +} + +int vfsub_sio_notify_change(struct path *path, struct iattr *ia, + struct inode **delegated_inode) +{ + int err, wkq_err; + struct notify_change_args args = { + .errp = &err, + .path = path, + .ia = ia, + .delegated_inode = delegated_inode + }; + + wkq_err = au_wkq_wait(call_notify_change, &args); + if (unlikely(wkq_err)) + err = wkq_err; + + return err; +} + +/* ---------------------------------------------------------------------- */ + +struct unlink_args { + int *errp; + struct inode *dir; + struct path *path; + struct inode **delegated_inode; +}; + +static void call_unlink(void *args) +{ + struct unlink_args *a = args; + struct dentry *d = a->path->dentry; + struct inode *h_inode; + const int stop_sillyrename = (au_test_nfs(d->d_sb) + && au_dcount(d) == 1); + + IMustLock(a->dir); + + a->path->dentry = d->d_parent; + *a->errp = security_path_unlink(a->path, d); + a->path->dentry = d; + if (unlikely(*a->errp)) + return; + + if (!stop_sillyrename) + dget(d); + h_inode = NULL; + if (d_is_positive(d)) { + h_inode = d_inode(d); + ihold(h_inode); + } + + lockdep_off(); + *a->errp = vfs_unlink(a->dir, d, a->delegated_inode); + lockdep_on(); + if (!*a->errp) { + struct path tmp = { + .dentry = d->d_parent, + .mnt = a->path->mnt + }; + vfsub_update_h_iattr(&tmp, /*did*/NULL); /*ignore*/ + } + + if (!stop_sillyrename) + dput(d); + if (h_inode) + iput(h_inode); + + AuTraceErr(*a->errp); +} + +/* + * @dir: must be locked. + * @dentry: target dentry. + */ +int vfsub_unlink(struct inode *dir, struct path *path, + struct inode **delegated_inode, int force) +{ + int err; + struct unlink_args args = { + .errp = &err, + .dir = dir, + .path = path, + .delegated_inode = delegated_inode + }; + + if (!force) + call_unlink(&args); + else { + int wkq_err; + + wkq_err = au_wkq_wait(call_unlink, &args); + if (unlikely(wkq_err)) + err = wkq_err; + } + + return err; +} --- linux-4.8.0.orig/fs/aufs/vfsub.h +++ linux-4.8.0/fs/aufs/vfsub.h @@ -0,0 +1,316 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * sub-routines for VFS + */ + +#ifndef __AUFS_VFSUB_H__ +#define __AUFS_VFSUB_H__ + +#ifdef __KERNEL__ + +#include +#include +#include +#include +#include "debug.h" + +/* copied from linux/fs/internal.h */ +/* todo: BAD approach!! */ +extern void __mnt_drop_write(struct vfsmount *); +extern int open_check_o_direct(struct file *f); + +/* ---------------------------------------------------------------------- */ + +/* lock subclass for lower inode */ +/* default MAX_LOCKDEP_SUBCLASSES(8) is not enough */ +/* reduce? gave up. */ +enum { + AuLsc_I_Begin = I_MUTEX_PARENT2, /* 5 */ + AuLsc_I_PARENT, /* lower inode, parent first */ + AuLsc_I_PARENT2, /* copyup dirs */ + AuLsc_I_PARENT3, /* copyup wh */ + AuLsc_I_CHILD, + AuLsc_I_CHILD2, + AuLsc_I_End +}; + +/* to debug easier, do not make them inlined functions */ +#define MtxMustLock(mtx) AuDebugOn(!mutex_is_locked(mtx)) +#define IMustLock(i) AuDebugOn(!inode_is_locked(i)) + +/* ---------------------------------------------------------------------- */ + +static inline void vfsub_drop_nlink(struct inode *inode) +{ + AuDebugOn(!inode->i_nlink); + drop_nlink(inode); +} + +static inline void vfsub_dead_dir(struct inode *inode) +{ + AuDebugOn(!S_ISDIR(inode->i_mode)); + inode->i_flags |= S_DEAD; + clear_nlink(inode); +} + +static inline int vfsub_native_ro(struct inode *inode) +{ + return (inode->i_sb->s_flags & MS_RDONLY) + || IS_RDONLY(inode) + /* || IS_APPEND(inode) */ + || IS_IMMUTABLE(inode); +} + +#ifdef CONFIG_AUFS_BR_FUSE +int vfsub_test_mntns(struct vfsmount *mnt, struct super_block *h_sb); +#else +AuStubInt0(vfsub_test_mntns, struct vfsmount *mnt, struct super_block *h_sb); +#endif + +/* ---------------------------------------------------------------------- */ + +int vfsub_update_h_iattr(struct path *h_path, int *did); +struct file *vfsub_dentry_open(struct path *path, int flags); +struct file *vfsub_filp_open(const char *path, int oflags, int mode); +struct vfsub_aopen_args { + struct file *file; + unsigned int open_flag; + umode_t create_mode; + int *opened; +}; +struct au_branch; +int vfsub_atomic_open(struct inode *dir, struct dentry *dentry, + struct vfsub_aopen_args *args, struct au_branch *br); +int vfsub_kern_path(const char *name, unsigned int flags, struct path *path); + +struct dentry *vfsub_lookup_one_len_unlocked(const char *name, + struct dentry *parent, int len); +struct dentry *vfsub_lookup_one_len(const char *name, struct dentry *parent, + int len); + +struct vfsub_lkup_one_args { + struct dentry **errp; + struct qstr *name; + struct dentry *parent; +}; + +static inline struct dentry *vfsub_lkup_one(struct qstr *name, + struct dentry *parent) +{ + return vfsub_lookup_one_len(name->name, parent, name->len); +} + +void vfsub_call_lkup_one(void *args); + +/* ---------------------------------------------------------------------- */ + +static inline int vfsub_mnt_want_write(struct vfsmount *mnt) +{ + int err; + + lockdep_off(); + err = mnt_want_write(mnt); + lockdep_on(); + return err; +} + +static inline void vfsub_mnt_drop_write(struct vfsmount *mnt) +{ + lockdep_off(); + mnt_drop_write(mnt); + lockdep_on(); +} + +#if 0 /* reserved */ +static inline void vfsub_mnt_drop_write_file(struct file *file) +{ + lockdep_off(); + mnt_drop_write_file(file); + lockdep_on(); +} +#endif + +/* ---------------------------------------------------------------------- */ + +struct au_hinode; +struct dentry *vfsub_lock_rename(struct dentry *d1, struct au_hinode *hdir1, + struct dentry *d2, struct au_hinode *hdir2); +void vfsub_unlock_rename(struct dentry *d1, struct au_hinode *hdir1, + struct dentry *d2, struct au_hinode *hdir2); + +int vfsub_create(struct inode *dir, struct path *path, int mode, + bool want_excl); +int vfsub_symlink(struct inode *dir, struct path *path, + const char *symname); +int vfsub_mknod(struct inode *dir, struct path *path, int mode, dev_t dev); +int vfsub_link(struct dentry *src_dentry, struct inode *dir, + struct path *path, struct inode **delegated_inode); +int vfsub_rename(struct inode *src_hdir, struct dentry *src_dentry, + struct inode *hdir, struct path *path, + struct inode **delegated_inode); +int vfsub_mkdir(struct inode *dir, struct path *path, int mode); +int vfsub_rmdir(struct inode *dir, struct path *path); + +/* ---------------------------------------------------------------------- */ + +ssize_t vfsub_read_u(struct file *file, char __user *ubuf, size_t count, + loff_t *ppos); +ssize_t vfsub_read_k(struct file *file, void *kbuf, size_t count, + loff_t *ppos); +ssize_t vfsub_write_u(struct file *file, const char __user *ubuf, size_t count, + loff_t *ppos); +ssize_t vfsub_write_k(struct file *file, void *kbuf, size_t count, + loff_t *ppos); +int vfsub_flush(struct file *file, fl_owner_t id); +int vfsub_iterate_dir(struct file *file, struct dir_context *ctx); + +static inline loff_t vfsub_f_size_read(struct file *file) +{ + return i_size_read(file_inode(file)); +} + +static inline unsigned int vfsub_file_flags(struct file *file) +{ + unsigned int flags; + + spin_lock(&file->f_lock); + flags = file->f_flags; + spin_unlock(&file->f_lock); + + return flags; +} + +static inline int vfsub_file_execed(struct file *file) +{ + /* todo: direct access f_flags */ + return !!(vfsub_file_flags(file) & __FMODE_EXEC); +} + +#if 0 /* reserved */ +static inline void vfsub_file_accessed(struct file *h_file) +{ + file_accessed(h_file); + vfsub_update_h_iattr(&h_file->f_path, /*did*/NULL); /*ignore*/ +} +#endif + +#if 0 /* reserved */ +static inline void vfsub_touch_atime(struct vfsmount *h_mnt, + struct dentry *h_dentry) +{ + struct path h_path = { + .dentry = h_dentry, + .mnt = h_mnt + }; + touch_atime(&h_path); + vfsub_update_h_iattr(&h_path, /*did*/NULL); /*ignore*/ +} +#endif + +static inline int vfsub_update_time(struct inode *h_inode, struct timespec *ts, + int flags) +{ + return update_time(h_inode, ts, flags); + /* no vfsub_update_h_iattr() since we don't have struct path */ +} + +#ifdef CONFIG_FS_POSIX_ACL +static inline int vfsub_acl_chmod(struct inode *h_inode, umode_t h_mode) +{ + int err; + + err = posix_acl_chmod(h_inode, h_mode); + if (err == -EOPNOTSUPP) + err = 0; + return err; +} +#else +AuStubInt0(vfsub_acl_chmod, struct inode *h_inode, umode_t h_mode); +#endif + +long vfsub_splice_to(struct file *in, loff_t *ppos, + struct pipe_inode_info *pipe, size_t len, + unsigned int flags); +long vfsub_splice_from(struct pipe_inode_info *pipe, struct file *out, + loff_t *ppos, size_t len, unsigned int flags); + +static inline long vfsub_truncate(struct path *path, loff_t length) +{ + long err; + + lockdep_off(); + err = vfs_truncate(path, length); + lockdep_on(); + return err; +} + +int vfsub_trunc(struct path *h_path, loff_t length, unsigned int attr, + struct file *h_file); +int vfsub_fsync(struct file *file, struct path *path, int datasync); + +/* ---------------------------------------------------------------------- */ + +static inline loff_t vfsub_llseek(struct file *file, loff_t offset, int origin) +{ + loff_t err; + + lockdep_off(); + err = vfs_llseek(file, offset, origin); + lockdep_on(); + return err; +} + +/* ---------------------------------------------------------------------- */ + +int vfsub_sio_mkdir(struct inode *dir, struct path *path, int mode); +int vfsub_sio_rmdir(struct inode *dir, struct path *path); +int vfsub_sio_notify_change(struct path *path, struct iattr *ia, + struct inode **delegated_inode); +int vfsub_notify_change(struct path *path, struct iattr *ia, + struct inode **delegated_inode); +int vfsub_unlink(struct inode *dir, struct path *path, + struct inode **delegated_inode, int force); + +/* ---------------------------------------------------------------------- */ + +static inline int vfsub_setxattr(struct dentry *dentry, const char *name, + const void *value, size_t size, int flags) +{ + int err; + + lockdep_off(); + err = vfs_setxattr(dentry, name, value, size, flags); + lockdep_on(); + + return err; +} + +static inline int vfsub_removexattr(struct dentry *dentry, const char *name) +{ + int err; + + lockdep_off(); + err = vfs_removexattr(dentry, name); + lockdep_on(); + + return err; +} + +#endif /* __KERNEL__ */ +#endif /* __AUFS_VFSUB_H__ */ --- linux-4.8.0.orig/fs/aufs/wbr_policy.c +++ linux-4.8.0/fs/aufs/wbr_policy.c @@ -0,0 +1,765 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * policies for selecting one among multiple writable branches + */ + +#include +#include "aufs.h" + +/* subset of cpup_attr() */ +static noinline_for_stack +int au_cpdown_attr(struct path *h_path, struct dentry *h_src) +{ + int err, sbits; + struct iattr ia; + struct inode *h_isrc; + + h_isrc = d_inode(h_src); + ia.ia_valid = ATTR_FORCE | ATTR_MODE | ATTR_UID | ATTR_GID; + ia.ia_mode = h_isrc->i_mode; + ia.ia_uid = h_isrc->i_uid; + ia.ia_gid = h_isrc->i_gid; + sbits = !!(ia.ia_mode & (S_ISUID | S_ISGID)); + au_cpup_attr_flags(d_inode(h_path->dentry), h_isrc->i_flags); + /* no delegation since it is just created */ + err = vfsub_sio_notify_change(h_path, &ia, /*delegated*/NULL); + + /* is this nfs only? */ + if (!err && sbits && au_test_nfs(h_path->dentry->d_sb)) { + ia.ia_valid = ATTR_FORCE | ATTR_MODE; + ia.ia_mode = h_isrc->i_mode; + err = vfsub_sio_notify_change(h_path, &ia, /*delegated*/NULL); + } + + return err; +} + +#define AuCpdown_PARENT_OPQ 1 +#define AuCpdown_WHED (1 << 1) +#define AuCpdown_MADE_DIR (1 << 2) +#define AuCpdown_DIROPQ (1 << 3) +#define au_ftest_cpdown(flags, name) ((flags) & AuCpdown_##name) +#define au_fset_cpdown(flags, name) \ + do { (flags) |= AuCpdown_##name; } while (0) +#define au_fclr_cpdown(flags, name) \ + do { (flags) &= ~AuCpdown_##name; } while (0) + +static int au_cpdown_dir_opq(struct dentry *dentry, aufs_bindex_t bdst, + unsigned int *flags) +{ + int err; + struct dentry *opq_dentry; + + opq_dentry = au_diropq_create(dentry, bdst); + err = PTR_ERR(opq_dentry); + if (IS_ERR(opq_dentry)) + goto out; + dput(opq_dentry); + au_fset_cpdown(*flags, DIROPQ); + +out: + return err; +} + +static int au_cpdown_dir_wh(struct dentry *dentry, struct dentry *h_parent, + struct inode *dir, aufs_bindex_t bdst) +{ + int err; + struct path h_path; + struct au_branch *br; + + br = au_sbr(dentry->d_sb, bdst); + h_path.dentry = au_wh_lkup(h_parent, &dentry->d_name, br); + err = PTR_ERR(h_path.dentry); + if (IS_ERR(h_path.dentry)) + goto out; + + err = 0; + if (d_is_positive(h_path.dentry)) { + h_path.mnt = au_br_mnt(br); + err = au_wh_unlink_dentry(au_h_iptr(dir, bdst), &h_path, + dentry); + } + dput(h_path.dentry); + +out: + return err; +} + +static int au_cpdown_dir(struct dentry *dentry, aufs_bindex_t bdst, + struct au_pin *pin, + struct dentry *h_parent, void *arg) +{ + int err, rerr; + aufs_bindex_t bopq, btop; + struct path h_path; + struct dentry *parent; + struct inode *h_dir, *h_inode, *inode, *dir; + unsigned int *flags = arg; + + btop = au_dbtop(dentry); + /* dentry is di-locked */ + parent = dget_parent(dentry); + dir = d_inode(parent); + h_dir = d_inode(h_parent); + AuDebugOn(h_dir != au_h_iptr(dir, bdst)); + IMustLock(h_dir); + + err = au_lkup_neg(dentry, bdst, /*wh*/0); + if (unlikely(err < 0)) + goto out; + h_path.dentry = au_h_dptr(dentry, bdst); + h_path.mnt = au_sbr_mnt(dentry->d_sb, bdst); + err = vfsub_sio_mkdir(au_h_iptr(dir, bdst), &h_path, + S_IRWXU | S_IRUGO | S_IXUGO); + if (unlikely(err)) + goto out_put; + au_fset_cpdown(*flags, MADE_DIR); + + bopq = au_dbdiropq(dentry); + au_fclr_cpdown(*flags, WHED); + au_fclr_cpdown(*flags, DIROPQ); + if (au_dbwh(dentry) == bdst) + au_fset_cpdown(*flags, WHED); + if (!au_ftest_cpdown(*flags, PARENT_OPQ) && bopq <= bdst) + au_fset_cpdown(*flags, PARENT_OPQ); + h_inode = d_inode(h_path.dentry); + inode_lock_nested(h_inode, AuLsc_I_CHILD); + if (au_ftest_cpdown(*flags, WHED)) { + err = au_cpdown_dir_opq(dentry, bdst, flags); + if (unlikely(err)) { + inode_unlock(h_inode); + goto out_dir; + } + } + + err = au_cpdown_attr(&h_path, au_h_dptr(dentry, btop)); + inode_unlock(h_inode); + if (unlikely(err)) + goto out_opq; + + if (au_ftest_cpdown(*flags, WHED)) { + err = au_cpdown_dir_wh(dentry, h_parent, dir, bdst); + if (unlikely(err)) + goto out_opq; + } + + inode = d_inode(dentry); + if (au_ibbot(inode) < bdst) + au_set_ibbot(inode, bdst); + au_set_h_iptr(inode, bdst, au_igrab(h_inode), + au_hi_flags(inode, /*isdir*/1)); + au_fhsm_wrote(dentry->d_sb, bdst, /*force*/0); + goto out; /* success */ + + /* revert */ +out_opq: + if (au_ftest_cpdown(*flags, DIROPQ)) { + inode_lock_nested(h_inode, AuLsc_I_CHILD); + rerr = au_diropq_remove(dentry, bdst); + inode_unlock(h_inode); + if (unlikely(rerr)) { + AuIOErr("failed removing diropq for %pd b%d (%d)\n", + dentry, bdst, rerr); + err = -EIO; + goto out; + } + } +out_dir: + if (au_ftest_cpdown(*flags, MADE_DIR)) { + rerr = vfsub_sio_rmdir(au_h_iptr(dir, bdst), &h_path); + if (unlikely(rerr)) { + AuIOErr("failed removing %pd b%d (%d)\n", + dentry, bdst, rerr); + err = -EIO; + } + } +out_put: + au_set_h_dptr(dentry, bdst, NULL); + if (au_dbbot(dentry) == bdst) + au_update_dbbot(dentry); +out: + dput(parent); + return err; +} + +int au_cpdown_dirs(struct dentry *dentry, aufs_bindex_t bdst) +{ + int err; + unsigned int flags; + + flags = 0; + err = au_cp_dirs(dentry, bdst, au_cpdown_dir, &flags); + + return err; +} + +/* ---------------------------------------------------------------------- */ + +/* policies for create */ + +int au_wbr_nonopq(struct dentry *dentry, aufs_bindex_t bindex) +{ + int err, i, j, ndentry; + aufs_bindex_t bopq; + struct au_dcsub_pages dpages; + struct au_dpage *dpage; + struct dentry **dentries, *parent, *d; + + err = au_dpages_init(&dpages, GFP_NOFS); + if (unlikely(err)) + goto out; + parent = dget_parent(dentry); + err = au_dcsub_pages_rev_aufs(&dpages, parent, /*do_include*/0); + if (unlikely(err)) + goto out_free; + + err = bindex; + for (i = 0; i < dpages.ndpage; i++) { + dpage = dpages.dpages + i; + dentries = dpage->dentries; + ndentry = dpage->ndentry; + for (j = 0; j < ndentry; j++) { + d = dentries[j]; + di_read_lock_parent2(d, !AuLock_IR); + bopq = au_dbdiropq(d); + di_read_unlock(d, !AuLock_IR); + if (bopq >= 0 && bopq < err) + err = bopq; + } + } + +out_free: + dput(parent); + au_dpages_free(&dpages); +out: + return err; +} + +static int au_wbr_bu(struct super_block *sb, aufs_bindex_t bindex) +{ + for (; bindex >= 0; bindex--) + if (!au_br_rdonly(au_sbr(sb, bindex))) + return bindex; + return -EROFS; +} + +/* top down parent */ +static int au_wbr_create_tdp(struct dentry *dentry, + unsigned int flags __maybe_unused) +{ + int err; + aufs_bindex_t btop, bindex; + struct super_block *sb; + struct dentry *parent, *h_parent; + + sb = dentry->d_sb; + btop = au_dbtop(dentry); + err = btop; + if (!au_br_rdonly(au_sbr(sb, btop))) + goto out; + + err = -EROFS; + parent = dget_parent(dentry); + for (bindex = au_dbtop(parent); bindex < btop; bindex++) { + h_parent = au_h_dptr(parent, bindex); + if (!h_parent || d_is_negative(h_parent)) + continue; + + if (!au_br_rdonly(au_sbr(sb, bindex))) { + err = bindex; + break; + } + } + dput(parent); + + /* bottom up here */ + if (unlikely(err < 0)) { + err = au_wbr_bu(sb, btop - 1); + if (err >= 0) + err = au_wbr_nonopq(dentry, err); + } + +out: + AuDbg("b%d\n", err); + return err; +} + +/* ---------------------------------------------------------------------- */ + +/* an exception for the policy other than tdp */ +static int au_wbr_create_exp(struct dentry *dentry) +{ + int err; + aufs_bindex_t bwh, bdiropq; + struct dentry *parent; + + err = -1; + bwh = au_dbwh(dentry); + parent = dget_parent(dentry); + bdiropq = au_dbdiropq(parent); + if (bwh >= 0) { + if (bdiropq >= 0) + err = min(bdiropq, bwh); + else + err = bwh; + AuDbg("%d\n", err); + } else if (bdiropq >= 0) { + err = bdiropq; + AuDbg("%d\n", err); + } + dput(parent); + + if (err >= 0) + err = au_wbr_nonopq(dentry, err); + + if (err >= 0 && au_br_rdonly(au_sbr(dentry->d_sb, err))) + err = -1; + + AuDbg("%d\n", err); + return err; +} + +/* ---------------------------------------------------------------------- */ + +/* round robin */ +static int au_wbr_create_init_rr(struct super_block *sb) +{ + int err; + + err = au_wbr_bu(sb, au_sbbot(sb)); + atomic_set(&au_sbi(sb)->si_wbr_rr_next, -err); /* less important */ + /* smp_mb(); */ + + AuDbg("b%d\n", err); + return err; +} + +static int au_wbr_create_rr(struct dentry *dentry, unsigned int flags) +{ + int err, nbr; + unsigned int u; + aufs_bindex_t bindex, bbot; + struct super_block *sb; + atomic_t *next; + + err = au_wbr_create_exp(dentry); + if (err >= 0) + goto out; + + sb = dentry->d_sb; + next = &au_sbi(sb)->si_wbr_rr_next; + bbot = au_sbbot(sb); + nbr = bbot + 1; + for (bindex = 0; bindex <= bbot; bindex++) { + if (!au_ftest_wbr(flags, DIR)) { + err = atomic_dec_return(next) + 1; + /* modulo for 0 is meaningless */ + if (unlikely(!err)) + err = atomic_dec_return(next) + 1; + } else + err = atomic_read(next); + AuDbg("%d\n", err); + u = err; + err = u % nbr; + AuDbg("%d\n", err); + if (!au_br_rdonly(au_sbr(sb, err))) + break; + err = -EROFS; + } + + if (err >= 0) + err = au_wbr_nonopq(dentry, err); + +out: + AuDbg("%d\n", err); + return err; +} + +/* ---------------------------------------------------------------------- */ + +/* most free space */ +static void au_mfs(struct dentry *dentry, struct dentry *parent) +{ + struct super_block *sb; + struct au_branch *br; + struct au_wbr_mfs *mfs; + struct dentry *h_parent; + aufs_bindex_t bindex, bbot; + int err; + unsigned long long b, bavail; + struct path h_path; + /* reduce the stack usage */ + struct kstatfs *st; + + st = kmalloc(sizeof(*st), GFP_NOFS); + if (unlikely(!st)) { + AuWarn1("failed updating mfs(%d), ignored\n", -ENOMEM); + return; + } + + bavail = 0; + sb = dentry->d_sb; + mfs = &au_sbi(sb)->si_wbr_mfs; + MtxMustLock(&mfs->mfs_lock); + mfs->mfs_bindex = -EROFS; + mfs->mfsrr_bytes = 0; + if (!parent) { + bindex = 0; + bbot = au_sbbot(sb); + } else { + bindex = au_dbtop(parent); + bbot = au_dbtaildir(parent); + } + + for (; bindex <= bbot; bindex++) { + if (parent) { + h_parent = au_h_dptr(parent, bindex); + if (!h_parent || d_is_negative(h_parent)) + continue; + } + br = au_sbr(sb, bindex); + if (au_br_rdonly(br)) + continue; + + /* sb->s_root for NFS is unreliable */ + h_path.mnt = au_br_mnt(br); + h_path.dentry = h_path.mnt->mnt_root; + err = vfs_statfs(&h_path, st); + if (unlikely(err)) { + AuWarn1("failed statfs, b%d, %d\n", bindex, err); + continue; + } + + /* when the available size is equal, select the lower one */ + BUILD_BUG_ON(sizeof(b) < sizeof(st->f_bavail) + || sizeof(b) < sizeof(st->f_bsize)); + b = st->f_bavail * st->f_bsize; + br->br_wbr->wbr_bytes = b; + if (b >= bavail) { + bavail = b; + mfs->mfs_bindex = bindex; + mfs->mfs_jiffy = jiffies; + } + } + + mfs->mfsrr_bytes = bavail; + AuDbg("b%d\n", mfs->mfs_bindex); + au_delayed_kfree(st); +} + +static int au_wbr_create_mfs(struct dentry *dentry, unsigned int flags) +{ + int err; + struct dentry *parent; + struct super_block *sb; + struct au_wbr_mfs *mfs; + + err = au_wbr_create_exp(dentry); + if (err >= 0) + goto out; + + sb = dentry->d_sb; + parent = NULL; + if (au_ftest_wbr(flags, PARENT)) + parent = dget_parent(dentry); + mfs = &au_sbi(sb)->si_wbr_mfs; + mutex_lock(&mfs->mfs_lock); + if (time_after(jiffies, mfs->mfs_jiffy + mfs->mfs_expire) + || mfs->mfs_bindex < 0 + || au_br_rdonly(au_sbr(sb, mfs->mfs_bindex))) + au_mfs(dentry, parent); + mutex_unlock(&mfs->mfs_lock); + err = mfs->mfs_bindex; + dput(parent); + + if (err >= 0) + err = au_wbr_nonopq(dentry, err); + +out: + AuDbg("b%d\n", err); + return err; +} + +static int au_wbr_create_init_mfs(struct super_block *sb) +{ + struct au_wbr_mfs *mfs; + + mfs = &au_sbi(sb)->si_wbr_mfs; + mutex_init(&mfs->mfs_lock); + mfs->mfs_jiffy = 0; + mfs->mfs_bindex = -EROFS; + + return 0; +} + +static int au_wbr_create_fin_mfs(struct super_block *sb __maybe_unused) +{ + mutex_destroy(&au_sbi(sb)->si_wbr_mfs.mfs_lock); + return 0; +} + +/* ---------------------------------------------------------------------- */ + +/* most free space and then round robin */ +static int au_wbr_create_mfsrr(struct dentry *dentry, unsigned int flags) +{ + int err; + struct au_wbr_mfs *mfs; + + err = au_wbr_create_mfs(dentry, flags); + if (err >= 0) { + mfs = &au_sbi(dentry->d_sb)->si_wbr_mfs; + mutex_lock(&mfs->mfs_lock); + if (mfs->mfsrr_bytes < mfs->mfsrr_watermark) + err = au_wbr_create_rr(dentry, flags); + mutex_unlock(&mfs->mfs_lock); + } + + AuDbg("b%d\n", err); + return err; +} + +static int au_wbr_create_init_mfsrr(struct super_block *sb) +{ + int err; + + au_wbr_create_init_mfs(sb); /* ignore */ + err = au_wbr_create_init_rr(sb); + + return err; +} + +/* ---------------------------------------------------------------------- */ + +/* top down parent and most free space */ +static int au_wbr_create_pmfs(struct dentry *dentry, unsigned int flags) +{ + int err, e2; + unsigned long long b; + aufs_bindex_t bindex, btop, bbot; + struct super_block *sb; + struct dentry *parent, *h_parent; + struct au_branch *br; + + err = au_wbr_create_tdp(dentry, flags); + if (unlikely(err < 0)) + goto out; + parent = dget_parent(dentry); + btop = au_dbtop(parent); + bbot = au_dbtaildir(parent); + if (btop == bbot) + goto out_parent; /* success */ + + e2 = au_wbr_create_mfs(dentry, flags); + if (e2 < 0) + goto out_parent; /* success */ + + /* when the available size is equal, select upper one */ + sb = dentry->d_sb; + br = au_sbr(sb, err); + b = br->br_wbr->wbr_bytes; + AuDbg("b%d, %llu\n", err, b); + + for (bindex = btop; bindex <= bbot; bindex++) { + h_parent = au_h_dptr(parent, bindex); + if (!h_parent || d_is_negative(h_parent)) + continue; + + br = au_sbr(sb, bindex); + if (!au_br_rdonly(br) && br->br_wbr->wbr_bytes > b) { + b = br->br_wbr->wbr_bytes; + err = bindex; + AuDbg("b%d, %llu\n", err, b); + } + } + + if (err >= 0) + err = au_wbr_nonopq(dentry, err); + +out_parent: + dput(parent); +out: + AuDbg("b%d\n", err); + return err; +} + +/* ---------------------------------------------------------------------- */ + +/* + * - top down parent + * - most free space with parent + * - most free space round-robin regardless parent + */ +static int au_wbr_create_pmfsrr(struct dentry *dentry, unsigned int flags) +{ + int err; + unsigned long long watermark; + struct super_block *sb; + struct au_branch *br; + struct au_wbr_mfs *mfs; + + err = au_wbr_create_pmfs(dentry, flags | AuWbr_PARENT); + if (unlikely(err < 0)) + goto out; + + sb = dentry->d_sb; + br = au_sbr(sb, err); + mfs = &au_sbi(sb)->si_wbr_mfs; + mutex_lock(&mfs->mfs_lock); + watermark = mfs->mfsrr_watermark; + mutex_unlock(&mfs->mfs_lock); + if (br->br_wbr->wbr_bytes < watermark) + /* regardless the parent dir */ + err = au_wbr_create_mfsrr(dentry, flags); + +out: + AuDbg("b%d\n", err); + return err; +} + +/* ---------------------------------------------------------------------- */ + +/* policies for copyup */ + +/* top down parent */ +static int au_wbr_copyup_tdp(struct dentry *dentry) +{ + return au_wbr_create_tdp(dentry, /*flags, anything is ok*/0); +} + +/* bottom up parent */ +static int au_wbr_copyup_bup(struct dentry *dentry) +{ + int err; + aufs_bindex_t bindex, btop; + struct dentry *parent, *h_parent; + struct super_block *sb; + + err = -EROFS; + sb = dentry->d_sb; + parent = dget_parent(dentry); + btop = au_dbtop(parent); + for (bindex = au_dbtop(dentry); bindex >= btop; bindex--) { + h_parent = au_h_dptr(parent, bindex); + if (!h_parent || d_is_negative(h_parent)) + continue; + + if (!au_br_rdonly(au_sbr(sb, bindex))) { + err = bindex; + break; + } + } + dput(parent); + + /* bottom up here */ + if (unlikely(err < 0)) + err = au_wbr_bu(sb, btop - 1); + + AuDbg("b%d\n", err); + return err; +} + +/* bottom up */ +int au_wbr_do_copyup_bu(struct dentry *dentry, aufs_bindex_t btop) +{ + int err; + + err = au_wbr_bu(dentry->d_sb, btop); + AuDbg("b%d\n", err); + if (err > btop) + err = au_wbr_nonopq(dentry, err); + + AuDbg("b%d\n", err); + return err; +} + +static int au_wbr_copyup_bu(struct dentry *dentry) +{ + int err; + aufs_bindex_t btop; + + btop = au_dbtop(dentry); + err = au_wbr_do_copyup_bu(dentry, btop); + return err; +} + +/* ---------------------------------------------------------------------- */ + +struct au_wbr_copyup_operations au_wbr_copyup_ops[] = { + [AuWbrCopyup_TDP] = { + .copyup = au_wbr_copyup_tdp + }, + [AuWbrCopyup_BUP] = { + .copyup = au_wbr_copyup_bup + }, + [AuWbrCopyup_BU] = { + .copyup = au_wbr_copyup_bu + } +}; + +struct au_wbr_create_operations au_wbr_create_ops[] = { + [AuWbrCreate_TDP] = { + .create = au_wbr_create_tdp + }, + [AuWbrCreate_RR] = { + .create = au_wbr_create_rr, + .init = au_wbr_create_init_rr + }, + [AuWbrCreate_MFS] = { + .create = au_wbr_create_mfs, + .init = au_wbr_create_init_mfs, + .fin = au_wbr_create_fin_mfs + }, + [AuWbrCreate_MFSV] = { + .create = au_wbr_create_mfs, + .init = au_wbr_create_init_mfs, + .fin = au_wbr_create_fin_mfs + }, + [AuWbrCreate_MFSRR] = { + .create = au_wbr_create_mfsrr, + .init = au_wbr_create_init_mfsrr, + .fin = au_wbr_create_fin_mfs + }, + [AuWbrCreate_MFSRRV] = { + .create = au_wbr_create_mfsrr, + .init = au_wbr_create_init_mfsrr, + .fin = au_wbr_create_fin_mfs + }, + [AuWbrCreate_PMFS] = { + .create = au_wbr_create_pmfs, + .init = au_wbr_create_init_mfs, + .fin = au_wbr_create_fin_mfs + }, + [AuWbrCreate_PMFSV] = { + .create = au_wbr_create_pmfs, + .init = au_wbr_create_init_mfs, + .fin = au_wbr_create_fin_mfs + }, + [AuWbrCreate_PMFSRR] = { + .create = au_wbr_create_pmfsrr, + .init = au_wbr_create_init_mfsrr, + .fin = au_wbr_create_fin_mfs + }, + [AuWbrCreate_PMFSRRV] = { + .create = au_wbr_create_pmfsrr, + .init = au_wbr_create_init_mfsrr, + .fin = au_wbr_create_fin_mfs + } +}; --- linux-4.8.0.orig/fs/aufs/whout.c +++ linux-4.8.0/fs/aufs/whout.c @@ -0,0 +1,1060 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * whiteout for logical deletion and opaque directory + */ + +#include "aufs.h" + +#define WH_MASK S_IRUGO + +/* + * If a directory contains this file, then it is opaque. We start with the + * .wh. flag so that it is blocked by lookup. + */ +static struct qstr diropq_name = QSTR_INIT(AUFS_WH_DIROPQ, + sizeof(AUFS_WH_DIROPQ) - 1); + +/* + * generate whiteout name, which is NOT terminated by NULL. + * @name: original d_name.name + * @len: original d_name.len + * @wh: whiteout qstr + * returns zero when succeeds, otherwise error. + * succeeded value as wh->name should be freed by kfree(). + */ +int au_wh_name_alloc(struct qstr *wh, const struct qstr *name) +{ + char *p; + + if (unlikely(name->len > PATH_MAX - AUFS_WH_PFX_LEN)) + return -ENAMETOOLONG; + + wh->len = name->len + AUFS_WH_PFX_LEN; + p = kmalloc(wh->len, GFP_NOFS); + wh->name = p; + if (p) { + memcpy(p, AUFS_WH_PFX, AUFS_WH_PFX_LEN); + memcpy(p + AUFS_WH_PFX_LEN, name->name, name->len); + /* smp_mb(); */ + return 0; + } + return -ENOMEM; +} + +/* ---------------------------------------------------------------------- */ + +/* + * test if the @wh_name exists under @h_parent. + * @try_sio specifies the necessary of super-io. + */ +int au_wh_test(struct dentry *h_parent, struct qstr *wh_name, int try_sio) +{ + int err; + struct dentry *wh_dentry; + + if (!try_sio) + wh_dentry = vfsub_lkup_one(wh_name, h_parent); + else + wh_dentry = au_sio_lkup_one(wh_name, h_parent); + err = PTR_ERR(wh_dentry); + if (IS_ERR(wh_dentry)) { + if (err == -ENAMETOOLONG) + err = 0; + goto out; + } + + err = 0; + if (d_is_negative(wh_dentry)) + goto out_wh; /* success */ + + err = 1; + if (d_is_reg(wh_dentry)) + goto out_wh; /* success */ + + err = -EIO; + AuIOErr("%pd Invalid whiteout entry type 0%o.\n", + wh_dentry, d_inode(wh_dentry)->i_mode); + +out_wh: + dput(wh_dentry); +out: + return err; +} + +/* + * test if the @h_dentry sets opaque or not. + */ +int au_diropq_test(struct dentry *h_dentry) +{ + int err; + struct inode *h_dir; + + h_dir = d_inode(h_dentry); + err = au_wh_test(h_dentry, &diropq_name, + au_test_h_perm_sio(h_dir, MAY_EXEC)); + return err; +} + +/* + * returns a negative dentry whose name is unique and temporary. + */ +struct dentry *au_whtmp_lkup(struct dentry *h_parent, struct au_branch *br, + struct qstr *prefix) +{ + struct dentry *dentry; + int i; + char defname[NAME_MAX - AUFS_MAX_NAMELEN + DNAME_INLINE_LEN + 1], + *name, *p; + /* strict atomic_t is unnecessary here */ + static unsigned short cnt; + struct qstr qs; + + BUILD_BUG_ON(sizeof(cnt) * 2 > AUFS_WH_TMP_LEN); + + name = defname; + qs.len = sizeof(defname) - DNAME_INLINE_LEN + prefix->len - 1; + if (unlikely(prefix->len > DNAME_INLINE_LEN)) { + dentry = ERR_PTR(-ENAMETOOLONG); + if (unlikely(qs.len > NAME_MAX)) + goto out; + dentry = ERR_PTR(-ENOMEM); + name = kmalloc(qs.len + 1, GFP_NOFS); + if (unlikely(!name)) + goto out; + } + + /* doubly whiteout-ed */ + memcpy(name, AUFS_WH_PFX AUFS_WH_PFX, AUFS_WH_PFX_LEN * 2); + p = name + AUFS_WH_PFX_LEN * 2; + memcpy(p, prefix->name, prefix->len); + p += prefix->len; + *p++ = '.'; + AuDebugOn(name + qs.len + 1 - p <= AUFS_WH_TMP_LEN); + + qs.name = name; + for (i = 0; i < 3; i++) { + sprintf(p, "%.*x", AUFS_WH_TMP_LEN, cnt++); + dentry = au_sio_lkup_one(&qs, h_parent); + if (IS_ERR(dentry) || d_is_negative(dentry)) + goto out_name; + dput(dentry); + } + /* pr_warn("could not get random name\n"); */ + dentry = ERR_PTR(-EEXIST); + AuDbg("%.*s\n", AuLNPair(&qs)); + BUG(); + +out_name: + if (name != defname) + au_delayed_kfree(name); +out: + AuTraceErrPtr(dentry); + return dentry; +} + +/* + * rename the @h_dentry on @br to the whiteouted temporary name. + */ +int au_whtmp_ren(struct dentry *h_dentry, struct au_branch *br) +{ + int err; + struct path h_path = { + .mnt = au_br_mnt(br) + }; + struct inode *h_dir, *delegated; + struct dentry *h_parent; + + h_parent = h_dentry->d_parent; /* dir inode is locked */ + h_dir = d_inode(h_parent); + IMustLock(h_dir); + + h_path.dentry = au_whtmp_lkup(h_parent, br, &h_dentry->d_name); + err = PTR_ERR(h_path.dentry); + if (IS_ERR(h_path.dentry)) + goto out; + + /* under the same dir, no need to lock_rename() */ + delegated = NULL; + err = vfsub_rename(h_dir, h_dentry, h_dir, &h_path, &delegated); + AuTraceErr(err); + if (unlikely(err == -EWOULDBLOCK)) { + pr_warn("cannot retry for NFSv4 delegation" + " for an internal rename\n"); + iput(delegated); + } + dput(h_path.dentry); + +out: + AuTraceErr(err); + return err; +} + +/* ---------------------------------------------------------------------- */ +/* + * functions for removing a whiteout + */ + +static int do_unlink_wh(struct inode *h_dir, struct path *h_path) +{ + int err, force; + struct inode *delegated; + + /* + * forces superio when the dir has a sticky bit. + * this may be a violation of unix fs semantics. + */ + force = (h_dir->i_mode & S_ISVTX) + && !uid_eq(current_fsuid(), d_inode(h_path->dentry)->i_uid); + delegated = NULL; + err = vfsub_unlink(h_dir, h_path, &delegated, force); + if (unlikely(err == -EWOULDBLOCK)) { + pr_warn("cannot retry for NFSv4 delegation" + " for an internal unlink\n"); + iput(delegated); + } + return err; +} + +int au_wh_unlink_dentry(struct inode *h_dir, struct path *h_path, + struct dentry *dentry) +{ + int err; + + err = do_unlink_wh(h_dir, h_path); + if (!err && dentry) + au_set_dbwh(dentry, -1); + + return err; +} + +static int unlink_wh_name(struct dentry *h_parent, struct qstr *wh, + struct au_branch *br) +{ + int err; + struct path h_path = { + .mnt = au_br_mnt(br) + }; + + err = 0; + h_path.dentry = vfsub_lkup_one(wh, h_parent); + if (IS_ERR(h_path.dentry)) + err = PTR_ERR(h_path.dentry); + else { + if (d_is_reg(h_path.dentry)) + err = do_unlink_wh(d_inode(h_parent), &h_path); + dput(h_path.dentry); + } + + return err; +} + +/* ---------------------------------------------------------------------- */ +/* + * initialize/clean whiteout for a branch + */ + +static void au_wh_clean(struct inode *h_dir, struct path *whpath, + const int isdir) +{ + int err; + struct inode *delegated; + + if (d_is_negative(whpath->dentry)) + return; + + if (isdir) + err = vfsub_rmdir(h_dir, whpath); + else { + delegated = NULL; + err = vfsub_unlink(h_dir, whpath, &delegated, /*force*/0); + if (unlikely(err == -EWOULDBLOCK)) { + pr_warn("cannot retry for NFSv4 delegation" + " for an internal unlink\n"); + iput(delegated); + } + } + if (unlikely(err)) + pr_warn("failed removing %pd (%d), ignored.\n", + whpath->dentry, err); +} + +static int test_linkable(struct dentry *h_root) +{ + struct inode *h_dir = d_inode(h_root); + + if (h_dir->i_op->link) + return 0; + + pr_err("%pd (%s) doesn't support link(2), use noplink and rw+nolwh\n", + h_root, au_sbtype(h_root->d_sb)); + return -ENOSYS; +} + +/* todo: should this mkdir be done in /sbin/mount.aufs helper? */ +static int au_whdir(struct inode *h_dir, struct path *path) +{ + int err; + + err = -EEXIST; + if (d_is_negative(path->dentry)) { + int mode = S_IRWXU; + + if (au_test_nfs(path->dentry->d_sb)) + mode |= S_IXUGO; + err = vfsub_mkdir(h_dir, path, mode); + } else if (d_is_dir(path->dentry)) + err = 0; + else + pr_err("unknown %pd exists\n", path->dentry); + + return err; +} + +struct au_wh_base { + const struct qstr *name; + struct dentry *dentry; +}; + +static void au_wh_init_ro(struct inode *h_dir, struct au_wh_base base[], + struct path *h_path) +{ + h_path->dentry = base[AuBrWh_BASE].dentry; + au_wh_clean(h_dir, h_path, /*isdir*/0); + h_path->dentry = base[AuBrWh_PLINK].dentry; + au_wh_clean(h_dir, h_path, /*isdir*/1); + h_path->dentry = base[AuBrWh_ORPH].dentry; + au_wh_clean(h_dir, h_path, /*isdir*/1); +} + +/* + * returns tri-state, + * minus: error, caller should print the message + * zero: succuess + * plus: error, caller should NOT print the message + */ +static int au_wh_init_rw_nolink(struct dentry *h_root, struct au_wbr *wbr, + int do_plink, struct au_wh_base base[], + struct path *h_path) +{ + int err; + struct inode *h_dir; + + h_dir = d_inode(h_root); + h_path->dentry = base[AuBrWh_BASE].dentry; + au_wh_clean(h_dir, h_path, /*isdir*/0); + h_path->dentry = base[AuBrWh_PLINK].dentry; + if (do_plink) { + err = test_linkable(h_root); + if (unlikely(err)) { + err = 1; + goto out; + } + + err = au_whdir(h_dir, h_path); + if (unlikely(err)) + goto out; + wbr->wbr_plink = dget(base[AuBrWh_PLINK].dentry); + } else + au_wh_clean(h_dir, h_path, /*isdir*/1); + h_path->dentry = base[AuBrWh_ORPH].dentry; + err = au_whdir(h_dir, h_path); + if (unlikely(err)) + goto out; + wbr->wbr_orph = dget(base[AuBrWh_ORPH].dentry); + +out: + return err; +} + +/* + * for the moment, aufs supports the branch filesystem which does not support + * link(2). testing on FAT which does not support i_op->setattr() fully either, + * copyup failed. finally, such filesystem will not be used as the writable + * branch. + * + * returns tri-state, see above. + */ +static int au_wh_init_rw(struct dentry *h_root, struct au_wbr *wbr, + int do_plink, struct au_wh_base base[], + struct path *h_path) +{ + int err; + struct inode *h_dir; + + WbrWhMustWriteLock(wbr); + + err = test_linkable(h_root); + if (unlikely(err)) { + err = 1; + goto out; + } + + /* + * todo: should this create be done in /sbin/mount.aufs helper? + */ + err = -EEXIST; + h_dir = d_inode(h_root); + if (d_is_negative(base[AuBrWh_BASE].dentry)) { + h_path->dentry = base[AuBrWh_BASE].dentry; + err = vfsub_create(h_dir, h_path, WH_MASK, /*want_excl*/true); + } else if (d_is_reg(base[AuBrWh_BASE].dentry)) + err = 0; + else + pr_err("unknown %pd2 exists\n", base[AuBrWh_BASE].dentry); + if (unlikely(err)) + goto out; + + h_path->dentry = base[AuBrWh_PLINK].dentry; + if (do_plink) { + err = au_whdir(h_dir, h_path); + if (unlikely(err)) + goto out; + wbr->wbr_plink = dget(base[AuBrWh_PLINK].dentry); + } else + au_wh_clean(h_dir, h_path, /*isdir*/1); + wbr->wbr_whbase = dget(base[AuBrWh_BASE].dentry); + + h_path->dentry = base[AuBrWh_ORPH].dentry; + err = au_whdir(h_dir, h_path); + if (unlikely(err)) + goto out; + wbr->wbr_orph = dget(base[AuBrWh_ORPH].dentry); + +out: + return err; +} + +/* + * initialize the whiteout base file/dir for @br. + */ +int au_wh_init(struct au_branch *br, struct super_block *sb) +{ + int err, i; + const unsigned char do_plink + = !!au_opt_test(au_mntflags(sb), PLINK); + struct inode *h_dir; + struct path path = br->br_path; + struct dentry *h_root = path.dentry; + struct au_wbr *wbr = br->br_wbr; + static const struct qstr base_name[] = { + [AuBrWh_BASE] = QSTR_INIT(AUFS_BASE_NAME, + sizeof(AUFS_BASE_NAME) - 1), + [AuBrWh_PLINK] = QSTR_INIT(AUFS_PLINKDIR_NAME, + sizeof(AUFS_PLINKDIR_NAME) - 1), + [AuBrWh_ORPH] = QSTR_INIT(AUFS_ORPHDIR_NAME, + sizeof(AUFS_ORPHDIR_NAME) - 1) + }; + struct au_wh_base base[] = { + [AuBrWh_BASE] = { + .name = base_name + AuBrWh_BASE, + .dentry = NULL + }, + [AuBrWh_PLINK] = { + .name = base_name + AuBrWh_PLINK, + .dentry = NULL + }, + [AuBrWh_ORPH] = { + .name = base_name + AuBrWh_ORPH, + .dentry = NULL + } + }; + + if (wbr) + WbrWhMustWriteLock(wbr); + + for (i = 0; i < AuBrWh_Last; i++) { + /* doubly whiteouted */ + struct dentry *d; + + d = au_wh_lkup(h_root, (void *)base[i].name, br); + err = PTR_ERR(d); + if (IS_ERR(d)) + goto out; + + base[i].dentry = d; + AuDebugOn(wbr + && wbr->wbr_wh[i] + && wbr->wbr_wh[i] != base[i].dentry); + } + + if (wbr) + for (i = 0; i < AuBrWh_Last; i++) { + dput(wbr->wbr_wh[i]); + wbr->wbr_wh[i] = NULL; + } + + err = 0; + if (!au_br_writable(br->br_perm)) { + h_dir = d_inode(h_root); + au_wh_init_ro(h_dir, base, &path); + } else if (!au_br_wh_linkable(br->br_perm)) { + err = au_wh_init_rw_nolink(h_root, wbr, do_plink, base, &path); + if (err > 0) + goto out; + else if (err) + goto out_err; + } else { + err = au_wh_init_rw(h_root, wbr, do_plink, base, &path); + if (err > 0) + goto out; + else if (err) + goto out_err; + } + goto out; /* success */ + +out_err: + pr_err("an error(%d) on the writable branch %pd(%s)\n", + err, h_root, au_sbtype(h_root->d_sb)); +out: + for (i = 0; i < AuBrWh_Last; i++) + dput(base[i].dentry); + return err; +} + +/* ---------------------------------------------------------------------- */ +/* + * whiteouts are all hard-linked usually. + * when its link count reaches a ceiling, we create a new whiteout base + * asynchronously. + */ + +struct reinit_br_wh { + struct super_block *sb; + struct au_branch *br; +}; + +static void reinit_br_wh(void *arg) +{ + int err; + aufs_bindex_t bindex; + struct path h_path; + struct reinit_br_wh *a = arg; + struct au_wbr *wbr; + struct inode *dir, *delegated; + struct dentry *h_root; + struct au_hinode *hdir; + + err = 0; + wbr = a->br->br_wbr; + /* big aufs lock */ + si_noflush_write_lock(a->sb); + if (!au_br_writable(a->br->br_perm)) + goto out; + bindex = au_br_index(a->sb, a->br->br_id); + if (unlikely(bindex < 0)) + goto out; + + di_read_lock_parent(a->sb->s_root, AuLock_IR); + dir = d_inode(a->sb->s_root); + hdir = au_hi(dir, bindex); + h_root = au_h_dptr(a->sb->s_root, bindex); + AuDebugOn(h_root != au_br_dentry(a->br)); + + au_hn_inode_lock_nested(hdir, AuLsc_I_PARENT); + wbr_wh_write_lock(wbr); + err = au_h_verify(wbr->wbr_whbase, au_opt_udba(a->sb), hdir->hi_inode, + h_root, a->br); + if (!err) { + h_path.dentry = wbr->wbr_whbase; + h_path.mnt = au_br_mnt(a->br); + delegated = NULL; + err = vfsub_unlink(hdir->hi_inode, &h_path, &delegated, + /*force*/0); + if (unlikely(err == -EWOULDBLOCK)) { + pr_warn("cannot retry for NFSv4 delegation" + " for an internal unlink\n"); + iput(delegated); + } + } else { + pr_warn("%pd is moved, ignored\n", wbr->wbr_whbase); + err = 0; + } + dput(wbr->wbr_whbase); + wbr->wbr_whbase = NULL; + if (!err) + err = au_wh_init(a->br, a->sb); + wbr_wh_write_unlock(wbr); + au_hn_inode_unlock(hdir); + di_read_unlock(a->sb->s_root, AuLock_IR); + if (!err) + au_fhsm_wrote(a->sb, bindex, /*force*/0); + +out: + if (wbr) + atomic_dec(&wbr->wbr_wh_running); + au_br_put(a->br); + si_write_unlock(a->sb); + au_nwt_done(&au_sbi(a->sb)->si_nowait); + au_delayed_kfree(arg); + if (unlikely(err)) + AuIOErr("err %d\n", err); +} + +static void kick_reinit_br_wh(struct super_block *sb, struct au_branch *br) +{ + int do_dec, wkq_err; + struct reinit_br_wh *arg; + + do_dec = 1; + if (atomic_inc_return(&br->br_wbr->wbr_wh_running) != 1) + goto out; + + /* ignore ENOMEM */ + arg = kmalloc(sizeof(*arg), GFP_NOFS); + if (arg) { + /* + * dec(wh_running), kfree(arg) and dec(br_count) + * in reinit function + */ + arg->sb = sb; + arg->br = br; + au_br_get(br); + wkq_err = au_wkq_nowait(reinit_br_wh, arg, sb, /*flags*/0); + if (unlikely(wkq_err)) { + atomic_dec(&br->br_wbr->wbr_wh_running); + au_br_put(br); + au_delayed_kfree(arg); + } + do_dec = 0; + } + +out: + if (do_dec) + atomic_dec(&br->br_wbr->wbr_wh_running); +} + +/* ---------------------------------------------------------------------- */ + +/* + * create the whiteout @wh. + */ +static int link_or_create_wh(struct super_block *sb, aufs_bindex_t bindex, + struct dentry *wh) +{ + int err; + struct path h_path = { + .dentry = wh + }; + struct au_branch *br; + struct au_wbr *wbr; + struct dentry *h_parent; + struct inode *h_dir, *delegated; + + h_parent = wh->d_parent; /* dir inode is locked */ + h_dir = d_inode(h_parent); + IMustLock(h_dir); + + br = au_sbr(sb, bindex); + h_path.mnt = au_br_mnt(br); + wbr = br->br_wbr; + wbr_wh_read_lock(wbr); + if (wbr->wbr_whbase) { + delegated = NULL; + err = vfsub_link(wbr->wbr_whbase, h_dir, &h_path, &delegated); + if (unlikely(err == -EWOULDBLOCK)) { + pr_warn("cannot retry for NFSv4 delegation" + " for an internal link\n"); + iput(delegated); + } + if (!err || err != -EMLINK) + goto out; + + /* link count full. re-initialize br_whbase. */ + kick_reinit_br_wh(sb, br); + } + + /* return this error in this context */ + err = vfsub_create(h_dir, &h_path, WH_MASK, /*want_excl*/true); + if (!err) + au_fhsm_wrote(sb, bindex, /*force*/0); + +out: + wbr_wh_read_unlock(wbr); + return err; +} + +/* ---------------------------------------------------------------------- */ + +/* + * create or remove the diropq. + */ +static struct dentry *do_diropq(struct dentry *dentry, aufs_bindex_t bindex, + unsigned int flags) +{ + struct dentry *opq_dentry, *h_dentry; + struct super_block *sb; + struct au_branch *br; + int err; + + sb = dentry->d_sb; + br = au_sbr(sb, bindex); + h_dentry = au_h_dptr(dentry, bindex); + opq_dentry = vfsub_lkup_one(&diropq_name, h_dentry); + if (IS_ERR(opq_dentry)) + goto out; + + if (au_ftest_diropq(flags, CREATE)) { + err = link_or_create_wh(sb, bindex, opq_dentry); + if (!err) { + au_set_dbdiropq(dentry, bindex); + goto out; /* success */ + } + } else { + struct path tmp = { + .dentry = opq_dentry, + .mnt = au_br_mnt(br) + }; + err = do_unlink_wh(au_h_iptr(d_inode(dentry), bindex), &tmp); + if (!err) + au_set_dbdiropq(dentry, -1); + } + dput(opq_dentry); + opq_dentry = ERR_PTR(err); + +out: + return opq_dentry; +} + +struct do_diropq_args { + struct dentry **errp; + struct dentry *dentry; + aufs_bindex_t bindex; + unsigned int flags; +}; + +static void call_do_diropq(void *args) +{ + struct do_diropq_args *a = args; + *a->errp = do_diropq(a->dentry, a->bindex, a->flags); +} + +struct dentry *au_diropq_sio(struct dentry *dentry, aufs_bindex_t bindex, + unsigned int flags) +{ + struct dentry *diropq, *h_dentry; + + h_dentry = au_h_dptr(dentry, bindex); + if (!au_test_h_perm_sio(d_inode(h_dentry), MAY_EXEC | MAY_WRITE)) + diropq = do_diropq(dentry, bindex, flags); + else { + int wkq_err; + struct do_diropq_args args = { + .errp = &diropq, + .dentry = dentry, + .bindex = bindex, + .flags = flags + }; + + wkq_err = au_wkq_wait(call_do_diropq, &args); + if (unlikely(wkq_err)) + diropq = ERR_PTR(wkq_err); + } + + return diropq; +} + +/* ---------------------------------------------------------------------- */ + +/* + * lookup whiteout dentry. + * @h_parent: lower parent dentry which must exist and be locked + * @base_name: name of dentry which will be whiteouted + * returns dentry for whiteout. + */ +struct dentry *au_wh_lkup(struct dentry *h_parent, struct qstr *base_name, + struct au_branch *br) +{ + int err; + struct qstr wh_name; + struct dentry *wh_dentry; + + err = au_wh_name_alloc(&wh_name, base_name); + wh_dentry = ERR_PTR(err); + if (!err) { + wh_dentry = vfsub_lkup_one(&wh_name, h_parent); + au_delayed_kfree(wh_name.name); + } + return wh_dentry; +} + +/* + * link/create a whiteout for @dentry on @bindex. + */ +struct dentry *au_wh_create(struct dentry *dentry, aufs_bindex_t bindex, + struct dentry *h_parent) +{ + struct dentry *wh_dentry; + struct super_block *sb; + int err; + + sb = dentry->d_sb; + wh_dentry = au_wh_lkup(h_parent, &dentry->d_name, au_sbr(sb, bindex)); + if (!IS_ERR(wh_dentry) && d_is_negative(wh_dentry)) { + err = link_or_create_wh(sb, bindex, wh_dentry); + if (!err) { + au_set_dbwh(dentry, bindex); + au_fhsm_wrote(sb, bindex, /*force*/0); + } else { + dput(wh_dentry); + wh_dentry = ERR_PTR(err); + } + } + + return wh_dentry; +} + +/* ---------------------------------------------------------------------- */ + +/* Delete all whiteouts in this directory on branch bindex. */ +static int del_wh_children(struct dentry *h_dentry, struct au_nhash *whlist, + aufs_bindex_t bindex, struct au_branch *br) +{ + int err; + unsigned long ul, n; + struct qstr wh_name; + char *p; + struct hlist_head *head; + struct au_vdir_wh *pos; + struct au_vdir_destr *str; + + err = -ENOMEM; + p = (void *)__get_free_page(GFP_NOFS); + wh_name.name = p; + if (unlikely(!wh_name.name)) + goto out; + + err = 0; + memcpy(p, AUFS_WH_PFX, AUFS_WH_PFX_LEN); + p += AUFS_WH_PFX_LEN; + n = whlist->nh_num; + head = whlist->nh_head; + for (ul = 0; !err && ul < n; ul++, head++) { + hlist_for_each_entry(pos, head, wh_hash) { + if (pos->wh_bindex != bindex) + continue; + + str = &pos->wh_str; + if (str->len + AUFS_WH_PFX_LEN <= PATH_MAX) { + memcpy(p, str->name, str->len); + wh_name.len = AUFS_WH_PFX_LEN + str->len; + err = unlink_wh_name(h_dentry, &wh_name, br); + if (!err) + continue; + break; + } + AuIOErr("whiteout name too long %.*s\n", + str->len, str->name); + err = -EIO; + break; + } + } + au_delayed_free_page((unsigned long)wh_name.name); + +out: + return err; +} + +struct del_wh_children_args { + int *errp; + struct dentry *h_dentry; + struct au_nhash *whlist; + aufs_bindex_t bindex; + struct au_branch *br; +}; + +static void call_del_wh_children(void *args) +{ + struct del_wh_children_args *a = args; + *a->errp = del_wh_children(a->h_dentry, a->whlist, a->bindex, a->br); +} + +/* ---------------------------------------------------------------------- */ + +struct au_whtmp_rmdir *au_whtmp_rmdir_alloc(struct super_block *sb, gfp_t gfp) +{ + struct au_whtmp_rmdir *whtmp; + int err; + unsigned int rdhash; + + SiMustAnyLock(sb); + + whtmp = kzalloc(sizeof(*whtmp), gfp); + if (unlikely(!whtmp)) { + whtmp = ERR_PTR(-ENOMEM); + goto out; + } + + /* no estimation for dir size */ + rdhash = au_sbi(sb)->si_rdhash; + if (!rdhash) + rdhash = AUFS_RDHASH_DEF; + err = au_nhash_alloc(&whtmp->whlist, rdhash, gfp); + if (unlikely(err)) { + au_delayed_kfree(whtmp); + whtmp = ERR_PTR(err); + } + +out: + return whtmp; +} + +void au_whtmp_rmdir_free(struct au_whtmp_rmdir *whtmp) +{ + if (whtmp->br) + au_br_put(whtmp->br); + dput(whtmp->wh_dentry); + iput(whtmp->dir); + au_nhash_wh_free(&whtmp->whlist); + au_delayed_kfree(whtmp); +} + +/* + * rmdir the whiteouted temporary named dir @h_dentry. + * @whlist: whiteouted children. + */ +int au_whtmp_rmdir(struct inode *dir, aufs_bindex_t bindex, + struct dentry *wh_dentry, struct au_nhash *whlist) +{ + int err; + unsigned int h_nlink; + struct path h_tmp; + struct inode *wh_inode, *h_dir; + struct au_branch *br; + + h_dir = d_inode(wh_dentry->d_parent); /* dir inode is locked */ + IMustLock(h_dir); + + br = au_sbr(dir->i_sb, bindex); + wh_inode = d_inode(wh_dentry); + inode_lock_nested(wh_inode, AuLsc_I_CHILD); + + /* + * someone else might change some whiteouts while we were sleeping. + * it means this whlist may have an obsoleted entry. + */ + if (!au_test_h_perm_sio(wh_inode, MAY_EXEC | MAY_WRITE)) + err = del_wh_children(wh_dentry, whlist, bindex, br); + else { + int wkq_err; + struct del_wh_children_args args = { + .errp = &err, + .h_dentry = wh_dentry, + .whlist = whlist, + .bindex = bindex, + .br = br + }; + + wkq_err = au_wkq_wait(call_del_wh_children, &args); + if (unlikely(wkq_err)) + err = wkq_err; + } + inode_unlock(wh_inode); + + if (!err) { + h_tmp.dentry = wh_dentry; + h_tmp.mnt = au_br_mnt(br); + h_nlink = h_dir->i_nlink; + err = vfsub_rmdir(h_dir, &h_tmp); + /* some fs doesn't change the parent nlink in some cases */ + h_nlink -= h_dir->i_nlink; + } + + if (!err) { + if (au_ibtop(dir) == bindex) { + /* todo: dir->i_mutex is necessary */ + au_cpup_attr_timesizes(dir); + if (h_nlink) + vfsub_drop_nlink(dir); + } + return 0; /* success */ + } + + pr_warn("failed removing %pd(%d), ignored\n", wh_dentry, err); + return err; +} + +static void call_rmdir_whtmp(void *args) +{ + int err; + aufs_bindex_t bindex; + struct au_whtmp_rmdir *a = args; + struct super_block *sb; + struct dentry *h_parent; + struct inode *h_dir; + struct au_hinode *hdir; + + /* rmdir by nfsd may cause deadlock with this i_mutex */ + /* inode_lock(a->dir); */ + err = -EROFS; + sb = a->dir->i_sb; + si_read_lock(sb, !AuLock_FLUSH); + if (!au_br_writable(a->br->br_perm)) + goto out; + bindex = au_br_index(sb, a->br->br_id); + if (unlikely(bindex < 0)) + goto out; + + err = -EIO; + ii_write_lock_parent(a->dir); + h_parent = dget_parent(a->wh_dentry); + h_dir = d_inode(h_parent); + hdir = au_hi(a->dir, bindex); + err = vfsub_mnt_want_write(au_br_mnt(a->br)); + if (unlikely(err)) + goto out_mnt; + au_hn_inode_lock_nested(hdir, AuLsc_I_PARENT); + err = au_h_verify(a->wh_dentry, au_opt_udba(sb), h_dir, h_parent, + a->br); + if (!err) + err = au_whtmp_rmdir(a->dir, bindex, a->wh_dentry, &a->whlist); + au_hn_inode_unlock(hdir); + vfsub_mnt_drop_write(au_br_mnt(a->br)); + +out_mnt: + dput(h_parent); + ii_write_unlock(a->dir); +out: + /* inode_unlock(a->dir); */ + au_whtmp_rmdir_free(a); + si_read_unlock(sb); + au_nwt_done(&au_sbi(sb)->si_nowait); + if (unlikely(err)) + AuIOErr("err %d\n", err); +} + +void au_whtmp_kick_rmdir(struct inode *dir, aufs_bindex_t bindex, + struct dentry *wh_dentry, struct au_whtmp_rmdir *args) +{ + int wkq_err; + struct super_block *sb; + + IMustLock(dir); + + /* all post-process will be done in do_rmdir_whtmp(). */ + sb = dir->i_sb; + args->dir = au_igrab(dir); + args->br = au_sbr(sb, bindex); + au_br_get(args->br); + args->wh_dentry = dget(wh_dentry); + wkq_err = au_wkq_nowait(call_rmdir_whtmp, args, sb, /*flags*/0); + if (unlikely(wkq_err)) { + pr_warn("rmdir error %pd (%d), ignored\n", wh_dentry, wkq_err); + au_whtmp_rmdir_free(args); + } +} --- linux-4.8.0.orig/fs/aufs/whout.h +++ linux-4.8.0/fs/aufs/whout.h @@ -0,0 +1,85 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * whiteout for logical deletion and opaque directory + */ + +#ifndef __AUFS_WHOUT_H__ +#define __AUFS_WHOUT_H__ + +#ifdef __KERNEL__ + +#include "dir.h" + +/* whout.c */ +int au_wh_name_alloc(struct qstr *wh, const struct qstr *name); +int au_wh_test(struct dentry *h_parent, struct qstr *wh_name, int try_sio); +int au_diropq_test(struct dentry *h_dentry); +struct au_branch; +struct dentry *au_whtmp_lkup(struct dentry *h_parent, struct au_branch *br, + struct qstr *prefix); +int au_whtmp_ren(struct dentry *h_dentry, struct au_branch *br); +int au_wh_unlink_dentry(struct inode *h_dir, struct path *h_path, + struct dentry *dentry); +int au_wh_init(struct au_branch *br, struct super_block *sb); + +/* diropq flags */ +#define AuDiropq_CREATE 1 +#define au_ftest_diropq(flags, name) ((flags) & AuDiropq_##name) +#define au_fset_diropq(flags, name) \ + do { (flags) |= AuDiropq_##name; } while (0) +#define au_fclr_diropq(flags, name) \ + do { (flags) &= ~AuDiropq_##name; } while (0) + +struct dentry *au_diropq_sio(struct dentry *dentry, aufs_bindex_t bindex, + unsigned int flags); +struct dentry *au_wh_lkup(struct dentry *h_parent, struct qstr *base_name, + struct au_branch *br); +struct dentry *au_wh_create(struct dentry *dentry, aufs_bindex_t bindex, + struct dentry *h_parent); + +/* real rmdir for the whiteout-ed dir */ +struct au_whtmp_rmdir { + struct inode *dir; + struct au_branch *br; + struct dentry *wh_dentry; + struct au_nhash whlist; +}; + +struct au_whtmp_rmdir *au_whtmp_rmdir_alloc(struct super_block *sb, gfp_t gfp); +void au_whtmp_rmdir_free(struct au_whtmp_rmdir *whtmp); +int au_whtmp_rmdir(struct inode *dir, aufs_bindex_t bindex, + struct dentry *wh_dentry, struct au_nhash *whlist); +void au_whtmp_kick_rmdir(struct inode *dir, aufs_bindex_t bindex, + struct dentry *wh_dentry, struct au_whtmp_rmdir *args); + +/* ---------------------------------------------------------------------- */ + +static inline struct dentry *au_diropq_create(struct dentry *dentry, + aufs_bindex_t bindex) +{ + return au_diropq_sio(dentry, bindex, AuDiropq_CREATE); +} + +static inline int au_diropq_remove(struct dentry *dentry, aufs_bindex_t bindex) +{ + return PTR_ERR(au_diropq_sio(dentry, bindex, !AuDiropq_CREATE)); +} + +#endif /* __KERNEL__ */ +#endif /* __AUFS_WHOUT_H__ */ --- linux-4.8.0.orig/fs/aufs/wkq.c +++ linux-4.8.0/fs/aufs/wkq.c @@ -0,0 +1,213 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * workqueue for asynchronous/super-io operations + * todo: try new dredential scheme + */ + +#include +#include "aufs.h" + +/* internal workqueue named AUFS_WKQ_NAME */ + +static struct workqueue_struct *au_wkq; + +struct au_wkinfo { + struct work_struct wk; + struct kobject *kobj; + + unsigned int flags; /* see wkq.h */ + + au_wkq_func_t func; + void *args; + + struct completion *comp; +}; + +/* ---------------------------------------------------------------------- */ + +static void wkq_func(struct work_struct *wk) +{ + struct au_wkinfo *wkinfo = container_of(wk, struct au_wkinfo, wk); + + AuDebugOn(!uid_eq(current_fsuid(), GLOBAL_ROOT_UID)); + AuDebugOn(rlimit(RLIMIT_FSIZE) != RLIM_INFINITY); + + wkinfo->func(wkinfo->args); + if (au_ftest_wkq(wkinfo->flags, WAIT)) + complete(wkinfo->comp); + else { + kobject_put(wkinfo->kobj); + module_put(THIS_MODULE); /* todo: ?? */ + au_delayed_kfree(wkinfo); + } +} + +/* + * Since struct completion is large, try allocating it dynamically. + */ +#if 1 /* defined(CONFIG_4KSTACKS) || defined(AuTest4KSTACKS) */ +#define AuWkqCompDeclare(name) struct completion *comp = NULL + +static int au_wkq_comp_alloc(struct au_wkinfo *wkinfo, struct completion **comp) +{ + *comp = kmalloc(sizeof(**comp), GFP_NOFS); + if (*comp) { + init_completion(*comp); + wkinfo->comp = *comp; + return 0; + } + return -ENOMEM; +} + +static void au_wkq_comp_free(struct completion *comp) +{ + au_delayed_kfree(comp); +} + +#else + +/* no braces */ +#define AuWkqCompDeclare(name) \ + DECLARE_COMPLETION_ONSTACK(_ ## name); \ + struct completion *comp = &_ ## name + +static int au_wkq_comp_alloc(struct au_wkinfo *wkinfo, struct completion **comp) +{ + wkinfo->comp = *comp; + return 0; +} + +static void au_wkq_comp_free(struct completion *comp __maybe_unused) +{ + /* empty */ +} +#endif /* 4KSTACKS */ + +static void au_wkq_run(struct au_wkinfo *wkinfo) +{ + if (au_ftest_wkq(wkinfo->flags, NEST)) { + if (au_wkq_test()) { + AuWarn1("wkq from wkq, unless silly-rename on NFS," + " due to a dead dir by UDBA?\n"); + AuDebugOn(au_ftest_wkq(wkinfo->flags, WAIT)); + } + } else + au_dbg_verify_kthread(); + + if (au_ftest_wkq(wkinfo->flags, WAIT)) { + INIT_WORK_ONSTACK(&wkinfo->wk, wkq_func); + queue_work(au_wkq, &wkinfo->wk); + } else { + INIT_WORK(&wkinfo->wk, wkq_func); + schedule_work(&wkinfo->wk); + } +} + +/* + * Be careful. It is easy to make deadlock happen. + * processA: lock, wkq and wait + * processB: wkq and wait, lock in wkq + * --> deadlock + */ +int au_wkq_do_wait(unsigned int flags, au_wkq_func_t func, void *args) +{ + int err; + AuWkqCompDeclare(comp); + struct au_wkinfo wkinfo = { + .flags = flags, + .func = func, + .args = args + }; + + err = au_wkq_comp_alloc(&wkinfo, &comp); + if (!err) { + au_wkq_run(&wkinfo); + /* no timeout, no interrupt */ + wait_for_completion(wkinfo.comp); + au_wkq_comp_free(comp); + destroy_work_on_stack(&wkinfo.wk); + } + + return err; + +} + +/* + * Note: dget/dput() in func for aufs dentries are not supported. It will be a + * problem in a concurrent umounting. + */ +int au_wkq_nowait(au_wkq_func_t func, void *args, struct super_block *sb, + unsigned int flags) +{ + int err; + struct au_wkinfo *wkinfo; + + atomic_inc(&au_sbi(sb)->si_nowait.nw_len); + + /* + * wkq_func() must free this wkinfo. + * it highly depends upon the implementation of workqueue. + */ + err = 0; + wkinfo = kmalloc(sizeof(*wkinfo), GFP_NOFS); + if (wkinfo) { + wkinfo->kobj = &au_sbi(sb)->si_kobj; + wkinfo->flags = flags & ~AuWkq_WAIT; + wkinfo->func = func; + wkinfo->args = args; + wkinfo->comp = NULL; + kobject_get(wkinfo->kobj); + __module_get(THIS_MODULE); /* todo: ?? */ + + au_wkq_run(wkinfo); + } else { + err = -ENOMEM; + au_nwt_done(&au_sbi(sb)->si_nowait); + } + + return err; +} + +/* ---------------------------------------------------------------------- */ + +void au_nwt_init(struct au_nowait_tasks *nwt) +{ + atomic_set(&nwt->nw_len, 0); + /* smp_mb(); */ /* atomic_set */ + init_waitqueue_head(&nwt->nw_wq); +} + +void au_wkq_fin(void) +{ + destroy_workqueue(au_wkq); +} + +int __init au_wkq_init(void) +{ + int err; + + err = 0; + au_wkq = alloc_workqueue(AUFS_WKQ_NAME, 0, WQ_DFL_ACTIVE); + if (IS_ERR(au_wkq)) + err = PTR_ERR(au_wkq); + else if (!au_wkq) + err = -ENOMEM; + + return err; +} --- linux-4.8.0.orig/fs/aufs/wkq.h +++ linux-4.8.0/fs/aufs/wkq.h @@ -0,0 +1,93 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * workqueue for asynchronous/super-io operations + * todo: try new credentials management scheme + */ + +#ifndef __AUFS_WKQ_H__ +#define __AUFS_WKQ_H__ + +#ifdef __KERNEL__ + +#include + +struct super_block; + +/* ---------------------------------------------------------------------- */ + +/* + * in the next operation, wait for the 'nowait' tasks in system-wide workqueue + */ +struct au_nowait_tasks { + atomic_t nw_len; + wait_queue_head_t nw_wq; +}; + +/* ---------------------------------------------------------------------- */ + +typedef void (*au_wkq_func_t)(void *args); + +/* wkq flags */ +#define AuWkq_WAIT 1 +#define AuWkq_NEST (1 << 1) +#define au_ftest_wkq(flags, name) ((flags) & AuWkq_##name) +#define au_fset_wkq(flags, name) \ + do { (flags) |= AuWkq_##name; } while (0) +#define au_fclr_wkq(flags, name) \ + do { (flags) &= ~AuWkq_##name; } while (0) + +#ifndef CONFIG_AUFS_HNOTIFY +#undef AuWkq_NEST +#define AuWkq_NEST 0 +#endif + +/* wkq.c */ +int au_wkq_do_wait(unsigned int flags, au_wkq_func_t func, void *args); +int au_wkq_nowait(au_wkq_func_t func, void *args, struct super_block *sb, + unsigned int flags); +void au_nwt_init(struct au_nowait_tasks *nwt); +int __init au_wkq_init(void); +void au_wkq_fin(void); + +/* ---------------------------------------------------------------------- */ + +static inline int au_wkq_test(void) +{ + return current->flags & PF_WQ_WORKER; +} + +static inline int au_wkq_wait(au_wkq_func_t func, void *args) +{ + return au_wkq_do_wait(AuWkq_WAIT, func, args); +} + +static inline void au_nwt_done(struct au_nowait_tasks *nwt) +{ + if (atomic_dec_and_test(&nwt->nw_len)) + wake_up_all(&nwt->nw_wq); +} + +static inline int au_nwt_flush(struct au_nowait_tasks *nwt) +{ + wait_event(nwt->nw_wq, !atomic_read(&nwt->nw_len)); + return 0; +} + +#endif /* __KERNEL__ */ +#endif /* __AUFS_WKQ_H__ */ --- linux-4.8.0.orig/fs/aufs/xattr.c +++ linux-4.8.0/fs/aufs/xattr.c @@ -0,0 +1,347 @@ +/* + * Copyright (C) 2014-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * handling xattr functions + */ + +#include +#include "aufs.h" + +static int au_xattr_ignore(int err, char *name, unsigned int ignore_flags) +{ + if (!ignore_flags) + goto out; + switch (err) { + case -ENOMEM: + case -EDQUOT: + goto out; + } + + if ((ignore_flags & AuBrAttr_ICEX) == AuBrAttr_ICEX) { + err = 0; + goto out; + } + +#define cmp(brattr, prefix) do { \ + if (!strncmp(name, XATTR_##prefix##_PREFIX, \ + XATTR_##prefix##_PREFIX_LEN)) { \ + if (ignore_flags & AuBrAttr_ICEX_##brattr) \ + err = 0; \ + goto out; \ + } \ + } while (0) + + cmp(SEC, SECURITY); + cmp(SYS, SYSTEM); + cmp(TR, TRUSTED); + cmp(USR, USER); +#undef cmp + + if (ignore_flags & AuBrAttr_ICEX_OTH) + err = 0; + +out: + return err; +} + +static const int au_xattr_out_of_list = AuBrAttr_ICEX_OTH << 1; + +static int au_do_cpup_xattr(struct dentry *h_dst, struct dentry *h_src, + char *name, char **buf, unsigned int ignore_flags, + unsigned int verbose) +{ + int err; + ssize_t ssz; + struct inode *h_idst; + + ssz = vfs_getxattr_alloc(h_src, name, buf, 0, GFP_NOFS); + err = ssz; + if (unlikely(err <= 0)) { + if (err == -ENODATA + || (err == -EOPNOTSUPP + && ((ignore_flags & au_xattr_out_of_list) + || (au_test_nfs_noacl(d_inode(h_src)) + && (!strcmp(name, XATTR_NAME_POSIX_ACL_ACCESS) + || !strcmp(name, + XATTR_NAME_POSIX_ACL_DEFAULT)))) + )) + err = 0; + if (err && (verbose || au_debug_test())) + pr_err("%s, err %d\n", name, err); + goto out; + } + + /* unlock it temporary */ + h_idst = d_inode(h_dst); + inode_unlock(h_idst); + err = vfsub_setxattr(h_dst, name, *buf, ssz, /*flags*/0); + inode_lock_nested(h_idst, AuLsc_I_CHILD2); + if (unlikely(err)) { + if (verbose || au_debug_test()) + pr_err("%s, err %d\n", name, err); + err = au_xattr_ignore(err, name, ignore_flags); + } + +out: + return err; +} + +int au_cpup_xattr(struct dentry *h_dst, struct dentry *h_src, int ignore_flags, + unsigned int verbose) +{ + int err, unlocked, acl_access, acl_default; + ssize_t ssz; + struct inode *h_isrc, *h_idst; + char *value, *p, *o, *e; + + /* try stopping to update the source inode while we are referencing */ + /* there should not be the parent-child relationship between them */ + h_isrc = d_inode(h_src); + h_idst = d_inode(h_dst); + inode_unlock(h_idst); + inode_lock_nested(h_isrc, AuLsc_I_CHILD); + inode_lock_nested(h_idst, AuLsc_I_CHILD2); + unlocked = 0; + + /* some filesystems don't list POSIX ACL, for example tmpfs */ + ssz = vfs_listxattr(h_src, NULL, 0); + err = ssz; + if (unlikely(err < 0)) { + AuTraceErr(err); + if (err == -ENODATA + || err == -EOPNOTSUPP) + err = 0; /* ignore */ + goto out; + } + + err = 0; + p = NULL; + o = NULL; + if (ssz) { + err = -ENOMEM; + p = kmalloc(ssz, GFP_NOFS); + o = p; + if (unlikely(!p)) + goto out; + err = vfs_listxattr(h_src, p, ssz); + } + inode_unlock(h_isrc); + unlocked = 1; + AuDbg("err %d, ssz %zd\n", err, ssz); + if (unlikely(err < 0)) + goto out_free; + + err = 0; + e = p + ssz; + value = NULL; + acl_access = 0; + acl_default = 0; + while (!err && p < e) { + acl_access |= !strncmp(p, XATTR_NAME_POSIX_ACL_ACCESS, + sizeof(XATTR_NAME_POSIX_ACL_ACCESS) - 1); + acl_default |= !strncmp(p, XATTR_NAME_POSIX_ACL_DEFAULT, + sizeof(XATTR_NAME_POSIX_ACL_DEFAULT) + - 1); + err = au_do_cpup_xattr(h_dst, h_src, p, &value, ignore_flags, + verbose); + p += strlen(p) + 1; + } + AuTraceErr(err); + ignore_flags |= au_xattr_out_of_list; + if (!err && !acl_access) { + err = au_do_cpup_xattr(h_dst, h_src, + XATTR_NAME_POSIX_ACL_ACCESS, &value, + ignore_flags, verbose); + AuTraceErr(err); + } + if (!err && !acl_default) { + err = au_do_cpup_xattr(h_dst, h_src, + XATTR_NAME_POSIX_ACL_DEFAULT, &value, + ignore_flags, verbose); + AuTraceErr(err); + } + + if (value) + au_delayed_kfree(value); + +out_free: + if (o) + au_delayed_kfree(o); +out: + if (!unlocked) + inode_unlock(h_isrc); + AuTraceErr(err); + return err; +} + +/* ---------------------------------------------------------------------- */ + +enum { + AU_XATTR_LIST, + AU_XATTR_GET +}; + +struct au_lgxattr { + int type; + union { + struct { + char *list; + size_t size; + } list; + struct { + const char *name; + void *value; + size_t size; + } get; + } u; +}; + +static ssize_t au_lgxattr(struct dentry *dentry, struct au_lgxattr *arg) +{ + ssize_t err; + struct path h_path; + struct super_block *sb; + + sb = dentry->d_sb; + err = si_read_lock(sb, AuLock_FLUSH | AuLock_NOPLM); + if (unlikely(err)) + goto out; + err = au_h_path_getattr(dentry, /*force*/1, &h_path); + if (unlikely(err)) + goto out_si; + if (unlikely(!h_path.dentry)) + /* illegally overlapped or something */ + goto out_di; /* pretending success */ + + /* always topmost entry only */ + switch (arg->type) { + case AU_XATTR_LIST: + err = vfs_listxattr(h_path.dentry, + arg->u.list.list, arg->u.list.size); + break; + case AU_XATTR_GET: + AuDebugOn(d_is_negative(h_path.dentry)); + err = vfs_getxattr(h_path.dentry, + arg->u.get.name, arg->u.get.value, + arg->u.get.size); + break; + } + +out_di: + di_read_unlock(dentry, AuLock_IR); +out_si: + si_read_unlock(sb); +out: + AuTraceErr(err); + return err; +} + +ssize_t aufs_listxattr(struct dentry *dentry, char *list, size_t size) +{ + struct au_lgxattr arg = { + .type = AU_XATTR_LIST, + .u.list = { + .list = list, + .size = size + }, + }; + + return au_lgxattr(dentry, &arg); +} + +ssize_t aufs_getxattr(struct dentry *dentry, struct inode *inode __maybe_unused, + const char *name, void *value, size_t size) +{ + struct au_lgxattr arg = { + .type = AU_XATTR_GET, + .u.get = { + .name = name, + .value = value, + .size = size + }, + }; + + return au_lgxattr(dentry, &arg); +} + +int aufs_setxattr(struct dentry *dentry, struct inode *inode, const char *name, + const void *value, size_t size, int flags) +{ + struct au_srxattr arg = { + .type = AU_XATTR_SET, + .u.set = { + .name = name, + .value = value, + .size = size, + .flags = flags + }, + }; + + return au_srxattr(dentry, inode, &arg); +} + +int aufs_removexattr(struct dentry *dentry, const char *name) +{ + struct au_srxattr arg = { + .type = AU_XATTR_REMOVE, + .u.remove = { + .name = name + }, + }; + + return au_srxattr(dentry, d_inode(dentry), &arg); +} + +/* ---------------------------------------------------------------------- */ + +#if 0 +static size_t au_xattr_list(struct dentry *dentry, char *list, size_t list_size, + const char *name, size_t name_len, int type) +{ + return aufs_listxattr(dentry, list, list_size); +} + +static int au_xattr_get(struct dentry *dentry, const char *name, void *buffer, + size_t size, int type) +{ + return aufs_getxattr(dentry, name, buffer, size); +} + +static int au_xattr_set(struct dentry *dentry, const char *name, + const void *value, size_t size, int flags, int type) +{ + return aufs_setxattr(dentry, name, value, size, flags); +} + +static const struct xattr_handler au_xattr_handler = { + /* no prefix, no flags */ + .list = au_xattr_list, + .get = au_xattr_get, + .set = au_xattr_set + /* why no remove? */ +}; + +static const struct xattr_handler *au_xattr_handlers[] = { + &au_xattr_handler +}; + +void au_xattr_init(struct super_block *sb) +{ + /* sb->s_xattr = au_xattr_handlers; */ +} +#endif --- linux-4.8.0.orig/fs/aufs/xino.c +++ linux-4.8.0/fs/aufs/xino.c @@ -0,0 +1,1318 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +/* + * external inode number translation table and bitmap + */ + +#include +#include +#include "aufs.h" + +/* todo: unnecessary to support mmap_sem since kernel-space? */ +ssize_t xino_fread(vfs_readf_t func, struct file *file, void *kbuf, size_t size, + loff_t *pos) +{ + ssize_t err; + mm_segment_t oldfs; + union { + void *k; + char __user *u; + } buf; + + buf.k = kbuf; + oldfs = get_fs(); + set_fs(KERNEL_DS); + do { + /* todo: signal_pending? */ + err = func(file, buf.u, size, pos); + } while (err == -EAGAIN || err == -EINTR); + set_fs(oldfs); + +#if 0 /* reserved for future use */ + if (err > 0) + fsnotify_access(file->f_path.dentry); +#endif + + return err; +} + +/* ---------------------------------------------------------------------- */ + +static ssize_t xino_fwrite_wkq(vfs_writef_t func, struct file *file, void *buf, + size_t size, loff_t *pos); + +static ssize_t do_xino_fwrite(vfs_writef_t func, struct file *file, void *kbuf, + size_t size, loff_t *pos) +{ + ssize_t err; + mm_segment_t oldfs; + union { + void *k; + const char __user *u; + } buf; + int i; + const int prevent_endless = 10; + + i = 0; + buf.k = kbuf; + oldfs = get_fs(); + set_fs(KERNEL_DS); + do { + err = func(file, buf.u, size, pos); + if (err == -EINTR + && !au_wkq_test() + && fatal_signal_pending(current)) { + set_fs(oldfs); + err = xino_fwrite_wkq(func, file, kbuf, size, pos); + BUG_ON(err == -EINTR); + oldfs = get_fs(); + set_fs(KERNEL_DS); + } + } while (i++ < prevent_endless + && (err == -EAGAIN || err == -EINTR)); + set_fs(oldfs); + +#if 0 /* reserved for future use */ + if (err > 0) + fsnotify_modify(file->f_path.dentry); +#endif + + return err; +} + +struct do_xino_fwrite_args { + ssize_t *errp; + vfs_writef_t func; + struct file *file; + void *buf; + size_t size; + loff_t *pos; +}; + +static void call_do_xino_fwrite(void *args) +{ + struct do_xino_fwrite_args *a = args; + *a->errp = do_xino_fwrite(a->func, a->file, a->buf, a->size, a->pos); +} + +static ssize_t xino_fwrite_wkq(vfs_writef_t func, struct file *file, void *buf, + size_t size, loff_t *pos) +{ + ssize_t err; + int wkq_err; + struct do_xino_fwrite_args args = { + .errp = &err, + .func = func, + .file = file, + .buf = buf, + .size = size, + .pos = pos + }; + + /* + * it breaks RLIMIT_FSIZE and normal user's limit, + * users should care about quota and real 'filesystem full.' + */ + wkq_err = au_wkq_wait(call_do_xino_fwrite, &args); + if (unlikely(wkq_err)) + err = wkq_err; + + return err; +} + +ssize_t xino_fwrite(vfs_writef_t func, struct file *file, void *buf, + size_t size, loff_t *pos) +{ + ssize_t err; + + if (rlimit(RLIMIT_FSIZE) == RLIM_INFINITY) { + lockdep_off(); + err = do_xino_fwrite(func, file, buf, size, pos); + lockdep_on(); + } else + err = xino_fwrite_wkq(func, file, buf, size, pos); + + return err; +} + +/* ---------------------------------------------------------------------- */ + +/* + * create a new xinofile at the same place/path as @base_file. + */ +struct file *au_xino_create2(struct file *base_file, struct file *copy_src) +{ + struct file *file; + struct dentry *base, *parent; + struct inode *dir, *delegated; + struct qstr *name; + struct path path; + int err; + + base = base_file->f_path.dentry; + parent = base->d_parent; /* dir inode is locked */ + dir = d_inode(parent); + IMustLock(dir); + + file = ERR_PTR(-EINVAL); + name = &base->d_name; + path.dentry = vfsub_lookup_one_len(name->name, parent, name->len); + if (IS_ERR(path.dentry)) { + file = (void *)path.dentry; + pr_err("%pd lookup err %ld\n", + base, PTR_ERR(path.dentry)); + goto out; + } + + /* no need to mnt_want_write() since we call dentry_open() later */ + err = vfs_create(dir, path.dentry, S_IRUGO | S_IWUGO, NULL); + if (unlikely(err)) { + file = ERR_PTR(err); + pr_err("%pd create err %d\n", base, err); + goto out_dput; + } + + path.mnt = base_file->f_path.mnt; + file = vfsub_dentry_open(&path, + O_RDWR | O_CREAT | O_EXCL | O_LARGEFILE + /* | __FMODE_NONOTIFY */); + if (IS_ERR(file)) { + pr_err("%pd open err %ld\n", base, PTR_ERR(file)); + goto out_dput; + } + + delegated = NULL; + err = vfsub_unlink(dir, &file->f_path, &delegated, /*force*/0); + if (unlikely(err == -EWOULDBLOCK)) { + pr_warn("cannot retry for NFSv4 delegation" + " for an internal unlink\n"); + iput(delegated); + } + if (unlikely(err)) { + pr_err("%pd unlink err %d\n", base, err); + goto out_fput; + } + + if (copy_src) { + /* no one can touch copy_src xino */ + err = au_copy_file(file, copy_src, vfsub_f_size_read(copy_src)); + if (unlikely(err)) { + pr_err("%pd copy err %d\n", base, err); + goto out_fput; + } + } + goto out_dput; /* success */ + +out_fput: + fput(file); + file = ERR_PTR(err); +out_dput: + dput(path.dentry); +out: + return file; +} + +struct au_xino_lock_dir { + struct au_hinode *hdir; + struct dentry *parent; + struct inode *dir; +}; + +static void au_xino_lock_dir(struct super_block *sb, struct file *xino, + struct au_xino_lock_dir *ldir) +{ + aufs_bindex_t brid, bindex; + + ldir->hdir = NULL; + bindex = -1; + brid = au_xino_brid(sb); + if (brid >= 0) + bindex = au_br_index(sb, brid); + if (bindex >= 0) { + ldir->hdir = au_hi(d_inode(sb->s_root), bindex); + au_hn_inode_lock_nested(ldir->hdir, AuLsc_I_PARENT); + } else { + ldir->parent = dget_parent(xino->f_path.dentry); + ldir->dir = d_inode(ldir->parent); + inode_lock_nested(ldir->dir, AuLsc_I_PARENT); + } +} + +static void au_xino_unlock_dir(struct au_xino_lock_dir *ldir) +{ + if (ldir->hdir) + au_hn_inode_unlock(ldir->hdir); + else { + inode_unlock(ldir->dir); + dput(ldir->parent); + } +} + +/* ---------------------------------------------------------------------- */ + +/* trucate xino files asynchronously */ + +int au_xino_trunc(struct super_block *sb, aufs_bindex_t bindex) +{ + int err; + unsigned long jiffy; + blkcnt_t blocks; + aufs_bindex_t bi, bbot; + struct kstatfs *st; + struct au_branch *br; + struct file *new_xino, *file; + struct super_block *h_sb; + struct au_xino_lock_dir ldir; + + err = -ENOMEM; + st = kmalloc(sizeof(*st), GFP_NOFS); + if (unlikely(!st)) + goto out; + + err = -EINVAL; + bbot = au_sbbot(sb); + if (unlikely(bindex < 0 || bbot < bindex)) + goto out_st; + br = au_sbr(sb, bindex); + file = br->br_xino.xi_file; + if (!file) + goto out_st; + + err = vfs_statfs(&file->f_path, st); + if (unlikely(err)) + AuErr1("statfs err %d, ignored\n", err); + jiffy = jiffies; + blocks = file_inode(file)->i_blocks; + pr_info("begin truncating xino(b%d), ib%llu, %llu/%llu free blks\n", + bindex, (u64)blocks, st->f_bfree, st->f_blocks); + + au_xino_lock_dir(sb, file, &ldir); + /* mnt_want_write() is unnecessary here */ + new_xino = au_xino_create2(file, file); + au_xino_unlock_dir(&ldir); + err = PTR_ERR(new_xino); + if (IS_ERR(new_xino)) { + pr_err("err %d, ignored\n", err); + goto out_st; + } + err = 0; + fput(file); + br->br_xino.xi_file = new_xino; + + h_sb = au_br_sb(br); + for (bi = 0; bi <= bbot; bi++) { + if (unlikely(bi == bindex)) + continue; + br = au_sbr(sb, bi); + if (au_br_sb(br) != h_sb) + continue; + + fput(br->br_xino.xi_file); + br->br_xino.xi_file = new_xino; + get_file(new_xino); + } + + err = vfs_statfs(&new_xino->f_path, st); + if (!err) { + pr_info("end truncating xino(b%d), ib%llu, %llu/%llu free blks\n", + bindex, (u64)file_inode(new_xino)->i_blocks, + st->f_bfree, st->f_blocks); + if (file_inode(new_xino)->i_blocks < blocks) + au_sbi(sb)->si_xino_jiffy = jiffy; + } else + AuErr1("statfs err %d, ignored\n", err); + +out_st: + au_delayed_kfree(st); +out: + return err; +} + +struct xino_do_trunc_args { + struct super_block *sb; + struct au_branch *br; +}; + +static void xino_do_trunc(void *_args) +{ + struct xino_do_trunc_args *args = _args; + struct super_block *sb; + struct au_branch *br; + struct inode *dir; + int err; + aufs_bindex_t bindex; + + err = 0; + sb = args->sb; + dir = d_inode(sb->s_root); + br = args->br; + + si_noflush_write_lock(sb); + ii_read_lock_parent(dir); + bindex = au_br_index(sb, br->br_id); + err = au_xino_trunc(sb, bindex); + ii_read_unlock(dir); + if (unlikely(err)) + pr_warn("err b%d, (%d)\n", bindex, err); + atomic_dec(&br->br_xino_running); + au_br_put(br); + si_write_unlock(sb); + au_nwt_done(&au_sbi(sb)->si_nowait); + au_delayed_kfree(args); +} + +static int xino_trunc_test(struct super_block *sb, struct au_branch *br) +{ + int err; + struct kstatfs st; + struct au_sbinfo *sbinfo; + + /* todo: si_xino_expire and the ratio should be customizable */ + sbinfo = au_sbi(sb); + if (time_before(jiffies, + sbinfo->si_xino_jiffy + sbinfo->si_xino_expire)) + return 0; + + /* truncation border */ + err = vfs_statfs(&br->br_xino.xi_file->f_path, &st); + if (unlikely(err)) { + AuErr1("statfs err %d, ignored\n", err); + return 0; + } + if (div64_u64(st.f_bfree * 100, st.f_blocks) >= AUFS_XINO_DEF_TRUNC) + return 0; + + return 1; +} + +static void xino_try_trunc(struct super_block *sb, struct au_branch *br) +{ + struct xino_do_trunc_args *args; + int wkq_err; + + if (!xino_trunc_test(sb, br)) + return; + + if (atomic_inc_return(&br->br_xino_running) > 1) + goto out; + + /* lock and kfree() will be called in trunc_xino() */ + args = kmalloc(sizeof(*args), GFP_NOFS); + if (unlikely(!args)) { + AuErr1("no memory\n"); + goto out; + } + + au_br_get(br); + args->sb = sb; + args->br = br; + wkq_err = au_wkq_nowait(xino_do_trunc, args, sb, /*flags*/0); + if (!wkq_err) + return; /* success */ + + pr_err("wkq %d\n", wkq_err); + au_br_put(br); + au_delayed_kfree(args); + +out: + atomic_dec(&br->br_xino_running); +} + +/* ---------------------------------------------------------------------- */ + +static int au_xino_do_write(vfs_writef_t write, struct file *file, + ino_t h_ino, ino_t ino) +{ + loff_t pos; + ssize_t sz; + + pos = h_ino; + if (unlikely(au_loff_max / sizeof(ino) - 1 < pos)) { + AuIOErr1("too large hi%lu\n", (unsigned long)h_ino); + return -EFBIG; + } + pos *= sizeof(ino); + sz = xino_fwrite(write, file, &ino, sizeof(ino), &pos); + if (sz == sizeof(ino)) + return 0; /* success */ + + AuIOErr("write failed (%zd)\n", sz); + return -EIO; +} + +/* + * write @ino to the xinofile for the specified branch{@sb, @bindex} + * at the position of @h_ino. + * even if @ino is zero, it is written to the xinofile and means no entry. + * if the size of the xino file on a specific filesystem exceeds the watermark, + * try truncating it. + */ +int au_xino_write(struct super_block *sb, aufs_bindex_t bindex, ino_t h_ino, + ino_t ino) +{ + int err; + unsigned int mnt_flags; + struct au_branch *br; + + BUILD_BUG_ON(sizeof(long long) != sizeof(au_loff_max) + || ((loff_t)-1) > 0); + SiMustAnyLock(sb); + + mnt_flags = au_mntflags(sb); + if (!au_opt_test(mnt_flags, XINO)) + return 0; + + br = au_sbr(sb, bindex); + err = au_xino_do_write(au_sbi(sb)->si_xwrite, br->br_xino.xi_file, + h_ino, ino); + if (!err) { + if (au_opt_test(mnt_flags, TRUNC_XINO) + && au_test_fs_trunc_xino(au_br_sb(br))) + xino_try_trunc(sb, br); + return 0; /* success */ + } + + AuIOErr("write failed (%d)\n", err); + return -EIO; +} + +/* ---------------------------------------------------------------------- */ + +/* aufs inode number bitmap */ + +static const int page_bits = (int)PAGE_SIZE * BITS_PER_BYTE; +static ino_t xib_calc_ino(unsigned long pindex, int bit) +{ + ino_t ino; + + AuDebugOn(bit < 0 || page_bits <= bit); + ino = AUFS_FIRST_INO + pindex * page_bits + bit; + return ino; +} + +static void xib_calc_bit(ino_t ino, unsigned long *pindex, int *bit) +{ + AuDebugOn(ino < AUFS_FIRST_INO); + ino -= AUFS_FIRST_INO; + *pindex = ino / page_bits; + *bit = ino % page_bits; +} + +static int xib_pindex(struct super_block *sb, unsigned long pindex) +{ + int err; + loff_t pos; + ssize_t sz; + struct au_sbinfo *sbinfo; + struct file *xib; + unsigned long *p; + + sbinfo = au_sbi(sb); + MtxMustLock(&sbinfo->si_xib_mtx); + AuDebugOn(pindex > ULONG_MAX / PAGE_SIZE + || !au_opt_test(sbinfo->si_mntflags, XINO)); + + if (pindex == sbinfo->si_xib_last_pindex) + return 0; + + xib = sbinfo->si_xib; + p = sbinfo->si_xib_buf; + pos = sbinfo->si_xib_last_pindex; + pos *= PAGE_SIZE; + sz = xino_fwrite(sbinfo->si_xwrite, xib, p, PAGE_SIZE, &pos); + if (unlikely(sz != PAGE_SIZE)) + goto out; + + pos = pindex; + pos *= PAGE_SIZE; + if (vfsub_f_size_read(xib) >= pos + PAGE_SIZE) + sz = xino_fread(sbinfo->si_xread, xib, p, PAGE_SIZE, &pos); + else { + memset(p, 0, PAGE_SIZE); + sz = xino_fwrite(sbinfo->si_xwrite, xib, p, PAGE_SIZE, &pos); + } + if (sz == PAGE_SIZE) { + sbinfo->si_xib_last_pindex = pindex; + return 0; /* success */ + } + +out: + AuIOErr1("write failed (%zd)\n", sz); + err = sz; + if (sz >= 0) + err = -EIO; + return err; +} + +/* ---------------------------------------------------------------------- */ + +static void au_xib_clear_bit(struct inode *inode) +{ + int err, bit; + unsigned long pindex; + struct super_block *sb; + struct au_sbinfo *sbinfo; + + AuDebugOn(inode->i_nlink); + + sb = inode->i_sb; + xib_calc_bit(inode->i_ino, &pindex, &bit); + AuDebugOn(page_bits <= bit); + sbinfo = au_sbi(sb); + mutex_lock(&sbinfo->si_xib_mtx); + err = xib_pindex(sb, pindex); + if (!err) { + clear_bit(bit, sbinfo->si_xib_buf); + sbinfo->si_xib_next_bit = bit; + } + mutex_unlock(&sbinfo->si_xib_mtx); +} + +/* for s_op->delete_inode() */ +void au_xino_delete_inode(struct inode *inode, const int unlinked) +{ + int err; + unsigned int mnt_flags; + aufs_bindex_t bindex, bbot, bi; + unsigned char try_trunc; + struct au_iinfo *iinfo; + struct super_block *sb; + struct au_hinode *hi; + struct inode *h_inode; + struct au_branch *br; + vfs_writef_t xwrite; + + AuDebugOn(au_is_bad_inode(inode)); + + sb = inode->i_sb; + mnt_flags = au_mntflags(sb); + if (!au_opt_test(mnt_flags, XINO) + || inode->i_ino == AUFS_ROOT_INO) + return; + + if (unlinked) { + au_xigen_inc(inode); + au_xib_clear_bit(inode); + } + + iinfo = au_ii(inode); + bindex = iinfo->ii_btop; + if (bindex < 0) + return; + + xwrite = au_sbi(sb)->si_xwrite; + try_trunc = !!au_opt_test(mnt_flags, TRUNC_XINO); + hi = au_hinode(iinfo, bindex); + bbot = iinfo->ii_bbot; + for (; bindex <= bbot; bindex++, hi++) { + h_inode = hi->hi_inode; + if (!h_inode + || (!unlinked && h_inode->i_nlink)) + continue; + + /* inode may not be revalidated */ + bi = au_br_index(sb, hi->hi_id); + if (bi < 0) + continue; + + br = au_sbr(sb, bi); + err = au_xino_do_write(xwrite, br->br_xino.xi_file, + h_inode->i_ino, /*ino*/0); + if (!err && try_trunc + && au_test_fs_trunc_xino(au_br_sb(br))) + xino_try_trunc(sb, br); + } +} + +/* get an unused inode number from bitmap */ +ino_t au_xino_new_ino(struct super_block *sb) +{ + ino_t ino; + unsigned long *p, pindex, ul, pend; + struct au_sbinfo *sbinfo; + struct file *file; + int free_bit, err; + + if (!au_opt_test(au_mntflags(sb), XINO)) + return iunique(sb, AUFS_FIRST_INO); + + sbinfo = au_sbi(sb); + mutex_lock(&sbinfo->si_xib_mtx); + p = sbinfo->si_xib_buf; + free_bit = sbinfo->si_xib_next_bit; + if (free_bit < page_bits && !test_bit(free_bit, p)) + goto out; /* success */ + free_bit = find_first_zero_bit(p, page_bits); + if (free_bit < page_bits) + goto out; /* success */ + + pindex = sbinfo->si_xib_last_pindex; + for (ul = pindex - 1; ul < ULONG_MAX; ul--) { + err = xib_pindex(sb, ul); + if (unlikely(err)) + goto out_err; + free_bit = find_first_zero_bit(p, page_bits); + if (free_bit < page_bits) + goto out; /* success */ + } + + file = sbinfo->si_xib; + pend = vfsub_f_size_read(file) / PAGE_SIZE; + for (ul = pindex + 1; ul <= pend; ul++) { + err = xib_pindex(sb, ul); + if (unlikely(err)) + goto out_err; + free_bit = find_first_zero_bit(p, page_bits); + if (free_bit < page_bits) + goto out; /* success */ + } + BUG(); + +out: + set_bit(free_bit, p); + sbinfo->si_xib_next_bit = free_bit + 1; + pindex = sbinfo->si_xib_last_pindex; + mutex_unlock(&sbinfo->si_xib_mtx); + ino = xib_calc_ino(pindex, free_bit); + AuDbg("i%lu\n", (unsigned long)ino); + return ino; +out_err: + mutex_unlock(&sbinfo->si_xib_mtx); + AuDbg("i0\n"); + return 0; +} + +/* + * read @ino from xinofile for the specified branch{@sb, @bindex} + * at the position of @h_ino. + * if @ino does not exist and @do_new is true, get new one. + */ +int au_xino_read(struct super_block *sb, aufs_bindex_t bindex, ino_t h_ino, + ino_t *ino) +{ + int err; + ssize_t sz; + loff_t pos; + struct file *file; + struct au_sbinfo *sbinfo; + + *ino = 0; + if (!au_opt_test(au_mntflags(sb), XINO)) + return 0; /* no xino */ + + err = 0; + sbinfo = au_sbi(sb); + pos = h_ino; + if (unlikely(au_loff_max / sizeof(*ino) - 1 < pos)) { + AuIOErr1("too large hi%lu\n", (unsigned long)h_ino); + return -EFBIG; + } + pos *= sizeof(*ino); + + file = au_sbr(sb, bindex)->br_xino.xi_file; + if (vfsub_f_size_read(file) < pos + sizeof(*ino)) + return 0; /* no ino */ + + sz = xino_fread(sbinfo->si_xread, file, ino, sizeof(*ino), &pos); + if (sz == sizeof(*ino)) + return 0; /* success */ + + err = sz; + if (unlikely(sz >= 0)) { + err = -EIO; + AuIOErr("xino read error (%zd)\n", sz); + } + + return err; +} + +/* ---------------------------------------------------------------------- */ + +/* create and set a new xino file */ + +struct file *au_xino_create(struct super_block *sb, char *fname, int silent) +{ + struct file *file; + struct dentry *h_parent, *d; + struct inode *h_dir, *inode; + int err; + + /* + * at mount-time, and the xino file is the default path, + * hnotify is disabled so we have no notify events to ignore. + * when a user specified the xino, we cannot get au_hdir to be ignored. + */ + file = vfsub_filp_open(fname, O_RDWR | O_CREAT | O_EXCL | O_LARGEFILE + /* | __FMODE_NONOTIFY */, + S_IRUGO | S_IWUGO); + if (IS_ERR(file)) { + if (!silent) + pr_err("open %s(%ld)\n", fname, PTR_ERR(file)); + return file; + } + + /* keep file count */ + err = 0; + inode = file_inode(file); + h_parent = dget_parent(file->f_path.dentry); + h_dir = d_inode(h_parent); + inode_lock_nested(h_dir, AuLsc_I_PARENT); + /* mnt_want_write() is unnecessary here */ + /* no delegation since it is just created */ + if (inode->i_nlink) + err = vfsub_unlink(h_dir, &file->f_path, /*delegated*/NULL, + /*force*/0); + inode_unlock(h_dir); + dput(h_parent); + if (unlikely(err)) { + if (!silent) + pr_err("unlink %s(%d)\n", fname, err); + goto out; + } + + err = -EINVAL; + d = file->f_path.dentry; + if (unlikely(sb == d->d_sb)) { + if (!silent) + pr_err("%s must be outside\n", fname); + goto out; + } + if (unlikely(au_test_fs_bad_xino(d->d_sb))) { + if (!silent) + pr_err("xino doesn't support %s(%s)\n", + fname, au_sbtype(d->d_sb)); + goto out; + } + return file; /* success */ + +out: + fput(file); + file = ERR_PTR(err); + return file; +} + +/* + * find another branch who is on the same filesystem of the specified + * branch{@btgt}. search until @bbot. + */ +static int is_sb_shared(struct super_block *sb, aufs_bindex_t btgt, + aufs_bindex_t bbot) +{ + aufs_bindex_t bindex; + struct super_block *tgt_sb = au_sbr_sb(sb, btgt); + + for (bindex = 0; bindex < btgt; bindex++) + if (unlikely(tgt_sb == au_sbr_sb(sb, bindex))) + return bindex; + for (bindex++; bindex <= bbot; bindex++) + if (unlikely(tgt_sb == au_sbr_sb(sb, bindex))) + return bindex; + return -1; +} + +/* ---------------------------------------------------------------------- */ + +/* + * initialize the xinofile for the specified branch @br + * at the place/path where @base_file indicates. + * test whether another branch is on the same filesystem or not, + * if @do_test is true. + */ +int au_xino_br(struct super_block *sb, struct au_branch *br, ino_t h_ino, + struct file *base_file, int do_test) +{ + int err; + ino_t ino; + aufs_bindex_t bbot, bindex; + struct au_branch *shared_br, *b; + struct file *file; + struct super_block *tgt_sb; + + shared_br = NULL; + bbot = au_sbbot(sb); + if (do_test) { + tgt_sb = au_br_sb(br); + for (bindex = 0; bindex <= bbot; bindex++) { + b = au_sbr(sb, bindex); + if (tgt_sb == au_br_sb(b)) { + shared_br = b; + break; + } + } + } + + if (!shared_br || !shared_br->br_xino.xi_file) { + struct au_xino_lock_dir ldir; + + au_xino_lock_dir(sb, base_file, &ldir); + /* mnt_want_write() is unnecessary here */ + file = au_xino_create2(base_file, NULL); + au_xino_unlock_dir(&ldir); + err = PTR_ERR(file); + if (IS_ERR(file)) + goto out; + br->br_xino.xi_file = file; + } else { + br->br_xino.xi_file = shared_br->br_xino.xi_file; + get_file(br->br_xino.xi_file); + } + + ino = AUFS_ROOT_INO; + err = au_xino_do_write(au_sbi(sb)->si_xwrite, br->br_xino.xi_file, + h_ino, ino); + if (unlikely(err)) { + fput(br->br_xino.xi_file); + br->br_xino.xi_file = NULL; + } + +out: + return err; +} + +/* ---------------------------------------------------------------------- */ + +/* trucate a xino bitmap file */ + +/* todo: slow */ +static int do_xib_restore(struct super_block *sb, struct file *file, void *page) +{ + int err, bit; + ssize_t sz; + unsigned long pindex; + loff_t pos, pend; + struct au_sbinfo *sbinfo; + vfs_readf_t func; + ino_t *ino; + unsigned long *p; + + err = 0; + sbinfo = au_sbi(sb); + MtxMustLock(&sbinfo->si_xib_mtx); + p = sbinfo->si_xib_buf; + func = sbinfo->si_xread; + pend = vfsub_f_size_read(file); + pos = 0; + while (pos < pend) { + sz = xino_fread(func, file, page, PAGE_SIZE, &pos); + err = sz; + if (unlikely(sz <= 0)) + goto out; + + err = 0; + for (ino = page; sz > 0; ino++, sz -= sizeof(ino)) { + if (unlikely(*ino < AUFS_FIRST_INO)) + continue; + + xib_calc_bit(*ino, &pindex, &bit); + AuDebugOn(page_bits <= bit); + err = xib_pindex(sb, pindex); + if (!err) + set_bit(bit, p); + else + goto out; + } + } + +out: + return err; +} + +static int xib_restore(struct super_block *sb) +{ + int err; + aufs_bindex_t bindex, bbot; + void *page; + + err = -ENOMEM; + page = (void *)__get_free_page(GFP_NOFS); + if (unlikely(!page)) + goto out; + + err = 0; + bbot = au_sbbot(sb); + for (bindex = 0; !err && bindex <= bbot; bindex++) + if (!bindex || is_sb_shared(sb, bindex, bindex - 1) < 0) + err = do_xib_restore + (sb, au_sbr(sb, bindex)->br_xino.xi_file, page); + else + AuDbg("b%d\n", bindex); + au_delayed_free_page((unsigned long)page); + +out: + return err; +} + +int au_xib_trunc(struct super_block *sb) +{ + int err; + ssize_t sz; + loff_t pos; + struct au_xino_lock_dir ldir; + struct au_sbinfo *sbinfo; + unsigned long *p; + struct file *file; + + SiMustWriteLock(sb); + + err = 0; + sbinfo = au_sbi(sb); + if (!au_opt_test(sbinfo->si_mntflags, XINO)) + goto out; + + file = sbinfo->si_xib; + if (vfsub_f_size_read(file) <= PAGE_SIZE) + goto out; + + au_xino_lock_dir(sb, file, &ldir); + /* mnt_want_write() is unnecessary here */ + file = au_xino_create2(sbinfo->si_xib, NULL); + au_xino_unlock_dir(&ldir); + err = PTR_ERR(file); + if (IS_ERR(file)) + goto out; + fput(sbinfo->si_xib); + sbinfo->si_xib = file; + + p = sbinfo->si_xib_buf; + memset(p, 0, PAGE_SIZE); + pos = 0; + sz = xino_fwrite(sbinfo->si_xwrite, sbinfo->si_xib, p, PAGE_SIZE, &pos); + if (unlikely(sz != PAGE_SIZE)) { + err = sz; + AuIOErr("err %d\n", err); + if (sz >= 0) + err = -EIO; + goto out; + } + + mutex_lock(&sbinfo->si_xib_mtx); + /* mnt_want_write() is unnecessary here */ + err = xib_restore(sb); + mutex_unlock(&sbinfo->si_xib_mtx); + +out: + return err; +} + +/* ---------------------------------------------------------------------- */ + +/* + * xino mount option handlers + */ + +/* xino bitmap */ +static void xino_clear_xib(struct super_block *sb) +{ + struct au_sbinfo *sbinfo; + + SiMustWriteLock(sb); + + sbinfo = au_sbi(sb); + sbinfo->si_xread = NULL; + sbinfo->si_xwrite = NULL; + if (sbinfo->si_xib) + fput(sbinfo->si_xib); + sbinfo->si_xib = NULL; + if (sbinfo->si_xib_buf) + au_delayed_free_page((unsigned long)sbinfo->si_xib_buf); + sbinfo->si_xib_buf = NULL; +} + +static int au_xino_set_xib(struct super_block *sb, struct file *base) +{ + int err; + loff_t pos; + struct au_sbinfo *sbinfo; + struct file *file; + + SiMustWriteLock(sb); + + sbinfo = au_sbi(sb); + file = au_xino_create2(base, sbinfo->si_xib); + err = PTR_ERR(file); + if (IS_ERR(file)) + goto out; + if (sbinfo->si_xib) + fput(sbinfo->si_xib); + sbinfo->si_xib = file; + sbinfo->si_xread = vfs_readf(file); + sbinfo->si_xwrite = vfs_writef(file); + + err = -ENOMEM; + if (!sbinfo->si_xib_buf) + sbinfo->si_xib_buf = (void *)get_zeroed_page(GFP_NOFS); + if (unlikely(!sbinfo->si_xib_buf)) + goto out_unset; + + sbinfo->si_xib_last_pindex = 0; + sbinfo->si_xib_next_bit = 0; + if (vfsub_f_size_read(file) < PAGE_SIZE) { + pos = 0; + err = xino_fwrite(sbinfo->si_xwrite, file, sbinfo->si_xib_buf, + PAGE_SIZE, &pos); + if (unlikely(err != PAGE_SIZE)) + goto out_free; + } + err = 0; + goto out; /* success */ + +out_free: + if (sbinfo->si_xib_buf) + au_delayed_free_page((unsigned long)sbinfo->si_xib_buf); + sbinfo->si_xib_buf = NULL; + if (err >= 0) + err = -EIO; +out_unset: + fput(sbinfo->si_xib); + sbinfo->si_xib = NULL; + sbinfo->si_xread = NULL; + sbinfo->si_xwrite = NULL; +out: + return err; +} + +/* xino for each branch */ +static void xino_clear_br(struct super_block *sb) +{ + aufs_bindex_t bindex, bbot; + struct au_branch *br; + + bbot = au_sbbot(sb); + for (bindex = 0; bindex <= bbot; bindex++) { + br = au_sbr(sb, bindex); + if (!br || !br->br_xino.xi_file) + continue; + + fput(br->br_xino.xi_file); + br->br_xino.xi_file = NULL; + } +} + +static int au_xino_set_br(struct super_block *sb, struct file *base) +{ + int err; + ino_t ino; + aufs_bindex_t bindex, bbot, bshared; + struct { + struct file *old, *new; + } *fpair, *p; + struct au_branch *br; + struct inode *inode; + vfs_writef_t writef; + + SiMustWriteLock(sb); + + err = -ENOMEM; + bbot = au_sbbot(sb); + fpair = kcalloc(bbot + 1, sizeof(*fpair), GFP_NOFS); + if (unlikely(!fpair)) + goto out; + + inode = d_inode(sb->s_root); + ino = AUFS_ROOT_INO; + writef = au_sbi(sb)->si_xwrite; + for (bindex = 0, p = fpair; bindex <= bbot; bindex++, p++) { + bshared = is_sb_shared(sb, bindex, bindex - 1); + if (bshared >= 0) { + /* shared xino */ + *p = fpair[bshared]; + get_file(p->new); + } + + if (!p->new) { + /* new xino */ + br = au_sbr(sb, bindex); + p->old = br->br_xino.xi_file; + p->new = au_xino_create2(base, br->br_xino.xi_file); + err = PTR_ERR(p->new); + if (IS_ERR(p->new)) { + p->new = NULL; + goto out_pair; + } + } + + err = au_xino_do_write(writef, p->new, + au_h_iptr(inode, bindex)->i_ino, ino); + if (unlikely(err)) + goto out_pair; + } + + for (bindex = 0, p = fpair; bindex <= bbot; bindex++, p++) { + br = au_sbr(sb, bindex); + if (br->br_xino.xi_file) + fput(br->br_xino.xi_file); + get_file(p->new); + br->br_xino.xi_file = p->new; + } + +out_pair: + for (bindex = 0, p = fpair; bindex <= bbot; bindex++, p++) + if (p->new) + fput(p->new); + else + break; + au_delayed_kfree(fpair); +out: + return err; +} + +void au_xino_clr(struct super_block *sb) +{ + struct au_sbinfo *sbinfo; + + au_xigen_clr(sb); + xino_clear_xib(sb); + xino_clear_br(sb); + sbinfo = au_sbi(sb); + /* lvalue, do not call au_mntflags() */ + au_opt_clr(sbinfo->si_mntflags, XINO); +} + +int au_xino_set(struct super_block *sb, struct au_opt_xino *xino, int remount) +{ + int err, skip; + struct dentry *parent, *cur_parent; + struct qstr *dname, *cur_name; + struct file *cur_xino; + struct inode *dir; + struct au_sbinfo *sbinfo; + + SiMustWriteLock(sb); + + err = 0; + sbinfo = au_sbi(sb); + parent = dget_parent(xino->file->f_path.dentry); + if (remount) { + skip = 0; + dname = &xino->file->f_path.dentry->d_name; + cur_xino = sbinfo->si_xib; + if (cur_xino) { + cur_parent = dget_parent(cur_xino->f_path.dentry); + cur_name = &cur_xino->f_path.dentry->d_name; + skip = (cur_parent == parent + && au_qstreq(dname, cur_name)); + dput(cur_parent); + } + if (skip) + goto out; + } + + au_opt_set(sbinfo->si_mntflags, XINO); + dir = d_inode(parent); + inode_lock_nested(dir, AuLsc_I_PARENT); + /* mnt_want_write() is unnecessary here */ + err = au_xino_set_xib(sb, xino->file); + if (!err) + err = au_xigen_set(sb, xino->file); + if (!err) + err = au_xino_set_br(sb, xino->file); + inode_unlock(dir); + if (!err) + goto out; /* success */ + + /* reset all */ + AuIOErr("failed creating xino(%d).\n", err); + au_xigen_clr(sb); + xino_clear_xib(sb); + +out: + dput(parent); + return err; +} + +/* ---------------------------------------------------------------------- */ + +/* + * create a xinofile at the default place/path. + */ +struct file *au_xino_def(struct super_block *sb) +{ + struct file *file; + char *page, *p; + struct au_branch *br; + struct super_block *h_sb; + struct path path; + aufs_bindex_t bbot, bindex, bwr; + + br = NULL; + bbot = au_sbbot(sb); + bwr = -1; + for (bindex = 0; bindex <= bbot; bindex++) { + br = au_sbr(sb, bindex); + if (au_br_writable(br->br_perm) + && !au_test_fs_bad_xino(au_br_sb(br))) { + bwr = bindex; + break; + } + } + + if (bwr >= 0) { + file = ERR_PTR(-ENOMEM); + page = (void *)__get_free_page(GFP_NOFS); + if (unlikely(!page)) + goto out; + path.mnt = au_br_mnt(br); + path.dentry = au_h_dptr(sb->s_root, bwr); + p = d_path(&path, page, PATH_MAX - sizeof(AUFS_XINO_FNAME)); + file = (void *)p; + if (!IS_ERR(p)) { + strcat(p, "/" AUFS_XINO_FNAME); + AuDbg("%s\n", p); + file = au_xino_create(sb, p, /*silent*/0); + if (!IS_ERR(file)) + au_xino_brid_set(sb, br->br_id); + } + au_delayed_free_page((unsigned long)page); + } else { + file = au_xino_create(sb, AUFS_XINO_DEFPATH, /*silent*/0); + if (IS_ERR(file)) + goto out; + h_sb = file->f_path.dentry->d_sb; + if (unlikely(au_test_fs_bad_xino(h_sb))) { + pr_err("xino doesn't support %s(%s)\n", + AUFS_XINO_DEFPATH, au_sbtype(h_sb)); + fput(file); + file = ERR_PTR(-EINVAL); + } + if (!IS_ERR(file)) + au_xino_brid_set(sb, -1); + } + +out: + return file; +} + +/* ---------------------------------------------------------------------- */ + +int au_xino_path(struct seq_file *seq, struct file *file) +{ + int err; + + err = au_seq_path(seq, &file->f_path); + if (unlikely(err)) + goto out; + +#define Deleted "\\040(deleted)" + seq->count -= sizeof(Deleted) - 1; + AuDebugOn(memcmp(seq->buf + seq->count, Deleted, + sizeof(Deleted) - 1)); +#undef Deleted + +out: + return err; +} --- linux-4.8.0.orig/fs/autofs4/waitq.c +++ linux-4.8.0/fs/autofs4/waitq.c @@ -431,8 +431,8 @@ memcpy(&wq->name, &qstr, sizeof(struct qstr)); wq->dev = autofs4_get_dev(sbi); wq->ino = autofs4_get_ino(sbi); - wq->uid = current_uid(); - wq->gid = current_gid(); + wq->uid = current_cred()->uid; + wq->gid = current_cred()->gid; wq->pid = pid; wq->tgid = tgid; wq->status = -EINTR; /* Status return if interrupted */ --- linux-4.8.0.orig/fs/block_dev.c +++ linux-4.8.0/fs/block_dev.c @@ -837,7 +837,7 @@ return true; /* already a holder */ else if (bdev->bd_holder != NULL) return false; /* held by someone else */ - else if (bdev->bd_contains == bdev) + else if (whole == bdev) return true; /* is a whole device which isn't held */ else if (whole->bd_holder == bd_may_claim) @@ -1496,9 +1496,14 @@ void *holder) { struct block_device *bdev; + int perm = 0; int err; - bdev = lookup_bdev(path); + if (mode & FMODE_READ) + perm |= MAY_READ; + if (mode & FMODE_WRITE) + perm |= MAY_WRITE; + bdev = lookup_bdev(path, perm); if (IS_ERR(bdev)) return bdev; @@ -1577,6 +1582,20 @@ if (bdev == NULL) return -ENOMEM; + /* + * A negative i_writecount for bdev->bd_inode means that the bdev + * or one of its paritions is mounted in a user namespace. Deny + * writing for non-root in this case, otherwise an unprivileged + * user can attack the kernel by modifying the backing store of a + * mounted filesystem. + */ + if ((filp->f_mode & FMODE_WRITE) && + !file_ns_capable(filp, &init_user_ns, CAP_SYS_ADMIN) && + !atomic_inc_unless_negative(&bdev->bd_inode->i_writecount)) { + bdput(bdev); + return -EBUSY; + } + filp->f_mapping = bdev->bd_inode->i_mapping; return blkdev_get(bdev, filp->f_mode, filp); @@ -1678,6 +1697,9 @@ static int blkdev_close(struct inode * inode, struct file * filp) { struct block_device *bdev = I_BDEV(bdev_file_inode(filp)); + if (filp->f_mode & FMODE_WRITE && + !file_ns_capable(filp, &init_user_ns, CAP_SYS_ADMIN)) + atomic_dec(&bdev->bd_inode->i_writecount); blkdev_put(bdev, filp->f_mode); return 0; } @@ -1818,12 +1840,14 @@ /** * lookup_bdev - lookup a struct block_device by name * @pathname: special file representing the block device + * @mask: rights to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC) * * Get a reference to the blockdevice at @pathname in the current * namespace if possible and return it. Return ERR_PTR(error) - * otherwise. + * otherwise. If @mask is non-zero, check for access rights to the + * inode at @pathname. */ -struct block_device *lookup_bdev(const char *pathname) +struct block_device *lookup_bdev(const char *pathname, int mask) { struct block_device *bdev; struct inode *inode; @@ -1838,6 +1862,11 @@ return ERR_PTR(error); inode = d_backing_inode(path.dentry); + if (mask != 0 && !capable(CAP_SYS_ADMIN)) { + error = __inode_permission(inode, mask); + if (error) + goto fail; + } error = -ENOTBLK; if (!S_ISBLK(inode->i_mode)) goto fail; @@ -1885,6 +1914,7 @@ spin_lock(&blockdev_superblock->s_inode_list_lock); list_for_each_entry(inode, &blockdev_superblock->s_inodes, i_sb_list) { struct address_space *mapping = inode->i_mapping; + struct block_device *bdev; spin_lock(&inode->i_lock); if (inode->i_state & (I_FREEING|I_WILL_FREE|I_NEW) || @@ -1905,8 +1935,12 @@ */ iput(old_inode); old_inode = inode; + bdev = I_BDEV(inode); - func(I_BDEV(inode), arg); + mutex_lock(&bdev->bd_mutex); + if (bdev->bd_openers) + func(bdev, arg); + mutex_unlock(&bdev->bd_mutex); spin_lock(&blockdev_superblock->s_inode_list_lock); } --- linux-4.8.0.orig/fs/btrfs/acl.c +++ linux-4.8.0/fs/btrfs/acl.c @@ -79,11 +79,9 @@ case ACL_TYPE_ACCESS: name = XATTR_NAME_POSIX_ACL_ACCESS; if (acl) { - ret = posix_acl_equiv_mode(acl, &inode->i_mode); - if (ret < 0) + ret = posix_acl_update_mode(inode, &inode->i_mode, &acl); + if (ret) return ret; - if (ret == 0) - acl = NULL; } ret = 0; break; --- linux-4.8.0.orig/fs/btrfs/async-thread.c +++ linux-4.8.0/fs/btrfs/async-thread.c @@ -86,6 +86,20 @@ return work->wq->fs_info; } +bool btrfs_workqueue_normal_congested(struct btrfs_workqueue *wq) +{ + /* + * We could compare wq->normal->pending with num_online_cpus() + * to support "thresh == NO_THRESHOLD" case, but it requires + * moving up atomic_inc/dec in thresh_queue/exec_hook. Let's + * postpone it until someone needs the support of that case. + */ + if (wq->normal->thresh == NO_THRESHOLD) + return false; + + return atomic_read(&wq->normal->pending) > wq->normal->thresh * 2; +} + BTRFS_WORK_HELPER(worker_helper); BTRFS_WORK_HELPER(delalloc_helper); BTRFS_WORK_HELPER(flush_delalloc_helper); --- linux-4.8.0.orig/fs/btrfs/async-thread.h +++ linux-4.8.0/fs/btrfs/async-thread.h @@ -84,4 +84,5 @@ void btrfs_set_work_high_priority(struct btrfs_work *work); struct btrfs_fs_info *btrfs_work_owner(struct btrfs_work *work); struct btrfs_fs_info *btrfs_workqueue_owner(struct __btrfs_workqueue *wq); +bool btrfs_workqueue_normal_congested(struct btrfs_workqueue *wq); #endif --- linux-4.8.0.orig/fs/btrfs/compression.c +++ linux-4.8.0/fs/btrfs/compression.c @@ -698,7 +698,7 @@ ret = btrfs_map_bio(root, comp_bio, mirror_num, 0); if (ret) { - bio->bi_error = ret; + comp_bio->bi_error = ret; bio_endio(comp_bio); } @@ -728,7 +728,7 @@ ret = btrfs_map_bio(root, comp_bio, mirror_num, 0); if (ret) { - bio->bi_error = ret; + comp_bio->bi_error = ret; bio_endio(comp_bio); } --- linux-4.8.0.orig/fs/btrfs/ctree.h +++ linux-4.8.0/fs/btrfs/ctree.h @@ -251,7 +251,8 @@ #define BTRFS_FEATURE_COMPAT_SAFE_CLEAR 0ULL #define BTRFS_FEATURE_COMPAT_RO_SUPP \ - (BTRFS_FEATURE_COMPAT_RO_FREE_SPACE_TREE) + (BTRFS_FEATURE_COMPAT_RO_FREE_SPACE_TREE | \ + BTRFS_FEATURE_COMPAT_RO_FREE_SPACE_TREE_VALID) #define BTRFS_FEATURE_COMPAT_RO_SAFE_SET 0ULL #define BTRFS_FEATURE_COMPAT_RO_SAFE_CLEAR 0ULL @@ -2209,6 +2210,8 @@ cpu->target = le64_to_cpu(disk->target); cpu->flags = le64_to_cpu(disk->flags); cpu->limit = le64_to_cpu(disk->limit); + cpu->stripes_min = le32_to_cpu(disk->stripes_min); + cpu->stripes_max = le32_to_cpu(disk->stripes_max); } static inline void @@ -2227,6 +2230,8 @@ disk->target = cpu_to_le64(cpu->target); disk->flags = cpu_to_le64(cpu->flags); disk->limit = cpu_to_le64(cpu->limit); + disk->stripes_min = cpu_to_le32(cpu->stripes_min); + disk->stripes_max = cpu_to_le32(cpu->stripes_max); } /* struct btrfs_super_block */ --- linux-4.8.0.orig/fs/btrfs/delayed-inode.c +++ linux-4.8.0/fs/btrfs/delayed-inode.c @@ -1356,7 +1356,8 @@ total_done++; btrfs_release_prepared_delayed_node(delayed_node); - if (async_work->nr == 0 || total_done < async_work->nr) + if ((async_work->nr == 0 && total_done < BTRFS_DELAYED_WRITEBACK) || + total_done < async_work->nr) goto again; free_path: @@ -1372,7 +1373,8 @@ { struct btrfs_async_delayed_work *async_work; - if (atomic_read(&delayed_root->items) < BTRFS_DELAYED_BACKGROUND) + if (atomic_read(&delayed_root->items) < BTRFS_DELAYED_BACKGROUND || + btrfs_workqueue_normal_congested(fs_info->delayed_workers)) return 0; async_work = kmalloc(sizeof(*async_work), GFP_NOFS); --- linux-4.8.0.orig/fs/btrfs/disk-io.c +++ linux-4.8.0/fs/btrfs/disk-io.c @@ -559,7 +559,15 @@ u32 nritems = btrfs_header_nritems(leaf); int slot; - if (nritems == 0) { + /* + * Extent buffers from a relocation tree have a owner field that + * corresponds to the subvolume tree they are based on. So just from an + * extent buffer alone we can not find out what is the id of the + * corresponding subvolume tree, so we can not figure out if the extent + * buffer corresponds to the root of the relocation tree or not. So skip + * this check for relocation trees. + */ + if (nritems == 0 && !btrfs_header_flag(leaf, BTRFS_HEADER_FLAG_RELOC)) { struct btrfs_root *check_root; key.objectid = btrfs_header_owner(leaf); @@ -572,17 +580,24 @@ * open_ctree() some roots has not yet been set up. */ if (!IS_ERR_OR_NULL(check_root)) { + struct extent_buffer *eb; + + eb = btrfs_root_node(check_root); /* if leaf is the root, then it's fine */ - if (leaf->start != - btrfs_root_bytenr(&check_root->root_item)) { + if (leaf != eb) { CORRUPT("non-root leaf's nritems is 0", - leaf, root, 0); + leaf, check_root, 0); + free_extent_buffer(eb); return -EIO; } + free_extent_buffer(eb); } return 0; } + if (nritems == 0) + return 0; + /* Check the 0 item */ if (btrfs_item_offset_nr(leaf, 0) + btrfs_item_size_nr(leaf, 0) != BTRFS_LEAF_DATA_SIZE(root)) { @@ -2566,6 +2581,7 @@ int num_backups_tried = 0; int backup_index = 0; int max_active; + int clear_free_space_tree = 0; tree_root = fs_info->tree_root = btrfs_alloc_root(fs_info, GFP_KERNEL); chunk_root = fs_info->chunk_root = btrfs_alloc_root(fs_info, GFP_KERNEL); @@ -3129,6 +3145,26 @@ if (sb->s_flags & MS_RDONLY) return 0; + if (btrfs_test_opt(fs_info, CLEAR_CACHE) && + btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE)) { + clear_free_space_tree = 1; + } else if (btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE) && + !btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE_VALID)) { + btrfs_warn(fs_info, "free space tree is invalid"); + clear_free_space_tree = 1; + } + + if (clear_free_space_tree) { + btrfs_info(fs_info, "clearing free space tree"); + ret = btrfs_clear_free_space_tree(fs_info); + if (ret) { + btrfs_warn(fs_info, + "failed to clear free space tree: %d", ret); + close_ctree(tree_root); + return ret; + } + } + if (btrfs_test_opt(tree_root->fs_info, FREE_SPACE_TREE) && !btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE)) { btrfs_info(fs_info, "creating free space tree"); @@ -3166,18 +3202,6 @@ btrfs_qgroup_rescan_resume(fs_info); - if (btrfs_test_opt(tree_root->fs_info, CLEAR_CACHE) && - btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE)) { - btrfs_info(fs_info, "clearing free space tree"); - ret = btrfs_clear_free_space_tree(fs_info); - if (ret) { - btrfs_warn(fs_info, - "failed to clear free space tree: %d", ret); - close_ctree(tree_root); - return ret; - } - } - if (!fs_info->uuid_root) { btrfs_info(fs_info, "creating UUID tree"); ret = btrfs_create_uuid_tree(fs_info); --- linux-4.8.0.orig/fs/btrfs/extent-tree.c +++ linux-4.8.0/fs/btrfs/extent-tree.c @@ -8884,14 +8884,13 @@ ret = btrfs_lookup_extent_info(trans, root, bytenr, level - 1, 1, &wc->refs[level - 1], &wc->flags[level - 1]); - if (ret < 0) { - btrfs_tree_unlock(next); - return ret; - } + if (ret < 0) + goto out_unlock; if (unlikely(wc->refs[level - 1] == 0)) { btrfs_err(root->fs_info, "Missing references."); - BUG(); + ret = -EIO; + goto out_unlock; } *lookup_info = 0; @@ -8943,7 +8942,12 @@ } level--; - BUG_ON(level != btrfs_header_level(next)); + ASSERT(level == btrfs_header_level(next)); + if (level != btrfs_header_level(next)) { + btrfs_err(root->fs_info, "mismatched level"); + ret = -EIO; + goto out_unlock; + } path->nodes[level] = next; path->slots[level] = 0; path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING; @@ -8958,8 +8962,15 @@ if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) { parent = path->nodes[level]->start; } else { - BUG_ON(root->root_key.objectid != + ASSERT(root->root_key.objectid == btrfs_header_owner(path->nodes[level])); + if (root->root_key.objectid != + btrfs_header_owner(path->nodes[level])) { + btrfs_err(root->fs_info, + "mismatched block owner"); + ret = -EIO; + goto out_unlock; + } parent = 0; } @@ -8976,12 +8987,18 @@ } ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent, root->root_key.objectid, level - 1, 0); - BUG_ON(ret); /* -ENOMEM */ + if (ret) + goto out_unlock; } + + *lookup_info = 1; + ret = 1; + +out_unlock: btrfs_tree_unlock(next); free_extent_buffer(next); - *lookup_info = 1; - return 1; + + return ret; } /* @@ -10127,6 +10144,11 @@ struct extent_buffer *leaf; int need_clear = 0; u64 cache_gen; + u64 feature; + int mixed; + + feature = btrfs_super_incompat_flags(info->super_copy); + mixed = !!(feature & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS); root = info->extent_root; key.objectid = 0; @@ -10180,6 +10202,15 @@ btrfs_item_ptr_offset(leaf, path->slots[0]), sizeof(cache->item)); cache->flags = btrfs_block_group_flags(&cache->item); + if (!mixed && + ((cache->flags & BTRFS_BLOCK_GROUP_METADATA) && + (cache->flags & BTRFS_BLOCK_GROUP_DATA))) { + btrfs_err(info, +"bg %llu is a mixed block group but filesystem hasn't enabled mixed block groups", + cache->key.objectid); + ret = -EINVAL; + goto error; + } key.objectid = found_key.objectid + found_key.offset; btrfs_release_path(path); --- linux-4.8.0.orig/fs/btrfs/extent_io.c +++ linux-4.8.0/fs/btrfs/extent_io.c @@ -5209,11 +5209,20 @@ lock_page(page); } locked_pages++; + } + /* + * We need to firstly lock all pages to make sure that + * the uptodate bit of our pages won't be affected by + * clear_extent_buffer_uptodate(). + */ + for (i = start_i; i < num_pages; i++) { + page = eb->pages[i]; if (!PageUptodate(page)) { num_reads++; all_uptodate = 0; } } + if (all_uptodate) { if (start_i == 0) set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags); @@ -5524,17 +5533,45 @@ } } -/* - * The extent buffer bitmap operations are done with byte granularity because - * bitmap items are not guaranteed to be aligned to a word and therefore a - * single word in a bitmap may straddle two pages in the extent buffer. - */ -#define BIT_BYTE(nr) ((nr) / BITS_PER_BYTE) -#define BYTE_MASK ((1 << BITS_PER_BYTE) - 1) -#define BITMAP_FIRST_BYTE_MASK(start) \ - ((BYTE_MASK << ((start) & (BITS_PER_BYTE - 1))) & BYTE_MASK) -#define BITMAP_LAST_BYTE_MASK(nbits) \ - (BYTE_MASK >> (-(nbits) & (BITS_PER_BYTE - 1))) +void le_bitmap_set(u8 *map, unsigned int start, int len) +{ + u8 *p = map + BIT_BYTE(start); + const unsigned int size = start + len; + int bits_to_set = BITS_PER_BYTE - (start % BITS_PER_BYTE); + u8 mask_to_set = BITMAP_FIRST_BYTE_MASK(start); + + while (len - bits_to_set >= 0) { + *p |= mask_to_set; + len -= bits_to_set; + bits_to_set = BITS_PER_BYTE; + mask_to_set = ~(u8)0; + p++; + } + if (len) { + mask_to_set &= BITMAP_LAST_BYTE_MASK(size); + *p |= mask_to_set; + } +} + +void le_bitmap_clear(u8 *map, unsigned int start, int len) +{ + u8 *p = map + BIT_BYTE(start); + const unsigned int size = start + len; + int bits_to_clear = BITS_PER_BYTE - (start % BITS_PER_BYTE); + u8 mask_to_clear = BITMAP_FIRST_BYTE_MASK(start); + + while (len - bits_to_clear >= 0) { + *p &= ~mask_to_clear; + len -= bits_to_clear; + bits_to_clear = BITS_PER_BYTE; + mask_to_clear = ~(u8)0; + p++; + } + if (len) { + mask_to_clear &= BITMAP_LAST_BYTE_MASK(size); + *p &= ~mask_to_clear; + } +} /* * eb_bitmap_offset() - calculate the page and offset of the byte containing the @@ -5578,7 +5615,7 @@ int extent_buffer_test_bit(struct extent_buffer *eb, unsigned long start, unsigned long nr) { - char *kaddr; + u8 *kaddr; struct page *page; unsigned long i; size_t offset; @@ -5600,13 +5637,13 @@ void extent_buffer_bitmap_set(struct extent_buffer *eb, unsigned long start, unsigned long pos, unsigned long len) { - char *kaddr; + u8 *kaddr; struct page *page; unsigned long i; size_t offset; const unsigned int size = pos + len; int bits_to_set = BITS_PER_BYTE - (pos % BITS_PER_BYTE); - unsigned int mask_to_set = BITMAP_FIRST_BYTE_MASK(pos); + u8 mask_to_set = BITMAP_FIRST_BYTE_MASK(pos); eb_bitmap_offset(eb, start, pos, &i, &offset); page = eb->pages[i]; @@ -5617,7 +5654,7 @@ kaddr[offset] |= mask_to_set; len -= bits_to_set; bits_to_set = BITS_PER_BYTE; - mask_to_set = ~0U; + mask_to_set = ~(u8)0; if (++offset >= PAGE_SIZE && len > 0) { offset = 0; page = eb->pages[++i]; @@ -5642,13 +5679,13 @@ void extent_buffer_bitmap_clear(struct extent_buffer *eb, unsigned long start, unsigned long pos, unsigned long len) { - char *kaddr; + u8 *kaddr; struct page *page; unsigned long i; size_t offset; const unsigned int size = pos + len; int bits_to_clear = BITS_PER_BYTE - (pos % BITS_PER_BYTE); - unsigned int mask_to_clear = BITMAP_FIRST_BYTE_MASK(pos); + u8 mask_to_clear = BITMAP_FIRST_BYTE_MASK(pos); eb_bitmap_offset(eb, start, pos, &i, &offset); page = eb->pages[i]; @@ -5659,7 +5696,7 @@ kaddr[offset] &= ~mask_to_clear; len -= bits_to_clear; bits_to_clear = BITS_PER_BYTE; - mask_to_clear = ~0U; + mask_to_clear = ~(u8)0; if (++offset >= PAGE_SIZE && len > 0) { offset = 0; page = eb->pages[++i]; --- linux-4.8.0.orig/fs/btrfs/extent_io.h +++ linux-4.8.0/fs/btrfs/extent_io.h @@ -59,6 +59,28 @@ */ #define EXTENT_PAGE_PRIVATE 1 +/* + * The extent buffer bitmap operations are done with byte granularity instead of + * word granularity for two reasons: + * 1. The bitmaps must be little-endian on disk. + * 2. Bitmap items are not guaranteed to be aligned to a word and therefore a + * single word in a bitmap may straddle two pages in the extent buffer. + */ +#define BIT_BYTE(nr) ((nr) / BITS_PER_BYTE) +#define BYTE_MASK ((1 << BITS_PER_BYTE) - 1) +#define BITMAP_FIRST_BYTE_MASK(start) \ + ((BYTE_MASK << ((start) & (BITS_PER_BYTE - 1))) & BYTE_MASK) +#define BITMAP_LAST_BYTE_MASK(nbits) \ + (BYTE_MASK >> (-(nbits) & (BITS_PER_BYTE - 1))) + +static inline int le_test_bit(int nr, const u8 *addr) +{ + return 1U & (addr[BIT_BYTE(nr)] >> (nr & (BITS_PER_BYTE-1))); +} + +extern void le_bitmap_set(u8 *map, unsigned int start, int len); +extern void le_bitmap_clear(u8 *map, unsigned int start, int len); + struct extent_state; struct btrfs_root; struct btrfs_io_bio; --- linux-4.8.0.orig/fs/btrfs/free-space-tree.c +++ linux-4.8.0/fs/btrfs/free-space-tree.c @@ -151,7 +151,7 @@ return DIV_ROUND_UP((u32)div_u64(size, sectorsize), BITS_PER_BYTE); } -static unsigned long *alloc_bitmap(u32 bitmap_size) +static u8 *alloc_bitmap(u32 bitmap_size) { void *mem; @@ -180,8 +180,7 @@ struct btrfs_free_space_info *info; struct btrfs_key key, found_key; struct extent_buffer *leaf; - unsigned long *bitmap; - char *bitmap_cursor; + u8 *bitmap, *bitmap_cursor; u64 start, end; u64 bitmap_range, i; u32 bitmap_size, flags, expected_extent_count; @@ -231,7 +230,7 @@ block_group->sectorsize); last = div_u64(found_key.objectid + found_key.offset - start, block_group->sectorsize); - bitmap_set(bitmap, first, last - first); + le_bitmap_set(bitmap, first, last - first); extent_count++; nr++; @@ -269,7 +268,7 @@ goto out; } - bitmap_cursor = (char *)bitmap; + bitmap_cursor = bitmap; bitmap_range = block_group->sectorsize * BTRFS_FREE_SPACE_BITMAP_BITS; i = start; while (i < end) { @@ -318,7 +317,7 @@ struct btrfs_free_space_info *info; struct btrfs_key key, found_key; struct extent_buffer *leaf; - unsigned long *bitmap; + u8 *bitmap; u64 start, end; /* Initialize to silence GCC. */ u64 extent_start = 0; @@ -362,7 +361,7 @@ break; } else if (found_key.type == BTRFS_FREE_SPACE_BITMAP_KEY) { unsigned long ptr; - char *bitmap_cursor; + u8 *bitmap_cursor; u32 bitmap_pos, data_size; ASSERT(found_key.objectid >= start); @@ -372,7 +371,7 @@ bitmap_pos = div_u64(found_key.objectid - start, block_group->sectorsize * BITS_PER_BYTE); - bitmap_cursor = ((char *)bitmap) + bitmap_pos; + bitmap_cursor = bitmap + bitmap_pos; data_size = free_space_bitmap_size(found_key.offset, block_group->sectorsize); @@ -409,7 +408,7 @@ offset = start; bitnr = 0; while (offset < end) { - bit = !!test_bit(bitnr, bitmap); + bit = !!le_test_bit(bitnr, bitmap); if (prev_bit == 0 && bit == 1) { extent_start = offset; } else if (prev_bit == 1 && bit == 0) { @@ -1183,6 +1182,7 @@ } btrfs_set_fs_compat_ro(fs_info, FREE_SPACE_TREE); + btrfs_set_fs_compat_ro(fs_info, FREE_SPACE_TREE_VALID); fs_info->creating_free_space_tree = 0; ret = btrfs_commit_transaction(trans, tree_root); @@ -1251,6 +1251,7 @@ return PTR_ERR(trans); btrfs_clear_fs_compat_ro(fs_info, FREE_SPACE_TREE); + btrfs_clear_fs_compat_ro(fs_info, FREE_SPACE_TREE_VALID); fs_info->free_space_root = NULL; ret = clear_free_space_tree(trans, free_space_root); --- linux-4.8.0.orig/fs/btrfs/inode.c +++ linux-4.8.0/fs/btrfs/inode.c @@ -8915,9 +8915,14 @@ * So even we call qgroup_free_data(), it won't decrease reserved * space. * 2) Not written to disk - * This means the reserved space should be freed here. + * This means the reserved space should be freed here. However, + * if a truncate invalidates the page (by clearing PageDirty) + * and the page is accounted for while allocating extent + * in btrfs_check_data_free_space() we let delayed_ref to + * free the entire extent. */ - btrfs_qgroup_free_data(inode, page_start, PAGE_SIZE); + if (PageDirty(page)) + btrfs_qgroup_free_data(inode, page_start, PAGE_SIZE); if (!inode_evicting) { clear_extent_bit(tree, page_start, page_end, EXTENT_LOCKED | EXTENT_DIRTY | --- linux-4.8.0.orig/fs/btrfs/ioctl.c +++ linux-4.8.0/fs/btrfs/ioctl.c @@ -3813,6 +3813,11 @@ } btrfs_release_path(path); key.offset = next_key_min_offset; + + if (fatal_signal_pending(current)) { + ret = -EINTR; + goto out; + } } ret = 0; @@ -5641,6 +5646,10 @@ #ifdef CONFIG_COMPAT long btrfs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg) { + /* + * These all access 32-bit values anyway so no further + * handling is necessary. + */ switch (cmd) { case FS_IOC32_GETFLAGS: cmd = FS_IOC_GETFLAGS; @@ -5651,8 +5660,6 @@ case FS_IOC32_GETVERSION: cmd = FS_IOC_GETVERSION; break; - default: - return -ENOIOCTLCMD; } return btrfs_ioctl(file, cmd, (unsigned long) compat_ptr(arg)); --- linux-4.8.0.orig/fs/btrfs/qgroup.c +++ linux-4.8.0/fs/btrfs/qgroup.c @@ -2332,10 +2332,6 @@ int err = -ENOMEM; int ret = 0; - mutex_lock(&fs_info->qgroup_rescan_lock); - fs_info->qgroup_rescan_running = true; - mutex_unlock(&fs_info->qgroup_rescan_lock); - path = btrfs_alloc_path(); if (!path) goto out; @@ -2446,6 +2442,7 @@ sizeof(fs_info->qgroup_rescan_progress)); fs_info->qgroup_rescan_progress.objectid = progress_objectid; init_completion(&fs_info->qgroup_rescan_completion); + fs_info->qgroup_rescan_running = true; spin_unlock(&fs_info->qgroup_lock); mutex_unlock(&fs_info->qgroup_rescan_lock); --- linux-4.8.0.orig/fs/btrfs/relocation.c +++ linux-4.8.0/fs/btrfs/relocation.c @@ -923,9 +923,16 @@ path2->slots[level]--; eb = path2->nodes[level]; - WARN_ON(btrfs_node_blockptr(eb, path2->slots[level]) != - cur->bytenr); - + if (btrfs_node_blockptr(eb, path2->slots[level]) != + cur->bytenr) { + btrfs_err(root->fs_info, + "couldn't find block (%llu) (level %d) in tree (%llu) with key (%llu %u %llu)", + cur->bytenr, level - 1, root->objectid, + node_key->objectid, node_key->type, + node_key->offset); + err = -ENOENT; + goto out; + } lower = cur; need_check = true; for (; level < BTRFS_MAX_LEVEL; level++) { @@ -1387,14 +1394,23 @@ root_key.offset = objectid; if (root->root_key.objectid == objectid) { + u64 commit_root_gen; + /* called by btrfs_init_reloc_root */ ret = btrfs_copy_root(trans, root, root->commit_root, &eb, BTRFS_TREE_RELOC_OBJECTID); BUG_ON(ret); - last_snap = btrfs_root_last_snapshot(&root->root_item); - btrfs_set_root_last_snapshot(&root->root_item, - trans->transid - 1); + /* + * Set the last_snapshot field to the generation of the commit + * root - like this ctree.c:btrfs_block_can_be_shared() behaves + * correctly (returns true) when the relocation root is created + * either inside the critical section of a transaction commit + * (through transaction.c:qgroup_account_snapshot()) and when + * it's created before the transaction commit is started. + */ + commit_root_gen = btrfs_header_generation(root->commit_root); + btrfs_set_root_last_snapshot(&root->root_item, commit_root_gen); } else { /* * called by btrfs_reloc_post_snapshot_hook. @@ -2350,6 +2366,10 @@ while (!list_empty(list)) { reloc_root = list_entry(list->next, struct btrfs_root, root_list); + free_extent_buffer(reloc_root->node); + free_extent_buffer(reloc_root->commit_root); + reloc_root->node = NULL; + reloc_root->commit_root = NULL; __del_reloc_root(reloc_root); } } @@ -2686,11 +2706,15 @@ if (!upper->eb) { ret = btrfs_search_slot(trans, root, key, path, 0, 1); - if (ret < 0) { - err = ret; + if (ret) { + if (ret < 0) + err = ret; + else + err = -ENOENT; + + btrfs_release_path(path); break; } - BUG_ON(ret > 0); if (!upper->eb) { upper->eb = path->nodes[upper->level]; --- linux-4.8.0.orig/fs/btrfs/send.c +++ linux-4.8.0/fs/btrfs/send.c @@ -5802,6 +5802,64 @@ int ret = 0; if (sctx->cur_ino != sctx->cmp_key->objectid) { + + if (result == BTRFS_COMPARE_TREE_CHANGED) { + struct extent_buffer *leaf_l; + struct extent_buffer *leaf_r; + struct btrfs_file_extent_item *ei_l; + struct btrfs_file_extent_item *ei_r; + + leaf_l = sctx->left_path->nodes[0]; + leaf_r = sctx->right_path->nodes[0]; + ei_l = btrfs_item_ptr(leaf_l, + sctx->left_path->slots[0], + struct btrfs_file_extent_item); + ei_r = btrfs_item_ptr(leaf_r, + sctx->right_path->slots[0], + struct btrfs_file_extent_item); + + /* + * We may have found an extent item that has changed + * only its disk_bytenr field and the corresponding + * inode item was not updated. This case happens due to + * very specific timings during relocation when a leaf + * that contains file extent items is COWed while + * relocation is ongoing and its in the stage where it + * updates data pointers. So when this happens we can + * safely ignore it since we know it's the same extent, + * but just at different logical and physical locations + * (when an extent is fully replaced with a new one, we + * know the generation number must have changed too, + * since snapshot creation implies committing the current + * transaction, and the inode item must have been updated + * as well). + * This replacement of the disk_bytenr happens at + * relocation.c:replace_file_extents() through + * relocation.c:btrfs_reloc_cow_block(). + */ + if (btrfs_file_extent_generation(leaf_l, ei_l) == + btrfs_file_extent_generation(leaf_r, ei_r) && + btrfs_file_extent_ram_bytes(leaf_l, ei_l) == + btrfs_file_extent_ram_bytes(leaf_r, ei_r) && + btrfs_file_extent_compression(leaf_l, ei_l) == + btrfs_file_extent_compression(leaf_r, ei_r) && + btrfs_file_extent_encryption(leaf_l, ei_l) == + btrfs_file_extent_encryption(leaf_r, ei_r) && + btrfs_file_extent_other_encoding(leaf_l, ei_l) == + btrfs_file_extent_other_encoding(leaf_r, ei_r) && + btrfs_file_extent_type(leaf_l, ei_l) == + btrfs_file_extent_type(leaf_r, ei_r) && + btrfs_file_extent_disk_bytenr(leaf_l, ei_l) != + btrfs_file_extent_disk_bytenr(leaf_r, ei_r) && + btrfs_file_extent_disk_num_bytes(leaf_l, ei_l) == + btrfs_file_extent_disk_num_bytes(leaf_r, ei_r) && + btrfs_file_extent_offset(leaf_l, ei_l) == + btrfs_file_extent_offset(leaf_r, ei_r) && + btrfs_file_extent_num_bytes(leaf_l, ei_l) == + btrfs_file_extent_num_bytes(leaf_r, ei_r)) + return 0; + } + inconsistent_snapshot_error(sctx, result, "extent"); return -EIO; } --- linux-4.8.0.orig/fs/btrfs/tree-log.c +++ linux-4.8.0/fs/btrfs/tree-log.c @@ -1940,12 +1940,11 @@ next: /* check the next slot in the tree to see if it is a valid item */ nritems = btrfs_header_nritems(path->nodes[0]); + path->slots[0]++; if (path->slots[0] >= nritems) { ret = btrfs_next_leaf(root, path); if (ret) goto out; - } else { - path->slots[0]++; } btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]); @@ -2713,14 +2712,12 @@ int index, int error) { struct btrfs_log_ctx *ctx; + struct btrfs_log_ctx *safe; - if (!error) { - INIT_LIST_HEAD(&root->log_ctxs[index]); - return; - } - - list_for_each_entry(ctx, &root->log_ctxs[index], list) + list_for_each_entry_safe(ctx, safe, &root->log_ctxs[index], list) { + list_del_init(&ctx->list); ctx->log_ret = error; + } INIT_LIST_HEAD(&root->log_ctxs[index]); } @@ -2961,13 +2958,9 @@ mutex_unlock(&root->log_mutex); out_wake_log_root: - /* - * We needn't get log_mutex here because we are sure all - * the other tasks are blocked. - */ + mutex_lock(&log_root_tree->log_mutex); btrfs_remove_all_log_ctxs(log_root_tree, index2, ret); - mutex_lock(&log_root_tree->log_mutex); log_root_tree->log_transid_committed++; atomic_set(&log_root_tree->log_commit[index2], 0); mutex_unlock(&log_root_tree->log_mutex); @@ -2978,10 +2971,8 @@ if (waitqueue_active(&log_root_tree->log_commit_wait[index2])) wake_up(&log_root_tree->log_commit_wait[index2]); out: - /* See above. */ - btrfs_remove_all_log_ctxs(root, index1, ret); - mutex_lock(&root->log_mutex); + btrfs_remove_all_log_ctxs(root, index1, ret); root->log_transid_committed++; atomic_set(&root->log_commit[index1], 0); mutex_unlock(&root->log_mutex); @@ -5213,6 +5204,7 @@ if (di_key.type == BTRFS_ROOT_ITEM_KEY) continue; + btrfs_release_path(path); di_inode = btrfs_iget(root->fs_info->sb, &di_key, root, NULL); if (IS_ERR(di_inode)) { @@ -5222,13 +5214,12 @@ if (btrfs_inode_in_log(di_inode, trans->transid)) { iput(di_inode); - continue; + break; } ctx->log_new_dentries = false; if (type == BTRFS_FT_DIR || type == BTRFS_FT_SYMLINK) log_mode = LOG_INODE_ALL; - btrfs_release_path(path); ret = btrfs_log_inode(trans, root, di_inode, log_mode, 0, LLONG_MAX, ctx); if (!ret && --- linux-4.8.0.orig/fs/btrfs/volumes.c +++ linux-4.8.0/fs/btrfs/volumes.c @@ -859,7 +859,7 @@ blkdev_put(device->bdev, device->mode); } -static void btrfs_close_one_device(struct btrfs_device *device) +static void btrfs_prepare_close_one_device(struct btrfs_device *device) { struct btrfs_fs_devices *fs_devices = device->fs_devices; struct btrfs_device *new_device; @@ -877,8 +877,6 @@ if (device->missing) fs_devices->missing_devices--; - btrfs_close_bdev(device); - new_device = btrfs_alloc_device(NULL, &device->devid, device->uuid); BUG_ON(IS_ERR(new_device)); /* -ENOMEM */ @@ -892,23 +890,39 @@ list_replace_rcu(&device->dev_list, &new_device->dev_list); new_device->fs_devices = device->fs_devices; - - call_rcu(&device->rcu, free_device); } static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices) { struct btrfs_device *device, *tmp; + struct list_head pending_put; + + INIT_LIST_HEAD(&pending_put); if (--fs_devices->opened > 0) return 0; mutex_lock(&fs_devices->device_list_mutex); list_for_each_entry_safe(device, tmp, &fs_devices->devices, dev_list) { - btrfs_close_one_device(device); + btrfs_prepare_close_one_device(device); + list_add(&device->dev_list, &pending_put); } mutex_unlock(&fs_devices->device_list_mutex); + /* + * btrfs_show_devname() is using the device_list_mutex, + * sometimes call to blkdev_put() leads vfs calling + * into this func. So do put outside of device_list_mutex, + * as of now. + */ + while (!list_empty(&pending_put)) { + device = list_first_entry(&pending_put, + struct btrfs_device, dev_list); + list_del(&device->dev_list); + btrfs_close_bdev(device); + call_rcu(&device->rcu, free_device); + } + WARN_ON(fs_devices->open_devices); WARN_ON(fs_devices->rw_devices); fs_devices->opened = 0; @@ -1846,7 +1860,6 @@ u64 num_devices; int ret = 0; bool clear_super = false; - char *dev_name = NULL; mutex_lock(&uuid_mutex); @@ -1882,11 +1895,6 @@ list_del_init(&device->dev_alloc_list); device->fs_devices->rw_devices--; unlock_chunks(root); - dev_name = kstrdup(device->name->str, GFP_KERNEL); - if (!dev_name) { - ret = -ENOMEM; - goto error_undo; - } clear_super = true; } @@ -1936,14 +1944,21 @@ btrfs_sysfs_rm_device_link(root->fs_info->fs_devices, device); } - btrfs_close_bdev(device); - - call_rcu(&device->rcu, free_device); - num_devices = btrfs_super_num_devices(root->fs_info->super_copy) - 1; btrfs_set_super_num_devices(root->fs_info->super_copy, num_devices); mutex_unlock(&root->fs_info->fs_devices->device_list_mutex); + /* + * at this point, the device is zero sized and detached from + * the devices list. All that's left is to zero out the old + * supers and free the device. + */ + if (device->writeable) + btrfs_scratch_superblocks(device->bdev, device->name->str); + + btrfs_close_bdev(device); + call_rcu(&device->rcu, free_device); + if (cur_devices->open_devices == 0) { struct btrfs_fs_devices *fs_devices; fs_devices = root->fs_info->fs_devices; @@ -1962,24 +1977,7 @@ root->fs_info->num_tolerated_disk_barrier_failures = btrfs_calc_num_tolerated_disk_barrier_failures(root->fs_info); - /* - * at this point, the device is zero sized. We want to - * remove it from the devices list and zero out the old super - */ - if (clear_super) { - struct block_device *bdev; - - bdev = blkdev_get_by_path(dev_name, FMODE_READ | FMODE_EXCL, - root->fs_info->bdev_holder); - if (!IS_ERR(bdev)) { - btrfs_scratch_superblocks(bdev, dev_name); - blkdev_put(bdev, FMODE_READ | FMODE_EXCL); - } - } - out: - kfree(dev_name); - mutex_unlock(&uuid_mutex); return ret; --- linux-4.8.0.orig/fs/cachefiles/interface.c +++ linux-4.8.0/fs/cachefiles/interface.c @@ -253,6 +253,8 @@ struct cachefiles_object *object; struct cachefiles_cache *cache; const struct cred *saved_cred; + struct inode *inode; + blkcnt_t i_blocks = 0; ASSERT(_object); @@ -279,6 +281,10 @@ _object != cache->cache.fsdef ) { _debug("- retire object OBJ%x", object->fscache.debug_id); + inode = d_backing_inode(object->dentry); + if (inode) + i_blocks = inode->i_blocks; + cachefiles_begin_secure(cache, &saved_cred); cachefiles_delete_object(cache, object); cachefiles_end_secure(cache, saved_cred); @@ -292,7 +298,7 @@ /* note that the object is now inactive */ if (test_bit(CACHEFILES_OBJECT_ACTIVE, &object->flags)) - cachefiles_mark_object_inactive(cache, object); + cachefiles_mark_object_inactive(cache, object, i_blocks); dput(object->dentry); object->dentry = NULL; --- linux-4.8.0.orig/fs/cachefiles/internal.h +++ linux-4.8.0/fs/cachefiles/internal.h @@ -160,7 +160,8 @@ * namei.c */ extern void cachefiles_mark_object_inactive(struct cachefiles_cache *cache, - struct cachefiles_object *object); + struct cachefiles_object *object, + blkcnt_t i_blocks); extern int cachefiles_delete_object(struct cachefiles_cache *cache, struct cachefiles_object *object); extern int cachefiles_walk_to_object(struct cachefiles_object *parent, --- linux-4.8.0.orig/fs/cachefiles/namei.c +++ linux-4.8.0/fs/cachefiles/namei.c @@ -261,10 +261,9 @@ * Mark an object as being inactive. */ void cachefiles_mark_object_inactive(struct cachefiles_cache *cache, - struct cachefiles_object *object) + struct cachefiles_object *object, + blkcnt_t i_blocks) { - blkcnt_t i_blocks = d_backing_inode(object->dentry)->i_blocks; - write_lock(&cache->active_lock); rb_erase(&object->active_node, &cache->active_nodes); clear_bit(CACHEFILES_OBJECT_ACTIVE, &object->flags); @@ -707,7 +706,8 @@ check_error: _debug("check error %d", ret); - cachefiles_mark_object_inactive(cache, object); + cachefiles_mark_object_inactive( + cache, object, d_backing_inode(object->dentry)->i_blocks); release_dentry: dput(object->dentry); object->dentry = NULL; --- linux-4.8.0.orig/fs/ceph/acl.c +++ linux-4.8.0/fs/ceph/acl.c @@ -95,11 +95,9 @@ case ACL_TYPE_ACCESS: name = XATTR_NAME_POSIX_ACL_ACCESS; if (acl) { - ret = posix_acl_equiv_mode(acl, &new_mode); - if (ret < 0) + ret = posix_acl_update_mode(inode, &new_mode, &acl); + if (ret) goto out; - if (ret == 0) - acl = NULL; } break; case ACL_TYPE_DEFAULT: --- linux-4.8.0.orig/fs/ceph/dir.c +++ linux-4.8.0/fs/ceph/dir.c @@ -1257,26 +1257,30 @@ return -ECHILD; op = ceph_snap(dir) == CEPH_SNAPDIR ? - CEPH_MDS_OP_LOOKUPSNAP : CEPH_MDS_OP_LOOKUP; + CEPH_MDS_OP_LOOKUPSNAP : CEPH_MDS_OP_GETATTR; req = ceph_mdsc_create_request(mdsc, op, USE_ANY_MDS); if (!IS_ERR(req)) { req->r_dentry = dget(dentry); - req->r_num_caps = 2; + req->r_num_caps = op == CEPH_MDS_OP_GETATTR ? 1 : 2; mask = CEPH_STAT_CAP_INODE | CEPH_CAP_AUTH_SHARED; if (ceph_security_xattr_wanted(dir)) mask |= CEPH_CAP_XATTR_SHARED; req->r_args.getattr.mask = mask; - req->r_locked_dir = dir; err = ceph_mdsc_do_request(mdsc, NULL, req); - if (err == 0 || err == -ENOENT) { - if (dentry == req->r_dentry) { - valid = !d_unhashed(dentry); - } else { - d_invalidate(req->r_dentry); - err = -EAGAIN; - } + switch (err) { + case 0: + if (d_really_is_positive(dentry) && + d_inode(dentry) == req->r_target_inode) + valid = 1; + break; + case -ENOENT: + if (d_really_is_negative(dentry)) + valid = 1; + /* Fallthrough */ + default: + break; } ceph_mdsc_put_request(req); dout("d_revalidate %p lookup result=%d\n", --- linux-4.8.0.orig/fs/ceph/file.c +++ linux-4.8.0/fs/ceph/file.c @@ -1272,7 +1272,8 @@ statret = __ceph_do_getattr(inode, page, CEPH_STAT_CAP_INLINE_DATA, !!page); if (statret < 0) { - __free_page(page); + if (page) + __free_page(page); if (statret == -ENODATA) { BUG_ON(retry_op != READ_INLINE); goto again; --- linux-4.8.0.orig/fs/cifs/Kconfig +++ linux-4.8.0/fs/cifs/Kconfig @@ -9,8 +9,6 @@ select CRYPTO_ARC4 select CRYPTO_ECB select CRYPTO_DES - select CRYPTO_SHA256 - select CRYPTO_CMAC help This is the client VFS module for the Common Internet File System (CIFS) protocol which is the successor to the Server Message Block @@ -169,11 +167,15 @@ config CIFS_SMB2 bool "SMB2 and SMB3 network file system support" - depends on CIFS && INET - select NLS + depends on CIFS select KEYS select FSCACHE select DNS_RESOLVER + select CRYPTO_AES + select CRYPTO_SHA256 + select CRYPTO_CMAC + select CRYPTO_AEAD2 + select CRYPTO_CCM help This enables support for the Server Message Block version 2 @@ -194,7 +196,7 @@ config CIFS_SMB311 bool "SMB3.1.1 network file system support (Experimental)" - depends on CIFS_SMB2 && INET + depends on CIFS_SMB2 help This enables experimental support for the newest, SMB3.1.1, dialect. --- linux-4.8.0.orig/fs/cifs/cifs_debug.c +++ linux-4.8.0/fs/cifs/cifs_debug.c @@ -152,6 +152,7 @@ list_for_each(tmp1, &cifs_tcp_ses_list) { server = list_entry(tmp1, struct TCP_Server_Info, tcp_ses_list); + seq_printf(m, "\nNumber of credits: %d", server->credits); i++; list_for_each(tmp2, &server->smb_ses_list) { ses = list_entry(tmp2, struct cifs_ses, --- linux-4.8.0.orig/fs/cifs/cifs_dfs_ref.c +++ linux-4.8.0/fs/cifs/cifs_dfs_ref.c @@ -245,7 +245,8 @@ * @fullpath: full path in UNC format * @ref: server's referral */ -static struct vfsmount *cifs_dfs_do_refmount(struct cifs_sb_info *cifs_sb, +static struct vfsmount *cifs_dfs_do_refmount(struct dentry *mntpt, + struct cifs_sb_info *cifs_sb, const char *fullpath, const struct dfs_info3_param *ref) { struct vfsmount *mnt; @@ -259,7 +260,7 @@ if (IS_ERR(mountdata)) return (struct vfsmount *)mountdata; - mnt = vfs_kern_mount(&cifs_fs_type, 0, devname, mountdata); + mnt = vfs_submount(mntpt, &cifs_fs_type, devname, mountdata); kfree(mountdata); kfree(devname); return mnt; @@ -334,7 +335,7 @@ mnt = ERR_PTR(-EINVAL); break; } - mnt = cifs_dfs_do_refmount(cifs_sb, + mnt = cifs_dfs_do_refmount(mntpt, cifs_sb, full_path, referrals + i); cifs_dbg(FYI, "%s: cifs_dfs_do_refmount:%s , mnt:%p\n", __func__, referrals[i].node_name, mnt); --- linux-4.8.0.orig/fs/cifs/cifsencrypt.c +++ linux-4.8.0/fs/cifs/cifsencrypt.c @@ -34,6 +34,7 @@ #include #include #include +#include static int cifs_crypto_shash_md5_allocate(struct TCP_Server_Info *server) @@ -75,24 +76,20 @@ struct kvec *iov = rqst->rq_iov; int n_vec = rqst->rq_nvec; - for (i = 0; i < n_vec; i++) { + if (n_vec < 2 || iov[0].iov_len != 4) + return -EIO; + + for (i = 1; i < n_vec; i++) { if (iov[i].iov_len == 0) continue; if (iov[i].iov_base == NULL) { cifs_dbg(VFS, "null iovec entry\n"); return -EIO; } - /* The first entry includes a length field (which does not get - signed that occupies the first 4 bytes before the header */ - if (i == 0) { - if (iov[0].iov_len <= 8) /* cmd field at offset 9 */ - break; /* nothing to sign or corrupt header */ - rc = crypto_shash_update(shash, - iov[i].iov_base + 4, iov[i].iov_len - 4); - } else { - rc = crypto_shash_update(shash, - iov[i].iov_base, iov[i].iov_len); - } + if (i == 1 && iov[1].iov_len <= 4) + break; /* nothing to sign or corrupt header */ + rc = crypto_shash_update(shash, + iov[i].iov_base, iov[i].iov_len); if (rc) { cifs_dbg(VFS, "%s: Could not update with payload\n", __func__); @@ -168,6 +165,10 @@ char smb_signature[20]; struct smb_hdr *cifs_pdu = (struct smb_hdr *)rqst->rq_iov[0].iov_base; + if (rqst->rq_iov[0].iov_len != 4 || + rqst->rq_iov[0].iov_base + 4 != rqst->rq_iov[1].iov_base) + return -EIO; + if ((cifs_pdu == NULL) || (server == NULL)) return -EINVAL; @@ -209,12 +210,14 @@ int cifs_sign_smb(struct smb_hdr *cifs_pdu, struct TCP_Server_Info *server, __u32 *pexpected_response_sequence_number) { - struct kvec iov; + struct kvec iov[2]; - iov.iov_base = cifs_pdu; - iov.iov_len = be32_to_cpu(cifs_pdu->smb_buf_length) + 4; + iov[0].iov_base = cifs_pdu; + iov[0].iov_len = 4; + iov[1].iov_base = (char *)cifs_pdu + 4; + iov[1].iov_len = be32_to_cpu(cifs_pdu->smb_buf_length); - return cifs_sign_smbv(&iov, 1, server, + return cifs_sign_smbv(iov, 2, server, pexpected_response_sequence_number); } @@ -227,6 +230,10 @@ char what_we_think_sig_should_be[20]; struct smb_hdr *cifs_pdu = (struct smb_hdr *)rqst->rq_iov[0].iov_base; + if (rqst->rq_iov[0].iov_len != 4 || + rqst->rq_iov[0].iov_base + 4 != rqst->rq_iov[1].iov_base) + return -EIO; + if (cifs_pdu == NULL || server == NULL) return -EINVAL; @@ -859,7 +866,7 @@ } void -cifs_crypto_shash_release(struct TCP_Server_Info *server) +cifs_crypto_secmech_release(struct TCP_Server_Info *server) { if (server->secmech.cmacaes) { crypto_free_shash(server->secmech.cmacaes); @@ -881,6 +888,16 @@ server->secmech.hmacmd5 = NULL; } + if (server->secmech.ccmaesencrypt) { + crypto_free_aead(server->secmech.ccmaesencrypt); + server->secmech.ccmaesencrypt = NULL; + } + + if (server->secmech.ccmaesdecrypt) { + crypto_free_aead(server->secmech.ccmaesdecrypt); + server->secmech.ccmaesdecrypt = NULL; + } + kfree(server->secmech.sdesccmacaes); server->secmech.sdesccmacaes = NULL; kfree(server->secmech.sdeschmacsha256); --- linux-4.8.0.orig/fs/cifs/cifsfs.c +++ linux-4.8.0/fs/cifs/cifsfs.c @@ -271,7 +271,7 @@ cifs_inode->createtime = 0; cifs_inode->epoch = 0; #ifdef CONFIG_CIFS_SMB2 - get_random_bytes(cifs_inode->lease_key, SMB2_LEASE_KEY_SIZE); + generate_random_uuid(cifs_inode->lease_key); #endif /* * Can not set i_flags here - they get immediately overwritten to zero @@ -1271,7 +1271,6 @@ GlobalTotalActiveXid = 0; GlobalMaxActiveXid = 0; spin_lock_init(&cifs_tcp_ses_lock); - spin_lock_init(&cifs_file_list_lock); spin_lock_init(&GlobalMid_Lock); get_random_bytes(&cifs_lock_secret, sizeof(cifs_lock_secret)); @@ -1374,5 +1373,19 @@ ("VFS to access servers complying with the SNIA CIFS Specification " "e.g. Samba and Windows"); MODULE_VERSION(CIFS_VERSION); +MODULE_SOFTDEP("pre: arc4"); +MODULE_SOFTDEP("pre: des"); +MODULE_SOFTDEP("pre: ecb"); +MODULE_SOFTDEP("pre: hmac"); +MODULE_SOFTDEP("pre: md4"); +MODULE_SOFTDEP("pre: md5"); +MODULE_SOFTDEP("pre: nls"); +#ifdef CONFIG_CIFS_SMB2 +MODULE_SOFTDEP("pre: aes"); +MODULE_SOFTDEP("pre: cmac"); +MODULE_SOFTDEP("pre: sha256"); +MODULE_SOFTDEP("pre: aead2"); +MODULE_SOFTDEP("pre: ccm"); +#endif /* CONFIG_CIFS_SMB2 */ module_init(init_cifs) module_exit(exit_cifs) --- linux-4.8.0.orig/fs/cifs/cifsglob.h +++ linux-4.8.0/fs/cifs/cifsglob.h @@ -75,6 +75,18 @@ #define SMB_ECHO_INTERVAL_MAX 600 #define SMB_ECHO_INTERVAL_DEFAULT 60 +/* + * Default number of credits to keep available for SMB3. + * This value is chosen somewhat arbitrarily. The Windows client + * defaults to 128 credits, the Windows server allows clients up to + * 512 credits (or 8K for later versions), and the NetApp server + * does not limit clients at all. Choose a high enough default value + * such that the client shouldn't limit performance, but allow mount + * to override (until you approach 64K, where we limit credits to 65000 + * to reduce possibility of seeing more server credit overflow bugs. + */ +#define SMB2_MAX_CREDITS_AVAILABLE 32000 + #include "cifspdu.h" #ifndef XATTR_DOS_ATTRIB @@ -124,6 +136,8 @@ struct sdesc *sdescmd5; /* ctxt to generate cifs/smb signature */ struct sdesc *sdeschmacsha256; /* ctxt to generate smb2 signature */ struct sdesc *sdesccmacaes; /* ctxt to generate smb3 signature */ + struct crypto_aead *ccmaesencrypt; /* smb3 encryption aead */ + struct crypto_aead *ccmaesdecrypt; /* smb3 decryption aead */ }; /* per smb session structure/fields */ @@ -196,7 +210,7 @@ struct cifs_open_parms; struct smb_version_operations { - int (*send_cancel)(struct TCP_Server_Info *, void *, + int (*send_cancel)(struct TCP_Server_Info *, struct smb_rqst *, struct mid_q_entry *); bool (*compare_fids)(struct cifsFileInfo *, struct cifsFileInfo *); /* setup request: allocate mid, sign message */ @@ -419,6 +433,14 @@ bool (*dir_needs_close)(struct cifsFileInfo *); long (*fallocate)(struct file *, struct cifs_tcon *, int, loff_t, loff_t); + /* init transform request - used for encryption for now */ + int (*init_transform_rq)(struct TCP_Server_Info *, struct smb_rqst *, + struct smb_rqst *); + /* free transform request */ + void (*free_transform_rq)(struct smb_rqst *); + int (*is_transform_hdr)(void *buf); + int (*receive_transform)(struct TCP_Server_Info *, + struct mid_q_entry **); }; struct smb_version_values { @@ -510,6 +532,8 @@ struct sockaddr_storage srcaddr; /* allow binding to a local IP */ struct nls_table *local_nls; unsigned int echo_interval; /* echo interval in secs */ + __u64 snapshot_time; /* needed for timewarp tokens */ + unsigned int max_credits; /* smb3 max_credits 10 < credits < 60000 */ }; #define CIFS_MOUNT_MASK (CIFS_MOUNT_NO_PERM | CIFS_MOUNT_SET_UID | \ @@ -567,7 +591,8 @@ bool noblocksnd; /* use blocking sendmsg */ bool noautotune; /* do not autotune send buf sizes */ bool tcp_nodelay; - int credits; /* send no more requests at once */ + unsigned int credits; /* send no more requests at once */ + unsigned int max_credits; /* can override large 32000 default at mnt */ unsigned int in_flight; /* number of requests on the wire to server */ spinlock_t req_lock; /* protect the two values above */ struct mutex srv_mutex; @@ -629,6 +654,8 @@ unsigned int max_read; unsigned int max_write; __u8 preauth_hash[512]; + struct delayed_work reconnect; /* reconnect workqueue job */ + struct mutex reconnect_mutex; /* prevent simultaneous reconnects */ #endif /* CONFIG_CIFS_SMB2 */ unsigned long echo_interval; }; @@ -832,7 +859,9 @@ struct cifs_tcon { struct list_head tcon_list; int tc_count; + struct list_head rlist; /* reconnect list */ struct list_head openFileList; + spinlock_t open_file_lock; /* protects list above */ struct cifs_ses *ses; /* pointer to session associated with */ char treeName[MAX_TREE_SIZE + 1]; /* UNC name of resource in ASCII */ char *nativeFileSystem; @@ -889,7 +918,7 @@ #endif /* CONFIG_CIFS_STATS2 */ __u64 bytes_read; __u64 bytes_written; - spinlock_t stat_lock; + spinlock_t stat_lock; /* protects the two fields above */ #endif /* CONFIG_CIFS_STATS */ FILE_SYSTEM_DEVICE_INFO fsDevInfo; FILE_SYSTEM_ATTRIBUTE_INFO fsAttrInfo; /* ok if fs name truncated */ @@ -914,6 +943,7 @@ __u32 maximal_access; __u32 vol_serial_number; __le64 vol_create_time; + __u64 snapshot_time; /* for timewarp tokens - timestamp of snapshot */ __u32 ss_flags; /* sector size flags */ __u32 perf_sector_size; /* best sector size for perf */ __u32 max_chunks; @@ -1040,8 +1070,10 @@ }; struct cifsFileInfo { + /* following two lists are protected by tcon->open_file_lock */ struct list_head tlist; /* pointer to next fid owned by tcon */ struct list_head flist; /* next fid (file instance) for this inode */ + /* lock list below protected by cifsi->lock_sem */ struct cifs_fid_locks *llist; /* brlocks held by this fid */ kuid_t uid; /* allows finding which FileInfo structure */ __u32 pid; /* process id who opened file */ @@ -1049,11 +1081,12 @@ /* BB add lock scope info here if needed */ ; /* lock scope id (0 if none) */ struct dentry *dentry; - unsigned int f_flags; struct tcon_link *tlink; + unsigned int f_flags; bool invalidHandle:1; /* file closed via session abend */ bool oplock_break_cancelled:1; - int count; /* refcount protected by cifs_file_list_lock */ + int count; + spinlock_t file_info_lock; /* protects four flag/count fields above */ struct mutex fh_mutex; /* prevents reopen race after dead ses*/ struct cifs_search_info srch_inf; struct work_struct oplock_break; /* work for oplock breaks */ @@ -1089,7 +1122,10 @@ int (*read_into_pages)(struct TCP_Server_Info *server, struct cifs_readdata *rdata, unsigned int len); - struct kvec iov; + int (*copy_into_pages)(struct TCP_Server_Info *server, + struct cifs_readdata *rdata, + struct iov_iter *iter); + struct kvec iov[2]; unsigned int pagesz; unsigned int tailsz; unsigned int credits; @@ -1120,7 +1156,7 @@ /* * Take a reference on the file private data. Must be called with - * cifs_file_list_lock held. + * cfile->file_info_lock held. */ static inline void cifsFileInfo_get_locked(struct cifsFileInfo *cifs_file) @@ -1272,6 +1308,13 @@ */ typedef void (mid_callback_t)(struct mid_q_entry *mid); +/* + * This is the protopyte for mid handle function. This is called once the mid + * has been recognized after decryption of the message. + */ +typedef int (mid_handle_t)(struct TCP_Server_Info *server, + struct mid_q_entry *mid); + /* one of these for every pending CIFS request to the server */ struct mid_q_entry { struct list_head qhead; /* mids waiting on reply from this server */ @@ -1286,6 +1329,7 @@ #endif mid_receive_t *receive; /* call receive callback */ mid_callback_t *callback; /* call completion callback */ + mid_handle_t *handle; /* call handle mid callback */ void *callback_data; /* general purpose pointer for callback */ void *resp_buf; /* pointer to received SMB header */ int mid_state; /* wish this were enum but can not pass to wait_event */ @@ -1293,6 +1337,7 @@ bool large_buf:1; /* if valid response, is pointer to large buf */ bool multiRsp:1; /* multiple trans2 responses for one request */ bool multiEnd:1; /* both received */ + bool decrypted:1; /* decrypted entry */ }; /* Make code in transport.c a little cleaner by moving @@ -1445,7 +1490,9 @@ #define CIFS_OBREAK_OP 0x0100 /* oplock break request */ #define CIFS_NEG_OP 0x0200 /* negotiate request */ #define CIFS_OP_MASK 0x0380 /* mask request type */ + #define CIFS_HAS_CREDITS 0x0400 /* already has credits */ +#define CIFS_TRANSFORM_REQ 0x0800 /* transform request before sending */ /* Security Flags: indicate type of session setup needed */ #define CIFSSEC_MAY_SIGN 0x00001 @@ -1514,8 +1561,10 @@ * GlobalMid_Lock protects: * list operations on pending_mid_q and oplockQ * updates to XID counters, multiplex id and SMB sequence numbers - * cifs_file_list_lock protects: - * list operations on tcp and SMB session lists and tCon lists + * tcp_ses_lock protects: + * list operations on tcp and SMB session lists + * tcon->open_file_lock protects the list of open files hanging off the tcon + * cfile->file_info_lock protects counters and fields in cifs file struct * f_owner.lock protects certain per file struct operations * mapping->page_lock protects certain per page operations * @@ -1547,18 +1596,12 @@ * tcp session, and the list of tcon's per smb session. It also protects * the reference counters for the server, smb session, and tcon. Finally, * changes to the tcon->tidStatus should be done while holding this lock. + * generally the locks should be taken in order tcp_ses_lock before + * tcon->open_file_lock and that before file->file_info_lock since the + * structure order is cifs_socket-->cifs_ses-->cifs_tcon-->cifs_file */ GLOBAL_EXTERN spinlock_t cifs_tcp_ses_lock; -/* - * This lock protects the cifs_file->llist and cifs_file->flist - * list operations, and updates to some flags (cifs_file->invalidHandle) - * It will be moved to either use the tcon->stat_lock or equivalent later. - * If cifs_tcp_ses_lock and the lock below are both needed to be held, then - * the cifs_tcp_ses_lock must be grabbed first and released last. - */ -GLOBAL_EXTERN spinlock_t cifs_file_list_lock; - #ifdef CONFIG_CIFS_DNOTIFY_EXPERIMENTAL /* unused temporarily */ /* Outstanding dir notify requests */ GLOBAL_EXTERN struct list_head GlobalDnotifyReqList; --- linux-4.8.0.orig/fs/cifs/cifsproto.h +++ linux-4.8.0/fs/cifs/cifsproto.h @@ -74,10 +74,16 @@ extern void DeleteMidQEntry(struct mid_q_entry *midEntry); extern void cifs_delete_mid(struct mid_q_entry *mid); extern void cifs_wake_up_task(struct mid_q_entry *mid); +extern int cifs_handle_standard(struct TCP_Server_Info *server, + struct mid_q_entry *mid); +extern int cifs_discard_remaining_data(struct TCP_Server_Info *server); extern int cifs_call_async(struct TCP_Server_Info *server, struct smb_rqst *rqst, mid_receive_t *receive, mid_callback_t *callback, - void *cbdata, const int flags); + mid_handle_t *handle, void *cbdata, const int flags); +extern int cifs_send_recv(const unsigned int xid, struct cifs_ses *ses, + struct smb_rqst *rqst, int *resp_buf_type, + const int flags, struct kvec *resp_iov); extern int SendReceive(const unsigned int /* xid */ , struct cifs_ses *, struct smb_hdr * /* input */ , struct smb_hdr * /* out */ , @@ -95,7 +101,8 @@ unsigned int *credits); extern int SendReceive2(const unsigned int /* xid */ , struct cifs_ses *, struct kvec *, int /* nvec to send */, - int * /* type of buf returned */ , const int flags); + int * /* type of buf returned */, const int flags, + struct kvec * /* resp vec */); extern int SendReceiveBlockingLock(const unsigned int xid, struct cifs_tcon *ptcon, struct smb_hdr *in_buf , @@ -204,6 +211,9 @@ struct tcon_link *tlink, struct cifs_pending_open *open); extern void cifs_del_pending_open(struct cifs_pending_open *open); +extern void cifs_put_tcp_session(struct TCP_Server_Info *server, + int from_reconnect); +extern void cifs_put_tcon(struct cifs_tcon *tcon); #if IS_ENABLED(CONFIG_CIFS_DFS_UPCALL) extern void cifs_dfs_release_automount_timer(void); @@ -436,7 +446,7 @@ const struct nls_table *); extern int setup_ntlm_response(struct cifs_ses *, const struct nls_table *); extern int setup_ntlmv2_rsp(struct cifs_ses *, const struct nls_table *); -extern void cifs_crypto_shash_release(struct TCP_Server_Info *); +extern void cifs_crypto_secmech_release(struct TCP_Server_Info *server); extern int calc_seckey(struct cifs_ses *); extern int generate_smb30signingkey(struct cifs_ses *); extern int generate_smb311signingkey(struct cifs_ses *); --- linux-4.8.0.orig/fs/cifs/cifssmb.c +++ linux-4.8.0/fs/cifs/cifssmb.c @@ -98,13 +98,13 @@ struct list_head *tmp1; /* list all files open on tree connection and mark them invalid */ - spin_lock(&cifs_file_list_lock); + spin_lock(&tcon->open_file_lock); list_for_each_safe(tmp, tmp1, &tcon->openFileList) { open_file = list_entry(tmp, struct cifsFileInfo, tlist); open_file->invalidHandle = true; open_file->oplock_break_cancelled = true; } - spin_unlock(&cifs_file_list_lock); + spin_unlock(&tcon->open_file_lock); /* * BB Add call to invalidate_inodes(sb) for all superblocks mounted * to this tcon. @@ -673,6 +673,7 @@ return rc; rc = SendReceiveNoRsp(xid, tcon->ses, (char *)smb_buffer, 0); + cifs_small_buf_release(smb_buffer); if (rc) cifs_dbg(FYI, "Tree disconnect failed %d\n", rc); @@ -707,9 +708,9 @@ { ECHO_REQ *smb; int rc = 0; - struct kvec iov; - struct smb_rqst rqst = { .rq_iov = &iov, - .rq_nvec = 1 }; + struct kvec iov[2]; + struct smb_rqst rqst = { .rq_iov = iov, + .rq_nvec = 2 }; cifs_dbg(FYI, "In echo request\n"); @@ -724,10 +725,13 @@ put_bcc(1, &smb->hdr); smb->Data[0] = 'a'; inc_rfc1001_len(smb, 3); - iov.iov_base = smb; - iov.iov_len = be32_to_cpu(smb->hdr.smb_buf_length) + 4; - rc = cifs_call_async(server, &rqst, NULL, cifs_echo_callback, + iov[0].iov_len = 4; + iov[0].iov_base = smb; + iov[1].iov_len = get_rfc1002_length(smb); + iov[1].iov_base = (char *)smb + 4; + + rc = cifs_call_async(server, &rqst, NULL, cifs_echo_callback, NULL, server, CIFS_ASYNC_OP | CIFS_ECHO_OP); if (rc) cifs_dbg(FYI, "Echo request failed: %d\n", rc); @@ -772,6 +776,7 @@ pSMB->AndXCommand = 0xFF; rc = SendReceiveNoRsp(xid, ses, (char *) pSMB, 0); + cifs_small_buf_release(pSMB); session_already_dead: mutex_unlock(&ses->session_mutex); @@ -1395,8 +1400,8 @@ * Discard any remaining data in the current SMB. To do this, we borrow the * current bigbuf. */ -static int -discard_remaining_data(struct TCP_Server_Info *server) +int +cifs_discard_remaining_data(struct TCP_Server_Info *server) { unsigned int rfclen = get_rfc1002_length(server->smallbuf); int remaining = rfclen + 4 - server->total_read; @@ -1422,7 +1427,7 @@ int length; struct cifs_readdata *rdata = mid->callback_data; - length = discard_remaining_data(server); + length = cifs_discard_remaining_data(server); dequeue_mid(mid, rdata->result); return length; } @@ -1455,7 +1460,7 @@ if (server->ops->is_status_pending && server->ops->is_status_pending(buf, server, 0)) { - discard_remaining_data(server); + cifs_discard_remaining_data(server); return -1; } @@ -1508,10 +1513,12 @@ } /* set up first iov for signature check */ - rdata->iov.iov_base = buf; - rdata->iov.iov_len = server->total_read; - cifs_dbg(FYI, "0: iov_base=%p iov_len=%zu\n", - rdata->iov.iov_base, rdata->iov.iov_len); + rdata->iov[0].iov_base = buf; + rdata->iov[0].iov_len = 4; + rdata->iov[1].iov_base = buf + 4; + rdata->iov[1].iov_len = server->total_read - 4; + cifs_dbg(FYI, "0: iov_base=%p iov_len=%u\n", + rdata->iov[0].iov_base, server->total_read); /* how much data is in the response? */ data_len = server->ops->read_data_length(buf); @@ -1544,8 +1551,8 @@ struct cifs_readdata *rdata = mid->callback_data; struct cifs_tcon *tcon = tlink_tcon(rdata->cfile->tlink); struct TCP_Server_Info *server = tcon->ses->server; - struct smb_rqst rqst = { .rq_iov = &rdata->iov, - .rq_nvec = 1, + struct smb_rqst rqst = { .rq_iov = rdata->iov, + .rq_nvec = 2, .rq_pages = rdata->pages, .rq_npages = rdata->nr_pages, .rq_pagesz = rdata->pagesz, @@ -1600,8 +1607,8 @@ READ_REQ *smb = NULL; int wct; struct cifs_tcon *tcon = tlink_tcon(rdata->cfile->tlink); - struct smb_rqst rqst = { .rq_iov = &rdata->iov, - .rq_nvec = 1 }; + struct smb_rqst rqst = { .rq_iov = rdata->iov, + .rq_nvec = 2 }; cifs_dbg(FYI, "%s: offset=%llu bytes=%u\n", __func__, rdata->offset, rdata->bytes); @@ -1641,12 +1648,14 @@ } /* 4 for RFC1001 length + 1 for BCC */ - rdata->iov.iov_base = smb; - rdata->iov.iov_len = be32_to_cpu(smb->hdr.smb_buf_length) + 4; + rdata->iov[0].iov_base = smb; + rdata->iov[0].iov_len = 4; + rdata->iov[1].iov_base = (char *)smb + 4; + rdata->iov[1].iov_len = get_rfc1002_length(smb); kref_get(&rdata->refcount); rc = cifs_call_async(tcon->ses->server, &rqst, cifs_readv_receive, - cifs_readv_callback, rdata, 0); + cifs_readv_callback, NULL, rdata, 0); if (rc == 0) cifs_stats_inc(&tcon->stats.cifs_stats.num_reads); @@ -1668,6 +1677,7 @@ int wct; int resp_buf_type = 0; struct kvec iov[1]; + struct kvec rsp_iov; __u32 pid = io_parms->pid; __u16 netfid = io_parms->netfid; __u64 offset = io_parms->offset; @@ -1717,10 +1727,11 @@ iov[0].iov_base = (char *)pSMB; iov[0].iov_len = be32_to_cpu(pSMB->hdr.smb_buf_length) + 4; - rc = SendReceive2(xid, tcon->ses, iov, 1 /* num iovecs */, - &resp_buf_type, CIFS_LOG_ERROR); + rc = SendReceive2(xid, tcon->ses, iov, 1, &resp_buf_type, + CIFS_LOG_ERROR, &rsp_iov); + cifs_small_buf_release(pSMB); cifs_stats_inc(&tcon->stats.cifs_stats.num_reads); - pSMBr = (READ_RSP *)iov[0].iov_base; + pSMBr = (READ_RSP *)rsp_iov.iov_base; if (rc) { cifs_dbg(VFS, "Send error in read = %d\n", rc); } else { @@ -1748,12 +1759,11 @@ } } -/* cifs_small_buf_release(pSMB); */ /* Freed earlier now in SendReceive2 */ if (*buf) { - free_rsp_buf(resp_buf_type, iov[0].iov_base); + free_rsp_buf(resp_buf_type, rsp_iov.iov_base); } else if (resp_buf_type != CIFS_NO_BUFFER) { /* return buffer to caller to free */ - *buf = iov[0].iov_base; + *buf = rsp_iov.iov_base; if (resp_buf_type == CIFS_SMALL_BUFFER) *pbuf_type = CIFS_SMALL_BUFFER; else if (resp_buf_type == CIFS_LARGE_BUFFER) @@ -2100,7 +2110,7 @@ WRITE_REQ *smb = NULL; int wct; struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink); - struct kvec iov; + struct kvec iov[2]; struct smb_rqst rqst = { }; if (tcon->ses->capabilities & CAP_LARGE_FILES) { @@ -2133,11 +2143,13 @@ cpu_to_le16(offsetof(struct smb_com_write_req, Data) - 4); /* 4 for RFC1001 length + 1 for BCC */ - iov.iov_len = be32_to_cpu(smb->hdr.smb_buf_length) + 4 + 1; - iov.iov_base = smb; + iov[0].iov_len = 4; + iov[0].iov_base = smb; + iov[1].iov_len = get_rfc1002_length(smb) + 1; + iov[1].iov_base = (char *)smb + 4; - rqst.rq_iov = &iov; - rqst.rq_nvec = 1; + rqst.rq_iov = iov; + rqst.rq_nvec = 2; rqst.rq_pages = wdata->pages; rqst.rq_npages = wdata->nr_pages; rqst.rq_pagesz = wdata->pagesz; @@ -2158,12 +2170,12 @@ (struct smb_com_writex_req *)smb; inc_rfc1001_len(&smbw->hdr, wdata->bytes + 5); put_bcc(wdata->bytes + 5, &smbw->hdr); - iov.iov_len += 4; /* pad bigger by four bytes */ + iov[1].iov_len += 4; /* pad bigger by four bytes */ } kref_get(&wdata->refcount); rc = cifs_call_async(tcon->ses->server, &rqst, NULL, - cifs_writev_callback, wdata, 0); + cifs_writev_callback, NULL, wdata, 0); if (rc == 0) cifs_stats_inc(&tcon->stats.cifs_stats.num_writes); @@ -2189,6 +2201,7 @@ __u64 offset = io_parms->offset; struct cifs_tcon *tcon = io_parms->tcon; unsigned int count = io_parms->length; + struct kvec rsp_iov; *nbytes = 0; @@ -2247,8 +2260,9 @@ else /* wct == 12 pad bigger by four bytes */ iov[0].iov_len = smb_hdr_len + 8; - - rc = SendReceive2(xid, tcon->ses, iov, n_vec + 1, &resp_buf_type, 0); + rc = SendReceive2(xid, tcon->ses, iov, n_vec + 1, &resp_buf_type, 0, + &rsp_iov); + cifs_small_buf_release(pSMB); cifs_stats_inc(&tcon->stats.cifs_stats.num_writes); if (rc) { cifs_dbg(FYI, "Send error Write2 = %d\n", rc); @@ -2256,7 +2270,7 @@ /* presumably this can not happen, but best to be safe */ rc = -EIO; } else { - WRITE_RSP *pSMBr = (WRITE_RSP *)iov[0].iov_base; + WRITE_RSP *pSMBr = (WRITE_RSP *)rsp_iov.iov_base; *nbytes = le16_to_cpu(pSMBr->CountHigh); *nbytes = (*nbytes) << 16; *nbytes += le16_to_cpu(pSMBr->Count); @@ -2270,8 +2284,7 @@ *nbytes &= 0xFFFF; } -/* cifs_small_buf_release(pSMB); */ /* Freed earlier now in SendReceive2 */ - free_rsp_buf(resp_buf_type, iov[0].iov_base); + free_rsp_buf(resp_buf_type, rsp_iov.iov_base); /* Note: On -EAGAIN error only caller can retry on handle based calls since file handle passed in no longer valid */ @@ -2286,6 +2299,7 @@ int rc = 0; LOCK_REQ *pSMB = NULL; struct kvec iov[2]; + struct kvec rsp_iov; int resp_buf_type; __u16 count; @@ -2314,7 +2328,9 @@ iov[1].iov_len = (num_unlock + num_lock) * sizeof(LOCKING_ANDX_RANGE); cifs_stats_inc(&tcon->stats.cifs_stats.num_locks); - rc = SendReceive2(xid, tcon->ses, iov, 2, &resp_buf_type, CIFS_NO_RESP); + rc = SendReceive2(xid, tcon->ses, iov, 2, &resp_buf_type, CIFS_NO_RESP, + &rsp_iov); + cifs_small_buf_release(pSMB); if (rc) cifs_dbg(FYI, "Send error in cifs_lockv = %d\n", rc); @@ -2375,14 +2391,12 @@ inc_rfc1001_len(pSMB, count); pSMB->ByteCount = cpu_to_le16(count); - if (waitFlag) { + if (waitFlag) rc = SendReceiveBlockingLock(xid, tcon, (struct smb_hdr *) pSMB, (struct smb_hdr *) pSMB, &bytes_returned); - cifs_small_buf_release(pSMB); - } else { + else rc = SendReceiveNoRsp(xid, tcon->ses, (char *)pSMB, flags); - /* SMB buffer freed by function above */ - } + cifs_small_buf_release(pSMB); cifs_stats_inc(&tcon->stats.cifs_stats.num_locks); if (rc) cifs_dbg(FYI, "Send error in Lock = %d\n", rc); @@ -2408,6 +2422,7 @@ int resp_buf_type = 0; __u16 params, param_offset, offset, byte_count, count; struct kvec iov[1]; + struct kvec rsp_iov; cifs_dbg(FYI, "Posix Lock\n"); @@ -2469,11 +2484,10 @@ iov[0].iov_base = (char *)pSMB; iov[0].iov_len = be32_to_cpu(pSMB->hdr.smb_buf_length) + 4; rc = SendReceive2(xid, tcon->ses, iov, 1 /* num iovecs */, - &resp_buf_type, timeout); - pSMB = NULL; /* request buf already freed by SendReceive2. Do - not try to free it twice below on exit */ - pSMBr = (struct smb_com_transaction2_sfi_rsp *)iov[0].iov_base; + &resp_buf_type, timeout, &rsp_iov); + pSMBr = (struct smb_com_transaction2_sfi_rsp *)rsp_iov.iov_base; } + cifs_small_buf_release(pSMB); if (rc) { cifs_dbg(FYI, "Send error in Posix Lock = %d\n", rc); @@ -2513,10 +2527,7 @@ } plk_err_exit: - if (pSMB) - cifs_small_buf_release(pSMB); - - free_rsp_buf(resp_buf_type, iov[0].iov_base); + free_rsp_buf(resp_buf_type, rsp_iov.iov_base); /* Note: On -EAGAIN error only caller can retry on handle based calls since file handle passed in no longer valid */ @@ -2543,6 +2554,7 @@ pSMB->LastWriteTime = 0xFFFFFFFF; pSMB->ByteCount = 0; rc = SendReceiveNoRsp(xid, tcon->ses, (char *) pSMB, 0); + cifs_small_buf_release(pSMB); cifs_stats_inc(&tcon->stats.cifs_stats.num_closes); if (rc) { if (rc != -EINTR) { @@ -2572,6 +2584,7 @@ pSMB->FileID = (__u16) smb_file_id; pSMB->ByteCount = 0; rc = SendReceiveNoRsp(xid, tcon->ses, (char *) pSMB, 0); + cifs_small_buf_release(pSMB); cifs_stats_inc(&tcon->stats.cifs_stats.num_flushes); if (rc) cifs_dbg(VFS, "Send error in Flush = %d\n", rc); @@ -3825,6 +3838,7 @@ int buf_type = 0; QUERY_SEC_DESC_REQ *pSMB; struct kvec iov[1]; + struct kvec rsp_iov; cifs_dbg(FYI, "GetCifsACL\n"); @@ -3848,7 +3862,8 @@ iov[0].iov_len = be32_to_cpu(pSMB->hdr.smb_buf_length) + 4; rc = SendReceive2(xid, tcon->ses, iov, 1 /* num iovec */, &buf_type, - 0); + 0, &rsp_iov); + cifs_small_buf_release(pSMB); cifs_stats_inc(&tcon->stats.cifs_stats.num_acl_get); if (rc) { cifs_dbg(FYI, "Send error in QuerySecDesc = %d\n", rc); @@ -3860,11 +3875,11 @@ char *pdata; /* validate_nttransact */ - rc = validate_ntransact(iov[0].iov_base, (char **)&parm, + rc = validate_ntransact(rsp_iov.iov_base, (char **)&parm, &pdata, &parm_len, pbuflen); if (rc) goto qsec_out; - pSMBr = (struct smb_com_ntransact_rsp *)iov[0].iov_base; + pSMBr = (struct smb_com_ntransact_rsp *)rsp_iov.iov_base; cifs_dbg(FYI, "smb %p parm %p data %p\n", pSMBr, parm, *acl_inf); @@ -3901,8 +3916,7 @@ } } qsec_out: - free_rsp_buf(buf_type, iov[0].iov_base); -/* cifs_small_buf_release(pSMB); */ /* Freed earlier now in SendReceive2 */ + free_rsp_buf(buf_type, rsp_iov.iov_base); return rc; } @@ -4671,6 +4685,7 @@ pSMB->FileID = searchHandle; pSMB->ByteCount = 0; rc = SendReceiveNoRsp(xid, tcon->ses, (char *) pSMB, 0); + cifs_small_buf_release(pSMB); if (rc) cifs_dbg(VFS, "Send error in FindClose = %d\n", rc); @@ -5692,6 +5707,7 @@ inc_rfc1001_len(pSMB, byte_count); pSMB->ByteCount = cpu_to_le16(byte_count); rc = SendReceiveNoRsp(xid, tcon->ses, (char *) pSMB, 0); + cifs_small_buf_release(pSMB); if (rc) { cifs_dbg(FYI, "Send error in SetFileInfo (SetFileSize) = %d\n", rc); @@ -5763,6 +5779,7 @@ pSMB->ByteCount = cpu_to_le16(byte_count); memcpy(data_offset, data, sizeof(FILE_BASIC_INFO)); rc = SendReceiveNoRsp(xid, tcon->ses, (char *) pSMB, 0); + cifs_small_buf_release(pSMB); if (rc) cifs_dbg(FYI, "Send error in Set Time (SetFileInfo) = %d\n", rc); @@ -5823,6 +5840,7 @@ pSMB->ByteCount = cpu_to_le16(byte_count); *data_offset = delete_file ? 1 : 0; rc = SendReceiveNoRsp(xid, tcon->ses, (char *) pSMB, 0); + cifs_small_buf_release(pSMB); if (rc) cifs_dbg(FYI, "Send error in SetFileDisposition = %d\n", rc); @@ -6062,6 +6080,7 @@ cifs_fill_unix_set_info((FILE_UNIX_BASIC_INFO *)data_offset, args); rc = SendReceiveNoRsp(xid, tcon->ses, (char *) pSMB, 0); + cifs_small_buf_release(pSMB); if (rc) cifs_dbg(FYI, "Send error in Set Time (SetFileInfo) = %d\n", rc); --- linux-4.8.0.orig/fs/cifs/connect.c +++ linux-4.8.0/fs/cifs/connect.c @@ -52,6 +52,9 @@ #include "nterr.h" #include "rfc1002pdu.h" #include "fscache.h" +#ifdef CONFIG_CIFS_SMB2 +#include "smb2proto.h" +#endif #define CIFS_PORT 445 #define RFC1001_PORT 139 @@ -63,7 +66,6 @@ #define TLINK_IDLE_EXPIRE (600 * HZ) enum { - /* Mount options that take no arguments */ Opt_user_xattr, Opt_nouser_xattr, Opt_forceuid, Opt_noforceuid, @@ -95,7 +97,8 @@ Opt_cruid, Opt_gid, Opt_file_mode, Opt_dirmode, Opt_port, Opt_rsize, Opt_wsize, Opt_actimeo, - Opt_echo_interval, + Opt_echo_interval, Opt_max_credits, + Opt_snapshot, /* Mount options which take string value */ Opt_user, Opt_pass, Opt_ip, @@ -190,6 +193,8 @@ { Opt_wsize, "wsize=%s" }, { Opt_actimeo, "actimeo=%s" }, { Opt_echo_interval, "echo_interval=%s" }, + { Opt_max_credits, "max_credits=%s" }, + { Opt_snapshot, "snapshot=%s" }, { Opt_blank_user, "user=" }, { Opt_blank_user, "username=" }, @@ -411,6 +416,9 @@ } } while (server->tcpStatus == CifsNeedReconnect); + if (server->tcpStatus == CifsNeedNegotiate) + mod_delayed_work(cifsiod_wq, &server->echo, 0); + return rc; } @@ -420,17 +428,25 @@ int rc; struct TCP_Server_Info *server = container_of(work, struct TCP_Server_Info, echo.work); - unsigned long echo_interval = server->echo_interval; + unsigned long echo_interval; /* - * We cannot send an echo if it is disabled or until the - * NEGOTIATE_PROTOCOL request is done, which is indicated by - * server->ops->need_neg() == true. Also, no need to ping if - * we got a response recently. + * If we need to renegotiate, set echo interval to zero to + * immediately call echo service where we can renegotiate. + */ + if (server->tcpStatus == CifsNeedNegotiate) + echo_interval = 0; + else + echo_interval = server->echo_interval; + + /* + * We cannot send an echo if it is disabled. + * Also, no need to ping if we got a response recently. */ if (server->tcpStatus == CifsNeedReconnect || - server->tcpStatus == CifsExiting || server->tcpStatus == CifsNew || + server->tcpStatus == CifsExiting || + server->tcpStatus == CifsNew || (server->ops->can_echo && !server->ops->can_echo(server)) || time_before(jiffies, server->lstrp + echo_interval - HZ)) goto requeue_echo; @@ -441,7 +457,7 @@ server->hostname); requeue_echo: - queue_delayed_work(cifsiod_wq, &server->echo, echo_interval); + queue_delayed_work(cifsiod_wq, &server->echo, server->echo_interval); } static bool @@ -767,6 +783,15 @@ dump_smb(buf, server->total_read); + return cifs_handle_standard(server, mid); +} + +int +cifs_handle_standard(struct TCP_Server_Info *server, struct mid_q_entry *mid) +{ + char *buf = server->large_buf ? server->bigbuf : server->smallbuf; + int length; + /* * We know that we received enough to get to the MID as we * checked the pdu_length earlier. Now check to see @@ -852,12 +877,19 @@ continue; server->total_read += length; - mid_entry = server->ops->find_mid(server, buf); + if (server->ops->is_transform_hdr && + server->ops->receive_transform && + server->ops->is_transform_hdr(buf)) { + length = server->ops->receive_transform(server, + &mid_entry); + } else { + mid_entry = server->ops->find_mid(server, buf); - if (!mid_entry || !mid_entry->receive) - length = standard_receive3(server, mid_entry); - else - length = mid_entry->receive(server, mid_entry); + if (!mid_entry || !mid_entry->receive) + length = standard_receive3(server, mid_entry); + else + length = mid_entry->receive(server, mid_entry); + } if (length < 0) continue; @@ -1586,6 +1618,23 @@ } vol->echo_interval = option; break; + case Opt_snapshot: + if (get_option_ul(args, &option)) { + cifs_dbg(VFS, "%s: Invalid snapshot time\n", + __func__); + goto cifs_parse_mount_err; + } + vol->snapshot_time = option; + break; + case Opt_max_credits: + if (get_option_ul(args, &option) || (option < 20) || + (option > 60000)) { + cifs_dbg(VFS, "%s: Invalid max_credits value\n", + __func__); + goto cifs_parse_mount_err; + } + vol->max_credits = option; + break; /* String Arguments */ @@ -2076,8 +2125,8 @@ return NULL; } -static void -cifs_put_tcp_session(struct TCP_Server_Info *server) +void +cifs_put_tcp_session(struct TCP_Server_Info *server, int from_reconnect) { struct task_struct *task; @@ -2094,11 +2143,24 @@ cancel_delayed_work_sync(&server->echo); +#ifdef CONFIG_CIFS_SMB2 + if (from_reconnect) + /* + * Avoid deadlock here: reconnect work calls + * cifs_put_tcp_session() at its end. Need to be sure + * that reconnect work does nothing with server pointer after + * that step. + */ + cancel_delayed_work(&server->reconnect); + else + cancel_delayed_work_sync(&server->reconnect); +#endif + spin_lock(&GlobalMid_Lock); server->tcpStatus = CifsExiting; spin_unlock(&GlobalMid_Lock); - cifs_crypto_shash_release(server); + cifs_crypto_secmech_release(server); cifs_fscache_release_client_cookie(server); kfree(server->session_key.response); @@ -2158,12 +2220,16 @@ INIT_LIST_HEAD(&tcp_ses->tcp_ses_list); INIT_LIST_HEAD(&tcp_ses->smb_ses_list); INIT_DELAYED_WORK(&tcp_ses->echo, cifs_echo_request); +#ifdef CONFIG_CIFS_SMB2 + INIT_DELAYED_WORK(&tcp_ses->reconnect, smb2_reconnect_server); + mutex_init(&tcp_ses->reconnect_mutex); +#endif memcpy(&tcp_ses->srcaddr, &volume_info->srcaddr, sizeof(tcp_ses->srcaddr)); memcpy(&tcp_ses->dstaddr, &volume_info->dstaddr, sizeof(tcp_ses->dstaddr)); #ifdef CONFIG_CIFS_SMB2 - get_random_bytes(tcp_ses->client_guid, SMB2_CLIENT_GUID_SIZE); + generate_random_uuid(tcp_ses->client_guid); #endif /* * at this point we are the only ones with the pointer @@ -2213,7 +2279,7 @@ return tcp_ses; out_err_crypto_release: - cifs_crypto_shash_release(tcp_ses); + cifs_crypto_secmech_release(tcp_ses); put_net(cifs_net_ns(tcp_ses)); @@ -2316,7 +2382,7 @@ spin_unlock(&cifs_tcp_ses_lock); sesInfoFree(ses); - cifs_put_tcp_session(server); + cifs_put_tcp_session(server, 0); } #ifdef CONFIG_KEYS @@ -2490,7 +2556,7 @@ mutex_unlock(&ses->session_mutex); /* existing SMB ses has a server reference already */ - cifs_put_tcp_session(server); + cifs_put_tcp_session(server, 0); free_xid(xid); return ses; } @@ -2552,17 +2618,23 @@ return ERR_PTR(rc); } -static int match_tcon(struct cifs_tcon *tcon, const char *unc) +static int match_tcon(struct cifs_tcon *tcon, struct smb_vol *volume_info) { if (tcon->tidStatus == CifsExiting) return 0; - if (strncmp(tcon->treeName, unc, MAX_TREE_SIZE)) + if (strncmp(tcon->treeName, volume_info->UNC, MAX_TREE_SIZE)) return 0; + if (tcon->seal != volume_info->seal) + return 0; +#ifdef CONFIG_CIFS_SMB2 + if (tcon->snapshot_time != volume_info->snapshot_time) + return 0; +#endif /* CONFIG_CIFS_SMB2 */ return 1; } static struct cifs_tcon * -cifs_find_tcon(struct cifs_ses *ses, const char *unc) +cifs_find_tcon(struct cifs_ses *ses, struct smb_vol *volume_info) { struct list_head *tmp; struct cifs_tcon *tcon; @@ -2570,7 +2642,7 @@ spin_lock(&cifs_tcp_ses_lock); list_for_each(tmp, &ses->tcon_list) { tcon = list_entry(tmp, struct cifs_tcon, tcon_list); - if (!match_tcon(tcon, unc)) + if (!match_tcon(tcon, volume_info)) continue; ++tcon->tc_count; spin_unlock(&cifs_tcp_ses_lock); @@ -2580,7 +2652,7 @@ return NULL; } -static void +void cifs_put_tcon(struct cifs_tcon *tcon) { unsigned int xid; @@ -2612,13 +2684,11 @@ int rc, xid; struct cifs_tcon *tcon; - tcon = cifs_find_tcon(ses, volume_info->UNC); + tcon = cifs_find_tcon(ses, volume_info); if (tcon) { cifs_dbg(FYI, "Found match on UNC path\n"); /* existing tcon already has a reference */ cifs_put_smb_ses(ses); - if (tcon->seal != volume_info->seal) - cifs_dbg(VFS, "transport encryption setting conflicts with existing tid\n"); return tcon; } @@ -2633,6 +2703,22 @@ goto out_fail; } + if (volume_info->snapshot_time) { +#ifdef CONFIG_CIFS_SMB2 + if (ses->server->vals->protocol_id == 0) { + cifs_dbg(VFS, + "Use SMB2 or later for snapshot mount option\n"); + rc = -EOPNOTSUPP; + goto out_fail; + } else + tcon->snapshot_time = volume_info->snapshot_time; +#else + cifs_dbg(VFS, "Snapshot mount option requires SMB2 support\n"); + rc = -EOPNOTSUPP; + goto out_fail; +#endif /* CONFIG_CIFS_SMB2 */ + } + tcon->ses = ses; if (volume_info->password) { tcon->password = kstrdup(volume_info->password, GFP_KERNEL); @@ -2658,7 +2744,6 @@ tcon->Flags &= ~SMB_SHARE_IS_IN_DFS; cifs_dbg(FYI, "DFS disabled (%d)\n", tcon->Flags); } - tcon->seal = volume_info->seal; tcon->use_persistent = false; /* check if SMB2 or later, CIFS does not support persistent handles */ if (volume_info->persistent) { @@ -2695,6 +2780,24 @@ tcon->use_resilient = true; } + if (volume_info->seal) { + if (ses->server->vals->protocol_id == 0) { + cifs_dbg(VFS, + "SMB3 or later required for encryption\n"); + rc = -EOPNOTSUPP; + goto out_fail; +#ifdef CONFIG_CIFS_SMB2 + } else if (tcon->ses->server->capabilities & + SMB2_GLOBAL_CAP_ENCRYPTION) + tcon->seal = true; + else { + cifs_dbg(VFS, "Encryption is not supported on share\n"); + rc = -EOPNOTSUPP; + goto out_fail; +#endif /* CONFIG_CIFS_SMB2 */ + } + } + /* * We can have only one retry value for a connection to a share so for * resources mounted more than once to the same server share the last @@ -2826,7 +2929,7 @@ if (!match_server(tcp_srv, volume_info) || !match_session(ses, volume_info) || - !match_tcon(tcon, volume_info->UNC) || + !match_tcon(tcon, volume_info) || !match_prepath(sb, mnt_data)) { rc = 0; goto out; @@ -3598,7 +3701,11 @@ bdi_destroy(&cifs_sb->bdi); goto out; } - + if ((volume_info->max_credits < 20) || + (volume_info->max_credits > 60000)) + server->max_credits = SMB2_MAX_CREDITS_AVAILABLE; + else + server->max_credits = volume_info->max_credits; /* get a reference to a SMB session */ ses = cifs_get_smb_ses(server, volume_info); if (IS_ERR(ses)) { @@ -3688,14 +3795,16 @@ goto mount_fail_check; } - rc = cifs_are_all_path_components_accessible(server, + if (rc != -EREMOTE) { + rc = cifs_are_all_path_components_accessible(server, xid, tcon, cifs_sb, full_path); - if (rc != 0) { - cifs_dbg(VFS, "cannot query dirs between root and final path, " - "enabling CIFS_MOUNT_USE_PREFIX_PATH\n"); - cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH; - rc = 0; + if (rc != 0) { + cifs_dbg(VFS, "cannot query dirs between root and final path, " + "enabling CIFS_MOUNT_USE_PREFIX_PATH\n"); + cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH; + rc = 0; + } } kfree(full_path); } @@ -3760,7 +3869,7 @@ else if (ses) cifs_put_smb_ses(ses); else - cifs_put_tcp_session(server); + cifs_put_tcp_session(server, 0); bdi_destroy(&cifs_sb->bdi); } @@ -4071,7 +4180,7 @@ ses = cifs_get_smb_ses(master_tcon->ses->server, vol_info); if (IS_ERR(ses)) { tcon = (struct cifs_tcon *)ses; - cifs_put_tcp_session(master_tcon->ses->server); + cifs_put_tcp_session(master_tcon->ses->server, 0); goto out; } --- linux-4.8.0.orig/fs/cifs/file.c +++ linux-4.8.0/fs/cifs/file.c @@ -305,6 +305,7 @@ cfile->tlink = cifs_get_tlink(tlink); INIT_WORK(&cfile->oplock_break, cifs_oplock_break); mutex_init(&cfile->fh_mutex); + spin_lock_init(&cfile->file_info_lock); cifs_sb_active(inode->i_sb); @@ -317,7 +318,7 @@ oplock = 0; } - spin_lock(&cifs_file_list_lock); + spin_lock(&tcon->open_file_lock); if (fid->pending_open->oplock != CIFS_OPLOCK_NO_CHANGE && oplock) oplock = fid->pending_open->oplock; list_del(&fid->pending_open->olist); @@ -326,12 +327,13 @@ server->ops->set_fid(cfile, fid, oplock); list_add(&cfile->tlist, &tcon->openFileList); + /* if readable file instance put first in list*/ if (file->f_mode & FMODE_READ) list_add(&cfile->flist, &cinode->openFileList); else list_add_tail(&cfile->flist, &cinode->openFileList); - spin_unlock(&cifs_file_list_lock); + spin_unlock(&tcon->open_file_lock); if (fid->purge_cache) cifs_zap_mapping(inode); @@ -343,16 +345,16 @@ struct cifsFileInfo * cifsFileInfo_get(struct cifsFileInfo *cifs_file) { - spin_lock(&cifs_file_list_lock); + spin_lock(&cifs_file->file_info_lock); cifsFileInfo_get_locked(cifs_file); - spin_unlock(&cifs_file_list_lock); + spin_unlock(&cifs_file->file_info_lock); return cifs_file; } /* * Release a reference on the file private data. This may involve closing * the filehandle out on the server. Must be called without holding - * cifs_file_list_lock. + * tcon->open_file_lock and cifs_file->file_info_lock. */ void cifsFileInfo_put(struct cifsFileInfo *cifs_file) { @@ -367,11 +369,15 @@ struct cifs_pending_open open; bool oplock_break_cancelled; - spin_lock(&cifs_file_list_lock); + spin_lock(&tcon->open_file_lock); + + spin_lock(&cifs_file->file_info_lock); if (--cifs_file->count > 0) { - spin_unlock(&cifs_file_list_lock); + spin_unlock(&cifs_file->file_info_lock); + spin_unlock(&tcon->open_file_lock); return; } + spin_unlock(&cifs_file->file_info_lock); if (server->ops->get_lease_key) server->ops->get_lease_key(inode, &fid); @@ -395,7 +401,8 @@ set_bit(CIFS_INO_INVALID_MAPPING, &cifsi->flags); cifs_set_oplock_level(cifsi, 0); } - spin_unlock(&cifs_file_list_lock); + + spin_unlock(&tcon->open_file_lock); oplock_break_cancelled = cancel_work_sync(&cifs_file->oplock_break); @@ -772,10 +779,10 @@ server = tcon->ses->server; cifs_dbg(FYI, "Freeing private data in close dir\n"); - spin_lock(&cifs_file_list_lock); + spin_lock(&cfile->file_info_lock); if (server->ops->dir_needs_close(cfile)) { cfile->invalidHandle = true; - spin_unlock(&cifs_file_list_lock); + spin_unlock(&cfile->file_info_lock); if (server->ops->close_dir) rc = server->ops->close_dir(xid, tcon, &cfile->fid); else @@ -784,7 +791,7 @@ /* not much we can do if it fails anyway, ignore rc */ rc = 0; } else - spin_unlock(&cifs_file_list_lock); + spin_unlock(&cfile->file_info_lock); buf = cfile->srch_inf.ntwrk_buf_start; if (buf) { @@ -1728,12 +1735,13 @@ { struct cifsFileInfo *open_file = NULL; struct cifs_sb_info *cifs_sb = CIFS_SB(cifs_inode->vfs_inode.i_sb); + struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb); /* only filter by fsuid on multiuser mounts */ if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER)) fsuid_only = false; - spin_lock(&cifs_file_list_lock); + spin_lock(&tcon->open_file_lock); /* we could simply get the first_list_entry since write-only entries are always at the end of the list but since the first entry might have a close pending, we go through the whole list */ @@ -1744,8 +1752,8 @@ if (!open_file->invalidHandle) { /* found a good file */ /* lock it so it will not be closed on us */ - cifsFileInfo_get_locked(open_file); - spin_unlock(&cifs_file_list_lock); + cifsFileInfo_get(open_file); + spin_unlock(&tcon->open_file_lock); return open_file; } /* else might as well continue, and look for another, or simply have the caller reopen it @@ -1753,7 +1761,7 @@ } else /* write only file */ break; /* write only files are last so must be done */ } - spin_unlock(&cifs_file_list_lock); + spin_unlock(&tcon->open_file_lock); return NULL; } @@ -1762,6 +1770,7 @@ { struct cifsFileInfo *open_file, *inv_file = NULL; struct cifs_sb_info *cifs_sb; + struct cifs_tcon *tcon; bool any_available = false; int rc; unsigned int refind = 0; @@ -1777,15 +1786,16 @@ } cifs_sb = CIFS_SB(cifs_inode->vfs_inode.i_sb); + tcon = cifs_sb_master_tcon(cifs_sb); /* only filter by fsuid on multiuser mounts */ if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER)) fsuid_only = false; - spin_lock(&cifs_file_list_lock); + spin_lock(&tcon->open_file_lock); refind_writable: if (refind > MAX_REOPEN_ATT) { - spin_unlock(&cifs_file_list_lock); + spin_unlock(&tcon->open_file_lock); return NULL; } list_for_each_entry(open_file, &cifs_inode->openFileList, flist) { @@ -1796,8 +1806,8 @@ if (OPEN_FMODE(open_file->f_flags) & FMODE_WRITE) { if (!open_file->invalidHandle) { /* found a good writable file */ - cifsFileInfo_get_locked(open_file); - spin_unlock(&cifs_file_list_lock); + cifsFileInfo_get(open_file); + spin_unlock(&tcon->open_file_lock); return open_file; } else { if (!inv_file) @@ -1813,24 +1823,24 @@ if (inv_file) { any_available = false; - cifsFileInfo_get_locked(inv_file); + cifsFileInfo_get(inv_file); } - spin_unlock(&cifs_file_list_lock); + spin_unlock(&tcon->open_file_lock); if (inv_file) { rc = cifs_reopen_file(inv_file, false); if (!rc) return inv_file; else { - spin_lock(&cifs_file_list_lock); + spin_lock(&tcon->open_file_lock); list_move_tail(&inv_file->flist, &cifs_inode->openFileList); - spin_unlock(&cifs_file_list_lock); + spin_unlock(&tcon->open_file_lock); cifsFileInfo_put(inv_file); - spin_lock(&cifs_file_list_lock); ++refind; inv_file = NULL; + spin_lock(&tcon->open_file_lock); goto refind_writable; } } @@ -2854,8 +2864,9 @@ } static int -cifs_uncached_read_into_pages(struct TCP_Server_Info *server, - struct cifs_readdata *rdata, unsigned int len) +uncached_fill_pages(struct TCP_Server_Info *server, + struct cifs_readdata *rdata, struct iov_iter *iter, + unsigned int len) { int result = 0; unsigned int i; @@ -2884,7 +2895,10 @@ rdata->tailsz = len; len = 0; } - result = cifs_read_page_from_socket(server, page, n); + if (iter) + result = copy_page_from_iter(page, 0, n, iter); + else + result = cifs_read_page_from_socket(server, page, n); if (result < 0) break; @@ -2896,6 +2910,21 @@ } static int +cifs_uncached_read_into_pages(struct TCP_Server_Info *server, + struct cifs_readdata *rdata, unsigned int len) +{ + return uncached_fill_pages(server, rdata, NULL, len); +} + +static int +cifs_uncached_copy_into_pages(struct TCP_Server_Info *server, + struct cifs_readdata *rdata, + struct iov_iter *iter) +{ + return uncached_fill_pages(server, rdata, iter, iter->count); +} + +static int cifs_send_async_read(loff_t offset, size_t len, struct cifsFileInfo *open_file, struct cifs_sb_info *cifs_sb, struct list_head *rdata_list) { @@ -2942,6 +2971,7 @@ rdata->pid = pid; rdata->pagesz = PAGE_SIZE; rdata->read_into_pages = cifs_uncached_read_into_pages; + rdata->copy_into_pages = cifs_uncached_copy_into_pages; rdata->credits = credits; if (!rdata->cfile->invalidHandle || @@ -3292,8 +3322,9 @@ } static int -cifs_readpages_read_into_pages(struct TCP_Server_Info *server, - struct cifs_readdata *rdata, unsigned int len) +readpages_fill_pages(struct TCP_Server_Info *server, + struct cifs_readdata *rdata, struct iov_iter *iter, + unsigned int len) { int result = 0; unsigned int i; @@ -3347,7 +3378,10 @@ continue; } - result = cifs_read_page_from_socket(server, page, n); + if (iter) + result = copy_page_from_iter(page, 0, n, iter); + else + result = cifs_read_page_from_socket(server, page, n); if (result < 0) break; @@ -3359,6 +3393,21 @@ } static int +cifs_readpages_read_into_pages(struct TCP_Server_Info *server, + struct cifs_readdata *rdata, unsigned int len) +{ + return readpages_fill_pages(server, rdata, NULL, len); +} + +static int +cifs_readpages_copy_into_pages(struct TCP_Server_Info *server, + struct cifs_readdata *rdata, + struct iov_iter *iter) +{ + return readpages_fill_pages(server, rdata, iter, iter->count); +} + +static int readpages_get_pages(struct address_space *mapping, struct list_head *page_list, unsigned int rsize, struct list_head *tmplist, unsigned int *nr_pages, loff_t *offset, unsigned int *bytes) @@ -3512,6 +3561,7 @@ rdata->pid = pid; rdata->pagesz = PAGE_SIZE; rdata->read_into_pages = cifs_readpages_read_into_pages; + rdata->copy_into_pages = cifs_readpages_copy_into_pages; rdata->credits = credits; list_for_each_entry_safe(page, tpage, &tmplist, lru) { @@ -3618,15 +3668,17 @@ static int is_inode_writable(struct cifsInodeInfo *cifs_inode) { struct cifsFileInfo *open_file; + struct cifs_tcon *tcon = + cifs_sb_master_tcon(CIFS_SB(cifs_inode->vfs_inode.i_sb)); - spin_lock(&cifs_file_list_lock); + spin_lock(&tcon->open_file_lock); list_for_each_entry(open_file, &cifs_inode->openFileList, flist) { if (OPEN_FMODE(open_file->f_flags) & FMODE_WRITE) { - spin_unlock(&cifs_file_list_lock); + spin_unlock(&tcon->open_file_lock); return 1; } } - spin_unlock(&cifs_file_list_lock); + spin_unlock(&tcon->open_file_lock); return 0; } --- linux-4.8.0.orig/fs/cifs/misc.c +++ linux-4.8.0/fs/cifs/misc.c @@ -120,6 +120,7 @@ ++ret_buf->tc_count; INIT_LIST_HEAD(&ret_buf->openFileList); INIT_LIST_HEAD(&ret_buf->tcon_list); + spin_lock_init(&ret_buf->open_file_lock); #ifdef CONFIG_CIFS_STATS spin_lock_init(&ret_buf->stat_lock); #endif @@ -465,7 +466,7 @@ continue; cifs_stats_inc(&tcon->stats.cifs_stats.num_oplock_brks); - spin_lock(&cifs_file_list_lock); + spin_lock(&tcon->open_file_lock); list_for_each(tmp2, &tcon->openFileList) { netfile = list_entry(tmp2, struct cifsFileInfo, tlist); @@ -495,11 +496,11 @@ &netfile->oplock_break); netfile->oplock_break_cancelled = false; - spin_unlock(&cifs_file_list_lock); + spin_unlock(&tcon->open_file_lock); spin_unlock(&cifs_tcp_ses_lock); return true; } - spin_unlock(&cifs_file_list_lock); + spin_unlock(&tcon->open_file_lock); spin_unlock(&cifs_tcp_ses_lock); cifs_dbg(FYI, "No matching file for oplock break\n"); return true; @@ -613,9 +614,9 @@ void cifs_del_pending_open(struct cifs_pending_open *open) { - spin_lock(&cifs_file_list_lock); + spin_lock(&tlink_tcon(open->tlink)->open_file_lock); list_del(&open->olist); - spin_unlock(&cifs_file_list_lock); + spin_unlock(&tlink_tcon(open->tlink)->open_file_lock); } void @@ -635,7 +636,7 @@ cifs_add_pending_open(struct cifs_fid *fid, struct tcon_link *tlink, struct cifs_pending_open *open) { - spin_lock(&cifs_file_list_lock); + spin_lock(&tlink_tcon(tlink)->open_file_lock); cifs_add_pending_open_locked(fid, tlink, open); - spin_unlock(&cifs_file_list_lock); + spin_unlock(&tlink_tcon(open->tlink)->open_file_lock); } --- linux-4.8.0.orig/fs/cifs/readdir.c +++ linux-4.8.0/fs/cifs/readdir.c @@ -597,14 +597,14 @@ is_dir_changed(file)) || (index_to_find < first_entry_in_buffer)) { /* close and restart search */ cifs_dbg(FYI, "search backing up - close and restart search\n"); - spin_lock(&cifs_file_list_lock); + spin_lock(&cfile->file_info_lock); if (server->ops->dir_needs_close(cfile)) { cfile->invalidHandle = true; - spin_unlock(&cifs_file_list_lock); + spin_unlock(&cfile->file_info_lock); if (server->ops->close_dir) server->ops->close_dir(xid, tcon, &cfile->fid); } else - spin_unlock(&cifs_file_list_lock); + spin_unlock(&cfile->file_info_lock); if (cfile->srch_inf.ntwrk_buf_start) { cifs_dbg(FYI, "freeing SMB ff cache buf on search rewind\n"); if (cfile->srch_inf.smallBuf) --- linux-4.8.0.orig/fs/cifs/sess.c +++ linux-4.8.0/fs/cifs/sess.c @@ -344,13 +344,12 @@ /* BB is NTLMV2 session security format easier to use here? */ flags = NTLMSSP_NEGOTIATE_56 | NTLMSSP_REQUEST_TARGET | NTLMSSP_NEGOTIATE_128 | NTLMSSP_NEGOTIATE_UNICODE | - NTLMSSP_NEGOTIATE_NTLM | NTLMSSP_NEGOTIATE_EXTENDED_SEC; - if (ses->server->sign) { + NTLMSSP_NEGOTIATE_NTLM | NTLMSSP_NEGOTIATE_EXTENDED_SEC | + NTLMSSP_NEGOTIATE_SEAL; + if (ses->server->sign) flags |= NTLMSSP_NEGOTIATE_SIGN; - if (!ses->server->session_estab || - ses->ntlmssp->sesskey_per_smbsess) - flags |= NTLMSSP_NEGOTIATE_KEY_XCH; - } + if (!ses->server->session_estab || ses->ntlmssp->sesskey_per_smbsess) + flags |= NTLMSSP_NEGOTIATE_KEY_XCH; sec_blob->NegotiateFlags = cpu_to_le32(flags); @@ -407,13 +406,12 @@ flags = NTLMSSP_NEGOTIATE_56 | NTLMSSP_REQUEST_TARGET | NTLMSSP_NEGOTIATE_TARGET_INFO | NTLMSSP_NEGOTIATE_128 | NTLMSSP_NEGOTIATE_UNICODE | - NTLMSSP_NEGOTIATE_NTLM | NTLMSSP_NEGOTIATE_EXTENDED_SEC; - if (ses->server->sign) { + NTLMSSP_NEGOTIATE_NTLM | NTLMSSP_NEGOTIATE_EXTENDED_SEC | + NTLMSSP_NEGOTIATE_SEAL; + if (ses->server->sign) flags |= NTLMSSP_NEGOTIATE_SIGN; - if (!ses->server->session_estab || - ses->ntlmssp->sesskey_per_smbsess) - flags |= NTLMSSP_NEGOTIATE_KEY_XCH; - } + if (!ses->server->session_estab || ses->ntlmssp->sesskey_per_smbsess) + flags |= NTLMSSP_NEGOTIATE_KEY_XCH; tmp = *pbuffer + sizeof(AUTHENTICATE_MESSAGE); sec_blob->NegotiateFlags = cpu_to_le32(flags); @@ -652,6 +650,7 @@ int rc; struct smb_hdr *smb_buf = (struct smb_hdr *) sess_data->iov[0].iov_base; __u16 count; + struct kvec rsp_iov = { NULL, 0 }; count = sess_data->iov[1].iov_len + sess_data->iov[2].iov_len; smb_buf->smb_buf_length = @@ -661,7 +660,9 @@ rc = SendReceive2(sess_data->xid, sess_data->ses, sess_data->iov, 3 /* num_iovecs */, &sess_data->buf0_type, - CIFS_LOG_ERROR); + CIFS_LOG_ERROR, &rsp_iov); + cifs_small_buf_release(sess_data->iov[0].iov_base); + memcpy(&sess_data->iov[0], &rsp_iov, sizeof(struct kvec)); return rc; } --- linux-4.8.0.orig/fs/cifs/smb1ops.c +++ linux-4.8.0/fs/cifs/smb1ops.c @@ -36,11 +36,11 @@ * SMB_COM_NT_CANCEL request and then sends it. */ static int -send_nt_cancel(struct TCP_Server_Info *server, void *buf, +send_nt_cancel(struct TCP_Server_Info *server, struct smb_rqst *rqst, struct mid_q_entry *mid) { int rc = 0; - struct smb_hdr *in_buf = (struct smb_hdr *)buf; + struct smb_hdr *in_buf = (struct smb_hdr *)rqst->rq_iov[0].iov_base; /* -4 for RFC1001 length and +2 for BCC field */ in_buf->smb_buf_length = cpu_to_be32(sizeof(struct smb_hdr) - 4 + 2); @@ -1015,6 +1015,15 @@ return !cfile->srch_inf.endOfSearch && !cfile->invalidHandle; } +static bool +cifs_can_echo(struct TCP_Server_Info *server) +{ + if (server->tcpStatus == CifsGood) + return true; + + return false; +} + struct smb_version_operations smb1_operations = { .send_cancel = send_nt_cancel, .compare_fids = cifs_compare_fids, @@ -1049,6 +1058,7 @@ .get_dfs_refer = CIFSGetDFSRefer, .qfs_tcon = cifs_qfs_tcon, .is_path_accessible = cifs_is_path_accessible, + .can_echo = cifs_can_echo, .query_path_info = cifs_query_path_info, .query_file_info = cifs_query_file_info, .get_srv_inum = cifs_get_srv_inum, --- linux-4.8.0.orig/fs/cifs/smb2file.c +++ linux-4.8.0/fs/cifs/smb2file.c @@ -260,7 +260,7 @@ * and check it for zero before using. */ max_buf = tlink_tcon(cfile->tlink)->ses->server->maxBuf; - if (!max_buf) { + if (max_buf < sizeof(struct smb2_lock_element)) { free_xid(xid); return -EINVAL; } --- linux-4.8.0.orig/fs/cifs/smb2glob.h +++ linux-4.8.0/fs/cifs/smb2glob.h @@ -61,4 +61,9 @@ /* Maximum buffer size value we can send with 1 credit */ #define SMB2_MAX_BUFFER_SIZE 65536 +static inline struct smb2_sync_hdr *get_sync_hdr(void *buf) +{ + return &(((struct smb2_hdr *)buf)->sync_hdr); +} + #endif /* _SMB2_GLOB_H */ --- linux-4.8.0.orig/fs/cifs/smb2inode.c +++ linux-4.8.0/fs/cifs/smb2inode.c @@ -266,9 +266,15 @@ struct tcon_link *tlink; int rc; + if ((buf->CreationTime == 0) && (buf->LastAccessTime == 0) && + (buf->LastWriteTime == 0) && (buf->ChangeTime) && + (buf->Attributes == 0)) + return 0; /* would be a no op, no sense sending this */ + tlink = cifs_sb_tlink(cifs_sb); if (IS_ERR(tlink)) return PTR_ERR(tlink); + rc = smb2_open_op_close(xid, tlink_tcon(tlink), cifs_sb, full_path, FILE_WRITE_ATTRIBUTES, FILE_OPEN, 0, buf, SMB2_OP_SET_INFO); --- linux-4.8.0.orig/fs/cifs/smb2maperror.c +++ linux-4.8.0/fs/cifs/smb2maperror.c @@ -26,6 +26,7 @@ #include "smb2pdu.h" #include "smb2proto.h" #include "smb2status.h" +#include "smb2glob.h" struct status_to_posix_error { __le32 smb2_status; @@ -2449,10 +2450,10 @@ int map_smb2_to_linux_error(char *buf, bool log_err) { - struct smb2_hdr *hdr = (struct smb2_hdr *)buf; + struct smb2_sync_hdr *shdr = get_sync_hdr(buf); unsigned int i; int rc = -EIO; - __le32 smb2err = hdr->Status; + __le32 smb2err = shdr->Status; if (smb2err == 0) return 0; --- linux-4.8.0.orig/fs/cifs/smb2misc.c +++ linux-4.8.0/fs/cifs/smb2misc.c @@ -28,31 +28,32 @@ #include "cifs_debug.h" #include "cifs_unicode.h" #include "smb2status.h" +#include "smb2glob.h" static int -check_smb2_hdr(struct smb2_hdr *hdr, __u64 mid) +check_smb2_hdr(struct smb2_sync_hdr *shdr, __u64 mid) { - __u64 wire_mid = le64_to_cpu(hdr->MessageId); + __u64 wire_mid = le64_to_cpu(shdr->MessageId); /* * Make sure that this really is an SMB, that it is a response, * and that the message ids match. */ - if ((hdr->ProtocolId == SMB2_PROTO_NUMBER) && + if ((shdr->ProtocolId == SMB2_PROTO_NUMBER) && (mid == wire_mid)) { - if (hdr->Flags & SMB2_FLAGS_SERVER_TO_REDIR) + if (shdr->Flags & SMB2_FLAGS_SERVER_TO_REDIR) return 0; else { /* only one valid case where server sends us request */ - if (hdr->Command == SMB2_OPLOCK_BREAK) + if (shdr->Command == SMB2_OPLOCK_BREAK) return 0; else cifs_dbg(VFS, "Received Request not response\n"); } } else { /* bad signature or mid */ - if (hdr->ProtocolId != SMB2_PROTO_NUMBER) + if (shdr->ProtocolId != SMB2_PROTO_NUMBER) cifs_dbg(VFS, "Bad protocol string signature header %x\n", - le32_to_cpu(hdr->ProtocolId)); + le32_to_cpu(shdr->ProtocolId)); if (mid != wire_mid) cifs_dbg(VFS, "Mids do not match: %llu and %llu\n", mid, wire_mid); @@ -95,8 +96,9 @@ int smb2_check_message(char *buf, unsigned int length, struct TCP_Server_Info *srvr) { - struct smb2_hdr *hdr = (struct smb2_hdr *)buf; - struct smb2_pdu *pdu = (struct smb2_pdu *)hdr; + struct smb2_pdu *pdu = (struct smb2_pdu *)buf; + struct smb2_hdr *hdr = &pdu->hdr; + struct smb2_sync_hdr *shdr = get_sync_hdr(buf); __u64 mid; __u32 len = get_rfc1002_length(buf); __u32 clc_len; /* calculated length */ @@ -111,7 +113,7 @@ * ie Validate the wct via smb2_struct_sizes table above */ - if (hdr->ProtocolId == SMB2_TRANSFORM_PROTO_NUM) { + if (shdr->ProtocolId == SMB2_TRANSFORM_PROTO_NUM) { struct smb2_transform_hdr *thdr = (struct smb2_transform_hdr *)buf; struct cifs_ses *ses = NULL; @@ -133,10 +135,10 @@ } } - - mid = le64_to_cpu(hdr->MessageId); + mid = le64_to_cpu(shdr->MessageId); if (length < sizeof(struct smb2_pdu)) { - if ((length >= sizeof(struct smb2_hdr)) && (hdr->Status != 0)) { + if ((length >= sizeof(struct smb2_hdr)) + && (shdr->Status != 0)) { pdu->StructureSize2 = 0; /* * As with SMB/CIFS, on some error cases servers may @@ -154,29 +156,30 @@ return 1; } - if (check_smb2_hdr(hdr, mid)) + if (check_smb2_hdr(shdr, mid)) return 1; - if (hdr->StructureSize != SMB2_HEADER_STRUCTURE_SIZE) { + if (shdr->StructureSize != SMB2_HEADER_STRUCTURE_SIZE) { cifs_dbg(VFS, "Illegal structure size %u\n", - le16_to_cpu(hdr->StructureSize)); + le16_to_cpu(shdr->StructureSize)); return 1; } - command = le16_to_cpu(hdr->Command); + command = le16_to_cpu(shdr->Command); if (command >= NUMBER_OF_SMB2_COMMANDS) { cifs_dbg(VFS, "Illegal SMB2 command %d\n", command); return 1; } if (smb2_rsp_struct_sizes[command] != pdu->StructureSize2) { - if (command != SMB2_OPLOCK_BREAK_HE && (hdr->Status == 0 || + if (command != SMB2_OPLOCK_BREAK_HE && (shdr->Status == 0 || pdu->StructureSize2 != SMB2_ERROR_STRUCTURE_SIZE2)) { /* error packets have 9 byte structure size */ cifs_dbg(VFS, "Illegal response size %u for command %d\n", le16_to_cpu(pdu->StructureSize2), command); return 1; - } else if (command == SMB2_OPLOCK_BREAK_HE && (hdr->Status == 0) + } else if (command == SMB2_OPLOCK_BREAK_HE + && (shdr->Status == 0) && (le16_to_cpu(pdu->StructureSize2) != 44) && (le16_to_cpu(pdu->StructureSize2) != 36)) { /* special case for SMB2.1 lease break message */ @@ -199,7 +202,7 @@ clc_len, 4 + len, mid); /* create failed on symlink */ if (command == SMB2_CREATE_HE && - hdr->Status == STATUS_STOPPED_ON_SYMLINK) + shdr->Status == STATUS_STOPPED_ON_SYMLINK) return 0; /* Windows 7 server returns 24 bytes more */ if (clc_len + 20 == len && command == SMB2_OPLOCK_BREAK_HE) @@ -261,11 +264,12 @@ char * smb2_get_data_area_len(int *off, int *len, struct smb2_hdr *hdr) { + struct smb2_sync_hdr *shdr = get_sync_hdr(hdr); *off = 0; *len = 0; /* error responses do not have data area */ - if (hdr->Status && hdr->Status != STATUS_MORE_PROCESSING_REQUIRED && + if (shdr->Status && shdr->Status != STATUS_MORE_PROCESSING_REQUIRED && (((struct smb2_err_rsp *)hdr)->StructureSize) == SMB2_ERROR_STRUCTURE_SIZE2) return NULL; @@ -275,7 +279,7 @@ * of the data buffer offset and data buffer length for the particular * command. */ - switch (hdr->Command) { + switch (shdr->Command) { case SMB2_NEGOTIATE: *off = le16_to_cpu( ((struct smb2_negotiate_rsp *)hdr)->SecurityBufferOffset); @@ -346,7 +350,7 @@ /* return pointer to beginning of data area, ie offset from SMB start */ if ((*off != 0) && (*len != 0)) - return (char *)(&hdr->ProtocolId) + *off; + return (char *)shdr + *off; else return NULL; } @@ -358,12 +362,13 @@ unsigned int smb2_calc_size(void *buf) { - struct smb2_hdr *hdr = (struct smb2_hdr *)buf; - struct smb2_pdu *pdu = (struct smb2_pdu *)hdr; + struct smb2_pdu *pdu = (struct smb2_pdu *)buf; + struct smb2_hdr *hdr = &pdu->hdr; + struct smb2_sync_hdr *shdr = get_sync_hdr(hdr); int offset; /* the offset from the beginning of SMB to data area */ int data_length; /* the length of the variable length data area */ /* Structure Size has already been checked to make sure it is 64 */ - int len = 4 + le16_to_cpu(pdu->hdr.StructureSize); + int len = 4 + le16_to_cpu(shdr->StructureSize); /* * StructureSize2, ie length of fixed parameter area has already @@ -371,7 +376,7 @@ */ len += le16_to_cpu(pdu->StructureSize2); - if (has_smb2_data_area[le16_to_cpu(hdr->Command)] == false) + if (has_smb2_data_area[le16_to_cpu(shdr->Command)] == false) goto calc_size_exit; smb2_get_data_area_len(&offset, &data_length, hdr); @@ -549,19 +554,19 @@ list_for_each(tmp1, &server->smb_ses_list) { ses = list_entry(tmp1, struct cifs_ses, smb_ses_list); - spin_lock(&cifs_file_list_lock); list_for_each(tmp2, &ses->tcon_list) { tcon = list_entry(tmp2, struct cifs_tcon, tcon_list); + spin_lock(&tcon->open_file_lock); cifs_stats_inc( &tcon->stats.cifs_stats.num_oplock_brks); if (smb2_tcon_has_lease(tcon, rsp, lw)) { - spin_unlock(&cifs_file_list_lock); + spin_unlock(&tcon->open_file_lock); spin_unlock(&cifs_tcp_ses_lock); return true; } + spin_unlock(&tcon->open_file_lock); } - spin_unlock(&cifs_file_list_lock); } } spin_unlock(&cifs_tcp_ses_lock); @@ -582,7 +587,7 @@ cifs_dbg(FYI, "Checking for oplock break\n"); - if (rsp->hdr.Command != SMB2_OPLOCK_BREAK) + if (rsp->hdr.sync_hdr.Command != SMB2_OPLOCK_BREAK) return false; if (rsp->StructureSize != @@ -603,7 +608,7 @@ tcon = list_entry(tmp1, struct cifs_tcon, tcon_list); cifs_stats_inc(&tcon->stats.cifs_stats.num_oplock_brks); - spin_lock(&cifs_file_list_lock); + spin_lock(&tcon->open_file_lock); list_for_each(tmp2, &tcon->openFileList) { cfile = list_entry(tmp2, struct cifsFileInfo, tlist); @@ -615,7 +620,7 @@ cifs_dbg(FYI, "file id match, oplock break\n"); cinode = CIFS_I(d_inode(cfile->dentry)); - + spin_lock(&cfile->file_info_lock); if (!CIFS_CACHE_WRITE(cinode) && rsp->OplockLevel == SMB2_OPLOCK_LEVEL_NONE) cfile->oplock_break_cancelled = true; @@ -637,14 +642,14 @@ clear_bit( CIFS_INODE_DOWNGRADE_OPLOCK_TO_L2, &cinode->flags); - + spin_unlock(&cfile->file_info_lock); queue_work(cifsiod_wq, &cfile->oplock_break); - spin_unlock(&cifs_file_list_lock); + spin_unlock(&tcon->open_file_lock); spin_unlock(&cifs_tcp_ses_lock); return true; } - spin_unlock(&cifs_file_list_lock); + spin_unlock(&tcon->open_file_lock); spin_unlock(&cifs_tcp_ses_lock); cifs_dbg(FYI, "No matching file for oplock break\n"); return true; --- linux-4.8.0.orig/fs/cifs/smb2ops.c +++ linux-4.8.0/fs/cifs/smb2ops.c @@ -20,6 +20,8 @@ #include #include #include +#include +#include #include "cifsglob.h" #include "smb2pdu.h" #include "smb2proto.h" @@ -70,6 +72,10 @@ spin_lock(&server->req_lock); val = server->ops->get_credits_field(server, optype); *val += add; + if (*val > 65000) { + *val = 65000; /* Don't get near 64K credits, avoid srv bugs */ + printk_once(KERN_WARNING "server overflowed SMB3 credits\n"); + } server->in_flight--; if (server->in_flight == 0 && (optype & CIFS_OP_MASK) != CIFS_NEG_OP) rc = change_conf(server); @@ -114,7 +120,9 @@ static unsigned int smb2_get_credits(struct mid_q_entry *mid) { - return le16_to_cpu(((struct smb2_hdr *)mid->resp_buf)->CreditRequest); + struct smb2_sync_hdr *shdr = get_sync_hdr(mid->resp_buf); + + return le16_to_cpu(shdr->CreditRequest); } static int @@ -179,10 +187,10 @@ smb2_find_mid(struct TCP_Server_Info *server, char *buf) { struct mid_q_entry *mid; - struct smb2_hdr *hdr = (struct smb2_hdr *)buf; - __u64 wire_mid = le64_to_cpu(hdr->MessageId); + struct smb2_sync_hdr *shdr = get_sync_hdr(buf); + __u64 wire_mid = le64_to_cpu(shdr->MessageId); - if (hdr->ProtocolId == SMB2_TRANSFORM_PROTO_NUM) { + if (shdr->ProtocolId == SMB2_TRANSFORM_PROTO_NUM) { cifs_dbg(VFS, "encrypted frame parsing not supported yet"); return NULL; } @@ -191,7 +199,7 @@ list_for_each_entry(mid, &server->pending_mid_q, qhead) { if ((mid->mid == wire_mid) && (mid->mid_state == MID_REQUEST_SUBMITTED) && - (mid->command == hdr->Command)) { + (mid->command == shdr->Command)) { spin_unlock(&GlobalMid_Lock); return mid; } @@ -204,12 +212,12 @@ smb2_dump_detail(void *buf) { #ifdef CONFIG_CIFS_DEBUG2 - struct smb2_hdr *smb = (struct smb2_hdr *)buf; + struct smb2_sync_hdr *shdr = get_sync_hdr(buf); cifs_dbg(VFS, "Cmd: %d Err: 0x%x Flags: 0x%x Mid: %llu Pid: %d\n", - smb->Command, smb->Status, smb->Flags, smb->MessageId, - smb->ProcessId); - cifs_dbg(VFS, "smb buf %p len %u\n", smb, smb2_calc_size(smb)); + shdr->Command, shdr->Status, shdr->Flags, shdr->MessageId, + shdr->ProcessId); + cifs_dbg(VFS, "smb buf %p len %u\n", buf, smb2_calc_size(buf)); #endif } @@ -287,7 +295,7 @@ cifs_dbg(FYI, "Link Speed %lld\n", le64_to_cpu(out_buf->LinkSpeed)); } - + kfree(out_buf); return rc; } #endif /* STATS2 */ @@ -541,6 +549,7 @@ server->ops->set_oplock_level(cinode, oplock, fid->epoch, &fid->purge_cache); cinode->can_cache_brlcks = CIFS_CACHE_WRITE(cinode); + memcpy(cfile->fid.create_guid, fid->create_guid, 16); } static void @@ -699,6 +708,7 @@ cchunk_out: kfree(pcchunk); + kfree(retbuf); return rc; } @@ -823,7 +833,6 @@ { int rc; unsigned int ret_data_len; - char *retbuf = NULL; struct duplicate_extents_to_file dup_ext_buf; struct cifs_tcon *tcon = tlink_tcon(trgtfile->tlink); @@ -849,7 +858,7 @@ FSCTL_DUPLICATE_EXTENTS_TO_FILE, true /* is_fsctl */, (char *)&dup_ext_buf, sizeof(struct duplicate_extents_to_file), - (char **)&retbuf, + NULL, &ret_data_len); if (ret_data_len > 0) @@ -872,7 +881,6 @@ struct cifsFileInfo *cfile) { struct fsctl_set_integrity_information_req integr_info; - char *retbuf = NULL; unsigned int ret_data_len; integr_info.ChecksumAlgorithm = cpu_to_le16(CHECKSUM_TYPE_UNCHANGED); @@ -884,7 +892,7 @@ FSCTL_SET_INTEGRITY_INFORMATION, true /* is_fsctl */, (char *)&integr_info, sizeof(struct fsctl_set_integrity_information_req), - (char **)&retbuf, + NULL, &ret_data_len); } @@ -953,14 +961,14 @@ static bool smb2_is_status_pending(char *buf, struct TCP_Server_Info *server, int length) { - struct smb2_hdr *hdr = (struct smb2_hdr *)buf; + struct smb2_sync_hdr *shdr = get_sync_hdr(buf); - if (hdr->Status != STATUS_PENDING) + if (shdr->Status != STATUS_PENDING) return false; if (!length) { spin_lock(&server->req_lock); - server->credits += le16_to_cpu(hdr->CreditRequest); + server->credits += le16_to_cpu(shdr->CreditRequest); spin_unlock(&server->req_lock); wake_up(&server->request_q); } @@ -1041,7 +1049,7 @@ static void smb2_new_lease_key(struct cifs_fid *fid) { - get_random_bytes(fid->lease_key, SMB2_LEASE_KEY_SIZE); + generate_random_uuid(fid->lease_key); } #define SMB2_SYMLINK_STRUCT_SIZE \ @@ -1496,6 +1504,653 @@ return !cfile->invalidHandle; } +static void +fill_transform_hdr(struct smb2_transform_hdr *tr_hdr, struct smb_rqst *old_rq) +{ + struct smb2_sync_hdr *shdr = + (struct smb2_sync_hdr *)old_rq->rq_iov[1].iov_base; + unsigned int orig_len = get_rfc1002_length(old_rq->rq_iov[0].iov_base); + + memset(tr_hdr, 0, sizeof(struct smb2_transform_hdr)); + tr_hdr->ProtocolId = SMB2_TRANSFORM_PROTO_NUM; + tr_hdr->OriginalMessageSize = cpu_to_le32(orig_len); + tr_hdr->Flags = cpu_to_le16(0x01); + get_random_bytes(&tr_hdr->Nonce, SMB3_AES128CMM_NONCE); + memcpy(&tr_hdr->SessionId, &shdr->SessionId, 8); + inc_rfc1001_len(tr_hdr, sizeof(struct smb2_transform_hdr) - 4); + inc_rfc1001_len(tr_hdr, orig_len); +} + +static struct scatterlist * +init_sg(struct smb_rqst *rqst, u8 *sign) +{ + unsigned int sg_len = rqst->rq_nvec + rqst->rq_npages + 1; + unsigned int assoc_data_len = sizeof(struct smb2_transform_hdr) - 24; + struct scatterlist *sg; + unsigned int i; + unsigned int j; + + sg = kmalloc_array(sg_len, sizeof(struct scatterlist), GFP_KERNEL); + if (!sg) + return NULL; + + sg_init_table(sg, sg_len); + sg_set_buf(&sg[0], rqst->rq_iov[0].iov_base + 24, assoc_data_len); + for (i = 1; i < rqst->rq_nvec; i++) + sg_set_buf(&sg[i], rqst->rq_iov[i].iov_base, + rqst->rq_iov[i].iov_len); + for (j = 0; i < sg_len - 1; i++, j++) { + unsigned int len = (j < rqst->rq_npages - 1) ? rqst->rq_pagesz + : rqst->rq_tailsz; + sg_set_page(&sg[i], rqst->rq_pages[j], len, 0); + } + sg_set_buf(&sg[sg_len - 1], sign, SMB2_SIGNATURE_SIZE); + return sg; +} + +struct cifs_crypt_result { + int err; + struct completion completion; +}; + +static void cifs_crypt_complete(struct crypto_async_request *req, int err) +{ + struct cifs_crypt_result *res = req->data; + + if (err == -EINPROGRESS) + return; + + res->err = err; + complete(&res->completion); +} + +static int +smb2_get_enc_key(struct TCP_Server_Info *server, __u64 ses_id, int enc, u8 *key) +{ + struct cifs_ses *ses; + u8 *ses_enc_key; + + spin_lock(&cifs_tcp_ses_lock); + list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) { + if (ses->Suid != ses_id) + continue; + ses_enc_key = enc ? ses->smb3encryptionkey : + ses->smb3decryptionkey; + memcpy(key, ses_enc_key, SMB3_SIGN_KEY_SIZE); + spin_unlock(&cifs_tcp_ses_lock); + return 0; + } + spin_unlock(&cifs_tcp_ses_lock); + + return 1; +} +/* + * Encrypt or decrypt @rqst message. @rqst has the following format: + * iov[0] - transform header (associate data), + * iov[1-N] and pages - data to encrypt. + * On success return encrypted data in iov[1-N] and pages, leave iov[0] + * untouched. + */ +static int +crypt_message(struct TCP_Server_Info *server, struct smb_rqst *rqst, int enc) +{ + struct smb2_transform_hdr *tr_hdr = + (struct smb2_transform_hdr *)rqst->rq_iov[0].iov_base; + unsigned int assoc_data_len = sizeof(struct smb2_transform_hdr) - 24; + int rc = 0; + struct scatterlist *sg; + u8 sign[SMB2_SIGNATURE_SIZE] = {}; + u8 key[SMB3_SIGN_KEY_SIZE]; + struct aead_request *req; + char *iv; + unsigned int iv_len; + struct cifs_crypt_result result = {0, }; + struct crypto_aead *tfm; + unsigned int crypt_len = le32_to_cpu(tr_hdr->OriginalMessageSize); + + init_completion(&result.completion); + + rc = smb2_get_enc_key(server, tr_hdr->SessionId, enc, key); + if (rc) { + cifs_dbg(VFS, "%s: Could not get %scryption key\n", __func__, + enc ? "en" : "de"); + return 0; + } + + rc = smb3_crypto_aead_allocate(server); + if (rc) { + cifs_dbg(VFS, "%s: crypto alloc failed\n", __func__); + return rc; + } + + tfm = enc ? server->secmech.ccmaesencrypt : + server->secmech.ccmaesdecrypt; + rc = crypto_aead_setkey(tfm, key, SMB3_SIGN_KEY_SIZE); + if (rc) { + cifs_dbg(VFS, "%s: Failed to set aead key %d\n", __func__, rc); + return rc; + } + + rc = crypto_aead_setauthsize(tfm, SMB2_SIGNATURE_SIZE); + if (rc) { + cifs_dbg(VFS, "%s: Failed to set authsize %d\n", __func__, rc); + return rc; + } + + req = aead_request_alloc(tfm, GFP_KERNEL); + if (!req) { + cifs_dbg(VFS, "%s: Failed to alloc aead request", __func__); + return -ENOMEM; + } + + if (!enc) { + memcpy(sign, &tr_hdr->Signature, SMB2_SIGNATURE_SIZE); + crypt_len += SMB2_SIGNATURE_SIZE; + } + + sg = init_sg(rqst, sign); + if (!sg) { + cifs_dbg(VFS, "%s: Failed to init sg %d", __func__, rc); + goto free_req; + } + + iv_len = crypto_aead_ivsize(tfm); + iv = kzalloc(iv_len, GFP_KERNEL); + if (!iv) { + cifs_dbg(VFS, "%s: Failed to alloc IV", __func__); + goto free_sg; + } + iv[0] = 3; + memcpy(iv + 1, (char *)tr_hdr->Nonce, SMB3_AES128CMM_NONCE); + + aead_request_set_crypt(req, sg, sg, crypt_len, iv); + aead_request_set_ad(req, assoc_data_len); + + aead_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG, + cifs_crypt_complete, &result); + + rc = enc ? crypto_aead_encrypt(req) : crypto_aead_decrypt(req); + + if (rc == -EINPROGRESS || rc == -EBUSY) { + wait_for_completion(&result.completion); + rc = result.err; + } + + if (!rc && enc) + memcpy(&tr_hdr->Signature, sign, SMB2_SIGNATURE_SIZE); + + kfree(iv); +free_sg: + kfree(sg); +free_req: + kfree(req); + return rc; +} + +static int +smb3_init_transform_rq(struct TCP_Server_Info *server, struct smb_rqst *new_rq, + struct smb_rqst *old_rq) +{ + struct kvec *iov; + struct page **pages; + struct smb2_transform_hdr *tr_hdr; + unsigned int npages = old_rq->rq_npages; + int i; + int rc = -ENOMEM; + + pages = kmalloc_array(npages, sizeof(struct page *), GFP_KERNEL); + if (!pages) + return rc; + + new_rq->rq_pages = pages; + new_rq->rq_npages = old_rq->rq_npages; + new_rq->rq_pagesz = old_rq->rq_pagesz; + new_rq->rq_tailsz = old_rq->rq_tailsz; + + for (i = 0; i < npages; i++) { + pages[i] = alloc_page(GFP_KERNEL|__GFP_HIGHMEM); + if (!pages[i]) + goto err_free_pages; + } + + iov = kmalloc_array(old_rq->rq_nvec, sizeof(struct kvec), GFP_KERNEL); + if (!iov) + goto err_free_pages; + + /* copy all iovs from the old except the 1st one (rfc1002 length) */ + memcpy(&iov[1], &old_rq->rq_iov[1], + sizeof(struct kvec) * (old_rq->rq_nvec - 1)); + new_rq->rq_iov = iov; + new_rq->rq_nvec = old_rq->rq_nvec; + + tr_hdr = kmalloc(sizeof(struct smb2_transform_hdr), GFP_KERNEL); + if (!tr_hdr) + goto err_free_iov; + + /* fill the 1st iov with a transform header */ + fill_transform_hdr(tr_hdr, old_rq); + new_rq->rq_iov[0].iov_base = tr_hdr; + new_rq->rq_iov[0].iov_len = sizeof(struct smb2_transform_hdr); + + /* copy pages form the old */ + for (i = 0; i < npages; i++) { + char *dst = kmap(new_rq->rq_pages[i]); + char *src = kmap(old_rq->rq_pages[i]); + unsigned int len = (i < npages - 1) ? new_rq->rq_pagesz : + new_rq->rq_tailsz; + memcpy(dst, src, len); + kunmap(new_rq->rq_pages[i]); + kunmap(old_rq->rq_pages[i]); + } + + rc = crypt_message(server, new_rq, 1); + cifs_dbg(FYI, "encrypt message returned %d", rc); + if (rc) + goto err_free_tr_hdr; + + return rc; + +err_free_tr_hdr: + kfree(tr_hdr); +err_free_iov: + kfree(iov); +err_free_pages: + for (i = i - 1; i >= 0; i--) + put_page(pages[i]); + kfree(pages); + return rc; +} + +static void +smb3_free_transform_rq(struct smb_rqst *rqst) +{ + int i = rqst->rq_npages - 1; + + for (; i >= 0; i--) + put_page(rqst->rq_pages[i]); + kfree(rqst->rq_pages); + /* free transform header */ + kfree(rqst->rq_iov[0].iov_base); + kfree(rqst->rq_iov); +} + +static int +smb3_is_transform_hdr(void *buf) +{ + struct smb2_transform_hdr *trhdr = buf; + + return trhdr->ProtocolId == SMB2_TRANSFORM_PROTO_NUM; +} + +static int +decrypt_raw_data(struct TCP_Server_Info *server, char *buf, + unsigned int buf_data_size, struct page **pages, + unsigned int npages, unsigned int page_data_size) +{ + struct kvec iov[2]; + struct smb_rqst rqst = {NULL}; + struct smb2_hdr *hdr; + int rc; + + iov[0].iov_base = buf; + iov[0].iov_len = sizeof(struct smb2_transform_hdr); + iov[1].iov_base = buf + sizeof(struct smb2_transform_hdr); + iov[1].iov_len = buf_data_size; + + rqst.rq_iov = iov; + rqst.rq_nvec = 2; + rqst.rq_pages = pages; + rqst.rq_npages = npages; + rqst.rq_pagesz = PAGE_SIZE; + rqst.rq_tailsz = (page_data_size % PAGE_SIZE) ? : PAGE_SIZE; + + rc = crypt_message(server, &rqst, 0); + cifs_dbg(FYI, "decrypt message returned %d\n", rc); + + if (rc) + return rc; + + memmove(buf + 4, iov[1].iov_base, buf_data_size); + hdr = (struct smb2_hdr *)buf; + hdr->smb2_buf_length = cpu_to_be32(buf_data_size + page_data_size); + server->total_read = buf_data_size + page_data_size + 4; + + return rc; +} + +static int +read_data_into_pages(struct TCP_Server_Info *server, struct page **pages, + unsigned int npages, unsigned int len) +{ + int i; + int length; + + for (i = 0; i < npages; i++) { + struct page *page = pages[i]; + size_t n; + + n = len; + if (len >= PAGE_SIZE) { + /* enough data to fill the page */ + n = PAGE_SIZE; + len -= n; + } else { + zero_user(page, len, PAGE_SIZE - len); + len = 0; + } + length = cifs_read_page_from_socket(server, page, n); + if (length < 0) + return length; + server->total_read += length; + } + + return 0; +} + +static int +init_read_bvec(struct page **pages, unsigned int npages, unsigned int data_size, + unsigned int cur_off, struct bio_vec **page_vec) +{ + struct bio_vec *bvec; + int i; + + bvec = kcalloc(npages, sizeof(struct bio_vec), GFP_KERNEL); + if (!bvec) + return -ENOMEM; + + for (i = 0; i < npages; i++) { + bvec[i].bv_page = pages[i]; + bvec[i].bv_offset = (i == 0) ? cur_off : 0; + bvec[i].bv_len = min_t(unsigned int, PAGE_SIZE, data_size); + data_size -= bvec[i].bv_len; + } + + if (data_size != 0) { + cifs_dbg(VFS, "%s: something went wrong\n", __func__); + kfree(bvec); + return -EIO; + } + + *page_vec = bvec; + return 0; +} + +static int +handle_read_data(struct TCP_Server_Info *server, struct mid_q_entry *mid, + char *buf, unsigned int buf_len, struct page **pages, + unsigned int npages, unsigned int page_data_size) +{ + unsigned int data_offset; + unsigned int data_len; + unsigned int cur_off; + unsigned int cur_page_idx; + unsigned int pad_len; + struct cifs_readdata *rdata = mid->callback_data; + struct smb2_sync_hdr *shdr = get_sync_hdr(buf); + struct bio_vec *bvec = NULL; + struct iov_iter iter; + struct kvec iov; + int length; + + if (shdr->Command != SMB2_READ) { + cifs_dbg(VFS, "only big read responses are supported\n"); + return -ENOTSUPP; + } + + if (server->ops->is_status_pending && + server->ops->is_status_pending(buf, server, 0)) + return -1; + + rdata->result = server->ops->map_error(buf, false); + if (rdata->result != 0) { + cifs_dbg(FYI, "%s: server returned error %d\n", + __func__, rdata->result); + dequeue_mid(mid, rdata->result); + return 0; + } + + data_offset = server->ops->read_data_offset(buf) + 4; + data_len = server->ops->read_data_length(buf); + + if (data_offset < server->vals->read_rsp_size) { + /* + * win2k8 sometimes sends an offset of 0 when the read + * is beyond the EOF. Treat it as if the data starts just after + * the header. + */ + cifs_dbg(FYI, "%s: data offset (%u) inside read response header\n", + __func__, data_offset); + data_offset = server->vals->read_rsp_size; + } else if (data_offset > MAX_CIFS_SMALL_BUFFER_SIZE) { + /* data_offset is beyond the end of smallbuf */ + cifs_dbg(FYI, "%s: data offset (%u) beyond end of smallbuf\n", + __func__, data_offset); + rdata->result = -EIO; + dequeue_mid(mid, rdata->result); + return 0; + } + + pad_len = data_offset - server->vals->read_rsp_size; + + if (buf_len <= data_offset) { + /* read response payload is in pages */ + cur_page_idx = pad_len / PAGE_SIZE; + cur_off = pad_len % PAGE_SIZE; + + if (cur_page_idx != 0) { + /* data offset is beyond the 1st page of response */ + cifs_dbg(FYI, "%s: data offset (%u) beyond 1st page of response\n", + __func__, data_offset); + rdata->result = -EIO; + dequeue_mid(mid, rdata->result); + return 0; + } + + if (data_len > page_data_size - pad_len) { + /* data_len is corrupt -- discard frame */ + rdata->result = -EIO; + dequeue_mid(mid, rdata->result); + return 0; + } + + rdata->result = init_read_bvec(pages, npages, page_data_size, + cur_off, &bvec); + if (rdata->result != 0) { + dequeue_mid(mid, rdata->result); + return 0; + } + + iov_iter_bvec(&iter, WRITE | ITER_BVEC, bvec, npages, data_len); + } else if (buf_len >= data_offset + data_len) { + /* read response payload is in buf */ + WARN_ONCE(npages > 0, "read data can be either in buf or in pages"); + iov.iov_base = buf + data_offset; + iov.iov_len = data_len; + iov_iter_kvec(&iter, WRITE | ITER_KVEC, &iov, 1, data_len); + } else { + /* read response payload cannot be in both buf and pages */ + WARN_ONCE(1, "buf can not contain only a part of read data"); + rdata->result = -EIO; + dequeue_mid(mid, rdata->result); + return 0; + } + + /* set up first iov for signature check */ + rdata->iov[0].iov_base = buf; + rdata->iov[0].iov_len = 4; + rdata->iov[1].iov_base = buf + 4; + rdata->iov[1].iov_len = server->vals->read_rsp_size - 4; + cifs_dbg(FYI, "0: iov_base=%p iov_len=%zu\n", + rdata->iov[0].iov_base, server->vals->read_rsp_size); + + length = rdata->copy_into_pages(server, rdata, &iter); + + kfree(bvec); + + if (length < 0) + return length; + + dequeue_mid(mid, false); + return length; +} + +static int +receive_encrypted_read(struct TCP_Server_Info *server, struct mid_q_entry **mid) +{ + char *buf = server->smallbuf; + struct smb2_transform_hdr *tr_hdr = (struct smb2_transform_hdr *)buf; + unsigned int npages; + struct page **pages; + unsigned int len; + unsigned int buflen = get_rfc1002_length(buf) + 4; + int rc; + int i = 0; + + len = min_t(unsigned int, buflen, server->vals->read_rsp_size - 4 + + sizeof(struct smb2_transform_hdr)) - HEADER_SIZE(server) + 1; + + rc = cifs_read_from_socket(server, buf + HEADER_SIZE(server) - 1, len); + if (rc < 0) + return rc; + server->total_read += rc; + + len = le32_to_cpu(tr_hdr->OriginalMessageSize) + 4 - + server->vals->read_rsp_size; + npages = DIV_ROUND_UP(len, PAGE_SIZE); + + pages = kmalloc_array(npages, sizeof(struct page *), GFP_KERNEL); + if (!pages) { + rc = -ENOMEM; + goto discard_data; + } + + for (; i < npages; i++) { + pages[i] = alloc_page(GFP_KERNEL|__GFP_HIGHMEM); + if (!pages[i]) { + rc = -ENOMEM; + goto discard_data; + } + } + + /* read read data into pages */ + rc = read_data_into_pages(server, pages, npages, len); + if (rc) + goto free_pages; + + rc = cifs_discard_remaining_data(server); + if (rc) + goto free_pages; + + rc = decrypt_raw_data(server, buf, server->vals->read_rsp_size - 4, + pages, npages, len); + if (rc) + goto free_pages; + + *mid = smb2_find_mid(server, buf); + if (*mid == NULL) + cifs_dbg(FYI, "mid not found\n"); + else { + cifs_dbg(FYI, "mid found\n"); + (*mid)->decrypted = true; + rc = handle_read_data(server, *mid, buf, + server->vals->read_rsp_size, + pages, npages, len); + } + +free_pages: + for (i = i - 1; i >= 0; i--) + put_page(pages[i]); + kfree(pages); + return rc; +discard_data: + cifs_discard_remaining_data(server); + goto free_pages; +} + +static int +receive_encrypted_standard(struct TCP_Server_Info *server, + struct mid_q_entry **mid) +{ + int length; + char *buf = server->smallbuf; + unsigned int pdu_length = get_rfc1002_length(buf); + unsigned int buf_size; + struct mid_q_entry *mid_entry; + + /* switch to large buffer if too big for a small one */ + if (pdu_length + 4 > MAX_CIFS_SMALL_BUFFER_SIZE) { + server->large_buf = true; + memcpy(server->bigbuf, buf, server->total_read); + buf = server->bigbuf; + } + + /* now read the rest */ + length = cifs_read_from_socket(server, buf + HEADER_SIZE(server) - 1, + pdu_length - HEADER_SIZE(server) + 1 + 4); + if (length < 0) + return length; + server->total_read += length; + + buf_size = pdu_length + 4 - sizeof(struct smb2_transform_hdr); + length = decrypt_raw_data(server, buf, buf_size, NULL, 0, 0); + if (length) + return length; + + mid_entry = smb2_find_mid(server, buf); + if (mid_entry == NULL) + cifs_dbg(FYI, "mid not found\n"); + else { + cifs_dbg(FYI, "mid found\n"); + mid_entry->decrypted = true; + } + + *mid = mid_entry; + + if (mid_entry && mid_entry->handle) + return mid_entry->handle(server, mid_entry); + + return cifs_handle_standard(server, mid_entry); +} + +static int +smb3_receive_transform(struct TCP_Server_Info *server, struct mid_q_entry **mid) +{ + char *buf = server->smallbuf; + unsigned int pdu_length = get_rfc1002_length(buf); + struct smb2_transform_hdr *tr_hdr = (struct smb2_transform_hdr *)buf; + unsigned int orig_len = le32_to_cpu(tr_hdr->OriginalMessageSize); + + if (pdu_length + 4 < sizeof(struct smb2_transform_hdr) + + sizeof(struct smb2_sync_hdr)) { + cifs_dbg(VFS, "Transform message is too small (%u)\n", + pdu_length); + cifs_reconnect(server); + wake_up(&server->response_q); + return -ECONNABORTED; + } + + if (pdu_length + 4 < orig_len + sizeof(struct smb2_transform_hdr)) { + cifs_dbg(VFS, "Transform message is broken\n"); + cifs_reconnect(server); + wake_up(&server->response_q); + return -ECONNABORTED; + } + + if (pdu_length + 4 > CIFSMaxBufSize + MAX_HEADER_SIZE(server)) + return receive_encrypted_read(server, mid); + + return receive_encrypted_standard(server, mid); +} + +int +smb3_handle_read_data(struct TCP_Server_Info *server, struct mid_q_entry *mid) +{ + char *buf = server->large_buf ? server->bigbuf : server->smallbuf; + + return handle_read_data(server, mid, buf, get_rfc1002_length(buf) + 4, + NULL, 0, 0); +} + struct smb_version_operations smb20_operations = { .compare_fids = smb2_compare_fids, .setup_request = smb2_setup_request, @@ -1740,6 +2395,10 @@ .wp_retry_size = smb2_wp_retry_size, .dir_needs_close = smb2_dir_needs_close, .fallocate = smb3_fallocate, + .init_transform_rq = smb3_init_transform_rq, + .free_transform_rq = smb3_free_transform_rq, + .is_transform_hdr = smb3_is_transform_hdr, + .receive_transform = smb3_receive_transform, }; #ifdef CONFIG_CIFS_SMB311 @@ -1827,6 +2486,10 @@ .wp_retry_size = smb2_wp_retry_size, .dir_needs_close = smb2_dir_needs_close, .fallocate = smb3_fallocate, + .init_transform_rq = smb3_init_transform_rq, + .free_transform_rq = smb3_free_transform_rq, + .is_transform_hdr = smb3_is_transform_hdr, + .receive_transform = smb3_receive_transform, }; #endif /* CIFS_SMB311 */ --- linux-4.8.0.orig/fs/cifs/smb2pdu.c +++ linux-4.8.0/fs/cifs/smb2pdu.c @@ -77,31 +77,42 @@ /* SMB2_OPLOCK_BREAK */ 24 /* BB this is 36 for LEASE_BREAK variant */ }; +static int encryption_required(const struct cifs_tcon *tcon) +{ + if (!tcon) + return 0; + if ((tcon->ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA) || + (tcon->share_flags & SHI1005_FLAGS_ENCRYPT_DATA)) + return 1; + if (tcon->seal && + (tcon->ses->server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION)) + return 1; + return 0; +} static void -smb2_hdr_assemble(struct smb2_hdr *hdr, __le16 smb2_cmd /* command */ , +smb2_hdr_assemble(struct smb2_sync_hdr *shdr, __le16 smb2_cmd, const struct cifs_tcon *tcon) { - struct smb2_pdu *pdu = (struct smb2_pdu *)hdr; - char *temp = (char *)hdr; - /* lookup word count ie StructureSize from table */ - __u16 parmsize = smb2_req_struct_sizes[le16_to_cpu(smb2_cmd)]; - - /* - * smaller than SMALL_BUFFER_SIZE but bigger than fixed area of - * largest operations (Create) - */ - memset(temp, 0, 256); - - /* Note this is only network field converted to big endian */ - hdr->smb2_buf_length = cpu_to_be32(parmsize + sizeof(struct smb2_hdr) - - 4 /* RFC 1001 length field itself not counted */); + shdr->ProtocolId = SMB2_PROTO_NUMBER; + shdr->StructureSize = cpu_to_le16(64); + shdr->Command = smb2_cmd; + if (tcon && tcon->ses && tcon->ses->server) { + struct TCP_Server_Info *server = tcon->ses->server; - hdr->ProtocolId = SMB2_PROTO_NUMBER; - hdr->StructureSize = cpu_to_le16(64); - hdr->Command = smb2_cmd; - hdr->CreditRequest = cpu_to_le16(2); /* BB make this dynamic */ - hdr->ProcessId = cpu_to_le32((__u16)current->tgid); + spin_lock(&server->req_lock); + /* Request up to 2 credits but don't go over the limit. */ + if (server->credits >= server->max_credits) + shdr->CreditRequest = cpu_to_le16(0); + else + shdr->CreditRequest = cpu_to_le16( + min_t(int, server->max_credits - + server->credits, 2)); + spin_unlock(&server->req_lock); + } else { + shdr->CreditRequest = cpu_to_le16(2); + } + shdr->ProcessId = cpu_to_le32((__u16)current->tgid); if (!tcon) goto out; @@ -110,13 +121,13 @@ /* See sections 2.2.4 and 3.2.4.1.5 of MS-SMB2 */ if ((tcon->ses) && (tcon->ses->server) && (tcon->ses->server->capabilities & SMB2_GLOBAL_CAP_LARGE_MTU)) - hdr->CreditCharge = cpu_to_le16(1); + shdr->CreditCharge = cpu_to_le16(1); /* else CreditCharge MBZ */ - hdr->TreeId = tcon->tid; + shdr->TreeId = tcon->tid; /* Uid is not converted */ if (tcon->ses) - hdr->SessionId = tcon->ses->Suid; + shdr->SessionId = tcon->ses->Suid; /* * If we would set SMB2_FLAGS_DFS_OPERATIONS on open we also would have @@ -129,12 +140,12 @@ * but it is safer to net set it for now. */ /* if (tcon->share_flags & SHI1005_FLAGS_DFS) - hdr->Flags |= SMB2_FLAGS_DFS_OPERATIONS; */ + shdr->Flags |= SMB2_FLAGS_DFS_OPERATIONS; */ - if (tcon->ses && tcon->ses->server && tcon->ses->server->sign) - hdr->Flags |= SMB2_FLAGS_SIGNED; + if (tcon->ses && tcon->ses->server && tcon->ses->server->sign && + !encryption_required(tcon)) + shdr->Flags |= SMB2_FLAGS_SIGNED; out: - pdu->StructureSize2 = cpu_to_le16(parmsize); return; } @@ -261,22 +272,80 @@ case SMB2_CHANGE_NOTIFY: case SMB2_QUERY_INFO: case SMB2_SET_INFO: - return -EAGAIN; + rc = -EAGAIN; } unload_nls(nls_codepage); return rc; } +static void +fill_small_buf(__le16 smb2_command, struct cifs_tcon *tcon, void *buf, + unsigned int *total_len) +{ + struct smb2_sync_pdu *spdu = (struct smb2_sync_pdu *)buf; + /* lookup word count ie StructureSize from table */ + __u16 parmsize = smb2_req_struct_sizes[le16_to_cpu(smb2_command)]; + + /* + * smaller than SMALL_BUFFER_SIZE but bigger than fixed area of + * largest operations (Create) + */ + memset(buf, 0, 256); + + smb2_hdr_assemble(&spdu->sync_hdr, smb2_command, tcon); + spdu->StructureSize2 = cpu_to_le16(parmsize); + + *total_len = parmsize + sizeof(struct smb2_sync_hdr); +} + +/* init request without RFC1001 length at the beginning */ +static int +smb2_plain_req_init(__le16 smb2_command, struct cifs_tcon *tcon, + void **request_buf, unsigned int *total_len) +{ + int rc; + struct smb2_sync_hdr *shdr; + + rc = smb2_reconnect(smb2_command, tcon); + if (rc) + return rc; + + /* BB eventually switch this to SMB2 specific small buf size */ + *request_buf = cifs_small_buf_get(); + if (*request_buf == NULL) { + /* BB should we add a retry in here if not a writepage? */ + return -ENOMEM; + } + + shdr = (struct smb2_sync_hdr *)(*request_buf); + + fill_small_buf(smb2_command, tcon, shdr, total_len); + + if (tcon != NULL) { +#ifdef CONFIG_CIFS_STATS2 + uint16_t com_code = le16_to_cpu(smb2_command); + + cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_sent[com_code]); +#endif + cifs_stats_inc(&tcon->num_smbs_sent); + } + + return rc; +} + /* * Allocate and return pointer to an SMB request hdr, and set basic * SMB information in the SMB header. If the return code is zero, this - * function must have filled in request_buf pointer. + * function must have filled in request_buf pointer. The returned buffer + * has RFC1001 length at the beginning. */ static int small_smb2_init(__le16 smb2_command, struct cifs_tcon *tcon, void **request_buf) { - int rc = 0; + int rc; + unsigned int total_len; + struct smb2_pdu *pdu; rc = smb2_reconnect(smb2_command, tcon); if (rc) @@ -289,7 +358,12 @@ return -ENOMEM; } - smb2_hdr_assemble((struct smb2_hdr *) *request_buf, smb2_command, tcon); + pdu = (struct smb2_pdu *)(*request_buf); + + fill_small_buf(smb2_command, tcon, get_sync_hdr(pdu), &total_len); + + /* Note this is only network field converted to big endian */ + pdu->hdr.smb2_buf_length = cpu_to_be32(total_len); if (tcon != NULL) { #ifdef CONFIG_CIFS_STATS2 @@ -354,7 +428,6 @@ } #endif /* SMB311 */ - /* * * SMB2 Worker functions follow: @@ -376,6 +449,7 @@ struct smb2_negotiate_req *req; struct smb2_negotiate_rsp *rsp; struct kvec iov[1]; + struct kvec rsp_iov; int rc = 0; int resp_buftype; struct TCP_Server_Info *server = ses->server; @@ -394,7 +468,7 @@ if (rc) return rc; - req->hdr.SessionId = 0; + req->hdr.sync_hdr.SessionId = 0; req->Dialects[0] = cpu_to_le16(ses->server->vals->protocol_id); @@ -424,9 +498,9 @@ /* 4 for rfc1002 length field */ iov[0].iov_len = get_rfc1002_length(req) + 4; - rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, flags); - - rsp = (struct smb2_negotiate_rsp *)iov[0].iov_base; + rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, flags, &rsp_iov); + cifs_small_buf_release(req); + rsp = (struct smb2_negotiate_rsp *)rsp_iov.iov_base; /* * No tcon so can't do * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]); @@ -574,62 +648,46 @@ return -EIO; } -int -SMB2_sess_setup(const unsigned int xid, struct cifs_ses *ses, - const struct nls_table *nls_cp) +struct SMB2_sess_data { + unsigned int xid; + struct cifs_ses *ses; + struct nls_table *nls_cp; + void (*func)(struct SMB2_sess_data *); + int result; + u64 previous_session; + + /* we will send the SMB in three pieces: + * a fixed length beginning part, an optional + * SPNEGO blob (which can be zero length), and a + * last part which will include the strings + * and rest of bcc area. This allows us to avoid + * a large buffer 17K allocation + */ + int buf0_type; + struct kvec iov[2]; +}; + +static int +SMB2_sess_alloc_buffer(struct SMB2_sess_data *sess_data) { + int rc; + struct cifs_ses *ses = sess_data->ses; struct smb2_sess_setup_req *req; - struct smb2_sess_setup_rsp *rsp = NULL; - struct kvec iov[2]; - int rc = 0; - int resp_buftype = CIFS_NO_BUFFER; - __le32 phase = NtLmNegotiate; /* NTLMSSP, if needed, is multistage */ struct TCP_Server_Info *server = ses->server; - u16 blob_length = 0; - struct key *spnego_key = NULL; - char *security_blob = NULL; - unsigned char *ntlmssp_blob = NULL; - bool use_spnego = false; /* else use raw ntlmssp */ - - cifs_dbg(FYI, "Session Setup\n"); - - if (!server) { - WARN(1, "%s: server is NULL!\n", __func__); - return -EIO; - } - - /* - * If we are here due to reconnect, free per-smb session key - * in case signing was required. - */ - kfree(ses->auth_key.response); - ses->auth_key.response = NULL; - - /* - * If memory allocation is successful, caller of this function - * frees it. - */ - ses->ntlmssp = kmalloc(sizeof(struct ntlmssp_auth), GFP_KERNEL); - if (!ses->ntlmssp) - return -ENOMEM; - ses->ntlmssp->sesskey_per_smbsess = true; - - /* FIXME: allow for other auth types besides NTLMSSP (e.g. krb5) */ - if (ses->sectype != Kerberos && ses->sectype != RawNTLMSSP) - ses->sectype = RawNTLMSSP; - -ssetup_ntlmssp_authenticate: - if (phase == NtLmChallenge) - phase = NtLmAuthenticate; /* if ntlmssp, now final phase */ rc = small_smb2_init(SMB2_SESSION_SETUP, NULL, (void **) &req); if (rc) return rc; - req->hdr.SessionId = 0; /* First session, not a reauthenticate */ + /* First session, not a reauthenticate */ + req->hdr.sync_hdr.SessionId = 0; + + /* if reconnect, we need to send previous sess id, otherwise it is 0 */ + req->PreviousSessionId = sess_data->previous_session; + req->Flags = 0; /* MBZ */ /* to enable echos and oplocks */ - req->hdr.CreditRequest = cpu_to_le16(3); + req->hdr.sync_hdr.CreditRequest = cpu_to_le16(3); /* only one of SMB2 signing flags may be set in SMB2 request */ if (server->sign) @@ -642,199 +700,357 @@ req->Capabilities = 0; req->Channel = 0; /* MBZ */ - iov[0].iov_base = (char *)req; + sess_data->iov[0].iov_base = (char *)req; /* 4 for rfc1002 length field and 1 for pad */ - iov[0].iov_len = get_rfc1002_length(req) + 4 - 1; + sess_data->iov[0].iov_len = get_rfc1002_length(req) + 4 - 1; + /* + * This variable will be used to clear the buffer + * allocated above in case of any error in the calling function. + */ + sess_data->buf0_type = CIFS_SMALL_BUFFER; - if (ses->sectype == Kerberos) { -#ifdef CONFIG_CIFS_UPCALL - struct cifs_spnego_msg *msg; + return 0; +} - spnego_key = cifs_get_spnego_key(ses); - if (IS_ERR(spnego_key)) { - rc = PTR_ERR(spnego_key); - spnego_key = NULL; - goto ssetup_exit; - } +static void +SMB2_sess_free_buffer(struct SMB2_sess_data *sess_data) +{ + free_rsp_buf(sess_data->buf0_type, sess_data->iov[0].iov_base); + sess_data->buf0_type = CIFS_NO_BUFFER; +} - msg = spnego_key->payload.data[0]; - /* - * check version field to make sure that cifs.upcall is - * sending us a response in an expected form - */ - if (msg->version != CIFS_SPNEGO_UPCALL_VERSION) { - cifs_dbg(VFS, - "bad cifs.upcall version. Expected %d got %d", - CIFS_SPNEGO_UPCALL_VERSION, msg->version); - rc = -EKEYREJECTED; - goto ssetup_exit; - } - ses->auth_key.response = kmemdup(msg->data, msg->sesskey_len, - GFP_KERNEL); - if (!ses->auth_key.response) { - cifs_dbg(VFS, - "Kerberos can't allocate (%u bytes) memory", - msg->sesskey_len); - rc = -ENOMEM; - goto ssetup_exit; - } - ses->auth_key.len = msg->sesskey_len; - blob_length = msg->secblob_len; - iov[1].iov_base = msg->data + msg->sesskey_len; - iov[1].iov_len = blob_length; -#else - rc = -EOPNOTSUPP; - goto ssetup_exit; -#endif /* CONFIG_CIFS_UPCALL */ - } else if (phase == NtLmNegotiate) { /* if not krb5 must be ntlmssp */ - ntlmssp_blob = kmalloc(sizeof(struct _NEGOTIATE_MESSAGE), - GFP_KERNEL); - if (ntlmssp_blob == NULL) { - rc = -ENOMEM; - goto ssetup_exit; - } - build_ntlmssp_negotiate_blob(ntlmssp_blob, ses); - if (use_spnego) { - /* blob_length = build_spnego_ntlmssp_blob( - &security_blob, - sizeof(struct _NEGOTIATE_MESSAGE), - ntlmssp_blob); */ - /* BB eventually need to add this */ - cifs_dbg(VFS, "spnego not supported for SMB2 yet\n"); - rc = -EOPNOTSUPP; - kfree(ntlmssp_blob); - goto ssetup_exit; - } else { - blob_length = sizeof(struct _NEGOTIATE_MESSAGE); - /* with raw NTLMSSP we don't encapsulate in SPNEGO */ - security_blob = ntlmssp_blob; - } - iov[1].iov_base = security_blob; - iov[1].iov_len = blob_length; - } else if (phase == NtLmAuthenticate) { - req->hdr.SessionId = ses->Suid; - rc = build_ntlmssp_auth_blob(&ntlmssp_blob, &blob_length, ses, - nls_cp); - if (rc) { - cifs_dbg(FYI, "build_ntlmssp_auth_blob failed %d\n", - rc); - goto ssetup_exit; /* BB double check error handling */ - } - if (use_spnego) { - /* blob_length = build_spnego_ntlmssp_blob( - &security_blob, - blob_length, - ntlmssp_blob); */ - cifs_dbg(VFS, "spnego not supported for SMB2 yet\n"); - rc = -EOPNOTSUPP; - kfree(ntlmssp_blob); - goto ssetup_exit; - } else { - security_blob = ntlmssp_blob; - } - iov[1].iov_base = security_blob; - iov[1].iov_len = blob_length; - } else { - cifs_dbg(VFS, "illegal ntlmssp phase\n"); - rc = -EIO; - goto ssetup_exit; - } +static int +SMB2_sess_sendreceive(struct SMB2_sess_data *sess_data) +{ + int rc; + struct smb2_sess_setup_req *req = sess_data->iov[0].iov_base; + struct kvec rsp_iov = { NULL, 0 }; /* Testing shows that buffer offset must be at location of Buffer[0] */ req->SecurityBufferOffset = - cpu_to_le16(sizeof(struct smb2_sess_setup_req) - - 1 /* pad */ - 4 /* rfc1001 len */); - req->SecurityBufferLength = cpu_to_le16(blob_length); + cpu_to_le16(sizeof(struct smb2_sess_setup_req) - + 1 /* pad */ - 4 /* rfc1001 len */); + req->SecurityBufferLength = cpu_to_le16(sess_data->iov[1].iov_len); - inc_rfc1001_len(req, blob_length - 1 /* pad */); + inc_rfc1001_len(req, sess_data->iov[1].iov_len - 1 /* pad */); /* BB add code to build os and lm fields */ - rc = SendReceive2(xid, ses, iov, 2, &resp_buftype, - CIFS_LOG_ERROR | CIFS_NEG_OP); + rc = SendReceive2(sess_data->xid, sess_data->ses, + sess_data->iov, 2, + &sess_data->buf0_type, + CIFS_LOG_ERROR | CIFS_NEG_OP, &rsp_iov); + cifs_small_buf_release(sess_data->iov[0].iov_base); + memcpy(&sess_data->iov[0], &rsp_iov, sizeof(struct kvec)); - kfree(security_blob); - rsp = (struct smb2_sess_setup_rsp *)iov[0].iov_base; - ses->Suid = rsp->hdr.SessionId; - if (resp_buftype != CIFS_NO_BUFFER && - rsp->hdr.Status == STATUS_MORE_PROCESSING_REQUIRED) { - if (phase != NtLmNegotiate) { - cifs_dbg(VFS, "Unexpected more processing error\n"); - goto ssetup_exit; - } - if (offsetof(struct smb2_sess_setup_rsp, Buffer) - 4 != - le16_to_cpu(rsp->SecurityBufferOffset)) { - cifs_dbg(VFS, "Invalid security buffer offset %d\n", - le16_to_cpu(rsp->SecurityBufferOffset)); - rc = -EIO; - goto ssetup_exit; + return rc; +} + +static int +SMB2_sess_establish_session(struct SMB2_sess_data *sess_data) +{ + int rc = 0; + struct cifs_ses *ses = sess_data->ses; + + mutex_lock(&ses->server->srv_mutex); + if (ses->server->ops->generate_signingkey) { + rc = ses->server->ops->generate_signingkey(ses); + if (rc) { + cifs_dbg(FYI, + "SMB3 session key generation failed\n"); + mutex_unlock(&ses->server->srv_mutex); + return rc; } + } + if (!ses->server->session_estab) { + ses->server->sequence_number = 0x2; + ses->server->session_estab = true; + } + mutex_unlock(&ses->server->srv_mutex); + + cifs_dbg(FYI, "SMB2/3 session established successfully\n"); + spin_lock(&GlobalMid_Lock); + ses->status = CifsGood; + ses->need_reconnect = false; + spin_unlock(&GlobalMid_Lock); + return rc; +} + +#ifdef CONFIG_CIFS_UPCALL +static void +SMB2_auth_kerberos(struct SMB2_sess_data *sess_data) +{ + int rc; + struct cifs_ses *ses = sess_data->ses; + struct cifs_spnego_msg *msg; + struct key *spnego_key = NULL; + struct smb2_sess_setup_rsp *rsp = NULL; + + rc = SMB2_sess_alloc_buffer(sess_data); + if (rc) + goto out; - /* NTLMSSP Negotiate sent now processing challenge (response) */ - phase = NtLmChallenge; /* process ntlmssp challenge */ - rc = 0; /* MORE_PROCESSING is not an error here but expected */ - rc = decode_ntlmssp_challenge(rsp->Buffer, - le16_to_cpu(rsp->SecurityBufferLength), ses); + spnego_key = cifs_get_spnego_key(ses); + if (IS_ERR(spnego_key)) { + rc = PTR_ERR(spnego_key); + spnego_key = NULL; + goto out; } + msg = spnego_key->payload.data[0]; /* - * BB eventually add code for SPNEGO decoding of NtlmChallenge blob, - * but at least the raw NTLMSSP case works. + * check version field to make sure that cifs.upcall is + * sending us a response in an expected form */ + if (msg->version != CIFS_SPNEGO_UPCALL_VERSION) { + cifs_dbg(VFS, + "bad cifs.upcall version. Expected %d got %d", + CIFS_SPNEGO_UPCALL_VERSION, msg->version); + rc = -EKEYREJECTED; + goto out_put_spnego_key; + } + + ses->auth_key.response = kmemdup(msg->data, msg->sesskey_len, + GFP_KERNEL); + if (!ses->auth_key.response) { + cifs_dbg(VFS, + "Kerberos can't allocate (%u bytes) memory", + msg->sesskey_len); + rc = -ENOMEM; + goto out_put_spnego_key; + } + ses->auth_key.len = msg->sesskey_len; + + sess_data->iov[1].iov_base = msg->data + msg->sesskey_len; + sess_data->iov[1].iov_len = msg->secblob_len; + + rc = SMB2_sess_sendreceive(sess_data); + if (rc) + goto out_put_spnego_key; + + rsp = (struct smb2_sess_setup_rsp *)sess_data->iov[0].iov_base; + ses->Suid = rsp->hdr.sync_hdr.SessionId; + + ses->session_flags = le16_to_cpu(rsp->SessionFlags); + + rc = SMB2_sess_establish_session(sess_data); +out_put_spnego_key: + key_invalidate(spnego_key); + key_put(spnego_key); +out: + sess_data->result = rc; + sess_data->func = NULL; + SMB2_sess_free_buffer(sess_data); +} +#else +static void +SMB2_auth_kerberos(struct SMB2_sess_data *sess_data) +{ + cifs_dbg(VFS, "Kerberos negotiated but upcall support disabled!\n"); + sess_data->result = -EOPNOTSUPP; + sess_data->func = NULL; +} +#endif + +static void +SMB2_sess_auth_rawntlmssp_authenticate(struct SMB2_sess_data *sess_data); + +static void +SMB2_sess_auth_rawntlmssp_negotiate(struct SMB2_sess_data *sess_data) +{ + int rc; + struct cifs_ses *ses = sess_data->ses; + struct smb2_sess_setup_rsp *rsp = NULL; + char *ntlmssp_blob = NULL; + bool use_spnego = false; /* else use raw ntlmssp */ + u16 blob_length = 0; + /* - * No tcon so can't do - * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]); + * If memory allocation is successful, caller of this function + * frees it. */ - if (rc != 0) - goto ssetup_exit; + ses->ntlmssp = kmalloc(sizeof(struct ntlmssp_auth), GFP_KERNEL); + if (!ses->ntlmssp) { + rc = -ENOMEM; + goto out_err; + } + ses->ntlmssp->sesskey_per_smbsess = true; - ses->session_flags = le16_to_cpu(rsp->SessionFlags); - if (ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA) - cifs_dbg(VFS, "SMB3 encryption not supported yet\n"); -ssetup_exit: - free_rsp_buf(resp_buftype, rsp); + rc = SMB2_sess_alloc_buffer(sess_data); + if (rc) + goto out_err; + + ntlmssp_blob = kmalloc(sizeof(struct _NEGOTIATE_MESSAGE), + GFP_KERNEL); + if (ntlmssp_blob == NULL) { + rc = -ENOMEM; + goto out; + } + + build_ntlmssp_negotiate_blob(ntlmssp_blob, ses); + if (use_spnego) { + /* BB eventually need to add this */ + cifs_dbg(VFS, "spnego not supported for SMB2 yet\n"); + rc = -EOPNOTSUPP; + goto out; + } else { + blob_length = sizeof(struct _NEGOTIATE_MESSAGE); + /* with raw NTLMSSP we don't encapsulate in SPNEGO */ + } + sess_data->iov[1].iov_base = ntlmssp_blob; + sess_data->iov[1].iov_len = blob_length; - /* if ntlmssp, and negotiate succeeded, proceed to authenticate phase */ - if ((phase == NtLmChallenge) && (rc == 0)) - goto ssetup_ntlmssp_authenticate; + rc = SMB2_sess_sendreceive(sess_data); + rsp = (struct smb2_sess_setup_rsp *)sess_data->iov[0].iov_base; + /* If true, rc here is expected and not an error */ + if (sess_data->buf0_type != CIFS_NO_BUFFER && + rsp->hdr.sync_hdr.Status == STATUS_MORE_PROCESSING_REQUIRED) + rc = 0; + + if (rc) + goto out; + + if (offsetof(struct smb2_sess_setup_rsp, Buffer) - 4 != + le16_to_cpu(rsp->SecurityBufferOffset)) { + cifs_dbg(VFS, "Invalid security buffer offset %d\n", + le16_to_cpu(rsp->SecurityBufferOffset)); + rc = -EIO; + goto out; + } + rc = decode_ntlmssp_challenge(rsp->Buffer, + le16_to_cpu(rsp->SecurityBufferLength), ses); + if (rc) + goto out; + + cifs_dbg(FYI, "rawntlmssp session setup challenge phase\n"); + + + ses->Suid = rsp->hdr.sync_hdr.SessionId; + ses->session_flags = le16_to_cpu(rsp->SessionFlags); + +out: + kfree(ntlmssp_blob); + SMB2_sess_free_buffer(sess_data); if (!rc) { - mutex_lock(&server->srv_mutex); - if (server->sign && server->ops->generate_signingkey) { - rc = server->ops->generate_signingkey(ses); - kfree(ses->auth_key.response); - ses->auth_key.response = NULL; - if (rc) { - cifs_dbg(FYI, - "SMB3 session key generation failed\n"); - mutex_unlock(&server->srv_mutex); - goto keygen_exit; - } - } - if (!server->session_estab) { - server->sequence_number = 0x2; - server->session_estab = true; - } - mutex_unlock(&server->srv_mutex); + sess_data->result = 0; + sess_data->func = SMB2_sess_auth_rawntlmssp_authenticate; + return; + } +out_err: + kfree(ses->ntlmssp); + ses->ntlmssp = NULL; + sess_data->result = rc; + sess_data->func = NULL; +} + +static void +SMB2_sess_auth_rawntlmssp_authenticate(struct SMB2_sess_data *sess_data) +{ + int rc; + struct cifs_ses *ses = sess_data->ses; + struct smb2_sess_setup_req *req; + struct smb2_sess_setup_rsp *rsp = NULL; + unsigned char *ntlmssp_blob = NULL; + bool use_spnego = false; /* else use raw ntlmssp */ + u16 blob_length = 0; + + rc = SMB2_sess_alloc_buffer(sess_data); + if (rc) + goto out; + + req = (struct smb2_sess_setup_req *) sess_data->iov[0].iov_base; + req->hdr.sync_hdr.SessionId = ses->Suid; + + rc = build_ntlmssp_auth_blob(&ntlmssp_blob, &blob_length, ses, + sess_data->nls_cp); + if (rc) { + cifs_dbg(FYI, "build_ntlmssp_auth_blob failed %d\n", rc); + goto out; + } - cifs_dbg(FYI, "SMB2/3 session established successfully\n"); - spin_lock(&GlobalMid_Lock); - ses->status = CifsGood; - ses->need_reconnect = false; - spin_unlock(&GlobalMid_Lock); - } - -keygen_exit: - if (!server->sign) { - kfree(ses->auth_key.response); - ses->auth_key.response = NULL; - } - if (spnego_key) { - key_invalidate(spnego_key); - key_put(spnego_key); + if (use_spnego) { + /* BB eventually need to add this */ + cifs_dbg(VFS, "spnego not supported for SMB2 yet\n"); + rc = -EOPNOTSUPP; + goto out; } + sess_data->iov[1].iov_base = ntlmssp_blob; + sess_data->iov[1].iov_len = blob_length; + + rc = SMB2_sess_sendreceive(sess_data); + if (rc) + goto out; + + rsp = (struct smb2_sess_setup_rsp *)sess_data->iov[0].iov_base; + + ses->Suid = rsp->hdr.sync_hdr.SessionId; + ses->session_flags = le16_to_cpu(rsp->SessionFlags); + + rc = SMB2_sess_establish_session(sess_data); +out: + kfree(ntlmssp_blob); + SMB2_sess_free_buffer(sess_data); kfree(ses->ntlmssp); + ses->ntlmssp = NULL; + sess_data->result = rc; + sess_data->func = NULL; +} + +static int +SMB2_select_sec(struct cifs_ses *ses, struct SMB2_sess_data *sess_data) +{ + if (ses->sectype != Kerberos && ses->sectype != RawNTLMSSP) + ses->sectype = RawNTLMSSP; + + switch (ses->sectype) { + case Kerberos: + sess_data->func = SMB2_auth_kerberos; + break; + case RawNTLMSSP: + sess_data->func = SMB2_sess_auth_rawntlmssp_negotiate; + break; + default: + cifs_dbg(VFS, "secType %d not supported!\n", ses->sectype); + return -EOPNOTSUPP; + } + + return 0; +} + +int +SMB2_sess_setup(const unsigned int xid, struct cifs_ses *ses, + const struct nls_table *nls_cp) +{ + int rc = 0; + struct TCP_Server_Info *server = ses->server; + struct SMB2_sess_data *sess_data; + cifs_dbg(FYI, "Session Setup\n"); + + if (!server) { + WARN(1, "%s: server is NULL!\n", __func__); + return -EIO; + } + + sess_data = kzalloc(sizeof(struct SMB2_sess_data), GFP_KERNEL); + if (!sess_data) + return -ENOMEM; + + rc = SMB2_select_sec(ses, sess_data); + if (rc) + goto out; + sess_data->xid = xid; + sess_data->ses = ses; + sess_data->buf0_type = CIFS_NO_BUFFER; + sess_data->nls_cp = (struct nls_table *) nls_cp; + + while (sess_data->func) + sess_data->func(sess_data); + + rc = sess_data->result; +out: + kfree(sess_data); return rc; } @@ -844,6 +1060,7 @@ struct smb2_logoff_req *req; /* response is also trivial struct */ int rc = 0; struct TCP_Server_Info *server; + int flags = 0; cifs_dbg(FYI, "disconnect session %p\n", ses); @@ -861,11 +1078,15 @@ return rc; /* since no tcon, smb2_init can not do this, so do here */ - req->hdr.SessionId = ses->Suid; - if (server->sign) - req->hdr.Flags |= SMB2_FLAGS_SIGNED; + req->hdr.sync_hdr.SessionId = ses->Suid; - rc = SendReceiveNoRsp(xid, ses, (char *) &req->hdr, 0); + if (ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA) + flags |= CIFS_TRANSFORM_REQ; + else if (server->sign) + req->hdr.sync_hdr.Flags |= SMB2_FLAGS_SIGNED; + + rc = SendReceiveNoRsp(xid, ses, (char *) req, flags); + cifs_small_buf_release(req); /* * No tcon so can't do * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]); @@ -897,11 +1118,13 @@ struct smb2_tree_connect_req *req; struct smb2_tree_connect_rsp *rsp = NULL; struct kvec iov[2]; + struct kvec rsp_iov; int rc = 0; int resp_buftype; int unc_path_len; struct TCP_Server_Info *server; __le16 *unc_path = NULL; + int flags = 0; cifs_dbg(FYI, "TCON\n"); @@ -913,12 +1136,6 @@ if (tcon && tcon->bad_network_name) return -ENOENT; - if ((tcon && tcon->seal) && - ((ses->server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION) == 0)) { - cifs_dbg(VFS, "encryption requested but no server support"); - return -EOPNOTSUPP; - } - unc_path = kmalloc(MAX_SHARENAME_LENGTH * 2, GFP_KERNEL); if (unc_path == NULL) return -ENOMEM; @@ -937,11 +1154,15 @@ } if (tcon == NULL) { + if ((ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA)) + flags |= CIFS_TRANSFORM_REQ; + /* since no tcon, smb2_init can not do this, so do here */ - req->hdr.SessionId = ses->Suid; + req->hdr.sync_hdr.SessionId = ses->Suid; /* if (ses->server->sec_mode & SECMODE_SIGN_REQUIRED) req->hdr.Flags |= SMB2_FLAGS_SIGNED; */ - } + } else if (encryption_required(tcon)) + flags |= CIFS_TRANSFORM_REQ; iov[0].iov_base = (char *)req; /* 4 for rfc1002 length field and 1 for pad */ @@ -956,8 +1177,9 @@ inc_rfc1001_len(req, unc_path_len - 1 /* pad */); - rc = SendReceive2(xid, ses, iov, 2, &resp_buftype, 0); - rsp = (struct smb2_tree_connect_rsp *)iov[0].iov_base; + rc = SendReceive2(xid, ses, iov, 2, &resp_buftype, flags, &rsp_iov); + cifs_small_buf_release(req); + rsp = (struct smb2_tree_connect_rsp *)rsp_iov.iov_base; if (rc != 0) { if (tcon) { @@ -968,7 +1190,7 @@ } if (tcon == NULL) { - ses->ipc_tid = rsp->hdr.TreeId; + ses->ipc_tid = rsp->hdr.sync_hdr.TreeId; goto tcon_exit; } @@ -991,15 +1213,18 @@ tcon->maximal_access = le32_to_cpu(rsp->MaximalAccess); tcon->tidStatus = CifsGood; tcon->need_reconnect = false; - tcon->tid = rsp->hdr.TreeId; + tcon->tid = rsp->hdr.sync_hdr.TreeId; strlcpy(tcon->treeName, tree, sizeof(tcon->treeName)); if ((rsp->Capabilities & SMB2_SHARE_CAP_DFS) && ((tcon->share_flags & SHI1005_FLAGS_DFS) == 0)) cifs_dbg(VFS, "DFS capability contradicts DFS flag\n"); + + if (tcon->seal && + !(tcon->ses->server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION)) + cifs_dbg(VFS, "Encryption is requested but not supported\n"); + init_copy_chunk_defaults(tcon); - if (tcon->share_flags & SHI1005_FLAGS_ENCRYPT_DATA) - cifs_dbg(VFS, "Encrypted shares not supported"); if (tcon->ses->server->ops->validate_negotiate) rc = tcon->ses->server->ops->validate_negotiate(xid, tcon); tcon_exit: @@ -1008,7 +1233,7 @@ return rc; tcon_error_exit: - if (rsp->hdr.Status == STATUS_BAD_NETWORK_NAME) { + if (rsp->hdr.sync_hdr.Status == STATUS_BAD_NETWORK_NAME) { cifs_dbg(VFS, "BAD_NETWORK_NAME: %s\n", tree); if (tcon) tcon->bad_network_name = true; @@ -1023,6 +1248,7 @@ int rc = 0; struct TCP_Server_Info *server; struct cifs_ses *ses = tcon->ses; + int flags = 0; cifs_dbg(FYI, "Tree Disconnect\n"); @@ -1038,7 +1264,11 @@ if (rc) return rc; - rc = SendReceiveNoRsp(xid, ses, (char *)&req->hdr, 0); + if (encryption_required(tcon)) + flags |= CIFS_TRANSFORM_REQ; + + rc = SendReceiveNoRsp(xid, ses, (char *)req, flags); + cifs_small_buf_release(req); if (rc) cifs_stats_fail_inc(tcon, SMB2_TREE_DISCONNECT_HE); @@ -1164,7 +1394,7 @@ buf->dcontext.Timeout = 0; /* Should this be configurable by workload */ buf->dcontext.Flags = cpu_to_le32(SMB2_DHANDLE_FLAG_PERSISTENT); - get_random_bytes(buf->dcontext.CreateGuid, 16); + generate_random_uuid(buf->dcontext.CreateGuid); memcpy(pfid->create_guid, buf->dcontext.CreateGuid, 16); /* SMB2_CREATE_DURABLE_HANDLE_REQUEST is "DH2Q" */ @@ -1300,14 +1530,16 @@ struct cifs_tcon *tcon = oparms->tcon; struct cifs_ses *ses = tcon->ses; struct kvec iov[4]; + struct kvec rsp_iov; int resp_buftype; int uni_path_len; __le16 *copy_path = NULL; int copy_size; int rc = 0; - unsigned int num_iovecs = 2; + unsigned int n_iov = 2; __u32 file_attributes = 0; char *dhc_buf = NULL, *lc_buf = NULL; + int flags = 0; cifs_dbg(FYI, "create/open\n"); @@ -1320,6 +1552,9 @@ if (rc) return rc; + if (encryption_required(tcon)) + flags |= CIFS_TRANSFORM_REQ; + if (oparms->create_options & CREATE_OPTION_READONLY) file_attributes |= ATTR_READONLY; if (oparms->create_options & CREATE_OPTION_SPECIAL) @@ -1370,25 +1605,25 @@ *oplock == SMB2_OPLOCK_LEVEL_NONE) req->RequestedOplockLevel = *oplock; else { - rc = add_lease_context(server, iov, &num_iovecs, oplock); + rc = add_lease_context(server, iov, &n_iov, oplock); if (rc) { cifs_small_buf_release(req); kfree(copy_path); return rc; } - lc_buf = iov[num_iovecs-1].iov_base; + lc_buf = iov[n_iov-1].iov_base; } if (*oplock == SMB2_OPLOCK_LEVEL_BATCH) { /* need to set Next field of lease context if we request it */ if (server->capabilities & SMB2_GLOBAL_CAP_LEASING) { struct create_context *ccontext = - (struct create_context *)iov[num_iovecs-1].iov_base; + (struct create_context *)iov[n_iov-1].iov_base; ccontext->Next = cpu_to_le32(server->vals->create_lease_size); } - rc = add_durable_context(iov, &num_iovecs, oparms, + rc = add_durable_context(iov, &n_iov, oparms, tcon->use_persistent); if (rc) { cifs_small_buf_release(req); @@ -1396,11 +1631,12 @@ kfree(lc_buf); return rc; } - dhc_buf = iov[num_iovecs-1].iov_base; + dhc_buf = iov[n_iov-1].iov_base; } - rc = SendReceive2(xid, ses, iov, num_iovecs, &resp_buftype, 0); - rsp = (struct smb2_create_rsp *)iov[0].iov_base; + rc = SendReceive2(xid, ses, iov, n_iov, &resp_buftype, flags, &rsp_iov); + cifs_small_buf_release(req); + rsp = (struct smb2_create_rsp *)rsp_iov.iov_base; if (rc != 0) { cifs_stats_fail_inc(tcon, SMB2_CREATE_HE); @@ -1444,12 +1680,15 @@ { struct smb2_ioctl_req *req; struct smb2_ioctl_rsp *rsp; + struct smb2_sync_hdr *shdr; struct TCP_Server_Info *server; struct cifs_ses *ses; struct kvec iov[2]; + struct kvec rsp_iov; int resp_buftype; - int num_iovecs; + int n_iov; int rc = 0; + int flags = 0; cifs_dbg(FYI, "SMB2 IOCTL\n"); @@ -1474,6 +1713,9 @@ if (rc) return rc; + if (encryption_required(tcon)) + flags |= CIFS_TRANSFORM_REQ; + req->CtlCode = cpu_to_le32(opcode); req->PersistentFileId = persistent_fid; req->VolatileFileId = volatile_fid; @@ -1485,9 +1727,9 @@ cpu_to_le32(offsetof(struct smb2_ioctl_req, Buffer) - 4); iov[1].iov_base = in_data; iov[1].iov_len = indatalen; - num_iovecs = 2; + n_iov = 2; } else - num_iovecs = 1; + n_iov = 1; req->OutputOffset = 0; req->OutputCount = 0; /* MBZ */ @@ -1524,8 +1766,9 @@ iov[0].iov_len = get_rfc1002_length(req) + 4; - rc = SendReceive2(xid, ses, iov, num_iovecs, &resp_buftype, 0); - rsp = (struct smb2_ioctl_rsp *)iov[0].iov_base; + rc = SendReceive2(xid, ses, iov, n_iov, &resp_buftype, flags, &rsp_iov); + cifs_small_buf_release(req); + rsp = (struct smb2_ioctl_rsp *)rsp_iov.iov_base; if ((rc != 0) && (rc != -EINVAL)) { cifs_stats_fail_inc(tcon, SMB2_IOCTL_HE); @@ -1568,9 +1811,8 @@ goto ioctl_exit; } - memcpy(*out_data, - (char *)&rsp->hdr.ProtocolId + le32_to_cpu(rsp->OutputOffset), - *plen); + shdr = get_sync_hdr(rsp); + memcpy(*out_data, (char *)shdr + le32_to_cpu(rsp->OutputOffset), *plen); ioctl_exit: free_rsp_buf(resp_buftype, rsp); return rc; @@ -1610,8 +1852,10 @@ struct TCP_Server_Info *server; struct cifs_ses *ses = tcon->ses; struct kvec iov[1]; + struct kvec rsp_iov; int resp_buftype; int rc = 0; + int flags = 0; cifs_dbg(FYI, "Close\n"); @@ -1624,6 +1868,9 @@ if (rc) return rc; + if (encryption_required(tcon)) + flags |= CIFS_TRANSFORM_REQ; + req->PersistentFileId = persistent_fid; req->VolatileFileId = volatile_fid; @@ -1631,8 +1878,9 @@ /* 4 for rfc1002 length field */ iov[0].iov_len = get_rfc1002_length(req) + 4; - rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, 0); - rsp = (struct smb2_close_rsp *)iov[0].iov_base; + rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, flags, &rsp_iov); + cifs_small_buf_release(req); + rsp = (struct smb2_close_rsp *)rsp_iov.iov_base; if (rc != 0) { cifs_stats_fail_inc(tcon, SMB2_CLOSE_HE); @@ -1711,10 +1959,12 @@ struct smb2_query_info_req *req; struct smb2_query_info_rsp *rsp = NULL; struct kvec iov[2]; + struct kvec rsp_iov; int rc = 0; int resp_buftype; struct TCP_Server_Info *server; struct cifs_ses *ses = tcon->ses; + int flags = 0; cifs_dbg(FYI, "Query Info\n"); @@ -1727,6 +1977,9 @@ if (rc) return rc; + if (encryption_required(tcon)) + flags |= CIFS_TRANSFORM_REQ; + req->InfoType = SMB2_O_INFO_FILE; req->FileInfoClass = info_class; req->PersistentFileId = persistent_fid; @@ -1740,8 +1993,9 @@ /* 4 for rfc1002 length field */ iov[0].iov_len = get_rfc1002_length(req) + 4; - rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, 0); - rsp = (struct smb2_query_info_rsp *)iov[0].iov_base; + rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, flags, &rsp_iov); + cifs_small_buf_release(req); + rsp = (struct smb2_query_info_rsp *)rsp_iov.iov_base; if (rc) { cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE); @@ -1789,11 +2043,11 @@ smb2_echo_callback(struct mid_q_entry *mid) { struct TCP_Server_Info *server = mid->callback_data; - struct smb2_echo_rsp *smb2 = (struct smb2_echo_rsp *)mid->resp_buf; + struct smb2_echo_rsp *rsp = (struct smb2_echo_rsp *)mid->resp_buf; unsigned int credits_received = 1; if (mid->mid_state == MID_RESPONSE_RECEIVED) - credits_received = le16_to_cpu(smb2->hdr.CreditRequest); + credits_received = le16_to_cpu(rsp->hdr.sync_hdr.CreditRequest); mutex_lock(&server->srv_mutex); DeleteMidQEntry(mid); @@ -1801,56 +2055,85 @@ add_credits(server, credits_received, CIFS_ECHO_OP); } +void smb2_reconnect_server(struct work_struct *work) +{ + struct TCP_Server_Info *server = container_of(work, + struct TCP_Server_Info, reconnect.work); + struct cifs_ses *ses; + struct cifs_tcon *tcon, *tcon2; + struct list_head tmp_list; + int tcon_exist = false; + + /* Prevent simultaneous reconnects that can corrupt tcon->rlist list */ + mutex_lock(&server->reconnect_mutex); + + INIT_LIST_HEAD(&tmp_list); + cifs_dbg(FYI, "Need negotiate, reconnecting tcons\n"); + + spin_lock(&cifs_tcp_ses_lock); + list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) { + list_for_each_entry(tcon, &ses->tcon_list, tcon_list) { + if (tcon->need_reconnect) { + tcon->tc_count++; + list_add_tail(&tcon->rlist, &tmp_list); + tcon_exist = true; + } + } + } + /* + * Get the reference to server struct to be sure that the last call of + * cifs_put_tcon() in the loop below won't release the server pointer. + */ + if (tcon_exist) + server->srv_count++; + + spin_unlock(&cifs_tcp_ses_lock); + + list_for_each_entry_safe(tcon, tcon2, &tmp_list, rlist) { + smb2_reconnect(SMB2_ECHO, tcon); + list_del_init(&tcon->rlist); + cifs_put_tcon(tcon); + } + + cifs_dbg(FYI, "Reconnecting tcons finished\n"); + mutex_unlock(&server->reconnect_mutex); + + /* now we can safely release srv struct */ + if (tcon_exist) + cifs_put_tcp_session(server, 1); +} + int SMB2_echo(struct TCP_Server_Info *server) { struct smb2_echo_req *req; int rc = 0; - struct kvec iov; - struct smb_rqst rqst = { .rq_iov = &iov, - .rq_nvec = 1 }; + struct kvec iov[2]; + struct smb_rqst rqst = { .rq_iov = iov, + .rq_nvec = 2 }; cifs_dbg(FYI, "In echo request\n"); if (server->tcpStatus == CifsNeedNegotiate) { - struct list_head *tmp, *tmp2; - struct cifs_ses *ses; - struct cifs_tcon *tcon; - - cifs_dbg(FYI, "Need negotiate, reconnecting tcons\n"); - spin_lock(&cifs_tcp_ses_lock); - list_for_each(tmp, &server->smb_ses_list) { - ses = list_entry(tmp, struct cifs_ses, smb_ses_list); - list_for_each(tmp2, &ses->tcon_list) { - tcon = list_entry(tmp2, struct cifs_tcon, - tcon_list); - /* add check for persistent handle reconnect */ - if (tcon && tcon->need_reconnect) { - spin_unlock(&cifs_tcp_ses_lock); - rc = smb2_reconnect(SMB2_ECHO, tcon); - spin_lock(&cifs_tcp_ses_lock); - } - } - } - spin_unlock(&cifs_tcp_ses_lock); + /* No need to send echo on newly established connections */ + queue_delayed_work(cifsiod_wq, &server->reconnect, 0); + return rc; } - /* if no session, renegotiate failed above */ - if (server->tcpStatus == CifsNeedNegotiate) - return -EIO; - rc = small_smb2_init(SMB2_ECHO, NULL, (void **)&req); if (rc) return rc; - req->hdr.CreditRequest = cpu_to_le16(1); + req->hdr.sync_hdr.CreditRequest = cpu_to_le16(1); - iov.iov_base = (char *)req; /* 4 for rfc1002 length field */ - iov.iov_len = get_rfc1002_length(req) + 4; + iov[0].iov_len = 4; + iov[0].iov_base = (char *)req; + iov[1].iov_len = get_rfc1002_length(req); + iov[1].iov_base = (char *)req + 4; - rc = cifs_call_async(server, &rqst, NULL, smb2_echo_callback, server, - CIFS_ECHO_OP); + rc = cifs_call_async(server, &rqst, NULL, smb2_echo_callback, NULL, + server, CIFS_ECHO_OP); if (rc) cifs_dbg(FYI, "Echo request failed: %d\n", rc); @@ -1866,8 +2149,10 @@ struct TCP_Server_Info *server; struct cifs_ses *ses = tcon->ses; struct kvec iov[1]; + struct kvec rsp_iov; int resp_buftype; int rc = 0; + int flags = 0; cifs_dbg(FYI, "Flush\n"); @@ -1880,6 +2165,9 @@ if (rc) return rc; + if (encryption_required(tcon)) + flags |= CIFS_TRANSFORM_REQ; + req->PersistentFileId = persistent_fid; req->VolatileFileId = volatile_fid; @@ -1887,12 +2175,13 @@ /* 4 for rfc1002 length field */ iov[0].iov_len = get_rfc1002_length(req) + 4; - rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, 0); + rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, flags, &rsp_iov); + cifs_small_buf_release(req); if (rc != 0) cifs_stats_fail_inc(tcon, SMB2_FLUSH_HE); - free_rsp_buf(resp_buftype, iov[0].iov_base); + free_rsp_buf(resp_buftype, rsp_iov.iov_base); return rc; } @@ -1901,19 +2190,23 @@ * have the end_of_chain boolean set to true. */ static int -smb2_new_read_req(struct kvec *iov, struct cifs_io_parms *io_parms, - unsigned int remaining_bytes, int request_type) +smb2_new_read_req(void **buf, unsigned int *total_len, + struct cifs_io_parms *io_parms, unsigned int remaining_bytes, + int request_type) { int rc = -EACCES; - struct smb2_read_req *req = NULL; + struct smb2_read_plain_req *req = NULL; + struct smb2_sync_hdr *shdr; - rc = small_smb2_init(SMB2_READ, io_parms->tcon, (void **) &req); + rc = smb2_plain_req_init(SMB2_READ, io_parms->tcon, (void **) &req, + total_len); if (rc) return rc; if (io_parms->tcon->ses->server == NULL) return -ECONNABORTED; - req->hdr.ProcessId = cpu_to_le32(io_parms->pid); + shdr = &req->sync_hdr; + shdr->ProcessId = cpu_to_le32(io_parms->pid); req->PersistentFileId = io_parms->persistent_fid; req->VolatileFileId = io_parms->volatile_fid; @@ -1926,19 +2219,19 @@ if (request_type & CHAINED_REQUEST) { if (!(request_type & END_OF_CHAIN)) { - /* 4 for rfc1002 length field */ - req->hdr.NextCommand = - cpu_to_le32(get_rfc1002_length(req) + 4); + /* next 8-byte aligned request */ + *total_len = DIV_ROUND_UP(*total_len, 8) * 8; + shdr->NextCommand = cpu_to_le32(*total_len); } else /* END_OF_CHAIN */ - req->hdr.NextCommand = 0; + shdr->NextCommand = 0; if (request_type & RELATED_REQUEST) { - req->hdr.Flags |= SMB2_FLAGS_RELATED_OPERATIONS; + shdr->Flags |= SMB2_FLAGS_RELATED_OPERATIONS; /* * Related requests use info from previous read request * in chain. */ - req->hdr.SessionId = 0xFFFFFFFF; - req->hdr.TreeId = 0xFFFFFFFF; + shdr->SessionId = 0xFFFFFFFF; + shdr->TreeId = 0xFFFFFFFF; req->PersistentFileId = 0xFFFFFFFF; req->VolatileFileId = 0xFFFFFFFF; } @@ -1948,9 +2241,7 @@ else req->RemainingBytes = 0; - iov[0].iov_base = (char *)req; - /* 4 for rfc1002 length field */ - iov[0].iov_len = get_rfc1002_length(req) + 4; + *buf = req; return rc; } @@ -1960,10 +2251,11 @@ struct cifs_readdata *rdata = mid->callback_data; struct cifs_tcon *tcon = tlink_tcon(rdata->cfile->tlink); struct TCP_Server_Info *server = tcon->ses->server; - struct smb2_hdr *buf = (struct smb2_hdr *)rdata->iov.iov_base; + struct smb2_sync_hdr *shdr = + (struct smb2_sync_hdr *)rdata->iov[1].iov_base; unsigned int credits_received = 1; - struct smb_rqst rqst = { .rq_iov = &rdata->iov, - .rq_nvec = 1, + struct smb_rqst rqst = { .rq_iov = rdata->iov, + .rq_nvec = 2, .rq_pages = rdata->pages, .rq_npages = rdata->nr_pages, .rq_pagesz = rdata->pagesz, @@ -1975,9 +2267,9 @@ switch (mid->mid_state) { case MID_RESPONSE_RECEIVED: - credits_received = le16_to_cpu(buf->CreditRequest); + credits_received = le16_to_cpu(shdr->CreditRequest); /* result already set, check signature */ - if (server->sign) { + if (server->sign && !mid->decrypted) { int rc; rc = smb2_verify_signature(&rqst, server); @@ -2014,16 +2306,19 @@ add_credits(server, credits_received, 0); } -/* smb2_async_readv - send an async write, and set up mid to handle result */ +/* smb2_async_readv - send an async read, and set up mid to handle result */ int smb2_async_readv(struct cifs_readdata *rdata) { int rc, flags = 0; - struct smb2_hdr *buf; + char *buf; + struct smb2_sync_hdr *shdr; struct cifs_io_parms io_parms; - struct smb_rqst rqst = { .rq_iov = &rdata->iov, - .rq_nvec = 1 }; + struct smb_rqst rqst = { .rq_iov = rdata->iov, + .rq_nvec = 2 }; struct TCP_Server_Info *server; + unsigned int total_len; + __be32 req_len; cifs_dbg(FYI, "%s: offset=%llu bytes=%u\n", __func__, rdata->offset, rdata->bytes); @@ -2037,7 +2332,7 @@ server = io_parms.tcon->ses->server; - rc = smb2_new_read_req(&rdata->iov, &io_parms, 0, 0); + rc = smb2_new_read_req((void **) &buf, &total_len, &io_parms, 0, 0); if (rc) { if (rc == -EAGAIN && rdata->credits) { /* credits was reset by reconnect */ @@ -2050,25 +2345,34 @@ return rc; } - buf = (struct smb2_hdr *)rdata->iov.iov_base; - /* 4 for rfc1002 length field */ - rdata->iov.iov_len = get_rfc1002_length(rdata->iov.iov_base) + 4; + if (encryption_required(io_parms.tcon)) + flags |= CIFS_TRANSFORM_REQ; + + req_len = cpu_to_be32(total_len); + + rdata->iov[0].iov_base = &req_len; + rdata->iov[0].iov_len = sizeof(__be32); + rdata->iov[1].iov_base = buf; + rdata->iov[1].iov_len = total_len; + + shdr = (struct smb2_sync_hdr *)buf; if (rdata->credits) { - buf->CreditCharge = cpu_to_le16(DIV_ROUND_UP(rdata->bytes, + shdr->CreditCharge = cpu_to_le16(DIV_ROUND_UP(rdata->bytes, SMB2_MAX_BUFFER_SIZE)); + shdr->CreditRequest = shdr->CreditCharge; spin_lock(&server->req_lock); server->credits += rdata->credits - - le16_to_cpu(buf->CreditCharge); + le16_to_cpu(shdr->CreditCharge); spin_unlock(&server->req_lock); wake_up(&server->request_q); - flags = CIFS_HAS_CREDITS; + flags |= CIFS_HAS_CREDITS; } kref_get(&rdata->refcount); rc = cifs_call_async(io_parms.tcon->ses->server, &rqst, cifs_readv_receive, smb2_readv_callback, - rdata, flags); + smb3_handle_read_data, rdata, flags); if (rc) { kref_put(&rdata->refcount, cifs_readdata_release); cifs_stats_fail_inc(io_parms.tcon, SMB2_READ_HE); @@ -2083,21 +2387,41 @@ unsigned int *nbytes, char **buf, int *buf_type) { int resp_buftype, rc = -EACCES; + struct smb2_read_plain_req *req = NULL; struct smb2_read_rsp *rsp = NULL; - struct kvec iov[1]; + struct smb2_sync_hdr *shdr; + struct kvec iov[2]; + struct kvec rsp_iov; + unsigned int total_len; + __be32 req_len; + struct smb_rqst rqst = { .rq_iov = iov, + .rq_nvec = 2 }; + int flags = CIFS_LOG_ERROR; + struct cifs_ses *ses = io_parms->tcon->ses; *nbytes = 0; - rc = smb2_new_read_req(iov, io_parms, 0, 0); + rc = smb2_new_read_req((void **)&req, &total_len, io_parms, 0, 0); if (rc) return rc; - rc = SendReceive2(xid, io_parms->tcon->ses, iov, 1, - &resp_buftype, CIFS_LOG_ERROR); + if (encryption_required(io_parms->tcon)) + flags |= CIFS_TRANSFORM_REQ; + + req_len = cpu_to_be32(total_len); - rsp = (struct smb2_read_rsp *)iov[0].iov_base; + iov[0].iov_base = &req_len; + iov[0].iov_len = sizeof(__be32); + iov[1].iov_base = req; + iov[1].iov_len = total_len; - if (rsp->hdr.Status == STATUS_END_OF_FILE) { - free_rsp_buf(resp_buftype, iov[0].iov_base); + rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags, &rsp_iov); + cifs_small_buf_release(req); + + rsp = (struct smb2_read_rsp *)rsp_iov.iov_base; + shdr = get_sync_hdr(rsp); + + if (shdr->Status == STATUS_END_OF_FILE) { + free_rsp_buf(resp_buftype, rsp_iov.iov_base); return 0; } @@ -2116,11 +2440,10 @@ } if (*buf) { - memcpy(*buf, (char *)&rsp->hdr.ProtocolId + rsp->DataOffset, - *nbytes); - free_rsp_buf(resp_buftype, iov[0].iov_base); + memcpy(*buf, (char *)shdr + rsp->DataOffset, *nbytes); + free_rsp_buf(resp_buftype, rsp_iov.iov_base); } else if (resp_buftype != CIFS_NO_BUFFER) { - *buf = iov[0].iov_base; + *buf = rsp_iov.iov_base; if (resp_buftype == CIFS_SMALL_BUFFER) *buf_type = CIFS_SMALL_BUFFER; else if (resp_buftype == CIFS_LARGE_BUFFER) @@ -2145,7 +2468,7 @@ switch (mid->mid_state) { case MID_RESPONSE_RECEIVED: - credits_received = le16_to_cpu(rsp->hdr.CreditRequest); + credits_received = le16_to_cpu(rsp->hdr.sync_hdr.CreditRequest); wdata->result = smb2_check_receive(mid, tcon->ses->server, 0); if (wdata->result != 0) break; @@ -2191,10 +2514,11 @@ { int rc = -EACCES, flags = 0; struct smb2_write_req *req = NULL; + struct smb2_sync_hdr *shdr; struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink); struct TCP_Server_Info *server = tcon->ses->server; - struct kvec iov; - struct smb_rqst rqst; + struct kvec iov[2]; + struct smb_rqst rqst = { }; rc = small_smb2_init(SMB2_WRITE, tcon, (void **) &req); if (rc) { @@ -2209,7 +2533,11 @@ goto async_writev_out; } - req->hdr.ProcessId = cpu_to_le32(wdata->cfile->pid); + if (encryption_required(tcon)) + flags |= CIFS_TRANSFORM_REQ; + + shdr = get_sync_hdr(req); + shdr->ProcessId = cpu_to_le32(wdata->cfile->pid); req->PersistentFileId = wdata->cfile->fid.persistent_fid; req->VolatileFileId = wdata->cfile->fid.volatile_fid; @@ -2223,11 +2551,13 @@ req->RemainingBytes = 0; /* 4 for rfc1002 length field and 1 for Buffer */ - iov.iov_len = get_rfc1002_length(req) + 4 - 1; - iov.iov_base = req; + iov[0].iov_len = 4; + iov[0].iov_base = req; + iov[1].iov_len = get_rfc1002_length(req) - 1; + iov[1].iov_base = (char *)req + 4; - rqst.rq_iov = &iov; - rqst.rq_nvec = 1; + rqst.rq_iov = iov; + rqst.rq_nvec = 2; rqst.rq_pages = wdata->pages; rqst.rq_npages = wdata->nr_pages; rqst.rq_pagesz = wdata->pagesz; @@ -2241,19 +2571,20 @@ inc_rfc1001_len(&req->hdr, wdata->bytes - 1 /* Buffer */); if (wdata->credits) { - req->hdr.CreditCharge = cpu_to_le16(DIV_ROUND_UP(wdata->bytes, + shdr->CreditCharge = cpu_to_le16(DIV_ROUND_UP(wdata->bytes, SMB2_MAX_BUFFER_SIZE)); + shdr->CreditRequest = shdr->CreditCharge; spin_lock(&server->req_lock); server->credits += wdata->credits - - le16_to_cpu(req->hdr.CreditCharge); + le16_to_cpu(shdr->CreditCharge); spin_unlock(&server->req_lock); wake_up(&server->request_q); - flags = CIFS_HAS_CREDITS; + flags |= CIFS_HAS_CREDITS; } kref_get(&wdata->refcount); - rc = cifs_call_async(server, &rqst, NULL, smb2_writev_callback, wdata, - flags); + rc = cifs_call_async(server, &rqst, NULL, smb2_writev_callback, NULL, + wdata, flags); if (rc) { kref_put(&wdata->refcount, release); @@ -2279,6 +2610,9 @@ struct smb2_write_req *req = NULL; struct smb2_write_rsp *rsp = NULL; int resp_buftype; + struct kvec rsp_iov; + int flags = 0; + *nbytes = 0; if (n_vec < 1) @@ -2291,7 +2625,10 @@ if (io_parms->tcon->ses->server == NULL) return -ECONNABORTED; - req->hdr.ProcessId = cpu_to_le32(io_parms->pid); + if (encryption_required(io_parms->tcon)) + flags |= CIFS_TRANSFORM_REQ; + + req->hdr.sync_hdr.ProcessId = cpu_to_le32(io_parms->pid); req->PersistentFileId = io_parms->persistent_fid; req->VolatileFileId = io_parms->volatile_fid; @@ -2313,8 +2650,9 @@ inc_rfc1001_len(req, io_parms->length - 1 /* Buffer */); rc = SendReceive2(xid, io_parms->tcon->ses, iov, n_vec + 1, - &resp_buftype, 0); - rsp = (struct smb2_write_rsp *)iov[0].iov_base; + &resp_buftype, flags, &rsp_iov); + cifs_small_buf_release(req); + rsp = (struct smb2_write_rsp *)rsp_iov.iov_base; if (rc) { cifs_stats_fail_inc(io_parms->tcon, SMB2_WRITE_HE); @@ -2377,6 +2715,7 @@ struct smb2_query_directory_req *req; struct smb2_query_directory_rsp *rsp = NULL; struct kvec iov[2]; + struct kvec rsp_iov; int rc = 0; int len; int resp_buftype = CIFS_NO_BUFFER; @@ -2387,6 +2726,7 @@ char *end_of_smb; unsigned int output_size = CIFSMaxBufSize; size_t info_buf_size; + int flags = 0; if (ses && (ses->server)) server = ses->server; @@ -2397,6 +2737,9 @@ if (rc) return rc; + if (encryption_required(tcon)) + flags |= CIFS_TRANSFORM_REQ; + switch (srch_inf->info_level) { case SMB_FIND_FILE_DIRECTORY_INFO: req->FileInformationClass = FILE_DIRECTORY_INFORMATION; @@ -2441,11 +2784,13 @@ inc_rfc1001_len(req, len - 1 /* Buffer */); - rc = SendReceive2(xid, ses, iov, 2, &resp_buftype, 0); - rsp = (struct smb2_query_directory_rsp *)iov[0].iov_base; + rc = SendReceive2(xid, ses, iov, 2, &resp_buftype, flags, &rsp_iov); + cifs_small_buf_release(req); + rsp = (struct smb2_query_directory_rsp *)rsp_iov.iov_base; if (rc) { - if (rc == -ENODATA && rsp->hdr.Status == STATUS_NO_MORE_FILES) { + if (rc == -ENODATA && + rsp->hdr.sync_hdr.Status == STATUS_NO_MORE_FILES) { srch_inf->endOfSearch = true; rc = 0; } @@ -2501,11 +2846,13 @@ struct smb2_set_info_req *req; struct smb2_set_info_rsp *rsp = NULL; struct kvec *iov; + struct kvec rsp_iov; int rc = 0; int resp_buftype; unsigned int i; struct TCP_Server_Info *server; struct cifs_ses *ses = tcon->ses; + int flags = 0; if (ses && (ses->server)) server = ses->server; @@ -2525,7 +2872,10 @@ return rc; } - req->hdr.ProcessId = cpu_to_le32(pid); + if (encryption_required(tcon)) + flags |= CIFS_TRANSFORM_REQ; + + req->hdr.sync_hdr.ProcessId = cpu_to_le32(pid); req->InfoType = SMB2_O_INFO_FILE; req->FileInfoClass = info_class; @@ -2552,8 +2902,9 @@ iov[i].iov_len = size[i]; } - rc = SendReceive2(xid, ses, iov, num, &resp_buftype, 0); - rsp = (struct smb2_set_info_rsp *)iov[0].iov_base; + rc = SendReceive2(xid, ses, iov, num, &resp_buftype, flags, &rsp_iov); + cifs_small_buf_release(req); + rsp = (struct smb2_set_info_rsp *)rsp_iov.iov_base; if (rc != 0) cifs_stats_fail_inc(tcon, SMB2_SET_INFO_HE); @@ -2681,20 +3032,23 @@ { int rc; struct smb2_oplock_break *req = NULL; + int flags = CIFS_OBREAK_OP; cifs_dbg(FYI, "SMB2_oplock_break\n"); rc = small_smb2_init(SMB2_OPLOCK_BREAK, tcon, (void **) &req); - if (rc) return rc; + if (encryption_required(tcon)) + flags |= CIFS_TRANSFORM_REQ; + req->VolatileFid = volatile_fid; req->PersistentFid = persistent_fid; req->OplockLevel = oplock_level; - req->hdr.CreditRequest = cpu_to_le16(1); + req->hdr.sync_hdr.CreditRequest = cpu_to_le16(1); - rc = SendReceiveNoRsp(xid, tcon->ses, (char *) req, CIFS_OBREAK_OP); - /* SMB2 buffer freed by function above */ + rc = SendReceiveNoRsp(xid, tcon->ses, (char *) req, flags); + cifs_small_buf_release(req); if (rc) { cifs_stats_fail_inc(tcon, SMB2_OPLOCK_BREAK_HE); @@ -2754,10 +3108,12 @@ { struct smb2_query_info_rsp *rsp = NULL; struct kvec iov; + struct kvec rsp_iov; int rc = 0; int resp_buftype; struct cifs_ses *ses = tcon->ses; struct smb2_fs_full_size_info *info = NULL; + int flags = 0; rc = build_qfs_info_req(&iov, tcon, FS_FULL_SIZE_INFORMATION, sizeof(struct smb2_fs_full_size_info), @@ -2765,12 +3121,16 @@ if (rc) return rc; - rc = SendReceive2(xid, ses, &iov, 1, &resp_buftype, 0); + if (encryption_required(tcon)) + flags |= CIFS_TRANSFORM_REQ; + + rc = SendReceive2(xid, ses, &iov, 1, &resp_buftype, flags, &rsp_iov); + cifs_small_buf_release(iov.iov_base); if (rc) { cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE); goto qfsinf_exit; } - rsp = (struct smb2_query_info_rsp *)iov.iov_base; + rsp = (struct smb2_query_info_rsp *)rsp_iov.iov_base; info = (struct smb2_fs_full_size_info *)(4 /* RFC1001 len */ + le16_to_cpu(rsp->OutputBufferOffset) + (char *)&rsp->hdr); @@ -2781,7 +3141,7 @@ copy_fs_info_to_kstatfs(info, fsdata); qfsinf_exit: - free_rsp_buf(resp_buftype, iov.iov_base); + free_rsp_buf(resp_buftype, rsp_iov.iov_base); return rc; } @@ -2791,10 +3151,12 @@ { struct smb2_query_info_rsp *rsp = NULL; struct kvec iov; + struct kvec rsp_iov; int rc = 0; int resp_buftype, max_len, min_len; struct cifs_ses *ses = tcon->ses; unsigned int rsp_len, offset; + int flags = 0; if (level == FS_DEVICE_INFORMATION) { max_len = sizeof(FILE_SYSTEM_DEVICE_INFO); @@ -2815,12 +3177,16 @@ if (rc) return rc; - rc = SendReceive2(xid, ses, &iov, 1, &resp_buftype, 0); + if (encryption_required(tcon)) + flags |= CIFS_TRANSFORM_REQ; + + rc = SendReceive2(xid, ses, &iov, 1, &resp_buftype, flags, &rsp_iov); + cifs_small_buf_release(iov.iov_base); if (rc) { cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE); goto qfsattr_exit; } - rsp = (struct smb2_query_info_rsp *)iov.iov_base; + rsp = (struct smb2_query_info_rsp *)rsp_iov.iov_base; rsp_len = le32_to_cpu(rsp->OutputBufferLength); offset = le16_to_cpu(rsp->OutputBufferOffset); @@ -2844,7 +3210,7 @@ } qfsattr_exit: - free_rsp_buf(resp_buftype, iov.iov_base); + free_rsp_buf(resp_buftype, rsp_iov.iov_base); return rc; } @@ -2856,8 +3222,10 @@ int rc = 0; struct smb2_lock_req *req = NULL; struct kvec iov[2]; + struct kvec rsp_iov; int resp_buf_type; unsigned int count; + int flags = CIFS_NO_RESP; cifs_dbg(FYI, "smb2_lockv num lock %d\n", num_lock); @@ -2865,7 +3233,10 @@ if (rc) return rc; - req->hdr.ProcessId = cpu_to_le32(pid); + if (encryption_required(tcon)) + flags |= CIFS_TRANSFORM_REQ; + + req->hdr.sync_hdr.ProcessId = cpu_to_le32(pid); req->LockCount = cpu_to_le16(num_lock); req->PersistentFileId = persist_fid; @@ -2881,7 +3252,9 @@ iov[1].iov_len = count; cifs_stats_inc(&tcon->stats.cifs_stats.num_locks); - rc = SendReceive2(xid, tcon->ses, iov, 2, &resp_buf_type, CIFS_NO_RESP); + rc = SendReceive2(xid, tcon->ses, iov, 2, &resp_buf_type, flags, + &rsp_iov); + cifs_small_buf_release(req); if (rc) { cifs_dbg(FYI, "Send error in smb2_lockv = %d\n", rc); cifs_stats_fail_inc(tcon, SMB2_LOCK_HE); @@ -2913,22 +3286,25 @@ { int rc; struct smb2_lease_ack *req = NULL; + int flags = CIFS_OBREAK_OP; cifs_dbg(FYI, "SMB2_lease_break\n"); rc = small_smb2_init(SMB2_OPLOCK_BREAK, tcon, (void **) &req); - if (rc) return rc; - req->hdr.CreditRequest = cpu_to_le16(1); + if (encryption_required(tcon)) + flags |= CIFS_TRANSFORM_REQ; + + req->hdr.sync_hdr.CreditRequest = cpu_to_le16(1); req->StructureSize = cpu_to_le16(36); inc_rfc1001_len(req, 12); memcpy(req->LeaseKey, lease_key, 16); req->LeaseState = lease_state; - rc = SendReceiveNoRsp(xid, tcon->ses, (char *) req, CIFS_OBREAK_OP); - /* SMB2 buffer freed by function above */ + rc = SendReceiveNoRsp(xid, tcon->ses, (char *) req, flags); + cifs_small_buf_release(req); if (rc) { cifs_stats_fail_inc(tcon, SMB2_OPLOCK_BREAK_HE); --- linux-4.8.0.orig/fs/cifs/smb2pdu.h +++ linux-4.8.0/fs/cifs/smb2pdu.h @@ -99,10 +99,7 @@ #define SMB2_HEADER_STRUCTURE_SIZE cpu_to_le16(64) -struct smb2_hdr { - __be32 smb2_buf_length; /* big endian on wire */ - /* length is only two or three bytes - with - one or two byte type preceding it that MBZ */ +struct smb2_sync_hdr { __le32 ProtocolId; /* 0xFE 'S' 'M' 'B' */ __le16 StructureSize; /* 64 */ __le16 CreditCharge; /* MBZ */ @@ -118,16 +115,31 @@ __u8 Signature[16]; } __packed; +struct smb2_sync_pdu { + struct smb2_sync_hdr sync_hdr; + __le16 StructureSize2; /* size of wct area (varies, request specific) */ +} __packed; + +struct smb2_hdr { + __be32 smb2_buf_length; /* big endian on wire */ + /* length is only two or three bytes - with */ + /* one or two byte type preceding it that MBZ */ + struct smb2_sync_hdr sync_hdr; +} __packed; + struct smb2_pdu { struct smb2_hdr hdr; __le16 StructureSize2; /* size of wct area (varies, request specific) */ } __packed; +#define SMB3_AES128CMM_NONCE 11 +#define SMB3_AES128GCM_NONCE 12 + struct smb2_transform_hdr { __be32 smb2_buf_length; /* big endian on wire */ /* length is only two or three bytes - with one or two byte type preceding it that MBZ */ - __u8 ProtocolId[4]; /* 0xFD 'S' 'M' 'B' */ + __le32 ProtocolId; /* 0xFD 'S' 'M' 'B' */ __u8 Signature[16]; __u8 Nonce[16]; __le32 OriginalMessageSize; @@ -276,7 +288,7 @@ __le32 Channel; __le16 SecurityBufferOffset; __le16 SecurityBufferLength; - __le64 PreviousSessionId; + __u64 PreviousSessionId; __u8 Buffer[1]; /* variable length GSS security buffer */ } __packed; @@ -812,8 +824,9 @@ #define SMB2_CHANNEL_RDMA_V1 0x00000001 /* SMB3 or later */ #define SMB2_CHANNEL_RDMA_V1_INVALIDATE 0x00000001 /* SMB3.02 or later */ -struct smb2_read_req { - struct smb2_hdr hdr; +/* SMB2 read request without RFC1001 length at the beginning */ +struct smb2_read_plain_req { + struct smb2_sync_hdr sync_hdr; __le16 StructureSize; /* Must be 49 */ __u8 Padding; /* offset from start of SMB2 header to place read */ __u8 Flags; /* MBZ unless SMB3.02 or later */ --- linux-4.8.0.orig/fs/cifs/smb2proto.h +++ linux-4.8.0/fs/cifs/smb2proto.h @@ -56,6 +56,10 @@ extern __le32 smb2_get_lease_state(struct cifsInodeInfo *cinode); extern bool smb2_is_valid_oplock_break(char *buffer, struct TCP_Server_Info *srv); +extern struct cifs_ses *smb2_find_smb_ses(struct TCP_Server_Info *server, + __u64 ses_id); +extern int smb3_handle_read_data(struct TCP_Server_Info *server, + struct mid_q_entry *mid); extern void move_smb2_info_to_cifs(FILE_ALL_INFO *dst, struct smb2_file_all_info *src); @@ -96,6 +100,8 @@ extern int smb2_unlock_range(struct cifsFileInfo *cfile, struct file_lock *flock, const unsigned int xid); extern int smb2_push_mandatory_locks(struct cifsFileInfo *cfile); +extern void smb2_reconnect_server(struct work_struct *work); +extern int smb3_crypto_aead_allocate(struct TCP_Server_Info *server); /* * SMB2 Worker functions - most of protocol specific implementation details --- linux-4.8.0.orig/fs/cifs/smb2transport.c +++ linux-4.8.0/fs/cifs/smb2transport.c @@ -31,6 +31,7 @@ #include #include #include +#include #include "smb2pdu.h" #include "cifsglob.h" #include "cifsproto.h" @@ -114,14 +115,14 @@ return 0; } -static struct cifs_ses * -smb2_find_smb_ses(struct smb2_hdr *smb2hdr, struct TCP_Server_Info *server) +struct cifs_ses * +smb2_find_smb_ses(struct TCP_Server_Info *server, __u64 ses_id) { struct cifs_ses *ses; spin_lock(&cifs_tcp_ses_lock); list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) { - if (ses->Suid != smb2hdr->SessionId) + if (ses->Suid != ses_id) continue; spin_unlock(&cifs_tcp_ses_lock); return ses; @@ -131,7 +132,6 @@ return NULL; } - int smb2_calc_signature(struct smb_rqst *rqst, struct TCP_Server_Info *server) { @@ -139,17 +139,17 @@ unsigned char smb2_signature[SMB2_HMACSHA256_SIZE]; unsigned char *sigptr = smb2_signature; struct kvec *iov = rqst->rq_iov; - struct smb2_hdr *smb2_pdu = (struct smb2_hdr *)iov[0].iov_base; + struct smb2_sync_hdr *shdr = (struct smb2_sync_hdr *)iov[1].iov_base; struct cifs_ses *ses; - ses = smb2_find_smb_ses(smb2_pdu, server); + ses = smb2_find_smb_ses(server, shdr->SessionId); if (!ses) { cifs_dbg(VFS, "%s: Could not find session\n", __func__); return 0; } memset(smb2_signature, 0x0, SMB2_HMACSHA256_SIZE); - memset(smb2_pdu->Signature, 0x0, SMB2_SIGNATURE_SIZE); + memset(shdr->Signature, 0x0, SMB2_SIGNATURE_SIZE); rc = smb2_crypto_shash_allocate(server); if (rc) { @@ -174,7 +174,7 @@ &server->secmech.sdeschmacsha256->shash); if (!rc) - memcpy(smb2_pdu->Signature, sigptr, SMB2_SIGNATURE_SIZE); + memcpy(shdr->Signature, sigptr, SMB2_SIGNATURE_SIZE); return rc; } @@ -356,17 +356,17 @@ unsigned char smb3_signature[SMB2_CMACAES_SIZE]; unsigned char *sigptr = smb3_signature; struct kvec *iov = rqst->rq_iov; - struct smb2_hdr *smb2_pdu = (struct smb2_hdr *)iov[0].iov_base; + struct smb2_sync_hdr *shdr = (struct smb2_sync_hdr *)iov[1].iov_base; struct cifs_ses *ses; - ses = smb2_find_smb_ses(smb2_pdu, server); + ses = smb2_find_smb_ses(server, shdr->SessionId); if (!ses) { cifs_dbg(VFS, "%s: Could not find session\n", __func__); return 0; } memset(smb3_signature, 0x0, SMB2_CMACAES_SIZE); - memset(smb2_pdu->Signature, 0x0, SMB2_SIGNATURE_SIZE); + memset(shdr->Signature, 0x0, SMB2_SIGNATURE_SIZE); rc = crypto_shash_setkey(server->secmech.cmacaes, ses->smb3signingkey, SMB2_CMACAES_SIZE); @@ -391,7 +391,7 @@ &server->secmech.sdesccmacaes->shash); if (!rc) - memcpy(smb2_pdu->Signature, sigptr, SMB2_SIGNATURE_SIZE); + memcpy(shdr->Signature, sigptr, SMB2_SIGNATURE_SIZE); return rc; } @@ -401,14 +401,15 @@ smb2_sign_rqst(struct smb_rqst *rqst, struct TCP_Server_Info *server) { int rc = 0; - struct smb2_hdr *smb2_pdu = rqst->rq_iov[0].iov_base; + struct smb2_sync_hdr *shdr = + (struct smb2_sync_hdr *)rqst->rq_iov[1].iov_base; - if (!(smb2_pdu->Flags & SMB2_FLAGS_SIGNED) || + if (!(shdr->Flags & SMB2_FLAGS_SIGNED) || server->tcpStatus == CifsNeedNegotiate) return rc; if (!server->session_estab) { - strncpy(smb2_pdu->Signature, "BSRSPYL", 8); + strncpy(shdr->Signature, "BSRSPYL", 8); return rc; } @@ -422,11 +423,12 @@ { unsigned int rc; char server_response_sig[16]; - struct smb2_hdr *smb2_pdu = (struct smb2_hdr *)rqst->rq_iov[0].iov_base; + struct smb2_sync_hdr *shdr = + (struct smb2_sync_hdr *)rqst->rq_iov[1].iov_base; - if ((smb2_pdu->Command == SMB2_NEGOTIATE) || - (smb2_pdu->Command == SMB2_SESSION_SETUP) || - (smb2_pdu->Command == SMB2_OPLOCK_BREAK) || + if ((shdr->Command == SMB2_NEGOTIATE) || + (shdr->Command == SMB2_SESSION_SETUP) || + (shdr->Command == SMB2_OPLOCK_BREAK) || (!server->session_estab)) return 0; @@ -436,17 +438,17 @@ */ /* Do not need to verify session setups with signature "BSRSPYL " */ - if (memcmp(smb2_pdu->Signature, "BSRSPYL ", 8) == 0) + if (memcmp(shdr->Signature, "BSRSPYL ", 8) == 0) cifs_dbg(FYI, "dummy signature received for smb command 0x%x\n", - smb2_pdu->Command); + shdr->Command); /* * Save off the origiginal signature so we can modify the smb and check * our calculated signature against what the server sent. */ - memcpy(server_response_sig, smb2_pdu->Signature, SMB2_SIGNATURE_SIZE); + memcpy(server_response_sig, shdr->Signature, SMB2_SIGNATURE_SIZE); - memset(smb2_pdu->Signature, 0, SMB2_SIGNATURE_SIZE); + memset(shdr->Signature, 0, SMB2_SIGNATURE_SIZE); mutex_lock(&server->srv_mutex); rc = server->ops->calc_signature(rqst, server); @@ -455,8 +457,7 @@ if (rc) return rc; - if (memcmp(server_response_sig, smb2_pdu->Signature, - SMB2_SIGNATURE_SIZE)) + if (memcmp(server_response_sig, shdr->Signature, SMB2_SIGNATURE_SIZE)) return -EACCES; else return 0; @@ -467,18 +468,19 @@ * and when srv_mutex is held. */ static inline void -smb2_seq_num_into_buf(struct TCP_Server_Info *server, struct smb2_hdr *hdr) +smb2_seq_num_into_buf(struct TCP_Server_Info *server, + struct smb2_sync_hdr *shdr) { - unsigned int i, num = le16_to_cpu(hdr->CreditCharge); + unsigned int i, num = le16_to_cpu(shdr->CreditCharge); - hdr->MessageId = get_next_mid64(server); + shdr->MessageId = get_next_mid64(server); /* skip message numbers according to CreditCharge field */ for (i = 1; i < num; i++) get_next_mid(server); } static struct mid_q_entry * -smb2_mid_entry_alloc(const struct smb2_hdr *smb_buffer, +smb2_mid_entry_alloc(const struct smb2_sync_hdr *shdr, struct TCP_Server_Info *server) { struct mid_q_entry *temp; @@ -493,9 +495,9 @@ return temp; else { memset(temp, 0, sizeof(struct mid_q_entry)); - temp->mid = le64_to_cpu(smb_buffer->MessageId); + temp->mid = le64_to_cpu(shdr->MessageId); temp->pid = current->pid; - temp->command = smb_buffer->Command; /* Always LE */ + temp->command = shdr->Command; /* Always LE */ temp->when_alloc = jiffies; temp->server = server; @@ -513,7 +515,7 @@ } static int -smb2_get_mid_entry(struct cifs_ses *ses, struct smb2_hdr *buf, +smb2_get_mid_entry(struct cifs_ses *ses, struct smb2_sync_hdr *shdr, struct mid_q_entry **mid) { if (ses->server->tcpStatus == CifsExiting) @@ -525,19 +527,19 @@ } if (ses->status == CifsNew) { - if ((buf->Command != SMB2_SESSION_SETUP) && - (buf->Command != SMB2_NEGOTIATE)) + if ((shdr->Command != SMB2_SESSION_SETUP) && + (shdr->Command != SMB2_NEGOTIATE)) return -EAGAIN; /* else ok - we are setting up session */ } if (ses->status == CifsExiting) { - if (buf->Command != SMB2_LOGOFF) + if (shdr->Command != SMB2_LOGOFF) return -EAGAIN; /* else ok - we are shutting down the session */ } - *mid = smb2_mid_entry_alloc(buf, ses->server); + *mid = smb2_mid_entry_alloc(shdr, ses->server); if (*mid == NULL) return -ENOMEM; spin_lock(&GlobalMid_Lock); @@ -551,16 +553,18 @@ bool log_error) { unsigned int len = get_rfc1002_length(mid->resp_buf); - struct kvec iov; - struct smb_rqst rqst = { .rq_iov = &iov, - .rq_nvec = 1 }; - - iov.iov_base = (char *)mid->resp_buf; - iov.iov_len = get_rfc1002_length(mid->resp_buf) + 4; + struct kvec iov[2]; + struct smb_rqst rqst = { .rq_iov = iov, + .rq_nvec = 2 }; + + iov[0].iov_base = (char *)mid->resp_buf; + iov[0].iov_len = 4; + iov[1].iov_base = (char *)mid->resp_buf + 4; + iov[1].iov_len = len; dump_smb(mid->resp_buf, min_t(u32, 80, len)); /* convert the length into a more usable form */ - if (len > 24 && server->sign) { + if (len > 24 && server->sign && !mid->decrypted) { int rc; rc = smb2_verify_signature(&rqst, server); @@ -576,12 +580,13 @@ smb2_setup_request(struct cifs_ses *ses, struct smb_rqst *rqst) { int rc; - struct smb2_hdr *hdr = (struct smb2_hdr *)rqst->rq_iov[0].iov_base; + struct smb2_sync_hdr *shdr = + (struct smb2_sync_hdr *)rqst->rq_iov[1].iov_base; struct mid_q_entry *mid; - smb2_seq_num_into_buf(ses->server, hdr); + smb2_seq_num_into_buf(ses->server, shdr); - rc = smb2_get_mid_entry(ses, hdr, &mid); + rc = smb2_get_mid_entry(ses, shdr, &mid); if (rc) return ERR_PTR(rc); rc = smb2_sign_rqst(rqst, ses->server); @@ -596,12 +601,13 @@ smb2_setup_async_request(struct TCP_Server_Info *server, struct smb_rqst *rqst) { int rc; - struct smb2_hdr *hdr = (struct smb2_hdr *)rqst->rq_iov[0].iov_base; + struct smb2_sync_hdr *shdr = + (struct smb2_sync_hdr *)rqst->rq_iov[1].iov_base; struct mid_q_entry *mid; - smb2_seq_num_into_buf(server, hdr); + smb2_seq_num_into_buf(server, shdr); - mid = smb2_mid_entry_alloc(hdr, server); + mid = smb2_mid_entry_alloc(shdr, server); if (mid == NULL) return ERR_PTR(-ENOMEM); @@ -613,3 +619,33 @@ return mid; } + +int +smb3_crypto_aead_allocate(struct TCP_Server_Info *server) +{ + struct crypto_aead *tfm; + + if (!server->secmech.ccmaesencrypt) { + tfm = crypto_alloc_aead("ccm(aes)", 0, 0); + if (IS_ERR(tfm)) { + cifs_dbg(VFS, "%s: Failed to alloc encrypt aead\n", + __func__); + return PTR_ERR(tfm); + } + server->secmech.ccmaesencrypt = tfm; + } + + if (!server->secmech.ccmaesdecrypt) { + tfm = crypto_alloc_aead("ccm(aes)", 0, 0); + if (IS_ERR(tfm)) { + crypto_free_aead(server->secmech.ccmaesencrypt); + server->secmech.ccmaesencrypt = NULL; + cifs_dbg(VFS, "%s: Failed to alloc decrypt aead\n", + __func__); + return PTR_ERR(tfm); + } + server->secmech.ccmaesdecrypt = tfm; + } + + return 0; +} --- linux-4.8.0.orig/fs/cifs/transport.c +++ linux-4.8.0/fs/cifs/transport.c @@ -220,7 +220,7 @@ } static int -smb_send_rqst(struct TCP_Server_Info *server, struct smb_rqst *rqst) +__smb_send_rqst(struct TCP_Server_Info *server, struct smb_rqst *rqst) { int rc; struct kvec *iov = rqst->rq_iov; @@ -244,8 +244,12 @@ return -EIO; } + if (n_vec < 2) + return -EIO; + cifs_dbg(FYI, "Sending smb: smb_len=%u\n", smb_buf_length); dump_smb(iov[0].iov_base, iov[0].iov_len); + dump_smb(iov[1].iov_base, iov[1].iov_len); /* cork the socket */ kernel_setsockopt(ssocket, SOL_TCP, TCP_CORK, @@ -308,24 +312,43 @@ } static int -smb_sendv(struct TCP_Server_Info *server, struct kvec *iov, int n_vec) +smb_send_rqst(struct TCP_Server_Info *server, struct smb_rqst *rqst, int flags) { - struct smb_rqst rqst = { .rq_iov = iov, - .rq_nvec = n_vec }; + struct smb_rqst cur_rqst; + int rc; + + if (!(flags & CIFS_TRANSFORM_REQ)) + return __smb_send_rqst(server, rqst); + + if (!server->ops->init_transform_rq || + !server->ops->free_transform_rq) { + cifs_dbg(VFS, "Encryption requested but transform callbacks are missed\n"); + return -EIO; + } + + rc = server->ops->init_transform_rq(server, &cur_rqst, rqst); + if (rc) + return rc; - return smb_send_rqst(server, &rqst); + rc = __smb_send_rqst(server, &cur_rqst); + server->ops->free_transform_rq(&cur_rqst); + return rc; } int smb_send(struct TCP_Server_Info *server, struct smb_hdr *smb_buffer, unsigned int smb_buf_length) { - struct kvec iov; + struct kvec iov[2]; + struct smb_rqst rqst = { .rq_iov = iov, + .rq_nvec = 2 }; - iov.iov_base = smb_buffer; - iov.iov_len = smb_buf_length + 4; + iov[0].iov_base = smb_buffer; + iov[0].iov_len = 4; + iov[1].iov_base = (char *)smb_buffer + 4; + iov[1].iov_len = smb_buf_length; - return smb_sendv(server, &iov, 1); + return __smb_send_rqst(server, &rqst); } static int @@ -453,6 +476,10 @@ struct smb_hdr *hdr = (struct smb_hdr *)rqst->rq_iov[0].iov_base; struct mid_q_entry *mid; + if (rqst->rq_iov[0].iov_len != 4 || + rqst->rq_iov[0].iov_base + 4 != rqst->rq_iov[1].iov_base) + return ERR_PTR(-EIO); + /* enable signing if server requires it */ if (server->sign) hdr->Flags2 |= SMBFLG2_SECURITY_SIGNATURE; @@ -477,7 +504,7 @@ int cifs_call_async(struct TCP_Server_Info *server, struct smb_rqst *rqst, mid_receive_t *receive, mid_callback_t *callback, - void *cbdata, const int flags) + mid_handle_t *handle, void *cbdata, const int flags) { int rc, timeout, optype; struct mid_q_entry *mid; @@ -504,6 +531,7 @@ mid->receive = receive; mid->callback = callback; mid->callback_data = cbdata; + mid->handle = handle; mid->mid_state = MID_REQUEST_SUBMITTED; /* put it on the pending_mid_q */ @@ -513,7 +541,7 @@ cifs_in_send_inc(server); - rc = smb_send_rqst(server, rqst); + rc = smb_send_rqst(server, rqst, flags); cifs_in_send_dec(server); cifs_save_when_sent(mid); @@ -546,12 +574,13 @@ { int rc; struct kvec iov[1]; + struct kvec rsp_iov; int resp_buf_type; iov[0].iov_base = in_buf; iov[0].iov_len = get_rfc1002_length(in_buf) + 4; flags |= CIFS_NO_RESP; - rc = SendReceive2(xid, ses, iov, 1, &resp_buf_type, flags); + rc = SendReceive2(xid, ses, iov, 1, &resp_buf_type, flags, &rsp_iov); cifs_dbg(NOISY, "SendRcvNoRsp flags %d rc %d\n", flags, rc); return rc; @@ -594,10 +623,11 @@ } static inline int -send_cancel(struct TCP_Server_Info *server, void *buf, struct mid_q_entry *mid) +send_cancel(struct TCP_Server_Info *server, struct smb_rqst *rqst, + struct mid_q_entry *mid) { return server->ops->send_cancel ? - server->ops->send_cancel(server, buf, mid) : 0; + server->ops->send_cancel(server, rqst, mid) : 0; } int @@ -610,13 +640,15 @@ /* convert the length into a more usable form */ if (server->sign) { - struct kvec iov; + struct kvec iov[2]; int rc = 0; - struct smb_rqst rqst = { .rq_iov = &iov, - .rq_nvec = 1 }; + struct smb_rqst rqst = { .rq_iov = iov, + .rq_nvec = 2 }; - iov.iov_base = mid->resp_buf; - iov.iov_len = len; + iov[0].iov_base = mid->resp_buf; + iov[0].iov_len = 4; + iov[1].iov_base = (char *)mid->resp_buf + 4; + iov[1].iov_len = len - 4; /* FIXME: add code to kill session */ rc = cifs_verify_signature(&rqst, server, mid->sequence_number); @@ -636,6 +668,10 @@ struct smb_hdr *hdr = (struct smb_hdr *)rqst->rq_iov[0].iov_base; struct mid_q_entry *mid; + if (rqst->rq_iov[0].iov_len != 4 || + rqst->rq_iov[0].iov_base + 4 != rqst->rq_iov[1].iov_base) + return ERR_PTR(-EIO); + rc = allocate_mid(ses, hdr, &mid); if (rc) return ERR_PTR(rc); @@ -648,17 +684,15 @@ } int -SendReceive2(const unsigned int xid, struct cifs_ses *ses, - struct kvec *iov, int n_vec, int *resp_buf_type /* ret */, - const int flags) +cifs_send_recv(const unsigned int xid, struct cifs_ses *ses, + struct smb_rqst *rqst, int *resp_buf_type, const int flags, + struct kvec *resp_iov) { int rc = 0; int timeout, optype; struct mid_q_entry *midQ; - char *buf = iov[0].iov_base; unsigned int credits = 1; - struct smb_rqst rqst = { .rq_iov = iov, - .rq_nvec = n_vec }; + char *buf; timeout = flags & CIFS_TIMEOUT_MASK; optype = flags & CIFS_OP_MASK; @@ -666,15 +700,12 @@ *resp_buf_type = CIFS_NO_BUFFER; /* no response buf yet */ if ((ses == NULL) || (ses->server == NULL)) { - cifs_small_buf_release(buf); cifs_dbg(VFS, "Null session\n"); return -EIO; } - if (ses->server->tcpStatus == CifsExiting) { - cifs_small_buf_release(buf); + if (ses->server->tcpStatus == CifsExiting) return -ENOENT; - } /* * Ensure that we do not send more than 50 overlapping requests @@ -683,10 +714,8 @@ */ rc = wait_for_free_request(ses->server, timeout, optype); - if (rc) { - cifs_small_buf_release(buf); + if (rc) return rc; - } /* * Make sure that we sign in the same order that we send on this socket @@ -696,10 +725,9 @@ mutex_lock(&ses->server->srv_mutex); - midQ = ses->server->ops->setup_request(ses, &rqst); + midQ = ses->server->ops->setup_request(ses, rqst); if (IS_ERR(midQ)) { mutex_unlock(&ses->server->srv_mutex); - cifs_small_buf_release(buf); /* Update # of requests on wire to server */ add_credits(ses->server, 1, optype); return PTR_ERR(midQ); @@ -707,7 +735,7 @@ midQ->mid_state = MID_REQUEST_SUBMITTED; cifs_in_send_inc(ses->server); - rc = smb_sendv(ses->server, iov, n_vec); + rc = smb_send_rqst(ses->server, rqst, flags); cifs_in_send_dec(ses->server); cifs_save_when_sent(midQ); @@ -715,32 +743,25 @@ ses->server->sequence_number -= 2; mutex_unlock(&ses->server->srv_mutex); - if (rc < 0) { - cifs_small_buf_release(buf); + if (rc < 0) goto out; - } - if (timeout == CIFS_ASYNC_OP) { - cifs_small_buf_release(buf); + if (timeout == CIFS_ASYNC_OP) goto out; - } rc = wait_for_response(ses->server, midQ); if (rc != 0) { - send_cancel(ses->server, buf, midQ); + send_cancel(ses->server, rqst, midQ); spin_lock(&GlobalMid_Lock); if (midQ->mid_state == MID_REQUEST_SUBMITTED) { midQ->callback = DeleteMidQEntry; spin_unlock(&GlobalMid_Lock); - cifs_small_buf_release(buf); add_credits(ses->server, 1, optype); return rc; } spin_unlock(&GlobalMid_Lock); } - cifs_small_buf_release(buf); - rc = cifs_sync_mid_result(midQ, ses->server); if (rc != 0) { add_credits(ses->server, 1, optype); @@ -754,8 +775,8 @@ } buf = (char *)midQ->resp_buf; - iov[0].iov_base = buf; - iov[0].iov_len = get_rfc1002_length(buf) + 4; + resp_iov->iov_base = buf; + resp_iov->iov_len = get_rfc1002_length(buf) + 4; if (midQ->large_buf) *resp_buf_type = CIFS_LARGE_BUFFER; else @@ -777,12 +798,45 @@ } int +SendReceive2(const unsigned int xid, struct cifs_ses *ses, + struct kvec *iov, int n_vec, int *resp_buf_type /* ret */, + const int flags, struct kvec *resp_iov) +{ + struct smb_rqst rqst; + struct kvec *new_iov; + int rc; + + new_iov = kmalloc(sizeof(struct kvec) * (n_vec + 1), GFP_KERNEL); + if (!new_iov) + return -ENOMEM; + + /* 1st iov is a RFC1001 length followed by the rest of the packet */ + memcpy(new_iov + 1, iov, (sizeof(struct kvec) * n_vec)); + + new_iov[0].iov_base = new_iov[1].iov_base; + new_iov[0].iov_len = 4; + new_iov[1].iov_base += 4; + new_iov[1].iov_len -= 4; + + memset(&rqst, 0, sizeof(struct smb_rqst)); + rqst.rq_iov = new_iov; + rqst.rq_nvec = n_vec + 1; + + rc = cifs_send_recv(xid, ses, &rqst, resp_buf_type, flags, resp_iov); + kfree(new_iov); + return rc; +} + +int SendReceive(const unsigned int xid, struct cifs_ses *ses, struct smb_hdr *in_buf, struct smb_hdr *out_buf, int *pbytes_returned, const int timeout) { int rc = 0; struct mid_q_entry *midQ; + unsigned int len = be32_to_cpu(in_buf->smb_buf_length); + struct kvec iov = { .iov_base = in_buf, .iov_len = len }; + struct smb_rqst rqst = { .rq_iov = &iov, .rq_nvec = 1 }; if (ses == NULL) { cifs_dbg(VFS, "Null smb session\n"); @@ -800,10 +854,9 @@ to the same server. We may make this configurable later or use ses->maxReq */ - if (be32_to_cpu(in_buf->smb_buf_length) > CIFSMaxBufSize + - MAX_CIFS_HDR_SIZE - 4) { + if (len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) { cifs_dbg(VFS, "Illegal length, greater than maximum frame, %d\n", - be32_to_cpu(in_buf->smb_buf_length)); + len); return -EIO; } @@ -834,7 +887,7 @@ midQ->mid_state = MID_REQUEST_SUBMITTED; cifs_in_send_inc(ses->server); - rc = smb_send(ses->server, in_buf, be32_to_cpu(in_buf->smb_buf_length)); + rc = smb_send(ses->server, in_buf, len); cifs_in_send_dec(ses->server); cifs_save_when_sent(midQ); @@ -851,7 +904,7 @@ rc = wait_for_response(ses->server, midQ); if (rc != 0) { - send_cancel(ses->server, in_buf, midQ); + send_cancel(ses->server, &rqst, midQ); spin_lock(&GlobalMid_Lock); if (midQ->mid_state == MID_REQUEST_SUBMITTED) { /* no longer considered to be "in-flight" */ @@ -920,6 +973,9 @@ int rstart = 0; struct mid_q_entry *midQ; struct cifs_ses *ses; + unsigned int len = be32_to_cpu(in_buf->smb_buf_length); + struct kvec iov = { .iov_base = in_buf, .iov_len = len }; + struct smb_rqst rqst = { .rq_iov = &iov, .rq_nvec = 1 }; if (tcon == NULL || tcon->ses == NULL) { cifs_dbg(VFS, "Null smb session\n"); @@ -939,10 +995,9 @@ to the same server. We may make this configurable later or use ses->maxReq */ - if (be32_to_cpu(in_buf->smb_buf_length) > CIFSMaxBufSize + - MAX_CIFS_HDR_SIZE - 4) { + if (len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) { cifs_dbg(VFS, "Illegal length, greater than maximum frame, %d\n", - be32_to_cpu(in_buf->smb_buf_length)); + len); return -EIO; } @@ -971,7 +1026,7 @@ midQ->mid_state = MID_REQUEST_SUBMITTED; cifs_in_send_inc(ses->server); - rc = smb_send(ses->server, in_buf, be32_to_cpu(in_buf->smb_buf_length)); + rc = smb_send(ses->server, in_buf, len); cifs_in_send_dec(ses->server); cifs_save_when_sent(midQ); @@ -1000,7 +1055,7 @@ if (in_buf->Command == SMB_COM_TRANSACTION2) { /* POSIX lock. We send a NT_CANCEL SMB to cause the blocking lock to return. */ - rc = send_cancel(ses->server, in_buf, midQ); + rc = send_cancel(ses->server, &rqst, midQ); if (rc) { cifs_delete_mid(midQ); return rc; @@ -1021,7 +1076,7 @@ rc = wait_for_response(ses->server, midQ); if (rc) { - send_cancel(ses->server, in_buf, midQ); + send_cancel(ses->server, &rqst, midQ); spin_lock(&GlobalMid_Lock); if (midQ->mid_state == MID_REQUEST_SUBMITTED) { /* no longer considered to be "in-flight" */ --- linux-4.8.0.orig/fs/coredump.c +++ linux-4.8.0/fs/coredump.c @@ -1,6 +1,7 @@ #include #include #include +#include #include #include #include @@ -423,7 +424,9 @@ if (core_waiters > 0) { struct core_thread *ptr; + freezer_do_not_count(); wait_for_completion(&core_state->startup); + freezer_count(); /* * Wait for all the threads to become inactive, so that * all the thread context (extended register state, like --- linux-4.8.0.orig/fs/crypto/crypto.c +++ linux-4.8.0/fs/crypto/crypto.c @@ -152,7 +152,10 @@ struct page *src_page, struct page *dest_page, gfp_t gfp_flags) { - u8 xts_tweak[FS_XTS_TWEAK_SIZE]; + struct { + __le64 index; + u8 padding[FS_XTS_TWEAK_SIZE - sizeof(__le64)]; + } xts_tweak; struct skcipher_request *req = NULL; DECLARE_FS_COMPLETION_RESULT(ecr); struct scatterlist dst, src; @@ -172,17 +175,15 @@ req, CRYPTO_TFM_REQ_MAY_BACKLOG | CRYPTO_TFM_REQ_MAY_SLEEP, fscrypt_complete, &ecr); - BUILD_BUG_ON(FS_XTS_TWEAK_SIZE < sizeof(index)); - memcpy(xts_tweak, &index, sizeof(index)); - memset(&xts_tweak[sizeof(index)], 0, - FS_XTS_TWEAK_SIZE - sizeof(index)); + BUILD_BUG_ON(sizeof(xts_tweak) != FS_XTS_TWEAK_SIZE); + xts_tweak.index = cpu_to_le64(index); + memset(xts_tweak.padding, 0, sizeof(xts_tweak.padding)); sg_init_table(&dst, 1); sg_set_page(&dst, dest_page, PAGE_SIZE, 0); sg_init_table(&src, 1); sg_set_page(&src, src_page, PAGE_SIZE, 0); - skcipher_request_set_crypt(req, &src, &dst, PAGE_SIZE, - xts_tweak); + skcipher_request_set_crypt(req, &src, &dst, PAGE_SIZE, &xts_tweak); if (rw == FS_DECRYPT) res = crypto_skcipher_decrypt(req); else @@ -352,7 +353,6 @@ static int fscrypt_d_revalidate(struct dentry *dentry, unsigned int flags) { struct dentry *dir; - struct fscrypt_info *ci; int dir_has_key, cached_with_key; if (flags & LOOKUP_RCU) @@ -364,18 +364,11 @@ return 0; } - ci = d_inode(dir)->i_crypt_info; - if (ci && ci->ci_keyring_key && - (ci->ci_keyring_key->flags & ((1 << KEY_FLAG_INVALIDATED) | - (1 << KEY_FLAG_REVOKED) | - (1 << KEY_FLAG_DEAD)))) - ci = NULL; - /* this should eventually be an flag in d_flags */ spin_lock(&dentry->d_lock); cached_with_key = dentry->d_flags & DCACHE_ENCRYPTED_WITH_KEY; spin_unlock(&dentry->d_lock); - dir_has_key = (ci != NULL); + dir_has_key = (d_inode(dir)->i_crypt_info != NULL); dput(dir); /* --- linux-4.8.0.orig/fs/crypto/fname.c +++ linux-4.8.0/fs/crypto/fname.c @@ -360,7 +360,7 @@ fname->disk_name.len = iname->len; return 0; } - ret = get_crypt_info(dir); + ret = fscrypt_get_encryption_info(dir); if (ret && ret != -EOPNOTSUPP) return ret; --- linux-4.8.0.orig/fs/crypto/keyinfo.c +++ linux-4.8.0/fs/crypto/keyinfo.c @@ -102,6 +102,7 @@ kfree(full_key_descriptor); if (IS_ERR(keyring_key)) return PTR_ERR(keyring_key); + down_read(&keyring_key->sem); if (keyring_key->type != &key_type_logon) { printk_once(KERN_WARNING @@ -109,11 +110,9 @@ res = -ENOKEY; goto out; } - down_read(&keyring_key->sem); ukp = user_key_payload(keyring_key); if (ukp->datalen != sizeof(struct fscrypt_key)) { res = -EINVAL; - up_read(&keyring_key->sem); goto out; } master_key = (struct fscrypt_key *)ukp->data; @@ -124,17 +123,11 @@ "%s: key size incorrect: %d\n", __func__, master_key->size); res = -ENOKEY; - up_read(&keyring_key->sem); goto out; } res = derive_key_aes(ctx->nonce, master_key->raw, raw_key); - up_read(&keyring_key->sem); - if (res) - goto out; - - crypt_info->ci_keyring_key = keyring_key; - return 0; out: + up_read(&keyring_key->sem); key_put(keyring_key); return res; } @@ -144,12 +137,11 @@ if (!ci) return; - key_put(ci->ci_keyring_key); crypto_free_skcipher(ci->ci_ctfm); kmem_cache_free(fscrypt_info_cachep, ci); } -int get_crypt_info(struct inode *inode) +int fscrypt_get_encryption_info(struct inode *inode) { struct fscrypt_info *crypt_info; struct fscrypt_context ctx; @@ -159,21 +151,15 @@ u8 mode; int res; + if (inode->i_crypt_info) + return 0; + res = fscrypt_initialize(); if (res) return res; if (!inode->i_sb->s_cop->get_context) return -EOPNOTSUPP; -retry: - crypt_info = ACCESS_ONCE(inode->i_crypt_info); - if (crypt_info) { - if (!crypt_info->ci_keyring_key || - key_validate(crypt_info->ci_keyring_key) == 0) - return 0; - fscrypt_put_encryption_info(inode, crypt_info); - goto retry; - } res = inode->i_sb->s_cop->get_context(inode, &ctx, sizeof(ctx)); if (res < 0) { @@ -195,7 +181,6 @@ crypt_info->ci_data_mode = ctx.contents_encryption_mode; crypt_info->ci_filename_mode = ctx.filenames_encryption_mode; crypt_info->ci_ctfm = NULL; - crypt_info->ci_keyring_key = NULL; memcpy(crypt_info->ci_master_key, ctx.master_key_descriptor, sizeof(crypt_info->ci_master_key)); if (S_ISREG(inode->i_mode)) @@ -257,12 +242,8 @@ if (res) goto out; - memzero_explicit(raw_key, sizeof(raw_key)); - if (cmpxchg(&inode->i_crypt_info, NULL, crypt_info) != NULL) { - put_crypt_info(crypt_info); - goto retry; - } - return 0; + if (cmpxchg(&inode->i_crypt_info, NULL, crypt_info) == NULL) + crypt_info = NULL; out: if (res == -ENOKEY) @@ -271,6 +252,7 @@ memzero_explicit(raw_key, sizeof(raw_key)); return res; } +EXPORT_SYMBOL(fscrypt_get_encryption_info); void fscrypt_put_encryption_info(struct inode *inode, struct fscrypt_info *ci) { @@ -288,17 +270,3 @@ put_crypt_info(ci); } EXPORT_SYMBOL(fscrypt_put_encryption_info); - -int fscrypt_get_encryption_info(struct inode *inode) -{ - struct fscrypt_info *ci = inode->i_crypt_info; - - if (!ci || - (ci->ci_keyring_key && - (ci->ci_keyring_key->flags & ((1 << KEY_FLAG_INVALIDATED) | - (1 << KEY_FLAG_REVOKED) | - (1 << KEY_FLAG_DEAD))))) - return get_crypt_info(inode); - return 0; -} -EXPORT_SYMBOL(fscrypt_get_encryption_info); --- linux-4.8.0.orig/fs/crypto/policy.c +++ linux-4.8.0/fs/crypto/policy.c @@ -109,6 +109,8 @@ if (ret) return ret; + inode_lock(inode); + if (!inode_has_encryption_context(inode)) { if (!S_ISDIR(inode->i_mode)) ret = -EINVAL; @@ -127,6 +129,8 @@ ret = -EINVAL; } + inode_unlock(inode); + mnt_drop_write_file(filp); return ret; } --- linux-4.8.0.orig/fs/dcache.c +++ linux-4.8.0/fs/dcache.c @@ -1164,7 +1164,7 @@ * * The @enter() and @finish() callbacks are called with d_lock held. */ -static void d_walk(struct dentry *parent, void *data, +void d_walk(struct dentry *parent, void *data, enum d_walk_ret (*enter)(void *, struct dentry *), void (*finish)(void *)) { @@ -1272,6 +1272,7 @@ seq = 1; goto again; } +EXPORT_SYMBOL_GPL(d_walk); /* * Search for at least 1 mount point in the dentry's subdirs. --- linux-4.8.0.orig/fs/debugfs/file.c +++ linux-4.8.0/fs/debugfs/file.c @@ -97,9 +97,6 @@ #define F_DENTRY(filp) ((filp)->f_path.dentry) -#define REAL_FOPS_DEREF(dentry) \ - ((const struct file_operations *)(dentry)->d_fsdata) - static int open_proxy_open(struct inode *inode, struct file *filp) { const struct dentry *dentry = F_DENTRY(filp); @@ -112,7 +109,7 @@ goto out; } - real_fops = REAL_FOPS_DEREF(dentry); + real_fops = debugfs_real_fops(filp); real_fops = fops_get(real_fops); if (!real_fops) { /* Huh? Module did not clean up after itself at exit? */ @@ -143,7 +140,7 @@ { \ const struct dentry *dentry = F_DENTRY(filp); \ const struct file_operations *real_fops = \ - REAL_FOPS_DEREF(dentry); \ + debugfs_real_fops(filp); \ int srcu_idx; \ ret_type r; \ \ @@ -176,7 +173,7 @@ struct poll_table_struct *wait) { const struct dentry *dentry = F_DENTRY(filp); - const struct file_operations *real_fops = REAL_FOPS_DEREF(dentry); + const struct file_operations *real_fops = debugfs_real_fops(filp); int srcu_idx; unsigned int r = 0; @@ -193,7 +190,7 @@ static int full_proxy_release(struct inode *inode, struct file *filp) { const struct dentry *dentry = F_DENTRY(filp); - const struct file_operations *real_fops = REAL_FOPS_DEREF(dentry); + const struct file_operations *real_fops = debugfs_real_fops(filp); const struct file_operations *proxy_fops = filp->f_op; int r = 0; @@ -241,7 +238,7 @@ goto out; } - real_fops = REAL_FOPS_DEREF(dentry); + real_fops = debugfs_real_fops(filp); real_fops = fops_get(real_fops); if (!real_fops) { /* Huh? Module did not cleanup after itself at exit? */ --- linux-4.8.0.orig/fs/debugfs/inode.c +++ linux-4.8.0/fs/debugfs/inode.c @@ -187,9 +187,9 @@ static struct vfsmount *debugfs_automount(struct path *path) { - struct vfsmount *(*f)(void *); - f = (struct vfsmount *(*)(void *))path->dentry->d_fsdata; - return f(d_inode(path->dentry)->i_private); + debugfs_automount_t f; + f = (debugfs_automount_t)path->dentry->d_fsdata; + return f(path->dentry, d_inode(path->dentry)->i_private); } static const struct dentry_operations debugfs_dops = { @@ -504,7 +504,7 @@ */ struct dentry *debugfs_create_automount(const char *name, struct dentry *parent, - struct vfsmount *(*f)(void *), + debugfs_automount_t f, void *data) { struct dentry *dentry = start_creating(name, parent); --- linux-4.8.0.orig/fs/dlm/lowcomms.c +++ linux-4.8.0/fs/dlm/lowcomms.c @@ -1656,16 +1656,12 @@ mutex_lock(&connections_lock); dlm_allow_conn = 0; foreach_conn(stop_conn); + clean_writequeues(); + foreach_conn(free_conn); mutex_unlock(&connections_lock); work_stop(); - mutex_lock(&connections_lock); - clean_writequeues(); - - foreach_conn(free_conn); - - mutex_unlock(&connections_lock); kmem_cache_destroy(con_cache); } --- linux-4.8.0.orig/fs/exec.c +++ linux-4.8.0/fs/exec.c @@ -19,7 +19,7 @@ * current->executable is only used by the procfs. This allows a dispatch * table to check for several different types of binary formats. We keep * trying until we recognize the file or we run out of supported binary - * formats. + * formats. */ #include @@ -58,6 +58,8 @@ #include #include +#include + #include #include #include @@ -104,6 +106,14 @@ return (path->mnt->mnt_flags & MNT_NOEXEC) || (path->mnt->mnt_sb->s_iflags & SB_I_NOEXEC); } +EXPORT_SYMBOL_GPL(path_noexec); + +bool path_nosuid(const struct path *path) +{ + return !mnt_may_suid(path->mnt) || + (path->mnt->mnt_sb->s_iflags & SB_I_NOSUID); +} +EXPORT_SYMBOL(path_nosuid); #ifdef CONFIG_USELIB /* @@ -833,6 +843,8 @@ if (name->name[0] != '\0') fsnotify_open(file); + trace_open_exec(name->name); + out: return file; @@ -1261,6 +1273,13 @@ flush_thread(); current->personality &= ~bprm->per_clear; + /* + * We have to apply CLOEXEC before we change whether the process is + * dumpable (in setup_new_exec) to avoid a race with a process in userspace + * trying to access the should-be-closed file descriptors of a process + * undergoing exec(2). + */ + do_close_on_exec(current->files); return 0; out: @@ -1270,8 +1289,22 @@ void would_dump(struct linux_binprm *bprm, struct file *file) { - if (inode_permission(file_inode(file), MAY_READ) < 0) + struct inode *inode = file_inode(file); + if (inode_permission(inode, MAY_READ) < 0) { + struct user_namespace *old, *user_ns; bprm->interp_flags |= BINPRM_FLAGS_ENFORCE_NONDUMP; + + /* Ensure mm->user_ns contains the executable */ + user_ns = old = bprm->mm->user_ns; + while ((user_ns != &init_user_ns) && + !privileged_wrt_inode_uidgid(user_ns, inode)) + user_ns = user_ns->parent; + + if (old != user_ns) { + bprm->mm->user_ns = get_user_ns(user_ns); + put_user_ns(old); + } + } } EXPORT_SYMBOL(would_dump); @@ -1301,7 +1334,6 @@ !gid_eq(bprm->cred->gid, current_egid())) { current->pdeath_signal = 0; } else { - would_dump(bprm, bprm->file); if (bprm->interp_flags & BINPRM_FLAGS_ENFORCE_NONDUMP) set_dumpable(current->mm, suid_dumpable); } @@ -1310,7 +1342,6 @@ group */ current->self_exec_id++; flush_signal_handlers(current, 0); - do_close_on_exec(current->files); } EXPORT_SYMBOL(setup_new_exec); @@ -1399,9 +1430,10 @@ { struct task_struct *p = current, *t; unsigned n_fs; + bool fs_recheck; if (p->ptrace) { - if (p->ptrace & PT_PTRACE_CAP) + if (ptracer_capable(p, current_user_ns())) bprm->unsafe |= LSM_UNSAFE_PTRACE_CAP; else bprm->unsafe |= LSM_UNSAFE_PTRACE; @@ -1414,6 +1446,8 @@ if (task_no_new_privs(current)) bprm->unsafe |= LSM_UNSAFE_NO_NEW_PRIVS; +recheck: + fs_recheck = false; t = p; n_fs = 1; spin_lock(&p->fs->lock); @@ -1421,12 +1455,18 @@ while_each_thread(p, t) { if (t->fs == p->fs) n_fs++; + if (t->flags & (PF_EXITING | PF_FORKNOEXEC)) + fs_recheck = true; } rcu_read_unlock(); - if (p->fs->users > n_fs) + if (p->fs->users > n_fs) { + if (fs_recheck) { + spin_unlock(&p->fs->lock); + goto recheck; + } bprm->unsafe |= LSM_UNSAFE_SHARE; - else + } else p->fs->in_exec = 1; spin_unlock(&p->fs->lock); } @@ -1447,7 +1487,7 @@ bprm->cred->euid = current_euid(); bprm->cred->egid = current_egid(); - if (!mnt_may_suid(bprm->file->f_path.mnt)) + if (path_nosuid(&bprm->file->f_path)) return; if (task_no_new_privs(current)) @@ -1736,6 +1776,8 @@ if (retval < 0) goto out; + would_dump(bprm, bprm->file); + retval = exec_binprm(bprm); if (retval < 0) goto out; --- linux-4.8.0.orig/fs/ext2/acl.c +++ linux-4.8.0/fs/ext2/acl.c @@ -190,15 +190,11 @@ case ACL_TYPE_ACCESS: name_index = EXT2_XATTR_INDEX_POSIX_ACL_ACCESS; if (acl) { - error = posix_acl_equiv_mode(acl, &inode->i_mode); - if (error < 0) + error = posix_acl_update_mode(inode, &inode->i_mode, &acl); + if (error) return error; - else { - inode->i_ctime = CURRENT_TIME_SEC; - mark_inode_dirty(inode); - if (error == 0) - acl = NULL; - } + inode->i_ctime = CURRENT_TIME_SEC; + mark_inode_dirty(inode); } break; --- linux-4.8.0.orig/fs/ext4/acl.c +++ linux-4.8.0/fs/ext4/acl.c @@ -13,7 +13,7 @@ * Convert from filesystem to in-memory representation. */ static struct posix_acl * -ext4_acl_from_disk(const void *value, size_t size) +ext4_acl_from_disk(struct super_block *sb, const void *value, size_t size) { const char *end = (char *)value + size; int n, count; @@ -57,16 +57,20 @@ if ((char *)value > end) goto fail; acl->a_entries[n].e_uid = - make_kuid(&init_user_ns, + make_kuid(sb->s_user_ns, le32_to_cpu(entry->e_id)); + if (!uid_valid(acl->a_entries[n].e_uid)) + goto fail; break; case ACL_GROUP: value = (char *)value + sizeof(ext4_acl_entry); if ((char *)value > end) goto fail; acl->a_entries[n].e_gid = - make_kgid(&init_user_ns, + make_kgid(sb->s_user_ns, le32_to_cpu(entry->e_id)); + if (!gid_valid(acl->a_entries[n].e_gid)) + goto fail; break; default: @@ -86,11 +90,14 @@ * Convert from in-memory to filesystem representation. */ static void * -ext4_acl_to_disk(const struct posix_acl *acl, size_t *size) +ext4_acl_to_disk(struct super_block *sb, const struct posix_acl *acl, + size_t *size) { ext4_acl_header *ext_acl; char *e; size_t n; + uid_t uid; + gid_t gid; *size = ext4_acl_size(acl->a_count); ext_acl = kmalloc(sizeof(ext4_acl_header) + acl->a_count * @@ -106,13 +113,17 @@ entry->e_perm = cpu_to_le16(acl_e->e_perm); switch (acl_e->e_tag) { case ACL_USER: - entry->e_id = cpu_to_le32( - from_kuid(&init_user_ns, acl_e->e_uid)); + uid = from_kuid(sb->s_user_ns, acl_e->e_uid); + if (uid == (uid_t)-1) + goto fail; + entry->e_id = cpu_to_le32(uid); e += sizeof(ext4_acl_entry); break; case ACL_GROUP: - entry->e_id = cpu_to_le32( - from_kgid(&init_user_ns, acl_e->e_gid)); + gid = from_kgid(sb->s_user_ns, acl_e->e_gid); + if (gid == (gid_t)-1) + goto fail; + entry->e_id = cpu_to_le32(gid); e += sizeof(ext4_acl_entry); break; @@ -165,7 +176,7 @@ retval = ext4_xattr_get(inode, name_index, "", value, retval); } if (retval > 0) - acl = ext4_acl_from_disk(value, retval); + acl = ext4_acl_from_disk(inode->i_sb, value, retval); else if (retval == -ENODATA || retval == -ENOSYS) acl = NULL; else @@ -193,15 +204,11 @@ case ACL_TYPE_ACCESS: name_index = EXT4_XATTR_INDEX_POSIX_ACL_ACCESS; if (acl) { - error = posix_acl_equiv_mode(acl, &inode->i_mode); - if (error < 0) + error = posix_acl_update_mode(inode, &inode->i_mode, &acl); + if (error) return error; - else { - inode->i_ctime = ext4_current_time(inode); - ext4_mark_inode_dirty(handle, inode); - if (error == 0) - acl = NULL; - } + inode->i_ctime = ext4_current_time(inode); + ext4_mark_inode_dirty(handle, inode); } break; @@ -215,7 +222,7 @@ return -EINVAL; } if (acl) { - value = ext4_acl_to_disk(acl, &size); + value = ext4_acl_to_disk(inode->i_sb, acl, &size); if (IS_ERR(value)) return (int)PTR_ERR(value); } --- linux-4.8.0.orig/fs/ext4/balloc.c +++ linux-4.8.0/fs/ext4/balloc.c @@ -565,8 +565,8 @@ /* Hm, nope. Are (enough) root reserved clusters available? */ if (uid_eq(sbi->s_resuid, current_fsuid()) || - (!gid_eq(sbi->s_resgid, GLOBAL_ROOT_GID) && in_group_p(sbi->s_resgid)) || - capable(CAP_SYS_RESOURCE) || + (!gid_eq(sbi->s_resgid, make_kgid(sbi->s_sb->s_user_ns, 0)) && in_group_p(sbi->s_resgid)) || + ns_capable(sbi->s_sb->s_user_ns, CAP_SYS_RESOURCE) || (flags & EXT4_MB_USE_ROOT_BLOCKS)) { if (free_clusters >= (nclusters + dirty_clusters + --- linux-4.8.0.orig/fs/ext4/ext4.h +++ linux-4.8.0/fs/ext4/ext4.h @@ -235,6 +235,7 @@ #define EXT4_MAX_BLOCK_SIZE 65536 #define EXT4_MIN_BLOCK_LOG_SIZE 10 #define EXT4_MAX_BLOCK_LOG_SIZE 16 +#define EXT4_MAX_CLUSTER_LOG_SIZE 30 #ifdef __KERNEL__ # define EXT4_BLOCK_SIZE(s) ((s)->s_blocksize) #else --- linux-4.8.0.orig/fs/ext4/ext4_jbd2.h +++ linux-4.8.0/fs/ext4/ext4_jbd2.h @@ -414,17 +414,19 @@ return EXT4_INODE_WRITEBACK_DATA_MODE; /* writeback */ /* We do not support data journalling with delayed allocation */ if (!S_ISREG(inode->i_mode) || - test_opt(inode->i_sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA) - return EXT4_INODE_JOURNAL_DATA_MODE; /* journal data */ - if (ext4_test_inode_flag(inode, EXT4_INODE_JOURNAL_DATA) && - !test_opt(inode->i_sb, DELALLOC)) + test_opt(inode->i_sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA || + (ext4_test_inode_flag(inode, EXT4_INODE_JOURNAL_DATA) && + !test_opt(inode->i_sb, DELALLOC))) { + /* We do not support data journalling for encrypted data */ + if (S_ISREG(inode->i_mode) && ext4_encrypted_inode(inode)) + return EXT4_INODE_ORDERED_DATA_MODE; /* ordered */ return EXT4_INODE_JOURNAL_DATA_MODE; /* journal data */ + } if (test_opt(inode->i_sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA) return EXT4_INODE_ORDERED_DATA_MODE; /* ordered */ if (test_opt(inode->i_sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA) return EXT4_INODE_WRITEBACK_DATA_MODE; /* writeback */ - else - BUG(); + BUG(); } static inline int ext4_should_journal_data(struct inode *inode) --- linux-4.8.0.orig/fs/ext4/extents.c +++ linux-4.8.0/fs/ext4/extents.c @@ -5734,6 +5734,9 @@ up_write(&EXT4_I(inode)->i_data_sem); goto out_stop; } + } else { + ext4_ext_drop_refs(path); + kfree(path); } ret = ext4_es_remove_extent(inode, offset_lblk, --- linux-4.8.0.orig/fs/ext4/ialloc.c +++ linux-4.8.0/fs/ext4/ialloc.c @@ -764,6 +764,10 @@ if (!dir || !dir->i_nlink) return ERR_PTR(-EPERM); + /* Supplied owner must be valid */ + if (owner && (owner[0] == (uid_t)-1 || owner[1] == (uid_t)-1)) + return ERR_PTR(-EOVERFLOW); + if ((ext4_encrypted_inode(dir) || DUMMY_ENCRYPTION_ENABLED(EXT4_SB(dir->i_sb))) && (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) { @@ -776,7 +780,6 @@ nblocks += EXT4_DATA_TRANS_BLOCKS(dir->i_sb); encrypt = 1; } - sb = dir->i_sb; ngroups = ext4_get_groups_count(sb); trace_ext4_request_inode(dir, mode); @@ -806,7 +809,7 @@ ext4_test_inode_flag(dir, EXT4_INODE_PROJINHERIT)) ei->i_projid = EXT4_I(dir)->i_projid; else - ei->i_projid = make_kprojid(&init_user_ns, EXT4_DEF_PROJID); + ei->i_projid = make_kprojid(sb->s_user_ns, EXT4_DEF_PROJID); err = dquot_initialize(inode); if (err) --- linux-4.8.0.orig/fs/ext4/inline.c +++ linux-4.8.0/fs/ext4/inline.c @@ -336,8 +336,10 @@ len -= EXT4_MIN_INLINE_DATA_SIZE; value = kzalloc(len, GFP_NOFS); - if (!value) + if (!value) { + error = -ENOMEM; goto out; + } error = ext4_xattr_ibody_get(inode, i.name_index, i.name, value, len); --- linux-4.8.0.orig/fs/ext4/inode.c +++ linux-4.8.0/fs/ext4/inode.c @@ -647,11 +647,19 @@ /* * We have to zeroout blocks before inserting them into extent * status tree. Otherwise someone could look them up there and - * use them before they are really zeroed. + * use them before they are really zeroed. We also have to + * unmap metadata before zeroing as otherwise writeback can + * overwrite zeros with stale data from block device. */ if (flags & EXT4_GET_BLOCKS_ZERO && map->m_flags & EXT4_MAP_MAPPED && map->m_flags & EXT4_MAP_NEW) { + ext4_lblk_t i; + + for (i = 0; i < map->m_len; i++) { + unmap_underlying_metadata(inode->i_sb->s_bdev, + map->m_pblk + i); + } ret = ext4_issue_zeroout(inode, map->m_lblk, map->m_pblk, map->m_len); if (ret) { @@ -1649,6 +1657,8 @@ BUG_ON(!PageLocked(page)); BUG_ON(PageWriteback(page)); if (invalidate) { + if (page_mapped(page)) + clear_page_dirty_for_io(page); block_invalidatepage(page, 0, PAGE_SIZE); ClearPageUptodate(page); } @@ -3890,7 +3900,7 @@ } /* - * ext4_punch_hole: punches a hole in a file by releaseing the blocks + * ext4_punch_hole: punches a hole in a file by releasing the blocks * associated with the given offset and length * * @inode: File inode @@ -3919,7 +3929,7 @@ * Write out all dirty pages to avoid race conditions * Then release them. */ - if (mapping->nrpages && mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) { + if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) { ret = filemap_write_and_wait_range(mapping, offset, offset + length - 1); if (ret) @@ -4428,6 +4438,7 @@ struct inode *inode; journal_t *journal = EXT4_SB(sb)->s_journal; long ret; + loff_t size; int block; uid_t i_uid; gid_t i_gid; @@ -4494,7 +4505,7 @@ } i_uid_write(inode, i_uid); i_gid_write(inode, i_gid); - ei->i_projid = make_kprojid(&init_user_ns, i_projid); + ei->i_projid = make_kprojid(sb->s_user_ns, i_projid); set_nlink(inode, le16_to_cpu(raw_inode->i_links_count)); ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */ @@ -4528,6 +4539,11 @@ ei->i_file_acl |= ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32; inode->i_size = ext4_isize(raw_inode); + if ((size = i_size_read(inode)) < 0) { + EXT4_ERROR_INODE(inode, "bad i_size value: %lld", size); + ret = -EFSCORRUPTED; + goto bad_inode; + } ei->i_disksize = inode->i_size; #ifdef CONFIG_QUOTA ei->i_reserved_quota = 0; @@ -4806,7 +4822,7 @@ raw_inode->i_mode = cpu_to_le16(inode->i_mode); i_uid = i_uid_read(inode); i_gid = i_gid_read(inode); - i_projid = from_kprojid(&init_user_ns, ei->i_projid); + i_projid = from_kprojid(sb->s_user_ns, ei->i_projid); if (!(test_opt(inode->i_sb, NO_UID32))) { raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid)); raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid)); @@ -4814,14 +4830,14 @@ * Fix up interoperability with old kernels. Otherwise, old inodes get * re-used with the upper 16 bits of the uid/gid intact */ - if (!ei->i_dtime) { + if (ei->i_dtime && list_empty(&ei->i_orphan)) { + raw_inode->i_uid_high = 0; + raw_inode->i_gid_high = 0; + } else { raw_inode->i_uid_high = cpu_to_le16(high_16_bits(i_uid)); raw_inode->i_gid_high = cpu_to_le16(high_16_bits(i_gid)); - } else { - raw_inode->i_uid_high = 0; - raw_inode->i_gid_high = 0; } } else { raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid)); @@ -4885,13 +4901,15 @@ } } - BUG_ON(!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb, - EXT4_FEATURE_RO_COMPAT_PROJECT) && - i_projid != EXT4_DEF_PROJID); - - if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && - EXT4_FITS_IN_INODE(raw_inode, ei, i_projid)) - raw_inode->i_projid = cpu_to_le32(i_projid); + if (i_projid != (projid_t)-1) { + BUG_ON(!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb, + EXT4_FEATURE_RO_COMPAT_PROJECT) && + i_projid != EXT4_DEF_PROJID); + + if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE && + EXT4_FITS_IN_INODE(raw_inode, ei, i_projid)) + raw_inode->i_projid = cpu_to_le32(i_projid); + } ext4_inode_csum_set(inode, raw_inode, ei); spin_unlock(&ei->i_raw_lock); --- linux-4.8.0.orig/fs/ext4/ioctl.c +++ linux-4.8.0/fs/ext4/ioctl.c @@ -238,7 +238,7 @@ * the relevant capability. */ if ((jflag ^ oldflags) & (EXT4_JOURNAL_DATA_FL)) { - if (!capable(CAP_SYS_RESOURCE)) + if (!ns_capable(inode->i_sb->s_user_ns, CAP_SYS_RESOURCE)) goto flags_out; } if ((flags ^ oldflags) & EXT4_EXTENTS_FL) @@ -321,8 +321,10 @@ if (EXT4_INODE_SIZE(sb) <= EXT4_GOOD_OLD_INODE_SIZE) return -EOPNOTSUPP; - kprojid = make_kprojid(&init_user_ns, (projid_t)projid); + kprojid = make_kprojid(sb->s_user_ns, (projid_t)projid); + if (!projid_valid(kprojid)) + return -EOVERFLOW; if (projid_eq(kprojid, EXT4_I(inode)->i_projid)) return 0; @@ -744,7 +746,7 @@ struct fstrim_range range; int ret = 0; - if (!capable(CAP_SYS_ADMIN)) + if (!ns_capable(sb->s_user_ns, CAP_SYS_ADMIN)) return -EPERM; if (!blk_queue_discard(q)) @@ -844,7 +846,7 @@ if (EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb, EXT4_FEATURE_RO_COMPAT_PROJECT)) { - fa.fsx_projid = (__u32)from_kprojid(&init_user_ns, + fa.fsx_projid = (__u32)from_kprojid_munged(sb->s_user_ns, EXT4_I(inode)->i_projid); } --- linux-4.8.0.orig/fs/ext4/mballoc.c +++ linux-4.8.0/fs/ext4/mballoc.c @@ -669,7 +669,7 @@ ext4_grpblk_t min; ext4_grpblk_t max; ext4_grpblk_t chunk; - unsigned short border; + unsigned int border; BUG_ON(len > EXT4_CLUSTERS_PER_GROUP(sb)); @@ -2287,7 +2287,7 @@ struct ext4_group_info *grinfo; struct sg { struct ext4_group_info info; - ext4_grpblk_t counters[16]; + ext4_grpblk_t counters[EXT4_MAX_BLOCK_LOG_SIZE + 2]; } sg; group--; --- linux-4.8.0.orig/fs/ext4/move_extent.c +++ linux-4.8.0/fs/ext4/move_extent.c @@ -598,6 +598,13 @@ return -EOPNOTSUPP; } + if (ext4_encrypted_inode(orig_inode) || + ext4_encrypted_inode(donor_inode)) { + ext4_msg(orig_inode->i_sb, KERN_ERR, + "Online defrag not supported for encrypted files"); + return -EOPNOTSUPP; + } + /* Protect orig and donor inodes against a truncate */ lock_two_nondirectories(orig_inode, donor_inode); --- linux-4.8.0.orig/fs/ext4/namei.c +++ linux-4.8.0/fs/ext4/namei.c @@ -2044,33 +2044,31 @@ frame->entries = entries; frame->at = entries; frame->bh = bh; - bh = bh2; retval = ext4_handle_dirty_dx_node(handle, dir, frame->bh); if (retval) goto out_frames; - retval = ext4_handle_dirty_dirent_node(handle, dir, bh); + retval = ext4_handle_dirty_dirent_node(handle, dir, bh2); if (retval) goto out_frames; - de = do_split(handle,dir, &bh, frame, &fname->hinfo); + de = do_split(handle,dir, &bh2, frame, &fname->hinfo); if (IS_ERR(de)) { retval = PTR_ERR(de); goto out_frames; } - dx_release(frames); - retval = add_dirent_to_buf(handle, fname, dir, inode, de, bh); - brelse(bh); - return retval; + retval = add_dirent_to_buf(handle, fname, dir, inode, de, bh2); out_frames: /* * Even if the block split failed, we have to properly write * out all the changes we did so far. Otherwise we can end up * with corrupted filesystem. */ - ext4_mark_inode_dirty(handle, dir); + if (retval) + ext4_mark_inode_dirty(handle, dir); dx_release(frames); + brelse(bh2); return retval; } @@ -3236,8 +3234,8 @@ return -EPERM; if ((ext4_test_inode_flag(dir, EXT4_INODE_PROJINHERIT)) && - (!projid_eq(EXT4_I(dir)->i_projid, - EXT4_I(old_dentry->d_inode)->i_projid))) + (!projid_valid_eq(EXT4_I(dir)->i_projid, + EXT4_I(old_dentry->d_inode)->i_projid))) return -EXDEV; err = dquot_initialize(dir); @@ -3521,8 +3519,8 @@ u8 old_file_type; if ((ext4_test_inode_flag(new_dir, EXT4_INODE_PROJINHERIT)) && - (!projid_eq(EXT4_I(new_dir)->i_projid, - EXT4_I(old_dentry->d_inode)->i_projid))) + (!projid_valid_eq(EXT4_I(new_dir)->i_projid, + EXT4_I(old_dentry->d_inode)->i_projid))) return -EXDEV; retval = dquot_initialize(old.dir); @@ -3732,11 +3730,11 @@ return -EPERM; if ((ext4_test_inode_flag(new_dir, EXT4_INODE_PROJINHERIT) && - !projid_eq(EXT4_I(new_dir)->i_projid, - EXT4_I(old_dentry->d_inode)->i_projid)) || + !projid_valid_eq(EXT4_I(new_dir)->i_projid, + EXT4_I(old_dentry->d_inode)->i_projid)) || (ext4_test_inode_flag(old_dir, EXT4_INODE_PROJINHERIT) && - !projid_eq(EXT4_I(old_dir)->i_projid, - EXT4_I(new_dentry->d_inode)->i_projid))) + !projid_valid_eq(EXT4_I(old_dir)->i_projid, + EXT4_I(new_dentry->d_inode)->i_projid))) return -EXDEV; retval = dquot_initialize(old.dir); --- linux-4.8.0.orig/fs/ext4/resize.c +++ linux-4.8.0/fs/ext4/resize.c @@ -20,7 +20,7 @@ { int ret = 0; - if (!capable(CAP_SYS_RESOURCE)) + if (!ns_capable(sb->s_user_ns, CAP_SYS_RESOURCE)) return -EPERM; /* --- linux-4.8.0.orig/fs/ext4/super.c +++ linux-4.8.0/fs/ext4/super.c @@ -38,6 +38,7 @@ #include #include #include +#include #include #include @@ -109,13 +110,17 @@ * transaction start -> page lock(s) -> i_data_sem (rw) */ +static bool userns_mounts = false; +module_param(userns_mounts, bool, 0644); +MODULE_PARM_DESC(userns_mounts, "Allow mounts from unprivileged user namespaces"); + #if !defined(CONFIG_EXT2_FS) && !defined(CONFIG_EXT2_FS_MODULE) && defined(CONFIG_EXT4_USE_FOR_EXT2) static struct file_system_type ext2_fs_type = { .owner = THIS_MODULE, .name = "ext2", .mount = ext4_mount, .kill_sb = kill_block_super, - .fs_flags = FS_REQUIRES_DEV, + .fs_flags = FS_REQUIRES_DEV | FS_USERNS_MOUNT, }; MODULE_ALIAS_FS("ext2"); MODULE_ALIAS("ext2"); @@ -130,7 +135,7 @@ .name = "ext3", .mount = ext4_mount, .kill_sb = kill_block_super, - .fs_flags = FS_REQUIRES_DEV, + .fs_flags = FS_REQUIRES_DEV | FS_USERNS_MOUNT, }; MODULE_ALIAS_FS("ext3"); MODULE_ALIAS("ext3"); @@ -1625,6 +1630,13 @@ return -1; } + if (token == Opt_err_panic && !capable(CAP_SYS_ADMIN)) { + ext4_msg(sb, KERN_ERR, + "Mount option \"%s\" not allowed for unprivileged mounts", + opt); + return -1; + } + if (args->from && !(m->flags & MOPT_STRING) && match_int(args, &arg)) return -1; if (args->from && (m->flags & MOPT_GTE0) && (arg < 0)) @@ -1673,14 +1685,14 @@ } else if (token == Opt_stripe) { sbi->s_stripe = arg; } else if (token == Opt_resuid) { - uid = make_kuid(current_user_ns(), arg); + uid = make_kuid(sb->s_user_ns, arg); if (!uid_valid(uid)) { ext4_msg(sb, KERN_ERR, "Invalid uid value %d", arg); return -1; } sbi->s_resuid = uid; } else if (token == Opt_resgid) { - gid = make_kgid(current_user_ns(), arg); + gid = make_kgid(sb->s_user_ns, arg); if (!gid_valid(gid)) { ext4_msg(sb, KERN_ERR, "Invalid gid value %d", arg); return -1; @@ -1719,6 +1731,19 @@ return -1; } + /* + * Refuse access for unprivileged mounts if the user does + * not have rw access to the journal device via the supplied + * path. + */ + if (!capable(CAP_SYS_ADMIN) && + inode_permission(d_inode(path.dentry), MAY_READ|MAY_WRITE)) { + ext4_msg(sb, KERN_ERR, + "error: Insufficient access to journal path %s", + journal_path); + return -1; + } + journal_inode = d_inode(path.dentry); if (!S_ISBLK(journal_inode->i_mode)) { ext4_msg(sb, KERN_ERR, "error: journal path %s " @@ -1956,14 +1981,14 @@ SEQ_OPTS_PRINT("%s", token2str(m->token)); } - if (nodefs || !uid_eq(sbi->s_resuid, make_kuid(&init_user_ns, EXT4_DEF_RESUID)) || + if (nodefs || !uid_eq(sbi->s_resuid, make_kuid(sb->s_user_ns, EXT4_DEF_RESUID)) || le16_to_cpu(es->s_def_resuid) != EXT4_DEF_RESUID) SEQ_OPTS_PRINT("resuid=%u", - from_kuid_munged(&init_user_ns, sbi->s_resuid)); - if (nodefs || !gid_eq(sbi->s_resgid, make_kgid(&init_user_ns, EXT4_DEF_RESGID)) || + from_kuid_munged(sb->s_user_ns, sbi->s_resuid)); + if (nodefs || !gid_eq(sbi->s_resgid, make_kgid(sb->s_user_ns, EXT4_DEF_RESGID)) || le16_to_cpu(es->s_def_resgid) != EXT4_DEF_RESGID) SEQ_OPTS_PRINT("resgid=%u", - from_kgid_munged(&init_user_ns, sbi->s_resgid)); + from_kgid_munged(sb->s_user_ns, sbi->s_resgid)); def_errors = nodefs ? -1 : le16_to_cpu(es->s_errors); if (test_opt(sb, ERRORS_RO) && def_errors != EXT4_ERRORS_RO) SEQ_OPTS_PUTS("errors=remount-ro"); @@ -3161,10 +3186,15 @@ ext4_set_bit(s++, buf); count++; } - for (j = ext4_bg_num_gdb(sb, grp); j > 0; j--) { - ext4_set_bit(EXT4_B2C(sbi, s++), buf); - count++; + j = ext4_bg_num_gdb(sb, grp); + if (s + j > EXT4_BLOCKS_PER_GROUP(sb)) { + ext4_error(sb, "Invalid number of block group " + "descriptor blocks: %d", j); + j = EXT4_BLOCKS_PER_GROUP(sb) - s; } + count += j; + for (; j > 0; j--) + ext4_set_bit(EXT4_B2C(sbi, s++), buf); } if (!count) return 0; @@ -3254,7 +3284,7 @@ char *orig_data = kstrdup(data, GFP_KERNEL); struct buffer_head *bh; struct ext4_super_block *es = NULL; - struct ext4_sb_info *sbi; + struct ext4_sb_info *sbi = kzalloc(sizeof(*sbi), GFP_KERNEL); ext4_fsblk_t block; ext4_fsblk_t sb_block = get_sb_block(&data); ext4_fsblk_t logical_sb_block; @@ -3273,16 +3303,17 @@ unsigned int journal_ioprio = DEFAULT_JOURNAL_IOPRIO; ext4_group_t first_not_zeroed; - sbi = kzalloc(sizeof(*sbi), GFP_KERNEL); - if (!sbi) - goto out_free_orig; + if (!userns_mounts && !capable(CAP_SYS_ADMIN)) + return -EPERM; + + if ((data && !orig_data) || !sbi) + goto out_free_base; sbi->s_blockgroup_lock = kzalloc(sizeof(struct blockgroup_lock), GFP_KERNEL); - if (!sbi->s_blockgroup_lock) { - kfree(sbi); - goto out_free_orig; - } + if (!sbi->s_blockgroup_lock) + goto out_free_base; + sb->s_fs_info = sbi; sbi->s_sb = sb; sbi->s_inode_readahead_blks = EXT4_DEF_INODE_READAHEAD_BLKS; @@ -3394,19 +3425,26 @@ else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_WBACK) set_opt(sb, WRITEBACK_DATA); - if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_PANIC) + if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_PANIC) { + if (!capable(CAP_SYS_ADMIN)) + goto failed_mount; set_opt(sb, ERRORS_PANIC); - else if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_CONTINUE) + } else if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_CONTINUE) { set_opt(sb, ERRORS_CONT); - else + } else { set_opt(sb, ERRORS_RO); + } /* block_validity enabled by default; disable with noblock_validity */ set_opt(sb, BLOCK_VALIDITY); if (def_mount_opts & EXT4_DEFM_DISCARD) set_opt(sb, DISCARD); - sbi->s_resuid = make_kuid(&init_user_ns, le16_to_cpu(es->s_def_resuid)); - sbi->s_resgid = make_kgid(&init_user_ns, le16_to_cpu(es->s_def_resgid)); + sbi->s_resuid = make_kuid(sb->s_user_ns, le16_to_cpu(es->s_def_resuid)); + if (!uid_valid(sbi->s_resuid)) + sbi->s_resuid = make_kuid(sb->s_user_ns, EXT4_DEF_RESUID); + sbi->s_resgid = make_kgid(sb->s_user_ns, le16_to_cpu(es->s_def_resgid)); + if (!gid_valid(sbi->s_resgid)) + sbi->s_resgid = make_kgid(sb->s_user_ns, EXT4_DEF_RESGID); sbi->s_commit_interval = JBD2_DEFAULT_MAX_COMMIT_AGE * HZ; sbi->s_min_batch_time = EXT4_DEF_MIN_BATCH_TIME; sbi->s_max_batch_time = EXT4_DEF_MAX_BATCH_TIME; @@ -3428,11 +3466,19 @@ */ sbi->s_li_wait_mult = EXT4_DEF_LI_WAIT_MULT; - if (!parse_options((char *) sbi->s_es->s_mount_opts, sb, - &journal_devnum, &journal_ioprio, 0)) { - ext4_msg(sb, KERN_WARNING, - "failed to parse options in superblock: %s", - sbi->s_es->s_mount_opts); + if (sbi->s_es->s_mount_opts[0]) { + char *s_mount_opts = kstrndup(sbi->s_es->s_mount_opts, + sizeof(sbi->s_es->s_mount_opts), + GFP_KERNEL); + if (!s_mount_opts) + goto failed_mount; + if (!parse_options(s_mount_opts, sb, &journal_devnum, + &journal_ioprio, 0)) { + ext4_msg(sb, KERN_WARNING, + "failed to parse options in superblock: %s", + s_mount_opts); + } + kfree(s_mount_opts); } sbi->s_def_mount_opt = sbi->s_mount_opt; if (!parse_options((char *) data, sb, &journal_devnum, @@ -3458,6 +3504,11 @@ "both data=journal and dax"); goto failed_mount; } + if (ext4_has_feature_encrypt(sb)) { + ext4_msg(sb, KERN_WARNING, + "encrypted files will use data=ordered " + "instead of data journaling mode"); + } if (test_opt(sb, DELALLOC)) clear_opt(sb, DELALLOC); } else { @@ -3518,7 +3569,15 @@ if (blocksize < EXT4_MIN_BLOCK_SIZE || blocksize > EXT4_MAX_BLOCK_SIZE) { ext4_msg(sb, KERN_ERR, - "Unsupported filesystem blocksize %d", blocksize); + "Unsupported filesystem blocksize %d (%d log_block_size)", + blocksize, le32_to_cpu(es->s_log_block_size)); + goto failed_mount; + } + if (le32_to_cpu(es->s_log_block_size) > + (EXT4_MAX_BLOCK_LOG_SIZE - EXT4_MIN_BLOCK_LOG_SIZE)) { + ext4_msg(sb, KERN_ERR, + "Invalid log block size: %u", + le32_to_cpu(es->s_log_block_size)); goto failed_mount; } @@ -3605,12 +3664,16 @@ sbi->s_blocks_per_group = le32_to_cpu(es->s_blocks_per_group); sbi->s_inodes_per_group = le32_to_cpu(es->s_inodes_per_group); - if (EXT4_INODE_SIZE(sb) == 0 || EXT4_INODES_PER_GROUP(sb) == 0) - goto cantfind_ext4; sbi->s_inodes_per_block = blocksize / EXT4_INODE_SIZE(sb); if (sbi->s_inodes_per_block == 0) goto cantfind_ext4; + if (sbi->s_inodes_per_group < sbi->s_inodes_per_block || + sbi->s_inodes_per_group > blocksize * 8) { + ext4_msg(sb, KERN_ERR, "invalid inodes per group: %lu\n", + sbi->s_blocks_per_group); + goto failed_mount; + } sbi->s_itb_per_group = sbi->s_inodes_per_group / sbi->s_inodes_per_block; sbi->s_desc_per_block = blocksize / EXT4_DESC_SIZE(sb); @@ -3650,6 +3713,13 @@ "block size (%d)", clustersize, blocksize); goto failed_mount; } + if (le32_to_cpu(es->s_log_cluster_size) > + (EXT4_MAX_CLUSTER_LOG_SIZE - EXT4_MIN_BLOCK_LOG_SIZE)) { + ext4_msg(sb, KERN_ERR, + "Invalid log cluster size: %u", + le32_to_cpu(es->s_log_cluster_size)); + goto failed_mount; + } sbi->s_cluster_bits = le32_to_cpu(es->s_log_cluster_size) - le32_to_cpu(es->s_log_block_size); sbi->s_clusters_per_group = @@ -3686,13 +3756,6 @@ } sbi->s_cluster_ratio = clustersize / blocksize; - if (sbi->s_inodes_per_group > blocksize * 8) { - ext4_msg(sb, KERN_ERR, - "#inodes per group too big: %lu", - sbi->s_inodes_per_group); - goto failed_mount; - } - /* Do we have standard group size of clustersize * 8 blocks ? */ if (sbi->s_blocks_per_group == clustersize << 3) set_opt2(sb, STD_GROUP_SIZE); @@ -4098,7 +4161,9 @@ if (___ratelimit(&ext4_mount_msg_ratelimit, "EXT4-fs mount")) ext4_msg(sb, KERN_INFO, "mounted filesystem with%s. " - "Opts: %s%s%s", descr, sbi->s_es->s_mount_opts, + "Opts: %.*s%s%s", descr, + (int) sizeof(sbi->s_es->s_mount_opts), + sbi->s_es->s_mount_opts, *sbi->s_es->s_mount_opts ? "; " : "", orig_data); if (es->s_error_count) @@ -4175,10 +4240,11 @@ ext4_blkdev_remove(sbi); brelse(bh); out_fail: + /* sb->s_user_ns will be put when sb is destroyed */ sb->s_fs_info = NULL; kfree(sbi->s_blockgroup_lock); +out_free_base: kfree(sbi); -out_free_orig: kfree(orig_data); return err ? err : ret; } @@ -5473,7 +5539,7 @@ .name = "ext4", .mount = ext4_mount, .kill_sb = kill_block_super, - .fs_flags = FS_REQUIRES_DEV, + .fs_flags = FS_REQUIRES_DEV | FS_USERNS_MOUNT, }; MODULE_ALIAS_FS("ext4"); --- linux-4.8.0.orig/fs/ext4/symlink.c +++ linux-4.8.0/fs/ext4/symlink.c @@ -65,13 +65,12 @@ res = fscrypt_fname_alloc_buffer(inode, cstr.len, &pstr); if (res) goto errout; + paddr = pstr.name; res = fscrypt_fname_disk_to_usr(inode, 0, 0, &cstr, &pstr); if (res < 0) goto errout; - paddr = pstr.name; - /* Null-terminate the name */ if (res <= pstr.len) paddr[res] = '\0'; --- linux-4.8.0.orig/fs/ext4/sysfs.c +++ linux-4.8.0/fs/ext4/sysfs.c @@ -223,14 +223,18 @@ EXT4_ATTR_FEATURE(lazy_itable_init); EXT4_ATTR_FEATURE(batched_discard); EXT4_ATTR_FEATURE(meta_bg_resize); +#ifdef CONFIG_EXT4_FS_ENCRYPTION EXT4_ATTR_FEATURE(encryption); +#endif EXT4_ATTR_FEATURE(metadata_csum_seed); static struct attribute *ext4_feat_attrs[] = { ATTR_LIST(lazy_itable_init), ATTR_LIST(batched_discard), ATTR_LIST(meta_bg_resize), +#ifdef CONFIG_EXT4_FS_ENCRYPTION ATTR_LIST(encryption), +#endif ATTR_LIST(metadata_csum_seed), NULL, }; --- linux-4.8.0.orig/fs/ext4/xattr.c +++ linux-4.8.0/fs/ext4/xattr.c @@ -137,31 +137,26 @@ } static int ext4_xattr_block_csum_verify(struct inode *inode, - sector_t block_nr, - struct ext4_xattr_header *hdr) + struct buffer_head *bh) { - if (ext4_has_metadata_csum(inode->i_sb) && - (hdr->h_checksum != ext4_xattr_block_csum(inode, block_nr, hdr))) - return 0; - return 1; -} - -static void ext4_xattr_block_csum_set(struct inode *inode, - sector_t block_nr, - struct ext4_xattr_header *hdr) -{ - if (!ext4_has_metadata_csum(inode->i_sb)) - return; + struct ext4_xattr_header *hdr = BHDR(bh); + int ret = 1; - hdr->h_checksum = ext4_xattr_block_csum(inode, block_nr, hdr); + if (ext4_has_metadata_csum(inode->i_sb)) { + lock_buffer(bh); + ret = (hdr->h_checksum == ext4_xattr_block_csum(inode, + bh->b_blocknr, hdr)); + unlock_buffer(bh); + } + return ret; } -static inline int ext4_handle_dirty_xattr_block(handle_t *handle, - struct inode *inode, - struct buffer_head *bh) +static void ext4_xattr_block_csum_set(struct inode *inode, + struct buffer_head *bh) { - ext4_xattr_block_csum_set(inode, bh->b_blocknr, BHDR(bh)); - return ext4_handle_dirty_metadata(handle, inode, bh); + if (ext4_has_metadata_csum(inode->i_sb)) + BHDR(bh)->h_checksum = ext4_xattr_block_csum(inode, + bh->b_blocknr, BHDR(bh)); } static inline const struct xattr_handler * @@ -222,7 +217,7 @@ if (BHDR(bh)->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC) || BHDR(bh)->h_blocks != cpu_to_le32(1)) return -EFSCORRUPTED; - if (!ext4_xattr_block_csum_verify(inode, bh->b_blocknr, BHDR(bh))) + if (!ext4_xattr_block_csum_verify(inode, bh)) return -EFSBADCRC; error = ext4_xattr_check_names(BFIRST(bh), bh->b_data + bh->b_size, bh->b_data); @@ -605,23 +600,22 @@ } } + ext4_xattr_block_csum_set(inode, bh); /* * Beware of this ugliness: Releasing of xattr block references * from different inodes can race and so we have to protect * from a race where someone else frees the block (and releases * its journal_head) before we are done dirtying the buffer. In * nojournal mode this race is harmless and we actually cannot - * call ext4_handle_dirty_xattr_block() with locked buffer as + * call ext4_handle_dirty_metadata() with locked buffer as * that function can call sync_dirty_buffer() so for that case * we handle the dirtying after unlocking the buffer. */ if (ext4_handle_valid(handle)) - error = ext4_handle_dirty_xattr_block(handle, inode, - bh); + error = ext4_handle_dirty_metadata(handle, inode, bh); unlock_buffer(bh); if (!ext4_handle_valid(handle)) - error = ext4_handle_dirty_xattr_block(handle, inode, - bh); + error = ext4_handle_dirty_metadata(handle, inode, bh); if (IS_SYNC(inode)) ext4_handle_sync(handle); dquot_free_block(inode, EXT4_C2B(EXT4_SB(inode->i_sb), 1)); @@ -851,13 +845,14 @@ ext4_xattr_cache_insert(ext4_mb_cache, bs->bh); } + ext4_xattr_block_csum_set(inode, bs->bh); unlock_buffer(bs->bh); if (error == -EFSCORRUPTED) goto bad_block; if (!error) - error = ext4_handle_dirty_xattr_block(handle, - inode, - bs->bh); + error = ext4_handle_dirty_metadata(handle, + inode, + bs->bh); if (error) goto cleanup; goto inserted; @@ -955,10 +950,11 @@ ce->e_reusable = 0; ea_bdebug(new_bh, "reusing; refcount now=%d", ref); + ext4_xattr_block_csum_set(inode, new_bh); unlock_buffer(new_bh); - error = ext4_handle_dirty_xattr_block(handle, - inode, - new_bh); + error = ext4_handle_dirty_metadata(handle, + inode, + new_bh); if (error) goto cleanup_dquot; } @@ -1008,11 +1004,12 @@ goto getblk_failed; } memcpy(new_bh->b_data, s->base, new_bh->b_size); + ext4_xattr_block_csum_set(inode, new_bh); set_buffer_uptodate(new_bh); unlock_buffer(new_bh); ext4_xattr_cache_insert(ext4_mb_cache, new_bh); - error = ext4_handle_dirty_xattr_block(handle, - inode, new_bh); + error = ext4_handle_dirty_metadata(handle, inode, + new_bh); if (error) goto cleanup; } --- linux-4.8.0.orig/fs/f2fs/acl.c +++ linux-4.8.0/fs/f2fs/acl.c @@ -210,12 +210,10 @@ case ACL_TYPE_ACCESS: name_index = F2FS_XATTR_INDEX_POSIX_ACL_ACCESS; if (acl) { - error = posix_acl_equiv_mode(acl, &inode->i_mode); - if (error < 0) + error = posix_acl_update_mode(inode, &inode->i_mode, &acl); + if (error) return error; set_acl_inode(inode, inode->i_mode); - if (error == 0) - acl = NULL; } break; --- linux-4.8.0.orig/fs/f2fs/debug.c +++ linux-4.8.0/fs/f2fs/debug.c @@ -362,6 +362,7 @@ } static const struct file_operations stat_fops = { + .owner = THIS_MODULE, .open = stat_open, .read = seq_read, .llseek = seq_lseek, --- linux-4.8.0.orig/fs/f2fs/f2fs.h +++ linux-4.8.0/fs/f2fs/f2fs.h @@ -451,7 +451,7 @@ /* Use below internally in f2fs*/ unsigned long flags; /* use to pass per-file flags */ struct rw_semaphore i_sem; /* protect fi info */ - struct percpu_counter dirty_pages; /* # of dirty pages */ + atomic_t dirty_pages; /* # of dirty pages */ f2fs_hash_t chash; /* hash value of given file name */ unsigned int clevel; /* maximum level of given file name */ nid_t i_xattr_nid; /* node id that contains xattrs */ @@ -1198,7 +1198,7 @@ static inline void inode_inc_dirty_pages(struct inode *inode) { - percpu_counter_inc(&F2FS_I(inode)->dirty_pages); + atomic_inc(&F2FS_I(inode)->dirty_pages); inc_page_count(F2FS_I_SB(inode), S_ISDIR(inode->i_mode) ? F2FS_DIRTY_DENTS : F2FS_DIRTY_DATA); } @@ -1214,7 +1214,7 @@ !S_ISLNK(inode->i_mode)) return; - percpu_counter_dec(&F2FS_I(inode)->dirty_pages); + atomic_dec(&F2FS_I(inode)->dirty_pages); dec_page_count(F2FS_I_SB(inode), S_ISDIR(inode->i_mode) ? F2FS_DIRTY_DENTS : F2FS_DIRTY_DATA); } @@ -1224,9 +1224,9 @@ return percpu_counter_sum_positive(&sbi->nr_pages[count_type]); } -static inline s64 get_dirty_pages(struct inode *inode) +static inline int get_dirty_pages(struct inode *inode) { - return percpu_counter_sum_positive(&F2FS_I(inode)->dirty_pages); + return atomic_read(&F2FS_I(inode)->dirty_pages); } static inline int get_blocktype_secs(struct f2fs_sb_info *sbi, int block_type) --- linux-4.8.0.orig/fs/f2fs/file.c +++ linux-4.8.0/fs/f2fs/file.c @@ -970,7 +970,7 @@ new_size = (dst + i) << PAGE_SHIFT; if (dst_inode->i_size < new_size) f2fs_i_size_write(dst_inode, new_size); - } while ((do_replace[i] || blkaddr[i] == NULL_ADDR) && --ilen); + } while (--ilen && (do_replace[i] || blkaddr[i] == NULL_ADDR)); f2fs_put_dnode(&dn); } else { @@ -1529,7 +1529,7 @@ goto out; f2fs_msg(F2FS_I_SB(inode)->sb, KERN_WARNING, - "Unexpected flush for atomic writes: ino=%lu, npages=%lld", + "Unexpected flush for atomic writes: ino=%lu, npages=%u", inode->i_ino, get_dirty_pages(inode)); ret = filemap_write_and_wait_range(inode->i_mapping, 0, LLONG_MAX); if (ret) --- linux-4.8.0.orig/fs/f2fs/super.c +++ linux-4.8.0/fs/f2fs/super.c @@ -565,13 +565,9 @@ init_once((void *) fi); - if (percpu_counter_init(&fi->dirty_pages, 0, GFP_NOFS)) { - kmem_cache_free(f2fs_inode_cachep, fi); - return NULL; - } - /* Initialize f2fs-specific inode info */ fi->vfs_inode.i_version = 1; + atomic_set(&fi->dirty_pages, 0); fi->i_current_depth = 1; fi->i_advise = 0; init_rwsem(&fi->i_sem); @@ -694,7 +690,6 @@ static void f2fs_destroy_inode(struct inode *inode) { - percpu_counter_destroy(&F2FS_I(inode)->dirty_pages); call_rcu(&inode->i_rcu, f2fs_i_callback); } --- linux-4.8.0.orig/fs/fcntl.c +++ linux-4.8.0/fs/fcntl.c @@ -29,7 +29,7 @@ #define SETFL_MASK (O_APPEND | O_NONBLOCK | O_NDELAY | O_DIRECT | O_NOATIME) -static int setfl(int fd, struct file * filp, unsigned long arg) +int setfl(int fd, struct file * filp, unsigned long arg) { struct inode * inode = file_inode(filp); int error = 0; @@ -60,6 +60,8 @@ if (filp->f_op->check_flags) error = filp->f_op->check_flags(arg); + if (!error && filp->f_op->setfl) + error = filp->f_op->setfl(filp, arg); if (error) return error; @@ -80,6 +82,7 @@ out: return error; } +EXPORT_SYMBOL_GPL(setfl); static void f_modown(struct file *filp, struct pid *pid, enum pid_type type, int force) --- linux-4.8.0.orig/fs/file_table.c +++ linux-4.8.0/fs/file_table.c @@ -147,6 +147,7 @@ } return ERR_PTR(-ENFILE); } +EXPORT_SYMBOL_GPL(get_empty_filp); /** * alloc_file - allocate and initialize a 'struct file' @@ -258,6 +259,7 @@ { delayed_fput(NULL); } +EXPORT_SYMBOL_GPL(flush_delayed_fput); static DECLARE_DELAYED_WORK(delayed_fput_work, delayed_fput); @@ -300,6 +302,7 @@ } EXPORT_SYMBOL(fput); +EXPORT_SYMBOL_GPL(__fput_sync); void put_filp(struct file *file) { @@ -308,6 +311,7 @@ file_free(file); } } +EXPORT_SYMBOL_GPL(put_filp); void __init files_init(void) { --- linux-4.8.0.orig/fs/fuse/cuse.c +++ linux-4.8.0/fs/fuse/cuse.c @@ -48,6 +48,7 @@ #include #include #include +#include #include "fuse_i.h" @@ -498,7 +499,7 @@ if (!cc) return -ENOMEM; - fuse_conn_init(&cc->fc); + fuse_conn_init(&cc->fc, current_user_ns()); fud = fuse_dev_alloc(&cc->fc); if (!fud) { --- linux-4.8.0.orig/fs/fuse/dev.c +++ linux-4.8.0/fs/fuse/dev.c @@ -19,6 +19,7 @@ #include #include #include +#include MODULE_ALIAS_MISCDEV(FUSE_MINOR); MODULE_ALIAS("devname:fuse"); @@ -111,11 +112,11 @@ atomic_dec(&req->count); } -static void fuse_req_init_context(struct fuse_req *req) +static void fuse_req_init_context(struct fuse_conn *fc, struct fuse_req *req) { - req->in.h.uid = from_kuid_munged(&init_user_ns, current_fsuid()); - req->in.h.gid = from_kgid_munged(&init_user_ns, current_fsgid()); - req->in.h.pid = current->pid; + req->in.h.uid = from_kuid(fc->user_ns, current_fsuid()); + req->in.h.gid = from_kgid(fc->user_ns, current_fsgid()); + req->in.h.pid = pid_nr_ns(task_pid(current), fc->pid_ns); } void fuse_set_initialized(struct fuse_conn *fc) @@ -162,10 +163,14 @@ goto out; } - fuse_req_init_context(req); + fuse_req_init_context(fc, req); __set_bit(FR_WAITING, &req->flags); if (for_background) __set_bit(FR_BACKGROUND, &req->flags); + if (req->in.h.uid == (uid_t)-1 || req->in.h.gid == (gid_t)-1) { + fuse_put_request(fc, req); + return ERR_PTR(-EOVERFLOW); + } return req; @@ -255,7 +260,7 @@ if (!req) req = get_reserved_req(fc, file); - fuse_req_init_context(req); + fuse_req_init_context(fc, req); __set_bit(FR_WAITING, &req->flags); __clear_bit(FR_BACKGROUND, &req->flags); return req; @@ -1219,6 +1224,10 @@ struct fuse_in *in; unsigned reqsize; + if (task_active_pid_ns(current) != fc->pid_ns || + current_user_ns() != fc->user_ns) + return -EIO; + restart: spin_lock(&fiq->waitq.lock); err = -EAGAIN; @@ -1846,6 +1855,10 @@ struct fuse_req *req; struct fuse_out_header oh; + if (task_active_pid_ns(current) != fc->pid_ns || + current_user_ns() != fc->user_ns) + return -EIO; + if (nbytes < sizeof(struct fuse_out_header)) return -EINVAL; --- linux-4.8.0.orig/fs/fuse/dir.c +++ linux-4.8.0/fs/fuse/dir.c @@ -13,6 +13,8 @@ #include #include #include +#include +#include static bool fuse_use_readdirplus(struct inode *dir, struct dir_context *ctx) { @@ -843,8 +845,8 @@ stat->ino = attr->ino; stat->mode = (inode->i_mode & S_IFMT) | (attr->mode & 07777); stat->nlink = attr->nlink; - stat->uid = make_kuid(&init_user_ns, attr->uid); - stat->gid = make_kgid(&init_user_ns, attr->gid); + stat->uid = make_kuid(fc->user_ns, attr->uid); + stat->gid = make_kgid(fc->user_ns, attr->gid); stat->rdev = inode->i_rdev; stat->atime.tv_sec = attr->atime; stat->atime.tv_nsec = attr->atimensec; @@ -1018,7 +1020,7 @@ const struct cred *cred; if (fc->flags & FUSE_ALLOW_OTHER) - return 1; + return current_in_userns(fc->user_ns); cred = current_cred(); if (uid_eq(cred->euid, fc->user_id) && @@ -1460,17 +1462,17 @@ return true; } -static void iattr_to_fattr(struct iattr *iattr, struct fuse_setattr_in *arg, - bool trust_local_cmtime) +static void iattr_to_fattr(struct fuse_conn *fc, struct iattr *iattr, + struct fuse_setattr_in *arg, bool trust_local_cmtime) { unsigned ivalid = iattr->ia_valid; if (ivalid & ATTR_MODE) arg->valid |= FATTR_MODE, arg->mode = iattr->ia_mode; if (ivalid & ATTR_UID) - arg->valid |= FATTR_UID, arg->uid = from_kuid(&init_user_ns, iattr->ia_uid); + arg->valid |= FATTR_UID, arg->uid = from_kuid(fc->user_ns, iattr->ia_uid); if (ivalid & ATTR_GID) - arg->valid |= FATTR_GID, arg->gid = from_kgid(&init_user_ns, iattr->ia_gid); + arg->valid |= FATTR_GID, arg->gid = from_kgid(fc->user_ns, iattr->ia_gid); if (ivalid & ATTR_SIZE) arg->valid |= FATTR_SIZE, arg->size = iattr->ia_size; if (ivalid & ATTR_ATIME) { @@ -1630,7 +1632,7 @@ memset(&inarg, 0, sizeof(inarg)); memset(&outarg, 0, sizeof(outarg)); - iattr_to_fattr(attr, &inarg, trust_local_cmtime); + iattr_to_fattr(fc, attr, &inarg, trust_local_cmtime); if (file) { struct fuse_file *ff = file->private_data; inarg.valid |= FATTR_FH; @@ -1702,14 +1704,43 @@ static int fuse_setattr(struct dentry *entry, struct iattr *attr) { struct inode *inode = d_inode(entry); + struct file *file = (attr->ia_valid & ATTR_FILE) ? attr->ia_file : NULL; + int ret; if (!fuse_allow_current_process(get_fuse_conn(inode))) return -EACCES; - if (attr->ia_valid & ATTR_FILE) - return fuse_do_setattr(inode, attr, attr->ia_file); - else - return fuse_do_setattr(inode, attr, NULL); + if (attr->ia_valid & (ATTR_KILL_SUID | ATTR_KILL_SGID)) { + attr->ia_valid &= ~(ATTR_KILL_SUID | ATTR_KILL_SGID | + ATTR_MODE); + /* + * ia_mode calculation may have used stale i_mode. Refresh and + * recalculate. + */ + ret = fuse_do_getattr(inode, NULL, file); + if (ret) + return ret; + + attr->ia_mode = inode->i_mode; + if (inode->i_mode & S_ISUID) { + attr->ia_valid |= ATTR_MODE; + attr->ia_mode &= ~S_ISUID; + } + if ((inode->i_mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP)) { + attr->ia_valid |= ATTR_MODE; + attr->ia_mode &= ~S_ISGID; + } + } + if (!attr->ia_valid) + return 0; + + ret = fuse_do_setattr(inode, attr, file); + if (!ret) { + /* Directory mode changed, may need to revalidate access */ + if (d_is_dir(entry) && (attr->ia_valid & ATTR_MODE)) + fuse_invalidate_entry_cache(entry); + } + return ret; } static int fuse_getattr(struct vfsmount *mnt, struct dentry *entry, @@ -1730,12 +1761,24 @@ { struct fuse_conn *fc = get_fuse_conn(inode); FUSE_ARGS(args); + void *buf = NULL; struct fuse_setxattr_in inarg; int err; if (fc->no_setxattr) return -EOPNOTSUPP; + if (!strcmp(name, XATTR_NAME_POSIX_ACL_ACCESS) || + !strcmp(name, XATTR_NAME_POSIX_ACL_DEFAULT)) { + buf = kmemdup(value, size, GFP_KERNEL); + if (!buf) + return -ENOMEM; + err = posix_acl_fix_xattr_userns(inode->i_sb->s_user_ns, + &init_user_ns, buf, size); + if (err) + goto out; + } + memset(&inarg, 0, sizeof(inarg)); inarg.size = size; inarg.flags = flags; @@ -1747,7 +1790,7 @@ args.in.args[1].size = strlen(name) + 1; args.in.args[1].value = name; args.in.args[2].size = size; - args.in.args[2].value = value; + args.in.args[2].value = buf ? buf : value; err = fuse_simple_request(fc, &args); if (err == -ENOSYS) { fc->no_setxattr = 1; @@ -1757,6 +1800,8 @@ fuse_invalidate_attr(inode); fuse_update_ctime(inode); } +out: + kfree(buf); return err; } @@ -1792,8 +1837,16 @@ args.out.args[0].value = &outarg; } ret = fuse_simple_request(fc, &args); - if (!ret && !size) - ret = outarg.size; + if (!ret) { + if (!size) { + ret = outarg.size; + } else if (!strcmp(name, XATTR_NAME_POSIX_ACL_ACCESS) || + !strcmp(name, XATTR_NAME_POSIX_ACL_DEFAULT)) { + ret = posix_acl_fix_xattr_userns(&init_user_ns, + inode->i_sb->s_user_ns, + value, size); + } + } if (ret == -ENOSYS) { fc->no_getxattr = 1; ret = -EOPNOTSUPP; @@ -1801,6 +1854,23 @@ return ret; } +static int fuse_verify_xattr_list(char *list, size_t size) +{ + size_t origsize = size; + + while (size) { + size_t thislen = strnlen(list, size); + + if (!thislen || thislen == size) + return -EIO; + + size -= thislen + 1; + list += thislen + 1; + } + + return origsize; +} + static ssize_t fuse_listxattr(struct dentry *entry, char *list, size_t size) { struct inode *inode = d_inode(entry); @@ -1836,6 +1906,8 @@ ret = fuse_simple_request(fc, &args); if (!ret && !size) ret = outarg.size; + if (ret > 0 && size) + ret = fuse_verify_xattr_list(list, ret); if (ret == -ENOSYS) { fc->no_listxattr = 1; ret = -EOPNOTSUPP; --- linux-4.8.0.orig/fs/fuse/file.c +++ linux-4.8.0/fs/fuse/file.c @@ -1985,6 +1985,10 @@ { struct inode *inode = page->mapping->host; + /* Haven't copied anything? Skip zeroing, size extending, dirtying. */ + if (!copied) + goto unlock; + if (!PageUptodate(page)) { /* Zero any unwritten bytes at the end of the page */ size_t endoff = (pos + copied) & ~PAGE_MASK; @@ -1995,6 +1999,8 @@ fuse_write_update_size(inode, pos + copied); set_page_dirty(page); + +unlock: unlock_page(page); put_page(page); @@ -2081,7 +2087,8 @@ return generic_file_mmap(file, vma); } -static int convert_fuse_file_lock(const struct fuse_file_lock *ffl, +static int convert_fuse_file_lock(struct fuse_conn *fc, + const struct fuse_file_lock *ffl, struct file_lock *fl) { switch (ffl->type) { @@ -2096,7 +2103,14 @@ fl->fl_start = ffl->start; fl->fl_end = ffl->end; - fl->fl_pid = ffl->pid; + + /* + * Convert pid into the caller's pid namespace. If the pid + * does not map into the namespace fl_pid will get set to 0. + */ + rcu_read_lock(); + fl->fl_pid = pid_vnr(find_pid_ns(ffl->pid, fc->pid_ns)); + rcu_read_unlock(); break; default: @@ -2145,7 +2159,7 @@ args.out.args[0].value = &outarg; err = fuse_simple_request(fc, &args); if (!err) - err = convert_fuse_file_lock(&outarg.lk, fl); + err = convert_fuse_file_lock(fc, &outarg.lk, fl); return err; } @@ -2157,7 +2171,8 @@ FUSE_ARGS(args); struct fuse_lk_in inarg; int opcode = (fl->fl_flags & FL_SLEEP) ? FUSE_SETLKW : FUSE_SETLK; - pid_t pid = fl->fl_type != F_UNLCK ? current->tgid : 0; + struct pid *pid = fl->fl_type != F_UNLCK ? task_tgid(current) : NULL; + pid_t pid_nr = pid_nr_ns(pid, fc->pid_ns); int err; if (fl->fl_lmops && fl->fl_lmops->lm_grant) { @@ -2169,7 +2184,10 @@ if (fl->fl_flags & FL_CLOSE) return 0; - fuse_lk_fill(&args, file, fl, opcode, pid, flock, &inarg); + if (pid && pid_nr == 0) + return -EOVERFLOW; + + fuse_lk_fill(&args, file, fl, opcode, pid_nr, flock, &inarg); err = fuse_simple_request(fc, &args); /* locking is restartable */ --- linux-4.8.0.orig/fs/fuse/fuse_i.h +++ linux-4.8.0/fs/fuse/fuse_i.h @@ -23,6 +23,8 @@ #include #include #include +#include +#include /** Max number of pages that can be used in a single read request */ #define FUSE_MAX_PAGES_PER_REQ 32 @@ -469,6 +471,12 @@ /** The group id for this mount */ kgid_t group_id; + /** The pid namespace for this mount */ + struct pid_namespace *pid_ns; + + /** The user namespace for this mount */ + struct user_namespace *user_ns; + /** The fuse mount flags for this mount */ unsigned flags; @@ -870,7 +878,7 @@ /** * Initialize fuse_conn */ -void fuse_conn_init(struct fuse_conn *fc); +void fuse_conn_init(struct fuse_conn *fc, struct user_namespace *user_ns); /** * Release reference to fuse_conn --- linux-4.8.0.orig/fs/fuse/inode.c +++ linux-4.8.0/fs/fuse/inode.c @@ -20,6 +20,7 @@ #include #include #include +#include MODULE_AUTHOR("Miklos Szeredi "); MODULE_DESCRIPTION("Filesystem in Userspace"); @@ -168,8 +169,8 @@ inode->i_ino = fuse_squash_ino(attr->ino); inode->i_mode = (inode->i_mode & S_IFMT) | (attr->mode & 07777); set_nlink(inode, attr->nlink); - inode->i_uid = make_kuid(&init_user_ns, attr->uid); - inode->i_gid = make_kgid(&init_user_ns, attr->gid); + inode->i_uid = make_kuid(fc->user_ns, attr->uid); + inode->i_gid = make_kgid(fc->user_ns, attr->gid); inode->i_blocks = attr->blocks; inode->i_atime.tv_sec = attr->atime; inode->i_atime.tv_nsec = attr->atimensec; @@ -480,7 +481,8 @@ return err; } -static int parse_fuse_opt(char *opt, struct fuse_mount_data *d, int is_bdev) +static int parse_fuse_opt(char *opt, struct fuse_mount_data *d, int is_bdev, + struct user_namespace *user_ns) { char *p; memset(d, 0, sizeof(struct fuse_mount_data)); @@ -516,7 +518,7 @@ case OPT_USER_ID: if (fuse_match_uint(&args[0], &uv)) return 0; - d->user_id = make_kuid(current_user_ns(), uv); + d->user_id = make_kuid(user_ns, uv); if (!uid_valid(d->user_id)) return 0; d->user_id_present = 1; @@ -525,7 +527,7 @@ case OPT_GROUP_ID: if (fuse_match_uint(&args[0], &uv)) return 0; - d->group_id = make_kgid(current_user_ns(), uv); + d->group_id = make_kgid(user_ns, uv); if (!gid_valid(d->group_id)) return 0; d->group_id_present = 1; @@ -568,8 +570,10 @@ struct super_block *sb = root->d_sb; struct fuse_conn *fc = get_fuse_conn_super(sb); - seq_printf(m, ",user_id=%u", from_kuid_munged(&init_user_ns, fc->user_id)); - seq_printf(m, ",group_id=%u", from_kgid_munged(&init_user_ns, fc->group_id)); + seq_printf(m, ",user_id=%u", + from_kuid_munged(fc->user_ns, fc->user_id)); + seq_printf(m, ",group_id=%u", + from_kgid_munged(fc->user_ns, fc->group_id)); if (fc->flags & FUSE_DEFAULT_PERMISSIONS) seq_puts(m, ",default_permissions"); if (fc->flags & FUSE_ALLOW_OTHER) @@ -600,7 +604,7 @@ fpq->connected = 1; } -void fuse_conn_init(struct fuse_conn *fc) +void fuse_conn_init(struct fuse_conn *fc, struct user_namespace *user_ns) { memset(fc, 0, sizeof(*fc)); spin_lock_init(&fc->lock); @@ -623,6 +627,8 @@ fc->connected = 1; fc->attr_version = 1; get_random_bytes(&fc->scramble_key, sizeof(fc->scramble_key)); + fc->pid_ns = get_pid_ns(task_active_pid_ns(current)); + fc->user_ns = get_user_ns(user_ns); } EXPORT_SYMBOL_GPL(fuse_conn_init); @@ -631,6 +637,8 @@ if (atomic_dec_and_test(&fc->count)) { if (fc->destroy_req) fuse_request_free(fc->destroy_req); + put_pid_ns(fc->pid_ns); + put_user_ns(fc->user_ns); fc->release(fc); } } @@ -1056,7 +1064,7 @@ sb->s_flags &= ~(MS_NOSEC | MS_I_VERSION); - if (!parse_fuse_opt(data, &d, is_bdev)) + if (!parse_fuse_opt(data, &d, is_bdev, sb->s_user_ns)) goto err; if (is_bdev) { @@ -1080,8 +1088,12 @@ if (!file) goto err; - if ((file->f_op != &fuse_dev_operations) || - (file->f_cred->user_ns != &init_user_ns)) + /* + * Require mount to happen from the same user namespace which + * opened /dev/fuse to prevent potential attacks. + */ + if (file->f_op != &fuse_dev_operations || + file->f_cred->user_ns != sb->s_user_ns) goto err_fput; fc = kmalloc(sizeof(*fc), GFP_KERNEL); @@ -1089,7 +1101,7 @@ if (!fc) goto err_fput; - fuse_conn_init(fc); + fuse_conn_init(fc, sb->s_user_ns); fc->release = fuse_free_conn; fud = fuse_dev_alloc(fc); @@ -1200,7 +1212,7 @@ static struct file_system_type fuse_fs_type = { .owner = THIS_MODULE, .name = "fuse", - .fs_flags = FS_HAS_SUBTYPE, + .fs_flags = FS_HAS_SUBTYPE | FS_USERNS_MOUNT, .mount = fuse_mount, .kill_sb = fuse_kill_sb_anon, }; @@ -1232,7 +1244,7 @@ .name = "fuseblk", .mount = fuse_mount_blk, .kill_sb = fuse_kill_sb_blk, - .fs_flags = FS_REQUIRES_DEV | FS_HAS_SUBTYPE, + .fs_flags = FS_REQUIRES_DEV | FS_HAS_SUBTYPE | FS_USERNS_MOUNT, }; MODULE_ALIAS_FS("fuseblk"); --- linux-4.8.0.orig/fs/gfs2/acl.c +++ linux-4.8.0/fs/gfs2/acl.c @@ -92,17 +92,11 @@ if (type == ACL_TYPE_ACCESS) { umode_t mode = inode->i_mode; - error = posix_acl_equiv_mode(acl, &mode); - if (error < 0) + error = posix_acl_update_mode(inode, &inode->i_mode, &acl); + if (error) return error; - - if (error == 0) - acl = NULL; - - if (mode != inode->i_mode) { - inode->i_mode = mode; + if (mode != inode->i_mode) mark_inode_dirty(inode); - } } if (acl) { --- linux-4.8.0.orig/fs/hfsplus/posix_acl.c +++ linux-4.8.0/fs/hfsplus/posix_acl.c @@ -65,8 +65,8 @@ case ACL_TYPE_ACCESS: xattr_name = XATTR_NAME_POSIX_ACL_ACCESS; if (acl) { - err = posix_acl_equiv_mode(acl, &inode->i_mode); - if (err < 0) + err = posix_acl_update_mode(inode, &inode->i_mode, &acl); + if (err) return err; } err = 0; --- linux-4.8.0.orig/fs/hugetlbfs/inode.c +++ linux-4.8.0/fs/hugetlbfs/inode.c @@ -191,7 +191,7 @@ addr = ALIGN(addr, huge_page_size(h)); vma = find_vma(mm, addr); if (TASK_SIZE - len >= addr && - (!vma || addr + len <= vma->vm_start)) + (!vma || addr + len <= vm_start_gap(vma))) return addr; } --- linux-4.8.0.orig/fs/inode.c +++ linux-4.8.0/fs/inode.c @@ -1593,7 +1593,7 @@ * This does the actual work of updating an inodes time or version. Must have * had called mnt_want_write() before calling this. */ -static int update_time(struct inode *inode, struct timespec *time, int flags) +int update_time(struct inode *inode, struct timespec *time, int flags) { int (*update_time)(struct inode *, struct timespec *, int); @@ -1602,6 +1602,7 @@ return update_time(inode, time, flags); } +EXPORT_SYMBOL_GPL(update_time); /** * touch_atime - update the access time @@ -1686,7 +1687,8 @@ */ int should_remove_suid(struct dentry *dentry) { - umode_t mode = d_inode(dentry)->i_mode; + struct inode *inode = d_inode(dentry); + umode_t mode = inode->i_mode; int kill = 0; /* suid always must be killed */ @@ -1700,7 +1702,8 @@ if (unlikely((mode & S_ISGID) && (mode & S_IXGRP))) kill |= ATTR_KILL_SGID; - if (unlikely(kill && !capable(CAP_FSETID) && S_ISREG(mode))) + if (unlikely(kill && !capable_wrt_inode_uidgid(inode, CAP_FSETID) && + S_ISREG(mode))) return kill; return 0; --- linux-4.8.0.orig/fs/ioctl.c +++ linux-4.8.0/fs/ioctl.c @@ -542,7 +542,7 @@ { struct super_block *sb = file_inode(filp)->i_sb; - if (!capable(CAP_SYS_ADMIN)) + if (!ns_capable(sb->s_user_ns, CAP_SYS_ADMIN)) return -EPERM; /* If filesystem doesn't support freeze feature, return. */ @@ -559,7 +559,7 @@ { struct super_block *sb = file_inode(filp)->i_sb; - if (!capable(CAP_SYS_ADMIN)) + if (!ns_capable(sb->s_user_ns, CAP_SYS_ADMIN)) return -EPERM; /* Thaw */ --- linux-4.8.0.orig/fs/isofs/inode.c +++ linux-4.8.0/fs/isofs/inode.c @@ -687,6 +687,11 @@ pri_bh = NULL; root_found: + /* We don't support read-write mounts */ + if (!(s->s_flags & MS_RDONLY)) { + error = -EACCES; + goto out_freebh; + } if (joliet_level && (pri == NULL || !opt.rock)) { /* This is the case of Joliet with the norock mount flag. @@ -1501,9 +1506,6 @@ static struct dentry *isofs_mount(struct file_system_type *fs_type, int flags, const char *dev_name, void *data) { - /* We don't support read-write mounts */ - if (!(flags & MS_RDONLY)) - return ERR_PTR(-EACCES); return mount_bdev(fs_type, flags, dev_name, data, isofs_fill_super); } --- linux-4.8.0.orig/fs/jbd2/transaction.c +++ linux-4.8.0/fs/jbd2/transaction.c @@ -159,6 +159,7 @@ read_unlock(&journal->j_state_lock); if (need_to_start) jbd2_log_start_commit(journal, tid); + jbd2_might_wait_for_commit(journal); schedule(); finish_wait(&journal->j_wait_transaction_locked, &wait); } @@ -182,8 +183,6 @@ int needed; int total = blocks + rsv_blocks; - jbd2_might_wait_for_commit(journal); - /* * If the current transaction is locked down for commit, wait * for the lock to be released. @@ -214,6 +213,7 @@ if (atomic_read(&journal->j_reserved_credits) + total > journal->j_max_transaction_buffers) { read_unlock(&journal->j_state_lock); + jbd2_might_wait_for_commit(journal); wait_event(journal->j_wait_reserved, atomic_read(&journal->j_reserved_credits) + total <= journal->j_max_transaction_buffers); @@ -238,6 +238,7 @@ if (jbd2_log_space_left(journal) < jbd2_space_needed(journal)) { atomic_sub(total, &t->t_outstanding_credits); read_unlock(&journal->j_state_lock); + jbd2_might_wait_for_commit(journal); write_lock(&journal->j_state_lock); if (jbd2_log_space_left(journal) < jbd2_space_needed(journal)) __jbd2_log_wait_for_space(journal); @@ -255,6 +256,7 @@ sub_reserved_credits(journal, rsv_blocks); atomic_sub(total, &t->t_outstanding_credits); read_unlock(&journal->j_state_lock); + jbd2_might_wait_for_commit(journal); wait_event(journal->j_wait_reserved, atomic_read(&journal->j_reserved_credits) + rsv_blocks <= journal->j_max_transaction_buffers / 2); @@ -1147,6 +1149,7 @@ JBUFFER_TRACE(jh, "file as BJ_Reserved"); spin_lock(&journal->j_list_lock); __jbd2_journal_file_buffer(jh, transaction, BJ_Reserved); + spin_unlock(&journal->j_list_lock); } else if (jh->b_transaction == journal->j_committing_transaction) { /* first access by this transaction */ jh->b_modified = 0; @@ -1154,8 +1157,8 @@ JBUFFER_TRACE(jh, "set next transaction"); spin_lock(&journal->j_list_lock); jh->b_next_transaction = transaction; + spin_unlock(&journal->j_list_lock); } - spin_unlock(&journal->j_list_lock); jbd_unlock_bh_state(bh); /* --- linux-4.8.0.orig/fs/jffs2/acl.c +++ linux-4.8.0/fs/jffs2/acl.c @@ -233,9 +233,10 @@ case ACL_TYPE_ACCESS: xprefix = JFFS2_XPREFIX_ACL_ACCESS; if (acl) { - umode_t mode = inode->i_mode; - rc = posix_acl_equiv_mode(acl, &mode); - if (rc < 0) + umode_t mode; + + rc = posix_acl_update_mode(inode, &mode, &acl); + if (rc) return rc; if (inode->i_mode != mode) { struct iattr attr; @@ -247,8 +248,6 @@ if (rc < 0) return rc; } - if (rc == 0) - acl = NULL; } break; case ACL_TYPE_DEFAULT: --- linux-4.8.0.orig/fs/jfs/acl.c +++ linux-4.8.0/fs/jfs/acl.c @@ -78,13 +78,11 @@ case ACL_TYPE_ACCESS: ea_name = XATTR_NAME_POSIX_ACL_ACCESS; if (acl) { - rc = posix_acl_equiv_mode(acl, &inode->i_mode); - if (rc < 0) + rc = posix_acl_update_mode(inode, &inode->i_mode, &acl); + if (rc) return rc; inode->i_ctime = CURRENT_TIME; mark_inode_dirty(inode); - if (rc == 0) - acl = NULL; } break; case ACL_TYPE_DEFAULT: --- linux-4.8.0.orig/fs/mount.h +++ linux-4.8.0/fs/mount.h @@ -13,6 +13,8 @@ u64 seq; /* Sequence number to prevent loops */ wait_queue_head_t poll; u64 event; + unsigned int mounts; /* # of mounts in the namespace */ + unsigned int pending_mounts; }; struct mnt_pcp { --- linux-4.8.0.orig/fs/namei.c +++ linux-4.8.0/fs/namei.c @@ -888,8 +888,8 @@ path_put(&last->link); } -int sysctl_protected_symlinks __read_mostly = 0; -int sysctl_protected_hardlinks __read_mostly = 0; +int sysctl_protected_symlinks __read_mostly = 1; +int sysctl_protected_hardlinks __read_mostly = 1; /** * may_follow_link - Check symlink following for unsafe situations @@ -1100,7 +1100,6 @@ bool *need_mntput) { struct vfsmount *mnt; - const struct cred *old_cred; int err; if (!path->dentry->d_op || !path->dentry->d_op->d_automount) @@ -1129,9 +1128,7 @@ if (nd->total_link_count >= 40) return -ELOOP; - old_cred = override_creds(&init_cred); mnt = path->dentry->d_op->d_automount(path); - revert_creds(old_cred); if (IS_ERR(mnt)) { /* * The filesystem is allowed to return -EISDIR here to indicate --- linux-4.8.0.orig/fs/namespace.c +++ linux-4.8.0/fs/namespace.c @@ -27,6 +27,9 @@ #include "pnode.h" #include "internal.h" +/* Maximum number of mounts in a mount namespace */ +unsigned int sysctl_mount_max __read_mostly = 100000; + static unsigned int m_hash_mask __read_mostly; static unsigned int m_hash_shift __read_mostly; static unsigned int mp_hash_mask __read_mostly; @@ -463,6 +466,7 @@ mnt_dec_writers(real_mount(mnt)); preempt_enable(); } +EXPORT_SYMBOL_GPL(__mnt_drop_write); /** * mnt_drop_write - give up write access to a mount @@ -899,6 +903,9 @@ list_splice(&head, n->list.prev); + n->mounts += n->pending_mounts; + n->pending_mounts = 0; + attach_shadowed(mnt, parent, shadows); touch_mnt_namespace(n); } @@ -963,6 +970,21 @@ } EXPORT_SYMBOL_GPL(vfs_kern_mount); +struct vfsmount * +vfs_submount(const struct dentry *mountpoint, struct file_system_type *type, + const char *name, void *data) +{ + /* Until it is worked out how to pass the user namespace + * through from the parent mount to the submount don't support + * unprivileged mounts with submounts. + */ + if (mountpoint->d_sb->s_user_ns != &init_user_ns) + return ERR_PTR(-EPERM); + + return vfs_kern_mount(type, MS_SUBMOUNT, name, data); +} +EXPORT_SYMBOL_GPL(vfs_submount); + static struct mount *clone_mnt(struct mount *old, struct dentry *root, int flag) { @@ -1419,11 +1441,16 @@ propagate_umount(&tmp_list); while (!list_empty(&tmp_list)) { + struct mnt_namespace *ns; bool disconnect; p = list_first_entry(&tmp_list, struct mount, mnt_list); list_del_init(&p->mnt_expire); list_del_init(&p->mnt_list); - __touch_mnt_namespace(p->mnt_ns); + ns = p->mnt_ns; + if (ns) { + ns->mounts--; + __touch_mnt_namespace(ns); + } p->mnt_ns = NULL; if (how & UMOUNT_SYNC) p->mnt.mnt_flags |= MNT_SYNC_UMOUNT; @@ -1510,7 +1537,7 @@ * Special case for "unmounting" root ... * we just try to remount it readonly. */ - if (!capable(CAP_SYS_ADMIN)) + if (!ns_capable(sb->s_user_ns, CAP_SYS_ADMIN)) return -EPERM; down_write(&sb->s_umount); if (!(sb->s_flags & MS_RDONLY)) @@ -1812,6 +1839,7 @@ } return 0; } +EXPORT_SYMBOL_GPL(iterate_mounts); static void cleanup_group_ids(struct mount *mnt, struct mount *end) { @@ -1840,6 +1868,28 @@ return 0; } +int count_mounts(struct mnt_namespace *ns, struct mount *mnt) +{ + unsigned int max = READ_ONCE(sysctl_mount_max); + unsigned int mounts = 0, old, pending, sum; + struct mount *p; + + for (p = mnt; p; p = next_mnt(p, mnt)) + mounts++; + + old = ns->mounts; + pending = ns->pending_mounts; + sum = old + pending; + if ((old > sum) || + (pending > sum) || + (max < sum) || + (mounts > (max - sum))) + return -ENOSPC; + + ns->pending_mounts = pending + mounts; + return 0; +} + /* * @source_mnt : mount tree to be attached * @nd : place the mount tree @source_mnt is attached @@ -1909,10 +1959,18 @@ struct path *parent_path) { HLIST_HEAD(tree_list); + struct mnt_namespace *ns = dest_mnt->mnt_ns; struct mount *child, *p; struct hlist_node *n; int err; + /* Is there space to add these mounts to the mount namespace? */ + if (!parent_path) { + err = count_mounts(ns, source_mnt); + if (err) + goto out; + } + if (IS_MNT_SHARED(dest_mnt)) { err = invent_group_ids(source_mnt, true); if (err) @@ -1949,11 +2007,13 @@ out_cleanup_ids: while (!hlist_empty(&tree_list)) { child = hlist_entry(tree_list.first, struct mount, mnt_hash); + child->mnt_parent->mnt_ns->pending_mounts = 0; umount_tree(child, UMOUNT_SYNC); } unlock_mount_hash(); cleanup_group_ids(source_mnt, NULL); out: + ns->pending_mounts = 0; return err; } @@ -2208,7 +2268,7 @@ down_write(&sb->s_umount); if (flags & MS_BIND) err = change_mount_flags(path->mnt, flags); - else if (!capable(CAP_SYS_ADMIN)) + else if (!ns_capable(sb->s_user_ns, CAP_SYS_ADMIN)) err = -EPERM; else err = do_remount_sb(sb, flags, data, 0); @@ -2700,7 +2760,7 @@ flags &= ~(MS_NOSUID | MS_NOEXEC | MS_NODEV | MS_ACTIVE | MS_BORN | MS_NOATIME | MS_NODIRATIME | MS_RELATIME| MS_KERNMOUNT | - MS_STRICTATIME); + MS_STRICTATIME | MS_SUBMOUNT); if (flags & MS_REMOUNT) retval = do_remount(&path, flags & ~MS_REMOUNT, mnt_flags, @@ -2756,6 +2816,8 @@ init_waitqueue_head(&new_ns->poll); new_ns->event = 0; new_ns->user_ns = get_user_ns(user_ns); + new_ns->mounts = 0; + new_ns->pending_mounts = 0; return new_ns; } @@ -2805,6 +2867,7 @@ q = new; while (p) { q->mnt_ns = new_ns; + new_ns->mounts++; if (new_fs) { if (&p->mnt == new_fs->root.mnt) { new_fs->root.mnt = mntget(&q->mnt); @@ -2843,6 +2906,7 @@ struct mount *mnt = real_mount(m); mnt->mnt_ns = new_ns; new_ns->root = mnt; + new_ns->mounts++; list_add(&mnt->mnt_list, &new_ns->list); } else { mntput(m); --- linux-4.8.0.orig/fs/nfs/blocklayout/blocklayout.c +++ linux-4.8.0/fs/nfs/blocklayout/blocklayout.c @@ -344,9 +344,10 @@ u64 start = hdr->args.offset & (loff_t)PAGE_MASK; u64 end = (hdr->args.offset + hdr->args.count + PAGE_SIZE - 1) & (loff_t)PAGE_MASK; + u64 lwb = hdr->args.offset + hdr->args.count; ext_tree_mark_written(bl, start >> SECTOR_SHIFT, - (end - start) >> SECTOR_SHIFT, end); + (end - start) >> SECTOR_SHIFT, lwb); } pnfs_ld_write_done(hdr); --- linux-4.8.0.orig/fs/nfs/callback.c +++ linux-4.8.0/fs/nfs/callback.c @@ -261,7 +261,7 @@ } ret = -EPROTONOSUPPORT; - if (minorversion == 0) + if (!IS_ENABLED(CONFIG_NFS_V4_1) || minorversion == 0) ret = nfs4_callback_up_net(serv, net); else if (xprt->ops->bc_up) ret = xprt->ops->bc_up(serv, net); --- linux-4.8.0.orig/fs/nfs/delegation.c +++ linux-4.8.0/fs/nfs/delegation.c @@ -41,6 +41,17 @@ set_bit(NFS_DELEGATION_REFERENCED, &delegation->flags); } +static bool +nfs4_is_valid_delegation(const struct nfs_delegation *delegation, + fmode_t flags) +{ + if (delegation != NULL && (delegation->type & flags) == flags && + !test_bit(NFS_DELEGATION_REVOKED, &delegation->flags) && + !test_bit(NFS_DELEGATION_RETURNING, &delegation->flags)) + return true; + return false; +} + static int nfs4_do_check_delegation(struct inode *inode, fmode_t flags, bool mark) { @@ -50,8 +61,7 @@ flags &= FMODE_READ|FMODE_WRITE; rcu_read_lock(); delegation = rcu_dereference(NFS_I(inode)->delegation); - if (delegation != NULL && (delegation->type & flags) == flags && - !test_bit(NFS_DELEGATION_RETURNING, &delegation->flags)) { + if (nfs4_is_valid_delegation(delegation, flags)) { if (mark) nfs_mark_delegation_referenced(delegation); ret = 1; @@ -893,7 +903,7 @@ flags &= FMODE_READ|FMODE_WRITE; rcu_read_lock(); delegation = rcu_dereference(nfsi->delegation); - ret = (delegation != NULL && (delegation->type & flags) == flags); + ret = nfs4_is_valid_delegation(delegation, flags); if (ret) { nfs4_stateid_copy(dst, &delegation->stateid); nfs_mark_delegation_referenced(delegation); --- linux-4.8.0.orig/fs/nfs/dir.c +++ linux-4.8.0/fs/nfs/dir.c @@ -435,11 +435,11 @@ return 0; nfsi = NFS_I(inode); - if (entry->fattr->fileid == nfsi->fileid) - return 1; - if (nfs_compare_fh(entry->fh, &nfsi->fh) == 0) - return 1; - return 0; + if (entry->fattr->fileid != nfsi->fileid) + return 0; + if (entry->fh->size && nfs_compare_fh(entry->fh, &nfsi->fh) != 0) + return 0; + return 1; } static @@ -517,6 +517,8 @@ &entry->fattr->fsid)) goto out; if (nfs_same_file(dentry, entry)) { + if (!entry->fh->size) + goto out; nfs_set_verifier(dentry, nfs_save_change_attribute(dir)); status = nfs_refresh_inode(d_inode(dentry), entry->fattr); if (!status) @@ -529,6 +531,10 @@ goto again; } } + if (!entry->fh->size) { + d_lookup_done(dentry); + goto out; + } inode = nfs_fhget(dentry->d_sb, entry->fh, entry->fattr, entry->label); alias = d_splice_alias(inode, dentry); --- linux-4.8.0.orig/fs/nfs/file.c +++ linux-4.8.0/fs/nfs/file.c @@ -397,7 +397,7 @@ */ if (!PageUptodate(page)) { unsigned pglen = nfs_page_length(page); - unsigned end = offset + len; + unsigned end = offset + copied; if (pglen == 0) { zero_user_segments(page, 0, offset, --- linux-4.8.0.orig/fs/nfs/flexfilelayout/flexfilelayout.c +++ linux-4.8.0/fs/nfs/flexfilelayout/flexfilelayout.c @@ -28,6 +28,9 @@ static struct group_info *ff_zero_group; +static void ff_layout_read_record_layoutstats_done(struct rpc_task *task, + struct nfs_pgio_header *hdr); + static struct pnfs_layout_hdr * ff_layout_alloc_layout_hdr(struct inode *inode, gfp_t gfp_flags) { @@ -1293,6 +1296,7 @@ hdr->pgio_mirror_idx + 1, &hdr->pgio_mirror_idx)) goto out_eagain; + ff_layout_read_record_layoutstats_done(task, hdr); pnfs_read_resend_pnfs(hdr); return task->tk_status; case -NFS4ERR_RESET_TO_MDS: --- linux-4.8.0.orig/fs/nfs/namespace.c +++ linux-4.8.0/fs/nfs/namespace.c @@ -226,7 +226,7 @@ const char *devname, struct nfs_clone_mount *mountdata) { - return vfs_kern_mount(&nfs_xdev_fs_type, 0, devname, mountdata); + return vfs_submount(mountdata->dentry, &nfs_xdev_fs_type, devname, mountdata); } /** --- linux-4.8.0.orig/fs/nfs/nfs42proc.c +++ linux-4.8.0/fs/nfs/nfs42proc.c @@ -443,6 +443,7 @@ task = rpc_run_task(&task_setup); if (IS_ERR(task)) return PTR_ERR(task); + rpc_put_task(task); return 0; } --- linux-4.8.0.orig/fs/nfs/nfs4namespace.c +++ linux-4.8.0/fs/nfs/nfs4namespace.c @@ -279,7 +279,7 @@ mountdata->hostname, mountdata->mnt_path); - mnt = vfs_kern_mount(&nfs4_referral_fs_type, 0, page, mountdata); + mnt = vfs_submount(mountdata->dentry, &nfs4_referral_fs_type, page, mountdata); if (!IS_ERR(mnt)) break; } --- linux-4.8.0.orig/fs/nfs/nfs4session.c +++ linux-4.8.0/fs/nfs/nfs4session.c @@ -178,12 +178,14 @@ __must_hold(&tbl->slot_tbl_lock) { struct nfs4_slot *slot; + int ret; slot = nfs4_lookup_slot(tbl, slotid); - if (IS_ERR(slot)) - return PTR_ERR(slot); - *seq_nr = slot->seq_nr; - return 0; + ret = PTR_ERR_OR_ZERO(slot); + if (!ret) + *seq_nr = slot->seq_nr; + + return ret; } /* --- linux-4.8.0.orig/fs/nfs/nfs4state.c +++ linux-4.8.0/fs/nfs/nfs4state.c @@ -1498,6 +1498,9 @@ __func__, status); case -ENOENT: case -ENOMEM: + case -EACCES: + case -EROFS: + case -EIO: case -ESTALE: /* Open state on this file cannot be recovered */ nfs4_state_mark_recovery_failed(state, status); --- linux-4.8.0.orig/fs/nfs/pnfs.c +++ linux-4.8.0/fs/nfs/pnfs.c @@ -252,6 +252,14 @@ } } +static void +pnfs_clear_layoutreturn_info(struct pnfs_layout_hdr *lo) +{ + lo->plh_return_iomode = 0; + lo->plh_return_seq = 0; + clear_bit(NFS_LAYOUT_RETURN_REQUESTED, &lo->plh_flags); +} + /* * Mark a pnfs_layout_hdr and all associated layout segments as invalid * @@ -270,6 +278,7 @@ }; set_bit(NFS_LAYOUT_INVALID_STID, &lo->plh_flags); + pnfs_clear_layoutreturn_info(lo); return pnfs_mark_matching_lsegs_invalid(lo, lseg_list, &range, 0); } @@ -364,7 +373,9 @@ list_del_init(&lseg->pls_list); /* Matched by pnfs_get_layout_hdr in pnfs_layout_insert_lseg */ atomic_dec(&lo->plh_refcount); - if (list_empty(&lo->plh_segs)) { + if (list_empty(&lo->plh_segs) && + !test_bit(NFS_LAYOUT_RETURN_REQUESTED, &lo->plh_flags) && + !test_bit(NFS_LAYOUT_RETURN, &lo->plh_flags)) { if (atomic_read(&lo->plh_outstanding) == 0) set_bit(NFS_LAYOUT_INVALID_STID, &lo->plh_flags); clear_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags); @@ -769,14 +780,6 @@ pnfs_destroy_layouts_byclid(clp, false); } -static void -pnfs_clear_layoutreturn_info(struct pnfs_layout_hdr *lo) -{ - lo->plh_return_iomode = 0; - lo->plh_return_seq = 0; - clear_bit(NFS_LAYOUT_RETURN_REQUESTED, &lo->plh_flags); -} - /* update lo->plh_stateid with new if is more recent */ void pnfs_set_layout_stateid(struct pnfs_layout_hdr *lo, const nfs4_stateid *new, @@ -897,6 +900,7 @@ void pnfs_clear_layoutreturn_waitbit(struct pnfs_layout_hdr *lo) { clear_bit_unlock(NFS_LAYOUT_RETURN, &lo->plh_flags); + clear_bit(NFS_LAYOUT_RETURN_LOCK, &lo->plh_flags); smp_mb__after_atomic(); wake_up_bit(&lo->plh_flags, NFS_LAYOUT_RETURN); rpc_wake_up(&NFS_SERVER(lo->plh_inode)->roc_rpcwaitq); @@ -910,8 +914,9 @@ /* Serialise LAYOUTGET/LAYOUTRETURN */ if (atomic_read(&lo->plh_outstanding) != 0) return false; - if (test_and_set_bit(NFS_LAYOUT_RETURN, &lo->plh_flags)) + if (test_and_set_bit(NFS_LAYOUT_RETURN_LOCK, &lo->plh_flags)) return false; + set_bit(NFS_LAYOUT_RETURN, &lo->plh_flags); pnfs_get_layout_hdr(lo); if (test_bit(NFS_LAYOUT_RETURN_REQUESTED, &lo->plh_flags)) { if (stateid != NULL) { @@ -1903,6 +1908,8 @@ spin_lock(&inode->i_lock); pnfs_set_plh_return_info(lo, range.iomode, 0); + /* Block LAYOUTGET */ + set_bit(NFS_LAYOUT_RETURN, &lo->plh_flags); /* * mark all matching lsegs so that we are sure to have no live * segments at hand when sending layoutreturn. See pnfs_put_lseg() @@ -2241,6 +2248,10 @@ struct nfs_pageio_descriptor pgio; if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags)) { + /* Prevent deadlocks with layoutreturn! */ + pnfs_put_lseg(hdr->lseg); + hdr->lseg = NULL; + nfs_pageio_init_read(&pgio, hdr->inode, false, hdr->completion_ops); hdr->task.tk_status = nfs_pageio_resend(&pgio, hdr); --- linux-4.8.0.orig/fs/nfs/pnfs.h +++ linux-4.8.0/fs/nfs/pnfs.h @@ -96,6 +96,7 @@ NFS_LAYOUT_RW_FAILED, /* get rw layout failed stop trying */ NFS_LAYOUT_BULK_RECALL, /* bulk recall affecting layout */ NFS_LAYOUT_RETURN, /* layoutreturn in progress */ + NFS_LAYOUT_RETURN_LOCK, /* Serialise layoutreturn */ NFS_LAYOUT_RETURN_REQUESTED, /* Return this layout ASAP */ NFS_LAYOUT_INVALID_STID, /* layout stateid id is invalid */ NFS_LAYOUT_FIRST_LAYOUTGET, /* Serialize first layoutget */ --- linux-4.8.0.orig/fs/nfsd/nfs4state.c +++ linux-4.8.0/fs/nfsd/nfs4state.c @@ -1147,9 +1147,7 @@ static bool unhash_lock_stateid(struct nfs4_ol_stateid *stp) { - struct nfs4_openowner *oo = openowner(stp->st_openstp->st_stateowner); - - lockdep_assert_held(&oo->oo_owner.so_client->cl_lock); + lockdep_assert_held(&stp->st_stid.sc_client->cl_lock); list_del_init(&stp->st_locks); nfs4_unhash_stid(&stp->st_stid); @@ -1158,12 +1156,12 @@ static void release_lock_stateid(struct nfs4_ol_stateid *stp) { - struct nfs4_openowner *oo = openowner(stp->st_openstp->st_stateowner); + struct nfs4_client *clp = stp->st_stid.sc_client; bool unhashed; - spin_lock(&oo->oo_owner.so_client->cl_lock); + spin_lock(&clp->cl_lock); unhashed = unhash_lock_stateid(stp); - spin_unlock(&oo->oo_owner.so_client->cl_lock); + spin_unlock(&clp->cl_lock); if (unhashed) nfs4_put_stid(&stp->st_stid); } --- linux-4.8.0.orig/fs/nfsd/nfssvc.c +++ linux-4.8.0/fs/nfsd/nfssvc.c @@ -366,14 +366,21 @@ }; #endif +/* Only used under nfsd_mutex, so this atomic may be overkill: */ +static atomic_t nfsd_notifier_refcount = ATOMIC_INIT(0); + static void nfsd_last_thread(struct svc_serv *serv, struct net *net) { struct nfsd_net *nn = net_generic(net, nfsd_net_id); - unregister_inetaddr_notifier(&nfsd_inetaddr_notifier); + /* check if the notifier still has clients */ + if (atomic_dec_return(&nfsd_notifier_refcount) == 0) { + unregister_inetaddr_notifier(&nfsd_inetaddr_notifier); #if IS_ENABLED(CONFIG_IPV6) - unregister_inet6addr_notifier(&nfsd_inet6addr_notifier); + unregister_inet6addr_notifier(&nfsd_inet6addr_notifier); #endif + } + /* * write_ports can create the server without actually starting * any threads--if we get shut down before any threads are @@ -488,10 +495,13 @@ } set_max_drc(); - register_inetaddr_notifier(&nfsd_inetaddr_notifier); + /* check if the notifier is already set */ + if (atomic_inc_return(&nfsd_notifier_refcount) == 1) { + register_inetaddr_notifier(&nfsd_inetaddr_notifier); #if IS_ENABLED(CONFIG_IPV6) - register_inet6addr_notifier(&nfsd_inet6addr_notifier); + register_inet6addr_notifier(&nfsd_inet6addr_notifier); #endif + } do_gettimeofday(&nn->nfssvc_boot); /* record boot time */ return 0; } --- linux-4.8.0.orig/fs/notify/group.c +++ linux-4.8.0/fs/notify/group.c @@ -22,6 +22,7 @@ #include #include #include +#include #include #include "fsnotify.h" @@ -100,6 +101,7 @@ { atomic_inc(&group->refcnt); } +EXPORT_SYMBOL_GPL(fsnotify_get_group); /* * Drop a reference to a group. Free it if it's through. @@ -109,6 +111,7 @@ if (atomic_dec_and_test(&group->refcnt)) fsnotify_final_destroy_group(group); } +EXPORT_SYMBOL_GPL(fsnotify_put_group); /* * Create a new fsnotify_group and hold a reference for the group returned. @@ -137,6 +140,7 @@ return group; } +EXPORT_SYMBOL_GPL(fsnotify_alloc_group); int fsnotify_fasync(int fd, struct file *file, int on) { --- linux-4.8.0.orig/fs/notify/inode_mark.c +++ linux-4.8.0/fs/notify/inode_mark.c @@ -150,12 +150,10 @@ */ void fsnotify_unmount_inodes(struct super_block *sb) { - struct inode *inode, *next_i, *need_iput = NULL; + struct inode *inode, *iput_inode = NULL; spin_lock(&sb->s_inode_list_lock); - list_for_each_entry_safe(inode, next_i, &sb->s_inodes, i_sb_list) { - struct inode *need_iput_tmp; - + list_for_each_entry(inode, &sb->s_inodes, i_sb_list) { /* * We cannot __iget() an inode in state I_FREEING, * I_WILL_FREE, or I_NEW which is fine because by that point @@ -178,49 +176,24 @@ continue; } - need_iput_tmp = need_iput; - need_iput = NULL; - - /* In case fsnotify_inode_delete() drops a reference. */ - if (inode != need_iput_tmp) - __iget(inode); - else - need_iput_tmp = NULL; + __iget(inode); spin_unlock(&inode->i_lock); - - /* In case the dropping of a reference would nuke next_i. */ - while (&next_i->i_sb_list != &sb->s_inodes) { - spin_lock(&next_i->i_lock); - if (!(next_i->i_state & (I_FREEING | I_WILL_FREE)) && - atomic_read(&next_i->i_count)) { - __iget(next_i); - need_iput = next_i; - spin_unlock(&next_i->i_lock); - break; - } - spin_unlock(&next_i->i_lock); - next_i = list_next_entry(next_i, i_sb_list); - } - - /* - * We can safely drop s_inode_list_lock here because either - * we actually hold references on both inode and next_i or - * end of list. Also no new inodes will be added since the - * umount has begun. - */ spin_unlock(&sb->s_inode_list_lock); - if (need_iput_tmp) - iput(need_iput_tmp); + if (iput_inode) + iput(iput_inode); /* for each watch, send FS_UNMOUNT and then remove it */ fsnotify(inode, FS_UNMOUNT, inode, FSNOTIFY_EVENT_INODE, NULL, 0); fsnotify_inode_delete(inode); - iput(inode); + iput_inode = inode; spin_lock(&sb->s_inode_list_lock); } spin_unlock(&sb->s_inode_list_lock); + + if (iput_inode) + iput(iput_inode); } --- linux-4.8.0.orig/fs/notify/mark.c +++ linux-4.8.0/fs/notify/mark.c @@ -113,6 +113,7 @@ mark->free_mark(mark); } } +EXPORT_SYMBOL_GPL(fsnotify_put_mark); /* Calculate mask of events for a list of marks */ u32 fsnotify_recalc_mask(struct hlist_head *head) @@ -230,6 +231,7 @@ mutex_unlock(&group->mark_mutex); fsnotify_free_mark(mark); } +EXPORT_SYMBOL_GPL(fsnotify_destroy_mark); void fsnotify_destroy_marks(struct hlist_head *head, spinlock_t *lock) { @@ -415,6 +417,7 @@ return ret; } +EXPORT_SYMBOL_GPL(fsnotify_add_mark); int fsnotify_add_mark(struct fsnotify_mark *mark, struct fsnotify_group *group, struct inode *inode, struct vfsmount *mnt, int allow_dups) @@ -533,6 +536,7 @@ atomic_set(&mark->refcnt, 1); mark->free_mark = free_mark; } +EXPORT_SYMBOL_GPL(fsnotify_init_mark); /* * Destroy all marks in destroy_list, waits for SRCU period to finish before --- linux-4.8.0.orig/fs/ocfs2/acl.c +++ linux-4.8.0/fs/ocfs2/acl.c @@ -241,13 +241,11 @@ case ACL_TYPE_ACCESS: name_index = OCFS2_XATTR_INDEX_POSIX_ACL_ACCESS; if (acl) { - umode_t mode = inode->i_mode; - ret = posix_acl_equiv_mode(acl, &mode); - if (ret < 0) - return ret; + umode_t mode; - if (ret == 0) - acl = NULL; + ret = posix_acl_update_mode(inode, &mode, &acl); + if (ret) + return ret; ret = ocfs2_acl_set_mode(inode, di_bh, handle, mode); --- linux-4.8.0.orig/fs/open.c +++ linux-4.8.0/fs/open.c @@ -34,6 +34,9 @@ #include "internal.h" +#define CREATE_TRACE_POINTS +#include + int do_truncate(struct dentry *dentry, loff_t length, unsigned int time_attrs, struct file *filp) { @@ -64,6 +67,7 @@ inode_unlock(dentry->d_inode); return ret; } +EXPORT_SYMBOL_GPL(do_truncate); long vfs_truncate(const struct path *path, loff_t length) { @@ -678,6 +682,7 @@ } return 0; } +EXPORT_SYMBOL_GPL(open_check_o_direct); static int do_dentry_open(struct file *f, struct inode *inode, @@ -1040,6 +1045,7 @@ } else { fsnotify_open(f); fd_install(fd, f); + trace_do_sys_open(tmp->name, flags, mode); } } putname(tmp); --- linux-4.8.0.orig/fs/orangefs/acl.c +++ linux-4.8.0/fs/orangefs/acl.c @@ -73,14 +73,11 @@ case ACL_TYPE_ACCESS: name = XATTR_NAME_POSIX_ACL_ACCESS; if (acl) { - umode_t mode = inode->i_mode; - /* - * can we represent this with the traditional file - * mode permission bits? - */ - error = posix_acl_equiv_mode(acl, &mode); - if (error < 0) { - gossip_err("%s: posix_acl_equiv_mode err: %d\n", + umode_t mode; + + error = posix_acl_update_mode(inode, &mode, &acl); + if (error) { + gossip_err("%s: posix_acl_update_mode err: %d\n", __func__, error); return error; @@ -90,8 +87,6 @@ SetModeFlag(orangefs_inode); inode->i_mode = mode; mark_inode_dirty_sync(inode); - if (error == 0) - acl = NULL; } break; case ACL_TYPE_DEFAULT: --- linux-4.8.0.orig/fs/overlayfs/copy_up.c +++ linux-4.8.0/fs/overlayfs/copy_up.c @@ -57,6 +57,7 @@ ssize_t list_size, size, value_size = 0; char *buf, *name, *value = NULL; int uninitialized_var(error); + size_t slen; if (!old->d_inode->i_op->getxattr || !new->d_inode->i_op->getxattr) @@ -79,7 +80,16 @@ goto out; } - for (name = buf; name < (buf + list_size); name += strlen(name) + 1) { + for (name = buf; list_size; name += slen) { + slen = strnlen(name, list_size) + 1; + + /* underlying fs providing us with an broken xattr list? */ + if (WARN_ON(slen > list_size)) { + error = -EIO; + break; + } + list_size -= slen; + if (ovl_is_private_xattr(name)) continue; retry: @@ -161,6 +171,8 @@ len -= bytes; } + if (!error) + error = vfs_fsync(new_file, 0); fput(new_file); out_fput: fput(old_file); @@ -217,10 +229,19 @@ { int err = 0; + /* + * For the most part we want to set the mode bits before setting + * the user, otherwise the current context might lack permission + * for setting the mode. However for sxid/sticky bits we want + * the operation to fail if the current user isn't privileged + * towards the resulting inode. So we first set the mode but + * exclude the sxid/sticky bits, then set the user, then set the + * mode again if any of the sxid/sticky bits are set. + */ if (!S_ISLNK(stat->mode)) { struct iattr attr = { .ia_valid = ATTR_MODE, - .ia_mode = stat->mode, + .ia_mode = stat->mode & ~(S_ISUID|S_ISGID|S_ISVTX), }; err = notify_change(upperdentry, &attr, NULL); } @@ -232,6 +253,14 @@ }; err = notify_change(upperdentry, &attr, NULL); } + if (!err && !S_ISLNK(stat->mode) && + (stat->mode & (S_ISUID|S_ISGID|S_ISVTX))) { + struct iattr attr = { + .ia_valid = ATTR_MODE, + .ia_mode = stat->mode, + }; + err = notify_change(upperdentry, &attr, NULL); + } if (!err) ovl_set_timestamps(upperdentry, stat); --- linux-4.8.0.orig/fs/overlayfs/dir.c +++ linux-4.8.0/fs/overlayfs/dir.c @@ -14,6 +14,7 @@ #include #include #include +#include #include "overlayfs.h" void ovl_cleanup(struct inode *wdir, struct dentry *wdentry) @@ -37,8 +38,10 @@ { struct dentry *temp; char name[20]; + static atomic_t temp_id = ATOMIC_INIT(0); - snprintf(name, sizeof(name), "#%lx", (unsigned long) dentry); + /* counter is allowed to wrap, since temp dentries are ephemeral */ + snprintf(name, sizeof(name), "#%x", atomic_inc_return(&temp_id)); temp = lookup_one_len(name, workdir, strlen(name)); if (!IS_ERR(temp) && temp->d_inode) { --- linux-4.8.0.orig/fs/overlayfs/inode.c +++ linux-4.8.0/fs/overlayfs/inode.c @@ -294,9 +294,6 @@ if (!IS_ENABLED(CONFIG_FS_POSIX_ACL) || !IS_POSIXACL(realinode)) return NULL; - if (!realinode->i_op->get_acl) - return NULL; - old_cred = ovl_override_creds(inode->i_sb); acl = get_acl(realinode, type); revert_creds(old_cred); --- linux-4.8.0.orig/fs/overlayfs/overlayfs.h +++ linux-4.8.0/fs/overlayfs/overlayfs.h @@ -95,7 +95,13 @@ static inline int ovl_do_setxattr(struct dentry *dentry, const char *name, const void *value, size_t size, int flags) { - int err = vfs_setxattr(dentry, name, value, size, flags); + struct inode *inode = dentry->d_inode; + int err; + + inode_lock(inode); + err = __vfs_setxattr_noperm(dentry, name, value, size, flags); + inode_unlock(inode); + pr_debug("setxattr(%pd2, \"%s\", \"%*s\", 0x%x) = %i\n", dentry, name, (int) size, (char *) value, flags, err); return err; @@ -103,7 +109,13 @@ static inline int ovl_do_removexattr(struct dentry *dentry, const char *name) { - int err = vfs_removexattr(dentry, name); + struct inode *inode = dentry->d_inode; + int err; + + inode_lock(inode); + err = __vfs_removexattr_noperm(dentry, name); + inode_unlock(inode); + pr_debug("removexattr(%pd2, \"%s\") = %i\n", dentry, name, err); return err; } --- linux-4.8.0.orig/fs/overlayfs/super.c +++ linux-4.8.0/fs/overlayfs/super.c @@ -329,11 +329,11 @@ if (!real) goto bug; + /* Handle recursion */ + real = d_real(real, inode, open_flags); + if (!inode || inode == d_inode(real)) return real; - - /* Handle recursion */ - return d_real(real, inode, open_flags); bug: WARN(1, "ovl_d_real(%pd4, %s:%lu): real dentry not found\n", dentry, inode ? inode->i_sb->s_id : "NULL", inode ? inode->i_ino : 0); @@ -1026,6 +1026,21 @@ posix_acl_release(acl); + /* + * Check if sgid bit needs to be cleared (actual setacl operation will + * be done with mounter's capabilities and so that won't do it for us). + */ + if (unlikely(inode->i_mode & S_ISGID) && + handler->flags == ACL_TYPE_ACCESS && + !in_group_p(inode->i_gid) && + !capable_wrt_inode_uidgid(inode, CAP_FSETID)) { + struct iattr iattr = { .ia_valid = ATTR_KILL_SGID }; + + err = ovl_setattr(dentry, &iattr); + if (err) + return err; + } + err = ovl_xattr_set(dentry, handler->name, value, size, flags); if (!err) ovl_copyattr(ovl_inode_real(inode, NULL), inode); @@ -1222,6 +1237,9 @@ sb->s_time_gran = ufs->upper_mnt->mnt_sb->s_time_gran; + if (ufs->upper_mnt->mnt_flags & MNT_NOSUID) + sb->s_iflags |= SB_I_NOSUID; + ufs->workdir = ovl_workdir_create(ufs->upper_mnt, workpath.dentry); err = PTR_ERR(ufs->workdir); if (IS_ERR(ufs->workdir)) { @@ -1270,6 +1288,9 @@ */ mnt->mnt_flags |= MNT_READONLY | MNT_NOATIME; + if (mnt->mnt_flags & MNT_NOSUID) + sb->s_iflags |= SB_I_NOSUID; + ufs->lower_mnt[ufs->numlower] = mnt; ufs->numlower++; } @@ -1365,6 +1386,7 @@ .name = "overlay", .mount = ovl_mount, .kill_sb = kill_anon_super, + .fs_flags = FS_USERNS_MOUNT, }; MODULE_ALIAS_FS("overlay"); --- linux-4.8.0.orig/fs/pnode.c +++ linux-4.8.0/fs/pnode.c @@ -259,7 +259,7 @@ read_sequnlock_excl(&mount_lock); } hlist_add_head(&child->mnt_hash, list); - return 0; + return count_mounts(m->mnt_ns, child); } /* --- linux-4.8.0.orig/fs/pnode.h +++ linux-4.8.0/fs/pnode.h @@ -52,4 +52,5 @@ struct mount *copy_tree(struct mount *, struct dentry *, int); bool is_path_reachable(struct mount *, struct dentry *, const struct path *root); +int count_mounts(struct mnt_namespace *ns, struct mount *mnt); #endif /* _LINUX_PNODE_H */ --- linux-4.8.0.orig/fs/posix_acl.c +++ linux-4.8.0/fs/posix_acl.c @@ -626,61 +626,102 @@ } EXPORT_SYMBOL_GPL(posix_acl_create); +/** + * posix_acl_update_mode - update mode in set_acl + * + * Update the file mode when setting an ACL: compute the new file permission + * bits based on the ACL. In addition, if the ACL is equivalent to the new + * file mode, set *acl to NULL to indicate that no ACL should be set. + * + * As with chmod, clear the setgit bit if the caller is not in the owning group + * or capable of CAP_FSETID (see inode_change_ok). + * + * Called from set_acl inode operations. + */ +int posix_acl_update_mode(struct inode *inode, umode_t *mode_p, + struct posix_acl **acl) +{ + umode_t mode = inode->i_mode; + int error; + + error = posix_acl_equiv_mode(*acl, &mode); + if (error < 0) + return error; + if (error == 0) + *acl = NULL; + if (!in_group_p(inode->i_gid) && + !capable_wrt_inode_uidgid(inode, CAP_FSETID)) + mode &= ~S_ISGID; + *mode_p = mode; + return 0; +} +EXPORT_SYMBOL(posix_acl_update_mode); + /* * Fix up the uids and gids in posix acl extended attributes in place. */ -static void posix_acl_fix_xattr_userns( +int posix_acl_fix_xattr_userns( struct user_namespace *to, struct user_namespace *from, void *value, size_t size) { posix_acl_xattr_header *header = (posix_acl_xattr_header *)value; posix_acl_xattr_entry *entry = (posix_acl_xattr_entry *)(header+1), *end; int count; - kuid_t uid; - kgid_t gid; + kuid_t kuid; + kgid_t kgid; + uid_t uid; + gid_t gid; + int ret = 0; + if (to == from) + return 0; if (!value) - return; + return 0; if (size < sizeof(posix_acl_xattr_header)) - return; + return -EINVAL; if (header->a_version != cpu_to_le32(POSIX_ACL_XATTR_VERSION)) - return; + return -EINVAL; count = posix_acl_xattr_count(size); if (count < 0) - return; + return -EINVAL; if (count == 0) - return; + return 0; for (end = entry + count; entry != end; entry++) { switch(le16_to_cpu(entry->e_tag)) { case ACL_USER: - uid = make_kuid(from, le32_to_cpu(entry->e_id)); - entry->e_id = cpu_to_le32(from_kuid(to, uid)); + kuid = make_kuid(from, le32_to_cpu(entry->e_id)); + uid = from_kuid(to, kuid); + entry->e_id = cpu_to_le32(uid); + if (uid == (uid_t)-1) + ret = -EOVERFLOW; break; case ACL_GROUP: - gid = make_kgid(from, le32_to_cpu(entry->e_id)); - entry->e_id = cpu_to_le32(from_kgid(to, gid)); + kgid = make_kgid(from, le32_to_cpu(entry->e_id)); + gid = from_kgid(to, kgid); + entry->e_id = cpu_to_le32(gid); + if (gid == (gid_t)-1) + ret = -EOVERFLOW; break; default: break; } } + + return ret; } +EXPORT_SYMBOL(posix_acl_fix_xattr_userns); void posix_acl_fix_xattr_from_user(void *value, size_t size) { struct user_namespace *user_ns = current_user_ns(); - if (user_ns == &init_user_ns) - return; posix_acl_fix_xattr_userns(&init_user_ns, user_ns, value, size); } void posix_acl_fix_xattr_to_user(void *value, size_t size) { struct user_namespace *user_ns = current_user_ns(); - if (user_ns == &init_user_ns) - return; posix_acl_fix_xattr_userns(user_ns, &init_user_ns, value, size); } --- linux-4.8.0.orig/fs/proc/Makefile +++ linux-4.8.0/fs/proc/Makefile @@ -31,3 +31,4 @@ proc-$(CONFIG_PROC_VMCORE) += vmcore.o proc-$(CONFIG_PRINTK) += kmsg.o proc-$(CONFIG_PROC_PAGE_MONITOR) += page.o +proc-y += version_signature.o --- linux-4.8.0.orig/fs/proc/base.c +++ linux-4.8.0/fs/proc/base.c @@ -705,10 +705,17 @@ { int error; struct inode *inode = d_inode(dentry); + struct user_namespace *s_user_ns; if (attr->ia_valid & ATTR_MODE) return -EPERM; + /* Don't let anyone mess with weird proc files */ + s_user_ns = inode->i_sb->s_user_ns; + if (!kuid_has_mapping(s_user_ns, inode->i_uid) || + !kgid_has_mapping(s_user_ns, inode->i_gid)) + return -EPERM; + error = inode_change_ok(inode, attr); if (error) return error; @@ -1938,7 +1945,7 @@ down_read(&mm->mmap_sem); vma = find_exact_vma(mm, vm_start, vm_end); if (vma && vma->vm_file) { - *path = vma->vm_file->f_path; + *path = vma_pr_or_file(vma)->f_path; path_get(path); rc = 0; } --- linux-4.8.0.orig/fs/proc/generic.c +++ linux-4.8.0/fs/proc/generic.c @@ -103,8 +103,15 @@ { struct inode *inode = d_inode(dentry); struct proc_dir_entry *de = PDE(inode); + struct user_namespace *s_user_ns; int error; + /* Don't let anyone mess with weird proc files */ + s_user_ns = inode->i_sb->s_user_ns; + if (!kuid_has_mapping(s_user_ns, inode->i_uid) || + !kgid_has_mapping(s_user_ns, inode->i_gid)) + return -EPERM; + error = inode_change_ok(inode, iattr); if (error) return error; @@ -477,6 +484,7 @@ } return ent; } +EXPORT_SYMBOL(proc_create_mount_point); struct proc_dir_entry *proc_create_data(const char *name, umode_t mode, struct proc_dir_entry *parent, --- linux-4.8.0.orig/fs/proc/internal.h +++ linux-4.8.0/fs/proc/internal.h @@ -195,7 +195,6 @@ { return S_ISDIR(pde->mode) && !pde->proc_iops; } -struct proc_dir_entry *proc_create_mount_point(const char *name); /* * inode.c --- linux-4.8.0.orig/fs/proc/nommu.c +++ linux-4.8.0/fs/proc/nommu.c @@ -45,7 +45,10 @@ file = region->vm_file; if (file) { - struct inode *inode = file_inode(region->vm_file); + struct inode *inode; + + file = vmr_pr_or_file(region); + inode = file_inode(file); dev = inode->i_sb->s_dev; ino = inode->i_ino; } --- linux-4.8.0.orig/fs/proc/proc_sysctl.c +++ linux-4.8.0/fs/proc/proc_sysctl.c @@ -749,11 +749,18 @@ static int proc_sys_setattr(struct dentry *dentry, struct iattr *attr) { struct inode *inode = d_inode(dentry); + struct user_namespace *s_user_ns; int error; if (attr->ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID)) return -EPERM; + /* Don't let anyone mess with weird proc files */ + s_user_ns = inode->i_sb->s_user_ns; + if (!kuid_has_mapping(s_user_ns, inode->i_uid) || + !kgid_has_mapping(s_user_ns, inode->i_gid)) + return -EPERM; + error = inode_change_ok(inode, attr); if (error) return error; --- linux-4.8.0.orig/fs/proc/task_mmu.c +++ linux-4.8.0/fs/proc/task_mmu.c @@ -298,7 +298,10 @@ const char *name = NULL; if (file) { - struct inode *inode = file_inode(vma->vm_file); + struct inode *inode; + + file = vma_pr_or_file(vma); + inode = file_inode(file); dev = inode->i_sb->s_dev; ino = inode->i_ino; pgoff = ((loff_t)vma->vm_pgoff) << PAGE_SHIFT; @@ -306,11 +309,7 @@ /* We don't show the stack guard page in /proc/maps */ start = vma->vm_start; - if (stack_guard_page_start(vma, start)) - start += PAGE_SIZE; end = vma->vm_end; - if (stack_guard_page_end(vma, end)) - end -= PAGE_SIZE; seq_setwidth(m, 25 + sizeof(void *) * 6 - 1); seq_printf(m, "%08lx-%08lx %c%c%c%c %08llx %02x:%02x %lu ", @@ -1634,7 +1633,7 @@ struct proc_maps_private *proc_priv = &numa_priv->proc_maps; struct vm_area_struct *vma = v; struct numa_maps *md = &numa_priv->md; - struct file *file = vma->vm_file; + struct file *file = vma_pr_or_file(vma); struct mm_struct *mm = vma->vm_mm; struct mm_walk walk = { .hugetlb_entry = gather_hugetlb_stats, --- linux-4.8.0.orig/fs/proc/task_nommu.c +++ linux-4.8.0/fs/proc/task_nommu.c @@ -163,7 +163,10 @@ file = vma->vm_file; if (file) { - struct inode *inode = file_inode(vma->vm_file); + struct inode *inode; + + file = vma_pr_or_file(vma); + inode = file_inode(file); dev = inode->i_sb->s_dev; ino = inode->i_ino; pgoff = (loff_t)vma->vm_pgoff << PAGE_SHIFT; --- linux-4.8.0.orig/fs/proc/version_signature.c +++ linux-4.8.0/fs/proc/version_signature.c @@ -0,0 +1,32 @@ +#include +#include +#include +#include +#include +#include +#include + +static int version_signature_proc_show(struct seq_file *m, void *v) +{ + seq_printf(m, "%s\n", CONFIG_VERSION_SIGNATURE); + return 0; +} + +static int version_signature_proc_open(struct inode *inode, struct file *file) +{ + return single_open(file, version_signature_proc_show, NULL); +} + +static const struct file_operations version_signature_proc_fops = { + .open = version_signature_proc_open, + .read = seq_read, + .llseek = seq_lseek, + .release = single_release, +}; + +static int __init proc_version_signature_init(void) +{ + proc_create("version_signature", 0, NULL, &version_signature_proc_fops); + return 0; +} +module_init(proc_version_signature_init); --- linux-4.8.0.orig/fs/pstore/ram.c +++ linux-4.8.0/fs/pstore/ram.c @@ -377,13 +377,14 @@ { int i; - cxt->max_dump_cnt = 0; if (!cxt->przs) return; - for (i = 0; !IS_ERR_OR_NULL(cxt->przs[i]); i++) + for (i = 0; i < cxt->max_dump_cnt; i++) persistent_ram_free(cxt->przs[i]); + kfree(cxt->przs); + cxt->max_dump_cnt = 0; } static int ramoops_init_przs(struct device *dev, struct ramoops_context *cxt, @@ -408,7 +409,7 @@ GFP_KERNEL); if (!cxt->przs) { dev_err(dev, "failed to initialize a prz array for dumps\n"); - goto fail_prz; + goto fail_mem; } for (i = 0; i < cxt->max_dump_cnt; i++) { @@ -419,6 +420,11 @@ err = PTR_ERR(cxt->przs[i]); dev_err(dev, "failed to request mem region (0x%zx@0x%llx): %d\n", cxt->record_size, (unsigned long long)*paddr, err); + + while (i > 0) { + i--; + persistent_ram_free(cxt->przs[i]); + } goto fail_prz; } *paddr += cxt->record_size; @@ -426,7 +432,9 @@ return 0; fail_prz: - ramoops_free_przs(cxt); + kfree(cxt->przs); +fail_mem: + cxt->max_dump_cnt = 0; return err; } @@ -659,7 +667,6 @@ struct ramoops_context *cxt = &oops_cxt; pstore_unregister(&cxt->pstore); - cxt->max_dump_cnt = 0; kfree(cxt->pstore.buf); cxt->pstore.bufsize = 0; --- linux-4.8.0.orig/fs/pstore/ram_core.c +++ linux-4.8.0/fs/pstore/ram_core.c @@ -47,43 +47,10 @@ return atomic_read(&prz->buffer->start); } -/* increase and wrap the start pointer, returning the old value */ -static size_t buffer_start_add_atomic(struct persistent_ram_zone *prz, size_t a) -{ - int old; - int new; - - do { - old = atomic_read(&prz->buffer->start); - new = old + a; - while (unlikely(new >= prz->buffer_size)) - new -= prz->buffer_size; - } while (atomic_cmpxchg(&prz->buffer->start, old, new) != old); - - return old; -} - -/* increase the size counter until it hits the max size */ -static void buffer_size_add_atomic(struct persistent_ram_zone *prz, size_t a) -{ - size_t old; - size_t new; - - if (atomic_read(&prz->buffer->size) == prz->buffer_size) - return; - - do { - old = atomic_read(&prz->buffer->size); - new = old + a; - if (new > prz->buffer_size) - new = prz->buffer_size; - } while (atomic_cmpxchg(&prz->buffer->size, old, new) != old); -} - static DEFINE_RAW_SPINLOCK(buffer_lock); /* increase and wrap the start pointer, returning the old value */ -static size_t buffer_start_add_locked(struct persistent_ram_zone *prz, size_t a) +static size_t buffer_start_add(struct persistent_ram_zone *prz, size_t a) { int old; int new; @@ -103,7 +70,7 @@ } /* increase the size counter until it hits the max size */ -static void buffer_size_add_locked(struct persistent_ram_zone *prz, size_t a) +static void buffer_size_add(struct persistent_ram_zone *prz, size_t a) { size_t old; size_t new; @@ -124,9 +91,6 @@ raw_spin_unlock_irqrestore(&buffer_lock, flags); } -static size_t (*buffer_start_add)(struct persistent_ram_zone *, size_t) = buffer_start_add_atomic; -static void (*buffer_size_add)(struct persistent_ram_zone *, size_t) = buffer_size_add_atomic; - static void notrace persistent_ram_encode_rs8(struct persistent_ram_zone *prz, uint8_t *data, size_t len, uint8_t *ecc) { @@ -299,7 +263,7 @@ const void *s, unsigned int start, unsigned int count) { struct persistent_ram_buffer *buffer = prz->buffer; - memcpy(buffer->data + start, s, count); + memcpy_toio(buffer->data + start, s, count); persistent_ram_update_ecc(prz, start, count); } @@ -322,8 +286,8 @@ } prz->old_log_size = size; - memcpy(prz->old_log, &buffer->data[start], size - start); - memcpy(prz->old_log + size - start, &buffer->data[0], start); + memcpy_fromio(prz->old_log, &buffer->data[start], size - start); + memcpy_fromio(prz->old_log + size - start, &buffer->data[0], start); } int notrace persistent_ram_write(struct persistent_ram_zone *prz, @@ -426,9 +390,6 @@ return NULL; } - buffer_start_add = buffer_start_add_locked; - buffer_size_add = buffer_size_add_locked; - if (memtype) va = ioremap(start, size); else --- linux-4.8.0.orig/fs/quota/quota.c +++ linux-4.8.0/fs/quota/quota.c @@ -799,7 +799,7 @@ if (IS_ERR(tmp)) return ERR_CAST(tmp); - bdev = lookup_bdev(tmp->name); + bdev = lookup_bdev(tmp->name, 0); putname(tmp); if (IS_ERR(bdev)) return ERR_CAST(bdev); --- linux-4.8.0.orig/fs/read_write.c +++ linux-4.8.0/fs/read_write.c @@ -515,6 +515,30 @@ } EXPORT_SYMBOL(__vfs_write); +vfs_readf_t vfs_readf(struct file *file) +{ + const struct file_operations *fop = file->f_op; + + if (fop->read) + return fop->read; + if (fop->read_iter) + return new_sync_read; + return ERR_PTR(-ENOSYS); +} +EXPORT_SYMBOL_GPL(vfs_readf); + +vfs_writef_t vfs_writef(struct file *file) +{ + const struct file_operations *fop = file->f_op; + + if (fop->write) + return fop->write; + if (fop->write_iter) + return new_sync_write; + return ERR_PTR(-ENOSYS); +} +EXPORT_SYMBOL_GPL(vfs_writef); + ssize_t __kernel_write(struct file *file, const char *buf, size_t count, loff_t *pos) { mm_segment_t old_fs; --- linux-4.8.0.orig/fs/reiserfs/super.c +++ linux-4.8.0/fs/reiserfs/super.c @@ -190,7 +190,15 @@ static int reiserfs_quota_on_mount(struct super_block *, int); #endif -/* look for uncompleted unlinks and truncates and complete them */ +/* + * Look for uncompleted unlinks and truncates and complete them + * + * Called with superblock write locked. If quotas are enabled, we have to + * release/retake lest we call dquot_quota_on_mount(), proceed to + * schedule_on_each_cpu() in invalidate_bdev() and deadlock waiting for the per + * cpu worklets to complete flush_async_commits() that in turn wait for the + * superblock write lock. + */ static int finish_unfinished(struct super_block *s) { INITIALIZE_PATH(path); @@ -237,7 +245,9 @@ quota_enabled[i] = 0; continue; } + reiserfs_write_unlock(s); ret = reiserfs_quota_on_mount(s, i); + reiserfs_write_lock(s); if (ret < 0) reiserfs_warning(s, "reiserfs-2500", "cannot turn on journaled " --- linux-4.8.0.orig/fs/reiserfs/xattr_acl.c +++ linux-4.8.0/fs/reiserfs/xattr_acl.c @@ -242,13 +242,9 @@ case ACL_TYPE_ACCESS: name = XATTR_NAME_POSIX_ACL_ACCESS; if (acl) { - error = posix_acl_equiv_mode(acl, &inode->i_mode); - if (error < 0) + error = posix_acl_update_mode(inode, &inode->i_mode, &acl); + if (error) return error; - else { - if (error == 0) - acl = NULL; - } } break; case ACL_TYPE_DEFAULT: --- linux-4.8.0.orig/fs/splice.c +++ linux-4.8.0/fs/splice.c @@ -1111,8 +1111,8 @@ /* * Attempt to initiate a splice from pipe to file. */ -static long do_splice_from(struct pipe_inode_info *pipe, struct file *out, - loff_t *ppos, size_t len, unsigned int flags) +long do_splice_from(struct pipe_inode_info *pipe, struct file *out, + loff_t *ppos, size_t len, unsigned int flags) { ssize_t (*splice_write)(struct pipe_inode_info *, struct file *, loff_t *, size_t, unsigned int); @@ -1124,13 +1124,14 @@ return splice_write(pipe, out, ppos, len, flags); } +EXPORT_SYMBOL_GPL(do_splice_from); /* * Attempt to initiate a splice from a file to a pipe. */ -static long do_splice_to(struct file *in, loff_t *ppos, - struct pipe_inode_info *pipe, size_t len, - unsigned int flags) +long do_splice_to(struct file *in, loff_t *ppos, + struct pipe_inode_info *pipe, size_t len, + unsigned int flags) { ssize_t (*splice_read)(struct file *, loff_t *, struct pipe_inode_info *, size_t, unsigned int); @@ -1153,6 +1154,7 @@ return splice_read(in, ppos, pipe, len, flags); } +EXPORT_SYMBOL_GPL(do_splice_to); /** * splice_direct_to_actor - splices data directly between two non-pipes --- linux-4.8.0.orig/fs/super.c +++ linux-4.8.0/fs/super.c @@ -470,7 +470,7 @@ struct super_block *old; int err; - if (!(flags & MS_KERNMOUNT) && + if (!(flags & (MS_KERNMOUNT|MS_SUBMOUNT)) && !(type->fs_flags & FS_USERNS_MOUNT) && !capable(CAP_SYS_ADMIN)) return ERR_PTR(-EPERM); @@ -500,7 +500,7 @@ } if (!s) { spin_unlock(&sb_lock); - s = alloc_super(type, flags, user_ns); + s = alloc_super(type, (flags & ~MS_SUBMOUNT), user_ns); if (!s) return ERR_PTR(-ENOMEM); goto retry; @@ -541,8 +541,15 @@ { struct user_namespace *user_ns = current_user_ns(); + /* We don't yet pass the user namespace of the parent + * mount through to here so always use &init_user_ns + * until that changes. + */ + if (flags & MS_SUBMOUNT) + user_ns = &init_user_ns; + /* Ensure the requestor has permissions over the target filesystem */ - if (!(flags & MS_KERNMOUNT) && !ns_capable(user_ns, CAP_SYS_ADMIN)) + if (!(flags & (MS_KERNMOUNT|MS_SUBMOUNT)) && !ns_capable(user_ns, CAP_SYS_ADMIN)) return ERR_PTR(-EPERM); return sget_userns(type, test, set, flags, user_ns, data); @@ -1033,6 +1040,23 @@ if (IS_ERR(bdev)) return ERR_CAST(bdev); + if (current_user_ns() != &init_user_ns) { + /* + * For userns mounts, disallow mounting if bdev is open for + * writing + */ + if (!atomic_dec_unless_positive(&bdev->bd_inode->i_writecount)) { + error = -EBUSY; + goto error_bdev; + } + if (bdev->bd_contains != bdev && + !atomic_dec_unless_positive(&bdev->bd_contains->bd_inode->i_writecount)) { + atomic_inc(&bdev->bd_inode->i_writecount); + error = -EBUSY; + goto error_bdev; + } + } + /* * once the super is inserted into the list by sget, s_umount * will protect the lockfs code from trying to start a snapshot @@ -1042,7 +1066,7 @@ if (bdev->bd_fsfreeze_count > 0) { mutex_unlock(&bdev->bd_fsfreeze_mutex); error = -EBUSY; - goto error_bdev; + goto error_inc; } s = sget(fs_type, test_bdev_super, set_bdev_super, flags | MS_NOSEC, bdev); @@ -1054,7 +1078,7 @@ if ((flags ^ s->s_flags) & MS_RDONLY) { deactivate_locked_super(s); error = -EBUSY; - goto error_bdev; + goto error_inc; } /* @@ -1085,6 +1109,12 @@ error_s: error = PTR_ERR(s); +error_inc: + if (current_user_ns() != &init_user_ns) { + atomic_inc(&bdev->bd_inode->i_writecount); + if (bdev->bd_contains != bdev) + atomic_inc(&bdev->bd_contains->bd_inode->i_writecount); + } error_bdev: blkdev_put(bdev, mode); error: @@ -1101,6 +1131,11 @@ generic_shutdown_super(sb); sync_blockdev(bdev); WARN_ON_ONCE(!(mode & FMODE_EXCL)); + if (sb->s_user_ns != &init_user_ns) { + atomic_inc(&bdev->bd_inode->i_writecount); + if (bdev->bd_contains != bdev) + atomic_inc(&bdev->bd_contains->bd_inode->i_writecount); + } blkdev_put(bdev, mode | FMODE_EXCL); } @@ -1379,8 +1414,8 @@ } } /* - * This is just for debugging purposes so that fs can warn if it - * sees write activity when frozen is set to SB_FREEZE_COMPLETE. + * For debugging purposes so that fs can warn if it sees write activity + * when frozen is set to SB_FREEZE_COMPLETE, and for thaw_super(). */ sb->s_writers.frozen = SB_FREEZE_COMPLETE; up_write(&sb->s_umount); @@ -1399,7 +1434,7 @@ int error; down_write(&sb->s_umount); - if (sb->s_writers.frozen == SB_UNFROZEN) { + if (sb->s_writers.frozen != SB_FREEZE_COMPLETE) { up_write(&sb->s_umount); return -EINVAL; } --- linux-4.8.0.orig/fs/ubifs/dir.c +++ linux-4.8.0/fs/ubifs/dir.c @@ -350,7 +350,7 @@ */ static int ubifs_readdir(struct file *file, struct dir_context *ctx) { - int err; + int err = 0; struct qstr nm; union ubifs_key key; struct ubifs_dent_node *dent; @@ -452,14 +452,20 @@ kfree(file->private_data); file->private_data = NULL; - if (err != -ENOENT) { + if (err != -ENOENT) ubifs_err(c, "cannot find next direntry, error %d", err); - return err; - } + else + /* + * -ENOENT is a non-fatal error in this context, the TNC uses + * it to indicate that the cursor moved past the current directory + * and readdir() has to stop. + */ + err = 0; + /* 2 is a special value indicating that there are no more direntries */ ctx->pos = 2; - return 0; + return err; } /* Free saved readdir() state when the directory is closed */ --- linux-4.8.0.orig/fs/ubifs/xattr.c +++ linux-4.8.0/fs/ubifs/xattr.c @@ -172,6 +172,7 @@ host_ui->xattr_cnt -= 1; host_ui->xattr_size -= CALC_DENT_SIZE(nm->len); host_ui->xattr_size -= CALC_XATTR_BYTES(size); + host_ui->xattr_names -= nm->len; mutex_unlock(&host_ui->ui_mutex); out_free: make_bad_inode(inode); @@ -476,6 +477,7 @@ host_ui->xattr_cnt += 1; host_ui->xattr_size += CALC_DENT_SIZE(nm->len); host_ui->xattr_size += CALC_XATTR_BYTES(ui->data_len); + host_ui->xattr_names += nm->len; mutex_unlock(&host_ui->ui_mutex); ubifs_release_budget(c, &req); make_bad_inode(inode); --- linux-4.8.0.orig/fs/utimes.c +++ linux-4.8.0/fs/utimes.c @@ -87,21 +87,7 @@ */ newattrs.ia_valid |= ATTR_TIMES_SET; } else { - /* - * If times is NULL (or both times are UTIME_NOW), - * then we need to check permissions, because - * inode_change_ok() won't do it. - */ - error = -EPERM; - if (IS_IMMUTABLE(inode)) - goto mnt_drop_write_and_out; - - error = -EACCES; - if (!inode_owner_or_capable(inode)) { - error = inode_permission(inode, MAY_WRITE); - if (error) - goto mnt_drop_write_and_out; - } + newattrs.ia_valid |= ATTR_TOUCH; } retry_deleg: inode_lock(inode); @@ -113,7 +99,6 @@ goto retry_deleg; } -mnt_drop_write_and_out: mnt_drop_write(path->mnt); out: return error; --- linux-4.8.0.orig/fs/xattr.c +++ linux-4.8.0/fs/xattr.c @@ -123,6 +123,7 @@ return error; } +EXPORT_SYMBOL_GPL(__vfs_setxattr_noperm); int @@ -214,6 +215,7 @@ *xattr_value = value; return error; } +EXPORT_SYMBOL_GPL(vfs_getxattr_alloc); ssize_t vfs_getxattr(struct dentry *dentry, const char *name, void *value, size_t size) @@ -271,15 +273,42 @@ } EXPORT_SYMBOL_GPL(vfs_listxattr); +/** + * __vfs_removexattr_noperm - perform removexattr operation without + * performing permission checks. + * + * @dentry - object to perform setxattr on + * @name - xattr name to set + * + * returns the result of the internal setxattr or setsecurity operations. + * + * This function requires the caller to lock the inode's i_mutex before it + * is executed. It also assumes that the caller will make the appropriate + * permission checks. + */ +int __vfs_removexattr_noperm(struct dentry *dentry, const char *name) +{ + struct inode *inode = dentry->d_inode; + int error = -EOPNOTSUPP; + + if (inode->i_op->removexattr) { + error = inode->i_op->removexattr(dentry, name); + if (!error) { + fsnotify_xattr(dentry); + evm_inode_post_removexattr(dentry, name); + } + } + + return error; +} +EXPORT_SYMBOL_GPL(__vfs_removexattr_noperm); + int vfs_removexattr(struct dentry *dentry, const char *name) { struct inode *inode = dentry->d_inode; int error; - if (!inode->i_op->removexattr) - return -EOPNOTSUPP; - error = xattr_permission(inode, name, MAY_WRITE); if (error) return error; @@ -289,12 +318,7 @@ if (error) goto out; - error = inode->i_op->removexattr(dentry, name); - - if (!error) { - fsnotify_xattr(dentry); - evm_inode_post_removexattr(dentry, name); - } + error = __vfs_removexattr_noperm(dentry, name); out: inode_unlock(inode); --- linux-4.8.0.orig/fs/xfs/libxfs/xfs_dquot_buf.c +++ linux-4.8.0/fs/xfs/libxfs/xfs_dquot_buf.c @@ -191,8 +191,7 @@ if (mp->m_quotainfo) ndquots = mp->m_quotainfo->qi_dqperchunk; else - ndquots = xfs_calc_dquots_per_chunk( - XFS_BB_TO_FSB(mp, bp->b_length)); + ndquots = xfs_calc_dquots_per_chunk(bp->b_length); for (i = 0; i < ndquots; i++, d++) { if (!xfs_verify_cksum((char *)d, sizeof(struct xfs_dqblk), --- linux-4.8.0.orig/fs/xfs/xfs_acl.c +++ linux-4.8.0/fs/xfs/xfs_acl.c @@ -257,16 +257,11 @@ return error; if (type == ACL_TYPE_ACCESS) { - umode_t mode = inode->i_mode; - error = posix_acl_equiv_mode(acl, &mode); - - if (error <= 0) { - acl = NULL; - - if (error < 0) - return error; - } + umode_t mode; + error = posix_acl_update_mode(inode, &mode, &acl); + if (error) + return error; error = xfs_set_mode(inode, mode); if (error) return error; --- linux-4.8.0.orig/fs/xfs/xfs_log_recover.c +++ linux-4.8.0/fs/xfs/xfs_log_recover.c @@ -4506,6 +4506,7 @@ agi->agi_unlinked[bucket] = cpu_to_be32(NULLAGINO); offset = offsetof(xfs_agi_t, agi_unlinked) + (sizeof(xfs_agino_t) * bucket); + xfs_trans_buf_set_type(tp, agibp, XFS_BLFT_AGI_BUF); xfs_trans_log_buf(tp, agibp, offset, (offset + sizeof(xfs_agino_t) - 1)); --- linux-4.8.0.orig/fs/xfs/xfs_xattr.c +++ linux-4.8.0/fs/xfs/xfs_xattr.c @@ -147,6 +147,7 @@ arraytop = context->count + prefix_len + namelen + 1; if (arraytop > context->firstu) { context->count = -1; /* insufficient space */ + context->seen_enough = 1; return 0; } offset = (char *)context->alist + context->count; --- linux-4.8.0.orig/include/asm-generic/tlb.h +++ linux-4.8.0/include/asm-generic/tlb.h @@ -125,10 +125,11 @@ int page_size); static inline void __tlb_adjust_range(struct mmu_gather *tlb, - unsigned long address) + unsigned long address, + unsigned int range_size) { tlb->start = min(tlb->start, address); - tlb->end = max(tlb->end, address + PAGE_SIZE); + tlb->end = max(tlb->end, address + range_size); /* * Track the last address with which we adjusted the range. This * will be used later to adjust again after a mmu_flush due to @@ -153,7 +154,7 @@ if (__tlb_remove_page_size(tlb, page, page_size)) { tlb_flush_mmu(tlb); tlb->page_size = page_size; - __tlb_adjust_range(tlb, tlb->addr); + __tlb_adjust_range(tlb, tlb->addr, page_size); __tlb_remove_page_size(tlb, page, page_size); } } @@ -177,10 +178,26 @@ /* active->nr should be zero when we call this */ VM_BUG_ON_PAGE(tlb->active->nr, page); tlb->page_size = PAGE_SIZE; - __tlb_adjust_range(tlb, tlb->addr); + __tlb_adjust_range(tlb, tlb->addr, PAGE_SIZE); return __tlb_remove_page(tlb, page); } +#ifndef tlb_remove_check_page_size_change +#define tlb_remove_check_page_size_change tlb_remove_check_page_size_change +static inline void tlb_remove_check_page_size_change(struct mmu_gather *tlb, + unsigned int page_size) +{ + /* + * We don't care about page size change, just update + * mmu_gather page size here so that debug checks + * doesn't throw false warning. + */ +#ifdef CONFIG_DEBUG_VM + tlb->page_size = page_size; +#endif +} +#endif + /* * In the case of tlb vma handling, we can optimise these away in the * case where we're doing a full MM flush. When we're doing a munmap, @@ -215,10 +232,16 @@ */ #define tlb_remove_tlb_entry(tlb, ptep, address) \ do { \ - __tlb_adjust_range(tlb, address); \ + __tlb_adjust_range(tlb, address, PAGE_SIZE); \ __tlb_remove_tlb_entry(tlb, ptep, address); \ } while (0) +#define tlb_remove_huge_tlb_entry(h, tlb, ptep, address) \ + do { \ + __tlb_adjust_range(tlb, address, huge_page_size(h)); \ + __tlb_remove_tlb_entry(tlb, ptep, address); \ + } while (0) + /** * tlb_remove_pmd_tlb_entry - remember a pmd mapping for later tlb invalidation * This is a nop so far, because only x86 needs it. @@ -227,29 +250,47 @@ #define __tlb_remove_pmd_tlb_entry(tlb, pmdp, address) do {} while (0) #endif -#define tlb_remove_pmd_tlb_entry(tlb, pmdp, address) \ - do { \ - __tlb_adjust_range(tlb, address); \ - __tlb_remove_pmd_tlb_entry(tlb, pmdp, address); \ +#define tlb_remove_pmd_tlb_entry(tlb, pmdp, address) \ + do { \ + __tlb_adjust_range(tlb, address, HPAGE_PMD_SIZE); \ + __tlb_remove_pmd_tlb_entry(tlb, pmdp, address); \ } while (0) +/* + * For things like page tables caches (ie caching addresses "inside" the + * page tables, like x86 does), for legacy reasons, flushing an + * individual page had better flush the page table caches behind it. This + * is definitely how x86 works, for example. And if you have an + * architected non-legacy page table cache (which I'm not aware of + * anybody actually doing), you're going to have some architecturally + * explicit flushing for that, likely *separate* from a regular TLB entry + * flush, and thus you'd need more than just some range expansion.. + * + * So if we ever find an architecture + * that would want something that odd, I think it is up to that + * architecture to do its own odd thing, not cause pain for others + * http://lkml.kernel.org/r/CA+55aFzBggoXtNXQeng5d_mRoDnaMBE5Y+URs+PHR67nUpMtaw@mail.gmail.com + * + * For now w.r.t page table cache, mark the range_size as PAGE_SIZE + */ + #define pte_free_tlb(tlb, ptep, address) \ do { \ - __tlb_adjust_range(tlb, address); \ + __tlb_adjust_range(tlb, address, PAGE_SIZE); \ __pte_free_tlb(tlb, ptep, address); \ } while (0) #ifndef __ARCH_HAS_4LEVEL_HACK #define pud_free_tlb(tlb, pudp, address) \ do { \ - __tlb_adjust_range(tlb, address); \ + __tlb_adjust_range(tlb, address, PAGE_SIZE); \ __pud_free_tlb(tlb, pudp, address); \ } while (0) #endif #define pmd_free_tlb(tlb, pmdp, address) \ do { \ - __tlb_adjust_range(tlb, address); \ + __tlb_adjust_range(tlb, address, PAGE_SIZE); \ __pmd_free_tlb(tlb, pmdp, address); \ } while (0) --- linux-4.8.0.orig/include/crypto/ghash.h +++ linux-4.8.0/include/crypto/ghash.h @@ -0,0 +1,23 @@ +/* + * Common values for GHASH algorithms + */ + +#ifndef __CRYPTO_GHASH_H__ +#define __CRYPTO_GHASH_H__ + +#include +#include + +#define GHASH_BLOCK_SIZE 16 +#define GHASH_DIGEST_SIZE 16 + +struct ghash_ctx { + struct gf128mul_4k *gf128; +}; + +struct ghash_desc_ctx { + u8 buffer[GHASH_BLOCK_SIZE]; + u32 bytes; +}; + +#endif --- linux-4.8.0.orig/include/drm/drmP.h +++ linux-4.8.0/include/drm/drmP.h @@ -938,7 +938,8 @@ #endif extern struct dma_buf *drm_gem_prime_export(struct drm_device *dev, - struct drm_gem_object *obj, int flags); + struct drm_gem_object *obj, + int flags); extern int drm_gem_prime_handle_to_fd(struct drm_device *dev, struct drm_file *file_priv, uint32_t handle, uint32_t flags, int *prime_fd); --- linux-4.8.0.orig/include/drm/drm_dp_dual_mode_helper.h +++ linux-4.8.0/include/drm/drm_dp_dual_mode_helper.h @@ -40,6 +40,8 @@ #define DP_DUAL_MODE_REV_TYPE2 0x00 #define DP_DUAL_MODE_TYPE_MASK 0xf0 #define DP_DUAL_MODE_TYPE_TYPE2 0xa0 +/* This field is marked reserved in dual mode spec, used in LSPCON */ +#define DP_DUAL_MODE_TYPE_HAS_DPCD 0x08 #define DP_DUAL_MODE_IEEE_OUI 0x11 /* 11-13*/ #define DP_DUAL_IEEE_OUI_LEN 3 #define DP_DUAL_DEVICE_ID 0x14 /* 14-19 */ @@ -55,6 +57,11 @@ #define DP_DUAL_MODE_CEC_ENABLE 0x01 #define DP_DUAL_MODE_I2C_SPEED_CTRL 0x22 +/* LSPCON specific registers, defined by MCA */ +#define DP_DUAL_MODE_LSPCON_MODE_CHANGE 0x40 +#define DP_DUAL_MODE_LSPCON_CURRENT_MODE 0x41 +#define DP_DUAL_MODE_LSPCON_MODE_PCON 0x1 + struct i2c_adapter; ssize_t drm_dp_dual_mode_read(struct i2c_adapter *adapter, @@ -63,6 +70,19 @@ u8 offset, const void *buffer, size_t size); /** +* enum drm_lspcon_mode +* @lspcon_mode_ls: Level shifter mode of LSPCON +* which drives DP++ to HDMI 1.4 conversion. +* @lspcon_mode_pcon: Protocol converter mode of LSPCON +* which drives DP++ to HDMI 2.0 active conversion. +*/ +enum drm_lspcon_mode { + DRM_LSPCON_MODE_INVALID, + DRM_LSPCON_MODE_LS, + DRM_LSPCON_MODE_PCON, +}; + +/** * enum drm_dp_dual_mode_type - Type of the DP dual mode adaptor * @DRM_DP_DUAL_MODE_NONE: No DP dual mode adaptor * @DRM_DP_DUAL_MODE_UNKNOWN: Could be either none or type 1 DVI adaptor @@ -70,6 +90,7 @@ * @DRM_DP_DUAL_MODE_TYPE1_HDMI: Type 1 HDMI adaptor * @DRM_DP_DUAL_MODE_TYPE2_DVI: Type 2 DVI adaptor * @DRM_DP_DUAL_MODE_TYPE2_HDMI: Type 2 HDMI adaptor + * @DRM_DP_DUAL_MODE_TYPE2_LSPCON: Level shifter /protocol converter */ enum drm_dp_dual_mode_type { DRM_DP_DUAL_MODE_NONE, @@ -78,6 +99,7 @@ DRM_DP_DUAL_MODE_TYPE1_HDMI, DRM_DP_DUAL_MODE_TYPE2_DVI, DRM_DP_DUAL_MODE_TYPE2_HDMI, + DRM_DP_DUAL_MODE_LSPCON, }; enum drm_dp_dual_mode_type drm_dp_dual_mode_detect(struct i2c_adapter *adapter); @@ -89,4 +111,8 @@ struct i2c_adapter *adapter, bool enable); const char *drm_dp_get_dual_mode_type_name(enum drm_dp_dual_mode_type type); +int drm_lspcon_get_mode(struct i2c_adapter *adapter, + enum drm_lspcon_mode *current_mode); +int drm_lspcon_set_mode(struct i2c_adapter *adapter, + enum drm_lspcon_mode reqd_mode); #endif --- linux-4.8.0.orig/include/dt-bindings/clock/imx6qdl-clock.h +++ linux-4.8.0/include/dt-bindings/clock/imx6qdl-clock.h @@ -269,6 +269,8 @@ #define IMX6QDL_CLK_PRG0_APB 256 #define IMX6QDL_CLK_PRG1_APB 257 #define IMX6QDL_CLK_PRE_AXI 258 -#define IMX6QDL_CLK_END 259 +#define IMX6QDL_CLK_MLB_SEL 259 +#define IMX6QDL_CLK_MLB_PODF 260 +#define IMX6QDL_CLK_END 261 #endif /* __DT_BINDINGS_CLOCK_IMX6QDL_H */ --- linux-4.8.0.orig/include/keys/system_keyring.h +++ linux-4.8.0/include/keys/system_keyring.h @@ -32,6 +32,11 @@ #else #define restrict_link_by_builtin_and_secondary_trusted restrict_link_by_builtin_trusted #endif +extern struct key *get_system_keyring(void); + +#ifdef CONFIG_SYSTEM_BLACKLIST_KEYRING +extern struct key *system_blacklist_keyring; +#endif #ifdef CONFIG_IMA_BLACKLIST_KEYRING extern struct key *ima_blacklist_keyring; --- linux-4.8.0.orig/include/linux/acpi.h +++ linux-4.8.0/include/linux/acpi.h @@ -318,6 +318,7 @@ int acpi_pci_irq_enable (struct pci_dev *dev); void acpi_penalize_isa_irq(int irq, int active); bool acpi_isa_irq_available(int irq); +void acpi_penalize_sci_irq(int irq, int trigger, int polarity); void acpi_pci_irq_disable (struct pci_dev *dev); extern int ec_read(u8 addr, u8 *val); @@ -1074,4 +1075,10 @@ static inline void acpi_table_upgrade(void) { } #endif +#ifdef CONFIG_ACPI_SPCR_TABLE +int parse_spcr(bool earlycon); +#else +static inline int parse_spcr(bool earlycon) { return 0; } +#endif + #endif /*_LINUX_ACPI_H*/ --- linux-4.8.0.orig/include/linux/acpi_iort.h +++ linux-4.8.0/include/linux/acpi_iort.h @@ -0,0 +1,42 @@ +/* + * Copyright (C) 2016, Semihalf + * Author: Tomasz Nowicki + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU General Public License, + * version 2, as published by the Free Software Foundation. + * + * This program is distributed in the hope 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., 59 Temple + * Place - Suite 330, Boston, MA 02111-1307 USA. + */ + +#ifndef __ACPI_IORT_H__ +#define __ACPI_IORT_H__ + +#include +#include +#include + +int iort_register_domain_token(int trans_id, struct fwnode_handle *fw_node); +void iort_deregister_domain_token(int trans_id); +struct fwnode_handle *iort_find_domain_token(int trans_id); +#ifdef CONFIG_ACPI_IORT +void acpi_iort_init(void); +u32 iort_msi_map_rid(struct device *dev, u32 req_id); +struct irq_domain *iort_get_device_domain(struct device *dev, u32 req_id); +#else +static inline void acpi_iort_init(void) { } +static inline u32 iort_msi_map_rid(struct device *dev, u32 req_id) +{ return req_id; } +static inline struct irq_domain *iort_get_device_domain(struct device *dev, + u32 req_id) +{ return NULL; } +#endif + +#endif /* __ACPI_IORT_H__ */ --- linux-4.8.0.orig/include/linux/audit.h +++ linux-4.8.0/include/linux/audit.h @@ -315,9 +315,6 @@ static inline void audit_seccomp(unsigned long syscall, long signr, int code) { - if (!audit_enabled) - return; - /* Force a record to be reported if a signal was delivered. */ if (signr || unlikely(!audit_dummy_context())) __audit_seccomp(syscall, signr, code); --- linux-4.8.0.orig/include/linux/blkdev.h +++ linux-4.8.0/include/linux/blkdev.h @@ -1415,6 +1415,25 @@ return __bvec_gap_to_prev(q, bprv, offset); } +/* + * Check if the two bvecs from two bios can be merged to one segment. + * If yes, no need to check gap between the two bios since the 1st bio + * and the 1st bvec in the 2nd bio can be handled in one segment. + */ +static inline bool bios_segs_mergeable(struct request_queue *q, + struct bio *prev, struct bio_vec *prev_last_bv, + struct bio_vec *next_first_bv) +{ + if (!BIOVEC_PHYS_MERGEABLE(prev_last_bv, next_first_bv)) + return false; + if (!BIOVEC_SEG_BOUNDARY(q, prev_last_bv, next_first_bv)) + return false; + if (prev->bi_seg_back_size + next_first_bv->bv_len > + queue_max_segment_size(q)) + return false; + return true; +} + static inline bool bio_will_gap(struct request_queue *q, struct bio *prev, struct bio *next) { @@ -1424,7 +1443,8 @@ bio_get_last_bvec(prev, &pb); bio_get_first_bvec(next, &nb); - return __bvec_gap_to_prev(q, &pb, nb.bv_offset); + if (!bios_segs_mergeable(q, prev, &pb, &nb)) + return __bvec_gap_to_prev(q, &pb, nb.bv_offset); } return false; --- linux-4.8.0.orig/include/linux/capability.h +++ linux-4.8.0/include/linux/capability.h @@ -240,8 +240,10 @@ return true; } #endif /* CONFIG_MULTIUSER */ +extern bool privileged_wrt_inode_uidgid(struct user_namespace *ns, const struct inode *inode); extern bool capable_wrt_inode_uidgid(const struct inode *inode, int cap); extern bool file_ns_capable(const struct file *file, struct user_namespace *ns, int cap); +extern bool ptracer_capable(struct task_struct *tsk, struct user_namespace *ns); /* audit system wants to get cap info from files as well */ extern int get_vfs_caps_from_disk(const struct dentry *dentry, struct cpu_vfs_cap_data *cpu_caps); --- linux-4.8.0.orig/include/linux/compiler-gcc.h +++ linux-4.8.0/include/linux/compiler-gcc.h @@ -256,7 +256,9 @@ #endif #endif /* CONFIG_ARCH_USE_BUILTIN_BSWAP && !__CHECKER__ */ -#if GCC_VERSION >= 50000 +#if GCC_VERSION >= 70000 +#define KASAN_ABI_VERSION 5 +#elif GCC_VERSION >= 50000 #define KASAN_ABI_VERSION 4 #elif GCC_VERSION >= 40902 #define KASAN_ABI_VERSION 3 --- linux-4.8.0.orig/include/linux/cpu.h +++ linux-4.8.0/include/linux/cpu.h @@ -105,22 +105,16 @@ { .notifier_call = fn, .priority = pri }; \ __register_cpu_notifier(&fn##_nb); \ } -#else /* #if defined(CONFIG_HOTPLUG_CPU) || !defined(MODULE) */ -#define cpu_notifier(fn, pri) do { (void)(fn); } while (0) -#define __cpu_notifier(fn, pri) do { (void)(fn); } while (0) -#endif /* #else #if defined(CONFIG_HOTPLUG_CPU) || !defined(MODULE) */ -#ifdef CONFIG_HOTPLUG_CPU extern int register_cpu_notifier(struct notifier_block *nb); extern int __register_cpu_notifier(struct notifier_block *nb); extern void unregister_cpu_notifier(struct notifier_block *nb); extern void __unregister_cpu_notifier(struct notifier_block *nb); -#else -#ifndef MODULE -extern int register_cpu_notifier(struct notifier_block *nb); -extern int __register_cpu_notifier(struct notifier_block *nb); -#else +#else /* #if defined(CONFIG_HOTPLUG_CPU) || !defined(MODULE) */ +#define cpu_notifier(fn, pri) do { (void)(fn); } while (0) +#define __cpu_notifier(fn, pri) do { (void)(fn); } while (0) + static inline int register_cpu_notifier(struct notifier_block *nb) { return 0; @@ -130,7 +124,6 @@ { return 0; } -#endif static inline void unregister_cpu_notifier(struct notifier_block *nb) { --- linux-4.8.0.orig/include/linux/cpufreq.h +++ linux-4.8.0/include/linux/cpufreq.h @@ -639,19 +639,19 @@ unsigned int target_freq) { struct cpufreq_frequency_table *table = policy->freq_table; + struct cpufreq_frequency_table *pos, *best = table - 1; unsigned int freq; - int i, best = -1; - for (i = 0; table[i].frequency != CPUFREQ_TABLE_END; i++) { - freq = table[i].frequency; + cpufreq_for_each_valid_entry(pos, table) { + freq = pos->frequency; if (freq >= target_freq) - return i; + return pos - table; - best = i; + best = pos; } - return best; + return best - table; } /* Find lowest freq at or above target in a table in descending order */ @@ -659,28 +659,28 @@ unsigned int target_freq) { struct cpufreq_frequency_table *table = policy->freq_table; + struct cpufreq_frequency_table *pos, *best = table - 1; unsigned int freq; - int i, best = -1; - for (i = 0; table[i].frequency != CPUFREQ_TABLE_END; i++) { - freq = table[i].frequency; + cpufreq_for_each_valid_entry(pos, table) { + freq = pos->frequency; if (freq == target_freq) - return i; + return pos - table; if (freq > target_freq) { - best = i; + best = pos; continue; } /* No freq found above target_freq */ - if (best == -1) - return i; + if (best == table - 1) + return pos - table; - return best; + return best - table; } - return best; + return best - table; } /* Works only on sorted freq-tables */ @@ -700,28 +700,28 @@ unsigned int target_freq) { struct cpufreq_frequency_table *table = policy->freq_table; + struct cpufreq_frequency_table *pos, *best = table - 1; unsigned int freq; - int i, best = -1; - for (i = 0; table[i].frequency != CPUFREQ_TABLE_END; i++) { - freq = table[i].frequency; + cpufreq_for_each_valid_entry(pos, table) { + freq = pos->frequency; if (freq == target_freq) - return i; + return pos - table; if (freq < target_freq) { - best = i; + best = pos; continue; } /* No freq found below target_freq */ - if (best == -1) - return i; + if (best == table - 1) + return pos - table; - return best; + return best - table; } - return best; + return best - table; } /* Find highest freq at or below target in a table in descending order */ @@ -729,19 +729,19 @@ unsigned int target_freq) { struct cpufreq_frequency_table *table = policy->freq_table; + struct cpufreq_frequency_table *pos, *best = table - 1; unsigned int freq; - int i, best = -1; - for (i = 0; table[i].frequency != CPUFREQ_TABLE_END; i++) { - freq = table[i].frequency; + cpufreq_for_each_valid_entry(pos, table) { + freq = pos->frequency; if (freq <= target_freq) - return i; + return pos - table; - best = i; + best = pos; } - return best; + return best - table; } /* Works only on sorted freq-tables */ @@ -761,32 +761,32 @@ unsigned int target_freq) { struct cpufreq_frequency_table *table = policy->freq_table; + struct cpufreq_frequency_table *pos, *best = table - 1; unsigned int freq; - int i, best = -1; - for (i = 0; table[i].frequency != CPUFREQ_TABLE_END; i++) { - freq = table[i].frequency; + cpufreq_for_each_valid_entry(pos, table) { + freq = pos->frequency; if (freq == target_freq) - return i; + return pos - table; if (freq < target_freq) { - best = i; + best = pos; continue; } /* No freq found below target_freq */ - if (best == -1) - return i; + if (best == table - 1) + return pos - table; /* Choose the closest freq */ - if (target_freq - table[best].frequency > freq - target_freq) - return i; + if (target_freq - best->frequency > freq - target_freq) + return pos - table; - return best; + return best - table; } - return best; + return best - table; } /* Find closest freq to target in a table in descending order */ @@ -794,32 +794,32 @@ unsigned int target_freq) { struct cpufreq_frequency_table *table = policy->freq_table; + struct cpufreq_frequency_table *pos, *best = table - 1; unsigned int freq; - int i, best = -1; - for (i = 0; table[i].frequency != CPUFREQ_TABLE_END; i++) { - freq = table[i].frequency; + cpufreq_for_each_valid_entry(pos, table) { + freq = pos->frequency; if (freq == target_freq) - return i; + return pos - table; if (freq > target_freq) { - best = i; + best = pos; continue; } /* No freq found above target_freq */ - if (best == -1) - return i; + if (best == table - 1) + return pos - table; /* Choose the closest freq */ - if (table[best].frequency - target_freq > target_freq - freq) - return i; + if (best->frequency - target_freq > target_freq - freq) + return pos - table; - return best; + return best - table; } - return best; + return best - table; } /* Works only on sorted freq-tables */ --- linux-4.8.0.orig/include/linux/cpuhotplug.h +++ linux-4.8.0/include/linux/cpuhotplug.h @@ -24,6 +24,7 @@ CPUHP_SMPCFD_PREPARE, CPUHP_RCUTREE_PREP, CPUHP_NOTIFY_PREPARE, + CPUHP_KVM_PPC_BOOK3S_PREPARE, CPUHP_TIMERS_DEAD, CPUHP_BRINGUP_CPU, CPUHP_AP_IDLE_DEAD, --- linux-4.8.0.orig/include/linux/cpuidle.h +++ linux-4.8.0/include/linux/cpuidle.h @@ -62,6 +62,7 @@ }; /* Idle State Flags */ +#define CPUIDLE_FLAG_NONE (0x00) #define CPUIDLE_FLAG_COUPLED (0x02) /* state applies to multiple cpus */ #define CPUIDLE_FLAG_TIMER_STOP (0x04) /* timer is stopped on this state */ --- linux-4.8.0.orig/include/linux/cred.h +++ linux-4.8.0/include/linux/cred.h @@ -166,6 +166,7 @@ extern void abort_creds(struct cred *); extern const struct cred *override_creds(const struct cred *); extern void revert_creds(const struct cred *); +extern struct cred *clone_cred(const struct cred *old); extern struct cred *prepare_kernel_cred(struct task_struct *); extern int change_create_files_as(struct cred *, struct inode *); extern int set_security_override(struct cred *, u32); --- linux-4.8.0.orig/include/linux/debugfs.h +++ linux-4.8.0/include/linux/debugfs.h @@ -45,6 +45,23 @@ extern struct srcu_struct debugfs_srcu; +/** + * debugfs_real_fops - getter for the real file operation + * @filp: a pointer to a struct file + * + * Must only be called under the protection established by + * debugfs_use_file_start(). + */ +static inline const struct file_operations *debugfs_real_fops(struct file *filp) + __must_hold(&debugfs_srcu) +{ + /* + * Neither the pointer to the struct file_operations, nor its + * contents ever change -- srcu_dereference() is not needed here. + */ + return filp->f_path.dentry->d_fsdata; +} + #if defined(CONFIG_DEBUG_FS) struct dentry *debugfs_create_file(const char *name, umode_t mode, @@ -64,9 +81,10 @@ struct dentry *debugfs_create_symlink(const char *name, struct dentry *parent, const char *dest); +typedef struct vfsmount *(*debugfs_automount_t)(struct dentry *, void *); struct dentry *debugfs_create_automount(const char *name, struct dentry *parent, - struct vfsmount *(*f)(void *), + debugfs_automount_t f, void *data); void debugfs_remove(struct dentry *dentry); --- linux-4.8.0.orig/include/linux/devfreq-event.h +++ linux-4.8.0/include/linux/devfreq-event.h @@ -148,11 +148,6 @@ return -EINVAL; } -static inline void *devfreq_event_get_drvdata(struct devfreq_event_dev *edev) -{ - return ERR_PTR(-EINVAL); -} - static inline struct devfreq_event_dev *devfreq_event_get_edev_by_phandle( struct device *dev, int index) { --- linux-4.8.0.orig/include/linux/dma-mapping.h +++ linux-4.8.0/include/linux/dma-mapping.h @@ -56,6 +56,11 @@ * that gives better TLB efficiency. */ #define DMA_ATTR_ALLOC_SINGLE_PAGES (1UL << 7) +/* + * DMA_ATTR_NO_WARN: This tells the DMA-mapping subsystem to suppress + * allocation failure reports (similarly to __GFP_NOWARN). + */ +#define DMA_ATTR_NO_WARN (1UL << 8) /* * A dma_addr_t can hold any valid DMA or bus address for the platform. --- linux-4.8.0.orig/include/linux/efi.h +++ linux-4.8.0/include/linux/efi.h @@ -598,11 +598,23 @@ #define LINUX_EFI_ARM_SCREEN_INFO_TABLE_GUID EFI_GUID(0xe03fc20a, 0x85dc, 0x406e, 0xb9, 0x0e, 0x4a, 0xb5, 0x02, 0x37, 0x1d, 0x95) #define LINUX_EFI_LOADER_ENTRY_GUID EFI_GUID(0x4a67b082, 0x0a4c, 0x41cf, 0xb6, 0xc7, 0x44, 0x0b, 0x29, 0xbb, 0x8c, 0x4f) +#define EFI_CERT_SHA256_GUID \ + EFI_GUID( 0xc1c41626, 0x504c, 0x4092, 0xac, 0xa9, 0x41, 0xf9, 0x36, 0x93, 0x43, 0x28 ) + +#define EFI_CERT_X509_GUID \ + EFI_GUID( 0xa5c059a1, 0x94e4, 0x4aa7, 0x87, 0xb5, 0xab, 0x15, 0x5c, 0x2b, 0xf0, 0x72 ) + typedef struct { efi_guid_t guid; u64 table; } efi_config_table_64_t; +#define EFI_IMAGE_SECURITY_DATABASE_GUID \ + EFI_GUID( 0xd719b2cb, 0x3d3a, 0x4596, 0xa3, 0xbc, 0xda, 0xd0, 0x0e, 0x67, 0x65, 0x6f ) + +#define EFI_SHIM_LOCK_GUID \ + EFI_GUID( 0x605dab50, 0xe046, 0x4300, 0xab, 0xb6, 0x3d, 0xd8, 0x10, 0xdd, 0x8b, 0x23 ) + typedef struct { efi_guid_t guid; u32 table; @@ -830,6 +842,20 @@ efi_memory_desc_t entry[0]; } efi_memory_attributes_table_t; +typedef struct { + efi_guid_t signature_owner; + u8 signature_data[]; +} efi_signature_data_t; + +typedef struct { + efi_guid_t signature_type; + u32 signature_list_size; + u32 signature_header_size; + u32 signature_size; + u8 signature_header[]; + /* efi_signature_data_t signatures[][] */ +} efi_signature_list_t; + /* * All runtime access to EFI goes through this structure: */ @@ -974,6 +1000,10 @@ char * __init efi_md_typeattr_format(char *buf, size_t size, const efi_memory_desc_t *md); +struct key; +extern int __init parse_efi_signature_list(const void *data, size_t size, + struct key *keyring); + /** * efi_range_is_wc - check the WC bit on an address range * @start: starting kvirt address @@ -1012,6 +1042,8 @@ #define EFI_ARCH_1 7 /* First arch-specific bit */ #define EFI_DBG 8 /* Print additional debug info at runtime */ #define EFI_NX_PE_DATA 9 /* Can runtime data regions be mapped non-executable? */ +#define EFI_SECURE_BOOT 10 /* Are we in Secure Boot mode? */ +#define EFI_MOKSBSTATE_DISABLED 11 /* Secure boot mode disabled in the MOK */ #ifdef CONFIG_EFI /* --- linux-4.8.0.orig/include/linux/file.h +++ linux-4.8.0/include/linux/file.h @@ -19,6 +19,7 @@ struct path; extern struct file *alloc_file(struct path *, fmode_t mode, const struct file_operations *fop); +extern struct file *get_empty_filp(void); static inline void fput_light(struct file *file, int fput_needed) { --- linux-4.8.0.orig/include/linux/frontswap.h +++ linux-4.8.0/include/linux/frontswap.h @@ -106,8 +106,9 @@ static inline void frontswap_init(unsigned type, unsigned long *map) { - if (frontswap_enabled()) - __frontswap_init(type, map); +#ifdef CONFIG_FRONTSWAP + __frontswap_init(type, map); +#endif } #endif /* _LINUX_FRONTSWAP_H */ --- linux-4.8.0.orig/include/linux/fs.h +++ linux-4.8.0/include/linux/fs.h @@ -224,6 +224,7 @@ #define ATTR_KILL_PRIV (1 << 14) #define ATTR_OPEN (1 << 15) /* Truncating from open(O_TRUNC) */ #define ATTR_TIMES_SET (1 << 16) +#define ATTR_TOUCH (1 << 17) /* * Whiteout is represented by a char device. The following constants define the @@ -1275,6 +1276,7 @@ /* can be called from interrupts */ extern void kill_fasync(struct fasync_struct **, int, int); +extern int setfl(int fd, struct file * filp, unsigned long arg); extern void __f_setown(struct file *filp, struct pid *, enum pid_type, int force); extern void f_setown(struct file *filp, unsigned long arg, int force); extern void f_delown(struct file *filp); @@ -1297,6 +1299,7 @@ #define SB_I_CGROUPWB 0x00000001 /* cgroup-aware writeback enabled */ #define SB_I_NOEXEC 0x00000002 /* Ignore executables on this fs */ #define SB_I_NODEV 0x00000004 /* Ignore devices on this fs */ +#define SB_I_NOSUID 0x00000008 /* Ignore suid on this fs */ /* sb->s_iflags to limit user namespace mounts */ #define SB_I_USERNS_VISIBLE 0x00000010 /* fstype already mounted */ @@ -1699,6 +1702,7 @@ ssize_t (*sendpage) (struct file *, struct page *, int, size_t, loff_t *, int); unsigned long (*get_unmapped_area)(struct file *, unsigned long, unsigned long, unsigned long, unsigned long); int (*check_flags)(int); + int (*setfl)(struct file *, unsigned long); int (*flock) (struct file *, int, struct file_lock *); ssize_t (*splice_write)(struct pipe_inode_info *, struct file *, loff_t *, size_t, unsigned int); ssize_t (*splice_read)(struct file *, loff_t *, struct pipe_inode_info *, size_t, unsigned int); @@ -1759,6 +1763,12 @@ struct iovec *fast_pointer, struct iovec **ret_pointer); +typedef ssize_t (*vfs_readf_t)(struct file *, char __user *, size_t, loff_t *); +typedef ssize_t (*vfs_writef_t)(struct file *, const char __user *, size_t, + loff_t *); +vfs_readf_t vfs_readf(struct file *file); +vfs_writef_t vfs_writef(struct file *file); + extern ssize_t __vfs_read(struct file *, char __user *, size_t, loff_t *); extern ssize_t __vfs_write(struct file *, const char __user *, size_t, loff_t *); extern ssize_t vfs_read(struct file *, char __user *, size_t, loff_t *); @@ -1806,6 +1816,10 @@ struct shrink_control *); long (*free_cached_objects)(struct super_block *, struct shrink_control *); +#if defined(CONFIG_BLK_DEV_LOOP) || defined(CONFIG_BLK_DEV_LOOP_MODULE) + /* and aufs */ + struct file *(*real_loop)(struct file *); +#endif }; /* @@ -2123,6 +2137,7 @@ extern void ihold(struct inode * inode); extern void iput(struct inode *); extern int generic_update_time(struct inode *, struct timespec *, int); +extern int update_time(struct inode *, struct timespec *, int); /* /sys/fs */ extern struct kobject *fs_kobj; @@ -2468,7 +2483,7 @@ #define BLKDEV_MAJOR_HASH_SIZE 255 extern const char *__bdevname(dev_t, char *buffer); extern const char *bdevname(struct block_device *bdev, char *buffer); -extern struct block_device *lookup_bdev(const char *); +extern struct block_device *lookup_bdev(const char *, int mask); extern void blkdev_show(struct seq_file *,off_t); #else @@ -3190,6 +3205,7 @@ } extern bool path_noexec(const struct path *path); +extern bool path_nosuid(const struct path *path); extern void inode_nohighmem(struct inode *inode); #endif /* _LINUX_FS_H */ --- linux-4.8.0.orig/include/linux/fscrypto.h +++ linux-4.8.0/include/linux/fscrypto.h @@ -79,7 +79,6 @@ u8 ci_filename_mode; u8 ci_flags; struct crypto_skcipher *ci_ctfm; - struct key *ci_keyring_key; u8 ci_master_key[FS_KEY_DESCRIPTOR_SIZE]; }; @@ -280,7 +279,6 @@ extern int fscrypt_inherit_context(struct inode *, struct inode *, void *, bool); /* keyinfo.c */ -extern int get_crypt_info(struct inode *); extern int fscrypt_get_encryption_info(struct inode *); extern void fscrypt_put_encryption_info(struct inode *, struct fscrypt_info *); --- linux-4.8.0.orig/include/linux/gfp.h +++ linux-4.8.0/include/linux/gfp.h @@ -38,9 +38,8 @@ #define ___GFP_ACCOUNT 0x100000u #define ___GFP_NOTRACK 0x200000u #define ___GFP_DIRECT_RECLAIM 0x400000u -#define ___GFP_OTHER_NODE 0x800000u -#define ___GFP_WRITE 0x1000000u -#define ___GFP_KSWAPD_RECLAIM 0x2000000u +#define ___GFP_WRITE 0x800000u +#define ___GFP_KSWAPD_RECLAIM 0x1000000u /* If the above are modified, __GFP_BITS_SHIFT may need updating */ /* @@ -172,11 +171,6 @@ * __GFP_NOTRACK_FALSE_POSITIVE is an alias of __GFP_NOTRACK. It's a means of * distinguishing in the source between false positives and allocations that * cannot be supported (e.g. page tables). - * - * __GFP_OTHER_NODE is for allocations that are on a remote node but that - * should not be accounted for as a remote allocation in vmstat. A - * typical user would be khugepaged collapsing a huge page on a remote - * node. */ #define __GFP_COLD ((__force gfp_t)___GFP_COLD) #define __GFP_NOWARN ((__force gfp_t)___GFP_NOWARN) @@ -184,10 +178,9 @@ #define __GFP_ZERO ((__force gfp_t)___GFP_ZERO) #define __GFP_NOTRACK ((__force gfp_t)___GFP_NOTRACK) #define __GFP_NOTRACK_FALSE_POSITIVE (__GFP_NOTRACK) -#define __GFP_OTHER_NODE ((__force gfp_t)___GFP_OTHER_NODE) /* Room for N __GFP_FOO bits */ -#define __GFP_BITS_SHIFT 26 +#define __GFP_BITS_SHIFT 25 #define __GFP_BITS_MASK ((__force gfp_t)((1 << __GFP_BITS_SHIFT) - 1)) /* --- linux-4.8.0.orig/include/linux/hugetlb.h +++ linux-4.8.0/include/linux/hugetlb.h @@ -450,8 +450,8 @@ return __basepage_index(page); } -extern void dissolve_free_huge_pages(unsigned long start_pfn, - unsigned long end_pfn); +extern int dissolve_free_huge_pages(unsigned long start_pfn, + unsigned long end_pfn); static inline bool hugepage_migration_supported(struct hstate *h) { #ifdef CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION @@ -518,7 +518,7 @@ { return page->index; } -#define dissolve_free_huge_pages(s, e) do {} while (0) +#define dissolve_free_huge_pages(s, e) 0 #define hugepage_migration_supported(h) false static inline spinlock_t *huge_pte_lockptr(struct hstate *h, --- linux-4.8.0.orig/include/linux/hyperv.h +++ linux-4.8.0/include/linux/hyperv.h @@ -128,6 +128,7 @@ u32 ring_data_startoffset; u32 priv_write_index; u32 priv_read_index; + u32 cached_read_index; }; /* @@ -180,6 +181,19 @@ return write; } +static inline u32 hv_get_cached_bytes_to_write( + const struct hv_ring_buffer_info *rbi) +{ + u32 read_loc, write_loc, dsize, write; + + dsize = rbi->ring_datasize; + read_loc = rbi->cached_read_index; + write_loc = rbi->ring_buffer->write_index; + + write = write_loc >= read_loc ? dsize - (write_loc - read_loc) : + read_loc - write_loc; + return write; +} /* * VMBUS version is 32 bit entity broken up into * two 16 bit quantities: major_number. minor_number. @@ -627,6 +641,7 @@ /* Synchronize the request/response if needed */ struct completion waitevent; + struct vmbus_channel *waiting_channel; union { struct vmbus_channel_version_supported version_supported; struct vmbus_channel_open_result open_result; @@ -674,6 +689,11 @@ HV_SIGNAL_POLICY_EXPLICIT, }; +enum hv_numa_policy { + HV_BALANCED = 0, + HV_LOCALIZED, +}; + enum vmbus_device_type { HV_IDE = 0, HV_SCSI, @@ -701,9 +721,6 @@ }; struct vmbus_channel { - /* Unique channel id */ - int id; - struct list_head listentry; struct hv_device *device_obj; @@ -850,6 +867,43 @@ * ring lock to preserve the current behavior. */ bool acquire_ring_lock; + /* + * For performance critical channels (storage, networking + * etc,), Hyper-V has a mechanism to enhance the throughput + * at the expense of latency: + * When the host is to be signaled, we just set a bit in a shared page + * and this bit will be inspected by the hypervisor within a certain + * window and if the bit is set, the host will be signaled. The window + * of time is the monitor latency - currently around 100 usecs. This + * mechanism improves throughput by: + * + * A) Making the host more efficient - each time it wakes up, + * potentially it will process morev number of packets. The + * monitor latency allows a batch to build up. + * B) By deferring the hypercall to signal, we will also minimize + * the interrupts. + * + * Clearly, these optimizations improve throughput at the expense of + * latency. Furthermore, since the channel is shared for both + * control and data messages, control messages currently suffer + * unnecessary latency adversley impacting performance and boot + * time. To fix this issue, permit tagging the channel as being + * in "low latency" mode. In this mode, we will bypass the monitor + * mechanism. + */ + bool low_latency; + + /* + * NUMA distribution policy: + * We support teo policies: + * 1) Balanced: Here all performance critical channels are + * distributed evenly amongst all the NUMA nodes. + * This policy will be the default policy. + * 2) Localized: All channels of a given instance of a + * performance critical service will be assigned CPUs + * within a selected NUMA node. + */ + enum hv_numa_policy affinity_policy; }; @@ -870,6 +924,12 @@ c->signal_policy = policy; } +static inline void set_channel_affinity_state(struct vmbus_channel *c, + enum hv_numa_policy policy) +{ + c->affinity_policy = policy; +} + static inline void set_channel_read_state(struct vmbus_channel *c, bool state) { c->batched_reading = state; @@ -891,6 +951,16 @@ c->outbound.ring_buffer->pending_send_sz = size; } +static inline void set_low_latency_mode(struct vmbus_channel *c) +{ + c->low_latency = true; +} + +static inline void clear_low_latency_mode(struct vmbus_channel *c) +{ + c->low_latency = false; +} + void vmbus_onmessage(void *context); int vmbus_request_offers(void); @@ -1257,6 +1327,27 @@ 0x80, 0x2e, 0x27, 0xed, 0xe1, 0x9f) /* + * Linux doesn't support the 3 devices: the first two are for + * Automatic Virtual Machine Activation, and the third is for + * Remote Desktop Virtualization. + * {f8e65716-3cb3-4a06-9a60-1889c5cccab5} + * {3375baf4-9e15-4b30-b765-67acb10d607b} + * {276aacf4-ac15-426c-98dd-7521ad3f01fe} + */ + +#define HV_AVMA1_GUID \ + .guid = UUID_LE(0xf8e65716, 0x3cb3, 0x4a06, 0x9a, 0x60, \ + 0x18, 0x89, 0xc5, 0xcc, 0xca, 0xb5) + +#define HV_AVMA2_GUID \ + .guid = UUID_LE(0x3375baf4, 0x9e15, 0x4b30, 0xb7, 0x65, \ + 0x67, 0xac, 0xb1, 0x0d, 0x60, 0x7b) + +#define HV_RDV_GUID \ + .guid = UUID_LE(0x276aacf4, 0xac15, 0x426c, 0x98, 0xdd, \ + 0x75, 0x21, 0xad, 0x3f, 0x01, 0xfe) + +/* * Common header for Hyper-V ICs */ @@ -1344,6 +1435,15 @@ u8 flags; } __packed; +struct ictimesync_ref_data { + u64 parenttime; + u64 vmreferencetime; + u8 flags; + char leapflags; + char stratum; + u8 reserved[3]; +} __packed; + struct hyperv_service_callback { u8 msg_type; char *log_msg; @@ -1353,12 +1453,17 @@ }; #define MAX_SRV_VER 0x7ffffff -extern bool vmbus_prep_negotiate_resp(struct icmsg_hdr *, - struct icmsg_negotiate *, u8 *, int, - int); +extern bool vmbus_prep_negotiate_resp(struct icmsg_hdr *icmsghdrp, u8 *buf, + const int *fw_version, int fw_vercnt, + const int *srv_version, int srv_vercnt, + int *nego_fw_version, int *nego_srv_version); + +void hv_event_tasklet_disable(struct vmbus_channel *channel); +void hv_event_tasklet_enable(struct vmbus_channel *channel); void hv_process_channel_removal(struct vmbus_channel *channel, u32 relid); +void vmbus_setevent(struct vmbus_channel *channel); /* * Negotiated version with the Host. */ @@ -1391,10 +1496,11 @@ * there is room for the producer to send the pending packet. */ -static inline bool hv_need_to_signal_on_read(struct hv_ring_buffer_info *rbi) +static inline void hv_signal_on_read(struct vmbus_channel *channel) { - u32 cur_write_sz; + u32 cur_write_sz, cached_write_sz; u32 pending_sz; + struct hv_ring_buffer_info *rbi = &channel->inbound; /* * Issue a full memory barrier before making the signaling decision. @@ -1412,14 +1518,26 @@ pending_sz = READ_ONCE(rbi->ring_buffer->pending_send_sz); /* If the other end is not blocked on write don't bother. */ if (pending_sz == 0) - return false; + return; cur_write_sz = hv_get_bytes_to_write(rbi); - if (cur_write_sz >= pending_sz) - return true; + if (cur_write_sz < pending_sz) + return; + + cached_write_sz = hv_get_cached_bytes_to_write(rbi); + if (cached_write_sz < pending_sz) + vmbus_setevent(channel); + + return; +} - return false; +static inline void +init_cached_read_index(struct vmbus_channel *channel) +{ + struct hv_ring_buffer_info *rbi = &channel->inbound; + + rbi->cached_read_index = rbi->ring_buffer->read_index; } /* @@ -1483,6 +1601,8 @@ * This call commits the read index and potentially signals the host. * Here is the pattern for using the "in-place" consumption APIs: * + * init_cached_read_index(); + * * while (get_next_pkt_raw() { * process the packet "in-place"; * put_pkt_raw(); @@ -1501,8 +1621,7 @@ virt_rmb(); ring_info->ring_buffer->read_index = ring_info->priv_read_index; - if (hv_need_to_signal_on_read(ring_info)) - vmbus_set_event(channel); + hv_signal_on_read(channel); } --- linux-4.8.0.orig/include/linux/intel-iommu.h +++ linux-4.8.0/include/linux/intel-iommu.h @@ -429,6 +429,7 @@ struct page_req_dsc *prq; unsigned char prq_name[16]; /* Name for PRQ interrupt */ struct idr pasid_idr; + u32 pasid_max; #endif struct q_inval *qi; /* Queued invalidation info */ u32 *iommu_state; /* Store iommu states between suspend and resume.*/ --- linux-4.8.0.orig/include/linux/irqchip/arm-gic-v3.h +++ linux-4.8.0/include/linux/irqchip/arm-gic-v3.h @@ -290,7 +290,7 @@ #define GITS_BASER_TYPE_SHIFT (56) #define GITS_BASER_TYPE(r) (((r) >> GITS_BASER_TYPE_SHIFT) & 7) #define GITS_BASER_ENTRY_SIZE_SHIFT (48) -#define GITS_BASER_ENTRY_SIZE(r) ((((r) >> GITS_BASER_ENTRY_SIZE_SHIFT) & 0xff) + 1) +#define GITS_BASER_ENTRY_SIZE(r) ((((r) >> GITS_BASER_ENTRY_SIZE_SHIFT) & 0x1f) + 1) #define GITS_BASER_SHAREABILITY_SHIFT (10) #define GITS_BASER_InnerShareable \ GIC_BASER_SHAREABILITY(GITS_BASER, InnerShareable) @@ -430,9 +430,9 @@ }; struct irq_domain; -struct device_node; +struct fwnode_handle; int its_cpu_init(void); -int its_init(struct device_node *node, struct rdists *rdists, +int its_init(struct fwnode_handle *handle, struct rdists *rdists, struct irq_domain *domain); static inline bool gic_enable_sre(void) --- linux-4.8.0.orig/include/linux/kvm_host.h +++ linux-4.8.0/include/linux/kvm_host.h @@ -749,6 +749,9 @@ void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu); void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu); +bool kvm_arch_has_vcpu_debugfs(void); +int kvm_arch_create_vcpu_debugfs(struct kvm_vcpu *vcpu); + int kvm_arch_hardware_enable(void); void kvm_arch_hardware_disable(void); int kvm_arch_hardware_setup(void); @@ -1103,6 +1106,10 @@ extern bool kvm_rebooting; +extern unsigned int halt_poll_ns; +extern unsigned int halt_poll_ns_grow; +extern unsigned int halt_poll_ns_shrink; + struct kvm_device { struct kvm_device_ops *ops; struct kvm *kvm; --- linux-4.8.0.orig/include/linux/libnvdimm.h +++ linux-4.8.0/include/linux/libnvdimm.h @@ -129,6 +129,8 @@ } int nvdimm_bus_add_poison(struct nvdimm_bus *nvdimm_bus, u64 addr, u64 length); +void nvdimm_clear_from_poison_list(struct nvdimm_bus *nvdimm_bus, + phys_addr_t start, unsigned int len); struct nvdimm_bus *nvdimm_bus_register(struct device *parent, struct nvdimm_bus_descriptor *nfit_desc); void nvdimm_bus_unregister(struct nvdimm_bus *nvdimm_bus); @@ -151,7 +153,7 @@ const struct nd_cmd_desc *desc, int idx, void *buf); u32 nd_cmd_out_size(struct nvdimm *nvdimm, int cmd, const struct nd_cmd_desc *desc, int idx, const u32 *in_field, - const u32 *out_field); + const u32 *out_field, unsigned long remainder); int nvdimm_bus_check_dimm_count(struct nvdimm_bus *nvdimm_bus, int dimm_count); struct nd_region *nvdimm_pmem_region_create(struct nvdimm_bus *nvdimm_bus, struct nd_region_desc *ndr_desc); --- linux-4.8.0.orig/include/linux/mfd/88pm80x.h +++ linux-4.8.0/include/linux/mfd/88pm80x.h @@ -350,7 +350,7 @@ int irq = platform_get_irq(pdev, 0); if (device_may_wakeup(dev)) - set_bit((1 << irq), &chip->wu_flag); + set_bit(irq, &chip->wu_flag); return 0; } @@ -362,7 +362,7 @@ int irq = platform_get_irq(pdev, 0); if (device_may_wakeup(dev)) - clear_bit((1 << irq), &chip->wu_flag); + clear_bit(irq, &chip->wu_flag); return 0; } --- linux-4.8.0.orig/include/linux/mlx4/device.h +++ linux-4.8.0/include/linux/mlx4/device.h @@ -467,7 +467,7 @@ enum { MLX4_INTERFACE_STATE_UP = 1 << 0, MLX4_INTERFACE_STATE_DELETION = 1 << 1, - MLX4_INTERFACE_STATE_SHUTDOWN = 1 << 2, + MLX4_INTERFACE_STATE_NOWAIT = 1 << 2, }; #define MSTR_SM_CHANGE_MASK (MLX4_EQ_PORT_INFO_MSTR_SM_SL_CHANGE_MASK | \ --- linux-4.8.0.orig/include/linux/mm.h +++ linux-4.8.0/include/linux/mm.h @@ -1278,6 +1278,28 @@ } #endif +extern void vma_do_file_update_time(struct vm_area_struct *, const char[], int); +extern struct file *vma_do_pr_or_file(struct vm_area_struct *, const char[], + int); +extern void vma_do_get_file(struct vm_area_struct *, const char[], int); +extern void vma_do_fput(struct vm_area_struct *, const char[], int); + +#define vma_file_update_time(vma) vma_do_file_update_time(vma, __func__, \ + __LINE__) +#define vma_pr_or_file(vma) vma_do_pr_or_file(vma, __func__, \ + __LINE__) +#define vma_get_file(vma) vma_do_get_file(vma, __func__, __LINE__) +#define vma_fput(vma) vma_do_fput(vma, __func__, __LINE__) + +#ifndef CONFIG_MMU +extern struct file *vmr_do_pr_or_file(struct vm_region *, const char[], int); +extern void vmr_do_fput(struct vm_region *, const char[], int); + +#define vmr_pr_or_file(region) vmr_do_pr_or_file(region, __func__, \ + __LINE__) +#define vmr_fput(region) vmr_do_fput(region, __func__, __LINE__) +#endif /* !CONFIG_MMU */ + extern int access_process_vm(struct task_struct *tsk, unsigned long addr, void *buf, int len, int write); extern int access_remote_vm(struct mm_struct *mm, unsigned long addr, void *buf, int len, int write); @@ -1370,39 +1392,11 @@ int get_cmdline(struct task_struct *task, char *buffer, int buflen); -/* Is the vma a continuation of the stack vma above it? */ -static inline int vma_growsdown(struct vm_area_struct *vma, unsigned long addr) -{ - return vma && (vma->vm_end == addr) && (vma->vm_flags & VM_GROWSDOWN); -} - static inline bool vma_is_anonymous(struct vm_area_struct *vma) { return !vma->vm_ops; } -static inline int stack_guard_page_start(struct vm_area_struct *vma, - unsigned long addr) -{ - return (vma->vm_flags & VM_GROWSDOWN) && - (vma->vm_start == addr) && - !vma_growsdown(vma->vm_prev, addr); -} - -/* Is the vma a continuation of the stack vma below it? */ -static inline int vma_growsup(struct vm_area_struct *vma, unsigned long addr) -{ - return vma && (vma->vm_start == addr) && (vma->vm_flags & VM_GROWSUP); -} - -static inline int stack_guard_page_end(struct vm_area_struct *vma, - unsigned long addr) -{ - return (vma->vm_flags & VM_GROWSUP) && - (vma->vm_end == addr) && - !vma_growsup(vma->vm_next, addr); -} - int vma_is_stack_for_task(struct vm_area_struct *vma, struct task_struct *t); extern unsigned long move_page_tables(struct vm_area_struct *vma, @@ -2131,6 +2125,7 @@ pgoff_t offset, unsigned long size); +extern unsigned long stack_guard_gap; /* Generic expand stack which grows the stack according to GROWS{UP,DOWN} */ extern int expand_stack(struct vm_area_struct *vma, unsigned long address); @@ -2159,6 +2154,30 @@ return vma; } +static inline unsigned long vm_start_gap(struct vm_area_struct *vma) +{ + unsigned long vm_start = vma->vm_start; + + if (vma->vm_flags & VM_GROWSDOWN) { + vm_start -= stack_guard_gap; + if (vm_start > vma->vm_start) + vm_start = 0; + } + return vm_start; +} + +static inline unsigned long vm_end_gap(struct vm_area_struct *vma) +{ + unsigned long vm_end = vma->vm_end; + + if (vma->vm_flags & VM_GROWSUP) { + vm_end += stack_guard_gap; + if (vm_end < vma->vm_end) + vm_end = -PAGE_SIZE; + } + return vm_end; +} + static inline unsigned long vma_pages(struct vm_area_struct *vma) { return (vma->vm_end - vma->vm_start) >> PAGE_SHIFT; @@ -2234,6 +2253,7 @@ #define FOLL_TRIED 0x800 /* a retry, previous pass started an IO */ #define FOLL_MLOCK 0x1000 /* lock present pages */ #define FOLL_REMOTE 0x2000 /* we are working on non-current tsk/mm */ +#define FOLL_COW 0x4000 /* internal GUP flag */ typedef int (*pte_fn_t)(pte_t *pte, pgtable_t token, unsigned long addr, void *data); --- linux-4.8.0.orig/include/linux/mm_types.h +++ linux-4.8.0/include/linux/mm_types.h @@ -275,6 +275,7 @@ unsigned long vm_top; /* region allocated to here */ unsigned long vm_pgoff; /* the offset in vm_file corresponding to vm_start */ struct file *vm_file; /* the backing file or NULL */ + struct file *vm_prfile; /* the virtual backing file or NULL */ int vm_usage; /* region usage count (access under nommu_region_sem) */ bool vm_icache_flushed : 1; /* true if the icache has been flushed for @@ -349,6 +350,7 @@ unsigned long vm_pgoff; /* Offset (within vm_file) in PAGE_SIZE units */ struct file * vm_file; /* File we map to (can be NULL). */ + struct file *vm_prfile; /* shadow of vm_file */ void * vm_private_data; /* was vm_pte (shared mem) */ #ifndef CONFIG_MMU @@ -473,6 +475,7 @@ */ struct task_struct __rcu *owner; #endif + struct user_namespace *user_ns; /* store ref to file /proc//exe symlink points to */ struct file __rcu *exe_file; --- linux-4.8.0.orig/include/linux/module.h +++ linux-4.8.0/include/linux/module.h @@ -260,6 +260,12 @@ struct notifier_block; +#ifdef CONFIG_MODULE_SIG +extern void enforce_signed_modules(void); +#else +static inline void enforce_signed_modules(void) {}; +#endif + #ifdef CONFIG_MODULES extern int modules_disabled; /* for sysctl */ @@ -641,6 +647,8 @@ } #endif /* CONFIG_LIVEPATCH */ +extern bool secure_modules(void); + #else /* !CONFIG_MODULES... */ static inline struct module *__module_address(unsigned long addr) @@ -750,6 +758,10 @@ return false; } +static inline bool secure_modules(void) +{ + return false; +} #endif /* CONFIG_MODULES */ #ifdef CONFIG_SYSFS --- linux-4.8.0.orig/include/linux/mount.h +++ linux-4.8.0/include/linux/mount.h @@ -90,10 +90,15 @@ extern struct vfsmount *vfs_kern_mount(struct file_system_type *type, int flags, const char *name, void *data); +extern struct vfsmount *vfs_submount(const struct dentry *mountpoint, + struct file_system_type *type, + const char *name, void *data); extern void mnt_set_expiry(struct vfsmount *mnt, struct list_head *expiry_list); extern void mark_mounts_for_expiry(struct list_head *mounts); extern dev_t name_to_dev_t(const char *name); +extern unsigned int sysctl_mount_max; + #endif /* _LINUX_MOUNT_H */ --- linux-4.8.0.orig/include/linux/netdevice.h +++ linux-4.8.0/include/linux/netdevice.h @@ -2154,7 +2154,10 @@ /* Used to determine if flush_id can be ignored */ u8 is_atomic:1; - /* 5 bit hole */ + /* Number of gro_receive callbacks this packet already went through */ + u8 recursion_counter:4; + + /* 1 bit hole */ /* used to support CHECKSUM_COMPLETE for tunneling protocols */ __wsum csum; @@ -2165,6 +2168,40 @@ #define NAPI_GRO_CB(skb) ((struct napi_gro_cb *)(skb)->cb) +#define GRO_RECURSION_LIMIT 15 +static inline int gro_recursion_inc_test(struct sk_buff *skb) +{ + return ++NAPI_GRO_CB(skb)->recursion_counter == GRO_RECURSION_LIMIT; +} + +typedef struct sk_buff **(*gro_receive_t)(struct sk_buff **, struct sk_buff *); +static inline struct sk_buff **call_gro_receive(gro_receive_t cb, + struct sk_buff **head, + struct sk_buff *skb) +{ + if (unlikely(gro_recursion_inc_test(skb))) { + NAPI_GRO_CB(skb)->flush |= 1; + return NULL; + } + + return cb(head, skb); +} + +typedef struct sk_buff **(*gro_receive_sk_t)(struct sock *, struct sk_buff **, + struct sk_buff *); +static inline struct sk_buff **call_gro_receive_sk(gro_receive_sk_t cb, + struct sock *sk, + struct sk_buff **head, + struct sk_buff *skb) +{ + if (unlikely(gro_recursion_inc_test(skb))) { + NAPI_GRO_CB(skb)->flush |= 1; + return NULL; + } + + return cb(sk, head, skb); +} + struct packet_type { __be16 type; /* This is really htons(ether_type). */ struct net_device *dev; /* NULL is wildcarded here */ @@ -3862,7 +3899,7 @@ ldev = netdev_all_lower_get_next(dev, &(iter))) #define netdev_for_each_all_lower_dev_rcu(dev, ldev, iter) \ - for (iter = (dev)->all_adj_list.lower.next, \ + for (iter = &(dev)->all_adj_list.lower, \ ldev = netdev_all_lower_get_next_rcu(dev, &(iter)); \ ldev; \ ldev = netdev_all_lower_get_next_rcu(dev, &(iter))) --- linux-4.8.0.orig/include/linux/netfilter/x_tables.h +++ linux-4.8.0/include/linux/netfilter/x_tables.h @@ -375,38 +375,14 @@ return ret; } - -/* On SMP, ip(6)t_entry->counters.pcnt holds address of the - * real (percpu) counter. On !SMP, its just the packet count, - * so nothing needs to be done there. - * - * xt_percpu_counter_alloc returns the address of the percpu - * counter, or 0 on !SMP. We force an alignment of 16 bytes - * so that bytes/packets share a common cache line. - * - * Hence caller must use IS_ERR_VALUE to check for error, this - * allows us to return 0 for single core systems without forcing - * callers to deal with SMP vs. NONSMP issues. - */ -static inline unsigned long xt_percpu_counter_alloc(void) -{ - if (nr_cpu_ids > 1) { - void __percpu *res = __alloc_percpu(sizeof(struct xt_counters), - sizeof(struct xt_counters)); - - if (res == NULL) - return -ENOMEM; - - return (__force unsigned long) res; - } - - return 0; -} -static inline void xt_percpu_counter_free(u64 pcnt) -{ - if (nr_cpu_ids > 1) - free_percpu((void __percpu *) (unsigned long) pcnt); -} +struct xt_percpu_counter_alloc_state { + unsigned int off; + const char __percpu *mem; +}; + +bool xt_percpu_counter_alloc(struct xt_percpu_counter_alloc_state *state, + struct xt_counters *counter); +void xt_percpu_counter_free(struct xt_counters *cnt); static inline struct xt_counters * xt_get_this_cpu_counter(struct xt_counters *cnt) --- linux-4.8.0.orig/include/linux/nvme.h +++ linux-4.8.0/include/linux/nvme.h @@ -543,6 +543,12 @@ __le64 slba; }; +/* Features */ + +struct nvme_feat_auto_pst { + __le64 entries[32]; +}; + /* Admin commands */ enum nvme_admin_opcode { @@ -562,6 +568,9 @@ nvme_admin_format_nvm = 0x80, nvme_admin_security_send = 0x81, nvme_admin_security_recv = 0x82, +#ifdef CONFIG_NVME_VENDOR_EXT_GOOGLE + nvme_admin_doorbell_memory = 0xC0, +#endif }; enum { @@ -827,6 +836,18 @@ __u8 resv4[16]; }; +#ifdef CONFIG_NVME_VENDOR_EXT_GOOGLE +struct nvme_doorbell_memory { + __u8 opcode; + __u8 flags; + __u16 command_id; + __u32 rsvd1[5]; + __le64 prp1; + __le64 prp2; + __u32 rsvd12[6]; +}; +#endif + struct nvme_command { union { struct nvme_common_command common; @@ -840,6 +861,9 @@ struct nvme_format_cmd format; struct nvme_dsm_cmd dsm; struct nvme_abort_cmd abort; +#ifdef CONFIG_NVME_VENDOR_EXT_GOOGLE + struct nvme_doorbell_memory doorbell_memory; +#endif struct nvme_get_log_page_command get_log_page; struct nvmf_common_command fabrics; struct nvmf_connect_command connect; @@ -918,6 +942,9 @@ NVME_SC_BAD_ATTRIBUTES = 0x180, NVME_SC_INVALID_PI = 0x181, NVME_SC_READ_ONLY = 0x182, +#ifdef CONFIG_NVME_VENDOR_EXT_GOOGLE + NVME_SC_DOORBELL_MEMORY_INVALID = 0x1C0, +#endif /* * I/O Command Set Specific - Fabrics commands: @@ -949,11 +976,11 @@ /* * Used by Admin and Fabrics commands to return data: */ - union { - __le16 result16; - __le32 result; - __le64 result64; - }; + union nvme_result { + __le16 u16; + __le32 u32; + __le64 u64; + } result; __le16 sq_head; /* how much of this queue may be reclaimed */ __le16 sq_id; /* submission queue that generated this entry */ __u16 command_id; /* of the command which completed */ --- linux-4.8.0.orig/include/linux/of_fdt.h +++ linux-4.8.0/include/linux/of_fdt.h @@ -14,6 +14,7 @@ #include #include +#include /* Definitions used by the flattened device tree */ #define OF_DT_HEADER 0xd00dfeed /* marker */ @@ -66,9 +67,11 @@ int depth, void *data); extern int early_init_dt_scan_memory(unsigned long node, const char *uname, int depth, void *data); +extern int early_init_dt_scan_chosen_stdout(void); extern void early_init_fdt_scan_reserved_mem(void); extern void early_init_fdt_reserve_self(void); extern void early_init_dt_add_memory_arch(u64 base, u64 size); +extern int early_init_dt_mark_hotplug_memory_arch(u64 base, u64 size); extern int early_init_dt_reserve_memory_arch(phys_addr_t base, phys_addr_t size, bool no_map); extern void * early_init_dt_alloc_memory_arch(u64 size, u64 align); @@ -94,6 +97,7 @@ extern u64 of_flat_dt_translate_address(unsigned long node); extern void of_fdt_limit_memory(int limit); #else /* CONFIG_OF_FLATTREE */ +static inline int early_init_dt_scan_chosen_stdout(void) { return -ENODEV; } static inline void early_init_fdt_scan_reserved_mem(void) {} static inline void early_init_fdt_reserve_self(void) {} static inline const char *of_flat_dt_get_machine_name(void) { return NULL; } --- linux-4.8.0.orig/include/linux/pagemap.h +++ linux-4.8.0/include/linux/pagemap.h @@ -364,16 +364,13 @@ } /* - * Get the offset in PAGE_SIZE. - * (TODO: hugepage should have ->index in PAGE_SIZE) + * Get index of the page with in radix-tree + * (TODO: remove once hugetlb pages will have ->index in PAGE_SIZE) */ -static inline pgoff_t page_to_pgoff(struct page *page) +static inline pgoff_t page_to_index(struct page *page) { pgoff_t pgoff; - if (unlikely(PageHeadHuge(page))) - return page->index << compound_order(page); - if (likely(!PageTransTail(page))) return page->index; @@ -387,6 +384,18 @@ } /* + * Get the offset in PAGE_SIZE. + * (TODO: hugepage should have ->index in PAGE_SIZE) + */ +static inline pgoff_t page_to_pgoff(struct page *page) +{ + if (unlikely(PageHeadHuge(page))) + return page->index << compound_order(page); + + return page_to_index(page); +} + +/* * Return byte-offset into filesystem object for page. */ static inline loff_t page_offset(struct page *page) --- linux-4.8.0.orig/include/linux/pci.h +++ linux-4.8.0/include/linux/pci.h @@ -1896,6 +1896,20 @@ return (pcie_caps_reg(dev) & PCI_EXP_FLAGS_TYPE) >> 4; } +static inline struct pci_dev *pcie_find_root_port(struct pci_dev *dev) +{ + while (1) { + if (!pci_is_pcie(dev)) + break; + if (pci_pcie_type(dev) == PCI_EXP_TYPE_ROOT_PORT) + return dev; + if (!dev->bus->self) + break; + dev = dev->bus->self; + } + return NULL; +} + void pci_request_acs(void); bool pci_acs_enabled(struct pci_dev *pdev, u16 acs_flags); bool pci_acs_path_enabled(struct pci_dev *start, --- linux-4.8.0.orig/include/linux/percpu-refcount.h +++ linux-4.8.0/include/linux/percpu-refcount.h @@ -204,7 +204,7 @@ static inline bool percpu_ref_tryget(struct percpu_ref *ref) { unsigned long __percpu *percpu_count; - int ret; + bool ret; rcu_read_lock_sched(); @@ -238,7 +238,7 @@ static inline bool percpu_ref_tryget_live(struct percpu_ref *ref) { unsigned long __percpu *percpu_count; - int ret = false; + bool ret = false; rcu_read_lock_sched(); --- linux-4.8.0.orig/include/linux/perf_event.h +++ linux-4.8.0/include/linux/perf_event.h @@ -1145,6 +1145,11 @@ int perf_event_max_stack_handler(struct ctl_table *table, int write, void __user *buffer, size_t *lenp, loff_t *ppos); +static inline bool perf_paranoid_any(void) +{ + return sysctl_perf_event_paranoid > 2; +} + static inline bool perf_paranoid_tracepoint_raw(void) { return sysctl_perf_event_paranoid > -1; --- linux-4.8.0.orig/include/linux/pkeys.h +++ linux-4.8.0/include/linux/pkeys.h @@ -4,11 +4,6 @@ #include #include -#define PKEY_DISABLE_ACCESS 0x1 -#define PKEY_DISABLE_WRITE 0x2 -#define PKEY_ACCESS_MASK (PKEY_DISABLE_ACCESS |\ - PKEY_DISABLE_WRITE) - #ifdef CONFIG_ARCH_HAS_PKEYS #include #else /* ! CONFIG_ARCH_HAS_PKEYS */ @@ -16,18 +11,34 @@ #define execute_only_pkey(mm) (0) #define arch_override_mprotect_pkey(vma, prot, pkey) (0) #define PKEY_DEDICATED_EXECUTE_ONLY 0 -#endif /* ! CONFIG_ARCH_HAS_PKEYS */ +#define ARCH_VM_PKEY_FLAGS 0 + +static inline bool mm_pkey_is_allocated(struct mm_struct *mm, int pkey) +{ + return (pkey == 0); +} + +static inline int mm_pkey_alloc(struct mm_struct *mm) +{ + return -1; +} -/* - * This is called from mprotect_pkey(). - * - * Returns true if the protection keys is valid. - */ -static inline bool validate_pkey(int pkey) +static inline int mm_pkey_free(struct mm_struct *mm, int pkey) { - if (pkey < 0) - return false; - return (pkey < arch_max_pkey()); + WARN_ONCE(1, "free of protection key when disabled"); + return -EINVAL; } +static inline int arch_set_user_pkey_access(struct task_struct *tsk, int pkey, + unsigned long init_val) +{ + return 0; +} + +static inline void copy_init_pkru_to_fpregs(void) +{ +} + +#endif /* ! CONFIG_ARCH_HAS_PKEYS */ + #endif /* _LINUX_PKEYS_H */ --- linux-4.8.0.orig/include/linux/pm_opp.h +++ linux-4.8.0/include/linux/pm_opp.h @@ -19,6 +19,7 @@ struct dev_pm_opp; struct device; +struct opp_table; enum dev_pm_opp_event { OPP_EVENT_ADD, OPP_EVENT_REMOVE, OPP_EVENT_ENABLE, OPP_EVENT_DISABLE, @@ -62,8 +63,8 @@ void dev_pm_opp_put_supported_hw(struct device *dev); int dev_pm_opp_set_prop_name(struct device *dev, const char *name); void dev_pm_opp_put_prop_name(struct device *dev); -int dev_pm_opp_set_regulator(struct device *dev, const char *name); -void dev_pm_opp_put_regulator(struct device *dev); +struct opp_table *dev_pm_opp_set_regulator(struct device *dev, const char *name); +void dev_pm_opp_put_regulator(struct opp_table *opp_table); int dev_pm_opp_set_rate(struct device *dev, unsigned long target_freq); int dev_pm_opp_set_sharing_cpus(struct device *cpu_dev, const struct cpumask *cpumask); int dev_pm_opp_get_sharing_cpus(struct device *cpu_dev, struct cpumask *cpumask); @@ -170,12 +171,12 @@ static inline void dev_pm_opp_put_prop_name(struct device *dev) {} -static inline int dev_pm_opp_set_regulator(struct device *dev, const char *name) +static inline struct opp_table *dev_pm_opp_set_regulator(struct device *dev, const char *name) { - return -ENOTSUPP; + return ERR_PTR(-ENOTSUPP); } -static inline void dev_pm_opp_put_regulator(struct device *dev) {} +static inline void dev_pm_opp_put_regulator(struct opp_table *opp_table) {} static inline int dev_pm_opp_set_rate(struct device *dev, unsigned long target_freq) { --- linux-4.8.0.orig/include/linux/posix_acl.h +++ linux-4.8.0/include/linux/posix_acl.h @@ -93,6 +93,7 @@ extern int posix_acl_chmod(struct inode *, umode_t); extern int posix_acl_create(struct inode *, umode_t *, struct posix_acl **, struct posix_acl **); +extern int posix_acl_update_mode(struct inode *, umode_t *, struct posix_acl **); extern int simple_set_acl(struct inode *, struct posix_acl *, int); extern int simple_acl_create(struct inode *, struct inode *); --- linux-4.8.0.orig/include/linux/posix_acl_xattr.h +++ linux-4.8.0/include/linux/posix_acl_xattr.h @@ -49,9 +49,18 @@ } #ifdef CONFIG_FS_POSIX_ACL +int posix_acl_fix_xattr_userns(struct user_namespace *to, + struct user_namespace *from, + void *value, size_t size); void posix_acl_fix_xattr_from_user(void *value, size_t size); void posix_acl_fix_xattr_to_user(void *value, size_t size); #else +static inline int posix_acl_fix_xattr_userns(struct user_namespace *to, + struct user_namespace *from, + void *value, size_t size) +{ + return 0; +} static inline void posix_acl_fix_xattr_from_user(void *value, size_t size) { } --- linux-4.8.0.orig/include/linux/proc_fs.h +++ linux-4.8.0/include/linux/proc_fs.h @@ -21,6 +21,7 @@ struct proc_dir_entry *, void *); extern struct proc_dir_entry *proc_mkdir_mode(const char *, umode_t, struct proc_dir_entry *); +struct proc_dir_entry *proc_create_mount_point(const char *name); extern struct proc_dir_entry *proc_create_data(const char *, umode_t, struct proc_dir_entry *, @@ -56,6 +57,7 @@ struct proc_dir_entry *parent,const char *dest) { return NULL;} static inline struct proc_dir_entry *proc_mkdir(const char *name, struct proc_dir_entry *parent) {return NULL;} +static inline struct proc_dir_entry *proc_create_mount_point(const char *name) { return NULL; } static inline struct proc_dir_entry *proc_mkdir_data(const char *name, umode_t mode, struct proc_dir_entry *parent, void *data) { return NULL; } static inline struct proc_dir_entry *proc_mkdir_mode(const char *name, --- linux-4.8.0.orig/include/linux/projid.h +++ linux-4.8.0/include/linux/projid.h @@ -47,6 +47,11 @@ return !projid_eq(projid, INVALID_PROJID); } +static inline bool projid_valid_eq(kprojid_t left, kprojid_t right) +{ + return projid_eq(left, right) && projid_valid(left); +} + #ifdef CONFIG_USER_NS extern kprojid_t make_kprojid(struct user_namespace *from, projid_t projid); --- linux-4.8.0.orig/include/linux/ptrace.h +++ linux-4.8.0/include/linux/ptrace.h @@ -19,7 +19,6 @@ #define PT_SEIZED 0x00010000 /* SEIZE used, enable new behavior */ #define PT_PTRACED 0x00000001 #define PT_DTRACE 0x00000002 /* delayed trace (used on m68k, i386) */ -#define PT_PTRACE_CAP 0x00000004 /* ptracer can follow suid-exec */ #define PT_OPT_FLAG_SHIFT 3 /* PT_TRACE_* event enable flags */ --- linux-4.8.0.orig/include/linux/pwm.h +++ linux-4.8.0/include/linux/pwm.h @@ -641,6 +641,7 @@ #ifdef CONFIG_PWM_SYSFS void pwmchip_sysfs_export(struct pwm_chip *chip); void pwmchip_sysfs_unexport(struct pwm_chip *chip); +void pwmchip_sysfs_unexport_children(struct pwm_chip *chip); #else static inline void pwmchip_sysfs_export(struct pwm_chip *chip) { @@ -649,6 +650,10 @@ static inline void pwmchip_sysfs_unexport(struct pwm_chip *chip) { } + +static inline void pwmchip_sysfs_unexport_children(struct pwm_chip *chip) +{ +} #endif /* CONFIG_PWM_SYSFS */ #endif /* __LINUX_PWM_H */ --- linux-4.8.0.orig/include/linux/radix-tree.h +++ linux-4.8.0/include/linux/radix-tree.h @@ -280,9 +280,9 @@ struct radix_tree_node *node); void *radix_tree_delete_item(struct radix_tree_root *, unsigned long, void *); void *radix_tree_delete(struct radix_tree_root *, unsigned long); -struct radix_tree_node *radix_tree_replace_clear_tags( - struct radix_tree_root *root, - unsigned long index, void *entry); +void radix_tree_clear_tags(struct radix_tree_root *root, + struct radix_tree_node *node, + void **slot); unsigned int radix_tree_gang_lookup(struct radix_tree_root *root, void **results, unsigned long first_index, unsigned int max_items); --- linux-4.8.0.orig/include/linux/sched.h +++ linux-4.8.0/include/linux/sched.h @@ -1631,6 +1631,7 @@ struct list_head cpu_timers[3]; /* process credentials */ + const struct cred __rcu *ptracer_cred; /* Tracer's credentials at attach */ const struct cred __rcu *real_cred; /* objective and real subjective task * credentials (COW) */ const struct cred __rcu *cred; /* effective (overridable) subjective task --- linux-4.8.0.orig/include/linux/security.h +++ linux-4.8.0/include/linux/security.h @@ -1610,7 +1610,15 @@ #endif /* CONFIG_AUDIT */ #ifdef CONFIG_SECURITYFS - +extern int securityfs_pin_fs(void); +extern int __securityfs_setup_d_inode(struct inode *dir, struct dentry *dentry, + umode_t mode, void *data, + const struct file_operations *fops, + const struct inode_operations *iops); +extern struct dentry *securityfs_create_dentry(const char *name, umode_t mode, + struct dentry *parent, void *data, + const struct file_operations *fops, + const struct inode_operations *iops); extern struct dentry *securityfs_create_file(const char *name, umode_t mode, struct dentry *parent, void *data, const struct file_operations *fops); @@ -1618,6 +1626,28 @@ extern void securityfs_remove(struct dentry *dentry); #else /* CONFIG_SECURITYFS */ +static inline int securityfs_pin_fs(void) +{ + return -ENODEV; +} + +static inline int __securityfs_setup_d_inode(struct inode *dir, + struct dentry *dentry, + umode_t mode, void *data, + const struct file_operations *fops, + const struct inode_operations *iops) +{ + return -ENODEV; +} + +static inline struct dentry *securityfs_create_dentry(const char *name, + umode_t mode, + struct dentry *parent, void *data, + const struct file_operations *fops, + const struct inode_operations *iops) +{ + return ERR_PTR(-ENODEV); +} static inline struct dentry *securityfs_create_dir(const char *name, struct dentry *parent) --- linux-4.8.0.orig/include/linux/sem.h +++ linux-4.8.0/include/linux/sem.h @@ -21,6 +21,7 @@ struct list_head list_id; /* undo requests on this array */ int sem_nsems; /* no. of semaphores in array */ int complex_count; /* pending complex operations */ + bool complex_mode; /* no parallel simple ops */ }; #ifdef CONFIG_SYSVIPC --- linux-4.8.0.orig/include/linux/serial_core.h +++ linux-4.8.0/include/linux/serial_core.h @@ -367,11 +367,18 @@ #define EARLYCON_DECLARE(_name, fn) OF_EARLYCON_DECLARE(_name, "", fn) -extern int setup_earlycon(char *buf); extern int of_setup_earlycon(const struct earlycon_id *match, unsigned long node, const char *options); +#ifdef CONFIG_SERIAL_EARLYCON +extern bool earlycon_init_is_deferred __initdata; +int setup_earlycon(char *buf); +#else +static const bool earlycon_init_is_deferred; +static inline int setup_earlycon(char *buf) { return 0; } +#endif + struct uart_port *uart_get_console(struct uart_port *ports, int nr, struct console *c); int uart_parse_earlycon(char *p, unsigned char *iotype, unsigned long *addr, --- linux-4.8.0.orig/include/linux/shmem_fs.h +++ linux-4.8.0/include/linux/shmem_fs.h @@ -24,10 +24,13 @@ }; struct shmem_sb_info { + struct mutex idr_lock; + bool idr_nouse; + struct idr idr; /* manages inode-number */ unsigned long max_blocks; /* How many blocks are allowed */ struct percpu_counter used_blocks; /* How many are allocated */ - unsigned long max_inodes; /* How many inodes are allowed */ - unsigned long free_inodes; /* How many are left for allocation */ + int max_inodes; /* How many inodes are allowed */ + int free_inodes; /* How many are left for allocation */ spinlock_t stat_lock; /* Serialize shmem_sb_info changes */ umode_t mode; /* Mount mode for root directory */ unsigned char huge; /* Whether to try for hugepages */ --- linux-4.8.0.orig/include/linux/splice.h +++ linux-4.8.0/include/linux/splice.h @@ -83,4 +83,10 @@ extern void spd_release_page(struct splice_pipe_desc *, unsigned int); extern const struct pipe_buf_operations page_cache_pipe_buf_ops; + +extern long do_splice_from(struct pipe_inode_info *pipe, struct file *out, + loff_t *ppos, size_t len, unsigned int flags); +extern long do_splice_to(struct file *in, loff_t *ppos, + struct pipe_inode_info *pipe, size_t len, + unsigned int flags); #endif --- linux-4.8.0.orig/include/linux/sunrpc/svc_rdma.h +++ linux-4.8.0/include/linux/sunrpc/svc_rdma.h @@ -86,6 +86,7 @@ unsigned long flags; enum dma_data_direction direction; int count; + unsigned int mapped_sges; struct ib_sge sge[RPCSVC_MAXPAGES]; struct page *pages[RPCSVC_MAXPAGES]; }; @@ -193,6 +194,14 @@ #define RPCSVC_MAXPAYLOAD_RDMA RPCSVC_MAXPAYLOAD +/* Track DMA maps for this transport and context */ +static inline void svc_rdma_count_mappings(struct svcxprt_rdma *rdma, + struct svc_rdma_op_ctxt *ctxt) +{ + ctxt->mapped_sges++; + atomic_inc(&rdma->sc_dma_used); +} + /* svc_rdma_backchannel.c */ extern int svc_rdma_handle_bc_reply(struct rpc_xprt *xprt, struct rpcrdma_msg *rmsgp, --- linux-4.8.0.orig/include/linux/sunrpc/svc_xprt.h +++ linux-4.8.0/include/linux/sunrpc/svc_xprt.h @@ -25,6 +25,7 @@ void (*xpo_detach)(struct svc_xprt *); void (*xpo_free)(struct svc_xprt *); int (*xpo_secure_port)(struct svc_rqst *); + void (*xpo_kill_temp_xprt)(struct svc_xprt *); }; struct svc_xprt_class { --- linux-4.8.0.orig/include/linux/swap.h +++ linux-4.8.0/include/linux/swap.h @@ -257,7 +257,7 @@ static inline void workingset_node_pages_dec(struct radix_tree_node *node) { - VM_BUG_ON(!workingset_node_pages(node)); + VM_WARN_ON_ONCE(!workingset_node_pages(node)); node->count--; } @@ -273,7 +273,7 @@ static inline void workingset_node_shadows_dec(struct radix_tree_node *node) { - VM_BUG_ON(!workingset_node_shadows(node)); + VM_WARN_ON_ONCE(!workingset_node_shadows(node)); node->count -= 1U << RADIX_TREE_COUNT_SHIFT; } --- linux-4.8.0.orig/include/linux/syscalls.h +++ linux-4.8.0/include/linux/syscalls.h @@ -898,4 +898,9 @@ asmlinkage long sys_mlock2(unsigned long start, size_t len, int flags); +asmlinkage long sys_pkey_mprotect(unsigned long start, size_t len, + unsigned long prot, int pkey); +asmlinkage long sys_pkey_alloc(unsigned long flags, unsigned long init_val); +asmlinkage long sys_pkey_free(int pkey); + #endif --- linux-4.8.0.orig/include/linux/tracepoint-defs.h +++ linux-4.8.0/include/linux/tracepoint-defs.h @@ -29,7 +29,7 @@ struct tracepoint { const char *name; /* Tracepoint name */ struct static_key key; - void (*regfunc)(void); + int (*regfunc)(void); void (*unregfunc)(void); struct tracepoint_func __rcu *funcs; }; --- linux-4.8.0.orig/include/linux/tracepoint.h +++ linux-4.8.0/include/linux/tracepoint.h @@ -81,7 +81,7 @@ } #ifdef CONFIG_HAVE_SYSCALL_TRACEPOINTS -extern void syscall_regfunc(void); +extern int syscall_regfunc(void); extern void syscall_unregfunc(void); #endif /* CONFIG_HAVE_SYSCALL_TRACEPOINTS */ --- linux-4.8.0.orig/include/linux/uio.h +++ linux-4.8.0/include/linux/uio.h @@ -102,12 +102,12 @@ const void *dup_iter(struct iov_iter *new, struct iov_iter *old, gfp_t flags); -static inline size_t iov_iter_count(struct iov_iter *i) +static inline size_t iov_iter_count(const struct iov_iter *i) { return i->count; } -static inline bool iter_is_iovec(struct iov_iter *i) +static inline bool iter_is_iovec(const struct iov_iter *i) { return !(i->type & (ITER_BVEC | ITER_KVEC)); } --- linux-4.8.0.orig/include/linux/virtio_net.h +++ linux-4.8.0/include/linux/virtio_net.h @@ -56,7 +56,8 @@ static inline int virtio_net_hdr_from_skb(const struct sk_buff *skb, struct virtio_net_hdr *hdr, - bool little_endian) + bool little_endian, + bool has_data_valid) { memset(hdr, 0, sizeof(*hdr)); @@ -91,7 +92,8 @@ skb_checksum_start_offset(skb)); hdr->csum_offset = __cpu_to_virtio16(little_endian, skb->csum_offset); - } else if (skb->ip_summed == CHECKSUM_UNNECESSARY) { + } else if (has_data_valid && + skb->ip_summed == CHECKSUM_UNNECESSARY) { hdr->flags = VIRTIO_NET_HDR_F_DATA_VALID; } /* else everything is zero */ --- linux-4.8.0.orig/include/linux/vt_kern.h +++ linux-4.8.0/include/linux/vt_kern.h @@ -129,7 +129,8 @@ void vt_event_post(unsigned int event, unsigned int old, unsigned int new); int vt_waitactive(int n); void change_console(struct vc_data *new_vc); -void reset_vc(struct vc_data *vc); +void reset_vc(struct vc_data *vc, int mode); + extern int do_unbind_con_driver(const struct consw *csw, int first, int last, int deflt); int vty_init(const struct file_operations *console_fops); --- linux-4.8.0.orig/include/linux/xattr.h +++ linux-4.8.0/include/linux/xattr.h @@ -50,6 +50,7 @@ ssize_t vfs_listxattr(struct dentry *d, char *list, size_t size); int __vfs_setxattr_noperm(struct dentry *, const char *, const void *, size_t, int); int vfs_setxattr(struct dentry *, const char *, const void *, size_t, int); +int __vfs_removexattr_noperm(struct dentry *dentry, const char *name); int vfs_removexattr(struct dentry *, const char *); ssize_t generic_getxattr(struct dentry *dentry, struct inode *inode, const char *name, void *buffer, size_t size); --- linux-4.8.0.orig/include/media/rcar-fcp.h +++ linux-4.8.0/include/media/rcar-fcp.h @@ -29,7 +29,7 @@ static inline void rcar_fcp_put(struct rcar_fcp_device *fcp) { } static inline int rcar_fcp_enable(struct rcar_fcp_device *fcp) { - return -ENOSYS; + return 0; } static inline void rcar_fcp_disable(struct rcar_fcp_device *fcp) { } #endif --- linux-4.8.0.orig/include/net/cfg80211.h +++ linux-4.8.0/include/net/cfg80211.h @@ -4393,6 +4393,17 @@ void cfg80211_assoc_timeout(struct net_device *dev, struct cfg80211_bss *bss); /** + * cfg80211_abandon_assoc - notify cfg80211 of abandoned association attempt + * @dev: network device + * @bss: The BSS entry with which association was abandoned. + * + * Call this whenever - for reasons reported through other API, like deauth RX, + * an association attempt was abandoned. + * This function may sleep. The caller must hold the corresponding wdev's mutex. + */ +void cfg80211_abandon_assoc(struct net_device *dev, struct cfg80211_bss *bss); + +/** * cfg80211_tx_mlme_mgmt - notification of transmitted deauth/disassoc frame * @dev: network device * @buf: 802.11 frame (header + body) --- linux-4.8.0.orig/include/net/gro_cells.h +++ linux-4.8.0/include/net/gro_cells.h @@ -68,6 +68,9 @@ struct gro_cell *cell = per_cpu_ptr(gcells->cells, i); __skb_queue_head_init(&cell->napi_skbs); + + set_bit(NAPI_STATE_NO_BUSY_POLL, &cell->napi.state); + netif_napi_add(dev, &cell->napi, gro_cell_poll, 64); napi_enable(&cell->napi); } --- linux-4.8.0.orig/include/net/ip.h +++ linux-4.8.0/include/net/ip.h @@ -47,7 +47,6 @@ #define IPSKB_REROUTED BIT(4) #define IPSKB_DOREDIRECT BIT(5) #define IPSKB_FRAG_PMTU BIT(6) -#define IPSKB_FRAG_SEGS BIT(7) u16 frag_max_size; }; @@ -549,7 +548,7 @@ */ void ipv4_pktinfo_prepare(const struct sock *sk, struct sk_buff *skb); -void ip_cmsg_recv_offset(struct msghdr *msg, struct sk_buff *skb, int offset); +void ip_cmsg_recv_offset(struct msghdr *msg, struct sk_buff *skb, int tlen, int offset); int ip_cmsg_send(struct sock *sk, struct msghdr *msg, struct ipcm_cookie *ipc, bool allow_ipv6); int ip_setsockopt(struct sock *sk, int level, int optname, char __user *optval, @@ -571,7 +570,7 @@ static inline void ip_cmsg_recv(struct msghdr *msg, struct sk_buff *skb) { - ip_cmsg_recv_offset(msg, skb, 0); + ip_cmsg_recv_offset(msg, skb, 0, 0); } bool icmp_global_allow(void); --- linux-4.8.0.orig/include/net/ip6_route.h +++ linux-4.8.0/include/net/ip6_route.h @@ -32,6 +32,7 @@ #define RT6_LOOKUP_F_SRCPREF_TMP 0x00000008 #define RT6_LOOKUP_F_SRCPREF_PUBLIC 0x00000010 #define RT6_LOOKUP_F_SRCPREF_COA 0x00000020 +#define RT6_LOOKUP_F_IGNORE_LINKSTATE 0x00000040 /* We do not (yet ?) support IPv6 jumbograms (RFC 2675) * Unlike IPv4, hdr->seg_len doesn't include the IPv6 header --- linux-4.8.0.orig/include/net/ip6_tunnel.h +++ linux-4.8.0/include/net/ip6_tunnel.h @@ -145,6 +145,7 @@ { int pkt_len, err; + memset(skb->cb, 0, sizeof(struct inet6_skb_parm)); pkt_len = skb->len - skb_inner_network_offset(skb); err = ip6_local_out(dev_net(skb_dst(skb)->dev), sk, skb); if (unlikely(net_xmit_eval(err))) --- linux-4.8.0.orig/include/net/ip_tunnels.h +++ linux-4.8.0/include/net/ip_tunnels.h @@ -98,6 +98,28 @@ }; struct metadata_dst; +/* A fan overlay /8 (250.0.0.0/8, for example) maps to exactly one /16 + * underlay (10.88.0.0/16, for example). Multiple local addresses within + * the /16 may be used, but a particular overlay may not span + * multiple underlay subnets. + * + * We store one underlay, indexed by the overlay's high order octet. + */ +#define FAN_OVERLAY_CNT 256 + +struct ip_fan_map { + __be32 underlay; + __be32 overlay; + u16 underlay_prefix; + u16 overlay_prefix; + u32 overlay_mask; + struct list_head list; + struct rcu_head rcu; +}; + +struct ip_tunnel_fan { + struct list_head fan_maps; +}; struct ip_tunnel { struct ip_tunnel __rcu *next; @@ -129,6 +151,7 @@ #endif struct ip_tunnel_prl_entry __rcu *prl; /* potential router list */ unsigned int prl_count; /* # of entries in PRL */ + struct ip_tunnel_fan fan; int ip_tnl_net_id; struct gro_cells gro_cells; bool collect_md; @@ -152,6 +175,11 @@ #define TUNNEL_OPTIONS_PRESENT (TUNNEL_GENEVE_OPT | TUNNEL_VXLAN_OPT) +static inline int fan_has_map(const struct ip_tunnel_fan *fan) +{ + return !list_empty(&fan->fan_maps); +} + struct tnl_ptk_info { __be16 flags; __be16 proto; --- linux-4.8.0.orig/include/net/netfilter/nf_conntrack.h +++ linux-4.8.0/include/net/netfilter/nf_conntrack.h @@ -17,7 +17,6 @@ #include #include #include -#include #include #include @@ -118,9 +117,6 @@ /* Extensions */ struct nf_ct_ext *ext; -#if IS_ENABLED(CONFIG_NF_NAT) - struct rhash_head nat_bysource; -#endif /* Storage reserved for other modules, must be the last member */ union nf_conntrack_proto proto; }; --- linux-4.8.0.orig/include/net/netfilter/nf_conntrack_extend.h +++ linux-4.8.0/include/net/netfilter/nf_conntrack_extend.h @@ -99,6 +99,9 @@ struct nf_ct_ext_type { /* Destroys relationships (can be NULL). */ void (*destroy)(struct nf_conn *ct); + /* Called when realloacted (can be NULL). + Contents has already been moved. */ + void (*move)(void *new, void *old); enum nf_ct_ext_id id; --- linux-4.8.0.orig/include/net/netfilter/nf_nat.h +++ linux-4.8.0/include/net/netfilter/nf_nat.h @@ -1,6 +1,5 @@ #ifndef _NF_NAT_H #define _NF_NAT_H -#include #include #include #include @@ -30,6 +29,8 @@ /* The structure embedded in the conntrack structure. */ struct nf_conn_nat { + struct hlist_node bysource; + struct nf_conn *ct; union nf_conntrack_nat_help help; #if IS_ENABLED(CONFIG_NF_NAT_MASQUERADE_IPV4) || \ IS_ENABLED(CONFIG_NF_NAT_MASQUERADE_IPV6) --- linux-4.8.0.orig/include/net/sock.h +++ linux-4.8.0/include/net/sock.h @@ -1587,11 +1587,11 @@ void sock_gen_put(struct sock *sk); int __sk_receive_skb(struct sock *sk, struct sk_buff *skb, const int nested, - unsigned int trim_cap); + unsigned int trim_cap, bool refcounted); static inline int sk_receive_skb(struct sock *sk, struct sk_buff *skb, const int nested) { - return __sk_receive_skb(sk, skb, nested, 1); + return __sk_receive_skb(sk, skb, nested, 1, true); } static inline void sk_tx_queue_set(struct sock *sk, int tx_queue) --- linux-4.8.0.orig/include/net/tcp.h +++ linux-4.8.0/include/net/tcp.h @@ -1164,6 +1164,7 @@ } bool tcp_prequeue(struct sock *sk, struct sk_buff *skb); +int tcp_filter(struct sock *sk, struct sk_buff *skb); #undef STATE_TRACE --- linux-4.8.0.orig/include/net/vxlan.h +++ linux-4.8.0/include/net/vxlan.h @@ -234,6 +234,8 @@ struct vxlan_rdst default_dst; /* default destination */ u32 flags; /* VXLAN_F_* in vxlan.h */ + struct ip_tunnel_fan fan; + struct timer_list age_timer; spinlock_t hash_lock; unsigned int addrcnt; --- linux-4.8.0.orig/include/rdma/ib_addr.h +++ linux-4.8.0/include/rdma/ib_addr.h @@ -205,10 +205,12 @@ dev = dev_get_by_index(&init_net, dev_addr->bound_dev_if); if (dev) { - ip4 = (struct in_device *)dev->ip_ptr; - if (ip4 && ip4->ifa_list && ip4->ifa_list->ifa_address) + ip4 = in_dev_get(dev); + if (ip4 && ip4->ifa_list && ip4->ifa_list->ifa_address) { ipv6_addr_set_v4mapped(ip4->ifa_list->ifa_address, (struct in6_addr *)gid); + in_dev_put(ip4); + } dev_put(dev); } } --- linux-4.8.0.orig/include/scsi/libiscsi.h +++ linux-4.8.0/include/scsi/libiscsi.h @@ -331,19 +331,12 @@ struct iscsi_transport *tt; struct Scsi_Host *host; struct iscsi_conn *leadconn; /* leading connection */ - /* Between the forward and the backward locks exists a strict locking - * hierarchy. The mutual exclusion zone protected by the forward lock - * can enclose the mutual exclusion zone protected by the backward lock - * but not vice versa. - */ - spinlock_t frwd_lock; /* protects session state, * - * cmdsn, queued_cmdsn * + spinlock_t lock; /* protects session state, * + * sequence numbers, * * session resources: * - * - cmdpool kfifo_out , * - * - mgmtpool, */ - spinlock_t back_lock; /* protects cmdsn_exp * - * cmdsn_max, * - * cmdpool kfifo_in */ + * - cmdpool, * + * - mgmtpool, * + * - r2tpool */ int state; /* session state */ int age; /* counts session re-opens */ --- linux-4.8.0.orig/include/scsi/libiscsi_tcp.h +++ linux-4.8.0/include/scsi/libiscsi_tcp.h @@ -83,8 +83,6 @@ struct iscsi_pool r2tpool; struct kfifo r2tqueue; void *dd_data; - spinlock_t pool2queue; - spinlock_t queue2pool; }; enum { --- linux-4.8.0.orig/include/target/target_core_base.h +++ linux-4.8.0/include/target/target_core_base.h @@ -177,6 +177,7 @@ TCM_LOGICAL_BLOCK_GUARD_CHECK_FAILED = R(0x15), TCM_LOGICAL_BLOCK_APP_TAG_CHECK_FAILED = R(0x16), TCM_LOGICAL_BLOCK_REF_TAG_CHECK_FAILED = R(0x17), + TCM_COPY_TARGET_DEVICE_NOT_REACHABLE = R(0x18), #undef R }; --- linux-4.8.0.orig/include/trace/events/fs.h +++ linux-4.8.0/include/trace/events/fs.h @@ -0,0 +1,53 @@ +#undef TRACE_SYSTEM +#define TRACE_SYSTEM fs + +#if !defined(_TRACE_FS_H) || defined(TRACE_HEADER_MULTI_READ) +#define _TRACE_FS_H + +#include +#include + +TRACE_EVENT(do_sys_open, + + TP_PROTO(const char *filename, int flags, int mode), + + TP_ARGS(filename, flags, mode), + + TP_STRUCT__entry( + __string( filename, filename ) + __field( int, flags ) + __field( int, mode ) + ), + + TP_fast_assign( + __assign_str(filename, filename); + __entry->flags = flags; + __entry->mode = mode; + ), + + TP_printk("\"%s\" %x %o", + __get_str(filename), __entry->flags, __entry->mode) +); + +TRACE_EVENT(open_exec, + + TP_PROTO(const char *filename), + + TP_ARGS(filename), + + TP_STRUCT__entry( + __string( filename, filename ) + ), + + TP_fast_assign( + __assign_str(filename, filename); + ), + + TP_printk("\"%s\"", + __get_str(filename)) +); + +#endif /* _TRACE_FS_H */ + +/* This part must be outside protection */ +#include --- linux-4.8.0.orig/include/trace/events/i2c.h +++ linux-4.8.0/include/trace/events/i2c.h @@ -20,7 +20,7 @@ /* * drivers/i2c/i2c-core.c */ -extern void i2c_transfer_trace_reg(void); +extern int i2c_transfer_trace_reg(void); extern void i2c_transfer_trace_unreg(void); /* --- linux-4.8.0.orig/include/trace/events/mmflags.h +++ linux-4.8.0/include/trace/events/mmflags.h @@ -47,8 +47,7 @@ {(unsigned long)__GFP_WRITE, "__GFP_WRITE"}, \ {(unsigned long)__GFP_RECLAIM, "__GFP_RECLAIM"}, \ {(unsigned long)__GFP_DIRECT_RECLAIM, "__GFP_DIRECT_RECLAIM"},\ - {(unsigned long)__GFP_KSWAPD_RECLAIM, "__GFP_KSWAPD_RECLAIM"},\ - {(unsigned long)__GFP_OTHER_NODE, "__GFP_OTHER_NODE"} \ + {(unsigned long)__GFP_KSWAPD_RECLAIM, "__GFP_KSWAPD_RECLAIM"}\ #define show_gfp_flags(flags) \ (flags) ? __print_flags(flags, "|", \ --- linux-4.8.0.orig/include/uapi/asm-generic/mman-common.h +++ linux-4.8.0/include/uapi/asm-generic/mman-common.h @@ -72,4 +72,9 @@ #define MAP_HUGE_SHIFT 26 #define MAP_HUGE_MASK 0x3f +#define PKEY_DISABLE_ACCESS 0x1 +#define PKEY_DISABLE_WRITE 0x2 +#define PKEY_ACCESS_MASK (PKEY_DISABLE_ACCESS |\ + PKEY_DISABLE_WRITE) + #endif /* __ASM_GENERIC_MMAN_COMMON_H */ --- linux-4.8.0.orig/include/uapi/asm-generic/unistd.h +++ linux-4.8.0/include/uapi/asm-generic/unistd.h @@ -724,9 +724,15 @@ __SC_COMP(__NR_preadv2, sys_preadv2, compat_sys_preadv2) #define __NR_pwritev2 287 __SC_COMP(__NR_pwritev2, sys_pwritev2, compat_sys_pwritev2) +#define __NR_pkey_mprotect 288 +__SYSCALL(__NR_pkey_mprotect, sys_pkey_mprotect) +#define __NR_pkey_alloc 289 +__SYSCALL(__NR_pkey_alloc, sys_pkey_alloc) +#define __NR_pkey_free 290 +__SYSCALL(__NR_pkey_free, sys_pkey_free) #undef __NR_syscalls -#define __NR_syscalls 288 +#define __NR_syscalls 291 /* * All syscalls below here should go away really, --- linux-4.8.0.orig/include/uapi/linux/Kbuild +++ linux-4.8.0/include/uapi/linux/Kbuild @@ -59,6 +59,7 @@ header-y += atm_tcp.h header-y += atm_zatm.h header-y += audit.h +header-y += aufs_type.h header-y += auto_fs4.h header-y += auto_fs.h header-y += auxvec.h @@ -396,6 +397,7 @@ header-y += suspend_ioctls.h header-y += swab.h header-y += synclink.h +header-y += sync_file.h header-y += sysctl.h header-y += sysinfo.h header-y += target_core_user.h --- linux-4.8.0.orig/include/uapi/linux/atm_zatm.h +++ linux-4.8.0/include/uapi/linux/atm_zatm.h @@ -14,7 +14,6 @@ #include #include -#include #define ZATM_GETPOOL _IOW('a',ATMIOC_SARPRV+1,struct atmif_sioc) /* get pool statistics */ --- linux-4.8.0.orig/include/uapi/linux/aufs_type.h +++ linux-4.8.0/include/uapi/linux/aufs_type.h @@ -0,0 +1,419 @@ +/* + * Copyright (C) 2005-2016 Junjiro R. Okajima + * + * This program, aufs 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; either version 2 of the License, or + * (at your option) any later version. + * + * 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, see . + */ + +#ifndef __AUFS_TYPE_H__ +#define __AUFS_TYPE_H__ + +#define AUFS_NAME "aufs" + +#ifdef __KERNEL__ +/* + * define it before including all other headers. + * sched.h may use pr_* macros before defining "current", so define the + * no-current version first, and re-define later. + */ +#define pr_fmt(fmt) AUFS_NAME " %s:%d: " fmt, __func__, __LINE__ +#include +#undef pr_fmt +#define pr_fmt(fmt) \ + AUFS_NAME " %s:%d:%.*s[%d]: " fmt, __func__, __LINE__, \ + (int)sizeof(current->comm), current->comm, current->pid +#else +#include +#include +#endif /* __KERNEL__ */ + +#include + +#define AUFS_VERSION "4.x-rcN-20160912" + +/* todo? move this to linux-2.6.19/include/magic.h */ +#define AUFS_SUPER_MAGIC ('a' << 24 | 'u' << 16 | 'f' << 8 | 's') + +/* ---------------------------------------------------------------------- */ + +#ifdef CONFIG_AUFS_BRANCH_MAX_127 +typedef int8_t aufs_bindex_t; +#define AUFS_BRANCH_MAX 127 +#else +typedef int16_t aufs_bindex_t; +#ifdef CONFIG_AUFS_BRANCH_MAX_511 +#define AUFS_BRANCH_MAX 511 +#elif defined(CONFIG_AUFS_BRANCH_MAX_1023) +#define AUFS_BRANCH_MAX 1023 +#elif defined(CONFIG_AUFS_BRANCH_MAX_32767) +#define AUFS_BRANCH_MAX 32767 +#endif +#endif + +#ifdef __KERNEL__ +#ifndef AUFS_BRANCH_MAX +#error unknown CONFIG_AUFS_BRANCH_MAX value +#endif +#endif /* __KERNEL__ */ + +/* ---------------------------------------------------------------------- */ + +#define AUFS_FSTYPE AUFS_NAME + +#define AUFS_ROOT_INO 2 +#define AUFS_FIRST_INO 11 + +#define AUFS_WH_PFX ".wh." +#define AUFS_WH_PFX_LEN ((int)sizeof(AUFS_WH_PFX) - 1) +#define AUFS_WH_TMP_LEN 4 +/* a limit for rmdir/rename a dir and copyup */ +#define AUFS_MAX_NAMELEN (NAME_MAX \ + - AUFS_WH_PFX_LEN * 2 /* doubly whiteouted */\ + - 1 /* dot */\ + - AUFS_WH_TMP_LEN) /* hex */ +#define AUFS_XINO_FNAME "." AUFS_NAME ".xino" +#define AUFS_XINO_DEFPATH "/tmp/" AUFS_XINO_FNAME +#define AUFS_XINO_DEF_SEC 30 /* seconds */ +#define AUFS_XINO_DEF_TRUNC 45 /* percentage */ +#define AUFS_DIRWH_DEF 3 +#define AUFS_RDCACHE_DEF 10 /* seconds */ +#define AUFS_RDCACHE_MAX 3600 /* seconds */ +#define AUFS_RDBLK_DEF 512 /* bytes */ +#define AUFS_RDHASH_DEF 32 +#define AUFS_WKQ_NAME AUFS_NAME "d" +#define AUFS_MFS_DEF_SEC 30 /* seconds */ +#define AUFS_MFS_MAX_SEC 3600 /* seconds */ +#define AUFS_FHSM_CACHE_DEF_SEC 30 /* seconds */ +#define AUFS_PLINK_WARN 50 /* number of plinks in a single bucket */ + +/* pseudo-link maintenace under /proc */ +#define AUFS_PLINK_MAINT_NAME "plink_maint" +#define AUFS_PLINK_MAINT_DIR "fs/" AUFS_NAME +#define AUFS_PLINK_MAINT_PATH AUFS_PLINK_MAINT_DIR "/" AUFS_PLINK_MAINT_NAME + +#define AUFS_DIROPQ_NAME AUFS_WH_PFX ".opq" /* whiteouted doubly */ +#define AUFS_WH_DIROPQ AUFS_WH_PFX AUFS_DIROPQ_NAME + +#define AUFS_BASE_NAME AUFS_WH_PFX AUFS_NAME +#define AUFS_PLINKDIR_NAME AUFS_WH_PFX "plnk" +#define AUFS_ORPHDIR_NAME AUFS_WH_PFX "orph" + +/* doubly whiteouted */ +#define AUFS_WH_BASE AUFS_WH_PFX AUFS_BASE_NAME +#define AUFS_WH_PLINKDIR AUFS_WH_PFX AUFS_PLINKDIR_NAME +#define AUFS_WH_ORPHDIR AUFS_WH_PFX AUFS_ORPHDIR_NAME + +/* branch permissions and attributes */ +#define AUFS_BRPERM_RW "rw" +#define AUFS_BRPERM_RO "ro" +#define AUFS_BRPERM_RR "rr" +#define AUFS_BRATTR_COO_REG "coo_reg" +#define AUFS_BRATTR_COO_ALL "coo_all" +#define AUFS_BRATTR_FHSM "fhsm" +#define AUFS_BRATTR_UNPIN "unpin" +#define AUFS_BRATTR_ICEX "icex" +#define AUFS_BRATTR_ICEX_SEC "icexsec" +#define AUFS_BRATTR_ICEX_SYS "icexsys" +#define AUFS_BRATTR_ICEX_TR "icextr" +#define AUFS_BRATTR_ICEX_USR "icexusr" +#define AUFS_BRATTR_ICEX_OTH "icexoth" +#define AUFS_BRRATTR_WH "wh" +#define AUFS_BRWATTR_NLWH "nolwh" +#define AUFS_BRWATTR_MOO "moo" + +#define AuBrPerm_RW 1 /* writable, hardlinkable wh */ +#define AuBrPerm_RO (1 << 1) /* readonly */ +#define AuBrPerm_RR (1 << 2) /* natively readonly */ +#define AuBrPerm_Mask (AuBrPerm_RW | AuBrPerm_RO | AuBrPerm_RR) + +#define AuBrAttr_COO_REG (1 << 3) /* copy-up on open */ +#define AuBrAttr_COO_ALL (1 << 4) +#define AuBrAttr_COO_Mask (AuBrAttr_COO_REG | AuBrAttr_COO_ALL) + +#define AuBrAttr_FHSM (1 << 5) /* file-based hsm */ +#define AuBrAttr_UNPIN (1 << 6) /* rename-able top dir of + branch. meaningless since + linux-3.18-rc1 */ + +/* ignore error in copying XATTR */ +#define AuBrAttr_ICEX_SEC (1 << 7) +#define AuBrAttr_ICEX_SYS (1 << 8) +#define AuBrAttr_ICEX_TR (1 << 9) +#define AuBrAttr_ICEX_USR (1 << 10) +#define AuBrAttr_ICEX_OTH (1 << 11) +#define AuBrAttr_ICEX (AuBrAttr_ICEX_SEC \ + | AuBrAttr_ICEX_SYS \ + | AuBrAttr_ICEX_TR \ + | AuBrAttr_ICEX_USR \ + | AuBrAttr_ICEX_OTH) + +#define AuBrRAttr_WH (1 << 12) /* whiteout-able */ +#define AuBrRAttr_Mask AuBrRAttr_WH + +#define AuBrWAttr_NoLinkWH (1 << 13) /* un-hardlinkable whiteouts */ +#define AuBrWAttr_MOO (1 << 14) /* move-up on open */ +#define AuBrWAttr_Mask (AuBrWAttr_NoLinkWH | AuBrWAttr_MOO) + +#define AuBrAttr_CMOO_Mask (AuBrAttr_COO_Mask | AuBrWAttr_MOO) + +/* #warning test userspace */ +#ifdef __KERNEL__ +#ifndef CONFIG_AUFS_FHSM +#undef AuBrAttr_FHSM +#define AuBrAttr_FHSM 0 +#endif +#ifndef CONFIG_AUFS_XATTR +#undef AuBrAttr_ICEX +#define AuBrAttr_ICEX 0 +#undef AuBrAttr_ICEX_SEC +#define AuBrAttr_ICEX_SEC 0 +#undef AuBrAttr_ICEX_SYS +#define AuBrAttr_ICEX_SYS 0 +#undef AuBrAttr_ICEX_TR +#define AuBrAttr_ICEX_TR 0 +#undef AuBrAttr_ICEX_USR +#define AuBrAttr_ICEX_USR 0 +#undef AuBrAttr_ICEX_OTH +#define AuBrAttr_ICEX_OTH 0 +#endif +#endif + +/* the longest combination */ +/* AUFS_BRATTR_ICEX and AUFS_BRATTR_ICEX_TR don't affect here */ +#define AuBrPermStrSz sizeof(AUFS_BRPERM_RW \ + "+" AUFS_BRATTR_COO_REG \ + "+" AUFS_BRATTR_FHSM \ + "+" AUFS_BRATTR_UNPIN \ + "+" AUFS_BRATTR_ICEX_SEC \ + "+" AUFS_BRATTR_ICEX_SYS \ + "+" AUFS_BRATTR_ICEX_USR \ + "+" AUFS_BRATTR_ICEX_OTH \ + "+" AUFS_BRWATTR_NLWH) + +typedef struct { + char a[AuBrPermStrSz]; +} au_br_perm_str_t; + +static inline int au_br_writable(int brperm) +{ + return brperm & AuBrPerm_RW; +} + +static inline int au_br_whable(int brperm) +{ + return brperm & (AuBrPerm_RW | AuBrRAttr_WH); +} + +static inline int au_br_wh_linkable(int brperm) +{ + return !(brperm & AuBrWAttr_NoLinkWH); +} + +static inline int au_br_cmoo(int brperm) +{ + return brperm & AuBrAttr_CMOO_Mask; +} + +static inline int au_br_fhsm(int brperm) +{ + return brperm & AuBrAttr_FHSM; +} + +/* ---------------------------------------------------------------------- */ + +/* ioctl */ +enum { + /* readdir in userspace */ + AuCtl_RDU, + AuCtl_RDU_INO, + + AuCtl_WBR_FD, /* pathconf wrapper */ + AuCtl_IBUSY, /* busy inode */ + AuCtl_MVDOWN, /* move-down */ + AuCtl_BR, /* info about branches */ + AuCtl_FHSM_FD /* connection for fhsm */ +}; + +/* borrowed from linux/include/linux/kernel.h */ +#ifndef ALIGN +#define ALIGN(x, a) __ALIGN_MASK(x, (typeof(x))(a)-1) +#define __ALIGN_MASK(x, mask) (((x)+(mask))&~(mask)) +#endif + +/* borrowed from linux/include/linux/compiler-gcc3.h */ +#ifndef __aligned +#define __aligned(x) __attribute__((aligned(x))) +#endif + +#ifdef __KERNEL__ +#ifndef __packed +#define __packed __attribute__((packed)) +#endif +#endif + +struct au_rdu_cookie { + uint64_t h_pos; + int16_t bindex; + uint8_t flags; + uint8_t pad; + uint32_t generation; +} __aligned(8); + +struct au_rdu_ent { + uint64_t ino; + int16_t bindex; + uint8_t type; + uint8_t nlen; + uint8_t wh; + char name[0]; +} __aligned(8); + +static inline int au_rdu_len(int nlen) +{ + /* include the terminating NULL */ + return ALIGN(sizeof(struct au_rdu_ent) + nlen + 1, + sizeof(uint64_t)); +} + +union au_rdu_ent_ul { + struct au_rdu_ent __user *e; + uint64_t ul; +}; + +enum { + AufsCtlRduV_SZ, + AufsCtlRduV_End +}; + +struct aufs_rdu { + /* input */ + union { + uint64_t sz; /* AuCtl_RDU */ + uint64_t nent; /* AuCtl_RDU_INO */ + }; + union au_rdu_ent_ul ent; + uint16_t verify[AufsCtlRduV_End]; + + /* input/output */ + uint32_t blk; + + /* output */ + union au_rdu_ent_ul tail; + /* number of entries which were added in a single call */ + uint64_t rent; + uint8_t full; + uint8_t shwh; + + struct au_rdu_cookie cookie; +} __aligned(8); + +/* ---------------------------------------------------------------------- */ + +struct aufs_wbr_fd { + uint32_t oflags; + int16_t brid; +} __aligned(8); + +/* ---------------------------------------------------------------------- */ + +struct aufs_ibusy { + uint64_t ino, h_ino; + int16_t bindex; +} __aligned(8); + +/* ---------------------------------------------------------------------- */ + +/* error code for move-down */ +/* the actual message strings are implemented in aufs-util.git */ +enum { + EAU_MVDOWN_OPAQUE = 1, + EAU_MVDOWN_WHITEOUT, + EAU_MVDOWN_UPPER, + EAU_MVDOWN_BOTTOM, + EAU_MVDOWN_NOUPPER, + EAU_MVDOWN_NOLOWERBR, + EAU_Last +}; + +/* flags for move-down */ +#define AUFS_MVDOWN_DMSG 1 +#define AUFS_MVDOWN_OWLOWER (1 << 1) /* overwrite lower */ +#define AUFS_MVDOWN_KUPPER (1 << 2) /* keep upper */ +#define AUFS_MVDOWN_ROLOWER (1 << 3) /* do even if lower is RO */ +#define AUFS_MVDOWN_ROLOWER_R (1 << 4) /* did on lower RO */ +#define AUFS_MVDOWN_ROUPPER (1 << 5) /* do even if upper is RO */ +#define AUFS_MVDOWN_ROUPPER_R (1 << 6) /* did on upper RO */ +#define AUFS_MVDOWN_BRID_UPPER (1 << 7) /* upper brid */ +#define AUFS_MVDOWN_BRID_LOWER (1 << 8) /* lower brid */ +#define AUFS_MVDOWN_FHSM_LOWER (1 << 9) /* find fhsm attr for lower */ +#define AUFS_MVDOWN_STFS (1 << 10) /* req. stfs */ +#define AUFS_MVDOWN_STFS_FAILED (1 << 11) /* output: stfs is unusable */ +#define AUFS_MVDOWN_BOTTOM (1 << 12) /* output: no more lowers */ + +/* index for move-down */ +enum { + AUFS_MVDOWN_UPPER, + AUFS_MVDOWN_LOWER, + AUFS_MVDOWN_NARRAY +}; + +/* + * additional info of move-down + * number of free blocks and inodes. + * subset of struct kstatfs, but smaller and always 64bit. + */ +struct aufs_stfs { + uint64_t f_blocks; + uint64_t f_bavail; + uint64_t f_files; + uint64_t f_ffree; +}; + +struct aufs_stbr { + int16_t brid; /* optional input */ + int16_t bindex; /* output */ + struct aufs_stfs stfs; /* output when AUFS_MVDOWN_STFS set */ +} __aligned(8); + +struct aufs_mvdown { + uint32_t flags; /* input/output */ + struct aufs_stbr stbr[AUFS_MVDOWN_NARRAY]; /* input/output */ + int8_t au_errno; /* output */ +} __aligned(8); + +/* ---------------------------------------------------------------------- */ + +union aufs_brinfo { + /* PATH_MAX may differ between kernel-space and user-space */ + char _spacer[4096]; + struct { + int16_t id; + int perm; + char path[0]; + }; +} __aligned(8); + +/* ---------------------------------------------------------------------- */ + +#define AuCtlType 'A' +#define AUFS_CTL_RDU _IOWR(AuCtlType, AuCtl_RDU, struct aufs_rdu) +#define AUFS_CTL_RDU_INO _IOWR(AuCtlType, AuCtl_RDU_INO, struct aufs_rdu) +#define AUFS_CTL_WBR_FD _IOW(AuCtlType, AuCtl_WBR_FD, \ + struct aufs_wbr_fd) +#define AUFS_CTL_IBUSY _IOWR(AuCtlType, AuCtl_IBUSY, struct aufs_ibusy) +#define AUFS_CTL_MVDOWN _IOWR(AuCtlType, AuCtl_MVDOWN, \ + struct aufs_mvdown) +#define AUFS_CTL_BRINFO _IOW(AuCtlType, AuCtl_BR, union aufs_brinfo) +#define AUFS_CTL_FHSM_FD _IOW(AuCtlType, AuCtl_FHSM_FD, int) + +#endif /* __AUFS_TYPE_H__ */ --- linux-4.8.0.orig/include/uapi/linux/btrfs.h +++ linux-4.8.0/include/uapi/linux/btrfs.h @@ -239,7 +239,17 @@ * Used by: * struct btrfs_ioctl_feature_flags */ -#define BTRFS_FEATURE_COMPAT_RO_FREE_SPACE_TREE (1ULL << 0) +#define BTRFS_FEATURE_COMPAT_RO_FREE_SPACE_TREE (1ULL << 0) +/* + * Older kernels (< 4.9) on big-endian systems produced broken free space tree + * bitmaps, and btrfs-progs also used to corrupt the free space tree (versions + * < 4.7.3). If this bit is clear, then the free space tree cannot be trusted. + * btrfs-progs can also intentionally clear this bit to ask the kernel to + * rebuild the free space tree, however this might not work on older kernels + * that do not know about this bit. If not sure, clear the cache manually on + * first mount when booting older kernel versions. + */ +#define BTRFS_FEATURE_COMPAT_RO_FREE_SPACE_TREE_VALID (1ULL << 1) #define BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF (1ULL << 0) #define BTRFS_FEATURE_INCOMPAT_DEFAULT_SUBVOL (1ULL << 1) --- linux-4.8.0.orig/include/uapi/linux/can.h +++ linux-4.8.0/include/uapi/linux/can.h @@ -196,5 +196,6 @@ }; #define CAN_INV_FILTER 0x20000000U /* to be set in can_filter.can_id */ +#define CAN_RAW_FILTER_MAX 512 /* maximum number of can_filter set via setsockopt() */ #endif /* !_UAPI_CAN_H */ --- linux-4.8.0.orig/include/uapi/linux/fs.h +++ linux-4.8.0/include/uapi/linux/fs.h @@ -132,6 +132,7 @@ #define MS_LAZYTIME (1<<25) /* Update the on-disk [acm]times lazily */ /* These sb flags are internal to the kernel */ +#define MS_SUBMOUNT (1<<26) #define MS_NOSEC (1<<28) #define MS_BORN (1<<29) #define MS_ACTIVE (1<<30) --- linux-4.8.0.orig/include/uapi/linux/if_link.h +++ linux-4.8.0/include/uapi/linux/if_link.h @@ -496,6 +496,7 @@ IFLA_VXLAN_COLLECT_METADATA, IFLA_VXLAN_LABEL, IFLA_VXLAN_GPE, + IFLA_VXLAN_FAN_MAP = 33, __IFLA_VXLAN_MAX }; #define IFLA_VXLAN_MAX (__IFLA_VXLAN_MAX - 1) --- linux-4.8.0.orig/include/uapi/linux/if_tunnel.h +++ linux-4.8.0/include/uapi/linux/if_tunnel.h @@ -60,6 +60,10 @@ IFLA_IPTUN_ENCAP_FLAGS, IFLA_IPTUN_ENCAP_SPORT, IFLA_IPTUN_ENCAP_DPORT, + + __IFLA_IPTUN_VENDOR_BREAK, /* Ensure new entries do not hit the below. */ + IFLA_IPTUN_FAN_MAP = 33, + __IFLA_IPTUN_MAX, }; #define IFLA_IPTUN_MAX (__IFLA_IPTUN_MAX - 1) @@ -136,4 +140,20 @@ }; #define IFLA_VTI_MAX (__IFLA_VTI_MAX - 1) + +enum { + IFLA_FAN_UNSPEC, + IFLA_FAN_MAPPING, + __IFLA_FAN_MAX, +}; + +#define IFLA_FAN_MAX (__IFLA_FAN_MAX - 1) + +struct ifla_fan_map { + __be32 underlay; + __be32 overlay; + __u16 underlay_prefix; + __u16 overlay_prefix; +}; + #endif /* _UAPI_IF_TUNNEL_H_ */ --- linux-4.8.0.orig/include/uapi/linux/input-event-codes.h +++ linux-4.8.0/include/uapi/linux/input-event-codes.h @@ -640,7 +640,7 @@ * Control a data application associated with the currently viewed channel, * e.g. teletext or data broadcast application (MHEG, MHP, HbbTV, etc.) */ -#define KEY_DATA 0x275 +#define KEY_DATA 0x277 #define BTN_TRIGGER_HAPPY 0x2c0 #define BTN_TRIGGER_HAPPY1 0x2c0 --- linux-4.8.0.orig/include/uapi/linux/kd.h +++ linux-4.8.0/include/uapi/linux/kd.h @@ -45,6 +45,8 @@ #define KD_GRAPHICS 0x01 #define KD_TEXT0 0x02 /* obsolete */ #define KD_TEXT1 0x03 /* obsolete */ +#define KD_TRANSPARENT 0x04 + #define KDGETMODE 0x4B3B /* get current mode */ #define KDMAPDISP 0x4B3C /* map display into address space */ --- linux-4.8.0.orig/include/uapi/linux/rtnetlink.h +++ linux-4.8.0/include/uapi/linux/rtnetlink.h @@ -350,7 +350,7 @@ #define RTNH_F_OFFLOAD 8 /* offloaded route */ #define RTNH_F_LINKDOWN 16 /* carrier-down on nexthop */ -#define RTNH_COMPARE_MASK (RTNH_F_DEAD | RTNH_F_LINKDOWN) +#define RTNH_COMPARE_MASK (RTNH_F_DEAD | RTNH_F_LINKDOWN | RTNH_F_OFFLOAD) /* Macros to handle hexthops */ --- linux-4.8.0.orig/init/Kconfig +++ linux-4.8.0/init/Kconfig @@ -210,6 +210,15 @@ but you may wish to use a different default here to make a minimal system more usable with less configuration. +config VERSION_SIGNATURE + string "Arbitrary version signature" + help + This string will be created in a file, /proc/version_signature. It + is useful in determining arbitrary data about your kernel. For instance, + if you have several kernels of the same version, but need to keep track + of a revision of the same kernel, but not affect it's ability to load + compatible modules, this is the easiest way to do that. + config SWAP bool "Support for paging of anonymous memory (swap)" depends on MMU && BLOCK @@ -1848,6 +1857,15 @@ module verification, kexec image verification and firmware blob verification. +config SYSTEM_BLACKLIST_KEYRING + bool "Provide system-wide ring of blacklisted keys" + depends on KEYS + help + Provide a system keyring to which blacklisted keys can be added. + Keys in the keyring are considered entirely untrusted. Keys in this + keyring are used by the module signature checking to reject loading + of modules signed with a blacklisted key. + config PROFILING bool "Profiling support" help @@ -1989,6 +2007,15 @@ comment "Do not forget to sign required modules with scripts/sign-file" depends on MODULE_SIG_FORCE && !MODULE_SIG_ALL +config MODULE_SIG_UEFI + bool "Allow modules signed with certs stored in UEFI" + depends on MODULE_SIG && SYSTEM_BLACKLIST_KEYRING && EFI + select EFI_SIGNATURE_LIST_PARSER + help + This will import certificates stored in UEFI and allow modules + signed with those to be loaded. It will also disallow loading + of modules stored in the UEFI dbx variable. + choice prompt "Which hash algorithm should modules be signed with?" depends on MODULE_SIG --- linux-4.8.0.orig/init/do_mounts.c +++ linux-4.8.0/init/do_mounts.c @@ -549,6 +549,7 @@ void __init prepare_namespace(void) { int is_floppy; + int err; if (root_delay) { printk(KERN_INFO "Waiting %d sec before mounting root device...\n", @@ -602,6 +603,13 @@ devtmpfs_mount("dev"); sys_mount(".", "/", NULL, MS_MOVE, NULL); sys_chroot("."); +#ifdef CONFIG_BLOCK + /* recreate the /dev/root */ + err = create_dev("/dev/root", ROOT_DEV); + + if (err < 0) + pr_emerg("Failed to create /dev/root: %d\n", err); +#endif } static bool is_tmpfs; --- linux-4.8.0.orig/init/main.c +++ linux-4.8.0/init/main.c @@ -747,16 +747,16 @@ static int __init_or_module do_one_initcall_debug(initcall_t fn) { - ktime_t calltime, delta, rettime; + unsigned long long calltime, delta, rettime; unsigned long long duration; int ret; printk(KERN_DEBUG "calling %pF @ %i\n", fn, task_pid_nr(current)); - calltime = ktime_get(); + calltime = local_clock(); ret = fn(); - rettime = ktime_get(); - delta = ktime_sub(rettime, calltime); - duration = (unsigned long long) ktime_to_ns(delta) >> 10; + rettime = local_clock(); + delta = rettime - calltime; + duration = delta >> 10; printk(KERN_DEBUG "initcall %pF returned %d after %lld usecs\n", fn, ret, duration); --- linux-4.8.0.orig/init/version.c +++ linux-4.8.0/init/version.c @@ -45,7 +45,11 @@ /* FIXED STRINGS! Don't touch! */ const char linux_banner[] = "Linux version " UTS_RELEASE " (" LINUX_COMPILE_BY "@" - LINUX_COMPILE_HOST ") (" LINUX_COMPILER ") " UTS_VERSION "\n"; + LINUX_COMPILE_HOST ") (" LINUX_COMPILER ") " UTS_VERSION +#ifdef CONFIG_VERSION_SIGNATURE + " (" CONFIG_VERSION_SIGNATURE ")" +#endif + "\n"; const char linux_proc_banner[] = "%s version %s" --- linux-4.8.0.orig/ipc/sem.c +++ linux-4.8.0/ipc/sem.c @@ -162,14 +162,21 @@ /* * Locking: + * a) global sem_lock() for read/write * sem_undo.id_next, * sem_array.complex_count, - * sem_array.pending{_alter,_cont}, - * sem_array.sem_undo: global sem_lock() for read/write - * sem_undo.proc_next: only "current" is allowed to read/write that field. + * sem_array.complex_mode + * sem_array.pending{_alter,_const}, + * sem_array.sem_undo * + * b) global or semaphore sem_lock() for read/write: * sem_array.sem_base[i].pending_{const,alter}: - * global or semaphore sem_lock() for read/write + * sem_array.complex_mode (for read) + * + * c) special: + * sem_undo_list.list_proc: + * * undo_list->lock for write + * * rcu for read */ #define sc_semmsl sem_ctls[0] @@ -260,31 +267,62 @@ } /* - * Wait until all currently ongoing simple ops have completed. + * Enter the mode suitable for non-simple operations: * Caller must own sem_perm.lock. - * New simple ops cannot start, because simple ops first check - * that sem_perm.lock is free. - * that a) sem_perm.lock is free and b) complex_count is 0. */ -static void sem_wait_array(struct sem_array *sma) +static void complexmode_enter(struct sem_array *sma) { int i; struct sem *sem; - if (sma->complex_count) { - /* The thread that increased sma->complex_count waited on - * all sem->lock locks. Thus we don't need to wait again. - */ + if (sma->complex_mode) { + /* We are already in complex_mode. Nothing to do */ return; } + /* We need a full barrier after seting complex_mode: + * The write to complex_mode must be visible + * before we read the first sem->lock spinlock state. + */ + smp_store_mb(sma->complex_mode, true); + for (i = 0; i < sma->sem_nsems; i++) { sem = sma->sem_base + i; spin_unlock_wait(&sem->lock); } + /* + * spin_unlock_wait() is not a memory barriers, it is only a + * control barrier. The code must pair with spin_unlock(&sem->lock), + * thus just the control barrier is insufficient. + * + * smp_rmb() is sufficient, as writes cannot pass the control barrier. + */ + smp_rmb(); } /* + * Try to leave the mode that disallows simple operations: + * Caller must own sem_perm.lock. + */ +static void complexmode_tryleave(struct sem_array *sma) +{ + if (sma->complex_count) { + /* Complex ops are sleeping. + * We must stay in complex mode + */ + return; + } + /* + * Immediately after setting complex_mode to false, + * a simple op can start. Thus: all memory writes + * performed by the current operation must be visible + * before we set complex_mode to false. + */ + smp_store_release(&sma->complex_mode, false); +} + +#define SEM_GLOBAL_LOCK (-1) +/* * If the request contains only one semaphore operation, and there are * no complex transactions pending, lock only the semaphore involved. * Otherwise, lock the entire semaphore array, since we either have @@ -300,56 +338,42 @@ /* Complex operation - acquire a full lock */ ipc_lock_object(&sma->sem_perm); - /* And wait until all simple ops that are processed - * right now have dropped their locks. - */ - sem_wait_array(sma); - return -1; + /* Prevent parallel simple ops */ + complexmode_enter(sma); + return SEM_GLOBAL_LOCK; } /* * Only one semaphore affected - try to optimize locking. - * The rules are: - * - optimized locking is possible if no complex operation - * is either enqueued or processed right now. - * - The test for enqueued complex ops is simple: - * sma->complex_count != 0 - * - Testing for complex ops that are processed right now is - * a bit more difficult. Complex ops acquire the full lock - * and first wait that the running simple ops have completed. - * (see above) - * Thus: If we own a simple lock and the global lock is free - * and complex_count is now 0, then it will stay 0 and - * thus just locking sem->lock is sufficient. + * Optimized locking is possible if no complex operation + * is either enqueued or processed right now. + * + * Both facts are tracked by complex_mode. */ sem = sma->sem_base + sops->sem_num; - if (sma->complex_count == 0) { + /* + * Initial check for complex_mode. Just an optimization, + * no locking, no memory barrier. + */ + if (!sma->complex_mode) { /* * It appears that no complex operation is around. * Acquire the per-semaphore lock. */ spin_lock(&sem->lock); - /* Then check that the global lock is free */ - if (!spin_is_locked(&sma->sem_perm.lock)) { - /* - * We need a memory barrier with acquire semantics, - * otherwise we can race with another thread that does: - * complex_count++; - * spin_unlock(sem_perm.lock); - */ - smp_acquire__after_ctrl_dep(); + /* + * See 51d7d5205d33 + * ("powerpc: Add smp_mb() to arch_spin_is_locked()"): + * A full barrier is required: the write of sem->lock + * must be visible before the read is executed + */ + smp_mb(); - /* - * Now repeat the test of complex_count: - * It can't change anymore until we drop sem->lock. - * Thus: if is now 0, then it will stay 0. - */ - if (sma->complex_count == 0) { - /* fast path successful! */ - return sops->sem_num; - } + if (!smp_load_acquire(&sma->complex_mode)) { + /* fast path successful! */ + return sops->sem_num; } spin_unlock(&sem->lock); } @@ -369,15 +393,16 @@ /* Not a false alarm, thus complete the sequence for a * full lock. */ - sem_wait_array(sma); - return -1; + complexmode_enter(sma); + return SEM_GLOBAL_LOCK; } } static inline void sem_unlock(struct sem_array *sma, int locknum) { - if (locknum == -1) { + if (locknum == SEM_GLOBAL_LOCK) { unmerge_queues(sma); + complexmode_tryleave(sma); ipc_unlock_object(&sma->sem_perm); } else { struct sem *sem = sma->sem_base + locknum; @@ -529,6 +554,7 @@ } sma->complex_count = 0; + sma->complex_mode = true; /* dropped by sem_unlock below */ INIT_LIST_HEAD(&sma->pending_alter); INIT_LIST_HEAD(&sma->pending_const); INIT_LIST_HEAD(&sma->list_id); @@ -1982,6 +2008,14 @@ error = get_queue_result(&queue); /* + * wake_up_sem_queue_do operates on queue without locking, so we + * need a barrier here to order our read of queue.status and the + * subsequent reuse of queue (queue is on the stack so will be + * most likely reused in the next function call). + */ + smp_mb(); + + /* * Array removed? If yes, leave without sem_unlock(). */ if (IS_ERR(sma)) { @@ -2184,10 +2218,10 @@ /* * The proc interface isn't aware of sem_lock(), it calls * ipc_lock_object() directly (in sysvipc_find_ipc). - * In order to stay compatible with sem_lock(), we must wait until - * all simple semop() calls have left their critical regions. + * In order to stay compatible with sem_lock(), we must + * enter / leave complex_mode. */ - sem_wait_array(sma); + complexmode_enter(sma); sem_otime = get_semotime(sma); @@ -2204,6 +2238,8 @@ sem_otime, sma->sem_ctime); + complexmode_tryleave(sma); + return 0; } #endif --- linux-4.8.0.orig/kernel/Makefile +++ linux-4.8.0/kernel/Makefile @@ -57,6 +57,7 @@ obj-$(CONFIG_UID16) += uid16.o obj-$(CONFIG_MODULES) += module.o obj-$(CONFIG_MODULE_SIG) += module_signing.o +obj-$(CONFIG_MODULE_SIG_UEFI) += modsign_uefi.o obj-$(CONFIG_KALLSYMS) += kallsyms.o obj-$(CONFIG_BSD_PROCESS_ACCT) += acct.o obj-$(CONFIG_KEXEC_CORE) += kexec_core.o @@ -113,6 +114,8 @@ obj-$(CONFIG_HAS_IOMEM) += memremap.o +$(obj)/modsign_uefi.o: KBUILD_CFLAGS += -fshort-wchar + $(obj)/configs.o: $(obj)/config_data.h # config_data.h contains the same information as ikconfig.h but gzipped. --- linux-4.8.0.orig/kernel/bpf/hashtab.c +++ linux-4.8.0/kernel/bpf/hashtab.c @@ -687,7 +687,8 @@ hlist_for_each_entry_safe(l, n, head, hash_node) { hlist_del_rcu(&l->hash_node); - htab_elem_free(htab, l); + if (l->state != HTAB_EXTRA_ELEM_USED) + htab_elem_free(htab, l); } } } --- linux-4.8.0.orig/kernel/capability.c +++ linux-4.8.0/kernel/capability.c @@ -457,6 +457,19 @@ EXPORT_SYMBOL(file_ns_capable); /** + * privileged_wrt_inode_uidgid - Do capabilities in the namespace work over the inode? + * @ns: The user namespace in question + * @inode: The inode in question + * + * Return true if the inode uid and gid are within the namespace. + */ +bool privileged_wrt_inode_uidgid(struct user_namespace *ns, const struct inode *inode) +{ + return kuid_has_mapping(ns, inode->i_uid) && + kgid_has_mapping(ns, inode->i_gid); +} + +/** * capable_wrt_inode_uidgid - Check nsown_capable and uid and gid mapped * @inode: The inode in question * @cap: The capability in question @@ -469,7 +482,26 @@ { struct user_namespace *ns = current_user_ns(); - return ns_capable(ns, cap) && kuid_has_mapping(ns, inode->i_uid) && - kgid_has_mapping(ns, inode->i_gid); + return ns_capable(ns, cap) && privileged_wrt_inode_uidgid(ns, inode); } EXPORT_SYMBOL(capable_wrt_inode_uidgid); + +/** + * ptracer_capable - Determine if the ptracer holds CAP_SYS_PTRACE in the namespace + * @tsk: The task that may be ptraced + * @ns: The user namespace to search for CAP_SYS_PTRACE in + * + * Return true if the task that is ptracing the current task had CAP_SYS_PTRACE + * in the specified user namespace. + */ +bool ptracer_capable(struct task_struct *tsk, struct user_namespace *ns) +{ + int ret = 0; /* An absent tracer adds no restrictions */ + const struct cred *cred; + rcu_read_lock(); + cred = rcu_dereference(tsk->ptracer_cred); + if (cred) + ret = security_capable_noaudit(cred, ns, CAP_SYS_PTRACE); + rcu_read_unlock(); + return (ret == 0); +} --- linux-4.8.0.orig/kernel/cpu.c +++ linux-4.8.0/kernel/cpu.c @@ -578,7 +578,6 @@ kthread_unpark(this_cpu_read(cpuhp_state.thread)); } -#ifdef CONFIG_HOTPLUG_CPU EXPORT_SYMBOL(register_cpu_notifier); EXPORT_SYMBOL(__register_cpu_notifier); void unregister_cpu_notifier(struct notifier_block *nb) @@ -595,6 +594,7 @@ } EXPORT_SYMBOL(__unregister_cpu_notifier); +#ifdef CONFIG_HOTPLUG_CPU /** * clear_tasks_mm_cpumask - Safely clear tasks' mm_cpumask for a CPU * @cpu: a CPU id --- linux-4.8.0.orig/kernel/cred.c +++ linux-4.8.0/kernel/cred.c @@ -574,38 +574,30 @@ } /** - * prepare_kernel_cred - Prepare a set of credentials for a kernel service - * @daemon: A userspace daemon to be used as a reference - * - * Prepare a set of credentials for a kernel service. This can then be used to - * override a task's own credentials so that work can be done on behalf of that - * task that requires a different subjective context. - * - * @daemon is used to provide a base for the security record, but can be NULL. - * If @daemon is supplied, then the security data will be derived from that; - * otherwise they'll be set to 0 and no groups, full capabilities and no keys. + * clone_cred - Create a new copy of a set of credentials + * @old: Credentials to be copied * - * The caller may change these controls afterwards if desired. + * Prepare a new set of credentials that is an exact copy of @old. This can + * optionally be modified and used to override a task's own credentials so + * that work can be done on behalf of that task that requires a different + * subjective context. * - * Returns the new credentials or NULL if out of memory. + * Returns the new credentials or NULL if @old is NULL or if out of memory. * * Does not take, and does not return holding current->cred_replace_mutex. */ -struct cred *prepare_kernel_cred(struct task_struct *daemon) +struct cred *clone_cred(const struct cred *old) { - const struct cred *old; struct cred *new; + if (!old) + return NULL; + new = kmem_cache_alloc(cred_jar, GFP_KERNEL); if (!new) return NULL; - kdebug("prepare_kernel_cred() alloc %p", new); - - if (daemon) - old = get_task_cred(daemon); - else - old = get_cred(&init_cred); + kdebug("clone_cred() alloc %p", new); validate_creds(old); @@ -630,15 +622,47 @@ if (security_prepare_creds(new, old, GFP_KERNEL) < 0) goto error; - put_cred(old); validate_creds(new); return new; error: put_cred(new); - put_cred(old); return NULL; } +EXPORT_SYMBOL(clone_cred); + +/** + * prepare_kernel_cred - Prepare a set of credentials for a kernel service + * @daemon: A userspace daemon to be used as a reference + * + * Prepare a set of credentials for a kernel service. This can then be used to + * override a task's own credentials so that work can be done on behalf of that + * task that requires a different subjective context. + * + * @daemon is used to provide a base for the security record, but can be NULL. + * If @daemon is supplied, then the security data will be derived from that; + * otherwise they'll be set to 0 and no groups, full capabilities and no keys. + * + * The caller may change these controls afterwards if desired. + * + * Returns the new credentials or NULL if out of memory. + * + * Does not take, and does not return holding current->cred_replace_mutex. + */ +struct cred *prepare_kernel_cred(struct task_struct *daemon) +{ + const struct cred *old; + struct cred *new; + + if (daemon) + old = get_task_cred(daemon); + else + old = get_cred(&init_cred); + + new = clone_cred(old); + put_cred(old); + return new; +} EXPORT_SYMBOL(prepare_kernel_cred); /** --- linux-4.8.0.orig/kernel/debug/debug_core.c +++ linux-4.8.0/kernel/debug/debug_core.c @@ -598,11 +598,11 @@ /* * Wait for the other CPUs to be notified and be waiting for us: */ - time_left = loops_per_jiffy * HZ; + time_left = MSEC_PER_SEC; while (kgdb_do_roundup && --time_left && (atomic_read(&masters_in_kgdb) + atomic_read(&slaves_in_kgdb)) != online_cpus) - cpu_relax(); + udelay(1000); if (!time_left) pr_crit("Timed out waiting for secondary CPUs.\n"); --- linux-4.8.0.orig/kernel/events/core.c +++ linux-4.8.0/kernel/events/core.c @@ -389,8 +389,13 @@ * 0 - disallow raw tracepoint access for unpriv * 1 - disallow cpu events for unpriv * 2 - disallow kernel profiling for unpriv + * 3 - disallow all unpriv perf event use */ -int sysctl_perf_event_paranoid __read_mostly = 2; +#ifdef CONFIG_SECURITY_PERF_EVENTS_RESTRICT +int sysctl_perf_event_paranoid __read_mostly = 3; +#else +int sysctl_perf_event_paranoid __read_mostly = 1; +#endif /* Minimum for 512 kiB + 1 user control page */ int sysctl_perf_event_mlock __read_mostly = 512 + (PAGE_SIZE / 1024); /* 'free' kiB per user */ @@ -7908,6 +7913,7 @@ * if is not specified, the range is treated as a single address. */ enum { + IF_ACT_NONE = -1, IF_ACT_FILTER, IF_ACT_START, IF_ACT_STOP, @@ -7931,6 +7937,7 @@ { IF_SRC_KERNEL, "%u/%u" }, { IF_SRC_FILEADDR, "%u@%s" }, { IF_SRC_KERNELADDR, "%u" }, + { IF_ACT_NONE, NULL }, }; /* @@ -9395,6 +9402,9 @@ if (flags & ~PERF_FLAG_ALL) return -EINVAL; + if (perf_paranoid_any() && !capable(CAP_SYS_ADMIN)) + return -EACCES; + err = perf_copy_attr(attr_uptr, &attr); if (err) return err; --- linux-4.8.0.orig/kernel/fork.c +++ linux-4.8.0/kernel/fork.c @@ -88,6 +88,11 @@ #define CREATE_TRACE_POINTS #include +#ifdef CONFIG_USER_NS +extern int unprivileged_userns_clone; +#else +#define unprivileged_userns_clone 0 +#endif /* * Minimum number of threads to boot the kernel @@ -477,7 +482,7 @@ struct inode *inode = file_inode(file); struct address_space *mapping = file->f_mapping; - get_file(file); + vma_get_file(tmp); if (tmp->vm_flags & VM_DENYWRITE) atomic_dec(&inode->i_writecount); i_mmap_lock_write(mapping); @@ -598,7 +603,8 @@ #endif } -static struct mm_struct *mm_init(struct mm_struct *mm, struct task_struct *p) +static struct mm_struct *mm_init(struct mm_struct *mm, struct task_struct *p, + struct user_namespace *user_ns) { mm->mmap = NULL; mm->mm_rb = RB_ROOT; @@ -638,6 +644,7 @@ if (init_new_context(p, mm)) goto fail_nocontext; + mm->user_ns = get_user_ns(user_ns); return mm; fail_nocontext: @@ -683,7 +690,7 @@ return NULL; memset(mm, 0, sizeof(*mm)); - return mm_init(mm, current); + return mm_init(mm, current, current_user_ns()); } /* @@ -698,6 +705,7 @@ destroy_context(mm); mmu_notifier_mm_destroy(mm); check_mm(mm); + put_user_ns(mm->user_ns); free_mm(mm); } EXPORT_SYMBOL_GPL(__mmdrop); @@ -977,7 +985,7 @@ memcpy(mm, oldmm, sizeof(*mm)); - if (!mm_init(mm, tsk)) + if (!mm_init(mm, tsk, mm->user_ns)) goto fail_nomem; err = dup_mmap(mm, oldmm); @@ -1314,6 +1322,10 @@ if ((clone_flags & (CLONE_NEWUSER|CLONE_FS)) == (CLONE_NEWUSER|CLONE_FS)) return ERR_PTR(-EINVAL); + if ((clone_flags & CLONE_NEWUSER) && !unprivileged_userns_clone) + if (!capable(CAP_SYS_ADMIN)) + return ERR_PTR(-EPERM); + /* * Thread groups must share signals as well, and detached threads * can only be started up within the thread group. @@ -2047,6 +2059,12 @@ if (unshare_flags & CLONE_NEWNS) unshare_flags |= CLONE_FS; + if ((unshare_flags & CLONE_NEWUSER) && !unprivileged_userns_clone) { + err = -EPERM; + if (!capable(CAP_SYS_ADMIN)) + goto bad_unshare_out; + } + err = check_unshare_flags(unshare_flags); if (err) goto bad_unshare_out; --- linux-4.8.0.orig/kernel/irq/Kconfig +++ linux-4.8.0/kernel/irq/Kconfig @@ -95,6 +95,10 @@ config IRQ_FORCED_THREADING bool +config IRQ_FORCED_THREADING_DEFAULT + bool "Use IRQ threading by default" + depends on IRQ_FORCED_THREADING + config SPARSE_IRQ bool "Support sparse irq numbering" if MAY_HAVE_SPARSE_IRQ ---help--- --- linux-4.8.0.orig/kernel/irq/generic-chip.c +++ linux-4.8.0/kernel/irq/generic-chip.c @@ -411,8 +411,29 @@ } EXPORT_SYMBOL_GPL(irq_map_generic_chip); +static void irq_unmap_generic_chip(struct irq_domain *d, unsigned int virq) +{ + struct irq_data *data = irq_domain_get_irq_data(d, virq); + struct irq_domain_chip_generic *dgc = d->gc; + unsigned int hw_irq = data->hwirq; + struct irq_chip_generic *gc; + int irq_idx; + + gc = irq_get_domain_generic_chip(d, hw_irq); + if (!gc) + return; + + irq_idx = hw_irq % dgc->irqs_per_chip; + + clear_bit(irq_idx, &gc->installed); + irq_domain_set_info(d, virq, hw_irq, &no_irq_chip, NULL, NULL, NULL, + NULL); + +} + struct irq_domain_ops irq_generic_chip_ops = { .map = irq_map_generic_chip, + .unmap = irq_unmap_generic_chip, .xlate = irq_domain_xlate_onetwocell, }; EXPORT_SYMBOL_GPL(irq_generic_chip_ops); --- linux-4.8.0.orig/kernel/irq/manage.c +++ linux-4.8.0/kernel/irq/manage.c @@ -22,14 +22,20 @@ #include "internals.h" #ifdef CONFIG_IRQ_FORCED_THREADING -__read_mostly bool force_irqthreads; +__read_mostly bool force_irqthreads = IS_ENABLED(CONFIG_IRQ_FORCED_THREADING_DEFAULT); static int __init setup_forced_irqthreads(char *arg) { force_irqthreads = true; return 0; } +static int __init setup_no_irqthreads(char *arg) +{ + force_irqthreads = false; + return 0; +} early_param("threadirqs", setup_forced_irqthreads); +early_param("nothreadirqs", setup_no_irqthreads); #endif static void __synchronize_hardirq(struct irq_desc *desc) @@ -1341,12 +1347,12 @@ } else if (new->flags & IRQF_TRIGGER_MASK) { unsigned int nmsk = new->flags & IRQF_TRIGGER_MASK; - unsigned int omsk = irq_settings_get_trigger_mask(desc); + unsigned int omsk = irqd_get_trigger_type(&desc->irq_data); if (nmsk != omsk) /* hope the handler works with current trigger mode */ pr_warn("irq %d uses trigger mode %u; requested %u\n", - irq, nmsk, omsk); + irq, omsk, nmsk); } *old_ptr = new; --- linux-4.8.0.orig/kernel/kexec.c +++ linux-4.8.0/kernel/kexec.c @@ -12,6 +12,7 @@ #include #include #include +#include #include #include #include @@ -194,6 +195,13 @@ return -EPERM; /* + * kexec can be used to circumvent module loading restrictions, so + * prevent loading in that case + */ + if (secure_modules()) + return -EPERM; + + /* * Verify we have a legal set of flags * This leaves us room for future extensions. */ --- linux-4.8.0.orig/kernel/kthread.c +++ linux-4.8.0/kernel/kthread.c @@ -295,6 +295,17 @@ * new kernel thread. */ if (unlikely(wait_for_completion_killable(&done))) { + int i = 0; + + /* + * I got SIGKILL, but wait for 10 more seconds for completion + * unless chosen by the OOM killer. This delay is there as a + * workaround for boot failure caused by SIGKILL upon device + * driver initialization timeout. + */ + while (i++ < 10 && !test_tsk_thread_flag(current, TIF_MEMDIE)) + if (wait_for_completion_timeout(&done, HZ)) + goto ready; /* * If I was SIGKILLed before kthreadd (or new kernel thread) * calls complete(), leave the cleanup of this structure to @@ -308,6 +319,7 @@ */ wait_for_completion(&done); } +ready: task = create->result; if (!IS_ERR(task)) { static const struct sched_param param = { .sched_priority = 0 }; --- linux-4.8.0.orig/kernel/locking/rtmutex.c +++ linux-4.8.0/kernel/locking/rtmutex.c @@ -65,8 +65,72 @@ static void fixup_rt_mutex_waiters(struct rt_mutex *lock) { - if (!rt_mutex_has_waiters(lock)) - clear_rt_mutex_waiters(lock); + unsigned long owner, *p = (unsigned long *) &lock->owner; + + if (rt_mutex_has_waiters(lock)) + return; + + /* + * The rbtree has no waiters enqueued, now make sure that the + * lock->owner still has the waiters bit set, otherwise the + * following can happen: + * + * CPU 0 CPU 1 CPU2 + * l->owner=T1 + * rt_mutex_lock(l) + * lock(l->lock) + * l->owner = T1 | HAS_WAITERS; + * enqueue(T2) + * boost() + * unlock(l->lock) + * block() + * + * rt_mutex_lock(l) + * lock(l->lock) + * l->owner = T1 | HAS_WAITERS; + * enqueue(T3) + * boost() + * unlock(l->lock) + * block() + * signal(->T2) signal(->T3) + * lock(l->lock) + * dequeue(T2) + * deboost() + * unlock(l->lock) + * lock(l->lock) + * dequeue(T3) + * ==> wait list is empty + * deboost() + * unlock(l->lock) + * lock(l->lock) + * fixup_rt_mutex_waiters() + * if (wait_list_empty(l) { + * l->owner = owner + * owner = l->owner & ~HAS_WAITERS; + * ==> l->owner = T1 + * } + * lock(l->lock) + * rt_mutex_unlock(l) fixup_rt_mutex_waiters() + * if (wait_list_empty(l) { + * owner = l->owner & ~HAS_WAITERS; + * cmpxchg(l->owner, T1, NULL) + * ===> Success (l->owner = NULL) + * + * l->owner = owner + * ==> l->owner = T1 + * } + * + * With the check for the waiter bit in place T3 on CPU2 will not + * overwrite. All tasks fiddling with the waiters bit are + * serialized by l->lock, so nothing else can modify the waiters + * bit. If the bit is set then nothing can change l->owner either + * so the simple RMW is safe. The cmpxchg() will simply fail if it + * happens in the middle of the RMW because the waiters bit is + * still set. + */ + owner = READ_ONCE(*p); + if (owner & RT_MUTEX_HAS_WAITERS) + WRITE_ONCE(*p, owner & ~RT_MUTEX_HAS_WAITERS); } /* --- linux-4.8.0.orig/kernel/locking/rtmutex_common.h +++ linux-4.8.0/kernel/locking/rtmutex_common.h @@ -75,8 +75,9 @@ static inline struct task_struct *rt_mutex_owner(struct rt_mutex *lock) { - return (struct task_struct *) - ((unsigned long)lock->owner & ~RT_MUTEX_OWNER_MASKALL); + unsigned long owner = (unsigned long) READ_ONCE(lock->owner); + + return (struct task_struct *) (owner & ~RT_MUTEX_OWNER_MASKALL); } /* --- linux-4.8.0.orig/kernel/modsign_uefi.c +++ linux-4.8.0/kernel/modsign_uefi.c @@ -0,0 +1,121 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include "module-internal.h" + +static __init int check_ignore_db(void) +{ + efi_status_t status; + unsigned int db = 0; + unsigned long size = sizeof(db); + efi_guid_t guid = EFI_SHIM_LOCK_GUID; + + /* Check and see if the MokIgnoreDB variable exists. If that fails + * then we don't ignore DB. If it succeeds, we do. + */ + status = efi.get_variable(L"MokIgnoreDB", &guid, NULL, &size, &db); + if (status != EFI_SUCCESS) + return 0; + + return 1; +} + +static __init void *get_cert_list(efi_char16_t *name, efi_guid_t *guid, unsigned long *size) +{ + efi_status_t status; + unsigned long lsize = 4; + unsigned long tmpdb[4]; + void *db = NULL; + + status = efi.get_variable(name, guid, NULL, &lsize, &tmpdb); + if (status != EFI_BUFFER_TOO_SMALL) { + pr_err("Couldn't get size: 0x%lx\n", status); + return NULL; + } + + db = kmalloc(lsize, GFP_KERNEL); + if (!db) { + pr_err("Couldn't allocate memory for uefi cert list\n"); + goto out; + } + + status = efi.get_variable(name, guid, NULL, &lsize, db); + if (status != EFI_SUCCESS) { + kfree(db); + db = NULL; + pr_err("Error reading db var: 0x%lx\n", status); + } +out: + *size = lsize; + return db; +} + +/* + * * Load the certs contained in the UEFI databases + * */ +static int __init load_uefi_certs(void) +{ + efi_guid_t secure_var = EFI_IMAGE_SECURITY_DATABASE_GUID; + efi_guid_t mok_var = EFI_SHIM_LOCK_GUID; + void *db = NULL, *dbx = NULL, *mok = NULL; + unsigned long dbsize = 0, dbxsize = 0, moksize = 0; + int ignore_db, rc = 0; + struct key *keyring = NULL; + + /* Check if SB is enabled and just return if not */ + if (!efi_enabled(EFI_SECURE_BOOT)) + return 0; + + keyring = get_system_keyring(); + if (!keyring) { + pr_err("MODSIGN: Couldn't get system keyring\n"); + return -EINVAL; + } + + /* See if the user has setup Ignore DB mode */ + ignore_db = check_ignore_db(); + + /* Get db, MokListRT, and dbx. They might not exist, so it isn't + * an error if we can't get them. + */ + if (!ignore_db) { + db = get_cert_list(L"db", &secure_var, &dbsize); + if (!db) { + pr_err("MODSIGN: Couldn't get UEFI db list\n"); + } else { + rc = parse_efi_signature_list(db, dbsize, keyring); + if (rc) + pr_err("Couldn't parse db signatures: %d\n", rc); + kfree(db); + } + } + + mok = get_cert_list(L"MokListRT", &mok_var, &moksize); + if (!mok) { + pr_info("MODSIGN: Couldn't get UEFI MokListRT\n"); + } else { + rc = parse_efi_signature_list(mok, moksize, keyring); + if (rc) + pr_err("Couldn't parse MokListRT signatures: %d\n", rc); + kfree(mok); + } + + dbx = get_cert_list(L"dbx", &secure_var, &dbxsize); + if (!dbx) { + pr_info("MODSIGN: Couldn't get UEFI dbx list\n"); + } else { + rc = parse_efi_signature_list(dbx, dbxsize, + system_blacklist_keyring); + if (rc) + pr_err("Couldn't parse dbx signatures: %d\n", rc); + kfree(dbx); + } + + return rc; +} +late_initcall(load_uefi_certs); --- linux-4.8.0.orig/kernel/module.c +++ linux-4.8.0/kernel/module.c @@ -4279,3 +4279,20 @@ } EXPORT_SYMBOL(module_layout); #endif + +#ifdef CONFIG_MODULE_SIG +void enforce_signed_modules(void) +{ + sig_enforce = true; +} +#endif + +bool secure_modules(void) +{ +#ifdef CONFIG_MODULE_SIG + return (sig_enforce || modules_disabled); +#else + return modules_disabled; +#endif +} +EXPORT_SYMBOL(secure_modules); --- linux-4.8.0.orig/kernel/power/hibernate.c +++ linux-4.8.0/kernel/power/hibernate.c @@ -29,6 +29,7 @@ #include #include #include +#include #include #include "power.h" @@ -67,7 +68,7 @@ bool hibernation_available(void) { - return (nohibernate == 0); + return ((nohibernate == 0) && !secure_modules()); } /** --- linux-4.8.0.orig/kernel/power/suspend_test.c +++ linux-4.8.0/kernel/power/suspend_test.c @@ -203,8 +203,10 @@ /* RTCs have initialized by now too ... can we use one? */ dev = class_find_device(rtc_class, NULL, NULL, has_wakealarm); - if (dev) + if (dev) { rtc = rtc_class_open(dev_name(dev)); + put_device(dev); + } if (!rtc) { printk(warn_no_rtc); return 0; --- linux-4.8.0.orig/kernel/ptrace.c +++ linux-4.8.0/kernel/ptrace.c @@ -39,6 +39,9 @@ BUG_ON(!list_empty(&child->ptrace_entry)); list_add(&child->ptrace_entry, &new_parent->ptraced); child->parent = new_parent; + rcu_read_lock(); + child->ptracer_cred = get_cred(__task_cred(new_parent)); + rcu_read_unlock(); } /** @@ -71,10 +74,14 @@ */ void __ptrace_unlink(struct task_struct *child) { + const struct cred *old_cred; BUG_ON(!child->ptrace); child->parent = child->real_parent; list_del_init(&child->ptrace_entry); + old_cred = child->ptracer_cred; + child->ptracer_cred = NULL; + put_cred(old_cred); spin_lock(&child->sighand->siglock); child->ptrace = 0; @@ -218,7 +225,7 @@ static int __ptrace_may_access(struct task_struct *task, unsigned int mode) { const struct cred *cred = current_cred(), *tcred; - int dumpable = 0; + struct mm_struct *mm; kuid_t caller_uid; kgid_t caller_gid; @@ -269,16 +276,11 @@ return -EPERM; ok: rcu_read_unlock(); - smp_rmb(); - if (task->mm) - dumpable = get_dumpable(task->mm); - rcu_read_lock(); - if (dumpable != SUID_DUMP_USER && - !ptrace_has_cap(__task_cred(task)->user_ns, mode)) { - rcu_read_unlock(); - return -EPERM; - } - rcu_read_unlock(); + mm = task->mm; + if (mm && + ((get_dumpable(mm) != SUID_DUMP_USER) && + !ptrace_has_cap(mm->user_ns, mode))) + return -EPERM; return security_ptrace_access_check(task, mode); } @@ -342,10 +344,6 @@ if (seize) flags |= PT_SEIZED; - rcu_read_lock(); - if (ns_capable(__task_cred(task)->user_ns, CAP_SYS_PTRACE)) - flags |= PT_PTRACE_CAP; - rcu_read_unlock(); task->ptrace = flags; __ptrace_link(task, current); --- linux-4.8.0.orig/kernel/rcu/tree_plugin.h +++ linux-4.8.0/kernel/rcu/tree_plugin.h @@ -2173,6 +2173,7 @@ cl++; c++; local_bh_enable(); + cond_resched_rcu_qs(); list = next; } trace_rcu_batch_end(rdp->rsp->name, c, !!list, 0, 0, 1); --- linux-4.8.0.orig/kernel/sched/auto_group.c +++ linux-4.8.0/kernel/sched/auto_group.c @@ -192,6 +192,7 @@ { static unsigned long next = INITIAL_JIFFIES; struct autogroup *ag; + unsigned long shares; int err; if (nice < MIN_NICE || nice > MAX_NICE) @@ -210,9 +211,10 @@ next = HZ / 10 + jiffies; ag = autogroup_task_get(p); + shares = scale_load(sched_prio_to_weight[nice + 20]); down_write(&ag->lock); - err = sched_group_set_shares(ag->tg, sched_prio_to_weight[nice + 20]); + err = sched_group_set_shares(ag->tg, shares); if (!err) ag->nice = nice; up_write(&ag->lock); --- linux-4.8.0.orig/kernel/sched/fair.c +++ linux-4.8.0/kernel/sched/fair.c @@ -456,17 +456,23 @@ static void update_min_vruntime(struct cfs_rq *cfs_rq) { + struct sched_entity *curr = cfs_rq->curr; + u64 vruntime = cfs_rq->min_vruntime; - if (cfs_rq->curr) - vruntime = cfs_rq->curr->vruntime; + if (curr) { + if (curr->on_rq) + vruntime = curr->vruntime; + else + curr = NULL; + } if (cfs_rq->rb_leftmost) { struct sched_entity *se = rb_entry(cfs_rq->rb_leftmost, struct sched_entity, run_node); - if (!cfs_rq->curr) + if (!curr) vruntime = se->vruntime; else vruntime = min_vruntime(vruntime, se->vruntime); @@ -680,7 +686,14 @@ * will definitely be update (after enqueue). */ sa->period_contrib = 1023; - sa->load_avg = scale_load_down(se->load.weight); + /* + * Tasks are intialized with full load to be seen as heavy tasks until + * they get a chance to stabilize to their real load level. + * Group entities are intialized with zero load to reflect the fact that + * nothing has been attached to the task group yet. + */ + if (entity_is_task(se)) + sa->load_avg = scale_load_down(se->load.weight); sa->load_sum = sa->load_avg * LOAD_AVG_MAX; /* * At this point, util_avg won't be used in select_task_rq_fair anyway @@ -3459,9 +3472,10 @@ account_entity_dequeue(cfs_rq, se); /* - * Normalize the entity after updating the min_vruntime because the - * update can refer to the ->curr item and we need to reflect this - * movement in our normalized position. + * Normalize after update_curr(); which will also have moved + * min_vruntime if @se is the one holding it back. But before doing + * update_min_vruntime() again, which will discount @se's position and + * can move min_vruntime forward still more. */ if (!(flags & DEQUEUE_SLEEP)) se->vruntime -= cfs_rq->min_vruntime; @@ -3469,8 +3483,16 @@ /* return excess runtime on last dequeue */ return_cfs_rq_runtime(cfs_rq); - update_min_vruntime(cfs_rq); update_cfs_shares(cfs_rq); + + /* + * Now advance min_vruntime if @se was the entity holding it back, + * except when: DEQUEUE_SAVE && !DEQUEUE_MOVE, in this case we'll be + * put back on, and if we advance min_vruntime, we'll be placed back + * further than we started -- ie. we'll be penalized. + */ + if ((flags & (DEQUEUE_SAVE | DEQUEUE_MOVE)) == DEQUEUE_SAVE) + update_min_vruntime(cfs_rq); } /* --- linux-4.8.0.orig/kernel/sys.c +++ linux-4.8.0/kernel/sys.c @@ -1099,6 +1099,21 @@ DECLARE_RWSEM(uts_sem); #ifdef COMPAT_UTS_MACHINE +static char compat_uts_machine[__OLD_UTS_LEN+1] = COMPAT_UTS_MACHINE; + +static int __init parse_compat_uts_machine(char *arg) +{ + strncpy(compat_uts_machine, arg, __OLD_UTS_LEN); + compat_uts_machine[__OLD_UTS_LEN] = 0; + return 0; +} +early_param("compat_uts_machine", parse_compat_uts_machine); + +#undef COMPAT_UTS_MACHINE +#define COMPAT_UTS_MACHINE compat_uts_machine +#endif + +#ifdef COMPAT_UTS_MACHINE #define override_architecture(name) \ (personality(current->personality) == PER_LINUX32 && \ copy_to_user(name->machine, COMPAT_UTS_MACHINE, \ --- linux-4.8.0.orig/kernel/sysctl.c +++ linux-4.8.0/kernel/sysctl.c @@ -65,6 +65,8 @@ #include #include #include +#include +#include #include #include @@ -103,6 +105,9 @@ extern char core_pattern[]; extern unsigned int core_pipe_limit; #endif +#ifdef CONFIG_USER_NS +extern int unprivileged_userns_clone; +#endif extern int pid_max; extern int pid_max_min, pid_max_max; extern int percpu_pagelist_fraction; @@ -280,8 +285,38 @@ static int max_extfrag_threshold = 1000; #endif +static unsigned int secure_boot_enabled; +int secure_boot_proc_handler(struct ctl_table *table, int write, + void __user *buffer, size_t *lenp, loff_t *ppos) +{ + secure_boot_enabled = efi_enabled(EFI_SECURE_BOOT); + return proc_dointvec(table, write, buffer, lenp, ppos); +} + +static unsigned int moksbstate_disabled; +int moksbstate_disabled_proc_handler(struct ctl_table *table, int write, + void __user *buffer, size_t *lenp, loff_t *ppos) +{ + moksbstate_disabled = efi_enabled(EFI_MOKSBSTATE_DISABLED); + return proc_dointvec(table, write, buffer, lenp, ppos); +} + static struct ctl_table kern_table[] = { { + .procname = "secure_boot", + .data = &secure_boot_enabled, + .maxlen = sizeof(unsigned int), + .mode = 0444, + .proc_handler = secure_boot_proc_handler, + }, + { + .procname = "moksbstate_disabled", + .data = &moksbstate_disabled, + .maxlen = sizeof(unsigned int), + .mode = 0444, + .proc_handler = moksbstate_disabled_proc_handler, + }, + { .procname = "sched_child_runs_first", .data = &sysctl_sched_child_runs_first, .maxlen = sizeof(unsigned int), @@ -497,6 +532,15 @@ .proc_handler = proc_dointvec, }, #endif +#ifdef CONFIG_USER_NS + { + .procname = "unprivileged_userns_clone", + .data = &unprivileged_userns_clone, + .maxlen = sizeof(int), + .mode = 0644, + .proc_handler = proc_dointvec, + }, +#endif #ifdef CONFIG_PROC_SYSCTL { .procname = "tainted", @@ -1838,6 +1882,14 @@ .mode = 0644, .proc_handler = proc_doulongvec_minmax, }, + { + .procname = "mount-max", + .data = &sysctl_mount_max, + .maxlen = sizeof(unsigned int), + .mode = 0644, + .proc_handler = proc_dointvec_minmax, + .extra1 = &one, + }, { } }; --- linux-4.8.0.orig/kernel/task_work.c +++ linux-4.8.0/kernel/task_work.c @@ -119,3 +119,4 @@ } while (work); } } +EXPORT_SYMBOL_GPL(task_work_run); --- linux-4.8.0.orig/kernel/time/timekeeping.c +++ linux-4.8.0/kernel/time/timekeeping.c @@ -299,10 +299,10 @@ static inline u32 arch_gettimeoffset(void) { return 0; } #endif -static inline s64 timekeeping_delta_to_ns(struct tk_read_base *tkr, +static inline u64 timekeeping_delta_to_ns(struct tk_read_base *tkr, cycle_t delta) { - s64 nsec; + u64 nsec; nsec = delta * tkr->mult + tkr->xtime_nsec; nsec >>= tkr->shift; @@ -403,8 +403,11 @@ tkr = tkf->base + (seq & 0x01); now = ktime_to_ns(tkr->base); - now += clocksource_delta(tkr->read(tkr->clock), - tkr->cycle_last, tkr->mask); + now += timekeeping_delta_to_ns(tkr, + clocksource_delta( + tkr->read(tkr->clock), + tkr->cycle_last, + tkr->mask)); } while (read_seqcount_retry(&tkf->seq, seq)); return now; --- linux-4.8.0.orig/kernel/time/timer.c +++ linux-4.8.0/kernel/time/timer.c @@ -878,7 +878,7 @@ #ifdef CONFIG_NO_HZ_COMMON static inline struct timer_base * -__get_target_base(struct timer_base *base, unsigned tflags) +get_target_base(struct timer_base *base, unsigned tflags) { #ifdef CONFIG_SMP if ((tflags & TIMER_PINNED) || !base->migration_enabled) @@ -891,25 +891,27 @@ static inline void forward_timer_base(struct timer_base *base) { + unsigned long jnow = READ_ONCE(jiffies); + /* * We only forward the base when it's idle and we have a delta between * base clock and jiffies. */ - if (!base->is_idle || (long) (jiffies - base->clk) < 2) + if (!base->is_idle || (long) (jnow - base->clk) < 2) return; /* * If the next expiry value is > jiffies, then we fast forward to * jiffies otherwise we forward to the next expiry value. */ - if (time_after(base->next_expiry, jiffies)) - base->clk = jiffies; + if (time_after(base->next_expiry, jnow)) + base->clk = jnow; else base->clk = base->next_expiry; } #else static inline struct timer_base * -__get_target_base(struct timer_base *base, unsigned tflags) +get_target_base(struct timer_base *base, unsigned tflags) { return get_timer_this_cpu_base(tflags); } @@ -917,14 +919,6 @@ static inline void forward_timer_base(struct timer_base *base) { } #endif -static inline struct timer_base * -get_target_base(struct timer_base *base, unsigned tflags) -{ - struct timer_base *target = __get_target_base(base, tflags); - - forward_timer_base(target); - return target; -} /* * We are using hashed locking: Holding per_cpu(timer_bases[x]).lock means @@ -943,7 +937,14 @@ { for (;;) { struct timer_base *base; - u32 tf = timer->flags; + u32 tf; + + /* + * We need to use READ_ONCE() here, otherwise the compiler + * might re-read @tf between the check for TIMER_MIGRATING + * and spin_lock(). + */ + tf = READ_ONCE(timer->flags); if (!(tf & TIMER_MIGRATING)) { base = get_timer_base(tf); @@ -964,6 +965,8 @@ unsigned long clk = 0, flags; int ret = 0; + BUG_ON(!timer->function); + /* * This is a common optimization triggered by the networking code - if * the timer is re-modified to have the same timeout or ends up in the @@ -972,13 +975,16 @@ if (timer_pending(timer)) { if (timer->expires == expires) return 1; + /* - * Take the current timer_jiffies of base, but without holding - * the lock! + * We lock timer base and calculate the bucket index right + * here. If the timer ends up in the same bucket, then we + * just update the expiry time and avoid the whole + * dequeue/enqueue dance. */ - base = get_timer_base(timer->flags); - clk = base->clk; + base = lock_timer_base(timer, &flags); + clk = base->clk; idx = calc_wheel_index(expires, clk); /* @@ -988,14 +994,14 @@ */ if (idx == timer_get_idx(timer)) { timer->expires = expires; - return 1; + ret = 1; + goto out_unlock; } + } else { + base = lock_timer_base(timer, &flags); } timer_stats_timer_set_start_info(timer); - BUG_ON(!timer->function); - - base = lock_timer_base(timer, &flags); ret = detach_if_pending(timer, base, false); if (!ret && pending_only) @@ -1025,12 +1031,16 @@ } } + /* Try to forward a stale timer base clock */ + forward_timer_base(base); + timer->expires = expires; /* * If 'idx' was calculated above and the base time did not advance - * between calculating 'idx' and taking the lock, only enqueue_timer() - * and trigger_dyntick_cpu() is required. Otherwise we need to - * (re)calculate the wheel index via internal_add_timer(). + * between calculating 'idx' and possibly switching the base, only + * enqueue_timer() and trigger_dyntick_cpu() is required. Otherwise + * we need to (re)calculate the wheel index via + * internal_add_timer(). */ if (idx != UINT_MAX && clk == base->clk) { enqueue_timer(base, timer, idx); @@ -1510,12 +1520,16 @@ is_max_delta = (nextevt == base->clk + NEXT_TIMER_MAX_DELTA); base->next_expiry = nextevt; /* - * We have a fresh next event. Check whether we can forward the base: - */ - if (time_after(nextevt, jiffies)) - base->clk = jiffies; - else if (time_after(nextevt, base->clk)) - base->clk = nextevt; + * We have a fresh next event. Check whether we can forward the + * base. We can only do that when @basej is past base->clk + * otherwise we might rewind base->clk. + */ + if (time_after(basej, base->clk)) { + if (time_after(nextevt, basej)) + base->clk = basej; + else if (time_after(nextevt, base->clk)) + base->clk = nextevt; + } if (time_before_eq(nextevt, basej)) { expires = basem; --- linux-4.8.0.orig/kernel/trace/Makefile +++ linux-4.8.0/kernel/trace/Makefile @@ -1,8 +1,4 @@ -# We are fully aware of the dangers of __builtin_return_address() -FRAME_CFLAGS := $(call cc-disable-warning,frame-address) -KBUILD_CFLAGS += $(FRAME_CFLAGS) - # Do not instrument the tracer itself: ifdef CONFIG_FUNCTION_TRACER --- linux-4.8.0.orig/kernel/trace/ftrace.c +++ linux-4.8.0/kernel/trace/ftrace.c @@ -1856,6 +1856,10 @@ /* Update rec->flags */ do_for_each_ftrace_rec(pg, rec) { + + if (rec->flags & FTRACE_FL_DISABLED) + continue; + /* We need to update only differences of filter_hash */ in_old = !!ftrace_lookup_ip(old_hash, rec->ip); in_new = !!ftrace_lookup_ip(new_hash, rec->ip); @@ -1878,6 +1882,10 @@ /* Roll back what we did above */ do_for_each_ftrace_rec(pg, rec) { + + if (rec->flags & FTRACE_FL_DISABLED) + continue; + if (rec == end) goto err_out; @@ -2391,6 +2399,10 @@ return; do_for_each_ftrace_rec(pg, rec) { + + if (rec->flags & FTRACE_FL_DISABLED) + continue; + failed = __ftrace_replace_code(rec, enable); if (failed) { ftrace_bug(failed, rec); @@ -2757,7 +2769,7 @@ struct dyn_ftrace *rec; do_for_each_ftrace_rec(pg, rec) { - if (FTRACE_WARN_ON_ONCE(rec->flags)) + if (FTRACE_WARN_ON_ONCE(rec->flags & ~FTRACE_FL_DISABLED)) pr_warn(" %pS flags:%lx\n", (void *)rec->ip, rec->flags); } while_for_each_ftrace_rec(); @@ -3592,6 +3604,10 @@ goto out_unlock; do_for_each_ftrace_rec(pg, rec) { + + if (rec->flags & FTRACE_FL_DISABLED) + continue; + if (ftrace_match_record(rec, &func_g, mod_match, exclude_mod)) { ret = enter_record(hash, rec, clear_filter); if (ret < 0) { @@ -3787,6 +3803,9 @@ do_for_each_ftrace_rec(pg, rec) { + if (rec->flags & FTRACE_FL_DISABLED) + continue; + if (!ftrace_match_record(rec, &func_g, NULL, 0)) continue; @@ -4679,6 +4698,9 @@ do_for_each_ftrace_rec(pg, rec) { + if (rec->flags & FTRACE_FL_DISABLED) + continue; + if (ftrace_match_record(rec, &func_g, NULL, 0)) { /* if it is in the array */ exists = false; --- linux-4.8.0.orig/kernel/trace/trace.c +++ linux-4.8.0/kernel/trace/trace.c @@ -1862,7 +1862,7 @@ map = savedcmd->map_pid_to_cmdline[pid]; if (map != NO_CMDLINE_MAP) - strcpy(comm, get_saved_cmdlines(map)); + strlcpy(comm, get_saved_cmdlines(map), TASK_COMM_LEN); else strcpy(comm, "<...>"); } @@ -7217,7 +7217,7 @@ ftrace_init_tracefs(tr, d_tracer); } -static struct vfsmount *trace_automount(void *ingore) +static struct vfsmount *trace_automount(struct dentry *mntpt, void *ingore) { struct vfsmount *mnt; struct file_system_type *type; @@ -7230,7 +7230,7 @@ type = get_fs_type("tracefs"); if (!type) return NULL; - mnt = vfs_kern_mount(type, 0, "tracefs", NULL); + mnt = vfs_submount(mntpt, type, "tracefs", NULL); put_filesystem(type); if (IS_ERR(mnt)) return NULL; --- linux-4.8.0.orig/kernel/trace/trace_benchmark.c +++ linux-4.8.0/kernel/trace/trace_benchmark.c @@ -164,11 +164,12 @@ * When the benchmark tracepoint is enabled, it calls this * function and the thread that calls the tracepoint is created. */ -void trace_benchmark_reg(void) +int trace_benchmark_reg(void) { bm_event_thread = kthread_run(benchmark_event_kthread, NULL, "event_benchmark"); WARN_ON(!bm_event_thread); + return 0; } /* --- linux-4.8.0.orig/kernel/trace/trace_benchmark.h +++ linux-4.8.0/kernel/trace/trace_benchmark.h @@ -6,7 +6,7 @@ #include -extern void trace_benchmark_reg(void); +extern int trace_benchmark_reg(void); extern void trace_benchmark_unreg(void); #define BENCHMARK_EVENT_STRLEN 128 --- linux-4.8.0.orig/kernel/trace/trace_functions_graph.c +++ linux-4.8.0/kernel/trace/trace_functions_graph.c @@ -780,6 +780,10 @@ cpu_data = per_cpu_ptr(data->cpu_data, cpu); + /* If a graph tracer ignored set_graph_notrace */ + if (call->depth < -1) + call->depth += FTRACE_NOTRACE_DEPTH; + /* * Comments display at + 1 to depth. Since * this is a leaf function, keep the comments @@ -788,7 +792,8 @@ cpu_data->depth = call->depth - 1; /* No need to keep this function around for this depth */ - if (call->depth < FTRACE_RETFUNC_DEPTH) + if (call->depth < FTRACE_RETFUNC_DEPTH && + !WARN_ON_ONCE(call->depth < 0)) cpu_data->enter_funcs[call->depth] = 0; } @@ -818,11 +823,16 @@ struct fgraph_cpu_data *cpu_data; int cpu = iter->cpu; + /* If a graph tracer ignored set_graph_notrace */ + if (call->depth < -1) + call->depth += FTRACE_NOTRACE_DEPTH; + cpu_data = per_cpu_ptr(data->cpu_data, cpu); cpu_data->depth = call->depth; /* Save this function pointer to see if the exit matches */ - if (call->depth < FTRACE_RETFUNC_DEPTH) + if (call->depth < FTRACE_RETFUNC_DEPTH && + !WARN_ON_ONCE(call->depth < 0)) cpu_data->enter_funcs[call->depth] = call->func; } @@ -1052,7 +1062,8 @@ */ cpu_data->depth = trace->depth - 1; - if (trace->depth < FTRACE_RETFUNC_DEPTH) { + if (trace->depth < FTRACE_RETFUNC_DEPTH && + !WARN_ON_ONCE(trace->depth < 0)) { if (cpu_data->enter_funcs[trace->depth] != trace->func) func_match = 0; cpu_data->enter_funcs[trace->depth] = 0; --- linux-4.8.0.orig/kernel/tracepoint.c +++ linux-4.8.0/kernel/tracepoint.c @@ -194,9 +194,13 @@ struct tracepoint_func *func, int prio) { struct tracepoint_func *old, *tp_funcs; + int ret; - if (tp->regfunc && !static_key_enabled(&tp->key)) - tp->regfunc(); + if (tp->regfunc && !static_key_enabled(&tp->key)) { + ret = tp->regfunc(); + if (ret < 0) + return ret; + } tp_funcs = rcu_dereference_protected(tp->funcs, lockdep_is_held(&tracepoints_mutex)); @@ -529,7 +533,7 @@ /* NB: reg/unreg are called while guarded with the tracepoints_mutex */ static int sys_tracepoint_refcount; -void syscall_regfunc(void) +int syscall_regfunc(void) { struct task_struct *p, *t; @@ -541,6 +545,8 @@ read_unlock(&tasklist_lock); } sys_tracepoint_refcount++; + + return 0; } void syscall_unregfunc(void) --- linux-4.8.0.orig/kernel/user_namespace.c +++ linux-4.8.0/kernel/user_namespace.c @@ -23,6 +23,12 @@ #include #include +/* + * sysctl determining whether unprivileged users may unshare a new + * userns. Allowed by default + */ +int unprivileged_userns_clone = 1; + static struct kmem_cache *user_ns_cachep __read_mostly; static DEFINE_MUTEX(userns_state_mutex); @@ -951,6 +957,7 @@ } return false; } +EXPORT_SYMBOL(current_in_userns); static inline struct user_namespace *to_user_ns(struct ns_common *ns) { --- linux-4.8.0.orig/kernel/watchdog.c +++ linux-4.8.0/kernel/watchdog.c @@ -344,7 +344,6 @@ */ if (is_hardlockup()) { int this_cpu = smp_processor_id(); - struct pt_regs *regs = get_irq_regs(); /* only print hardlockups once */ if (__this_cpu_read(hard_watchdog_warn) == true) --- linux-4.8.0.orig/lib/genalloc.c +++ linux-4.8.0/lib/genalloc.c @@ -292,7 +292,7 @@ struct gen_pool_chunk *chunk; unsigned long addr = 0; int order = pool->min_alloc_order; - int nbits, start_bit = 0, end_bit, remain; + int nbits, start_bit, end_bit, remain; #ifndef CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG BUG_ON(in_nmi()); @@ -307,6 +307,7 @@ if (size > atomic_read(&chunk->avail)) continue; + start_bit = 0; end_bit = chunk_size(chunk) >> order; retry: start_bit = algo(chunk->bits, end_bit, start_bit, --- linux-4.8.0.orig/lib/mpi/mpi-pow.c +++ linux-4.8.0/lib/mpi/mpi-pow.c @@ -64,8 +64,13 @@ if (!esize) { /* Exponent is zero, result is 1 mod MOD, i.e., 1 or 0 * depending on if MOD equals 1. */ - rp[0] = 1; res->nlimbs = (msize == 1 && mod->d[0] == 1) ? 0 : 1; + if (res->nlimbs) { + if (mpi_resize(res, 1) < 0) + goto enomem; + rp = res->d; + rp[0] = 1; + } res->sign = 0; goto leave; } --- linux-4.8.0.orig/lib/radix-tree.c +++ linux-4.8.0/lib/radix-tree.c @@ -1583,15 +1583,10 @@ } EXPORT_SYMBOL(radix_tree_delete); -struct radix_tree_node *radix_tree_replace_clear_tags( - struct radix_tree_root *root, - unsigned long index, void *entry) +void radix_tree_clear_tags(struct radix_tree_root *root, + struct radix_tree_node *node, + void **slot) { - struct radix_tree_node *node; - void **slot; - - __radix_tree_lookup(root, index, &node, &slot); - if (node) { unsigned int tag, offset = get_slot_offset(node, slot); for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++) @@ -1600,9 +1595,6 @@ /* Clear root node tags */ root->gfp_mask &= __GFP_BITS_MASK; } - - radix_tree_replace_slot(slot, entry); - return node; } /** --- linux-4.8.0.orig/mm/Kconfig +++ linux-4.8.0/mm/Kconfig @@ -153,7 +153,7 @@ bool "Enable to assign a node which has only movable memory" depends on HAVE_MEMBLOCK depends on NO_BOOTMEM - depends on X86_64 + depends on X86_64 || OF_EARLY_FLATTREE || MEMORY_HOTPLUG depends on NUMA default n help --- linux-4.8.0.orig/mm/Makefile +++ linux-4.8.0/mm/Makefile @@ -21,9 +21,6 @@ KCOV_INSTRUMENT_mmzone.o := n KCOV_INSTRUMENT_vmstat.o := n -# Since __builtin_frame_address does work as used, disable the warning. -CFLAGS_usercopy.o += $(call cc-disable-warning, frame-address) - mmu-y := nommu.o mmu-$(CONFIG_MMU) := gup.o highmem.o memory.o mincore.o \ mlock.o mmap.o mprotect.o mremap.o msync.o rmap.o \ @@ -40,7 +37,7 @@ mm_init.o mmu_context.o percpu.o slab_common.o \ compaction.o vmacache.o \ interval_tree.o list_lru.o workingset.o \ - debug.o $(mmu-y) + prfile.o debug.o $(mmu-y) obj-y += init-mm.o --- linux-4.8.0.orig/mm/filemap.c +++ linux-4.8.0/mm/filemap.c @@ -169,33 +169,35 @@ static void page_cache_tree_delete(struct address_space *mapping, struct page *page, void *shadow) { - struct radix_tree_node *node; int i, nr = PageHuge(page) ? 1 : hpage_nr_pages(page); VM_BUG_ON_PAGE(!PageLocked(page), page); VM_BUG_ON_PAGE(PageTail(page), page); VM_BUG_ON_PAGE(nr != 1 && shadow, page); - if (shadow) { - mapping->nrexceptional += nr; - /* - * Make sure the nrexceptional update is committed before - * the nrpages update so that final truncate racing - * with reclaim does not see both counters 0 at the - * same time and miss a shadow entry. - */ - smp_wmb(); - } - mapping->nrpages -= nr; - for (i = 0; i < nr; i++) { - node = radix_tree_replace_clear_tags(&mapping->page_tree, - page->index + i, shadow); + struct radix_tree_node *node; + void **slot; + + __radix_tree_lookup(&mapping->page_tree, page->index + i, + &node, &slot); + + radix_tree_clear_tags(&mapping->page_tree, node, slot); + if (!node) { VM_BUG_ON_PAGE(nr != 1, page); - return; + /* + * We need a node to properly account shadow + * entries. Don't plant any without. XXX + */ + shadow = NULL; } + radix_tree_replace_slot(slot, shadow); + + if (!node) + break; + workingset_node_pages_dec(node); if (shadow) workingset_node_shadows_inc(node); @@ -219,6 +221,18 @@ &node->private_list); } } + + if (shadow) { + mapping->nrexceptional += nr; + /* + * Make sure the nrexceptional update is committed before + * the nrpages update so that final truncate racing + * with reclaim does not see both counters 0 at the + * same time and miss a shadow entry. + */ + smp_wmb(); + } + mapping->nrpages -= nr; } /* @@ -619,7 +633,6 @@ __delete_from_page_cache(old, NULL); error = page_cache_tree_insert(mapping, new, NULL); BUG_ON(error); - mapping->nrpages++; /* * hugetlb pages do not participate in page cache accounting. @@ -1674,6 +1687,10 @@ unsigned int prev_offset; int error = 0; + if (unlikely(*ppos >= inode->i_sb->s_maxbytes)) + return 0; + iov_iter_truncate(iter, inode->i_sb->s_maxbytes); + index = *ppos >> PAGE_SHIFT; prev_index = ra->prev_pos >> PAGE_SHIFT; prev_offset = ra->prev_pos & (PAGE_SIZE-1); @@ -2284,7 +2301,7 @@ int ret = VM_FAULT_LOCKED; sb_start_pagefault(inode->i_sb); - file_update_time(vma->vm_file); + vma_file_update_time(vma); lock_page(page); if (page->mapping != inode->i_mapping) { unlock_page(page); --- linux-4.8.0.orig/mm/gup.c +++ linux-4.8.0/mm/gup.c @@ -60,6 +60,16 @@ return -EEXIST; } +/* + * FOLL_FORCE can write to even unwritable pte's, but only + * after we've gone through a COW cycle and they are dirty. + */ +static inline bool can_follow_write_pte(pte_t pte, unsigned int flags) +{ + return pte_write(pte) || + ((flags & FOLL_FORCE) && (flags & FOLL_COW) && pte_dirty(pte)); +} + static struct page *follow_page_pte(struct vm_area_struct *vma, unsigned long address, pmd_t *pmd, unsigned int flags) { @@ -95,7 +105,7 @@ } if ((flags & FOLL_NUMA) && pte_protnone(pte)) goto no_page; - if ((flags & FOLL_WRITE) && !pte_write(pte)) { + if ((flags & FOLL_WRITE) && !can_follow_write_pte(pte, flags)) { pte_unmap_unlock(ptep, ptl); return NULL; } @@ -360,11 +370,6 @@ /* mlock all present pages, but do not fault in new pages */ if ((*flags & (FOLL_POPULATE | FOLL_MLOCK)) == FOLL_MLOCK) return -ENOENT; - /* For mm_populate(), just skip the stack guard page. */ - if ((*flags & FOLL_POPULATE) && - (stack_guard_page_start(vma, address) || - stack_guard_page_end(vma, address + PAGE_SIZE))) - return -ENOENT; if (*flags & FOLL_WRITE) fault_flags |= FAULT_FLAG_WRITE; if (*flags & FOLL_REMOTE) @@ -412,7 +417,7 @@ * reCOWed by userspace write). */ if ((ret & VM_FAULT_WRITE) && !(vma->vm_flags & VM_WRITE)) - *flags &= ~FOLL_WRITE; + *flags |= FOLL_COW; return 0; } --- linux-4.8.0.orig/mm/huge_memory.c +++ linux-4.8.0/mm/huge_memory.c @@ -847,8 +847,7 @@ } for (i = 0; i < HPAGE_PMD_NR; i++) { - pages[i] = alloc_page_vma_node(GFP_HIGHUSER_MOVABLE | - __GFP_OTHER_NODE, vma, + pages[i] = alloc_page_vma_node(GFP_HIGHUSER_MOVABLE, vma, fe->address, page_to_nid(page)); if (unlikely(!pages[i] || mem_cgroup_try_charge(pages[i], vma->vm_mm, @@ -1056,6 +1055,16 @@ return ret; } +/* + * FOLL_FORCE can write to even unwritable pmd's, but only + * after we've gone through a COW cycle and they are dirty. + */ +static inline bool can_follow_write_pmd(pmd_t pmd, unsigned int flags) +{ + return pmd_write(pmd) || + ((flags & FOLL_FORCE) && (flags & FOLL_COW) && pmd_dirty(pmd)); +} + struct page *follow_trans_huge_pmd(struct vm_area_struct *vma, unsigned long addr, pmd_t *pmd, @@ -1066,7 +1075,7 @@ assert_spin_locked(pmd_lockptr(mm, pmd)); - if (flags & FOLL_WRITE && !pmd_write(*pmd)) + if (flags & FOLL_WRITE && !can_follow_write_pmd(*pmd, flags)) goto out; /* Avoid dumping huge zero page */ @@ -1262,6 +1271,8 @@ struct mm_struct *mm = tlb->mm; bool ret = false; + tlb_remove_check_page_size_change(tlb, HPAGE_PMD_SIZE); + ptl = pmd_trans_huge_lock(pmd, vma); if (!ptl) goto out_unlocked; @@ -1323,6 +1334,8 @@ pmd_t orig_pmd; spinlock_t *ptl; + tlb_remove_check_page_size_change(tlb, HPAGE_PMD_SIZE); + ptl = __pmd_trans_huge_lock(pmd, vma); if (!ptl) return 0; --- linux-4.8.0.orig/mm/hugetlb.c +++ linux-4.8.0/mm/hugetlb.c @@ -1437,38 +1437,61 @@ /* * Dissolve a given free hugepage into free buddy pages. This function does - * nothing for in-use (including surplus) hugepages. + * nothing for in-use (including surplus) hugepages. Returns -EBUSY if the + * number of free hugepages would be reduced below the number of reserved + * hugepages. */ -static void dissolve_free_huge_page(struct page *page) +static int dissolve_free_huge_page(struct page *page) { + int rc = 0; + spin_lock(&hugetlb_lock); if (PageHuge(page) && !page_count(page)) { - struct hstate *h = page_hstate(page); - int nid = page_to_nid(page); - list_del(&page->lru); + struct page *head = compound_head(page); + struct hstate *h = page_hstate(head); + int nid = page_to_nid(head); + if (h->free_huge_pages - h->resv_huge_pages == 0) { + rc = -EBUSY; + goto out; + } + list_del(&head->lru); h->free_huge_pages--; h->free_huge_pages_node[nid]--; h->max_huge_pages--; - update_and_free_page(h, page); + update_and_free_page(h, head); } +out: spin_unlock(&hugetlb_lock); + return rc; } /* * Dissolve free hugepages in a given pfn range. Used by memory hotplug to * make specified memory blocks removable from the system. - * Note that start_pfn should aligned with (minimum) hugepage size. + * Note that this will dissolve a free gigantic hugepage completely, if any + * part of it lies within the given range. + * Also note that if dissolve_free_huge_page() returns with an error, all + * free hugepages that were dissolved before that error are lost. */ -void dissolve_free_huge_pages(unsigned long start_pfn, unsigned long end_pfn) +int dissolve_free_huge_pages(unsigned long start_pfn, unsigned long end_pfn) { unsigned long pfn; + struct page *page; + int rc = 0; if (!hugepages_supported()) - return; + return rc; - VM_BUG_ON(!IS_ALIGNED(start_pfn, 1 << minimum_order)); - for (pfn = start_pfn; pfn < end_pfn; pfn += 1 << minimum_order) - dissolve_free_huge_page(pfn_to_page(pfn)); + for (pfn = start_pfn; pfn < end_pfn; pfn += 1 << minimum_order) { + page = pfn_to_page(pfn); + if (PageHuge(page) && !page_count(page)) { + rc = dissolve_free_huge_page(page); + if (rc) + break; + } + } + + return rc; } /* @@ -1803,11 +1826,17 @@ * is not the case is if a reserve map was changed between calls. It * is the responsibility of the caller to notice the difference and * take appropriate action. + * + * vma_add_reservation is used in error paths where a reservation must + * be restored when a newly allocated huge page must be freed. It is + * to be called after calling vma_needs_reservation to determine if a + * reservation exists. */ enum vma_resv_mode { VMA_NEEDS_RESV, VMA_COMMIT_RESV, VMA_END_RESV, + VMA_ADD_RESV, }; static long __vma_reservation_common(struct hstate *h, struct vm_area_struct *vma, unsigned long addr, @@ -1833,6 +1862,14 @@ region_abort(resv, idx, idx + 1); ret = 0; break; + case VMA_ADD_RESV: + if (vma->vm_flags & VM_MAYSHARE) + ret = region_add(resv, idx, idx + 1); + else { + region_abort(resv, idx, idx + 1); + ret = region_del(resv, idx, idx + 1); + } + break; default: BUG(); } @@ -1880,6 +1917,56 @@ (void)__vma_reservation_common(h, vma, addr, VMA_END_RESV); } +static long vma_add_reservation(struct hstate *h, + struct vm_area_struct *vma, unsigned long addr) +{ + return __vma_reservation_common(h, vma, addr, VMA_ADD_RESV); +} + +/* + * This routine is called to restore a reservation on error paths. In the + * specific error paths, a huge page was allocated (via alloc_huge_page) + * and is about to be freed. If a reservation for the page existed, + * alloc_huge_page would have consumed the reservation and set PagePrivate + * in the newly allocated page. When the page is freed via free_huge_page, + * the global reservation count will be incremented if PagePrivate is set. + * However, free_huge_page can not adjust the reserve map. Adjust the + * reserve map here to be consistent with global reserve count adjustments + * to be made by free_huge_page. + */ +static void restore_reserve_on_error(struct hstate *h, + struct vm_area_struct *vma, unsigned long address, + struct page *page) +{ + if (unlikely(PagePrivate(page))) { + long rc = vma_needs_reservation(h, vma, address); + + if (unlikely(rc < 0)) { + /* + * Rare out of memory condition in reserve map + * manipulation. Clear PagePrivate so that + * global reserve count will not be incremented + * by free_huge_page. This will make it appear + * as though the reservation for this page was + * consumed. This may prevent the task from + * faulting in the page at a later time. This + * is better than inconsistent global huge page + * accounting of reserve counts. + */ + ClearPagePrivate(page); + } else if (rc) { + rc = vma_add_reservation(h, vma, address); + if (unlikely(rc < 0)) + /* + * See above comment about rare out of + * memory condition. + */ + ClearPagePrivate(page); + } else + vma_end_reservation(h, vma, address); + } +} + struct page *alloc_huge_page(struct vm_area_struct *vma, unsigned long addr, int avoid_reserve) { @@ -3199,6 +3286,11 @@ BUG_ON(start & ~huge_page_mask(h)); BUG_ON(end & ~huge_page_mask(h)); + /* + * This is a hugetlb vma, all the pte entries should point + * to huge page. + */ + tlb_remove_check_page_size_change(tlb, sz); tlb_start_vma(tlb, vma); mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end); address = start; @@ -3249,7 +3341,7 @@ } pte = huge_ptep_get_and_clear(mm, address, ptep); - tlb_remove_tlb_entry(tlb, ptep, address); + tlb_remove_huge_tlb_entry(h, tlb, ptep, address); if (huge_pte_dirty(pte)) set_page_dirty(page); @@ -3475,6 +3567,7 @@ spin_unlock(ptl); mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end); out_release_all: + restore_reserve_on_error(h, vma, address, new_page); put_page(new_page); out_release_old: put_page(old_page); @@ -3657,6 +3750,7 @@ spin_unlock(ptl); backout_unlocked: unlock_page(page); + restore_reserve_on_error(h, vma, address, page); put_page(page); goto out; } --- linux-4.8.0.orig/mm/init-mm.c +++ linux-4.8.0/mm/init-mm.c @@ -6,6 +6,7 @@ #include #include +#include #include #include @@ -21,5 +22,6 @@ .mmap_sem = __RWSEM_INITIALIZER(init_mm.mmap_sem), .page_table_lock = __SPIN_LOCK_UNLOCKED(init_mm.page_table_lock), .mmlist = LIST_HEAD_INIT(init_mm.mmlist), + .user_ns = &init_user_ns, INIT_MM_CONTEXT(init_mm) }; --- linux-4.8.0.orig/mm/kasan/kasan.h +++ linux-4.8.0/mm/kasan/kasan.h @@ -53,6 +53,9 @@ #if KASAN_ABI_VERSION >= 4 struct kasan_source_location *location; #endif +#if KASAN_ABI_VERSION >= 5 + char *odr_indicator; +#endif }; /** --- linux-4.8.0.orig/mm/khugepaged.c +++ linux-4.8.0/mm/khugepaged.c @@ -103,6 +103,7 @@ .mm_head = LIST_HEAD_INIT(khugepaged_scan.mm_head), }; +#ifdef CONFIG_SYSFS static ssize_t scan_sleep_millisecs_show(struct kobject *kobj, struct kobj_attribute *attr, char *buf) @@ -295,6 +296,7 @@ .attrs = khugepaged_attr, .name = "khugepaged", }; +#endif /* CONFIG_SYSFS */ #define VM_NO_KHUGEPAGED (VM_SPECIAL | VM_HUGETLB) @@ -941,7 +943,7 @@ VM_BUG_ON(address & ~HPAGE_PMD_MASK); /* Only allocate from the target node */ - gfp = alloc_hugepage_khugepaged_gfpmask() | __GFP_OTHER_NODE | __GFP_THISNODE; + gfp = alloc_hugepage_khugepaged_gfpmask() | __GFP_THISNODE; /* * Before allocating the hugepage, release the mmap_sem read lock. @@ -1307,8 +1309,7 @@ VM_BUG_ON(start & (HPAGE_PMD_NR - 1)); /* Only allocate from the target node */ - gfp = alloc_hugepage_khugepaged_gfpmask() | - __GFP_OTHER_NODE | __GFP_THISNODE; + gfp = alloc_hugepage_khugepaged_gfpmask() | __GFP_THISNODE; new_page = khugepaged_alloc_page(hpage, gfp, node); if (!new_page) { --- linux-4.8.0.orig/mm/ksm.c +++ linux-4.8.0/mm/ksm.c @@ -1720,8 +1720,12 @@ try_to_freeze(); if (ksmd_should_run()) { - schedule_timeout_interruptible( - msecs_to_jiffies(ksm_thread_sleep_millisecs)); + if (ksm_thread_sleep_millisecs >= 1000) + schedule_timeout_interruptible( + msecs_to_jiffies(round_jiffies_relative(ksm_thread_sleep_millisecs))); + else + schedule_timeout_interruptible( + msecs_to_jiffies(ksm_thread_sleep_millisecs)); } else { wait_event_freezable(ksm_thread_wait, ksmd_should_run() || kthread_should_stop()); --- linux-4.8.0.orig/mm/list_lru.c +++ linux-4.8.0/mm/list_lru.c @@ -554,6 +554,8 @@ err = memcg_init_list_lru(lru, memcg_aware); if (err) { kfree(lru->node); + /* Do this so a list_lru_destroy() doesn't crash: */ + lru->node = NULL; goto out; } --- linux-4.8.0.orig/mm/madvise.c +++ linux-4.8.0/mm/madvise.c @@ -281,6 +281,7 @@ if (pmd_trans_unstable(pmd)) return 0; + tlb_remove_check_page_size_change(tlb, PAGE_SIZE); orig_pte = pte = pte_offset_map_lock(mm, pmd, addr, &ptl); arch_enter_lazy_mmu_mode(); for (; addr != end; pte++, addr += PAGE_SIZE) { --- linux-4.8.0.orig/mm/memcontrol.c +++ linux-4.8.0/mm/memcontrol.c @@ -1947,6 +1947,15 @@ current->flags & PF_EXITING)) goto force; + /* + * Prevent unbounded recursion when reclaim operations need to + * allocate memory. This might exceed the limits temporarily, + * but we prefer facilitating memory reclaim and getting back + * under the limit over triggering OOM kills in these cases. + */ + if (unlikely(current->flags & PF_MEMALLOC)) + goto force; + if (unlikely(task_in_memcg_oom(current))) goto nomem; --- linux-4.8.0.orig/mm/memory-failure.c +++ linux-4.8.0/mm/memory-failure.c @@ -1112,10 +1112,10 @@ } if (!PageHuge(p) && PageTransHuge(hpage)) { - lock_page(hpage); - if (!PageAnon(hpage) || unlikely(split_huge_page(hpage))) { - unlock_page(hpage); - if (!PageAnon(hpage)) + lock_page(p); + if (!PageAnon(p) || unlikely(split_huge_page(p))) { + unlock_page(p); + if (!PageAnon(p)) pr_err("Memory failure: %#lx: non anonymous thp\n", pfn); else @@ -1126,9 +1126,7 @@ put_hwpoison_page(p); return -EBUSY; } - unlock_page(hpage); - get_hwpoison_page(p); - put_hwpoison_page(hpage); + unlock_page(p); VM_BUG_ON_PAGE(!page_count(p), p); hpage = compound_head(p); } --- linux-4.8.0.orig/mm/memory.c +++ linux-4.8.0/mm/memory.c @@ -528,7 +528,11 @@ end -= PMD_SIZE; if (addr > end - 1) return; - + /* + * We add page table cache pages with PAGE_SIZE, + * (see pte_free_tlb()), flush the tlb if we need + */ + tlb_remove_check_page_size_change(tlb, PAGE_SIZE); pgd = pgd_offset(tlb->mm, addr); do { next = pgd_addr_end(addr, end); @@ -1120,6 +1124,7 @@ swp_entry_t entry; struct page *pending_page = NULL; + tlb_remove_check_page_size_change(tlb, PAGE_SIZE); again: init_rss_vec(rss); start_pte = pte_offset_map_lock(mm, pmd, addr, &ptl); @@ -2113,7 +2118,7 @@ } if (!page_mkwrite) - file_update_time(vma->vm_file); + vma_file_update_time(vma); } return VM_FAULT_WRITE; @@ -2695,40 +2700,6 @@ } /* - * This is like a special single-page "expand_{down|up}wards()", - * except we must first make sure that 'address{-|+}PAGE_SIZE' - * doesn't hit another vma. - */ -static inline int check_stack_guard_page(struct vm_area_struct *vma, unsigned long address) -{ - address &= PAGE_MASK; - if ((vma->vm_flags & VM_GROWSDOWN) && address == vma->vm_start) { - struct vm_area_struct *prev = vma->vm_prev; - - /* - * Is there a mapping abutting this one below? - * - * That's only ok if it's the same stack mapping - * that has gotten split.. - */ - if (prev && prev->vm_end == address) - return prev->vm_flags & VM_GROWSDOWN ? 0 : -ENOMEM; - - return expand_downwards(vma, address - PAGE_SIZE); - } - if ((vma->vm_flags & VM_GROWSUP) && address + PAGE_SIZE == vma->vm_end) { - struct vm_area_struct *next = vma->vm_next; - - /* As VM_GROWSDOWN but s/below/above/ */ - if (next && next->vm_start == address + PAGE_SIZE) - return next->vm_flags & VM_GROWSUP ? 0 : -ENOMEM; - - return expand_upwards(vma, address + PAGE_SIZE); - } - return 0; -} - -/* * We enter with non-exclusive mmap_sem (to exclude vma changes, * but allow concurrent faults), and pte mapped but not yet locked. * We return with mmap_sem still held, but pte unmapped and unlocked. @@ -2744,10 +2715,6 @@ if (vma->vm_flags & VM_SHARED) return VM_FAULT_SIGBUS; - /* Check if we need to add a guard page to the stack */ - if (check_stack_guard_page(vma, fe->address) < 0) - return VM_FAULT_SIGSEGV; - /* * Use pte_alloc() instead of pte_alloc_map(). We can't run * pte_offset_map() on pmds where a huge pmd might be created --- linux-4.8.0.orig/mm/memory_hotplug.c +++ linux-4.8.0/mm/memory_hotplug.c @@ -1945,7 +1945,9 @@ * dissolve free hugepages in the memory block before doing offlining * actually in order to make hugetlbfs's object counting consistent. */ - dissolve_free_huge_pages(start_pfn, end_pfn); + ret = dissolve_free_huge_pages(start_pfn, end_pfn); + if (ret) + goto failed_removal; /* check again */ offlined_pages = check_pages_isolated(start_pfn, end_pfn); if (offlined_pages < 0) { --- linux-4.8.0.orig/mm/mlock.c +++ linux-4.8.0/mm/mlock.c @@ -190,10 +190,13 @@ */ spin_lock_irq(zone_lru_lock(zone)); - nr_pages = hpage_nr_pages(page); - if (!TestClearPageMlocked(page)) + if (!TestClearPageMlocked(page)) { + /* Potentially, PTE-mapped THP: do not skip the rest PTEs */ + nr_pages = 1; goto unlock_out; + } + nr_pages = hpage_nr_pages(page); __mod_zone_page_state(zone, NR_MLOCK, -nr_pages); if (__munlock_isolate_lru_page(page, true)) { --- linux-4.8.0.orig/mm/mmap.c +++ linux-4.8.0/mm/mmap.c @@ -163,7 +163,7 @@ if (vma->vm_ops && vma->vm_ops->close) vma->vm_ops->close(vma); if (vma->vm_file) - fput(vma->vm_file); + vma_fput(vma); mpol_put(vma_policy(vma)); kmem_cache_free(vm_area_cachep, vma); return next; @@ -176,6 +176,7 @@ unsigned long retval; unsigned long newbrk, oldbrk; struct mm_struct *mm = current->mm; + struct vm_area_struct *next; unsigned long min_brk; bool populate; @@ -221,7 +222,8 @@ } /* Check against existing mmap mappings. */ - if (find_vma_intersection(mm, oldbrk, newbrk+PAGE_SIZE)) + next = find_vma(mm, oldbrk); + if (next && newbrk + PAGE_SIZE > vm_start_gap(next)) goto out; /* Ok, looks good - let it rip. */ @@ -244,10 +246,22 @@ static long vma_compute_subtree_gap(struct vm_area_struct *vma) { - unsigned long max, subtree_gap; - max = vma->vm_start; - if (vma->vm_prev) - max -= vma->vm_prev->vm_end; + unsigned long max, prev_end, subtree_gap; + + /* + * Note: in the rare case of a VM_GROWSDOWN above a VM_GROWSUP, we + * allow two stack_guard_gaps between them here, and when choosing + * an unmapped area; whereas when expanding we only require one. + * That's a little inconsistent, but keeps the code here simpler. + */ + max = vm_start_gap(vma); + if (vma->vm_prev) { + prev_end = vm_end_gap(vma->vm_prev); + if (max > prev_end) + max -= prev_end; + else + max = 0; + } if (vma->vm_rb.rb_left) { subtree_gap = rb_entry(vma->vm_rb.rb_left, struct vm_area_struct, vm_rb)->rb_subtree_gap; @@ -343,7 +357,7 @@ anon_vma_unlock_read(anon_vma); } - highest_address = vma->vm_end; + highest_address = vm_end_gap(vma); vma = vma->vm_next; i++; } @@ -512,7 +526,7 @@ if (vma->vm_next) vma_gap_update(vma->vm_next); else - mm->highest_vm_end = vma->vm_end; + mm->highest_vm_end = vm_end_gap(vma); /* * vma->vm_prev wasn't known when we followed the rbtree to find the @@ -765,7 +779,7 @@ vma_gap_update(vma); if (end_changed) { if (!next) - mm->highest_vm_end = end; + mm->highest_vm_end = vm_end_gap(vma); else if (!adjust_next) vma_gap_update(next); } @@ -790,7 +804,7 @@ if (remove_next) { if (file) { uprobe_munmap(next, next->vm_start, next->vm_end); - fput(file); + vma_fput(vma); } if (next->anon_vma) anon_vma_merge(vma, next); @@ -810,8 +824,28 @@ } else if (next) vma_gap_update(next); - else - mm->highest_vm_end = end; + else { + /* + * If remove_next == 2 we obviously can't + * reach this path. + * + * If remove_next == 3 we can't reach this + * path because pre-swap() next is always not + * NULL. pre-swap() "next" is not being + * removed and its next->vm_end is not altered + * (and furthermore "end" already matches + * next->vm_end in remove_next == 3). + * + * We reach this only in the remove_next == 1 + * case if the "next" vma that was removed was + * the highest vma of the mm. However in such + * case next->vm_end == "end" and the extended + * "vma" has vma->vm_end == next->vm_end so + * mm->highest_vm_end doesn't need any update + * in remove_next == 1 case. + */ + VM_WARN_ON(mm->highest_vm_end != vm_end_gap(vma)); + } } if (insert && file) uprobe_mmap(insert); @@ -1574,8 +1608,8 @@ return addr; unmap_and_free_vma: + vma_fput(vma); vma->vm_file = NULL; - fput(file); /* Undo any partial mapping done by a device driver. */ unmap_region(mm, vma, prev, vma->vm_start, vma->vm_end); @@ -1630,7 +1664,7 @@ while (true) { /* Visit left subtree if it looks promising */ - gap_end = vma->vm_start; + gap_end = vm_start_gap(vma); if (gap_end >= low_limit && vma->vm_rb.rb_left) { struct vm_area_struct *left = rb_entry(vma->vm_rb.rb_left, @@ -1641,12 +1675,13 @@ } } - gap_start = vma->vm_prev ? vma->vm_prev->vm_end : 0; + gap_start = vma->vm_prev ? vm_end_gap(vma->vm_prev) : 0; check_current: /* Check if current node has a suitable gap */ if (gap_start > high_limit) return -ENOMEM; - if (gap_end >= low_limit && gap_end - gap_start >= length) + if (gap_end >= low_limit && + gap_end > gap_start && gap_end - gap_start >= length) goto found; /* Visit right subtree if it looks promising */ @@ -1668,8 +1703,8 @@ vma = rb_entry(rb_parent(prev), struct vm_area_struct, vm_rb); if (prev == vma->vm_rb.rb_left) { - gap_start = vma->vm_prev->vm_end; - gap_end = vma->vm_start; + gap_start = vm_end_gap(vma->vm_prev); + gap_end = vm_start_gap(vma); goto check_current; } } @@ -1733,7 +1768,7 @@ while (true) { /* Visit right subtree if it looks promising */ - gap_start = vma->vm_prev ? vma->vm_prev->vm_end : 0; + gap_start = vma->vm_prev ? vm_end_gap(vma->vm_prev) : 0; if (gap_start <= high_limit && vma->vm_rb.rb_right) { struct vm_area_struct *right = rb_entry(vma->vm_rb.rb_right, @@ -1746,10 +1781,11 @@ check_current: /* Check if current node has a suitable gap */ - gap_end = vma->vm_start; + gap_end = vm_start_gap(vma); if (gap_end < low_limit) return -ENOMEM; - if (gap_start <= high_limit && gap_end - gap_start >= length) + if (gap_start <= high_limit && + gap_end > gap_start && gap_end - gap_start >= length) goto found; /* Visit left subtree if it looks promising */ @@ -1772,7 +1808,7 @@ struct vm_area_struct, vm_rb); if (prev == vma->vm_rb.rb_right) { gap_start = vma->vm_prev ? - vma->vm_prev->vm_end : 0; + vm_end_gap(vma->vm_prev) : 0; goto check_current; } } @@ -1810,7 +1846,7 @@ unsigned long len, unsigned long pgoff, unsigned long flags) { struct mm_struct *mm = current->mm; - struct vm_area_struct *vma; + struct vm_area_struct *vma, *prev; struct vm_unmapped_area_info info; if (len > TASK_SIZE - mmap_min_addr) @@ -1821,9 +1857,10 @@ if (addr) { addr = PAGE_ALIGN(addr); - vma = find_vma(mm, addr); + vma = find_vma_prev(mm, addr, &prev); if (TASK_SIZE - len >= addr && addr >= mmap_min_addr && - (!vma || addr + len <= vma->vm_start)) + (!vma || addr + len <= vm_start_gap(vma)) && + (!prev || addr >= vm_end_gap(prev))) return addr; } @@ -1846,7 +1883,7 @@ const unsigned long len, const unsigned long pgoff, const unsigned long flags) { - struct vm_area_struct *vma; + struct vm_area_struct *vma, *prev; struct mm_struct *mm = current->mm; unsigned long addr = addr0; struct vm_unmapped_area_info info; @@ -1861,9 +1898,10 @@ /* requesting a specific address */ if (addr) { addr = PAGE_ALIGN(addr); - vma = find_vma(mm, addr); + vma = find_vma_prev(mm, addr, &prev); if (TASK_SIZE - len >= addr && addr >= mmap_min_addr && - (!vma || addr + len <= vma->vm_start)) + (!vma || addr + len <= vm_start_gap(vma)) && + (!prev || addr >= vm_end_gap(prev))) return addr; } @@ -1998,21 +2036,19 @@ * update accounting. This is shared with both the * grow-up and grow-down cases. */ -static int acct_stack_growth(struct vm_area_struct *vma, unsigned long size, unsigned long grow) +static int acct_stack_growth(struct vm_area_struct *vma, + unsigned long size, unsigned long grow) { struct mm_struct *mm = vma->vm_mm; struct rlimit *rlim = current->signal->rlim; - unsigned long new_start, actual_size; + unsigned long new_start; /* address space limit tests */ if (!may_expand_vm(mm, vma->vm_flags, grow)) return -ENOMEM; /* Stack limit test */ - actual_size = size; - if (size && (vma->vm_flags & (VM_GROWSUP | VM_GROWSDOWN))) - actual_size -= PAGE_SIZE; - if (actual_size > READ_ONCE(rlim[RLIMIT_STACK].rlim_cur)) + if (size > READ_ONCE(rlim[RLIMIT_STACK].rlim_cur)) return -ENOMEM; /* mlock limit tests */ @@ -2050,16 +2086,32 @@ int expand_upwards(struct vm_area_struct *vma, unsigned long address) { struct mm_struct *mm = vma->vm_mm; + struct vm_area_struct *next; + unsigned long gap_addr; int error = 0; if (!(vma->vm_flags & VM_GROWSUP)) return -EFAULT; - /* Guard against wrapping around to address 0. */ - if (address < PAGE_ALIGN(address+4)) - address = PAGE_ALIGN(address+4); - else + /* Guard against exceeding limits of the address space. */ + address &= PAGE_MASK; + if (address >= TASK_SIZE) return -ENOMEM; + address += PAGE_SIZE; + + /* Enforce stack_guard_gap */ + gap_addr = address + stack_guard_gap; + + /* Guard against overflow */ + if (gap_addr < address || gap_addr > TASK_SIZE) + gap_addr = TASK_SIZE; + + next = vma->vm_next; + if (next && next->vm_start < gap_addr) { + if (!(next->vm_flags & VM_GROWSUP)) + return -ENOMEM; + /* Check that both stack segments have the same anon_vma? */ + } /* We must make sure the anon_vma is allocated. */ if (unlikely(anon_vma_prepare(vma))) @@ -2104,7 +2156,7 @@ if (vma->vm_next) vma_gap_update(vma->vm_next); else - mm->highest_vm_end = address; + mm->highest_vm_end = vm_end_gap(vma); spin_unlock(&mm->page_table_lock); perf_event_mmap(vma); @@ -2125,6 +2177,8 @@ unsigned long address) { struct mm_struct *mm = vma->vm_mm; + struct vm_area_struct *prev; + unsigned long gap_addr; int error; address &= PAGE_MASK; @@ -2132,6 +2186,17 @@ if (error) return error; + /* Enforce stack_guard_gap */ + gap_addr = address - stack_guard_gap; + if (gap_addr > address) + return -ENOMEM; + prev = vma->vm_prev; + if (prev && prev->vm_end > gap_addr) { + if (!(prev->vm_flags & VM_GROWSDOWN)) + return -ENOMEM; + /* Check that both stack segments have the same anon_vma? */ + } + /* We must make sure the anon_vma is allocated. */ if (unlikely(anon_vma_prepare(vma))) return -ENOMEM; @@ -2186,28 +2251,25 @@ return error; } -/* - * Note how expand_stack() refuses to expand the stack all the way to - * abut the next virtual mapping, *unless* that mapping itself is also - * a stack mapping. We want to leave room for a guard page, after all - * (the guard page itself is not added here, that is done by the - * actual page faulting logic) - * - * This matches the behavior of the guard page logic (see mm/memory.c: - * check_stack_guard_page()), which only allows the guard page to be - * removed under these circumstances. - */ +/* enforced gap between the expanding stack and other mappings. */ +unsigned long stack_guard_gap = 256UL<comm, current->pid); @@ -2625,10 +2679,27 @@ } } - file = get_file(vma->vm_file); + vma_get_file(vma); + file = vma->vm_file; + prfile = vma->vm_prfile; ret = do_mmap_pgoff(vma->vm_file, start, size, prot, flags, pgoff, &populate); + if (!IS_ERR_VALUE(ret) && file && prfile) { + struct vm_area_struct *new_vma; + + new_vma = find_vma(mm, ret); + if (!new_vma->vm_prfile) + new_vma->vm_prfile = prfile; + if (new_vma != vma) + get_file(prfile); + } + /* + * two fput()s instead of vma_fput(vma), + * coz vma may not be available anymore. + */ fput(file); + if (prfile) + fput(prfile); out: up_write(&mm->mmap_sem); if (populate) @@ -2903,7 +2974,7 @@ if (anon_vma_clone(new_vma, vma)) goto out_free_mempol; if (new_vma->vm_file) - get_file(new_vma->vm_file); + vma_get_file(new_vma); if (new_vma->vm_ops && new_vma->vm_ops->open) new_vma->vm_ops->open(new_vma); vma_link(mm, new_vma, prev, rb_link, rb_parent); --- linux-4.8.0.orig/mm/mprotect.c +++ linux-4.8.0/mm/mprotect.c @@ -23,11 +23,13 @@ #include #include #include +#include #include #include #include #include #include +#include #include #include "internal.h" @@ -352,8 +354,11 @@ return error; } -SYSCALL_DEFINE3(mprotect, unsigned long, start, size_t, len, - unsigned long, prot) +/* + * pkey==-1 when doing a legacy mprotect() + */ +static int do_mprotect_pkey(unsigned long start, size_t len, + unsigned long prot, int pkey) { unsigned long nstart, end, tmp, reqprot; struct vm_area_struct *vma, *prev; @@ -382,6 +387,14 @@ if (down_write_killable(¤t->mm->mmap_sem)) return -EINTR; + /* + * If userspace did not allocate the pkey, do not let + * them use it here. + */ + error = -EINVAL; + if ((pkey != -1) && !mm_pkey_is_allocated(current->mm, pkey)) + goto out; + vma = find_vma(current->mm, start); error = -ENOMEM; if (!vma) @@ -408,8 +421,9 @@ prev = vma; for (nstart = start ; ; ) { + unsigned long mask_off_old_flags; unsigned long newflags; - int pkey = arch_override_mprotect_pkey(vma, prot, -1); + int new_vma_pkey; /* Here we know that vma->vm_start <= nstart < vma->vm_end. */ @@ -417,8 +431,17 @@ if (rier && (vma->vm_flags & VM_MAYEXEC)) prot |= PROT_EXEC; - newflags = calc_vm_prot_bits(prot, pkey); - newflags |= (vma->vm_flags & ~(VM_READ | VM_WRITE | VM_EXEC)); + /* + * Each mprotect() call explicitly passes r/w/x permissions. + * If a permission is not passed to mprotect(), it must be + * cleared from the VMA. + */ + mask_off_old_flags = VM_READ | VM_WRITE | VM_EXEC | + ARCH_VM_PKEY_FLAGS; + + new_vma_pkey = arch_override_mprotect_pkey(vma, prot, pkey); + newflags = calc_vm_prot_bits(prot, new_vma_pkey); + newflags |= (vma->vm_flags & ~mask_off_old_flags); /* newflags >> 4 shift VM_MAY% in place of VM_% */ if ((newflags & ~(newflags >> 4)) & (VM_READ | VM_WRITE | VM_EXEC)) { @@ -454,3 +477,60 @@ up_write(¤t->mm->mmap_sem); return error; } + +SYSCALL_DEFINE3(mprotect, unsigned long, start, size_t, len, + unsigned long, prot) +{ + return do_mprotect_pkey(start, len, prot, -1); +} + +SYSCALL_DEFINE4(pkey_mprotect, unsigned long, start, size_t, len, + unsigned long, prot, int, pkey) +{ + return do_mprotect_pkey(start, len, prot, pkey); +} + +SYSCALL_DEFINE2(pkey_alloc, unsigned long, flags, unsigned long, init_val) +{ + int pkey; + int ret; + + /* No flags supported yet. */ + if (flags) + return -EINVAL; + /* check for unsupported init values */ + if (init_val & ~PKEY_ACCESS_MASK) + return -EINVAL; + + down_write(¤t->mm->mmap_sem); + pkey = mm_pkey_alloc(current->mm); + + ret = -ENOSPC; + if (pkey == -1) + goto out; + + ret = arch_set_user_pkey_access(current, pkey, init_val); + if (ret) { + mm_pkey_free(current->mm, pkey); + goto out; + } + ret = pkey; +out: + up_write(¤t->mm->mmap_sem); + return ret; +} + +SYSCALL_DEFINE1(pkey_free, int, pkey) +{ + int ret; + + down_write(¤t->mm->mmap_sem); + ret = mm_pkey_free(current->mm, pkey); + up_write(¤t->mm->mmap_sem); + + /* + * We could provie warnings or errors if any VMA still + * has the pkey set here. + */ + return ret; +} --- linux-4.8.0.orig/mm/nommu.c +++ linux-4.8.0/mm/nommu.c @@ -644,7 +644,7 @@ up_write(&nommu_region_sem); if (region->vm_file) - fput(region->vm_file); + vmr_fput(region); /* IO memory and memory shared directly out of the pagecache * from ramfs/tmpfs mustn't be released here */ @@ -802,7 +802,7 @@ if (vma->vm_ops && vma->vm_ops->close) vma->vm_ops->close(vma); if (vma->vm_file) - fput(vma->vm_file); + vma_fput(vma); put_nommu_region(vma->vm_region); kmem_cache_free(vm_area_cachep, vma); } @@ -1328,7 +1328,7 @@ goto error_just_free; } } - fput(region->vm_file); + vmr_fput(region); kmem_cache_free(vm_region_jar, region); region = pregion; result = start; @@ -1403,10 +1403,10 @@ up_write(&nommu_region_sem); error: if (region->vm_file) - fput(region->vm_file); + vmr_fput(region); kmem_cache_free(vm_region_jar, region); if (vma->vm_file) - fput(vma->vm_file); + vma_fput(vma); kmem_cache_free(vm_area_cachep, vma); return ret; --- linux-4.8.0.orig/mm/page_alloc.c +++ linux-4.8.0/mm/page_alloc.c @@ -2173,7 +2173,7 @@ unsigned long count, struct list_head *list, int migratetype, bool cold) { - int i; + int i, alloced = 0; spin_lock(&zone->lock); for (i = 0; i < count; ++i) { @@ -2198,13 +2198,21 @@ else list_add_tail(&page->lru, list); list = &page->lru; + alloced++; if (is_migrate_cma(get_pcppage_migratetype(page))) __mod_zone_page_state(zone, NR_FREE_CMA_PAGES, -(1 << order)); } + + /* + * i pages were removed from the buddy list even if some leak due + * to check_pcp_refill failing so adjust NR_FREE_PAGES based + * on i. Do not confuse with 'alloced' which is the number of + * pages added to the pcp list. + */ __mod_zone_page_state(zone, NR_FREE_PAGES, -(i << order)); spin_unlock(&zone->lock); - return i; + return alloced; } #ifdef CONFIG_NUMA @@ -2524,30 +2532,22 @@ * Update NUMA hit/miss statistics * * Must be called with interrupts disabled. - * - * When __GFP_OTHER_NODE is set assume the node of the preferred - * zone is the local node. This is useful for daemons who allocate - * memory on behalf of other processes. */ -static inline void zone_statistics(struct zone *preferred_zone, struct zone *z, - gfp_t flags) +static inline void zone_statistics(struct zone *preferred_zone, struct zone *z) { #ifdef CONFIG_NUMA - int local_nid = numa_node_id(); enum zone_stat_item local_stat = NUMA_LOCAL; - if (unlikely(flags & __GFP_OTHER_NODE)) { + if (z->node != numa_node_id()) local_stat = NUMA_OTHER; - local_nid = preferred_zone->node; - } - if (z->node == local_nid) { + if (z->node == preferred_zone->node) __inc_zone_state(z, NUMA_HIT); - __inc_zone_state(z, local_stat); - } else { + else { __inc_zone_state(z, NUMA_MISS); __inc_zone_state(preferred_zone, NUMA_FOREIGN); } + __inc_zone_state(z, local_stat); #endif } @@ -2615,7 +2615,7 @@ } __count_zid_vm_events(PGALLOC, page_zonenum(page), 1 << order); - zone_statistics(preferred_zone, zone, gfp_flags); + zone_statistics(preferred_zone, zone); local_irq_restore(flags); VM_BUG_ON_PAGE(bad_range(zone, page), page); @@ -3161,6 +3161,16 @@ if (!order || order > PAGE_ALLOC_COSTLY_ORDER) return false; +#ifdef CONFIG_COMPACTION + /* + * This is a gross workaround to compensate a lack of reliable compaction + * operation. We cannot simply go OOM with the current state of the compaction + * code because this can lead to pre mature OOM declaration. + */ + if (order <= PAGE_ALLOC_COSTLY_ORDER) + return true; +#endif + /* * There are setups with compaction disabled which would prefer to loop * inside the allocator rather than hit the oom killer prematurely. --- linux-4.8.0.orig/mm/prfile.c +++ linux-4.8.0/mm/prfile.c @@ -0,0 +1,86 @@ +/* + * Mainly for aufs which mmap(2) diffrent file and wants to print different path + * in /proc/PID/maps. + * Call these functions via macros defined in linux/mm.h. + * + * See Documentation/filesystems/aufs/design/06mmap.txt + * + * Copyright (c) 2014 Junjro R. Okajima + * Copyright (c) 2014 Ian Campbell + */ + +#include +#include +#include + +/* #define PRFILE_TRACE */ +static inline void prfile_trace(struct file *f, struct file *pr, + const char func[], int line, const char func2[]) +{ +#ifdef PRFILE_TRACE + if (pr) + pr_info("%s:%d: %s, %s\n", func, line, func2, + f ? (char *)f->f_path.dentry->d_name.name : "(null)"); +#endif +} + +void vma_do_file_update_time(struct vm_area_struct *vma, const char func[], + int line) +{ + struct file *f = vma->vm_file, *pr = vma->vm_prfile; + + prfile_trace(f, pr, func, line, __func__); + file_update_time(f); + if (f && pr) + file_update_time(pr); +} + +struct file *vma_do_pr_or_file(struct vm_area_struct *vma, const char func[], + int line) +{ + struct file *f = vma->vm_file, *pr = vma->vm_prfile; + + prfile_trace(f, pr, func, line, __func__); + return (f && pr) ? pr : f; +} + +void vma_do_get_file(struct vm_area_struct *vma, const char func[], int line) +{ + struct file *f = vma->vm_file, *pr = vma->vm_prfile; + + prfile_trace(f, pr, func, line, __func__); + get_file(f); + if (f && pr) + get_file(pr); +} + +void vma_do_fput(struct vm_area_struct *vma, const char func[], int line) +{ + struct file *f = vma->vm_file, *pr = vma->vm_prfile; + + prfile_trace(f, pr, func, line, __func__); + fput(f); + if (f && pr) + fput(pr); +} + +#ifndef CONFIG_MMU +struct file *vmr_do_pr_or_file(struct vm_region *region, const char func[], + int line) +{ + struct file *f = region->vm_file, *pr = region->vm_prfile; + + prfile_trace(f, pr, func, line, __func__); + return (f && pr) ? pr : f; +} + +void vmr_do_fput(struct vm_region *region, const char func[], int line) +{ + struct file *f = region->vm_file, *pr = region->vm_prfile; + + prfile_trace(f, pr, func, line, __func__); + fput(f); + if (f && pr) + fput(pr); +} +#endif /* !CONFIG_MMU */ --- linux-4.8.0.orig/mm/shmem.c +++ linux-4.8.0/mm/shmem.c @@ -104,9 +104,13 @@ return totalram_pages / 2; } -static unsigned long shmem_default_max_inodes(void) +static int shmem_default_max_inodes(void) { - return min(totalram_pages - totalhigh_pages, totalram_pages / 2); + unsigned long ul; + + ul = INT_MAX; + ul = min3(ul, totalram_pages - totalhigh_pages, totalram_pages / 2); + return ul; } #endif @@ -1042,6 +1046,11 @@ simple_xattrs_free(&info->xattrs); WARN_ON(inode->i_blocks); + if (!sbinfo->idr_nouse && inode->i_ino) { + mutex_lock(&sbinfo->idr_lock); + idr_remove(&sbinfo->idr, inode->i_ino); + mutex_unlock(&sbinfo->idr_lock); + } shmem_free_inode(inode->i_sb); clear_inode(inode); } @@ -1483,6 +1492,8 @@ copy_highpage(newpage, oldpage); flush_dcache_page(newpage); + __SetPageLocked(newpage); + __SetPageSwapBacked(newpage); SetPageUptodate(newpage); set_page_private(newpage, swap_index); SetPageSwapCache(newpage); @@ -2074,13 +2085,13 @@ struct inode *inode; struct shmem_inode_info *info; struct shmem_sb_info *sbinfo = SHMEM_SB(sb); + int ino; if (shmem_reserve_inode(sb)) return NULL; inode = new_inode(sb); if (inode) { - inode->i_ino = get_next_ino(); inode_init_owner(inode, dir, mode); inode->i_blocks = 0; inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME; @@ -2122,6 +2133,25 @@ mpol_shared_policy_init(&info->policy, NULL); break; } + + if (!sbinfo->idr_nouse) { + /* inum 0 and 1 are unused */ + mutex_lock(&sbinfo->idr_lock); + ino = idr_alloc(&sbinfo->idr, inode, 2, INT_MAX, + GFP_NOFS); + if (ino > 0) { + inode->i_ino = ino; + mutex_unlock(&sbinfo->idr_lock); + __insert_inode_hash(inode, inode->i_ino); + } else { + inode->i_ino = 0; + mutex_unlock(&sbinfo->idr_lock); + iput(inode); + /* shmem_free_inode() will be called */ + inode = NULL; + } + } else + inode->i_ino = get_next_ino(); } else shmem_free_inode(sb); return inode; @@ -3314,8 +3344,7 @@ static int shmem_match(struct inode *ino, void *vfh) { __u32 *fh = vfh; - __u64 inum = fh[2]; - inum = (inum << 32) | fh[1]; + __u64 inum = fh[1]; return ino->i_ino == inum && fh[0] == ino->i_generation; } @@ -3326,14 +3355,11 @@ struct dentry *dentry = NULL; u64 inum; - if (fh_len < 3) + if (fh_len < 2) return NULL; - inum = fid->raw[2]; - inum = (inum << 32) | fid->raw[1]; - - inode = ilookup5(sb, (unsigned long)(inum + fid->raw[0]), - shmem_match, fid->raw); + inum = fid->raw[1]; + inode = ilookup5(sb, inum, shmem_match, fid->raw); if (inode) { dentry = d_find_alias(inode); iput(inode); @@ -3345,30 +3371,15 @@ static int shmem_encode_fh(struct inode *inode, __u32 *fh, int *len, struct inode *parent) { - if (*len < 3) { - *len = 3; + if (*len < 2) { + *len = 2; return FILEID_INVALID; } - if (inode_unhashed(inode)) { - /* Unfortunately insert_inode_hash is not idempotent, - * so as we hash inodes here rather than at creation - * time, we need a lock to ensure we only try - * to do it once - */ - static DEFINE_SPINLOCK(lock); - spin_lock(&lock); - if (inode_unhashed(inode)) - __insert_inode_hash(inode, - inode->i_ino + inode->i_generation); - spin_unlock(&lock); - } - fh[0] = inode->i_generation; fh[1] = inode->i_ino; - fh[2] = ((__u64)inode->i_ino) >> 32; - *len = 3; + *len = 2; return 1; } @@ -3432,7 +3443,7 @@ goto bad_val; } else if (!strcmp(this_char,"nr_inodes")) { sbinfo->max_inodes = memparse(value, &rest); - if (*rest) + if (*rest || sbinfo->max_inodes < 2) goto bad_val; } else if (!strcmp(this_char,"mode")) { if (remount) @@ -3497,7 +3508,7 @@ { struct shmem_sb_info *sbinfo = SHMEM_SB(sb); struct shmem_sb_info config = *sbinfo; - unsigned long inodes; + int inodes; int error = -EINVAL; config.mpol = NULL; @@ -3546,7 +3557,7 @@ seq_printf(seq, ",size=%luk", sbinfo->max_blocks << (PAGE_SHIFT - 10)); if (sbinfo->max_inodes != shmem_default_max_inodes()) - seq_printf(seq, ",nr_inodes=%lu", sbinfo->max_inodes); + seq_printf(seq, ",nr_inodes=%d", sbinfo->max_inodes); if (sbinfo->mode != (S_IRWXUGO | S_ISVTX)) seq_printf(seq, ",mode=%03ho", sbinfo->mode); if (!uid_eq(sbinfo->uid, GLOBAL_ROOT_UID)) @@ -3640,6 +3651,8 @@ { struct shmem_sb_info *sbinfo = SHMEM_SB(sb); + if (!sbinfo->idr_nouse) + idr_destroy(&sbinfo->idr); percpu_counter_destroy(&sbinfo->used_blocks); mpol_put(sbinfo->mpol); kfree(sbinfo); @@ -3658,6 +3671,8 @@ if (!sbinfo) return -ENOMEM; + mutex_init(&sbinfo->idr_lock); + idr_init(&sbinfo->idr); sbinfo->mode = S_IRWXUGO | S_ISVTX; sbinfo->uid = current_fsuid(); sbinfo->gid = current_fsgid(); @@ -3765,6 +3780,15 @@ kmem_cache_destroy(shmem_inode_cachep); } +static __init void shmem_no_idr(struct super_block *sb) +{ + struct shmem_sb_info *sbinfo; + + sbinfo = SHMEM_SB(sb); + sbinfo->idr_nouse = true; + idr_destroy(&sbinfo->idr); +} + static const struct address_space_operations shmem_aops = { .writepage = shmem_writepage, .set_page_dirty = __set_page_dirty_no_writeback, @@ -3906,6 +3930,7 @@ pr_err("Could not kern_mount tmpfs\n"); goto out1; } + shmem_no_idr(shm_mnt->mnt_sb); #ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE if (has_transparent_hugepage() && shmem_huge < SHMEM_HUGE_DENY) --- linux-4.8.0.orig/mm/slab.c +++ linux-4.8.0/mm/slab.c @@ -964,7 +964,7 @@ * guaranteed to be valid until irq is re-enabled, because it will be * freed after synchronize_sched(). */ - if (force_change) + if (old_shared && force_change) synchronize_sched(); fail: @@ -2339,7 +2339,7 @@ return nr_freed; } -int __kmem_cache_shrink(struct kmem_cache *cachep, bool deactivate) +int __kmem_cache_shrink(struct kmem_cache *cachep) { int ret = 0; int node; @@ -2359,7 +2359,7 @@ int __kmem_cache_shutdown(struct kmem_cache *cachep) { - return __kmem_cache_shrink(cachep, false); + return __kmem_cache_shrink(cachep); } void __kmem_cache_release(struct kmem_cache *cachep) --- linux-4.8.0.orig/mm/slab.h +++ linux-4.8.0/mm/slab.h @@ -146,7 +146,7 @@ int __kmem_cache_shutdown(struct kmem_cache *); void __kmem_cache_release(struct kmem_cache *); -int __kmem_cache_shrink(struct kmem_cache *, bool); +int __kmem_cache_shrink(struct kmem_cache *); void slab_kmem_cache_release(struct kmem_cache *); struct seq_file; --- linux-4.8.0.orig/mm/slab_common.c +++ linux-4.8.0/mm/slab_common.c @@ -533,8 +533,8 @@ s = create_cache(cache_name, root_cache->object_size, root_cache->size, root_cache->align, - root_cache->flags, root_cache->ctor, - memcg, root_cache); + root_cache->flags & CACHE_CREATE_MASK, + root_cache->ctor, memcg, root_cache); /* * If we could not create a memcg cache, do not complain, because * that's not critical at all as we can always proceed with the root @@ -573,6 +573,29 @@ get_online_cpus(); get_online_mems(); +#ifdef CONFIG_SLUB + /* + * In case of SLUB, we need to disable empty slab caching to + * avoid pinning the offline memory cgroup by freeable kmem + * pages charged to it. SLAB doesn't need this, as it + * periodically purges unused slabs. + */ + mutex_lock(&slab_mutex); + list_for_each_entry(s, &slab_caches, list) { + c = is_root_cache(s) ? cache_from_memcg_idx(s, idx) : NULL; + if (c) { + c->cpu_partial = 0; + c->min_partial = 0; + } + } + mutex_unlock(&slab_mutex); + /* + * kmem_cache->cpu_partial is checked locklessly (see + * put_cpu_partial()). Make sure the change is visible. + */ + synchronize_sched(); +#endif + mutex_lock(&slab_mutex); list_for_each_entry(s, &slab_caches, list) { if (!is_root_cache(s)) @@ -584,7 +607,7 @@ if (!c) continue; - __kmem_cache_shrink(c, true); + __kmem_cache_shrink(c); arr->entries[idx] = NULL; } mutex_unlock(&slab_mutex); @@ -755,7 +778,7 @@ get_online_cpus(); get_online_mems(); kasan_cache_shrink(cachep); - ret = __kmem_cache_shrink(cachep, false); + ret = __kmem_cache_shrink(cachep); put_online_mems(); put_online_cpus(); return ret; --- linux-4.8.0.orig/mm/slob.c +++ linux-4.8.0/mm/slob.c @@ -634,7 +634,7 @@ { } -int __kmem_cache_shrink(struct kmem_cache *d, bool deactivate) +int __kmem_cache_shrink(struct kmem_cache *d) { return 0; } --- linux-4.8.0.orig/mm/slub.c +++ linux-4.8.0/mm/slub.c @@ -1423,6 +1423,10 @@ int err; unsigned long i, count = oo_objects(s->oo); + /* Bailout if already initialised */ + if (s->random_seq) + return 0; + err = cache_random_seq_create(s, count, GFP_KERNEL); if (err) { pr_err("SLUB: Unable to initialize free list for %s\n", @@ -3868,7 +3872,7 @@ * being allocated from last increasing the chance that the last objects * are freed in them. */ -int __kmem_cache_shrink(struct kmem_cache *s, bool deactivate) +int __kmem_cache_shrink(struct kmem_cache *s) { int node; int i; @@ -3880,21 +3884,6 @@ unsigned long flags; int ret = 0; - if (deactivate) { - /* - * Disable empty slabs caching. Used to avoid pinning offline - * memory cgroups by kmem pages that can be freed. - */ - s->cpu_partial = 0; - s->min_partial = 0; - - /* - * s->cpu_partial is checked locklessly (see put_cpu_partial), - * so we have to make sure the change is visible. - */ - synchronize_sched(); - } - flush_all(s); for_each_kmem_cache_node(s, node, n) { INIT_LIST_HEAD(&discard); @@ -3951,7 +3940,7 @@ mutex_lock(&slab_mutex); list_for_each_entry(s, &slab_caches, list) - __kmem_cache_shrink(s, false); + __kmem_cache_shrink(s); mutex_unlock(&slab_mutex); return 0; --- linux-4.8.0.orig/mm/swapfile.c +++ linux-4.8.0/mm/swapfile.c @@ -2218,6 +2218,8 @@ swab32s(&swap_header->info.version); swab32s(&swap_header->info.last_page); swab32s(&swap_header->info.nr_badpages); + if (swap_header->info.nr_badpages > MAX_SWAP_BADPAGES) + return 0; for (i = 0; i < swap_header->info.nr_badpages; i++) swab32s(&swap_header->info.badpages[i]); } --- linux-4.8.0.orig/mm/truncate.c +++ linux-4.8.0/mm/truncate.c @@ -283,7 +283,7 @@ if (!trylock_page(page)) continue; - WARN_ON(page_to_pgoff(page) != index); + WARN_ON(page_to_index(page) != index); if (PageWriteback(page)) { unlock_page(page); continue; @@ -371,7 +371,7 @@ } lock_page(page); - WARN_ON(page_to_pgoff(page) != index); + WARN_ON(page_to_index(page) != index); wait_on_page_writeback(page); truncate_inode_page(mapping, page); unlock_page(page); @@ -492,7 +492,7 @@ if (!trylock_page(page)) continue; - WARN_ON(page_to_pgoff(page) != index); + WARN_ON(page_to_index(page) != index); /* Middle of THP: skip */ if (PageTransTail(page)) { @@ -612,7 +612,7 @@ } lock_page(page); - WARN_ON(page_to_pgoff(page) != index); + WARN_ON(page_to_index(page) != index); if (page->mapping != mapping) { unlock_page(page); continue; --- linux-4.8.0.orig/mm/vmscan.c +++ linux-4.8.0/mm/vmscan.c @@ -291,6 +291,7 @@ int nid = shrinkctl->nid; long batch_size = shrinker->batch ? shrinker->batch : SHRINK_BATCH; + long scanned = 0, next_deferred; freeable = shrinker->count_objects(shrinker, shrinkctl); if (freeable == 0) @@ -312,7 +313,9 @@ pr_err("shrink_slab: %pF negative objects to delete nr=%ld\n", shrinker->scan_objects, total_scan); total_scan = freeable; - } + next_deferred = nr; + } else + next_deferred = total_scan; /* * We need to avoid excessive windup on filesystem shrinkers @@ -369,17 +372,22 @@ count_vm_events(SLABS_SCANNED, nr_to_scan); total_scan -= nr_to_scan; + scanned += nr_to_scan; cond_resched(); } + if (next_deferred >= scanned) + next_deferred -= scanned; + else + next_deferred = 0; /* * move the unused scan count back into the shrinker in a * manner that handles concurrent updates. If we exhausted the * scan, there is no need to do an update. */ - if (total_scan > 0) - new_nr = atomic_long_add_return(total_scan, + if (next_deferred > 0) + new_nr = atomic_long_add_return(next_deferred, &shrinker->nr_deferred[nid]); else new_nr = atomic_long_read(&shrinker->nr_deferred[nid]); @@ -3048,7 +3056,9 @@ sc.gfp_mask, sc.reclaim_idx); + current->flags |= PF_MEMALLOC; nr_reclaimed = do_try_to_free_pages(zonelist, &sc); + current->flags &= ~PF_MEMALLOC; trace_mm_vmscan_memcg_reclaim_end(nr_reclaimed); --- linux-4.8.0.orig/mm/workingset.c +++ linux-4.8.0/mm/workingset.c @@ -348,7 +348,7 @@ shadow_nodes = list_lru_shrink_count(&workingset_shadow_nodes, sc); local_irq_enable(); - if (memcg_kmem_enabled()) { + if (sc->memcg) { pages = mem_cgroup_node_nr_lru_pages(sc->memcg, sc->nid, LRU_ALL_FILE); } else { --- linux-4.8.0.orig/net/8021q/vlan.c +++ linux-4.8.0/net/8021q/vlan.c @@ -664,7 +664,7 @@ skb_gro_pull(skb, sizeof(*vhdr)); skb_gro_postpull_rcsum(skb, vhdr, sizeof(*vhdr)); - pp = ptype->callbacks.gro_receive(head, skb); + pp = call_gro_receive(ptype->callbacks.gro_receive, head, skb); out_unlock: rcu_read_unlock(); --- linux-4.8.0.orig/net/batman-adv/originator.c +++ linux-4.8.0/net/batman-adv/originator.c @@ -537,7 +537,7 @@ if (bat_priv->algo_ops->neigh.hardif_init) bat_priv->algo_ops->neigh.hardif_init(hardif_neigh); - hlist_add_head(&hardif_neigh->list, &hard_iface->neigh_list); + hlist_add_head_rcu(&hardif_neigh->list, &hard_iface->neigh_list); out: spin_unlock_bh(&hard_iface->neigh_list_lock); --- linux-4.8.0.orig/net/batman-adv/tp_meter.c +++ linux-4.8.0/net/batman-adv/tp_meter.c @@ -837,6 +837,7 @@ primary_if = batadv_primary_if_get_selected(bat_priv); if (unlikely(!primary_if)) { err = BATADV_TP_REASON_DST_UNREACHABLE; + tp_vars->reason = err; goto out; } --- linux-4.8.0.orig/net/batman-adv/translation-table.c +++ linux-4.8.0/net/batman-adv/translation-table.c @@ -2849,7 +2849,7 @@ &tvlv_tt_data, &tt_change, &tt_len); - if (!tt_len) + if (!tt_len || !tvlv_len) goto unlock; /* Copy the last orig_node's OGM buffer */ @@ -2867,7 +2867,7 @@ &tvlv_tt_data, &tt_change, &tt_len); - if (!tt_len) + if (!tt_len || !tvlv_len) goto out; /* fill the rest of the tvlv with the real TT entries */ --- linux-4.8.0.orig/net/bridge/br_input.c +++ linux-4.8.0/net/bridge/br_input.c @@ -29,6 +29,7 @@ static int br_netif_receive_skb(struct net *net, struct sock *sk, struct sk_buff *skb) { + br_drop_fake_rtable(skb); return netif_receive_skb(skb); } --- linux-4.8.0.orig/net/bridge/br_multicast.c +++ linux-4.8.0/net/bridge/br_multicast.c @@ -972,13 +972,12 @@ mod_timer(&query->timer, jiffies); } -void br_multicast_enable_port(struct net_bridge_port *port) +static void __br_multicast_enable_port(struct net_bridge_port *port) { struct net_bridge *br = port->br; - spin_lock(&br->multicast_lock); if (br->multicast_disabled || !netif_running(br->dev)) - goto out; + return; br_multicast_enable(&port->ip4_own_query); #if IS_ENABLED(CONFIG_IPV6) @@ -987,8 +986,14 @@ if (port->multicast_router == MDB_RTR_TYPE_PERM && hlist_unhashed(&port->rlist)) br_multicast_add_router(br, port); +} -out: +void br_multicast_enable_port(struct net_bridge_port *port) +{ + struct net_bridge *br = port->br; + + spin_lock(&br->multicast_lock); + __br_multicast_enable_port(port); spin_unlock(&br->multicast_lock); } @@ -1994,8 +1999,9 @@ int br_multicast_toggle(struct net_bridge *br, unsigned long val) { - int err = 0; struct net_bridge_mdb_htable *mdb; + struct net_bridge_port *port; + int err = 0; spin_lock_bh(&br->multicast_lock); if (br->multicast_disabled == !val) @@ -2023,10 +2029,9 @@ goto rollback; } - br_multicast_start_querier(br, &br->ip4_own_query); -#if IS_ENABLED(CONFIG_IPV6) - br_multicast_start_querier(br, &br->ip6_own_query); -#endif + br_multicast_open(br); + list_for_each_entry(port, &br->port_list, list) + __br_multicast_enable_port(port); unlock: spin_unlock_bh(&br->multicast_lock); --- linux-4.8.0.orig/net/bridge/br_netfilter_hooks.c +++ linux-4.8.0/net/bridge/br_netfilter_hooks.c @@ -523,21 +523,6 @@ } -/* PF_BRIDGE/LOCAL_IN ************************************************/ -/* The packet is locally destined, which requires a real - * dst_entry, so detach the fake one. On the way up, the - * packet would pass through PRE_ROUTING again (which already - * took place when the packet entered the bridge), but we - * register an IPv4 PRE_ROUTING 'sabotage' hook that will - * prevent this from happening. */ -static unsigned int br_nf_local_in(void *priv, - struct sk_buff *skb, - const struct nf_hook_state *state) -{ - br_drop_fake_rtable(skb); - return NF_ACCEPT; -} - /* PF_BRIDGE/FORWARD *************************************************/ static int br_nf_forward_finish(struct net *net, struct sock *sk, struct sk_buff *skb) { @@ -908,12 +893,6 @@ .priority = NF_BR_PRI_BRNF, }, { - .hook = br_nf_local_in, - .pf = NFPROTO_BRIDGE, - .hooknum = NF_BR_LOCAL_IN, - .priority = NF_BR_PRI_BRNF, - }, - { .hook = br_nf_forward_ip, .pf = NFPROTO_BRIDGE, .hooknum = NF_BR_FORWARD, --- linux-4.8.0.orig/net/can/bcm.c +++ linux-4.8.0/net/can/bcm.c @@ -77,7 +77,7 @@ (CAN_EFF_MASK | CAN_EFF_FLAG | CAN_RTR_FLAG) : \ (CAN_SFF_MASK | CAN_EFF_FLAG | CAN_RTR_FLAG)) -#define CAN_BCM_VERSION "20160617" +#define CAN_BCM_VERSION "20161123" MODULE_DESCRIPTION("PF_CAN broadcast manager protocol"); MODULE_LICENSE("Dual BSD/GPL"); @@ -109,8 +109,9 @@ u32 count; u32 nframes; u32 currframe; - struct canfd_frame *frames; - struct canfd_frame *last_frames; + /* void pointers to arrays of struct can[fd]_frame */ + void *frames; + void *last_frames; struct canfd_frame sframe; struct canfd_frame last_sframe; struct sock *sk; @@ -681,7 +682,7 @@ if (op->flags & RX_FILTER_ID) { /* the easiest case */ - bcm_rx_update_and_send(op, &op->last_frames[0], rxframe); + bcm_rx_update_and_send(op, op->last_frames, rxframe); goto rx_starttimer; } @@ -1068,7 +1069,7 @@ if (msg_head->nframes) { /* update CAN frames content */ - err = memcpy_from_msg((u8 *)op->frames, msg, + err = memcpy_from_msg(op->frames, msg, msg_head->nframes * op->cfsiz); if (err < 0) return err; @@ -1118,7 +1119,7 @@ } if (msg_head->nframes) { - err = memcpy_from_msg((u8 *)op->frames, msg, + err = memcpy_from_msg(op->frames, msg, msg_head->nframes * op->cfsiz); if (err < 0) { if (op->frames != &op->sframe) @@ -1163,6 +1164,7 @@ /* check flags */ if (op->flags & RX_RTR_FRAME) { + struct canfd_frame *frame0 = op->frames; /* no timers in RTR-mode */ hrtimer_cancel(&op->thrtimer); @@ -1174,8 +1176,8 @@ * prevent a full-load-loopback-test ... ;-] */ if ((op->flags & TX_CP_CAN_ID) || - (op->frames[0].can_id == op->can_id)) - op->frames[0].can_id = op->can_id & ~CAN_RTR_FLAG; + (frame0->can_id == op->can_id)) + frame0->can_id = op->can_id & ~CAN_RTR_FLAG; } else { if (op->flags & SETTIMER) { @@ -1549,24 +1551,31 @@ struct sockaddr_can *addr = (struct sockaddr_can *)uaddr; struct sock *sk = sock->sk; struct bcm_sock *bo = bcm_sk(sk); + int ret = 0; if (len < sizeof(*addr)) return -EINVAL; - if (bo->bound) - return -EISCONN; + lock_sock(sk); + + if (bo->bound) { + ret = -EISCONN; + goto fail; + } /* bind a device to this socket */ if (addr->can_ifindex) { struct net_device *dev; dev = dev_get_by_index(&init_net, addr->can_ifindex); - if (!dev) - return -ENODEV; - + if (!dev) { + ret = -ENODEV; + goto fail; + } if (dev->type != ARPHRD_CAN) { dev_put(dev); - return -ENODEV; + ret = -ENODEV; + goto fail; } bo->ifindex = dev->ifindex; @@ -1577,17 +1586,24 @@ bo->ifindex = 0; } - bo->bound = 1; - if (proc_dir) { /* unique socket address as filename */ sprintf(bo->procname, "%lu", sock_i_ino(sk)); bo->bcm_proc_read = proc_create_data(bo->procname, 0644, proc_dir, &bcm_proc_fops, sk); + if (!bo->bcm_proc_read) { + ret = -ENOMEM; + goto fail; + } } - return 0; + bo->bound = 1; + +fail: + release_sock(sk); + + return ret; } static int bcm_recvmsg(struct socket *sock, struct msghdr *msg, size_t size, --- linux-4.8.0.orig/net/can/raw.c +++ linux-4.8.0/net/can/raw.c @@ -499,6 +499,9 @@ if (optlen % sizeof(struct can_filter) != 0) return -EINVAL; + if (optlen > CAN_RAW_FILTER_MAX * sizeof(struct can_filter)) + return -EINVAL; + count = optlen / sizeof(struct can_filter); if (count > 1) { --- linux-4.8.0.orig/net/ceph/ceph_fs.c +++ linux-4.8.0/net/ceph/ceph_fs.c @@ -34,7 +34,8 @@ fl->stripe_count = le32_to_cpu(legacy->fl_stripe_count); fl->object_size = le32_to_cpu(legacy->fl_object_size); fl->pool_id = le32_to_cpu(legacy->fl_pg_pool); - if (fl->pool_id == 0) + if (fl->pool_id == 0 && fl->stripe_unit == 0 && + fl->stripe_count == 0 && fl->object_size == 0) fl->pool_id = -1; } EXPORT_SYMBOL(ceph_file_layout_from_legacy); --- linux-4.8.0.orig/net/ceph/messenger.c +++ linux-4.8.0/net/ceph/messenger.c @@ -2027,6 +2027,19 @@ dout("process_connect on %p tag %d\n", con, (int)con->in_tag); + if (con->auth_reply_buf) { + /* + * Any connection that defines ->get_authorizer() + * should also define ->verify_authorizer_reply(). + * See get_connect_authorizer(). + */ + ret = con->ops->verify_authorizer_reply(con, 0); + if (ret < 0) { + con->error_msg = "bad authorize reply"; + return ret; + } + } + switch (con->in_reply.tag) { case CEPH_MSGR_TAG_FEATURES: pr_err("%s%lld %s feature set mismatch," --- linux-4.8.0.orig/net/core/dev.c +++ linux-4.8.0/net/core/dev.c @@ -2484,7 +2484,7 @@ goto out; } - *(__sum16 *)(skb->data + offset) = csum_fold(csum); + *(__sum16 *)(skb->data + offset) = csum_fold(csum) ?: CSUM_MANGLED_0; out_set_summed: skb->ip_summed = CHECKSUM_NONE; out: @@ -3035,6 +3035,7 @@ } return head; } +EXPORT_SYMBOL_GPL(validate_xmit_skb_list); static void qdisc_pkt_len_init(struct sk_buff *skb) { @@ -4496,6 +4497,7 @@ NAPI_GRO_CB(skb)->flush = 0; NAPI_GRO_CB(skb)->free = 0; NAPI_GRO_CB(skb)->encap_mark = 0; + NAPI_GRO_CB(skb)->recursion_counter = 0; NAPI_GRO_CB(skb)->is_fou = 0; NAPI_GRO_CB(skb)->is_atomic = 1; NAPI_GRO_CB(skb)->gro_remcsum_start = 0; @@ -5500,10 +5502,14 @@ { struct netdev_adjacent *lower; - lower = list_first_or_null_rcu(&dev->all_adj_list.lower, - struct netdev_adjacent, list); + lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list); + + if (&lower->list == &dev->all_adj_list.lower) + return NULL; + + *iter = &lower->list; - return lower ? lower->dev : NULL; + return lower->dev; } EXPORT_SYMBOL(netdev_all_lower_get_next_rcu); @@ -5578,6 +5584,7 @@ static int __netdev_adjacent_dev_insert(struct net_device *dev, struct net_device *adj_dev, + u16 ref_nr, struct list_head *dev_list, void *private, bool master) { @@ -5587,7 +5594,7 @@ adj = __netdev_find_adj(adj_dev, dev_list); if (adj) { - adj->ref_nr++; + adj->ref_nr += ref_nr; return 0; } @@ -5597,7 +5604,7 @@ adj->dev = adj_dev; adj->master = master; - adj->ref_nr = 1; + adj->ref_nr = ref_nr; adj->private = private; dev_hold(adj_dev); @@ -5636,6 +5643,7 @@ static void __netdev_adjacent_dev_remove(struct net_device *dev, struct net_device *adj_dev, + u16 ref_nr, struct list_head *dev_list) { struct netdev_adjacent *adj; @@ -5648,10 +5656,10 @@ BUG(); } - if (adj->ref_nr > 1) { - pr_debug("%s to %s ref_nr-- = %d\n", dev->name, adj_dev->name, - adj->ref_nr-1); - adj->ref_nr--; + if (adj->ref_nr > ref_nr) { + pr_debug("%s to %s ref_nr-%d = %d\n", dev->name, adj_dev->name, + ref_nr, adj->ref_nr-ref_nr); + adj->ref_nr -= ref_nr; return; } @@ -5670,21 +5678,22 @@ static int __netdev_adjacent_dev_link_lists(struct net_device *dev, struct net_device *upper_dev, + u16 ref_nr, struct list_head *up_list, struct list_head *down_list, void *private, bool master) { int ret; - ret = __netdev_adjacent_dev_insert(dev, upper_dev, up_list, private, - master); + ret = __netdev_adjacent_dev_insert(dev, upper_dev, ref_nr, up_list, + private, master); if (ret) return ret; - ret = __netdev_adjacent_dev_insert(upper_dev, dev, down_list, private, - false); + ret = __netdev_adjacent_dev_insert(upper_dev, dev, ref_nr, down_list, + private, false); if (ret) { - __netdev_adjacent_dev_remove(dev, upper_dev, up_list); + __netdev_adjacent_dev_remove(dev, upper_dev, ref_nr, up_list); return ret; } @@ -5692,9 +5701,10 @@ } static int __netdev_adjacent_dev_link(struct net_device *dev, - struct net_device *upper_dev) + struct net_device *upper_dev, + u16 ref_nr) { - return __netdev_adjacent_dev_link_lists(dev, upper_dev, + return __netdev_adjacent_dev_link_lists(dev, upper_dev, ref_nr, &dev->all_adj_list.upper, &upper_dev->all_adj_list.lower, NULL, false); @@ -5702,17 +5712,19 @@ static void __netdev_adjacent_dev_unlink_lists(struct net_device *dev, struct net_device *upper_dev, + u16 ref_nr, struct list_head *up_list, struct list_head *down_list) { - __netdev_adjacent_dev_remove(dev, upper_dev, up_list); - __netdev_adjacent_dev_remove(upper_dev, dev, down_list); + __netdev_adjacent_dev_remove(dev, upper_dev, ref_nr, up_list); + __netdev_adjacent_dev_remove(upper_dev, dev, ref_nr, down_list); } static void __netdev_adjacent_dev_unlink(struct net_device *dev, - struct net_device *upper_dev) + struct net_device *upper_dev, + u16 ref_nr) { - __netdev_adjacent_dev_unlink_lists(dev, upper_dev, + __netdev_adjacent_dev_unlink_lists(dev, upper_dev, ref_nr, &dev->all_adj_list.upper, &upper_dev->all_adj_list.lower); } @@ -5721,17 +5733,17 @@ struct net_device *upper_dev, void *private, bool master) { - int ret = __netdev_adjacent_dev_link(dev, upper_dev); + int ret = __netdev_adjacent_dev_link(dev, upper_dev, 1); if (ret) return ret; - ret = __netdev_adjacent_dev_link_lists(dev, upper_dev, + ret = __netdev_adjacent_dev_link_lists(dev, upper_dev, 1, &dev->adj_list.upper, &upper_dev->adj_list.lower, private, master); if (ret) { - __netdev_adjacent_dev_unlink(dev, upper_dev); + __netdev_adjacent_dev_unlink(dev, upper_dev, 1); return ret; } @@ -5741,8 +5753,8 @@ static void __netdev_adjacent_dev_unlink_neighbour(struct net_device *dev, struct net_device *upper_dev) { - __netdev_adjacent_dev_unlink(dev, upper_dev); - __netdev_adjacent_dev_unlink_lists(dev, upper_dev, + __netdev_adjacent_dev_unlink(dev, upper_dev, 1); + __netdev_adjacent_dev_unlink_lists(dev, upper_dev, 1, &dev->adj_list.upper, &upper_dev->adj_list.lower); } @@ -5795,7 +5807,7 @@ list_for_each_entry(j, &upper_dev->all_adj_list.upper, list) { pr_debug("Interlinking %s with %s, non-neighbour\n", i->dev->name, j->dev->name); - ret = __netdev_adjacent_dev_link(i->dev, j->dev); + ret = __netdev_adjacent_dev_link(i->dev, j->dev, i->ref_nr); if (ret) goto rollback_mesh; } @@ -5805,7 +5817,7 @@ list_for_each_entry(i, &upper_dev->all_adj_list.upper, list) { pr_debug("linking %s's upper device %s with %s\n", upper_dev->name, i->dev->name, dev->name); - ret = __netdev_adjacent_dev_link(dev, i->dev); + ret = __netdev_adjacent_dev_link(dev, i->dev, i->ref_nr); if (ret) goto rollback_upper_mesh; } @@ -5814,7 +5826,7 @@ list_for_each_entry(i, &dev->all_adj_list.lower, list) { pr_debug("linking %s's lower device %s with %s\n", dev->name, i->dev->name, upper_dev->name); - ret = __netdev_adjacent_dev_link(i->dev, upper_dev); + ret = __netdev_adjacent_dev_link(i->dev, upper_dev, i->ref_nr); if (ret) goto rollback_lower_mesh; } @@ -5832,7 +5844,7 @@ list_for_each_entry(i, &dev->all_adj_list.lower, list) { if (i == to_i) break; - __netdev_adjacent_dev_unlink(i->dev, upper_dev); + __netdev_adjacent_dev_unlink(i->dev, upper_dev, i->ref_nr); } i = NULL; @@ -5842,7 +5854,7 @@ list_for_each_entry(i, &upper_dev->all_adj_list.upper, list) { if (i == to_i) break; - __netdev_adjacent_dev_unlink(dev, i->dev); + __netdev_adjacent_dev_unlink(dev, i->dev, i->ref_nr); } i = j = NULL; @@ -5854,7 +5866,7 @@ list_for_each_entry(j, &upper_dev->all_adj_list.upper, list) { if (i == to_i && j == to_j) break; - __netdev_adjacent_dev_unlink(i->dev, j->dev); + __netdev_adjacent_dev_unlink(i->dev, j->dev, i->ref_nr); } if (i == to_i) break; @@ -5934,16 +5946,16 @@ */ list_for_each_entry(i, &dev->all_adj_list.lower, list) list_for_each_entry(j, &upper_dev->all_adj_list.upper, list) - __netdev_adjacent_dev_unlink(i->dev, j->dev); + __netdev_adjacent_dev_unlink(i->dev, j->dev, i->ref_nr); /* remove also the devices itself from lower/upper device * list */ list_for_each_entry(i, &dev->all_adj_list.lower, list) - __netdev_adjacent_dev_unlink(i->dev, upper_dev); + __netdev_adjacent_dev_unlink(i->dev, upper_dev, i->ref_nr); list_for_each_entry(i, &upper_dev->all_adj_list.upper, list) - __netdev_adjacent_dev_unlink(dev, i->dev); + __netdev_adjacent_dev_unlink(dev, i->dev, i->ref_nr); call_netdevice_notifiers_info(NETDEV_CHANGEUPPER, dev, &changeupper_info.info); --- linux-4.8.0.orig/net/core/flow.c +++ linux-4.8.0/net/core/flow.c @@ -95,7 +95,6 @@ list_for_each_entry_safe(fce, n, &gc_list, u.gc_list) { flow_entry_kill(fce, xfrm); atomic_dec(&xfrm->flow_cache_gc_count); - WARN_ON(atomic_read(&xfrm->flow_cache_gc_count) < 0); } } @@ -236,9 +235,8 @@ if (fcp->hash_count > fc->high_watermark) flow_cache_shrink(fc, fcp); - if (fcp->hash_count > 2 * fc->high_watermark || - atomic_read(&net->xfrm.flow_cache_gc_count) > fc->high_watermark) { - atomic_inc(&net->xfrm.flow_cache_genid); + if (atomic_read(&net->xfrm.flow_cache_gc_count) > + 2 * num_online_cpus() * fc->high_watermark) { flo = ERR_PTR(-ENOBUFS); goto ret_object; } --- linux-4.8.0.orig/net/core/flow_dissector.c +++ linux-4.8.0/net/core/flow_dissector.c @@ -118,7 +118,7 @@ struct flow_dissector_key_tags *key_tags; struct flow_dissector_key_keyid *key_keyid; u8 ip_proto = 0; - bool ret = false; + bool ret; if (!data) { data = skb->data; @@ -481,12 +481,17 @@ out_good: ret = true; -out_bad: + key_control->thoff = (u16)nhoff; +out: key_basic->n_proto = proto; key_basic->ip_proto = ip_proto; - key_control->thoff = (u16)nhoff; return ret; + +out_bad: + ret = false; + key_control->thoff = min_t(u16, nhoff, skb ? skb->len : hlen); + goto out; } EXPORT_SYMBOL(__skb_flow_dissect); @@ -940,4 +945,4 @@ return 0; } -late_initcall_sync(init_default_flow_dissectors); +core_initcall(init_default_flow_dissectors); --- linux-4.8.0.orig/net/core/net-sysfs.c +++ linux-4.8.0/net/core/net-sysfs.c @@ -950,6 +950,10 @@ } while (--i >= new_num) { + struct kobject *kobj = &dev->_rx[i].kobj; + + if (!atomic_read(&dev_net(dev)->count)) + kobj->uevent_suppress = 1; if (dev->sysfs_rx_queue_group) sysfs_remove_group(&dev->_rx[i].kobj, dev->sysfs_rx_queue_group); @@ -1340,6 +1344,8 @@ while (--i >= new_num) { struct netdev_queue *queue = dev->_tx + i; + if (!atomic_read(&dev_net(dev)->count)) + queue->kobj.uevent_suppress = 1; #ifdef CONFIG_BQL sysfs_remove_group(&queue->kobj, &dql_group); #endif @@ -1525,6 +1531,9 @@ { struct device *dev = &(ndev->dev); + if (!atomic_read(&dev_net(ndev)->count)) + dev_set_uevent_suppress(dev, 1); + kobject_get(&dev->kobj); remove_queue_kobjects(ndev); --- linux-4.8.0.orig/net/core/net_namespace.c +++ linux-4.8.0/net/core/net_namespace.c @@ -217,6 +217,8 @@ bool alloc; int id; + if (atomic_read(&net->count) == 0) + return NETNSA_NSID_NOT_ASSIGNED; spin_lock_irqsave(&net->nsid_lock, flags); alloc = atomic_read(&peer->count) == 0 ? false : true; id = __peernet2id_alloc(net, peer, &alloc); --- linux-4.8.0.orig/net/core/pktgen.c +++ linux-4.8.0/net/core/pktgen.c @@ -216,8 +216,8 @@ #define M_QUEUE_XMIT 2 /* Inject packet into qdisc */ /* If lock -- protects updating of if_list */ -#define if_lock(t) spin_lock(&(t->if_lock)); -#define if_unlock(t) spin_unlock(&(t->if_lock)); +#define if_lock(t) mutex_lock(&(t->if_lock)); +#define if_unlock(t) mutex_unlock(&(t->if_lock)); /* Used to help with determining the pkts on receive */ #define PKTGEN_MAGIC 0xbe9be955 @@ -423,7 +423,7 @@ }; struct pktgen_thread { - spinlock_t if_lock; /* for list of devices */ + struct mutex if_lock; /* for list of devices */ struct list_head if_list; /* All device here */ struct list_head th_list; struct task_struct *tsk; @@ -2010,11 +2010,13 @@ { struct pktgen_thread *t; + mutex_lock(&pktgen_thread_lock); + list_for_each_entry(t, &pn->pktgen_threads, th_list) { struct pktgen_dev *pkt_dev; - rcu_read_lock(); - list_for_each_entry_rcu(pkt_dev, &t->if_list, list) { + if_lock(t); + list_for_each_entry(pkt_dev, &t->if_list, list) { if (pkt_dev->odev != dev) continue; @@ -2029,8 +2031,9 @@ dev->name); break; } - rcu_read_unlock(); + if_unlock(t); } + mutex_unlock(&pktgen_thread_lock); } static int pktgen_device_event(struct notifier_block *unused, @@ -2286,7 +2289,7 @@ static inline void set_pkt_overhead(struct pktgen_dev *pkt_dev) { - pkt_dev->pkt_overhead = LL_RESERVED_SPACE(pkt_dev->odev); + pkt_dev->pkt_overhead = 0; pkt_dev->pkt_overhead += pkt_dev->nr_labels*sizeof(u32); pkt_dev->pkt_overhead += VLAN_TAG_SIZE(pkt_dev); pkt_dev->pkt_overhead += SVLAN_TAG_SIZE(pkt_dev); @@ -2777,13 +2780,13 @@ } static struct sk_buff *pktgen_alloc_skb(struct net_device *dev, - struct pktgen_dev *pkt_dev, - unsigned int extralen) + struct pktgen_dev *pkt_dev) { + unsigned int extralen = LL_RESERVED_SPACE(dev); struct sk_buff *skb = NULL; - unsigned int size = pkt_dev->cur_pkt_size + 64 + extralen + - pkt_dev->pkt_overhead; + unsigned int size; + size = pkt_dev->cur_pkt_size + 64 + extralen + pkt_dev->pkt_overhead; if (pkt_dev->flags & F_NODE) { int node = pkt_dev->node >= 0 ? pkt_dev->node : numa_node_id(); @@ -2796,8 +2799,9 @@ skb = __netdev_alloc_skb(dev, size, GFP_NOWAIT); } + /* the caller pre-fetches from skb->data and reserves for the mac hdr */ if (likely(skb)) - skb_reserve(skb, LL_RESERVED_SPACE(dev)); + skb_reserve(skb, extralen - 16); return skb; } @@ -2830,16 +2834,14 @@ mod_cur_headers(pkt_dev); queue_map = pkt_dev->cur_queue_map; - datalen = (odev->hard_header_len + 16) & ~0xf; - - skb = pktgen_alloc_skb(odev, pkt_dev, datalen); + skb = pktgen_alloc_skb(odev, pkt_dev); if (!skb) { sprintf(pkt_dev->result, "No memory"); return NULL; } prefetchw(skb->data); - skb_reserve(skb, datalen); + skb_reserve(skb, 16); /* Reserve for ethernet and IP header */ eth = (__u8 *) skb_push(skb, 14); @@ -2959,7 +2961,7 @@ mod_cur_headers(pkt_dev); queue_map = pkt_dev->cur_queue_map; - skb = pktgen_alloc_skb(odev, pkt_dev, 16); + skb = pktgen_alloc_skb(odev, pkt_dev); if (!skb) { sprintf(pkt_dev->result, "No memory"); return NULL; @@ -3763,7 +3765,7 @@ return -ENOMEM; } - spin_lock_init(&t->if_lock); + mutex_init(&t->if_lock); t->cpu = cpu; INIT_LIST_HEAD(&t->if_list); --- linux-4.8.0.orig/net/core/rtnetlink.c +++ linux-4.8.0/net/core/rtnetlink.c @@ -1578,7 +1578,7 @@ head = &net->dev_index_head[h]; hlist_for_each_entry(dev, head, index_hlist) { if (link_dump_filtered(dev, master_idx, kind_ops)) - continue; + goto cont; if (idx < s_idx) goto cont; err = rtnl_fill_ifinfo(skb, dev, RTM_NEWLINK, @@ -2791,7 +2791,10 @@ static inline size_t rtnl_fdb_nlmsg_size(void) { - return NLMSG_ALIGN(sizeof(struct ndmsg)) + nla_total_size(ETH_ALEN); + return NLMSG_ALIGN(sizeof(struct ndmsg)) + + nla_total_size(ETH_ALEN) + /* NDA_LLADDR */ + nla_total_size(sizeof(u16)) + /* NDA_VLAN */ + 0; } static void rtnl_fdb_notify(struct net_device *dev, u8 *addr, u16 vid, int type, --- linux-4.8.0.orig/net/core/sock.c +++ linux-4.8.0/net/core/sock.c @@ -453,7 +453,7 @@ EXPORT_SYMBOL(sock_queue_rcv_skb); int __sk_receive_skb(struct sock *sk, struct sk_buff *skb, - const int nested, unsigned int trim_cap) + const int nested, unsigned int trim_cap, bool refcounted) { int rc = NET_RX_SUCCESS; @@ -487,7 +487,8 @@ bh_unlock_sock(sk); out: - sock_put(sk); + if (refcounted) + sock_put(sk); return rc; discard_and_relse: kfree_skb(skb); @@ -714,7 +715,7 @@ val = min_t(u32, val, sysctl_wmem_max); set_sndbuf: sk->sk_userlocks |= SOCK_SNDBUF_LOCK; - sk->sk_sndbuf = max_t(u32, val * 2, SOCK_MIN_SNDBUF); + sk->sk_sndbuf = max_t(int, val * 2, SOCK_MIN_SNDBUF); /* Wake up sending tasks if we upped the value. */ sk->sk_write_space(sk); break; @@ -750,7 +751,7 @@ * returning the value we actually used in getsockopt * is the most desirable behavior. */ - sk->sk_rcvbuf = max_t(u32, val * 2, SOCK_MIN_RCVBUF); + sk->sk_rcvbuf = max_t(int, val * 2, SOCK_MIN_RCVBUF); break; case SO_RCVBUFFORCE: @@ -1563,6 +1564,7 @@ RCU_INIT_POINTER(newsk->sk_reuseport_cb, NULL); newsk->sk_err = 0; + newsk->sk_err_soft = 0; newsk->sk_priority = 0; newsk->sk_incoming_cpu = raw_smp_processor_id(); atomic64_set(&newsk->sk_cookie, 0); --- linux-4.8.0.orig/net/dccp/input.c +++ linux-4.8.0/net/dccp/input.c @@ -606,7 +606,8 @@ if (inet_csk(sk)->icsk_af_ops->conn_request(sk, skb) < 0) return 1; - goto discard; + consume_skb(skb); + return 0; } if (dh->dccph_type == DCCP_PKT_RESET) goto discard; --- linux-4.8.0.orig/net/dccp/ipv4.c +++ linux-4.8.0/net/dccp/ipv4.c @@ -235,7 +235,7 @@ { const struct iphdr *iph = (struct iphdr *)skb->data; const u8 offset = iph->ihl << 2; - const struct dccp_hdr *dh = (struct dccp_hdr *)(skb->data + offset); + const struct dccp_hdr *dh; struct dccp_sock *dp; struct inet_sock *inet; const int type = icmp_hdr(skb)->type; @@ -245,11 +245,13 @@ int err; struct net *net = dev_net(skb->dev); - if (skb->len < offset + sizeof(*dh) || - skb->len < offset + __dccp_basic_hdr_len(dh)) { - __ICMP_INC_STATS(net, ICMP_MIB_INERRORS); - return; - } + /* Only need dccph_dport & dccph_sport which are the first + * 4 bytes in dccp header. + * Our caller (icmp_socket_deliver()) already pulled 8 bytes for us. + */ + BUILD_BUG_ON(offsetofend(struct dccp_hdr, dccph_sport) > 8); + BUILD_BUG_ON(offsetofend(struct dccp_hdr, dccph_dport) > 8); + dh = (struct dccp_hdr *)(skb->data + offset); sk = __inet_lookup_established(net, &dccp_hashinfo, iph->daddr, dh->dccph_dport, @@ -698,6 +700,7 @@ { const struct dccp_hdr *dh; unsigned int cscov; + u8 dccph_doff; if (skb->pkt_type != PACKET_HOST) return 1; @@ -719,18 +722,19 @@ /* * If P.Data Offset is too small for packet type, drop packet and return */ - if (dh->dccph_doff < dccp_hdr_len(skb) / sizeof(u32)) { - DCCP_WARN("P.Data Offset(%u) too small\n", dh->dccph_doff); + dccph_doff = dh->dccph_doff; + if (dccph_doff < dccp_hdr_len(skb) / sizeof(u32)) { + DCCP_WARN("P.Data Offset(%u) too small\n", dccph_doff); return 1; } /* * If P.Data Offset is too too large for packet, drop packet and return */ - if (!pskb_may_pull(skb, dh->dccph_doff * sizeof(u32))) { - DCCP_WARN("P.Data Offset(%u) too large\n", dh->dccph_doff); + if (!pskb_may_pull(skb, dccph_doff * sizeof(u32))) { + DCCP_WARN("P.Data Offset(%u) too large\n", dccph_doff); return 1; } - + dh = dccp_hdr(skb); /* * If P.type is not Data, Ack, or DataAck and P.X == 0 (the packet * has short sequence numbers), drop packet and return @@ -868,7 +872,7 @@ goto discard_and_relse; nf_reset(skb); - return __sk_receive_skb(sk, skb, 1, dh->dccph_doff * 4); + return __sk_receive_skb(sk, skb, 1, dh->dccph_doff * 4, refcounted); no_dccp_socket: if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb)) --- linux-4.8.0.orig/net/dccp/ipv6.c +++ linux-4.8.0/net/dccp/ipv6.c @@ -70,7 +70,7 @@ u8 type, u8 code, int offset, __be32 info) { const struct ipv6hdr *hdr = (const struct ipv6hdr *)skb->data; - const struct dccp_hdr *dh = (struct dccp_hdr *)(skb->data + offset); + const struct dccp_hdr *dh; struct dccp_sock *dp; struct ipv6_pinfo *np; struct sock *sk; @@ -78,12 +78,13 @@ __u64 seq; struct net *net = dev_net(skb->dev); - if (skb->len < offset + sizeof(*dh) || - skb->len < offset + __dccp_basic_hdr_len(dh)) { - __ICMP6_INC_STATS(net, __in6_dev_get(skb->dev), - ICMP6_MIB_INERRORS); - return; - } + /* Only need dccph_dport & dccph_sport which are the first + * 4 bytes in dccp header. + * Our caller (icmpv6_notify()) already pulled 8 bytes for us. + */ + BUILD_BUG_ON(offsetofend(struct dccp_hdr, dccph_sport) > 8); + BUILD_BUG_ON(offsetofend(struct dccp_hdr, dccph_dport) > 8); + dh = (struct dccp_hdr *)(skb->data + offset); sk = __inet6_lookup_established(net, &dccp_hashinfo, &hdr->daddr, dh->dccph_dport, @@ -423,6 +424,9 @@ newsk->sk_backlog_rcv = dccp_v4_do_rcv; newnp->pktoptions = NULL; newnp->opt = NULL; + newnp->ipv6_mc_list = NULL; + newnp->ipv6_ac_list = NULL; + newnp->ipv6_fl_list = NULL; newnp->mcast_oif = inet6_iif(skb); newnp->mcast_hops = ipv6_hdr(skb)->hop_limit; @@ -487,6 +491,9 @@ /* Clone RX bits */ newnp->rxopt.all = np->rxopt.all; + newnp->ipv6_mc_list = NULL; + newnp->ipv6_ac_list = NULL; + newnp->ipv6_fl_list = NULL; newnp->pktoptions = NULL; newnp->opt = NULL; newnp->mcast_oif = inet6_iif(skb); @@ -738,7 +745,8 @@ if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb)) goto discard_and_relse; - return __sk_receive_skb(sk, skb, 1, dh->dccph_doff * 4) ? -1 : 0; + return __sk_receive_skb(sk, skb, 1, dh->dccph_doff * 4, + refcounted) ? -1 : 0; no_dccp_socket: if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) @@ -956,6 +964,7 @@ .getsockopt = ipv6_getsockopt, .addr2sockaddr = inet6_csk_addr2sockaddr, .sockaddr_len = sizeof(struct sockaddr_in6), + .bind_conflict = inet6_csk_bind_conflict, #ifdef CONFIG_COMPAT .compat_setsockopt = compat_ipv6_setsockopt, .compat_getsockopt = compat_ipv6_getsockopt, --- linux-4.8.0.orig/net/dccp/proto.c +++ linux-4.8.0/net/dccp/proto.c @@ -1009,6 +1009,10 @@ __kfree_skb(skb); } + /* If socket has been already reset kill it. */ + if (sk->sk_state == DCCP_CLOSED) + goto adjudge_to_death; + if (data_was_unread) { /* Unread data was tossed, send an appropriate Reset Code */ DCCP_WARN("ABORT with %u bytes unread\n", data_was_unread); --- linux-4.8.0.orig/net/dsa/dsa2.c +++ linux-4.8.0/net/dsa/dsa2.c @@ -28,8 +28,10 @@ struct dsa_switch_tree *dst; list_for_each_entry(dst, &dsa_switch_trees, list) - if (dst->tree == tree) + if (dst->tree == tree) { + kref_get(&dst->refcount); return dst; + } return NULL; } --- linux-4.8.0.orig/net/ethernet/eth.c +++ linux-4.8.0/net/ethernet/eth.c @@ -439,7 +439,7 @@ skb_gro_pull(skb, sizeof(*eh)); skb_gro_postpull_rcsum(skb, eh, sizeof(*eh)); - pp = ptype->callbacks.gro_receive(head, skb); + pp = call_gro_receive(ptype->callbacks.gro_receive, head, skb); out_unlock: rcu_read_unlock(); --- linux-4.8.0.orig/net/ipv4/af_inet.c +++ linux-4.8.0/net/ipv4/af_inet.c @@ -1237,7 +1237,7 @@ fixedid = !!(skb_shinfo(skb)->gso_type & SKB_GSO_TCP_FIXEDID); /* fixed ID is invalid if DF bit is not set */ - if (fixedid && !(iph->frag_off & htons(IP_DF))) + if (fixedid && !(ip_hdr(skb)->frag_off & htons(IP_DF))) goto out; } @@ -1388,7 +1388,7 @@ skb_gro_pull(skb, sizeof(*iph)); skb_set_transport_header(skb, skb_gro_offset(skb)); - pp = ops->callbacks.gro_receive(head, skb); + pp = call_gro_receive(ops->callbacks.gro_receive, head, skb); out_unlock: rcu_read_unlock(); --- linux-4.8.0.orig/net/ipv4/esp4.c +++ linux-4.8.0/net/ipv4/esp4.c @@ -476,7 +476,7 @@ esph = (void *)skb_push(skb, 4); *seqhi = esph->spi; esph->spi = esph->seq_no; - esph->seq_no = htonl(XFRM_SKB_CB(skb)->seq.input.hi); + esph->seq_no = XFRM_SKB_CB(skb)->seq.input.hi; aead_request_set_callback(req, 0, esp_input_done_esn, skb); } --- linux-4.8.0.orig/net/ipv4/fib_frontend.c +++ linux-4.8.0/net/ipv4/fib_frontend.c @@ -157,7 +157,7 @@ int fib_unmerge(struct net *net) { - struct fib_table *old, *new; + struct fib_table *old, *new, *main_table; /* attempt to fetch local table if it has been allocated */ old = fib_get_table(net, RT_TABLE_LOCAL); @@ -168,11 +168,21 @@ if (!new) return -ENOMEM; + /* table is already unmerged */ + if (new == old) + return 0; + /* replace merged table with clean table */ - if (new != old) { - fib_replace_table(net, old, new); - fib_free_table(old); - } + fib_replace_table(net, old, new); + fib_free_table(old); + + /* attempt to fetch main table if it has been allocated */ + main_table = fib_get_table(net, RT_TABLE_MAIN); + if (!main_table) + return 0; + + /* flush local entries from main table */ + fib_table_flush_external(main_table); return 0; } --- linux-4.8.0.orig/net/ipv4/fib_trie.c +++ linux-4.8.0/net/ipv4/fib_trie.c @@ -681,6 +681,13 @@ { unsigned char slen = tn->pos; unsigned long stride, i; + unsigned char slen_max; + + /* only vector 0 can have a suffix length greater than or equal to + * tn->pos + tn->bits, the second highest node will have a suffix + * length at most of tn->pos + tn->bits - 1 + */ + slen_max = min_t(unsigned char, tn->pos + tn->bits - 1, tn->slen); /* search though the list of children looking for nodes that might * have a suffix greater than the one we currently have. This is @@ -698,12 +705,8 @@ slen = n->slen; i &= ~(stride - 1); - /* if slen covers all but the last bit we can stop here - * there will be nothing longer than that since only node - * 0 and 1 << (bits - 1) could have that as their suffix - * length. - */ - if ((slen + 1) >= (tn->pos + tn->bits)) + /* stop searching if we have hit the maximum possible value */ + if (slen >= slen_max) break; } @@ -875,39 +878,27 @@ return collapse(t, tn); /* update parent in case halve failed */ - tp = node_parent(tn); - - /* Return if at least one deflate was run */ - if (max_work != MAX_WORK) - return tp; - - /* push the suffix length to the parent node */ - if (tn->slen > tn->pos) { - unsigned char slen = update_suffix(tn); - - if (slen > tp->slen) - tp->slen = slen; - } - - return tp; + return node_parent(tn); } -static void leaf_pull_suffix(struct key_vector *tp, struct key_vector *l) +static void node_pull_suffix(struct key_vector *tn, unsigned char slen) { - while ((tp->slen > tp->pos) && (tp->slen > l->slen)) { - if (update_suffix(tp) > l->slen) + unsigned char node_slen = tn->slen; + + while ((node_slen > tn->pos) && (node_slen > slen)) { + slen = update_suffix(tn); + if (node_slen == slen) break; - tp = node_parent(tp); + + tn = node_parent(tn); + node_slen = tn->slen; } } -static void leaf_push_suffix(struct key_vector *tn, struct key_vector *l) +static void node_push_suffix(struct key_vector *tn, unsigned char slen) { - /* if this is a new leaf then tn will be NULL and we can sort - * out parent suffix lengths as a part of trie_rebalance - */ - while (tn->slen < l->slen) { - tn->slen = l->slen; + while (tn->slen < slen) { + tn->slen = slen; tn = node_parent(tn); } } @@ -1028,6 +1019,7 @@ } /* Case 3: n is NULL, and will just insert a new leaf */ + node_push_suffix(tp, new->fa_slen); NODE_INIT_PARENT(l, tp); put_child_root(tp, key, l); trie_rebalance(t, tp); @@ -1069,7 +1061,7 @@ /* if we added to the tail node then we need to update slen */ if (l->slen < new->fa_slen) { l->slen = new->fa_slen; - leaf_push_suffix(tp, l); + node_push_suffix(tp, new->fa_slen); } return 0; @@ -1470,6 +1462,8 @@ * out parent suffix lengths as a part of trie_rebalance */ if (hlist_empty(&l->leaf)) { + if (tp->slen == l->slen) + node_pull_suffix(tp, tp->pos); put_child_root(tp, l->key, NULL); node_free(l); trie_rebalance(t, tp); @@ -1482,7 +1476,7 @@ /* update the trie with the latest suffix length */ l->slen = fa->fa_slen; - leaf_pull_suffix(tp, l); + node_pull_suffix(tp, fa->fa_slen); } /* Caller must hold RTNL. */ @@ -1713,8 +1707,10 @@ local_l = fib_find_node(lt, &local_tp, l->key); if (fib_insert_alias(lt, local_tp, local_l, new_fa, - NULL, l->key)) + NULL, l->key)) { + kmem_cache_free(fn_alias_kmem, new_fa); goto out; + } } /* stop loop if key wrapped back to 0 */ @@ -1751,6 +1747,10 @@ if (IS_TRIE(pn)) break; + /* update the suffix to address pulled leaves */ + if (pn->slen > pn->pos) + update_suffix(pn); + /* resize completed node */ pn = resize(t, pn); cindex = get_index(pkey, pn); @@ -1826,6 +1826,10 @@ if (IS_TRIE(pn)) break; + /* update the suffix to address pulled leaves */ + if (pn->slen > pn->pos) + update_suffix(pn); + /* resize completed node */ pn = resize(t, pn); cindex = get_index(pkey, pn); @@ -2455,22 +2459,19 @@ struct key_vector *l, **tp = &iter->tnode; t_key key; - /* use cache location of next-to-find key */ + /* use cached location of previously found key */ if (iter->pos > 0 && pos >= iter->pos) { - pos -= iter->pos; key = iter->key; } else { - iter->pos = 0; + iter->pos = 1; key = 0; } - while ((l = leaf_walk_rcu(tp, key)) != NULL) { + pos -= iter->pos; + + while ((l = leaf_walk_rcu(tp, key)) && (pos-- > 0)) { key = l->key + 1; iter->pos++; - - if (--pos <= 0) - break; - l = NULL; /* handle unlikely case of a key wrap */ @@ -2479,7 +2480,7 @@ } if (l) - iter->key = key; /* remember it */ + iter->key = l->key; /* remember it */ else iter->pos = 0; /* forget it */ @@ -2507,7 +2508,7 @@ return fib_route_get_idx(iter, *pos); iter->pos = 0; - iter->key = 0; + iter->key = KEY_MAX; return SEQ_START_TOKEN; } @@ -2516,7 +2517,7 @@ { struct fib_route_iter *iter = seq->private; struct key_vector *l = NULL; - t_key key = iter->key; + t_key key = iter->key + 1; ++*pos; @@ -2525,7 +2526,7 @@ l = leaf_walk_rcu(&iter->tnode, key); if (l) { - iter->key = l->key + 1; + iter->key = l->key; iter->pos++; } else { iter->pos = 0; --- linux-4.8.0.orig/net/ipv4/fou.c +++ linux-4.8.0/net/ipv4/fou.c @@ -249,7 +249,7 @@ if (!ops || !ops->callbacks.gro_receive) goto out_unlock; - pp = ops->callbacks.gro_receive(head, skb); + pp = call_gro_receive(ops->callbacks.gro_receive, head, skb); out_unlock: rcu_read_unlock(); @@ -441,7 +441,7 @@ if (WARN_ON_ONCE(!ops || !ops->callbacks.gro_receive)) goto out_unlock; - pp = ops->callbacks.gro_receive(head, skb); + pp = call_gro_receive(ops->callbacks.gro_receive, head, skb); flush = 0; out_unlock: --- linux-4.8.0.orig/net/ipv4/gre_offload.c +++ linux-4.8.0/net/ipv4/gre_offload.c @@ -227,7 +227,7 @@ /* Adjusted NAPI_GRO_CB(skb)->csum after skb_gro_pull()*/ skb_gro_postpull_rcsum(skb, greh, grehlen); - pp = ptype->callbacks.gro_receive(head, skb); + pp = call_gro_receive(ptype->callbacks.gro_receive, head, skb); flush = 0; out_unlock: --- linux-4.8.0.orig/net/ipv4/icmp.c +++ linux-4.8.0/net/ipv4/icmp.c @@ -477,7 +477,7 @@ fl4->flowi4_proto = IPPROTO_ICMP; fl4->fl4_icmp_type = type; fl4->fl4_icmp_code = code; - fl4->flowi4_oif = l3mdev_master_ifindex(skb_in->dev); + fl4->flowi4_oif = l3mdev_master_ifindex(skb_dst(skb_in)->dev); security_skb_classify_flow(skb_in, flowi4_to_flowi(fl4)); rt = __ip_route_output_key_hash(net, fl4, @@ -502,7 +502,7 @@ if (err) goto relookup_failed; - if (inet_addr_type_dev_table(net, skb_in->dev, + if (inet_addr_type_dev_table(net, skb_dst(skb_in)->dev, fl4_dec.saddr) == RTN_LOCAL) { rt2 = __ip_route_output_key(net, &fl4_dec); if (IS_ERR(rt2)) --- linux-4.8.0.orig/net/ipv4/inet_connection_sock.c +++ linux-4.8.0/net/ipv4/inet_connection_sock.c @@ -665,6 +665,8 @@ /* listeners have SOCK_RCU_FREE, not the children */ sock_reset_flag(newsk, SOCK_RCU_FREE); + inet_sk(newsk)->mc_list = NULL; + newsk->sk_mark = inet_rsk(req)->ir_mark; atomic64_set(&newsk->sk_cookie, atomic64_read(&inet_rsk(req)->ir_cookie)); --- linux-4.8.0.orig/net/ipv4/ip_forward.c +++ linux-4.8.0/net/ipv4/ip_forward.c @@ -117,7 +117,7 @@ if (opt->is_strictroute && rt->rt_uses_gateway) goto sr_failed; - IPCB(skb)->flags |= IPSKB_FORWARDED | IPSKB_FRAG_SEGS; + IPCB(skb)->flags |= IPSKB_FORWARDED; mtu = ip_dst_mtu_maybe_forward(&rt->dst, true); if (ip_exceeds_mtu(skb, mtu)) { IP_INC_STATS(net, IPSTATS_MIB_FRAGFAILS); --- linux-4.8.0.orig/net/ipv4/ip_output.c +++ linux-4.8.0/net/ipv4/ip_output.c @@ -98,6 +98,9 @@ iph->tot_len = htons(skb->len); ip_send_check(iph); + + skb->protocol = htons(ETH_P_IP); + return nf_hook(NFPROTO_IPV4, NF_INET_LOCAL_OUT, net, sk, skb, NULL, skb_dst(skb)->dev, dst_output); @@ -223,11 +226,9 @@ struct sk_buff *segs; int ret = 0; - /* common case: fragmentation of segments is not allowed, - * or seglen is <= mtu + /* common case: seglen is <= mtu */ - if (((IPCB(skb)->flags & IPSKB_FRAG_SEGS) == 0) || - skb_gso_validate_mtu(skb, mtu)) + if (skb_gso_validate_mtu(skb, mtu)) return ip_finish_output2(net, sk, skb); /* Slowpath - GSO segment length is exceeding the dst MTU. --- linux-4.8.0.orig/net/ipv4/ip_sockglue.c +++ linux-4.8.0/net/ipv4/ip_sockglue.c @@ -98,7 +98,7 @@ } static void ip_cmsg_recv_checksum(struct msghdr *msg, struct sk_buff *skb, - int offset) + int tlen, int offset) { __wsum csum = skb->csum; @@ -106,8 +106,9 @@ return; if (offset != 0) - csum = csum_sub(csum, csum_partial(skb_transport_header(skb), - offset, 0)); + csum = csum_sub(csum, + csum_partial(skb_transport_header(skb) + tlen, + offset, 0)); put_cmsg(msg, SOL_IP, IP_CHECKSUM, sizeof(__wsum), &csum); } @@ -153,7 +154,7 @@ } void ip_cmsg_recv_offset(struct msghdr *msg, struct sk_buff *skb, - int offset) + int tlen, int offset) { struct inet_sock *inet = inet_sk(skb->sk); unsigned int flags = inet->cmsg_flags; @@ -216,7 +217,7 @@ } if (flags & IP_CMSG_CHECKSUM) - ip_cmsg_recv_checksum(msg, skb, offset); + ip_cmsg_recv_checksum(msg, skb, tlen, offset); } EXPORT_SYMBOL(ip_cmsg_recv_offset); @@ -1198,8 +1199,14 @@ * which has interface index (iif) as the first member of the * underlying inet{6}_skb_parm struct. This code then overlays * PKTINFO_SKB_CB and in_pktinfo also has iif as the first - * element so the iif is picked up from the prior IPCB + * element so the iif is picked up from the prior IPCB. If iif + * is the loopback interface, then return the sending interface + * (e.g., process binds socket to eth0 for Tx which is + * redirected to loopback in the rtable/dst). */ + if (pktinfo->ipi_ifindex == LOOPBACK_IFINDEX) + pktinfo->ipi_ifindex = inet_iif(skb); + pktinfo->ipi_spec_dst.s_addr = fib_compute_spec_dst(skb); } else { pktinfo->ipi_ifindex = 0; --- linux-4.8.0.orig/net/ipv4/ip_tunnel.c +++ linux-4.8.0/net/ipv4/ip_tunnel.c @@ -1033,7 +1033,7 @@ struct ip_tunnel_net *itn = net_generic(net, tunnel->ip_tnl_net_id); if (dev == itn->fb_tunnel_dev) - return -EINVAL; + return fan_has_map(&tunnel->fan) ? 0 : -EINVAL; t = ip_tunnel_find(itn, p, dev->type); --- linux-4.8.0.orig/net/ipv4/ip_tunnel_core.c +++ linux-4.8.0/net/ipv4/ip_tunnel_core.c @@ -63,7 +63,6 @@ int pkt_len = skb->len - skb_inner_network_offset(skb); struct net *net = dev_net(rt->dst.dev); struct net_device *dev = skb->dev; - int skb_iif = skb->skb_iif; struct iphdr *iph; int err; @@ -73,16 +72,6 @@ skb_dst_set(skb, &rt->dst); memset(IPCB(skb), 0, sizeof(*IPCB(skb))); - if (skb_iif && !(df & htons(IP_DF))) { - /* Arrived from an ingress interface, got encapsulated, with - * fragmentation of encapulating frames allowed. - * If skb is gso, the resulting encapsulated network segments - * may exceed dst mtu. - * Allow IP Fragmentation of segments. - */ - IPCB(skb)->flags |= IPSKB_FRAG_SEGS; - } - /* Push down and install the IP header. */ skb_push(skb, sizeof(struct iphdr)); skb_reset_network_header(skb); --- linux-4.8.0.orig/net/ipv4/ipip.c +++ linux-4.8.0/net/ipv4/ipip.c @@ -106,6 +106,8 @@ #include #include #include +#include +#include #include #include @@ -238,6 +240,147 @@ } #endif +static struct ip_fan_map *ipip_fan_find_map(struct ip_tunnel *t, __be32 daddr) +{ + struct ip_fan_map *fan_map; + + rcu_read_lock(); + list_for_each_entry_rcu(fan_map, &t->fan.fan_maps, list) { + if (fan_map->overlay == + (daddr & inet_make_mask(fan_map->overlay_prefix))) { + rcu_read_unlock(); + return fan_map; + } + } + rcu_read_unlock(); + + return NULL; +} + +/* Determine fan tunnel endpoint to send packet to, based on the inner IP + * address. + * + * Given a /8 overlay and /16 underlay, for an overlay (inner) address + * Y.A.B.C, the transformation is F.G.A.B, where "F" and "G" are the first + * two octets of the underlay network (the network portion of a /16), "A" + * and "B" are the low order two octets of the underlay network host (the + * host portion of a /16), and "Y" is a configured first octet of the + * overlay network. + * + * E.g., underlay host 10.88.3.4/16 with an overlay of 99.0.0.0/8 would + * host overlay subnet 99.3.4.0/24. An overlay network datagram from + * 99.3.4.5 to 99.6.7.8, would be directed to underlay host 10.88.6.7, + * which hosts overlay network subnet 99.6.7.0/24. This transformation is + * described in detail further below. + * + * Using netmasks for the overlay and underlay other than /8 and /16, as + * shown above, can yield larger (or smaller) overlay subnets, with the + * trade-off of allowing fewer (or more) underlay hosts to participate. + * + * The size of each overlay network subnet is defined by the total of the + * network mask of the overlay plus the size of host portion of the + * underlay network. In the above example, /8 + /16 = /24. + * + * E.g., consider underlay host 10.99.238.5/20 and overlay 99.0.0.0/8. In + * this case, the network portion of the underlay is 10.99.224.0/20, and + * the host portion is 0.0.14.5 (12 bits). To determine the overlay + * network subnet, the 12 bits of host portion are left shifted 12 bits + * (/20 - /8) and ORed with the overlay subnet prefix. This yields an + * overlay subnet of 99.224.80/20, composed of 8 bits overlay, followed by + * 12 bits underlay. This yields 12 bits in the overlay network portion, + * allowing for 4094 addresses in each overlay network subnet. The + * trade-off is that fewer hosts may participate in the underlay network, + * as its host address size has shrunk from 16 bits (65534 addresses) in + * the first example to 12 bits (4094 addresses) here. + * + * For fewer hosts per overlay subnet (permitting a larger number of + * underlay hosts to participate), the underlay netmask may be made + * smaller. + * + * E.g., underlay host 10.111.1.2/12 (network 10.96.0.0/12, host portion + * is 0.15.1.2, 20 bits) with an overlay of 33.0.0.0/8 would left shift + * the 20 bits of host by 4 (so that it's highest order bit is adjacent to + * the lowest order bit of the /8 overlay). This yields an overlay subnet + * of 33.240.16.32/28 (8 bits overlay, 20 bits from the host portion of + * the underlay). This provides more addresses for the underlay network + * (approximately 2^20), but each host's segment of the overlay provides + * only 4 bits of addresses (14 usable). + * + * It is also possible to adjust the overlay subnet. + * + * For an overlay of 240.0.0.0/5 and underlay of 10.88.0.0/20, consider + * underlay host 10.88.129.2; the 12 bits of host, 0.0.1.2, are left + * shifted 15 bits (/20 - /5), yielding an overlay network of + * 240.129.0.0/17. An underlay host of 10.88.244.215 would yield an + * overlay network of 242.107.128.0/17. + * + * For an overlay of 100.64.0.0/10 and underlay of 10.224.220.0/24, for + * underlay host 10.224.220.10, the underlay host portion (.10) is left + * shifted 14 bits, yielding an overlay network subnet of 100.66.128.0/18. + * This would permit 254 addresses on the underlay, with each overlay + * segment providing approximately 2^14 - 2 addresses (16382). + * + * For packets being encapsulated, the overlay network destination IP + * address is deconstructed into its overlay and underlay-derived + * portions. The underlay portion (determined by the overlay mask and + * overlay subnet mask) is right shifted according to the size of the + * underlay network mask. This value is then ORed with the network + * portion of the underlay network to produce the underlay network + * destination for the encapsulated datagram. + * + * For example, using the initial example of underlay 10.88.3.4/16 and + * overlay 99.0.0.0/8, with underlay host 10.88.3.4/16 providing overlay + * subnet 99.3.4.0/24 with specfic host 99.3.4.5. A datagram from + * 99.3.4.5 to 99.6.7.8 would first have the underlay host derived portion + * of the address extracted. This is a number of bits equal to underlay + * network host portion. In the destination address, the highest order of + * these bits is one bit lower than the lowest order bit from the overlay + * network mask. + * + * Using the sample value, 99.6.7.8, the overlay mask is /8, and the + * underlay mask is /16 (leaving 16 bits for the host portion). The bits + * to be shifted are the middle two octets, 0.6.7.0, as this is 99.6.7.8 + * ANDed with the mask 0x00ffff00 (which is 16 bits, the highest order of + * which is 1 bit lower than the lowest order overlay address bit). + * + * These octets, 0.6.7.0, are then right shifted 8 bits, yielding 0.0.6.7. + * This value is then ORed with the underlay network portion, + * 10.88.0.0/16, providing 10.88.6.7 as the final underlay destination for + * the encapuslated datagram. + * + * Another transform using the final example: overlay 100.64.0.0/10 and + * underlay 10.224.220.0/24. Consider overlay address 100.66.128.1 + * sending a datagram to 100.66.200.5. In this case, 8 bits (the host + * portion size of 10.224.220.0/24) beginning after the 100.64/10 overlay + * prefix are masked off, yielding 0.2.192.0. This is right shifted 14 + * (32 - 10 - (32 - 24), i.e., the number of bits between the overlay + * network portion and the underlay host portion) bits, yielding 0.0.0.11. + * This is ORed with the underlay network portion, 10.224.220.0/24, giving + * the underlay destination of 10.224.220.11 for overlay destination + * 100.66.200.5. + */ +static int ipip_build_fan_iphdr(struct ip_tunnel *tunnel, struct sk_buff *skb, struct iphdr *iph) +{ + struct ip_fan_map *f_map; + u32 daddr, underlay; + + f_map = ipip_fan_find_map(tunnel, ip_hdr(skb)->daddr); + if (!f_map) + return -ENOENT; + + daddr = ntohl(ip_hdr(skb)->daddr); + underlay = ntohl(f_map->underlay); + if (!underlay) + return -EINVAL; + + *iph = tunnel->parms.iph; + iph->daddr = htonl(underlay | + ((daddr & ~f_map->overlay_mask) >> + (32 - f_map->overlay_prefix - + (32 - f_map->underlay_prefix)))); + return 0; +} + /* * This function assumes it is being called from dev_queue_xmit() * and that skb is filled properly by that function. @@ -248,6 +391,7 @@ struct ip_tunnel *tunnel = netdev_priv(dev); const struct iphdr *tiph = &tunnel->parms.iph; u8 ipproto; + struct iphdr fiph; switch (skb->protocol) { case htons(ETH_P_IP): @@ -268,6 +412,14 @@ if (iptunnel_handle_offloads(skb, SKB_GSO_IPXIP4)) goto tx_error; + if (fan_has_map(&tunnel->fan)) { + if (ipip_build_fan_iphdr(tunnel, skb, &fiph)) + goto tx_error; + tiph = &fiph; + } else { + tiph = &tunnel->parms.iph; + } + skb_set_inner_ipproto(skb, ipproto); ip_tunnel_xmit(skb, dev, tiph, ipproto); @@ -340,6 +492,8 @@ static void ipip_tunnel_setup(struct net_device *dev) { + struct ip_tunnel *t = netdev_priv(dev); + dev->netdev_ops = &ipip_netdev_ops; dev->type = ARPHRD_TUNNEL; @@ -351,6 +505,7 @@ dev->features |= IPIP_FEATURES; dev->hw_features |= IPIP_FEATURES; ip_tunnel_setup(dev, ipip_net_id); + INIT_LIST_HEAD(&t->fan.fan_maps); } static int ipip_tunnel_init(struct net_device *dev) @@ -450,21 +605,112 @@ return ret; } +static void ipip_fan_flush_map(struct ip_tunnel *t) +{ + struct ip_fan_map *fan_map; + + list_for_each_entry_rcu(fan_map, &t->fan.fan_maps, list) { + list_del_rcu(&fan_map->list); + kfree_rcu(fan_map, rcu); + } +} + +static int ipip_fan_del_map(struct ip_tunnel *t, __be32 overlay) +{ + struct ip_fan_map *fan_map; + + fan_map = ipip_fan_find_map(t, overlay); + if (!fan_map) + return -ENOENT; + + list_del_rcu(&fan_map->list); + kfree_rcu(fan_map, rcu); + + return 0; +} + +static int ipip_fan_add_map(struct ip_tunnel *t, struct ifla_fan_map *map) +{ + __be32 overlay_mask, underlay_mask; + struct ip_fan_map *fan_map; + + overlay_mask = inet_make_mask(map->overlay_prefix); + underlay_mask = inet_make_mask(map->underlay_prefix); + + if ((map->overlay & ~overlay_mask) || (map->underlay & ~underlay_mask)) + return -EINVAL; + + if (!(map->overlay & overlay_mask) && (map->underlay & underlay_mask)) + return -EINVAL; + + /* Special case: overlay 0 and underlay 0: flush all mappings */ + if (!map->overlay && !map->underlay) { + ipip_fan_flush_map(t); + return 0; + } + + /* Special case: overlay set and underlay 0: clear map for overlay */ + if (!map->underlay) + return ipip_fan_del_map(t, map->overlay); + + if (ipip_fan_find_map(t, map->overlay)) + return -EEXIST; + + fan_map = kmalloc(sizeof(*fan_map), GFP_KERNEL); + fan_map->underlay = map->underlay; + fan_map->overlay = map->overlay; + fan_map->underlay_prefix = map->underlay_prefix; + fan_map->overlay_mask = ntohl(overlay_mask); + fan_map->overlay_prefix = map->overlay_prefix; + + list_add_tail_rcu(&fan_map->list, &t->fan.fan_maps); + + return 0; +} + + +static int ipip_netlink_fan(struct nlattr *data[], struct ip_tunnel *t, + struct ip_tunnel_parm *parms) +{ + struct ifla_fan_map *map; + struct nlattr *attr; + int rem, rv; + + if (!data[IFLA_IPTUN_FAN_MAP]) + return 0; + + if (parms->iph.daddr) + return -EINVAL; + + nla_for_each_nested(attr, data[IFLA_IPTUN_FAN_MAP], rem) { + map = nla_data(attr); + rv = ipip_fan_add_map(t, map); + if (rv) + return rv; + } + + return 0; +} + static int ipip_newlink(struct net *src_net, struct net_device *dev, struct nlattr *tb[], struct nlattr *data[]) { struct ip_tunnel_parm p; struct ip_tunnel_encap ipencap; + struct ip_tunnel *t = netdev_priv(dev); + int err; if (ipip_netlink_encap_parms(data, &ipencap)) { - struct ip_tunnel *t = netdev_priv(dev); - int err = ip_tunnel_encap_setup(t, &ipencap); + err = ip_tunnel_encap_setup(t, &ipencap); if (err < 0) return err; } ipip_netlink_parms(data, &p); + err = ipip_netlink_fan(data, t, &p); + if (err < 0) + return err; return ip_tunnel_newlink(dev, tb, &p); } @@ -473,16 +719,20 @@ { struct ip_tunnel_parm p; struct ip_tunnel_encap ipencap; + struct ip_tunnel *t = netdev_priv(dev); + int err; if (ipip_netlink_encap_parms(data, &ipencap)) { - struct ip_tunnel *t = netdev_priv(dev); - int err = ip_tunnel_encap_setup(t, &ipencap); + err = ip_tunnel_encap_setup(t, &ipencap); if (err < 0) return err; } ipip_netlink_parms(data, &p); + err = ipip_netlink_fan(data, t, &p); + if (err < 0) + return err; if (((dev->flags & IFF_POINTOPOINT) && !p.iph.daddr) || (!(dev->flags & IFF_POINTOPOINT) && p.iph.daddr)) @@ -516,6 +766,8 @@ nla_total_size(2) + /* IFLA_IPTUN_ENCAP_DPORT */ nla_total_size(2) + + /* IFLA_IPTUN_FAN_MAP */ + nla_total_size(sizeof(struct ifla_fan_map)) * 256 + 0; } @@ -544,6 +796,26 @@ tunnel->encap.flags)) goto nla_put_failure; + if (fan_has_map(&tunnel->fan)) { + struct nlattr *fan_nest; + struct ip_fan_map *fan_map; + + fan_nest = nla_nest_start(skb, IFLA_IPTUN_FAN_MAP); + if (!fan_nest) + goto nla_put_failure; + list_for_each_entry_rcu(fan_map, &tunnel->fan.fan_maps, list) { + struct ifla_fan_map map; + + map.underlay = fan_map->underlay; + map.underlay_prefix = fan_map->underlay_prefix; + map.overlay = fan_map->overlay; + map.overlay_prefix = fan_map->overlay_prefix; + if (nla_put(skb, IFLA_FAN_MAPPING, sizeof(map), &map)) + goto nla_put_failure; + } + nla_nest_end(skb, fan_nest); + } + return 0; nla_put_failure: @@ -562,6 +834,9 @@ [IFLA_IPTUN_ENCAP_FLAGS] = { .type = NLA_U16 }, [IFLA_IPTUN_ENCAP_SPORT] = { .type = NLA_U16 }, [IFLA_IPTUN_ENCAP_DPORT] = { .type = NLA_U16 }, + + [__IFLA_IPTUN_VENDOR_BREAK ... IFLA_IPTUN_MAX] = { .type = NLA_BINARY }, + [IFLA_IPTUN_FAN_MAP] = { .type = NLA_NESTED }, }; static struct rtnl_link_ops ipip_link_ops __read_mostly = { @@ -611,6 +886,23 @@ .size = sizeof(struct ip_tunnel_net), }; +#ifdef CONFIG_SYSCTL +static struct ctl_table_header *ipip_fan_header; +static unsigned int ipip_fan_version = 3; + +static struct ctl_table ipip_fan_sysctls[] = { + { + .procname = "version", + .data = &ipip_fan_version, + .maxlen = sizeof(ipip_fan_version), + .mode = 0444, + .proc_handler = proc_dointvec, + }, + {}, +}; + +#endif /* CONFIG_SYSCTL */ + static int __init ipip_init(void) { int err; @@ -636,9 +928,22 @@ if (err < 0) goto rtnl_link_failed; +#ifdef CONFIG_SYSCTL + ipip_fan_header = register_net_sysctl(&init_net, "net/fan", + ipip_fan_sysctls); + if (!ipip_fan_header) { + err = -ENOMEM; + goto sysctl_failed; + } +#endif /* CONFIG_SYSCTL */ + out: return err; +#ifdef CONFIG_SYSCTL +sysctl_failed: + rtnl_link_unregister(&ipip_link_ops); +#endif /* CONFIG_SYSCTL */ rtnl_link_failed: #if IS_ENABLED(CONFIG_MPLS) xfrm4_tunnel_deregister(&mplsip_handler, AF_INET); @@ -653,6 +958,9 @@ static void __exit ipip_fini(void) { +#ifdef CONFIG_SYSCTL + unregister_net_sysctl_table(ipip_fan_header); +#endif /* CONFIG_SYSCTL */ rtnl_link_unregister(&ipip_link_ops); if (xfrm4_tunnel_deregister(&ipip_handler, AF_INET)) pr_info("%s: can't deregister tunnel\n", __func__); --- linux-4.8.0.orig/net/ipv4/ipmr.c +++ linux-4.8.0/net/ipv4/ipmr.c @@ -1749,7 +1749,7 @@ vif->dev->stats.tx_bytes += skb->len; } - IPCB(skb)->flags |= IPSKB_FORWARDED | IPSKB_FRAG_SEGS; + IPCB(skb)->flags |= IPSKB_FORWARDED; /* RFC1584 teaches, that DVMRP/PIM router must deliver packets locally * not only before forwarding, but after forwarding on all output --- linux-4.8.0.orig/net/ipv4/netfilter/arp_tables.c +++ linux-4.8.0/net/ipv4/netfilter/arp_tables.c @@ -299,6 +299,17 @@ memcmp(&e->arp, &uncond, sizeof(uncond)) == 0; } +static bool next_offset_ok(const struct xt_table_info *t, unsigned int newpos) +{ + if (newpos > t->size - sizeof(struct arpt_entry)) + return false; + + if (newpos % __alignof__(struct arpt_entry) != 0) + return false; + + return true; +} + /* Figures out from what hook each rule can be called: returns 0 if * there are loops. Puts hook bitmask in comefrom. */ @@ -364,6 +375,8 @@ /* Move along one */ size = e->next_offset; + if (!next_offset_ok(newinfo, pos + size)) + return 0; e = (struct arpt_entry *) (entry0 + pos + size); if (pos + size >= newinfo->size) @@ -388,6 +401,10 @@ if (newpos >= newinfo->size) return 0; } + + if (!next_offset_ok(newinfo, newpos)) + return 0; + e = (struct arpt_entry *) (entry0 + newpos); e->counters.pcnt = pos; @@ -415,17 +432,15 @@ } static inline int -find_check_entry(struct arpt_entry *e, const char *name, unsigned int size) +find_check_entry(struct arpt_entry *e, const char *name, unsigned int size, + struct xt_percpu_counter_alloc_state *alloc_state) { struct xt_entry_target *t; struct xt_target *target; - unsigned long pcnt; int ret; - pcnt = xt_percpu_counter_alloc(); - if (IS_ERR_VALUE(pcnt)) + if (!xt_percpu_counter_alloc(alloc_state, &e->counters)) return -ENOMEM; - e->counters.pcnt = pcnt; t = arpt_get_target(e); target = xt_request_find_target(NFPROTO_ARP, t->u.user.name, @@ -443,7 +458,7 @@ err: module_put(t->u.kernel.target->me); out: - xt_percpu_counter_free(e->counters.pcnt); + xt_percpu_counter_free(&e->counters); return ret; } @@ -523,7 +538,7 @@ if (par.target->destroy != NULL) par.target->destroy(&par); module_put(par.target->me); - xt_percpu_counter_free(e->counters.pcnt); + xt_percpu_counter_free(&e->counters); } /* Checks and translates the user-supplied table segment (held in @@ -532,6 +547,7 @@ static int translate_table(struct xt_table_info *newinfo, void *entry0, const struct arpt_replace *repl) { + struct xt_percpu_counter_alloc_state alloc_state = { 0 }; struct arpt_entry *iter; unsigned int *offsets; unsigned int i; @@ -594,7 +610,8 @@ /* Finally, each sanity check must pass */ i = 0; xt_entry_foreach(iter, entry0, newinfo->size) { - ret = find_check_entry(iter, repl->name, repl->size); + ret = find_check_entry(iter, repl->name, repl->size, + &alloc_state); if (ret != 0) break; ++i; --- linux-4.8.0.orig/net/ipv4/netfilter/ip_tables.c +++ linux-4.8.0/net/ipv4/netfilter/ip_tables.c @@ -373,6 +373,17 @@ else return verdict; } +static bool next_offset_ok(const struct xt_table_info *t, unsigned int newpos) +{ + if (newpos > t->size - sizeof(struct ipt_entry)) + return false; + + if (newpos % __alignof__(struct ipt_entry) != 0) + return false; + + return true; +} + /* Figures out from what hook each rule can be called: returns 0 if there are loops. Puts hook bitmask in comefrom. */ static int @@ -434,6 +445,8 @@ /* Move along one */ size = e->next_offset; + if (!next_offset_ok(newinfo, pos + size)) + return 0; e = (struct ipt_entry *) (entry0 + pos + size); if (pos + size >= newinfo->size) @@ -458,6 +471,10 @@ if (newpos >= newinfo->size) return 0; } + + if (!next_offset_ok(newinfo, newpos)) + return 0; + e = (struct ipt_entry *) (entry0 + newpos); e->counters.pcnt = pos; @@ -535,7 +552,8 @@ static int find_check_entry(struct ipt_entry *e, struct net *net, const char *name, - unsigned int size) + unsigned int size, + struct xt_percpu_counter_alloc_state *alloc_state) { struct xt_entry_target *t; struct xt_target *target; @@ -543,12 +561,9 @@ unsigned int j; struct xt_mtchk_param mtpar; struct xt_entry_match *ematch; - unsigned long pcnt; - pcnt = xt_percpu_counter_alloc(); - if (IS_ERR_VALUE(pcnt)) + if (!xt_percpu_counter_alloc(alloc_state, &e->counters)) return -ENOMEM; - e->counters.pcnt = pcnt; j = 0; mtpar.net = net; @@ -586,7 +601,7 @@ cleanup_match(ematch, net); } - xt_percpu_counter_free(e->counters.pcnt); + xt_percpu_counter_free(&e->counters); return ret; } @@ -674,7 +689,7 @@ if (par.target->destroy != NULL) par.target->destroy(&par); module_put(par.target->me); - xt_percpu_counter_free(e->counters.pcnt); + xt_percpu_counter_free(&e->counters); } /* Checks and translates the user-supplied table segment (held in @@ -683,6 +698,7 @@ translate_table(struct net *net, struct xt_table_info *newinfo, void *entry0, const struct ipt_replace *repl) { + struct xt_percpu_counter_alloc_state alloc_state = { 0 }; struct ipt_entry *iter; unsigned int *offsets; unsigned int i; @@ -742,7 +758,8 @@ /* Finally, each sanity check must pass */ i = 0; xt_entry_foreach(iter, entry0, newinfo->size) { - ret = find_check_entry(iter, net, repl->name, repl->size); + ret = find_check_entry(iter, net, repl->name, repl->size, + &alloc_state); if (ret != 0) break; ++i; --- linux-4.8.0.orig/net/ipv4/ping.c +++ linux-4.8.0/net/ipv4/ping.c @@ -662,6 +662,10 @@ if (len > 0xFFFF) return -EMSGSIZE; + /* Must have at least a full ICMP header. */ + if (len < icmph_len) + return -EINVAL; + /* * Check the flags. */ --- linux-4.8.0.orig/net/ipv4/route.c +++ linux-4.8.0/net/ipv4/route.c @@ -753,7 +753,9 @@ goto reject_redirect; } - n = ipv4_neigh_lookup(&rt->dst, NULL, &new_gw); + n = __ipv4_neigh_lookup(rt->dst.dev, new_gw); + if (!n) + n = neigh_create(&arp_tbl, &new_gw, rt->dst.dev); if (!IS_ERR(n)) { if (!(n->nud_state & NUD_VALID)) { neigh_event_send(n, NULL); --- linux-4.8.0.orig/net/ipv4/sysctl_net_ipv4.c +++ linux-4.8.0/net/ipv4/sysctl_net_ipv4.c @@ -96,11 +96,11 @@ container_of(table->data, struct net, ipv4.ping_group_range.range); unsigned int seq; do { - seq = read_seqbegin(&net->ipv4.ip_local_ports.lock); + seq = read_seqbegin(&net->ipv4.ping_group_range.lock); *low = data[0]; *high = data[1]; - } while (read_seqretry(&net->ipv4.ip_local_ports.lock, seq)); + } while (read_seqretry(&net->ipv4.ping_group_range.lock, seq)); } /* Update system visible IP port range */ @@ -109,10 +109,10 @@ kgid_t *data = table->data; struct net *net = container_of(table->data, struct net, ipv4.ping_group_range.range); - write_seqlock(&net->ipv4.ip_local_ports.lock); + write_seqlock(&net->ipv4.ping_group_range.lock); data[0] = low; data[1] = high; - write_sequnlock(&net->ipv4.ip_local_ports.lock); + write_sequnlock(&net->ipv4.ping_group_range.lock); } /* Validate changes from /proc interface. */ --- linux-4.8.0.orig/net/ipv4/tcp.c +++ linux-4.8.0/net/ipv4/tcp.c @@ -1145,7 +1145,7 @@ err = -EPIPE; if (sk->sk_err || (sk->sk_shutdown & SEND_SHUTDOWN)) - goto out_err; + goto do_error; sg = !!(sk->sk_route_caps & NETIF_F_SG); @@ -1219,7 +1219,7 @@ if (!skb_can_coalesce(skb, i, pfrag->page, pfrag->offset)) { - if (i == sysctl_max_skb_frags || !sg) { + if (i >= sysctl_max_skb_frags || !sg) { tcp_mark_push(tp, skb); goto new_segment; } --- linux-4.8.0.orig/net/ipv4/tcp_dctcp.c +++ linux-4.8.0/net/ipv4/tcp_dctcp.c @@ -56,6 +56,7 @@ u32 next_seq; u32 ce_state; u32 delayed_ack_reserved; + u32 loss_cwnd; }; static unsigned int dctcp_shift_g __read_mostly = 4; /* g = 1/2^4 */ @@ -96,6 +97,7 @@ ca->dctcp_alpha = min(dctcp_alpha_on_init, DCTCP_MAX_ALPHA); ca->delayed_ack_reserved = 0; + ca->loss_cwnd = 0; ca->ce_state = 0; dctcp_reset(tp, ca); @@ -111,9 +113,10 @@ static u32 dctcp_ssthresh(struct sock *sk) { - const struct dctcp *ca = inet_csk_ca(sk); + struct dctcp *ca = inet_csk_ca(sk); struct tcp_sock *tp = tcp_sk(sk); + ca->loss_cwnd = tp->snd_cwnd; return max(tp->snd_cwnd - ((tp->snd_cwnd * ca->dctcp_alpha) >> 11U), 2U); } @@ -308,12 +311,20 @@ return 0; } +static u32 dctcp_cwnd_undo(struct sock *sk) +{ + const struct dctcp *ca = inet_csk_ca(sk); + + return max(tcp_sk(sk)->snd_cwnd, ca->loss_cwnd); +} + static struct tcp_congestion_ops dctcp __read_mostly = { .init = dctcp_init, .in_ack_event = dctcp_update_alpha, .cwnd_event = dctcp_cwnd_event, .ssthresh = dctcp_ssthresh, .cong_avoid = tcp_reno_cong_avoid, + .undo_cwnd = dctcp_cwnd_undo, .set_state = dctcp_state, .get_info = dctcp_get_info, .flags = TCP_CONG_NEEDS_ECN, --- linux-4.8.0.orig/net/ipv4/tcp_ipv4.c +++ linux-4.8.0/net/ipv4/tcp_ipv4.c @@ -1537,6 +1537,21 @@ } EXPORT_SYMBOL(tcp_prequeue); +int tcp_filter(struct sock *sk, struct sk_buff *skb) +{ + struct tcphdr *th = (struct tcphdr *)skb->data; + unsigned int eaten = skb->len; + int err; + + err = sk_filter_trim_cap(sk, skb, th->doff * 4); + if (!err) { + eaten -= skb->len; + TCP_SKB_CB(skb)->end_seq -= eaten; + } + return err; +} +EXPORT_SYMBOL(tcp_filter); + /* * From tcp_input.c */ @@ -1648,8 +1663,10 @@ nf_reset(skb); - if (sk_filter(sk, skb)) + if (tcp_filter(sk, skb)) goto discard_and_relse; + th = (const struct tcphdr *)skb->data; + iph = ip_hdr(skb); skb->dev = NULL; --- linux-4.8.0.orig/net/ipv4/udp.c +++ linux-4.8.0/net/ipv4/udp.c @@ -1327,7 +1327,7 @@ *addr_len = sizeof(*sin); } if (inet->cmsg_flags) - ip_cmsg_recv_offset(msg, skb, sizeof(struct udphdr) + off); + ip_cmsg_recv_offset(msg, skb, sizeof(struct udphdr), off); err = copied; if (flags & MSG_TRUNC) @@ -1451,7 +1451,7 @@ udp_lib_rehash(sk, new_hash); } -static int __udp_queue_rcv_skb(struct sock *sk, struct sk_buff *skb) +int __udp_queue_rcv_skb(struct sock *sk, struct sk_buff *skb) { int rc; --- linux-4.8.0.orig/net/ipv4/udp_impl.h +++ linux-4.8.0/net/ipv4/udp_impl.h @@ -25,7 +25,7 @@ int flags, int *addr_len); int udp_sendpage(struct sock *sk, struct page *page, int offset, size_t size, int flags); -int udp_queue_rcv_skb(struct sock *sk, struct sk_buff *skb); +int __udp_queue_rcv_skb(struct sock *sk, struct sk_buff *skb); void udp_destroy_sock(struct sock *sk); #ifdef CONFIG_PROC_FS --- linux-4.8.0.orig/net/ipv4/udp_offload.c +++ linux-4.8.0/net/ipv4/udp_offload.c @@ -293,7 +293,7 @@ skb_gro_pull(skb, sizeof(struct udphdr)); /* pull encapsulating udp header */ skb_gro_postpull_rcsum(skb, uh, sizeof(struct udphdr)); - pp = udp_sk(sk)->gro_receive(sk, head, skb); + pp = call_gro_receive_sk(udp_sk(sk)->gro_receive, sk, head, skb); out_unlock: rcu_read_unlock(); --- linux-4.8.0.orig/net/ipv4/udplite.c +++ linux-4.8.0/net/ipv4/udplite.c @@ -50,7 +50,7 @@ .sendmsg = udp_sendmsg, .recvmsg = udp_recvmsg, .sendpage = udp_sendpage, - .backlog_rcv = udp_queue_rcv_skb, + .backlog_rcv = __udp_queue_rcv_skb, .hash = udp_lib_hash, .unhash = udp_lib_unhash, .get_port = udp_v4_get_port, --- linux-4.8.0.orig/net/ipv6/addrconf.c +++ linux-4.8.0/net/ipv6/addrconf.c @@ -163,7 +163,7 @@ static void addrconf_dad_start(struct inet6_ifaddr *ifp); static void addrconf_dad_work(struct work_struct *w); -static void addrconf_dad_completed(struct inet6_ifaddr *ifp); +static void addrconf_dad_completed(struct inet6_ifaddr *ifp, bool bump_id); static void addrconf_dad_run(struct inet6_dev *idev); static void addrconf_rs_timer(unsigned long data); static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa); @@ -2893,6 +2893,7 @@ spin_lock_bh(&ifp->lock); ifp->flags &= ~IFA_F_TENTATIVE; spin_unlock_bh(&ifp->lock); + rt_genid_bump_ipv6(dev_net(idev->dev)); ipv6_ifa_notify(RTM_NEWADDR, ifp); in6_ifa_put(ifp); } @@ -2995,7 +2996,7 @@ * lo device down, release this obsolete dst and * reallocate a new router for ifa. */ - if (sp_ifa->rt->dst.obsolete > 0) { + if (!atomic_read(&sp_ifa->rt->rt6i_ref)) { ip6_rt_put(sp_ifa->rt); sp_ifa->rt = NULL; } else { @@ -3736,7 +3737,7 @@ { struct inet6_dev *idev = ifp->idev; struct net_device *dev = idev->dev; - bool notify = false; + bool bump_id, notify = false; addrconf_join_solict(dev, &ifp->addr); @@ -3751,11 +3752,12 @@ idev->cnf.accept_dad < 1 || !(ifp->flags&IFA_F_TENTATIVE) || ifp->flags & IFA_F_NODAD) { + bump_id = ifp->flags & IFA_F_TENTATIVE; ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED); spin_unlock(&ifp->lock); read_unlock_bh(&idev->lock); - addrconf_dad_completed(ifp); + addrconf_dad_completed(ifp, bump_id); return; } @@ -3815,8 +3817,8 @@ struct inet6_ifaddr, dad_work); struct inet6_dev *idev = ifp->idev; + bool bump_id, disable_ipv6 = false; struct in6_addr mcaddr; - bool disable_ipv6 = false; enum { DAD_PROCESS, @@ -3886,11 +3888,12 @@ * DAD was successful */ + bump_id = ifp->flags & IFA_F_TENTATIVE; ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED); spin_unlock(&ifp->lock); write_unlock_bh(&idev->lock); - addrconf_dad_completed(ifp); + addrconf_dad_completed(ifp, bump_id); goto out; } @@ -3927,7 +3930,7 @@ return true; } -static void addrconf_dad_completed(struct inet6_ifaddr *ifp) +static void addrconf_dad_completed(struct inet6_ifaddr *ifp, bool bump_id) { struct net_device *dev = ifp->idev->dev; struct in6_addr lladdr; @@ -3978,6 +3981,9 @@ spin_unlock(&ifp->lock); write_unlock_bh(&ifp->idev->lock); } + + if (bump_id) + rt_genid_bump_ipv6(dev_net(dev)); } static void addrconf_dad_run(struct inet6_dev *idev) --- linux-4.8.0.orig/net/ipv6/esp6.c +++ linux-4.8.0/net/ipv6/esp6.c @@ -418,7 +418,7 @@ esph = (void *)skb_push(skb, 4); *seqhi = esph->spi; esph->spi = esph->seq_no; - esph->seq_no = htonl(XFRM_SKB_CB(skb)->seq.input.hi); + esph->seq_no = XFRM_SKB_CB(skb)->seq.input.hi; aead_request_set_callback(req, 0, esp_input_done_esn, skb); } --- linux-4.8.0.orig/net/ipv6/icmp.c +++ linux-4.8.0/net/ipv6/icmp.c @@ -447,8 +447,10 @@ if (__ipv6_addr_needs_scope_id(addr_type)) iif = skb->dev->ifindex; - else - iif = l3mdev_master_ifindex(skb->dev); + else { + dst = skb_dst(skb); + iif = l3mdev_master_ifindex(dst ? dst->dev : skb->dev); + } /* * Must not send error if the source does not uniquely --- linux-4.8.0.orig/net/ipv6/ip6_offload.c +++ linux-4.8.0/net/ipv6/ip6_offload.c @@ -98,7 +98,7 @@ segs = ops->callbacks.gso_segment(skb, features); } - if (IS_ERR(segs)) + if (IS_ERR_OR_NULL(segs)) goto out; for (skb = segs; skb; skb = skb->next) { @@ -114,6 +114,8 @@ if (udpfrag) { unfrag_ip6hlen = ip6_find_1stfragopt(skb, &prevhdr); + if (unfrag_ip6hlen < 0) + return ERR_PTR(unfrag_ip6hlen); fptr = (struct frag_hdr *)((u8 *)ipv6h + unfrag_ip6hlen); fptr->frag_off = htons(offset); if (skb->next) @@ -243,7 +245,7 @@ skb_gro_postpull_rcsum(skb, iph, nlen); - pp = ops->callbacks.gro_receive(head, skb); + pp = call_gro_receive(ops->callbacks.gro_receive, head, skb); out_unlock: rcu_read_unlock(); --- linux-4.8.0.orig/net/ipv6/ip6_output.c +++ linux-4.8.0/net/ipv6/ip6_output.c @@ -571,6 +571,10 @@ u8 *prevhdr, nexthdr = 0; hlen = ip6_find_1stfragopt(skb, &prevhdr); + if (hlen < 0) { + err = hlen; + goto fail; + } nexthdr = *prevhdr; mtu = ip6_skb_dst_mtu(skb); @@ -1432,6 +1436,11 @@ */ alloclen += sizeof(struct frag_hdr); + copy = datalen - transhdrlen - fraggap; + if (copy < 0) { + err = -EINVAL; + goto error; + } if (transhdrlen) { skb = sock_alloc_send_skb(sk, alloclen + hh_len, @@ -1481,13 +1490,9 @@ data += fraggap; pskb_trim_unique(skb_prev, maxfraglen); } - copy = datalen - transhdrlen - fraggap; - - if (copy < 0) { - err = -EINVAL; - kfree_skb(skb); - goto error; - } else if (copy > 0 && getfrag(from, data + transhdrlen, offset, copy, fraggap, skb) < 0) { + if (copy > 0 && + getfrag(from, data + transhdrlen, offset, + copy, fraggap, skb) < 0) { err = -EFAULT; kfree_skb(skb); goto error; --- linux-4.8.0.orig/net/ipv6/ip6_tunnel.c +++ linux-4.8.0/net/ipv6/ip6_tunnel.c @@ -155,6 +155,7 @@ hash = HASH(&any, local); for_each_ip6_tunnel_rcu(ip6n->tnls_r_l[hash]) { if (ipv6_addr_equal(local, &t->parms.laddr) && + ipv6_addr_any(&t->parms.raddr) && (t->dev->flags & IFF_UP)) return t; } @@ -162,6 +163,7 @@ hash = HASH(remote, &any); for_each_ip6_tunnel_rcu(ip6n->tnls_r_l[hash]) { if (ipv6_addr_equal(remote, &t->parms.raddr) && + ipv6_addr_any(&t->parms.laddr) && (t->dev->flags & IFF_UP)) return t; } @@ -1012,6 +1014,7 @@ int mtu; unsigned int psh_hlen = sizeof(struct ipv6hdr) + t->encap_hlen; unsigned int max_headroom = psh_hlen; + bool use_cache = false; int err = -1; /* NBMA tunnel */ @@ -1036,7 +1039,15 @@ memcpy(&fl6->daddr, addr6, sizeof(fl6->daddr)); neigh_release(neigh); - } else if (!fl6->flowi6_mark) + } else if (!(t->parms.flags & + (IP6_TNL_F_USE_ORIG_TCLASS | IP6_TNL_F_USE_ORIG_FWMARK))) { + /* enable the cache only only if the routing decision does + * not depend on the current inner header value + */ + use_cache = true; + } + + if (use_cache) dst = dst_cache_get(&t->dst_cache); if (!ip6_tnl_xmit_ctl(t, &fl6->saddr, &fl6->daddr)) @@ -1111,7 +1122,7 @@ skb = new_skb; } - if (!fl6->flowi6_mark && ndst) + if (use_cache && ndst) dst_cache_set_ip6(&t->dst_cache, ndst, &fl6->saddr); skb_dst_set(skb, dst); --- linux-4.8.0.orig/net/ipv6/netfilter/ip6_tables.c +++ linux-4.8.0/net/ipv6/netfilter/ip6_tables.c @@ -402,6 +402,17 @@ else return verdict; } +static bool next_offset_ok(const struct xt_table_info *t, unsigned int newpos) +{ + if (newpos > t->size - sizeof(struct ip6t_entry)) + return false; + + if (newpos % __alignof__(struct ip6t_entry) != 0) + return false; + + return true; +} + /* Figures out from what hook each rule can be called: returns 0 if there are loops. Puts hook bitmask in comefrom. */ static int @@ -463,6 +474,8 @@ /* Move along one */ size = e->next_offset; + if (!next_offset_ok(newinfo, pos + size)) + return 0; e = (struct ip6t_entry *) (entry0 + pos + size); if (pos + size >= newinfo->size) @@ -487,6 +500,10 @@ if (newpos >= newinfo->size) return 0; } + + if (!next_offset_ok(newinfo, newpos)) + return 0; + e = (struct ip6t_entry *) (entry0 + newpos); e->counters.pcnt = pos; @@ -566,7 +583,8 @@ static int find_check_entry(struct ip6t_entry *e, struct net *net, const char *name, - unsigned int size) + unsigned int size, + struct xt_percpu_counter_alloc_state *alloc_state) { struct xt_entry_target *t; struct xt_target *target; @@ -574,12 +592,9 @@ unsigned int j; struct xt_mtchk_param mtpar; struct xt_entry_match *ematch; - unsigned long pcnt; - pcnt = xt_percpu_counter_alloc(); - if (IS_ERR_VALUE(pcnt)) + if (!xt_percpu_counter_alloc(alloc_state, &e->counters)) return -ENOMEM; - e->counters.pcnt = pcnt; j = 0; mtpar.net = net; @@ -616,7 +631,7 @@ cleanup_match(ematch, net); } - xt_percpu_counter_free(e->counters.pcnt); + xt_percpu_counter_free(&e->counters); return ret; } @@ -703,8 +718,7 @@ if (par.target->destroy != NULL) par.target->destroy(&par); module_put(par.target->me); - - xt_percpu_counter_free(e->counters.pcnt); + xt_percpu_counter_free(&e->counters); } /* Checks and translates the user-supplied table segment (held in @@ -713,6 +727,7 @@ translate_table(struct net *net, struct xt_table_info *newinfo, void *entry0, const struct ip6t_replace *repl) { + struct xt_percpu_counter_alloc_state alloc_state = { 0 }; struct ip6t_entry *iter; unsigned int *offsets; unsigned int i; @@ -772,7 +787,8 @@ /* Finally, each sanity check must pass */ i = 0; xt_entry_foreach(iter, entry0, newinfo->size) { - ret = find_check_entry(iter, net, repl->name, repl->size); + ret = find_check_entry(iter, net, repl->name, repl->size, + &alloc_state); if (ret != 0) break; ++i; --- linux-4.8.0.orig/net/ipv6/output_core.c +++ linux-4.8.0/net/ipv6/output_core.c @@ -79,14 +79,13 @@ int ip6_find_1stfragopt(struct sk_buff *skb, u8 **nexthdr) { u16 offset = sizeof(struct ipv6hdr); - struct ipv6_opt_hdr *exthdr = - (struct ipv6_opt_hdr *)(ipv6_hdr(skb) + 1); unsigned int packet_len = skb_tail_pointer(skb) - skb_network_header(skb); int found_rhdr = 0; *nexthdr = &ipv6_hdr(skb)->nexthdr; - while (offset + 1 <= packet_len) { + while (offset <= packet_len) { + struct ipv6_opt_hdr *exthdr; switch (**nexthdr) { @@ -107,13 +106,16 @@ return offset; } - offset += ipv6_optlen(exthdr); - *nexthdr = &exthdr->nexthdr; + if (offset + sizeof(struct ipv6_opt_hdr) > packet_len) + return -EINVAL; + exthdr = (struct ipv6_opt_hdr *)(skb_network_header(skb) + offset); + offset += ipv6_optlen(exthdr); + *nexthdr = &exthdr->nexthdr; } - return offset; + return -EINVAL; } EXPORT_SYMBOL(ip6_find_1stfragopt); @@ -148,6 +150,8 @@ ipv6_hdr(skb)->payload_len = htons(len); IP6CB(skb)->nhoff = offsetof(struct ipv6hdr, nexthdr); + skb->protocol = htons(ETH_P_IPV6); + return nf_hook(NFPROTO_IPV6, NF_INET_LOCAL_OUT, net, sk, skb, NULL, skb_dst(skb)->dev, dst_output); --- linux-4.8.0.orig/net/ipv6/route.c +++ linux-4.8.0/net/ipv6/route.c @@ -656,7 +656,8 @@ struct net_device *dev = rt->dst.dev; if (dev && !netif_carrier_ok(dev) && - idev->cnf.ignore_routes_with_linkdown) + idev->cnf.ignore_routes_with_linkdown && + !(strict & RT6_LOOKUP_F_IGNORE_LINKSTATE)) goto out; if (rt6_check_expired(rt)) @@ -1050,6 +1051,7 @@ int strict = 0; strict |= flags & RT6_LOOKUP_F_IFACE; + strict |= flags & RT6_LOOKUP_F_IGNORE_LINKSTATE; if (net->ipv6.devconf_all->forwarding == 0) strict |= RT6_LOOKUP_F_REACHABLE; @@ -1783,7 +1785,7 @@ }; struct fib6_table *table; struct rt6_info *rt; - int flags = RT6_LOOKUP_F_IFACE; + int flags = RT6_LOOKUP_F_IFACE | RT6_LOOKUP_F_IGNORE_LINKSTATE; table = fib6_get_table(net, cfg->fc_table); if (!table) --- linux-4.8.0.orig/net/ipv6/tcp_ipv6.c +++ linux-4.8.0/net/ipv6/tcp_ipv6.c @@ -1033,6 +1033,7 @@ newtp->af_specific = &tcp_sock_ipv6_mapped_specific; #endif + newnp->ipv6_mc_list = NULL; newnp->ipv6_ac_list = NULL; newnp->ipv6_fl_list = NULL; newnp->pktoptions = NULL; @@ -1102,6 +1103,7 @@ First: no IPv4 options. */ newinet->inet_opt = NULL; + newnp->ipv6_mc_list = NULL; newnp->ipv6_ac_list = NULL; newnp->ipv6_fl_list = NULL; @@ -1193,6 +1195,16 @@ return NULL; } +static void tcp_v6_restore_cb(struct sk_buff *skb) +{ + /* We need to move header back to the beginning if xfrm6_policy_check() + * and tcp_v6_fill_cb() are going to be called again. + * ip6_datagram_recv_specific_ctl() also expects IP6CB to be there. + */ + memmove(IP6CB(skb), &TCP_SKB_CB(skb)->header.h6, + sizeof(struct inet6_skb_parm)); +} + /* The socket must have it's spinlock held when we get * here, unless it is a TCP_LISTEN socket. * @@ -1218,7 +1230,7 @@ if (skb->protocol == htons(ETH_P_IP)) return tcp_v4_do_rcv(sk, skb); - if (sk_filter(sk, skb)) + if (tcp_filter(sk, skb)) goto discard; /* @@ -1322,6 +1334,7 @@ np->flow_label = ip6_flowlabel(ipv6_hdr(opt_skb)); if (ipv6_opt_accepted(sk, opt_skb, &TCP_SKB_CB(opt_skb)->header.h6)) { skb_set_owner_r(opt_skb, sk); + tcp_v6_restore_cb(opt_skb); opt_skb = xchg(&np->pktoptions, opt_skb); } else { __kfree_skb(opt_skb); @@ -1355,15 +1368,6 @@ TCP_SKB_CB(skb)->sacked = 0; } -static void tcp_v6_restore_cb(struct sk_buff *skb) -{ - /* We need to move header back to the beginning if xfrm6_policy_check() - * and tcp_v6_fill_cb() are going to be called again. - */ - memmove(IP6CB(skb), &TCP_SKB_CB(skb)->header.h6, - sizeof(struct inet6_skb_parm)); -} - static int tcp_v6_rcv(struct sk_buff *skb) { const struct tcphdr *th; @@ -1453,8 +1457,10 @@ if (tcp_v6_inbound_md5_hash(sk, skb)) goto discard_and_relse; - if (sk_filter(sk, skb)) + if (tcp_filter(sk, skb)) goto discard_and_relse; + th = (const struct tcphdr *)skb->data; + hdr = ipv6_hdr(skb); skb->dev = NULL; --- linux-4.8.0.orig/net/ipv6/udp.c +++ linux-4.8.0/net/ipv6/udp.c @@ -427,7 +427,8 @@ if (is_udp4) { if (inet->cmsg_flags) - ip_cmsg_recv(msg, skb); + ip_cmsg_recv_offset(msg, skb, + sizeof(struct udphdr), off); } else { if (np->rxopt.all) ip6_datagram_recv_specific_ctl(sk, msg, skb); @@ -513,7 +514,7 @@ return; } -static int __udpv6_queue_rcv_skb(struct sock *sk, struct sk_buff *skb) +int __udpv6_queue_rcv_skb(struct sock *sk, struct sk_buff *skb) { int rc; --- linux-4.8.0.orig/net/ipv6/udp_impl.h +++ linux-4.8.0/net/ipv6/udp_impl.h @@ -26,7 +26,7 @@ int udpv6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len); int udpv6_recvmsg(struct sock *sk, struct msghdr *msg, size_t len, int noblock, int flags, int *addr_len); -int udpv6_queue_rcv_skb(struct sock *sk, struct sk_buff *skb); +int __udpv6_queue_rcv_skb(struct sock *sk, struct sk_buff *skb); void udpv6_destroy_sock(struct sock *sk); void udp_v6_clear_sk(struct sock *sk, int size); --- linux-4.8.0.orig/net/ipv6/udp_offload.c +++ linux-4.8.0/net/ipv6/udp_offload.c @@ -91,6 +91,8 @@ * bytes to insert fragment header. */ unfrag_ip6hlen = ip6_find_1stfragopt(skb, &prevhdr); + if (unfrag_ip6hlen < 0) + return ERR_PTR(unfrag_ip6hlen); nexthdr = *prevhdr; *prevhdr = NEXTHDR_FRAGMENT; unfrag_len = (skb_network_header(skb) - skb_mac_header(skb)) + --- linux-4.8.0.orig/net/ipv6/udplite.c +++ linux-4.8.0/net/ipv6/udplite.c @@ -45,7 +45,7 @@ .getsockopt = udpv6_getsockopt, .sendmsg = udpv6_sendmsg, .recvmsg = udpv6_recvmsg, - .backlog_rcv = udpv6_queue_rcv_skb, + .backlog_rcv = __udpv6_queue_rcv_skb, .hash = udp_lib_hash, .unhash = udp_lib_unhash, .get_port = udp_v6_get_port, --- linux-4.8.0.orig/net/l2tp/l2tp_ip.c +++ linux-4.8.0/net/l2tp/l2tp_ip.c @@ -251,8 +251,6 @@ int ret; int chk_addr_ret; - if (!sock_flag(sk, SOCK_ZAPPED)) - return -EINVAL; if (addr_len < sizeof(struct sockaddr_l2tpip)) return -EINVAL; if (addr->l2tp_family != AF_INET) @@ -267,6 +265,9 @@ read_unlock_bh(&l2tp_ip_lock); lock_sock(sk); + if (!sock_flag(sk, SOCK_ZAPPED)) + goto out; + if (sk->sk_state != TCP_CLOSE || addr_len < sizeof(struct sockaddr_l2tpip)) goto out; --- linux-4.8.0.orig/net/l2tp/l2tp_ip6.c +++ linux-4.8.0/net/l2tp/l2tp_ip6.c @@ -269,8 +269,6 @@ int addr_type; int err; - if (!sock_flag(sk, SOCK_ZAPPED)) - return -EINVAL; if (addr->l2tp_family != AF_INET6) return -EINVAL; if (addr_len < sizeof(*addr)) @@ -296,6 +294,9 @@ lock_sock(sk); err = -EINVAL; + if (!sock_flag(sk, SOCK_ZAPPED)) + goto out_unlock; + if (sk->sk_state != TCP_CLOSE) goto out_unlock; --- linux-4.8.0.orig/net/mac80211/mlme.c +++ linux-4.8.0/net/mac80211/mlme.c @@ -2506,7 +2506,7 @@ } static void ieee80211_destroy_assoc_data(struct ieee80211_sub_if_data *sdata, - bool assoc) + bool assoc, bool abandon) { struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data; @@ -2529,6 +2529,9 @@ mutex_lock(&sdata->local->mtx); ieee80211_vif_release_channel(sdata); mutex_unlock(&sdata->local->mtx); + + if (abandon) + cfg80211_abandon_assoc(sdata->dev, assoc_data->bss); } kfree(assoc_data); @@ -2758,7 +2761,7 @@ bssid, reason_code, ieee80211_get_reason_code_string(reason_code)); - ieee80211_destroy_assoc_data(sdata, false); + ieee80211_destroy_assoc_data(sdata, false, true); cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len); return; @@ -3163,14 +3166,14 @@ if (status_code != WLAN_STATUS_SUCCESS) { sdata_info(sdata, "%pM denied association (code=%d)\n", mgmt->sa, status_code); - ieee80211_destroy_assoc_data(sdata, false); + ieee80211_destroy_assoc_data(sdata, false, false); event.u.mlme.status = MLME_DENIED; event.u.mlme.reason = status_code; drv_event_callback(sdata->local, sdata, &event); } else { if (!ieee80211_assoc_success(sdata, bss, mgmt, len)) { /* oops -- internal error -- send timeout for now */ - ieee80211_destroy_assoc_data(sdata, false); + ieee80211_destroy_assoc_data(sdata, false, false); cfg80211_assoc_timeout(sdata->dev, bss); return; } @@ -3183,7 +3186,7 @@ * recalc after assoc_data is NULL but before associated * is set can cause the interface to go idle */ - ieee80211_destroy_assoc_data(sdata, true); + ieee80211_destroy_assoc_data(sdata, true, false); /* get uapsd queues configuration */ uapsd_queues = 0; @@ -3882,7 +3885,7 @@ .u.mlme.status = MLME_TIMEOUT, }; - ieee80211_destroy_assoc_data(sdata, false); + ieee80211_destroy_assoc_data(sdata, false, false); cfg80211_assoc_timeout(sdata->dev, bss); drv_event_callback(sdata->local, sdata, &event); } @@ -4021,7 +4024,7 @@ WLAN_REASON_DEAUTH_LEAVING, false, frame_buf); if (ifmgd->assoc_data) - ieee80211_destroy_assoc_data(sdata, false); + ieee80211_destroy_assoc_data(sdata, false, true); if (ifmgd->auth_data) ieee80211_destroy_auth_data(sdata, false); cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf, @@ -4903,7 +4906,7 @@ IEEE80211_STYPE_DEAUTH, req->reason_code, tx, frame_buf); - ieee80211_destroy_assoc_data(sdata, false); + ieee80211_destroy_assoc_data(sdata, false, true); ieee80211_report_disconnect(sdata, frame_buf, sizeof(frame_buf), true, req->reason_code); @@ -4978,7 +4981,7 @@ sdata_lock(sdata); if (ifmgd->assoc_data) { struct cfg80211_bss *bss = ifmgd->assoc_data->bss; - ieee80211_destroy_assoc_data(sdata, false); + ieee80211_destroy_assoc_data(sdata, false, false); cfg80211_assoc_timeout(sdata->dev, bss); } if (ifmgd->auth_data) --- linux-4.8.0.orig/net/mac80211/rx.c +++ linux-4.8.0/net/mac80211/rx.c @@ -2253,16 +2253,22 @@ if (!(status->rx_flags & IEEE80211_RX_AMSDU)) return RX_CONTINUE; - if (ieee80211_has_a4(hdr->frame_control) && - rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN && - !rx->sdata->u.vlan.sta) - return RX_DROP_UNUSABLE; + if (unlikely(ieee80211_has_a4(hdr->frame_control))) { + switch (rx->sdata->vif.type) { + case NL80211_IFTYPE_AP_VLAN: + if (!rx->sdata->u.vlan.sta) + return RX_DROP_UNUSABLE; + break; + case NL80211_IFTYPE_STATION: + if (!rx->sdata->u.mgd.use_4addr) + return RX_DROP_UNUSABLE; + break; + default: + return RX_DROP_UNUSABLE; + } + } - if (is_multicast_ether_addr(hdr->addr1) && - ((rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN && - rx->sdata->u.vlan.sta) || - (rx->sdata->vif.type == NL80211_IFTYPE_STATION && - rx->sdata->u.mgd.use_4addr))) + if (is_multicast_ether_addr(hdr->addr1)) return RX_DROP_UNUSABLE; skb->dev = dev; --- linux-4.8.0.orig/net/netfilter/nf_conntrack_extend.c +++ linux-4.8.0/net/netfilter/nf_conntrack_extend.c @@ -73,7 +73,7 @@ size_t var_alloc_len, gfp_t gfp) { struct nf_ct_ext *old, *new; - int newlen, newoff; + int i, newlen, newoff; struct nf_ct_ext_type *t; /* Conntrack must not be confirmed to avoid races on reallocation. */ @@ -99,8 +99,19 @@ return NULL; if (new != old) { + for (i = 0; i < NF_CT_EXT_NUM; i++) { + if (!__nf_ct_ext_exist(old, i)) + continue; + + rcu_read_lock(); + t = rcu_dereference(nf_ct_ext_types[i]); + if (t && t->move) + t->move((void *)new + new->offset[i], + (void *)old + old->offset[i]); + rcu_read_unlock(); + } kfree_rcu(old, rcu); - rcu_assign_pointer(ct->ext, new); + ct->ext = new; } new->offset[id] = newoff; --- linux-4.8.0.orig/net/netfilter/nf_log.c +++ linux-4.8.0/net/netfilter/nf_log.c @@ -420,7 +420,7 @@ char buf[NFLOGGER_NAME_LEN]; int r = 0; int tindex = (unsigned long)table->extra1; - struct net *net = current->nsproxy->net_ns; + struct net *net = table->extra2; if (write) { struct ctl_table tmp = *table; @@ -474,7 +474,6 @@ 3, "%d", i); nf_log_sysctl_table[i].procname = nf_log_sysctl_fnames[i]; - nf_log_sysctl_table[i].data = NULL; nf_log_sysctl_table[i].maxlen = NFLOGGER_NAME_LEN; nf_log_sysctl_table[i].mode = 0644; nf_log_sysctl_table[i].proc_handler = @@ -484,6 +483,9 @@ } } + for (i = NFPROTO_UNSPEC; i < NFPROTO_NUMPROTO; i++) + table[i].extra2 = net; + net->nf.nf_log_dir_header = register_net_sysctl(net, "net/netfilter/nf_log", table); --- linux-4.8.0.orig/net/netfilter/nf_nat_core.c +++ linux-4.8.0/net/netfilter/nf_nat_core.c @@ -30,19 +30,17 @@ #include #include +static DEFINE_SPINLOCK(nf_nat_lock); + static DEFINE_MUTEX(nf_nat_proto_mutex); static const struct nf_nat_l3proto __rcu *nf_nat_l3protos[NFPROTO_NUMPROTO] __read_mostly; static const struct nf_nat_l4proto __rcu **nf_nat_l4protos[NFPROTO_NUMPROTO] __read_mostly; -struct nf_nat_conn_key { - const struct net *net; - const struct nf_conntrack_tuple *tuple; - const struct nf_conntrack_zone *zone; -}; - -static struct rhashtable nf_nat_bysource_table; +static struct hlist_head *nf_nat_bysource __read_mostly; +static unsigned int nf_nat_htable_size __read_mostly; +static unsigned int nf_nat_hash_rnd __read_mostly; inline const struct nf_nat_l3proto * __nf_nat_l3proto_find(u8 family) @@ -121,17 +119,19 @@ EXPORT_SYMBOL(nf_xfrm_me_harder); #endif /* CONFIG_XFRM */ -static u32 nf_nat_bysource_hash(const void *data, u32 len, u32 seed) +/* We keep an extra hash for each conntrack, for fast searching. */ +static inline unsigned int +hash_by_src(const struct net *n, const struct nf_conntrack_tuple *tuple) { - const struct nf_conntrack_tuple *t; - const struct nf_conn *ct = data; + unsigned int hash; + + get_random_once(&nf_nat_hash_rnd, sizeof(nf_nat_hash_rnd)); - t = &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple; /* Original src, to ensure we map it consistently if poss. */ + hash = jhash2((u32 *)&tuple->src, sizeof(tuple->src) / sizeof(u32), + tuple->dst.protonum ^ nf_nat_hash_rnd ^ net_hash_mix(n)); - seed ^= net_hash_mix(nf_ct_net(ct)); - return jhash2((const u32 *)&t->src, sizeof(t->src) / sizeof(u32), - t->dst.protonum ^ seed); + return reciprocal_scale(hash, nf_nat_htable_size); } /* Is this tuple already taken? (not by us) */ @@ -187,26 +187,6 @@ t->src.u.all == tuple->src.u.all); } -static int nf_nat_bysource_cmp(struct rhashtable_compare_arg *arg, - const void *obj) -{ - const struct nf_nat_conn_key *key = arg->key; - const struct nf_conn *ct = obj; - - return same_src(ct, key->tuple) && - net_eq(nf_ct_net(ct), key->net) && - nf_ct_zone_equal(ct, key->zone, IP_CT_DIR_ORIGINAL); -} - -static struct rhashtable_params nf_nat_bysource_params = { - .head_offset = offsetof(struct nf_conn, nat_bysource), - .obj_hashfn = nf_nat_bysource_hash, - .obj_cmpfn = nf_nat_bysource_cmp, - .nelem_hint = 256, - .min_size = 1024, - .nulls_base = (1U << RHT_BASE_SHIFT), -}; - /* Only called for SRC manip */ static int find_appropriate_src(struct net *net, @@ -217,23 +197,25 @@ struct nf_conntrack_tuple *result, const struct nf_nat_range *range) { + unsigned int h = hash_by_src(net, tuple); + const struct nf_conn_nat *nat; const struct nf_conn *ct; - struct nf_nat_conn_key key = { - .net = net, - .tuple = tuple, - .zone = zone - }; - - ct = rhashtable_lookup_fast(&nf_nat_bysource_table, &key, - nf_nat_bysource_params); - if (!ct) - return 0; - nf_ct_invert_tuplepr(result, - &ct->tuplehash[IP_CT_DIR_REPLY].tuple); - result->dst = tuple->dst; + hlist_for_each_entry_rcu(nat, &nf_nat_bysource[h], bysource) { + ct = nat->ct; + if (same_src(ct, tuple) && + net_eq(net, nf_ct_net(ct)) && + nf_ct_zone_equal(ct, zone, IP_CT_DIR_ORIGINAL)) { + /* Copy source part from reply tuple. */ + nf_ct_invert_tuplepr(result, + &ct->tuplehash[IP_CT_DIR_REPLY].tuple); + result->dst = tuple->dst; - return in_range(l3proto, l4proto, result, range); + if (in_range(l3proto, l4proto, result, range)) + return 1; + } + } + return 0; } /* For [FUTURE] fragmentation handling, we want the least-used @@ -405,6 +387,7 @@ const struct nf_nat_range *range, enum nf_nat_manip_type maniptype) { + struct net *net = nf_ct_net(ct); struct nf_conntrack_tuple curr_tuple, new_tuple; struct nf_conn_nat *nat; @@ -446,13 +429,17 @@ } if (maniptype == NF_NAT_MANIP_SRC) { - int err; + unsigned int srchash; - err = rhashtable_insert_fast(&nf_nat_bysource_table, - &ct->nat_bysource, - nf_nat_bysource_params); - if (err) - return NF_DROP; + srchash = hash_by_src(net, + &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple); + spin_lock_bh(&nf_nat_lock); + /* nf_conntrack_alter_reply might re-allocate extension aera */ + nat = nfct_nat(ct); + nat->ct = ct; + hlist_add_head_rcu(&nat->bysource, + &nf_nat_bysource[srchash]); + spin_unlock_bh(&nf_nat_lock); } /* It's done. */ @@ -557,7 +544,7 @@ if (nf_nat_proto_remove(ct, data)) return 1; - if (!nat) + if (!nat || !nat->ct) return 0; /* This netns is being destroyed, and conntrack has nat null binding. @@ -569,10 +556,11 @@ if (!del_timer(&ct->timeout)) return 1; + spin_lock_bh(&nf_nat_lock); + hlist_del_rcu(&nat->bysource); ct->status &= ~IPS_NAT_DONE_MASK; - - rhashtable_remove_fast(&nf_nat_bysource_table, &ct->nat_bysource, - nf_nat_bysource_params); + nat->ct = NULL; + spin_unlock_bh(&nf_nat_lock); add_timer(&ct->timeout); @@ -701,17 +689,35 @@ { struct nf_conn_nat *nat = nf_ct_ext_find(ct, NF_CT_EXT_NAT); - if (!nat) + if (nat == NULL || nat->ct == NULL) return; - rhashtable_remove_fast(&nf_nat_bysource_table, &ct->nat_bysource, - nf_nat_bysource_params); + NF_CT_ASSERT(nat->ct->status & IPS_SRC_NAT_DONE); + + spin_lock_bh(&nf_nat_lock); + hlist_del_rcu(&nat->bysource); + spin_unlock_bh(&nf_nat_lock); +} + +static void nf_nat_move_storage(void *new, void *old) +{ + struct nf_conn_nat *new_nat = new; + struct nf_conn_nat *old_nat = old; + struct nf_conn *ct = old_nat->ct; + + if (!ct || !(ct->status & IPS_SRC_NAT_DONE)) + return; + + spin_lock_bh(&nf_nat_lock); + hlist_replace_rcu(&old_nat->bysource, &new_nat->bysource); + spin_unlock_bh(&nf_nat_lock); } static struct nf_ct_ext_type nat_extend __read_mostly = { .len = sizeof(struct nf_conn_nat), .align = __alignof__(struct nf_conn_nat), .destroy = nf_nat_cleanup_conntrack, + .move = nf_nat_move_storage, .id = NF_CT_EXT_NAT, .flags = NF_CT_EXT_F_PREALLOC, }; @@ -840,13 +846,16 @@ { int ret; - ret = rhashtable_init(&nf_nat_bysource_table, &nf_nat_bysource_params); - if (ret) - return ret; + /* Leave them the same for the moment. */ + nf_nat_htable_size = nf_conntrack_htable_size; + + nf_nat_bysource = nf_ct_alloc_hashtable(&nf_nat_htable_size, 0); + if (!nf_nat_bysource) + return -ENOMEM; ret = nf_ct_extend_register(&nat_extend); if (ret < 0) { - rhashtable_destroy(&nf_nat_bysource_table); + nf_ct_free_hashtable(nf_nat_bysource, nf_nat_htable_size); printk(KERN_ERR "nf_nat_core: Unable to register extension\n"); return ret; } @@ -870,7 +879,7 @@ return 0; cleanup_extend: - rhashtable_destroy(&nf_nat_bysource_table); + nf_ct_free_hashtable(nf_nat_bysource, nf_nat_htable_size); nf_ct_extend_unregister(&nat_extend); return ret; } @@ -888,8 +897,8 @@ #endif for (i = 0; i < NFPROTO_NUMPROTO; i++) kfree(nf_nat_l4protos[i]); - - rhashtable_destroy(&nf_nat_bysource_table); + synchronize_net(); + nf_ct_free_hashtable(nf_nat_bysource, nf_nat_htable_size); } MODULE_LICENSE("GPL"); --- linux-4.8.0.orig/net/netfilter/nft_dynset.c +++ linux-4.8.0/net/netfilter/nft_dynset.c @@ -143,7 +143,8 @@ if (tb[NFTA_DYNSET_TIMEOUT] != NULL) { if (!(set->flags & NFT_SET_TIMEOUT)) return -EINVAL; - timeout = be64_to_cpu(nla_get_be64(tb[NFTA_DYNSET_TIMEOUT])); + timeout = msecs_to_jiffies(be64_to_cpu(nla_get_be64( + tb[NFTA_DYNSET_TIMEOUT]))); } priv->sreg_key = nft_parse_register(tb[NFTA_DYNSET_SREG_KEY]); @@ -230,7 +231,8 @@ goto nla_put_failure; if (nla_put_string(skb, NFTA_DYNSET_SET_NAME, priv->set->name)) goto nla_put_failure; - if (nla_put_be64(skb, NFTA_DYNSET_TIMEOUT, cpu_to_be64(priv->timeout), + if (nla_put_be64(skb, NFTA_DYNSET_TIMEOUT, + cpu_to_be64(jiffies_to_msecs(priv->timeout)), NFTA_DYNSET_PAD)) goto nla_put_failure; if (priv->expr && nft_expr_dump(skb, NFTA_DYNSET_EXPR, priv->expr)) --- linux-4.8.0.orig/net/netfilter/x_tables.c +++ linux-4.8.0/net/netfilter/x_tables.c @@ -40,6 +40,7 @@ MODULE_DESCRIPTION("{ip,ip6,arp,eb}_tables backend module"); #define SMP_ALIGN(x) (((x) + SMP_CACHE_BYTES-1) & ~(SMP_CACHE_BYTES-1)) +#define XT_PCPU_BLOCK_SIZE 4096 struct compat_delta { unsigned int offset; /* offset in kernel */ @@ -1615,6 +1616,59 @@ } EXPORT_SYMBOL_GPL(xt_proto_fini); +/** + * xt_percpu_counter_alloc - allocate x_tables rule counter + * + * @state: pointer to xt_percpu allocation state + * @counter: pointer to counter struct inside the ip(6)/arpt_entry struct + * + * On SMP, the packet counter [ ip(6)t_entry->counters.pcnt ] will then + * contain the address of the real (percpu) counter. + * + * Rule evaluation needs to use xt_get_this_cpu_counter() helper + * to fetch the real percpu counter. + * + * To speed up allocation and improve data locality, a 4kb block is + * allocated. + * + * xt_percpu_counter_alloc_state contains the base address of the + * allocated page and the current sub-offset. + * + * returns false on error. + */ +bool xt_percpu_counter_alloc(struct xt_percpu_counter_alloc_state *state, + struct xt_counters *counter) +{ + BUILD_BUG_ON(XT_PCPU_BLOCK_SIZE < (sizeof(*counter) * 2)); + + if (nr_cpu_ids <= 1) + return true; + + if (!state->mem) { + state->mem = __alloc_percpu(XT_PCPU_BLOCK_SIZE, + XT_PCPU_BLOCK_SIZE); + if (!state->mem) + return false; + } + counter->pcnt = (__force unsigned long)(state->mem + state->off); + state->off += sizeof(*counter); + if (state->off > (XT_PCPU_BLOCK_SIZE - sizeof(*counter))) { + state->mem = NULL; + state->off = 0; + } + return true; +} +EXPORT_SYMBOL_GPL(xt_percpu_counter_alloc); + +void xt_percpu_counter_free(struct xt_counters *counters) +{ + unsigned long pcnt = counters->pcnt; + + if (nr_cpu_ids > 1 && (pcnt & (XT_PCPU_BLOCK_SIZE - 1)) == 0) + free_percpu((void __percpu *)pcnt); +} +EXPORT_SYMBOL_GPL(xt_percpu_counter_free); + static int __net_init xt_net_init(struct net *net) { int i; --- linux-4.8.0.orig/net/netfilter/xt_NFLOG.c +++ linux-4.8.0/net/netfilter/xt_NFLOG.c @@ -32,6 +32,7 @@ li.u.ulog.copy_len = info->len; li.u.ulog.group = info->group; li.u.ulog.qthreshold = info->threshold; + li.u.ulog.flags = 0; if (info->flags & XT_NFLOG_F_COPY_LEN) li.u.ulog.flags |= NF_LOG_F_COPY_LEN; --- linux-4.8.0.orig/net/netlink/af_netlink.c +++ linux-4.8.0/net/netlink/af_netlink.c @@ -329,7 +329,6 @@ if (nlk->cb_running) { if (nlk->cb.done) nlk->cb.done(&nlk->cb); - module_put(nlk->cb.module); kfree_skb(nlk->cb.skb); } @@ -346,6 +345,14 @@ WARN_ON(nlk_sk(sk)->groups); } +static void netlink_sock_destruct_work(struct work_struct *work) +{ + struct netlink_sock *nlk = container_of(work, struct netlink_sock, + work); + + sk_free(&nlk->sk); +} + /* This lock without WQ_FLAG_EXCLUSIVE is good on UP and it is _very_ bad on * SMP. Look, when several writers sleep and reader wakes them up, all but one * immediately hit write lock and grab all the cpus. Exclusive sleep solves @@ -648,8 +655,18 @@ static void deferred_put_nlk_sk(struct rcu_head *head) { struct netlink_sock *nlk = container_of(head, struct netlink_sock, rcu); + struct sock *sk = &nlk->sk; + + if (!atomic_dec_and_test(&sk->sk_refcnt)) + return; + + if (nlk->cb_running && nlk->cb.done) { + INIT_WORK(&nlk->work, netlink_sock_destruct_work); + schedule_work(&nlk->work); + return; + } - sock_put(&nlk->sk); + sk_free(sk); } static int netlink_release(struct socket *sock) @@ -1832,7 +1849,7 @@ /* Record the max length of recvmsg() calls for future allocations */ nlk->max_recvmsg_len = max(nlk->max_recvmsg_len, len); nlk->max_recvmsg_len = min_t(size_t, nlk->max_recvmsg_len, - 16384); + SKB_WITH_OVERHEAD(32768)); copied = data_skb->len; if (len < copied) { @@ -2083,8 +2100,9 @@ if (alloc_min_size < nlk->max_recvmsg_len) { alloc_size = nlk->max_recvmsg_len; - skb = alloc_skb(alloc_size, GFP_KERNEL | - __GFP_NOWARN | __GFP_NORETRY); + skb = alloc_skb(alloc_size, + (GFP_KERNEL & ~__GFP_DIRECT_RECLAIM) | + __GFP_NOWARN | __GFP_NORETRY); } if (!skb) { alloc_size = alloc_min_size; --- linux-4.8.0.orig/net/netlink/af_netlink.h +++ linux-4.8.0/net/netlink/af_netlink.h @@ -3,6 +3,7 @@ #include #include +#include #include #define NLGRPSZ(x) (ALIGN(x, sizeof(unsigned long) * 8) / 8) @@ -33,6 +34,7 @@ struct rhash_head node; struct rcu_head rcu; + struct work_struct work; }; static inline struct netlink_sock *nlk_sk(struct sock *sk) --- linux-4.8.0.orig/net/openvswitch/flow_netlink.c +++ linux-4.8.0/net/openvswitch/flow_netlink.c @@ -649,6 +649,8 @@ tun_flags |= TUNNEL_VXLAN_OPT; opts_type = type; break; + case OVS_TUNNEL_KEY_ATTR_PAD: + break; default: OVS_NLERR(log, "Unknown IP tunnel attribute %d", type); --- linux-4.8.0.orig/net/packet/af_packet.c +++ linux-4.8.0/net/packet/af_packet.c @@ -250,7 +250,7 @@ static int packet_direct_xmit(struct sk_buff *skb) { struct net_device *dev = skb->dev; - netdev_features_t features; + struct sk_buff *orig_skb = skb; struct netdev_queue *txq; int ret = NETDEV_TX_BUSY; @@ -258,9 +258,8 @@ !netif_carrier_ok(dev))) goto drop; - features = netif_skb_features(skb); - if (skb_needs_linearize(skb, features) && - __skb_linearize(skb)) + skb = validate_xmit_skb_list(skb, dev); + if (skb != orig_skb) goto drop; txq = skb_get_tx_queue(dev, skb); @@ -280,7 +279,7 @@ return ret; drop: atomic_long_inc(&dev->tx_dropped); - kfree_skb(skb); + kfree_skb_list(skb); return NET_XMIT_DROP; } @@ -1973,7 +1972,7 @@ { *vnet_hdr = (const struct virtio_net_hdr) { 0 }; - if (virtio_net_hdr_from_skb(skb, vnet_hdr, vio_le())) + if (virtio_net_hdr_from_skb(skb, vnet_hdr, vio_le(), true)) BUG(); return 0; @@ -3649,19 +3648,25 @@ if (optlen != sizeof(val)) return -EINVAL; - if (po->rx_ring.pg_vec || po->tx_ring.pg_vec) - return -EBUSY; if (copy_from_user(&val, optval, sizeof(val))) return -EFAULT; switch (val) { case TPACKET_V1: case TPACKET_V2: case TPACKET_V3: - po->tp_version = val; - return 0; + break; default: return -EINVAL; } + lock_sock(sk); + if (po->rx_ring.pg_vec || po->tx_ring.pg_vec) { + ret = -EBUSY; + } else { + po->tp_version = val; + ret = 0; + } + release_sock(sk); + return ret; } case PACKET_RESERVE: { @@ -3673,6 +3678,8 @@ return -EBUSY; if (copy_from_user(&val, optval, sizeof(val))) return -EFAULT; + if (val > INT_MAX) + return -EINVAL; po->tp_reserve = val; return 0; } @@ -3952,6 +3959,7 @@ } if (msg == NETDEV_UNREGISTER) { packet_cached_dev_reset(po); + fanout_release(sk); po->ifindex = -1; if (po->prot_hook.dev) dev_put(po->prot_hook.dev); @@ -4164,6 +4172,7 @@ /* Added to avoid minimal code churn */ struct tpacket_req *req = &req_u->req; + lock_sock(sk); /* Opening a Tx-ring is NOT supported in TPACKET_V3 */ if (!closing && tx_ring && (po->tp_version > TPACKET_V2)) { net_warn_ratelimited("Tx-ring is not supported.\n"); @@ -4205,8 +4214,8 @@ if (unlikely(!PAGE_ALIGNED(req->tp_block_size))) goto out; if (po->tp_version >= TPACKET_V3 && - (int)(req->tp_block_size - - BLK_PLUS_PRIV(req_u->req3.tp_sizeof_priv)) <= 0) + req->tp_block_size <= + BLK_PLUS_PRIV((u64)req_u->req3.tp_sizeof_priv)) goto out; if (unlikely(req->tp_frame_size < po->tp_hdrlen + po->tp_reserve)) @@ -4217,6 +4226,8 @@ rb->frames_per_block = req->tp_block_size / req->tp_frame_size; if (unlikely(rb->frames_per_block == 0)) goto out; + if (unlikely(req->tp_block_size > UINT_MAX / req->tp_block_nr)) + goto out; if (unlikely((rb->frames_per_block * req->tp_block_nr) != req->tp_frame_nr)) goto out; @@ -4245,7 +4256,6 @@ goto out; } - lock_sock(sk); /* Detach socket from network */ spin_lock(&po->bind_lock); @@ -4294,11 +4304,11 @@ if (!tx_ring) prb_shutdown_retire_blk_timer(po, rb_queue); } - release_sock(sk); if (pg_vec) free_pg_vec(pg_vec, order, req->tp_block_nr); out: + release_sock(sk); return err; } --- linux-4.8.0.orig/net/rds/ib_send.c +++ linux-4.8.0/net/rds/ib_send.c @@ -501,7 +501,7 @@ int flow_controlled = 0; int nr_sig = 0; - BUG_ON(off % RDS_FRAG_SIZE); + BUG_ON(!conn->c_loopback && off % RDS_FRAG_SIZE); BUG_ON(hdr_off != 0 && hdr_off != sizeof(struct rds_header)); /* Do not send cong updates to IB loopback */ --- linux-4.8.0.orig/net/sched/act_api.c +++ linux-4.8.0/net/sched/act_api.c @@ -341,22 +341,25 @@ if (!act->act || !act->dump || !act->init || !act->walk || !act->lookup) return -EINVAL; + /* We have to register pernet ops before making the action ops visible, + * otherwise tcf_action_init_1() could get a partially initialized + * netns. + */ + ret = register_pernet_subsys(ops); + if (ret) + return ret; + write_lock(&act_mod_lock); list_for_each_entry(a, &act_base, head) { if (act->type == a->type || (strcmp(act->kind, a->kind) == 0)) { write_unlock(&act_mod_lock); + unregister_pernet_subsys(ops); return -EEXIST; } } list_add_tail(&act->head, &act_base); write_unlock(&act_mod_lock); - ret = register_pernet_subsys(ops); - if (ret) { - tcf_unregister_action(act, ops); - return ret; - } - return 0; } EXPORT_SYMBOL(tcf_register_action); @@ -367,8 +370,6 @@ struct tc_action_ops *a; int err = -ENOENT; - unregister_pernet_subsys(ops); - write_lock(&act_mod_lock); list_for_each_entry(a, &act_base, head) { if (a == act) { @@ -378,6 +379,8 @@ } } write_unlock(&act_mod_lock); + if (!err) + unregister_pernet_subsys(ops); return err; } EXPORT_SYMBOL(tcf_unregister_action); --- linux-4.8.0.orig/net/sched/act_pedit.c +++ linux-4.8.0/net/sched/act_pedit.c @@ -108,6 +108,17 @@ kfree(keys); } +static bool offset_valid(struct sk_buff *skb, int offset) +{ + if (offset > 0 && offset > skb->len) + return false; + + if (offset < 0 && -offset > skb_headroom(skb)) + return false; + + return true; +} + static int tcf_pedit(struct sk_buff *skb, const struct tc_action *a, struct tcf_result *res) { @@ -134,6 +145,11 @@ if (tkey->offmask) { char *d, _d; + if (!offset_valid(skb, off + tkey->at)) { + pr_info("tc filter pedit 'at' offset %d out of bounds\n", + off + tkey->at); + goto bad; + } d = skb_header_pointer(skb, off + tkey->at, 1, &_d); if (!d) @@ -146,10 +162,10 @@ " offset must be on 32 bit boundaries\n"); goto bad; } - if (offset > 0 && offset > skb->len) { - pr_info("tc filter pedit" - " offset %d can't exceed pkt length %d\n", - offset, skb->len); + + if (!offset_valid(skb, off + offset)) { + pr_info("tc filter pedit offset %d out of bounds\n", + offset); goto bad; } --- linux-4.8.0.orig/net/sched/act_vlan.c +++ linux-4.8.0/net/sched/act_vlan.c @@ -36,6 +36,12 @@ bstats_update(&v->tcf_bstats, skb); action = v->tcf_action; + /* Ensure 'data' points at mac_header prior calling vlan manipulating + * functions. + */ + if (skb_at_tc_ingress(skb)) + skb_push_rcsum(skb, skb->mac_len); + switch (v->tcfv_action) { case TCA_VLAN_ACT_POP: err = skb_vlan_pop(skb); @@ -57,6 +63,9 @@ action = TC_ACT_SHOT; v->tcf_qstats.drops++; unlock: + if (skb_at_tc_ingress(skb)) + skb_pull_rcsum(skb, skb->mac_len); + spin_unlock(&v->tcf_lock); return action; } --- linux-4.8.0.orig/net/sched/cls_api.c +++ linux-4.8.0/net/sched/cls_api.c @@ -344,7 +344,8 @@ if (err == 0) { struct tcf_proto *next = rtnl_dereference(tp->next); - tfilter_notify(net, skb, n, tp, fh, RTM_DELTFILTER); + tfilter_notify(net, skb, n, tp, + t->tcm_handle, RTM_DELTFILTER); if (tcf_destroy(tp, false)) RCU_INIT_POINTER(*back, next); } --- linux-4.8.0.orig/net/sched/cls_basic.c +++ linux-4.8.0/net/sched/cls_basic.c @@ -62,9 +62,6 @@ struct basic_head *head = rtnl_dereference(tp->root); struct basic_filter *f; - if (head == NULL) - return 0UL; - list_for_each_entry(f, &head->flist, link) { if (f->handle == handle) { l = (unsigned long) f; @@ -109,7 +106,6 @@ tcf_unbind_filter(tp, &f->res); call_rcu(&f->rcu, basic_delete_filter); } - RCU_INIT_POINTER(tp->root, NULL); kfree_rcu(head, rcu); return true; } --- linux-4.8.0.orig/net/sched/cls_bpf.c +++ linux-4.8.0/net/sched/cls_bpf.c @@ -200,7 +200,6 @@ call_rcu(&prog->rcu, __cls_bpf_delete_prog); } - RCU_INIT_POINTER(tp->root, NULL); kfree_rcu(head, rcu); return true; } @@ -211,9 +210,6 @@ struct cls_bpf_prog *prog; unsigned long ret = 0UL; - if (head == NULL) - return 0UL; - list_for_each_entry(prog, &head->plist, link) { if (prog->handle == handle) { ret = (unsigned long) prog; --- linux-4.8.0.orig/net/sched/cls_cgroup.c +++ linux-4.8.0/net/sched/cls_cgroup.c @@ -130,11 +130,10 @@ if (!force) return false; - - if (head) { - RCU_INIT_POINTER(tp->root, NULL); + /* Head can still be NULL due to cls_cgroup_init(). */ + if (head) call_rcu(&head->rcu, cls_cgroup_destroy_rcu); - } + return true; } --- linux-4.8.0.orig/net/sched/cls_flow.c +++ linux-4.8.0/net/sched/cls_flow.c @@ -583,7 +583,6 @@ list_del_rcu(&f->list); call_rcu(&f->rcu, flow_destroy_filter); } - RCU_INIT_POINTER(tp->root, NULL); kfree_rcu(head, rcu); return true; } --- linux-4.8.0.orig/net/sched/cls_flower.c +++ linux-4.8.0/net/sched/cls_flower.c @@ -13,6 +13,7 @@ #include #include #include +#include #include #include @@ -55,7 +56,10 @@ bool mask_assigned; struct list_head filters; struct rhashtable_params ht_params; - struct rcu_head rcu; + union { + struct work_struct work; + struct rcu_head rcu; + }; }; struct cls_fl_filter { @@ -239,6 +243,24 @@ dev->netdev_ops->ndo_setup_tc(dev, tp->q->handle, tp->protocol, &tc); } +static void fl_destroy_sleepable(struct work_struct *work) +{ + struct cls_fl_head *head = container_of(work, struct cls_fl_head, + work); + if (head->mask_assigned) + rhashtable_destroy(&head->ht); + kfree(head); + module_put(THIS_MODULE); +} + +static void fl_destroy_rcu(struct rcu_head *rcu) +{ + struct cls_fl_head *head = container_of(rcu, struct cls_fl_head, rcu); + + INIT_WORK(&head->work, fl_destroy_sleepable); + schedule_work(&head->work); +} + static bool fl_destroy(struct tcf_proto *tp, bool force) { struct cls_fl_head *head = rtnl_dereference(tp->root); @@ -252,10 +274,9 @@ list_del_rcu(&f->list); call_rcu(&f->rcu, fl_destroy_filter); } - RCU_INIT_POINTER(tp->root, NULL); - if (head->mask_assigned) - rhashtable_destroy(&head->ht); - kfree_rcu(head, rcu); + + __module_get(THIS_MODULE); + call_rcu(&head->rcu, fl_destroy_rcu); return true; } --- linux-4.8.0.orig/net/sched/cls_matchall.c +++ linux-4.8.0/net/sched/cls_matchall.c @@ -114,7 +114,6 @@ call_rcu(&f->rcu, mall_destroy_filter); } - RCU_INIT_POINTER(tp->root, NULL); kfree_rcu(head, rcu); return true; } --- linux-4.8.0.orig/net/sched/cls_rsvp.h +++ linux-4.8.0/net/sched/cls_rsvp.h @@ -152,7 +152,8 @@ return -1; nhptr = ip_hdr(skb); #endif - + if (unlikely(!head)) + return -1; restart: #if RSVP_DST_LEN == 4 --- linux-4.8.0.orig/net/sched/cls_tcindex.c +++ linux-4.8.0/net/sched/cls_tcindex.c @@ -503,7 +503,6 @@ walker.fn = tcindex_destroy_element; tcindex_walk(tp, &walker); - RCU_INIT_POINTER(tp->root, NULL); call_rcu(&p->rcu, __tcindex_destroy); return true; } --- linux-4.8.0.orig/net/sctp/ipv6.c +++ linux-4.8.0/net/sctp/ipv6.c @@ -665,6 +665,9 @@ newnp = inet6_sk(newsk); memcpy(newnp, np, sizeof(struct ipv6_pinfo)); + newnp->ipv6_mc_list = NULL; + newnp->ipv6_ac_list = NULL; + newnp->ipv6_fl_list = NULL; rcu_read_lock(); opt = rcu_dereference(np->opt); --- linux-4.8.0.orig/net/sctp/output.c +++ linux-4.8.0/net/sctp/output.c @@ -417,6 +417,7 @@ __u8 has_data = 0; int gso = 0; int pktcount = 0; + int auth_len = 0; struct dst_entry *dst; unsigned char *auth = NULL; /* pointer to auth in skb data */ @@ -505,7 +506,12 @@ list_for_each_entry(chunk, &packet->chunk_list, list) { int padded = WORD_ROUND(chunk->skb->len); - if (pkt_size + padded > tp->pathmtu) + if (chunk == packet->auth) + auth_len = padded; + else if (auth_len + padded + packet->overhead > + tp->pathmtu) + goto nomem; + else if (pkt_size + padded > tp->pathmtu) break; pkt_size += padded; } --- linux-4.8.0.orig/net/sctp/sm_statefuns.c +++ linux-4.8.0/net/sctp/sm_statefuns.c @@ -3422,6 +3422,12 @@ return sctp_sf_violation_chunklen(net, ep, asoc, type, arg, commands); + /* Report violation if chunk len overflows */ + ch_end = ((__u8 *)ch) + WORD_ROUND(ntohs(ch->length)); + if (ch_end > skb_tail_pointer(skb)) + return sctp_sf_violation_chunklen(net, ep, asoc, type, arg, + commands); + /* Now that we know we at least have a chunk header, * do things that are type appropriate. */ @@ -3453,12 +3459,6 @@ } } - /* Report violation if chunk len overflows */ - ch_end = ((__u8 *)ch) + WORD_ROUND(ntohs(ch->length)); - if (ch_end > skb_tail_pointer(skb)) - return sctp_sf_violation_chunklen(net, ep, asoc, type, arg, - commands); - ch = (sctp_chunkhdr_t *) ch_end; } while (ch_end < skb_tail_pointer(skb)); --- linux-4.8.0.orig/net/sctp/socket.c +++ linux-4.8.0/net/sctp/socket.c @@ -1214,9 +1214,12 @@ timeo = sock_sndtimeo(sk, f_flags & O_NONBLOCK); - err = sctp_wait_for_connect(asoc, &timeo); - if ((err == 0 || err == -EINPROGRESS) && assoc_id) + if (assoc_id) *assoc_id = asoc->assoc_id; + err = sctp_wait_for_connect(asoc, &timeo); + /* Note: the asoc may be freed after the return of + * sctp_wait_for_connect. + */ /* Don't free association on exit. */ asoc = NULL; @@ -4278,19 +4281,18 @@ { struct net *net = sock_net(sk); struct sctp_endpoint *ep; - struct sctp_association *asoc; if (!sctp_style(sk, TCP)) return; - if (how & SEND_SHUTDOWN) { + ep = sctp_sk(sk)->ep; + if (how & SEND_SHUTDOWN && !list_empty(&ep->asocs)) { + struct sctp_association *asoc; + sk->sk_state = SCTP_SS_CLOSING; - ep = sctp_sk(sk)->ep; - if (!list_empty(&ep->asocs)) { - asoc = list_entry(ep->asocs.next, - struct sctp_association, asocs); - sctp_primitive_SHUTDOWN(net, asoc, NULL); - } + asoc = list_entry(ep->asocs.next, + struct sctp_association, asocs); + sctp_primitive_SHUTDOWN(net, asoc, NULL); } } @@ -4683,7 +4685,7 @@ static int sctp_getsockopt_events(struct sock *sk, int len, char __user *optval, int __user *optlen) { - if (len <= 0) + if (len == 0) return -EINVAL; if (len > sizeof(struct sctp_event_subscribe)) len = sizeof(struct sctp_event_subscribe); @@ -4731,6 +4733,12 @@ if (!asoc) return -EINVAL; + /* If there is a thread waiting on more sndbuf space for + * sending on this asoc, it cannot be peeled. + */ + if (waitqueue_active(&asoc->wait)) + return -EBUSY; + /* An association cannot be branched off from an already peeled-off * socket, nor is this supported for tcp style sockets. */ @@ -6426,6 +6434,9 @@ if (get_user(len, optlen)) return -EFAULT; + if (len < 0) + return -EINVAL; + lock_sock(sk); switch (optname) { @@ -7420,7 +7431,6 @@ */ release_sock(sk); current_timeo = schedule_timeout(current_timeo); - BUG_ON(sk != asoc->base.sk); lock_sock(sk); *timeo_p = current_timeo; --- linux-4.8.0.orig/net/socket.c +++ linux-4.8.0/net/socket.c @@ -2041,6 +2041,8 @@ if (err) break; ++datagrams; + if (msg_data_left(&msg_sys)) + break; cond_resched(); } --- linux-4.8.0.orig/net/sunrpc/auth_gss/auth_gss.c +++ linux-4.8.0/net/sunrpc/auth_gss/auth_gss.c @@ -541,9 +541,13 @@ return gss_new; gss_msg = gss_add_msg(gss_new); if (gss_msg == gss_new) { - int res = rpc_queue_upcall(gss_new->pipe, &gss_new->msg); + int res; + atomic_inc(&gss_msg->count); + res = rpc_queue_upcall(gss_new->pipe, &gss_new->msg); if (res) { gss_unhash_msg(gss_new); + atomic_dec(&gss_msg->count); + gss_release_msg(gss_new); gss_msg = ERR_PTR(res); } } else @@ -836,6 +840,7 @@ warn_gssd(); gss_release_msg(gss_msg); } + gss_release_msg(gss_msg); } static void gss_pipe_dentry_destroy(struct dentry *dir, --- linux-4.8.0.orig/net/sunrpc/svc_xprt.c +++ linux-4.8.0/net/sunrpc/svc_xprt.c @@ -1002,14 +1002,8 @@ void svc_age_temp_xprts_now(struct svc_serv *serv, struct sockaddr *server_addr) { struct svc_xprt *xprt; - struct svc_sock *svsk; - struct socket *sock; struct list_head *le, *next; LIST_HEAD(to_be_closed); - struct linger no_linger = { - .l_onoff = 1, - .l_linger = 0, - }; spin_lock_bh(&serv->sv_lock); list_for_each_safe(le, next, &serv->sv_tempsocks) { @@ -1027,10 +1021,7 @@ list_del_init(le); xprt = list_entry(le, struct svc_xprt, xpt_list); dprintk("svc_age_temp_xprts_now: closing %p\n", xprt); - svsk = container_of(xprt, struct svc_sock, sk_xprt); - sock = svsk->sk_sock; - kernel_setsockopt(sock, SOL_SOCKET, SO_LINGER, - (char *)&no_linger, sizeof(no_linger)); + xprt->xpt_ops->xpo_kill_temp_xprt(xprt); svc_close_xprt(xprt); } } --- linux-4.8.0.orig/net/sunrpc/svcsock.c +++ linux-4.8.0/net/sunrpc/svcsock.c @@ -438,6 +438,21 @@ return !test_bit(SOCK_NOSPACE, &svsk->sk_sock->flags); } +static void svc_tcp_kill_temp_xprt(struct svc_xprt *xprt) +{ + struct svc_sock *svsk; + struct socket *sock; + struct linger no_linger = { + .l_onoff = 1, + .l_linger = 0, + }; + + svsk = container_of(xprt, struct svc_sock, sk_xprt); + sock = svsk->sk_sock; + kernel_setsockopt(sock, SOL_SOCKET, SO_LINGER, + (char *)&no_linger, sizeof(no_linger)); +} + /* * See net/ipv6/ip_sockglue.c : ip_cmsg_recv_pktinfo */ @@ -648,6 +663,10 @@ return NULL; } +static void svc_udp_kill_temp_xprt(struct svc_xprt *xprt) +{ +} + static struct svc_xprt *svc_udp_create(struct svc_serv *serv, struct net *net, struct sockaddr *sa, int salen, @@ -667,6 +686,7 @@ .xpo_has_wspace = svc_udp_has_wspace, .xpo_accept = svc_udp_accept, .xpo_secure_port = svc_sock_secure_port, + .xpo_kill_temp_xprt = svc_udp_kill_temp_xprt, }; static struct svc_xprt_class svc_udp_class = { @@ -1242,6 +1262,7 @@ .xpo_has_wspace = svc_tcp_has_wspace, .xpo_accept = svc_tcp_accept, .xpo_secure_port = svc_sock_secure_port, + .xpo_kill_temp_xprt = svc_tcp_kill_temp_xprt, }; static struct svc_xprt_class svc_tcp_class = { --- linux-4.8.0.orig/net/sunrpc/xprtrdma/frwr_ops.c +++ linux-4.8.0/net/sunrpc/xprtrdma/frwr_ops.c @@ -44,18 +44,20 @@ * being done. * * When the underlying transport disconnects, MRs are left in one of - * three states: + * four states: * * INVALID: The MR was not in use before the QP entered ERROR state. - * (Or, the LOCAL_INV WR has not completed or flushed yet). - * - * STALE: The MR was being registered or unregistered when the QP - * entered ERROR state, and the pending WR was flushed. * * VALID: The MR was registered before the QP entered ERROR state. * - * When frwr_op_map encounters STALE and VALID MRs, they are recovered - * with ib_dereg_mr and then are re-initialized. Beause MR recovery + * FLUSHED_FR: The MR was being registered when the QP entered ERROR + * state, and the pending WR was flushed. + * + * FLUSHED_LI: The MR was being invalidated when the QP entered ERROR + * state, and the pending WR was flushed. + * + * When frwr_op_map encounters FLUSHED and VALID MRs, they are recovered + * with ib_dereg_mr and then are re-initialized. Because MR recovery * allocates fresh resources, it is deferred to a workqueue, and the * recovered MRs are placed back on the rb_mws list when recovery is * complete. frwr_op_map allocates another MR for the current RPC while @@ -175,12 +177,15 @@ static void frwr_op_recover_mr(struct rpcrdma_mw *mw) { + enum rpcrdma_frmr_state state = mw->frmr.fr_state; struct rpcrdma_xprt *r_xprt = mw->mw_xprt; struct rpcrdma_ia *ia = &r_xprt->rx_ia; int rc; rc = __frwr_reset_mr(ia, mw); - ib_dma_unmap_sg(ia->ri_device, mw->mw_sg, mw->mw_nents, mw->mw_dir); + if (state != FRMR_FLUSHED_LI) + ib_dma_unmap_sg(ia->ri_device, + mw->mw_sg, mw->mw_nents, mw->mw_dir); if (rc) goto out_release; @@ -261,10 +266,8 @@ } static void -__frwr_sendcompletion_flush(struct ib_wc *wc, struct rpcrdma_frmr *frmr, - const char *wr) +__frwr_sendcompletion_flush(struct ib_wc *wc, const char *wr) { - frmr->fr_state = FRMR_IS_STALE; if (wc->status != IB_WC_WR_FLUSH_ERR) pr_err("rpcrdma: %s: %s (%u/0x%x)\n", wr, ib_wc_status_msg(wc->status), @@ -287,7 +290,8 @@ if (wc->status != IB_WC_SUCCESS) { cqe = wc->wr_cqe; frmr = container_of(cqe, struct rpcrdma_frmr, fr_cqe); - __frwr_sendcompletion_flush(wc, frmr, "fastreg"); + frmr->fr_state = FRMR_FLUSHED_FR; + __frwr_sendcompletion_flush(wc, "fastreg"); } } @@ -307,7 +311,8 @@ if (wc->status != IB_WC_SUCCESS) { cqe = wc->wr_cqe; frmr = container_of(cqe, struct rpcrdma_frmr, fr_cqe); - __frwr_sendcompletion_flush(wc, frmr, "localinv"); + frmr->fr_state = FRMR_FLUSHED_LI; + __frwr_sendcompletion_flush(wc, "localinv"); } } @@ -327,9 +332,11 @@ /* WARNING: Only wr_cqe and status are reliable at this point */ cqe = wc->wr_cqe; frmr = container_of(cqe, struct rpcrdma_frmr, fr_cqe); - if (wc->status != IB_WC_SUCCESS) - __frwr_sendcompletion_flush(wc, frmr, "localinv"); - complete_all(&frmr->fr_linv_done); + if (wc->status != IB_WC_SUCCESS) { + frmr->fr_state = FRMR_FLUSHED_LI; + __frwr_sendcompletion_flush(wc, "localinv"); + } + complete(&frmr->fr_linv_done); } /* Post a REG_MR Work Request to register a memory region --- linux-4.8.0.orig/net/sunrpc/xprtrdma/svc_rdma_backchannel.c +++ linux-4.8.0/net/sunrpc/xprtrdma/svc_rdma_backchannel.c @@ -129,7 +129,7 @@ ret = -EIO; goto out_unmap; } - atomic_inc(&rdma->sc_dma_used); + svc_rdma_count_mappings(rdma, ctxt); memset(&send_wr, 0, sizeof(send_wr)); ctxt->cqe.done = svc_rdma_wc_send; --- linux-4.8.0.orig/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c +++ linux-4.8.0/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c @@ -159,7 +159,7 @@ ctxt->sge[pno].addr); if (ret) goto err; - atomic_inc(&xprt->sc_dma_used); + svc_rdma_count_mappings(xprt, ctxt); ctxt->sge[pno].lkey = xprt->sc_pd->local_dma_lkey; ctxt->sge[pno].length = len; --- linux-4.8.0.orig/net/sunrpc/xprtrdma/svc_rdma_sendto.c +++ linux-4.8.0/net/sunrpc/xprtrdma/svc_rdma_sendto.c @@ -280,7 +280,7 @@ if (ib_dma_mapping_error(xprt->sc_cm_id->device, sge[sge_no].addr)) goto err; - atomic_inc(&xprt->sc_dma_used); + svc_rdma_count_mappings(xprt, ctxt); sge[sge_no].lkey = xprt->sc_pd->local_dma_lkey; ctxt->count++; sge_off = 0; @@ -489,7 +489,7 @@ ctxt->sge[0].length, DMA_TO_DEVICE); if (ib_dma_mapping_error(rdma->sc_cm_id->device, ctxt->sge[0].addr)) goto err; - atomic_inc(&rdma->sc_dma_used); + svc_rdma_count_mappings(rdma, ctxt); ctxt->direction = DMA_TO_DEVICE; @@ -505,7 +505,7 @@ if (ib_dma_mapping_error(rdma->sc_cm_id->device, ctxt->sge[sge_no].addr)) goto err; - atomic_inc(&rdma->sc_dma_used); + svc_rdma_count_mappings(rdma, ctxt); ctxt->sge[sge_no].lkey = rdma->sc_pd->local_dma_lkey; ctxt->sge[sge_no].length = sge_bytes; } @@ -523,23 +523,9 @@ ctxt->pages[page_no+1] = rqstp->rq_respages[page_no]; ctxt->count++; rqstp->rq_respages[page_no] = NULL; - /* - * If there are more pages than SGE, terminate SGE - * list so that svc_rdma_unmap_dma doesn't attempt to - * unmap garbage. - */ - if (page_no+1 >= sge_no) - ctxt->sge[page_no+1].length = 0; } rqstp->rq_next_page = rqstp->rq_respages + 1; - /* The loop above bumps sc_dma_used for each sge. The - * xdr_buf.tail gets a separate sge, but resides in the - * same page as xdr_buf.head. Don't count it twice. - */ - if (sge_no > ctxt->count) - atomic_dec(&rdma->sc_dma_used); - if (sge_no > rdma->sc_max_sge) { pr_err("svcrdma: Too many sges (%d)\n", sge_no); goto err; @@ -635,7 +621,7 @@ ret = send_reply(rdma, rqstp, res_page, rdma_resp, vec, inline_bytes); if (ret < 0) - goto err1; + goto err0; svc_rdma_put_req_map(rdma, vec); dprintk("svcrdma: send_reply returns %d\n", ret); @@ -692,7 +678,7 @@ svc_rdma_put_context(ctxt, 1); return; } - atomic_inc(&xprt->sc_dma_used); + svc_rdma_count_mappings(xprt, ctxt); /* Prepare SEND WR */ memset(&err_wr, 0, sizeof(err_wr)); --- linux-4.8.0.orig/net/sunrpc/xprtrdma/svc_rdma_transport.c +++ linux-4.8.0/net/sunrpc/xprtrdma/svc_rdma_transport.c @@ -67,6 +67,7 @@ static void svc_rdma_free(struct svc_xprt *xprt); static int svc_rdma_has_wspace(struct svc_xprt *xprt); static int svc_rdma_secure_port(struct svc_rqst *); +static void svc_rdma_kill_temp_xprt(struct svc_xprt *); static struct svc_xprt_ops svc_rdma_ops = { .xpo_create = svc_rdma_create, @@ -79,6 +80,7 @@ .xpo_has_wspace = svc_rdma_has_wspace, .xpo_accept = svc_rdma_accept, .xpo_secure_port = svc_rdma_secure_port, + .xpo_kill_temp_xprt = svc_rdma_kill_temp_xprt, }; struct svc_xprt_class svc_rdma_class = { @@ -198,6 +200,7 @@ out: ctxt->count = 0; + ctxt->mapped_sges = 0; ctxt->frmr = NULL; return ctxt; @@ -221,22 +224,27 @@ void svc_rdma_unmap_dma(struct svc_rdma_op_ctxt *ctxt) { struct svcxprt_rdma *xprt = ctxt->xprt; - int i; - for (i = 0; i < ctxt->count && ctxt->sge[i].length; i++) { + struct ib_device *device = xprt->sc_cm_id->device; + u32 lkey = xprt->sc_pd->local_dma_lkey; + unsigned int i, count; + + for (count = 0, i = 0; i < ctxt->mapped_sges; i++) { /* * Unmap the DMA addr in the SGE if the lkey matches * the local_dma_lkey, otherwise, ignore it since it is * an FRMR lkey and will be unmapped later when the * last WR that uses it completes. */ - if (ctxt->sge[i].lkey == xprt->sc_pd->local_dma_lkey) { - atomic_dec(&xprt->sc_dma_used); - ib_dma_unmap_page(xprt->sc_cm_id->device, + if (ctxt->sge[i].lkey == lkey) { + count++; + ib_dma_unmap_page(device, ctxt->sge[i].addr, ctxt->sge[i].length, ctxt->direction); } } + ctxt->mapped_sges = 0; + atomic_sub(count, &xprt->sc_dma_used); } void svc_rdma_put_context(struct svc_rdma_op_ctxt *ctxt, int free_pages) @@ -600,7 +608,7 @@ DMA_FROM_DEVICE); if (ib_dma_mapping_error(xprt->sc_cm_id->device, pa)) goto err_put_ctxt; - atomic_inc(&xprt->sc_dma_used); + svc_rdma_count_mappings(xprt, ctxt); ctxt->sge[sge_no].addr = pa; ctxt->sge[sge_no].length = PAGE_SIZE; ctxt->sge[sge_no].lkey = xprt->sc_pd->local_dma_lkey; @@ -1279,6 +1287,10 @@ return 1; } +static void svc_rdma_kill_temp_xprt(struct svc_xprt *xprt) +{ +} + int svc_rdma_send(struct svcxprt_rdma *xprt, struct ib_send_wr *wr) { struct ib_send_wr *bad_wr, *n_wr; --- linux-4.8.0.orig/net/sunrpc/xprtrdma/xprt_rdma.h +++ linux-4.8.0/net/sunrpc/xprtrdma/xprt_rdma.h @@ -207,7 +207,8 @@ enum rpcrdma_frmr_state { FRMR_IS_INVALID, /* ready to be used */ FRMR_IS_VALID, /* in use */ - FRMR_IS_STALE, /* failed completion */ + FRMR_FLUSHED_FR, /* flushed FASTREG WR */ + FRMR_FLUSHED_LI, /* flushed LOCALINV WR */ }; struct rpcrdma_frmr { --- linux-4.8.0.orig/net/sunrpc/xprtsock.c +++ linux-4.8.0/net/sunrpc/xprtsock.c @@ -473,7 +473,16 @@ spin_unlock_bh(&xprt->transport_lock); /* Race breaker in case memory is freed before above code is called */ - sk->sk_write_space(sk); + if (ret == -EAGAIN) { + struct socket_wq *wq; + + rcu_read_lock(); + wq = rcu_dereference(sk->sk_wq); + set_bit(SOCKWQ_ASYNC_NOSPACE, &wq->flags); + rcu_read_unlock(); + + sk->sk_write_space(sk); + } return ret; } --- linux-4.8.0.orig/net/switchdev/switchdev.c +++ linux-4.8.0/net/switchdev/switchdev.c @@ -774,6 +774,9 @@ u32 mask = BR_LEARNING | BR_LEARNING_SYNC | BR_FLOOD; int err; + if (!netif_is_bridge_port(dev)) + return -EOPNOTSUPP; + err = switchdev_port_attr_get(dev, &attr); if (err && err != -EOPNOTSUPP) return err; @@ -929,6 +932,9 @@ struct nlattr *afspec; int err = 0; + if (!netif_is_bridge_port(dev)) + return -EOPNOTSUPP; + protinfo = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_PROTINFO); if (protinfo) { @@ -962,6 +968,9 @@ { struct nlattr *afspec; + if (!netif_is_bridge_port(dev)) + return -EOPNOTSUPP; + afspec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC); if (afspec) --- linux-4.8.0.orig/net/tipc/bearer.c +++ linux-4.8.0/net/tipc/bearer.c @@ -402,6 +402,10 @@ dev = dev_get_by_name(net, driver_name); if (!dev) return -ENODEV; + if (tipc_mtu_bad(dev, 0)) { + dev_put(dev); + return -EINVAL; + } /* Associate TIPC bearer with L2 bearer */ rcu_assign_pointer(b->media_ptr, dev); @@ -606,8 +610,6 @@ if (!b) return NOTIFY_DONE; - b->mtu = dev->mtu; - switch (evt) { case NETDEV_CHANGE: if (netif_carrier_ok(dev)) @@ -621,6 +623,11 @@ tipc_reset_bearer(net, b); break; case NETDEV_CHANGEMTU: + if (tipc_mtu_bad(dev, 0)) { + bearer_disable(net, b); + break; + } + b->mtu = dev->mtu; tipc_reset_bearer(net, b); break; case NETDEV_CHANGEADDR: --- linux-4.8.0.orig/net/tipc/bearer.h +++ linux-4.8.0/net/tipc/bearer.h @@ -39,6 +39,7 @@ #include "netlink.h" #include "core.h" +#include "msg.h" #include #define MAX_MEDIA 3 @@ -59,6 +60,9 @@ #define TIPC_MEDIA_TYPE_IB 2 #define TIPC_MEDIA_TYPE_UDP 3 +/* minimum bearer MTU */ +#define TIPC_MIN_BEARER_MTU (MAX_H_SIZE + INT_H_SIZE) + /** * struct tipc_media_addr - destination address used by TIPC bearers * @value: address info (format defined by media) @@ -213,4 +217,13 @@ void tipc_bearer_bc_xmit(struct net *net, u32 bearer_id, struct sk_buff_head *xmitq); +/* check if device MTU is too low for tipc headers */ +static inline bool tipc_mtu_bad(struct net_device *dev, unsigned int reserve) +{ + if (dev->mtu >= TIPC_MIN_BEARER_MTU + reserve) + return false; + netdev_warn(dev, "MTU too low for tipc bearer\n"); + return true; +} + #endif /* _TIPC_BEARER_H */ --- linux-4.8.0.orig/net/tipc/udp_media.c +++ linux-4.8.0/net/tipc/udp_media.c @@ -372,6 +372,11 @@ udp_conf.local_ip.s_addr = htonl(INADDR_ANY); udp_conf.use_udp_checksums = false; ub->ifindex = dev->ifindex; + if (tipc_mtu_bad(dev, sizeof(struct iphdr) + + sizeof(struct udphdr))) { + err = -EINVAL; + goto err; + } b->mtu = dev->mtu - sizeof(struct iphdr) - sizeof(struct udphdr); #if IS_ENABLED(CONFIG_IPV6) --- linux-4.8.0.orig/net/unix/af_unix.c +++ linux-4.8.0/net/unix/af_unix.c @@ -2199,7 +2199,8 @@ * Sleep until more data has arrived. But check for races.. */ static long unix_stream_data_wait(struct sock *sk, long timeo, - struct sk_buff *last, unsigned int last_len) + struct sk_buff *last, unsigned int last_len, + bool freezable) { struct sk_buff *tail; DEFINE_WAIT(wait); @@ -2220,7 +2221,10 @@ sk_set_bit(SOCKWQ_ASYNC_WAITDATA, sk); unix_state_unlock(sk); - timeo = freezable_schedule_timeout(timeo); + if (freezable) + timeo = freezable_schedule_timeout(timeo); + else + timeo = schedule_timeout(timeo); unix_state_lock(sk); if (sock_flag(sk, SOCK_DEAD)) @@ -2250,7 +2254,8 @@ unsigned int splice_flags; }; -static int unix_stream_read_generic(struct unix_stream_read_state *state) +static int unix_stream_read_generic(struct unix_stream_read_state *state, + bool freezable) { struct scm_cookie scm; struct socket *sock = state->socket; @@ -2330,7 +2335,7 @@ mutex_unlock(&u->iolock); timeo = unix_stream_data_wait(sk, timeo, last, - last_len); + last_len, freezable); if (signal_pending(current)) { err = sock_intr_errno(timeo); @@ -2472,7 +2477,7 @@ .flags = flags }; - return unix_stream_read_generic(&state); + return unix_stream_read_generic(&state, true); } static ssize_t skb_unix_socket_splice(struct sock *sk, @@ -2518,7 +2523,7 @@ flags & SPLICE_F_NONBLOCK) state.flags = MSG_DONTWAIT; - return unix_stream_read_generic(&state); + return unix_stream_read_generic(&state, false); } static int unix_shutdown(struct socket *sock, int mode) --- linux-4.8.0.orig/net/vmw_vsock/virtio_transport_common.c +++ linux-4.8.0/net/vmw_vsock/virtio_transport_common.c @@ -606,9 +606,9 @@ return 0; pkt = virtio_transport_alloc_pkt(&info, 0, - le32_to_cpu(pkt->hdr.dst_cid), + le64_to_cpu(pkt->hdr.dst_cid), le32_to_cpu(pkt->hdr.dst_port), - le32_to_cpu(pkt->hdr.src_cid), + le64_to_cpu(pkt->hdr.src_cid), le32_to_cpu(pkt->hdr.src_port)); if (!pkt) return -ENOMEM; @@ -823,7 +823,7 @@ struct virtio_vsock_pkt_info info = { .op = VIRTIO_VSOCK_OP_RESPONSE, .type = VIRTIO_VSOCK_TYPE_STREAM, - .remote_cid = le32_to_cpu(pkt->hdr.src_cid), + .remote_cid = le64_to_cpu(pkt->hdr.src_cid), .remote_port = le32_to_cpu(pkt->hdr.src_port), .reply = true, }; @@ -863,9 +863,9 @@ child->sk_state = SS_CONNECTED; vchild = vsock_sk(child); - vsock_addr_init(&vchild->local_addr, le32_to_cpu(pkt->hdr.dst_cid), + vsock_addr_init(&vchild->local_addr, le64_to_cpu(pkt->hdr.dst_cid), le32_to_cpu(pkt->hdr.dst_port)); - vsock_addr_init(&vchild->remote_addr, le32_to_cpu(pkt->hdr.src_cid), + vsock_addr_init(&vchild->remote_addr, le64_to_cpu(pkt->hdr.src_cid), le32_to_cpu(pkt->hdr.src_port)); vsock_insert_connected(vchild); @@ -904,9 +904,9 @@ struct sock *sk; bool space_available; - vsock_addr_init(&src, le32_to_cpu(pkt->hdr.src_cid), + vsock_addr_init(&src, le64_to_cpu(pkt->hdr.src_cid), le32_to_cpu(pkt->hdr.src_port)); - vsock_addr_init(&dst, le32_to_cpu(pkt->hdr.dst_cid), + vsock_addr_init(&dst, le64_to_cpu(pkt->hdr.dst_cid), le32_to_cpu(pkt->hdr.dst_port)); trace_virtio_transport_recv_pkt(src.svm_cid, src.svm_port, --- linux-4.8.0.orig/net/wireless/core.h +++ linux-4.8.0/net/wireless/core.h @@ -71,6 +71,7 @@ struct list_head bss_list; struct rb_root bss_tree; u32 bss_generation; + u32 bss_entries; struct cfg80211_scan_request *scan_req; /* protected by RTNL */ struct sk_buff *scan_msg; struct cfg80211_sched_scan_request __rcu *sched_scan_req; @@ -409,6 +410,7 @@ void cfg80211_sme_deauth(struct wireless_dev *wdev); void cfg80211_sme_auth_timeout(struct wireless_dev *wdev); void cfg80211_sme_assoc_timeout(struct wireless_dev *wdev); +void cfg80211_sme_abandon_assoc(struct wireless_dev *wdev); /* internal helpers */ bool cfg80211_supported_cipher_suite(struct wiphy *wiphy, u32 cipher); --- linux-4.8.0.orig/net/wireless/mlme.c +++ linux-4.8.0/net/wireless/mlme.c @@ -149,6 +149,18 @@ } EXPORT_SYMBOL(cfg80211_assoc_timeout); +void cfg80211_abandon_assoc(struct net_device *dev, struct cfg80211_bss *bss) +{ + struct wireless_dev *wdev = dev->ieee80211_ptr; + struct wiphy *wiphy = wdev->wiphy; + + cfg80211_sme_abandon_assoc(wdev); + + cfg80211_unhold_bss(bss_from_pub(bss)); + cfg80211_put_bss(wiphy, bss); +} +EXPORT_SYMBOL(cfg80211_abandon_assoc); + void cfg80211_tx_mlme_mgmt(struct net_device *dev, const u8 *buf, size_t len) { struct wireless_dev *wdev = dev->ieee80211_ptr; --- linux-4.8.0.orig/net/wireless/scan.c +++ linux-4.8.0/net/wireless/scan.c @@ -57,6 +57,19 @@ * also linked into the probe response struct. */ +/* + * Limit the number of BSS entries stored in mac80211. Each one is + * a bit over 4k at most, so this limits to roughly 4-5M of memory. + * If somebody wants to really attack this though, they'd likely + * use small beacons, and only one type of frame, limiting each of + * the entries to a much smaller size (in order to generate more + * entries in total, so overhead is bigger.) + */ +static int bss_entries_limit = 1000; +module_param(bss_entries_limit, int, 0644); +MODULE_PARM_DESC(bss_entries_limit, + "limit to number of scan BSS entries (per wiphy, default 1000)"); + #define IEEE80211_SCAN_RESULT_EXPIRE (30 * HZ) static void bss_free(struct cfg80211_internal_bss *bss) @@ -137,6 +150,10 @@ list_del_init(&bss->list); rb_erase(&bss->rbn, &rdev->bss_tree); + rdev->bss_entries--; + WARN_ONCE((rdev->bss_entries == 0) ^ list_empty(&rdev->bss_list), + "rdev bss entries[%d]/list[empty:%d] corruption\n", + rdev->bss_entries, list_empty(&rdev->bss_list)); bss_ref_put(rdev, bss); return true; } @@ -163,6 +180,40 @@ rdev->bss_generation++; } +static bool cfg80211_bss_expire_oldest(struct cfg80211_registered_device *rdev) +{ + struct cfg80211_internal_bss *bss, *oldest = NULL; + bool ret; + + lockdep_assert_held(&rdev->bss_lock); + + list_for_each_entry(bss, &rdev->bss_list, list) { + if (atomic_read(&bss->hold)) + continue; + + if (!list_empty(&bss->hidden_list) && + !bss->pub.hidden_beacon_bss) + continue; + + if (oldest && time_before(oldest->ts, bss->ts)) + continue; + oldest = bss; + } + + if (WARN_ON(!oldest)) + return false; + + /* + * The callers make sure to increase rdev->bss_generation if anything + * gets removed (and a new entry added), so there's no need to also do + * it here. + */ + + ret = __cfg80211_unlink_bss(rdev, oldest); + WARN_ON(!ret); + return ret; +} + void ___cfg80211_scan_done(struct cfg80211_registered_device *rdev, bool send_message) { @@ -693,6 +744,7 @@ const u8 *ie; int i, ssidlen; u8 fold = 0; + u32 n_entries = 0; ies = rcu_access_pointer(new->pub.beacon_ies); if (WARN_ON(!ies)) @@ -716,6 +768,12 @@ /* This is the bad part ... */ list_for_each_entry(bss, &rdev->bss_list, list) { + /* + * we're iterating all the entries anyway, so take the + * opportunity to validate the list length accounting + */ + n_entries++; + if (!ether_addr_equal(bss->pub.bssid, new->pub.bssid)) continue; if (bss->pub.channel != new->pub.channel) @@ -744,6 +802,10 @@ new->pub.beacon_ies); } + WARN_ONCE(n_entries != rdev->bss_entries, + "rdev bss entries[%d]/list[len:%d] corruption\n", + rdev->bss_entries, n_entries); + return true; } @@ -898,7 +960,14 @@ } } + if (rdev->bss_entries >= bss_entries_limit && + !cfg80211_bss_expire_oldest(rdev)) { + kfree(new); + goto drop; + } + list_add_tail(&new->list, &rdev->bss_list); + rdev->bss_entries++; rb_insert_bss(rdev, new); found = new; } --- linux-4.8.0.orig/net/wireless/sme.c +++ linux-4.8.0/net/wireless/sme.c @@ -39,6 +39,7 @@ CFG80211_CONN_ASSOCIATING, CFG80211_CONN_ASSOC_FAILED, CFG80211_CONN_DEAUTH, + CFG80211_CONN_ABANDON, CFG80211_CONN_CONNECTED, } state; u8 bssid[ETH_ALEN], prev_bssid[ETH_ALEN]; @@ -206,6 +207,8 @@ cfg80211_mlme_deauth(rdev, wdev->netdev, params->bssid, NULL, 0, WLAN_REASON_DEAUTH_LEAVING, false); + /* fall through */ + case CFG80211_CONN_ABANDON: /* free directly, disconnected event already sent */ cfg80211_sme_free(wdev); return 0; @@ -423,6 +426,17 @@ schedule_work(&rdev->conn_work); } +void cfg80211_sme_abandon_assoc(struct wireless_dev *wdev) +{ + struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy); + + if (!wdev->conn) + return; + + wdev->conn->state = CFG80211_CONN_ABANDON; + schedule_work(&rdev->conn_work); +} + static int cfg80211_sme_get_conn_ies(struct wireless_dev *wdev, const u8 *ies, size_t ies_len, const u8 **out_ies, size_t *out_ies_len) --- linux-4.8.0.orig/net/xfrm/xfrm_user.c +++ linux-4.8.0/net/xfrm/xfrm_user.c @@ -412,7 +412,14 @@ up = nla_data(rp); ulen = xfrm_replay_state_esn_len(up); - if (nla_len(rp) < ulen || xfrm_replay_state_esn_len(replay_esn) != ulen) + /* Check the overall length and the internal bitmap length to avoid + * potential overflow. */ + if (nla_len(rp) < ulen || + xfrm_replay_state_esn_len(replay_esn) != ulen || + replay_esn->bmp_len != up->bmp_len) + return -EINVAL; + + if (up->replay_window > up->bmp_len * sizeof(__u32) * 8) return -EINVAL; return 0; --- linux-4.8.0.orig/samples/trace_events/trace-events-sample.c +++ linux-4.8.0/samples/trace_events/trace-events-sample.c @@ -79,7 +79,7 @@ static DEFINE_MUTEX(thread_mutex); -void foo_bar_reg(void) +int foo_bar_reg(void) { pr_info("Starting thread for foo_bar_fn\n"); /* @@ -90,6 +90,7 @@ mutex_lock(&thread_mutex); simple_tsk_fn = kthread_run(simple_thread_fn, NULL, "event-sample-fn"); mutex_unlock(&thread_mutex); + return 0; } void foo_bar_unreg(void) --- linux-4.8.0.orig/samples/trace_events/trace-events-sample.h +++ linux-4.8.0/samples/trace_events/trace-events-sample.h @@ -354,7 +354,7 @@ TP_printk("foo %s %d", __get_str(foo), __entry->bar) ); -void foo_bar_reg(void); +int foo_bar_reg(void); void foo_bar_unreg(void); /* --- linux-4.8.0.orig/scripts/gcc-x86_64-has-stack-protector.sh +++ linux-4.8.0/scripts/gcc-x86_64-has-stack-protector.sh @@ -1,6 +1,6 @@ #!/bin/sh -echo "int foo(void) { char X[200]; return 3; }" | $* -S -x c -c -O0 -mcmodel=kernel -fstack-protector - -o - 2> /dev/null | grep -q "%gs" +echo "int foo(void) { char X[200]; return 3; }" | $* -S -x c -c -O0 -mcmodel=kernel -fno-PIE -fstack-protector - -o - 2> /dev/null | grep -q "%gs" if [ "$?" -eq "0" ] ; then echo y else --- linux-4.8.0.orig/scripts/insert-sys-cert.c +++ linux-4.8.0/scripts/insert-sys-cert.c @@ -7,7 +7,8 @@ * This software may be used and distributed according to the terms * of the GNU General Public License, incorporated herein by reference. * - * Usage: insert-sys-cert [-s -b -c + * Usage: insert-sys-cert [-s ] -b -c + * [-s ] -z -c */ #define _GNU_SOURCE @@ -257,6 +258,169 @@ return buf; } +static void get_payload_info(char *bzimage, int *offset, int *size) +{ + unsigned int system_offset; + unsigned char setup_sectors; + + setup_sectors = bzimage[0x1f1] + 1; + system_offset = setup_sectors * 512; + *offset = system_offset + *((int*)&bzimage[0x248]); + *size = *((int*)&bzimage[0x24c]); +} + +static void update_payload_info(char* bzimage, int new_size) +{ + int offset, size; + get_payload_info(bzimage, &offset, &size); + *((int*)&bzimage[0x24c]) = new_size; + if (new_size < size) + memset(bzimage + offset + new_size, 0, size - new_size); +} + +struct zipper { + unsigned char pattern[10]; + int length; + char *command; + char *compress; +}; + +struct zipper zippers[] = { + {{0x7F,'E','L','F'}, 4, "cat", "cat"}, + {{0x1F,0x8B}, 2, "gunzip", "gzip -n -f -9"}, + {{0xFD,'7','z','X','Z',0}, 6, "unxz", "xz"}, + {{'B','Z','h'},3, "bunzip2", "bzip2 -9"}, + {{0xFF,'L','Z','M','A',0}, 6, "unlzma", "lzma -9"}, + {{0xD3,'L','Z','O',0,'\r','\n',0x20,'\n'}, 9, "lzop -d", "lzop -9"} +}; + +static struct zipper* get_zipper(char *p) { + int i; + for (i = 0; i < sizeof(zippers)/sizeof(struct zipper); i++) { + if (memcmp(p, zippers[i].pattern, zippers[i].length) == 0) + return &zippers[i]; + } + return NULL; +} + +/* + * This only works for x86 bzImage + */ +static void extract_vmlinux(char *bzimage, int bzimage_size, + char **file, struct zipper **zipper) +{ + int r; + char src[15] = "vmlinux-XXXXXX"; + char dest[15] = "vmlinux-XXXXXX"; + char cmd[100]; + int src_fd, dest_fd; + int offset, size; + struct zipper *z; + + /* TODO: verify that bzImage is supported */ + + get_payload_info(bzimage, &offset, &size); + z = get_zipper(bzimage + offset); + if (z == NULL) { + err("Unable to determine the compression of vmlinux\n"); + return; + } + + src_fd = mkstemp(src); + if (src_fd == -1) { + perror("Could not create temp file"); + return; + } + + r = write(src_fd, bzimage + offset, size); + if (r != size) { + perror("Could not write vmlinux"); + return; + } + dest_fd = mkstemp(dest); + if (dest_fd == -1) { + perror("Could not create temp file"); + return; + } + + snprintf(cmd, sizeof(cmd), "%s <%s >%s", z->command, src, dest); + info("Executing: %s\n", cmd); + r = system(cmd); + if (r!=0) + warn("Possible errors when extracting\n"); + + r = remove(src); + if (r!=0) + perror(src); + + *file = strdup(dest); + *zipper = z; +} + +static void repack_image(char *bzimage, int bzimage_size, + char* vmlinux_file, struct zipper *z) +{ + char tmp[15] = "vmlinux-XXXXXX"; + char cmd[100]; + int fd; + struct stat st; + int new_size; + int r; + int offset, size; + + get_payload_info(bzimage, &offset, &size); + + fd = mkstemp(tmp); + if (fd == -1) { + perror("Could not create temp file"); + return; + } + snprintf(cmd, sizeof(cmd), "%s <%s >%s", + z->compress, vmlinux_file, tmp); + + info("Executing: %s\n", cmd); + r = system(cmd); + if (r!=0) + warn("Possible errors when compressing\n"); + + r = remove(vmlinux_file); + if (r!=0) + perror(vmlinux_file); + + if (fstat(fd, &st)) { + perror("Could not determine file size"); + close(fd); + + } + new_size = st.st_size; + if (new_size > size) { + err("Increase in compressed size is not supported.\n"); + err("Old size was %d, new size is %d\n", size, new_size); + exit(EXIT_FAILURE); + } + + r = read(fd, bzimage + offset, new_size); + if (r != new_size) + perror(tmp); + + r = remove(tmp); + if (r!=0) + perror(tmp); + + /* x86 specific patching of bzimage */ + update_payload_info(bzimage, new_size); + + /* TODO: update CRC */ + +} + +static void fill_random(unsigned char *p, int n) { + srand(0); + int i; + for (i = 0; i < n; i++) + p[i] = rand(); +} + static void print_sym(Elf_Ehdr *hdr, struct sym *s) { info("sym: %s\n", s->name); @@ -267,18 +431,23 @@ static void print_usage(char *e) { - printf("Usage %s [-s ] -b -c \n", e); + printf("Usage: %s [-s ] -b -c \n", e); + printf(" %s [-s ] -z -c \n", e); } int main(int argc, char **argv) { char *system_map_file = NULL; char *vmlinux_file = NULL; + char *bzimage_file = NULL; char *cert_file = NULL; int vmlinux_size; + int bzimage_size; int cert_size; Elf_Ehdr *hdr; char *cert; + char *bzimage = NULL; + struct zipper *z = NULL; FILE *system_map; unsigned long *lsize; int *used; @@ -286,7 +455,7 @@ Elf_Shdr *symtab = NULL; struct sym cert_sym, lsize_sym, used_sym; - while ((opt = getopt(argc, argv, "b:c:s:")) != -1) { + while ((opt = getopt(argc, argv, "b:z:c:s:")) != -1) { switch (opt) { case 's': system_map_file = optarg; @@ -294,6 +463,9 @@ case 'b': vmlinux_file = optarg; break; + case 'z': + bzimage_file = optarg; + break; case 'c': cert_file = optarg; break; @@ -302,7 +474,9 @@ } } - if (!vmlinux_file || !cert_file) { + if (!cert_file || + (!vmlinux_file && !bzimage_file) || + (vmlinux_file && bzimage_file)) { print_usage(argv[0]); exit(EXIT_FAILURE); } @@ -311,6 +485,16 @@ if (!cert) exit(EXIT_FAILURE); + if (bzimage_file) { + bzimage = map_file(bzimage_file, &bzimage_size); + if (!bzimage) + exit(EXIT_FAILURE); + + extract_vmlinux(bzimage, bzimage_size, &vmlinux_file, &z); + if (!vmlinux_file) + exit(EXIT_FAILURE); + } + hdr = map_file(vmlinux_file, &vmlinux_size); if (!hdr) exit(EXIT_FAILURE); @@ -386,7 +570,7 @@ } /* If the existing cert is the same, don't overwrite */ - if (cert_size == *used && + if (cert_size > 0 && cert_size == *used && strncmp(cert_sym.content, cert, cert_size) == 0) { warn("Certificate was already inserted.\n"); exit(EXIT_SUCCESS); @@ -396,9 +580,11 @@ warn("Replacing previously inserted certificate.\n"); memcpy(cert_sym.content, cert, cert_size); + if (cert_size < cert_sym.size) - memset(cert_sym.content + cert_size, - 0, cert_sym.size - cert_size); + /* This makes the reserved space incompressable */ + fill_random(cert_sym.content + cert_size, + cert_sym.size - cert_size); *lsize = *lsize + cert_size - *used; *used = cert_size; @@ -406,5 +592,15 @@ cert_sym.address); info("Used %d bytes out of %d bytes reserved.\n", *used, cert_sym.size); + + if (munmap(hdr, vmlinux_size) == -1) { + perror(vmlinux_file); + exit(EXIT_FAILURE); + } + + if (bzimage) { + repack_image(bzimage, bzimage_size, vmlinux_file, z); + } + exit(EXIT_SUCCESS); } --- linux-4.8.0.orig/scripts/kconfig/lkc.h +++ linux-4.8.0/scripts/kconfig/lkc.h @@ -88,7 +88,9 @@ /* confdata.c and expr.c */ static inline void xfwrite(const void *str, size_t len, size_t count, FILE *out) { - assert(len != 0); + //assert(len != 0); + if (len == 0) + return; if (fwrite(str, len, count, out) != count) fprintf(stderr, "Error in writing or end of file.\n"); --- linux-4.8.0.orig/scripts/kconfig/nconf.gui.c +++ linux-4.8.0/scripts/kconfig/nconf.gui.c @@ -364,12 +364,14 @@ WINDOW *prompt_win; WINDOW *form_win; PANEL *panel; - int i, x, y; + int i, x, y, lines, columns, win_lines, win_cols; int res = -1; int cursor_position = strlen(init); int cursor_form_win; char *result = *resultp; + getmaxyx(stdscr, lines, columns); + if (strlen(init)+1 > *result_len) { *result_len = strlen(init)+1; *resultp = result = realloc(result, *result_len); @@ -386,14 +388,19 @@ if (title) prompt_width = max(prompt_width, strlen(title)); + win_lines = min(prompt_lines+6, lines-2); + win_cols = min(prompt_width+7, columns-2); + prompt_lines = max(win_lines-6, 0); + prompt_width = max(win_cols-7, 0); + /* place dialog in middle of screen */ - y = (getmaxy(stdscr)-(prompt_lines+4))/2; - x = (getmaxx(stdscr)-(prompt_width+4))/2; + y = (lines-win_lines)/2; + x = (columns-win_cols)/2; strncpy(result, init, *result_len); /* create the windows */ - win = newwin(prompt_lines+6, prompt_width+7, y, x); + win = newwin(win_lines, win_cols, y, x); prompt_win = derwin(win, prompt_lines+1, prompt_width, 2, 2); form_win = derwin(win, 1, prompt_width, prompt_lines+3, 2); keypad(form_win, TRUE); --- linux-4.8.0.orig/security/Kconfig +++ linux-4.8.0/security/Kconfig @@ -18,6 +18,15 @@ If you are unsure how to answer this question, answer N. +config SECURITY_PERF_EVENTS_RESTRICT + bool "Restrict unprivileged use of performance events" + depends on PERF_EVENTS + help + If you say Y here, the kernel.perf_event_paranoid sysctl + will be set to 3 by default, and no unprivileged use of the + perf_event_open syscall will be permitted unless it is + changed. + config SECURITY bool "Enable different security models" depends on SYSFS --- linux-4.8.0.orig/security/apparmor/Kconfig +++ linux-4.8.0/security/apparmor/Kconfig @@ -30,6 +30,41 @@ If you are unsure how to answer this question, answer 1. +config SECURITY_APPARMOR_STATS + bool "enable debug statistics" + depends on SECURITY_APPARMOR + select APPARMOR_LABEL_STATS + default n + help + This enables keeping statistics on various internal structures + and functions in apparmor. + + If you are unsure how to answer this question, answer N. + +config SECURITY_APPARMOR_UNCONFINED_INIT + bool "Set init to unconfined on boot" + depends on SECURITY_APPARMOR + default y + help + This option determines policy behavior during early boot by + placing the init process in the unconfined state, or the + 'default' profile. + + This option determines policy behavior during early boot by + placing the init process in the unconfined state, or the + 'default' profile. + + 'Y' means init and its children are not confined, unless the + init process is re-execed after a policy load; loaded policy + will only apply to processes started after the load. + + 'N' means init and its children are confined in a profile + named 'default', which can be replaced later and thus + provide for confinement for processes started early at boot, + though not confined during early boot. + + If you are unsure how to answer this question, answer Y. + config SECURITY_APPARMOR_HASH bool "Enable introspection of sha1 hashes for loaded profiles" depends on SECURITY_APPARMOR @@ -42,15 +77,15 @@ is available to userspace via the apparmor filesystem. config SECURITY_APPARMOR_HASH_DEFAULT - bool "Enable policy hash introspection by default" - depends on SECURITY_APPARMOR_HASH - default y - - help - This option selects whether sha1 hashing of loaded policy - is enabled by default. The generation of sha1 hashes for - loaded policy provide system administrators a quick way - to verify that policy in the kernel matches what is expected, - however it can slow down policy load on some devices. In - these cases policy hashing can be disabled by default and - enabled only if needed. + bool "Enable policy hash introspection by default" + depends on SECURITY_APPARMOR_HASH + default y + + help + This option selects whether sha1 hashing of loaded policy + is enabled by default. The generation of sha1 hashes for + loaded policy provide system administrators a quick way + to verify that policy in the kernel matches what is expected, + however it can slow down policy load on some devices. In + these cases policy hashing can be disabled by default and + enabled only if needed. --- linux-4.8.0.orig/security/apparmor/Makefile +++ linux-4.8.0/security/apparmor/Makefile @@ -4,11 +4,45 @@ apparmor-y := apparmorfs.o audit.o capability.o context.o ipc.o lib.o match.o \ path.o domain.o policy.o policy_unpack.o procattr.o lsm.o \ - resource.o sid.o file.o + resource.o sid.o file.o label.o mount.o net.o af_unix.o \ + policy_ns.o apparmor-$(CONFIG_SECURITY_APPARMOR_HASH) += crypto.o -clean-files := capability_names.h rlim_names.h +clean-files := capability_names.h rlim_names.h net_names.h +# Build a lower case string table of address family names +# Transform lines from +# define AF_LOCAL 1 /* POSIX name for AF_UNIX */ +# #define AF_INET 2 /* Internet IP Protocol */ +# to +# [1] = "local", +# [2] = "inet", +# +# and build the securityfs entries for the mapping. +# Transforms lines from +# #define AF_INET 2 /* Internet IP Protocol */ +# to +# #define AA_FS_AF_MASK "local inet" +quiet_cmd_make-af = GEN $@ +cmd_make-af = echo "static const char *address_family_names[] = {" > $@ ;\ + sed $< >>$@ -r -n -e "/AF_MAX/d" -e "/AF_LOCAL/d" -e "/AF_ROUTE/d" -e \ + 's/^\#define[ \t]+AF_([A-Z0-9_]+)[ \t]+([0-9]+)(.*)/[\2] = "\L\1",/p';\ + echo "};" >> $@ ;\ + echo -n '\#define AA_FS_AF_MASK "' >> $@ ;\ + sed -r -n -e "/AF_MAX/d" -e "/AF_LOCAL/d" -e "/AF_ROUTE/d" -e \ + 's/^\#define[ \t]+AF_([A-Z0-9_]+)[ \t]+([0-9]+)(.*)/\L\1/p'\ + $< | tr '\n' ' ' | sed -e 's/ $$/"\n/' >> $@ + +# Build a lower case string table of sock type names +# Transform lines from +# SOCK_STREAM = 1, +# to +# [1] = "stream", +quiet_cmd_make-sock = GEN $@ +cmd_make-sock = echo "static const char *sock_type_names[] = {" >> $@ ;\ + sed $^ >>$@ -r -n \ + -e 's/^\tSOCK_([A-Z0-9_]+)[\t]+=[ \t]+([0-9]+)(.*)/[\2] = "\L\1",/p';\ + echo "};" >> $@ # Build a lower case string table of capability names # Transforms lines from @@ -61,6 +95,7 @@ tr '\n' ' ' | sed -e 's/ $$/"\n/' >> $@ $(obj)/capability.o : $(obj)/capability_names.h +$(obj)/net.o : $(obj)/net_names.h $(obj)/resource.o : $(obj)/rlim_names.h $(obj)/capability_names.h : $(srctree)/include/uapi/linux/capability.h \ $(src)/Makefile @@ -68,3 +103,8 @@ $(obj)/rlim_names.h : $(srctree)/include/uapi/asm-generic/resource.h \ $(src)/Makefile $(call cmd,make-rlim) +$(obj)/net_names.h : $(srctree)/include/linux/socket.h \ + $(srctree)/include/linux/net.h \ + $(src)/Makefile + $(call cmd,make-af) + $(call cmd,make-sock) --- linux-4.8.0.orig/security/apparmor/af_unix.c +++ linux-4.8.0/security/apparmor/af_unix.c @@ -0,0 +1,643 @@ +/* + * AppArmor security module + * + * This file contains AppArmor af_unix fine grained mediation + * + * Copyright 2014 Canonical Ltd. + * + * 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 of the + * License. + */ + +#include + +#include "include/af_unix.h" +#include "include/apparmor.h" +#include "include/context.h" +#include "include/file.h" +#include "include/label.h" +#include "include/path.h" +#include "include/policy.h" + +static inline struct sock *aa_sock(struct unix_sock *u) +{ + return &u->sk; +} + +static inline int unix_fs_perm(const char *op, u32 mask, struct aa_label *label, + struct unix_sock *u, int flags) +{ + AA_BUG(!label); + AA_BUG(!u); + AA_BUG(!UNIX_FS(aa_sock(u))); + + if (unconfined(label) || !LABEL_MEDIATES(label, AA_CLASS_FILE)) + return 0; + + mask &= NET_FS_PERMS; + if (!u->path.dentry) { + struct path_cond cond = { }; + struct aa_perms perms = { }; + struct aa_profile *profile; + + /* socket path has been cleared because it is being shutdown + * can only fall back to original sun_path request + */ + struct aa_sk_ctx *ctx = SK_CTX(&u->sk); + if (ctx->path.dentry) + return aa_path_perm(op, label, &ctx->path, flags, mask, + &cond); + return fn_for_each_confined(label, profile, + ((flags | profile->path_flags) & PATH_MEDIATE_DELETED) ? + __aa_path_perm(op, profile, + u->addr->name->sun_path, mask, + &cond, flags, &perms) : + aa_audit_file(profile, &nullperms, op, mask, + u->addr->name->sun_path, NULL, + NULL, cond.uid, + "Failed name lookup - " + "deleted entry", -EACCES)); + } else { + /* the sunpath may not be valid for this ns so use the path */ + struct path_cond cond = { u->path.dentry->d_inode->i_uid, + u->path.dentry->d_inode->i_mode + }; + + return aa_path_perm(op, label, &u->path, flags, mask, &cond); + } + + return 0; +} + +/* passing in state returned by PROFILE_MEDIATES_AF */ +static unsigned int match_to_prot(struct aa_profile *profile, + unsigned int state, int type, int protocol, + const char **info) +{ + u16 buffer[2]; + buffer[0] = cpu_to_be16(type); + buffer[1] = cpu_to_be16(protocol); + state = aa_dfa_match_len(profile->policy.dfa, state, (char *) &buffer, + 4); + if (!state) + *info = "failed type and protocol match"; + return state; +} + +static unsigned int match_addr(struct aa_profile *profile, unsigned int state, + struct sockaddr_un *addr, int addrlen) +{ + if (addr) + /* include leading \0 */ + state = aa_dfa_match_len(profile->policy.dfa, state, + addr->sun_path, + unix_addr_len(addrlen)); + else + /* anonymous end point */ + state = aa_dfa_match_len(profile->policy.dfa, state, "\x01", + 1); + /* todo change to out of band */ + state = aa_dfa_null_transition(profile->policy.dfa, state); + return state; +} + +static unsigned int match_to_local(struct aa_profile *profile, + unsigned int state, int type, int protocol, + struct sockaddr_un *addr, int addrlen, + const char **info) +{ + state = match_to_prot(profile, state, type, protocol, info); + if (state) { + state = match_addr(profile, state, addr, addrlen); + if (state) { + /* todo: local label matching */ + state = aa_dfa_null_transition(profile->policy.dfa, + state); + if (!state) + *info = "failed local label match"; + } else + *info = "failed local address match"; + } + + return state; +} + +static unsigned int match_to_sk(struct aa_profile *profile, + unsigned int state, struct unix_sock *u, + const char **info) +{ + struct sockaddr_un *addr = NULL; + int addrlen = 0; + + if (u->addr) { + addr = u->addr->name; + addrlen = u->addr->len; + } + + return match_to_local(profile, state, u->sk.sk_type, u->sk.sk_protocol, + addr, addrlen, info); +} + +#define CMD_ADDR 1 +#define CMD_LISTEN 2 +#define CMD_OPT 4 + +static inline unsigned int match_to_cmd(struct aa_profile *profile, + unsigned int state, struct unix_sock *u, + char cmd, const char **info) +{ + state = match_to_sk(profile, state, u, info); + if (state) { + state = aa_dfa_match_len(profile->policy.dfa, state, &cmd, 1); + if (!state) + *info = "failed cmd selection match"; + } + + return state; +} + +static inline unsigned int match_to_peer(struct aa_profile *profile, + unsigned int state, + struct unix_sock *u, + struct sockaddr_un *peer_addr, + int peer_addrlen, + const char **info) +{ + state = match_to_cmd(profile, state, u, CMD_ADDR, info); + if (state) { + state = match_addr(profile, state, peer_addr, peer_addrlen); + if (!state) + *info = "failed peer address match"; + } + return state; +} + +static int do_perms(struct aa_profile *profile, unsigned int state, u32 request, + struct common_audit_data *sa) +{ + struct aa_perms perms; + + AA_BUG(!profile); + + aa_compute_perms(profile->policy.dfa, state, &perms); + aa_apply_modes_to_perms(profile, &perms); + return aa_check_perms(profile, &perms, request, sa, + audit_net_cb); +} + +static int match_label(struct aa_profile *profile, struct aa_profile *peer, + unsigned int state, u32 request, + struct common_audit_data *sa) +{ + AA_BUG(!profile); + AA_BUG(!peer); + + aad(sa)->peer = &peer->label; + + if (state) { + state = aa_dfa_match(profile->policy.dfa, state, aa_peer_name(peer)); + if (!state) + aad(sa)->info = "failed peer label match"; + } + return do_perms(profile, state, request, sa); +} + + +/* unix sock creation comes before we know if the socket will be an fs + * socket + * v6 - semantics are handled by mapping in profile load + * v7 - semantics require sock create for tasks creating an fs socket. + */ +static int profile_create_perm(struct aa_profile *profile, int family, + int type, int protocol) +{ + unsigned int state; + DEFINE_AUDIT_NET(sa, OP_CREATE, NULL, family, type, protocol); + + AA_BUG(!profile); + AA_BUG(profile_unconfined(profile)); + + if ((state = PROFILE_MEDIATES_AF(profile, AF_UNIX))) { + state = match_to_prot(profile, state, type, protocol, + &aad(&sa)->info); + return do_perms(profile, state, AA_MAY_CREATE, &sa); + } + + return aa_profile_af_perm(profile, &sa, AA_MAY_CREATE, family, type); +} + +int aa_unix_create_perm(struct aa_label *label, int family, int type, + int protocol) +{ + struct aa_profile *profile; + + if (unconfined(label)) + return 0; + + return fn_for_each_confined(label, profile, + profile_create_perm(profile, family, type, protocol)); +} + + +static inline int profile_sk_perm(struct aa_profile *profile, const char *op, + u32 request, struct sock *sk) +{ + unsigned int state; + DEFINE_AUDIT_SK(sa, op, sk); + + AA_BUG(!profile); + AA_BUG(!sk); + AA_BUG(UNIX_FS(sk)); + AA_BUG(profile_unconfined(profile)); + + state = PROFILE_MEDIATES_AF(profile, AF_UNIX); + if (state) { + state = match_to_sk(profile, state, unix_sk(sk), + &aad(&sa)->info); + return do_perms(profile, state, request, &sa); + } + + return aa_profile_af_sk_perm(profile, &sa, request, sk); +} + +int aa_unix_label_sk_perm(struct aa_label *label, const char *op, u32 request, + struct sock *sk) +{ + struct aa_profile *profile; + + return fn_for_each_confined(label, profile, + profile_sk_perm(profile, op, request, sk)); +} + +static int unix_label_sock_perm(struct aa_label *label, const char *op, u32 request, + struct socket *sock) +{ + if (unconfined(label)) + return 0; + if (UNIX_FS(sock->sk)) + return unix_fs_perm(op, request, label, unix_sk(sock->sk), 0); + + return aa_unix_label_sk_perm(label, op, request, sock->sk); +} + +/* revaliation, get/set attr */ +int aa_unix_sock_perm(const char *op, u32 request, struct socket *sock) +{ + struct aa_label *label = aa_begin_current_label(DO_UPDATE); + int error = unix_label_sock_perm(label, op, request, sock); + aa_end_current_label(label); + + return error; +} + +static int profile_bind_perm(struct aa_profile *profile, struct sock *sk, + struct sockaddr *addr, int addrlen) +{ + unsigned int state; + DEFINE_AUDIT_SK(sa, OP_BIND, sk); + + AA_BUG(!profile); + AA_BUG(!sk); + AA_BUG(addr->sa_family != AF_UNIX); + AA_BUG(profile_unconfined(profile)); + AA_BUG(unix_addr_fs(addr, addrlen)); + + state = PROFILE_MEDIATES_AF(profile, AF_UNIX); + if (state) { + /* bind for abstract socket */ + aad(&sa)->net.addr = unix_addr(addr); + aad(&sa)->net.addrlen = addrlen; + + state = match_to_local(profile, state, + sk->sk_type, sk->sk_protocol, + unix_addr(addr), addrlen, + &aad(&sa)->info); + return do_perms(profile, state, AA_MAY_BIND, &sa); + } + + return aa_profile_af_sk_perm(profile, &sa, AA_MAY_BIND, sk); +} + +int aa_unix_bind_perm(struct socket *sock, struct sockaddr *address, + int addrlen) +{ + struct aa_profile *profile; + struct aa_label *label = aa_begin_current_label(DO_UPDATE); + int error = 0; + + /* fs bind is handled by mknod */ + if (!(unconfined(label) || unix_addr_fs(address, addrlen))) + error = fn_for_each_confined(label, profile, + profile_bind_perm(profile, sock->sk, address, + addrlen)); + aa_end_current_label(label); + + return error; +} + +int aa_unix_connect_perm(struct socket *sock, struct sockaddr *address, + int addrlen) +{ + /* unix connections are covered by the + * - unix_stream_connect (stream) and unix_may_send hooks (dgram) + * - fs connect is handled by open + */ + return 0; +} + +static int profile_listen_perm(struct aa_profile *profile, struct sock *sk, + int backlog) +{ + unsigned int state; + DEFINE_AUDIT_SK(sa, OP_LISTEN, sk); + + AA_BUG(!profile); + AA_BUG(!sk); + AA_BUG(UNIX_FS(sk)); + AA_BUG(profile_unconfined(profile)); + + state = PROFILE_MEDIATES_AF(profile, AF_UNIX); + if (state) { + u16 b = cpu_to_be16(backlog); + + state = match_to_cmd(profile, state, unix_sk(sk), CMD_LISTEN, + &aad(&sa)->info); + if (state) { + state = aa_dfa_match_len(profile->policy.dfa, state, + (char *) &b, 2); + if (!state) + aad(&sa)->info = "failed listen backlog match"; + } + return do_perms(profile, state, AA_MAY_LISTEN, &sa); + } + + return aa_profile_af_sk_perm(profile, &sa, AA_MAY_LISTEN, sk); +} + +int aa_unix_listen_perm(struct socket *sock, int backlog) +{ + struct aa_profile *profile; + struct aa_label *label = aa_begin_current_label(DO_UPDATE); + int error = 0; + + if (!(unconfined(label) || UNIX_FS(sock->sk))) + error = fn_for_each_confined(label, profile, + profile_listen_perm(profile, sock->sk, + backlog)); + aa_end_current_label(label); + + return error; +} + + +static inline int profile_accept_perm(struct aa_profile *profile, + struct sock *sk, + struct sock *newsk) +{ + unsigned int state; + DEFINE_AUDIT_SK(sa, OP_ACCEPT, sk); + + AA_BUG(!profile); + AA_BUG(!sk); + AA_BUG(UNIX_FS(sk)); + AA_BUG(profile_unconfined(profile)); + + state = PROFILE_MEDIATES_AF(profile, AF_UNIX); + if (state) { + state = match_to_sk(profile, state, unix_sk(sk), + &aad(&sa)->info); + return do_perms(profile, state, AA_MAY_ACCEPT, &sa); + } + + return aa_profile_af_sk_perm(profile, &sa, AA_MAY_ACCEPT, sk); +} + +/* ability of sock to connect, not peer address binding */ +int aa_unix_accept_perm(struct socket *sock, struct socket *newsock) +{ + struct aa_profile *profile; + struct aa_label *label = aa_begin_current_label(DO_UPDATE); + int error = 0; + + if (!(unconfined(label) || UNIX_FS(sock->sk))) + error = fn_for_each_confined(label, profile, + profile_accept_perm(profile, sock->sk, + newsock->sk)); + aa_end_current_label(label); + + return error; +} + + +/* dgram handled by unix_may_sendmsg, right to send on stream done at connect + * could do per msg unix_stream here + */ +/* sendmsg, recvmsg */ +int aa_unix_msg_perm(const char *op, u32 request, struct socket *sock, + struct msghdr *msg, int size) +{ + return 0; +} + + +static int profile_opt_perm(struct aa_profile *profile, const char *op, u32 request, + struct sock *sk, int level, int optname) +{ + unsigned int state; + DEFINE_AUDIT_SK(sa, op, sk); + + AA_BUG(!profile); + AA_BUG(!sk); + AA_BUG(UNIX_FS(sk)); + AA_BUG(profile_unconfined(profile)); + + state = PROFILE_MEDIATES_AF(profile, AF_UNIX); + if (state) { + u16 b = cpu_to_be16(optname); + + state = match_to_cmd(profile, state, unix_sk(sk), CMD_OPT, + &aad(&sa)->info); + if (state) { + state = aa_dfa_match_len(profile->policy.dfa, state, + (char *) &b, 2); + if (!state) + aad(&sa)->info = "failed sockopt match"; + } + return do_perms(profile, state, request, &sa); + } + + return aa_profile_af_sk_perm(profile, &sa, request, sk); +} + +int aa_unix_opt_perm(const char *op, u32 request, struct socket *sock, int level, + int optname) +{ + struct aa_profile *profile; + struct aa_label *label = aa_begin_current_label(DO_UPDATE); + int error = 0; + + if (!(unconfined(label) || UNIX_FS(sock->sk))) + error = fn_for_each_confined(label, profile, + profile_opt_perm(profile, op, request, + sock->sk, level, optname)); + aa_end_current_label(label); + + return error; +} + +/* null peer_label is allowed, in which case the peer_sk label is used */ +static int profile_peer_perm(struct aa_profile *profile, const char *op, u32 request, + struct sock *sk, struct sock *peer_sk, + struct aa_label *peer_label, + struct common_audit_data *sa) +{ + unsigned int state; + + AA_BUG(!profile); + AA_BUG(profile_unconfined(profile)); + AA_BUG(!sk); + AA_BUG(!peer_sk); + AA_BUG(UNIX_FS(peer_sk)); + + state = PROFILE_MEDIATES_AF(profile, AF_UNIX); + if (state) { + struct aa_sk_ctx *peer_ctx = SK_CTX(peer_sk); + struct aa_profile *peerp; + struct sockaddr_un *addr = NULL; + int len = 0; + if (unix_sk(peer_sk)->addr) { + addr = unix_sk(peer_sk)->addr->name; + len = unix_sk(peer_sk)->addr->len; + } + state = match_to_peer(profile, state, unix_sk(sk), + addr, len, &aad(sa)->info); + if (!peer_label) + peer_label = peer_ctx->label; + return fn_for_each_in_ns(peer_label, peerp, + match_label(profile, peerp, state, request, + sa)); + } + + return aa_profile_af_sk_perm(profile, sa, request, sk); +} + +/** + * + * Requires: lock held on both @sk and @peer_sk + */ +int aa_unix_peer_perm(struct aa_label *label, const char *op, u32 request, + struct sock *sk, struct sock *peer_sk, + struct aa_label *peer_label) +{ + struct unix_sock *peeru = unix_sk(peer_sk); + struct unix_sock *u = unix_sk(sk); + + AA_BUG(!label); + AA_BUG(!sk); + AA_BUG(!peer_sk); + + if (UNIX_FS(aa_sock(peeru))) + return unix_fs_perm(op, request, label, peeru, 0); + else if (UNIX_FS(aa_sock(u))) + return unix_fs_perm(op, request, label, u, 0); + else { + struct aa_profile *profile; + DEFINE_AUDIT_SK(sa, op, sk); + aad(&sa)->net.peer_sk = peer_sk; + + /* TODO: ns!!! */ + if (!net_eq(sock_net(sk), sock_net(peer_sk))) { + ; + } + + if (unconfined(label)) + return 0; + + return fn_for_each_confined(label, profile, + profile_peer_perm(profile, op, request, sk, + peer_sk, peer_label, &sa)); + } +} + + +/* from net/unix/af_unix.c */ +static void unix_state_double_lock(struct sock *sk1, struct sock *sk2) +{ + if (unlikely(sk1 == sk2) || !sk2) { + unix_state_lock(sk1); + return; + } + if (sk1 < sk2) { + unix_state_lock(sk1); + unix_state_lock_nested(sk2); + } else { + unix_state_lock(sk2); + unix_state_lock_nested(sk1); + } +} + +static void unix_state_double_unlock(struct sock *sk1, struct sock *sk2) +{ + if (unlikely(sk1 == sk2) || !sk2) { + unix_state_unlock(sk1); + return; + } + unix_state_unlock(sk1); + unix_state_unlock(sk2); +} + +int aa_unix_file_perm(struct aa_label *label, const char *op, u32 request, + struct socket *sock) +{ + struct sock *peer_sk = NULL; + u32 sk_req = request & ~NET_PEER_MASK; + int error = 0; + + AA_BUG(!label); + AA_BUG(!sock); + AA_BUG(!sock->sk); + AA_BUG(sock->sk->sk_family != AF_UNIX); + + /* TODO: update sock label with new task label */ + unix_state_lock(sock->sk); + peer_sk = unix_peer(sock->sk); + if (peer_sk) + sock_hold(peer_sk); + if (!unix_connected(sock) && sk_req) { + error = unix_label_sock_perm(label, op, sk_req, sock); + if (!error) { + // update label + } + } + unix_state_unlock(sock->sk); + if (!peer_sk) + return error; + + unix_state_double_lock(sock->sk, peer_sk); + if (UNIX_FS(sock->sk)) { + error = unix_fs_perm(op, request, label, unix_sk(sock->sk), + PATH_SOCK_COND); + } else if (UNIX_FS(peer_sk)) { + error = unix_fs_perm(op, request, label, unix_sk(peer_sk), + PATH_SOCK_COND); + } else { + struct aa_sk_ctx *pctx = SK_CTX(peer_sk); + if (sk_req) + error = aa_unix_label_sk_perm(label, op, sk_req, + sock->sk); + last_error(error, + xcheck(aa_unix_peer_perm(label, op, + MAY_READ | MAY_WRITE, + sock->sk, peer_sk, NULL), + aa_unix_peer_perm(pctx->label, op, + MAY_READ | MAY_WRITE, + peer_sk, sock->sk, label))); + } + + unix_state_double_unlock(sock->sk, peer_sk); + sock_put(peer_sk); + + return error; +} --- linux-4.8.0.orig/security/apparmor/apparmorfs.c +++ linux-4.8.0/security/apparmor/apparmorfs.c @@ -18,17 +18,26 @@ #include #include #include +#include #include #include #include +#include +#include #include "include/apparmor.h" #include "include/apparmorfs.h" #include "include/audit.h" #include "include/context.h" #include "include/crypto.h" +#include "include/ipc.h" +#include "include/policy_ns.h" +#include "include/label.h" #include "include/policy.h" #include "include/resource.h" +#include "include/label.h" +#include "include/lib.h" +#include "include/policy_unpack.h" /** * aa_mangle_name - mangle a profile name to std profile layout form @@ -37,7 +46,7 @@ * * Returns: length of mangled name */ -static int mangle_name(char *name, char *target) +static int mangle_name(const char *name, char *target) { char *t = target; @@ -71,7 +80,6 @@ /** * aa_simple_write_to_buffer - common routine for getting policy from user - * @op: operation doing the user buffer copy * @userbuf: user buffer to copy data from (NOT NULL) * @alloc_size: size of user buffer (REQUIRES: @alloc_size >= @copy_size) * @copy_size: size of data to copy from user buffer @@ -80,11 +88,12 @@ * Returns: kernel buffer containing copy of user buffer data or an * ERR_PTR on failure. */ -static char *aa_simple_write_to_buffer(int op, const char __user *userbuf, - size_t alloc_size, size_t copy_size, - loff_t *pos) +static struct aa_loaddata *aa_simple_write_to_buffer(const char __user *userbuf, + size_t alloc_size, + size_t copy_size, + loff_t *pos) { - char *data; + struct aa_loaddata *data; BUG_ON(copy_size > alloc_size); @@ -92,19 +101,16 @@ /* only writes from pos 0, that is complete writes */ return ERR_PTR(-ESPIPE); - /* - * Don't allow profile load/replace/remove from profiles that don't - * have CAP_MAC_ADMIN - */ - if (!aa_may_manage_policy(op)) - return ERR_PTR(-EACCES); - /* freed by caller to simple_write_to_buffer */ - data = kvmalloc(alloc_size); + data = kvmalloc(sizeof(*data) + alloc_size); if (data == NULL) return ERR_PTR(-ENOMEM); + kref_init(&data->count); + data->size = copy_size; + data->hash = NULL; + data->abi = 0; - if (copy_from_user(data, userbuf, copy_size)) { + if (copy_from_user(data->data, userbuf, copy_size)) { kvfree(data); return ERR_PTR(-EFAULT); } @@ -112,21 +118,41 @@ return data; } - -/* .load file hook fn to load policy */ -static ssize_t profile_load(struct file *f, const char __user *buf, size_t size, - loff_t *pos) +static ssize_t policy_update(u32 mask, const char __user *buf, size_t size, + loff_t *pos, struct aa_ns *ns) { - char *data; + struct aa_label *label; ssize_t error; + struct aa_loaddata *data; - data = aa_simple_write_to_buffer(OP_PROF_LOAD, buf, size, size, pos); + label = aa_begin_current_label(DO_UPDATE); + /* high level check about policy management - fine grained in + * below after unpack + */ + error = aa_may_manage_policy(label, ns, mask); + if (error) + return error; + + data = aa_simple_write_to_buffer(buf, size, size, pos); error = PTR_ERR(data); if (!IS_ERR(data)) { - error = aa_replace_profiles(data, size, PROF_ADD); - kvfree(data); + error = aa_replace_profiles(ns ? ns : labels_ns(label), label, + mask, data); + aa_put_loaddata(data); } + aa_end_current_label(label); + + return error; +} + +/* .load file hook fn to load policy */ +static ssize_t profile_load(struct file *f, const char __user *buf, size_t size, + loff_t *pos) +{ + struct aa_ns *ns = aa_get_ns(f->f_inode->i_private); + int error = policy_update(AA_MAY_LOAD_POLICY, buf, size, pos, ns); + aa_put_ns(ns); return error; } @@ -140,15 +166,10 @@ static ssize_t profile_replace(struct file *f, const char __user *buf, size_t size, loff_t *pos) { - char *data; - ssize_t error; - - data = aa_simple_write_to_buffer(OP_PROF_REPL, buf, size, size, pos); - error = PTR_ERR(data); - if (!IS_ERR(data)) { - error = aa_replace_profiles(data, size, PROF_REPLACE); - kvfree(data); - } + struct aa_ns *ns = aa_get_ns(f->f_inode->i_private); + int error = policy_update(AA_MAY_LOAD_POLICY | AA_MAY_REPLACE_POLICY, + buf, size, pos, ns); + aa_put_ns(ns); return error; } @@ -162,22 +183,35 @@ static ssize_t profile_remove(struct file *f, const char __user *buf, size_t size, loff_t *pos) { - char *data; + struct aa_loaddata *data; + struct aa_label *label; ssize_t error; + struct aa_ns *ns = aa_get_ns(f->f_inode->i_private); + + label = aa_begin_current_label(DO_UPDATE); + /* high level check about policy management - fine grained in + * below after unpack + */ + error = aa_may_manage_policy(label, ns, AA_MAY_REMOVE_POLICY); + if (error) + goto out; /* * aa_remove_profile needs a null terminated string so 1 extra * byte is allocated and the copied data is null terminated. */ - data = aa_simple_write_to_buffer(OP_PROF_RM, buf, size + 1, size, pos); + data = aa_simple_write_to_buffer(buf, size + 1, size, pos); error = PTR_ERR(data); if (!IS_ERR(data)) { - data[size] = 0; - error = aa_remove_profiles(data, size); - kvfree(data); - } - + data->data[size] = 0; + error = aa_remove_profiles(ns ? ns : labels_ns(label), label, + data->data, size); + aa_put_loaddata(data); + } + out: + aa_end_current_label(label); + aa_put_ns(ns); return error; } @@ -186,6 +220,282 @@ .llseek = default_llseek, }; + +static void profile_query_cb(struct aa_profile *profile, struct aa_perms *perms, + const char *match_str, size_t match_len) +{ + struct aa_perms tmp; + struct aa_dfa *dfa; + unsigned int state = 0; + + if (profile_unconfined(profile)) + return; + if (profile->file.dfa && *match_str == AA_CLASS_FILE) { + dfa = profile->file.dfa; + state = aa_dfa_match_len(dfa, profile->file.start, + match_str + 1, match_len - 1); + tmp = nullperms; + if (state) { + struct path_cond cond = { }; + tmp = aa_compute_fperms(dfa, state, &cond); + } + } else if (profile->policy.dfa) { + if (!PROFILE_MEDIATES_SAFE(profile, *match_str)) + return; /* no change to current perms */ + dfa = profile->policy.dfa; + state = aa_dfa_match_len(dfa, profile->policy.start[0], + match_str, match_len); + if (state) + aa_compute_perms(dfa, state, &tmp); + else + tmp = nullperms; + } + aa_apply_modes_to_perms(profile, &tmp); + aa_perms_accum_raw(perms, &tmp); +} + +/** + * query_data - queries a policy and writes its data to buf + * @buf: the resulting data is stored here (NOT NULL) + * @buf_len: size of buf + * @query: query string used to retrieve data + * @query_len: size of query including second NUL byte + * + * The buffers pointed to by buf and query may overlap. The query buffer is + * parsed before buf is written to. + * + * The query should look like "